pax_global_header00006660000000000000000000000064147530644560014530gustar00rootroot0000000000000052 comment=9b0f482dbbfc645982ebe78a83e929ca5004e6e8 mkdocs-material-9.6.4/000077500000000000000000000000001475306445600146245ustar00rootroot00000000000000mkdocs-material-9.6.4/.browserslistrc000066400000000000000000000000151475306445600177100ustar00rootroot00000000000000last 4 years mkdocs-material-9.6.4/.devcontainer/000077500000000000000000000000001475306445600173635ustar00rootroot00000000000000mkdocs-material-9.6.4/.devcontainer/devcontainer.json000066400000000000000000000005611475306445600227410ustar00rootroot00000000000000{ "name": "Material for MkDocs - VS Code dev container", "image": "mcr.microsoft.com/devcontainers/typescript-node:0-18", "features": { "ghcr.io/devcontainers/features/python:1": { "installTools": true, "version": "3.11" } }, "postCreateCommand": "pip install -e . && pip install mkdocs-minify-plugin mkdocs-redirects && npm install && npm run build" } mkdocs-material-9.6.4/.dockerignore000066400000000000000000000022461475306445600173040ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. .cache .git .github docs material/overrides node_modules src mkdocs-material-9.6.4/.editorconfig000066400000000000000000000025161475306445600173050ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # Top-level config root = true # All files [*] charset = utf-8 indent_style = space indent_size = 2 end_of_line = lf insert_final_newline = true trim_trailing_whitespace = true # Python [*.py] indent_style = space indent_size = 4 mkdocs-material-9.6.4/.eslintignore000066400000000000000000000033421475306445600173310ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # ----------------------------------------------------------------------------- # Node, TypeScript, Python # ----------------------------------------------------------------------------- # Dependencies node_modules __pycache__ venv # Build files build MANIFEST manifest.json site # Configuration typings webpack.config.ts # Distribution files dist mkdocs_material.egg-info # Caches and logs *.cpuprofile *.log *.tsbuildinfo .eslintcache # ----------------------------------------------------------------------------- # General # ----------------------------------------------------------------------------- # Temporary files tmp mkdocs-material-9.6.4/.eslintrc000066400000000000000000000206261475306445600164560ustar00rootroot00000000000000{ "root": true, "parser": "@typescript-eslint/parser", "parserOptions": { "project": "tsconfig.json" }, "plugins": [ "@typescript-eslint", "@stylistic/ts", "eslint-plugin-eslint-comments", "eslint-plugin-import", "eslint-plugin-jsdoc", "eslint-plugin-no-null" ], "extends": [ "eslint:recommended", "plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended" ], "settings": { "import/extensions": [ ".ts", ".tsx", ".js", ".jsx", ".json" ], "import/parsers": { "@typescript-eslint/parser": [ ".ts", ".tsx" ] } }, "rules": { "array-bracket-spacing": "warn", "arrow-parens": [ "warn", "as-needed" ], "block-spacing": "warn", "brace-style": [ "warn", "1tbs", { "allowSingleLine": true } ], "comma-dangle": [ "error", "never" ], "comma-spacing": "warn", "comma-style": "error", "computed-property-spacing": "warn", "curly": "off", "eqeqeq": [ "error", "smart" ], "func-call-spacing": "warn", "keyword-spacing": "warn", "lines-around-comment": [ "error", { "allowBlockStart": true, "allowBlockEnd": true, "beforeBlockComment": true, "ignorePattern": "@ts-ignore" } ], "lines-between-class-members": "warn", "max-classes-per-file": "error", "new-parens": "error", "no-caller": "error", "no-case-declarations": "off", "no-console": "error", "no-duplicate-imports": "error", "no-eval": "error", "no-extra-bind": "error", "no-multiple-empty-lines": [ "error", { "max": 1 } ], "no-new-func": "error", "no-new-wrappers": "error", "no-restricted-globals": [ "error", { "name": "fdescribe", "message": "Did you mean 'describe'?" }, { "name": "xdescribe", "message": "Did you mean 'describe'?" }, { "name": "fit", "message": "Did you mean 'it'?" }, { "name": "xit", "message": "Did you mean 'xit'?" } ], "no-return-await": "error", "no-sequences": "error", "no-shadow": "off", "no-tabs": "error", "no-template-curly-in-string": "error", "no-throw-literal": "off", "no-trailing-spaces": "warn", "no-undef-init": "error", "no-underscore-dangle": "error", "no-var": "error", "no-whitespace-before-property": "warn", "object-shorthand": "error", "one-var": [ "error", "never" ], "prefer-exponentiation-operator": "error", "prefer-object-spread": "error", "prefer-template": "error", "quote-props": [ "error", "consistent-as-needed" ], "quotes": [ "error", "double", { "avoidEscape": true } ], "radix": "error", "semi": "off", "sort-imports": [ "error", { "ignoreDeclarationSort": true } ], "space-before-blocks": "warn", "space-before-function-paren": [ "warn", { "anonymous": "always", "named": "never", "asyncArrow": "always" } ], "space-in-parens": "warn", "space-infix-ops": "warn", "space-unary-ops": "warn", "spaced-comment": "warn", "switch-colon-spacing": "warn", "template-tag-spacing": "warn", /* Plugin: @typescript-eslint */ "@typescript-eslint/array-type": "off", "@typescript-eslint/await-thenable": "error", "@typescript-eslint/ban-ts-comment": "off", "@typescript-eslint/ban-types": "off", "@typescript-eslint/consistent-type-assertions": "error", "@typescript-eslint/dot-notation": "error", "@typescript-eslint/explicit-member-accessibility": "error", "@typescript-eslint/naming-convention": [ "error", { "selector": "enumMember", "format": [ "UPPER_CASE" ] } ], "@typescript-eslint/no-empty-interface": "off", "@typescript-eslint/no-empty-object-type": "off", "@typescript-eslint/no-extraneous-class": "error", "@typescript-eslint/no-misused-promises": "off", "@typescript-eslint/no-non-null-assertion": "off", "@typescript-eslint/no-parameter-properties": "off", "@typescript-eslint/no-floating-promises": "error", "@typescript-eslint/no-shadow": [ "error", { "hoist": "never" } ], "@typescript-eslint/no-unnecessary-type-assertion": "error", "@typescript-eslint/no-unused-expressions": "error", "@typescript-eslint/no-unused-vars": "off", "@typescript-eslint/no-var-requires": "off", "@typescript-eslint/only-throw-error": "error", "@typescript-eslint/prefer-for-of": "off", "@typescript-eslint/prefer-function-type": "error", "@typescript-eslint/triple-slash-reference": "off", "@typescript-eslint/unbound-method": "error", "@typescript-eslint/unified-signatures": "error", /* Plugin: @stylistic/ts */ "@stylistic/ts/indent": [ "warn", 2, { "FunctionDeclaration": { "parameters": 1, "body": 1 }, "FunctionExpression": { "parameters": 1, "body": 1 }, "MemberExpression": "off", "ObjectExpression": 1, "SwitchCase": 1, "ignoreComments": true, "ignoredNodes": [ "ArrowFunctionExpression > *", "CallExpression > ObjectExpression", "ConditionalExpression > ConditionalExpression", "TSTypeReference > *" ], "offsetTernaryExpressions": true } ], "@stylistic/ts/member-delimiter-style": [ "error", { "multiline": { "delimiter": "none" }, "singleline": { "delimiter": "comma", "requireLast": false } } ], "@stylistic/ts/semi": [ "error", "never" ], "@stylistic/ts/type-annotation-spacing": "error", /* Plugin: eslint-plugin-eslint-comments */ "eslint-comments/no-unused-disable": "error", "eslint-comments/no-unused-enable": "error", "eslint-comments/no-use": [ "warn", { "allow": [ "eslint-disable-line", "eslint-disable-next-line" ] } ], /* Plugin: eslint-plugin-import */ "import/first": "error", "import/newline-after-import": "error", "import/no-default-export": "error", "import/no-duplicates": "error", "import/no-mutable-exports": "error", "import/no-self-import": "error", "import/order": [ "error", { "alphabetize": { "order": "asc" }, "newlines-between": "always", "groups": [ [ "builtin", "external" ], [ "internal" ], [ "index" ], [ "parent" ], [ "sibling" ] ], "pathGroups": [ { "pattern": "~/**", "group": "index", "position": "before" }, { "pattern": "_/**", "group": "index", "position": "after" } ], "pathGroupsExcludedImportTypes": [ "builtin" ] } ], /* Plugin: eslint-plugin-jsdoc */ "jsdoc/check-alignment": "warn", "jsdoc/check-param-names": [ "warn", { "checkDestructured": false } ], "jsdoc/check-syntax": "warn", "jsdoc/check-tag-names": [ "warn", { "definedTags": [ "internal" ] } ], "jsdoc/empty-tags": "warn", "jsdoc/no-bad-blocks": "warn", "jsdoc/no-defaults": "warn", "jsdoc/no-types": "warn", "jsdoc/require-hyphen-before-param-description": "warn", "jsdoc/require-jsdoc": "warn", "jsdoc/require-param-description": "warn", "jsdoc/require-param-name": "warn", "jsdoc/require-param": [ "warn", { "checkDestructured": false, "checkDestructuredRoots": true } ], "jsdoc/require-returns-check": "warn", "jsdoc/require-returns-description": "warn", "jsdoc/require-returns": [ "warn", { "checkGetters": false, "forceReturnsWithAsync": true } ], /* Plugin: eslint-plugin-no-null */ "no-null/no-null": "error" } } mkdocs-material-9.6.4/.gitattributes000066400000000000000000000000531475306445600175150ustar00rootroot00000000000000# Enforce Unix newlines * text=auto eol=lf mkdocs-material-9.6.4/.github/000077500000000000000000000000001475306445600161645ustar00rootroot00000000000000mkdocs-material-9.6.4/.github/FUNDING.yml000066400000000000000000000021701475306445600200010ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. github: squidfunk mkdocs-material-9.6.4/.github/ISSUE_TEMPLATE/000077500000000000000000000000001475306445600203475ustar00rootroot00000000000000mkdocs-material-9.6.4/.github/ISSUE_TEMPLATE/01-report-a-bug.yml000066400000000000000000000126321475306445600236200ustar00rootroot00000000000000name: Report a bug description: Something is not working? Report a bug body: - type: textarea id: context attributes: label: Context description: >- This field is optional. You may provide additional context for the bug you want to report, helping us to understand what you are working on and what you are trying to achieve. If the context is not relevant, you can leave this field empty. [More](https://squidfunk.github.io/mkdocs-material/contributing/reporting-a-bug/#context) - type: textarea id: description attributes: label: Bug description description: >- Please give a detailed description of the bug. Explain where Material for MkDocs does not behave as you would expect it to. Be as specific as possible. If you have found a workaround or a fix for the problem, please let us maintainers (and all other users) know. [More](https://squidfunk.github.io/mkdocs-material/contributing/reporting-a-bug/#bug-description) validations: required: true - type: textarea id: related-links attributes: label: Related links description: >- Please list all links to the sections of [our documentation](https://squidfunk.github.io/mkdocs-material/) that are relevant to the bug in order to show that you have consulted and thoroughly read it. Additionally, list links to possibly related open and closed [issues](https://github.com/squidfunk/mkdocs-material/issues) and [discussions](https://github.com/squidfunk/mkdocs-material/discussions) you encountered when searching our issue tracker. [More](https://squidfunk.github.io/mkdocs-material/contributing/reporting-a-bug/#related-links) value: |- - [Reporting a bug](https://squidfunk.github.io/mkdocs-material/contributing/reporting-a-bug/) - validations: required: true - type: textarea id: reproduction attributes: label: Reproduction description: >- Please create a __.zip file__ with a __minimal reproduction__ for the bug. First, read our [reproduction guide](https://squidfunk.github.io/mkdocs-material/guides/creating-a-reproduction/) that explains the necessary steps, then use the [built-in info plugin](https://squidfunk.github.io/mkdocs-material/plugins/info/) (mandatory) to create a self-contained .zip file with the reproduction. We reserve the right to close issues without .zip files. [More](https://squidfunk.github.io/mkdocs-material/contributing/reporting-a-bug/#reproduction) placeholder: |- Drag and drop the .zip file with the minimal reproduction here. validations: required: true - type: textarea id: steps-to-reproduce attributes: label: Steps to reproduce description: >- Please provide a detailed list of instructions, guiding us maintainers through the required steps, helping us to recreate the problem using the minimal reproduction you provided. Be as specific as possible and as verbose as necessary – try not to leave anything out. [More](https://squidfunk.github.io/mkdocs-material/contributing/reporting-a-bug/#steps-to-reproduce) placeholder: |- 1. ... 2. ... 3. ... validations: required: true - type: dropdown id: browser attributes: label: Browser description: >- This field is optional. If the bug only happens in __specific browsers__, please select them from the dropdown below. If your browser is not listed or the version is relevant, you may select _Other_ and provide more details in the field above. [More](https://squidfunk.github.io/mkdocs-material/contributing/reporting-a-bug/#browser) multiple: true options: - Chrome - Safari - Edge - Firefox - Opera - Other - type: checkboxes id: checklist attributes: label: Before submitting description: >- Please ensure your bug report fulfills all of the following requirements. If you are not sure what a specific requirement means, follow the link to learn about it and understand why it is necessary before ticking the box. This will save the maintainers and you valuable time. options: - label: >- I have read and followed the [bug reporting guidelines](https://squidfunk.github.io/mkdocs-material/contributing/reporting-a-bug/). required: true - label: >- I have attached links to [the documentation](https://squidfunk.github.io/mkdocs-material/), and possibly related [issues](https://github.com/squidfunk/mkdocs-material/issues) and [discussions](https://github.com/squidfunk/mkdocs-material/discussions). required: true - label: >- I assure that I have [removed all customizations](https://squidfunk.github.io/mkdocs-material/contributing/reporting-a-bug/#remove-customizations) before submitting this bug report. required: true - label: >- I have attached a __.zip file__ with a [minimal reproduction](https://squidfunk.github.io/mkdocs-material/guides/creating-a-reproduction/) using the [built-in info plugin](https://squidfunk.github.io/mkdocs-material/plugins/info/). required: true mkdocs-material-9.6.4/.github/ISSUE_TEMPLATE/02-report-a-docs-issue.yml000066400000000000000000000056131475306445600251230ustar00rootroot00000000000000name: Report a documentation issue description: Missing information in our docs? Report a documentation issue labels: - documentation body: - type: textarea id: description attributes: label: Description description: >- Please describe the inconsistency or issue you have found in [our documentation](https://squidfunk.github.io/mkdocs-material/) or indicate where you feel there is a need for improvement. Furthermore, explain the severity of the issue, i.e., its impact on you and potentially other users. [More](https://squidfunk.github.io/mkdocs-material/contributing/reporting-a-docs-issue/#description) validations: required: true - type: textarea id: related-links attributes: label: Related links description: >- Please list all links to the sections of [our documentation](https://squidfunk.github.io/mkdocs-material/) that are impacted by the issue you described above. If applicable, add screenshots. Additionally, list links to possibly related open and closed [issues](https://github.com/squidfunk/mkdocs-material/issues) and [discussions](https://github.com/squidfunk/mkdocs-material/discussions) you encountered when searching our issue tracker. [More](https://squidfunk.github.io/mkdocs-material/contributing/reporting-a-docs-issue/#related-links) value: |- - [Reporting a docs issue](https://squidfunk.github.io/mkdocs-material/contributing/reporting-a-docs-issue/) - validations: required: true - type: textarea id: proposed-change attributes: label: Proposed change description: >- This field is optional. You may provide an improvement proposal for our documentation by describing your suggestion in the text field below or creating a pull request after reporting this issue referencing the issue. [More](https://squidfunk.github.io/mkdocs-material/contributing/reporting-a-docs-issue/#proposed-change) - type: checkboxes id: checklist attributes: label: Before submitting description: >- Please ensure your documentation issue report fulfills all of the following requirements. If you need clarification on a specific requirement, follow the link to learn about it and understand why it is necessary before ticking the box. This will save the maintainers and you valuable time. options: - label: >- I have read and followed the [documentation issue guidelines](https://squidfunk.github.io/mkdocs-material/contributing/reporting-a-docs-issue/). required: true - label: >- I have attached the links to the affected sections of [the documentation](https://squidfunk.github.io/mkdocs-material/contributing/reporting-a-docs-issue/#related-links) required: true mkdocs-material-9.6.4/.github/ISSUE_TEMPLATE/03-request-a-change.yml000066400000000000000000000110311475306445600244370ustar00rootroot00000000000000name: Request a change description: Want to submit an idea? Propose a change or feature request body: - type: textarea id: context attributes: label: Context description: >- This field is optional. You may provide additional context for the idea you want to propose, helping us to understand what you are working on and what you are trying to achieve. If the context is not relevant, you can leave this field empty. [More](https://squidfunk.github.io/mkdocs-material/contributing/requesting-a-change/#context) - type: textarea id: description attributes: label: Description description: >- Please provide a detailed description of your idea in 2-3 sentences so that we maintainers can fully understand what change, feature, or the improvement you are proposing. Don't yet explain the benefits of your idea, we'll come to that. Focus on functionality. [More](https://squidfunk.github.io/mkdocs-material/contributing/requesting-a-change/#description) validations: required: true - type: textarea id: related-links attributes: label: Related links description: >- Please list all links to open and closed [issues](https://github.com/squidfunk/mkdocs-material/issues), [discussions](https://github.com/squidfunk/mkdocs-material/discussions), or to [documentation sections](https://squidfunk.github.io/mkdocs-material/) that are relevant to your idea. If you discussed your idea with the community on our [discussion board](https://github.com/squidfunk/mkdocs-material/discussions) prior to creating this change request, please link the discussion here as well. [More](https://squidfunk.github.io/mkdocs-material/contributing/requesting-a-change/#related-links) value: |- - [Requesting a change](https://squidfunk.github.io/mkdocs-material/contributing/requesting-a-change/) - validations: required: true - type: textarea id: use-cases attributes: label: Use Cases description: >- Please explain how your idea will work from an author's and user's perspective. Elaborate on how the change would positively impact not only you but our community and how it aligns with the goals and [philosophy](https://squidfunk.github.io/mkdocs-material/philosophy/) of the project. [More](https://squidfunk.github.io/mkdocs-material/contributing/requesting-a-change/#use-cases) validations: required: true - type: textarea id: visuals attributes: label: Visuals description: >- This field is optional. You may provide sketches, screenshots, mockups, or external assets to illustrate your idea. If you have seen this change, feature, or improvement used in other static site generators or themes, please describe how it is implemented and advertised. [More](https://squidfunk.github.io/mkdocs-material/contributing/requesting-a-change/#visuals) placeholder: |- Drag and drop images here or link external assets. - type: checkboxes id: checklist attributes: label: Before submitting description: Please ensure your idea fulfills all of the following requirements. If you need clarification on a specific requirement, follow the link to learn about it and understand why it is necessary before ticking the box. This will save the maintainers and you valuable time. options: - label: >- I have read and followed the [change request guidelines](https://squidfunk.github.io/mkdocs-material/contributing/requesting-a-change/). required: true - label: >- I have verified that [my idea is a change request and not a bug report](https://squidfunk.github.io/mkdocs-material/contributing/requesting-a-change/#its-not-a-bug-its-a-feature). required: true - label: >- I have ensured that, to the best of my knowledge, [my idea will benefit the entire community](https://squidfunk.github.io/mkdocs-material/contributing/requesting-a-change/#benefit-for-the-community). required: true - label: >- I have included relevant links to [the documentation](https://squidfunk.github.io/mkdocs-material/), related [issues](https://github.com/squidfunk/mkdocs-material/issues), and [discussions](https://github.com/squidfunk/mkdocs-material/discussions) to underline the need for my idea. required: true mkdocs-material-9.6.4/.github/ISSUE_TEMPLATE/04-add-translations.yml000066400000000000000000000117661475306445600245750ustar00rootroot00000000000000name: Add a translation description: Missing support for your language? Add a translation title: Add translations for ... labels: - change request body: - type: markdown attributes: value: >- **Important**: Before creating a new translation, please check if Material for MkDocs already supports your language. Review the list of [available languages](https://squidfunk.github.io/mkdocs-material/setup/changing-the-language/#site-language), pick your language to add new or improve existing translations. - type: textarea id: translations attributes: label: Translations description: >- Please translate the labels on the right. For new languages, translate each line. For existing languages, only translate lines containing the :arrow_left: icon and remove the icon before submitting. [More](https://squidfunk.github.io/mkdocs-material/contributing/adding-translations/#translations_1) value: |- {% macro t(key) %}{{ { "language": "en ⬅️", "direction": "ltr ⬅️", "action.edit": "Edit this page ⬅️", "action.skip": "Skip to content ⬅️", "action.view": "View source of this page ⬅️", "announce.dismiss": "Don't show this again ⬅️", "blog.archive": "Archive ⬅️", "blog.categories": "Categories ⬅️", "blog.categories.in": "in ⬅️", "blog.continue": "Continue reading ⬅️", "blog.draft": "Draft ⬅️", "blog.index": "Back to index ⬅️", "blog.meta": "Metadata ⬅️", "blog.references": "Related links ⬅️", "clipboard.copy": "Copy to clipboard ⬅️", "clipboard.copied": "Copied to clipboard ⬅️", "consent.accept": "Accept ⬅️", "consent.manage": "Manage settings ⬅️", "consent.reject": "Reject ⬅️", "footer": "Footer ⬅️", "footer.next": "Next ⬅️", "footer.previous": "Previous ⬅️", "header": "Header ⬅️", "meta.comments": "Comments ⬅️", "meta.source": "Source ⬅️", "nav": "Navigation ⬅️", "readtime.one": "1 min read ⬅️", "readtime.other": "# min read ⬅️", "rss.created": "RSS feed ⬅️", "rss.updated": "RSS feed of updated content ⬅️", "search": "Search ⬅️", "search.placeholder": "Search ⬅️", "search.share": "Share ⬅️", "search.reset": "Clear ⬅️", "search.result.initializer": "Initializing search ⬅️", "search.result.placeholder": "Type to start searching ⬅️", "search.result.none": "No matching documents ⬅️", "search.result.one": "1 matching document ⬅️", "search.result.other": "# matching documents ⬅️", "search.result.more.one": "1 more on this page ⬅️", "search.result.more.other": "# more on this page ⬅️", "search.result.term.missing": "Missing ⬅️", "select.language": "Select language ⬅️", "select.version": "Select version ⬅️", "source": "Go to repository ⬅️", "source.file.contributors": "Contributors ⬅️", "source.file.date.created": "Created ⬅️", "source.file.date.updated": "Last update ⬅️", "tabs": "Tabs ⬅️", "toc": "Table of contents ⬅️", "top": "Back to top ⬅️" }[key] }}{% endmacro %} render: Jinja validations: required: true - type: input id: country-flag attributes: label: Country flag description: >- This field is optional. Please add the flag of the country when adding a new language. Go to our [emoji search](https://squidfunk.github.io/mkdocs-material/reference/icons-emojis/#search) and enter `flag` to find all available shortcodes. If your flag is not included, please choose the most appropriate available flag. [More](https://squidfunk.github.io/mkdocs-material/contributing/adding-translations/#country-flag) placeholder: |- Country flag shortcode, e.g. :flag_en: - type: checkboxes id: checklist attributes: label: Before submitting description: >- Please ensure that your translation fulfills the following requirements. options: - label: >- I've checked the list of [available languages](https://squidfunk.github.io/mkdocs-material/setup/changing-the-language/#site-language) for existing translations. required: true - label: >- I assure that the translations are accurate to the best of my knowledge. required: true - label: >- __Optional__: I want to integrate this translation myself and create a pull request following the [contribution guide](https://github.com/squidfunk/mkdocs-material/blob/master/CONTRIBUTING.md). mkdocs-material-9.6.4/.github/ISSUE_TEMPLATE/config.yml000066400000000000000000000025261475306445600223440ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. blank_issues_enabled: false contact_links: - name: Ask a question url: https://github.com/squidfunk/mkdocs-material/discussions about: > Have a question or need help? Connect with our community on the discussion board mkdocs-material-9.6.4/.github/assets/000077500000000000000000000000001475306445600174665ustar00rootroot00000000000000mkdocs-material-9.6.4/.github/assets/logo.svg000066400000000000000000000200571475306445600211530ustar00rootroot00000000000000

Material for MkDocs

Documentation that simply works

mkdocs-material-9.6.4/.github/assets/screenshot.png000066400000000000000000003555051475306445600223660ustar00rootroot00000000000000PNG  IHDR XSgAMA asRGBPLTEGpLGGG333?R!!!/>>---@SMMM***mmmGGG堨ۍ%%%{{{EEEo~"""qqq⥦gggccc```CV(((K]666GY]]]Pb[kVf~~~}ZZZؚtVVVxxxҿ腆ctă`p¸'''k{ǿjjjIIIhxƔלxvvvծ썙www>NVWelJY`eqv7FR^`l}oz֔BO򇐺q{kXqUn^wis{WZtRNS  $/9Q\a! "#()'%+&,-.0*214@3EC6J5M7OVT8^Y=d;B>GHILXS[bc]rt IDATxMrann ;u%PL3d|~e:gQ|\/^4g$@X , a aBX , ,ThV+O[ aa!,BX aa!&a!,@X aE ko!,BX a1?ea!,FXL\ S|/Xfb!e!,BX Lbpx2\_ aXXX T,^31D^ aa!,>EXRg2)&Έ?XS2/C[ ?+jL88Rj\ axa;+JBH(uŸXb처gV~50@)ҸcZ S܂GEEPxG/(k݇ a15\T(IQ_bסV4(F9x,\]dڢbaܬb`(Kb<Ⱜ7x`ёbaqhVGEYP  3uguE*j 萒Őe1yET"+jȵE4-R6iE4*JbS;Jiꢨ-2ipX 7E]N&hd"kZWE")SoHE-iQWWd(+z&/gH-i1|Y7xݯ+U%Weۢ_YbyE*"QO7rh"dfWV"I2/mqHZ6+ʲ"٢,X1C#^(LeVX"4TQQ$lТ,fs*+UkSb⍘HEQZ6]ϊ@U$B!~$"Ѵ,U;f~UĚb8`X]ۢ=mje~T$B$v$b?.JbXn^Ɋ"7NhD">(L,zWwnVģ""vc$EUYYL%]ۮ(ʊ@Tb3"um#}ʢ(銊دhRZh^Dۢ&-*b`[P*"#4yэݹE(-:(cEqW+㊝*M #ݺ-iZ,ZLYtEx\͊DE()ZAQe"E"-ʇ-E=(̊H&ŁG 2ui()e`X$$ثXRZKX^D"8)-&DWDb*vg{MPb-CbԶTdm;[Ê E`p[E`ϢV+?s'4_iqpY{P]WvQE,bZ ]W|qH cbh1LYػ\+,W-"סe1eXz/Xwŵe+Nj5b/+N?~r<ߟ>bQ`]a`O+WE߮x P6(,ztӸ̛fا?48,EYW9P,,]׎[mE:e1qXvθbPunh,E/X,:kaa,~/)Ws/XvreQk =FX@MXl6P},Z dWW+6sGʝ?iϢnb(Uo]!,&,ŦOYLU7BAu"58)*¢;[܎ui^q~h@:_; U[G E+eŅZDˢtb^:+:P e u(^ꊝ]!,&,~ w,, "B_P{ecfy5T~dVX#]qh@|Y$aM]?2_z}xO?ϲ8ś5wή& ĂcWK'_{9hֻeq),¢_W?^W$-w+g RbPmsER@`QjJ6C)% PF(kC>0Z]5K_ b.|!T6},`6`8X"_ Qɢ8`8W>08Y' sɢ䑼,X ;;\*s`<,椚E %l̘,Pa O) <)M$ 1 !Y,Xp5Bbsٺwtѽ9 `aOfE $W*\ =YFdQE\\,XPZ Xe%YdPi’E鈅`!/XT`I^ d;Y\00,l,z,Pr"k2,ڹ` b0l%O) E+ _ J#dW׸LZ3ᘅZEOŰ|R,& LhL cΒi|{D՘7PeK w"]57B,r -*Y, q׬oB7x57dQd-2/avB ` Y3T]pBu9X\8b*X` Y(U(߾Zk e\5+4BX-+g z ʈ+F q#T#*X,,2b!*Y4PƒňV, `,`!,jaW76C%R" mP] fN(wBj"X傅^Bv)X;`!n"*XH+\qWwk*nPY" ,L5.O NQqtXF,#xJ&說da8k B$XW,`wͪK77xMYg]PZkA N(W2W,jQpq6-XDP \J#Pý ybuBݖ&, @`LYHێSR"`aRFg۝P`h,^Yu|ۣ*`QG, vB v:aA i">=a)Y{!J8b!HF2o9/Y,) }Ȣ~"vxBn/n,rbc> YTan v|v;*aA: ٔE (YǷa J:ZʽPqºp|;`1`b!6uB  \XPǷPm@bP _f`hHf @"8PzJz`1B*<7XPU* 5njoOh|\Vx/T UzT{'z,*w͊B.X,=Wi|dbU)Y(b:dLoW >#J'T:H j@EE 59dW"ȯ Q':Ngi/T2oIC,\q]ȯeG,@(,VS sKy= ֻ#N(`P6XH{Y跷`!XԳu`P.X,5eB 'XۖeNۼۻQ]~]_f|-*v{Z e^8+Lo,z" l6"XųG¯6_ϛ?gsOGo|O{|fm6:؛ wrojv?>CG)` L,Զv^sE`SlOoBGLK|MBBBB,,.g @z>,nvf64uxdfR}@jPڂ*ኼl>e @,5|Xvާ(FobKO" /НM_uj5aINtl6 guů\#PEay_YB='`= ETE zB`g1GKlC>Xg3Q3UFBJ:VSKZ:[5X@Z * l 5D·E3MAM 2ݷs)=kE疵E*xm)%d!!Y>LdRq+tA]7L7`q"XıP[ȶ;q]g6rYETJ TZea 0XYAX2\'`C}tX; 6lF`WD"^B΅1VOggХo=9aA  ٘IDBd=VjbHr-4£]hPI`(8K,eoY<X|>[/ ,?,j2/Sur4R`!$$$J%`h` ZQ!^= =; =#'FclN_ѠCZ ,/zt{|- Zj X4)Asqj,ȑ XXP~I ( ?ŏml( -Z<SPx,w}`f2Wx+>c*!!gwJ0ߝXL+Ē=?}PPX]R9 "|S W#%3_w[ɇ5,>ZV GD, v1q&( 4:$vkBڮL"Yp6ގ[%B}z`jߥnsxUU\] e-*Z8ok,4O"$=GHH`q=V] ՃMgQ?z@K.qXl+Xp,(ڸ 0?3f{EU^ys‹ D X̸OFI`d oW,X6Ks X= /cP],XL"+ ‾yUpH< ,X!!!DA*,Cޝc ( ^e0\l(Q%jwX UE,o܂Ѱ"'Uc`A⹘#3@~VEd`xaadPF"#,V#J[P(Tgn0A;`F&5 F`Aeo7,g,Usl(`U5s: "fb>Xպ^A'EAy,+ ڰ1-$$o {dW_qO| )E(~{OX|`יe}? K+a`0XWd oI`g$4XBǂ NÉ IDATy|>x8]nk5}t6U˦:up@2>@r52`aPu$ӵHE1xlDze얅_o9ElbSvݫX@u_05ԇOgRQŔ&|K5ȳzF>V̼1`O Ng65E)Aɠ'B92$xiC pwW{:_6c3[Ur\Hg |*K@ j@P/_-7K2 :]XWOf_X( nGx, Z]g}`aNNҴa؈}xaEco-,zF2znJ}p{bZ vB( ܇96&$[ ی[iz*  T*fb3g /,\uKl9@PLz3Y$ vWdCJ#$3=qBXkt{XaeЂ>_H ;D5330ab]w`n2a`Rh(W ֕p \p(܈$!UDҤqaV99uNioJ]):zs- \AFùlY&9?X7Ή['jqu{;Bco%! ,z1c1uW$9[qWp8;\Ig̩N(smn8;:5=Z>I`1vGYؕk\M@Yg9i'^~^(R] 1nH>=! _o`p|4`jozBre{a,uR-ca;`!sS]*ƽJuEYLō'*.7# (/<{<ݸ8A?gG͸^Fy,YwCbU,~_,6?`z=f,P5Op`ANMy>.+ t5'8a`l;8af #kJǃ6p žL|p.dz;m~mO-¦ KXԽ8QI}/|Eu6^<ֽh#tXEB } _1T&& iryȂUI-&|Ō6ڒ[1G8X2ETNy}x xx !P!yX /,\,XW UH,EaMG*t=6 4*%ˢseYEuGg"t^i`:AI- ;7tuIR.X7@ ,@˶"*cYG"(p]GPmPH vwd=dR(uozK `mx_X1u޶ hX\t:; 06 `A>[ScP{2,~ǂ/nW K,z䦬1)<',Hi>ӗ5obsw,CSn Ue ]?h/ Xa왊nhm*Kw-)A0u(z+ ez ]!?S&CP감 s]jFi lgŘ/s `1M j,@zYr Bl֌`XXY_0͇GJ aQѻ.r0+)[ b>y{ZD7,]c`kzr~#Pg߇n ݨbHm[<m`Za`AUi3Q͉ivbŁhERɧp3=`Y%,N5Q"% _n8Qb=j3a`|`A]Of`2)O1T#$X6Mw-t~0CtP(ME@KΧ O l_^"bY]NcN!7cl))IYXcWKP$#9_{%ņ }L%10,>,  tm,xPŌŚbr}*[qT-3zH-ͧ\, ɄOis`Ǹ5dXAPP谟RmD4-U@ -Go5,tNp^6<`1qU$3f,ټ iuVbl,ެ{_ ~<_>/*?FWWތEC%ajzah]*>wV#V",4iUY U buX pȲ4?{K>pYp/HVn pM[3goϬ4 (%.t Ns`yfB:/񶀱}x{,,~ WrB /J,l~p mކކ#FXEC큿|5X \X%;/X 'z @Cb0-000'UxR˥-{Z,== {,A^& ,Dl+U,>j/jիET1T`A\B@UHXTHI`XB ,FZml8hjd,4c3 C4xyص;A wNb k9y&9*cё[X ӝf"Ki"vWbߐ-<@@apUa|ȨkRJ"Z,ߎ5L+)BI>63[ 吝RU,(8Il~)4D?u Ho>'l,vv|uP on`@*.N\@ FIeHY_"FgXx>m#qc\SuNX$7Aoly\ʢρ -b^v͟;;~#KFC^X| şo>ŁN8 C%-`MJfJw P?ΥmËM!0CҦt C)E _aYyqJƔ1Qhb퓦$YLW_wH(m.n<(\+wPsw0fTJhBmlAc9Xℂ-ީV'uW&av X>g~b*tk@F+!)Xrٕ9_ , ¸XrN{-)Qg`=DvLW< ƑE,xFH,uտuog/r8e{7C:5cjbdR[a;E X=pX\|".?j6"f cb6 *Dh^ s[3 KY>*N(X]%Z9ъ;@8],L1,U2E[TKCZUXۦF,tD'm_,~@,-qH/(^ˋŶ8z˲X(a~fxXB1>D:^,J7o bmڲWjB5uXŇZB,DS^JQ_]۴]=[rzs5|54̵ ɿhS?=+ԬEdN~PqHEGlwr]B(cM)^3Fc;n"E4 UGj ESkUV"\7u,EV%=X 7!FmTŸEj15jٙ6+ Pҏaם{P%BoC}8XB~p/x#6=kQtB,1T f[V;6%XGk~=Fֽ2z 0bfai22~tB4)1Sba8{Ϭ/8e@WTH%1΁כjwzaSů8Dv^gP/JL!9> ’w+,g?FGo{b V2rZ(oZiFuFxݿ:`B},ߕW٭+T+X,P&Q,XBUeyPa`zuMe0bݔۻd }]q%EVK,kD@ Y' pbX<"6| bzsgK7 fY̥X;MKlu2w#C1b-pDE;%h~E#e ~"ZGז[RهM ,bq bR9W@,R,bQ $°zM %5jP /jHIƊE2uRs9uX S:b%biqOG,b_`v1 bNB6i^!o'A"7+Q:#G/fǢ3^,,;u#2*$MWܪX,;bRZ,l)?"[C Ox܊E,z)x2 }qM+ZTo.f^-vإP]ӚǤH개D`^L,jU‚X 3VTk̚XEd " [^++ꩠZz5R|rBv^Ӳce/;q5T2pb,ۏykZX̉E`LNEXP9{D|~,yڳWXHwݼ8#vXZD$"g=.,RDdE:z( fM,{, +~RےX #(  ]%?YD^aMbьIDzsAt' V6*EO_H]&;MnFB*ӗ[I,R AώY ̘X\YļBQ^W9pW:$ cWES:z{E _XG ,>lX]!6[/ {W87G!^ۆ?o{HɉK;8Q=Gʕur,xSXؽa;~=‚aI5a_),RfA9{>:=k<;l‚hv}g0LR.=YnaX{<{ ©ޥ<¶?sȨc?sj_~{s̮Em _O~X<{ , bБqd$t(7YeqT. 8,FCo2]ٽˇ4Y5]lPݰl>uVfi﮻_V:;X6vb_e IDATevq_7aq0et#ZHP^Xs:‚ ,LXxL۞?4Ya/q<~;0쌝y/T7AgڱF`oǡWz9oDP[fXN'0 q Ope]'W ž7ed[n:r~m{1&k~Ee.jO:N]tzᢟ#/iK_eVdL> ?aVoZA&l39~I&.,z7ޘg~RIX g]aaG^^2igxr_[;5Z;og_UK,*KgYpbouS3HW1Ob$.|_|YoE0ላ>n6=ZW%k,âS51v[z>1o$vk,j7[R3\nWCõ-7  l3'cq[2-ۄ|JS':}y7];f-?kekܣ>]V‚@>Q ̬y}_ $}- L<ئ No- /Ʋ/bG~Xtk}J̮\ 4/W_0ʀ^ %GF'7ѯrHm=ޘ d |G;o N)Bb¢ x6WB ~8Fz8n\~If a ,9,bX͎4+]M7+.ʉWܨjWeu<zm$fE5 =Sʌ8B S\#ӱnVkaQP|bO<جMXԷp:0cx b>mճod@[djCWO|gY?+L/a1WUU‚yhE)'υEƨ5BsIY(×LưO'dB\=Uݳqػն)R *i+m1Sh!NА(WG,)I'̅I>&qɶsVEgףE;=L8?,:{ވ]y%@X a0\5T=օ:+ge i=[Qr{ًvXeZXt⒩EnY赃[¢xɾ΢yƇ>^{;aѮg!,2,q$.5]A]Xd?ʗ#*?ß[",BX4p%:gqbu]ϨħWyXLxKVs :aFw>E3,?(ťP籨oް]oܛX>cQUzz!,7X4ضnl=3oV劷yͰzԼz*-.Ƚrl˾3'a bq%,BXaaxK{va~~`Ljx.uOW}nl 㣋",n^Gy>"<ϫ/^Q\L Y^qx]OqotU|MhEXGXLyk|y,¢#2+'%'UXZ%nn4a4Y>^NX_ѳ3ꪧ|L_CZIyg,Ԕ{bUlm>e&W@X ay|n0X~NzEyqz78>'~?-Qz-->F/^lgx.l|JX̾gu &{4{8^#ї1wkyFX<۬X|?}9y*{C7a1u>j;L oo7z^:z;Y܄!.3lp:cyUw"1ջFE|E1f~Ӹ&>{ZJ]O<}fy~ r[p' 0(~ VXD*,:9N=]"y[m gaqx-U_TavXd?"vܙ}s{?aQ|^*(zk<ɢPƝaX]V e?:7Y=b~f^Q8ˆUaㇰhnXD"q>aҪPSbrVX\5 aTݢP}lqwǻb{UXDeY`a!,hIfӷ}:3宓%]zx _N0sNzy9zM2.nHnϾ11e\}|;].,>ɶS ,鏣ayǿNX| |YBXqbVӫJӼF |.'׋z[8zuqta!,a!,@X a!,@X BX , aBX a!,@X aBX , a!,@X a!, aBX ,a!,@X WX aBX , , aBX , aBXBX , a aBX ,i" 0C&!!E $)n#+Dbp !H a/7DɞRl+.uuq:L`sSa!,@X @X a!,a!,@X a!,@X a!,@X @X a!,a!,@X a!,@X a!,@X @X a!,a!,@X a!,@X a!,@X @X a!,a!,@X a!,@X ? a!,@X aBX , a!,@X a!, aBX ,a!,@X  , aBXa!,@X BXf΋BXtX^*ow<7~jkVp{a!,:`Z}٢:7t\.7aΰ4IGZ3BXtl|bY_/j).le%ӽspLIX7GIF<ێE.r}o|Wǃ9kj [%ۚ [F1| asyy!,waw<ڻ=I¢z{thGX+_1Vx|fýEχ񼰸 V{s*/Ta\X^0RaKNŵpL7EBXy5Cbll7!,Z<[S/1T#EgrF׿ɶѻ<ٶF"_=+,z\W5qjkgj#g.=JH߰oͣ<[)xcIRJ$YIF/60}poVod$[7rq6LPrd:IsnOd/n ,.GOppgvߥdfePן .&k¢#kYJvuVzETeǹ3talc aѲnfaqFu5,JËsihoj8(d.$xK6NqyEۊ =q~y9˾p_W^=Yh[Kv{~BX\U/ ϔjZ!:8؇(ظ1D*67;wMB}+qizurϱG(9G;J re~#܈NvipƟ[+ٍDXtlEW_~LwM^r[> 9XJȨm,a\8,>[7f9,6Z.*LϏI7]B6S5]rϝ1FAۊ }X7'^oYo4>**,5z+j~^X4?mcsXt[ÿ41Cēs= 2;9,OoԳ=fD--K@Xºz_~f}yA=#,zO>^z<يǧ_(aѐkP٪~UX+*}AbuW)}l,6jT/JC-axt{Q3Q>upBۥfTZͦa:j1An,Fބҵ(* ]o$Eq eFMVJiLƃ BXbBRֿ;"bsf;?\9{9bqB%(كh>!X XP,Dv3 czA)4F'w^  B`7L90mF Dp!y{ʎ$P[D_bYv+#0dKކjY WE@XN]sXޙH0R;Mc,lJ i#[k sF*X},n`vdϠ[B-1g#OVoB@@PXG,-tA6.%o `>uC+Dԁ/oa$ƞ5Ӄ,b}8Q8R-&4nNf6XheTrE*Oȕ`ѩ~9q`5 ic`!*As9F@@PX̌" H F+`#^0" Lig{S ;j!Ѷ ,J45f'E@XZۥd2J"/y,`Q9KMc;v,޳+ _nYG u[*K`_|1EN;8 ͱ6x,߼K)Ųa+7[e H1`5C\`ACVz5fc`d+z2 (3U1neF,I2c1lgYp8ϖo]s^֔RSI`QV#-7%z"  5/XM`&X-tTXYW6 5̋sL޸fg"X X, yX䚃uH,F@ė\d`Q5+lΪQ bQ˰0@s;„.7cPàw@YlPf.!bNVZ291z0egTI+*f4:es܈_% R^_e3ySnmO`B~v ,rrUt.^G}*iVJ0,70Qo#X X,#2v|]1` 6dR,8v/`bMFо4bUS1r e9V}f^5؋ޏT,!Æ /<)z:#sMF+}S`R*Fr`[oz,P(Ԝ`!4ɪp\}}ja z܂∇ǥ5R|F NMv}~aF>& b U ND^Dz殴_*>hVUY~`Akҍ"ڎ,~Fw QӚM\+^hDg (xIBXPht:Qxd}hii F?/0׿Z$s)g< 9b']~^`M9va;6^0~ 'RHXRu|?q'`}5p۴k3t׌v>gIhy/y+o/u͟+ã['tEnK6`!7i}Y p;' X,n{lr>o &b8V04k;G#&$,1pAV 4`d !3b֛RBz qץ Rb?tzJ<`!I{oZ|7ҧpCHiw$.d``gsmVI)--srky|mYfTX.Cu%d,Юª|Cv d<``QUR@đ6.`rkHq B,,P'+_5`S/ֳ3 HQ< {)X NvG=gC" dgFdgl`!*`ik>Qv`BP(  [fZ ƒq`rڳQ@V\,#ߍF{&<`1M튟`BP(  [jXw7 ӂ`g/҂]E|j g`mf)'r( B@@ 53GZIJEB<7!Z%7E!@  +ބkq[3ߔ!XP( Z"(R,g}"ȗ)? ,jۂ?ν),Gd:蠡!\$NCqK!IFEAw7qfgl(MiPc}VB~f%0͔AD  wH,j|+~EwFm 7"%vbA+ya~+ba)   3rFb@-7"uڱbag/%Ņ.";ГXfb@BAl-I6)7{1ɛErfb!k@Hyr'{O(A LEXз<;f?ЦIȰ֎5 n8||d2Z,L3eb@bՉBb!c_Vlfb1_-+DM=${ LEXз f0bOmF܄Xl27H,dƋ^{'+ jii "XX@,_rozR|KY,-,Bvba-{ L#XX@,_V퐧 .n Y~5 6bA/r 2bbTOn'a7/d(Sjb!3ںVrw-baQvD  K7A~i   'K M3 k('U,L3bb!Pʘb+[ \u!҄~P}<i  ~ax#XОx bA'Y-₡X,3xVyY=y!h>&SbusbABW&z}YbQ# 6i[lbA6+~s,% ִ\T,21+"2@ bb!=]Us'CuyVJ"b8ЌmڋN5%;ٰc%+]jtcqSX=YJA,@, 13]<ެȇrFP{A=חu+o-oXKηH__Ą=ȴSٱe*:1C]D{Xl1?KVL>ST]m!"Plk'T 4 :[!~#'3=ꪱNv0jȖ%/GW?XMfj"Z b@cӯd%[*]c}աkłsCHfF6k|x oU#"}cPڕȫXA6#*!  h.U ?J-}m .fNł*#e>vLX&yy?OKłu-L/#"BqXp7Xf.uOll،=L$WʺgONkD'MzՙgNkA}2͔lU- (@, 0LF! bq<w[l,_ X_? I_/OZٷ)=bI]. 3 !ktb._~vuO";;4/~?-!ȶ dpoHNOz?XX_m$@, ˍVG>0?oJbc%'>6?nl?%wL"5{Cymm޼1=kd=ښQ㮵Q$@, lbk3|?K"eR6K_^r?-dKJ8C7!u O}fG*H4X@,XR'Lm~􌎇|ī SS4S<)jzɩ"bfTbѺUp ,; b-+mK^,4X.Qw+<^CR`P%#-uͣ?W`P/#@, bz+X)FnՑCV+ y)[lZ-r+͏vr;_^hDx5 ^E:Mb[qLǚdzy{;i{׬~k=/2@ސаhaΆ|X> ?еa3*T>V o{ܬJk/Ǹ% E7b!NRtWԣ_e:=}*xqT߷WIV,w_ON^'\T)GT[;3n bG&QIb!IX/DWp$EodZXgeiJQV44#;/ISȼpX,,IbrYͭ%ϱurP1θ% EWbg=&; %C(X W&X!PjDZ^~B tZ}IWWSd}Yr/ uʶ{ )W"WX8|O})/Է|۞ViPmI;;[OڶuXض*+>qɶom?%[ffJ ,>*,G3gGr *zb)W--Y`Ya<3[rXoCe Cy ;κSa mjkmm nك{¢k=*=Sa_tŪxEŢ\pg':0qL ;aovS~{¢Ψ .{3oɽSa`XĄX)8⻕x%,GOk¢~E<XuS]ay:,MS y^_oxQXds|>*tXxy=x١|LXx 3鶔&,- |3RДaAX4MĄUUEE2WV%jŸ8.:aW>Ǥeaqa<+[hR&ŒŪ/bʲǶo=h[zİ @~:a=yi⊔Uaq}- I[EX ,,,JU$JSsYVK,[ab%zwβXmXp=slvZ{XeXȻQ%  OR_.'ek,[˞RRڰώ̿FN/+E.̈raAXdXZ?B!hDӜeE7fpiɜ0 犕a Y _#4?à'h CAbdl)S]Rv׆fppP_k S;a9$eREX ,(,WoT&mEN ,х1PVD  , ,‚? ,‚  ,  , ,‚ ‚  , ,‚ ,‚  , , ,‚  ,  , ,‚ ‚  , ,‚ ,‚8pM65sfpa g5)‚4%@c̦{mּ|HaQ@Xڐ4_{^Jy0w4o>ʤj9޾aAxiBq)cNvelah}7|ZܖLJE@X<1eej?|',3,‚887wSW<_k6w OQXdbu?[c?r‚29Iȫb=yr~[|/ aqOP2 'Xђהo]8{nY_%Zad0e'yRѸ{VNkX8m5*X5Tuq:U{ ^uMʱQf"D o+ko@DYqo\ԥw`x/;b88k5sywχ)f#,;a%??H&9ET/{&F ~GwtEmʾd_"Lv iUp (/lU6v热aPVx8@sE03a "s5xRkF:â ދŹ]o׶ww,ikX)oLz:jXNVzGߵgZMװNt5]3,¥hsE ,9< 1xCN51˳O [ERNKX6a),aZz8\{â`r:%O:1fT̺1bObkX$+[,!3aq/Ŝ"HLVa1Ոw:(5c{/naQL,w@:B+ x0Y7[,V‚ 1g|!i>s]/Ŝ_{⨾ֵ8ðKwjX֜w@|^E4߸{XZ.[,v ,)ܸf|@{1]H `ΰ0iM$>WHrxd>?ja>~uRs @Xwu,7Sy#cN!љ[QZ{X|Ti\3fq :;dޘ\ O*qP@C5]Ϥ'cEо Jus*n`USLNׅդ4y>FIg-12Y)eEj8hEc:R߷;m;d*R% iưڥ;Cb0vaAX܆>2f\- ByW9|pׅ_ eѕ'賷ZXyk$Xv49ob3u2nj^(/7uj~նn.eð8&n \^ݢuSU5aAX7 8Reִ{ÏJe-;q?kTaxE+a.V[Bz {"JwSc[<aј3*x/Nvd-, a[U-07XTI1sAX?am5+)s%,a}js/ą=Y1B IDAT;ꚰ0QolsNjl{:#p;zgb0fzҫMn1t+U m /5 e[tE~[n$ȳc,>zsX ,~?L#ibcWJc׶;ri{5<7x|Ju|Cd:mdݖѰ00vgxVL sa[ =f![BDtaAX΋j8- "NX ,~kN/N*k'.s&,b‚-YKNm1cX ,- }*zחl`>W+-=D;q~aAX&qCRwN%=<u_6qj>믿{lKWڒWTۏfk{2v<8`XZvUgum_m>9}{ֿe& LfڮxNB&dronr'̗y[`Oѻ`ѝ)@YE;ʢ۝o{َé/c,z,|(u5:G2 ͗^S[cy≃6i@S4P:\,}sQyy\kOʹӫʺw*}Rgu$09oQi ,Nw?;S]lk#`#`QM`eL%؝0',4b`g$UD7q,M3,"VYAyw0i`e5"0)5~yEH'ys K=Θ󁀅ho^xfxXh;k^ˀܕjFzU¦X|ua(NLbHk80W* 8Xp"Hǵ,=a|dٱyD&ڸq ,Fo,XV;h] Iv`@  k*GR:XאIhcqG Lث`!.tMEE6 3d +518XE|RBrt b`,ETT. -%FM<ںT(I(6~5R  AoZF;dք?h!X|n`ѣ`{,:N Ps< 8XpK]i ƯlS*Hǝʕ BJ+L7WXB6?ŘiuݪB#'xV=Z%.mv v, r3Sҧ]?1F&*٪{MQz-ۦIUR7Gk١2cl3tMXwX4U i4E,6,s<.i,Z(N9ǭm"vuM&(:[8P#X.u`1 Ì*NUՇ'-nj`QSU)Bf?}U[Tx58I[6Rt->J^Q;:̟H\wj䶺V x#;BtQo\XU%UO/#,fY XTgA]YF_Rռ($p0$e+4fx.HeXȲ 2~X-KY\,V'/jX|hl*Dl^;t+uQf9h QkOJY;ٱ=!Z n{_ ij;-Ij [¨eѵruO4b6lnY!գ2ĭ`,?뉚,P|W) !Ͳ3ҍԛwPzϯ2 lkj,rf51,6րcdV&G؁( 7kʯ&X8` ;O3:= Y Dc`T XxU}92&o!hTPU<gXHaRcpF6ά6 jbW,bi-b3(ޢzθ'5¶zHn:Y0Ży_ ~bڱо}o_WEM"yMsnS5FMKYȷJl %:+D1u6eZQk')֚2GrtdHpw+;c!Mkn :G5Cl59ؓKFh߰S2^ڧFsM,r֭+DE:n;HNDI~koM$O\ha|;!`pۭ9VGK46Th gQYD8-Zb`G?XaiB#5rÍx8MLjc(Zsڀņ7n4>bS=jDR:u%ip6%qE==C,p$Is]a;=Z%CPy`]^XSI҅ILCH! !@bBHr (,Ԯ{jlJ-jq%tpoT/P0__>^>9'T0ԛ*i+$}NW}رZ|]'|VIĭCnvmx+zC4O6V'91I۸PJ? 6 XaQVPg݄GSnX˗SxEţ5q47Q0>I^0cc{t#ӎt~)1Fy nc`=96B,: >E^/dmg5bU̓B m 9@K5t?Q6 c;;ei38ȡXxSK]bwLþܾf-5$-#aX*bcä1%7ug/{$by6v̶pMtPĞj{ KeG+fWGZ1ԁB8Fo6&7GV*~B۬D0 lQ 8guBMu/K>*l+7>|e;ƨ'*k ^ `= ZçSFGsQ X_R*_kuzF>PW3u'Qo!`ZE 94i̪ҼZJE!ڭ ,4$!ԀgzYjh1e",X,hW,湙u050p`PcG=,R,jܑ,g 89ü X3dd<H^@9ANE˲15ґKlsF1`鳍 WvXhm{9h@ X,|{;H%X^#+r,0ԉֵQSٚAUCk YEywrEWTM_?$gܥqE~gnǰok")ur x8ax#Ƈ+I|/~>+jSBKb$EN{tS?f3"R}j l+nž3IqDcQ}D]jH]j v_f:lAjN]W(< `uT :m.ylt,/' ھrS+$XԻ\_KQzrB۷C-[(`17S^kN U0Rn,B֗^7ۼXwBJ~ˤin5g",PF.8,bۗyEN `o`-F9tp6Np-Qm#8`1r#dm 7=>ظl]FZ:rEL3bZ`ǥGQʻ Xkr EI K6e )4d yP;G\ ^I>uk?Y,ӭk6bR8[W|iR},Ȩ}Qc6Ϡ+;^"#]쪒Bc.kbaۺq$w}:cX#r7nx8b" V/&ݳaÏo4[P m2 ;)x(*WiJ9> Cpե  `ޟ9"죐`XڨT:X,0DQ`ʕ*;,/" F"h`8= X`?*`1e1 (|3w,)GtY`BC XE%fFϮwG7CbkʅlqRg7o3u/9>Wj5ؚڨ\ ,;fExG&10nUbyˢ  )bC +,EZו1 ?/ Aj{d6#᪵#H(^i$642jL^V|Q˴X=IEMZ1bڡi1P lh%^;cԜxc", I#"*%:Xж$Lv,S}raY_̀,,lYb)W 䃝^q#0bil@ȭr$& O<`lM1m vPDEKK E}@&W*.H3G""0c^9Y`al `uB÷иb{,~%aޮ{qDRٟXȶt KԽ߮P\Mʜ),* 2 )Oiȧ5 ]( V,  y|ا{Lx$im]W( i:cXo`#;X !8r`@83|N\E+X6`ywOb~w$0 +(0,᥾=Jp@ m.'xB /! |BvϿn]v(݈I T]xX(8tnV&Ex?5wX@̹%2?rݹL +P`q۵)X@vlOuH/?-,/,ҷvŧ>FsؑBGnu PzF#o"RXb,(E]p'Upg}nJ,^է S%"",.=7Ԏ|`JH:* 8`_'QJb0E'#G҉o`ll"Zi`o ,R mz1XT/k 2ﺉn `Q0E, $xɡeSkA[[ws2io8#$0H)7{(0,ki2X<.k۪>)qMS=q"Χʟ4 s^)I`0u&Exz RQ ,ZėWw!'0g``1s`)go ŋyL*v,ړ9cXx֨zBI%"Q _R+w킾}쯝+t,lVm w=1qMTBA("KED64XT'-nu`$Q<1AWЌK  <Ƶa`EI60>Ո,В{Ҽ+zXH x ` ,@T#uvB? ]5'E."Xh SawdN 4%7MZ+um; Ia`h(0,WoH c>iǎi Y1^irU IDAT?3wƻw4MM{"p7^ Y\2Aؘɤ{[j6,{}C RQ ,P:vXubQ5UŌ#,A,ct&,/VvPdPRGDy;ӤnZP--m"RX ;ʒɘ]O ,r͚.ͨ掑 cp[Tf~i0XD`ESu]<<^ܙΒ1 cDyE0hf=wM[=zW7E8L~뱌`Ѫ~iLU ,r y_XPh5|b[' ,Mc ,z"xBH;n`S,eX\Ppj!=鮷u2mq󱢶uV Ia`!VQaXi2"XdvYbn,Y5m|D|',Ijύ[^un;LbASF[MMjV:l^R5G^#U;א|WEb#lW뺏^>oĹ(UWb',74W)ONOFb!b\IH}/PY7빪]ٟW2O!,H0(1`i [c<ނ8_0q'_As&,"b@):U b5 ,iC^*`X14-eiց6>cYi*;h>Zh+Bn,zW@5҅5P!{I^}øXQUE)k^,b'ɼ dsZ Xo]gڜYs@<z:1sfɈ{7b9 $Ra5 #tHnc(ldN `'~i㯰SDrw#M9qX<$ז_hx鼭 C_X%G!`N^k?% Re~ų`ُt⏚Ww~dǚv%$b ;y*lPIL\#up`2iݫp0f׿Ljefk{`z=L O3ff_T Ӟ:ϗ*dsTEݹVOύs,*n)48E۰L瓩x]Tu]1R=^Q ,B^ݾlqHpG34/Yt0DR=2`#IczR.]#9Iw QB5(>E3b)I?P4-ľK~# {EXD`5S%Og7Mj=$:t^yW.=q#cżĸ9zDSg^;*20 츝%[ ؂ca+>g.Q!,20,B7 ,Р#`a2`TQA&UV^`} ~.ז_|D~1RR ?Xe#7v[zc 2Ϛׁ/riͿ,Bb!ܹv ?s;e⇿뿬F/AF=[_}7/?,= oLpVQ>7*ʝ?mYՕf@ZWQc%>5l2A,xfE1b1Xb 6:H'h6bqZG,JD%|-= [`P]~}?LX;K8X@,'-Mh-yw ioO<=*oOL/0V7xbQSCXf^TOgKQ6Ն<+«~ip6pOs(F(k Ҝ1#*2QƅXԤ-66zo:%`jz ˖Q ERDS VQiq"aK0Jg4:VvzR㟏>7j'qE_hiN_ B> bnttژZvLSk7L]`@.XL9> [X \B%FTnݳLƯn XA(X (X1f.DW[f,ϣXYhmI0vn/\o'.w<_68{SV<_7lȲ/;[҇pUkم~,pt^9* J9a0p$@P1xֈ\WUTCU&3p:.1M su= ,xp1Н>j|?Y([PTJ>7{~";ؘ|w zgٹ)19UE~ʫ;9C' >,07_(Qj]} k袣@2 }&| U .0ڪFU+7X<ՇIRLX uHOKZ (tfł9I 6;LlJ.X̽98༙ xCj7;ճimU/Ӫj_)d  '*_;YE vjBB+_܍w^cT;FlYo(1J94`[,ċ~jTO},MVE`ÞxɎ0 u"16kp`&юTMkdST$LlǮVzD)֔{ӌ2Iygc4 87 ~=6ͺsi'o3sӽu"Ml&4m X JBHO ^wM蠫k&z-3.&I.Gsh1  襸ObKf`lA+B2F=3"OokPOz"#{`tNeiX(g,95!9`sM}y߉.N?2Yi!`QC?{+CKhcAzzXMQ3S)C n2> %**Dcr{ )DUGI ,v0v^ O _ zT%`WYJc`mXkƶgqDn'g,-(x.Sgy"%y3d=E[י .>qGglM>`Q5lـ&vfQ2Md'U1iËfM1ۙ",,~r`p 87D_Q6[ӵγVX;u &R!I+2dM36(jȯeGl+ҫb߹_Ê#u_X;7M r1GC"FԬ:`䱧!ͲE[毙䵟wLMaz%~aK4'\6Bu6;u2OviV!~c,Ktv-``AqdSY6mw\%Ur`QsΖm.{:<.XrP3^g5(*ξSABN Rm5vG%p[XXvNUNHX,^|AqXuNܨ6RЭ;F0j'zv[$,5v5:uEz*"7=Ɗ wz4?)'Uf*k.b:'tĄ݃e L`s"vM {BjW7PVFй]? +32A$X5+Mw?=jtbp@X-r3Wf`mglʝ{@7q'.%=.[ޙ\ @+ pP\%p;ӮJ$T.9MqB { X -sќ E#9um.꡷n9fl&: v``_?'Ȼt›xz͵.} "eAz,O RmrVx>I8X-ZݲD kԇqz ť[hX7IO0XX(TVNIlDU,'PO .R/#PSEEn|lgqŪ B.F,&96G8*" t٦SNao.Ȫ7PD~UJ 9# ڦ|նD~&1 7, a7-%ӄ>J)"蜼띡4,li"98`q辄y{?/YeM i buUCKcӞH6/\m/ 6@0H`1՚,t4|`As@c&X{gJm)X5)[+O肅TNBn!`q\zn.U,j[JX\HFe/I'@WIplXW?fRj5HjtX:<=!鉷 Jt","x k>8w XN`{ׄNDm>ئDE|.5#U !v7 `QUR>? IDATsg{n`ZE8  )YK"qQ g2Ij Ke{8v 7puIK"?+ޚm>$`q_2i"c_* 6ING*ȣrXB*+"f7X L;Wჽ_OsE h-sW-]8@}G BN/N^tls1 d`ɤcTS B-j ,v C^8`s ,pX { b7`W0e]=*2ʤ4eԸ++1^Hf9\`,Bxp+޼}is6;@Qtd8X$,STZQ QL!XXLɔn+R)UU(V象ޙ3`bt^dA5,r 0n٣Dv4]: hG[@AN`uef3mOl`,BxP'`ޣIq:iwQG,CIxv$ݮ,.Nl'!XXl B͐9pJ=MTݓfs`ͽxاIH`qҼKG\%Eڽ\̡k4P-5`}CO6=)bT!,]y),ڨx`C/\Gqt1WShP$`!o[ XGC@ ,J9cP[t"`Sqs;G `q y Oh1`qs80`[Ci%9Fck_l`+`Qh@7j n _ ^`~` Kmlɶ4Ǝh22E[)XbXcV*R,d >`qf۬L^ Ps,VIrBwsDZ`叾,,x50` W Uo h !LLSIM/@5q*'Ÿp8rehe&F ,$ xآg48bʗVjG \nrt.0} ɬ+pr`{ԇ*3,E4\Id- _5|[ J`+[l.RUv. !XX ҒvِHYoP9,~Y$@5+҂-ť}h o㯩 W1Zö?Xɒ.HNj{԰BsX`ђErVC)^TJ$:Wꐍ#+`aM \k ,G{A-1hPDb qYZ#JL f72ȫ$h,򵁅]ү u>#EBO,.Ӥ?Zq7g fgc_ELe=[.<[,I4Kk6'cJ)6ZLbXQՑ+]`e9=?XLmG-^FT$ۉآgE"'oU&}evc}!pn@-kyANpt~U XQ,Eoo1sC'zLww*E{]%N4*=d'8}wo@6"T7,,MdCࣧb~Kq SCR'sN '5, (kST1TRi,dIā_2ӳ>>AƞBAWX;(Ac/8X =4Uez97P;i1)X_LK?]!o ĸ~0P T}yn[h1{;`s2Iv(@tu )Bl盐jb#gosgKh5ޏ|Ĝ^`_VL5u`.9s V(ujA}ڲF$/:x6IBl'3Bhѳ ,Q/w݅6z%ݨ~+v`=R.9*Z`>X >Es0v8l% 훚,e,B3)lQ%ɰ-:uhMoZ) . u2e:BHrxŷ6!X5X0g [s2;$%|dwnWn#DM_jXg;Yqŗ7%yEo(.rxEƵN,>BHB0: ʞќmct-AO TmhMS m#EQIѿvXUY/8ӗWK|ּZ6tDʦZ,٪bA㱒ܜ]$k^u\4E,x8yjr&i*SˑTXh)a,5 -zS"ЦXhR^ 2B.?i%Ϫ5R;Ŋ)<^6њ}OG7\W+ -RR&&֚_LZHx:n_vCNX,盲SPiqNGj%l,4B$&ݮi:[kҗSwџ^skr{C!wT(L<$lb]XcО)} _-TԹbXtM$F}3턿[U.}6&mD];ST!KWi>40i8Ph@-o-L,FB[xcvĴ;)%Ӯ'άt'}#5O @b>^7oySX+J1Pp}(agO @, Eh[3imWocf-du5۰K! j@tYDo0 @ĢT1G`ǖ[ '@d 2(ub!]Yܜ?M%l\u ` |@, @, @, @,@, @,  @, @,@, [=ObX<\aAz,] :Uz,] 8 SbX 䶮Ă.b!!?HXݷܴ.ѐ]XU b=4ؙ?@,zǻ3 KT,n b55D^/ć_B\FB}třl bQ7 QLd-.Dx0*ZhK,BLSg /z#qϽm![E\bs<|wAǓ'D,@,~-ɓϽ M XZ,dHC,z/w!X =_W>ߙOG ?ok6?k*I!"T^Jɵr6qrœ5 ڢ Ŕ[bj]3猧c.;Iy[,73bQ7MGkk-h\+-sd^@_r2$0W%>USBWlm^I];Q{uVXbX<~c-DjxHXdW1i!uјdEnK!ґ@PbqJ{J?+?WjPWneUÝ]cTkɍ)!Ol@q ebwvJJۼ?vu}eA +XYzt}bCql$u)z^Bkœ;|fn7Z_~7}֨ͰOf*j$K[E7=!Gbus Tnܫ9Z&rLI/b2jn>4흮d(m6.ZΫWSBȦv_c 2)3F *,^x3gn0֨wkGbE,@,z. I<ý}8"IXx:>bTq1-ޯ7!BڬF$&yuبXDJ)J6" O(Sτ0D+8h7.{2k/35Sv[3?ƫ c_ZlVy!Ό E*alvL4g6%]D&*J'T> ŀ[E97h2:w&{#Dug[&2"\FTnvxzi'T/RqdrV}4m5^M9 =oLo58Pg ֋+!3=!c ګ{v&ܱXx2H X%߼'mc.o4:B@^J@,A?ʢ"D!c׉1+ #NTeR 亇@WyjkWǿgfujgֶvZ[nͥ: `풻8[."n=GO$s"/3\$<Qyw .TI&Q{;A V2[NC'<=$F=fS .e:J>iA FuOl$C=ڋ_%0֗ ="=$ShEj"27?1I9(VBj0%>:׹W,^nf1y<;@LW~,I9u|z$]( kYJڈ{ D [sI@r<`xpoL!:{,U]iWA*l^R,i_LfL4: ſwx4__GߛG߶VV,qo|hLu*֏X ,XXH# b _" $UZ)jUZ5Mhg(QA,=G "Onh"M" B [T'{גg~_{f?TA'Z}~9|' 5~ҴN*eFɕ(FF@Ot*NȪ*Uw=k00?=ˉ3ݱRpꬓ/hAc`1ެ Jc tI# `1-!yYOkDmz7m_(EjqDb£~ -L'߶IF0+J$9c1)G"!C\[\=aM DňbeCߩ0M423ޚ.],by[Ŋi*k @]1nA~٠ᕴ< D up) ղTU_>f&r.X>^f {u6c c__F,fܟ;H ǜU|Ty ܡ:1 I4mO eoy4n5^l;4y<}*9.Ǎ-Ap< į2XE'mE+7u\˼[&Tkzrm 㟒)52'ĉ}$+ i+=$%m!S oo*nTWo9 o/Z\R4cG35%+=ktdZg# 9 zk˻FV1kа1nu^eV9F5/R$3}Qg`Aϊ:==l {u6c "CvnW$NubܟDsߍ[s# Ra$Rh AX9(*p%qXM"O''AH؟cB;'{2;w)L.>7ܗ' 2 \:6 Sϻ$$"t skADKO2X_ь*l`Ge}"X6'ijͦez`11 &X Rs[s~ IDAT=tMI ,WKCƊ u5`ƺ6\}ŲvR(1?Ti>U`Y7Yuz`kQi%z\jdLN.jÄ)&/Rҭy3(n: 8f#e16K9x>wwXx{J}B3RQAS:X|EA,n ,$& :;{&kIP#Be@=Ten-80 d۷}#81Z`~M~ \as e{9կ=cIEˊE 6F3`2 QG__׽XsW. zAU?4jb<4+xt );XԯkcpϧEUBU'v:a{"ip\ꁅwOI&ϤFV1KJ&5q]hd)VǖD:84 8oLIJYGlvgR w:(r8( AX10NdU|UF.+o2"o8Fh/R0]wJcbjBx /~7JBD,~,OG ,/\,Nl: Mb; /5ІN eˀfڶNjiPǗ]םq@W2E\&쥤WvVjbײ=ʊT:ar\,YUQupFizK٬U#xБ,"ry -b>NShs)(,Nq" 7$Le2PX6Ԣ`R vń}I'2b9=TY`ۨ3U:XňQ ߲EL%Ep')wت[@s*Jqt`񫹒ζ=w*Rf8 ֊^ÖM h%!&G>bc!,H $Suּ/X9by`Nc7=c^4pE`G7)G a„ `b,z}xߢJi,7c""Hna  )BBU=^g^ :0R3E U,,6s5$sۖzCL7B`A+p?."F `~<`v9XNGQ Z~*ք*)E-kЊE$mBg٦ RS9[E <{OJ,y)Sbo#줿>.zOyn<(X/k;^ĭNK q^~U_"> LQZ`ա[IDXʝӎt|bB"@i ,,;z[xh@P4w`MIlgU|*&mbg!s42. 9+Q\D4 ߲Bt$]wBוt-z՚h(s!ٚzχ,w Laf,&pv*!t: Z1KVp*%nJAތk-W=0X֔YoPwIa&B%`1 R@p7sIJ|o;Y69hǒnQѾoHq3Վpe +n#L0a,X\,bTz}9Ss T)5(@2hn(,J|8JY}qȔfK\F]*xȵucIJإbov we,%iSzyf =ETl!|&a\r8t&~.X[%;![bb:[*X."'Z;{j~b`W T+ ^,Cm+6^y a/ˁ~7r,̽,^ \jrZc `; oM6ZvfU $ܚyđ)v(%n<+ȁ`Ѭ퓤ie$IǶH0b̾Cz`"q] :]NG*r# _~UJV;C+ fuw }Vtbu?v=C E5)?߆=5mAo8>vƝByUta„ ` SdE˭I 偪l̲H|X߀:ۑ9ٴ>i"8AF@Z)BD8)xDJ f_lg񝉛ɾ1gOrf-ԬE>0HkVFs@~Di?Ƣ2PsYf̵"E?R BS$PdP+랽s>JNn w7o¿?xGSa!,x;?mTNPd1*p|_>x{o}E3Kvʇ>|Y{'kcc#VW==Y<| 6:Mٜ(+F vU:nNm aN|uaqޥ=S|a4rw;=Q5;B'uU:n @X WjZҝ)QNX ds?/g9El @_ub"SڬkmBX >rx@w0ǿ޿ko]ҡPw5'?=_kxA;٬&|Ǐ|tLޫ-} ,Eڍ^;b.&;&ˈNs=)?׸\MZ g[_oR7Efnn-BXzM(.ulįJ#I=9]l4,bksZiܩyq#{ܥt!C.W*XTFa;R#˱^܌⥕㱕˵/7`BXrĕ$)Tc#,:XLE11J~GſӰxvGҨs6TE)lhoi5ɡc5 +Ÿk.43WQu a!,zɆ6¢Q'Ұxb+"鿅٥Vę"%eq>w9Fg-2z044 ,E*TRvy%⯣ADkPaq敟" +zDXr NzsوIr+f[@X5 NfQav>7['ŕ3[Xx$Ku"IQZXm|savNba,dBݎb:CF~N^@X^saq'`âq>wA &,ðSDŽEr=6n0UoM464n\lMRa ,‚  ,  , ,‚ ‚  , ,‚ ,‚  , , ,‚ t? ⡆ƝమeՔ *9Mr ,~),PCakap%8aAX nXԲiBc/;1٥7gϬaPjk"<+رoɡR!o8 b@QِCe"|x+[kma)A@X3e]&CҚ;,ʞio tґ04ڸ2'ye3 ,>yuaZ at M/JኼYIQw pEQ)o*sbk a'΅zpa֎$MbU ,!5'Ϭϝqݰ𯭰5Η>;ɿU ,8,^X*rŠEϋnX7B)!ռO%ɎIU5K3Tal3jua1aa4L)ؗ qMoawP]v,cp/a!p!L~i?=?Xtln{|KX4QV7>¢jEj] aAX[)rƓm IDAT3JѺy޽Yݵk,FjR^Ԟt771;`XTk)h4F nBs/i4‚9,3Z fՇ[{l Ų'& 턴ԝ> ~hHdҊ NM , âFoIäth=趰87%ְ0FMF tAv/T7,ʪ>X-^‚q*J^MMְ(I ;,KnX V 7‚˰"aεplat;bq}}1aa^vVE1j)p9 , qorǤ۷ys*8,n\dHJmQebn:& ,G ug7o泡_? ,f\(,JeRu¢޷,a'@X3,>s-w8!5WDXT-CEZ:d'@X +0ﰸa12y:m\͸?SRv  xaam4XUjxWs /,GbE[ۧG²a^kQ2MͲTdE Nb^"Ax@K޵afx/~.>8vRgb텰(Gg@H.֯b`on]͓ޛg‚ ,=g ~3Mry?Űбrp}6UX<޻80aaD@t88,"w"ÿaa_+  0gM]a1s"t)a%Ru aAXCGKׇai+"\w)‚*,ԘwűH2aQYݰ0wj>"Ga񰸭VǺ+]a7ҋaq;vaG̉  xa!r޵dpX1q<"ˠ+^  xak8)%w7wx$y?w_" e# S8<+‚xX$,sel]Vfҋ㟇ŚHsٰwNJtŒ&(o”ķ7,;RU ]-wF5'٬?bPXEϜ4W)wֻްPȇ3w새mGX@X 5!Nl]NՌ rN'E[:;~8'o)6LVWްPmX#SWMAX@X[ȍ.!r`?##y%JCcV\V_B=,u6_J?Yޑ9V_X$ޙ ,JB׽gCUoƼ~ҹHPӕ}[gΡBwnM;/g  x6Shm+z3{,mj|<^=ju2-_a‚  , ,@XaAXa ,‚ b7"2;>:/aAXxR ş o",@XbW: x0AqMU(a‚}{7bNX6ݯrO"ҽ]9_%aAX>_89NX6ӌMdez>?>._w̶zŪY&e*wTd=nzUquW(ܥ齢qp['Ey%?a~rQz`M)d;i/4 9`!n>.;B|þ1t͏8 bB+ܳaf슰} Xe\gˋ]{a1jX_όR(sb:? zusjsfn?S~X4eӇuZeKXx'}a4ê?'kJEzq̤WL1F Wz9f.Yaa:k]I3*JUo`a1aanv*xCrcҔyܼ`caaҽQauhLaQ.;;ø ‚~' 5̓eEU„P 2mo)3nc ,~s酰Xaa֏GIоkU=~\PaAX_URŹaaR\\(-y8u+G&, bDGCC]aAX‚ ,~+,D& p?»a/`La/< ;rL9-.N{~ g  ‚=E֏_zH7uB[i:"9;T߽|̽zm=p~|G)uu"A.{{4ofJN\lGrլphT?>S9k{dTED ]RsIū dlӅE J&ŹPl@RvPS4x,,U8E~GHͮiE#`[䎫?\X̤ܓ$2uYYA;tˈ$>AMcgX E]c[c &,K)m&kvcȞdO3k6귪vB?vnL9~;}#w3:[<‚xaqW7Cc;Z̋sӅ;Og LDX;mQaʇŕex 9S5taHn? D>NâX8S~NX{aa #c7$R%??Rjkr.]S܇Rk %U U:aj>jښ-ߞ7o{Ϥâns&q+]WDfn2kfí>f۝G@X8,R&z/RtleTJv3,F/gRDX?\om Xsڰ%ws5m*È_^d*ɰj JaZ1 [O~D7BJCEtU :JnɈ)pnr=-1گ{gʙ c[c+4ᨪvv#Z# ,k,J] ra_`,zNX|uhuca8/\]mm.a,2.A) }[S[Ofo_RV*a=Xe\/h"1iGX73 33aj6c|XTDb|,Գ]`ZJKŬG"o-=0 z9iNJݿD.C/,ثHZB+K,&ԏ/u3ge~>?93ɲa3,O*a@f9?֏I5U8y~ǵ , a|=fc{lj~ynJX ]t;=b6Ux;{j=aZj}鹊k-I6NXD+,>b3?Ɲf ՟X{&F#q',B"gaǭg*wcKE#Ea}XLհhC {{]ƧpůvD1? avꎰ8h=b1V %M-a1=?ߎM[Ou^}âvZX=;T VK#@X aQ 5)eW$Í|V_7bjى+SI .TI|dFYҝ 6Ƌ3f- N,4xEt4-}ovFzGGOaq#7&rXl(o%yٳf-,NjkI[ʾL{Iza#wvC=}EHh]˳aza!,ys᝹rhj/n>kV>}lOff󕫜6'w+9`L!>x/g8~nړb#dwtRk,_y>h20=wXt8{I ?'4ye)‚',~\v%8 7ޞQ(֊ENuEr_ f?F8˧/EE4GJxE8?Q5 ظHXtQkزn W<=o Q2}+͇0޾m wtE~¢9tƒGX>/KT$+/+#,+;lXK^rS>ohko?Ǖ|wrى/ɕa~5T9ӵP> ,uۣ]j]~t{?~ ,a!,@XBX , @X g;XYYnvVa!,a!,@X a!,@X a!,@X @X a!,a!,@X a!,@X a!,@X @X a!,a!,@X a!,@X a!,@X @X ?4ְ7@X ( a!,.[Ba!,h\@X ;o[a!,w.uB!_vLp]?}0", 8~j9T?kKM?蘋,ud$$$J4**}!e`# / B!X XP&XT jF/r'vl `AH C,:-`lfz1Xu  B@@H-(`Wfǁ|n܌WBdRaAedv B^(7酳3ytzRE˺ٞ7>LGK9BO`.~X;zG`_FP(  jb#oWtć`[(tߤ4 S0c~lh?y \RPM˫~zm{ , C0 C, u q6QKM" 0h8"zkT+GۨDȼnYE*D]be-YzLǓ]Lt7X$@|h7T9h.s.(9J34Ècm}mbj9Ðrjcu>SDo` bOB%K&kP( 5u`qWҷXZ++ʼn_{Evlt,[gMr/6^L# {lO bAKQ^EVodILi[ ,h֤8"*tdJNE+tkB25}<<*$*硺jYYk01Hp-'^}yv4( ``BMXGaXoNErvNRi"ŅvC%vknC'1"ii!sM񣵖`~TKFM;XKܘ.X S>Mv8L$Gwe9m5Uq6E5$h͘Wj9,Y?}PVIE(5-O`AXNec_>OB矫0I񒐘:=MKБ[6KtkXhf!-$Br?* o,V@M B@@,BZc_;`A]E(ǂڲ)7jr?X`yBG$rD#($#6U It..-pEjP3O 5}`-9E>2X,j}dŃ0k%;X$d&Tm[pGpl}2] XV{V𘶃+DP(  j"I3Ld%8XF""ؼ<Р^VX#+5RTIJ^Ebne;XP)ѡQD!>,Ud9-ΊHDYC8vj|ݐ،4ryE^%޺>92dЉy,u&sP+6\ƁpU}|~;գ )~B,,PMBe:ϚQWdN`}ͺ 80+LfWtcX"Hߞ/1UZpIUXdGwUD",,le۽ "an?8'$_4fX4 1j {^`q&nj+ =|[91 Zuue'wjτBc\ ${fjczjq` U_fAFQ,`v"X\E@P(   RLCD , (TD-X rgk,SEyy``/^&,b!v 4H.޽'CcijTVF#qˬ[ТHm}ۀKa 3O}=4vv3S995(ާx6eo2Mбa8K&}=.jaEPz<,:>zR$"y0S.,Ɖgn#,N^ a!,{Av:TLbzEhJ° &MQY j͡`(7<زƐ9,s6݁E|Bp\,e2.pE. b1=tϩ-,9jyu Qw ۳` ,[ a!,['~2R=,և(+A%!;;3,GD4,Mo V>m Wҵ얞t:dTIy8?e֥ 'e(=â0d3,V3;mV}t~NmaQO܎%u,Ji0'FY Rϩ\piX Aa ,|a]ZT' j0y\5.Y Gp7B7U_gJGXUß(ٵ}/N>=:+NZn0ߏ~#ea& ~yzE -ջ&^ ,sj_ /Zh;xf}g*a!$޷;amˈJ߻rX$wN M'$Z"s(f ajX,F.5Eʣ݅x*r:_-FC㽡p:RY\װxǻkѷ^b>ܑRtkL,=}s7xs|쇹vk@5حաX.V_gSaq kb7kaW$]_JB\YSSnS{XDKW¯kᑜ}^ ܍w~$j-,ð0}vx(||͖>ޏG_綶n},fTf_-'FwO ,|a id=,M32HG3ζ`q `Qz%aX3,s^uGXlIXMOטqzQ@>ebq}op:]aq~/h;|â~&O:3 5^ aZXְ֢ԽjzOtqltLE>Nnh4,2GՃm?[XԦˀ:"SGIXT4h?5x=24MOǞDYN۫oXJ#,ZnGX<GM6Ǝa ħ$ka9uE&s~tfe~~GBx?f*a ȧxsǟ#,>B}_ٖ3o9BXwe|zQJacpQ~8pٷm_ ʍRilimfv^߶b n5MHסuΊ >N7g^4sv%Oݼ].vQyby% aˬPh6kV(a!,BX a_ͫŋa a@#>qYYl!d6WsM] , a!,@X a!, aBX ,a!,@X  , aBXa!,@X BX , aBX a!,a!,@X a!,@X a!,@X @X a!,a!,@X a!,@X a!,@X @X a!,a!,@X a!,@X o߾}uRqz&#a!,Ǎ7*ÿٻ6(8X_I1_^ P<.wiC/ I۽ –jN=LHIi瓭kOI3Ej}"3od)63ExKa,}\b~Ya!,g DŽX(IR eqYa!,`"of{{E'<,vhv,ZVU*b.,_r>,o;W ,JX4z;B(Mvaktݎdlٽ⯰=MO7>֪Ik\ a Gxqܿ~$qVf+u-Mۯƭnn̅w*F%,:^ӡT",y-]qTYE31qgyH㬖9y]Y/Wn%l}vݩa!,`Db(FeړgWڍdYVe- Eщ͢6ۡ,zW}1q3lY )F%,,iW8ղӫBR;Uk;a}fcb},V7?nBXE fjIv2bџIQͽȻ۝FO ʓ4}|Z6}"lH_8Q ,NXt'o[g#;akk0,,F'bX++dP#' 8y{2MXt\4 otb4iz-0})' ?+Y/,X͓jjF5K6:(6N׳I[g_=Mӵ4}Lpb'IRkͱhqT#}^6|TBX%tyO7BTptD}Tx\عa!,`"Nhhq"i՟4Z! I},F轭Ŭ+ʕ2wmm:I6׺0jUtFCS?Iֻ%tpDm83 &fO_w6@X Hf&V , aBXBX , a aBX , , aBX , aBXBX , a aBXS" a!, a!, 777/ BX Q ,@X ,@X a ,@X    a@X , aaaa!,@X a!,@X ,BX , , aBX , BX a ,@X a@X a@X , aa!,@X|s XY&,@X +^ BX`X|a ,@Xވa!,@X ekCM F9,6{fͯKg~`nTL~ 7< 8P D}9gzN_v33dff*?:t7= 8P+Exf^>|pYX<x;{~ .mkC͇Mrf3?R ~so=̻OV[.kkCm .zʗ8b5bq30TҐ8,Xp?Xr+^+%, aW2,닫[׳垱ʛ[O^Nn˕{;gWfڞ/Ca\1?b|F,*ͥʫ{yNܪX:?x1;Xxp/9W5Q>o8<>gX?/f+l/Rw6${iwdB dqk$pA\L>@\|Ro^[IɝIzWU}Yǝ_?;gbX|-7gLJKe_p'?⨑={8n>>xTĢ/DzIv$E&D5Է&X9Cmb,jItW&dr:M}QCNeS q?v;٧A=o)LjbX|PBg(]1) zO,)w0bQ2L]tU*}"ӝ:5 Ue}=N,L_y3.K,=:4:Wy[-z>}jwa1G}HYG=Ce7_V,%Qv." {h{͹EaBo  b!U"ݷjVB ,`BC5lD&:$ͱHcѢ\&4oK, )/V,W+X têPss~j6xJFi{"'2*yOܘjpg2M*dK,zpo9b@bX V,|-+Mmײzb-^b჈B?廟*k?%ooxe.JV2 NCf{ M*:&وGz7yj*]^#y(up/U݊E[W7eG,H, ӊE~E>T"bI,M|jcc$oU8 UV,fX̄XZ( [.@&>>PW>]ϲN,J{jq6]oY&PnF,H, Ũ 'Yyb1l鉫 ;3zt$ IDATᱻr:}Zbj!ۑK*iklz߽IL|v rԇhf$춮 @, $hb(UED܂Het:9˷%aba6Xcq>$&Sn1i4X:Dnb $bESGo퀢%pk棨XTB6;&b u׈K[bUPVbi"P0>)XDM,才+*gb ]ϗKBX A3g\"s%r Sn9iy3ϱ0FpI :u/; H,b} 5wg?/H,nJ @, /$3!NJ,'2 n߽޲Qfл%[7͏֙|bqΰ΄0e-,Ք*MQpcKa'>TBbX|];~b1i!{Sb1+/z~+cSw㋧s,Tu2 s,~rIcO# }Քut#hd#=%:4N!f!@, w Q$C[,B\ *o?`#xd7*ۡP [ޟ&";:5ZdB&,Hipvl{*mμ6B=4>0B&Bة}_&HGMLMrr 2bnje-i5M]& {Gq}EK܂@,.vjM~ SV]Ŀ;ء+g]a(wȵ X$VϻYHjfPi\\-)oi2SC!g8=0w?>+Mwju:lWOv4uϮҟ!m^ۛ&YENw@,>X<ڍy_d*;xѐ>A )2ؒX W ϕXl&@, S@, s:jqs bBȊߐUC*94A, bb#@,@, @,@, @, @,  @,  @, @, @, @, @, @, @, @, @, @, @, @, @, @,>@, _fg?G ' b, x7>_@, @, @, @, @, @, /{w4q}&rm{l("QdqW>3:nJJ$ P1M;Wo6@ X  X, X,`,`,`A `A `A X @ X @ X, X, X,`,`, `A `A @ X @ X [r8v2`;)u7ž=U 0q&|B{|/)Xzl{-JC*zL1 ^5JLi ~dMӺ ,@!/{CV7.ds ᑦ{,ŁwF_~e: Eڶg  s[t̷7gzC W.F.d#J^(U*Z9͟?X,*UboRm~`Ho[2r/ XXZn}ٻh?Ԭ' `A~~QKT֭A=d2vUNGWgdPTELL-[bۖ:4Wxy-#ߴ R5s{,/ X,_KRE=ɝn{,dOO;W? zQbۖe ,?w,igb̝7 ˔=NigS@8E ,XR,d,6\?4X ^2߅д1s``M#\33@ )f۾(ͦ[{OU"\HNy~'V=}@{pO{hwbb&q5QWrfY5|9{-MQ],≪YQȁQQkΘo)&/od|cLog}$/(l&35D|Eן׃80Ǵ[{iOYN~Xʕ?2ٍż_XLa=X>\կC28XfB`;%_ `?EY g ;Ά^V=07֜an<06o&F ]f0n41&qԱڙ&]Q5)wKF,e[sΚ홆0adQlosvIef:uA0M׍ӔFY|rjOܓRE[Ydqy _RGUqL3xIyl4XG i̹.șţ^uuO`L:U )8R|Y&R.$- (s,"Fs:HF3^*O WH*T7.l&VOW:*۸+XE'Ub֤Ts!sZ}7N“'oniSTOCi{'c6U>ܟd槛ͯm,v}}{l{J5m>z՘C[*u̶oiԫ`ۓTNCݩy*5;,s5<]VQ d( RwߔVRڷ2mbRCMRW3Q^HEht}npӕԕ9{F3Znub`#͞=a}_{ 构Nb7gU!?bij;ZlbXsAU^,֌eq-RH;rVQG>4:2W]F2hu>j-Y%d;߻!呭ڊ{[l 'X\_Zuol.Pk:)Fƒwu:/"fպ+]_OA*3V,s}} _$cyW30f_* '*8#kƾfwϸ^ӞsSBTi\vY\~9,|sFf Mw5m 3ٛ X,,tt˞_Ǐ?Fgli2A}Z"XIQW:]iwY`Q I⠴Ij:ta7JGUe\QZAUMo/\&X#4$ε 6H}o]hI\:UŒWMŪDsނ'asDMz\,uMK7e+i 9ngEF*[Ui1'jy,PHFDB`:OtpR͑`ŮIK|U%J68URy+SjL:eusfV]Ͳ3{ϯˣ>*umwIVJ"w2Z[ؠMVLp*3kSn>8ڛ r$⃨UќjJko.)j0WqV5bIsj"Z1A%` ,0& (İdQQ@8INծK_ɋPAˮj׮zo?Eh,v3ha U1Ne-9zË|]!B9r,^evJc,NJ(s۽"|`A,G!)?4CEз '@PQ>t\}ט1c, X3C*f+5%<WOS:nI`1H!(k6N4`ayj,i<9DOM R'al %&lH Y ܈۸ m uScX2u &#L:qS0k!cV%HIอ; rY aڨ{j,<`1ZPȠǻ|#t͋*) oQ >s7?-C{դ,3`a˜krG~ݒ?Qwݫl&.4;ck t {X\Ćd"FT|3I[ >[(\=Xw|H(8 Q⠈0ӂoeN,'=$ˬl+0+h'7^}Fu=X #S]79ň-r`9pI{ 皡Y6=D/2Z%nhb^d.(LA{h?[s&qdK՝2^ TlxAm;EdG8yIK .,Y>5@,Q慥 1Ќߕ)" 0VDe-X<)XuN%LC\HRт1 vf 6T(X̒;&\܊ok|\EEB, ?sc X0f| щ59.F8g@G- Nӫ!`qaqI [`A@vܵ.fH02ݝ҃E'Y,zT/}Wų4wkR~;!GQ!6Ώ♶qW˕ y?Lf)Q>0a7n5+oM=EAo]rd7Koã2=.q|vyIʥt~UZ^-ø=$.X,2?96 |)#4{[ZO W#Bps,NFGGWt`{gnC7g~}^rFc X0flEҙ@%u$s)M r%eaR ʉ`18 ,a.T_,Ԁy%+ Ѹ@@Icy烝ENoV0*Uwh޺Φ*]1B}Z/w;͋$kONذS8XqhJӉb6$Br`%}*XC@6oa_=XlX-VӕEeT٭T BV+Y'bI) X.q\ZHP}-\p(^)ŬX €1c, X3suza*>IXI*,Pnm٦`q0KaX?$U ,΋q]/=XЂe*ͨJ\8:ͦB5τVΨ,⼪9pd}yxCnUw@Q>^bbEjWi`ЁEA(ޠ l),VyQ ]t<KR.%K q"4[DG$XPv`Anm**H.$ziዣ *wT,> 3EXMl_9[,Tߠ ͣT͡ c X0f jX@i]?P3ۂ툓抿XsxfdoMV@X"FM+fsC?Vަ, NaaPxy] >7Bz͌ń<m-b;~SHJ|Q>NzyZ,Ztula v XOݤ &a>?X,Kku(`\ veiBٱ`1ۯ6,R 9(-bОݤ{VQu9xM >㲒C7چg&LZAǤ c X0fg jwin#Gl'=b_:3=¶ d=X4+5M8͇̫E,PGR/X&·k\}R]9[VVy$Ej} t \_ ,uؾhznYv9*X4*_V'މHu`\*iizwҘ,6 R#KyQiUjt$Z}aXQiUтveL7 8Xh|EP7rLb0f̀ c~r"@w*[!sE |QxrIzN hV MBk\LUdH0Ypxeً:bFz8XdY ?B6]]ƫ]ir\U0+Q>sjZ!r&d4DT&:9p݊ڢt_sxJ8=}y=^uG>z芹DBpi`ۘNE t  A, Yʡ[Ԕ-r8%a(pc, l1x}7zcp1ۆѲVC,!b??_e3ƌ^O2Wh.Xб YXf7Qt x [ .kDbǒikRDNK,xiZVz:-%֣WWa(1 x" voG](}C!uH vC(Jδ2SbAL6ޖ"&Uj1ƸIǞK3y#{"+t!4 Ⱥ2E0ˋey:}k]aȪ?/Hba>M& Ģܯ-Mh<֘XCkclNHba@, XdH7L pƂվn`,w>!$MG{iFWFB,=nct bl:N5XI2\4.3hڝe];M"[&-g3joصkE0`v#1rUh%-45hK&N; uyh{=%"igG׼}}y9Qj!Nޓ$ak"I@k{CO6.cbqܶmԧUjg6EW";wN9XNEtǦ1)yh*\C$9vaqs}>$< =Y(Є'X軋|9wqƽ_i6 M-M, f~{KȪĂ싖R,29ff˩I8^Dys u"UĂ>P|b1*/|F!>,B68Ɩbbq }a|"~ >>gDgj:0Ьܬ?9MgRSք =1aOKӲ1 z 9yz ]C˥z8,8}a3g#b7 U`d#t^Z.Z%#W+Ok%)6 E41@wgHWE3BNw;S ckr [츤_'R-J]Qj-QP?=y37I4?x X虇Ӎ΂5kQr#,蹔+.Yhq+Ă=XoΒb8zԿQՓvoSTM>;`F&kN뺖''gӛkuݹgvKS} :S҉ӾC{vzlV5pi;?iOƪrcӴ?suF̺ޝXZas\hpbqOIb8"^YLcI fBXp*oK@ 5H 57J!|)  gIڌ; r\ p-H   n|#T    bbbbX@,X@,X@,X@,    bbbb@, >\ac_LG䗚_mi%1o_%O8k|rMa˟9`G=Ql#- tQ+w0w_M+[?'Y"@{DmD Ve%wd&M {3,L%X*4J燎dً.|9U]]mu2pZ 1Ay?BdM֦;F5}Ak=Y0aX& Yp!~)r"`_qfQIhIzY#]88iV Z ƾ2[e:~u^7zX4bZZx{A`!L „]&m<)~F",J~!s3TX? ,eIP=P\gaJ/rڳ<i+?V҇h\,0nu6iycKaH0a,X=` `Q2'+XoB5'3V,RY8G;E R*,nb;b`gjztZϩ aX&H!rE.nBtWIC)/ X\ƣZ, YX* lX)$wg`q^`!L „]F 'sjM;u6weEzXD׳;9㯰7=X+F\PNy`?tǍlA(Kmx^Gp&`E!s;¡?ۂ]χE[Q]H踅==J!1y>"Lٔ/06?sc,q`\(]B`\9rm/e.FY`d1{Ϲ Ie^7JcKڗrR-Ƕ4X#&L X4$!UK*Rbҩ)ִr 3nXEH`e8:4m=^ `rR5I* [yԆ0L0:XĒ(L1'NnmC[_ {ֵcDa-)ًY%\bb|C ۃX< {0nScs?ހy6fJk]Cg,+J?}ŵ7ݐ-۽d)Em4[iN!X B\m.'(rVX0Ҍ`AUW%24di̙ ,9EG@?L@U/'5UUfVۦ@KQHVpq<؈m..*k wƎiǍ&!m)6|Z&3vBoJޒd|T հ$Xd6W]QK]y䂚P 솂vΣ pzkES;T@l j!F%˷6ocAT* b_dKoSGgO̚4”_m?jN!l5fvC0?lA?zꃅ^Q}4b3~z?fhXoS=?x Xp:[vKKGa\i4 ?gX8p`WEnBo LMVHz`_!Z ŁOopgY譔^zV`!Y.!Ifm 4ֲB,,WP]1 7i,*мo-u-B&FƂͰ?y;,&V܋#Qxwo m*]1E[,P/Xc_%ӂKa(;1=b/+Ǎ`NY?^ -ÆE'p̳"#x݆@26q H;\b?j.-,x$ +fLi 5<\wT a Lk%g<h+FFZ<̟:O7Y"D?\Zb>Dx/+ `aϙ3,X8s`a P圐iQ:$XTS ~]ZUk7ᡧO* PǵW":ƢVڔN5z3E ,V@S_m| I`aBY`_YC80XG[aw[am0[4D8-9?'|Ml7`q,L  mQ`Ᏺ1HAՀ(WW2^ IDATMi!X7t`(+ aW1{2~6w&D]ڙZ3,xf3h{jʟP)(!6vh+TΜ9p`™~[#fOh,`4Xj GBkTX J4p r%!cHrɛ4#XUEUaXֲ[a0GPE--}R-8±`aVjU~k]Z6 GBE_'l 'Nh? |BoDuIp'R ,  N`q"O=WY5TZw[${ա`rnc;<8APM}ߌ-'i,tG7(} 燏婁#X^-:&X\gv,9s gD8uupY#X j,UoՠߪϕXcqZ\9Xd'f,^#`TIWlD`cx֭]A"8oT3u('Hdۙ#~ P[0čHā`ES[R_Dzjli51V%X NwhvC<hrD5mb+Vy XDś ΜłcnDZYʥBp5q0'g-9 5T*|\Qi1<ڪUjmm+ ܙݝWszeFggg^M]GY +^pz}83$Aq+%޾3]ٖκBpǕT,^K.qZ\䡺^⮵՗ҋ~=49:rhUIຬT31oGnEEZk'bla=gB^sbN|8ܓT%AޞVxy뒗9N,VX9ĢGt]#ℵyڳMU&\?q{Ip ;׳ר@gxUvݣbS1_&EʮKn\%N{ Cnk.eʑbaM(|UTeBUlJsV8X6yp.z95Gj"SblbX AxaQe;bwbXڭ)ܝcGb!rk^./:1"O~RuP;ắi'vf_݋ OZ,'_V{Z܆f,pZf%!XjaPOSL7/5XvBd[P^?dOwvB ڢ<_KzC!o'/uGHP:kȦD~pg穾8ٷBk_ En"*8O7t:QK,>WPXye|{޽j3ʶ?1ojF3>.%+#l\ug^X^zv¦+V 9Z >ko>T?ϴgNɮ8n};iζlj ܽ%Y)W eN}+EɌoOXވt/3-qBi?mmuYBXX,B@,  .WeqU'o^-FREvFXV;z;}){" q̣B󎯫.GXKV/zd3 >0;,Y#f,e '#Zؗk(z:ĢL,~06c$8ZЖjcJ7 YwDT}f]=-zϬ#BN0mDEn&M{8侓 H%I/7:Nokm*gqŗ`"^i %ˤ>rg53צU8HxًMS17~۴+΍0wԈ>RclyW=-! b=f\>Q>|dmcAg*]#(Xt?za89{h0ZOeEl+6>2KWBr}Jװ Xs}7EaE5suq>?j(-XX/hB[S;u⮞2KNn d}_Xb 7e&D|Q궘~`%C=/g, =m|W,OT8[oFSM0w%b1> xWnksxآO\П&9DguΨl2Z)ˤTlټhk׾MY[u䫉H̵zg?>iާG@Ulb X4g˂Rdz޸[:L[XX @ O}4uwHNG%\ۥj(nO  5Osٚ\BmZѭSF1\R[{[yӥ -7J[;J-uj/<e74oTW3<>v˚^\=wGGfo[O9>3} uF-B7*2i(uqh^j G{١:S9}c'[#56ܺdX @ϼ^O@J7,G^'<1b>خLkpyup bO1n2L7!HڄCG:q!6[k!t:텲kZ.p;fgiu[#BWfbیދB[ӗz~X^]K[MCO96&ARMH5Sb$~`/ ;! }w?Ξ}񽙹P&33-esO/%;vu1Hy遷7 3ׇBZĆ?l*?b@O&(X|gʰ~q1 {ݹ1bb|ѨD{(Zm^b,<ߗĢs‰=[(PRe{qj%edir3T*+F D=/ <= k٢‚܍iba8ep> Yu$PzH59m<7CK5gǔ?5ݱq_ci{ 7b‰cF;+1{,v|v^ЏGh ʣxRؚ A  jS20%5 c'Ó7 Aj^0N#jV=$$$D,X5rW~3,W^n+؆c+8S8l*p&R/ҦLJ~T]yz0lC!5L4[ꙁ V䳗5mij@9bG ]%O509ٰ\K"{LYUnƉE1ᅱX=Zì`ךɕ5DJKbWWr8GU<$@s aQdJ;[YVA)}Ñ bAB" F`.7(`+xߗj$1RcѦLIȅ/7wriS_`3U3@vڎCCZOה\@9 +  u[aГO#28Eџ-bh hm29pW`AfQ°P[;b@أ̸CXDۉzjIHHHX !oy`"'ޝ:6xk׿nTD!ҦLd^RZ>bzI"Ջo7XrN9ºlًفsY{_]X(_C, ($="ޗhIA,:R|$#1-bhsX0msLŋ$pЏ5\Hby'(x'Od { rfIBA+}Ñ bAB Ӻ>&`N *|%YS?zL,&NAnuE*ԦL(4L,ā?^eP},eݍlzqV!ba1XTc]mYVL"{݁X.*%Q1z 5K&BbQ`o؋8y{, !n^9_>x}$$$$D,XX u^H,%Us  pඤ1RH2,R,fdCѼ¦8R(Oja@9Bc"0n8 x,#k66 PĈE XQA=ZlQރ- ԇ%~A~1LMUp["(x$=J`&,ڂhy̠0HHHHX !yCbQ nM̺^ Ir}-ElWH2هH^ifjyMuzSߏ L O!yہsYDbvBt&/="EwTrLm2H/ԣ5*ݵu&~ɲB=*f![4*[C)c1䅐Pr@2p?ɞqhm]~6932lěe{rs*My"Aƕ.|;Dv{x u=Pv߉z{hNlg 5~o`Yk+9F ܑPGP `]2:5ݱ UeXlceX4x?*}`4[뭩XpfHRzzB6r ueX3WeÜEBИ-ݓGŸ^sm-$/p#XBOхF}zX}aL,+ }ٶGo嵭na!,b ޾zE܍ '5#[#lj>̆3_vj7D] ]&<(,-~w]swO prؿ(\hn:ȹj'Cw&:n} %<c3ɑ)ma߰ZZUEq+â6훷F-{p,GW 1k#`oa|v6DtNvۏg{\X7WeÜE`j/jqO vqbtaYXDo7݊/9;Hp9ȷe_ܵ^3]j|gfx  ѩޗmF-i~,= a:`04[r]r>w͎fJbb+EGiMrh?6uAv-D3,+j\&L|O5&;ף86ekUmZPOxHW~.,.ҏOzƒ_jHrtHZߓ ɬ2,RxƲaN (=ye {X^}Fjvrt 3c]ص^OGwLaۆTοoSOh5atIzXhu0wm}05N,b6 *TniGh3?UN_ IDAT>9~=8\&G"ۄҫ"taQ:&, xLX܊gz@z[g,{t$=j995\>ֽL+-*g,隓* }}gqO{mI"¢L{֢͙ZodtkuG~Vk߹D;A}1tmAlӼ/˙ [s~BX^<9^댅gD;}; ^ZT|m5wIi.zx&>b֪v⸜-7oVoO>wgdc{vߤÊg<_3s1c3]^0w1{!~dtrk߾$uQXtѵ  aΓPTA{8b.?a^x?%,V:o ,p:cSK'9\^z{9E_}ua!,b,:azq1:?a2:rXf^/\jl7N={p||؃[/ , a!,@X a!, aBX ,a!,@X  , aBXa!,@X BX , aBX a!,@X aBX , a!,@X a!,@X a!,@X @X a!,a!,@X Gâ2/mgUeŗ_ŋIXe?Eeťauח" ?1 p/ҮWEeR , a aBX , , aBX , aBXBX ,~gaեoUX|s+a!,@X ?O񬾺f뺆QwWw"لzR E/(LFB`bn41m Os̙m!{tD0_Ϝ9  , , ,‚  ,j%,цyaAXa@XJ{(-qy? f K[a2,Qaq*ECccSSKko|4ψ ,>~kmmijjllpaqJ7PK]666OX‚ncXL7B, ,C @X aj&,X( ch8HX8j7a!0,7,?[v}}=f^l׳u[~ydY e% g̎bvWQ4Ƚ'"&fFc{}‚>B̙BˊKY˺+\/MXDZvs{ѕp ,⩨ڽ E{ILĉazw%a|>2&f^FFŒ?l e'Tt/,fi2KHAX3BMoGߝ?-3*,~¿6 Ԕ%yQiԥ.Нy9TJ5$gNX їRc®Pc U=`BM-;vg,,@XĦ=}ܚqzw&kb!,*,Ȱp gznoD^X(t!i*8i_WWk^X-Ȝx:ު2wCTX!U/,BƢ)$#g*wr?l,˟‚>?=OjǾIMuk߰Xt$')FbLL2H8lRIY؄ŭ ,8q YMCBc#Bt'sddjQS;aqEʪ |2/^%=[*,PQa8aTl¹奼ڞb*3,TF T X$S+B伝~d;2KE6n!   )!VtLY'u$}o%̫09Bl/7+)Pt?%?IX@XyX8{ ,a,da¢@y"dֲEtGyxMS=()īaa/n᭐' $ *%,aqGٳ+ j#l {*ÖСâ[8r8wJ[]F/Q8eᆅE v]uUͭ|4PknIH g0aQSa+=kB$b}!gW ,ͪ+י^x+ (f 6]wp0a<)j?6"^9qu_#W%6|  quӖsybagSaq+TlZ?YmPS~P,jHK\od8LXd(,ccz/ {c'ܕ̎qN gEݵ8wtX$,#/e [Bq8,(;,1a1⻱x'7|+jG6azֲ*Oz  cJz! jV~R~d8,2"<)Du-qEBzvSâ9aQY@űj kŵ`X\#,*c_Ko+Zz{la$,-}aa'KEBZhkijj^aq_}ft7[Le\Ȳ(bV|vcШaSP`:ޛY JVZ?M"j{6bQV,޼kO}M(բF,fB zvJ sbqX EXܝAxT-I{XvV,͜X ~bfP;|ɏBQ'8wSbyXbUzogȂOX^aGX&b5Z0"!X*B EOfXxg,fN, y! 7kK|-bfifx*"0Wm> bg,^{3!ۏD{MXl:x_? Lt.ElM{> 8nfпY&Y(S04ڈvVPb1YXW5 noi ww{(0b!g^9m"OXxaWݎFfB,ËER64nǣP(T~mbf{% > 6bQ]kjfoL,R,fŢX^Uw~mvX7""%#/XķmɂOXxoTˆŋXŭEd = % > baXTvkR,oN)bTEho[hֆ 6b^POTwۈlWNF,K|-"bѨŝ\3PoY> ȱٷK&b1%S!m"O_X3=W]HNb,T\xg4ڈ}V,BݐXxHB b mo'% ŧR,٨baXMXdB:MŽrʊED^48[h=X,X,D{;.YJ-@g/T"nGk7/ŭl](Y |Œ;+y?oR,槊ųp{;*Y]@su<*XP*b{bZJO˷PdB](> 6b6K(#ng^B͌XL-Y](> Vb6T9%ି:@sL`efub&–,nו,[WbpVBmllmlo}tד~?o\\|.8*ǃ +%_1o+?8O/K`00%Em#hYxw8''ůOw666M(;6*X.E5bq,krԷ (`oWLb?YX(3)j!"5V`F3)tAG*&^᭢oVB, ,bT&Z,X,֋ba"/,[(YK*X,Tf12šq ZbS -ϟWF%=54DX WN W+bo͊"ل  sfbjB} ^,|dl#p84^ae+\hqdC Z\FEZ4 fFk?ޗ. WLR,L^QzEXlIpmuv;{"[X48gB%P-2Y ]fq{haB!H1ȗ,*Xe\ ׯH "lXY %^B599p%d/Y⵪oٞ, 85 YLb$C ۴xr*@2{D)tTŠ28(T pEOn͆%C,vbJ,B0 %T,[)+MPˊJ*YEZa,~ž+B`BIPb1#BمdpVFޚ~ %udajŅ > wa%" +dZ!(PPrJZ*few;36{EV ~XL)YP/8Z!8񑅜2 ZX*tU..%"f⊐WP`a\`q 8nP*hpv!8Zz]e!,¤+\n1DE_\F1#VqWũ)XYٰ[Ky/F/*XtI,*K.T8ea[vJ>5 1 \D#Q~hD@Z,.tZ+ on$T8XTmBt%KomwBeMCřE-ljqhRV5rPaH+ʸBgB7qvK͉sXԿzBjYE8-{ZdBll!cЊKVb1( WB^',mհmaPX B8Ģad!nYx|B,thaIlQ!55 Tfw V"`gNXva(b1j]"y ei(YK-^yGvBfA,FI\aW,W$Z,CjFU,b-,TBNCP-B{ .N*3„: `k6XLD,~XUo߶if:P׋0CssYشB/xI`!n׼Jt^-,T"~ %d"- 0jSB_:\AD>G"8q+TyzkXB,^BuT,NYD9"d~*4-\jb 2pL+D\l^568]XܟSb-,9-bf!z"-F "?v6! UV W~ sr{Iz;&KEv*e>fq 3ZH-Bl ae42VLH.+ЬCa1ٚ},MnEmdqjq,D,df!c=E,È*UB^+W ,r[]](}A!HުlY"Y(Bh명'r #nn‰ V8/{gWuFẄT"?I)J!MHnʜ?njgyn}g+^k\a߃BEN3qPG|^*~$OW20Nm( -BTaIE*V¦>w҃۵"TEXTPu޻Pg,G"?9k>f͢,,-\jas .ܦ{ E*LV!bq2(Ԭ,,{2xEs}6McêX" ]Y2YxHC Z"v VlMبe>pzpX/,4(IE U8k"F*,R*e8q"N/b~k'X'>i+sPW ^"f&ɊE eY'6?wcޞ͹E_5?y:TQ76iYWl&BP~]S_;X8 FgPY0fC,Rhai!E-څ O`SXР‰XQB{+w+\`j5[L,ZoB5Ţ߅jF Ue6 y.-Fō_s +;GUVq+R 춃W"XXM]s;nEEzJ2 3ᎡF"/EQ*y:c'dո"϶m^bFbIda^ayIDATJe(dZX؄B7 2EM~{i.T^Ԋm *zE+.g+3#F*9k=Q \htZxińWEXEQB≏, %f!{;}۫N.nbQYŨV$_g҃(P%ŃIEO+CYHhWY.lnɅFN)ʤ"gRJm+FHqEoWP!tcEхzbю,>",^d6ԡT-Ljc 7vE܄ +rZ"֠BJ7jۭXV,|Yo/ jqYE.D .jE0zQJ(:ŵRZq9h|~tXԦۧ! UD,.ilBM#6fE*D+t\ъ++py}jX4G^dgY'gE,s [dønVE8EcT V!Q+^Q+*O:h.,2T QK-;\[n[̓3ڄTPZ⫉/B=*b3+ZdfYlŢކzYE.D9Ʌs#5wu`"YEЊe+|`qxa؟XtPnf1fϥ UCZ¹ͦ[=шT8VKPI+*5܃z 7~obQF2,6 -ZEt .ش^>;E`y["҃zN,N[,D U,m(gZ\b/'MׁtFjE+4p^q1a`_XX$/"YT3 M-L!*.F~Qcp4bP)TXJPWT#h{E'o]b1-i.YT*sR.FHzu !?SDV1jUM+W+^GgsPvfa2-ЗgZBFu@4nDe6PHYE }cOm^a3Pgs{-3)RT9PHz 5 MXN3 1A))rV W4{P=bq7, .T;ЗPÂ;EZ>,Zh)E U؍xqNa"VWѶ+?`PEElBX,[|2pf3 8`ehR\V cʏ{4 w*V1jE+R J^E+L}rbzrv*Pl-|j1-\xPV 唗^.URab +\Z yf6+^1Iķ,e(2T,7Y>T-[XHv~jMs *\X?][PWݶ+ENj7,&}8f`np>I-rn!r1Ũ/D0cT`%iQJ18UHjL+L hWļB۝OXL.,NW,e4T,Y*jb uR.T/`4,`ũhNTUԊT20_hNW,e!סj+Q\~aYF6P^ 4U TU+5j^G8Xefm2 g1ht[vajߝU0VP +L^E(]n8݈Eg,Z;\¦-\v1E 1 '5ؕxq-*+U *TxiWTk_+L&'g'PE*-U"Q--\T.}1^A)TUix3;=UE% Éż22EJ-Jv!z~Q>pYvAW UhZQ+z"ԝveQ,jfܾUW*./aT=cgO9KjB"XEG+̼'XYXbY|vZ[HpBFM3'{Ի4_U T +V-^ټbfDBPaf3,D-K-Blaم1J^,vwFaB".qŗF+d] " XXj> U-lhQEv\vBC Y\goP$lM5WZR+X'2bpSZ< j1dcTRqR$PjS)AV,^ŢUj,fB 9ElA0B(EvQ**VaҊ.zE`1udEke(Ygg]h[HvQEtj9Ibt gٰX,xnŢufEU-l#&.^`Dh.ԮNsʡ8EE*BXQh{8XxjBCZFw #A/`xzjWJT5JaY@Uנ^aw>w b1ofQ3 Z}-\x-Sޞ0c:E kA++bf#Yb$/X )Z:wQUEsŖh|X,,ZeQ-xo".pr&3ATWEsEX=)â,E3-ZmŽ. #N 6NbKuQͬ>xvX "L=.EIa|zdH^=)Ҧ=*檘Y+wâ럡6E}H"=\b.0eRMqOeVd׊][bzQ[qq)/(c57`xERנFra,u[|Ts^Pp`&c)>FV|˲bW\!,YG"-G[qEPȋifQ^Ȋ\q޽a1PG2-һEs]$y%F_h67ʦ*X>Wy8%,NbhE-q1Ee`,T/ZWQѨ"+GņKYiEs]ш^ vraTUџiW|YˆŖ,0-ZmQ\y_qHl@GD9yT4"̊+~8+PUZdmQTY_Tppfsu^"*+a,:Ңh).<WfUa!,@XX[za<5IrU!,@X<.b,23vh@Yܷ%,BX ŋE_Z<.bM1/q1:V{ aBXxg3 tۢ}oBX arWka!,@X aE]Y  a!,BX  aT!,a!,@X a!,@X  ya@X ,  a@X ,@X@@ EbX bX  bX bXOF -^IENDB`mkdocs-material-9.6.4/.github/assets/sponsors/000077500000000000000000000000001475306445600213545ustar00rootroot00000000000000mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-3dr.png000066400000000000000000000121121475306445600242500ustar00rootroot00000000000000PNG  IHDRMwiCCPSMPTE RP 431-2-2007 DCI (P3)(uJQ?%OThbvQ)B( 1^Maf$ h_+{2;iWnX*ѹΏs{  (\[ZRP:^̱⚶-G} gTSkÿ}1:j`X;u-U"&8s1tx rGpPfnjrI@MHЉ$D BP\JT$.POxFwqkVT-0%qC vW>~-[r> >>>vR3=_0~<1BNf"#SnkWJUIC\||MMBGAN,^{xjڎ8埇|xɎ!lG cNlTѾ};zՊJn=d"88vm8X-=t/z9cph@!gJ ;~Yp>""=-M0ȯW]CFlOzbGtF|}}wlO}$&IC3`rmG(ܼ]aJzԩq#IUB68+_5O 4hڔ[:DF:l!X͝y-y_(jXX{Bʪ*+`nǽ1c9X߾'jNz[;>_VCJCBB2 Q0vD׭/#1)Kj=jZhZFVyyzijCj4jVuo׮Q0uʔR^ nܸ#-ԩST.*ϞkmC`u_+B!U2) r٧%U !M-jubBBrrrnݕ?ſ3gNCJɍ.ј+>^޳gO,O?£7ge7f+ S+'Eo7m{گJOOk}s,UR^^n2$^M }ZVz_R{yy5/bޘ9SakpppDv)Rz9ɦ;hp3U=<<dɒ_ ggЯGcA2WΛ'qE﹬___x@;oTmq\tttʖK2wo}P<=۷o/Tm XݚN;mcގ)\.?mav3XKvj!7 DA f,s<==O?$M>~Ν5̓>-xW f|||N;Ⱦ&w0`@iN p">k;=noۦ#-lޭS/ݭ[[RZ7m} |((0gJEEJ=}{~R:cλ:4C\pNgY_RH( Lzc f>ϯ/<ºL$tMG)fA)yFuZzq0Jυ5?ƌP2o @k`u/uuu1}VU*%Q(!Bm!+Cm4*YnдZ{ %-7Hw_j̱s7׮IfɓJjtF%7>\xA0&d6omTNUBl.--]Ɋ=/m{FAr/8]pAYFkFSR:vX#C=G%פ?b~}IQ]^AQ;ER8o+|r%َ -WYU|r&^߹Sg&k~$[U>w曳k&e0g2DVpȺF9{сDV˒M555 ;&4xc֬ dWү:ǾݴqECCjjk dC>$yI_^ _K69rĚ(1cƍv\R7x¢B;FӭQܛxHpjP_ R93}(!׮^޽gϑcG-Z;+8Lԕ<%%&w}Mb(ZNJJRV]]_pRnEDH<{tYB֌ SBt?([n]l@MΟ<6XC6 •h={^+7oެGקn>ҎuCC0'7We֭;K"dϼ^)z!$7L>E/lݪP^OKM5M2E.;;[<ĄQw튊P]]=e4b&iT48i۶mSDܑl`;q|lO'N[Vݻuͷ+/o#KUFy]$kT" 0e LKs^!XZ>;Bú qݘ>}VEƾ 333sMcoZ"c}jٍxA=4!&y0lpp@`f*++7Jr7g,XSSc[/Ԗ,o3S)[M&߿]Z4+V`d䨄cǏ(fff8pŧzDtNyS#\b27` m۶=dkU XQҬG *Y?XA8rHl܈1&c6hi#=5r&㘱csr.?6hgNxĊV---ݞ}|yyv#ܱZvH;Yh4&~FaSEB#fҲSN}liö\(zkW/nJÿEQ-++;z 5;8.?2M9y镺Ƒlի :ı=U^n=!XKEy… EQEQEJEQER"dQ*Rʛy^ PB,gMCUu5 :©8Bn~D W4T hr c/?s"*q]7CTK9{{oB(RBDA0L^,MJ74Vrǟh$ޛ|՛ZU]^ҢV7ֿ:uǁVXC0`` 1+cV!XC0`` 1+cV!XC0``f-ʕҦ\*,,4u`+cx1+cV!XC0`` 1+cV!XC0,҃IENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-apex-ai.png000066400000000000000000000145771475306445600251250ustar00rootroot00000000000000PNG  IHDRMw~iCCPSMPTE RP 431-2-2007 DCI (P3)eMKQ_CȬe -*H܄YP0}4PfFJhmj_ڵBVEvnEIsK{9/s9BN˛Neȋslm}uWp!j%Jv#B}V"9{ZW;;65:8$]KLa">LpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCAIDATxiXSgET(஭vtQj8c[u7Pܰ*h$IKNe(9 O"msj埓Vqˋx#OzK6K_g'7Wjo2[sZVQEt͸na~D^{0?DNi?x\Lٖmmh=0[Óvh XjWdd}H8ymV79JeҪJ;`Xg\e@RUTWۺ1`sw֝\)EY6m X j?'UϜsa)ku"j' Xxu*KO,]m@K XɅW-=PI[4Z'#=R?蔴ҜCVCI+κr\CThk-,[4Zj',ylئ-{ٶZk懯6w@ !X!Zjn Il7\L щGQ7B۠]?a0g_~(DYݵK.RD"a~EJUq9yEs}<10T*J˅yydA轲A{٦]` 9H~osIBv"XfCcqv3Fcf棷g}XX$D*+\<՚[5+V}kۯV 6uu"l !n ׹Sob{ehqAqY??@*V;rtmmg{u8~("XCs2φVZ3B3Oy߼u{G|iW+[rVkFF(++S*ZiLpA/((&jt+Ff޺æe?ciI?ukN2{{YD;ՕTB~ƗHKڱe-=\]y2юŌF>w *XC|qwZb#'!/бV.m]_ĉ۷8KK$#7b4C.%[vGO|H̘L\*BCS9IdH Vl j+G 1)ㄣ8u&]2cDD]abZ9V謁C okVSK,;6{^V;#fB GʝڻQ_#n+s ZjgC&9U;;+L'rWd2_]Le@os͵L&۾iKdRuuEgzy O_ۏVG{Û HW>e&ڶa~M&NC{5FC=)wOww7ůOd[&/O|5/'Z)8ר/Yz?$&&G Vh}6q8946zqy-Q#oVpz]]]VVGGl66zDh_/}q܅{^hGͰ8N.uq ɂ᎕OЫlشkVshn)61gggKOqtGjDIdK|#žu;\D6gأk4̹ooQr+ @2v0n-\JUqz+[r9Mh4<[Eݺv6[V߽gfV҂ˏnL ӂn^ of_˔4KMz*GNrwc'غ%';1̮À֧=|Tê*7RA,XڵVҫokENϔǸZe3+:v9qsYB`v? ~5ٳ5+T PII]"y0 4`(ݎSNod?tܱ2s,\֝h-[mJ h];jw]ƿaJk7Q^-8XBx+3b|Ŭ>bikw#<_]]Qg]-1{d XmnM9Iʵ qwJs|E$_5<Z%>+J2J~"4N&čFIoXN$Z[gK mUoY22ed=z{W{Z۫6 qz}Ĥ1CE66buQMYxЉ^CݻgFCZnuPd#Phkdž/tp&b~M^˫y뺂M!Xو;Huqvةo 6ɒH$^%t4 x%7084rX{㊊--~ܸeOĐIa=<4bD^KW-mHLqLz,Z?U p~VE.tk3ԡ7iʤs{/'_8N&_|_dէK %5 y^E}D"94)qɭdRv؎&< <,$Zj_#ץ\zs|P5D 60+KJK≺Z硰Xw-knՕIͶԋ̬G[xzScfSMFͺ&SJ_+wߚ5L[ztg*:;U>8w{& /jR3b@=!X[qv7҈Ν; yWWhb@_Qf7k O8j~f?5Nm9&svlዅSOKJtMopsr!fFΥ*1~-koRԸL2ͅ/ZBC>\(|srX-Rc=^<{Pn~}hgЧO9u|`瞉q eKmr,O t)}{Dڸx8Q뗫gnEǛYenL.10.PJ %w_ʏ-mg=8Ү]) } fwo_m>vݺup#;_RU\Ij$/.N3Bj )?_o{BST uz*\L>֯ 4VL(mfUT\? `adl!XkZueN_lA&S8)\]ժZFꫫkjj)dRGGGgg'7WK5?\/GGgzNM( 5V}!XC0`` 1+cV!XZXY&IV1+cV!XC0`` 1+cV!XC0`` 1+cV!XC0`` 1+cV!XC07[AIENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-astral.png000066400000000000000000000060051475306445600250520ustar00rootroot00000000000000PNG  IHDRMw~iCCPSMPTE RP 431-2-2007 DCI (P3)eMKQ_CȬe -*H܄YP0}4PfFJhmj_ڵBVEvnEIsK{9/s9BN˛Neȋslm}uWp!j%Jv#B}V"9{ZW;;65:8$]KLa">LpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCA -IDATxypw+ $p$6 G Xt:ӱL;AvtigO>m;cSw8f\Dnɞ}eV]0qGn gN}}GޫmoMeZr2o]Rzwܖ>.=rӢx=TqČ)'||WZ/r/4|XwYNwpͱgYs~_bݹ~œu` [.^j|?s#[.\N B-խu԰lbӡ !6]; jiGV7֖}ՆTuTǏ]j@Ӵg}{Owo# 뛪TƐ kc}ӧB4mߞ?t9}ivFS ivޮUV$w̩m-Ǝ%7g( ͑mU_wgD\lj1z131Atݗ{|W}FO k8(`d[ zZ`h7K |=_% :Hw?\gƳ Ƴ'Š vu, \*̯Sk2p]C5k28pbƑC޷a# CIśbM\K<FXʴŏaR@aa =@n~N^gu~#1ȟpf#ϊW,[e7tg¥+eO>'_m"׶`SPfrZiF1bqlTwGr(>uպQvj 'O>UZGa C._h֗O|pI3=}z5c\+rh4_0:gNUNj_}xp]UYmq=PeړGD~S޴:-Ӧ m{O~$Ձ uVCt&}{syr#-$0&ޞ+N@!ɡlA#@aaVFXgX_uJi΅󀯏/-ݓ 'c\T8Uu&ϙ7dv!X}X33gL)<EX]w꒛o4W_1 36ܳvBAScΌgZ.?ܳ{5Z/tw=pmUgyFn/{sWS\S¤i)/$?dn9 > G-UU B!b2Y,ffZ?eVj0 šc<٬(q]Ol1+iڕ+,Ns[,8O"/ƹdp:Z}VX@caVFX@aaVFX@aaVFX@aaVFX@aaVFX@aaVFX@aaVFX@aaVFX@aaVFX@aaV_$1IENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-basler.png000066400000000000000000000210071475306445600250330ustar00rootroot00000000000000PNG  IHDRMw~iCCPSMPTE RP 431-2-2007 DCI (P3)eMKQ_CȬe -*H܄YP0}4PfFJhmj_ڵBVEvnEIsK{9/s9BN˛Neȋslm}uWp!j%Jv#B}V"9{ZW;;65:8$]KLa">LpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCA IDATxg\3}P *{I&\cǘb&v VPlt.۔ _3g9;s F4I760V`+0  `A Xa0V`+0  `A Xa0V`+0  `AOD3h@ qp {{@𔫨Q\,vJV-UIjVOBÐH" :<&*I7) s"eUG|PPZc8% aNmݶ+O-ސr٥za!>N&u۞n<=hWq 5ZY}HlNk+@tUhҀظո$k_Hk" C; l? X(u/D-ЙnX>`\1B ٟm:O<{|h3Qյ ̤*B& Z.luj[L`㡔媌MѤՊh !#XH(].&{[#ĸ"-ĸb9< Xx/߯`rArGscV+kdT Cbs@^~pPi{Of-Wk;xf1_@Y* jJ*eՊJ5htwpY8#pXcᅌG7#sFz!4MH:s\m}mM|8wX÷7sJȨvϑ8 $]zuc [޴W/a3k+Uf~Ubϕew>-}nk7M B}fVit;S2^Ȝh.̦\QH|xkʕ L#':㭯E_R;o=^2'aԀV0UT7-.:oT@kjVٕ|TEƽGNՂëʃg2'%lHӳJƼqG.08}%z.b[(TZS!+Jm};xVBo͢`m6F?%֞ᚵjs2EiYIEޓ7쭍VlTS=a9>JR-sM ?<Z1 ]7Lhm}RoZ V:k`ծK l1n>S k[{e DNiG V s͢ii-?GSO]ʶ컎_z.㘸tt~x#^'m}dIAOWyBWmB{I:D>0L:Ȟ,V]zDF7+ĖbRYڊaY.9|]l<$6C{9xbY,|AcǵZPPuc HjŦc̶+ :xyHWlʼ~;fsE_3дVAiMAYmP'WS4cͮr3F> fHtyT/HrP'g &]+m^6-GH +A`GJ61WwIp+y}Z!GU33D^qu|[Nrq ߼_ڴU; Щ78걥޿˗ < :}?>Ɵu:<M`m_8ًi~lyϋjVXV)kZ8iKQ:wiZHӨJ kdh! sNf:,686Hk{RGfY`W'2ru\Jھddcmcޛڴa~K_a<)9zc\=8{-}O=Tinf\[爄vއG3cj 1G>#1C3# =Zry{O{NV$ 20_5-)ϥ7UT.MJN6cރ<_a>|B^{ I7$oe%.n4Tφc H)5w=cnj>ǫ0Q{u X;YOeKwܛ/l:2{HӗMe+'2 ~;++ڟr $EGumYmZUbȼmߟi!8ޭ[goZG;qhwZw?zgv?g%ƚתJ~䪥1 ݉6"FI=ݟ_n4Z;.ߞ4 i?Tqf`5Ego!&%X6V>l[=ɁE*+9#pݖMdpoShm*k{WR7(5coBZac bޒMdg ޘ:д :K4 2LaRt|܆u]8-ޖ=I:vޘAe<4`c *qWe> 񃣆ƆExz4]Ɔ[y(6Ŀf w*ԥJB*WjxFx'HhϠV8/ic"ذO T} X尛oh dVOwTÉbޟ尌wTNO"X&Y`39Iѧ/g0F:5*YNQUAYMyFPk*]TIRI$I$E?\ĭD$\c a<.{w_ m@td ۴mVMy>zh$)*|}~܉JK_$D]۰|IEVG5j\]{;y;5c|-I dTymGZT*S Jƶf`X_)UXzV'ڻ" ab!Aa8aVxs[e&8X#)NJNzj Pk O7\Fk8N" H|`vX/*hb󐈏+[YBgn9tڬuy yG7-)&T%UzϚ_O>UvKXv<.;w-`v5mqҎyx$ˁTkA{$â*ټ;L5m5m-im=Cδgᙧ!N0;북 ?ό*2\yO$(*g~)7έ :Xz <,zAK[_]==`m_7fCWnddɣfWr[Ԍu޲ʼ2>ӷVg( B4BD=SOk!;6IqMVw*co)S*532IFh)4UuʪZeYho7Ǩff7"Hj.v-ԀfKvv"-՚%FrX,䗒fKWjϟȹ@`e^MT;ҟoմc~j:a>bBӺF>!vhy͝zI77-6EYe\^%/2ske$k`aob\ -?|g?q18&nQ۔Mka7-(:J6-g[Oem>f2.h? X;F5 Bg \j@بѴӾ̝0 u D6 Z;,-NqυCn ak{7sl{3"nf3l.1 KMv :zB(=Ж8_.}lAc{Ydq\1x Xۯξn[xz=O|ı~Sg`c r%{dߩbS4()9Xr#4wg *ݙ?7aig`ɬSʆ8,Z(d7 BøWLKmjx+0ӹuzL0t!#FvIVVOQj<GJD|.}#t w@G{cF>a\$wg'p8nϝЯZ^XV;,6!Iv(^JzAӨ衴!+ f%-fX[ ,Dt#;iUmn]9nXO?g ?r& rѣ˭p<5v7.ci  `MӨBjrGupƇ6:ƴaq< E>l]K62Z{T_/IW?8 a,B!5x AV76"Sj*j䞮 %j@="w7\?WvrV q8|kw/?׭ ys'3"sX,= oKiERq iUKU }cq iGD][8:VQvZfoYA;X0_ZcqWYh(<{=79Ch%. }Wo c f԰LA?DQ􈸮ƒW_KN˪Ba q붤T],G {x)`ߩ6`/|\UTZT#SiK N} pdv7atS ڜ?JNpZW(ҎCcW: Cb~uvB>gH!a%,҇tut)YHKW'o.[\]Q#ߴe7ȸ3|u{r٬Z3\g'HJ,K{~LKC /|϶tsq)}oP !y3>2_"\ªڟn>"MPJ]3S 5ٸSՆ71~䢮$UW|- ZAPQ'D%g?ø"$D񒍯<Џ.n"tbÜPg.A/9}"EBz!XPUTk 2|@L!U]}tk|F∞ \V?mToFkMp|\|7quRwr[2;x/7,5' qX4˩S) r߇a>!nf *hW(z>ƪrd0%껻Orܻ5kq Ņn!  R\>#_uݯ~=yEO!P]^Ǐv 8Bڠҗ_WU}vNW#[LpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCA IDATxwx[ם}nA%ĦBuYT'Ng3;;;[<);;;Lqt+v\e[K$%R$ $wz?. A`iMHm8_ @ @  $`"DAŠ@   +@$$`"DAŠ@   +@$$`"DAŠ@   +@$$`"DAŠ@   +@$$`"DAŠ@   +@$$`"DAŠ@   +@$$`"D!? ŰNP  0$D$! 4Y.% "ADl"69S6+]3n_0eB&KNՊ cYnzINZIvL"NԀ > ?1zGǗEivTgnG > aElZf]/&gJ/"0~hvH@+&B7^U N~w·#b#>_ +bs36;@Fc,E.]q-!,<]UBܡ]Y[GlNna*VJ4h{{xjk+5UWWd8^X}ð#C{xlx9nA^}޽[SB ʈVdYVxaXUUYssD,**l^wwI?o|^t_XTUYb2W86UjUA~քrڭIu6/椛t=CgtSElN FXDDbÀX$%yw^ cGee.ś ;d"6'RD  }#]gw893jz[]/v_aow#V5UVfF#ډHdo>&+3 BlNZzFÏ, aElN8jǏH$p8zVO+٩+9jWyq/CDX9aiaXNLrT.˥bX,RI\bԪSJAAA :\ A௼̼ވ52f./-0L"458}r Fg[ˏ^L0E"T0LT=мksl.|?Mٜ%_3e+n={]LE,d2\*ɴ:u`2RRIrYBA! ðuxؘyjz>^fM*+zl\ aE vxj'o]nK%e?/ޚ^Pj:VJtE1 K C >Sx< x<$ pJI2_d)Hfeb Cq`<ռuZVP45237>39gwoj;{| WA[Ŕ!?}Peeaم/*a\m q' D*HRD&AghI*흛G}xW\*YǛ+ ]n "==1kwͮtdf 0̫0gk˟cKD"yܼmNEh6*,W5!`&$bD"NJgddV#jo;H1,UyhWn;Vbx,g[? y~`0?v07g~"!E|30O8. 798.J kk*23*9Ya2J K 0 ;847ڋ s ֶN >Kpo6[f^,*5B㻛vdg\vkdt"Z#1B1;uaؗܗGY l|5B9f_.[Vq{W:6hy\ YTS帎?:qjuU0L^>hA`hxd_nw FL*ݿ3k9s箾Wݴ삟̴G߽kRݘbg[i?>`˲-(<3Q"p\2Be#EEB801?~aedS )򒼼L)E. MLNl˳t҉|F (/+jN7OZ6ggmkdt|{M%IZ{Δǧ. BN^딊Ek #lia]/.]zL? B3;3:JiRX_[^VVr8tu,`V! 0 {v휞Mil۝#?iPSS3 3Z,ǽ{]L^)q+u}4'OPb||{%UHĻvݴC*CޡݵFq ƒCcZ 322'Cᡡq'8\ZRq<-8驅żq%UyP:O--<@bf|f~ᖈE&}~QRHŢe_Ǐ:&R| O=4~pcм GxNab:ya#4csy᩹0M5lS~QW! F(7euNHf(+ըS8g9 L{Ʀ]DDfkr$$nTaT}|&aN0dҩ>fؾ -MO7hc'<` O̻8gh3  Y| ûIޱ0+=4{7i]woޯR&'fZx\VSSf6O˥~z}osj߾Ri8~Gn?돯euu[~y ,8 6T]ݾ1X߾ƪe+1}AH侸?^lwFUDZƊ§[SRȗGζj鶹|}U [UsK8rgtwm+"}۟޷ U@OfV''EwL?5ʻk׻f]ۊKO楧DWEhgtg[C*i\/8=C"NC ŜOC($} !yZ{F㎬V+Veg1OHfswv\;ug0?/[T8584v1 He I$wϲx$B1+^x#Ir@FFꡃ>j~ G=}=ӤM7h;[ZXCjxꞘgglcƸ]pѕu),Ǚa~̹}q<~gxb;_<k @ޕO^=znt<5a5(ww SG<2tpfr|<9e(hВνD.izB`ն`0tnL ڻÏ.AJ`Aܲ^iqn#ԏkqC2ZAܴ(9&Ь{/\iyW]K*ܻ=n6ԍ)A%^)joOX ˵T|῾tN Ezu$3=/VXCazPtsmjwN.8@elUC;6:;f@"ok}l͙{N{}z]Sɮi˜]i$ Njz{ͫڽ˗$aXG47Eѷnu14`0GHf8Ӳ4((szgz.wp!lݙ?¡OpLJ!Oիŋ7p;v %{kK޷ӨUMix*U1)^S6ɨ*䒣 ylT)dAakQ_GzVdu~p6師]CWn~`й ӘQ]c-xZ[zF<{o?M7,hzɐ S?6 ˝{/q[_}؈%?x͓g|@(NlȶZ,++F"+ƜżLoR${gΡI@0LY+ vo|v!+I*^x$\"O/=75UǺeag8B&}P"b54mDUU#nv fJE)4Cqpcphc@ǰɫI]8ZQb;'y_;-ðo=ޱi*w'qq<HJ1^*"%&b*P$NXari(MUȤ)xxwm1L;;sVg+d._0kwM͙t @VhsmY^q S*)dXDXQN ! a Q^IOc\.rh(9vHK5m`ʓDœ}8M;0 HzZ"!X$, .׺{bbj<Ѫ OJeg ?&kuvulrU&0h jͻCvw1\Dщ8tZQUq1IUX5~ؽp.%"Q`_ Fg]%7iu<<Á$`0 ~DrL8>%m[bl- =JP ;<5w(Z('`ҪoEhXXԸq6$%ᆵݻ] &.ٹ ;Qe@glt4>xvV.cf'ΞcB83kiE];&'- Z .Gf2D$Jaq5VI`sϳ܂0r=NL3,ŏcXDE LX8ו<J &=?)t[ݒ[@,ON.0f\*S]wq /sBHI+U4^8h\L'C*H60ʝ@ U%ɔ"I(-3'p __wnðڬw+Ǘ=ռ#'9b+ZZ0B(bsp<;29~AI,_ypa'$[]%9(!/k 15\:'2- 'T)S!n/<-HkJsUx1TMqv?1&B{ļTYQDd]Tgrg9 RsoLH8cCDqvjNalEnͳm'wE6T0 ;1=;7fܳ.?/[8ժUA~΁}}C{lp\qWNofMqf-yhA4&[p/\;mEY!oEy؊g=)94_\J!gX/AǾwFhB8gwO0,'U_tSUp@Xtpg/>qĹ3v$<o/]sP*d/m#BtY&ʸTz IdVw䖻n Jտ_Jy{ljf~!7(HѪN^-ð7Ԗ.M 1,E1lxJ|WcMcPʥgz=K~ Bg8AIѺ8umU%ZBa#\ah8::r{/]nT 7o~bOo{Eǰ |?a/ ôJE}EȮ`tKxAITx!o .P^PW^[ hҩ==0,Ө;ָ;1cCx{QWx33e,7a9/Eb*TXY'5זE7xޤSWmjaAKaA5˚*YN{a/rimI7k~y咭aX!]#Ӗ`(T* ɤ۪J5uR\$q0n+kDH*//:x`WYixל;]UU pk6SspVcZmBaXKkl-N[zX󜣭ol$q^^VeEIiIA#׮Ծ<t]--,TfpKrxuͰ`X*%{!4Σ\*Vȥ+ylyH <E d*7"e*a|0Ű8%I%$Zaw2"$:Ќ_}э LWw\#aX,JD& Td2 dERBD B(wu4ٜ@0 -?VcMUKcQ @X$.]V+w!Y(iC˨*BHQEQӖ{T&uѨOIѧuOTj !iˬyjnvfavrRuzr_V;[$:!ׂ1p߿I, 6}_y^0 9@$Byܾё aa$2YLVJ2YJ8baXW huuv{;-FxTR[T.IF, VV8f5?v ##l-Y-" Hs!~_r}jU2$A8Acβ,042 0 q%Gj vw> dqA]u|wMSU!r$M;:mTϻѷbx*T 8~l|jjj&vupdw{]~W/ffEOO߿\.3 2m"2Mtcy^zCEAQv}!63³m=\l쌼,? rk& |~7l.朲99'4J0,;22QZ\㘈$߾{߂/711tKK)ήI3duzUC4i@Š̜8osxB\LZVZ(B26f Ө;R_)TWP)d*,7-r\(B"T(Bacw=:<0esa25;mWJiY83Oh5:\_(0 ۵´.owNRJeHDa=19===x#B*z7ߗ aElN2:Bnv4bԷuA~@Ӷ ?iVa4ꗩrNgvf0>+ˤ}5WD$&_ 7N.yy{F !\'X_zr׶ee"n؜L[OY1 Kk+ǏWk.~/IҷO*7:b#آJt0,??ҸMI/Hӫ~?\2BPYWzpFbElb_}L[O3YIĻ?TXYDl 3gz.vMk$¬;Wt*h"63sk\yr{44(d㻪 USy336m{[EdV84'-ˤ_ڽ aElr|p׻n!w1 p 1 qpBx 0 p$p `a8NN.̮-4j5J9U q@8\^#Ku*EIINRȥ(!@  !DAŠ@   +@$$`"DAŠ@   +@$$`"DAŠ@   +@$$`"DAŠ@   +@$$`"DAŠ@   +@$$`"DAŠ@   +@$$`"DAŠ@  >k}IENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-botcity.png000066400000000000000000000121301475306445600252350ustar00rootroot00000000000000PNG  IHDRMw~iCCPSMPTE RP 431-2-2007 DCI (P3)eMKQ_CȬe -*H܄YP0}4PfFJhmj_ڵBVEvnEIsK{9/s9BN˛Neȋslm}uWp!j%Jv#B}V"9{ZW;;65:8$]KLa">LpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCAIDATxyPS\N9 ("ZێZ[)ZѩW騵C)Zt(Q xC9ʡȥ !@H #&!y/6˾[.! @2+eV!X(CP` @2+eV!X(CP` @2+eV!X(CP` @2+eV!X(CP` @2+ek7⺺:\N1_]k„ !!!>>>2ryAAAAAA}}E͛gD! }󣣣B>b޽{EEEAAAW60 0'Ovss <\@ pvv:thttϭKMM5k~CK`&==}ܹT4h ٘kzyy999|???L!_]m6C'1ׯ_/X|?00JڝaZ]QQiӦbh644uT K;))ڽYfi}C?X7mdw57k֬-QTG흪U,/[Lku]6DT[!qqquuunH:;;>VM)'--&?ZsAazl*,,}:??ǃ'O|왡E9s8`Wgg;wD"0qqqĜ3LDȨ4Ԣ"-2B8w\G.]dDQnzvAyR*>r\oooOOO5BT*˗/R)"pʔ),0 #J[[[Jezxvvvnnn,{WWWk~V*wUTvnhh(--K.ozD"Jnnn_srrFk#Ft=Sί2!Jgoa{{T* y;k0h \L_iii |~LL̎;(HJ?u۷Ϝ9yfjuAAAJJJnnH$jjjR*5I =:88Z`xXbEׁAAA/^1baf„ O>U/\`绸teGGˈ4h&ӷmب$XBMbX%;DrΝ־{qqqzWwgϞ믇1zh#_ЛD":u;vLU̙3uH$ׯ_7k"##/\h֊Z@0j(sOMNN޻wo&߷o5 j|>3gHllիW}G>7n:{ֵuȑ׮]5ZJH$WFkkkll9s.\h N8#}W B{?e:wjڬc#*jΝHU-[<|Ьo Xmgtݻ?0LlleRٳg,Y++'''++˒5VTT\|ْ5:k͛7gdd:oDDDt*//"OMMM'9ܽ{W&Y+Wн>6a(Z}TeBjkkY}||v=dȐK$lD֯__SSuL&+--Sk~Jzgfsf̘q|BβwڥuS׬Rϑ(..qCJ!D$Y #G<|ŋ{<.ٿ>{lͬ{C_TFZ`ͦ&qu|xDmillTTV=!Xm oCBBzOQ(`^oS0_3BMrvvv^^^џ~[c,l`?* XmP( Xhц &M{d[VѡY3---,,lΝcƌv@ ZTTTa/~j***.]zBaP</$$:t]kd2ف,j)Jf/zr?NJJŋ}hh(~ p]999n@ڀC]V%Xp_eBK6 X XmC{{;W_߿o; dggb=L{`5yξaY>oxZrKwYp>?Vvhjj*//[\.ɑ#G쾘P(lkkӵseeeӊ%|+Wb]' )],*zkm|}}uЖᴴ:qi~ppppwwgv,} BK  VZp-5B A.1c\]]_|k۷/ ˀرcn &L~M=bcc px<ܹsY"#77wݺul7APPM?k?~BB7o,++Ӻ)//Os?FѣGx<]@nݺe\be觳ܹs~4iZjR7o0z貲2]VO:eDWUUus s\QQQݏ(,,eg???L+RRRk0]...ƕc DbҿЫcsj`oo{wvvv۷oHҥK>rCCCǏob .~bn1Ο| BCCOnb!aaa ֭[g܇h?ezХmpqqqF]T*~mJ1@ioo/---=BL&Ӻr"Ca:d `/^ 签ϟךZ`6 < BH$+VTwB֬Yc >SUsK.5z+!˗۶mspp0(`Ϟ=۵kU. h ^~]Wj0 rJsrӧOOJJu޽{uՃ`%H$GЬ\]]o^RR(L VBX,Jihhq}CjUVY~^;{lss3{vdSL__xXgS(%%%~k) VBJ7olu+!DT>|>SkB:;;+**"##|2U\M@DmmmfL@C$33D*g5jϟDzxxDEE? %%%oaQmnn*))ğUwƲD"a- 8ĉQQQ,; XV!X(CP` @2+eV蛝V  ˚1Zk"+mc޽{Νjkk4VǏ䝴lV1 S]]W_]t}_EDDX6 I*?ܿii6lX^^^XlcǎZsW;T5XlOSSӴiӪ]@ ذaO?% ARcTrk֬A C6׮]3w-ܸq@+sNss9J//ͽ1V[B3LWWQFyzzW2\ @2+eV!X(CP` @2+eV!X(CP` @2+eV!X(CP` @2+eV2F2jEIENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-buhler.png000066400000000000000000000135631475306445600250540ustar00rootroot00000000000000PNG  IHDRMwiCCPSMPTE RP 431-2-2007 DCI (P3)(uJQ?%OThbvQ)B( 1^Maf$ h_+{2;iWnX*ѹΏs{  (\[ZRP:^̱⚶-G} gTSkÿ}1:j`X;u-U"&8s1tx rGpPfnjrI@MHЉ$D BP\JT$.POxF5 ƑN: g,sw/_9gq@ѠɃ~2an$(+kOb`U|tp)( X-@*5Է T`LygLb=3}}b>_(8'^f,.&V;ZCLKռYy3} kJ8w[[s.mIqIM~A7rulp62` _KHU]ӶV/UnӦZR`M:ַٜr:%n#o !X矦-]z[um&"b`Mdҷ*?W_W@Z!X#ݾ4:?koȴ+NL4t8t 5_]׳]1 _iwD ˣ Ԯ܌LM3=s+/ '&^aIr@KtM)8~08iZ;P[wCZ6x427ﱭ7]v:a%csrr)_W62/i{96W_>b櫌1g~7oZ16G=xO>A/?}Zuۮ;!?[{_z0vw^Ȼo_omެ\;z=G{*V_rgh+K6ͫ/D%@*g!ce\^{ /ጵ4:֐xp5uE%A౾H(Ι=˫ bOS16;w>2,LUY;(6M#~$yCp zҩ_vk֒e:;tpT~T^> <9$[k_9` E=Uv!W J[#c$+9)}Ss.dt#@”L=^ ) | X&R3BfW>+/+[rn=O"5W̞pfW}t zkoNVxay}79b-uk?Xz6Jo&b,(XE#Sz}򢒹 ՚Wȷ/^j 8hDÃ/f$3}kq#Vj,U!ȵz}>U΅1{-m+ 05 eRY#ȐC 'FÜSS  Òr u/@`c ?Sdz>5CfD3=JKV?8AjaJܶhI:ˤ-8:MMΩEd/LaF5M8 S)KɧiyR+WI^D#֎QUgܯ2 N c._Kg{vo̦i^n#nX}WGР%qP(hab:/'wjm0/Idh Ԉu7[X#A}iĜl S/NYR59 cMtEEn^Ť6MjǨD״UQ gwjp@rc}=k<+`VK]>+7}Vmյ'VO>zR*h>/rAAa48WE>Kc49 F22ݎ8eIj~qd&7b6S0ܸ+&ӟ^/m>;ksø#5 (fLѕeq)߰de1BPNw,?_;NJ>B)o+*5!bJ7Lt$3 u 'E0y[zoe0%fUxUؒl%ai%E%7Q5Bl*pkzNy(GҮ\Asajgv]BԐI}Si9*jU`*4uBv0e?11)^'ge 6ћU L.Qqƚ+9cYf75fрERI&XæIkuNz]t8lEUV t?ӥu\V?s㍱kݻrmÐ,E ^!(29TJ$EUȵ S5\%~SShfՂjRr*2H^Edr>7t5ǥ%7Ϗ}\RۣKe^c,kɹ伢.ښd:E0=d~hG9HYάǾz>8L8$G@jA]QiJ62M[rpgnvCc^K>dgf$!EšYឈ)EIX%wwMfz8~Ex14* ɰۓhuCZaw{1>1M=y+UF-1X*0({brnMӄp|;/Q8㒆5KL~.=`QK[i~Kg(~YP _((MU(E|tZZ2;;!g ^ $gSQW SE<]^QBF8g1frNk0 VHӴm Pne58l*d%[?i?(Ĝ,clI6+)zB뫁ܚ"r2@ufجwU{%B62,@e؏NxCZskt\=@$s>,%"/?ĶwMGji&\i9J̦hQ⺩JIP宧IRYjN^>ָ:qrtvfxHUg[N|,j0q*Mk> >L.]8lFHpQR3;+ͬDQSQSfmLOs}㊯ww)Bajwr$\6?7S,7^Sn5$t-nkqUb!,0L~_\X^LM}Q%匰j\')鯔%x)MӨr %̲]__r[ BZV|އgO=֖W)^uW =Ma M3j:dSpj2G77Ls4-\S>Xq}o Z")KD^ʹw/[ya* \_|OaCӦiԟ]׷.> c= r)LV墒|3Ba"Ƙ3fKx ?:hd?>50x?˯H!Xb50_4%UϨyvKOb:Э-kyxpޞwqLz%l!in{3*s$gt&aۭ(Tgr n#t%L9l1T]Y M~&M_n%($iݳbu"V1%;j`=j cin'mg3~coFܕDzI?~)ełwƨj{(!ٿH.Ag.*wľuS U6#;K-%uh]ݷj抪N}ۥdys;F|`/j,LK6?oӧՙJNן,]!|JH{}-+)}PR3 -,Z3d8EKrbfB%w${-0] _1X֔dmM4i|vKM -"'l;'q>+Kv]j'Wqt;q.7eaI缹_<"4--RLO7뺰;-UklY=JƉԲU(ɽ X]Wͩ+n5̩tRiÛXTCc}?ޟcC܇JHm!ZrSELI-,YTRږh "V]_4XW=#UWuزW& |갅3B+Vxui7ζ>}P/Qsg2(1VͮVtkWlkw!ۇa;&nzd.*am`‚"Im=(HU+JJ}nzٞA\M+w,"cl덞xF+ ~Q͠6]TMD?/fMOmU ῗ:g nX7L?H/{VtMڧw޵fMֵ2lZWɿaqe׎;]6̌B'5mK0r> Rl6vUBX͚%\^^Rnߗ>UL5y׃7 1SK6")OfɖX!Xo7ߞDy{ǝqǼ{U ;Fk`JڴpM#Da#TJy+cEH~3}7d* ]]+֗WN <>2ojm.}mY抪%Xn۶~Gpn8w'EK6ϗo83D{.[H ;*l_PPJ VMɥ6I=gQaqmdo܇[&A@"ha7 ok4tb6ݖt=%Y$7O9oln~a:˰9rݙ=yyEy#:GfZJRkk;'-Ǯ:_s?+˒ *bZ;}ب@4;Ge XC(`P @1+bV!XC(`P @1+bV!XC(`P @1+bV!XC(`P @1+bV!XC(`P @1+bV^KMֵIENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-cashapp.png000066400000000000000000000215471475306445600252130ustar00rootroot00000000000000PNG  IHDRMw~iCCPSMPTE RP 431-2-2007 DCI (P3)eMKQ_CȬe -*H܄YP0}4PfFJhmj_ڵBVEvnEIsK{9/s9BN˛Neȋslm}uWp!j%Jv#B}V"9{ZW;;65:8$]KLa">LpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCA IDATxw\S?{ovPAkivikǯSc:VTTPq!3B@2ソ?𛆛A |pss{J$>pWi Xf@3V+ h 4`A Xf@3V+ h 4`A Xf@3V+ h 4`A Xf@3V+ h 4`A XfHwK cة%48H`|/Pb 1.u Xo3x|ץb]A~o ǟ$Iw-]˟Wrp0v4i”тX4` A"WU;o5$r}l=;-gpWo.$I뺸OvH.V&L#`.~p>b͙:B7DȜ|&-Kg.7ud'TA"d/I\7XOwҵ w-#{o5]\4X\$Ikַ(;8ET{!pQY%] C\NWej6Huvr}{07+k]eT!3 Ety1/Tݛv\Wʨ0*Vi2A:9C)dcl˙CU$>H'wcLOJз:9-Ν0d\+@kq`eL>m/LHGv'ϯ»3 TcN̺5|晧.]b>B8AOOys˖Ad[.\ij* <܂bbb&7bDHmkP'I /^|JccBщ H2&.n|BBPP9$ɶjInn~iYYab9}UTzΞ=ݨ)`< ׯ o2KtLLP` Ar277OR#im9qBBBruww_))ߠZT7n]-)c0"ԩ11 ',W VAVaaK,~ǑogϫM ǎҋ YacA_zNsD"1?R*mx?MHL|'N<۱c>S߅X,޵s{WW׶m/\`>ERQQy#ZpŴ\o\+3ֶ =ۆ}4v NJaFFg͝;Dz`0<}AӗUTT(+VɓJrq`%_ig0Z=k rEkGBBu惬Gz ^^B89%Ų76664$ز=h4'\ݻ&-^蕗_zzS3gpwݝ˵y[VKޟv&Dm?vG/囩*ݦg_}_ڟ;vsW]Ӎ~ic ,zMuotuMHZalѸH˙ ƓO.tFHL?e1cF{z^M?ڵK.o3K*666 PrlnʧF (**Cgϝx7Bꂍ'>>~3c0vѣJ͏yfèQWVV]qüd ddd"ЊaXddDzzzJrF9ѣ=Q2Y۸q}||D3gΜuP ˏ?YPP`~u|=m4wUՉiyA?"31(ZnPTeյvw֎v0hN>f̘O>^ƌ-)>LBR١]%W!|>> RRRƏų-HO<#6Cܘ1S*---V$Ϝ9c4}e2^j~̸qcz^qLc=xĉӧoˣG5oUTT*zmXرcQ05559)ĉ?ܼIt+t.%5Ukqz^֌t7h;pRSSgΜoiRPPKN}{Yׯ߰z#L;rUܳP\O|ܬ}S/3~l1|>l|y6GKWby!A99vzZY,oHLL4|ysP;܏=xs`uō͇hsl6\(El:LH$GIA?```-~o8{L&؇xU^ؘ>o^5-rK æLfǍg~{;9?a/Qe^?reiɶڳ=2J7BBquG \+a>Q{D~ۙtdŭ)0M/^?ت^8WƈN,--˫0!tϡ۾}d0cǎ4ɓS0Jфbx\@w~Iwc-r{}^y%S->>>ƍs@FƂ 6'iKKZf.a'fw;bĈq^xTjRѣ .4!Re׸?K3+!=&,dݏw/̐U_dں &u~ $ҫUICCCsͱPl6{Kv N 欬YY #{MOIIkR ꔠe-Jua.H9yy {8?B,<6ârTҥTj֯'8zg@qĉj0::`5@Ҡ]/j>-/ccgr(cxa\tiɒŴ\RmVvL!{ҥvqJ"ٿirG?)Zd-o^cv'g gϙ͵;9J2CZޛ`xzF 3I:6Z\ۤ6i9$Ѥ~3be9>~C&0(b9}@ؙa Jzӧ 0>1bDXaac[lްӧ ~q^$P^Xjb{{ϣjrw/CIUEFƆWvu VA|Y[YUu⊊rSrfHK>ݙ͛7]wtURWVVk~!gǴ1.eLz`F?lzZ ت\?`ÿȑ#̓AÇO6ՑL!"77/((0&&T(?m~k׬~( yHx`0ƌ=fO< T*=w(XFsU}gA3ϷwUkm+*//{O\멽@ `V^-?2)))1d2aDA: E4iߤ>@0Iz[K?c²_Gvwܵ}.;wΜ=fMF ˰HC#.|pq=o_A"n048v< F@ CK̼ZZVVU%3 W" u@QYʐX__[ƒ+WȰ[ .h Xr`%?t EfNaXW#p,3MlYN;aX罵uNeVH4{V{+iR3\ ȑ#e-2՞{ĘU7/["*o6 CY >}վQNy3up;?#}jR$yQת>?""``5' YSY(AA9>o|gcݣB&4?1\G3dUǻ 畗 Tw}omm|dDdSSӦM_~'%ڪ$$)$Zi:~~;uST?[RqxVVl?k=-*:#슌s|gUVT}Zq}5ԩSRB|㍷R_GP L`[[BYc u6}\߮0(Itc9A11UfMcZv֯'$$&&r8\N{ .^TgלٳQ| iZ֬~O765!] zps̶[Fٰ/ Q SYtܹz/RUYe{VYO<6j(Ad}}2;Ny3q [O?Ɵ0V'{O JL(Q^`sz|o\dl1?I85o!P(L?=t+?RΞ=OնTW_a˖Iɓ'%EDF斖GQ`0͛oI._laؔ)Syر!!拷vww-JMvN2+dVwppp{{TJݣA6ѺWa vòGð`%plEmTMI9JW=qg vss۵s+,,rdR >s̞QQQ1Eg{=rʕ+W?ljSfIIōqSx emgHܢŋM%9yZeҠIOwNabV\i\ X,z /rheXGipp<'՛e!2b'D"Ϟ=T׮}ۑU;B_/5*PHBݎtXY|gH62ԩ;nXGN>SOkࡅ Ѻ}vP W V EBxeg{~M]%#?ܿ24<<Ojw4Zb$7˺*[J {r9הΞ2.A_?߱cN މls?v˦ =.X&xe>p8?6s.^Tט$pcc'OIIJJIE=ͽg1k:VX^VVkԩ|]~~~=lc=LfZZݏO:\ý67?qt~~s33SSSCCm%K. yy%զ SSgϚ=+0ܽo}*}W'/Ne!K犩|)J4ҩ;yrK3|.{>pW(MR) (T*U(BЙtf/ջ¢K툕4igot3P(Zr|Alj뭇ǮF, +'b1PYZ(Wh E07͑ރ`D"`:_oooooo! iV8?oɷ`C- %*CȆ\1X=Y,zQI)ʴ./LGsŮq:[ WAIvZrbCpwp`ea1ZNUkw^7EEE/aEízlqBX{s§VӳyiEX3$;::LcDz UޮwdaÖ@ }BQ v^a93}K'Zu[)]Yy;lũ(=ɬSaXIDATnk#in=p@8;^ K,!V+E(=nv}KlC1@⩴ 1F:MƩEP!3T={KS `HQj͚Ө"HBmTtb&d ` L??-̓BL9bwVA 4`A Xf@3V+ h 4`A Xf@3V+ h 4`A Xf@3V+ h 4`A Xf@3V+^4+$'IENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-cirrus-ci.png000066400000000000000000000152031475306445600254640ustar00rootroot00000000000000PNG  IHDRMw~iCCPSMPTE RP 431-2-2007 DCI (P3)eMKQ_CȬe -*H܄YP0}4PfFJhmj_ڵBVEvnEIsK{9/s9BN˛Neȋslm}uWp!j%Jv#B}V"9{ZW;;65:8$]KLa">LpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCAIDATxyT]]waSPT4DT"Sըɫ-%14QF-}QXi&&Tc/jW[^( 5 ʡ,^y7]`ew5_3dd(pt^Cڦˢe1fYP|7$I24qą G$R:;;KKK:::jT* {l[ZޖH$h;HC򊋋IdޑQQQC DgϞuV΋JJJ 477lAdiӦ%&&>I+..ʢb-[OqџjѣGhtvA,4+KۧP(2L&w}WWWwܹM6%&&vN{S@Vgee]zbJ(RW\qիWwiI$g=. G`Yݝ+k4ǏOxqssd"ݝ$IѨhI bE"$kkkww߱!HRP(&Ij4h4 ݻ{(4 y6uϞ=۷oZǎcL&7o^\\\ppT*Dt_˗/766g|rPaUVV7g3gNttD"=ڵkeee  o333#""Q^^^va}<^RRrĉuqpʕol63Gbbb2337x#''ٳtƃ>3'.YޞBdgg3bŊ7eP(\~}JJ So*///**`]vfwر;vbEDD wfsvvvOOϰ ꒄBysӧ9y(//av'LrʡW9ܖ/_>fz$ɼOJJ:y`x$IVTT - šLx6L=k„ g϶"B瞻z*P(Z^^g3gܰa233 ڶm[PPPKKg}VVVRf9s`~CJeVZ._D$tj=zV~'N0E<)77BTt:vEZ6iҤqaE֗.]خM4)22UTz~ԨQ `uaA_,[յ3V<ؿvwwۡOxZxAT[VUU vf˄Z6L'OdD\.+nVT&:(###@dyym Wj沲>h֬Yuޠ(Ν;LT\duaŒFB`Rf["̘1 :9##cTҥKZ$EQ%%%۷og 4iԩSǏϮQ۷_tɾW܍x<^BBmFa\XEE@<<<͛7퐐Oa4ӻArX<`O`bq``P(#RTyyy̨ܱcǾ["tƍ\hrss #Ct}v;M C$$o-Zff;$$郦Z[[[[[)/CBB)$ƍo>zx޽oގ/,;v}]:nݺnkc+΍I&9\|.h p=۶mc7dK:xek&v:ӒWfffzzTxt߿?99y3/߽6a„~NRTUUeGNf[,c 5Vttt>}bT*jugggOO[ WlZf7ϳ^q|>ǎsboĉ֭_s<ʯ+>>ۛ>v,U zxb60 7os玳 b)**jʕ?[`Oٳg͚5甔 YZZK/ ֘|1|www;m":9kBF`oٲe_ʢSHHU>?wܡAú(fd|ooo_____ѣGћ0o quttXt' xbD" z r;}uIIIL3d:w\ZZZzz ,`fh4r;JL:5))ڵk̈ϑ$ɜ8& ѣG3]2GB43ZZ*//KKKKKKbqTTTllԩSCCCV^`>Vddd,Y)Ndooomm˗mwvv9r$::r Vz:A6H< Hzj\W_;ix<^_YYYYY) g͚dɒѣGY울^63gtv)xk̬֬w)vZMM+EEE1}Zt:ŋZ՚5k,r d+V⋇:u`0욾hlnnnnn.--/7lꫯqt I555 ^v)foHHȞ={ vCK3f̞={L(ѣ_9..V(v޺uKaS;AQVʛ"L{ݻwڵQQQ1l:.''رcvBJ*6!I2??{4, |||6mn,))q|x}}}NbieWFJHHx?~ ٝZÇ5!}+sν{lS(%n X]Xxx8{P`hmmur^gOVv4L [t:zRipppLLի8p 0QXXh5|~\\3 }۳KQTqq1s "66 p,^3M*Κ57_غ7-.ZhD=l2?liÇkccc/_}'O̞gŋCyyvwwbVHxPߨg+@0w\x[n ===_A\G~7,~KK Bn{LW;vl||pgegaυ??V{С2+י:u*S{SYTUU1Mv,xC3f͛G򲲲޽ku:wɤGZZVd&Vd23gΰ+\>r֭[y6l(((H" . _uGfpww_vR<2SZjT* ,N#bW\Rk׮Φ QuقHd2zzz,XIII>[xzzfddL2嫯b Ipo7\jRuX!XmՕ=gJLLAɓwm߾}]Дy{{u+"Hv5+uOO-[,^豗d^s$9ୗ?TR^{g?Je!bƌ|AHH^X 7;]qqRL/_~+ ?G)J^o4 bX&%&&}8Bmmm=G$5o͋ ŋ… 8/S jRN\]f͜9schlooWTVHD+ݪd-Zhz=EQ"K&1lV*FO *CQTwww{{EJ$ Z})**ζc'W1ck6m4g@ڌ~#ᔏ&IR$ayN 1cV!X8`cV!X8`cV!X8`cV!X8`cV!X8`cV!X8`cV!X8`cV!X8`cV!X8`cV!X8?0xSXIENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-civic-actions.png000066400000000000000000000166521475306445600263300ustar00rootroot00000000000000PNG  IHDRMw~iCCPSMPTE RP 431-2-2007 DCI (P3)eMKQ_CȬe -*H܄YP0}4PfFJhmj_ڵBVEvnEIsK{9/s9BN˛Neȋslm}uWp!j%Jv#B}V"9{ZW;;65:8$]KLa">LpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCAIDATxyxݗuز|ɷc焜NI}Xh G!] ]t΄!XR(#q;Y,nF?*i$%}<0FYx=BUb'U(WMH$|Ĥs>Q +÷P pCv@կPN&(0N'-6fE c+ tt?x}UΦ]&XHLZl BEMmOA9r4~߳1W^]x-ikqR0gK ր1/=ae4& ʚ`ia}-C_|weх6[{-DzY9(L?gscvݴ6'׾'{[OyܹKW-]^0w!,-:͗=MVH bWIg B=>0hrL`钕WIL=h>Ԛ |/o|jIҺ㷵(v%<Ҙ`%,1aFӔә8XJar̊ .ʫ u<ٓ=َt+.`pV>m`mX%s46~#s%`0y~YN2 qx}>%¢2)*1(Hլ>ʜ4vp Vɀ;em@c8s֜L4dXVP Wo6oDU!_ϯatBaت4L}%n 4m`t6;/_9Xo/=abN7dU S"Xf$JR8WOƔM"? U9t v*C>_Lq+6>^z0NdEW&wAVb8v1 RycAsɊ`MrE'Ѵko7 1]|A^:cM>zwDtn#ؿz? J?ʙc`;޶4uj̰Vry!,1yziIX*-)MaTM=D%g&}~_H5uVko=FRXGݭ~=^{o}+2ɼ9rp ?ms]_ފ.9$V 8GC_~s/kJiھ+m\K y]t s@+.W^Uzμup'M-{c.4aa6Nd9D{mkK1Bڛj?cz[\,M?oǑdJn4mwGa#t藭q|`Mz^}uND0?S!ņMFk8:v* ɼehkG0 6k*6OkϹx<98`}5G Zrqc)`Eb|`` Ü-݇!o O=ǏX?^u(OxA 94I+M;v#}9Z(0=Tj}'(>~fzk3nKp*MS陧F5u:\Veۋ/1c`=Ïe<<zn 2c\ @*"P}P]JPoo/[ܭ5"0 lp6 @.ZaXa 鳔3XS5L1T|N$/),ʻ] X3ysRҢ,GCPJ66Xq9XZ\ϼ}U3ww'5<yF)㶕z 08btA]4ڄgP89s('yxNH$;hڹqcGFMk1AՎU HGϼH"kD-16ֵ kf"Q\ĉ40`u"xǑSKE=}S_;ssl~gZ7v X3Fu$L[qp`ۈ%$1EM-daXg[U%G]yoX$I9s0X|ͨ~ ÎlxA̭G4ɊW^]9g͍`~0gq}sfBX)ҩJ]CDa :toθ(UNQc5ۨYtnSi:GVKښqǚoGwK %T(SS]:Ζ.:4ь EI2kFG9[5Abc6J^Y]v<#G5 kؘܮ8 olsvE|m" G.#x\ɔ1ukr8A]9sp`Jy#Tgm'q0* q #We71W| X3O] VgsbT9@"Q%hAν̾ +}W?ŧ8p4fs;XÄ U?Oszܭ/6qeGW?=9<yrxޛryco?d?PRNMb8*G9m&݉9_%h&4)'dP\Q|ϐ7C3'+UZX`^#cI jf9**/$w͸*9{OG~DM !eٙ9`OBCArR U9BnͰ.aY2)++[&JE^VBaΜ8";a6Z}ȭC5o"Y K1rI]SfV.{z )${D!j7&7XC~e 7 :F[c `|=J5k6s  [6fRF,b;Fzr臐W"3Ų7ID>ЗyOwJ~WKƿ|*Kq7_C+y8╴/=94dXFVQŶ&ry*r3a6^D:F/_=oq}irib>Vά٩ ]T/h`.LXz KoxIlT*+)en)4_|mMRUŤ1 jpdXU̝)׾[3F?/[F( θp$wUM]EXCdȞܰcǞXRƄ~+F!?tIUYye ?%_+wc0* Wm+q7ky^m8OOm4ɪsȳ]6>wI S|u}CF%$]0 FoLWs 70 &X[?8( rxV`F){i DžQi|]ȝl[7+j7-LVCq.z]+kwߏ._qU9נG eϿq.0O=슔8bIu<-EGy+NoePT>lɞ@-]ko Q~(LE\%U>a.="]PT?Ǣ[nOp-fnH2 99'q 0LY7 o 6&:NVZ\tAޥmz5$ [ОwaۯNv :e~& _L? A8WJY7]9usz+aWqlQȾK@*+Vy;^8ζn&.4ZZ#3.]9㢍(7y8@`X}"sk,\,)zXwl : E"Z+hܥ˕B~JM9W_rmBL͔V0GeIGDZ] /{aBBZR{2I@iq P9}VO߷cF čwߟweC_}ZG`rS i3h&"|MKMaO"eBRf,sghwv~RCTΜǺRko :4SBiyf @=Bd1Na6{M@ hDjHi4<MݑqA=gAi_w3q%f  RkDjPBy߂ P>'l-TU*0[ M" r!*G\NCX-4u.%"Tqi9M#})i39m?FKSg ~D\Πc$t#KK%<Yv+c4`A Xg3V+ x <`A Xg3V+ x <`A Xg3V+ x <`A Xg3V+ x <`A Xgֱ}nIENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-coda.png000066400000000000000000000122731475306445600244760ustar00rootroot00000000000000PNG  IHDRMw~iCCPSMPTE RP 431-2-2007 DCI (P3)eMKQ_CȬe -*H܄YP0}4PfFJhmj_ڵBVEvnEIsK{9/s9BN˛Neȋslm}uWp!j%Jv#B}V"9{ZW;;65:8$]KLa">LpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCAIDATxy|U#Iw`#8|DśQgY]uDG;.·Qweft< QFa!$#;}wuW?rtUw^:_:/U{Ecz 3+gV!X8Cp` 3+gV!X8Cp` 3+gV!X8Cp` 3+gV!X8Cp`L&-QNI]FP*]V8%h^h2Z+03+gV!X8Cp` 3+g+Lk$ը |h4:fjHG&몔j0Mp{|y(sMť 4zGvwM MmLGt뭒ꒇ%ORO IdybAipl@!X35D-`U$k* !B.̳O8ORk0aBbd-!,c:9&_Hܥ[}Ii8&W ;b_{oiuэ_:~XCf̳M}#Lv/w4h1>rXx-i5DMfrϭIִHcW%}Jށ%/U:%TKƻ]w$iȘ}Q>߫ڟ6C((𳗨dN],qA_ Qdw\F)OhZ\-0 N&O|;ا_wݬ +ϖ>y)n֣X2:X^Ci)ȆUr?#,܃ Ve2;k񽛔ݩm"?L(\*^Y%_~bڼlqd݊nj+X㷪jXrgƩ*Q58Rz]~A1߫U~u ,{F>}Mxz-i+eΞ%w27ZN9y'Go [?Xb{6D6~skP3.NE7> V۝!Xsfc- ٞnK*g]jK\Eo2YǙKAl1AP*ajtB#F1}ut"8ZۻS,6N_WԢ!#}he.-3xbvlvD|%Or͞%[4B"؜UGZl6Z=Ů~d9^,(bYZX*|{Y`a-yk~bvB̷g9{{˻Okp-9s_qs5]!+.S[R»G*':;=b-?`yD%sisTPp_7˳`4`N9 A5FV_ebm Nj+C_j1M=F7M[}Eڦ{8 n"kJ)aHM~[Lʨ_Ȕ#˨33nstv꾤vSad;d˞7-̛L;֝}!Xs+n3~}Bݩ PQr^3ЖHESajJji:+W-iѢa5ܢ[XuƂ('Ky:2 ơ-MMJhZ Esu-|ԖF$SѿӁeXnjwZf}jZxGͫ]\XDESu+^<9MkN2t4@[ioo Wߦ5s\bZsNY"߿5^#`)֜d䞆V9g[-5mZ[ÚW- _[MMokNb ?H^e eK?L4t" 29o/Z!w`V@c(AL!I25*tDk^^Ff2XBcīw} Xs*-cdlj`H{CݙS4jT#urXegօ1$3@x<2r,yxNAÿRbXR؞Fv&m ˘s%O !Z44 Xsip2kmft-PM9q8jF`e[? /vyyh(w xDާs9L1 tMٯZw#jЗz1XP4 /U(ҁ\`UFodamW߻I`?팏FWiVV3^Mg1E%;0!W Xss 0{l=ٴZG[?M4y6oF*ע{Z9>T,(=J>+# w N'{eY-5\%y%jKc [!_L:aΑWXPwAR;V BC0,C#)OZgHBT h\rWlڧ?DG^|XzT-8qxnUa:~R6Ֆ驮[ ~v+ >t-1_9qx_HUo"Laּx͒7"-sld'EêTA2Q'e8qC:AECKMc\qJs}lgu+X. bt}VCWkcOT2DpD\mk*c2^=!bAo貄~ũ'ǫv(kn˿e?7xF[>1r Jݗm1\\O%XPL%iY*oOޞҴ wyxy,EM=h:1bSgLI&jD6}r ^A`mZ3rCF;ύlLImEւw /\frd2SwSͫf*.y1-WNei-*漂 \/[ ;)g;8g`dz@ϱM2 67cUۓkgkΣTt೭N[f?\=S;u_/cu =\õ/G 3y׮-os:g*O,\$e^G:}~B=d`s3 QxSRQڏc %Uw/FJGd[3uK:WCt{1jɂR>ma,1'_gۋ$Mg̻vaƇ[sKN,"qŽRj=OUb4s#R2v*lo2&YH 2h,,X$eS"]闳x$y`z;OSj?rX${6Bxp/G[NQ5\%f*E1 Ҫʰz?<^^R޷E[_$g;ϵM 3)nnXCm( Nyx}O߽^ u\[JKM}ge;VwRTOsθRt{_^$r!5F׬S 1MKߦLpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCA IDATxg`ݽ~$ ( H/(`E(*`zKHB +;e Q>{;#< & C5uA +8Vp2dX A`' N +8Vp2dX A`' N +8Vp2dX A`' N +8Vp2dLS7A5@ mC\%BI}iKf4M4@nor'Iu*dXՑB@Xt4GL߈>rz4@S\N{_,m4= \Q4r4ўhV͙+)ѯVs(EKW*at[n_V1(%´Sngf!Z5uC@xMimyA=ޜќ=Wr*Bsz9c ݅x'`ӪVZ7kOD5u[@8۰yy}y"\ _qќ K(p\d.}eTiws%QL˙+dk}b4S?) Lnl6Hhڿ6uF:_WDHy ƘA~\I:7MKa6!@TmXBqz4WEj20/r=Q.v)yKiw\I$f'fs~e-8 @X".YO 9p*BI}$-gQND=LnhMW:;blKt luWIY, {F3 y\14 "ޔ#ܘ ڭ/l%+o$UWMɴڽz#CGs -/%'*1ڣ?JOev:Wjx1›}2iEԡ=ߜ n,2dry1_4p5Zq휃0 =QCvԝ勏ryCNT)U{l1;g0(ڵwL+h߱k/,/>Fz3^ o$<Xa'LcM7IYXj3;^jJcg٬+*SӋ9S*~:vh:DVJOy^_QYu39fJZqqc=۶M.EKZiyyHPӧɤ}8N_]]]]RXXd6 ˳mڵѨ*J/55z>7_{+vYY9Fͥ]~N_V^zd4)UJ?NڵmV*EAc߲Vr~dJJ|{>x`!m*KQ1.]INI8cnnn]:>ܷ:w m\ gd<}l\BbEED֭MxPEeՆ-ӫSS'5X !ɩi#OĞwCQB.vh+.4Yz㑧b^T\\bY(_a xlAnnx}K,Fǜ=rjz`#ZֹS>?ڹc(@Bv]-ٮ?t4d~mZ4vi }}z|eeCEcbϝ;qݦcF mww7n-W^-dYӕ&Wؽw'anQ`0YyÖ/O3^=Ʈ=_u`ưf ج|0_qV-[4JHJ/oVVV5Pƥg_ܸeC>xu\>H|BngfM-˫/Q]Ss̹^{'_+b}u-;Fu:zqEkm7**.yO?\8;']X6=#9{AQRZ' ~Yn^~QBHYy^|͜lEn^|%o=6+fjLg&&%y?~䇊JGêto'VzFopF\fr732` htjvEu}w1RȤe6(BڂO}}q/vTL`Vj9{bU?m F;2LYy?1sЮ;T*Nd2 Qn|?l97/]z(dF|s~"Bl6rͪ(psSU;Y9yoJ2[?x Zhꔀw>~[pveA?ڮMT*59Q1u-.NHXۼm纍[)Ę=j!y'N>opWWچĞۻx`M֥?` MM݈=/8.~c [RM6CƍuޑyN#30/}''x gf}Dlݱ畫jj4UV)7&c/᧋-bwQqi䉨Swt =Ξ9nHzEM7c.Y[pqܼ_~MFQ}ݺH-"(<Ğ_RRAaѯ}3~K41ֺ=SVw}O(Tl^cN[BccX:}kj,-~=sF}Awk7fw?j`a޽4UF3+~\b0{*:HWX o2:5Ys_IbsrOFN8fT}L'ˑ'l~C2ݷ^3keTVLbwXڢN ^/>V 8nLHpНC_6t9Vӝ:#_mԈ!~H̙ǝ>S^QcR˾20_+ ztIq g_ Xiמ!,qs2ax8dG[ %rڽΕxSpC+ ڮΓfiYKWwHpwhȠ:o+>\_Efтa$j#d*K S,P5gֳ*R]Bz6GKW Ct(^!_xnK !8 tGקMpU*-50iX}jĵ.1dݓ dk-i)Աj=XZ%ݬS(}!}٧ &%84%z漭|E1Sq߇Fݽׅ }ztt]T* dpF )Y\\4 g$HzuݾL 0qnd.I2hzo/G/irZmZzFFF)iɩivN!n ҞD?U}I+wy%u2=|[9tZOok-S++*anV!MKɑ"D9-kF)@ޣ/զM#x ڡe;k0e)-+/..kJYN$(ܮmkGoQ5U:Nϸz+їBYhԎm,0۶IL QjZ ݽ$x{yy:62W|p "δ Sch5KԪ/iD)--l٢¾>^U;`4K DBS\!w(VVU9{Z\|FfOEy{{5Wsc!JQB/Oj4VKΚFDQkYGtbFKă FcF}O7r.3VS]ղ;+qMcmkl|<%|L#2F)yV=JDҸ LaUvYydJ/2nƌ tg'co\5K` c2>Cb]FA "oljl,[RuSFQ̴%3ˊ|te9n>liR BP([vcuz>&CZA"4_1׼+[ŖFeѤ&[QEE=D{ ԝoBXWW"&ҝBF88D*Z ŰiZ&z\UN[}@nn$zxK:Ȅ7{8MNn YT.U%o@_`CF9h4¼%AKJ")6L3N•J%M C׺s!:sGbKu9-[tFVyrY,},X j#C̏(t@\3%ΗFտOAMLwynR8}tkc!7Jt3 n QDRCXdT=DUq]ATi3wl^3vH__FT*R ꫫh/v/Iޡ}[n#KJR+5`F4v`?9V^iw b/V>KB``bJ?9k 1={!k7DY*٥SGA`5LGٮ9ҀõqIO8tTBȭUTVFF ˰:_<[j 9Rh[ŗju#fXPwjaQqrjZ}7` x_ iUeS!y iϙXlw7jMi_>~6a5_~1tE~Z~'N;x W Y:a9yOpdOoܺSdMԴEcm;z%1ϼ)iX~`ͻv=w1[5.C-dnab6}4?Tm`R#'\.!%ؽ-f)Ҏ_SJ^ݗBBzuC+"_zbyy~ˎݹuתE`W9?'4F⢯m.Y^jZUJ¯:~fs b|};Z-`m͆299GE+>3gS&t 88CF"fXC耧iۙ#-<`Xjw^P6Hciiy/>/(du1lE5 :i|`@^zu7o)=7buB>6շufD3L=S1 g3OsRٿÂʭ)i$bE,qᶸB8{n.:uz)<+K<J4%m"\;AH) zRAUH{:䑇zfyl6LLu<%^ZAOLJ3¢_㑧>^X-/HNgب!Ys_0-w./(/yۮ Sgݤ)aDLk4yL2e%?b]!&cFzX-o۽[F/>t)$8h?"=vr' c Żo"t^`AS~uDh8=_0OL/#Oa vs툵P側hIٔ2@m:\Vb5Giʥtx5 P=oI9r,lfK"qxsq*EG;FhK &^ bb]4-5-}KJؿW ?i`%Ƹ[N^^/_/՟8͙5d{YrL-0BާwxrJZتPyѯkzyz^g]^D~AWq;*cC9].**yJ⑇6=3MP[~a [=V\. juyZM!vfJ̬*VRjíXB.M.Rrr!$J͞pnm}=VƸch{__1visVw4ǡe,qcڼOi(ME\Q&P3-~| g ӿ "jnLSH_{D%r/>7)G k4=ykV._ L<~zvfl ~>g>~vn~}ztwsNQU=w{wl^|ٷcG\ 9;x`W͖(2Y3*~/Z3v =2cP$ 3u⸕?}שc.5l˖X5CʹV%Z͕FsEzakXf%jx}2_č( \{ v qUlܺs "J[ sǍe4F0=ߎ?C:XRl8{'F$ZDӔ[XεG8#ԷG0 CϜ񴧇ҟVde6^Ri6!o:ow4{Xasvvn%  ;{uh"a{شiUTm}O3 !DIi!KWEfu^ABiz^C)MG{yT!nrEǸQSx =/]?A]|+qq32ӭK=4G]Wo6i؋pZ܍\Nv*maէW ,WSSmsiF5j17fTndJJc//׿Âݡ%ɞ:qg_tZ|BzmNg'k~}쑾!XŒˇ1u/pzlg^r_1ƝB;Xi!eY\UUXX^!l($If3%?.Y_|,<3 >|x755Y9ǩUV~2T; ᾽J,˚***)TSfVkqvھmc>&^UT\lfY\ԪT*m`7qWƒ|uE-*3PCC+8`1ةBt}R>8E%#O˯y~gNr>q#MMI|1e<4LӮ(U{ Wxrv-9.^._tߴ?)@-N⚇[ l89xNU͙ Csc3Kx#o*c6W~a8=1selj$";.cko>((:TATQQ;W<[vXE0484p @-6yn^(b cZY{T\{>c(E+D9f̤SThV(ǎr{Ysaݔa׬lβ9*1sEڝq(m6LEYʭR_'j-~A=d1!rɶ{ڢB!=rgbo[@+JO"C^SUm(A{DCSSc8yjÖ.]aE슊b{SL=bLX.#3)@̸畩!Dpտp31ƽ#zzGl{Xקpڝ.5!h 0 ^ ܼsoffꪪ8e-;v+=VsNG!`RSPDߑ@\?LxY",!,f{ +8Vp2dX A`' N +8Vp2dX A`' N +8Vp2dX A`' N +8Vp2dm6tIENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-eccenca.png000066400000000000000000000226341475306445600251530ustar00rootroot00000000000000PNG  IHDRMw~iCCPSMPTE RP 431-2-2007 DCI (P3)eMKQ_CȬe -*H܄YP0}4PfFJhmj_ڵBVEvnEIsK{9/s9BN˛Neȋslm}uWp!j%Jv#B}V"9{ZW;;65:8$]KLa">LpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCA IDATxi\T/9TZ) AdQEepmc陛'ۓ}I:I2ɤ{2L7w&mŶ "",ԾstXRWUʙƈi;!DOlLd-boy3p]J,~"BWZKݺ/ x,2:0 /}Y"Kߺgoլ|!0͛0e}n˅cQ+PuI^ ôRwrgI(؆MTcV>ieˊ'.q("h m'D0Cx0(]c\WNA*B8O179}3tKC`bd˥D"4M Ϝ8-t!06lbIN*xob)8 TFq(A.0]gi]' Q6a_oNu8?qzJmb'I `ҁw t1x^{i̖`^{S5̰SRGBxr$prcD\XŒZ~Je`ٛ#b~RD0W7?lt*O XB,YuGx}+O\* :pϰR:ι/bUFTQoGݗdO ^ ;ׂmXQ (};``]07a֠^kOj&O@6eL+X{|'yWola .Xd XtvB T\]V)Ox~gBDZNfgIZZQJ\fuJ]0Wc_ Fa !i}w x@pNL}5pO00nWY/n(Bgw4Q;B2]+3LoI s79;ݪl\!7f>宮 s`VEWP]`yC ~79>~[A=qV ۆ5opmF :ٚq.JmQ0D`0%IXA[kD֮ fTލi%Vj!U;#!fTEQ*h9B=rV ZtPd͎CHsl79V0AK׸N[oU[٘jc,no&_XJ<DgA`Z̙~gWOK%y '+ 0eW/^.>2hdslf"UcB+Gs5$pE߃T hcw0>Z+UBTqES I {3 BO~CLUq{k'0r{X)܏R't|虬D){-^[7:_Id3"h`N'R M=w#Cۍ|ۋ@iRQצta%[GX|rS9`yCWZs``_t:0V o5_ *cNQ{bZ3t3xC|FN3Ս S7vۮΊǠSsO Z``]8(F4Xs9U_JiGV }ѹk&(QS)A.0aUjTΙ+mq6=h}gц&$EM cU.HXf} O[tt@:Q.AG!NoP*B X2 nXmԤ(6~W:M8y2j?6_X`vŁz.gc1yVN}U׌q'EMo!D0Nީ[ uQqu]5' !T){t9̵0 D "6H91UB[s= y"m)"Eׂcl'>}T1Vbʥk(#xB|RP,zƺ Qg)w5ZT 7 ^7h}Jj: 1[-Bfzn@&e7 7~w;Fn)2VvfeD&fXҕ0-sH,o!֣괽S 鞽Y05[.NVZ)ʨzn}4WqV_bӪ3A |bCfoxS"[GWU_y)B57>X@S qjeDB`xK""K_-9DB vǃR*jf[:P(j5wyXx,Mvr:<4RXl6xZTj/AF4hf} !Nr 1feY^p8&=VR^zY֣Gvtt>عs;>>KoCBBAV8p`Ҙ4'_2ݻw[rܹ,BcQVVK#k"Aw5EpVݝr!&0Nm҃Mo>|s<̙ .nyfDDDPPױ.kcAsΪUw.ȑ#ׯ_8nc9[b<"~_?x` ===iiiҁNʕ+>4M777M>㸶 NBFGGc !ǎz4_VdX333g7󦻮{q1V<ϋd=>>ʬZJ^{_O,<.BʠJsstHW\_@ƍcC܃M_qU&tVygF;}A|KK|ϼ<R͛7J[ Kݻ׫R\~}MME̸y#5k|"u:0ķWM^ /]$.׺zYTT|l[PjjݻwwW** .IyUVnbS n\#vyj&)]}7pBwf!&[fѶq#gfT=c^W2Ob@k94`N!Djzg*>R BȤVg$\K.[B/g4V"BŸ:N'TE|"WgYv!C'O9=lJRy@OcU M.k{F=z+Uu:]LLLTTTrr͛7ϟ?2`}`Gn؉/}7@m'T %3deYVgfyYqccc@{<OKKA!111$$D~ݩ0\fmpppll]v%&&β̏fӽʌ1PXX)K̩ 0yVQ 5K|Y&zy8 o9JyR8c˥DFj###v {KKǥEEEqqqݓ8ʼnvftAmhh(88k>y###ViI||Mj; c}vS/B՟+z^ n{./B B/R,_֯_/[UU廏Pզ<Ni``}v)_VfG߿_~~fyT;<<0K~4g֭[7Gꉂ ;wN//_\|R.\Z \.WyyAppp\\BHզJGFF:$oLlGlճiL/==]=ߗ,BeeN:^K/?c+/vڹs4`)*((ؿaW^yel,˖ɷOc<05z{{jh4FFF>ihhj-5Nj``^8IPPPtttvvh@}ƍw[V^ IJJZr (JoJeII@ǏK jzΝ6͵&I*JWM^qʮα1EQN[dɲe֮]P(;&u_ctӀ   X X X X s 3\=zt>,Dyg !da(Գ <===oߞ~av59烈q*rYCZ NLLtvvNLL$''Xܹsv=55555c|Ν&arrrB]]],:qUӹnݺ7n(M67n,s]~ 9Xv8g۷z}zzhO~:00p%qvv8KWWW]]BhbyţBBBrsskjjbbbrssBn ϗwݿ{6oތ1nhh a2\.`ffX' 93L/^ݻwo{{{yy JKKNg{{{KK˾}lr%PSSl~rrrΞ=tҬ={lذ<Ϸݽ{D766 XZ\\m۶w}W6ڵk?uN>-S?>>^QQ{]vlҝ;w^tI̙3x<NJJڿXgg'B2""^y^>`{{{iii^^ޡCq\}}}.jiiiqqq999jZe >P(322T*kBB޽{!bpT*Ažyxsrr0AR=xa 6t:iqkNl2޾w^e˲"볳YUTyyyN***bYVVUVV")233CBB"##)JHHgfYlY\\ƸX ֯_OQh?tj4-}ǜ1 !!!!E '!O=i|xl?0V+VPCIDAT޽{ԩ7 477FqZ)QZNsOBf900P|.nf31v"?z9e_ !NXݹsgmm4˽B,KSSSBBTEYuuuVVV||LpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCAIDATxy|egfr5w$=}-r@"+. (."+,Ȃ" EWҴI9Gtz9&M333OSg$I>x+V+ h 4`A Xf@3V+ h 4`A Xf@3V+ h 4`A Xo1$I ^@2쑊aX߶"#IsVXI*LRH#U1d?Da aj CklKֺNy\4Py#]7kթJ֚}ֆsy+2F"\0>OuJUj"m$1a,ϵڧހ:SLfr\<_8Ôޔ rS0&?`nۤnhVV!J{B|#b? `C6ҢֵT,UM!"ΠP"ߥp1{RՎ1qB w}g$|1GXXd#mf-glfQpi~\$Wq+-ŲzcĄoo`'Zzm6mMn2e`8sYɂj#-6C~x=2Q&[96ju\6kRʙ!OaZ,6XI`Hnk&CcYI./2cEZm8r2= X}E}J|뼾f#BJJ„f;=Wsk%` 5?bv f%BԆϮ&`aŲtw5,:a83wcR@ęA͟\1z"Ij![-wMlcYDB;` ~7049cB 5v0YJ;ڕB k`hZ/0v0;#gjM/4[\&sc=W RJ=CzɾMH&S-7M)lh]g?U>)JjIxd _m4|%B!RzcD>pEɂ LfBhzDz3:\d2)QFDBԴyS(r,mZV+yHQZ$ ?ji8軣eGǎW,n^7H4xРz#44w=bhi9󃃂BBpwgVTfs/}`XAXm~4؏7}jj9SnSW[g* `F/SrcWUe^JuϜuo555(Ӥ\ti95\MlÏҋ=?w],T&~ ѤV-h+hzju.ˆB#wشѶ5d ;Ɖ̶; {_*碦Oi3u&Y'ǏO89_RzY]M/J7m쵘Nߒu|_̬={v~d2 wp8lYmnVFU*UVykETD䘴ѡ!!B!TT*emmR* X=J S%\ld`ة;HC&ҤGΌ_F+{רz$IU؃y5/kI~͘pe$'͟77#+;js3g?~\Gp8ӦMuٳkyl^K&)33;-mLSڎNMq&fd2͚ڷ ^#e2;瞷wJ8Yڔɓ=fL&`^ޫ^ bLp]scL)k;hw'ǹѬtjQa7Sծ|T}רGv9ꔪN#Gص?Ԧ[~ GŌF㍒᩟o$!>Νׄdx\jB8rbY.y"T^^QTTLʾ{d`q_p{:3=i& Xme^zv,(.!<6"x3q"mcy +wZ=nkCΜ=~'F Ou]>>>󜻹ye]#boTT\\=JUW/~ݠAL<=HbɵDe5-eן|+~ƉdD` JFXew8Pnj[ͣ.UquY+**kEDF8/nuVRrMiiYkkɓ `eKz>GqLJ9f5l^Xs5&j]Өrܛ9WSc1D"Aq﷘( í- BxmgcڻBG(7M.i>!i6{`jxty(xCġdk9)WU*"<3L V6˃ӫ6?u1D,mhpLW|pΌ{g<1cF *P@ۚ [>ܝAl X؛x 5YVUw}_v}ZXԬN0NL~m_imRqP2j/$6Co^cl7J *kj Vh5Zms3;F#r QQ#R I\roGފ X}2=uؤ3y.WJny5kͰڼel2~_V^U:Fx2:Q@IMa`2HF}&}z$N3gَ=v̬lj'V]}[ZZsrsr> IM6}ѣF~]56v i@x}}a`_doOۆhT_8:-_kפ$$,PEc"|vbGk ;{ڷ?XT`0\Ͽo"#E H{sU<DrU>qc4h<\[w6[Zy06! tݳE\~0 ?^^tmٜB"(BBB"X"W2n;'#g=x+>sNN+*>'N|eSlL?JnE145NR} qr si`U/oR]\]vXD8'!|z%׼ -X:J  W*ŲWtْqicz\nKp88_,y077oiiي_<[9Z,t~]A >5ÐUߡ݊a֓I7$^ϿT_9hfkIB"VoKIyab ~K\{eܑ]^>6.&vIxjss_th}X~UU~ ?UÒ.&7`+=,앱 p85șuKaS!/;2exb/ UPw{Dc?:qrP(/ѣ-|'jPˤ]SI@ V0p40gT]L45kXʽGU8V`q&'K]v DZ3"LoHRbNzޗx׳ۡ!QfVbG0_HMƝf #/'‘J˕.'V+ѺlJ8˫X{4M1kXׇ3)^#6ι+춛ĉw9z}OϘEjjT6ܶUKf^Pf1(Dji_fG?4RrgDZSWL`n6F{q/tzxBBahi;3N%˩7N:EA'աP^febT۔xsX ~偨]KC#lV}w9>y!f\j8hgF:uhv;8PnH&kq wk0*f9c諲]K3ژBD="FTs*t*łb1IOŮשZ| G?wrJF-uCP|&]AA9W 0ͧO_AC5@jw CR ѡ|4!ԭjZ0;u"MrgImxSy}B7~̾Trs$>uh|^Sv&$w[L$r8g/AvzENn11&~!+l$709;&˹t@VSm W^^Mo9+RCLZ@O Y{^}xCmbQ}S<Ÿ7Y[=yG2?֝et:C?<‹z*?qvii/rs G3iH$tZIi5Nǎln~iS'w{Y,X:O6thJʐА۬өT juCCF ~ jtܞ n6ntMUPLIgΕrhLUЮyqjʘLӧϞ>}QN^,q^_u~q=:3z^/<"5Pq?\,z0jHHl?Z/xS1#._Oi0\=dBJx Ak6y*H":\˫ξKo""##޳+.6ֻý[3p˟[~y&y}3{M3e>+R c]>n^e8Ѣg^ZGZ \)[/Lg Xb@Z!:cߪ;o'~DYyyYT"J2 .}vqbb§>/au " HLL6mʬgڿϥrv_oLcjIS󓓓}G9׿NOFnQޭiL谯X6J*#jYYJ(KBRP$2,2"B.N\z|>\;w|aAFDA%%'֔NSVTTT jlf2</2r@JJJ\lw zUԜ:u䦶Y%2YpXxXB\\Rt¹= Vn{Gb@ZPlLU@Q$Ω(c"R8s{Տ f(cLJAGT;͋ra;n8h[ݽaes Xk@$d}09XQCBϹ ck,aH_^qı:l0P|h@V ;  K/Xn۝+]vaFq XdFc&|G ؑIbQ`@jRK`zʨAve'Lfc%l(\2"Y&Ѿި/ Z XVVWp-NLf^oa3DAL@}l{Jq s#b_(~|_v× L(stvS @@ݼ+. {`OM m[50,$Leׯ?a"$:@O@NjS]mzH>kRT`k]Dh]7LE2p<|:!)MCЏAFO Lb82'ǿK"6L @?H"D*kn$)ky h[ Xf@3V+ h 4`A Xf@3V+ h 4`A Xf@3VWvzդIENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-equipmentshare.png000066400000000000000000000206211475306445600266160ustar00rootroot00000000000000PNG  IHDRMwiCCPSMPTE RP 431-2-2007 DCI (P3)(uJQ?%OThbvQ)B( 1^Maf$ h_+{2;iWnX*ѹΏs{  (\[ZRP:^̱⚶-G} gTSkÿ}1:j`X;u-U"&8s1tx rGpPfnjrI@MHЉ$D BP\JT$.POxFC(0'x}?t#&L #G$&&tGzJ駟T%KD*EIII~~>Bhܸq[ V] S6B5B¥ I0?nLzCsy]U1Kt$\&G괴Yfa0BV3 Ѝz=#(͵յK h Aѣ{cJeq7bwbpσ  !tK.!SSS͛!Ԕή$"d2ل oܸAҔ̙3322؏J/23gܿ3vX ÚN>y؂ py#""B _6=joMMMZZ# õk׮\avHb6`gy*==}Wkgg7uTsg,--k$ Gklعqƅ 3Fr+CCCFQw544444㏢dTj2|z WHHku:]zz:C5wR^^Cww'4$/]t Ƒ b&33Ӵ0o>^??Sedd+ˍYɓ'3ðX8ܹgٽ{wSSlذa_ WVV&$$$izcdd7o\YY>ʕ+MVTTy悂΢޼ysŊNoJ%pȈ\zG1jԨǏ'$$p7ߜ1cE9rޛheڵ՜GGGoxU*ծ]>,W\m_xFDEEżyCQTNNG:4,,,99O?j+V0kIII||+W: V''zk/??????ˏ26Mrb"ݳgK >޸t߾}N{bxʔ) i$I2++K ;Zw~M(EQ˗/σ̝n6cݽ{ٳ?󤦦"lw۶mtݐ$Cv O /`ϓ/۷og_K Ī*kq֭`ڴi/a޼yeeet ?\$-Z|Mbbijmm]zuqq5888X v#VArvΝ3??ѐOQW_}5yCvͷo6ťgϞƫy*EDaL]]_Ҳ|Ȑ!PdjkH<~8VcQզ[DQԽ{,Y32׮]k&!!nҤIV>5o߾|D0GttrTkkmyuآx]v$9w\;;;sl۶\Y$u.&&&=""Ɯ@b`r䈓_~evO>իaoڵkB?Cllcwںj*vmڴiSLIJJJHH`]x U;w&%%@QJ"I288رcd>|8/_6лwo.Y^^^ZZ1 [=tЏ?iرzok$I?{DD/^9VI";_Kt awނ Cp?piZh= I޽[[[k.k:cq0$ׯM+تU#(,..6=`0&A̟?˖-^vYrr#}0v!q[g~ms{5MJJʘ1cOڈ#L?Z={6{#osl</Yp̙Vk$˗/_/fgg_90lԨQ6l@,YT*eA,[Y` |}}7mdl;Y~}ss{``L&37ZòM6XB.[8;>>~ذa!2226nh% zfiaBՑ,\i$**.- 1i9g٠VmO#5o!~.+WM8*~io~wŶ?[_~?a??sL???FsƻNww޽{?jB(K!___ ;vXhQĉfDhUd%d1ct0_hÖo;8-KA:Mӿ#(Bc#,Q1a„ & RSS׭[g.J?N\{''%ttC(s |`D1k,R?jB8Sry'Lp'O47g2;;0뛆_xXfuڏ]ft[d zzw555JǙj7((vh4Ѳ6 W^y:avkFBT8p ))Y/ 6Ia'PZB a:qZ>qѝ~8y0Kh4񨽽}݇ݞwVagUueY+Hb͎tKEEņ nK풢(FcьH$àD"kZH$rpp`\`?|0#UD.Ϛ 72m9ODO9Csss׬Yg84g}fzGĂ q 2d׮]&3'>}1<<<..FWTT0 e˖+[fΜyUrQkAd#,۷M:BV3Vk3>|ȞjkKv׺Yf+pn4w M5!avaBs-gFqӧ.$zVl]qQ>:8PT~.©)99`0;ӧǏo:^ʟ.쯫8_|1::k*j9wgL%*++{ib\ nM[`Znoz6!۲Sz(zR{nhh5 **%%3gk=tPcc#gl~~{gE?tV$;Em߾ѣ pN>7nhhh\*''>$$1… ׯ=z4AZ6%%\ZZZ 8ʲzIհG T,\TSSss΍1 YYYz2nz*{Fz8gEEŝ;w I?!Cbq^^^ee%&+++ %J/8po _( sWZZzjUC #޽˞E[bO?⒝]UUŞf0|||̭pYggg0 SǏgRUXX(H t޽r^/((P*o<8i$+ۉt]dx͵ /w| =tְ92wݧOz9'z&_i-))aY(c4][zޚvTʹ^<֭[lYxx֭[+++9ׯ_u~;UnnqX9㸻@ (**e_Eeee?~Ŋƍ۲eKmm-< Çww9o=y򤳳3>66tv>qΝgt)))|ݷlRWW>OSSSlllTTʕ+-K㖷zkΜ9 ε \\\<==ev.N/RRRbbb {B^}W/^N8i|-es%%%]|y޽iiiGa*jϞ=@(ٳ'$$ގ㸛A;vtM~A>⧞,ѣeeeo֭[o߾͞Gd]]ٳg_~?sTzi4ho$I8wX k׮5 4ƨzRI?W{{{[[g+G[[LmStƙ=ŋE"`0K:NTt:zn8瓒$T*j5JnCRl2*||| ,J$I̽Ktw֬Y"^f~,Xso&7kkkD}Pk0jkk/]wwwsj:M} }ӽ͝;7**1cU7Q #G6TcE!$ՋptE:tZmrrS зo_///LFdCC'*&M2D8I⼓JKKpvBcǎw}\1B詧Zt޽{^XEOߺuR8O>}ժUm۶k׮YݻwM6= ˗d{Zk8o>aB={\vĉq緧KPlܸwޱ0 o bӦM|Y111ɖ y-\Z#Boݺmz֦gffA_RPOEvZaa\._hQ׌8>uT͛0 fϞce3ƍ׬Yùtpp;d2iӦ?>!!0lҤI111UE``ƍ-[f%ǔG}daYDDttZNLL0w.]ٿ"acllĉd? BBB۷pB.̙[o]~Ύ^,HxbJuС-7yҥ. 0RK,PGwŊǏG)fs}FEEEaX>}L+n,' d2و#ÿO/>UUU0 ݻ`())aOqrr***ڋH$R(Rs3fܹs]q\PR駟,\Wr͛j''}sM &X}|| ς D7nܰ~{Μ9]SlJ /0pdcӞX,~FR׭[9=((Lxlk+Ν" g̘1wܠ9r&|b1=&%%8X ֓/6Zc5%bbb-ZTPP0x`EFsϕ 4(886_>VbmV"IZ׻uesrw^"?a<!cN`dmG <`A Xg3V+ x <`A Xg3V+ x <`A Xg3V+ x <`A Xg3V+ x <`A Xg3V+ xuVWIENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-evergiving.png000066400000000000000000000270321475306445600257340ustar00rootroot00000000000000PNG  IHDRMw~iCCPSMPTE RP 431-2-2007 DCI (P3)eMKQ_CȬe -*H܄YP0}4PfFJhmj_ڵBVEvnEIsK{9/s9BN˛Neȋslm}uWp!j%Jv#B}V"9{ZW;;65:8$]KLa">LpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCA IDATxw|8M6=HBJENh*\#W~TPA^T4Ez HO4i$d̜u[ <ߏ?>sC(B{BY! +ByV2 !eXB0"a`E!/B^! +ByV2 !eXB0"a`E!/B^! +ByV2 !eXB0"a`E!/B^! +ByV2 !eXB0"a`E!/B^! +ByV2 !eXB˄<(Fs$P*M`6'|R= K9=KZ#QBB"n!*dj&|2jz2'$Ƕ\6BoG(5< 4S 8J9ʱraltA>b{QRM(q,q]R0XnEهs'(N8Jʵ&;fr~>Cg#*X0\vիՆGo+)K8Bs_b>u.!T'J`f li0sYκ&_U_K?BH_ T1fAuwʵWZ3˅ɥc;Yn͢\k+.S #j>?\]I9ߚ8ʱ8cz'BQw-- ?B^%VQPjzpW$Ӥ^\fR͉+uUJFzмӤNE G@g\{nPK y3fĉk׮5׳׆ѣGϛ7=^b-[VͶ+fbF2Q޴2i8!oto,Ҏc9J|-"cS{K3 *(>-7iҤ'NXteÆ }/Xr7|3~>/zuĪ1&nޫ`8E}dkOqzXK*J~`{&& wqjWm.\hUԩS/lvW:t6@UUՔ)SݻWEVr~EJ A7ʺ2az#gCWjM5ZlZӉ㸝;w:ȨSFUl^zu=X8"haqWobBzņ4R:pjL^jH`X\{5_IBB %%%M&RSgff:]_TTTEVX(9t&KzV)< >W2Ynszn\pMq! F3{1B0Ze"`}EFFFDD8Jaaaz:8]WEV?O"rp J\*2qJ |D jY$XX*̃5eNꫯB4ije2ꈈӧyc끕aH 7YrW~]F!]tQ pBk$@uU QܫoՊYfAS !dĉ6mbjy{o4nx˖- VϋS]Om<]1:H0CL\vr˥{,Yӭ8rǏρ-@ YXynQ (G6 6?ߢddd>|RڣG-[>ݻwgee%%%S +"|`8.@&1F&8U6 |qnU܃W`T$._"!߫WbCC=SR Jq\&q=k^\mh(:g|W r?)FUA85X lÙϜAZJVh3KnQT8\vـVsJ|4%@J! >qjUTTh 66611Q,v>zwΝ۷ot:aE'wkX,wd2YLL;.''ŋeeeP(ڴiO+XQQw: + }U>JiVQUvQjEʑ}ZDFJ5PG!QJ{H/fRJ㏝;wܹ333Ӷz߿w))) byyyrJ__nܸ1{l'O2e6ǝ={v۶m{ʲ}IPoر}u޽{.Y$<}zjj3  f9=={OvF^o2.]ԶmC aׯߴiSܮ]LmB|MDŽS^IW{UTTYqe1F,nܸ{C);w'|f3eW^ݳgPKfV[=3SD_l>-m:]UW8J)F~E÷LKw˵z%T.+3 ]\h*כ͜P.z #RRR%QF}7 aq˲k֬ O~isM4?Z꣏>}Սkudvu*j/^B?S???kKKK?lΞ:uӧ+L&l2e _дi5k$%%w/ 7xԩSh߾}tt͛7mW,{Ç;̙32l̙:-{/ܼy[ o# nܩ@NҙݭLu>C@_IuYn,p&J)Y#kMk'.]iӦ@`q ÈD^{m۶m?i$Bǜ9spf6<)UUUZ_ׯ݃3̟?ҥK J׬YbŊk;wڵkFٳg9^3gΥKYhѕ+W:u$E"P(˗/?x&LXdɲefϞmW+r[o~Ϟ=zq=سg{WcڵkPJJ]iٳK.Ol2Z<@0nܸ3grviӦu#|m/_nR$m۶5~Ϟ=oܸaw='NJ0ox͛7+v1k֬Y^U D"HD8d29@FFƱcFi~׮]%>}ڵ˶￟6m]C\ڴiCyg@+r-Ҥ]tʔwXDI p{ЊQJ@B?˲UNIUiaO\:'ڗE.j~ w~9/F5ҷoD~y?H4m4~9;;ƺNXӦM7bX9zK/uVE:wu,y͞=_~kBCCGl#G\rɒ%5^7|ӱ 믿6㏎clr̘1p^Mv̙2Z}ݽ{&'';o[C)u&Yr])S^u-}}}-[r_|:XWUl)ҐU;ߤ C)ӭBe3!ha2QpòPU !M\Dl̇(^Y P*б@ēJmF̙3:ul6ە%PAZZO?d[L"ӧ /z}.]8I7nױ+2 㘧n6 W^+DT+1D/d PTMyUF#K  U`-'"hkr T*3Y'#EnWkdrU_攵(g)))/_Ǐ;-?~;PTTPf*:}h >}ɓ'mo/Ү09?`TT7mdϟ6l޼ٮY.'s^:v%@P~o{ Xj222~ܬrǼȺ-P0uDH(OT_*䊣`b5Q%4z|/;O7Z؛ %ȖъVY2JWyS+˃}ܿ6qNg c !dƌ_~eQQQQQ[M&'|²,!wqZk-,h4sIII{]ySΙ3'**J ٳgvN&kq)))[l=8nk׮%ܾ}رcv3Ɠ%A<,K6lɒ%Owyҹs砠 NwΝ>lrr]|QX+И#ɚʄB"%R5QO (,KFsl̘KqaoveЗ_l0EhE 3kKϟ]e#$0!i FBBڴio i8i&L[v|DLL#e% 'NT*JJ<0Z.//wL?xw?wvǏ/../쪀BQ'))ivi导JHHhT*uӾ|}[&:#[0R!m#$6xf 7[:R @)>RJ!J#0FA4xWzćN_*8GAR]6  A>:Ƽ&ߍ ~Wy :iќuLyC IKK+..ܺu fyڵ|0޽{u޽65lΝkjxC?]&Xbذaڵk"ZCmеk?o-S ~')˲%%%%%%N ^nc#{յ b<:ژ/֐J)՛Xda)K9 _@V֛7^\mPMmܭdYzR eRa!6m2i먾#߭a0k: G>6z}θ^zm޼o+XsJu{ܹ5޽6ϭ[nŎF1y䯿[0dȐVZ}xFq˖->>>K8ӣbюnm۶1csD pL9ba9K f B+`SJ((eHu,5l+WKv&p,,2:ٻIĸH E@lnFѶժU+~͛jU.#`fvtN͵¯X^z%>յ<qg̘adc0ٰ]NXCӸ`J)ܔr)GN>K(PJ#Gx"{'Nƽ{.BoO:-J!|9PV@R @T*󓊪t&'Ri>VkGF1 9r_0B7n>|߇5a„M6s]vE6l;k5mZ^v*111**:Xreǎ/mvQ|Ӕ)S܌Zu1113f̰es?R;SH}gv+z-??G˥#b.aITA/>yP pV멫tf=( FByJ#\nMQȮ {.Ms0?VY>1<7|O> u:v[.Z[nsSLrP bGY++=ڽ{ŋWVM);wo;8롴mvԩվo2N8{%%%gƍy *bҤIOehtpÆ /bRRԩS딺x3B OҘL,g-3BCT,IBњ ٪ys*J,g8I$:%>Mt++Uj`\" X!B.\߶mȑ#9bX.\pcǎZ6??ٳ.]q;;8p```R䛭ƌc5F?aΝ;DzlVV|0o޼}o>""2??ׯ_>l~wg~zBȢEݻw!QPt.\O],g)99W^bŊ3g?a҂u޽{nF-x& !8~2kBCB,7e̫(5s֧KʧW2\7^5 nl0Z*U*FkP8J PGO-˷o߾jժ[!~7۷o~ٲe ׿'WQxx޽{-[d~,.~8ݾW^9M=iӦQF믏v˗'%%gCڵ{x|W 6L(N0qD.OTTT̘1#==ݻC>n` TmS&o&d\֨laD_D'ސQN:UPPT*m&N8rȇJMMU*=NPPЂ ƏdɒgT*BryDDDbbԩS )44O6//oĉv4n`0zl4u:"-? m`r\\v'Nh;c||[b:]0..qK7!$111V)֭>}qqq>>>Zd2FѨj]]\x_~4hyڞbCŚ ˙9rc9re8JYʱJ991|j&Oj+++JeEE߿hE^ϲD"yҰ`MƬr>0GK2ݻwmؑ틍5OEgff~t [dKPauy>R~pksFj_nT*[8p`ȑv0yEI$f+VpzĈ۷owu%Ϟ:]b0BbH$pYbuU8cz;!DP( Kyvj܌ܹsvҜբEÇoٲeڴiv3qwk`bqc8;"x8D"yN"5eƎkU۷otR_N:kcǎuE;hV焌@,Q> w]W.|׈V >. Ì7ц7|>|vEްaܼCBB/^xz3^Xk&QF, xzG-zh4ǡe2Y:I$y95:l}CF0,6 ZSlp,f]X{-y±@[:j*vg]֭[XRT3fp@055u5k',muTJjMP7.n__z葐,4MIIIFF/rAp,HZ piѳgÇ'%%]ZFZ=sssvի:gfxdf9jaY qG9(;u1̺֞[n|YիWO>qՄ7>ݢj`D,8qC޺ Xe"]e(UYXNw2ks q4'_?ywW^QR#G911ȑ#u-VEi!dFVJBQ' IH;5x6"H/X 88ƬD{MKK{'Jyš5k?wa?\>jԨӧOwܹiU@3 NghTbFv޽{ YB6lؿ!Ct18n0gϞݿ\&wJ"$''Kzj޼y 0 ++ڵkyyy*d2Ƿn:** =V/]o4KKKr_ttt|||6mw#0"a+ByV2 !eXB0"a`E!/B^! +ByV2 !eXB0"a`E!/B^! +ByV2 !eXB0"a`E!/B^! +ByV2 !eXB0"a`E!/B^! +ByV2 !e*!NIENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-fastapi.png000066400000000000000000000477121475306445600252250ustar00rootroot00000000000000PNG  IHDRq%'iTXtXML:com.adobe.xmp iCCPsRGB IEC61966-2.1(u+Q?&\(Ҹ1Q&LuCwK˭r(qʵRDJ]7j=<=y:9`p ɀ{~a]tU m, R>YϪUָܿ7 *4w۔TtELث,=V%X,N/VR*,/ǣJ>KܬnN L4g_VTɟ!+tVI"WԼTKL`o_ĐTg|끺m(ni .3! U<ڀۅMhԢzG'z M z K9yȺ|5Cw-.g]. pHYs IDATxyeuAp7\+oiVFi"03HB hu%0(d0_J3LRse.&0ܟ3.(0u} $f80s_w柷`;b116Jo/ Z8$t/^N[oLDDDDDKZ0k`/`$0 ګ8}LVnFͿ f-_ƅ_w(0$H`LͿ$;ΆY;!~-ɥq'Q/u0m'#8dpvRv-cmq_ +8 ;W1.;8"""""R^Kͫb=㎓{f6qN$"""""OͿģ5ٗl"81y9 ;65_doTUMeq ݇#IʹN""""EM6DHH p10\|۔րk[-Kl)Xeߠb󗩮X?"?/m3~Sq');9OgcM}1DD>C騘F"k~Su~p* ``;Ƅey Åw0ߍ1W4~ T6%BRZIa?sW`6"aS/ 8wܕ)RlEL,\`# s0΍ 6sF,*0v I Y辌H5[$䑂_r'`H$p?S$zL̷hnn-qn$YŪNHi˼8jjΝɤIˣ*r-0 (`0c, zw2yX䐚ɍ wq=͍SΤaE܉DDK2Yw%t#0¹=QaG0nhD**k*mJe{-0Cf aK@PGդS"7ܡ[Ԩ-Mm&ʸ=N$k1?5 ;HY1svc/ ϬӓwI5G$96o5XMr g/;jş_JKo#n' L:sI&øsU EKw~IRY\zT V1@Rvٹ$ -fSԝjܡD %"ݸ?G4pCn%9$4""% @y,y.n &彮qVgm*1Wxtj>󚶎;HOS 6(%8QqGݒ쒃; A])^@,z=b_zsOp4]em;IwX97%g̴Q>K_xM#1K̙Ӈ0IQTU"""ehAӑ9ao4OKqۇAKOHxgjw2WtjFADDD.a| )fI7nw Q/gnr 2wy=xy/rgq9;wO_/ݸ;8(1SHfBDD$/ߌ 4/ݱ {׃)_g~OQd!DDDr*ݴ83xR-:P UE̙Ӈ>wsI7vVHi2Â3qR;`t~s+>i[m_b%m a6z̀m~\Mg)F˧K&/HKKmA`W"N "elA8N7l&N_]&… <;{{m8vHt?s8my[OEY`:տ8 ?cξ-4e5Ӛ!"R҂}scUZ1ƌv}{kN'G <X~ fgLO=ҍq61A,KIDDDX Řy*c_z.iwR[?چpٽ0Oփs_gAjr5~馃w d a'%7;HdKcL05'8PsM;k c ,ku9C5 zE"ەʋ1sq̸@.vԋl0+GE6YW2\O+uҩ8ID3?u*{HMGx#v2j~qw HzcH2|X9YL{7Y:'VbJҍ?;䂫e\;FipL5ox C@LfVq&z7-)Kt՟tJ&{w\׫TtO[X.Vu=*TODD$2ى8v & k6?&D$47uo[SK}ag1rG{|6<⹧3~kkQsiiiz+"" d `Hnҍ?vZnOէIv<^gr~jt OlJ1r2`}浾o>{7d]w I=—eIƜul"s{#lq[=NJNXOdMC$9ה~y`˾bl\uqC~ )l &Euچ#DZ[KrtI&3; hWQ_4qX1r錽F-=22#Ikrp%/~!b: lE[H!GNJ2{v?D"ɡ9sqȥlk=ԲkahlF'LDDd9ΌXavz&h x;b}5,`jZ"E~YU[ #5`33z4ڬsC̚phM%g;p0@6sVca.Xm+WߘGţ55sa8 al 9k̽E8[u/bLA&RZ3ъ.r?U\M:u1pV!ҍS;p)4uSKs8醇KM~jtr5{v?z<5h;b9ڪw;n+y8 ƗA#\(s#1؎, :߁s0CHxB^~9*? 8ñ'YIx7VH2óNnѾwa~fMMt6o$ؕ^l$5_f"!qȥ}P\׼lXseώ1.3gQ=Hzg\?4s?hs|p(ơ?tnz &HOrr~p*8o`8Ά&47=80R5/ŝ}|'z`F&ֿQ3%ҩoF8P}Hu zڮjl455ٗliQޯ;~ Lk8e/r 2ԣ ɗ f #8Whim1.Y\mc`iVU\Δ)N杙cBx&fG`g \%`?vSQ5_;it>P#۽ A̩u%!Myϴ5sa5jt[A5G'SAqȥ3Nv;_YxI.14rcH[0A:g:Yܱ6`op˾FiB=d@KI4 E 8w"ZBsΟw)tdFM*w0a#کw85]WJIs{*PS-n+/K_Έ;F.mһ7vUl~_aaU+ ej#\/O؈|Ϋ]N^<MTd1:5eH}#87#&chъ_mԇg[=ԑfْ>t[ SA4HGop4w\:uQʪcs¯gqsVogHC̟Y\5ͫ%+;NK!9fQ'(ܫ ᆍ%+J|'+;ıZ"ݤ܄vZr)u#umf\!6ϥK ߦ ;C[ܕa" 9= #p\еҨLYHv:Hjy_b濜\д5?qȥok&b{sUvMdj9:W ŝ@Jslҩsҳ>O'(ѹN 9Qg;2Wc8<ԑBuY{􉬿:"ݧ濜 ǂ+h~4jtl?lK2}bw0 fw )eV47wjIf`xaRv1NTqgѣ_y@ÑtH!r΀w Kީ/'XC;pݒ-ej+GVZ3pv.͍⎱3PwO:hh!$ֶFa;|')H^3 KzBN r 7⎑K> \d]}Y悧++zFͿ+əN&:*̟yap+(8}%lڈUH:~;_+DO)v0y{=gs7{uWdΊ"]^;Ҹo!DU7JpxΝ;3~Rc#p]K{nbH5:J:eu̙ӇsNWJީ/VwϞA߲^'~=|-RJwd2-Jh/mfQgڥ>>K),9f%* ypAtqȕͫm3?uUvF0 cHz8S52C?nsֻ ,MȐ9cvZt$V뾉 6l Ƃ-p6 ؖN:$3wU2a[^L~?V}yM[35/00_o95/f oЯWxj׿|)N$P\w)IݝxD:fPl7Xea7{oO;3`97s8ƺɀКrT}p3fmԝj̛WIEnX+>φߋ>ӣ1A5QP ~tqJDxH E؝K>eo)$}jˁ#}LZh* ~>9Kχ9mu.)$T}?Exo g =HGǺoȘZٮo7'/_ʀ-""A>3<ԑ9CłG>5+Com =o71WOU`zjO2Ղ] Dro܁wqO2!/y>Qo/N%jbn:ߖHfoD6720ivoSoȮu|l;w:dpmMqOR;./yDwjR/Y>M͔_t檽ԑkIsh R)k]T8~4ꀠWk2䁻?p5jҩ/Aͣߤp)ϷS#/}\Wgc'<$#pnUg%φ *6+w)/z%qt0oQWR>mһ7cwYN쿗/S߿aChN.2 EbP׷V!vaEA$wD}o #3wi4fLKq.Dt`Xɾt$X-:豞FѲҶ}|;}7'Zy| uWdoDm Ϋn^(zUاp#8i8Ʊ,e5{]a%-nlN?dy[&Nl\S9κ `^U{6;IU IDATi2Ky8Ⱥ!sWkfpK/QD6$aњ_+~3S^$zd C*ɕ6rl濔eJ[ۤGO3VbMIȫ+߱9EJY.v+Uo&z _r/ qXazq쇨/\i}rP}|iIs%ոY8\?^)Knxk R_c*z!V DJf3a#^lk#q|g@BL4M8i(ELIlw_j[7zȰðv}[.ko;NtΕkHnjEvynVbP &ݹ.!ιÒwi8uNH>p>913?|(iowwޣf͌ 3۞~xX=" ߉fY0LSwE/>OvٕXe 7xU,n nC9Uv.jڄU pC¡[;+Z\3&YLVojG(gzN;^Dg?đ߻E ">r[EcVyh&eW2g<5R8`HU7 ~J ^!Ua G:Wf])@vb~xw{H΁R濤YG6yU=)Yk^|6-ٷ=k;H\;ܭf"%ku7Z j_RfeO\xd1 e̘^B!g9mr!E<+J<➵n#!}Ӌwֶs7fO2j~ x]&%/s՝ҩu'Xp I3M{O Om9z)IzgEq'Y5̹=Yگ ^xe=2\U!Y@.fG"oҩ @z AEY2{K\Ӊk4\3È_31I濔oIF'on>e`VĴ"|{$aF n'Zv"'c!xMSo {gO3e+9$cq pDIL[+u0W6qjwS3%/y|?9MB$`TڸtRRCtM,͌=Noٶl&fYL͙Ӈ%`G]޼ߓ{'bspc6 w0-M+IxKhuܟ?TKKj!Q3)Ţe'G~ޒuF2",h}B*BuDC)3FzbƲûno/g?,3gN*ۿ{^8ԢhS3zM4!8tY2R-a.s_ù+PX[ K2 57bزݮQ`uS;*$G{1kM6qmK_׾\‹3j?buْ{M{В?־sW:+?5SC # a/Nt(I(G縞I{H;`'/Bt_qdH)N/e\l{AEmΆ_.e|ɹ3ϫ`DTI|8G,Y`!r?w_UOz"zϽs7_{EFqOƝ@Jdy855fLچ 8}a}Swn:N[J;%z [X4W%!.j.6^O3 ؇چݨm)5[Ԏ/gm]wyfM}2+׎H7݌>q)+5.AcqGY?1ҍ$J{FcAq,K\F{ ؗYx#fS8K a g3PNs<w{[$Wˁe80pe2f^e%1)jK[jnACrW_uSfѪ(_'nXw )rͩC!-/,^#t0// ckMI7)Ţ8`J':߹A$S.J;#XKM|H$35v wOr 5d:wg=뉀{ E;B᪭8YD_ܱ0IN08M)*N1K)5=BuuךӼ)_B;'}ݑ[ouoW_QRIdEn?&VD#]@sj#0ik eI)peow )=/ncϏ>(pO C~C; ;!Ŭ'~wb:o5yxu̖l k#5$leɛXo,ml Sҹ|擞u8v _&lRBUa'WD4w)-jˁ+Vxӏ촻'|NxM"I.;pp͘03}ðqp ~xOhTp:f[Ŕ =IǔA>q(9X̚]D|R_j&N: {헨⹧ wߚ]Qx8qsH% Ŗ2k.v2?77[S#x2c3K29bnpxs8;??K4 `׸c];?:GDQ_>8}#5KX]7׽{K H u=㘲!849EͿxEN=e~k/?^QݳMg!XMʎױ5q5g?Im} l2W7'Td_1q(ac=;8Dd/ O 1q2κ7\YJg?¸HJꭞ<*Wu %1p'b<-ͼK>U[,rgBDJ⮊;><_o/\̼'0G0^#Rfci?"ʞbP]AݴKY6s{<#nE!avJJ_86"R:l1&}FB3|$8\pR!D4\S=ۯk^|62w-zEՉ!*1_O곖F#a54q{}gi,p^9;9e$6zG/7ox>wtSwv;m5bm~C[.koG4q\Ȕ)!Eʅ>}U{#fxΛ+F2cz]=DBD_Iu%!y{3G$ܧwzǍWlXAs)#q7T 1SU~ W|xOq\i7adep}*HƷr%C| Ye':;Ls7{?CSߟ_^Z)-#7f"fN OhB avb%D06D=pfx ?gWxS*2W~+rYH)SVa/1v#زou] We&s[]W:蕘w )} Vz"b\8Z=T`;[{QQFUq!^C}CG?)u g 様Ia~jH9R_]ً挽F:gxY_lk)9󗲰6rsrH1 ?xS1KuWNfݎ 󢜕JOd'z%"eH9lxgm;u%{-eny5rM6ԬRT:g~Gd臠Z~HH&8$o%䜏?)Sj]mU3Ev՗e.xG(f?e!¢7l!3kOw*zQ8ҳGh8ESF2~~jHQ/``5h;l6܇~Ye!tQ15]<$bcD_^o-#c{HR8,s؜2[ř O"Rv ?1w٣}e~=aVW $j3F,?;$z):F&r aǼƮ?{uLV^%姭z Ro_:-ioy| |dbuyMg18P`fm)l7O Շ90~Km-#q\OuÊ聊kTmGy%"eDͿtJ&T|E)T6BJPh7-u8v\LV?0s& Chj5gqǐh#I3"U~~gH&u\47 lQegcm2Xu3w@0e ^s:+\tS-)z%Z>=MቸSH:m1.xqwS_LVxmcUIz[]X;I[DB@#10p:Thjjtp]n*$0Nt5eTu|O07!UH&o^wmE~~xЊsS6*U} %=ƥl?3 Zf_hگb \d}%_z20`z=t쇍oxtFE/f0mkHS/9cΜj>wFMfY$j@bzeM*ҍ܍YLlg8l!{~31Á33m'CXIܚN$ݸۋqe蛃_;.wяN2r_`q,}a}u-,UM7gÀ-1v²pXY6d 1Gc8f{ɨnP/6yZǒlqS8 jω;,KB?p_:uǖN<n1l%`| 8)?4ꖜ9Bc[`0&P p]UGsP[`Kn%ƻ82Z׿MqT`6  9_Q3eq.Gx_E"8ܽ7q jnlk/YHBꔞ]AR@baߢ9YG]rZ"RKT'W37M*n;c.5;3Nfqa>,?no)>:Cu* };TU}ۘ9ukD`F_'ۗ3ќǑpZ"Rt@tߤr۾qGMMC11x&6fyD>i2pwSۻ"s)NQ4a-fUa*Qp+MVz-dkl6d?t9ġ֙1]B?l{G~^}ؒљqf#kC'[:Ϛ+i9:WfЅIj; Ϲ>kYz*^doQ^G\>6mM߮FH@I:|3' (?GodR>Z?N?bxΤ$ێ2vS<SkwGH'Z G?MC~p҄KdijF``i96}_Jv4 IDATǼ %OxkQ఺ܓYd(cpvmǘΜ}.-URi5q)Gpho ]j< QJL͌LxgQ _tJ2{:o-K.Υxtqk;1:C7$ٛw4PgiIh&Np֭s?L)I~jfC#ܟdmni}^Rޞ$?ry*%;S39)3\}VRu7WܜS%zQJ~)YdQRrwj3e5 +R$Lr >{=~TN&)wZѺj#-I9Ir|ɷR_wKI~-ԧJ,.Pf-tnLڶRwdк\mY-g(oH\'ȉ~:ӿ(?]I~jOtv~ʣY\n W,XdEWgW5@$k)үw;ܲ)eeJ~6>5&Y@GHIRFz 3fjof4vY糧鞶76033U_N,K,8c71PI^dJݛdw; {]7);%I2K,ԓí/]|֑:dwjgWJv'y,`>]٧NЁW$ӓ4)'t?OOєHuglW[/O8t7v`iiW(NۙI.[ڻfZK>eU,^mGjخ$Ns5i; 0h}ҔK$gܕL3Yvgv3Yޓw%y]Rfsv mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-getscreenme.png000066400000000000000000000225321475306445600260700ustar00rootroot00000000000000PNG  IHDRMw~iCCPSMPTE RP 431-2-2007 DCI (P3)eMKQ_CȬe -*H܄YP0}4PfFJhmj_ڵBVEvnEIsK{9/s9BN˛Neȋslm}uWp!j%Jv#B}V"9{ZW;;65:8$]KLa">LpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCA IDATxyPw7Ϸ`SQEL\&yܬɳSgROfk٪lmM2ٔY5"("FQ@>Mrx W 4MOo&R@!NBE VR+B !TB*`E!a"0XBHe!2 VR+B !TB*`E!a"0XBHe!2 VR+B !TB*`E!a"0XBHe!2 VR+B !TB*`E!a"0XBHe!2 VR+BpWEn?Aw '1`/mEB)p'Q6P_m;hI$J!Ĵ@lyBz"@4`"oyh]wO'Ns!iZJlTVJfhutF2  ]`vb;u蔶SIX :Փ8=DÎZ$b"tϛFUB[?=vQhNx4mx@ÁNCtĒ9ldjԓ~Kn ݃6U d fF g2z,"to._pjTǃ!Pe+4&Ռн-o;)@MXznIU)*KOB-g)ӍOGRUkHo.UѺQ~hwO!4iQ!#mUHEP`Н> 0+S!t C޽sחXW{]k]\"xlB(Dy"7&an<{<Ajz`09 5< `MMMKIIEha2`KDD RA/)ҏDEpx?x[RzC5448|j:l6'''/[lÆ M) Fn^&2ep  A_şmR"n??v1O@OOOooocc?.Yeo25|ڞJ)˲7oVq[0X!E9S,6/fkZDqSf+**a RJ~+W|͗_~T`DQx뭷DQN3p .zI3.).RJ;::>*˲:㸛[ jjjD!ܿN`[܌x[r[QQKb2㓒L&u8vt^;BYvUT<$T!B4 }JnAM6 UTT*斔,X 55566VZ m6ŋϜ9sE۝㏇WPPq0XqoN@I[nvٳ'6)qVz'̙j?jK,|͝5kURmFqz`p2!(҆ZvB`0 t:f Ev,k0F n0_<~^q+@\\ܤwr3HaϹC&S\p[*0"N57/}TX>֦Xcǎ3fV5%%RJeP(IJlBBBzzz~~~qq+noiiikk;v|'PkX6ol4KzzzN>r!a̙ .\h͒Rtܹ/ Ҳ.\+9rDZׯ_>//R߶0 ggg+@MM\.qIIIs]paLLNtgϞ9zJFTz@h:TTTsυn?QUU UQv̙6l?~|޽6y祗C9wgϞ3,X@ql ~GFq\aa /%y!ka_~SvҥKRZ^^G9P( ²,q:n}_Vg)X6x}s\6(v!MN/u,+@   ⍞KN$pm;YH33[j`l 6)nb19䞞{ g׮]_u䏤`0x7Yf !DE#"B7f o>kCTWW>%%%ҋl?ɓeJP^^ /H#oomm}[[[/}rvu >\SS+,ZHN ߯>B_WVV-((_ x3g(/b hiiy뭷^}+VpG@ݮ!.ʓ/`Fh5b(G9i%=Dhh E4=. ?){Jujkk##iٲe sK'_q`0 qnwFò숙NJ +K zi?,ʫ\v;s EF{zz~ᇁqݯڕ+Wf3\?P{oppP?a޽T6wuu}'Gr`/&9ddJD Ab [0CS xC m0 zMkd &Lu /2XU%BEEٳgÙBINN.,,* ~r׿NHHO~ =*'0ׯ)pYreNNqRd+W֡qܬY9x<===z(99yW ,k6ya30c ڤJgmmmvz*]QiH1cFaaajjmjjw\pl֭TrbZZhll_TN:aÆm>:hX)x4tZAxVx-F!!}njks^z7`td z pKciSLM $ ֑iXX=Y;^Wp|@/܈J)*$%%efff;rH85b :QU&/////Oվ}¯:!!aݺu .xuwwKRdtuu)z/Ih;-_B)ucMzRnWt8yf]8uJԥcP<RՕF, kXsgs11RA@ˍ\8kaaNSt|&fBܹsm,ԲCAwpC;:4DCR\\e˖Çˋor;l٢j]F--SE1Ͳ;|N! Z+O`JOn]Rl?o|,ﵜ~TuziULNs2W&BWDabbΝ;+++_}JKt:ŋ5y,;14#o߾j>^˗sUf,+-Gf$}Tty|b.v֪!ԵT~upkӔ...g]|yQ̜9SՍدK-egg?#//_J1 ^`0(zgϪx0fΜ9%Pܹs,$&&ʋ6}uP|h80- 5AaQeZU͋Xsj_Wt-Yq֭[Liл[VV34MNN|oRDvFl+Sy^QQll9sJJJm"?^UmVj:,( CțwPu90e`,f*.0Fm~]W5BĞ<j3hVG,q$rcۄX9ÅBBBB|||MMDj:{lyyKz{{^oGGGuu_~w^TsΕztZZZҤ*N{ر{gϖvJ̙3 kN󫯾4fYJOhuuu__˲K.F.eff:tH^t:K.FgQJ+++ߗH)t)A]Vb4gr$''[8r7 dggK} !O}kiiv/JKKKOO~400*-[ȗ{nE)xQ -}b] x%4$-aջEcL =v!Z;0@z^)A]l{)Zn(ZM:V@Q618=tMo }!{iMi C dM,qooW_}÷R_沲qҸM6544455[Wx㍔L%oh322KrrrSOJHHp8k׮}V+v풦zٷoߺu֬Y:88xС˗/)==]̟~iޜRz̙_3W^z:'OLKK{G5Ul6444 C_{5՚r:;;}zwyg֬Y`Xv?1|E_9sfJJlmm ݻw'%%$:<7FS !jI b" ǾHEn%Z!nyDl 2YL`i(yn=H1?~6>/6\ +uc111[n5 lZymܸnˋ]Ҟ[A8sLaaa~ɒ%ϟ(RVVVn޼6\4 cYPvy檪:y\Q^^y`uuu===99986lسg ]]](//9jժxȑ#>W\OԔu]BD AanIqyiа(B`^]tzrvTpURUbsO : gE3hac ÓO>QZZz+"qbŊBBȃ>H)Fi&ڰa֭[塰iӦSN]x12L-[?~a,XĎ8*LO`v:r63I4(.]5bX,Fb^(\9ɔ?Q}ҥnASRRsss'Jjoo萆u&$$$%%%%%eee͚5KrҴ26fIRRRrrr677WVV7C].իW'*L:NBoooGG@OOOww7 E:-@ii|l~K({Q\Nm&{[t@".vIDATi$޸r k9H5+$vxsNtrsRoBZzN(o <OⱸP±x1 <ϜGe#i=p9˹YEAȟ$0BS@h\+B,G^786[i )ēI%DE!4B !TB*`E!a"0XBHe!2 VR+B !TB*`E!a"0XBHe!2 VR+B !TB*`E!a"0XBHe!2 VR+B !TB*`E!a"0XBHe!2 VR+B_‘IENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-hummingbot.png000066400000000000000000000237771475306445600257540ustar00rootroot00000000000000PNG  IHDRMw~iCCPSMPTE RP 431-2-2007 DCI (P3)eMKQ_CȬe -*H܄YP0}4PfFJhmj_ڵBVEvnEIsK{9/s9BN˛Neȋslm}uWp!j%Jv#B}V"9{ZW;;65:8$]KLa">LpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCA IDATxy@T8Yaf@dQ@QD@PKRɵRs)wݴB_7-ͮyKn&}5CWX\P\R@]agf=N03 0 fy9g<{Ƙ`?tW= $V3H`gX Ab; v +$V3H`gX Ab; v +$V3H`gX Ab; v +$V3H`gX;tH~Fڵ?dƸct| S̈?+srt%ZEnzw[|Y7W={#tHc|t`j5ӆJ ݨTW-̼1Y"q"o.eu#om%N>0Y`B0lͻT$Y;:: C}ܺh V46RƸv۶?|8SX <ܴr0kO0kHH~ƜT5Y :\"/X@^uu nڢ(2۵jL"u,ðgsqW_=_ymo Ǎn3F:~׮ޱ9 p{{qelV-Vt Xc=|%..|ycs{3KQE!a#C03Abmv^dK||vÛ7]S4,x$V+*.ݼ=M⋋oH(ŁY&<¹2c^|X)0,/ , O7b܊v AAA=7a10E!FE+Mit իWnj#:TTT466?"*G~,Sbۃ;0?ZSqIF;v: D"9yZVجq2{ؑ=MffAbCddd}}}WG2h"[.O4o GZ\\'޿_m(Xes }qfXX@W5oNkmj{4=jԨ0 Fx|>+ZFTR1(J 0c] |yyyd_%''ĬZjN3BZz=5/xΜݹn0) )+?=Y'Nu&Y!0(5XY_h}SO=Eڎ`b)wuDfpXhbW۷YO1[RRo~8Qz}WM>>>3f̰ Rǎ(aI&]xѾAT <<\*JWWQFuuP-izӦM]OsYYYǎ xW:&¥Kǘ-o5AJ1[V"M1j?`r劃Ô)S&MAلk V;vصk0۶mX:֣X1}Fŝ f͚>}24M3.#H/_׿!$T*ÙKg{ܾҙZ!4x˗[/FZeSq|3Ǣ B_ ݢy<מXR?͛A">O}1 sڵXB:cƌQFxc&0!55޽{Jc,]\\ ҿ>chXիWpp㽽mb㔔˗/566|OOÇGEE9;;DTOm***ݻg彂mٮWz,[W#NrwJבJQQQJRR5YVk ֍Ltcǎ(W^qqq*^^^4M#ҧ;PXXݻw1{|>gƍ&$YȠi+on\,!!A*t___worS#FyyŋMvӧMv,misc㔛ikּ~m!X,(T'M!Կ5kd2VKuo39AixmP*6l 'r^:uGMMM||'|BZ iii_|Ş={coСg6 :Rd+WX*j7msΰ>l޽z~ BRM8q/NOOgYŋ^^^\=IIIׯ_W*s]~J?VX1ްaâErrr-[VYYY^^~Ց#Gww͞=rʃOǧ~=wEQ.\_BίjXXZNJJ:t^~WaaaNq\\ܫ@QM!!!- Jj͛Ǐ/,,V{*17nr|ʕ3fpsskllߵkWAA˲wYbʼn' dRF>r`@wʕ&Lpssjׯ_ߵkݻwYrʕ+;6d;֭[yyy@k u9u]NXj&= 9sޮnZeY63˯N>ןy=</((СCUVV5ڶMNZzٲec`Yeْ &&9sNc/_Nvmۚovk=0,{%/-0p szlJ~OYֿ0@ Xtg%K/D~Oy c{%\\\^z%oMF >}gzʍ[>SCˉ_-W'!KܹsȑJQƸa ,RㅇS*++WmdB. N>do7f2y4$I ~!HDdfْ2,885٨|.7Nig`rLaÆ6>8..cbbH1bJRڵkI%߷ҽ09oox}劥J$ s=Mxzm۶k{5Md=zf6˲u,˺nmH$>>>LJA.t1pކ6C4ݼءo]`` s4 !4`77655Q5l0K-Dۑ^&o,WW׼ Z۷T*e0UJD9$ƃ c,ddn'F!Liӧ !DFk8jcZK#=?,<5z7ڙRçN5x` h999z[*\[.!BkkzډsAڀ"6W__iCvXy:PUUUnn4ejjj~BG޽&&$$-PWWe =CeܹRaYv֭?-t#}'O:"׏GZiAgggĐ^x D(>>^P3$Vx 3f EQ ./Ih?~=ϠAH;qϞ='NhӋ1lia w+_|cxbNbxɒ%4M3 C>V? }իW 6X &**cmf7a_~[7iū6$y{eRT}5{c\ZZdR00LVVV``T&sE"D"sΝ}vJUQQnݺu988(~-&&&&&a9s;w&'''-- !Էow´4GB\̙3&FFFZC,]ҥKeիWgff>wppPΝ۽{77ʺ;v1b..."͛111/_fYe˖=&%K޺u`0,\pʕ/bppT*%֭[:u˲daVKU|={`;@p  GGGqcco5<<@b[78%m ˲EEEp:.333,,+FSUU=hPP(Q,!??^xcĉ2L(ꆆr>7n\UUٳgoܸ! ?Ssν[>QT䑸$gBa|||PPPG3qĭ[; Ôm޼?H$"HժT^?h doRUUuVT*HB!BeYa!PaÆ7EQ|3-ힷw缚x/~ꩧ,-tDKdIPi,rx鸸z"""}1cd2Zj*nj#'n:^h<!3ϐF&!-Zhю\!!!@ BK.U(}1' &4B7niWREQ4M73;CB~|ƍ!KrppX~)SɰVWW)SL ۷xb+5Pn4ݶYV*IDATimU\m 0 c+ۆ*0*&!1rv1mNPX*--> Ai KoA e{Io;5/xzwPjЬϽBagk4 +Fy/s 8ɥkwu8O ڊǣ|󵅋 m˲EEEVVVZJjR $''gee1dHHÀe˖ QOG5[n3LM&IRK(t~~_=B;wÇ4H$" YYY?Ӗ-[n߾Ͳl޽9|`T@8ɤY1| ӺE'u:]aaСC--xʲlCC唅 VtClL5`/\_ 6kAW@98?d;}#ԺIZJr#LKϒ5aGφdGFc1ԩS>^,^Ox555h!?? &X FUZf!Z,::JrL3hM~{ϙ3Y_N:g02Z,q}}=YWPS$m +!Eťii,T*0Cj-0@b' IuV h4I&`eh;H0#G(]72[jOi9EZ8 a{:|iι2M[9:a$Vohx1eD^]O>rk$X&--AI9F9|XҥBi3 zyY̹nܾ[eۄ Oxz*ExED%^:-Y`az;T'On `;?q٬M3B;㹺:GEER0 }|CE &Orss^ Tz ²,BG# vH̛pڴR$MXR|"ceYq.\ +8+8+8+8+8+8+8+8+8+8+8+8+8ץK&OP(Hqq bx``޽{e2YWW `uqJرcYYY0>jΝ麺L\ jiiٽ{={L&l6[TTʕ+]]]MÇڳgOj\ .,22$IXxzzF\}vPzzΝkٺp\KsD"W_IҌ$I2 @$I$__ʺ:UVvmh X}W뗛Kt^PVVv$JSO=`Hwa Vrt:7Cl6!lWUU/ fsVk`uA?X,Z1c|;{T\\ܡCD"QccKJJj\ :uL&D4M755$ޤ2Xtc*03& _XX(0 骲pM.bgX EH/0>%V֚|p\βl```SSSmm-`u5=zhiiD f96͍{a Ë滋D ׇ={.j***zY]]:z)Xqa 8./nR jkkCBB~W.j =X).q|d0w:`0hZFs@^^SSQkFӍT,R|BD~~L&q\.k.sl0JKKG}Y_eCX,V Â5n޽;;;jxեL& ֮]h4 p\o;R p !Ͱ,[U Ư1 J'NxjZVwU+X,!C,]'8p?v>cJ}B%s٭Ս&)11}ڴiFQTvE X]bFGGwmƌ48r&2!$q=$0ȟ 8oF ̛7OӍ9$I\saa!iӦG}4%%/hTBJvˮŽ F<B{ΝNMM0ͭ5@u֍=$ɪ [Q=y:tQVǎ9rd_N 8LJeٔӧOWVVvkrrrdd@ @aƲ`ZjUJJʆ 6ns`u5m۶-"""<B .jC57D&M[4{n=?~Y^^Y]i"|d0XWWWW\\|+UA8&s7~&$T{^# 5_r͍˧  c˳GxQQQB8ܼrMr\. UVӱ]hz?[Tc>}1 C-N buMGz1fX΋] q{qBHp7!:5%M0 +ꚴZVў8ع* \"i& ᑁbjՕqHRɳwI|C8b{F{$0 #p%I(솥\w5D">WSm6E_4m|0wkkH$‚p%) +i :X11e51NCzb/v H?::I)Ul@,2[Z 5i7}Vйj2Yd)wİĀ3(r]W/.e%''#=0 >NAs9U X]V@@@PPŌؿ| dC݆'^ ^ `uYm` |b4Y}y0VVZZ*7MJ}}~;G•J"Hw]VD:mY+mߞG<bYr~jL}ڣG2 s˳n ah…7'}v\MG BK'GvqHPtG^vKSGGmܸ־#-[5h4~… yړa3D&Gb`!0li_KTjeٺF]ЋW;mmz*--4W5X0 R8r m[P]JM;9٢6[|h}t ~eɒennnf͚4iP(#Nf޽|MC]ԛ7{Z%x&ƵnO$(@8֠~ d߿ɓ,ˎ=zĉ$ Sp XہyQI~kudޣ5ko_k_w;|_s:tTYVV~]v ɓ''\._\:{>3|ʴvQC[)360?ZN"hzB3`#}ENxt ſyAVghBΤNڱ,Z@ 9J{X=uR~i1UnBE XbA}u&;Uw/Zϙ}}[o˲6ퟗ ? 5,9JAI%Z#> %ec2s#C|xNgIa{u-nw>C@y~IϬi3,BH-{XDfgg>|!oM&r?[XY@v. V!ɩaj\vNVbPRۿ---y F r*WUZAeWWXmYoOJ&doupbq̹ENxuu!Aչ],h?|juPRNHɊz#RYM&L*pcvUY\-y Yٻ&<$#ڙ9q0S8cv×,2 qpgqcaX_Pc7&d9/M&2 65۾1"B٭2QβIt}dtbVZd^z~] 8*׭o ;v… 9΢E~稨kٳgݺuWիב#G/^ilGo ,ru=ϡxV!;{څ=eީ -Cy,w ^0fOf^[GCVv.5sLzz2Νĉ?~Ç 2`[kU֥tNU޶I_FC8LLUmkNٕ4v$ƒӁ2rˊ2X2teVrБm5HRV٬=|j`bر,3o+A̚5k7ffffffgϞ]xqX_VZusoܸիIII\.7&&Mʄ2"X_m{c'{Dz7å4rujכ0Lt⪖3BI@^A=Hkv5|Vgt"SM>C9쒏/W6m\@INa{syX?ɽVέI;'J*Jb!${H7a0c>fvbu#ƞжmwȝ3۽OղZ/-ܘ޳pVXcto  eOtZ֡)CN)꛴|X AY[Rp×򦻟ЏeY>O!(;%>H7peHm,u)"{2nC`BZN1 ShZ!ﰲŹW)C>|+ÍD ^G҈k]H{_Is)b#>YI1eE?o1&oOrh{ fC0;=`unB>9}bϋ՟4Vbqjj|lƌ?Ud÷b>ZR20QS J+Ʋ\ {`XȻ &rIc[Xg˫ڶ|S^X-yv| '䑑zW,3F!"D2(!d>%1o>Ve{D#CnP9wDh=R`uns[w+GeFӷ;Uñ-oΟ?go4|\3Lf`7aovcYΪۭ~jܱT^n{7b0p-TpoXO8!TPߨ n /$^MHPcGIOps !dP/7;go$ufVgy;pXI(XW X+d_OwlB.={Ysd?oUmBxp3M >nz,%27?E=^EtR^E?SVUo`Xt\-MEE'[5+>1r7#' y\b܄!~g.Y,8L`[CBF捝Bve򐐕Wm.Q ύX9]z&#]OQGu655wQvqqq7hY ũJZ/NW[9+|x3e5GFٝcY<$'{ e8[FDX|Cwż'xov `͎Zr{hKq"wb{הHlUE5iNaȶbnbfbf/OGuśc='>~!.%]h܄d۽G"2/#XG >1_= h@sgΫ:]~?Ϯr O?c=f{]]ݠA:i:##^d{t_Fb[3"o7Nhߞ~sTj\m~`hЖP4S Jm r gq9.>]~Ϸz[3b^y6n_V}z`LG%ukaHiU4}k5-#~{ 1d[V SO%!ۼbA ]:;'Cq /7kZlF=5' 1]=0ԟ$F-O<DE~{y\ҞM?E7>1 ku b-*%嗶UPVM&0,Z,P^^^iiihhh>F#m;aL&h(3Nd2ugUaQCMfFb>Kuf"Y*7R[ d|݋ 3ODy'eJ[*~d?Ģ-'=É_/ؓy7-BWJQC\{r?چ59tzy$4 [r5Eoq4S?,X>j0ERc^KHfk=ѭ]eb/4bFU}qlf|'V܄<}Oߦ*B(33_'w}W(ڿ}7}}}++__Fwl,**z7)|r^R3gD ^yP~uf }b;F#j5i4&oj皁~>Bh`is-P0Qt@[4,'Bg=Fri£' bn0X'?y!m:N5 !|q)_қ/7tv&=%G=*l~bԧ[MfGvצ%y\i^E4kr3>iչ -]5@p7 WHW|1>p`unfmXf^@pG#!U߰;W X6ر#00u["{Iyk-WZEܞpuNQMڗ]%`9.=Vgeo|Q ]60aZN(BGBb,[WWty{{$ID{{;ABX,˪T*FD"¥R!aNU,hAH[[ZZl6}!EǭVJG566OHQH$0jYP:&B,yD:@:qmߔvaZ,>~i߾}lٲ… 훖vرaÆݻwǎR/[L"L6z嗷n*ɞ}Y[槞zw7}v/////+VX,5kӈZmjRc_A]]]vvv~~}FHm۶?(eBiӦM:S8Nb!qFcӠO?=y?0O?wĉ_T:;\X78JQ<гgϢݻ۷=z!4f̘'xxĉHHH,Yd~EQUSSsq˲yyy*J$q RRRd2ٟ_^WW7ydJhZ훔$ɔJ퇍1bʔ)ÇpBHHȺu(rwwonn&IMw pVsY~Q27Ċ*--l6n2JeKK}L&bDGGG[,ooVBa?&((566d2 r9:aJr ̪*} qohh qV"tt&X,Z, 7X-,,4qqq#+++===b^͵Z}ߔS6X*rss}Y+IA:+{~f¾In_ݛ`Vpʳ{iK>=<a熅7X|e(1+݄GF<2*3ME9Q!UqVω2 Tܱ-Vr*ݥqqRbkչ,;}Rwtd$=kA|820b6X5nγ/a($[-ϯzA\#AbN@:|l VjZ>!t.]+ ~UU^0 hKOuρCs|njRTV~3z \lٲ܍pZsWգboBu5]zKqyO?rD`.\6m /BU=+}iii*ǽUc0*o/!~ϚmE|>5fT䘡E}GT*]pY`: չ1 sΌ"ĦT" ظ_D]4XWi!D$2 %&&>|ܸqaaa>VW`ZJɓ'322.\ o0K$ zILv̰,ÉKJJ3fLLL}{E85VT^^^UUUUUT*5Z ð,˲@ H$AAAaaa111F+8 ```````````?`dIENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-invers.png000066400000000000000000000124721475306445600250770ustar00rootroot00000000000000PNG  IHDRMwiCCPSMPTE RP 431-2-2007 DCI (P3)(uJQ?%OThbvQ)B( 1^Maf$ h_+{2;iWnX*ѹΏs{  (\[ZRP:^̱⚶-G} gTSkÿ}1:j`X;u-U"&8s1tx rGpPfnjrI@MHЉ$D BP\JT$.POxFrsɹ|OR1@o X(CP` @2+eV!X(CP` @2+eV!X(CP` @2+eV!X(CP` @2+eV!X(CP` @2Kc߀+(7(ccwsjH%6">Xe5 VN:6(W4>\m$bJ?ot<^h,jb;UOS8 <^L**גDAҔMX?T/ʘ?}nYTp˫^kh;ۣ|?LWYSQ[L~].} pް;5{O=p:+ޣ Z^&8[$u =VpOދޅ놜sGn}_VMC|g >W.}goNe:>mPH+8V೔A>0j2mK-ƄZ[0-p"#;MKJ|Aw_9:T*&5//>\^"@ʫnIi:kL(2=C or ɿJRZwvֺN@R XM˱ ACamE+s)|$~sdJ5{'RūXMk9̐Q9b"}4C܂ۻ|5Wr3 Σu6 ݯV)ar0L ҄`51%knK=b C3X*ՃghOZ%bϛ_^vEtuGnPoJLO㺕^]Ge-nZE#׭3 ~ro4޼buӖ>BC UB.IJ|q5W92Yvona)a|v1 $~Ҕ\4/C҄TT._#u$3DohUY4_]>wGwvAu 9>!^ƚv0 NhWR[\[\[\WRx=Vލ{:EoM~Iuҙ\Vx#&oiBgCE jO,YR _-;KsڃK*>ΰ~U#rvv'#Pp+0`n:_`cx8j`:wkFx5_?+~"g>wyeuK]=Tec<]mL c_[' tsoՄ=(Y/Nl#7Äv6>Xl%Bf25Ե"#JR0 л3 pݶ0(iڮ%~ B?:u&ug=X dkcpbw.NlLl9hV!:)z?B?m `5m*ʦ[džjxtzpsG:ۛJtq'r>7Wg@eU2Mz;֖KcXB̄RCAi3zЃ`5[|'XL <~"2 Mѥ?#!9MRv9_j@b^xQic;ֲJ%x\SWį@O9Zw[ c㱌8@C6P+Uw/4+h}܇U'0v=[{vf ~tiw;0HH_Tܼ!XMQB^FJҶN#}MO{Fo ȍ۹LsI:MNfzN~lg{V%%v060aLT⾖@ ^L,}M߯`?Qd, ,AvWۭ֞!o,_E_y'ZwG]!XMêi=YjZ{:w6R,Bw|NˆI /ӐWR=N!_ 7do@E.T΋OvXV`mig`2z ?K'ϛq=4' u7oTq1`.e1-ͬ^5b3ǯ>1?H0j2,uggKv*K2!B}sylkC|58_]iޕiVѓj^dN0uCt%O;p_`@=VSށDs?:p(ůjŎ .:uȹ?^ο[DT ,;\kAnۣgL7z㫾ՔFZߠ\wy| "ʭu::KšUX˹jZ]rDLc+5I֜dG`51AEDş.)]sMX;Er]w]_i'cQ {gP؅xh`5=kf%Hc4ˣoO &; g z_Cnx8>_ 7p\% +#X94~V]=ޚ#惓j>C~ɤ3 (t# /ƚlr芸6݃Xh~3o㱌7QR1z 0V5AA>[89$X%bX2wt3zsw}*dNM(.&8Z֣$s=꿺M߂7lНݱ݉Lm\3gT7lvKql&{-dRȪi=c%{.Ws90CI d!X `5m"wH`mS_._b3mg&V bQgteR&oTT6쏡X,zJl8qXj/u􇊆CMʜDl06P8։I~{{o|K$_YYګ; :AG`AFFƼ⹣Y^u4%Bį=sj H6/pwB j&&{IZ^^ڒZ5'ʮ.j{OjߜJ>'nGxAh V^-VT('Ɔ} +U Z$bkC9 N1KwJyVW/izzIe~2;HmWSQ5I$!X͇͖qkNu?ݔ(-vwsދ G>K~n[Afn?IR=&GíoP>(Q;R1'|fVf'ږW)Jjҳmte):PY2wRZ_6,GpnA|mrD<"YUhy[Ȑ һȦ ]~ڕ! -mrq.H։e2Q)aZo[ʺabkc6YVѸKWYG3a V3?uKfw4 c %ɺxT8=wN 9v(VcQ{uGӺ,6̀.ֹ*x{"Ftw;$۩ 'gцy~{;7(_i\ʬVGM,91ł0ٯkF<.EV5{dȾM.p[5XZ?>!xHbNheAOFT!XEFLm^d`Kk?jޘ/&6>#!X͙T+۾]/qJ0kf![%ʫ˵eZ~mea[ڏmyƺV5Zi]En{SQuV*YbHz2եcy9ʼ]m%jwgs~H!aB e!phG`-!9ZK쩪*ӈ\~~oe5LNLlRU|^KC}yI`x^|¥5Nwg|k$IQdO-A4MX4Md=P43crΘ'?*>H)njKUZD̈9crQ˖)h?e 4X~&^l|j)-w?t-6堲h1λM2Ks\/'NZװ˖5 0?O""B5-9~Y_ay7lh3I,*7Cqt(Q7Eqì#IS0hv8> MXxk7 'n:0Eah`;ѧu-luu5el6;_YqpJU;n>[uo @*櫕╪0 b^$WF;fkd[s](oڈ@( OXs7oUo>( !H*Mx}Ls;XrhzpOZKrDBn^lVId0k#4+S,SjXy,f<\p‘xڪEČc`ok(Le;a 5UevsyO_wMc En+)c&ו˽3f~G-no$Z/L$cMo|awFv(#yHSa{?돬>7IVo WȲf;l"rT_X\oZN3čY1(E.;T_UǓ9{u!Hʺ4 &^_<x짏4j5Ҵ{d(~Tr玶kW $5olrutFRri\E5?ԘvW np0"Z0`hw/~w鍓oG3L0dXawEֿ rhoG .ofɥ%#@"A쵋Vo734̪n IP).\+X .>hi m[HX`Ya Giъ?!۽ M38ɟcq/Fx\'']ޕԬky`_t`OK$I}@8"&Yx2 @f6ԣ O=ڰ2|FL$ISDBNcui+~4 H^{:2i7{Ep9"nVdԳ6ÀqcR4H"wR.Vy4ÌO-kl^Sm&ږ}$kXd1`0<7<'cW3Akv+3h= UWԪD̾!9EP)ӫXkiڛ%9boRUpium m%2+ V8ENwxgиpFǭ% ÌBQpyDXGS:880 I \:U1㇎ȶFB&n>[_y٣-əH3#/.1t*V]1d[Oah[C7VsLL/ᄆԛdW@<(* +$I2,i.}y\M)HbE3_X> v 4*}2#. Q"nI0\ D8 qO{NXDg`кQK%>h2 G>@ ulY"}]FW/K;?bD^.{{pouEnd%4L::"^|KsmGcξ;&$ycCu[L1p =~BnhNpP%" >0tEI1 P(hb;r'{OKq}*﫾#fY+LvDT˷WYxb;E}#kqP(@OoooCj?x=E䞛PD^xGƦfH&P˿%ww  _yfjӹZoIki)`oR*4T6r58qΏV<;姷qšX<~plYOr xHȿ;q鳎Xo?'sVYgOPb> ;7{P|W" +q9;pIÜs7]2_wkYv*)\UCcR\_)eG׽^]*@Q6 yJ=ҬR͐9"L||ƑTW^>h,19 ^i R_?1a?6ݮY+mtYwHrX?} Jۇ_?9ZV@jUMasgݕ%9mN|>@!⚻ ZZnBDx8pdl1g-Yvs:31 4 #el*n8}. _1xى&9"fƦnz$A [\<AlY3-D1ۻ Jvmk+q.SSUqYRBb7q8we2/9K[1 I͟v W6dQvon<\*xi 4ÌNZ=7S9LK$y kz8lvcIw3Oۛ9;^ .esI,H68$Ex$~#2u ǎgH|@y[A@yϐ+ >7zU`앷:3ETʅw% ŝ kx\nMEyYnu@a(-vq._&d53#}pL:\[ȉMT#$E۝F>՟tR$(Vjk*2Z'{6a5 ̬HOF>0Vb̞^48Ɓ"HAL&T Z ˩./*/]y0-4LN;^}4}ds i>( U-k9 Ij`J3%FU 7fn]冦P$aFk$*n Tt|ʞgJRov6q7 BQJLVWVisbMӌ?zG-cL PMPXobUVV,yOqR*^7 t_:wyrjq׊{}iwxT>yqMtl(Ů/o]OIW\=0 AfLB$Ufa :LKO:fLwj{83.̊ O$x"Ia+˲>|Ok+ʗDxJUH+4j IR c8;>ѺHi[Of'}2G%3|MNK6ezu]U^V|tBì#mah=m%;X{vaf}&I5uAڛj*0?~y'{AWƒPU ]du[^Q|^$O+MO.On|C"=(OXX{.?7vǗ VBI9o PXf57T0n bŏhn "INZ&G"nj2aV)ً5ڷ5YfUYNmE^`x )ooۼA@Q_'oWKlYaE<^CMuuENwg^zM`Vn3/vlHKz(RRO93xn{x_ן͜BqJiufٵ;Ɵ>tzhn,o..T8[VX\Hxsg>WSY^YZ`w^y c>@A ÀQ=Sk>S[u k"tL.> `.߆,P[Xg߬ӓ>?- D M{?{.`N^ x<}Q 2.Xr85啥%W;ݡ>{a":ak IAҷwku"7 Gwp|nޕݽ\+ }yZF%5ǻ{5eBA@*ն75)׊8d~? {p:]?a'e1v V\pPCuY΅omO5%"f҆ѴܛlYaEQ0WgP4i5%z( FmwT(2ûj6(_qB*[JEiVX}ʵ5q*m㴣9rpxs= y; N).rB[(qq[JbD˴D*6IzudavU9_nɚ>ҨW \c-@̈́c5TTM:M3ۂsURBVB֞Z#ihA՟%M3B"0a (0L@Pbyh:{*زa7A֬i+Zqi CZ 0 X(ha@E\"(ލw/@0[v @PX!$@a@ ,@ V2PX!$lK43o(HYׂ{@0&2hOV#D L@3 1f\R& |l6 9WJQ+HR!\Hw2!n_$^8"?ѻg+dB S!e˥.6M21?:UKP" Iy<6 `H4> IDATrE 3 (ȕ  =p2Ib*TJ $ERgyld@?G ~ARjDt{Taq78$|T0 1Z)8 \: EcL w0^Z ~\ FDVfaKe#A s)M0F|R.EAPl6. d>xtzԍkDBB&\,k<\"`0 HJ!oBm(ȕ(*PZGb7ff+.o8K"("s4Jq.o8NY\*rXK/e)eBֵD j/vg}W/U=}~LC*v@(?zَ u;:4a{MJ&Z|`F%NjT/<١};+vf.vϼVZ.9߼$*0Ѻ;uUO>c-A-nWS<6btȼPȋ^Aebf{=XUKjquyn83|讶R!#I9wQ0O6YܺBU^%ǧl+zt7ۼ.O0$k+Z )1ۼI wpy`{˾v}R&(ĨjyKuRA\ƏDFիR&m3&'`jΙ͙Ӷ;9hyfG[;t򴏳Y4ZܻBn8Θr.S }l?Р/Tx( y&Tx8{aV]t]Fq9ܜ*B402^\tPCH-W"(_Mi0+xbeeJYCcp$vbH6 ZR_dH,'B6 {dR_a/vwCu"!;+K48+"}$䕞H|xZ_lZG8B|X[^CQ/ yi)y{ Gš 0^\W*1bxaXS0{7y sk*}&PozHFQdjαI Dc m,N|ri"G%ymM5plZc].O?ڬ/T;^?51h_*zTϜ];5̠ 'U乽af|?&G {2j-I$E|q?t^7>oN]m%Eyr?z_Ņu}Jgw 5w"|;J Y, EXM})a0di x\Vj{meޙ1ٕ;ޤk]bފl^ ^[WiؽNOl)1M]@ ZS9=h,!+V5>[gWjP2' iBH$EyXgmoM [ XqqaN$H/aZ%W$HJ H%^߳R&q4_<9B.ԨD ;;T_'DTq*_+qYEI*ʗar Ţ_M $'aֱ UC17mrUl \ o 6_.*SƙS y}ѥp6KBr3G&my9>22lqa3'7E_~i`o-@P4E3 kc8-b~|ib[7(ʽ1}I߳>7bw4} "!Eʼ#6cI"}a4cϏiVH~u>5QS=z~!E9ݡ1=SK N[p rY&\À]3X\؇8^Sh1u Ec=ʮni?hzv^j8@B.,k_}5yUi]%8TbG"] ]62aqp0P(Th4ۼ31sGԁUK/D S'0`R}Aj-ׄ}jn-H^>t;: QR`6/|p?}qk՚o $?640$IR$Y"Q84aq@0",zrS 7V~CQ|͈_[xhr|OJx\K^0.d3/թsT ]| WW)aSj/AR/M$Bìcz~=/k7b(UuP}Fj^_}2ctZj/?=i˄2E+ Wt~$?AVKno{WSsb5#vM׶Q4mRæD80bD;J_vcdK ܼs=ulpIy&h!zl"3b.[vjo*w_bgr=?Ĵc@0c]_55ID}nwJ6fhY#[Fz`o~þX-K[c7\"Qkǹq\6:DUo3h#%:5JId*\,A?wMc*hGsTd_켳k֩Q?cttJļcN䶬43mt|//~ʼn`86;ﮫ8 1QE3yq E|66ojK(b"!oy˪ڊ\ۂNP\X?Yp~i' 2j7毼5\V]U`Ano(MʥM 8nk >2oEƚպXXyqΕF= &g,P+c0H4# #Ζ<'&z+J4)' E>wuxjs}wgKq#AS  G| Pygfo{ٙqE?P_Y)ȕλ9c ]%9GרB.;4oy8±p$ cGpe/k*JGFyd}UrzBcSv"I. Cc$Ȅ|cf E) "A? .Eԯ޸Llocm57bN1AR3Fׂ3@R_O$ <7SU CMݶP>8^[}(,ZL{d5I?yޙ”WreZ7D/uĒ352);[t/uy`{TZqu*JYά@%r?8QD܎NÂ3og%J$bm}FDg,zHZ)t]9}nd aƒ݃FՓS%=`̮p8qʤ~pB)[3j9);+&JH)'e:5"E5,P94nˑeA@e{9ިy 3v6 [aqު˽3{1Uʄ2 ^QouYPٿLL'_moԏOI68=1L"x$E>750"@vu$sqC$I#rt/6~`Ouޙq E3p]+,̕7fN^S^)ѩp uW `;MjISm^ʅ( mFwO{V-f3o]beŪM#p$qk6?TCt||"IU5R!X8HZPD/IP}#WN84❭mx"I}1Hx}xOHCa䚅ZiSmchR:>%)f{caZ b_ٿоauCB<6?$08f2k5˧CD|0ݪW Ձ2R8O3VRP+J W7b s{ pgnv锍Ջ#ܮ97W-V{u ^4D"IWj 3507g)ֆru|zg$tmu ~՛#ZQS.Y쁦ڼ2 0o bчjN͵nÓR˥%]c9wN\ 03z|т\ɮ Ak _S6/=,EfU6sWWnɿ=+7T"87j;ۊsT&B4t9=D*e׆G)RYok*jOa켧L؝K8J;X$\,W4/M'DcDlk*ZrblYa@ n@ Y +d(eB H @ Y +d(eB H @ Y +d(eB H @ Y +d(eB H @ Y +d(eB H @ Y +d(eB H @ Y +d(eB H @ Y +d(eT<IENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-jitterbit.png000066400000000000000000000214521475306445600255670ustar00rootroot00000000000000PNG  IHDRMw~iCCPSMPTE RP 431-2-2007 DCI (P3)eMKQ_CȬe -*H܄YP0}4PfFJhmj_ڵBVEvnEIsK{9/s9BN˛Neȋslm}uWp!j%Jv#B}V"9{ZW;;65:8$]KLa">LpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCA IDATxi|TsY33>7IAdWbu{.Eӧq#ڪER@Ye d!+YȾg̝{y^DCrgL&~xN9d~sg!|K]@ X@f 3V+ d 2`A X@f 3V+ d 2`A X@f 3V+ d 2`A X@f 3V+ d 2`A X@f 3V+ bkk6;!RpAPȎ1N_\c.u2EEik"=5HioBL1ay84WA 2`AM)xph[妧z>YNH9eU5Y%YZZ^_u e (j)>|!4+?%Ҭ #d9ʢ G>Ȓ[RC:"Nnβ[^aǻ窺C>UWmSM0 tK]If蕷B}t V1s$ߧQsmﶷO֗w 7H {)+ɓC C^~BT:nk;S_0C9VǾbsIN!^(FY%wv0awر]C ӯ32:6^&\UIy֥LK͎ UPz`kٲ,*hIxZ)C<~N|?Μ7uN|ȘЋ}Wr֔t6L&2׀p8$wƂƧC;?`ft8djAONPq`R2ox$/!4*6&p瓐[* BƍL3|lUn{^A}5Uq`YZv~,aƌ0"vӨ_pT|͟ޯJ̢]i! K`\`J8P4|sO?6ŸJՉ _}s F:psyjp1aEQΕ*%:QBɻ᪸dc'_AQ&Wv;CBkqBqYyɡ="N䩈bL󥇄hxCFlsJ%AlN+ J7axn/DDDFHq=DQlkkknlq\ϧT)z}LllrR)"ʸyY`+X{2zUh'!N^rdulI-*֗ W=M8"wYh5]{{8qJj5,w`{ZZZ7OIIdtuu ¹pJh⨨*|щGQ$ òR={eKF: Bرcwϕ>1 [SSx htWCt8n3 T*Z`>=gwgegR}{vv T),\h61'֜RWWl_íRR.\8ʳ@Cwi={qj'[j/W}B&&.┈f@jLDb})_9qX( LqD&n >n֒KDSc+~ªWΞͲlWgMoy^|1jTWK FcFFBǡ[mmٳGyy{_Vv֛,+W_0_ʊ?陳Ւ\N(OMz_}+TEvڭ[?]uЃt>âECKFc\\l&߿-RAo፫WCBCFPJV2+A]Ħ-bG=n| a(R !$rX(Yf21)hHtދ넆RWv1x:Œj!A;N ~lGJ|;6HVF[p\(ؾ^{o }9]jo΢K5XFPlR @Gų#V BU)Sr9uP %*-5Lnz>5MU_ gOXʻ(E]W ={^{ήk6^C}~"..n,).yWVkUz_r\BΝ{].( ` !dgx 墛&:Nb?\`2DoyG;11ɪw{+;#T*QH&e:Hi)B.VK2)^$O \UUճ`9GE|9qѣٴ闿Fs~1JŰҷbyzFT x>&8cY(5#VϿ8w5pGb` JcuϩC _ O1VyORߙ#eRp JW.ó-و"(Llv:&. Ql6,lܹv X,JZ nLrgKI6t8vwlSUPdO͞9sVUFiTYQy)2]_=gΚ5k U*iMFSƔLs9<M/td|'t&劻?~ -|EEqRRfc?. A۽nMG̘o~9jk}C ,XKIӴVc;hllhM7HwDk4(xE_ *Jfvo߰!1)h4XqܪU磻Hv'G3=$B%%%X>S h^v+$?]$?v:`ƤpOm6S݄vhْ.%;٩ ,5uM];gjtdrƕ0ARpRa4ՑpJ7+8&)i,]1~zFɈ|~- uXoY@/~ⷿEQz~…onz|f۷/`Ei4 MB0j4~ߡm;+&C6p4.aԞ!(z(&1RkL%wLT<!eeg7rgϾG?%/߿ ˲t(jfei=kEFEt:IǃQ&uDY,$ԁ*B_j/?-w<!W/-ltxfT.>>J^a|<_]U5hZf ͌v`u˻:X YJ-ģ(2XD !D $VlmO B!i?z$DMq{]DWn=@qk_>bvJ7b1Iͽ|ùIhJHL0%+.% x]7oꜘ4+PK9 0o| p@0FkEQˡm 'ރ[+ zBu:w{ub_}Yצd͎7"4aYJg2)|6eR=W 4;|`Wa?S322ǵP3 GW5LgʼnޞvE!IͲ4&am[BPթmo;`e~gK;Fw/ 1S"a4=jV <|!d#[a= EQڤIyoh6c6:s*٨Hol(t;WVi+:ж6B(!4oeflslaMB-(>|}`O~j}֞|3N!B<%r3&3lq;ljb([da%Gx<`חuٟJS XRͪܲ[sf/NK6EQᑚK\fqm,+hl^\esݺ̙ƨZ>^j}\i7FE"8>BpQVOobt: z'ZӧLgNbEQE |9?A},P#-`MAr r67!5;*"V7fW&E!cvɺSJ }tlxqsJx̜Cf0a}f?WSW\JʈXq[NbfddNW t'Z6 ד`xBTXVBRT(srr'Մ P')j>~2hJT&KL }?ѻP bE1Fk_u^d`ER߬$C&M o<%bSMoޣ;(!BP2.iXBZ^;}^"2X(*ԩ s1wQ4D=R=\_Wc\t;fM0]]]p|8C3:]$XM&OWM236?-<uuuSMR`4!(37|JAMI; !0qTfP͹.uf4V MS0SL&mlDo.5N>f<ϗ 0Xl6Sq5|E+z/\2NPEEyG{{'Xx+IhLMn8}.- 1Dh? UuI}dωb GMǮ7裣"^{OTQ^^VZ*)i:--BvMh5A0mRJMM)+-Zh;f{C $za룣_٠\I/ky$vӼD$赜2_mDl#/8ca7y]d,ճ-uF]0#G;SX,O>)Y!d 7&IIZ޿^P"`pB1uTm[? ?Ho޽"ڻgO>a<ukkkB,]r!jcc`Ad~Or [+*^GPZu;ӻbk-w 2$a &nV=K2DGlo *j[`{w_o:q/yWӒjVX{[[iii0Ã8Suu#NQTΌ~+kg0Wՙ3gx㳭[GjBz{;[?T>mڴi` [!O?qL8%|yf0+yʈ׍S'ps5H"0#) ߏVdƽmm'6˜3/Z_7A۳kWiIIz dZZkjjJKKz)izuי&&4M ze؈}3/Zg(\N WH~k;,Lx6>Eb4Ἇ_|yRr2B(-=-oYrsG9r77IB,{ۆC~$0#]XW^~x%K5L?;!p޽%(,ˮf-d+<\:!=OVvFx<n7\B7'9Vy(T̼䚒fX<\a"nXh Q4"˜YK(b߉m]bGVOa!DVl>tAllw/?f?|ѣ,oTNĤdIBϞ|sb CNN$XFq:sVWU?\ +˲<$<Aر}}N^ݵ{vﮮzC#{mӦOh ;g(ʨ()cfwx^_+WܸƉbJԕ߿ۿ/[|ʕ|l3"QfB(6ɰ܉*w!!A C" 6k BBieGiLl( Ns)-)/$Ee͛m<\&8t/zih9r8Qtb&1 sͼyw}>N S( 4E !^:`XУ|qMINt2B$,}Ń>VDĄGhB K/i*MR_R븫W)W?\&>3`"(M'ŷӑ޽ uhȅ!Mӏ oh˖ӧO[-VxAz0RTTZ6hϻqgժTv11q{oްcvvy8Π7?x]Zm;NQM,rn8EƟgk駟(lNHzK8Sa:h\l7qoxK nJHLh4v[Jjkccf4Vz}ddUV]㿉PqqqzN#SRS̟[uuNvP /uXXKAn)|s.]z͚X2SvвZM]Vr<Bű9b2'$Ӧ^*RTz!wZooo}]}wW}]TTJF YY\wwww744tw;#(R(*ZQ Gsmp^/Å0'%%ٹ1ApCyޞn<5to^ʪޞ~O?B8Nboh`0ө|C}}kkbVcJZjf9=#[rע;|,?g~#c/ߧRpQGP-c`'vFIDAT1XÁd1n47Nh-T&j!ȩ.2"RL~AtB,7xS0fl8%dTG0D^~d} 3A X@f 3V+ d 2`A X@f 3V+ d 2`A X@f 3V+ d 2`A X@f 3V+ d 2`A X@f RVIENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-kolena.png000066400000000000000000000211451475306445600250370ustar00rootroot00000000000000PNG  IHDRMw~iCCPSMPTE RP 431-2-2007 DCI (P3)eMKQ_CȬe -*H܄YP0}4PfFJhmj_ڵBVEvnEIsK{9/s9BN˛Neȋslm}uWp!j%Jv#B}V"9{ZW;;65:8$]KLa">LpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCA IDATxy|Se?M$M6]Ӗ@U@Q@@Ν̽;su ( *JAle뾯I4~G}Iz&<>bYfj Xg3V+ x <`A Xg3V+ x <`A Xg3V+ x <`A Xg3V+ x <`A Xg3V+LxfY NS~!&:\[~__[= 7.{`;WNUCX]jmq` .{`q?MP6ۍhelyzn.֑r;64^;30T |mn7 눸n?o]$f~ַP' 5~6Msi&JV\|=\f5 v,1R hKE4Jj0|n,\n h 9 TUztbB2IcPsiie* OXcf3wr4I)ʧ$KRF,ݽ҉h0fBR )o}SpxzM AbPhҥ iZH|Y0^:`"R Də ڄ4 %Vk^!B%(Ii*ϯ[ms-M~|$PrTjܩF#we;U.[^XfC!$"i L9uVn71p{ʵ=tA$l(55,[Cڭc&&\_tS|qp:A$+K\X^T}kC^f,24^֎=O ޠYrͮnŏ?H`Y`b>TcȓͩԖO(Srڮ ;A}3 lO4X[k%Ycm>{\Tc==(K, |I哦)g3I +-WNjRdwiDR#vont40)S⹛_`Y/z$|(AvwW5X}1=Isiڂe*7Unq 8wwT\wEv1y$Y9a;]ml1zzQ{վ(Qe&iZ\)7y9NDS;qň/qa jեuC6!I Ӵ"EVL*r,KaK$P a?͵՜JEeCp!WʈĞV΍-}Fw[2nϻv68vnjv;0}M˟+*^7޿_5tV fR2`<ݭ3 Q>{sockۻ"uW8pJ,!`vW}DWzW8CU_zֈj_8\)ZdA|dz6  ޭ_)F2fð~U/MNtw*ѥINqϒqwiv.TL?}XQo,q}fri yDw,x43ԈKP\}kՖR=EK34 o' NMZuu)YGw_] )je}2reʙPr]ݱ~l)V7"xVosV^E[7:W QW{ϱM-TMT>Y8~zJw6:k^%K[oNCF S܇mE>j½q8}H-E=ߝ'[rujS8*Td]!:ImElrwE(œ9p4l/K:(%SƔMt68zyJ X1M-W7qX4nZ2ڹyj}Ht;;64;1OqߪIsҢܝe L߽˳FN,x4o#:zɯF!F;!ϚƸ SŒ?2pҬ)vvBK=1'N\;{f5ZqD俕$UHzPj3 ] nӹQ1#yn)XQz; %)?]v DʋVI"h撬I7J)q~=b^*#1ivjZv~ə˵3 [b@b(T".R%_.K*>miY1fgצnLmT wEk`VfV/i\)SC^~DmsWsyY;VRjē,4/):/=`S^ǔP"ULOz,`l@8 1vww4uSF^*Hr}q|3XA[ES]h=u3!++' ð,,Ί\b敒>An'kcB4~Fʒ Llr:UR4>`ͽ=f+6fdDzDU|tJ"P raɝ*5`p ɜC!DdÃe =IȉBPrF\vzX ޻g%2_-I`Fnk8-E"y˲M("U_ \rH^\HZ#n8ol{eD rlCs_^x$(+}a#>ǝRp=H 7[a vmti%c}gc& (M+SH*HB ]quD31[P~'B9c&ܵS-N\H+!4i\ o/쁝"bH$"qβָKL()غ\%\BQ|~,Bw{+RV٤9ԬT !DDyM? hHp=2ܘc*XQBM"YLaRf:MG m4t4-WM_ Mv69O|ə'-$KzAuh;7plch6 uUFC,yhkQsf:R' f.Όu}p WK[j3/YJ1s`;)\N,L/uXIgYf}ŬxܴdldJw-?iiQ%=_~3!bJ-Ѝi݀ki Wccy!=w9fX((W>q6`Xt,q|Oo0#v ?=%3—Acu;M5(;Ay*׮v6w *M !ecյ5^Dրrʼ7Wp˔4ƈTwXǿR:'~xk-@tPc)@V4slW)N|U#;Uc-*-vudmRf=7ߋa؆6WNI݋2˧h^5UƳ_"-' ex0;i36,Zk[j,2'+_e|)3vB\8kiVh7EaR(B?滢wt3ec{ (fa+GK|CaW  !B"Yw%7=U ˴ݞ3G EU-W׿YQP:!b:zl)a VVHdtmBVFnE+n%䃏eƵK*Y_Ce wƚ*SF|&)E||eASޕqBM{ jf5ð ΍rhjBL!)j~\1~z3+|B$Z\B%׋mԄQQzs:^5&} _w-K.H~)IO*TUj;NG!W+Tg߀1Eտz{7z.4 bۧ$QN~Is~Bt\Uė}.7BY:1iU{@"D9 9 R3d5p%w&-Y۰&JJ'jĞV=MlTVB4aV]3E=GB-^Xi~Tu +0sTMLCo"qG 'sٚE.:bF) baFŭK92 罩iiuT\>9¬?f=7`4˰>1R$ :yŌsh·ڽj/-Tĺ*v4\;p)beY(xjј Ig$:,:= Hhja'gUa*K~/]}p餹4ß#xAf|SB6alD7-`7ok1p%E iqz]+nZR) eʭ{u;4*T"UX7^eo7+G]t"V+ x <`A Xg3V+ x <`AbIDAT Xg3V+ x <`A Xg3V+ x <`A Xg3V+cˊIENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-koor.png000066400000000000000000000164021475306445600245400ustar00rootroot00000000000000PNG  IHDRMw~iCCPSMPTE RP 431-2-2007 DCI (P3)eMKQ_CȬe -*H܄YP0}4PfFJhmj_ڵBVEvnEIsK{9/s9BN˛Neȋslm}uWp!j%Jv#B}V"9{ZW;;65:8$]KLa">LpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCA*IDATxw\SsNr!a8DZgmj[qZGU\uU{z֪QUP@"#!{qI/pt@ Xc1V+p 8 `A Xc1V+p 8 `A Xc1V+p 8 `A Xc1V+po4o* JV DY;cIlґ'NhQ:=ehpn'D~AeItb$v*+/ϔf36DAiSR]x):&6I*EQBaa88 x<^P7>tMMjo߹{Zwp piꍾ}G Γ-+uD" /:[zYɲ94bضvel? AKǺeӽ=x/;j3 s"߈i3ꝑK|CʪݹxǏF7w֗kLQW9z*S_Μ9}c֭ZɩO}z}tٹwkƔImژpҲ_Ϟ{ZmwsJd޾`]:wP*޻$5S dkk*IC$e8h =IKu c3I~9m[Bcb5w/kgΞ{#6lv69Uk̚ؿOLP(naFAMMBY9GgWM2yK2h >zA5_(͘>9Bi^knߡ(V(BYc&L+7mݾq62P:ݹ >yj`mb2w7T64Ju 8>$lWӧ|5 %eq oW~L]lyqq 0S;e\b7wMTiBV+zu Nv6&c˖-Z̘: VTfJ-)1}3eEYsR3uC>-5lh4w)-+ݛ5&Q8.9}1 .c^899}m%SXTnSR9Brg jPQZ¢"vðCǎdLKd7b,u ɑ=HdO0 {iv RS>?{׺w`XjuF.d#S*]~cCboߎnĩRRz]pXnՄ Oh6zM3?P*غM^ʼ{bAz1fLbR2ѹcPήD&O3Ϥ'O ‰񉉷߯oKd-;wA<=wܶMkGN+>NKKLJOHd=;'w-sgeo2n躯g陙HsS;>1`n`mBJ"ܼ+D!y|f+&*#$}>rj[zXt}޽.^W1tC'A8:8=bkVd|yl&=]iS=i؈Bvٻm}{3^M^S,[j5k4Ɓp388MJ@8.)co&̫1(wMm4a|q({N``4 })cU ?O翲g̞o>3ꎡ >`~1n_,{10`ORPݣH'zo[,Hm?wwcIMK/,.fsA!vvojQ&ö́]8wI?ʒJ7T(pz>S""Qjzp͡C;o10Muu4;MLdxzֲEO?Ȩn]\16+EQ׸ؼ[Fe,(9uWfyXp9.R]>VǪI,ۈDsP,i6 gD"' g͜>yW4jO޽0 + fh.mZ2A  ;rg-q">gԕ!.]ʸ][V( f!to(cjV<=M?Usqv޸fu/PU\RBnnALczx{7-!T>IKc`n&ruuLEQK6|A^c>fb, 0eged*>Adž#"bX'NE1nl7BH$lKd4': $z_iSVbfLW*-/OMOsB NW|8 DQ{i*#\_3JU H::8xvm^La&vq1j<`Te›q^r;,I^MVldҲǴJ^dž5UFpw_8^tLG7 gfu^cL7Dt0Q+HJzޘw0o<3]4jeֳcuUFx]Gq?@ðjSL(q)"&˙j̃3gJV ^jqtԤ ZM_Ϝ,M*W(Lۘd0LQhᰓ#&acxǎ пqnge XPYrv5gnH^[ѱz~}zOĥ4'Ǩ_P +\%xo߻GV${9xa?3[5{^_5miC%gQX|=1k%z ww7%2YBR ~^"4 e̚YemN͘GPlܼeUg BhM4yv9@ЮGJ$?JH|V`z!FG3vn-n HkǦcX h@Mr2PWɍČt&}fH#93ogxhʲzn[sΜL+EQ'=øS(\!Xᥨؔy!/?+; $9_(|>wYrOvLwyu@QYRNKf=cU"=z|yz9tȸZ;ظe[EEnn}{dg_Nӽ16Ta}{)"N9/Yvjf2TÃ5l;$9+׮?K񌋮d2Y?Rǃs" I?vlW\]] !{0E._Xޯ$YDdMYjŎM]Y,:pSkN@ateUkťd82S'Fx3:h;v9^Z_͝hc?Ё#-^bj=;|uC>3.R!j˂eߖd g9n3!&N`rۏU`YkJ%@>9GY+3r9BC9u0R#srtܺq/g<ͣovٺM/^q|ȷxq{ky"jγ. a G逆@ZN.}Ƅ?Fpn'#+&QP(:w={k. hY1Dkgru_LS'F|ч,bUp-ݸyIX$`VKy{xߌ꫺v9RRh Νa;5l@Kuha슏xX٤Hc<; ?ߥ ;;3(j#lN%tm?.T}Nͷ٥l:n}TT_(2h߯t?k { gkT|[N$X9ex3ӫ粅 Lu:νnƙ 2p>#ŸØc&~CZhx?noer7|}|\w7-U qpp1~(6n"  fϊZg' Ɉ~ч- g/2k c5 юjN]|1:zG!s^B=`鷙2>x䲅'{nS9_,;vIS"<{wT*;.aIm_O;[zYɲqu1Ѵ5r%mp@H3][SktN=; !_PRѕ)pvrlbyQq1c5{{54?X]]]"Isr?|grrNnBYg.zt meGzL./xV(!Qbb4D&]$yiZP__ww7{{c7;IsW]EZl`SR`e˨`m fAUYYUUhDBʌjZJVW<[[[{;;(o`*X9{;;KiMB@hM 逿lVTp|ŖAZM O[<YI$[` V΄*A(+.|[?-ضt'fl6Zl7rS8 qu#xbm'/9ϴ8 t4K sI晭vWc_;2hΗݮȣֵ"?{o ) YsBGN>L XM'WKҫZRFzdB{Е \;t8c1V+p 8 `A Xc1V+p 8 `A Xc1V+p 8 `A Xc1V+p 8_]knR1IENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-kx.png000066400000000000000000000072551475306445600242160ustar00rootroot00000000000000PNG  IHDRMw~iCCPSMPTE RP 431-2-2007 DCI (P3)eMKQ_CȬe -*H܄YP0}4PfFJhmj_ڵBVEvnEIsK{9/s9BN˛Neȋslm}uWp!j%Jv#B}V"9{ZW;;65:8$]KLa">LpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCA IDATxOurt'p蜋2\0 b2:(t@a8`Qn"1wpdiv@,,7k (VPF2Qbe+(X@ (VPF2Qbe+(X@ (VPF2Qbe+(X@ (VPF2Qbe+(~@ȵ8q"מQP677gX$!w<!,Ytii);;{~~#---OdL{ ubPmm$;^k}٫*Yzllfy o^+DVkJJJ/6n(Yp\.֛7oJJJJ77:GBnJ222$?'nݺU8X\\>vةS$9)))wfPHuu$h4vww1駟k|Iwy+r)}EEErrp'ށM$!G{Ŋ 9~Il޿f|IᥴŊ`IOx 4tww3/[ZZX,?PYY)ܡ]8BYY5`X>I®]x≆ez]^$66+**JkK>7|3w XW(V;O*11QkKwkkkۼyso XW(VWYTT{Z@77A_+B:𕗗o._a+⽩ 'Ͷc--XVp+rȑsI{(>>^c68d+V699',#..nurrryL&QXX,›l-={Hv5==~×!'b=X 6HBl6Ȉ֖VxrrrnܸlcP˶mۄoݬ@ԩSH^\\d Qח_~/K\.Wmm~1==]\\C.bzHrСa-ݓWmm _+}I曟~)t^ށjVQW_} /HBw~jjj222bVg-twpMq8Ŋ=3ŸBtرcn(Vc߾}w$  ǵwz 2::z_g+IBv֥?p8.^@Ŋ %$$TUUIG]!P^aaaff$AI -[H^>66&gk ŊEEEuttJB{92P__I "III_ӧ%w:{6RfY C[[͛ jMIIDWVV 5bTtttgghzv[, 779&&S8hhh$` Xd2K9r̙3E}QX,YI %%%钄Q/|rYYd9@@8wFX;y;;2hll<$abT[Iށo777;wNC_«cnwVVubTI_|Y85gjL&VUEBчB:e4߈$ LQP.=zN3C_Z?G+YdI¯zIK.^qK>P\ PЧ{'U·3477={VC"$fsQQ$ۤNSx!/|.B"T*++% O_tI~>!/@ʕ+F(VJlllgggTT$G~&4!/\К?{?/j``$lڴ`67n(Iv$KHH$ \PQ(X@ (VPF2Qbe+(X@ (VPF2Qbe+(X@ (VPF2Qbe+(X@ (VP5; IENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-lechler.png000066400000000000000000000204461475306445600252070ustar00rootroot00000000000000PNG  IHDRMwiCCPSMPTE RP 431-2-2007 DCI (P3)(uJQ?%OThbvQ)B( 1^Maf$ h_+{2;iWnX*ѹΏs{  (\[ZRP:^̱⚶-G} gTSkÿ}1:j`X;u-U"&8s1tx rGpPfnjrI@MHЉ$D BP\JT$.POxFų>/(Ȏp@ X@b 1V+H $ `A X@b 1Vv8&}.{G-G] [^nu)o]M 1v&.-߼~ԥ8 XGG>Q^~m`A X@b 1V+H $ `A X@b 1V+H cǃ bXoU\Ƌ*\!Q SU3F^f.1\2dJ3>d ݃&Ϡe'2] Drd1(DRDVyx^ 8f $Lz" Q=2ͺmvV檾w=}w=<ɗ4q(*rsX.9$]v ]vbTC6' d@:EQlܓD^UASYf߃?)rW2y.j6*!W- w+|^ͱl-bŽZjcfRhn^oݶW]`}qNXq|8>D 9H&?H A`=9Lee3'i }o=Ô+*n?پC.9hk/{ 5^ZȰLՄ./t8J{G]fA<]^uQƔ+LH[4,^_>RE]2W-k,[ք-NrЮ_әvY{qڑΗ34ɳ|ZTWA.8!ը1TVe:ZXVjlF@8¹d=CQhP!~IUo8Fo?iT`v-dvK[)âu#Kgnk~QX|O?8 "7ѥd'jς`E}`\fgݶcajŽ`i{|Od@$WkB lJLʗw/>Nu%Nλ>{Gr[,W j />N#:şv_}vk-W% {WaqE黶}.=A{KsE^02,2,1_5|_DVg6Η!UAQܟO߽^H@r P)/76.qky_3?0ӣV;k =K,8EIXeCH%$вQyU,2yLA؀4Ow}7LIo=Ю{:op# XOIf4o|DgJD!CB(Nld}q *%Z4V/=54wSw8DuK:SzJ^ ȥig]A`)Ó\$n YS4l߼*0Xϔ>:;JLJ~aB;++׺)`?Kt3U?u/y^Մ7ʔ+(o\_!H@ic'_z1zP%&a B^[hcR<^0CQ*OtW i`j<Є -ח?AZX.kZurD R}娢}Ԕ{D^&Wiwx)D+hǾekcҵ|A6תY62̂7}{— P` uV.Ujlr<[\S+2)H5ESz5ߝ9WvmOHdx~3FG,w#}Q.C1\ J%S!r. /86WJܻm}tU/E}*%F$(AqII¤'(g>;zZxVc{0g*Wv7z}9fV \mkXp3rnטnWW6WFމ^[?qZ"YL$[H=F3ނAf+e҅)Dž)3>>/Pd7ׯ-GcƱSE$ w]ۥm/?̌ZGV]+X,^i7V1g8.L:Pn/3Ebho (J\QJZQjW,rdBw!c>؀bT / ">{b5* ~WU 5TIdD0x!(pMU Cw9IIm3il&ը]w 9^tCAfâuMjZE05*W|k6\uc/ ]RPR%(VMf ˯d2ZB!Lݓ!jj6OSAe([3` qz3FoDLX[MVwMjB91BMό')I5%X"f<KMZ$= XO&Z>;FUIⓏwԂ/K{c A,1\iVM(ϸ-mgF̓Cah;Wb.;鲓7ڢ?y~7v*Li.qr\Vzk0 t?~۟u/ d9E=j^sۜoCK +y_|~9mZݕ\ƭsXI7"B sE?]MYwqliXO:.L9lՄ\ZM TR8Szi6J 5̥tYL{6sr_*r5j=n XOzzw ]vN-Fi}tGGYF.4SK]"W,WՄ¨UQQ2 V544A\]"YsjN2IH¨Ízއ }>/=ADH6e LSd*%80JhYۼleBY(ʭr,ÔwYrQ\}3ht~^I<:L߮gwo5/5=PzO%^zXMrSIǹq[csVe%Ede3=bN{ H:7nufVFcEF H_}V蝅н@ը8ZYK݃-*%75 V< XOjJbi%BQiM'LCԸ]Y&)%L(A_[\7iaj|fr9zw+\%h*_NfxOBfwqUf#5QjNϪm~i[B.8zzէ_9G*R.UW`*qza9K_(ޟPLԪ4BK(,_r.[('H>,6 TȇMVS!J۵I : z=K4. z0{ TJR yFӣz]Ts_%L0NoK+ _ ㌢(VS; Gp98^<;{ki*,b +ؒ?CLrk٩~ 9mc=3b36oA~ЮGbc$U_^_Ux^l+WN.N9O9fݶtQm1ח!y}/y۟gV72MjpA^Ƿ٠~AnŰ5BVaJV)&QḪs? M7Ȁ2zMcFwiNl( 6z{18F XOlH]M.wP4d&[zm-pæ S >C^ۗʕ.oxcJ r 25`ιmnE54q%栴⭅ mtШXvh5Qqܸum7v遻ܻ: X{Q-8}7ZZK-ҩtIYl=ǯ b4__rs\ʝ{B mfR`^62k+5όY,ӣqM֛1RH=}+#o `jύ<ֹqh. +8`=~>?c|rʲՖ昭Vwݭ&CQ׬gkohn#_};+Z+#5lu~):?$pzW)F(1lȔ}f3N_0L"b,^x%^غPШUNϪ^1g+2Po, EQA=6hkTZB!\+Yl2$IFe]7 p.8(V Q3lswd*%TbL" (8NU d9Xڋ׍UV 8C"" +rkj(G2ӮwQCԄqQvPa[[E)0\u5] eVӷVxAbj<9lwQ.{|}SE^r6եեןGͪ}t ejE$(>Ֆ֒ _|a9sl'P<7axyq1lkF&ϼչ2//+%jPem5όZ]C6 Z rZʷm頦&,f#3Gfv[ TIIDp]OCY0ʭmfQNa.# X{QU?>jIlѠzn̨J0T#$xî|] ?3k\TVJ1ʨ4Va֞1OZjNV^v^v JV6P6_W(UWOPbrn:,QjSZY렴kAQ~DgJ?$%Rd rp%&"e$(ճniĐ[Eڋ{cnAA̗TI˹+(j\(BW_eW?^B?7n?7no 5APW>l2ZR`+z"vJc49e`i2jF8tB&CD:l 1V+H $ `A X@b 1V+H $ `|]~rWMuk1]VR+k.@SH E uL)+u)ؓ@XM. +H $ `A X@b 1V+H $z?IENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-logfire.png000066400000000000000000000406661475306445600252260ustar00rootroot00000000000000PNG  IHDRq%'JiTXtXML:com.adobe.xmp ,PiCCPsRGB IEC61966-2.1(uKBA?A- ZHX { R 1^|\UBmME ZAQѺEmJnj`Da|s3gJ*)tV M.(|k2?/Z(k##XIh)ay9T2|Is4=7+k.t`IdL~U]2WɣJYDI1ѣ2*Wo@a@ yh#=E9w ͹ 8h8߄5KM5hYkh\*{W]J}ZUgbz pHYs IDATxweEϐ%Q Q1cƀ" bba&pQYW1It D=0sFgo8UOO@$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$IԐ} IRb~peqbH$ AHҴR; hk(+G; h{;`/Ifɿy6W8I$i[$I$IRL%I$Is.$.żeq|H$I,I)_$I9g/I$IҜsٿ$ImH۪΢$Iɿ$Ie$IFI$Iɿ$I$Ise҄R!PWҔb^xc"PWRv~⊞CYysfV,ܻ?SR\8(}$iZwRR/eqɀx =:]Sƺ- ei2 h>!ISp^MY{%* |*ŅC MCY\>Mx,߅[ׯUx DZπo W)^}.|8f=uOzI}vL(ra&cO8ߟv7ZlupD( S$_NTP^@`> 9_'uV.u FD|!n<x}/g([ΒKNl9A? e7C_\_UT.p:Pǎ c߆/GF0 `'q >n3AEwϋ],I.KCNJIV68+:K!b߀ӦH M"$|$i7I1@?,pd}-ż" Da?{[{Rѳz)d?f+2|P$i )w_eDu][>Q?TO@gpbx$_Bi˜V886<}Yy{'Rn〟ulյ/ʱԓFGeծ ]y6IK먓OnǏ2VO|51[/| 4xrb>?-ZS>G/ eq'㩖hd@_K1St1 żUA@Z&R .Cߞ*I])T@X3js&Ro9߁7pTu_+ wHK1Ib$I=Zv .w([mj^ϫ(xFIuJ 'cU?\࿇\KN(If{$,e!0n)cD'pY#%x8?@`/4 JN'bxŀ櫩b9eq1!< hҚ&$q,Z2c&M#'F^6o䨾PZ}3Ȯ4[/B$_ZUT' Ż5=0żۧ!mߠKQ\S(˨6?ံ$8M{N~A _>?l︚: Å <6%v <[&)Do5S4_1Nl)X x?ܤ hkb5ȰÎc G9{Q)R4(I:d/*cMvbewdK?K?wf䟪ޠG 9p!{ iV(aO'q2ywl o/N1_\>6LA(Sfp> ԧf 49^]0M)If2f;a%QԀ滦c8H#jþ bDy\1|1iiп=I4imk_2֎)qa{G.bx泩]}̾FVK1H1o\ż1_ +}ۉx~i]K5͗a+7$Is_Z۰'mm=PepEgeװ kI1b~] )GJRT6e *2Ek?S$i>_Z[_S!>Efo,Khk9O,Hv1Ƌ\z&Ys,~d O5y$Is>ֶs}zH4yڞRsgPulb${b8]BY&jɰ΢$Is_ZmtZWe@Lq\](kh~dyݧOcYOGC3e߃4}aHBYLsκE9^]!I惿Jk۽C޴aCY\5e9OYc>9eJ >uH{CY ŴgV֐{w$I v~ Ob'!m'Ny(S_^YRv7BY;e('K# Qjث6f }1;Q꤉b!|  equSIn_7Y}! ?A)VoցqlGIϡ#ϮOWC@]GcP|(zu_w5$ii3kU cpJC|8{@۳R̛W"vS.7 k 7ӆƸ{C̛UC<-b5)78֠U;_jpIVl"IM1sӴzG4?By>@݁=vTOp06&Cn9m)mMϜhH-R,m  )\?L%IZLx4R3zE'R-|a =GC_[OL,$oaH]`бi }7}̥P&na83^!<)iH19CCYi1$IRL^b$| $C.@(LBBY3yy(AO'a!b~$|jѠ0x椟L??R̻̃?~XyI:N18K.6Iߒ$iKk[wR+RO~ !)E[ɧ8~~7M1eԧ)ṠPX M)a#ża?R4moBZ=.Yj֣b^?x ?}u,$IKGIk{.;񱽀_? |G=X{.2ƥCY\Xk;8_|8^e@?|acR̻P*|P|1覂ڊڿb>xC(ub+V;+/c oS?xF勇\2/R̯dc#ں`BY6ž&_L TDOΩ'H1o@v~~6WUm I4L]Nu,XT SgSwsF{bxf(3 zM,VexՎ eז48 t]RzWgrdM!EPԯ<&=$w[\.ŀmwGS}/wr &٠)z׎b1 00eKl;FVsTjm'Z=q I>i,b~$[ g~Zib.W/oa[&-5,NK1ߛ*#|k1+x…IAˇ\5kN^8c56eqeT+&.9BY| |Iޱ2x OA$-=6|%ŏ:jz۱)) uypPÞ~6\4n&,FuʾcU,NC.Z5(Iɿ4@(<vs%V=nb>ʢ>siS(4,e/V,U_?@(Ow>"KᗫPZ}L-'3*ݡ,:.TH1 |$'iPׄx~ٗPj[xm(iDZV+Pv^Ix_pPP`Ր״q*!9F"}UCY<(źNR;}1Z,Mx1E3`pi\𯱋X À[SJ߻Q\C|)C(BY\:n jN]NHJ-;)S -,&)~پ9>*x.U_](+|;^]Ƴض=7_Q#{2bވ ݭTE2UsZuk|"`VIɿi$^z yN^ԣ՜$5eJ1oHutB.0I$[IRL R5$IH⿚ƘKC:-'IZۈjNHa/͙󍁇h$i5'$IS3ӀܪKҬ0_ ITL_|@$I)՜$M_#){S;ocHKWs@4iXOfHÉjNHf/͉f4_|p$ik)_ IXLX`m eqyHrr⿚K%4:JWs@4} u-`_ equ4!żx L eCeM{IcKI$i K$5cǿm1Hfɿ$IRBY8=/Iq.$IjP@\ᘒ%_$aNKFb/IԂ&L%I#3$IjI&K$ IL%IZ$i"&$Ih`_41IL1`/Iɿ$IR&0$M_$ccLKa/Iԃ&L%I1$Iɐ IRL%Iz$I$I&|`yU}#I$IZb~$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$-bEHR_R+́-?Wشzf] \^$IA&ZykknlG0zj" gYϟbފ޿R% ݿˁ_'e%IfɿN&-qER7_6hx__R7&[y<̦wRq?^rYPgMIP[N~?˫R8Ե,N;MB%-_nbR=5VRwI0ޱXJ1H5pl(s[{/nǿ]Z2O_9mP%<Q`SGO6~p,k)[xM,%צ uɡ,~oX$}16;&=~!yOal<~}0| p pD({iIH1ߍje_`C)d)C%=$]Q)_GezMZ^HҸR̻ x%Z x;pfz֐b%|4p2Mu[࿁b~_yԩ]wgbާ$)&MṠ?;El .su&MṘQ=e[RM,&.}$SQ9&He/i楘N1 8؟޵5S3S)gai?&NM1-|Թ=_ߛb޲`$iRK0IHyW) m)p )R/r!pZ}#s/zص`$i&fR]7<8^F]%|W9&ZMFRn |?qK9)'Pڴ'y|b~<=`ǾciLrmKIg$_H1b>8qoLoyIDAT~bw#ۀϱhj )קWNm|<ҾQK )歀PU_N6J1@bվ)0a%imI1? $i&zb%#fޞbR&bGJ|#|ԩVݬ@$i1&zb~ p29DK\yw}2 (żS߁HԶ\#i֙KM0_uW)/b8?ow :uW]}!IØKETow,3)-d#^imPU/DRI_RR8QR>b:=شXfXK1=7$ 2sTJouAc7XSMe 8"ż~߁H"4sL%u0.}2Ծϲo^}Dz $uf}!I 1ԙ=x)X^b~~AHff_R'o;%jc}b xO_ρw:!ྃuKj]}Dz8ss?fLc}@/r~`w^ø\:w:W]'EfɿV wsu)死,|_] #|ԺQMJ0ԚwǜxuOT߬-BR'v;IZ} i=}A,@Υ*,oSxqPjyGS-UULuΥ*]Ǹޡ,;1\w=a,q?qm;w<:o?;\wR_L%.L־X__熲r S[7q%, Ro_Iɿ løgz(,^GmL17YV 7? eql Z}TbUTAM;>%ib& pPalBY|jeثmQ {(06,KCoDU\QROBY$K)ԘPn'{z=AC |aNR+>Pv4S| I]>5/9P'pSUV[6ǔANŸj?Iɿ&u?'EǴ UlC6=/'I4G 'IS3Ԉ-:S,>Xx6T^T{yGv Ų/xGcI(p_ e>%i*&Ւ7v4TBY\nbS:KFu;$ij&94EXM8 mGcMsn,eqfGcIҢRQٔˁo6؟$5_RSno`p,bt0$. wlKfɿolPӴ`' e!eqNHHRw`oj?Ijɿ&LtN`)PR̓T}q$iQ)ޛ7hۏ8$1&EP`aeƑEfOxsIR锴|]$ϭ eqz-#/;>ŵ#I J1 xp C7-+I0Ԅ:cI'<$Q |IALPn;~)qV] jh-;6musz_,IMhˁ,.lOВPGBṘ|dCv ZLS,NjIpٿ&`=1~;xFOoHҺL%5ͥ}=|)b3ZP,o=t)J10oI#żEAHҚL%5]:-]<>h ؽq[1$ug#N43L%M-_h8ѸT?6Q 5B`E-PW4SL%5"Y >ƙZt`3CY$bY̻R3O;#;[$itsئR'h&SM :k";An&$ukO+i>KjRW#A)w8޸<~@?]M9żOPv4$IZL%5tsdS7h! e~~@?:"~ !X$i2Ԙ:pvQP;ayb_߿.obXu,]{.I)IM:3-;:Ȑlᰗj.n 89|ǽ5M: 'I)IM6pacފjO)W__ eqe@b޻qH1H1?7eC$i(I eq5^7Sr)CYZ9ple)4ż դ>|cJe_RGwִ?8xfc P?b~bޣ́'p*64E9CBYy8WkTPLQy;`/% qb8 $Ia-[Us[{_e1P+"x]M֯+S~ [?TOo܃*3 ^ixBY\b~͞$0&L1Du"T/;b(<xթ]d jYD*Eo>k e6O1wc-ƹ8q)ϸ6_J1_@HnLoClxG(=H(R_JgR̗P՘؀*߼rU]IW}U_"'Kj+`+;fsw8ޫYߗ93#I5KjU(_;9PWt5X}{ӛS;IKK?}նMei$I2ԺPPsڮeq/ي9Mb$I3ԉP?wK߁}BYBYؿ?熲 $iNKL(À;%f%PgH(#P;I|K+;%P;5BYXR$_RBY@]},bMú;%$Iɿ΅xpa̰߱;Xfwy4$I &ze<:̞ʢ \s(|͂\KqՆ$IZ>L%͜PߦGciɵTO;>ݾciO;8@$Ic/i&8+ŽxTtݢ /q슛/+w_%+1߯}̶' uEۄr~@6>Xw(2Mn*+=ѱ)r$/oqxs9.sʄs?[(qh}ٶH?`MwnbUfyO;RNzո"}o!s7 5"%O;ym\Gس?}'kπ Z w,E? 6ѾܽOI񛞗A?9^2Qm1dnݽ]uKh;]b)CڝD܆J8կ!X#sk88[_g]*eM=&rKhAJڗ{۞>ȕ1C&(jR yU+Az Z^5#!K~ʘoÃ'3?YPج3Ӎ(fވW6>:1n DgW/) ̶{/f%a6VƵ,c2,BdKgiKHx[{r2}ᓑd8kz.rYh[B^U5Y2 >=Kpq-,NLBnS-:d6,U3]nU`& &w(j_O<]cܝsfda5jpǚ8%sE'~I:O?28F9PL;{qYc.cy ?ѹoRs6(κMc*ġ b[k|&5^9Q4gs0wm~,, ͏3~Լ*}*keNuzLk[B戳_,vn |Hѫ̪9хbL (R}oIѱI*"h}d)n14sؙ%,r]]ND_n-V:\ܒ礘]-d@`-ORd?(}7ݯa'|1fMbtRUws RdWZl_,!YtͺK# ,$-T9@atBoz؟K1Ƥ*<]+jcflcޖbNY/vߤ=Θ]ykž*IW~4o-b,掠/uWDCANGk0f;V3y, GAF(<f^uJ}dk07k_fjw:-MadWܤr. 7U%5,K/|㲴Ɛӎ=rNj7^Óc̬Yξ]컷?Ի{+5ޯ̱}^|ʖ_Owf޾6Yu)Vh EpZR;(\vص=Y>㯙kiaY/Jm%9$Ŭ>۝}U%,v5k_Y5C" vDIJkPNUƘS kkBk?W?uuz;1)N,)*O>f_S>~MwQ9ܝ7̵G )L!nO@Ӭ>۝y\Vgݓ|* ˜iםcCMNJ©3WdQQ֦(3;kq[EVѷ̚oh?@~VK Y95gaº+썾).=rJWԑTŝa/DS\z*ĝʼ_2GΰoEU'7i%E۸4ꂖWU^cOpk*gN{NO2t ۝uv(}:S>G6 [mvӼjq m>U*>8B}1xʢkr."c1V_e zCR2*'gǭdf͹$a1&O`[isQ z{^>0)'=o=I)q=~k1 nܰ\К v:gν1Pu3ĩ™v=,Ҷ(kPNM/L71e5pr\܆S4G{O@krJ"R,R +Yc?[>kVbnOz[/\|l I7 sx^̸fߛ7)n*%hԟ^3ij+Q9՝-t& 䇡z/}j:nړ'#̶%(\6ˮNصCRoӿ{(7hZi Cdعd{oc`M麳k\L{wU}#ڊR)TN{ZHGʳCOŬCR ~pÝ~`>= 5Y}-]s[N {ZTf>&lIC74^p@B\Mu=Jҡ[wv`@A&‡;w/ RhfBJIj ofz$dC~= U+ʮbу`M qa2Eq:!aWʳI٪(j[Շdf_vUR ;!X]>OFzGTeo22-w"'T~Np5Ԃԟ#;O!XM'e՞H[ y[W3wG>9lw"sk__?ICo)yZP]Ѷj)`M= .PiiP͏{4wTujRnfsY럃{yIQ#N5+ww"/') 0Νi1aÞ䧱WnձBk(3GTMפι(!7Gsg9X/|@"#f"6I{!nW3T\|{{Tc,!ӵݪ>o#~ɬμUB//MhOjعU,)QqO <ܱ\֨#Hc$D4ZQFU{ J ǩZR{WN=ܝs7Oר}b@e_ռs4m65gI.q][l5f)ͺK({ #uT~j58"tQViΪ[_sr&'gU]mξKt u@2l/ǪԜ%EFNdYLj?WU7͑/fTNq\9[9Yc.+L=qwGιV1%;nاUjiם$sAZcܽ8u Xm *ܙn;Zu20RLY= ԫͪ):X>d]1wyq"8Z.q=[nM7ҋ3(߉ǝ}g `!Xn:gu}̰>ŭX3n&6՛gPƭsʸw3]ƍ˒?IEE:B/;~ 7)à{n1(I 2,椈PgJRBý=1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+]VIENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-milford.png000066400000000000000000000154351475306445600252270ustar00rootroot00000000000000PNG  IHDRMwiCCPSMPTE RP 431-2-2007 DCI (P3)(uJQ?%OThbvQ)B( 1^Maf$ h_+{2;iWnX*ѹΏs{  (\[ZRP:^̱⚶-G} gTSkÿ}1:j`X;u-U"&8s1tx rGpPfnjrI@MHЉ$D BP\JT$.POxF1FK%yMSL$1MQc]Q@@(b#<8`_03;37;bg=.^B+A+U9!Thuy)Q`(&Ӥ3r |bCC`Q+JTk,ן^G,X?X%Vh*}q+ZP/}IE+ -<'ME4%ܣbF\`X#UFJ@e'H<-H# /1Sh0nLwdbF2qMhP"تuڧbϠF04-+ "ޙP%Z(jB`/-ݽL_C(&QR_=|ZUNW(;0:9lHQ(&j۵ @Vh6ҽ"B! 8z ӵj϶騷mbhZB(0zWa+'z &a6fɮ%lTe"pfO.Tw"kUrDޏS?u19K)?V_f 4K\ΨB'wvNycɀ;?L͛*OVOmT7Ba(nT١O m'\%=k_@N/4BIǡ h @FQ//jLeWG\;}F1B(խuPX苳TNK!6n !(U߉/tBvlX'Vh m& ܕ w$S{ Ck2 4*tG ,F,?E1PUe'( !NJ<ְJїd)om`=cKarhE61/e{?]:n@$7fJ4G{xFdHMeF^^*v8S-7iEa#+HVP"^VGZ^X~r:-D{wuR̲=|lJWڇm|U`=0 Ф%o~WST]Uƞ"pigѨJQ$_:\M[+4^J:uOiU;2+ʛF%_"vec'n׳U5+4,Wɼa~gcMаꤣӲ\^0>l+ѪYթgXPtLiO$t>..RV`C?<1Sl]e9 KѼJ mBh}XPv3MՆ-{jݍy+E*6 UlVʛ9BFTߥg#O jut;׃ɋC*hүXiɺIJSuTE +ˎn{,Mqj&oo3Zccڜ$9I (+pRr_;WϜ;@XP\|ɸPSmFfѲ巒rYy֭wqw?ԫH^~>]y7 x2 *sekgYT\|l՟t6}PXرkOfV4o)"雷n\./?0̚ wM_dٴ^as:=e!F&KP9g`%XBp j[U^r&' 4ĤFa??JMO/~əRbQO2ꞏ`fAhXBB8B4͵\;ryЃ0̍ݭwMwʥ/_V1*y\ڻm[]٘n B+W@!"(_XDd!$RBg8w@iĢb̠ʰ07խkZrRgT/*˷|co6EQ=Brrs ! Ô9:8_ZV48X YwY h%F[gb;͜6Rb0Y*6U']+&NPXXWyp媬]ߗR''VjXRgDfvvNnwQqqʽ{l״'"rUEz2tcK,0_.G`^PɭM;%%\O>yRVvvv{ZO^jkCNSJKkZ4$H͞9w vvvf1IT58<Xʀg +7W,7Y3֭Z٥Sǚqq%%S\R5Z}BHXށb/>#h4Q#7, V Z= *+WK K|2ɥ LLv>>o7f{Kf?_}dfֶܼ<6a+5b hXJN]\ !Jjq(ޯVq55-pȵ7tQ#GpNΩoW`;tiBԀg*'of[Ά[2[`DќbӎuDfLc4l}W}[u:Ve]:80e`_58@ӺF>;K/s)n& )u* BSgfJfQ5zpB O 3B\ӫ'Օk?BHLM_Un'S'S4MӿcN)Nwȱ%KT9ӧL͜ZaV<1{IOA3NjiY(G.XR !1lT*Q1wRg0)&͜>u}/GOzeޜe#/V.r9wcׁ AJV[jF9g6A}6u҄|=N?_螜s>4Y|ؐAK-<V C`&`eH2;j;3dXhK sf҇}F' k}Y6ZYb!"aOBfNb*|ԣ|BHhH7n+ Ϗ״#{'\z6kBjZ EEEEy{ 6dɃZo޺tMlQ e23cEgM-~~ڸV  Cl 0ѱq)wyx:{ԙ|}|!e2sS&N`0+6~r1G:q,{b !k6l|nB%&nu۵DN2{6}Uѱqѱqni߁CѱqB?|+^T\L9q_M=~s!k6leol~tl܁CG tqq>F-[\dFY޿>Z*9w[ܶ3{!$?`[hZOLA/;uheN?]~O.e+{{͊s񒝭7o$t;%.GHHZCsnxAYyyGO];w:]˳e_{i^.'N$..Rl^UFQڷ O vQW0̞<=؍Z 1>k7&czpws[}0sI6ʼ9"Q՟S7頀g8髯ut;yŵ<|ԅƎz.OoBHbO׮OJIsSgmll~ k(8ˉ7&ΘAI֯0vs /{s;R'+W/}Χ\-EQ666zHBwAA^ 6 ' 3cdngP,//A]tLpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCAIDATxw|Sd'Mm:R:(mw){TT!u:E eleliK)td^stY >y&A4^S}[|7irj!XAs XF#7ugRw,PU\\_P__P" bkQDxGLAoTo ZLA ܇W癳w93j_(%=jG {^~q[n~t?AA{@LӦ52RzO" 5 xh@z#oYP4b/Xb@q[hJK5^T* ֬W^; ]xm{jKc+X.yC{|vWW<\e47sjZֻKvco̹q3?eE -| F(QjGŒSFsփ^|44d)]c\6n߱_]E.?GW"s7ƨTgXv?7btVBæj]Ns>RVu/4-.1zBl'ݧ4Ee_j=?xlgtp䗔-UU۵wYZ_W=G]VHQ:cK׻l_"˴Bu$Pq6]u$o&{EeiˋNLVghfsrR87=U,o~ uTU^{0+ lߩX3-zV}>^2Y+69+=}cb[\j;O6EsU IZ;0_/T1g*!ڃoʚ+ֳ9STç\q/W#d7%>]BeV^L[.?>52Y l͗[1ܫZۧ6D2a_$Wb 1岁7Wd ij6~;jY׸CTo.ku~Oym-t^eshWnu]c yޞGW(( q+|V$:||poY.#mwR iTYNIMS=jPԔDvV1E[6-|O@k/,uzIsfL?lCMfsNνuw޸~v ._}zwMMi+oܽz5豳L'/]v|ưJ X}`/R/=~IȪ.l ^oq3ýy-`29tTֽrؿD#k֝M(|tO_┄&TʺN! aO8r*E1/,ӹQw *CPAJJu=-<,|~M%L R'+?'oFEtU=Rx/`Z$ec2f;5y X6VL.cWz&g'E̙V:I;%,+<:0sB)#^y^"Do {uclڰanp7e"_ɣGꉟVc5uʘ#?o[#ݷS!p3TӰZVW) ۅɏ'? &˯Zc|@aL#|1C2?2!hک1TK%Ց־z ]s'`ѿgZzM{؏ÊT?7{s^zq]6Zh `Ys̋!A"aKֻ3v<8A"tH/JY>\^6>kNE;+khϣB9y]zNJJ"enێ-^F8ҹJ+v'O"z B)s"W+tpIDJDc"b{f\ksUWPf1nV/ܸaIL?-ٜ6=X Z[h `]vee[rrN %d8BI0bQ~ѳLڽ[5ׯx{׼s1w͙#۱Bqq|x`{ Pk\[Eii)>ydLKzVV}}}PL4>obDO.+7qb|E.y 0[_^>b/>]5!!vɧopz2  "qs@#QzcldfXϗ=\եsG'bz2˵yY1A Ɩ/Go+\x;-vw cb"vCd!hL0*qb,"R6[r9 ;ZK.N/fwRSWx~n:Wߧ]JY\>1χ"WԚ*+1SSz65m֦ O.'spvez*J[RNɴt4O"2XeW}w r!~z-tV1L3P>7d+ABHi)a$_MnAS[LgvfV"K5/6cWcFGH'?oΫv/ӊTAV'nAL 0|>tPb7 es.Eyi/49V{F3>WklYy~yZofڮ9xh?u@J)튏re\v2M/}v BH>5 "d|!ٮ @Q| vqEB4M3,[!*2Wo'+5_lF!W<IuĐa(j kv" "*%Yj qSGs Y~RNM>H4FTCj2 `~h89^=Bon_q?KwKS{+]5B֚jr>atӽO4MiA=u=qr|P/ө̏CNmg=#65>/(nz.՞sO"~TAwj6S0*\3-dX:/τñZ]{r֫Z{-lj&ݢ"{/ /x<՜gž`ZK/6}l\ q1cOg`E9 | VnSS'Ԭ؄Fa=g&,6eRO|e{ۂkMoY[br},WoN+XUB0V;[uקwSf0F >_)2_ix +lX?&c7q!Kfn٧}R}޽XH өSbL |<ꕧCEjztT/7ȏ#"Ղ#_~jӒmz!qm%t,~rNқ_nn`=jз>ɇ3g|aU-h !( e`?g>zlQQYaaF[MיJ' F&%=>sBR[~gɤ؟.<jX {݀"hG*e 3!tc/,tàEqѵP`-;>fO*VՎfI8uL 9Vg]s@'zcUҮ܎_%DDk!t79ϴboCh%k4\vv_drj7pˀx3"F K\h|`/O`ZXTa(A^1vVŘ^wQLxz3׽M,$+[WAF8 lY 4rjOjy2IȘA^DC+Wp?dS Zh x'kx5[ɝ8 hV O*Q͛w׼(J~3ShB *L5&iP-dNvAmDrHķ"iIab`~=ԝdY~;ʑ^V|Ϛ6}4YuT%S[hܷujklw%tWlP f^nXo~ͽ Y4LxRqgoW@Y i1Tm1((ތIL9RD! `r_ M2 4ve. b؂(!F22'zE0a dLpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCA IDATxg|}'発`z#*IAHhQbINb$/$N>wqrI..mM*UlVDJĈAD_%S{1b% H}Cp7=!DĄGǦ$IYɇYDPd(onF,+B%ѓ~APx"#':cq0A"AP{#G録ժ J籩ݡl*PڃUVD1(]mY 8:1Izu"˲(RVHD8I\}5`H :2a;-]&?2bx<<ϯv]Vu;];gb|'RUaYx~U߁+J+vuu?h4ٳmnnEުBd`"%\8;R>!B(J['ORU[IpKLw%]yP MI*Rj :00N,ǭ[ve71E1L{2J'IEQhUqLODQH٬P gc by A dj*e1" 7Y&'JҷDOoBc\Zyuyht Ȳ=)j^nk6%' , LKmfW]Eӱxl|2}ѲlRˀ1RT20{o\^n?340Mp]":191:: l<ϯ_ephH$NֶaVih\Uzl@T ,hkWǭמZx0Fo'iپR0 lɔ Sm?QIof2r ٹs'˲;:صM6F]VcJ:9% \m\(9: " h,ѯk));:k@l*Y^Kdjܟ,7KJ2(E_Vx]eeUSScssf[QX6722222eYu鬭3m O8Y{{cESNaM:!dttVѣ~?L&}A1B閖V!G#D(*++khh/(z4s|絇M]t:?0;N$ x<Ɔ5Ed󍎎  0 c/WUUVUV:2Lb1m壣p(0BvWUUVVVVTTX,+###L#LuuuvRaZu$Wnz\,}`8{ˍ^-/5|oG_EQC˩GyzS?8_v`82j??>}&Wo⋣<[|衇eeeU޷޷w$YF3+%qq{[wTVV|1/~~g9{c0L?;o3!UU_'xBUInI4/~KVͦ7v#7=>C__ٝd2?闿_ix~ӟ=kW|gO8(JnvGvݶ 7w:ՕJ]]8n͚;v566^jUwod~M&S[[GkGtÆ ?/iVUfBAfr=.sŅolŸ2kjeSbVnU]_ʭS\XQfweeznB*$ͼ]R >aT:}ȑ'!ta2W‘req}?7ԛ $yTvrB_x!n.f;w(& j,ۍVt!$#Q1 QUM!Pw9tܰ۸;B4. d6q!Sorh-H6/\xMU%7n(/7djxd@Kq<}֭w:[OxhȫvXxu֙Lh4zÇ;(!w?CM *+\.7xjzGr7!DO> 8+//z㍄p$288[q7n^mEƘeҲJѐL&GGzzz)-cm|ۯQZUV]fJ4&`pNtRQH>9˩-H$^IχdǏ8q߽U6m?C k~޽t"!x_|)j |0#tA .w-ј(!H5m`.F VX\8TzyAIgk mhkbam۶}Y21_*J:l7L$dfJٽNb1AuU >ݥ,r>))w F?S !Ddy!VWWW[[v_  W_55_wi2B4MY(//]'ѱgΜ._,~a5sbٹ;ܝK:wL&SHl}أ>#GoH$. +XEdY.+FkX)x\D(l 4mVd xB~ k*eKtF.o/}f-/4(q-^h9h4~d91v\sC>oZ__?0{mm|C!!ر㗾Dzluu ;k[sψNWbS]]A6mÆ9kv{ڌ33͎iB]vşe׮YsH+****+f2`VWU,AP 4u6)).ib$&B0Fc[Ph&#kp4=}ފxBԾ։ jYK!tA'Z91!,lV%92[LDlV Md?EEQt$_i'Ӌ}*BEݴm{?x^EQV;M&i6cy^REX,zso1 %%x<>ɲfMR:C؜K`Y6.F65%`UU"<^XL\LItfDgp-PV +bq1fbb2-,&c>sپiCEwH\YYp||c`lq&+/K~5V g4\P]`U)Jg i"zrNhOT B6b<|_vvvj3Vm/!M. VBt3CCپ4%_\7gp@!Db `%9DcBRjnn\x+X0˲`&\ijkk.~Q=~ :x\Nc(B::65\6,[hGP$q ,KyGcSDBƄ\~Z8mX,saUSi9$IXbr&B(03k8K֒;̎)--+۽;L!n]T2s0g̈́ e^-K:=ݷv3ٳ/>f˚K&''TeٶvaX(?{_0 V: B??Jј Bfl؅ɔ ͲYxE dds "ᢽn:zٓ\jh416!_U>!v^I(:7gs>ky2eeٳ^psZlЃ>Ѓ,j]~ Ct FQh\lXE̟X̬e&dUD/lB!"Q!W9dp"1!T#a .]kk<( 4bcRᎎCqSSS l %˲m8,$] v)0/d2y``qK$gΜywb1mMSUU5gn-UUW`ExXpt:Xy9 A3g5k󷒬Vp&lQ$*$fcdrFl" z=SxqUTT4OwXQ_;?޽{|׿I ZP__߇~(IRnBH:~7s׶!mۖix<(2<?kB~)7GeIH$F>f*!1v+ g/?bq1<3 c_bpƙRg$&DcZ@ӌƛLl0[gKFcB&u 6^Qu=iFIxrci*))ٵkװwlUq]{SΜ>384sѪ Vv+WVjZ6F]U^X[e~ٞCar*Xo(DQႩ'@zk 2 V0- :9'*8]z]\F_+嚚05Xl]hx(M-kCbZ [6lh?rssc|p8NɲBӴNZ,.w޺cN[cFm闿/SL(v׬Ys}~uRovlt,JrfW1.--ꚘLR^v֭]]g̬zz2o"(e++rt|uuB]9akjj{챦744 ɤ$x3Nf֭;vl/--rUUvA߯f[7nakmk#|p?qbrb2LȲ̲l(/mkkk- {/ k9h]K֖܈Clbqf{vUn=/#W~;]z]dYɷAq;h7^0so+}[:r72:$Igvwjii֚AӾK^EcQQY5u>\nG?z4M#G& m6[}}}{߯p8r[d2yѾH8b5յoxdY͓BӴ嬛%(ګM9J ɶ`UUٳ###P(( FY[[Р==:00(JYi-[֬Y3?}/ :Ҝh$irrrD !t:z} |)`L&cuuvnp=Y(jK s;՘ﹳޚo /TUB]nhs)MN?vkĮkWe&^0+1X(#:{7 KF6GkC3yѠY,Xs YEy[]3sלK|J󢻼KmcE4qj,x^iVP VVtF*j̙sa 'ēgC{dO 2[(ʹs%RTUa*.3U~X[~kҜ/p9+zߕ[5XbR:VM]To͹FXME񪪒I(D/}E!}1ټX\=\Iɬy M%SXchXj^c[pUY*SMwfJwocNٞZF8LT036J.{(*]gCPIJT8*tMylЯpG+Vi"N֒9HTɾFb(U#+bC1=a1cY&#Ԩ/ ֖xzbzUg u9cATO__< O[@櫭27bVo"\NP䚹3ް +n85VKK=+=\UKljs UJaު]?qoȍ*+/+|QBk>BȨ/$-Hu}QO״{"e\1./5|xT߼SUnR-cR\V{"XZSgek˱Wii<}+ !-nm\bflr,ֽW4kY𲘹-7mqدw4._Sȉ@0]A!kF^{\bqDWŸ^cvlrݸ(ʪОuɔ<KHdzA4+L[7:,櫫jpQ Ded,qTo,zIlb7ય\OX= X$ʜ>>s.<6Ź7_*: [9NMõ?$֥B2K F,_7Zֵkz=vA^!$#~o|x4+r,rj, uk`Q2)'GƒSShTe=V W6TLՕ&.q@ e'@:ʆB4&R|fJlӡeSizA%5Ba! )YIVe`i,s^O ٬m:n%PTšD*,$0F49ڠcx0+ X X X X X X X X X X X X X X X X X X X X X X X X X X?TB&7IENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-octoperf.png000066400000000000000000000252231475306445600254100ustar00rootroot00000000000000PNG  IHDRMwiCCPSMPTE RP 431-2-2007 DCI (P3)(uJQ?%OThbvQ)B( 1^Maf$ h_+{2;iWnX*ѹΏs{  (\[ZRP:^̱⚶-G} gTSkÿ}1:j`X;u-U"&8s1tx rGpPfnjrI@MHЉ$D BP\JT$.POxFs?L2%羼LN;oy^AB}B! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! S[Wh] u[] }!<^n^`wrl6F+ ]V{Fk2=V! ~4Ry#Vv9&+&1!>1~B}OPaVzN5lbY"l6h2j8 ? l 􏋕J$N ;-Y8rPу7rlwr`0bDl6{ȠAᬀb23$!F.cr/ e6Ϥ;phn^N/GSYmfzVB}=!-=cӧ[5u 6稞I9/ J;DkyEƌz/?M^U-{*+ ۷O X{NUu/31`E!7î?XXT\PXҢt:?n1<~&B~bc+-+}'Nn^n^~aQU?! >#I$bX,{v檦ĩ3'N.+prI ֮t~BîEDB{o!g*F={q1zvSsz!aZ}؉ޭ? ^}i˲KٻQ*^Z*cm$_d`R?B0X]E=?qJtÆL??`?ɉK%kWFEF|  q5ڞgX?K<>/dbR礜jꜻ*Uvs0XEYyܾĄxo//;jGtl*u/7fAw;2%!o1Q*`sXWmKU y%seB]NJr׳sO&'%NNә2+9ZШ6u? VW557_JU_eK 4-oT[-p 'Gx`ÛlT K>. ,WUc֭Z&JBQ˕d1DžntjaQy@u"KmtgRLתܬ] (_W.CZT\RSkYb<0!:N>{< W,">;_qDaH#~ ._!BCBpB=I---oA3 vfT>4˞HUx9<*rAgΞwBTt:~7`u;&W=C꟮UkP.QSSb:٥b(]Lx`(V6FT}N9UUWC'q%EGEFGEuZ{q-۾G=C^Ca:#p߁C䱏O&?)fc q Ò嫚mjU.]N%x܁\^Rؔ^lP 泒B?(9i֌ּ9+`u;QoϚ!LfbsJE:~]y\ݡU \TbZf))^ V{^=` x&zs`uJyƵ,xPr#oa1 `{;WӯOM~ܕ4}*:̖y˂EOy>򩷧t/ԙ׭߷oǾ>>αZKa:Tsſ> F3qvo) ӭ_L&/h}՟<۷WLUwɕ Ш1(YwUJ'{Nc3].jTdY&㽜|>h>l9ojj**))..9r\^E>YXT˖,{ܑc'Y3cvczaJIcո^RȺ}-ӗv4U ˹\%Nk?9ה~R*`Gz񇆋foQR`қٕ*`o;&0Le 00`a?~_bf.]9pwjU\cFߛßIԮS<5#lOn?!8u:?<ڿSyT &6$NdhRz2Rsf+w'q{zf]vuuԖB}{ߛ`u L0rk FKHK]ԉTͺryȣ+Ofr1́ Cs{KtztzL.{}R:_,Y~s0:JiT8Fq޽b7ߧWSG9 8̙#U K2j=JI&d{jrl}VehL( 8drL y|6W\^QQWWzizzX8>aUmh&`@?јhΜuJY32]}JUŘ>,pRfݥQQߥ5*)T530 uqIt9)~XՋUZhџg1qђ@q4¢={_NMk7_&Х wKƵ\ڴW2*}˩),k]nܤ&%@eto?2OEy_oKK˕^ιTvN_^Q=]K$t~1sjn wkU>0PW)9uO<ҧxUL|L%"R]R O[ #&*T_PWWq(A?v[ݶG՞p܅&N?ޕ9yrjZo3`κ}@`:g4CV\-klkpY`0gMpJ*T9:ndwߞE>7" &12p!䲦 viA uu-F3kV큜:seZ)M &K5aȩ(nFr (r46`sDUիmr̬N`紴 pek5d,#>^L&ۆ"z*LjZNLyxӨN7n"Bp:=k: @.SzS1XVCOU!Ѐab.-Ɠnԑ*W+]xEFعM4@}{L} >狚w\Zju|F_VDEO>֌7e2)/A[}? 00lڞN}ŧxE_KT+͖Ԗ|kKJۥL&1lCqWq+T~Q#sW"B͎k]K[o#7½چ;ToɫUӶc;&~.7!crr]FRFs˫mFFIj}nt`-W?XJղiVaTT'NIȤΝ3G"l6{/=4n;O]hk7lF/ 32o|A['Xd Vr/"S2b^|O?o:>F(Ο;'o;w++V#Ν3٣n] @ 5]f0/ɩ` op;_ eFƑ Jz&U[^#L{sJ eU]*MUKWLcX?D}UPnUC'*%8(plV~Ky`葘z僿`id@b%1~f;1Lz:JrJ x1Vo+-Z'Pf >>gв3Ɩ`uI tZtךQ6g4 VKM^/(5fUKݐP#T<63ֿ蟬 Dp;:@?Gz!W$7#N\ٸ!"[`|(V__S{gSIlMN5PިVnD+kkwJJmE8v/v%=u욏?qe+xſzge?0W.[LբzI<n%BC+l/5Fzmz-֞`<$c{[./oUlnB%K-Qtqރh)o[`Ш=\چ$l:ؔ 07/˶/m*dAaaKZ, [j9|B||}_oHVߓ2Ljd,iGmSz~GH>"ľ^[yU?,BeïUEôr{K<ۏEy~Ϯ)Jͪ[U-ucl$|6Yg&ZZ2T14^]Kx)/tW҆}CqcF ?ZY[g{m5UB7[-{޺}'44T@WYٟm@=s;}aaS_~6'TTZѣF8#?Y$:Qư]jJ4JzpOxýeGo7EzδwdžƳԂ3=Tk`"6BV>{r'QÝUq"V뵇hoSuƏ}߁56_kmW^x],+1#G v%Ue29.\'Dj˧miWE*>QࡱcK(M]l;ܠIcv%B%owHCctq)-bƆG6;PxB1fy JѲYe6{$GEIi9uf}cY\xAr/ l %a~StSжqj~鑒}7 ZKΔ+usUȈW^zz8oȹIQQq}0={3ߚCv8FO̬/# DgzR/!Je{d7x{ r0ʖ EMJե/&Ҳ3^c\<OXJZar! y -zSn&Vҵf W0}xE K/ }\2dW䊶+ý'tR$%\Q 1!PI^Go[*̚3k|D_`.(̑A=6)/ܼ}^k;dg-[u*WO6\*nƖh1|}[sųN*[/VzNʻ f wKY39zJj&]yE'?fDOV>ǠIcl5A68 .@r%\bW g -Klڕ~w`:AȫK|B0XsT͸p:{·ry]}9;.1[;FznҪm᱙o d=gL`0Mj%|H?wy9HSagZ1)L>kf+'oړ]ۮJaGɡ1_^gV,\f2^X :`<V@eu3O>dܪ`uA?u L .':*8uf QLD**= T:}ʤ- FGxͲk7@^+1#>#FVH/SvlɄAıB\{N6^-W*X3>=㜭LƄ>11K͍j`̶vK9CswUj`1$%y w ˥X6oHK89 z^  :d~h,=u "$8xqX龔^2Vg,hTyj֌zԼBFw} g T-M?7A>ZAՇH;ng5Ԇ-r A38N ``3tzX60) z5}G+ݝ R3ڡt} bO |3H rU MUaviy@`>0Xf+U]]lAkҙr>l/K3<HDGL`uTt9uNjbBK:!&ݙ|+ Hwdž3~]zjN`Q+B=lKW\b*ƒmiQ[ڠT)N-O}N*H֮Z%uo!]b+U_|:WRLTU̱1҉}\P*[mozRsR5בVKUvn+<-%.c'N}}<^bG7zAu NLsVؕT͛S*ZgyrC)0>ȃ__Q0jİs85B;{lꙔ֮w%U-zJga2Cd 1(F{$X)/W:AB;`&[zLʪu};OE[БcFa8LigJՒ}#3;œ럳~!ԭjӎ]O1Μ]ncWS*D. <WTR;y{yxojMU?Jά]IWRh4ΝJUʖtaa4Gp*B, V{7o{d'O] 벟dwgo}dKWR:r'7Ϲ;p8cGcs.]rĩu6u=UI}J^Usf97o ؾ}`'?޸T% [%UJ\P* R٬PpD,%D" X !`7lԹTEoV:rl-!`tБMnTE9 պo޲]h2,a">V+?>'JWU~#0UBVaWU]=o3UlwNsB,TEYjEZzY,TE!0X'S! Vr3\؃BnBnBnBnBnBnBnBnBnBnBnBnBnBnBnBnBnkK*IENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-oikolab.png000066400000000000000000000240701475306445600252060ustar00rootroot00000000000000PNG  IHDRMw~iCCPSMPTE RP 431-2-2007 DCI (P3)eMKQ_CȬe -*H܄YP0}4PfFJhmj_ڵBVEvnEIsK{9/s9BN˛Neȋslm}uWp!j%Jv#B}V"9{ZW;;65:8$]KLa">LpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCA IDATx{Ug{3  7A@" LE2=*yK⭲ t#Bu"O XP^Jr3({ٳ 'ok^< 0 pȞ0 c_Ì0 a3V0cjQ`X 0 aF1c5 (0faƌ0 a3V0cjQ`X 0 aF1c5 (0faƌ0 a3V0cjQ`X 0 aF1c5 (0faƌ0 a3V0cjQ`X 0 aF1c5 (0faƌ0 ahO`IX{~F .W[ONӡ} lݺuʔ0p޽k.]vǟ}{:wկҚoذa+WU_n5?=35YEQ%qIt\?l 1ǎڕg/YP*~x{:.#)6𡦢B8*UV>@JKKBvTHԫ鸌~)//*+Iґ}jkt\ դA@Au^Vգ$@UUxx!\ii鞎H^ץhll|ϟ_W _zIT@RxDl@JqqўjWʔx#h ȁ뾀^n*SN{O%*C(,.)ރWxO$HQAJeULƬ!}{˯6/p ǯ[>&U]АD[RZ0/٧_>$>Mh (// ^ktPF0cXu<ثӏ=XmeEW%}SRx^CR^^" |Ǭ챧2@ !T(%A1\PxU\jĉj7WTQ=IH _X'!"H97iҤ$ҒRQ!okiYT~dVJ$H#頌.`ƺ/0c=*QA9 D[RRPU:=HqQC@@uOQHZ#Myp̱<;naU\\{MBmQQ^I$>V H""I`/\*..Ai*׽u]ȏ=7(l‹]"*R*4dMP*CBAZ΀C/а xOG*rP(<YVqnO>R "S FX?쐪 z ;g }JDҫ~bvܹnݺE͟?iN\5#9w{Ƈ3z/|aPFX U"f)5U_ƿ^~y?{Ҥ.z}:-۶疯kCkDv}U:>b.q}w]_mv${n?3/"@=8ΚC}\P 2 ^Iknn>}׿ՖzdPDcVy{jpmU#XLݷ*%֭[ZWRRl`ܥm> .Ty϶w Ypa?5kVqqih2 ڥ/93ht3C'd!RСk׮tt;]SNE(+׾Jg͚)~W$ɓ' !4p`tB " f͚$m۶}/r¬5 k]dɖ-[:eccJHCZ|yU~w]2֙3gKHE<Ѓ;co֓'iEqԴ3a-zd[x3J$BK.߼{u„ ~p"$t@eeߵOf_b9&Q͘1#NV͙3Gee瀔'bCCCz̙Ct^5j'O$B e`Wɗ"嬳&544&/6l((>#-[[U__%K$XUNJd.5N~"8!9|؈k׮}__[ߺwj!yg$ r޼yAdcc=S(\teܸq]w܁#~oHMX ƅ^(̾9癄ڥK0bB N O:m۶%/\Б"U9jԨɓ'#A X8#Y  % .o7ܤo|aϚ5+a՚5ְ3@`Bcmhh7cǎp¢T{-"$oOR׼y%dsbРA?|.]:l:]{HE/{,IF71c-n 9͝t y뭷**$1xک%'}UAB's޹ 'OD*0TٳD>}z?t~B;P2;ሊڎ :ĉdY3ɴiS켋s+{Ƀ}G:v '~N+)ŋWhXhQUEE[ȶ 2LB<0c.[liG}᪪oPnm,/r%ц›o9a jA+V$HUo+a, ;SOE.,H]#H^7ue+ɧ.Ngwa͚5ÏuXyI$]׿.ծS/K]-fn8 Kկ~%p S83#ABo;a1V!0p677'EU3LEeE RB9\ <dǥ1mv ȃ~}fu*7o^٦D6lؐGUUUmƚ݆uĤhF~ضn}om)T /λO?JK/yNEv B'fD?'OA1#ZK,;kveF1cJ2TUO>NU;Nӻwaܼ=*H-5m_#+Rhʣ(#!fb?PDtƍN΁Txʔ)\$xѮE{k^uU>8eW\`.}d27x=| EOB_FUCByWshx;xRۯgOljFޝ.8{Ҥ1L/W3n D4ű. w~NUB(RQ _]w]& 7}i}wDƍͭ`9Q~St]otTƀK,I B5(}>5aOZe/]d]ҧO{Q=;SJ3`ƚ?O< 1Gv؉'z*l|*@Kiz*꽟2eʴ{kKZow~O`^ *իNPґ^=-QM:5=>\dG/H!#Ə?ywyX:%O<],?W3y7v %u8(͊*C:ݲp*RHH.U _k;R[<GyDjCɯ 0$RG(7O=9C$$&~Y|Bt+ !O۝Ǝ۱\hQw 4rcƚ?o&aUYu/gPկ:PKtwSkKtME>d]iʕ'p=Ly_\uUy?E66U=ɚyN:hvTZs΍7w&~EU㟼hQ+&NP*`ɐ!C:28ri=xx/LBURDL>$XE$BbPUDq&#u6܆.Ņ4|pޏ}:mڴiWqF3퉮'UW[٫ e˖ 񾘱OkKfdBdB rMq('8^QUUę. #}4>Op9\fϞ=xX":8J_{ 666(;J֖t:O̙3go涴4+ tDA93PzGOאZ>%.zޣU;e9e&W0U[Nl,--%$4۵uLkkv$#"1ax震H ֆ'yf~ <(@K pHUy9\mH}.&no2u_ճOm.<ђnȣƍknt^zC?{҉B"(:ZYU =R7ޅXSwX:Nw%U(G$ k&/A8ǟ|rg)^=v657 NuXoK_?P_!?3NG>geeeQQQƖV'H=L PUw{ܒt3!AԌzQdHv84IU:W-)-D^4Y uJGx*{K:I*^Y34`[oK#"t2Oƍ$3^cm$m:YvD^bwUW]|F;j BQsd2$Tu|ΦjeĪf) f"BdDsӚ 9N?d<$PI9=ve٣GO?ݻW#"^oϙd\*(yg y_6oެ"*XVk NǪ:-3Z3_|C}=%Г?>a?G1KgQP~+'t:{5oŊLhРA,f3xpY=pBXlw46Pco)xnDm.VIPW^ˋ%"$NKk())UӇp+X>צ[mnEhst:MɾW]w5LW\17s |UmUuDҖ5̛;"n-^ZG9;1c͟G!겇UA]%omh "!N=(I=N{8acC eaI6no<'I Yg!)G`ӦMcuBR%dAUuMq I:7psV;v܌& R pοtq&Mp^$?OڡI)ȍk9G}yjUw >T:UHr!UT>~&cݺu Շ^f̘1\Q* [0rxöm k9s"{zWP-]U Ź|2$&Xg̘N+;@ۿ<8J+BUL:ӝ)Wc+{'pRb->{ 1@,\B7|$&|hh ՖKCtCӃx + /"T{ygLd2Ij3fL޿غeڵk;,Y3P)喤ӭT 8xq ;Ah?;E" 5jsI^.s{Lb-9 Rmf:w,W"Vh8O>mt];ɼ7sٓrzDg{vt H<É|?o~{C6k[i yfrn9xↆ 6I};ۤ=^̷/&?O^.<x_~yhtk-.)A[dUnݺ駻ׯ YZRzm_T]&^jiiT@2$>jA:ă=wi-$slm3 >PffRTE u|vz65ݜd]30rcƶ}YsE]S7زe(jǎ7p3pz}vbNH]~}JvsΙL&3f؎T+(^kM)Sp"IQ~u#?X }WZ\D E$OgK%Kۉ%{W\PofI&9j%0\L[n9/Uƒ%;v8‘}ݹsghU5ɜ~iBq""歷J(uءfu[`An.ܶm[nՖ-[>vIȀ: RB(رcߌ/WUUv瞛&f[nIR!ER?{U}JEAD("=3ɫ~E${}<|HaIvg+WTdN:Tۨ*^55 ߿]Dnݺ$777{B٣g+嶅TIDATI 8>1͟[p$rΧillܝW^ݫtIO"E^}YgdQ[2Kwc.]GEeKcwqBaZH}wIqqđa߾}{IKKI$ىsܥ]G@&*˓7l$(K׿&}6tL(/-t4iӦC9m/K8xW\9xAAs}z-Z(a~}=}lI|/ $2r2d_~Ϛ/!ݡJ"'A:aB}3"wĉ|ɲ28r 5w1P(YgޥO&ffՃrQ䮽oB(tŗ^j~4s[yEY:Tlٲ6? "p„q\ׯ 3dI$ v:;i8Ȱ_^{OpN(H$qI&0QVZ9|%S&!)ѥ\jC=HKLr'>!mQ[]]Ͽu}ӳG %ʊY3g>e6' _ಒ$qJ DA_>h,YR^ZݢYEBG' `ݺu_ͩp,.*ݫWmmSVZ9:2 L#Ow ڲV y6]}dYƏF*?xsSs>+WK|ׯ8`a[V5.s|V^ݫvNDӧKR͛|ǟx|ܧ_ypGa_]ݙgqy1NWL&3sAU+9q%,aٲe=Н?ۛ7&&@W^pvءν'l֮YΤ()-۷A޷,XPTT|wڵkyYf^ĪS5JOrE]x1 ,ՖF߰aC&[[REEjjj d; wyێKIIq]]]dVZyӦ'_~0vܹ|L:( P`jQ`ldQ`X 0 aF1c5 (0faƌ0 a3V0cjQ`X 0 aF1c5 (0faƌ0 a3V0cjQ`X 0 aF1c5 (0faƌ0 a3V0cjQ`X 0 aF1c5 (0faƌ0 a3V0cjQ`X 0 aF`%]qIENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-posit.png000066400000000000000000000312541475306445600247260ustar00rootroot00000000000000PNG  IHDRMw~iCCPSMPTE RP 431-2-2007 DCI (P3)eMKQ_CȬe -*H܄YP0}4PfFJhmj_ڵBVEvnEIsK{9/s9BN˛Neȋslm}uWp!j%Jv#B}V"9{ZW;;65:8$]KLa">LpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCA IDATxwtם/{gtl`ޫDjiVě;wnI66~=I6=oM,ٲ%Yzo{'A ?ЌD$}?\ԗ3.  wAhP" VAC b(XAB + H`E 1 !A$P" VAC b(XAB + H`E 1 !A$P" VAC b(XAB + H`E 1 !A$P" VAC b(XAB + Hֻ,AvŁA׫T oߖBz7  m@v&css3q_;|IJ^mCB]0:1z"87nZF 0~Rv?`Yv]چ, Vx?ͱ> =sT_o׻)*:unO 1``}8dT*lpHO21a p@tttx8zY(X?}.C1C]&[FfgEfj|J.W9׬oU{G>$$xFQ[9/Xi}ۈ܋2B$>uT^}={yHP(XJ!y|k~U}o6\kk&DqWc}633L6`r%CHC)Ыyn&!+v|K8S7>9mjcG&Ǧ/7 u)qQv0wgH7??u#ɊeE1Tq_[^o ^|Dr, ֻRHI.Ơybk+.:ΫCƄǪr5X +.5zq\.ͭoyzO~|С @EDm۶D x SHhiuYz]sp<>㡙>KxF<;IPxؙ fNw >IB_ Ђ|ό_K/ddF,wP. @MiNs}qmc=&[\tXVvSAZBLXH.GM6>*q$B7Ȑ\y(dn2(XWBEd%g,\kCq&y|TmwY-Qq+(%DQq_9Uib љiq "H&)(NקEGGEQe2FFFgg\.'0,D" H\KJJJMM mлݞщ xEa \R5NT*!p$0 4mZi혹@K ===hwp/|>rN>}ǾyNz!yw܁_EQA>KLO?;wիWl6ۥKikk_i3P0->gͽAؔk6T&(9E4@Q*MYH]>(p_|>ߵk׺vڵ}t:/_|ŲnOkkjjپ}ZܑFoܸGV. y:99zjj4RFq\Ą?(*;;k@9r3DM´s4u[Z/B(l$qz:`߀!,i`ffM&K/}#2rƬV{0L𣃱~a[[Zv9o9w܁ޤ/[, Ɏ5Elؕ^KĐ NÌfӏ$Pࣩܳ3uկ~v__n$U(nmmۿ@wss;ߐ fߚ  0 S* / ?]6?}oVa2)!Ww;hS`[DLEaHjx(fؾP.# j bm&o5ljw7> LE%U;v[ƒ6b$He엿@Ft__RRrTTBa||7z!kllLII]:EQG FZc/|mm|ț(..VMKKi4K 11.aw+Ikw]^z:mĄ+J2uy&Z76{@ҤUdrvtLBSf!uM1zIȢLZcFoWo/( IFIF `\q?3iݣw}o,Y3gͭIlqBv#|ddddddbqM# FA?PZ!-0&ږf^M;&f7;ኯl-N u՝tם\ ei\("cS"tڈDMxUszR:3ƺ?Q]<v^w]8Vde(*vAb?&ssrssܾؐR%wXamTMw9 D)"-K|BecM3sNƓ7:e$h#U~-/;7IxβSc@TGhqEh(cݻwߖv}bb"0 # WA/V6l@_<(XRHݘ04>`m8<֩?j8{SZfzsLcNHf"EI,0&dMu 5ZS.֫-)|c|vjr@ s[ " EC!^X IKGFF$X,;wo͛{IKKuA;"Tj0ҢR)SSSCCý=w\~~~bb惶!''0,, p<ᘜfelj\m޼ 8PU*m{O ֻK ]nZܞMٍݣnLι&g]*g7c&af="U$|Lj(ZYm7Bg&k J;nt[sS=py ӟhNy \ĺnll cc֦[HA\.W7};jǾ8cX,c'O[RUNNNHh}+W-z챯lݺ5ɗ?Y k ]j[O]u1n D2:z:o#ӟwE[ RO\hp^JgAJUұSoq JKKo-@dtt=sr|MLL~.r/_o$I޽[r@qJR~ÿO>pgYm۶- &0Lmq\*JwM&3qjfH$^bk*HV"0o鍱6NȤLBe;.3d$B&!{[9g}CmsuZ., ^@PŴt*rhm&-g^7_ |*ZjWA-::44t'Hʾ}>M8%ʺO+--]\Lb7x1G4Rbbb<~饗JJJh4668 tPTO"g3q9B<2V^\=%v4ۆN\joF 6E,,sx/} u! hd{a¼ܲ'Nimooߺu—---oIOؽ{w^B? vztr~eY>}°0T?<<u۽V719iONNFU_x(XB{:n8ভLB\4o3$$yd-=/MλtdJ*rɲs̸uן?0q\r3Rۆ_hsQ3όgFVP(9j9%غusL|}?+q|۶mV텠kllx6}˲n==='N -[6A!JBD{>~)`&GOyvrŧIs6Hs*wVOO><8659I%:6<\)_"sLlfo οm5ExFW)9Hh[qcnNS}4>3ڦ>t9>:ls>WWTlMjy$1EEGGfg炮#JHHYzkqqq=6furelllzqdļ tcBBB~Ox?.3x@%9}8>nSD8gLZsI/4P5[|Hz;o0ؐ@{.C]Ad4IK~hs(CgN 4Oϻ-g;^{bn7Vp8t:@}[bH ^X<Ϗ-t>֮.Ψh>mÆb0 x<r>Y~[-&)qIڈ-ņᱩOttl^O\,.#ޮ:@'Rr["RXR";-6=YHEW:p8%N4•WXZ͹ aach4kIXXXб#˵KaEE+r۾"?_۴iB\PÌ}B3W&v R&\`뗡ҚTU <7HV,b98n;wVCZ߽m2w &ku== ``lb'-]D񋽵u;P xЛJdz̉V-W'bMÇ\x* p ^|U@X(XvՒ)9)[~@1>ua AJ%p^;B4f'Tu"%GuHcM1öщ qɩDBe*A]uIQ8~ھ}WeSNglR3 ,wJdB5;w-Ql4L$.reblkd"?+ KtqlYKRdr$Lk@2g uMC$Po{{{{  Ie2Yл榼Ub} Btttu _~^^H ,HE㚧@{|~uLYV2%η=l64<659b9 %%$6<\)_Opf:{o͘|}8 +","l:7bvjR2?,;Y)*9T0_Rչrʳ>yK ~0,>>2dz322fff'&lm;vs۷w?d[:21sGmݕYj,0 : WGIEJǴwY1vrzIXeAz6 X%;Jnʖ;a)iAp|rMM͊ZbcMJJP$8OPU_p'kמ|ɐTZ f3 ֻez/R=8Ow^˔Twxdǚ9  *0&VFWB\? olpcTxϸLwylg9B Qʂ|>p:Ox^*0++ƍ x섄e//--۷Ngssxf T*\Uy~~/hq/=99bC(_;dP[Ɋ3.]/0^f1u < ,zŵC,*zTg90"$0f6 Ø:C'%Pp,*k{ x-F6aF-FgwRƍ8>8~’)++-ZmIIq]]Ynܸp?X,IDATѣAngd JA.]-CQgy晊%?Xl48XAL ZbbϿ-mvkN/Y @0>vm=_ku xm"2w&aSh0|17$bR&ңs,@bxoyl/| IR"Zߨڵ끯/+1dq~/s: ~ztfff(//BٺR(XC1]C!kkqaTm>.W/vPt_3mꮣ{ĩ9R/_ )G砵cXW` Q2ϤZ6~n$"RObJQ#G/]f(jffl1/sDzBB–-UgϞ :vvw{[զEGGr㙙뗜\XXSiĉh* @OOODwܫַz`0df;99yҥ4aP.n hK mjk1K+QTnb#ކsTOP@;I$`;{kh|z8Xd%UbTrJ gqnn]qU7cCܼ_rtDժ-[~mΝ]Vk2ǍV]ͽ;nwJ~<.4@emQU+mmPz>1<ϛfټwAzڦMW7e -8wy{n !(boUNYV!SIa(66{^\\]B% /3gάEA322Os=r{zzV]5ǟ}/777''sܹ‚ Eu(X21'gh"|#&Ԋ"4ҜJ<4C GY/%q,Oh5(Q $$DK q@WTT7-mYŞJ /<pUW<}&&&~ogޕڸqcUV`!Ir޽`n~FJJ i]&Kx[#!^`"*,~r+WCSD<!xLN^O*1 ޻C!bRYF$gMcmu!LNNy疜>y72_TTΝ IK EII񫯾x~՝ 111owy^ ]v~uZgޏ?>t68^PPsg5JC9B{34ZZFln1)tX~yk#$E\qa!9& ŦMvJLL\{R333O:ҲZ'155TTT,\.7{R*U;vl߽{}r-Ct;EDDTWW?hZLCzsNCnp3{6e2"#zzu,QLpbόgݗI ?hhhhgj'|DRL&mٲ*z]!y=c08D"ٽ{^oxWY\TT3ϤW ˇ>@yR> $%6|Ϧ\cR̟JEB>6u ^77=<u3y#*b]S-ٳg-1*q$RIZ&??@ryyyyyyyGGӧ=/M>ofD"$IOQRR|/m۶ʖ . Qu[;# d<3===No/D㙙w?=qnia|-4{᳒Je]\%PM&ZǚzF\^=a9q ]#SNYhjL$Xb,"1j=***GFvz, a \s999999&jr:4MgH"!rydddlllRRR+BDYYiYYlMMM:n,< Tʨȸ$J4doHULCDUUUeeb''0c.JccIIIh@zOn}dv )QKH<X #nn'3?Ì9Oy(*^[)`ƫD"c}>s `8Ahxxxxxxaa >(0 DbxM\W/(ˬQ{]x'X\Rr񤤤$ '5 yDzg{Ouz F. 3CX'W-3MZxaFz)+`bpBHbX9B ֢2.InLWK3}.Wb* qq$Db(W}}Mp9Nup i,"bS neXYҭ}c a̬LMJMԄ-QI`u0L^Ld&FoU>;g\W{Z. IV$ A58.58}쭕?''HB h$tOܬwLS]t_+B+߸WV#$ -wcg[ؙ=VZ!IԄWʲuc! aRp$qtg3y>:7 *6M୹P.KюA})0&Bot1R~Q@ mobm{3>Ob,&21 ~EP>|bs)j#*9!^))D&19\.u(e8q]I$ֱM:gBY Mz 8Ŧznbgl 3CP}+( Hȡ`V=Vb  r׷?./lzfw Ed%P2?ИI Lod#ޞoy5ލB/5 TJ]r%뽂hu0RF2]j۳ǝWw +ݔ=OńIiv!(X W| Pn|I" yLpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCAIDATxyp՝G3ҌnY-FHvYI6TjCU6,.Y›ledXۀƷ%ɇh$hf{F-Kv>D=W~0DB!&!ZCJ!:`%QB(X !Dg3 VB+!茂BtFJ!:`%QB(X !Dg3 VB+!茂BtFJ!:`%QB(X !Dg3 VB+!茂Btfj8!tpG2M=B$}SGx?܅Q)V,Y+!DuH2B~--'~+6BID%$PGLwLcUE( d7UftU]ɛ8g eB5XP"1!`Tò̌ۧ՘"*W5j"9+!.#+ ʬ/Nv*Aɪ"Y\U7@Jȵˠ` %6@8_mg}W"Ou*Uْႜ ݯ+!,CkI+2cQJ:.3*"OkPjkU4PJ55101XQ&4mͼ9O=+X9jfleU|9*Ck  ; b#QkVVU6 ]H!0 m)^_.?uဌE9tV!m\PPxSI$3vODždr8mnlBX1_('I,, 8( we C."Ƣp8 7K"(XT=se¾V~"?|e 5{~= nyKUW76̬E1ɏoyz6-+/={F}Cm uwBx{p#^ݯ |Kd/s9.Vg=9Ξnt+P_Wg߸dYdȕ@˦y%-іN)UyUr۷3/lUrՒMwV}.bsԯiO^RӜuRI#ȠW`_8q7wǢ1_kuᄈ/]lrjedB:"&`/`0 GIS fPvK@T[ 9ooloÇ[0n".;w9xɓgC55Uq!#x3?+/m{!*p9هݽcsUޚfe UKZ^m }rRGޗ_|?9B%o^|=;Bh[ ௎ſ'Yڋ8٢GϿBre2rl2`Wk.Ƨn@,{/񵉾@wg/tM:yۻC}#$Xs@A|q˜B@&KqA=HϡxRܡC29˞ԳvİZf97H+ٵcƍ(.h-)[ƺq9BZy{_-%i.// /t~fq|xyI_bv[`2/aK}9XҘ",A xOS JC0{V~(`r "cUgqɃHT4t2z,xl ]LM7c@`7)' zvxWϿѨw/^:~=|ŢUo0k_<)/9oixFZYBT;]m+шFc`$2 ţDs@<LP膕M#_sp,[r5_-F@G9.H&Ge}1%u Ņa:c5mXsvۺW\dBBȕg`UGv陜W1q{ʊyŠ¢:"5>W\}-?RV^b%#lyraWf&'tU@JԯHOuYf"Ƈ KidM9BjTXxw'֌d۪۬ \aڛo]SQY:?70-ׇ끿{GX19]ţ}RӃ &hIg`մfhc)"S"f{NX0sPjHE߸`κUK-~ں*=Gx-{jo_׸`vyeYEy*,m[͙۰pne5?8@ 8 3PjUG Uۧ;x P Գ4gnd>͘Qs˭k|y:cvv8ej:v"5Ȣ9B|; B\lc'A4+qP#DF VŬ?{W@vaء }erh;N|Ƒǚ6x9?M_ >5ܙljhlW$È`57B =T3$V9,T1;jS/IXWƶ|[MfqS7Gj?#YV@!,(q ]2 VPw2.1**j R]sIwͦS$@7jr8nme=x(q3+X3QE*JJ)Źu^W+67Y\v<ݼJ3ˏoyzO]]$Im@O_~x<*2ƚYdX hX.)Rs:_Hy{m=~$ves4ZqOYd0i"c]r8&:6X|n^]SSYX5ͣz rx,};_{A#gSڱgOEƩs< IRcqΛYS[ylfP{}؊UWY:;$ Fc͔@\@ԩ#LJFrh2KP/,ӘਕW6ݼ:֎dR%X2=@, Gl"QZoⅶ=?z;?uU3=8@C*1b͙?[]S<%#a??͛?S$IEA23kVgUbZS X00 N5>_auu2"L>LV9bVuNyFªG|g׾Rf5M?P ;UX詪*0a<̒}vn_{}{9}b{{wo0r<>Rr2lY߽` y ȁˀ2pQ ǁsLe8paAN{D%t:L&>ʞxI;EX/{PU.KY:\,VLr9.pX Eƒb9],y `Ws[v4'bŃ7 6)v ]+%I7EQ \r"6~y"]FW5jgSRLY՚[ =J!0JdM+@*&@KbVB52[S'@\E+PB0LgVQ@B0  p5Z,BuMY!03MD !%XUʖY]  LA%XrTB5yzE%+!$/ *3PBUEVBgH|尀rְ FXX#,5!dX VP&̮ 0ZX;SU.{\%gЦg&FWyr8Uqn0L(v3FM!b`LXi68ACi0\pX(R !c`MRn_ԴCKUITBX(XC*&AK|ay8L(XAL 1*0(:/NXR)Jz?!0A9 ɦ{J\pJOчaT6KY>V`H%(*2`P`~6/(dn E*!DF0no .B1J8GQ<%q0JBC3 VB+!茂BtFJ!:`%QB(X !Dg3 VB+!茂BtFJ!:`%QB(X !Dg3 VB+!茂BtFJ!:`%QB(X !Dgawn$lIENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-rackn.png000066400000000000000000000242311475306445600246630ustar00rootroot00000000000000PNG  IHDRMw~iCCPSMPTE RP 431-2-2007 DCI (P3)eMKQ_CȬe -*H܄YP0}4PfFJhmj_ڵBVEvnEIsK{9/s9BN˛Neȋslm}uWp!j%Jv#B}V"9{ZW;;65:8$]KLa">LpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCA IDATxw@.$R6d(8pW+Uۮ_oնZk[Wm8p +!!"9_r;w<EQ}Wx@ Xf@3V+ h 4`A Xf@3V+ h 4`A Xf@3V+ h 4`A Xf@3V+ h 4`A XfW݀wIUUUD"rLMB kk+[[GGGSSWd@@<2 'W* $F_ab'nDM#S*+*n"wvttx\ :T$dg'&&&%&)JaaSM jw xVcVs㓧LYle/n ́؜㺺Zy)m?sBҧϘ1w<V (Vc~#Ir1+?f@ҜH((Qy!Z`kIrN:#uuu8vgldT*}ثWGXt`5J{Eyu#Jha[,Y}S-vvQqǔW>\b`^ݛnGϗ_)mOs,"IBH;YF0gjT*4E"Y^eT1ɒasXf\aieek4g}[~DZyfL:0miiա<A?޹W\gDĤɓ)...>rHQQ XA Hk6n$I1rPOQ}')Bhm\㫾^޽^p}୾5TJK!gcF|vLq]㋠Z  [yOz{?M~ތš"T637i&[[оcr<)1166 j щ_u[xpraZ+W1 6|ߨn\Z-J$RvhNRۻ\``mZ}ǏgggK$i׮_&U]Ϧ'NLa3LJ5BՇeˆ@0K?Pu . |  8p,..gйa<!3<; @Q%VDtQ* w훿`=Lk%PTiii[6333;{{GwwKs˥0 u$*4hF/,fzja0(yz?d_LEQ't@ XhVdqoXZ[GDD9DQ!n|XXk$ɪS'O -,F Z ~^++-]|6Uvܹx&R!Q*(xA3 1ӥجWYnrܺU=bSzo-ðerUq(/~LgOKT&''9}@[gϜ)**+U钓}֔Tujnђ!{qc;HdII?G^xe4ڈys`6n]w7LIJ •}437G4=-XHQgK!\?LJ:[gvVHȮj~ |HuψK+5E #B'pp1[<ۑܣ7s*j}.655533JKM?fQFt|>s.ƜV"+A*JP* $ 4pFxVweVaÝ;w&LMM\ѫwij,mb)d[l)/T*%߷om`m #=C!G'mUVѤ:5A"RŽWF0B>u:_H)r*9sss[tIPBњKY:Aw%á{a1plB ?(6ʂ ۟'gϱ蓏2Ƽ 9[CȬ%ӌh|dO?ݸ~C7-\O߾\.Egr{H$;Geׯ ٳh{A Xuuufff?n73EQ׳I=+Ĺezua1p145BϷg^A!95s綺?Q$ʯ$ߩ݄n,M1 05Y;>$Db④GGpSfYYYsp8-pD"ٴ񧸫q[IX?dHKS!aYkjjC fSMmi5O)P^^z.\%U9~:@cwuWWWW7׀.]Cl6HԉeU6<֐οс8noo?rHHtA$O8aaiޠAFmZO,߾u!߱n{[sedd{Gz<EI˗.yǪ!4JR76`0u/DoNKK5*J*-Y/K z˫o\/a#F6}:-9>0A,ݺuK{ ܜGݺuk 2z!4a7tё1j^vа̔,]D"laCZAEQ Baf VKJLdEQׯVT׿s۾dzxO6Z$~YuZv@C׵2d2?^"/ߜ~OzLjrki,*agf\0D;~nvUHjGj_Ç|NC~׬hҒ+?ߺKҲo߾"zې$P*jkk_aڂRl:CCC,[J{=*64mmJJJtpo /r{\:8mlM}*D/Xxb⃂M$I!6GIR-8دKrZ?ʔ9ԩ*('+ޔρT*5H\QTt_gC]CCB?rH#`0\\Gկ;j$VV5v]Z[U+F"nܸ.f͝&.$ik B_2BStr}:&SY𽏇w5C}ݺQGkk3IE1h 8u^=6؜[+JRԒFӽw~-DrJJL,**ׯ6yEhv{E.n{G`8bX^:8::BQ;/tǫvV~}kK7rX+x)?u4|;@֫A\EobCIBE4>䦍?]v}y>GE54'pߡG]e c]M+ }Wz>cǜpliJ:ud~ZaI~EQ&&NRTJv$p 4l6cǎBTJѣ}U JKJϜ>WT*]/~13 ,־QUUUuP0n{7򖂟E=(4J4ֽ!d#~1:Pc E*bIu}j4׮KHO>fXOoP1i瓊Ԛ6)ıv_<وECJ8@~AYzZ¢kXkWRiKc7pA[d˸ƋŢ7njѣWZ,--BR`OOU٘sMd6U) U˖7~SUV&:xP;ǰ0/Fusf}l^J qAʚ ayl/OJ2t#gПR.f\tɠ?v趸"svsZ)=iX,>u䒥KuDž<;yڙ[=V%Wig/{צR6ot…Kw!{z>E[x:/|;J7[>fǹVb005*+*Bl6%T0LhaޠAjGccff ϖt`2&z=}j˵~R2X椏b3v_>jd~{xxnl|IM_KQTEy-[,V>}iX|~޽kjj[MuR`dkg'k̙z$BIWJ8 &,Z<cƘ3p,rӴ_<}Vn <fw~fOK)5JN?*^Mg]_Ev##FC`/ NN C[O⢢-izI5?/gFu{xx.X1 k׮ݗWjnďlB7h`Id}ͯzl6{ĉ'O>v]\;TѨ;G-[$]xUq2fBFR5\Ł72U\ )|BH(ZڑƆ;HdNNu+>\.?IDATi d2YmKHRLLLktF#k%630ww5k831aXAfprz`ARݽs/xXx_c'|0cLgת3~~|I|imoҤ~OV}wYwl iEuv^u.VfEEl~%$333W,[>eqfusuF: 29#CFnPXXx-.!4`c2A!r 95%M311 cXwo?ԾzɌ~w H| n҅BûuKIIS]U#xR]^^^&f2|6J=̹ ABp8$׬Z[oZauB6[q ϥP(~?Bf~jnK{9vUUU$IouVG'wp70Z;ێ!.ۧo>}xu`ooh$ߏ;wIp8=z\liv^uxc@EQ555}&qMyvaS >2L;z7t]HBݻwO{2)1/rPTZHTϝ9n|?`@(H X_ZI-IuLLL^B%@@3X 4`A Xf@3V+ h 4`A Xf@3V+ h 4`A Xf@3V+ h 4`A Xf@3V+ h 4`?Jh]hIENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-sailpoint.png000066400000000000000000000462751475306445600256030ustar00rootroot00000000000000PNG  IHDRq%'JiTXtXML:com.adobe.xmp FQ!8NDlۀhп@[ZEԊ69evΰ; HF ~L=<P"0;l@|vxPIxLtSxJ8nj6 wh\\ثm=Vͩ2٬GAp/b5gx5r%n. L@a ϨCOVϐ\Uf tVI+TOHLa߾r8_,wTc*@3\#yP<ڂۃm|ҢzGw$zm~ U9}Ȧ| @w|?gm pHYs IDATxwE݅z5N"HQAQ )"tP@)iTrP{!@gΐn>|>$L S!""""" q_ή鈈dIſqK} cg$""""")ڌP/D{@kydHſ.ڀs#R%"""""5&v,\#;V?%dFYI 0P;-TK1n`_ƜPyuwvmkn""""""bܜu3{mWݝ]sDKDDDDD$":BiՎVHl*|s'U;ήe$"""""i m 1NYd47pj9-u",E9*|tƧ'63imY'"""""V7{X|Py~_:k#""""""_Whw`j}mWg;ܴDDDDDD_=yK;?%dܦgy;H *7 Q;z?Оݝ];HTKs1nnBYzw7U䂈HTK ~ |vC}ϸu}GDDDDD$*|=f;@DDDDD$*9,E~ 'dSDDDDD$[a43?w;dWDDDDD$k*MkpCO]tOk#4 i\E{{V~ $9KZ[P;4k̓)6F-*jopH .LF!\DDDDDD_H`IL詵@ή3KFDDDDD*8!uOz|rI dTK pMutή2KHDDDDDF*Xoԩ Tg~sr):MhClL)R{`3;GDDDDD&*8.u3sGb pH㈈Ԥ դ ̗:QfP4v8 EDDDDDjI˸ [1ux8""""""C_ .VKP @;wwvmX"""""":ii?KPz:ήό47;Y`I`Q`>/F AAq 퇩S0n$ЁNED3qHF-vx{x21ƞx2_؀pL#+>&$ F&~v‘mOGbyo'*&>dc-$J˸9́҄kn{_vr4E$>?V#4w*O_+d8{@Ic_pLqs=.DcK32n­){Cݦ2p,L&[xd܉x{tͯ2M`)^m0I 88X`8)޾+5ICſ˸ LVMJ2?ec&3d0|pgg3-x{sD0g< 쉷E<˴Fw퓉B`:Gx8o/.)IMſ'4MT)=1'm+g<Lǔ/=–Ǣz8o?Nqs;f0ڇG k2=!bܡ)dl`4u<Kas;|3Ǹ3灓)v1nO xJ6?3Wbܾ'ų.p%^fbI+=#ip*%@荱;"-Y2n6;xpqdjp(m:)_Sf4¸R?Ǹ1n IF8>¸"3_zi407Vvwv-ic\'/(n¸Ӫ7qv4[,R#0jOiDƭ"b1–.ouoY< 'F?00SPA=zd$:>rc"ǐ 4WuTϙvg,a)40}Kw>C,)Ly!2KWr Mq+ߌOxϲ_b:*uYm}*g-ƄFpNwgc&0~2n#Z)qJ$Ga9EuDNέn޾:!~9nEհBYD H%v$l!l:qw6gi KPZ{ecIl x"!tƥN#H:k1Ch&y0_T>: UץqSc)MȿҶ9l e[tc!=ADLſdS'3}ENh9N1naŠ S)0fMS@XZUQ 1='4( vLFhʳ9-8L`I/;pyMN1> b{ >FN#O/?Щݝ]ZegSQ`kNBz9A̗Ĕ: /'Ȑ1n!BSG;z?)sUl~sS~_Jsz&A}k4nN`4y``K`|ҜGƗ}&d.&E, ,?1g䘃9~y݂#qwaxMqdDſ ]wF{û;ܘIc;pB;'p!pZ#oVg`܄ ։숮jVg$L60o5qTϹF4n`W54 p eجlTDq%$o[0Q3;RC[lw`cI9/n!mWU ۩x{ '*m;a'm/K85k:/"?1)2ka&o(T8}wa{_23@gN* JBN$pd[`3_\<7Iˀ#sEcsn]xwHR*e挛oԩK}3;F%9ř 뛄y08zo7=|4gV^GRx{ p~76 1ݛ`P5g_ۍ9e)"9RN۳rEܬۺ)αQόaܙ䳃#K)ov -//nGrtb |6XR og`& 쬛ji *eƌ?iĎ=e ;vwvm1f[R&9Ęj~=-1oUOUj)cQ_|޾: ɟ˧7p ⁎%Rٕt"3*EZmsX,8""R2Ʃh4/:`$pJ$20[q!`#~0n1D|C""Ri4G{{SP{wgWL志ڛ9o{i_ݑS"P/`ܺhT;zzvwgn`ITL'IHuVED JEB w^큎"} GzNq9Ś%: ib޾qo G+3nvBk7H5ʿq+;$o,,8·ۏLW ¸G&7" 8›w3pp~HoEƭ:fH{oos;3ilFNiw>C,"|hߥpi>v{ \ \oטVgV^k~q٧_mOcE;B d4\ )w+a"/xBFc)F owU}Wo/U=t{@KaaG<:ؿkIWs6pou^Y2n3B gPuGw`\+A")Y5ARB#"Aeq;O`ԩ]զ"Im+VԸ)zF8npKfq`\#q` ;9FNg6ǸND$ V'k8q95Ӷz6:p;\qGNDZfgRN=[87ސHqrs5 2_NHh>T[7nwB'1dq"0n#s9DU-\uBp7ƍMH .\:쯿'k_B%+Tcwwv:]IکHF;3m"zIWZƭ |!u*X];zD␜L۩5bZCDɨ8Fa1Iؕw ~#:q.ffNF)x~#ɩӘ9 NqcZsq fz5I q_)]5=۸- Q)6XL9@#^׻8BT7Pp\C($g/:! )u5O@ p݃qG`*iӊ,4hƦVLEOعr }zoh:zdaµ ]0nIHSLvk 3=E?ݝ]Oo ag]®0a;NWۘP\4ZcZ,::B8oY[^wp$qWZqvdAfΏG(6$ ERfz?LDMuQ x]=Z꤆%\x5]4&1Sxʠ2n}c 50nI4iE=R'!M8f$Z݃=KΡuwv5vR' >Ÿ1([1qN1n. X,u*"2~sԛ3Q~Uf_$2ooaxx{ف3_;jT2uOb}_O]R'!"77ƝI& ?G][0A IDATgA$yotaۭDϥΣ[ۤN&a[@mI51Tq&aD(x8(AC|qcX\W֥?:i^*Yv{hTd?Йݝ]mBG;΢f?l̤ϤN&zakD4]`j_m%A%i'N ױΘqs?/6[#dcTK*qNCf:8 1u"5?aӉl>–oSEr xyY|9E8.R'"I}n_{sa7DT7FնۂzX6ڊ٬mٵIcoNHͼ} kA4?M0G[b!a!O W=@n >Ū5 W[Y/i3KNKU %k%?R #[Fq@~4Wx;0IЅqf?%Rm5*L\\UUxP/ky7mرLx{ agBtr8p'eĸ5 +y X oV?=o_# ]ٸ"&!qD~?+zc/ikf}o%|-HszZDg`U=w ^F8zcR6ޞ y,RyKTqC Cruwvm:x'C8y_t"㾝hA=K8ͧo0aPDWvoNF.?vFۏvo.<;5Xbw2W.s%-BqOڦ3RCFosNwgWC6.)ou;vE\3.hfէ^6y c4c!xߴjp#arp<9y6)^`/qˊaGD`܂c4KvJ}0ɔ "1n X(u*2|.: ՚7Nx(ޞ[7 dw||Ա?y6+ۇS!d`W~%ds]3t[FnL9Йɔk/&4Y&f{e S:伝7x,jK{ -E? cx*iW!l^ouRGE?%g=MbZL/NBS&Sy>u:KN x{1, l <4;ㆺ{c&gEZ`Cxjc,eEv޾\9{'6MްQf<E`ܗuѕ\{_3tu7n iv[m_c\!3;z?s1߇Ej?%FfH1twvcŽ՛Ei1n!oNŸ.F udı"H#Иv o+ ĈcgckROջtvJV{e?)ݝ]@[/o|w|qωBıRDj>́vj??].cRV8HMq['NCm %cNagb~yR07o9)xzf-^N4`tw6us:`bOl.<9F#jJ"1ϛqW-wkM6uwvj̤NyDuBn`"6nsbmoU(~!r&u,_8vTH5eERXKh- ;Dpy 0XG7FW$cg{o"y1pS|MiɞMS'7p^N뱶7Z̥S' `^8v^$YX(D_DZ!u@uwvLD8а+z a\ƎņHѴr;""Tm]w^YJ3_ arK7;r4ng꼢"Esuߏ1H}o?8 U&Sy>uٵj$m9Ęor\ıüH3:وcgaTı/"Pq A[3}~ljp;c91n }A\bm:/"U1; T<:Ig`Ll`;6g k$O1Do?cbx[# _C"B=p+ʥc', vph_D2?Ϯ|87`7`k` I*Oh`;VNGdwwsa2k=7g(g~`fm1FtHbc)b[vŢ_D2Uʥ)\X(dlboVƏg2c0#5sS:geVqQ[Ǹ"Rׁo[T4{G_E$*R.Ct1愕q}UaJyDr'uF?SCqGqμ oO[1õБ: m/P#Wq[D`EEO\zr ʥuUg%]9Dp;QGgUۙ7s_!F=('W?#Ɵ 8/3n9i4"}>rZys KOP.CS->Z/ی?c?amV-fb9,qE9;u" /98 !ά~(w΢9HMTET\Ht8/`V[sLmV7ۍ?:g#;P;p`qθ5r4Q#3Wq[;NCx'r \9 _)i*\\~̼34{{+ !#7ۏ?È18@Ǹr5Am?t.܂qy590rE4D^8R4+_f;"8fyrv}1DE/rcʥ?S.,Fgfݩ[ I:_0j詑<y~͜qco'boX zOv-O͒~B9Z}"S >OGDZFR.Ot%Ҷ}![%oWXRy=u'` 0jK 0aϻ8f"Uc0nIBs-Ҽn kہK0T6IXHT7rMʥ_R.m,6)[^LCFQ.Ѽ}|0xӄ*Bi_va{.6*:\_=_oĸ+=OiPK?ø Mvhj:[&t#90閪<ת0n R UE?oh+"-F)>"̀w1n|-waJ嵎R2 {?:-3rp0Ws{WS0.! ]‡;k$42NkRSڟ&0RmOC8M^%|%_0y#"y;~JqVGE:Yx8u"ҜaTR)&1nb7H2ުmw)lGNG#o>q]J6'aׯÁR' { R.Ft.FGV7%cUjvK(R?q2 V'i4GDDP/V.=Ct2h`mDI5 v OFoo(޾4tD\;u xۗ: 䌛VRlXHKS.Mhy򿺧SY u[vl4o/! S)I¸vƸwwlq`ܕEä_\P.r{Rs(ºRfV$L޾;3SDnHh|#-&_jW.P.L &üJw) Mdf>jhF3\cHZQBE`Gg(i=ƭ L6uv=o%`%ǸSTKR.]C5DQP&Vp&pШmb2ہ&cF!"DŽSԉθy W$oU{ }'_-͖WDWIvʥws.a܄% wX/i^X_eʢɎ-ր?x[oۤN8ۉ7N-"CwVKNb}Id<:0oǸUO g+1nC1ÈѤ/qK/S.I> a?* i¿_pcT ]`'})h^ K4ME$+N'_I$aܜTk(azYd㖨>'Pa\Gi7_O5ħfZ=== 8 ~~@8b"<l68`o\ <: cWi.B=lm,Lva]XKhB3@-r&y%,TK~S.,OhqfҼx ?n¿S ?4-q'TW&49[SYR/KP.ri |7zBg5~MY}`sH٤p>=NIN"4GTo:wC"sVgVn7\2lR*Xʥ)~KaU> .rboN''o>fSCa["ɓOh]>OND@^ OX3vOkUmbP/U.Et!Ҧm=D]w/1;5j"_L>O۬;G>V_Nfo-¬}#xoOHZ|ʯFsˎٙ%ROU]k_o%4gb =gƑ!R/\zr4ʥ1{'jXQGio'4u#s=6ގwR'3$Dhs Flfxԉo?_6"tm  !3~L!x{I&HzmwƷ NHAFhWƸ'/gE0n Κ7Uu:LK팛]9of /-ƒ uШ` '4\4mR3QxJdq`{[uo`ONNՊH t¸ ;$t[Ѓz74cܷQoø)^i|6R#|ʥ?`܄yb6٫c}hQ8jȧ%x"#;ؑpMf2pp)>0|y$ppƭB:dM&xaRAcnBxy5b,U7+J*aq+0utIDATfx{gin{77aQB |XHұ 5~/2JWTTm4q&' ᅬPrvpƭFXXXiwbzan߁x581 X,DSp"pJ_XXT$wUXBY&2B8~9w}ހqV7^#,մ"s2%G4n(`WŽѩXѫwbQG_iB2q#  Pׁzgx0}(?$B'ř6BaU>EY@D:/FxYXpk a%ݻUܹdw>X4+T|TȊ,t0IX "mGؤSI,&]+~>3s~sϜߥ+)?_HyOO9\ں:Ln͔@oV+?7^m7n4jbַ<ߐ%ߺJr$e!LwK?.տ{~3ɩoY0_70NRn$kӚGFs0FoO`> nXNr;V:oZrEFiQSLНp%h ,C7,%y5e!D/[]xyit4$o4} +[7$y=峀I?P}z=ɉoi}a$/ձWM~;[M:M?WIENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-siemens.png000066400000000000000000000350451475306445600252350ustar00rootroot00000000000000PNG  IHDRq%'JiTXtXML:com.adobe.xmp U`SiCCPsRGB IEC61966-2.1(u+Q?h"bjR4ji͔_7ۻ_j?w*+Ju_r]7d<|yyX#% B6Wk~ae/]lPoZ; ]Cx\Qpp#ܦq3>M.(|g2LNd-EؕX+i-+,/ǝͬ*1_Lf%vu&La@Vɟ!/xu4VH@R=!1)zBfu'=N?kطhGu 'U0&zyί*Zl.Qj&fM&="Uװryg, pHYs IDATxyde}V4Qoqp7ntUtqƥmqz{4J4bS(( CwG72K}߯saf~0u> H$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I"w'LNXl) QCDԈ5'?fH)1 . 33jI35UV[FYR:5FJ-|Y,爘!bfgg8Ӵki:ݩWR>*"!D rKJ1$R"BRK~bfg/f-}$Id|<ӝ`hh_`dlؗV{q`0-t0\\IJWq1)]L\E4,7)a󯥣x:)=0Z \{fR:SI4R)ssbllfoN/;T\:⇬^}Y%qJj nWt 1:^}y ]59Ygh_$͔hIiJj ?"}:Cy] 7hF}<4uy39YlفtRzwvam'H=N#ǤSR934$55U(&$Rzp?FTv+ n<^i L\5p9)]FuEUVa= {?U)xxG}/. [(ÀOUCC1=Bu8Y%rURk}xAWL :g 7x&ptG= xm!FH?^,[x轉x2Bt:~Ič3x#m 񂑑<]+ 6^f\BE?%j]14eКx,2wGԀoI46o(]/tl5){SG.ܭ Ggu]/<SJb=Xn0 RzX"^ Ƽ v,IQenrgR8*VKe~2G+՞%툈e O+V <Ics#^S(;@k>~#ˏll"^ ^<AvCQDaxr=hq'+I> P?8]KZ5"FjtQtySħWZD?x-6RɿC3%)}daUIZL;vZA&t{^C ͳrkSSjRzsǑt˼(P/HFIٛ<8wKġCEDl&'32>" ;%$7rwñ Rz;,wԁQ:19 ##4]*%-6mDrǐEŲect?";GAJolܸzx^(Ϳz x/s(2=oO_GjI&MLO;F_^Gj'Uy8erx sscu:1>ioݞ냩ґ@#iX6"EҒ/E!ZY/w bPo'>B3i[ǃW3>w%VaLNU"џ#u{qk^ ;mg޲jrǐDܟzIcܮND<;w ϽUlloʕcH>sLAJ&bIWI4 "&KIvJ;'E'pGRw#{1,g@<=tSA5antPk-iDJs1-ofs)r"&G&ZjR 8Ρ,,/(6sswVۅؗHu{>hw,[7lS _Y]CcNMJ6BY?6H!~t0pr(,ޟ R8-w2܅#>;u%Cl;"IJe\HCŵj] \ "H Kf;۵>?q1qg"^;Hyc3(&_dnd]]{)p)3=6(˂3$W/'b׮Ք2WHis7lVb~Z xdժx8 'Ǡ~;v)ksGrEEq(SW!դtV ۥ(vl 8 :]Qzx<⪛I;hήՉC?b||'a K%y.WotO.R8I6lp4rlu"QyՔ<ۣvyI/ado9eזͿ^o%wI;(gzG"SyՈQI)#sǨ\ lR;oYH4l_Jsyj x9kW292_ELMimSSǗt}܈c>4v%rXT}7"Hn?>Si+uWyfhnDMbKin^ueFFV}R)cJ/h;DeR<iEܕ|v9uJ_tpu(")tLNȜIҶ(/?LO/nDˣP>W:1[刷,sSԀ /s(i ++rX)N~sWW^7➔WP@?8cJU@J?T@RzZJ\7ۅyJ\}rͿ+ KsǸDLj )?Jmh4.D;VXEJվ˲e~H_!⋹#l}X |oqste9E'G.ׯ .Z&&&RǕhKJd~L333;6]NI_at" cl OtF*e|j?P`w}WG>)cJD<'DNg 36v&1Q x :h_`ҐnͿz1n[/LD_;d(˯f 8wө4׵vKIJQiD^^vuRЏQLM6$FV;le݉`ddvؼ ֭뿛؛NgAnǵ V+ F\$\ٕggw^:+4x/DMsU )JFG{3:zαS2T{ٸˬYsqU9d;-(ZN U6o>u*w\F9"Qĝ iKYIT}[}X;DלwޯY _q_]V{Wƺ^Jfv]S7qĶIQctMY~kG(FρQvX=It ڵq\ 6cc%Ga/##tAL9zyib+;@WML$FQUY16c @3>%❌ڙ݃fp! |ިպ ^ES"+"VkW՚arןGtA 8^KVR7_uk[8 Rz!ݚ2+"S'0<>;4"! ã4`}F]SEL<7Sjm"utUr}D7oaÆ#I_V0Mn*s[g@QNrV9KJ_DWNxaWܨ,?1ja ~ 5" iRNܟ#~N4P3:Hh`N|UvLO9D|Cʏݾ|DtSً@e33'wԎ؋w~o4A[.vS{aժ<ꗑH_<<e,rNY1x $W]S=cc1FJy6Zx9k6xpY(<g܁ej^;"[AC(o鼛v{?tZ%ELŕwV{v})Nw?gIiի=vTKCq&'.XBxg9VANDEJ.ˈx4p;$mQ |XSG4(15h] 혓+q(7q~Y RQǔzDܻɳ'aTZtKV>NGJWK4?V{`KH(gg#MN'f꿝#no*6mS[v3Ux?+i4KY>"ˉx>%;5a%;h #U`7۫FK*FQlͻW)-ie YjG%Eq,shfӦ)=V,)on?=Q_gb"h|^JJfi1GQ.'b(oҏ+  UAC\$]S79GQ%S<&&J?g'+sGDtן;t[l"ԿZh6?͖-Q;DZ mVkz㿈Vzm:)>2K8ii-)c+2%8ghѸFc=)=> \;"SSD56~1oY 0FQ+V=6w/m u ].W=9KgoR;FLN.R?Vg5< jD(>A&I6 cc4l,|,wE^D;)|w&?;Ŋ4pZ`h,{ص4'h <ɜj x#7_=_ ẻÃX;wZR|Cә -Aw?%+џt#L u{OmRg /(C?Aup"p", A [ԧh~;np>p] c)l9oӦ02r>++S(]og.;F.7>GRě㷮HLM}x3+O+/_djbx `rqa-W< 󀿦'Rzݍ7#LMVks8Uҳh6/w-(t|"_Λ߼}]So6g!4i.6c5o_QNe4:}۵ZbrbA͓掵"͍15N7^Ukk4NaPO^MJom(!Y?"`ǔ_Qr4;|Hڃ-/%3M#V+sǐll͛,BJR/M3_R:,wt)!l^IJ1K4'y27R 7tu{O?lmqQF"#rjDBSN"CH}'dYjuJ֬=eyR0PҮ[+GͿKDJO#ώ+2֗Wy)}>wҧh4CKstΒĞŰfo]KJ!;k ͿC;lfdF;Se-)];vI 6mr?iGřȳV06f\{sH@ädlnh4k^GJ" ٸ=FG/%"׺cb"#5s/չhqĕ5rDۿQeݺ""ʔ>L]_fr",'H׹HKh\|(w Iۡ(Nc$xnXHl pIZ$֥D!b/ud|\`(+Hs[HxFG}Kl |8w -/_KͿmccsq*ӷ#FGy۱mR:sǐЧss"i4fw\GJ٢f/-S*8iov4[rNY rZDU?LD(b/-הD"]=&_l~>w i ZD=)!w-_ IK!b+Α9הSJ1nC>;4FGM&WTCJϬ,gV\SL )O3xEDƄR1RzX/cnŠkJ_v*ҙ\t֔ C܊Q! HrP'Lt֬-!6Ocup8+ &JRg7rǸmV&wi)&@so:?cLM #@LKH t[!ke8k\;-{/ *) ђvse 3ٴ cHKƚ5nm;Nfv8Φպ:w59Y'D<ʛ)Kj'Dx%pڹۧ ލD ovJ?b*mQ{15O -9luzu شdFFCDxnKLL採UT?Oen2A4zxp(=!:b 8st~@WnԮ{+`yտ̚5WOW/UD<x CCNW)oRgWWe9zƝ(˻RG2id%!Dα#`xsHGo|^;]8'SڵWndax/,C~ Git: ҉D\Hĕtf7;vev@">H#+?od+"pہ gn_dfL.EY?9Y^'''Q=Cl H雙jKKS)<;w iI;ZD-w7 k(J:_O8Ә5o_muܽ ?_Ѹ8wz6\x 3.#b3p%0CU7a"V;{Q/,%6wcd~Q)EJg/ ?ZxL(}/ Ť:7-!Z` 7=d"݁];R U l H飹CH7eh׼?4kE?CxE=xX @yEIfb&4A 48fCH7Ud$RDҒ0::GQ@fv֍=^Pf~tkY+H7g/H̜;d: RR[1RC196RBki6O`l̵RUjMtbjf-4ǑsPO8f͘ՓlQӤ4;䌎D|+C]I%H9kH4;tkl23rMFJTZ,O8gaK~e#cg$R8D-6R>r(3WJgsmjm'Iξ1hKoK= Ko*֭Z]Y~CnRz;cc"ݞznyh4D҂6q_'Ro7lnF-."V0ͦIn͚9:O/vGR@H'Ro)=7hKjll3X Q^%usТ9Y)~l;h3DSѸJZcc3_?s5wu) x56 w_R8R+Rԗ>c^HJJZL]厢8$)?4? ɿzGJW&bQMJ!ätܑ$m]']ORUR/;"'be &󁣀P\AclܓJQ90> 2wsFF -)$j!w0I]P#6fY;gEKȗX;ʢh4a{Q&iw匸p1iq)@eïe޳fqQCX')w#`R/7rƽ5 Kv!WTT[u/++76vq#ݻ8Ϻ<v3DtO߻2ֶ ] zofwpI;x}[&&J _׬9886V i"⾤t+X,n ⻤M"NΣټ0w0 f] ssP) = Zb׶y1:׵_"ӀR˚5gw盓&'w^CW*3:]KzAsR:phHv:luuxvh_pvec֬גe499LnD`eRZN)nܚv )m!*{..ï]oH$i_,_Q0;?ٙR;hRZ>BJWUlr)}u|_R6>\yZ H$z^I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$-9S(2IENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-sn-technology.png000066400000000000000000000234551475306445600263650ustar00rootroot00000000000000PNG  IHDRMw~iCCPSMPTE RP 431-2-2007 DCI (P3)eMKQ_CȬe -*H܄YP0}4PfFJhmj_ڵBVEvnEIsK{9/s9BN˛Neȋslm}uWp!j%Jv#B}V"9{ZW;;65:8$]KLa">LpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCA IDATxyTSg,$! 0TtV[hnvN鴧3cvLicڎvqED 1$,&,a dO DE. >,qu }p```````````````````/ommd4mʕT*A?ɤT*$I}}}KK F۵k׳>G}gZ{zz `@|AV]l``Ejss8猎Z,:BOwVڊ´^*l>.`kL&B@RfBlRO%T`u_ i}}L&jv%T`u;JtIIҡ!պp JuuuD"@ C%T4W*z~ 0{ F466ա<* 6>>.P644466B { 288j(w7l }\ח3LͦjQw/ ØL&FnL&t{1 ajL&z`p~a\.`311!ˍF#Bh111|>p+6M.P( `&"ftў:\n0v|/^l Sfʕ+׭[KlinnT*K>R<|pOOό5**^ ՝pܹGt:i4?{n&yGtvph4o&*+a' ًܼyu=<]OOhxtmL&ZF'H |N˙q`0M*pۃ!qNxrHUUUWWNٳ'//orj~'OE^գ>(wt'N |>ʕhKkk+qL&S$۷'?]vt:=::Z(׿NNNv'fXtwwۍ`2.]~+bwq|tto=sD"M Biiieee| .nii ֑ooA:3fZ'˚Xz`׀k֬Yt]qwcǎ͓GA j@i&8KP***{k׮MY,BT*Y,Vvv`!.,ˍ7?/_<..GBhP&j4?.\ 7(hz;3Mlooo߷o_IIɔC,KkkkGG;:`ZbB"a6?hZy{{/VEs ӽu0  ~~~,//@Y,:sgl```B-~~~?x~~\[y6lk!D駟8[z>"GUUU988>IE.;ȤRӧ{~KUP(,++#o9p@qqぺFǎs2NWVV:(c.^H~NvV+$񑑑Frb@ w)AuT*U{{N$6h<>ܹsε wFIIիFkaa?I\G655AhѢ۷GDD8q͗P(555B0 _tI(?[v_ggH$BguMYlL&3???""BPcٳ/tJ֊D""V n݊Z| 96lQRRBzCzNZΝ#PR^^jӦMT*͔裏zzz}lvvvv||<㝝vxr ebbB,塇&`2b#tW^]vmjj*y;^rettիBŋRĄaXCBBЖuݼyh4/_&7|>$$DRi3gΠVdxbQQ ֓'O;<==_{ 6xyy 酅S#N/~m۶މׯF38o 6[n=쳝DJ$♗/_&.) J}׶nr\o-[ZZd2br$d2r9a/_&,juHHd&ݻwڵ+$$[n)VwxyyyDt7op8u'Aƕ+W-ZDގaXPPP``eN:%ɜ,Zֳgl ֯_鞞׶ H*j"Ps5** -@u+W"'|2,, ð˗hf '&& 111T*5**jӦM7o$chhU+كe_5|2W^%sϡdXX+rq"M&Ӎ7nE(tҥKwڅzz)"XQ1$$Dן?[hj\\b,r8>|P2</++G5ꫯN:5444Ζ-[ӠP(mmm€555ˠ AAAD{'-- /^LdFk7%[KK N%<<s y6JݴiS||{^5lvkkk&^lh4ҥKg4ޮ+ltvwwƒzxxE xoomh4O4-22xa@ m6ZGӑc2};^^^W&su-b%$$8 R,l6T'455mٲeڵSх/ˑ3g83ڿI(&%%/Z8}llj4_h. ` ]BQ(Cs'*jwA&_6m||f_Nc1WPP_:N,S(s˗s:{ᅲH$W\ٰaCNNΔWOnʦd'R(jWqxzzfee|4|MHII!\A X] 񎎎g+qGhhʕ+SRR6;kOײ[:$$dΝ]ܮ:?7w6M/g~;vhv[MQJRKMX,Dה^^^NPz}MMMNNQxD\R@@a:z~rh4(>*++b:6LJ|H}}}܍* f]W~94 bf:fKCFMRQ7&% Cuu5QX,ybx|l.]B@ӃƓY` 4/3<`Wh^n]Adžϟ?o7݄?~kkm/¥ C #?J:0,<<|!&Aa7_f'g d/ d2D"b؉'W8ΪUp###kOOϥKb{]W-.]feeoݺU&ݺuKRF??ۭ|rO9Sˁ˗/?3]>%&&Mќ:u*,,<̙3MMM{쉋Cs1}||o׭[J:c{嗧:Ү_q^.P(VVVFN@*d HPh4Zrr2fX_En3 ,k͚5lWo {`DFF&&&;SL&:cEEE,+66666v͚5###f-r]]] 222&99ϏXf}V2L$]~]Ryxx^^^|>?''GTM7n<򈿿Z|rqqqWW޽{%w!|IoooB׿'O0n`d:tPrrrbbbVVիKJJзl6\.Gf744|Ď4-** Y,VQQч~HYƲ67Zd`ڵ(Xq'յ Xgl+V p\.;ڟ`Ξ=+JgZFDkoٲ%44tVC =T*x"6j=ztݨ;<B1 ǏH$\.wtt *pȑ~z5??? 8~[nyzzj4re,NOIIٱcL>smܸqr)yف)1Dq8L燬ۂ`bqqqMAc2.\Dݵg:^q믧9 |x/o۶Akb??hބݠ(bsm߾sBBBz-*Y gb3 hs l6F`0Pm2L:NOh5L83L. fG|}}\NBIIDATǧN *..NNNW\!Jf|FGG꫺%Kg3qLfRRRrr|{<mmm/$XֶR# -ZbzJ"JOqZ8>ҥK]]]߶֭[a&AȒ%K~bPMX,.b"Zkʛpm۶-_B XT*V2L&3##cƍpA\ǯYf˖----"R.C},,M.^௑ܹ^BP4y\ F߻w/Zu4燇'%%-Y$''g@.,پ}mH DKNNNMMrEĨTE֬Y //_qF\^SSS^^~`u/"+~aLvڵrB1nj`0E^狰Pc`AݱXt{՚8/ XIa\"Ht:BAe"lJJJNN* B(>z3 ]]] }}}Dvҥ^d${ؘZ555t:}޽{_>zAR@}\ . . . . . . . . . . . . . . . . . .?;VIENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-sparkfun.png000066400000000000000000000245531475306445600254250ustar00rootroot00000000000000PNG  IHDRMw~iCCPSMPTE RP 431-2-2007 DCI (P3)eMKQ_CȬe -*H܄YP0}4PfFJhmj_ڵBVEvnEIsK{9/s9BN˛Neȋslm}uWp!j%Jv#B}V"9{ZW;;65:8$]KLa">LpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCA IDATxyt[}'{þI}_,K%˱*NiffiIN'=3mtzzӤu'9^$KlZ)j$\AI[ dHKbB>RWVV3V3V3V3V3V3V3V3V3V3V3V3V3V3V3V3V3V3V3V3V3RWǂwOgx!DJKdeX?ÄaE~鬿x{v,QjBWG//4+Wf=qaT+XQT:9xʖb`U+X/}΍ %-;!U VgK}p!`+V-V .ttq#HߑEX7>*mOj``+89=3͞5{c`~rnrV `EQnٍh:gPC!$8Φٳ'3KPQ8Vnělv11bb☔ qbghxGp:h]TSl؊i!,xLc3'qLX,!KX!0o|{>hV ɺo!ytMU!Φ:!<V#<9qBdyQE]rw6!ڕSKxsoI4/+EIJ_/^m4;R?Z<3<8野*"b͡c\=E"iv$'q/ƚ1"LY~lzOGFiP29\M`Y6V!rxWNY/|ƚ~ysQWdĈ6>FK *F4JlVOmXjF 0`OqP([K&n/)4u+x=Wx󰗓fRAX(RKK]r@NVIHA~@X(V^]ꊀ^+*/yfY}&bVVad(NX꺀[U%e㥮X X[wSBl;@X@UY~$HO)`:x XJC2Qt,ZAG VHr"}b B!(,As*xb X!_S?i" C҂`+$0D5K] X 8-3Ұ X XSiC X& Xr!R MĔcߑd.!$W-* V,t8~NUjrb~n6Y|V,Ad2*xu!8h]cSg11w9b=JIQ>2D\.W+5N+5k  r_:t0/7Gzo$?q=-mAӐixvՏPZT`6fsDw!fT.WNtfzڏ.ۿyV-ޏssڱΓZo~WǟwEGE}^*ϞhX߽Ys:?!^+~wg ?hM;ǯv/^qkb y)SS[?<!9΋W8}?UFTw_WU׫!S#cۮL^NBey+i~*fB!3Ym6WШUCRghGTҢB=u#(RTb1#t]CO$''&xTu=\O~X,.+-+G*ʪp8vr=׫oMMMϗwR}&/'kώm!oSu ps"8!^_DI$l7t5{AfoN1߃L&KJ")l᩹Mc'O-1_r- U*$%$eR㧦::; ]Np:]+շ:x]|)+JkJ95 { Ry44lV~X\lVBQ.2BՊE">22aY39~Ɗu+қX}-*r+]xI_NiC}ٙY7o**̏ERmZ{hilYS{`nu2+_{qӆ _*kJ~vߥAaB_4#J@rM K,~~gl9$&1*C./5!AǼb1n}[ kt:Èl6[{g˕S3',VրuMNM?#$bI.җ!SSٽ?X=ظTT!j۳s}Y.2)1!:Jp]]3|q3w4rLC-ܜR%hNKILKxc7d%_הO~N!λhiQuO"(?7{֍~z df":#-_UJ407'Tc/޸~J\ݙ .V~ybTi~^o1*BH-PY5>1 n`]zZ:wxjkF J 33*XP,*2/7[|H,geuܿy-3#M"$ήn{ۅ4nMQp8ff-3̺5bNS!!1V)I >.`]z1ɉSͬ.o`4<|R̼v1KJV!1H81wtwNMpfNLN]z=+#-)1a9߷ҴX` rw}֖&##"d2|<Ϸvt񆦖RA}HaIB219S;TJ"BJMNby;*sbvvw]jKpX -]Fٱu˖Mƍ}C#橙i65=?`rzRbBlLt<oT0<.w@z<\k7nT. EQq11QQ(]>6F;{ǟ~ @Q2 |]ٚnȰWvj26V/078{I`Ճ`]vD4mݴeɩa ^9>12Xg-y頣Q+׫Sc\\3O|ehJc#/lln7hI )Ialn<0i X^O_Q$bB Ʈ/_;4bpϿf-6#3԰\Tr\Ԡi80=5295ڞV9Ἔx<=u6ԁ;֥)J|nxom/[n !d;x1^b=wabrr )Iboh\u/h}wJbAAׇ5ݵת / ' s+릗ˤ!v{CUo|V{w]ƊSgcZ[0! @n_U{wp|Wǿ]T"o\=95ǟyErvnrޖY@tlLg\nwiqĤ{rmBzJџkR,q)FQTvf#3fԔ!av~N4Rcۖ</AXx<޻\]diMN>1I |CEyvfF@imW]Sp"c r{EQT| /Ào<rO?'N߮w,8>_$FV)ו=+ZR\PQÏOw{NopR$#5/JIJ}xtKG Ƙq^gqoV"4<3|n"HX~E"D0(OCrb¾;&&$\vc o>X,@_(7_UdWU;N:뼣dR^=58z2%J7- c$KB|1"ݻ>:ia~y.';32bQ+eú !dtlks:A4EI$b>.;# `}OP}SoLOMkJ g]Ccmci8T"Iׯ)).._`hiko4 nRiJRbaA^Q~J8mbr*bc r=,e>.0?owmtiIѸήX[4"זՍ}շ{z-V+ r<=-ySEEfF9P);u 3s'd!m椧z_5t)HKOKr,B{ӴC+aYtbeRCMxp"hZ./EO‚xn7EQ2i(W~b/rBaB0aGDǹ7r1J$h,  BApݒ rvBFP- S33/HRR@k2!vBs۾].!D& рCZmJrZK r›DB.niJRA[ rU7oE͛m_(rʵkKKݻ[*,|&'~G"#? 1!>%Uo646L&--.zv.rN{왳_W lPQ7}ҕ&!S <=-umWcw8.W]}fDČ81!~ǖMy9P{t$->lM7[gU"~W}y^핐up8.VީkN\+y;n-=rReGgժҒ]۷>uA0qBO_hᄀrm ӻmY8X뛚oܬ $H6o\C#?qry+1o?lxda4<(ZSṣcS*5apwM--{k0b{: /:}˦[i55cR>.;x`h-ɩj毚ZƞށAӱ$'ͩ̿7]n;< cl6~m,+DjrRb||`*q8 de~'> /79A{\n(zvDEdNU׫Wߢij-b惓oi0\z33~k#fAZ;:j뛔 ņXDR+ Ӊ0([oNSWrׯ+;AZ~/{A;ir0/7:J'%xX2*'NRr֔b╫_t6'+S w; ͭ_سk8qoՌOND [;ϟ>.vOuCtR!<:6~mB֍~HNO~9`U@a*z?&\uӆ+{"Qһsryib 8ov?oKeltVӐ*hs<쬌ixrRSxgC.W]!vBHVT(*} s֕C._s74ٶSZF%cOIDATcT*BffLCJ"/7ۛ!a~W?6%j},zWQ!93LFZjiY!g6_EQ yYշZ֐"шyҕ!wX>ݎzvnȈo;jد-c0w//Όy~>BA( jVsV`jhjihj}r~=ߧM}嗞{v&3!JiT"IۘȈ@Zl"r7Vx.cB(ɼ=]s蜜TV]/)*GڼK'%&(r7+ki4  jU^v֞זC.9֕FTy9Ri6.pLOK}E}?2ժqITB|\=lK!AM<χ+6[ !t\.33҂wiʻJڲ xE|#K>=}G*?+`XBADh5 219uo_$%>Z5@@@*rY(CߧHDϟ'BQAS1MMjah215N]xIQAYpAnݻ b'O?_xOF(Wsbn[` D*ٱus/RUvޭ˲ƞ줄xHXCEvl6 74\rj޼U`ʤR* E/Y̌\ec]dDb|jhlu~ƦE^/Ptttٚ{vn/))3 !1vXluM}J"#-uuخV)[:i)* c\yzO_?Byco{|- Ahi;?TLt-+ m=`I늵Cg yػx޾esnv&!>={۾Dw׎dh]Ԧ #co?+#!6lU( t^"؄F?PQ6`2 Dlompׯ^xRx]U)6&zcE(nXl(?t`fS1(yr#fڹ#rM{vng9/η FZD\Ȉ{w{Efطrյ5-Y#܇ ǺBͣ=}c]SS!S=}NgB x:v=֠MryVFZ ~!8pcK QW '>,Z۽s|yXж};r|b ;a|b㸘¬tBsE1^|w!Rյg ^wr庲5e%!kt'&nݩ $'--NJH$!߽AScsiH B\LLǷX<V30`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0B?y'IENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-spotware.png000066400000000000000000000204421475306445600254310ustar00rootroot00000000000000PNG  IHDRMwiCCPSMPTE RP 431-2-2007 DCI (P3)(uJQ?%OThbvQ)B( 1^Maf$ h_+{2;iWnX*ѹΏs{  (\[ZRP:^̱⚶-G} gTSkÿ}1:j`X;u-U"&8s1tx rGpPfnjrI@MHЉ$D BP\JT$.POxFF4 }@ X@` 0V+  `A X@` 0V+  `A X@` 0V+  `A X@` 0V+  `A X@` 0V+  `A X@` 0V+ &o M!! !! 쨈iw 0$ؑ@!DS%CsթDC yHٵ7Gtis*+u.H7pXpQ`-~aCka4]TƆG\|W]c퍡(44M# 8."X,HD";iHG01!z^"B8D"D"Hl<>EQ< ú_$I1 H4`s{vqǭ4M gv$ɿP,j =X;n~#0X6k"L"ёs*6ޥL"{ fbBܣ#wYY:^]Uܢj)0L"d2WWOOψd(--vuk+cAIC$'K$;Ν;g^r]ZtFbD.{xxG0>9%?AN8yA;^ݔۊW!6}Q {'}ς0̒%%_mDfbJkllܼ۷oԯD"NK:o<[B!Dӧ:ى}2B8tw{{\z`Fs1jd^ϥ_w;?"Zx s:n>FaoݭfeGۥ]pDYtB?9\V\οjj*ۿ>22|}9^h..vȑvh456-wysSSuUՕ˗wgWrJ󫟏epҥӧN\\]ǍҜ{cBDpC?cwfG?:(wN[Rl//IS&?HR}n}۶uNdVw6 O^MMM=z};X}ClX_c?Ҕ/dmWjkw_=[ٶ-?/٥.xg_bWBկkі//yzTe%_o]NDZLkkt:{,fP"]`li[읣cByv?~:ZƝλ˗={۷}˯4U:G[t_#>CV_,m\-9;Oh ^|aMsS/a4t0 !d0.^|qˉjۃRnݼqF=ZU޹: MΝKl(&m0g Iݷ-;+kӗONuɽ=~MۖwU~u[ݺHƳ n߰'I[6oh,vZ"\TOeUѵ/?gג=vt~~~R)]ն2O}^>ttt(y|ooobS(=t3XXvG\._"@FQJzkXh4[7o~LDžf>8끌ig>f(F-|j,!d>aH$JOO6݁$ɪt9_!t.,EQȾ9jX7d3UYQQUYγ%jZ:sD>qwJ r51Ȝz}@ ^\9۫CPTgy1{sfѱ^s|VBðoF8D"T*ɢ]ܾٻ{~&DgEy^glvQ;]JjT*%D" b'mfX?? Z8vPr{ޓ 0L`ֳGr9ށyXoVM!5-;K˵NTсE,k֜9}ðϯ"xz0<ΟvDtL cN3mtW25`Ѧ[***ܬT* e~'1J 0ڎ =_fMF??q6`I*l0p{Ye"́1lD(sL!*:*8$u][Sbb'L1}qAΞn5BtasΐodU@DAAAHu!!vm8g߸92>qS'X+#%5eH򐶶ݻvsNBCUWg.@c2w1r$L'yKefZ2C٠trr2]!Jf5͂%4bhrY$!1"nGy†`EE_W;oM8gy{{}z}r6Z'$jۤ9l4 \<6bx/㸫뢧͙;Bu {`ܟzZ$<<|؈g75NN4MK <<8ð+z]/*M;XdN~7v]4MTUwvt0xfhG_X|NC9/ʆpzW~;UVR\|`fyU^͖ǍoS d2 @3B:-[+rwݮcK*.P*lFɓ&NTXXf r-gm q'$5pwquU(cb8yxz:d櫃W'IVN%4EEE iĤ7ð{5n(,UiUr/26j4flmh:cFϙ;gޜ7o1rGrb"7ds0tB,h[HEUt/ |+*+8=2w>0 hH٠,u+"o.gScc5taED0oSt(4$7lbܰa6}nbPWVVă}GeӍݗXo1Z{w`O_"q^8ǺMx^Sثb#҂Rg#ktuu9z0aPˍ<7Xiz˦쩎G!U*OH4~M rI|!gs/\`ݙӧUKJJ^4URrR=ח#DT .V<}XMEx.AMQ6cq] 5-ip.,BTżC8O1C 2*BC ?"bA4}ԼN`OQurX 0ۋΝ;"}`E&FY`kA~G R{ZuuuK/Θ/7p6It"k<!;&K~ c{yY37vI!!NTWW=r'[Y72A;b܄ 2ݢ952* qKꖹo?c xR[sK1խj̵ݤ)w|hbn+X&$IK=ftl|AX ?%}l(OG`uT*Kռh///Fhfi'**sf~0V @! s5w+&L$Yp^yo'hk{JJHH}9%ɴD"yo{nIkX߼8o^/0Mݍ]H٠dO̚8y3g24?<36rޝ!n0sgQ2B!(2MC'4B0B[KD跦=5(H\zRc6 _l}28!ak츖wquya q%?~/7w7 ^~q|$wbw:]$bCp4M$A \hj_!K.[, sex* xisOrԒaOZ+-^ԎbILJ0 ЃGa]\\6|uN,[ZT6-#ð284Mٵ1((WE"Q $3YO*22=9$8ArGBSg\(O[m ]F1|ڠdcTPl.\46bć3_zw^|?׌7LJWаK?b*+"N`%τd%A111WصwOl=-u+? æϜNCB,=kó#Ywr/1o7$ [P;^r4qg|_oFhSSZC6o9 G\_a?h.C)wKԴI7Zj1zm|U[4]S]wk*+*c7w1cDŽZ1E1޿'ee'NzjMUMc[HhHҐ!'N.nbrIZD20vmRTy/j5! R3i ԭj㯕L wPiCCPsRGB IEC61966-2.1(uKBA?Q-$E)QAV{A[ jkQAmAPAuQ۹)g33JVol|΅Ȣ Z*: k+v=`֪ ]KjijA5yKءqa&1XMNUd-Sؙű_W6ST1_bOdكN)|8a?aeGY򒫈W)B4ܢzB֤ JfUOT}h}м _e80Chx\-?75͵pzQbpjTH 2$C{mҳ9Gw^]oOdg у pHYs IDATxy|\wy̌$DZ$^4$$}CZ([ٷ@,9!Xr.m˅K{)Ph%4!$ KXegqv,ifs\4#~%,9,-fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffJPijuF>zGFbfffffX{5:{XYK/'fffffff9'fffffff9'fffffff9'fffffff9'fu֟/?_p' 33333kNlI.{̒\+XXɿY)xs9[̬87XY3po6? -;6: 33333;r97? ZFdfffffG&'f+#5y{4: 33333;87A}u -4'f #+Ir33333[HNN8]r7z2-+43333yle3$mh^J|sa p$}]5:33333;97k Fcfffff/'f&$.P׸ߓfffffVwN4̚K>;5it0fffffvxqo<^333333'fH'vMd\5*vM7m%"%Ҟ#cf۸nLK2Z!D(쏈=Sj߬)ݠ?]uD%qߒͬ8%%}&b@kZ |gSm6:(3k~=[r49y: <܁rsl9VɿYD{ğuNz|AE kK'z165񕾑55;rٴ陿 ๠7s9]c?h$_lXffV7kR}B:'kk6J뀥gJ$NuƗ4: 3k^- |;Z b 'sGd#"0[$r{k|!Fa@g4:3kN AI'H<'ﶮ]bރ33A8 р~8.I"C!H]3-:U6YЉ0r|ᆁucfK"ygUqђL6{6pm\7&ɛ/Ǣ8yMI2b=g./ZҒ?R~ tZuc 8Z ־K \]?HBqkW䚾5M.5Mx/hu+HsS`$ԎD8H:zOJ._>-: e'CsAP}{˭D06a=Pts`offffM"~=C_A ג2}P8q4XU-_1Tc>x}g<y\7涺effffV_zGeYFЩro֒} zG%_Qxcm;<`fffffN (Kk.oiit@fffff8N#50 +H 3333#}l-\ȉaw= oج pFcfffff ahv`WA2~V133330u ϹGĻ6Fcfffff aw=fڬViZ73333;rpPO{$o|jC133331>P񲁵ۖ5:33333N ήxs6urmEXCIaw? DcH$P9gcF`;~P_ yN'25Fc3k%DK2R+IiN!ˁP @PLM)vf 4nؖM\ JsYI(Ii "ITrf8e[q94#EZP#H2 A(%" #b&d;mt͠+ٙʆ"2*GJ%*3b1wGA?WuݺM=uNL}ŁkQ ʶ$l7 D9ZJ)LL?3,Пߚ䲹\FPd_i@T J={f>uzGs@(:1قkL76:$`ETo,J""E7U,F`{bD7$M[ft{bG] |+м5[LzBBq.p:Ir~9x7~u(h:1Э851F$7L'Z*'qbi$Il׮1u&v/Hone&!wʀS YJ$'$8KNK*V /~]$)cC\OƷ){3If'O9:Rm\7HZH'rp*NMG7^IId~:5qGvߺCm19?|lܕJ8$qfD_{,$ĥߪ$,G^vC][yJҟ9% N8xp:, J^p^39yU6e'E9:OFx*#j:V*,!4w\ʡ_w}_]LZc }x/c<׵CmD7yc l?.t'$g^xб'>*E1=5Ak#mӥ= :d>\uWKYœ"ux<)1TװUR\zQz`misTzp d)a%Ѓxg«ANRС%Tf\m?>7U-I.wR򠳃x~3$l0]:`W#E{JG]?vL8Yjī|kkvR>i1/O6:kӉ8YcǖDEp^+,'<|_K/k+KފԮBHӡo-s&gK\:X1>c^\%ҦΉkKqx=x ď[rKr3#%g,to + io= H Lk.{R' 祂#8^KEWr٫6w[? Ik69Fҙ ^8hYPJ /x}B͡kDflEzsd =*AZJ:8ܚ|ks Kw-|mI.Ġ r VxkkDk]fK-vxd b5-Lt.]ZV6ڒ)l~b9MzĒy eo a˲ey?_Pk6"гHd.\?f_iyџ/dVqQ %]Ie=CKU~ ^jh+`IA:(`ķFӣ\*?x얛FuYBÓoG)]`D[X5sO{xߋH~YfJƚSi C't~W2g뷬n33e-H)nkI,^ ,rk}ە=2'fgr-ˁ]]TZT_qBRxһU٨do+ВΉ,uTn9fĻg;ǿ35:zw[dՆn-O&Ӄ%EA}M$J15bf)J-Y8H]YT4"r_ܵcdER29A xj8(o:ԽSv`ęiY&At=;"f{;S32ݻ*C&EUkyt˩z[.ͧna/V/5[XN쀼18oz%9s?LY29n_Qb4=twJz l~V+nﳯU&I@T{ӈ۟>".jƤϥwmumw7eu7#C G'85UW 7mRz`]Y(雀7S)rI6ut@3%ߒkY[UhQmm/|S/Q\Y8] B4 uow5:0.3f+Cqc-VhփcߴzKW Kz+͝G$>ԒIxKݾ{#DM剔uRs&iSe zkw`.]#ך>A>0T3?`9MO޴v߃=-P:>YK ^)ŧ%%IN?xm\vDzwHl^őlSlM Ⳉiχ-xS'f@QS.Ak8[GiXZuw$n9zJ̦6:CC:tQ9[ಎ;ҵ;I'o׈8j+t-olxS&N]oR'J|L/ ą4IsSxK/2\FP(>&i{֍RyV|EFz`DS*ʤmݺ ],x+ }5;ŶKhi,DSm^;Pڒ B8'6lƆ-| m& S&,EAĉmv;7l߱a:7 jM3 IDAT@zo[ RH#Ƃ؍Ad++t,$`5Hk}m̷M=<-4T풶;!C@YDkHG"*EQRG#i4} p_.]cy\S3%1LBUOS@GͶ;h /.? $у{-'7t{>xMS~mvPFW嶖N o_̓3F';K帷TN=B6p,QC(NoxODg9>;k~izW)-(eS"bEh5AOx>\j~OiiPז4uO @RHDUP(HPZ8!v3:[7/4E?:@[.{,67R?] L]ii;pIL/;lK# +8)u'OC庮]PRl|-]HgqDW %gfZҶl%ך%bRXIp*gRIoɴvm uO|L t=ↈFEĴʔ$,UHu) -5~]kkN 4%v"7D2\]+Fԥ[S֍ߛ$lz;QwjVuPoT׃kǑ2aZuqeV6I&x:{%=GY 6uOܼaxM]k( I9-$ǘv_ n KF:mXk.{+@&*@W[.^ 61quAFusfM׶hvo\7vK"mBV!!]B$7:SGhCO6wX*6jE~. om [׍ݝƃxT:T+#\ &wUV?MS?[Ɵ_Q,mŪ'rA3~pzW_rRyt`r2.ڲHUCb|w""C|yyMH{G֌#荈Zo~['8^)bdn4G|dž Do8UJ5?R%,f> WJ_0ھs`r͂Ԭ^/]O0穱 Њc'R`cw.j2EG$}wtL~XiDQٺUIOW&s`ļ| yԼj% p­p|1%n"9|.wQ>?_pEɿU/K QNw5I|[C|9"v:ҀI7=^Sxȋ](?_{KFNszO2K`d$=ƈۙrzW=Ys7l5)l.t=Զ"!F# T\ENN">Q2}9p.]7" hA:0v쉔|Z!>FgIXU~O #liO?'b}DԴK]岫'f@(-h [\~UL4KЖͽa \5D Uihl[oim P]DU%ːoںFhOS%ܶ\v3J >Luva #YGodfW4EWLdOe+B-ׂ.%wqdzG֔,$ ϙk< RݿZc|$O6/h_׷5?Jf-CR>#qI.SmG՟/d!FMc/GҷeU&\֏i); s[m873OX҂ۂ7l֎B J@uֈC u}byfHDR9Nя)%$ ;R~"Ҩu"ΘK  IJV iy0p.K_ev/!4tBmvս 2>pϙQ,("e ƒ!b,juOWip}: aBδTxêyTB "{=^.D'Z!iBI';>N ` pHOÓ'wW\ld࿖q-((I.5)Lּ"K6!6j-'>-kJXMȚ4.먾.Edɼ8gwC|-૽k00֑F0,%JjegUSk ±/p4Z%02{C"UjNIr-^UϤAGM~= iB&K#{'fF$v4:w ~T,ht .W.Eps7nX93{ߧb`JIT_%^io[SS_J j-Mk܋ 3qo!*Q\)x4;K"!{&QUB8J0؎c$wZY>5Q6lT =EͰͮp 雉t.$isCiTi,񾾑N [Vũ["JĮjtm-jíAqL桦)ef-.mY|dͼ曲Hw^DɵϪ;2N_1_.ևZDk}e_.QK}|eLy? hJ~tkJyhեH"@^۟/V^4`] GNG%l?P. kbTI񍈨~Gzz$nԹ$y$jH]2=˧wdEk8\DtF숧[@[>sZp7Gu҈6U,}uB q#U$圍]?zI?mzjjT._ZVuԼ4xc^ \ڦA=؆5\qҗGWyL7Lu=͆_Uy$%js㺱5CV?Wݝdo[;${ 'D敤9Z#,c#e+syзeN"&W{DW(={cwaZuقGJie6/v?OWq u4u501ZqY2͑hc^kk8|UDh{ێWc઩b]p#k} X*'S} cbzjQI_ }l9W{qi 5b4{@tNmTdr= < *m s nC*5 &(j˭ɂW{!/;p 9*7TZ=@y S)yR9bޓpk84+SVV;LKNϕeO 4ICgP]GP.,/ClJ|4:6P v{3q25{U cӒnn؀X&ETM4?cނ@G TNW,rHOtli{oFlj'$G%9qb -h).B{mov2$BʞB K KdFdqx_$slo4}^#yh9.ii3NqK?,[6$hs%U_[q>A1I3HS*Оk=i8ԑ;pIKR'p?b9M{ +*P{:JWTӴSMTl'q9Q0T0ɂ[-R?JE ;>gٵF 8hoiVɄ˴'\k63Ϝ1cyeG)ga))3k#qnb+s;HETfM#Ҵt f0kqHsdQv|<сLKMKTN[)V5:c[EgS o3ҡGY'ѥS EDj>&JGȱV޴xtRwLIH-P͎n泙*QwoF@#bpfV_dvщ;ݫ(7[)$|5yL0ⶀDb~- f8 YĴ/rtpwv|SSvKv"W"'9+-t`FVW%w ~Z ~#ϵ93 -8WOc:Q#iO`שg R (6$LW3YD࡞GGv..εCglPZ;p|TJɿH+!ҍHd6L|juBtQ1``:c[iTzFx.X:y2~XێP:+OD8~00tƶ. $\wMJͣ36%$wjV~?f_ԤݙX&+ZmY{#ݛj[tis^dZ-h[ TR9P6Ǟ_AGqRX]kLBI$Kcf7{鉂3{DcDiɒRmT]+" >OeD,*Ԕǃf5wɴrF~+@ɿT؞ƪ x`4XZНlyWNn\r9X%ٍKgf0(xBt/K>9xW`9|㿉s[w6Ҵ IDAT5i'y+? 27Y_Z$ F1, JV8ZT{$= Lg:=i3[~vSuIy?)7{-@Rv3[yيBoq-+*sH`|K[zǺ(o$ki忩(rpZX!Y8msSQx.-tEg\ A۱ٯN yz>n4SJpUӤ!>o.nJ;G6[YִLv:VR*ldYC>&fvFWq6`w I<ظˈ8{ofg:;^1ܿ#K]m Z7ZYfOɿȑm̬?Ed}63{vW:_jk.)ƿn8of/3pS-bމs!r{KzŸᾍ_ȭa^u{#ZjJg:,K::AhREJEDm=  ɪ^_(,9FEFoU0˰AnJTMW[f̮}c­2`oo,qRR/t?(-ݙkͣ\ұ|'dpM=aٖ53YUw pѦL#K۝ᾍ 25E/LlYHuJED<EfqwK=)is>Q`RwrXUL8[;]Y-)ő׃뢳=f O]vJ]㟹$٪NJ[z,`ƋI~bg"fܭFtJnfI-Rj%է_DDϼ`!CZ;8sE&ǘ sp?`x|ʇjGO}ȌI7?4]-4^ٖAnjmg[Pѳ)UzR{FP.hM^V.]u)Sao f~d6wyᾱ%m,Ï11( 5՛>Jג|jڌ oM|S1gpMEc:_y~}[%ϺkEfSg@ W (tցʚM;|"^ql=C$:dpċ+mt(]fvB%?=whwcvs{P+aWrETvbI79M][i 񯐼#rӥ+ZEǻ0)9|T2GojyU/^xaL)LN5p0%gxնS<Ì'yor:~\_umf@%'k{'^48aRy9?9Y,5ћf xYc1 ܷ88Y I'Atԟ4 \k,Cy1NpA׎.iXrE_!}~RϋWqis%/ oZdJ{z/K!\of;!*۽ntiCuRڀ*蟳L3=:+ }u񎳓uq3KbiBE%zF\Ku.0*XxQ鶁7o|Ŷht>XYx/Ɩ즆OX=';sC}urqK̬Ŀ\e1 2Zn43$|7^0?^yŮ8cmȌt:=]Jmx`77IG4._P]RckGO/b~+ǁl [58t_޿.6yE&Ō?8Y*~U|R??.[QXxEֺ+7o?9v_u"zQ/""M%[?ܿ>S_U"{c߷.$yuf2fjooq VNPvjp&w3;f15\wV;x}Y:RX02K5`si6D֍.}h.BRRY|g{IԆBŶSnzc`$DYė'Ig]@ '`!0xޱoGn;=.Z[KmE'^Xis[vkGFN5:B^t*Uc`;u-(Rc`ѾvݸdVWRہ'J p8{0h UY-[O[{773ʺvYnzlW1s|w`|V`ݳ9іy sYYTC-&VGOSNWwx=$yTmC(G' )s0:J!^yt>Y\W;7 YԽ8YՌ4pCߎwӣ}{PiOŒ Dx{ ܢ.#B̻!{=隖,qoC̭W`՜Xĝ}cva ǑSutN|K֘ͩ:jj*5eM4I6fsƀo`ٖx5l*@;B[ܬ׀Wm%6X)UMZiZ`W[j!fobn Wx 0x JPܦ1 niIՉ5نiLa#3}7bi3 u0le؈l򔕛 ġS=g g6Yڔo=+9 3"3<aMEv`$̔W+i |'?*>Ֆ:NeV0s^g>0 L0c?Pq`LyaEVPp1,TىS?? I~Ȍ2m8`<`163_,_2cp\}C 6PduÆ4lg:RHuJ1$?9vi`>峻Y~魪@ѱ5Ҫ|3UxSRə٧q_Lq?&qp቟C{_eY>70M*tԟ4W(NN3Z]ǰft }el+Oǝ{ar߾ũkrbݱzjXzFeG6>s5ο fv5:'bij20>斍6:%"".ҿ4=uQ.nu| 2h'a2w8_v!𶁍6:'ڴy3|x*!إv7"lg䞽p1TYs*F35tg={hFlǹeibP*_DDZEc};`ܹr݊؝\FG%l'L!pεV;|R7erR-_{3{q>l5;𠻽?uG9ɗݱzP1Ɲ+QnF׊܌si|ò;VO*ƗAx?p㙥_g i<I*{ݽeܕ<ὭjhfqAQp`?nx꺵K[nS1[ F3a>jP 8åRxBOW/ .}ኙ׺M9~;p>)l6 rVV%?ojl8%L&E6h_Dic%f3 _>Qp25mvvJRѷg'5[|D7evohK4x-9Bl8_u8.49_ڳҶTtzht\OP [zZf#ۜNٝf߀2ljz/Nn@5M P/"4pG1G#2.w.fGFΰ-ZLF-3 ~ E@?ḿ]8U}%f|#-n#vo7}tanzg9Qv'jړdYlb`w]<_|N}&Fo\yYATLR=rYEDwDcjv:8pF3CE./~F~6 `))`87ʹbǧ43c1wטqpYpPo^_ij%""I3 >ǀOO2R؞nUe\2v?ՑN}_̞iX΍pӰ;hSw+5Ε9j}h6o[y1CJi-8p'="W; m5m?_nyY > to`f nI)Tg[nj`48r067qc)&Җ4pw?U/08`FfuJWzh ~0ʍ*;0tMb;olqNHRV3S0_d Ņf|rg?|7.QaX(lz'7tׂN" bs? ;ɱuQ;S&4l=9nq1.ESũh2mIK7%v~AnTԙ(am/T&'aZY=5rvS06̈"O<9<NKud]hӟO%k̗H5N23zϬC3_"4Y"""""""RJEDDDDDDr*׈뺅.J0pm9)e| .Hc)B9&)eƀwIxDDDDDD5J.rjp8"""""" %RWWht<""""""%Rw̃_ |xDDDDDDvJ!rp"񈈈͔K 2z`O9Z)e=ݍGDDDDDh_n _F""""""U_@.s<񈈈MKe %T0-"""x1kȬ9Ut:a I{R/Mgf@=DDD J8hڜFdJ: JqiJ3=O@VLpE$2+ܲi)GTAX"K7:337n~ ` x\"""0?Ng1d;ߙ, 5Mv>ښͭTٿ4%r{/_16QiFiH%F3>lVϟS85lG%px3"*pnz(2[YIc`w-/oq`_!k׎f~֐@EUcr33rq&GpuҤ}.DjNɿ`w>ٞzίc crS'u%ȓ uI stb-Ad?2 iJJEDDDnm"INI39q,kGZ+bLpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCA IDATxwtZ $PbѫqM\8q!qbbqbo66cL H QT{od]Ċ9sٹ3wfys<8`0A`0O , db0Š`0N +8, db0Š`0N +8, db0Š`0N +8, db0Š`0N +8, db0Š`0N +8, db0Š`0N +8, db0Š`0N +8, db0Š`0N +8Nw6abCϤ|֟qX_˙͎!TH}AC%8܂gβ!SC36x(AT AˬWUUCϟ/ m`2٣RA-^&&&;6<<6 XtiHH㽝*,~MMMh;##===q\bbYbfԩS9srۃM&Ӂl%avޭVѦT*MJJz9CKMM~h"$i{rM VopxH9 );g=hFvM N\#h+389{DžRbf NhN0#r@p  l7 0 rrrbcclO+ (JOOi? hT:z0 _~h3999 qamnn~7/eWXVEwϴilyWo@#m6446zӧOkpPX;::{ . 6,X +*J#~uL8Е,!kmP)N?a53 W8xHcg5y4E'Y&IIgR3<;yhѳ iB4))I&vM[[[}}]a-))pMMM fّȨH{{˘L&saYh4M&Ӎ$xeݮ^vh4zzҥA3gB1 X 8~_Yޔڽ̽c%>5Ź蛖5ueݻLݝg.\"]r+{6P}UT_|WsTUMDYTTU<#^^kJLL7mǝ11Y`T*uw9Bww9s{,Ӓ'OZr ˲GV$:s+l.[1me̺ݻL]g,,<g2]UX1SVOO[Rt6!HJ5Ofd%؈GCM ϤlDȕAQtttw񌌌TTTX Z>J¥K:\\\fϞM0|Q ###V1 SPP`gddn||HNWZZ T*Ƞnix7:)[BBs>dU\'{*ກ-N/p@s;flkq_~.QaxpQlUmi1:vHUVUub\[p\}VEb Q81̔Jih2Z[[;::ƶ`hhh겚e{?X,Zt[ZZjjj,斖V777U(iii$׭[cw ,-a5 3XQWUX޼Ej)U} H' u5'(@L6h`zyΝ Ҭyʵ_9ՄaÌzr Ex  AAAqqq.]p`%gΜ2cYﯨJ~`# '!! ++!!Z:u XZ[[k{={Z( C.iH`dHBq)5S@H{йIj`VAwci\A@Yrlc64ՏWDDKk|W{ ;k)_kUjk}7$q=I:b\4pB$+W3ZDo&*++[f /(jz¬% J2LBU.۝fYVәL&)b1IhV2d֡78V;>>>>>!tuuuqqH$6JNN>|02Z-#qܡClt:ǝ={w LBH$xU$6otz=)M0:n||\p'J L&7=a?h법#y[XQ {Auv+Hܕ_2ܠ chk{m~KGW[Rdfϗ\o'eue%#n Dǹ<_tB0++뭷Ba=jippuvvA?...7hꆆGU.ggg[ ;44TXXxС˗/0 #|||׭[j;͹s>Sz~ﱱ#qyyy }ܹ?Tg E||+r W :w?IbYz;""}:88x5˙E+??B4@m۶EY_U*ձc݋gA4}0LggÇ?^__ kpppvvM5y' musWq,9zQm5UBPםO Wvb8cWȟ_wkTP'L:o4uS@EHBAh$t9xBIx˯^(*&&&$$l[[[{{;/eeeJQ֭[_}U0555zVWW̙3y_&ɓ'♺? 6l߾=88H766Ǐ/]E@ qjiih/_WWwTAN6̙3hիW[>1//UV}',mllljjⅵjhhwI+J64g0Bpxx2g9zl|ͧO?؍=p/^dYֲy[[[qq}~Fl!dVwXƬ,W] A^'{R4oϯZ98WOWTU$eo|QrsBIxoMIU "==liiW11 SVV;###z!~e`` ejxb4t5ͅ[l9v옥>4ͧ~nݺFq?NF/Y---ݺukqqe|+Bq\GGǾ}zzz|}}gΜo666vww|qt!5k9immmllMsX l\;Ewnذo)ǯѰd2͡o D2'm2UqxQHd3f$)xi`,i:##755!Kgcɒ%U5<<|U$ ͼLy$q\]]s=,bAr< 44W* [^^F/! ...^^^ޞT===_+**x^^^nnn$IZlNLL\v ~ZmQQOLJNLL `0\xb$I.[̑7x6(rww ,}p ]oժU۶m۶mʕ+}}}_`ضm[qq4q~#HOOiN1j#D,c_(![^ H1gk6ku'VU X_WW^tD"rssKJJ/јǧnJUUվ}MTe˖޽{Ϝ9Ï3,{@#""^z饍7"KYݻwǎmmmho#XX@kfTkkY)$ r 8X;P .@]it!meYC[sF<b$9Ůksmr@HY̳Q0.^yzW5`@ 6S)[_CRLHH8qƎ/T|||fϞMdZZ }8zڴi9AںѯիQHf|||zzzhh_򗾾>˲O}^+PV˗CBB L2 eTS*' üȻ'СC6w͜93))iǎ}aݻ]T*.^xڵbP(ܼyŋ?tW^#߈{Cz+kHb >6p%i:wQ2TTU"I+WSPn4^ﮀ0~l&QD4 3e=&^S0U\]]Ν탃555|kjj I|%v||9D"S=@.X2]"~77Hvtt__H6mc=PI09qqq|XgggkkF9}4Kz]}}KB/aΝ;ߔBx'"MvZۼ!'/ڔd"^^^E~`_JzZLvYr $2dGL:!g蝹Ǯ&t̄㜚 %D$wp,ǁu 3e7 '_2l̙2 Bnnn|d4鬨hnnGJrƌYYY_+55v\ꚑQ\\l6WWWw}V;hhhhll7 gϞLj⨨04:v\T*;;;F2,, @ B啐PPP,0W^m[HpBGz{{yc޼yV@-555_؞={9b`0_em`a[I\ b4jG,`YzFAh( dBq@ .[oҐ@5mAn\Ǡ]KU lufG9 (Rl6Ս9(H222>#̲lKKK~~~{{;NJJBoR鍲"^mqssFhZ` ,JJܻHX9pB=Bp|r9 >uꔥ5*****ʑzшf25\wrg1 |qm*XX!$t'CXƬ++,K_z*)8j%ٲ [ U=zM[P2twW3 I @ LH"\\|oo襤rSYY)QJ(*..iJ[[yW&0==1 2gYFP\vC* OM&]G*˲T]\\t:^|||,@Q^^hoo?teWNNVє0 0l6 εL&$(ӧ;ұXX@zyVj:e̺ eeeP!׭ \$gh+!JO^?īj~nDcฮW KgGQ1ܟ斐 Rv!8G>SA^^^IIIHXGFF#]\\xaL&0>><|+g"gZE+M)22,6˲FGTTB@a_"552O||<VV{^XdH$8ndd_qeP(VZkՖ8ۄ+~+^5pSXƬt^E.^|[ySCP(^VUUk:\Ljio`4;kD+lE"QVVY<H1o%.**⣑xΞ= H$Trk(JOOO^/_\^^neNLL;wքh>/8`[K,| (Xd4ya2.b844###h1zEZ!@jZREFF&_R,))))))--w|XXo)[Z9.cm%͗ZjBzI.} J9u`P|W˯HU,uWiN7?q VKҙ3g\5{l˙ ~N+..?ֆh4^vwީfƌR/: >>ӧO?|Y,$ɀXXX={6 Î;d2Y^^u IDAT5 ׿vpqqyꩧjW_}8˒\bkttւ 3g nmm彫6m9NJJR*Sz$(~%oMLLV=&?FvĄMu//{Gwb@HIOю?& ՗˚Z4{wk/B*T>z*nBT)*Es%Oe!y[3f-;wI% Q 'T*3gݥ111o;3i*\>{W,!ENeH044t-_]eXG;aZdnR c`ڵkX2::zڴi"{cccyKܹs_(gddUYfr+QST|'bϲlii)?>k,[UUUQQى7===!!AӕK bbbjjjV3WVU u t}4GftIZ&ɜgWU'e:UUHsåf.bL`nXXoB"]rqG2$=Kv#qݤ Z[Aovد*iRW VU 涂!\\%'O8A[yU]VU{_k.H ̎'1wH䔈eQFpfm`auWWzi.d$MK2ڪo4ōzÑUH lN}/R[H$RRRAKKKXIIIsνˈNLLѻ¸8TN c/_-8~VRJKk7ZUYt.k ǫdzd,+y;-0iǎ7-"m/|;߯E?|bb].CCC.Z !|g̘Ktu.' >yltJJlUc|𪶸I68%53%Anqǵ[Xwns˲]EngnKejV'@JGnH)M/ZJZK[Gz芶Qr8 K8V~T`auE4#HfZiP4-]+]iGUG͇jgWAL蘾qs%neJ҅ ZT*U}}=n$tL̏ VAK!EƬKWH׫*ǁQ3Mq2Z>b:P% 87T$nmuww߾}zΝ_|j@ VgBEKAmR4M/[)Y*ǁ1U3*aAӐq_9 H o B4^`!I2666"".m`:I/ɟ iZzJI2JU{'*g*glaXb6ںu:P( iaPզvNGz tuu544 PmuiFIQ(fi``]:""¶%jiWWW{{(%888 @&r*˲mmm]]]z^(+mmmuss^AhA"jNLx7L@4M/[!Yj .iuǫCΫIRBB9˲oiiQT,!li-q]]]onn`B(}||RRR6nܘ4I4ptt/@QQhL~+VX;پ};5;;_/:::PrXLaÆ˗ۭ)R \2<??/C P(>`CCÑ#G ܹsO:sN$=͛-ϩh^{Wc\\\vڅs@Hdy D釺lZEL?(VWt_[59,:FL56'VzfsII믿^YYRZ[[+**~ӦMVZc2wYQQ111aնGٴi?oWCCC=إKT*_/ BZ^^^WW_RTjmzxx⋇Fηmiixb]]ݳ>_ %~W\\JZ쬩xף4]fݻwҢhi8p衇!jt ###F .PӣbF&$$ $$$77ײNyy3g1˗/|?m8@H2Ij@.0p\#Yɭj9;_8 L/@sbxaY˿.\' DbX՚L&aT*U]]?/ɖ/_ηe߱cGee_ èƿo^Q_ۊqFg׮]!!!=oJJJPQU&o[\\ܺu4?xII۾~W7}}}*74O=_W^ye׮]83 bA CCCCCCCrr2̩S,foڴvZ'c8-SaqXljJU'tO;YU*"ɺ)m _YYRU_WKN>_Ao۶mppo'XV(*>>~ݺu/ ߿-hKQTDDČ3, [zzzN:e[j H$ 𰴩GGG 8o~S\\wX(._<""<{Ν;;;;%IJJ͛WR8nxx+,,}EEE~9s^:##q%JW ꦦrSJuy{lٲO,?.P$gs} zjλ0a^?6q0$%Oa_od+R 0{A?]OO_WoFFFFDDDzzouVdfr_̙3'N+((@ϲK2q1~Ŋ}o޼O9FLm}GeeeEEE}<`Y0KJJ(_'Oܷo޽{OE%&&޽`Ϟ=ǎۿee)JOO  \vWҊv7f͚a~`aсB! /MqoV.pXUrY7 Ys:9KݵRӝ:u3gΟ?(pZc0=gP>リfEGGoCZrX,lkk톛_ו+Wzyyʆ-k5VH7xc˖-J}Μ9/‚ 8>mCBqw H$$((h֭=AFaUUU/_OgrP(Ҷm۶pBSXX0L3gS˗/W("H&eff+g϶uVK.E&qٳgG~z`@UWuMVEJE8Olߋ՝#]ZU,͋7B_p pjPN?ﯩᏙ1cFff ୷'<==yߢ%YYYɼv@-[V\\aV9 [z5B;gΜ'O"3(l6[X@@C=dUO*cccHOu:$V, R6lؐhy0>>~ٲeXuuujjjmm-Q(&&&X={vzzիWm˯%K|PmhhNLL ťܨ?In8t?-SwZ- c%&Ki! H<|M_z5225yyymmmh'DޱUUUHpkjj""",vttk׮]C3fxW4{{{磣| &O tƌ 7nLKK_0 Ԝ=!!eܾ}O?$5MMM͞={,*E| oDrrFr_|QUU5$M3g G/0VpB{ A$0ZL&9ِ~S ꧢh!"E;$IFEEN3 CCC(Թsuݺur@tVVVVV2x555ɓ'PK ˗į6lX8>(** vvvVWW%b͛7o.//E=}tOOO||Jjjj6l@Eg?+((@3gXohhAaaa)))555-Tt{$XX$) L3J٪VgK)GO 0/J,ojj3:Z"ik>J(nܸqժUB>Gy9:;;{zz(B߹tХKЛ$IYf\r!!!IDf-ƍcbb9rf>J"ggg/_<99+饗f͚o߾aHJ<իWIB']wqݻWrtWL 5ƨ DaӫTV~N$ɄbIJND~=www//IࣴxݨA>>>nnnV4K```@@644r#"Ykll jww8sTTq醆PݬD" vn>>>V0DOOOoooOO` ^^^>>>95!Qm~KQT@T>?cu??Xnn{?yEp8kt i{&rrր<(rpr/mIʶWA c͢h&s@9m=@e_}'{`ѢEVm/\K/|I4x]wÏZ:֮EQ#% Ĺm:q9ܴ?2d/_F f< +ӟl殮gϢ`3666<<ȁ/Ҭk`a`0? T/:P+X,NIIw, BWWקzj͚5V ^_[[˯F%j&O + @㓐e˖e˖G babb;5IDAT\7|0 (--+_Y!JeAK4MCCrYV XX1  db0Š`0N +8, db0Š`0N +8, db0Š`0N +8, db0Š`0N +8, db0Š`0N +8, db0Š`0N +8, db0Š`0N +8, db0Š`0NzSCOIENDB`mkdocs-material-9.6.4/.github/assets/sponsors/sponsor-zenoss.png000066400000000000000000000172321475306445600251110ustar00rootroot00000000000000PNG  IHDRMw~iCCPSMPTE RP 431-2-2007 DCI (P3)eMKQ_CȬe -*H܄YP0}4PfFJhmj_ڵBVEvnEIsK{9/s9BN˛Neȋslm}uWp!j%Jv#B}V"9{ZW;;65:8$]KLa">LpF"Lj"~ &LsEك辯a$  1L!|6Owy'&dlgz.m˂4 k?@9iy;p@\tPurjnTCo@O1?9+S=&Rڜg, I pHYs\F\FCAIDATxi\¦ JTb]VTniE V-n(P-rZT}(H(5 k "!$'0~9sΠ,g!b qoC `A X`@0V +  `A X`@0V +  `A X`@0V +  `A X`@0V +Ox|>7SSS&iooO9+x577dee]~@(*+egg7f̘1cƸ17|THbmjkhhȸ{@ РWWו+Wjii~z# 3\.\.YYYu6$ X{GFF:tOy[[[KKK###addd``PSSS^^r#-Iwܹ~z c>"=}:tI iӦM>}ԩGMOO2330 sttc2D:(A@\\\@@ ڲex/geeQԍ7ܹ.]AxDFF*7<{wv4[[[ ,X G X{#***88Xvˈ#ǏOT;vOϜ9f XD6[͛H$jlE:(d1Hʎ;wιsttt)% 8A~,sss>|X[[[SSS[[c-cذa...=:<Ν;eKwǎ...ӧOWx,=wܩS_%adddq8'Nܺu !&Mڰa}=.&&f=Tc~~EEEV_n߾}Ȑ!bǏ_bzzzAAA8[wrr:}4i9FNS֩{HE)D5Л45++YWSxǏKieԨQ}… q>;v8tma6lذt ٭>L</ `֬Y*aɓƍxbwNa~~~Sðw38˷yЊ;*af?5>[ak]SNےnooY/[:66Veᒒ'iaO>]zeRRf5 @~jjj&N ڴiSG;kY}|wIIrbq%qhЊGm\ݼy{eee7۪ D yHNNvtt?a ,hjj~m@% aX'Q-_\GFyyyrW\*!ro?Y~C ۷~ - RRRƎɓ 4PU(..nƌ<:B&BbMHH Snl/¬n6HȻ=O< !)S<~XvcuugK rX,!GGGOnn.–Fe>G \i=S3:j*d̜9}Iv{^UU>J[[{֬YVZnرc 4h],,,?_r]~ڴi[ne2 C!!!P^n݌3zyV^/Ky=ڮsrIPIGO]{VQ(??YfikkK|I}|em9999sFk1u͙3а9555QQQT A__?%%>C[gjp ^x(`kkkllañUV`:t_Y7uX/#dĬZJJΠA͛`kk񊊊Z%ݻiЪX\wtMGU)4K;@CEM'^*klnr-+V8~byf֭qqq"Hnϟ?ߧO閈u)jyyyte?:cc˗/8(JHHXt)@~򬭭%ׯ_aet۷Tde{GQZZ*faÆM60,**jݺu]F`yFaEkunM)}>RuQUxujHTɺ)n ƍ*0 {GE?O|}}O:%(fҥ *)**aXrr ޿L{{{<ǂng˗//_Q@WW755U|>ȑ#1118/FL_!#(Dv5U1 [fɓ'{zz掸1U0j_+zS)KU &FK7&i͋;ڛu8GGѣGnU$鳔^dɑkΝɁT5___DQ2|릫W"}6mW_}vE*$TW$)>>~ڴi2-4isΕZtCQ'(ڀaxN>eQ!TK5!Fv˲ed?>{Lu[svv>pa7n駟d_2S^97ofXvvvjdn)++5k#G<<wHuu̙3e6n(0HEӽ=)S(UQQ+ ^}{#5{lٗbA)gQ@!Q.:QoJ;妕/bk֭Of͚؋2dȮ]p-<1@nhllx)_ב?EEE_ˏp3fc"="ݻ驲Ç|H&MLL˭"xz_ܡ(џi+}ՂgDM{ZzVWW޽;,,L2eСC5;{{K.! TVVn۶mǎ#G5aA`}'ϟ?=>\]]>{9⨼z;Bjijj3Zuf9DO77xxZtjO%pԳg+t5kua7|VOdxyvxzz!!!*fz0Lm1c>?U)Vv% $B60j|ňUBut#wonnr3gp8{hsΕw ѷoȍ7۷رcz``GoAee̙3I??={ ۶mSwByyy`U:$Irk(F+ŠqlllDDŋO8qeY"##oߞrVׯ_޽[J(544MReU!Ww~.CTnWtk5dYuttϟrsssWX1n8 :ls/Z())fyҥKaaaϷQDČbWΙ3QeU!&[RRK<.Are3MWmI4MF ʋ&EҢ,M 'OA&0g#?~,ܱc޹sGQ(FEEhE yYrjc6^K USNS_-ڴi(Ǝkaa!+mҤI׮]SVԢ^0EK`q.]R0Thh_q ÇUUU...jK ݻյuuuW7n\VVƧ:$LԢ5a"QS֩/J0E*jilQJPbBErKl333KKKGJNNF앛իmmm^^^/^Tخ00`Zb=+??ʔ)O8٭Lq8kkkD/&؈ਨ(:Me7z))F5BhC0T~^DUg}bogϖ>`XG9jxx <(]I!99yr~Q);{lģccc6@TVV6yd(]o[nUp}}}CCׯ_u/]w'Eī;,7lܞ?yVNPPϾzj۶m?3-fD"ў={ӧϼy|||f̘C^EEѣG˷kp ~=(..GSUNHH͛7333՝M.44Tnmw?xkO ttT0,((H_}kkkxxxxxH$RYYٳg?~|UT-\̬u1>>>>>^OOoС벲/^ߪRIIIW5h"m{mܤ=Q9IGd;Ǐ#~iUTT$&&j֜Udd$aYYY8655=x@QQQ/pW^Sc^^^Ǐ: ۢÜb)DU3de{(뫪Rl7Q(SNI(~z߾xn` 6ƍ#G$N*~wm:xñE4$06H~Ld%GGG'>>^:ðO>$??_*ǿ;?`ѣG˽Iטevv/Qƫ#iݯ>el`۷=zT5TYdv -[GjD"={:뇉NGGGtg$33{;;;xn3^n跉baLacM~4V6 D |Ç /qeJwU^^uVRx :4###$$A`yxxƎ7N 78$(Xoh#Dip2Zh*E^tڵk?r^r˗/)P_QQqI P(>>>W\yt,;k¹t-{)@>dtL&πz\8+`ʺ;W睶?vԱE:d]1uIZ6HZtjp…?zHY*--- .^X_T ߿>Ǔ+@"oiiiii)^ W-HTVVf|@ 011155533311R?w!DHyѣj.pZZZ$geeennN=H$%AR ]hA+  `A X`@0V +  `A X`@0V +  `A X`@0V +  `A X`@0V +  `A X`@0V +  `?Qw}ZIENDB`mkdocs-material-9.6.4/.github/dependabot.yml000066400000000000000000000032631475306445600210200ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. version: 2 updates: - package-ecosystem: npm open-pull-requests-limit: 10 directory: "/" labels: [] schedule: interval: monthly time: "04:00" - package-ecosystem: pip # We only want to bump versions of packages in case of security updates, as # we want to keep maximum compatibility - see https://t.ly/INSR_ open-pull-requests-limit: 0 directory: "/" labels: [] schedule: interval: monthly time: "04:00" - package-ecosystem: github-actions open-pull-requests-limit: 10 directory: "/" labels: [] schedule: interval: monthly time: "04:00" mkdocs-material-9.6.4/.github/workflows/000077500000000000000000000000001475306445600202215ustar00rootroot00000000000000mkdocs-material-9.6.4/.github/workflows/build.yml000066400000000000000000000143461475306445600220530ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. name: build on: push: branches: - master pull_request: release: types: - published env: NODE_VERSION: 18.x PYTHON_VERSION: 3.x permissions: contents: read jobs: npm-build: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v4 - name: Set up Node.js runtime uses: actions/setup-node@v4 with: node-version: ${{ env.NODE_VERSION }} - name: Set up Node.js dependency cache uses: actions/cache@v4 id: cache with: key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} path: node_modules - name: Set up Node.js dependencies if: steps.cache.outputs.cache-hit != 'true' run: npm install - name: Build project run: | npm run build git diff --name-only npm-check: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v4 - name: Set up Node.js runtime uses: actions/setup-node@v4 with: node-version: ${{ env.NODE_VERSION }} - name: Set up Node.js dependency cache uses: actions/cache@v4 id: cache with: key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} path: node_modules - name: Set up Node.js dependencies if: steps.cache.outputs.cache-hit != 'true' run: npm install - name: Check project run: npm run check python: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v4 - name: Set up Python runtime uses: actions/setup-python@v5 with: python-version: ${{ env.PYTHON_VERSION }} cache: pip cache-dependency-path: | pyproject.toml requirements.txt - name: Set up Python dependencies run: pip install --upgrade build twine - name: Build Python package run: python -m build - name: Publish Python package if: github.event_name == 'release' env: PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }} PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }} run: twine upload --disable-progress-bar -u ${PYPI_USERNAME} -p ${PYPI_PASSWORD} dist/* docker: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v4 - name: Set up QEMU uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Login to DockerHub if: github.event_name == 'release' uses: docker/login-action@v3 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Login to GitHub Container Registry if: github.event_name == 'release' uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.GHCR_TOKEN }} - name: Generate Docker tags and labels id: meta uses: docker/metadata-action@v5 with: images: | ${{ github.event.repository.full_name }} ghcr.io/${{ github.event.repository.full_name }} tags: | type=semver,pattern={{version}} type=semver,pattern={{major}}.{{minor}} type=semver,pattern={{major}} type=ref,event=branch type=ref,event=pr flavor: | latest=${{ github.event.release.prerelease == false }} - name: Build Docker image uses: docker/build-push-action@v6 with: context: . load: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} - name: Check Docker image working-directory: /tmp env: REPO_FULL_NAME: '${{ github.event.repository.full_name }}' run: | docker run --rm -i -v ${PWD}:/docs ${REPO_FULL_NAME,,}:${{ steps.meta.outputs.version }} new . docker run --rm -i -v ${PWD}:/docs ${REPO_FULL_NAME,,}:${{ steps.meta.outputs.version }} build - name: Set platforms if: github.event_name == 'release' run: | echo "PLATFORMS=linux/amd64,linux/arm64,linux/arm/v7" >> $GITHUB_ENV - name: Publish Docker image uses: docker/build-push-action@v6 with: context: . platforms: ${{ env.PLATFORMS }} push: ${{ github.event_name == 'release' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} - name: Check manifest if: github.event_name == 'release' run: | docker buildx imagetools inspect ${{ github.event.repository.full_name }}:${{ steps.meta.outputs.version }} - name: Inspect image if: github.event_name == 'release' run: | docker pull ${{ github.event.repository.full_name }}:${{ steps.meta.outputs.version }} docker image inspect ${{ github.event.repository.full_name }}:${{ steps.meta.outputs.version }} mkdocs-material-9.6.4/.github/workflows/documentation.yml000066400000000000000000000076011475306445600236210ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. name: documentation on: push: branches: - master env: PYTHON_VERSION: 3.x permissions: contents: write id-token: write pages: write jobs: documentation: name: Build documentation runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v4 with: fetch-depth: 0 sparse-checkout: | docs includes material/overrides src/templates/partials/languages - name: Set up Python runtime uses: actions/setup-python@v5 with: python-version: ${{ env.PYTHON_VERSION }} cache: pip cache-dependency-path: | pyproject.toml requirements.txt - name: Set up build cache uses: actions/cache/restore@v4 with: key: mkdocs-material-${{ hashfiles('.cache/**') }} path: .cache restore-keys: | mkdocs-material- - name: Install dependencies run: sudo apt-get install pngquant - name: Install Python dependencies run: | pip install mkdocs-material pip install .[recommended,git,imaging] - name: Install Insiders build if: github.event.repository.fork == false env: GH_TOKEN: ${{ secrets.GH_TOKEN }} run: | # Warning: please don't use this method when installing Insiders from # CI! We have to do it this way in order to allow for overrides on our # own documentation, but you should stick to the method we recommend # in the publishing guide – see https://bit.ly/3zjdJtw git clone --depth 1 https://${GH_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git pip install -e mkdocs-material-insiders cp mkdocs-material-insiders/mkdocs.yml mkdocs.yml # echo 'extra_javascript: [${{ vars.CHAT_CLIENT_URL }}]' >> mkdocs.yml rm -rf material cp -r mkdocs-material-insiders/material material - name: Build documentation env: GH_TOKEN: ${{ secrets.GH_TOKEN }} GOOGLE_ANALYTICS_KEY: ${{ secrets.GOOGLE_ANALYTICS_KEY }} run: | mkdocs build --clean mkdocs --version - name: Adjust permissions run: | chmod -c -R +rX site/ | while read line; do echo "::warning title=Invalid file permissions automatically fixed::$line" done - name: Upload to GitHub Pages uses: actions/upload-pages-artifact@v3 with: path: site - name: Deploy to GitHub Pages uses: actions/deploy-pages@v4 - name: Save build cache uses: actions/cache/save@v4 with: key: mkdocs-material-${{ hashfiles('.cache/**') }} path: .cache mkdocs-material-9.6.4/.gitignore000066400000000000000000000035021475306445600166140ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # ----------------------------------------------------------------------------- # Node, TypeScript, Python # ----------------------------------------------------------------------------- # Dependencies node_modules __pycache__ venv .venv # Build files build site # Distribution files dist mkdocs_material.egg-info # Caches and logs *.cpuprofile *.log *.tsbuildinfo .cache .eslintcache __pycache__ # Examples example example.zip # ----------------------------------------------------------------------------- # General # ----------------------------------------------------------------------------- # Never ignore .gitkeep files !**/.gitkeep # macOS internals .DS_Store # Temporary files TODO tmp # IDEs & Editors .idea *~ mkdocs-material-9.6.4/.stylelintignore000066400000000000000000000023231475306445600200600ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # Distribution files docs material src/**/*.html # Prevent stylelint from constantly complaining *.css *.ts mkdocs-material-9.6.4/.stylelintrc000066400000000000000000000114311475306445600172010ustar00rootroot00000000000000{ "extends": [ "@stylistic/stylelint-config", "stylelint-config-recess-order", "stylelint-config-recommended", "stylelint-config-standard-scss" ], "plugins": [ "@stylistic/stylelint-plugin", "stylelint-scss" ], "rules": { "alpha-value-notation": "number", "annotation-no-unknown": null, "at-rule-empty-line-before": [ "always", { "except": [ "blockless-after-same-name-blockless", "first-nested" ], "ignore": [ "after-comment" ], "ignoreAtRules": [ "if", "each", "else", "elseif", "for", "import", "return" ] } ], "at-rule-no-unknown": null, "color-function-notation": null, "color-hex-length": "long", "color-named": "never", "comment-empty-line-before": [ "always", { "ignore": [ "stylelint-commands" ] } ], "custom-property-empty-line-before": null, "custom-property-pattern": null, "declaration-no-important": true, "declaration-block-single-line-max-declarations": 0, "font-family-name-quotes": "always-where-recommended", "font-weight-notation": "numeric", "function-calc-no-unspaced-operator": null, "function-no-unknown": null, "function-url-no-scheme-relative": true, "function-url-quotes": "always", "hue-degree-notation": "number", "length-zero-no-unit": [ true, { "ignore": ["custom-properties"] } ], "media-feature-name-no-unknown": null, "media-feature-range-notation": null, "media-query-no-invalid": null, "no-descending-specificity": null, "no-unknown-animations": true, "property-no-unknown": null, "property-no-vendor-prefix": [ true, { "ignoreProperties": [ "line-clamp", "box-orient" ] } ], "selector-class-pattern": null, "selector-id-pattern": null, "selector-max-id": 0, "selector-no-qualifying-type": null, "selector-pseudo-class-no-unknown": null, "selector-pseudo-element-no-unknown": null, "unit-allowed-list": [ "%", "ch", "dppx", "deg", "em", "fr", "mm", "ms", "px", "vh", "vw" ], "value-keyword-case": [ "lower", { "ignoreProperties": [ "/^--/" ] } ], "value-no-vendor-prefix": [ true, { "ignoreValues": [ "box" ] } ], "scss/at-each-key-value-single-line": true, "scss/at-else-closing-brace-newline-after": "always-last-in-chain", "scss/at-function-parentheses-space-before": "never", "scss/at-function-pattern": "^[a-z][a-z0-9]*(-[a-z0-9]+)*$", "scss/at-if-closing-brace-newline-after": "always-last-in-chain", "scss/at-if-no-null": true, "scss/at-mixin-argumentless-call-parentheses": "always", "scss/at-mixin-parentheses-space-before": "never", "scss/at-mixin-pattern": "^[a-z][a-z0-9]*(-[a-z0-9]+)*$", "scss/at-rule-conditional-no-parentheses": true, "scss/comment-no-empty": null, "scss/comment-no-loud": true, "scss/declaration-nested-properties": "never", "scss/dimension-no-non-numeric-values": true, "scss/dollar-variable-colon-newline-after": "always-multi-line", "scss/dollar-variable-colon-space-after": "always-single-line", "scss/dollar-variable-colon-space-before": "never", "scss/dollar-variable-first-in-block": null, "scss/dollar-variable-no-missing-interpolation": true, "scss/dollar-variable-pattern": "^[a-z][a-z0-9]*(-[a-z0-9]+)*$", "scss/double-slash-comment-empty-line-before": null, "scss/double-slash-comment-whitespace-inside": "always", "scss/at-extend-no-missing-placeholder": null, "scss/load-partial-extension": "never", "scss/no-duplicate-mixins": true, "scss/no-global-function-names": null, "scss/operator-no-newline-after": null, "scss/operator-no-unspaced": true, "scss/partial-no-import": true, "scss/percent-placeholder-pattern": "^[a-z][a-z0-9]*(-[a-z0-9]+)*$", "scss/selector-no-redundant-nesting-selector": true, "@stylistic/block-closing-brace-newline-after": [ "always", { "ignoreAtRules": [ "if", "else", "elseif" ] } ], "@stylistic/declaration-colon-space-after": null, "@stylistic/no-empty-first-line": true, "@stylistic/linebreaks": "unix", "@stylistic/selector-combinator-space-before": null, "@stylistic/selector-descendant-combinator-no-non-space": null, "@stylistic/selector-max-empty-lines": 0, "@stylistic/string-quotes": "double", "@stylistic/unicode-bom": "never", "@stylistic/value-list-comma-newline-after": null } } mkdocs-material-9.6.4/.vscode/000077500000000000000000000000001475306445600161655ustar00rootroot00000000000000mkdocs-material-9.6.4/.vscode/launch.json000066400000000000000000000030421475306445600203310ustar00rootroot00000000000000{ "version": "0.2.0", "configurations": [ { "name": "Chrome", "type": "chrome", "request": "launch", "runtimeArgs": [ "--disable-features=Translate", "--incognito" ], "preLaunchTask": "Start and watch for changes", "url": "http://localhost:8000/", "webRoot": "${workspaceFolder}", "sourceMaps": true, "sourceMapPathOverrides": { "*": "${workspaceFolder}/*" }, "smartStep": true }, { "name": "MkDocs", "type": "python", "request": "launch", "preLaunchTask": "Start and watch for changes", "program": "venv/bin/mkdocs", "args": ["build"], "env": { "PYTHONPATH": "." } }, { "name": "MkDocs server", "type": "python", "request": "launch", "preLaunchTask": "Start and watch for changes", "program": "venv/bin/mkdocs", "args": ["serve", "--watch-theme"], "env": { "PYTHONPATH": "." } }, { "name": "MkDocs server (dirty)", "type": "python", "request": "launch", "preLaunchTask": "Start and watch for changes", "program": "venv/bin/mkdocs", "args": ["serve", "--watch-theme", "--dirtyreload"], "env": { "PYTHONPATH": "." } } ], "compounds": [ { "name": "Chrome + MkDocs server", "configurations": ["Chrome", "MkDocs server"] }, { "name": "Chrome + MkDocs server (dirty)", "configurations": ["Chrome", "MkDocs server (dirty)"] } ] } mkdocs-material-9.6.4/.vscode/settings.json000066400000000000000000000011601475306445600207160ustar00rootroot00000000000000{ "git.ignoreLimitWarning": true, "search.exclude": { "**/material": true, "**/node_modules": true, "**/package-lock.json": true }, "search.followSymlinks": false, "stylelint.validate": ["css", "scss"], "typescript.tsdk": "node_modules/typescript/lib", "yaml.schemas": { "docs/schema.json": "mkdocs.yml" }, "yaml.customTags": [ "!ENV scalar", "!ENV sequence", "tag:yaml.org,2002:python/name:material.extensions.emoji.to_svg", "tag:yaml.org,2002:python/name:material.extensions.emoji.twemoji", "tag:yaml.org,2002:python/name:pymdownx.superfences.fence_code_format" ] } mkdocs-material-9.6.4/.vscode/tasks.json000066400000000000000000000014361475306445600202110ustar00rootroot00000000000000{ "version": "2.0.0", "tasks": [ { "label": "Build", "type": "shell", "command": "npm run build", "group": "build", "presentation": { "reveal": "silent" }, "problemMatcher": [ "$tsc" ] }, { "label": "Start and watch for changes", "type": "shell", "command": "npm start", "isBackground": true, "group": "build", "presentation": { "reveal": "silent" }, "problemMatcher": { "pattern": [ { "regexp": ".", "file": 1, "location": 2, "message": 3 } ], "background": { "beginsPattern": "material\/templates", "endsPattern": "." } } } ] } mkdocs-material-9.6.4/CHANGELOG000066400000000000000000003766071475306445600160610ustar00rootroot00000000000000mkdocs-material-9.6.4 (2025-02-12) * Fixed #7985: Blog content sometimes not stretching to full width * Fixed #7978: Navigation rendering bug in Safari 18.3 mkdocs-material-9.6.3 (2025-02-07) * Fixed rendering of arrow heads in Mermaid.js class diagrams * Fixed #7960: Tags plugin crashes on numeric metadata titles mkdocs-material-9.6.2 (2025-02-03) * Fixed #7955: Excessively long words don't break on narrow screens * Fixed #7947: Scope setting interferes with outdated version banner mkdocs-material-9.6.1 (2025-01-31) * Fixed #7943: Tags plugin crashing due to merge error mkdocs-material-9.6.0 (2025-01-31) * Added meta plugin * Rewrite of the tags plugin * Added support for allow lists in tags plugin * Added support for and custom sorting in tags plugin * Added support for related links in blog plugin * Added support for custom index pages in blog plugin * Added support for navigation subtitles * Fixed #7924: Anchors might require two clicks when using instant navigation mkdocs-material-9.5.50 (2025-01-18) * Fixed #7913: Social plugin renders attribute lists in page title mkdocs-material-9.5.49+insiders-4.53.15 (2025-01-15) * Fixed #7896: Scoped tags listings not rendering in subsections mkdocs-material-9.5.49 (2024-12-16) * Adjusted title color in dark mode for all supported Mermaid.js diagrams * Fixed #7803: Privacy plugin crashes on generated files * Fixed #7781: Mermaid.js flow chart title not visible in dark mode mkdocs-material-9.5.48 (2024-12-08) * Fixed #7774: Disabling social cards doesn't work mkdocs-material-9.5.47 (2024-12-01) * Fixed #7750: Numeric tags break search * Fixed #7748: Blog plugin breaks when using future drafts (9.5.45 regression) mkdocs-material-9.5.46 (2024-11-25) * Added support for removing preload hints in privacy plugin * Fixed #7734: Code blocks in h5 headlines are uppercased * Fixed #7725: Blog plugin crashing on missing timezone (9.5.45 regression) mkdocs-material-9.5.45 (2024-11-20) * Reduced size of Docker image through multi-stage build * Fixed #7708: Blog plugin crashing on YAML dates with timezones mkdocs-material-9.5.44 (2024-11-05) * Fixed #7672: Font CSS 404's when using privacy plugin (9.5.43 regression) mkdocs-material-9.5.43 (2024-10-31) * Added support for external images in SVGs in privacy plugin * Fixed #7651: Privacy plugin doesn't handle quoted URLs in CSS mkdocs-material-9.5.42 (2024-10-20) * Fixed #7625: Invalid encoding of boolean attributes in privacy plugin * Fixed #7624: Crash when disabling privacy plugin (9.5.41 regression) mkdocs-material-9.5.41 (2024-10-15) * Fixed #7619: Improved tooltip on logo disappears after instant navigation * Fixed #7616: Race condition in built-in privacy plugin when inlining assets * Fixed #7615: Comments and "Was this page helpful?" visible when printing mkdocs-material-9.5.40 (2024-10-10) * Updated Latvian translations * Fixed #7597: Social cards not using site name on home page mkdocs-material-9.5.39+insiders-4.53.14 (2024-09-29) * Fixed #7567: Empty headlines when using typeset plugin with anchorlinks mkdocs-material-9.5.39 (2024-09-29) * Fixed #7226: not staying on page when using mike's canonical versioning mkdocs-material-9.5.38 (2024-09-26) * Added Albanian translations mkdocs-material-9.5.37 (2024-09-25) * Added 4th and 5th level ordered list styles * Fixed #7548: Tags have no spacing in search mkdocs-material-9.5.36 (2024-09-21) * Fixed #7544: Social cards incorrectly rendering HTML entities * Fixed #7542: Improved support for setting custom list styles mkdocs-material-9.5.35 (2024-09-18) * Fixed #7498: Search not showing for Vietnamese language mkdocs-material-9.5.34+insiders-4.53.13 (2024-09-14) * Fixed #7520: Social plugin errors for generated files (MkDocs 1.6+) mkdocs-material-9.5.34 (2024-08-31) * Updated Mermaid.js to version 11 (latest) mkdocs-material-9.5.33 (2024-08-23) * Fixed #7453: Incorrect position of tooltip when sorting table mkdocs-material-9.5.32 (2024-08-19) * Fixed RXSS vulnerability via deep link in search results * Added support for fetching latest release from GitLab mkdocs-material-9.5.31+insiders-4.53.12 (2024-08-02) * Fixed #7410: Instant previews jump on content tabs with anchor links * Fixed #7408: Instant previews jump on content tabs mkdocs-material-9.5.31 (2024-08-02) * Fixed #7405: DockerHub missing images > 9.5.27 due to change in Alpine/APK mkdocs-material-9.5.30 (2024-07-23) * Fixed #7380: Navigation icons disappearing on hover in Safari * Fixed #7367: Blog readtime computation includes SVG text content mkdocs-material-9.5.29 (2024-07-14) * Updated Galician translations * Fixed #7362: Annotations in figure captions rendering incorrectly mkdocs-material-9.5.28 (2024-07-02) * Fixed #7313: Improved tooltips mounted in sidebar when feature is disabled mkdocs-material-9.5.27 (2024-06-16) * Updated Estonian translations mkdocs-material-9.5.26 (2024-06-06) * Fixed #7232: Tab switches on scroll when linking tabs (9.5.19 regression) * Fixed #7230: Blog author avatar broken when referring to local file mkdocs-material-9.5.25+insiders-4.53.11 (2024-05-27) * Fixed projects plugin crashing when serving before building subprojects mkdocs-material-9.5.25 (2024-05-27) * Fixed #7209: Tags plugin crashing on numeric tags mkdocs-material-9.5.24+insiders-4.53.10 (2024-05-20) * Fixed projects plugin crashing in serve mode when disabled * Fixed projects plugin crashing when building nested projects mkdocs-material-9.5.24+insiders-4.53.9 (2024-05-20) * Fixed #7191: Tags listings not rendering when toc_depth is changed mkdocs-material-9.5.24 (2024-05-20) * Fixed #7187: Version selector title rendering issue mkdocs-material-9.5.23 (2024-05-15) * Fixed #7183: Edge case in anchor navigation when using instant navigation * Fixed #6436: Version selector not showing version alias mkdocs-material-9.5.22 (2024-05-12) * Fixed #7170: Copy button adds empty lines for line spans (9.5.18 regression) * Fixed #7160: Version switching doesn't stay on page (9.5.5 regression) * Fixed #5619: Links in Mermaid.js diagrams not discernible mkdocs-material-9.5.21 (2024-05-03) * Fixed #7133: Ensure latest version of Mermaid.js is used * Fixed #7125: Added warning for dotfiles in info plugin mkdocs-material-9.5.20 (2024-04-29) * Fixed deprecation warning in privacy plugin (9.5.19 regression) * Fixed #7119: Tags plugin emits deprecation warning (9.5.19 regression) * Fixed #7118: Social plugin crashes if fonts are disabled (9.5.19 regression) * Fixed #7085: Social plugin crashes on Windows when downloading fonts mkdocs-material-9.5.19+insiders-4.53.8 (2024-04-26) * Fixed #7052: Preview extension automatically including all pages * Fixed #7051: Instant previews mounting on footnote references * Fixed #5165: Improved tooltips not mounting in sidebar for typeset plugin mkdocs-material-9.5.19+insiders-4.53.7 (2024-04-25) * Fixed #7060: Incorrect resolution of translation when using static-i18n mkdocs-material-9.5.19 (2024-04-25) * Updated MkDocs to 1.6 and limited version to < 2 * Updated Docker image to latest Alpine Linux * Removed setup.py, now that GitHub fully understands pyproject.toml * Improved interop of social plugin with third-party MkDocs themes * Fixed #7099: Blog reading time not rendered correctly for Japanese * Fixed #7097: Improved resilience of tags plugin when no tags are given * Fixed #7090: Active tab indicator in nested content tabs rendering bug mkdocs-material-9.5.18 (2024-04-16) * Refactored tooltips implementation to fix positioning issues * Fixed #7044: Rendering glitch when hovering contributor avatar in Chrome * Fixed #7043: Highlighted lines in code blocks cutoff on mobile * Fixed #6910: Incorrect position of tooltip for page status in sidebar * Fixed #6760: Incorrect position and overly long tooltip in tables * Fixed #6488: Incorrect position and cutoff tooltip in content tabs mkdocs-material-9.5.17+insiders-4.53.6 (2024-04-05) * Ensure working directory is set for projects when using projects plugin * Fixed #6970: Incorrect relative paths in git submodules with projects plugin mkdocs-material-9.5.17+insiders-4.53.5 (2024-04-02) * Fixed social plugin crashing when no colors are specified in palettes mkdocs-material-9.5.17 (2024-04-02) * Updated Serbian translations * Fixed #7003: Confusing keyboard interaction for palette toggle * Fixed #7001: Blog posts now show time by default (9.5.16 regression) * Fixed edge case in backport of social plugin font loading logic mkdocs-material-9.5.16+insiders-4.53.4 (2024-03-31) * Fixed #6973: Escaping issue in tags extra files deprecation helper mkdocs-material-9.5.16 (2024-03-31) * Updated Russian translations * Improved error handling and reporting in social plugin * Improved error handling and reporting in privacy plugin * Fixed blog plugin not allowing to use time in format strings * Fixed #6983: Social plugin crashes because of Google Fonts API change mkdocs-material-9.5.15+insiders-4.53.3 (2024-03-23) * Added support for font variants in social plugin * Improved resilience of font resolution in social plugin * Fixed tag listing sometimes not being auto-populated * Fixed tag listing scope not being correctly resolved * Fixed #6941: Meta plugin adding duplicate entries * Fixed #6928: Social plugin crashes for some fonts mkdocs-material-9.5.15 (2024-03-23) * Reverted fix for transparent iframes (9.5.14) * Fixed #6929: Interference of social plugin and auto dark mode * Fixed #6938: Giscus shows dark background in light mode (9.5.14 regression) mkdocs-material-9.5.14+insiders-4.53.2 (2024-03-18) * Fixed abort on first non-matching configuration in preview extension * Fixed #6914: Meta files take precedence over front matter mkdocs-material-9.5.14 (2024-03-18) * Added support for hiding versions from selector when using mike * Added init system to improve signal handling in Docker image * Fixed edge cases in exclusion logic of info plugin * Fixed inability to reset pipeline in search plugin * Fixed syntax error in Finnish translations * Fixed #6917: UTF-8 encoding problems in blog plugin on Windows * Fixed #6889: Transparent iframes get background color mkdocs-material-9.5.13+insiders-4.53.1 (2024-03-06) * Fixed #6877: Projects plugin computes incorrect path to assets * Fixed #6869: Blog plugin should emit warning on invalid related link mkdocs-material-9.5.13 (2024-03-06) * Updated Slovak translations * Improved info plugin interop with projects plugin * Improved info plugin inclusion/exclusion logic * Fixed info plugin not gathering files recursively * Fixed #6750: Ensure info plugin packs up all necessary files mkdocs-material-9.5.12 (2024-02-29) * Fixed #6846: Some meta tags removed on instant navigation (9.4.2 regression) * Fixed #6823: KaTex not rendering on instant navigation (9.5.5 regression) * Fixed #6821: Privacy plugin doesn't handle URLs with encoded characters mkdocs-material-9.5.11+insiders-4.53.0 (2024-02-24) * Added support for automatic instant previews * Added support for pinned blog posts mkdocs-material-9.5.11 (2024-02-19) * Updated Finnish translation mkdocs-material-9.5.10+insiders-4.52.3 (2024-02-21) * Fixed resolution of URLs in instant previews * Fixed instant previews not mounting for same-page links mkdocs-material-9.5.10 (2024-02-19) * Updated Bahasa Malaysia translations * Fixed #6783: Hide continue reading link for blog posts without separators * Fixed #6779: Incorrect positioning of integrated table of contents mkdocs-material-9.5.9 (2024-02-10) * Fixed navigation pruning with tabs and sections enabled mkdocs-material-9.5.8+insiders-4.52.2 (2024-02-07) * Fixed #6735: Instant previews misplaced when below tabs mkdocs-material-9.5.8 (2024-02-07) * Added Tamil translations * Updated Esperanto translations * Fixed relative images not being resolved for instant navigation mkdocs-material-9.5.7 (2024-02-03) * Fixed #6731: Small images in figures are not centered * Fixed #6719: Instant navigation breaks table of contents (9.5.5 regression) mkdocs-material-9.5.6+insiders-4.52.1 (2024-01-30) * Fixed #6705: Navigation path not being hidden when specified * Fixed #6703: New tags plugin crashes on Windows (2nd attempt) mkdocs-material-9.5.6+insiders-4.52.0 (2024-01-28) * Added support for instant previews * Fixed footnote tooltips positioning edge cases * Fixed #6703: New tags plugin crashes on Windows mkdocs-material-9.5.6 (2024-01-28) * Fixed #6700: Missing styles for Mermaid.js labels with Markdown mkdocs-material-9.5.5+insiders-4.51.0 (2024-01-24) * Added support for footnote tooltips mkdocs-material-9.5.5 (2024-01-24) * Updated Tagalog translations * Updated Pillow to 10.2 to mitigate security vulnerabilities * Improved resilience of instant navigation * Fixed #6687: Updated Mermaid.js to version 10.7.0 (latest) * Fixed #6652: Keyboard events in custom elements captured * Fixed #6582: Instant navigation doesn't correctly handle alternate URLs * Fixed #6565: Instant navigation doesn't allow for onclick handlers * Fixed #6345: Instant navigation sometimes breaks browser back button * Fixed #6334: Instant navigation doesn't correctly position anchors (Safari) * Fixed #6275: Instant navigation doesn't correctly resolve after 404 * Fixed #6102: Instant navigation reloads page on same link navigation mkdocs-material-9.5.4+insiders-4.50.0 (2024-01-19) * Added configurable logging capabilities to privacy plugin mkdocs-material-9.5.4 (2024-01-15) * Fixed #6645: Local storage with invalid value can break site * Fixed #6635: Tags icons before default ignored if default is set mkdocs-material-9.5.3+insiders-4.49.2 (2024-01-09) * Fixed missing attribute lists extension for tags plugin * Fixed #6627: New tags plugin crashes on Python 3.8 mkdocs-material-9.5.3+insiders-4.49.1 (2024-01-07) * Improved interop of new tags plugin with other plugins * Fixed #6594: Tags plugin doesn't work with mkdocs-macros plugin * Fixed #6569: Social plugin crashes if in different file system location mkdocs-material-9.5.3+insiders-4.49.0 (2023-12-29) * Added support for exporting tags and mappings * Added support for disabling tags and/or listings or both * Fixed tag links from pages to listings on homepage mkdocs-material-9.5.3+insiders-4.48.0 (2023-12-23) * Rewrite of tags plugin, now much more powerful * Added support for nested tags (tag hierarchies, e.g. foo/bar) * Added support for shadow tags (by list, prefix or suffix) * Added support for custom tag layouts and templates * Added support for hiding tags in table of contents * Added support for configurable inline tag listings * Added support for automatically linking to closest tag listing * Added support for scoped listings (limit to subsection of site) * Added support for multiple instances of tags plugin * Added support for changing front matter property and template variable * Added support for tag slugification format strings * Fixed #6510: Projects plugin out of memory on Linux (4.47.1 regression) * Fixed projects plugin not notifying plugins about serve mode * Fixed projects plugin skipping projects on prefix match * Deprecated tags_file and tags_extra_files settings * Modernized tags plugin code base mkdocs-material-9.5.3 (2023-12-23) * Limited version range of MkDocs to < 1.6 * Updated Macedonian translations * Fixed #6520: Group plugin crashes when using mike * Fixed #6494: Hide author's email address if disabled in git-authors plugin mkdocs-material-9.5.2+insiders-4.47.1 (2023-12-11) * Improved editing experience for projects plugin * Improved resilience of optimize and social plugin * Fixed race condition when writing manifest in optimize and social plugin * Fixed #6475: Logo not taking precedence over icon in social card * Fixed #6399: Projects plugin doesn't pick up added/removed projects * Fixed #6306: Projects plugin cache not correctly updated mkdocs-material-9.5.2 (2023-12-11) * Fixed types for slugify settings in blog plugin config * Fixed #6469: Horizontal scrollbars on MathJax containers mkdocs-material-9.5.1+insiders-4.47.0 (2023-12-08) * Added support for staying on page when switching languages * Added configurable logging capabilities to projects plugin * Removed temporary warning on blog plugin authors file format change * Fixed projects plugin logging messages twice on Linux systems * Fixed projects plugin trying to hoist theme assets of divergent themes * Fixed compatibility of optimize plugin and projects plugin * Fixed compatibility of social plugin and projects plugin * Fixed #6448: Code line selection broken for code blocks with custom ids * Fixed #6437: Projects plugin crashing for certain site URL configurations * Fixed #6414: Projects plugin doesn't prefix messages coming from projects mkdocs-material-9.5.1 (2023-12-08) * Updated Greek translations * Fixed #6464: Privacy plugin cannot be enabled * Fixed #6461: Sorting blog posts ignores time component in date mkdocs-material-9.5.0 (2023-12-07) Merged Insiders features of 'Goat's Horn' funding goal * Added privacy plugin: automatic downloading of external assets * Added support for card grids and grid layouts * Added support for improved tooltips * Added support for content tabs anchor links (deep linking) * Added support for automatic dark/light mode * Added support for document contributors mkdocs-material-9.4.14+insiders-4.46.0 (2023-11-26) * Added support for author profiles in blog plugin * Fixed custom index pages yielding two navigation items (4.45.0 regression) mkdocs-material-9.4.14 (2023-11-26) * Added support for linking authors in blog posts mkdocs-material-9.4.13 (2023-11-26) * Fixed #6365: Blog plugin pagination links to previous pages broken * Fixed #5758: Updated Mermaid.js to version 10.6.1 (latest) mkdocs-material-9.4.12+insiders-4.45.0 (2023-11-24) * Added support for sorting blog categories by post count or custom function * Improved tags plugin to generate Unicode-aware slugs by default * Fixed non-deterministic order of multiple authors in blog plugin mkdocs-material-9.4.12 (2023-11-24) * Improved blog plugin to generate Unicode-aware slugs by default * Fixed non-deterministic order of categories in blog plugin mkdocs-material-9.4.11+insiders-4.44.0 (2023-11-23) * Added pagination settings for archive pages in blog plugin * Added pagination settings for category pages in blog plugin mkdocs-material-9.4.11 (2023-11-23) * Fixed #6364: Search plugin crashing when enabling theme while serving * Fixed blog plugin crashing when disabling pagination mkdocs-material-9.4.10+insiders-4.43.1 (2023-11-19) * Added third-party theme support in projects plugin, improving editing * Fixed #6360: Projects plugin crashes when theme is not Material for MkDocs * Fixed #6306: Projects plugin not reloading nested project configuration mkdocs-material-9.4.10 (2023-11-19) * Fixed #6356: Version selector can't be disabled via mike's configuration * Fixed #6281: Navigation not rendering due to Safari bug (9.4.2 regression) * Fixed #6261: Navigation expansion animates on first load (9.4.2 regression) mkdocs-material-9.4.9 (2023-11-17) * Fixed #6344: Long entries cutoff in table of contents * Fixed #6336: Custom template for glob archive not working with pagination * Fixed #6328: Blog plugin crashes for locales with dashes, e.g. pt-BR * Fixed #6327: Copy-to-clipboard button doesn't trim trailing line feed * Fixed #6302: Version strings not matched when using mike, only aliases * Fixed instant navigation progress indicator for gzipped content in Chrome * Fixed rendering bug on details marker rotation in Firefox mkdocs-material-9.4.8+insiders-4.43.0 (2023-11-05) * Added support for GitLab committers (document contributors) * Fixed #6264: Fixed compatibility with Python < 3.10 * Fixed #6254: Meta plugin not applying meta files to blog posts mkdocs-material-9.4.8 (2023-11-05) * Fixed invalid local address replacement when using instant loading * Fixed #6275: Crash after navigation caused 404 when using instant loading mkdocs-material-9.4.7+insiders-4.42.3 (2023-10-27) * Fixed #6251: Cards in grids cut off on very small screens * Fixed #6241: Using social plugin + static-i18n plugin errors mkdocs-material-9.4.7 (2023-10-27) * Added Azerbaijani translations mkdocs-material-9.4.6+insiders-4.42.2 (2023-10-14) * Fixed #6186: Privacy plugin ignores hash fragments on images * Fixed #6180: Projects plugin crashing when adding or removing files mkdocs-material-9.4.6 (2023-10-14) * Updated Danish and Norwegian (Nynorsk) translations * Fixed #6169: Blog post metadata layout overflows on small screens mkdocs-material-9.4.5 (2023-10-10) * Fixed sidebar auto-positioning (9.4.2 regression) * Fixed #6166: Improve group plugin compatibility with Python < 3.10 * Fixed #6157: Hiding tags does not work (9.4.3 regression) mkdocs-material-9.4.4+insiders-4.42.1 (2023-10-05) * Fixed spacing of related links in blog posts on small screens mkdocs-material-9.4.4 (2023-10-05) * Added support for overriding text to be copied for code blocks * Fixed broken layout in some browsers at breakpoints when using zoom * Fixed #6132: Incomplete search highlighting for code blocks in titles mkdocs-material-9.4.3 (2023-10-02) * Added support for instant navigation progress indicator * Improved spacing and alignment of tags * Moved back-to-top button into separate partial * Fixed #6104: Indentation for some code blocks lost in search * Fixed #6094: Blog post metadata overlaps with footer on small screens * Fixed #6069: Blog plugin crashes for categories with non-ASCII names Updated templates - base.html mkdocs-material-9.4.2 (2023-09-25) * Updated Slovenian translations * Added animation to sidebar navigation expansion and collapse * Added support for auto-replacement of document head for instant navigation * Improved compatibility of new emoji extension with Python < 3.10 * Switched regex dependency to use minimal version * Refactored alignment and spacing of sidebar navigation * Fixed expansion button not focusable via keyboard in sidebar navigation * Fixed viewport offset restoration on first load when using instant navigation * Fixed accidental highlight of non-clickable elements in blog plugin sidebar * Fixed #6041: Blog plugin crashes when nav is defined and blog not included * Fixed #5972: Blog plugin ignores section index pages in paginated views * Fixed #5954: Repeated click on anchor ignored when using instant navigation * Fixed #5742: Keyboard navigation broken when using instant navigation Updated templates * partials/nav-item.html * blog-post.html mkdocs-material-9.4.1 (2023-09-22) * Improved colors and contrast in dark mode * Improved admonition borders to match font weight * Switched content tabs to neutral color mkdocs-material-9.4.0 (2023-09-21) * Added Belarusian translations * Added version info to entrypoint of package * Added emoji extension as a replacement for materialx * Improved slate color scheme (dark mode) - now even darker * Restructured project to improve development experience * Updated MkDocs to 1.5.3 * Fixed #3890: Development mode crashes on Linux mkdocs-material-9.3.2+insiders-4.42.0 (2023-09-19) * Added support for using git submodules in projects plugin * Added support for transforming project configurations * Improved resilience of optimize and blog plugin * Fixed optimize plugin crashing on .jpeg extension * Fixed project URLs not using site URLs in projects plugin mkdocs-material-9.3.2 (2023-09-19) * Updated Slovenian translations * Updated Python dependencies in requirements to use minimum versions * Fixed #6017: Code highlighting inconsistent in Community and Insiders edition * Fixed #6001: Contributor avatars display incorrectly in Firefox * Fixed #6000: Blog post drafts are included in navigation mkdocs-material-9.3.1+insiders-4.41.0 (2023-09-11) * Improved multi-instance support for optimize plugin * Added inclusion and exclusion patterns for optimize plugin * Added transparent keyword for color handling in social plugin * Changed default quality of PNGs to 3 in optimize plugin * Fixed #5979: meta file not detected in root of docs directory mkdocs-material-9.3.1 (2023-09-11) * Fixed crash of group plugin when used together with hooks mkdocs-material-9.3.0 (2023-09-11) * Improved configuration sharing between Community and Insiders edition * Added experimental built-in group plugin for enabling plugins conditionally * Added new settings in tags plugin for enabling/disabling * Dropped support for Python 3.7 (EOL) mkdocs-material-9.2.8+insiders-4.40.4 (2023-09-04) * Fixed privacy plugin choking on boolean HTML5 attributes * Fixed wrapping of inline code blocks in typeset table of contents * Fixed blog plugin error when running under dirty reload mkdocs-material-9.2.8 (2023-09-04) * Updated Italian and Russian translations * Fixed #5952: Combining blog and tags plugin leads to wrong links * Fixed #5951: Blog plugin ignores post title in metadata * Fixed #5949: Blog plugin ignores post linked in nav mkdocs-material-9-2.7+insiders-4.40.3 (2023-09-02) * Fixed #5946: Docker image missing pngquant for optimize plugin mkdocs-material-9.2.7 (2023-09-02) * Switched dependencies to compatible release clauses * Removed readtime and lxml dependencies for blog plugin * Reduced size of Docker image to improve CI build performance * Fixed #5945: Incorrect footer navigation for sibling pages of blog * Fixed #5939: Page jumps when changing color palette (Firefox 117) * Fixed #5901: Announcement bar reappears when using instant loading * Fixed #5824: Allow to customize styles of sequence diagrams mkdocs-material-9-2.6+insiders-4.40.2 (2023-08-31) * Added configurable error handling capabilities for social plugin * Fixed #5922: Blog plugin shows no posts when building a standalone blog * Fixed #5914: Tags plugin tags_extra_files errors (4.39.3 regression) * Fixed #5904: Blog plugin sometimes excludes files (4.40.1 regression) mkdocs-material-9-2.6 (2023-08-31) * Added Basque translations * Added template for simple redirects * Improved blog plugin interop by moving view generation to on_files * Fixed #5924: Social plugin still checks dependencies when disabled * Fixed #5916: Blog plugin crashes on Python 3.8 (9.2.0 regression) mkdocs-material-9-2.5+insiders-4.40.1 (2023-08-27) * Fixed #5902: ResizeObserver polyfill not detected by privacy plugin * Fixed empty category pages in blog plugin (4.40.0 regression) mkdocs-material-9-2.5 (2023-08-27) * Fixed error in dirty serve mode when using blog plugin * Fixed page title not being consistent in blog plugin pagination * Fixed #5899: Blog plugin pagination breaks when disabling directory URLs mkdocs-material-9.2.4+insiders-4.40.0 (2023-08-26) * Added logo, title and description options to social plugin default layouts * Fixed privacy plugin compatibility issue with Python < 3.10 * Fixed #5896: Blog plugin errors when using custom index pages mkdocs-material-9.2.4 (2023-08-26) * Added version to bug report name in info plugin * Updated Afrikaans translations mkdocs-material-9.2.3+insiders-4.39.3 (2023-08-24) * Fixed lxml dependency missing in Docker image (4.39.2 regression) mkdocs-material-9.2.3+insiders-4.39.2 (2023-08-23) * Fixed color palette toggle being reversed (9.2.0 regression) mkdocs-material-9.2.3 (2023-08-22) * Fixed blog plugin rendering wrongly with markdown.extensions.toc * Fixed blog plugin entrypoint generation mkdocs-material-9.2.2 (2023-08-22) * Fixed #5880: Blog plugin failing when building a standalone blog * Fixed #5881: Blog plugin not compatible with Python < 3.10 mkdocs-material-9.2.1 (2023-08-21) * Fixed #5879: Blog plugin failing when building a standalone blog * Fixed error in blog plugin when using draft tagging on future date * Fixed error in blog plugin when toc extension is not enabled mkdocs-material-9.2.0+insiders-4.39.1 (2023-08-21) * Fixed git diff in tags plugin after merging back 9.2.0 changes mkdocs-material-9.2.0 (2023-08-21) Additions and improvements * Added blogging support via built-in blog plugin * Added support for Chinese language segmentaiton in search plugin * Added support for adding custom dates to blog posts * Added support for paginating archive and category pages * Added support for annotations (outside of code blocks) * Added support for navigation icons * Added support for navigation pruning * Added support for navigation status * Added support for customizing site icons * Added support for customizing (code) annotation icons * Added focus outline to admonitions and details * Added prompt for bug report name to info plugin * Added Luxembourgish translations * Improved rendering of (code) annotation markers * Improved print styles for (code) annotations * Improved customizability of navigation tabs * Improved interop of plugins with external tools like mike * Improved interop of blog plugin with awesome pages plugin * Improved header partial by moving buttons into separate partials * Improved clarity of site_url warning in social plugin * Improved blog plugin to automatically setup directory structure * Switched info plugin to importlib to mitigate deprecations * Automatically download ResizeObserver polyfill when necessary * Automatically add iframe-worker polyfill when necessary in offline plugin * Automatically focus and bring up keyboard on touch devices * Updated Serbo-Croatian translations * Updated MkDocs to 1.5.2 Removals * Removed Universal Analytics integration * Removed ancient polyfills to reduce size of bundled JavaScript by 20% * Removed necessity for Array.flat and Array.flatMap polyfill * Removed announcement bar button when JavaScript is not available Fixes * Fixed rendering of tags when announcement bar is present * Fixed tags plugin rendering pages excluded by other plugins * Fixed #5132: Blog plugin requires nav entry in mkdocs.yml * Fixed #5599: Insufficient contrast for default link color * Fixed #5715: Blog plugin missing integrated table of contents in pagination * Fixed #5806: Version selector not hoverable on some Android devices * Fixed #5826: Blog post drafts with tags show up in tags index mkdocs-material-9.1.21+insiders-4.39.0 (2023-08-01) * Added support for hoisting theme media files when building projects * Added support for sorting pages on tags index for tags plugin * Added support for adding date of last update to blog posts * Fixed #5797: Parse error in typeset plugin (4.38.1 regression) mkdocs-material-9.1.21+insiders-4.38.1 (2023-08-01) * Improved nested serve mode for projects plugin * Improved compat in privacy plugin with third-party plugins * Fixed #5790: Typeset plugin ignores data-toc-label attribute * Fixed #5778: Interplay of privacy plugin with git-revision-date-localized * Fixed #5773: Info plugin erroring when community edition is in beta mkdocs-material-9.1.21+insiders-4.38.0 (2023-07-29) * Added projects plugin for building nested projects * Updated privacy plugin to new MkDocs API mkdocs-material-9.1.21+insiders-4.37.1 (2023-07-28) * Updated MkDocs to 1.5.1 * Fixed deprecation warning in social plugin due to MkDocs upgrade * Fixed #5772: Privacy plugin fails due to API change in MkDocs mkdocs-material-9.1.21 (2023-07-27) * Fixed MkDocs 1.4 compat issue in social plugin (9.1.20 regression) mkdocs-material-9.1.20 (2023-07-27) * Fixed deprecation warnings for social plugin mkdocs-material-9.1.19 (2023-07-18) * Added support for MkDocs 1.5+ * Fixed #5699: Improve error reporting in social plugin mkdocs-material-9.1.18+insiders-4.37.0 (2023-07-07) * Added support for overriding social cards settings per page * Added new social card default/only/image layout * Improved resilience of optimize and social plugin * Fixed rendering bugs for pruned navigation items * Fixed jumping of content tabs anchor links when instant loading is enabled * Fixed #5676: Optimize plugin doesn't check for pngquant mkdocs-material-9.1.18 (2023-07-03) * Updated Danish translations * Added support for installing user requirements in Docker image * Fixed #5655: Search separator with lookbehind breaks highlighting mkdocs-material-9.1.17+insiders-4.36.1 (2023-06-23) * Fixed #5618: Date comparison breaking for drafts in blog plugin mkdocs-material-9.1.17 (2023-06-23) * Fixed #5633: Code annotations with nested lists incorrectly mounted * Fixed #5628: Regression in new social plugin configuration scheme mkdocs-material-9.1.16+insiders-4.36.0 (2023-06-15) * Added support for instant prefetching to speed up slow connections * Improved stability of anchor link removal in built-in typeset plugin * Improved performance of regular expressions in typeset plugin * Removed unnecessary import test for cairosvg in optimize plugin * Fixed #5590: regular expression for anchor link removal too greedy mkdocs-material-9.1.16 (2023-06-15) * Updated Indonesian translations * Ensure scroll bar follows color scheme of operating system mkdocs-material-9.1.15+insiders-4.35.3 (2023-06-01) * Fixed #5579: Abbreviations in headlines filtered by typeset plugin mkdocs-material-9.1.15+insiders-4.35.2 (2023-05-29) * Fixed #5555: Blog plugin crashes when computing readtime for emojis mkdocs-material-9.1.15 (2023-05-29) * Fixed #5566: Indicate color scheme to operating system * Fixed #5565: Update Dockerfile to latest version of base image * Fixed #5554: Add additional version tags (9, 9.1) to Docker image * Fixed #5536: Strip tags of ARIA labels in table of contents mkdocs-material-9.1.14+insiders-4.35.1 (2023-05-20) * Fixed internal handling of errors in social plugin mkdocs-material-9.1.14+insiders-4.35.0 (2023-05-20) * Improve editing experience and stability of social plugin * Added support for custom layout syntax validation in social plugin * Added support for layer origin for easier placement in social plugin * Added support for in- and exclusion patterns in social plugin * Catch and print syntax errors in custom layouts mkdocs-material-9.1.14 (2023-05-20) * Updated Armenian and Greek translations mkdocs-material-9.1.13+insiders-4.34.1 (2023-05-16) * Disable social plugin debug mode by default on mkdocs build * Added warning in social plugin debug mode when font style couldn't be found * Set default concurrency of built-in multi-threaded plugins to CPUs - 1 * Fixed #5521: Social plugin triggers race condition when downloading fonts * Fixed #5515: Social plugin crashes when concurrency is set to 1 mkdocs-material-9.1.13 (2023-05-16) * Fixed #5517: Social plugin crashes for some fonts (e.g. Open Sans) mkdocs-material-9.1.12+insiders-4.34.0 (2023-05-14) * Added support for new overflow mode to auto-fit text in social plugin * Reduced subtle rendering bugs in (code) annotations due to subpixel rounding * Improved print styles for (code) annotation lists * Improved performance of social plugin, now 3x as fast * Improved interop of typeset plugin with MkDocstrings * Fixed logo location for variants of default template in social plugin * Fixed #5446: Built-in typeset plugin picks up headings in code blocks mkdocs-material-9.1.12+insiders-4.33.2 (2023-05-12) * Fixed #5508: Social plugin crashes trying to copy cards on Docker/Windows * Fixed #5507: Social plugin crashes on serve when layouts folder doesn't exist * Fixed #5505: Social plugin trying to resolve logo in wrong location * Fixed #5496: Annotations with nested lists incorrectly mounted * Fixed #5493: Social plugin crashes on Python 3.8 mkdocs-material-9.1.12 (2023-05-12) * Updated Bengali (Bangla) translations * Fixed #5503: Docker image publish errors on uppercase characters * Fixed #5407: Auto-pause media when in hidden content tabs mkdocs-material-9.1.11+insiders-4.33.1 (2023-05-09) * Added support for SVG background images in social plugin mkdocs-material-9.1.11 (2023-05-08) * Fixed #5487: Social plugin crashes without options (9.1.10 regression) mkdocs-material-9.1.10+insiders-4.33.0 (2023-05-08) * Added support for custom layouts for social plugin * Added support for background images for social cards mkdocs-material-9.1.10 (2023-05-08) * Added cards_layout_options setting for social cards * Deprecated cards_color and cards_font setting for social cards mkdocs-material-9.1.9 (2023-05-02) * Added Telugu, Kannada and Sanskrit translations * Fixed #5428: Fixed margins for light/dark mode images in figures * Fixed #5420: Social plugin crashing for some specific Google Fonts * Fixed #5160: Instant loading makes code annotations jump (9.1.1 regression) * Fixed #4920: Social plugin not loading logo from custom icon set * Fixed social plugin crashing when only code font is specified mkdocs-material-9.1.8 (2023-04-24) * Fixed #5417: Theme breaks when palette is not defined (9.1.7 regression) mkdocs-material-9.1.7+insiders-4.32.6 (2023-04-22) * Fixed #5336: Interplay of blog plugin with git-revision-date-localized mkdocs-material-9.1.7 (2023-04-22) * Updated Persian (Farsi) and Turkish translations * Fixed #5401: Added missing flag to disable built-in tags plugin * Fixed #5206: Ensure defaults are set for primary and accent colors * Fixed unnecessary inclusion of palette CSS when unused mkdocs-material-9.1.6+insiders-4.32.5 (2023-04-07) * Fixed #5322: Navigation tabs hoist nested page icons mkdocs-material-9.1.6 (2023-04-07) * Updated Persian (Farsi) translations * Fixed #5300: Boxes in Mermaid sequence diagrams not color-abiding mkdocs-material-9.1.5 (2023-03-31) * Updated Lithuanian and Japanese translations * Updated Mermaid.js to version 9.4.3 * Fixed #5290: Footer previous/next labels cut-off for short page titles mkdocs-material-9.1.4+insiders-4.32.4 (2023-03-24) * Fixed #5241: Built-in typeset plugin jams navigation for anchors in headings mkdocs-material-9.1.4 (2023-03-24) * Fixed #5239: Instant loading breaks anchors in details (9.1.1 regression) * Fixed #5211: Anchor following not working for Chinese (9.1.2 regression) mkdocs-material-9.1.3 (2023-03-14) * Added Kurdish (Soranî) translations * Updated Norwegian (Bokmål), Portuguese and Romanian translations * Improved compatibility with mkdocs-jupyter plugin * Fixed #5198: Built-in search plugin not filtering script and style tags * Fixed #5176: Back-to-top + instant loading not working (9.1.1 regression) mkdocs-material-9.1.2+insiders-4.32.3 (2023-03-09) * Fixed Docker image release workflow (9.1.0 regression) * Fixed #5159: Missing underline for abbreviations (9.1.0 regression) mkdocs-material-9.1.2 (2023-03-09) * Updated Icelandic, Korean and Swedish translations * Fixed #5168: Mermaid text boxes overflow (9.0.13 regression) * Fixed #5155: Table of contents not highlighting percent-encoded URLs mkdocs-material-9.1.1 (2023-03-05) * Updated Czech and Thai translations * Improved instant loading (scroll restoration, slow connections) * Fixed #5023: Instant loading not allowing to go back to initial page * Fixed #3797: Instant loading does not work with section anchors in Safari mkdocs-material-9.1.0+insiders-4.32.2 (2023-03-02) * Fixed #5127: Privacy plugin not handling large number of occurrences * Fixed #5126: Privacy plugin breaks when replacing specific emojis mkdocs-material-9.1.0 (2023-03-02) * Docker image now available for amd64, arm64 and arm/v7 * Updated Chinese (Taiwanese) translations * Generalized tag identifier implementation * Fixed flickering of header shadow on load * Fixed occasional flickering of announcement bar mkdocs-material-9.0.15 (2023-02-26) * Updated Chinese (Traditional) translations * Updated Hebrew translations mkdocs-material-9.0.14+insiders-4.32.1 (2023-02-23) * Fixed code block spans interfering with copying * Fixed #5077: Privacy plugin breaks image alt text encoding * Fixed #5079: Privacy plugin removing rel=me on external links mkdocs-material-9.0.14 (2023-02-23) * Fixed #5072: Rendering bug on navigation expand button in Firefox mkdocs-material-9.0.13+insiders-4.32.0 (2023-02-19) * Added support for custom selectors for code annotations * Added support for code line range selection for better sharing mkdocs-material-9.0.13+insiders-4.31.0 (2023-02-18) * Added support for table of contents on blog index and archive pages * Fixed #4512: Allow custom search field boosts (experimental) mkdocs-material-9.0.13 (2023-02-18) * Updated Uzbek translations * Switched back to pre-9.0.0 headline detection in content partial * Fixed #5062: Version warning not readable when using slate scheme * Fixed #5061: Improved discernibility of table row hover color * Fixed #5034: Sequence actors in Mermaid diagrams not color-abiding * Fixed #4919: Allow to hide version warning in multiple versions mkdocs-material-9.0.12+insiders-4.30.2 (2023-02-13) * Fixed privacy plugin excludes not working (4.30.0 regression) mkdocs-material-9.0.12+insiders-4.30.1 (2023-02-12) * Fixed privacy plugin not handling static templates e.g. 404.html mkdocs-material-9.0.12 (2023-02-09) * Updated Catalan translations * Fixed #4975: Mermaid entity relationship rendering diagrams bug * Fixed #4924: Header title not reset when using instant loading mkdocs-material-9.0.11+insiders-4.30.0 (2023-02-06) * Rewrite of privacy plugin for concurrency, now twice as fast * Added support for explicit inclusion for privacy plugin * Added optimization support for privacy plugin (+ optimize plugin) mkdocs-material-9.0.11 (2023-02-03) * Added Mastodon verification for social links (rel=me) * Updated Italian translations mkdocs-material-9.0.10 (2023-02-02) * Updated Arabic translations * Updated Korean translations * Updated Hungarian translations * Updated Russian translations * Fixed #4977: Improved accessibility for content tabs * Fixed #4960: Sometimes anchor following doesn't bring last item into view mkdocs-material-9.0.9 (2023-01-30) * Updated Bulgarian translations * Updated Chinese (Simplified) translations * Updated Dutch translations * Updated Hindi translations * Updated Japanese translations * Updated Polish translations mkdocs-material-9.0.8 (2023-01-29) * Updated Croatian translations * Updated French translations * Updated Hungarian translations * Updated Portuguese (Brasilian) translations * Updated Spanish translations * Updated Ukrainian translations * Updated Urdu translations * Updated Vietnamese translations mkdocs-material-9.0.7 (2023-01-28) * Improved accessibility of sidebar navigation * Moved all translations into Community edition * Updated Polish and Portuguese (Brasilian) translations * Fixed info plugin terminating on subsequent reload when serving * Fixed #4910: Sidebar navigation labels have invalid ARIA roles * Fixed #4884: Search query terms can't be separated by colons mkdocs-material-9.0.6+insiders-4.29.0 (2023-01-21) * Added built-in optimize plugin for automatically compressing images * Switched reporting in built-in privacy plugin to info level mkdocs-material-9.0.6 (2023-01-19) * Fixed #4883: Automatically disable info plugin when serving * Fixed #4885: Search plugin crashes in some exotic cases (9.0.3 regression) mkdocs-material-9.0.5+insiders-4.28.1 (2023-01-17) * Fixed built-in info plugin erroring for Insiders on version check * Fixed #4865: Navigation paths render bug when there's no top-level section * Fixed #4875: Added support for hiding navigation paths * Improved navigation path to not render for a single item mkdocs-material-9.0.5+insiders-4.28.0 (2023-01-14) * Added support for navigation path (breadcrumbs) mkdocs-material-9.0.5 (2023-01-14) * Fixed #4842: Improved accessibility of search result list mkdocs-material-9.0.4 (2023-01-12) * Fixed #4823: Improved contrast ratio in footer (9.0.2 regression) * Fixed #4832: Set navigation items back to black (9.0.3 regression) * Fixed #4843: Emojis broken due to maxcdn.com shutting down * Upgraded Python Markdown Extensions to 9.9.1 mkdocs-material-9.0.3+insiders-4.27.1 (2023-01-08) * Fixed rendering of succeeding navigation items in typeset plugin * Fixed #4795: Built-in typeset plugin changes MkDocs' title precedence * Fixed #4724: Blog plugin not rendering integrate table of contents mkdocs-material-9.0.3 (2023-01-08) * Improved discernibility of section index pages in navigation * Improved collapsing of adjacent whitespace in search plugin * Updated Indonesian translations * Fixed view source of this page button when edit URL points to blob * Fixed #4829: Search overlay does not close for active anchor result * Fixed #4824: Search plugin crashes for h1-6 contained in other elements * Fixed #4804: Nested navigation items not expandable with keyboard * Fixed #4689: anchor tracking not working for anchors in tables * Upgraded to Mermaid 9.3.0 mkdocs-material-9.0.2 (2023-01-04) * Fixed #4823: Improved contrast ratio in footer to meet WCAG guidelines * Fixed #4819: Social plugin crashes when card generation is disabled * Fixed #4817: Search plugin crashes on numeric page titles in nav mkdocs-material-9.0.1 (2023-01-03) * Removed pipdeptree dependency for built-in info plugin * Fixed appearance of linked tags when hovered (9.0.0 regression) * Fixed #4810: Abbreviations run out of screen on touch devices * Fixed #4813: View source and edit button links are the same mkdocs-material-9.0.0 (2023-01-02) Additions and improvements * Added support for rich search previews * Added support for tokenizer lookahead * Added support for better search highlighting * Added support for excluding content from search * Added support for configurable search pipeline * Added support for offline search via offline plugin * Added support for multiple instances of built-in tags plugin * Added support for removing copy-to-clipboard button * Added support for removing footer navigation * Added support for button to view the source of a page * Improved readability of query string for search sharing * Improved stability of search plugin when using --dirtyreload * Improved search result group button, now sticky and stable * Updated Norwegian translations * Updated MkDocs to 1.4.2 Removals * Removed deprecated alternative admonition qualifiers * Removed :is() selectors (in output) for easier overriding * Removed .title suffix on translations * Removed legacy method for providing page title in feedback URL * Removed support for indexing only titles in search * Removed support for custom search transforms * Removed support for custom search workers * Removed temporary snow feature (easter egg) Fixes * Fixed Norwegian and Korean language code * Fixed detection of composition events in search interface * Fixed search plugin not using title set via front matter * Fixed search highlighting of tags * Fixed search sharing URL using post transformed string * Fixed theme-color meta tag getting out-of-sync with palette toggle * Fixed prev/next page keyboard navigation when footer is not present * Fixed overflowing navigation tabs not being scrollable * Fixed inclusion of code block line numbers from search mkdocs-material-8.5.11+insiders-4.27.0 (2022-12-20) * Added built-in typeset plugin to preserve formatting in sidebars * Added URL and table of contents support for blog categories mkdocs-material-8.5.11 (2022-11-30) * Let it snow, see https://x.com/squidfunk/status/1597939243090788352 mkdocs-material-8.5.10+insiders-4.26.6 (2022-11-28) * Fixed #4683: Tags plugin crashes when a tag is empty mkdocs-material-8.5.10+insiders-4.26.5 (2022-11-27) * Fixed #4632: Post excerpt title link doesn't point to top of the page mkdocs-material-8.5.10+insiders-4.26.4 (2022-11-27) * Fixed redundant file extension when using privacy plugin mkdocs-material-8.5.10+insiders-4.26.3 (2022-11-15) * Fixed #4637: Attachments w/o titles in related links error in blog plugin * Fixed #4631: Remote favicons not downloaded and inlined by privacy plugin mkdocs-material-8.5.10 (2022-11-11) * Adjusted CSS to better allow for custom primary and accent colors * Fixed #4620: Primary color is not applied (8.5.9 regression) mkdocs-material-8.5.9 (2022-11-08) * Fixed #4600: Illegible link colors for black and white primary colors * Fixed #4594: Need to set schema to change link color mkdocs-material-8.5.8+insiders-4.26.2 (2022-11-03) * Updated MkDocs to 1.4.2 * Added support for tag compare functions when sorting on index pages * Fixed footnotes being rendered in post excerpts without separators * Fixed error in blog plugin when toc extension is not enabled * Fixed issues with invalid asset paths and linked post titles * Fixed #4572: Privacy plugin fails when symlinks cannot be created * Fixed #4545: Blog plugin doesn't automatically link headline to post * Fixed #4542: Blog plugin doesn't allow for multiple instances * Fixed #4532: Blog plugin doesn't allow for mixed use of date and datetime mkdocs-material-8.5.8 (2022-11-03) * Added support for always showing settings in cookie consent * Fixed #4571: Buttons invisible if primary color is white or black * Fixed #4517: Illegible note in sequence diagram when using slate scheme mkdocs-material-8.5.7+insiders-4.26.1 (2022-10-22) * Improved reporting of configuration errors in tags plugin * Fixed #4515: Privacy plugin fails when site URL is not defined * Fixed #4514: Privacy plugin doesn't fetch Google fonts (4.26.0 regression) mkdocs-material-8.5.7 (2022-10-22) * Deprecated additional admonition qualifiers to reduce size of CSS * Fixed #4511: Search boost does not apply to sections mkdocs-material-8.5.6+insiders-4.26.0 (2022-10-18) * Refactored privacy plugin to prepare for new features * Added support for rel=noopener links in privacy plugin * Resolve encoding issues with blog and privacy plugin mkdocs-material-8.5.6+insiders-4.25.5 (2022-10-16) * Updated MkDocs to 1.4.1 * Added namespace prefix to built-in plugins * Updated content and header partial mkdocs-material-8.5.6+insiders-4.25.4 (2022-10-09) * Fixed other path issues for standalone blogs (4.24.2 regression) mkdocs-material-8.5.6+insiders-4.25.3 (2022-10-09) * Fixed #4457: Posts not collected for standalone blog (4.24.2 regression) mkdocs-material-8.5.6+insiders-4.25.2 (2022-10-04) * Fixed #4452: Blog and tags plugin crash when specifying slugify function mkdocs-material-8.5.6+insiders-4.25.1 (2022-10-03) * Updated mkdocs-rss-plugin in Dockerfile to fix MkDocs compat errors mkdocs-material-8.5.6+insiders-4.25.0 (2022-10-02) * Added support for navigation subtitles * Added support for defining an allow list for built-in tags plugin * Added support for custom slugify functions for built-in tags plugin * Improved stability of search plugin when using --dirtyreload mkdocs-material-8.5.6 (2022-10-02) * Modernized appearance of admonitions (with fallback, see docs) * Improved appearance of inline code blocks in admonition titles mkdocs-material-8.5.5+insiders-4.24.2 (2022-10-01) * Updated MkDocs to 1.4 * Fixed compatibility issues with MkDocs 1.4 * Fixed incorrectly generated paths in privacy plugin * Fixed blog index page not showing navigation when using meta plugin mkdocs-material-8.5.5 (2022-10-01) * Updated MkDocs to 1.4 * Fixed compatibility issues with MkDocs 1.4 * Fixed #4430: build error when enabling consent without repository URL mkdocs-material-8.5.4+insiders-4.24.1 (2022-09-30) * Fixed #4430: build error when enabling consent without repository URL mkdocs-material-8.5.4 (2022-09-30) * Fixed expand icons shift on sidebar overflow (using scrollbar-gutter) * Fixed #4429: Text in sequence diagrams overflows in Firefox mkdocs-material-8.5.3+insiders-4.24.0 (2022-09-27) * Added support for custom content on index pages (blog) * Added support for keeping content on paginated index pages (blog) * Added support for limiting categories in post excerpts (blog) * Added support for simple override of templates via front matter (blog) * Added icon in navigation for pages with encrypted content * Fixed #4396: Front matter of index pages not inherited by pagination (blog) * Improved performance by building post excerpts once (blog) mkdocs-material-8.5.3+insiders-4.23.6 (2022-09-22) * Fixed #4389: Blog posts in first week of year in wrong archive * Fixed (= switched) footer previous and next links for blog posts mkdocs-material-8.5.3 (2022-09-20) * Fixed build error when enabling cookie consent without analytics * Fixed #4381: Code blocks render ligatures for some fonts mkdocs-material-8.5.2+insiders-4.23.5 (2022-09-18) * Fixed #4367: Improved blog plugin date handling for MultiMarkdown syntax * Fixed #4374: Fixed invalid URLs of related links to other blog posts mkdocs-material-8.5.2 (2022-09-18) * Updated Mermaid.js to version 9.1.7 * Fixed overly large headlines in search results (8.5.0 regression) * Fixed #4358: Navigation sections appear as clickable (8.5.0 regression) * Fixed #4356: GitHub repository statistics fetched before cookie consent mkdocs-material-8.5.1 (2022-09-15) * Fixed #4366: Removed dependencies with native extensions mkdocs-material-8.5.0+insiders-4.23.4 (2022-09-14) * Fixed #4365: Recursion error in blog plugin due to deepcopy * Fixed path errors for blog plugin on Windows * Fixed publishing workflow in forked repositories mkdocs-material-8.5.0+insiders-4.23.3 (2022-09-13) * Fixed previous and next page links for drafts of blog posts mkdocs-material-8.5.0 (2022-09-13) * Added support for social cards * Added support for code annotation anchor links (deep linking) * Added support for code annotation comment stripping (syntax modifier) * Added support for sidebars scrolling automatically to active item * Added support for anchor following table of contents (= auto scroll) * Added support for tag icons mkdocs-material-8.4.4+insiders-4.23.2 (2022-09-13) * Fixed #4348: Blog plugin crashes on custom nav title * Fixed blog plugin crashing when category contained only drafts * Fixed rendering of content from blog index file mkdocs-material-8.4.4+insiders-4.23.1 (2022-09-12) * Fixed #4345: Blog plugin errors with default settings mkdocs-material-8.4.4+insiders-4.23.0 (2022-09-12) * Added blogging support via built-in blog plugin mkdocs-material-8.4.4 (2022-09-12) * Moved comments integration to separate partial (comments.html) mkdocs-material-8.4.3+insiders-4.22.1 (2022-09-07) * Fixed #4217: Tooltips in data tables render in wrong position mkdocs-material-8.4.3 (2022-09-07) * Added Simple Icons to bundled icons (+2,300 icons) * Added support for changing edit icon * Moved page actions to separate partial (actions.html) * Fixed #4291: Version switching doesn't stay on page when anchors are used * Fixed #4327: Links in data tables do not receive link styling mkdocs-material-8.4.2 (2022-08-27) * Updated Slovenian translations * Fixed #4277: Feedback widget hidden after navigation with instant loading * Fixed numeric tags in front matter breaking search functionality mkdocs-material-8.4.1+insiders-4.22.0 (2022-08-21) * Added support for navigation status mkdocs-material-8.4.1 (2022-08-21) * Updated Croatian and Hebrew translations mkdocs-material-8.4.0+insiders-4.21.1 (2022-08-13) * Fixed #4176: Broken image when avatar is served by Gravatar * Fixed #4212: Deferred search initialization for file:// locations mkdocs-material-8.4.0 (2022-08-13) * Added support for cookie consent * Added support for feedback widget (Was this page helpful?) * Added support for dismissible announcement bar * Added Armenian, Lithuanian, Tagalog, and Urdu translations mkdocs-material-8.3.9+insiders-4.21.0 (2022-07-17) * Added meta plugin: set front matter for all pages in a folder * Fixed #4114: Tags plugin fails if only tags_extra_files is set mkdocs-material-8.3.9+insiders-4.20.1 (2022-07-11) * Fixed #4105: Tags plugin fails if tags_file is not set (4.20.0 regression) mkdocs-material-8.3.9+insiders-4.20.0 (2022-07-07) * Added support for additional tags indexes * Fixed #4100: Tag icons not shown in tags index mkdocs-material-8.3.9+insiders-4.19.2 (2022-07-04) * Fixed #4051: Privacy plugin fails if symlinking isn't allowed on Windows mkdocs-material-8.3.9 (2022-07-04) * Updated Taiwanese translations for search * Allow ids for content tabs with special characters (for mkdocstrings) * Fixed #4083: home not clickable when using versioning (8.3.5 regression) mkdocs-material-8.3.8+insiders-4.19.1 (2022-06-25) * Added mkdocs-git-committers-plugin to Dockerfile * Added mkdocs-git-revision-date-localized-plugin to Dockerfile mkdocs-material-8.3.8+insiders-4.19.0 (2022-06-24) * Added support for document contributors * Updated French translations for cookie consent mkdocs-material-8.3.8 (2022-06-24) * Fixed #4053: Limit width of videos to content area * Fixed empty tags in front matter breaking search mkdocs-material-8.3.7 (2022-06-22) * Fixed search being stuck initializing when using tags (8.3.4 regression) mkdocs-material-8.3.6+insiders-4.18.2 (2022-06-16) * Fixed #4026: Fixed tooltips not mounted for nested navigation links mkdocs-material-8.3.6 (2022-06-16) * Fixed #4028: Links not clickable when using versioning (8.3.5 regression) mkdocs-material-8.3.5+insiders-4.18.1 (2022-06-14) * Fixed #3990: Chinese search highlighting not working on non-boundaries mkdocs-material-8.3.5 (2022-06-14) * Fixed #4012: Stay on page not working for alias of active version mkdocs-material-8.3.4+insiders-4.18.0 (2022-06-11) * Added support for automatic dark/light mode * Fixed #4009: Privacy plugin uses invalid paths for file cache on Windows mkdocs-material-8.3.4 (2022-06-11) * Fixed #4004: Tags with multiple words not searchable mkdocs-material-8.3.3 (2022-06-07) * Fixed #4000: Mermaid diagrams too dark in dark mode (8.3.0 regression) mkdocs-material-8.3.2+insiders-4.17.2 (2022-06-05) * Added support for custom jieba dictionaries (Chinese search) mkdocs-material-8.3.2+insiders-4.17.1 (2022-06-05) * Added support for cookie consent reject button * Added support for cookie consent custom button ordering * Fixed #3988: Content tab not focused after alternating anchor links mkdocs-material-8.3.2 (2022-06-05) * Fixed #3987: Custom admonition icons don't work when defining color palette mkdocs-material-8.3.1+insiders-4.17.0 (2022-06-04) * Added support for content tabs anchor links (deep linking) * Fixed #3975: Detect composition events in search interface (Chinese) * Fixed #3980: Search plugin doesn't use title set via front matter mkdocs-material-8.3.1 (2022-06-04) * Bump required Jinja version to 3.0.2 * Removed unnecessary conditions in templates * Fixed scroll offset when content tabs are brought into view * Fixed #3977: Content tabs snapping oddly in Firefox * Fixed #3983: Missing condition in footer partial (8.3.0 regression) mkdocs-material-8.3.0 (2022-06-02) * Added support for custom admonition icons * Added support for linking of content tabs * Added support for boosting pages in search * Added support for hiding footer navigation * Added previous/next indicators to content tabs * Improved typeset link colors in light and dark modes mkdocs-material-8.2.16+insiders-4.16.2 (2022-05-28) * Fixed #3961: Nested sections triggered build error for navigation tabs mkdocs-material-8.2.16+insiders-4.16.1 (2022-05-28) * Switched feedback widget rating titles to tooltips * Improved contrast of link colors for light/dark color schemes * Fixed #3950: Sticky navigation tabs rendering broken (4.15.2 regression) * Fixed #3958: Links invisible when using white primary color mkdocs-material-8.2.16 (2022-05-28) * Fixed #3957: Only animate code annotations when visible (save CPU cycles) mkdocs-material-8.2.15+insiders-4.16.0 (2022-05-25) * Added support for navigation pruning * Fixed search results for non-segmented characters (4.15.2 regression) mkdocs-material-8.2.15+insiders-4.15.2 (2022-05-22) * Removed workaround for abbr on touch devices (superseded by tooltips) * Fixed #3915: Improved Chinese search query segmentation * Fixed #3938: Fixed tooltips position for navigation titles with ellipsis mkdocs-material-8.2.15+insiders-4.15.1 (2022-05-14) * Improved performance of element focus observables * Fixed #3531: Added prev/next buttons to content tabs * Fixed tooltip positioning when host element is hidden mkdocs-material-8.2.15 (2022-05-14) * Added Uzbek translations * Fixed spacing for code block results in content tabs mkdocs-material-8.2.14+insiders-4.15.0 (2022-05-08) * Added support for improved tooltips * Fixed #3785: Show tooltip on hover for overflowing navigation link mkdocs-material-8.2.14 (2022-05-08) * Fixed missing top right rounded border on admonition * Fixed #3886: 4xx status codes not handled when using instant loading mkdocs-material-8.2.13+insiders-4.14.0 (2022-05-05) * Added Chinese language support to built-in search plugin * Fixed all-numeric page titles raising error in social plugin mkdocs-material-8.2.13 (2022-05-02) * Fixed #3865: Tags index links to tagged pages 404 on Windows * Fixed #3866: Bump required Python version from 3.6+ to 3.7+ mkdocs-material-8.2.12+insiders-4.13.2 (2022-04-30) * Improved caching of downloaded resources in privacy plugin * Fixed #3851: External images not downloaded by privacy plugin mkdocs-material-8.2.12 (2022-04-30) * Added support for GitHub-style hash fragments for dark/light images * Improved rendering of nested code blocks in content tabs and annotations * Fixed #3862: Upgraded to latest Pygments and Python Markdown Extensions mkdocs-material-8.2.11+insiders-4.13.1 (2022-04-25) * Fixed #3839: Tags plugin breaks without icons (4.13.0 regression) mkdocs-material-8.2.11 (2022-04-25) * Temporarily pinned Pygments to <2.12 * Temporarily pinned Python Markdown Extensions to <9.4 * Improved rendering of code annotation markers mkdocs-material-8.2.10+insiders-4.13.0 (2022-04-24) * Added support for tag icons mkdocs-material-8.2.10 (2022-04-24) * Added Macedonian translations * Updated Mermaid.js to version 9.0.1 * Switched sidebar title in mobile navigation to bold font * Fixed color of arrows in class and state diagrams for dark mode * Fixed #3836: Inline admonitions overlayed by code block titles mkdocs-material-8.2.9 (2022-04-08) * Mitigate flicker on color palette switch by disabling all transitions * Fixed search suggestions not triggered when following deep link * Fixed incorrectly computed header height when using instant loading * Fixed #3782: Admonition titles have extra pixels on wide screens in Firefox * Fixed #3802: Always render table of contents container (except when hidden) mkdocs-material-8.2.8+insiders-4.12.0 (2022-03-27) * Added support for card grids and grid layouts * Fixed #3685: Annotations sometimes broken when using instant loading * Fixed #3742: Automatically add Mermaid.js when building for offline usage mkdocs-material-8.2.8 (2022-03-27) * Bumped MkDocs version to 1.3.0 to mitigate breaking changes in Jinja * Reverted Jinja version range limitation (added in 8.2.7) * Improved styling of annotations and fixed borders of code blocks in tabs * Added background color to code blocks in focused/hovered links * Added check in tags plugin whether tags overview page exists * Fixed #3744: Content tab indicator on wrong position when using back button mkdocs-material-8.2.7 (2022-03-24) * Temporarily limit Jinja version range to < 3.1 due to breaking changes mkdocs-material-8.2.6 (2022-03-23) * Fixed #3695: Deprecation warning for unescaped backslashes in templates * Fixed #3696: Annotations not mounted in some Terraform code blocks * Fixed #3698: Annotations not mounted in long code blocks (8.2.5 regression) mkdocs-material-8.2.5+insiders-4.11.0 (2022-03-06) * Added support for excluding external assets from privacy plugin mkdocs-material-8.2.5 (2022-03-06) * Fixed #3596: Mermaid not working when headline with name 'Mermaid' present * Fixed #3643: Reduce time to render pages with thousands of code blocks * Fixed #3665: Missing styles for Mermaid.js flowcharts cluster labels mkdocs-material-8.2.4+insiders-4.10.1 (2022-03-02) * Added missing build dependencies to Dockerfile * Fixed encoding issues in privacy plugin, now forcing UTF-8 encoding * Fixed #3624: Scroll to active navigation item unreliable in Firefox * Fixed #3642: Privacy plugin errors when font setting was omitted mkdocs-material-8.2.4 (2022-03-02) * Fixed malformed Google Fonts URL when a font setting was omitted * Fixed #3648: Fixed specificity issue with admonitions in lists * Fixed #3653: Invalid outdated version banner URL when using instant loading mkdocs-material-8.2.3+insiders-4.10.0 (2022-02-27) * Added support for offline plugin (supersedes offline search support) * Improved built-in privacy plugin to download nested JavaScript assets * Refactored configuration of built-in privacy plugin mkdocs-material-8.2.3 (2022-02-27) * Fixed #3578: Active element in table of contents off-by-one on large screens mkdocs-material-8.2.2 (2022-02-26) * Added automatic removal of query parameter when search is closed * Fixed #3599: Anchors always overridden when using navigation tracking mkdocs-material-8.2.1+insiders-4.9.1 (2022-02-21) * Fixed #3610: missing lxml dependency for privacy plugin * Fixed error when charset is missing in content-type header mkdocs-material-8.2.1+insiders-4.9.0 (2022-02-20) * Added privacy plugin: automatic downloading of external assets mkdocs-material-8.2.1 (2022-02-17) * Fixed module 'material.plugins' not being found (8.2.0 regression) mkdocs-material-8.2.0 (2022-02-17) * Added native support for Mermaid.js diagrams * Added native support for tags (with search integration) * Added support for staying on page when switching versions mkdocs-material-8.1.11+insiders-4.8.3 (2022-02-13) * Fixed #3560: Mermaid diagrams don't render for file:// locations mkdocs-material-8.1.11+insiders-4.8.2 (2022-02-10) * Fixed #3559: Mermaid diagrams don't render inside closed details mkdocs-material-8.1.11 (2022-02-10) * Added Portuguese (Brasilian) translations * Updated FontAwesome to v6 (might lead to missing icons) * Fixed #3545: Color palette toggle and search overlaying version selector mkdocs-material-8.1.10+insiders-4.8.1 (2022-02-06) * Fixed jump back to top on mobile when using anchor following mkdocs-material-8.1.10+insiders-4.8.0 (2022-02-06) * Added support for anchor following table of contents (= auto scroll) mkdocs-material-8.1.10 (2022-02-06) * Fixed cutoff of very wide logos in the sidebar on mobile mkdocs-material-8.1.9+insiders-4.7.2 (2022-02-02) * Fixed #3526: Transparent sidebar title due to Safari bug * Fixed #3528: Firefox sometimes clips text in flow chart diagrams mkdocs-material-8.1.9+insiders-4.7.1 (2022-01-30) * Fixed #3506: Tags index not respecting title set via front matter mkdocs-material-8.1.9 (2022-01-30) * Added support for mkdocs.yml validation and auto-complete * Fixed errors in Latvian translations mkdocs-material-8.1.8+insiders-4.7.0 (2022-01-25) * Added native support for offline search mkdocs-material-8.1.8 (2022-01-23) * Added Latvian translations * Updated Giscus example integration with dynamic theme change support * Fixed #3479: Back-to-top button not hidden when using sticky navigation tabs * Fixed #3491: Logo in header and drawer doesn't honor aspect ratio mkdocs-material-8.1.7+insiders-4.6.1 (2022-01-16) * Fixed #3459: Section index pages picking up wrong title mkdocs-material-8.1.7 (2022-01-16) * Improved back-to-top button behavior - now not shown on anchor jump mkdocs-material-8.1.6-insiders-4.6.0 (2022-01-11) * Added support for annotations (outside of code blocks) mkdocs-material-8.1.6 (2022-01-11) * Fixed spacing of blockquotes (8.1.5 regression) * Fixed edge cases for rounded corners on code blocks (8.1.5 regression) * Fixed rendering issues with code annotation line heights mkdocs-material-8.1.5 (2022-01-09) * Improved browser support: Chrome 49+, Safari 10+, Firefox 53+, Edge 79+ * Improved rendering of inline code blocks in headlines * Added Bahasa Malaysian translations * Fixed #3354: MathJax formulas show vertical scrollbar mkdocs-material-8.1.4+insiders-4.5.2 (2022-01-08) * Fixed #3440: Content tab indicator not moving when using linking * Fixed #3445: Content tab switch flickers/jitters when using linking mkdocs-material-8.1.4+insiders-4.5.1 (2022-01-02) * Added support for setting initial state of cookie consent * Fixed #3396: Disappearing link in navigation due to Safari bug mkdocs-material-8.1.4 (2022-01-02) * Added indicator to navigation expander icon * Improved support for reduced motion preference * Fixed jitter of active content tab indicator mkdocs-material-8.1.3 (2021-12-19) * Added animation to active content tab indicator * Fixed #3360: Highlighted lines add blank lines in copied text * Fixed usage of subsequent index files when using section index pages mkdocs-material-8.1.2+insiders-4.5.0 (2021-12-16) * Added support for navigation icons mkdocs-material-8.1.2 (2021-12-15) * Switched CSS sources to logical properties * Added transformation of logical properties to ltr/rtl equivalents * Fixed spacing for admonitions inside lists (8.1.1 regression) mkdocs-material-8.1.1 (2021-12-13) * Added support for #only-light and #only-dark image hash fragments * Fixed copy-to-clipboard adding blank lines when using line anchors * Fixed code annotation directionality for right-to-left languages * Fixed header title positioning for right-to-left languages * Fixed admonition borders for right-to-left languages (8.0.0 regression) * Fixed footer navigation link positioning (8.0.0 regression) * Fixed footer navigation title breaking out of container when too long * Fixed shrinking arrow in navigation title when too long * Fixed #3343: Filtered stopwords appear as missing search terms * Fixed #3346: Site unusable due to usage of :not() (Firefox 78 ESR) mkdocs-material-8.1.0+insiders-4.4.0 (2021-12-10) * Added support for code annotation anchor links (deep linking) * Added new code annotation syntax modifier to strip comment * Updated German translations for cookie consent mkdocs-material-8.1.0 (2021-12-10) * Added basic support for code block line anchors * Switched code annotation markers to + signs to improve usability * Switched main site title to bold font * Improved admonition icon positioning to align when font-size is increased * Improved and simplified footnotes CSS * Improved and simplified code annotation positioning * Fixed syntax error in Russian translations mkdocs-material-8.0.5 (2021-12-04) * Fixed #3302: Footer refactoring induced ellipsis in some browsers * Fixed #3313: Details always rendered closed on load (8.0.4 regression) mkdocs-material-8.0.4+insiders-4.3.0 (2021-12-05) * Added support for custom fonts in social cards * Fixed #3300: Announcement bar reappearing when using instant loading mkdocs-material-8.0.4 (2021-12-04) * Improved support for deeply nested code annotations * Improved code annotation and copy-to-clipboard interop * Improved styling for code annotations inside admonitions * Fixed #3274: Invalid anchor positioning when using instant loading * Fixed #3294: Lists after code blocks without code annotations disappearing * Fixed several positioning issues for code annotations * Fixed JavaScript source map roots mkdocs-material-8.0.3+insiders-4.2.0 (2021-12-02) * Added support for dismissible announcement bar * Added support for named placeholders in feedback widget mkdocs-material-8.0.3 (2021-12-02) * Removed deprecated google_analytics setting (was forgotten in 8.0.0) * Fixed syntax error in Swedish and Polish translations * Fixed #3283: Invalid back-to-top button position with sticky navigation tabs * Fixed #3285: Default details marker showing due to Safari bug mkdocs-material-8.0.2+insiders-4.1.0 (2021-11-30) * Added support for passing page title to feedback forms mkdocs-material-8.0.2 (2021-11-30) * Fixed #3275: Code annotations always disappear on click mkdocs-material-8.0.1 (2021-11-28) * Improved rendering of code annotation markers * Fixed #3265: Wrong margin on nested admonitions * Fixed wrong box-sizing for code annotations in details mkdocs-material-8.0.0 (2021-11-28) * Added support for code annotations * Added support for anchor tracking * Added support for version warning * Added copyright partial for easier override * Removed deprecated content tabs legacy implementation * Removed deprecated seealso admonition type * Removed deprecated site_keywords setting (unsupported by MkDocs) * Removed deprecated prebuilt search index support * Removed deprecated web app manifest – use customization * Removed extracopyright variable – use new copyright partial * Removed Disqus integration – use customization * Switched to :is() selectors for simple selector lists * Switched autoprefixer from last 4 years to last 2 years * Improved CSS overall to match modern standards * Improved CSS variable semantics for fonts * Improved extensibility by restructuring partials * Improved handling of details when printing * Improved keyboard navigation for footnotes * Fixed #3214: Search highlighting breaks site when empty mkdocs-material-7.3.6+insiders-3.2.3 (2021-11-20) * Updated Swedish and French translations * Removed support for .mermaid-experimental class (now .mermaid) * Fixed #3202: Cookie consent not dismissible on file:// locations * Fixed #3216: Cookie consent not dismissed when invoked via anchor * Fixed #3232: Mermaid.js sometimes runs twice (race condition) mkdocs-material-7.3.6+insiders-3.2.2 (2021-11-06) * Fixed always last feedback rating being sent * Fixed #3145: Code annotations eat whole comment lines * Fixed #3170: Feedback widget doesn't send data to GA4 mkdocs-material-7.3.6+insiders-3.2.1 (2021-11-04) * Added support for custom Mermaid.js version via additional JavaScript * Fixed some configuration edge cases for tags plugin (3.1.5 regression) * Fixed feedback widget title not being centered in Firefox * Fixed #3179: Safari doesn't send request for feedback widget mkdocs-material-7.3.6+insiders-3.2.0 (2021-10-31) * Added support for feedback widget (Was this page helpful?) mkdocs-material-7.3.6 (2021-10-30) * Added support for adding titles to code blocks mkdocs-material-7.3.5+insiders-3.1.5 (2021-10-28) * Fixed #3144: Rogue link when using tags with auto-populated navigation * Fixed #3147: Code block line numbers appear in search results * Fixed #3158: Social cards do not strip HTML tags from title mkdocs-material-7.3.5 (2021-10-27) * Added support for setting table of contents title via mkdocs.yml * Fixed back-to-top button position for right-to-left languages mkdocs-material-7.3.4+insiders-3.1.4 (2021-10-17) * Fixed #2974: Text cropped with other fonts than Roboto in social plugin * Fixed #3099: Encoding problems with non-latin character in social plugin * Fixed #3112: Japanese segmenter not executed as part of new tokenizer * Fixed tags (front matter) appearing in search with disabled tags plugin mkdocs-material-7.3.4 (2021-10-17) * Bumped MkDocs version to 1.2.3 to mitigate CVE-2021-40978 * Fixed spacing issues when using integrate table of contents with tabs * Fixed some spacings issues for right-to-left languages * Fixed race condition in search initialization mkdocs-material-7.3.3+insiders-3.1.3 (2021-10-12) * Added warnings to search plugin for unsupported options and syntax * Fixed #3503: Search sometimes returns entire page * Fixed #3089: Single-line code annotations disappear when printing mkdocs-material-7.3.3 (2021-10-11) * Rewrite of entire documentation * Adjusted height of new content tabs to match single line code blocks * Fixed new content tabs missing right padding in some browsers on overflow * Fixed new content tabs bleeding out of flex container on overflow * Fixed new content tabs overflow scrolling bugs on some browsers * Fixed new content tabs stealing keyboard access when active * Fixed some spacings issues for right-to-left languages mkdocs-material-7.3.2+insiders-3.1.2 (2021-10-06) * Fixed incorrect path separators for social cards on Windows mkdocs-material-7.3.2 (2021-10-06) * Deprecated prebuilding of search index * Improved graceful handling of broken search for file:// * Added minimum Jinja version to list of requirements * Fixed #3071: Section index pages render empty directories * Fixed margin issues when using navigation tabs (7.3.1 regression) * Fixed search placeholder sometimes being shown too early mkdocs-material-7.3.1 (2021-10-02) * Added new experimental content tabs implementation * Fixed #3069: GitHub stats broken for users/orgs (7.1.0 regression) * Fixed #3070: Sections not linking to index page * Fixed title not linking to index page when using tabs * Fixed Disqus integration when using instant loading * Fixed some spacing issues for right-to-left languages * Fixed syntax error in Serbian translations mkdocs-material-7.3.0+insiders-3.1.1 (2021-09-26) * Fixed ordering bug in search exclusion logic mkdocs-material-7.3.0+insiders-3.1.0 (2021-09-26) * Added support for excluding pages, sections, and elements from search * Fixed #2803: Code block annotations not visible when printing mkdocs-material-7.3.0 (2021-09-23) * Added support for sticky navigation tabs * Added support for section index pages * Added support for removing generator notice mkdocs-material-7.2.8 (2021-09-20) * Fixed #3039: Search modal overlays menu on mobile (7.2.7 regression) mkdocs-material-7.2.7+insiders-3.0.1 (2021-09-19) * Added support for using literal h1-6 tags for search plugin * Fixed search plugin breaking on void elements without slashes * Fixed search plugin filtering link contents from headlines * Fixed search plugin handling of multiple h1 headlines * Fixed search plugin handling of missing h1 headlines mkdocs-material-7.2.7 (2021-09-19) * Updated Serbian and Serbo-Croatian translations * Improved appearance of outline on details * Fixed #2934: Scrollbar when header is hidden on some mobile browsers * Fixed #3032: Anchor in details doesn't open on load (7.0.0 regression) * Fixed back-to-top button being focusable when invisible * Fixed broken admonition icons (removed in upstream) mkdocs-material-7.2.6+insiders-3.0.0 (2021-09-13) * Rewrite of MkDocs' search plugin * Added support for rich search previews * Added support for tokenizer with lookahead * Improved search indexing performance (twice as fast) * Improved search highlighting mkdocs-material-7.2.6+insiders-2.13.3 (2021-09-01) * Added support for disabling social card generation mkdocs-material-7.2.6 (2021-09-01) * Fixed rendering of blockquote elements (7.0.0 regression) * Fixed #2973: Custom search worker setting ignored mkdocs-material-7.2.5+insiders-2.13.2 (2021-08-25) * Fixed #2965: Social plugin error when primary color is not defined mkdocs-material-7.2.5 (2021-08-25) * Updated Portuguese translations * Fixed execution of RxJS teardown logic (7.2.3 regression) * Fixed #2970: Search results show escaped characters (7.2.2 regression) mkdocs-material-7.2.4+insiders-2.13.1 (2021-08-22) * Fixed #2948: Social cards are not cached * Fixed #2953: Mermaid.js diagrams can't be centered anymore mkdocs-material-7.2.4 (2021-08-11) * Fixed #2926: Version selector not working (7.2.3 regression) * Fixed #2929: Missing CSS class for banner (consistency with Insiders) mkdocs-material-7.2.3 (2021-08-09) * Slight facelift of data tables, now closer to Material Design * Fixed instant loading not respecting clicks on search results * Fixed #2881: Invalid anchor offsets when using instant loading mkdocs-material-7.2.2+insiders-2.13.0 (2021-08-07) * Added support for custom colors in social cards mkdocs-material-7.2.2+insiders-2.12.2 (2021-08-04) * Fixed #2891: Division by zero error in social plugin mkdocs-material-7.2.2 (2021-07-31) * Updated Korean translations * Fixed #2879: Search highlighting does not properly escape HTML mkdocs-material-7.2.1+insiders-2.12.1 (2021-07-26) * Fixed error in social plugin when site_description was not set * Fixed error in social plugin for non-ASCII characters mkdocs-material-7.2.1+insiders-2.12.0 (2021-07-25) * Added support for social cards mkdocs-material-7.2.1 (2021-07-25) * Fixed #2862: Back-to-top button overlays active search bar mkdocs-material-7.2.0 (2021-07-21) * Added support for search suggestions to save keystrokes * Added support for search highlighting * Added support for search sharing (i.e. deep linking) mkdocs-material-7.1.11+insiders-2.11.1 (2021-07-20) * Fixed order of tags index, now sorted alphabetically mkdocs-material-7.1.11+insiders-2.11.0 (2021-07-18) * Improved Mermaid.js integration, now stable * Added support for sequence diagrams * Added support for entity relationship diagrams * Added support for cookie consent configuration * Added feature flag to always enable annotations mkdocs-material-7.1.11 (2021-07-18) * Updated Spanish and Galician translations mkdocs-material-7.1.10+insiders-2.10.0 (2021-07-10) * Added support for cookie consent * Fixed #2807: Back-to-top button not hidden when using sticky tabs mkdocs-material-7.1.10 (2021-07-10) * Refactored appearance of back-to-top button * Fixed graceful handling of search when browsing locally mkdocs-material-7.1.9 (2021-06-25) * Improved search language support for Thai and Hindi * Fixed #2761: License comments lined up at end of file mkdocs-material-7.1.8 (2021-06-12) * Refactored analytics integration (because of MkDocs 1.2) * Added support for Google Analytics 4 (gtag.js) * Fixed missing escape for aria-label in footer links mkdocs-material-7.1.7 (2021-06-06) * Improved screen reader support mkdocs-material-7.1.6+insiders-2.9.2 (2021-05-30) * Moved tags to partial for easier customization * Added support for hiding tags on any page mkdocs-material-7.1.6 (2021-05-30) * Deprecated seealso admonition qualifier * Added Mongolian and updated Chinese translations * Fixed #2429: Version selector not touch-friendly on Android devices * Fixed #2703: Printed 'Initializing search' albeit ready on mobile mkdocs-material-7.1.5+insiders-2.9.1 (2021-05-24) * Added missing guard for linking of content tabs mkdocs-material-7.1.5+insiders-2.9.0 (2021-05-23) * Added support for linking of content tabs mkdocs-material-7.1.5 (2021-05-19) * Fixed #2655: Details breaking page margins on print mkdocs-material-7.1.4+insiders-2.8.0 (2021-05-12) * Added support for boosting pages in search mkdocs-material-7.1.4+insiders-2.7.2 (2021-05-08) * Fixed #2638: Warnings shown when using tags plugin without directory URLs mkdocs-material-7.1.4 (2021-05-06) * Added support for git-revision-date-localized plugin creation date * Improved footnote styles on :target and :focus mkdocs-material-7.1.3+insiders-2.7.1 (2021-05-03) * Fixed git-revision-date-localized plugin integration (2.7.0 regression) mkdocs-material-7.1.3+insiders-2.7.0 (2021-05-01) * Added support for tags (with search integration) mkdocs-material-7.1.3 (2021-04-24) * Fixed #2586: Empty table of contents shown (7.1.2 regression) mkdocs-material-7.1.2 (2021-04-18) * Fixed #2554: List markers sometimes overlap floated elements * Fixed #2563: Adding a class to a h1 breaks the table of contents * Fixed #2566: Back-to-top button clickable when invisible mkdocs-material-7.1.1+insiders-2.6.0 (2021-04-11) * Stay on page when switching versions mkdocs-material-7.1.1 (2021-04-10) * Fixed #2501: Nested definition lists compound bottom margin * Fixed #2508: Switch extracopyright block to template variable * Fixed #2533: Search (and other parts) not working in Safari <14 * Fixed #2538: Visual quirk when opening language selector mkdocs-material-7.1.0 (2021-03-29) * Added support for color palette toggle * Added support for back-to-top button * Added latest release to repository info (GitHub) * Slight facelift of repository info (lighter fonts, spacing and icons) mkdocs-material-7.0.7+insiders-2.5.0 (2021-03-28) * Added support for version warning mkdocs-material-7.0.7 (2021-03-28) * Updated Hungarian translations * Fixed #2466: Docker image not based on latest Python and Alpine * Fixed #2488: Inconsistent header shadow behavior * Fixed #2492: Inline code blocks in admonition titles missing background mkdocs-material-7.0.6+insiders-2.4.0 (2021-03-20) * Added support for custom admonition icons * Fixed #2444: Code block annotations with extra comments have wrong index mkdocs-material-7.0.6+insiders-2.3.1 (2021-03-14) * Fixed anchor offset for permalinks when using sticky navigation tabs mkdocs-material-7.0.6 (2021-03-14) * Added trailing slash to version selector URL * Added support for out-of-order anchors in table of contents * Added extra.homepage option to link logo to arbitrary URL * Improved security of Docker image (always update apk) * Fixed horizontal spacing for nested inline admonitions * Fixed text color of nested code blocks inside links * Fixed version selector to always use version title * Fixed logo link when using versioning with instant loading mkdocs-material-7.0.5+insiders-2.3.0 (2021-03-13) * Added support for back-to-top button mkdocs-material-7.0.5 (2021-03-07) * Added extracopyright block to allow for custom copyright info * Fixed evaluation of third-party scripts when using instant loading * Fixed edge cases when using instant loading without directory URLs * Fixed handling of version selector when using instant loading * Fixed regression with header title not being updated correctly * Fixed expanded sections not opening on first click (7.0.4 regression) mkdocs-material-7.0.4+insiders-2.2.1 (2021-03-04) * Fixed #2382: Repository stats failing when no release tag is present mkdocs-material-7.0.4 (2021-03-04) * Added Icelandic translations * Fixed #2386: Section close requires two clicks (navigation expansion) * Fixed console error when search is disabled (7.0.0 regression) * Fixed localsearch integration (7.0.0 regression) mkdocs-material-7.0.3+insiders-2.2.0 (2021-02-28) * Added support for code block annotations mkdocs-material-7.0.3+insiders-2.1.0 (2021-02-26) * Added support for anchor tracking mkdocs-material-7.0.3 (2021-02-26) * Fixed JavaScript errors in older browsers (target ES2020 -> ES2015) mkdocs-material-7.0.2 (2021-02-25) * Fixed #2343: Invalid source map URLs for JS and CSS files * Fixed #2347: Version selector missing when using versioning mkdocs-material-7.0.1+insiders-2.0.0 (2021-02-24) * Migrated Insiders to the new architecture * Swapped color palette toggle configuration mkdocs-material-7.0.1 (2021-02-24) * Fixed #2334: Google Analytics triggers page view twice (7.0.0 regression) * Fixed #2336: Details bleed into inline admonitions * Fixed #2337: Images don't align correctly (7.0.0 regression) mkdocs-material-7.0.0 (2021-02-22) * Added support for deploying multiple versions * Added support for integrating a language selector * Added support for rendering admonitions as inline blocks * Rewrite of the underlying reactive architecture * Removed Webpack in favor of reactive build strategy (-480 dependencies) * Fixed keyboard navigation for code blocks after content tabs switch mkdocs-material-6.2.8 (2021-02-04) * Updated Japanese and Polish translations * Fixed #2261: Print dialog auto-closing when using instant loading mkdocs-material-6.2.7+insiders-1.17.0 (2021-01-31) * Added support for section index pages mkdocs-material-6.2.7 (2021-01-31) * Fixed #2251: Updated Docker image to latest Alpine Linux mkdocs-material-6.2.6+insiders-1.16.1 (2021-01-26) * Fixed #2249: Instant loading + sticky tabs result in invalid links * Fixed #2248: Search highlighting URL parameter always added * Fixed #2235: Version selector doesn't select current version for aliases mkdocs-material-6.2.6 (2021-01-26) * Added Bulgarian translations * Fixed #2233: Search not shown when using header autohiding mkdocs-material-6.2.5+insiders-1.16.0 (2021-01-17) * Added latest release to repository info (GitHub) * Slight facelift of repository info (lighter fonts, spacing and icons) mkdocs-material-6.2.5 (2021-01-17) * Fixed syntax error in Swedish translations * Optimized navigation partials to improve build speed for huge docs mkdocs-material-6.2.4 (2021-01-09) * Fixed #2156: Missing syntax highlighting for binary numbers * Fixed #2186: Disqus showing on 404 page mkdocs-material-6.2.3+insiders-1.15.0 (2021-01-02) * Added support for native Mermaid.js integration mkdocs-material-6.2.3+insiders-1.14.0 (2020-12-30) * Added support for sharing searches mkdocs-material-6.2.3 (2020-12-27) * Added back hidden overflow on root container * Fixed #2142: MathJax formulas sometimes have vertical scrollbars mkdocs-material-6.2.2+insiders-1.13.2 (2020-12-22) * Fixed version selector + sticky tabs navigation rendering issues * Fixed version selector wrapping mkdocs-material-6.2.2 (2020-12-22) * Removed Markdown version range limit (6.2.0 regression) mkdocs-material-6.2.1 (2020-12-22) * Fixed all import and asset paths in templates (6.2.0 regression) * Downgraded webpack-asset-manifest-plugin - broke all asset paths mkdocs-material-6.2.0 (2020-12-22) * Added support for navigation sections * Added support for navigation expansion * Added support for integrating table of contents into navigation * Added support for autohiding header on scroll * Added support for hiding navigation and table of contents per page * Added support for arbitrary items in navigation tabs * Refactored navigation tabs to simplify grouping behavior * Fixed anchor offset for permalinks in Safari (partial revert) * Fixed #2098: Active tab sometimes not highlighted correctly * Improved appearance for horizontal rulers * Improved Spanish and Swedish translations mkdocs-material-6.1.7+insiders-1.13.1 (2020-12-20) * Fixed horizontal scrollbars for language and version selection * Fixed type conversion in JavaScript config (#6) mkdocs-material-6.1.7+insiders-1.13.0 (2020-12-13) * Added support for sticky navigation tabs * Added support for arbitrary links in navigation tabs * Refactored navigation tabs to simplify grouping behavior * Fixed #2098: Subsequent active subsection not highlighted correctly mkdocs-material-6.1.7+insiders-1.12.1 (2020-12-08) * Fixed empty language selector being shown mkdocs-material-6.1.7+insiders-1.12.0 (2020-12-06) * Added support for adding a language selector mkdocs-material-6.1.7 (2020-12-06) * Fixed #2081: Fixed stats for private GitHub repositories * Fixed alignment for admonition icon alignment for right-to-left languages mkdocs-material-6.1.6+insiders-1.11.2 (2020-11-29) * Fixed #2068: Search highlight interprets code blocks as JavaScript mkdocs-material-6.1.6+insiders-1.11.1 (2020-11-29) * Refactored styling to be more stable and easier to adjust * Fixed some styling regressions from latest features mkdocs-material-6.1.6+insiders-1.11.0 (2020-11-22) * Added support for rendering admonitions as inline blocks mkdocs-material-6.1.6 (2020-11-22) * Fixed #2048: Math formulas show scrollbars (Windows) mkdocs-material-6.1.5+insiders-1.10.0 (2020-11-15) * Added support for integrating table of contents into navigation mkdocs-material-6.1.5 (2020-11-15) * Fixed search reset button not showing/hiding correctly mkdocs-material-6.1.4+insiders-1.9.0 (2020-11-07) * Added support for hiding navigation and table of contents on any page * Removed autohiding table of contents when empty mkdocs-material-6.1.4 (2020-11-07) * Fixed sidebar jitter when scrolling footer into view mkdocs-material-6.1.3 (2020-11-05) * Added support for keywords meta tag * Fixed #2027: Line numbers don't scale with smaller font size * Fixed link colors for black and white on slate color scheme * Removed focus outline on scrolling code blocks for pointer devices mkdocs-material-6.1.2+insiders-1.8.0 (2020-11-01) * Added support for navigation sections * Fixed appearance of inactive search suggestions mkdocs-material-6.1.2 (2020-10-31) * Fixed sizing of icons in admonitions, task lists, etc. (6.1.1 regression) mkdocs-material-6.1.1 (2020-10-31) * Fixed #2019: Page title not correctly updated when using instant loading mkdocs-material-6.1.0+insiders-1.7.0 (2020-10-25) * Added support for deploying multiple versions * Fixed alignment of sidebar when content area is too small mkdocs-material-6.1.0 (2020-10-17) * Fixed #1973: Added support for printing in dark mode * Fixed #1974: Added support for printing content tabs * Fixed #1995: Improved customizability of details extension mkdocs-material-6.0.2+insiders-1.6.0 (2020-10-11) * Added support for search suggestions to save keystrokes * Added support for removing 'Made with Material for MkDocs' from footer * Fixed #1915: search should go to first result by pressing Enter mkdocs-material-6.0.2 (2020-10-04) * Added Georgian translations * Added escaping for link title attributes where necessary * Fixed #1956: Pages with whitespace in names have invalid links in search * Removed unnecessary (duplicated) link title attributes mkdocs-material-6.0.1 (2020-09-26) * Fixed stemmer support for file:// protocol through iframe-worker * Fixed details marker showing for search result in Firefox * Fixed tabbing behavior when search query is not empty * Switched TypeScript compilation target to ES2015 * Reduced size of JavaScript by 30% (176kb → 124kb) * Removed mkdocs and readthedocs themes from Docker image mkdocs-material-6.0.0 (2020-09-25) * Improved search result look and feel * Improved search result stability while typing * Improved search result grouping (pages + headings) * Improved search result relevance and scoring * Added display of missing query terms to search results * Reduced size of vendor bundle by 25% (84kb → 67kb) * Reduced size of the Docker image to improve CI build performance * Removed hero partial in favor of custom implementation * Removed deprecated front matter features mkdocs-material-5.5.14 (2020-09-23) * Improved spacing around image captions * Fixed #1939: Long tables cause header overlap in print view mkdocs-material-5.5.13+insiders-1.5.1 (2020-09-21) * Fixed content area stretching to whole width for long code blocks mkdocs-material-5.5.13+insiders-1.5.0 (2020-09-19) * Added support for autohiding table of contents when empty mkdocs-material-5.5.13 (2020-09-19) * Improved abbreviations on touch devices mkdocs-material-5.5.12+insiders-1.4.1 (2020-09-06) * Improved typeahead and search result relevance and scoring mkdocs-material-5.5.12 (2020-08-31) * Fixed #1638: occasional 404 for images when using instant loading mkdocs-material-5.5.11+insiders-1.4.0 (2020-08-30) * Added support for autohiding header on scroll mkdocs-material-5.5.11 (2020-08-28) * Fixed Disqus integration, as the minifier killed the config mkdocs-material-5.5.10 (2020-08-28) * Improved rendering by moving Disqus integration after page load * Fixed #1887: Moved navigation icons to CSS to reduce size of HTML mkdocs-material-5.5.9+insiders-1.3.0 (2020-08-26) * Added support for user-selectable color palettes mkdocs-material-5.5.9 (2020-08-26) * Added Esperanto translations * Fixed #1884: External links not included in navigation tabs mkdocs-material-5.5.8 (2020-08-23) * Removed focus outline on details and content tabs for pointer devices * Improved accessibility of content tabs (now navigable via arrow keys) * Fixed #1877: 404 on search index when search is disabled * Fixed some memleaks in observable subscriptions * Fixed color definitions for theme-color meta tag mkdocs-material-5.5.7 (2020-08-16) * Improved contrast ratio to 4.5:1 for syntax highlighting * Improved contrast ratio to 4.5:1 for table of contents mkdocs-material-5.5.6 (2020-08-12) * Switched base template for 404.html to main.html * Fixed #1864: GitHub organisation stats not loading mkdocs-material-5.5.5+insiders-1.2.0 (2020-08-11) * Added feature to expand navigation by default mkdocs-material-5.5.5 (2020-08-11) * Fixed missing vendor and worker distribution files mkdocs-material-5.5.4 (2020-08-11) * Added support for sortable data tables mkdocs-material-5.5.3 (2020-08-04) * Fixed search for languages other than English (5.5.1 regression) mkdocs-material-5.5.2+insiders-1.1.0 (2020-08-03) * Added highlighting of search results mkdocs-material-5.5.2 (2020-08-03) * Improved highlight colors and spacing for ins, del and mark * Changed some keyboard symbols for better equivalents * Removed focus outline for details and code blocks on touch devices * Fixed margins for admonitions (5.5.1 regression) * Fixed too small content tab labels (5.5.1 regression) * Fixed icon repeating for custom admonition icons mkdocs-material-5.5.1 (2020-08-01) * Improved typesetting by basing font-size and spacings on em * Improved print view by slightly scaling down font-size * Changed custom site title (metadata) to be suffixed with site name * Fixed top- and bottom spacing of paragraphs inside table cells mkdocs-material-5.5.0 (2020-07-24) * Rewrite of entire documentation * Rewrite of syntax highlighting to be customizable with CSS variables * Improved syntax highlighting to work with light and dark theme * Improved slate color scheme to be more customizable and easier on the eyes * Added licenses of icon sets to distribution files * Fixed stale document titles in Google Analytics when using instant loading * Fixed width of previous and next footer links for tablet and above * Fixed issues with top scroll margin for footnotes * Fixed top margin for tabbed content when using a JavaScript highlighter * Deprecated metadata-based redirects, source links and heroes mkdocs-material-5.4.0+insiders-1.0.0 (2020-07-14) * Added grouping of search results * Added missing query terms to search result * Improved search result relevance and scoring mkdocs-material-5.4.0 (2020-06-29) * Added support to wrap searches in quotes to switch from OR to AND * Fixed highlighting of numbers in search results mkdocs-material-5.3.3 (2020-06-24) * Added Bengali translations * Fixed #1773: Search for numbers does not return any result (regression) mkdocs-material-5.3.2 (2020-06-21) * Improved search typeahead experience with non-Latin characters * Fixed #1753: Japanese search doesn't work anymore mkdocs-material-5.3.1 (2020-06-20) * Fixed #1761: Duplication of search worker when subscribing to observable mkdocs-material-5.3.0 (2020-06-15) * Added support for color schemes based on user preference * Fixed #1755: Tokenizer separator setting ignored mkdocs-material-5.2.3 (2020-06-07) * Improved search typeahead behavior for some languages (de, fr, ...) * Improved styles for scrollbars on Firefox * Fixed #1741: Removed preconnect hint for Google Analytics mkdocs-material-5.2.2 (2020-05-26) * Fixed #1728: Legacy Edge doesn't support deg values in hsla colors mkdocs-material-5.2.1 (2020-05-22) * Fixed color of links in table headers, e.g. footnotes * Fixed color scheme not being applied without primary or accent color * Fixed hover delay for links inside code blocks mkdocs-material-5.2.0 (2020-05-18) * Added color schemes implementation + dark mode * Fixed #1583: Missing option for separate link colors mkdocs-material-5.1.7 (2020-05-16) * Added keyboard focus support for overflowing code blocks * Fixed #1696: Infinite loop in some cases when using instant loading mkdocs-material-5.1.6 (2020-05-09) * Added Burmese translations * Added general anchor offset solution using scroll-margin-top * Fixed #1653: Instant loading shouldn't intercept links to *.html files mkdocs-material-5.1.5 (2020-05-03) * Added name attribute for social links to set link title * Fixed #1623: Allow arbitrary links in social links * Fixed #1664: Height of iframe is not adjustable * Fixed #1667: Sidebars are scrolled to bottom on load (bug in Chrome 81+) mkdocs-material-5.1.4 (2020-04-30) * Switched to @mdi/svg Material Design icon package * Fixed #1655: Navigation may disappear after switching viewports * Fixed #1659: Unnecessary scrollbar for search results on Windows * Fixed occasional distortions for images with explicit dimensions * Fixed errors in German translations mkdocs-material-5.1.3 (2020-04-26) * Fixed overflowing content area after switch to flexbox mkdocs-material-5.1.2 (2020-04-26) * Added status information to search observable * Added status information to search modal * Removed announcement bar from print media * Removed media query packing logic due to race conditions * Fixed #1520: Gracefully disable search on file:// if Worker fails * Fixed re-submission of query after search is initialized * Fixed jitter of sidebars on all browsers by switching to sticky mkdocs-material-5.1.1 (2020-04-17) * Added new FontAwesome icons * Fixed #1609: Instant loading doesn't honor target=_blank * Fixed GitHub stars count rounding errors * Fixed GitLab stars count retrieval mkdocs-material-5.1.0 (2020-04-12) * Added support for icons from Markdown through mkdocs-material-extensions mkdocs-material-5.0.2 (2020-04-10) * Added CSS source maps to distribution files * Fixed errors in Chinese (Traditional) translations * Fixed creation of stale directory on installation from git * Improved overflow scrolling behavior on iOS (reduced bundle size by 4kb) mkdocs-material-5.0.1 (2020-04-07) * Fixed syntax error in Spanish translations mkdocs-material-5.0.0 (2020-04-07) * Reactive architecture – try app.dialog$.next("Hi!") in the console * Instant loading – make Material behave like a Single Page Application * Improved CSS customization with CSS variables – set your brand's colors * Improved CSS resilience, e.g. proper sidebar locking for customized headers * Improved icon integration and configuration – now including over 5k icons * Added possibility to use any icon for logo, repository and social links * Search UI does not freeze anymore (moved to web worker) * Search index built only once when using instant loading * Improved extensible keyboard handling * Support for prebuilt search indexes * Support for displaying stars and forks for GitLab repositories * Support for scroll snapping of sidebars and search results * Reduced HTML and CSS footprint due to deprecation of IE support * Slight facelifting of some UI elements (admonitions, tables, ...) mkdocs-material-4.6.3 (2020-02-14) * Removed optional third-party plugins from requirements.txt * Updated Docker image to contain all supported third-party plugins mkdocs-material-4.6.2 (2020-02-08) * Added Romanian translations * Fixed #1451: Inconsistent spacing for fenced code blocks mkdocs-material-4.6.1 (2020-02-08) * Fixed #1324: Metadata author only rendering first character * Fixed #1393: Set tabindex to 0 for skip to content link * Fixed code blocks after Markdown 3.2 release * Fixed errors in Japanese translations * Improved Google Lighthouse score mkdocs-material-4.6.0 (2019-12-11) * Added support for mkdocs-git-revision-date-localized-plugin * Fixed invalid character in Google Fonts URL mkdocs-material-4.5.1 (2019-12-02) * Added Thai translations * Fixed missing assets in GitHub release .zip and .tar.gz mkdocs-material-4.5.0 (2019-11-16) * Fixed #1330: Upgraded EmojiOne to Tweomji due to licensing issues * Fixed #1339: Temporarily pinned PyMdown and Markdown due to * Fixed errors in Greek translations * Improved GitHub statistics retrieval mkdocs-material-4.4.3 (2019-10-03) * Added Estonian translations * Fixed removal of copyright banners in minified JavaScript * Removed unnecessary title attributes from links in table of contents mkdocs-material-4.4.2 (2019-08-27) * Added Afrikaans translations * Fixed broken page title when h1 contained HTML tags * Improved accessibility for IE users * Removed unnecessary title attributes from links in navigation mkdocs-material-4.4.1 (2019-08-22) * Added support for black as a primary color * Fixed broken footer bar when h1 contained HTML tags mkdocs-material-4.4.0 (2019-06-15) * Added Slovenian translations * Reverted template minification in favor of mkdocs-minify-plugin * Fixed #1114: Tabs don't reappear when default font-size is smaller than 16 mkdocs-material-4.3.1 (2019-05-23) * Fixed spelling error in Danish translations mkdocs-material-4.3.0 (2019-05-17) * Added support for changing header through metadata title property * Added font-display: swap to Google Font loading logic * Removed whitespace from templates, saving 4kb (.7kb gzipped) per request * Fixed alignment of repository icons on tablet and desktop mkdocs-material-4.2.0 (2019-04-28) * Added Norwegian (Nynorsk) translations * Fixed loss of focus in non-form input elements due to search hotkeys * Fixed #1067: Search hotkeys not working for mobile/tablet screensize * Fixed #1068: Search not correctly aligned for tablet screensize mkdocs-material-4.1.2 (2019-04-16) * Fixed #1072: HTML tags appearing in navigation link titles mkdocs-material-4.1.1 (2019-03-28) * Fixed minor CSS errors detected during validation mkdocs-material-4.1.0 (2019-03-22) * Fixed #1023: Search for Asian languages broken after Lunr.js update * Fixed #1026: contenteditable elements loose focus on hotkeys mkdocs-material-4.0.2 (2019-03-01) * Fixed #1012: HTML character entities appear in search result titles mkdocs-material-4.0.1 (2019-02-13) * Fixed #762, #816: Glitch in sidebar when collapsing items * Fixed #869: Automatically expand details before printing mkdocs-material-4.0.0 (2019-02-13) * Added background on hover for table rows * Removed Google Tag Manager and reverted to Google Analytics * Removed blocks in partials - Jinja doesn't support them * Fixed #911: Chrome breaks layout if system language is Chinese [BREAKING] * Fixed #976: Removed FastClick mkdocs-material-3.3.0 (2019-01-29) * Moved Google Analytics integration into head using Google Tag Manager * Fixed #972: Unicode slugifier breaks table of contents blur on scroll * Fixed #974: Additional links in table of contents break blur on scroll mkdocs-material-3.2.0 (2018-12-28) * Added support for redirects using metadata refresh * Fixed #921: Load Google Analytics snippet asynchronously mkdocs-material-3.1.0 (2018-11-17) * Added support for Progressive Web App Manifest * Fixed #915: Search bug in Safari (upgraded Lunr.js) mkdocs-material-3.0.6 (2018-10-26) * Added Taiwanese translations * Fixed #906: JavaScript code blocks evaluated in search results mkdocs-material-3.0.5 (2018-10-23) * Added Croatian and Indonesian translations * Fixed #899: Skip-to-content link invalid from 2nd level on * Fixed #902: Missing URL filter in footer for FontAwesome link mkdocs-material-3.0.4 (2018-09-03) * Updated Dutch translations * Fixed #856: Removed preconnect meta tag if Google Fonts are disabled mkdocs-material-3.0.3 (2018-08-07) * Fixed #841: Additional path levels for extra CSS and JS mkdocs-material-3.0.2 (2018-08-06) * Fixed #839: Lunr.js stemmer imports incorrect mkdocs-material-3.0.1 (2018-08-05) * Fixed #838: Search result links incorrect mkdocs-material-3.0.0 (2018-08-05) * Upgraded MkDocs to 1.0 [BREAKING] * Upgraded Python in official Docker image to 3.6 * Added Serbian and Serbo-Croatian translations mkdocs-material-2.9.4 (2018-07-29) * Fixed build error after MkDocs upgrade mkdocs-material-2.9.3 (2018-07-29) * Added link to home for logo in drawer * Fixed dependency problems between MkDocs and Tornado mkdocs-material-2.9.2 (2018-06-29) * Added Hindi and Czech translations mkdocs-material-2.9.1 (2018-06-18) * Added support for different spellings for theme color * Fixed #799: Added support for webfont minification in production * Fixed #800: Added .highlighttable as an alias for .codehilitetable mkdocs-material-2.9.0 (2018-06-13) * Added support for theme color on Android * Fixed #796: Rendering of nested tabbed code blocks mkdocs-material-2.8.0 (2018-06-10) * Added support for grouping code blocks with tabs * Added Material and FontAwesome icon fonts to distribution files (GDPR) * Added note on compliance with GDPR * Added Slovak translations * Fixed #790: Prefixed id attributes with "__" to avoid name clashes mkdocs-material-2.7.3 (2018-04-26) * Added Finnish translations mkdocs-material-2.7.2 (2018-04-09) * Fixed rendering issue for details on Edge mkdocs-material-2.7.1 (2018-03-21) * Added Galician translations * Fixed #730: Scroll chasing error on home page if Disqus is enabled * Fixed #736: Reset drawer and search upon back button invocation mkdocs-material-2.7.0 (2018-03-06) * Added ability to set absolute URL for logo * Added Hebrew translations mkdocs-material-2.6.6 (2018-02-22) * Added preconnect for Google Fonts for faster loading * Fixed #710: With tabs sidebar disappears if JavaScript is not available mkdocs-material-2.6.5 (2018-02-22) * Reverted --dev-addr flag removal from Dockerfile mkdocs-material-2.6.4 (2018-02-21) * Added Catalan translations * Fixed incorrect margins for buttons in Firefox and Safari * Replaced package manager yarn with npm 5.6 * Reverted GitHub stars rounding method * Removed --dev-addr flag from Dockerfile for Windows compatibility mkdocs-material-2.6.3 (2018-02-18) * Added Vietnamese translations mkdocs-material-2.6.2 (2018-02-12) * Added Arabic translations * Fixed incorrect rounding of amount of GitHub stars * Fixed double-layered borders for tables mkdocs-material-2.6.1 (2018-02-11) * Added ability to override Disqus integration using metadata * Fixed #690: Duplicate slashes in source file URLs * Fixed #696: Active page highlight not working with default palette * Adjusted German translations mkdocs-material-2.6.0 (2018-02-02) * Moved default search configuration to default translation (English) * Added support to automatically set text direction from translation * Added support to disable search stop word filter in translation * Added support to disable search trimmer in translation * Added Persian translations * Fixed support for Polish search * Fixed disappearing GitHub, GitLab and Bitbucket repository icons mkdocs-material-2.5.5 (2018-01-31) * Added Hungarian translations mkdocs-material-2.5.4 (2018-01-29) * Fixed #683: gh-deploy fails inside Docker mkdocs-material-2.5.3 (2018-01-25) * Added Ukrainian translations mkdocs-material-2.5.2 (2018-01-22) * Added default search language mappings for all localizations * Fixed #673: Error loading non-existent search language * Fixed #675: Uncaught reference error when search plugin disabled mkdocs-material-2.5.1 (2018-01-20) * Fixed permalink for main headline * Improved missing translation handling with English as a fallback * Improved accessibility with skip-to-content link mkdocs-material-2.5.0 (2018-01-13) * Added support for right-to-left languages mkdocs-material-2.4.0 (2018-01-11) * Added focus state for clipboard buttons * Fixed #400: Search bar steals tab focus * Fixed search not closing on ENTER when result is selected * Fixed search not closing when losing focus due to TAB * Fixed collapsed navigation links getting focus * Fixed outline being cut off on TAB focus of navigation links * Fixed bug with first search result navigation being ignored * Removed search result navigation via TAB (use UP and DOWN) * Removed outline resets for links * Improved general tabbing behavior on desktop mkdocs-material-2.3.0 (2018-01-09) * Added example (synonym: snippet) style for admonitions * Added synonym abstract for summary style for admonitions mkdocs-material-2.2.6 (2017-12-27) * Added Turkish translations * Fixed unclickable area below header in case JavaScript is not available mkdocs-material-2.2.5 (2017-12-18) * Fixed #639: Broken default favicon mkdocs-material-2.2.4 (2017-12-18) * Fixed #638: Build breaks with Jinja < 2.9 mkdocs-material-2.2.3 (2017-12-13) * Fixed #630: Admonition sets padding on any last child * Adjusted Chinese (Traditional) translations mkdocs-material-2.2.2 (2017-12-08) * Added Dutch translations * Adjusted targeted link and footnote offsets * Simplified admonition styles and fixed padding bug mkdocs-material-2.2.1 (2017-12-02) * Fixed #616: Minor styling error with title-only admonitions * Removed border for table of contents and improved spacing mkdocs-material-2.2.0 (2017-11-22) * Added support for hero teaser * Added Portuguese translations * Fixed #586: Footnote backref target offset regression * Fixed #605: Search stemmers not correctly loaded mkdocs-material-2.1.1 (2017-11-21) * Replaced deprecated babel-preset-es2015 with babel-preset-env * Refactored Gulp build pipeline with Webpack * Removed right border on sidebars * Fixed broken color transition on header mkdocs-material-2.1.0 (2017-11-19) * Added support for white as a primary color * Added support for sliding site name and title * Fixed redundant clipboard button when using line numbers on code blocks * Improved header appearance by making it taller * Improved tabs appearance * Improved CSS customizability by leveraging inheritance * Removed scroll shadows via background-attachment * Removed breadcrumbs from header mkdocs-material-2.0.4 (2017-11-05) * Fixed details not opening with footnote reference mkdocs-material-2.0.3 (2017-11-05) * Added Japanese translations * Fixed #540: Jumping to anchor inside details doesn't open it * Fixed active link colors in footer mkdocs-material-2.0.2 (2017-11-01) * Added Russian translations * Fixed #542: Horizontal scrollbar between 1220px and 1234px * Fixed #553: Metadata values only rendering first character * Fixed #558: Flash of unstyled content * Fixed favicon regression caused by deprecation upstream mkdocs-material-2.0.1 (2017-10-31) * Fixed error when initializing search * Fixed styles for link to edit the current page * Fixed styles on nested admonition in details mkdocs-material-2.0.0 (2017-10-31) * Added support for MkDocs 0.17.1 theme configuration options * Added support for easier configuration of search tokenizer * Added support to disable search * Added Korean translations * Removed support for MkDocs 0.16.x [BREAKING] mkdocs-material-1.12.2 (2017-10-26) * Added Italian, Norwegian, French and Chinese translations mkdocs-material-1.12.1 (2017-10-22) * Added Polish, Swedish and Spanish translations * Improved downward compatibility with custom partials * Temporarily pinned MkDocs version within Docker image to 0.16.3 * Fixed #519: Missing theme configuration file mkdocs-material-1.12.0 (2017-10-20) * Added support for setting language(s) via mkdocs.yml * Added support for default localization * Added German and Danish translations * Fixed #374: Search bar misalignment on big screens mkdocs-material-1.11.0 (2017-10-19) * Added localization to clipboard * Refactored localization logic mkdocs-material-1.10.4 (2017-10-18) * Improved print styles of code blocks * Improved search UX (don't close on enter if no selection) * Fixed #495: Vertical scrollbar on short pages mkdocs-material-1.10.3 (2017-10-11) * Fixed #484: Vertical scrollbar on some MathJax formulas * Fixed #483: Footnote backref target offset regression mkdocs-material-1.10.2 (2017-10-06) * Fixed #468: Sidebar shows scrollbar if content is shorter (in Safari) mkdocs-material-1.10.1 (2017-09-14) * Fixed #455: Bold code blocks rendered with normal font weight mkdocs-material-1.10.0 (2017-09-01) * Added support to make logo default icon configurable * Fixed uninitialized overflow scrolling on main pane for iOS * Fixed error in mobile navigation in case JavaScript is not available * Fixed incorrect color transition for nested panes in mobile navigation * Improved checkbox styles for Tasklist from PyMdown Extension package mkdocs-material-1.9.0 (2017-08-29) * Added info (synonym: todo) style for admonitions * Added question (synonym: help, faq) style for admonitions * Added support for Details from PyMdown Extensions package * Improved admonition styles to match details * Improved styles for social links in footer * Replaced ligatures with Unicode code points to avoid broken layout * Upgraded PyMdown Extensions package dependency to >= 3.4 mkdocs-material-1.8.1 (2017-08-07) * Fixed #421: Missing pagination for GitHub API mkdocs-material-1.8.0 (2017-08-02) * Added support for lazy-loading of search results for better performance * Added support for customization of search tokenizer/separator * Fixed #424: Search doesn't handle capital letters anymore * Fixed #419: Search doesn't work on whole words mkdocs-material-1.7.5 (2017-07-25) * Fixed #398: Forms broken due to search shortcuts * Improved search overall user experience * Improved search matching and highlighting * Improved search accessibility mkdocs-material-1.7.4 (2017-06-21) * Fixed functional link colors in table of contents for active palette * Fixed #368: Compatibility issues with IE11 mkdocs-material-1.7.3 (2017-06-07) * Fixed error when setting language to Japanese for site search mkdocs-material-1.7.2 (2017-06-06) * Fixed offset of search box when repo_url is not set * Fixed non-disappearing tooltip mkdocs-material-1.7.1 (2017-06-01) * Fixed wrong z-index order of header, overlay and drawer * Fixed wrong offset of targeted footnote back references mkdocs-material-1.7.0 (2017-06-01) * Added "copy to clipboard" buttons to code blocks * Added support for multilingual site search * Fixed search term highlighting for non-latin languages mkdocs-material-1.6.4 (2017-05-24) * Fixed #337: JavaScript error for GitHub organization URLs mkdocs-material-1.6.3 (2017-05-16) * Fixed #329: Broken source stats for private or unknown GitHub repos mkdocs-material-1.6.2 (2017-05-15) * Fixed #316: Fatal error for git clone on Windows * Fixed #320: Chrome 58 creates double underline for abbr tags * Fixed #323: Ligatures rendered inside code blocks * Fixed miscalculated sidebar height due to missing margin collapse * Changed deprecated MathJax CDN to Cloudflare mkdocs-material-1.6.1 (2017-04-23) * Fixed following of active/focused element if search input is focused * Fixed layer order of search component elements mkdocs-material-1.6.0 (2017-04-22) * Added build test for Docker image on Travis * Added search overlay for better user experience (focus) * Added language from localizations to html tag * Fixed #270: Source links broken for absolute URLs * Fixed missing top spacing for first targeted element in content * Fixed too small footnote divider when using larger font sizes mkdocs-material-1.5.5 (2017-04-20) * Fixed #282: Browser search (META+F) is hijacked mkdocs-material-1.5.4 (2017-04-08) * Fixed broken highlighting for two or more search terms * Fixed missing search results when only a h1 is present * Fixed unresponsive overlay on Android mkdocs-material-1.5.3 (2017-04-07) * Fixed deprecated calls for template variables * Fixed wrong palette color for focused search result * Fixed JavaScript errors on 404 page * Fixed missing top spacing on 404 page * Fixed missing right spacing on overflow of source container mkdocs-material-1.5.2 (2017-04-05) * Added requirements as explicit dependencies in setup.py * Fixed non-synchronized transitions in search form mkdocs-material-1.5.1 (2017-03-30) * Fixed rendering and offset of targeted footnotes * Fixed #238: Link on logo is not set to site_url mkdocs-material-1.5.0 (2017-03-24) * Added support for localization of search placeholder * Added keyboard events for quick access of search * Added keyboard events for search control * Added opacity on hover for search buttons * Added git hook to skip CI build on non-src changes * Fixed non-resetting search placeholder when input is cleared * Fixed error for unescaped parentheses in search term * Fixed #229: Button to clear search missing * Fixed #231: Escape key doesn't exit search * Removed old-style figures from font feature settings mkdocs-material-1.4.1 (2017-03-16) * Fixed invalid destructuring attempt on NodeList (in Safari, Edge, IE) mkdocs-material-1.4.0 (2017-03-16) * Added support for grouping searched sections by documents * Added support for highlighting of search terms * Added support for localization of search results * Fixed #216: table of contents icon doesn't show if h1 is not present * Reworked style and layout of search results for better usability mkdocs-material-1.3.0 (2017-03-11) * Added support for page-specific title and description using metadata * Added support for linking source files to documentation * Fixed jitter and offset of sidebar when zooming browser * Fixed incorrectly initialized tablet sidebar height * Fixed regression for #1: GitHub stars break if the repo_url ends with a '/' * Fixed undesired white line below copyright footer due to base font scaling * Fixed issue with whitespace in path for scripts * Fixed #205: support non-fixed (static) header * Refactored footnote references for better visibility * Reduced repaints to a minimum for non-tabs configuration * Reduced contrast of edit button (slightly) mkdocs-material-1.2.0 (2017-03-03) * Added quote (synonym: cite) style for admonitions * Added help message to build pipeline * Fixed wrong navigation link colors when applying palette * Fixed #197: Link missing in tabs navigation on deeply nested items * Removed unnecessary dev dependencies mkdocs-material-1.1.1 (2017-02-26) * Fixed incorrectly displayed nested lists when using tabs mkdocs-material-1.1.0 (2017-02-26) * Added tabs navigation feature (optional) * Added Disqus integration (optional) * Added a high resolution Favicon with the new logo * Added static type checking using Facebook's Flow * Fixed #173: Dictionary elements have no bottom spacing * Fixed #175: Tables cannot be set to 100% width * Fixed race conditions in build related to asset revisioning * Fixed accidentally re-introduced Permalink on top-level headline * Fixed alignment of logo in drawer on IE11 * Refactored styles related to tables * Refactored and automated Docker build and PyPI release * Refactored build scripts mkdocs-material-1.0.5 (2017-02-18) * Fixed #153: Sidebar flows out of constrained area in Chrome 56 * Fixed #159: Footer jitter due to JavaScript if content is short mkdocs-material-1.0.4 (2017-02-16) * Fixed #142: Documentation build errors if h1 is defined as raw HTML * Fixed #164: PyPI release does not build and install * Fixed offsets of targeted headlines * Increased sidebar font size by 0.12rem mkdocs-material-1.0.3 (2017-01-22) * Fixed #117: Table of contents items don't blur on fast scrolling * Refactored sidebar positioning logic * Further reduction of repaints mkdocs-material-1.0.2 (2017-01-15) * Fixed #108: Horizontal scrollbar in content area mkdocs-material-1.0.1 (2017-01-14) * Fixed massive repaints happening when scrolling * Fixed footer back reference positions in case of overflow * Fixed header logo from showing when the menu icon is rendered * Changed scrollbar behavior to only show when content overflows mkdocs-material-1.0.0 (2017-01-13) * Introduced Webpack for more sophisticated JavaScript bundling * Introduced ESLint and Stylelint for code style checks * Introduced more accurate Material Design colors and shadows * Introduced modular scales for harmonic font sizing * Introduced git-hooks for better development workflow * Rewrite of CSS using the BEM methodology and SassDoc guidelines * Rewrite of JavaScript using ES6 and Babel as a transpiler * Rewrite of Admonition, Permalinks and CodeHilite integration * Rewrite of the complete typographical system * Rewrite of Gulp asset pipeline in ES6 and separation of tasks * Removed Bower as a dependency in favor of NPM * Removed custom icon build in favor of the Material Design icon set * Removed _blank targets on links due to vulnerability: http://bit.ly/1Mk2Rtw * Removed unversioned assets from build directory * Restructured templates into base templates and partials * Added build and watch scripts in package.json * Added support for Metadata and Footnotes Markdown extensions * Added support for PyMdown Extensions package * Added support for collapsible sections in navigation * Added support for separate table of contents * Added support for better accessibility through REM-based layout * Added icons for GitHub, GitLab and BitBucket integrations * Added more detailed documentation on specimen, extensions etc. * Added a 404.html error page for deployment on GitHub Pages * Fixed live reload chain in watch mode when saving a template * Fixed variable references to work with MkDocs 0.16 mkdocs-material-0.2.4 (2016-06-26) * Fixed improperly set default favicon * Fixed #33: Protocol relative URL for webfonts doesn't work with file:// * Fixed #34: IE11 on Windows 7 doesn't honor max-width on main tag * Fixed #35: Add styling for blockquotes mkdocs-material-0.2.3 (2016-05-16) * Fixed #25: Highlight inline fenced blocks * Fixed #26: Better highlighting for keystrokes * Fixed #30: Suboptimal syntax highlighting for PHP mkdocs-material-0.2.2 (2016-03-20) * Fixed #15: Document Pygments dependency for CodeHilite * Fixed #16: Favicon could not be set through mkdocs.yml * Fixed #17: Put version into own container for styling * Fixed #20: Fix rounded borders for tables mkdocs-material-0.2.1 (2016-03-12) * Fixed #10: Invisible header after closing search bar with ESC key * Fixed #13: Table cells don't wrap * Fixed empty list in table of contents when no headline is defined * Corrected wrong path for static asset monitoring in Gulpfile.js * Set up tracking of site search for Google Analytics mkdocs-material-0.2.0 (2016-02-24) * Fixed #6: Include multiple color palettes via mkdocs.yml * Fixed #7: Better colors for links inside admonition notes and warnings * Fixed #9: Text for prev/next footer navigation should be customizable * Refactored templates (replaced if/else with modifiers where possible) mkdocs-material-0.1.3 (2016-02-21) * Fixed #3: Ordered lists within an unordered list have ::before content * Fixed #4: Click on Logo/Title without Github-Repository: "None" * Fixed #5: Page without headlines renders empty list in table of contents * Moved Modernizr to top to ensure basic usability in IE8 mkdocs-material-0.1.2 (2016-02-16) * Fixed styles for deep navigational hierarchies * Fixed webfont delivery problem when hosted in subdirectories * Fixed print styles in mobile/tablet configuration * Added option to configure fonts in mkdocs.yml with fallbacks * Changed styles for admonition notes and warnings * Set download link to latest version if available * Set up tracking of outgoing links and actions for Google Analytics mkdocs-material-0.1.1 (2016-02-11) * Fixed #1: GitHub stars don't work if the repo_url ends with a '/' * Updated NPM and Bower dependencies to most recent versions * Changed footer/copyright link to Material theme to GitHub pages * Made MkDocs building/serving in build process optional * Set up continuous integration with Travis mkdocs-material-0.1.0 (2016-02-09) * Initial release mkdocs-material-9.6.4/CODE_OF_CONDUCT.md000066400000000000000000000062401475306445600174250ustar00rootroot00000000000000# Contributor Covenant Code of Conduct ## Our Pledge In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. ## Our Standards Examples of behavior that contributes to creating a positive environment include: * Using welcoming and inclusive language * Being respectful of differing viewpoints and experiences * Gracefully accepting constructive criticism * Focusing on what is best for our community * Showing empathy towards other community members Examples of unacceptable behavior by participants include: * The use of sexualized language or imagery and unwelcome sexual attention or advances * Trolling, insulting/derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or electronic address, without explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ## Our Responsibilities Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. ## Scope This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team privately at hello@squidfunk.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] [homepage]: http://contributor-covenant.org [version]: http://contributor-covenant.org/version/1/4/ mkdocs-material-9.6.4/CONTRIBUTING.md000066400000000000000000000045151475306445600170620ustar00rootroot00000000000000# Contributing Material for MkDocs is an actively maintained and constantly improved project that serves a diverse user base with varying backgrounds and needs. In order to effectively address the needs of all our users, evaluate change requests, and fix bugs, we maintainers need to put in a lot of work. We have devoted significant effort to creating better templates for our issue tracker, optimizing the processes for our users to report bugs, request features or changes, contribute to the project, or exchange with our community. Given the wealth of valuable knowledge contained in numerous issues and discussions, we consider our [issue tracker] and [discussion board] to serve as a crucial __knowledge base__ that is an important addition to our [documentation] and brings value to both new and experienced users of Material for MkDocs. [discussion board]: https://github.com/squidfunk/mkdocs-material/discussions [issue tracker]: https://github.com/squidfunk/mkdocs-material/issues [documentation]: https://squidfunk.github.io/mkdocs-material/ ## How to contribute ### Creating an issue - #### [Report a bug] __Something is not working?__ Report a bug in Material for MkDocs by creating an issue with a reproduction - #### [Report a docs issue] __Missing information in our docs?__ Report missing information or potential inconsistencies in our documentation - #### [Request a change] __Want to submit an idea?__ Propose a change, feature request, or suggest an improvement - #### [Ask a question] __Have a question or need help?__ Ask a question on our [discussion board] and get in touch with our community ### Contributing - #### [Add a translation] __Missing support for your language?__ Add missing translations for a new or already supported language - #### [Create a pull request] __Want to create a pull request?__ Learn how to create a comprehensive and useful pull request (PR)s [Report a bug]: docs/contributing/reporting-a-bug.md [Report a docs issue]: docs/contributing/reporting-a-docs-issue.md [Request a change]: docs/contributing/requesting-a-change.md [Ask a question]: https://github.com/squidfunk/mkdocs-material/discussions [Add a translation]: docs/contributing/adding-translations [Create a pull request]: docs/contributing/making-a-pull-request.md mkdocs-material-9.6.4/Dockerfile000066400000000000000000000056141475306445600166240ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. FROM python:3.11-alpine3.19 AS build # Build-time flags ARG WITH_PLUGINS=true # Environment variables ENV PACKAGES=/usr/local/lib/python3.11/site-packages ENV PYTHONDONTWRITEBYTECODE=1 # Set build directory WORKDIR /tmp # Copy files necessary for build COPY material material COPY package.json package.json COPY README.md README.md COPY *requirements.txt ./ COPY pyproject.toml pyproject.toml # Perform build and cleanup artifacts and caches RUN \ apk upgrade --update-cache -a \ && \ apk add --no-cache \ cairo \ freetype-dev \ git \ git-fast-import \ jpeg-dev \ openssh \ tini \ zlib-dev \ && \ apk add --no-cache --virtual .build \ gcc \ g++ \ libffi-dev \ musl-dev \ && \ pip install --no-cache-dir --upgrade pip \ && \ pip install --no-cache-dir . \ && \ if [ "${WITH_PLUGINS}" = "true" ]; then \ pip install --no-cache-dir \ mkdocs-material[recommended] \ mkdocs-material[imaging]; \ fi \ && \ if [ -e user-requirements.txt ]; then \ pip install -U -r user-requirements.txt; \ fi \ && \ apk del .build \ && \ for theme in mkdocs readthedocs; do \ rm -rf ${PACKAGES}/mkdocs/themes/$theme; \ ln -s \ ${PACKAGES}/material/templates \ ${PACKAGES}/mkdocs/themes/$theme; \ done \ && \ rm -rf /tmp/* /root/.cache \ && \ find ${PACKAGES} \ -type f \ -path "*/__pycache__/*" \ -exec rm -f {} \; \ && \ git config --system --add safe.directory /docs \ && \ git config --system --add safe.directory /site # From empty image FROM scratch # Copy all from build COPY --from=build / / # Set working directory WORKDIR /docs # Expose MkDocs development server port EXPOSE 8000 # Start development server by default ENTRYPOINT ["/sbin/tini", "--", "mkdocs"] CMD ["serve", "--dev-addr=0.0.0.0:8000"] mkdocs-material-9.6.4/LICENSE000066400000000000000000000021051475306445600156270ustar00rootroot00000000000000Copyright (c) 2016-2025 Martin Donath Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. mkdocs-material-9.6.4/README.md000066400000000000000000000420521475306445600161060ustar00rootroot00000000000000

Material for MkDocs

A powerful documentation framework on top of MkDocs

Build Downloads Python Package Index Docker Pulls Sponsors

Write your documentation in Markdown and create a professional static site for your Open Source or commercial project in minutes – searchable, customizable, more than 60 languages, for all devices.

Check out the demo – squidfunk.github.io/mkdocs-material.

 

Silver sponsors

 

Bronze sponsors

 

## Everything you would expect ### It's just Markdown Focus on the content of your documentation and create a professional static site in minutes. No need to know HTML, CSS or JavaScript – let Material for MkDocs do the heavy lifting for you. ### Works on all devices Serve your documentation with confidence – Material for MkDocs automatically adapts to perfectly fit the available screen estate, no matter the type or size of the viewing device. Desktop. Tablet. Mobile. All great. ### Made to measure Make it yours – change the colors, fonts, language, icons, logo, and more with a few lines of configuration. Material for MkDocs can be easily extended and provides many options to alter appearance and behavior. ### Fast and lightweight Don't let your users wait – get incredible value with a small footprint by using one of the fastest themes available with excellent performance, yielding optimal search engine rankings and happy users that return. ### Maintain ownership Own your documentation's complete sources and outputs, guaranteeing both integrity and security – no need to entrust the backbone of your product knowledge to third-party platforms. Retain full control. ### Open Source You're in good company – choose a mature and actively maintained solution built with state-of-the-art Open Source technologies, trusted by more than 50,000 individuals and organizations. Licensed under MIT. ## Quick start Material for MkDocs can be installed with `pip`: ``` sh pip install mkdocs-material ``` Add the following lines to `mkdocs.yml`: ``` yaml theme: name: material ``` For detailed installation instructions, configuration options, and a demo, visit [squidfunk.github.io/mkdocs-material][Material for MkDocs] [Material for MkDocs]: https://squidfunk.github.io/mkdocs-material/ ## Trusted by ... ### ... industry leaders [ArXiv](https://info.arxiv.org), [Atlassian](https://atlassian.github.io/data-center-helm-charts/), [AWS](https://aws.github.io/copilot-cli/), [Bloomberg](https://bloomberg.github.io/selekt/), [CERN](http://abpcomputing.web.cern.ch/), [CloudFlare](https://cloudflare.github.io/itty-router-openapi/), [Datadog](https://datadoghq.dev/integrations-core/), [Google](https://google.github.io/accompanist/), [Harvard](https://informatics.fas.harvard.edu/), [Hewlett Packard](https://hewlettpackard.github.io/squest/), [HSBC](https://hsbc.github.io/pyratings/), [ING](https://ing-bank.github.io/baker/), [Intel](https://open-amt-cloud-toolkit.github.io/docs/), [JetBrains](https://jetbrains.github.io/projector-client/mkdocs/), [LinkedIn](https://linkedin.github.io/school-of-sre/), [Microsoft](https://microsoft.github.io/code-with-engineering-playbook/), [Mozilla](https://mozillafoundation.github.io/engineering-handbook/), [Netflix](https://netflix.github.io/titus/), [Red Hat](https://ansible.readthedocs.io/projects/lint/), [Roboflow](https://inference.roboflow.com/), [Salesforce](https://policy-sentry.readthedocs.io/), [SIEMENS](https://opensource.siemens.com/), [Slack](https://slackhq.github.io/circuit/), [Square](https://square.github.io/okhttp/), [Uber](https://uber-go.github.io/fx/), [Zalando](https://opensource.zalando.com/skipper/) ### ... and successful Open Source projects [Amp](https://amp.rs/docs/), [Arduino](https://arduino.github.io/arduino-cli/), [Auto-GPT](https://docs.agpt.co/), [AutoKeras](https://autokeras.com/), [BFE](https://www.bfe-networks.net/), [CentOS](https://docs.infra.centos.org/), [Crystal](https://crystal-lang.org/reference/), [eBPF](https://ebpf-go.dev/), [Electron](https://www.electron.build/), [FastAPI](https://fastapi.tiangolo.com/), [FlatBuffers](https://flatbuffers.dev/), [Freqtrade](https://www.freqtrade.io/en/stable/), [GoReleaser](https://goreleaser.com/), [GraphRAG](https://microsoft.github.io/graphrag/), [HedgeDoc](https://docs.hedgedoc.org/), [Hummingbot](https://hummingbot.org/), [Knative](https://knative.dev/docs/), [Kubernetes](https://kops.sigs.k8s.io/), [kSQL](https://docs.ksqldb.io/), [LeakCanary](https://square.github.io/leakcanary/), [LlamaIndex](https://docs.llamaindex.ai/), [NetBox](https://netboxlabs.com/docs/netbox/en/stable/), [Nokogiri](https://nokogiri.org/), [OpenFaaS](https://docs.openfaas.com/), [OpenSSL](https://docs.openssl.org/), [Orchard Core](https://docs.orchardcore.net/en/latest/), [Percona](https://docs.percona.com/percona-monitoring-and-management/), [Pi-Hole](https://docs.pi-hole.net/), [Polars](https://docs.pola.rs/), [Pydantic](https://pydantic-docs.helpmanual.io/), [PyPI](https://docs.pypi.org/), [Quivr](https://core.quivr.com/), [Renovate](https://docs.renovatebot.com/), [RetroPie](https://retropie.org.uk/docs/), [Ruff](https://docs.astral.sh/ruff/), [Supervision](https://supervision.roboflow.com/latest/), [Textual](https://textual.textualize.io/), [Traefik](https://docs.traefik.io/), [Trivy](https://aquasecurity.github.io/trivy/), [Typer](https://typer.tiangolo.com/), [tinygrad](https://docs.tinygrad.org/), [Ultralytics](https://docs.ultralytics.com/), [UV](https://docs.astral.sh/uv/), [Vapor](https://docs.vapor.codes/), [WebKit](https://docs.webkit.org/), [WTF](https://wtfutil.com/), [ZeroNet](https://zeronet.io/docs/) ## License **MIT License** Copyright (c) 2016-2025 Martin Donath Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. mkdocs-material-9.6.4/docs/000077500000000000000000000000001475306445600155545ustar00rootroot00000000000000mkdocs-material-9.6.4/docs/alternatives.md000066400000000000000000000100531475306445600205760ustar00rootroot00000000000000# Alternatives There are tons of static site generators and themes out there and choosing the right one for your tech stack is a tough decision. If you're unsure if Material for MkDocs is the right solution for you, this section should help you evaluate alternative solutions. ## Docusaurus [Docusaurus] by Facebook is a very popular documentation generator and a good choice if you or your company are already using [React] to build your site. It will generate a [single page application] which is fundamentally different from the site Material for MkDocs generates for you. __Advantages__ - Very powerful, customizable and extendable - Provides many components that aid in technical writing - Large and rich ecosystem, backed by Facebook __Challenges__ - High learning curve, JavaScript knowledge mandatory - JavaScript ecosystem is very volatile, rather high maintenance - More time needed to get up and running While [Docusaurus] is one of the best choices when it comes to documentation sites that output a single page application, there are many more solutions, including [Docz], [Gatsby], [Vuepress] and [Docsify] that approach this problem similarly. [Docusaurus]: https://docusaurus.io/ [React]: https://reactjs.org/ [single page application]: https://en.wikipedia.org/wiki/Single-page_application [Docz]: https://www.docz.site/ [Gatsby]: https://www.gatsbyjs.com/ [VuePress]: https://vuepress.vuejs.org/ [Docsify]: https://docsify.js.org/ ## Jekyll [Jekyll] is probably one of the most mature and widespread static site generators and is written in [Ruby]. It is not specifically geared towards technical project documentation and has many themes to choose from, which can be challenging. __Advantages__ - Battle-tested, rich ecosystem, many themes to choose from - Brings great capabilities for blogging (permalinks, tags, etc.) - Generates a SEO-friendly site, similar to Material for MkDocs __Challenges__ - Not specifically geared towards technical project documentation - Limited Markdown capabilities, not as advanced as Python Markdown - More time needed to get up and running [Jekyll]: https://jekyllrb.com/ [Ruby]: https://www.ruby-lang.org/de/ ## Sphinx [Sphinx] is an alternative static site generator specifically geared towards generating reference documentation, offering powerful capabilities that are lacking in MkDocs. It uses [reStructured text], a format similar to Markdown, which some users find harder to use. __Advantages__ - Very powerful, customizable and extendable - Generates reference documentation from [Python docstrings] - Large and rich ecosystem, used by many Python projects __Challenges__ - High learning curve, [reStructured text] syntax might be challenging - Search is less powerful than the one provided by MkDocs - More time needed to get up and running If you're considering using Sphinx because you need to generate reference documentation, you should give [mkdocstrings] a try – an actively maintained and popular framework building on top of MkDocs, implementing Sphinx-like functionality. [Sphinx]: https://www.sphinx-doc.org/ [reStructured text]: https://en.wikipedia.org/wiki/ReStructuredText [Python docstrings]: https://www.python.org/dev/peps/pep-0257/ [mkdocstrings]: https://github.com/mkdocstrings/mkdocstrings ## GitBook [GitBook] offers a hosted documentation solution that generates a beautiful and functional site from Markdown files in your GitHub repository. However, it was once Open Source, but turned into a closed source solution some time ago. __Advantages__ - Hosted solution, minimal technical knowledge required - Custom domains, authentication and other enterprise features - Great collaboration features for teams __Challenges__ - Closed source, not free for proprietary projects - Limited Markdown capabilities, not as advanced as Python Markdown - Many Open Source projects moved away from GitBook Many users switched from [GitBook] to Material for MkDocs, as they want to keep control and ownership of their documentation, favoring an Open Source solution. [GitBook]: https://www.gitbook.com/ mkdocs-material-9.6.4/docs/assets/000077500000000000000000000000001475306445600170565ustar00rootroot00000000000000mkdocs-material-9.6.4/docs/assets/favicon.png000066400000000000000000000202551475306445600212150ustar00rootroot00000000000000PNG  IHDRИgAMA asRGB pHYs.#.#x?veiTXtXML:com.adobe.xmp Logo-2 "PLTEGpL 0EX%(D$&>H^2!!2%'AKc?O?QEZLdG\.5h% ?O=L'*L /KcKcJbE[G\6AMdG]3N,1\J`3<{PhAW;ARCW$$;).SG]&(C(-Q/6i')FI`JaBV,2^)%'@>NKc=M9FBS"#65ALcCT!!0#$8G\DX7D-3aFY.5gKbfn%)E^dAQ &*H6@8Dju/5ggnlw4>{fojuafdjgrǘel`gnzhqfkPUz^a`e[g޾WaT[6:aK\GVy8=hJY\jAI:Au>EkAPL\BHxљ #GpL$5wtRNS,-L)@<&d`7Έǝ`GY祓O:PIDATxWMH[Qt".F]-MY &YhVYą@ "I4$6&.p9 YJBqK+TSZfQ.[ wrNŽ==}czgΞk7nYpZOgG۷3ӽS[3DBέ[KK;;KVEKD}gpITTK=M_1e9l\qw{ZnkKtx!Ė˜'̍Z][,/%Im.X ךE`o,(k`m@ַ#x#C'.$$o}R{хQUe6^^91Z%^扨ix԰QS(:UIQfDuAgUb01rbt"5B!Mnb;hg~ B#*wTb$/,L6689^wN1^*s~BW/[[ׂes.#N\GϤToԷO*gRd9Z,$eoJ%&oJ$f.~. %=z0$=fM1<61#ld 5VF2-PU=]X;,jDxt|2644$l("_燌 uݯU+Z[/1.|9mWHPTKh=ub.sb,m8^G"%* t~ Q@P%#އ~[9wHbrs)J)Cqs"%U95"rnv=baްb7ӭa2&M/w}]ϭ%&w|ڵ--rll.\sQȸ\[H4rq"a8jcAnf"6[lYDeŶrۮ0r)Cc(<9yAXLoKQfQS0 E.ۑ@U(l *G5٦&\m^ܙw`QgGU&aJ&d`A@eEC%"~HQs$!w/r=mL<7b#AaD$ɘ%q;\iqCCpP.kTprsPA_! 올ĵD#iA&ij+ko}_7vA!>WoE;4I8lag8m>{nJ`'T0ZR 8,K kR  Bx~tA. U;-R <@rWUOAe}(XM&WVa5Y8I ~śr%UnYH$7&?>#Q=ѫ%'c48 •W1sxp5\%)$aÅXv#!cbj2wieJkNcb|,6Z db1%޽GIp66G%ɭDN R]9 qaC/htYG GLY'*#QdDS23/Ty\uR 9==4n59W>41?əś8>5XY6G͵~?~hՎLjFzqѩU_U Ž\wGWDä- xz@нךT9؎NdgLc{GR*WQ.+CЉIȦoJ*U 7f7ѥ4ΡlRΩJ,9K%Bt>)%fsssi\(A/+0XN&ZB#U%l'35d R9k#!>N 8҂l' jhN޸.y<"`D_ߊSVxYA͛5}+u!{'!E3}?BPHtVV؅!AOCͿh&&ɀwb[pN#CC>}nz^ &''CdBz3r!d;B AR(dz<A+2zǫSBli7l6ˋgA3ѰoQ.?~`Z]#N6WECZz./>rOƧW;;;;K`ffqF4c; 10Z0t/> :zW mvwj )rujւ Up XC3n?QS592E)%M82 :JlXӣE7gtvvJorPߦQd7 =-Xʭ&m B/"v@G>ʝ DEF"āPI$$1dQ:[APX-RN.r$9g^i&'a4hcMGxLzsSZ7'݄O@ xݴ6B#k7A$22nڋTB'=}E'jq¦FI~999o$m~ֵqӎțo!0c^3i-=?n7ZF3AT`hc^O+7=y=#9ߴ  č&HrohIhz#ۮ=wٛ y*e4w:!7scQoZ1[gNM0vxe& 4Ic_wrBq8lui,H$(Év< 2<p0V0!`x=Х!C$t!ɉ('7.%A4c "7ץqV$`,NBÿC~M;z$rfŒ!ԄvDCO %Y$,;B× LF db[dg: 0BE|?0'<^XvFGHЮ .,krujFq"4.! dRLg}i!ʂˠ}'K/FZo_(}͉}#W:wjqqaSc][8X|*q{(:${h~!͛v|E.Z ;/]-3-z}<^?Eu[~WkC49ʌ,*ޔ?6y4)}izF&33gLxc/Vb͌Kᄐ⦥Nj7{ܴgieu`eFάjޔ.SVv޴&!g~+6C,AA Jާ^vܴ|i!tǪa ).!gc~"Pl5c16rJޭVR\y䦝 ύcR«:*l/JϘ+0NrHj)Bc-91=c#B(1VJW:%HG0Lˆ9eN[ 6F[e,ʪȘDT>)j21fƟ}~h4\]*vyLFx4hٍGHۤ V^ni.#+[mh91`Q$CSwJc1*5(kDwq.X)hR:!T,Dwv, P@5d'C>5@db&|I-F?mtnZ;THJʡbz"5vjڻX[1E"HpQעt hQӊX;@Y$ƎBI=AE"HMBa UB6q1[; 6ӺG{Ɂη{}{{=aE@ ,+{BÈt"R'p>F$3zo}%-k|ti8 [c"uGX3ak'ָp9!AAx%nڇ][s 0Q fՠZ_OLh|2[Ӊ3I xkd}~  n(9ޟdo3x<8jǃ%C8`Ff 3Af u`0# bdUH(0sH64嬯IEㄈg@K1W7Ko5XF2@@эH*g@$ :K"Q^ ZW?pAW+l pUဉ |?@% #G(vkY@jՏT~HRQZ*0^ ^%4I Re6(iЕ}2.JR.~i4) iEui~wcU~C^P\ieAc8kiYt.g #wr =$B| 9ҹ?\fɅ4R i2.bƟ3EefwZs}z|v&\8R6 M)%Tr2,=d!a/.ڦ0 |OQYpXpX(X0b&Eɲ|#plX$VQw@Iťy-Ȇ,0ve- :In}C?'lP $Tb6&IƋ%apJdP*IfFu^}#ү ՝͍H##uMhRw>`v!d T30bSS.w͜1ڕ${w5+H{j)բsPZ J!j %EۤƮT.åxdW)4w jH) %ubz_>b=Lj\y9ֽ^gC 1IFJ 2.>˨7h ad#\&iT^5pl)čk k !JiٍMisT⪤!Yir4F?K˰P&# >!u*=Sy]WM RsӋ;r[ӭР_)p¹JHP*):.Q]RM&c;*!Nv94,JM^"FPa8Wy&[B<ٰNdbo0dѨ嵟u3SN1Ԛ+* Fb :#t0FxQm[^<ꉅ7A?m~JGT?}mn [W{Wq t2TWzb6{oUqԶo?~ā#2ZGIENDB`mkdocs-material-9.6.4/docs/assets/images/000077500000000000000000000000001475306445600203235ustar00rootroot00000000000000mkdocs-material-9.6.4/docs/assets/images/illustration.png000066400000000000000000006023511475306445600235710ustar00rootroot00000000000000PNG  IHDR{jPLTEGpL,R"J; 2 +S->H"f)==T/> 'tjAl?T8N,:yrsVl?~ٽ߹fu.>뢳ۿy謭ᛯw<ᑘ0\FmUz;\CAja~As߷JpԲ߮7v਽ߤ~=h/m$O:e,[ʰ3W6cי偞$T)f/B4AFmn慛2`6NÕ㇜Xs$a硷pƕ.^׼[pDr/>[T~N]fᘮₙأ‡+\e'ZV⌢޿RT#W;ݙPt%ԜOՑLk 5pdщ4cQ#QN.[\{ UWx웈cVVTuMrm+fLqDp]a{,:k|ҏ޸эPsю^Yz͉ +t^Qz8r54-w|ݻϾ+|Ұ-|%vUu]7gRHh~wMۗ`0Ï:$7eOk2]t[TP;̌Uְ+P*ߞJ׼1:aˡ>$)J)37=V}eΧv/uuD^;]rk-WJʐ"R eTϭ}^*R))#vçzc4 PY6<Y]:3kII{pdRY89yB @\p4 ̓tn"!A1j'7WUqq4c9uB?' CHFfkyv! NSsWFt<%u< rrLstnApF#tqg~{tJf\J? D"aA\mx14U'~I:B~yǛ =T~ `C} N6bAv|;-I4Y#%ipo{G{fڽ;O5jzSp ;fW 4v#[g"ɳDSO,>ɰ o "r6O!xٳ}vtOts~\>6-o3 n_^m>Mc_șUv}y4=xrQ{me_>mHo#dZGApںنU9-494f$S<"mnޤ9;{-$,#/Zwb;ij[]L@OmgF=upxT| '(V] 6M6m(չz<~pOGu8y{d3;))-M>!-}Gc{`Kz-sSU(=0k'7vFFyTtD馕qxVRuӨ{j;=l=w~F7;H^LXP=~=M]oyƁ?cnuim6I޿( vGE3 DQ;A0.]NrzH8FݳXua[*/}Oy$[ Z 5"5FN[6&?z MY@}n%C8O{Ą95ɝSeI)~k:]'2F; Xkņ繕y\zo8uxXv0zQwbe~k]ס*pH :?&"V`p,r-@%ǥ/ & fmY1#,AyG X^y)?K);kP=T*03Ihír;>Ul[7hMY[KTzVs&9=pO*˿k>ۼso|Zo*jAnyMq@LK1 uX0cwNL60*"1 ^O7wnIGw{wN;=>`^CbݹE5Ev,=RJ> ;n1b~ HEA^VJv|8""9!|aIe#ozS S O+Tm0 aYB,("GG!Pk4>}9ߦH*{|Q H;Q2e+ ƅyA,VR= suvM1fuo`whoeG)JGaY^ s6}ڍE ۨezĸл*urr!TY$@`֍Z҇0k6e`krS|v{~'y{uolH8(},Y bA,gm{еw-w~&эߵxSeIuE VJj;lyDsc;'5)Y(  >InL>A @P ʹJA >@>>N@1 1}0uq+mk5ɂ/sx|vL<IJ( 6aTjx' e@R Zʔ\guk[Wv6~?#PH lAZg <=YYYOD6YϜ !Uבu&=hnǼ{N7V.9쩧ߟg}cJ7&(}V5K-7TGW;Q5ϓeyLg! i𰅟A8$ #}'Eo'cAln ~;Hq>7۽N?in\8v `_SS)3&ST42}`!w21csC `iK"[ py7 =QSח='nFqg$#cVV#UΣ=5o`q:wǞ!h 7iZr=褔\'{VώiFZpղR7+y4INڜRX) ?yksvL},!:yYYy\@c DD@O=3駳mV{`|5:L R)5{NJɵ{Fgeziz轷z}~]O]}sR }̈́㦧̷lNVVo3+W~aG_.,;#g1lٗva~4 >9=Z=ׯ );@A2|a7Q؉v0l/a)ĻlLǪ/>x# 1l/0C[<pҏƉ9܉4F3~O4o1{OZr}Ygh|.U^\|NܠMUl퐍Iq+kyKVV~3wes0 Tu|eL tri[vPcV7 ;VޒDž] g+'n8ILǬ5e*l7꫱IA83yyfϱ\my{k~`Y6]%?e}2-)} =jQĈQDX[9C-%;ZOa#u"1gNXc$~(CDt0$<86ֹ Ovs̞ks,C{ay޽{IeNu}ޯ, *4s:Iu_U^܆#mP U؆6&m% S! R(ܸ-b{3{:n v56;{/ iDЇU\Ei}+G܈^[m_V\_26ARtPx6(r6n/('ꤗ$1kWp':eOWٱ^\gZOޒi*$=XסGvӺZmѴ4<,B/IqwYg6  #x$EQbꑛ2C6eڭ9DgD3++ -2#`! ;n1?'}g&G}< 栙g:}r9`σӤX\ÞdޣPEo t+`_÷-L'|G6TP)˩؍#=}Th>ғ7I/~U-Mz$!G1ok"V[Ml铕u0=G# ƙC(̸c8X6  㑤({:XZzL /Q6aeMiu:Ǻscg{GL7:{>}z%QJmD >|Wvĭ&}#++?_21oRPLG}ppH޸'2fůA!Hrq"x >fh7=yr޿O\'y;N=Sݍ5{޽ww -.?>(싟Dk_('G^^7EAч1^dW4i7 ++ OVյa<~'zz.p%8z fS5S/%ֶ/QoG/~,h@3=^9H O=m/.{nq\*t麱g`A,scB{ɫD |R%-gAr `۶LL:5wM1IG,I2O'ké?C@Hn)#谦= v3衛>vtL%iϨl:jڋ;w=X,=}xPe:\G˄I$hMFr[Ebhk+'yrGziD#(?ByȀ*<I`e=-QR_?}o~񩳛F= sFX3C-6Ї3|feݐ۴Z6c}+iu3o%N?++ =~!&1't${Crv)y#BUCpEPxG{)kq}Z>=,'>WguRF޷hA g^R(w'G}*%~&0b1huC7"p-|z"EsO \'B+=m44U5˜}e>Z&̾uGz翆չ#9 ;26{X[iVVtA8QfEOf< x1T6ԹIz&.)Mɏoa!A/"~]ޟ=3v8z{DTiAiAInAG[m10j'fqn]82t$Tg{1Qz@ a;D ذ%ոaLxl"7KB.bTP,>vmnzf؃>~Xyc;eϓ)N-ko){Kם=^>݃L;H^تOXnRQa <ʽ<\+1Z1e ;'(D3HLGn͜CP}㨑P>}>-~{@? {wzwR#]9봿f߳I{j[xp~b#7pras7wp:?eNYy\(/81"CNl]\tskK)♛$II)=m|! =zτQɛ٧{k=j :yӾܜ/ZIPc_A``GoWGG|: )r}B?mƱcG6:}875ݰGQ?udRv5+ʲ%t)ȅ6X`Gy(1ghp}dysKmH$Y=iv$~Ł(V3R&RhPWt 4Qw &fYㄜ#>H 7.L{ӚO3tG{OcC{Xgsu w8o/;P3 y&`m}y%x8E{Lڙ>DYm-{HcC5g=TS2~9V ڨU~1CNG! T.ѥAXeA!Pr}ߔ0%/<3T{};n9|_vhԎGl}Te=nïyN<)I LU$W+KCpG}AEw8j0(KPDQ< @(|h7=K>s :eOCԽ j=,=Ӫkib \vxc+N ҬGeۇ( `$~:%igYYgx\hO|b9IW ǖ{JS%f~BTb2&r ]٩/ȩԖ[/Tjn>{{W&G0庾meCu޳Vn 8ZT[7M;z0я!M`;)y:a/7Lo}ۦhs$+/Q6R3Rd>gl`?I/iJEQ93w;bwD(֍ϡ͹c {9`ߗ;9ڒ=-ecY({Ğ`ЍmஐonN{J][o ;7VG*4S,0d1}OTQ\nEU5FYܰ7 'Z-nlhcN >qJ\6%ls $O׾fyYV,qԱ;Z2nzp} xєtǿWpAJ4lnoz;n>AұCIxVZnޓ;{2}ԸPU8/*)Sd@$*v*۰]+ $*3/DUq+R#p)p4p/ȹia}!kxc{vĞpU:4mE.]uTo O=zT$RÄ82CpL(ɰd@~YK:=:g6a[XcA|8.-nKn}ۀP j۲๧N{4 dyu1Ŷ]WIL}Y"t>ESi'OZkMTRjku%㧡<0:BoiTuӣGT`G%nQ^]iqȨ쀡n~u yjRێO'D#A,~2|6R*)QY z61}D {M\R_{P{zK./a&=ZUӏ/;:lV!,9rZ6i" ځBfL#*/Jt,⤟0na qafӽ/z \4]ëGLN=XeoA׽ԴL{ʶDA:}OMWg0 8nW:}%}4mQvuDž"i#P)q$TV8izYh[46.0cw,'=~.9رMy=vB*h1xCM7vD륻&jt%){(s{ګ4{./S I(s+?zc>[1B*ߑw#h #ɦOܔD 6F5H30f Ҳʼne"Oq 2g#vw\îjğRvvu'DC(Yk.ŝYPCuSH3uƈ:B7CY[I~ŃIׄ?'PW6IK)?`Ul oΚlk 4-m#*>8{*g@=| uР7Ut}lS橯]Y5Me'ۑ(phB0vq$bat$aNvuzW*17nk6}M< Ɂ6=$@A:r+.*lj3]S_jW1ɚkG*"$h8 AW#->||8{PopPc4S3)+GN]q> ݰla#Mtñ%0Γp4̀Od(PY\@-ߦi!Ɏri*xHkl[X=Rd6b_VG#)-{Lk;me:ƞ]j4m(Q"AI+m<{Z@e,L(tKq*~ ;(6?pvyNS y@hIObH=v"V(%ƇjGO<* |H^,6GRAL5/lv~]%nYL\=tsJ/: nF~"HW]kMC<&mٞyDqG^RΣ][o %/>0'j H|ѧu 9c$!n6 ]ƐD1apnQ[M."k$?1πTVfҗ>'K)\H}gyȞߧIJז=i$ؤD{|(sI+ E(;ؔ|̵䲃qXʊ}K|d> ;P.yɛm;1dx=<M9W)Ixap):KKiRLyxfSx]/vEG9}(ǎOkIn,6)n8~1(QNcNB䚷Ǜt{vܝgo( 4`X'6w,2@~vJs* Iϯ6JR 򰃬.408aY`Fmp!@\Eq_sG bșc?Un&!6vAy݈uly#Yh'r5A,bC$=sك;yM%w=ʀM{,==X\7DuWrU4l Ow"B?;䨑vtȃ~5Vv14:f=Y=S7` )3}&\G"z2A{e{O{cO4CtVD:gQ}4$m^$֒3aR`8FH+~J܃PusV,bns_E8=򕏕5lxÑU}?MB~B=@ǖc+ŏCro[!DvD.:{%W=tdu7=&{$J ޳5+;>JՃ>'G6}/`|~~}juCѤy 2GdP}沸#/[g#`xi:܈$rŠ;l/1P?;'俏a|k!;l# !Gje>Be?<|1~O;<1jJLA5VɁnhnc+ZUDI@PR 1u(LxOWdEEbp:f ǡRZgx-7 ) 838=3"Äbӡ:t0XK>(CPKP>䩢ǽL?n<*v0>A.v`u*35O8LHx4 e 4EG1$5LY= Z@!ti"QV-\־s|yM[zO&8aqRI߀ߟ~?dbv}[6YܠUЧ|vvPd>4!*E0xG!xFգ dk}4hb3 >N=/c{nn˰k 6aTbyå cV͍ח-[T:nK;XsM ==?^z7HF࠷4UEOϳӹ4՛aL֬uZ D#4XkUlOo% ֕&||͟ݠbL>F!CdٚN[ }.R(@#5 r"e< xeͫU*<6Ȁcc wᩝ1{  ˳Ր0Ÿ:*M"y'?~L\ߵF 688z]O'fķ>ٟcUtV>e]v`cۄj1Y*vPIz >a8찚N=wvgAUeU |40pV3fcqYfZHz{>ջ yte^1+HMʁ`R+x^rgݖ{gK9FUΖĞO} GI 8⅔gqtՀ^|ygD:3fd;4fiMEC_M!QW-_`0a.10in֐_Hcذ>g>\.35yUvLv}@ bgJg?QGb<99Y>W\ḋ=G>oMvX'tOLgJ}xi؟&=C+Y5IOL$>@H~Д;h԰'uPrq67=vh᧶`?RK3e^v$QY;դLiGikffj4j{x{ }y0>zr0fFQC1,05M<e>_%+3ZՍ&{ .w&0X w6Fl8HqZKaT0ZEOYLKFM6:T0'ޠ ۳A*C\P9L)GTZjJu }O^107FN{n'uñmji|1"jۋǧ'Oꍥ/.k>xxCy͚[$N6+qg߶8^QyӾG_; TL7@nMZEt:4jAL0S,:4vlwk[v[i<3 ;Wj1 v5)8G&RG{ !XiaY/x.c`df;>* 1붫\~OY<=W{oCvM=q0yvpWՀN}bț= DZ3K@|}bSvA~Cd o'XƆl5|x d6k;Qv4H<ɷ|H|0S z0p kN!V5U ͩUukG.Ӟ[o*=`X쑞-޾,{?OUOg# bmC1nVⳛ@ɷkg~ӑ'xR쀔-@8]R"/4?S&ۻ8ȃkqy7'Uo& 0û: 3{DMB-]m2[AH?rrv tX{bo5=yOMbLMiPߣ؞@\ǮNy9v\эK}N6+:5ݼyjKRU$1$W;!2.7ϭ<ӛ/SA|O=fC$i,;#WsP+Y.l Ҏm> jFWoS%uU}?SN~"ėMvyht>]>0F yt1`Eq&A'E+ߤ@9Iz勳iwuܱ>L:(;@Ѧ;y[KO5Gu,t]XG0{V>ҴFe:!Z{8qk+HO^>s}\~ U);DԚi7~FjCc[BA܆ м  ͂`9,8!Jto:^=6yGsAN\@6gǣuuCd~x=_VTa?x54X#47UDI,ÖFM~o#5@X>c00b?35yQG.ȩDPlc ~oBLNx'Ô^j[1;,\wdaXNxba8]jQ)(h<ϴ=//U ]nKbɜރk{I5ɧZX Uko JFΆRno-3XK}lho_Qe[Oc?<d &i԰9-peIS} G] FPP&Y.d3)ՂȚOn1ɔoV9Ɍo#fk-Zqh`Fd2n"zhvXOkC>v=<>\?޼GÈ^ъAlIpbB &$ '|!\t0L0D1 Un5Z2uvSK ! |Fa.ȃNi{lZW2d..c{}o={v?^`ו$mKth`Ujr9}jA#9b//h1)(7v0{\,`A > ĐqØ+F=oOY}rAfsHcDM$h 0ƾNg+IAKJ5Wuϣ=Z)3@A1HTug׿lXO(}>åq#Ĕؔit'(g)0}ŗ4 ٜA"SM;fonHt0 aLt\ : p}fL>;x~:'^p쌲\O{hմg䭥fS'?+]H4'D eA }R>tVT|OG+bSjM؉_j3h_.&(PV(y, #R#(x3or!Q/%F |0 Äxsmo((Ւ^b@# y@|hӾSݷUɖV?Fۤ=A+ot muv6>ݵVC QH*n; A?G}|ڣ^7?_GJ"M jUwxp(n`-z~ ԯU;XTM3@Уb0h{eSxXZMF7(흒H%MQd7 4cke{Kp ȋnAƃ^in8dP1Z!֎\mŠ i[QPc[d>}i[\n}>]j0 Ͱ&=:-gE[<8i{n;X#}Ao;pcDoDIAo~|4yqA-ЧͰ?Q@p”g||YvΞ@Stć'cdͬ^xG!p\ͼ$8/Xf>,y\W.P@)#d~.j'f2r[G[_U] v7zH:{0쮴,AG;jJzw#I2$AqkZN (ic ! g>_v:@Jc7izP \xBvkz,V ^x3q40yzaiD1Xζ=m w-HvL{Q|LmS-Y[-F3 kkNVV]H}nsۻG;%mHljwͶ" E# JQf;:Z7Sء+۬g4~bctUc MF= ?y㧈Y# 11s51aCr.^)Vh=nmL-&&ژ67 3yiNOzOz VNO{w+-.,z9aB} {q[s=Ook;g0ةf7F$ PBSj~|jc@\@'N-VxCDVrHy5{|u=7b̠FFSQTfI & C< M3yL5cS  p/M`W$>g!K=,uEeҩ]ʪҐ$5J.zPϫ%ٲxX6j=v`)󦆏lC.vlFa;Յv;3.O~/l >о1y,&D@b^u66PoCp(iPjY/8  E <ݷ(0ĔYЃ@H`=o(QEu3t"ܦ/3eyp;}Isz>y*N\t-׏[=Jn=Js=jQUsxB`- Qp {VZmރС~r1>p'ox]<+0mRgl5Ǜ#ӜjVP(v츆7FQ$#9uPobU֨b{1`!yscg .+Lϭ?>G4o܏'ZWDCRt%1F𶡭Vyg?ݖ?v-s||rB?>oθ,vۭ?+?d>ѠO]ATIvU:M`zS+b?F>xϾa_4XJҬYK?aK_mK 5DĥTL-)-EΞL賺*yNW6rzu đF; P%Y ^NvQG]Wmw{ǒsr(ZG]2zKj/xHVɏN0YA<}ulon xi㇮۷lq4sw>dn2l>JI| =>k% a;;o[w6>g˺KctgsnRJG;hx}ٍB)])G 6T'Wp A"wb3V41+h[)9L M9k;ÖiiЧ=8>Akz{lu̞}0t@ջjkbϐ>_d;`lɗ}@BMvbHwH}6S}yzF؁Sb M n|i~ltk΄`/37F)}{`pXY=L_ǐs=, "2Z E'89H!q 'xF'KZ|܇k>Ow@Rۦ{Pa`v5O.ͬTōo_D(Q A<NV^Gb2RVX89ZDnaQJ!.5êyj^>,gGKt'+f'= #`bݳ}ͷBXlyK3S(޸~/Ya;8=aQw]7YZeAm'/n s'z~(vP1H jStl L#̛hmcӟ@ 2A=%xsQ=mճ=qcq-=7z = < ?x;Z;QԀfLaMgk/.#g礛Wdo^ u\b AkNF= <>]:R|vCUwJ):;]vңF/st*A~a;>'},[Aȴ '=݀.vZ4j|nFzT y Htn7C&91lxb|y mG@O8e,2 T1n GQtS{BdHgjPlu2{Na"3j\oT,Tj|s{?Z=jhl;(.M :f)==҅#A ݵ1EjDiOhl԰1#_ }Ñ|$ED=J]@ԓ*tG3SG -?H'dՊhY% =[{uvVqh=ʵ]n/0[ jwI{a2hO⨨S NmG߭=cѱ$_^D>jOn#TTޖn h%Z@5i=$>ʙ7a攆>E%h.ߵ):bBʣIqP,tǥOD12`6&&p*"ÛJyOG% NR3m>Myރf8mY ?9iѰgt]xƌl=Qš |RUlaneXkZ]JuDtaہȃcmhƏ'{u (aBra-:P̯N=ޭ/I#+ڼVh69]h={V(&Lm[έ?{4u0Bە}nWo*!]Lym' 7,vGNv= l:J"iCoi7~="[[Nxpާѻ!:# @)0[@./`v=ޒ򝪮BWD5(*0DAшV9gG% CCA*SEO@c4^J.:R,Ygjܪgy&VBH݇>%eH!3~"U;=Ξ.ӍG.7zb:^ɶySԩW7G=2}On]CFMM0o6~m.٨#CdFHϴC><}x${-cǷd[~:zNk|H٢v .>(l5ol;pIuڌch;*1>?fO- 1"qF {3fߋ~#=SvvnZOy2goy24 ]*[g{Uq{;?78] |,)<2}:jjZ곡B:$w7JqңHܡTcmoM]˦Aw͞H,~OOFGU='#NHS),B?5Qg0"i.kI#kJ h9<4u'Zw\E\9MAS{oi]3[IcZ8}5=Z҅ Ƹ7CT7}~oh\?{oVfyFr{8`l0jCn5Li2(AH}2!A2Jv#a8v"^2Yj=XRp6ΩY)ss}qyOw}Q2R߽;rF9{{}=,1(Lr[H6ƂUcǔjbyEr;z#p $ 'ƸDZ FcGV" £o#qw^*>7”Q {kUꨗTݥ0vS#AAjTz^{iOǥhdJ;-&. #dMx}o#`Lyf!fADdyMh}&y~ArXUJuHQJ>'|nR5" )=w+*#QG$OBP0g(P!۲O\O٣FذXO0D<|f; F@\YhFΰ`jQOj.NG8vm!}'F|;ϯ=}}fݜuF$god]E>D҇'H#cP宆LXT}8ސ*,7@^~#Hrt=yĝb ! [ yҷ^\~}qm=uO~쁈aSM'cJM%kvpR΅ =npIқ~fH7[3@q=£/A>ˍH"pDas1?@Ve t1ys(=z9- ž=Pu2e;RCqLжύhDlvmΑKĶNx`MWE(c,l|nn"N޺҇*XCϝ( W5s>أ~ QJuۑ<}"xyrGgޭ.;_6> ;ºӗ=+ yo.TDK5flסZg3v@4='p=Ky$զmp&%:ɧRm.BA;i5e;/(8w]i;zFn9CV ܠw>k"쑗>ZǺ{xpps#`;7x!GUأu769 NrMn>ZA^{PNv٬ecxw1ȳe7O~Ԑ<@/Oݣ,\^1҅5HN?]煳'AfE5F:}l&leAԍ)sp%Oצ`,{D߶+/YxQ!~}6WuD"3ʕ=dAqPu޾@ar5lpj̱\.:q ΍+p2;4pM шz Jxv0RE\c=:4Ȳ?,gfOJOrK)Xwi3ƣ:cJU߮>s4X EvQ,`p-}DODcE@$WG"zŶ 7v|r+{|TsŃ}{P v[DGAo3œYn {e7X3>|c@NMo<QOVjPXAbMzK[V{4SQwބynҒ M+}&\![6d;ة}0w:H;`Bf`* :]:~[!}B>n{8O >^v>*{M@Y98e\Y#= w= =,tBXDl?2pI]}LơU71(G8 9{4I!T@ 0yERlM)+- ʸl#[jk% A7i3=n%Uvʇ=_F3gO}{Qnmny#vJ`be>P>p< mo3>*xH=*}h3{6} ^B+˚> jc#s&di3>C |C\T/1q3K=ߕ# IJG_8F=57Dt@Hu:< !y0Հgfu}n_j.DB{r}4:>~V'ky%BKUQ#OH.XBUH+vPb<RA?F/NPǿG=+{9O<6!Jmkr=]ѣ'!>^&mnva8p||4ke-Yx#x§TCxNkpeJwH2K5`{K}>(4h>9{ebd[.υ?RGo8!m l BFGv= U!ہч {BPDF>*yx@"|8P'k۠[Xj+=~ !.y4,܇:B@ >vB.Ő^H{> s7߳Ax{ܵ#<5@A/j A[P`le]74 (H4v0@_ic噪R:,rVPwiUF)i;(;غYEґ@){> Go푯OV<Ӎp-G6_/Ind\N~ciY#ǃGAAvgfV \@;}z&a1]-O@yOT>k@衯2N8[5Z|t#@疖z-Hh:`π1OT=u >`H#\ =?|{ ybni{ڧ@i٣|cOdgF,A` =n@DOzBuxAz5B =_ԱT.=^G) PgZ@"V}5wŐc~C<ʇ:d|&AcfD{쓾+gU`•G`ϫ6={\7`-_9xp,<\lyMJpmׂHч'eG_sͅ* /=*>@I[D2SjSr cw>> ^ 9=eG$r5kY-#=%ꞭsH.͑g@wҋ`2 yiΎKjz{};^lhNCI3!<2u>f21̶km+mv }:mv B/20̺a4[΍_s[/C?o⎻'#~6U@j/ٌnr_aC=9>@v=áBAm+8Du䩉WӖނVd;PA(I'Q:KotD3X `a!(f`;Pi?IIu3h Wؓ+a/={^;QC@O<{|uG=^Y-p `QEgbo^@u(H+mnz"vp<:=MYOFCR Nt5֗ rw^~4IAoa݃_?l.-+U>xX1@r=4-'g\w#e\&WBql\S>>&< /Im|ǔ^#+3k)qvɌG{1H >}*X턍=y47_+)/6L|"& 8{$ I4* LtrS%OA yJ|j@`E %>O 5[Wlup)sK3IOXݣofysgsgR/d@XwQ>e;d;H>m 6l _Λe i;p`{xjrGYcWiZ٣CriomCF=~1Po2s;/mx=z(>TBO`FgPƊ==&5bSǁ=jEO_Eͥ^EOߓG"K<;/ù̱b>h]T~D;5EԽKU8W'>A4:@G2{P7dPN`;2ߘIk m ܱ; DD'8͸vO!򹥳'W^3\f%;C&{PأJyv*wk6B9Dp7\{]y3ZJxhpyzTAJۈZK+<:`c{K!h>qo'<'hG7x D>aՃSvΎ>슑S@Esnv"y\z

'&aB0H5๥=\t;Qe* T8\wϞk|aİ)#{_CncЇLh8-VAJџL!}*2ơYQAjB(jvP'l"-GnT\ HgeÚs"#=a=kȺDZG6Ct-:8wߑ^*}={j ? Lk\ݏ{x<[JyCus L#V5`6`d&u_y0EчBAk76jo<!#S L+aȣctNVlk/{郚} / d8=S;dzמ>ˀ&NG:qEmy0;l56 u:IoLMM/2m%%f/~—Z3#WJ@랥hɭ`}n@aՍK$:uWA]$q{!R&z$tn#kB3mqHͰ[}C"t(DwitEJyio <éjЎR xGYBc.Rz ~%ÏRpO{b}yZOɞUMȖDY3gw鍮 zFWG`ٍ=xD@5sA8K̈́+1i;}Da ׉=֙=Q=b==.ywf*: upX>q{T$^`x : mnҠLc.Re*D Ȗ_7Ov1Z;Nbģz;jI?PAĒل/$ r!e;T$Ƀ9y͍ٓ|͍mod{މ>Zs{DGUcDc&<2!%tmHh GufsTm m;K-<Oly:Ro#ӑ ݥun[=7V7U>S6g˞(w'{jHkĩV׍=V,ldyu"Ue;(wM,!@p Ӭll'ڪDl6֒t ʼnN`Kw|\zݓ+g,#\z^=X?z#^N<   }jvC>vDmL3FMl H0 {F7=;;ts )!zCt5>NtB t߃Kǚ%gxDuF"CcG?-5kUpTn5S{|j!yJ4P]zS eϹ>v4_钱RRv^O*׀ ˛٠Y_yָGg;*Ǟfes{) P"cUW$z3Gz xRMo=|RF)5S1Xskaہa gI1!@ulƺ'Wzy vڥC ~;7U ܤq>a5>~ͥ#Gy:H5s ղ_2 j~<,y|kr-ts}5cI`Sk輘t˵ءjpdz$kƎEYv9 @D'V,OL;HVvwAAguӜxEvIƁgm;ʌ}jP@57N'L1ՠeSCN ӂeW=P;2jL" drj76؍hzMͥ݇: ֠z;t9Uw}wR FjP<L5W aYV/v@x {cOځ7=Y{KL{~l3#ɕ'W;/L7{:x1agAV]y08˧ :z 75?]}}ر"gPz|VZ$OypPeCakݶ, D&26;lTf|]p<73i!*X@Jl&ޑY;VP4ባ`O=xҶlU6%ce;H>ӽɞv֊dA =~jx tZ=rhmQΔP@A݃﻾/WTCOb|=w<|쟳qh?X:]Eⓧ@!v|vjfs)t GcukqE@}6!}ƚ}g>{Nt`:Ph} K@eǴ\O|o&xaϤ FԖ4V§M%Ղ|&mo =*}&,%܈kYyCW5oFł НyꞈLr=s>d<#ϠSJy_ͳ'8+=ds`_qKAE`B.ՠeJ[@#ՕGP(R'x٣LX3q#b}zT g{IaC߆?H]&FM.Bo;H)}FkR,A[ip++}fؖTYo'|tVbunY-XdT ;2WcJtM=b*!es|8'87WE[=q#5|ݗѭ2\^ӑ/DZpbMK-G<;fx\Pi mX X\ .P W3P`X 3% otD=OuLuFM7#0-H𝔴khiF=؇6;Tq!S]mt݃kэ ed{rÀlPo޼[Avycӱǣ't>#ꞘPhw#={,jùۢY+Tc ,O K-uu;[džyl{maVDVb d*[-= W)31mDOP,&MT>;>ĥO](ѧv0قI跟-=Pݾ>z2X_M>8, = ޲57"nzߣF(k mU=60[L'A?J+ 6U&R 6I{T{@^bYy'_(ӹۛ4,;FݥqAӴ~֚Pg=|̚iȞ>3!>ɖv0U޳ڨF=hL $Y:oF1@䯆n_+{jV\#ou?O/Ckp7W'&"/$<{z$ {BܚW5HY?mo~Q45ϱJ_h#qRd;`(mKecZ MoKТRZv01֙`j全 *gWѸ5O񖱇%9T!֙\;wtL_]>ysKInSJK1yqI57 \s> Uycx~?`Zٓs3H{pvT&>q⎥4$OCH OX RE/ot_K XX67'*Iuw:v2.`>J\ѧa;8xDKN;vMg5՜XzK}UHv0ߓcY \'>oq;>r %^|8#Xrݐ@KoK{=N"W>aكغR#+eby:J5lTVۄ<Hu c:q~59g=Bq:L/k̄|n#c9r>Lᦎ3yfΚxԌ7 s.f26SqU0@B&cݐji=[UQb!uO5Eݓ+|ғvpٓ/KGNҫy]|Os ZJ}xyC{vrWAox'{v:[sAKTN@>ӇԮ @䩥Ayկ&չfA>s)Sg5&Y7ͥ]0;Q5zI=&֌=Tc.H;贝ﱕ ?awlQ'ȵ@8G], }&(TuO/~(:4V;S=e5Ps zT@n{ru3]Rw\{~~RulA"KS6.TLxU&yC;s=?$9{GV;@Fs5,Obzm&z\hƠgN7f߀q|&dOg3 ݶ+~]bY֭Lc|ޮ >3_ Ɯ.ɳDO\?%鄛<ͤJ B~GAnК0tJs{5gu陁8-{ӯg{#TDme.X<\o~eʑg*yuO?y:knӫkIŖӋ ҙFe>pPs!,y@6uX^&}c,(XSDL)kJZ:ZPa}KMِ>ɺg]~qN13ΕPس<߃,z&߃a:mݓ+ݎG!ܦCFĸK+ =O;xFC8|z~]=FP{ v#MJ5jl,ŴT&xնhus#VnFybp` ʙKVJ}2F>CߦaT7O]>EaQN=!{K;-{ʬFy \64L p;J=etrP{Ks'Ww{{TxAv|m8>ŞWF~ {0Ş/yº'[zP1sNϚWzK{0${0R܈S_ǟ>~vIۺY TޣVÛ{(3jj roh8}#Wb=rQ#Cru` >TaRT&oa(

7׽c9VuP=ɃK:`S:==GV7yۗ?rGN ӛ@kC6T˵d&o6ؐӬuTPWԡ BL;HͨPAG3>tVUGG&M+@=/Xݣghg)-6' oǡ>C377#u7On`IuT.C tE؃@0~pyoҡzK=n"M) t^0薆3ug|Kjzy_u83\,DY+>iݓJ4ӓ>>~K6xw))sQJ=DLo!|꼳4*zo3--:芓7sykj6c]ٓ]_>J>wpRQI/e/( s>=qlgts7{pŴP>77vV5R $Ϯe D􎇓 <_=o'UCL>,SFqv}7@:P*K#yہΧ(~2K!z؄س[ߓ3R G̞\0Aٳ /4ȝ@ƚW3V_-'LpGR <=CWܣJ=O&:Qy:.Հ$C9Xxq]랿̱/{w\ߡ@1#b/0缁=j6uL0e;zGJm Ջ\v@@]BVpjlGX${ƬI}Nvfv\_?"hx 퇑ō7ؼWç"B]ͧ @\s32W=> q=a{Ağ܄'I'0\'=r}O?O鱞Ͽڻ,;O{T@ =|?t=ս=z\\n|3@7n<#܈ ;$[u-5ȳǖбK =3\rkgfmmvBѣChN~RIk{K=m"w'U>*7mTh~t,geGݥ l1n83P> uRk{re+zHC@y}? B ee+'h5`sxOg/`cpÒn=[~mgy:R \W^t.Ɯ*=G<ʺCMy~}r r'DX .YÝ ' ӁzˏwPCnbϳX%$͞kO湩f_KЃI֖ yOS2ɟs̞վ:2oNFdsFBX[TzqO$f<@j4v\ZCBd;ΩMo-]GB1~kn?(C4`rsv85\ɇ.k'XpS4\3DG=G=d`A=W=랤 Ut#dO5й(@y:Zr͠ԯ}(fX"[vsSSe庱}zr=eﵺYU:Ymqjdwl*AJF#A+.AsliI9ua׫z{dINs 3s[c͙+ cP"+:{ w(癫{НTj`F= {=G`KlT " y 5OF?_< |li͏rj~C-xE=$bF4=W_~OPv?v'dw@ҧj*afc53EDb./n?Or 6ԟZJOBw/?zǭ)BuJ*|䱦@c]p'd1:ȍRR+ _*09D aH9VGY+d|dNbꞰ O!{WTP^pԡmԐ? #U[LiSc̦oi1OEeO$uϏscͣž\Ì$c`~t+^踸 _Pn* 9؃c]Zss9 zK57(`cS 0V9P/H"p`/WS\Q5'ljj>n< {&Q6?᚛>wnVY<=yAkZQI͚uîW}{Oo^ZPSŞ=gG!a\tgQdOTKcMp1d|n~gP١ʻj ծďOu; ;_:=-yRβV?uȑ >bAi/%RZvjEm>ՈPhoT *8]5\cOVW{K3x0Z/ip`dCcGֺd\+Gkn#GXC>SnF{Jg"=ʕ@}ã#pc:R7R-&,YHCx{?Pc*e;(;Ic msMfKQ,zoiͨgmvѱme;LZsK{57j6CN\z5Mxxd n"3m0%??{{GZs#w T_Ut 4ʞwBi'ןr+I q&|z8}lL/aϼL=PV?ۤ%{.|,%9k"x1 ZպD? NUP=85NMT!W,\~パ^듷=xaVj)ssCaS4*'W_EQzמ>Ç{ђ{ { `sCأ灱\OU_cJg(4#inM];hPݓk0tv\#u-W|3o|կ]b0JO#=u{=#@ds0`s|F܆=:B!TI53M7F wȐmOf`<)XӃ9J#a>nQKXp@p0 NXI6ٝ}۟#&@=_W%Gc{@??=}y`G&Yo!{@۶{\;ȵBϽ &H7<2Agn^]p BsMp_yk𰟛tk67;7GA(3 o58?6i옧,kB:P#R?@=ٲC6|VB]磘?j̣𑅟c&5n}"3lsM+({Z^=aέ0&sޓ*=/ur0/w{aOY3kOd\{{ɞ^Ա7dq3=u:߹7-S 5hg5xԔ9$уCwctJlϏ쁲ɓ @bJBЛQDaKܰ?ZpdϤ3TW6}Io(jg}# ӵG[Jc{r5-V ]Ql}csl'I{/z(0;8"pn=^ S*7A(s gC޾}K=/=ã@g=P>Qc|dRl%mA*CovaY+ JRԙ`zx`uz%53y=pg %2U'O7?6jo]4n&iP!~DKmȔp V_=O}K Dư'UʞK5wx(Œ8ЯQMoA!xL%j\zD\~KkKF0ӻΪvw2>.eOx>K@L<)~=&:_Sgsa =}$&] -p8iaz97GD׳Ov?υ@],Lfql>t <Ȟ:=j| <@ɣybi|{ݙđ!5{\˶޺jb'p@? %Ob@/c U'j`}d _؁'I$}UZ|t,uO2;wBX33Bpr?tz(nDSߓ*A}mNDܶPfއ<ڻ#W. $aO54>֞{ |zVbR׀y6 ABc{gx7^=0(l c4:ߣmuKȵ4^|~@/L.nxbٓ2e$ۦZ'6r|g)A& [T̃R'A|H>Q"]RAtYOAz\'{-C!RClߋn#|s<2CσMy悰GC}p99mz)sL۴t=!c40{_&ӻ=-Crk! -D_?hr쁾g2TtmLDeK~չ{Z5AF* "0lHr9'GnmFݷ4(]I=;#7=q?8\81=pWhBس@{&s#xL?7߹1e [7Ac(tKJ R~ښ)gTrPgYR XvYZc ]?;h[| ;pX}1X*jI-Ɉ(Q~nޒOLm#\S+eB#2zv;U | =~[ƌGw"سg"j4X?"LG8tynt/\⍞ "<3!{v`d4c6r-X>x{X\0ا!v`HŘG^{8ht:ѝHLi,B?{qZ%:2,4P1gDO(cP){՝ H/J_u)[]Aڝ =rQp$ [ 5S쁊 {(n}@\GW2hP${ơ&r x#{֋RTY^z_oD5 K4fҧ6śd&KCBν6ȥHA{NG}Δ=JC9Lo[ݳ8x18H ~0?ʺJs*|SÞp97=wlFM$Am[=Jrn/= ?ę{dJBe3 '}.uj}jr቉9e>j~tNeK5xt17|rG_[lրSߓ* {r3/0ںAC|90f2Ge" VIN{( @ч] #9`W]:c!}Zxh_~f~%V`Kj-o~[=h=S ɥؒ k͵mtgTT(Uw cE!|t_g,+0[G{t,ak9vuSʞTqԘ<_ݹq{[-npx 'kRG/("*e skayVx-G߷dg 聂 wS_]B J <=ujQuFa,޵4"sKpPArc~vW)dP}f*JRPz{h᪲gB[V|熫驳4cnfO",v2>y0pPW9\9F}|D·u {"c,9#lu)w#j3[T>P~^hc{]ƺA14J)u;k/wYGSk X8Y*|zYNxKg7E n4/zz,k@-6Dy·D·Xsv;^̯P\Y|H%{oZPXcp>wF}.ʘ/y(*0 :Zr0m3;TGkII[]Oz hmizodŖ.uRУ q4vAfB{AR>r <>x`OʞT0&"y`{ m9t#^ʠǷط "&փuX \=<{7#C8x1kBPu0<} 4 ^.rbY"_~2;ض:3 9˞v0{.@f!7Q;vxhBoA`ބޢ2Nҧj€VSZ[.{DŦPM52`.l5JqQL㮢sΝsH`aS4Ï||h P^77U3hZWˣA#StoÎ"^H!C&$TM2|/.o}ڞ/?|_=P4QO{i>JÞSv`CIo%Ϝ.Q[<{m(Z;ЛCyԇ_dל[*rE*f"kzxa䎥5Du^?}#eO8]$8];Ams1W=ؚ:\0wc>oq#{Y (y7U﹪c#X{sz}i{>|yapeǩ̰LkџK<򄱃}>+ؘ(2v@0WgCu`nb=+}2=$T{Yv& 2k nR$T{6P<\#q(~OXZ}24P>s}|jGoZ Ͼ z~ WfcR a>_,{Tڳ5F(Sʞ&{ zSOAם~_`U90?sí\Gg4"v Pj'~nW }tJ0@U|okh2T}aŬ{ DD|!8v9NGL>'f- y|zylWnD0"Gu30:FKz*̴SewUw(SK aQTbQVvXwGTc >eoZi5J~p-amdcXˈ|綢=u&tJ{w)(3R??~nbgyuֻh@|vmCF-?iq,BቧC7HqȺf9{D:${DĤF[T azy/GUpTcpm1P? ^ڡ7)/Fޱ5>R]'ul A>!A=ܪhN&{hz2;Tأmt yd2 9p C=!}b%5;P<:<ɓ\D >ijv-xsԙ];S*!zh|dOvb%nWI#'NvtilܲЊ ,'P)(ȓnAQӬ޴; H>lj+njod :P0=!'ׅHhVSR$QS"x:3AQGnʸS~C{;:Az^P=`~ y{;-)$Ӈm8@`3oz;܄!}=}f/'5R)Ϗ&*&"ܳ9e}vwn=s“dR8{'p>|u܎{|⡮;>xAv>cА_|9K7gTI55EqL`OAҽL=i*A92xbBok3ٓYQcaMN$ӨSBY%/αG`MRle2q_R{Vtt2J=b6:2z0R:\yp1N~E-pϷCO>GΧIV8k98ѤYn~n=}Af{wԂM,,j[mmǰ e(nч:yKAnf$["} A޲glVhY]ʐAk S'{FP[LygbۣIkKSGu=,a@>v 5"f ytCz=$:,y.aQ$N<m;=K?GP;b-ita yaSQޏ , f+>n@K{Nu=sO bydYeC{WWۃѳ飗h4f:vøq6VSy0SWΟP?=Dp5ŭ<ӃI=4nI‡0si߹=t_ːKC0 $lX>A[Z|v)i܍C09;M0^[^#cT%njN(Ytj(+k-[EH KnǞT){9t4^8$W.>C ޞL<=A^8=ɣ"yL?1 iY?ay5;prR t#{n6lSc4W^>&"S}Fy9}xUS$lEPBrb1Pmxv4nàyL1AJlŨNE7^`_R^ٳrnXHs{)$*x(A.!r29sss_ysuN?chRXuA@t=]Gm 6gDGdO߾Br|/m(0_% IP8S9AB3:ylSqB@P+ꅐPc=Xzt#[8%.vQc ,hF){|[>i:UBh@sM_ `|FH{ Xk;πtŎڹ֍|}Ƀ94+L D! Q/ݸ3[9jyHٍ-Ⱦs {@i3QCm>oY.zެc."קΞAއvOuP>A-(`G(@ xPΕ0dwza&'9Xqǥ {cS:@'=ҌsG~{59L8Q>^U)= DpDF!nX&ϾN=Jt]yts:x[X=s=0>_[hUQ>K%3#3cv:>U=Pm:,!g\W I y}ZĚK|Ɩ*&wh7kAjK#|OL};dӌudyd]f@`@̯̐fVy%8u ![ܜyr#Pհ <6y+B} s;軡KZǣ5]>S0qk2c'>{b@o=*3g"my9h)|3':9$vB.zD;m)hc܄0 yX3zϋty>Շ{FVR#O?n·&";=v>ƲzhZ;vP ~gP| { e&og@ʁJtL'hm[pYo dh^} >1*!{L#[L\\ '¸#y&C.ݸ/'i(ǒIyqM#T-O;j$S.c/ ْ%.@b@{\D="Lpb7zv0h P×nsns'{u\,{R= & eh7XPa Q\T^YOGuϵCAY+}Գ^B;|6 F YAXCq(|zoi"z=T)) ?ssb:6bGaP/7i;Wd bzCP*({ Bz5]cE \{5:{HD'C!UB4ྰkNҙm:Q3) #W=.ňDҨh&U$+,@{!1 Ue, +" xK!u6]L2lNzv}Ϲ=z]w9?޷gJ~=9>O-{t-#C` xwޏ' ;ܒin$O|!9mݡi ?YkF=ͱ^_tK癁<֓M{_|FʇЈʇϖ[/WSi4Biޑ=eFÍ.+uᐦ]7qV~y#IU:Oy4k@&y:ǞO<==s칵tڢޔ`:悺xVC c-M>^^409RtǏ=/)#hSݦ՗j=Pj.v{ߡ#uюJ`jldFa >krSƞ(e>7tJy=׀)o>é@lԊhc=Y':n ԀΎt>`\]PS {w}hA ß/&-Ki[[|~Ͽ͛ yl=KEM-]4c@ӄ yiP.g-Q/K,7߲SgGI$Ñl'Jٚٳ}GJOa qv}~k~9aΧR'G ʞu@1 ><" sa\mx@`Uw_F>wʏ'Mo{?DGG{ C// hKtFnV44yxꀩ ?=|.v ǺL0#s RGgfw(G{<}{xsm>+=ysrZarz_MGkwh&r$yv:^;>0hvZF'K<6$ F==Tn~q9='Oryr5=_|+ըG_Z4fK=:]HU'G$vxAʟqxԝFssKA!%M2d*%{\ h |zsꩭ%Go=l&I,nzC칮&T륖#AֹT5==xiwchUN {{~zjb?> hb)*b;d[ X[~ ߗʼnϖB]gx89un 2u2y={v2v~n8sMl;n<8۴MNW5߽΃D({lmnt3I0U:$GZIjsDnl\gh==F5݊ 6;( {^тj?ZzArFE{t-=E[kǙѳ2Ekرy=ۛ[#X؃i[k񞙲{ƞf0 %SA F!O=b3߳caMsgtu`5ecO>*#$`:v'[ D.*`Oӵf:v5*LT=67GVu>zi9>.8T֞ w|Fo;Hp飪jZi1C$ iDi]閮KlV! k!'AV{K)&{xy)|7G݄` {Um k' Ob$$q`94lү8k-k֫ Պhngí/lW)o=\m|d5c=[#|pf%a_<\(xկIƆ":pQ"Z% /3x }߳AT3vG{\SiȈW *(a5@{+10b$ga&>vsm^\Z#x~@uԋ|~|{| QdEK\T>GzQ'a={ 'm*xԎ DVZmjVWZۉ4 '=W] \YR$Vܠ5l1y 6=˫z= w-huϘ;6 oDt5Д@]~)Z#vZCU07PաF.k7٭vɳhu4Ϟ#; cdO0ss;d΂=#@6\-A?W?'ҧ@M6C]  N%AbǓ#pX# 9ysή@Ӂ@<}n^?|O=zE6p$YxU4c4_Er$GU9zP|h Ս,|ڪm\j{:o3VPIR.Yxɚlf^+=^b =L|ܝwO PDT:V}EZ̵j#R x6-@'A׿S<>Am5!V5|~qXI`ϐWM҇=34-"^cliiTTZs{U&/ͱss\pgC!2[gÑ=6XcMhʀ3B8Ax«?TY64b{&[πb=DŽqD(<q͍FL&jEӺD _p `PH?=In[s'A^C&Y~{yB=h8b;ZʾO CIvBUB/q&ɴv@2TDeղ+{̑ɺ{2e!xl\{F|=;7]6ӭ{P(ML;dO(V;dq'I!Hw{4l)mH䡘j@\'R-rh% U`AJnp gSpgKk:cF<--knNٽH#S{d>׍=x8`ݣPmz:906ہ >~DɳCA'}^4vgKT#U{K9]=y\@!}3{ :>^y<3kt"zs)}CtSbEd"\~ Tb}&?~di5Ǻ4=;.fNeynb D03B~u|c-z<{H/c-z4:.ÉT$~y{{s[KnsiJ٨FacгcH->{Nh-YxF|TgCl!1X- wM@0^|B6lÏl8H{JRm5#`Fv)iM:Nyn,|rٽRxB7=g&up]yz=B Ru{rzp>;\T;@ABGז5릅X߫l)cԁڴG=O[}C0̋=L2ᅖʇly)8 zAU+N?hJ;Ҫ5뾖$|r}`cuy(bgi>lEW7VO58ᓾ|n:Sϭ[ a;sc{Lv./zh>"IAtv0Cy@ȳN{>j9 ֶ2d4'IpF<kJ50tGx$zI <'O=*55FuF**4=/\i!4);ezD R|3EO_ߚ}ҧQ"y>A&l{{L'::8Xg䏱v0P Ιa[j ٳ3Es؃WG&RC$ʇ|v gp/zWIcIzަГtT+<S*<S LUON[vK7xD<\;|ʇ>⏟e00X@ylSg|E[lA0z}Bl!6{`:s*WbѪXcbll$}.vYWi¼#{\OvgvX}q=3#isP-?k_pGa~g'f 4w+# ,MǑGE#uɳݘB H'Ϯ 3j4j@5S 8j@ۉ/m߃9ᎏ٣C-׋zlb[f*5I9!LRZp^쨿:>+y(vp}8Zd!*}xR!y$爺gu,ΖF){ :NwT{3iq==qF'i&7yğ{lگIHq\٤H޺gn!v|T.U|NͳT +i4SR  jk!orPW3=| ч?:{jEK%0):ٞ$wԆWZ&}Da&[NOB}]3mtSˣ[mv0curǫ{~:d:]?3ce=|ϊ jEh@ӮQPA9ܵGH(}>{v`y <6BlJ <}B?rf̵=xz`0RǥL<˞c{ N+!t@GP/;z/&MoO=@ +}d;8gׇpιo&ӧ\^‡ۤ;.'f-62#JglrQ݃buO:1|os=6 Y نm<{Nh|߾O颧],5yt§]v޷vy05Ҧ#G/-MjK77g3Za!?_yOPˋM|mi'=8u3u5w΍yqd B_kPliil4Y|!*~d;X|ZJԠrsS㍱]c4z /أZoΔwX pw4=b-=" uk[YlMsVxttivgR1ȣTy:óyk*14cPƟG`?;& nhy2rznOA!}߁.ZAOt!ޥ9ǁ܌<sQϲ#}wg{KcVأ\v4Szة/ag3#g`^3.&;Ҕt ;6|to|1Ax]٢vݠUv5V<[ZluV jnUgK58Gϥ}D޽ڝ @O'-G}U}Mҡ?{^貇xC{>* ӝ^NWL0=P `!/;zi}(4V`D=Xs-;[)k?#WovfFL.|E0ڶOMChM7%6N6t1<0/7iߣ{t'Q>#hoK7Uا{lmq9֪{C胉sƞegKAs wձg:dϵa PAzb#wuw2޸g7I~yn@~ #QlrYS%^ݿtV;=у<f\I:ⳟjБZ{/s&2OGb)j 1Lty &dbr8s"܆^iaH9@Ly:*~+{Ȃ'YYk/$/(0&JqS I@&$ImQkn2X6|3NyuψBL=|#{WȆUv <,}ylpō_%gHO(5$Z[]kRPUiBgKAliCaу@kkQWJ{1>_K:c~Vc;Z^U>ԬYz<졾\\j=tf AԎ1yWMn> NJWe&}tj).`tUo}п{=9]5Ȕ=#PS:W5P㮈ۅ^|v`?l jCF] L6Ln5hi1I=ۮm=l7/B 6n.-vTT-*c舏ೀ=}n`N<{ =Qc'[}dp@cdsyj9uȃNJ6<#,a;8^me-> '|s+j*Bq >x I'8-e7׀Ppve X,vVٳrR ګ`MMGON]}~MQ ʪDݳ5Y~ZyKM#O}sRFbѕ{su,<$B 0S{ӏ==`+{\Ӎ_KIbgyf&s[}€wLҧW~b&\=_^zGGo?yj= J=^bJuh|чM$V[kV&U=,=F>vU+f#6|ځuEA{KP# E=57DZ |G@ȳg-juq;SV[EO謖Q<߃A# ͺoo]qMQV+`ÂwA?ctzp\yttז2ՀbR =ϕPz2,{=2<@ K,(-<[$LoÞo}7Po|ωѼ{C&k4t ̓ m)̴(+vPvَOX` @}SꞿIZ *u'cO2agC-Cz D𶞛oPjw9>ah2IN& }~qkW} ^1C)N!7_|Cp;='K x|q$OBewe$'ϑ:mNvCoY_=<7O~d_bî+DOi^=Tkc=)c[9|jX=+`7a %M!suIGJ! (<`۷{o؁t-=m} Հ'|J}0bT;\ڴT㔕8(+E|{L qw̿QSۇ=ŀ1ӺygʹмY=Kx>\l3zCa}kI`U S/ŧxvsuOʚ۪z"-GjQs&iȱy Y:U?| %G1{;>; Z[R(>z0m=;hld ՂT* z ReP-RjںObMn*lRۡQ;sq9/pynV<<_as1[G3(Xf7 ձ[_'&7q82M[N>}l۽kGkY7U.TnЃA>awdžDYsb˔.v1u;ƞ*.W?4-8GItʶkMě\)^^u}z kri-[Sxj]ZljDՙj@td{.U랹҂ȃ7|S+g#o|}~g\>*7Qj!ź,'N&c+|?ΞZrÀ5St\00@bȞ?&@kb妵67U/>w-:JA=bώR l<$Ϻau:5p.yDc 2W//-$[ui?DKo17>|CV]ł]&*nS$O8=<7HǣoHgh}~`;H8lQ%:&-3׍rn}kz{4k҇9|c,K4S=3z9ކt} Ver?sCE{7=q6wxqNO\X5_p͍X4.er=@b\̾: <\ZX7d]L嬃SZ/}hdZ9.pvq=:[1c)Ӊ/M_=6 з랻~^ǹق@h(P<zVj&y>~gtyVgK+e1G)j]cw\٪z(G(IEpt?r={EV ]VluDOan@/ i_xvGONѐ.7^MN,{8cJ-VZfO[VJ"cHہ<{>b!]scdug^ey@ۢ"2ppwt-K Jfme*r!%E+,UHn _ N0)k]yt39Cݞ;sΙICb~|9yLţ̑'_Vq,x?rqu%5AٳɅ `P1)L1e2Ӂf4*Ok>`C) ylMhë(]X}&ݜ8Fӛ~{"Lߤte5X tߑ: >l`GdɉZ-Mb Idv 4vu²c(lisrjɔPܡpk[snqÕj<|]*C6ZnK'uhY1j[ 4YDTbQSVzy ThN %aFO5-iޚl>LGS|z?\w'V>d֫Ob+n>7?o/4GK#Qfm?ݠZ@m $A9"v^^=8<4?yѰI]sNlεe=25F5CS N +yja455n 09oSi#]r<=J͞6n,=qO {vQfς۷/ݯ`~ -@9-qq\##f0ffFBOCϠ$Um P(yP =j;`#F]y&נN~c[sn251XkËb&§o4=W#'O<rsSس:gPtVNݒC*.Ts =rrM3?;f@?jPWK5( >k[D:p{(IA=OƳf~[s|xGCk->{TV{nN_kݻ>ʦY]xG j܉{k"YP׸a?WAN^Y7 jxl7\ =ԋτtɔG-yz {JN ?z~kuS(~/A>mȱYjbU zzOk sn'Jj!KG\uM5SG z0k0( ytPyS@v;ތQ_@l(ccKv8~[oǞ[\ˍzaccYǟ~zռ/Gw>'<Ggk&Úg?I$p˛h$%= Ϲ7pFFR}T˵F٢l`ϺcGω+khg`PN;}ibX ӢbN@ n49Bll0e#·O5oz<߷yn],-}>/%_%GWriS=q[M|'Ku;qu5( zÎٳ4-TA0ȣ[|䠎\nsA?Ws{1طT-'S޹ZݯkÍ}WKE\c=NȻz[O=PzO` [ZEú'k?ӎ̀<"B;3ѽ[CD0TQnYL'K?9ss\L!vLo]\ۗj[#TSse=ٳx1_>en >PDuo+ޢk@0iȔo7/ zDԤ,yT}*sG~繝eּ2]p$=!v%(;XY2Y:r=žCeO`#3y:Nc=[*bT`ճ6;Xy0ȝ`tՎ0Dquy-c-V v129;M~5Am~9&8<Kpn +e|nZwXsK@jN#hPt(%A0 ?'݇_?PDޝ=d';X̜N+庖=e@3g!{~w޽˅!Dحz2SuBCE*}٪A870v0S\YjW%i6Plb#v=Gnj}K`삲,L_OMK]QpG nP \n`㦧ιC0y\պg;A*ٓ7V V5k0_:9Jg9,xpaO~ x\Ǝ[|y"{8 RWT[=硍ȺG;?yz>FV%j'ON7+^ݳg&hb8jjT8>cCRJ'j|3>)ypx]ht=2t_`θqkC\ڇYY7{pWeOEFz(Wz:0n){VL=ƮȐTHR KQx>8=@'׋_}f߾}O_XCk5M[TAWztnbOɭt5=h;*(u0ߋOcYmtͲ{`ul. Z05;RKwMRg#&GU>נ{DKLW{܈̹rѤȘUtHD̐*YnCr\RxVGfD(wn d eƒ3qS'z 4[>1{TH5qS X& >?SmFUEAx/S ʶEܵ-R\i嚱qÞ8{PPd݋imi]|3*R=JV=,},|̒ݷT,֢ź@/P!@7]#P}3zCN=1Θ Z{0cS>M ?"{=Qt8Eew7n;A;͔&#ӊk[A ZsuϙI<}R'QZ?4ؓj )w/:=tʑ'S^KPdkAMR91nV;"ksc=+~MLyY , {nUC_u}n$Eᐐ湙`h#ǘ1T*D♩zX<º>ۜl@.7o=&NTCٓ |b(9gkϾ-| ÞѺ][[77_6aa:ƥFwX`Xh2AہgB=c-8`VgOR,Xv0m+J&S(6ǚ>l'S &zEYQ@ax1WSk0'/᜾QJ=rS/pVPtꔛ=_s3}Kcӵ'jʞq?y6)`g=7佥{KXQ%٧ޑ\ʇsn[fdFg=fZ[,{lԎvRpgϞn1ui!{_us2 H)vP*&J?anŸLez{%TDloij5>1TKTt$Xfn-_|j:'t F7\5ЭTS d&Y<`j'o*_մMDF42ZFeϖA{e= G/ ųyHpԱܱ&79%4,րT}K-z PkQȈۢV?FТç>q {~tqE,뙝)Q-9VĊ'q#~hu W({p]`L؃;˞N fR{snl'=3fͺGsc!ConN*miS=_zـ >_yZۺb=S6~{{xl'Q {lc؃颖֕z pua[ 9נwK˳>vs#="W-|('[Gm>"-Q#ɂ?=ad^L{XS~j{{^]9|<{܎R!@yhβG&ۘF9>z=ZG3J30lPX |Շ,['?~ɣdM[qڝa ߿ğ'=cmi)onn {|I5=҈:-ֶ걍d:]@`ԪgzHV5e(}lյC@?FVdJŭfC6Ǟo=͙֞:2-~J=Cj _)ε |6=Z{i{(~)6S`hCk#2ush'* yd==0A.?/bؖqIIW[D>`#+Ҵpi]S~sm_~fٳL&{౾>_mk'hvpzWrx$*y?'jR+1D,z;5"{tH=NKf[) 4gTY!{uǯ*%=[TރS`έǎy",fL;[Mɞ=qOZalXCz㡣 Uz'޳V+=B{Km۲{3[sڽ,O) OF7bS4=[O.&ɛ^ݗBS[ugXvI{l3+cj$Wg[e ;j{2%W.o講A7:dSq{C{t xp>`y==kA<9SYT,k=s/-{bVRﶉZ"v%z_6I^cc#k>l.gjEujKhZ0fQnSMP30$XO|b  cϺS.Pa]1g̝^4[G= {xW}Mw.<5NqgGсS8\=˾m*CޣuϪYȞ aҧUv L9N졠N4>L{dѩ??慷;<]*`f`{=꺰,Qƹ-wl S=6z^砰bI!·wwcC=KGY!{(XkRqdOݍ@=͏U*s^l}zsO5.,u(9@Jd=Sb3}Kkf*bwb-vPt:v8fNh+[j3?;[PAn?hӖcPޓiimt)8a~&ٸR7y;!DŽs Ts CYgGأbU&cǺ!<'mN}oÛO~|Ij]O|gQ{8&K;|j #ZÕiWŰJk6nqU*dtX˺g{r 2m:Q="6=ѕ F XCOHh.eCu(u8F [.]1s5.-SՏOޯN>1\HST=jit]`򹙽NJ-scs ao JS=XF=qkuv6=,|Ȟ-׶J6k'f*Mi򹽟op}~w~ں7]lfO=ux!Ŏ@#+e U\=׮yZ *6>dYt{ X=g#Q$Oӽaw

OFaA؅dN:NhI/<~z!жϺǬ=3-}ڽaL`}#0Lnu47,PQ,z&/^<}ضHlx@9<'S2{ۻ5r4ጋ!q})e{T~i uO{ݭe`(>7s_:g~J= N |Jrk ~g =k(aOF,kc 5{d+a\`Od8FǺdz'_q;f繖_nUsGa7Rc{zƺM5PFLk7!-2VMX{hP\/Qcʞy7n].{|~ɔ;t]>8! Z_$g&>~*87<{FGgι={޳0Y,Rgsnn@4n֫6;Š8DG`3ꡒ1;;s,` =Q"ֵڛjyT[]du< >ňݑmĚ|'{6 ˂#@K[C勇=i}iAUCq`d{Ѻ&k@C(} RBU* <&:ɞWtNzx|O_ i/;󳘾GV646»Nn=u}Ok='=3۸oV]7{UQƶEYK4vPs(14f}eYjj[D0ZAmߣ$'Q,= 8uzaC} W9y {]ƫR0}O\qH<8C۳D-xN5yy &vE㋵00:܀9T"S)@(ՇAhۗB0T ъB M({`O\B&lo44gF)v[XsYHĚd;#B29 >'؁b53Z Y[({Vh[qj|/Xey IG{ݬ|hۄ:ș*F6԰˝!}=$n gjl-f.-dA]Ã͓$o%x O(=qwo6 -n1# {DИ[=#& @s}Dn+S?b iĺ6*wl]$|YI# fjսc\3I{ # z\LeOߓj[drvϠ$Boz|g]=8;r_{{VBǒGA[}c)fK zз.p70ω;0Ws__TMZ Qp5DkC>{b./䩻Q {X}ϟ˻yߓJY4b1^$|FZTAĚwF.b:OW;!}:Bo1v@snk2[I΍IpڝήNFؾƙǦѤSJ EteO}S A=7Z:^ ={ngrnX[ZP"vlЀY\y)c!]ƻ|ڲ'v)wY:'{jy/VyCN==Ȉ&-~\B  `\]cz|*؁O03lC}X8YD {g{ø k/O_\s[ 09|<=vtC}K3d%)[Ǣ'y6O~1#wءYf逆6*[ONP87[%f:y?EA57='/ٜDzߧӥ`K|$"b轎F"#'Kj>GzW Gu?Dc̭I%DsIܽ/W6\+>Eww7@=5S=]}tm=jnQ節N'|ϕt~oCdRlv=rB:0@qZ  ԌM=b@ SczpHOrnⱇadMOԹy׽Q7=hU;cw=ܜ+馵DE |"y+@Qّ=&:IK7wM*׆=w&d<.iL?{ w{VE|2S I"ք eu陆f:F<}jhRIj$9,'48o} }?8j:~5f|ahu1]$xpxUuyV vu /ũ` T>-QߵT{{\Ǩm]=}ӟVa Υ?l{Zf {Τ_CԢ0{rb| IE {e s9*;|&d"֤݅g$j:cnd PH|O8 +xtO㰺>p1k{4_\ ɌN,E&4NIԠȃnƿ&=a "T܌"Q>QC6vAR G졞B/ ŏ:NoTу MȞoiN={E# =2h@Jam.7yoiO,LSZSPž3nWKIؓ({;v'hG^9y߾<(~+>!׍3S=<,y{0Lklo{hͬya0r?C􄌏)#=an\jn?'{&/=J3㢾/>3za{mq`iJ$ vИ;&{$k(qHmt }t^L_W"Cm<8Ó `xҺͭ*#-u/\GK'&jf?ڭ ǖ=h17KwmP&xt19Fl\z<ݹ f12 ,r8)=$v0Y99dÈ -~S=t-X'ÞV;cCσ:MG/ҫ>B2/ ʄG==tMVcsQН]鼷o5ېgtv~(>ʞPkEׂc`_=<裃%0r {< 4>:&=  ނWn=1[O߮Hyyl*bi[3'^'58փ2ekRsdae5;qNN*FMD {$F@s'j{E񤍧ϸ~rLj&l`M/AWUɦ\\!y9/*O~r-ǣgk9;Z|ZUpS{u{QHsnvLĈ;o;ܐ[}ȰɅ=st;쩵tTw38 W6$Yj| ~89X>Sǔl3za>kDɘ]Q#8k̍3=<5Pw}CؤC/OȻ.n>"q|}Q@5o}=z¨AZӮsЛ@o_lj{zGރnӬs[yo{d}R@LkjT#|fz >X 9ZM]8ECOMځ>fh{Dnz8;rhpܰ_̆)!)tUT[kC*k{+y  F.T9$y(:54]"y=^p^A`e vU֪rsw\ ?߿;;~i}Ox̍i݃g]#cn>^cl}&?}=e /:i=hȀLBĚBZ@lsVnOYRApbINA7!*N*1?G] cqw =й<&hVIX y(gaϞy=ž8PKx' e`>ʲ 7G3JӴbM{ߤܦЃ '5m |:\Uߣ(>V-bcW=. c:E A>b}A--Sj!bM-Aav@sRS4<&ԉ[K4Q{Ȝ݈8F {Џ :Cesn:Q{ւF>£y+} , ]Cٯ!xl-\`"o_tz95(x9_*|E߄ܾn|4 z=֚nO\XwSsn|qWsP!{gg'{;I:`d8C= (ytMg^/_IgХg[vtM2>"!}~[3s+Dq.'u ;45>>]\=8xh|*:~ 3NF1{Vm@6.A? efs,|Б1k`fY7&J Cep}"XK쀿pzb zqCccb:ND {zR6\?L^#

!N#ֻn>~z&<v}p/jZ"TN0;Geꍼ.b6kbI 7+a:;jd $ڑ=38|XMW6~HYCQrF.]_2f'<@_\wy>v]ȳ9h| j cMqrD}OԤU(}u=f‡4?2Fq2Dy6~Ysټ*S}Z}a]Zxh`.XX1uv3.c#,#쉪J`,7DARcc&Y@dP ߓ(-\r2kYPg Zˠѧ9t]ϭ:n~Dmz% FO ]V8ӀvCELkiwcnTG'|<t|cn{7޼'8k͉13g2i)5-}Zkk)=\3ЂJڱG"ֲsiQIĚ'5sA'U-0iqv:b&ⳇm)OžD;WELG98#]ógҧsd y17[Z%ϯ̟JÄ  e[mkhyo;-9{ۜd <ޮ/Ȟ.=5 %zoDY?èuj6;Vj,5cv+Tvc:HLPRG4Y[176g'EЇm 1>/O8.{K JǢ-{W7VEo)yB*7O#y%U8cK%[M@ @u XTv<c:EHj=4THL΍3>ԃ?17k{^=;wV4f6 >Lҗ1V;b(9Ј\koc 0W?3GLaSSs 'z;h5Ěn {\SGLٳI\lm HΠ+OT ev&}u^-QQP-,v<th<*fKv,fx@<7cnv97ٸo|[Xk> zՊX#K6+>T(ru[ߓ2;Ǒ>Ɏ?G+ϹA=)> {Y#{ɠqHk16Y'wA+WC߳vT/:=DzssӥSmȑy([ zlї1q v(y ^{yþgP!x!!}|'tC΢ "{p;|{}ٓG}Oxg1ƧW>yY#W߹sD M}K}_voGE8b]\yP"BX;l&ÝFk$t%b1w3bSs;(\h=TGž8JGȞ6c]ߩ'XC|Nn`JWRjsxW7><?ssR@5D\*L4 Fuɞ:N=ZT|i-'`O3}= ,>X nf4z'cO&wq>K4b-j"DL=TeY)Ia`Ϻc_>b{\W;8 =_OV+@uՙ)+B|8v!<5K9zJ򔴰AŘulb[}ܾ!fЭ}h?_L]a<|$e-xQ[x~^=;t=PA)wG[p{SOH:lv=}d(Tv 9="#֌p-S +KƔ!9܎ѷ+AR WS Fsڼ 5_kݵHC0Ŏ~<]$PDtmA"sNɃЁ_C=TKĈZz${Gݸt}~aD p"wq<CɹypqG?rҭ{:<@^TS3@n#|sȓE Y,י ; =G\"GRK4QY+p;{Vۜ{w=ut43zer1 q5Ĉ5iwԫޛG ;*yT0XyҥFcܖ2EGǞ3?k7&{=o {Hg`}ɞ?Wӷm`]izQ}wɎ==>v;UP1koFG%I(sklnltN;f~Ȟ#m0m"/BF"q9Is|g:QyN$+_?v}u}mcW|A7O#Ώo~ssScOЩs(a0T2K|$@-jp%ۮo%g|<C#6hmm`{{` +cn|ix*xbo)sk };0ǔ-`zkY*xTC>aলBgv|%糊.ܶ=={#d'eχ b>/xDYp8NmGy$&$umVJMB>iih§tiʋX狵 GC){'<5pCN4tJgs٪){ozc |7y@tz~z>ߴT8vSq+|F q;gfrKqNS;!,݂uu-_@iAԱnH {ɞN\=kGk~H  }xu%@9-BP"J\|X'yAS y?re{Ov ]WKUUPg%-dU |At͹=H`}uj6}r;~yu~sn%=v5agsn}9sO#8^=9dXK l3RwUU-$-V?%'gcnY{~7A?fY :~fK94EdI%SG!.gl:dMOϏB вGPc\vNW<4I5xk_(r HĚkσíeO899Κ(tx1@T쀕0͓cĚԚqyj7r94B--AGb=PsKԈ!Ȟ#=`t1kпJ;B@ˈ=Npk#D s[Ue͑<ɳafRnC"SV چ/GaUtH[)y'VЂt>Il@MRnTGݨgq3P? [LFu=aޱK5cn~815=n8H"F\%v0GeveLH`diP{4בM2vN졒zn=dDtsEisg6=9ݘ9衎a'G%=j{"/<,yY:$ao8xDcfswCu i=g9Rgb3/N+bVV*jy` IѦ)3" Θ2z\U*L$mHl2\$@s`;n6mHƢw>9ߣ3p"u=eB=y]B|29q6Uâ&Ysm#kY2j8MULןRVvE]\{:)ck\pulus{Ƥ0DTkG&7JYa"PH)UW$=kنvlEؑ`VhxPͪS}VƋ<׃TXp,ִNмSUWxhF{FMQmT+}rfp>ٓ)-=gm'C}ȨpuV!==[ѴR>=x uuG{Zl=&[n3Bs%mϣiL:5 [/1Հtiy:vG{>sq$mQAD V#Ǯ +>PjOU/, ?md;zwι=Y>&co{ J圥O Ha}>0QLKX=`{NsRϭ$5&bM}>*Z|FNw YtHSqm \Pv-n>7<){gnsqli J{?xg,aE'4 qJ^x;'xw)ANKsLXzԱ=k#'$F[zȺAi`!>4g٣Qqyoja5փ Ph|(VQ6)/;_/Ui\V|9^ظqyy>;gZ+,MGR}4>Pqٞ?P~#g)c W,cTOtX =:Gn'ͽ5N5NؙZ} @E{g칳u;n;7c#dayNsCA'yD5LseֶZj`--m6@w#򨷴빥: ^#-kg8W\KG2Xb aN|8Ԗw4Js>1ӬO=/_;;pug>fs3ܬbZAsBiXOiR]\5k2h;XXMIϱ2:S^ώ}|={5c챓Ahva6p9zA?ڹvuc\ngl0/BMOjR# AԴp7f0dn:̞g6)CdLo1O*R# y[m v{«vh ;Uc=F< M0\:H槌Mʵ{@;N{@F > <3.S p͸@ R 9Wk݅Ww>4YMv6= М\n ekXci׍ Cݜ-ervEEu}gǏ='rf1x9^`)ְX;kjU':"bɼdR\?. 8H;Pf!2e{n =0*Y Xcq3֞[k +)vܺv|>7kq+t<% !zj`*-SGZYV=$c&`!c!d'vj!./{~5%Il>b{f4G3 3/Hq|ٱqI#Zha0\b 54MX?~׭nqգĜӬuh;Rd4f;ol {=(cces>>C`Ϟwm}z5.6u$r8M {HI=;4F5e/L~)+ T&{K=yAև_N8 G)AM(S nsMKt#xt39ϣɩf(jgnl؏#'wJ{>NotlMv+4O},PeaeuSm+235F.L v`=+50B9qVu}exB[VуG=jaG{lyƒ R@++z:b|g"yT:LL`B 9y|#AH:˹ P.mi FȞ:BP>?dcK7&rjO) 8 0b饍$٭;[dN1I;+R~+..2-҃`Om?3OƞNy=x=0uA:6gAC'H7҈>r'x6Vc1'BfPy$3 &f΃<]jy:R LL5 w[9tACM1=q#'^*(*zxrRG!/-Ƈ?UsGR^up׆wvfn$5 8 `Ը䫶H,jҒe+|LHv0:nC|FH1@1{`=(y{ucyg6 {úy.'=LQ)E 䒸׆| vuIW{׫GziLg^Cɀ<5<}#I {KY<Ɓb[xGunO(QCZ 8'ORA|}7[5P$]c7)cBHz=9`2EDOYI {~-+{T&Ycj=?n6|lv%{E)n-H-#[\y竾;"ܚb&\4R LL5h6[X_y"M@7MRۄC$扺Wf{IKYynD͐| s5-U0Tg)z:<{LGn㪟SiqDSך+{Jk7rXWln镏 X"1':ks#AOkYYó;ǘ:ww6Y>{&cܬR'kur wBZJ%g>zpK;U$ xmœg[UJii )P~}_3-!yX󘵍[{[*uuɴCuSG;Qœz_qS/֦|;=cv8ŜֿNP($?~>Жϓ[@Li4MH9FIavwu# ^%ݡ 9DRcoqs_-BLFS @ .wy(/^atYg=#9<˾ўC2q?g{WV1oH-yٳgzg8 Tr3ψƖ{R?G5%x_e\SIqZ5UKX/TntwBc{2j[q9=Nv{ !xRޓW-H: 91%[MTO{6mfKNyG$0̀<3֙a:S JzK'au zK3=߼2#S(ɃGzZmռLP7Ub 7JAC?\O/||C:tDB/3gM>PX_ME(;Փǒg${gФ|4ۨC] 'bhʫ-#gӴn'cOge!wXP.`>87"ڮ2o@ {J Ј=xbQx4 L[7{p,lG"|9lJ iȐڊƖN6 NTg11j}*`_vA7]=j}ģWb?T^#׀!{xF7=[x#ьy9Eh1,c3gN.j~8+AjXWv@MN$铞v 3ݠ< n|\عbW }G!Qq9sYb uOlX:TH?;{~9ٳ}u?__`j w ?32Ϛǩ:'ǭEZʚ|-za`892'Iv3M Npc6vu{d5v-Svc⑏ܐh0;׽k{^_>RңaKB'oy*=po#Q=v =qO qǭdťҶf[#cbAt&y[mIyqn#uc 7RG[;іMl6}ճsT^vogӧ@\.ՠ7Tk@OHt Qٙ=/^f܆}óGx+-rVG: ,$ϜqaynʻMP?knV[!bӞcװ#}rL/\|@Ek^E-m@`Ɨ˹*'h;b]˭B&Ǖݿ|XrqaN6񷍶\Ֆ=&({:+X;P~ b3i깹a6=݀+{b'MՐDŽo˷筷n%aO˞z-I5\*=Km2BqiTS^ԴiOg>XqgCX3ir\h64duUp^g~5%;[z {+x4T8fK6%{cu=Tڄl<?fwt" C dζoݺ'du7SigYXZr{KKpYj`koƤǙ+= )YZnj-[9Ą6pV妖rv@˘\>-S|l)͍qo73>Y; >GB_h{s5|tjoQrfM,jk=g>kvP{lrl! m`kgbB|b1i3lAeڭ3;=efC[1qؽvϥxn{v܇?X`9Td0'TQ~q+~[yw~뫦oyZMցڭfm`T%[11ՠP($]fms$OԙdoiӥpVbuxbO枫ҕ){|,׎]6>QYX7lY}0(8P%(҂ks>gqhar:ca:0NZ[-s%&b#QQ6nT9I)-W2R~qtd`r0!{;7n!{6ˤ1U8q7WsoZJoC@֭{xf/R; [$ͺ|\:YZ2)OU=3U:;{j< Gء@ݙ5㞛{ DW=ZoO kQOAnR L ՀJ5;|Dj:|֕j嵻^(yĞ[ngu3# $H㛕̚}Jn>rS#Y喜URV>KF-qdo~}8SO>3X:7q5ނъOC'Dt'5rv~u|! PvA>ImrsM&|n7z7x㍯6),{ ꞷ 5p๟sl/\Q#gV(bIeiI]yFȳj*y,-> #,y#=|Q+A0L(y$G\`I;elu)7؜Wπ/|ZcҹpύxX0C.dO_䱶e03^\$pI,$xiͻd;Ç\li_r>٭-{ZFˮ֑s3=ʝns3ezZ?AC>7aسrSn䄯5"tbJ48~߆Ҿ&^WCZ^X =sC٥?>y:J5 y,OgOƿ yVYsSdn xͥPueF;=XcuOT`HZN.-/b }|Q32WBƒ#XAj}fiUHyqWѼZǤմgN}y =:'SH6U۽f|=>Jӹ#HAhŗ=Ϳ u*pm͕<T;)uzT[Rj`WuƸT7;J5XgϦzR n=yM=+(ZS?Oʣ|46]h兪H @lq{(6h=[ [Z-e)/:`1眢=73ؓ)u;Z=h83Vy cϘB=7p*j|hB6x==B6="c8͖z5px> bcy:{~!<#{|&h]bή ?Dar0cG:t;D-'j(8&~?\]6Y hң 7*X͙Q ύϠI^q1<EoѺ-7O>x9 4nj8DХw!*ᅛO="^BIaO#/DAJ< V @ ώ[ĉ5z@sKd~Sb_t6SQrS[KrKubT sI>j9,{n[ŚP&4XOp+8u49dm)>i w6;.SaaD%5^i/pfku|`ܟynho!{LrdA{CkPycӭB{F>ybI@kZR .|}|t޳/p҇;P7\&y=($*?}Gw=zS\`ύgT/TC S j26G_^cA tN.UN|._Mdz=Vʇ>g=|H&t5&i~TFS5Iv6z頸jXH ,=u*ӡj`O&AAh*M<-<$φd=ϯ\;/vJdy)A7I}vyok/ \? yqA5l19sfs6JJ;Gje¾R%E2<;7包b-A.})'uNk ~nzAnoN/3>wjɶNQL݇yn ~|F)jkUu wݒVJwwJ><0:k-뜳XmcTHd=6fv5թ2)74ty3X Xg:\/mD Ž>(ⲧVGֺǮ`ͮjTy\y:J5p5@L66hl2=>!z~_?8z&| rxd})T/XGEJt~.ǟ Mkg ٥Eu8ۇC0`5-gn-< s'7FsXBlU(d7Z!lo[PbE5'Qi?&;siuuh[>Q]! 24RO6~ܵtW 2Xc}n)6GT PKN#_5)Հ2Y#隑 t#}S:1{WC_oїMb#.kBhc.S ?T $$Op:p5Xsn)?{նz:&G0YgΖWfAgaٍ%q“m\bFǛ 8k~794ҮM{I݆xj}QӮ7{ہnv0}Onٓ)x?.!M "NDǟ˞>v tRutރC&5L\\C#?ui{#\k(lG49O8%g]Oyi[Ϭ7,TbA)K4B]x n=S:+˱22WMv9EFoQrĺty!^{L\7d\@]mCkD>7= x=/aQݣkɳI&4J5'y:{nQS/et <]~=O:{:{/~CeOf '΍)Zwc4m}ւ7\"X'Kq=]cxP2/ZHhݔ}pϓm7/gdO GL[@kv1M'ln) -ZFRkuycϻO $W2Hrar;Vp`p(ЭiqUU`'{ e(TRthvcdy: {QNP|'ouO{@cjscsT>rR)A\ k~V/-OyRq0Q O1]`9.0Iki:j.= @gsh@4@+kd˩xЌiΒ)֍8m2ւ觙VG?hłp2|`-5{2=ڨչ'GcJS4Gѡ̸+N~H>0l H#;"O\=>ׇ~v=+jm+k }X]ϐ>k OJ5. GўC5~Q Ƀd1䌞1y2YEl|pF8 \H͢'>[)W Źщq`25 ?9ihaECVKD\&?GZb;(?BXs#9G-:=[zhuLC $mq$=Izz]{/Yݳcr =b@ܗw2លsźg )נ Ǯͪvby:\/Z[dyͿ{~z*ȞzMGnk1pZ7k NN#en!zg`5(Ν Q=bmfʏW&kEyE]ϧn[D6*ɇR7=ZfrNlP`t,KŚÊpiˀ#x3e1{txY$c4l.g}W_ېP[)=^߲ I{<{p@t#t(CY].#$>?{:DOǤ=#:)[)OKvvܡZqgy8h5*` .ry9חT4S}}rnϧM̞75p#Ԫxr*v ?d <·xn8֜}v:>vzQ[BP0TSۯyn[j{2=N}>z33;t݀%@t|av@hh #]ƞl)2Y'>"ŹuOy:z}/)gWa`ٍ<}y.+{{(}-{齷 =AOWvr5;\{@7fY(:̱-{Rlynl@sh1#2"uXI}Jrj4˃'y'S J U}ZH斎𣈈.?wuTYP9Y&-*:8K>L0~au~z/c`í~vfucO\fݽ-,@4ȱS \t5{>gu1EF{s3{8/#s 6ݩ\x #T9M7[H qkh~L|-"ʚ zN`ɔ&CN|U6$v\%{f}w\n{8Y֠;2܎8n^z^{hf R /eYzE<-=׀{br =ԗxBݘ@P =T2DMR݃=7\pM7;n꞉"!x08ߚ3g_g̳ZLM|oz#S9ݹ6{T*vqpAP:~Pb u,btGu >A()˴1mJ%O6CX# v NKX\ȱsnnstH1>=x#갻Y*|ºڊܨmsRcgN^cᵞ١:sF xAoNnh6B-8nMKğ9@ | =+>vC΢zwJy5mw] [>l]PKPJv+A丶[aXk3}R5ણ?Pn8bK{}V+'BNƷ}=<}5< {1C<7܈)eύ聵)nRɑGK" JQ[@ishV2b.uFbI䎏VlVVUGbS{JXkrj(:F,Xsb]mypJ7tԸ,KMů*.=NjAG= {f@ѮS#*;5pjsǓ'ۥ ɳIz%Su4ǡGu˟5-=c}a)jH' Vwngn&p+M川BV,C5.88z̮KVtvXop&,{XJ\vбźdŚ=P?qcbB[jjq= /ĞLNZ?ԮP]6iñ=amyp!wߣRݹr;{T:ζT}w'yOg_1[s2l/%w<. [s8M=^7i"xZfKSuBh|=7f'Kϡ:hTh-eu&yc"S[/MA+$\cis)y㏉~3D@ h.TINW`vsA.-FO:<_vХ o܎Y~~3i`'I*xx;Obö= {n \ Ϊs3\ez  -<K+IO+~l\m?v)6ix'/,z ?SiUjA.}=)eq'Sv hVOT`-Ϟ{dcc[=Ɣ!R.SKus3l?1R0OGt"<3U;BC=tkc7{2ehx#xDJSa7%yoϱm c֐\=qgK4,EnʺG2i c${V=KyyF@ -g51T%tt1ɇA;5m7 FՑUtg,:W>XCbMAՔM{°~TL˫>09M<6Z'8>mPduOnzYCCv>>5%!{ܦ=+)qB6_݇cꞭKMf(R\h~Z|ݬL.Og'z@b~5Q'=8\i6VeOC|y 7k٠'nK[sS^+n% ]Prde63gLu5^Nн&M6I|9ZD.M7l݌gRR3Q\R#Ctig q6HUO-:`tWQNƞL>n&pMjq emgg&Fw`ܺc9g6n-AT:R}H5ypu~ȳX"إM K4XOc2uĞxB)e#7=} |찧O=',h޹^)t ~z@Ri ^r[;hB紃X 7njnvl"܂KB4L+;Uˆ!HG7)M'Odz<ח`M yYc=l0PCA)a^[j=menJ5$k/ g1GR(c{R랗~{n#{h6ǯ馡X'-͖t|R]=rJ * $5Drjkªrqڄ曲sA.JXkX3:o* *F+&U|XnܰLNֿ囱-??F&xygw?Pt k=V\ascWloQ[G"tP=~,`mEF~,qI.kYC>|XtscC>ZoObC8=X5@ ^8ԱXIk4#a)1?/熰N:@ S#-jB) =ƟD/i Hݼߊ[^*?h&RVYju{d=l-zoC}FE/UM0D'?{{ ~S~݀a=ܤpn閽H[neia壑 DoN.:@|Z tjSj."M6?s#UM;0!.Ivs|z!GgNd~"}؂ag\QW7L7ېGeO0+pX>OJԷ{3ݿ.3VZVڮTU0.tF5q`d;(01 ^V@l2!F p=y=*TUu}^z_w{ns:-I>7)չ|atkL ME_6Ƈtc{XEx})Ju=2]z5K{V9ewF8n+Y&ޮ]-?=1x>Y+X&ӧ J˙,Y DnlNVxnLazfuDg{K#zON52Q 'e:'27.Y><A8f+1{~4lAb=p{K4V㳹vuLkv={X{HĮD @wtQl 6fhb9p/Lk-:wg>fkiv4fՓA!״S" C*Nq=Ņ.[Z8F35  QJs=jj)n.7b|IS=/IC/ 7};pgn`Wto9< #'H&|:>7{>.NLb#ܑ''v=3yQvt=n 371kAnjs={`|=q55YX{A\%Ǟ ΥI6kfM[:dyӨGXSgxִޠYS̩bȣ AmAinZ.1}T#N 4USAJl{u}k7Y? GZtRĶdzCw:8qqlAt|=q7>@G2yn{oO~}k.6`!d= UW>tl)l-@W9r~I|ǁ=^ݠB큋~7OƟȵK:"cfju  u>Bؔ9Ԩn7%Dq;NX{tyg̟v!G$yI4J:Jÿa= l&[,7^{NIҏoݳDzGqGnfϛXq=dϴ >Гs:.նGuYK,? \DuրOݾ`|xm5n`LJN&TPFB|~Z")ѼEP顱g:r7 dϚْ=Ro7سLe~ykw9ᄐ} BNobq=g=OD`97CwuJ뛪TGǰG鋗Ʃא50{=pf5{v5]7ܯSѷKJ =1>,R`DOGFKvPzm:mڶFA@_(<?mC#Mw&Ч65;uA UC}=Nۼv{c}E:w8Kw_nǍr>e =r_j$==!O*/e=,K+ =3Ζ{ }^ЪC8d&8}#B(=Xz~v1rB˰h[X/43&~RPpAzZ,a.Aڱ`b aL5iQ"5)6;͂>P'fO=<^Єm@OoyXr9cdϳG=SGfK{ʭn\l0hl$ݸ+Y%f {8nzBa_mV ='SRq|_!e[D>+aLЍCuDb MIЀ *A|$`MJ۵+.ǒ6]K!cc~5)mυ>ü-Khdz@҇O?m^Og_s(`ʍyOr֗w#s>>KrO8 -s}RT iȃB'n@}|!Þ' {s;? }GCШwYGTJ@_!ҩGݢlt6}ϧ-ߓ̹ATDgS{Iy$"Oڙ=7oNJ! tl}xwM5ȃ5>hrl{>W> y?Xs}{v`Gdv4C^&~g8Gmocq?2FL߁}跪`.NfϜ!^J}H=lm=DT=#}G#9rayQ8lznDagLz5 1kAέ?k z=R` a|5_0Wjy_.431S$mDٶ,Mxִ.=c, yr3;H˲dAm|5QK▮=^ 7~PفQڂGvyV܊%)1q{ǽ @gq˅=oH}O|zV|d ~&*u!k0{X%Ju`zrÑ(`vUڬf1T5bQLhB~)!.Wk0?HhBn 1ㆱKbϹeZ>6=حF{,~4zAG|X?TГXAgqE2we KX#zF{{H0=$l.}^X0ܛϗ='IMyO<Љ!f穾KnְݴUbGϚbTR/Vk~6Ѓˇ w>umFosqX>[|I,O@Y=sGuƺ\Z'-Ž{>$~?{F7}c{"gA7sͯYz'Q7~}*k@BՎ>@ȚJVifsZ +yg@ba%)#fjj?K5S@M2kOhv0hϕ&v`)N*܈uDn(ߝ/iBD؃evym[{|܀^.:ud[.={~=#N?mC֚=Gߓd;CąؓLXNYP/:'c#*0jm;|*{Ees\]oK>?tB5-|mw䅫I!R׸ u 8c܎ZNԦ >?83qStFK̖LT{`y+ MNp=Ÿ=E|{>:kqVx80MaQ)yP@O r_139Jd1|(i[渔؁Dkɸݑ{&l7~4@9x3}c-RlODr <y&'5hǞ9wX{J BII͹u:-uJ]mn140#w4vw44ӈ8N!T KY]\t?Ekk䁛Y+9.lɝt߃{ vM^_4{@A[A=5 KG>dyֻt؈5s&h;+tK8 {Fv߃>YI| ,c}=>*l,ױ:kv^]=兕Ņ -Y mN9( 5 `zvq-3rxbж֧ >KhD߃5 ]|=^ͲM9ʂ_}Unkmn * VfֶRuiWJ:$ev, k;·ǽT `T 6TǼ5>8QE ^sy%^ IG`$k`=|ω,Y`ͥ`O$\י

ѸgR)q?J,苮qQ~U*hi׉DgbPĔm qe]ZZ]XO.PE ~L`K<߃_T9]=^ R { !qdmTL={wTk"cXVF=a=LnqlVD%Oq!j#ٜ -Nxe<^NbGS]hwZula4\./GA!oW6IZ| Ov3> QB2_XidhOQX؈5I3{fJu`{'U=`O2k}X4*})HC782>7{z-0}zeB0k픸GF}onT 6w4!DqSqHDY&Od5O9AA`烈5i QnxMPq(= 97E04s͎C]ĞrX$ZF;)Ay'K#>HZ| e{?J hV+m5۴qzk))0TM2q=^I: !?`"UU7Bj=OG GGÇ[AO=;+6xow# =\&كR֘|t0Uf?8Dڽẇq'v?K>*n^܇T'~BոO}JġˮHóƛF:Mwb[Ž1;Lp烈u#+ C|ɨ|`t@#_dN޸QG+ 2F){0[j| {llUQ~`K_ vKD{j4b( uEON{A9BoNhrA%iKfƱ%9%I|(Oa{ִr!UaܧQXH V=Բx"}n'+f=4n*>X+ӃZ'!{˹!Q,{i#7<.pYO-VTjP|`2,I)(}jje aa7Fv zXhz\c}1ed7$v>3~u G=R}yЬa=s1~t5`X@O0Ɠd˵LfMnv1']MmV_eNH++I<?TRn{1dw,Yա7`KvCbfY^G{As~h@̍^0{F_m1yc458rc};=8s>qH1g(pj;!YMcYU&v45vhA~v|Z:_Nh:GKqs ;j3`( mlSDyf .s"Gu4S0S0nZXt61`dBfh2k umf;v3(ЙYmw;e*u+D 9nZ]\ft(;7ʳ Gwd5$ֱ0F#[ v@>{<}F`C㦩=s۱Lxy{ɳ?@@'}o)Zu!Oس:qHd ޣ3|XF "HQ`ǴX3zt== FȬnZG޺DhXfF{8٥F̧A%dZԛvU)EKݬ{YWE0cDz$^c[:yI~C#bEY`7LLMqb\>e"C>.6vb둸~ faV.qbe934.g, A_fRX]T"W8}ݥ׻]5P&^ :v`]}$ٛ}t3=zsGߝ#9m'{S2}{2R~ %#7ι%!Łk#jVznSв,ԬJw X4a 954S,M U-)Vcz#5v@='dC'Hj]O|D8' yQ~B RYRaO9t]*f > [ݶ#O(w,VjyzQ(R@ yh PC"ݥ^ FF쀔c, >q 6t{̙ۿpA؃ #gn྇3}X\ʶ)m9 bjˮC2[*m_&Sn(r7lFC94ikKK aW,?Tʶ2aŤ\Vu٨S@*˥:e0uR F4}-㦓g'A:͹9 |R{4|HHe|s:<=왋sy̡'Gkm%C GqSu+n/.B1hb S;Q|J:["g3c>&>>6Yy8졲9}> 437 8R5ArSR(CB=d ԎDlZH*T[m 8&*~y"%;@]&~J % C*bv5Ȉ^C#ϖ`]WCM>^S1Q86HLryaeMė8qӀ]R=$8AE*wN?.w-m )) uCmb#`=r|.;оGȓyPF2}nD89 |=N`BFB*O?+>8Eq(U&ܾ=_z{KѬIV+R,O b=KB~ဲ3O]d .*P@NmօBMr :fǂi;`}ɘegbɽ?]`sƣWqf"ȓZ8d-sَu:78Rq\ ecD U`+ XE>C%(.q:}ݥ߂@fMh$Srh+JL-f ;HK$)g챷@`+sV̞wMI=fg[&$#7mbz0zPd:_{B~lSWx0&)FU,DEk3te&:ѣ}8ts©Ѓ{CZ372=,b Cr㦬>xÙ\0$ep3i&ɗx /CtvG쎓ܑLsg6 ogl{nZ[q[T{J`VC/&{~p ׈-I>eӴZ rH/gM+NYWUf r3ڀ`/0}KvZѓ_i*ߣca؁ϹeN9ɞvٟc㠛>ssy#7 H>Yfq'G\*=&%<1Cq /b5K+?e^ZuGh6@gfeS~ܿ`nsJR'qfl_ ,Q?Q0Zmnٟ% L;Ȕe=(5>x.Qչe>nݥn;/r<ϱtMmLb&UhyA  Aw4lah~9!9!Ϛ!̶fOgn\&A󴙵C Rb % QY=^~Գ9-g F@0' \2IY鰁Z'vOQdzc} cd{9Mp~P.AַY6 H]tvÆR0,ڵ5Czv Tbw9V WEZ'K4B0X]Qu4ڡK*vڔk`~gP`Gכ )jrp:@h)!!eJe* &B[*A/>o/LlϤD4@ jSg3/=Z[>5;FwhTL> *rФ;NW_c@4Ń)tܦ YSX2]R>OXln< ־؃ m!=E,kQfT[1wb֒qS'n/ažq,{H[ܹnp:۱7|OA(wj:^g"4>сv7.W[DݥfGik"誵L YSF|}|Afwk_z{Mn:&:|$*C=ws>=Aw뗪>ɹFQ"c?!ct>ǽ͞PKz J*#UՕ^oSS]j(G3T|g.#׫2ͽnڟa{ 2#_vpIs&SqZM1>uϋKt6أED}a>\&^QEG{8C~w.}P3K.F}\J#!Aиv&1XhvgfRhhtOA_vYC%v{%?nz v ۃ{=p>>7Tf==N|bQ7-xlז>v/G1R?J_>?z`Pp%(Ϛ:mQrCQb(2yl%v*(11hqbIb!4֛rF6v{.\&5Vfω8ܜ'~+#m0||x7}л掟|\ ~  yv9٘\m["]WG׷ˍ ^QgqJ>޲?X=p{ -_vߟ=ﯗJfrn:c O;C9Y=@q%ܸP/>PX_3\7=N>khaHxmˡi-Sֺ5Eĕ+h>BhC1hM-t7;iّu; [M)M=$snW= >g=|YXϝ}>.J'^#O:=(; #tQfݾJ) 1kXrӧ\r#@Mlś& Sp?Mb22)͚vGX3Qb=ӹL˗\A{}bC{tҀs.̻(Mxݶ0H>a'uٍÃ/> /lf8G|k3Rb͌閗$ۖдljowW\@nc3Z_vϦu./~=oˡ[SGљl^eG6("xDO7=f>]>z 'wxѧ ebk/\%G6̚K)! w...ll RzN/?s="{=DomؽԹ==@;3輢|87 c?2LeS(oV JªE7S m >)Ѹj9)CKKΦOvvp\<9,gn١ X|=I$c\KK7" g 8{W٬` `/za2:r-Gste^?)8QHY$}vu{t%v_{xe\19=+6{LZ:unRN{|Azώt1{HN"ؗPLaXVkszF Ӗrɜr F1$)"VE C]аQs#R@+ˤΞ&{xE 9ac粠[s{ř)d p=;;bzCnm;Ѭct:5E%\/,o0k7"N+oLB L'_:Mj;r7EgҾ{$kmy)=af hA{ {{v]}5:a`chfڜrR)*A^_w9( ZhDMoY,=4PDQ;\wk='y2{taϕ3x-€O_-){sֆ}{wo)"ʲƞM0Q|ܰ'tӾg4`~GM3 X/7oR<`?yZ2yZ 'eatf- [uqFS:4od=<ʔ;٣2ziB;=!7#7BlPsCldL9k QA=($>ΕؼX]\Z6x֚:#has^ {Jo\,j*ρ2{@G[= r)s߳؃q =J=jpFIJSm&xܶ/hTZ50VW766,iO#?z-uihRYf<' gZ=?W-;!{xϛ=w19qMӅB @H sYV9.Qbɳnb!K], @K#s^^cM_as%֖CS_}ϓrn粡b{R|/eűA79"pXd1ި RlDyF68CV&*|̹>s"uɈ|O4n7=7 M燊=S֫a睬DN<=Rm}nfT]g30n{<~ q;`1z|4:U`.g1@(@G_'ϱr^^{PvIdԹe.l P% {pccaa}ՍQ߃CTaZ(A\ۖO W`q\Rv)[>L8e;^});^yN|tĞSs+nÞS}vt@-?[m=XH{l|!<'n+hah^TNaajzY^TI0ؑgn7@yNF||i{>Mo}_ԹA?HQ(Os{ct${^|]HI~ܸi7.;?X!0Hݱxyy`'=3[zy{t:t\ G-~75g`΍ݰ}; 60ߣ-s4\vQ)6wx5C '田v\i3|WCVI {OnYe[v/4"hXlֹ`&~ c4@G3S4^^vދfӟJs3ք.M9tX$k?qL7xc`юBi`29fO\Ӷ<//Ϟ+ĖL<'}n{= sn'2{0\ڷ[Jy;CgL7#$~d3^e*_0sτ%51*|%OZiןJgrV>n {fiTk{5ܮكC7}s*OD} Fr͔AQuEzhsn-//Ϟح-L9 =6ce=oR Tu:kp-9snVyR917nqbdN -ϱ7 *icT#|q9=`=f}ٙ- c9 A=w=><LDIlN-ARHd|ץK#}e9=?lq́;2U% 8ٜ> å'&̔N^Rݒ<217\dU>`e#Vd?B, TQha&pY`niB,#s=hP:=5&Vr 7{[v_:߯f.G_o{gnƚ=9'Tǖ{v{g{O2,k>mmS:v{M0w.Qk`onpng㞱~ wb55C%ҫ(:VY_37zrό{06$37Lt=90 et{@:%;B'Ҵ8>{9[012XbX-łs8{\8/nٟ?/ǖ ȵ_mp8xg)ф;>GLr3=ecCjM_"~3O T%86Էn*"ɫi=}sÇIV\=1gH Ͼgm9ӀIT|\ytGOTፍ\Hܳi5K T1c}}|P,ruS0 )PaЫH~Zi(^q#{3====̩=yvӑ=p}eC?=c+ 8-(JjaҭOA@Nq{جi g N<-aw]{I)-[Jխ'c>fma~] %,'ݾP ܻGp=:7Kugn>k:3l{*i|aw5>RaPyJ<V+ '"EY&qz>rrV|.|4]{0%+åvjƺbȚ{K{*ifE 0$;V7f4S`V0Qd=Ǿ[gě[ y{ܯ>qU eA,F<`#UD&|SG,ݶvo|c@=rËP'r T$rf 1 EY Aiw>Yjֺ枊r 5%ymo#{=1=>7SݺiuĮ_mMs @giu4T#ǃ^ A˥o,:œ[a5ty=U Wd~T7'taf?sS<=.*oG>4T"e<7t=SgD=R9y<5IZ7v˼s_b哟u@g fHpb4pԭdW􃸂{ ZyɊn=3BNpٺ)<9ЫQa3J1w],8SEܓ䞀y輇R7loR疓P:u}n{ nl8c^N Na=Jyocr:tl8t{*wer:ߡphɱH|`GT8J@RA.|~`[ghyDn='?|.t;39;E=ֶ9K ֙}pc5H;2M>XfgwΌmB?'@<ચ~7㞠KvB?1 |_7u̍ͣy`xk[.)}$ ?mn}nQl\#ߓ=:7O {7<:| _7u<5D ; ]v~o*fmcHMb5===-sn#"Dy/,=vnך5dF.H Mx; ;tKTD<=eNxfz@#M<ҚS>lŇkG`d֤awqWw҄ Qp,8q(UJ"QhRAFՖ֙mbgJXBղ2kE0B*]2jGLbK9{{;Fwy\b@Wf;N?-c ^SRܲ`5Yw,'=7]FFR}2 /|4<ӇBbvݔgn G8^S,wnOa{l -/&hEĶt΃;zF_kn{x=B|MoOm'޹ROEwV؍TCjxObP=sH@AgqqSC#C"G B[s?MQЃo?Fumݼ]/dc՜hz!u_Lb 59*̦'=7] 9F4Uwb|@f}}|~@NC>z>歕0fCzڿ {ŲUP H\̖^Cfu=ghctoYu^gջݦ$W|\Gss xnarQ?Vxk>{9$ĹN{k`w=lG >QÄ_<`f[> mǚR|ѩ{7>-}r}2X/ kLk|žpRZ yG-zHZ39ȐWl#4؞i sykAh$m+>IG]-=OtCR=}w A\ *X(Iy:$119!ĶhfG>z wxdH^*xOI[_suroD>"/\&ÇtU=As>O Yy 5MY+Uos y]3?3=n駝ZY>vDv@ǖ> Qu|ևGcvc@O$Ⱥl\E5N!x0!mtWq\!#YZ|s(~xu}dy&b&{0*joQ8t_2u*HgMӧ~9cd\:>ܿq+ x,ψJp5kRq=n ?rr{#Hs-=utSҊci {E禡GܢS"msV}l[@W|ED{qce/{Xsv1?y~A~ql[_\yHأ!mHNP{dåJ52u}0026mm>4}]EOXq4Ggn^?U/r},u'ˊɚr+^kM}I v:0Qe5GGg:>i* yٚAGuS݀Rkz(O!{|=OPaܰgKk:&-ZֶUa`d4׆aR}hb4jdrgJ~#*)~H:wfȋt˥O2l;YX`aZU|uŁ/$MxsGMqk=#1=G*XƧ*jL*m4Ayda+( z?@;}8Mo2= D܊- Iu&T1/=W|Z^K= 6kިq|hc¿Z00 <g M+Yxΰ3?$]dԇ|}i;brm}֋49ci%czNsc`QU{Kc~ƫG0029 usO 1yx6'Ka̕Ƈ$lH},+;ER TǬsK4Q1\_%ϭ$mnscNu!TsC^~UD\y?&u4n}2'ס>*y=ax\og/HTmV w,$N\i!=jƞv\l͏?MDS<V yzCNiS߮Cv=@B=tfz{̩*mge0'hIrLwV@#[ .x:ډϛRV{R h 0029޾ly㼏<_64.E;δ>}i=b}|A+v,X(\>}Ol!v~dCupF*= yf4h-vֵAP~׌ y*llk#>}ۙ>3g>s*}"2@\}eH->Y >{ZW<Ei϶jOݽ=ֈM+.<(qqM=ң!. zX%xcl\ D_ӣ7kk%[\z1X .ԕU\ZCVu&NxdD)INOMY`AYXYVZx ߶YyX?q&FzJl}8SuD1=xAIDDٱ/=ǒpj>X-'.;a;,k׾#nP5Sz[ yn=aQXG?nZ9FF0{Z )m2>͙I<6zBGlgP衏^ٮ[vJ>_:Mہ\Xkm < +GT_dz)pMAD=n1>8ay7'002#_D`"|[&GAgF]P|;>"=vG/(_6% {ca)X(Q[ k}ϿUqK=E!|O-:k')c c Sյ!GLoTqQ;q=D!ԓG(i>%J}lVCgXm a 9B(+;pF ML:[xkW={f =Qu{ۃ@ri{Kה%<z[>LvΏ<8U~虚̢c2`>Y}`|>%`vɴADa|nŽβ[ GO& y|^dz:{Da_)$@\<"-:wO`46F<">hnܵQf59ŶT1+|(7g07>jU<:],y>vvx+@7Gi;c-! ؜".> SHA!(=oQUm0 y.BЇx& }\"dr8Ob mH.ZBɱ>[C%䉘>Pv,_#{.+7گ'"CJ%C=wǹDAϻ5}kDƚ>& 2L$]>CDm|Hca0}@s}͛ gNe(å@Xz;څ Our\[=D@K>>^ʼn lxҷe(qOw%59-OكqSaP% :8^g0}Hf{&2zXb-=9Y0uףG= y$gtMoNkH=*վ:v~;·?r'O"?ΆVI; wXoK;=aDߣ=x +ڛ6( =<3]C9ݭw)fA FSb`܊| !>W}\*RY粯ރT$V#!~jq`Hc5A.|"%B=$5B֨g1ޯ\+ӵɄD"#ǭLoڈk d =TdsݢS(QQdm>8yL<ȣ]JDn0} ݺ-#7GnwÎua~M@^'SGY%-1,/{YCK\:{\GMinOo[FN`|O}b=tm6‡?N-l|FuF ~i>,@b~zdoT=8Mւgm5e%tW9&Rs=>@ O=4CrU Qb S>$>F7P(ϳ3*,7"O$Q.[}dylk yЁ> {K@Xx#8b_>|G0}@8gl|Ї5(QDAAx^5YkQsxCC >:Ev,H2"R=[ Pb X}Kxh7KS@ Ly5)yJqَ=>σe=wk~gZ$=o#:}X#|OMFԋ ٶma'έtFv(M rW( Oؠy!m<|!'Tߓ?zݮv*ty9ګ\\MEh2{{t%ow&Ba=-{qQFFa~i/}8a{$ki[ʿn"Mau Y12mP3çCG{O?D.t@ҍYܼ)*9.(-|@ewD/?P-tZv)ɇcKH%*Rхz 5FF<qr;71ypu|n#}-քMsSBBaLe=;oNc†9iZf| kEv֖:;OUY22&^"5a35Ja>C~SFb]8*=8d>Bݞ>hz|z;4g䩶*XOL|($ɣdHk֘_HHom = 1O@Q>6*xȇ/Q/G[[ CM>\>rs|Y߱`Y[{W K@x\x# |.?×.֬1|#,t}mac7UHmCy" auSAGvgxAnjm~?{X>,ώX=Zر`>z Q.WM7*{JJu{k֘v$ T02!؁mFӯ1xPa<߆EG' hg{Y+9--G67<|.Q֎wתg0bc %hJzpg3{oqW!)#yýsc(qnլ;5{o,Uggqhq|Of|t4 }@~r*}@~Gk7zq<Gr>|$!>(U|vkܺ8m3y=t^FS P6 EXO3/?ISF?HiD&[HZ>O>ʼns׊ yP@ρoo~eiHևGzTdUt0zq#u S( FTS,UO% r۷o;w X6=ޓ"zypº={lO-qR5;7{V~;$OtbOkGK:;~gd|^ fض`8De>L7 RU?K=T[`q@'pG#am\c_ѫyC FPpUeN}OGv$j*jcXL@# o634k8pmlAG"u>LGR`J7n tfP :Ua ޓa%倞n}DE7s(D vDkKƞxrg鳓(ȅJT>+>FFtNw*i#j͓ҫ<#:g O.H=g0ghhHLXGm?}|@ã͎3^ÎnJrA0-kˣ˞NF_}I>nzt^xCn(P"s6:@#4\bvBڪ}# <`~X)\}mn5`(dGl4=CH{1G7yX9yGChMՠ4o瑇C!}a|q>- }%>r>=6}g{J7z,N7Eś>G%O:3/0(fOSnd&Q~BOs<HbqD}+5Jtwz{o}{{Up}⊣Qꎊ;m\, |c6y@QҍGT=XMQas}kG dbDK w>OLQ^!=iO>ƅ:u XUDSxyns 3~7,KgO[5R-Iyn%ju{gsMcHu64|nHGeDRluZKBnV[;ۖ䴵BȖVbr9,u+,bBBK34(VD )x~X?]ޮ ͛}p37Zf}z>=`x[٧f0S ʝBY>'闧pxx41=cKsEGn|tg:6Vs#J\=?<\i탍֎H7 VkP?)yݨgLbs_jk`eOUh==p ?zm~^{(غubp O@@Yt'<ɱir2/8g|}3`gR.|}D,>wx~-玀cXw21pڍg:ɗ>x؊d·Z}3OGEk[%깿Syٵ=X`٧+_sS{vl}˃=O>UU;4"<.iąS:Ó2D|A-unO,ֈxy1BUa󗾴K$eu?tڽ|Sǁq]#p ':pY=zOc#3(X=roKS}]gvN>Ϙv>jiS^GC G`|*ώ2d9}H>] d~8|Gp~< r} t/ѝ^}$S z_} 5f:;3qs==>lFz}Ѫzje{\y> \*ƙvtxDZ|0G2}|V`Y~8`[.6R4۞_ >ߠK3<6b1vF(Tz[z=HuӇR׹[cf'"]p{nx =kTs6Fi[$G6~><9Nf(*t>([(=P/Oky]y̍TrAx$lb.\lUG@?s,OD.|ҙheO((\]4ѭ R#p3X?>n_|-K~ <"^. >`Cvb$SD1T3s4}֐{n\y`չW/۪c}ָέX]RtRn =|1iO)๩{hڑrMtsZP10U#> >k(}5yGs[:(ғr"mq>KuFTWiP<_z.{D?X*H-%)9);>==ŋy:n#,_~n{bu{vOlUTW=h:r92֌?CZ>b$}sUjy?|N<~]>P 㱏A)A-]%HTiŚ'|>VD?W5v_ ѡGO)g]as |=4$g.+ucߖ.F4U=N;{eZhw.4ۇGgD>T8E{|`O>Ѷ;%m9}X?|5L>|Uה|z7SUyj6A:r{#8s垛 ??T 0O: pw y4C>'UqCL}\bLAL2?ζ^z>T <0O6!iHOa2g(Y}===Uƺ@xrx{X[Ko|<+9rO'UϷJ2BK+{\I=>sGʬun`gL<H{4.|<5u}mѰ<^~sU+xG(cFnMqpZG!t|GsAÙ>=tr<D'>PHu)bΰRq(o|=Rfs=WY bܓ};:z[LJԓpt)܃MqlЙh{8Xb k}#9E: dڎSd9Iyk^J}[t-6!GzG@T{c3~ ''\)O`s1 2k|sFYzDk.֗hDaژ+'Ta tr|:CnZ̅4id~XZ >.|Gkb-l}>Tq #*|&nk$xTA_:vtw7|4~$R:".RPX XFc3'3OEgCCAGMy0wM=*~ᴲi#Z>'}>$;V+溇N>yC\+٧'=sE|_=MΡ٧Bґ[o*Mu-m#=}^D[_nd>084P[#vs5?iy "1GG4(L{#3k>{a)Gcb<GG!|y@6|j G>>2MdQM/~{nvC枈61{ю=DKp5vXi~=k曯Wkmmx'𷒏HZ88Ҍ->|>'\AޑcԃQ >b~r)@<\a%}T;71ς=$xIQ$l=fR{r-m{yydBCOܚ[+Թѩ>h3>'aJvg>CuO_}_zKMZ?ŞX\2SsKs($Ɓ$#R4= A}ߙ"!m9x{ƙcs ;3hoLZ$>TOes1=,7_}g)pԈ>$0<|&9sxLaq,p X=bω Mڌ6>d,1ccCMl'{"PWXTV%?K֜D^1e?PPn=6|K PcDM_-C7mY}kcl, ]Y_Բ-zySbяϵU>{h36H0Y45D>+/|clk]h䧆dHbzt(Աg>"|/~KA%l[m%̧Թ}RnIJx4gé*zkMx}2ϱc`g}#i|,- {zpÜ83Bau}`c2ԣ?w}sSuVfW@?0 \t %9džk6̏y4هX(L-]{b6ox)\11OOOy}H<z-j="GL]l~Ы uP1=w޲~OU'w6@xl@tSbl'>27Q~lkl_?٧cSg9Os&9a9E죑 &><`/|!iqX2XXyvx|<a:btSȣJb_4{P_MEW[6k;;vմ~;27Owg$q鑑fusGZo(g>ا86}j"1e2NhpMkǷm)5Gpm >ڇXW`}zDk:l+)>s3@>='y>DRB3JxJ*"ĖSjG8J7PBH,cCCsGYKkamnHue6@vw]G4tlEw>GӇG#dH?.׶s.KxR߅ه=rS؇#}m/yOɥ6HaO9?v`U_M=X1q/;6ŌN6Kom ?k=b.#7Tgu=mCX*Whsŏ;ڐ|\1>>ځs%>®+.●ymbD<lj}zxx;d3g>W;V=+s<{|&mXGU]%X#%qK\,.//ΉV"~yGc5֢q_=KV =+@愧Ax/$)ba@>#>5_=4}g^ܳ2h=f K=M]#}m|¡C\`mBf1'm:y$`3UP%duҩ0[uݪreufjn5͆uO <8`$$&rl¤H bdN*ڐ!a0+1) ՉÇ Zݎ),T e cՎ2Sf"Fp?>ws%$@O{=zo׫ܝI$$,cMٷ):u?'TZD!~ڧU+_/L#۩a}Pg4}tum99NJp/ȕ>#L>C>jmu#6}n= OQ!'dcYot,'pgo: {E<ٳB5X6ցȞS]zhv>/ܔlmNC/>˹6 c'TOVa mA#O4xݎ"o{\'l!um#\ѱ}H6:΄%ye{yaBRm,CLҜs%yR}ɓWv>4N)7u.{H2b{dOu vY ^ R/{jBw$ڶy6A:u|}||B(-YtvhMTv=X<AŚ}|>~A˾G <'H_N~.hʢE>&-Z4e5(s{=[ Y_bMP28ih+ _lϏ}îgѧ"$}p<_M.LL$?oy;D/5ȹy]HP]aK{>L<{4\{(㙱ևn>ai{t};=Cg^}u=`҄W°L!;_> M]!R>ч}::Dxzk޻ksQqmbD;g_>lj;O{=d}xM$y] ԛyyl2ciz ޠzH#w{|BWI=  ;Q= =O~>'Ч+Yk7i4l0o7|VYk֑H3 !U`{cK7{9 EVFh3X>*x%nPǢ-0}j !5H>mWJ__'vhѶ9`O,f2F'$y>,q'iJGFg#GoC =qH=y°gW= iĸROcCoXMk;6)GܜH<>6w>. kg=e{1"<4Bh`wn ӇVqh7Чr`𠯑{:̞yh7qFگXK]QMcgg Cqq&ݢmU踳Ǵy/zHdâr Y<^>mܢس5f}x9 \!{裏 C)S\CeiC]ԕT.)֘ΗcÑk;}|ڛ7CJmm}#/I%$Ns1>w=v}l)K'2覣?{&]]=G[{Nv6چ<s62D<_,S>ƋltGK2=Yrs74,}W,|rSf\Cg[>AZ>+Fb"C!9-4O37Cza3}*6'q=?^bH*\a=lf(x,gc~LGwۮZZ>#n1džl5jz<ηrӄֹ{>hƂK>}\u'D"swq vt#ۣlzT@Ig=[1=Ώc >MA@{Nv<G sC=BҸ=t Sg{2d&fxaV+GFg<У{H%ɵf$O'oI5!wv> ʶ>.SBR7;;,{ kρˍPVZ輻cnzf^ tjz& \ꨁPo+0mh#ϣ<թo=a9?=zŘ[ZΖF eMec ɡ`w~QU+щ5ҦGGg[8v=:cvNX:7<:y[آ(^Yus<ib= k>#55DtљL`G†#ߡOVz}#Tsw>AW_ӓ|&-SCBY2> >; Y{vs>sлk 'B<2iB< <|ՁBk UE?{3z |򐾸p|_X?uylbR6G!Eyn_䄹`UZA)7%Wy|=>Uy.7Ԕ&}Q k >#{';謁=b>-1tc.#_o0yBxv=6Td}|9$3]/^0/}Ok0NZ|^EKmf, /f@z~mS2Tz$_ p65*Lo_>v["{‘~7 ,䑍 8mCg =i{8ٗ `&aCy{ LP9_B>wasѥhc}}e|}0Ca$Qeee5ֵ$ZUR,2e7ZA o`ρdR1$_OI׃mN_wEY qx7=66ʔU8j}kQBx?[+kL{uRjJP0D?j V˞dgg0}L#7F/6>ͦ_QA7)9tϳ<{.D\JKͱ' <$  F;63=LY_#yC<aYВ+cDsJv':j{TtmZO |@Чu-?:ay}rB]yJ\n$XJzC %Z}8z21J֬=um!<]auX<׼[ CվiROӓ⺖}^u:t{TrtUsk[e(dY#~ctK*\EMﺻ(==>{ET 1w؍i\밁}Dk|}ghC;,ր0>#ybR D79$2y ZUZ3R&|j_dΝcH>8rz=kpN|6z#VL}-{jr:ߎ&3TDm׊"s#yPJ2R%E}L)C٣M"]= z‡S75V(!rGGl˵Gey~1kHI,<``6hnWW;-GS"Xwk2@lzD׾Ad@i~|6jq= TRkKʫ87?ѧ@<\Y@%`)7{|,Nmm@o6>iii7E?}$*"*aU\/|z-5qNݔ$yd;7V4{fѼvG:g!,蕑䇪}{. He-{[L7F qOu3lPmʖ 'V2xF@udzZZKBq԰ǡOϞ$ 7bs'ͼ#uz\d#QzEЧG݄1G{ZxRSYvwX@ࡥ|3BRS$/sNT37=Ȁ&gn{q*\(ЧԖuD:r :iZѵ'=z$">`u|hH?;ak߃-%>f :ƲSK;²cKz6kwǑ$=ӐȠcmaY>{`}1x4{VŞ2?2ѾCUаguk[8ƲZA:0kՖ&/+ƤDaU O:Z)^6w[iTqφCo |4zMu\NSkICBoF:ƶupOӳGjKc}H%y@ZDX:i[AUIEV~jSDP3/'i۴v-ʋSCaöjϾC+JK}ڣ'fg},D& +c bYxxs;N!X w۞.,D!i\0(Tퟹ'9k碇3+A(<}Mfa}dBȓ{íDp=Z٤9N]up3u~p̀c{VH|É\7 ?khicYCmj~Mby_)0w j=OOLy`I72_hdcjdi| y~!sÎzL=y@='zxܱavfumн0{{q!iUjsw>~OͅVX;w蟋젹!O0|ng]p_\M$͞ u!>%5:rf]oa膨LO**OM9Sgb/Ts w%K90Y> = ݋áAL̻-ly<_ZI?,9`[kKv\)sәWYC|sH hZ= KʶJ_MZuOkP:Ϳ{|=Й9 mVÇ"RfOz^V"fkXD#=΋C Q!' IUzܒWP:_o`FvĠ9/lVs54?62" z,o UAG[ !*'S Oՙ[R_3KHDsVM=؃54-km~ uچɌ̎[j#!ӹJ؞gB@8Tqʤq-_s2@lZ-|@ *5tg}F9:]95|RbH-yRrCzYzJ&\U?g F>@!qq37<9\I9^ -Oήg쁜1?/;ŞgOz3}ǧb"ӳǥ,}LL VG'D={\/};l^6 A3j .-oCOw&,L[y{'aP(`HI,9,0XNBfPx3OSN > =4-*,=Sss3tn#ֵI\z&<އuր3usnQ3gC7=4`nn.GyŮGvEֶ(7=AkH&sE>Gډҧȃ73Z!&ώ﹭#d3njWϜd(rCm{na|n ȸa9{rAlAVY.Xנ2y>lM;z~SC%E-DwP"&XǠsGu5`σqh&w(LzlP\Zץȣ6ݸ<} U(4.{Ӟ~oՒ4Gvv1@y5>Szp ɣd@N{͹OOS6>,Ыw{4ߋԧ'ІCwvf  妀 ЇÞæ^ CX%;n=LEzA5r/}N: YsGMM=x -/n"OP)ÞgQ'gFMNf|ȺجBv>45Q!kPܬA>{zѭfBo ]O˵58h33s%QRz+`m=uqJАg#3^ݹ|>gM7B8pv|jgۍg)b ' <<ʰyZktj ,4t'[[[۫~v=HG{{A g^3C0@D``Ǭ!? E' gqЁ=2=f:X}ܠe4hgΩ9SJEIs-'FJU{T|l"A;xQd ?p{*R|vmzloӝ);8b}>osy )(Ba{}.˃UĞu&~| oQ:Їz(qO:{qr6q|dϩTnu}GBO6do>b_,>3 }YG]g [`awX |J}>-o:m Co =<{~QBqy љæg\<%yPS1Cnz\-S){왟9^ >!duƳٱB-[f<|e?2G_nwNn@_0zAO*$>$}/$mNNl{s ֮y _ҩ,7d$Sn>a2D bSj|d9O: I(`C߹z {dԠ]Ym~HS=rSG#m1"HW{HC!퟉> ܾ6E5 mV>4׃m>k^ uCw cЍ%◉>Fu5@; (c <҇ W.i p;UיZOZTY]sHk$ŝd@妬x<>gݨVYprze}g`BHJKEQS{hZ&볝R~+ZZr_omO "צ-%yecs ;@.Oz#1"OK<UCpUg>cnkp c`sj@U"+c]ܴ}H 韞N*=t=w/,+D7!xύ_ҋLQ3ЧSƢN:7~GQw$z2{n<$S7^bbՙïKCBR:_lI!V%=ܻ>s$c@D*̏Vdϫ~ilL}fu %ghL-kߣɑuh&~Ԥs@MeM =LR~h}h6fK'X H)R[bM};ѽ̿,yƋc Zț<9Mz0z@ʷގ=sɆ'c)MN? i?l#3W#FTh)S^-7n}I;[CvA+U SHX)[I[K1LӨ.Uz <}' q9ݻA8cjnVi7&sl{ZyT8g;ɞ{O|299hBjMPY7DsF %Ä=|Jc·b"saQ{D$j1znЄnooC',$+^XK+Snև⣞@j,ip= }tMHh#tsA>Ét7fA[n8‘a%awv̭V?yK),w)vâRKw,BXK`)f|4A䁀=EH1غ[cX'եuV쯬8{ƾ' {c}ӧ_ kBUl>3؂ ~}Ol*GPdkPZ\>VvGf}2sC469b χ&=x["|S[@mKp [% <܏_-m=ҧ<1q8|p:MzWxF>YWa:Ak-T{pw@aUGؑ{K]@_1bcv*ʹ)W k=Gb&W0yHbD*Jw}=o*m pSs{խaO~~~Y>{,`n=ys_:NC{{ʛ]ؓ y;T {LNM6fgu}x nnn6QƻdaЏ-Dğ}g ," ]i}}G;RV6[;>;nXMt#`mA=+]#秒=B%?{}H{PULPO& x`\<#3ÔuG640d3}IF~n :bMՙs)o=xO\ ɐe?7B1z: w0YS^[ާ,ASlF{${X<8>Go{m1$=@@Tobn~6쬾GW? 1rutn֠5uu!N Q,? <}Wv!@k.!t u/oVABRIe 2T]_wSw>%a8uރafeTnk\WҒO>d7[pDD9d 3OPqgdx~&w(j|fH-vq=mOZcun3ֆataMoom 0xV ipKЧFz^lH.ڡMIڑMs^hJh_Xx *> =\# X:NؤGy6>;mg9|e)?|?H@97&OgE- f+٪e!iXjf}t>/ 8|Ռ xmevi3͡J}>CEv" Gd]XF=Ӧ\\U|tyŽ@ׂ]*↗I~ v{{pQI7=L} ^[ ;XPO8[7} UW)7r]>B6{ƏAŽX'l߃crI}w = 7^֑\ޏ< Lљ|zNB[]QY:yD'r=0ȳEtnCZI1{޵A{wa }v=ihQ[@Uo.ڋr&b<|c.*-7M`DY\tYS!"P`ģ#՝j=e>'σ>T 5$~<{Zo)bź˵s]]ꤧ+vUv>*h!i%g'/>Cmߺw,ԩ>v y)b-L'>w}Z<~`Om``RGdnan%LMf|\=nr5Gu9<|H-i-~%cRjnyr a.$y|{PU]j[jr#u}F}=JG垛ST94zE(Ј(,ڂtTkMecDage@{k&-SDŎVQqϝ @wklbmamB飢Ylw~ dNjtC]ޱzL~'Z77sgiɀ hV%_G!X6utN:yFCk,//{Rz>/Da?wrDεkD z`z>#i u2fj[|9WuEPؔsMmTijy~цCJi4L7.\>Tsǔ-7_,?<`T[m}Zi? >P;f;+QLϝ%'~iϧ੩*ru#ιe= 45^S&kԑ]s4ӕ~O-vLz~ q fKkL5xLOp$ky|3i|X=7= "eТ, #/;3}y` Cn IQoc6@iaȵl6ol|)sLqH_C<-:hX:Sc;Gz ^ iV MіZa:~@z Y\^\ 0u5EUysp[&l`y_Hꈼ48dāC]nyt4)sV>&؃O>JL h j4TdFlvl>S{ICS;7?^:zT?w5kG[Fņ|UBRGZu}C8lpD@^~V Qc>3ᣥZ&;+zg${@*{\5ُ\=Rb7h'0v0PW7~m#ޥwnisîFA!!5z?:xH=!كkoH8,G[HB(?B 1G4r۠O;$s3d6;28LEa@KNa*#u t(\5e|61h֠QvS,k?BR`.;KO;t&R' >x270| r4s./y _ =Egd|>_/$}u#.}=1O˵8i XuLbxz1Sx; h).7u/-T:",tsn3QQɑz<L' lUG?q.GB+]Ճ?ʹhx6c-R>;f,{JO3>1Їր2K˯Ƴc!D5e0$9CE9u#䁮m=zPH@ GKN0_Ğ8l09gL`$iyL>EY(a\zѷ{;5'SZמ p}>y3} {:1kGw~pptpc 9- 9]]:}i-bO1BɊ=hV{Ĭ2Iy7ɑT$ud; vގIk!d/^zHCy02@+Q,ЇMM#<5>&L_MDP$iVz<=nϿ5cgSWU=~< i{/$u6FIS{dM~U[= H{BOѝNH2&`>I7R8X[n̈v#נGPw*-;n}LQ#{BҧBc Vjזj{0^[yc{!H  7OA>r;cvހ _`}t=pI @gLZh,-\3k b(M,]?qv܈}(rWa{zHsЇz˃` 7trXK5;Rc*.=*#ց^k4&˻+tTme!fOH2^hrn>ޒQμ_e>h80RP:x6$S?n$u=4_,'qk+Fၹ1rzk=મp_&|Ϯi"wxF#M*p PX[mQ-AbՖēyS)_,Jel>rIf^&cust_{^ ٺ-yMϫg ˝!lp4csə[=}+#(=PPHN.VFnRg/mQM>ɱ˪>Ϟ_+ߘ8[*8}uqs_ <zR$E9},S~}̵3|yOۀ7%~2Dg}@>]ʯʛH$Gl~_Su{=Ê\ߺ郇w=w}B׎? D3>'T̹Uw?[$QX]4;43mȉ+A #2PG>+ |@N ~g?Xv;ǽ{X|-h:3Z3[HqsQj\97 ~Ĥ~im,}~II "pb Pi~0B -o{_Mm|y(r9}OD{Nt?!Jgg6[ɍ6UdAY6:妭ғ*.>o 8ry2t9zP[|5>| ]HJ9d63ߥh?Um2 gC)3xFS5;t wmO߈XaͦYA`9K5 I)rMz09}~nXWE܅'x+4AL-˼7O&m`qR_q p+ ގznA'M$}Z 3ՙ@Z{Onni=oѵ,];I"rCQܭy_0gیG^FȘmJL@-$,}ge>@A(rMZ{X=p=gkY ' dVռX3jw;ydڨ7+&]8wӨ#o-]5:>| f`m#פ'{b:=a-`=JyK^>ͷ3NY/mČހ&G >.=&V|>}t<[?B[\HJ:g,|~e,#Yt~OV6 u达(UX(7pچdQ3ML6QmGș}Lv?Ǭ~彺{ύ#S}`EW0v{7v}ED[s@q O+;ϝevRPF.zj9Ic&"FLNɃ -7]\CTHJ]I;X@3{7oOWu oJgg݀]5Uĩy0A>:xo'?߶=BRc_{ܾ\O؃3ﻣZ't77N-8=Vl% $GM m6<`{#r5#ރy|SgR!SޡJf>t)*+}} ;6h{[O`|nTS`c|.]}i1|)Kۦ)pi9f#o|cBg"ק? D3H7'X} MBh.cB __͎>Zm6Ҧ*| 1K[{APF^Qǿ'Y>)$%g"פ{z|+Bͯ'oT1AaK3@(31umY677q'oLF'v>^q@egBғO\?BR젓s[∜`kS)~%H> ¦h/7e9FmY֔*G&iLFk.$A/쉾'>{(r=BR X|@(̹q} =T3磾t> ৮4iхTU^}.5 i{(r=|~!ިhjby"B&˓N`Fy6=&1>?ϯ(y~Yn0mTk(mn\J5g#ƥ>p=Q<[mOgO{HkDPHJ5#=9Mu$xӳN幛^tBӈQ8y˂U]Q mFzܘn:x h#R>{(F4c4E{Ř[c=sAi̛q<=J>.&}ofXWMOBz䍹Q>E'e}p,,ˡR!)EI?z{*){ʪxr-"cͻ+<7e1 ʥQuY6MF%'oJ&Rҕe#(τ>2hj??7 6|Phi}ޜ= x+te=#y~.4rmhVn6/wL6Z03)ۄysrAO26XP I?`nUg,(< s+N[\u.tT@Лq妅?3|t6_2UD`D:nO G/PC&f䚴~D5Hl ,:SSpGzz~,]Gʘ@Vnn;p&+7m 95%90竂=gS€,*X {kC=]N>B=_[nq8vUPӰȵ[Yj+Ǘzey&UYeȇޚcrli#k0C}F%MՊ\{/u=-zK;n){pNee }\.Kav nL7vviDt{ =zBR\z3cnBx5eO1"3ǖvozZ73֑1] >e6nz6 [&X6ou0ϥ,'6{>ßMZ 3@''g PTUut7qRlԟfqFma"GipfpMYر<6@4綟t{pCk*$5ivR]糢5kpf"=7s f]q} 쫧ՒK޴*pgvã R4OO(̍R!Rk#$ͱX]3ǵO76==34Уj6i>c[.?Y`GG!(`U]l QZ`zv<򨦎?,\:f@{>4>'yX5)ag3t4zr^Ȟ.ljHmb7>sk5ܼ2IsngH\ߢBRrMjе{}uh?4?VRM] If:ӓȝ6j3u]eiV2/v#o{(F>dOIMM?_b 3C>7a{ >ʕzwZƜp1l nկΐzB%Q\xtalq~Oo/T==I ݺq晆v> }~1yTbG5: }$__7~Q*$]*ь:Ps ;" GEZ)&|(J}m7e þ'G (rm-ES@^O i%.$%g#${uk{۷pzӔ8栴QZ nB]EUOr蓅Sd>g])3>; XX5iJg^O I,: ݠ#'BZٙrs= =L#!+a @Hn}#+/|^3\$im"פw:P|uCeZ+#Js(b2weƄu,yj,q%3 مq]q|&E1+ ~-X6z5IiTUVDq_+:@hƢhC!S uMqP$V(`"X@9\v 89#;_瞹o,D}̈+E\Gg-=L(58̳|&qn)YM_"tCCn{نϖ.A\̹UZ6xAtgVǫ\@XZ2 Utwx0hr XهJCw;y10}:r]gy𼃛be&j~؁?ڜZRMI/(b[_Hfd]자/W #j3nlt{E<(3#\Dþw ,T*}jDy>ܐsodsF\RBL6MAr2LT=3=~){Z4I96 %2 .TԳR(Oͩ,|o76~zU%"?hTIBl) {ngcd~4=b]$0nbiz'O9Tm>ٛ_\YgyZ.ԁQB jPZ#w{VC=X=^VكSSqŴl` lp>O 0>r&z䑛Y.%ר>"~CKG?ސ5n^ԞvGFg%=_M=tRB_~Gb{2m.=x-z!>dyT|Q2<*4<-x o8Mzk=/<875pASGiGݞh̓600`@`z "8py(f:v XC>GO&a P5s%l UlSv=ސ3KÅ:h@~[ptjGhJsEyCE<[s+觯7 C08mwi܅}؎`sA Jps3w}QA9 xtp7=ua?8ȇ8;v%Fz/Gk !r|@  ڃ5A}:OIҎj2fγ{f|u\MI%) lNW&pOiىDҙ3>~9M.ԍfٶ\m0U!}+%OIѸ͡B레o\dSvs_G{K7H 49 +<3KQꑣ whF6Tm6OAmhĢgEvov>S ?qp8#A΢5λ;;'{8O;Ic-"Cŋ.5da"Gv0U?X<\nxcŋ˞iQ;;GGO!k4?C|7(w(>l՞ 'ܩq@bG1c@(fӐOO CHbD`yPs$tRmA cĿQ>5G@;/^=P߰SireJ cj$̃%lB UF Gq;`b +{[ "n&E?XJ<=В)mǸ]dj8=>Sz}vX?j̭8ΒyN 3 vRaD}ȃ CCդ JV*U7($=Ba+:bAv{\\ٰG=uw?ZŸ>ĥ=wzxypN6lw&~}Gn{nwGc<77c-\=N]m4udM8L"a C-rt/b~=}|~)!/[`rUVogZz.{=2b?;>(Z ={ao /f j@33@:`_]Q`m>"o߾}68}eW}\y p젷'^q-0ч X@l9HGs=dcnm4.Ѓm઄ȧHw!\#`0lMI  =&5>zyp!;q>QV:ԃ4'-`zaapdƚ㻳W|ԉ:hO.כãScЊ| ا# 84}~=O>mO0{p>}:5O>?7K]37\ nrG$Bs&o}A{}4֙C|~6u |  y*!7`v@xGgYo<> r`MgO=l0ϥlC,Ţa xpu_NN3ok|G_q7P{>߆{xGu|pX@Qݴ})>OZ]G~tCJtT3\|ʕ+yh) ÈȀv|<0`[H=gw?x*OШ}쳥2j)$XGU?J^CWWKa_\V|rcrM'5R4 ^uD=+ =~mgFŞ.qFzDclT=5DՄgJأ!jݫco xg@/1<ps\WC {6<aWgBG3#zḱOBx쨝';T왣Ns|P|<}|q%Hes;/?S= r)pz=0U^#N}l>XsfY pa`[@Q;83+-lSM,0  %h}mhb F* CϢΎ5Qai,UBSoۉBѝpe{q$s3S~V=<;'+|B}8=_w%'z̳x reԣTÅhuvӟ{y'O ta =7 gr92?xT`Ƨ>{yg礝A 8rc ޼v.\ӟ^ww]D≛>ByMl0WA!'gS<5:S*`niWh)R|`ZlB b~pxl&FZ~ydQ(/'?䓟;\'y}0sz ^P;T>J$OCX~XkY,m=mmnWzV{|_Nqy???J/*zi2!M=g!^i=~k{cS: #؏vܶǯ;('g+HtTG;n 96F`sC 46JaRXF?ND6}_ sl)?9}n3ه8.6M=(D nL@=<&N;nFSH${9yæ92 $gbu/y|Ghy}Z=)qֻ'zGޱGz>LmaxX<1_U]G'/lϮwy:4Y\'D"5H<>7gT(Vulfꙫ`4Aa vԃ{a =H>vɬYϴc?czqu1k4-}L?&v݀x鶮>7=ݓH$G+l0hg`u1gxuS6TW].0<$>7˥ҏjNyP =ꦪgӊF,|랏̣LU~>-dh܈gvgvnݓl 8B||cYIuO"Y|ɚRyc1 Wꎸ`Jyn(TyHbMf8J N }Ot>%<{[gK鞦zHS<{/'=0ԃoAW#/'>i|Oy3x<^D"<<y&&xq<)̯(?(z082[+s/|4'5j'WnJ6PIBwuRsOp)3k]-$f|Cfz9C`?і _pG'>='Gy>"Ų5QzL?fMsY:n)8U)g5Obn㳡NٱrIy\~۠y0ƺ<z03u4fgggEý/giw"g&H78_@m@7K:J`wav~[oQxHN{эܓܓHts#<9CNy|Fᒬ+Lbi6D<}4eMzd,%&=~mlӯ;fG>'V&&7=Dc>0O`puDܚ3,~7>؀}T"{fesf)\/,{bR#{?SL i>SW#n>=X걗Hr{}ܮԣζN7ǑDGy7g|R=osy(p!E<>m>b)Y`*Q=n$zAA sdYKaY97K.pƅD4F4z}6+6;N?H޳?/y_>)'Xs*P`.QAHsca!1?smX=8;-wϙxzl%$W- zڟtx'(ڠ)me#mtS{ wAnH?y:O=D~Gj0}&ֆCAE6+;$gRQ"=60^|2.P`%z<ΠxQP({cط?mnˡQ[R4ѠqCeBuyO"d8|H W>] Uj6x&l7.PYcmn.?4}<*{Xݐ-Rhv&wĈ6r H-: 0C`W{_CtCZ>)j'nQ.DjϖrP?j>M]qܔ_=UqKw6+a(i5Xq (Fϵ7\tr-G|7ӎ܈ͧ:6ar B `/r Fx#@7#oW"1RAk-2` Tt\y,FTi(`3 Y,t )Wf?7gzҥK/];MYeO*$<} 6uWC-Xlo{L>bp5^ ON񐞻TN~N| (q>LUOrO"Y}6 /op}>ugk1DlA->~- mc䠋s=cws y),Z}+@;`pTiWաVňb ̐k@`SbCǐŚtcRqy*SeP0drX/K& n*Э.A>qξ}\u冯lf"bGنU|rGߓ :Y鞾򙣀і Lۧ5~5Z{q0`ŹmfكOVBup(׀CfZ9ֵfہ72Kf ?e: :sQfN{T:6FGv wɈ84ExHt'?ves8h(Q'=ROrO"!d0Pȱ&W+*FXݣۥ`θ +(5 |\Û72G$:0{qޣ[o>٥wt# k=[L|~:?C80(v{n%76|i7c%>=-7c}+s}ѣ輧S{{TʞU{tӀx6+Sfb bkGII$:3;x|-#Od +uXg8o=4n2pgfaۜ*`6926(2á6pݴ{v oUlg2&kCU&99YCyFڬ= &{D}a.7|#ܫ!H;pHAoG^?T z'mo|OH>' 9JGfq>o7ǨBhrLK?Wy4Q~juSsc[@[nbO>Ly0/Y,z7bAq9&gF՞ i=çy\nB1T+(=HO(tDrO[c.x&jPԆCN#rޠy05.7t)3n?bCx0F燘MʋOa0V_ɍ#|oT-O*#sN{q5H:]nFzBIH{n}w|L=kc e֧ۥ:=7|j>J(L F#z.\ɯ{>~^)sYH=Dq:>yr7']|}DhZriNAp{.ԎMڱKjlsHO(tDʐzӏU>y=@J`bT&UROéM UVlFJ<,y?<\r^>>zJpqBJ  anV7 q9퉷`DGDSY*&S~=}g晋!hxcg;9/|s7qsyC=X⻥`u=ߣ\C]msG>|0JRLlMG3&FN#BP$k@ه?[k[`6ʞFh)y(/1]-t{n䚳OY4T0:9UM>hMynQ^ۡx80΃QM5L<\TD=rqUd ?2SV|j8+aM봺|>l܉d>لr:4A`:h4\[ DSu"9>ۧ `yS(LYqCuFBT8*ϝ󥧭ɖn9%:,Pq&S{ ew.<^=arrMI$:kφhqW>6fhzc|9A`bD J5G&kËǍk3PY;#8Caé.kǷYϠ 'gŏ;"Dnq}V$N]c=)J4z3>W[^#6[ՙh6 o. ԣ07-0tܣʇ>fp~w'TSu*|:H<=]y0ԧ =>:E&de;1>o5cvSj5T>o)|e^$SlxzJ;zT4cN~QcTˮ> v"ݔ~: *jyG֙r0]X/MnhSOd%wV'E&fԣ‡G׆<>pikύ4Zſ[7yJ 53r֡zPkdbF~~f[~`k,{\· #z3qPC<^?&.vyk6;8,;٤{BnOpR@%.SMr4xY1[lc٠֫lĺ#P 8@cHj@@'+C DwSSe$E)fsmk;]' ~rdizE[znN>4} at6} y {f{+ %ʇhT}΢zYLuwGy|}<.LS0=:6Hq=6tyNy=wcVV5Pp?e[bh}@H(mDۥyc8r5ϲl}Uok 7S# =6(ID=(sW?{ hc/z_;a -'Yv|쳥>bn) ޢ2i#jnuSiK+}dq͓_9w/?;-^G ydr('˥>,rj(vt)%6jЋeqς{ -"~2imd v5{T眽sԁǽ}TC=QPsp?m;f.dq|XhPt)>h k xŇj+}ylOOw͗d=2 ϊ0i&~= LAb=c #垘 yd+sysYgc|P`G{n}ypR} F*'zF&Gȅ KO ]~_vlS pSS^-Ud:~E1G}Dywsϟ{:7#գF=}!6<XJDU./րe+LTAofxjCfy58coOw"ʼ̳-u`]7\w11;nCEϖT|$?#TLϣĚ?#k̳L&O Ȅ}~ʶ[-7XjArO({ls}#@Xjhw}''z(e՞(Gey\ۥ^_S en)05\IxD=2ws+x0T:!RGM1aJ HaDq`揞vb$6l3<2usk*a/|`>5 9.[eM1mb%U>YOG'>d}{f6t_zlv}}:ΞcL{P=`\ƫsÏoo~^{~_b-s[_vt=Rpɢdr >Fz3?YUD@{]7n G 塌Lg[]A#kVȂow̚P<|8[=8{+NVOw^{c-:@նopP1+{ߎۦ O{0i|Qz=^KS&ĘjueE=]/<6 zԃm7"L4xQ@?*9f ?onNS~{aleK@ iAsO|ctmc7n2^=.av sbd)+p=v9)w9M3D}n1@ΎVbM"~s-y`Rrrϴ]Zkƚx l"d# }$l ?Tqxl{N<'+ KIsoMC}gOyɱiSF|575PҞ]/Ⱦ ~vRG?}Xs `?7UK{{=en'њ<%@={Z={9{27͞:>)Ƿ}޴kuLQOågyִpULerP#g[\EnXiS"駀&a!l#j 0`1ީ bOO{BܳG裹7Ě|B[ ̣t#JB.Oc]@??^1O( >2j@0j b rad2uC/d-7[fq kbk 3&/to9u{俩1ǩOpO qtv> /k,!KfascyLiۙ]W$^YA{^wȔ`y0"7ʇ=G{d;XyS-uö[&b7[Wu)#o3E=UD>.5gn:[A Z]>7+2YT^cY\yO|~1GsTǻs3X"3_'{;21m+>Ѝ'20]5*kzx'sS7'2@zxcs{=ĨGfpO }J2AYgMLc֫>0ԣEަ>̃7O}zf&ӗϹ#n> %֮ڴ&nv=lF-=F<{=?mK@ = e}Xv}Rbգvύ=3y`ԢUeu6Qt8ܙwu0qOGV5~2-KlDc3s cC>cOhluA}n5{d<<~cՃ93J<=2b)sP2o7yXa `qzHW5`}m|F5rVP$3WKGy}Ǧ^xr:a`^!7`!60p>uRwgyj#P?^AC OP_e=n<~ _{4>+=xt2@/0xDL<]ڏέW䆅-%K# v9:O{C=26zAx ~uSاY1@IX@}3{JyjC3>@CG&P|Ӟ{Pm`K  ATWNJ-5ЅaC%J15D^"7 Р"i~cO\Mx ;;͡y0eɮ+5cDG~5Fgpa3#8?yLtYG> H>,4ht<MS=|8 G> u,5{v\3 ~ɞuK36Nsz螔=I$< Q:k)rͣ g뛵: R>܃QX(o!> S><j܆iaD};>`.yGV'Sc#>enj!GO|"y=udG&n)wݨ\*[@`M&czpdЀ\+%C0|='>#b1VLb㕹1P?j1ixma=N>a?R-}d:-=P>8yzbH;nzG;<R%n<)m:&̍jLYNnVZUM3==6'/ŭ>wOZw#&VYqg|4&lPIG1>j'`iw{&&t!5><񑉏û" zd='YO9:/r=L=Ė3|<ߢtz';|]V)VBDym: >ZLc~7\.OdE=Sy9y/'!G`*0ݘ{Wcmsb%gs[/ *jCۤn{0yOT l/ѵwzdw( &<$`{U{T=&5M{r[L]=[{cܿ晖}LTl)#0D*|3=ByrKx=9OOL=vnL150m{} h ]`U l̵tsvPd]6 }}n}):V{wKe$ͷO ӶѧkGn .g\מ|j+;3`|K4LlL]30ĞOon~waejVlL46o l>GMyW}|bOsڳ*p68=bݳց@h]Cq LLL؇h{`B2|jy%P=F>ĘGU@_YuSGrτ0u[27fxtQgOpO(dqA3.<# o3mQ<ǎzĞn+ǯg}Tw1q2+#=^?D7kdoDflcN{RcQOKEĹgi|Uxy}7\M<䍉LW=7>bSSzFf' ntkn ?*38'ٹu,aLx/Z*B0zޓOV6v(7]+]9)9(_B&N{6:ܻ!~tn}H<qsDs{DyHQukp N#=>vI ϷsyGWq>\*?Z=u*ž[O)DAO4rOL?I$= z'n-=?[ عQMMLL]^WnFaa|Q'=+gz%Ȇ[_oDSǾCjΩgZP{zzic@ \7=7[)~Oyc(PT 4TxQ=F>%9nMR-O|\:Kz*ͰZ7l+1ɐn)>ڷ|Mn=r)riZ}u=&f =jqOsGL>ًim/ͯs; |9S˵_D"y {=2z/_ T$o gdzmL6a{`ay @& uwOHzXamܼӞAUn=}ptuSGd&{n>HG 1;nz> ZZ@={ZKjII=2:; P=q}n~=m>)A4cܨ_m_֣oMS<=25gG=2X8a{Lbv_Tjtоx8:9P,L|㗶v}alB7?2hzt=uRڧ{ZXa9 ҂}2I9%m=PO rh@ \7}[ntDS!WxL ه=˥d*!UpO T.-D۱ RϥI58죍D?az?ޫ%6=uq3&R\{ؓD̰){L!ꨆo@n X,Ng_cyԘS6l* FgK!],fVv8mӚ^\(u_`k {cv0D56{FPJ[Wp=n5rks wwϦoiFmgE٩* t=L=HOP;>ZAZ=GHf{aӭQawrSܨDEn#X߽#{߳ڸ{'aJ)LB7րǤXT|C?b|*YkkDԳ|цx}v_y.ZfzEn!`&dTn:wd3`-I[l'no|h-ptQG҃ -rçP<>tBz0㖛TyM|zyQߓnM''<2cZ@EY>>vԱX#+aO@+ ]xmEd-]^l =`@y3G} `7*΍IIhi<ج`bUץ+>=r#ħaO|~iO2K5-.@=.s{ Ĝ,-/o}$ >@6;P):1 _#6̕1У]uD9wcI$CM>0=2RP9ᖛ{Ed5 a Ҷِ}{ R>m䓷#.s0'̃ܽ `q=1n5{~-M# `RNᏔڇ﹍OJBN &huħSMEOJ' >( xڣQ}@A&ܓ:P=`T6Nh{܅]m5D2Yba4[ sn@IaSZ^9y1ZqҴ`[diUG>u9ǵ5un $y|\q;na9!ܽy{޽pOm'4|hgxL3O< &|>:D<1; <-u~G` dX,L>メe֘9͖'ԅ &O(|z=1enZڨ{-ok@< 퓛_) Jמ3t:[)ϼgyGOkkezx#ߑ}}yorh jh%0ϒ-=m*{i΍@ \Y=%"O}{|ZI Xyd5ѧ zDuym~plk5uzml@.?VES#R'o(opOoẩGOt؃ 7)>,S##UqK쟒ن4( `}nɠ} Dئn#~=ϝu7#趛%U*'+GW3UCu׌;1|ǵ9wsun5[m&0\鉇jm#@'+AMIA{**bK+;Y`kXx0?bQ&ƞpK>8 4xl%zfzlR{궘B?չ>pklo}&Ê\ zviOʢp`iz 'u)o&3"5ڱ%'$'/7=bx Bs@da1F/V=,ShĤMΎ=lk P \eY6si4{ro}sx uSOV >)sD5BṾX?auj3G4P=O/:`'=ƞ7:`oOf M>2 \lTdK 5̱ 3:4R* L[c cI)䃃3~!?j. sc[zoso@]7T3QiÒR9N$*c-m{¿,y}:/>`mw=| SOyq6˪=5]T=MuNo{ 6pj/KSl?)K:W<#߯{ف_yj.ԃun^G7tZC.4瞸؃{Bu ДM{?{>NJhm0+΍1ώ@|_~BwgsrF?0Ob/ܳQE]N+Վl1W|xz;n۳}CGO:sSG&GrDg)sOu2[,=6%P4u ==bDi-E!UQtmPųNG𢖮*_K = }tպ&M=M=2{2`=]Tx-F:̄r8pרB_PZ?5PB<<+Q`Q/kc{^-PءKSn?< o"ȗ2Oe3Owه!n+t >F>= 474b5F/jݳ$>SWK7=x uw=9 =2KyV7`oxc#?3{o?tzX& ut|0=x3fY=lR;tiҍ@ \7]=i5|hӋ,X&ڇ!]])55=7RVuL^>%P:~!4ly :hJ#EB((~kW~^z8Gk xZ_|vE6 >kތܣ04[ @2JBQ֨3*cCjjkY#`|d_G#- OУueUvUjMUSEYyoq@ljڼ1⚣I}Osn,r~> ߜ҂AZo= ~C,}O% Q| oP}6Q.ZS>M^AߓHQ4*ң Xx#U{V磪q)Gy@}}O:aG۰7B8`@~6{| n^G~Qsd=˷{,={iWB8BC Qn:⣒#;+(@;=w|@m4ևmSkƺTq\@M%j#·ɓGagNz_hPj~4|' !c:>NsǡKk0!dV4TM\bwE$<=֙f˹>5Ј5jO\,=[:RCy =@߳5lx= )*< BNG&FmK< d=$m%77?]+e(ʹ2Rvn{JTW]8|[z MP{-UpXS!C0uc U kcuu>eS%ڃ k%,{*ZB`8/L=AQvnbwv4>0ĭߣ| D|Vg'Շ!FێWߏ{XtO#SuZkC%9!C1ij k?̆YA?iԠީ>կ5ۃӲ۬_g!dM=P5=)>\*zD3q9ߣQ{4_Ew <=oCQ'9=ɵZګGo7 aZX}G+n">tGuӃF7UwVD%m\-=Zu{us~~,~{"9xBH9/taDm&TU7_[z&Jrn39B*Px zJO:`wM I,=_7s/>6=I0!LxC,uzTuGw]=֞?ܝGyڤ=wK=Շ2 #UӔ֨:jDGO M νx`OE|nmGO3[g!d8/tYAM=;s{TLa˶=={k)#x omm yn٧J=`|] XBxBGn~[>HZsK}Oxp>Ap󛋻AzB=˥3!#Uфk%~C@Wl@%hi{{뛳 b|lg5/y(jquS?P5͏O:>'mVO?6r"݅,R]h! > O3h jN&e{LZ[ў =}f=._vO{%E{/7ϱ~!0?*?ozb ?SG?t|VU>ަ sn>҇QGv~Opr> rnYY hDt'ΖcJ!7hGVl'g\=s͚Uz{f{z!LヨDӮsqq&'5=K4MhBa-YF!dR9>߃I7|ڛO.c'ʭk<7(C! t{:7{$i |s8,=={7B!#={<'X=uۜh-$ӘJn6n}!L?~`N*BSBѤ7ܬ,|=?̹=/BB;a|rm24=*={+Bko^Gpd d B8]Y-HhArn{L7BaMn{tެEWBX{:?VΙg郲Q ee*B1B&U h|cq>vyN8-k߳AOo!Ʈdjn'n#r!:]Dn8rn!y='n?v~7rqmȓ^B~ώ7K3 {&2d]=H}O!R{d)Nqj7CC!E{6?]p{Xrn:z>Yq>cVIsn_i}!-Aqqɑ{{wA`(`a;2'i}I2]=zO`WyWHb{yv8yDϣ$D=7΃[޳3},=yOݾ~c6'{#Ζ|Bp[yg޳kAt{ CQ}m<6נF3Q}EwK}nu~%=7rx{.g =-u2{UR[ٙz5= !~;'aM =LX=5R{O~ĺt[]'?|(Kv՞޳Ks>"(ePSO-3>|dP]a{Tni=70_=`J #|fO=yO@&:|3c@?{'><}J %jy.gu3{FM{@Ż{nYk@r͖=wA=*AzAE5eyA{n@ {-A=G=7|=)A= hA=7FF@~-=A{nAzʽ{ȍ%le7,{BeX FfP~@igL==/=IENDB`mkdocs-material-9.6.4/docs/assets/images/zelda-dark-world.png000066400000000000000000005243671475306445600242150ustar00rootroot00000000000000PNG  IHDR gAMA asRGB&iTXtXML:com.adobe.xmp 2021-12-13T19:12:90 Pixelmator 3.9.8 898 674 1 5 96 1 2 96 pHYs+PLTEQ9ŋbRbQbrIQŔRŽ010rrAQQzRaYAARƛĊaZA99(ͽĴQN^\BLQ7rJZYFV522W}Túˆ_ƵƾxvC`UNYKO893yKL@?+V/3(˻ƐQ{Q]JYk(էȸ{rIĂRG1rs7lQK5Y0bM8Te$yvGLC=תEoƌiPC//T<68²O34YyPuhEe]CzPJ8~dHE0ŅWkm,ę~Øfr@A:6m:m`FeKvkOdg4S}OLfkgBX:;5QX.jn;aϡ}]ahspPLJ&]BoJHZh0Ze{5`r/zy;KW?aB:-UZ [eaNd`:xbuW?#J;~Xϣ°jHkS`HjV;}O`P4rDrSCO#߬Z]+›t8x`}n?{]YhYe>b7tc3k}^nӝ(>4VlAL?ilrNҵϮicRoqX.bL#5.QMEQFlsq]\tP[Q^jj`_ŧÊfqg]}T^VPn\~y8EDOsDuA T$wEva62Dֿ"b+ut{\hTE9id~uk#NVa%Qbm9~męᔢ]2=2 IDATx읿/cq#aLIin!a+M\X?Bƒ@"%*͂ Nu [sf$YZgJw8XlMiaG}dHs> @}Z<< J*}Zqix'tg^rq]4M(zTw*BC:Gc^As(@zp-Rwp%pC m0x|ŒY4#k7eM@^ `A!h >B f,U "ȃŰ$b)3=ōҒ84[(KBв!ˋ9,dӆ+wmC =`- @#UG4-۪Bi/KJ=oLBP6f.XK]I /CP+@Jxȶbnӛ>cڞ\?mBk5Y{Ldo2wH օ^l^%r98h:#dcA'(R۲}ׯ4PEL+E*XdK dT-(7. **X/boavX5?^qKax'LDd4R#Jr$vK/ fJHLm(NKHGg( X Qp蜸m=w^"BrWN5$_""h@m>N l!h_fUΏkI|@0B Ml: h3*h sz`#xpQ?TF ڕ*̤*U)U0vU{ TQ`!Ujٮ" |x5ťui.κ|RO}3Δ^Cx˯Xg.#NĤ r3"|YM;e j3Vj ,WG 2\AHJMO,@]$D#F 6kTA  TPU\K VAQ]Ԯu,SA`Z wDMK#rԖzJ]D[< sPb///1dbx; }!W^ Ur&$Vej8ᢀ-# ט+CSW.\Ay GwcyY%4kAPNȌA&\^AHO &- xquS?B "G  4dW`, AZ-zH/- BYTxxx@*vQZ XiP\pYNr.7Hs+cy3x|/K7+vI<0+QwUqJ{$ŝNi5O>m'g^S:I!L-x9ͧ:r󌭕 /re"kށE) bm#q!׿&M׳_@k8|RxWP~F0^ T*8ֽ NvPw2m?9'/NHq*l g/E0VLeL7;5ky3њ):V9 9P"eO8Pȏe<$%OFwBjT_\j9}&=%O -_s6h9d29{xޖW6DtVuԊq'*_ Mn׋ tBH3b"( vǿ%A&ln BCg/KgyMBК 婼## `FP5;VA9Z ojQAasq'T߶EAxO$4Wi4fN6*H9{/fx:gW 8F@e*\yw͐klsaS5pW*-D&BGAB(Um%)8 MI|ZPtN橳O5X`!Nh^!鰭 أ^#FXvT;A[@^|?x4uth-s4[Q NPUw7j"Xdr`JPQƯƌǓc!ה-_nj:Q.M0h;3CjC#i3{;nƒGA]*3M!ں;,?>py"r!A0MÈ``#hC?(!&v0W)>U \Ne"G* ?ܱUr!  " pޫz*Ru< V"c n*GGŒ5gpxP+QNP@Њ )csJ/F4b bq}PAp/摅R]@ vwXA>e_6_E@,A1SE0Ys5@K>$!`Nِ#%#k[3RiE.9$̇Rg 7H`L舠A|A?\^^%`=UT0uU)2c  dkuqsR~`#G0b5Ѥ(|_ji!`}{M4ͬxXx.$&8r]_; j ofԠA7x*xClffGDK#2ʗC}~G%BA KGlyFx./`%sG>-WWWY8^[ FҼtTHP0fH/=[ /!]EPM (%O9dv:^i !1,-NݝE:NAdZ`@bǏx#_`AB#^ Nâ$ӄ ɯ` )u02#W3ivuUЬΖu[ f}Y0BXgz* ]s?*=OLs ZI["#>y G'bU& c!f 5Y,ԅjn+t\&C*yMvS*o^WbO7\~y; n$xHυ ]Q"Q4${_k?#z( At B/:`$VNhjBLdVZ@6[[R]A5F0z>*^Zκ#JZZl2@͎xQ>z* 9 L+oW lσ rNx#<*t%FTk~*h#dW"H!0:=Bou5pݫSJv8-$P=bРc0SiWPn{0x30|.(8Kۗˑgb.MW޾}{ee/NYߡtDaM?0 նzH7+SlI9IB }xT-bEHE>D>M+J~?X_P!nxz;vRp'8b=M`G#wN%hO8@ h(㳰GǕ}Å-Xō})ApM WFGH5e[ #$kDNU |XfT_j"{le A2AR`5B E]A'4- AA  sO*ԙ ~5.VAʮ*8 *8ӔvWU0ݟFo aN| *ěʊ \T  |C`~uDh[ʹcp/*ȵ+?$LGA J*x`to*ݒlM*scgb:7&&@QޭQRA'CثYEFwRB|Ab&a4u"mfW%7j9Bٳg)H'Q(gϷ?>"g4cxZ__{pwƥ]8 h@" Ƭ ,|_Ko%,T'p: J R2sF'̋):Hc7J!h.pI+4:'$Fݠwn pWq֧p6OW&k6L{GGۄu,>} XSp(~#Ģq`pD*l\z1d\S1Q/PUC>AU?<*h9Tp0@lP5!$܋XB"/ŪioC!MAs,D@>Y|S' C o++qelq!ׇ<ݚPz=|XF;GG=оpܧґǽ>%5Fuᱹ H#%U(dK-͐f2mpDH-3:"H]RJ@&"y#h kI8 ^3#kmEgc4aaB݌#*g`hOpwRK_2J.{AB#qOSD_|ţG>qى'<w_~;2599Y. d2X9zQiju||Z@#  3祥E=]v ?̽Y͖p:k╱<x4E&`ax776lxx8͹U?mllLOO{ÜRS]H<nፓPT93S2 %ӧOszzNO}o\77 W̅M8䦟2$ }_~ H෈;4gj UB04Zf+jH46u n6Z\n2FimbClf5_<`|؄}2~90)ҿ||\V Z[=Zpn5y&Y{[ȓ@AwzJ>x +M/%K mx^w8'i=޺'r}gT((«A[?"lK( X!V}PF^ z_‚Xh[Maw"Lv^b#6ɂXp>Æ? kֳT_.A(/@Ș530x^У,8Eކ,x ~9-X)[O\.:13yt|ee+,Iat8\Q[0cAP2/V7j-(+YM̂BXӂ&b;,rg)Նx4b-ͦ1BEQy?WdA TuarTIK<]x,x=p4QXP*}(7Q&k'w&599vE x(288nݮq5 ʰ5AZe(SWT!)}dpl/dcqеupŰ]ڌ́ PЗe d) 34əO:Vml\3A0jL?=q ~=Qe{IDA3  h ;-L*r3tz:*lb"C Vo{_Ա !h UضΒ4 ̂4p/l3ĂWE NA_NJTaJ.4gۊl#j ,< z^PD M<^`y-H MRJb?2Z0hp3Ar~:m Җ D~BW3R/H R? n ^jA`B#0$ 4,۬#ڔ,s&TF&* ,,)_ i=++*%H-hxw,HvH*b =`[#n)l8whs;4ěy,..ڔ#wV IDATkj~:GTWo/r?]=s PX,訬q|\"H̩wNRf(҃cʫ5(Ă. n  (b(pX?lFB)s 6 T'LOOiƫ`0霛+/ߩ;`=XB! 2 а:A<5 I ]ied^C3D}32g !Ep…bZ ioWW!RIsRF0ZͭM"80!X!} "8PA*XaGܿY`<qƂ\v#96i49Go6Kz$!Cf"QXv[sk4ڊ Ca}33!_,xX/zCfq FЂұ A0L`9Gтv`PÂ\aZb폳:t',_"a EZ?g-8={mA`HLɓ'eeeλJ Jsԫz5Y^Gff>FUڻb/ \={ o}lЖ' 4d Ј5 \@ZX Zi"Q,(c$lRKI'E7B7 xhH4idlrB/QwHxgխ;vPA<__Aڏ*4@kԂ cFЦ-/#Q L ^ `sMsMM s/ xiҵ!e[0!Der)im&{.ƂStj BtFPXӺQ`0rA!/u(<ȉFbLg]Z8QYИaλ}E[f,A[XjNCZ2 67ϡ&L.YBX.hA}nm|͛=AptC}oX XZG J!f  110zjunhxZ W ؠ zpbXrЗ2m" X @\E|x3Ŏ*}qx@(Dc> ͐etE뗿).Xk,HC,", |.bA X6X@5X˴l-˲kA` ,WjAF% ZYZd`Ype |I-x*O bb xHѡS,/-8"*ꉓ!Il ]|ZPE׳ ˂&yqv9тLz, wʂi-t]8\6*H+'@[׳B3b[OXB T9AT=.)!p|ܞ @tf=^6ѳi6[E B)JnNzaƱmыHQK4W H)Ŗ¸dADrۛxqL=խZ̓|DEA<=aDQ㶑no?:H$MLN FET۝kW'gbީ0Əc,s\_oo'""UdZ*ڂ YEUL }i q!chx.+,?OrIDZE%gH$ז' q[rUD:A/YDux![Q?luڂ  5R;ARO*v94Y  GM6AP%žz@6?.O{(hՂ$PF+>D+%UZQwگĊ2VjuTOO8sq:UMB P4~GT!V/mo9&zAA0sI +%W`Z bMM^ 8OYzd( su 6hCX]tc<QCԂP[I)z<:f L-8K 1JZPkŊN -Kg-a?Ч[]oo5>bA`Ղ-1YZI >[0`X`N`KZpى`Y4 -|f&7 n]8A=JIu rV!oӜ^~ydТW!f [# ׍z`c袱}(^[g]q C% S&OGA/%45#@:w,_ֹ8E}U|N28RI|lRjV)+Yg,: ~O{wwp=w.Zyʃ+TE^YѪE{ܐؙ#J;yVlJ7*/@0B&UDqzk54q,EwmE,s[[]tC/A1su"8YC2@pn q;*;;$Ύ@Ao344TQKfۀ`r=)fV!QO`/---FkJR9Y`'mYqF)KWChev (r;n7 `"L6$ǓAE[aW~nڭTC$Rf蝒\O@_AWMADE4!o_߹?7 wk &KAx-H%b_ ^V`dfzHlzOV NPt:T.MPEג;q& 2ӛ* ,#+!Gfx SM|\|>@)'[_/hqr>^{xeKHu{esmW3LA"D m;ɖv-:D0I' hGἩU8u"foD̥\[($E'3(G+*ȱՁET t>* F_a(C!^<ڪ r) |~:2{~!iX,X5bA= K $(,xq1zjAaXPO1 .ި -BjޟDCP`)"(C@,=d8"4 2lA͡|m2\C$,E4dN"Yԇ"ݧ7>lӴn1ӂ4w؋pga5 GmwޝʄA"Bְe5ø`^h/Kr<%O} Ȭj*Ă\f)9,hт;l<Y:1* 9hS,YxU'K =tRNNNZbX$k-μ-<  4cP 1|higLP3[C#n yl ; gbHe`3c+c'\^lGeIYct(_3!\5Ha"!cAϖX‘dѐ} =L4#k]CKʏ߯NήvzDGИ!Hi`[4iy]lO-ELi,&p@p p$I$Yfsp GPGʿu _Lb*%}BAĝHT7-ky3Y'|jũ]"= K;H܄ X͔AHK{H?x sJD9s?s$?,d""a%O/U&f޹ h a9Yp击wRz"R 7 yɨ.A8RFۂ TѵѵR- &֍"XF '+)]!QpHD#GXgg("Ο7ܯ.4!x:Ehftcp\&siqK&4H;@PͯA "֏`..(J-gq$,hZ:S4A V0wM_:Ι`X; `9 i*Z[z}jjhhHWbzvl*Z9MϪ!"ED0r4HQB0MQ6_)v#CC@x_s###vZd`,Fw ƽßwhRz␵eA`)Xpdqdolo6xOj=(Z۱"BXli @ÂkZ"J}T ָ\kUDقP]]}cقnװ/Ċ L<*1݂ C/`-HЂAH2ZAUaA8Ua) )&HP HtWDcOSJ*n Y!H 7,fJ,x[PhnA "͊(Il-V?xPCAj ݋'l Z6b~B{q<ŀ2 48K grΒ/w,鉻;pLsGYiDQG56*4_4h‚3p,&] pႯJ#7NmA\ GP L0GjqIfdjmͭ3FҸK~0 eIV$]džR :z]fzv]zlжQ086FdS9˶@?ũd.o>R@`iiixx;t͛7~[;>>Q4K9a&)aT2=Ɇ /lw!:$~mpj܁ -ݎl!dcCA -O,c_![x#_0]dޝ;BpXBh FFaWsBQ,.x~ (?.hfƕh ohhX8\DTQ&y 0xm;so<ke!Xr[Y-\0gA<"X6X*,L FzgA -ίق69-,Z[\$iwA+qÂ2#gdQÂaێQV:qJ.O e<Ăt5h'ZPY0rOs jh)F,x!Y6d @<Xz?ۂOj',s s IDATc^@vġ78j:8f{%L N8%PEt*bׯ_;`YScPvU;Xψ!콆ø86\P[0#B['}@(hHϦ~3FOE[ qN/! 'TYPZa ;%d[jT7 i*xA`RBGЀV TiVv1i&jY-J֍& ^lh˛1NYm6&L`Tc&w̋=9Ͻ}n-qxzB~9yYkk{6i J> O#&4@] X Fl6[-709pyjjMC/_̜ɜuVIIѣG%֎bg{Ռ|`i .*k_~ +#e.KE1L_^Zfa)#{*|AwkwϾrMիAP7ZwD- yo.'#KCU;j_X/fto1Fr-N~GWLnp>FD;G=?I+zOucsn[8? -vyr`8G) /_d9 !X-!5pe^CܵEP` 2"U!2xZK<.SUxQ*"UUީ j:/*T>*xU&*ĠLzy2a[>fɍ ؈ծ ?c$N*ɰ9a_U1 X*W "sÖK*X5VU_KEσqb=_K-bc\5lL2z[N}Z%3Lq5`%ay4,Wx|1!B&sB874w۳LDPsq|Ѷc vjˀ_ gQ+gggNѐc]7u~5-(w,{L6z78ܤwr\7 6---=?~< c}} QԩSU0d8#{J|Y97&"W*5C|E#g7+҄nP^ڑ9 A3088L[: ^S kJY;EUAB-t:rlټ.݇6=3Aej*c=i; QDf1M KAk=sj *=DpѽDУ6)w`i.`Is%t/!fz* &*ʍqQ$,=Œ?V N rRAN-D;wJxшv~qP 29)SyIKdC0TG5o0Ԁ|=@).65/&bzB?/(E jFZAW/S8Rڤ W_O>ݏh =WUFBER$|xD9H=mxcqo|u(:ة-lL/' ]B{DH"O`)N{H$&'9x$vDKTs:;;O~ݨ`Akt*Xj:? Z-.Tpz*J;C4Qir IM぀W bE ǖLTPQ[YT< v3׫-OK`Ft*|a `M ^"XCJ |q=AFzg8kϕ ~qaaA[M[hvѤ'T$/5̋ c&8A766 8?~ .DQG. .1jW7\6(PZRch\~B 8~,Oi+YD>FaIZ$: k/[ $I<'Pa7TjisK@aes;`$]'G(9rddddmm<ϴ~@"4E#&=H“;GTzmswfz:/]wWR/ A9<\.,06=}|j j==Ycxjs7vSC!ۿfLGE@L4͙ ӒMA`Eso\\#~k\LTУz .u AG{],T0#1]Ӥ7ղ5 ޸ѻ  Shst]sZϟ6UAlO ~ӎ d~b#/Q/q8 mn*g=C0UЖ滠 DgQ8T__[8*DcCZ ȠP""( _r,chfmh`!}ʒv9PAq z5?wF !hK33UVPhCZhlT -d1q%$T 0l泋Çt߹sGJ0\>1G7w̳P]Ma&u%~p ||iʕjb R2O E { ǸF].V|(&yELJЧic-sD'qh &QuTfIp%4 aEƷm3gS`A#"nOӰI_ M%4mLE쬪yqѣG]_uJ!+*ƃ=ZmVd7 V[+RA A4DBuAO ~Ȣ4iAa*o`(cZACgF76zC?UT,# ajz,0V |bRh' AJl 3NVJkvjtrY"-A8m6=.yLv KN%҄h}۷`DVaPΣ7;Vtm8B&GiA,D%kQau9 A@l+=5x6;tLK1RTf殥J+>4 %" $4]n7Uވ'Ir~y?p C+`ecz}O|nUѤ<*XTXO:I*X[ӳzxe*Xd]&. zZ<$RC~h2}, O*T0^4 fSAW^.&U j=Fw ..ci Brr?C} *$"`jT/r/ =UFо.LJx]K}3qEQ]0%I)@u7x8QrSzp,H1e?ZZ`,2#\l'JFp8BhJ2589@ xYrw* |"A:pX&&@IFS{^'mHE=4DYu<LӢchvW6F72q׸mkZ|ZCV2ɭutLIɓ'O:>`"GVȟ%΃`͂WAɃ`OUO4."V@[FP̈ nȃ7mcBnYh+c: KLq0&I*HRAO *xE *HadBTLR fQeB0!XG*`ش NNF2J]o Y/?lV5syt4R<9p ~)̳E='z|[Ϊnvrx2 իWGGGeU0BM/E"; QÉfe[[o{O[@pm4xSpJ Q0ES8QPL(&Q- S.۹ sj*'¹+ 4 !8DG2?ad~qbȝޙ_okk c  \sO/J w|ڕ'ݻӧO߁6򇑑c[39uy!o#?{>DP حwW=~TW` 2UL`GhU_Y` #gAO'"g txt kNQ_r}1L=5F{vL/!8~9{/+2"7i4,U.z%t=,a`d۹ ٔ_M@Prs nDE'?SZ~kI| o8*,( NON<:@|_}&;oT}>=vg#G >_ ie4ʬA)oU#W˄ >zPǻ%\(`Khq4\QM*>(3+T0Y[ZMȀth/6*(Q&hRA%۩ .,׈3e, ZŒ>ظnw>PqBX Sa1F' f;|%!ĨɬYYdb|}ǹmegumz?sRH_X!9vl{a toق`w ,Q]#$l' 6`g(Q8D͋/^ZpͦM N8?n`-ł;MDO|ܞphl2fdbłU -hD_k!q  W'́(;"@~ ܍k(ZD zQ`~8ToA}]5`D@4-([~ѰjAlnHh[| "de(,b DM D(mKUߪVѝ w N D7uUg6di禱eqY(95Wyn&C#m}.R>[ ~Paa`NLp$8OTXX>c}Qpɼ< ֲƭpȎ̌CaP@(/n)E2]p=gb2!00O -N' "$0 +qpBKnl'qE 䥡#ACn7r?1#fX, FYۊ˺/7 #oڗmR'*I6O1: s9KSFƒ뷯?"uJN_gު-Kts&lop {_Jw͕@[EPBq2_iAss,ʌ`лSM { 1CCS ~OU_P:/aQH|UgA0C,A#~qKj%{Qh\+a3#Ôl/%A+Hf"!@%71@LB.X$VG/6A |Y죭HefpC ~>ж } }Ҁ4OfNV`EyR6PF:%p5ǜ932[; u_dƻ{o?J }_4t! I@ B-+6KbAeO !BpZ`F/T|^ 0A AD7y[ #PAu.6]\҂ Y, IDAT{a 4O&g`ON`L؂` ѥ\5yOXpAS`dA}wlAQTG B8>I.&:n xr^T8ՃӍj=IB̅=|bS!n<C6oL&i/Y/--ە8V-S tD" ~1Vp !01ق ,qb+jb8WSԙ j ]>`QS*iO*<cZd"&O ן/]')ג=jkk;}'N<< o40'͛wdѐ7/\DA!X͢DO^*.* yu< !B[/̈ oWvY|^߄S#p$3[reL? A%=|EE;/ u#e}*unCCЗ 1/ob$ԙ \4T|{( 2 A&>-0v V$!MӼc߻׭)MC,Ԅ`#PRmp@a+`qA(=z` ͂EK[XoA2>?͂.łpd ЂlȂ< p:)./2XPˤ:|.W2/9j>M,,9‚ ,hAY06Xp~?,gM`F& E *ʾ  [wbAB4ܛ*; 6o~p'ؾ};(EEC!Sk"1@X0֮]PzQNsCӯ )[ Ʃߐ,h j%xAe/F7% ꔥjIA p-Q|>&xiXA-Dr}#H? ${=noȴQՂQقo8AKщ`e9Ž,]]ĥ/}m FO?](&PfZ87NR`_=x.ukP}_>J"gϞDGbm GRY: fK4|3KP֦茼:;cҔBŗL,F'M8ְ;t8A3Yfa%kd_:o9Ϲ҂)H_Uy#Z -BO#Y*)brH2lYAhm"NOaBm%?R6)%UQl]2!HctUu@z#~KFĆohb[Ay"x1P:'#v!H޶6 ƇXAzR&b/!LpWT,("[ЌGucA7[ 2ajDNa'F=//ρٛKtL/, CphjMھܺl=#H[?tP"X0"`j RM], X.A D *E Q9uƜ%[p?ZO2ۨ0. '3Z mՏtMy -bOfJ܂C9]jD+Te `a75tDiQb:& Hog\`,iR`R*66vp .pOY3ZЃ&`dOBGmeG>X#km`@J<sqNقW? ~zdDUoliiŋON;cgV+bj5pcXpnnnjj*?, bva;JnxnϞ=_^#`!2q$Oƣu|in㣯A3ba_. dߟ R"NrA bLR2"Ȏds0r$M@_w$Tݸ4O9yy569 1AO@70B Kڐ(V0ctg:w[xO7 cLQ}F^kr^t a103 "!( 6v6bsGAh C2ZTl\nOٞ " re&8mDтl {Q @`2X+HK7 Xpi:;L5Yk&*-,H\`H@*nh q x̂W?0hoP̈ͅ" }쁖  W;3#}C.F[`}$F`~:swB,s7ɂ@ł5`AӍzC|̂a04#*U &_ @-(-b-谚, Zm-XKQnlA#JdkC]6;aD֎S~p .cbf|nEp+hAT:܂x/gDg`~6 1 /2,еOQ !|V3Vl [Zb_xiҕJu%@9b؛r$|$1 k@6hA;yzI;LO|qW}eM\9,&;.wL;b:,fQ܈ l}ط+@D-fo^ y-i4NR܂t nK-O1~Fm&g<V6<< zۛ7sرqhsOO5=r^tAh̓,@NU:z-sJb&z% .A(mQbg0 s'~q\dt_OLXXb4 ؄,0-F-;3^`/Њehn.啕n7NӹJ}ܙ|y:1f:,?dOȈW_w!xH<^{ !Xgtq?~'[O$d\4)20,J&v&XPʑ-ȎY%kĂl,hOgo,h^h֎(vjK[>-X^A b)#[`ZkAwfY)`q $xR`olpl\+I G$#̂ssޛւ&9TIݰhiu@(d(nTLͦ͡/5IДuhF"M1ûvZJ{#ۆ+O|k5J,&|] kOãq,!\ʮuxA^ -0hh,xQfeee4\TJZEbg\~Bw.u%%W*6v4-^/4Z¼Zmmj0 ;oWT|]mf-I`@3<,#8޼]F)O(#EBx!jÛ G_4=}Z2"3CPzTrY,H*L ~zq3X&J@]B̐М ( A7xU#`hmxKK-&5032A;?+eJ?߽3,Z#r3ak AiqUKBp)%>UL"Q(d#&}}n<-=PG00{2{)8 !uBRTLmC g@^ $Q%>k+*++;_ K_"o``oؠg%~ܶ- o!M̜|5",ht P[[N{dv={vo4$_.wmaZ^ZYT(?K}΍7VuudΝ---8<{~Ih_}A'>OXtko yR*;< ."qG* bk7k dwբ %CLEa!4IL461Ȃ2&ya=s-9([z?s~|U8t(ĊhK>!Fci/x .[d9`wDPnPpSi }A!0CleN(tI_9 6Da0( yiQ\WCpU\>Cײ'%ײč v O4CS]u_9ձ?"‰i&,ӚckT[ "@DDZO7{W` \َ6.bAw`PGp1odVʂ [/,N`wd^mtyE/QIѕ sz`\͗ J -,D_UK r f$ڎXkh'4r;˒||5L,XԂ^a\hSł5 X0Հ9e{Yq1*8xGG5sԺ[67x0Hu?ŚcX )IZDCjPږ)#O,OGg:??7lP2d:+Fgggl,?] j҂+]]SjaUU՞={&'A߬]g#X|у h&uF!+ңzpsFqAqhI` VƠ-Vrt-W];E#CH4/@ f6T1r!};ZnO,՗&"2 xf/-o/_"ofg7WDQ"xz9a Wq*RqFKAiA3"8i'J鑬6[2iAZr=3Or S6u`` pysEy1nT" -;wuxg|ppUD?i!7*Ye˖RΝGwB͆ EUZ9n_Aw^ZwX].jP]8F;]7 46:M ݛ4PYak蓹AAqtO$rM0snGac7żZtk# ֏ G:Q$̡6> Y777bhAS>==MYPhY-fw('J:Z?[fqbʘ@2p.qsXЂ>HPX|D|e{Lӕ1fA w@Рm6hޏgўEN= IDATZwffk * &n$C~- H7#\ʄ`ڂsAs fuD; NeOю F~ ӅwvxEӂmص!lAݻ7 j߽~;N<)2C~s,υE r :` _i kD0afqՋ[)ùsz#h$Y0tт"^E0&VDƮU8т=c+#S S]L PN*m9DЂ`!W,AJ;id܂ϙ/iʆ`j%6 ~g /}܂C[0\Ѐ >=Y[P` FFŬl,zDmCN;m|a_@ ͂PE p ~lTbD6 Nu-ɂ`I Xk*P F$ȠLJ|@D"::4q\@E]@KPG-JSVc_l qJeRtGui&D&S'N0 a7b'1nod}{ϽK&{J˽^.s<σA Etqur>Qj} yJ9Sa+Ek,,>$ ^M=}>i.r4Ugz?X-t=MM澗p"9USWnX$T%;JX@OBV BTT'$DPn ;!<FWN|wwwooݻw?< 90($@wtэ?~|9>zh(M}_PGH YyyMjK2]D Cp"8b>In|#h#YPhv2ygPBUk ?Dp&!8m2 u[ńpP"5/LEJO|RRAZ[?8I2gG7 (O˼8"lθn3FL^'*7(恝no ש`Mf XʬR]DsZU!U0M ȪBm*ˤƦUA6[y  zΟ]J\>PAdiέX*`;VA ,TȠ `GC.d|k_ :>$ֵ!h' :!xTpRwHFX`_YZ;S -髠ȇ$q vTx加0p Pcr]m߭N`en{QrO 6V硊1M3džN<CUvtp%R.X2&p죰j8 Tҋ kUs`˔ EÀ2='O`\WX$fw%, ܍(fd݌a {Hɴb/i{"QYX^0%p$ {E` .V\X%BhW+|mhKimňf$B i%BM>DV$ԉIN Ta=]]ׅI* քupx?Oz<]D!-ǒU#vƽE |J_n+"x!DDy 3f7F1'Dl:tzi,% ++d[FAA/ vV 8 ^ppm=KhMl\6`%L'1 (x=!4U&h&uӁc6:`WDv/D v`Fʶ Nl7ޕ,]*UYdٲ Mg>HkѨ&@IQGJ2*!h+)iT#ZtrBemS X|( LUЋ*+0Ded$iUXTpSvͪU5"'T'WA &JΨUX؜` hUޯ~B1|J*I`*XTa T0sYk)snۻW(Db\|YEgҘzK] +XJ jeBNq&Qoݺ\܏?7N.? o kXq`n^)ddn YY{׌g 91%LLP,@0pg[m?uڂ`>D| ǰjg25FʚG6<$MN\x ٕw!ZnB6g?76Ol84fWjb>_2h;vR-4Kw$^z^PF58ՈW1o̾:A쳾Ls.*>yGc*:o]5 @6'#SS3h #]\ [ ~VH Up~]R ARA?NuU!T3.R[|&ti32Vv aRAOf G ܕn7F뢋UpZj<|/Td_Ap]qKN `_Jv|ŠUZTOy۝a n%C*UdP`M9&wܝ:-Kށ &@dKA`F\Ͳ 6DeU4!TeJOQAl., TЮPA*UU U߀5fNOWTP}K /Y j#h7bU~PAhk?kQ5DJ O\.,T'`NRSS3$//Mb%@gveggOAas,}l8DL΁zv4H)1QM"nYbo .bxǏ|tH𭬬74||(`07P4`Z3o:z ц ̓&zd'`({^6,;鏲w5q+{6kij deN)ǎ'kx"嬯?x u"7Kl>AIl[ |1^#xbU`AiUwAxeD_4Ӕg 2V\Tѝt0ko4͚Z[ ;:|tx"s;xຕH?#2Ħ; woͽmPbe闖,*JFpIk6ql,2n:IBX89@*Z9ű[J% AX. @\×[@ÿH}  _ AoƜc XhiF̥n ֆ;'4Krr EpuKcka[@GaUa0@ȖS[$?`p}k̈׬oo|Lo,r w7RS_8n*Jڼ/iAB^ﺽKa[ЙbAXG@p! B, w{TOMbA#Зc)3F!<̇o ZZZ8q_łF+OZۻo}===a/p4b qu %F{6l3o4::lYϟ ́2w##{x -\ {3KԴFC@YHQenR8%Y<.F Ҭ6xxJs!yA4o**Z4I$Mott'_c%+YĂl؜XAZi͈`"XPT.̀ +ق&:tZyiZAm<8TO?:軣5F5>M'<LzA&`Aw B^KA@ ,h&[E: ;Cف>ٻwkVdpÆ0,~ Avٲs>)o=2VD߬?RuLqʋ٪eݘI+lhF3a.51E-j"0q RDnc[>>McB>D D4K69@ X d\jR !eт"7S N),8jzF} @O!$Հ.T R,8 G@j'тg`<ɂ{FBWObmTEN TQQJxSmm ǏZA77ӣI=(,HTx5֒,>zEk"466FyXPf|j3pXU:S[NF*X5'luKO.]{1H|}c/&?ܹXƭ :% A(V@ ܊=)A24RTMy___rT]~gC!;_ozƜ!a?ZTd#@NsH_XIz%X)|*_89`k5Fz W^ #| gH,OoAb`N6!Α!XĦR8B~} ɂ3+A pƜ&_;R+…Zjp] l[L-; DPJ {"ANW\y1cڨědTiNNxw@:/ܜߞ~{XfWͪ l4 [GiLD svabrC;k$JAóijijJrp}rGN hp{`ʌs`J@A$!RL#Ҿq"* Jz3Z;ᙔ , ٫zG9p!{g|`kuI[o߅!": P6666LtuLnYYك}N>ާi7\lqh4Ȧ PT6MQoel5UzbDz1?eo`YXXxp,Ym[hvPD# KJJvr H`-Di(};H?{b\Y3!8Ԉ % PwG !d͇`YG##>(T_ؗghdAugi]1S@`br•$#5jF-,.&O 5"h+C0%?Wx$i5ծ'l A7cP8)amKs~{oov}vcб\q i $BڂZ]bp_Z$pΏYP-(Ȃ,XL,dA`nY,,hMgA$ f|"f`Ժ=A tTZ}* jFh_|LQ `A+Z_Å #U׻E? w_qK$^'q A s{XAPMNsn`n,X"X%^!1d*A1[z+ ~P|[ e+ ` ЂҸ`@4ւX(+,)`F8ת~q-qvL& ,hX0X\y j Dz`PlH ڂ Z0`'YpȔLDQ @2#\XpGLy|? bT yQ@[X,*g/ە鞐e IDAT%A",~`˵FۊS̎Nkq$˚Q"h4C 1u<cxͲ2_{,0&עDɈLmNyF@=H4ҽ:" h(_/:}HmAq2BM8 pvHI#@ԱRm כ^KI!6BiP{455 EWӕ~R9sx50faRK͗,,6n|MM"Dc>2ZB$U2*[>uq9q+f&{N=|ۂg:hii9xqD ޳F@E݉Gm=O\s5IZ*@&X gFS!!k;AuWL&m)g>^p~D2o6y6ɦAP&uǤB|O(@eVZ/O Z##]"h hT(UO A`AM<%(j3`§BվCSH`7N*Ť:m"n + jX, 5k DPh܄l6)9ySu:D C`p2غ B,3Ft V0h .-e0(Su! E g='nܨ1{>-wI8p,+~ JmAp\M PL-xՋd8 r> vp Ns DYP,({OOeQ ƬS)! A|dDѥHmA pڲ A?X٪g4C ̂ A.-nS[-KȂɂ(̂cQ f{o{% aڂlB,(Q:A04 XFX**xR (PbBDMSDQB=!sfS5kl@T#E,aOBQ,xV׊CCIS( jP(ud-~>N YoU_[9p4,xܖ7E|P/55b7KXKPQD0_zVjȂ=t3!|&q//TмA_AvJiuhc+~.<639"#Z/g!S,eB QwVϛ9mA4" 6? H9 AeA6b2 < P}#\k9kO~opghO ]߄[4E hC 4r ,e̲8.ZRy)"ˮ@ieKitȬ#P0tPqLm\1!Tf6!`HdD'e-JҝL03{νym ldRy{9!}-fBD~|&PAΌ T" ]A~A@0s@P$U03NeR79nը h*Ulζ5d ^B\jOf_O vD'*y!,3Gcy(ULN*xcW*Tm^i-DS%G^wܽ*1V w 2kOl?}BQëҫdB-؟`E/AAV=̯ɐ3>Į@\.P"~\S]P0uT>7xTx*hX,HU:*ԨD:M*ذ_GTfMT _)V'F>z"in 4IGDIU垢?0 *xTPPpq0D4=%|! XPApE) :#RWgTţn6n;HTTUv̯SQA83=3J<JTV!ȊI PB)k;Vyj"?*Q1z>f3!T8 ]&˰!RY dβٌY :Z;ƎJqtt%}#Nw?Ÿxb +["*8fԒr4$Ei*4Ԣ(ǁ>AWa=`. f/eGT ՕWVCu&!v뗯Eo>:jc*MAJ#±1 N [D%"Mj"ltTP- %*ؐA`q-}af<^pUP u &pD};_-"Xi*hr{nO<5i[a, VTA `nAy !0{aT@z`P*Jt5un}xoqb ʞ_u戮+TGtiZӓ ZU#00 5ʊ4^@VˆKM@-8/@B,()$|?8o":LP vWf%\.W,Cu~V~Nn1w.ũ`}}=|?VWW,eRޕ35577疖qȔcc6Fo߾1Q х'OmV}j4଼J x$AA̻RG2b,#Mi5p^G1OHD_!m춫)KΥ HH-ƻ9xxDZ.斦"g`eIvu]jkd3oݖ"x(^@3y*(4pQQ`cAjADPSL'] kHmz f'S11Jqa˝3h&jkSgp=069ǘI 9 9l11; 8^ qmöav-"(gZFpLiws xdF H2j@1ӳ5U(8=`v옝[W Vx{>{T %uu4 /-Ƃ̂ZxetLoւ6cr`^}HbZRes9k),-2K JbAâ 6f W%XpqX@p'N4LQ1 X%_-8Fc_x=]CFAnMAJ ǐ?3r%Pc[Np]܂c.% [Nh$u"1hUܨ~((_E-}uA uuE,ZaAe VC7^ZOʥM/1"kR 7 Myl 4u~;u;gфL^ec7ddԿy;]q9]We6)IJx#H<%m9j }^#8t5ׇ}>-*jSSS|[$m J%uڵǏ>}QSI|>ML>'Ng@}׮]H,Fzn 6Vr-`eo޽:^A̷} ZA|UGc˳ru 6fCvb@cz-l0|oas;뷈`@XQF iRD"9܂HȈ{Ї$5wމN۰͢E&+e 7TM)")͢ ]‚fBp׶]F7|Ƈ*@@sY?A{݈ [eF JU@N-(FbWrhaD * Nh-XĂ("i0_QaA fgu#  tύ~O ;,҇%WXSgšLEEw477*B0wbwbxI*_EZ/_V~?>eKKK,Ayr% p !17očzU~K:TwТd K{=PQGBuѤ 1K`!?e~-$URT1wݻwqwp$J8kkk?򰾾rlCɂ.\.ŕŕIՂ.7~M[(`T;mCs "u‚ ۓ ތ@'a]h-N `E!_Dl0:bYϚxDnEh:2m쎪ri0>Cp5 bqA`[BӂҒDīuj Z`*[CgA‚TwI]`=U z66N_)8% NhUĂ? 5odLAB?|nOͳ CmR 2 FB[>-r5_*uy.sϱ)dh42 ?It-(R+A~"RI!H;ʡ+oU]Q I8beŢxwA]=\⃃gzzg|is\<7= h!+(!v*"GVkj/'ojjOL_~ cEIb)JP=.\Pĵ퍲4 :ujtt.ZF@ "]:0sr$RSRnUBEȤ^"|p*jX"CA04YHk߷EA6ϿJKYg!PA4D1-qfIRY{ȣq^ +,EE"c#Gg=EA0X(^XιGl*gJc5HQCn'n7ԁ0htei7ج3D6=> d' D9 !=O=x]S(6 R @0)!rӍ\ %Ӵm{`& z JDc6-&YG`oi"ZD /koZH`W&g&#ˑ_!g|a/i4cN-H;=$| sY DÄض.e|Z :ӱKXЫi lGm+A:ł fZh-h H Yn0 Y4̂A,&QM`[04?W2Oh,h ‚1dYs?y.\"M[dNbA`3,X-2:(2ӑ&/ T%4 ?oՙqǂ= IDAT hP06"XʒMEJ%)3dV*j&b1+6h %0[CH쇭kn7>Ι]җ8s~<.7w7& n^( (Y/Q,?-ϰ`gcLzT9Z ht,(YCoARi+N~IhQ'Y0=Yь]: "q n Ał@TѠD{wQ܍@T;`-,(ZЮ: Lj)h/oCbA%PEͣ^r+\yɂ Hhm͔ˤ-N 7q: v:Qh|4aqy'FWH EQ '\KBqEEq?K wJJ>Mw,XXG 7K'@x!#>jx_&T˰ jɫ/$$ K-Z466<$5^ h +դ>Z]\688 zzz2볈-ߏ\-C"nB`84zyTO<95-Zm'4,~o|^A/>epɂrhQ$#XY077;"꟮ y _ϢI C5$ʨu{xDP]\d\i;@Pf`(}UݕS\Q^D0?fHlb 38t8V9`F|~v>M;<\*4 hr&'bꆪ[ s.$_t&P, 31 CC 3..j+!#|`}f}}S~ ~1E@0NEӈ^S@p!6swL7w~! 49 "rAD2 =8N/qdb'_{/^&k> ~qTzDBu%K .$ BWkZZAZL.iA*M8=Ղ V5錰a`qjl LZ7-c iAޔ %A k 8-LܫYK4 쮢a!_HX0_ D#,(\09`iۈ,]z ܩZFZ0lR`D A$ \SKP z,,+jقڸfA Ş~gB7-04ĉQ)`hעԗb"-+Xl= 2s55Nެk9FffڕAg[%(bպfۦVċ!кv玼 iٍ,("ےFy#Jz-JE?YW",7'Nqiڷ$,@`-YE RȂsゎG_ґgr O}[>_C.9(A͹ /A^u\05'*Jٴ1\%ݿy۽Uqx#633w{ ΂%x xӧ8d;X'y6Cfق_".Օ /e/斘-}{3m%/+O DCbCPf@"do*.q*ǫk囱zi^Y\ p;1'5EmUKsUZ/bj-ͮ!H\t -|+L.%Ta}b /?NaRՂ| WѠ^c#QFM(-{ ceA\n~V0# 6 xAXaYs~.q^olbAݸ ^<(K#@)p;N_&C> xBIN+*99?RzfTS A/蟥n%y~fG ;c-iD|y |<L!l4mbEP.5X0M^$#V+k5^4u0ʂլH`UF.A0(4Z7jB. Vq.Y`@Xpe4G1-,GKHق 4͂c}}"G @sEą<҂^ * hA#ކ)K`\ jSLGd‚B\p=y nFR9pb *䠄aRbÕ+qjA1Y b %U vic-G(V[ y1mB1$oK 6#T-nr'H;UʸAqY/XLVDE.<4 šOMNONMMǏ'.MH Nߝxx\BmrrrjjS;6F{(ΉˡP<0[}h [rGx (6ML|2o#=1e/Q'*AQPO Y0H+X %ێv 'R-h{V.x,PZP_W]V֡ X"mFٝN>hlr- rݥ`'eBi>|z{gDo`-xtt("].(,|-VC0waTł1E52%,"݊Sӓ*;ھ`%?M* 1 %S Z&g gNOP~8ehZG\y]X8z%^ ^( 6-IT:e-‚godU: ~͂M|MQܢ Ow=,8bBdAטs I B_\, 7jZ`m:E.8*4 6XYq!rADDGm$ F j\LDpB%&96X`p`-Xnmˇ#|Mg-| ZZZpk8dY9ENڜr1{4:>$߰͛7= # /EseJ8>?1\'M@d6H De#X3I%tApiYt*XALvAH$))im $d"qwq}9ncfO˭C{9y#~h J9/(Wl 'FMwJT%"TԈ\3@z2J[EGcL1&™򼼼4qn brAs*oT5Ո枵x<. Y8߉E S5.};fybbn䣑۳nQ+^XXʔ Yp|`OCaC\{4:]pł [@J [8۝i;SvSSYyMyii ҲZ`ɓ8_,...q ϴh__-QZv$$Tq@8b?׌A|Ϟ=3:r}jy< gٹb͋l-WngffҒ:r6!\c<Ik&NOT";[,>l.Co_ [O"DxpgŢbHz658(O^7{^=P ш_(-H+\0CL? qʼn~r47e0BVޭ AI!x騜 :FgރO5 Aeys nES[NL?0OMH ,p \|!M=1nڬN@ͧdrouS>H 7KF8F*5՘kjB}}*T#/zbee)7o> a} chGvvip!|ҳ2 A]v쾘q ^}% G𧇎mg_߂b;* OLol),Em܂CkZ0",[ bַ&싾`F C e.,U[zÂh1{B?+-֖u9VaEh kVjD‚ RZ,(Xa)Q'Y# >o}^-x~YmA&[#[hYBp(,QEJӨ-xMRZJ Ftڂ1-3֔,xhb‚g%B *-I\X˂FnS2?Q[ns -#ΐ-/Ql!>d2~>R[p|l|B̀ E4r"''Dsvt;># :~#h A׊H5!MGT[@ivGlt`v_em˹*s& L,mZVi4~Pq~'^2IDQn6ɂ Z55C@cwή+ Ҩyݢ[mǧvQrOOM8{mG4MPwA 1N I E"7C֌# \pl-Y0J|rA=cǎ_|u]/`^snœ$ea|%Gb :;;7GٻW |ADzRS\0_ppSR،ccc#.<]0=_/-,,8حMy.d/9m⼆]ɯey x *Dĩd $.iȄ?~HE ?54zlŜ`=CkE3`V ф^Hj ߄ -XyRBMU"ii{ A #H#- 3P gWi#Ҽ \\G1\0Qf4Yp׈}^W$׈|ۼ|vM^c& usX7!xTv(:jA^# *-FPޠO ]DjgW)Gzz/v "TQ#ڷoam/GF& &ivqن _/( nZ#Z5l_~ ֚$SOޢ걉 JS{8NWQ^# f)^oDVV# ^65\.Wtt4ϖⱚ‚|F wXTSa6,C7OBfo1ڽvM=7g[K3Rp M&WЈܹ`i*Kxb A a@ *MWFjT ['ah-6 ĆJ6##_DI Lbds}iu7s^Mh6[PWP5U5^}ptjb !XBs+ |ή7óP-uxrENOK*+4mϴ?7q4Yt-L, Ouc‚<x?~?ϒxx{<(ܟ V{'KLm #[n֙Y-s?X]F7ؽ{]$iT&%׭K8 &z=l`|s~ J@mmj6dXsOLbpQyK`.qNX;.yɓ"u9h6{J[ ?"2 *ַ  T 6k!P/A"zi_옓#4Xe昣Ewwoر/iGyyfH> 2;6n,&%i JFҨk`ifp ҖhՍ)A-E+]M% b6**WDy*Oal,J<^sO ֶs(.?/'*K*tfWO ;80!f=qZ:(`^jB~/X?E> es\Y+N =>F`dAZ0$N6{\'Ԃ1>XpT,h0rIKXPxʰfA/V'Iy^F[FDĝbo:yr'.,M~@\ۂiҢ䋹`il 9Z<,8 %FJfd-R<ˎi-H_BSV)E)G/4sa˛p `,X?( Ԭ7[-*/ Jk[00V! @R :> ^a K`(ɂ fɂ >sa2 PX0&qh=&wX"2AxZy~"2=MߙOÊ:o "u-ES_A*>fOǾMt6JllbƟ˻:jˠBgZ׻+P"Ԃ-a;qaJN_OͳOLexTX$5 ׁ4/x$4Gc`Rv W-8աi:{Vz{{? gIi1U/*/ _ՅDHˉ~jy vߐN_u˱1`i}2DE`~QoKiH fAʹo}˻!OTVbP^px.'D `q g AGUNV.Zͭr•{0p I?ˏ?...8hZ#S# F|ټxo;vaah\9Oiek7 F!7!(#=vpa&'mBPNcb{dt'pEge[s|Nma6lƪCG} 2*؞ ;2rҾ:.ix`NYiRaaWb}~* &v 85`d4TPw1yviii,GT@ZD9Fꚇ򢊢Pq$u:S4"#x +WU2~a!;D'p!sn961)9|রV 4m* j,ȑ4~A9|ue *܂.P>R IDATt(@s;A k\⧮堓ÐI0t]Dp#P^4?F5ŠXP !mi!8?)VYUl-߽ ze|krN3$#Oܫ9>L@߬zdK,@=,V*аC2~Ȼ2223|>OX W"-g|z4N|2&aYr7?8'SOAbuI2хhOCψx(-|33LLlFNiR([s,"8׊C##_sm|M-bA"J8bAA n羾>X#P)`BĂ!8)Aͼ:ilm/uLW(seXZi}i.f|͗Oc?!ees%,5.:.ǘ{lѣGZ* W,|U[yr/|ʔN>MզAIk"<I6CL,' U"`F$5؇ CFfYf$n{W! R`f` @zR!88 )ԨEtdA P\+XPF4gm:øC#|ZTdiP 5&ϓp^GoH jP%* $ ַ͔jl}~p)dT#himmyhmEgC `8Nx`h;ۘ4/f4m T :@N#% .E36.ƴI0de 2MfR*&m?0;(C7?fbGNaV܏^*C{n7{=s-sA IBg@ 9|yEq[} U|8 ??Og`!Rq#X2pE ..ɂO2+1w- n^ׂfccߜB mȂA\'_B-;hP 1R$>}ݾe B_ ┈펤% dѸ>lboʭª:l{v قUbq6ǰA{ p MClz_?%BPcG B-V34t&lډXj$q7nbxg($Kv$FCV+[D+i`i A|A [ǠluAk^ 哝[ZvC),,D pfa/iiqqkST2[<%-d2 zfM wI@O-0J.Sp,.,ՙ2pb(M!gK|c[GGqDM <-!9YB׷;wdB\?~׮] DH %; AhRA`-6.h[A ~ʽhB9}JJ 8v^`:@ҥiNW !aA53GH|)4L;iGX#Hm.DL?{YȉKs `0hZC +cJ_'+PXW6jQ]{ B uA-8~Mӈ L:@e,YǗ4͚~$>L pYC63ݔFqI!G0J͍3WEg =)'ts5w6na b[g֡!IvD~ ,ٰO3 "`>!-W#C 檢/NɞqIQ|f﯃ ցs[Pe  Z ]T)dЂ ӦQ޶;̂`A`|,+vUԋI\~'ؘ[ɂP e! r j 9,( P8Cw*-X,8@uIt "8TX~-D 6 NcR݇D9_dY00cҵLYY-S[${Vf f| |;Z,'ejB #~)gd\:XenAŋ{EBˠ l4JѢh1/EL1,3bݍR«Qb᷄6#Pт=&@TO,R FMg.RK[AnAE$gjp68u՘}_#(v=JGCo[:p;bK.l;)EE]Ϟejh>=qZG[͚Q BcA@41Qk;ր3 xW+bT2" RZp}т4|hY-XWO^mrN(MN/z]Sp8ۍ,eI:Ǘ8Ϸ,MVSVV"*:wm*j= nZRMіr+"}i| {EԒdHpCZ*+'zsFTLw,YE1a q!e?Ϊ JzYgB!Ty"Ng-X!fJ4K A0FuqxՎw$v}0L~}BmWo .ENK<,#*b KH@$YP )AC:;sD S (52 r('"(H,GP3ao% s9?g BnmkQ Aχ>A_4_5eXB!C/7o/o`9[,ڰlfoA6ƺ5ǬfZPދIsY#XY9tWJ0u S9,H>a c܂ȟp-OX#WԂ>==FT 85@(kͪ-hA ZD_qAPD0h֙,@W т8@{`Yk}}̂[n&- ' тyš297bAYna>۱ &2-U)r[яhK<9hYPD0*YРW6Y ,(Y;%d ! 0 ɂX1* CЊ:rd$Zςk,-(̔@TeTAsZ3O AgE HPFX:E, zL`AL|spѰ2 Gθ% jǸwo-3,ظ2綠+/ `WQ&qq$e$4HBit% !BX,ym7z?Jc4 }{2Qv1MeiWW gU'*EAM@t!T_QqCe!K1ŒȊTUF)d#F AuhM6&&{Rs =g+{Ɉ qRDQ,293³Ă& 44&XϏ:#4=(rZfD"aHW5)Rn%nEZ##.kq]N2[sZZH[ZZV\i0TaofjBs ޻wBA%|+*T1uuuIQ|C6{At-h,S9;ł5 'c/QXFi9NgDc@aD3 7VVp֜Y[l` LpΎsNZ0R*_^]6^߻ o퉉xقY|+IdJ5=.!Ue̓`|@lFʾm{ߑ*z2:'I3K"J#YYgau+% @BɅ)B^ɉɠCPU ~8.}^q`@PWg C E5%q A:L`|| '3u%aM:n7Lg:6Vg AF݌/| Aըufjp!컯΍?{<;hE9'=}\zt,gE<*Ji@pg^C t? `PԻr8S`@pi07DK{E5_lQE PO~ *ԇU r@𨐰;Bx,*H"H*v~%JRX Fp` |#__K|`ǫT0C.l**GP`*%}*'TucKc[vi3! (pP*mRUO]]4*(&mNQ7뉯1<*Z`;`x _`uP#4].pħ('SqqJ`츂2 r5 8$ԂM(E 8O 8OgF' ;v :Mh( `B:4e#DLNʎ1=.A{x2BWaO5鵵(l$^fĞ''. ]QPJ3wQ@aȩ`^755CoǦ#hԀ}&zό 7X)Fp/~S}qeSӃsQ<]|2+郧2 %4h*l|Tbxx82R5о5xʉ;tY z΢U&-(..Fݲ[w# eӦM@0'IΞN2F(k\rڵ# ?~1;C0'բڂ A!!E^shghp5Sa@χAGp{[۩C**Z& Mhft@^"(SR/>([^"Cn[d8#+jc_`& O hWs2[4K!M ¦W!Ep)!(ͻRSS 8麩~d#*'Ax" AJ G?/& ,+tFQڭ(qCêafOX!vpk6 .4]a6Q܄V a71aÓ9{k"0 |;@[]5D8qO|' &]] 5!x3z󅟿4xȢ̶.x F)~n),c0m"N瞽|YԖ Hׁ_8 Ƌ=_2N~J .A# {Gc`KZئ[0 $ `wȂɂcՂ"L qYق AłGM?h@0 䂸Rbe !Q{w~&C-14ZG0=X'ck?/u@7nA@0B0/W :Yźl& B FpvL7YlA.n 3_Ai?E޿Z0*-ӹGsh*ł.诡bA 0 uA' ^ J d: H/*zpT0/HSm R :٢/-XE4:hBs@C<"E8==>wDžAŦx-mll > {3<w.1c6[1S?) <~,/:HO={;Go!܉Vп0 nd%;fAE@Tt/ilQCKt 2̭ߣq-AΌpAq#  O.?{1Q[ݛt~wiUW2C>k|kE~X}݈`!6혷?yDƂVD=& v}hA`awiw# A% n悓\.5 [ i̛" Ft Bt#Y1XbA ̂"a57`1fs"X-茠ł A ۾Ĵ8G:M4̠«V.T7} 1 f>D0[P)E9ɂ?n?~ tD5hXp# d(qC>HIq /.|(صkW#$-)Nj#;]!̂mhAS -4x465zw?vUxbE[dGFZvT |f֭,Yoz=c rw;BGXqT~Z$KٴAxD`Dp"Y_W_76V]`DГ j4[O&OֿWOŦv+CuAP68Hg=^QxEX3%|,2 |nշbDPZp~  o`\:q"̊4\9x8"XbDPC ᗹjFeq ;;K Gkk s빠:"ah L&)H=,B'n,nߴo (>݂wv<۽ ,m9tylg *ݩUl0Yd]ݿ& zB#oENNLcD0jAob47 6#xk7݊*Zp;~O,` y1 ł33 >a h 1h3%L! .!-Xp5Xnl3;ǥт>݂H'KX3_ZP"xւlkbg{{vXp  * sD -{M6z D -p`@[&j iYpvzlASE4m5T=qr ,QȆoɯr-gPG@H* @uo@lc\l u@nMADm 7'/CPhj kʭk[ 2feuF~;lgTw|$ܺ~PI y=t@pDΝA`6!wʞ J\A{4=㠨eɂILb gXPy"G0Y0^pq ֏׆`ɺBDmmp @[+&Ђ)QFm֮eY;q8P ҂pP5ÂyZȂPt[bd ܂˴ H4=(?&7M&z;#t+Ġn3$UIa&¦XkrEIySԖkgϞe}ٞ.|菦h*\.#Y hqj&>dDFA{(?p)G`vWR[TS/Q B72bɲXp^M-=3h @71,֓[0XK484` L$`*C0;!!uc*Pm A0y=%Tf*pQ9nq{7sUbGtA ,<I.? <۱/(P B|UZmz}d_կ<#r h Epˢm]m̂eX )Xk!ljr )"(XPrtH+ 3( hh`>Ȳ j=V=# ƔVXX~ Nxjp*Wä5 _lo P&-H@Ѓɵ>/K~; #bRlWQQOAqD5c Krss!,OI.N,]źBGQ,ؤ --1:3JOpe7:;pD܁a`?dĨg)e8>~ B%Y_~;3N N:nAK~3+тii8)oKlZZ !(l۶mHR䒎BF.B+T j9VcKvvdeD#V_co_F 1頁-Qh&'S.Keo!(,55:+89pNU`a=^s04 8!ȫIH$Y# xiW# wޕ,![adw @ChTU# Rgxjjz Y/ Cт3'g`‚`Axʟ R"--m7nHߐqAA,H cQX0&؂vSNJt3-SKoɂQ1=^TМ0 5H:B \[k5 >1("5/ h` y4hs[it9 눆`܂~ذͥq cC-#,$^AљnnAN,Tn"0$:bTU4 s >f ذA: >$ BGYPXpiӤDn. 0(`Nh"dl LÔ;P&/ 866KA2&q߿ -( #@Vaϟëd$E%CeGᘼO2bUe1⌿ 1B,4ر73d {{JJ2FDvYyA[-eY,zqKSc55WƮ1_ѣGH-paiٌaBJ75@Nvc;FGqH<[&&+)bA !b=a86v't%&4Y"),H8moEOe-E;\dA؜6'eӦ/ /|Hcm //wV^-qء N?W{eKXpM893g)q--W[j3kccg+fg޸q4?; 2rIb:/mݺHMdD&e0B.? ++ށV+XspK 7T#82.d|AZUgҤ z,TB FDZ-!hnߞYR=@l[A-a,!xe 1YI$b2c!? A .6+v51)!Av _0,H#__R7! 8uvj+-B (b5M6c &~{ #8it0p'} F3=`A8GGϰs'ڨsT{ Q GG;r8 [Qيb,1552o[6܂Ji܂vvAMg^R1+!`D+SMV,PNv'2u!,FP.̂Y* F:M ufw:d3^x|$"9gNy~oInd5`As w88K=>A LhA܂]FqlO\a+,'Y7yHiA/YO% J3@mFž[I"% N-צXՏUl\',Gɂ`doGd }܂#ZYZ/.,(!H'8 $.-x‚;׽$8d: ke˗_e 3K~ٹs@P@S)^h\n|.]J!ZT, <1Df+f $lc qV*Ŕ* mo`;%t u:xcmxa6y0grҏ|n X$ ~Պ RP%Zނ?qL&\`Anx䝅l`| @\nE DWׯ:k/0WTd3/#/!) ^e:Nqh4B Bj .=?krL.#?tTKSv:؍G o== j9Dg$CMM333w/{ Cwa]N5:FFp߹}hAe zGwx`@3kgOZ}! Egm13Ak7"xA c\: Ak5;]K#!xsblkwR֕ UH˳-Ͼ'!ʪr n^ȂZ8ݲSCQ!o8EEshA\fEBB,.6s > 97Qf3{SU$s,hC bѤ#(>5V,(cH ב$Y]F~+& ĉF  >649ZN.;eUѪ0lApS9Z7H-Wǯ޹3 'Y,8QXP[mO|ddv-řH$`VYlQ!18뵝JYuiɰ;49^[_35S50pd Ȃ;Cd 6l Ce ~K$ gAios @"lbn#nA =Qڔ-XĄ2 ŧzD W܂V H)-0"dIxI`."N nA4( EiCP M YpT4 Q‚~s@G`sk‚sp*,' bر[:E<y ?,ѪNXJ^(Xh DG(E DPX[Cڂt-E`D [_㹷n*|F߿gG5_ a)~_W$;qG,۾uesil}1͋^iUBK__ V,q j[,bA8"?f<e354`Ђ<8 ne l3`,p6G?lf%·;܉Ƨ֌P^8|S5up N[N~͌_ط,GhOggVWf`tt]x| 7.il,01jáPsss9/eݺgW_ܓA3 ~` HGKf dK)VJxoQvM'DlqVO"%*' As*:e15[,'+ij -Y8"zې IDAT݉O$'  ,nEL$ OӢC?|\0kw̗a˦c$Mlx{f~VcDKu2.dqi ]h 0F'=VWX& xux`LJu`HA_РÄ҂ \/ZAR,s0_p WTt+-&7l)$  8q(ZoaE=p' H% wB!)Xb'=qƏ?Sf >h1-WRlii :Cߐvƺ$qy$iKbNl+_f_B;L ޚ y]nKBﯮNծ }OY&v?Mk21Y&jtLz!rI,b]"őfP >0` C3@PU>U㖻P?yTo#c=(=yy",Bk%IXN1d"}IUQ$|+μκ޺\R@ӹl5C,[[g8`IV[XM㧃F#Z =ЇWWWA>K%lMD ),DfJ% 6"/q("1WF|O#op0F,b/kNd;2[xA,%7?*|:'a [`7*45Ǥ'==}o쵯&&&JKKʡ!`-T؆V y>.p#\6-x½Om?x\ln07)Bl] H?ۧ4~?\BpKأG JVp *:p"p4Mh􎎎X(Q_qJ; CWTA"ssU;Gnh4~Lx>ZSSa(SaEA4SB  &t@SfA 2G,@0re҂ EXn(7gu@BpPg3G*$ Z":N-IeNT N`]Ҟћ} ʲp+ -,;yBXt-p(&xB\:sa+RNĝ~SgòOfd'2Ϣ,(#*L'!3bY+ljDpVUi8@~TͰ\$K],H A9`c"hq  c0nזT ADЪۦ@evG#(Yf,8,XViJɂ|t̟ƈb+I^ cSX[gd+DMv{rqq1-  2զ&l }$MUA.,,|'|,QB 1 ndn<NS.P 'r2Ҕ_gX8V5rAMP p fwf[Y2 LABieYHvol^DޚkT2zѿ JBU8$ntkjcZ X~`L76}>n~Xbuٴ` uς*%.ܯYᒡ etNtN777cU > &=!8wA[oHՆ9Lm& "EL"gd;"HpEpAN):~VW &-@ kl-!Kt?S‡hsk0`! cQ9dR ~Ő "}~{fF P" '#Xq{{:d? Gp v 8X:Q' U1]4]@X~4^6Z{ wK\]v#x{m;8FyE# xhT-ptl,)p!NrrxYf܇q݂!!P 3nS1-h^v?ς-x֔L tLqI[X,iA9|5! _P,fkni` 6‚҂ \B χ$_O+]m3-o5}BpeLh EdFb4QFHW$ -!jDhZFSE~ViAV^ wVZsb#‚ԝC SGYb+fdO5rG6u]q|Kj56K`^;&`ԀM3J4eԸˉ"⧐Qq*H5 RnDT2~DL3RfH?, _S?v==g;!m뗗ssQ ZCWJ8ׅ͕i>,Y:"P3B j8U: m; ^,b~* R?lmKK@>y-Uq;}ME5!]FY8O+YÓhR[{d6ʒdUILe|$%-X%{dUSuwٟv;)F[_118<hޏrw $ WAZ͛7y[zD!KxҥKcEȟ(z$l < (P]!A(r  |+BIz0hE!{d 8)dJHYs1G sweA ܻ[`R L]3:> Ku!`"mB`|C.DCm3Ы)%"eT"({sߗT, e Ak:KDU OhGЁц%%ixq$`Z/ hX @` N@ 211<8)@V+ xC`#*Gc[d^ɊPl*""xk^wg}7lؕJ ţG׮]>yaV(ݩn@p֗>}z``~9D[nrŎ,]f2+_}; /ޫ: w4ill ֱ*2Nj͵8 )f9N 8 ܬ7!0k֬y$kl[׷zl#OP; GAgF4I͐o(‚"Gp Zy&l[4:j T /yC!x #dȝW+Ǝ𖕽Gd9mTnDweme^8ٯ{Ro.9NG3 { -^@891aCShq- ءFpS݈K[ wRxp.*A ei`ڑ65<F+8t QDΝ#*@|W ]L"tI)fq~ SgM3_^M T (RAr TP22 >M(,9*xX9wYo*رJ*m\T JA(p89Dě(<6z>x iMXmY*Ȳ@N["2@ `=w/Sv&|ԪQ`<^H1 SAקT+пdY*xEVAѪՂ7*Xh$$q6ݙH˷+T0uFfUPaʶlޢU5 go~`ĉ|Y@>MҢXnXbiKra+'t:ct~t9+@(!C0P$Z3m%K^5v+RK]^to.RfT-] h3\h둗.Ƌ$]ğX{..{u𻤂kNMM wx9WA1ve[vMݥ\c g?g1ԨAՃ7Ξ=qD14Lb{,͛n͌qCL`aqX6 ZC vww{8#]nY/{lR *,!XLȚ!T?t,.3.*&sk.{ǏÏ).a%mt;`cJ{]8{RGPibmH-(TX)%(/-൐i%l k G PPµo< V0JO2[O\WB%C4V0DAE υٲc1@- i Tg p$ cAB;ܽwotwf̝OSYHΨt2(i:/*X3B[IuZAJJ ,lXcf,Aea48~>9羵W)p(Urr~=s]~DױтΜkW5cY\ XoYYMhah‚ ql}/0f b5?tXU\g\}}&| rl@.? -x `4AwdLĶ%ÂoJJ^-XiU5ެ-88 !R n̴`8 c_т>D(JQZsтԂ(_ÂJqAp{>kG VW"2٣-ͅBS Ric A9^8)}ACZ)Z'jAh%JH$o5=zTN76+݋'a{(lkknSa'7E>YZ, :>?$-lXK2Srdݻu l&5wHZ?5JkNx I$A<X^͇na<0[:kRXhFW;` Z_u:u`,u. O r XD! uI=M<@Y{GPײ^UԂ3IB ?#Ƿȴǧ7 !W@O1$ziV\\N׊0x!h* jQfqq6+pmí>Р޾x,//o9,P*ZNLjLbq@n6MΓhwTb1ᎊd:8=Z;? h}s.`-o`.Nڥ,C`UUdWWj"5A\Ɇt]l #Gb+o ,fJ q/$U5YY/d.F=^8>CO* ق ՠkŲ\d Z Am'6` KiX+т(YB(-A`D u&4Ѧa;LadUģ+Ă$x!ҟLhA-@n p nlga B?I݄y i) IDAT#X',sKJAPYV 5 t '%YXw?B?qe|uJDbڙE2a(;fzC!8 odXҥKYBa|uZ*<8(%1CKA$eܣ93)KaVNT ft:wOZT١(#LD^:`)`}tW A:.sAJVWiAzjخ⿙RzB}r-r)qjI`, 6#3 pd AznR ?~ksl24!!ıSpбc--E(ĢGKSNDAvCG*֐b^/ y;7\ZxXkOO) QupĈ`}ID0Jn̖ ,2m( -X!p̂]:-,y"VZ,81Xz9̂pOr dPɩ 2Xٴş3 b\- Ă3 HXt`L [`C, |.[Ko%5x,Oǘ/:% v2 ^q?)Q-Yt+J ¥h$[Сd݉w: D50lREx:%iB!\""'4#̄r/=)_ 3ٴш <2J#v |I,[`MW:#f58S_fͫ6׬iw\մ˗6y)KCсUaWմS_~zp _í۶m׈R77o\vgAzi7A|6anoOg#H3@i;{7nsy\x΃xV11X$A)$֭[$'Y0X.A?qzlH" =@GVOSh"S[S ,ܲlAA 4-SIxT5%x~)^ӂL^xMiA@1̂!eN֞ڂҍe>hiksc1/zGbA=!" ?J4A ~?(Zqoe Ryژ%8`Bi gkXP H x+ G1LEiA+Ŗ"kq1W=DX RĂ/IގK-4\E{ [f )Q%tfH%E᱕kѮt:M&zrw?Miܦ5Vt͕]ײYŃ+!zp'\/!@~ Mv![/kl.F pḆgPI6gWy睙wS@gL)3ӡ|}}Ñm.=;vGcX<-,4Z@/x) [\ Vr !VzC riH O'kl1舲X/q<rzYe :A|d #Nm^Wλ@^"VO,S*" ;HY&EwVc-A 0%B 詖kKcYZlNASA(`#@\/& R!xŠ"m[D1wA&@iTaRΌ`8P F+Lu "Qc\9ܫyj +>+lCkZZ?I]8}-t# He*H`ܹB:}#G>U~@` ";[rit Up SA^P\S !hcYd_ As塣C &~GD!L fړ@a_D "H=&/TE\ ˂vݞ |cCc%vlnn`kG")eA =&fgg|0&0j\nf̀ `+Fj$!OM,B p2Sz>J@_]3|D4) fOc-QϽ.=R.G -WWUpfffchwYPe=jrhe׮]*(!U/ f}_7)aDPH,-͇.D0'"(9FZ6= _<*!HVA [} T5oD2#~a vB? AhQTgO`yEԷ)YA \s}/3jTPkr |aRA_X`Up;SA3)O&f- Tpa`T&MWUA Up`0T ! UAA`L? #;AT,`!ٝAP|m&&}Jf>רoϞ=7/::X*4 L U?qN#&ޛ}dgϞ=g 8Tp[C" 2 ͳX>-8Yn$TP̎+nb Fi-$SK\hRF0}σ*PBD0" FM`=jg,z2F \~:>Y! ? A  TkSlFg8q!C ,1|D) zEJQB,R[Bpar:A UpmCFD b(neFMf"@&" sȠZ.}gABSNB Xp5EPNPX:oKGQ*ho렊:-|.Qo ". A]n>l421!1 TP;sTP?"o XX` E ;`XVAV]8&mY*q2~Y2-u/;WAT__oU|X"M1HKJJbU8d24ںn74_ov:%7xMM%̒?Cl $8łm\?y9>U?}tNs5Uc^ 4)AWj"8釷@M_M(;&_XU^|%^01p Ă.Z f7Q:-N EFVR(w8ha֌v*b6D.IR;a k؅@T^rOdJ]p3n A`40`xlAS20".%m2vVs\?4>6D?|ӝ@flO2bg,irRACY>sʻSv;?6g3WyӒ x?+o\m{i GF {SWSpGy*?xE5[6m#,d\Q0]^$#wAF~</vXjn hޖ l_>۴aCYYYX%<||2otȑիW?ڦK<;!6؅ .7COQ}8B˖8\H4{=`U k=ΣG<`AG Qj8 bA^bϜ9/09Etִ0N MH&yQQ&I<+[)Ik~vIe^[go*nyI ~Cwn'ٝr& Ђ1JQ.r p2T*o/C-ĉaF;lcK3\]U6.Fp!dDFS;CE?`lW E DPALѳwyڣxJE ܰo17e@l_X jmJ|KCZv3<;(͘WKxUUp8 "58[###bՌ_{0x^hOTըȂ(),0/s9 k q_QK 9E ;"k \\2iȌV39RD+O _Sצ^iAP?_\tݧ4 OeeAɟy!P WBČf Aw,\;#@<jT ZyҞa#KTG< nzF9aA$ (,Ɲfl0A:.~*/I"YFP+ׯYfuZ N ݱ XSY̳XP/ ;l .<{Ր]UQ֢Rx5;!hYz;O!v [ЌॡTf,fn hL[#vL(2MeΘwZƂ S  J)6[,h51;(ZYX,,ق*l;#(,Xh`# KZ,%7Ș,i5'٤h}p :Z0-d ]7{ pȚ,Uf,ł+ ֢"eZa /* Wh # 0KZe7\(Vo}$,x67LD,8$-[,T1)W[,lA*Vhj GY\ѦԛyWW)_eݷBYĞ?}mE<2CPInuI p%,ܼ ?yyq#GN؛cPO%he˔œo9+׬$%w*[mtz=A0,ґ/$FMW`$88?и| p9#h>8b޺w#8ҭKb2(D`cAB03ŷQGB9F 6ė 78!Fʯ;EІLCz2=17g㳁vAX!Zl%%u% p DsBV"W]M-r*l&um[̶` f#-&' ^`W@f%q'ϰ=s ‚#/oAg]$W@UHlZh A7^Y◶`ՂKsX͂LTܑHwYX%vK ^;!8q' N‚]ANu8צ-&ߑ\55\ˉ 9Wbqi g Â@0 h7Y,ܬ+WWKڂG{mFm5d! <~8>oQmRv_:eYl:Aj/|ÏgS;T5ʏiFL Q[^Y*7Pzn5Zׄ0-'b@‚ $} <5?p=Lz=?y&ntX*)2;-C{0eaL!1SJd$` `h7F͒lȘ߰{nm{6'VsR :Z_ }Q*Kq@Ep˱!ïD`тɂ I[03Гʔ(,`1gaĂ%};fXP,]C_ R!S-V5=`Ggҽ[q&.4 ~rrAgs炦,H "HzŲRJNEr1bm0rA*=[.?T> nvJۄXZǑIVdE|H+΁4+[Dy ꔂ-k f D u~V #?՞EANPctL;trd[3`AqnnP(I. ~泽g{*bYN" +Ggy St6e 53φ ]̭8T Tv}ZnuJeaMD* ] xS h$_5݅ň_f\bUc,|Mָxn[D\P,A%4H-HTE h4Kc1 ^Hwc鲔pbc W涶fD G ~qEJpsG7{a7_fD]-O<ˉGP؅Z?n+i+1jl.hYV˦\#<]({J S G,1X6l@  /rZGނ; Du%+j߂ Vk_lA/U*lU 5u8 5Ws`<1䂗.}'4d- 쌡.Q;!] \т Qa,g=vNB&@G###@ 8Jf&ْn,4xHO͕`ۓ6 \UvA) c<"ǏKFX3A?7,G hV# E !H5h`PSk NNPhWFc) A{#H1+Ӱ1 Ujk[0%08WGWSO64A'#}>/Gꪃ֝>F炅2тGR 1t;-;0Kꀺw2"%5Zk ""3onm<R׊5dK"9#3-d4y 1ّ3O%nپjW8"XW؂S 0X0A bQ΂u,xJ ~%'" ;(;Gh B%ւ@`UV z[Ăɐ$w ktv ^ .̢@  N( *~w $1A`a:*ݩ  rY,x#Q3t!ނ`ʌXQ}Ϳ"[P7XH,ޏ͂ac)A4,X_ߖYp6e-h,8! bנ`B,Xp8Jrd@N/ D,xZp\7Zb>yˏfGfcNg8 e-8L,hv3Rn Xc@@twXXZ)5]jkmni O81_ǧ,+!T ?j.+4uIi4]V B'y*lQ΀ 2%kdhRXQLYMqMo_ԽJ~9V{V c[#eI RŊD"hmSS'5U TL{+ځ8U&bbP\(`jxP`Ɓ[4i景fγjh֚NAv*>77~BWV5ogBY)&]?8}!flq:$,[X&-L*JYY3ٰ֒'{DS q85|G荣ѫMWծɲzg.sߤMxMe;M].lleWD1w] N8AvC٪Upx$XQBޣO0cZ|] 1LSmSŦEE&[ϫE]DClσb~((*!U0\ Dg;*U^ 1 QCP8'zzֹ7ăzSBo( DA8~wwfgK`[P,] ?.fSfrh1h5r .B>X-<2TW1;O'd-JRVfA8$A< o lO62 :I˔+v_aU`䍣7~W&.oolf殮dwE[64P`8 `gLլl!(L o A6jl/pۭ ح p0!P-{*ZctUڐsbp3;?[F ;+ZO _ ˻?p: W ng} FTAQ|"*~qg# s¶Xlzp*,^dTP.6b&pil ǭ0r7QAE*e Zʜ }]t: WOO` `RsWF`Um*) ~ t:u*H~{b3h6wXlkUFdx3 jr$윽 ~J2jΠ7 LΑ >}@Aag|A~ETV̳}[_ߢ#GEPrd] %)<9r}lRx3K5'M.*X<ۙ ^_Zdc1_ؓ_o&0D3<;SFwGFxS~k-lɞ)&GowDؾoK5?&R]Jt̥O{zvdǃU{^3&KDU_FXQ܈`6c&˜fCUd U|5GѬ$[X̼@ Hma5vYlCylf+o0rf2Ðv› O@jf՞a;Rnw~ +!'$vDձU˻pyĢmܹs@h͏6CΞ!;6:/pD1^@Ԕoڷe%&9nᑛ   RSN7 &_z {TAp7Cp*?!}0W!X.L/Df#͡>SW!X/UeϷb*3j?D")C.ҁGhHЭusa A6'w#hr9DX ;K[(3/ +X,6`;#]Wj9"drj_:*NO5CT@0`SYe7l M BhN&g¹{(Z$3Q_?z)^e'hAQ"X|A`W|")g DuQi 80Դ/F#WE_koN=^,l$+2a$=Up7SA* KSAe*8cd,KƦr9&3TĨ| j,*T,dABxO F`ԠR\ UAOPSA WhO:- *1W)E$ɮ&]/Xo_^i7WA/UI p5kF۪JURTP0Wh2#"G3 *,Y:ݚ 6~pGI, ;T7 1|TʹԎNTy?|/hv>V{Ϟ=!ǷwYbߢC+W$ Bp*(@5hb'"zGMx ---99_\}Tb:mWˣǏ޻w1Ԓ%㫣B wޙ#DiI/LLi..V&*t7XEbQBvxWcb5:pNxhCB1: Bq' 0׀xEj4aW+lpg_9;6s*Q~wF +BB;iTAc#jTD*MP- z#}=,@ hDBG $#`!A?t9Q[46dقɂ[0r Km֮- .6,IƂeYN<y -y |Qłh  Uk, #o 8'"'GA-H3 &Cq 9tʼnG<(Ljۂھ$pPJ*3jVXd+(ujISc%iڼRgh'ӳ:Zu~#BXFG[I ԛLYeD1όۃ5{{S);0d :LlNjkCxVV_+ IDATIy *~/6Th  ULs&iSZ 8==]rtd#O@ :p@$ٸ^PA0t1{!F JVU9ATl|6>'[<4O=ǎf{^eb1]T/177Gp߿eO m ň)wS>wTZp{J!&̼0ըl`~lۂ xÏTPgZ3M$,<4m8OH X҉1,D j#EE\1^{ #,$Elua+*iNE2ة"1*` ;zFp 6 F%Iux_8*6j,XުBp6Gye Βd z#(e"ؘlDT`8 C: [l§قR9:g`"iNɂ`PmA4]giml& RDΌV< ߵQ9wr[ѧlA!r#YK `]/ a(u2TBltmT-C[6;ŴI 0 _o[]-hZp[J!8ܼy݃ׯ|-8Ypwq `H@PcR([$[.@9jhY@Ђnaڂh@4eP,FT*sD"XФ lU\i$ "uE('odA8C-x-X0 ok,DR ц"(MX{WZHmƍh i &]%,șPڡ5yPv({$䷒?e JٴkCw5mdA"{Y泹Kť(9`ߧ2)vy z4Jl䜚 L-xR Xb$k>Ԡ>L$'zdJLp[0*YPZ/(Շ옥%Ƃ<:fj]dQ-h|vܯxe~y9S?}D *YXi;,STe:uFP;RL;#L4dmvR3C "/ʚT)f[jXw Qmbb*1 ?žs}7bu e}sRbAC0be]惮ctznOwvbNne27w<2Q]sנ993d]|oWh9/Cpx.;Sc.ޅ@tD/ YPFЮw|[P XX^Xj)5 ו+t$S,h@wuEFkx ;<`X bPB/6I Aw2/#6o1̂&ʠ.+a HI_Aؙ B$cmAq>`F xI^3bX{v_P@JfWka|W%%L#l㹹 A$ܵ}q[,frqڙƂu@X*f@ED1:g>Sk -HA-P & zD‚x&Y^vRDƂ[c=M.69u:5Y& jS-hK$E", ~bA A-㼰7:#U NG9njA / B,̮7=iݔ(?G#':NjdOkAݎhfY,Q1 \4$rzxm/mll.K1TV?O;y A`2j\ T >>yy(bTT'G>UV[[CځpKh`J`Uj*T!-/NMMYŬ *RYIXʕ+OPޯz Y"?Ukz _~ D5exD8Y&7߸m[^h鴄B܂@`߾}?Q=#jsY> . "LqR:GJAR]]o-obhrrT{5).y~`q*UNgXh׾]֡N! #`QQKׁޜD`%ln{x)ĪhR}rnA桞hZ~It~D/}])W#hdh*0V?9nnCKf?.ZD;VW{@N%ؾ|I VVTW.W5=V,7O|52fᶬ|<Źܥ?J^ rMWM ̥߀a@6Bo鄠O,>9mXh\\>mʂA*̇3 *p2> t'&x6w>XP߂Uwб]Z5dHE Ct0i-u} v7P# < ' ֦!% 1ts Ђ) C<}3 IsAnA[rY`qڂOJj,H1d`߯X> {d?0T l`HF0}INW-( |F` z тM 0?Y =AQ e0TD,XT+$̂ AwiXw܂ɱł Q:*FFpn;ֶxC3X alPmD̠ H,[ju:xRV(֨YPrΊi<ؒ!܆T:x_PW@%Lέf|Y6ۜ? N=nAj뉩)m,xgVwF%h" BH$}ڥT/-?} mlql,mitZ!l  \kXZZb3wD&1 } AAX:jQO*]Qz> bOGzߩ |';5e7={8_EQh0LEPD09Bs,z[/1R:5Ƃ #NHC~ɯB˺jbiq8k0v:CE/`VAY~1!BDX&n+ȳ (vfsu hƂ fF[M[mAr_P 0'N&F\I ~E%S-v.~J(X[jhXR,o1 }mɫc8KF`ի;UV |tύgωhPnΪnIqj-s܂8Ӛ Ѵnn-YH˦\P#z,(DU4-fAʂ4d 2 t--h7XPF Q} &!gdeq:&قXd4*cY0e,_K48q3z̨- Zm45`#'lԳ`T3S`IƂ{̃H>*Q !D@Ӏ3gOZ4mG鶮O81>6>NiPlq8 C?6p5 1 TY3\W䧥ATJ3̂&`-qpA.b58Vx ͘@!ine(6BhnnO.#:Ee8pŶSW?т0F+8X]JLi-Hc XGYqaatY%\'"'' lZ= *PF "\G!1-K jZ<Ռфd;"e?0.|姖͒%nܓA7gG'A|T^A4\ z&xUqb(\_ױ %OFP/x_ k=pU5^&oA0ԗt DSl~sSU ,\)AEAmՕaF) OǍP. t1 !K] +1uQI0U kLYa-:$lt HZ5]la3{=w}KRf`}{9}!q:zz#_2UR"<l,8Ν+b]-.|S |weA` X,ޥαAv56 }A lAN!' ,]+d I ӂGff޲`@`vT s K K@=`O`nA6QłR 5W Z03@LYПo$`قזYNxWD Y0-,,x ;Ֆ8FnAA%M2pC:x |K/^K6-\y֦Ù.\PXH&|,AQ3;F=^NNBcac I-aI40#\ llĒ^V[tw ڒm&Khd jN6)==G $?э]^PB[|{&Jv!J^dr4h(|K |_|_l_ƗcAp`d+bDݝ[wlBOa.h!t.}Ϛ,_' } ];v 8ZА,Pkh1#jCP )=ToAl5ڎ౿3lT-,EAW@A6 тl.xՂBe Nogp|=V/h,W-3_YiK+eC0T,8:-EX|+ V ?@9lcu 8x؎`iJX2=y ߚU, u8u|MGA݂2Yf-`+j-hXu ZPE42U Fd.1S_:$@^Aق `ؔXǂܴ&QfAܚ? 2gbQ Qja3}^Ϸe @kY DU 68[ςŌ,8'ΚQłE э-TC0?_~s+-X`GKl@Tj|3)u Hв^c@rwQ E>SQڔ0炬78G$*#@ i0 ØC i.Mz_ҖO"< "^jt5H=@_)M,G0BLoԄ76ľXPώsԲd7Wj8z&x"gN GS/ tq? VkIQDm1M t劣+UJ@=#vVT$x˜~2fZŵEܹs`<|f+ǣ5W%sY $%e6i-tuuaTJ{ⓟ/-XYx//XX""{KKȘvRʨU3$$V5-|kj O6,1hlhh؃V_a`d_Tވv@P䈎'- ɶYwf%5, ֠6#q!,s_Ig ֐-#VD qBP,nL4c<.nr{[з@fтj Ylʂ55AJ-x,Z`KiVԸt,h+ݷowIYus%; n۬$k5uA|xxѢon1ZM M }65]c d1,pʷ=ͷ/XM NLz8xopxc%0(gzݩ( 0G{ScRfE ZNx#XؚarDz k_+%c_[.U;sQ얨/[j~ @B;=zy<&}`qmmsȓȓ`x~x<O;0pkT2PQFӛ8/%]]p<ti㱄Xi"oljy/-,uDKm]p\c:lr#V9S#xo }\)[~1Q@P7kQ9S^Y <̝OiW @A-\g)5J"P %U#wXlXpn9`*F \՘͞0.$&7܋~33L.NCq# IDAT<cA`PAJD j{WU;z&@ *"}wez8픷F9|JM`M2uǂ٢Z0YS&VS% ($\ T$&/h \Ah|-zwO(ob{̂;n' ,h--F!Ђ -(-I\Nvb=w/^DŽ(+}? jY)C5,jH` N!ȧ|yɅ8}K*2o0die=q Qقޒ HI@D`),)ذJk+͂bA i \cK OiЇe[$6C]f@aM4*~H/.. 1b *C;Vqh-h,X>777 VJ-Xh>z[p`ٯC[~"clA 5'@)4R4b!s{W&B0}4|\i9-j6{R9 ^VԔ}O9I3\b[0?A8^/8dD &d BP`ZF,#1n|QقNc,-.%~\}A-ZzJ?NbԪył`%OLa,t+bxveƽiv:|/A\ 8BϞn4 W}KKKm-򺢂hhsd٦&'~faY<K׍haO:F/Z7 AiON*d@O?"jذۓE" m@' !߯"x=AZ#I'^G_#"@0 n8__63=̒^6Y=AE 0܂ժЂۙyBR1!*1d_f垢܀0oΐ[l1LnA@2 Yi,XB d+% F ł&EqV8G6KّWق凞G`4MNnb t$ J4B:a Yp-::O?$XɂDYH QX; BB4fehĸ(q Y,-- 7B &DoŮ_~?Q|FSRc8mG!Oٗw@^7̈́U\N|Onx~Mل 99jy:X[z%OqZ e8 -ؠ&9f(Q()!~Uhw9qqz# βΞpu 5}+ 7[KJC|&|XҒo5RcgsϽ@@~c8W>`:pH4 /gU! MDXmmuwgx&_Xq[۪U݃~Rgkp'p>ED's $vZk`n!X!Jo*; H!gzG ]j ;ߏb8m< 7 얏4c4Ʈ-[C[n{_C"],)XBZ6 ;Rqv8[ *SzA rOy:)Rˀ QJg7MZmoV*떈`V6MOO{r}WЭD ;<3kJJEK0 [F6 V|pZԬݍgb"80xs7acv" 3imk:* VI1B94lhf †o%r @т!cAjM Z8dAYV 7*#dY0"OG -,d,,,XSd *yAB`t#tU1T;XdP'[nA5CaA tN9D+\zl#[PFPgյݟugf(txb X2 }i+Kx-N)PaM)hkV`àww]Z*Fm_FRMS!bvS3ꤐ!* vF(}7‚>?U>7qͽ~9U*NT_3SSvLF li',*W04!1('ZHnT(H2L78cChXif8X 'b}ݹOy(ḛd8Dp8YÝ U`Jvn@WW64Tvuua<]4 r^t^&A#\-(Xww.*xa}ཞ RM_BLOt`pڅ{+jp6nj7ytڲ ؝e䠏UeY!!eq\PhUCG^JuNOs@NՏSS`ށX" ݫ?&fn,Ap[ $x`rL( e eb,ʭae͍A3]%XCQUi,!X^B`{q'xCWQ`QY WoVlCpD w 6UcJ ᄌh}7XӸٯ?`?8p$tO *6<ɏt:Tg 2J+ ٜY OˮU?VKUA* &ǃ ݆ ȏ{2ɍ"{y( R==z M d;߱ FHI WMAwTA\"h65^ ]/3(Hc  'TAZ O hVT.ՏZj\<``qVAk_U^2"ͮa=ق_˂0C*} |C {s , L`"x.`2yN u#*>."^`bqy. GAJY{2r4}<!hBUp[T0U@i2+*XUS0^|`KՆqA((O9ʈ=?`CM;PAXD""'avLejkkĝDĆ\9!h|kU7(u"ЙxޖOzN9^N|YKCIB^љ3Baa֋#}4mZ 12;gr0]x^}Ri6 'GTF~/xFl<||@B_@m `(Y0:0ZpJB6!FFЃ{GFc:>z\.#ĺMuMR̤3x'O( D_6>'Ҧ۷n>"ʄB\do@@*4 (aDlYS!8R)3-}'ؘ#h.`AQWc~]<SK !hL$$d'Q@y@STW(A kI+u*# 6+aĀaU- j`{%?%W8G#H*"**1!1/TA(mk9UA9v76 ɭ_T4O$4y"%rT !*WAT\ɪ S,i ~Fe*Qmw`,>HaF4TpI쒋`AJbDKEvn}2{|  _BRsÂ%"Ռև&l6j7ˆ '[}]=;U{ͫeAђ;\Lu2ϸPA%o&bD8(+1/oc1q,4QnOŦ&]݋P(9&,d"yv-R6+F:tlnn\N]} JUtW:BR~((alh[(coRJ%][=?c#N;L&d'I?ޱp0Ww `\]~MySX'JctڝyJۋ6`O$ 'Bb/-}{}{K Fq hb'G# ek￿ws91R8ƋB^U}qohhXZ]$QX6TO #FliB˂߂*b BQ`u9eAB/ߴk,m3"Sdou-$!k `!X+6 N9 [aP_Ax7:-Aƶ,d| !&Pʖ#5D_ڹ{uUq!xpx#xFVU 7~q?o}ndX@?2ٹ]0y~ sӎHǃh@#}l6E#p s{#kX!M&=++{֐+=IkU,*U/(B{ rY׍-=' 6ꖢpU !8r O V@ןUUNU^MZ*h ߵZ쬂Ɂюi֮ `{4jWX gUrhNV% `;۟4d5֛TvTKH(!a}+ҖR(Cfch &Ved0HJFh7l/f>/$;\^-=;Ͻ眧РȂ+}U ~r`.{wĂ! ǰ ^[Y\i^)?ς!Z0|C@т?>B}-[0 EAJeIBM#<<{×@NGh**7H s|:rvN06z<2y=N>H?E|G3j|4oRuFx?v`=pCE x)#Q fá\hp{r 9kqL}nFnB)Pev #>_=\]SIϠ!P% u C2sWKZteelcĂ m B|B "IyBADi셯tGK^Ut:AEnFVރ8FY\ q› &zt\pzxNF0.*#۽nTP#'deቧPKyd,y V¼Bx6, ##:͜w62@^m 5L/>4Rpԁ>;ʂ4ʢ`=AsZ{ lAa/D|M1-8  [p0ʂ7-@[m@[eA\ڗ e1,hj,{XdAh%KzbDP" Iϲ`z &%a7oAZ+{8aA(@<e, ϑFFltOwoЂ!}lFpfs"Hdĵ# _̎(Rą'QG'7et)˂{* vu OmSۂR^y@MGaNWN0K"ւ|nKmHGY 1hgX:'?d(${d+`d p!舲#*,ض! ڂaaGt(0т8k߃yLlLdd4ۛ7oZ[=**.W+*B-@Us8Q ^pfå'=LmY%Y ~P dK;xQQ u:jkמ>} ?:]6>6\ iL em4<˓p҅q>~H,X\L d@GM^(gYa(vdc^ҧNւgub- sg‚e-ei2[}^-7q/C;l,--  KpNXn뺇0R4$*} 7hKh4 Y5sOvY3Dϊ8͉uB20m W!Pܝdd-T(T~UAuR Hð9T~!0x>t1$$%dFp2{des!BO6c1] FPmm-5?=: ]uɮ#CGNJo ,?~5, #+cO,aKMAuD=8q t9ݻ_ŋ翹+#5tY`~~RRڍXpb>99 /2Ӌ555000χ<OO7w3耚8q*<lW#<4\R#xeee62AիVPa2"]Vz86_ xw,a9,[zB9ceL@lnd"1)x? 9$#Љ' T$IXPX0 hX0ʂB.9MWfL z$a[KpѸA7\ûJ㌿|{/oAL]S Γ1O`B N'& ND&qE$`C£2CwwHl>`p[IE.h`-B #`v~!mei/R2`eIbATZ1.nmҦ-#q0 Dj)<:uL@]d_wskd$֛{sDŽ_ -<1OL-‚ߦ"OS,ȌB6Dp  o:u;ewm-?c Dւ ALM͙ƛ A7[0gECKj\PǂdA}0߈h VPEPx[` ?E ZxҭAH,Y Ά/<ݧCtZee+7,\kWԫ%ƠQJЉ4iႯA`=2 x:=<T[,hcûc@!LCnܜWʁ GSA?r,|\OYb_q |ЂY\!1Uz[&\ _08>4RG,wFﰻ٬\O" x@Vy""= ZQ׏.Cܹ[ `5 CW^m# `]#ڋ6ՆR-(Qh9f *QF۵N}=O:ZO# DRN$Q5O cQY0l?_CYfaϙ\h\ [,V$M,XSsEBp9%޽AG|y]}mEџc?󺎰M'~@Y$S[GIE"xɋd?XYСC‚ Z  ŝrnßyłFôT~G>؍v] mhbyQ>O=Mw l׷֡‚t=RY ,T-8Ed3o^`Y,X[ T.k'qv Amp-WȂpOC ,@d-3Xp= /$Y[0@7Ew տ Ɂ{iUØRA{tّd@* U,e(܃70ݼElM=8ؼg={6<Y@xJECm2 *ij0+F f@ 傚\wo}Xz_ u๧qnclSyBԥ u,Hd%5<E p8qE4C{QfU9E=\.)fقAK@6c#L$y `TBsX@t&UbR ui4.\:oCJQ)Z' I")&\aZev\`gܽq\xZ‚l| - !^,oB tQ#'NShA F_\ud Z2n%Cp1 \ A.R#̂-? 芸A] ]0`W'ġ;F 7т]܂ Y HRI`Mׂx* ەQe]`:BP4QʨB d4IyF2.ɵ5cG+ cf` 傆/i4 ( ϟ5π,{‚.r+ZZp!݂UU |ޫq NSaA3>,BБnA<j [Zd f Dт#*,۫X0"[Ч!Nֱ yZp5 *Q,hbSʹ@q> ʂT J:Ԙ-CX 2Y䂯 ^aAOVJ`[H߂UBY j13 %\Жi;)(ׂ O@ԑfA88j1 *jR.ИRZ~YB}Z>|sAor2PL&;g.1wVWa LlNM.xFY pb(,9h[ P=2_Tlj'kAz׈"ڭVv X\ MD\ŎJ #M%Cɂ%dž>fwBu'S#J=^̬U|R/FB!\zU,؅k*+[M@0GXhG Pwʂ; l)H;۟3.By0N( (Md,`"<`fpQ<p֊Ȧ0jPIHA"-%R$ iTdTQEjT~ȧhR=y=kc; ˋ_siD"i2T>DA[N 'Łd fc˜ ^\@'*f?G0?" i{cEFЏy+Sʭ|Kj@~x("p0޴7GJ^AG?!x(CiW ?:DA%p"8k`/muk ^ZmŌ(X',HduM,s(}>dyhm,4mb\vr(b/InA0sTdA) ʂdU,‚7[T ^ϣ‚G-Q7`A]1dAZGnp gfgAge'n&ZLゼ~|\+bcN05>< AV* ?FQX="֣O#85}d0^Fynߞ3sGePݹm%Ɉ舚+&&&۽y޼WRz H<@AM07iϬ^ @e`=NXNsj}ZxjgVZëWqAwBsqL8, WwMI) \v ෡@ذ%$ BOYw(b̵5Ȃ54@x;I-i󾎎.%ռQƦ^NP mH (!oV-Hc\A3T ebG}g< + J`nw( 7ŷ8 tNYAPXbA@NWM֎N-p "csڏu|UFkRA0&ō79qu\++_\Z:}MǴ,(>f+ VZi>oPyv X<#,: >)bA `%gKJ/ uv׽X̧G6*\ "Xw5{1ClXGX0 ,@.[ bF:f~d`a6U#ЂWn,egcAb,tD?c<13FɂRߚYpc,}|ɂ+ЂK+XFb ,#`I1lۂ(Ύ-vD)]bM&',8se: VSgj0x%?d45 J4;Y:! h\[XFç һT,a4@3kti.slMX/=kST66J&#*cL$3.&r/hn6~aA| g>p«n:7nźTwo;| SpZYJDYǦUyhQU}D"=55?oŪg5p6>yfgKm]6:.! s^=/ܔy :ewraRU ݀CXI r4[ trz^֭[5b-KXRZPP&iFXcl2!%,ď=O[eFЬ,TB ~iGИo] Rq=Us@ 3E~c&m6"9 N(gݥAwnlsYjvv`T<_@WL)Ⱥ|NGuHpT ZD)3#O4gb`t_:hWłtf摰O?)nNqP,h *ekǘim Qł͂,,xP?Ks@lh[X" 2WFzK a:FXPAP`-h"i,(L`vr b鼺\ IeX2kmm-n)DbcAcAz,i.[|u+Cm]wlEZ=Mڌf]hs5X(^j[L~Pb'R& [0Xȑ#`e 6BX!(ܪijja)'x^xXrFٙ3C X%ɂpymnaq^ˎ|}i5mqւ6K ׈Y `R˕-je1tYtpqXnV6!ا,ڃG*="R"^X\Xpems?`p'!xRB0G$ u4Rbg[/9DpkLaނv`H#"8>AE ( h6ʰAΛSS c9I%2h3g {z9 X#hxF>ʈqAE `ETZsHIXzB`y޷Yr .-؜n,!q3-xR/[Zp481h9Ng˳`;coeAd0Z0X$ y[YXsr5Zт)-q n2-q-g0"ؖv|!xa}c?Hm--b#fVUIDGGrбf~@ߍ @Mo#Ŵ*Z!\AiewC,hlԬYF\w8xeRBЊ5bŸ{.fKA ـCR:oЂA?1EG4W;uzB,xP gX* hQ}٠3<,w! Ag_2C `\k~}"Y<8A@ ngz4=HNp LbRRNPBz e<UY8zW*fD3xE~!.L!'y- oL O>yE@ϔHI+)Wpz ny f2= [4-Dɂ6۬&ɂAvi*@y.- (`7VD#bEzɂ)kłXP[}C f B ӂ`JlG k_7Fp׷aɂY) ,q^p z7A "L B 嘝ڝwW6,[% hA?f,1 "6U 4° RZP} S/ y Ҫ-o_kX0- B{3h IDAT ={Ձ T! i0…q D$ʤ]"w8QrvP8NA:G(K|poG۱0B*oW -&5H t!K;EKpKT/xܹ===8V (Ո' _>-=+z9rt:iX.u] sʊ{[jGF>i< W `Dp/ԅ@MNӂ8 غc \wJ$1GB.())YKKK|9* [^Wz<~j8nIgF*G8BE8 =BMxe_q^NKKKQ_~:;(D "5} A *U;v4`' 7 CGWD0U`OgO瞁=o~8Ï>;~nmAs*eA Du Gm"hDNzx"H#F6Gr`N^j,(䂒~Q$L<mtkC\/C]E 5v@pN@c3wS@(>ȂLPݛ-ޛ LW#X:,D|Â3`U;hN` ^cּ!hA Yp?7f]W ųInAA)>uuu|$ilт׶jN?+,VM&rA1xR<_#!x[5%Âűu  {2 V[1/–˛~rbg*Ѱ$3g Ѵÿ?|L2ZbdYajY=X{@<|Hk[F#w^4 (GޯgpՍ 1a;-kAODprTVz}>h܂[C_OB5J:T5GitD)9pcPZnFJZEZ3ZfV XcF Dic]Dsz_x0,DOiky32, WVV:|{AtGZ[s@lmB S >n5"&`cjƃX! aɰ? Kߵa`08r'*V+FBź}gww6Is`hAk>YMW=tlyb~n:;KsAhA@[AGR[I#(YP6No)u"nk䂙'=,]ZڲFCCÚjSBB ^/3)E+[J! xeTJn߾=;))A/޷\P(@.-LH-Jf{)sh |spD 6Ahl 2[[3 1@/( Lhh>` hAv$@:{, n,XFǰ,nAYu7ɂ^<# fC:'Y0(,h 8 ô}.Ԁ !v-olrA}th'hAz*=?<<зӉOq)Z$TOYw\|O6OBB |FFF>͇<$XiOB(uZ]B(cXO,lV UV!5~nn0 2Ġ3/x^h z4: !cϳd :G Q"˥UX𽶓B9fr _ '!MdADYn*JƈA6LhX0#vJ̎r <o)kDxƷiSb˿==S{nl V qjoogC\zUVnq D( Ze~9#Ǐ9󏙩)x/pFnbKwh p(Zp ]ug,j_paד:AsA!5m_c'w)أۂA_, "}/]\Kj?FafUXU&>(01L4D1*rSԹ̂c.럸Ƿ{NF[|| «E"ւS03g>E.6pr✜$j! E`.؞3ϕ}}))dx;ۘ4'|PwX,ʄ)D04ȇJ;&2KLK-~-aQ4֭n#( a06ƒ1s{!qo+E}=6 i>zmv }xsA8"S""l:"QB} ZeB. TAg5 $ 42 VJsAaj!Bw:> (X[ ZP zv{h nA-80t$by&A0!R%Qb`Y`Pb@|$H_\< "hAјK1|Qo̭LSzUlp-C[AP5ǐ $4s6ۻ&[\fOr8 3c[7`O|9 ޴ik˗/)Ѿ2cFX0NCCCkT4zC B3Y^& `vvt4 ȕB< YݥKA n}}}) eɝgDkio@ h%bINͯTJmVq17p )&Ҏs\"h--5Z:Ҝ|."1bng#0ʂ+*:11hou<"˺Yvǝ1efI.Y}":;zU1;`c ?QN{ ރ:8 B6cm ͭ 87ĮsAُZ,ص69qwB;.M\'%[E[1v+Ab_Ȣ&Q"/[&Z| 6[0 U.F_ NW{ap#(213IXsZF4XGHA˖is#WrUQтKcjǁE|1yƟ "+NMԑ@T翇;\҉#UVQzS`:N{qNCc ڌ qDiނjA鏌D- *,XgFP`RK_ߔeDMn`|lzmΌp‚!( 1fW5a.&[Rc1.%Bтǫ`P=/(` -Zn!5X0:,18Q>H-$7A GdjjAi"Z0!;^ =k-̂ #]-+--nJYNj P I-( D9 &z 1,Xٶ,gw'w4]ۛfᘴܕ+pJ\ *1\*c6k"H81K˳/jE S2'9!DiAbxK., Hھ}Ԕ̂f a\0N UsA2)Ѯ\fW-U,G%[a0$h|"{)W\'#bjKv:w7^0#Unj>󂠯gO=y7=e22C땪nrC.H׈z<7w7FDxuweN=y钒 O̼L:5/4Yrf! 899b.h0wʽê*A_Ǿ;In3; *d  LGNGge0Ϩ+Q Ya2<ӘE$9#YGJ9. ]a #aAԢ0jG9y(sRekDL5"*mI*%GyPCD0Oa*لM$ Tt6J}SOy# t5- 9ٚ~1:@Ż{++hD `;NO}pc҆; w~P`WWWcc#]JP$)dN.l+W$GD G۷KCi 9c<w,O8X 

, 0C Em3`'@-fL! m(Vu% 2PcS vj"b`q[6NA2G11!̆C4sR(8Q~s߽\Y/T`G4(B/t|gnR!6eA RG4YGvz3A@j-4L o߾SX5 Ђs VRJAcQ9ԤXp NI "kƘePK-2 dABPX%-hBH0)&Nա4i<#ΎQY ӓ,\epAGTmh7+ qC ڗ ]<gA!&y)X~ղ!3,H|NwQtPa扗/{S{SA9s`ABx,xDŒ@ 7tMN} oy ! l >}OWz?I)f0!%c"^,n4涻`}GY hXAt|N|-<5 K e f}snMC6<􌲓י5h%p>Gd<4;,'aw~i˟b*ˀ8N'vu8pp"-Q[j5sE{!*hpUI H|vU+% ȶd[q!fN%3߳}QQxIa`aXK0(3sXK:ϻ,(Uh-Q"tu}pm#XO BGtoʂ [xWN RM|Vт_,! W4^+޼ys35\ Bp۶M/_rk>9tTm-̂XߚG FLE( 8 V`[[>'}~2beYesw7!2TDpHBjF@pb8Qɠ+4W5P}U]]iU7Hc}ݰWvO`x䀜A :l\EF٭yoF}ByJ8P'ҝXtgg["%bS"Td # _,ye*7Ne8Fi/ϳB X#rڣsPć!/(YBF07)F&YD `GTm4כcw(ȡVYޡb CvZ )P)Y̘B;0QL,bm܆໢ZgɗVZn~]dz<mxҶfL3b*g-*x^➳Te):uJs])(V%K+ю Eوa-ڂ?ήhD4)bzy#5P:)2 %}ձ`xK&É.++bA>3JUeS* B<ư g qD!C G`i$r 4>4 5,i28)1[Cj?!!"8@ D JTHob9[c"3 lz}  >// fjɝUz|h׮]_vv&f"34@Z#V1/N]|6 O!՞'ckBT :L ѱlAϹB,4\GOaAbҹFF""( yJX;rsw7тȂ:[dlf1 |'ZpS-Y | |7ϘX0럙J f>+8KuwWdAu}!lT|1/Y yŊ,h$,XcAɂ.b-\e|cʲn)HB+2 PS)FX7(O!tv&d7f +LKqf@FXv83]Qd~3 ɞs}*eܨZ_C{wwYTLς,@߂GFfDc`OOG0Ja7Ë?nA Dɂ<%|Ĥf=tr. =X?#hAl鼼Ĝɂ A |Ǭ2 :S e<е+A|Y_-.[壽 b]@T-R,HLp t,11V B}7+B Ao qDgGޖ##9WxJ| jYI*ܭ] qhV,7ޥbR4Հ{XTɺת׿fi';MLJBR" :b/Xl6ː~<~Sy,e3 ! ӳ3ȱ4Oq,7W)ΐ°v˹sȂo38ښ5kL&&vSSU\W D#,VaA/QU\_%Ty^0~kxX08;8X,cYx ]Z!$^8Mk}Ҽ`OoO@@0L&t\0(YY"ȣpajb-q#f @`'ylLn"hFtL@0!`E]]MJxA;ۍG\EY TeW .d첟J57dlrsD6+!{AYZZkwn7mǿ(9+7-V(#^y.`wĘ .ST2@LA`P H# ?8g- Z% \D g!!Xp-͘WgA0Kj-ƩGmHт]  _bA]$ &,ּAAE [‚[`ZgMd)| "FM.c >!5C{Yp;?U[$sz&I@V *[`_z= !h)/,|NWNG Hk<A:tqJ'${y plm6vWgFչ kNLnL7wc.40~|/X<T|?A\ Kh}0% }?@`re "#` E0 ,6E!׈6 fA?XJ|5D_<-81d칄KQ,ԑ)h`)56hA}F} *&'tJZpkAʂhA J5XЖ*[ռĂ&Dǫ1./2mт+ǰJʂblAXӐ/hZЩoYpe߾k5LO۝Aeb. xwqۯ/px2_L nt`o<]uNTj .@hgg=5xxů.XU-si9ZJƘkp6˥p! v  UyX%9%knX !z66'&=V% lw ;zݻWh3~qjFhO+ !H GEn~ hatURAOt=:3 Gm[ A@M3" 2`ڂ`ƍ}#.D 4##`!\\`E q8Fׂ;Ȃ7 XЂG V`,g ND`z=`ւa8^ "#W(قilXSA\2SX z? fI Q`NU. `jGINਮ7'MtO% nPY n. > fFXx1 m ~$ e[ظ“'OҼe\0L#˭d A v`C+.._7.抢 S)3jJlԇ/**-OX^Ac7ہw AQ[, -ZIkHyN)<$zVj |\VQB!~Q f#Y_,xTDХE7ɂlA<{/`WKP`q>"4r}}EB0~ 5dA`0 |SZj-XҡY^P!̝mL[͢9m]ɍ*LHFiVK(@B +m)*(_rH dJ!j#jiP%AQe-ҖH՘ 5ڪN߭~{!tbky9{\]Ȅ Xpbj`PZp?K; AA@ВA})tt n&/4'[` O~?A,,x$hPZe`Cgf-`:D`Z jfh]xf f-FXp-,H1bASu]fق;X+p7bAqLO9 AOpܥse5z-|D)ׁ1ǂ@PoQt8I G/!xtceumCX}ZVoR_'ރA_EE: 333n'O_¿/4"b'r@pg/[L ) S`t{|{ss32"S-b&hA}}1j!oAD ?~` -wih+JW+ĂUIUVYr619 |TM[dkNGDU[=AjQ,O`v˭ӧ QD XOuD$-/ rwTEЅb  #7na*tgA A+!hLz_4̀"t)z4VȂf](AVIԯj"?~~"ʁ-Xp^  Dg6j#ӔX_RAq"x]I5Z<[PA I$3tЎ%~1tڄ#J$ՂMl;pwTcǸ6-hOF0XUxNULiglAm%9k05_e #؂;TpMKA҂bjA1)d`[PL'ĂK ~507<͔ߪƂ#h-X_bn.D‚l3XP -h頧=ap_J-yA1Kނ,Λj>5#vD,]т̃z],-f"kI7قyA ޶wD ~- - Iֈ-=3]\pfbA,m [V4J@ni2?^4TT4;'؉SÛ \ `XgNK3yA؞^٭HaH"vUUU RX 5h޽ bܥ:X^ sX@Yc `X 3%҂rZ\>\\\Ucdғ'O RL@ ZZBp-c\ ꈊ Cf bɀKa(aiC0Zp ~e@;bA CDв~tiD-xHQ-82Ex8F,Xg %F!jC tD9-*i,Y`'*nSjeS!2XPĂKjma],HJEZKpxsR;74 4ۂÇ>]Kdxl cݧvﮦ邊&T6F`LOtwf9إ߼yg!XО1k(% HǍ}g|==QlnO w( 4[y~` )D6,3Q2E`Py7oT ojrH:p.&%.H2ĂÚ \P wi:?-J<N[.]%0kw>GF=s,xaßR$*b,@G,{ VKGWWā;w{Tx%D=ڴh5e NiAEQ;< 7.A,jtZ-=6:fƙכ-YŠgǯͿCG494FCp#fENA5"L DDa+/? LyA-$(:i([B VwaO bhpO#1\۪}+C~P Amw BpoxDEh[!Ne:᳄J fDl /1t钰`^*-H,O֏jA?[v<c Z'DNXptjAiREgQ" [+}lXg["(,ؚÓ`n ɂwقs llAI^XJ<{ [fJz jQaт X#A(-=B˴1,2Ypj []+ F n"{T K`$Ik<5oƍ7n@>Ž* ug+li-hI.D pƮG vqfшOիE# Z>pYQXpv<- lhc|!׬dZzzB} Q^F0γicǪvT9[͚`kob Sv'Hd\WN3 .,,|NjA_ZP:4<-,ȱ 4uz%b&bau,ٰ7%na4-[l۶mCCPrwA],4 ;UvD~' > Z张:cSվjh AK/U_mkhAj?T-8XFDeG*Mٺ ረ w[:h'xOfa$A) +nWO`Gd|y-k^]#2QGG."y-|G/ si:8[J"DTI`PIeD( u ̬@&DbgpaIQpP@r M 2){?`J*J1sr>\*[ =ϔ3|RCsgmYYu_ZC! -P339?;v 9r"xNbZiAe. ss` Id3т̂A1/d ҁmEл"Yn7`l*ق`YNE [aynAV ctߴOGRXvq%_I-C$ 5@X0&D Ƽ΂$ق@,xeDfwC A2~]`Ys&:ra |V.53~t$@tۊDτX'0pC`A:Kj)2&BWE IDATi*["s>]wuYBP ʹ[`ji5tN W+^-;mzynjd*BVBMFS"͘*xs3z-M&tFjPgp"!ȂtL3连 t*kl0{2}ѣG@$5T^A|OjJ1b [kk]$=}4}7z.~I"_|.['"}%eib2mdAh5tthAmsRX0;z@k:U:.;ոڠ]j`]e8 EA:jïOa#?-?_Ј/1D N/.T VAS'8,t[L2Y/ʐ1 3eѶ6Դ@|iOww@0ZF0QbV/#3 G;?Mtya\S%/Ifo.,lW XlR%a{ 61ldms\MHuAkZZ6yq Q@b,*T8; MiAگ (Pl,QX0 Xw>PuncA0т̂W75݂Un-Hh"{K nOq\D@9-P,heWL\3<)!ճ@T H W (ZP Cs܂iTZm*,hbA Y"ZA09`` DmdA|%,/ VHSQf8ɂ~_|,kck}~PL$$UeBgY ‚?؂ \VrF:L\I˻ly6rkoܼp}0;%r5Y *Xp[uA!DH<왛܈vr$VNI⿅ ҮG]U ɂ4/"nVJ3Z5d (!>B_P~Ϡ_i7(Z-͐K;}m,zŹ9.⓸m[\с\]5v+lYicnAa6sHQ_~}}m޵k| oBMO& KO.?~\O괶{׽6;u!A~lMZPcj)?=#h"M%"^[^ljUFސυ^wTg1|RmldQKiAb kcoCha+杯D0Y]NO.-uA1&%VƏ[x!XD7. V/rdH@~7D^ yT#[ެx1S'Wll ˯=?pk.7:1H<.qm׭}B,4'}r!n5F/??~TT)Yi4A|i Wi7a,H}dl.ȕvJ/wgT`6i57n̖*_[G kI ]>: YtCtl`Zn lv: a3 L0XF?3 !$t6iNU( bxKP yy{$:$Ki6I! `A OVE; *4FFDpm[ Vkdqfbw /ҥTm#Ăt NC!yyqZH?\Ɔ( cϔ``d Pc0M&WcK@08t`? .*_R,)Q(D$/ ~!{@]Ŕfo(IDP\3bA245Ap>P`6q*D>1Ys4j6|DzU܉i{;;)#t*jIWSh<7 "U!z4&Ezz'Hc$X[ ֊Sv`SʀBY<6?"@m%VtuCp|teڄh04z.`2;^N >`>"8i%_ 6De@2SBI-`! R5` Zn{̂BC,Fj2y Y,8pZTA-8>?2mcj(eL^Vk""2@uj r 54U<׵ fނsq=_Q n{擻&]QCڴכk9|[P2.#tW`^$I& ،`A~Pttbe,jčȰ:bdQ~"$aUd By7n0ݿkYk"qު*xDiFM-Oq TS4k(ix*фc68?WB6(ܯ _$~/8NQ)8|oώ^BbmLI+Ei`뎑"O+i$;/zC[ TNx גh+p,mo!&Y$rG vncq~1/E\2/lߠf!6Eo<빍#ガa/APg@L6ZerKA_TDzLH? y^U'VDǫL)I$`nZv4XZEi˵.tPBfA`AI,xM]@zXگ#X$IP#,-H,Hg 1 FH$4}?O /8(`̂C,MWs5 ZhgvEEӐ͝l^φ-H{sױ F| Q}վX(Y7 B|ak&C =`ӭ}a--';pʦj$;Ă%%t JУA%XhB^`AVK~JXA$XP[Uu=ebttl^|AxGXnb Eրlpuwb>4%ḴLDi!(l젉gNQ XQHex@շA0>JJ(b |ot}}@!M7d ɥQ058>l|x║Q\ &^}1?nI!e?p ]L~;Ҧ7 XAn)~ jƂdִڛP-˝ujqU]˄ij1"8ٸ%|nD [*- `EQlϬ JT{@!\|8}|ZA3 {OSG&wW[ B,,$6Fn qeu] Z5-(UD .} /iq2  MPC' V~LbAhS -\0Aw`/тpBXXTo-h-j"4|XPd3y d B+X0:[fZ0 m,Xpꉙ }';|;l|%v4 `wϚɪMqvoAyL-%Ep#v_4efo|,tF/{gwp?I"m#^o8ŷe``Nfi@ZaaB4vUo7888pwwyiGao-)ib43|,鹔yy5yŇ_S;>Wh C@@jтĂX|s.3O nK,h4и `,`A!YPKuK?|' J ?lx*i5me9fAv *=8ܐ!x 1ZPDLӆcZɂwN1,X6,x,I[P:XJ5 Q m{^9-Xφc6BЄZqYpH8 dA (,x>i 32DCTՂF/+=߽) k uԂ6X/C ͼh-AP`]| j QfA%ւ ~ _`TGD~]|,ĥ>M #ID dlnAZYK`f1`jyFyNNNG~GС+BIs^mAtYYe?5LVD:߮ogD %X_GD`nN.޽|p//;/f?MS ^wi@C{51vI,-6^,(ܗ;7=X=goH"`# mQQefJJδl t, cZC 45וtr;YYX^o-# ڭvAfzTryf3nBP Z-/N8AX(B4!LIAm Ekp$ ?;S!Sd7`yg !;{P#`Vo{5-p61!4"JyUnAķ`&t}[\g h)JF 6,,`j؈ lp  yi/j 5D,)+W+m͂Ֆ c-(X_n;n^p &Fp/8gzε3nA*#8/5fAIJFDoE_YՂ[ϥ5Di,鼯5DZǻ늾מ[p|nn.xhYjj[j4{=K%|VE!eQXY-eύoȂ]ssZbMh3 XP`Ёdnl086mAdA`!HH,h@&pR]"?܂^hPEF1k moVLKc($cPж$=܂C>pC&2 ‚/!6"Zllc7, R-ۡxq55M&~?bIA][L|+?r4gfRy obj}2p$6i'YzxH{Lbn"*W(1Wn3bE5t(ȂTTq&,QH lKMc7,YJp=()^r"BVSRQ6?"/iD}1"Z^.z"f,(fae IDAT k>"4"=xhtMf8 i!Z-Gp@Uh# z1 /7b4ד p 740thk@h[F0h3fyKRl˫vА φ#l`:_|T') Q2 ,: fr ]\cLi'9 ϼL` G[ZUe"UYtZ2ڂVn@ӕuh.,-,hEHcz4 c .myY0%cV0$ FDGhObM L-;jp?Q. E? YP4D _G ѹ+u}`U 2 hmd瀠ĴO  F x {Q$E_Bn-CX'm^ʹap7I h6/?/, 2ɒj!FbGKdkRàm\XYTfD#K܁Iyq!`RDL>ꃚl$lvd0_|{epԽ&*;m!\m6zDD$Fpx}݂KdcdA/[pћ#ߚdAKi(&6vb%)`AχjH4CLu;d9W _\CC^`ՊwCC.8A;g7jelק_RJ ?mHd{eX̂%L XpF @Ar`F.&-D;0 ůقwgA,DX~lx(\aKܝ`"0뀠gq\iRJF֡l Q^Y.}$ӂ浪}## i, D?Vr) e*ق\=́-g zт'A @ TXpO,hʢ؂Iw! :[!ӂ~fk .[r`M. B.(-a +eG0lZfVa^5e ״V * %dA쮁@I -\uǰuD!3,&vf`D0ZT Dc`"hZ1@TZ}`c;' Dϰ`Ղ`"EՂ?\#sxիW :6<\yr$qv:Aͼ+}#P VUU%Ee(,>|yZŋw%ӂ XѴh4UMvS.qvDj죱n.DW:{FT} SaA@xhnݷZEFZФt{k×2^ƒt8 '*h%9.OÞ kܻ2]^6¹3ti СCMÁk>h\!h‚c6/~zIÕ/7j.cŪyBл> ʩ~Kw ¥VFc`o-߲ Yw  pBpɂ`#JtY i̎bzNSv`ZAPWшAY44ɀ@TZp# *牠'+55.R3@ :B̂⎉Q nxy!lc 򲠮JO3ޒy `A#e R @򟀴`R 񘒉6;&X0aV#͂q`jAt aNV`̮Y-=G *)u{rX|qqnwqA DiXsT_7o7k\\y䭂ߖ&K9|W]A=Ow)sDᔔ+Z>,2_Yc}}gX DEv#t x\<TWn'qI-مKKKgg&qnɫ\&a+g"1Gal,˯ʣmło?Z.Oj1wuZ, ۟xDTFjpn]] w syF'@?>O6Fp# sa4y |n^^n!ɮGyDiMeHAł!1; ?ۀC-OYTK1BD J=g59̲n\0  u!d( p3@U0lAтzD )C,l&ÂAgs|G+ ,;O ▥oAD,EB3̰ .q`n-v ⱍ,hLi2h?VK0_o #br # 4AcAÂ?Qu[ʠ/`\-׽a f[,oUWڹx腿o1eD Ǡ4폊5(xÄBN(B̙rI2@T x~@9!FLrogo4%*_Ǟ$3%|b.]\CI $:"XS6Y j>)H'ڡ!?o! CA AYϞ VR$-b!GA7s!HUmSnq. ,B*"8#~:=XJt=%ЂA7z |w C$rceFpo">tuM9DyUpDwjn1 a.xF }Vgx=Z*xR+WY3wApT_PM#H* ǓA*K Z?"ñcA[ 7QA'L]*{Tɓ;y9:TwRŽm ȥΖ?X*g?ՆqέDenP+p}=4r֕~Y[뻗x.ڶ)[3哗K544eSܟ!]?191?9yu{yTy |0&[ ޘj>&F^ۣbcc偢y# c ?08o72LEYX8 +1ό4jiŢn=adAE(4< imm&֚m!œ@!灋7IpLo3ׯ_?MـADZ#s=Slǃo]Um'ehV4Jշb om/=ydi|~>79z! PHBЖ@NM5z4$Ls`~ Yiysql`2:"h{x؁Rwa"& hG#f1|;\\ DhB M ۃ ީ *mQCAQPK? v^狍EheKD;B0z VE+' ^ !899#M_JRel 润`qjEO!#N}B\*he' ڶ7-$6LUT{z h5y!`o8<ͳ nW/I,-9&ml}2ZUA n#===UʂAm+oLz8UByc6` 9?z/<]s4iߛq"z͉I?9UA\b*f 44z0BѰ3Adx":/L lhѧaT MDQW5TȟEVAL~x? ˝ޘV0i#\rM-WQXQᢤ3\U)jLT_gS!qmZύWNW*K<?@4 8Wsb&q W>raz)JqјΝ;A Ϝ9M&dTOv,~С[@ 妧?ާd!4As?۔1AWu\4 co(/,zekFHO*)Uiq oӫTD^* u&3%<)SnLQ/3U axDćwݝ2nG M<򍮧HmW٨vFȬE'I -5Λ؆Φi3i$_!4>\رcnߎW%HZOKa?h)dC R^-ԉ]~5x]UQ w#1]6X,71^g9WS,Wmw*\;J*Y5(}˾Z&GR(8Z\5VE9A٧iY(x8Hr%N J.̒gɕ5%"?4U֒;V`*|-3EDP[Ԭ.!ŸDYL"W>}HoȽƁKXB$N˔ʔ[=V%ÉS@S!%9h'b8=W֪7؝Z( l_Htz'k&^E3eP ǂj~ҁ(49QG\"A kA|k*w>u% # Osنvi/?]1Gw k!:wP3D$`@ Yƅ|r^iq5%ڏZ%Hҋijވ&FC<J݋]A\, @Ћ״ҷT :"KBJ+ؖ 84q",*&NAhCJt X\ ARA"bR`M*P>&&& 0$3E*vgg H”/ЩzLX Fw|q f8|ĕ3Lw뿜]kI@]iR`>f:,S.Cb V`E! YY/^Ud{V{Wju#oeR0Z {L&/' B6DWdlJ3d"s{|:PtOOX2*G%?6M<:w 3~8vfFِ k248I+J2%,8Xm˅O>2/Ig%J,3BvK %C:-[0Xn ^5MKB$>M v, O?c$N@ }Oʬ!;+tKt F! U͛7~DB${ o!D 30N <6-/A .Ƈ0'K-4ʺHЌ)`ڛA rT !I!艼S LA ~nQ'}9% k@A7c~DlqJ_JLrmmPZ.5YFd.!Q  29 O6VΖm2ڠ &GyA`1YE$Ⱥ*ʥ׻Sb "xyF)(ϔ ޮiuRlUAJ٠ 1T j- *m*%F5TkVtL\ IDAT   ?&V5% Q9dfXVBA8Ĉ 2Zl?QA*뛻U0ݮ*dVC*P-UR YI"̖aa%K pKUP)PTpD)% BdQt ^&Dn.B=h_3hqIyEm>U2XSQ>ĝeY(ʹCUt{+Gl~KHv"L%?l6뼔Jm , x_'Ha% \K.x,G)HXyvqapԥ: uJ,)J2(k)UӫG`ECnu / : DVo.^u[N)= C2^F۟V# @J}|!PhlBIB"֙B@m)I6T2^I} MJi$/_ޢ,ꨪUU rnQLIXvz* R'AR`ITW%XMGQ1?$a=R XZ81p#2h"dfWA^ c!T0`I @@u%WWҥr VMB,iU & X/D2`P! ,Y U KAl݊ څmRUضŭ x!$UЄ*XB9T0\Ҟ/wL(q_5YTp2Gqqڧ !˷ pt?d@ 9 >&K{@ e"2D,9Cd %ovpoo۷oNN)^&uwzz3CnUEns{A֨%Bl:Rlj8jdž*Uﯾ@LtOctrZ? I6`hY8Ln` Nҙ: MGy7/Q\[8< L?]񛼌9#K:"B'8/pP-PfCk)wL6.޻~ױXxb(ŶQ0)#K<3=4Xk{|Ӣy$`O= %Î)rtaM(H!&d~RE Jp!S8sGAthR > NZPpds|z|RC:Cў|pG}"xRQM@T(bU';TRpNAȟRoL~" jXŐSP.([3΋1Sa@LNCŒX30*X".*haDɭK0UBTpOT%)w:PЩ`>d  1# UF*P\US&VAWVx[(_)l5qz(^oӮR@?**xt)UAdݢG9H.\PO2S,~DY #`~i10:ʟ YXȉ Ex?S?݅z^]LC/ 8 0Z݅c8kO"E!aIȘ=I%\ %!/WK$7 җ/_ VÇ|g/ ?؏AN/N^ r崚]Wc1b 4ZjI|.D79Yox CCPz0 Ç_ h59þvΎnW;;G>u7h=?~lGxj_|ӧOa o۝%XK??|尢0_0<襇r1F =$כSp{ '4cx)# ^,}aj0 S$5M|,yĸ)EA:?ћj(RS&>C?O"`)y;괭 r^(Z2$=M{2A/w.q RL~7A2)h4Eh&56BFʠKYA!3j9kC=) w]8abLg}>5<(!]6L4/@u6)1yX"CPM*z KS FZ#\fPZHDGG_IA[F}z^)ߏ/-ҚYh~bY;_nOO8bd!ˊi*$eY-Ɇd}'6#XUXb N'Q´ 0ĹZZ\ #HWWQM m H|TA*hIC-[J j*w渉VF`UW7[ru D˟U= aFhSߧP*x{d$\ge*{,?%ɟ|*Hy|$ 2'XjB|w_!>[yVݍJt<*WAf[4P2$2oF2*LWɻUPdnۄvM.p5V1荺ţ dlqgٸ~_a9F{X=V b ОOP(d *K6wꩧem:~v> C 5\ E暚2Z]L$8깼#ICTc;,۟_~ eMq^{IxbiׯC?T:ʁ>Tv{4N (]]]E|۷B?R1hB rS(X+^x7KbhTy7dW<#>ff <Q``@"ue EF6+2@Ҍ 6L]$vdlH[2j Az {W΢@(Y"cM"] n!ک1 lg WW DWS:D?n)Əu/?铺v9'<| |׃^×e%BR:X5|ȳA(MA$ū#8 W`ӏ ?0xr"?$7gT!O["(j0,\b> 5Tpz4oZ`^P]THB@L+ݫ*xv  UJ#,WTQPPcPy2T0TZ_Uۈ%DM*(*hVAG[Fk ?hg)C-Ö&!][ HUFP J NC;}8s" ==(1H">i7u)m] h[j/>mZh8 p1u}p$%HخӁx;X;{jJ6nX}oFfghmqj٥O`9Al~NQ aC>A qL bN\;XCE/a "HoZIb9L]_YYB/38 Γ.=7銱AA9PPΛMAGXHfmKF%ey}:Q!eQFv='%O3A~odj@cRxQ#HN_ނkX}ZA‡ {L-DŽ@0tAV)>Wt,#NFJ w],:` sYTa!K7 WUxΛ 1F {n Xx CT>)Aq!b]X TpMvffF9#s^6U.KIw+gO1!C8)q^o?`)l s%-Uq#TPih_`vrݿ,^{4|677P8렂U# n~zzfĨɱr@ `ǐu\^K_R}w9MBrCuUH*cuжצ%1*I0$R }R_`CKLql2G0d+B-9C0mIPDiɏ Oq  r bch'MqDcr56@B |h @i  (ղ"Bw@o8""(ž%K b V #lwQ0'<656ҍ4"X^@0E ?B4O3Nnn!gQ #,!h/=5LG'풮<B07YZi"h!(M@? ~8#āUP am Zi<˵ `TAHK+lM @WD-BUۛM0PAX* wRA"uuUpC%(%A ƴ 0# \BЯCXLs[U6Ol Jςc%{=hX?~<Q V&{A*x$DFDGB g-F\J*XNItT0: *H]4_ze[j^H8B |1[- =-"r=Zރ}faX!`/6! MV(9 UUեgv&8zz !ZV03D,l`j啄&,Ճ =* \j/S,xk!|,5);X; 4 ع" umpνϾɂdwLd\ǂ?*C,KRљXt~>ɂĜ:oo*N9L 27,hh))j`b8fENޟp8v^*.!UKp$8׸/E_6իg7O8^nǸ -G/gf~9Gݖd*\#Y!$4/Rɕ;\i xY_0,ß׳(a=?r]J.!ܙXH6前jz&\/ʦ0ag9kO3AF r$LCX~&~@^^KĂM& @^?V!/ 'FH!,La[4NAt~>X0^W,{,`#RE$zq= 1>_J,Aț8y8 Z  xT+ >` Trˀ`lk@0/aAn .YLy @1;koא  3ŤĖ`6>@L,,sAwSe )l XB@ (}bĺ3>{ )TiDkȒ M͂JXp*c)*c`> b!˂!HW*-bwp8 N(/ Țt@SŴ| ̂ L`Yr`B`D3X0FG~(. *rl{,et?EAC2<:α`U52D͂;l Bb_OM?= 8ž`Y̩,e)Ml> ׯwu`А WQ[53!(2@_cΤ3&*Tv$%"{!Q8O&m?_MCcT>i}o(; 2 !+6r<b]Xp<6"cҔ]7bKRO𢨒x87& Ju-oX,(j!4@0A>R,&([1DGzŷvqYI (8f5?o{ 7}aUJ_\oJ3Kج5Y3-Xj SgE_\ iAcT#`u kc1> v"$U ^9X^98q ;/S``Coi| .Aڬl&W5(i8ˬڜ ?XĂ6 WIs}Hnҭ *C4ςW `CMg3kC0'C5ؾ/Dr-,'AV@ ;^" p8Tj!X\[Ă&bAiLS Hm>Zcǭ1 2XݗYDPt,/$nbĠ ޯwgAfAW7x'H)^f",X,;Y}A @@&>آxXh(c,j!&rAB & \%-̂mdN_*[2Ȃ%IƂB문 0T3h :n<)aI^Y1!cA~} =iSJd5w_mood`89-soƎ1*X_k˟?}/y,ȎK†(K:9o*~gKXs&#S6s'%n\5~xAeBL/)C Ԑ\AUw;8m6x-`t;7) N}4}b IR{[-)K跀]%e1}[NJ̆` `A#)q\h\+EAxd2 { tl( ("S1 ;Ey2$MY qIWC3jD-V . A*M27ʴ]A D޼a ^V%  X`$% C A'#aal&%Ru1 M Rmm&5]. \ IDATe/Aa5\>,(Ȉk4xb ` Z௚dY,PTDtuÂO`naełנ/( rb2j ł{^q"~fGXi}bAp6 L,Me~$qJa[͍YpaRgѳl cZ..zWPna@>ߗ3Hf=7@*5R~L_ёp/h4jq{;ꏝ,Kۗ73=%;u }\ tI[Ά8+hGŎ גd.0M'\x =HwwwL<ğ՛=?MDgnL:2Nl5!Cr|BU\>Yfō$[2%KT,}=1iꋆ` c`iiSt/mY=T4 G}Fс%q 'kLo4N he*üK =gC Xt|.%CpbJ98K!8LIMB P~d&ֿ&!ץ!Ol8N fU( gvֶ ꔶ70va`J, }ݕ]1,\eYﰠ`Џ\Y0XA3waAB5x 'LN9ԓR,du6S٩`u:Yp0$Tcwz[~qķA's!h(&ln8UXx5bV%Q)mԚ~O>oY\wͥmfhVPCDF*wq{Pǐ<E^H#QdauVwk,H`+}{/X+| |斑v-ՇǏ_iI9_Rt#FcVbu?/@AJwbly//hn wN^*8@Ay?\gkz2@M˗/*2Dh贻fg ^A,~6I>ṅ`s!:'-: A9L! [Em015σ6 v?絍$|,#/: q2 {,=u1d $]Bxs ٭^j[jyw!TUV>g-x.1G$; q!&S |G'Ap͋(l'T(Z'A2;w^X1b!rvArb@Å*/.*Wrkd2`rae"/om6)j f4>*}U0HQ a>QgpVL`H7KRzTp1*h#mmn Z!34[ත+WlEQ*$]*å~-*C~*SA:R/bnNCLDIW~8"TKX <*IFC4 C0F;4%]2;Tpay$ _ ޮIERfXG0m&70}b`wA}:0)Ba,ȞIܼ*yO'"'͵ ) 9[uDtiTBa nS~z^bTUbU3n򎇷lP *` Ar{IjRn,D=ёOD{{%h/zvt} QA4?Si^S70d;F!0VR)LK~=V5'LJ*T&8٧c1FPfsz -KN{M ?Mþ%f숙ED".+?#Ma^ (O; ; k~ TT ߒNL3V^] !ιW׍zȭN˿zWWWmO|R iHteXԪf?Q5-oݛ f [[dNr1ߔ.K=HsNz-cj'p@0ؽ2Rۏ16d:SXzּ'E+xK ] ᗫR&zG߶kaȝ N`XA㿂`j,m9ɛe1A>f [/nAu,USA9 "cU;ߥ_38?> ƉT*z"J3v*ظKU#QTࢍ_ < "Xa*c0 Z}xV5RjS<]XW*u?u?Ǚ Yฉh*;`>HA*n :QH+RAP& *HۧDP` k4z"XI h\9W|nZ_Z'?NZ?o[僸 T:XIA0//stdok(,Aj()CA՛Wb~ߛ!'rO3d֔Ld6+'4TpSM:ܫA# BJg`PAH'ϲSx*DC 'OI`'Z_b؟7UpGITV6TPX夤 燌^re0}8Sv$ga)=!_0Fη.r\gJ5!CU?`Rܧ'Sd,+T@RÈ 1ZWe?흿k#IYN @)tc D,9GppE;3G`d8fi'ZXqs꽮խݒղkٝU]{X8ӧDYp2jx|>_EC4/sAR!θn-3չoqm#4rY.F=Hy{L1M {,LCy_~~΁ 1`(9!Go+(f N2I`3snB&mzrLmHmڎD7|1_|Xf)`~v'O}^pi}ϜAQÜt`*UTT揦CCbS"l8\SA'º"{d V* KB0)UƩrܿvED0U~7uڌ }h!'{^QWNB%ff3cEU;&>+TMxldHzȸ B4f {J 8zd.QX;CaQ ?ӝ=i$al)G 3cJ Şyu^}x"vfp?OXku#(n:V;v/V#y(`…7sа!'cAoAZLGESQ!.t= *AE  z+P׊> `k w-*XڤPAQj* 67**9.%UErsG!Wᐏ~6Ǔ!CuoƍCZ/r=`,0\g_c$`Q=;9+{>5>㱨Z N} ‹wÐgM]V  ow#rz;`_L~\Ex`pɯ!r#iLsJR|4 TPWU*؁6u2(G ` x~{CR m@PXۡś[ J_&bJ/Ċ'lQCaDBR4h艫$'>NVuò w8 >,\0-9dѫ=17Ú(wOe-ֽҊr8X’eNR! U otzvij !XAioRn!1bD='D*A:!8d'B%^Br=D` z q?<1UpL*8pg+x**_`  qC@Tl N1꿨T`h`cAc<kR(v D/ PA1n`J ]S)T\IO\ *A Uv=[,CdT0Tϵ<ٛ $nnB5It%Q,@C "KO $. h/nFj*x|,@G`) ߍXmdD0t.ȢՅ+#$A{{By[_"u it`f*BTPSnNUjQխQB}k"hQj݀ t)*:ժ-E-.s Yo Z8ئ#q\Aр=B'CQakk^EIENDB`mkdocs-material-9.6.4/docs/assets/images/zelda-light-world.png000066400000000000000000005533371475306445600244020ustar00rootroot00000000000000PNG  IHDR gAMA asRGB&iTXtXML:com.adobe.xmp 2021-12-13T19:12:53 Pixelmator 3.9.8 898 674 1 0 96 1 2 96 mf pHYs+PLTEGpLYARh_9I9cJ9bRZ!YzI1(Z9Z'Bb9URW{N|M},yA1a8a@rI'߼6,t`O:S3V>Ȋa`1('}d(C2x"f>zH?3_̶|Ӣg`@U3Ȏp<.rFQ@LkC 䵍^\XE6xP0o̼iJ18lXH OlY 'kB*1Z9n TEfg2)1*tRD[ p-"RE5cqZ T7"\2\LA'nVRdU•vte9ŮuƜgM7}m8?J:pݼIAvP|,i(6$\fm7+;oO< VoqrC7q*d:g^7fUdLZq@[P#q6zStc_}`޻о҇8QNYdF5 Ʒ51,jB}biA1MSUĩuc05 ѸʈIU6:}Gto"%BGtХMGO{lCIȈԒGmӲ唝[ʞ_J-(>Rǃ{ۗnoӚ.p!Gҫ͌flX[^[ʹz߮o. )%Hz!RRw(s2Wro`7V;~oKB]iW~hAe>d4/_Ɉ`~$#2R/d.}Ћ(]ۋ).^lS}Kj]ʏ,1~! L@P2/CPϛGZ ^'`7"k]CS"#(J:f-T&X%M*!;U#[H!~j@d A%@&Gj 0 *!;? .rͫ>U'nwHcu0n 3mTd|]{Z"(~,cjb㳳BEF;TL` @1_pw[mBЙ$N1qI5|~$_D1n%E߱؞Pپ.:_I28̻9* +ڡg# k!Xb hEa%@D~)|@? WFˉT$ 7aXNw|~+E*UPoTiZX~AC֩/b@)V+@t*kUPlPA7QJm |x j T+#S׃h<s&7&K3k38~pu@jA%Db]#":_k9! g ;IVٟD8I ĉŢf3DFЇ 3!hٲBLʬ!7Ϯg8V3uಗ8)EH@؅K=$|0`*-T l<C_N14kTкhy#EJUPi@/QTCp36ζ MGH?"ub(D_Sz #=]|k x)^vס\@7ɫk@]}/s3Gj:- s]*./x̲]`$DZ`cnD+ pBmTPFk>F'q1(a &tԤLuUpTYD'CkC_zK6 z)Xc3{&++q'fiI-K]޿kX_A7?a+ GA}餣bWP|F l%/AiM[<>(Jɠ15qSBv)Q5%4.ANmp%wP"&Rz]t[- =- 59^tNT0TkDШJs &S!շB*<쯩`|X87h*xau:CqoTSe8SS"[\`ʨS v( AҖj51ze.B*U­n>\B8Ub/rgҲv&xy+["hM6xehq-<,C)T¹ gw~&P*C0o=_gP%[APR#ZwFݒ3i7Grtg3eTYqACKv)  @G= AS;āh`/<Y6[.֣6Dk x E .{, Ap H $r*(Z b$y2Ju "?0lMd &*(0[׸ %D=ad*:q<.Lփ+8P*TV8ڴAo?e m\)nϦ A^c2yKZM6u TnkV ZNI.ï.l8FG T0 [ XєҼQP߱ BgeƯ;TA ѱ 3I5άӣEjMR46g"fu[,|>YQgXD}UT塸DktqRqޢwLqA]*p3__7&3/;۵@-2pə.oz)*=vc:qN7A0mPw~}FpzƶEPl@P"AhWZT ^OswP[m3K y>M|Bw[Bm֑ oק^oaT]U0UpTpHr wmc8*mTiSFEIscDuo΅*/ 61l$ɶ sǹےFh>{9V{ -oU#/IOzWA ʹ`ER~y Emޣŧ؜HڰZܛ`VwR!=6[>U9 KG[CU]uxEKras c"Y$z=yk8zen0ʽh` H^g* fL{BJB VE`q-L߈ l eΖֹm"Odb#l5g+*bRAO;} U0n 7G( nbd>,s<7 #0^?IYжV``׭\w.ym&E՗s/wQsEUbD| .sbE2wʍ.CM7pY'P8`Ē#䳫Vm~ C8 X5Tcm<^Z X*s0ߢP"kRvf1w#?+ySn[xlV?T)VZ"abH! *e*@ՔWA NyVxZ*U73#U{a ;jUо$l{SRCٰjKFh4p}7J1_ jWJ%aYj%ίOgJ iDRۡ5//wU1o6/|jlAf/Qט15.)t :UQ"Sw-FvZ,1NރzvzzZT(I9}vz H{ .e# aչMߦl? ͏ +i6 cni= [5zeP Dˣ˛I,r_ mDdv=4>WND\9⦏A P3U)aEZZh"* F`p4en SRS|lKT!恛>.Pm ZuWNS-5"hl+"c|Õh$]C'b1#ф0>~vz: >k{OV7Ngpz;jKma֗/&TUZdE\8X{i5oQgIŵvTG_̘0Ʊ*ᣱMaFZ .Iڎ[B0)&ŢhVGQf]R|fpF p dz#V N!Q|B"ȶVb9Vp7u<X]1T+lQۥMonnvww`4nhctLD$N>yE( ˥?>SoO1 .CIu=ܫBYk?Ʊsif6ZT2vM/{_Ɋ[>n0Ol?nO.O*A`]`ydt&؇;<(o-}8Pr˴?iUJ&ٸ w\}@BSZSIcG;S`p嚲E,C_(4~!,> >j=3s+"孇`G0 \$wS >4`ә F>E<9 U-M +' ~CQ# 18H+ԑp1E%T3?ĩdL먂 lk8ӳݳA ʖ{S-P*H =$]'?f*º ߐ T#Hgp*Bϱ`TdP\ifJQP 4D+jAT\B[ $ qp1ɩ`!  QCig@UgL`A\%a<.k`ݳd> QR1  WA f`!*mCe]Nn-OYxP@&@ByZDV5ږGӓ&QpBU?>\}'{-mWW7??ŋrm^ s/$Wy*Cp{L fVBq* pԅu^NV5H7YiNZ+DS{Q6!k~ |e)e=aSZd`rQ̕椊4Tm\&!uSl8 #H}~ 7OJ[AP;<>>Z"v@0Z`U!IRF/ H'y[*Κ j'CUp;_ *i跥 &e KFAi`TSeBRh R]) \T wǸUp8/V5 ?&sĴ"lȥ`;84yӊITD'2:,샹'L !l092 a& 3ٕݗ,CPt &`e Aٽ%ᾪt㌚dkvl﫪K-<)ZQ94ҽ ME PkkJAi'N\wfMKe`U"XLekxa^Jaӹs,ʤ+jy?R]]=:ObhI|C"YM(b x|",֮-//loo緷7g@M~Ht_4{N~lmf羴s/L|q= E"j#}1$^._%I6AT;yXeQ uAPYbɞ>?W[; (zZ`EvQ͠9VVN.Nb&XكX &bWhAРbi՜ - qXA!9Ke|鶺&@aXqݰ;tTD  |ĺ_04Ej2b,Ňct3#U_Hg=sq,99)͒STTT^^\bxܽ{,ӣgQO,[\\4cz \JBei Y Xؘf)pY{P2p ?? h}JckՀ_̃&P߿o$\e||< 9ԥ.*p>8çN~ ? tb IDAT'p9[#LPS~ 67Q)NS?7#tm/?NẌdI~V:aF@FTkl9sedsB` ?"Blt --V$2@1iJv2-99ۅ۫pl,6Ԡ&wBp\Bp~4I̐PUtC҅3ApwB~> Lt :2SRR255B(ł2 Wo6H}s:Վ. A,iYm߃qbAMqjAȢI;&&&4ti!sz^ZTF\#Q2,R,hiG R,uq,rw/|*̑n<ܐ+uK(f2xd6hSYQA+hj$GZv@t XtjRh3  o![kIľ 0ʂJǔMcXgIRZ>2A ]rijTD \2 7x}y"x)5.S6D2ǘeW}n>_yM{ƶwB5Kv+2>@I^ 8nX}mfq_' eRDа8"h XP``[d̂7a[Ў EZ$`.,e wo LeeA? x3# jԂbA*\ yaAII ,8> ЃyxNhA#Q˝)Y4Pi(3"@4j̡XԂCCy"uBLՃcsmwM(o޼yU7p 2ݷKՐi߯}968L fr"zW fԵCB@tI1d v 1zԟ/4TL M`%L eR6^5n~iAor1 X|K PW\\Ls` p<<gÀ۵NRn>|7{5e!w26"~tx6C_ xɓKg7WWv@`Cee-C -HѯU1_p D"Rp^$mvg 'G0}`^#:&.,x0ˇ0lc2  m$S-,hDR6 l5Mq6<YͼFGMDD{"Q T {I5XG4-\{Ԫ5aED!SB\n9\tK4%qM DK/_F"p4\JL$CCC7oĴܒ+%?!J\<6v‚ֱxqgggKK[`` kt߿Gp?&Ej8!ewX̴Wڻ֖]qAZ~~.XPZ,Q|>}- 9Q>}zL YR_[eUh{@MD"oj,"cy7Q|@C ~.-#J~UcS2 5 Aܢ`UR\Iz.`z~A8m']$7 Aj@@EjĜ+O1Dp‚v2aD ;-ÝOI)"x Eq1 ""{5 }JrRE$| \,,hDP[%i3˙c*x!_ )JOvS+e`^#Hn^ؽꤼVVj9YСY!(ZC,jKcV"<[XP͔hr6 :`)AYʑKD ,TڱcV4 XYYPEl# X0叡'-, Yfo\,/SZ3YP‚Rn`ooaJZp?S hPVAzU !ϓY| Iq}biokgCahԒf]}pς-W_IA.%Wz4{n,u6>-FQ}xcQevli===^se9T-(Zt57k'm###pgHpW_]Cn+ʇh5`m?cݻ8;)&͉B'#t=Zwpc`۠AxL`RPU s1ӡkq1͑#ќb=>A.uLҥhzFFH@K&e `ma{#Ppypě}ޟAO)A'<-.,,nE K̖uȈh%H9 `apdY*"E_Ϋw{`+Ixm^Y& AmxƯe.%@ !RG?ԂIOv>{%UKYAE yy1݂qO-أYX0FUݛO͂-(9 fʽPRCbAď0h CDPFQ &+ `Ad6c3-]۱`SYK j;tdA 2@4̂B4Z>MB t{тAт_!CBRM-  V `,fH?p,}@tG@Y ,3U3OX Y*-# B Kk܏/B.@ZGDޅAbۚMEۤmSS{iAht>!P6}-Ԟ,&N$^AJĿ:B)`kNyy̝]LYdz&fGjm0|xaehNtIPZp6bIacZCǹcf'M$BL:0tzq1p\Ƌ>syyhS}sE'_&Do|( Q iڂ,jK5I" n3;hG < jeHqݟ?$| Yځns̖3,d+qłƒ)=띘z^x/VSS3A{w$'6|j*`&cq>DopU%xkuUǿh㧍X !%|n'. *US`#ZUwRA o?Qu":tuhnm/}GqU~pWĠ*ΪQ7PQ$-*r~+x<}xli6Xli;\;¸9d4ǣUn; ?\~P)pЎق"׵e>G]#.M '|~XU]&3ZxLIɘ}$[PaI@ %ly7|]J E4 $?Kv;H {<6yq.0O+4"(BP_4'0 v` U T| p pPlVlNnO6ECq&|7q"_&J\wZdp[Tj\W,VAFQ&)(mAQ铭0Ѫ@Q]M$ղ@B' '*2=@U*(q A]˨ABp1-:`L0yn` ڶAsZzpSA PVk`ۛ }Ҙ%)‡KKK/^.-|:%]z+.A/%{/PVf _-嶢(*|j7r4g`1<4TPAy17ӟy‰(\C!k<;@8:[,y#x2R_nWxx&'')ka!U!BQͮoёБ|:mFх/*/8a/ፍ"gK&-QtՄ`bs :B[ң^|P@ %w DQdrN\dqeF%rPsY.A3Hz-l+H.ÊiPݗQ E"O*T&E)g?#iè{"o7%dҁ㉫ɔfQ@paNyhc'JjR#l@Guu5 _/gCs#*@4Bl{x-' [WAP@-oACpSdkNAZLInQR{T.d2G' R@tev4RA+(TP? ]ټϐHv){ R`:TAHL`/ *H"xCreC&!|W0$y98 ۹ F+VA\ Г-ŨR?*hW_*ݭ^ypJ ?|.< yS KJ###?)asۤ5PbތU$ 5[cәF.W4J@0PɅܴcMuOS РR7\~se&ܭܾ}nG\(1D|TGPW@*!hW< [(׋s4ABQ!Hߌ%6f IDATzYZXDT5 $yG7Z AdD& }pCN2\ @ݻ8H@p&_MEpv 6bzqT2 sCG3{fۥWs<#؂l e`!/Dz}A-ҽxqc\f. udn6AA̰utAQْڷITm@MX}BkKD)T}?AhYEZ I|kd2(TU|@2HM? TB  *dUO/ORAHsmT4C0/7eSdsp`[D\H*kT#X ζ1ԁNt?g'eXFjhH4&XZwǥwjD500G{-Ӂ682߳mpH&=`FQab~>M-H " 4 |01~zuu5qWn BfzZ 1`U) LѺ٩W!4Tm#;G:,ܹ{FFFNSET y`4zi$U,ӷOό\g9(UV2P0@K= zL B`iȮ(=tz?EX+ay<<CY*LEt:dW,"ݚ[ɬgy8 J1VƙǷJF^g ʤ RXK\9o%:4 !Jxћ1U5 ;$͇L`]K AqMB"-H1 k5=恰`BPY6( `,z(a1c`+K#i6 UXp0U * I .ܙD ^" ~<Kɂ9:.[\Z-H^a z*+I(L![ClH ®obXɂbG,i`u^GZSkdقـ >^[)2~P-$1/LJ6\,X Aln|a'%7ЂNk B( ly3`q?b+-uDy 9".k-hLa l ImU;; CdESZT‚'x٩"ǎɐuETZPYQd WDU5<O 6<{UW[g`=Yp`[\ԲgVd͊"j[wI$qu׊Z)B5T2nWD"0c~4-UQ`b#{ SB"L)#m86w9kͅv&`+J|I2wǡ"Zp< lUikB*8 iQX,-ȝlAmeB/RFkQmG]]'D".޾} (ReFw<7k?yCc1&,?j|-=cI$q1VsGocԥozcc"??Wx?p}{܎Kn]^Nr wa] ԧSO}NA_뾱,xM\BAeėtrJZySִp]պ#%OQ/k"8gP"QAv.s!f+9`-q_̵`?66hTҮ4bUe^RJ! "{qqFs;#G 3/f5sC"8CB5 .4&Eb0L˷Y!yx'](I|DI҉PtP+ P%9X:]~5-KCC-ϠxMWiA? -#rDqbu"PP6FP ^ ^Bjuutiө?O]IEE7uG;67 K; XȵԴePVVEB Nݴ-ǖh! mh`` ,8<&R [-S-jV9h#8VT! N * ^ԅIcY,sv$yeAק'ۂui >LaOݑ͌؅  rEsk[*Z$N;SsDYa"Ht&r RTjxl… 8K+8!0Hlnn Eyh`qh===,ԾrEhA@uf8 5e}-`w:q)6vTaG{Ncc#Z!{T޿y?TN /kLVeԲ~p"=zR?b:Rgk9;m{n1hj{=[)aZ[@U1qvVYxf;;߆\,v *@'zLe(ADkaPD'"3TsE4p]#ZZу 6yB[\Ā>nr'9 A*ێΔh"i=nlG!L ժ9$MWA| 8{m|= *gOVi'Ӯ}mVW\ ,#`D4"H6AgJ>,хYo`i7,X#-8&Ca3dA}fvtؘ"gUD#؜,nA2۰0-擐mAaHds. 4ͦ' X"J[q*xjW NNx<:t΂! s-9UAaFDlbt[P (-v`4X-a 2}8 =,D¡{WoV 5"] @CF,KȭjC,YeV-(W+  /㚈zW_"'l=tZT1XHyr]R{#q0#Nęy֋-*]nV9SbüGl­,{΂-QZYBx,6Vc?o ׯ_ӧ: ۣG0.+*>/W||nu̥FA5h!OE n6,)aJe'Z2G\zvCdP~x0d-70Ch.Ɛ㌔b+`Yb᫥WDpzt1pqr .܎NGAd!9>z}XkGzx( :~n DSg Wܗrq?6ܥ@!e!=׳~ bl ->kl3;D[oNc6҂2`k1iA,F0@P”fn{CCzyFZĊ(Xp}$OgiY5l b *y!},:Q@pM")/R^1 z%7A,\ ZPI ,jASM{kㆶzz-=E iSƕ(y\綠9.XieY+Ew ",KA1wv1Qgn)x:~Fdr*ˬX̌gśЊ̪M 8F$^`50Y0C\.tc#6M\!Đ5h ]ƘtnMӎ3gF8?+J\T0; mdMh1?8Up-v!sWJ}}=\|Ny%+4b 7^1kS'RAjAʈF"7{=*,9j33mS][vk "Jsss^ZyәҴ`:=MJZeu5CK߿"jFCp?Zj~2I@XSV(!hI`<:qix&6.ӳf^Lj/qYWQ3K,D3}q 7tTjm 2]z\3䯐WVdsTbX4T=c{Aݟ5A,36n20Rc`n*+Tv>jP~WA+d\'r WT=\,~g'ktSC^ H3(JpP+]of^r/s+TpÌFcADЯ'*xBUp?k1ӧKOss]*$˨\*E|bKYŠBT"4u͛77}+e0kexhE}%G]>iKl~xx~ؖcuO'zb\O.GZطouyC8r5=B(sS~20A})ҠFA/h8I)MS nt6vcy}@r3ңі:6by%~˗|Ua .Iʺ3 U7oª1ݶmW[[sQ.^Xzг(OjK,Ke?os'"ȆR NJD0 EK`$wsK Z55I'RZo"K'Ɏ]!F H<^2i} 7,TP]%5W]gS&αIc!lIt1+ uTUUleݬO3&]GDdUJ- `*g 7 3 'tȈ AP?ܷb-"t}cl2k`@> AUy֔-5 &5la (6aU0~ap5T*6`o} jZBpxNZ߆*q܅\Gk!l:aU4003,'~XXlH YBKSADT GkNuw@}{BpSs-k>N=P *yB Q"T`7`2%T0_Ϊ*nnRA'R VQCUп]Vh*hy' M3eL N/`6V*B #h`l 5SK E U_E7BT?6:Տ睓phMSM.bZFmT/4;]ꍍUuGOWk;::Z{Z#ζ6ᅋVAdLY% pP|UuyC+}xeT0D4i.cpyh ٦rۍHt^HڃA/Fi W =7q]Q!3xAͳ\ STb ( }2:CE tưAG"#w=^|*s`!Dk<_~/i A:YQ$~w(Gb 08;G{ Ax d'O\BSˈ`U(N֯1W"3JYIJ*3>*kxDuYqN=m=Ch"(oBT%L*"^d,Gm/5)[ɦ `Q3Rũt Ac~W"fEd? ӅMF0Tb("ϟ<\g,l~Q #،RDĜv*({"BP*uUc µOWuOXFPOU ÅO* QVȠ@0⬨S2TPUAq쑱 ,A*tiaZ43RJ<*hs⭌fOlwgz5EVA<*L=7Tpq*,2@ᓟ r$E(XUcydF3J+TVx&Uw[x֥25i+c?2P"}<(THw[;.B(ձj!̀jG,V}bAΈumf]ʶ3v(*:sU%m;Q RtEV!6DmB 9|K/cZ? D". F(w+v7,v~dp |9MTݪuFG %,'\$ 8{FYw p)0(U𛑑XP0%,~] {%E#Xf犮R{蹵n$jڬ~H!)K@-CE?iݶixX3¾$Y+ ! A<|h"hCQ`XGy&ۂy^pAʏ lGCwApYE]^AQ[|GT ɂut:tFP ؆6Rbᔝm6e!e"OE6q+4 '|N 8رc뮮zzl "Xh.مhߊ޿AD2V4Ǖ*n\ l{|OL+0`>8Ip zL wÂ! Dz'+*̆iA8bA ł!aȾ IDAT˱ xhXx9G[۶<.(-ɂds"DpU,vjj7Z"Y-yE :0-T )lZP@Of / ^C 3-^Ep7N77rk /{!,e4bbZl81渟'P\Ԩducm# $p đ4|!8uKL(ݻ ,fAʹ  qjZa 5E!j^ } pf zZHlR2%ʕa79g;zDbz`DgSXe`lڭ~,$pyf؋Qʟ_˘sV@${QZZZgtѢzwn__JO<=8珟Upd|3glݺЋeATA{۴ bjE<v2n#P"Zc h=bqDN ьX7IE.B-²Z]xp2*xlM n+dlDkjNC9/ӚfK,ʥM_4GCe!3O4l#<AA΋L :Q x6Fn;G/1 ρƙv Q@0I0(l6 f{ʤ #;~G[Fw򟮥 {xc&ƵkAIGn m#*A]`MM4,݂9k\u+l]"|aA1h/o6 g[Tl8vQ FX0.^ AibQM_拂ā,[Aᩉ#k`̈zp;`4Âlh;iXGiADptو#iA-wj>~- L UEP5MJxM'=hݒϩ {'E:絀ES[[k+bV| ,l9 3#pwvmnn=ClǕ<_W]ou[}5ߎɎJN-*ojkK `j8t\͸oWUEkka7%T=cp֎? s(e4OFyoU׽z*ia*`q]#x c@1TW}Zjz).O!ًAu:#Qi]%̍b2[,WTxzcll LsEVML!/4i4җ 0w9qٳgty{6~;wnq=oACfя"A3fD!ap-] ̀ Zb@xx(6D@+* 4r<x܂9@ .`ש?%vnb ClaϹa4 lH"+>z:B|b+20 6i[ PO%SŌ@0.Ag@Uӣ/Wʆ ԫ{A<$R /anA46K6I#OǞe7N^NL2>t)m xSw"_k=7 DnM}OD,aٻ J RnłɌy2LNSݪmdAłbAF/`A-l-՟Uw,mSh0њ =./E]԰@-8o‚pN1.Vz‚ņA`2@łI`,4-22+-#YСwhA؋SeRi1wa+~4bAh1o?I h9ӂ&łN[pZ$-(B ~  R! ȑzՂ n[&&Y YГaA#R^`Zw- M b=YPc VI˰`y ,nec X,%e]҂fyFjz{GH`U3ɂ 4q+ F[͆hէӫ@n_ с-s}7Q{rpcr"OO^? ^gՆPа%ՂwNn~i4Dт2p}2+e&* {Ó'OҦ]#xx-)gV83H1[ ( "I<26e*7EaHK K@䂽pb`o#>|[O .tttya+c6 |Qn)OGeg@3L4%ER|>7* | |>|?\?\t:G[P0?qQ%fN-O-/]gff&1;373=R8x-IJ*8_x U b˾}ӶmovZ.?߶M>)};DrЮeGPmd'5I-%F(bϿ6_(,XH)]Ň|N-,`ifނȂ AGf2ܔyOnA\YkSj5x+p`u[vM&7.o $>"*yy8$K~ZW|uB'J4ʔ.=,ƞ2]IDMBHO"%4:(=?6Phue:e@-~JD6Ϊ0 1h/!ϻd^N 6#Ab}[GnJ iFܳL,Z%raֵ{=?^s㤣fފv#.6VW {0GD)^wRaMԶPh``i&5@{ᥢ}6p ALh,l"Zo$iiZ9^Q-ނd.q$a^r⑤̂.5WfS/gAc4%~DLE`S2J‚pfU8Yy"]qqiŁYo5XP/Q8YzjI,h,oLSC@‰Gd>g]%Kw/da0$s^e6$ < %!md!f`D"6p5 oԻW_avFFZ8 $770s\~ٯ&!P|fuGm6АRfWYdRgux(^H I^.repʊr,/Ͼѝz?Us9?V.~^ϞMnA wǼۼIKg< n{EΚXL.] o`8l&D!*H[ݫW18[kr!x߱#XK-}` %X?ZR;K;ÝB;tk?ϟ?^[KB 2CL+Zu'Oq'}Uhè)~ 8 e]D >$7j;}4!Xr~d~ YY4}#X8w軡/uulSIL*sGݶzZƮT`ukyMLY &bF",JVvxJ3=*u41/5;%D_:gkXpkxvK:]hxR^Y]E59%` ۍ@#^jb@yA1o5 AL]t757mZ|M.Gstz\1 Xa؋}~-#~Q- B_Y}vf Z$T@ ܂u $]q S3L: %]Gv%&KDoi`$5 ‚[r+\fԮI<`,(FKgm51 7T4X@ &`fA=0 ,yGtV|IS`>_ 3zݛoFѪrL/X`]reE]22,~GL??w" U8cW qA#JӡE7dnz# G1$FEq[8@(YAŤ܂<-=Yx@SS䊡w5xbM7Nߕ@S&+++a81u~/n>>U}IK<$q ˆ,w/Z >}\|/Y$twwݻ2innnl0#GCBS؝wnBwpK HvZ"65y^y__`?+ȄDk?C̥YǢ6@KEg3DeV@ٕ*\VD'+Ếda2S T^fAРI#!%Xt*Jބ`nf,VHr fٺհbApeT~ D|Z9GP%0~}PIIHVA>1<\uLMM+Wr{@U5ڞQ\?A8 d'/צTgs9U5 :{>}{r ڽmm4DkO ߛo;;ع n`Z!}h(XЬZP2 "SHs+ m;VUoc,pq Z#VR!zf]p:KF̂̂y ^6zzA (0"˳s3d\Ղ,s)F }nAAa`IɄ YNтVm{ ҌhrEՂ?V1X˿ Id66.`1' ~M;&~}?>T(LuAX ^vCgdAXE&mZGpAO ֞d' HCA?0L\!cQS>W ߔo٩a2 "<#8MzE oGpG3E?8hkļx JKdw`U@@ XMޚuWo [p!SP( `A/!xHcAvZUFJ+5ng8変gw(kZEt6[Ƅ&!<ޔ#ʚ8.YdѣGU fffr.ewNj`w mvi4>>/vRk#OІ鬴%Ɉ%uޅ,Nz4UU|dECWzJw=|8{va͗bn7>xׯ_ק:17J@P dy};valV_QYR(e &$lؾIOﵵUqgq}6oޜ"v {=ZO\_ &3Ȁ5Gp]r)(ҵ- g;ą]\q-NDE\*?h!wPkNcGGSdUrK{.ȧj$"hJd!1q,DщՍ`_Aݬ!<؈7S'"owt+, BO6Sفٛ /Aჷ{OFchu_JaA0ܑ#?lZU7.e\~~yII^y9&!aӖMߤ%&}) N?2Zˣ^O`waecYzasa>Idؽ)ڊNł8StP ł^_)-yQC^0da *iO֠Չւea 3Z_X& &\g !AՂX؀_fAɞ򡤠$z }T" 6>x,(-(ׂ‚V-LJ]ia ޕkA0Z-%^X4hAdzф`a /dBnT13sWP OEdg ):D<Ȫ E>!i ; AOh IDAT1E-؈|Dg"}_l1t-Fۑ~nBSsOh=zdsdD[WQwH` ]DNVIYk3 uum]H6w+Z)ʦ|CXVn0Êobh-(GtrV` L!oON"xi~}g@wi)؄` Ԭm:2ҥ:!]].`Nm+o oQ4,t%K @`V! z?-u!AuAcmlAD,gqF gCV$9e-GRX`acg%QF/hW-5\ hYʂb4,6,$n>9nqj,* 7Pzp>`dOJ-Ȼ? тI4B ,3Qx` ڽL8pܝ?>[&,CgA@e1ccXpjɶJXE׀#K8VYJw~#ڲ9}9Ny 5rdB{:"鬝3-X]t9w^(oQSSss-qFͿm3,7 v{Gx=a QҥK@￿F$]S:or'M @9•;,O١h/u @|]m,[mk 󏠮JG[Z+k吝4(m6`ibAnܼcǽ0]]]i0Vڦ?lL(.c"K#_}6#aj9 1XQQAdypyAz0Q;z퐯ܴ"h*H`z 12`mm 0JtLºъɓ'[p^Y-BXP0,ȕ5f`_۲`? tt~-KfF` . VN:%|Fִ쯻nEtwtuoܸ{T9?TectŒ^/U94#XE{j`lF?Fr/0Lɾu $n R4 GVKu/PQG'w?ZXXx<;1џFTė /1ZDخcQ}{.Sr%1ly9'E}}EEE`S\l~Ad4k۫dA7+Wljk[ǘ-gjFohk ((vtwlp :0^ɱe!Ӄs)j14_a.E4GfpmhЂ#%#p((qg m MGP0᠏;L7g 3B$(T%o!{af4.̄Pb4JPJ%EZj[_%^GᕛLNbll"&t/`AdŎ݌̌`ڦvDdBm~s`HPY-k[kW_F K :ejȭAPy@RgkS䏠c"ig\.\.߄ݵ-b|#Pi-h*>@,S`oL) &eh"xʲuii\T(ek^rly,'wȂ1=Rz`b<<[H ʽ%Dk$^c(3<<ʚdo}؉sϞ=ODf_˗Ybf;_.]""gPxF0XIf-Jࢠ0iH3BI5U.<&%‡*(? piȘz_t-/i|>oE ʤ`ћ+1xѱ\' QXYY VV<UV%Co q:EZXp)a|WS F&_U˨Hb hy"!D`nl' A̅`ZCOkfM|EL{'2nXxH3FmoݴI!8DL23_  4G%/"WP1ӬBjͷuDj!C/F}4\1gkGDv jz?VBz:S4}vU0 .Bvӷ`_>]]S AZg"xo`psv &2z\X uʲ`w JQ-H5` {mA; MCp1 f@bXZ 0d`8K9 @ "-hXn &lHdta?dD |twaÂ4 ZZhڂق,AiFȯ5Ë%DB>ۂЛ@ua,(uڂrXmۤպڂzc^5{k( 䕉6/0&Ş̣6՛7A'b =uvTscccރPFCJԥ(VXf@ep~'kkkh}u1R6~8Paә,?#Y_1n"%ŕ-0 NnM2 45 ,^"VCFk/Q~@ྸ.yAx"7#aq,| n::׏_~˟" 5GstԊ}Ȃ:+wz@ȇ*)l0( _=4#6 貚$`岜H8.ff̲ATRNmK_l+ H(&&M_ݴӭ^8CptrKƐ.eAaP`-WhA է~iYp;%mFn-YhI40h}`̱y<΂jvZnAnȂlɽlAWK|ᇏhтc},H+ ~6?? ߻g d6镹x\F > @l ^HF,(jonU]bܴz 5[ptcZ-"%VĠRtS70mA ߿211x* ֮71|6*>SiUT-7\W&\ϘfPT h!^8~6 '+j+**+1-~F!#UTCP)j/rVSKLTD_S[OLGʛ%agyD0⤶ .i,̾L/<";Kk/s,s+gi*!hz~{%^\.UL"%0yZ[tanuG\86l_vGJ6_{»k< A b "ڥ<`AO[^^p:g5,\S eebn} 6,CG"(Yz4z7cyna]9'|ĕ BpVد 5(SXlFp;&ŧ t{!w`5=68`]S֫e^LJWTTܯA!|2'%bGpmV7/-AiA`^bI@0;وJš尼:@ԍ :ÝdAѥoSC0#{%tqD$~X2#L F?Yz|h.lGl뒆ƃ !Iy1 }^$p yw@BvF_C"Ni ,HI`l V ꢎAc&uOCC+l[jt+#&h3=gg =a,h'ʂFʂ݈t6IK 7[H OFRSOONl^͂dЂPjz@ϰ,ʂXPk *   >V>#'$QGr Dl#t,XL[ {W-ز}dARZX|+,R(aJsȂ-Ğ~vL xUY1k)豴Gjjj^z /,Fl|iA]Ms!FAdDT XRN.S 1!voݘ#^ &∁~ז.l쵵PF&7Mpu GCHt))-qF(VJ[l.7w,1LBsή>"mv7=zq x=ڻɓ'={l+^QN$Rt>L{c;5q7h' XX_EQ'TSg;)[^}v_[`>ز*z%OREJl ‡ŋ?h9V:S[D:۷oaZLŴManvA7n\k ᭇVVW/XVA4MCBRivAD#7oLTX#آyxE A Ik\UK xw]@"q}`_wSwv h/ 3ංOuc `(-20E ?Kၛ$^VG>2Fy}M2gzsUT+|*+"]{xYএzիjU$ {W״J\Y}B \Â뵼q\)6K|@O-Р_YЮ &Md^&J;g "|?\/`srk 9+Ta Pj TA2D%EP [@ƍ-`\7  n;C>n,#5qh y#ǑRic9!t0;­` @Ш),C @`(@&jvpA TB ,[Afon'ԅW!Hc:5(+nN`lq)W!(eZ?wA L@Ag]2>\%ۿr?/y.`VGPnX [݄"0+4 uj!Y,F7L7v(hQ\@0HݥCcRa64O urAܘ {VA\YJU ߖ#hU!(ztb$w- nWupge/4PO_@[R-:| SQA*,&"WA `Y!{Gnjv #bV d=MXE‘\?5߆z@ ?UPM7X y*I(b*xTMu ,-% Q%Z+$Ji96%\Wg(5`vw cE08t QIMֲwʕ@|/P&''+ed+D2} ]ϟ?.޼B6ӵ۷oici{:HI1fO'09[ɍ}?É&W|쬭uu_;~v|6-?<<Lyҥ&/^|&i fj]{`8'_[A,,, 8Si-[֋˫KQ^=BP%piA9sMLFAP?I553 Akd-|W6AmE}r!6e|lkWW CC'C'ӓ 0p=`Oۓ$y绺m7|j>o #5>8HNa5vl[Dl@ӧ`'8SI@t6~@jF'"P~|gk#'޺TL`F @Q5V݋{CpSkhVSљ"b>GmM,0ն;KSƂP( bs :@W۲N.۩SA~k,PA 'BMz2-먠1+RA M9 ~MAsT0cӫTQY u*h*PA`TD}щJZU+K`ۛ%K5Z*B3UZMUAu{Y=)JL 0 9 5ᒬ Qs4E7_׏iY(Sq8'Z}8D}Z|A8@b ɢA nvecϗ k!%\݉aG{$@ʅZ,YY*{2 A0ѠL٥/vrܫkdKy92Èf0۬)VA]4fJ( ESXQJ\ 6 Ŋu+ QCD@Rk*e T )&eRAٽIs*uZ d*(pnaRA'I@ l UǠ G #l&Dn-*g2;z5hT!Γ 4 V}AVT* 8(ha7ࢢ.Z<ై 60T>pc&1GFIaA,Si3]F C5"XC*JxJ pVùYD$S#f-3g`bCb]>nvww8p4p Q=`Md27Hƙ38,?]Pmm.7RUU:֚ޒƃ|=}6WRCCB icb 2>k*Z5/7R 0:&d 䬝[ !mzi1ayaoG-暔u킬XKA`iFjabwǏ+J_a]QKwcr H\\~䄜@ݚZ,e _x//Yڽ+։bR,Y,NLxHnGRrXRTWp‚*z{ ztϹ7#WA -/z_vC();pDZ:-Nӄ 1̷ A>˰8 Ffic57;SLRAD}_',%mfgSQU߮B,pmL],YbU#Ԧ18e_~y=؀_N3_h`z2+tey-36/K˛*W׵t~5}~~xA[vY0NJ"2=AGMꥵ eq ?;t'mN.ȶҵ8]4M,MRqDT&UMI(% X\,VKUA6YwuvBP m&_ 8՛UA6_0l 4[D%< h S+, 4ZP̱ :\n!^ْ 5-mXɂ5퇑ΰdA {_M2 ,dCRh\V-xuu^Gqk_-OZZֳmkAE% * A>>YY ւ 4X:aU-M;[pȪ:l.[ }"n+{PYr:NGIEbHXP$1"Go@Pj/%տYadus /kEOkMH(8n9<$e8tw8Gp2gvT"Q3>xf2XU/=z^.q45|1? ѢD16~QjHWUE[N͛7SG!DžR6kw,Q!V <<FaA+~nn9<<SW{'|>-xWJ {vLH0iGO'1@?.n4 9=E-\6|`pR bexgg }v9ڽA hrq%j{a#A*Ey+% :rH;MRww{ˮIqAIrH`PG fGT 실~$1f^íkFfC h#A`Lќ‰PƏ9WW@li@*]]D`P ldKfpJTx_;A5݂bhSUX43 %brh%(_a 5.,h j #?D!@`,CI0 ֢Z0 #oNl֣H A*Iw2ɁقAs`8YМYPjkdLhAY1BHAl, 8(a#g?܂# 4h' p PD൉7r:C dV1۷"+Go h{SorˡPDR-H1C ꮧɂj3M$uAv׭1">8??[ni ~|˗/_Ym4(FHDN$;ٺ7|?/\Z bW"n8",@M`gp9ӕKQUp܅`u+4Z|V)ј2GnwGvFM Dm%?/>/*>Er*A!3V'Gց P,XZ-r:4!QD%jDZmیmmb:8R.H1AUih^"E\,U'J(g0F/\(J>lq1{ &N r'1TmhZ &T47Soy=_1!)c/c>y2o_?GzDrڱbVoCki@#Gp| zB"lL,ݥ ?=z W͕hM x&Z, N_˅LfBx穻0D7w56rKro~^POPAR:*dlIKMӼ 4T,V2#4y . pT_ .u A } U0Y ^RA(qAb4BkYGJ!`xK3]63PAM QsN`H Em*(Q7o.CY-_*!bREH@y#9D*HŒm*xƑ9 ĔrĦGVbWQA yد޵ 7fC~RwO?-\Y#SU՘2޹C|Ho+z)sVVAޟ7ǭjLچ(+d 5Otq8xfN!ٯ@L*g  e⋵xPAUM*p_Qf ~C2͂G'ޏh5e˖1ZD/855O|w,0|Sa=OWOWAU38eٖ_,J#<@HMj0D,8^ec.6&j6`#c0͎XŢol%Q5)g\:1+4v>" >ÞFk`+SW^Sdit@WʿF/R!ߋ9^h9(;$W)j_`"ED|hR+р88Jgia GH@0Ya9C{zSB PfcyFyZYZUPyB4 o?%1#/,,:DlBoqPͿ;:ZCg ;\q#<䙟*9Bp76m̧L TCo䮝̿:*-z<hl>@.~weꓩAC) ͦ7 nd, d": `h`T2ԪÜ8T*3Cs8:]6U*#(Upi&3{REeQATPE0Oj.(TFK8USF)t<-;P/4U0}{UU0G> *IqK3Tޑ0i GRA@XΔ,WQ૏SAPAb8OFLז'8QlXē1ˋz@Vhj8\qyD['&7'0oDZI7G>R}3W98p ՙΥ6y(0l*Xk7 @M -aOg" 8O Z}}167vֱSc_yPCgyL3!UFE*$tM>f߬犹1,i3իW=J*8 ={o6}AK Bd&35S)4miiinf.V`qڹsl߾}x4}j,..`xoj^+ ]hR22=^\LC!&YF<. F0Z+ C\(r Od sQ6jĚV3B!iZzF54j.ל Q5k…`Xx77 IDAT%7w}LUEeN |ggM~x !3Ts8Jlpwk !G Ff pz{1[̥Z_R3s3 !o&=;0=}9ֱ7M.^R:A`ș_]KP!.rsAV».Rlk]JGl2d5ƤOnooR'z Ǐ+t=qJP'O۹,eοKh[-gϞ ğ51\#ffz7#4 }>=Fp!gSA (R BZ"̷zĉhsJ _߆1#U \Q_|Zn˷b j?կ}?~-3(l\r$\Ձk #DBgCzL$q6!z@!qg[v3Cp"W][hw2:PVSAT2^ :_PA}`_,' PJ>ӱ]n**XA-w[j ~h CŚD$B۝ veTK#)Fu4Yoii~֢5{Cik ir egVݔ %Il BmEָ' EdGP(@GFO3s ~^bæX1^Ω̉H; Qi*xB2}ЮBE#-8Sܵ"B1RQ A]AMJ&qƄ隨4&8:f$&<<9{[ "dmnoo=w~ݧ!b5C( | tRb**qƞ={6:E(gcrćeBm۶uꓱJ ) lQC F#~*f"hGpY&LUнa/lh}4%wLU1Fh7%i!:f1|@YUr7%+1Ԩ ]!F?lSA0A8|j{$H` <ɥDbW'nAd[ Xb+跈@B̩3G9<yų b斝Ju `O gWAdTTDcBe/|S&D | ŸQWIUcMA'0)T) +yPA4DS;SV mo-5~CЈD\e2C!{ߊ]:4& OZ]Tj &', Æ`)%i6GG -f9 r :ROQhf2y>G-i2m E`_ԮO;o!GhXyT kABL)[&%#,WmArNKQA~H+?=ºyB\ڴ27mݓU*@! QޭpFL,m#P644\qY@Fo߾Ͷft†7#GG(ǣ^PE[?#qțm:#:i+ϮL|\O\Zp%t+j> 4\D;u"xhq. rwy}/mM#xs7(39/Bp vTP67Ԡy)yo# >hXQ`q9NPĎUBЀU5LiF<1k*nY\强$#ҋh(|)AK]H*#] v.br("X, #G x[BٿgxLE̢b"H1Tr~m:l(W&<ˏ\+Xf= #~O]o8Qf 3\H.t*[U" CaO`fWRp)Cfj= }8҇;b~bPI!hIcHo3U6H!M%D? R1D&def4sɤs P BS(U*ZDo ;HY BI$`6Q N 3 F$~K?ܮ]AWǞUp=5[T Yj r1"ʹƌvM p(*e#V]}-S t P*H TЬþYa`mtq 8wln$5#YcEE"MbX*lJ]]R.z5[ϟ?\\>tŋg.,,% σ7 WmW>Fސ{7db[3eZcB>{lbOW-(է|>FGO)pϤ45cNGXBP[n./Xl.\sf4X xQ)v׃`%|--lk .2̴ W B@oȠTAY8ބ1fo= 8D8Mr"jE`po,dCs ){\CFx";63Y6y7OC`H'a0L׈ F[]^7CPģ@)v@0ٕtmLߌ=CTO!gV} ^2 SL\cb|j DЧaf}gv._ }Ъ55[˯ A" i*hFr'#jW2nUpHT *NPXA"EW !rX*X7<|jj~L_kK|&kmA}Fap*8X* fC!.gzez[K.jLA(Ă 3iI@ЯCPLet)ީnIbs)^D _"\)n$/A".4/(,HME'isp Z㭎*+"m2~p,((p kK[rqW>>XPZ< Zd @5 }Sù<-,w>b$3 hbA)\LIcAq -`AϘeIl[hSKլEbv=c-r'#c4`dzAl#8/?b,)^ =Bׅ_0 Z#TWp],s͂6ez4f X0OM rAvww%;f,h@P BX]-Q``MXP":dՂgZ:Up R]a@̂ߎiM{} V- Q-h,-Zܖ +#maUڜiUUItmE7TuIRno߾pcY3g-0SAVPYG|KA8?ҟ1o $ ʘo܂&,z%IǏ@!Uc*\}*:Dm.S`eLXD˸yT[ ޺u8GOE|155l}qj~~b~bffҝbfqF=ChKx]"ZQ 诨bnw.5ˍ}viAx^G :Б` ӆs1 KH!6w-jhR1ɗ jA'SOT=d+Q̺ [K,Y?1ZF_{/x.D08x#H1̂beө 81.Q!pMJT&FX-8w=GAp!.LwrM,5FGL .GApA#rj I 幾BZ,EE{#h:T#:Y? u=ڼ p8ha@WW%܂P+W"Ub̓MooғX,8-Kg%`3U`ϧ hȑ nA߅Ђ"dp8W" 'Q-8ީ|Hkian[ZljaU BY?1bju\x߂1Z?[p+{xF ZFD?gH p`Y\r,21#S*6ZZgfg1:v"sgp@,>H*--5B;v//Nx)a;Xeuc'fAqh~z|?- -7m c ꬑ "p~xv-ֈ|{۫WaD\K.xqdgyS( B$k:kSxC 3r nX^7Ȑe wP :|IKYiF@6LpTCӈ7-V?Kkmm6ɂM#.y׉]ig0ӑ e"iRkirg$2A ҿ𞨂Zzj̆%!X~3; i[I9gΡ59%N6!Y;wh+/N n|`/? .qh{X5܈ \BNcc1^p$jNEЉͭȒk#(R ;##{zV@•lص K¶a ]T3@Q8DX#85ABpo`"49bm@ *VmZ?9aJۼ{h͵V{F≁qDpPKkF-81gR~X ʾ,x[Xؒ#8X0ωςˊ&e]DIܓ*Vψ ZrXv}:F``To&3 9S[)CXk‚SRp): ÌAS4 0X@pc| 6`?hjA2E0͒`A@ۼ܂hAނ'NY0''˂S:Kk ʍ@ o<](Hiv~D.WEjsj3-kɂ0~``|/V`?xXbϞ=XK* mKN߽{R۲hݣ.e‚!\ h`S{; zG۹4q<pEw DRv.RY hvbY$"+@X! $0RYf65&\n0KBfML`̇N9u.{Z o_Jy9@X|/V>,?u["Xк7d)wgg O-w 77& < $Y Ѣu횺"-x*܂ S&Y0E {FISUD)6!oWM:\.(Dv*l6i؇#*g?$\p IDATzmmMLƝcr 'e>wzUIsɰ4})I #X0/rM4y$ccyA1IAP1͞jJS⼰ :1`:ciX`sI3O0ґOn~$F (,ˈP Z:0;s>xC !0nuA5A3R,.OO-6yCB0Ԃ%sQ-!K|[T#ł K`y|'큊?N ,X&WTdi/`9d1cPQVT%qylpL_ߟS/5^~8}7G~*LFsɂyy2 EPIq-@ ͵I)fuE`:2Ql6n{=Q 7?+W#Y͂AP-&܂dz[ *ZȂw"X-b``- Śc6XWDC0z,Aɂ"Z`llAA`,eijwi-h`߂܂#kue`ʂ?> %3j˞˼D6-{t(Z@31ju@u fQFr \9.'(\l^>~R=q|s*%qM盞>}F]wwwhs`WWׅ 678OHE,I8#1j F1&XpI-ͤ\?77m1]܂_JtʇA]of&QǬ̰+> 2p3d 9y<]pe)v @ٳg XP~1xe|M o",X`^2-n۽z/5::-(˶ Qi+֗󋊊Ux>wG$EDZZڳ!FJ&AYTBnAls>QϳƠZ[ԑ'NВ{y 5Eɾ` AcG $-yd8P+1,g=j@ hʱA@p}b0ue?EܦDFДc?-ٿUda)VXLW6vZ$ j@`%\nO [ehPqArxF07++ۖtL-2T,jT2c,DA|9![`UT!G`6;X1eM8&@炒LPzzF^NٚJGWCB0XHxړTGN9σ ˑU&/% iܭadhMy[ʂSL+'b+ȂWOk-X'’X0?_ xẰ_7xUZDWc2`t~ЂF``2{)Km  ϿcO܂?a ɂ % BhOFܒɂz#XXVCس  X,h6(4ÂP :&;wX N|i!4GD`bE"6$%2 x Jh2n^Nn:tQPv19B'EuuI]]]>?P@GD8:ui:jܦ\<#x@ovup!ܻ`}~x0wQ!n][faaNթ-Q"[ʕ A+kx+ N$Z Ml0@b-x---+Ge cG?]0q#XYYь{cVT7?߹--&r־sgo r.ɂ; -rkw[@!8"YE1Pý|gRf3]4ZO}>G1Q5Vewuxuւa>S`i_SS#:MzŋP@AF0!$C$ ܘnpY" JbvL_q<9#O:lKZ]Ws%WV -&[/\o޾)zSXpvh|E?JAݮn!*CbA q8}W׬-,56E44E:끠ncq3d7 q<,xJa,ET+b or` @_7j EP=:fM#>NbAl A/‚-h#j>+‚jV#FV[x(ўQ` 2cI"D,X$,dG[k*&Epdy8FEEwы/GQqBp@@)aaAvɂfA]`DK% &L,hKq* YPg,1W[Э`ێ]ޮ^S7X[ &Z u$ 3M̂x % ȂA)ǮAPĂQ)قt-I@7&-tO)<~$,v@N7J,) ‚/آ XPS, kȂG ~f佤`|1`iϡBPmA AO8$ RzmhHkgyq)XFZNlHm A(I,dpG nRa#b1GC$bnŌiAJ"]D$+>{c96}Ot l Eg#dA.dX0ooh#,XZGknFpe *‚" ʴzQaA\EM) ,C4ma/2-GfD}gD:"88*,7R-,׾7]uid "#Zdv8+3) :fKˈ‚3-Ӹ)tǂtY_},Olf?YI *1Y,xX5Dlng7^łf}[ymmvKYMiAG ̴R3~86& -x{{XPj,8Q  eB##Z.sbq;hl 5rqtrpހ\ !y<~w.aȊ﷉K(-ă@ x/M Yg38X`/ NLLeybs){T >G^k\/b|e3k s'I0#*a3Ѹim i.l okjBԬ8fJD/QD4c•j&R"d ˳&V¾e_($XOw&v`}mf> @__Pc,XQՂ\"z7*q'3bI'j.\gwO>/π%VcAgB!{E*=[RzA^R$൨mbv85czA*K҂]a^YYǣK85Kwn"XZVA,]Zj rYL:hHǎML^Rr)XI?!/P &DaQ[9r`_٩S^p,-I*.F>45fN#u-0yy<ՅB"Q#1^Dް e&'] 'BPBp/Jo /.K=~ǟū#(-tSɣsM`SQVJ!AY)BƗZ qƂ [-cєg<`о>5Q 'Xsk :Ȃrt.U"`uNR [0lα;T !HW`LYcAi؂-  ~XfmmMaWܽEqu [x ĭXo>e ֐j,(, zEGwŵd Nf^ *" EWȂ+3 01X(|l BJT4 N/a :nٸ ivՁRbل/x["f Ta1|N>m MOWƹP΍^^/.Fc+(//(oԮL( J@ cAFڕ+J88QYGpA;bWk5זPh_J]r05EжyT"͈vw7t:N㳍F 8_}2ℚ55F=~wuut#a T_Ȍn8D/#TÇ-#=sfrE7 ԹC#T,ȝۄ]N\sdpp ;;dݣG 2 <vgg.lnD"MMMX D eX}iS]WnmmAhu֭1  4dAZ&&&pnBnYvcאKV{'Jj% L&?xfbd2icyr$U5AJvDYm\D,3=nVPAt8 &{T~k?68{:cjD%G08RHh/{0:?G7o^^6 YKD"x% ,{mvNHFk:ZB,Ep?\7 E&]^vζS14Gh4kEN;|ٳ`'Kk#G[ [OOޭ#J68 33.2@ZVKzd6&%&T+*Z2zWѪxՃg࣓$k/vE;3 6,##ЊQyNubMՆ$=m#AV: U X1 J`E{}CgLʼ<e#y4߂`ZgNXP쉒N97 bo BZSk݂fo >ɩ|]숒fr .OlB -497X:<T-<3Z4X+'WdTbq**t@$IW`lA˅tc .p+U&p?ZT\~S 4FkPp,&!"{%%$GoSBx‰ˆb1P? ?/N5?# R_Cv{݈(B (Z;snSf3Y^r8l9<^:dAZM!j訫5^o|(",Ry9.GffΞ?{ͩfl)gJ>@s=4nt=[=,88z EqG!.3ؕBXKSIkxzј!WԎ9bP|?z%@ A0GΦ+jeݕr>ߢsb"Mˇ>A@ F8P`@9!<@sL A=Ȃ A%$nњ( 1%͒b&4iMX7cA[3"Q`iQ .ЈSǜibOmFt|:J,{łli6'Ăw)Ղ+5+#tD?<7;̂4E3Fֵ2 D`dj[@Cs`vق ł gZAقqZ0Z"`A`Jk48˼\&< d$v|fAܯ6B >liD&5ZV j5\gkh<"T3pDo]Ke+/ؼ)Puf3y<#.!{ZB:C ﶛ4< /%/1B@n7bI#mmm8oڛ1TRwσN ݓGD)1 Oce$ #E \zV\yz^5Y0 2Z]!WGp @N  VK $lr ⼔7kzrxO:+'u'w|LTGYAk`aAfA5lR-NN'قٵYBkHd< ulv,v???T-zڃ9/#a]ʲNo#hӀRrK1&]7QUWZQG++'zm7ÀhAd- *9Ȃ@`:+2;CM ɣ$f!IФXp0ςZi # q\``tNGCO`8NDu1܂9ƕ%k,X`DHYǂ؍lz_p>i6HwB>F Sfyylj165S*m(-m6 p8F_| ?YrDq}5o{_νx"ϕ( XZZUh^C+m[Gxەg-lc@&@LT,2̰0HC 64S5+MgMpİf ,acb6K&j16&!F &q};,: gs9EC׭{K#q UU{oR#x,n\OW\-c.Z\ڵ+יK_ɀD.;%" 6?Z|w0Oȧu\.\ǵ A})xJTv o~ 3W0£f<3-rU?K sAq?K/ \P1`;w2L *_)*Lޔ&ĿZ0Ȃ~^_k,O~\裠-(I=h-Qx _bA_x#QL<# k܊ wuIm 7E0!cِdF d^mA;FDnQ#(>`HԿ* >  Z<@=cQ"gDc:5 D 0BHX aQ`A3I$^VcAP=$Ǚ3eA`ZZ0]XЉtUw:i'13Ht 0؂'\ZZRh17 k4[Eރ`{馔T~1ь>LMM53z<׷@4-?À\t ˥ü~ށeuuux;ʲxPZ*, ez\ !LnX-.\ڢUZ܃9- YZlbAz@ Ђf.p:FCky~?߂u/^'Dָloݲ3]" @2 <3 G#.y<, Оn;;jjj W5pO+/u` 6&e G[ppT,Bb;=nyGX'gzv70 ܸqcfwniDH֖-V7P= rW/LG767Bg^{X"KAx÷DYd x]}D<,1/E x<&;3eF%{a`S}"A*`HΙq ڂnAѡKc_ æ<F@/ A~]B0;k ] /pwP r% AhA``&*d!͔1C6jtR.誮ꢭk!Ϝt^"7;; _&FԠ^(}fO}=!XD;?{P&͂ µZ-ifyGU&$3^eW[Н֘&,-ؤ,h{S s !aK:a.Y+Nc,1VnA* >^-S]YX @t|c!Y:l-Z,hW kodtiA 3-Eix\@/<|QW6m#d`T4aFe1jf":i7K-Dɱ'y@gk=9iAf0xG}K}7|uIcH%J&'O!@P{Ծ@A^I1HZ jD0>0 *1[&r,TqYT  zmI^GR"j6 ˗Li,..9t'{aA X^xi:grArs%W{{.v_u ךk<"(*6,+;_pa?_e bD#0Nw|?F __buѮuuVR<?@,u[궃u 7-!8i0–dX [AbA!65򺠆 Y'/zd#3+1N=:ݚ0~'K&F_y1+}j-,ƽbx+~[Mk C8ztxos!$B-<&-c|-kK D h16Bçb;#)6BiAOW1/]_n,Dc99[32޿2 (h!Bx8>vUVu::N9L^wBlYJ:sMWD0ܰ- A-ْЂ̒m%t@0[cVmAJ| rRT6wCh{nSώ%Y[0$N 6񔲠[0[$K΂D|n`H ţYFд  4f6 X#"@}si ^@tZIZpDQx~m\gsTT( #^{]e.\Z &c;TP (*ЂN[bdA!X+zİQ`kQQ0[!%-UG\Вt6Ac-xrA˙VCP б 3d ވf'''!m`1`[ <;Bܽ'%xЂ 纀W^.%j^ c@T,iAoCM`rW'cRFψ\!i"겫[p=N- AFwo_zu!7.,G#Mq p0"U)Q |W`:AE_||o{ciF,*[x0zB0# FyF.Al)\I JkA@CLKD[P"%0 T(5#j6O&iJDO!jA/iW~LG~oPTjV⼠i;ب+ #,#a=Ct10x XNQP!VTaCKQy1IT2eM=?{{o~ܨτ9si+t/GPXPW~7^_Z*`UɑёH$GvE3`gh'O2/#XvvB 6@Ad]iq*`{҆ @?켲 0Hz.[p "XaGP,H\ea :LӉ 7 QO  & XnAGlf #:]%r#wXOJhX -ؒς iSN'Axdϟ?F,7?>AߋbPZ8>k (~!@m v@ӧOa`#$ ,b1! YUcc}AZp/~`Apƺ%qS vx7aK@*=Y4.4oy'•Ph$wh|07Xztg6?jvvZ0"}D?͑ Ro ."OJ(r_.Srܼhs2ڙnw(jTOlt0vNLLAvRpü>&TD1kp׏+Wiz@Ӧ, OE|K `A XM|ŝ%B0@]rG+OЂ"A0o5jviUEV.HdŔ[ :kaK>&xO.Zze!.`Qt#j秋 DჴL 4WKyQUXptI"X ]Al;v /C/gWgW'FGZS=quA 8mb{' ?&B@0;vx3U.$"^ t*ncZDB@PAdk[Y0,#Hm YJqE"^ |/&]頄fA_jZp6W5y-** xTBk<"x ,Ho3V?_eAvNJD-v z1.nF- q w1?'lvа//;8*!S`V^W֭ N` D$hYpł‚ ~!,Xv,c${+2`2S7SrA?]lnOI@|" jLumK/ YJ^aAm?cbW@@L&#~?.թY [GL NŅE`{n`^yc]NwVX|I$rADK9*1t }{~wsnv@10~.ME&b/IV@P(&$eeW)_q?s.ȃ/#<'G.^g͊(X%mcD?fyA18?d!h$}23"xu/SyQ###==33;e $|@<4σ/@ `N\+-F ƞ|@H2ݏU˂)MP,B;҂|b$ !Ý$(wd.B nF*.͉4l;0tRq+} e} 99_heyW+@pS A:'s\3=Y}nAiZH"'%A`f`4k8U,ȁ,"*sA|{ /zrc, Fм1SJ# :T<}|"B(t#3ps{(@]DTkj|T!ۏG$قnK`g ADpc|RSؑM{USC>o$̣Y,x8h,.hA.w|H ;)\; YKB `4Z^G  ,,gg\cL|B 8(|"@nYi$XD 1{/ZC4baH;E9-V~Xlm|N' d1\0*wyxfe8uLxw9wzdAs[TDKk7hӕv^ D\ koOEPpR0 lj틹Ν;#բ)'8g!0݀03v~1Meyϰ6Qђi"c:ѰD"R!M% i&D!qWvMԑ5h6H:qb0ͼـi $i4>~w\Z=BiK9sQ Xm!Xk[-.4.X-zDGyА+ &DEEZfA, A-\9P,x^ZЋ_ QD"Ӽh- Š圴A0X -(5R"׋Z*[&C{eM\5KUTVT\C|qAB3V4h @;{$̲׼9<XZ/.uiゲ-)Jj ˁ`=:"Ѫ8DIYC5! )0xuijjU\)L?g{ IDAT#K})-`bod!c=>FOpD4㜰 #xZ H FT"xĉ?J߿fYʂdC@xiA``,DSl:Bi-o}Y{cr/-xJ]><[Y0%uZnAG'[pyQǪ2Wͻ\%҂LYPkv0h!+3`r莭-,xiA#( - 'k+[u gBΨ!,/+Ķ΂nӂ=N ~tʷDx=ťZ*ʮMSEh#lG *+GW]Gy! Dʴrf}QOW|Kf4g~%2.VÂQBC@;u܈ccc˔1S3xO[J֕N fpPZj jmTZ0 { vҖUQq-X>zm|9FZ!f:fA7m/υ((/<FFn?{4%OM ]r-^~ɁJ,yf'5)c̶ ^D7Z jUA 幟M@C J;1 yfW}EZ.ڝY, ӦmA{[' 3 +kTm\B~3AlFpHrMB/ȀțN`]: L Iw, AwgBsEaAN@ނ=~[2IC9YnVyRBd-قg+ՒA3 IgU؂QDE‚- 4,.OU}['ӊMO\`Q͂1ӂ_ɂq˂5 ndc6l nق戮łGTo cȂ]8t x҂L l=Zɂ6 !X ֌L<3) 5`/[pbQf/KÂ"! ,8,8%,wӎk>O,X*xsbĜ߿~.F(ԜҘ`HPDPl.b=\LبgRgdHY8{d2}1H^Lk߳T^9Wϵ_MW 6ry3!XInr"=ɀhD"t7V,Ղ-8$!ĿtO'OF qnZk5 mゔ̍ .]]]hxn@"FӦh#s=%X6n.cӂ(>qn_gQ;jiy:55ed,ΆVm5^Rۏ'y`݈DƻEP%_0K(Uny@[9#]vLi8 \N- }cY`cSG܆`'LD^唬w>d B0x@-$)1yGg)੏?8Fgw?}|=졤E606nh2MYڂ80G=`ny ͧ') \x,Lt/L{̧z 3U=j\05{, pWN!@Tyh^ DvZKarjNz ݅&^yzy A&X 4858O'%@b }[ Z@TV(}Ka[ ӂ20= * , :p'ýqpaA`4C[N(/9F.Ap-,*nTV5 Wţ2;YPlA YPw,! !&G:UzuXЁ!"$є`zi>΂ [כ2EZ u][`Dn i,rZ~щ Ut-,j̛2@>;,xz&؂YaU bԈ ؄ 9ebEO`- [D ΂- @4ƻ òF ة_Zg`RZXX f LYPxI#>Z<-;` $H̩HGheTUU`{Db>q ȁC-Ȱ ׵3ZP7f2[]4 ;jviA㢲`e]5;Hd 8wbѻ w쁨$E j YPLP+*R@tf6G"hnɂo FЩ\$cG˗/?E[GОH%k?ڬK0 rҥ_ӒTQ] (.+W^տxG*rqr=WAMDLPs8ڂ&Yp=#ͥom)j]lrq4m5Gt#j_LB ?~G*Oިmm_k=|7ocwׯੲ-Y%CA ʋ%Ξ=Vqko޼vkF* ZmBg#v*lA-ڂ5nR8=>m_q<] /i*Kp4 5|vv EIo t.Ғ *-nL#1B!T@ưkqC 8 8l&qIvsJ{n)=r>3Bq;nwmJt)UVV޻w@s~.35Z9)}O`HdL{O[EQo;$y<[9Ky/AVfA`I⠺C<&^ђ]&SV*6u(ss; xwnx% MOJ6eInFXM$4ENɉ8>;.[ }g#3r 4AecDт!%LOo\d^mR(X1#ݘc Zf-8G>ZA%Ԃ!JdWfhwA HK .t̂cl!D(OFYZ~-5D HI-Ȑ`qFq={y J<Y_ ޤLr .,8fGZpZp"%qr$XnjJ baIIL FXta\)W(Ջ,c*i,6Dӽ"&ɭb EYc(ŵevvԂbR|6vo6tؤLт.ނklE lݎʐ$q=|\#BTxQOQ,@S%3 zO>]__ׯOO&ٔ^+klwםdIb09NMt&z=Xr ![J bhYp 텿פUwՒN::?nxLsjPXp|  0)P0lC[W.D oc/< Dpe^ДnsC^h 8R__Os?*k>+*g'v . "N&JI7Aho۴-F0_:SA#A`0 v^,,(LL1#ĂzcAUVw7E9ܳSH-("cΙ:sWSݫ!]@׀ FEOrAv#dP!Qoi``\_QZt+vPp iBϰ)6mo(gI, <KU K`Kݷ"!#^PFd+0"dcĆ([3K AQ2tM@`2'fGKk*ᙝEP"{6ZZv?蓓'uԂg3{waA-`jXg ZW}؂VtR!?gRR^6B;CzpgǘS\[AFޔOVJI."ϐ@#ORψ6)Q 1}*jO|"24 F :6$ Av (,bXXЭX^ZsDK 1hX|XW ~/ b| ){FksĊB>]s3s9JCp(5HzLC" _)teAUCuG iOhlZ I7ot9 D!Q.7mQzJžgOeK@ϋ4l3aǵg/]2j-_:cAk*?6 ٻcinXVutonjn199k-kzWtc-- h<q2 ybZFGxF,sSKS.#97[ZfN̈ rށ ^ $w}?O@`\ YEE)  x&4yꦊ`+"c4#fAFYh텕e< J {F\"2tDAl7H$ڍ)ѴS#!h{ދY@0S y|pgcN@~FAlA#S ްNCg8;Vq\nj@DЄK9M; AƂKK8Wql7|X{l$F~Dpgi:0\Pͽ%2(g6'ǂ67'g~&Bi&56[Pj-g :VLЂ#1"--x; )]YCͽKv~т߸-['fN~R?qNnU 2+o:Yo6?$jt!}Y$%D]jp ;;+ %i?*vSx<!ըy<ЭmP-ػkhNDRY ͣ,ޚ#oRp)#G(o߾/**k?E'"fI^ ?pee,,,,7o؀/G9;::y#pv& w'^Q:1y./X0ҺTVU]x i.O?qCΑBKKA[ZZpe18*VH IDAT4 80ؿ塡CpmH<^bWW\87̻}Q%v2rz<^G ۷o@Ot7=;=ٹZ5VGF*|ݨ|kRI#yFrQy'ɏ$ڒkp6Q7m; "H2&IKH-!+ wvhL z<=^ZqἿЯ n>w-zaC&ⶦ}pL#:`|3QIdl UP)6O${oz=L$&M&n$ǚ7<pE dV8-H`_i뻋onnp8Pb]kg ;-rK<$+ DZx5&  ejMMC˝>ш? !xBnX?5=SVՄ0:lTYv^G"ku,(D[إ<Zb ق ֕ 3Cd`Z2,hQ@Rٲ-i=&.dM-Uķ=^[[cA>#,4Rç4ND5+%tNOi F Aisւ(,y  І#`$0( ةpVA 1# ".DPi HT-ȉd 2‚?e-A7wOTbłZb ޻wWM|o'ДQp<~A_؂b28S,KA}5i*MxwVH%)e=s MKqR6f0BJ;١R FAm0nILqY7"cR4n NffMb&\y>쩢2|yڞOF++6s[(F}\/VD#GyaJ}Eɨ2WifOL0Qh|FXT*'=w}-vwᄈq'*_=Ųy:aU Ɏu!إsm# fffq;%ű]ِJ+cnnnM/O댮^z6u3%'_iM9U?*Č#P9QQuhnoFo*2>^%c:FxAŒ:Z]]/eP"k[lgƗN*sT"p*j>9vXSs(l`> K+|a|@p#1- [/BV| )nUB Cekece5p/ h*[~ a zhnF4j]^D( lF#h,} NNUuU{F 7`mf XIg-ޛ7SOxS5OԷn#J53fUE]h)2g"l d%2c:U(?` C)XMH5絙L; ~LDK~U*X&`Z7V>PA4J7O0ևz}!Ľ >k[P*hvU(Č B~NI9Q qTAAXQ`1TfQ%q^)v28V AKʟZ cp9gj59iT MM~VA&f:<ll!88oqX,j.Yɫ _H0 ^pcs ;vsx<-߿/&qN}_214js!A\Q }r4UհhHJ̳L:" (-$sRfh j L% ^i4|œ/[xWhTݻ/^8}t[[- &E^!X/=#[OƬV+:e^ZZZMJX}VښV,^,q@$gSD V\qpY4`S8TiI18a:ݕ&.#3Gyٍa@~o5 A{؎ PE2b~wSXc&@ ?/VTT<E!s@I(۠NYɾ=D GÐ,r1|O;| )A#ɂE{KG#pc*V5VU}p{v,]6|W`bDBa Ce z"F%O dBm|W.V4l׸V611>QF˭RĨ-K,}i#7D{9 JMgs+{ml./DA6Y#hkiL  X]L kӔ8% J7@*Z~U> 'Au' #1`<đn ׋I nÇc AՀ 0(#X592Bps!xH bqݔʙ pt¯\RAEIEZWB\YTTc #0!G֨@O ;MU@C!՞(U,o"X` FO R& h/@I4 aq$\:͚"rP(Q+#3`YE#:pD`pBRQMիn5ejiꂻO~- jc^nqw%`+WO\GoD!*/8]6 Rh!났E4gu}T#x 7@gI :L&)FAY4Uѝ7SRY+ ,SXK4*(A"N*XH**TL Q T#Fzّ  [C`a7{IXP7p!24RSO Ose\QT0 hfU.YQ,Q o*X Rz8`X\R)S| N-`(0 b]1,m(EIm&BTACqhJ*ˣ0<JZZ4V#[Dj1Tv'M?zb)܇gٽfbL䁨܄u]ֈт[u >X1n%'-,4!xԐX?nޖp "ky;bs&~z~S^X&ʚ>$YeEFP'ϧX0Y9e >_%B x,fM^W-p (Zw-G v gl6{[Ë/,,X-H jěƬW$'Y`!wT;kÂq@0lJZ[p* CCK ٲc ˏ΁( VW]CDZJ ZJzmwgi*7,XS"ZeF uAKhE-тwc_> zу,M끨`Q/,8CX<`!fA-8?5N" Q7v`,h D:Zp=(1[XuuVp*Ş!pt4εę3gΰ5|)*/X}PV( 6vw(8͝o>yr'sqR%E:S䣨d Q }x=J}_tdhp-bs(棝6?E>µQZB ,؟ẑR01_uʐE+`)1d0σ*eةjAAIoo`Lh0Zq<*l^>p1k?F,u`F@p"/kuBox`<ņV8๭AK@F&uߪ 6NSٌ${~ zy+ɂzs>= `~;7#,ؖp]`B }ى} ?@BN6Ba̜AZBD gS.xa ,; IR?E-0j7X:iL7(vJEs CP&ǡK8i#ߵl N #AVq p @9,qRĂf)aA#[2܂Մɓ;+i2SdIO#xsLq V5^tݻ4Ӿh<$XԂOzsEzAġF]cHPCFG'+ LRe)ecD1hAjh 0(jRMՊZoVM):Lu';a%"/q6rPRs H/%` _'/*Kƻ|.YT|'v!4mayH3 "QGzɂUoEduJJP|@0B}A9> 8@:XgǺ`ʋ{ Z]5 j']ق `(me0x?pvمC7F.fP6#pKYR8idA޽ _M}E!ق8lOS]-XMl- Bm[cb[H$XO-8 Y͂ ,mti~+Z9l֫TfU#6M-&&&C"7``Eɂ˫=.DAz;8@0 x)S KXYYsCĈ4JG`3ްt}鷿VUAvt2~1]fNp?dQLڟ~,+iO _Dp@-K,;}?#C1?8fr]p_ʛ13"ܑ~!M-Sv˭ F$M5xj&Z% ~)LG qAInx Qc7Iq8@`#uh\>96V.jDfШ)8HM ?|洜3c A m)2|tL51,(H1%Us-m<4 ίDlFBVXN )17@H XJX&A%eJ"E*){Mˤ/{v99s_)s?5dR6]O=\|zF84u~~}L@'5C'MP08{a)l(fC7~ QW_`uՋ㹟IPH /yէk.{s6&} ?$L97p )ۄ"80di"η9%qZo EnXEDϢ7oVpMT#x/z}hsV7$*[2i;`'8f)|b4sQ~?]Wɂ hW?-Nng/i[FDq|d5̓mfj[pmAn) ʈ˂z j|<#G1T/3Km2P=3&TC* BMMu#2A,82 |Є_|YDovk6R[ Iv``M[Њ}v<wb12C1+J&^c^Y ED&Q-eyH؟OZZZ. ]"J[hOnпmɡuײ.Bwzl~%9hD- Q@DȦR)xbnZ\"+%0ĭ*9=4S{08?A($ip5Im4}f="233Os1GYS$v໦ܴ@#_t XgAՔId "mڂb8)j=I06,HeR`^,ÂA ,ȹW8͋˂ uxs .(ʰHN6^lFP,-(uȮG8d{Z LpZg;=탊 cpŸ/V2̱1˲ (̢MliCư5ThUJRF:]$&[Z؃CCL!XveXPFD0#]N@ "孒2dDw0HW +Wh%Ś38P~ !JN֭R/B?8U i\`tUB-\Ӓ]JlKvZ@p [? ^se4:50u-W4.T,l涧sg0G|eA0ˋyYB9# zW H7~BW\-߿i߾ح 0$da&ɱ« Ú6R !XOݜƉaIAL+dABg;R+t eD X|$.bI>cƗ1=Mdm`ALiKFw3BĊ( AYY #C7EVPv),Wta-xz Z|/xU&"ݫF0.l8NJJ#}BZ}CF7koog5b"\|ۃ.P5MeF#F{ HgsZW2 b+ۂ1LM /FԔӂ˂-bA4)*0GG@-H JlKY_,  ̆,/ /x,HTd) X.XƏbѱ8L ߒZl9|CVXtY+2A%>uD>9`@JjAA5`Y(w8bd@UE?tZ9 ] }6g$M^ `}> F h$QL >+Wz 7_z &'qTGؘ4j""|&bi|}7  E47]w=֒K y܂"?;KH+T5{WN`>{,Anms.P>q܂Gs+۴ m\hA ,X:C#Q_fQ,lQV~봧>,8`A+qggWmAbPZ7łc彜3u$c5Y#`-D+8iAI NՒ/YpRۂu I^΃@=o@I0 YKX@J`^0`A-x<%II ,-hGO̴WR̯/_B8k#ܬ'؜&((G+)3:5KRKHhQ*hf؂SThhUeSUɛ4.D) 7tHыQ-(Ije@aEngg'~@g򼦻9<Oy&n*<%ElI6I "}m KmAӂߔƪyJf Ԝ.Sb8%+;_̊tr.OC<.\ܚ!p&KZnoowvW"3"VIMz"N{iUSqT,EJd9.譧Sۏ#pP}kw&L+2P_5R4z/T XMt@!޹$\92QvoqOTQ^qŷ.MS4[:@@|uÂgmNi[4"_l %*o&Az 'mA%L[tdD@s'PP_b`%M̳=jS&K;g݂XڂRqCek5۷)&>B0(vP@Ɛ-!mAw.\ߢZOa]ABO碿ӽ{ݳ` FQt:;L jM3ŋlAHTܺuEGq" g0ӡ@߅;[/ 5R*Ai7`[u{,x6J6 JyTZP\p'ł8OSEGCw̠5U ӂ beo5 B6m(1 + Qx* UUUGŽ[yiIq:bVs DL B\ HS]{ H1o<-xfjAnBQ-ME |9[-~ߡk+PbXp, 23S2;c~?d*nȑH~,O"ͫjHs.˗!CixV,!Q' EF(A A5J&b"  4f‚bitќrA+uy#IES@|)Q/f:r\~P"WMfp| &CA1qMZ%8!c+n)M :Lrx/Ʒq#Xn~'? ق?iRq, l@~BPבORD-z4iǽ4{ rsv?MliOHXx "W"ެeTcM X&@b3Af7k "jMC.Z5owc9g~舘u(c;<9v6 48 =q4I @0Lx& AUK%l?Aӂ P+v `Ϻ#%D!5Y#`D̴i`c4 Ca9M34CU?w1d Iؐ&'8ج 1܂mA8<rjyM6ޛ%BԿ}{/OMO)l jCZh!7_:eׁ`*$kWGF7!x1xὖ)`kan e+9gJ$ɩۂg ܂4>y|/A߹YO-iӧZ0.|#`Q~ns btt<Y 9;y {Wtfȟ J`Z0 \m UQ?FwM K-_t̂x1*胦Yw Y-8Tebpu7  ̮=,x4ۂ7l `!q~ce\Z< N ,8r]i|yYpĂV[0jZ7[X0 Z- GX,H D, %#_eAGT :҂tu]!o!}Ȳ`̂ԃ Pc D#i@$ߴBD۱>[uUuZoZ Dc`>8S-( ̮. >IҠÂ@!M$4-hoN} ,?L &maAA L1 Rd v2](ϱӂxD +/55B4>|I!yNj9H*2&ߙuQOjIXE4 #J}@#Mݣݣݑ0kh֯ok)Q"MV~G0mJrRDrMt$۹A&ϥh ;="d%3c,꠪' SSTY XqzHcjL$iqm8(ޘm`e SBn>kP >lRQ4ђI<[䛊x7mn-HamOCaPbAL"#8`Vti}T@ٳy嶋 ec z3t*;s4Yblll LJcZxa/_. &0O{.Ȅ`d#HӘ_} VФBߌ"(ՆiH]z!?C"$2}bQ [ AFd%q=EFbwdb($ZƠ}ݣC G[p&9IX%2kybA_|1)UMy4bFU4cĂڂ+f[:/b|qFi7<] Fpre`˲`ӳ+DhHXLVuB6R-Ewiv(!s\@`ϚD Fk$ o]蹰8vo_$Me M׿ KM.~h맽O-X AӂC-X S ',84JAMRe,UmAhaAYq,8zjJjȂ5̳?m`܂RvA3ފ$: 5`YP`2 ×L \>` ci#ڂ+/VD[E>Uقdm`./:oL M<m( @eY$<T\p]hI^[$޺u[ QitcUXy BB}ӻw!6[N8c͝RKW+>|]Bu?*˥149Ff`w7)"`K&إy?^rQ)tӕvkrA/HQ #$!r *JYDA ֠Kxi #J[|/ߗ痏}ղٌeIw#Dϱԩteemc o W"f '%=Q6Th}aͫ| f2em`Ir ,H g}ěˌl[WV\7ɂ V.hZO4gq<C#j%i%M]BIﴸ lC!zք a-a4< Ɖ&`|#d|9wooo ^k[{}99*X/!XQ4^'"ꪨMV ^Z]Uە N J 6@*.ی*W.VU$aZE'm'Tp/Pu>& 볲 }3sLooggwO߁B f t}h <#(j*h"x.$QJB wARY+1Dm?{7y[o3-uC7v=m T ^.{/AX]87-Րa0#h] 8U*P|(*_ h`wu5+S"]"mkDKxQVQAJ"1V1RAg~ Ro D 'l D``!* J*8)x08T0\Yp)׈RA0RDS U:QA6D+TGX!X[`m(d'їmYC ڦ*hCT ~ m*8*xU0 |WPAFΎw[ |U->!UpUWVVA<(3Dˬыg.ٝGGGfѶR]m|]>WA+Y,5W# :N&tThi̅F1-x..͋鱴'u/Zrר*U&)gv `TG9w F*M4in<_@NS4ۛevHIyK{/]˖תvov ;s #W;Y`TwTAZdFDTPbd* XpR9>bخ`zDpDcb$Pk t#'b9]j #Srmig#A0uJelWd5 H^1Yh4H'%;`n+ўh&$ &9c !dŷxy7ΚO߸q킹:<"z~qi^@` xo1]H'ɩa2<`#  iLrԣ{ZA5Z*@saۤD;VQQʅO&=t pʊKbmlpɮ_Pσ}`|D/<*]u2UPgРu`2`Zf1:!%`La=QX:bGUPURA*+E5 4U0D*3s`^ m?}TA jZ6,% N` ^j~RAS*( Hw=k|2o# jмWSBs8<|J}{œE؁VytL< %SbooùŹׇ ~N|"w h)C7Н >N".j"@HeRJ}:ʇʒ֔Jq=ֹ-oػd,eBhsX9cŐp ej 757?/Fӿ1hWAqj,_й:&]wnj *NI N /ynKujqrw!HhjǠƒ0zRZF]8ݣ4GQ᭱#%ݍ/Ha6g;֞G??ن1Dql*Ji JEjU;UCG߀َp Y 3!k&l2]/߽<::}\94#.lhESڙC*Ev;Ir}*;<is~?)QaMVǨ*QDCSX]  b-I2DJ1弣*p=TIkyA njI " ;5T)&YiRElޗ*݂vṣ ^1on' lY+‚F`# RglyzX0&2>~xs^\dNObitS15eB|^D`EM[ MP16}QV7ӭ-cX٦,M|9Q6X=InZznI&lrV.~zQqIa0nPTSB䴿zČhIb4, B"lbT#};,R +!u/Ռ([в.xޣƂ,VGBw;YDjZ`ظ]TԱU)&wo!"aE J.A{廕N RGǂEӕѹ WER^ "͓/W^Z=9 eENr HcwL 5g.ooAZ0Ƅ2HJzBo$dqhjmzu`, AE 1HQEеmAa, `y}'x~Lt7tuAA_Gci]-3CUuU8Ah %6+VSM 8mҨC.zn=FAP-/ o;`c][NcA7b Hsقz`hA%Z#22;tDr?=[dAWSV l٣R8'KZPy Rɂp6,}+ Xx -ṦmlAYtl`[,3Р`i  Mr=xpUE _-Ix0u}ʂ%>atq+NA==GSù#QM :+/; d]zb֓ l0$`FԷ| \i5R :>p-8\j&Њ o{+sD AZ#wo7q'E<䙡1B0Df Ʊ+)GUJ ijFT!:.uX  lVTQ 6AZߺok)cł2pP!f/ɂG{ՂJY0SlA^뫥Pt ~O"`%ʼnT^^-/.:B\Y0D(\mqK‚#8`;2$6hlA]S&#-ZPoT;.eA1R̞Ype,Eb]/eObQFpzlν ͨ;u2lqXp ;\)BjΌ 1 ơA% eLOT~-XmA| .>$ RBaAS*uEuEnMmR j؆7 d<,+XX W%XG4YhX!pז~^i`CM)a_PE!t W͌SjžlQs5# B8W3.@cwDI8 `=O{R1$Ż3)"wA ' RK$nwgDɂ?1 ߢ8rxhQszgH~ DHp+߾MM`xu& L9sf`_Ѽ#CdnyiAQK'>333(Y!Å _PC;ew Hd>`);GM43"  J@d:L)ĩgLvcsFGtD:s7y<8R4DkALa@6o!}bQ"!s$Z :.b HK_U\z9<rg۹ęq,̇xnt\D QbK vnlB:jCf"cfmua’H.,M4 ~!AP~Iɲ C\9yygRmü﹝瑑@ *Aǣ  Qc"HAӌc(AqK E k+A6DHiMm~+7IoE KhdķH0d ,a' QI׆XPL)J`ߙ%vz`G 2,1m$ Q!TܙFu LEA7S|vT-e86}= {y|\<18,(G܈TW`DP* jAA,Ϋ6e$Zakx( Z$CԎ C L1V b ,WVQAR|9l%8nxAA`ff}&_О@@F7KaLI}A OFT~b`II`̉cO9o,.Ilo #P$XCqJ(Arϖ XVVܕL{/`GX<\swS L~4 AQCt6 K JhW=@wƤ/I)g`(JcN c^_k]a׊d 8|* y6(Xi_32\*keŞ * DVTSvUu$`<^h2D-Ll( HA)l):zI2HJM%/( pMNN>}[- aG>]*%agƂce[a,A2DkuY QӑHհ} 'D^1 t|hĶn+BT0 Bl 6ZSa6IPPsggMW:i=K0Ct>5ƷP!ڇh&)HH0(W鰃#_[Y,{"!A1CCQuXt^> cFTQ/7q}yن_or:ux %RLlHcoXUlo XX)| #Kv!SD46yAM$C .NIA:-`KC`S * ꆨڲy[Sۧ!qL]Kxyl",lA]e۷Umn䛊W;u zu ^G_VDD1| \V,f׉tUGO|J rFKK tտa Fr&P )ic M  R+4 fj\l 4 k f 6*tbX̥QCx٘I /o`RQ/SPpxk)=<6LyrTֽr ƒQ0Rr Pp;RDPn +)h2DY`` !Dz{& y)c |ދ) FӢ}*  &`/ZtkTLAtL5C)!kD:ESD4-Qja:F2 y$)赡`p WQKE{hr !x4KLA6DK,&_B0ЛA+!%jj״!%Bi 6%٩>DM/#=&a =iW6BO h;~d>BB72D'?9ު{oU*~B7tϽQ}TSM6 ԿN}3 SA1 ݼT ؃հ_2̔Ƣp,0%p]PAc_ #2Mk{ PxF:4(Z cc v+)HHXe3ҬKu"4c\`";)WCJj*/N~;nyi^J).\IRcњUJFntJeGJЍy%_ܰCO ,--c l|Vޤ6QS>|]o KV2,1ooy܉?~Tp %I ~_RA7# @?N$`Awf$ %c4C16Dc 7iBD-.;A"oMmqQn֬>Q;Ɔ`YQA."X˔ U_ PĐ櫰߄vc7"XkA0vs0?9z:H32A,߂Lj:6Le$k^ݼ?"ϯ^akEk˜L|A w^'_!w y|܉T"#*Xd@p](j!T77 OSU0YUAeigD v9boGzUĈ6?*UI*E+¦*Lu<8,"EQd(L~.Tae 6-eJ6>ҋ|A@TpemtTVE l jSA*V)dl yi/r*Uր{9e\F?uA?P8z9ny=ts;~g0P(FuN~Һ/H1.SR!֥ W$:R*]ɚw\"8&#]C019Fg~bs ΆelɼNI㩪 SAA~9eFTRh7Y1=yd4+ Ol`9I+CĺF5{9f2fF2.M=_Ć & 'St B"׾m~ګ"RI.ZBD˘Org cࡤ#Fz|nʷ Hb)*hN TE ^c`a#11if>v+!xOׯӌggT \=jGp4C*X}AŅ\ =| WN^\a*<د\Agwlb%'\ί1"E%L!!ଂv} C;Tv@qKFʭ_i֝P*45|=jtVG) [!nd|F,bln.*]׾1|XsYGf&FX1ipVkLsss҃_=X\fDϯ@tIRs zUo+wEz9 n0$8̯j|% GiM HҨ`3',--Eo vbI ̉q-UQÏݧ[| '?󬫓Yx{|@ZLI!}*E xA{t%%껋YGU-AW8%5؏ %o~fyukP:Έ[sTnC$wPAc J!t*_$!@0%+s Fӳ,6bx[SHu{;cc?!3A@#^/fb`HĘe*xS_{Jw FzCYn{sWf{*F`~~ŦOXI4P9F***#chyM ' yy 0`GPKFPUhCp[#K"=&癰B8a|RDb.]3LۂcMW+d-b J$-拷GXsPa &j(o,B :: CaNTo$bItw ޲H"3#x6b`6qaž=Gsg?8\9X$y`g4?0q63=WX˷ů.=( &3`M[CN9}Oǔ"  OnC "D" wɻ|DP<- ֪N1c-"H-l:P!T؂@- " k WᒡTRDN:Ԉ D*Y%?_=*lSnl|)IV:AWT_OBQ9AB` S vPVnFRRA T;9 !델# uӅ Jq -d?l12EНC=;{<׏9c6ef"BGC%|!_==<ưWPYCTHU:L/TaPm;o UpY8TST$S4>vkVE ;5tvVkFI'lZh1c$])bح,ŵ؂RP 2aeZZBv7=K;-}//}{w= BNjU}?d;;; Vw("\ľ7s,ͥ4aR PA0hOQ2D56Jr a 88VJ^ ziVJBzQfTAҶTKmR,G>X*/$I*~m* ;'$Q%DM|I*/gs%DVBTfO eJDY!sXXZ;oI T0/*( QIU( ki;eP`VAAӯ~'@48tr,peDN]]]xdzhF?y:'ώ7S[7i@ߙs6~Ո)):ny|:{ .PDUpO, a<6 ^##FG)&_v/K; V1E1I.`TklmuKD=.l-ESkW=t`P==lgW8w4*>/~-jWUUbhZ*BpDeR!v식逶͓ԭ #83J%Uh76TХͥkc35WG,Ӹ6*dçlyh 4H)!)T"^ӽ`r!Wxdl-^Xwy[,W ^WuJD!`DTO$2ky2RP)y>~e{y 0΀#Wr1y$_?eC5a Z[QJk,lTDZ ˌ3V*E0_޼v` jJl*XŸRD%}Zc`޼soQ*h'P%( c׫yD`R4BI#%PV-mPm|VZ7 ;0m|eM=C`}FK:Ugup۬Z+fBQb*^ %I=A AXL1dz8]?Mm}6$ @"2Pm666u`+ F|þNUJߎPOT65ezzz0Ύrr7?}fCI~BaBŌ|>{):WRn$D:I_1 VRȡ \s}~^_짳<ɫtgR{{]%7vߥݤŤjB>ؽ[?]_\\(۲k'_d=n1hT\یO{o_}%+E,t=ԩr\[q L$vĪZs6) V_'Ca5,c9j(3˨,7B K@oG1+IV*(OB`D@iFW(J`oALdtk77ܳf; 0N7Æ CJh g_}$W-ApȾ-ǏwwwKrf}X!H.Ld|>浴}}c1vI!MOp>'ՎG`>ꨛXLUA2(30`&1HEX $N?: 5, .G*n= IDATBTA8WSX`'#{B_"Ńˮ7mF$i@PTpB&#H*8vwnU Ȧnkaj#9toDc`M`kn*xcn6*VA3#0L*8l`XT"p[*(@ T*A]G02)Clo 8`40K LYJ*X.$QMUdWAȱӔFH$ ahC>pqd]F;ʩ`\υ^ `Pu{WRq ^SIFp PIT|A\2֕WAǯ>h97gkBh j ilyf3۔}n*[RH$R&ƀUDy&):&r9PZR4PwH|B]sC *Ѐ߅@0^/~"*Zp8@< kB =he4~JJW%aY/!ܳsE~-:$n"GO%FN6xZ& ;, NN;bwGCo}5a&'2ԋ O< )S EOHp9VŴfF@0643tixo{TY_-ЅBk`t7BHښhZ v$cDX Œ[0^d ‚Wb-W}qw<+cRQINfsΜmǭvm}4l""Q?iV"j^{{4z+#nswb-usn΍m/bM H\wi|'o-2\)(8|~`ղ ;sNQ3N"GJQ,jo ]yI'()@t÷1V6rwͲ%ҺziGP?[!/Y8,x$~G#S,xk3o?Z-a[[֘x^{.,z ˗ZB 2N W7.J|i,ɂV= X5FgX~AӂK?ṝew6',H3hM(A؇! *d :%,SK ?v[K_oEs#Y0o`ف+yX'm#h 3yp͂n@ӧ'%:+\,%)PA{mq|8P~ntTѳ8sQkDdw4(ҏ@t-HvyxfE .dYpT/u|Zx)4MiS4O1 ϋ%m s]E#!W##֐]FмTp}jjʜd:V)ߟ.s\5!-䐦i8ꤨwEw/M0 6W`er4˗T7^K$auz—eB2 Q>PPHx TeohD%qT86^9#HV!+'nǚ6P] 2)0_ܹc! .?B$1ǠF#D ߣ=Q+"=h* N@f{E jb#,i+iT*#jGE#"{-#` Ūq%4!CX+$8IMUqCZ*IQDEUf{r-'LrFGJ/ͨ FRXHfY 3n/SCo" u_.BV lg iX='@` Epx@Y =l58>uݘjh{_A-JQX.^u4 ݽ&m X% {\@gsHgJ{ߧ]H渡2 jI9I!Ǔ!W/_TnѨNG̮#C*ϟsJM)`Pm|ʏ&#WT_...vG q:)̌P7F(R& Ցz9QUg#R{ !$P@RA.|DD.Bewt$] `AIQ+Jc`S,ި銖N | ;aT6 2s6 dpXa "K-%Z0̆Qj||޴`"0!>m!,(A9 NZpb)AC` &u+~MA3fX)4xx/ 6݂AXT h#$ !($xgnڞ\YYP6"L- 4X.EIG N#2d]܂/Z`$EQ**{ OZ8 }1i_SiRCՇ1. G ہt8fhi)47@g\^** 预b>n~/U9e vԊ?1rp1ߓjW`? NBPw7Co` Izzj3J.gggg'G(-qha 6@p{ذe4{XS†y` ~oN)M_.4FV 2lBPR<Ik< Q ė/r@6jPd%'F";k7xpqNs'bN Ҡ_`ߩJPLaaQ ?u \>B-r@XDlGގb(AD Z _|1M |8QP,8绌jJ[0JG"Z:dAXQW$قTzo%Uya^WcL ȂAwQz(a"i[qA'brvp/~_fA0sM@;SS`2ct r\W׺N]<5FQ7u}c1m}L|kDrahANUßx3c7T0MNn8sc]7{hee1` ^]b-\*&L ŗ~E*a6==m*jhНjf&z[tZa/D4'#Ev?y%$-=&v]٥ǴAEG hV*hC,WcBUC:f5T枊D UpPhtl{*y أNtO_ N>{MW'^#0 vDy)j(*H&܃A.P%GԈPn?@N>Aj4E"6& 5)*ރZcZ,g"l#Q \MO)x g ޻V"ux_`3 ,FO 4 ʟgS( lśX;JB{3]`Q~~) FD w="xu)#Z^^Ͷ`}#Ak3e'q^0kxoC*y%-[#s;f O)6+#@0#!x8q bkx=B7B/w4.t=:_-,BQ HAj_zMA [bgArٵ#ɢu''}>_W|*2 |:9ȎB-@RT(yC &Ӱ* I; Dk8PkѦH}T춠]5VAh*XN0T"j3GDAhY ZT;b$[ A| R<}U4T& xER3lAVeEc;x EP_})TgMa "hdEZ1] W{$+UF  ((>ePݍaYaB.:>>8CÉ!cb$2?wS?ky7 4L$*6pXAfebF,Q )?3yIږawrJIwnwB-5؂̆f쐍ZZ )ҐpYGDH s~jvD5#j1)` taLM.7K7KJRyGqq,vlD8s0ŕR;a+ ?MMU]rFSS78`235|U`Q#=-m] 䈵[M;V&`ڬBF&K <[*R)*TnR罆 ?GM DɐDF E% _ قZ  j7hyl)hǝ3q>dVNBp}v}p0fs`Qͪ6DTQUP.&VA#Dr,*h>A5ؾo/C<TA˽\a0PV"3F[ VV fq.(-*(l~*X'UI1`*hm_J{aT2UPNJ(*@#pGCMGcȰf]s@Rvtp1OGT0.TDhkkYx# B޿۷oennn]+RZ*"VJ :b1^p>UGLũ擇8O()yI23g`/Z4Gm/ؑ7`<%Qonb *S\Aej+捉kI)mAPraA_<؆9ޔt:}G~}guC3R ݰΟ?9r*e ?zh#V1ώHJ 0"v)yXnqn2%l 4 /UT0 =HʥjނCĕO'?m #Z"H\:4͠-"?5Tи`8;jz^o3wfv/, Kda$sw:&`7"@GRqITkIJq%pM[lIVptGX(>H}o/77\A5is $A( 8\S-Aǿ\-H6` Fq.m D#(j-NAB+\Γ`\"]!n,7 A 3 J z”I1%(-8scf馲߄т` S| I@P[<Ɗ|\% &uKӂ-ׂe)jroio {xfJX^yLhZP!h]twhAݣAj2@p-CJ mRmK`G !8T|Ǎ5幠a2Z,-8`,(+sn^F R;_ %JuZ0aA9}hA;iso x.D@+"p>Yo µ{O#P!'Ɓm+lDcoqu}}]td?X bQxULL r:x?QPw6*cԜΥs!@(fjꚀqjT*FGZy+/i EZXН5l -|sW.%,xu-(REfggq u;pߦIeRpsq~̙ϛ>;44C$3[O;d# Jyތ uXPmMyOb}_  M}MGGI݅` ZNٖ\DPZ"@.J'"#vig!<bWAPdqFp' h,! GLz.*0F= \#S*ɏ=A\BӽVMV_9?wA~ IDATdnl[ ADق`$"hVji1i@Y%nwэ@8LتU&'&/́q#(wg0 G>Hwߙk["(2 ~FPY0W xȂS̏/d{kŲ-P,xT[Ч-d5E"^#:-x,JX"Xlæ#,Z`@\P0-ȁh谠0ô*W}.iA Wʁ:R:mC0T|Ģ-\& JJ*҇╫>+N ZlAMԑ ӂq,,se#YA\a'\ۧ'5cA/,D҂^V[DkӂOq vNkY/",~;5ѠA\' 炲BW@д"u-v-O(XpRqDɠ`3kbi=5̘@4\e\DAeQÂE-$E:@sA& 6ޕ<-XqeD`7mswYpa< r ,^}PD "X] YZZ!p١gz1vǂ? fY 0$Em7g=ܟM#g,qcL/,$}b炢 %# FN$X;C|ȋv>9YJ#b\XALd߯pM_hK'BdW%jǔb%E E4e>ه>y9\C`݁Q8;{wR:L6;Ue#auC"-E>)@Xfۊ!aKƃ!C吁 Y0R\ _A={Ebu &\:ae# Čj@)Z~J _h;YX\fR[L9F9#zqcO%/g Ik -zTV$_ Dg"Fp$ ΁k7 .5]ug- 2`'/i •%`@T#8}'=iiYf"x CB'b0"K=,X0hDp1RD l%miJN!, /D};=0804ձ`X46S<Ə!F0dB ZpaA<% n m,])k ֵ?ASOl\Â}}eD0pm ~S˂ |D@/> # &x0!ŵ:?(!PsY103`Қ@*8<x3r"@b χY;?,_§s[ F/i, w픋+E0:X y5HpZм܈ uX-QABnjr7f. x F R5ԠcH|wX(s9y0Xf,#=v8͛sMEJFН! s5,XAD"ccc'O.si-QP a9ٌ 󉑦m_A9fۂ`;97MJpmܾnd zaDplX@pE!9݉`ѻ[HD/fZܯO#xC[AP,+"cK\!(pyQde,"8-qžl"8 &8X'q\083,XVYb"Bحm ]iH{U4 #ZM{,VY/-hUYlR[Zp{{`XY H &M yQB قA :-G ǂH9-ڂ p:F.k ~d|[F:Tio{Y<a=77a`̅`.M5fAFLqg`AB"D] 8ԱyV3@G/X[e|@=2DBT۰ņR[ic;[{qEEcPrB%)ɍV}Ɔ.I:5OW8_a>N$_ccxt}+ǥ󁪣E#V5z^)TpImAx2jB|׸Tl湭[$vMR9-x+(9'sv/;⯏a,?,:,0ؚkc2|P,1 Z.\0ËுhƿG$/Z1wv?MiBe"|"(6X|9 \vv6PBن  bę̢3d.&2\w^{s(uu{?g `w D!Ȧ)dhN[q_oKt~ױX,‚)ϼn ׻wDz4M{#7s8r5֚XP`eeޛċ N3C_d‚*qT '1Z=q:/A\Zp9/ꆰaB1ւԂt,b }njOѽ‚,7b h4JQBbv::xPN>EE^ĩD3 X[= ti좽A65e5yZ?cwAU "H{3 `U,Ў t> TƂa[_nn\8RRAnA21-c ~Bph1 WMяcd>/Y#EP+['?!7PB 5b޾f Q׬ˣXvq --h?M A(fF}~qYL%Z0tHo&DdA Zpɏ" odAB rfs~DK@3z wY!`Q@~4vJ#K$ -r lal5j bE@p[tUی-83 hWAv~mΔsw *\h 8,߂ݽ؎˂)! & Rւs9hQi  f,j|5CPSZ7ќPY0 j^S܂jh~W қ?Ȃ=G h[и" PEȂwnw+cYWDm1!C ]5%mAV,k Xp>"E,8,5B0b`AQ`n:7NJFREXrfd~B Zܹs9rNN{=,IMwg.9}v~k8kՎiFee>;A;ۂiծDx#+nAŸ >iAΓX7~O" C(Ρy\P鎹kA/B ~XmAx̞VA VId5{P1&3vS>_Γݛ(? X[{e1 $ R!aAK^kAЮ0hWX7 A'`)‚_!5\XpXg:ɂ Ah+%@Q8{ࠉ'ہ? `N̂NC %}E`mAS -قC: vԏ ϰ!dq#,>c`dtw-HQՂkUP-\!,PE-5qya)lqy`j_ 4t'TKvc,|>6͂%5Sp>4 UBw[n -aʅ>žUlvxdNݢ6#9NNS(PbiybR`?ٝA ";˗/twn"vn1Min4M6A]YqEvJ)vf,F{!M𴛸f%&odmu6aJ~yOx aG݂Z9rEH^<o9 R>],p Ўo4T͂e&|' ƍ<@-Y"~)~]8N'yIo6ZFi,hR`:gwB _Jm,/@,8J4o)b ?ޟl&tQ/Wvqa>N>Nfz{e]e]YCp?m~Mc4@ڢ3]@׺[C$۩TKG>CO'vwwltM!(K A[XCvW<~~3_%/Fmg7C8K; B}Z݂xi[.+!iW;.|$,..o_ol _S|=!JE465 bhɂ<_/-(8ݻٹlډ >8dSU 6jdT^g_WطCm[84#p :ʗzzvwyhtZqo5#VN/&@/Q@P_qQ6Md}@LOwAnEPjG |AOKM`\ 69 r`A[~!?z[)2~L(rlBWY~+j R  'yw<74qOdET6 '@ Cq~X7l6VHD/(Y,_rA2KE :y3}3ފZۻsؽtՂSmP.t6YF[-rA>өmwJ!H ݄"J󄠣hO޷c÷EGа`arXb) &aaA8>qd,dAc [2'=C,HCFjwM``YǃM\r6tl eE&Q0,خiЈHł㲺tɂ^ӄ^ DMQceXo`f7Y)bЂ9p sm[qWwb"Xw_k@T :ʒ *n ;my u * QkyOɂxRY = GKZ;BT'*9E q4 pMm:.3NEʺiA3WMx,^% [RM^#/*ǺL[#>W[Ki3h@f```yu\WeUA5ՙuS};T9~šE:sqA|FګWo49p,Ezԛ3jڔ(ںrc#O陇33g|c9Og[3k6o1nlnкN\t >iX^]Hjr2 9K@СC f (2 ,VMZͻM7r7h Gݷg._yq|R\0hD.hio l~3 (g ,:Z\Uy2`y9tP9ƔF0Xf`  Q z3[b) .U-(CBb)D^hZ-lKZP!4HDZ0iBSR5r`gfY\dĂګWs ,XA4ef Vdg] jQ`#/ϤWD;7Gp 88SiX07rFzt-X07)ro9dd{3& ~AC [kЂ@p։ [XP},H" -3gܻW-  <%]T.T${x"l Ђ(x|*=z+']p{K4|Kt#EF{)?ւED'V. =܆bts/& 0/M|c{=U |@y=rLF$〓>a!K(9.Q56ycUcJeg 6[NF>,o:ݮK)_*5cA R@#$oߦc!+%-Nӧy HuASnĕ 4kǂXcziyjEKQ:WVV`wnD>`HZTTt̙L_7BAxqZAǃ́bA#X򇒒˗/O% gt\z ^Q3 Vł;;;GBGʕ@ y|V(%.ff~DbЎ.`jX4%S xmT zȂpZs6F /;9ƂMc, >!+mS+QjgkΕ]5܍ TkAP2x#E, lG{-hBт~ꐼd{d)%dZ-,^ k-!,lvAłF܇L6: r=mOu] exW?T*%;[[ppт`mdP`7-Z|iтU;ܼ@gADWق5ˋA\g ml`it xA@0X|xn [Pr!7gii)%ed{ņBfgfC3UϪP٨Wi-nX4Jv,1Œ70O1>VxV |j[x]WbJow43׋_Rܰ66>T)AɘәҦ MYF׸Grӵ=Ic/*L=V R7mj^7ܹ3̈1 Mţ#8ܟjA5L&}~vKn/ԇZѡZpjjh0iFx6/Rc£8(Ί^9+<ΏV[-kbF+%c qJ'+Dkj.?].]?U3@YjSSSw/n^ ,- 9<\el`ѳ_`OGmbK,DNa|J 83|hs"4Nr Ђe,TUbsD5&MAMNf3e b gD[`Pc!jsB؂mޣ YlA5MJӦ.18OKpbQƂllM*b{{;ll }]>7Ģ0a`0^ &m/ûMh[Cθ݂ymH۴pʝW6. *qc}ϞM<hAJ.qQ`Sk *ig ͺE }߼{Gqq?=y[w9/y,injǒlk 0c" %-o+XzEW6iR, ou jd X$q!ق6U(ܪe%/p90E5(˗rB"XBDb>Y֪W&;HZt"(H`#G;9~@pIAww2[]2*D`An'>u;Aj} b&#VC ]  J)AV~D0[fЈ(,L K [>D0"U,Xjm= cns i +l"N=q&Mz+ ##X㏁gVI۸vBpb%4͌M`wo57`(u\FNݛ0{߉LA\׮رsA *[*4fq<ċ17Ŵ2!t֯V:Z+%d€єK|d1$4&cW&^GM63-nbw_~myߣ$UL ϟ%/X9LA*XV; H \k+R$x\zãKP(X6% !Aݺ5{8 KKLC2 LmIABȄ6+^]u\9Qf? !AlI(ؠ(&xMv`0*+SP5 F+5 :lmڶGQpB3D\O/sD# p ^R0E9c;|6圬m>Lj*I)xMbm  Spo B6P'-.$IBnzUUzys(rsS{!!άOTy>Po &!3%_Nҏ(0J aTKi|U.Ky) ]M8Kp?!A4`OOI W׈ᘜZp՘P ! \Cfd@GzCWO ~U 8z$)AEA S_$8G9wIBAS ncXX$v |s K힜$&-\Xz2!Aj"P0QpDA $H3hju{ Q\0Sp%(}qɘ)t$& !ꈕ^1D!ڤ)E(BܨzU4IEf zt[QХQU}Pߠ)GIyTe2( ƜNBAܙ!6u $JIйYb7TUӄݩ,1/mȤ\tХ})8hC-9}Q(g/hJژsEzJrʷ R|-M[ .r)3wk0vZ*y * *yGѓZGQr*h2x}ܒx\!z9zK x#G$˶m:giz$}A D 7`O-L,n{ 'a 1DQqt]Ζ}/,rϐ$\~~pH57e8v>}n ;9PfdddLA`pgzf Qؐz|cc:'1T0Db S @#^~C`ISI'Nhʔqݧw5 ( R=C<T w0OHsk\ bN>9}3N\gfoTk14nAcdFRӴ-)Mw[Mqfbi˄ĵtig\UPs!s20<i_~>٘т{Y0@\FG%15Ś9":6{ȐYП(>A= "^An'1)7 Mc.Bd6UvʂCM " ȂE R4شEy Cth D bԒ 6 .ɂ1|bX fʏۄ:͂JAο$ߐvWg D*Z6^! r'eE!STg)Â_ t Z5```JO+>k ׵[pł\{--ϘnA>C IDATkc?@tD[ 

 ߄QLpƲUh3:櫚ҖX,4v i/u7!d:V6e;FSc&YįIEDjX0Lh}eeA{#4ͨj.]m++X#S^R*r>7Թ8nՠSÂTڹRJj ., . M Ň:+NYgЄi]PLǨ)|b,p1f *TNj ^ZBt!Blқ'&Z uڸYHp=%֣Es)%(' -5lY,#X/^`Ё Gt" 2s lǐ 6k~ [OqDp-IypXlV<3Ev^ss{C CO?Y>K 2xJqT[JlO9qRܿ<.tL@ ƴAM: ZW!Ki,ףA^ yMa6l9} gtGp$-G` -HeDE.HpY7`płӂwX0acםbA@kmO ww !(]6h3-vZpд3B0$c.4wÂX0bD}$2)E!WMnVnoN>AƁ\3Jc,XUpAey JkfXH2ߐe8P! 1Bt?#h`A!أcq` `Ղ6XL`[,sZЊa;,84-X4:Aw [H2aA:?6 &]D lAzxxiH{Z&s-̓2ATZP͈>uÂfƼV uoXpCYp, }bFpO ]+yUXb`!c ck H  [4Sq E.AaY 3,OlW OOH[cQ=A`uzyŁ `_>Fs^`pcv.kAl3Sq!/ Ug^ 16sšpԽ< ]*`9|' x1`2'm՝lIl&3aQ6(b̚0Չd%&^8f:KJR$lM4hc_A}^LArΜxA c- <$͎ߟ)k ^T|_?9H$|/)a(׋ |j)6jdCt 5 VJ0tzep|0>5g(o 0Do;]@X1C>)x). 256)O &:DA]AwW)ؿ5C!Ӎi>#X$fm|͓ * .1/]P0Ruơ"uCwBAK}>`m & 'm > K%x/7p tQK|AM*m VD/ Q<)Pp(<4A Vll"iH( .LVkfAUq~TE>%9VWzgf>35T,>Rv;6M9iY j:ɩ ;. %Ϭ  77\ =km]iEFLvZO*r[JK zi=̲68[[[[FGyk ~NC_2} QWkx<&jSk(\.6B$ zc#V=Ѐv8F}c|Ë峑:}}ɗ ^pTϟߺuksbs? lV2U7Q|U)XG ^砜J GrO vJpmcd\)8l'%H4Ey윧A`ZL  @$L7ʖ]o 3dzsDAP{<䈈zJ*JoZQ0w (\.8g nW ɐ~8zZ88}9s9Ծ ;% VH(>`$8P;p@'4Wss`~Zh20>ޜd=ƖQkd~ P;7'=>nUy3iEQСEK(Q>wnZ`ψ,F GJTo php5%x. rBe QDP)B8P0(b ljQ`P@AQDҚJ%[6ܨ`& 0tRDAtSp[K]QYO vP6k5[RP4ܯ%}GcǼ(TM"R_EDKRgTRP`MA m'AE,_q38$kϾMAJ&Uj^(?H4Ť_3/ȕ3!^WL@^ %cg-H{9) 9bs'|I`: W8D-}` Ỳq}k'DZ&L}Yzb[g ~c쬵wpiHը˗0J4҅#eAn5^]}*)/1{yюmo(=aKM9ظo Ç,AǏÂQS_[(cCԶu8 Qi,JOE#Jx>[~z;)$J. k2-)Y-% RyiKP3Lw0eib ö/82)[$$(ב:$( n >](CJí\ВLcP8#Ɂ0QN;qS`[Sgv: 6,2 DeCcYu hpı`AqS0%= W:(^/-A0D)/ĂmǛ<('`y[ SSV<& R. 2JDsy*ywJ0:M*a NISY`N)%H g$pPpIC|Q(K]) iASHjլ}. ('A^`"KQr$H# BR) :)8,"$QN͓!zM QPs%%wҦ``j*^`PpHPI*T47A7W\mvnMjo ^9enEΞ;B!)bD$# & ?Q}ELj*5SDŽҘ4xw& 8 8)MF@ Blr~1.ϧ> GL᳖8gQpi K! VvmdP3>M3K,6OCHAL8Lj@0D-PCAQY $5:"gP_U-zm BIY4Pp/ _7FZ7/KPӂGe*֔KҲL( Hv kΜ=X]#G}q\tR"9Dw玲:/mnn2b:7S|8=lZ4uvG9"?8jDU{R kૉ'?sޖ2(WS>''E8G7ΛԠ[BA\p3*\//m |a?}Uga`-o/Y)$/Άϫ" 9i Pۖ%%|ML) fr7 N N t|ғɩBXQĹ-"]}/|w݅3RwіE%]"{_C j Ʈ.!#OĕqćČV5l3T:b:Qs]2͘hx'ĵ1JMB^NM *&g}IJ/K!/,v/}i;ҵ7ws?w~Ԃfq)АٵДD02#hY`DИ|_fDB0lGp(6'_ ~=F-aA͚XA*%e,()eUQpQ@{k~o5MkRL J8 :l2_ Xq2|r_*uy.,BXrM?yV4b zw쮬o1s X14lN(ʂElHDǭQqB۷}#k{2eWPY0!Q8::>6 j6GR!B3~>Zo͖[F݂i)慛m U08)d ,6QhQ|p~wÇbe_C Eu φ`"9ܑ+ܫhjY.pgr X")a ͨ4L&Q^ X^iV,h  ^B,8 ~2޼L (8AaClA0h݂c6 @tYz5Mp1su{"kf\f ve͋R冀!`:zMR,,%,cf }M}ND_m!^, h 0ˍ;MGo m&U=. @ ?JA76 A{,8ŸFêKE X\o UhBHi 0rD,;,Ƞ;-yw #H3} D=,xlDPZ?9˻*#naAg,-9BłMQs;?BjKZdiL8~+ b]lA*ɂ,,;)^V5-dG ނ9- 1H ܷɂrIb]oooCFhc%LEEnp"w>+`jN7#ke5Az >?fD ;::8_QZLg_=,*ʘ=2t??2rmbff,mZܥcXPD#]  EB)vS-(\Q6 | zǛ1++xwS===8:C1f,H?g+ qNVZf~]BPu7͒ od,o&sŏ?`cQdǏ-Q1*ok ">{ʹB~(5ǁ<L(^o_9pށ`,) nǦ`,H"g3<"_.tj9?pB /꽔fJ1t:kE k'0gr~c nD:i~DFK%n ^ \z6EJ f^%nLAy5M\F* vUe;V,(2Ц [ym)K*У?`U5/ qUXqSɞ ǡTԔe)~\5BP `q IDAT+u˴\se:fwCA@0HD_ Aal҃Ȇ#]~z9^,u}\ E =?>z[0E * 6͎3'4eA˂\‚8MT'( $؂[ϝ*z4?C؂q/ F(?@_ӂWBetۂ pDZPMTu'@TYЁ}oa5,H,x2tX,\th`˂W:4-!?xA=-㝝V ,Ʋ ɾTZe`* \ٜc9He|&N&{Ȩ+3+WOe ZVDb s=|NL$ºfh",g)rz5#J"Qqauk:/z8%%EO;Ey9^/ Dh.bAoEt ł+-[ sY>}$=NԎuww)g Š ɚIV S/uVѧO00R!ҩttʳYpaAgπd&IUKp[<{ T[jl_1a/ǯ?Z;*ڣŋtC1o>ۄ`l!(<}YDZpmAs]P.JTv+<+b"xX%ģJ𮨹QBF&!@i(-8\5 A<N =\B"VvFU6 E . L2Z$-uM<8}9bp'#8PFcx ZSd<|#k5n #[ǂ2]t"(*TXwK)E"H,v[ ĝdkӂa1(DWV:ě:NÐ #N9%M,' ҷh:,Aw RxtLpδ}M8,x菰=,(8hrԔhĽ;..X-(Ow}AzXk>',j&6YSsc0[`Yi6 jۂV5e E Wt2 v-',a#ݻ] vNY>KQX0v Xk .G˂OML_ #ʂyv X4- ø} v^_ -x˂-Dz   i .4 YYx6[jXgʎɒ{EMmX)˘Pk6ȡ34&ZDtE:ԅwcVF վ?KNuعW'9Ms{_9!QJ(xmﴠj!o;#i Di: ]^4)Fpsm|~>)ޮ/HĴnAl‚{D$Ĭ."͉TT@bD-i hp},k} |fA}DtNDMl i^5WED tE?0(,J: ?0TL.} E2EO 9NYMwldR`&31|DM yJ@"MUHjX2 g}%x <G:<zɂw}GG3|QymR~y9|.~κ٨״:-yCOy6JY0Q./gQy`d<>>OsJlV=JCS8fix`8=cߪz 5,]v>yAD1eh8 p˚ Frr~-_஝DI_ q~~ma<^}:+`xDJBCPt G:)׉QO!3z@L4 @0fRE2Y@h1b)kzJ L1Lxu&#RdxXƱ-`0#8<#xxVu0h9, R#8i "8H (ջu Ar~=k[n~muL:EZXp0siBK GҐ\N+NJ#]3 V jBT'qe8>L'Srx Evr뭮W,"hd6 lxtSggʟ77ps"m=;/p/|Xv^}f  x@SqQ/<7R9[X^Z []|hBE O Il=EiO@$dA  H (gAł)Â!;CddA?Gp ([ٰuDZZZ"ϯW64d4ZPnc@K݂JyA,8- B e`3@NIl ;NLOkT  ]?‚ym,:قpo|V9<~xłZjM<`^%/Y~Aȋ@|ãaYrN&V? |wZ ㄽ4Gq$vdPph*%/=Rʃ0'B2/#6cUpg !5PѠ,aCG~s%ô607~^iLıǞ7p%~s83/P 8#Ý C8|><˭v%<0],YySLrJ4x%d c"9\د,}"^W9myn޲i?==~N˜a_ G--~Y={zz&Qӓj?},xWV~O$=m$#85qQ 2 RMȲ!jJOGt*=`SP "pm$CtS /dc|2FP^ 5`Z47]ȘߔXJf߁R1/: z+[OQ nVrӟK+ʼnU-;ͭb2GhJ.ˊuo-dZﻣF*Fv}A݂ͼ&KG4e~q ZDp4]vH7kͭ͋/:`C2Dq/۷<[: &q,RnKTEj,HʮvF}9aAfAQa` <-[P#[P U& J'|(LĪz_F ڳ&6y8_Dg`32 `.7Td 6 !(XEAaA%W e`#5M!bpNG8g!f(xuu-HwŞv%~6l|=,M,]dݖBX Ie/b]%5kS-&`ƢÎM݉]L P`[kHɈzm\p 1k.* '8 rKħ^S,x-y^w V' z4g64&%nqS6+*ΆP/nիW^|5x KNNLL Ò8m|VS)^㜎F-!de>}Ynqn&7pP08CQ0`]1I?/NA >:FԠaA/x>'4m FG^` _DL$ 4IG:)E3/bbX#fXڋ'kDYdiJN AlCS}KTC,#73AQpgֻ 1%Bp괱SGDy`K_cXJ38pWߎ_ #bn=iE0SQ}`;B Z@JxSYځ)%!׋tR9ClA--/N%L#wZPQaAD澠WjAł@QJ͂1 ?jy`AՂhcM2e N'3!1[-,x΂!" :DXa^At czm-[͂n >6[V v|Tf2Sen-4б ވ߈Z-ف$xMtF-,xdAN*l "ȟb/;I~, t#21 /G|XSyY/l-j qXvJ2 idg.6RXU[#cdYRc*o7`;a,Ozm`K#b:8.95*2#H1riD!ΨG<\a@ 6"Br &fkSRTJr7F7S*Įr-㾻>i*{s~{C!C]Bĥ4-lJW( N !ýLMMݤ]vLOmQpE6"ҏDC#ۢsr9LiO-aߋ0RR槛o/*\Kp!TjL k6x'a\rEG^G{wJ sdQ,Zaď-GvGBA,ZxQU =H apJYrS[Hx Rpt a?%kZN#6Kښr3 g*P . WBd¬f[EG{}lllM\PNZ馴VmSE oM"F,i{sffA0$!aCC,1/׿K{Z k1^^0&d2_MMő@@< W ^# GF k12eP\@ko<扗!hTAօP8X£`[4 3'+TDaԃ $8wl!i LU ;Y *TСIpgQ5AU*" ~)CGJÇBKoW1Rn9U})&1Bcw@ *?흩lj* \flp;`0899)% |s14 VT"!ЍO&'W ȟZN Fjd&rU]%\IlM-Opa.|a!w'ws L[( P'"6Tpa_#EQGǴeu_0Y}BX1.HP$v6-TPRO>zgky9h#P(sWOQVxY?ٔsAO$; ?-#x ”F0`:xESĄv)[`5 ŋ+`N\#ϚQNڻ]Ri.stk-Z'v$^tr \^6y8)!X_OԳdMhH nk*#Q%XhA3؛C0i@s74OT+dҏ:K \;T#]H[@Nf-isA"o%Z1`hzBTA[)z0QDLʞ Skals? p0#8CͿ`Nq۴61}++;\>u+9A n'UA$t\SvriuA@P6+|A,ꤪ Gƒf*X+JU ݸza+w Ap v"cA$n:hʹi*iזps_ fMUOAwX<թ`JU\`J6St5 3K SU01S##CJ*X6SAEFTTm j~A EbbN#:k&*aU0-R`!֨*$CԠ zu(` jA Q 0D͞mQK! @Z ʲGsB=TAt*h U Q ZLTǏt(7Q+!Tpv%…T Q{$<0[\\L$X-@#gW0rXvC< fգ!WVHDs6/S<Dܤp-Q;M5a/L0IQ}=$׹pÞRrcb.I%m8Hr W\S,E|Ս?nlx^oP0 U,U>N>{we3Lq“Aq)(L;T2jhe-ikX|ă\^^5'O*8Oi"?m9.W;]㿡 &yE 2@FՂQI ]ox~)o?1X ?~ b{𣷷.; loڳ5&&xYгg?Bi^x=ga5<3c,V AC fߟq%'@uq0kwy缓zec\ J9@R݂k`\g$awC "-ajdMlH!tP~LDlk/I&Om0 (0T'8iÆ- s@e4ne;V>e3 NYB0\~0tAQf|(<Dt:[+{hPri HQmj@kǴ\=}wZ"ҢnCz2!_,,|$.)EcP`5p6T `/8{_BP+VgO A{njb֤lm2,؃A$pv`yAT*t>U`I4aRAz"@LRn2ID qUCfQWU˷ LyKqpmTAW ribDxjCUq j:X't"*qUpT0H{6E%WP9U\RUcQvPT;BO__V Z'yEf   :@ >7UH5Ƀ*^vm aSAx.g K~*80TAh"%*D28F n\N6C㲵 uBYQ'I - kEg%#hTV+'JVS+zel]K_df*CiRö-B<4ыGEI%|bc{7n zyJC͓ڍa.7g5ƈ 9.kAx7*HNqn(sA;ZyPϗ>ONQ*7j#ȦCP,YzҒd750W:}_H8opO~ =+}ff;@P$+Im:sXyra.3W蝅vV:.sO/Ȯ9s?Ht%1'9ׇ&'`qFAa׭H>lW!!Ñv6MeWW35Oأ8!Fn)'$XHв&M$f%QQ, 1RP'a2 RvZBa]bKWtq?KL B_{s=_tO@Z슒$77_̧1Ofy" 4vZ:g (z#=rT IDAT㋏ 'Glb?q>~[`nҒE-Cm jܒA'1{?w Axo xG@bnj<?/[>Ϛ8A@P{D /A_aHWչw`2߄4Dh{DcDcT#hAXW^++T0I@v & zI.C,˴Sh^6¶Tpykޓhl =[TpTcۖ̓TT,#*TA6V ~Ѣ ~G]| ˝TC>#E/l%GT4mAa߸T0ۓ]QRB#c^0>2_L/UD5B9f ~M*x~VA9+gv CTU*A갾]MF Rl&i/F.QYLfZ" -Zo3ϻY=$]~pzA>UPR^X{9lmK#آz[[%cw7yu4?'8Nm0Fj; d2P~N0|)1Rհ)8Y!T0dQd`atF6>ACD_sm],U"tۙۈ[[2PvCc{{LCP!`C .`* &׻ J5ߝ:A`S V.fvuѽ5sؕb=E?re6wz̔j,t ^*["2W'1x|7`u|# lq]*",Ǎ$Nygt[ɀiZ͔EJ||pb|%;-Nē#G$fD8Ք=2ʎ 2DC엂zdH ^0Y GP5_VW οAe;`Tj#B0PO^`*UAc6*h^M`ggV X`Tp5O4&L&6Rw_VZ2F3탠 r : #TA\zB 46N4^b+58o4З٪σ f0e!Y8L\u_}*ySP,cpW pb"YPKDbc9?b?# Jnއm6RcsLD/znU9YZ6"y:zcQ[l9zbbG2H<=Ns z*$>Çϱ b;{z'N[;"<-B+RR捗7tJUvlu Xgzcn4W]<^V5rPx%k F eY̚ sG&1Ңvw_>b{9ʷ%{b s$æw̠`^<ձ'Ƈr|`\޿ 8Ԃ@5t| 2"ΘTMz<:q^pC$_`=[Y]c< A#gHSM0R南0~zB0n>!(n18B{ ph2V%z :i`%('Z*G -"*8g"WM>֌ Gָ~D,ꋓa㡐)Xbcb#?%T,^ UЕq?,Ig$ATAW#%zeA#A*3DEL1*$1ɠAJ7 ^Dl Z.. "(TP2# &TqT#"(*l0*Յ{; * !  hc  Om76 *(ufŪTOϝNd?¶(-VJ$Uyt1DP6F󢌂tG!I9tvkhjJY UpUa[ NT`4N*س.Tcg#-]#pW-UPlUR__o=y$NBi Fg,Ѵn6OY$ѐ\͙ ^'r U6a 700P 6 1] HGRklV*(i_m!HH̷`mUp^!iKٰ|*Ӣj/xmy*SAc&l<Un撣N WA駴T-&)흝 U7mU)}p {TLyד* q CS/ T ~Oىp@Ԇ`*[*89 )msaGa*= |Dn .0D-rmj׻`ƉЁA4r q/P9vON,qOܵ3YRNcd7)% E/0[ QS]YWNyDK[j/H*^*E%j^}-校[[[**a.t},H4 OCm}Bz}fzD/C M{[[{7{Pᢡx"Tzϻ2 >ß-sܸl4@خEj#K`(=&$^;םgxe5|SL-NcH`5yDGJx6ASv/m{ Ƹݚ6\DM (lI%];qrl\]vS->@>ޓ=8t-YNr9uo|J!xk0D~yNpfVAW" nm`ـl+Q̉`\2 XXxK֯wn^ r["e{p勁Aq=H?RNA0D wCЏx/g4 *.*XPAN֨8)P@@RCR[1&T`uө2.5jO#QVA.*xV8.BQW?V_}g%RH'Xo6RaYU03ᦂְ0xmTVT%z8mA51hۂO-x 3  rUr%1&b?eMrLyO<7>{ee]~;tw}1y3S?r:[/ jY /HT!8<3yQP-_ܥj.YmB7Nz~큠GA&R&&B(#4RBП37pdR:" d8~m#}h"zk<3BVBwB'̿z;xDYc%PJ,&8A&B*{SSx z`{M1uBgl:9(Qfƀ<$+HeǨs5-/+ "50hYߙsD  AjDV 8ij3 AoV*x)Sli1RE *%<2pe z #@%}**;; jTM'ÍsĀ-iլ^U誑 &` o:UAp/ F|hё A{Sa(6@x47ݾF <A)T+y$FX?d-< A xK `n jt,c[c &}s;e٦692ibĝ .bm"E'pGHޑ   N=w *PG=2S$ʩQ`٩āh2/0TBUdUP-)#\Bd4`^QCʂUЊ *[ sUsZ* 8Y!/j(:`e K# F *^*xYT0VG*\o _g q2u<QI44*+[Uroׇ )T0ݦ 瓛 ZD[s˙Ny` Üg_A68'O ޢT I'Rbqq$ʤX WR,StTջM&S\ ߑ=w˦<.{a<½P[aS H\i #.Tcf<䁀VAz{X#vuvXVV'ډ!WXXL|Z=d; $oB&Ϟ=>ݝ]Z[ aŹpOx֣{cX *Z,֒iNɄϓᦌ|r<3v܅{M Mًm0Î[իWe;&o#hToVapcQAP 'E b_`V APFZAʬp`H͠Cۈ|j"!iLJ{7*h,ƓZd%sV9BC!=҃(K[ӅJu*op"H˩1fdH2wAMVL&{# nxtN-Jh7*WgqM\^fqO(΅[*=󷢲=<$-juT×(_4 몰 /O^Bˣ?AA@NJ9H s,cG\|uugWaɅ誫DaWk/52b.‚(.(oBrO̍~\m/s+AiͰOmO59\Ӄ7mrEN>ڃ{pnOMxľ33tT f| ;-s^G ͪ A .|͖ә$`eexGKj*f /#%66ƒnVh*ZqFZ-؁ZQʁr6B@mmX4@&qz AsqBoox-z?F~,us9x+KG2߇6 KH~0 #'j^H%A:va!aݐ˰sqb! >qpȲY {0؋?Fc,ҲeYU^TWC`E:`%@X.Kf$1ʪeA,x`J `w;,6XO ,‚6&̂Jw@01,X_ۯ*蛏g> >f  X Yp5l 4xVg_ymh 9@QfFzlǬe5;Ϻg>u~hʇm7/L(?cܗESb1}0,&ɂ7j mu5X?^cb)Рǂ2̂i,qbo;υ"[X+Dx"SLA[ QbA@`; h7 nb W p߱ _" p0,S3S ~aF,xN(ྔAwfMR,ȱu0F@k+lfB5̯=k z YUu==@LqFQ:u( `ΒXPWϟzv .86>αzg-֕]W`e!_C(BNl%|׈_csr~x|xq·V m@Z_,Mi9Th"+~,6?i#䶬;4>Ǜ߼yDw 5d,$7#r.gVB0A07?B0g>ssBpZj'[ t6Ncx ,Sxglquzuu\x.51αXP}bׯ_߿Šk>z񀎡=! -ht 6 W ~=cV oŇ~!็vO1 cnd,xPwr00.4^Z&7rpU%u{N5[ue$Kc G's/^W+vC^>d|{6Q: 6V7N\ .îbp bvMjBo_E"@po2߬Eΰ\墕fm4xK`\ n':|$M IDAT[][`/X_VJǗ;7?A  R.?~w^uNkz,xvTz,h1jcqQ=$Ϯǂ:,84Z~ڪ+Ȼ ӵeOU^]4X÷fA~Xԏ/ݾSg;w~xRvIV?^:3^=Gn鐇n5ܿ,U-G#\ CkoF#_IGn F+J*dq.(mxM}GEtl}O`2ӓK':9"Q69s27ĬOdއa'O&& 5ȷ*-;v5P~d&g$4'ydHV2BA=e )`Fl856*M&9b^M\$`7}xf>țX%cBDKD o[`^؉#{^pQC*YA6pr׼ 69pIx{ZC>^8v8G!eo_e6B*[4s e2_?V-d|cʹA:tdC `pKZ!`B"+86WkF=䥔Y5C6BӺX²W=$ܴn2 j%M"޻9&GXQ (KrbRj>qEnA5RlJ^$Y|Ov:hy `ǣH_c- uOK=JS/"=%(`޺wce)XB*̪,hN 2˵ %&r̂w)a!X-,Y+Y0meAd<6XP'{؝>e㕹KטDY~meѽ 5j]+h5 Kp=I,/Y~0D/r˂,+T$27X0aXy|(ykb$c C>{nXVj zQEKi4ͮ.%KIon1 4X4,ā!8KQ\ {'ܦ,Yu|P}*܈ZQ0' I1 ^K@xShC%r᣼t!&AV4ȝEks A*k=> V5y؋!J7A!|<(Sbgwgt*grJ`cAmX0@>g_n!H^4,XEv }SUȂ2呑f 0cZXPgi Bp%9ҵRX)_'*`AR~yG%|TN~ƱRp8L- U> 2 *gİE )ұ )1SH\1dk,H< i/|eW`bXP`yľQ߈ܾ_sbj37 |/T'-Tt% o^/ S_F+U-@:1VrIƒE[`2?榀@ל0Hd?wIR)ʟ,hdbTʬJyϫu)sy_^7X/Ba"q :q *}$ӐۓbV+(/mgFa`At#cUaQ2Se`N@trP _tf\Bpt;UWuxl;qbׯ~~^#l< BE;*%EM_ aUβ@I4KŃe)89U xFS KFYn{{k.k[LZk[`CgICL{1?~W  lY 1/"(ð51Q4v]]S!#Pr#2 A7 *!:EGP RɅI`U- U\Xg*ȰMy=|7A`Z*bp Idc\Q ~l>} Hzn3 #H6 6Kb?qwAMIMCP*̬7K&U [WDa z+%Hk`L|Y)UBZΩ`I2׼BTeIJJQ]R6H*XEESw*`PJVI?+m&zވJy"`YRܠ&MӲ͎a T+w Y/ۡȞWF?N+ZzwtT|(awLOwk-8F-}5< k4\0ui2M`Yz`$3bnL.V$oGbYD̊B|aUV=C?%"{?tLf8jJ?b֙.0XrǸ!7 (+"#wR 0K2k2/p!M\tM }CAp48%fAm'`+TX<. A#hXPKHV" {&W~tϽd$#|)Rҥfo2{$i$~E:ri)^--/H{ `E+ wbjDor⤳(i ./ޥ7FfUU*X`Tg!7)%I@g7l #2K6-ptKՎ B diTT*XBQ#M'woX|t?+U` U*؞+ijc_@}ξW#(V$ *6?²B6"Fc+ϴ?k?M)hȒB[n)uMߩ8:~oCǤ!g)N? *};8?X:bxFSաÓɄ!E㰅{C66s7{:[~caɆS+|1rEfن/n\0fbYH+$Ҍ|n=ݓkxp3Qز60}3|)`tAlP;˫λkeg<\v=dzf-9 -A)~sQT5A^j\p~? Gu.DBi#`|j "C0e/ N.+RfX.AҞ2tVp#ڤ+c5 I#LI(Keae^Cz>* δ J,;~F` \#bhkIPIS…`=SCP}{X_`%CVRAMڒT0mp) (d(QA`ВߏTT Q0"*YMGD|PC3mY,Tg;Sz~|y m>x TppR**H, h^PŬ/lSA\ JbK΅RACSvo?Ӿh~{z{Tk6CBse)Ǐ3>6R|{߳eyn<Tm|JC3xJ92 }mN!뽑˟k{M2]j|Nu=Vqi#72$Ʀ,DMݶa-o"];͛7dhaOR1βAC>?'ѻ=.’λ{nWd-[}[k-xa)mF׷z pӆj/Ғ*[> .4ω賴xt;&!pO"whu mmEp{K$c];05J& 8[|V !% ͊>!XepCYi j2$fLWʭ+ag&ԶgfY.oYH< Ë!C h{^T{"8=2XM U -Ee_Ò #qռ .?k!\o<4e!.ąR^V"7qi`˪1u#e!CLP(Ҋݹ" Μ6J*H&4>IJJ+V`~*FU<@e > JR |~(ڴ}j.g|"v0DKmEDه RC][#S_W~aU*( L ,թWAJl n#Um> Uc}gXiiy3TT'AgӫWW$^'O}YG7H98YP%<ܴwx ӘЦ.Vj;h> jtHqlo˧RC?f%Q!m]$q|uauˊealIH 0zD |XÞ@ b0sq0, !ŞrߪVu{zNfaL2X_u[UBID9[Bavp|Rp3#C_XVt&W *!=ž(=Gv.:Cmll<|:oA;0,ǮyG[}?jدvVG1v88xĕ[-K }Pr45vҺ] R \R~M ;"pVAO*ї>JCSE,f9o|ES]Ujn76G^rO_$0rrx8Y[΅!K`,A"7nr4=r=Ek ؘ4P7/B!h?.wUp^ڏ 7 jHD%(c [=FϮ}|$7AVN{|>jye,-mmKjsM xJ_P +TXRCz0E]l &P,SrkzNL"&֣>K`TO~9V! Gpuu~]UTf4P,,"XZPmm#O9$ Ug"*GWUu {S,9 r?f>BЛkEP:Tp׫ $QLWe-*`AM AQAl DtvV{METb~^pS*:J@^-䇌/O: .`MT0yɬ7).˧=l*xgWAEfɩ`zmMT]CV <"*z]ͅAk A()TGZ4SOV~60|#{\]]EN.A) |IZ$V$Oب%,`ӳp&J>p2N>/3R,(#/thԔQ T:5Ñ} 8Ywxw4T1m%%\$kBsWQh56T{q?$ς\% Wd9FX%_Qѧ۵6SWa m#ePhT_T3-=2##56a4aʕԤH129XtHbB `Q5mK?1Lbvqߕ+y{A'EM׿QPET!8S r紥"voSg8;#&4XsƠQKMn-~ U @o!>ՑmʵA>n$BW#.σ,1 NՔ%xHw3N+K*'Y$9<@q 0m')8 Oo^,, AWf$>/F_P/4qB?rc[6@|4frNC-0'C X gTJJpsT9KM.DKUQiWW*QC"]&UʉCPveT\ N7k5 6Tz.Wu= Ve j TA~̇J8T!U .nq8/'%S*(h2ɨ ,j `񵿆f0@` dJf2*qd~[(*g7IAmm¬ sTp$SQ FN#.A=*((W#OK\J(M G8X=Qi.9$h'o Jꈚ Ӱh (#;*>bPJV*xJ n{[@o|ߧQʫ5oO\_ k-en T*/ 3Me$144[~5!"*bt pKW8=1΂Iаv,PyK/հ8|])Yf&ԒքY }{!/?v!l;3d^PQT:U 8(#& HE7Šf922Xw.|Cp9@І^Q7}`:GKe!8| ;|AnOM`5>n5%Gt:N71 hmyR?Yf˞łvq$Y Ӟ`h'R;08ÁH(N߱0D`66PR 6pppW3#bmNuzz_7og84LMpP[)nX8Mв^TG%\`Ä8 !8ްTzbTS{L %b1 f,ؑ`gO,H j}VaAʂ$qg:CX,L!,YM2f$bӮ`Z|,hGB$j KU7qgj>ChĂ>ի5gAbB\޳NA:T[.eA\B5w[6SǂN'ݐ7/TVaEW#S Mۆ=G&OlX)Qj >1?@e0ZfASz>,)WS g^} ygE[=u~uUFRL T$4ճA =$ 4"; BBVB0kGT<`+goNVu'|rʛ X6~=dwa ׺J~Q{NS 4Yfu3 obX@xS3- 3zg0DSps+K: +8LaUAɩø$ n M }(Ħi٧ 14eC4`v16.^D MY[0V!̂_,x7kZ5X0ݡ-t"]-|;M A0DY0ײ zDjd.{Aƅɫ XɂdC,H}$S= `Q˂U&t,`;8ױ` A XA3 w ɞ]}xG.1fqɾ!~M&S`Վ΁6 )jX߿b CΑǦ9m3r(۸;R|ng$oEZ@2q,$sKL#†#^h0rAVfsKh6)N`$Z!!C+dC*vTl8E+ CƝtH }J3#e3Z} ,H¸̩=L-n9͂y2q5%dW5,`RڒȤд[ޕ b>Ёr]q)m~^;j~ƽfQ<>Ă|fQڶIq^C`,]l/_AǙwO5Iv8:Ze TETրM\78Z:=*" y}ܹiKd堵ԡtUl) ,!}6Ԉ Ӵu?+ qEALw'Q)7k~BӃ@0k8{|6rX'+Ɲڿ\~&[ vz:F[iK7ug`Aۮ!{]B.!Yp!u`%_Vm[T)+vY l!v$kAFKY0N!mhZ-At\;u,85Brv/PHYp,,wZl=:׮t'0еj #vC7ʂ ٛe,h TXp]{gYCp QǂU>'Uܺ; HEkd~2Ma`w`Te F(bDw9K40D|L6ںh+0IX-^6D0ܛ!B$a!**6ѹLjR|gd}!2 ˇYayؠ6vL/z$-c{'{[ɂ ; rw 4BΚ!(}4և &mƹܐSF 95 5sDu_A(fzqǔ+Iuyֆ`: )T|^8ArH%N@<ɸx3{Sv&>SA• //w uHCOl&0A0NU >OS6yE@y`g5,R A eN;z9aAޜ, f  ,xYJ)ǦRY๲`QtNX0L΂&u.;#+bxG-jw7,nĂhR2aE߅7 GAM75,ĤE1˦L~·v\Ա`& R[A;:uDS)綨}l}Cbm5/<X#94Dмtv,xvx*jg$oK_niɰcZ+B>Gܾ9]pMQG2CuIJp3pߩ9vcv?/䵚zŃY[R2@Et&_WAO_/N/ܵZsH=70+w/͋)77XS j e4tc r;Cm=f9n;濼]=k#I% >.ir.O+JFkqИc  ;2Zp K f ɝgX&Uίޏji;ˬ-zz?%(8&˦G?! gA?~wmⲘQ?ԃCHJ+;<|$z+"\iX,qj,yIVeA3R'y@ 3D9mHQvDk`hVAPYlGbd9 ޙ,(BI5 ij,(YXlqXƍ⣉ %V-8_2asb1MvvM 9_|!]OVURjK%L@Z6% (l5)*RM+y2lpbnKHqZ0!Hϟ?^Tm2Ɉe/TG;BE>K{muʹ"la̦:虩4W@m#UHl]mVq{9UA0 !HVyz̽܉Ň`<kY_!pvde+`Q7+ AznfE :"[k\zԙSά`T0w1-35Ug+D=oNGDyds!;:g}wuV ё[ѕjA&Յ>b\*8S6 ,HN\CCQ:`6̀%fAi-aAP3`1X AZk@dw-&Âozt45XÂav>rXPI1C9[l$lC-e /͂A21jBДSpa( Y]_uɬ!b ^>tX,9]f=ݹ?V9WIwd1[1C˂4ۍ:0>IB+̇ǃw Ld$ڳ,kk W@xgczT~ho׬*Z0)4Vtה0$_|!)֟_X.qNn; ,qB HGU!AC4`/JI}0!DAp/GC|?f)YbW3'0`xaҮOE|6[RH+SdVI*f_.v'm!_3cSg &  4ɩf!+֌܌Z!(u8VX0^&,(`Le|qd0q%,W,Xf 幋 4,hK0%lm R`lƐF,mKYpVC:  볠pXeaA 7մy3]J\mvniR3"av vUʲ`&.&lДN&'kgu@O!tP4 Q6(pΈH&M"B™c!Twv 9c E1f7sphW/(nqx medv%ippO \ߥEXA/Bb&fU{]W 2 6h 0r*oA3 A=H+` @0q6$&j8g%:[ p0ZM !âzp3ÏB C8 C@A`pY|LkAPJj%9p[]YЙE`.zB 3 /?<1`#Gd?;x,8Η&f>8z /J(aP,e^{ .ςo3 rLdLVfA~2vWY MYp9 O ޮ j3xS!Lς2?YXPC`R?uz,]EȂfAs$zVT)0B_%.A1Wc^hnuTdl CT?u$!Hy\Âb%L{ &(]R'pJ"vEykV~0y~8{|1ڗ8Ç.//_MKD$̀=>s}kmudK;.ؼWz|IBfdE.~ hW| sRVC]V@nf7+v[JBI+;,&|Evo 6eΞ?pU\A>Zq͑eWBXh?ȁOsb@:d6K-Bիk " F$s@P%#&[D~!(ĺQP4$70 گb o&ctWPF_Pvσf_"^3U "&meCo/`U6'On'5!`gA}YА x}YPy%b;c8ysFUV7)Er(,[bz6t'a*Z{Y:mbVϳ`]ɂׂẗ́Zϰ tKu_gS- Fڅui{}TM W>`^6;?~D &u̽0gY.C&FT[ +*Yof J*wUTNۤsH ^Oc* ˂iݒbB 4Pߡ)?;):ȝ^gѕaXSA- 1~ն`A$G$"ctա H`ho2D<~ޯ8yWqd :#>Wgzώ`B;p dz 2C(Fn8̯VAtZ)"վ~s혉zc<Av;_Pb+ ZngN="E\["X N =Qkg''BJ^)vfk`"LU֫0{'8?, f4E!(n~֨ C UlSA᷶ FU-Yij^o R@p[TeS]_^s6%IMtw2cJJMy="3`  =*RkHMN)йAnrE&S.OvahO.~!ŠY]N`6쨛ϳ! Nc6 ;)`gbmJ+ `^w*ȳf3dTCc '=Ã9TИR>Vl 9@X`C_Kh W$F+c{p UۓB*+!hhJ ! rk [fI/ٍzxΫv6VwK0V#uWбG۽WHÇ"&~q=~c"#:X ,HDWz[R,p#dVu^T&S:V~O/CUxgpc&#(7lP<-Aag%"ut;/.F&lh4C AXa}4ρFΠ1<] +|A͓ ^QAQ-E/ iRDQ) KF0b?ZͽX++`$ N`t#ث .F0V)mMBVP!&< BO@Qyn4Ţj\Fꂬ ^<_'ß?[?W3#2O#AiB^'T&N3Q#Ep3ixd MyAR!,Aua~ҪZQ.u{!Tp&`V'*η:2ӹyiAz<*x6"=ù*<(Fm&N l`{㕫xWAj\P ꧂ lΡ.>99:Cç07}lG^.uv2e*=ڱNkUPY288{LB;*8HTnL`m}J]QM" w:60ӁdKhU5d' েO`yyaL# i\K L+Eo f %AVGC.SN93?ŢTƇ<{a@p}Be`1TYTL6 /3UTSlؑޏ brŋ a!,a!,@X Ъxi a!,BX ,@X a!,BX ,Ą1"CX , a!,bhS} ͷ6@X aBX ,@ BX ,aqܨPPbO%l],,BX aIS ;ϴW a!, ! k5 a!,BX ,ŰUѧ(tK*>}BX8BUT&77qjTsh agEMS GGJM_ a!,7,zgEiS ubś(-.yfEW? ¾(9a1-|TTh w(ȋ}(aS\EEQQKE..f}jaE*Jb'wE--* &H-Z#,ˊ|S8,-fEqT'?,ޱ:#]xi1ZW⠦)xZ YsW/A%6)lZ\[D"u!jn3ʮ(VD$(>oXF." `YxSoVI&/"qk]ɊpU$b8`D^d"ue1yE+gRb0y"×j~"]ZyUF-,W"$x#F.qjAf+zeE*IO$"Ek3,+Q-34u´]mE+BʪH>`Eʶ -*b6"P1%6,ވD[\ԞO7~enXAwEw\gGMxh*m¢GWȻZ SE+Am/W (+UuhYL ]q|@⸿Z <ˊӏ_(i8-Y5,^ PtxZX_aŮ`h3¢GW<+μi}yOCb(XuřjʢhaQkP?~|h@vZC\EaW+ka5a^ɲ8zXEhsjo^P̢{ꯒx5;g{EmWl (YfqܰY݃lԄf g͢Hv~θb9w4cY -,,& P]j{YlD]x#TTw^!,.,R3h-,XW8Ye]eqİ.Xd{V\ E,J,& E⭣RP YjwYlpwˢj͢ ,/= aUaW?gWCGmEnq;̗I,!4o]q+./saqTsjX\^*nY)XzjҰH,Xlm?vŻt|{ʟfUY",u5wE2,?TspXvS@_}OE}Y{i8.uC[B B,(S NuNG A" +!$4goۺﵜ^.ϤMs*LY|`tB6BU}P[`q`"[b70P緿sF"Wl->#s8)-m5o, U#\,-Gxey9 `YdbNj`S(s:+y9 `$, n)Y,,jV:zECٶ}`/-y9 nyj5P>+g# RbZmsE^&X!b{PPJ)Y9Xx6BYe d;YhPC-A,XT ʹ~X CXȂE,PC,F, ZXr5Xn0AXOE,fPZYUX {@` b"o6ClL^8yBiVeޚZ'YXY"`jVo`q`><)E5Y8e1`P`oB {^s@bPؖ,PECߎ4X,\,ڎks"mLvKY¿d1)"+XX6Bv{_SZn12YX6CJ#?Xwr`!7B-`0s:XH%EW3d}",a|`jrE++X,|nG_<|utO?,ɢZ %$ K3TE+敍PR6XV6C"E\E,XPj` f!5C%_jK#t"`Q,J?u^ z?Y5 1 Svblb %,F(S*x5`1YJESu eb}ɫkf% ypB-YLIbbct[aa)XIBEs]p,̷,L۳c e#rV XaBPJ wX5+o,@Ph,PٺEbFw,fsWҔ,Jbb1 k'`+֛++ $X%4Y8K^G,]A ,1EP# N(}լ8`B ˜pBX9[ _PF,\1g.X ՘EXJҐEtb,ʂE,,m%\H[/cEͲY],ɂW+f(g e[8;`!*4-`!OXS^ S[ɢX U,`!o+TaA0턚GdATLY6 f|{B\P b#TZ X!(Y4Ţꁖ,b ] a¢+@Px, %G%Ŕw'T(',@h(6J% ^uZ<-,Pd N( U/T]pB,\P# eɢi(Y,B?XF,#ʮYcbWj(YwP^(j,BbQ g'u%T?XmuGNYTGlPZkQ N Y,{,f-wM;  ,X j%9^(`1:b1YbY-X,`a0 d1-,b N(at; V,>o_hKG/T4QXL* -vZ'X!bUo,% u/t5dш8XG,#JbW[,[S8CE,Ftu{yY/X,`NYCRµh۳- vyO UݰX%XbeYW{ymvg"?b,\ǫ_JֽP) 춭`Q],v Uߖ.YL,`X^6+Xȹ` d Y gkb:`1S{o;P|'T ƫyqS^ e?73`hlvA&,1? 4YP,!Yv#`3b$XG,1^A&>X J) vDjB U[#XF `Š] YMC,\DXF,#i` X`]픅X(/Y<1Lo,W, ;@ k{u{/Y,iW,Pi,@mnNYdD؂j` X`5e/T~{;`,mpĂ`,%ꔅ{y1䗾;t~qx||Ŧj*YY-Xb<9m(  :Xܝ)Fj1 gIߙoB4N^wIڟvtr;,B}zwfEIN6}&p:W/+I${2NqwهOs1Xw _ه/şEE7=s}:7?i=eq Ü!} 9&s i!lY&z=A=2@ 44]UWiKlj5qYe틩֧]yV쳾em,仩mύ.t3BHf?ICB='`Q)R,б%hE!X=!X p}e4Jw>=os~iIz7a tHO*y*?D,ڮ¹;0cbo&\ lH'B96pEغrO[P-ɞ_JNwΙg|V,dſ;,: Ƣ(TÊ,9SоX=<2,}|CȂv!NyEEv3!X@#H)zaCJO0E (} N)5|`S&s&([LL=?+j#? a\gDl+a(y3&FdFFĹc$z62B dVdo7Y<XcXtoPF  dw+T,оX?J;#X\z>sd!EL::,l@b ,\谇\̂ s9h"5X;u"{I#KQ+DrN~ȪT s,,JS~RVwBf,b8X,$W,t6sˏjE,Y7X:"RX,8X}5 #XA34r M]`dVXkW8,@r=ư35㐥 YjNgiSI6_!KZm 7J ͠4N$|lT O5(",JOO'FYuY wU}ݨ6}ÇXlú3EԊE :+SypR4^s444ZE9UIX1p#T " 0Ƞ.@:jEڐG'ݔgU^Btz2C:Y͑P/,^TmNr"$v072u]JHKPVA zBA-Ċ{Ha4ԕLT1a%Yv%YS`aç?l(!~X !*5ߢjϥM$Se^ j, y`!WXǒ,bz-Xp ,~ (T L>ug  G'e=VA@CC$#*{#BӃ1XȂfJE=,: C`{-BսW6 ܪ=GgK콎R%PlLJi)I, %Y, ?<#`]mV(umX.o]9X/ʓ u`@1#O2i],P@CC>-9gCmo>3LZ:Rg9^Hx LQIx,*GUs7X0+|V ŊO.|_Y[Z~'b5pXDz)AlNFJevEӁEWcED<OX\=XC R,.cAS1cڵ]F4f 1|!#?Xh5bcQaL> -aƧ1XLr:Jw*+NnOJF^`1,bk#bHBG"`ErE#*Č!$/[f jQr,`NL f L'} dP'eh`+bQ{OKR(X jvXlp."`!ETP, ,F6 (c IDATG{> H:l!@ 6 /JOrleGؖC,NHp 3ɢ,KWXnőPQdqV0g<X8 je'S`]S,rQc7Dz`!OjAzM u2b =O:"zQa- HyO&a>O79̩0!I#evU;:ݳ;P(+v\X23&l~7 oݜ<+9!ɜ? sE4&|k/10 Hhd2]!`1\x_כ, ek,^='`ncw(T6(j 2f&d`ee\z &K} ,hu-h)3B ^}vX &XĠJGQQ]Зx!ACC`6CvqkDE];,j{'ua [4`a jNyGȂ~W}KVg5_kQI@5xmRGFCb{[F`aԅz`(TwE;AXD bTh>4_&^]9ńW,7Ϗ:6-\X&XP?wQr֌ק*r 0ysm8ff73͢4NS4i>^y~.FW q!B&HD{a )5>yXW$eؗ@@@9X\+`Q, , Rq"%|`\xuT#`A_-CӅBSexW?Աo wv{[WEb!|,PV iH$О 6١g`1{rwܡ-HAE5dSqdj -5z58Xem#CnXt (IR4VBCkVdK }WP #9&%; J7xu`0RgBb!B 5]*ԤEHJxFV.{?e22? ,8X7Te,` i$ YXZl]EeWEu9fuzU\%{dےWjb^WPd8;3P7*Z,~a3X|hP,o u PJv釷_tt"Im4& ZycY_{%uh[7{AzmP.AO'ƞ;n$=Pp`mdXD'zE)ԻwgMPg͊Xf8XTyjܲXr;yN'=bK1:H.BQ'nfL(Zj$raliI1VXB"-Vf;^ `@OEOt6_)=Ǚ(0BF Xv`o74x"P(j=xEEo~-5{HP$>ٝڵM9 `;֎pH+4 }'GgOVR&EQH2Ūb`}5 `SB㙊 X%Cu[=i*TqB``1e ,UN"Z](c !% b`q$=$JRlMȂtf!tbej,LE<`Q{3Xhm^" ,L<?XT`9S,,͝M2 +)`nt.F+B!ZLbM524CaM 3b`qAHqU`! ,>+ŗ/_@x*[_U,+HwNqX`m D}o*tw^os$&[_F-ʼnů&XmC۸v[4:{?󙵹3(u⩇}.Q=+ _Ew~L(Xx5t|oYm~hYWv5a:۰)ĿY)6Sr4\1z`2:P\m3i! [(~Zq"., f ,# AߪkT8٦, )7 2" I6 ypF1(\D}dXsZu8LP 8 XTlM M6oAhC,nX$|Q$AX+p$`חڛ>U^E@;ÂdqEaZUC|@Bj6_AaЍrg9U}~YHsz( ,ݹK6`Nk=yJɎ5P"B B(-ԛ7bS ׯ  P,BK3n! ,A4;=GCQѠY <j eMk2_3i'v!S,bV̡`yM0"2L8׍,vb==76X&Y3G,,^$Xl닧8-74ɾM +P݇gZ8vۋJ$m܆cDIH4ѨXasp$"իAE+ ߜsF1&13i19r%>mg첰ܕ>Eɫʹo>v;k{$aU NQyv_jEyBXنEbQ,Tx-TbqExEb100pb6-_ u(,4,⨮hz%Qv{NDrA4E~ٍ}?|YD񣅏b'/6a?OSyk.>sXܸqbqbEd~,¢MZjKVuť |YwW}UX͝wk//Q=ZKT6BKOQyR{UU+W*ŏ[k lfObuzkeL4+8wa%zYZˢ^vonXQ v^C)%訛B̻=O5Mƾ_W<,z}HoŕpN7~-iʢ|n)bx&Vtzp/8â_ VZruҴ)E7jîpQr{ب-墰ثZ.+5->TvE[G5@BajTFe8۰z;Y,n}v+f7nY,-G3@Xpbx??CeJ+|Ƚ;=WB-,/$OTjzJr-,J&WI .ygEof޾EEnX 6.a m]1WBQoݩ֓WoF_p3j)znT*Gz _<`xTw.w 5rb}XqaѸX ,= 4,eh01F9=دNb/,r"N$+Jo[^kO\ {P]6|dN,H|]j,2,zs  ,HxF?A팿[r8W+aOX*GQTj妛N_^ [ H)Zc|ra$ _/h(X,VfiR~7~-YZJqV]1b(X,WoO}>%9,>kviEb118z{jjj|Çٸ/]N[rx|`~=8=aHMS!.}pRIy~ŕ鉅n%],BXw&?,m=ߎbfqīwM]EXe11b~5p(9#τbbQXLebbyecȊ+&-ųɱ-%gW=|f(X,FM«@fab!>)ײbшŢ`ylrllnwcsscc Y, ѡ8-MKȄCrX,CC#ⶈ"5G#CCbQX؇l_Dkp,X (M>$E ":-ޘcb0>} wa'u9vU_#fFFypIWBbf -7XXc1ˇ;12uzB[1OtcYbZ*R -'9-ƍ 8p,"׈OWjAaFD?qE;c7&Mr)rER%:/Y5٥- OAړ lwp ?ݼT4:yBGBTB?4 Qx_Yz!:Qֲټ"lB*-< ]:߶L&EO^rD 8 r-fɏa!DIJ>L A9d pKzh0.ꮈרM~p{N4Uq[ 6,~ߤXx#*,Xz~;kd&Ur&Al&wȋ;3u$O-{vp;CY-BUWeRXLP 8p,JِSsY\.uP5Y#~GlnlxBI=KfUUxw. &x_Ӷ|̈́DPGDXc ,l-,xfE_̞3sg5۪e;¯UKv/Je5^zB@eyPs zuI_#:lǯORCȈdΩB/.ʂ=Ȣkc]x6aA9 yޠEp?ˡ*#ݍ/'?nwj܃` 8 hQO3OX | 篓Ui Eh3s1O#ӗ+.ٮ9Y^1Uj,! Cj',vEp?[VTg`EoJepƃccm^U#",XxHXȆDx`aU̥"z"Z_5! Z+u;wFmkg+ّHPl"v>@VH*6rwl5<,h,h, s-N]?X #V5^.i҃jO<,X|P͝8sm}U ogQ=A7Bw֛l7x$`T2>@ XWm9 44EbKZ`18cxbkܒ>%"g6{&`qiN la{|EBzk[j2yuLH\v=m/XDUG}"Ƃ'XD{?f]Wq 3JX_;Y9Rͣ$_J,Qws56 :XLݪ#Nnfd,kKXs߸rLhc $#šRb;;Ɓ: PBO&XXX -;7p9>dP.9x ݽH&?{ss/:t8XXX8XXX8XXX8XXX8XXX8XXX8XXX8XXX8XXX8XXX8XXX8XXX8XXX8XXX8XXX8XXX'-)/ݳ|<˅tKZo&xN}/QkUtd}7nNh4v'p\|ck Bڽַ~ݾx_d)ί-6ӷR#`LB&, pE{?p|S6\KoWGXl魍 44)@؛8`1F'XhҔhPO Ƃש8!*/E,<,Fou'gٻE"2Yc^OpxEG^b]:#ểEbR<-`h]*w"%ף7rziߊѽ'eo-7,Cg\ۅ.r{=Uڶ 'y=1_.B~vlwrU߉y[oo~DOt'nr^ޖߎ`Y91ܬ_^.5xT٨Nw/(bYy1=IMQ~,h,h,܈B:RhŘ G;zVU(E`yeEŬn}fYH 5j,ig~aasU{N/๙ڝXZэ}֋U=eű~+!%Ki[7.2ϓE7,N,u-9U{:;T<`AcAcg]H:.ro޾s&M{GXnDթe_ _~)T#J%qLt٦ةfv+-~T$gr5sxl5Ǝ}?y"pE\f嫔6] ST,OKrLjKy{nVĊRk* R~uftxƂǵ/,t_0.6czoW^ *X@lrDjF oLŦ ,eMM+z\([_ѧ*Ć%Q}sV!B0a pPPNWCmIE.\҂_LFnwM~ j뻔?mg,.:rskƂƂʼnKwoe5BQ񢢆uB,B++zGin[_.ʬLi¢+br?<'B q,35~4mFK^9*i0X,4;O_,3G-CVwRAcAcAca foPVf}tB\`B;ݚ Y8ğV7X~a"?,Bx{-m*7w+q:A.Xא=;۟4<Lzz(Z)ZPVhXk5>lܽ,ݽ0͚jbn5&s Vi3t;llXU N /pSڐ-ci $2!BmCV<ͼD!F,(=*ZFgb(83JxxX8ji~.˚R$9£TB!+ÑXbX 0 },xBzh'ԶЈs5kI]#=0Wbdd^jc/ k'eB5XWE"XC|DACI N0@b;=ޠO,3F,~~j1Gr4{ݧBQҡFKĂfR<XTQH-xTb'XK,O-oLbX 0dzHN,LouOHO?#qȔF,ѝNRLݶĂÄR pBAu6ls'Ъnс:gX>baV:Q9Bҁ 1e!B,5~PJHF,7D$X4Lc(~;EB}\KReJMG=[,eQH,jqm+ łm7- NYPg $H,=Kȃ cj#}DkW {YNC`qtab|AzjŀRP-<Gp{vbѮt'oT TĢ*Nfh !k4RS,:\) B,jKr}[BޤԊŜ*> @bq OI3V C.sBfV=i7ił]mjɧ0V,jIG]]HbV*Kͼʹf0EIb'$DybJ)l[a]p5b[qIݠT ok5fɴt{!$5eU8mF^,N0ߐg P3SbafZsJj3oC, $YeKjq_LLrk2{]Z,rBzoRu$XH>2 )%f{5ߐd 3YbJ*-<5M|&Ur/JXpQN,++ @J,Ff&AR @bq Mowh#?1+L!:BRXHsL _qba^d@[eq>%I ~y֠l%&5{2%n$[;ѣݒs'9f&6lͶIkrKR{L&GG#["w50v__ 7aepأExm&<>NTɴayy0c-F,Z>/VkҀaM`tN0$я P i;![Mv%NާK[rQ4 MbIa%:MŞˢ)B=-[HJ5FV3$#@Y F e&O͏wpL晘v&3yyy^y(njb 5<`,>`7X<Xb`ћTAQM\8Vߖv%de? )̇DŌJh%[r2L{$=O?9ݝ]%dN\ @(aM^SyvF4cYn'6Xxw<28VEѱf]%r3~Rxƥ'qTPZIB `Qd`v P,,{8ݻJԒ!Hb,e ŢEw>@g*a[3zd UbFEYvb/h IDATz@]ָK L %,0j&; sC6XP`"J4?._Y%i/&klsZ|O< |\Qn5_ElgSh`ZGIL=E}IQ|('rȨ (U-If;{Z,f>2X A db(XX n+Jq(F^b ީEr流R*5~b4 ot_غȼs =XG%.dRyb.~'olbUexAyY#k ,ڊueYHT넷 m ٙ ]/{y,[is01-X,n|:\`oP؅ P,@8jɖSD:T\8j^BB 6L@HdtFK(Հc-XuBVH@ʩjS3`ewfKEv+XLxr6[q{Xt*QUP `'Rw0, 3Ǫbo;"v^hB EBI`,@ ܢjBIn8G¿w^ 6OYXb,dd(3tBï6lBvgdw),1`զWEq,H"$!DfM\P1Ղp7Ţ|Bѡ,D{';yo:XX'YX]0 0+JBM E_Hu,E+1.TzB .0tȔ[;,P p:Y`"iVi&mQy;XZŢ"\Db9!;`a,盽u4}yp 7X$P\.Xby[Jb|҄ {ٛ#ƢrH)XpϜ<[4!WdO3->`%Қ2X:B)'=Xn4Q,KdtyowXbB(XXk)W( g*)U[W(brp;:ґI u )o};9G,vرIJgG\t ׭Xܲ*DF,__5ͫn `# x.` ,@]N$?yNl@mqmݠ2;>PvPB U%7kX%G Y< "ëw )ʤ S`(,ɓ"ۨSz(UUBe(?ik.v>5h:<,A gc7}GsCal -X`(zwpWdklPyxC2˔=1=}f{ cu ? Xbg_?4X|̌m dC8ZcKdX.\xo%X4baM3Rb,ڊajˑGIOubڼt:*W6%P`fע!* =2*|)ED)/.V[jttvd7Ssɚ&&9gy`J|aq&g89!X,% ڪc- T]`:Z]n*7\eq_X(ՍVB;OZ JXgKa.lȓ촃Aì<'swg%Z`v)|OWrm?8̅g4-Q8Ƕ[ɟ1gR`mz}} xf\-v;j9}Wt ͅv~{fHo+a_Bk^jsB5>wu`Q4id, keф`Xc%Ϥ pE"G̘'t%`[T\Ey's!Oqd8"X3'!z?ʆ"tBHP:$ 큅.^BSDJh רUJ{+[m<>_6jņKX X,ƙىf{,,Ѩbb-ѨKfmFE~Fvб@ǢO$K3>\e`Xbi{>ikz R8<:<nj{z`M.}{G)XrQ&8X@`/79Ey\ԝd|Us5Kآq:r߮݀P( `1M^JR,x1NdX%v9FT H=[ډp-É: =^DC, S=r+!.^U bUd* ϱ~ lI]!v @!fU,Ä4P0RU(zW4B9U,gGB6`uX,, [;y8fZXS:ky`t? Xб@Ǣ>e $?s(#5,vY 0UH;-1Xb`r* ʢ<24l/f\p-EɜXo*uG-\B8*z(+(RXLRSF NЅ2X~>wKuB@cE}xc!9%9;X笜'$ .O=`';*r~< )\7 fر m֊`Ѻ5s\eQ1btCbu`1z{`U^lXpR O)͑fOb{(t,бSvkO,\v6Hʬ,T?IbE@r>a`j áe,PJ9Qz 3`!*#,PXcqSzHup}ygCa`'eIRKd,PM K28s%&sX (0 J,PXcq9%C+ǢW/XR BLG Μ`j95 NL1̮ka@@!XܒcDZ"Xб@D +j6u 0# zbUI&dH,d` gB@5`(27,:;O/.1_~[6Ki:7'SFP1 ERH8e`>8'wcE@5`Z Pu 6˃Ń& t(]3"Xб@ƔU֦t >F:ݬ6X$Ԣ;|] `f? ÎRl|a9e`j uE)V Z,TdpP 5b2KL^ubH0k:X<|.B6YŹT 2xIף vY'1 %aR$64aE@"Y4+`qHKBa-dt uPmR3d:Xx*K;DO@*`Az%Lx^[! 8 n3頞#lV$qg*?Qk%)%;k=Pi(t,бhDO H}`A$ mX4d%dzB"Sİ>"XZ,,*sD`A ;:r,Yv>FcmS u}ojӝswm U X6]x,P-ݘ|"X52-:tھO],7rxAKɱbY7s m/@ cH 5Γa&*Zn w ,?ݗ [Aw0CNzD XcBhe_߱`7_c/h4qۍIIGD C[PR-ZJxR^"\4Qp `S(xrr3/Ax:̳3E~gfT(Rٚ`>+8 q}VdZ r,Nx;Sxy[kX\&XXa+K ,Plf 4*&89M ZMH| gB:~f`q` ,.î4_lb[`)L`;ķ 1X`P#E Dd2 &Op9`le)߳VYG%+&T.V%wB5,4K,1cS,1^bɇ˗"kT~ w > w6Cq!N.B _p_k Bߝ:Nm# ;@jG=j]8F[NpݨLfuB UMoviz=JOٓRXhSƉbWay,whps8ǒu@|,6݂һ^~V$uBʼn+p`lx@ lzmөgV.Ν 1`o X0ł/=),\#5Ȣ',E@bĕ5NRs2X$q:; ,~ZxsNR,6iƎtcnߦsܾσr|*ZQ%AܧA?A%+z.0.i gMD2lPBaKfI: SWXXQHnxUm #.N#{4/=sގC hЍ9Za|ahś%/ڈV[>`wHGt&7"ŘŢ=n8 IoΉ몕e>GIoޖQSEME}B3<-i\yai3ҫ.|XpՎ}f8DBc(Q3Q*0tE>:UN"T.mMQJM^-YXvF' +Wܞ收QeNG._py2`ƌ)L`B@8A_p==~ͮ}7owB!X(DIb|hDz%HDVCs$-@F`|9"QZmi+T+DZIc\BHI`V)\T&PmRR622-q^0[XFi F"9N(1 sӫS(Q4K77G#9ڛ^ O}tp9HLũ+&-+ @qYIqI̫5e&EUڣrWy/k5|14M8 hzboAրSZ-AD:xIsc!/H2NBfu#3~dGu$TRY Qڬ,`qN/c%Wa}*ǍH*@j!ԛ{QE<ѥQ ` JdgK>UL1vHcN:K NJX0c X0c-)ܡyo|%Xt:n x.{jpFNPo( +0 ":ZƭvjgښUA_/h) ,vvrsuk[&R&wbRx@Pc*ۨܺL 說 `6)H#hc`Gxw NDEU%Af?*HR\ B1u0.E7|.w!^I:A~h_BS X[n4, ^UJ. vT[EQw-w:W V<4c+0V/= o?G?ri*"׃LJH=%vW0e2V(XO$R↫Xtw_8I@[o.A8jd (N0:>u8gݨ1 lTNMM48/izGL t}qZo& R`18>>^#6\C蟳=9gz.: KX`9>>Oc>ƒ<*f;\z3w,@[3{ًPJ[TjX+plnT$ay/<ǢOK⨉ ,)SR,)nGZhڍ{~ &^&7֖`b,qwhg_/]|YJ f `civBV,W<< y,pxF,¼̌~jSe\[܅O٦-^ +,r {* = ĉٝ X`sRاgř2U@Z"-B#g)l؊\g vY)wm+W`LR,bLٗאVpNޏ>S(Kb),f=i:;WZZ=ڿo\- ,Br,4æX T,\nȭX<%s" \G]fİ N +Ӎ}2z` kJ<+,VaKXr=>fg]WhtG=zЮs,}۞_|a,0XDr{B٧:k:ҁ8mMLMN34 kL`aauWTz2DXBݬH, 10JvŇ`Qn5|8XܦT ,4 oC6`# eʔb eʾ$~){- wQ-2QyY9OrBy4=#V2bW M̤^W,)Y.Xlx%X0rWr@655}¶GGtǃKI)B /M,ǹY(r#@QאVtbPVYhF⢯ZiL/e#tFOpL[xY`цB`qAC6ȮL[ FX?6,*4p/yDUTqr YgkPHimؖJ"X>B2eJP2e3X{?%=/巑n0b̎,5,-o8UjvUeM+y{_d#84eD#=3GU,u,26]JZErBز/ 6_ }Ui89 NLwe;RL$°`3y]m繝t5?X )lEW]̭ranVU%ާgj8 _WA@X1/U,)  p-_Mt(=BM3*ќ#(*9P\2Çm@8r,<;쐨vJtEШXeʔ)B)ʔ}q`1}a{SDXګNu,STwxP,]MaFnyš8a\>$7<šT59ϿXٕ+^ C]Y<˟:oJ2|(M|Y,*Ȃ66QOqX#3<ӡeKȺ{P!1yiF BRSZ&ODیMZb$qւ >^->9kyڲь-8cX r;' 40Rgw!QHkd`GŘ[AQn9/8Kz%ҶX9(4elHs;c5h(e6H%Q _󆀸k{Q~y\qm85+6p @{6[;K),|VXoeWP_X(S X(SewJ6^3U[8Xg¶qOCW9X逦mС-lQcK)!$^OsKiYVHony7v $0J49R,>3cαA0^Y0q6`ȇlfDm}.[,p$d`Ks.}  - =Xn+a5 M$EBהV3  Z'&SX#˰=Gb$S6Jo?ޝ#Ps5X0?<yDQJ91渇t9ѳ(Ѿ$4V3QD@[>cR|j|;`Ac,jhtBU~Kxc80y兌&v8kHq@b()!A!('*UJ]tr)ڪtRtzBf+&\,G'eb,x=ҎŦ˦Qt:aV2me 뙷&|ppE. k6:̄y4wV48e?;hy <;m;[jteOaָ-[3Zu{-M:vJRяE?3l[ }Gԥ}[\;+txF;%GsNwשåx-bj&  a:L\O{Q ,bjC<%c[~a Hb%{'yF<턟-Ŭ`1 6gD ,d,XGh`QnZϦQ lH}uU8╌+ c`HKfDb<2w\ <\F,  :d`LٷE'W6/,/ߺP^f%gm`Ꭴq>,']HrEt82,0YjZL9'"&ld3&b>9V;g6;~5t:ӱ`F0x Sb0na RM3W!27E9Bd5ZQYDx+I 8p,  šYݛ'5j h'p(7[g Қ7El\f\riMyɊؑf{2915ekr#^L4[yhƾ\'ZtFtM֖I-3?qjzeP2WŇ=ũDΖo`j,XPG.Vҽ&Xh;x ycX@G,Ou1lU ,X\ORcAwHin,b|ÁLS$X@ 8%iK `A{p_,  8p, U`~U´ؙ , } 8C{k}X@X;H JU谀+ _*yHVA }$`q>-E0HR,RAmf$;}! 8bUd>CZ!Y;vǤ*ޱ~>-}bEfLr-G^jJQeo;E KVX`0E\o>:9 [9BҢ(Bn>ExR1X4|%*˷|IZȡ',DJH*Y2p{L#xj,.ۊx~wR2 f#_~y\QToؽI, š BV3DK,0%|n :Q#X423LH1;DFcQ,2T1UR|&{#_`6kVਜVŘ܃9 k,8aۊ 'קoygem/N}^ ,;X;%mZaq\V7כ(ꕞIGpWlq. N0.X!l1Ja#mʂTeU[$"XcQ, D`1'+bY?{7}+*rB]@j Eh-"@ģHIzn---Gvw3όp$uRne/{Acli>{ [ɭ+KS#RT"K=!P ,/r,U3q7  ) ͢L`b 0X kv) ,Pzg-%`a!HҝЦ BXnCXy5/2"3hs嘋׍uX ,D;*mtEIڦ~gRY_`1[4y_8eaS&b,?-,D-=I +[|K#$X99k̨z^)a/\_ Ho*O5p5Wڤu8 ۛ<`QX,j<: MjLD"#%GGvh&^ Q2t(S"||?TC80rp9ݥ7h0 V>O ½qdAn9}-I ,JBz{N\=io/ a!fѤ`Q# Ô X0Eh{)As#Xcyw]Ip_%iMuH| ޠ( B$5s[Ҙ]5-J̹B'V5/e]b?#RuJgHKL4僢GI>V[$O* Nz)Z>>N!D$b'g6u@cm;KϤ,}d`q5.it ++e`UЗ X4Ό>+X9閶L0XVrErTy2M' ']grx6߳w 7 BUh1̦Dݹ/Xl K,,'̷"jjCW,{o{bS`G&b^ĀxTLh39 4JtD"l0d8qXз#R耘rh0S,ۛ},I6š IDATMlF'gr3(N8,snؔT&w~5{&4_כ&sˣ>#b=5 ۹驞fբݰsão1OtN]r(d_ mǮV0'7Ui"Oܪk? خX_ZRSpD ^H N_୉qnKD"lD XoL6ǭv-Xέ8۞ XX^,:(e A,ቶn^aC6p# _j庶s6bS.)kKʐt,*?̿/ 2g`1YRW1_9KM U ?@BOj>ϔE L֙Be)Di'(槪"]Xz 7D!y!b|~+r'v4pJY: Y~wTr,fBq_‹f`!x.p,?* qhBh 0CA]S,=)QX408 du_8Xax^*iAM2nQZ͸}(bM7u9WsLw =;4Q"XuX@2qUmSc:? ήi^@03Haa s{4x~4B"X@ i.}5,KB[rMd qLBupCʐt,fc{>N֋]+7:uJbW4%rFhyQ*_Y)Rg^2}]cMi*w' $Kk,nfguT1[98<5ƒ}g{.}*́Sw17O0i>ASͱ;X5Ow4tR䌵U̴G"&%lR;@ci6 Li~ 6O9-Ҡ}1tڃ=c~dp ,B5 M>BK , ^l<bhsjFXTN1#^A#Ɇ1ɱ畿2c! 2`qA٭ۭ,}$BBj2bFM$kXy˷BH%҇Vcar,0RH5^RQmXdZ?XJBY>[c+5stUbvRU>_p9Q4!I"}Z :֨V:ڼN(<zK)E@,*NÁ XĨUVbY$^K-X]*Ml,j.Xr!TRup 2dHB:2d|`}ei9ǝ2j24̢R5S2<̧8(N+x3?*8/oECUۂ"J_X8e)"+ 38 `uQXݩcƆ&xMX/ "^U),]X±(KiGƖ:60c.xJc? ;0_q ,0Yhc,Pet6n?S<0/`,ݜ͙:`h$NYUŜ(Q`a%9CV[ ,dȐt,d>kVAr`ϸYūJ?:΅3]giX.8)*ڧEC6MVa7 `:ѺqH74VlBUfCcAS" :E_ ?%ߩGFvq -ۺ~7z BLn4Չ!0En?DV(LZ9`\ ܢH3L2rds&NT!xA,~.j5`1) 7(Xd)통K)6`q$XȐ! XȐFE|kϳ br Ԗ[ZF|+e?>&SUڙEb9B qt{:Jc ܱV8_⌐*=CP(>q,ك8&5_ǻ߹) ݤtcnӯ_v8zq,pJ1ɥw׳PqrQ_SSe;uЂİ>QqOiՂEm-`bvBOBY( >j=k}T*`$y+Zoj,xHCI6g 4*Ŝc,TX @k(|$ 6Y XEVnA%,dȐt,d.ByP:V?C9o B,'P>4A{][R;DҬv0z6+,#K L`1CcQ m8A+bW)P,\%U& $=9U[Gq)IW jmWIoŦƢCד&Dh?OI>6q!!;?Bi|{`Iy@Bf&`tSK },z i0C&c\'i+ 5F `1!l6i08`Sb 4Pn[ },]3X#> b3D:K_V;PLI 2dHB:2d|`1J*MSi<'Pv?"7&xҰߒ bf b{h2j oK\n*`\^Np.+xJ$;+VV Xxט4qOv(ZTI(X\Z\@qB9-BVrGtmr|i;NKAiyv6ϋeW š2ve€="6卵4^\׶#5'I35ӬK:#:qnٞ2=xfSܙ7ow8\j`ez\ŬH[X}jv$BO]RM-z͟-|.$qgoJ~ҵJ m*dv8r\dH>́¸X(K&_q;@,+ mJHKL6wo -.Vwlg˔X{''7AH,XPbJyWzݣȶ7uamXߎ{j[O w]{#_V_/|T;ݚ]w5-qž'=I!,?s.lC*=LԠ}! /A5XFJ[]bNWR@ hӝ.VWH5kE=C7P}ߏwӖjM;`wS=nmi)́¸p&rĂ|EPX4i5&G}QZ?MĢƫߢ )3eZ,QuXۙR }  @b@yN#jvޔpӦègc<ϰ־yDsEO/bCVҫ)7X#=TBf\'GKz/pXh%Ik4!LݬoSEכa7T0x+zv;H,n֊B:@,@bEG=fG&.U2bbX:Y8ʄb̭$ ;KB,bXj~#,"[hꬃX#ゟ Wif=W1JS $bRv7WEqE6WWÍis'X`@b@,4W0f |Y)qlzDk0U! @bĢ԰^Ģ =ݷMEknC,@bE!A,XpbX5 X`"@b@,@l1:gN`(X`"@b@,@OG rb" X`"@b@,@ k f_ͮv X @b B = b X<'!X& $H,l`n}" X`"@b@,Py-X|?X& $H,Ģ_x|o~,Xdxw݁̈݅X& $H,x BG1\d!uJ' sI|X$K?iD*P DbXy!I(B,sc Xg9X8Rg N?JkM#kX(X`"@b@,OdndOy ٣ o,5nIccX, Oo$TD*9q"Rc b (Q mS $?2*ORT,,f>܎pnH wI;b/&H,XE0_lbbM䑋[)3h*T憵g|+TR*t/ T# $H,Y[|enW[[kDe`O5!GW5bMD w~̯Dۙ6 ft AvhtC{ D`0=N|Yv6 F Yl'OE{2bѰn `IϙYz {=> 017JpҊܨ6# $H,yyثTڔwM IޱsXʚJc)N'|by&H].&_azJ 41'>rG$$سX%/f~yTmcZ~<A%fIe>{bX`"@b"yݳZ{պ}hs j }YևPhK9 n`+%~3f|T^ ("R"4NbX$WIrX,Bx5UB`‰XjIڱY2] xZ,b2ш-KJ8%M6 oSa$2aU,Pbu!`]4`7qۗ8N' b $H,׽_V/ b"fs:GQxŹ Eb;E$[& ؗ {Cf`L{Sbu@, !nv]X @baۿ[vbq bЉ;Tf"Į2Zh/*RV-&b .0I~UŢF~'dH,ȪT8Wȸ, Dt;X2j&Rz٫Bum]'tb!,-)7dUS<0˄*g&޹=5qCH "#qB", rT@ \6p"['-N_ ug+d7=5d̷@#`Lm(*Me`XT ViB a? X0"W :x~? X0H j?4G̑=+XrKȑPK`!aV(_3H BSCX%oW]8+S3"Ij*Axvᥴ5!K޾,z̹"}k4Jww墵Wr46dUK iH8aDWn_P7lwZ8!,FM"5j74ӛorѦR*;;Cvtm9hLׂ03X0ob"|dp) ,`!EdzDWD=hח9"}]zBv^$J `kOo~tmqJ`_H)&vsmm!,TH) uq,N\ ȕ53H,^7Blp "z{h lDR(5=9饇P )֛53d$3KC,q#vhK*F,I瞧ԔON@;YE0)0Ls .̘b!Z8_ baLɾEfXN&?7=G{/}"i\X ,S0%hHB͜M D OK$@B۹aq"ŢhmqQ:c"X<T`B)-8 "^gf`Xܰ&`"[D1w nZ\-"ςEZ7fn\7B,2Rq6]Y# U7»Յt>uւlw {xlGhA*X4FM:Wfs+1!zm ,2,{{_WfL`_`1>"Ya~l|ߎǎ "zcq,>l9YZE>|Jd_#,n<Ï0Yb_ S,PH(I?BqzMGLLsP IDATKKe0vPC ;HO.P,m= Eyb0md׹\Xxi탰E~r5&MT`qaBUB>p4'VeNQ@ȿ,(n i"OH6M5_^Mc`v2fv܃RBb``Qd^*,wAÁ5:c+}c X\R{L )[B);L=){{bq0Oj#Q-X$p ' 拘EϾd(VB&őgX?<<׋,tU ˔Cr4MHB+*qboSX9o(Z/n6[fȦM,|tQ=":n฼>Mkς#v`>}=M<<'7z ,$oa'ǕhA }pz2pɦIF`A;f=Paڽ>k찁eNw, k`% 4škRR.g`FA5C% AS7D*%XLjq@yyu.N[?\(jġ`,X-|:H-E& 56{`r#RyT 7X>9"]ESu k$<z-Eg"x3X0Mu$R?& E7Z"* a,}ŕmnR8PGThB =f X a9<=+r_=f\0['r!2ۃTs3& KƠTDgYa1dG7 QqB|Oiϥo uBA|tNΏ\a5^reHE+C_a,\KwUK E̯Ry r}i^mm>E3w,==ɴ<,ށMfeiS`{/:gPX̯_7KQ.|z8 {*> `a4a #elLaS{,d`LKEXL2cB\VTqE/͍6 MMU7~%8st~j$Ǣ?ߗHl<2+) ̎z IX[SQؐ; iS}Rŕ- _5>c +K+CG?$>DT [zH旔1 2&XW浕 ߅^Vh\o6Op6[X}`iNyf 6UV_\TQ96PlLX w{+,\oL f,l`22+$b#TՈ '˚M:~%kLh EWATSy _Cv=jGI+uȝ[П85HPr86Śdh±x_ (Bb`sXanǢh*M}[S͞YTl:Du@y)mR{Nǽp1K78?%8]x⢾)_ ) U}۟^,\gC`cS"xt0-ՄyŤަOټ]AStkA`!Y:y[A/8%"{x(NVSVv)+7slƻUX8PYI>d Eȷ;cEEUoT?H 9 oL`a+򚦬 ,JzCkkf]m 9T0.6XRA-dXv -Ri`Q:֔VBnNʚATb*S\EO06%\1HO%p}1XA+}]q_ w(0?$5D:)8631#Ft^ L !:c\W,Nj8ňc8c!%>0˵h w/Ƒk،6ԥ* X$hMZ M$JbJc p,*:74|z[U,"o`2216yұvZYTHKn6kQ -HY8j%ɻ>%P]#>lY"%6\n]+z݄ňb_斷[O=8jEXCuNf412{ tw0yN?X(I,~wSjٳEoW8XTTr6M&^ĺYw^T6RǢt5)S7><52MR x_xъX(j0n /M>>kmk``^V]'ze39˥E6Nczow Ԕ gsj۾LDj3!A\  s].,yܻY)7eGԆtԆy2i#9w^{R%cٷ59iii3>NC<u )5!,BT(oŤ㋇=Ȑ͂,jN$ {js!D/Af!gsB@XcQq峬S(ʾf7%q!Ӽ4,~c$I*v,(ydž(5HNŇFh `qR=αK-yv8>4KX ,35^Ñ㫯``qXؿ#) IRA~BoiݔC7-cE(!@;k|סͳT^ Tؠx]xl  S6FAA,Z_`Ǯsi`a_OYz!wiYZOE8TwlP ~خ7|a=-`ߢU*'.Qn 8Xv %Q6-p[ [xo|:ʌxXNJXJB)#"vVrBwl=g7kZ/nƫ^hMPtp0I^V{,>vFv!u&_\ݱ>Mr>,>Z2I}U,`:>opM 8X,@ONE$ Ta  V P]U,`vZXsNf n`8 PEr:I`8 PuEs:I`8 ?C/`BȢ`$ şHy7DԆr5qIZ%;!r0SDT@ JAbʉ+r^yU^v{Pfלf"L7͠7݃X "$$X ZC&D?-ZLN È Cř?k-&~ #$$X Gi1B,x:bAbAbpXKo{(Q-&#Xu,iN  !   @,ħ\ZX7   @,ֺ GZ/Sb@HĂĂaqҺ#+[ XbAbAbŐk]ͩHi  COsZ'(} $bAbAbŐJugTXb b8 Xb b8du/ XF,H,H, slO!u/ XG,H,H,ywbQ(6e/ X<$/W0xT qQD[q' e_;){xTK{yC?+XXXXTbRu*E, m&Xbd?n2bAbAbq)-?f9ʽC"{ [):Xb1N  ')s|}L5S$dVI c(tN־ bŢNXdc?  >Nnr""x:IlE, @,Uۜm4."|9ce秈o/4T~=u&:^+gǮFU.$'N.K喳[;E# 2+rsPS쳝̽[79v8ƛ޳5c+i'#KG=]tߎ{bѲfdOlX X3T'aAuF^)秘P53޲)G mtTUlWbk^je۶3~n[ر^$$ek@Jmj#ȇL<vkMz:Ap\`!^qD*9ǻD<&{"_5YU:tv8W^ĢG$ʝbΖ~.6U8Z*3{MU]~HX]e/^Ȫl!qUESK^ +LH#b,+e&-^oXz'7XYpCe+[!i|OWMTq \@,~of_ΊT('7=UnjX\Ӎboۤg/Msj7#sJcXO7Uݧ RY δ4#'m{s0K" ilbq2vڸ8{dTΜ ٷwon>]X X3]p/dѪ/ oƥjN;LDJbѴn̐pb<\NԹً+ ~ѝO>W X|3"F)̿6|RXD$QecODF"Xn6!.7j%RX X;~X80AmLP)z.l_{i8.E;:GAbAbrhG]2&1H,6d%*dnP,ΉU'y" sg?N.hmR5XF=b\vcAQ#rV9eEG 0}<6[}X ?!cͨj.(Jvܛ쎻$)GOE- OK,C,>hZPb;Ǣ3LłbqH">MAbAbZ^FsCfNN,w;rbq,r>C?ٍM:y>XTɗ>੉1+sҦLu{XUXxsol4'}SFEhِ\H8樂Y;bL(ɿnFm;Vz,ԭdO{23TX<|nΚXhvERioJ: r)=P*P$Qi!8^=':{&VY$Żbd۽^iŹjx_L_0n4jMC,&W Nn?z}$8xfVY$ -%gWڗ+!\(--bQ1_R-bi^Icsf1Q(ZT؁@㉆>F\ϕ/.<Z υ 9'/+jYNծgcVY: 0D&@,xbqݭ^LE8?+͌:Ubs'vXی&9-·:;8A$H,a,p1 .84O+̜&r-a|߲O?|;=:y;?y&bф3f2>ao_'c#8 Եb _3W?sg#ky:y;*@K qf3+"&= @,xbXJz2MdXTv_Rt+l:J~JSĂY+[27m: <@bb9G;<)E^Uꗳ;O{΅£]@I b߈ $b َc" XSC%T^jNmOu٬Wڱ\o:Ĩȡ,lLĎFm"bT!Va98·/]`bf0^H.Ig۶z/TCB,@b!/"v X0SMl/ey[]1IbѬ+5ʠYם}L5\)6u^˦ɬI䦈{(ee{"/^e8e1Ƃ;:t8Xȧۦ X `Hb7u.짺"K! F# o쭷n+&klXѢ U Rg-NfO16EW+Pl ' B,@b!Nr%?}e>R!U*jz\m< I/jXԯ57X#-,K2/,HzaMK9~O+KaIV#6-nHillGX)ci@9S**ަvbk"zTYbW+^!U e^b[܎K=\V}JZd8O%ٲDbg݈ӯx+O  R,lhlmUй+ Vӛ]h̬ܶ+/jEz־OV(HMBEiT/&uض}Bn̪VO!]O   X4t\b zsvk ~*qx'") 9@ҰLu:MtRIA$.Ht;U;H=Xt?-$H,X0`SfzuB +\L,; w#X̫Eا%-yޕdJ"N܎lt?E^~ i! @b[MgZpN,|A&p8=ƨXJ3hj9穢Xu lJVPkfiYVz"VbωVM+`]qMGRũ]Y}4v+R;bN8bB1 B,@b*mκk):B0*R0f )L6f;b1fFi`^05)w|u3wcE|Q}\7 J§1} c1%ާX _,*7GhCF %L:KoVkhob1N)题%s }6]Eޖ١32zFT>6}JkMB_ĂVhGԹ:b $@,|Psҋrg(q%՜4+T$ *Ss:@s]m공ѭa'Ф OEAHA>, : jj4Vb#zQz@&/hwӓ>Q(kf@:0öU'!73ju)yZk+k,yҧX XxyU,~vQ |C ^}oBM.ɻooJ*hY:zrZB PEET_,K*GWu.oX̪i jվg^}3O  3_K%BYjsL/-be'[v M̍BA'uв:9s?/*~Ia!Nn[.*8d}fQTy4bqxhʖ-qSWץMP OrMn4ݹ+=U.-'XU5[ @bbKF':\m'i/ǔ'u,mF4ayJZ~KT3bA ]b>I{ߌn)X;b;bXH X\8qHuł[3²v:;/USa||GLMƘ''eŗ̕gMƠ_Ogo|&zej>aG(>ewXsF(Al8bTSwb*lR^%#>-NчSwbl/͆\bq[zX\!|jjiVZg{N#sE fM @bb!r?'*(:N #NZEhNŎ\&LDeSrZkk3 dbŨw၌jTꈅt^BY|[)Į6 N/nŢkKd8J,:L-ŢK͵ɀf3&7;m #oh44Mm(^?FAߊE08 &~g<#L6T7Š ,3bqd񚻖Y([,^dpX @b1L,>bzNJWb*׉ìZ/"5b7Eyts{ҭ b!}# IH-iil{\bXe*H+ b0G^N]X(K-o C"Vj9{Y,+%tL!Wq bq7ڞby-u{X7XuHab0E5M9JUwMo(95e&XxÁY>IX܅U7EY;kXuOd̵5"H,X JM\ J/{g+b1BS΀1wH) X-u^F\y7Y*/>^gb5  $CbtMKb$(KD~3](y{>/ib 7d3um[,SXe2zm3\/H,X\/gIʍ/D {Xڙb'ީMhQfFbt}9@,n;Ū)^  Ӕ`Vۇִ(cXb<\TM2/ ^cF/ 0D,X  HuL/("Kgd&V3j=^=N9"Is C$:Q8- Z,(YO񰝙-S$jmvLc{Dy𶘗NϔwXplbʰB:`lMO`7  $H,E O"DbV7zyCC"JwVIVb#.x&SvKf[F_RNUj @,Vj$55I^uD W>KdvUn՘ҵc\U;Yrff&WrQCV#8`X @bqXly|Y-iy)˭i5R-Iu؉sBUb9"Ai픢j`c/\b!YGz̔y%#8NP@,n.0+[j=3qd:{_BܴCX,iڬf1*H,X܎ӏw?Mly Ha(`P[(-ePh hMH`$$^/Wr51Y7&f&?vf x7Ιrf3s`;fMtUݼ:i6=ߞ(]_UyzW^bʼnh^w5xkys[Գ/y_>|t^ȝ{P_,H,H, aou:uB,H,H, XXX k @, bAbAbX\ XFNJˣa.B @,XXXX k Rb[eD,.XXX  łĂ8GX|O,H,H,  bAbAbpS    p-$$bZ,H,H, XXX k @, bAbAbX łĂ@,\bX   p-$$bZ,H,H, XXX k @, bAbAbX łĂ@,\bX   p-$$bZ,H,H,~F@,2SXXXT&3gug# plbᙞ^poOO   5gU".Xegeo1FMK:aM   *bM=[Z]s-K_(uۻ"9"ȬLI)*2ŵ*3<( EVάXɤ*3s=ОtvqNJ&U]s^d<~ZۭSYS^z_vb0?Xem.}E ?)$$›hfKݵ-hnZ}@Eg":l'Z}tr霷`$r*uhM̉iC"mUWẇ(f/GVﵧӯB:=2]73Z"K(xkLlbQㅾ(Kt"6YZo\-!iU lhWKr/6oj >y_=t·jsSV>ZKUL= bFctTP`>Ϸxb1Iy<{K%3Nb>9 vfEͱ"7{/X k 3UߴVjRrUyيŊ̱X<܏ɸ6'D aXH`/z쮑_kYo,Vb![S"zYxhͰ =zX7c#0h4[:EÊ.?9)ܯ5 Vtx}k^闇>7{G@bx´~.0W$<yK,niM7[}`sp>\4\{ƿ=KZXXXZ,lz衬1EYJ( {~6}Qhke˒러 uK_}O7^"E놆 R:C:ށޒccjv*m+?|!s?wP|J7; ~/5ꬶ7(9{>*9ן%s!+T벖ս c3P|ãu}V1MY"_?XML$3CCDG̼3ykEv;.|/dћsQIk\6Ln|H씗۸ЭA3ny\cF5 ֮d my`}gWu}ukX:[u]zx S2n;>sj/͖@xjE;wb19"Up1S2DD,y3m*R)<Vwr{A3;Y&5Mζ%QmISR+oĂ¡GE jԨ{!| 0;J>P?!iq05, /ΠusF-mxp>9,KZ&vǪ=3b希9vzQO_fjR'e P҆BZ MB!MA-R}JT }ӵ}=N&+`WyH>|α1a-;IHհZΰP;OdsUB6kyhneg0pLz'ވc$'z& âw(~ytHqkaaL%Ȕ8_8Cƶoذ E-f:]&&HqiS$=z,Ƨ}0E7,>:7;x8XUfE]6kY^Yc$pTЋOӹe IDAT^f,"ɅDO2bѭeE5,uX3E{W\iLqrGd{4DFԂgtNj:͌fC nft9\_8vx"Y :r\v04[Z7]l֌Lov8.~B9#,-5E& jꁮ9jƗ^ L,/6m.ʺ-H)6Ifc80MH1:BpȞȴ&k29uXL j[X)@V8WS?8!fkyt#Dw a3~xt.d#^rIO|U88&1&d-}}m6_~cIITqX1WVǚd`qF`qM`b򦌦 Dj`TJmO>]B{,,"ҍ`U)LS,":jjLXx?QZan]ʰxEF6 2wv(Թ  `Yyewxm!ǎܤp)!C8Դ%~S[+IN!dX%|eFn=ڵw\|XP# % ugѵ{3tÐ "'2Wpp8$ fRMʘOIA$)/B B(ҡ06$Ő @x a3>`A:2(I7ݓ$3IdBi` ? O,޳ ׼d/]`#˂ņ{?H:`Qw,mU\ .N^`Ta+eT?t JT5E-`\ FP6YyL=xN픈b ٿ(*5Kr.{RLV[*2 b#"b $` zS"I%B>82}zB=bYopUItCs9b ;$Fæ | 3/(ɰk+<'DFoҒX!{FzibЃ>^th[tLUj~V,-84J`Dՙi`6/ k@؍v b{it +2U8۠@Ì+豈`QQOH&gR$c,~Xٗj%˵ps&s}HN߈Y оgZ}V`®uy$ &*X*H>WN-02Q(]ȋz[ bDȳ&7$^PR]q2}!jUt.T$n8D)q6aUS!e)ʿLwB:h3T!TP o꜊&\yLr`1R,[7[y嫼V.mt WFҖ5Vž$l[*""Ew[G=cq=`ƙK a{ XA1nށ=wXTj_PLɊȶPߨLD$|1W=*e5Kkhmz189޹v<,6qܚ}f*.*͠Pn9Ņ1,jL) j(.7,YvH־d`^*2`[c|c+m%l>)ӐRdɑ?"= BjC)RR/)dbLn" 4٢PC8" B}3nb&GX5mXWy^mkh["~lWӃ)pGmb WE0긄.hX\1XJ~,5 FK,*] a OB&`˥0[+7 .,SZFN_S]3%ؚ2܉Z.քr(\`eYH!Vn}0[)3Xq,fFDXoƪXwU\xRZ"x)͓NC½C+M%s~9/ oȯX^z)Q6k/EU]""qިdiH4r}y<4q'6/H4\ :k . uӞ bNU=vHF`q%`Q)΋ ۆQرA<}6.U},lzg.c=W'O" jPX=eV&QE"ٻó̆,JԠykP/Te^"G`KctOIN_CP! + w RL& ʞˌ,q :l竭nBb]-YX;˳r ]cI^s!I`cNR|ltqUq"ZHo2j i W&S`,q$Ep=[pvR!lZۤ>fx$P](ɓI BM&Kpoı/d Lˠp|U*Wg,_,"x ݱ.SxniY ?E0o'lL``o `MjhdCf[skR6Mlm{?~fJf̜syTգ56KCZ}BMsљ3M5̌O,MsԌ㲹 SXbqB@ĢxxYZbyҕ,P*&; ͱκ9Jo1ݱ~ws wj2H8J eXmTem$̄ mfE ML3=g tLA{a  Ba?Ňaw[RF* äŘ`SהtHHoRV\%& ?ߒ ӱM.|@*%Řkm+/㺾ۊD#2U%eBrjYv߬(WLrB?o88(jj !uE4 "Zds0 h8_o/yA+D?nYF,(~0["q[FX3o7kSp9To0D`x'o%I3x~7 ǎ}I^ҭ)Y؈ů. ֵ½,$TSg"iFw]8̷X> (1e_hQpuwtSD~w upM I`7Pv:^IkIm6 1 5j4gR hIR~ET+$ﶢل% 5+ *KڮOFr/>Ȍ3ٵ`dO^04%թ:jn]bQZ5 XyAnfiY0'ģș&"?[  Mk1[zP,@in8އzwhvηzzXAhC`D4KY鱓- @'X{E*mM)5NHN 2Yャ T%s>/DwFm`cˀ=#*08r>x4i΋!x@□&TTeWy4#d NNjy43vyB2GvB"d϶KD:#I4 [Aixx: !Q{d4mQb>Jc#QSB;a^dUF/"ys>5j$>+Ts18km+/㾾ˊ4* qʶk!m H膬YnM5lL,F WK,V;9@,<7/siv(b9GFq9Ӫ8,)#z _&BEb:/bgp'=x4NQ`I] {)V[iQa(HeE% *BĘa"VU M]3c+d뗁,NtDABpO 3>dq&hWk_q !R.!uezP&iNZh[!~]Vl{ $RfIUaf۵!&׆<@i_ImMo1 87SL,\-hL<Ќo"r׆"b1My~h| P,n-GQHfBQF8|_Y˰e,*G␸l&=yņhxY"ɢI vm~#4ۏfviϒ5L+`9۬U쯧sbq^h[ 7\XXhjKj+{/0=󣵕~9ΝSu).M(ɇdJ:YL#/nlyۚߟH)) %1"34&BɌkm+/㾾ˊ I$d 6\W )uyfןJ*qȃ:NtS0You~;&ﯘXK]5 oBFq|?h0W c ;(XbDXoj 梑[չe^͢>wJ{/rlrP b## E1v^VB;qqF.U2?b7ՒbogV괨rgxy{aޤ8{(-Gag]4Į1%6.y5?zHKZVdž 2kg5Z3){gG'eET+$CƆ R%lXH3E5>6 xRPL8v8Ktx h qN76|vD,hc*mbxwP,@M,ϕ*`D#6AISx KR> iäwOkZgquϷcKĻοtNw(&ȿ"|ekKY+5Gԋ|bxRuiX vQzkJsMs=EZ>qcN^v͞r4nqG~:1?]Z-Tg0{%ZDB2Peņ +Ξl!nXخr(3x'(NHISy5BgGu RWI,hLbiwJ@@vm9" g(|bGݣ)60Ow1cgXO?W3b}5Hgqؓ@op@;$ Nodrsi ^1 ]ʏۮ1m_IWiV XXXb.>9^4ʐ̭.9pPBxï`$u0HU@ 9b(O:)._F8 4VP=F(/ˑ~"ujVu?iXX7H,@)zGk@_wM.| c;DOśG) _>їs|(Ybbb(O \&咆޹q۟J@L Z&i!!ARqQ҈ H+]}8J{.O/9g8 !y2/w~T(9fQB] Ҷ3Y"M.Vo^OO/y;@Xa?$گv9k +&IY_/OMj[L{/S7oTzb!ma@X( 8T^p\^^g'NR/&ѽj2__h7.,d8G ,XE  d]!+X .,XW±UXc+P(1G ,XU@XH 80X(p,p,X+ )@Xa ̱CcWY8?݁c1.2a Z 8p,``uXXC:P`Yn V heaaH Щn+ ,c\WXvX@X P$)Xa 8p,`pup,d8 8p,`P@X0 d] a#p,X+ X cWWt@X@ pe!X /,XoV!Rw'u-m%:sJ_{,8¢F2t),XDݧ6,iivF>k7Imo㟛^JD׊Sk컘*TH_XX(⧷X I{Aaf1vݰ5wz&ΝIXc7$pHtuO5@Y}S {W;WS?ߨHvX#*ޙ~}W#.Z3鱲m  ,W(ت>v4T?b+1ުn%AX 8vE,W傸vFhBXei5-|9ѪgMwBtܛzno)th/N1R4ilovAdNSYRW8* ,k%Itce-x5:x!@X<]aEawP?K[q ӐWHBhg$?j_o=kޛznS8מw+NmܒIc{+ DifMe1Kea@ca  }AKX4n;tލ1p,X/-fF&Q>ٓ+isVK9Wex&&exbf9O/.%5m}O^[uHӲ=v%5̭r||in_9[7R yk$C z6D qM}dXO̳ҵ/5K&\/IRZH}_zH˺-M0,RG=ɒ+r*M,[^ U9 ]yfVtn09l1#X 3-јʟaxƘ6Y,Wњ6+ќ-cy7xR*W/ üʆ%l"vl8 Io z=nIWRyM[;JT3Io V29.,hUϜ*K\m6UUbW #8zVds\ai^#Ƽ7` GPXcRXx wa2QޫX .W{yom"bB dPtc?D[ \/:o+i㼋駚d\&ZE i9ͅ9 ~4#Iϔ)R{8 5ksZfDtjV-p +⪇.Xf}uyG]Sl 91v,FVkiSļ[Q[ +طlUÙ$ֻ%~3P Tmg *3QNaΩrJ aؑ랹ʊ<;#X䷱Vk l1~ ,KbM`ƴ"g =O^o%DWXm%p1߹t/k13+E4Ԟ59cǢB%[{y\UAU_AcAV}fvBZ$Z]8Dv6gZ~YGVV늣: N@Eh^HGp5f\;uNU ]8.P_NUw~Q*ҟ{xn<RWТe!,jKwyIz*+>?>gI6|ep;O6FifLO+]+2wh~%7v:ėH P2ǏҤ<7`t '˂[s GWrE"=$HӝzL {q}WA\qrQT#`~fNZ4vcg7ye'j$&l~J PdIVZ 8SVk9X|^4a.,YC&7[ߺ= 3P^; &+;Hbt5}-7zLtq94 Sbax!ocWR3MbWc1E|7p& @ ?})&Xb8KH:_C1Su~}ʻD,]}o[§?3hbD,ś-4Gk,TNė$7'U\NR, U52ݺɲ"yyQ 0!H>m\S@j,\݆ps娄oy^v;QQ!{VTؽ_w:d>HWxO5|-5PYš1YU 3VW)w-L*eb%qzd {*3עIz׫slpЇauie*pGm)cOgvmX}v;V=Ti!qI]1v'Ņ}I"JKgܔ 5&apKK0"K,vt+cp;۸<bɊ!z|Btם"!a)Tg8k*)Ƃ?Jsa̧ xK,Zٱp="MIULb9ګ b񧉅YwrZ9?#4~w>m8=nw5.9ňT{|A)ܓo$c7U4wzp*j\bL|FNh-^>sj_P7oK4\#dɲ$4#́)iZL#Y{,KGHd'*Wϊ[9dIT_ݍN`j"+,CigUNRL"c>-pŵ3s\:c_hCѕwm'hTYf+'3;6`Fn5ZnWm(v\p#$&]W"/R(B@5&r譆$бX~GWE,d}wDߑ 7 \I ')Ҕ7 R̅8#9Bֱ&YoX|ӣ~ Ԋ8_xL$=y[ȫ bD,f -ut,ZtߝX2O\rڰ1Kom^UOŤt96t@Ng8-HD@9 hjS@GvQ.^"h/+O8У.nr]i.$[3YVɱ/ߚ+>KK&u9Iћty!+MlVviWZPEƱ :c@PWS"")'h%n_g@vvC =b:؏,W!S'G-ȏ*۩1@pߺV1&Rr~NzK [ԝ fyO𳓬vdeZ/YaEYׄr+)(O^:@͝HqsPFҾWϘ]KO"v$6ڊ?Dr(H4fd X͊dV.oUuW79'z3tUUM?OuL~$֎4j ^ le6{ e?c%Y$rw]{u䉧k;|<{iNCCb9a>{tp>{9r-mH$:Υ 2)P+ڍe.X^3v bqZ -Xy2 #FkIbAvTQ?M VͿXdC,RV.<~c!x.&JkE1eZ. mxX|DMW;A/6bQ@y{ᄡ|2Zkvqas6^3Ip0d{i@ʣ 1,V2,i^_8蝓U#FN_e.+ٛq Lb})ROnX`+9S3!_#An!e72*o)*og-x]ܤ1lu(4mť$]]m:sw'/z@WFKh@0{Nd8=ʇA6u$ȡLP -X~wt3'S3휷fǐ9ʛXT H,D'/b!7x(}*WZQLK,B[,!FuвXq wpD3,>&ߚmU נL?#}7?)x{}TF,&8چ GlKTܔ G~X962WyhҞpzd;jRu$R P~3Z"o`g8ÕN:?;5À--UIr]ZP0>j̹TO=5ə;M扴#w@{N1n+"]y^<ᛈ"<2ms M/uC3@WJ!T@gr?(Ƈz,b]Zȣ}FJ֟[YfS.Lt;E*v/8&<@Sǹx`U(.^XjCm^z?ƜiYf@8HcM5򉉅ijH^w z/,RF;? Lj/=6<?'$nbAʭĢZ ZƪN^(Q1 zRX=B|zTEK1eZB[,>Xcѧ|8xJ,0-e l"8 ]ՏG FJ$PaIᗘ ೦u|PÀܜ\&[ug(acq4B@Xl'rQ dO r\᯦>\Oc?+EEjMAZn  աKl4.az'㩉NuxKگXA0l_Sr;H}$ bkOb^̳f<;w-+M. wZa?|HMȌ{mUOTxd4~xMK~sˠL2!;Sϵ+,S_L3 uFp6P7ieS -X+Vw>w1ey,ؽF 2NB6f, w糀Xs5䌱0X= 0CM"APՖez #IJS[^RnŔk mhYN|cƆ-4t\_<>I@4W&T]O2m]ku=]xLswP0(@z,nc8ۣ:z__ԛcݑS@-mI}ްƊp/8@\j)WY:+^=oy\^~o nf;6pwgs}{n9'?7G]sm|lVu"}j s,H,^XJiKG+W[KFFego'bX=Ae:nzolXdbd4g`# @bBbe3[}~vO׽6KJkQP!ƈz,c@|eѶ~wճDt "ESݓ5|=bԫN೸^d)%1H,&{A(ʅ)Zؿ}ueI[M2 C Xr{Q,@z,\/UA}ӅjL0.iѤ>ylr(OwIẼ6'/2ӡUR, jɬ_o:{ڍPZ!gT1fOuwflJz,IVx+H H5Jii9Jye%,Q[Nl2h”S7'Æ-aɤljkC WF)UtR6yNJٙ:ݒR}jVjO"T5)R:7RtE3\R\GJT5R>H,X@ >P;@m}`HP-~TU!4ʂ5`4Ң]BN!MHXT{|`%-}⎵21*7QM Q;e aBnAc1S!sC[R)wh\+G^Vܰ1qͯ4Wdy6ǎrsx&@z,K`]2!IXU6h~N7Nxa3aA7O\ŗ [yP9=h%d>I"$Z7}^  "N!ެ!gU`rv۝ .' P&,,-'b԰u,roׁ T#Q*m<@X\b9lǨ|N9nC bF2*LO_S˒qm!w%e0" XA[hNpKQ&Fo(SakHbx>H,X@ >c쬮mVY._U6,=^!3޳Rm 'Sh 8Dx n!:(̰5ˡε {~J15@ R]А lÊYⵒ|]».Nu; ȗcl-)CcCao@CrO6.R@qr|{.4Djb-1 `T$3#@ $@@|2be/Cm10 o݆-M껠fxSqxծLudR? o ĥΆԉ XQ=εNXwܴ'aSZbzsQќFcƲϤqMe ;]Ӭ0 ߖz.{ij|Nk8]o\josQRݧ/K'w_!gpSQ# Qbw4o$X=Ɉ6$'L\`%n_r">)MݝFr2,b*,fr5 ȍi VV[;Wl͙YKCY+vFKYՏ]Zn*cDa3JʓREX =@ OF,چ2!Üf*ER&=(X l&C`$k,@L_h`6An,2fG2VD7PD34uqcFRLcmL\VkU΋3UDžz@>/ZĨ1NQj}[K"»,-=NK3! 󰭛9"w=V:)0Etda3rZ5*En$$,@LX%nHoLBk$'ɤ=8)ʚ#]mvQ^ϝBgb#=IrkBtk|m1}2SjiQ`(+1ULz29蹼J< Z&#qMܼR:qy%uBzl IҢPprrcLD'7m?2դeK /Xpcl?,[?pѰYb?E- @NXp2 ҹVy3'g:j!FLKM"WZ7;l.^%O c5o əMDWJejۭAwRl߰\\_Du;>jL5+{9e91]Iɜ`WtyՔq$I)#иx-*bqd%YꞍRܦ~ѳAX&n(밙%$n8 a "X@ 9Y w^K.YzHNk6կbo_xJt4lFÓZIݐ?#@Xp a"Pe‚YOVضdIFMN*'o$7Z']dL.Stq~IՠFu)n\稁n/0nkL'; %b3h7R'tܤb IK|KFſ\4\j_;GQ%!=6je9uJFxک~AvK1L/&NTLJ('ͽI*6C,ef;<,kHs^bQ( @PX$̡[uikim2(@jԖ)K x{<~r:Kq˙MYb|يZԽ~LPyQI">̻M^wGȹ,.4Y֥m;swꙔa 1:&S䉌RP&Qv뎙<LrY p_ ;܍Tbkur~귾F @ ,Ώ#5 - ,UN%&ȋ  D,hXJ;$-U;{De2~JzF$]^Yza"X@ ,,@ , D,8-x a=xbۡTvQ)=ϐ`CX b!3%/whɰa|LyE( !,@%ϢىFWm~ aqe'me^Rŏ=ߡ ,@ĢpnΦdx#>_?8K;m;{ƶ?V??dJÛܯS7ڵ<{/ zR,||{`sӻ=7sW /}eNCyS6} WQ"2jūðފ곏 X`Ģ X*F`r`fk%[O놀~YIӘ|Do+*^^1`a/* _=bAEX--ZSt;bao;`esTʼ *`FȽ4;?t` X.V'@E XPXpMfa}apC-7oWXw]Mm<Wi_ jk}-<[ Rl $8/s,ήE*`b.8{i$ʧBI`qCOHU P)PE  YXtH9 je ƠL#"bٕ+?+1Cr]Cue̩Hr#  ,tK;yw^y  '3RrQ(h\b.pDUX\rNU1E FN=#d\)j )X#귌:t\ 5͢P_ ͱ~Ux0B\Rh}^3P[E8gv{vf>m9㦘isor#M1lǦIz`| 7\~_ rir!9/MnT6F/tWa=Un_ѻ7CcKS>.|ow7vA.p]o@S3Ԫl&{FCۚZ,'m̝c!ώ%l1oV0"- J UtXZJL7R6ꖃEQ9C{DRӬ#Y8vf}$GJvCEMw$31֗^3b!6ؾ z8e/Љz_<[LzJi_:VuPkVX'cga D?:\= d` X 6Ki`Ц:A*ȍ>40`B~!X!BoAVCO'匦`@+ 18]Z&ksph}3eS_J$;tV0s0~=~+AAr ^ r^ C 3_<6sSe~ʶVҒʧ`ς=C9h P@``Di"5Ą{Ǘ'Ow91J,WRs;zT 諾E,A~w~Vw /dx]P*(m#8-:cHѕٚk+0ZknEJx=! ĮX>aF&L?,*ڌz$'{GCu,߸Շ#,M_^`N)e=1?p>3y3۴/Yb! X#Pl^kޜFb~Kdgw  )wK@ Bb0XAylPusl;ki& jn@ @6y\u$=I=(PyN RxT 9j!LLҿjm>J'hHÆϷ}Յ!o,"-]Sp#`lq!)]\>Ҧ&}C4#Z$b\$QE"{Sz IDAT~}"}9c}GW<|AB18{EE:|UPz<%>$O_Y'ay_7|ի;t5M,b!oK};>~lٽ"tcT\ \X6%"f_88C3jB@#/Z^ǟ&zm{&"9æt+ؾY1QQpD`ۺW 0(ªRp@GiF*CBjvbJR<{IJmpfTw=Eqbg8Vy R n2w NH&Fno(^sf G?Ba޶ìGu@7[#_N~;߾D~ӳhxы jXB,57bةa+"wM\m iS?M85g^e0ː= \ ׹G}yLyU+?GpgU JL' wLqM`5xP@B 77\݇W=dYtx\HJfK%,JG89fK:9(\j/EmQ?b_- XŢv0[`lI4!pBqPʨTG)yz( ^vOg;mR+=z2ZV~[C``% PRۚ~tc&.c{@$pz+  Ҝr(L68F]`{+6'أI&-4E;.,%TBӜмyʀ0DjЧ7bqxJtxeX,bQ;ٹ\}#@ *bVߥ؄\m'Iӿ%[F><}T᛫K:1[mNGj@]x-z.'_Wa6Fk׎tͫ ~&Ϥq|p2 T3nL4h١E7Ț鱥&:dJHp- =LuB x󪮰0 8,pl IТ yXJXeIȗ*ps:&HDs vc|.M,b!ZBA@ :bcPM(4ѧW)";Jl* hi.TapuXr@xTcKE+DPRW OhƘWi,-{c&J! mRܠ Rcy)Z2MrCz17IJXpQ'Ql4 bq߽~("C,b! @ E+Z)@z}wCmoK9̰l3sDw7$Jdiz(LH Ӆ^ @ f&$]13,▟Xjݢ٠xC& =pOr$)(!)1BR/˸pS3^hҐib!X,"XIEK.)Ͱ5v 8[nj2btY/ޙG/kjLA:9P~[xPlM=nyfH/[YVzLq~1]L6lt~3-P4/M}<|A)RJ!7e";*pu}];Y!X,b!?h@:XF.lJkݍʏ_0E8; ŅrR} B+Rh.QwThd*R0s>9>[9^="D [>Lep607-;̃{2_y05R.d1{A],c%oAP*aiR<,;B7 s:[ÅXb! XE,fuh:w-FJ|aR٢o*?>$Phܱ#,DSΤ9ZzޱVz1*E+},i\,>B!kOjtv]mk?T,H,b1GxfG_}Anud_ǴX|팳Xx,=+5U7CbQŨP(Rc:gy3b]Qwo[%a\^/Ϝד+\jCt+vU99zĂĂĢXĪzzu5Dij=t,k",a-EdA+w9WU͞XX@ŢEMRSFUN&KXj}5:S.x{S5ЏyރEf#Fk3x]Qg5!rOl8Cu?[-yz# /}i"0_H,H,H,Zš?\ҚafߖW&H/YwFPN+s_Jt!RN,8-K^V3疤cu6E{WWk݋^p>Տwt!$wgbۥ^͒d6=7dkǙKG9%ɪH&("Gf+G"gb!ґ~~pTP6.+)1gÅf+NG5.WViJ,H,H,ZŖ7YUmwOЉt ƢW-B"^׭ةJS "iA,Z]3^sg[+ރX\s!XcŅOPLA,X%\ufXTϻ/T?jۉEp<.ܕHP,TK"B1IoHIZ,ttrl\_1eɵ XXXY ⶘XQʉ^_Uw8>{lv/8N#.σbQnՒ{Uwl7#WmNkX$L ΍k xbS%U>ΔX|7GMb;@X4Կ$ލTXc7(Nk4TS>5?nkopĂĂĢXdcgZ~u*3SI Q(Jx[eWV7ROz:[0b4iNR \,f XK,RkI>TOvI_"T]|wo! #'E"Ţ=C+Dr 꼈Ov  b17~+ ijV9a}vPuaU]ŢyE],xR?:'oG=1g% cYαYw@,XlA1Mo\!yX\(XkSJiWcqGbgA,䅦oO)w':?XbAbAbB,..ƠY,f_OގPbѲF/%ו*=UĢ{vؕ #=h(Hbq 9S ~b񏪳[0 U/H,H,H,ZE?鱮nT Xq'%:ĢU-YG*jN3=X DcfbqX>(v,y9ߟX$UTx@,w;ϋdG,H,H,ZE &E '^,Bu"F蒟No38˟XTgK53mg(s o o h!NC98xg3dL5=Y9&iE,Bu6EK"i]?y}h:)}-sG꧑=?t+;m!Ip[r!ţ}WYuꕷY.TΞ%n<ϓͷ?2}otNϥlt6$!8لDͥ`pAr2 2i (/'9 LѮj{}תePC2uѯxSkd!, XxT&/,"7,ywv5}^XܝbG?[,X,vS/]j\qYV+@v`Q]kq@.J͍B1}`~D`c[~i7.<͙! ^7˪T챦jr=EX?5!`qVHam[ZyL>Վto-w?ٔ>t ~|f?Gh7KOв@E@?v=ͯDy+js] t,ځyB";PC9f]R6Q[U-ڂEpLE?#z IVW⚀k<,8J}?vhE UuӠ6D$8!Er^- n 6a8 'zܫYi{s`dwMJU |[>tCúyI 3TD`@n@?MŪ LXǡ։ݧW(;X${cqV7(ZԂk2/ͱgMV}#c- 2[eT"AN-{p/3X $o1"/$P7k|c|I"'iuoMh/23X3džY4Cվg ̈́;:-뛲YPnEKl_L?$p> XϤgXnB3)7˔>w2mB_{\`Z'`Gx[9,7 y)~ :'5F[8>_aR=y;׽PWx!DۢG=p?>gL %H NMĂaA>ȫS,`X4ԛ=Ek?&d7zu,,O˶`QPG^@o$=͒|BJ=8c[/fY,I7@u#~!`ECΓ3=+3;1yǯ$a/=95 XcP;ڡEU7xV[6O>1*zBp6`Oz-S5 :_k +!j My`h#+^}q,RSSS38" F,l/sQQ0ZXo?t,o : i5!7 _ B8@p7נoPA/R. ,Urw`Q:W?XHNrQ(h^f"! Z/ *yH~7:o6_Sk~ t,n|Ydt*RWEg 5< WRqX   t,Pg3xAJ#r,>,[mGOe1&k-CS,2B6-[h͢PC7.V.WrB j(hrdSxk7|=BŌ)`Cź}[Ϫ67j`- Y0pjJ3,&AI(t,б@uP: U?oX~ }ge˷,dr>TF ,e!bIpD>U a`B t,PwOn !/xY/+o_g[yk`8죋^bCU*x;, V!-n@βp=ip5B )߄2U :XczC3mHdd=`!A4.X~ExkhݒU,*֔-W{X@Eі(Bc2{\2ᣞmH߲f jX(t,б@J#L IDATutj[ +sȂg6,`3)k |JpbrP-,Rl@"$X}S.}ѬXα{spV&˖]&jYvr V+ $H,&.Otf h\_>Er ¢`$Y- xxb_=䗾.~  d4= xb@.Td@b@+xX @bp `K2?E/]I ~Hz? ) 9R,<|B#Y^hikUI@bXT"kݱtwMw[s} _{zB,1%zXp2oӤX_]bәX|ψXuJ/$Q3v4׶,_/#Yk?4Sh-}BNP$H,X<"bHJhVQ;Nc~LޡfpEwj[,tbxwgLO7{N@pmkh\ */L8YY!"Ej4|G,;i'ӕmP#H,X  iE*whdu.Sdn *tk|%2Ocn@pbwEG >Xl ʥJyqQbǓzXdz)='r'ŦeX0&bj3GfXx w|N $H,oϋB,L1{0ȣƍ!Ur@bqCbF.TZ_,.m|tjmi4X: ^,X W,HeB,VD U0Yo,>ϛZì×r DH].1X|bHKq) ??4J Ѯk0ٱqXx ?=-mO: L,X W,"iV^ݒ;"^zu"ޕWѬ-f5 j]\!,u;{=OtR D+3(}=)տW`P4\=  OQKjk1udybݚA#:QŁɎZH/!zX\GlVwLŲ{_[wnMi$}~L%E<`cPce DJc(Rnf_-^rHn/x{N@7qҷ%KLpYBg9_J^MWu)]Vv^`tLt-Z]Yd)yM=& 9Z n4(0!$QQ6RȈ=&ɲdGjQg/&ٝAX_x+V( +;1NF-a U$*haTEڕd{M]Ť=ٿYXRDX8kP#,%~iˮ-Ka츝sքŀ [*kKY􃵰'ϸ{|xvpZWG/[r IyM>ڪ8:8T}Ӄ֮/,OCڈ'o? R}j.O.5tӃiO±0 At bJaIdAqz8y+dէRկ0 隰`!]0;5fh(S 0)k7>O"| e*ހyv6Vl?{gƲ 2*>SZZ"]EQZ޴ڣ (R$&Whλ}qggfzn3yǘlZ:>t6s-ŢiJ%'`ڭ*,_M/_,Zq9)I5]$H |eLD-@dS @ І/i4 ѰmH,` cSDi&QF"!f4@49b;4<\b bAj}5Hϸq+GFI%<0n0|= R^NQ$a‡2G Gs_. 9I8+wop,rM:؃&% V#5ckqZ^ÃS^_ DЏ? b8VZzuD?Uq;GK K8gN[9B.Fu+xm5[ca^4QuHs`FYIU^k,16qØkfہ'=m,l{[`,\kE܌c-`f޸vmKWȝ'knߑv #o DwFYR= yX||׹x'xc t}EUmf2-EnP5ltRa j)"{Pw~sB w~R} 1p},@i$pR^Zg,$%I& r#X$@s"XհB.br(eX+D=Ԧp ZjuT OdmDW 3xxraQEn)"$) Rd:H`!UA)i D`v6k,,.NPrµX,A5Xtt["xw]b;'^ƾG/J>Fh,lbA/Wybv1RW 7ya(Ftl"š6bȡ %G ൂQ=X@\8Mr>G!] IDATNߋ .Z 2ȏx`X7,轈(*-ub 3jeلe7yAVb<-]:7/ l,EnU` 'rBr{!Ew υkFz`Y^Zt @sL;W< b `1>k:iau$!ts2VEAgHOf¸YŰбkONM {& u+τt,FtA`H4Ă:F0퀛 šWXPr*8]oj9[,( [ r`q¦Ϸv `A>a8,BߌkM/>{W7eX't~-~mf{n`(|u'&N`!i,*(BF|{M7فec9oHߧ`2Ԓ'uRz&'d~C?R+u= y?_xW>z 69}7ƒN& 9{N²iZl=&B _$ EX $PX kXg MOv`љH\Z,\E`AGt7;[Z s6kb1xRagq8;kACd rob1)f8,+E-`!#2(Lʋk bqOyUX3 ` M(EԬ& T&ljaOKO)ql 9c`a܊X,KոyOs`qVV?weT-El8aRQ7 ;+WL _@lL?t-XEZ ,p 5j1Y<`A;p?%pbl:c(iY`wYy2μO8o=76[ާg|em t0 \PǰKBI;p kXaz"Pzk@} 9y5[ bM`I@7/Qݏj@j`"֨[ , Чx, D'DBb[ .Ʋ)X_2|e:[".9o XLGaƶ7BzOHUX3AYO(Et谂D `]%Juڔ,ͤqZc1:Xإ?J9;-XA,Ki%@]@n\ I R T8VV:y8sgڇVzL&ƶ'j8Pn2*}(m۝LŜg{ zߵJv  ?ﯗq*$߶s7RIE+O4nVpKy)B*X(CP/t`c'vX]s-sq |/cCp@, bI>M,o?84 2B[ѡdXcx]+I0gHB[|l'EXjeErMk hi4W9 =bXwn6Xt!r'Ak/xh;'׳yrME*Lf cINxnm ,^1h y\=*`rZk uw@1ƳL7hQjNU. {aܾB)|KC%-UPm,o 4wC5?<6r%[REa`THwfKuϙyoBű8z|< vc6U}h엁Kc]TN X]Z e*,ax)RbMIE`\E%2:2dt *5Nsh,+]2xH8l`/#:B2,e%Q.-3|!KdG$BDHcq@A X _|z3 ,z!J$ Ӑܔ m$b!J&a`Ѩ:2@-`aD[=VKkimQB ;r:]b]2O*D䪹 ߅֨fNfiOjeH)L0s&jպii,"wc]E[g0Ql Ã; Z~\́>ZqHL(D=t r_sY}kd+55`߂w9.=#(dGv'Z@:3> KM5{g?]DHcqU0*kCU 63xBH#XXw|x˦00Ybqy٠I4Le٩|Zz"=nR;rCQ xnO)>A=Ɋn& KX(),[j3@m4]vtm)M1Z2)"]ٙɤ=1C ,>WRFUBId!e#,{PlӣJ SkX.~t wL =l"^>v{dǯQQ {d 9"6t`!]d^ v(#7ҁy7XR4+25Dl >E/+ 1`!6U9N*zzO_BB_)XˢU.©~ .H4`az#!v֜_!,i66,a3d`aEq}iF8Gi=D7o:!dij [}e`m+P 1zȍJ3lW& NEwH*Nm'J~_9XXDHcq )Lw]eha)&%vz y2pЉK}Mߩk?=ۭ=36#1cIˤF{+R-2bv+.(Kyԏi-jwQn1CB=-iMaѓWR1ôNc+k;B; 8O6vR:>F\ a| d!/l5c/" &,c:ea31_ԧ2G,ŅTJyg ݶv DDſJa^.4HTC8==h܎_c/oFzem#zj1kp,X0c 8,,X`da# 8p,YXc Fp,X0c 8"=!ZPXc/]{b, 8""6 p,XBnw {rD Z Egh>)Sn Le~<@DA剆(x+nTv!,p,XQt:aaa1$~۹% , 8$:;!:<](b"BXa1@}YXtw&Uig!S E" ]BXXa!%g=;'}ja&8p,p·!, , ,< z§P%G9? L~s}J9Ǝ}E01czäpdщp&%zz]{sɰmy"ϔUĔ}#s,w*KD?HF\ŋ z.Pw5)ѷVNWX_Pp6ynb6h}™u8b?%fӌ0&.Z&[7V1gS*Ͷ{}Lb]yI܄ 8BT4"RU%^U7\SЗT5 Yݩ9HfzO ~ e1,Q(!V'™t'%~#9,kNb4]eNJ[hg% JRSӷMeUwLUTu[\~UJ9zWu"//_t^6<ԆtSQXGm(Z>U&RjVٱR=,,qTjdMh9=ɣ#o*le]%a b;{s;㭼NTJrSQ"a'iO?:–&Q ߤTgxs>k)YnlH=b&)-O'?e^Y1d &Vi־gKX\j&}gexSך.w v 8p, TҒT-DEܚtaZ3WoeLw&+r1l߷)uI_[2 blR+kDqx_8RD ]mV_U'Z_͝Vy(gaa@@\0@Ƌ֓"4/݇H K0|zp&jϵڻZWpKs{Or_.7T L|2xib|f3sn}Ե>Pa (WE 7MTY,J s2e&-Q7QvUwD,Ц%y3A{p)T(6yn, ·ZW: IDAT*,+n:ݨAc#C`"n&NٟY1P5EH9+TP.{ QBB`.?^̈EaJ :jNOgYեQbAZh Т%T>F1P7yE)rtB|Sǂ_m]d$aS$/䱞Q4[cy͞, /w W1CmYRMRNJErug4&@6]Ńã߮ ,o5Ó|{ofkBpyqb:I3a1( 2]e;i)JaXX?>/2T+{,|iE\=;@٥BR&{OU2Y`[W '|3bA n bl>@)'ܮ',"‹45>c2-*+ '7`F¨s@2uI#rRΔXX&+up1e2*'QBZh Т%\(XUL,Q&f,j=냈j3g[*(=q@AO ˆ V7o%8summ -.,#VRMEɣB hNf[Œ&Iezk`.jbx%k姯;I666>G?5Wm|6^o?R%y)g8NLT\@9e?K@LnP7Xɪr^TamOɹN|'r֢EX舅-TĢ/iQ,@P `tRNWi?T=怱Y/o%tC]ƀ4$sLYSQy xB i!L_/kXoRar &lqzXUct6wp#4U5Neg!:z{[O=(eD*b\͢#BTM֕Ă5B@SZ&vG֕-9 QJ 景DFs?"dz+$ J9bq^ak .{{`op•\,9Yߌok1p%nx|ǼX 4oD -:b#Xp=i@,ukb!w EWM3+f(ݵ)W=5K,f_;o&rM}2O.~E]eC*wZ+]*1̢ID]Ģ_0 pO达`>y"q.ЊPb:]Um;.1 koXF/(\\$(y'6K,&"g79 1av{\| I'+\4eVp9Y)gB,2ܚ)D(qE=$azHlQr cNpC cX8X $8& 0YD!?1[V^SuW֮^<Ҭu=vb)`bzt8Xq 3i,xLCFF`_?,R7% <}A 2{2@3Fohb''XЈP~욿\q-Ϲy+\Ͽ&nX=:#~cG29* r#X j :`+#X4ECŹYa]d= lI` \7#Rey<a:bvҊeJF`1@7d){x-,q" X쁅<BL,bl XyNfA`qeհ`Qw\edrP}^#Ő`flBX-uPI,}P=O0$Ђ6  AxmS ߅Wi_qbb͵p!1*ԠG8ΒX`U%'e4,ڠmה,.`aۀ !8_,mX=8-8TbbV>PdGX=}`TVlsj O -΍ 5.Xy&>5F} w Zܦ&\f5!:K䥯wfb\%=3-# -c!cC&ÁSdcݯuʭ"C9{\"otԲX r^Pf$;n|yqz[:ЍLQ 1SD:Koނ]k5; @2oo`1#dĚ917"ծJ(mUE[P ⧢uutWmbp/U=n1\$eD:V᧊P"p٪ɭ`QQU<.}$w?iD~O3Fh݊g[x cq1Kܢ~]Dk)XLck1T f6kNb\U{,ILG 0[@<)X<+"S!YTʰ֨ lOoX zi--FxCD~o" !ut<=e]\mz/y cqgǷЩX(q\@X)@x'۴_jEdKq"ϙst^QSCsr;<ޟܟgWdx`6?nT$T^Zj ꍜ%4l"q^s֧I׋zm53V:= ٛ0iG B5  @|M[IJ;~z]Ft=#7@{(8\Ar]g ¿|?}A\< !^a\5drPv WF9Gvvnu,0}Pų2Sh47S鬊9.Q;s@,,V7X0"s h/׎;el,@ l>$c\?l\ODs}&U;3 B (=ʠH<kZ^x\FtzX'+dCDk%S_vKA_ThW} 9@gO$P'((AB¡`aᖧx] ڿL$X@\fυMriSt{3e4Q0 UoՄz"0T`$Q<~LmN$5 ɛ6!/y cwEOi\EHqH1E*I,bk,3=M,Ux}w&mBiWף&X O"M#=1D,g*9b6qkp揌mrl%:DPK7,Xln$u,,kCX gGueXP[A~ZM!>|P̨WcaO|`6TH;p 5n08  nmn-~vM YcL3]d 09tPJn`ᚕXKA ]+anIƸHmen}5 ]M4z>%]}qc{Wc}d,yhm Y➁Fe}/t `a8NqHϧlԥr2a +p >b@o^bP{ 2PΩ2aؕL6-< =籸K`gH H""q8i;c:b7uTxnR>d'mjgЃjS,=|XЁ.LOY~lk]Vq/Q(fHDo  GK#LˬY0\u\+dfW-8G;ˍ` }٤y;`#5ϗ1% ža5-MMŞ2]xT탅Gn7{הG5APQ*U'uŔġu:u(Wsnrƫw9y$ ([p]ݖ7e=yֻumfw]a;(4v'<w,,^N_b/4¨\^˪.y wzW!uqߏE}PJ3_&&jַA+&z 6E 'vFgxm′aUS: S#,ܿ g>yv w\T`} Y bH,5|IX۴aHNjT|cׄȅZĐ]>p,X O4[ a'napDeE>MK">`o/^m4`r\R._'E68LsAL%C nxF!['œ'PoRg:eeg_Cz ^UoHƓT0Y|/Fg#Dtx*{}0wN3Il vǑ&K rXӑEbvѠ5p%}bH9sRB8Yh?t+_M*G 9PKd,vVBXf6_(D~ a1Bql}WrY> J(w|Eb їw=m3Ya(iӤpi41Đr&)Q荈ZtZ! ijӞ8/=sΙ3̙1sOGG,e/C,DV%JHX%A!&N#Й5$3΢#%ENo~wI,2Fz<6 ;Cgb^K!WTjO,$q_}HEZwRb!}`{u$1zO,c d*bDw'*c2JvL m-B Bv>9bgY D\CB :!WN5`B 9Kb A/wtoB2o*zKi:0٧j)ڬM-M+3:2xo&%6Fnv'$AvHAA/v?hF^`Q-bbԴzg(`h]T[iRx@h޳FOP]1ʱ蔠{bOdXD $!د!U #WB{<'C]0fb pu\`~ K1ezLy!n7#ï>󞎛ؤ.hyҗ׵.}i)M!*zzٞac?\t\Td;Pr^z"ڨI{$^EZo8#$=;2!Cҿ$^|ҠZX᷅;؍X@p}úVL&D?#B{ P %J4m&嬽ϒ}^[@h$A1$篮'D{osEG4EO⪃Xc3f_Y1ݺ'jiK`E*Q2*cDɽʀFԎ-kmˢkR&ë L'Zq-YE[b,:hB'50G͵3<0͉׭fPȭ[x >l[9$0:ӢCլҋp@Y[deLl ՕAQfGRz`RqXEHYZE4eY[i@<?ᵽgkor2YXThنAhCx[ZlbY~~'cP:̃&a}C֏H6vr%RHwX}N4'%{Tfj OD"^I\1xkmmXOXVjtT,0h { 2hf{y 뫷<2'U 9!(+Yk<]hb <=8:wm֔G ॲ1Rb, mJi/` t3BP %J-]u8Z/.B8&ȶtp J,z [4Y N90l4Eg/mز~mў7N,t{ɧvog6u( l̟.x!*_-J!財ˊnv ޯ~mW (xݳǂUݿF QƂH1'E,:ͧcRhC.ƱYA~'3B(T#_Zچ,HoU$`SE,|Vl)')k)݉^sb8s5n_=^^ I8a/%r`ˌXXw;6b}^p <φf&k 8t Xh=;bQDe,TB %2Hp5FT;!C@t&A,|msIF,J}F pЁX(s;D- !- 椇Xlib[(O`M =ЯVk^,;PFbяQܹO^b}n8L (N:bX,q|4'H/$f>P:NN!s5qk.1-8xpb:Zp%'0$OZ9/$e-fd O)ᬽHH}P3OoXֶ?-VZMk,G5]b-#c/FSxO඀H:ƔƀoI,,j PDe,TB{%[|!*G7Mj7A, "k1!=76WzXp`qʦVe e=_K5J,^pf ޖy0*7VuǫǏ F(dߧFfc{6씇Z`P~3.3Aƪ50$9sMc&nj>FrU@b5G,rD 1^`7@W*OzRxᛷjs{a@6jsic+|rh &L9(% (DATJ\q^Om{=>L&Be_T}ev:s`XVe&Bk("±PǘL1Ŕx`aV,̊)Ou:S<|ϗX8X $ip&0o>:S5M*8}rCen@iIL'e<F%Xy7:#vFK6h+L #bA6n&…trEJI~`Az@VƀEbK>ߔ0X0EДep,TM܋6 lXɥ+#@ڞE[E5vx7Z` u wFhQc4XΑ~#Tp9U:B?$ /45  mp!Źuf~nļ(53ӁJB.K`ea,fC~-Hc˶a[a?$qlZg{ ۆ`f(8+ka "`,؇5`ѧg2X첞DB V6>Dev#P(]mvpnfɥ+#N' k)X|^wB0k=>@:n7)e+~O[v=5$wsIdRKo^4co baV,Zycwl')[֒:hScXiDΣl a0>Q*MEfB+\Hs;ApB@&r tzed`񃵓,4CYIj= 4P:؇,0XhkpM.^u%]=W2zܹߤW#>@:nurpMŠZy`r}`aV,̊T¡脥Uڑ+ă9T6@w4bb@]*;,b&6λT4XlҜ6x`AfB唬ޒWc@M~"Q#`F.M@GK`_t4X,4덿x ̈́6Vvw{L7:M`=] "=] XThIbsk”}tH ms mmu4b+'olρ.pv8`/${|-L9YS7X@zc7? X\)cDĄ`qQpi¬Xgrr,ZZE5E^Hs(}2{k~w$EC9RZ)lAXXxdE;1+R: 5(O\,1Oɴ9T.e<fpL\NHG~`/mϑtۄ` :h@_չLlcم4䒋c| gߥ 6q{,k??qz6,|Hs| ~9|MmVt@Nֆ<}@:ҕ X3lϟ}Aϊ"b 8.sZ*_ b$B@0.˓cB|Gf¬XT(/C]Wy߇#4΁gKut 0eWQp%`VOGzw5ؘHuIʰ)H ;M_]|6~fb. r .ʡ`l3r}HN. ffzH]Q\XB??$5җ8t}t~HY?Y: ȶZ+D僅6d& *&Lbklσ+j~-pH@io ;h1˯Q`ko;,}@:衇msAS>˱scxQb1|B baV,sXL`ҼR`!Y 4yoI\KN-Oe`ܡ5X`1}|gG [RzA~tQ( %~#X?^=!=d&/Yj EHj^qj#?ܠ}1<=Z.3,aL}cAvV|J5e`Rɓht/@cc0HMSu$vPD3O%90b,}i ?;>}ps3# f}M(:*[6=MYr띥e*֙I7nK@$jKs6߃kk:iZ}vMiZ k;v*"}ōغ!瘜ܳ[X$.XmŇ{XT`}SFXjܣ^>΅ )D:}}y,#I1?`nz_U;2O/ݴ]pblO#}^'8ĹXD"4Jcեڝ3uD;䪽4c]VzfۑH_FbTZRβ>~ʭc]fuU,-w3,&Ev*PnoGqGz,hD갾ōX|,H@* ]V6XGy,&BX?s'OS!i^A*|bVkD+ÞʎU'6?v.zj2?ݳػ|m@z,Ԏ~omU3?Z:؋R:ҠJzR)قS*u F*E'6he[,lB4aB19=)zFPף`qw)}o/*6>YѢurMA@*Lf0׷ZMᒌԡ|xY5⟣X9Y*> T'⪽#{3 IDATɵ;[ ,B9 wl+9*E\6}5S.%/XHT,Eiק&>F@z, N/\r)|&!E:#mAR/"%BfM:b͂ENܵBP,,B 4AÓOWC)LPJɊ;ښP?ٯZ':(Mϫi5>G-[2k˶cl&m[^ :sAF,68gY*n~ jp,E7d&@ŀIiɿyQԜ1!ʷM%5߫Ǿǎjky{l8vv]ְKP,Z>b `jӉl΀Jؕ WlAK_]y`󞝑᜴sd'r ,vx{,F NZW)^ +ĴOvv ǀe,X] G`ц~J ,c=lCN;XmgX2^puI,E|Z @P,L]?Kw[3+ORn, |776wu"Hk4jt*nG(Yʍ۽<?*C\>A:M=@zĚs5~l`,I( @ŀb+rٸA7dǟ[]m9,֭m+ ,JD`Ad# w5?+}po*L3 6 zJ`'6,vS*[ ,Tw,oeEEfۤĨ`,Է},cIX +Q d6 UUE$IQWˬ: i!-LBMEŻMe'u|Z=2_f[~:X0Ӽg=eg3P(:Gl`K~T ,f+j 4͔<>6@z,B+]gp"P*8ZEK&[j* :r,$鰺Nؤ9]d1g1Bwhi wn ݍX}fW v@B"ڗ)[Ea[Ul/ X"dpPظ"D 24Y|]g0X;  XMH| B,F FtYXW`tca >AEfFD`xREmZ.CB ,ciس.XH;l2ŝ%j6cw7 BPq =1S<{%v}fCVݬOp@B"/iF@ٛᔌzy@z,'ғEXWhdq*  Ea Pdn!@٬9,ZѵYY/q1aDP(j`AJ4E6 Z*D76!|"TgXddq\wEl`$ɭb3cD+  ws,E_\:Q X"tp9J<`SA$YT:촡 E)A~vKKzw$86vLmWe)V4sqaBP( [hi8XIJJ?՘4](28 s/>GS|:0!atT skaqu6"X@^Hɜ"X=`Q喿 RmZ,L@[idA0 7MQcVcOdЊ+I~( B=sI &i>]m]a&9,1qlM,styLY" _ј+wᮼZS}J iuqPCO?Oˬ?XQ蹊f4Xt6KGz"z^BLSg-[2;y`AcAc3XA c,b:=Hq_aufg&E>GscQCJ:Hmsۧ{K|"x`ќXO/r/h^j[{g ޳,`a2CVm|F|a[EjDt=EcY}[S +X#/Wg=^xWg5R7L^euXәѓ*RwlKmȣ玔x7:XXX[pD?}QdA_Z q,h,h,#AH$,x$%)ϫ{g>X% @g8iuJt!5 ]Dk8C\{c"b:-oo#;݂E*T 44dĜ"ԝjf9"P7Iz1wildx,f2Yڸ crӼ{;Rin9O+R wĻ9q7{n;U̜zɲo\n`*}=5ۦe7iu}mknK&#Q^3{ƾ95k%O~~3˹$[ Xu$#֌(VQkU9uEQKpA,j,n5Vcj 3+ښn.{-ɖ<6mnK/;#3*lxf|G cLwd+ʟO6XƂTQ\ugkS󷶬U)5[)fǦ[`!;W [l$X47ԑ~[GIt ~*J C%)/>\Ş3g "Yo(jE:XJ#xcm4rjYjí`mxǎd6{.lv,'bd+":XUYl}"jR!yY\w:XdٮMA$AUHJ8JO"(?;,{ c^?ϱHR*jcI9"ov M}1#:"VԟjJiH ~~xmIyƂ9KTӅzN1*gF$X-,L=)`\Y{KVVBt SKw|GUpHѳ] >΄Þ%>{X\gˎ@,X .T=~?#P,h,h,8VQ3(ȪF4XIň^n > łȌmSx`q1ō|v,vEG^f"ؤFZւ"b)n;`q*RfpԎJy0,h,h,xV*x Wk^bjV,Xr`q&RS\9Gdp{O!{ ӽx j~hn`q+#  uOA44]LL'RԓSR\qz|I*;+XVByWcE(j'[$ @`aԏK:oFTj` ;`q) .,6XXXtseg>?+Bc(lYiPZ`Y/dܭ{k({_k9 3yUw a{HȴTˇa/U;tA]z*ŚA;)r8AQ]GR{n%n|k_YNJ3}ޛ!"k *xKV`ذwELX $P'8{rKQدZ~du /ߥkS"yL5i=Tj4^N0JEeu+o%Wrcqm/rQJką-3`aԍո(v,7XPb\E+zF6NK3U+)/yyȭ)UFԥPs+le+>Kt," })۹sK.ulNE_ל*|&om93@חp3byr_eǮ}K_M<$0R:`ѽ;S{z&G[7[kn;lu$u:Ȼ+LV-ުGvOy`dIEdWB-iVDXcK`ݽڧFZtENL 't% ],XPwWݧk規D zzs#=:WNsnJI{'Kɨ THyog%ȋ@g *T,]nn[7ńcB]Th6R 3V" /Տ WcӽY^{:$XPbx^IY0{FMR1$|GnEaN/$4qcU&C "YNaS *qe7 3E=YOKъDJ O;qڂtc_}]=dr,XPȥ7HՍ\rܜS~ğ% Z[Ŕ=x<>ۼ *T,]mG.p*}s5NǪsպMQb) @g#UH6RXϺD]ĶB믾N k"P(uw-:C`AłK=RSϬgz=q}ED~HСũ=xHj/;,XPTMfCV1Mk"v%n SɎt{ e6D*|KNPs *lӮJ ["ւȌm>QnDwHI(K')y `-`AONG+gؑKcE5FDOnȡ$U mZl^{\;IyctZbA89gUo&GL雋nu:;i.NdnَE*zlԺ;8Q:o^StHbAX"T<=9x^{rGF5/2ŕtfU唍~cC*C *@Z S(Rћ_|J]ċk?h\~X9m">wwcT*F: @ *T,`$ϹfPϫcYo 9}jqTֆȈqtY'`տ+?na^:#XPbErs?svp T,X@)*Ѕ >M˂ *}Z T,X+^0XPbܧS/ tabAOsK+ *@ `AłvbAh;XPb,XPT,Xm *T, *@ `Ał˞O9| ". S pm~pzu5Ix ЭR=+EVo?|Z%DF >XPbPJfk0// `Ałx^)fGDuH5h?To`1K"uW$w  *T,0eW-/[msx!š/澼H\-An>b*Fwo;mky/KPN9$Tm<$ 1)ĈF-(^!q~¹dhYqןntG5(xSh~WS^kck~jYpzbݯw7- |,QУ(YAqtSy_^Z^P8Tsl 44eE3Kz[U4ېF'wzDY|M]|ו}eV[+&1oRg"0CT0| q@ ;}dB=6ڈ jWٶjFъ9{l ] 44틜]yJH2q"ޤ:O~{:RmI*ߖjGBGx^}5YHq+rv+vliH ߟפ6])MMsCF#L"KS8I5 PbXuMQQ+L/35"-۝c>B dSR~ԱX\eQ\8 RK[a֥е`AcAczےb9^boᏎ`/r-2Qa,>="n7>f3ѱP"i 2Cv8X;eg_us%U ƶ lIi;GC~6:@M=t-XXXw1GɋW`&qLbCy=PS -yyX7z;ykJދ`9M f-&W&U&ŭƂ\=yサ,쾾;`b*~Xw_7L R`n$H^ `QzغW0B-ۃZiM*u>}B% ᵗEhPEq V IDAT>,reR)fڽ6n G"XlkƂQDgŕRoW`1`O{j ai5\sY1`Ha6D|(:׫QJ|K)om/kƂ{U'NB{E"-q M`M7aV(e5yW8R!%bwWN-Xw~It-XXXw&b's=-|,ZQ~.+bs٨{?i; !Q6Xsxq{E"Qy^t?XXX,TCs;_Ϲ&X H3שGÉᒔS7%;.,I`̵`%/A,=ٺvUMT%0ϫɅ"@4н`AcAczݲH8FwmdH%OLXٞWk"C*ԎHsR7x}X8Rm{<'"K7 Q>&gzM>s 7Ԕs`(k}GyI}6+ʶ 5/5M ޳5t-XXXW]w|'s^9:5:_mD3|̑I'E]3"㛃Ŕ^vd]Oɚ{zx}`D]/Pa{Ǒ]BR`[^Ɔ`7gNupS{^κ{4Hɼ#Z}?yAxޏw_s9#dbb-0kRYVoo'*NP;:n%^<5X(uPrĩTsl ] 44olcv8dfm{L=0OϽlϤ*nwap?Ř̇' ;.7xKS߲b,h,h,Ϭx`w܏txѝ/o!   mƂJ \   ƂMF}/,h,h,@~h,h,W,~44 , Ƃ X@h,h,`   , Ƃ X@h,h,`   , Ƃ X@h,h,`   , Ƃ X@h,h,`   , Ƃ X@h,h,==~1~ Co@h,h,XlXXXX"׃l}NK/T&COB VŮѐ:/buP)eɐ"cƵʈbavs'vH,v&-齳Xܪ+Rr"X,qS,6 uwXXX\,I/w'7dHylW:{T$bG,בX,2pDrbI1bP%Ă`(6{!:^^$G+ۦDU¨Z4T$X|UxypcR|XX Q,"x[" i"C7B,;[ƹ5x׬k/jԅt%OumZ~qc?ԍZg4PiFܙz~6o-Z+uM20b jzqbtx6RUfN]/%Ţ@oau*O @,!z׾igo^n’V);bXvb{{,wuFωR,X,2E ĂY,R2MbQ(l/ q*SWōH`Ă(羿݋IG[/՟n?a}o] ?{^ -_$q7"W[/<}q뭫WFlvǫ= @,.0U_"n;ys0s,F×b@bAbX,iIPE8X]V,FǒBg턝i}s['Eg}WSFkܗ3uq   "+Rr,Ldw/j1ĂߝuW!4-4}sbQnT 2L,Nfe6I,Jݡ۟oYmwٴOEӵA? fV2.-e N4-~@f`kUsLZcgS wk]*H8˘@ )\?8U`,äd,e6i cA.e~Aoۺْ,;䄙xsemiSz-XXXUtOqr aLkKK,MyMŢbx^9B,Zэ3cףөFv mPDؓ5|[(@~LW xdUo+KF<_>CfXXXX|8"'bqCq0ضMcb]{F,T'Pҷ3%Ϫb1pdhOjo2޾-=nHDLصP}]; bPt4R,V(? A{C;[EI L"}1Ă`'IΖJ^Gi;$xjƅMm'Ѫ۞ B&f|IՀh ?5.SMEj5Ԏ4X7 %-iJpKXr]+37a$,Xk1Ă`'b"^֡&b%"YJq}v$̚AX S]U XqRQS9Gk b)>$MQ7EG:f:*+ bmprK%e +b?m.>iQ,<:HTHg8e?Et7Z8%*V$b2$zϓʼnʮuZ%̆4_ {N  _vB_T֋I<,YZS,z_d6m<#tb1e],Dܤ"WJ,J%   ]k6@Q,Be8U }wOI2],2I,m!c+iP%RL/Ă/Bbf[0U&_0XsPDɄ^j^.bm/JL,J%t%@,H,H,08EOFƭW/"UX;no'Jj?gX<ߞX J_@XKJq@,H,H,d0m &ג<T,oU (T?oAc<>J[t.uF,ŊLn7E~F(rʕb@bAb+bvFW$Qq["tIkݔL,? dhV (TJ4:*Y|*3N,eX <€x_zXKZv!r94cNiOzH=e0cG.(x߸jgϽҭ[q ʀoךP(8SHJ"LOx/b.2M~xCOxkyX U.)JT%b@bAbba B'Fm܋~_I6Uj;gb? AKqzr8ɫ^} ;.|[ ]V2l~&_w^wr@mE,PBZkN7]8{sG,KjbaE5H/[Z})eX'эx=بՒPB+ Ă`0Ż/_ۃZ'ϭY|-FGFԿ?_/~iqwtRgᚊ%5B9+qM/XXXXrb9ׁ_5SVT $$?<$|:^bU/Wb@bAbX,3ϲ'[b@bAbX4ljEͷMaĂh|`ߨ $$ $$b@bAbX $$b@bAbXb@bAbX $$b@bAbX $$ $$GayUl $$K,mn#e:Fc;V+o"ӂYGXXX|&$/nj>?m+U#\inyjxEoGyƒ&~'P`˿&6b<5m紶mK_,?ĂX}aq gyMD= n _.YbW:?  $$F,\OpWMDWfƻBz'.I( 4b_Qjڷ gCG=Y XXXbeY} ,kdY&;,?qԡn֝Tem?m,0N.n2nwt~lY?#^lʳсڲۏˎ$<(g89_{_k_xcc9o.lvW?F;Kz-hD(BH?XXXb˒ɽ6)-Zމ{rS ^;i| skD풬~GǞXme?{Λ8Q%DD)SP;*RbIGddi@@t) /@.N&dyVl Miz8Tt՛$=8hZ/J,xܿtoշE| vtZˬh[W%{p8X2"Uàk7 6zWv7^2@,H,H,Q,isyI~ӛu%+|C{J,Z靏'5 "g> u:p4JM*2\='_nBZ/kzjH'Dim<Ă`_Ţ0yuS7-퍾yl^]akrkXeco~R]ngjUմ]U>b8XXX|CvH%n뙍rx2,Մ#j7'a=   %ط~qGe=uԕ<5(XXX oyKlg0үHUzf%S;E \Ăc\pu~ה]nfQ.Lex;Vo XXX L҆f䒅~]fU XXX [M5J[]Q    @,       @,    @, @,    @,`Wg% h߯qW}_{$H,H,H,k*Yͼ@dW`8 ^XIO߫q!~}_{$H,H,H,kNF2x}n+1K_//+>+3ްy˗rp]M@,H,H,x1||k7ׯ~X82ɼH-Qi_Ai   G,nDj2k>~c.eWr $:/ wO%Ի^WG냖t߮I_%ȿe˨v^?NI^N,Z~ow}irE|Xho$Ă ˷^J,n>٩g~YЖ6Jto\'tȈ   ĢH0o0g'Wi6 M"~ƶ*ɪb]spuRahӱ:pݤJg93˙Β>\^M#f&rjmei:T IM||l4,Y}:t^4* 㨹r >t_I/-Z/s/98S Mۣ{ƴXXX B`!(dz doDsJ_oъYhzƎ~ AϨ"?5yyuĢO`=ȕAOO bg7&=ĸ]x2i'b!}O|wd({S*Ţ9 ^7b15[baٞvv7.nb'tQ{9[X,. fX,[]KO2sL<O30[\\9b[㠤a$W-S[tdž/^Fb׻qDsb+iO}%:=- $$E}F#: 2~*2P/Wn6Ug^X4.^]-J:b!z.)XN?n."N]U;Zz_^uE|[jצ >yy{&Mkz2B_ O &x芛Ѽ₭'jM5͜XK_r<@,H,H,JHH|n!D,z/27&qxЫZ48܋ϓHs΋/~Ebѓٓ3%,d}5Fq-UV,5P5O:X,Gpkp4u=KtN,"ʉE   R,^Y4ůW^H,b>'oً(ƒQGK"twvK* X$URdX'+ qbrsM-sXUG)wOv $$X|OWuz0ĩ|awٝ. 3'gQM⣈ (UIX,E⳨2xBb1ItܮD,9,wIb+j{M/|Xl( @,*Bq%~3 \O JJH,^搦' JbP\!p2z{Z`碚Lba|yXܦ|XTXXX bI5W ғl)O,tQ,J@ l.=e%5 JbVl7$ ^Ec1QF3ʴ&r5' (Ŧ   ĢJ,VkloGbIpb,ɝ#F{^,0D,← E.(ܖ-S|ۇ/ b Io81L;ubq%*N*CXIafw_TPfXzbޚfjj~{X z#\/OE   R,SfCoEbђxjݭ2wdP7C|x]WyI%E' evS|wT,nŋlZp"_9-- $$bzY'o _g$ Wָ"2XQ#Ar %1 %E۔OZ [$@|ӱ-]!TCÊbqg$eO|-S`2]KUUI;ĂxX4uMeop[]܀~X Sެ% [J]M1֖m$H,H,H,xvћ"䨗~TC2ؾ ⽢ t~ig5.7j=߲?X Y- x]Gu?_c{mW@,H,H, ĂĂ@,H,H, Ă@,H,H, @,H,H, Ă@,H,H,7ņbmU_^pbոW> ^mUzP󚟰@,H,H,'qh {2ʗc7X}@,H,H, ǎ|xbm:3MvqS֍?/X|ʥ݋N @,"##XZ%n} 2}?w!i{bQX<2yP,hH @, ]ׯu<2 K]XszS.{NjWo𨂈7m ?*jjfX\&s?*ݭd'9= f?J#T!rNGt6#& sM*Z,. b@bAbX|3"mץiW#;mdr~,·kuzM^R۵_W}`Pv:f/v.T[;Y+ZvTgug#n$]W)֋ź^^%) $$^Re- 6(s,c0'M,V{K?JT艼Eb !q3Q[ s,i*1Ԥ~`n[܍Æ[?q##e:hɉqY{"Ă[zxªPJ^0Z"? c8/5b@, ìu#X](U{7;0L7,e'"!S, eW=5^,   /P"IHw uϕUY!ɳXC0RUbўLgSQ @,H,H, ";pwRO{_Xch_!W6'tBbXbb6fXSybqmx)ba9^jp]bqtP^F,H,H, @,uEO)b,`pU>K,UF,Dz&2 ƫOnX$vPbX8/}.C)].bq=P,- 3],KǞLfcۉŎB $$_,[3ދ]N";:(2;!eUvk#IbXXX !f?_9ūz%. ~^bQwrQ,ړd5}+\/Rb 'F   b9)J/oG"es _:[CΝa^f<ǢДH"sM'otc#(]V;(y?d<Ǣ{WgJ( %) $$b-4Xpԛ&w]Qc.X b+hJB=;=- ,i{bb!aD%zX%+һntpxؐva: XXX Ӌ<QE?{Sݤ3n3b`jjAm.v $$ĂĂ@,H,H, Ă@,H,H, @,H,H, Ă@,H,H, Ă|((N/o K(Qew~3~go.bxe_w6-k~ {x]v'gx>>XXX YQ~-(j~(rN,V_j.~Q @,~FG X\xoەM²XFq#dn+آc%N+"y47ٿe,.r.X q].W.bq,%nE]yl׫X~uɿцmKX,6G 7tv0t_;U$M=XZmwX|+K4hfWbM@,H,H,|~k8Ro#n6 uxns%1?㋄~beu̓+wz¼3OJE XX Xvnwb G"8OϹ_%.E*vzb麄  b?gѲ&Of]kk5ր uhyqo{An۞ݮdۊu5$!Q$8kk!Ooe&STvj~b#^) Mx= Ԧ'ׯM,>LN*#2O۞3ŜZ dbXXX ̕$L̸I^-/NRjCmDNM? h|mŢoFLPM<یĢnF,57/.JH4`r>z1 N|U gznꗒ!\(Hbeer8@,H,H,O氪 aͶ#5uW3HH XJg#.qM*kgۊEN¶qJ`Rhii$[j+;# 3^p1+Amh7DH0L &%sٿ`p*THrh: :~H7pԳ_t^+X|>^мȠ,~rvӉMP=RI7uU,YOT$ g!_&+߲_ h,4 XA5 GJ\ jT!duC]˟~ƢZ`l2C<+hT"Amc_Y`D+n%:Y_Vyi{,1 h,4 XǬl#4*w^=|z~6GQ%".!Z'2zj[eV<ۃ=k:tAOݾ~`Qퟏ]t'~G٠Ic ۤNf87*}%E7 0UnN y#XX``ܟf6]yJo,z{~|aM0JYk}]~".ɼLUq7j,bo ?r6J$XX`tQ9 Plapi-ZmWegb]ٜ83`-_'X,ɼLt*R/8 ͻ= ` Ik)` ,IayYZD٭zZ.X/*eytHhb}*]dw"XּLF6g-]$X4k` K,O.u^ d1Ez!y.AO=׼+Amydk5ơ7 1lmCue)cq 9l`!XBcb|,\_(΅V^3:`>ѻ al1~ C's3j8; 7'shwwm~b^ĠWwwW^X܆ o]Tkw+nj!z?WN>P` ,ay+Wk}h,RoӍ,X֓skː >M9JQKBܿh, =X? t\4!7>}:YS3,~W, Xh,@X*[_~"e;,`쩘 G!Agw>m:/ / O^z̬mvSάM]-IJVBT^% ؋Pۜ,T}5j% >/?,$=ɣ [,@cD=>qb<q/[I!Xl5NB/B,7k[㸹d ڃnqR!x}"<%a"XBcS}<'NWՏ߯`;f\_g-]vuf1`Qxml]4Rϋ` Lu~_O$ yQjQՃ>čk_p&Iza[?=ƕ|bT"XBc?U?mz~w~y] 󋍊  Xh,@^-  Xh,@,@c@  Xh,@,@c@ 4 ,,@c@ 4 , Xh,@@~"XnWO]]YDh,4 Y*g!?q G֖U`Bc@&;ڧA[Eh,4 '' 6XFh,4 'ŋ XBc|@ 4 , Xh,@,@c4 , Xh,@,@c@  Xh,@,@c@ 4 ,,@c@ 4 , Xh,@@ 4 , Xh,@,@c4 , Xh,@,@c@  Xh,@,@c@ 4 ,,@c@ 4 , Xh,@@wwUyW5&&i7dظvNMJY,[iKci@H\6ƫz!W\x?39=-]:i{1iϙ0,@P,0,@P,0,@P,BBB X(((_o?aP, ÂF9! X( [vbXs BBP,P, =, j BBP,P, =, j BBP,P, =,PIOkE,^zڲȆśz{8PzRHb)Y(aR,]v_T,vb(lf>,+^*wUI1,\jgz+T_5, =հؽ;lWb ^P, =, j BBP,P, =, j BBP,P, =, j BBP,P, =, j BBHŢ_bUohW,ưXU, 60, j BBP,P, =, j BBP,o-X,^W, BBP,P, =, ^vBP, sV%?F,9aєbF>,_,:❽{? ztLn,Dt*])}eY],⍭1,:Ţ,}bQ ł1ݻlZ/Yc)f jklnֹf P쩊rWt/oaX7 F4hO"~gbqquRizC_E<&{.WWz(EurXXS,ذP, #:maq|V6 fώfa1щ{_.S1>Pĝ|7{1jN^ȶhZ-4cX(dq<);<-'?fqsťZ8q+=_vQ(hXU,vbbۛ-3,΢XZ], f4Zy,ߵcű6y:-QbH|X~#,B@EwbE,:bwˢb&PA+]Flh\S; eػ*}eY)VE+6XU"7,h-)Z#GkG\|tfb;G">XWd"p|ć酯#?̷G=g3,âEQ,za#/yrBղcu<K:/5{9}⋩ڳs塾8^2R~t1E[X~xkǓŢC4h#<1S|bV>-.,^8qj=6[}SPWc|^Gs:АaQ~bb>,bŢ,? =7ӁW=m |ݺ?w쳑N"4eXt. dȇzb BS,Y{wőq"/PY O3; CD4fڙSUzQ;_ʕKc|cKlckb+z,\co]X h,; KE?S5XC4E8c qV XU,mX5} Yx5ۮOo4bT{x7B9`4v-dh* "XM]c5Ycѷ`rcB &i-),&Ŷ=- -X,3Xb34~-dBcfpBi, BPC?dZ|)T8ye)Nokx@`BkErƢ'b)b+n,4]Eb=K `No,R~x;,Ÿ޵! 6X3Qc5 kzcQsb44f?<4k `Y$kvvm[Y46bjrEvx*,bv5BPB o m`. g,j]߹`, , NŒX ԥPhl˅X Z m)X]xh-ԖjJ*4fvvSob=m~ 5* .XLP[W}4X] ! 0,~7E,jȂ YȥP ,3 imE5baEvxb- f-ԩim0K3n)T,z,/Ņj\ 必6'm"XwR|)T/E}BY e,CP]J6`;fMcQimEy-Y UmX8+R,V֬"XE>baBnj,`?HxgJ8,vȂ y,X4Xtb+W< Eg#vmEdH7[7d YTOh,ղY[XЃbeaxd"4P<^1Xt/XB'Cϳ! ` a'Ԯ-,Lc\^pʗP  ,P< L?Y # vBV&W`qa* "X۳~'5ECuC% SYgǷSp:n߼ys6ϟ^^^g毙>|t5qfl9Ǖw ^ů:$=GէُO//ogf?\_Fp2 %X(#vE-jź bޒ{̍p:\qs3o\aEU' wh`X৷Ww )BT1&Uc 6W犽*W Ir"Xf#/g6Xe?8Xlxz[Bd!*QYĝyiiqz_o IYŊyuW&*,Ia #,  ,NP)*XT6Xs,d!vw@ TI G,\QsBVhp"~ u",) ,BeqUPrBt>Z[|C4 ѿw'm+KBNX;ėPMu.X!'a_~v",ܷPByk1΃E}?J (BH느+|_q&,N(0W,}vCb,oܐE\Y\P7C%cIic;j.8 VغB&hnŞ+,JE2b BX"J2Xd gmuIȓFZeEYB*^<7QX+BWU}ZXG,NmaQX6+geiP  ,|eoTgÔŨPY蝅(-D 0Q㼭uEW$iaqhFb*,Xt0X$ gWo^Ƿ!PYDSP: m;n-d7 qղ* v4`LXf8b!&_BXt)X,ҽPEj0OEYE.ܨŕ-{ɏҏmE r%TTXxzaQ3ݭ`](} ,my 1grŧh-xhScUVTB|E<`qNXLm}" U*bpe %X R*?r3T*,¶ڢIy|GhTVBZ_.XvZX#K&_Bf!ԏ KIhXY[fV{bBYOZBxA= -RBI]+ "K 6Z(v/T 9fYğCEi-BEbLbøQH,X"+E8aa EE8X$XR,le^:eܲ>ftdQm0;+/D )"䊳JaTXG,ֳ" t#XhۥoEXZD@u H,*,NBqaѝ`ZS*t" U,dqY![|\}Ä(*am)\[QŊ(Wd"U[XEݗP SIe~㈣Ql2q.# IPAwgz{zfws=:~!Bp3 nEыznX+Z)>5C;W^! XGIgR8++9YiYhQCO,>95&QHB PF֕P3NBXB,ee<' =,Z,w%ZS 0R#^+\{p!~¢k5O&'፳U3YѢT G/]$MTQB׊+d^Q ;HEt`bѹ>eXG"'hfFZ$W6FS-U Z̶\a"ZX~P;|Y(,ތ%P_bBAPj! ֥ (bV\q[NA^ՕPuNB}םnoQ,zBfY,B.2OZTºE 8l&R [Ey)WyŻ\ՂE5h]8B=Vfj(iC~a}_jB s+{۪W`1Ie9B %3 YH(B ^>[ۅF1E#'ORo*ZQruf™ENG,YDZnqE %s}?Vaj^ႅbb!njMjfaJ/-EzvjE%e <?'^ՊeȷA^qz\eUsP;ٟƒ0TYHEhEmY;o,lHb1xŐ+\ z"?5kB=*bN?/YPYB]-1wkTX"+"bxsz 5nخXv;Y緟¼fEzZZ,>\TbiH)lHbakEZW\.BzE,G"nXPUpWvfCE Ѽ[s [fTqB+CnW6Ess%d,"G4HvBw1Ø涴 /C\aWhY#`b; 5PBEA-Lb!k-D I(L *WyW^aB=bb3+Q03Y B0BE~(Z$zΔ vfYTb0sCF(,^X''Pnfqw0(BUEC,:6m$>VfSuPA?Xɢq430BZH("E1 %-ŝU$UX!Auf_":U9" gr(SR-+^^?0WfȄ*d-^*W렆55XX$7Ehf_բ-T1A5VM)<_+ۊ+Һ+Κ^ ]b1ŘY B EZZj!""(`j/9\ *x/ WWxbgbѾr`a(=P6-jE6\Xhba[ U+ʺBr#+bA)Wn^,eqPb,P~hEZ4BEF-`ЈUXjE+}P~_,zb bj'r30Zej̢dexW{]4,`RLUXjE+W砂 ̍P? en˜/,LC -LPBZp ؖ;DhPB}ix$W+m,~{r{bѺrvY<­}(Кv8*Э"]1[j~W4bٽ,Pf(,D\-l!nqiʅtGtӚwJ*dzUXkUx sj7,&}x,ʂ>hn*GN Q-LWU3I-%SwD*̴Bje^{ ;OX.,W,Pj(,h:lQK.^)ߢF'J(VqlR+\Aukv(GN$[n!BE/e` q IU\B5znĢoՀ[5 s9T-JPk -..IN-+|sE +pU+=̷gE{g1 -h᪅[AE/’*HFQBV\WEPi(3h᫅.\\trXfB_*[REn%VZ1xšWsP+؞XL; 5,BU -J(qSXx8*{mWuPfQ劳^1 /[ue',[:kW -J2^Q3F}AOTH8 j^wۣ^ SybY<5; R-_\U"2yoXR1 ]+$W x0r3 ,xfAE !(OPXajϔVnn끅?PͫE-t  u a{ل>qeŢE*0e^ѾjAM)jb< 5,͑E+T0l$\P" +!(wjŢu1蚅gzk!nQ -iDsP-mrE+ v,d(: vDfkq$- `ÜeB*VmE +5n_1:q%fŢJjfQEu(pPN>VTZQrb[꙼,JBUܖJ,.F,uXšVTZaAuB,~<b1mfy((.},X(+/"Z+SP*WynݍX#xZqZUB"Z6x^a¶+V\aɎ ,X 7zu΀JpdJ8;,bn"#k[|."+%P^kuS|*c|VDsx`XtgUeQIZky!2xdLğgK4UY+b:),֔uFZDm[]~} s2)ҩ[TUȊkP#]qX]SZ|I-Ž.^Ӭ׼)GEUeBXYEl-H {eRQ*Ȋ`8n83,by("-"ɋ5oMDŷb~s8$,b~HҢoqq$/PEPLIߣQEVa,"k2.(<l8'4ZFEZYvlX)_ʲӢE\LuEtDDiQܛ"FUYv/;va .x"k".uEUK \DQVEssE+?8?,VEGZmq.h&F/<_oQWrVlkE{(߆J䅨-ŔY`ĕcs@-ŔoMGEZKPY?:2,ּ S".q1EAatu"FUSEE6UŮv/"L-(Y<l<)5_oTE sEGW\?,'M{[$qETk )G[UtfEWWyİ(Ŵۢ.Ҽb2x{ȣ"嬨>۾Ce10ZDiE[uE+24(n*"̊ܮX_geaZS]dyFwh>Z7iqV7[T[EbSW7,b$-Hʋ`UKc*b+]e-i\du~+K")Qqh a12TYiqo .(b0x$㮬ՏaSQVEVu>XJ->mQE (ҦHC*bsW<.,,/-iy]y1_<sY㦨Ŭد+nkw=EA[qEv/(*+VW+bmY̤EY\uC<tZFW8*hgŞ]ذzQ=iEy]4c)ESTUїkxk7hҢ-b61y Moޮ1W\=oClZ⢨/ ț"Xgf.-(ʋi`2^h*6ebp"N-ZqQE#0 qPMGEXͬKEf1RyZm1*[yUY1bfX}iEo^`̊vfX E-lFPIEE*Y4{Ůij,.b11V$"fU8;ơ>*.a!,͸hBa<25Xꉙ茊' am1}q<{BǪ aBX ,-b0h x@EtDR<]U 'r_EƎ8:G. a!,ʢ/-N XS fSwx\ g+UE#Da!,@X`E¶ZlAeE*bM1bJlX3#VJy܆+YDS(D]"ˢ{PnVWE)*3oΈE-i1phFXwE_VGE")DmH"/"7-jv󊞬*"M1NHxF.s̴b~EvWfE<*I!h7Fy`ZEa튬DE:(*w,(n[ѴRͅENWd~UDB$jD"%iQPŠXWނ eEgVɞ/̋n\-BiѹU,]Z+v"87EOL84EpnO"cbʲ8+hVTE'*BI*#-i?h1,3Yɤ8H\x+#\KxS^ E+^"{UK @k)ˋH["V/sˢ8d"خY^S$zvF(/:q3jТZYm'bkXUt"uOnsSEwl=:[<(￟Wj_WenXAwEw\gG>_݆j),tEx\!~WC:eNXbr^\Ŕa`乮Vժb/+N>}q< ϗ'ᴨ78jXZYn-,v7WذlW0oDa1+4 پ¼e1}Xd ,|%e1ldq(5_Ov4 t;-Bס."+v뵰Xɲ8zX~Ehsjo^P̢{x=;g~EiWl ȷXfqܰ(Y݃lf 5d͢Hv~θb9s4 cY -,,& P]y a%aP!e1;gW;Pˬh-,XWg;?{Ybghaѻ`Yq.,$,wѲ]$,w{W,/C/,bgm{W ( _e-5F"0׼b+^YYD^ ?h+,#]qh@x(cŪƛfm+~vE_X|7??[o3,94, kۏ]>n|9Yy,ka]qx 꿮HO?w<4enfQXjU;a{*=zP[*9h:,"gfuUkV#EQX,z2+ ~>첿,\:,^e ,NBa+aqs-w7Þūiâw"+M!÷aO?Mp[3ٻ&= I]BId%iVN⚐l:6B}Ps+`3Sȃʜ U*)W$yvgpTͯ5, y#L,O8d-2Wy*9 `bYbFi`RBN`q(EpXȃżR&dVi(X5m Ts@d, BVF,ŤeAp 9HE*O?D, KBKf(d1`W>;TU []$hjd"_%{ ^X Ϋ<y"KjJ%x+\~<4Y' {ɢ䑼,PFL%,Db,:ENŸ"kJb %m̚,Pq  O쉭SQ[IcR&X5,,:fS/Yx*޲fVlRB{,{lW}*9 ` e" *YHEXBI,H/2U*9 bͤd!jR/YKH Prbm\}hSZm6P"Y86CJC~Ztr膅`6B`]I^bxyŸ rb +Y߲(0[5BbsO?, (a1F(5W|ëLfA(u"`a/X|.,F(#W,2‘,D3TVd1`a;b*X(', AHr"n,`Q\,\,F,a4B,rbiPMYX6J`|{B7|Ps `  LJ-Q,|P7dcUoXH\ëI4ee>egR mP>XŢZ텚`QTVͦbWsOCK,: tr{` ;d녊)X:PX(X,2B,Z|⋢^ ߈tzO+Xݵ,gm{^ E,PY}b2,䍳^(#X5(o'`@~,{F,wm;fB I#(,fŌm/E^PG MP&XljSŤR5X8:~'zvt;)Xj%~/Ԫ> M#;łtt; X傅2e^p,PE-`aPX F76n;/Yl) sby" vxBmno,r`= Yia vzv[\"JoX,*BLYPyHEz|3gH:xN]^ ܮ ,{,Ƿ +m['4}M}| V.YL,&`lVk`T) A/,&cSf .uB%;=^ on>PuK}"ojTV u٬,Ԃ.0|G,v,VCv-`2b1uBeۛ hPfTOY^! E~o}]N:y5pJ8z^(F2d1":8b,@`-oiCb|e'=`P.XeP;^oy{;`Q|Ouy'v ̫ X`[NzP"XY/YxO,X8nX;@`*?daގ#X҃:bnKG, @`/Ўo7! -X`1+n;J;j X/+{ gh8mJXfN(`EN_<>=>2ϟ*0XP٢! ,n-F,f qv; L,Q7~~>K{v~al ?oUBd!n{! vTj#[ O_<{^:X\E,.bKhPmK,&Â9b.W@G\xybgw?F,ߜ`QƒYא/XLF,j`!fgx"X(#=`f,,_O` 6`'jCWP}5D^L5bQ_:vP ,_^o8.b6/,P;Z/ގ9X,X6_E]1 {~ Mo{M'_u7j߻wnO]n~([/'gLvFnb$xsfn9L2p'0 '#U($H")J -"v{AS+7Z[VU$ZVQXخ9eѫ}6s3hE`VT,L/ՎmTF$;Ѻ d\Z8/NE&Kxٍ4s(L3eBZgo']+8_^k(B]X|q.)B`Tn5{jE)QD %+@?,\rgiIӡL`ҝN[/XCf%,=ܔLj@N,&8syC,=@%>C #νJ<ג7= 83EHyiF2:|rv(,_,%E _mb!rB)`'D.-K%J|FxwCܿS*WqϸxCyP}%Da q̳h'<;!X@< 4BZy, Y2d[J,Q䥾- ,.GN6QˏEW`J /ce(LGB%J|6vDl :Q IC` oLPN$b Nvj6L1hpȚ_@b"p`9L+&fie]&7R׉ șJg+w?:Qzs9Uqtbm8p,2sy {R Yz,*U;L M~='(,^炽Z`ma:LǨ csEM $H`1bm;CaC~h@B5 ͗W+XY(QłR`+Ǎ|Rב۝ #R@\'r]p@.g"يf2Icb2r`TbvAB `HW ߜbœ;C 13Q&ŕfOu :FWN=2b,C%_2X>qϨNJ} =0XeZ뱵{9`_]a5Y)QF18Cx$U`q `!AξN-WMŷ’.= ZX2jK`,ndx6h4`s̠U{,V`Q_\րE&S4zo"zDA&}<6~VR(-ճ1gYN__LDɓ@o$5o, 'lL#T ,heu, t)Wmy Ιվ,ȩvb ,57Bxo t ,o*P1C씰DR#`Il+۵ E(SYr,^KvZB 盽fgmB,~X ;Cz{XԳ , Di G$>a\=NЅsw?ޓ[_XWH 0!Έ 0O+Kk[Юc}-dӄ6DFm3c`A-6K^k;Ʈhu;^%֦s: e7гX`L_w)),~ퟻ'`;A IDAT>8JUE,P\`1EúDK 7thm~7ݺNk5yt lCB5hd^sAQ⃃L& Cjl(QNȩv=`|_'q!@ţE+Ţud,|B95n(2 Nȹ4!oM#P$):`1i"ip#K/+*"G* H#` p3y*"^aƺ JOi@3#iXh1V` =T6q,1cRM.=iD vA&Zs89V礱b&jةneM"$xhel9϶k4VOtYͩ!sJmKk)_WjgVD#NS"zQy- >HP`bީh¿JybW,3#LZU -SrpKЅь|8sP: ES#D|5/{ңȑqٖ|ښZaf- E>׾5%@xvx- 8V廒鎸4TfV_E?p51_[4𰡦Y͖;XtbiR)o Y@wN}S|sQ۹hG6*Iu>rYC"Q%Uf>X}B/Dz9X_",]xP,,`u:ЬE5h[K6i;8o;A递TC!UYBoО!XPi@Ys9m,Gi("݃D`@{i@?l9`&=^hP>.yא&28rcՃ~JcqJ \@ m{hhh:3`xoT#B Ԙܔ' ,5C cH !r08!X.jo}+cfߢB ՙ,@qF &<쒛b5"c0LNRսG>40< |||-Nmﺡx\: QĈdzY׌v!v͂a㩾%90/4SसV,>;{`ѷbÄ:Y "XfE! BV0jo_XM ) +Xp~ ::XJfx"2 X('{pA $?`JU k*,q`P;D\39 2(J)^/zd'X|v<ʴlPj5LbxX,E; `Q`M)Vq@; Xǂ%Yp߸;EdBB u|y(OSˀO==ehP8,jM ÊZd&=ׅ~"ݏc NԵ <Jdj7c=3BO-%bB;{%y H`!, Y(?x@ NO Ė1,`QdIBxLv0zhqn ,Xy KQ EI~\`v9vP=QPbWcdnIr63)tX"?<'XLb"R=Y=7X~`uXxXSc` UL,~1I"B9tXdx[Mz}*V:EղnR!(AXz$-l,.N}}v dJ޻HM{Vyܛ`0}Lā]7X|`!=ZXf<__X|cBz,L :XP“+"Ǣ%$ noMgIuYͯ`;9AX87Ȅ 풦ΓSb x$7d5H? f rf;q`a5u sX|#R` XX ~mwEW[ʱhS`сyu^:p|)bs,J7tB@C ;i,=E) bGS*|)$RWqP=G8;X1U+v]VyYDdz`]X_xGX` uTMr,`:*ϥiWBw Dk1]!'Ks:R˺ w&#h.54vEKFI&o+:,J#y}^ "\ڽM]W[,v")@뒲~HJcg#X,4[I⠪v;,p^QmK1?-eR\9YJ! B^X|G}%7ylǟ%!3cr\P,s`=Ӵ)p`nڍăLmԖwsx`3MdG-G tp̓4OJG@C 6aEct]"b-]KV㵳 +s06[g ,ij5IdQqswogÂpKe+RmmE4%PQ5Tcm,d!oLXۊէOb#JE(;`gmՋA =4I|NqxEՌFE|mjwX] tݲ Gݝpy 4 |2sg?DAŃ} 0HXX/<ӂi9wWExbF8?X(d'V"D$%m[W9QAaȲHy]h1W6(|7pSv7߷sw=퓐zF, ,޼LxZXdKGMoݕE BM+*$X .X;`X%u?E"Er6DYz4Vʘqq"ۑ)& v {ۙ7yO" sd9OmpTyC PJ&a;]\ԹĢ %nf^>ٴNݵh7b+M`wFxo{F(BXH*`ظ2vԴ+<`7hb?QbgD,"P{ozPX3 KܓSt+&%Q5 fHeVȟH\u}`T%=Ģ.•UjM?-o'gNŅLj}&EZCV3=f፯>BCZ,&Iv64?`kdtո7ʅImi~kĢPYu~6ejUesC,rߵh۷:jb"-c@L c蜿3Xcim5VE _Q~NVXXf)?+AbQr*fa4խjL,Z*a0<Hb;oN\2EL {E#w4NtɵFݬB8Tퟳ[o{bqahł"PJ,Gk8ڵ/4ʵn3UNو ?%X]G!pvS:uTRrjbQXNf-[jEu=eEWXyKma }W,ꢺΝK,~H4Lfł"C-Ps= JdW ϻwUZݻj G!?#+YHmpb/٢e G4"{7DM9,YQ)Y[ e["xZN+b#Ţ2,w $Ŷ?MM/-{)T}TX[ D,`"2fe׈WMZN/DֵNoBl[ u%ryB,,!xb1 x; XD_ykb ]{zUhgȱoޮl{j1 82h tp,b)RgIF;BY{V^[wwJbK*9!BG^/Dc^#@,ҭP,.!jJK֝Ng૯j=vze6bXY4<8a+vDm/VއX=ZTT!(b[շp*K yM^0X㔅eS#"+ oo;EΞXo6_3W[iaZ h fSJV: P*TV }Uj.y'*zI ZohΉX,^QG` CW}%v<Ѳc%jRՎajR ~ލ~b]6 ck%VpbK,  @,`"2WTpku=kVBlFZSUhͣLK4{Ma-%DŢ(ۙOk'_(so99u @,`"0W9zm/bayUm *XpH4M'֕pLMo7E z =ᕾb\_4'YXgW,.O,n$_,y@ 9M~ӧ sS3kEb455Z'D˗R+^K^HbXL/[[z17za)YXXx=7bjfi4ENb1;],>^zbNDI)9a^{\,NϒX(vz"^,{43奵ӳk#/^bŢkKKK3J0@!gKkU_->{H, Xf17TOn+ ,>>B /X| _cla+إ )\M{B&?~",>ObPM+YѢ+[C,: .50nH5*"H$l0z (V4F i,4+{ye 0̰XXv*-d V9,h,h,`"0TL v,h,h,`\*40Lt&xтCC±͌ZMB1lAPƂ+Z+ͼ& =k7QMCE  440F p\D-՜][ 440fh +[7ӑzBFƂFXX̭Z{ݰhA]+f}Ո2 Q$ ,h,h,`\ѺdZv=l ,h,h,`\Ѯ+4v~ IDATMf߳^uCzK 6440V05o. d!+iPY,qxF7   5WhjVxu3H{smqymɂmz+43bI"XXX@`mXZu!Y.ƂB劤|@*p7t   -Wz3nldd]Ƃ o"PɿgJT,h,h,`\N3`^`2   ,:X\2d`AcAc# C/d F `AcAcarwE\'BIe,``0f> d(,h,h, Tp'B9B|F`1    %W bv'Yg2"8')44YA\qNA_zPT8lV-q?_X/`Ab`AcAc/wR*J-SvyvΝc!}ߔ_ܯ:zu?s7:»¢^Y.JJO-,,`"}t,;Q[~=SEY?Hx(Va}2Nx>dQ-* ۳} S)KտŽlcʨ  ^ {=4#cE57[ޞp^EEy:OuET?0U{\1dC!B,;6x2ƂƢGf^򵕟Ϟ[_,b8\չYE?g(A[{xY[kgAmԂ |cIrnLh4* W-q~~ul?EF7=thYHr5EY6_؛`AsEt[X8Ƹ"*B΅28Pyxw[ tPH}NG{@0 <:;">#,h,h,z\s`JZ}#](.?:.ZEj5-^1)}&VQ*o5qE:[7e`1\1g&i#Ndqs-b]΅"Y s~YR[1:gK׾Nw ygfN{o˽2b,ZͿoMOV7׮(k_"/?&^-U_uđۛ"0\DAMZ+ިE'XXXؐw]rV\{b32ȟ*Jy.˚8+dzJiO`GBf^?W M/\ \H8T84b|\εŲw?X=\-ͩbj}Ӕ{w-N%CAV|z˻y aVI8X5|O}){BqA ֞!Vyp\7|`uo?#? ۿUૄS?{Fr*S_D_HS22RE4 Lշ.m9=3ԍY(LW_C3ȳ^ Y.wXO`9^B0bKرt'8XY4ge[rkS]mP  oD)aNx+gizB2UZi%: M{<4 {RԙaHn/mb'!x[%DFڕlluR WbↁR&mT0L07 };F%`dd0NN7S!Tޮ _'V.M]Bʄزۜ+4 hS'e/GJ]>!XzPjQT`aEKܣey~ª9X88@0xHgv_7^&uD^@Hr,D`mT AMf.N&`"*bQ+{aU.1b4$N=|='}NW'P{62Ǖh}\f&h, v5,8]$kš^#al,"&6/ܔ`ڐ_x~ئ5 7[m },\BkJ&XhB,|q`\C9X *P{NQv4(`LbaJ$Qt) py!atq[oJ 1& ܎vV`"*bQO|Ufӭqgdӡ5X'>'I1iw`a;̀;j{I*^, d'ڕ& ɳyO`:?$Bda-U B^^tS C9\UxUKO^D7'pbp`є,,X}{dǀelL;c6XFhLJ(\#;e\rH8Eh+.`\G"Z*o-c.T*P`3u9ad+X4# ,/Y-w?k- 7Ûc\ѱ^p(F/؆DkFP*J93`l/,2©ǙgY(Ԃ`=fN2Hdz49,)Y{6`"*baNsIvawF,FbɊ&`?=!ci$;X\Sw>?w`s8sQs1% 9.o 鑼Ԭ/NZ;LvH୥i}]| pO#j,\&XLr1\aE0S"]"2=&XlH\ I[JXT<.D2z܈Eȱ2c7uY$㺜M^,r,6n-bgs vujTI%n ،ll@ic?,Fe1"EhVm$G~CxK5`&~G*}!!&4 B֫O^u;B myަ-/}`L|tZ/fVyNg$:.s,ڃÚ,L렊 ^ <;3C`1 ǑnJER\ӛMJXX8=Yw`u~&/115[o5I?,CjLWIgXDf~[b//2nCn]U*h]hAnX|զ`ۯ 5*Ӄ  ,2 euOmʥA[Hib|ꂅeO|"d,4/"WPd`ѧB) ׸u lcy=ewF'X.Mk:3x=0gV`q΋e*Dxcw~OImm+װFEC$_h&G5C+|RiFˋ3#w̼'tݻ^ A)~vY# nGbq-1r{ub"nDNb_ܫEj5Qz)Tm⤒e3XMXܳoe%L,6^_xb~ >uh2nW~?7qK,\&ŧyy>it!w?wZޙWlOwD,2Ơ2tX @b!cWq*p( RCzC{?*\ v튅o o&b,uas\,6$s<^pEWj8Yk}b1'Wu(K,^P[`# {)["-0q@[(rUeE@(x?b[~M#QMbj7 ~;6[ Z >ѪwX~X)6Bvd$Mbc0qĂ%bE"b #Maɥ&FO9bޅ-ׅ9}_bߕ!Aƌ /%;lb  $ vk]i[,][3 }rsmbbhK}OzKt\,Jz*d@{bAo]#=bQ;3؄vOY˚s,p]3z@Ѿشpىɾbٚ&zhN?TX\,X XuDKMm1UEXt,`W;󍣄^I [,ȪcOz2]v8PW;_\td'(bc-'N{ݑŤdscwbd [.KhA,=MD~D,yE0PlX+WiuJt\ r !O  [cƈܕ:Ҙ7f+)y3Ui!  $H, %j6:pcA,4YNJbS2Δ¿}K b1~a; 6osO s79d>^0Vo*)m@ۼ=jigzm8X @b!SLӼ^rH^b#6q3k%W+*lbOS2ӻbm7L*mmhS,1yͩ%r  $h,TjWXRRg(MӞ~EWB T朧Q4X|E\I1 bDnb!]{c}q28էQ<Erҽ7aUoO)[,* }$ k!pI]$Q_b7 $pb4}iFhm>:mE҇2}JbD| _ߑXwAwj4֌BVuRX4%Yb *bXTC, $H,04"(+NӼU4K餽VpsQM:S8D: J YtW?Nl+Hf[I dqw^JWw^ŢO, &})]"o2Ɣ IJ?(F˖X)}fM+ Z| ~Ҷ'Cy/>0c9dGudb>Y|'\Z XPT/OvW $؋_Z/MTb; p/_D|#_t߱Br|zˍnZɆO?-kIIf9/L_ZbpҽXY|fL#5 L,=&^eB_dvO/RS,0Iwfzػ̂FZ"\NQhSUдkg+#dʒK%_⊐#&X`bd^cEXc3_9|wEN]u2{s7YТZnAQzIF;mqWX O@% ٷF?v\g;j1vXj֊P '#1ET,~PӾlA/&OJfo+csDEJ'6?xb|-J%EN&SHucOև|ټgӒSY!f`=oђr|H*RY͢4 S-xlaE] 6ꗳNjf\^4$k]8{3QHOO% ml)Kiҥs,Y ^kZ$E53#c姺t6Y+B L,,s2~155@;?Yg 4X,}ԣ[,; ﵙT|>e@e-|qU ?`okI?c+1GY,0S L.]4%}B*xXajz8]y&✖ߨaT Q>,F;b#6&lZ*X`b+X;B$̰q25X.bxzW)Xw:m>{ zԖ¾$,ogޚwud[KYT\-[0vQMZD5B*U8iH<.Mؿbbq&:Lb#I;XtU#yb&xߣbY:r0= 6(uXe3 mYywx2+bA0>CYTԂ nMI jVW čc8],'Tbn_EOPZz.eE@0‹be {[,\nayi?hBZa2k[\)UBwSlbN< =JL.^4#*Z^<9 zT@wŘ)wE"cBZ{٠X X`bEW nA~ίTX|[,\n  1h6 Ӊi+aC>٪9OUb!I4$Ak60݂˅d” j6++GHeh?%LA'Y.5xw Vӷb`b'C7Om3 آX0qK,\n N-ub{J'߼M>l >lOFfas .K*UPpS%i lڐXqP9S=bѶ#QxE[& iE@X`b s$6(a-Ģ/iN{XJ.(4Pl _<3[0-r0mkdVE|P(,*jQB.,$ltUYEE++iSTD(h%#qƔbrs*So~aTȐ1Se1=tΒ39b]*^e^}bTRE{]bX(q' MłĂOgF'|bZa]:Kca5M.7Z]B,ŊZrX֏-Qx|ǪY^8O!`' @fQV -\t댧vE,'7+ F[6l'])ƒ|k❔gvԚ#Kr+YWÇZR;|bat}G>V9?n劅au7Nw JbAbAb̋K~Dc]n6N]=^]-V4۟{;j4 0 W-rѤaV rXG=]W,t]WxP  n.2!Ce7xB(y1bAbAbhn_nu0 [4_DTn o8cłĂĢѤGT~ߢak@Ө_.V7q{ p h8sb]ZDfq3jxFql]QJʕ"4\,H,H,O~n-oH-h:h:Lj\o14w^ bAbAbܢC,H,H,p  XXX8@h . bAbAb`łĂ XXX   bAbAbZ,H,H,B@h -$$łĂ XXX   bAbAbZ,H,H,B@h -$$!1;?iղW6NJ 0<* PXXX5.)UTsk 9Uusd   JxTunn֕΄mpsłĂB,_U`"@]bAbAb䴴UhX6rw= ĂĂ"ˇBE HFq]k5VWk&o.)ǻ^N,H,H,ΨQSe{#bSˍZUBGOOO´/+(>`Ug~ijiNhknuO Ţeu{%eVz;=E2]uY_TMWMcSv) *tA.þƊL,ɏo'$$_Oft:X)1Q{֭:UB|{l|-b&RaG+ &ӥ'>Ž]Okfj+#S?pVO1o@0?b:&\]|P/E A=#ݶ7=v6is ~!k; ' ];3tYt]{~XdJ3R{5`y5\W85-D^,F>vbAbAbnFH+R#Ţ.11ۉX4N,uN-N]}%d!#ΦnxIݕB_5zZ۫іX@,zuzr='@,   ? NNtXD*o5U`ᕭbWEBi'E/SXpgX 1w~\k?zPv !rzިC­Y(1(ɑEz%^/ɡ/b42Jcx{JnM&10aSlm%[2 NCj&^?]ـi|,}(35M&LĿ̬afmEJv,8IP+uO3O&dOt B8X$7fe/X*Ѵq%`!) m]O ?o[^ B&8+Zkok.g6z_ޡj#o4ѮqɜOzb$k7@dvy3,"<}ocaz۳ X¥a+ c*bRط/l2@a& `^c3:;q5V\2#XYGLYےU\;rx罦Vd&0.N%)i[(_7HlX{$XZOl0FD*+DOtgEŵ@zWz"p`+"|-oՂ k '!kc~$u؟t Bn S!:ʏl$6ABuCk*#Ƃ9-A_Xܐo#{Uv=pi=eTYN :R}* fF6ajS,{|8R?z/b݊k8BZ$tU yk2DJ5ޥ`yg&{i>T$BOq0/ⰊXX rW26'Ӑ^"/iƱûL;ҘSoVH%[rEI\ hJ$33H !ÈI;Xe+@KjX -9wiԈskGS, +VR Gqa]m:VbS9!!ܧ[9YHNJ3XȔWq:D\B1uŐL?_K̍PwkK@*T=W   ,c= |P( CĪ#"x47mqY#ea!G+#"!ގZQS)X8..uX=^xӾ߀f g v,b写,vTfoa)nqmApf9,fqVmuڽ .m*K{ Do\{ӗm]`qXoڂi> , ,NݿZLI>ÄB~+X,iBS!KҞrdNr_l@Tl 'rQW9#޷g@K=>`q\gQ(Zwb/]i,vu/҅]`q.;5 [~/X;e"jw  :P*[O런6űP?>a Xh/+j\`x:Xh{j!o(-Bnv{"<F'bAD<1-Q"sxk ,d$3 X¥#`Pj.#08XxZumkXUY@ XhOV{ £}CM{ncga,Rc!J c;cǾ`ouH(, ,Z`?^eQ B)`žR̭9b*AH:O ڥz;B,16`1`Ց1B,1X=.J2gG{O`1 iGix,>>V" Qſ<ۃk:CҗZA  v? O e| :E_Ҵ{RP{06,.&Q_`ؒ' X0TY`0 cBӺ>P؋*AυB2!w,Ԍ^Brl#qX6,%X=nbC˰M_1 8_#%HEyvG`S5"8e3֏>uV}:w_F/ IDAT|Ulڠm`p`qH6X< ,49 B9` D$E(8!iNzs6IzDv̱0`A!X岰:Y` q##CY ۀB=)Ԇ 6l |[Y׫ `V/;K,6bB;.B~/XbB6B~,zΎf-=iI6`|=puEzV*sř,2˱^+Rrv,ˮ[bJ ExVP a811)9L|,J-{N{/(^[mu.u:=P`|d(F5 YƢ,t[! ,Xt4lВ XeTrKբ`B%Ds*DX@G Z4d55qvZJ@mKZ"*"r A(ppF gfn4)~fԖ손fM} |b/NRhL7[R'޾`Ałs!e3M!f >OfsQ/Xx[9ƄXaJ!_3BSsU. }˜JoKbF.> -Q5׋΍P#X/Fe>\L`!9u #](8be!9LYR`Tm8Ƹ/Xjj`\,Ohr[v]!Bfu7vt,:Sr93@VaktoRπ r{Ń;V*Fz=SKA lzt"Xܾ`Ał_؉ px/P"Ye3ɺ oEtu`A \n_ cYm =[u阯VjROOy5> FӳH]1oKtekSwQp*хzyD pTW,Y(m5X7ܢ{$wF.3v}MRS_sC[k9tlQ-;^[,XP0 'X؋V 5;u5T;Xd-]͹?[gKV/Կ_0GnwM Q7Xo0uyǗa}P2XTuKX\Ļ hws2.XPbq޼g»VhvʓpT˾nѹ'~Klwin_>>ۂj^egLw;=wwkw`q`Q^9@>"n*XPb5$)t0_v~g7bT29.:V ;S>򠴤)Fzroef+Ai]R + g5Ez|rh/-+];JOn?KgKQZrgcyƞFR<'чл|"z+zۋ^޵F3өԴl6:eE[g%H|bqdOi\]2xNb}6@s7bqWrKA1+Vh&A_t;ϡ6=Gibq3 X o3J;i`Jd96_u١, Tmf&xMsHb14bA X[,J+oaFp("" ػ%xjGZ):Xtuz K)b)bp0\%[;l%ȉqK;7]3 嗈]5̶B Q.j[Mi2_GXX n*_˔g06r%B,θ]bIUbhĂ2Ŗa lZE`W"ፀZÐE]`ơ.Pr+H6f_f X ʔIb Q AA X0D _0[aޙŸZwZ#Y`-oFlD< >v ";B޹J{YEŐe,(cŭ&jW !6;0)1% CkEgeYM,xbi*Tټ0Wxn⨞! UQtl"W]X]o/D %}jG7& XE\W*B`q1֦ʡKķe,l :"udrI,xXZYر;@^ӭ9X]bu6qwE .GTAA Sb"Q#'H.̊\Ehzh4Xxu[Q,֤*! XP߈y R>X&~/Zb1 b (Ţ }ŢlNZ%kA1Tq1/`#qxz2balkoR)q/ܩ)#X XPƂ26GH޺z sFߋ֪XyT"` 12P2cXfVĢ A1%u(XŢ`(%x'? b&6Z!7Q, g3g$&XKxGEG;Z O*Jb8šC,lg S,A10T4*ա>bQiA|'baԔ5HpDZ|eZc!6e,TEnɤE%uap騵!l?Z⇵{Q,  tEMFZEaTAQPOfb׀LbR3acO"-x{@Xͦ-Ik#) XPxJrU,#Sۄ v ȇbf;Bkb@^ўOZ] FգīrDQ$pkg3b+oB,Σ]2 d 92lìObܫՆBq[y,vE^H8PkoGq\%0MXPƂ2;9U|* [w(yoC?R^uYH5\-XĂCnc4_]-e oD5*"fYB,lgczu3/Փ'af!1K b)b.lGSF !f7/EJ;:./Î1^g*(7w\>۶XM g1ؘ='oXPƂ2:Us8<*o"u1$~g>UeX[Y]'靎Kk]x뽃X|XT $v6=VZb1G9~.A m_3(]TA,FXSt{@mv8f.#nŲGZ(Xb(g`A>8Kb14bA X80ǣk{wy,9ebbake1}A,xkJgX_W̮-9mI{ zUW#eѼ(v6Y}s#!] dz*4z:0cx5g0`ljD WŜX;u oD"bz:"}^bBLςsXPƂ2μ kGG2>o1xnFt"y+  x'}<xܧz2~/wok%R,3bA X<8*_!0T\G IK Wqm XPƂ2ͻ>?ozR1q9[WC1<'OAongSe,(cd"tVrC'ՕscS2@DD$A4,24  6(E埱}$ḙg2)kџ]_jϦe6~@bsBRs}~/1gy5敭WW |5BnI_.~@b+OQw5~" v;vUa\IO2IIŶ(q [2 ִ3nemm |7bhme6{F~y!H,X b$],wl-q/e+dSSU.<g $d=ӿ& EO4ʸ|5{5qPXIUy^<%<0@X @b.bYlm$ٝ!Aj՚D=*{DO~*.<JI7ˎT?8X%H,XXd5 Q#6ZD(gB Q -BdQTDj5||;X v a iM?paEb[ޤ'z-cGb"w<hnoo xp^CQ\ z.WD,@bLxͪif ðXҴɤ\ۜ '@2 =#g\2@X=r_-˕2~l $dEQ25O^XִF儦}E'eQ{ /p65ʕQE 2 Ҽ9S^Xp*+>hچiq;w-ud{ȧŜ<2f;q'X߽t4FD~˼Zß#ٺU=:]QR$ף[xX @b@XXkR,HΎb4mr2z"aD (^N$^6ƹɹ MLD>3.BbtٌpȾ.P Nz( UzѺKSw7FY5]kU]Etuqꨮ_d@ڝSnxtM7)}n\t@ $03X|4oz%[}>!6#ppm?.6EtУT eIwC,sg,X$j٪%T-N6Scn;?u;b*1.< D,X `2bM&2L~HմXRbIpؐ߾OCqY{۳1OF"[<f,(M4Z'=_Rb_gjںn"_]]9k&JT9"UWE[.Ox}|g7zUx3 C@ #95L/v-qen}4l6]kL״%:\.elbWmׇBT!X4ZbXbQ%]4eG9MXpx&WdprYQS RW"Hv*+aa wQknP(b %4M̥.\XbPy/Ղ~oIJgd#ϲ8 (!L~bsOKC,Jd}FqDz|ONڧE%gug@ $wqLyM,xqUZԴYoԺM]j,ԎmoH#mZD9{xE"jNbVCn(R|?O,GU_~D"]7~Jm(7`GƎu 3XX @b[o2XQ!b\b'Ql!5m=0arSLY]?} Xpbf%CNU}rDC,[yJt%˗?삱HdNwT+aqe(1$ $H,^>fYB8A:5r;lĢ,6Yyne|n0N3Yaysz_bqBrC9'E\u IDATl/ƚmOUʞh.x8X @b:YX7Y, 掦MQ}*#H:S 9˞UۯXD%g_,\/Ԁy4^8F=X(_z Ȍ_޴fb&K,dB^ҠY'_^")\\I^|>&k`+eb!sv @ pqm;?QL"],\K9Z(G]VǧIMdw;ribcd,O#)Jf,%AeYYP8M,ڍy&Q"cN^h@pgŐqzK;4-@hDRɈB >b(Q4J#fKFMxW׭ݛ,;3 Qo8_=ݠ=ӧ4 OyECs xLljBP@ .G ", {[l@mAM4`_UĠ UDΧϥ*`mR)RfqH]g 'ӯ 2owG'ZP0~D]4|#-KikHtXe'zx.BP ,c z@ YՌH*p}Ѓ5ſ|S3H'"H$qyuH4`a8KyCњ庡.rFX O+ŘA- R7E  BP,c⺾u%>!I5L>;BD/vjٛ"^&_ӻ׌> ho_Ԍ3d}mjz0F^ /6,Y XHRe U[L0h i&ܑ`j+)޴}uvuS_==}+z (,\[لubM/LsK @^au`aAk+ccg,EЫg3Xp|ʲz`~rbp P(T ğ}AQIB%TиUP]⒂z,cmof3'XIcAX՛sEUQ}fy]O9ƵP(ԑ`AeEmMˤs 2`qI=N{W_˱,yک(Wgɹ555:s =>QLAP,KEyB` Xh#[͂p*Ml> , +]3,5[u֔Ҡb 1X\; U4E#5ACO8kEP偅Kd,Jظt10hut`aҀEaq#nTq=ЪB4EEؙ12"s%~e=أL>/io! wjAQ+'ib`QXkLh<',JEfVIWZl |t`ܳU @pK0BI]ߚSͬeWX>o17BxMܰHBIkdQ|<n.n!BP Kz y`qv#%fB곤`t%I"We;(&.1ڠ`AȤX#Īn!kvU-Wi`A\-fVO\}vEM ^@z,42g qbAGn`dqN6ipa XgHX)b%cQP馓{.,gs0d X+1Kqx>/*tC8٨gF!u%o n-C zM8.1W;( :%&qK,j`HQgkm8)xx``)j+q[h8|B,g$^ @,6u`!B&?? ))gX'34 MuVzȯ*xkbxIetA,0Q13䣋 |d%$88g`vF BN,:BF$v e^8Ob *rM#/3^0T Z3'Gnӧ/I;AmV1ODNwNN9GJk~J5y&#M1`= ,9=b~Ϊ:Xo-tI`Q'Xܐ~#_,bёk+7#9{(XPb!)饍gޓH,|Q,܊hfmhS9Xi0<,=+V7̽3`q4.X~,)<ɨH&TUl 3AmJFʡ5ݺ,J芓5sRbx^ *يdk,.-szǧ _".Dfq,>A˜2+ ܍=zQ;XLc gyI|B]?s4,X+̯5~<הFBHR9X6I7+,J98fb6R.trIbA+'6: {ŲH?/ʼnQ`kU?XM@W`1+,oqrx 6S!vjun2";,fs^ s+X\pFD8)᭔=c2X6˳ʾöO E;ʼnֹj/p *^>kJ&Oˡ`ћu&,|T}非ѪN{Eƙx"&.{R,֝i_%͵,~zE`_oQ;fc)ۜT`} ɝC{ƭ%.`ۤ:Xͻ<=XD:¾x!:[}ߗs,XPؼ'X<g8h-ը;nb.(X,q۾b&\-BwdLOq4EbBY;Oƞvv:n/kw//by'lm!v}ahT0oőEs]T9U^·IFO6_{ֳP[re`1'3v++1=m5m;y9 T,X֋F́'Xl ش<,D6Y1y<~/ o+۸.NcWEzmh1O0K*n,tT n\ߵW޾/zLLWG o7< FtV}DYZT0?֡o'~Z2? `a,"Gu~EJ{JĤDgƄÎ)6i2¸aloWj CS^e>STX8&ͪne[N3' *T,=L^3tsiݩ.δ#UtwFLbO+#4p=joLղzWƗ+,>r˙)`ݔ-K+1}؞t'z9O(XPbq+FxUb@-]Ƈ|iL:KxuoSҋsǶE@ ̠2> *T,Z>-GB dDvsj7Oi |bA%o \Z:]hlPӮ9Xۜg3T,X`ѽBLZ}7 iy_[ȟAL *@`Ał:XPbT,X *@`Ał:XPbT,X *@`Ał:XPbT,X *@`Ał:XPbT,X *@`Ał:XPbT,X *@`Ał:XPbT,X *@`Ał:XPbT,Xȗ7]orz"hW@1po<.K~ ~_|~}>O"r}mawez,޹w5lSfE+#HjGE-TG땣@/8 T*(/¹ K^ˏq'34I0LٳSGhs(E H2_JDu ^vEp…KyHЃtM n B)Dlh`Qr`=caJb׾h&| ؽCp…KY3ߺfQXsh><5' 绪 4SI?B8XXpXXeHЂ-ˇů!&U A[> \prG4G,cQh`Qp(I ._Yr =z{`ahWfζe+C~ϛ%۵ -M!:zAG~II7@(j?~ [ǤIqiJiY\>n9 㞛G.O9yP5K6ЍFL`QUS`qmƋhAC!gvφ  F7{˝ N "z8pmBþd%5:4,^&ŢO;%X (A 08!-xVʢU $m}(dоwl_7'pQn[.f}Gr=(vה9e Ԥj!,J,/6K, _.gx7@_'Bwi'h.=Fhx]472fid36F3n'Rjͪ0:+VZ6)`-D@$n 8)x7؉Ů~)B †b}4 *)mu76Vmk_~`Ɯ0C^@cS&,{z.x80-\[O?_ ,j!l?O!nSa)R#`Q Q//$rDq͊XAωmy݈lNB!j3@A6Y]eׯJAmBN 6/.;%DT(N(uY}^AƹX(`"&@Ԗ,RhQjorSV*rhE-)P{V;uM(XXbM+\&Y/?e22{Y%酰j[Z~Im˟gs`q`IH ER`!T}G`@^f(Xtbtw 5Zm]` [vou!{)Q ,Όh#Ҙcsd5n7m})XWOcC \  +( +X0|l  =$[` 8%ؠ K XgO׾Li -p钥42'Xk lmmV'/X!|b0Vݱ<&:MDdSV:Y#:rvڻ5ŁEŶXgg-q@&>d>p8ڰT0Ka1}6eoot-lNQV?3Xd 21aM :d02,p]8|$ƩmV6QR!5wKZgm&p*1j"{0%~JoMej RyG ,TWESgcb+,tC ͺ9uz`=cAl6ۨS=M}bSD6 i"b„`ߞEZ<U $ ,z*%9X@!| ~ty__gxnjA֎,eOq^@ܛe,A(2}dB6h1c60f[zw|9oc3˯+EC Bo&עzF٪*+n~0xSle.|(,K: ~Nbhx3&wt*ܟHAwF*da*`²D kF~b`qۛ<`@כYO 0H`FSEk̲:b]$|{49?pE)b~’<5ïW2iz^#bC."GcM-,>QAqxD7B1ۮ/*+/;T`aTEr4`qdmXδ؝o2h+ E¸oA/`QX 3숂hhlOpQ>L$ To"fjpK6hqj% u_=,Z&o,LŹXؚZgE֡[+~M gy +6^ @87"Ċ)Aqb4g( cd61в^~]>K2]x Z`f Zhj`1Dvh(˺Ύ'G7/lm=X~'^:`8(~󬔮< H7 ,xizFHUU,nFPQ uk-{p\MS(0` {E)zAN>~v_LX,Vw.NM`+ͰA@JyY  W*8Psϸ<7MR xnf l6/_}4A'_wSn,!=Ng`gf`d. VS%NeSt/(lo$=$2XɋYC¹0E=⋗н@Dsƅdm| iaնzMk+ARîdϑj҃fANNK?>ٯ>UxoyX{{'w&#ٺpl#`q<2L"#e' Yz1Eqd}}pX,ꬊ z|l9*.8JȉQi[*=?RbJ#Xt Њ`1:OpFd#Zy!w"lbE誚kxM0HD;x$ux]`!ms']9{K)|`BxaزnCœx x6d`-m8%|κ4XD!TU"X%B8Qy[ [,۹f#U2 ae60'ƆQs6ͼq s ˜퐂FנCu2tN\~soE9j8N 77qfM cUMaBȷ}e#ɏM{[?wĶ3hyM{3VAշU|?, X<)X+}@-bº$ ZۢcqNg+Xt=117X]Kݎ 6 ~ov6v=5&Pvgc_b$*%E@ lSg,,1MZ 3X C4Ҏ`1@zRt_vYdvTIwJm@],cQ61oю;,QUD npuS͎IXAk^% ZL.E ,, j`A̅^P_p3X_5:.2b0PЁ\+FXaOɟ}ˡSc`{/ՒAv ,YwX x @ X4P`!vD yt?WXT4;;^dft{TOV44T!d|Cw#X< 'jJsYtϨVZ^%@{ 紜,ҕڶrI*"U`rE҃",V$`S, ރ c:iF=4X(Y  5,ѨPfg> * L\ 7ŁXϜuRcd`ms'ݣ hGz|o`UH8{xL{=*[ox,6[_o-ֶ},rm`d[`1X`3BPH=k )'aǰ,%3li JOX9%xkc U:WKo yb@lʾ bR{'l4CDEۋrj Y<: U,݉nV2i50Wx$3U.4P"FI{5Fq"m,,f%xT0X(XsX֩A Fff2 A7n^p#Xh8Ew7Cڡ-t`{4O {eS8[q8J52=/+o)@`ikK.a?$X`Ϩ ,ZA|4CTcV++f;۞,J+#BK(@!!M 7@mh VxQ)}jvVZXcs733 :YK ) #,|1a6aaf7Ep(Iz;QCL1m*, $^g/b5-sUl,^nF݇RˆD%~,5>n߲)OT#TZj&,hJi[]\8DNNFy|05$g]L=e5',m9>XCْM̜Ir<ca1}8H\oa S,;3!U5Jdٜgήg9Imn֍`=ap{ł?q()=۱E6}Hk4w͐Tɧ$ZP֧x&~a1 Ie=Ғ.Xb.?f۷\}TtQXЧE'z GaV)q0\` IDAT߄JZ ,rxZ$71E+T+Oqf‚P‚puhIҲTNTv5g/(X!@eeP$rkfaAL JWVF'dFoޖbj%v3^N4z$Mܨ|h(6dlۚ~t5԰o?%*KEڊ&BMiCۢvA5W2U=F悩!9 vs‚me*Oqh][osou»\DN;urevpɞք>Xvp557[ ,_l){ٰŽؼ+NX̌`=apOZYL|ܘ"[SMPg;#cs F8a}l|dLؗy}%leB%wa!7ڲש<\/OfFnjiYȘ4m {<& s49RP'2 w 䌷 %9Ede}jGt'r\c,[/݂c5&0qyݬ}}CXb ChKsxq aawa`l' .,feo+ CnF `tQ3ú=# P@bVa!tЫrnޟf-<I _zga!yf'xLX]Uy).#5YX6nʅjQqZ2u.of9*RDhQX}EeD`N~bY##4Nnrx)0RZ{+aԜ9D/o~p5=,ogo8 E< :FvًsOœY/BYt d=BhCX7n*F~ ,Ҟ? [UXlF~°‚?q֋cQ乬hmiftdLדOe P@ZS}F;YkZ'Mé7GN~tCGڛN;ܿU߰>7fFVգ5mDͺ9;˹X=6΢x򱡵qa[S\M:nF%[ :NOw{g'G.h9a|~P[B#V{cq9a*p!ۇS^gαhƄ*XE>K6*'AD37-,P@ڧs#iL ,nėJ6A:XbrvH]! ,nI\rFcяhƅ*X@|֑`&^65/"ya*.=0pNgw#ˡUD3AXb*XYXb*XYXb*XYXb*XYXb*XYXb*XYXb*XYXb*XYXb*XYXb#Hg Wݜ.5L|\t)@XbOZ $u 6EkHs1MH[SB.w9Bc%';BD'8ͷO w_XbrhlF~B$EyERaq K]o.=ntjIV Uچ]x<)icҵ lJWm=ɛMQrr[S?TV!Qm/Qb *4>ʼ/sV߆aFrٵ.s23=ӫ/3ėGo\G}T 700:X:_pXtlgi"McE X~VxEU=V*ھzQ2#qU fսrlǒ3ZHɌ쵻Y/惼l]ZmTETU.&v^,h%ŋw+vKuviS, {ބK.?1lD5 }&٫ags0gT9~@h`uc<=_A4HJqGQ;}cM O>Ǐb%t> X:`aX#fzocQȭKe@\4ƙoa`<Pj9ʾ- ,ƽ#^/ T7Zĸ)ccV"X(UhRFa fk>[D3jKzqnh+4J!ˊaChj@8>EX%h!V"n=sP^Ґ,B,X"$2kfcz1K8XEۤ25._?mP d?0%۳e:FQr(H-8[DU"5֥S~&G{` ;Ƈt%f[k=E2%)ҟ#X#ٽOp<ˊ0G~krXlQ X"ǶaҭiN&|c}XGb Q!̺3X$WDTuL;{昕:BY9X-M+RK#|O eQjB~V\inKhmp}V }`a(۸[U/YA&d'BF,(ʘmYeA3r z<ڄ"<EA$X,& l5އXL%eS =yRyGbO}t+`1cʮ[hnќUPAaR44+NOB4~(7#( T.O8.bվ6{4o=sP҄9+Hܒ8l2UtRX&K>XXop(O O$!cR|EOGHRI\c!!!9p1mw3IZ~ خt{-\HWC,ڋv.X[ߏ'~ULu*Ae 60d&Dfw^AaHDLR;h6(@Dҳ T/;,vԉ#."¬v|*2 Drfb?v#B 0l$?XX?J&dO$J2&pZz{IP5WoT(!Pkރj\Z'q1x4#PuzIgrCZw;h.;Spto ~,u`OB{DS 9BqMʋt,ӰZea9O8ecm+=it"װΌy' tbtIf¶O19.'CكFn,<n0p\(g'O&ebuH1Xh:_ y IV$q>1f<#740NG,~7b݇tGVgx`s%I[^=φX&P!▊> ΝlUza[(^(Ie*P}"i\h; aXLB/5zwDUYf;+Bn:X1LѩH!kb,ȱ/R̦^N$XX:buE=X(>B6v|BatR$E;&()O%!.AbH D jqY,, }J|ޗISua2sz3s>tćY ,m2Ls+*(mRS/g<1HeWHnW>>ѩOB*؋6(c{,N$:1 f["Cb`GVC4 |WiRۢOr>`-fh`ZdG486y"78Xs= [)p®'q,Ғ ,B%\`#R ەk!1ҷâ! (%U*Ԛ]BAGΙQʏb6 )rYsCC_`۫M/"f>fs;S0f HWnxQrr4@x ;c,*xþ!=@i*B 9tEvtrdG0Rx#40bKytS tR9љW(Ye2E' M\XzlNw};XvtA`+`qlg$&=Q yŚ|2U]mpb:7bAD`<WY(2*kw,AAQϝyž avi:4,=? X'2x$2"%\"T,kcUjUs,ȣ(M DI} Y`[/X c5*;eE[(a`# `Q,ĕU,1?‹5]`uh{o.TkW0m6|`A]*}r?<}>`\0𨿡K?,,Z8I^J4f`1I<|b) ۻAoә8 {h,OE~=ǃIټإcZS?wۤ-_7в_&Xlߟz}{3O,~|?d,,LL^ZeeVb0X|CGPqe5f0˶`a1S>Vl-k"\ee{UsaVBDY셹%/XZVLߊO'.s yhйeOc&D7 1u  ,"*J2GcOb4>?tX8[|,1ƏĦ:aX򢒰0oH`Q9Pj {)U/*-8b,*,&H a {zWHP(dVܑc{,t˗!~Mh>7Xc,H}?=Zd1Fk1vn+7 ofHh%h`A›XDȹA%H)ӽ%D*CeMlk=@Yq e9y2(d' oªL`qÜ;X6?Xu߷+~Ó:e`H qKy(92>|&Q 8zpoM8Xb R+b +Q<.3˰35G#q/]kJ$vr37ƑS-xm+5L&J,cbG_ K`+ŵiKw.e]`1Y<)hV }:cu&#1P]&XRYFK= c`aw+[`T9ŗ l3B4'K"E45J޻ + YcNhl=JG` IP .l14',Ep:^%X@h/ IDATfP(c{,D:ɢK9{*5'DWSO'DhElTPCa] b6_`X'LtuB9XIhL>ZEe2NRdK6b# D}E H8OW*C(,a֨ƾ&r0 Zm,jˉGtIЩ{V+HR'`qEM`x^~!o6X`6>.AKyji`8 .k j*T@\G 0JkO,$1v>Q7Co;S}bB9]ܭwΖ@R BlU(w:}}qMc@l=7*?Gp;&. )!lcIQڂ(*R Ul傪pg9eN!1np? IggH;ow;);g8q2kgV ]hkX ı$ߺnִKXԬմ5IzQGX(jaF?%zb,9[X,ܓ [7dNҔ-,2S1rI}oC+za.U nyXI;zb"x#9g> SXj5g%Uolpmb-, 0-Gz5Z}DDBIIOŠtK%,['R0cԛ IΦw&WZ{nߩ708a-ưos %Z?A/Ve?ba K@%y8Z9r=$/L׆ +Kg]dŋH}ƇkS߹|97:祝dm Ub:]{sRtI^En~l| Q9;_fJ 9fG?bI{"mwT߻HXJY-7iW'OOh|PN^ӷ"o *蒎PPX\wU^1LrZ&fx;&Wد+cvk- Yǫ3r};3>ny-M1]^lBX\zwgl%JW;0$]Kzt8@rИS˕Q߯Q3G߹ÈH_;Do[9J^^Tacc1!iQ[fԗ_ -a!O>ԃUHens0mіT6SݯreCCo^ 1mͧ{4{96vaY"x|0}ksŪ,Qz1{CaVvߘ^>ɀJl7f2ux;[[ގo$BIdO Nyyf''zߌ8һbaleK3CvXFݲ3瓺b3"xz*2|Z !N"+Nm^? +WU:88blĄ-N!,.ә|Te8Ema- YsՌ]r˴v,V܆%,W*9Yu߬L_ablRȲU4m6gy'B?3؎_M\&,}jdvOUd->?8a.gz6 &Ma`UaM:'M8i.nzN[&"b3"xumaᯕzY}hrL027@{ǢSdDvca{E`HXğ`>tH  %-ù3zlQ6eO vW,rS)oZEr}B~RڲG=rd]oBX",ϲ֘)Zf?~ւIζ~C#QPjөx:&҂Z&p gCTy%8Wv])ɓr̡=8&wدX*D>b]SZJ%Ki0=gi7R-אַ%tRr/6W x,'Sʖ沑7ݕ@G? #'@7}acc1W@XȏZjcj]䛷qwɞěw0Wgy7omoh - TO[:^둯:m5FF㫉˟Z/K4XyRݩjIMnT|BgɬK }K!,p,p,ZU9! 8l~K!,p,p, Mvpz0~ _\accжh[XXX-,p,p,88m   @maccжh[XXX-,p,p,88m   @maccжh[XXX-,p,p,88&#u:qWsl?=,)p\XXXIn/ lGKVAvW+ŲLy4YN|#w.88Vdg$lsu%}1,:?iituTX$VVʿѼ. Sv14mQMMK5qᑳVwȚvȥͬX/Esb:}C,z_k㝭RY#bJ!EL.b-bM4].88~J"gΙ;w',.x׼h[X4',p,p,fE]>FݡGڣon^X{OXLLhHPX4;>LXjz1~|/   B<^&|>_ۛ{{޹5,qSn%V#Fo nW@*Jh T"H!U-˜ewC{,2;@Q>T正xb -7?-.UshTً|8vc(W+z(7cjU}Z4bo?|TĀ81-?& ? GKa ,~Vt/UUuD*ȏ-?J _X|]ృbX]UĒ,fZvi#.ӯSyGׇH.ӡ_>쯲.xh/Q8 >oqVޔ^o؅]-v8*hZZ_NV+fRcdLCJQ=iL>BrCHsuXXocJ +8{΄&XLˢXzddS+D4b^:p"> ˙t-n/Й逅rq څetyDw9@7΃b ,X /PWQ4uV DQ(J,n"&U7Z{3tLr<= +ޤbݚb kxn*vu٠`&RAxfC=tp߄g X¯ ]9fqe) `9pi0w+cR&a\&l,LUP[ )ڸ A`М7/5Bg9wGQey-<֬8WfǏ ;` ^~ A{ -؉ɥCOtBcQ~=X,]`h bqZ$l.J ;0a4;["pp8FewMІ&bՙGX)|+T ?-Nwoq8ѭ`-jbt1=YGm:9=k }ro>-m9-8&yXF<U!s w WG095H9u]k@ uKe@|58q QqXXҲOE5f#vX,rl/*$6DTRD/,|UZ9ـ'`t0`U!>i%`NB ٷj"2jz }Y!gE@Ǩ6gB ^=hS2kE4OJtz>"MI7^)219ߢRbX605JaMDeʓ&"dq,iub.`,r? .>h.buX8p$B9)z"oQ܉5haL,^)#LoP_ G=V8%Oߢ LM8`I&1m ׎ ` XtxM#Tzv*M5KR|wcBeq)ɉUʊ۲ YphND,T>,neR—KkoB\`!yB,c LZ9FHQf> }{/`1)21UA},Á/6o^i hd,XPb. @`,JP\`s\ʦwt< h,(feY b`*`{,V \ Dm(X'p'!wch;Xӣ-Y vTF%cA,BF [u.69 GgZs!XDbD !"rOM6X,6rFι.siX_wpc%1vB!%R >IVDܞpQR&*[G^ ,I(c̮o.f\1cv:+8Q$-u].rgS♷عzجcw0c'P[ߓX&̴X4>JEB<1:Vx~_cwE!"b[oz[ 7*{Ȥe{;.Fxdž?OvrUu WH,H,H,KwF}},Q#^zW5E+}^ c[E]B,u#92i%≯*z:=ݨ*km$Hb~wVhow:S@UB PBU,J:?*3Z]n*7 BԬpʸ#Jervt`noƾ;+Tc~z;[0^*{YTNdPq t0cn&X3un5UHXym I"ߌ/(xdzҭDDSWm}oćʻƵM͗"1 ỹgxT࿻gEWK f~WLy\gD^btzńV,2QqrWeT*7I^~S*|◖iz1_XC.1͞&E:tQ#k}}ObatM:ռՓ,gTY4DK+N,Ƶm-#W WI,H,H, .ig2՝]zUw;pR?YwfEJҒtW O g<4V:3Svc :3{֟8E_>m/2giG셚w̡vɣ߮yXXX\^<^gX5TZizVȃV  "5cIDX6-N-ĆI`wə 8XXX\1qg= ;㪊E$xvd`Ĝ8c_,H,H,.D=WV,&x!*hO^zҥ%hm 8xc }vڜ\IL~mO񢷰XXX@.8@+WX fЊbAbAbNeE9@ ;֥kЂbAbAbb   @, 8XXXbXłĂ 1bbAbAbŅ/.bbAbAbb   @, 8XXXbXłĂ -$$XNOej`.=umz|9PT|*ND5bqQH^C,Z\,H,H,| -ei/HMi2o}PV5?λ+b@,Z[,H,H,%bby\3gyI6ۣ$fo(yXEQGXL<*Eί bbAbAbE/Ro6{'q. %(Vr{O\.wcDbqPU`͖UhU Ģ̞SbqM}ەr7&P.Qs߰rE,C vmQY' %rhi ĢLH:_geɓLo(XՌVn[n6X3+TQ    @,*4Z+b"H?/$ ȡLWXԔ߶V6W?l2*hM ĢpQr*1LVCMĢ.@,J,H,H, IDAT ۝-fܱJDl;YZΔ'y9XXXXbQ>R mP9p:9Ռ#m*$$XT&uzkr߲Bzdv(*b4/?[;+    @,K1㈅oaOқ46rCw(+`˯    @,d>/ ЯbP>tB=  kEʍ]C,J,H,H,,拶<]N/]3Ed{u@R{c qXPĂ"n20r&d/  z&qägxPH,H,(bA @| Yzי[w*TY& x4{1`I Ns.e y/ł"p1 mm76\Nj lkժx~&A{᭓e]|6*+4Hp#?n_V3/͒Y]H|#(=ӿOoN Yߊ vOfwԁn[U0w97b0[2&f3fM7yktzf#6v]OZ}9[^Y󹑕> GGRvlMaپ"RH2es A(ZƤł"p19˽<,!cy~UTwfZ%j b ^:HpқkVsB޵+(4zfb9Aă1r Ű)񟣚}%Tr!78kGW` S j/o樎 (톚*-Wm3 X>[U }}'C <$c/0 [~R0NCkM.wgF b5`"(b:QP-vj=n5f񔼂 ]BG? "K?CY G1ÁXL71Ҙ>:X7C_OX ăRS9Eܾ9^fwUILiNڏ%]DzZ#&ᬄJ,*XX /*ʓЪ5jON,(bA 7c{3*AA|y{WE[,މEgu2 1 cB!Q~IGk 1 AA]xd@kʱPb70.,2 ;zRX,n[CǂtJ,\5RIQ1u; DѨS64b:nFJKU4Ă"b1'F4l,)i5|2 @I]nwxXDT?Ϲ =XSi> 3ŢJo ..FYYblc,TK,VCzEOjf::'k+J$vsNvJR,J "ٕ'IbwbA Xx0Q UTgvXVdzCR FmeS,Pw`X .4_4  pS&&NVN%cM;a[,LDk4+g_GC,l+0HsIJ{p,JMajS,"mV1ɿ"aP2-ظIqT,(bA OS":s%Vz8)X 8IcR, & QM} ȉsX"p%yg$%*n WLB}yWDbѦdK0Q;kE)d(÷X>jݏbA XƸ_/],>ѣX|8{O *t&jD \A[f϶N7wv+"^brUs [,>(ƹ{S4ծ(qSӑl> XPvjY f#b|/Xqѷ7++b]<}^A1,r¼ ~l`3V-bqɳ:;bwf&"QoшcH_"vD³Y9-/bA Xk1u\УX#.؆y@- 1϶;z||X"Zs.⽇B\n%SXʟ:mox`~ɷE)y9(r4bN1%ݡ2!L뺚9B u{r x>݌#N)ZoSqd*a9SK,)W\b1jM[V| \XlFCeX+S*rCCkJxLyR7E,\hV2.Gdk/ VZdux-"? ?Cl|ӱ@^((k_-1c]be<@"](lǮByA  ׃?s(3 P/vSkMLoXu}g?!f|0S,X 4)[+oj~.PbK^_4'`=?F˻po/̆&wO3ww_I}YT$!Ҩd5DEն|ɝ,8h-;g{^D@Tj0f&`a7gY;lƂƢRُ?tXw^2z>ci&J {q\, ƮwۚIY(;]ߓ\tb7 ӏMP"  pmuY'JN4j_utVnf=;z,~.XXh`tl} b`q7;X,gNqi=c+_.?nM,h,h,KlJ/ꨑQ͜ޙ_+8'X>>גM+ ϞG&/æNQqk"Nn;i={3{sh5m{xWz|78 Q? F˴Ir!烅9WZG9F;鏡鿱v~4eH{*#+'s0d0QpiZW79l  nOJoGJD3<U>p^xF k}c:;֭& O \{GZ˾˿]׾߇˟O63.s>\t,A /'/=RzE@1f 44 )qN Ulju9vB=պZƂƢQ'_N^Kn+,_mC  FzȑQ`QD J6\`AcAc01ҝ 5M\`a[g+HyXhg{]4Z' țLj<.?R]`AcAcx44`AcAcx44`AcAcx44`AcAcx44`AcAcx44`AcAcx44`AcAcx44`AcAcx44`AcAcx44`AcAcx44`AcAcx44`AcAcx44`AcAcx44`AcAcx44Uw>r)ňQ5[2K}͂Y]"w~8jq1eUw9GsƂ\L=>^ tKS׶<`]FTѡEw icV   J2 M xk)V`k\amb5m`\, *[1,h,h,*MȠsA!X@:o2 JU%I@cEO"Hh5Xf|5plZv^&4 KƨG"C}*Η€Zt"c4}ᑴ][,Asw iqaj4Gwn_C.Y#TH!_W$XXXTo3_d.1lqZ {o=X(=\z䏝"z$*m6>:}n{`&rFnSԤg9ȢyЛI*5h4%wٞ&wE4ԮG*Wq7l%guقH]+,6Mzi o%v*|IerE"oGα ~BiH)u#X_!g8>E''|* hLJ9eb@Na8`=iun͸J  *߾ ]wJ(|{c8,P8P,wCOg^B6c;=ESIY4dٸ}')ɅH՘8 _fk2*U 2܋޾z{sB)~j;{ݘ\,q~t*oO?,"Ʊ& c7,;i(Xd0~Ie:i, 8] zeӻ*;]OUMSJ;yhӟGO7"}5]Gj` ڳ D" G\ * 1#"Jǎ`?^tg;4(ʩt)h FBP\Z*nܩrɃU|{zILOwcb+[qCbZV; 'bD,gaR:>ktdQYMEO,]@iX@i1X?NtJo(uNQKXv 3Mb<'6fxv?,BF¹M`yqob;B۟`ܽ/s,h^7x8`X?B~`qZ}g"<"a`ǚ/9qd'i_9חxU)(IEoBc1w3 QQJ M.‰X8girnl󯇨:>,R\v}FQ Xm5 1c}FB\T&"(r< uèʺŶ pGXUy`q[ۙ8o~pY`acI?-m`!_dt>[ʬ_rrvKo  R—.K>u6`a=n)yW~곜2rՇ5튲დ #6Q?^k!絬T1b{WP "XxC?jW6[ZZ/{e&vsyX`SWUkCx\L@*-a40m}#54bY^)uHM ^Zac, ,D.^ʮSd:'p"N69ir?4A^2 ұPb:rZ?errhC\c!`1VtW͟i5Bh˅C}|YWUu9B>_sW轊̍,) Qۄזw_\zwo!PմDGN9P n-J!| %Aprp_Iqx])͗H+L2nW3nirwDJF @ r'z})P 9Qi~/JrdY"Z_3SF*3Nɫu3*Y{eB'efRIBRv&3],9"KOtiGkzSyYs8)d]';2mj_u?K&PC XBKe Ĥn,rLpؒS1h"e,ZR_ 8n,R_łbRa~!,um(C;:f Ks1cꔂ&*X#o;C-K!Sw t8FR]iNd;v7Ykᗨl0$!͒ː"b&X_:S 15-[H; K[CbGl9a[h':Pځ,,[(2{46nS@gM+sƳ|5ioX ?=+ͻxhqDLk $;`! ƵchP,0ahQ%GqXDQhazW`\)CN8/Ut(11W?`U\b,E oBrL IDAT[k,0#!WX8 'bW vdzMbU`1c5>H'&X㣚*hQ3 ,z=WDfOkJ,,Tu+O )/dD6Z  IDzUygJb;֔,dwÖe܅T>w}u+6oPf'e#!Wੵ@ 0J{aЌu>!l=m}-av -'+"^@Ja3fǨcUVEYjVE.x󠯞b?i=B=fͅ.Q06(R󸕁wP>X0Ti'UÞZ* (bN 6?YZhC{yM`leYѶ.x&ռ\]Wՠ3Jܘ]mY,[m2k+YmErlE7 %VsV°4q*"t>]M= 7C! , s2k,ZiӀMm \/E#=K(T˯ͫ(h,jԄX(A6i%'%U X6HO0cC<)bgk,:0#X8 'bSeAI[ޭ"R ME׀ERƑjRa {`o?aƿ[S?]P 3T$x#xepH.Z;BU( k6EE`)N8FiewScJ,v?R}{ ۜ~RPk1}k;Y[m!ߝvPD?I|d36c=BX|??4!ݿ>`Ƶd9sT$ Ş"?ĭq !Tc&}wxP[r/0D;85I~<-pXp؄#i HJ6kQ3ǩ/ƾ] u`A%#}= 2W3`uI*p`g+G{'6Z&X1=#I=`mRFSF=Nܔ\IKXL<_ Bw ,(-ZYX4h6  &H OڱmXʡEv SU!Ux,~쒲)M=@,ʜuR%vȒ뎡NhEb}]X p1CcRF ]\`&*J)Wͽ00Ky*W?7 *YLv&X|'Ш lG榈kC F$ae v"#okNQSbHUT. 4dǢ}'!_MIGT? K"'q rΒC@"H?ǜֽwC/FX6l\HK?ڒ13iЕg06wj6QkB6yYdJ~M0{4gUXt[V!h!@h;j/}.p-ѲLE t1΁aNbU[knvrǃ"B( zc戞k`E,p? dSYju.5b౸ǎZE C19MDrbB ʺ2csy (awe1kS!UȶO cv*ƃ29k'Xg20;H7G"vfJID6V{Qa%D;z+đكp6M+ϮGK$FQC) kjiod*= Ic!QyG<^7`z~#5P0EʂmcO oR]8ͣAL$ŦnsW5q.,,d2 6hxgw2;>/ؠڛqaFp<I$ƃ>H]9(l sXWM)yMfLx}j٣z,zmE@IljD XyPKc[tp]F!tD)-t:Y hNc 寍yA SĖbN m,( K]¯d )a) 4X <ſ߰ u9iE3M8,q^-ZMx5_ণ1C0Xp1ә Yj7y rV :5Qfrm p[XEa=e'+߼͊bk-X+{;xt+b& m'ܗ] uc!, B]@ 1^Ȓ2wrb=[o@C~<96W8Nx-_RVH=*Y}|ssʐdg#r}ҝ?a$g1W]ŀLnŪ< al& Vuܩ"^]ƅubA?{ װ#u;oQ1ao]O b8Xc]Ux-ʼ_}eJ`=zA~ ڎ! !ܓTc攚3KoM\ hAbk*Qjk`' ܓ]eƞo[}L m!^鹑::iEGEt[> VziޠXg w4}\a^7obx,1<3$نbg̳?a՜4ڇ8Ku#.kK`3|及^\g\X*ˇIvVeFj[?3CŊ)Q}`S! {[f>M_ɺZҳ! ,tC2n[9!(Ä ]TPM^p&k2PM &|e!ʔ<B1Z,(զ4"`KJa*K qGj(7byd(l* Z'maCG@ OpYRۖ],`]YjW6  6-es@ Ǟؿ ,2"5SDXtT*Z`1qڒ d (BYb}Q~I!x+9,oS~s#3 9c0cz./v??<~®IIttS˜!~otE_=b7?_PV~!]:\kFY`:dT|~T7oofr9>º)Vt<84XXi H݋~bƳ} jMhz@oAOƔDzldݖ.l [xߢJՎ38.#ĕ]7Mֽ˗%Uo ؾ>k }5UKh&rQ>4YrwM޾x$m+HhZJ(q~S-؅;geĢEk uux`o`E9pC@[ ,U P=\ ]CbTV(Xt䎘bs)R{@8?ά)%㟲 A6AEŅh.* bK-.-׆v l[pD}e>䞕EUgTPdURyC\sX,:x@?bi }|qan횂߻]zc݄o\zX, ~Jb`:"|dAp2IS|,fPs,o)/H/|9t?rd,`Z,\F[HV Uʔ+(2am|8&0bbߧOj[X7!:6TE@R(UaO@ vRu[ uQ|V`)tҏ:ױD#[N"$zJ5~u J2YG%Eol&B>ĎwyA DU#6trS  8"T9X-i(TV9 &> HEx?l9qȮ,f'wD:P=d "[,t,z;v?Eղu_5B|5 Տ'hہV/1,+Tc&pXk EysHbr.]|-gN`]4 @&߲֙g/g 6wϦwc}a a=F;1+M~cx2FD[pMܟUbZ,b~:QvPĎ/_'Cͻ3; pa@BX`1,[ k@ym݈)XHg ,7hw򂩬ԱCLAPY-`w}+05EۑyuڳEu1Ͱ %%@ve5 ) +VG dqS!yb{E]tiy䎺'Ӎw}!@wHTQnxZnX,mP~f;zj̛,[d->YE i?3X'&-'d`U,}0E4sN{'X@Z: Lg4ì7/N!n-`Z,\k" K+ŷpWő[`heFY:' ,Z+^rv~, J^ ,bD^'`S5G2 QTσ]+~=d]vx@Hc8, .@^Fp nC&Wxs_ix!9{|!64\$MDڿ#Ph1{mY/Q:)$B}cf@ sZ%lvU=55'Bawe]=7A~,6IP\[1^ 8Րc&uAh3XGO,_Eb>H₅[ bZ,^vX=~= *٣](}^^ , 4G2V+!jqLBQF%ZY8^瀼DZ@bȖkh(.+vmp8 n`FDR޻=Z!|S-~ MenSڀEU`ċD2"T:!:Q7v(&)O3ot Vd}TgA}zj3Ŗ5X(OE~O] 6$@Qˍ-X K`1ñ ɼ[otHs%-y'ӳd^:nF :=H₅[ bZ,^v+WNIn~},,rPsBLW]!Xڵc1QɘsP73|sVqT/RcFl^g w(~SPb3`э"~oLhi3*ܧGR\vi*s^}̟T UR *ч&&{1|m; ؔw(Mac" nkSVgAZkޞ44ב x^q3FoEtY6,֜$>ꔩ^ԫ>˱LqSfE%dXC"B(} `ugY NChwXzs]YI 8Ap nbX},t_mܓha]bq1m"@1pus0;=KL=ޢd dszryZ,\[ %fe-R7vV(X, A "!)^*ңX(J̠ϢԗJG 8[,TVnqM+xXsL6 K]؂κ22 V^)(#o?}aMVkPjỲY-o {/׈PbiOm EoR2m fEb]_> lt@L鼕,ou[SZe5XƊIL<bTGXeZEѶ;9I8X[v*d/_J>xj-J/3RHi), MbQ1`s-W6aNʟ80v;m `夢P5 6?8_F"uO[a1M(u,,|` mf*,6UR"??x_mQ:?\*_u2K<%9/i ٥{;ѡ zp,X.>m3v j揟}GN pgrwx5'}v)Gh#&8sCN_"'jG1'?3c;2=i3qbX!y70nڰҀ[XPGǶ!"] ,X?1$g}Ч :6o L~,cp,Xh4!x30!Q@ 8p,hLîfXKՒL ߅ 8a4VS<_}=/@ 8p,fH:sy[Mok , 8p,,,Xc , 8p,,,Xc , 8p,,,Xc , 8p,e IDAT,,Xc , 8p,:0vv2,|l ;,4!] er= )ocV(H#.,XhwNHxL< SL6Q&$-Ctlc{l2fs?edIŇsJc 5ЃcǢ0Q9m21pBX@X<y¢ X'(^vd 8p,LFvw$n)'[!<33NHx/!&,ieīpN I[eؑ/,X0%QuX ,~Yr8JFg@XSi, YJ7a+BR{B[d:{EX e[ S lSzaa.ҁ(,aN~a@ nl+av]4?kl:󆽵0fg[ \UXcaOȆ6 7JO/'>ied|(^V#SF(qC5ub\:ry|=,×YBUXLBfCNȻLb#,u.bob9)$tb>h C_ʂ`=(,F ޶Ћڍy:i$5a|9J7,Z!a/ø+UaQzoE00>|KOft`^)^UybnPRP7%<<✢ZR)m&ڇ|H[=,gfIƄNXr-]hRI {JbH/I BHt%L.>2w3<|3Gv s@-#Vz=׫U>I~-nYZkHrq wJzۑzqCR /63j'qL?,!1ylqѥ#$R7srC@]Y&/Na]~Ǔv8,Z.EWs E}S_|O*B\47i\⦭8oؒDT,,(e-s/ZEI>bQViZ"L"f{kB5QJhZX ϋFSD\x*$3R!f=6rB?XVII=@  ǧ&D4{3 O]gzbY70&q&0.Ix pUVy A>XNI_6%-OzOzf50ܳYLx\M"uz_&b5r539/-t/%:7=U#3BgP'b8UwӁ芺}#cI}йāIux('xQeѵUַg4ע1c.XT(DE^\l -0 b wۋsA X\gyoB$ǒ˜ iɘcl`G_oZD&w.b~`7 Ȝ~rW ]I9m8]FQ kJP+p}zr<Wweߊ6aE&l6!޿(bfCi5'B_  op|Z|~yr`_.oǾ6''"VV_:(C,[_ L;f)("pc<,^SwZGZONWҙ4tfxKZ. =1_B>K֮xfhxn0Y=1u+(B$C3>ذ1;(YiϺ_<I9Ϳ8.u(ȳurxOr-{BA5\0GD,L_a~8%E4`QtJ4W XPYġT@*p?$=SR$~ yL6 |MixPsCt~/^gCI=tF`QN lyljl6^jVʢ3O d2I5;:O2C#߽`!x|"_HTty=Y$5P& |r7Z 4f9EO?I쩹 E1RG ɪ̦c a& E'G9;z"˰K Q*FW(=% kј1t=t?ebN[BYb0XpOI7e5·JHʷ1, vg &ba"Z R\VRb>C`D)`1bzyN;L &`؊KeE)v.H EIOXq5=WI c&ΙQA䟜5Q/xϛAww8g%*в@_O>E?-~:;ZcEt=jN0XPiݘQUgf F_bDJ0#eݰ!^::4C֥[u>@4B7W~bf2f X n]7 X%6 X\|MAgo,8x'ɨKd h݌ry,64A &ba"ec]Ł"Q:s,G6@95"b & X<ѪhO vdRk}eVcf;49wֱdpt5?33dT˞wXVwXE,]ߠ:8$CW,? X3zj*W5712T#z^n)CTG46DES7ĔS/}`a"&b~W$/$_+뷞(? ,|S6]]Ǚ&`Zb*g'"ؤ'?T~ZZ6  ]e]>;żtD,;Q!d)ܻ9XT\:@ܡIR?H !:QXhg0~9E +a5ſt_NFꩫu4nɐ`#aN+C:y腙MŘYuRmy̠5':WK"yddz*+yl #D"IGP8TwKԁ[h ,VEDͅg_PaeO`ˌ_Ja5WRGygɮnx\% p_4פ3+SҡWXh\3sC+en vsU.KrIWXh*gFy9^*tWXmz)J q!1;x d,|)F'E[qbyx7=yx0;0EoM?ܣɮgg4>p`؈l,E:.[.ڄE el{)jCabYqjL,Y-yjTT% Kv?%cЪ %kLdٟY>i;3"1!v~YœjqjÐKwNF;B̅R[X̯_7d!eaǭ>DCCR$_?vju% 4ϏV_X cDp!zșuEU%Fa]S %oM1Yk&,].eUzihQ,[5 6aQU/>tZljlnfOKLZ)Yn35[QGn+a1z6kk2cH Xn 3Vo=\'ܞD#]zI6nN<. idۛ0X cHru3ς予"/!*Q뱶iNֻ^`lGk.,\Gg{yL۵- :Ȓ-&,ZbL׃@CdwbN/tlˁ1o&;|+SZy. -=']&b wN43Nim;am<x~l@b -VP.ܞBfY2Od'В|XagT5\ի2X1^@X-ɻRsYM9G,F ug5i:e3&,ymM4M带8E\bke:WQcN0+N>Ҵ4sY5N^9ܣX䧕 Z?`c1ەsGqir(WœPЖEN8ܾX @b/BXx&O'RI;dlI^|ܾX @beh2Mei,:X(b߷C_͹T`=uػtB-B{Cy_tB\E;՞ `(ӐQ]9o{?t ;r*SlhU2!n X(T^9b?aaMa* (Kp5yWx93XѤX|&(yŜԋE#a(`+,3p'i()ۦ0 OXYR J,MS+\Wb:Pgfkq*H,X\MhGG=J ŋbi|W6Ѷ}1bGvxvogb^\>6)ɋJ?Ok!NkACKX,st"d$33bʆSv{ U,X a÷ƨ?!6 MEI+b4,&8'ltіXMi P_vlp[i@kEe 'Isb)uMb񽶫lY5juZcX$P,|E{W$;46]yY!*ąv'uAS8X%2wύwN/b|(=NlC|sDb2U(~G,abП B V=X)ޭ L%E} X U,$SտQY{Z[ g-.*bQ,Ju$2kֈń6P'Lm8ÞP$baX cEDzlAiu%%xHieX8Vߣ I-'+t`#BdAWәr aJi#v ~{*7ͥu^JH{1O*[IdB&AeJL@|yXLiw$i%nFlj3EB :wXQԅ٤ V2XT=:);#Kk?솃bc+vi<JEłY<`E(e(9oLuĂiSӢ޹/'B,X0YPłE쉡PF~*MVcwc5M 7R{)=6u=$$' cR:(_z_^ V3l5-K)X;oC,, d,ƕb~H68}F*OL¹᠁X-bЦc޷.a4/0=b%tXS!#]Ģ=@4]\Wr- \,ڭPB #<,V] _5 U݄G?/˒ĢSvɞP(S0EgPLtB1d"F K d,j"w )I'fۦ H㵃b!b23+5tqe 瓺XWs8b1qLc'BvuOktVbłXnxhqIBPvkxu? b!L~V$_f>LruWrolMI*b!8g\ΪT,@Ƣ.KnVoɰk䒻|Ј Ao_Υ]'::訮WsC 4?[ב@ߗb~S\wZ8NFmπM`S>^>Sb2MC[X:BЧW9؏& ۀ/X c, JC C,WC)WwrP_VfH j d,EB[^ iy7IZh t31 F,@Ƣi$ \u2Xj@/Z-ǣcm,X c@k sXZpY2GY,@pZ,w㑱v d,x:^-3 c<X cbqg<ߘ$ZlGNƉC d,̵B,,Gñ^Xr纟k,? d,tB,:,Gñ^XlQL]2 h@ T,ֈ E>}z-_}bqD%X cKӹNX,JG5e^bD4lWA, @ ^X֔>N,JTcZ^,(FۇC, @ ^X޿#yV{E%Fz b]p775E{txX-rw>Hׯ8=bWޞ 7>C,b2|(5:F,T1XHOyHw6JDL 1Q`qY-OqôRVsƚ,cYy,3! m+\HN}"kuɲ4 2tV/+29 y;fܕZ@ Q(,ɕ%꘦8}9m+q`ҕ,WCwp\a;_߳S@S d,hڦmKĂ{EV1|XĞ.e ӈR9V ZAY,k/\v)vNkLJaQXVcM+~9/"wl\)n JYjՅ1$tE,3vY]U_JUr>Y7Oi|8Lhf8A\H zUbSuO'4E,@PcG`Qz%18#W W,Z=X=XĜskJc ܲkP&KPhDD#TPIbJ4*M1Xe42oyrvW% î4E}O_=`I8A#e$ ##$λ]HV"Y(,:zSÅ_[N//B ,0b R`Bt#{~Bf!Ezc X9v"Ou+ԫ<`ApٛH/PʺKyj6XC&KxZyB,&Q(0%M}B$ˀXli>33BYs(:اt-iD^eyb.BF{"#'X$ "XP(ԃF,0bBO"cEh,`DQ[J0Kfrd"ܜ?A nTζ C^`aơQ,D<{\ŀ؜p:r!p,',DykіؤuG鹈"ڴf\guu- B= X`#(T;V\fN\18Q~Iuo Ů,bXyfl[:Ykcpb,Vxɚ ,NƨVk)#6M8#"MyOAԋm ,^CCUpaG=XlHGZJjr,.h sB;,, B=X`#(Cˡgd O@vH_fnui,Fxߋ ?u3|ÜD?7/ufo#n#%H^uiz7_8E/mYOp@HB X`#(EY\Yn6 J S)! FF,)(!S"[[ 5G^W,w mv8+ʁ%^lI `,Yч~.PLf(7X<ɺ9,%?1*~MO'A߅eXA2XeyXn-# 2%d]fE7~P(]` XP u`Q*Le%=ܗtĻm{E۷`1,9*BR% ,BPX <9W<@}AT}gSۗʑB,x=(p;~K"a-smb_ AaJSxE%.yQ(|`蒟c  K?䳩#}P,Azf,0ca)EkZS9~%UB@ X`Š3nÆq(7q}X uYu?ﺫ;L_[9b=г@  }CA X`‚1 %b3H8&l55z%c.8Z W.Zmz1kg 7 Uj1zֽ[V!}Fj+,'_}*TN\Oގ;qלTޮו^= bU0w޶w A~maί(uGy(!?Q_-F>Z" X`‚dIV%kWXy. ; S?߆8.E\V2@Ʒ0W7skP=1:)d4 r$bb%ّ_*?_.^5Vn.A+y'1@o8縵X~E')'-QNWۢiO QTH?3PYʜ)姎9~%"XkI:"[D:QF؂L|cs.S0  6 {0e8Mz8w?Xf~p*f Pk]bD ow3H𰾾w@\ L gFw|:-{&_7%Ssb Xt#{R0ALopp ߮&]okW,ꃲ AXPړ0Gj9L |SPr:XLsf̱P*5sbDSݾ9Qg qNHY "\ &.RlûC,lG B,Sڶ~ް7~f(Fw7/Dl X`ƢJޙgtO,VfEd$XޟUS)(^bgAXNubєs(J ~%ΤXtEbB] VO"aѷv`AEp͕eg6Ԩ(K7'Nx933Tw8M-c:A!D GPN8Hһ*l":!XV L6ʫU[EW.A 'DE3vX Av ˧!JimQ:QQ,ܟQUK[ktb1.=,{%]eTڈX="u Y")Ե^rSQ,9m <:cP e],quɾoE) Q;X\-;$8,hjF0 AL T^ЎydԴZJk֢ sу !fe|gϨ˦XϚ6mXXX8y.6a=vri۞oGU+x:MrL/ .ʶX)YHW k5l'Z.aOqk]k+l(6]*9n 9f'Wt鮡86~嵓EM3a"DÜcr&uX>~P {JDn tU]lySZw> 7nn)Y i/n7yWOc*'qկiv>c  nOmrJ2>Ix\#i<`/$$bsڸMKBVnX ˂(u|up4bAbAbQ/%WnX&Ή w ߘv氦h@łĂĢn$B$ɥ*7H,w,N4' hXXXԏɃGu\n%zyn w׉' "$$   kłĂbAbAbpm XXX\[,H,H,-$$   k s3=/@3 yo5l4łĂf{w]0ކ|aM-$$7B^a} ~[,H,H,nb5 hn mYm|nM.$$7A1bkx{"o7B0WoM,H,H,ndxŢe4>X%$$7A[cĢ=o3ŊHK,H,H, jb !`mM]@ gZ9bjxFĂĂඋEDl"E,.3y@D]bLo:"Q Mt+EkeU{=(+(`󣳧g oSO}4Pl~}#;L 4XXX*8+mc(?+7t=x-?u zĢ+."BtT/Yn wծ3/妒Eb]n77TA|P~<ڊm̚xN2$#+T7[NpWʥhID$b3_~X }Sd:(2?hu$$$a1e/!}cm|>?wybS Ɂwؾ*/Vy!d7hSVWGj=1 >̈́1[gި5],~OٕW-'fCO,(Cy V~"]4XXXԅ9s8WXuS/j;JF5y^-kL"޲}?e mhDVp: I`ugqTd1zWv^_VdfY{Ld(Pb䙾9-o΅$z󅑄u_ F}HXb;$mrKUq<ϻgdkZL?wӭjrĂĂ,'|I>9qXo10,!56X F$<ϙ S,Eu~u޶c IZLz0$7yɈ< :H.i3>1uHXY0&kϙ8ygTM,b1l}5#"Tc $i\<;zebq}{C@Č3X4XXX\1%ş@9[,2UEg>?ZH.I)9{uGefbc9rh3ܗhYl?w]]._KXdxa:hJosKNe!a7qDf3jcyUHVql8AĜݣ2Mř 8=wQFc N#f]= ;N{Y֊EE:DbM&9bPFXbqo=ϧԐ9bcc/2mOɞ`L>H, sIbVXb2ϵ\B,|od<}yőhz͂v}YUe]%Z1]pAG(9wN__CyQ.ٵ[dSXtα(oP쩗) J"e9^.,mXt~>hX i&$$V,z g ՖFXT!Y/MTzż +5PYC2xvNvK'oҭYt>:w $Yb )w1sݕcn ,rs?I5/f? >{SXlbYHIdC>Ţ}kêȚ8j)bPs}ߊVMM Vn/x6ҊXĂĂĢ>5P*nmn}G%cFB}OaAC,NZ ̇%תb 5+Կ[S?%3,(@DE ju,VE)3\87~N$ vNsQs\YP9hZUl[_w]irtБ|{2GU?wf0 DV>_g̙U `/y`q@ 0wh4kLGV, %,FBPE_c!<=EH 4  x{y#qDw!bLV>2_,Nqɴ6`T[=,f|cq?G{.$XK60Ȅ o6dS\{+{I3X"x'X;B,"8@U0aof9/,&/ ^V<*L`|,;{{`1˫Kr t-n{=q:{t<#ܬ[v1 _T&fkT, _<'~Xa`Q6<*Avklfp&DK|B u6($l=,:3Xtwy+b'-k a,`awt,w8zn5K8O  YIhϡ"+G6X,mUs ,>QV=VQqOCr, r^ GRerV+ɇҼ(JwwT(c}MihhӈWX)n-&\ 'ummJ3K{RoGb{y .1r?Nw ^,yچ ,>dq-=>~,&L\v2IESǫ)*y7[!c>`}KO a,bQv+hBsѲeg׎jF~E TFg(ԞC7h؍D1m$ʋGhb cyy`1QjV\=VjVҪ;fε.濉3XXP-[ZiK|_wV$˛T#]3Փ8cQI+nbGmJVyFpՔEV7~|@]IJ?6\R}%0NO4:#&ƶ!B/u~vRz_[}f9H-#lcxJ+Eʙ G`Q~\}|^@i6U눰 9 K>`aUi,lC+6qEx,2 Y ,$92{;8d[q]fGʖKTts|*c^e;φd:ʟe[*Ҝg3e8h},!rYBh\w XIZ`T S91N±i:l9ǀ:V~2w:y*`27id γ)k VGv@ }aeOdEtM9v Y-s όcɉ>"mt$ޕ&":ԯzuw">`jl-HLQHAaobc?%P|M.hZSpEBa_ j2&Xcg-gP }rn |), $o2Dh"x -W }@=V`ݾAh>Ou<3o `Q,c0уOfX/0EdnKcJD;⬆ׅjIr=ѡ+BmQv?f2}$;(n ȃ͞Ca1 ]b #:^N&<cX7*bF\Qp4Ey="Ĝ;)npAm0:j$Й0B<ɩ6 5jr!b'`|A%,ڼşB+TX#(8h} ig:+Z(C IDAT,z6Ԟ`bDmP@\YW=ۏ4,Q8+Fz|\ wTpKJ 6'NRa̫-Ϲk^'d-W0ǟKm`pc۷ҸD~j/cswT\~`Xf)D 9]qzSbFC_:Zp!bgԴE dž "6o0ԑBTsX461lB3y&4-8-O!gY mc9y1on:O^?xYf*⬴v̯wgzϟt7D@!E{;Sb.rQyONIGcHvg'RPiQ+b˴{@/&D(|o]Nו-Wk-X>m7R8gA#kɧz3 /E$f$&7IXhKf KS"D{ ]KBbRb$2Xez S(bHH8)y>bT 9u%,Q'E8|kJ ۗܮl;^4X@" ָq)؃#]d;82X l3Z?&ϓq: <~@V+2yzCa-!Ůl `5X`|͖U3XPͧ~>Eۑq_լ 7LK]Gj{oG6M?h3~TkNwUM X0Z9, Ҳ ]v䶬 `QpC|rD]V@_8 X@*3k0"E ~Xtg xRB}GbX,"A1i[OdȑGCc|UGMq#"=rQ Bsm_s;\t?e.ε=Xzb:-elGd`Q&d@]+7CRJZf`]D,u>H`jX -el\neyggO.,6CV u[,о=`Yuf -eW{jf]+?N?e]Pǵ^jdJRݳ` XXt"9{"=9oxb ϴ  jQys]+;ɱÍ1X"d!oHb߉Ua㴖,yQ`o5z~irXt(ň zL D,L]Uly_d?X)ʖt&:ym!,r$.zr+q^sB@,I;O !7yyKB"U X@"J}Q}pl_MzVy*nյG(a)M:5a4+ow Mw zȘ~rvR(eG7D絴6TzYE)Z}, )Dsrs Cr7K=@8˳DHX6`ǎj VQ,!D1j^KR"R|&e1#,[fW\D}ܲvp{, b ˣI4͕Ȋ y6J5g.ہڔKֹfG=.~3/z+`wh,NT `}A?z9hHOY bLɇ,Kп( {o1>݀ki , @Oh8_^N<,P Xr/Nj {QĦy`{#[LJ B v?Rz!_|e=~*< YOS+m,aH% \` X(a|7 7n=] 2k F.w!u myN3HmSpl1{XA7?, ̙Hx82#o0*^Pt]qTW-Ą"H}C (-?LI>+ ?XXXl}q{]|x[jpSQVWy^(^ߝo9^,h,h,w44@Ƃ;XXXy   `AcAc,h,h,w44@Ƃ;XXXy   `AcAc,h,h,w44@Ƃ;XXXy   @҂yy`AcAc(W$dKIll gEɖ3'   v(W8ɢt,h,h,6X `AcAcBU,JJ ,Up癞*.P>'?oھ٬Ƃ(*ne mOK 1?@!MŔR7M v44@!>X>+W^(6CqeDbO(5vNƂ(G-h(\Uw_J =|Lo/z_?)XXX EBsl+`*0bH5?{Sw?k,,`AcAcKxzubPC Xgb|b _ϻjf_l`AcAcKWFƈ^(BsO}#ꭾyynFFD4]EJD"X4>;=oE"7F#␵eVo1d(я:&?ƣOfĈG"`D$&͑,moG v 44@FKp}]Ōs`o _Mt`Q>﷽Gg#%~"#XdW,;=}?`9> Z4wg#f̙sV41˱1g{JxQZkǝ$Qwy֬OGPf[>m,h,h, `q=9Ů5ipI&ni8.g8,$bRH[Y]>kZG=H6Pu`qV >Ġ=WrLk8 _e;F7]MN.ݭ>~Z٥$qJu6TRb~ws([R2瘊}L&ǬRO'- h LMU<>2LTt!,GJYYA鸊ۛ|f+XXXbCC"+3u9m}&K .%ܻq%{()swٹOЩcv+/< ‰ Ί3˃šgCcZժOS f:Byi1Pn/!jB*XNG `K, aͱ~፨؂뵊7&XYV7ard@a|Q k/JY9i[g?Ϫg,c!֯`[   `S4uS^t76?JWs_ԝnr_-/vɽʙ܍^4&~ e?;zKퟯ&O7t'|MҖ78w7W\x,){NvԚڣn=t@'6~>`!:^vL/WLˠ3UPj:^{i,yI #XFLM{&o/Up0^P*a'f:#X̍{;` yJ-+ŗsɓy~ʚµP,XXX+ ggV YZZ^H.ԛw;ɬ4gfά,<={ᔵקقE> "!3κ蒵thyjyb/aVN6-XxykGA E=>c}m΋e 9/v^I}f^L`aPBHڷкbJ)3k3o7`3y"`Ue>jyZQ>v)=R>,h,h,`[O]];/}%,B}zLkݚ"RiY0'b9x *5M~{@hKJ2n]P:P#a3B5Še󐪠پOebX^%W23 AUKԍw@ZR( iUdj,#X,q+IWb:K~zǣYŤs!,,[6C,%Xf `qou{U^ }S4;B:L~fݾj(D~\,D˨ؽ;?HкJ]ҿ骈3!ΝfǜMOD.E޹75qSv8(xC. ;+DXbtKPZ~=Nܦc>9M&)<{¨HZV9ѽi8y/G,*SICX8e qiSA!8b1R+3f\vi-֤/ybqы4#DeESb1!.ʣn3ɥE߳N? g(5EiBxxbWEF뉅OiB-`Xl.>y$ .&PݒO,C3eoڛG?d5.1Jם|5Xl] |TU)XLxXL'D^Qdʔ[nX&IEgXz񃮥PӇ")Ȳ{bR9k g#ϥXtФnyXE"X \4$[z٩ֱj`S2kJBP,͛E\XI+byYݩX,d ?mb`#KEo<&_!RM ĢL;5q: nUbq'# ]3"gx9b:V}EA_;5X\ȹnk?O Ȳqe˷?M]ĒYVH8+EbڷhnXl] &Tl9.DS%ŢL&s]hgI b]\#=6WemjD_52diome#B\Xr(mwbbQ֕ENT ZmہXl>>̈́fWQn.:\|hVJ3C}vd6L DuYa-dL!ι?*ڌϴ+$$߆J7+'ᔘȹXG3ӍE?[,jDV j b,[j,Sqq{!°b[rlZf>3H"̚EĢzv=GOj}B#9yjEM՚L iF'kGٺjٺ/>3KȮ#beQ/-^av7m۞X \yomb@|X.śbqrbޖI5T VH51^+`M/΋۽B^]Uh8Z/*B#۟zuPzcsz4n|Fn({ë;(%.ܵ oMMdO,)mx;buN8-7R6g>kBTϦºf9)P keNVXD-'$$F,2à "|D$^:m|Kt6pK&ӰXTוs"iޗ@zgX?L(};b^CK$L9CcXM<[;bҫ':ĤWMm59M!̽ FŨRbAq05 g#}v~E|;c`XYX-;\XXmubF/."VK VDXXX%yfBlSbbJUfrT!\^,כv XԦ͊*Ύ{gL&baIoj!ðГ$' K'ۜ|`SW;͊Wߡ{R=l3Oq{gx/BwTkM5a;-+U}6b1-Xz'_e@&   `"b"΢Ruls@,,SOU:]+9Iܥ}n)v6eOvY9baT= 7wbQ਼iсbPn^4[ ^?~<^H    "W²je{{_kS9 z b={ϫ[L_=j -9o9oؾi>@@b"VD#2B@PbEg#*$$ J-m`CłĂ `cłĂ eK .`CłĂ h4!*$$E&8^XlXXXXS@ tbS@ ŢO`łĂ WbAbAb5E`#łĂ ҁUpN3 `łĂb X,H,H,*   łĂb X,H,H,*   łĂb X,H,H,*   SI_Aa",H!`$ȆBTe{gBD˪n L& fn橧{Ƃh:XXX_ǔȓFX|+uho7S˹Tj`&XXXv,p[s\|k.ƂtH8Y[Rm,Es\V9,h,h,@g=Grg`(XXX+g*{áoڽIvj"R,9x`]"¹n`AcAc:!X %󪼫wx~.)VmYp;WkORR|R^ZIKtnJ7_Gcn`.Xt-{nz}*X\ͳF?*߬9kTJSfAJ6o$бRH-JK=geQkoB 44hZG=5rQ92b?oK񏍻f)w͖>fFo (k@!8AxD"szǼJ2!`6EF "r=5(x}JmѲƂiyGd32߭f\gJ&I-Lʈ5{/wlg&59[QmLmTrwĽ2\FWOE7X5I۪b]2ݜ 44݃ED9\1uvP=j;}q&D1du&I$ʹ,I?A(:X Մښ{`ErnO]\=U,t`5bn7x   BTnt!翚RgI;XUfD^)V ujo$sQٺݬNƏ&,EVÜ44xA0x(Rzi$mACjسs*b=ʗmxL:| :Ķ E =[\j)ONp[8XXX'a5~!Ul(kkU`eR"Q^W/p,Ўgdh,o,6 j}9eh`{.=.ؽS֥TWV_)4>|Nv:Wj0/Y3ZT] X(5|#~ܪ{Rj,쓷/ջ]cqYs{6XMr+7n#ï sͿ*rr=X X,Z⟯ c<+) ժƂtDP)4qLb^d,NS$y۬wkř+s EdCׂE Ejƻ]vVǏ˿}3ޢƂtFPnIȜ}FDwL`/k_f,fA-c1XeѪƂtH0fFҌ'DXMTrlox,tDTQQ-vENox"n:XVÏb q[4XXXN "^g- $'8)?]jx_GXF$mg-O D鏮U uYԇ[?c&n!y]b^sG,}zh7'Vnq^[8XXXN~pT4G   "J44,h,h,@'eOt44@Ƃh:XXXM   `AcAc4,h,h,t44@Ƃh:XXXM   `AcAc4,h,h,~yHO ЉƂ|Htb.E'夿xA CXT-RPjjE1Vwz ՍYb'w^/W@&hvf`PH>2k͚ŪMy #W_P,X  n,H,X7 $H,b $bQ-e[=Gt0~y@b@,fr YXDaˋ $bQ榔 "wXX @b e99i}&|_ bbXTq3ЁX@Up}`mSuk9F@b@,*Z}8HDeƝ !X @b _N,Pޖz'C=- *!xg^; Ģ ({8>lih rbjS ƲB,z)f-CD?Ѭ#.zJ+ZXԜX @b y5%HjjPZ,ZR,: Kbe,;9V6 P5AzZczjI,e@b@,,8Iʈ ON] `'ɓ=+L=cQ{ .ڋY]x]X]iWWQ,l 2?FcY( e@b@,L,gKEE*bq0/NKeg 4mQ!>'ECXX{EoǃDe~cy:_`Wv¯Se],_<|~-?pp 0nXXC\u3*nƦ]Vҩ ܕ* y{uhKٻcQQ^*zƓ3Dvn DWG"M4(vgE)dDӉ*ڌ}cI3>EZ}B!σhg6ϷD3ƨ;bѠ ps%*+J>(Jו;.H,X%cbHlceG|nm P=WB4*4+ \c~NbB[5pS׍6Ez5PHMDB,x+Vv4ch:!M^ CfC^,oJ]XH5wY,X  s cbfUcVp0}4Y2bxqH$S1QqIy~O^ X<䟇bּiJ&^Tny>ؙtIy筼5(8bX `Xlq]cVN2²IŕiBbfx3_,S*"0,n]Df'oc;e!R5yXa])U޵!!n7k e@b@,LR' W'cw,붊o X զo6})~?b>|+s~,΁}j P,>"~bv"< >X,4y+4FD^,Lbw],X  Ob7ْ#M=/Q,~6"'u). &OG?]QotX,:,pGGV4,Sa飔nc9Ģ 0I}±%cU|y8ĢA5̸"6~$E[EyWTB $H,Ģ@wJsQ9HvrVpHYTwh9MMu஌1$pK[)i<@%|yN~"EY'b,Ea&&cMzI19 %/}@b@,4u?Eq9Nk..׳DpʞRg.˓4%vMPb.;*%#'&q#^B,)J$DqDm#D >H,db6 q0BOH|3+Em $bQ8ɢK|f؀\ZMq!4Q,5>mMkD[К[W.ψ曥̒w52Oغ|s[ػ&=e#CH4 o$xAĀ "T()tqdn.=YMYuٞ;N`EH8;tjqުɞ5qZeII݌,%`q~ӝ~lZUB$]s yT??L:کbn%-[elJdq,dZ2禔_. ҴCoĶ,+L_&X`AcAcEe7}ݻ?Q&+z(Z(<_CuIzW2Nȹ?=H0 : k_.s{NO9{&--+|y[P֚WK7;NwA8eƂ ~}o:wh >PX7*Nb*{săS;%sEq[ҫ- 44u,?~xm&4aw?v9M,h,h,@:KW+h`AcAc   8XXXƂ044q`,h,h,`AcAc   8XXXƂ044q`,h,h,`AcAc   8XXXƂ044q`,h,h,`AcAc   8XXXƂ044q`,h,h,`AcAc   8XXXƂ044q`,h,h,`AcAc   8XXXƂ044q`,h,h,`AcAc   O ?W/u&44@t5ZԤqjkeE3,zRDT73.{YDdc"*ȯ'yXyuN4s 8D.2P`AcAcГ[ݮQuj 0=RcwtOj߭>k+ w➎,G*tNƮ,ӄϮӦ_7қBGGy*݇-9Bo[(#Xu44@ E|U'vIwC:$ٟek`!'2:lYoF=[|®)}pm3{%"6!9Jy[VR"27$e=Yt)sW]Z uEhRwyWPeK_W? Ӽʔ?5xEo)ckoFo!^i;~*>pmY߇0կXQiL𵙔/cev{uB BxQ^;1ɸRIX{CX.Ԗ3l ta˃])k3idxEo@n+,J)9Osj? e4Ko)6C΍Gmdܙ=\ _/(s*"xnf IDATwހSa)=Wxvq^B OMab"ި:Ye )PxX䕷 `7=n{#ha O[)^{1KIbұqwǭ7C][O1` ,x!6K qy;T_{z<'pR LZe~B;=[{U^֣#Y>>0I䄝qU _[[Fe;I2n=VhB I!']W> Wfwf%m0lMػ`.\Z~-6VÊZ#Q/ɐ0'!ߌS/C :w$l5֠Qi Z*kqwn#OH,Ld,牅5֊U3Ģ+?pXc's}_nVPes:4oLoe\}%Z;q[\l}EF Yrgr;E~:RYʒQ7g$?@/`b2 [lpCN:M}\'}2'F5l\{׶'H)]ZQޕ#LVw+n \~BG'^VqfT>6nD/NztA'Qi ZUwXC,1 0b_L,yK Hb-S정nXTI}@{/guzGx$̽!BT&`a>-86S)67-Ar_i5(Ѷl A͏H>2-zC8$]m,5,7KhW3R'#`~pQvu9>IڼDNʕ( gXv^n);8*O<:Qf Xhޅ#ƴA&rgHGGhMqUE7cTT1CwP7GזF,Qf:ę!FX1&5%bq(JN8Vn`ءp>`qo]h%EQ sQbz޹bXdKcxV^@,DE$=)m rD֯*ifj;(|raz#E&Mщ*H!Iy]+ɯd7Om`P UU?"oQ[D.a/V  _A#`UBLrK7ظ祽=;eh~ \6!^L,Xݻe5֘6Ȣ ^fGV--(bA}3Nb/c\ mT<(C,yJba2&caS k*~X,J>'`XĪ9Gx"IdJ-fyu! ?H9$&.֔Y @ٙ_a8^OIb4X`{ ~PaH~xuB 2 Măh*fFC6 st1D|#Yy Haז-ZuBJPEE3&&U#Oн+PVs+n [2P􊟓 8#og ZEIC,? 0 #FXX=ѹ% x TECA& *Y+Yݵ)¸0oh~Cy8{m@_KUF,@R(Gq i©({>2gUկ)S֩m2_; oD:aZ*" [QͿk鍠(TMWVU_!vt}wձ\'bq00}򗈅]BYm5$%~Wu9zțxbbtZME }Tʂlrg3ˆ%&ca2F<КOo~XIE[$>$(X@H2XX&=ry=onRCۂ.w埮>?$i{6p-vIxbaY_p $}6'0B)ҖqkR}S9Ǩt\C&QHBE3j.)pUS3dJE?Q*{^}]`} &aܽFj1c1ځXtTX>KB.6VȓIy"F(b/ZQI ZE5\baS 0 #FX`9U9bѐ*R]n5)W3V4yTP!tSĵ;;Pѯϋ&HXP`fr޹55lqSnI1D'\0J!P V}*~^G9{wtl&gf;B_VWˊUuge[54mU|N1}kau:ܢ,Yrʱ` O}AI Օ=<>M˶F;6uԻDZh|uޡ_ s˄Sa䭄j]va1ƘRɏrW9_l\ "j:'+MeBW+9e D,蕰HDhhp:2["A`ӓ N˃yv ۑ47ק;+shij?A3i oR7A~q-aoO3jij⨴3"rۊ(ekZfiw]`才o.H[*Ɋ ֻᜒwQ5!{,}OD-a:iS0y9ݓrsSŗ s~LNUjuمUcJ%}I;צ_5B3_?0ЫH{[+e@+mX b@rE>GX+r#mE\'oHZެ‚ʅzͺ| &'ޟ9dS)"V^_eK^9uRj#"S/ #,U2j77+l1;DΕDNe&ZtƊTm3ǪMV=ȒcE^FrxFEZ&{"B%y0zYfd"FGq>6Q1#5iމffv*,GbEb]va1ƘZ gy4hfUdU)FXh*gSj(!8JJ[DEmz),@^ D:,Tz_œ\Z+Pwx).\im4fn~޽&[xA-щZ&' Io6K";|];fI6?~e_2?sOzKKN£DLA}SzhHS,&%֤rcw6 ;('jaa՚oyBŹO{ƎzvZ^l۠Mpf6SlX= Xx.`zk:K2bi[N{PּxMGrmvLK\vp1d)tw_lm}PJv^^UaTUX(6#, iZk7JӴ(%YRYDmQ#,4VhsraJJ[ccKa@"X+aa$EBȒkjWX>/mF H^ݐ]74"XtP }*/`̶CXn<`,CDf:]cQGXDb~"2/Y"0"1h^-OR(˺*N{H/;*IxE<~ȽƱE}|ٷ6&K|tCmjU~fj.m%,gvnSN M3^rz1Ƙݦxq]ǙD/55[=$ kpjKzۥ"XMi\O{"F-F+ʢ~i/ŒV9Kcxzx,b^a+[stHʓH:U#,6#,BRa.6o*oj9Ns#FEڦOUaW' Qs֗zbND Z)Zi-Z=X b@ONtB7}?M~y %Zqoy3ѫ `z4XÌu'>]E]HpLwC3ݑ5~$Q _o'Z΢&=GSS~׆xxqC8'w+,nQW WX+kjb뢿]I@ @. !'a *p.%PU;};_^>Z*T Na;y\Гw[b$v6? U,?BXgڬ}+׿'*CXl=/ 8[2,D@sU,bA BQSl,䅅( `=l%aA \aA XM#O_X<IX\?@sU,bA <`.z๧δwKe]Eg{YծT:]je%z{؞!"r_ %,]ܧ4o'>n^ЙTWX#M0;Esӝ)[[ .͞3<&"uaќlr{NgwcCI ‚*T 5 L@Əa2w}"tw3 PXޘnker~7;rxآEc9#eE*ҰJ`>p"(|YvCUs3WQrDžZ|i(֭“\E|:al-]J1bl.Ȱ&Y( @ `L_(oveƅ;)RAcO5h]A{ʼn9o^as^aq`@ytG&!˲_r1s[ /,:fϋu 0/;2v! c"ېʹY}LYƖdK<077֎citv&TPǪ:* C?[!Rp|my~, '/,bA APɗN"Q#A,_G!ƯMbvw[/b`T2`}eyQ;ui\0 _ ?X5_E'L;]ķ6geAКEq: %7? IdVRq ̅ł\|V>41yە:R#dAiR&NZC<@-NGLO8!w} o~$' =@tZ6/L2h8psH؊| xa\V,ʜI`'KtNS H: e)" ,&sv\Mh@.5k| SL7vmblr{tIt}(Af[N7J*,\AGga$F 49NF.t IDATs\OH舢#KlUc(O-BP5H}#דy I>(3e{z zƣxg  }@x‚*T U'Lm'a6)zGVR*o~f> Xr }%@<~Ƽ|d!$j{Ig *PXlH[Yo=蒠;Pc cqzf),8wE [")&%osA8kXƩwpjy+ J1K+ 8g9Ʌ OPU9]p'F X }/ŪACmUuC (ol* ԡoʠm),<CZ޻Y7B B:+^AQ1BџL%U,bA <YfR9`q$ \X085kSĂ$ ^! _o!,c]k}=?z%7^xAq;8" zIҍY>Z̮v$%Gɛ dwO('|EQ8(`0ƧR#g9?aB~+-GcU.W,AVGwCXc r y%p^%QBs#[w͝xJۗa7QE 嶤)!k k[J3Uȉ(1FmpA “T0$Ӣ6 TE7~raИ={ a('sPa E}HxMU#PXHf♢l˭F\ gI3\&hOXbXOŘg?HFBA “T̂6s]Xl,,|AX\w:5;]ބv2*,Ԍxu]liy}.rn^촑8R=}^7|xthz"::%G؉.hqU[zGXtT޵55D_E"nab$[HX( %@P\'.{-3ӧO}/.aaq61e3Q9};B7Εłp.D ymX<"2:b$s,*l7MVka XmZsa n[XtVh\^Xxq~ ^seGX Fl- U׼pwVf¢OG=ٚ+[0rUt/TM2Kǣ|IJz+,2ƭ_ ,]h <=‚q1%/t;:-5WX8J"z$ I4p,N+,6FaqV&h^ X@hvepߵ5අa{TCzkx4!q',{Gu=wE=b?̈́Ŭ녹lۍsW?;z|VRFS N ߤqvqGޭP/C|F?[Xyz;Q\VCv g#Xq"΋-Ws%*./, vU qfQX-X'k4c d, c%VcJ7ͅ6]aAmSaH|o<{N‚ T\/hSt^R{uolOw抪}|5uޟ T&,V# ǜlaB[X3AtŸկf5#\/i¹Pz`;M,JԈZ.y##Qޤ¢{-, c ߊ,DXhEZa1P ~v^bPMV ?rk|-,j7`C"Ƃlb:a ;[s7lwgvyG=q^0;ʼn2naAv>"fXmS maaGX\*'17E$.]l>.[B9J"l&s)}Kt0 j I.<^_MVka Xm mw 98S J^qэEF]t# W'o0>Al0Z~%cG) G_`JCa.]%Ow'zm;[sEpE uU|qR &C^aLΓ- c%ֱ-,>ZXz۬M r"w++rJx$,BAĎl 2WLxEjHNW'(>2?INkgABl+q⁙?zVi׋{sb8jHv5ΰ(d/ i%zhB'r7)ZwڔYvqo^m8[algM7OzϷ-Wj]A.覥a2~E޳Gyl- Zb!!ecY#b!EL͍ɿs=G^u/Ǐhej]A\XR=|'%ma՛=jW€¹m\v?Mv%% Kdm[֣dݹI,WpZ.>O _-vbvukΕRo5Uۨ`aDW7 Qo:{`_nuO7>X^-,=*ѳ*qZ-g}3V .{/, c -D߫S.1_${5;”؝( M֬h]-^Ji~fK~.KcþyUSKik-g z""瘍Xt C>&{\lh 2 "cXm"{?l+6j{r Z0FĿ?, aElׅa+,ĺ4Ti;z,)wjjAXqո73x@݇"1n2Wd amN6H/!~RX@2@X\':rwt 67^a~b nαVVN)=b=uJ]k(YQ!,0~vNV+jê"I'5ׄEG\":[wDp92 z4a46[_pGl6(,D=TNaf^S_l.| /-:LxO6~ Y[.)S<Ԅ x{vG :c MZܳs%|DpY4ҲX(),e"]4ٮAE1ٻd,`|@1{W;EU\wm?7s n8-ٱ{6Q͌~wRZ6ѡVtEg fbjz%`귀@@ q{pϺY+< :: oX'AXw7 ƨ9o(՟ _J X@6=ck+ Ӂi%a X Cj_"M1[[8?&pd, c@XPݛAXB;Px']؇8. X@@h?(a cӎ 7ǔ9a-a% 2 Lf>ZWn`&Salrj{ԹW2> U@QRvXg~+Y+1 З\חw=ά{fޭE BcBc`X@rXh, 9Xh,4,4 H $ BcBc`X@rXh, 9Xh,4,4 H $ BcBc`X@rXh, 9Xh,4,4 H $ BcBc`X@rXh, 9Xh,4,4 H $ BcBc`X@rXh, 9Xh,4,4 H $ BcBc`X@rXh, 9Xh,4M{z73j tvXh,`rE_hQت)BcѓΗ>!?iߌ,4 z糕5c@ o׌,4 ;vR`{fl`Xvx홱USt'#>f!LEO:7Xh,4.o 홱USEgi`情Bcۡ홱USEhD? EC1V:7Xh,4Wj^%7NoI8vEW`:7Xh,4Qs'!X<YLq#E:7Xh,4Osy.bsQ>,~?k=mC;g{],}bח-+v<+^[jC}k~?,7,=5@G `1|`9^/v?`ĺB3veHCE,[_wa"bz}[#12;ߕ#o]3oNFgaRϕ*_=] eM:X=E`1tn1h |3s혜3Bcqcybbb6^c1& hO2CJ;kr=xUp"bf125\,z2QmOv Pvvx^[R#VwʂEω{w`x.0v\+."3RSկ!g-#n`X@[\4|`q"VF_$x'y6M'C=͟7qH Q~pvx<2-bDLߚ.;J8rf&#ut]lE,2sÇ^RN gg M?66n1|me`j~=X|%nTRLwdwFB`X@;ܨc,Ď <4(;"5̶,TZjal.Q _=ْkbx2ZkkY 6 c_Uw>Zɣ0p>#`*bo÷-rJ`j~-XeDurqzYsBc\ ˟7X[,nNj=m~y9Wp/rJLxQ\:%7|v0eWw.Z{w8p'b0O뿋hS<7q9_6Ukb8~w}عǛ( ;%XtlXh,jfţUhߧ#7,#fkgFeOue!nfc8i KMKF,5띊#"+/SgOO.w5^w}9?X!rf[2  |9p%G^T#71Xn~ƧEvpC:,V5sqiIL4{8]ry8~̙z Q!X\7UM>,׆\8V{:ʥjZ`X@;Sn^o)ۻ/cb8-X|O6,.{U7[7X XȖ]%GG MMq\},X/tg4gIe{ ,4 hxvBJL SWl.XpP׾1hG/7ص^;]nb]c},#~XɮŐ#Q=)M5R܌I`X@[lf'Dƽ`:~+m.X4<爕`1_R>[7Xdr)wETPEc`QGŪ!SX=7z#Xt|Xh,=6OOvXJ&>Iwu:OZ7XT/WzGSV#Y `^5X_4Hm?{wDچqSvyW68 @"""qt |yz#{HP(4;JePf*,h,h,/,Ԍ y X$e2eU7ۋ`AdY3΂Er߼~ezfe%"Xh%)WN & ':*7XXX^H":Xψel ؒNf4*9]H2>-fj8l>obiFJ_`^PZko5c3Fi,Ο6&X4ηU.f~?j_xL   j؏6aZdE̸vG2{}j^RYd۸$!ƺJ #Eצ%Ȍ?7 _ Kf"ůdv½v"O_ݝ9WVd&+_,smo ዂE~9VSgBN$Sl7\u=D)h/}ks?q+XHiۍy4όi,Bb  χ2*G?g N^w o !s9cr>ZC~M&&}!m'p'2cm3]Ц g5_Nu6 K^7a~eHyӞ~ߺEqѺS6XXX {=HM(ؖM3Djw$[[O.tܤ~Sc#c/o)< -pM37Zx}Eć71n]sl]Kd\ ضocQ?jH|wHk9~~/T   `i*W|"}~ߞ7BqU IDATto|]Ty<&+5nߪ'8-<4tѯ`GGo':׸^n>GӚ K~g_pz?U,=BU~'3LPƱ073XXX k=Pr>]t8CSRiYrz?M:[Q3`N!XTIzKFq:,h,h,oE\w$Xu]3Gzp$%IIYrvOMT:Z+7y^My^pr_M6 7gjJS{33}92S,h,h,oEl8>U;3z5   .ͻ3WS}Pv9_vgF`AcAcx!r>Ό^MƂD_6;44']Qfj ~44G/'ݜѫ);XXX8XXX8XXX8XXX8XXX8XXX8XXX8XXX8XXX8XXX8XXX8XXX "DBA7g^   \3A%;D= 447Bf(\ !f   Ѱ R3 Л`AcAcx&Dn 44d)tgQP6ݙq)q5*   d)6ΌhfK?g   nCA̝PpQd3p@JHͱN9CW.XXX%X(q s^.KXσW1XXX'Xl lF&&INo޼0XD^z_#O<4j]i@MfO qz~'XXX'Xߖ7n_{;ӒɎo֧/ڴz|>/VFU궈l>Vwh_kڷE){K>}tC}F|!ӎ6OلiC'?v/N}?V'9P>LծU/h]mHOjy+_w2"9C]   'oyns5HزT2X~7Ħ#H͸IY'>yomuf7ڴQ}W|]ȉOV#8~)®C(r };" #|Lq 44++ǿ,YXQ,ʧP,ZDG*{NnSPGu8Y, @Ƃ 7Xdj=o7 Tݾe{BxTtM,K~x?I5I߉?y^\>`R>0&)YdEFYI~3R"-+PV󭭭d~q8*.ĵ`ó|_aǾ#K<.>~K,'k>}qʃŐHbt yLxI,b Z`1Q0{U   *ܥPdvW O?Hs6Q$,N ;Y3`GȴxSN.2yqv`'և;S䟧/Eȹ?XM/##l-ꔾ3.) ۃ3 EIMjERgMڂWh)F,[oF^,X|Y$`Yy;bWWR^JS8.,2 ]zWYg7X5M/X=5   Q"Vm],fchJlQ{nL, 32mwsb)<łgEz"3Sin9BE35=_Hq*bb ޴,bV]|F5   m_^4XE9nbSZ|Z2OKBo4.﬙^_ eg's1#{l=q{1[ImG)uM2z-DoZ,_-wMK~3׍ A wv1wVCS{|H   Rh. tc(If1yά:nlݨLSÄYr& ["MC Si<w6%Vy3V>e"%| j}Ɯy>|OB>6 ⋎ݍU5YBTpᚘ`a?vW%|H   1"Ck$bhpcEF*q'IUv[6s7^ ν! w}( #!$XXm;Veܛ*CX%| s)N3T0T,r#}V>L>M;1}-}(`AcAc4,X/I1ZS1d?5-қ?D->:W:r +v_'fR ^,XX6Bd(XXX huyZ ]P15dղb+iI xFI 44@cETDmCǃc{("3{'x{B[@"XXX }~u}"Enz8>ooalQ#y޷F~Vx   1XmUju 44@#Lhju 44@#k )XXX5įf P`AcAc4DeC&XXX ZS*ȷ^>ƂhxדU,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,RϼrԩswQ/c p @B%rB@ yVelc-[ -)-&B!\Y,X0 B!bĂ!B!W &L,!BX0`bA!Bȕł BDS UlgBX0`bAHt P ̦A! &4()֯B!D,X0 !)qeK BHmĂ BBμzA!ڈ &4F1ZS!Bj$L,Xr\} BHĂ BXk8ֱA! &4JAk} BHĂ B( _dxBw,L,XrMnXtR,!M,X0 䚈(>)(B&L,XrmEmͮE ŢM_ez>?轴Xڋ6x{_BY,X0 z|O"eXÎ%zU-m*$Ie^.jQ2jtQ~tF|(?&=D@<=7|fL$`?{ 5+ ش1~Ѿup:!ł B܇D%QO]DXuJ&T G ){u&b6}Uצ&ħ`H9̘skpVc`i]bmTB5ph*SI袏m| !(L,XRˈEz Sd8<$lgdǽ@F"!@H$d-Q p!^sXn/bQ0aOC`Y~MX^U6ZCc- % F D eB"s ӯGg?H+T| !'nbA`bAH-q#qX[+pO qXvtɶ]^6/oT N Ye<GtBR^,]v o<`EQ@Ω6v"B!/`bĂk$w ./^HRk ߁\IV .f8lwVE%0H׏=xdLi!exĢ[i/"!Ă B _,FxĢ*]p $LW]*(׉hT#n$7uHzŢ8_DB! &ԃo F28_,H-mX{->USO_*NT%XP*vSbqŪ9hH!7`bĂ- !XDa02 z=bp sK0Wy9F`9Eb dXY- +80sI/"!Ă BCUΉE[ )X.PU^QQ,Φ^k=^q^)t6oBα8$axV#Y|5Z,ʕXBiX0`bAH#(+1woKE"hXWIw[f)8 LbXL߮nSXAWbqG 5V: =b!$>׋BH#Ă B%fI X $(1X+̜QFQ1(% Ү@ƨ$/ll p+Bm򃡄X4ET '@n`1cT뼯O+?۽n?3B!> &\3ب,,Dg"h&quj;oeT'>G40/73d#΋T]5zצ|e0B`>X,,Mu? [6a wjiy`ṳ2UgL}K4wʹ?|F!?`bĂFEP,dP,BR zIX;%FB6gRt˛#r%%}֯9Ӳ'B\D/%NKFe8d&ۿ\ag TZ cPmC?{㎃,\]\mғ˅%>yXO{0>7"B &L,iXT|/0`i(SG 8DvOmUjϝe˺k7y)V`ƽf0bvh&j0W]#Y#5*g`Ow--搾3B!> &4L,\+#^cߎ ]j_;{5Kn.Z, *ϗZB,6pBc`9-oH6i|JcqJ)_ )xB! &L,iXTk Τou^&ugo勺K>y"?1NsyF9ww?rum)nk`-lkjIw*" "*֢c )p!ARHD B|ILjB )1B1 g朙9sΜݝ33siv8w~o߼+5zɭw,|W+^   VXI_Ǭ;x-<\\[c׃ nt-,*hf%׃kX.^~/_&&НX^i- J_\{PQ ΜY}bp +sgApac@7y X %i~k{,ׯ=,/oQ+az;Ƌʦ E|b1bzv+,[.h K߼kmF^x97oQKZy*چ E|b!,L,`\֬K_ǞQ~ޢ{.]z3>;zXXX@wbZYVhy `zFw5m   ͬQ3lSXXX@7ldy `bs 00XTk;N,&M, 66[<}}ysc'_؎h206¢bh&&qXXX@aababt2.ڰ8JX-Gh@JJXxmX. ؘa1:*,L,ð00:~X m$ât-Tsk<%,KfaQdXܲeX YXYx4 KXDk,&&qX H,jXWo{4 KXToWbXbjddȠdhb!,L,߉la.0v¢:8}*[XoX0aQX>5=,_XX@氈O,K, IDAT3(ѣ= hEyb1&, KX~M,NLaq{",-vŀŘa1aE%,ʫ aQ^=1h@bW,NdǢհâx4 CX aabEO,EE2,f&*By4 CXXLԇmSaq2EyEEZ"\dQ Y h',BEa/a1UX2Euv԰YLխ>u5專-ޞ*/N }&1,> ۅ8\ h]bJX.E~ RYx4 [X,aXM C8V ٹhd,aQX+űDXJ } E0, y۳C p?^f%,L, cX_X Շaq6,fL,Hx8XC =)azەfGGd SuoK_]{,,L, [X}XH"! d픰8SaqsmXTov:ov"Yx4 CX(,koُw(vv;aQJ-PJXԜޞh@XL̤^ Ub˰]Xܔ5,fM, {XXd z0,EݵPEPa1sa?-,#P75xx)Hx 8xXBGB£Y¢ѥPaX|18eX?%,,Rb<P mk,*aQƢ"!XlEtlY(d ٚfnۏ׫aq EPC 3KjXLnׄŁéba , KX,b~K;]x;aQ{; 6âfE~wbYX_ wo{4v-Y]Yn2,{n\ uX 6,5ؐZ ]rWm\ aQ޻Rxz1,BMâzz"ϣV°8D+/܆Ez)xxv;q)TOE R P5<hRX=BYr;; 5{BM_ ~lâ|pƇ,<hs5KXnzrX6;m] ؅*žͦŬ]}Y @boW ߕؓSJX$woG,<ȿ|?~ Ӈ.|fְ(,^|wiRx,-}CoHGaǛ9bŭ)aqs",(,,âZەM ׮]o.>ًaq~|? }jE/_t骇}{¢+g6x5 _{FgxͥnҦo_X[,Nm6 MH,,[h0X WZWݪ=a=aQx+iZ\ k8X~{i߹a񟥥}y_ѷ\|=^vGʵP_*,TZM EsAL럿ApogQ {Bo^|Ru+OKųW ޸H\y7\yb7m1{FEA[,RN;Ţ>(Eo_+=[,KFjnafK VOomh ,)$㱳LF>:R5 Mhvr1 ⢈ * ៱ȬnG]qTg睿tZv,ݷ>$'ceejlSE*ꀆ>gqJ".t{moS`1 =[+z3Ͼ8bm,vl#&3i=ps a rSדJF[|)4pe3<,v};X;Jdpr-w("Sy%{s W1nj/M|١ʙ7[a,ks q 1RQЂ}bfRSݘN^31BH$ֵD%0۹-N麞{S&0`Hqps ܤ>9ዉ1, uÿ>5 f&ni*?1E W>Xn$VǸW1CXc.ִnHYn[=̳ B6Sb١P , P~&X|V6Ys<?+~TB<׾z$ND{fFVP3 rD>Wp10:Gh"BZ4<$K̨SCPR5J} BB>.Eᑦ OΆPwٳ0j3g(VujJV*jP/}v ڡh"bJ;컂2 #]-=Hvq荶1^ XJt=Z$҅Jyy9HCP>OO$mY!߾¿*@ej?~"JTҩ`ƶ- -`t6bMR{J V oC'}7PP`8퐽9Ev Tg EET`!; $WOǸ襧v,$CjwGg_-f@./*] `67 827i)]Z_K n<>4t1@C@MO$;!ɵf,^QOAfd-$7\_[PDZ"/g`_ tٛhH!@I.w' t˸xgykf10X| `W,,M,PkxEY/m6?|v {k,sꡒs&KED_wR9\as_ ZF^+X\[nOGT2e(MS#ȔI")T*ы wK`QsK,g#TG%P-mQM!#\VQ12DJ(TBmBSQ-=Ь$XWj*X] ,|}7UdpnA){zn%CpGbrS&Xޟ71v#0(ŢA%>~f\- PC(Xh֝,ނ_Jqz}M.zL]i]_h" \y \_ ?Y %r†%3h+zN(KMj6V*őOڛhC{~~ߦz̆S|C{g,+l[,i,7YT,le8빆g_9XZ]=]`Aa=e#߁_52MC1- #?e`b!/Xs1PYZ49MBk@A1*4?IM>D3㫫K,]_dV:ͰWh1%-^2!mu#K{Vɇ{|pָAᙔ`!-yYz`l> g"s҂?woK,s}`ь|@Yv0TZ ?0ִ}RTc){cE5T`/F< rbB.Bl YNYnl7[C5viA޼-wZ^`Ă/}n: ,wUVwbK#d] c4be^.r:%KȘơn 9 2aR&92A*ss繅Z.{}n8|1=dv ͼVX0bxbhxAȑ?r##ۥ&m+7LPD,݊ ,F|C:~}ci{V-SCCWO5Mcl+_/ZW!}T5;9ٗqNș36j(ό˔OtyYe x2.l er~@>j;[,qEŢ"5Y|-RM̅¥noxiBx&I)A;N3;s//4n~\;*W3;씟9d6EX'x!Ȋ8>‰zS8 % q7=?wO{moR ͼV{Łdbq{b>mŮg}MywF JaMX{(-$GX|Y)̜V"%.aLT&`51<7J,/* 4*[z~bbŠEzdKIS0-:>#Ʋ7ǒ} ҷ;yb!L( ;JWBIXBXm& g.. p{Ŗ#e\a3-#W1W=Yie˥$t"[\,{b!q">%zZb1<6@$f^,M 9bq}^BrSwY Ăy ^ siBth<[(v#uJϒWN~G"{ӋSzh\@nx)ԟ>?YĉĹ!M,C`dbn⮟55D]$&RΞ7'*_,.%-qP^ݏӋtOV e ܈XؙPbqˉjΚy߹uxn%Gm[~_??;kǎ햧{qij此fS+(0r8yZX?'tϝx*NQx~{,yN/XU`X| g.O1jpnD"{K0I-*ErK*Yhs6 Wp :h#xN붬jŢ 8{7_ ,^B-j٠ns2 3 -djD1 0"Ef&Nn^4XHh;,of7v<;l֫;Ţ"dͅ,T P:`C,b 5/.rdCFz¬VqeWXt+PŷM`!XfBn7Xp,"P|eedA,X> YB$qZ5' i+m(ىPs,NjnG*--7O,[0b_ 5߭2NYm" ,-"2qm(B V!n\rEn;uTBo*P'wzb`dAvY,h -lj$z Q#AY!Ê _a,ڨW;, ,\yB#sEP ݪΖJl9 -$XO1&r&p0p,Bx`v ZuSPż*,# "/ȼK-lla :&JF*aVj4k,SyA`]!\vnߎFrfፆB jAR v $̜LԸ~혅N+TsWP"rs;'[s*&p.ԗZ('p,b62,BE5-HnAUf5IDAT 'iԊW _aB9P\ ,"bW դb[eEr%Y ^r{-hnA j|!ĢJ VqZ6X8h`1ĢZ(Y|vY,nY> Z8r .bb7q1U(q W Wȕ+N;(+W,عPv8,b(kB-lfaC Bʅ[!}||ѐq0-xП}mVpqy fmv&TsEnd176q6,H6oNfNjac2 .\G7_}'TaM+l\+ ҹ n"g.+X%yKh,6,[tL-]P E/H*LZA ^aAPA!Vo~ܙP7M,bsj%y˂+"{}\hAB`O.P p0U?Ȭf*2U U6W jNn,E\;,%yB%,Yn ]B .r0Q*hXA+H{Wh +,Ya!-̼"ں}GC3nXbY. Ŷ6ZBgv:0"L0lD#+\0j'9{hz-:WMnQ"e )>ڬ"iN+t j_a,|jaQF,\XPYYtPe"$ǡM-¬tXuTwm WsPWL^Q,EXo6M yˢoPY\E Zlni/ 5FQCUiEZV"E(sV,\wܒE: %[Yȃ9[s_4:}9[Ui^J5(+L`QNBn6+P]-8XPBE iS 3b1opY8:~ pVQ~#bm;EEbqb;8Pv/,i(, wZ/s"|W,|eVqEYyE]^,X<4zf-k" u*Y,th!硔X㳭]KCIQT55(9"0\XYtP^BܢI-tn&v&X l 7]V W4^_<8X[YFRbEZWSh&`l >ěf_W׶v~BzPMʜ]XoOBM,⋳_# S9(+;*oqr0n7[g*t ꓋+Wy+zE(X|5{kbtTGLEzۙūbxwgmjbh; ]VԴB ]r=(Yܮ^7n8X~dߎ&R*.biH)Xh.^v7V/C,|,,^P,¬Zdi-ID7YE Vnqx>5 ,gQdGYqf16I-Ljac X!?h(aE| jҊWyEpjֈE/tpfؕm,Z\k'#7?8]bOJ)nD+W|?ӃEǍWZ,FzQY5d;P(([[Dl7*tXQJP+^wzP;H^^ţÉŰ e,RfBPAEI-|lfZO}TB UZԠJE+̂Ÿ&md)CiCªEٵn!z!O" N,U)JPŢXE٭Z A=yŠ-k"\j,vm(cZ뚅 q i:򈪍"gxW /-X؋PK(EYM*Dex_ WWV1_DQ"{kS +^1,:_X̽e1o ncZjaB‹O0p0dmm&;V]+~}XĢrޒ2^PY˳^-Jn!6!_*QDjQ"gN+َWDB;E*UZ!+X E؅G2? 5mpghB ӇڙUZE#tn*@9x-K6EoBX,[|10f1 uj260EvI.J+ы+熪[E W^+_=}j蝜,6uM-Rlʅ _8cEKRXPV VB̺W̞x8~",CP.0op+(}򨅍-[hvQbF1Cd/'*LXQ(-+޶+"Ԡ ,93WwCIjբ".^jq4DdI)&R @B^*>+qr3r*P[The샟8,ZS'b9hr^~rPf2z*T [J1el` PM*N!Q@ZQAymtebOYRE(Qy_$6` "HyT4"̊+~Y1T,EY[qq/ X'\}FQVEsE+`]iQ=.| ,z=nVvFX~g1r"h4.bmg"kGTUQesU[".6cE2Z_+a1Q#iEy]4cif"oGTU1{|{omEĘk`ٸ kl;Th+khMV\u#!()Ί]񊰘YK-b+1&X8/FSUq(+>_.+&oyYiE+.h C")s]qɰY̔Eu[tBehGE^iVtŁ{b,"hѼ` '_&℮ݮҴhEU^4!<)hTE;+^4-ZmEQu^l&Vopn4*UYuYҢy\u JtD+(ʦȢ][YEQE/- 5BUUwaq,("`u$*ȳbiW\!,EATU]4u%)zQQVśffXe1U\Du`PMdzYoeFY4b-S7+F]b;-FmE;0- Xn[U\q)Eu]}18mlm0ۊ]NJku@X=ڢ0/ځq~iEQTUBXx{hPcsgs膳x4*pXU' +NŁڢQqH"lVUuV Jf\u8ʟ>OʟGųBX ,ۢͼ(g[=Ix ,xd,ύܝBX ,7k.W<"{b<)ޮ*v_EBx3BX axK\)&⭻b>.&BgĮBX ,9/Ep]oQ~4a!,BX arWk#( aBXa!,N'w {,JX ,@X a!,BX ,@X-@Uh Pa!,@X @X aGX ,@X , aa@X , a@X ,  a@X ,BnH(uM3IENDB`mkdocs-material-9.6.4/docs/assets/screenshots/consent.png000066400000000000000000007253431475306445600236130ustar00rootroot00000000000000PNG  IHDR Xf(PLTEGpLAAA&Suuutttsss?Rrrr>oooqqq"""TTTpppjjjnnnYYY___llldddMMMmmmkkkVVVSSSUUUWWWRRRhhhiiiQQQgggXXXfff^^^bbb```\\\eee[[[ccc'Taaa]]]ZZZPPPttuOOOnor!*UUYijkppqsJJJ&T^`lcfo$,W07[4:\#+V$QMReDJcLLL&.W*1X )U.5ZY]k#N%,W!JGGGB6<]?sstadn28[,3Ylmq (U8>^X\jIIIqqs4;\_amEEESWhW[jPUg GE`bm?Dafho]_l[_k:@_dfohiodgo555BHa"B*0JBBB)1W%%%3:\TXi***&,H05N@@@ &D///===tuu9>S999DzHMd#(F???FYSc$*G|||PSTl{SVWyxxxvvvUXYllpzzz_n¼67LtRNS   "%*247$/WT=Q\a()',-.01@ECH6JMO^Y9bd;B:GL]]U IDATxMR\:N.]AȠnXBbLYAMHϯ,YGy*'yӜaBX , , aBXP5ZX:Fd a!,BX -|Xֆ a!,BX Ŝ?a#CX  ,Jj:c1q1xVL`񚭋@X a!,3ibyp}!,baa1DR4Sxʹy!,BX *`Iҧ/^Q[ Gʤ8#`&Nʼx m!,bi10Hq!,E(m !B.^[ZL~`&JbY?*Մ/Jbi!,@XLq *A1ڇ4 -fvJX ,נrQQT'E}Y_bXҠ4rui>cE+r,-cò"GG.K9šYQeA1 /wHE".^AZ8)|/hCJ"CKPM C#ѴH]̢+ Ѩ( O(ȤEa1XVD"u9@UɋH\biq@WD"\?$NXC#ٶE]Yr^튢L!Ȧe߼}HW`^n~e~~3A骈DE>(< g,ȡ`\bE^YdRS$ɼH!ib(ˊpTdb` x]0-zE[aи*REG-rC=TE)FL 7bf"Ei1P#tE<+Uh @=T[DbhTUkJ3buonZZ"QH @1ȋ(Mb5yE&+ⳊHS,8ܢ0-f3_QYDRڍD^"UeQg1}XtEl(+QGoΈE-JhZ)¢+*b*I!h5Fym(âׂE+voA3odO?K@E7.v܇,]Z+v"87E&&sjp_t"8EghQh1eYqE4+v(jOpEʋ`\(Z滢0+"+oE-Ң,חEa슓tWb*bI!h-Ebyi@Z⤴,C,]Ɋ؝U5E'2g@eg;sH-+Qۢ}PdVl +NSbz7lsSEwlQ=:[=늟/7oh?ӻ//iqpY{P]Wq@Mxh*m¢GWD ]ÔE;a슽kPb{"r*ZSŪEyW8Pf8V+e9 p3ŻݜVZ ]6,6(,zt̛f_?<8,EYW9P,,]׎[mE:e1qXvθbPunh,E/X,:kaa,,)ws/XvreQk =FX@MXl6P},Z dWW+6sGʝ?yϢnb(U]!,&,~ŦOYLU7BAu"58)*¢;[܎uy^q~h@:_; U[G E+~dŅZDˢtb^:+>:P e u(^ꊝ]!,&,^bk[UkE``|!˼b+T^YYD^ YHW\:P2_'8fXxvW|v﮸̅ݷow?U[ ,94, kO])_o}?Y~E,k~]qt ] -;qy F Ív#/~y =eBur,~۩s53XC"] "VU^v{ӧ7~*@w"dbE ϜPWrk뚅12F,!'30 lȾXT3 ,~, P`a,u`Fy%jg/hM,"Pv` |El MbCdv?e (b.ENF[ ~nngYXfѪX,$n;,E`G,EhF]ŢA`QB! lpEx`Qu&B^X4,PՑuEbh0gͦfE­JjhYPssP-E*X bD,dd!3hdX=r1=f|"cUa33GjyPMgE1jlȽEB/@,P^&,&X,D>Q>VG&c<ǩ^=ZbB٫,&,&G,[,<3t`XF,`b! O"L( \\_yꬥƛ_qYԉEYBoXԯ3* k&ԛW0^PxT@(  r}\p|y?{R*3+s8?O.JqFDŽ\eq~yՃq*H˅8~\/r~\w~Z]U$$OZxL}'aE<\v*bBU,M/ZN^]'X[,v + }p Xs챷^(flx~G 2|Ǐ߿fQ9a؞bL$H|z*)?m$|L+dؕe*1VX s;qo | WAn Epz<ÛAL|$c90 GXY,~"_b:^`{8ȻۋoQ"T`gPcnk*zնb*-#[Ĉ,!H(~ [~ d1)(uOB/u>p5ox7 \W6(ps%٢~#FFPxlbliXL<$g jXΙ>#)nBr'uz dh#RY –HB߹~{;ޱZ1BI&=BX|U7XbAbq`3D:ʝk#7e3UQR*/-_ &K"ݴ} 45y1!mW}u\l"/h[F"Fux "x2̏Nk"˓&FfpziRy>&R,)5d H.<[]i  ASȐP2YM̂D]]f,=z ╊Ǔz/\`qcK"XO(N},c,B:b0>0/ W]v& u3uߨ%45)CA&t`lyW0FS?tg4N#EX`!!xOhdqC1Tm]ytXsūW~+Y/x}EG)hY%EREP4 fXjB.F]e.+"0Zd|Z`O -3ՔF$Ѓ"X/+E{;dqo`M`{ nXi eX+X feͷԷab7gh@-dmBRyȮojXr312GA'UAX2\1s7W -.TTkD,`A ɢiƭw=,+z?WvƟZ IDAT䲕,j'藠$ZAj2=Lo>R{㗮i)Y1|͒=Any%EʅJws L 30-JˍxQVOdb?,+-ԏ{ۥmBP84bXZ,,3_M h>noaw Rq}m011\ . udh+nn5!؋\]|`TaW *8Rkr34=oc8zE+ޣhɢ+ _E"Ҹ @AE'Yo),-6 c?է'Xr vˌÃ-BAgӯQ ~VW^uY3(J(/ƼZ ~,Yu"m o u`wAY?wX,G c*զO_$ CmtFN)o)XT~S8x)IJ}|S5U$6LT"}N6WԵO5X&+P؈/Aj+ !Tp13s 1b2W:BH{`lO=?>iM1`Yc닗/_hFX}]xn WbˆS}C k,d[2 Y h}H#RkB`3xJvjɕDԋ: G{Y+D,7NPGŽ}EcSc d`r r"ŠOƳϽ1HI!ՄQ!܄d 0 iTϱ 6\Jܭ=Z #(<(Ta$lLDX$市md+OR_@l["ZĈłB] &ɢ-C0*cɡ+V#,lAWXūWmE, GI| mJ5W*AdQm,[7X''$YTP'8'QU BɂLEjmƒ 1eX XT&Y`['m>  $| q&a=FNݽ[NtsŋSDI z=ApRS 8䐦:(o,~'.W1D@Y=J)U=.K up$;oz×DJ҆RfKlV# o% -j, Wlwh=`۹)5B' ++^_7 YO`dU+TjQ\Z (}D֩'2\{TtFp+.+8kfelꋂEXm& Z~s`&I O8Zpi>ܪ 8 //2,LRt_YNPE5-uwsWЋIn,L\`iLjGnNg9w²&,:ZZ*?I)/ Z0Y2&6'%Tv#Ɨ מ+٬,o zo*fn nhbIp`,,Yy{dU BЬʨH8Q 5$ t{lՕ7{d!GLiiT_Qa6aΦ dA^8ۺi5Lʠ ƒ8#E $} #/N?s=wȡXve 8$CgsWzLvy\ݬϱ,$ *,E,*fP)X<],6"|R+4_A.VT/X[eᯖ)e~([jQu7!*\m ((StQ0'"HVYu7e2]of`T:T%/!BTܡ|[m@jϯj(?x` .AP ۗ0,j,WS,ZqLqŋ ,V16m_fȂ4% %{QIuY DT,96~MF]{ 9onۺY8UWuU PHb H8~A\ƶoDno* S,({7;,\Xs}qզP,`uk0 Y߯aߕ d~ Vڠ2»4K%$3ſyػ V9Kz%t/ԍY(:0xPocsXlp4tȻFl]de_! u1F;[T?X`1 ߖ@¦`U0Z Vw"'b^?v12dYbm݋`b," ,YS\ -; NyHLt\JlUDN-2Ř8tvԟ1ϸr,٠]7I|c-Y( C/| %0]E` m6k 5o!EmֶXp$V4Y'ӭ-T&d9X}Ï/,L%FW6s/qĐb .lӷAM Qh᫡>X-mtӻrb4d1Y:5GW1JП#q0Lzlm+ظlt FW2z7tG 5ɣr)1[ͷsQ3(E\9H'[ d1Jw ,}H`7 "c6ˌ)E܈`M$z}\'d O?6[)X@B;+ʼQ%\E$`1jG =Qdbq,\ jcC置!P'!Mlῂo'Ïe,+&U+1@-BL"M$ZL,d,Q׊̓գ&X\Yj]:j<7*$~O=m[e68]yMiA,D(K[b9PU?~5R1 e[|ylxL)?Y 0bn>^)~ĊE.9H:,p WÑ,#\GtM%I`FlNv3ܥuZ#7{Vd1J;&`\ÀÙ;dIq A $ ,|-ԧ 4o$x9Z}ի;:'{F6 0dj@8&~8[A궋lYeM)lfhqTMvYev;~ ]YDyyWBw^aC,肛{u|$s.( CK-r4"}?Ԏ X?'X(W(-!o+K+K9(9W`A2% ,K>ZX^,B/ hFCpX<dz0T ,},طda"-QDQ-Mn\ʹhPŲ?s53[ ;bX66M~{_NVbxY<Ȍ `1P?4N`SwQcs+;n|T; \O]"XPQIXq6`d6Lm zQOFH  =WSH,ZOp$X`BF׵,p,4`Ѣ̖+M7vB;D۝ J uݎ:,v¼ٰšIpŘJz+MvY XdiaS#Wd NIX'4Z V( h0umT+ '(љ4JZ{(Y8q띅:rݼ9d֥\R]LѦ*ޤk3+>,BݡX|`MXh>^*1*(м m tpPԶY;:8yx{yYg(&+c YD>XXˍ`Jn iR>R(_f+^\ nj`j\zq(z`@r?Svk@9ptڵ-dmY/5,擊߼ , y|]`m,~LEPsX?\(>)OJ6wu@9c? ,`SYGk1DQbar*7$ "y$f&c\  (Yz]0iOR,$;(!Yt0oV' VXlv3/dq:O`S,.u_D B 8bfAXYx ,vkm+7[CQnf^մI TDoPQAVC׳dLfüN)p,Ka4S0L[{9* ?{ YCW,r[ Nq|@P(Y0,j{ȳ'äS!/B=pqxܤhMy2uEnT(Q ,0Daxh0<Jށ_@Ϯ_KZϥxx -e|%y,8,f߆ya5`1Q17dCMǁs,X$B [hAEXL' %B y¸R=PQ=瀼цq> pAO^iJyWX0WmiB>W& ~d!l_.5*t1A3n_2c,~}ȊrZ*4y}'Cd׭Ĭ0O 8INFb=H$PDnpŀc"r,8BAK1X]2Iփ"LI@':zوTqnvCC _#m,, kB\ wfҙA gH+$)6ǁ{AXė͸)k |燫Gmݕ#l :ڀ\ l]jD抒41'*4צe/8q0kC5fCb)OKk<13Hg>NWun,X_d11zcU[!͛絃xdqǒE_]'lpR ʏtD\DEs>&FKҫє}F-ngb@@c *Λm`~mz0ڀ_b( G=hix "cxg[:+EXa0XA %XpĉP慱sX_na 7⋃K; dbHRe 5]CoBVWlP7mP;iÄ^Se,萗l2YFʮU16/YSX Xd(,&N01=`۫'V2ZndN88mG[llVگ@~5FEp Tn̈v5|TqˢQ_̚=EBc,(XH&E|YNR ^`畏S&K莻1瑎{qO'j!lTNO9yP&%F"UΔ;ޑ/|/@hw:kЍ8tg2:"XцVX38Jƚ rK3orǕ$.;&`ŕE[ ~X[,|n1XUYk,LaT;'N/{ƵD>.1Hǀ[WQ.LBkKaa"d4_!;};sfCɑș/53sN M3RDwāPt}ґ aC 2X'03zԢH,jA~[w¸V7]!-׽yT*ئt\9{9 -#VNG5^X@?/cwtkb: MOɪ ǖlbG#'`F:u M,!,wo|Pasx j^:kP Q8:I4q/8%UxlUt~/X`./,ꊅ|2_=yr+@(d0U7t>ԊVg s(2 uI!(*{?м,&0n?}ξB;% Ng%Wnw)Y[J+8~轮9zbz^[tofEh!|둀c ,Y7ZMlaQ>ڂ"‚uZ8w߾bYPvbR1oK+ ]sB FC2- D^rjQnqá8ZqM('0suPJCc߽0]+?7NO2fSFuZ>@<76 D`E ŧ挼ݤ phM2,fEr6euVJ 9KR.bS#X`pFn XS2B8շ[mS0Y,X-JAm@:ʢmBF4MdS4 yk7ů V,Ĉ$-[TA&+.ӵțy<σjkX]b'RxNb$Sahﯹ:+b2En9mA:Ů }~6K2!u-2p1ci^^kajBтڡiUv j?/]sE`aLDkW!dב/d!  kpFU XDh(o+m,CFE]BLT,R8 +A XܿN]h,*U,,o2X,2EWkW0d?݀mbeY6TV ۼ&3ToCLqzxsqg%bT4C˅_ &ӆ/x)gH)7%{?2&ęUH5PB*ɋ*> P",㻷?xI@*d:|}zٙ*v 茅 HEX,=zɜƌ{jp;XE2.0!* 55 W,E`gp"Wp:S>?N&؍Ӟ_s->Qg{6 ] GeW\)4CɈ=WR8>(/ a Ԯ{au]v};ȱCd1zh`Df ,4n"K<!sLr+Γ[tx"XP+ SBLNjq%]1msڐ.xW Zhm,`_$p7@%0`d X$+8B}k1X<P ,>4nG\m|p^^*/?o;L/}]yysm, )q$F#MK e"1nH%e7.184CiqBR4 Pb^\5c., Xpv]XCphfXu3n̴Q`T@ hو3YWP#1 %V*0qI!f?a{<&I9JFHoԋjd 4UџڌΥXG⻯W,bъ&!#`a'w+6 ,Dz)qm7I \[u6m{ROK۞ي=4? cFU۱^]>5fX$=/3w,.X|ws)]hLLCjB簽Ki2ZEVq:Y(Whޓ`x A"Ȓ:Ƭu }U1<ĕ1DHښL=6vafb| Xb!AU,j+ۮXgAD_T////>`)]sѪwn(4&#HSi @WXH!&$iӵZ6=p`D"}+ H^Ձm횸`Xb +w\ ///^  p||~l& yQ$QiR:kl,YFH}2Bf'2Aw>6n,S,X*pfXźŒ+,8hO{ {qOplSSN%6FbX?PeB QhϺJL2ljRsJ>!XbNT,$zGDo!X.* Xxyyyyu X>Z:Z&]C,4y8W[ |m2OfX@֍~j:4pqT2ّ/ DXE,,\q`APN X|UQy)ίe>FgRRe#,$4dG~R)Xbኅ׷?X8YWf"\itFwy{BL_i͕U?p{mja}g\v۸( t4H+)kDE1f@O4(?PoW=DXzPZs}}܏g,N.nN,|l}/b,Bz x2#Gd,ߨ:A pތ!)ɕj g=}W1b#YxN,>5=Gc7 cOm,vBǽ%@x) M,~N,NXXq:oS0ߎWgDhXXX`, q[3Ǯi,`g,H,0BoxhcqʉXO,>R/l xdcaX 87|I$]bc3xoc,$%Cb<oqB cO,>'f,H,Z 8W 3$$p<q:_/XXX9 8`-[0XXXpŋL,~"Wcqkbi  {4&?X-ƂĂ` m,H,H,F   ƂĂ` m,H,lbqFb0X4Ogg/28;Dbph'g$$ChcAbAb0XXX6$$hcAbAb0XXX6$$hcAbAb0XXX6$$hcAbAb0XXX6ǕXk6U؊|5^ϚXXh`AbpDo]baŻw._&g,Z4ſC7< +4x  "&.B"w68UcAbpƂĂ` m,H,H,F   ƂĂX /f疧oi,l,H,H,Riu{X&~WsY  }*iY.bvbIߥ'7T|HZ0~#ڝweXXX.V`NAYdo9{z@n-p[n5GS'[=]p]q#5$$}bөuh$R[vSFbG)L,CjT2;Djt3=ph|bo nSF&]aG;W,s81GX 2$$=^` Qu5Y 4Kz,kFጓ.A˃:p0O\Putwԕ&Vh+7K4M"4cAbAb>* <Ii>-ɫYEyGk eqCv$|sGŧQg6[jfYpC %hv^sdmZY6ZFf~?S3$$m2,S}\;5H[O.#|Qx iNsLU/tL)XP*wPNۅL9lEQN{1Wfu)b-dojtI9-=N.`jfĩ\IߓO{qk|yX:YJOgVk~6np38cAbAbMZev} $՝ z4q6NYxCEBhB)42w(Y+tmAP (o Z":7Э^;:P͵ܘ2&! RQeX[;BߘxvtFM C}(Ψ`cAbAb7em"v]ѲK{Jtk+*XjǣUN,4&afek: 53 d ]^ ,0X ubu៪0ܨ|ZkZRl6[}Hl̦)bֶ!k~wb#;%4[5HLCpzcAbAbSת59FV2H{}1zn.:1m2qr܏mc.=L2ĺlEGi_' pyIWLEJhbU7Wuuu΢febhJ{5;]4+4v’/\+,LyK[y*K5W~hX2;awz7\K|dEgp B7ݙhn|֐ WS<$k`Q"Jt& El6F _K=x("^MlAfޱtѮlef,0\](6 0^ӌbS k;Ս6,-RWscF暴J֪Ʒ "r} IDATc]gYIGfvv XXXJ=ŞϝFTv-9496@;CWTeP{jџü Y'V.Ff!1K\ Ui{jsi|ׯ6Pnf..q_pbApH_ڥ)YJjkŢ#[O&COsvF(>:Q7 "6K ݴEW׻UW(a;;kǾ j]c|UqxK\;[qU!60arvUŅfvtWk9ۼyu|U7q*~"8Ӧ \>c^Iq^ :,SPS!\E0]LBٍ\~kfgnt K: Hׯ=Bw"NKS*|mPaE),8>V+ x 3$WV3S0?mޙ)u39C/|'^IGT~#oۻx7 .WkZzԡAV,!T8.sɑv $ו7w1~B9~XdS:*E9(hoWx?cbF6D(-NLYkD0mf~烈Ka+8bq$Xb~T?/?bɲqh:94~lAu$iƛΛnYYLb$U;-'H}F#Y4%Qm+@d?||82\.s=Ea 83I1J,V6QSt"OkV3τ:3¢|3۳eq;!vD#NH#^XLLY?EYd|e9!=! 24Vx$`L/KYXPh&:U?qˠ_v3dveo9aQ )< YE/Vȅ5a!-sPa y )o'oJWdXǎK<8EEvSW2)Mvz_;-oy[ K>4\^[#,甍,+~ IX7AR=XYtIsa!A'ZIS=GeN,F 7z|UbI6 A>>1V+UaAUt7Mj5¢*by!H_-h uL„k;rҝq)-ꋷ)O*e6嚊ߦ+R"o* _jY\u‚6+)F+44<"\g7Q{֒qi9u)<n[rVXc ,c/81#-Z/,\=KQ=.$F,tBȎ:Jrg1|KX‚j*&=LHTdIXX K1?O:+aQfdU2E[([K\\¢lhL(+_ 5 ]1aE"Y8'Qcʁ+&9B)%XU=SN~7{*ؖ Ϡ+DZ8]!ش+o*gk6R۲,\FNBM J'Wu.%;ݲZXp9Zm" ͅ N{T/wsK AXΤr" úX4a`/o^Wst+: p,X‚kza%alPs\{]W jȵzc]8b", & u]p~lXЕtryTy7r{h+" /,שּׂ/}9Q6۵+ٕs}U V_:`wRl+"\8e[ O61w X\?niv7@TPyY;lJsjrG",z a!bxCPCuMX< O*]Wt*TS*nY'>Y%vyT7BT(x$M,2{abX\:*4"&&]1eap,X{<$' 9Ž|w:ݵ:.=kӷ[S!'Q./.a\xqQ ˖-xî~JYTX=kN;۹ L;nⓈw , n$,ʳS#EF1l _a+ 8f /#D2 9DcHcMBg/wsU NX;ܘ19ɯ+o[Z*i9k/b'ro]S{>H@a=WFӝ߃~bR""7>MTu_>YZSKx2{~# _nb:[smmcǢn<'Yque͓Gd!>weAQ%ݔGb pVm{'aoN'Q.u1nj+n< ƾqegRRbtb/ק'3tlXOǴ8T +('8Tm h^"qAp,X8FD'6}< &/tuu}DkK3Å cgZ8Qpۗ}+F2}3`1XTެ[8ېpTz α]x*sU8eiԴ0+Hsp yi 0Z2l/VoRvsF@ OuҦil6,-wMLl_NN+2C)!/apr} /⊜:yWusmonϛ.|$Yq J7-xiIl7i_\9I]"g4$nVM!х@?W)uP1z.or͝7Ypp,XT暐AySL٦6 H7&L^n>bA64βB=eY!*JH׍h\xM#+s7i?>9䶼.7'}xˋVdxEgL (p,X%q5&"ly`h,6M(grPL J6{ch{V+Pc:]یAdݘfVt4YaITND>?s0NU:˅eD,z- Z@HuwKx#Eg$HD0n+}e<}ثLY OvW 8m"nN_QެO_4\.r ]k 8wK-auqw|=|ツ9F06{D 1ZXYБE\!Oјqhc/.V; v,W*`":\KǶf"o`|Q=[: kGW-`cb&n}F:!LzٿArBnj4l0Q=أ'G+7%.r.,k[я?D*ȫ|[:|G˅w)[U  8c~Q?@{ 约+/Zv/$D=ɨ7 4cW:؊Zaeeql_|Fz;bӷ% N7wW- 8p,}sm.v,K8Qźb_4IU?l_*gc)ol:g=!g?8/wr?j/{Da%4UzOg:4v'o#Z>5ش38aX(]Ucv\O'].u5kU?-M4Jyy{Qu7z_]aB TS, PM(@5ŢP,~B TS, -PM(@5ŢP,BxTS, 5PM(@5ŢP,>BxTS, PM( _ǰP, bX@<, aX( BxX(BP, bP, bX@<, aX( BxX(BP, bP, bX@<, aX( BxX(BP, bP, bX@<, aX( BxX(BP, bP, bX@<, aX( BxX(BP, bP, bX@<, aX( BxX(BP, bP, bX@<, aX( BxX(BP, bP, bX@<, aX( BxX(BP, bP, bX@<, aX( BxX(BP, bP, bX@<, aX( BxX(BP, bP, bX@<, aX( BxX(BP, bP, bX@<, aX( BxX(BP, b8Y BǙ?:=pZ;<9䨾_0N Bh8\_gn%r1h-Ǘ1o/m} GXF&#_iE/߫rb}j^WC['vbX,ŋ``N8*e|iPK>~5^GNp#7{W8Do8!1x2F|q~u:@!K7(j#@[#ދ-[GIM_㠤CO|;8˰G&P0XenO*UUE ̵s0_ /4EZ r:a Z]A]m= h*cK4CeYFM%Jv{i>iI-]D ]@r" 'N]8*2 TnW-˨24P D,TBe,. 5AR0ZGFi[n%L$.f/ġ0 M.]T] &'ˆ%43\՛DߍN(A ?۬/]F.n+Sk#YGnJԫhxb2*cht7r BUR)ŀHzpXW ֐ū @zq>Į}֩Z~V^<' $cسw5.ֲ,V%GH6H5r3 - h&H|XNFK=$ahQ#Dwozr5tY\Ր 1E*|#b2*cQZ+|37x<.08єAQ(|,&U`J|"m9 'ku1:}];.G=0Ew}\ ۫qg-YwI'+d\h uԥ27 Lcn#7d9Y$=h?ޢO('; >lzs֖fCBWQὈXEjl5ӴXy!b4(8;Ÿ62b*7VLrNb$:5uDŕȅ ?9yJ,D2H^gNY|g}(zWo%v8/eY|^ܱ0##)0*`#c`=]sjԔ]Ne ekc`(JgOSIEn%S9*l,ESO *c2V{Y9Y炀G$ EDJ!̅j`l3^] S.IL]W7FT2~{r#wG2WuO- &X:c|heY# D_~c#όbX|,rHaŲQEq/kf~垇vfZ\?͌rW8}*D݄|=D*r`g&m5'5TzpYA\hxb2*cь~]k;bŚlJF*0)l]/RlY\Qm%σWVaF\ P f e.DiI#0&%|,b0.Ă]X&;"}:<{tXPILP!Xϧi,B#$sc20_Ϙ&#&Fs'LqY!3̒z~ۏܛwF-}x% E$>}6Q5VlH' {5/E ۴l;TMVG?ό? f,bll=.뙶!>|YӐ(`:",d p:E p1ˆ>n }-h [: ky "EjX j(@[ PѢJ(c,I ށKUd3(5ޙ^<謋0J e ^XX\#`>=՚Wh:'ZlZ`XuxYBS,^Wfļ"jWWR"eQm:HI{D9 xl =UsH,Gży"@XQr{nSo"r* /P5U%;5>^w7tu<:.A,h%ѻrӔquy| ՛D}ccF O. @y|x$`(z'g S=E|uS;7N Py}ÁhY{yE8f'18Yo,‹RHP7$fcƂ^{ykS'X?hzN䀃0kl0:C%x_Ճuq%yT-F4]TI@A9?$,71|*iDɣa4vGn9sgt c 췫b[r H74? Jh .A! >?{3!p/8Z-X; p%GMҊ߿YPbGJe|HCrVMSE,^`1։i\ nذteVZ3cЪT(rf(:MM7@h#:Rg-A`x n3ҵ4ڤ},Ed,~W)rsr q ;֧4[g+,o2bf:(׮ڪL(pEGQIg*j E%.PFOV%MN1Q@&\sm % "Z35"yv顸M,v>?v2N?GEU /cͲq;|0 L/^=bPDç ne,aȘp5"Ed,~A<;w(75uSIOL"ZBF`c Ԅj6@nGkDT+`z4d:5\^?XT>17z@fm2/0`XW A5 zAlL1@Rv V(V1񤝺ytkT Yhʁ3=nfhBo/& VJŜk(E U 6: c.cuMXz4[lUO8o5ݗӑ jN<0Xq@}r7TS$XdXu'e,%\1K?ԣ%6>hVc#c ,6p*X`8feB7cY YC>XX)4@x^'%b5Q}Q":!RY;pe!;rz283 fTV!\GцW\par]Ou1,<̢},R΂y/ζ~u#imw' V|L zyXsZ& 變Uߧb9 -P곴{j5 S0%}w+am7I7'S.'^D6U UL9dNQ q" QE%L$If %E̛gzſ9A~\nD(xX~ޤ I~&dnɏ2UpDIpApqvܸkW6ԝ1DΕyဘ( %A|uiD-nTASY#$7(/NXa|T8 L|֯IXlX(P#3 dj"-bpa?*ԫLE`dq-6{1|: ~ r+g\ڴp!~Ƒy'bႆh~XF`Kڏk?dK5@nOIGBU_O`IK_lRNSŚf\MZBWX"Lr^ H?Sٖe9XsAŷF fT(Z&"5!DXha/ަ gb(Yҫ} Y*ZAafڏY@nvkE u%1LBrC~5HK1kdRw-%`TL_!5{4矯: B "g )spE&-Z=~:};_Y 2?83r|鼽s_I ]޸oy`+lc57ϊᵗv<UdI[>MO!~ihE(d`n^U&P !$m)֩j3b!/|@jmx oX~"r.!EeyO{ !}&T  V{ LvHg*ոzݯPe( 0ӀnvOYq3D<'՘ŨUCAC\FXŗI]Wt &-tsȽ" HYJT`&պVЬidl cIYtjfܸ ӄEYƂN XԱeQWdV nʦJH}qڽ; IRX͹cIubjtj,|/ $_q_b{]vx?|ofE.9.h|Q.+D_ˣe{4ԡD(捴pm#G2ƾwpb?qTuLC 5QVP ƪ6-i"lxRWhÕEX|'V{DZi͸$ Ps''x #z޻ǝ;1|g;h;@Uws06S911ŕ6eGPY=27X(ڍQY/<ֆw2+ӀIMu 鋊+;,2@ f ;64'0`y]d.q:X'ǴG&C̚IKP$(,u.#˩=:X=#2=kzZШdb#ѴMu\΄iciaTA/O0.y&.']l:y3dIjx\N'вHÕEX|k9:66餵<%Oc=~t=˕ Wda|!P>2o54[N9@t\#nCσ{}jD2w5 #ERҖJ^Q8t`Nt3qB V$}LρljȜmLRnt,nkQŝhƃar E~9So[ h]7p%=x90(C9Y(?Ap~îqPzu\rQ~ed ,UV ESt61Ma:|B(R*&͖WYG'-˥xjJܛX?^{w[譗-ףpx4 lDJ4k {ȓ3}ρk& CKUF7Ěpq7huCXԽ>tKA XHɪOi(յ5.m~*pXX 1Ķn׽uF*՜Nuxd,Ii"]iJi4/ez08_m4o_Kdҽ@7YF9a0ZUDVԵOyKdiHٍqpTؘGi(a"B{IP*be<7 px|Y?HCKQ"~Nd@ZEc?&B$wFBA~=RETMZE{wüI`y1Bs?H0%ڠyYx^ ҜQb쟀ŬmǡdL X(xu FEc/*21/`L/»krbQk M \){q!EooeAY \ UćyF`Z3bQ*_Yؑe'L4`!f? 3hL}|s(:g$ԓ-LI~zʱUB]EH}@h4 ]ՙS |XLԓҩEJޞuRU ` Lu 0aH@߅-{|p%k[7ɁXx90\cI,lVe[#cm2`Jɭ9{P2ȁNWVZos+ۯa7dŦ76ax 0]r)T,J+Y<`yC#A hTUʀ Y %Y qӳF2AhGkp2`xeۮ"+*!C)`Hz_BerMn|+;]GEvDVĜʠ{ \,} 3-(R";_!)jj/c۠qe`2_A3L)BQ*t?(F2nņÇ7=MsAycBV\C|XVh X:\w+5'G.MŌ1 v؝TIJq.΀,"'\˚ʓ-Tk+Qs4dѹ2>-Ҹz5 Ü?k5%h(R?9.#ˆ,= XH-`( XLѤn IDAT-"|XL `cF₀E+<u_N"}eY,=M %ӥGE[BN/q`Aq+sWGb?F'nϦ"䈠$z=Q/=_o.g}r7Y*bQF:u- #PKԲJ&05"@<ġ0ڰhq`AdXL9V՛"4y`v5T,QؿZ ǀ xjs;0,.S5La۫q*~X b#=(0eQF,JŢT,~~BJ\1L9M`-md܊8,hY? ,oMO+ԫ<߼UiʄθxvXk  0Qpk?J,VԐ_q{>%Q(MbQqke/nͺtDZyr76L,pGZ~ߺ'M7%IDu4%Paƽ6Bƹt{HXva;; - G|ܬcA̦b*VDDDDė$QA+SaD桱m$E,,Y7M6K@4< n_ ( A{&<2CYԘ,%kbaPƕ{wRdG^fa=IX^)H^i y$_8T#&iX1ȳEKL&&#""".ET,";NPP@bK3P ,腷f>;dĽԝyIXPLV!M:}9%.40c&arO1(8k'i;fv  jeD+g]YKٳ k.wź Öbqo |hl;o>ξ.H&RяXDDDD|ebXD|obu#΂* GðpCH/]mw^j&^\ W" ?vvB+Ģ0ggB;ʌďG5==\,} ٱھqOrަn\5ҽwjyTVIjGL~'WL\{]]~1bJA 'T P?_Xx Y"hA7?  ''S\C;L1ZCiyMqNTA, '\cɚTSYQֿ$vɈK,bM,t:!j)p<oX8!aCdxΓK bczb@:!Xss"l0z1ha{"K4e>O ' }Nܗ:z~1#nIO"-d2D,X.[}/u"kfk[Jk\HĂŠm:bsG,؛*, sCsnoy:u )+.ET,bBĢi8@Kf`~L8X5hl]_Zk/ѽ %ڨwEBW_J %޺G,:lAu(_a\glV_N>.%hE+ +N,@!i疲\_(T =TY* C[z!TK~gG,vQ岶 sW9Mw¼NpaBEDDD+ET,b݉G,x֬5gi[ }A1Ri 2q`b,qkT \6xþ///o"OYucnSCE[7_Hj;Ep˅*d1 MUQ,PRfI%(O!C+X528K4N,.XH=~Ɩ&h;Da4 ߫mv!pë"QDDDDė$QE7gg3ArE9u?^"nmMo4x3K04M_Bz\/1Œd xlU XHmӊ {1xZznmXMNsX,xMsMbm2 +۹.I{ؐOL^C5#'skrm0[=?)z1IbgmclDDDĿXD"*ߜXhl:M[N䋜zfE''2>iRmnj[,Gt[M@bV>OO]NeN ouޓfh7k]/Q25s[qdXLl @gCCl9o7ER_8$V5;?租O/Vp(fZ=^Yo%w@<&m2Ջ?ɈK,b,L@$;m{\asӅA쥵BʣD%5WXšueleբ"B;cS0~ V~ns7h,X3yEҮ@&ºX;".|{8IDcz<萕*ᶷn=ѲٶzǥY%,H{ [=KYp|N-,D?xEDDDW&QEw'YL7A!1^T8hLhK`1dwiBgYR#TR6r_XD"*ߞY<И(U'Et- PtljI XgN%4Cn ~0pMUPڧXtw':ٱp#j륂Ju  +$+Ӓb:xL* ;80=^d4N(!I_?:usRŅ0h{hۥqZ^ҳt~&|5z/EDD#$D!&Q{A>im|O 5]պt8v3^ WlP3Z͙'&#l#?X9PBґu. rUH -Ov`Q~-Hly~MDzw]"i 72"#7/nm,Ѧ;7mTA~Wx*ZU Ars7wo,o&Qgè>̂@bX"%qࡻZ=*[c 30pv cMšrXBcB H!7uZAN[wP@eqyG~ڒKP=@N.݁Q]߯ zJ]w#Ier| Ba,TobVJYq4j+*mhJ#NP/ՈO|G7XDb38qP~'賟3 o ,s4WvPƁyH[D]L΁ɪc6nqOtFRtJ,86;pӪE}/WZ<^{)Ci18tr1D ԬEB{Cv5*_C=y~ư5 };qݽe7H$95]0xEDg?˻?>^[_QET, _rR[Yl^)[[ꊑԻ T"&ӺfF?6qUmB &`2u:rOHz/X~{qv^Ӽ4Fx}I3c74;t2Og[m3i_CooBzx dz.yanbwn!H ݍPkx[C/:#[F|Yן_~[wH'sѯ]1EsO١4\"|_l Ǎ䟑=3/6z _;*bϧ"墆UX(c_uqR↠tC}VlXxy㰲kIKҭD|лZHIKtwEK=WPEI]aRClZu@?ue,tBr 'NpzZR_US#<7g`#;p|h&8#%v(wVۼ1^Qr~UA1ʄӖ+5XsvB50b vbs͍gD`Ls_}㩼{H7o,^_]>0 $V=ktHPOEm[5`3m;;:⸂"::)K![޶n(cC줴5w=!ch׳pn&ax1Sʅs_dM s=;aZE'1oۿEcUD)_xE[u)ƫTBA"TfBU3ḑ|>_{Ei1lcpv ,| UTTlґDz =VMCKbPr}`때,}\UVB e,dnr`$cV%[Jvix [pE_tu[6`f%0ݽӵ&EͿ}?S` 4Ol;:1r ԭe':\H54<!Z:PUTk[r0s}Zzc``2V'tیP $O4h)"z&B,ޥcP^5Ɨ< 3MeOHfӠVRH./J{q1t~c ^@mؔNy4;g{x3j",W8B,PpY( qs6(ADD6\mQvQqɀY:YhYȩS\ Cu<6٘+v5V`2ÅNB&P0^`Y3rgBB GP3fcʖoBoЪ璛-yOh{Xm< m >\APERGT -9`q-#> ;N~rM >z{ڟ+gl Ě 6z<ʣbXFEa"EX(cEoQN+R|3* |@q2Ԏ%41'tƩ$rњrli8[)G;qh0ht?(nJ3ŚpB‰ntIAhe*FO@W+` ,Txt+0*1}X| P`E4ǫ3zfI?uΥ(M9pHzGT`25k,4/|+mz;T8f2W5?" XQрc'8kL5]t%pU 3۸5% Ws 95 0ڊ7%TU祆=Ld%K\`%-"bhOM,WѨ>GOVmX &|{~VytS)=|r!C*k ]A whLkև e,NlArf?lW1@p"B@ y)X7h )p1{f3??aOsAn]ÈfA',2o |*a!0Gnz% mxwݳ 1mxUh-;@"1Tkّ&L wVr|6&T vM@ 3msQ} 1Q_ؐa^%#A6.UX(c(1 '?.ee}DKㅃ2Hd1_.Y,x !" ^$Pc h|f+o7s`GX f8~+riq+WC*,y ,Yp%jـuIp&pdTTFTDWg1xV)BLy 'CrUHLcB}U-+}L`2cJ,+' N~rs`1E_5I|$VG upYt9j}z+ӧr-C  Ӣ18Ji uOej4$Zk.]y[ C7 "XwRDm?Mu;Mbzv+-h,lD*X|[eLdFn)Bjj4 *?m'p܍FdMz>(: aWSW 3F>absitl?)U_D|/'tlisr`c  r*/^陝T S6-0ԬE ZhlDjr`4FcAl*1.vd,$Z,X` scD/XLEsv:b6+k]_,Ww׻hv Sb”%"%R3i $iOn,\"'  Tl+;W;;쾬2h,d.ydEtlj"T̝osMX|:XŅPq&X6^dlsFj,z_ ;ܑF/iX}fܧQ g[QvȢ XQIh0̇“"xPcAbAbQ(Z~AomFrcaϾΫY++[jC$>"cgZoxgo:Y^C5$p_FSUN-S!|dlY$*vN J? RUW\RzƂĂ"xls5|2-T$ߩn@|CܦV#?mGeNFC0΅ v&q$h5Ć YyqWg.vI![ųc%r\ ;νi^s{ynLS5uvVƂĂ|8Um%$uZ{ $H%K =:I nU}hbDj5ף@XpXwYd?x;;?@ K٩[Ou6 ҍ?=w;\D"ՅlEAӛl$]aPEhRo/쳣~Oؿ-}LcAbAbQp\4;J(woCL>eVm^^:RVd Ziefm ^5&++Fk"w*sg0p]Hsנ״ZCkE^#j^7͝BM<ߩU_ѦQN3_kj-ZBZ_6+\Z O->6(4XXXUJU^&jNU3uVQM |l[KluQ#gHGT|hͪ~"ZBjxZM댭jt.ffWk%.t J]Iɫ>AŲU-ԓ?U֡W.[ʉqҏZmCzBSh/ M3.hٙUΤHB]ֳB> Xb5\/$B|Fփ~t2شCN޴rz+}ܓFFYz-\;_au:\- c/ JV9:|N^yEVN̮t'j'>U4$$ٲ2_+'ZQHZ6m!XZ" ƂĂ C|k'_4/  Z(s4/  ZXH Zi4$$7   ƂĂfcAbAbp XXXl,H,H,n6$$7  XXX\묗o3v"ULQ4$$WJSU;LY"p% 0ƂĂR9ufTX ~TN+fI\nJ}X-b`gުS 8ٙ+v#]݀}usGDV H˯wB*V[8X,vw.O đ \m>{vFb`s!:ӽθ{g-XX*u& +܃c׿̀x03oiP# j=y/03 vϡ!//.SSq/O㈊zf73Vŗ&BoT0RTe%`\/VMR !Vk&~tSh,IoxQux24b`M=ũ=<bds?lYVf10~nca X|MdY䌢X*橁m>ӤJhAU'E:s>_1]d#L7n% m;^B EٯD1d$EL]ˣvKneWXX*rr ײ< (x}*٤>,Sf `j<|c8=b՝ĬKnje0 ov_ˣϑ6|< Ǥ,tֺ87{B!09c*% ŗу  XXb7Q^n!H>Ԩݨ/`NZl9^:2R|M 0_LtD7Mrݞmˍ܋paY/aI`0 Frݰxͺ,Z=DT%16 +[JE^#ġ6A|$0~^ca XLb]( w\`z3D̝ D[bIQ qIZH6i 2 +suUgo* e,W  [iYIzA4;g%$wHqSMZ;v[{Uwn圓t @m-&Oj,ba 7)sDUw!tWㅣVB\p2-c+(MK,i RV(Mˮ3;9s%>ð9Xw %W@$Q"q ٵiY(q|=B*kQhI-RpbZ6 jp-^5: ng>Eƺ뺑>@Qqo/0~Vca XL$Qw`(>SRt9VrI4axZ%eQTp O!'8U(<q4pqʏ,"ߍNpS;:u l{+@9*߳ XXbb,8%qf/b Ep8lT)a$QUBHuDB_9RC98=IRh ӫwSR0"0 kW8 LըR蝥8d'לL5^NეYȓ`U)¡Ab7dXS&ECrTPӹ+g4V&X`8 }F]H;L?j("|@`N^ p '0v']zRB·i+p&oJ$EW/` l͜Acd ĩڵ`0v&fVM'ZHN3i@= >ޖ5nc9=9 2d GnۊL;)nPe%>-t ]!c)e˹9ZOs XXbJNpdQg`ǖŕh.WmO8wB `0<`a,xǾ!X2SK`/:r 71nϟ9=Qh𡱁 "Xb4K}04f,XX*ȩ%_T|D0íTXTptcdUJș>ZWs]U=&,l׮?V+mZoBe6IS"5ueID_" wBLR[z}hxt+ XR^ AX??;+2<܊v`*,^0H #XԌAXk(Y)IRb~#p4lg2_c“Hh7P3oPX0bE8i˺cSO[ 8+%aq~Kzf/(\< ,dB$7!QryT;74VEa{@y$b  ^_JTXPD%CgR@z٥ϵ\;h8D\J'WNSOVa*HoLX0bE8!;SC/.n2uo3ޔ̢!霙Tm&L~੡\l_@)6g ń8/ɈIa39e 'Aq/ܭf7\QP!tQK̷Ͻ"e+;OX8yIi eTyGG½ 1 F,nUX0bE2NO=i}o;aPqk ?藆c^qxpqљ:WXZBÅ1s Ł2A\d.j +>>HDŽbZQƂ Frxe5I'ĎCl;wQ&]s'q:ɜ0ҜGa=KǪAuFXb3Ycq‚ F,޸=~,~?KόqLOf]t^LuUq IDAT.-,[j.x4^2Ԏ(ν[o㥸$`X dgEywl('{r6AqW}sA۲.jwEƷy l 6= Yh-fWG@2rtvFm F,(=p{ാ19!g/1*MܗrsbZ):ef!Wi1U9vP,-;޵ v.ZAY< "6-] 18(.yAĝp-{Y}{#ƣ0Eykydnw,̷JƋu8~wg=3\+%Kwh0Ctd .YV7;qO X6y#X`N((DQNYv\[V]Hb{,^ƽzKF#,B?4b1)Ă* QyCxN\V^c6]FV*/q@QAqWp]s`BNcF|d6L'Ī+| `@UpK< ZtBs%yhIHoB "LƖoK Lw‚ F,*nF[ϦYpϢ0%eA4S5Qt9C`]u}|E]#+X1}n e1-amY,77Ī! ~(*!l%䩃 h"^KT[$.+_+hRfU++=DwpmL[X0bQs{=ef3¹dlEBnĥ]k ω2xO#h unVpJfdGϽqtE e tqϺehyB 5[[A]pەFؙ'~TDt=\-j|v#ێQ <1:%oPBb(%iDځv3tˀ- F,=p^P1 {2R,Pk:DYh8uRs':1^ lExyPf KܲYwmm>" W+pa"#t&+a߶!l>Jd%TUHXw0`O3^ofFM F,x:y$ 7$4ochco)k*&q(GCKon3芀fv teܐsbx Aq?m~4W.O@28@n 37A΁O"2LfyſW9Q Jd^Aq)3Hз-,`u 9)Q{b[]wvBWb/ "1IUVF. uXb}VKto sh ;~?wg b@2Bo[ʷ6RnBA} Ev]Id܂ !/&Aߢ`Ă7MX!% MNÍtڪ Vy[,AM5]E#zX'Vf  NaȄmgfSopkSτzzIQ12oj}Т~+>.oH_ծmX0by|ij:;I%v*mT 鵍[,1rҾ)+ ;f$h.2]E;G{2\Ck&Cuwz‚ F,޵Nn'>)eh|,'+oUk_eჇ?WkyWo -3]|u"2]x™ b~:в,P{6#X|->Ӯۄ$BV)aGm}s >VQ#bOݓ|f{Il +f uI8u(dYW|Ȣ\K4䇷ّ5˼Onm>_g*w· eh?QvQdul^p 7ف2z4灅y~Ǘob0L6GED2C5pp6]G=6/S[Hhy1͠*+q.!8ɈXJvwSt>j4 ]F+kv|>3Б5Uğ=Kb(E!>`swqFKΒDKQ/GIhEuOv{Cn,[@,o96n.0y ʭs>b¦s4'OۤQ5ҿX3)H+6{0]+MT_W[L彺IǗ8Mq Ym]h5?9:NHG"ՂS=Uɬht(R#p`YȲ]3 ",o\h=] EjJTnkfbhc*8Fyus֚I"bKOKPga.eo/YOv#__x9}3"dd$#,ŒzͦFv8GJ0<1f;aSot.=:!~-~j+*7 )r% Rp3Ur%FJd>Ut8DR.Ux6*QX7I\SHA~ܣCԍme-5cLq*lf ;A uU[b 9JWv;qI {qP{ɽIo'hm0p@ArЩpc?B̀:z :]̀~/EVSu$x.h \գD UƜ2n_ 6 fb%F_Iu"W*1xBqlv)EyJ.<\F~x3"y3̋ d7pVF};fSq)-yeMF;aݣ6`~< :-c ܿ1W4S4Kͩ+-];Ϫ_s% ׹G1uTEMRu0+B9])?4j[*k57;v" aH!( )}j}Pӽƽњ*k v)|~ ~r_Ң^< Q`z)f>)œ{ Zb)_#M?I%6ǚYjie?R"U,~r# %&P@# L2^ZS׾w~a;bz*OwCc)!K.ˠ!7gPLqz|۽EBۮn,ϻ(n zKCB1 \k8< px] Uľ0hd{{&6 ֛0Bl ٯ`78]8!7nDk=a^g=믗3#:JoV%;@U![:E WU s2nc <-Y4nyaXG$^!,OFW:e.յe OQm9LfIůˉr0t>JrOS+UݶDJigv fAi l*q_jS]tYX]rAGxJxJRxU9 l1wkOgKo!KgOnS+h^NO7AlV#4)Վ%a+~fp:#a類bPbKTPhYl u; l")`? 6QJFXAøBܱiV6 Y.i.ߍla­ JW] jJSuq/ƍ|ٷ#1 Tۏ~bߗ~zzyz~E:WRg*Nfl\V..\מtBRnU$uSj#=jo\c@ߴouUVb}lַͥarE0E,]n 3R#$Nuw_ Ƴ֟`Ҧ{>oO8ml}R_QaRFR l]Y'{2ZSBUos:= $#'B.yg3[w87uje"Na}zjWI$\n"˲ض35NN%vU![[g]{O6+vkP9GA' j^^Z jXIRxcRd*b7`=CG"ޘ?8EĘ Ks۹L=mSҜ`hNpw@iK wEu;X͐'bJspddA7K-P ڷrPuZV@ A[{0&vJlm$ lLA )$x |7臧3!mF%D 裪*jQR٭d+uW -6A)Տ}dM&^b'߃q?b/r nZ"xc#6 ߧˍ WFxOAt&'p-P0 Dlyި#5Y]w543QXFWdc6 :ϴCT LXOX<3Bw `+ b(qTl!}@{~j~׵i fVaH@#ٔ r`!k͝Lݨ4>ߜ}V(9 `C~?m7ӲG zi, zSQt,xv'QKD+oz2+C6[V^I (= l>Fȗy Bۑ:})g=buu ֛΀{C?BFTfx @;xlwPa/0񨨂kیZ9 c}]M8|u5̯gPb:DA7 p[[2VQ+xsM@+XK_#{yvySJOgܤ%O$]H.Δ!=x_Y&R@}58 %7ˣ˷t+ͥaW+׵c5i`߼Wȉsx3흈Q`trzM/8`hL;s&e_]l7o Mc᥀fk9mW6Je<4mάVTtwd]3y@ҢK1OY[am֯\rlp$ڳ?d2LV_eRI'A{i>*k[ '(Gĺ3<[X<31 ʠ: XE0k6,Xj!]1 sR#,Y!5cemLWEz̀ ߘh*i̦bM,ۣֆ o/a,՞pok5UZ?i 54EXc"f;X%T 28V2;nqC+6~O@b ei4*j섺xS\ޱh8-T8v5Bk{p([3tT4[D%a8o<=@pbQ5"_̨姳vB%W_]{1盌5Qe ^*!GB~RgGx?6ozq aÒiΪjiT,)&et5՜ψ@GHbܥGq;H^ FV͵SG>gW_guno)w<Τ2"9I`{z#$Ɠ!aNU~

R|Z$W+Վ7~x\0ߝ0Ds|YY%?rQ-B۸5[&ރqk|7Pq0mi J r IDATTDL>_=80ȶ•ck[e'߃QyEi K;zXS&ġ %; B2ȖJmok"ˍRa[ܶSjF/c*$ڠ;et{sЦ}jYcPmNr'X ;`ϔዘ*Ҋk`wt,X.jpՍWU!Yv;Yg{yS ˯<( :! r?e3ڲ"Xg0}>Z.R)7vV ݃(N8捱g{6G2$I]Y`8hA\D靴7mh˭yeRnEx:sk՛yx@p*7T|̻ sW818RiHɲyEp^p@HC͌IX_gG)dzKk+aX|K[vdG/G=YvjSbQCwLK>'v;,x~!y3PV{bp-ɁeFɐ9Q~>(v ? 99<`IkOV'ɛ3a>X<3g1eZ9Bá?+ "\iӢ`ڪJn]XR};3?Hn$|OzZES~0" 3a8{' ܰYr˜9,3XB99/XQẌ́ސ"'˽G:a??80[aXn]- rX5WVo6*»#'P'1#A^wwn!G_+݈+sDhq=,ǴN]UsB;lS\=(qo!~wZbԮ(\JRHRH3xHɗ5gYuV WMWn͝<:mm̍W)^a)d.%sl#Hi6kp;?=`t۲knG qIȖir7gS"b;O[VVn\CCmLPNM?sCWץ 'LlT ;ěMH)دI#N3"/4ѼFe5NIHi.UL &қ9гxLWPzDdǠԱJ6tϓJ8|yg♱#׺aS?0XUi]2e5mi2Y j1x U"Y૛sCRap 6-l3 KjP@6Qn6q;?̱Pv TnSi5,) Ehi7Va*Ci$E^oz{K!1ʮn>u\XSɓyԧػ䶕xJ_#;r8$cZ(eŕΠ/[> K~ԳIg0@7]-ŌF$3lr(\=+d() yBu%m~T vi͉o kxog6Iv4Hl+;a`~.Գ}dW qbA)ܫu4nrJ_#Xeks1cq? Jb3泉q;?Xw?H jMiL6NZw== =DYabp$=iSۋDf6d.iLZzS5Wk=˜ȾYwEy ӃI/d rlo~?)L7Nmjm{zb a~d؃Y5Um4hU jn,?$W҉=]ZA#y w!ťb2TN,2TOv_RO?+_;lj/xsObq-?P@/hIeHBM>։ %`}Q@[&鴝wm*rPXBO\@hV1 @pLtoTãLũQǖ 9ԗ fO[EG>eʊlp7idlaqG[5+.V]LD~jg&BKimsb&MXˆԘkOJ co+D-8 X6nF$9+9lDG=/bcY!dԵg>>[rԉ3@L77OnbjyYXaOJlbYϽ/ZI&omt18cX"-]x9k80dfU R}tvi=AvIOdO"Qtԉ9p82Ϡqt]噍X{{g1Ň0IJZC<2teJo5;K{Ö,{Ft@)08称h8Bm[%-yݖ%^+دhdGLijdP@pr>RM|duR)؅,6 FRU\,.KM A{;) UOPw1;ى=h3|owR 1C*+m!,G=V4\JLG&8*_[=hd$)@۪+sP6bӳy 5L`GA.\f (-" n1,lA͆uqR}k`%V{P8Jw[;Ys2,OP|,B=8 v"?k[݀g^Ycċ6섮o&~ #$_z)`!ZxSYS Rݐ)rTC0{6겛'lT1VZ~ Za_x^%,-Ăm&87-ySŘr笰yNkt&tFhdmTpMbd?RѸ`eˎe*PWH%ߙRT,+A,-y2ɜ@eTʔE;2ogypP.JZq# tq/7d MhmxLM 3 4ވ[9%h0I쐔D[NUT<\͊`'R&xy+3F`"dCb-|<:&җ(N:L|$)U;8g 쫷-rt㨩iDC;Ghu386 Bli&evi V|f`뭌ri 'a \oc$`|G>Fkt猊L51 ˫^(^un9B,i ev ^)U] }3,AI8Y{nYlYȱpvѣZedI\k+t]ٓydiP^pĂ[Ք]'-d`xIկjTU Bɯ:l{*+U*B s6bo/=.b}ڦ\2Y <.)?E85j"go9I<D3GKj)T4Y\*b~;5LW;p=FR `IGpK@xVv9@b2aU,4k l pdcN'wXuip= >J)gGbaT3{t4WJ  شo-ȵjNj$&[8ĺ٨3AB[.Xi 9* ̯"U]^L*^`:5#9ִt(|wM:w0T==𿑯C7Ή|1ڶR}ul/MrjXtD,u?_ɭ+^^4֫7sVRG 4Z9YלsǨ ,ZDV}d?IShBáJ(wS'b{Ō e.Pd1 6Yo :l9[e`zv땏ΓuV˞CVSn rlۦrQ1oZ!uH6{oYmS4Wk}ڟS2F 1m21Ƽ޵۽jEi7M,n{ vo"*G$g&Ԯ{A,yTFFĜTtX|ڊJbqX\*oXg,/v(C% 0e$oY0{Xb{"\\K84!A eoLy2PTBeY]!)g+~`C)-\jreU1%&9 !Ӡ{RZKp^<='VS!m?GItbZ%8W@(W$M ,ګqr|WWR84%wMU0SR 8$ꄄ,˚kRck0A,&|B;:E9a $>\[?yW,'|֞nQr5" ΁M U3f|4MijDrjW4Iûm \&郂/HÚo΁Y(9+#`Yt:AH}lяLP[% }GЃ1rL=6?BG6~{WAu)Tw OyNU-]ey_5&s17ٻܶ$ DDadK2􀾼fΣiCז)v]<1X=%@C1V}N%܌*]=lF'*腖9y*`XjEnG;Q6ߋe&tTG*9q'2́I,Rꬦjޕ)4o6M,CNB'ncƱ'WG xfa'6a8dQ/6,HcYVb p=C4Slu=YXy؉vw洈:`M9:MEZeˌfJ:0$pv Ym]{Zc(TD3FYyt&ꯝo)ަeڪ'IAH&h\)qWr잒:xT0V0S^_4ỲAmeL[z \kfȅ/Oa,"dT P?|{ q%. j5;M(>.Q h dP`~a9[d")LXE}ǥ>Եzx%fb 8яbS% BO > X ;RU<{#? 'LXIR=-(T?ԹSy7[ӵݵVHXrkOG`m4sqX"h5:V8=%#3 țiVCiEu*d ,-d;`X@>?Uʫ `=ހmbqX\+tL=3!/ucOCejBL]D6 TdR̊WDe"^4X_sKݢv5?MY, -J ;BXK "@Qf. !nHb?MOJapwЩ*ܚ[M,~LFNe3M҄7gyYdӶajjOЖKCj`Ă5+QknY?[h7ߊ;@ټ𣊧<#d`Cu˼x&D Ν"RBl&e37$rr{| tNw+C!B-JoXY 3**#)GB6:C-X+`!.dy*fw9^X%zOJ8 pU$IɋFZPLu绞XOmЫ E54~<8y~?O&ZobbvTAcg/M7V=PDWUak X H<&׾,4<8MXt=];wg7%V 8' *z:EVD[Eӫqر+D9Q,n*6Pm\:1R5MbCV´!GkENv#P72"ѨĬv-4[ޚT> Yf BO)[} XvPkXD9_:Xq}Щ}+L'2Eu_ɱj[5Cwֺaf9c`mWI_|b?]N.IA0,lG!wDCOڻeK0Jr'ӥHɻ"Q9QɾxBQL֍y՞Qa!L̺+Y^BA_ߗ(a|07V޲Z}"'ÓP*ƫREZ ռ݇..kF9J@PX@h,~ wXX0d|~MtT1 ݷ".U" Y8.B6XL6*K/|bUI<#󱤈Q?ހmbqX\KKdm36lmʌ']j9ɨDwz^205b'c4m.tUx9#9ua:JĊ+cmpyVL2%ol)ȴ y1-c%/baK\숳3Ud e %v}v[+o[ޠ2R{ToJd֖/3<ѐ2p:]S8Tosem6T+(!ll"[vp4~$9b,w]>s؁E4a<cnաz51FflВ0t8I邗ح=M7CSQuRn+\cc [ ^dR="V)'ɓƑM eS)|LWp `MxC.jN#M ѰF1"&s,޹XPΦoFB9o/ 9%"lh5z\2(,[6a+qϊ:=Pa_:y'Zuu_rT~JĉPu 65O,6,/T#Zp zj/JRPm CXf9nq Ώу9!XhtSFC7mbqX\YH<.VwEʮBlG\qDY6WՖ{@̠"VP&S5,l^ږaWwo~:IOv?Ms#׈$|RrQG.4B@I%n[ = (XTtƺ) IDAT8uya33\n;ɗܢ>?k 3A3Cl"S>']M6l8ᆍ4qf(̊ܪ# 4aĖ}F8wL쩺ߍ"rHNy+2+]'LF+FuPi9v?&>Ө^V>Γr悜A뭈K|gxiq}6_l.@ h}Y;.o ({[Fk9Z\AcNTΒb控 n6M,pJpû{ N,r=1 qЃ 객$4L4>jH8!Kmrt1.o˿ݝc3KK^cxfT4c.2>h(?יZPc=M] ⠘9EӨ%ZXd_;؎Pcŋ el~.4LB"YrK;egC[.wFqg#g0Q8ݤ yF*ޏ?7$u]^ <\N.;R"dRC6sBcЛn9VZ -MkueA s {ۗG<.QoVeՔzwEKKIŗ B:B2psÅ\iyxx@(XH59$fnu[>BqN|mv\MH=Svcpm6؟_[x#=g^K{~S5`R(Ǎ KMo793rKPG}ˈn! -ػđ$pc@lBH>ƽuefUELthgDwfb/1n)Bk>!:X'x;'=Wn޶u[ I9,aGEiw24D3~-}MڸеUO/`tӱ;YTC#bGc@|)hB !Q;B @E08ݰӔ1xx,/]M $!=c C0qZ) /*Єj0,k1o\ a9 YTx!ۣ.1_ㅊkΤ 狾LD %UfNF~IX]D\3DQi>Rc>K+ȥ ^3JR%JqAy=H(1]~|@ZӚε]J.A qX&#͛L(h_0~un*n*1DC.5>x{CTFSW/AlP/e5bv^_ybMУݘtź%}Og#Ii\#6:Ӓte篙뽐%a!f^KFUP ϹyI%=>~Dicnh:u #FUglĹ߼k&ױ!R9P>ʊU[icqQ Wwe>fAЖYזE* ]a2LuIw7hiy*a ˋ=6mdȧ";:!QcX~O+*J ߮`Zy79:?sQ;gOZlCR 3ό〝q^ `{WIND?79{=Z:x_[I'\* 츜7|~jmJMkSjvVIAq_,SQdyǧlgC7La~A:#PoyWV>6 +JJר};phx8YP-o츎3vQnRteu_jX X<<oSmo!=uzLl\(Oz%M2❽h=z6pI+blumx%|ªyh>H ۦkw-FaRݔ%}}Ab40$wrXX,$Oؓrba8ImYVLKQ3zv ! `b5;Uхc{/'Ғd)9ț0HUkEPڐNwF I0ԲX;!f"~, ͵q׳.f`s`yoO}H(=PC"! 82R)-'u{ڪ9̛2€/ O$̱NTbO#N2A˸x غA* iͣ-qW B7y[4'+S0(~Oߺ>J#l~Q!XDoq2X%?qOd'@]ɡBv^d1 mp0lj!~f3]Y֞q&_$X{Rer[U,7cQgMF?k1SN pL=jK=%סg!  X?-{hv/(\o1sXl6&*"1 2]ғ{F:yݡ[U\\qX%"moڌ4?ntqC )[1u@iV<ZgL&[T|ܪY·;O.V@R׮#9{޵Q M`"{/ffCEdAmሏᱸ'1dA-#xO7Ć([֘-?…̌߇@eŨ6Y a>B dqd7Fpj!1Z 0K lbМѾm/8aL b'\107b=ʶp3%:୷PҐE/Е s߂ܻSn",`sA eٳ.$Din>Pasm#ܕ48G\_D/#8͚xCs[lZ{AQn͌ϖ_.$d}=%/r't]6ZޛYk*=XX ؀e-/m^BdS] xTet#TL[51JƣHG9&%(w a5õ"Ola\6U1b3Z&oqAYQE&| MHbV"T5*ָ|η(Š +C˾8&]khov 5J%,ѳL ̪z/Ӕ)cqb vWx(9R!Z(|Acagh'c/f_Q>B@JNFv6^V+:P bʁYܖM(*+ WplSgK0mi޸8΅-h 9%&DKYfa"Gꙭ"˶<8GQ/[/ >΋66"oXaYX땣өQ7S׿ʋ4qfg 0o^7fe8tDuHe Ў:C>\pȎU7jbtS31eU`jlr2j&_laR]y|\ p;rBǷ!a%z$40!ڦ*հ + 1ؒGڂ DC=4Sspxl'KqLgI4,|<ݷY|KѴwf)ɓLh@pKP#i!E q `R=)&BXUgFeeQ?Nӱ~Q#%8KZ5'܃n ~Ռ}U~p!v p$- 1r* y6I&xq ?u/†x#~Ѓ3ps\:t> uU k<8o0q'rX k!Hɟ`ve\H}DFh8)$ +2;3;H[3q=p˙Gn:Sߝ(GLT>1>"6ǤŲr5fc: |!g8Dy0zT:}dqx@{ VP9}̿2φ5+01"fdβaé^Pc"8^GF`[ջ?WϠ<#[Zvb?wϒ+ ;iE€ Fo%csYB9CȲN|EmR]WrtrQC#SL(XX!B aSj}h,@T$١,-N?qvI9M$KOY$ ?= 2Z# ϶Rn0 )5ː~ x (&~IY K& db}I>R4ˠngLpOd1.j᝻! Qe/ vH3 NgVH(`My:m&@1$)/ɶVy!`,>EԤz"NX47 }6`hrKxJ'SMGL#S I)wm(ܧf`m6Ҩ/җ*lKܥY} [z=^o nb^*̯ }7"xV  4/RI$p%~beK8h$v'hBWJC@ԜpwɀB%w^q2թXQ:ݪ}ȄD@is_eqˆr,Bpyc a`MI%\u0sYǀmS}i[HJ o?BF'md\x2,NRCSpa]%ZSx[sG届GV{A+B(<fij63/1Q7܊T1!e8nwu/5B+".@lQ*ܤ+ *3Ew ^T쏅ymZܜBF_u鵓;k pӀÝ8u`&)+@o_Fuou}Cp=L)/u-I9E,,b_;96=;O+ljͤ;hdhW"02zLߓŴiKj᮰Br"02zT oϟ6񌌌n1,,ba #### 7,,ba ######### XXhOԚ fdd XXh/P+4cυ7_wv!kYUFF԰E,vo=֛Oxo;+:.Nd&7/`sfZUpΔ讆E,,badt(2(x\zCo<ҡRCZ(qux$RnZ@DnZ~E,A&5;?>ªYefvPJ=%z;ZcU*g (u(/Y6"Z?J d{G^lNop'畧Y\>%ofx'D7$=YڢgbZ|n.FF3,,ba #m܉\<*=lQ^WCFvo0 }I0s슋&4KwW9Z(!i@ʘV썟&q1LMA?.B6>ß IDATyp6D֠2'0YKjhmH.IW{D3l,#5wb?^rɈiD^u_:uu]A 6gri!tXt8/^0|+YO0:}Q ;{1w9TZr %*鱜sTO֭l#K(zT~!)W}$)uW$} x +lnXX"-6)5ê"vd*:^=NQ^ (du|w1 h4Hok`6Yaۼrc6(OȠFUlQ|~;QpAjbjy'ѣ7 .t6MLB#"뱓FZC Qo4 NZ=1 P 4N(5,rQhLkY>yL帺+u]~8II"snY\u {*sV*zmA}##XXbIknڕK{!j H%D4 XQnsV pգ 2 0+!LU6J@ZJ7Ԭ|Jo:@@0 D$΂) VBߤ]~_3q[PLI#%kұl<'MwS6u0̃.Qc̸G`d )bPMPQ B޵.)7܂Hq tuB _ GW[N3g,g*5NlYO'S6fndE[Ձ@Xl1a /[I9!)XՙlTm^#]KrɶL??/=ػ/\s3}}|\T=’_nE~p?r۬c/hWa s e.tVUqmĚHB̈+;Qƨ:8,QHlwhR; m0a̪"jkFɆm / S\fҶ-Gĝ\&?z.HYؑ8ߧk%`]S3سϑ 84 FBE fq\K|J5ȼ^?4Y@tq ڪV*HEt-@0x~Ik]KqqL86Ϧx2ZFm aݒ6 *fQؿqc"B^j+wgO(|>og,W$B/0?]v&N,F_q׬TlQl#wHr:abyx1.!z)ױg/ـu8ېQQ]Q4=*{a<6F$w[Fq\:=m74:}#y,Tzieɛ 9QSÆb~KX Zյ8J~%Ȍ̞?=9;Rr{V ]oQv\7rjX'@mmsC^#Fh _ *Sq/ W|9KKc Je!_G<~9CHnB5!\bXl,vCwh ⎪)٣ 0N:ItjԺfZ2jj\$Ldw;T`Bu?uvj_4GaXP@_7~oa[jkd`'_z ó*TeҜ-yT0LD.C40 n锬}cm+|^]o~ EiUѩ){u8VAMЃ`к_!O gqqŵM*\EQLI23=$(xJKn@_~۸ =D=ehӡaE78uni2OWtk+.n63d=, iK('Sܜ2VuM,gm0|˕F]) !P]b1U.X͐:O|XyC*^޽gtxI)ܩe?u>3XmJ$.J\TC`uY:61ɳvo=S_pp}0 a ı4I2>i_vҩG]+sLjP q4XOy8'삠Kmlڎu2(z)-}Y|lcTЋNPx/"XQPx폵!& g3_+Ե!vtnpuy^*TE0*y(0?A1Sv(N%R%7ySt;m.dYJ5V}7@UZ,U5s~vAÙct+;y>6 %6bJfetYpFš*Gx}8c`F~N k31^ E5~9mAdNkĜv1CD, o||~|l'\\avˁj:}'[zݔIIck Ų[JUnh DG36F*<^@(ܲjuMjx*ǮwnQʢ #yO 3}5 >=rL$:|6)ckփ7#j\)B7Z9:Q <H ծQI0|XCq@#xxM:" soU#fŹ%r]ʖ,#xBԿovp!|!X\>:rk'CČ/D(0CQb.W)R~\ r1w]|nnt ̵t&<9ˣy yEROpp3$cDN1;N\_;'yxõ8d@N~>9^@ ٜ̊.p?=D2yR{ʘr ^EOb q\L߷@$]/1BI "c_ zG0:j*ߠKK&Gs S >xΑupl+رKg5 "#qhnG}w b _]+)gY@K41qQuRk޵iItWUycpѭ&撮W.R/Pjo1N冲+MUA.cBÉEOHS*JS7/^fS3|HP.|lD5:,FzϢX1a'K^`7D4a ch!pz#~Dw!~QDi]/LX8]t1ԣ秵1L+aq.&O@ւ L1R,Ũ].67ʁp_!-#A(@g`;ܜsVY~!Ίkʑ.r %r!p. +kZeX" %G6y3#(R-?+AJ614)(O`D4| /b;"?:jrl֝HF74kσ+ Q?~+OlMxs12,z`ΑPRc`Et|#'=v[\=(FW:k-dFN۷oo\w|cQPh%*G{h <*o&ǝfB'?Ι=0ʄGvbV^dˆd{t tN׷?Op-@! A)d1iAPU_؀@9ļ Xj`Wדd}tHuP' 7]%)UN]ƴ_3zf^R|PjCŋ|2sH`X)fpQ !1ɋhg,?!AMr•~"@Gmxu_PYB(Eʹd ,:^zU=ńjG3G?]Ir< wkHZ2MMQ to}/|Ǐ(7ݒPSHY8u<Tٯ׵7Tox$p72,u=(_ n2I۳=Rx,Iqr ÏF"RCÐV6 G< DPO]ǐr1 R~YZ^e >%.?JmGLwJ$Jy<* }n)-o[M9k | D0D)X qۖ#He~_ze {99!d.1 w!uezGn mMT(:ND)#ɪ( Sj6zśmC R(QSD*F UrF9_d2]T_#(EyHO\zF5) '!z!B} &$8L[lG|\ζ l)T _4l EWJVoR%R}"$B c`o`:dUҪT F$̓VR-:ST7HBcEjsPyO&i2)( /Ӑv N>\M|({gw*T=(ɤυK|`~Přuv(S=wv!m&8$`H[Dp3Ge]Dk)UaW0:1 ݦbx<ě4(;xs1ygLØq~$㸍+իKsdjБy"SC@ڭ0ϧEIc9U Aw6\T3{X(N֯( yA$Ҙ|TFY+cCOj{~TTx۳VL,_2N؇ ~w ;fI ۷n/W'֏~o̭ıDI`~e5t|{R@-خ_%@aOC¾Zο1 x4XmQ ts3i:O2 k ;}QhMaNbuU 5L/'`AAc*{WHCԎ_ w:qP)4W P6PZQϋ؀,7dۓ!NSvGw/W[ 03wB^)%~_wzP,"u2?È|̗}w9Q`IR4U'MGyatҳμ91 %2IWnʊ=΃/(\=?0d'O[fL䄑0)v U*X^Zbs^:-3Q3ކe F(ĀedU"SJu'Ϫ*̚ =xBSze(Z(أ$˻zYzQY=6tz"ǻ*Kj* ły6!!eOQHI;wRӝȴsot0qjڌ 5 0mJŤ{`/ K+5bR{vBŠPOצ8Ҟ&2w,&##YW!qy@-JDEv I? =f RC{_gKbA<0u> ù pQh2xZe 8ڿϗJfJ(+";0/ᰉRrfo+߸WP媁+b2ꏍ 42&\ՉK槞+x,ogG_q[/x/D>әԣ]f̐ㄻTƻ{,Y&·[M.)х_;7u" S9!-soH =(idԏIfdR1eYe%t|Kc>19*"S?='DQ; ]1us-H%5{5u*ICP+XP(boCε0UfGbdHURLa0\*!FR(F2Je+f"g^')(T4UCx2|Asl:|7mzj *ahE3H`hڣ1 Zם! J|zr@ 97)-!v1D"b"$baBdh^!&bIȆ;E+VBE^4 ŧ)'Ӊ;}ۉX3*K.ZfȮJ1di̊[łX_I#X|dZ8_bqB䕿aOҽ:dOc#Njq^N9YI'[,tNKϢ'WqŠ|7p:4\}$Ήvï 5]~0 ǣEZr c&?'oW,jN:Yvtq_ 0,1cDX_y)|H/&cqX ]h%%mIzD[GGuh>t00BY 4 s3m6aZ3M,$\XGy 6~^̮=>ش=P_KH+=ˊb +h< 8p%,"~W# WLUbMi%9ES nid&BqYE ?؀nSG.fДٝv|~>;X ᐾKS,83R7[YhkXiQ(MEbOUXO[Yl3}2O-FxF-2'Iׅ*OpFuj6s`4ɃzbeU)PV"SxK`/M*eխbAmҿ?|R,r)@g9=~:q"egw.cqXiE*&q}вU[ 5GNNt>GֽM2Fq$=ҷA_-m$ rGmh,/A}#-3YܻY CcKb=32"??ܻPlJf/E,#!3]%gM?0nI!ʙ Wa|뵙^l IDATA,_ʠW(Ph Sw͠ƈRfEH<~ 54FzH65xFFN~Ca@n .9L"- _0OEP9cDjz$Hݦ8 1_ZQ~o;$31d܇H\!X6 YCd"^elv)XTmo:l"n08UG"Xr =[=R&R(?/RJ">'ȣ]l[81FT=9Aio fJ _tOkDJ`0js ٣8@6vxju51vnU9"MCd^v!WO{CCa* ުrBЄB/i5j$ߴA *"~(xq\4ƖF-H bg~li{Wd `<`:/̵=^N&[%4^u噷79J7*PgF Xc-,\xr&jZ)MNn娋`I NO2lps41RCdO?/%8 ̳1޸fo6~bjSi@a䛧015ؒ~?Q(}N {<tD…Zﮔߥ@gG76Qcud7qۃEP9Pbi*VDsAh J d!vq#|߅*JOb+St(dCha/"bKdm0;{d$MB8aV5e凢Bskߐ˾ʃhB?*n1n%fk_VM g@kx,# WLFύ1ofbsa+uVCT)}CYѓ'$F{ xؽ61|ZV5NNope?})eJ+MT¢DP%^44Gy߉+ U¥:IbbD!yDQH:R" [#b͞F\yjHV θIC7%4AK, D]"Z´;m,`PjHC)^ m91[\ :N Eg HPTGw_KOſV+`\H Wzd ,VxvCR-2dquΔ6,@+,br&%b\T6(Ә.28j倖C"u$NvBIV$p[c@ji*}C3;ǟYp,[ z)@94%_$)ZTnlՊh,:UwzQSB8diL$ u|M%9*D8IXEԳ`,(ؤB2٬ wn<=)"ffWe$]dߺqv4:X>%h+w"w@#￝yR8C2ZR17OЪQk)ꑿX|˺v:Nf4rSNሌ_,:.Vuqf+s"FFdizA:+q:uE % Se7Hϓ]zOPy"u B׮Ÿe`ٔ B!C7"TAm S8ҾCYN4 ߹NUĺ+!bV|io8!X0&9˼@B'2 p0[{m1i7(nu*`A)9!CtDHxRr#Bo| SC roodw !k)Mʲp/q>]wధKNT3B7\3FDXz)pkw$,")cC@fNS$RcڤOt:>LWNg+E@)XX$t{4zHP2&`68 i#Zf&4 ՓlӾG6åAJ k!ů |٥2=u4BXvV av)O3\)DOoTfx"(#%ɂ{-4 cY7)ԍ1`~z:&{nHg@u=.^:Ŕ w{yR.7Y>X߯ixp*^_D##Njs dJ k6;ա_g,((FQ L^J̇AmWhTY]qҪzQoPuDaxj=U^)) XUk(ct8V (_\xQ, xE҅Q&{k?5F_e"6sKi@oJ F1 ANyȫ~}uv t0\XhK#y,nō9E3˦Q!2AӊDN[Iz'Kz*W) j%ञ 7:âD6ptH3k 7=.SeI wy2~8Vyf1M]Uc4dp{]ܬ;t, ]6 ! DD&}џL#mg>YR(WXX)l rcWűbע dVnhSMEv "GAƦȻ˲KV~؂3tJ\fe{5O,0Kx6M`r!+?6nU(E&AҠ|B1dӤ8 5ӐV1c1 Ou߸QK0l,7@; ?@trcO%ŽX>| VWk# ,d¡DƷ$c>~D7?OP=;Ei)[ҌykyusXDĭb>$i:Rz KN݄잡G&+a F۬޵䶍-5AڑlE CI`Qk4ȠTuΩ{)Q 7Pw\}Dp!p\-(;fBh%!X{_ZbzK,)7``iRҔc+{{N0>>MBBthΏݬ zl,>t%cgBaAnE;rr:=54*S3͂ޓ2;4exH,2C+{Wv] }W#&GÈw@[ -cWIT!}]:rt2k\&qr8'^dVj;8ENP$Ϛj".LJe&SŎ]ݦ+YRQ&L=aGakP`ۖRg;@N:BC-kbqX\;1xtM|zK:$Yp;DnOѮj{Yߨ]( p/ER2~E(znj.(ޒq/҂gX m5O,_XxyƘۈ5)ZRb9$9qR}_<:HR*,)#?WUDC[Ϧ]{M( >A Rs%!t{+L~lǰި3%ulx` mmai ӕetIv4SY&S s#fyH_J*Xϰܑ]r$3, u%N!)( 0  Y\GMwf̅ەɕz<lܭoviO΍tbt>B`dz1JC򣫲o6Zz$\5jҧP x v \mJDnc{QBwlO['7;і&mc: B$AnHUVD>y{85tJ>'sS5ZN=֡GI%z"Cqp0fb{M,KfSdyZ4V\zbrDL5x d5H1m+{#sN$ÿQIV/bJh%~faAʃaS=M}"lԚ&uf|z߽wY|b<q4ǁVsVMYfM#[7}Δ~aM!Ku53eAi*:l|%Y6H"3KgI&~ջp@;E=!qҮNkͻ":MBYy+W9#y"u;aʌDLkbqX\;1 4|@(MOWQ##JudS7o Yx^[n]6}6 .k0 b'J 8RE %0-b9oJ pߛ8^ Fn\\ܴe&}1 F)p:bus? ]зMuB[B,B  l5U%Tno]GQ3`}`8X"K'|Ԭ`ZTޣ~|I A/k-%|>I6c%=W- ^Z:vrIm$ÐE*~^N29K'e/21je̴mزqAQ|viq2wDٱ`hM䎋ðd3DQXtc(r4_ryt,MrfI6jY:DCVh^daE-Cld7*8 bn<0 !MVzHC|L`ȣZ;z47Z (wX"؋4)Bx9l׬˻{ɻ{8ֺբ H*{ `VR(T$K^y$j^hpM,kC&-emn:U@B}z۰H(zŠ :CMdfjzBip~n772Ld0˗ĄC4ug:nOf-DFE@«m3q-i򄤂0H\| +[0D0BEL!a0N-0t:ֶa Y(^b#rY w<& 3|`(&p\c_.ru>0=?]3bEgs?fcݢvyк$r_8]"[#9f,5np@lk[.a݀@tu=e΃Q-eKĠKFDf>l'~Lhr ZdѬj1f&^p~f om 1#a 3ظyK 0AhX`5߁w8ywZK̥zaq_Rjreܘ4y/__1$Gǰz;KRR.n |˟mj._2[fݍ`7nw*x\{K,CTpng9+ y=H7aLv\?}p&eɟ&4.q^? Qxnq"J6 DK oyQDh-j?xk*)@Αnen1;ӣjA-zuWo c [,HQC{B-m.MZLz𝪛A%l=~H$ݷ/.~oρƃ5TٳGpp1W<?,CbNa9lyǞѻ'{9ZTe-|H?13ggbӲ_X<6yhhstڽ⊖fMُm|Qo򌈟ؐP>[D2^d:W0vlj7͔>l{7ld0cYgDƾ{8Cŝ҄#;7E$гjȗ`˒l= WzY=} ';+f#M%rW)E=A$䗇 V\/<e|;q_#ⶄbWR/LY{.é 5F ESZhv Թu IDAT 7 03薸KF@lj-e>8cq(ь2;R/e{[H[S($x=vpf̖43Apۭ̼wLp%IXY"jnrIvό3삁3s 喌醧H!Ͽט9XS@J[7uye\myƫN | 2+gX Mai\s"ࢸ^^5Ncۙ w}]1FJ6w<1\%<?[:~JYLtZҼ}+5HjIk;mk~3';,ի/G4O♱xf,y) YѠ`̘]ik^q/MoDirr"9Yft,|+`Zq5y! 0ū]9(KUp~wn5 9e(s'-z\]^_]F; РOtA˼"q 5'Ims5Dif~﨎_&qϿ"29*ʻ+ W<"X@I!sM#ze YVF7 u#eq;?zЖ#:荎1(G!C/[G#@j*ԙ JicAb@AEq݂EpQ5 ŭnqlg f/ۼ|{Ȏrl#,ܤÝb{:D{^@oBlQDxE/#ʷb:ӭ>. &fQpjtv2mf]&LBj4c ~7`5zyЁ]{`&>84)rsϳ &'0;R;` oR1絓0A "AВ2G"^6'ofMdžW`M4)ptOcIPsy,|sHC{e^^JcpO♱xf,y) DnP|ю"G|@/JFop5Wh9P֪N9:!uM XFKP"Ի!r 0R7/AxNz-]eWz%C?9q^@눔:6MagL~\w}4yu ;}!{3ѷxXp  xY8w(\Qhwv݆=nci%qʉV7aF~^ X}m4}O♱xf,q,:%R, Y%E+lC FqoVv#q9KX߇-t({"\ó`TQYg NFdrX'V{b{"`Xaj& #͸[,,`اGtD AOu?C#o,6Cm7D֑ɨ4}qP6MYl(@7wTa6mC61\ v›}q\sjz}0epD~[nVm z]>5Iou;l 6#' #;dXɡ JnqΤz6\dỼ]1<>5l y34p1I[pnLk|Y!t&pBtʰ,IZbSMVwU\k45%%-v UqN^ |jrځ;Apa^&& +kQ#"ұ;lߊ,`T*$enMetvqdL+}CJz~oO=F +urkd/HSiSlLjx$XN/4X<3[c0@&_r6b7Q Po'w?rUƪ"-6i&#yW cn:bcjsK.)xK97RV*a<'=&+1 5AI+%7]bn;dاyzygZFK~l*@ UkĔ@`lCo7VhA*VQ8+D?{FaG.s el\V |H\luyڀi wP(+uJ&U~d{)YJ5o1fЁh(՚o( A3O7z'ByIt8+݊D3HH}Wu7N[]2+вU?~(q5'$w-;#[X iqhĹ$'(:3_s޵e;XKvZQ"U] So\'A#xq\ڪM ~I"Fkҹ3t˒?+dk7Y !Wӎ. %jImV m}BL)PJ3Ryſ%FqoԂ8) e=m#FvYF!ڣ@_!BɁ>xMtuqQOOX;Be0̆Y2jYyl+o;;vғMxk섊pѸV m0vQ0P)fIKNiYW뿾S٪pSs"8JWƽV__ϸEz\LN[.:"k9{civ`CS6nϺyAHe®@/hY('I'׾RNKu;I;J,mm^@Ih}?|g+6K7Ԅ%5;WW!f/|_DqD,!*L)~UgĠWCKڍ8\^Ee[@ HL]`PtICdE4#7cNl= 4^Ԥ([!tzQ<;ZygJ=mը^b֒ӳZWH̻$BV'eINE\,2XrGjk2&J4ּ~5oӜnUsD,z\40#EU@LBd9* sIuU$Ƀ])ɲ~hZXu~AzN8]jYK" 1M&[XE1<Ʀ*AZ|L/Yƥhӿ$04YH陼,:/QبN#_j)n|h3-%ZJْ$iI;pr&L2,ŚM{#iz)i$]l/?0$2.a{los]OK9zv8?=#;8<]*lߣJ/ ḱg$rnF#k7u%c-h,6_.@/lY4x;& -<= Xf3+aٖl=z23-0~ B{u|$>Bg6%Q>}rg< qÚ^0B@ כxڔ%t'{LMv_|lϰiPuP~rsuw蔠u?&Aƶ0 5Z|*o50*a"p3bɳ^aaʰLd1L!`WG~d08jN D,b`fީhx!p{ulEd be;1,@b7<|+>;| wg<>n. D,؍ivև>XW  D,jйtnvhX b^; X b6,@6@k~Y=?N]Fa?!C4,@yRHHъrf[to~zzϓxO[ nX b$asSm+Iقc>~?{4r-y!e{|D4Ebu#6۟)jt|{ D, oV>HĜjAkRw`bFNǣY7'kV2齫uls.hYoh =cM D,,߽UU__474I$q99JoSY6Ou?+MC  x22fntzڪ`T[lW깱yپβ|@Aeô;X bI$ygd Mx<ܩ)&ܦxNz>:&p~Kڍ*o|S|4YDž*Mn֞z'I|bP͍z?Yp8A;`= D,]QJD1&GGGXS4Ϯ AAKC)uf<TQbyI+\'C⊹ى0\Kb,bQu˾cpڨfV6G=ԛ%ԛZ^WE o*Z.զ.e[FlVj;:8i,&d)gYtjo[v|@&,\T|  W1,@XjZi:=???== 3uZ^manP)QPqi֖"a[I6,Lʏ9S%y=MLqߙ4EPҞ?FU/D- 6l.StHw3,@Y|R&BqI ũNf*'fcM k,T>L ^x]i9ؐZJhK;63WM6po'j1% EɢFs u1ݜXhYqN@=+y= :1Q"M!NӅdC',eWTܮ8Xc"zHUAͰpx;'x dB6AKӂv`َ bŗxDŽpGܚ8=Anﮏn9urMHiW^^~*T-urVEB3.^%Bv6dFQ7K,%b:)|+3А{#5ݫd{,bX7o8O&ٔxǶ)-)9ڈgԓ׵jOK7΀O4˥RTƙ Nx@&SOJLΏA90~NC/ Ӌor6o-/j~D[6MMQd&c6[<O'ӯ2Q[|ujj5K Steʅrf0s@Y Qոf!B~ 8%JS[f;k%Ī?vU-l]!hE,X#xrr}oQXbE]oB>qIDWvn.Q"1;?W;!قovU D'R$B*VTIC ")a#xBfexv0Mv|!n nB0xn,՟b,g!?ь &`Y镭۲メ?r"Rڴ5&>)rEVn_^R.CLcNX:ןGYK̩wf؄锝9^NƕG IDAT|9sY"4`dJff/1gZ&+5p)]8=j귐 רPRo BxodPs"'M!쓨ozY{jυwA{idq)V=ȔpuPCkCf)-B.gOOXbEΔ&yukUQb" w>Z,2}s8ؓGcE2eC!O[}"ZQ?<+bX/iE؎ެS H.G}I L*6G/MtB PSddL@mh.q#%$20Y LDF21]KK&X!ÃqBqrvbƇTj˔Kz^, nr5!D۳\w$f^*Gd}C %e("w.6q= nԹ52Z8"^Rc==I]dJX>AE|o~Dg" l36W.=r!U?>>j‡hݡϋם7{^e_"qIgySZ9\r %ʤxxUqTT0cnd)=e+GKw| UTjJIYZG5f0o}qT2 _B~>\`-PB:^FN9yӍgj9;_ 8N`yG'}!ʓwnH/c çzp~`酰 N-@R~xdxB[{ 0~wr" O7xIz#0PmrA ^K8S\5$ᨙ?>>Y1SI3 )UX"xlکkvLZjTNeQk K챈= @}q})*jk_2MʯpH]S1"S='=" ɰdtwY‚Ԓts }]VzۢISE뮈Y=:0d*%EkeWR *.W,WTJR3d܄5J6*>6X8UO0 cI?ϘYpjPQ;,@gdO|Z*mJᶦ;Ls.+&C E9c}Ar6Sq|߅I$u T*NXĈ tVBbS>L9bũkתXK I9[zT_7c30BPoc8B\f3um؂Zsd 9h4ȔSS2 b;wy ܶ)U**}H6upi;DJ `F[&x nfX )"#hj'0$,b9H'"-D-->`C jɲ䮿\E5m&ꑿK챈={!p@e Sf-`A@Kr}kEڭ֘vˎ^9O+ |B_kSMtsi-7iT.kʺ4yLspoSEEcx3Wġ{M:z,cLUe~}Y ]yVbr*f9{ "ؽE6ٻ6%s%rmO -lrېƋx"Y#Xs{G֞K̸{Sui)Yym D"Ʋ̚6X"xJ,E:TW`XXD`/[J« !Ww=k$|-o`R::Azk}8h& LPފLoCDGm/?/a^$y\Aϙ<|\h F-`Yu cɲ!Y#kqSh\M*rKΚdI-EQ(*{ ,~z]]6^{ÂV#*G!^foaUzժ%wt^Z'v{a2 e`VKuφ WR0XIr&Lcq.ћQ+AQx; EĞ <'Z׌3$Sϐnۇ3fK-Č,|y̩P:G4Q/bo\7PSBgql%h)Ӯ.wJB,w{:靍]Yr-6<.8mk|"2b1e|[d>컝; uv V(JVı L;L9 ^f&~S~o䈦R zSkw T'IzJd 0璄W<0RB RGhXv;#S0{ jDmy?2ͼfӫ6LD#rdeӪH*( ˔ŪUSv%~#;qo,8Є Ѿ}ptPd1}$c}x-+\Ou 8^ntAv'+Uh!t\+q/\[c}yټGL^S3 -t>}@C-u}}Ro<:C|.‰ra |%^~|^:\;EeکXWʼ!3p %{L! Fp]PrOXzE`TkVŏi_&f18P5 BfXF]-K,NYbވIHBƨO\}1[,#e77ǚ&5;qz| DhDIz/0PX, X@>4R1OR:_s4~Sp,-]#Nz! Ey(^ӊj, ^&2ݽը*>`!4; Ar]}wkfP&P xg2B S~Lц/o͗G8k!LD=#Ȱa]qr(tr. óEQ^F0YdDeM[ _xzpkSku˟Ǐ`B`|HY< B5eqtv%Qd74<,M֢dFR4񦄓Jw4 >R0!Fh(rvp]" +ڳɿA:?`خ\YmцDh[hjo )8O/.qIkj۳STኊEQdhV =P2ҥ\Pv fr:쵏J]wk!Kw5)r~Sؐ@g!lGdf~&.13zs%kԿ\/yCj >Cu-G8 1趡hN`AsQ -1,ݪuRFnW^˥,Y=题9/r,j\Rtz{ IIFu덍 8bTepjձD$_zu)L(V=|x{}xgbd,n# ]̒ hYDW8hwD@%3E`aw*W%ǪX-v$o(,XBI`1 (|6Ksx7XX`3^y>D@7'(;@H^jRu(CzﶚHIPPPY() UaE{~> zNF`\v0 \VY%O8l+ ?l-E-OukK:'%uk#]T, B :cCY~S,;Bq5uh,A9*eZ?8'%s-M+zŹ♆/:^ޯMazo^, s`7d̢t$*HtylH1 %۲g˯; s8u ^[R6ԁ(¡bQT,X YLCT1 &2SAXYe(v~1z8Z0p(('eud dWuyu:d6H硓W#vR˱R`v*pb~%3m:+P+ϟ'$cw [\cX!W5n7] #\!i,{4hiBɭÌP e<ޟIYnJ ƍukq, ՠ7`~cfƨVm~9>̐/Qʺj͡GO,}:a8ǂhMA)׫,dow?T%E4kd.bҳT*t= =%Zܽ/l"^Kh|_mוrU*zi ډdh yg$y"tA'aU:95rvh/hrRJK`I>^9( ~\M٫+I^eZû-,/ֈڲFG p UxLdVm离P?edv=} K6ɨʘٹ8uTP'xp,36S^,svz`'/,Qn~7qCgEǗ%m, ]}'33K$,+lDnfݡ_N.G6$2g)J"9E6wzua1Y&wGSR&r&mo !P_l,L?cRt\RljF蓼\|q79yo>xkk9F e ;8:*0X O./D?Dۑ DNd᡿^S;HII0J޲srApcKeMYRMro[ruQU,:k=Eho ]EcH_j99Im0}:αy<_!q-Ftb ߲vjϖg EORuityOvv;NtevǏB}$EN|4 >o?"H~nI3dWo^b>u`Sf99иꦖ^9 Nz,]Fp)pf9۠.劉!nc1t`,2|$v%uC}OT"翟\XL euvMV`5W6c-nRt dfX^ݔiFqnMV9W,2xÀuuگ.ۥo'ã޳[G'=#fK h=S Ԧ#v+n9|aEQlS-MYҀ  d "r,}miop_L7|E4K"tڐ8PI@ ðY:Mln_(^{&h=&X0̆DC j8Dq+OzC[jֺdg'f' kmq2^O-7aVwء7[;Y'/;QR͊ɰ_ {&T`[$͚ѡ7VK(;Q@N.$jKm9{hmKTiTOXTfdWۦPy*и|{r0yy 2\7jd^MenC@h }Z-Lx>ıtM[mѰ 4nuX@pV+h|hJ#/E!5 IDAT8E![Q -i|S]A4˥bB;C15ۛT+B|Ŀ![_Vc oʲ2HII;yЬ" 0$ , \&% ߾ncz??OoP>C&%15$̒W,`riw^r ǏpH-y'{{ɦv,nf|,7;o'o( y.)LO}Kq pAڗ:]u$PVR<9RRt XT/l,y\kÆ}Ќ-N0KǼ AQ}fd%б`A-56B @+`QU,vSXOqu qE+o#b*SVrE{@/ytBu `1sV-|/U}%u_"$NJ:XIm{npakԥ;@2''э 6Un P JW+g0.s+7wqBlLw@>Z Z [˻\(6X1qAa sZ3 FqF_#ϑg,?XEdQ>Iq ΰȄ[T/X0ܼem895{2M8?Ap-X\Ğ4><\ؙ&=`z1";0G"|kK٩z2򀟊4:Ko';TzMoC_H iK)v| rb 9فq5XŠ!(~Le;whEul.Nr3ikdX4i*@}q;<D;|>2}Tݰ g1޷zMpayexxFh(6((Ƞ'?`b:bo i8?MDFN͢pזKARn -⸋,<?[ =jqD2"^ ӻ;F//\Ea r/S=*^0KTDnX){y%OFk1t Jw[J2@ $z-mIϭvWNGT`]= $JpMlYlLtod6Y P\/WPp`,UحtX qC`Omwq^onw(Q5FoinqmطMoKdX bAfBǾ,zyq,6?pz.BsM(/oѝ(u^)N1h(t:PgǍ=D}z@:V!#v(Z'9DICh[n Ef"*pIDzN %.L^.M%l5Z{6 t)1x2XBRvX${,$jP.K] kRYәU@!,F'5H(-1g_÷D1]v嚫bSPW_>w>J|c,KN}øhu "ё֓&ئ>;pSK@|n_Lm١7a0I03@^^YH{a[q|庭E LB4wiys|Y"-^7i6@4"UNof7yl0d0٥8Y+rp!ul@ԭYN,:  P+|h6p Eөl β- EilD;ʼnF-  e (g?#ĽtXVe}ΣtfIŸa&$VWƏ4)DSaM*ou,Jo'EXK 7.W}}HV7 REq'c-]t~8xGxC1Uqsk^&?^"V!1XH!HWt Y -̢yt@s(iY+p _*˲ WіpyK PSBbL-/ 5ÙG; k/xvߚ^XMocՊ)E 6?&nvsnñ Iy"zmχ=xb<ҙ2ej,얝֟y| E ]١6͏LH".IawRז Xf\lXLY8Ɣk#s &U~ X$EXKHc/Tb +h/3"ū%ɈZWHcA,gc]4ӅrZ~%ߥ2,Ko5iwnV"(xfS.2ceTeS۫ |?bH ,ENPaFCጴ68q:lC  |L,LQ7X-aΕ& Ђ[C+k//3{7H\:d/gˁbTS@-n;Z9RGob.vzpwzBXڕV,8Tcxhܸg^*vd4w nK/b~ߐ=8Vܬx:ݑJnjo { _Rk|3mɮݓB'T#$ysz)ů:oV@}*CIk5=i$d)@+(WaplR,*Li`RGޡ<c 7x(&F*"-slXJ$EPdoFw)ә[@=&WR-|e-@oT^ aV^#Z%J  U Ioֈy V"YRB|`M&p\&lQ@ XVZO GGKH˂+5Eޣr:ᯟ^%GWUW[Xs Z6`VW :lWb$o H޾ _1x~3oU~ܲyp)]\p<C('Ȃ;xTA@}gvy-~oht%Pl'Z_K|f.P"Jc#  (Mf4H B^dZhfLgM-M*6zL>H\ 8.ЅIx$v](+L[fツ<K/@%ra5 `NW@RCΊw k Jp>OO|8:Au^2`Q!ِvywS#SB }@^L2uc632R ʺaw͝W\34Y >ҖQnk;,t}Kk* Őf jְ.߅G_ؐ=OLK&(h}#LjX$EXxES_92!!ۈ HDJ8&fR闋XJ# w%UެDh*lPr鹀fP*0"U)TU+|׳Gd&F0ZQ?- 3KfwVWoZŶ7!w$ 97\L\J9)\zj.yhy`\A:X0z;wӹ%y=g4l) T^ƞ7wilۊiԖ갎3<y^qg9aCUOwv]@k6K?D^^U~'z\="䢔%}':i/$ꐙ"tqhϙ3_ʜ ehImL<;pߥ<cq/-ok:@A!uL!yZB@ӽk,%i(k*.'`2vj $0(٢ ro=vEp`):I=Dcp ?r nOԾͿOGjFH193mٶ[PY^4;&gVaRiS͢A`RɤH/{gDW![l82LtvU&sLΧ_ 7?SU-wt&ZaȄw2t(lZJ T̕"SQ4d 9q,y,p#o5SƾF!ޫ)Z{=AKRa lkw`b9wہi9,4ikjxWZg D5ߟ$gkH*~LaEONK1QAs 7Th|]ZWr=sOo U[u cXIq@ʻղ{B%zy{#pTυyS};_۴:/7xPV#yirEp^h3VRCH/,X Z#O}!HOwԟ_Rl!A;G'>=:ձdAy4i*ڽ6/PH_ pTυ3>F:mƯ)wҧ) 4&kG~^RGԟYXcl24csr\vOs#WVv &z]zz;ۜwK;Wu%_=IN0Eh/UW(+_>-&(2L33 E 8'Vߑ'˹̖Ys Ake*D/Wd͹gP"W2|?iV>' 8ż6$hW=kN 2(zf;C|QaPۥ}Vo7;p 8p,,'E5Jѕ0a+nXXc1\eMvIWYjm^,,X^.Ae 8'7^_PXcŅ 8\\XcŅ 8\\XcŅ 8\\XcŅ 8\\XcŅ 8\\XcH3o7Q?E7_[Xcq"0W[~pEKxQѠv_ ?K&O"XX'¡^ϷRXc$&aFQZ{0&Pv&$]#<fEVF=IAf3Yh&rP.,X0 I P-i ;F~fe:Bhwn$VI2enND7^O)"c[DMôVhȔYVESt 'MGUTnZP:|MRuݝ,7vo&Ea[D3ҭBm|+|~+uN]㤣g_ 8p,)/r("ӑ:Jks3){"Н7ݖB3,6"%B7w̵E5E.=jJOdnYf=|`tVh nkbKK]N j 8p,4Qb?SWh 1kZ6xtjsl4RdMHFK(=Q5:ߜprYƙ ]'a[:LQĶWQ詠/,\KcK'-=5Y9MAx[} ]i ŋ:W%ߩI]:c=)faEAuLz[כj$;4w&xo[ BX~g\j{SiK%k xzlkZ<_ kZ Jsx+ s%TR,V+\Y[;zijjfZkTCbJ`@Xu7sˑy3,6uV#oϵ 8p,Z=<^6t}8f&rNA| U2Lz0A5I_{{݀WnQYVDb-VklQiiD⒣FEyڴ@pM }X++UJ칢6\nltͬ@GC3Ti1gn{,5QfTb};{=eu|yy)*-,B3|rIAqyܑ~@[A4*$">^jntEs3+Ԕk=嬠fqfi>$Kt,CedͪOލWűf6&M-nt9w6x3%p,XaJA* RNU~L<'Qi^JBHMonegyV,)q|T,;~Odņ:ARS]lLV%i]%R2}QեUe^(gbHăQ:eܞ3_*pػ"VTkGz2@M5O%Pqxf`E0s_OY Rx>&WEhq7?Eڕ΅s?@ Ff6kkt::a&t0 ajCҝ+t~HT a-q*r'NXXXXOlkcJ0\x}'@-!oS igp>EK ^Bn)|p/.YUSgAq~`!J" +^z'8^N8oR~`E0I|j9`Lfhc7Їjs-5A` Y$~Ǧs 6]#A /\{r[j ީB}YK^_xႥ ݤ):PG[.Paaaaa?&yH-P˛N8bº⡂n-zna>4U dKh3Ҩ'B- )irÇ^ִ놣Oo6WUXcXi6({tpKaV?7yB$n.o,v  4ݺj|ŚO|U><0 nuv8i^',,,, X4#0yWo{H+PK91?<5^xs -^$*pD]dA)%:0B߼,Q߲(FB?ct \ah_#7" 6mQd @@XXt(:F9yXX`̴k5n, z{3CK{7MIʮx g,~NR-,넅E `Q䘙8C1ʺgO^F ,FSE>uR㩐w0JD$ Pa^Z9N X,Cz $v7UP&X>?,+ fC6y]XK閖^A+aZM1Bd ,.,(0SpESR(^r+,ol;Ǔ=~2a 8zv bh;gɜx(9ihħW\y$tqϝQr)$yƂf9]{<7@;W}3 owT<[zqTw@Zc8Q2GN,,,b-3ðό+ ŠIԙZsZw6_J.xd,N>~͌A@X,B9\c#R{ŁEYg#6*EXXXX؏f/i} ۶l8"+P(S^t>́аڍN,=#`1RZv榊s B}9!'{]N⻁E0X`ͨrbg=Qh?mS]+{I#= }P{ͯ8l,r7Rvfaeݾ3hxlܽok a\mӆ n^n,~0u Q4է7b3 jx&K,rLiO/Rw Z~5-[iX4~+PնyVL{.ϻNr7 w|,v,+XhM䓔VFO66 ?b;]{LRB [oS P s#WȂyckw,=O+Ws&U fpO$~6r[h|ġY_ZR9v@Ww;(`&+5)zD3 ' haiXaG8D~|pXd V/db,j `, ,Kйz:wqZGن TKwuކqRew}vmPF !FXN|Ϧ2KAnj[{.\y,*YK~~^e;ړq.Lޖ`klz1u,fJ-{OMJC,ؔSeFm-:W45OK$߶v.%Z5qv|11_E,"焲ᄑ1K;,H9xR;?wUe(8vx̩{&2yL~̆|0[XhlUeQu>χCU`- d8켝_b{NXXXX؏ޢ,T4;2e^)n$ݻEKUӪ'Y))y` ʖa.{rx‘ 1x964CE )xB||:NFuɘ "`,8b5=1%ۮRزpIݦ^勎ͯdB)CKn &W^9H'jk0D W {k4rtfI(Χtz:<%=Ѧkt~tv3EYb% {JY5&?2`&XV9%Lؔ&lXJLekK 9xf->cvs|VR%.| G]2D XcW捐W ; ݙ8~`?[@8ѥ=Vlx[co-OOhљ>;Q&vUQz MSRn6m'2Kb/U%9Ù9%PebVthyZP!yUU)zu!L/iE9:o+,p,p,j;8 ̗I8A^r9rg5cj2bnAYcƶMjo'L~YBGҦdGk4tR4t!at2/HqXñr(1w4=/'5m$裘8wI %'̋2h#j] Χ>kk+NL#z*b(M7o?zN$M<-B&eBp|lZBS4)w'N} 4ʏI ggјaAǢ NSBp:RA(B}jqgoc}jG#e-}/~?n ᗳS+z:cǐgEI7GZo_ݳ/,h ęTVt `hwe!7kY|,س =  G*t <n_tf [$5ݦnpOeD,q]MR,[Ώ|SiʦyP6;,6(ӣixP-bء2lqTVqXIԫ_o +!,p,p,STsۋx$2ӺfE&#*C_ŸwPv v;]P 0G3 x ɻUI)IR^'ǜr*0c:qYM螉RHD5`"CLq`>ؕ⟱Wǽ˔uK!,p,p,S =ƮW-ܔK9%;cL&]}h>l†k*eyɝTG*!HKE ]MnXIMUv¬ӴQeCiyP?})Bk9>ˉޫ[)accsڪ<&F y@=RE%W2x>3m^Sn^tn}9f]t.;twGڹ-rpP/r꽍ծn73{88;Su%+n|!Ey;kZb?/CH+L/sO V]h5Uc5V  =6F/#eM& T:ϛ$xb_&>h4źIY ʁ.,p,p,,vFr#1,\\>x5bŷdV9r  ="#  _XXX<[XXX<[XXX<[XXX<[XXX<[XXX<[XXX<[XXX<[XXX4\^^nxBEl^ DXXXԑr:eiTȾ-[ͷDtaaccU÷V+bbO5ͨh/88">TܫY$JZ)\pecAD;$qW5   +VwR~f>myE15@h]7 4߭ܚo)nfiK68E]W{\^ ".f,-9XeC`exk:zbʣMEǬ4+1Tbe*/i  BXޯLW|ps#BEz;ILY5^> G]eEiSڬXEu}-SA0pRYq'C|- < (,p,p, aQwWG-obxW$_=VZ_RME8k! i;3,EIK{v빚2맻OIk,.*i#r"Qa!o{,L6su3ןkɱm߱WVꦥ-=[VqU *lRjZՆ?rp0"o-(x[Xkqk5eL9YgXD[~|]J &Jj^e܄ea'A+YD>F7)sȏp/+o-~, ]~sM+ڲyB [;07վ2H x>M/yXതSdZ_1J(VDAKodY  H IDAT}X*X8fa8bTX,3*FxҗVT$8 U$qH<膱MZ_Tkʓb=x.8.f7 V2|Zt X  c" H(jd!!<{"F[Ƌa.j Fls(h~S*I&de.3Cl1A&-Խ0+'J#<)@FXF#>g$_j[ i<JRM#a:q¿  :ZcojYdL u)+,!X8BgS($><8ň} ǚ\朆YyT&ّ4O*dEpXMkjg̦ _"Q) lAAG p,X쀅qP)KX_~>?< g\k>5b[dkY3fY W2hSCr;3kx0JgH,NfwALl_At`.XPX~^x~FxJ6(x(/ӌuח\<k5 X$ .6#D5%}ec gPeL)[N`!GG7 yu~ϡ zccb,S 柕+qR3"9cBE-W(7 P,%ȳv]3v+s8! A *`A Xf⸪ '\"+rA GA=Xc,l7; P.k\B@Q&|Qt UvBS̈́ Na<()KUB9x8.Ț l/0[+b^/ z1Y|p. ~CA 8/œsXsK ç j`9ZBX<ڭphP)w9r=8Z=w5nT!)r`M]ǃœ}vٳPj.Ԍ^x@\AXQh6ZF^),8 eSAXc`a=oAއ ~iQb- YBӬŽej,,%$Tmv|z.`a u7Oe(i(IN+6# rZ*" +jfWV{W -Nx?A Xc[coJ76EN~ę5+%j=pqHt@AtXc,V}Ϫ΂Y-P`?(WF#! wǽ-S7s씄B4s!BP/J~/mkv= @k! O0_$y4lgx@n *]tyqqq鞸ޛ֓Y&G,t:jlXq"  @}>1d1d_a.gh*aM; $SDMvΰ22 =: S4&N X_=[819+jF &Z7gp.Mh/_, e⏜ ,3 5,ZkTbݧm(/o׷Bx]׹yEk/ݺM1ZQ~ߏޗ T)3Bjrx4> k. N\-|(Y6./YٰpۭJ.iAA 8}& />>7ߌChЕi!IX 9Ϥ3^usqg4XmM: n{4O͞SRo"T^Otokr tV/4Q!o W$w6+^pVɮ{[gW=.{в(3`Aǂ/hJ֒wuyg}6R7~As|z]b=˼".b_R,&?N~NjmKZջWDJR pPW6>>/XApg 9Ըt㜒^%ij8(`Aǂ/Sܨքf?ХڢECik JVK?XbFf"*ie d27B* '9 7~ ^$@Ye1~6&Ar `=:w >lҵk]*I;x^((: t,XB^mn|+: /lxkJ63E+;HLӰ=g>,f'PүaYx֝Tnj̉a\9\-~D09lSm ;kNTL gD\**^(MQEQ :wE*ƫQ[Awd1js3&V@$/I ކ;/EsW'K 5le\Κw`;φ1^ծ (X0)k_- s;?tm"Uc!YPEQG`AǂEH^ZG5ZvٍS内(>MVU=/Jy"t~uv 0PP.X '{,ZWvdaT 15څwN-zlٓ>g^Et,((CcAǂ"Xj*m~ ԐJ# Rb_*u^)J0J .5.˽B`7bP]+jدOUB.>n=E`L;(΁ :V(ji\+3#DPq)bRԎ'5&v*YJ{7!"5z; Ql64E]HDZ.D(wUXpz(΁ :Էnxhg.0%d> jWFБ 8]b l4a@˅Ar,9G`8)XYQJkފ,DͺU(. :t,( 'Y i0`ji U2B dݖ,,ZRJYz,Qpihx[E6qm`aw.#YhpwW7!XPEQ`Aǂb*<ޞ Ei_;j~vRKncYj<+{HH!x6xSHG-#hOa~ErrB3o EQu,Xб7X\Mm6*?k+ۨ? KX|.σEr X GnVI1bJ+po Igի,((2cAǂ`q/v"FTMJ)r GWEpY+BH;^2f39bHƐz܌`q 9iUEQuXбcA}kv^gl(h{VN$:1H]mE1i^ka,OD뵞0M0 Vf@\xeldBgz~8V}R,J($z%4Kd2LG s,pzA !g.TE8iHI^eQS,e::8M 8BNzJ,tRڹNr=UM>4́kJ(.+WcQD=YTHezyV&d2=Xcq+(C 2|.ZsOPc H`(ZB(^GD5~W\uJ>k9,w8<8A9$(UPkN1$ 'd6+'j,䤸DX /JB(1i˷ikD%/PɡZvWʉ_Xd2L߁9X|0%*GwDD_5@b|łiSț0xYM7|0t4;|2sp'[5to?NBtL #8EDZՉ(M7C^J IJ,^_/cT#쓳Z dx#e(,rB)cbwV|140L&0N/kɫi@B&alE$ IDAT<OST,J'ݪ9ib~QBax0P^? 0!a^&桂B6&x@ ͛u6zKi7@rgKQLu7z̻\m 9N7 pzrL&XcaU|9,0 lc$$8jZ-q83 WU. R̛}t'sqzt?0$G;bᏀ:l >STIfcx=yȋ0tX8yK-}:xT{,6Щ yT.`ע29{Qkݲ梱2NB"iLCgnaa2L&w`a9mtL4pE*'C"˖?', bJbH`Eq,'jG ̦r`̟ 7*ZII-v̍,~lҁ`F%[_?3:5ȿgYJsĬ9ղp^׫%:M hRbܿ&Ƿz]Q8k sb3"t@;: T[&1 l+܅IX\Zh=;C [cH>fu: N*,E% <ĮA,PP!t{7oތrѸwe=꤭MqnCʴx{5.`Aj^S|Ѝ5AgvʝkLrsӷbd2L߂9XthФB+Y1f6D?f)? sd޷eu~JOtfQ&Vz=| Gq|d /76ç[oܶԱrlػg#?rbod2L9Xto3tg)E\v;X\ 2cxZOK'ǜZVkxufq k6#;Yʝ`mqo K98˂Ud3<(VL&d2u s,:‚۪Xr4Uo DJ(3\ך5pb?e>ST(c0#6=VX5r/Bem KlƳIt?&c d2&Xca-X%Y[?)/Vݓ Ѐ0N@{ƆEz)nc?u7ud B c Im+0O1oyd0ZٍieGUu-qŻʉىDV8l,ہn@>x-͒GL_gdDųid4ò3  KAVn~:\AwM,g&uY"2} ^_C-bߙXd7:^>l,uPv#UR7 EXg  KZ![^Q>&T T+&!@p~HZ.M"Sx~)qRHf ΨAv F,T,Z(a?Y:[ibAbAbXX A3?Bpד 1*'. 8$OPKVaWz,}U"+D,wX6ECË{{B,,L-~ łĂ\, /ond+ll&_L~ЄNԳ_vȲ,v{߿âȴTFoKp VTW舍P Xdz]]+KmԂ 8^wx셎D^@$ vdQm6:xb!j3V:~ffodEak QҽQ{EۍN@6[U5iYV8kQܬ NOgbAbAbO y:iBcvZRCs k   S}7) 6Ĭ~q}߆ǩyYdP2`j 3V c D2apy:^ 0(t3NS5;i3Yh u^>-K.UQeE!W&s"kw%rdvfljŅYL'>y퇞y@6#sqD; \\DB8Mܦzen)G/{K&$$"Dn/;} zSFvYPr%?8N|h)͈5ŗn8,cC6kf\qFyPiȱx xXXX} !Fu//l{{ }B)Jx )8viWšq=7ϙEKq{(n[   3c 7=bAbAbjwVCN qxbAbAbpXXX-$$wbAbAbpXXX-$$wbAbAbpXXX-$$hy'7Vnq Q,H,H,x`r[۶AbAbAbqE+:^o0zgmuUbAbAbqvt8]''j#!x[4.N6[bAbAbqx8Lt8pjqOF. S'F7IXJuu-6mu|rȓpE7bAbAbq43GX͢OHTP8nE uE%T.h좹MbAbAbv7Q^FUEXӓ*8³2o]HEQm;&ˏˋPlM-p)$$ h;N+b62 FW4ղ#.PT5nQ3lOq\V1n[{ hE뎣bT-n7OBXEZʲ(,sr^ץ{u]zHzD\[PY[Hc֠(zWv,~G,H,H,Nb٪Jv~^Γh%Hb5T@UmF^/D.|1gv.AYݣI?jq\AV SǽEylclY#W6;>,f;bAbAbqV[r/ޙE5Zcvג0""d|3_`.;Nղ Ivggf._Vڬ\H]u'@[AyFAư(qe#k%D7Ơf,z~~j8xǮTY-l/xXaѮckX]g% 7Zc/myk/r_` Xt\x;Qi(Q EhD8F1owU/5NjȒϖE-6 UzS#e';[%jjIkY ֚w>QEcY\.s` XfBMʣpE,(@SQy^:~?hQ~*zu' RHb vvY"6"49GW`Ti6 \RF]}bD-d|pkfwO; >r~,eiX/>/%Fe) @+cT/eңjp6 AeSRN=A\@n7:aIfMZ{l=U0vv_! sٍ?p0z! bs?s3r\ XxĢv= zM*T?1G>|C WE^@D`GӍ8t,-jI+* I:!\q)^ɝsNa}x4:5H1s+kɕzp՛ sɇ͌(VX#& "{^S5+QYr\.G,‚Et X ԝ(t+P1f[^pA{`8 ;|Zmݦ7=snK:MMmXFmlr\G,,#qǒ8 N,0٬(}&cԂ@gM`a)RsMJ7!L; zm]EK髼wFWjnB{oI X(Pe3tK8a}?ѹd7MgKٜ YyWSu8 Q.r},/ RڍvǛ +ĺNjl8l0ŊS9msT6=%xr\oG,EZf) 2[m&[@i+m5OfOP>jENle,\.Xx#`1HCdb: s𲌭`C% Suof,0R=YQEC!~G]0!Os֞-2:2dqUa<+Nk+;pc, ,rX[Xqy"N* nKzuh'OāS2h VXv)Y"m XĘp vc/4CT_j4XEAUSqi`{tcr\ -X%1x:o| uVrib}jfڭzzp2<@hç_3Y h}T$t;tvFgBWs^ fB>j,8d Y~1|h`c^z]O&;]dq_oWk2gxD [3ΒMx e/'E8p/vU>&Q\(QŦ d%믿~u!dSSlR r밡GEN IDAT 8wusI W( &/8x\-Tuc3dv?i4b79 H_X܂ں {@rF%xx(< YXYYYYY},0vaf`7z1,r.;iA k-v1؂P~y͛#MB2)LGqcYRTrd. V2JGb@ukm6KYp@8|`ya?hũ~>'i$t߂;QG'~}仅k@Ȣ;KS暸/ChMV7}5> 4"#ur9Oߠ`},Xcq,c?)$~v‡Њ[xa-tQNbD n{._ǝf \Im7sCyAshl#z4p#ux|( C;DbNM?Xc3<#j[bsyǟ&?C:C'Sɑm ڑ[X?Ui&٨bf ńTM=u7Gw2?AfzuXJc=z"A HקER7!'ꮉ*8d*m!aYa 5?ܠ&8D7:㞔Y {]RYBIBYYYYYY},0B÷O JZ/ :c!e \V1&؇8O5lHdC&X?KX3? xa4vK)vd=?6)z7{/1KJrU<+*WȁG7g!t??V X01]#qUKd{๏ pSsG&Bf#1%Kgu%H>^ڸ#]}'L?AkXca'd>2zp[r`=$i~l&[QS: 'm)ϾG2;}4n~ ܭkk!:{sLy?ԃvZMEu5'Ʉ;+uRK Zus5@y 5AUXؼnOȥ4Z˄Oupx҄qDŽ܊D#ur'r+R@Ihd [,((m`Ƃ ꛃdT6!vyJ}~@RT~iKW  F*#Z 5mꬮ|Z,4W 1d,9vgXK$)SUK%4ݢ_p8#& EQEX0cA,& v&n!G@r ~0tE',8= X+󵖓t.7n&d,QT${A Kb,|ecUo=V+ RkTAb\b* (J`S FJ~ͭEQ6X0cb8 \ r$I=ZjrD Q6 +7wq*U)n.wBb4̄,[[!>$^3%%ImijP% 9f124 *%EL/N.3R a+wXPEQԛ`3bxM4.bX] %IZp?: ._wQvO~Ŕ\#Rƌ8bKҋ8wSua<;\~JQA#UpL(z`Ƃ~DHI\d& w6W=ߙGC˽j)貙Pw^/!s#"/ůFy+y,u(( f,.1p`ũTǽ37Ժ/g&i"sȤauLܘvа{X>^i-q7޵Fv.)ADhpn1Cr:fl EQ  f,zIV;ujr q1Iv;}b$]H՚=JvZ3殴O' 6( X0cqΉ\6uT I `, 0v#7KnC+tomK4,Blmj ~^s|˵6# 4Uv;\*wv;#K~m@lh16g觘<Y@XEvMS 4o"Rwg?)/x EQE+`AǂS-6q< Y4S wQApzA~% c V$fS[z,c9yH;+) TM%N|>G ,Gf|{)-!=tШ6(,Xбxާeyscp2}H 4-܌إ1$ Ms ZI,b I4}#to8L M[Qg`,Pz#!"=H $)xTw_>T+]Vë*^'DQEQ:Xбc ZCdqF-O:,Itl6B/hQI~jR7v+Qݶ`kd&p?nEaT,8!G";pNJG1No|>FM EQEQ :E^b ڕ.܉g]$/#-*{HeY׸6$|p@F{)M=[4(E3-4@z[[y sҬ67 Xq>uOʾ%ŠnEHN<~w}ñ~П%EQEQ/ :XN{RL{,m?(XXzZo9~B 9UUjtfQ[~+X vqHmx7z'P'ݺY%[vboʖ~79n(( Xбc'X4.*Z_"V(<+!rN MhnFmuv?*w:4,l7Z \qMo~S+uB,((^ :t,XXBH|h8BI/RI`]N 9 58x+TgFs6Yd,hv7:e$bEjou71rǴ!a=Ƿ?jJ9N(F,((^ :t,E`{G߰t)Շ0"tjHk#,|j~6$չREQ [&Ss Ӿ$hClra6S.M<77zcXN(AQEQXбc,N?P~ђ974xl" 1iVY,’ya;wY. !C=tu.4>4ͼjCwf=a:/qCG(( Xбc,fMqJXOOt{Qa! e8q$id!Fql BٝS7sC|EYװ,?uҶ}*ґ{X liߪ.Rļ0)\"Y7uݐ a'EQEQO'x{-,Xn `E%~Rր4$}\^ ]:b( {?zhW|X,6TB6]\u1r*bWEXb3P~ Cq~Z(i{;((~t,X|dx^׉VJwze Hoju:Dbk`rSj>Ɲ+&b)reW“$dQ{%vν ;<:0҇+e ((Xбc,&K)WHXri# TVVc^OǪUG){<˩{V[#QRfJT]'}dogq)Y&_d *& A#1wB^R2.:;O EQEQ2XбcLoәeutxb] |w](pGf3ˊEac} z$}m̯N ;]7OGa*t Y/79@ŨJ'%9hXPEQE,Xбx % T*Tx,KUZ/z2n-Orsq׮ AAjGWIGߧJ =Ů u\Ahc\Oop|u2)F!_a` +((~t,X YPk[M~Z,ĩ>Zcɗt޵bZMƒ͕օ-(_-X-H,Xl&[F3 =γz F?*Vt3UQ큉+~^&uϜq7cw\"YIp1)R  $[fu׮T*-)AG!yE5o d+_1UQF-g㊄o=ыIl 7c+^$H,XlE"ڟ {r;6ߘ{MUip - $^A^1W x[}ܑTd .zD,X sz[|sheO(;jLNVL+Y[~R/ψ $^AZ^/d2y\,֢[E077ʅU%Bv ܰ6LQ $s8_/'j51d8"HZVo37wE;=_)Us:[I" )6 ]Nq|哞-M@bo8PP`\./ofG-$pOE*~(l:ORAVQ5=Yc0ZJ٥ J{// [1b $ /WdiaJ<,ofZxfiŅQ҂;B v֊ 'ZWa{P@FA*X)U>[2e+*I $;Qo| ,7 ya,\Z7>͍: B,B N5ZŎEC T*krrlBZDUY$v{uQ $7?9]6-J 2ˇqwf\:+QWnn{$'e=Y@ސS,x-ʽFA*#8VU!_Uzd[\UO+j[w} .H+H,Xҽ}6~K|L.>D!8_OD,f9>zJf6iG(qFE=AXaxpɎdWr^MRjV '''E(rksbZ hQ"PoAi͑ IH\UbZ'رnyrD̦ʉNVNi3.&sdrŸ}O,$  4;<\ߝsƙţ-J>jb'Z̠ 5$R+~l nw>;9B͂xMV 1/s#.w1SX4˝VόXv]j.>X]6N7+샽WdID3 V5a-B`UJ4]b. $qtY=šmfp֒?+yFoKpTW8 ⳈD\ĉr*ti =iX.˛DFE|bYw/.bLi`Qb[Ίu >iY1t '9GIT xYKA&ڝmFy%Lg80)H UV>/qzz8@bb+*|Hىu&nf[c_ݍޯJPjNB#H^n~c˵gřL*=ʅI,֏lRt%-u+̏_4ux1oz=~ZĢ(wFѨAh7,r(G>saᳺuVQc8Eְ,N2FZ eeF-Dgd J4%U7 f _,L6_;RKqr5[7(%O:~2<ۣk5C4|xF^{SYNJ9Xq;4gYM/g+$_NzŽ؈sU gp̔1‰+kOK.H82|F>]K:)hSaS89>Ah9R/D0D>3 'c 9zƩupT]QqTgƮ%Z^E! +ބ[T0κtw8@δ)ww;҆:\ͻ]d VpJo+U[ \ktT_|0LFWbʫzgjqj^L&Ѝ>F]YҴo_H7)rf!dPdNZN\]}*~|%+ռە>.ِYl0-m##Frp6E?`"W[>ibETl@EC2?}81m` Qr!y1 1>4.A&Çe˺D8A $XDFmtdNU?Onu&lXمp\Ey8fj"-ƪ7H9~22 L>Kז7,)Rƒv`{VJP6 2 ʼn]̻PXqTByF,gjB̠( J#5ӱSgG!h y.ώa:^Gwgp`I ~^bMHoX/~=gK#5_^,VxC5_^x_͇%U6 7-(m>\1+Hqx13ŤNWWYުݎۭ$E? +ܘ{ƃ.[c<\䎘˰rd4v%XbŊ"*Q&\ И iK` ^!EM1A&3Er"[2 Fn|PWʀ؁H'&'\w$_@˔w} `6pv3KjԎa^ňALViwHyO |OGDt0tL>6. j .$#nR EY`CKs"紲^\‘n,bŊ+[XDb,y뜜FhښC~x4*OL%QHxHBzÞ7v mC6dIE]^&dӏ݄>IZ<,q/~<:d'NօS}W`%XtpwFB`:#71vAX./0=*nJyԡJs#H,wA ;'uOop.D+KsR ewD%$ϻVy&iڅ`1n=?!-TAt8 Ѷ׺+T`q$=܊#;*[-h'C;<͊IQE)VXb5ET,*j0O *;!#S! U#zz^rx^]E;#( 0אbI9W;Ph{i7wn6ZGt{r xq3qXu'P/ɂ ,ʩP7ޖr9bJ5@Ɂ*&ɶߟ9 g-w=]*L0PW _G\hɳcmӺa k U=72i6^'\]] M&a) 7J+]y;$x  _#8~Ou,^BŊ+VQſbmx2dx8yYՊ2._L* qH~+*9p;֖A1Jʂr ֚剌/=VI  F('o$J]rACn,_a*/(Y$Q\gb-r3dטּXJ[3֔,oOVt!o 2 2%THFSLLQ 3v?%zW%4Aح[ݺ h1Mۣ`vwiOAn5WI7aXbŊ"*Q;[ʚveOGՙz2tYZnuЭky1zwB5GM5Ek,r_HPŠ6x"X$4GOt7fo"<ӽ7挹 V oqZ!/+rEJD0-R 7~o'bÖ,وNJX`b4["Xp`3"8YL^#d>ZWS,2sǟh!K Φ3w11 CS9t~٥ǝ[,Obx;VXb]ET,^F2M4I0Et^]-^1A\BHwpp$h-llS, `AB.:mκX|L/oYYnE!$ I不ۀB IDAT__  'r3CČ* x#b^( 7盂*"X^=\翴Lq+pq=},nfe+.cҲWHl|M5rBjCUxfLyخB)P^`@^)B'$ Ɗ+V Qſ,R#UO"/ ;Tџ(EX|:z4,$I_\wC2`4L*aΨQYX[v`{'./kc^~TW T10#*ebEXn<z<-. y,q$dQW_Q,Z|ܓ?h+nѪ UY֔gi69p,!w-;eIG.Y0~ж)m.5U%H%Z/Ŝ<z{8Sj _{|uFFdƖ.['=%;2N߷@ÅA^DDDDXcX NpT<#]z/XˡoX5"b4B:ԋԧfcl ,$nBZ]ԫ&vlgҙ|(Ϊ] ^>rA)^ng⑳g$FoLNB^ kLj؜(" ~Kd\ OVN@A\YyW>*A `vu1)ǟNbɁpM;^/9eCzr-^3x}KD[k(@5p.9׀[yxG"`,^)^N- Cr3% ',/'èF:#`y.G#>m$7ykuǏt峠wۜ7 مlԹlaa)׋A)rųz,nw$J463w<9ʭFYX t@/A 7޿f uMQ_HjI<~r>^u +\'Ƀif9Iֆhk2ߒ(h;>'DzYgc<KH8ōNKp r7Z,"""""$",.Eೞ!Z#g0MفiGjnTacdcafef:AdPBM"򹏕)P*}iihRL̈́O b*B sJ)sBT($,NR|udt CBF `՝fBW(A ̇J ^WlESZgp"5QbA/˭զ3Q8p%ݿq9 1^n00;x"`,^37*Ȥxrw|da!ns`0fEI %ܙףi{aufm*qU*vp^%|t=c(XlslTN&ڰC)nv.+`qYsdo3E\ma C wh6ogj(y졥[+?.`E,oa2 te)τIW՝_ؘ{:mu 6ISZ3HmZJF~yXم#7X#czI|p$7 ,%@ z=o(̈uu$b< V힟 `EgHyJf,d(}e 1Π@Vvu9F:v]Ʃzru&bS02:N?]׮r=-qE% Y0[JPLj:=Ӑ!6 9Rmi?!,HZǣ6 !bpXl"dA(,ZK-*Na~*/0@ ƾ~MGm t0vWn@V `)w҉ h-"%)  8隃UmM˺\*b42D]-$TU ,"""""("|U #e`e1Ы^P1;p;o'q -L!<S1vÌ W(vzVgp(SG,C+GwW,.#oaɓ. po{|M)x}|_'˃*`ewS Y2(~/<|%*/v}s!?l΀ 5Vѩ!pNgׄ5r4G+ F E.~hS_jmWƫ%E]֔]lm׿y່CHQv5ЦCa'|>KV~$/)Pgd  /S`QGOŵD-׾:J[&bAbAbU%_yP`?7Qj^bAbAbufP}|Ǿ/lzA*}bAbAbuf?8M!$$_  / ~ XXX|X,H,H,>,$$   łĂbAbAba XXX|X,H,H,~ n!bAbAb !"[łĂVaY옐DjƂ|XXXTVaX30a{ :~^^pϯB\|XXXTF" GDM!R9ͺ`"Uj^b>5^OEWԜ1ԍDmq=uEe}y_6X(M(.w..ÖQl] a0l#[xnp4VqՒv=O2R㨺дQˢn֬&|cVWo6GUW}ŭX{e$шbRr^uȪE0e͎|/RqSqRD!"7aEJ*onrC^-[뮕 bAbAbqA5Wi?]/GCIQkMtho-i_ʐ$MUQvYVdYz(4]P+t|b~dMWbN֒춨lz_wT XXX܈EXk{m?9Nt!f!qŶ<񍖩̍VtC(0ڔѶ"¼#TpEYdu CY'[l[Ga 0/?צijh(n˜5cP-$$e¨>l|En{2qwHDXs,j!%D1\ /MÆ5ۛ:8$ulIYaI`dF-jB6c$oD.\F>)[-CR,H,H,b֚Ѣ;_:˾l~OvAOr9# .ޛIIݮ- c%D ip[l :IydžV*N5 M,/,=̲jz,nZz+\43=zO|>kࡪzI}y+K2Z4+<ūvd¦+bP-$$EPuw`p|{~5OoLӆ2ɘ05xr_cB:_,"uͨ"6 WDRUup17$qLd\wlƙ!t,/Wͻ'y/Zgc j|b#ukX<  XD27@X5r^K~-Ob$/7o4p}^o1fTAR WO:xE&UWOf{?j̻~VWo.^J!SD.ԣbP)$$jhq^I;*4I|% V`+}}?x˘]Ob$)NAP+T,6N,̬`p^ vFb{,ъ?4l2ӯҚSqb.{$ĂĂĢ ai[?σvTZ^nBEbs{k鸣 1ɟws DK{W8ф,7МaL~*J1rYqJqEyFPDg80&Q[C,t`A.DdOkBE$,X`C,b + jH(*MK: ƻHI80ިXYL%Z uH-+I YJ% |&b$$m@qwaVyWuvBǜ|,X` VG,b Xĝ6X/hD0 BAy`.7aM.`$3Q`-?e5%Olm |k E-f (-9a#QUbq{7 &cFX̻q<g] u, ,X`EP,baUːbmBž`$P3̄%BdTŒEWrba#K,fFjRME L,lP(-0[1nַunXbݼxdA je,X`EP,b X)8ͩ* Dhblxܺ5+zǦkkB]9j|iYλ5QR5%NPJ,1hBo%2b9"6FʆvuMcAWT;oX̊x6.Yb5 SmUB EP,bn_A/wݹ=ęB<L\Г,N5`R!@r%q]`HDҢjb J~1YqdW(JZiu7vZ+$G]9"8)UmhտZڞ`:E?_751ّuӮ}p>n_}fu^Y,د&AEXdT[׊U,hkPMG̵,V c.%+R$`g]JtMe/՜QkԐHiG0B%7:1 ezL*YrVXp>=yAg/Mi<+CYakH({zT"|\ IDATg8X?VK!&mq\>J.VgZ}F<_g]O6OEC) [3>~?R`EP,F7{܏WEsz%3S ^Kkq}U0B yNʸ$oC.f1k|%΁]P'Q>Fq=,Ϣ*ŌɻuuhW<ԵT|ʹZQXQy5b[FB9PYǗaeaN2yhEmk~ 4ƗW65Bl'O^~;5m]o\O C!Ni&6 πE|k:`e=& ܛKy"(A?~PyQ 5P4Z_2L**2.S bc&JRHU\l[̘X@0XLrZ$Ax|7 =5c:r%T+[ t2m ۝.HX`܃TRo舋bҋ1SщR$I&v 4 1۠d2P .O!zЗ5TV @r4$c6(_/wJV{Ua{F0s0zč\!r tq:B=kC:ٟH~ 1_{e zʗO,֐afG=;x|R dXV%a. X:-`~VD2./ xI88NาL} Ԣ@tۦ='b9Z oyZF.$E'KYx&ʥ4Ǡ-0x: S$\''q @.t0 FFApvX b "7; &S{Ek,v{]Ӷi)D15rtl6بj=O'^M{ |}`Ч `Ԏwm՞ӐtL-2D0屫a1 h6wݲslvY94ݺq)VyDdkqir@Q˓桹é^;$\岶ݒ? { EP,bQ}' hXFp$X˰gf#SQ3E-F 6ݾd}DRkC&3n:{hpb۴Z$SZVe;"rI)ח%7$LFk򝱝ds:%ގgd+?R^d0 'J8NQǯk]ˠT4cz"8> lLP5j{q[m{I_\uU$qwUܿ%!+gzZ1<55|G,$@.m cH1]$Doɿll'L̍ҷ6.9敆r⦦ʛIgJ[.Ha^o'S~bg~v='-Q&PCy؍jwȠ^=KiooPg_P(XP,b Ym*KD E7~! Pa=-H~t@& Ǫaz$)jo L`֠ܐ:vDAё5Ԧ)bo*kB1{BO"f) NHAp^ ANlCz:Hq;2e0Pki/dc8wtОNT*CZEPwA|oCHy3E_: 'NXVb⤜qu:zUJ]/ bKO L[:lg]T}RcӟVO)!z9μfML '.f25.ɯYb3 vPӓИJKտ:+^/ΰT:}W?l3S&vʍzEKMݓ} W ~nB nf\S~Z% Z5X6*jQX"("IM;QHĬ~r\|BQW*,-oE6i1F[0S) u[Į ! b@q>kpٻq%x w(䰾4eI&EQ_EV>Co}^U3ԪŖAȪ,A7uA$Σ 6Vd{933TqBPzguBd1BCa-5{*+@Um/CB,tmB\b{A<1ŲZb^VTG(\Q$X;(ejT$nS,Bd~@ȸRg^%зf91@K{\S%k:(D+$Q>Knx/3$:لY~-ߊ*Te.%ȯQQ#d@_EX,~U( Nnʲa3sNLzQ>_E{+gmTdk{vMv~Urxq#Z?5rgM x 9__HdH%.{ZF|dQ~S‚K9r[8J|AiƃN(f Lx7v@jf$_ȿ9>qGI+RyB+kHߨ$LQW1V 2RZQHl+{*c-Lt,j:1&@O#Zg"p 74Yj]8"#8:@SF AN38O :׸%`y-]I<#p ;Èe~5Eb2L" E8b=W!'āQ{e)%eiøPjb2Q#!*N2^[:[0DX9^aW8ЙQxO,6C3lz?a5%DhdDQ"dU%s?1v!Xg8jX]Z3=cS ?[kFv桬y‚v8)FNS^#A+Գ,awgjϭspX o DB-j׼,_Zm$/rF Mрf-EeI䜞*RJPE2kS'g5ރG|5=ʘb(R伓H:K*[p]BPy#q._; 25 0bi,4I?Hoo J5 qaRM`IELFm02(Srn0ڜ :k̃*\(22SJX`R 8`$4Ъi,}b=K/` e4DO~;V)j5A#i&t(rƝğp* m'2#]a0A̟I>-.lڼF7R鹀 /Tk짓IkT*쫵 sRF7 :$.WݟqeB^Z[wr*֣c5"y?" ''.[ټpLy bD@c)x!g>.8)I {ʆX7ce"͎:SۡilYsyЇ.,zWiqTzG=?=c3=cцpFLӎtD;Q E|'yґ+  |"ЏX̀E:NfsޖۋWN7D5(4-"UF}0 FAqf /&YPs@^qCt)RŚXp䖌Yr>:Md Ԕ:D=| ԻgCZ8JGT@p,e<:loEI_(¤R!ڟ>0GrMune&/Ʉ1^Kphꀑ~+h:TтgP)9LG9x BDy.!%xCQ7-/gI}iZwki,y PUD9S".I%;lY@̡4rDC{/GC2e$M%N-DNDTCku rƬ9^RJᆲQd6^2sy'Y?}vKct/<}׭Jf>4oUG] q5D~GOd6]56V5ϽY1kRd'rw9kw#sƂA;_P ҍY>o˵=~. ΄RwKhqf1E}`$p>K6ň݃T9^h-I4Ɋ0RQmF!5ʣQ'}L 5(ots&Q$auk,h[P^4UՌ^tH"I甪\/R@M̜Բ GO16% NyԲD0`t#nU4ũq:4JjHLe0}}H," jwV)ֲuC re\D!9rDq dZw"hyNcTۤqVO=lj d,OXEX/ +:S=%GF7}UXd} gY}-9{G_t$h {#/g9Kr]LYUX8?Lؑmڨ/y“xG;Pyм\~t(ȵ?Ϗ,Nao|8/}g<GX]` BG[ <.u(yMӨf8ܟnK3s%=I X.l!)ʓ8M3UXLW1w.+֬L+vf?OL;-u4%-8(1CD,"5e܏`z<1q]HÌY7 h>fb1X9cz"a>D}gw]% e,]UW· .M[ffP:-PHPy8\ b0X$4"fB _z==DCQMí&1X(0 hWBb-aA4SP[ʨ્R(ZEEm)"tt#肴N:؉ʃX$ ʃjB$:YbXU$P @˸6xPTΒׂ4zcla4A~z'ټ쉍5#!)n0ȍa!І*&Tw',(,o]FZ*vNz$X(CDBH`5uZMp@p<G6'|J뙚չAyg 1GXt\M| DVm $o .+ 4 n߹gHs' g><vC4R-.bt.8/prdx"Щ1 TOc;Y6ĀNUh/}^S 4)H ?U IDATU9]XJM۸86o7RbR+ |S7N+kىעWMn*J\qut@~'!bwhDx؀KԠn͠t<,O@ytr/ӧL,19c1g,^Ze}{EEٯ.XT"HC$I9^ŗ~@lmH\Zeձ}YľcdƪQ"En)L^&Yk>CJHU.=g]S UdU;#'\bؘ<;'Q`7U^j~y_Qfv NthƹԐwq˄ӕ{܊UQ- ̶.LY"StpwwU6T925Twz 7_qX < #ONfzOTo?|04 |}U%)MÊ慧L,19c1g,^җrQEcg tse0"!}԰І`3eU2&PCS&"}y3w{.7=Q‚ 餌کfZ˝ n,~hYZcF; ,/Q[a1&M Q 3C)]9Yyټs7,Q!NN>XtZ0YYMe#PA,6X}|}D}bQ$#]KO@ Q ;dQh0>>55=fs]W&YU84f;&ba28驆k]܅ ?o+Խ&s`E?=.wgTly b9QX+Q%>ܬ*?"Y֕ Zw YQ<}GFxJIzMwB:^0Z-mU9m&Z kCNf,,SaԂYT#4VYFB 6vi@"du/dC̺ZC&]cʜ"`FhvX\dʹUNB*<fSbwozPv;d-GU\gUR K"\H ]2 +業n_i>l$Ƿ)vZ4[r$6mtݏő6Lg[|a=_p`3"Sm&Ŝ3{ c1Ca0Y3P+{EFQ%U:c r(/7 m6!bі8gC1*MF x9,ڢӍc[ڷQ^F%T#ݖw@v!B.F*ԩbGޔ7I~D[~/흏#Ϻ/ ܱhj2M26oZ8=Zҿ.n3䖦1O@9p XhC{, njDfQLv|Y d BRӘcmܼ` X:Kb9=;7S~(N*}8PtnT/ܳ S(JqheY[jJ,x<ګm9~)^}HٷO)wm^i[O XsR0&Ӓ԰(A;D {,oz6$C^ o%6H.zmCF>kHi;";Yr_J=!\«t/t3,Rǂ;SIM`;/o%qիjߢXlY @J_Iv>i`˜<=Vov#(^EAlz*5m5}vV(uᝐ P,{I=TBlX,:|Z9;1! EltLl,VEB( $hMrꐁ9ݦAM%d`ߑb6< 8ӿ>` X:Kb9;).]DmI+ر%4eD^wf`p/Bکu,vx{A&;i+B*j >ϲq!\7 X.;+G+8XxuN svRl |R@ɱpFHM'Vs*TT(ȀC&Q!cQ͍_IZy 8B]gap3z2ԱH!{cg+X\@YUͪhfk!_|b,PE]Ɨ@*o: ;B ~$5d%8i|_f(3`%69|x"ʆiqf(΍bJ*u`" Ggp< XɌo ɖv,$) қĬaQuxK" 4\4%ׂ.x:xz_`KbX,T]s)6%83?1xѴZS_w"2\`꤁BE Nߍf˱,{Ȃg4!FrUEL$g }fig±\M)*HwݶU}f "_Ws-].:GP0'7U8BtƢdCC)X#CmKK1qt[A#kKH},ӛt;6d oDڃYױtߵ'QOǤiQ"lTRs6K#pŘU}DҹU<9 ?λyžh\VY+T_0JCX]ffT?!ԼrZ~L^.fQG6(`;h0V(ܴN_q$/-gg[-<38WuE/˷X,ұX:Kb95 w0*߁94q/H6yٺby",y+n虲V37yešM{PlsHFV'S>^!^E Ȕ_\sp6n;哸v3ҽkɴ4=KSat^V&`!Mˮ<8M 1x(G݉(/ϔŦʴ_4ݧw5yiCJ!RVXȷYŠ縵=%^yc0 !vWKn gS aM4-gzr} ޣSV3:e0yCPe+tuM( H;{~DžOaݚϊc̨j\PzJw> Ys`ю)NYfgJt]tIhO8RbI]s0M* z>=T74GղK%ۻ[MOr,ct,{"~ޡ d5Rw(I~twpNf*Ta"|% +Ayz3bYuZnrV,(GEOޫoٌqOa֦bbHS6%phR/y.GE=FրIG҈R+I< `XpSflފB[.CЮgĂTg[sG\N.EQW-~D +wEpRnHN@j>26wJ,U "e L혻NVZp+ORXk& "nlAM 2kΰ\}tW̓x¬0p]8$CHDMC@g Z[npGPp .)W% b`4e[gc{A+(њUz2d@k)<%5q`C-1Jj*3hsiW;Z_]`w=עyq8:Gaz*^d(G%~"?K[$oVOZſǨd6ݞ#s^^J"ӬOju"+i}:*$VѮSJ27ȼk@Զr"dx$˜bbSۧ)ϺHad0h)"i=Q&XK@#˲&(k !C[ p9RfB:ŞgATF1pgKD$wp͖t3\~<'cl>F1"tȧ385P"] IdQt {J {?qlg7 z.[J.gPV(x0JTdmOx[Q` Ԣm߂!_,͕ ŋD"- Hl'nNYAYLle3?rj=j-Z] flQU}O=CD!>j)c @ؘ񡨳:5-]M@OvX(P~OhY^m7,49b1G,>EI$' O3!X+Na|S3 ?`BY1i˲ : &Hp@ ,LRp8^lA 42$xS@%~Ay ,h`dߏkP+Nb}ݚJ[L)TY['=YR55TunYs-1Ou }hXLw`gյlyskoO-i&t m/[/gz$b&s#sbX< !+__:JWOD-~y,0H xAc^^!~j "&4`ag7%}>-ȪOCtVB(X ~u9Tnm@fsaZJ 8I`n8,m7 8\Odd”{ӚSR8BL51\ 4!Z1`K'x#9fsI֟@H l)H/T9*dZhȪŵU+x\(M*NTO[9 %Ob&Xnpr !hB_vUJxɫXZqT+8X6c¹IRZМr!CL'[ݎz]B9Ƣ4M`dO /^Fg9n!fOV<ܫrNsbX ^5(6喗[`+Np:3G2 ⟿LQ)QZ}9ͫFOb̘RWEchu0-#wϮXg;aKW:Y= ϋ'j*Z8&=:^= q9]g^Ef[qHE1 L䮕崚2Ra[R"ʏX6PUjk\YDJG,=Kn1WvtC%yjPjj#6p)ӣO.,.q`ػu -: q-^30UҽN]Z0S{;%X  $VpGe-w eCu^>V3.ĮB a,fClh83txu=Rui?猤 kXi,^Zr=Gvy{/g8PĻ̏5EZx(/ Rs$E$ph8+mE]k.oq-f,)N Ya%E6܎٭*jmu;2fj%(yN,ph~Vy0[RF6JĆ5oW!b:Ƭ8/?Αq/tER[`g˯*ܦ7S&E^a6 X+ ׃l@r.H3'OAϥ|yq% j""Xc!R nh%;!@}wtK p-mw[74.wȜi?oBi]pz+ *߹<B]8Yk*<ۊݤŮ}pRm7m 9m+I&Nr\vvnu :ٙ4[%ïU_8bn>smBZxWaVUݪp@ʂCMH $dp.2ti~fʋNI{qJ;u&""0X0aAՍmo <}=ʃ) eQB0uM FDv휓 ;Q6T5m Nt/gd>}Wu+H5Qcb~imЖcOِ&oЙC (9f/;?7;.m_&h8UkFr]n*3 A4g@xGϟ*KP8u{=]ɭljwǝɹv;םǡ޶D'Y#DDYc&@]r{ 3Ce]$)Ź2C|7;NEȱp]l1]ۤDqw7cLED̵Vsq$Ae $țIb/:X;'6;woHTFOX& Za+r6= 4@s||Bf[v@sوf˘uZvYUdEDXc!,8QF'p{RȲ Mǣ:F6MW* 030äd `E|nzxE5`` 8]c) .K(N%zUp-ŀ7EH vRW:p6 *E`xP2xB,s~Dlsy`ɌB{j&&I!en #49PrG%Yր3N\?;P!e@H]`nd`ɠ( Ca} 52} #=[V *Ʀt҈OƁKjqiVIbm 3@P x1*>[=fTC8P:O{ MW>i!ADx% B6 7|{t"zӂ( yՈtl$WBBD50XE96ep̃  xByomL]zi_v 8&`r*s L Ħ=nO Q0@~<Iz!j܋JB]mc<^5ЃS"P/]wB/0X/F|0>F'X DhE#mMg(;wP, &9΃N'A($ ȁ (@{LaT+RÓOBX zBL 1,.\ԃV8 im̟ݤ,OX}$*""B a,7|Ѧ`>}0=U(Ј&B揵-"!@nbMc DNq?Wl1c66 q6 F`W̑/*`A0qcFA ".!:.^X<$=XvL6.-Ł\)NYzDLB; a,pVsPQq<~ ĖEAEu: F[Ѫ%3(f SB&`}L{~ PW%&?LbT ]NXL `y"`q!_d?)НJZR=pz͈y\g5NjҴ~М4Kwrh!"B a,o@Մ"Y89'ӌ,dQ?ck+;rH4,CX8PO 0 _,WXȳ )JPn\8z9 S3]{55 _Xb Y%?si#)cF݄j#Iʏh`jݹm,?F^u]%K}n\&y]v"BDD a,x 憛z8LCAiSad?`) ,cA" jL2Q'g01Z'ҸȚt:潳c :& ?a:s&NuS*B, XvoScV0=&Gdm Z Іp׶C)zu;<[.H 3Zy,\m-<;_[xeen8}ܲL0}z7M _)rg<""XcBB,Yā 6&D&GґAńwH3;h) @WBAR(,XpT5YPlYB*)`t>qYpb麈Rφ{Ԙc/N;Y-1ȍd!{xW(2Z-,˜9q)ZNMX[Cf-vmvʏ1&l?0>Yc(j$t:qjw͍J  x`C\ةWR ldz;B&c0 $sNnwU3rPPS*M45dtIJ&k=7Js'Kv7-d~ЋYe.b1+_I,vfx/fWdaX+EءZPfteF~hf߽d˽ʪPO/Ļn`Be6Vr$~R Xe;|>]4}Bx(,;bZ#=M׶7wYJ}z'fP ın$&76U#u5DU>+O+"# pbyI&7yUc%MqZ6u۶ufzm,8;ESyYeWJN7+*>rUUq 2M*2uH?A*2s;[b.sYZbvc:O"秧2ɺM[V8, ?M)݈mO,>[tNe x3'N'Kk4>{n bQkk.ϐ,>7M.Qt<{ uBWWJ@%\("C^6&!8Y6iIr(2W]Vk_bOumP޹\Ԥdj& #wu $QEߘun!6`5YXj,>_nK9IMv^V,<.G޴ ԕ.uM8ѹH͑Hz<[/b<1›&]sC"⎨;!k&sˬX̊ŗ9Yơ#'ݪnk6{%Eq5ށB-X:rm"'`Z=-)+r8 'pD':ZLrqao /<^J׬+rIr'Fy]:ؕEɨSy} xэˮyk >iMWzDx+s3%P?YM)1\2+b%^l~(޻?V,hlVpS D@Pv},@I9&D7xtoTWόN5 f(vw;$ 4™HQ5F5ӉÜ'#"o6i(h"+ڕ@_U6I$jԻ27MMظ0q dYfcSL޵!UPxH?|B'Rd԰ljl,(c66`/<9 :i&gw(/$8u0Yr]a=$#@QAPdb+xZWg6iuK~v<*iB5B&cݎzdvf-+؆1qq1C9JbRe8>0My] bD8n1l\$h,2Y !KD84)`ϼ }水v@!EH} (ǻнP?mB?3!N2b;7@ :`e \tqwN? pokbIIϯ/1ЃJ1 ?"T#8=# )6o䐭 drRD2  )Ԉm=LMJbAIhoټk3zSK"#h%(;Fk9*,!La1 :xRq}vlY$qo:>zGÈx~:w4ę\V G,پLUX5ɴ66 BIލ?x8ؾP[˗td@_Ț|n"aZ"`>yRwWC y\FTLY*s=e<"ULqeV,fOI%&H(>#}J03]hLCߏ_Oo8DIbX+1F'O,Tk*Mod}?O ( S^l׀# Qq/5[sl, '7xJۇڵAtu-JЊ+)-3K♇k*@ (E@mbr66> +M^ ")H=,cHƑةj,RGRV5FTG-0,RwSyXB(īFuyE!4f\߰fQ#s8KdJxv @-u4 An0X=5 ?N+o+n1̣S V",e&߈&6oכӉ-!G:"`Ո|8L Bf{4[C<~+ܵEfɈ|d^0[K}pW1 ]D\e?:wPχYe.b1+_0㒱z-]FA;fm琻Vzݑc!z&z&;@OOH }]y:ޒD Ռ/ `UC-`A>Û[c%/zREKt2Xq`%gt Q"W7i\; X0c] )yl%ƒ(%4sS ƶrqsSSH?K:H""\17LX9ր8Tj EZb] IDAT~ GEO*YTޥ0DXڭ;# ׏-7nRn$g,\Wx*jLC(܅ '>ZMT d*LksP.ہ1ؑzW+^*`W+kM39ӊIoзj="t* .+]CXnKߥb4.yikGqQ2h:uTE߮xbY-:h^ /iS*1R>GzaԏYe.b1+_,"yZ.#Hb=ZzJO]5`$rBa7%˕w[?v.yy5M:#d]cjI^xSV=?O0Tg7: ۡ/sz7CçNSV/68j20J̒ʁP27os`j!r D ŊcI{%{󶐜X#˛1mdٙ]n 1d=mzK  f?oeV:ٔd;fd0XTuuGzwH\0}al&S党juK??ea4ԅxleS"{: .<5q獅:`45ە#1Œ r?Nq_D4rl-aeX69d{UABCKQZ9S4/_)|e8G(E{hZ}1ozA{"0~C'į ;ؿYκf!Fۑ[ݑhca _v:(_%I-='ju꩐]z\U׾D N&fG#?X|)/_Yڭ*?<,OYL[e`7Iy(s~>=]z / YMf߱Uf\oWH_+|@ /\" $Pj:2/(bHռ4)vyH3oQV #e5e+#/d$f6ZNR5Z" YpMs,F˞%1/FT#LT"] yc8 &a\G0aJbd3e[ol՝!2Oi3#&n| qeN']lٙ[<so~`eT>X ,BP)&%0a;+\q Z]='lVBC=?6xt6|f21D9׬׺6JgD5_kljM9ϖ ;C +ĸFZiajDU$䛰-*}O,TX Ңl{;ˏCV;@ar|BfKbT.-b τЈx]7єN-2XEމ"tYVة(d]ڿf7{ ^]ّ*Vɢl2"c\ B!isE4h֣;XE'* 3l{X1YLJVҡ5h9AOO.ͱXm:'K7fS7R:&DwF|.ϫ'V"M 8f 7U<VqCx"yVVX͂<U?>{I;]9H۟7l &JY w#=Ă(|eȢJ,T#""4/Ph앒[ 4SU̿ס<;f(eB~ Ā]kRSIo>Y}@2w޿M݇]]gY۰RŒFElUl<PÈG@Sb @ӝ- =P@po b<*GQ0>q:+xe*JxoY,/ |>T14PQ uewj` iz"[Ês-aΨ^r6?FPL,C@P¯Xӑ*{F @. H5"LGnL 90[L}anl^X=blI.-| ]0Dde0w>a7Ҡ4Ϝ-V4 DL~ Ա+ɏ.-?;6$‹:gK[(Q)gN83CB#FUU^y;==r~#NNXt=L?T(^r8, ,cօ)9j`Fcr=A]@tep~Τ^_nWn!vrrAd܍U|1 d7v B}w'PްSA{(Gq'q$q]d-Wγgӥ //{ l-5 ]а%iP]qx-WEXg~b8^9ﵛ1 n81ogE%k hꡯ786*dO偵ݺ?tw$LeS:R^~zmLGMe+\oJ2k8hDZ0qQἙcfUXt1:tVhYkmzZ^ k3fdiIŇ ;PX~^RCG**+ypA`G[eoCmVf@HYIMK\-ҳHL ׊>rSJ_BcoqÞQ99gwE3xV/Y@1f,[ ږ=0Q& P Z,d R=^ rdR$< rJ,y3FN #-LՒp/MX! I{>6xR4xi2Dyzmֺ蠺kG~inGBHIRM<O6 $]aPܱ=/:FFϑ0S@>uScW>! M7=NܬP=hwx<#06 E5 ^qn(r6ÖÞq͓Q|K1B>>%$h,M@ȑWIOd2 iބL&=E2dV(*gZ-U7#vf$z̅MuoIy j gxj]4-P*]f+Wb஌U;p,~ʳD ,:$ӤIoJcښXg?…x:^3I 98vA>M~ǧ>f2C((%LDZLˈ E{Jг)Z5Ös<ۏRϓ|QCƅņS86,b\(,ўX颷`;i &afrD?W#u3hL`تTb'uv h,HU%u~/ KLjxsz.~MgKv} W$/7w]1M_m::yp;ǝحwaBDCbh6Gvo681;醩RȰ0F@X0 6ai\lyu#lG{tX+8\>i띘#ʊkI] ~uTEg~yRD[fUK=.z^\e,b5OޓGO~]Q=*)d~׾l?[z4&>9Siۄ[5@Y,muj&Tm<B nUw(G۰@g3H=Zvx!.qyX{cq{Fӱ 6 v XiJ :DݖgFc{=HE/_<9mCXqb3o>߼}y,ECǶ!-eUO >כuN<{BOuU {2vC6Dox4btt@c9-x4ݮh/t$°6֖[~s@}M5тhwqe|58).Jz >'z$g0i影:%| nLr)ŸIܨ:milmiߚGt]<,ıgL {"]H}~E  st,ʌL$; Nx<5¯1UMz ٮ0MM*ꡞ>}3ӯ\\R~ߜf~c$AIvͥ'񨌳B<8G?C!ϒBGϒB!BR£V?NjtZg&vbvU  Eڌ^0l̊ܽY~Fgd,n_&bN>l\" {ŎO_[O&УKg9|7;q10|hdn/6,4Q8 ߿;:\Y'jR;Rjsg-W"O4bʂU;a y"K`g Ƣ"w٣8{^7y8/a&+7ix[GXn,?&ãb~X[߹ Zy|;dA͏"WoO6,48wI=LRu#Y/ "XY狍򠳢GËAx6a9Წn_7Zafn#L5 ƃ-`Bck,.9 /H Zx7dfٝrϝμehq{bXitYLyb+ EE@X'ev#`pmvyr?L( W8Z5 2Vǂ,4JQ=격 Ց2X5ׂO'˕l㔊V>eP1kE8Г<k  E<D~xxx_~QH,Y ,*El34K}UͻEOx-Bc9I3?ȦQd#Ց,X|ݲ(aT~`9;`8K381|k Ee]j20̲Ց,7MM)brc=]3n}7C\42mMw:ZNN7Or{ű;BcQuZ" ŒFHkuu7VEl4v:S{ 8!{PćpwJ!>FryVm Ƣmvg9)"3g)E o+wގ1a<\;X:Aшh/ EUE )_\łde^.XK7_<BcQcpeQ2X|eoZkyu"vvv.Vׅ\|ۑ_<BcQSkNzavd,Io1zyC ~?~f-lFg\ `rTBci޽^͟+v)E+ƃ2X,8 ?]82$GY[ŧNY~Ƀ]oy5vi,6,4{uww>Wӵ̓y,4 H $ BcBc`X@rXh, 9Xh,4ٹ4-OH(˹ce27M2Mf&\K36,H-L]|.讪#clhG *T,Ă ;bAN,XP *T,Ă ;bAN,XP *T,Ă ;bAN,XP *T,Ă ;bAN,XP *T,Ă ;bAN,XP *T,Ă ;bAN,XP *T,Ă ;bAN,XP *T,Ă ;bAN,XP *T,Ă ;bAN,XP *T,Ă ;bAN,XP *T,Ă ;bAN,XP *T,Ă ;bAN,XP *T,|ǣQR|TWOwN,w2d I,XP q犮k7g9. P\PBx=5m!olkM Q2n^U|k [hn4lze/OW8XۖW1ڝV  bbQ.!Eu4γ7|5N>AŅ$_Dr/%T,XX8Jnm7!+Xԅxr.'$zpOJpXB $$!diWޜߪ,^E!>~ܜ|XN鸹_`i *.M4dZ '{E`j=rx dꏙb9c׃ծxGR\K,Tkv X{T %5oεʫ=k"ñqti:4Ƴ< fҼښrCG1Yp+}h1Dkl>Zwͅo֊U\Pmgc/#0Gb1-YMފ *T,oş'*G"IQ!_epђO=E#+7vO֜~&ݱopT;s_ũ։͜ F?v"u !j는 w6[QOx?i%ϷfC 2 M׬ oGxcC=?K?q n=%5ECb]g-/ v_ص缹gẂ!֤˄GDUvw]-u;g9`ԸVZ-K̚RIIw51ʺ%>lT3HX>gy2r<J7v {R>*tSW|PbG CO`t&E"\׿^үso]S-Yu6~#׎Ļ9p;:Gt}f#b*X_@ۢQOy[}Ў˲n_Ly/XⳋW?ՃFOw(^IC;{t_f 7TNt-b5>({z[ӌЩ!9cn2>͞kd3r?jrey]{;?fzs'~ iZ/S)t:9{b!mts؞vw7YS.?( Я65vTn;N^>fNc,҉%jtQ{[ x6+bOLht}Uőm/UX4T —2IE#=Y6!$x`y)V;;V6I{3~t2g7.]٥iX$ EтN*7LH\#YvnX(UaAb+#B/:#u7&!=gmw'c~òPgˬ|1߶J_Y\GQҠ0o,d/OC٘D>qsd:\)x"J>o|n\݉OW4,6LD7cHC]'ȸ!'4UwfLtB8O]sII)@bi,c:2XlQrFJb5GX@<7䜤k.ĩmp"h!9#!`0@i%hH C,{hug^<b4OٟF^XX]t(ʨtO9]9sȆRh)F_VM1_L C(K I+ސQ˳E2%\W=X<Ũk葬{ Lr\X+E,@8ĂNx"BmC B +|bq< kW8Ayܤȥle-U ^7YuLlEҠ0L,znnnʞ~trJ n{pSD,z5)(g,bUd&bvTv7Ʈ) ?#bQN8}}5(!op?!t( e䚃 0Eu,lٝÊ>`jc>.!XMaRXW8F7:wа,b!3:!,]H7ҍ)dZ0IeڳTzVmq] bq Mbx DBҠki$b}R}+ >mO I(| !\B@TL,V /ɞ4I,Rt*R*H7\5e9DTSNIQOar,S8zb>KO b1iUQGlI, CD (6L&]XX{ 3ͯ[ՆTꔯ0b+(NCEv\O&G TBn3wа,bq6 d';HJ!'Ǔbl.!k B*&X`EYHөy<'aX#%r9) b#31\/$胭ecd+ ?"[aX@н4d 9LՈEMd]+;]C!|Z2v(#um8!.)q%֬7fZgĂ&7je,oZ!bab;M$C+blq/} gTf>~bI, CPvQty"M˗NYX4Jꔯ0X41C<vq ˉ)lv7wа,b:t~7ĉO}eڷEw'<|[Xx. ͎:f@# @,H"HCt&,P(B Xw5@TL,V />!8~X8E,ZrX#-"ˡ_J? RA[.kR[mA݌ a%bZ$~K(,''۪X`4&fˆ+;]W>"HVQ=*Ģ4z޼/|5wv.J=+ȍݖ[+SRp8`}@G!B&{߱~YR}{_P Xp˕O MbYUdRq^TRXl:ڈa)0 IDATϜR딫0X!%}!8~X9A,ʂw+ FZ@,|CM\E? w̧6*\7&„V"^"rbqhl:ޭbA8}P ?t\mط&"7EWj3tAg,< UA $nPDJ b U}zI KE^`6Ԁ?:c4: rqh`A4 ,P*=J}f}-EI-[4cqgn}oθ~rf#eM#ސ1ŵXXb|͖ņznB5Y1hX-o];"tl6MSDmI!@}//XY [<8}:,̪c tdG3 $ D,73+,:cC/J8~3\ѭA`vfJX~n9b%<C`0_&S OgF}[? ѷ&7Zʞ AQ2 UA97(`߭ǂoݏJB/kR@zgHmn{,Jt#,(J3g]QD\Raڒ2p]-$n;s2 |$(hYk1cK^/Wb(\G3[JkxZ `~؄.6?LDۖ &SݣH-3BH7gٵ‰K_9ՀU;oOٰw܎-[d~U( sK떑,}V?Eb꛽_!`Є9 ,. t+yE!oO- ϳi乂-{2s0J3ftFj]XًH =H[ ޠ&s,9754@T*\BWl;0iHyά* @MuJ7.\^kC*Z[7"DHڷ|`+Ѵg |dK=ZX,f,vݏz=cXCz:0zz_HZiɰoL[F,EfǮUԜ~y oTh &M7:xܰCHR`qSDG`G_\Ōݮ[>oUKƪKYo!~ɰVBN,Fm<HD+=I'Ŵ70_>mcn\%C`Qg^S$Z)fWn u ,QSd]bW9,,u|W ܋U4A ^Q 08Ny+移M^kSh#2ɍL"8s- ,xN"ڝyk|%:ڿ$20+~~wPTw"'f,`zՋRٽsƊvE`J A$ZZ w^|rC%,V3EvϱO ݇/;/am@JL)Vp/ l; iH`x$^#Y=  ؔnUxYx$T:5NRaZeq с-aE,~7Kw\':d!7y%J=ZX,f,vM~F[i_q?Zd)Ra'=ʇ׮=u6|u4[{R ׵xF̧rEe?;Jy|N1IO/{Չ`?{W5fHlzrvz·6Dקًݲ᡿n cL`xݝMQdcì)Ȅ$tм6Y~%3Q3oO`q?[Uif:97Ȯ1>12J;9S|3/nuOL7ֻ)%nYX(a񂮞e3wз;wr2_/GZxAJޗJ Z ;V'zȅrzQ QBt^(`6OPTCFg`QBvXT|`=4LævǻG|k ?,DZk,6(:>I-AE,~7xFW}`HM K=ZX,f,x!+i=1 X?~mPKuzE) ( Qx3b ?zQH#=IRl>HԸ?|U÷Wꇿ,C1< qDw/+ ḟ]oX^ζ:g0ofyQ_#5[$}pY,,/U;,6+҉f[XԲ}}o=汎_e}xQ O+Zfj?X0i[pMd ]5i֗>4@{]*E&hp{)n(/;KPR X6|v@)ՐX%<т$Y=  09i}OW*Tvh DZeƞ"E#%HůƩ9Dv *=ZX,f,xSpNx+sH/j}K(pcΣ̩s=0eg[ <>sHbq,xj̧0oj}0 qZ-$\eKs;9$SNl= t!!`A3k)":^0kU>!A/aH+#Xc-KQriᶢgQE ɍIq?˕DciH+~-c 3-XԆ "(`QimRd2iU7CaۻgS.:.e=g77/:>$ *PE K)z7h`(>>a; =v"%*ߥR3 ,j?ѐYX%唒:#X 䨦N`փTȬd[J kT"PDemd OHkARx\5xAV~l h,C. 1|dS"M]HIJDlI6&LHUX 6ŋ"J_:O3 d,։5 %M)ອENe^<;v9-ȓ;jv}JAM.qIhOrZs\ϑp5oE%Yu,Z޸mK[-sOa51hx0q3M'v+鮙Ι#oL)~Sd0/ƬʹnƬTt|-E3p^WƉy1v ]R]^$s>]`_̘tvOLzg8sBW-~*w4q@XnN= d,këҶ7WNqn#,:IJO5 d,kC{??jWV[UCXrFT ` aa2`ʢͷ[Նu gmpo3X@ VZ{u7Fw۝^o`rWK\%,@ d,(,,@ d,(,,@ d,(,,@ d,(,,@ d,(,,@ d,(,,@ d,(,,@ d,(,,@ d,(,,@`3Fa2Fd oRha-}S}?nmvbSbb}X cq¢Sݳ.ƫeH|>9\L/Gr;BXa !,rga27/,D-]L.sUj`NDE a1o@XGn#aYX c -ҍeKiYHDvL0tN8DhW%,,F[! 鬘Y[DX.7+]` d,n^X(9)Rd[eUTba]9F@ ,rPɳ\+ȤsQn@X =+&,5 ,aZX cEp3 O\xԒux`[,LXt'&eMalD6+m]gzX cqxmOc  *-4˜E,o4mTXf-6>M%X5w@2EJf]iLlҥс9,~T6y%Zyu[6A} FdlLFO&;Sы]4B+ wtIa{QFZmn<‚R%ZCczM{ ,<$&<36Ɣsaa3~˘9Y،לMm*Lg7vti E@ 0ن m)6Φ@v"7%,w,YE`ѐgooE4 Z Loxbb3`p]o&>, xv#VJ )> KISA?w0!" &ټ)Bwr}/E`A`Kv`Wz+?DT>5pyd Jx7aɷ{E1*"cz/Sb/d\~g؂}ΦS)Z"m/!按|0b$_PES&oy,UP`[&\g`qK˛+[Ev4~iRg`a6 UVz.O9sPOd_sO+* BOIe ['S {\`#0ba;I)tr5$ߪM"mU7yйXkMY kw*PsA_^!Xh-YD~c QbԫjqzCR)E`z\25௦%Xh8cay_ ,Da`E)_Vx&Flp5t+U3[SH14YpBdl&O}m})۽&]?m _־Q}":V,WT`!c  Ӱh,2I!G% ˉ4,&X4PT]╁EM%nSuvAu*c`1G[&SVD>HhŨG Iy_60Z1Urrj Aj #̩Pp4gJ2IL 6/:ts9m&{j%7 H۹Bέ}d"yE,H2+ XXպ@Hf]ԕɃCoCI Heq#*nRS1P,R6(Aj聨zшN }Q,{掌`Z|0Τ[af}n,\'`~8WءfN IDATiB0"ȃ`a,ZsqxX fR•`````,`F,l6Ji}#F^H^ϼ ifR!X|Q. [bP^q%.UW ܜEΧшA e}Q,{e?w, `R| &&ɥ,+'Xʪmy\ꪛĦ,, 7f8ha^o=1Oͤ3 XXmOVI2;_nFeBtQU!tT ]QY%bfK:XPy_̾Zvȸ=`QUz\~"Qݽ fXo3R|d/D([31:̼cw,'-胺iP|lj`a ,"xPOQ7̤X'>c B 9!?y}, 5"ƢW }ѕ I XƇb)JRU9rBe=Nֹ0b#$ξ;~H,pvU IM ݉`R0r/tW˾†ilx'W~*X},,=کfR•`````,`F, u\, ϴ ~nnPQK W%8ʏ,fEwdqX1s^Ǣ8=8}Q,*{e,{ ,ȋvXU⫺a-Eb'*D*I=FX!Ħ̸ߛSLfQk7.8gۿ:`bͤ+ XXY\A^JN8b-OX|,\=ftJ׻-+rX(N_eD ',$}a=Ul]s %[v!X;zQhr Y|,\ IAC ,o&MQ >21m6C/~ztSR0 q"X7?oR8XVi?5oϓ,0!V# fս-{;J2X.K2lcqoOGq'[HTn0>vZ 8Rɬwzh 0Ƃ Ǿhٱ1=u,M$9fMyn|ӑ+mO=  \ /:a{mQS?yO}OND_5_V(31].7鵦%`1C} *֤bŨGIn^/,7]7XxW✛`"v`2`\yn(·/گxMZP|5hx2ɵh-0r]z2ֿqBDXW`6<[K d`S|GvE'GE @1>PR F,`X|@uʁ\.9ݦ'by3~y}4}`PI&LBJS Ȝ55Z]:`Gj6zt㺱ldbb"$ruƤ@JZ ,pm\,<妃EkFz%`Q^JG1zqKlv,$ jZE4~zg6D%h[i߆\l6ܿ#$ۢGt Ƃ>iO4:{'ނc.J֡ o63 ԃ (ٻ0KN-KKi@:C@_a4@0XZo,{2y⍒HgxKǻ;.n,_kwm}]fWrzl">_0đf=.J;j9p,4|G]tؖ]^LE?=Etp0{&V:D_,F[>(}L/Xԃq1: 9r:[2x#X`X/XlnZMBM,:Y}BRtG4'*՜yQ9*w]Y7.?7jʼlMfu֜TmȊ G`4c=$"0ۍ[:Mev V'^f{ժj-X`X1X$tѝ 5E@<`oRC_2n?x,J,uSj =0{vnƢ>leBN |"gy3]_t"vJy;_̴lVod`5Nb XNtdh^hcb7CSj?>tӲfRE{EFZ*X 9Ŧ)QvQ,7|pJp_Dž,GQ}u=nyn7"Acb}x=zU4b*m4IT,Xٻ4=767ڼK\'qnɷ+C>!9>mI?*!(ߜ%Xh,4 p32ܼ.cEvH)538[6iXó`Q?Ar9'sjԖL"X,4]p!: yK[Eyڥmy|]ro}>yb,(E,BFX W dѠrLWaTyRXmb-dh]X=?;{]l,^y*X~<^Ny+Ti>l* C`1Z,V.l ­",jؿ`^T[mEbn,"),.>IXŻw/Ξ/ krţ4WSHUX8IiXoH#J['Ӫ`1, C?.jTiڭ9.XL꧘34i7jp`Q4ERXJ ,Ӌ~p->X45K^ߦiH4Ʉ\0픏lEV9.XLX|-Xfai\ ن+]͝E~5X 6Xh,4 b<'vPCY6Ǣ49zX~]HW|ia%Do> >mc \-chc߂E?b7t~i-aƷ~ ,ôN/"sIux`1j&X`X6X[}MY"̘vZEx?NÜpa܍5\$3W|7!x}< ?CX1 qx:&o7ϱgb<8Ӹ=1GY" <6Hg-s( b4 E`8$VԆԢt'O|`_$uh}CKد`^2߸* 1դ@]yo HBcqoʯA-Y=O69b/M^ac0=*H~WXc(Jj WYdث`/߮>(X8CVЧ[xh,NBH~{qIX%BcwX g8fEd;ذxX5p`77k,BxrBc,J' ,Pc$"d5_ $X|4?X%⨂EX"5l,ʍE,1Y"}>Z$`wm>x;6E(yic)k,`V(C5 Ӑ+`򈃅5Xyc`Qm,~o tۿ5ų/E al,M`h,>Xji, 4X$ť,M4m,\X$ЃE6b,NRcw 8=-ovx, ۾I(X\4oo,Bcw icW8`2z{,7tm_ U(^Xz1z[ E1ƢXdc, X<Wn/1-AVٻ8$ MkChJƢaX%j`(^i*36 !2W ,'MBC[Yh]EYX>+1`QF`* ZOvȂG,'ZtƢ6X5B;,x4\ IDAT.ŽX|RBUS, G,ԥPjc0uZ0k!|-!XKR57Z׫`Ƿ`" v-ԒO(+  C( q-Jo¼%X,`YkmB!XѡY U63>Xg,.X$,! Yh0g,}gI0ۋZ(?dtn} %X,(X<`^H.),Z( ূ꽘ݎo!XD`QovO2C"XheKɥP{Uf}`1,PfZ U,fz,+.U @`n7.OcHB k<@`nPvj*E}r-1,b)^J6`.$fk,x4.z"6PmтX8+L,ͦkm=XwRmeт`[,PŮ9d Yȅ<@`aG, sbW $pBZh-GSb%ݰ* 松Wb!Xz#Bhɻ~Ģ6XNAk^kŲvɂG,+f)Z4msml_%X4LoP%  cHX,2Z.X!},E,#ye77E(uE}|Bq@F)c+E(S$W|)bY+NO\qcs$X l':b0B,}`a,tB oFVQg16' WZlB<_T6@'x 5I>Ylx- W}),nbN0bn¿?nhC)I8ť,M-b,FK(YG 5Q"q]cWܚB8bzVX# -Nov吅2eQV,9N^ZĭE:pє1;9Eڊ0},ZɈn%Tx ni,⍘8ea,bu,hqq/v"PYe}\uRVBG,Nerv[Y6 5!d/T8ea,DX ,"--p3P•e v#ԪYaaXT턪W.YT| p,z YPigz“_'.uo)mEYWȾVf XUEtĢK -`Q-ԫ[rb)1 [,ҢhHD R  s"*, U/`QL,ZV▅Kee!WC9٢(mV^MLۊ~b6BP;qOB {*+ {~{ YϡµqJl ?1Xo;YYQq]WؾX M_&, qB=J&XE) yVEYAj<\DZBHaʊA}PB+* ŋȂvշPm0d5KՇ &PME,|[! Wd}ziƫ,,/|/3[,PjjpA Jʊ+|]!x!Tu_B4XTH* s~{YVɘЭs&\$ald'#X8u]5 ),G+ M_B*XVkabU~bpBY"j-Lm1$ er,đ=9e*l",\iqrZy0CGx˲EIm+ ;_B mbO{5ڝP,Ʒg뾅J) =SYBZ峡P "~"*p6.Qخ"k+"+XVB充%;:,#Ǔh,bnFp,8&!&dFtWվԥ6ZHX{jnoQ,ZwۏfV [G,ef5h6-L" ӝBRjI,vEZzE\POXd'^Q]>ujWb(dQܲz;>E![|)j.^U *R"NAsPW a!"{)YJd/C50 EhEna)+LUZr9zE<,RljoŢ< UyB߮4 }jaC-ye$0όOe7?Z1nm/U^q^ƓP*X\SmW,\B%Yu*% f_(7!ZEgu#vQ|X)IUB+{۶W /X ,IڭlŢv,T;Y57b4Y n}D U-tPBşS)UVjE<e+޶B_,=0 u׷kɢf!f.E [-?))xT}@X|8P"ՊBkۺW,b$TŢ'YPiMXPB6[pq͗2INV.W8z;+E`b13Y5cf,Zh᫅]z6̡UZasEW f+Erg%6Y5 }*6q;EZMn."7a1>6"ޯHX,ԂElOxڙX/NYPY=ah Zrl,~ұ"<\+ҙܶjbYr[l깈E=YgHf"2"[6[e,_ $tq_nY; U+v_^Q]ܮWXlW,v=Y_Vz"6-Ed .vQ6?}RT!BjڮrEzo+*v5XVC,,T,Yf5YTEZ$?)$0(bHbq+Bz+ ^OVEuu{bJdNlzbTtJ-w[LFO9MHBjŠzJ(5bQ .,^aR=7YhqBtQ. fM&$TӲUXR _Q j, -޲8,% f1ő}B5 -qg R.p ؙMfREx Vpc +,E(,7,0Y⤶h" DlqPb 3)*tPCP)WdWăPf=&y Cfqn,LHgsyZe<._13$NXH0bnE:+lHW4`bѓ,0Tf,Y\]tۅ)F/p x&tb" +9+̂57XXg[ɢjf7-@T [.f<8>y0Š[+*`ow~[f1lpP1ZM cP.^xXeBt"GVە6WW{PGzoXL,'g C5zh/j!j :wՊP+d"+WPsNn^,eq b1ev*6hER+-b6c*CŘ*Bp"i ?(Ozb bQ' OC'fE jq EhlR)e!UXk,Wd"Wm}\,$ԖBw+& c?PǡZ"NE3͂.6|bpGVjE5WsP+~l{ż`ԓ٩f1LCբ)[naFy:СžB׊1W1^aVٰ؞X3_h,cQ@W}QNaRʼn ٭pZƠBڔR&an[K-D+T0弛W^q(R0 )T \A}0Te͢i&ZȁT-RPq0zUS#8(ťA+LhzE{b ԎŢ,TggMjZh8) 6i\&t8A+Lgf~EI͊EBEQ-T( 3Nv›YTcE+3آXd}3BEQ-D޶prQ"%"F*lPV1WoOX[(ŶXK->mQESC IDATD\iS$UQYq+n՗ʹy]y/ <Ybkb5+uv}g1r"h4.bng"k%*ꪨb*~X-NZDmEY+I2Z3amFYEi\uS")b,+v,ŒmEq |٦w*h+£E7-ZqQECD(򦈢b8+w+bb_ZmQEk2Zi4E\b"/8-¶hEQ8!4`HAQ4EaU4b[W\2,o["O-q2xyK"4+tŁ{b,"hѼ` '6f ]q]3,6 E-FPIEE*Y6ij,.b51v$0{cCvSQѬ7ΊˢͶ㢬V`V0#ZAQ6EXˊxuXlYeѾZ"hռ\#$zIQUE;+z׊]q]<,Ee[q1\<_?DE^yVL+UEU83`^I4j^TUYAYlJ*.X a0(PYo+eJY4b{[N)UQeŇnVtŻzZ-V"v`[0#A*֪bϹ:Y1RCg*.꺈b1vpl` a/{*j*.¼h;uRDQVǷ aC E/?]͡Ѩx÷⬲89-YqzW\5,EC_aS⭳BXxVZ4"f_FQ~0.Wp1BX , a!,xkc~Ta!,BX aa!,BXHmBk , aBXBX , <aa@X ,  a@X , , a@X@X , ~ ^׎N\IENDB`mkdocs-material-9.6.4/docs/assets/screenshots/content-tabs-link.png000066400000000000000000002670511475306445600254730ustar00rootroot00000000000000PNG  IHDR XSPLTEGpLAAA?R/NUՑܳ㆓ґmgw`p»BU\\\#PΤIII횿bbb%^HW^+*X啕Tbiİ|t˫ɷEr̞쌤;kꂙξNy헩cpupyq|;IRuɎݻၟepR^rlНdбY]uըۃsTQ֮97ر_x .ItRNS   "(&*-257$/KUZ\ad%,01:=4@ECGMOWR^9QB>Ib]mO IDATxMvXa!vK$ j ఀ"ENYf7-_Yk_|_hHza!,@X a!,@X @X+a!,BX a!,BLO#2 aBXa!,F>7rkCX  a!,bI˸!,BX  %5=+T_zJBX ,4h1L{ea#)?XfZca!,BX[CBRϨ-TEeR̜z3Fe^< a1}V4pXpa|bpV6`MQZ--fi?z3e̬j`qRqĴ , ꝼ4 -vJX ,נrQQT'E}E_cXҠꝲ4rui!cE+r,-c"GG.K%űYQeA1 7wHE".AZL8)|/hCJ"cKPM C#ѴH]Z̢+ Ѩ( O[V$ȤEa1ZVD"u9@UɋH\biqDWD"\>$XC#ٶE]Y,r^튢̞!ȦeY޼ͰHW`Ynaefy3Q骈DE>(F< ġ`\bEAYdRS$ɼH1ib(ˊpTdb` x]0-E[aи*REXF-rCX=TE)&L7af"EiPtE<+Uh @=T[DbIJhT5T%qME7--]ˊ~T$B$v$i1ZYl7dE|ViiB՛&4"u[bf+0+QH @1ȋx\Ӣ,,mWeE *A1xMEIZM!e\XtEEV""Vc$ѶI9,-XĺT(+:~S${"q_F0/qq8E>eq(zEp\qYE)21Ts[E<-:CE9☮+YqP%EQK(P^"0HEТŰȿg6YяdRy$X+#\(KxS_ E+^"%LE-i+eDX`HVWᬢ|`ʋN\-"=,&mAEֶY7*:M q?޸ N]ݱEYZ,xl+~}>~=_&3};-.v"~q7H|Z"vqŭCy8eNXw jBW@YYZDCEbΰ ^(܌VfyE/+ξ:PdzpZ78iX+ ,he񺵰\af3ŀxWv8ן?48,EYW;P,,N]ɷ۞E:e1sXvbPmnh,E/X,:z󊭰ڰgP9;,jbh@5ӆE͂En',&,vm!kE++݅.ˢ7xڳ[-,J.Bv{W eR3sv3P{PyH,^EkaXc]}W\\:Pif͗wՖ "`Yq),&,./Ѳ(]%,w{7JY/C.,`mGW e-5F"0b+TE,~,"ʏ, v+ (w/8eXlx~WvůʅŗOO?կۂ5wnf ĂcWO'߾TsЬS5EŰxHݞc*DzxןYTaTAX^J+~uE*,>u|TstXy¦1X?9 ` ކ2/,>S{Ür?mqSY|dn(/B_i Q0M" se ."WTzŢ1X!NRB[bfԬ"T^1x([`SmeBY\r9H ՋPj[[ 'Xlmijd!L,,FB/B1<'KCr?S$B 5` ςE9)Xм E' y(GC UmpZg/X(b1ۦƸY@&d/Yx.bbzJJ^m ,4b[YdPj.lBaQek'F w5daXf!$`èY"&WžNda 5.QF5X D(i Tg++5 9 `-͢ e*Y4ہ +z X4-lϩzϱ#{mLf\(jBp/YLJH Pbb{ٴ_^I_})s@.C0JWA뺕u;, "ԂXX  =oSŚXX],wY%,l\Ѭyn{>=| S0\ ?Xr|e"+zI9~Q׫& a2|,vY,ĂpJ|Z.C%jK%"`) ^Wp׍|,:6 2 ]´blbrJ.Xtt O&5 ][_J"Xb`SR4Xt-^ ]+N6 2jbJJc  ClOhu6 kBB׾=;`QP&Bg,~%`Ls qLRG֕,3B8kֵ`!6XZKfW(CC1XoB YED|EZHk֒.Ԉ}%ʬYEv`x!J5k'C,XoBiG KT,`!YG܅ /XTZ,\1/XZI`B -Y)% "`1 E"R?u^ ݺ\XKqxh e8;`Q3lV e/Xdx4Zm5% ]( q&T,m1X i$Զ\b'UPmiTbZ abE+ +JBi>Ptbv=\b!ބ*Xd[ł*`Eݲos\tA.yE̸EaNB(X,Giܽ`!,&qମ{PpiXZ,K,1^A&,tB8[mHBk6y! SE'm-mb` X`R_[dOY 렂/,t%nZ(voCCL[,6vȫ;9 3X73ׄ?oowOeu,Wgϒ(:_gҏ_~`q2=t?__]}쟊ⴟ\~ggW?{g&q*RG3HJNe)qP 7 Ċ;@/ ,Yƚ {o JԶ^~nU9j7{/X nG\ԕA⢪dNWs:egg[mth( kЋc'ڕ/ҟEۛzEj,:'`mw!#%yH[(4444 '90Ύ~2͏ UHYDnmNi@xbId S,#mn巂E,vXף R5b0?g3\?4sB^V͍Yf;N??cЉ+D8 ,۝EEAhu,m,B X XreE@CCC`޿3+S>,bG^CMmݘ3H@0>X;  2ҕBYz9? ܥt>F ,椿 (f#$V04}|/+ap(sEAȠW Wa܁2?`5ߖ^pvœŏ?Š(X4ۯPm  /X8haX`&p9Lt,8Wcb[&g8Xe>ńNXlԜn8X`<  ]_/(}>Ɂ tpAJkB9Yx$g(XՕ"̲W`q O@CCC{*k,"B? X `pn`A١ѩHV[itay]jfN'e3 /7aTĤP 04`OlśdT{]"/x`.Rlx_* m~U,W*hhhO % _܋GŜ9AqYLr&+8ri`11mQG([n.9d15|#IbXxStX* X{,,Y,^@3 !wI9<>XdM(wgA@CC{JXqY47fC!X0"c=HѪ`xʛ݅#SN C =PrzEγ^Fa*S6,?XTXlBEh$a`'bBů#z/,~x,~o"(Tك͉PI E|>Si%Y.lK/X.9 {>],TW>"4<9X=adqVdq$ (#^z,(XlJ!vM:(XT&z=O[e;1 +AL&bQ sL:,:,zPieF3~:jVfG{݉I[Ghhh,ګ8!ӧ X(=(AM^!KS%KLuhX {iu]K:&i,b8psTfT` ##J$Jz5T,RuFdooߪūf+8t`16(UكP2TRO[xT(w/,оm hLT! #Ȃnү`}g27aZzk m`.5WIE V(""2KN)k-]F7Aj, E"j)6b{b'SNotYe~ߗ֛=gͶ%}Q(Yb– %hnZ  %A@CCChv(:r#kyw` EۿۮTg6"$5> gx+X`R rg1&0 d8,T,zex9lVɖt1{0 gd7 !<c vfxa)\ "/ef8BF,B+,2 W<~EMŪ0ի _daFBgFH{&_`Q;>v IDAT`љgkOEF0nŽ9BP`'6^a4}lq ]lsm(,KzMt ?1=~ nb B؄CvXG= =R X9NXS2߉֟Nh0s jŻׯE#P_XXBÈE(A`PڛXCLK GvK_{;i 6R.05)Tx`wgJ%asU'!MT ,9[6%;fx?ACC"zbQ Huu+D#۶ft`0CZa.Sܸ:Xd]Y;Y,҉шBu,< N 2]NFUh[f5-S~ÎGa fҬ*dp9WnB>K,GG,NCP:X9?~PoD,@*C)KzyTM7x6[5G]reXݹ'dRU4[jHX"V@6`rh@(w.ciw=t-zf!USw`HJ/l xa0&{-  _ sVR%Oĺs9L( hW`g[jb2âRTf8E =_o٥Ny '~r|m=ЯOvT|~Qޡ߯9_Cc|{C?i過dPnda .q?^uQ(w b8eō65 #KYP/ǡ7-^C:qYE׳,{x̖hNn52EbqEw`v#oF`ѲFtѦGW6y p3)X\)`y$$'^gztC`Fb`1*taNOIlgaPZC|t{,CE},`(IX4K~+X(dxݕHV}?vuN2cKvcfћ](DFĖ2@ Br 'tcٮ8煣am٫>Xt}E`wNy"`zf`^R+ ŋ'cBY%h,bVَeNo΅,"ILjEE X-EGquϲZm36XR  ,bfYclH@#ORJ&`>>j9%'_AŴә<,,@M{%- ev,^T>``m,xQwXHaAnv ukn\9<\jM2 ^TCO= en@ST3`+eR!<!o@E2m/7SjP^w6c13ĄBr"iPU| ~µ*5s ŻWFz`Q}<`W,jjPBMvE1j/`˺a`!*ӎ)±Z={NYj},l t=@; y1 [8TBrs:B"K?JR),bQV ,`Ao\ҏr5una,=qyJ򌛑TlF̍48βLE*#cX,J*,[XxPBQ(XXX+C5 5o ʹPF[b\jǂk˱ ,dpBy5(;8[Ńԑdk U|I8dS5A^A=Iѱx5!ŷߕ2XB`fb^k!~HՖsݱ \vuٯ |#1I}1n@݁./IslZ X4u_C6gu*b|,ca, U` p,j^jq r? s,:UkR`XhĠ!Xا6->I?"SL{ZT(ƚvP(p,ASX 8@g ,F2fpx8Hn r,7mӇ%AH-``ѓ`:mÔv,$jE$"1MYY3XTXxYTqE7:;$OmAhSR,c+ߙcˆO,6X l(iWc$bİ,е_AKג`!XRgG@%XrrP۳HT0%4(B^ B>8 # mګ[(zFo+588jxɂ&XQ '``Fpr;o{Bi-, ϩsP_̝=S v{H U@ I@P/[ϩX5=TF5YKJ 9 ,F5*W!Ч[dYxn&ZDuW^, ejdt3O,x 63,9Xt5g';ȱNp>[+6t *bu`grjq$}G֒ !&nE.{a@Eщh,J# .彳ϲuNi Lw`[ߺܞ_I'!*`闲' O=lȎٴڈ[ ES#۷mWbN TDcz>>mPmehYX)8O ,~,.8g϶C YЃ^C<|/1 |MO+"bAi⺣[c 4N{9/L9Ku>"^ݬ/FXn [&0@EmX'YS,&h3|}U Evikz6B! zV#o[Y8"Hj"ы}E<×mV( h`Q۳rY[ޖgשp*HYZ7J+2S- I=Z5A`Q,ؽ#PG! V:m, -lvg*ceK'lVmſ%Zo?qJBWXR]  E&ܱ >cW}>ȃl Cts. ,N;2X7,HH0,kA}ڿc߭ؿz `< \fVM4QнlV\?PnhBEq: ,:Q,Jl Ȗw=׮8p(0(t=vj.d66c_ok+z +v%FpB:,,~x` (8S's0ԘŴ񜯮}1l :ÁG>Leǥĉ}`ZFӠ0PN ,β,˛b冞{qq\`!=q[WP@@ALd'ÊvjG!$* gzڸ8K[i\THR)dQ$  jϰ Z–D-K3j&ϜN ?<;|sŵH\29DŽEq-# bŋbqBba haѨ.<@XfԅEX?ւb5æH+~ϫ^ Nk6K yK+# 'OdPa1ex`_ìO-,0a.,YvqWWw>AngdW uv@y:^>OM(Hb svrL ү$+~ ,0VaEy(bQ7mbݫ/4,RtӦbP-S9JnMUo0,yok-E k0 â;bHgJu$X.~p,cB)vSf++,lTTs QT͏\J4`c^ 5ڰuv+ƒg:޶ ¢0,2OO,]WM>Xo6ERL:˪mƏz9yU9 yG(Vyps,_؇E{tbaR(}+@XLb?xZ,ͱX ?,2ݺ[R DXb^,£SX< Z,X,& , X谈-*,dHiXX Ma [,ϒ s߳X  AXBg=⋻wbAX a1kP"ab7q6Y   q abbsY@*"7O/b5`u0a^ގ-ߤ',bmbaxMXAb1}H[XX7,,abb ,,abb X̰X7}tpawa',X,X,Âł:,X,/+gۻ[盛޽wuy}bX,VޜPmNE]&PYq}f±XlHYlPmq)y t.Qq}b±Xx}+u%WgUWX8UYHZH[\v!U!YbrzB闉*Rٶ\'Du[ bqbm#h @$J^YXS]qbX,UYiqB`B;9Yb±X_]鶐 R{WWG,"nBY} .Ί,cϮhb /Deޞ\1fY,|VѺ B2y}h5gp,;;-VU[0\EbY֊ bNlVNY*$+>|`p,-YF:yG±XH[H\) *Y,ž88@Y_:X8.K% b$,,byYe>WNK2cX,\8X8ePcX/LFE*tVUg+$,޿`x,",bXd!i!fO$,\eS:-bmw+zuÈ⹄t^,TW`_, Z,P%,6,], ,>;Ag b`Yl ½XEabb ,,abb ,glzf8bUK@x P F'$ E` VPlqt];NG9SlqPdf3c bAbAb[,H,H,b@l -$$łĂ XXX   bAbAb[,H,H,b@l -$$łĂ XXX   bAbAb[,H,H,b@l -$$łĂ|]=ǻ0K|Zm7śXvROs/xww# 0)Jm. 7~/~V⍄7Siht1+xR4_R^&ܡpbԭ13Q,H,H,;ُ:#ݕ2pmOzɇ]ױWLr:Zfb\,_qޜ:r6łĂYHQ˺'*J(GeiŃN-C=JϊEBƂWywìEX*J xj&q@i(Re@z P>SGKS[==.+…j5z?fb!qE"R,l:3*$$bѱ];Lծss 3{_ȩe]đZP[/xuX/{_t6p![{ԈE2%U''G'a3ދ}ĂĂĂbXo{Gm/~3(92Ţ8ס8Nx* |s7CqrZΉ pWOv*"$$ψd 3ygYeodg-T`ep/.KAAtt+e7ܲTȗr*P޽ \/#, -4ݬ&7n_v#mTr̛ӻ2aIxWߊ}#6zɶV IDAT >  B+sOs#b1RB( C͔uX YSC L|:%oËAzzP7N3nb b_,٭)~y{n X+s}!X@S?s /KRAYfi7K]-KY9^fCF, 'pTW9,2-yΑ%Ox64R듼^/,vv# +bgt/͢Q֦l/bήI=h-Iok-6N m9x/Wщ e89Yk Kٚ4'P`-ے9ڞS;LEXx ̈(o?y;T bY(_.|oy2S-kQ^0a~L#XŅK# tbq8 ng(ث2yfel ڐ I.t_5ب&o\`Ou&ĂĂ"R,|IT9$ႾWa R$u].Y^ջRk9$ G#*#'.鵚۩=p ngenXHk;)ݨ -c3XB MF*̒XXX<+zULč8rb>pboJ_W*%Uզ|-`v"/Wkߩ=~bq^uz(X\ʐc_,SIyT,DmKZnQ '/X. ,鬈EXAq5@,X BJSja4r?/YKޒQQJ$u̵=9hӲ#ngopdokX/!g ?x0㎙ ~g:#bAbAb)s#C2eZW<p/ႈbhȓ\k9Sb~bA Wr+zZu+J,VλvV wjC i_,z7'/]鷽jaĂĂbXXkS?T=7t'_,Jߕ8;;KX5F@M=Ou^W~H' 7,|)Xvj&c[k'bQfN~Wu_ZӍ>@ۉ *  b,wJnt0,_,Jҫn^vRN' e%FUݟE(v/vTxQ,_HI,t[v;F,يA\a((!#3VLHLĢr@v`P  bcrڕՒE PARўGmJz%ӕ3< Uh*Y[ެz= >*$ve飴"F,ُb ݂؇*hn!.'$apV.R`Kt.:<=3 $$}EMX DŠ:16g|-놲rۤ.{x|LLbtB?4̓mݾJ_{@^t;{EX,t6"t{9B,̢+/2.ylEggC,H,H,\טD?"ayӶ'Cb1ZTJ۔uUr]0BM1'&wdw<+2"qt Et;/D˛rEE>@݈EVXC  /{6ҀqBpТy֊рg%0s+".Aq _/zfrݪ-8ˌB_ƙ4O OA:TD q#^gM3٥zz[yūw|Zw?(XXXP:XXXP:XXXP:XXXP:XXXP:XXXP:XXXP:XXXP:XXX7G0s4`AcAc4\c44@`AcAc44@`AcAc44@`AcAc44@`AcAc44@`Ac1_fS_@9ѿEt `b~[8_YY0441m a/o<] M X X^}ٌr&h,h,>flOE|Wql@~G#0p@9Q疉44q:,ۍljSڭ"wČT XyfXQ]?~K[/u˵x[LPV!%h,h,~irL``4b7ItxvދO^)DE2X-?-,`nEWQ]i(L$Ҵ8~P:yޠ)mtRKG+IW; m0X3>돔] kEM3~T;~q_g+턛ow7 #Ǩ|//[~i{v꡿kCZX?먠<(X4FE)3iG;<8ѩ3$zҮ&sd |,`ނŭR+]SJ\pciSJTF\|SL|JٻKՕ6oqa-/S"ЯMgM0-s򨠱"2\m$^/ڳ}cOk,d|텼n!ʇ$)͈R\?_RSqXɬp8OH6yrV;\;Fy Bt=u+vB 77%9zbV[vB`?]YFB`!D,D,zVYh"\vvjjyoc!^444cR秛 ytdrCoɜ'f':`mdfFP&?t0ņi$ KQ^cvDf&lĬ SNƒ-[M 0gbSgсfp ̲2bL(s#(ŨBٵ*\:2ca7? Xh0㨠((%BP)!"qJ 󓾍j"}/Z*`Qi4)B)lPf[`q'u°!?vZ(%uV`Ay wB<(bёm3Ba'R Q `VaTcqmکiW-l ?,lc]c⨠(3=׌k7qg]7/Zuw{^圸y\:p \sqE}rږs``qy{<}(F]b\g,#eQ,I{d]s.|,&ęf444fZl$<Dgp`!\9H46~Х`q~fI"gCsfSW&y 0?b9O񛳂Ŧ=;jY6֣kR7n_7i0`rbjqxp<47u=gKSD2fyq f h,h,fN9;hM5Wn;4= JL2i4$iOg.:$)II1)x@tC8 ҋQQD\HUʫ\yopֿ1tӜrh)u֓J:9%[oKLr6L,~s _]9-<:4sk8jnXfI,g{OXz!l& :'' /#`\_Sm<Ү/bmr{K/I> 9J X09'$dkM!UճMbI,؈>Ď{fټ|ϱ`&z/v̽gfÈX;7Ux``;}T7ߙgwH,X `{b^ҤrzFuOM"zM V9)\5[X;ų#"/϶o B]c5rǖoĂSlC.LT=q8"`GN=aCؠf{HO xTB$H, ̓зX 9}Lw#_PAھ.0(YbL|8N!0˃-j;M,T _vÜBw ۪6. v%:$H,X/}˟(*H,Xŏubߍ  $@,g<4R,VvWߘ X bƢ RĞX) @bsBUV_^X b ՈH)H,XXi$H, bb $bb. w.0b6$H,XK6;%ٳc~ΟN~X XUbдe.do(BKbQ6*?&kC-! @b=Ģo]kJvC*ЖѴe-z&Sg~1\..kCh$H,X4,w gܖ@,+>p+_XXelabqO X  @bÊE۱"OijC:5=-9;JC,YC $^*rrY߇ ߫JjlvN~\Un;YƇ )Wbē2f @bXLz^jG.<ZZvu]&հ Ml74z(r+0<"bu RDz0ꗼ9%˜v,Î^9y."u#SeT_@,  $b1kI_Q½"Oj6 "b(Q%huZwI,qh zM!ZipɃ(%ẍrNe#I1'W,VB)XW3H,ɏT}Tǹ*rI?`Fa}hIP   7nZYcu3KMM7I p5H,V3O/YIC ʲvtEʈ]ҏڍ1Q3R }nD&X胹"qF+.3FQʵ(״7 */*FlN"S\zF$(   }E_< hXb2VOJ,"Y E3'WV*aw8Ă4v$"rk6FTDBTH,5*BU.CabX @b P} ԣb!gJz=Qy3$ML`'}Q]3bAGr_H(SX$yŶa'j+m\T51bD  ص6]Sb(Be_YbOBQK^1 bH,X EL,\bZb1~<[=]ho_\s[3J o s?|,½&u]IU+6ÿM,Uʭrv10䖳!bH,X !O,>ZҠH _"vZM$EyӺK-~}XhWuG8yg߹!'Sw]$b! 5fj>\obs޾X@, $H,b8_ܴ'-9@, n](? o+뉅?̛/?qʏpwҔFK?~8C9hbGc;\wFi@b!~mhgA+Z,X'ϋXjNvWsJ,knן#oJ|\;j\1.F'Nb#"yhGɝI| a.jM5J,V2i.) iЭ6׺(D 0M7 s H,X_@J_|n;J>ܞ.-G,_[|CxO]M)޻FWuU׺د!Af^cj >on~=~'8bbb $@o v77ưSNoM]l8vpobhIOo\60'W9/]]6:-c:G5; @b@,n'0QǛNH,X b IDAT @b!Zm-?XYi0VcY<$ $*. ٙD^:mB, $}tT3T.mA^1}h a@DN,lI|ĈmңޡPRbX$H,Yj)MZchXvf; (V+}_}8X赂@,Xxz{[,oݔ! XB5l^B*&./-RV4x(՞VuŢ:RI"qZ%;Tbq B 5# މS'uzH ڢ*(:bbTB1L!&S|R,l9jfGßf15`aMӎ`dH,XLMUq?bTâjG u!ڐ7.+?JgR,*shTEhV2(#(\K\ - #"Tc09{j4q+ "sj!CydL"H,XLUú .t}(.V>3jVj"}"bj/ z n0l4V@, 9f3"L7g5<`l?3  $S&Bx.7فb1}Rb.W, nVebtGd<D݄, cE ۶+1YUcBȰ @bqOlQ!QRR"0?X, =<W,:9:qX$r% b1%ʵӹL^)DG,ķX4x83HIk4e@b~X.B㈅I,BJ:O,Dv&b, "˕2ןX{YXă.3obX 8kQ"o?SbTfm4,%Ӻq۩Y'+vݨwTh Ă⦼cJe XV* .{#5{9ճك%xEr޲/lQVu,2Ž~(;RSXI5yJH,H,n.3ӊbnAܥ:B 27bk~t8{FcT;ՉaÖ˭~x$eQ_g$G7 g5H,H,n.欘@,F_wM[G0*v'k7$+-jZbIOmMĢ@$$A,̜E|lC\pw], ĢU~ Š{ *~Kızi5eۙ/.. ㉏[[k9ҧ3^g e9-f b.>,ޘfiU&+I/4S^Fe7Y,nrA,%qǃoU-H]ӮjyxIa% `,bbpł^/ ўv4%R// BTW&ꩴelS.:8fOK`Oe#|˞|ڍP'qZl$O[ہ<_nOv:Ƣl Ug/i)3_޽^(J")evpvtTd!/E:^2u1X¦Q wkĂ0736ϋE:RSOͥU%T4^O+bl4ۋxVcb.;<5YznMx~XköTjkvXdwP?V;>(obWqrF,vUc8={QNpdG aloW}9oDZ~X NgY٭' ik*T;1~&I $2T]^ yYxS)H70޿`h!+H](O0U\N+饥% b1W ba^2Ƣ}BL>G X,V8BBU|>La8jk۟%$.T$sqQ,m{W_}]s`ѳBO&f_2 ڊnXJ#"c,̆XD(Eo05.KZ /j`ee|a$%X  pʬX,7{‹{!)BL.wsqbiY0hUb1)7m;;룵V> 5bЈ&.I,4-p 2Rԓw-t2[ۤ  {4\JAvsH0b|XiO{ΙvLMR~v~Ώsvo͇,b!5Ύ*Jr#@(~ 7qcHxTf:%bIuX1Rd{Ea;5tB7 IJ5"OFb!z㬓_EUb*ĺMy´;Բ5:yW#(g+B QHVF*bA6 ޲ERbAe޹(DnY_H,X@,(y㈺bA,Px XbRU ~t{$rZQ2Vx>e'd)'e%^T򒆁-%$<%QGt%j!rbNȟ΅WzMĂ㍈ET3X.zBb zаXCcn~$W(ķFbѭ(Kn'=h,_,bUsŢ{GDowB,bѥFQؠc @bq")Mv *k]X Mw'fKyEٶ9|ptĩ>g +ԩ&9Et[hBEڿʛ9URhrbQX)#پXL,kv%qUDbbA$ /I]~Ob@_/vޓ^򮳅#I,.Xe 'T˓O E{e@$^f7Le8m;ŒtQ) b'1zJAEqXHbTQи bDk.bEخިDU!c(> $WR,r;O%iY=b!R"-Il" IOb_5~XK1H?s 4p,WR5?yO j$|I3jE焍~r^[,DE{*t%H2W,b^x߅w_dlJ̽nFE(!ܠmuCH"( Ry;BmIc;Z,;D EP#.1cTTEgįuw*,h$+GX bQb|XA'YNt]WIdcD$>]<6a$60%y@ ᧮%QBLk웛NW+w\ Y%Q|+u)5};ݥGLv;:ID @Kx@g0H͕Fަq< ϊtV-Ew:R]X\0vOn+//T" 1],]i?.5LagE~^aM,A{6<~Z_,9wO,d ;,9E6~a 06ژ ʩ嘹X_vlE,e. Q_exZ;d?QjcK :Mt aa%0BVڨFaQl=j  UZo3z{fv"tٖl:>V H+緧3N++G_9F8!Z]ɷow!˂l;;JNO %ĂAQ=[Wa8cK9 n5`۠ڂ}/3H,XUzs~EkoW~ASzI+u#@k=b$H,bqD<\Z?ŕF@,@b$qY7׫Ļm#$H,7eF1[^E`2U9KpÊy4L,R!b $\VHomXmm,odZ/ߩ X] @X;Kpރ%)~bgXrT,b CyuX .XC'R,^~Xbc ҙ\)ĄsgXp^# X \G,|^Zpb% &L,~bz+@,@b\6MAUUSoE5=b>_lEZY7џ$ןMD'-us}/UeUȢB)Ǒ:G:\;QXŕ5bvgcaͽvv&gYgG5A~'t Ep^O[׺|^%W^6}6W{JReB%~i$H,h=%y{y0T&eT%֪U,⊒݂VRs=whyKl*OB!v{- sTOo[% Z7 ieQ}wfRCl4a=T S7eS0;9&Թاd5_4W&Wo3.\<ӥ1XDP X "I+z迯YÊ|#u /F} bI,;45لtz-4Y"*kb2"bΠD(rQ &IAD sY/d2IwAdw(x W<GIӱmW]k;L%-OƦL`{36KcAsIWw$ʊ 3 HHLcM֏HsY ]qFM]n\tС{5tʲ'H#[9$aD`'бIJhQF~&%mJ>v:A"o T3vwYVBj=iA 8X@,rt?NҮ]5ӹ+"7i$آo~@EǂY¼uҍxEle[i:6Y Y '.u]jΈ/>țTs4^.E5'Jɰ4yw @!wJjH9HQS(®P  IDAT p,@GfEf`n7/Wq|X;t6Om*h w,d)>A= X j OrnBՑ;j# *J,[EУyWXT, -1w,@ p,"X۱WÂń'+t, 'Wq,JjӹiNQ|ܿS:rUwpBXtM@dCSM&kѧ:{:Rp-ھ{f"t,Hv;MEVb, X@Xc=\mRTҾ|`a]etǢR I󎽇j^Ϸ C(XP@]zQGcT YԱʛ+sl]q(Ytt,&0Cs9?8  p,@t<9 0Z]Zh_\Y<aB2B|%ؗ`ײz[ztݹ|ѡDU,̡VG"XSq(y#C a~&xжIs 8  p,@G hZN k&SX(YSŒO]qH $j8Xc~`a{" 9,)P(T/ |WWȕ). ,X%z@m`jxFn֌8,,'o iEqY R='RnTӌDtQF'XrX |RbBg0s,FM,4 Z>"L@o@ECW}tt**={)p}]ȼŒ_q PZb?4cy ,  UJUhM"k.[O䴠(6ﯦR_+2n6:';XXQdyڑ8u!)N((28I73\/Yv$;~/aAv,ViC K~@Br:eQZHq0"QytuY_mJ]%5Ot*UՆXt'8$( 4v,"FuEM)l_ b,m=o &9FqΡtf2MsZ/._I֥}c& 8<Z8[o2RU Г Ǫg= c鳸ozFD{) ^C惒"R{^* o[Lfꗷ.ѿ鷻 c4/\'[ XT!{jIt8d o'EYY?8X%E`v̱ܻ:2{˱(dأN75,?&MKY+5ГW]"&:KR*rfQ'tv6/b&r٘$uwӫY){Z9@X/.17;K˹}}OƓD|L edBV\[_R[̔!Z K{ic߷'ZD!j1ZDBPڻՆR%^E{u.ě*^x%xn6y/ f3'#,|XX937g ʁOɼȾOO2F,Ū_/~MޗKc _,++fQ,@,TdqbBb\NwK(mr|85>h.ִ\` ;G b땧N {`oVb:T%XSX\˞ Sbљ*" XK ܀mw-y䓲ow%cF;ĂEYcxL$ixbH,(m_[2fhVhX,HuΒ7"}He.yH,H,gͩ:VPs\,.Ļxba"=.|(mڈ*%SB= &#ZL]<h/?6}?/MŐ @bAbq ή!H$(ⳮ۔m z_BXb]bX B ,oJ)B!E_EA]( sF#3e_ :aնsQwF,^BHwL/Zڎ$%xfbU!Xba= ?WR:[RWb<./dH,H,5s@,nQyrbL( x81[ݻ ˡwf< u@bAbpoez> _]_ճb^YӌZF~Z+J{NM‹%9D   +Urp*L{\7ܳՈnDjn<9vϜNJcYuu᷎nCdsT $$X,=TGg~sUQST4\Tuh+c%jMu=P}V}sS/b1ʳ    ,nޣuPu/,9r%߼hnM,\^՝(p:Hv'KJ)Fw#9g"X5يI* ̓P vw+0{/v'-8˕wdCX=6t"~RXŢ %kwH,w ĂྋEH܋WolbQڈŁ뾽%y @,H,H,X%jn'A,tby{ @,H,H,Xq%d ˺!'X   (ɚ[7:Ѽ֒XcNM;!Ău޲W efb _aq Tf&N9XQo!, ,?ZD-8{ˉ!, 8E!"SM>>?ިa:s  x_4PFAX8p,^KW$dSEDBT>2[*¡@XkYDF*O_ ao+''cءG ,^ݶF_\c7ʡ)Di6`ya1nw,Cab"(!@ sKM۵ɕ}*οxU(cZj^#xXXX_;TY$Q&C 7̌JLer(TC-꿳00.'T""9aBNkw)Ý6XM' S=Xa:#=(a~*,"rzD2s,d[x|(Hl_NQxs}3Ӳ̋xץeʓ6F|mw*$Q ~ XvfCkʓ+e$)|-=FXrJΦ{"7,9.=NNdsCuCKR a abkf;_y\}Oia(`›=Q6&Y|XԧJm̷c1X'}a!2Nf] /oP_^=`Q-}%,FcO*YZzEXXxZi0c(jl aQ}=t,'Jn{gWlc ݒ4+,&'o׏Y $ţh,,2PBa3z5`Y|Ʊ`9S}aʇ˷w6:a",bRX} Xn68,~ױdsڻ;#,΃r'e! Q b8V0v,Ⱥ$'o r"ñc$xת9rW.R{,MPm1j",fY-rr0@a[ Ha!2UMˣYc=ጰ7a~*~:a",TWb<ց6?LV]8p,Kֵm޷_=Br&R|ʱhG',T(i=*;tD?7qD,RXsoбfvnXȆ=" ๧~s*b{ŨNʅ~b4VۼJH ́T+E$2M!%B@IcUb qm։͊b{C+::vqӜۃxxa?,ϱXEza6c1.9P$cqhc7$1狗Upa{+Naiԃ|}-,c]30=¨:" Ҟ  8BUp4V)B EΞUK(DHX1XAjX\n32Cr|ء$+yv䆬79Kl\ Pq|B',<$FT'oټq?d}5EI-8;!Wrg};_(qu֚Ev cܶ^p s:;ǒ_?4"gf!uO ɶ NgCȮMiU,@ʖ ~ƱSbكEW\9oj&D,PXȝ"}ҕw,Y|,/Ҏ_S?![J:`ZsPht*0lT [Hg$&'Z~[$䷒嚏?C _k?^XGe~$؉=G'}B@α IDAT(RW3N{tob}B(EXȷGfw~R1>MU' qfag'Ftڒqrvҷvb,x˅ڒ[ї.{ʝFOg+~XnXxUu7)ë݄@_ %紆ޘ=L}ws[[M'!c ^ {  ߁+"C$,l&&mP*yk/O {:zs(iH,H,~(XD;#rzߠ  ĢX~ba^aӏ^=W7c|pbX|_b8Ro~*G  "ݢI+-y &XX' *MoX\]  kjv&_,$$ 3=b@bAb0X<=b@bAb0XToE@,H,H, @,H,H, Ă@,H,H, ĂĂ@,H,H, Ă@,H,H, @,H,H, Ă@,H,H, ĂĂ@,H,H, Ă@,H,H, @,H,H, Ă@,H,H, ĂĂjQ  _؎oSn?{R4F E}% 02ESN!Tg91ѓlɱt>9NݵB,ĂzC9Qj3/edןWL+-s0ކB}څڇ/oWĂbbNS!K4F `rl/./T!c4[c.%6~X k4_  Aw.EW N-ZI#,$$CB]^H 9PӣtX$Ab$mrt\S!j%[?7cӪstHF&{o4" J0ńłĂbXMaڍҬ|8p'>WnJ3:ivQ4l"V#ڮZn>+6-Gs8k;/_ͤB_d%uǙƆ8Yn}7]YkG{qlQqvneb/Tk8lv|-V*YO?4RT!W+{Mu~&"$$#bKﶧ’tͿ7,#҉ n[2Ď;iDT,l}߉_WtcVgK;vteu~Ek.JYS^fjwvrJ,QfI~WRЀx4jFø7yw LF,H,H,F !Ub݄0v* ?p\9u䋿JIw^QZ;:mI -FbZbpjK [m ΂=b!}#q.|vOzfE]jD; )[Ͷ^ʰ!Z{%kzT,c/R8HUb!/Mbf%^ Ǒu3yW4>uS]yiF_u`=4恰NNڦVjJ_ɈHH۞&?DsS(aD`cOl8nShy2m#/DC q/v]i,DU;֔1(3}-[tT631;r^>rb/Z\۟PuwiKwn#)lY{rp=  baT [zkmm{b1?Ōwғ)s4b]<+,*yqwK2bp{b6{?I1(wt(^뭾ie vD,Ǝ.E_W۬Fw6囀 E1`XW0+W9U_D,&,$$Ţ0<=Sqw8Z,:;jrModE雬a. 1(eD%*Aox7+%aoLK ۟&LndUmA6|Yu&WXXX *a-5ۮET\&RBvʡXE)4ر-Y pETEXxVxX Ģ+:Ģoab/fX™T 2/4rWG[&błĂbXաnjwbl 'q1Qu} iHK"P'6,^I2$$ҼP;8X(W8Q8i iE"E7kī 3,T\8Nf36"yO_4,,2}6XLҷHa YY`ǃ`Q7knWmC*w(Ti >X\΂E$:r-R;΋{^9ьߑpSΒ``1?/4btX\\[%X`AcAc2X $P[r|s 8/l(3s, ᢸ`\/6N0y9ޒ`s,lh#=]O o,tX,nmeC*`1[a|x-f,%lVzQgxv`ѡ0奧Kd0˃E[bXXv^2Pѕ~ ys >7@,FX,m*O;/Wwsω~0,=$WܮPĉ@,X'[yfV; %HNN,fαPA#JmȌM"NXҽFnFw>e[~rLV&Xdl(Dɻ} tr8 xZl, ? KEW 44K;G"qܭzl{j.G#7q "29zs>Wzdx%AozJumEZdmj|o޷JޜeOo%@𼗽mKt_5s7*}7Z2vUjkBK{:u=YC;,BXDUq*}XEs_/Y;7= "_+  e"坚G A_CxT^,A'8/_a`67 "B,5DzF(yvL.k(& 5JOi悅ua8j J Pyׄv<`]v|&,2}6XXe}ɡxףwvzlhX7վFlIHWJƂ"/X^dET?▧U\Ubpx~Qaٝ7 csF(Dn KX<-R1pY--cЗvt^%#G W=L-)riG첿e7tCaE1 sBcu<{^3ThXVETNXǗ_gZ{gsiŏS,|G +rN*/T??ʏO?]|ߐVG/%3?A!wَ~7_k   Z,/ʯ>W9XXXؚ;4%*G`AcAc^k6gص^;˂X#d 44/v霮5^c4Ő,h,h,Ro`AcAcl,h,h,q644Ƃ8XXX   ``AcAcl,h,h,q644Ƃ8XXX   ``AcAcl,h,h,q644Ƃ8XXX   ``AcAc"޽kךo ܴHw"mAcAcDI(}ĕ)oc1!X  E9"mȓ8cVdMWhיˆMcAcE݁H-~dֻ`um \3[Cd7,h,h,m΅uȰj;`,h,h,VmnDgKj' (X-C,J|(3KEf|?h"Qb`ʍ@l)hyɉ`߯ ӃFS'zW=^Mx^}vб xjkؓeZ;dsrgXȪ/ jdޭAzvO۞c{7`SCJ n^;=B;^l`Qt>xbsvO;'`QpL|' u= n>s턮zݮE"S44+7N7"zCT?ln\/ph-HVR7=},6؋_/&u_,vE.}3Hd6"460[Ƣ>JELf {tnOw&;L' Ѽ~Pem% ~Ƃbl`qAsdu(eA,$xrg ]M]3w[Mo|?hb2+L@:>1㍺XEpA4 )FJ]ibv O|?? Y]|Ӿ꧌{-}DwX_D= P}܏K7@UM5[W z/WwhSLfoy#z>8_xƂbT ,t8/}ՏI,y4L%Ͷ$Is) r+/cw|vbhN{1OG9vmNׯ$TgIaAL-S5,z4̑~͋'Mp.X$6VӗwtthϲOXo ,c-9=XXX2k,vW"]P"D^,LB3"d S`- W]s 8?;dg ϱ;s悅f!ҷ7N$vS*u)JgN]sEsK.X7=%sٕcKp/g¦~:}|N#o XXX`J1iX(]ї(Э&O0a:,X;e_>nvb7n.2'}g6ߴlid۳|?}97y{#n:>&ֲ `ۜnVS!{}]M)Hovtsb&`l*kROM!X`AcAcjp;I,bwloQ[37gÓI:/{.X|Φ^^uӣbaSo1XXXb<=qxuꆫd)M]EyRTɨ:?voH^%{g~ %͇){IݜtΪ(zz"ЙݖNN̟ދH < Qr< ʃiE,4>mZJ-o|#ǰ5yt8L{UuyέP?v'V 9Ω|w#^RZ'R'o_d'o&LʤdsHv"0,*:"\sE"|RKPKhS>k8^^wX68ҏHE/pOlЪwoPn1 O5 ? NKcGƮ0<-uyg{=j<}>ۏ½INsBuH͂#?G¤hSE!F_uxjpn$Xܘ%jOUB 7 .2cHN(>`.X(mξ `q$9&'TmAxO!<$:$B?Y3sA_K>Gb5> ̟ziAפ``̈́ƣMY oU  g~c/Vܸ}6[o1sZۚ·f2҇C|tJu3/ [_ OoRywm}q}U  >&w0IPo=  WL핃퀧:`AcAcHFgó@2:XXXP4=;XXXQNGwLxƂ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,ƂZ  `v_^N 44˂EKy/Xޗ!?,h,h, _-OxƂeX}|(T_a ŧf?&5o0 $ ÎRWaSLSU$Ѹa^~á$l7ڑ ۽d~jo5XXX<, /y]KfyS`+yoSyدsض. Fų4mv&"ǯ?{/Wwtoy#Eyic8 wɵ5jA I&1&@qѕqYK@MG޽v%s!NJ~ 9~L6ŭ}.9Q;LESfWH7>ꋘ(H}*]Ix  `Qm•Nb|x%]s|ŗTl{,֫_ՖVJZ;l`AcAc1+XH6^6Hnz>,\ǽwDNA IDAT${M O8',h,h,fP+{Zr5= ga0 Õ` wQbC(x  Y"Noy?JD;"I-`q!նkȉ8n ƂbfD>ü195XwZahzO+]R1 44Q.6љ,:b]܍NCAO^8qs Ƃ"*X[mnvHcўW"Ix  `q;iۑ`Q??曗`a:o@̂ETPyi̘p` Ǎ#f[1-'H*g [.v  `הoޞ+W*5,TE$NUk5WYպ24VG~cG]V Ƃ"2XZU${!jOsz=C󬧬Hg{9׬۾15=IIx  `6β&"^yB[:38W/ 3s6u8%b,h,h,iz}iH'^f·;fm· `AcAc,,h,h,p44ƂX8XXX    ``AcAcgY|F汝b-?Dz`mDq7e,O^k返 3   RW=xk.,7'z}֣kz1>|"et{ =:Y|aQaF ,h,h,Hu'va9/-cٿ=," >%27XLH ƂTv_X   RѶ\;,~<~vl\`AcAcD*`@<de"ƢDj|Fe@,D >o޶w]6k?`AcAcD:~-*Ѵ`pF .ƂE  '/>Yb,h,h,h'>+uYփK><,+,mu+Ed @lì(A fƂWUx ɥ,>1xSS1>|ᮢSE>wO&Zvn"}vmvK;nniJusÁRknȹWqq:v~q !g'@EtH͂7mI^NՉHt69i7,Rnrq,ּ*G}S ɾ8zM,¥ ?M"U?]{_redNn'y&ӓLfc8 "B)yyD'v VƂ"2XEjfpL%7iW">y:qOc,-/HZ,b,h,h,f tJH -;M`+|CΛ򊎜\``AcAc13Xj޿Hq>SaonYhC"Fr" E6yO\N8  Y"Noy?JD;ܟ0XlfׂEY ƂbfD>ü#:XXyD֯+(@,ET wt yƯ6Y@<ETGK/vjmM.t*R&RӴ1X"dه`*`BA6>ɗ=3g&&f4Ixî)d~Ll{Bjs,t@_  VbtbI!΂Œ{߂E`}+^wœl'XȟNH:]"#,vp\J]?^pWgX,ث;^^qc1/Ģi>Z0\kˆH=:", e2GrPNZyi}'Nz] φ'X44aF&քXR1 M>_ E !}laߺs"s36V:y"&&"X!X<8",.*^0˅ܭTm#X?,?,< l`XX<,8Wf~V*}*XDV%![/Ex1Ů}?UTڠx1fCxxDt%X׺ĸN#M>v(g2e&\.h?Xx<j\n"X4499XԼU⥛A|ĭ`9",*Fκ쿬maNc : xNh,h,Z HhZ|SVUv];a"D鎤NpυTPB]1ZS[~.?A0,, )ھfA?Ũ$ -$^L)+ĚX 3Mc6N] 'ƍ[[xJh;ꩲ+S,6h#EӘ 7u`q*Hj2~,j,nT9Bf|oeHu.XiFU[N>]$W*ܛ-Hnݭn6u'{i#7RW׉{JXm$&!B !-\ r*HPJ@|ԧ<}?sI2Qn{$3lavg9J$=Pv[,N -%o﹪~)n ( E[,fI`g9J}.ŔLLm_svE3w3mh`,uXx#%+赢_L}W^k6kcLJ|GwBtdt䌀X8w޺{n0 vk^(zH4M_I-wT= Ed|2wab I$%Q~LWtRdۥ‹Ň>㗈E9b=B/`1vvO=!׻XDXG[IޮnD_ Eaz^@vR^Ig^(nn}0* pp@,( NN$I.%".3qZb3:+(_uF5Fm5[ W,jmorI|80Zif- 5Z-"܃ P,(D,,5v[緢[F{rKXG[AnȖ/WmZHb'XX%-w'uu%U'E> E㽦H=X  b11NX'|KB>YMq!łbXbP 뎭eXL| Ŧ!J%kibXP,(E[,D~ ;IIz/r"+ bA@,<N^X O~sw\qb@X X}wbN2x) |سoƲĆ bA@,\x X<y6X9<һ'DyIp!łbXc,r?Φ'uoȉV[IHmABU9!uqH5;5MncGp]`ǪHirޙa`Pi+0y̼[[}w[{0/w^@88ISۻ X  b3q=jYTG,k{jx;UkjobXP,(wbwMxqIyO=ъRQ[,ΕWo⻩v8XP,=ӑp 􃅇wھ~:  bA?44 b@Xpז8wF XP,(c槁Xb 6o>@,łbBӖ5.XP,(㈅?!' +OeQΡ  D"qv5m)[<~%J2}QVCJn`k7{DC}Ow52>_dOyxyn㾳gޏbϩPZ(9dD,XP,&$=SRN95] 0e4[ Ŭ8`ͰbPuLwwLJr#',jo:^cg\{BsbAXRbQjiQZgl)YbaXPi;.ZJ3Y*N(+Z=bQVK7Ԭ=yg[%BoɋR񲦾:[P9.e%rx.@,( CلG,D.m(y+Ye zW,Ze nՈUVpn^0rg#)jPr&Ѩ %,;:ږRX*y8w4XP,&$Mx'ho7̲Z kNJ4t ߫{[IVy}iE!|{~gRX6#R~/e##@,( &A>3Xb5yzg)=x.ӾFSԜŬk.bYνWwT(z{sLNd *@,( O, BbijR)Y ȅi~sfK=;\OU[#ⴓ&`^\'QyB8{Y!FXP,(X*V{(+^zi,SHG:Rbm+=B2mpdłbiaBuؔr+i;O6[,S,3-$7bAu ',S)g+=ɋ3-' q- OC?I  ]Eibq^i1XJyг֚(.*h:O B5K/z@yېh `b杌\,.|K@Y,neŎ8tFUސ6bQljzH=U XP,PZq*prC,.;VдR,"-UՌz}n-^/ڍ ΥW"oh[jӊWXzt%X-y F@,( qb_tP,:b<8 *(ԭZov\t(mv\wJ7(5jV}KI%T)kC.F,XP,~X\`hE.F^@u@09Km܂l-FJiG.?płb0X4p !!C$2od>lh!>FXP,( _0\LNMWqR YdS&Cb@XܥXlb]]bxʗ bL#@,~fV nN ]`U&qtłb1>э=}]E8HF'h`^_ b|^鋞> %?!wϣ"@,(zi$;bp< czXP,N,X XP,(''ؙ @,bAXūԛx|/:Mk»5D,łb1X,wnDzE 2,Xlt:;sL1@`*t6 :O>˱ {Lā$6X\+611  p,X}`+.b'(TO"/#l,݌C(`!%ab) !7XH SGp,t 68  p,%XT؇/vHw>?8X`~ ,j̱ X<2Xȏ`c#H$/Ç/yKOLL~I~X tP43xJrO)#]Ew]&\i|IvF'mVd{j[MX M ɱgD+女BfLw,Ux'g˞h=*/._ ճӳ)#SŖEQi͌f4YD/[%L8G݌_vE7ŌZu>MqcJd_AN 1ixʨ.Rlv,34`'dL% ⳦e<5-\~/lftċ4!wg4b'8a<ӣljԍۯ'xb5`qUE*EP{#Md3|:j톿P,rZ䍼O񷌮۱|<ɻ2Lw a&h&4- 9- E&zVܘ9LA̮=1 :`w5-ɞeׇm!mҤTfr  6MوYsŌwt<:`i_oZ8VJu{Qā2*biK+i#Xz"VhdCtȳ"I 'cAβσAN zr`qK145CmEB!on c_L/-Ґ| ̐7~o2w,Pln?zFœ˯x0sj9$X\ұ8So\BE]c)+jVSR+]ZtUZt;=RPNcq_Pgi<qc[Q۱|BD,H2$+~#dм:ձ@˩RrZ8 Г!<ݏ( E?/EP4f"ޠi&⋾}d| K/ 7^H]䫫#1J=Ud),.UU,|25ĺj͈* c\#TvZԱ8dDvo#Y7%U6 =4<,6kR D zv`igqlgPDܬIhu,fE)m9KWVÀ pVXZCb|;t(e*X!WւEN"pyOF?;@#&rGC䬩P 8 S 4$d`Fox}9,X ERIsmtLHa"%5NS^+jFHLP `QVw**[UYѧ>yk;5!u,4g4yoFHǂv0$,2'?X@ z`7\cTӾ|`\vڹEg4G5T\`B?C s}{V镂5O`9!:lXn{e4yONUQI8cz`nͪn9 {8A]hX)5YW5^)?д_[[Y-k1vDʡrmxغ,Z[7 9=P,μBjlu|bT_"w>*ۘQEwrOo;WL,YԌo-4RO|WD, {wԞ72R:XBԴ_jwx˾vwJ5Bk̭(cj&7Xpxֱ_^#EO,Ze4ؿ_ZպxEo'ΊE+',>~%g2K"w>.uVo +n8̉śsb   O,dI[ɩ>FCgkh4u^*l\7 o&Ø=KLT_-mĽܦ?{N0>3ժG©ȝ?uת_|'S[]l_8V $$ߕX|DZUT=.p:[-&b@bAbPb 5.b@bAbX|K@,H,H, /,x @,        @,        @,        @,   ۲ϝ $$-!yoMpRRb@bAbQE+v_4 !C,G,v *d (X+9}yb1Կ4*kDBFĢmTDEe@\D;@zpm<2]gbOC*{`7Wn2'*02ɤ$#bړZJUʑ1wͽYyd X+;ٷ|,FB^:Cb@bAbQ2b1>=*nbq?!lú^< ;ڍؓbbѴ}jV8B0әZUv< my {870|V]DREL,֤Nȧ׏؍@KO $$%#+ oÎXhW]כo xN,D/&_ߴG㢳I[XfbM6$J΃Y'f6-{=(X'] $$%'z7|{Z$,9b'uj.7{X'z;+asCnPbM*_sA;`Vb&XNy&X־1K,  Q;|)&]Xw8}XS7+ԠFYW򼿻s|"odRIGX"bmI,͠6DbEEI*lyNpfB[8=l贷b5FG o |B%u.!ĂĢd"ꌭbZ\hg,& "!:E@$]+ćX,^c M;&EEIEJ/fu%)j vzbfWbHG' /ckߙ`e#ĂĢdŢK ߞzN,]?CE]TvPjHm9vX0V i|s|Eb:vmZ $$%+s1W,~Y8XrAz~)c,\,2Dr%~8wL,6uÉ.vĂĢtBonˋEԓąE[͢C[3TXX"p,7ֱд#3[L(a0L?B,2ZP6cYrPb@bAbQZb!5WMz;xOEn B\?H̹TLLE6qh]SɄ;b4T*wW2]Ȧ>3ޝXZw{(*ĂĢB_Bi![~LbPYꞌCo3c/I7i\0I.O=!؋3,DŽŨa89q(Y~v1'77p9 nHN^a=[^?Alwa=}z&\ϳ:\zfߴ|8 EXơ~Z۞oX ,baxtXFWr}Ih 5YoMV)'Ŭ= $giӻaџFX XX,a1'oo eXd_*p 3aSl6~X<, 2$&8xSRX XX,(,Rn0 w yI˰Z#hi!^%,X,,sڊNOC iuf W¢q~,͆E=z(,X,,sIRy.X-/͆,)Xg?3޶ǽ*^5(Βg`X[X˷8(b#'j}Pk0?oX(ZdmqSRX XX,,,TboCZ~paqSwX|f]OIa ,bawauC`X/|0,^UEqӰL u,!L?vʏ֮lAQ~84q/ k3q//6!-nPl/b." !| ېt6Ƨ4}JCMDh7~:>yv ~㛍hkU|@n?ͩB a V6&/Z8Ӌ,3¸3RX XX,&~p`'O ge,4ޮw'e6>- a $Q|ZłVlwxu a ,bapw2łoMB.9n] a j|tr/BX XX,`ww/AX XX,@X ,ba`X@e/3BX𷲸?os_, a߬,l^+XX,,𸰰XX,rXX,,P9,,  T *bbaaaX@尰XX,?]K[SE< K1F〮x0gBa B;kyl\f/y<, bX@P, HbBP, yX($ BaX(<, bX$y;{{hKaX(O_WˏabX<([/>ъ[B:w#zmBxn8XoabB+:5?+ O9:bX<V:دn|v|Э5Nqe';KQa3G'7pK|o~K?, eډ|zPDc|qW763W84,zZ՗ e betW~=>+Q n~XtuqPnE`X#?ljo͈hϔG[w* B10닍ɩaq?q{X(l&߼o^G OE;bx_DK'o Tɰh܎l_;Qg_aX(/Dٕ>iXawYIxfGKlc0~`_)Qs?, {ۻ_-]|vi+W;x2>ME7*cN抅ړ?, ?ywwo}[wVWf<͏W|O bX@P, HbBP, yX($ BaX(<, bX@P, x aG BX(bBP, yX($ BaX(<, bX@P, HbBP, yX($ BaX(<, bX@P, HbBP, yX($ BaX(<, bX@P, HbBP, yX($ BaX(<, bX@P, HbBP, yX($ BaX(<, bX@P, HbBP, yX($ BaX(<, bX@P, HbBP, yX($ BaX(<, bXoߧmc!0p("+t.-d+aX(baX(baX(baX(baX(baX(baX(baX(baX(baX(baX(baX(baX(b'?_b3OM2ԥRG\aX(ІGqao°P, v'?ML'LuZqXZo=?, 2 &ur0!n ɞR-9Z߷Nz aX(n2'֏n%G?Oxp*ң}X(dz̉3 CX(dJa7~읆P, 4OwtًA-J,bX(dgyaqT(|qٖ[ǰP, 4 >ǰP, (Ϧ)1zKbޞ~xXob5~o5z˯bX(dz|grD~zj(}WAZ%r@yˬ~b%b~29z?[_>\nzX(dJă3j]Q[4,bX@[ɠN_ AQ}Q?oJgBP, TQ75ԕԚ}:8pT:LE-燅bX@;&breNX:LEp9p.[@ B6ݿ6{ؽrRx2, \ά3, ݴ++3, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, zbX(@xX(\zgWBP,0,@P, l B0,0,0,@P,0,@P,0,@P,@P, P, 0, P, 0, P, 0,0,P,        BBBBBP,0,0,@P,0,@P,0,@P,@P, P, 0, P, 0,zbXbXaЉ{7aXbXaЉ P, 0,PX(`Xg °BO* KܫTzuXsm{(t4,*{ӗOvv\.6g>r}pakC6,@P,aSay{R,'v#a2>pakCݘ7,@P,a72^<ּc>M###K^,6޼kϞm{?,ι6. :[rťH'O˗0,67:yt:,~ab rqk8[4u| âbX(\X/~nfs.+?VʧKdoŢ|g뻣>aQ !7/껍w|X[۞o^[[_MfG7ޭ.:OskOO~G7{1|nu~εO^{aaXX(ݭVXߵ37p\s;ZbHqL5i犨8P2H`ܨB@ #0.JƮTrwf$˶&9@kYr*.4-i|d}aU=cpp8ߝ=-nSEކz`{䳪 ѭ(\z;<U1f'MWL_PU>oՃᢗBX`XX,G<yڼӴx*V770I[O"{Ǜ;Hǫb~Açڗ1y9,:9"vyd6[]X;_}Ÿe|(P0>'<%F+6ITZX,, 'w'"A8F<|U<[,<4^ö^,yM9Q .#F{a1Qxݼ*A fȲlwH^#$l Y&e J#EE^=I;yLI'tFg(b8˰xC⦨OH_X^ϳ,m4'oww[mKxŜs_EPe>xuaCv?͇iZ'Wr u:lS aba@XPo._b*/h݄vR7NZ ̈aw~e͐ћA*E]a àSq\΋rybQx Y,ηG>mbwӡ7uYr;gwa䝰x|OueAkuŨ:BkBX`XX,/do. `XX< i\,o}i:iww8mFYlN#EY?zR]֕@X , p^zUgWqB(nqPdϵ޾$<)N"^)fs,`n BX`XX,o?sMq.9OŦ)/{6$v'oOz$m$fpw:]]V׉m󋣋Sx:xge\,:r׉baX ,Ǐ&,۟͋i !ż([l7uX<ź~H>H&8םlK#NͦPtj7¨:T/\Yz=Xtm@X , uLIy`4 }ƞO>xX|{gxe;{xlnq{Y?!"y?KZW:)y7˦+n>eݧi57u:7X,ґCӧO, aQ5ߝ81?boB!lVE:vjc{62$4<,8$FxFW|^)~gބE|(6ˏaC%FA8ػ/i|J޹:X$utl^.{_d_avϾh50? a |yUO>_6~8ϲƭ췽_xi/ދw]Z/n1FYv?&}]x߲ٻf'BX`XX,&Ȳ=?Xzo}, ?+X,, ,/8LXb?%, ߠׇB}>`i IDATX_, a@Xb@Xb@Xbaba@X ,baa ,baa ,baabaX ,`X`X`X@X`XX, XX,@X XX,@X XX,@X ,XX,, X,, ,X,, ,X,, ,X,, , , ,  , a  a  a   ab@Xb@Xb@Xbaba@X ,baa ,baa ,baabaX ,`X`X`X@Xb@Xb@Xb⛤?}~w?{ga ¢?_~l} e~t_淚t 6[ڥ!S ;"Z ZSYP*ޔ-9`8 "?c^m)wf2D3;X3b@bAbX2+=+i1Y=Jd\Rn".I" @,H,H,{S0j{,˙x깭kXW2 $$Ś^ u׃j0_ !FeVόd   B|#5DRN\pJ$BLdfzXXX\D, @,zh-dQ   @" 6گEk.VT•rePkdo%G]̜L;t{qOl֝1.C^wo]Bp,S!Xb@bAbX,6ΙJ{zvR͛iMFdFmsN *hl;(ܓ8[WkY`xN}Ep b"^]+M_d2'z.cU,uޱPV㋒!%w]m;GB>l8_zVle: {Uhj9eg7\bP&|e1${OXXX%4e.г)M3# Ml^c ]ŢQD0*!FQ3+-6_jm#mTuk6|Q?ɫVֳ3;KXt8;⥔$; $$c.X uKV:Rj6/:ºJRU`]Z'_e\9mkWXTm2a);I9Ce"Ģ wh^sq^,jHz}t'zͼ-NgY^yY]sd Qb@bAbXE^KJ\.9YxEd0ٛK>;kCϭFV4q%=$*X'yIasEќ(G XDmjYR١VIKbV: q2Ԩ E0J|SZbI9=ČxBH;hGGbΡ-'6 $$W7P>aG}'Mw9}]dB] %r $$)-J K);ZqgY'B5{VҋXro T,Զվ _$b-Cge8fUސbQp |bY*XXX\@,)ŚOgbUռ+'4FEh[u)͚yZmX3;hJKM܂& WUba>*깍y~q=߬QEbAosXسY^) 5s>۰L.Z<")e()R'^<ɩMO9;(E#qq6b@C,BUXhZɚjvlϞbnŢs+(dMqט-RJ;XܒOLG XXX\D,:N@|A˯^<µZX= +sfx0qlwugȚjXNiZ>4Ă psj[@$h]d"LmeŠyNXXX\'lnTNiqJ&Sb@bAbp}B,&c52X#xb   k$bU $$?X.xV(z 1 @,       @,    @, @,    @,   "_k{w|sîרC;]:X %A%, $$?X,bO}sȩns\?l̓Zsq-͑]O3 G_1%JX@,H,H,* %;S0"xs »7`xE,.90 @,H,H,Xmo߸\}X|T]{F,DwiAlR,{p%gu`,<>%$X;"4!Qb@bAbp [\G.?/qu"@³i%K,,>Xb@bAbpB!PWfbgbq+xfE,@?bm   S,KӓOx|6z;PX%=uUv'Gk?q ǜ1 U9дSP1yQ^`*?Wmo I&pb%`֢b5#QERn] nn>i7*HLK6clb[ZZ769Ex~8311\=/u{ń )_׷kYEMPH,Xb%!5܄xCf25jlX|`-.UrwW^& ޔ~x`4ZNK/Hs^ZĢG[}@W4h$ezN5 G9WTee'3brߕSu=?5f쪪=&Y=ءufbEUފgMM,f5-XN,~:CتPM?ȵ*"wEH6yIcUS YKfOޖ_Q.!momYd)C,(u'N[2u1"%?SH }Z68D`3]x?ly:@s ixCߖ=]qUMU$H,xsbί į@cBq p͚t\m =&ωő/vDXSQG,x={PuiW!mkzΛRH%p RJ!5ȹa u6qT=?dިUXQ,y_'s^pܢ_JX ހXL1;pSU˲XzD{LbqG|t! 'F 9"v<_ѧRv;le 1\]X?ԂEr&NdE1FfğΏ@,@b(:~b"bD&h,5\mQ<yBB?K `'JSfo[һX *¿u[QΩ؉̩x.%{>ըX=rmŦ?XoR, д΢&HbQ >%+n9V_$W"@*.Xti[*JP =D=u b1I,_j=]|>3,Xp] 2WXH,XVbR['u; YrLf/$eb^~1 ֤X3vue~},) ,Kۊ05RiOΒvBX)2baVuf{>bĂ'x$b;&  ޞX8lH<+/Xx7jT,MbzSZɩ[gc+wQʷ0 "ɑ^RV;Xtsml%7u5l란< IeK)=뇒͜`EFϯlεJ#M,XPH,XBLv07a卜gUeŌ5-1jZ=8XךWC6, css}0CHI#ê+[K%zo]s8u8]J74q|Ν@|AYږZ[w*/vB\,-գzS;uobc#]Jx?p(F4y6")\UÆr䭝lſz\QH,X DÉ͘}vچ{eȏQxijpƯ(/&1Ngm;`^>bF EX[b[7)@#-i=Z-^5Oy!wb1BI,U[ToE/} EJ$60yRNgN?M, #C.b1,#u"@,@bW(͉\u<_Wa\堹=M;^u4vQ {Mr[" P֘K] XkQS}PXXhA첧ߎqMžxdl%O(̊E'Xq8n%vJAUʢa$omC@,ןۏXLE5-XO,xI[^%5a M3i6{o>!v8!'RC\7^36=3OV$+.abX$K`y{f90,@P,s APmZ/:.6[޳s(ZK寇e]f|n1矷Z}x\elA0,@P,zT[݊RkvvmwWϮjDh+lQ w#ś⋕$ydd .XOC_.6Zs=w,fZ^t덬r4hU+=kJ+"Iϛ,~)/ P, "j4G~vZvV0XXZ abE7IETEe+jKKH^n'{F2abzX|l(@h_T"jUݝ{_.n^  aXl\mGFHD>XI鰨ηEMl=B>,Z݋J#yUыzgXFы#E;] f BսjDo"+I^NG P, aE=P,`7I6 ;/rx P, aQiDbNt;P,VKvY|Fl(ab8,o'F˵Ua1{.ZI%BA"b%Zc'ytb.E0,@P,` Ee]^w ؉-`Qk`X4j/$Ԥ `XbX E(w@,DQT7ݍԣh-hX,$in?U?u P, b*zq;f#j~'`"X>ru8V, .cu|aau|hjd:)p1= MA0,@P,`{'qA0,@P,(Bâgc3t P, 0,o1ababbX`X`XbXa`XbXa`XbXaabX(X(`XX(`XX(`X`XX((x4`XbX@a>BRx3abeh0O8#X(PfX8!BR"8$X(PjXSCabLw   x!BrG  _10,@P,ܰ&ⱟy`XbX@a14 P, (1,3uP0,@P,ۙxcabed<)BRb"pH0,B9/oβe/ܹsݢX||P,bI1~vmNR,nܿ?=b_/ŵ[:ݫw\"G:8rRkXoYVB8ƌa`X E'X" CYaXa`XbXcO ( P, (5,S/ P, (3,Nœ(q<]qF0,@P,̰x2BR        P, 0, P, 0, P, 0, P, 0,0,@P,0,}bY\b     u IDAT   BBBBa oaXa`X,ÊX(p?`XbX@ipB0,TO °-  b0GٰҿX|_,|Z,>xX ,Wa X U, (7,:bІb2, J Bb`ŇE,bqƃ2,TâPnή)W^a-ō,bFjiE6(E:,aX(PzX\b,YܺuXtomXEbq-Yysg"]zm4,:"xX(j"?Ԧmu4t`Hhzs4I}Su*I$B孽71X~"?d8X_`8X4,b+z5Y\`,YbScQc1K_w4Qc/X@`7ych,^,b'o,v57~Xv4,dQ<}:dqp0*,<#Xx1+,F"<]G8g,max , y!,X 7X`oߴ` r-A5d^>6{EXDP ,PٺX`:'qc1XՂEA;XlVKޮBMGzqE}x{>1X Gۂ K(X܀`hi,5XbkOqktȢʣ綾B=ɗBZn?N[`QoŃF(B=NEVYx4GPۏS"_`XUE0bѵU0^`n}õPE~!oϣk-z.صm;X/,6ZGzĢk)`nDžPmBchz^oo{4gnKRKW,µP`}(h.^ 67ovΐGx죹f-X g`v,hXKoT^%Xj0?d Y솗,</XG,3`S#XZ`Q_Hx-vk-Tu£EbbRVW*Xl.[ u2hF'Ո`Z KI]h@`#ٟSfW%XNZ%  'ՈŜvBbc`Q Y4,N<Y ƈ2bc`1gz{X8(d^"bQX VzbZű`}`=bRk Uhx:XҚh@`Q]#/u:c a`*Ep"oYǷ=b'ԳE}/Ո:fCO!Ye" 9bњnl`Q_7z£=ETX#ۋG,xɿ`qgaxUN Y{ X`nXF:ŝ o4,~˾ ,P Nrv;%C^( N#k,!r8,啅Gzrr;/,rl"(,REk'T=bўNuz!`Ȣ>e[QUY|)ŷdsYKTk- khƊ?mE+}E+\/Ua1faN^HXVXD^-a8d*FeQ| Ց-EZԵE;bte ˤdq龢5`hXF_B-soE9dq.Y$+ų/*z",E-.b~2Qa"HQUVT+Ϡ&,ba%Uaў^`q+Xt| UO퓲OPj`"(-E뽋~^pyhqn+",f}$**î/:ŝ2XD" vra*>eQ^.ǷqeY,|X~ bq[LW4RE**,͕Pr'apv;l+  ,l/T0eQWUeG$wWu!lcE+U;f",&F&,Wb wB ŏ,ِEהES5=,hѪ-}ۻfW?ۡ(,xYa1Z\XTg_ybEEc/T}",",PUVC5E.>Ѣ/,.bXP|E+p%T4a 5gv{ŝ%o,['ʢ,rנH]“;($ boa@Ę/X 7mb]1B?fq4 /ZjQ.50#U"_Q}Z, NaG,b}®Yf|"/ZX٢ȅՋ6{]Z"8 {J ` #T o{5 ^%8 U7hE]-  oiv'XW;PĢ ; A3YPrbZ^ab.և8WP`$LŢI; y"5k1 z"*EԋfmXsP 9eBًPfx<4 5+? e6"<ܳѢTXk k_ k(B _T+X$|½ UgӖ˔,,i(gEZD~! = 668bᛅخӊ_BH :X [{jbM[g<% fh6ZXX,J)Jr+E 9Xxf9E.~?b! ,d!NCP)Z|W-\$ÅU/`2Mb"O%W{P \6,>MEk},y$OnY8"򞅌 ^RTaRaB +~xheNB™E݅koߙŻH^ܲxQEz"YTԪ[|] 1W^ab+z*X^Q [zEsu{oM]#W,zɢ޲p,\"U ZxXMF~^JkھV+Ԃ߰(G,T}qV$:Y8kYE-RB(>؏ΞX,rE+E,>`Ѿ5[MBV,Y[fa,m(7ZXV4ak7lVT[TE(,+J.PfɢyqV¬YEJ->%[è,c0d܋bV+zE|o[ oBtukZh݄jjŢ? Oqm^B2Peb!bH+iSȭ"X:=UXË"`QX@,Zg,Ծ\n%֚h n?ZdH"KraEaܟXVaB犛]j,X7&Zfw-S ,fQ-Bmvhn5^ mV\z++EIbb12YxP5y6h!B-EI1H?/VZ!sE+AYvbbjNbB?gEXphaEuKZ1W׶S8"R Ω)a}jgb_,RfE0-\8jQʅ2lu!W `qB`]E5 E;Y<]&Zȧ.Wԋ)ZjBX=$a S)<VjEܮWT v+XRU(bkErBFpN*h1fkeh"Z$Bu"J/*jtDC(RӲUXkm_ {j [aL޲ZfB?glXB += iEUhI-(+tXE(,'oX''a(f!Ak"E<eE .<øj i)NUȱ"A\QW^B Xɢ1 kg:>.Uݢ6 5R}~+JBĊ| yA*X[,$8 UYnT^ܴHZ8ʅ8l&m*Sx'+\AB-XPcż"8KMp޴8E7ot5` |^~ ?ѵ"V\m {k|C,޲6 Ņ-[776[0 ذHVRq'U_Z+zEBWb;ٽ1Pr͢,JpE[HpH "+DprEWP{cNn^,ƿeWb,4TjyFP-JH,/N˛ 9U (+J0B_az^b^oXlA,Yv(iYEZvqu%TbTX]߾oTj%V9(+~EۖENBmY,[bPfL8%-DPBd<%l *T+dh|JzųW ?=mhjiV"څ ы'b)" U+~E+OB,޲pe(,Q -.er' җ镐h2V'd=WPAްؚXbߘ,<CT-^p!O*pfWW&SwdpjE6 +zyq|JLǡ8TQ-Lquu %E)į(R:,)\aR/X+2 ,ʢEڴ(#Q9[$Ȃqti҅k+nW"¢_mhEU\|}* lSjT5*ʪH3W݃ZaѺ \QͬU,ˢ7Zi߈q%/n IDAT/OX|*iS|*cE?+b{W0,~jUYԫEpqi).+/`OAS\*̊lX+Na,סiEEEc naMEqItx*YѼ+NbJ-.u1E{oQQUE#+>dY+;mhQE2[EI^}ъ 1Њ(~cxi("++ b~("-"ɋ(1B։ϟeSQZQV=Cw"IV[\ZI^ѩ _pMO+-*UQdŮ]qXqY+b<-(b"01'dy2MO "HLW6,֔weYij"."H]b""Ή(MGE*¬Ha\jEXT F(-٢h.hE6Љ(("+¬X>Wܷ+l,"Lrb,/ GLZ]VfEcO2Ce$-HʋNa,`ce}VMOU(+třb,ZXZ\".د3`eIA75*U1bUW!,:ˢHk[qEX'!l:*.UQdŲ8~X,+⧠-bu!EIUԨ٬ 6E3-"2/O}NqS[lVOO;ѢJ-Ҹ"};֗DXYSLQQWE+犳X[".fc;-SOqTUΊ=a6T,F"j4.hƮS")b,+v,bJnb,k`eppOw*h6T8ZtӢE]}hhEQT gGX,,֥EE]Ty1 x^h*6ee"/8-¶hEQ8 4`cHAQ4EaU4bYW2,7%eEݸPܽ%QWEKb^qشY̖XZm1|z Yt9bm4-mE8$4`{H4"O,*UΊ+vMV[dqQE/ϘAvSQѬΊˢͶ㢬V`VCGl,*U13]qXYe^-zil^ bqW<=<,Ee[q1\|~$*ȳb׮8CXlO΅2.haD#(EEYaŢ"9nwxiVuLY0SXCa}UTY#](a1#L[ucKvP[\U+Γ#e14[TqQE#Ompa.*V awEa^;uRDQV aC?=q6x4*pXU!+ņڢQ78vNQq aqöhE3/f 㖩f\Otb0**E'.}1WN3VU a`m1qT`O'Uaqe#:t@^r~z\a!,@XUcHWEnP;fiEO[ -**U&HFyaYGG]sC";*/XD\+RUqPSɉxZ,CP(M /6-F_[D"u jnEaWdѨ oG(IâZVD"e97F'/"qk]ɊpU$b8`D^E4-b{EoWdeiQ,V+> tUh UVYT+U&x#F.qj*E{ŠVE2))d^␴hmyYޢ.X1C#^LeVX"4WVE((T_EhQP9U5ň)`F̌X]$"+-qjgE*MhGujhZT,FAݬدXSUg,Xx[tbhFXwE_VGE")DmH"/"7-jv{EOVķHS,8n,ݯݬGE")DH"/qLȿg1}XtEvEVV"^O,(n[ѴRͅENWd~UDB$jD"%iQPŠ =ʊVɞq_@B#ݸ-Bi9U,]^+v"Uě'&4EpEgȸh1eY";UщPRdg8E0.E"-Gâsf"3+",^E-",>Ea슷d^UĒB&Z"ܲh",`HVlWV ;#-"=ZT+Qۢ"׶Y5VNSn=ūE`yige] M믴8, 9؛+n*o£E,bZ ]+@?Eh',]w jrؾj9-)b5E~Wx? M8V8~דpZ,uݜT+Юx 7, կ/m(,t\qzz$d~¼′>,8n@Ӓ6Y-,J"r ^ ȷ>Nqb슝bPuh,E7X.XtAkaanP?sv7Xvƫ6ˢ,%,B6a%aNC fZX$b~\ٜy5 cY/,ʮYL92bsJ,6CbϜ] DsPݽBX@YX6YeZXt۱Xg^ w~Ybw-#Eϊsa%aq~3ZD"$a<uPW|j@OUʢ0"VW\~ a%a,pwˢE#a,k aEaWOE䣡'¢v+.,&aI]g]qq?_?n*9h5,..[3Y}jҰH\ؾ!TsЬeq)5YŰ8{<+a݋,>oe1zXV_a{sWc|{{??4/eYlzeQEOW\ɶ!2=첿,:,e 'xxX= ߞC_Þݴa{"+/}Þ>-޽yqG2(4BBD;YҌP_4mvhu `60I7Xvݍs;Ϲ?3hp`1j"f *Zu *x]Fi ?'YbwV OQ^Ҷ,>UH7XԍP U+v=R|r9ʫw@bל(ł 5="`!r>]+B~9ʫw@bYYHJ+YL4X46Bie, PQ^ҶW& f r6`,fF(3W=Ox**x۳,d!mJA+PzÓQ^Ҷ)da4Cj "`Q/s` zzI("XTɢ^ 5Rb"8`a"W~`Ճv՚Q^Ҷ_$da/YDlb e䊯PbB+Zd(dWăžR(P_[j>`a|b{r{hIIcRH&X5,,Nޥ"*v% O3Ԉ,,Zz,ʍPBap_KŅ2U; `=e̢ *YDEXBYb,U; `!,|PE-ɂ~n'/Kv'*jp' G3TE+Pj8;4jLQ,7rBj2r d!7%  WB9aQ\,E+hdQ嘅d:e1`1R Vs rl%/)$E+f ? jkG& rB/Y(bb>`t[a(X[],[Ҙdaeaߞx(XXm>@v [H/X ժY` K3rd@F,] 5W,`%X 57g_ 5`r,D# _B9X8ba *XT`2YD,Ʒ7n[wBYW֍P^ז+gz ڈ+ y#T6`&XQ˓ZX0JʐErb,D" JbEonW5CJ" \Pc  fN(B&X"YhPʵpvLB U et[YBY Nng>@^:]-%*XZ,,PF,l;m6 e7ea8+q 9WuB-7,E*X,`Q,d!nY,z"`5ް&,`DɢpܲpH3XwB)E,:|4p++E^텚`TWͶ\AbtE[^ /YLG',zJCbEVضMYB,|P*G,̂EW,@LSrB>emS/䃅oB:ba=,@T0KPf/D~ŢNz׬>a@Nǘ7z`!,P Q,% ^ ymN Gy,Y,B9noO.XY ut[-X,`MY(۞SJ"`FPv,VhVhQ,: Lh# ;ņtt[,@\,jh%,#bt[X%X1B)Y) sbyâvyB]ng`Jj9eѫJo/T=dRǷ[,mqOj'T] XH:-z`%gz;`2buBb8Xh% ^(Ō튅zv F eb[,ܽPmLbߩf`Q  &XJ% } \yzBڔ:eb,Xß|qJ%,X^M;}"onR u٬,0~|3;,䒅,vCv+`2bvB#ٲY`W,)) 8d1UB>qk8`VOYT׷yʐt,W<0F,P0XP,@"{^(mA,'XxX8vBu5*@dq$]6B5_H)X4Ǔ:`wB, ,;rb,Ybz{"obyw;|B C,@bŚe/Tܐy{;`,=\b X`Dd!NYhǷ! -X|5=bQ6#Nu>@e/1dQ_xPB%,āo3XSPwB, ,秧ů^r}鋘7THY6Y`q,l1`4]XgvXŻz_ϯ>jW_|/i7?yC e/}9Th91-:jV(w;X_ h7RO,\# E,0-gG_ߚ_,E=dQBۮ픃ER(1b뉂E>b>ggMO1 ޿pSM'pt};(oA~0("ijW917E \dw.cIgF7ܱp,Lp.E1r`S H(b+vⴡæ:&W$[n=ӯYaUP 9k 9dR8 -&[ٓu: #мݦwH#ΚFSd=(.>&!"+PlR_8Nբ仁[*1vEX8ݮތtxzԛ`q=Xtm\YA}L[^`(k֬Y`ab h" S 3:)?"f;+du!Fx2yO<QdĂP8  8Pވ4#Xx[ m*`X>89]8Sm Wp)N_H#֙V3+>z[9ÁfBF,Yjw,:] aGku Ʊ=(-mbgš5k־ X*K|o]v +QG'\sg>I ^pQ;ݣ`v9v'^O{`uB=82bYjF%X@SoEȣy@E^n2naTXk$4ia/`: &bSc+P58  s8`z,XW=](YdqZvųŏ?P`nމB{ba#̋Wh <ς5k֬}A-a:'0G+onBڭ@;p% ;']qU9®"XXD0iZ2zr05A!K I`*|> x0_/EU{\%oL<k,6xSB.k#,j,N7NuP[~D-Z\XE! eǓ],nXEu (VXf͚/w4ŝ-XdOK\k"Q#bb -vka 8Xpɘs>*9M(ίt%b ň2pLX# 5CJ# l+/8n`AUF,҂i`,Yt-LYם,f_f],޾1bEL8`5k֬=X\g`-{Y>tB73pSNU7X9^lȂ+Z&?`Vh'%ex9T}݆Ă`'a?}"0EEXpWa~2THȟ,¢\4Y_*XfڳE&%}^ZzA1I8p,\.Dw /`1#*`1i7űm7[t)3PcXP7%bEl:|Gs 'ՁNz{TW#j`1RbDPd1Lk;4P|[,XXf9⎣j?XR聅(Xph!%#`)Qsy}--  @ʼnEU?HߦBG,X27b7,ZQŋLWXPJIp|I4[(ڣE`a͚K[t4s3 ZԩP`l‚*:ݢDLJ[,Yv`QdOwFւ%փF)dAsELjoʋoB2MFk,7T960 1N."\بo-zX{r mGTG}z"-Xf'6Vo?7{,f:T5DTX}`P]>TxL0"lx`1 ֬Y@x1᣶O, +_ɂNpcGbBS௰ >X8;hF,Rۆ=X J pU|>5F"S,w2j%i3}5B,XoB/ uXob6ەX1컭K,,X8fN Z' G>+N ,Y-ŧC b|>+>=>|w,0Wh]9;PW/ʠYRxO\61},b >zs.`,bq ̷])bÉbY&NbgX>k=([cXpBJ֭X8,D՛Jt۱ IDAT(F,|Qu2*iX2I"mҠUM` C֞P1p&D X'{`3@f͚' Tz؃,8ͽ"ۂA;,)E|N=lAl>@#;{[8=bf, x=(. 2T`|b=q".ZodF$&tft>I.zm3=dITTjRtN}aTXK`Ac fNmZ̀Fv=JV?jZT^˓* s2`yRqv쥾ǕS`zgPG]\Oʧ~굜T9A ># " f# X(},xMǏ<kv\bix?L"gx?lh+;aBf5C_<"1VgnuN8$e`QV;qV ;E#t,Nf#JYPd(V+',ՊEyD7 WB8YO[`󃅦W* RCvAgAnn ep{e` b!|?XX3,F'Xc% Vv0Uvx<S@Sp,IlB6K&v^hK@@@@,RP ehU$)k!mOF +XY,*z Rp<:8!X@-yoPfx _6 (*XT`|aW"=? ߋNyAw&"I 52cI,,s)=`X.DYȲ:;wÒq E(ȱ Pl J&+Y}zd` p^,0Y޳[X@,>ۻw},hT,s(,tlz2bn^n.)iSSN*h{᷄v3ϔ)m-́f0fI@6ĉbcj[Em7!Ԡj %J&j` 4"IUr6q,B,3Ĺ)j[(id;ſuMni٪V=:7X$JgY ,Dg!iv}* ȘRu՞9Xlǂ!dB@@,pn kʏjjeCF) f+Y] ((XpsE2uAr8 Xmd67{[50Zo_=Xb icah `Z1B :FX6:XX,cZ ~v2]0neEZu iBӂɅ |w[XКmV#k kSH*[i79BZCwđBYTBU, sS( n%C=H-Z&dLi"RXpADchc9`9s4=6HIc(xqJ(d1+\-땬Vh"W"˲E =X,F =.P,7ϪgXXHPz2s>X4mL)`,&3)>tƐq:_aHq۵.,xO'/%B`~X\xi , *vgb^YYC ,~ů `7 *X2JMűB9,xnko[iU~b*}]*nLG}Q >H&u!HymӁ}۝K,=L "WzJ Cj#vNXX`B}ll U_` M  X4$C7 ]Q}ӗ.#5Cc=3tOwbu"f `E8XX 8aYe}EG&iƕ2ݦT(k2sBeط -g7-j6+@pu/< &C,VM-?T {*]`b&?6ERJ e1Z6oMv][R]흠&zɁmO#1[/F5v@EJ<X iM"b SwF { tŢ ,y#XT Cvϴ}1udEfU$`tm |v_%B9z6\"43{;5Q,~Fu#W ? X4XbHT7 u\ΛJ;oU[BD~`ͱ3T$a`PZ;jb |uɻ`I8%X (Lb  mɢP]ք2riMq-eU"jU:,. YMkO'ܡ[,P-\z۶ݮ.# !?v+6o,9PG >N=-kNg H=ԕ6#Ḵ蒂!jbD(DO~e1Sb2uVm\j]`Qd`+ɀ@&ڔ"*0<`qqPB<WDRIpd:8" gz؈[\lѽm7φ¡%*ʱ^C^'8l,d[(zU fc{A^p}lhgNkD;\$\},22r&( ǘ ʒ\,ɂ+&l<g nE1OyQDEk԰ZeYPk^čbHcC,=bE^(t d}B@@,ZEevoH) {"P}%`!ɂQE?(,0#\ەGЃ>3uoV?62(F2-Ed*ceK$]R :/umb*'#XnuP,Т+9`.]R*,f8ZFη%X3LGE*T:Nɲ:-2 ;=ȅY1drB@@\,kCj}N, VXۂ+ K'=a> ,z=jd$|OؖOnn'Ga2f@`;5EZ}̚bXC۞g;me#BB*7k۷fm ?}`X܀bфz2ԐEpuۦC?{].Q?'z;mˀE:uڷ/bgfli6?Cg/<ʴ_V^kL;'s.^v]z>VIcxN"ڪ_zv=~;_e;NzU;Q",;BEue4,God¢sc,X,Ңx/TYY Y+E.8(<͵xMjGL,fËM77k~İIzcnr;(Nν8հ_,',>x#ŕ+W1_ܰXEfN{տg&,bY% rY#w+=Iڽi Nm4Euz7n+#Go/MXX,fNlg-,XEwO/Yv"Ө|Sm;"{;i換=*'T=_ eX,a6>6`X Ѵ1Go_<,oEP(a11-e̅EVY?Yv5(|ߊԭ py/B3sJu\i'Nr^Sb"tŅۗ..7Xʢ^Fts7t)BkhK#S5@kYT(NT(fX޾tbxB, bqX KXBYb3HoeN^L/{avVTt8޼$;y;~S6@zwwZXd[EuҰhw'% ‚ x(v}RW4sM;]Y^t^sXyDHN~q8foK~qɟ"~h'I5f~X_u'\zI[N/,r K͢>Ф03ö$}h=~$hBowG8NavxE;H  oN 7|ѹfqa1b maElka1\,>X ,X",bpv\,P N$,, [,ޛF+a",¢X*/צ{8,> /٭P_ =,XZXpf:|᧚e yXX,, 6 ];,c$rX|:a %,]¢xvXGo(,\XdŢw b9b'    KX\X 1 LXX\Xdžbsbsbbћ/~{/•^xŢbؾAc`29͊o׷-ŽX!-y( ʏBVl]_߾gX,Zi"E `(\$1+=Xcϡ,o(x6dŭ?,חv>X"Vh /å򭭐+~[,~XP!-b[l xVŽ+[,*W,mR%,+BWXT,^={EV@YVU٫Wb~?-i_}"9ʲŢbXI"EerZ~vŊŢbXYYiя `Tk++ɓӶ{<+^#߿bEbe+kk.qkqYŢb܌iEf ĬܴXT,OnƶqQ /4*BUl>}jX,FY]饳Ţbsi&0Ebq'z #tXT,w޽g*" n0E~lX,n߾}Ax>cS|hT "͊YQ1,.\z/iX|-`QX,nԦH8YdeM,:E_^x 1,oyYiQj`Z7_1,;X3*,d.ߤB-~XX3bbqM?0plX,nԦHY, `Fc `XX,`XX,`XX,`XX,`XX,`XX,`XX,`XX,`XX,`XX,MOJ`NR)#GIdUYaEK~ٳE;kp/"J=3xf#c R 8p,H-,X c R 8p,H-,X c R 8p,H-,X c R 8p,H-,XGg_-_y| p62rrmg>G:X5V7"mv^?>zOtE 8p,OhFR ;lLיS?*O[|N83[e^{p,X(g!`$թq=A-S1nJ>vTD iƢzJaar]~PXlW*wQ.c⵰񒊗% d0a$UVe?܊'q.u80*~e4W‚ U{}B7 8p,E~gQμN2#6);XQK31A2t}R*=_%}4O?9vQ?cR[j:c"YXhzCVT>|~@]Њox!%&'*;:H!ܨϙƥD?BMIz.IX$׳HJsߪ1qqa 8ELQ>EfJc8}%U٪]+79jZ-i[wr>9dr [F J[:GX]ڞT/jHg /̈Sf=q>V]i2گ.C-o؎S| onjTnn_aDa`(T3r0 %5Yv˚jZo|GֻXԭड़Kh,3(=YJ@X{Eխmh±`Mubx%S8aJ]JyYM -h0;Eŷ~.cb*he0MR IDATlDŽE,5qU D&1աr4fF0M:k+hEr`ʥE6a\v ,Ô8 N˫$,"+b6@DXQc{.cb85DVWj^hG]oƲ+}m5 Ӄ!YwTpw)2[~:ƘGzy5F*G $aAj+ hYV zv:%ֵ cC`iujJaQ?\iĎ#~Z J`0kj<|S]aEZ{ 8p,-J﻽DJö6 58j ysyJrĄxbh/u~ O{ gKlm;o;Pm;Xw),Y2$-#‚X`?dbJ AFW" 8p,&,쭷Z"дбPJoŞ?+cFFki]9Kz;u/B{.^w{2E @𗅯)űHg{r2&ϱS:-KҟXLi(;og:EXc1AX"¢~}| 5V{KHgXyٶr>Ym1Aa^߃Ydxzz.I(|] `mx_a\v} /[H+Ar^+)yOHt,\X?aͿmEXc1IX|eAE]-/*V $w5&YxwV.T1)X_t ^R1 ?gwu94r^ jspoKOꄣ{?UV$/?= D-u0`SV{lo'U ǔxt](=7ȇ[oU=~1]ygFC7   p    p    p    p    p    p    p    p    pe >XXXXP8XXXP8XXXP8XXXP8XXXP8XX| ?~+r`C@X[~oX?֟2ΗKv Ƃ纾|X?J  w8|`in}0oƂcy Axzo=$L_ h:Fw?_I  y^wx_\mVAy @ə0*ƻ? {f_-(vp  Yp_ x}wn;g @xS5Ӄ(X>JAHFAdVk@cAcທ^|amqG?Qz~4XlnJ؛$t2c^IvJ4Ҭ/%M5EI~-+LӧOmNY$uyՏˈ#X' ̎\?׏ ղj![aD( (492Q}' -kfM$Pc:0u6op*(Lj˻Pe{\{E|? I7֦k&XGG+}<ť^kƞšqaYXߨS+\4[U Fƾ^3O[Y Nӌ\+޿ lP;m566͢hd%d5x^InCJRU)zIvf+z-*}XJ`:c{\[tqvUj >gvUEՁ+b5 A:ۢݯb1M!g%^oSAxbhY}W<ItW~rx'vk O!9ErU `,XH_xh)~es;V%FGFO'ZVjV7@,!ÙYb "%$xbᵆ 8 dI,&iX|x*T3 @bʛ ۟Kz8,PMyW敀], # J6p*Ҫ2nO,vrz~~!blW߂blZ=w.YI!½ j!{7z,.b1aB@, $_Y5 ſ1&* :WV?J *-`ҏM#xXCb1o6X 6$˃X0٧.+rX)ٌ;^X$W%r1钥=&8985 \,gdwR:!b!_PygW\X|/S-'C, $eOw|h}=_ @bK,| @PT X bb  x%bb>p  @b~*Y~RC! WH,X?X $@,gC5?R  $@,^  $bb $b ώ0[ | X /Hb:F{J#zO_^Ncxqm!H,XЏXD$u^UJ"i/X8 5X}EUVRdtsd!bXh>_÷.zO,ֆX}E^IjMov@K~/XHWW}F+pX  QUA :EX{H,XЇX$[PE{uA,YK"aO,bֵEjT4ikvسW?3[dq~9n8/oL&i[izM~dNn icAa%tToH',gƃH,  $b%jeLz>uX䩬evlJC=X$5 F5eEOVV ,i"'DJ,Mc!.h \DPlݟb @bXtZb[y*U=R(̢X˩Z],R!RQzOC,eDo@v) f<0XXAFZ }݇r,UBc\дJĢBp/0.+x@2u:x-†R= $  p&x,գXLjUR-e]^7 OZPKR"W{J,jLXTrBUx^wdB$k;6hi:W=-$ʣw+ca3xcqUJ.ՙ%d6uzt*%bQ/YqDKN Ѿ1  @b[O[ƿL8RD1&C $@BxHh^tDkoRM}Sξ{ gwcvm ki m`΢כ(Ģ148H4uX u -cxoGDͥM'gX}dn/EOzŻPwGPDNlX!?$ @bZ,dh!&{:u : Q"a}-bv璽EX|tf; }!ND+8;?_NDBp/X@, $H,Ģvrq#H,2+T]$/>G7b{?îbqd w֐=".\jk,g'?^)8=YH,@bE3rbw;xXp?a_(?h`|E_%+޵@?P൦|ޏfLco߉GC$aR.E#D :ZCN;}_gb";vr8||;Lc[bqg _ǃ$H,^, zvS1EB,H,X w2g-M躟(> ~Yʴ>(:+ow .iw]&*{5F)Yc":kqXĢX\(¡)b'v2+Ġ'vycVH,X G8[V8pSlkd\]Ţ(EBc^X8"fJbFap$FD61bJ z Uz+)H,lb4k\f:Rvgffg_$ C=}&9(\bXOTy)WԾj'LC^j3ѢkW$XX35Ӌz[KbxK,oդ8]5ҺXn&vILS.-*oWn裋 .YxX#y޼b-(SR %!-o좺xP0J:2xH,H,~IkBѡCot674ybXq?Po*e\QNe7ϣbA⇥ޱXUzFb乓m.)Kfֶ)Q'Vܘ9T^ՔKToݤE,KE/_TyUK|-rԇMY  BbZ\4 alΘdTK Q0;j'Eggooe皻%EMHs;tɌ~:3D},eb縹"-.7fGC#92iaX6stX=ݪ<7i)XD,3ٿ\)VLU+yS6JmQ$$m}[, Ca%pǶbf0-l;֊H(^c["UבbH,#ڵ{{{GNeO~X$/'ԎO;J3}'&8V\cUvՂ]LSblY;ȿgtTbTSRo4Ť}EQsP"!SmBVK]h225<2  k#-b*ѷZ, )GXFHdpKeTzhtMHĂ|YU:`}PVLi1km'Z$bKLꞎ oYց'eoz݋:"qv =$qdzf>E6]?T:jTo*um+׉žI,6\ja@'ˢ^*6~XwA~=4Cr!g%=&T+?v*f|$*?0!qOui 8XXȢT,$oъ:K,\EYb^j]A,Y,yen B'<8(F'fq(&*$*aB>"AfMb6-\ba=ijFIX)o,Il- $ uFX(bU,$y~{\ /CCoDVon ߤ}ȓGZ 8(I,ݼу]lj${,GQNzP"rwcc,bۉE]hNAYTX bѧMdq$O49 }V׃*M,zquPŚ~aHĂW[OWWCkZ|adŌ*ԮXN)G B,FD'ADU1̡XmJ$|.ĢPXH)lK&CJwŠb  *۲?e>2,ڲD^4.d\TXDD(M@0ʢn`jwŊQe1OG Uf.J v|WcϮY,ti[E'5J2~I$bMTL T8&[Ă Qbz\,&QWf, ѿ<&̟dfPjakR r&"a:CԤXc|Ek5 y‡*IVL˓t|嵕 I@_/Z@(b%\ T88I } DgTR)k1t{T?`<הӖ!(]q`Cn FbŏY}?%%aDS1$jC,)f @b@ ř3RtV`& $H,'d*nnIzNmU~ X ~ĂjaDh̃b $ԑXQ PbȌ0#@b`z := "?I,b $@,b $@,@,@b@,@b@,@b@,@bH,XH,XH,XH,X Dfz us ֗a[ln7Ǔ]X .XÝZ,$goVj?/g׉ }[لÙnp$.?;ya$H,XbQ3=X6W}9rvQ,zfYLbq8"OL, &H,XPb}o&-{{'Upt)VQ,H{vbaؙasXTb{_YЇ X b4^E$V,\,݊) rbAX\3J@,@b:[(~nZzΙXVZگY՗ymcxO{ {=9wc:r56݊ůӊESJXkO+mqDb8tJYrU^ סU~bN,wDҪ 'Y^*8Ģ*b $ԞX|dL_'=XCb2lR$Ac@b"n}&&z\bm{i{g.+,>s* 03RLQ!Uz<Ec˱vvt5&:YDY9Pi6 /XĒMYp `A3/-G?,N:XAr?ks=Zj4:-i֗'bBy;bUrG~8  ʀA-P dUQX(}u>`c !ͳ3u@#lř9D-DDñwf]߻]vRզ#Y,hln?Q0WwB3LPH2ⳞыX ׸sGPYgSD>*P~ҷoXM$P`LӫR W8 H1"4pbTy8CX%݌ jQ6JA%<"SMBN zq`Q&DKeE \Bdù+"5CӚvp.p 4v0WQ7fA6-W/[86Y7@ktnQ-ŧ}jb/ IDATH/Wi88,8hW=̪Z)2L֬\]@ 8X@X]`A1@Lc*],ZM:b%(~EcG/Xb|?s[A  K<}e^bTh8 sGW'8XK.[}X\[I}ƒ1jIǔ5`ӥ Џ ]{#t,hClEI+G(  p,@(չʃP6\'r,ai#_Dq,v_ֲ= & |hX]b|C߶jHR vB 6]t%4U+V:ǎbD' #[Svwš`^XO8  p,@_,hX@ el X C嚞N& #$Wjfy^h*x](T>ܚ B_}/{οh8g4` SmP䉼+MkL@B!]%?2-8  p,^T9az<-9[`p_ Xڹu\ei 2C99TSh5if6X|-:"V.xj t7,.Mc[KR%5`qh%XL, ]%Ȼ@$E~ng|{ o2&8  p,^b,qٵq$``bfz0,%c!yv15̘bTOLg]fRun2H \Ə$U9-EHevْ D`kXhr(J>w!p-HgU3S vx;M`z}g;Nfujx5%XlX@`[@ bήuD]7 Z? 9f('.aEA4׌/3dB2)z'LBl.q=LX$h:q1%'9 <+R&`H:4FʚEUs4X@Xcorq.Ek]W5>0;`s:e!l$^AmY5h!RX9kݷBN<Y"b<_E7.|?7Sr`uOq^W _P c ,ΥsG9R!:QG)D58 PGe=bB *"  p,mmbr),_Eb,m~=± ~R_XtOƗ9`l)r83VkR"_sތY>؏Ǟ)?}\:9'/vi Z!q|qozi88 {}KA#|4~ bl}WɣlucD@_,V]?_1i p,O\݉76Df !lEV׼E|-V(a M[e? ~JLZ E^Ey:NՅ&,t8gCbbPYW} jsPVa9oc1X̯ϯ.Ǣ=]rXV/ڎ{{{7UI p@ X4Ӻڨ`T/U19B3'$3͇[X|/)EUV|T 9lTeބJ8)0=j` XX:3GBT!%dn f5!:VP0 ) K :bZ@,z5y( }(MF\ʾxb[,W\&J\F,|T,RRV Rm39ׇRHy>(QůBS ն慰:ʲ @,z \>һ@M{]󛼔bوő#}Ă֙(04S5J(Lr] O X GPRBf&֌*_yxbaEm}OLZQ6`H,H,nXteŒYfœx:k,JcכŹ(նTy[,s"3_/> {MVܚYk}zu UEYOd^ f5;7)vJzTP4"pLj[ſւs,F V}$2|^ / kb7% -6F,X(X X^Tˢ_JIduQܶݓb\zcqY5_cs9fԹqE,)| }[M03Ju(ӓܧ_x W"7cCKBI}ӯUXrc;y[sRgq9y{V*fD6mĜYQ  smBq~\aElQBNTrl(){lLI<{ZJqv,Wb0e ĂVelTlT ɕlePWvE9!DwbIJ4ŵ5DoIPuK7V ¶+kǹIJ<(KY!~F,RVPʕ Ȭg­m_Kp̂Zvc {UA/FrXM5SZbqB5O7y[b?@, YTf䊉e-b~\ⱞ,JiyM?>᭱s洕XX4 u]x4Nƻ{G{}u]iK{3C/b} >892ٞq@W?0oǥ 7OXt}@bAbXXLӓd bq^oMqԛӖ2fh645Ţ~;q#s8Vm6{]_Zt#,62 b+V2b:)8IXf9+5֡W)s^ch(aiv(Pwwuc@   ;-_:T#ӀM/\ z{@,H,H,X#sE4PbRzbW @,H,H,XDx9kͦ^[":lX>',   {*? fp݋b}fwO;2+g/XXX"8 QJZ=?M,򬯮 $$O,=oL,◁X|v?b@bAbpB{Hnv\"R휙8?X(Dq/XXXGqyęWv󈯶\cp/,kDpq /2ĂNE"Rv\TWwݸ>[N?XX_/\B=^{N/3ĂΊawba4zٳΥ}s]99ӏ&Vbl9>34 $$w88<5]g^i|s7iM$ߓ{_Hg(@,8a %J#叜2>jEhERѠDe\_Nb& > u 8p,x-p,Xac  a8p, X ,c  8#SSa/^"w󷿲Nsʀ$p,X|lBNqaaMZ$hqV BX8p,ފC>k|~Ӎf>y_[  xVn^5PIcVB*r;\!#dݎ/I!, ,\l r;~. 8PjNr( VX , ,՜9Gi\cJI<دs,taq_*,LWXܽ[3z/\jp@Xo -a132: 8CfgQ.E#R!8!B1#<^"`s³F$ha!Y!*g"m ]죄>|3JȲ$E&夾 L(UZd& WB^kHXGgV^͢ .D8oEN ~opc ź0&I³: 8{ұw {gW/8ٵb\dXs6=0U|f َo}\~5LSXФ7نLbiFY} ,z2՚|U)ۥ[ñ/|΂PaW't惗łtBh\X[Bʡ̛-*rՓv\UzmoclJ0}˻sDeˈyWGf&DqTa2;*4+Ż),6~.Y4̎|‚D2Jg,¢Mr.Wٸ́F& LVXx>tf|3v-UУ n*EJ##J%LHp,XLLXj_ƅ u%~vSGC up+8wΜ(_p>ZXv7 0iaqdΔ߸~ [ѷYK) M0TUZ}4m!A)uB+,o.c8,;X816S_(8p,9jc߆5i a 1-aqӱP]"$PX}T[`aiO 0IaQ٩P[b1(2]  < -2g+ŠN s}zc9eC9DoH\Gt8p,&F{wE{6OXؖ U}'Wh}aaJ2)8= a7s^]o%q+,,~WXH rwEN۾ >y"Ilgb֩XaPaOˏ_Li `d)b-cQjS%Χml_)  IDATOАEAY4[&G03 V%U̦HXb9~#p}`;$2YqJ>Obq{NKË.|:-ɏZ *zAR}BP"3>:xZXљ?HU' }=\Q.ins=r^>Z]KOW|eW%VjiqĤᷩP,LU3iyyRąVHu')WeOn02MbAbq;"mn.I[ƨsmbQhnX+&˫~ofmPI,H,bqΝnX|w|   kEfŢ껟{H,H, ⡾OQ7Ăzb[$ɓ&[WlbRYI׉'="ĂĢU]IĂb]# $$zr0OXXX\G, xb@bAbp=Ă@,H,H, Ă@,H,H, @,H,H, Ă@,H,H, ĂĂ@,H,H, Ă@,H,H, @,H,H, Ă@,H,H, ĂĂ@,H,H, Ă@,H,H, @,H,H,&ä $$$6f|nخz}xbuA7Y؝{nW?obQ`/zv}-`L?(e^){_5qB]ыtk.JU >T\<{=$f3d.efb;qRrwثuɆΉ'7ԣk+Uu8Qt+h4 f0xXL],H,H,ƈZLnx7\!3r>e=G5Gz7bSƆ+, +mh'T}=xdIo5B+.">‹>iE.H ]QW.fbYtpQL5V.ZkFfS7q:bG2x%YnH"# #>rpH\nv_ŢŗzlimbyA$֠iWqUb+E| [ލJbR,ܬb_LKhJ^ evg_Eb;dw4zUcY,2Ͻ*XO0k,x{rULg;\X<`AcAcGh Ȣ-^ώ$tOJEٱKd$َ+r#U݅[,5O/ 6E~`! 7D{PK~Rcq";pD`+?(%sz̠a 7Y S|xb' /#XXX,` "/\QQΞ;bb:M~DZ;z)X4~*=U~lln,vk/n9XA 6Xt<2Y~ON _7Tz9-ySp0t X`AcAc$Xt2-a]rNPW{(55{6XY| v6`Q/;,|X$ZuuQ|پ,ȃ?ܱȪ;Nˆa~`nbnZ 44KvN7nEyD'vw֜,>tb$z$X<"-G=^J4,\X/}޹;^fY^kZ,Vt,^NXsT>XxUΊ 1,C .P3B@d?,mN"6ܗōE1wSa zҪD㫹"Z,h,h,FԊ`KY97X||B~)vLt]"Cx]L#ov|b&`_^eV.cQ^,h,h,o/3`O3Oط>/X#b-,ޤ ؽA}+RxxRSM9bzqtȁōԪX`AcAcptH}mqxvW~OK- u;#"XDpOwNmMHFv^Rt7' bQ 3>Gs"pZ^ѷԿb#o jrUf mŜ`(\`Q$݇B'=ld{ylޙy$XtP BP줥P $5ԛОuyF,ꬎ$dt"P 7:"40L\Qsm2*Ӎũ^-܃ɊL/{Lol2t6CڱhsE8ПD.νoCS|c~8EK$$i;̞&:NTk&wDy53¤`fUZg ~Ƃb)wW{,cŠgnHofz+ٮJ2k >]6"3XdSb% s?'Ԛy`AcAc4`AcAc:ñrX>XXXV(σT&ye͑%g  _uu8~dƂ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃbn3[ ,h,h,E$=a'-u|?,h,h,fEpk=a@k심GŜ`'X,h,h,,AVČ[ 6G,h,h, oIŻyӇqIǧJu> d}3ǑHP{i-  ǂEm$Vz>gz}*LwæR;sbٹ$;mvB6I,h,h, ?Xxvz :S*`u.:ia&IGuZV[-ͱHwmI,h,h, ?ENHڜbN*G3ᶙ>w=m+kǿ`F~ i R"H F VD",PtőQS[3c;b+GIfx"Yvd߼'X,UJ!Rm[@x7Ķ+hHm|>,U<08@CBǞI\p֏cI  'Em އ\χG IDATa$|zn_cˡ`w;v+">@d=XXX sT`?>6X$<)%3,<4"j<):ֳ`O~\]%!íx{5IcS Ƃ% 0{:Mv|:¹\[Kr44Ƃ:XXXS   ``AcAcL,h,h,0u^~3\Zou`^lU* [$XXXi/Y,?+%z`AcAc~`(GIhb.{X d XXX)w"(=\u=KR춢'@76f4:6,QO.CR$=N`TnJ<&X0ƂHa.vip4`@ƃ\5NujްIo_@FW|7 O=*=   ,VaRܖ\oc41 G d$XXXo7o+ܼr _t#3`AcAcςr~˷S?JJjx :@O ƂHq,s=kг#SyE,h,h,4W'T啳\- !XXX)}7XqܘlUۅ"X0ƂHMngjاf;P(l ?    =Y|1zV+X,0'ƂxApgk/ 44Ƃ:XXXS   ``AcAc|  Qʃ/U 9*XXX:0oo ND~pUn/Q͂V`AcAcD#s,h,h,^, Y̿4Xy `AcAc,^Aˢ~G{^VmϭzaTYJ5>b{+=}W߯ J-٢_ޡ'^i3>_ o:g'@EZȝt.cV`xhGWgh(@Yzakss} `AcAc,Ԋv|(X:&XHZS"G͕LmOLOņx`,.-Gt8Y}a``AcAc,~{\\,ToK[j`XK|]<  sƂb2fSh?",2z{J,v4`Xj&@h,h,:gywoVP%BcZLOXl 1Cن`1o^O"i>Bc[.c6#/=z~r{`b ]őrDkcro(5E`q&v20|އAa}G,[qgVq.;W?TD c^Eݴ,;dYo,\GDEIz5 ܅WX]g, {C , "l5^ojzɧg*C\|1ڗ3͛]!-W$ w85|}t`2fsh;".;XKREȯ^*e\nTRq6mzе'~P'XafO8Jk;Unߩ*Vxm} [GmݏYmko-Ƃ,\s<] ih9b,΍ch\h7".;X 2XO[ZX:SMK=UŚ"EVޟ(Joԑ~| X44`R4LVƪ5O[ We1[`ɦ%=fL*dLTt=ԭ cA5y%Sc!7T~^\I/qwoKۯX@K@;4ͱx+w}9 ⣶%ShM[o,oD5xl))@cAh,h, nOY0̻J/ XľYF\h`2fSh?".=X8s snTj-dͅzi, K6}J銌'}~'EXWn< őThmgOjW(Ƃ`XXt M`aA$ c s5./+X,ڏ>C:nin, z%^PȏX=yP/*JΡػ6?~5kaNAB !bЋd/"B~("Jkz@o*7. =Ϝ29v}dqٝ~y'Z`udmRi,ᇥXwu4 ,h,h,Ş1>jM=uŨPd`Vu mψ,̋3fhX(=r"~/ޒșIUt^nwEl,NﻷV)X,$LS+KX,@cAcAc"XDIesq]*j3]nc1V/rg-j,۞,V766NKӍ6 *7/iUq4ڶ,nhw۲?\9:U> u1X~eY;7 qa+4 XXX4Su_ˏ{F LWbٛy!=3 X8g[,&jX$` mܠXm~ctrg:qE¬Z. j 7]  b75R[:,"kK[[z.حVPEth,jF}N J{hꨶ(ԩa6f^V9\/_VN`aÎG$Ks7:lLs4 Ƃ, Г=%ZM"%No > s_s;a|.{J{tOZma0lpd`ױ]~ X44??`.) }?C\$VZ  ዋdL?,1QziZ֛$v:XAqm,N<XX44?޾I7`,`q,vg)*믭*a 3^wYKl̵SoXևa#~^K˪m&ZFi, " !`Jh0AB/<;J&O-߰r_W_bC8PXQ#>%t]+ySOU-zEl{ ƹحbݪqw|TT;AaWl,ނ=/5`a:Am379 h,ǥ*2 nzCbUҩγc :U$oQԙɪ~qf2ٗmaVџC&T91`AcXXX\rzhDt0aăw+usjgݨ|g?w@ Ko@cXX?XtMÚh77norڟ4cX44XDX44n%I # Ƃ X͍-vw?ceR^z#XbRҏ YnN9[ucF*̉}yJ"@h,h,b/>ZXTB&bL׋"_RV=*9L. >ψ,F- d^=!2SNs,`XX`̹Ldt;J`XW_xǕTvU%mwU0G@cAcqE+9}EXǯ&LE"19gsW ='@~1%%?h:xg'b6Bm?t*sE{%wٲHzF@cAcAY=#T:uŠpXB&$Rd ` ƂƂ`9׿DGJQASq߂w:V)c+` ƂƂ`;lmŗpx&]+W O17Xdh`1.R }oF^R=\r X44 7X 8+R MBN0Ӓ}^Έt"ҕԣۈj{Owq̯HlpNӥȽP@h,h,zv"/+X,ԦuWގ̩:YoVt+` ƂٶXc3pQGNc-DRyw$Fd`Ӿ'W,`XXH_Lvgz_mOzݽ}O,`XX=[Um,?4?;=twSX16ZFZi1`LWppxQ 7ߒLb2Iu qDH;>||%w(, XXXlhF8~IA,@cAcAcykc.h,h,h,>o? `   , Ƃ X]F6݁#\ X44SƗ~b.w:@h,h,>lΔ:{1ݹo_ye_@h,h,> Tʃ# <:e)O/V8T[xC\ X44@}i&M_Q= H\i)7BNw9mE.,   .L?^Q =8ޢc7B,#v<C"Ě0B VEFЗ`tUQ:H 1OUYe IDATɼ4c.ϖYeXʈJX](.&6$s.;yV0*^k*җS9;dnuCcXS_yX,,  OXR>9w;G%e]JF`Fda`ﰷܻ-z/ԅQXb*V1YIe i^ɻ}@9g k@cAc\O[`a~ڕl^Yv`a.P,ܕ2e+f|N`)7utUvq_pd,k)|%etԔ,G9jY ZgYP@cAccb,d. 4]s,Z/T2{("cMEI~'8ھgJttVJ2b=vZl)n O \MvHxз`a]7톺@O.ςN=ˢTd]øh,*z<w<Eһizq(XJ;Q_Tj,Uo\ X44@ESc^' `!tI({s..p"/ĖRp әw79`Qm,jB 6ڞXLe!* Ƃ Xn,`T,,Z v 㓻kN)R8"EZȷh,²zU(!&g/(u # ƂƢ`q8+{@H@`#Iԫp7ցZ4"۞Q]ѹ2@h,h,83d&(wXJ%D֭'ڝH'">Bo X44XXyBYαhj,zbmZ8ζhh,J54J= zT0o,vkSn,aGSQmfEʷU|bT;AW@cAcs'SwXd̞u?Fs`S~7뢹o~S^t"V) X44@b|ǒح6Ŕ)nHxLVLf쭊غM;FgN-tXiQŸ4@h,h,0k=R3lJ=qOlFpqu˝#'Y X44p_+1H q@ǃ=RQ, EgfϵGU_xN{?뢌[}mڷusZoq0o IȭPŗ\U⼁'@h,h,/XF X7b,7@EP?QQ.c Gm91)K UEP,>BW,DX/.b!2KgEňEwԈx@,H,H,.X4b&%S~gGC]]?G?2bq. <{[b{WI,e!{o1XsŅڠ_aQ꿉#V]~ex8v{R<hc3B;21EvJ}Sؘ'NO'I)=p$FcHQgX\Qى/^>;L4^X~͵kzo|ЯQ,MK,_l21߯4N@,H,H,.2zzytwg̲7.+r_0[;s(QM}t\: _W2m0Mz/iHn;fM&g5X"NEDF}%s rFrGb>8}]&Ѽ^[K (Ab@bAbpBÒ ( KY*k{E,AO FXԷO91dk;X w} b\WC^ڵuu gQ.WpC{X ba,m[U,nh@,H,H,.X|~n- =uF!j&(J鯖yc1y3ń9߬bRjE=Xbkti4ٰ;⣽n5Vᬛ>N%nB Lb[JYsբf<5j b1/ڽ"b1jU,'R6x=<W(hbbDZ Y=lث凐MV1ö(| iDYE-&ꌋg[Sb@bAbp5ĢXƓ"J,jۺdYb1&!ñ} vl7mh'*! rNxKbalĢTZ9Uq)kbQⰖX!#j4R,TBmΆ϶(#bԚdC{Xa93\X$ 1לOS,j   /@yhK,F[?:UN. ۊ!9wmГCٮWlſ5AX4(X4o"j|@,H,H,XHy%gEX6xg+=gno=m@TXh85m;?mf|ERnd))?X5jZm'_m(BXZC\S,֝\=x_/T_XR $$U,w;Qýɦ,xٛOfe+/8j"be.X77G;w(q{H-%[?/2 NS=T#-ג**Ăࢋ =v?ŧۅy͹7הꡚ@,H,H,.X|yҟʞǶZO   Ģ3Q\=nLr& b@bAbpi"5~GϨǽT*fJ $$S,R⓯K4JP,>! $$W&z0} @,       @,    @, @,    @,       @,4/6/XT.XIc8,_ 0E@L؅tJN-MӍqڕ9rע:4iB3|``K"3+. łŢ'%l;=9.ڶ=dEE\>'``I)َg|1eࡰx"<vXfO|W޺g]E䁰XyaAXUaﺯ{=z{sbbKan^}', Bio.ބ7O*gosOR4/K'xT: ~R~ϳP:QYBz[Uu[7~H9@X,,=dZG9ىC7b[E٬6Lf"i|Q37fC;q*f5~pmg}ۺqղYdEQJv>\Y Nj̫tISb1Ȋ}49,)G9!ҩ!!MUrrrY3k~YTU ͪRy0,M٬ǬvFK+7rŶeb(bb3aq{vVRKaXt ˢY d"cNa1}w=9+ VbMN3. M۫gk,Z=8yv~j o7n*@wo'2 łŢgbgi]-b:)ى# }jl؄X˥/;\~#pZEyYX|=K<\܆ETXGaio]8@X,,=i=Ӻ|JAXp{h]c?X (y '`Vg`E#r0/9qa&TX~už뾋o łŢW"˷53sk$"a-zX3b~n.7OXDњ٬xSTGâ c_x @X,,=NT+;o7 {c1.2w?,ږH6\p> S3",u5aXXpX~C\VXLg\Nwb*J۹\! zg_/BS]q3&GN^EOEO~^+aXHl6skGzUb4+w1-uni{^aXXjX,zo_yo' &uB}o%;7߾JPm?Ѹs)wb]N^EφE<'霿,aq$A~X|X,s 7\c$yپ Ew{4̦ٟG.'[('/ łŢgBO ~v+o.w㽿z޻a#"a1?.8[\Xh׮{}~}ۼe9@X,,zZD&#aq%zj|Ko"ϟ [, G~15IO~^ WaQXhj{M'-}5xb7[ξ̬eX , ^ HZ[%EAqOqҾP ޻@fQׂ_K/jCbQ{k߽݅…J(wyӨy0"INdEE! #)hX)Ʉoz;+vZuؙyNSu~w͋*,:T#_=e s"X,X,g3cg/g:ݳ1,nϭEc@Xte$ 1 ł ,, Nc@XaXX aXX@XaXX aXX@XaXX aXXuX orbbtF> łjX#aXX݄+ZX,X,B;,& ,  0' @X,,@Wa-[$aXX݅Ŗ ,  ``a*rbbt ' @X,,@waaXX݆֗f(aXX]f޲ל(aXX] ,  a1eeF8M`` Uky ,  XNX,X,?|6mXl@X,,?!aqѶ-abb3R"9Ϊ[͏aK<*,֭%N$qAl/":aÁ$mʟRJ '$ s&y%\} t7aޯLV &&DP``+,䃰xRXTZ2$aXXpEXi @X,,{H?9HE-,tXԾ[7<k  łbXvINnK0K"7\XתnXNo#;ph%>)̺أfrcgimty|i\bjo , }b4};}ۓn' ѬR sQ( `~q|MAX's.ō/-sY``/,9'9}^d:b&E}_TRɒR6 Kj " U6@b$R;~çH.Rc##s0`Q{nmNx2S``8LXX񆐄zkk ݟQ*4NϾk&~xE'~)Un`G( qW<# , D|vP,aVҎdbvmW*r_*h ,  !.Oo_  ł}lʯ$AXaXXEyAXaXX|/ ,X,X,qp``@ ,X,X,@X,,@,ǯ~ ,  +~0`` ,[ɟ}y~ÀłłoVltX,X, `߰``29,X,X,abbd   sXXXÂł,,@``29,X,X,abbd   sXXXÂł,,@``29,X,X,2:v(2'pabbif㷣m|ߥ XXW d>(8b>kK "߹kQ&,bb^a @XabbȒQ|1o\/lmR ŶH\yO<(u'¬=jâ[ pa^o#[Ÿ‚łbL *ס%Uz}#YnxoK }Ԋglpabb-ote7g/xyO7_Ben!24a!|:$(b&E}!0?0Iz< ,X,X,+uL)W "&,Fy}Gn"]~_oaqnXX9~XXXSOx*:m*uXu f\1a107$sݸND# Ϸ<~``xo zRŜ|Kb'JlGK5?HE,&voNifF~kaQig?tS{*;JVvԙbP,R:>8W@skb۪lemŻa?ΆF|SoXT?7m7ʋ+~yv`bX|g-bw=x7٧^ZbaX(baX(baX(baX(baX(? ?ذP, P, bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bXw}>y{<󹣟'k^YaX(0r}MFndX( S{s>NX?lzy`aX(H,;Z?*/췿~峭) Bn{?Fݛx/ ӳ>0,Sb 0U W۳mv666|g/`X(,^߿Ż7~hV|u B%ڃ_sm>_3$>aX(zX(bbX@aX(zX(bbX@aX(zX(bbX@aX(zX(bbX@aX(zX(bbX@aX(zX(bbX@aX(zX(bbX@aX(zX(bbX۾gEbaaXbX`Xܯ/lX(a`XbX@J> aP,        °BBBBP,0,0,@P,0,@P,0,@P,@P, P, 0, P, 0, P, 0,0,P,        BBBg* P, 0,V (xX(`X"NB X'BP,0,XP, P, ~gGY.\g^,fab+ J,՚<8 򓏿>:z{YWy0,@P,`aQ L9lNak_nAt0,@yo P, XaXtó\&vl#\.S“sX E/ `b1PX7,@P,`a K\?q5O], a9>^ P,fjݰBErTwi0O^,+0,@qoO P, XaXT([DvZMZ_|Cگt(M5&<>WҪ,~Ÿ`|2ӋWQ5zۈ=?qr/;;Txqqxy{~װEŎs;  Vf ;џalgZӰy6XT&~8Uĺ(wtz'B^!/ϮT;J&xw@7wX<<>txԏmbXbX,VEۼuN bIhN_kʌbᰨEV^s4,ʝ@'_4- |P*>? 0% * W7$b7 Iӗy7n-P, P, XnXdJ;fX.aqTE M_2 bnss&;!r&4R"z[e3膝J.)72գcd7|9 n]cq=y.m7XIPVBn}7" 8wrbaXbXrX$nצݾuh?I2Ţ6ѩPs7Jj*Mˋln". Yz42WSoO ޸T烫9bR{(P, P, XrX훋3JZzïkŢ֒/.ޮMBEsҷ]ű1'Aa||9kXL>9=,A}gXhh,4XɃEawD Vҿ{5& j3~C"[TQM|g5}v5z@^rZ^{ipTa C*^%D$2Ń7p…7IHN\*</K`1V 84XlJpbk1j"}vɣ'FObG1'V[E0D,ۃZ'/DMMJoHMo}G Xh,O'[cQ "I $M57ujTf*tvve IDATVmFdw"V7c_񟃮L;Qխz*əhsNcEͮ+X|}w8t<@,X$䁺 xQLډJ%]e~eJ1b?{;Q(Zm=G;NTպЮ`173 Xh,šƢо;Q;,$\ bE5>Dog<֛/5;X䇻w Fc/{L6 Xh,@Xd"EwWco^d+Xd0]k|E@1׊yXX]kq+7F` |Hc],`qLDbIT'X$Xw?m#yGZ d Ab/Vp!^ Rtn*@ЖFGHu+T'q8 <;W߇gfmu!   5Oo?uO_&u)Nģ|y$h(Ă*ԔgC@b!zP.~uC'.o 1T)?wyFZz67hp_wߔW,FjLF, 8)bJb!_g_'ѼXD:KN1㰊Xx{Rvgm#jJ?U vq5J7@,H,H,I,-TCQHRI~-nv`_[iPulh{ uV"XG}n!RWXi@Pb@bAbp2b:fKVXO[|Pu96Ă/S焷GoQvĂ:VWEˡaDIsCmsp[(mu3g ǓG05rwj;œjԾSE,^x{s3U{hTbqr 8b-(4²vm[}L,d"cYjm9N-R <XW}3J,6=U7 JB$D_eïIJ;3FE{zb!xo+x8bDբnK9Ăŀjâ@rs>[Va7aZ,̼^=XlgIULIFTJ@Dg93KzX<{"?bwE%R^|@,H,H,·Xd>~$Ģ[)%rșT6`!30E+ ŧA3-2BP"Pc~^8}yكv|uT0ӓPЃ&6 EdNiBYPVA3!zaegf2Lf4cN|Lͥ߷La6oQaZ{X ԟQ^¢Ȇbnw33Ss]( }WxdX{bq9O9NFX;9),+##_jg33]o>w; Oon!.6A1W \#?w[7 Cf+j ߷7FWdo{Fǜ@Xb??yqgŋ#-,G"x/>{X7}m.{[Bc&h˵H|~2644s`71#Z:տobAe7X,,[{Y,âX_S*af<vag%ϥi14MOAб?-]~^V_x3kGE~fwS3Q۽-L[X4, ԰*/|]{\n?*/]XyOBēð#fqCxĝWQ_sqsr]xme`Xo=,OOS^\?=p?e9`XWwrd'9x˳Ns ,baaݫão;i⟎1b@Xb@Xb@Xbaba@X ,baa ,baa ,baabaX ,`XS, /,co;" XX,⵱x3 Q< ,ba"& a pC `4wH`X@a1_pH`X`X9,9$ XX,x'~!@XbE7 ,ba~"q ,ba>8~A@Xbia )a cCX,m(?t+4,"-9,R/da@XK ,/ػw83a1 3 (/V[D[D4i(TmmΧw/3kp]?$ϭy0 ۫,,./?^\MbLWl]ѮIYa1ftdab@X l`M,F]aab@X|ǰ~$ 00OO? , >?XX}ҞX|$,>_,X EOb¢:]M,l7ן9,},Cbgyb{ְ&Z( xNXTE۫&O,'& ,6hbEkbqM,PTX@LX~D&c&IWaXBX@tX&H'YYa޾-No'# ۷ox|<om~x +),a18[U|=ؔ0O,vaO,&ES1Xs¢;CX";dq98x޾)obg-¢[oL,avx;XopXNobĢuzۧk޾o.b? b-}jOⱘXbbb;Zaq[M,bo8C(,W=,Z,Ob"}b1hiXaQX<,|<,Zf1,,Ұ0ȗB?4otXanLX5'} xVXtXdDŽŻnX+,a<}9}T83nXlpX u&ܰ8O,(,va>]HY4 ",NO'JfXf,§a/ 8nP{ańZ~X (XKg,&E~hX3¢xboV0,N,Pb"*{+;^ogkkNN|0qKP} v8,޵ /͉E2i@LX^;,CY4B ґOb0O, (âyb¢u!v"_ ?i@TX$O,g,nV5,v[a޾ih=i@TXdO,Bg,nۍ] ^kB= P_ko!,a1fu}-T記X R/P͎ˆEoZXBoo4 .,O,K&Eoi yB,|ӖB5^Ű¢h.Beo[KV",f7 qk}0Ev꺻*mvâ77;O"bٽf_,,j gkaK}PddXtBM6: ^(,/[x2,ڷG> ,,.a[K%pX4BkG% DEEuv;mo )av{;_ 5i쒷RSb{¢\ *[t-T^ȗB7ngaжe WvO¢{bݰxDaћ-,:,ʽP> r'aEd IDATy"KY¢LajLXL|}xdQ^i@TXԮXO,ngx WBYԎo4 &,ٖBPXm 7UX§1a zb~_ś`Xb7] ED^ŹOf:JĢ}/ *v;,j>(o4 ",gx'ۭm/%I,,|EjpX?_2,~_ۭG^O"XX\6 /,޹%aTD[L;I' $0Hc}]Hk=ꫪg^ſYX(,h G/En;P?LYP{h GZbX0 gO \[nWfuddfP^ӝ &/&\]]}})>w\'>T=i"Z^ݣ{Mj#b<O|8۷x<>]^^noW;N$ԟe]x,h,^`c*.W\NsE ӿ4Y\1\1M%X|6‰,-L"iPb+cbC{ Q+BتvB`&WB,]qmKj/TBh) ,Y\lc-t|I``qmpWS]Q OXy¢ U*uw bfBx|[,K"W8bh0/uH" +H,,A$,~-G,`1b^b8 )Yؖe!{y *I 9%E1xi M|W4NKXȊjjy ds)YKBYeehYeug1NZ+z!+L4QTEAVH[au+ؒ¢8&^IYX5 `? %ov'bW= +-(/ +p^8mH_ q#i%;qu{$T#Xl2Xt!EpV݅F^}bWY,(֢+>_< AE:T -,vPꈅrl 72X(YY(q}kJ,w!\kQk:c6QE-E^" ]ѰJ puDLB Xa0 g7Ynh,Za3T,r,ż`9g1ULu`EaʲY3 ټbNY0{)ز5ӲʬrE.dޢ 1`q'dE ]!Bf%TEk'TOw{ņwɢ1 ۝,bB,R=,Nk >0oZA-* MahLB+O,RpE,k= ۺeoqp6'gI9X[uE+Bl'^EBg&X TEf!{ZZĦ- xXTN%Sd[atEW_Q6.",tx>"F 'Xj*x~]lYiP"Y /RГQe# MW`1?z`'XDeuʢSmUs]B*XhA%d&" c+zX  SݖG,^U¢ /#Xx,T=CYkf5TSZ(k :c,dmrlRXl yugnYBÝRB,f\pZ\͌xXn(?xkYq!CWv^6By ),ojME딅QTfQ.ph/)cPabm+p AXtn &*X ײ5SQBH,b3X,O…q!Sd[QtW$_ {`nPE= UNYȍeEY앚E,n(i…Lvq%Ԃ/$XBV1(GW_/XȂE',V 7Z`ѫ,^6v() ]h8 +-Ptg peD!dEFWB,85rX`ѳJ$X#y_EU蜅 %EZkE!`U>h٢*X\ajbW(¢4,x' dU~7 e䕖ʼn,,b`ameo톳np{M<%] HK)в",M튽NWW\hnMaU#XYJYu8.= GZEk1 [^Qj[e!q3WU aѬn?yS?Ke!VuhE[pѶT.eE\uW_+U*Xź ,^a4TpZ`!Ϟċ% Q("v+Ⱥ+L+YOX X%[P5,BBI,-bdE3\1`i1Y\jYlE+sP`rEJ ͹K Pfő8-Hj O\ H'"ˊd+pa( UтE,PY7bSB&*h `7B ,bgE3Y48M]1FgE& e*B8ն"v+L+ڹGX]]b-b"-zԵe-$ >wø6c2Be5-[$*K g;[yn!_^rцz(+5aH[ŷVB"vEoX\ 'g[.CgbxE1Z"tݐ"""""ڼY"Z W<ʽB>hua[SoC^-l!w y|NDDDDD+2E?^TqPwvH+{P5W^;½ OPPo/Yzj1>t1GDDDDD+"/U6W{P,ƋP {jgXH[8sPd!>u7ZBg]" """"U ӲXa 3W נ砤+]6X8{"fv*}v֌zH-Whza hkXPqE*c]+\>3kW!`1[e(e(YFG-.+ h KK*X1Ǡ WwjH_\.F7F|pY-n )Z """QD!q[EuJ+ml[1 XOCB|j\-grAUSњ݇)Nb*b`mqEW_/BklPfPr! {""""zpSI>8" +Vte`}~[<-j_["!DDDD'T1b+Zb0Y? ,*Ϸ;eCi!W =[0Eq;큈h O(Wdɓx]"IPDDDDMB"m+\])pECe>Y͢%/'""""0Ȫf^Qu{.B] uYPh!iQbȋ )՜ADDDDԔ=SꯊgSTXUHVT抶{P}/,EtJ<ֲ-BZX[h\$]H_xƀDDDD!# MHQ$SHTUXQ++۝vEtKhhbE҅FDDDDD NtM1SbE0WqEr{XTt~gɢ-x)a* Ylp1"B SFcỊ9j:~/P"dEWz`qiXtˢ6Z7lqƅ  ! JDDDD'()4*U^s*?ZP0HP(1 """"r긚OP!UQ6W`qyX̖E--..4/Bb-:PQU1͊8,ކjlapty+cEsEz-AI1BBB\jd=ŜP-hl GM """"Z%4O-L1BMR!+vâ.hҢE( """G*ϯUx+\q|XLO hEEɋuADDDD4))*FU4s.B] 0O'imaqu!y}QW9))4**YQ<>.Yt-lalB"B """}PEi 5V+.y_ eG vȸȺP """"uΤ4ň UEګVX4ɢ-. ^TDDDD±<ʓM.VȰhE4Z"BBz """")  IMY8,*eahlB& """5Εi5EQ}8:,d1E[]xXDDDDD BBcIV,v~Xo(^Zpv ˋ0:O9Y'?(IV犫c΢e(hBBź """"/ W* V̜+Wa1WZxP FW=JGKGkb_Xt݆ dB Z0VeBJ8ЦȨpTƊڿ7ZdZ4BE@DDDD.>3o*2+ކrG*-"\]XDDDDDK BCE3+,·E)bt_xNSXĊcEfeµE @h!$|PSpUEf# MU\ """"%bThUHVb^q1X,,&eF h? """"ZaɊ \quuLXt܆lpQ"& """"Z mnsk0G|Va~p\k OAUY1ͽҴbHzcfW"iY"lu\l" ntDۦXEE\taf)jQJL[TBh0FH"8+J׊],řXŶ-q\|\2Zb]문+FiQ!jI]ѭ3ຒ"iRTlbҬE,vExh )~xoVԺbⰨw,.p*)fEKWh9ZT"Sq`- #*jUq\1NVE".}66uߵ8t+BX<;T-EK.RPIlUNWœC5EMq@,n j^e9-ʼnȵEPL6ETSgaqWZq/Z#,OfgiCxT a!,nl0.¼Ɲ3h BX- qQȸW}2gU@X a!,E-/Dk I1]U E/Eƅw@;IDATءMy^%,BX deі ;b;Bg8Ta1s^]ԓ2]= @ @ @ @ pSeڝ)N4Թo^6}NnSe)N=)sK @ @ @ @ @' )<\{>ݙo`NsIFm5\w̾϶SqNj @ @ @ @ @`rb19ߜ6mmuӨ5<_cU)L09^{.6cc3}}DLZ?xcZ @ @ @ @,V@vx5}c3UfucVGc.6cc3}}DL†&xC%@ @ @ @ @` NSоvc~/Ԍy̪hve9א>vh>=vOz @ @ @ @ dM1mucr1ד;Y=q;61C~Sm2~#K}t;k] @ @ @ @U@vt. m/$mzNV/sYmz`뉔k_wrrl+ĘsSG @ @ @ @&c9ܶnWqgy~rM3>FIONۜ6Csǫ>>©죟ig1E @ @ @ @biک~r*wnHΏOi9crk!䴝s#əcИ)>%@ @ @ @ @]sO1!}洝s\̱LOqS9Y~nrcϺ匓ӦHr5?Ip75n< @ @ @ @ @mTxqsi&:Gn<lr1~njcGN6Sח>uG2m6E6䷅f @ @ @ @l ώkS 3mj˭Iv0F9kSu65Gg o @ @ @ @ H}a0gj۔9Ԗ[2js4}M:Q[xtScܜ>Rۤ֕;6xRg̏zss}"@ @ @ @ @-0ǰXs']J}lml]yzSjss4yenjܱ~ nbcGJ)j<)VCN4Fg:SWK @ @ @ @cGJ)j<)snHƘw_w0w# 1^N)mbk7UWn_Vmusdڄ1  @ @ @ @&,;&m_jMՕ;v}s4}u2QkKxt:fN6cUغf @ @ @ @,A`݁崏m[W{LmLMl_)u9o׹>{Ę9n_^rǶD]̘15A>>9d[ؐn) @ @ @ @ Ɏ;c.>nr+b~ butO=/u~Kxt:VjڹՔTNr~>7215 @ @ @ @)`;5KN?)mbjǨ 1}e>bkRꪣ3vױ6sԹe/1<5 /ml}L]fWEh͏'~HԏxcM= @ @ @ @X:CJm[y :su:b oo%a׹!cmб#&ŌюOXPcv  @ @ @ @X#lX9ĶP~_E|x_pb|w}gޘ7 @ @ @ @Xwg,~RCS 綫s~B}ԏNJmۑ>cyR:4d1!O5]}4c׵}c~S;/ @ @ @ @ @&?XuCmhWI}L_6Ys\0:1d1 zy_OZ @ @ @ @ n9 l3f_:w!P_ۙmkyE/!5䎑.T?}N |c;ַ}sh?}˶t  @ @ @ @XV`kO#>Tj_j_̫:C ێV.xc$.!<5䎑.T;}j С>F&2om  @ @ @ @ @` ;}Lm&Ԡx[}'v~!ͯ+Wט.^X9;ͶX1!cĶ;=VSj˃;C1 ݃G_s{<=0 @ @ @ @օ^G؞1֜GLmf[cS)EQuB{ZvTcr1r IDATv[ãwbo?/7MWq_Сr)zJuo=Z:th߮  @ @ @ @ @<?r?{~{enͽcQcLzGl#Mv!=r9Qx} @ @ @ @ @y[>K_ljci Sj+6`cΩ>u;z9 ՎbV/>.'Ozꩯq_uE @ @ @ @ %>[ۿw?21)}SavA5}7 i&Tb$`x?%>iO @ @ @ @n2~*buec^!ޡmjl߹bs.}5qbۅ"s=_df @ @ @ @ @ ;-)6[Wv0{Z>cy&T7ug_~0w3#@ @ @ @ @X>z^\wuVTRWrkSM?6[W69e]mM(\ gnBu[b/m#l @ @ @ @ @ иZѐzlrm y >d(>tcۄboogz꫇kO @ @ @ @ |_|7Cձ!غrSͧ 0RS3PB쭁ƾ?p)\4Ҿ @ @ @ @ @`>]t jK SC}P;Zrl]n})IOjCA;Mϓ}j;j{=  @ @ @ @ @vvvl,gw}غ:QN3e߱s GdNgNmBu 96#. @ @ @ @ @&(bnU Z1}w!'gcD/hu)uPMJX K XVGFk] @ @ @ @ @,D`ggF=5Z_ʅڴT]P;o̮ݎsIYs ;p9ۦnCxAO @ @ @ @ @  + CU©wl <~ rĞ)ؐvrL9cڬ;^yzc 8ٚ @ @ @ @ @,P SCWsĞ)񺘐vrL9ԾcSo\/>jOi{`Z}njN @ @ @ @ @s؇BCU;~oljx<>$Mw6s;ZCLJjM c @ @ @ @ @[`gg=7wEžkiC66gaϜy ;p9SWVZovdp5%@ @ @ @ @,X`/^pqS{377۵é!5E1;l8ŜR 羏 lC5}O 왧Z3 @ @ @ @ @jArC}P9~g] C#>tMg̸5@vvN1>Cc>V}P8}o!2`Z @ @ @ @ @,T`gg{lH= z<.}TL: lgwpsi3V$f1A67d?zhqw_ǎ+<{N;駟^:t(W2yU+ = @ @ @ @ @ WSB]7u17;ys=][&iru.1EN=vN1m  ~BjL&Q[3,=sW4Em" @ @ @ @ @`kvvvNY}`{i ·t={zWcNhhh @ @ @ @ @cۛnky]:h>ug8ܞcܔ1bkS]CnZ/d؃3~ȑ;t;G\Usu3tF @ @ @ @Fd/ Ykߕk[Ȼ/ k[{2QƏ p2Xu2FLmj\n[gA zcNjX<$7z뭑e^xh7u^7ʆ @ @ @ @yk^zV)axJmX'-&v7ePmuxO ֮#~[n);6;x`qE\U-j1 @ @ @ @ 0{ {9m1}T]}56F߳)}q6R3x7qP0|rI}!`j}Ĵۊ;43,G׷u^\>A @ @ @ @ @9#Ğ\OLfC;M칙9ܱOrԾccC[}̳qR])}Nd/o>zd>yU 6H @ @ @ @ {Ar U(:%R[wʻ)Ϻj859uG)㎜6w^qg :js_F @ @ @ @ @V \GLM_]]g]} OM=;S: w"b7Mcof ݺ~ '?9C5.g&+u^b>,t @ @ @ @ @h˹ wwʻʼ-N}^הyJmֹٙSS?)}j7b/BfMwJ[kX?^7un*;sk7Y4yU5"@ @ @ @ @J`ggC؀{ꫯwlMW۾M=>t/4I` b)C{szz/p ֯VI'/ek>\<όu^>,t @ @ @ @ @ s6)뱷U{ 7Bj},_hEC6PAXr}7{߭VOOՀ#Gwqǀwyg\U-fB׈ @ @ @ @*g$co^+RC6msk ޷6]gj̾m(IFј[U/^r؛ژ{L} ѣG}cG*9yNqСpaK\UMuB׈ @ @ @ @* {9Ʃ?bv1ƫ_lP:jQs |  @ @ @ @ @ <3"ĞXoK1nhrn v7ucvgJ<6t~+4`wTg EcW6j1P=FoS_(^;MYYG][n);pK8&fo)йXCN27PmJ=vuzl}wAr{[3M.3ΫZ7& @ @ @ @@-^ί Fݦvڶަwʻ> >6tf+4P;1M+TNK}G1ޛW'2;ɑ#G;#m+>A}4u^<>Q7Cg @ @ @ @ @lvvv(3>Vུ}>w[M׳>SjCd̾Bc:(sܔB wS}6]_VnR0~ǎK?M:js_f*&@ @ @ @ @B`gggdϹu=M̛׻x},ԆИ}} vGu(|8'7\Us/2 @ @ @ @ @ K S9 پwʳjBH9@ xLp>H#T>yZRڮ@z}zmo9 @ @ @ @ @,[`ggB)|^[mR34jȼ㤎:F(Lgscc;Ќ2t1R1S7u԰z9^l1mu0z_[[ |j @ @ @ @ @O`/^.-{zl]8|lнOw1si;9!~<=!.Pz}6Tro 7k?lZ}|Ӭ/ @ @ @ @ @e<b ӡJ{[զtյok}ya5d1ȨclLgsܘ1soc/ ןM ' |j @ @ @ @ @O`/^. scHMr>MƞPljXPO @ @ @ @ |DsCJm=&>VC31bѝNgs1c 6$sC{WcBߩt97WkL džڻ]Ć5#B= @ @ @ @ @vvvr#{NjiY[_oۻz_zV?}a yJmMc2Ϝ { 9AP2mK}uGV @ @ @ @ @` Ԃ›)WWm~W;ys5t7ب}CoϱSKy߻mUXvd  @ @ @ @ @^\t_=}զٶfm }&TU[z-9VSjc}n:tyn*V/zsCvݼ^ͷ~#  @ @ @ @ @`</^. 6 }^ͱo}mdo R_Ѧ*w(^Z׶~K{JX3~Z ~  @ @ @ @ @H#^ 4챁غ}cnVS[SnDO=yS9 {Ð[׻ڧٻjOxZ>i @ @ @ @ @ j7 neO;T[߶>BmC~R)t>St}{i;Fгd  @ @ @ @ @@-^.<'{{[]5fʿmg5U+F}Af {߭@z}^emmU۾v 24%@ @ @ @ @,X`/^0b c͹Ul:m w {jX܊C؛jgCS @ @ @ @ @ 0"^>to{Vo[b~t=NL_ȽyRjcO}n:tyӫq ˱)]_A=nikcO: @ @ @ @ @>+ {ꜰzfhVSw3ԝ:])AS:j) nuSaW]W fO+؃ @ @ @ @ @`\_` Ԕ̀|,]ٮ]fdD=4fCߍロv{kx^}/EW @ @ @ @ @ Ԃnd T|^֮}Pz6|3P m @ @ @ @ @ B1fMwU}VWmhlx=x]'*9 Lp}\G/z](UnB]ys6 @ @ @ @ @+^y{WX=y ֦zڌz9Ԁ{s]j  |-34flF؛niu܃pz5V96 @ @ @ @ @ Ԃb[>4 Ǿ[f4#~PyP>sѫy ni eW^9  @ @ @ @ @zllg1mbw46_}O"Z>>&^5t#{W065v UazI96 @ @ @ @ @ Ԃby=m{VFj[ػ)fH}Ц{cB_>SjQt 7UC}WM[`dO @ @ @ @ @@O oc麥Yf]u]ٛ~W#aJ 7'Or>~ {-eW=yLffˮB= @ @ @ @ @抗Lp{W+^BKyV[wwu0GDb}ä 3^Ro mA] @ @ @ @ @(P n`Y_}߳]ۿ9m]M=MiI!=9'OL>>JN/ߧko>iޤ^C׻ {ʻ0쩟z @ @ @ @ @ `{wU],}Y {đ GtsB>SwӦ/.&^b5ocHo/|{ޜ Sz @ @ @ @=|>]}螢xt #׵ @ 8PziO8'wl-Nk@`?u^_t߫wu͚4V߬ļkim7>vYg9543>SDŽқ󎹡}A{[;oWo-~3AO@  @ @ @ 2~]7 oߘ gu0FWP ЛF~ٕY9PF @ @ @X]wmk7,Nstq˲ \_؛7mC+pAK ǜ} {9r_wͺ-'. !@ @ @ @6!pgϷ wc @zZCy {Iz3wW] z_w=Hћݦ_w>^}AҢ}W༪u97o#(#@ @ @ @. Ⱦvr @k\R-^ 7 ]o[,c]H3Vo[Ѿ6m;ZchK }"3X/]B)A1B'ݪ˷ۻks @ @ @ @- Ⱦnq @ٗ[\qID=tz&rq61ԟݬ]87G z)A!A1}aK˘zv {W @ @ @X H d_মqI-Arԛۂ~Rj4 =j_@ muAsDov>6^[dI 7kcZw}umH:Aȯ@ @ @ @ vA( ȾM]jArP=fMﶚw]J>lPp=%R۷]ĞO'543ɡ} s*T>滶߱5ˮ1@  @ @ @ @`7,Q@}5]_`DM챡z]Ϛ~p3YjhneW^ @ @ @ Au(. Ⱦv}_sKs;{ 17^w#ɘyߐ1sknWo'%^M Wmf_dc @ @ @ 0 xz"@+ Ⱦ~wˮcn]O ^}W󯈚=s7ܖSw?@xgLܚuۂ1Һ.=3^ q#{砞 @ @ @X CKd_NZ-V}wyw߳fMレؿ!>ь >f {W?)7Sob/=6!@eW^ϊl/>cw7~ww~bk` @ @ @X w @`P^_sť=*^C9zm=zwIĄi[ wzPz~]7Wcņ֛7GGRt>T.-GŽ݊$ @ @ @, Ⱦݵ6X 9N ^.yK{۳ {]w[M߳fлզ]4Q[3F GwW8Ϙ5AM(^օjM3|0{k쩟m{2}O @ @ @K_P|_ϸ)Ņ`^[Ȼ3{2{ .(%OkG-Pq_(n>RT\[U[j @ @ @~XwǮzeM8#7QO・/=~(ޛ޾߶z  @`F3ڌ-JG\I[ eۛW=۬.zFAwD"񚷦yvzm mmaBo{w[  s#7Sh >w@q;??'˂ e;q)^MÏWConˑ"@ @ @ d/o8 W8WIa_ XspG IDATpJGOtͻnKdݖlՄjAr]y_Mۻ泮硿1t=?w  z_1S]]r~mWN wz9S ?+&K`@̭ncҼ+\"yg_tF֟ړ)~g/~Mz|(~>gY%O: ߿㝟*y'@B @ @ @ 3 Wg,obrtjf׾gO~j˞_\̧>pهgmQÇ×!.6.os Y<бk_T|/:͜쟸U}纞q߾x޳8^ſ%Y(&@ @ @ duٟů'PEv7ynׁx7x^\ăsᣟ)~78湖5J}#@ K@=M= {Me/mm۞ן5߷{zWo,fYdb}ƴߦ {[D/=bo_jhިެ=&@=d싊3B7~Eonh3Oݝ?ſOFO[^V~6=`Գk|=%+^}{h @ @ @, _s[>?o;Kk7_t9YW%u/8n\q'>[ 釟Xd/ﻥ=6^Vmc޷Umc پ2&mLcnb/Bwz_c7d 4~3⦛.>}>{~,.yS {RgY\p?Ic}ݷc1i3oW>kwiWQ2OW}K>e_sf WyxѾ-,Eq@Q<6MﵯzAW>g8t#{i,Oy?~g5 ?\'>`񱏗v='吏sZqg/V{83*q\S}HG @ @ @- {3tow/-x#?hB_g}) 'ST^|nGo\~V)ȾUe Qd/U9afz3V.f>gʘ z_1doΡ-^z 5omVu&pû3Mf#P&t}GwoXP{^Ư ~wf?29^?(n%.yg_H/>AI=^3/,Wy~;seo~ų7|v#YNw//*=gC7}_P(e(g/3OO[/}zG闝[|ϫ^P<9'sm-~woٽ} @ @ @dǯ/ŅϮ >tXtC[︹w ?K}Ew~_#O} \ @ @ @}/ /7b?ULnxeqS 7][ nߵ;Cg}x|(vч.chO8tJq٧GW,<ăS:\<㱷zsN/~XqOr' >~d/^M^վ;][},jٛ}tϯxu;C۟wLh<;gLB77oL/CzԷ7od/B=٫şg{e/~jïO{Anf;.<g>PB zHEQr^)*"EQPQQ@, E_EET ZH BٳgN9k$9'w<3kQΚBl񃎸)fϩ.nwۛy_{[ +lo vbuOtߝ[۾N?z/u6Ȟwwm\ڪ11xPY({cONl;Z%X}p[ӿ]31ξ d {;ƨfqOM;nj|nR켇k\>ƑaɯeG|=;.+75 @ @ @}K8{)S0l٦e~q=M7Y=޷&zDbś3/N\P /. fc͑+yck{ny}al̛ >mb+F{?垊}['vA\},I/NYxk=,{ȕ>}gܤB֬KFD+} g(^ץfkkorVyoTTj+%4xlϔ=%^L=5^"^ٛ껭@A҅dJqtcl2u=AJu3:ʀB~pUz^m)ƽ眶Sl>ٶߟ[5r+o|!~|'Ƀ7#?_vُVqkؓ'|^qǴ]k6~uG o~yT1&_a}ˆ}t/>:?GnV[paO]tudߵn޶wܵk Ww_M_do_7׌!Vɯ+9ig  @ @ @=K+~ͥ_W[myĄEuF| G]tX['vagZmtԞ+-=z8nc yǜ LrLE^7^Hͮ~hTK?{Idkcy6ߥ4h8S;ņ "K~ -cC>M!0_]gkYc4# ތj {֬j}F+mk\^]{ /)Dot51^⺁ʊak:d6[Q80U˯\qPdςO>F❭}LUxFŭ ^x1BxxJoΉylUt\9JЃ7~bNgo8FO3}|z]l}=?[eK'YQۯo{GOx&į|a,[gV֫Oe[>f7{.v{徭=R3{"v @ @ @VsѣjiWW_$+|hܿ#CjV.ںpğ.?}yC>6:vyz k|<´\hUc]6E-1)G8{}# Oxzj<2 ?ld>֘0arEAҎsތǝwq{ǺkdoLLzիWxnFZ;l;^y=(O(|cO9ޞ5'YkXѿo57>\W;A :dHAY_cY νmVK /ٕDot;^zW6/]GʶRP^J~kr b!2V쥓Vm1t~9escp^G{la9^=2)fͪF#mF1G+28ś3gW4j>bVf|z/oCĶ[f>7k|!wAG)lxqootܹk}׍j}~Z\cf9>$v a,3ߘUhSd|kNb*#s_3'"@[ w۲̜TB3RmR}GKU+_o_G۪ۗgGz*S0xk}E)f}Aԕ; 7 g<^a xS뮺^o϶Uٛ껓/do_:;B~mt>f]31ξCY3f)/#^ g~z 5WB+'|kW>yaϿGmW\7A?ه.?.ѻ* wS@vmW 8'O{|'k!g>q9 cƛS+CAǞ_|k,,[wN/4_~-*{?X}ނ87ij柇W?N:~XmxP׿sYN tqXvٗ{ϴ,Ȟ^oB gw6^~N^{nv_y}ҭd_8%)헕 {GVQȽު=W5^w (]X\KrSd˃nJ;;^|kn|Mmҙ}s[āqݭ/zr^1|؀VoΉ1gV|v?<w3:кqa8sN|ӋVooz1~^W=kTpIŘыVhxq/=/- @ @ @=F`i3 94FS1ޜ7׃O& ze|>hqqS7=q>ǚɿ-1g⦛i+WVXa`| +Oz8׷{[ofq莅׭7}y'~1b!vա o.3=B\cڱ{=>aJ!8c*CGY}}ŕ _z8g׵5dDa~~C[tF@3jڔn-سMV_o/Q^cum˪|都E} L zædWc)z}axA%0atٗuGmc_+s~/kov^W ԯ혓GOk۟T /vѯo/}m 7˓;3i%^:^~Gm .}6U;zuGOcNɅg믕R痿<|3up~}}vOM+>jwJ}?"h @ @ @xd=>__BMjeu#FnЁ0gW~Ƹͨrn7>!.be0|,lҿ2+0(Xg:xXeۻqeŧǼw.q-OWW~w}3AObn5 W7sϽr5hY@ewum+g<^Zޟ^MxwRh ھx>S/ {uVV|꭬^o{i[Ft[頾; w\C^lktG׋?IcOG0m߾[3qMYP={d}c/_@q[=v­O?yqC{8[O{}v|N{<&{u8EtNo[鑭~7}Ll+Vb\gJw"6XZݨcyĥW<d5y<8ρY}]7Q[߰yߦqomwLh Mi@@wz:d1Ȟ{*3)WU}}JwS'%dRhDھxӣ>S/ {{F`{VmWT^<^?j ٛ껓 {wϥ CǥY]8ىo^ꌝc W(߯z`A]vW590 [_&eBg_4>v峝m%~ɹ.ҫ_\XyrX|9s>~m,LχC > }afE9cbMV*oǥw끭1z1za+}+E3^8 IDAT|"\H @ @ @˺g^hUkq1)ĄW 7pDlGU{}{w_C?Mji_S/3gf<&N? M^}_[3g̷fG"|X}Đ߷Oug=`T놅>.C7sZA4 @ ٻ21Ȟ]q/鴰zyM>ʷuzmKwѪˏSo$*VK9Fr)Ί^=_^p= m/!HW /; {v%'Mkqwnn9/W>^(8iv;j׏-6=W^/ @ @ @ tE}sfoEove+]ty^#>rxۦ/@1G>n~}g&̷މƿV;}ltkߎknx,=BNg'OgD(Zgcz:ˋٛ&Ӏ.dtHA {ovzgJdof%잴dIv+7;w'At7KJ}VsNݱQVBM\u qjd~Rr+oo_:{8]bҔYqU?\q;jxi;ŖX+q@Qj=9u}jA^'ncFԺ)qiڭ @ @ @=X+%x@|x-V EWۮ9}w maw=/h.|׍O]aw?[Y}zn}".SOp \=knk7fm8|U|$+jٛ&Ӏ.dtٕv{)] {u־z{3ڔ {ovzgJ{AvAfǥz!Ⱦ {v5[ ;7gݨZz8c \t3A-6]9~<,ƛsֻ&LJޟX~/knjgFxVm=+9:&,_78+g$_#yo[x?{Q7XqoY}…qg͋lkdÏMk;"~Y?y]Mh1 @ @ @@ {9zwѣ:z\~q7ě3oX~o4Na8pu xŵ7<%fG}&fG%~}mÇo'.Xyq 6{nod_uաqW?P8Cvׯ_lOxsQAot {C [o>SwU^^nh{}VgzXVi/kb{yMy] eEf$ ޝFsI :#6+t6g/_gf珯 fYXwѧO;wAx1ʯkV {vOQ|w?<-z݅xc͇oN?Y/ۯZx;we/7;gp=v/Gz&G2*{W{^?n?{62?[88  @ @ @` {In Gn;lf Y~@lĄ1~xW S T`hܿt0۬x9K?9Ƙ;g~i?W1ݧWrس/%zjJ}9sv̟_Z5b|~BǿYh_; W)ŬY>F^lXKqP<~cˆStu6Y\Wz gN$ nۋZ˂Yٿhuٳc5z_ѶFKy_&joqJMjSB͎VLi/ȾhE`{{g@٠[ wdRf\`/=~|#qu=F3A8>}P@q'ɧ_wʣ {_mXo!7M6Xpߘ1_ѱǘ m|kn|qVrfcz~tqW/̲ZqB݂ W"r35zrܨB?{|﬇[_lA(g8'ƭc_g7]kHau?N}\VZyp= So}d {VuSl_h0%wļqG6;ŗ[ ٗt;%z6}vl b*Y5z18v11nxvқJv[k+8ob-Vn{iqSc{͇Xo͚_ݷWrcQkE7NzqoG{laq|<3qj۱ZbuW1ۭWXlq7ĉsf |e~xїbFŦԟ\S,| {9Z#W*Ǎ<^.oӶMMˮ\` {G!c{]*v߱0zmuMfUd[|vWS~_SB)5J+N 7;p[3 { g7yevAf$ ޝFsi&ȾɆ+yg?}>~v~Utٳ>;sd_|x؍oQdO+[&%sUE{WYy@?*BįD,,OW;8tي=cq?'-Vk?XKB'qk @ @ @zJ=9>rJ>F[ǽwłA!mZ>7?;=BEݐ嗋}yXqvۏ0%7[;_l׿<[ GСS16^"`>ѽqqOTdw3XVٗ;=Sp_u)ՔyJMjSB͎VLiߝj}U˷wZm).tPߝٻh|. dɮѺC g|:d?#Io{9~ f {:}vL:+^<+ngr{r̛`/?^z\?uXw#  .L?_\{tѪ]vg>alGi<{n{NlNq=Ӧ/Z;U@ @ @ IA&v0{;^7FZ+6Xox7gxb”獏ƤI;یZ+c1|Hss>7|xKquīͬ~lcvX<1+oޛ߬;K/[:|AB'"c:*G錳oq-PP@@7d7a>&ٕVѪۗouҶFյtCzSjVWov:gJ{AWdoo^w2 {A}wdNwc:>E|r7~p_}e6#u S/2+z{n' ɯXsc9okӚ_e`6|`rƌ91y1w֐ @ @ @ {vs4 +48̋ifƌ7ߩ\4q;F:42ǫs}cv߾cذ!_yxsģVֿX}bޜ+w[;  x续7A"{O 'vVj)cz sEVehv? m/^.tPߝٻXvΥ>3S/;WL  @ @ @,=1Ȟݍe!̾gND+A ioElw/zm 'xbWme^rEn {#]2+0bAڪcuƈUƶ3t\͈LO=;#&OLy{KKF}֊ڢO%s  @ @ @ в@O g0_p|W P. n<" ^dOD)ĮZ3d/?ǎV_J+ުzVS/޶͊Nˊ@Z#sdˡ,~^koz!f5wY!pu< ;c>l@,\qWng'Ɋ @ @ @n*Гyy]BE nb^BY=;lUK۲F+|[G/m+iS>+0RBvj){jdovԪ'P&C֍}ٔ5z1.xMS}z`=#Ƕ[;oZr)3>'L @ @ @A삳0ֲOKL@}Ѿ+:d/f+'xbWme^]q@#V'U|m|tZ~θxeMC%зO/9gS_սN @ @ @ P!n @`I /iݿ { 'xbWme~Y !5z_zʪ>SVfr{{۲w?; ,;8"N퍒F#}ƛ^=w|gzymV٠dmcufIos իW| c 7f̎'7R̛_v. @ @ @@da7 @@w {9 {VZ=qDj+kϔ=%^ouFg)zuաNڭtPqօK:㜇zڥ @ @ @,-t ٻMXOd*wLѶҾz5۪_w}6%eF#}ƛ^Ҟ~O 7; @ @ @ @KK@}iI;dA|w Ȟ8RB]gJ{AvAfǥz @ @ @ @  @`/{A­dO)ĮZ3}WˏYuJFz5+joUm[,[頞 @ @ @XZKKq @' 任䯭 {vrYOѶҾz;^Zof4(;%4mϔ%j+̈́BN @ @ @ @d_ZҎC=Y@'%mg'Q^mG{h[i_z:Vաޗ[fSj VWovԶgJ{A|fVi^]ّ @ @ @89XFٗMOSƔ:o$O 4];%4Poϔ͎K @ @ @ @@d7 @Rd_*= mV=a(iϔ {U3֫߷R{U{b{5x՝ @ @ @ @! Ⱦ4z {OKI,(INʫ몷5T[ަz[z5m+݄V`;)AF]dd_$; @ @ @ /s  @@7d7e:%AeEqO覢>S 7;. @ @ @ @=\@`GKE@}0؃ZAQO覢>S 7;. @ @ @ @=\@`GKE@}0؃ZAQO覢>S/ {qns}ٶկSޗWٍ]lfz @ @ @ @d_ʎA=]@%{}eA@ "^e~:}{ʷ^7\|[{kR׫)%F79fI;%4mϔ^Po`/ 7; @ @ @ @BWE,l5-.I @+V\e9AXVg õڔNi4[m_wJhىj)ٛ  @ @ @ @.֌gc=*]Xr/ vF{JhS 7;. @ @ @ @,ۯ9o K$@ ЫW?$ !ľ8]AɐO覢>S/A?޷/eymw? @ @ @ @ @=_G IDATSDd!V2F}_}G/mk\o_WפWS> F}ƛ5^rEzvٛ  @ @ @ @ @AlE!O覢>S 7;. @ @ @ @ @,AA6\AqO覢>S 7;. @ @ @ @ @,AA6\AqO覢>S 7;. @ @ @ @ @,AA6\AqO覢>S 7;. @ @ @ @ @,AA6\AqO覢>S 7;. @ @ @ @ @,AA6\AqO覢>Sڿۂ͞_7V^Iw? @ @ @ @ @=_3,L^)_um};Q~m7એl}RB͞`}d"{R= @ @ @ @ @doõ"{8K 'tSQj)ٛ  @ @ @ @ @ { {8K 'tSQj)ٛ  @ @ @ @ @ { {8K 'tSQj)ٛ  @ @ @ @ @ { {8K 'tSQj)ٻ(>iҤϏgmg…5?ȶ?7; @ @ @ @ @,^*sO޽ӧO9Ys5wb'F_z{JW}G_t+öW?mk}Ѩ}`j}1RB)'U^j)ٻ(/-Ka,ΞV W?7; @ @ @ @ @,Y{v@{Z϶e<Ğ9r {~Ȟ0TSB TgJ{A. ++b/^e[餞 @ @ @ @ tWfooUFa#FJ=aȦ(iϔ]d|x+A Wde˷Uoo_i{h[{˷nfy׾ >FK 7{^쯽΄ڛZ  @ @ @ @ @W:^b//˟Wc϶6L==VdO)n*JZ3 {٧O^"{{+Baufz @ @ @ @ @hvUJVZI=U C6%4MEI}d oQX}b{SH= @ @ @ @ @` *{ֶO>UWXaA ' ߔxB7%^3f(;b{SI= @ @ @ @ @` K˟ :T=] 6%4MEI}d ̙3 A 䳬N4* 7; @ @ @ @ @@س#hg{./dO)n*JZ3 {z뭺+f|U?okv0'@ @ @ @ @XʞMU,Ȟ*A!O覢>S wQn fYqEz*N' @ @ @ @ @#PouҶz۲׃ do {M 'tSQj)ٻ(>k֬U`*N/ @ @ @ @ @#P/^s{WسvdhJh{AŒ+ګ_W 7; @ @ @ @ @@ٳ/rmdO)n*JZ3 {̙Sd/̴zH= @ @ @ @ @k wh߿ {~nJh^K"@ @ @,쉣W%ȞC'e @zYg/Rr0׾ri(p 7u]ve_WbĈ=J] @ @@#9sĉck~GԻwoh @@7ddOE(AB=q(#@X͋@+Bl喋=\ >_pNI&~^zln`AzuF[ ;qVS߾}cw|駟8aÆŦnyue')Stx/|J+СCW_A5Օb @ @@Asύ'm_㨣J93WU[8ÒwuaqUWł N緿mn]}zO' {iΔ5jW[symR<;zVO_p@ <#qלOe]:O\}O>PiTɐBy&Hd(cR|<~"C$C &}I_uuw~ZsmZB6a„mLU`u55kf{STLO?t^ƭ[Atk<.\X6i#G@Bv c^ F4e#`uKK?c=>:!C=!G n2K38 =zt] OXVD@D@Dxgg %[|tM -r>u7ҥK]}lSx%d/VE"PjH]$c>}ݘTk=ʻ^zABD@D@D@D@D@D@Dx衇oϹm۶{.f!;/B7[aMD ɓO? JѲe[M^}`gtAesED@D]BSBbPH֞c^^* o%WTkJ|]q?|pX;v:0 {gjԨu֭ i߾}T. htrF/4DzWF9;̌I%dkq 6eZ݊(dj2X–,Yb$OE}ժUqe}:? HȞ#<7i Wv]v3<6|sgZ:乇ya_yI&G4Kyi!" "Pv$d=foE $dyX JNo~x{~(uQ֦M?lڴin)3g&{ֳgϊqbJȂ@Tv"j8&رc_ s1 FBgT*&vOL+/J o2Ųj*[;Q~W[c1믿lܹ6e?&yvakmE,*$" " " " " " _]b|}6bĈytԩDkժcȎ!8v §E@D@ %d$d/%!{ c^9*V1#r-$w}3N7Vftu9WtAa!#zcoX/`q\ 1[s}ʕy5eꗹ:sEy" " O@Bv c2 ًAI^BBWU Q![n^Q$sϻso/daQM74&L .pN{>Xk}M ѣGeBv.쯿zPcǎvÇ8-^hoflws=7}ɒ%`ڹTyt&M\bkYĬYlX%G&Uα3$_% +}$FȎc4穢^zs96Q!;sԈqc8o&Wqcƌ /00k_nguVV]>c嘠% 柙իWҍK.I]w՞}Xma.nKoÝwޙ0νcx*|>H:83de  輣9.. +ӷ|}_D5Xiӌ_~z왶}$j9K/5\S;;XW!" "P H.!{,!{1( ً@HQA *dG N8Bt^c|.袄x!$<->kT ~]v DxgIH$ԩ1ZCBxVԦ| H^D0*doO?}ϊLr1;cڏA35CߋsKJ^ JB"ǼrTb ُ?xM*u a\ Dr,'xGXcؽe->l{mY L*E^ 2ί;2qNio66 4`4D>w X~f)2005j[2?xplcS@:} y`͖"~{駟YY=o<9\3˪a#*{_Ʉ#@ rm׷ѣGfM2%h۶nxI饗ٛiڴ|#N$|Fp̩#뭷lРA>[nް-[>ط_]c4}0?pGys8qb!X̽'oNP=-Z9VFg[\1\G.];>Cn>G*U>? &8VM!uD2!;n̓-}jȑ'MK؝gy0σ6NI`e^έWYj+})" "P H.!{*!{1( ً@HQA *dŝR&xq;ApXȾj*Wg5n8C4/gMGrF΋(/>XͿߟp,#^,:,m݇0 (x /sNj+/ 0;WA}00pGTNV1 ruԞcڋ/} 7+O ,x0Auא+ы II$~Lh]{n2$`&#}t՘ 'rBB":L*D@D@D@D@D@D@D@*Bvٙ[eG;lh#8p` DnYx^<3>Vj3#jO{q,pczAVo#GT7ƇBu`t&}|ޣBvWI[LN9唄Ud 0G_8g+1#gnx?gTNAL . >bÇI>O6-7}vm{zUND@D]BRBbP=散b@TȾ/xp t^|@?9_Bv(D#`6B={v؁ly~9o{챠9s{yEd|K%p0(%\b-[,m͚5nr!3[!" " ԒPաC\2&LƍgoøR%#lc… I]첋[.5Xrs_1v /3*d};' ٣]_ ͍#>Ӟ.,0 l Obi++da@86sA1@sQ!;h;hNhLBvƔF8q80:eqሮ$$q}j_u4Ƃ־XD@ %d+%d/%!{ c^9*V1Dڵs˴~)~7Yfܻ#c?8;*d~}!Q7t# ) %'tR<"gR$܍7^ΠxU=]Yڌ%e^BgɶpvuQj$,86"h-DtLtvylw~ Lmp,! K:pQ N4R7߸6O:5x'k3BFB&`WO_6)"2f\E/`D`Z~!F IDAT*Z=] NnK G1r%usuG$ N[h&rIۦ',w;_ɰ+Q9$r$vl@HӾp3&,3#SypA5!d]0Nu. !;,X{|V!7&0^2?snCB$7 ٷ~ݷ=y+c" " " " " " @BvD1f&03>C Pa&lqID>phgtѹsg^Hp>,WȞ{u"'x"~; ,š6r33^/5يNLD҈N$qE b>[msAЏw2Q exuWΤDEq濰I; yc[ fm s!jժ9,bYġ$ &s2ǭq6>yHD_pmx@dm7$D>h;~!yYVšNn|gsxAY&Ha%d-L>l$81}>l҃>N"$ &pg smRB8ի.H6py& Y)Qn6&>*dg"'p>_>Ho%mpB-}zA*K!;NSܷsA(+!;m 8^6ϣ5yo 3&Lwp}1ijǴlpõ, FYu;Nz:Py@\!!Ci1d6mxkgB96tBvҼCg2Nae3řg}0\q40xp+dg\}Z;L{YI@>/+!;acf2 M@Bv c` ًAI^BBWU Q!;.1'X*,TbRڻh Y&(Z\!{=|:KSvm`<BA݃p s Kd@MX܄,a\n*'" "'ҔCpy-5;H *gC:S7Ѯ] ʶ<ë d {w c . l>Bv" G LLYV'|0~A8'̅#^g,L]Wl侮G$,Y[ z߳gO*+9Gw߱"}IdmE=tP&f'LVN/}s^Üs`Fe\Kߨ7tSλꫯ$%u<ܰ6g̘o Edn&IzAy!HLիWV+Hdj[8yz嗻qY 9^&ٱ[H{4n>r/L&17-Ls1Snj *D}CdwVHXL}sU@&qCqd,lT|d+dg6lZ^;ջ1o0.8c|𑯐w!>c ?̳i2̽fm]1QqY üa*Ix 3o$d=fE $dyX >f̘8"?{dBvgB<8ƱWd$3 ٙPȪg"/~`[8!4`)SaE)8RއϚG`*q1,Bve$?ڊJ &G/.s3nl؆dn+a\gb}!SO=Zhi3'El@N8XR3 wyXo*d5_}8Xl>LP1z!:!~a`ʼns&\'ӓh <\?II&lh }ڴi8g̪W^[yI$o" GW@Cg} S&JF>ҎB ٙcR-GvuW#&:I$ᄝI**dǕ~ ܔM.n pgpZB{tXu>MRȎ3<…L(FHGCg$ V`3JRn^7\ܷ«b8~}~^UwbP" " " " " " "@!;c*$n3s6e/Rc?$3' qA%l5Ý  ٣>3]1ea<5csW$T%lq_>\LBvc1:c|ʇ~|Ę* K@Bv c^ ًAI^BBWU 숂X>{x9qQgs_)bdgQ!;弤#@G)_oΝK˃>ྈ)tD.\jFtPO y 3h0P2~6l^E!*aElzʊM ,F480 QOAmq)CYK/46tA xؗ_~=}>nиv"\+\n޼yjd#pr!w\6_֜G~w &-,lE(>,dOUgHDMboʰh|ߟ>#+B7!Bj8㆜)oG#ԟΜ9h\SժUԄ/{'!94,L2O;z^b㨐"k&ꫯκ%=UݏMi I4ZI \Kو9ƲsN87>pM:E{#dsGE0v<=}D Bc=1朾XWȎIK\Xc~ 3Nx #ATN.c(;KI^ JB"ǼrTb$de! qTg}]s5Ls4x9 5 3mۡC/dҍx(  tH8qtp`/wp0(`_mʠI27LǭE@D@N \WXa8|O'ɳ[8ĉ;3׮]zqy]X6"v}d@Eue&Ir &>*I'TG xk:fp3 Bv_?yZr $ۋǥ8Nd&qs f;"۔-[&,ǜmϟ0oi&8$̔VDأK67% ) )Vt^{ysi ٹ9 ?q,q$!hpT>1/R’ϣGx8}FeD@D@D@D@D@D@>q̯[ f4/Ʉw }|2J'dc)qyfY73ѕyG |c!GBvCx̅?̢| !dj\p'ɀrh ʈ3 a-Cn-o7ƍ|h۶[>Abl6[sL}Pߋ- %d$d/%!{ c^9*V1ds8{UXeq'3}ԩd?#VWΠR9sN6͉.ѳG5"dΧ,Ƌ|t \ ,#b%U%n~qj@Y2e12$iDR%Qgp+_@tRq^ɠ,-2!~8 l.馛)͈ []bM&Wرc$Y֩&'ycC܏J+BdbhT ?v  |ki Y*IҰ=Ry 'YBr(/ƨ#:$ld^>J)|NWU3>T޻gewX-:ٞumE@D@D@D@D@D@ ΝkW" aU|Q!{V/H 9 M ٙI'9oc VޔF쩜Lv(KK55 ߫JC !be)dg Pi5rowxg/V3'X H"D'X1vU0^!" " " " " " Sﰈ1?vin%w=|34"먐}ԨQxa%l pS1SLx }\V88nV2zP/'K/s9F${Q}j*<.IOs.sxQxKq1;|3gAR+aud}eqn.Ə9u3FMs }#.]e;@! !1{Š$d/!!{+GD ^y1ꫯo_`1p8uf6^6LeyYڱB=㗦fV" " @X+bLN>FI{ Ǐw"L3=baiW&g/6qN ,pE3 3}hW\Qb"$Nec&Yr8{O7\8ϻw6/,d/ &OIxX'=z]7(/|v]dI9-?]y睁؜k5Y&}[ E{~%݋ܸ 0u ??YŤ_՟\}ZM iL F鎭\WbU??i˽s$0g V2K$BK0aϊ!g8B>lL, .9$uYq;㜇|5,4|駟^AHzI`f(dvqW:7t1G*8$M>BsELp!Ve4"*dOw,M25IS\3%$ks͞Hf^zR>zh"Bة ˽=P=L*$fj@*b([KI^ JB"ǼrTLĦND}Y.K'z" " " >}!RѱcGСCJq8p`}&/ؿ?YJ,t# K(`8* O'F)f͙ƋҦ|y|@H^HR\iCXȎcй瞛!'-Jdt:qvth!QBĠA@.爹K+曆rFd],X_Tޮ];;裓V=m4{ᇃqgk9]3S8GeEeY ׿D H2# \r^=,EX cܹ }AUjW>Bv\}j׮]A >7*du]cMz,8'XY"u*&Lp>:wlZJZ?뮻.Bd"v QBvWtI/"HYT IDATG&Yd=4V$en'" " " " " " " " " " KK^ JB"ǼrTL#,`xѢEoux֦MmF='|lٲWzj꫍#I:H\qMD!; ?:蠂!/ CU9ߝ#d;ӎs#NK.LBm1cث|*$ƍNUzb.)GB(S{LN;RN|J*OƧ~:m7} V?+fI (U vHD@D@D@D@D@D@D@D@D@D@*8 %dم%d/%!{ c^9*&\ԩ:vhl2}\|Vn{_ ! ܉of[l+~ᇻ}뮻ltm# /8ꨣlwOlQݻ[;b:^{5=ztP^(d۷͟?Xw饗ߥ3"\ĸ)Sأ>T{I'Y֭ ;Su)~ +_qAp*~w#X){={>v8 lSBKgvG]gy7>6sLFV/qJ D\f\CӦMST_$d=fE $dy娘%>H&СCFq)q]sJL[4"/?n'O۔ʥClNWl>v!z76j(>|xP/"-2~BvD+V(8d^r%.!4"!u]g` \P&Fsd|vud$dg_/;j\82Ə R%PPBvFa8G1HIu g˶,I,<_Q$Zj_-ₗGXOծ]%#loܸqۡ E@D@D@D@D@D@D@D@D@D@D`m# !1Š$d/!!{+GD@D@D@D@,?ӹ$_u֣1ⴳ:+熘@py 6H/tN>vj[ouk7j(6d瞳>,{^M^*t3bdO_q"B.-tvr1fmVSGf;)R6FE$eQE>w\vmtVL8+&J^R@p1ĉ֨QX|,3f̰M>lv*q3PV §~͛VԾnf$~TR!" " " " " " " " " " 1XpdGG PDTǪUgEwzi݋u|ͱ>}7m_s5kj6BXnelooڻԻ9_uUzjwmڴO<ˢ|aGM9S&ssqG{Q"dDUW_yREt%?6lx %d;ApL'?M>=?v ?#r]Bv\z뭠Cc4ӽ1Ȏ >˖-s_~CL6-Zm@BBD@D@D@D@D@D@D@D@D@D@D ;KH^ JB"ǼrTLD@D@D@D`pܭ[n0qdzY7?}n]vŎ;:k+8'‚ʕ+mgF>b{6Dq q'8vԩ|g/M'':/^?U ~Br0!; [qF_OlСAzhѢл\8?A{:wlZJ>}zEԩS.䒌RH!;L]tz._o . ځ=DY qcǕG^lM7-to0`^r-䃻̶>uTwߕo۶mݳ?D2; HD@D@D@D@D@D@D@D@D@D@ %d %d/%!{ c^9*&" " " " ̚54cǎ֡C/}8΍K7&8t/f[ts`q NT~rrUy9^dY:+V믿>g\ w͞=U>%Ua!j{F\&#d{mΜ9묳K2IFqq= x#W!;}RC-4LQ(!;{ծ];as5ʕ+M(+!_V?\]#8AV4!ɠ"̙3s }k/;*ҡ" " " " " " " " " " "F H.!{(!{1( ً@HQ15OUVlvvg C믿ċa yԵa58G/ٳܗud#dOM(_wujժƿ aq:Ǹ n5@k"#dg%>.rUVAZ3rw o8ѣX~a6mkn}Xe"SJ*,h\Ib-25/e%d?~ 2$hGmڵKroFÇ'4N*"YD@D@D@D@D@D@D@D@D@D@2]BL}{ ًAH^BBWa*n5l޼y֯_oo9'' f|_p]wՎ=؄/\c'=?XM,=Ssf͚v^VBp'IHȽ{O?ݶ~X<zW? ;)R6@# !1;Š$d/!!{+GD@D@D@D@F4ƻ#kkI#^{UR%hb8+jԨJȎS"1<]m,@{}y6{?` }Q ʲeܿ &n8{ fD$&/첤g ;묳yy# 矟6l}\~E|/l}Qp{vay#߬wށ;cq;/WNo?k^ZܵIb'|bC }g6l0RNo6r $?m\Bvqdj$ĉro2*su3mc)o߾6|/ IbD8ɊzHa@zKE $dy娘@!5kpFGM 6GȆrv"g/jD hlٲ\pmV67 ٣.qq.ǡDyb:O?Ԟ ;s"D,.B9s$$il֣G\G;fz)ꫯ\-\wqGV .>}}`+2C&GZΝ;42gs?siӦa{܆vŠM3qW_MH r-.r}/N{cş/y8m۶% '% klF!Gpjc1(?Fmkb}'[om]v-HcGeÇwu^jUC8HVl._3<l /ˡ_!CnuI۬lTȑ#za~!rnDe} L%?EO8irT˾qϔO$cL[nm'tRΌpƌ"|4{]wf KO;Su)*"1گ@LϞ=z9יiBٹn s잕$XQ"XBvo?sZIx* !;|'^.Ǎto Atb$+W4+ql֫W/#*cƌq >sO5H0>|rW.7@zKE $dy娘@!uơۻ#`CV@Dׯ_?W.ժU" 駟/2~vg;\tRmN Tawmd O?t'6>6lX"YJfͲx pp8I$E(_DXH$# ' 98n#Ѯ];;ꨣrqrl8sп0ζ?QAkM4ɪ:0Xxq݁hVPf,;lP!;U1}W;  63gv숓q믃搌}'@Bv ?cw\N93Aݺu3Vw&8WO>M4),9xвelvEϽǮj{lNui#XH.!{>/!{1( ً@HQ1CM7d"qn;# ۣGC@kv[Pဝw6tР?|b-R6-!;!b4h@L~'ڎ; ի?v?A{qBs΢a0q'vW88OsbI"fζ8[".(<ǻ~Yƍst4hB-ZSO= Yl=S t4pf0oD8#ÁЯSNhO\͟NժUsˆt7ڵ}7vM{o\Ydhp?zχ_~HD gi$ EC &(γa6suq"jghC]HZ!AJ!" " " " " " " " " " "-1(_͛gKhM4)hCp ">ډ 8¾[;gS;`sLlW|ww-[ڑGG`;lذqڂ@M)Pfms$Kp'MT"i!8t6\ \q?^{XQ @< ܨ2 )d}MC2O.Q촛|6|s'f` JV숧s|#rafM _w. ONx&KGKٷʈ@E' !1Š$d/!!{+GD@D@D@D@\_oiW]!}衇l.>:?~66]hUV.(q+xGTC;ŝQF47eY/fΜvHv['*G6 =x?#7n\R >٦M2savCx =zt-si qcƌqi:M8HXo` -dܓ@B^ra!;.IA@Ͻ"  y kޘ\+cƌ*cZnmm۶uBvY)"ݳC ڥ IDATz(D@D@D@D@D@D@D@D@D@D@D@r# !1{Š$d/!!{+GD@D@D@D@D DȾh"CpBC8 $4hP*\*brD8y/_9#|Qŋ;`+_͚5m6𴝙[`OG$qK#./A_;wzPʕ:uXƍmϺ\$mPN"\B roJ\7q?3[mU$B0䟥\7H <8gXV!X 99믿l 6/vm7vmmѢEW_Y~lƌU>}[۱U㗐25XD@D` ]B]PBbP=散bε[Mp-hCG|^[ٵXܬK팋Gϳ(#%!{aQy7n=ү}ƃąF_eKK~5,Ѧy Wwa}׳[ ;zۮ" " " " " " " " " " " " "6Xlp6w\Y ?߮}+5A}+?.*kOjmAna[/[-δ$!ǹǎkk:무Loz~nuI=>*UL۸j*\rǑoa>^wFNY6 N@Bv cva ًAI^BBWU/e?vi }N _lq;N{Mv?6{_k(Q~ǀ{mMַWݿh }}};s\Țn]8b٧͞u}>ߢVeV>{ԶoVX>i"2|M?z IMmΕ{u"j}3/3E޼͚̞~[fo`r۪ƶ}vQ^\'=ǾijvXWixwy^%kX} ;넦NL'z- c_K&u6޸h@ϵ;[Mٹ/d?f6CgW"Wt5mU^]NBM.rT?SS}Ϙ}9W<ӶG5J|d4b}b[l3 mt]HأCi3~urC۳]m;*e:^D@D@D@D@D@D@D@D@D@D@D@D@;02eծ]FVЍyv~o?K3D@D@:KK^ JB"ǼrTbUaO @<Ϝ`zӿYlN>:ѽH{ݶۮhSǧڐWf&ц;^% t3 #*y:Y4تqYk6MpdbvmVfU~gv=N:=LÉ=[L4գ-7+.ޗ8ι'z[U[.om mu:o͟{r/<_\dj֩;gϾ[CbvB]2Ņ],WF|;x℣nm.!;u6߬qM~K4;_~Oi?=5%jM*h[IWN]c*v%MtdK`ܹNMviv7f_6x˗/O>ىE*Ukqe0{m .t"dѳgO=nEv駟NW_/}vyC=d8G /`߯j'B{c߱EժU]QA_oO=կ_8 ے{-zƀ{qh _r͜93}ҤIm{XGT@D@D@)$d=f_E $dyX!09GiR/$߭vgggSϰ;l}vv֩c/$[R%;vuzmڌG,uOݿE.ߨAUzjskd[j{sӝofi7bś7ng̶i!5v= ']Opu 9H߳m׬-^^{{߰AU;f֤&UN̍Oh7''vƶ[Zα/b~_e[7۾}͙kq]3yԹSQ뽐ģ#ov8_tv! nsMwT쬄vp؁vHWB[;z;g 9`}F=`僽c5ž{;{]O9u9$~]pՇ.abCZ7s~.7jjLLߋ@&L`wrn]{#N]weSEώ>]y!;VV͹n}qDZ}ֱcGW6"n/nGtw>Bv>g}{V 'r\̇ Կ`fqlvd{wsM4#F8x8zN ЩS's=m֬Y6|pT؟zwx[/duNڶm\3FbC͚5[nݔ^/F#W@@Bv cs ًAI^BBWUsn'w|izA֣vAm_^Yq+;ƻԷmx&-o/8k;;DoKV珲%V7nlJȾ■sQ6w{9~rwsWdw)r{p}'ob3sζ~m=5umK=>dAqv6]'կQG|cwHg0󆱮}2V%֥Wm˗MFx!17.e}|'~%6ϜpH[r;x v[cl!}g<6Ս0-mJGYBvA782?:CBI*7) HQTPP&M4i""D"( ?-ޤ{;&@"{ǰsΝ̍GgvlpxҳcwKM!ά*5}|Wo65L]^gJ/ O?"Qύ      <%KLhYk׮0ØslڴZݛ[h![lԩSPx]]Av wϘ1Cʕ Z1\jZ}᮱o>Wp k܃29sf e)q kt믛6Yk\ނwޑy?htgskw5tkf͚rslݓZj޿ؿ[Hwo\ѣdנVצU?;΍ZQ_7@xddw@d \9t{^|9wԨQzagC_}ZEҤ2aZ-7!KLɳ'_~s@ǖE WΘ.W#DOb̞τ¸ Wuֿ(&J[!iUr5iT?tjiKek'e%3۽Fٲ$# ? } k}2JN%NȐ1V{%,K0af{٢LNdTspT$ow/k6Z' -#ys& 7?{ ggmI[AQ,^$ Ul,آd_dy|mբҥ|s?qZaY _ NjO6l =(N<_C~nO>'9D kwgw_VjEy ~q Av6=(Av+nO/K!fs )vK eղ?Z{B?Ekv~wپ낔(J> Tm*K7[*ogno2oWdI 3(U~]ӣ"{\nJAnwɞ|VwS2`fGAi{Vm0纇kU棷_/(uZ䯝[ %r6nnYCdH@f _m/6zgz һsA1Qf$qZɖH*"8?K:|9RK"%gC7%_2g=;Oj= dT+I|dR>9rNܻ'3&tMkO@R:f|8      @t gϞ-ZaV.oӦ9uĉƪ^߿_"VLwkԨa4\a … ֭ k%uֹٵz\<͛77O6M*WСCRJݝ|;ngΜRHV\9 $m۶ynrmdwV׍ 2oڴI&MMnٳf^Z]|dʔ-@Av6_p(Av+nO%GddkG3Iqk uyy3ҾyN qVI.ܹ{Oj7[&J湥ylސW?kI=+L7Ⱦ~ -#}L%.>$))ֿm ^E.\)eK{y+[7o o~9wXRHJ?}]u|diq6n2AG AJI7 3siU$$UI\+~ wP@Uh>Fټ\5M^iU99ߨ٧~OfgNw~[~ ~q;O7\ߋyIb)B4:yPƣ3      */Hv0]/tYxɓg^{M/_Q1NI&qFZaaׯf͚f̘!Z>bjZ] Mr Ѡݻw9aaad0a1œd߿̜9SeΝ>}[Cf0+T jՒyz4@6mP-6Wݞ,cWMfZxdB&>vpi)oK0}TY.]N=ך?aiɟA]vN~ IDAT+^WȦg%G2壨}\՗~w(mn/ޒ|㕼b,[Lٿ.T>|].YI+YdTw7=lvzWIZ0΀{&|ޥٶ|ALb?ĉuQ ; V,e_ה؁ָW͚kT/tjE*Ǯr|}hP'ʓ/L\I$E2r cɲ_I!x]]Q_̙Rrwkp{쨌› Hq)gHdAG7QoAv=Ͳn)ɚ9]ބ_)Zunk\C QLZb~sn:Ys[d5r dL@f}R5GkJ9s<\Fٱ?H:~UV~Z6n>+^475){9#      Zm[CZw~OӐs$^xϗ={sWZ%3Z쭵o^-[Q1d׊Ǐ7qw3gHRާO3g$O\.]Ԅ׭['ׯ_7q$$${B@  | ;[m=y,k~?%%iw?*KnGFٲ/RF-goH[dϾKU,>      <@ رc3Ϙޱ"Zedɒ&^\9e7o,/YեK9:uȮ]p7߸=Av P`Anժ Gl1dOeСrw6 5Avs]&|?7ka_7C@ N KE݂ nsC2a.I&DM K ` o*9ᦔy6 ~ -goH7VK2Wq)W"9|uies==rhEK1dImvZ%'N]j3] zA˫A@@@@@@xd[nI*Uɓ-[65kMcܻwJ&MdӦM7n\S=sOKs55X1U̽u].\(?J9\ #GRJ~jԨ!'N wwܑ;ʊVѴ>}H6m\}+gϖ ȶmۼ>W 1M[>,,\[Z~޼yؽmذT׾Sϟo%N8{ڷo 4!r-W?U`0H/|AvOGUGxZ:'jʗN+}2Ag?efرcae\G7ȂznQɯkNa*a:PoOw^ťLqJ{={P6/璦=+;{T? 0blyҧ oޅHmo6;'&7ʵV_k-D:ϐ      dׁ4>vXSܹsfرcÆ )SȬYٵV8qܹM_~e/|y@Av6_E(Av+nD&p-9vdN" # GEQ+&I WZE;U/Tohպɜ@yiPĩrmI:X% xG|5L.҇D)#4~U I*XB[;      ,Ah O^RNmG=zTΜ9HcDZ>44T4.]>-s)qDEj СCr%ɘ1Hϟ " o N{HE݂ ns @@@@@@@@@@S ;Av  Aʡ          Av6AvAv ͕C7@@@@@@@@@@Om (Av+n           \P-6W@@@@@@@@@@<d.;[m!         x d'ns]dw@d \9tC@@@@@@@@@ N "nAdr          )@ uAE݂ ns @@@@@@@@@@S ;Av  Aʡ          Av6AvAv ͕C7@@@@@@@@@@Om (Av+n           \P-6W@@@@@@@@@@<d.;[m!         x d'ns]dw@d \9tC@@@@@@@@@ N "nAdr          )@ uAE݂ ns @@@@@@@@@@S ;Av  Aʡ          Av6AvAv ͕C7@@@@@@@@@@Om (Av+n           \P-6W@@@@@@@@@@<d.;[m!         x d'ns]dw@d \9tC@@@@@@@@@ N "nAdr          )@ uAE݂ ns @@@@@@@@@@S ;Av  Aʡ          Av6AvAv ͕C7@@@@@@@@@@Om (Av+n           \P-6W@@@@@@@@@@<d.;[m!         x d'ns]dw@d \9tC@@@@@@@@@ N "nAdr          )@ uAE݂ ns @@@@@@@xR_.L9yVTI9"kזq'@@$@  Aʡ       <={_+B``MV2g,yf͚IHH?m6iڴϟ/9rG% @ d'n""nAdr       O@eٲeRH!4lV4gӧrR^]v%K3Fi~ud˖M-%G:# S |;[m!       - Ǐ_Nr 믿믿۷oSLU>V˗/%N8ҩS'mϞ=ϛi3F֭)dUHэZuРAQr3 1%@ w  Aʡ       < {DL`Wۿ4jH.]$I&˗?͍ {=}gH '@ ͷ  Aʡ       <v쪤U}]6ydy"ŻsĎ;>aaa7nyZA^+Gݽ{ל驏;w`F=@addw@d \9tC@@@@@@@[ *AǏK X׮]_֮]+Ç7?k}2gٶm*TH͛yӦM2}tٸq?^%K& *H֭w!Rpaw}>{iW IDATݻw˭[$[l?~3L2|اO3g>cŊ%Yf%KJUW̙3rMٷoSN8yƌJ*ɑ#Gv2n8WZ%-2 ɜ94h@Zh. .4=ֲܻeK%o޼2dȐp]=j.]*NxISVs Hppnx饗ݺu.]xaR^=y^DC*/\xg4mСҨQ#{Μ9:/_=}5 ; ĀAv6_+(Av+n        t D%Ⱦyft֦6 Yj-[V-j*xׯ_ Z <,,T0sL%K{L%Ybǎz8gϖ}J@@ g<'On*0U|ʕ:uj׸ׯ_&MV|׹jw"HpOI3UTra}Cf޽{Z=00Y]C&M2cj֬)Ŋ 6w}gkk֬ 8u-`U54ۨQV_fksaÆ)RM >O~hljTkתAv@pe3n$ЍZY_7$H#@)m[P-6W@@@@@@@@J]^ڀ}?~{] . >'OZjrҥe/^p?3 Rkwg,Ⱦ~z*x*UL;bߖoF}dɒ%ܜ4j WN{3fԭ[7J/ އnРV4hǸsZn0p6b>n8e˖IÝ{s5Ǵ:n6jbנ|t5lժU3a(RF  DAv6_%(Av+n        t _vMv-cǎ5iyĈ.8 iӤr&LpJB7oTBO(lڴU< *{6rH?~Z\ϟ?/-Z{;#35l1dڵket@ڴi=au k2d0?kjժݻKΝ]εW{UOoM+kEwm?ݿC{@,@  Aʡ       <$H޽{AvٳgKHHc ? @_%s6}ŋ+V kd} TV۷ס5 hoذARL)'Nrʙs1⽵G%vR|yW y#չk׮Vϕ+4m6ə3Ϯu~h6lܸQ&Mj >\&Md~PVy4m:/l~&n@I N{KE݂ ns @@@@@@@ng=2b={vyפvڮjsK,)gϞիBޮsN[94uTRWpy,Y$u^oEZ]hѢdرlʕ9s( #Ⱦ~zMXɓrE&;wF Ϝ9U]^5i+U$ӧOwݫ5UuAd`rUi׮t%׆ OAv6_W(Av+n        t 8Za/UӤI#)RN=Gr]iٲxgΜRJZ]]kdߺu_ĉF2a1b9WCǏ81d¥M6`y@@$NX%Kf*_|۵Vw6ݽ{wS^>lȑ̚7o.֭ jժjQA(6tFxddw@d \9tC@@@@@@@[dSۗ {E7h6ޮ]N:СCQFg_Av UkZ5.\͛'An,*-6p D7hsٴVR"~ֶm[_%W\Vٳau=zȂ $]tf͚H *$W\˨QL_Qyk $ d'n}%"nAdr       O k%v I(QBΝ}ٲes6c XW]Cy;wH.][n7nlkлhѢՎ1d߶m ksV81Av˗/aÆ֪UKƏn8gez߽5 k][L0^{}Ȑ!.S1̙|9)RD }ӦMeРAQztF@ dndw@d \9tC@@@@@@@[qhq5}U?޽,\Pŋ'r >5jȾ}DZYn;{,YtPEɒ%K$eʔҷo_W ү_?sTRyLKJ7n0]&;v>L3oK]C5kze˕+g~k(PzAvo%@M | ;[m!       -Zz&/|0!j /Y}*#F x!>HZn-2erD+kH]ν}{ni۶jժ?kPYfQz*Ud׮][ƍ:믿w}>VZԩSҤIsŋ5د=AUu{SouWܹsw}gqo}dŊ.0~Mɛ7[lYN4ܿ_brx|5PU%mڴos='ׯ_5k֘:og/]ݯn:i޼룆 06mژCEQF^gL٨{֭Pƍ{5!v=[]7_,Y2Ϝ9{r Av6_@(Av+n        t < Vի }9s/_>Stw^'u&LҝgI2egΜ^wNd׮]?#ٵydĈ&lj,\'K/ OT+O6M'On.0@v)aaa%J.]`{iu`\'׊ނ@]h> 뉻GqmP-6W@@@@@@@@J@uݻW4Ǐs*v'k`ZZ]vV# 59r }5ЮH2SlנVjٲe$I>W;jz ַhBo\up|m6K\;qzVO*Ko @ NkCE݂ ns @@@@@@@x֯_/͚53Sϥ\rO´9?TP0Vw 4@/@ ͷ  Aʡ        $|2tP3՟Yr$LAd*ҥKT8G@_"@ W  Aʡ        oqܹS;&cƌÇKPPlڴIGyfٽ{o&mԨQR~t^\@'Q ;Av-AvAv ͕C7@@@@@@@@*pTRuQzo?>UJhhkՓѣGb < |o ;[m!       VӧOK˖-̙31cFSUuo?>mʟ)ӧ^zIZj% OAv6[(Av+n           \P-6W@@@@@@@@@@<d.;[m!         x d'ns]dw@d \9tC@@@@@@@@@ N "nAdr          )@ uAE݂ ns @@@@@@@@@@S ;Av  Aʡ          Av6AvAv ͕C7@@@@@@@@@@Om (Av+n           \P-6W@@@@@@@@@@<d.;[m!         x d'ns]dw@d \9tC@@@@@@@@@ N "nAdr          )@ uAE݂ ns @@@@@@@@@@S ;Av  Aʡ          Av6AvAv ͕C7@@@@@@@@@@Om (Av+n           \P-6W@@@@@@@@@@<d.;[m!         x d'ns]dw@d \9tC@@@@@@@@@ N "nAdr          )@ uAE݂ ns @@u떄ʩS$uԒ5kV 0       1*@   Aʡ  %p6l|Wr=װ#F DedРA2}t3ބ f͚w<&ow}g/dɒ54 %]oQ:9-bz\n޺+5_^b.1CB5|Maъc2b63~&9MgbZ      DAv6%(Av+n  G`͚52~(_,{E}VaU:tSLUF۔d.IyXGJ̙3ҷo_[ğ`o߾_^6m*{~'#7     1(@ ׋  Aʡ  Xpt=+[̚5+=ƌ#)So- ,YHĉmJGDG$<ԩSe"EȂ v'رc )00Pm&OA'r       |;[m! < {T$O<.zi?٩RJr3cJ:ubl:GG1NÆ e˖-f֭4iuHܹ3g+WzۥI&rM֭t9o8-['%N8!eʔٳg{ >\&Md>=zԫWFEb      O d'n$"nAdr  x܃חQF= ?ܾ}[+wޕxɦM$~1veAuǣkb٣KdWׯ˥K$]tOd 2-wÇ%[l^ {wъc2b6өUҦ31604      = |;[m! <rѣRbEYX17o^ ;]#]O8 t̒ {ϙ ӱK@@@@@k | ;[m! <&× IDAT ߻wOΜ9#W\YJرphhJJ%Jd{#GHJLRJ_|a܇/xTtI:$Lu/^(O3JHHHTO:%)Sɓ?8uޗ)K,+V?t萨eT1(,?.ߗL2Ez-v59qyAAAˣO<)7oޔ 2H8q^+,,LrmeΜYV\}s{y3v|\}w\e=:A{˱$y w 6e^7oݕ//11CB5|<{CbI{ wٛ8Q\I8CMԹ7N1הkӽ%M`;ىuzɕ%]]TxiE@@@@@_.@ W  Aʡ   ݻeڴixbu떹 ̙Sʕ+']v]jÜ+HFW^n:z ~a7o.{ k9ĉ0`ԬYyѢEֶm[Сkh0&8bŊp{c1~xٺu6Q[w}g>/dɒ^>{̜9S+pa (*T\2cix]q@ܹc~N,9O#%Jܹseɒ%}v99h:u 3SksιQkgSGGZ~饗\ڛӧˆ }kK 1W4m;>v5jY'?Stlo޼kQ>rH\ZM!MJ*ZٳgwW~wm{BwŋgsWäUG 'I+r+ HҡE.Wz۞ңc9u     'dbdw@d \9tC@x<d3g {jWˑ#7#e˖6 jvϞ=nv+@kv׮]jVC,X ھ}@Jp4H!nm7o6Amg۵5?dW[ݸ]K_ % 6 Ϙ1TFw9bŊ[s=$h _]0ԩSeӦM>۷nurrH_Ogh_;jr#kznppٺ\ ;q_-[4"6uSG:իСCfQ9]'V硛|_~لi8_7!hcTqd;=5[/t6?u5Ͻ|%L^h|iˏˬZroBjimv#^?ixRPJY9+~-5Oٻo替CZ73DE6xk~ffj>?MjW˖5X򡫙G9zLyeŒ]&l->$gʑDH"x֧,     dJdw@d \9tC@x<d RM˗ 2Ν;ᅲ? ~TvoOZ!ZuYAtRn]S[ZM[CwHZe+տuܼy󚀼V7oܿTr\CD{]װ}O^BCC>sU0*ZZk]:l]5@ ŎT_鵵VCw~su.h]VjJqBgt 3!+ةUUu.M=kki0[: =֭{M7!hy/jMzf'㨣iuEn|MǎYa]]׹Gux^>pn*8bZQ^8n:i֬ F}*V(r2)SPm>RJYtC7Dq gH@>$IdUw6U} jLrUٲLpu9Mu.m\`iC$o$rmپ|(Tsg}^eKTK3K _}sܻIsrւ2m+Y )[2<[($MOv$_,8 ~6 ~j]dw^?aH)?$J[jU(Z쵺leJeKagdS/     Q ;Av5AvAv ͕C7@@#AǏ@V|#L0ڽiHSNVZ5Od׊=#G@6 sk[@ݛd5(|[8Z#9+ަM!bq kEg:ujSa:bW+3ִiSjvVvދ{gqixtӦM *wZD g>Z =b8}Su7 -k\Cn G+kpٳb6A޽{Cgƍ]  ͛7xM6l([l1[NҤIGkomUTɓ'{<+sgs@~BD[dߐ/Ȯ:vh3ӍM7C& mE-:}1cƈMw~ϯO>YuMV_~8cfg5y_S|ݿAȾϊVTwo/;*&nw}UG|PRH_Һ9q yOr,>vnז*ERZR'򸅏&K5_Xjva 7?SڼݯW0_rNI ,9pYzS.\)bɄJl]kޢC2~m!yr%!z&{7` [W~11Mg/ޒo5}MUNg ?:=Ȯ&eH@dV`o79z⪙ZӆȫMs &~#NOߓ8     ] ;Av8AvAv ͕C7@@#d׀5 -k5fg*Dզu jHs߾}YlٲO j)R Z8+d*T(\tw/V4b]鯾9gW툐unvXWUu \/^뜵:>#mb{ k:'O(^kU+W𨎾~?{eUu/pxR,XQ!"b7Ʈ1 XcKT4{/X؍KT,HQb;;)g`Ks{]c;jjK~m S>X'$>aw^wcA}k>vfǟB-7^4_7W[&mEy _;< ߐ9if:~ƾӀӄR W +)CϿ~|3Mלnh>3A/_ft_6y(}a6Zg?_p5!%~Ӵņ 7t{W}%oeȾNK]~UI}tcKOҾG^_ͼ)d`oo-"ֈYn-w޵S+w>S/~x„ iE ]tQ:k80ύlE;o'|2{/|~P曧W_-O=T09ȑ9<~gsQab1"y#^twk>x_EBkᅈ7'Tî֭[k~oSmIƌSN駟 >`@x.s~Dnjwz<VĈн#|!{nK z29lԷW#Gz?y3y/ +Yg)>G^߇Jbf?_$a;J-=R햨[?[82 'v wQ_97\~m;GWYqtѫ5xQ}?_8s[{dȐt!5jgր6瞛~oql샬㡑Xs1bڪΡ{l~M.]Rxx5^y1d?gcOΗyi%?Nd _$>eȾNKO~:ŎZ-l?ʝ?`^L>8*Oޘsů[|3t\s{; :2~uoJ m8#_آӎ[wO}W7:Kg󴎖zqECDzO_}i46 {= @ @HBv!{Y^ Wi @#PܱqsFX{_WXa<̓wMMx 3RާO׿rXh(dぅ۴?ժؿtoӽ{{(ܜC +wHo{y+R+dI"ʾ wCO?|%B>LO[9Sg86v &l9qO?*wKY7e]1ST'NL'pBN`Pm"ϗto?n/7Y9?Bj~S>Ѯ]sUW79oZv(r–zq!vL|46_=mThhً| @ @ @E@.d/x PB1 @u5d9bnm8p`wGd#bN:? 맋=vxW4AEY$=CM~VzhcT;FG#fk#цNC ~ԯ_&^5?yGcKhg=v6[{|R +A[oݨѣk笸oߒM}Ϩx(!_V]u4nܸ{>(soOw^z׫1nwޏ!dbEA{/LϿqgYt7 <s{иw g<]9nmD[;ĉU7'v'cUMht˥kzqQECoOļoبTO @ @?&!.d/C KB+4 @֐r6(M[.Ǵp.^+x೩|Fڑ}WO|A#ol4k"u9L>l{mA{D1k4twnݚ<֔~!s=~_已+wܱxP~Kq=q]1 vd㞉ߜu'?I¯ . maݨ%vd"8Ӯڨ/.FߒM} Ŏ3]wݕw.,:UiϵÇGͿ >6d:~k&it͍N_Q6[~/;{rFw)o,d?gҰRE:7z\{tvq6bG.{-~Ӵ 7u5_{(Ƙ_riK;-~|EC<Uqj۶"d/IG @ @?!}.d/C KB+4 @֐="/z*3fLٳgc=V;gSB3R?3-ǿto,d 8:ox=vrQ_uUo߾M}U!yZi{of)=#Fg[aS"!~tw^tEi 6|}HĈy䑍V{{^3Z3dVKqlf鬳ϼM ôko65\' ucW?O8GuTׯ_{Z v"n) {r#vΎ{OGy$-S{&x vo(z/T˨Q};m۶Knʲ%vd뭷z뭗 ;.1mjcO]w]eYϺX_}U0qߴcjkx /=͏!d_h3oЅ~+,}t }RuN9\"s?B;zn v?4b\VZb#G}}Wr* ^o'aOT~;1"U^zݿӕח@oٴzq!s_Jwv>\?J  @ @ @G dͅe(!{ B^pF :-Gas/EH/Y5yi7}앁s\rIa|DKrkGcJW\qE8qĴ6ۤ^x!kM^׌;3F1V]ut7Y|ߏ6vÇOlI4iRZtE_n1O̻ǨܽܛkB  ǎ|{irG7T^z|:y'6#׿uz饗w.֙Uz}׳馛?;aF"7\[ұ?olȐ!ϱ3\:?c=HGqDeY&M<9-bܐ=v;>b|r˺w=]2hqϦǞi%w3/~:_8Okfbx{^s̵j>K)t=sw?~Cii:/Z/uخ8 =R햨7qi}N]^>(6sI _|g>HzcO}>=9lԷztqOy|}J5h*}lt:~гV\~tqoV5gߑO5&VKV2 @ @̐Bv!{[^ Wi @#!{Ħy∖S"8p`zw}wرc+d8"lgiȕO>I n1:w\k*m}GToi;Cj5\V_}:mqi%3\BM _9)m6'|vroοM`ܸq=b)Gw=s9'v`.z/ّ=>x __kb-+~iڪΜo&׌38#VBHuL9Zqw9l%fL5CsђEH5cY!oqk?ji<Ռ"!^*F'}sǵ3GWc'rzus^Lw-}VSvuwJu k_;< axk$y CQMtz{yVHG~tҙzӱ:v{x?)7xКb5v=M]rr̕N?v~߮po-|jE|Ḵ{-O<9GҨwO;+^y:!Roho> @ @^B %d/A  @ZG%B.v ޅ^8EbD\jVM66W$vP_wu"s64*X |G9gСCk#8Fkq]GO?#رrEcD Ďi?9x>FC￟6`Lj6v܏|gsguV+GKv>u|]wͻw=E|SOn){ƈ#-`p 9`+}';)]~wԟs9;;u>;66Ɩ[n;丹={>Rd-u{83O:1b>E|]wҥ5c7x`|ESzhoF=gg?xW_}x (Q$d o|@B<[ؿvuA}r_]GX~z FEzwm;=>x\t9ӶwK3}=vBz1 Oc>&I]oɓSci>>G/Ϟڴm^~twG햋}w;uͷKw%H;rDϿIzŏӃlOV:O7꽯۴NrL?h[4dWFx`^z}Lޥ>sS앿!~>:!@ @ @?$!*d/C KB+4 @h=6vUǏǎr.>h*lHsB5;vF]j9rd㏿=+SN9%\XdErZ"@=bFn{.]l7g9H{nG1g&L(];E_9Z2-b=pү_tQGUM2dHIO>dcYcǎM{lmu=}%-X:?!ƆFSO=:q|CǪ"!{IL;cNM1dk>Wҭw~SRKΙuv)ұ}.;͔~KǨ/dtϧW5QV/}Ji֙gwއcI'BzQvvmڤ-ߢ[1}{ g?h:fj6 _\;+wK/xV#dy33y{}ɻSo{|52dEplߛmY~+~|%\2>(:v% kw9 k{w]x{N;?vocSz7g*Eu]Fg駟9kє"& cޫwbqjƌ.v_m-2uF2 :៦o'vgǒs? X>?9?B^~ I?NzoWuE-mY m&Mtзӻ}Y{A}Jxԧg顐F~M#OF<}33bDz ս5ߏ@G>>h\ ^Lmn_7[ҩcg/κt5iC!qOϢe]6V:4>} @ @B %d/A  @~EHt5-BigAG=zk#z]` ^#d8vOϪpcnq^89^{=vѻt{5Gp7}Ǻ~;ymuNBC34SZlŦyDg}kLڵkM\q/[ioџBH܈uھ}}F~:o-  @ @ @|Bv!{L^ Wi @߯@[z7k/m۶iVH /pgyg}?r4f̘:k>:u}#N`:O' @ @ @ 0مoc!{J^\9 @|?|s='|/bgOr-Ӽ[}GsMW]uU8qbөSt뭷%\{3L`:O' @ @ @ 0مoc!{J^\9 @|?/bƍ/`uMl0`*wb'^zt-:|?oY L'Bp @ @ @f!m,d/C KB+4 @c^{-|Ow^j߾}.fرi7O#G̯}ӑG٬cL`FhC @ @ @ }B2!d/rL#@h}/8p ]vM>`رT]H_*EߦM4xԧO:3§= @ @ @>Bw %d/A  @ZW?L뭷^;;OE 4(s9r)tHs9gO~wnb5zO?4tMy_||5\3-RyܸqiȐ!ync 6{/륗^oW\1m6ofS}:O>IGyd'M1:uvu?!oc=6=)FGqDś34O?==їƵ<{waÆվ.LN8|76|ӟRΝvN}w%uQE25!{/&gϞC_|  @ @ @`B7 %d/A  @ZO 8 peͻLԈ]|؝}-h iĈu.+R:vWK.$-rM^zMc1=B:F.+w+c綾^:]y啵;ofD2䝺czet;FeȾꪫ믿>=i#9=v莯ŹʱV[>"GƎ_㜱K{N5lj;&}cB|>9s.34S5#^G;75*C؝=v?S҅^XҸ/bf\sM"g~pbʇ8?O9 vʯz|][||C|̓ 5e|>2!{3v?䓋s @ @ @ مo]!{J^\9 @@hNW!^{ƌvļ}͑vkM_|qn1?bʐ=ι;W_}5;9~kc5ŎD5Vz/ƍC8F<;OysN jcꈛ?)+CW\1Q_~?i5׬z};G^3bv-]wu_0^gur]9"/uYi6kkkvDx=v|ͫvE?9+s1G^Oyʐ;_~yZ<0/Bu^{NKq]gyfs|}g=? k矿#0{3ǧ=#˅Cxm*#~KBx5\Un<18C @ @ @3]^%!{c @@ wqpIJ@P<cnձv/")vʎ]wݕFe{S>}E]feFܷi#\^}cvcKnmޱ;vBcƮʐ=Lb'E~}ɡv\CC#c9&]uUyJN-oIK:C|80#cF;Cz7dеAn:׻馛>!lAGh]߈(+rkQ矧7޸vn)J 2d=".,^dDw3heG#v_S׮]&.}R3 #?xH"g;_zyz; @ @ @xBv!{Z^ Wi @'_:=S+yD˭9"@o~O;IǎK,D.Kna뮾w #{ugy&5#B툮Yfdwyux;3!~o6hIL&@ @ @ @{ ހB2!d/rL#@h=3dW^y'#]hiUWM&LHm۶MssQuʐ=v_c5}={1civj1"cĎ3O1*CԹsf+6ڨ5{ov~ᇩwݻwOw_#Ď+oVMA6tz_ >tꩧ9:vah,dY @ @ @*B+B^ Wi @'}wuWw}󛝚ѧTu]#y/n_W7Ic>F+98C_35h~go[y晧^C @ @ @ * de(!{ B^pF zg~駧3<3~:j_bw H|pZ"djK/^׽{|0.vȧ-n5 ,P7q:bc45CG|YC IJ%iذarKZaz~h;Cbo8J+4U" @ @ @f<!]-d/C KB+4 @j;;N8cRR>-OχzӠA'd/! ѣ?+g}#{=z+_S]vm.]_4dk~c֞o߾i7Α{<` @ @ @  B2!d/rL#@h= =vqi[k顇ʧKӺ;M~r#K.xB #T4rGɓBI&eY&}]vy'Ԍq#F؟zꩪ#:iNzʻ @ @ @xBw %d/A  @ZOc :蠴+wRݧov|cٳ}UT݇~iS6mڤ.]TyGx_ oOLܐDq믿>}iܸqUy믟vyԻw奄>/$@ @ @ @# d[e(!{ B^pF z JsN>oNC>vشr6lTߞSלpgM?x>M8I']v٩N/$@ @ @ @` ޥB2!d/rL#@h=*}}M|Mꫯ:tfm:kСC.Nөδ~cl3Ψ: c7M6$3&#HJuz {>Ԯ]O͘֐}sƮ|8Vs!dB?3]~iYg-N!{Fb_[iM74Mr-/qwe]xB&dAna YN!k_oz>ԫWb<ikO @ @ @t. dEe(!{ B^pF кO>d6F۶m=ܓw>MC:.xt}Yk1U}S~ku떆ZqM~>qG=أٟo^˧nc߿C Hw}w~YC|p3- |16(uҥo)mV饗^j=5^@ @ @ @t% d!e(!{ B^pF ;Szz4hР:Q;zca'?|VX!r->ɓs[s?xG݄^xa:餓y5ws>?n/^B績&0r-ל˴맏>(.-sL+O<Ĵ7<1ϯk(oA @ @ @J@.d/xC PB1 @F6dnvrPۧO38#?1bg[o52,kiuqyݨ3bW툧ct9{iB&d aq\}wPRǯHTd$JQ2 9H  E *9H(9K΂>Vό;3CX9gwUu{ժURN1ٲe3oUEvԩSef(ѳgoӦqEP7t*THΟ?/b2cǎs@@@@@@|-g)AvAv ʡ  k\ `4\n]Ѫqƕ H9<ǔ)SdOĉeԨQ&nV\i¿.]2ݵ*xjJ?ajmِ:ȵklH8{L#3g;)oY bĉ2tPxZn-m۶ 8>}رc JJth dﴒVpצuMUP@MܹsGf-<#Z՝      Av얳 Ar @@ hXZ%ҦMk*CKKr!9|8p@-Z$ZZw6l(]v7nH-S`A)R˗рmd˖-zjٸq﫯*#FxyMw/Ȯʕ+Ν;=@+ɒ%LR?.G5u0'& ?3rM֭[%QD~k@\+/]4𽾵 wre9v올[N>3S]%@l2{XAv~2uTuԮA+W.4ys- k?ӿs΢>4@@@@@@x8d]P+n  _`Μ92zhXHӰ{n$[l9s玼{2m4}ЮVpנ{x nlgiӦ>N8~fLRJwZt~s::͛guoݻ ɂ q54>i$Xt놓MثKVG'@@@@@@ [\.(Av˕C7@@C@eku ݻ7࠴B{MY+kGiuqƙŋ.I$RF SRm > YM 'OhҤI#ʕK <}M4 X~݃\b;V6oޒ%Kfmںw.9D[xAvI]&իg,&Mj      T ;Av˩KE݁ nr  hehN:%SL2I̙E+Oߍڷn*ǎ3gΈV_O>1cFS` hV4`wt$O@Hč0{$8@@@@@P-WAvAv ʡ  u؃@H hUرcGhC@@@@@ [.(Av˕C7@@-pڵ`!DA ~Q8C@@@@@@Av얳 Ar @@` d(C& Th-1bĸ[     @ NrdwAdw [!  l|IKr! ~<'Nt z4Lz%Q$M8R!d?z̘1CV^-K$eʔ%Kɖ-4hLC+/HΝE3fʕ#    AvS Ar @@` d(NZvǎrۦ R6}8}Tog3ƽ/,£A;wH~d֬Y@-VXҨQ#iٲ @hB-[f.ޤIڵWE@@@@0-$AvAv ʡ  AG]_-]Bb>hoÜo_$U\g58%kqb{nM)Wdn%hw?I]̸5~Ust oZ?}Zv^(QBLb> ޓ &[9rTTa-!3gSbƌ)&M_|۟~IׯoVzuӵkJڵMرc*)Rs {*@}0 @@@@X ;AvME݁ nr  @[E'%ȾmҮgyGd̠>;{X[I&|rss׮ѣGKŊÝ7nܐ#GH $N8_|Y?.O<$L0pM9t萤JJ%Kfuك1yEҥ3fS;}FiӦeΜ9#.\L2IX"uᠫWdΜY}H Ν;Hԩ%qϡoyOhlOh !#G9s?CׯlݺUn߾-ժU!Cx?s2e C+sIn$I$aKCƍ3ٳgDIҥcǎ㏇8eѢE37lP5ks`9/RfϞ-[l17 .f f. y~ԲC0V^y>zL:%'ҦbD Hݿ[r9Yi\rEy*7nˮ=$Edj$Edaޝ{ʁCGԩ%%W7nK[t ?j@ub#tá:{_iKL駟T0݁_]^=ɞ=;vLt%NXu .:ՊZ=o޼֪4l2I2]֦oZg5??䓒-[6]c~˔)cIw6묁^0!odgǏozM&7o4`^TP]78u#i]_?rgcV:?~-\CZ6n蹤Gǒ3gNs5ŋ_^CQCt>qك1W5ꫯz6.\Xx ɝ;h~ѷ)+ .&mAߖH" m-@@@@@k-' AvAv ʡ  #=VVw2{xAo~rKȦ-F?oX9 'ss>7]42 >w+ևܫa_7-wd2jҿ׹|劼?aX维RJNm%g'S]+G4XB5VD};vXf3G4mmts ={=.XuW_}e>*M4!~ {-cW`5`}Ag~adc%Kf>}駟L_[C37l`}" k5U;3f̐bŊyg6(hUЁ|}CڵRJly%44}eB֭+} qnj3g4gȐl9nϣpҤI6t~Vjr@!q}S͛׵ cjz7m,s Ț5gC{(l@@@@@d'n9_;-W@@ _TSԴ"*ݺs ^H!b:6Ȯ;-?F\jO33䰂3?BvB*U{${SOSmZ[̙䙧rɍ7M(\+~[ΐy9g(D ˶sh(L$^ܸ>0v^K5_$+Wq{wl-%skפerQ.bS]+ٸu99=M`6wXki^[d_EkS iXݾdkZ5[+_zE6ly>jUVAj7 O;B24.\08  {0wTR?,Z_n٭#@@@@@ H [N%.(Av˕C7@@G gΜJjMً>[@t}׌e}&TaͪRXhx };wn 'Ysͱo/+4x˖N4_%iVȪ#'N/|/fĮPo(D~Y-G}h*;UMiTX:`)&a}i{#e- ~|3q-T׀ lY2oϺk!/o`LwXϕ0A9 ۷cuNAaUeINE]KV?֠ߨISe7M(xoݫCk)Y u 3k+)ާ[ʱd°#k`#2AE7vWdzZ xF=֜K_oϛ;rW;hްJΞ z U_wB.R&Θc~=T6=YWAd )+W)ˈ==nzܥ˗뀡mٲd vNAv j%nmidM_⬕tֻwoOH:Z]7i˓' {K,֭[n>w={_\ƍEs޽̙㬹'J2eW^6tw[;{;u$͚5/05{Ǐ=[tcVgmtؽϣ|-teqRtis̙3 }*u1{lQ|XA`Uo:H-СC,dC@@@@` d'n9;-W@@d+Һq}4[r-wV]gǙp6AYYNUV wh8`HTWv&Ԝ'Gv;D>Mw W]?⪻b ae:mۥC~Kf) IDAT A+Y]yP};A-_)28bdϒKV6run\;fig*\W4o gg 8v'e%sYSL_ljTϦ`Y {0梿{j]]`M|QK:O|4MG\ñ nutrmr:zgw_vRy'ҡ'J$ 3OM#3Ǐφ-ۤS_':O7)nCҴ}Wm7܋ {~L8_ӠViN]`A*U^6 /ai Mkj˗.^(ZZWݕ+WiӦ bk ;t 1uCz{ro>7doӦ'aݼ֮Al$I}7J* _zUBWuj| Ek\ £5T+߰aC q!bŊɌ3<=ϼyDڴV&wytiժk= {0j۶m=L:TL#5A@@@@d'n9;-W@@5jjZAO?7m[;Ȯ*fM3. {eT)SCٵrrْťKaV:y ruiL^)_woܸ)k50M˛}gJͦG=ڷŋz0}|pz=wʸAs.*˥ᴙ&=j@Oʿ;|裏\Rel '<8g6UJdS=_2j3f~o<_ܣErQjr`py*g !?):"d\ tQ WXNZ4kM[aS%M*]oQK^XD8i6hе}9P}Ү ϞP><&̚0s}"MZx}zl9RZe_jCAvl2c ]:{t {{at 7iD/_KuY~m㴲հ]˕+,]x {_&D<}tٽ{Z gO-)6-" ?&Ѧ'9X7lٲEm4@ru2dTVT$׍ ɒ%3Y ӷ7h^7+ODm]ϩcM{_c ]߸w!+V4_k2fOuMZ?2 {d8@@@@"@ !"@d\9tC@xx4.jZm_7}Ւ g{Ґ[=uߥMw G35 d{4 Q kuwPٳ矗m۶ѣG{B߶c SO7؞{}1B|0zI)Rߟ۷o7okG=bG@@@@ d'n9;-W@@.AɓTƍ[nwu4^.>C?$nj7/>I$N%P_֘6 Vk:Pkֱ@J/"=mЦ<|Lʖ(&]۴s9wLd,i$nZقZ$St>XF5|:MӰBT__~ڻ_:"TU('4Ba}˸i3dޗˤ{l.> Gu.7h\'*:sIOa3fˢ}kBXR¦K*Wi\pzބ~@Ezt\nԬ]L22qDS߸qCpRׯ/pզSJeum ݭ]vh"Z{bBqR`A'wܲdkTd֘úQ^JF תUK4@ݴB;8o*iذa*uɓGt.$N8B-*iӦΩSLx]SǎE+RP!Ѡ⋢AwxҤIbnXذa'o5D6zҥK癿yNjֈ޽{KzwP_3g+]]7h4Q@@@@Av Ar @@ZY]g1]-y?쥊 wĉa$mϰQ{@A57K!|8R=o.y~W4T\LINSt)E]If>sVnU6n&K\?yD]i"'FɊDC_.au<\V$#n9_,} jY;wlӍ}6p@ъӧ+W+F GRh^ٞGǪcf9kvnaك1W'n@L#5A@@@@d'n9;-W@@W(SJ:4o,/۷oKLe쐾'N!iҮNɑo@A'NJwڙcܡ@j7աׯm۠Q仕kٴȌeԝZ-JG<ָ>>w|[ VE˯ A;mE tʕ=,իW]-[;jU7_m]7pmVZnuCw?A {0Mjuz rk[xx {6m}&|٦qƙZe]C4!Ci7m$UV5F@}իW@ΚkΛ2T>[X.^b͛;˵2ΟoU;wHcR2 Vj}cS v!vmnhvϒ32fPoskכ{ÚUeϥp^T٣: dK7UCd7u[L%L s&Q&=d_n k{'M09nܸדVqWҥKV#˗7&M*˗/dɒ#GB\G;~2rHsL׮]I&~ ;wnYdO? %k0Xu1Uڵe͚5ۢE-@6{eɗ/({좡@;ϵy5ĮaѣG%]t~l޼لõe͚Uwl:_3gL kg+Wx}<Ή[uǫu:u.iS"En(V\~ݼBߘ&MO߰{rʙ51cFFM7|,tv nB:th      NrdwAdw [!  ld{yoDY 5W[ot{3l\^'K*?. $Aqe۲hg&,_,FNj'3?)ɒ& q;"~fB>.1[<'u5az5'5x[E{5˓s U|hreMӆ~;_p (jU}C_V,U* ]v8L\ΜSު4UPtgɘN<"U5ʻwE4Ȯ\w/ OkIF )e'`ۿK{)\as*w@ӜR26Է%>{VJ6 =dk*ѓ'O*/7n,k׮5]F 4hP ~eԨQφ PwMU&{رckjiӦ9r… }?om-K,mԩ6G1wV׀p6|p=kE|;~ nP'ݾ}{iѢ:}·wxO…… [hٲ9C7gߥMVV^ms>}e{l3|Av=@[oc5?}tsNvM7|7J*y6md>og$t۵k?h^לf;vHŊaZ]+jYށH=XB@@@@Av Ar @@` [w#0G"VphMH\Cڵ?!?=0 _rEj5k+W^5A~]:H Nek׮& wh{&׼~mTĎtٹg 5N4̞5s&kol٨T,[xj;e ֶn\OެjPwT+`V$=7q6%c'7oݒ;vɰq*-wx\ѯx:Ov]dCU:YdQ:O9v8)qZ-x|K*ݱ( {Ψ%՛2s=[ҵMKzT͗yݵus)[E{zqfȼ/-Y\Z6+&4Ɗة_@1~jڴº ( O<8qBv);wY9sʂ | _xQ4Um3g6AhBa 6?lĻǥauwv _LS[tMZн;Į}'O.7n? kK:jJk¡nQsxtӦMv4C[o߾=iرc;`jտ״K:!z|@@@@ [.(Av˕C7@@-pz?Ϝ&ਆH' (iӤϿ\*? %IȄ 5'vlI" 6o.F|`kK2$IP:lΩ+BV5x mi^CNs~:Erkh}c] $㏛pc=_(_wS<>cg[(:On߹c>*)%?|.tI {Ș͏?%gn'JľGEl_M7D|7oW9Ȯ7h'}kExA`/=ǯjn8rH&Iļ%oرBAK,1]y={vd)     ϣՐϽ?_}?= 6!gG;&,H`t.EA`,+΁  @$ {ݾ=SWvL=W= g͜A:j._},XM 4ٲ} k0|[5CTĹpٷ]{{n@XT}B{X[5i͝CF6Wo$ 73at | {T"Av1V,gϕ3gtcDՊF R oѷ>Av5W^'3?_ C˝=TXNJv]nɓ'o>hٳK˖-lٲfDz" &kx[k][o5ޯ_?Yy6 g͚TvuڵECƍgnzZ]p {0V8p+j㏛CZ]۴`ZU&|K9LsWO7Sh@]׸V<נwF뿕?ͭ @ߣGYrpmу2f(M65u-Ef֯_gӅM=XsU+[b>}3NpLCL=BٵB>W}}*UDr     @얫 Ar @@` du> ?uZ2K'qƉi$sU#n޺%ZM$N2ˍ7#Nm*GS H2 !T|/*Avc.>h.z<V?q$NP?}C0?MҼ!"-:ٽUä0O^_zTi׀v4i$SLհ֭[;wHuO ی;ws3ƽo*GQ8bG r9ޭ[7O͍=Z*V9B@@@@2-4AvAv ʡ   lQAv1m@*+nggJ|FA>?.@85~M)U8q%Hf6}g7"믯g? yjy@4"}1  ;ك8    4yh4|,IbI?Css玜8}BiS>P=d@[}raYv\rc=&?ĉ'R    ԩSGg~O@@@@@] ;Av9JE݁ nr  0Ve2 @Z]bߊ      @ -WAvAv ʡ          Av Ar @@@@@@@@@@W ;AvuAE݁ nr          +@ "@d\9tC@@@@@@@@@ Nr]dwAdw [!          d'n.;-W@@@@@@@@@@|d\]P+n           [ .(Av˕C7@@@@@@@@@@_-AvAv ʡ          Av Ar @@@@@@@@@@W ;AvuAE݁ nr          +@ "@d\9tC@@@@@@@@@ Nr]dwAdw [!          d'n.;-W@@@@@@@@@@|d\]P+n           [ .(Av˕C7@@@@@@@@@@_-AvAv ʡ          Av Ar @@@@@@@@@@W ;AvuAE݁ nr          +@ "@d\9tC@@@@@@@@@ Nr]dwAdw [!          d'n.;-W@@@@@@@@@@|d\]P+n           [ .(Av˕C7@@@@@@@@@@_-AvAv ʡ          Av Ar @@@@@@@@@@W ;AvuAE݁ nr          +@ "@d\9tC@@@@@@@@@ Nr]dwAdw [!          d'n.;-W@@@w'VMǿ?FI5*EB$Q(@ ̓h,"C(JA}{9{i<=?ݳ{Z?       $ N ȞE=Aʡ  GCȑ#va2d`si@@@@@@@ d'sdO" s @@x (~x!n2eD=m      p" d's~dO" s @@x :tJFxJ@U3f̘`@@@@@@8d9/ '@d@dr  @x!dɒ̀@@@@@@8d9' '@d@dr  @[G%MTN?*T]tiOSy>~wzGN;_)pާ{ҤIֵkW;?-=Γ+Ҷn(V^R"      \9tC@@ -ң +ڵkm~ˑ#+Vn_}x'S9V}̙֭[7˞= :ʔ)bާ yB=%     %@ K= { ϕC7@@-@=ޢ/=  ŋG6wdumܼyxkR4)+޺ukSHYM6裏"u>}JM {z'S2    \  \9tC@@ "ȾvF[tjV a}?gܵcU*]|TA$p7o[nv.'[lVvm+\Z֭[K. ^nSNI.-Z7j pBo͛iV@T]qLaXA_~zm2dcZժUS^t2ܓXA:Od@@@@8d9c '@d@dr  @EO?ǹK8˒%sץG_`UXv"IXُ9b3UdW\'A(>W@@Axr(p,+VpuB -SLQnjcwWRxD} q2ZLO{1ƪȞcJ} Jw     d&'@d@dr  @[Gcd뭷ohР 80YE]dpB˚5k;i :ڵk-sV@Bgm͚5?$Op~z;3XSva+V8"-Ȯ{i&S"ER=ogwN;-WR❚ M-^eȐGl۶mNIdƍn^}s uR8`6lEZƌSΓ {ևݻp‰ű}w^ۼy{^Ν|Ç5Yߵ{pQ:Y\K}@@@@HAv>g A(>W@@Axr(ij^z%0`jӦMo߾1s=ѣmٲeֽ{wۅT=[l/b{[#F?`/6#XJ"^ӗ_~>Wkժ5lЅgϞmsYf )@B^pyVrd駟hsε,XtF:uؓO>iٳgOX7nP%Kth۶~1axXA?v׺C+K˽     6} P}! z|),/)p-rLK0sS\Xٿ;T+X }zs=CvKM՜Ck΅PkV(RC_|a5j0U{N.\K8-Zpa`#5)Z> svUXAvV:DV%믿ޅУ&M j3fpUC IGQ;Ӻu떪@M7dK,qԦ~®W^idW\7DS`Zao#5AJ}d .G{mڴ]vEdzk-MrU=ZS\QF"~ |rp}IS &杴<;5m$5EjC7-- Ru#    E ;Av {AAv+n  @m̘1OʗXlY#]e+W+l֭Vp!2VXQң]*W,o?n?l+mly%lV9b׭+W5k-gVHaB9˒LEЃK [ZOB EeXE|]CZ;Qvͺyv˙=[UΕi.w#kVvA钖+g_lm޲m{/Yj ,z*^oں͝O+'kqV[,P+D Ce iStU׽Dž >(QP\PAlygtݘW`߫`uy֛6<3| .yukyȑjz+ۡ-k]ϡΝ;Scի*2ZZ~E     pd9'@d@dr  p(֩Sd*G2{ {'z¥ƚm/ l@SWVqwN LwjW,VIڸ7v5g57x}D+P[\0EK :K!խUl̘1}{z/C[ܹ]vUѫDo߱Ӟ8/"mBmi9su&//6&9 ni0Ip`듧ķ޵{=V5^F/ ^`|·_]ZeϚ,Y採y -sLIAU;wg{uU/]Pg}Z;XW$et |׼JW6oby"res}r~]:veMj]n|S0֛&9$\UU.us4wAjz5#q`/`^]A" W*j><'~>d*i# =_m-:[ސhCAu]1c}{`yH"VNGUc5?owaGz1k^xᅮr?B p/v ++ǑB^Ve )Pˑ´ ,MŽձ>OK}ݺuoڵ]*z+ާl.]}/YQ%nhkh5;V]o6fCǠ%7xcT[k578xTguUٛO{h`[X"&޽{7%%ȞеkW4i~C,ApW=X饊 |{ ^Z6%0*UiUYf[cxQHہ&>l^6U槞u} MHZ<~׺Ω*"փ2e$\50p]w%gEj~C@@@@d's&dO" s @@([ {&2fh˖-;dzY%#Z҅ir0XG6rkʣ'l2dp?dlkpۭuW7|П̘ev?nz{=yG> Td_rfֺU;6`WaZ w.XlyrAY"U-=x8ؾe͒e `2UW@}VDD`g6x8n_$5hۈpnm3,[֬*6gonNt)Lweקkg%?q.UٽjVjUf_tA"Lëϙ}MO:W^t'GhBy<:޽{]e{Uozδm6bk 9VV`wus {ҥ]uhu֦PG}d\pA6JѣM&њҭ9hQ`3˲o߾6n\y2bm 4sj(:5jU0k'n͚5]l=̙c9rxɪ~j*ghU֎wrA IV?tq5U~c 5S:tp?{Uw Gk &+H {ZCj\^6К)ZhU۫DA~ fiF~UpUV ^ +=B֚;\5j 8}%ڛ0پ}o8,otX7zC7x_Uߵs~vwG wMx<+b={W!     N"ȞE=Aʡ  #po[:nn^Z}|Ѳ=CCБ쯽3Ƽ`y]+Rlmں.,Sچ=+I7cj톈ANOYaFp1s dWed#5}_S06mM)ur/wo (U;_7 ,YҦOC~*빦5m. fƒ=\~QX٣m@- g6JEk +h}PxUHd罾+l۶m/̙3';H._UWS@y֨Q#gNZjڰ_{Εw\k]5iAϕHz~z+VXpwx<+b={u_8    ^ ;Av {AAv+n  *\7<[=4Ȯ qkw]AW]{Ozi˛wx]GV|}jɆwjwj ÛW1="NӖ.`vkuNkr߃';?`5U 5U{kTWa|ቪlɦtʗ%%:L_u}ʅui: r_uOs[@Z|y#^sƸ.,kCCxY2gCIR=9w>؆rao}^ۼm5oQY%*c= {O>8VNG©S*цVVSaUSdWcǺ &~ d/W\ ֻ*WP!V7y,XAv;UYAÇۦMּ9u-N *+X ]tpk< k*)h=a„/_7oވX'Nh +Z˖-ԧSN/ڐtv +X9\Km}ڵ.|Nт ԗ)SƅU]]oHms/_>ꪫUDOIг@GzE{.yZRStজHo dz"ֳ7!    @d9'@d@dr  p(0ZrMXSLұ JgC Ʊ`2-PX"1Zk.祥{rww7Z4#x' ok_hz2%^~fܯR]zqyXB+QH/i=2i\Q**/3L;ٸ&YLQ7_*<͓#5/^й6ahǾ}vG{]:wl⛓y%l3 -c= wug؃6Qij)޽{`N"NI]՟xF5UW0>O[hN׳]#*)߳g<~wYפ5洞fVhM=@@@@@  U \9tC@8ocƌ8֭[O>|Zzpoˈ1h# @Ar2f‹ictTXd +@_Z5_|Ũ$n0T޻gSJ>dTe_ר96=֢E ޽{KRر2gls̱L2}n PZ`/1)gΜQ1m4k۶<>jLx#o=ckmڴ13Z;Av]*_=~˕+WMm]TwU|T[oD֢yx%L:5=7l>[W^~Vp_W\Qଽw=9YH4^h< (ZF_oힶ_mxB/)c= rvZwzUf[Xb*Cwq_O֨Q#5jرc#s͚5V~}S(ح]w&xۼy! V >3Xas",*pϫ +ĮpurmƍVP9{,Cm ! С Fk7nw{PΣw9xn[V8֬Y3W^߷rE#U1p֢#<LWYj^X{Z}_k˫ի a_jPhMǟ;wXKoӴ~?#^r._mw}qƮ <ï[O^_v81nܸdz"ֳ׏;}@@@@@ d'sdO" s @@x  2phd,76w7F -w6q3-kD{za۳wUXv>lPKduٗ_[D  7h5>}+A{_Ϩ$c=ɱ O<م4vT+8f]TO+Wz+Qŋ7~-,@_ƪ@e%GZU%k/_S?w3f g K.m%d{ݺumŊ =o>[ O!w}ߛ6m{h,uOUYazz.HZ86(~s!l͉Ç[J|O[+h^k h̑ѣA-PFBˀ<36bĈ5/Z]!fG!ϏW]sKvOq\PU ҥKCG{SK b{Ǜ =:U0aBV8& nEzm߾\˛7㏾Yh^q^u))Z>}Lryw_nF>;-<9l_dɒvi'tD@@@@ d'sdO" s @@x  iWvA.BU\V!'joŋvkoa+Vqdc>kڦ =+޻k`nU~nl>];UU*'{@Yͬލ[Ƅג+m0{l䠾IB:LJfq>..ܦg66l˦{wۭuoT۶듧Ͼ{+V$5|{r3geKg];uW}⥮J*~ @@ mP}\zUuBOr,nc+g:vTp–;wnSQ!_~Tˑ# L/^<خy*:t߽֢E SUslٲu]B Z>iӦYR? =n IDATFhR6mڸp|@׈q 3, .0x&M /4e6UYTyyԨQIo]WeͽCك>{j7֬9qy BjݺuVZ_ꘒpkZ{Uӳ]v.u`*돚 "h3gZoj{y15Mymd?BT?tF?=C[Z)Y1mQb̙o9u?n{XV4@@@@86 i \9tC@@ ;Ȯl߱򄩪zlgY'L^ CV8M33f|yr y 6w"PW]-_<#[6[n;˜w5-buWpUw 2*Tۂto˟'wWкS}m@ٲZ]~W\ZtyZ怮cȗ6oj~=xlbMn%^{gMx;TO0k׮u!@$Wu70wXAvS_ݻw'{Vj䝒y2%AUV9c͚5ˊI%| *`텩# R?I䘓6Az'Ntt4֢>ֲfj7v[MS& $<#5]ǭjv> {o괨Avko/_-uy5K/b7J.I_mۭXB)Slݶ/+^e8t?_ICf˝#ϗ7?pmؼ]c6mq@rפgkήp1d6m۷9c ltT8^bŊE ulǎVti˛7?sDW\WhQSx^a4Lͱ?Mm۶iӦCv:tC@@@@@ (@ @= { ϕC7@@-@=ޢ/= dOw1#UVM7d.Ow_߳g 0&M^paS]      d'sUdO" s @@x d(K.]g Gȑ#*{M .~w[v>|}tg؄ +sh      D ;Av˂ {AAv+n  [СCYH2d32F@ U ێ;"/w;T/!     } P}!  o8r<ҍ@LNK7e @Z֭[g@%KRJYJrX      NR ȞE=Aʡ  GC@aÇShrSV@L!~b      p d'sdO" s @@@@@@@@@@ Av>A(>W@@@@@@@@@@ d's]dO" s @@@@@@@@@@ Av>A(>W@@@@@@@@@@ d's]dO" s @@@@@@@@@@ Av>A(>W@@@@@@@@@@ d's]dO" s @@@@@@@@@@ Av>A(>W@@@@@@@@@@ d's]dO" s @@@@@@@@@@ Av>A(>W@@@@@@@@@@ d's]dO" s @@@@@@@@@@ Av>A(>W@@@@@@@@@@ d's]dO" s @@@@@@@@@@ Av>A(>W@@@@@@@@@@ d's]dO" s @@@@@@@@@@ Av>A(>W@@@@@@@@@@ d's]dO" s @@@@@@@@@@ Av>A(>W@@@@@@@@@@ d's]dO" s @@@@@@@@@@ Av>A(>W@@@@@@@@@@ d's]dO" s @@@@@@@@@@ Av>A(>W@@@@@@@@@@ d's]dO" s @@@@@@@@@@ Av>A(>W@@@@@@@@@@ d's]dO" s @@@@@@@@@@ Av>A(>W@@@@@@@@@@ d's]dO" s @@@@@@@@@@ Av>A(>W@@@@@@@@@@ d's]dO" s @@@@@@@@@@ Av>A(>W@@@@@@@@@@ d's]dO" s @@!p;|CC2d09}^       pTd9'@d@dr  @b?p@H72e"̞n6E@@@@@8d9? '@d@dr  @:D%xrt%3fLWcf        \9tC@@ WHwYdIwcf      h  \9tC@@ -ңA]?r䈝vi@߾}mܸq#F 7ܐ2i$ڵnǎݟn&[d;9s,W\G4;w)SsVJcz~N'ܳ"=*:cF@@@@%@ ϹE= { ϕC7@@-@=ޢ/=  {Nl۶m$ϟ?{"=sL֭eϞ݆jeʔIt}ُ ~Az 6X6mlֽ{w5 3x@@@@8J Z \9tC@@ -ңרQ֭[ZvwZ-[lN[6T}G {jTh)3f}bŊ6yd(     pd's2dO" s @@x  moY2~zysn˗7UtQ9|57eP'[;?YQ/[]?mg3γŋ< W\B?Ν;mƍo߾׮]Fs,/[޽-C 6vXZjC(AZhᮭQF6`C馛lɒ%9s=~N~~͛7 fV@6CYٲe-j_|Es-\7nl0Y(T}We&ȾqF怳>;x͓&M]wII[hҨQ#0`@įtMdٜ9s,W\~;v}J~zJNyf;s-[l)~/?f={`7۶m.\زfQ?WnUϗ/ɓ'lj5.]Sb %>lvZgMGbӦMܹb?tF"SL[Z[l1m3;f]@㖝ƞC1&tH~>|]XO}ԳʛX     @ yH= { ϕC7@@-@=ޢ'N 6njIq]%>d5˗/>Θ1-[,Q׏>z~v=X6mKx=31cF~7x駟k6~ ;wtȝ;URzafJqO?ݻc)g {A/8Q ׯ_?M!_5C/RWD.~}߶cǺ؞x ˑ#G g϶Ç}Rܨ]uŹM2\J~8q曶{-Z*T`<,X0*,/sm߾=_*{"'^srРAΫ?`ZΜ9bŊ֪U++9r}wRoPSe˖v}Y jFSeɒ?|kݺ'Z:zWx⦟͜9V\iGqoϻuܤK 6*@֐9Rr$뭷lڴipB۵k\5o׮կ_?Q\TkzwB7~_vw;1ƍ~[MUճMFiuLFPzmѢEAsyk{n6DH}Ԛ1 IDAT֝֠kɒ%N:ֶmTmI @@@@@%@ ϹG= { ϕC7@@SO>_~78)κ[` $'r=-@ٓ+۸qcG\T)T m'OIxSh.riUY^XAX8 +HhïCAb}ߊC%;HWwnjaЃ)縞ߑ¤ ?k|њ/UT)U^={*BGjw Rk>E ϝ;]`t,UnzK.upUa2glz 9)?~.F;~^%\b }{;6/Dkwy ksIh ]' k%7oA{ÀSF [n]sHB ^k68xlDBw>3v]w9&wy'ݦmFoiuLajyrM{m }CGH}/^6JD ,C I     .@ 9J= { ϕC7@@SK.)n?ΛoJ,aٳfonde+n5Ua/6o"WZˬLĕ?3YT1^M4ƔVfW:OSP!S0rCgFU*_qv7{p-4[xB{uFǽ \@^)T)]RUX.W\0񚓡Av\T.׹*O0!X\Ug+VpXasU>F?mt*+@ݰa$c 5NrOVuw=JvV]BsEkCL@DsF/̭{~wڵkm^tGBt|3YMR@\]BC ^YN\si{㖡6(xM5?AvG=ӛ"C4nmظq\sV$76FaGJί{ﺺu뺿s9*`0 c     pd'sdO" s @@Px E*f챂e .kV9,0V*;WN{wpGvy`XAW&kxo֠n8`oL\X&,Zlә_ڐǛBn`vfX~A_h˓;kܮʨuȗyPmh8uqV'{hOZ!m'[֬뱇R vGOuy08ohVIX_3LSd߸eu7oڜ\ڈH{sN (Ȯp-[\pyذa.p֤IWXp>tUx6|kVpdB^FZh]HUVkݷ/ GmkCs=nxڵkg?5`«Vr߉d>yh 6z6<*vxqqY϶3f$O0PXhdɒ6}5'C:رcꫯNd7hׯ\}I!>)+57x_|PYAu=?J*e;,k֬n0qB׉iSWw m޼yGg϶nRuvUuWkmIϺfs]Be˺-ZԾ⋈s8V]km۶^3mm hړO>i x:&׽ԳJRy$o\k0t<<?Q}y㧟~rԯ- ~pAC@@@@N5}i P}! : . ;u++W"εY۶KREv9rf~OW%} \շߵB յ-ՑÛt}V^>R/:TU\pĽ"q/;~~vi=k[d;`+lC̙2%UaܽٻUvAR۞wUH}U~kSZaW_*+?TL.W=)W=-4ȮPXf+WۼEKz._d]G<~7 koE}m'}\`e2l-6gb7v2Td5GTŸO>vmEpzr2L2eh7Umcdڵ Fj *j˪5=_U]U[UrvTZ۰a ĪwlbZy覨 *$~ H{WW(׫~!쯪j۷.]h \s*TצZh]\5'C==CcјV;IPŊ7xC7$D6*k3Iu`Txh\}C7(ĭy_x`Uum&|T @kb}hW]yܡ⑚6먺֎+8mC@Z#^0TjUT?R{goЛx?+wYfauMJkц-As9[$#    'Av>*A(>W@@NU.U+߲eˎ٫^V>tr{aw6 d' ?Nrm +g^ nsueԱ~2c 6}zvoUk|wC]k)ݗ/ٽ1 ޼aC#.;(\.M$s64n6(l*u֑xMZӪhs]֬Y67 xC@@@@=S P}=! 3-^MֱU ٠spqu~W7Ǐ9? Oyk{]nW继}S'Ŋ'$Ӻön㖰A}e+Eτ=cOyaȞ-pKZ~|U\!5S{t˗M4橑cl֜/P|6鹡a's^={5냃{:Q̵_t>*qE!Ȯohھ;v,lsg]͛q*P-<&_7m~.|\uV;w ,bWiD+^Xh+:rHwYBԧ[]ݰCAXRPFUɢN:~F~pcIxkVٱT㺰&eN{]cVMa߿}ovWk}vZժƍ9}>u¨]b'O}gU*rwTL=Uש~G](dVp]k8xoam^N A9|ǍP. <`f ȓ78矻F^.Q [pn׃ _}ƙdoݺ͙3'\۶m}RXUV`ydgcb\uuV0=x;^6mO}߂0^7|½ɭxɓdM>-[,X?K;9Avu҆}E1c؍7ޘxٵCYT k.*n7FYx:Fo ,]is6r*U*!d783|rK{<#    Av!A(>W@@R¤ oFÇۭ$>w71_sR6bp.Y:=CHBa)"׬hmrQ7hۚqAXϐ l̀>)zݱۼT/]\U.8|9E'&/AvynozҶeh!wl lƔ yOD>tG=6dHLA[UhxcG~E8 4~c SW/gVR]sssT :,YҝJ"9"VӅC~gZJ=kN _|a{o,KYT֑ seΜuΘ1wv>QA{g~Q=on\s0Bc CFrԙ?IDsRJI^Gv}{J ~}„ '     d8 '@dAdr  q?~|؛jժߐ:?շg7=y6܏OgY2g )Wg|Ze9sdGlպV5֧{;=d7oW^Hsǟ6lμbR֨P)>~7z w;*+mC<8dj?5r͚*&=74"׉&'Ȯ>6n8w ]tIWh8Vp4:u2U:IA-Zؼy}t\=~1;pGYAHAo~Xh{ڽ,C[vnl7԰ڷ \Sڊ5k5_ҝ~o\d?,^b~^aGYfC^Χ1^zeVuTݻύhg}bW_ͩpڂ/ 8ݪ? F{]ݗX֮];9 뺍5; e-т +#oիW]U+lr+^s2V]+Vu뺿^wu6iҤз:ͫK˗/޽{MUn?}vѣGU;v3fSVVe 6H>}G}d۷wս]#y1Ec9rd >{l+RH`FtO>@@@@@L N%ȞEAa  8A7ԴnkYѣV6lZqӽq% ;.R}@v}W ;tߢLJOʝ[:v-]^x;tmv< {lo@}Mנ-wrvvs^wÇ=}w5y͚mRy@x !}zXre"l䄗γߜB*كC}5u l: kp+]fuUi}۵k纗G3)ȮMJ0nΝMxWn\{B^{mSD S{8vUmٳg.Q\]5T }F_504 (kN _/,AvRJ&ӻM꒟܊VxuW͟??lm͗[5Np2AM6mB!Gs^OHנgp aZb,mڴa>ܞ0sDː!3/wVGy*X^ɽZƷ[;edWP-[[k6 ˖[>kWz&NoM:ɇ7`{wa/ Ayʔ V]Yemp/_8;^ܑ/[Kr~wiwz iK;_;^dnOsГ zJ_Y<= ]m۶{Urʁ*D:a„&7o믿m>w}˖-VfM׵8k֬W_E(cQM/95o޼@_̟|7BX?<8P<8:שS3gNԎrޓB:Zj6yomÆ m_Z_˗/o0z)3f{iӦ6hsSf7t_|}駁{ ⺀kN _'^AvQM ڼ<6ȑ#ѐx_]xᅉΥgt嗻5}N6ZN[5vXĿί*Z IDATp[ףM\sMn3M{_k!۳wU(SҞ+#ƿd2OofٲfIBz¾_ą'ji=70f;0|;o]]~GTB 詛վ:/}T(k>qA::l'k㞷Y&zu^vF|{]ߝ=?ֲՑ]﾿yV.WChps_h` 2{iF=^R`Tp{n\jU…m̙:E3dɒ.x&M;wnP2e [p \+|nա{EJ˖-[nŝG]vJ>ewmPwpE]{m5r]#uwX*޸q{In7NrOz1tC~sV|\ݦMƞ3fe]hL68 gy9yڈpM7١C7K(uh)۷oQFYٲeCb@/@5~xY$&TÆ zoPҷkluts=XC6hj6Vsw)Rm 뚴I@Uf]{p1M$@Z[U\9&BKuC?C:YkС|^{}w[o޺kSߛa/4<um7f?ȉW >rv'q?K4F MM6mMz:WpmuupۣC[+}U˺μr&?}l{n$jm5ٳB{13!ޮ]$] +X3WxQ _tECYѢE1.\{"uuoРrJo\\AL$.2eʸyիW7uPu ={\w ^uUn|[{>}C_pWvB +:9W ҥKn a+V| RH}ǎVV-RWRRǑ /#\<1'Ov]/gy݊:q_z饦 :GqAq3.U"W\57o^wJuW}~TRu3>CƁ[o5!wuK y+دuΞ=ۍϙ3C]'8qb`#^W=[6gpLt࠿3CJk}n;fk[~u엿xxy:ֺ6sϠD{}Q`6u.]H@@@@@V ;Av {AvAv+a  [Tu?;wfvL3ڸY:ؖZ^˔+pE.\y/v>g$ݨҝooW39k,c简kK/'}زfIMWТC7u.w9Y2giϳ]Buoi?/_'\}?#|+K]iO$0^6 >AU^MѣG Ӂu[pAvGPW=Z9u%Ig{-Zf᎕%K=z]}I^ǜ<Avf9r&RM۶mMg]QVswTWxE.p.b+]{nȽD}BuWy n9ҿ]>t{V_#-JƎ!֭[拿^uT     Av'$A(>W@@d=g>`H':~o_jn ϋ.h=>3{w:?^d?-]躭0e Z˻ﲲAݼ#Yٟچ3^pի}5iP2O1)P8k?|Q֨^]s} Џw$򈡮B ҫBYҦ G*m:Ez셹sYZF sx6Ȯƅ|f|ymˣmgl]\VUե?sUpw_$ C=: שSu>QAv] ŋ<%Kڐ!C܆uAV4Ȯ OOd]תP:֭[ΝW锖-6֮]8~ƌ]wAٴiL_U ^nϟ?vmZQ)|]jUkݺoRuO;w WxuW7|9y*{Qgru^dI3^7r(̬ Vf/8 Yk~ofHݺu-[>GThthя7.Qcdwƌ.lzg^ˑ#5m9>\1\f}ܹsmŊvСp}jm[Z^z?6i[Xb~&MlBE\ϫxn5B@@@@4=Y P}=!  oXAx/^S_vBG ]G;;m߁L[ X,Y\֡Cm/ڿ]; RpMzl/Ο/bwpץ@ƭ,[֬a;П{I4iz9k&Xwhku@@@@@ 9 {/ {\9 C@@ gj=8YFދ      @j N'ȞEAa   oQw6 d?:      p d'qNdO" q0 @@x d(;O{F@@@@@8d8' '@dAdr  @[㝍Ƨ=#     n { {\9 C@@ GGF M46mڳ~Q@@@@@@NW=M P}=!  ocǎ١C}XY#.]:;sΚF@@@@@@8]d87 '@dAdr  P]]~"t9fjP'v{j}      &@ 9K=  Ǖ0@@@@@@@@@@ {\ {\9 C@@@@@@@@@H*@ uA=  Ǖ0@@@@@@@@@@ {\ {\9 C@@@@@@@@@H*@ uA=  Ǖ0@@@@@@@@@@ {\ {\9 C@@@@@@@@@H*@ uA=  Ǖ0@@@@@@@@@@ {\ {\9 C@@@@@@@@@H*@ uA=  Ǖ0@@@@@@@@@@ {\ {\9 C@@@@@@@@@H*@ uA=  Ǖ0@@@@@@@@@@ {\ {\9 C@@@@@@@@@H*@ uA=  Ǖ0@@@@@@@@@@ {\ {\9 C@@@@@@@@@H*@ uA=  Ǖ0@@@@@@@@@@ {\ {\9 C@@@@@@@@@H*@ uA=  Ǖ0@@@@@@@@@@ {\ {\9 C@@@@@@@@@H*@ uA=  Ǖ0@@@@@@@@@@ {\ {\9 C@@@@@@@@@H*@ uA=  Ǖ0@@@@@@@@@@ {\ {\9 C@@@@@@@@@H*@ uA=  Ǖ0@@@@@@@@@@ {\ {\9 C@@@@@@@@@H*@ uA=  Ǖ0@@@@@@@@@@ {\ {\9 C@@@@@@@@@H*@ uA=  Ǖ0@@@@@@@@@@ {\ {\9 C@@@@@@@@@H*@ uA=  Ǖ0@@@@@@@@@@ {\ {\9 C@@@@@@@@@H*@ uA=  Ǖ0@@Ncѣ'K M4s9'딜@@@@@@RAv7A(>W@@Ba9ҥKGݳ@@@@@@@ AvWA(>W@@#GoT,ueO6m`@@@@@@@ T ;Av {AvAv+a  [௿!9Ȑ!C@@@@@@@`= P}=!  ox)8ǎs9'%L'=|m֝Yfֿz <&N~4zhOٵpbR͛z*WlygE#    gAv*A(>W@@Axr {Νmǎ/3M4/_>+T.\؅;?V1ƍg%KI&Yڴirq'Bc"pz zz @@@@H { {\9 C@@ -R"p25j԰M6yL{ar/]{uf'Rc#pz A3z\      d8 '@dAdr  @NF}㖭t*w7תni=7޷폋w[9R'gAgY*+c9sdǩ WPB}1۲e)ة?;'|3gZO?Y"oEϟoyMy'7 p Av|7oh=ƍې!CŅ#    D N ȞEAa  8A?Ć.}攉!Cx߆;^~meVLI{ork7l]}Crǩ V`~1bM87;6l X4iz '#*RC]&+AT9u)@@@@@ AvA(>W@@AxmAv|饗l3g~ᄆ1Cc p {'F)     {\ {\9 C@@ -zw_馛lڵ~v|[liZڶm6k7ް˗Ǽp'=3,X` ʑ#]uUֳgO+Zhkd~ճGyĦLboZʅ/Rխ[ڷoF79{6yd[r:tWp5?koݺCeZ~bn=~„ nCJm+Ud{,YD?sn.熮W!pͧ;#j^sJG@Ah)LuYnݬPBQAkcn#SLVV-.袨8x 2ľKW]pVD ?۹s]y啁 ^6^|wl2=tnkaÆ믿^zWp¦͝;mQ0^O?ל^zҵ<ܴx֫W/Ǩ\)s6m֪W^.,aÆV͹ƍƅ|裏o߾n*moѳ7n\Jo!    f { {\9 C@H} OjҤz'f Tq9cO>v}?;vRܟƾKm鉞wp][U?cNN:oّJ]W5HQ V!k/|=wy F ^O9|.,U;8- Z}mЮvrܡU\aHм vuaW ٿ:o6m|T ?C QW\6)(TZ +$NJ= PAH6:(~WgPxJ& u+~7s>zY? gkӄ69D+u/[hT;vpR,YMx;%AYZz]T%K~;plAJaB@@@@H { {\9 C@H]? VZ.'b,ZlNJ2]p}۸uըz=m}B۷oYuuq^v-[ڶmn W".n%ˬBT^g+֬UkYK//+b/u͎Uꄻ~f[v)ܝ5k`+W*ː>齅;޻|jvKsv쒋 :){=\]?-]n?X鞫UsPgUok mƪZsp:,Vsu~GuAiӺsܹ]j{Ց}Μ9/RꫯvUduV=S J!lٲ?yKRVH59|T__mP7uI@Wi5T9WXuoi?Bc\~(үz@y_]5@$K/6hC{p0޼ys}۶mWeΜ́oPʕUZj:+$M*5u[n%[!Թ[{nwkCkcN>{6:ȺmpVi~̚5]_pi~hݏu2UX]x#u+?p@m;cuL׷6h~R] u׳=i>SB7y灞uogT֬Y]~_ծ]֬Y~m6}gZ.n5q\׺Է( D_7ov_6}Ehp_ *yksJf9ɹo"    ^ { {\9 C@H= v9 )hy; w=kתn?v;pկdٳewf~d*W,VקMֳVM r!{lHzA V i銨A~aMraЪ{C {U ;?$LSCHs\s=}jy]6dȐX@@@@@@=N[ P}=! u]`AR7_Ndy P gζ.K17%}O.;Zi؄|F-|RCK=7.}va W@_:, ]l˔Ld%Wc(D{i6b@K.]kP}={K.?/~I0PG^%;u6n򵮽u`WuK./f~uj?*8^RyEZRWZt+lJ_E/O H9ڽA[ڃ>:W}[ZU:Zg_Avu:{I8VTUD wxG}tҥ{N  v%O7|QFOx^bAvu WWmsDuuV5m E^8_ {r?5̾' C{}s)!L?{fn ~j]vIn 3 vUOO TnZÌ<ޜ>lHV\O9UA޽{'k׮YfJab=xphѢudWwG<œZ2e ;Ȟپ} Rk/^f͍p%xڑk=3PZo]RgcK&M\\zZž'}h=Z@9`s(T pUW?+XpWCs7_ꮮoPE.v̙خ[ Pr׺״B.Ȭ׷mfժ>tov^5=O_ndɒD&ڜ>E;{Rn%\6Cs 8r-fz-/Sü1@@@@H { {\9 C@H=gZ~ݛc(ZAKW{·oesI Oyk댬`y[E |b۶ŊNߡ1>l6n dg-^u+gh {IN[!svW]SHWҵQhŊ5 9Avڹwy<\͟?t :k '+^uSGwȑ#N:ꆮ*wu&/j*]UHab/Ԙ={ #>3oӦ{{FuxW_U^=6lXD k>zq(U`_UvN*}C3dWumPiӈC愾m@?#Av3q     @ N 'ȞEAa  @Ph2[o=7}71_sT6bp/Y:=CHBaM"׬hmrQ7hۚqAXϐ l̀>)z&ޱۼT/]\U.`7_|^YdW_[rUT\+Ȯ:w=o .\ f_7h$Ӊdꩧl̘1^K1ꀯЪdoժ͝;ZW^y;AvmP9B֣F)SNUX1߿{gyƾK)(ҥKgI[˖- u#Gִtꐯ ki.ԩxт^ɳ>Vse͚ݳHi'"ϻG j'~"\w CMEъ @@@@@ d'qdO" q0 @@ u <6~7ꉼd3bgoٟͳ!Ͽ:}8˒9SXHAϾ>{ϴ,gI=ZjUt/2~c֫)~$ƾ͙7?bR֨P)>~7{}YZՓ\ǩ Ǽd V`7dG 6l5(nYfG vmdwli {-l޼yza-j V`믿vE>&ׯ}QOsN?;w,Ym\ț79t%1AduUW'w_|}]ͷ)F]z:un2f̘7|^lŖ)ё_Gy?S=OD?Hi}+-#Rd53y@@@@8;d8 '@dAdr  ^ t-]5iwbK {ͪWl-sL67OY}]e?rGG Bf/L >-[ 5m/X֪_Su|qآW|5ֶY>G@=(AvI '|B˪6mXϞ=S4-dmǎ.DrDahwg˖-[ݲeKyǎ_|jժNa]M+tHհaC[p{o^ _k׺f֜ WsεVZB&Mp5j؄ ߰avmŋ]wE k+5w߸q[o+/\OW͑7|ӝ]v֣Gځ IDAT[hi~i,Xf͚e\ q @@@@@ d'qVdO" q0 @@x 婑cm֜mk_{0b˞-M12^pA"Yٞ{BT^^1%{gǖ!}z{u0˖5K{x%.d>iPKs1;mمyh4Lv?jJ_[ne V8ak*zd|.ݴi;)5ަMOm?j֬[G]'UlU ^z)?:kȑ#Ahk]cׯ\?)z>.̳}@{9=C IyڴiֻwokԨ/y]t Ur\8YqBKuՠAiӦ (WVʹ@f ÇKڨ6",X p CGO>=ɷohA۶m7t.޳.]|߬qWy+WDj*g.]yDc1M[=+u?M7vO<:rfI&Y9)ح&mHN5xC6|ǁ#<͛yZ˖-[n%`mcCFr,     pjd8 '@dAdr  @Nu]۪usα'Jr6ov".] q6o'mopd߷5i8{vuО3|9}PϮVR$0w?p[4zo ڐLa" ONt>Cfvˍgso#':0wl׽9ޏGG|k=8\T)Xߋ.i+Ȯ)@W_f̘˗/E|Vf}M;G''ȮsxڵB g? :t]^5j'Sd׵+PpUW][>^@wn?r YƽoU Oߟ9sf<ݻwwҥ3֭랝 o޼ٽe˖бk7pڵH u^B={v=uw|߻wvXқ1cM-Zؼyo|3TGyY~\ moW]n7x{~s/-%AuU^FNuצ#VоbŊ cy.cszu i>wymќ@@@@@=V P}=!  oSdU=Sƌ6nc7O$:KS\L%s&]wiZ]<\].YjẶraY2fu6c*֬q5îܯqO& +$m1G>1rȞ`[j{-S Epm_] 瞒dOvUW!zćx۷͜93iZo9&Aܹs:/GFmY$VX"ȮkRqj/_e^sSN>&Ol -u ~_\{.٥63Gy٫P:6(Ȟ5kD֭x+ CzU;cĵ`p l…1cƸdUV #4~W@@@`b+~ݛcרs:Z*zsHW'6lDS&Z Ə:|bI}6񵩶i@HO?wg~1ȮO{I.8RwY٫J$>k͘mؼuvUeWzkҠeHUs֜]gwEyr[zu55nE=9]RuYVglu:ש ϯkR\AGKvuڵ {ѢE]g7xrႮ2Qh;uNY1u[ߺuk`3^Sx~֡C ޖ> ;wX"Й^e{8{WW~忍7z]A`uzW^ 8>p@9_ )RuR5muWc::֟t C/^ܮ:rٴi">G/sG?dP9҆ w=؀g]U>}܆ rnZ%Kt) tYJ~io#ޯ*/Av=7vgϞZ7 zyA@@@@8Md8 '@dAdr  @b}xO!_vB[tI^γ}Nw/+|qK燏 X,Y,w^Nh̡Cm/ڿ];~‹TRjBNeH덶@ׯ_o ێ[r}CD7mdv2mș3+b]r^ٳǮ⊈sHcO^6clذeP<p9r"E֭[]uF˓'͘1:     gAvgW@@#Gѣ>,C@4i,mڴ3`g|8p 6^u;x`?뮻G9s;E@@@@@AvA(>W@@cСC>,C@ts< h3 /~3gNkڴ)@\+Vŋmٲe3W^i\rI*{n@@@@@ d'qdO" q0 @@!0әDrHĮbg       @<d8'@dAdr          T ;Av {AvAv+a          Id.'@dAdr  wPzUwB H5@0BX4E\JPұѥI HE^F@A(D҂HQAQTz;əLd&9kͺ9{. @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ ][ IDAT!{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @ @ @ @ @@S@.d/ !{ %d 셓c @OoN=P~oyZr%wL @ @ @مC"dpr,#@ @ }iرqiԨQ;&@ @ @ @tB!PB B^89 @mݖn6liNÇO/xZdERO<1KnΔ&d).J @ @ @,& d>BJ^A '2 @4hP9rd:&lnV顇ʷ袋[o5 _u&d5>'wI @ @ @ @!{ %d 셓c @@ t7do{kF y7Wy]wݕRKnwN#b'瞻GnN#3夯Zzw4lذr.J @ @ @( d>BJ^A '2 @hxi&O&Lx?1]s5iҤI;`@g}ѣ{~kĉ{[mzj}/~|ScƌI[lEܠGXgI~kNO) @ @ @>Bv!{s-dpr,#@]!Aw"h}QGcN o}gO= @ @ @̪Bv!{+dpr,#@]N{l݃ Jo{ P~q2!{I @ @ @$ d>zBJ^A '2 @Q!{o>Ϧ'|2ϧvZ!WB/N&d7I @ @ 0BGO^C +!{XF л32d;Ӷns̑yС\m ge9|( @ @ @L ;!{ %d 셓c @@ =ӟt0aB~#{nZ{M 0~s"!{Q @ @ @ d>vBJ^A '2 @艐}]wMƍo[VWxS_|qzҐ!CZwpENꪫҭޚ{/_<=:-kIǏO4v|38#57IO{}]m1lviy饗_{A<'#FHmQZk{~CJ[ouk. ?Ƶ~_=_{SGI1q*ij\3љѥ" @ @ @@!PB B^89 @@O'tR:!xSԧrl, 3<3i}́G 'tK/t:w%dH.K Ӻ0>4lذvM<9駟οO~6t._)v#F=~G8?'<'ov/"/t'>__yZO裏v q~+5 @ @ @>hBv!{3-dpr,#@]۞38ZBy'=Ow\4iRu{ꫯ8v-xv˻=>яW\1p7l]@}e.xWCO9t˱B ,C^xao?aNqޓO>9?/r)Gw^w;şE,S#G;wl+Ps/E A?:thߧAk3ʱv۵~Ac̘1i-h4|0`@~7ğ{]'Nغ&v:/Ď=V0.sG"V[CΆ~;I+wN{~m??;vsK?я:F|Iꫯn]{w1-)b#qŸyI}j/iy}j;λAwoo?vGmF@}׶ޟx?bxm9{|pg,!C4Nqc='?FVZyǎ3rK.dlK:z:do_}oviֿ͠3 @ @ @ о]^8BJ^A '2 @艐} 7LO=T~#rKҧ>ZB=Xfmr^z)5vL>bĈ_k?uGx|dlG8ǰaҩZk+?_m/K/ݩk⭶*_?~|;ZȾ<;{{_{ksLrC_^tѣGO|3)vՏ#mݶS/j>:ԇK^D @ @ @ مWBɱ @wfDO kwai=bq4pt}y睷q!YgN>#ʱ*^z)-{wyg.na:srt 's=7Zޥ7E񬮿OVZite{?i뭷ο6lX32#Oeoӈ#xI rr-.厶wEk @ @ @]!PB B^89 @@ې=v:;Q^HO;hР ,X;d 7ܐZjҏu'pB:sN>s'd @ @ @sBv!{C)dpr,#@]!j⧣#"݅Z(-'xyGgc IDAT0뭷SEw l9`#"֧>JB~8mݺ^o~3IX{?C?<ï}=dPkMcǎMO>d׿"*/99{6SNInmbvȿhZwfzq[o?~Gr ߝ㬳{%ر!d @ @ @{Bv!{S)dpr,#@]!A t5djC=1#Ft~y晴zs*K.i$d%80`@8p`' #~7rNWC_~9]x .;O}g0OI&=?;E].1'O?=mu5Xp=.t~CB {= @ @ @% d>BJ^A '2 @B.w}nHK-T>P!{wık_|1_~g/뮭;9rd=BaÆ}cigoՈZk%!￟NvmiE⼱fWO/RgywߝcƵcݒK.<"3k>x`;^K @ @ @ مOWBɱ @wf}=L7tSF:묳o-뮻.[lE3fL|%!{ >bcv뾦!ߞ^xNIZ5*GqJ裏N+rCgC8wt9r!KǍ8vqǼ~Z/xǧ瞻辧[Vޕ>O<1NS,w׋  @ @ @9!PB B^89 @~K/HGuTc=vgsN}cwǂ .n״^BJ^A '2 @Bu[vy '-#<2q|L[|%!ɓȑ#ĉ|4v;lS\}ietmCZ(q]'>y7=O_^;N @ @ @f]^$ k(!{!d/ @zW`V #?V\qɻ[~8kI,LT%!{hO{o~/ڻzo.v>蠃>ttoF;X 7|힧/Aoq:묳:޻_xck_i}E|&m}k)J?[fm>O^{-/K8p`/)d4 @ @ @!PB B^89 @GnDq\pӟtƍvu%X"tM힧4d袋qw^=s\=ROV[meRY=igy&zu-\/jZc5R}iy؁{Ґ=^|Ǧ??'vywРA{.= #?b#G뮻. _:_~6q8w>a6nu꽔.. ߧ]v%2툷;sD_h9"ޏϧhBzw\Xt=vrc9HrKwIoK/6lN=ԢE~2FdGI~m6_@p @ @ @ 0cB'I^C +!{XF лbBmy'7n\:ӫ.o4_ڙ=vȎ{~o[K?D~GN39s;8p׈[_m|]v!GD~O]YPǽљ/0Doz{ŅKI&u]7`f;?>>鮻J?N7xc^A}ދ/x}G׾k~OSb-n)-bӽVDW^ٺ$d/|ӟί1bD @ @ @# d>IBJ^A '2 @UCw}t뭷f#Tg}:<3a_ә=Nv!M81wE;b/^'K/B#X;~]XoҘ1cRD:"h]Z^ﭣLعosF%!{\;N:K+s9|9)vv^Z^&x:sK }swo9;>6/<,v?sd>G!C,=}Sjرckk  @ @ @]^8BJ^A '2 @UCPz~nVUVY%!m 0 Ldy{m]f坭!zgC8wߝwrNFJ+bZa2,}ݼ=ܓwn;q/vx_N^袋xO /"xwŎ% R;b;vx:b#^z\s5tҐ="G[oDZp>l ז?pYgϠ,vTLlAq-B_rψcxvconI?Fmsmse<&~Y1 ǗDbG=nOkB#8"l~ @ @ @ !{ %d 셓c @@ !{HϧrJ~ֺ#{sA􎮄qgy&d:3r+;CحjnKw^7n4c;v>];Cx\#v?sO]կ[uID{g;s\r%F~.쒎?μݵ~{x&Xp,31uo :thɪww @ @ @ 9!PB B^89 @k3*dkt^ v_wu%"[: @ @ @ @@BGG^C +!{XF @ '2{I;c<08 @ @ @ [Bv!{&dpr,#@ ƌ'?>.}O/ =:]~jzkZlz.C @ @ @B9PB B^89 @k~xKmwyiuk~zA`„ iuM'NLz/ Wu  @ @ @]^8BJ^A '2 @}I`iM7M_mم/}:{/7E]/z駧7߼wo @ @ @Bv!{k(!{!d/ @%+2|>򑏤;36l}K/WJGqDr-4p^K @ @ @ @ByPB B^89 @YO?tZdEr>a„te1cƤ'[:餓;0nu{I୷JCMoFz'ҹ瞛4iҤ4`t%W^e @ @ @ Bv!{<k(!{!d/ @ ɓ'#FA9#GmVX!]~vN/_s-L_{7ŕ#b?.wr @ @ @BYPB;Jbɓ'YYF @ hyȑ3{G:蠃r l6iSaÆ#<2m| @ @ @>+ d>BJ^Aؑpr,#@ 03bGo9NO=TZh'?;>|fܒk$n)=i„ )Z*mfi3\ @ @ @]^8 BJ^wGInG @ @ @ @ BG^^C +;Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @- IDATM!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @ @ @ @ @M!p.5Ne @#0iҤ4q @ @ @ 4(~$@ P d<&D^C +!{XF =!W @ @ @@?2d}* @`fمϝWBɱ @}];<+ @ @ bWw @]^ k(!{!d/ @z^7 @ @sߵL [Bv!{&dpr,#@y!{ @ @S@??w [Bv!{&dpr,#@y!{ @ @S@??w [Bv!{&dpr,#@y!{ @ @S@??w [Bv!{&dpr,#@y!{ @ @S@??w [Bv!{&dpr,#@y!{ @ @S@??w [Bv!{&dpr,#@y!{ @ @S@??w [Bv!{&dpr,#@y!{ @ @S@??w [Bv!{&dpr,#@y!{ @ @S@??w [Bv!{&dpr,#@y!{ @ @S@??w [Bv!{&dpr,#@y!{ @ @S@??w [Bv!{&dpr,#@y!{ @ @S@??w [Bv!{&dpr,#@y!{ @ @S@??w [Bv!{&dpr,#@y!{ @ @S@??w [Bv!{&dpr,#@y!{ @ @S@??w [Bv!{&dpr,#@y!{ @ @S@??w [Bv!{&dpr,#@y!{ @ @S@??w [Bv!{&dpr,#@y!{ @ @S@??w [Bv!{&dpr,#@y!{ @ @S@??w [Bv!{&dpr,#@y!{ @ @S@??w [Bv!{&dpr,#@y!{ @ @ L4)iWt:th1#N dA 0-!p:5Ne @=/ dycW @ @ @`Nw矿O & @X!PB B^89 @ @ @$W^y%Ŏ3HM"@Bv!{)dpr,#@y!{ @ @x饗Z9dȐB5trĎz @Z8!%X %!]X]R2uf0 { _sڇ}P]! x_ @@@@<  Gzd/IA@p'@ ÕA ÕC5@@ d1#     g@@B'@ ÙC ÕC5@@ < ANkJ3F mزM._QUhaAa86o᱓ʕ*(G؎)pu&ebE"y잾(}*yN>7o)iDʚ9Wy] 4G N9ϿVN֙+NJ"Ρ֍? {?$l:!  ]/;v0R1# D ;Av /AvAv+j  xJf̱XQ׹mݹGŋ~=2M`_[{h<ʼn'lD֛퐹W-UAcʖ%2On*;?W}B_ԩ;G6jɵFGb ?xG5u0DGr;@6TR`?|mڬJ(k9Pz}AZgMPez[`޽MѣG/?Ashw?3O6jc@@wܱN"< 'J(< /F@  @ N' EAʡ   Pc9pPs>[.]Gf\S]Ϫi8cOgw0y|}ߵ*)=ojjd1_58z֬۠ѣ+ٹcv̿~i`1]`֝t9b3ad;jѥ gHF֪Y2۹}e]x`4d+>[/]2߭Xo TS2dg" <>>>2n"K +Vm#A@@(+@ O ÕC5@@ dwn̎έ"SoZ3C"+si5nU ;hkvۯE'(]T!C ?tXo?7o)IDʔ>hйLbU-ێ {]pajxKױ=|PU4y gmW,Zۊ Cfݟ8zuɬ)v'3L(>St6Lq.Uh6޶cw ~ϨեU3ᑚDM% UCF#@@H($Ȟ4i0[tmA0Q@@  d'p:d" pP @@ٝdwnjd0;ߥ*Xv淳vy5fP߰ 5AvPڂ_kKW|9Vdi4!W߯iZn'vlٟ=# Ap;@@(#@ N ÕC5@@ < m;trȦ=u63ʝ=*-رbiڶkbƌr%K(wl`y͘c?[hZ?7o7lŋ)apGgA9^Y2fPs+Grdv]ցCGtMΞMyrPi]艓:pI$VLUPwcv:ubƈ (ʖ9ci%=FtU*bkׯkmv,3*WUm޾S1bưھS[wVqUxQȚE._Ѻpf̠*T hZ8mҧIm+}ZժEzaaͺܾ{vofM+U*rs~;tDwQY;GveLqM_G(Zʚ)ϫ);ô:q(wʛ+&I]{teujBӎ{ue{/)=m޹e Ȗ%=N:%JRŊ8:S<{:zLiRRT0-vJѢ go7 {^iSt;Y'[L~Fݾ}G9gϔSgi瞽wbƌҫz=9sd*^-F}i4| ؛zCmojoljGZ|d7 s#K=um۹ǿSeٳdT4&k>H<$Lh?ާ[BN.,AhԔ2,&pܷs[eJa/:K>׮oEzaowj'|/A0:5V}ܕ{iڼ~̃ Rkn>~}~ u4>dq?UC߫Ki΢Ŏi>_#P}3|>Ȯi</heA~/8KV序K&? }~j\cլ.\U7+ڱgfM-5%H7Ƙyȓ[]4s;h/ bNt U:NC5e5nO_3qVxia{ Nt-Ucss Ƀ~&~i ?>,h)R vjC.N   @HT  dwBdw8 ?|p F5@@B-Y/Lk:3AM~YfGspAKϖغ5ߩ mil]p-yݾsdžMЯx O~}zHA%|.a‡& 6ϧOPԩBi˖|M@X7v?i0zc 'V,7ln>G4BTݾ@{_2B*׵;kw*͂dMC{Wp[un8r~^K֦Ec ͕]W"s_̓+._͚7e^+{ۇtL<S@@/q~]8|Y7;8 1[T)SX|>jy#*R:~}) $P$u5eɘQ d`~ ;v/*oz8ky 'x.G̃F>ׯ>o2߇J+#IΛAMx\FTE ӝӆWM ZsRy΢/uam\M)Z rѣyhw0RY5}԰QM85ǀޗ]sA:-۷XZti:;BP'FdO4f! np:! P}w2;z?Z]%a;׬Ƶ>M݄՟cu~{nva d0 i:1frek2`gOk_賯`1J$qeYgMQD H   |@@@ tN! EAʡ  "cݜu P J"AvO?߽VzmNfW>je뛝_]^ Nid6T*p/^Rfmw}:QrM>fݍ})vs_ٝR_,^L 4Βk܅vCP~D!&imHnɬ)'!e&MRwdR AnTRukC[oϝ8JY20jp%AzY+~ب}?yF+nm\TbU6ٮ^Xi7- 3ɮ-1boزM=͙0*z:9pHY2ۯƭcǾG*knmůiL  {<5q!G_l aw6O"aN:u-u| 8_9f'c]opWD=<~#oBv.^R-؀wE5޼s/fv=y ,ZH/.hCh2g U!mk ϚD +AJGL7w#}m7^vЇ7A=iC*[ zה8\ xn~-:NҦ S_ݏ2w ǯ\ ؇q >VXZ|폝<. : ۴Y}qdAvpk5?Խ{ԪQ=vU'o:6(Ts<е}^]|Y!,sn>~sd o 7oͺ..ڷx["Ь2Og˓Ko 4vNx\Ps^!/FMt~DٿiϜkì1c>^TAӤ~l=f|X'Jop̿޴y 󀍧b\֠wz|YO{v}C3=ڵݿA O;=5 RPJ8ōkoi?I-iĔ /RFo(?c ͉  x @@@ t ;9} ;\9TC@dܲ>"|w M1Pqq z 5~g˝m=OAv242z@`C_k7wԲa];_6~VCxhtWڲc[\Bxߗ}qn6_t QGOКuTHA}ܯgq {RӟVѱlݟK+7/]C~{C#,d߱g:dOgʝ=7Om?߯5e}dŗ+VUhOl?ULa|slٵs}ڃޮTf6[S߫0 yz0|-o|PwQոvMjV!xE-gѷ?;\ŏqSY|;o$AvϳiݼSG9  DAPf @@gQ ;Av /AvAv+j  xւQ,+Wk̴Yf۹5*uzW >xm=OAvACw{Z7m{C}T",]9۰S<{\a̛ǿ[?/RHjBlM:ugbӵ37O3#F }2vuis#h!>{ ?7oӌ1Ô+[Vۙn恑.m {r~!<ڰW߽~wFG*stv7]Mҳ^,QAr /lߦd{E|y4~\}GM5jxm 7S[WRPeȸIZo޼u7o4@=_&7ȫ1@@od*}" DsP]! x_Yg2mJuUvA;`8~%MF+s¿v>lE>׮xȮfW(~xZ8u&I w_-C 鱘d7>J6mor;qҦJK[*ĉwGzΛv#OɄNGdu֨]W9wi߬s/Ο'& ѣ:دת^zkg!Ⱦ<{^S>r7]{~/Ѱ݂|lϚ8kQݑݼ¼)axA?5Kok@ɸ. 5U5mhۄ$@H/SH~Ԕ lgW2vldvϙ-cKMJ<ʕ*7P@@Iٙ  N ;Av3 /AvAv+j  xփ&ޮc )~ܯ^(T  ~ԡ `5SF[1a=f]ӢL0謬2fܱgi褲%9~/}oC`-;_SXlk)2av.6jH c~j{m>PoV?s~c&T&ޮIUF̘474y p<)vkйeZ%+~tO1oZ6eޤъ;qcЁ|+sG5sc͚:r|.UD%v$OD]4SɢZ0#OȄsw=2kܸuz JthX $loܴOav=?M vQ~Cl}6AD ]{~7b8i U]d77o:3Ξ%?fD ~nNW SmTP{4as۝Md_6o;V//^ҟ6k>i7w+o~jT}ܹc3>>`Jԩ .kӶ;FPԹ *y26%!B7̜ XΜ;ُim[):yڪ{8|Ρjz`L1߼۟Vy/<{nv~dJko;@@On*^<Mp۶iܸqpM;i!  T ;Avs /AvAv+j  xփFKjڹ̮&:sP{MXфL1;,pץWl6j즾 c3?P2Er%N@GN}Pڇjmݴ7D/i7!37@:5i&hh1N}hρ+̘. כ 9HPVOqfTk'9e³gMJxEv|/ʯQz;U*+W`Õ~V|-lk-ذeFL2OSgۀ}bHʟ'WNe铅_?P9c:ň]'N {^]TpAڌO?=ȼɳ_'zo2ŋiS.В~tlۤn-}Z[vRCEykIڸJNx {k6mu)vX)U_}YYoMH=3}2A|bx2oAt bvoޥ<?n\]3 SlYuod7U[ nXta_&ط5ba W^|bd0=7߬W^*SBvt^  N  dw8 BdwAdwr  }d7&up'hÌҜ3Y3[ۖ~ղ+<M_&6ᓹھ{ Λb9fGjhV=]o~ZV<44aw*:5ޑ z*&5vgw_tS;UU啊7LhI6,i0O:DEv7」&u?ؖ {X^o7/· Lcxt'd7`f0umںîbvT|Wɒ&ǎ={5{bcx0w.=u U(SRvxG   3@@^ ;Avk /AvAv+j   }8W?ɳ?;>7B2g 3Bژ {HŨ  P]! x_ @@@@Ay9k@@ dw8BdwAdwr  }7f@@@@٣u@@ N\# EAʡ  {ߘ@@@@@ j dםF@"J ;Avs /AvAv+j   }cF@@@@@)@=j^w@(5P]! x_ @@@@Ay9k@@ dw8BdwAdwr  }7f@@@@٣u@@ N\# EAʡ  {ߘ@@@@@ j dםF@"J ;Avs /AvAv+j   }cF@@@@@)@=j^w@(5P]! x_ @@@@Ay9k@@ dw8BdwAdwr  E IDAT}7f@@@@٣u@@ N\# EAʡ   uE]U^}F@@@@@(@=4G@V ;AvK /AvAv+j  xZ |ٟ-QXrއ#> X9$@@@@(@  M/P]! x_ k!c'iUMhP7@@@@Av/-   NR EAʡ  {8s_P;GvȒY1bps>5eɔAysTYuEϜӥQ)!]Z.^TcrGJWN=7n}=wō>h    /@=@J ;} ;\9TC@@d /X~T _J+lK) C5hx)\ܹԯs[J"X~^I?ս{ԫTZ6Ixô\N:T]؉iz޶eR@@@@A'g  @T N<' EAʡ  "K}Ҭyz {&l^`>%JP[v֑'vd_~{M=St:pܲM7oR 4f`o~gg1̖YE WIa~=mѲ|j:~lvod1%IHgΝ5-RŊ8wջ[8 w^ tփTP~ Eq?_X!c' ۷UesG̡}_9vWApڷ_z ר|]{}p~u}Tf>7l>RߥC&޶8}FҦт]_SLTti锱P @@@@"Aq8 @@Y N& EAʡ  "C}iʼnGKfMQ9ղW |/ZѣGע&e mڬ>褲%cB&̞=KF7-1ΞMG TKլl@zL }Yf/Zl?6j<<muPmޱ[5`@@@@7FIG  ndw0BdwAdwr  }dߪ̮o\^۶t{ |ٟ-qdoխ:Kh`nۛ젳_Л-׻}*nh}FV5}?|D+׬U1ղa@uLookov#F. м%Mh    +@=b @j ;} ;\9TC@?x@PW[UܞtpAuZ[#ڀQM*/_jֹyBlϚ8km"y2Ux ˫C_iKU"ֻ[@@@@A'  .@ 9N ÕC5@@ < uVDtʔt{Ҟ\QF-l[e=MP]Ihi~[QFhK*_/љ=zt͕]U(ʕ*(f̘^E{pQwRRۆ      G  ϚAv4Av_(.W@@/>׮ZfD{uhW_*=oݾ*6]Z5UW_6~}*eHF qvG)K a7oٹ[[vԖuI`)iR1]`غs:$i쩊#F     #ޜ@@$@ N ÕC5@@ < 9÷5эUzTjnOST~Ik]|E߫ukyD9cmز]_(a3k=UppvM?>]n޼RڝߣE ?9d$^^]E3@@@@(  @T N' EAʡ  "CUw ˫C=] +[V3mn תZ4_^]ժVU-sǴfʼnK >x/Pg0sz|Ycd9frf-̙0JY3mx"F@@@@@wٙ   N" EAʡ  "CVj̹d|k?ѷJ-h֢/3F ͝4ZҦ Tg'sǕJ0Lc2l /^fwYj4%M8H]]s7{w#oOF@@@@@d +"  d'p1d[3BjwWﳐwN:7.sOau>|   AwNtѼw6*V _ih?9 ;{+n8ӱ/fC7Wh꼅z} A/3Nume͔QwTtim۷heo?^ʔ sմS[7OݩX~ ><8QB-7Ҽs/;l7_kKC@@@@xٟ?# ϺAv8Av_MGC>#pR @@w!nk;bn=8q(yeݿ_2g'=]pS< 6w~V پNjv2}kׯS%Oɒ3yaܶύ4f=^S2gH MT*/>;zz4ŏX     Gk" OAv/Av_(.O./! I Iih#w=/&oްbŌ~d7u}o\MҧoUxՅ4i|w@>\vG\9*7O}:{Ns}?lם;wƈCʔTw߱|OeyZ|^XN=۵zR@@@@"A{m82@@Y N<& EAʡ  "SlNRT)8QP!ٿ{ځq]Y2;<|P._;'KDS$ WLƭt !9"     @  ;} ;\9TC@@d {#GԢ}MN@@@@xz?׎#G@SP]! x_ @@@@Ay9k@@ dw8BdwAdwr  }7f@@@@٣u@@ N\# EAʡ  {ߘ@@@@@ j dםF@"J ;Avs /AvAv+j   }cF@@@@@)@=j^w@(5P]! x_ @@@@Ay9k@@ dw8BdwAdwr  }7f@@@@٣u@@ N\# EAʡ  {ߘ@@@@@ j dםF@"J ;Avs /AvAv+j   }cF@@@@@)@=j^w@(5P]! x_ @@@@Ay9k@@ dw8BdwAdwr  }7f@@@@٣u@@ N\# EAʡ  {ߘ@@@@@ j dםF@"J ;Avs /AvAv+j   }cF@@@@@)@=j^w@(5P]! x_ @@@@Ay9k@@ dw8BdwAdwr  }7f@@@@٣u@@ N\# EAʡ  {ߘ@@@@@ j dםF@"J ;Avs /AvAv+j   }giCG#=RY:=~Ç'gvȚ%Bǎ ]~]ɞjbE"ygK"_w 4IXX$;:@@"A|u86@@ N,& EAʡ  {8#ܽ{W?G_1bpkpךŊK+nF*[WzLٲdVv٫S+wlcմSOzX!iiͥŕ|'nf/UBY3e||Fᣵnȓ[xφG@@ ڌ D=zP]! x_ C;4dd|`*_dh vÇi }:'vl}Lɳ~VULԹ`mݵ7U}euiԶ#b> b[wҩl}΄!n5 ]1@@#@=\ @xdw8 BdwAdwr  }7;WǾ-Z4M6@ysmW֎ {P>MAc'Oq*V(FЮ@ڷ_OPԩF :z,H͛$q"eJ6eSjo 堣pR^^ɓ%Ѹ¹wso+6ʕ*Fjt8Lmߥ2ŋjhiiHiR'  O {&  , d'p>d" pP @@ٽoѣ)qDa&dʧ)ȾrZ 0UkfXjƊ#_8+|PӋ_pգ]`kdK 7}[J2>9)=MѨ{zBݡw^#ǔ:e ʞME Ӣ4%+V.4~̮{6U*ʞU̡qm׶MPbNJށ#Gui]yQ=~R)R$W9ƿ!OF/.ɒڸe|P[OOΝ;ڵv?oTάYU@>JLOS}ڹNiR]: 7YUUƒ}5sk=ۯ)[*WUqƿjwu5s9wʘ.㚆1}ACG̝=ʡI;:Fs Gu9;g,soiWT)ݎe-K&Ț1}Ztp]{nPTXݾ}Gk7nҾ^(\PrZ4s\41GnIWw*FTE}ܭqaͅWn_2VY3fPW*\O  Eu皶+3?-og(aG{i:y&JiRl0AǶ7áǔ&U*ə6_іm;6DzB` U@@xD ;S@@ ;_} ;\9TC@Av;[ZǪt 6(hXM;͛kiʜ6 ̖Y};6`ך mK+ j?d~N569:߭;2WL8|nNְSd"ovnCa\V'Lu|tjcʏs3_~ ro6u}KfnreN}:el澰vaQCtoG~`lj;wKeΐ^ƍgz^,mZx|`Az0>Wg<s/f կYP͠Qt uΥ~*#hк}4|PM-Z8qS4}"̗7rnzX6o}]F2v]<'J:˜nMyi~'x[u߫汽/heA~^*SR#&NEn U2h  uGkϙ# !@ yF ÕC5@@ dLၪ=a? IL͊-xqjvWmSn&L5?jt ;oٱ[GPzڑիjѥLՄ_yfʠ3kvXvDnv'G˂4gbUha*&ֱس:cp;<;1_|nvh~HAؽO{Zt Co6 ~9sR]Ϝ[- ə ͭseݽJd xnbϧOv'wH&4i Wܸqv?dGț+ {U<1% |Ċewg߰e9z@ﰞaKwU>nen`JJ/[naoksO0}d͔Qf7UkyOgc_Gd7J؇VV*n}r vGgs1SUuh;vQ2˕VdtqnئYcG(IDCso5oquכu;ore9nk=J_T9Cֈk࿹@y7?7l|-}qҴ wuA -Xd=Evyɜ&{`,\<~\nT ቢRO^Z%dHŖLש#8d4mlآe"h7K-=U>X {O"{? S)뜀@Qd7Ȯs0 Pdw< ;qUGEd!׭w7ԭ^բc5(S"5@e"jm}UdC["W@~s@v>CXiL"2DiO0 nA."{gԮZ٢)X_[+jE"nm#tiҢ"xoù$~ מNW=AQk7>8k}D},`$S\<ҟ.^%K4Tej [9.zvޢ"{tVš[ S,>Ae^ QyGsGْ-;xeL۷F_,GhphŜL}~]" cPƆk2/I/~'=m&ߘ"[ ߡ¿HA'W͝X3Ev)p=;wѥ:T0_nL eQ/Ѧ{_5]W>=$cjN5EdjҡZz0føv8!ЈC>;Cn+=Cީ7ZHzıSgauBýW[Eփ\Hdo{+E$@$@$@$aa3{I$@$@$@Ev:E0P (\9F$@$@$@$x85DWdԪ9ڵhZZ۰u'%ƌc&Nۑ$I,9IE=N!3fcϛ4EvykN=fK1:sW2DtÙCDfi{oGvj9Ȟ'g?ڔefMZ׭\_y;%]$I߼umzS]~>_Ϊ(7({TR_I$6.FjO=իO0ti& iFh"i"O/*#iJF}5՘2\aIINUp=#"qMH$3&%i>fv, I^"~\0Wjδp]f΄Sƛ9cXG͝هU6 d\%@/9 S'ϥ̢+Y3"~sn,    EC   x(Sd9(nA]a6    xѭ!"up[9@oB?gmLzDeW zk ĬE4Ev89SF,lh[4EV58s(!\$[~Q.\ ?G ]z("<[[D7oC y ߠo%*w5mE}qi @=0ME.?r+G: QfU eR-I"7lIѧ;T>"8Aɒγ뼌\} 2B w}˯[:r#19VD$G(xzE,#DcΨAȾhjXfʨ$ac6`0~G16qC4h$tbEL_[늎[&`=JyVz"Doк:ӧk4iPWyٿSog^Y)Ⱦe$H \eA_A;Qdo^qϖLfD?{|YރC_թݻmFqZd=JlRf5 `.o[H@]{׭W[7c(C$.uuWGe/^#ASdo(uIHHH>h?gIHHH(Sd9(nA]a6    xѭ"{1Vүi"Um0޳S;4f#ٍ`E!zVڲcլ`(?3Ye=DKW*7ydXpv]yQ%#\vFU90:wʕS^MAE6on6AȖ%xt.-_3&͞ڼ\N.#k[d~;nYgߵ.Z:9e(7&/XZ{tE5LV c*-N{ԭrF҅Wտ~e8 P" Xt#?{_1в檞Qkۖh {=PH!nGd6 94]֚xeއ7ox_zKm([͛eE$<$@$@$@$@$@sHHHH(Sd9(nA]a6    xѭ!6EvH^}QB9fG$KDcl7KzZψ2dN5mCFJ|L[EY1;x6Uxj'O=6DC-ȴ}:"{OU" IQfbSdij V%M+oLQVz%꨾_׭XbIz9~Qһٯ^ rDT@WDv*8i.QqZj[]Dde^ QMZ6sҧKk}෋Prx7DgEvsCD*l22gҤST>{XzEv8֨%cWyO?n QqJ0e1S ꕴG$JT%   p PdpǞ='   @"yF= Ev:W 8Ev3n )K@5޸}7%A.?/i3eLkwu81n˖Hˍn{Czfd͜ ٔ*#G©4Sƨ>)~OײWH0am[w{% +ҰöYYW^~*BZhTNEv=ZȮ#b~QW\cʞ MA"IT8iR5.!Sm^<{\б+d֮= )$wHdOŏ7CDC(]_*r;&͞k[*W}M2[y ZdiE}uk n*Q I"94 uN6a(@Pd׹rHHHH(;qtkM]u.xm6lvD"{a>8z ,S ns":z*Qn?ڠEbT!XgCDq\%i*ߺ\S5*s%Lן<} v CtfmH2CXhlOE_cG`<V1K6o3ܴtڐ]}m٥'n߻6B׶E'Hrz5zuPk]&Ԫ/]։nP|YSgo{՜iH:{ъ՘`:P!+$}R7ow(6KߦCdȠزc7΅lջ."~Tz 8(`:K{}|٥ͻh׬1:iis<|GccR{XzE;Ԫ9ڵhj>];I8_XEou:iv͚hrHdo(o|HHHH%@zvHHHbEv:'E0P (\9F$@$@$@$x85ĶcP=AE;TBaO2Er,)[e< RцEܺs7,^ `0-T@oQCd}F:|DšUݼGCG1-p ɭw(<|Ǡa±bSd7EsLҩs(ޒ&@+YsXuBM%@8| ˍ4VVQ5mP<}զ3=vߡUFe8Jdʺ襊F}-1nF-z`u ;D*? tR ԫ yc(//,G%~;{4RK"H:~Jj%Exq sCdz#Ȣ"%n*p{c39"\q&IkDD,%l[75Z!3g6oέ]\gL=_?*ל~rD3ϟ'l،is7\dOt ni`;İT\/\3.Q}BDs]/!$}X/1)'7e1Sl=?q\XA=}aQŪ7"doK[En=o늅뷊y[~݉V8IHHH+߫dgHHHH N]礤"Ev+HHHHO"AīwZd~&\ Q[Ŋ9:sCqu{ハ>_/.^L u"=N3_EI%hwѫH"z'ؾ{&·ԥ%]|=݆BZU*6ӝй;<}r+Zf-g~JEϧ9$٥`VB[#]OT{TBR\<|Ew]a|_<-aB"$Kx*HW{oȟ''t>F1KGOFaH"*A~å+W`Ҹp%_O7OaAD2ŋl۹gիWh\6\4W6oOԬRQ/~ S#Dv)'~:ѵmK4iPWanܾ%7krj>ѪU,מNJ$EFj4ulܢtMS}vy?2gʈS#jn#p oӥU_'i-> }!op.UrȾڹ/# wl>>nLlݹG[>ҷ@VҤIٯ*|QZ7obT2${u>`՜1AرHQ Kܹ@89R 'xdI}S0Y˼xOų5SCLDO4)Q('t<{>YڟE8v)R╫2?oZ6 W":/aZ?͢ޫrKRretA>`.-'dɔQ b bE4v-{<'"$9$uwVѮEp6&HP(I_)K޳ܵ)䷊"hAMmHHHH Pd|    p$u/a(@Pd׹rHHHH(;.mr:M0H+I"v&İA6Evc_ݳ ?HT@~4>W2e>%`yٌmN,2CPHaE] ~J/fΤ^".RD]^U"0Ÿ}U]DorȎ1z] ]:L3WȘDެYڷi?Ic׾f$QY/^2ɲ"zw,3D~l%CGM< ѿojT0c'ڐ$uA TQ%K}-\PR"<.b #Dv9(4}bݴXdܺ*sp)W@U#XxQ8}g~RυbpLJ٦ 9~}{`<Cd@8vf ΁m[# x_DvH2sسtHzT}dO=&\dY{P9pr`EP/лKuB+ۼ}'f.Zj:"dmu}4! >Dϋ S烦RһwVq7nŒKԡ\ UX%|:^,HHHH ^%   xG";Ev"{(uf#   p<g_kyUD1N%rt"9cz%vCYފ|I>{gUQ/+oܼˌE\ZcĉՁg@õ-K&%F%I׮4iwdOu$8)2gȀIHjWH:>͜)9%zP,EO$qsΙ=~G rfj=6`.o[H!;VV{6*qOM2E522V,H?̝߬)N{VBn{`"    k9'HHHHI";Ev"{(uf#   p<gHHHH E<}L?qgIHHH PdȮsQdE"Εl$@$@$@$@'@Y I"95 u5a(@Pd׹rHHHH(;1k         0 Pd0ǝ&   "@"ιF= Ev:W 8Ev3f $@$@$@$@$@$@$@$@$@&渳$@$@$@$[(Sd9(nA]a6    xƬHHHHHHHHH$@wHHHbEv:E0P (\9F$@$@$@$xϘ5 |(^ @lN]\"Ev+HHHHO"         Esk   -)k@Qd7Ȯs0 Pdwq ._Q"S̙Q(>̗auJ_gϟ]ԦCb#=6wC<91=a 86rX=,ׯ_C|PF5;"N=>U'ǿND \F*X(]{տvF~ ;hQZ%xx9qv˓eK) ײWpn&2HH"#@=2BHHHH &(Sd9(nA]a6    xƬ3s$yM]8k.V݀.VC(RѸ)3ۅrQreҵ"RdwȐzc9+lݹ&^{*_"@Qdvk6lFдP2ŋۯ kx߸ɓL$Xi>#i4p 0'NÛoA=nHiV   (Sd9k)nA]a6    xƬ3?^C'W.^c"QRE2[85fh.^z gTB KLHSI9eDoH "xW2,Z3,Q8Q(Ӹ}7}իOw]Ȯ SD=ԩRa $[[ogԫQ5R#z1t覾ү'jU)G[ݸEKb2)G=$ A"; # PdȮs~QdE"Εl$@$@$@$@'@Y ggŊ0|`TH"*V#ڽ{[w︉*oa(YpuZ!3+׮#yd(]ʗ.-z28z>B|y2yr>p]GQRtc8z&Lʢ`[?rW]_nT%s&T*W)SI;˗?onΑ]8q Ξ  ghҠEY_=?"QDV:~ǩsȟ;7J+Ңm 7 86ٟnƹpE5EIឹ}.:d>Fr_X|qQoL̹ߑ:u*+UB},s*UJvNƅW9C.ŋ|8D7Ñq=̞M9 so8dHpj "K?'絿pCukCάB2H AdCn8{tMəE?+敬K"mOPx1e#o.;ȝ3; ̓yr㣏>Yc\ iRDO3ő4>2HmREti5=бH0jVNȉSH4)΅cjΞ jUpN:kEdM}a)ɑ]qp"KO=SY7y_ Y?٣׍[j瞬gsxkdʘ'J?|̔?dZ!K hͲo;qfuVҵ/[]=& m}`øv>x>͢ID$@$ Pdcǖ @| @"yJ= Ev:W 8Ev3f $L=GO65 b\?)1\'0%y)0F"DӵC81ټ,)̗SF3qoݮSɣ"{/bST0*|Qf]O>Ÿ}py2gHP6y6Z9|*w4޻oL*1_/},ȃ"կY P1UPNZn3tQru}0&S®uJhi8&t >;Mcq9gd>.9ⳈDvkFþǔ aL Py q#E2g3c9"oױ(ҕMyl '~![X0kR,X uWG?I?3~mpEwGCGѠV5%UXD2OGtiEnX V yʒ1zuiz||CԘ'9жyc<{\Qϋ S\Q'):ᛡhL0I5xlj$If_CV-%^FglkغG=`@HTBwM?ʑ~wsBYc>pzڰWu0:ɡ"Cȁ,͓O>>\}lƌye.ZsTH$ks'ԭ^&+&úͿ@N^ۭS2vZyc7ߑr[KO>Qc!y:zuվG82ǡWZ(=:{m]4kZe^͛4+kν4=(<|޵ NwTWܡm}B&c/;QHaxBn1>reөgz^^ڛEg+madjqXa3B/hN֨YbT$@$@qE82l (Sd9)nA]a6    xƬasߡ(7y`dΔ1Y?`.vMBBmitEܼl)D>w9%rD\._&|CddDDL,yQ%pIP*DL]0)HS\h(\sd7{!%9f]s]d~5I:ID{Z6j51cF]]Rȑ-+i$ *Qgܫ\ٳavHE? J̓(UBiq]lپKE!ש#YE*b$ӦI#W;Ԣ~["/]y ]=!$oY >~BԊ.uV⹤/JC"ŋ8r~hkVŠ^Φ 3u@(mshۼ陡ص\:x:ȉDE 7 ;x45F6-6Ev90 HeJ~SgUdxIҧCH<|9aҕ*_EQTIDyvY Boy.^S!rh!I8tcl2 D^KO_wW<%:qQ_ !jL0H9cF{45ݾomqiϢK#K>a'7aܺsWWJ'qyUpWTPTA#<"u./v[wQ^=%Ws.m۵&=\nΛ;d{I.9WQ8|ZnwՓgOq uc$indDlٱ[ʗ.$JPͥm;(9^KM;R:`ӽác'IEW^ï{(Lb~ݳGClYUg!Gwo6C"?zb_zUad3#sH.[ҤIqD7F/:n t%5Tm ٍw IDATv̱^ClN#.>Ŏ`dO4KF<>†%suE;_Fe_U&YrSy~{t Dú[aI~X4ҤJ~3nھK5ծ7+# 91gHHHHlN]"Ev+HHHHO"OD3Jw_)LێUUs'JPSj=A#cOD- !MG"i׭^}jQғԭ" dEw*epn6\^Au%m b*Bh%7ϓi3٥VݦY#|Q<o(^(W,[ س/ (ީUskaS,Tߴt8bEDXRzıSgqҤX(2RDgnm#|Y>˟Hr`Ψ]EvywH;m/9$愧k]ڴͿĨPls/kV*D¦;SXznؙ8 V?߄acCd8ȞcȁZY.dL$@$@E7fl1 ')뜯@Qd7Ȯs0 PdwU4 U+IHo!3f:aBu;e^+Z4AV-tuZd7؅{ogԩ^fY¿M~,>zM:8+>"]TT*3 $4A_+R7 z\p: Ѳ(t\d9.m4yr  9'Ϛdq B0_DMfn_+ uX=w26" /l,RV6`%e{l?wB- m@̹@ҙT[S+g%H7_.V2zPǩpStD5g$.^KW!g3arE"$ڳseMc0B\-MP$/Dx\"c{b-AY_PmyF=8:A<2&Ϟ {,5d]=f.7LSoa*Dm9p6m ``=f\U[dlט}G1jԮSi"O/*& 9Lso6zE`ܘ`ĭ^HaxpbT'E-tn߹ #˵/V(>pmQ$@$@K"{fm$@$@$@$N]眧"Ev+HHHHO" ő1;$_Wx4mXg{c|6+CVN1F|tStĥШ^mw*s.' ȋI}M՘[/dg.љ.:2EE a;ww"6G%ۼc'Tܟ{;J,*7hl/w.g8PdLSf`mȒ1yqcEd-9xCF$qSgZs^K|ԣc[4aT+y#ۛ"{D1b_Ít@nG[hxq8y]$"{LfA>kCj]{?m [xnPֶ]{8A6(h?"{? cmQd8aouU}4)V?+! pC˂IHHHDF*H<"'UⳍZy_8}5Sz?[T|Giat)@Pdwrc$@$@$@$@Q"@=J>("ljJjT;(/; V+:Jd,\#R$OZc2FqemaˎaVүW|"#c[ sl߽o{SW8~jzЯ[g(K\9AxKҊU+xElI#QDظd\N.Тk/%J{-yдa} A6-ЮYߺc&N wD.#b=F*zDUICPT jdMU_|ݾ{\Sm-0-p ɭY-]),S汉`x&G91k^|IPXa;G:ߥ.<<$]|U[Kd7ZQ}Hd|B.Ie#̹CO!}X6s6ǎǯ{ɉ@"QPXX7'k20GNAŲ1Ps:Rdl`Gʕad5iPSZawuh@A u27#tQd8ofoTXN %8UO$@$wPd;c H";#@Qd7Ȯs0 Pdwp8]85fym+?A(_r,[Y!Yna|Bd7 P"Xl2eLkEv\-2ukZJN2/ݱ!EviDq} GaJaCzfd͜ 9D)s`4#&I"q] ŁǰxO5Sn޹̂mq7?ANGS ѫ8uq 5Y"5I$UOT2toe ._4}ɑ"=f 0~l ֬g։"{Wd8H+ ?N╫[58CQHH v Pd]ެHHH>4)@Qd7Ȯs0 Pdw 1ʿ1DdΔהu?yo;Pbim6u@")被yz$ ?"E*y:Z)cMROCȾ!xn.=EE0N%ϓM;w3Z}'K-ϖ~*z$_Xs,VnQ)d>r ݦ;Q(_^2s%wjዒcա"/^#AkI*ں1דs'uZy+N6CkWhкj۾ESth\ ["dR #pP="ʇT5YM3{Ѣk/Ξۡ7 \Ol?"q䆇]44[w٧[VYn"5zoex9SM6nU9bOi{wqZ5m㏱l$#Ev{aN~:z#|deCԭ ʕSϞ붆5 v-FZ Ó+c=uVJômNPMC<=|HHnV   PPdȮsSdE"Εl$@$@$@$@'@[ÝcdH˗￱םQj% 1Ro$JgQP)X@chֹ=z?1Ete9w7u#]ɜ۠eяL /Q̘(=6wS`h]#E$vz ?FkApN"ݾ{5*U>>;1U*:M5+nPGr_hriDvk]"`pԝ0aB%-~{5v $Pz9 VvjZ5mda]P~D7O"un*pgϟ+YQdPy/m[Py@vyrfjJqIdf#e}|%:q;wyႊy2FoE<5yzrD`4|Lv=T̙86?A -yz"5?c]]PBy͹*D ͣz^#hV>m usG?OC}${xʉA`|3_ڵB߄+xDC#>v/^cjO +N4X};CY:>@݂e+1k2؛##e 善CN= lݘ&hҠti[c*K~}:3;$@EN,[ j@TڷPd?\zEv{Ò?aEj/w'iRkC&ZLwdHHL"{    (N]t"Ev+HHHHO"G7oߢM>JVIx*)W8G)"%"E"29~xvtv v?c|Y~΅`öJmע ԯԩR)uyvזnN~5>)F MHRI.eM=׬W֩^:}oxE@~b|,mK"D]=\z!wl/=M=tGU4EvDww"7.'_~V׮Z ݾomʷLUB$k]>;z4UYS4Ȅo0qJqqȍik$(U]+~PtI>%]&2[gHtuI2Oqm]{1"0D}_JA 28[i Ș!siTz-IŋJr={%K~;mbw\ٳ)VeIå;*|QZ!SmkβX&Vϝ|$+% Ktv 놩׆2>n>8x)oԩ3'|. EPk%BdZ"!w@/I!D$ѷ{u^})z 3 s M{hx^HjO ?Q򼣓Ȳ [k.UD*߼|^"ٝ1$Y3 ug.A#quSȬ^5m|_hms~Xni?ItW>^!s:[a wljo8MFPSLf=DvGMƱ4q]ʍl>./t8$-ɒ&hnE"ԿQuxCeMU$Y#PPAͩE=TxQx .[&y% 7%~'H1)S$å+L({Epw/R uռ?Q*t9)PQJ: r9':#*PkR&C袛Q2Zs5^zgs1֜9Ɩ3{.Y# SH 0 AvAe#ކdoA @/ >}|B oKlӱ:MGwbTtd{;5W7jKǝ8kBTn]s#>}B羚|[Q }uzs="e"#8CO\ˮkv?imu$7*^Mx/topse[͟󬁞 {.ONO}kc>#˶N;lM?o-xcд1Q~=}k׶|}##*Gj"P]kꃂ_9+~6G|>EsPw>#F˯z*˶<6]U{ϻtPW /iǗmW9zqȤK7rT=.,?ya.<m%Zd'܋/켤T@wGzºt, {L]sG~vE۫k:^}'//v; K5U}yfv)7oT[?rg8O of @@ {jdoC  wn @dl?!BMW]{]ZOQq6-z򊊱iZ9z9XTQc~8K歶jq~i#j"~Vzhb Zk`e0}wY? ESFHoHrZu^oӟ̪ٳirNTďmfۭ^vFNyooH+,\rUE 7ߜr0NUx-bʏxxƑ%CT'=jya+4mz͵M/\~e-lxX9~yx9ƛ33?M X~7ן#LzK~7ǽċ[{jejnfpfU"?;ICxiwc}:o,9;7 [ @dd/\_m(A {э @`7  @`. 4G2(PvcקrQ\bg)[nx)wǝwb#A1rEF @`bA M@ 0D@]p[;G7 @ O' @,8㯋^i_vxK*^Ge}>tG}" ]N~vEXOz⺏+O[CO^vye[{J+%@ 0J@} @ A6 { BpF 0}A 0 g>O?=~Ǧo#ntgxS~DalX?Otw^VmoZoKxWW\_Zx6K{.tg3Z:_~qC d>4Lx  .WA6 { BpF 0}A 0 {AG|)}cVHo|v/٢ZνFOJK/zuqÿņ<9mOZc\ @K@\- @& .^fP-A @٧o @\)ko1=r?mx"/4]x/-sZmՕcfzS6Nx+/4uO_^뭳vx 4 @%^@}n H  {J!^st#@ } @ @sS@}n>wwMXXkM %ނd/9 @L_@}> @ @) >7&@,,AvAµ&ކdoA @/ >}c@ @ @d] @ {ZdoC  wn @dO @ @ @`n   @ K@]p [;G7 @ O' @ @ 07sw @% .^P-A @٧o @ @sk @dd/\km(A {э @`7  @ @MA5 @`a  5A6 { BpF 0}A @ @榀 |  ך {J!^st#@ } @ @sS@}n>wwMXXkM %ނd/9 @L_@}> @ @) >7&@,,AvAµ&ކdoA @/ >}c@ @ @d] @ {ZdoC  wn @dO @ @ @`n   @ K@]p [;G7 @ O' @ @ 07sw @% .^P-A @٧o @ @sk @dd/\km(A {э @`7  @ @MA5 @`a  5A6 { BpF 0}A @ @榀 |  ך {J!^st#@ } @ @sS@}n>wwMXXkM %ނd/9 @L_@}> @ @) >7&@,,AvAµ&ކdoA @/ >}c@ @ @d] @ {ZdoC  wn @dO @ @ @`n   @ K@]p [;G7 @ O' @ @ 07sw @% .^P-A @} @ @ 0eYfݱ[%@XkN %ނd/9 @L_Kw}?' @ @ @` ,ri饗CwV  @ {doC  wn @ G Q]eS @ @Xr{b_r;#@,.kQ %ނd/9 @ @ @ @ @   A6 { BpF @ @ @ @ / .^/P-A @ @ @ @ @@ {doC  wn @ @ @ @ @B %ނd/9 @ @ @ @ @   A6 { BpF @ @ @ @ / .^/P-A @ @ @ @ @@ {doC  wn @ @ @ @ @B %ނd/9 @ @ @ @ @   A6 { BpF @ @ @ @ / .^/P-A @ @ @ @ @@ {doC  wn @ @ @ @ @B %ނd/9 @ @ @ @ @   A6 { BpF @ @ @ @ / .^/P-A @ @ @ @ @@ {doC  wn @ @ @ @ @B %ނd/9 @ @ @ @ @   A6 { BpF @ @ @ @ / .^/P-A @ @ @ @ @@ {doC  wn @ @ @ @ @B %ނd/9 @ @ @ @ @   A6 { BpF @ @ @ @ / .^/P-A @ @ @ @ @@ {doC  wn @ @ @ @ @B %ނd/9 @ @ @ @ @   A6 { BpF @ @ @ @ / .^/P-A @ @ @ @ @@ {doC  wn @ @ @ @ @B %ނd/9 @ @ @ @ @   A6 { BpF @ @ @ @ / .^/P-A @ @ @ @ @@ {doC  wn @ @ @ @ @B %ނd/9 @ @ @ @ @   A6 { BpF @ @ @ @ / .^/P-A @ @ @ @ @@ {doC  wn @ @ @ @ @B %ނd/9 @ @ @ @ @   A6 { BpF @ @ @ @ / .^/P-A @ @ @ @ @@ {doC  wn @ @ @ @ @B %ނd/9 @ @ @ @ @   A6 { BpF @ @ @ @ / .^/P-A @ @ @ @ @@ {doC  wn @ @ @ @ @B %ނd/9 @ @ @ @ @   A6 { BpF @ @ @ @ / .^/P-A @ @ @ @ @@ {doC  wn @ @f IDAT @ @ @B %ނd/9 @ @ @ @ @   A6 { BpF @ @ @ @ / .^/P-A @ @ @ @ @@ {doC  wn @ @ @ @ @B %ނd/9 @ @ @ @ @   A6 { BpF @ @ @ @ / .^/P-A @ @ @ @ @@ {doC  wn @ @ @ @ @B %ނd/9 @ @ @ @ @   A6 { BpF @ @ @ @ / .^/P-A @ @ @ @ @@ {doC  wn @ @ @ @ @B %ނd/9 @ @ @ @ @   A6 { BpF @ @ @ @ / .^/P-A @ @ @ @ @@ {doC  wn @ @ @ @ @B %ނd/9 @ @ @ @ @   A6 { BpF @ @ @ @ / .^/P-A @ @ @ @ @@ {doC  wn @ @ @ @ @B %ނd/9 @ @ @ @ @   A6 { BpF @ @ @ @ / .^/P-A @ @ @ @ @@ {doC  wn @ @ @ @ @B %ނd/9 @ @ @ @ @   A6 { BpF @ @ @ @ / .^/P-A @ @ @ @ @@ {doC  wn @ @ @ @ @B %ނd/9 @ @ @ @ @   A6 { BpF @ @ @ @ / .^/P-A @ @ @ @ @@ {doC  wn @ @ @ @ @B %ނd/9 @ @ @ @ @   A6 { BpF @ @ @ @ / .^/P-A @ @ @ @ @@ {doC  wn @ @ @ @ @B %ނd/9 @ @ @ @ @   A6 { BpF @ @ @ @ / .^/P-A @ @ @ @ @@ {doC  wn @ @ @ @ @/^8ndz0|d%i:{Q!ձa_Տ~?\S`zp/6/ 3gP!@ @ @ @ @X G/pk k;XL;ws\c}?7+9ۧ>#ZIaSL:k=?%+sN>h  @ @ @ @ @F w?Â%!>Þ. \t=&d R @ @ @ @ @) wp YIh`.Y2^]}u? @ @ @ @ @;$4^0MWI,/.>ԟ @ @ @ @ @`\AuV/ˤsddw]O @ @ @ @ 0EA {:+ Le9K .'@ @ @ @ @ {W` 2%] @ @ @ @ @LQ@+^JBtutΒK  @ @ @ @ @( d/Xg%iL:gxAvAqץ @ @ @ @ @Sd x4]]&d R @ @ @ @ @) wp YIh`.Y2^]}u? @ @ @ @ @;$4^0MWI,/.>ԟ @ @ @ @ @`\AuV/ˤsddw]O @ @ @ @ 0EA {:+ Le9K .'@ @ @ @ @ {W` 2%] @ @ @ @ @LQ@+^JBtutΒK  @ @ @ @ @( d/Xg%iL:gxAvAqץ @ @ @ @ @Sd x4]]&d AxH6ѿ3] @ @ @ @ @,,!Iְ9׏t:t\ϣ :_?^-zc7-wQN:JB^sddw]O @ @ @ @ 0EA$4^0MWI,/.>ԟ @ @ @ @ @`\AuV/ˤsddw]O @ @ @ @ 0EA {:+ Le9K .'@ @ @ @ @ {W` 2%] @ @ @ @ @LQ@+^JBtutΒK  @ @ @ @ @( d/Xg%iL:gxAvAqץ @ @ @ @ @Sd x4]]&d R @ @ @ @ @) wp YIh`.Y2~8sQ}Әa̜9П @ @ @ @ @`XU<|oulצsc)O}Q[Ia u]s5Y2^]Eqץ @ @ @ @ @Sd^JBtutΒK  @ @ @ @ @( d/Xg%iL:gxAvAqץ @ @ @ @ @Sd x4]]&d R @ @ @ @ @) wp YIh`.Y2^]}u? @ @ @ @ @;$4^0MWI,/.>ԟ @ @ @ @ @`\AuV/ˤs,5h\縮O;̜5П @ @ @ @ @`?RJU E>{~σՏWߏoؠ}J~nS_TVgBt|%qwͤsdhT@}z]}? @ @ @ @ @@d, CIh`.Y2^]}u? @ @ @ @ @;$4^0MWI,/.>ԟ @ @ @ @ @`\AuV/ˤsddw]O @ @ @ @ 0EA {:+ Le9K/ {XY,9ۧQ|OMcM_>n?a9k? @ @ @ @ @/P G{п1_\t{l1J~n3XaAU|M ϰ:KBI,/>"{<+>Jן @ @ @ @ @# ޡM٫NS;%Aa[2^]} Kה @ @ @ @ @d ,x4]]&d R @ @ @ @ @) wp YIh`.Y2~.7q6~PߥfffwAO @ @ @ @ #] þo;X|ÎU}m:7X{yS|3l|FB/ O8% '@ @ @ @ @(dP^jJBtutΒK  @ @ @ @ @( d/Xg%iL:g%7^]l6}UazcKUq9k? @ @ @ @ @/0 {禯{|ԱΕ|i{~6?7/qB+3]s5Y2~Qá7xtl@ WTon  @ @ @ @ @sC` {I=AzX|սFoȼ)t>,^R/3lN:k;g9K Bۇb{c]}? @ @ @ @ @`n,^KBSuM:gxAvAqץ @ @ @ @ @Sdϸk$4^8Uۤs_R[U:T]\SE>׮qi(Xfer-t zZa҃׿5_xVxW}yCҺ뮛Xc-Hr,^{RKw;\/ @ @ @ @@;~_{t_ 4\Sas kc1Xz%}Iw]wN:gxAy ;7,^y _d+RFPk;ҽ[ @ @ @ @8f-U3cjwX57v*>k5G{ϕԧxJ'5wIh|}'d {w87TͰG}b)P%` IDATG 4*@GvT{:wEEM6$W {}#׿5}L;?!E|vJ[mUT}޼y9P8P>jVc )}u]C6jG{_>u, \'E?Ze`ַrFd @ @ @ @dj*.xTnY2^]}u/~BHc܃N?A 'nG=/D:짞zj$~O^xxC:蠴+v- },ϻ{w m_{IlzիҶn]V/u2I׿ug}RK-fff+_g?;~34 @ @ @ @ {~:셋$4^8Uۤs ^)sի1ÎW}ǭc*333s BB G7j~#'o9̾RK%A=Ed[tyJZU5oO-\~KB}vOylK~1$^"'> /i ^' 2^-2.h7 @ @ @ @4jAsPUOgc87տ6k .xTnY2^`/ XAqW@dkkti 3G<"Ř<1CQ{UVɁe]6}sg j+R=,W2޽z;3?mc"la/w)i}csP;Bm{K/|mkvUW qq=ѮUW]5{2wE&a>?n:}I'^җk|ߞ>?)Ƽ%/?(Ⱦk 70c[_8㌮ni^?a '6uY]/L_WikW^98a&{}1>Ai 6ȿbSN9eQ)>Y9Zl&GH3ZSEZ+E05Ƚ-Jm5aqwuW2->y/~>z_Dk?́ʽZ"[x _"!?1PS?Ϧ.?t '4}cy=3_S/~qzk__mqO1Or@Nnt3霊wvB1 'cIyk:j wƳ>;_| {޼Λڏ~tQGuNEpJm>@4~xɠ {+e/|  { )l-οh\>t-ľ9R"~ax,iK(.{ @ @ @ @,A鳩qoul~W+j{]IgIa+t]s.Y2^{򑏤.dC @ @ @ "{. N6% {8ث*7TAw*Mc/**#?G3BG 9BU {}#au[= *n"swy]aqcL#[U*1ո {A4G<rW~ _}d*G;d0u3_<*?j-U#8"Ee|s`"G08!#|+餓N'*Xo{c=o9lcw]xVq}ȏ|5۠y^#| ]}]*}_Wm {5 Ǟ'>"D'?9ou}ޝ%ʴIo=~XGbGcLh_r;no8b=dz5kjQ?^UExfw`h"OÎiz=Vt|S"+^gt|%qwѤsd]= [/dw;迨 tT ksEH[U{IvZsVG8"| @|*^_CTn^oq,5]w= 7W} 7._Q=~+Rzֳ WD=*=ð5o}8yE˨ (}~}nzӛޔa:(w#/(DwT W!ߏ~:zF#L9~s=X^quG%6(xxA!xI-oyK~;{A+t=uԏ>ua f$>d9|#@E!_q,7o^7٩p_=X/RT[׽u9DW]uQ9۪qGvm|zO{CTЯ8⅝:hD @ @ @ d "{. N6%u=n~ ^12{|iEM!Q9g?E!Pٯ\y:Q+>3ZTa*/ {~e6{MVM}F%fGȷ^~/TNؽ"{gE(GxUÂ?NS 8>RP~z{]w/>y\{G<"U׿y7 =R:_u k}oA->UK mi*~am&4/>qx`~ '?>o^WO>O5vPǞHb 6_|ߝqο#or_>N @ @ @ @ GnJ룪;}3{ԧJV'5wIh|܍3%هWdg6ۋ * #_$U=/ZTnX<7ln|f^gsaU}A*x%Z\w\S+ ϛ7/}S|G>z"xaX{F-{syyhwuW: @ @ @ @`n ԂM@p{qUߦqck:^צ1{C\V2/3lN:k;i9K zTW>WU{Udы^zx򓟜XcbshQ-<tFع7@/첹 /^ziGuz _/2y|?餓ұW-Dd*Q->ZUm^#}yu}ncNjBA=cƋ _Wwܯ`eS}uWńx;C+>n* W/dDtgxqݱŗxAwcxIbW/x{_^N>6vo|c69rz޿@PM}_2^mxn/c=Ǻ @ @ @ @ {7{xSQW'4zCAIh|]4%Wd[i}T5#>JdQ%9™wygZqsWAA|oƹ[Uո!hQ=5B:m1.5+G5B>}S>Q\CpT+QX=G?wM7,^U1wo*̭Wy?Sڠr|$gT~#;t'vd댪stw]Ӟw3ܫswnkl#(g{ 8_= N;픶jT5I[ou>x#ڠF=]v%Ń0 z%t '?o{sJ ]4I|^dŐhLţ~tQGu]ڨ {Y~a9*BD*p^j{ U38#|}d}sKW\qEhQ?*}B<%j_Z' @ @ @ @,Y*KB}'d S=^s5װ1*g{k/*AAM74hE@N몴=(Ⱦ˧wFjQ!:µPl+lG@i==.ſ^z9PAzPZgurX=Zo=~ z/ΡZ*nTWqg}v_AQY>*G5[\SdE7LJ̏뫷dϭB}TWpo=?(XU<.qg#L'|r6DEx _r)]{7/նC=4/ q W_zo_բZzhǼG#Z ַ5;_ZA> ONblS=K#F|&s9k zZ}se>-þ[bV/ĺ5W"~9^R{N:c|*@Ny[ޒ_b}ŋ. &dqh~رҰ{S} {u%כ_Z}d_s5ӆn/-*_x]9("DvwG3*XG<]w]W-©lI'@!AVX/W]u 9"@zmhc]tQVJ/䒾٣sT ru7pC'ܿO}~٣SU<w@3y>ywu|8Nm&կ'W_獗b{Uͽ$=(xFEx"׿kPG p6 {^5ƣ}\GwCVb0l ONZ")>"L* b=Dhzy<<;>W] IDATWUimc7bMG{x#Z\WT!-~?ŋ#1F @ @ @ 0Aw>(^?]Ka|}`}Ϊc}{-y<7-I蓎ﺦh9K #h_9&>l _F`X=F3¼6,AΨј'`~ԧ>5chҭ&+s8ý٫늀믟CF%Ӣj|JUP>Go#!*H]??*^>j ;:(Oã} :zs7^Zϫо{'< i7JEk#,}~+ןmI{X<^_ПtIyT~k׾okVuUꚢ}TkUo%° $dX=>C‡?\ ׯ7r-Xcgyf0 xf;CzsK 7B'pBgP¿z"J@UwlaWk6~D%/N;I_ @ @ @ @%C@=6qlT>S2/3l1N:k;c9K?PaTu:>IE*  ҰKl?%Q jPv16㶨sDyqorp]w5voȟɕң*{Sàt/*4XQWtnԱbU%K [$4>ΙtΒ :^c}Q7vlX*S=u׮3 A @ @ @ @ @(Gh sܰUǚX}L1*>lsLDt|F( s&dda{KE[];ukZmqG)Dui eHvm6~J^/~?vAOI @ @ @ @ 4/ÌB>vߵ{{jʿ3jm >ؔ zHo6yzk׮A=JVO @ @ @ @ Ah?"a;Y;Z̽ZdHE+dn}gVܷ~;oJ=% @ @ @ @ @@F? `/_n}]?W_֜u%dlHEُ筅p|]굚W[ {u @ @ @ @ ; (^̯luՔ{µu $>8N zHٚV؏[]AsgK<) @ @ @ @ @ %P gcZ{e vz JkvH <;j5Wke8wo&~WZ^YzV={ @ @ @ @ @~Dd}) _ە}k5keѽ V?d/3n6^Ugd?׏{zz/j{kgw|w/3;Y @ @ @ @ @ @!T#׮5kkj}.oGؽ$#AcD׺H|@ 5 ާ @ @ @ @ @ (ҏ/G c#ʚ^^﫨 {pE"_Ti?[{AW/Z5/ W# @ @ @ @ { 5~@BkwZ~]׺߻~J$d.~ntX?? _f~ٯ5P{k o<)"@ @ @ @ @|@#zP+7vVo޵.el߫+wNގё@x Wgmԏz~;[k>Κ?B= @ @ @ @ @ _ak_a/뭺zZ{fd|,"!ސ5vAYkQ=e-.Ⱦ @ @ @ @ %A2V{^Vsֺߪ9Wuh5Gjzq³GcHٚQ+޻ gѯ_qd @ @ @ @ @ٯ!k_g/ݻvwtv\k p,"!ްp1f6VMk/sku/~:jo81$@ @ @ @ @|@#>3 b嵲v\\k߭.~!=[:^wWgC#g}4~=Z{W:W3_hٯBkj @ @ @ @ @~K? ^~}ڵ]2H^veZ魯g`z_649M}fGܣ {_B~=hb?| ߮ G @ @ @ @ @ \쭯z{-^ks^wڵMwajaL轷V6lh /m^{tzwy/ك)D/Ͷ#~̩B^_ ev@z?>PF @ @ @ @ CWx3tzK>kGujf>wDN}\=xAlWُBپzz+Z{96de @ @ @ @ @gz/~(~/UΡv+roT_AYn?5~Î}oG<#=1Ge9읗Y*j"~ @ @ @ @ @@L`5忪Vǚ m ׾]R(4ݻ_xLX<&RuFkP_)2kk=qA㎠j;'M$~}F/k_^Q GC3!sB}RC}U9U6fk#s[; @ @ @ @j|id5/_G3Zm sɣFm[Vx}\{VP׵^]^Zko礷j5jٸc}pGxtlH}/P|[ }eFAsQx{3g̥#?aoZk~^]9kkGCkOD65{Ӱ!@ @ @ @ @ Zwe1ُgۣ2H} BصyV Z {f^mϮٺWw]g!gʽu=G}Z]'zu#Fh}]>Og{Ț]*c9\R?d?zFAk#_ /3Q`zuy31.׿Zu~Qw"g.[/''@ @ @ @ @@6d?l\{_ u0(8kWkvW$y3)-3k3{lS}?Y}e{GPulH}4<}M;t~<[5xv>`/86.zw)k[σ]k?eVPl^/UZ @ @ @ @ l _+VNe׽@( s,CkֵLH:H}GMt^]eK5], {=lH(~>DVx稾GjHhL`}/?Gm~JrOkozvp{$^=g{}Ѡ:>{}ghkgnx~ј{$~ ׂɣs/~ ~ĞG!~oQ|X׺ߥό욶ڝ#vgA33J @ @ @ @ @[zQ#A^0{$ޫgGH8}Ts,WnyVWދZ]mygϨekhw2D]6i]\ܳ[9^,]gLu]E~篷gE\EPC @ @ @ @Vï3FُTkעAkZ}ks|{jʿ[^M1:7gL1S}T}G1AZZvnt=n#AjAzG{}k{v߽k_w׃<Vb  @ @ @ @ @7Vï3aCծvZ?eຬU i_Ee?YޯH}mޫaEͻuՌ?Ooѹݟyl; z~- }eV? c^G]ZgLCqʿ31Cm|m>Ndl  @ @ @ @ @VïpU=R Bǘlx7ׯ}ѾjQ[5m2VV͹zV3ڧ;ϼ"g1Aw9s%~`'rl=΄gGh׺VVuz{PzmyGga>rIf^9 @ @ @ @[ yD˚[m{}ʭp5n"0zt3fW'(@< j + IDAT"_;sr[AhW{r7fEmpy .Oܵ!@ @ @ @ @' l .dH=j `wyZyW _]͵VݫޛlS}~Q c#<>_d?0{Qm+Lݻh?^kҭ,5L<0Pukk] כN @ @ @ @ @# G> >-P? FAկG9hZ_q#c\{ߵ:jGvg#yΌ?ݡ*̳W uߣsLi}񼼷3~ ]ݯk9]]>l=sNFcE殺[? @ @ @ @Ey 6^ }Ͼ3kvqGkk3.F׿մ9QlLP}T? _ِۗ[!h=ZwoM5֡\zIy lμ!@ @ @ @ @g l >gG/S3kߵ0ksL1KQP׶YjΓYr_W޿gjo}~J53Ac1zQ=\k%н(/ʆ/2+׽~v[zGʗJe @ @ @ @ @ dï^m4~H`.GAL|]<"οXo{gǎԟd$+C6w+q#u@O60eQ]Z{^Ä>_^Y @ @ @ @K`5i?׏U{ak?3^=ǣ5Ѻv5L࿵5,9O^1"&Cчs&[k 6 .V/W>jܿ#|ֈK$YeBuw}tf\_(gq}妞 @ @ @ @S`5i+~@Ww& _̈́#x6{yΈa\ڜ7k{ƈgkwUL\ײWX3Ky9@/sEj<˹ zgۇk/]oW?z @ @ @ @N]H?ـp&~N+ܻW/gܵڙk`\v%:0Yk_3WxdGǙydGX}F|;FBeՙ/g {3~ʿG#@y{{:{/×L)NW @ @ @ @>^`k uAcu3ZѵLؽ>"aQh'[AZPzG5]۞<jm[zׯ+s^2#;£Os& jjcqG{Aֽz$ 'Zw<ڔߵ{kamiޑ@kFV&2V􅴫.;] @ @ @ @*5GU hHW g_o#5|&>[o漞e_m#k}{U3gt"geGykwG]AcAʾG!ͨ~% GwG}]jAޜ϶]e9T˵g3k?ynQ? @ @ @ @x@-N? {1@L}5i>{9"3޻]˜ѧ9AcQGakM&| B޵1ZwE!RCz5^bʹ2uOGfj  @ @ @ @ [ 3#Qޙޑw64 G:Ѻ߻^ZznT{="V螏p\WW;£O]AuWo6}ﵝ //2rQvt c5e٠zO+ rV;v]3kgsg>g c%[>7Z[&G{c͎zZdvg{RXˣL,q), @ @ @ @ @'l .<sD\z5{GY˵ey[wGԈ <j yF{1[ڮeߪ9hߴdG_nُkuk_Ǫٰy>Zךgy}6_gkjzEh\z#s qGx>R3d? "kz^5}|Z_kZeָ6s{{9{/͠) K5l|2gh=Ϲ%{Ƶerߵ>G&wլd}rzYZMhEnd1gcT fel˜V1b9nQm~ ǂBέm&j/Cy5Q8=z5~.Yaf=kߺֻ>wF{is_  @ @ @ @>M`k u-f@{+wl|MmQH~G=Z?8(~gjG(Lk4ֿ+ _ jZ3;sG32 h/Fg`}E @ @ @ @4Vó+5O;ѾZh޼G_Ӻ^E~jZz#ٯ3PfQ_ 7רv5~ͭzvlg׹3aV=z{Z7火̾~1t/E1}'@ @ @ @ @Qlu?b?_dB鵾_x#cjf55h]]?h^Vvt&w5_b9nQm6p -GAEHl}#L=G2Z>:~C/<W @ @ @ @xC'[M&{/^?=ԯ#_,F 暽W:,G_9zH\Gd/HfƝm9nhm$~bQ=z6  Gz}FעuߵֵѽGt녱~ˋH' @ @ @ @ LlXX;^ \j3 kv_9d,C-]z#6n3WdC 6 5jӻZL(~ЏjzkHV_ϚHyEʚ^sB6VHgqG  @ @ @ @3[3f?ZWuGyFF{s4F̵"㯎°I9n՚WLXh:~蘽qjZVQÙ9Bf\Odo}YE= @ @ @ @lQjXQ=^j3eZِyqZtn9f֪<5w~oH?o;)}V;=͆G_`?=2#!czmѵootjmZZ}cϹ @ @ @ @ @L6fT $wٳh XaپFoնjz{ߙkl ejgξs fV縙#G"g/k e͎ߵ>ν3vwqA @ @ @ @j³~F*4zfl=zlU\k_h?f8ydֿ+z縙#P_e?2܎˯}Ga{C2b~Gz~r-/ @ @ @ @ @@m.h*AįcjWB+m3sB~9ι3{Gy4FZ;];0igXτ3Fo>SwmUv #{1_3ҟ @ @ @ @ DB(<]gꭱWѶ{F3`f]{m IDAT6Q 9Lߣ6/ 3w~vݿuT SE{mf֣֦u<ٽS;:R/ @ @ @ @ @fـm]6~>@]c3!Wio4~ٮzG%?WD|}Wt}Ÿ1F3_qτ׏Ex$}֌jw{ϒCnwy];5#O @ @ @ @C`5Pmї3#_!G3g{iԮF;aF3}8_iWj3cDjg]kA= }Q3s{{њVx1{̭x  @ @ @ @^Z]XչFڏjV ;~,9(Lz:ο{}j3Z6QD[8bj16wG_1nfhm6JWُ9ǜj}9ֵ6׃ݏJJO3kK @ @ @ @w JH#ǑDB2֞T"GzeݧF"@ @ @ @ @NV7M~eޑ0{$ f/Y{1rܯմE׎h_ѻǞ?[쭐w$@slL^{9fwmQLQ?s1  @ @ @ @ *j?;hQݫcG/Kpֵ~25;뽾JZMZ^i9=V{w3  @ @ @ @ @`,eZ3Gڌj2aW؏GWxH>Rid8j5>ۍMm)ވD/Ts9f `5iGv3kmZ=3wG^(x) @ @ @ @ @ $jhf爴dCΑ0(3< ՕjWڟ;vvϴvI;ǿ<1[+gGmnsάuGJ;Vf>1zfJw& +AhݱgeZMZ;6 @ @ @ @ [wkge aG2cyF}֞նWrzrG{vgd#<'X_11"F5f?6Z/О ݿykU^X'@ @ @ @ @a {mF_{Yףo97#j^1Fxtk3Fڌj2_Z?V?{-.@fy^z03>PH @ @ @ @>@`5i? g rg;٨M&sUۻ~nѺGH3G~gRm)aػ9oͨac3d3m#2Zyjޣ#::F|=| @ @ @ @ p<>亰L+m{u}&^ 0y=y칊=wGS£wshQ]6T|W؏ydFmjΙz;:ζ ;g{! @ @ @ @ x|5$,\}hHݫF$=SsG6ZϹ"};?|Jxyf֏zh{2?6Ɏ|fƩͯu-[<<5EƜ=ѹ @ @ @ @x]LQ]6؞l|P?xT{WMm>>xDgfgmm?fT0v6ֵC7Zޘ{G]E @ @ @ @ 0+pW wHQM6p30> k|gڜ{uٺs3;?nT0af^k'.:s(hm!h,  @ @ @ @ @v3}Ej_a?WG? G9^k]݋DΨ_ۿ~JU'fT7n lV136Z˳6Z:ȫW_u @ @ @ @ @3]?>RPΐξ_}^y"k^™63'U_m>%yΎm7 Xg58WoxବivWq'@ @ @ @ @; m7 g~JH<6R:V6[< WЫƙ]L6or%Оiߪ]݋܏\h3yg_q @ @ @ @ @' fԏjgG8ZfѽsֳvFfdg0?fT;f?<ofRg~yFVlCVA @ @ @ @fGgPw4Hs;VdfjWd}f~o+=3Fͨvg@@y6Xg^=^`ֳwWf^'3' @ @ @ @ @xU weLQ`v&Z k:V{;hx bwl}żgLjԽ"~lL@)!6硈KϬw@}g}fWK @ @ @ @)pGxwhQ;C:W۷лrܻu֕g"Yz+GO b+cDFv3cdcިy`"4S:̙/> M @ @ @ @ױfG7GvT`_P}}>Z6ZW;C+mgcD+=;Vݨv~&\~l;wݛ^~ @ @ @ @x]~"ulXXlgksYڞ:2cd擪+avlQ^ۻC;>6Lffk5:!_~Y"$@ @ @ @ @>:;=G~Tww?˹-V k[k_k;ζlWO£zq2"ِw6~llʹ9Ȫ l7&s?3 @ @ @ @ @wygϴԎjf;?3nd5ܿj{~]jB}3̎i+ mg^+÷vFξ"!@ @ @ @ @ 3+Z zn7LsoQZl3ʱfm-W>XQa>g#stXw1#r)U  @ @ @ @|S;#RZ3jߺ?ճڞ'fp=YD͞W[Cx12m#!vǦ@Lh]޻A  @ @ @ @xݡޕmw wݱF&>{8_kϯWr7a_LcdGjG5F n4'R:q;`15 @ @ @ @R+"O~T{ ls9Wgudjk[n}db<|cxUϴ:N}vTwwڏ0zhPEl•у1sQG @ @ @ @-ٶ5av>{G\lWGϫƉgð|mw_>5!9 5<>ȃ @ @ @ @o@솅1OMnG͓C;C:[iݺ+;t7G_L+eF#uOs&[m6{x_9Vvn  @ @ @ @ @^]+6Z?~=ùu׽k\zvs϶2Vm>Rfc֜!_ypf߮~n}1s.o@7$ @ @ @ @?-U؍+eLH펚Qԝ[&2vk{nWt7G_leG#ucjF#}Dk2u̯uVfI- @ @ @ @xB+dF#u;jǹ"l}Wg̫ox1WD96s.RsLJAFl>pL @ @ @ @`m3_M6RsF#}쬉ugm3c3W£|ձ3ڧ:2LyHja}8#@ @ @ @ @ 8u^YsȘ׽/j̹yXym쫟su6廓96~<$v9;m:bd @ @ @ @|ׇd7Nپ]5RD shm-[;su̙6ڝuѾ]Lwu @ @ @ @ @oxuxu6Ѻc#h_lm3csͯd_;ƛ#&ZcsG>B~]c@pCVxN @ @ @ @G |}Hv춚/.S}WݱѱK?Ӧ:;lW_ yw9GwyL灙iS}dM- @ @ @ @Ww7GwyL=9nwsc1RkAw=qgȶGkuԟ,;Npgv> @ @ @ @ @5~2hݱ{33mʓ箓qw?ϯ^;Ɯ#&ScgQvGC>tL @ @ @ @llLj\66Gvcjx]Ͻc>ɎS;\;wz @ @ @ @ i slL}'wן{1;Nmclkܙniw=qgimswc\J-C:! e @ @ @ @|υf7~+}δͶXζn}lw;3׭m~=<5l?j73L`̶+ծ~]f穞 @ @bZA"IDAT @ @|ûƝg]MGnWwwc}ݻvL'9G>Gcf?}~gQK @ @ @ @ZO1>g>͹/fXSɞwmEN]c3v͊xYm:w{ۡh0E @ @ @ @ |vlWXץvz3Fx5j?_X1kig_у1sSG @ @ @ @~Ec5ν8;nw3sF9|ok#Hww{Εxwa[m87o]YE @ @ @ @Si̝;^]mUZʻwm£u'ÎVXi{Ў>!}'@ @ @ @ @,pwJs㎾f癝ã Ӷ)6籫~V_Wng_qwz)i2oX @ @ @ @~V@xg}?WcW?w7kv?<NxO=]r;툻KMa&x @ @ @ @ /;_k]fv£xs箾vs];T=a9'@ @ @ @ @*s~sg,1r7:{J @ @ @ @# dxcsg_UNy<~yhI^weg;:W>kUvj @ @ @ @ @^nc}wf=i.3Ya9'9;s;S4 @ @ @ @ @xR8ι}sg3dza9'9;s;S4 @ @ @ @ @xRHι}sg3dza5'=;Jzݭw#@ @ @ @ @yBYWŝbw?+8xy5'=;Jzݭw#@ @ @ @ @y·YWŝbw?+8xy}O|ռmxճg椖 @ @ @ @WWW=v^U/ojy}8gI- @ @ @ @ p̯ӷ)z>^z;1ϕ}:}z* @ @ @ @+ ܵ1ft'aPC @ @ @ @' wGWS}G ޿by{N9FC  @ @ @ @ p'=w]OgyU'4'sznQw @ @ @ @ @st?g"3}z>qN=Ood_@ӃS}w[[kǚb/g&@ @ @ @ @D~7[+[[;3.fE @ @ @ @ ~<ٷo}5~\-?&k\"@ @ @ @ @{|wmg[÷>?5zz gY @ @ @ @ ߻3O[kfFxqK5р @ @ @ @0,ۼ ~5uk5d @ @ @ @ @}"ԭ֐gO@ @ @ @ @O/_SYC= @ @ @ @ >-xMg Y|~ @ @ @ @ @@_@x?>,>~MNݚOiv}y+  @ @ @ @ `W9 n燧f_{t @ @ @ @" 0v"£?=55'/?ȃ @ @ @ @og/g-O"<:$kuKd_~2z @ @ @ @>H@`뇦j_b bؾU2G @ @ @ @I@`V{ž> -W<}! @ @ @ @ Z}C-%{ @ @ @ @ @ oO)||+Oun/r{X @ @ @ @ @xw=.IK @ @ @ @ @7co}J[ys{駖 @ @ @ @ @?, ËхwI^ @ @ @ @ @! |S SK? @ @ @ @aA^].|KR?xiK @ @ @ @ rL 6 nEt @ @ @ @ @`J@}M#v +E+z @ @ @ @ @ / Ȟ7ӂ£1uEw4 @ @ @ @dbӈ]£$Cwъ @ @ @ @ ʹ @`FL] 0-]4M! @ @ @ @٧4"@`.I "]- @ @ @ @y3-( <SWL xMiH @ @ @ @)A)6% %bb /FUHu~:#ȍ")'i؎H19z8(4L;!&i B5cdyq},ʋPɭ ( 4cpqѲDxFBD.,59@ {A6dxDP>@(Fƅ @!. kphD.x9D<[94J:2[2x%.%r.KgXF %FÉ  ;}OxD$'\%tnN˿e"5g~1nmz!x-LpgRoUH\GqQ`×#F2y~Ծfd;,mԗRv ;cMÚCkhx!r?kTeRZ^ D T;C6G.8+ b񤂱cXn) зa$+@@Onm~]K^+P 2\ QX;  $T0 Y ׳bP *l[v|&p?s" n > BB1F,[qGH D#H*d#RDC Hن"? Czw(P CǡlFT4% AqzB0&f`lbiX&`eX%V5`-🾌ua[3pp$ |9ߍ7eއ$ gGL&"* ;  'n&"L=Tbq.q9q3q/I|@'H$gR)'JIH{HHHݤ7d-ٝNN#KJr(1yKQb)BJJ 2@գSbjzzBKKJWkDkV>ZiN4.-n^t;z0=^@_Aߥfhi jWk7j_~CѱL)ҩ9sAWk.Э={]_\N}~PD  a2%n Ǡ{>C}COdنՆG ӎc1W231ߍ2%lTèK^6 65jΘefkڸ nd2d& F.i\M"dfN3̓sך5`XZH,ZeXUvVere倕UU^;TkuZ6> 6lm~زmŶmOپKڮ=ϾȾ!aCG#1qE'ITtuv8ovC;F:fu ǥХXc>g3.mq}trszMm[[_Nj+tp==E[K ]{_~?]s/c~@V`Fශ]AA9γy\?|nk(Z1nUxvx}x_W܈HBdT<3W3a(ZTBƨN薉 Lc#i5wf48)nRGnO%0'%J I\x+!IԖ\:%4"k'K5I6ҒvO nJwWziSgO=3dZ޴#u ddekM}`0XV# UgdUd=^#W{%\FȜ9scsw'gKs3g̞)sʺf\7O%ߩ@S~^Jy0ͬYf͖>?iβ9‹mg9o{9-@d.h[hdaES.ص咔%-%f%J|U}v_o]/,Xlòe² 훪oWdXr**kVЫ(xfƵek_Lg]UUl6~x꽛L7-zp-[m-[ɷ7ElkN^юcWdgvn3[Y+{} . 2~!k`hM9}M⦮CiO[>bxdQђNJZ{g6։'Oj8u?89utg:>t\y`wG }/tT<|]'O\}OeOzKc3g?}ZŮ/5ooOKyx`{Z>F}=?8(CG V4+ v@Oq|CQS'V 7 Q׹V:zb0@= Screenshot 1526 890 1 2 ;n@IDATx,Ev 9,9% $1DĜD>P>@Y"QrK 9WNgf9s~鮮^]֮]<3>{ػ瞻]$  H@CAmJ@>3v @k&l-%  H@$  H@$  H@%^v[$  H@$  H@$  ($  H@$  H@$ ^P%m% H@$  H@$  H@hB~L. H@$  H@$  H@%^v[$  H@$  H@$  ($  H@$  H@$ ^P%m% H@$  H@$  H@hB~L. H@$  H@$  H@%^v[$  H@$  H@$  ($  H@$  H@$ ^P%m% H@$  H@$  H@hB~L. H@$  H@$  H@%^v[$  H@$  H@$  ($  H@$  H@$ ^P%m% H@$  H@$  H@hB~L. H@$  H@$  H@%^v[$  H@$  H@$  ($  H@$  H@$ ^P%m% H@$  H@$  H@hB~L. H@$  H@$  H@%{1% t￟{&?bN8ahG>4-K@$  H@$  H@")#! B~&``4B~n1y^,G$  H@$  H@$ I@!xK%1~I&)>'FZ>xwI!Ozi$  H@$  H@"?@SB1>:'>!aOb!$  H@$  H@{';0sd;nD#@xQdMVxLJ!3aG_# ygH8,$  H@H#scZfy%  t3--λiH0B~b<7Y"ycy>_ H@$  H5|39|"%|zgM@bO-wcW6$ Ts&|‹,XI'"GxsCl,t⨙$  H@h$y<36׎i5~4f̘4vb;oZgu|b- $&4A`B~0=O<1=3E9?ϤXeҥ^ZĖ[nV ^!̇ w=[oUCX/zҰ.!v0|M$  H@h">Ygp7w!-ioגo~x"3w馛. I`( xJ# #zꫯnXYf% 7xc:cb4L?iGy.2]="E! 7H>lz* L3M⼈0;38Qf& H@$ Q@ <-jlwqX@Ŀ[ O|bK/]vʻo,W"W{; #tMnXzGT/駟<裕gy:.0ZHŏ'D|믿^y啄GB,ÛW_-cy؟9vݢH@$  H`OK~9;z̝?kl3:نy<!z"m,W@xJSO=5`;?zDC@f?p_򗅨L6d u8u8vɇ̓~"=|Fo{nx㩏σLɓalyi$  H@vǴ@w ="~_j3L G68o=qj@GT!|zꩋx ӵ7rIFg{*!%  H@E]뮢+<ũm#e88xV5@Mh_D2lvۥ9c` A#4qGipᇧ|O}Si֫u]N;Κ~W=骫J_?Yd맍6ڨ/ż:_|qap>ēओNJĻg ְ<0eJ3L.>BA^Ad5 H@$ ҹ[llN{6r뭷:wB U{wzYK-Tu] /?H@>\|zycLfw<ݑGY L뮻n]!):Ert磐? ?~zܬr!3Ϭ,y+4-آxȌrJg>~T7^p+}y*|XoTbG"D[VDŽ|vs'7.?HE=#шF8㌢bW 4`v7/_p=bf~C>^uC8GEx!MRA><>l& H@$;e,,/| ig]Zq=?X`}o\xW8+WZitM3u5Ӫߎ3~BtFď8#C6?u3f_^ET 3вC=T:$I{amN1);zG7OϠI#qN0<^'fvBŇi<j.>34SK6ƴ|ɃyC7#L̝ 0f̘t- nV_Χ#'ϛ8_No:+1R/1uP61tۼ?t_>8ڥ+_dۋO_uU :<1D=7i-<^}ki}-\q|1Mh|+g_#}.m|-b2k hp(d_8[F ?({) 3KK8a >δgn<0͔->ODZ ;_$  HY6zfˇ-vyDr!DX/i2!ȳ1haq?&>(lVLA }X袋FvKsϥ%X2KF9fc#1#S4O@!yV#:%^/^WF!ɇgyj]Gbe> uOV~u$3ЏЬbF 2r%Yqlռ?J(ף3B1-eb)*?Tj j~V+ۨ$  H@#`=eWYe"\MƳZ+_AO=`%4Fv|_Bx?쳋|Bͅ|10 6hbWU2Q6e\+3)=c 5)vm }+B>Ǻ<Wk;BNP^Æ2{iM ^\3ޅ`Gq CàQ5LD$N;4} ʍFz!:q#N2KzEƲ["嘍Dг#^#8^4~?ԣV ԎjN2x/}axb@Auϸ/B/Ga{-Cn B/|8r!^0y@ha$٩.I0C1fk u$  H@@IǐG 0,_W F;A9DȻ/wbauޏqϵ80FaѐCz l;C*tCIu5r7j NXt_>pJy| NEw}w{f, zkY+:b>/Ƌ7;-ᝪC<|9>|jx)g/Y,g~ޯMK@$  F0.iՈ%x'#={^e'Ck>"GK/,3~F[,,YwuWQ瓞}ƙ6f#cFs6fc,ϣ*ļ/upB> %4T#3O:o' C?я W,:T<\byȝbƸE,5(hG ?bq5^P)<}w 7/wE)Zc]Ғ?؟0>Sx&!ğwy+嗁o1^6L(*rÉo8etd|e_!Ƴ|Y45 H@$ `°\ GoE sm "Yo+x/s9o?餓|)/>,"Gyd"&">Ϣڝ)c]!\{Vb򐘎iG_ EeY*u}@[P 74Q9~R,o|lq"/0>_4~}2e" &Rf bFCAYE>Hӂt\cL~'7r^u/ H@$0x]w]%#D;2xdpZB*`ጃ`ӟu♑nK'x3mXVyg(#ϫpyeݲ+ޘ_u_qq>iխ#nê6[,. ?u&LrH}c /cYE1fcў,{Rx^RytG.V.maV܋݅]3rxE_k'1 s6Z>;RT\toT>ty"&Sqa5 k@8fpM1SɅռ/⎄o~_ H + x1ٮZluRg0;/saKx1cFx) q($  H@%^1a/˼>pʨ5U$=Ñ6#w 'g+BOٟ4.F>IǺj՞y0Uc]SQ7bGF^|fN-g>4kL3MOcZg/=y^ \̧¦O-dq~">7z>y9- H@$Y<{auϫn/" cA-Dcy \,!%NH(J~=sBy|뭷VA&eӪ g‹8`ec6c]!FV[걈4~yt#/f QpR'm#fB]GGV ׻V[;uX*axWhe` `!km:gŘO{٘G>`"G 5*w΍sIcD 2=h]iB> -{o"sYRkB~3Fy)J\x0JƆfbҩ2_nb4!KI_$  H@B@<:pNl#n~_!W*v'ĊZ.XW\QqiD'<+ٯy( i$1mN8ËnGY3J C81V\q[%?Ѩ^&~|~>MC'y&.7t{+ya^egpӊ#I`qz:EhDp$ZeN>/_6p4qc~[!?,嘍ƢWբ[^f?4Kt Q/$ aCVPx@O^薜1ã'^ȏ& H@$}yO}S57ʲ3fL%-C,cfà뮻nEBB_z#YevmW)FP;Ug9W1V$vC\/'03198`xƀGƛ3+Ĉ'O30Ÿ`_oftB`ϲp?9y_ߙce.zI sj[?$  H@$ "@l|@$E/,##>)"NLnKzKCoyH$  H@$0 qLa},$ s#r7Έ,$  H@$  H@$  ??$  H@$  H@$  ` #Yt H@$  H@$  H@ C H@$  H@$  H@G$  H@$  H@$$  H@$  H@$0 (g%  H@$  H@$  H (1v%  H@$  H@$  H`PϢK@$  H@$  H@@PcJ@$  H@$  H@&?E$  H@$  H@$ '=$  H@$  H@$ L@!<. H@$  H@$  H@O@!{( H@$  H@$  H@#B>x]$  H@$  H@B~cP$  H@$  H@F0|,$  H@$  H@$  ??$  H@$  H@$  ` #Yt H@$  H@$  H@xn$  H@$  H@$ I@y,$  H@$  H@$  [}wr%%ݔ$  H@zE 7_~^mH@@tMVԓzMH@M#)L&$  H@$  H@$  V%  H@$  H@$  H@MPo $  H@$  H@$  H@CC@!hU H@$  H@$  H@@Sd" H@$  H@$  H@PnU$  H@$  H@$0H$  H@$  H@$04򇆻[$  H@$  H@$  4E@!)L&$  H@$  H@$  V%  H@$  H@$  H@MPo $  H@$  H@$  H@CC@!hU H@$  H@$  H@@Sd" H@$  H@$  H@PnU$  H@$  H@$0H$  H@$  H@$04򇆻[$  H@$  H@$  4E@!)L&$  H@$  H@$  V%  H@$  H@$  H@MPo $  H@$  H@$  H@CC@!hU H@$  H@$  H@@Sd" H@$  H@$  H@PnU$  H@$  H@$0H$  H@$  H@$04򇆻[$  H@$  H@$  4E@!)L&$  H@$  H@$  V%  H@$  H@$  H@MT&$  H@$  H@R~az=ܓt '0-iJ,HZ`:V1cƤ~#-2ik9W^y%]ziJj뻂$n馢N;vlzGdMgXb%ڪ{k6=E?xfiG?*Yfg{ I@$  H@$ iJge'?ɴ{BVefgyf\{j{b?t;]wU! RI`aE[cq 7T歳::hYgk4qw_Ei9-F>M2$dqf( H@$  H@:G'Hw F⽎u!9眳Q-tInr#_|o%p駧#8" !лkItPZi?SґGUzt1>4SK>e Fh$  H@$  H;^}/9⋕ ,RiJK.d!b~ .vk_Z:s;[e"*yU3B\vewVK< H@} & mP7yap.J=ļ<0tIuwѣ:jO}ˇ_zD]ui%zJa>h὿>-+ H@$  H@I ⯿iOO_IgVHm]bO>d+Ӻv b~+nif+D蜲;$ /wJ0SC=4-yDo8t˞{bz=6i8O#An+r7=ɏ k&t&V+ H@$  H@$>{/Od@p?9ScqOb@(s">=~c=v*xjhCon9mfrk5>NC@Yď6[AFǰ*&-u%{3$  H@$  H@h5kU7dQe&h*oJLx≕๺ VW}WO[mUvi%u$0 s= 6Wך'S!vTzJZ|0i ݤk$  H@$  HMcEZY ҈uU6IȟZb?WתZ3{$  Bc DG>d,p^䟏WBȞZa{"?z+ H@$  H@DG<3VML?$4v؆34S"OL![dW$  H@$  @5ڮK|}=Eju%\R)."j6 _ o$Ys5+ݘPU$  H@$  H@$oVrȽ+3kLL7t%yW[n&d'$  an~ ˡv\s=wZguo UW]UOzw}M}WoL|v.9ד$  H@$  H@]$[oUr0Wf֘tI+K{aS4< h!kzM8On$  H@$  H@'\ꪫ矿 H@&@=jbGQ40u]MO/җQ9O}/僓76Z h" H@$  H@$Ҙ1c?^A+rBlF裏~:=ct!eY?kC77Xb4TS?NK]tQKwbʺ#DO$  H@$  t@>-TC`a -PZy㯿zN`&Js9gZeU~Vx㍴!x \_c5_䅈|͗~G>w}w+?wW!TS$  H@$  ,R_L7xW+I&|t'2U}ӛ0? H@"˦]v٥ [N8 L3Mя~T멖ykVl*/'@eF'; $  H@$  H@@'6ll^|t^xarog1mᆕ:! H`b-qr-1Y[k_{1Y>7c wE|%  H@$  H@ :묕_zt\?]{Uz뺞NH@1z&1/l,kvnL:餕숟-sn5_ H@$  H@$0ϧwyXN< a'tR%[D~NH@_=1m.rSNYw+2`9u '0+i&f(7Kt$  H@$  H{~tWuY2^ @i#^ZvM6IM7]ASN9%[E믿~B~ WX`f= ">t M$  H@$  3뮻nc1/^X;D5XSzjz;vu*k$Pw{fXp}7|3#fN?b|ͱo9 /\7`*J@$  H@$ . o^nb3XxoO>-)\pX/8}Hg {WBbWwB@ 0au>D#?gy$1z">N;,^O|>tgy5\^I!u&|bnb#^{'('ڑ[)2$  H@$  H@3# "`$0\L6di*>..ŧy {$  H@$  H@$  Hg{ I@$  H@$  H@Z':3א$  H@$  H@$  B~P! H@$  H@@IDAT$  H@@[g$  H@$  H@$ Pj7$ H@$  H@$  H@hB~\C$  H@$  H@$3 =C$  H@$  H@$  H@PokH@$  H@${]{s=72 o% [Gikn}f*+WP8! H@$  H@F^KW_}u:sE]x~Et9gy9` tI=[fׯNO׿ҥ^.SOUO8"L7t+,N;t7Ҹx뮻'囸'[q#$  H@$ЗnSnK?^x!|߮De[NӇ~Zk4TS믿4[/M: !'Hnib)j;<{-'8 .`B 7Pxj9ti_|jλ; +Bs9}7wߝ&hKWMSm&Jw_qpgmDg}jɋy?p;vlzNjhJ-\j+ʮZk)%BۓO>(ΚV\qŪ01 >׽N/| .Hm]V3ny|qO~xme˵y]wy71^k\suM/i8:aK?F+RGk:}:f̘Bpvi4ClIZxᅛ*/ 'ȃ+ 1aOzz뢑%=iu ':pDf Orr3ޚ6`Kյ^[&a /[lEEH[e[euYg>5S'z>rKq rѐgyfѐȹ;|#P"&~ 'o}:[i!ܟ~ų<7ݩ󩻫rmPx=:LGҢ_W{fCB~$  H@$ zxffhkgCzB~x@>l*DQAVn)fe]b/נEcR;FEpj֮B1Gz=hH䚤.b\ZZeUG]8hwu1 4ѸF}JIꫯ^RS13ó pPRј+h<9-+BJn$  H@$0N"|px[jއ.'^lQ Ռ[5.k";Cވ aPY4`yd<"i(C x_{(qfve ޚK!|WQCP--p!nfHbyXboLiGZH c_F< z3+)"|nr7Fk4$R{F[4-#[dW$  H@@@{|ކt/^x#(#vFoy9i㕎ZC/fJ"d G؈#!2.67:^'+^Gxsq!d, J/>88feIFV,zqc}<`OsQ!u87rC(<4:P:m]g>*S TM kL&tJDŽRvm+ ySkVEr~?{0 8Pj7gzHp<8/9&x̨H+mKuuwQ_- 2 Aas1GyW8#SN9%kAfs!84eQIE MZDFB>"?i|<ċYSxs.7:vxr-rGr8S9c|:?!Z~9o>㼤awƗ VN* e:^d?7hJ1F|/jiDw܀q͒s! {"\Q}^6h`Xm] hUkXQcTnlZcꪫY]5{Z1rLs FqlL)iZx,- ]yGcB~-Η$  H@$ @X"F,>s1[Da^n[:" @"lЂ;b!!df0id8C {wexF,s)ʊG)& F}9ix@E@BÄgΫZ>C:쳋M7ݴ!xmR&D ~r5j$8q1l!D7#ޜ|\o9 - 1b>K=_6D7A\/y #qx2s(3|tL9(ex/Z``'3ayYn~/_o 9\ь@]j ?<ɏ:q3_Oӕz5 ">/P7K1`2pРQ.SA)3ؑ+k}QU=74RQt(Kľƽ|)ƵuL&?kMG#e܏tqsFcf98j=8Y<[M_V4$  H@$  JмNj2/]ċ> "}X^L!x !d @6XCA$!<ɓpD:%fYDE&Z{xc)qIauvIh A|G<` (xM 5# K# !##a\8x62 ě\׉}#FBU3֫W0n*yTlyCKt oqD!g7q7zZ.遁EzÎ`"#r#L//b8%xKj1s*ko\7\/MqNr48q55kdJk;/v#(q< 0^|x !Gȓr<<[7 5ޅFTਖ਼[$!~ zݜk@p!lK= ޓl| - \K49#|[/ 7K.r ]-62%8Av_rQ[jUB-&<_kKء\8:X;):6˻Q(+Jc^N;/!PsjTwuju8Na3(mרq"e\eԧ>={Yԧ=ק^zSyq*<B>= (CG@+o ŃjǛPSBD/ 1e9DQ" Q5#/ęzaW>gGQtj$!ZbQj<MDjƉ@f7o /6it! b͏w'ؕ[aJq?ιfeW_}u O.9E ./uD+~ao; cxC!=k Euy/|e,_z=)=9B6vW;h%`9 L) /r[+?[c<~C+]Qת FP9>vG۪UVS?qmJB#qs uMrz2K@$  H@@Mxa<ys1zg:B&/#.1qi xV0y^P*"GBB.Z/y|%1!(C!)cjqɧl3W;pGĎƗXyq ^Qȣӿ7\q"`?/C(""^Xb`"!slM 0 cOKA1<2scys?NnxG s_dGOcit'ÞֵuixK6ԕXl#uejFG,~E =khCTGGOx0\ |u"Q_g|r^+K|7\yV/W/du:=QfNBsNQ1üM  I(GB~Ni H@$  H@Iaa_A#VB9#Bpxa4ED:^~c?4"\6Bi;ۉuKM#B' '.Ǻ "Rxe~J6q h4AtBԧ%zFIJjy5G87e F^l#BO.ΰZ>ěgВ^}Yd=(vAU{B4ce\ Uk]m˔)<)V[mt?<÷vBT Ʀ0z"`OGOӚ#PaNK7^2ua\㺦^:>|]2U>ٰf1p~bhL`\ͨ/ƌSS魃u뛼 -ro/OBQ卣y]Tֳ[Cf\ wk V%Xk]%{Tto3R9$  H@$  B,hi 8!#2'V#=^s$Dk0@xvE B4;)1ky)!9N=\<mr!#%·H*;C,0xo %̹7>'\~c3aYu+K\!ǖi| ǭSґw_2ȹh8͍yU-Vq4g5߫Ez3Q-N0 n4rߩvϷA]Oc ~p_=ǔ풶24s_^aDf{{T˳is :l3Ѫ!!]C`ƃ/vnyf5:ƃeZ.W99D|AnwjGćSVQKD|%-<խpa]z^3w3ۯ^ r˞^qea~h`3eW$M$  H@$ A 4 >;O>b{EXW 3 3DLv j 6hguiu?Ҍ8D&!zѸ F7}fn5o H@$  H@ha,Atq͍7x|(7{K.)V{j{ռy;ZQh裞0(= QCwA} Zka11<;mW~l_8S}ݗ^z[tdyty}O /pG5A`̘1o[eYn6lwO|kc=ctGI&dؖقI@$  H@$ Jm!?l8j#F44{뮻W[/b:# 3SNI_|q~;&i+/+Ӳr!Oo!fMB8 -M]rK袋Ҳ.6d&0$oFZ{__l 'Lw\!@wQ4[b%:ӫozĔۂJ@$ pWo1z#HDG$W^9׿^**NF%M`֭$0R[~Ż&zOZh~6-"#e7,gؖdyt'N8!=x_'|r{7lo@}@\` ҴN[?qqO{Gso.?s9nnbM4Ql=O&|7xwzΝwyXs:l)YY_y_4l]mݖo/{Wf$  H^1N1t7x~?g<$(=~b`B "** T@$)" 1ŀAbBb`(s޿֚on6޽C%!y^Oq{J:-eh R:묓=96pj뭷^Cc]vej֪n%;|,]zWG>rɼ$g@xZp o85^}'wܱ{)KJ׿|+H@VW#1YxsSӑ. I =n8 7>:1gQ\=_FXAzP>a(׾r}[:OXw0KZ ٩/i/E4 d= ƶf_A #=,#tq<7+3׼5 _B3i述Q$  H@< {{(9lGic[] ]@(I(BxW-ǻ2<@N[[ !6fXc)O\|tXMӟρ\m飘@]{wr|th8>ӏ1eƃ'蓶r\Od z?CҢ`l[iwXg@diI?JG?ыҧ¼/=;IIs_=뤛sw|H٢B5M Kxԁ}II} NZб8Q&MJq),ȗto#5EybCRvi)̛&:II41 OWU;I)V%)I]yI'uJ')[ӤINz(,:\zNM;iwݬNǎOXmӗ8FRv4ӧ NI&e^ޟ:z[`Y?);!YifQhSN7NN׾ܜ'EoG{I+%=0:i2_2Id^'/}ԿL/uZa].|,s;MJv 9-]:'NXPnZ@+ONR/nIa _͑wgXuwh{g~v\;ipzpK ˠ$Pk[P' -H_sYg=)NjO!)/uhQf WKJȖ?is(WZdS'{6w[XbA_ Ha8$xoSZNûcfLjQ.4G4m ۢ_.OiHV 1F/~,gn!ytq3c_2|[o ۭ F@ޟ< d, v6~KA?YJ2* AR;dZZVc}"?= aEpIlyl)[lEvK`\m2qI$91WÅ%=%u%XZ*5>q8b#iv/yӞ-SG-kg.lzY7ˌ_O?=ɯؼ+i4TB{G?Qˍ7'܋amL<7ҦBngw]csM/j,Rq:mqLҫXs2B5z>&1:qpQGUi2(SB(Qqq2$Qe?!c;ƚ*ǜ$\#JB#!zfUCtW&&@-ǚ /JO lt/Xl&%ߢIWϺcEu)w,U/iL2yy?m3g쑟S=ۼQĪ|Xі,GXuu%):XN "mi#֟I^[2:VI( q|EHIq s!-RL9[?,t~o8ySEO ?.-)Klt/e GRjזi"aA,/ҏn$%wsw͹:Z~=)i~ؕBk\Z\G|2&r5\\ 418u&6&Gbsy]0KkQܨ_W8}Irri Ҽ=X KC}N)T;?g̨)42Úu{Oi򤹻u}ڼe(6WnSFS{ӤdBͥ|X%܆dNlSXbsNh==0@Z~㽇wfǂ4X643ve/{YN3N1 yz+w-iK!x'36.d &Eq$dAg|R.AX. Ccfa_+rG3OZ䧧2JӍV%UVZR/X; KH,>KI*,C{affX2e0l ,fΰFI`|-3ֿMK^5B0313fSr 5e`9ojB0bMc->Z覄4@IDAT>Y`͊`q\։xX3;V袋.'a$  H@7cqer;N+y!@[X3C#/aOtsx}-ZɐtiQ.0vXvϨwN!Da78Yd]LdtWn}*̫a1QJ"΅m `H!>(Q5ȢafeйPn 'n)6v=AH!8+&'pB_)(ED^(2(y`b)t0iyoʥߵ(>u!oɅ;p Nzȡ^(bntMAb;nQ nP (yxs<&@PsONt7<ۘ3Rq!l<[ZepݭQ.UhRIɨgO_&3Mo0EO8o~ҿm?h{͢dP q>%&t7 n U&X)B{Mb1 -%  H@$  Lc2tG( L(%H9}c,ƾi ":cQG6u-+@"yZ煻 e~e>!1Z PĄf9m8sdL\Q,A\2GPuh>JͼXQ,¤E1A;swbӁ t, !nz[-K!(MxbzwEEtl"mĨM+}}/>5MVE9D ^VFb:" c ۧsRWcٛG<BY>~ /XjGfݎv H@$04~׫sG3L)H?h-9e;c6AqOdz4Q.0qo uDhAL{FE"۲"D43@2$zD`|±Qw&5P3жH|ݶF!m}p"t(. iL[s +n3 [^E~,t+V4FYgB)KՑs|}h@'He2eآffV9~olk~6ysQL1a]x8*/i-Ġttq<ft2UAtQuF[Uc?^#6? ?֧(]$  x=~{_JubIQ^|RZ쎓,X)MoF{^ 0^QOt$ "uE$ X3lNb` DQ?ZV rgw^Gj9 -ܲ:r i)t Ѩz~)|Fq/>e E~:=bH$ ^:Y.r(w{e7([bUb5 vq)otpG4 y{z뭗6QYG<qm0FiswK(m}ԴQI3&DNChd>%9 .X xlv%ե|RXs}$  H`b)\ \wְ4=Џ`KE$f(c5_#Fl/?ۦ' &G8CɢRvnx0\Tog uE/:蠼-ճa/ k1Y@~\nN?QG(~Jw8&n8,&O}S*GyW[`N $&]maQB[X2k*ry (Л$L{ _¼@H9a)vܶFg)xEs9ys\i7%L,a=,6yݭv:CZˠ^xF Z($fQJ&LH}{ku[ovm:NBFiswg2kݰn8_qAm6W~)j7@~76k>5y͢ZD`qۦRql㢧`̻&i1'EH6%ƒ~mwdE~(NG1iV;ʌc4߄e3ɁY/,Q$T%!8/4$h}O,㈥W2\B|}ɧp+ N:iL cC^@JeJaUX➏%lB{f>ԕE:%Dr ,_#„1psLQE &P A:裳rn8̺!m,<=|p[ &#Pr@Sg,qa ;eҀ,tHGyd7W^D (C.Q5 '_lNxqP"3SeC,<aI(mn'{n$>r2?ckõO$|B[>;!|XoⴹXٶH’6 VLӧ`F_!y>8e‚I&¸iWP7\% ?/qKXze]$  EC);(@㢓O>yAiBfnNS?g:#4FP0]+:"-/h'?zXJa\HЯ`117fcR'F,SN9:;C>cKh c1<96} y,&hXb 6'bKd t M=6<(cϑqguVptV|S&?V?,`i mٲ%! Y᪇2 //(<w V&/J NX/+&e$d3"DJR:PjE~f`I@QY ::5ZtR`ơm µ"-V̋B1?+i?^ F珒}R?= &8n(8϶Բ;NV`09w3+VQsop_q/.^I&gs5k)\sԋ(+-C2ɘQ13}@;TٖfTy,}:5Kq?<[U"7H[;c"41i;O{v}}]Uz<~Hҟ0#[+6x1v琘0sQ'?%  H@G1*^C0~}[}OS2cc2 !@{ǻ%C2Bie.y%33:_>z, J<6}ztCXڣ:AюnƝ1>2aL.EY A|ȇKE}YJDG)Εu;2nF&߾BRvr#cq:|.&2k_F9'1h-(P%¼ Dt6ÆsG)ɤ@4u2MG$Vth((|QnKA8D!?yx"`-bvL;( ¹0;0 o(!{T2NXXɠ7lu|L0 ^7JΟG&<`4K2,c^,Ťvy68 FnjGSuS?M#cf/BO@<}y$2`Lj~eP,$ Deﻼ렀k#6c \Nt1þ[.m +A<7K`ZPpY-W0HDYKgd@ qjRN_dWTgڱ̂wpTDq#JRbR>22ݤʷ 4wd#hli3(Tf\m@8 xB9mȟKK$0KTհ.Dw}U!cMƞDJvVw+xVȟ+a=$  H@KCGAX5bb;sJ\FCt. B@E(# H` ȟkd goğ'+湌Wc 85-?lsJ$ 9%k#,lK^YyZf6ğ l%  H@$ %@QBCO~rf93̱fbh$  H` Lg$!BxVysb$  H@$0AlAmZI0#nuqxy%  H@I,F\B1b]^ Y׼5gVJ$  H@J!$׾wqj"jh-X$ &p_|͗_$  H@$0c䏅$  H@$  H@$ P?]. H@$  H@$  H@Y$  H@$  H@$0]*%  H@$  H@$  H@cP?>3K@$  H@$  H@K@EtZ$  H@$  H@$  H`,*gf H@$  H@$  H@t ȟ._K$  H@$  H@$  E@EX, H@$  H@$  H@.k$  H@$  H@$  %  H@$  H@$  H@%"|-]$  H@$  H@$0c3$  H@$  H@$  H`TOK@$  H@$  H@"",|f$  H@$  H@$  Lt H@$  H@$  H@XT䏅$  H@$  H@$ P?]. H@$  H@$  H@Y$  H@$  H@$0]k|[ߚfK.dFjb5$  H@$ F/_iH@@">@Zʕ$  H@$  H@$ kwlټr6MnrsR$  H@$0.\Zk&c%$  H`2W4" O@Z$  H@$  H@$  H`jTO K@$  H@$  H@'"|  H@$  H@$  H@SCk$  H@$  H@$ %H@$  H@$  H@F@EZ$  H@$  H@$  H`|*gh $  H@$  H@$ P?5, H@$  H@$  H@Z$  H@$  H@$  H`jTO K@$  H@$  H@'"|  H@$  H@$  H@SCk$  H@$  H@$ %H@$  H@$  H@F@EZ$  H@$  H@$  H`|*gh $  H@$  H@$ P?5, H@$  H@$  H@Z$  H@$  H@$  H`jo~՗g?YkXcju֩6xj 7,3K@$  H@$  H@VG;obߥ^ZmV+ۂ$  H@$  H@$  H@H`dE>~Ur?ꬳe72,f$  H@$  H@$ y'0r| (u{ħ,&(28F? H@$  H@$  H@*$0E>1,'-U~c[!piU^xau;߹z>?Qqw޹n7r-du'>Q{k]ᆱ=K H`x__'?q{TyCVyB$  H@ȊXvp:m8F[yFO?ַU}߯\s궷mGSs}?|XxYE\ߒ}+soե^Z򖷜WCכ~.Cg Ci 0e[뭷^u'gyfB?Ya9x^茥|^k=njfuf@xR:묓=9P oKy|.z_ZvmǏ>;f ad9A;'MY{Y/8_'|++Ų_vG"oOxfJ?+}^<. H@J1S妁zsJ2#ni)mo #xMğEhIն_5;I\-򧂵?at-G!R3EG<0ϒEZ-܊"Yr,/ <_w-[Ͱ4aPX+ ` ˕|̫{޳lә|=y(E,᷏նL H@}suU7lO~rEW7ͼbBf _b 7iVD7Ȗy{.'oO ;u(Jtnmxg?;S}OPxCTfY8}/\ƚmB! uի^!}EI2:n&c@>kBnuYt7h? qqSEMTS6ʆ|{%? ֲK~Pc _y“" H`죧M%  H`V 7d;C`t:ՑGI~5!U#!FU{g~?3+O./sYN |BSwX`54C.SN؏ҝA% VODfx %\()} } g~M}~-ȃ^RNu. (?cuQ Y%Z7y]*3>$qS3A.,:187裏aLnx} d#S/4aAzP>a(׾jvlVyQ– "6:RD#'9YzVH/3-ng 'Nk,̵x҉ B|xz;V!0w+ׄkc!Yf71$ %QX`Ck=ܶ"_>{fVsgt? m2u\~"׿sI\JTŹǹ0m,h-u׾6 $yy# =<ڄwA+Õrh,8=EXDŽWuA"m~=5 =g>3[,*cbh{`Xԅ9p|0hj{ lS܋=أwV@ۆimRrQU)K} i(ymeSAx s,Kk½΂0ezP<яi{߯DS.kviLܛ\6 xB3uA }t2/ H@G;0WYs;Lۺ}~ _wnC0^A2N(O ;G>Yqg|xgLVCP~C2!F7#}}?%0NCE~h1^ifFGšH1w<^;#ƸI[ne#@o i(4Ӎ;U3_Z ߴ$ne7]Lt [aUJ;iN_GqD<OK9}R&uR:oNޖ&XONziDyQ4(OZ)OJE )tNw=-YחzKW'c$tqNUz$)s䒶`wZw oOԺ=FuZA{_HJNRr{>ewMINRJVi§u~jhˉz<^\_~xW^gm ҋF'M,ց2[NY\2myL:kQy]/)_Ꝥ\Ǘoqo_|4><6&=yI.)J8|g>5W-oIU?Cy=yNNsfxΗXI8;YiVAEjp\H0ݤngwT'-g>=.Ώd\[uې rdh-Yޞ rRCR_tl/%Su}KF9 6-D0h"Gl$e{-BI VX#3s[lEf9fp]"<%ex`I\6 fUp dK'-'$5?*t9. ۬SΞBR b-Vau{ ȋ^r ]cҰe.?ϖᒅ? ᆵ~( L)?)1k%2& C ңAJ]k5># @f]˚ȟԴ`)cXMϓ$Xwj@U=,K E⡞u 6):twa=1w:&-ֻ,~$Efޏux3q,Ê+Y ȇ`ɂza E֟IʝvZ$oKS6$zR:gid1ΝOfL:i-%%J+OF~^!_ ̒as^%mX!ӗ4=+DM,m7iR&<%^J|`zQ}I(6.z.RiJeMI Һ†5wN39VS "h.ݘ/OIῠL~p}4=,ɓ&rB}Xүt7p~])eYd&~x|9WmүnM ,64~^R.m+3x i,?ӆuǃg%b7K@|w/A%4ö: ;4+v!M>~!5G7[$c<Ϋs;Nql^ H`8$a/D@$0{B/^)p^#1|2[ 8vxk`mKaMg0!VZ 'c<'Q#_2C%ʹOM7q QWB̓hZ1Q"΅m `foAh )VvVp3o &x_i{l Gan>1!P)oK J aBPDe4ρ L4Td6oʥBZfTԅrb;p@r8 j?BݒwC^Cb;nQJى ŹGgϋdtÜ u`4.`m2u !\7DmƒA1> u%mו:ƂbYoԜa3PTr/yR|϶1`MbAH{Gf>Q<)vi,0V ۨ+Q=} IvevVޠۢM%/ͼ\zA΁{?]+c&0 #0&c'm KVtNGoM=Cy3tBGT? A5:JSQؖO0S-V}}UleKaaS*Pk(v`RzbUr%KZ5y';;t,=C [(BPӟF&Mn؎qbME~cPb~a6 x!d0y2m[s$SE& FZ WiH %+0,PH 8C!$Ot:h7V|$VaB?guV^r @xuH4Q tzXD2!Q-xX0;|c[y͛b,eQp!@&2(jډs2u~ ~QCԘzF)Rxs?3qҕ~?(T;>{;Š$XQfSez^$  JA bJ7 -sX.䍲O PeaD'tqm5Ћ6`AME>F\P8 OxBhaFRa1&d>X#yU]9چ“M(Oʂx)J4x("R< ;--XRZ*p)gtm#Lp?:ݔ<'q#<VilO`bpvq%>(ʪR8Pm{i15nזl{"KZx,J,dsa/xRKiz)N;IyPM.DXx:'((CGIZ+[>'E=86*{qa Hd5HYRPZa(u#Jv]vY7~3 %>gqQ6)aIy(iG[5(9&˼; IҶ!7 |yd2? +_uZu9έg)k< bu$bJ6` 6Ͳ"Xbc{ Xbfq1=a-au8P\v}9!?!ߙPiҡx!?OoZuQY鎒##a7vO}j;֊|thmLa,m.նc!.5͡( eke% ~ _XZmǍ|Fg1Xs9yS\twKXb֗od["YI6OBaSx&FSG4oLf()e{H~66n!Ruųy}U۽#MH3Xkt/˧Xn{L2mJ2Bl7C޼e,=ۮ3s$L6݋~sD!4E !GҚm AV'Xj7ƿxvzD6MJ;}ym/I )ёO H@J&뮻֧yi X =#OfĈ+ /xA%!b2N(O H`BYDmGCcQu6΍m0fȯ$2`܄@ɘƎP1&):aBGVIKǘtUʐv-Џ;zACX&AM+ e,*Q$%JJC"$!aOQD`UTD ,g1[)px<餓?^@J JaB`U=G?B{f> (e%B ѡE ♅KkPf^KXiaZ?cU8 3@K(̌+b*nx`PDsc<XLQ]v٥poK;uGiEp'l'xP6X*{PsmË$OW ngO|Olg;^Ʊ|f,6$N}ϰ fbO'|7N""4B\GG_NU{t:)I}^jx}rAۘVÃp$2 @߅]{:btF5K7.zVLVMp=ϨFCtLΗ c8uS7$m xcic!~x<0PA7Kz/sZS'66ѫݴ#=܃{,xr.sEx -bcxW{Q$ LCxg^36ڨ/Lw$ƳLc8=m&q[3N>7q.("MA`n[UzUGЁa{c f.i$He(8L\Zv SĂ;}/(՚k'#Pr@y-2[M& #yD>>Q&L`sZ p 넍78 (5P,cL,r}4C =ba}5T?c0Bx9GFNJҶ۵yjXg(;WIG0.& #. Lq}k+//ܣa!Vsp.0DK}m2BiNZKߨWqɻ'1 Q&aGu,x=S~_ma;&/㝄vױ/Wnl/>Hi7}''2yBZӞ{ggyxӷ`GL;d^\ ~G^$  dJ)x2(N> (ʰ51[A'c0Ƃa'oY% `lAezypwoYF ]Rbx1cX'~RXɓqz{ߛ1$<( /mB92 a'bccdGI}'%_s2d(N G;d1 SeE8ƂDs#f(u @PP-pUY|ǀȋ_ҁ#>q۠mi@ 9utNt>Ykiщab$JQO.`L@QIJ R yN ,g/(رĀq(ԕkEZM'㺒.nt('%tG*T,1pa8Af*"8w%)e1XbjnR[VB`9#&m9)kee~ ⥥M 3,qIyҦȟ,{* ©^n^ezf*gX' H@P?>CKXFOQ$M 0~ǻ{RlB@>)u1 !/6EOŦ2f'1k?VF*4^?.Y϶2{ğDѼOG{?K@$  H`rwN(\M$CI*9˃ģJ@$#|J|Ն/!'/N`/JOYoLdϋ[%  H@$ IC>K1;3s(mfUS?q( H@X:5@rembO6hF"eQGUi"H@$  H@H6`۞,V`hrnmu1vqy=$ LhdQgei-(YEgralXfX|͗=ʒ`Q(&VniuoIA$0?WI@1Gf. H`zTO%K@$  H@+~== H`Pj/'.%3[3+& H@$  H@$  H@@"ߛ@$  H@$  H@$0Tűj$  H@$  H@$ $  H@$  H@$ &"/U$  H@$  H@$  $  H@$  H@$  03|q$  H@$  H@$  H@E$  H@$  H@$  H` ȟc$  H@$  H@$  H@*$  H@$  H@$  H@3L@E _& H@$  H@$  H@P=  H@$  H@$  H@a*gX5 H@$  H@$  H@| H@$  H@$  H@ P?ǪI@$  H@$  H@T{H@$  H@$  H@f8VM$  H@$  H@$"{@$  H@$  H@$0Tűj$  H@$  H@$ 5o \rɪ8OOR$  H@Xz_~#J@ O:b  H@AL$  H@$  H@$ָ]cMnr%;$  H@VK/4Zk:Nس$JD>i\pOSs@@9HVQ$  H@$  H@V/{$  H@$  H@$0TE$  H@$  H@$z _3$  H@$  H@$ 9 ".U$  H@$  H@$ K@E$  H@$  H@$  sp$  H@$  H@$  ^*W%  H@$  H@$  H`ȟd%  H@$  H@$  H`Pzg. H@$  H@$  H@s@@E\$( H@$  H@$  H@{=s H@$  H@$  H@*"YE H@$  H@$  H@XTkK@$  H@$  H@P?*J@$  H@$  H@%"^{\$  H@$  H@怀9HVQ$  H@$  H@V/5=o~՗g?YkXcju֩6xj 7,3K@$  H@$  H@VG;obߥ^ZmV+ۂ$  H@$  H@$  H@H`dE>~Ur?ꬳe72,f$  H@$  H@$ y'0r| (u{ħ,&(28F? H@$  H@$  H@*$0E>1,'-U~c[!piU^xau;߹z>?Qqw޹n7r-du'>Q{k]ᆱ=K N9\?u{eՋ^v w].g8+ H@$  H`rFV¶i;(3іfoT'袋&YY>6+~T|u]oIo}[~&'/ /ȟ;_W?-;l0PWZ}6hjm]{WiO{Zuk]k.LKS4cP\oV1уwq{%0>OW'>yz`#+> >VY`Gz+^Q^]s C9zS27uOϿ/p:׹ΒU?ig?;VU>wɎz _XwƦ%=׀k\K~Ao|z 7>AM4 ?Ou]mQعY& d vᖁ,pR$,?gäm 1ԧ>zK^  㨣:!}7]S+MozS7Xm3ǐK/ny[Fm(zOs[{sAq}37:ͫuU7`@kfK)묳N@1[/.ZkUmݒ?>d;cl׿^ٿ rw<hrs^l\pf֦$  /l!<|+s<֕Hw]vjX̡W%|̫{޳lӱvN;H@&Mp}.v6gr( F*&k "կ*&BnzӛV("opdC=yO~O^?N8w}{]w5aɷvl~vN;&JӟuFGJTfYx+^L:w 1/XM?"UzR׾AOC7d1cJ5!_,:Ը?s=WN'6,X ,+*D63mK" .z{$^җX{^;C`$@oqGi}yk^CF:Ѓ|gTwcW0@2N(O ; XN wp;/~z6kh\x)R;YZoxZ=q"o'y'f+x\rɢ%1DD Z A2я~  @(O;\2a7-( α&)*'IGYFͳX޷ oxüd7njfweU'7F}9 {߾"LF9{H&GP=_h!8a(׾jvˋruaݏu"̰ё~}]hRXX{ֳUwz}-nq0{#QEs q{50#M ;QzTu[:ᅌr;`ՁЉs0Mqee!Yf71$ %QXCk=ܶ" o}♰gr õMFo_׿~3KJ88ŶnHC(5 kgp׽ul6}vH[3u#vu߼݁=\)7DiqOQ?"})UD]W{.??[/q>|3BY{0v=/%J]h '6J+ίpf;p;kHe!~mEnm330}z뭗=4ja>yn'#5^呾vӼB۱8h;\oXwxhA˶|n$  H`x+0WSF5Y/nt7MyF*/-oZR2OwI.fwfIYG?zv~$ry׺ֵ:_/ҥƸPi.ؗ\:I%X'M,؟f;iQD7)G[o5֨s!/bNKe4IHZNmA!Կ+P')$El7uZ`'tR'=:IyԚ&MtpV'uruίo߹|}NǎOX:Nӗ8GQ&RNΛbS E¬^Z4Q^1M,ʓm7`E OxrX,7Gi퍺Գ\:ɍ,#)sϸìNu/Ii$rs';j\:-\=/ɯNR {>ewMINRJVi§u~jhˉz<^\_~xW^gm ҋF'M,ց*2}!^J AR;)r@lZn-IFAtafKc y\`a޷KCf§w})jx%`e2Hϝ;9˽}{93sf>3z?O)ХDiS./Գ\{lŲDAAK&>"BDC-`ȶ§ҺRFd.=WJQ%hhyQ|DJʦkR,lݚ# Fi1((9߼yZDA4~_(es/l AwksnPD‰skMBw\pAl)_Sþ]c#E.x0zkbgzXF-]8fǜ?KDWug< U(L*K7QB\{?5g"zHJ,]ʇ͎3\g\ԋu;W"vJQ7Mkkl'u [Вڎ(k ,ra'2|Im ǜ}b8Fpo#0dk=VQ"1ҙ۠mL^W;=!xyYK@$08jԺy ˴ۊ:@zm F~J@Ks5z{qw2x.4iI4Цt3BK } Z"܈{Dy,-Al?ț_mR#ZЬЈ~ ,(C<3D-)ڮzX,Z `i b@#"v-)˔+-;Qp6L9F+_^DH-oG)dDyı<xˆ@((DUr<Q¥##l}bQ,GhiDV[EJW#9ת1OL_v-KqVH8'ڝg"F&j ݹFy'͔ ޜ՞ e=r뷍~!w"UїtLZm'~8kzZ;/jyK`6DfN990@5\(Q-Ss ewj}rGuT*3Ȳu;ٸN 4%0J\ݢM m򥘟#AFh|^({߭@3EP&=]:eȷw#˻lا>n"ԉ8#ѓ4mD'[QvOv|"WX)ԧh'\159:ƻO+ZDY_9#=,C&|U#RB X/ IFoD87rړ;Qə߫]gz-+-!Fo|5Fn$۞<'zX)T'je^ OrD1'Ѯ F.R(LUWiqgGyI|T5z[]vesqՑM3)圏ZbzAr)o1)|5=l4+|OtG;Fuq3Ʊ}`^a AFDTtڇ^'.Vw"맧=\赖HoA+߻$  H`0;5ăq^=9[nRAa*g3!}s/(]mb~'pupbq 2P]M  [geCP7nZ;t$MXΰ6ԦmKrٻŧ,=&??i':67i/l- H@$   ].;M"E+="hw Fq F0iwL'Fc^@a. HMʜΐ/IDp2Z&Qhy1O~ a""btI"<܆iq(Pٲ.(Eٲ~D Y.zD$p]i!wXX`@ꢒ/i\ʁ_SwrӀpГca+˽>M.jrǓ˻U#*ڕc:=,ȅB~e|9裋KgUlCl/²hav-wʼn]SzC LjxZ3k'E b)oN^s5=4ph @"-V禍Zp^4Nlڊvmg:{)A?"붇:qMyQ=E"+iG^۬ALuԤ}S$ !4yg˪;Ȳáb-@[vZqhwxo"tv;h+9@|]~xx7&P5b~4$,Fog8O{i\ ts + oE頋.e{%YIAcƠ8CgX/B[p.wĪ^mJiwJ~}HgqFDUkeσ@G:"yڢ#z6 li1o,@ MMdEO^4C,w!8> Z6g\#y}D3(DϷ3W\qEI_yR*׭ <hdټNK@G H杝%/)H+y.XHӮ^1.pWNo"xqhHCd> UV&u,EՉbvhkÍ?Ү7B -TWd.'qlxfrc7t$ezU{E9R@a<$u^c8ݿ#MMml{/ΰaoFi?쥽9]QGI@$zv'Y8Z}Gy[yul$0©WWgν80Ҽ+ۦE]4>ûG1A2(.d ލLZw{%gy9Iꪫjk'¨[DvZ8/ d ~ 9&`p:{P M## uСNfmmV]Oa ΃zgjZDTpG|98c~4!</1h!vq[o' m4UW5\&WZ6~]c /Y}uIU26N:O@? cLLQfǕy8"8=irkھq5Ү67nRQEym}ҳz|Uݹ G:Qft'Hywyg>pBZ2BLnԑzruߧl1u豃s9)cL?q s/6k{ QlwϦe. H@`vVrk4MozS|M,: B3nFpeN?% %b59kVbGܘ:A~tۥEGHρwڼvYIfK*N;߷i_ӊzu:zYvTr" 7c{Dns2 -NXf6?Qgs{uʅD-rRD{DC rHw9"E Vr;餓RnO?}`>Z':yI@~-X?/is0 <=l+Q l[ACFbRQN8!E#\mƓAڋ;.yFHAOwǸ9Tݺ=ܴm[ou+½lǝ.U;Nx'7O;SrUWMr<ǖ9z gpRNOL͋q"{qqp #FW|hSI5uqr\1O CPw}'tm`pw\ VUEN;)}=^#Wc9& C<04=`ʻH#sbvۘN{8iHQ.3)Wpi'ri{١ gI@$0ɳ?ﲼﭸ⊭T Oͳ g}vAn6i+x6gLfsq3>9Ȳ*$0mBȯX)Ad,Al;;Ǐ  @c^h5уޗh_`(^<p<|;vU9P?,K9gB~ӑ_8u gs2192#ӝr9ێv'q)>[ߛFc26f0>; E`3":E=)i@ D#<#!4!D%J (Q gE]TD=SӃ JZ"2^@OeC7y Q#K6b{VyDuK!ӈ>3#|Ѱ"ڶ;v~ yd?wȝӟt҈kI~;cBpp~MD\"^Wo$ќ\rtz[B\fQuÄ O-"y6|S")rc6@\"*4ÝSܧp/ҶQ)@IDATWm ~v{i/c?%  H@y Q 1DGŊe$jrJ3y'`|wr|l^% !;"pZ<#pw˧Y, DKf6wLދxw"?ɣB_(y̓K 5м⋓Az_&|N=A_ #?CHp. cdG|QG} E;GuPubc !bYMD{N"j QQ5G-vaQc'i8mi7||"`!BaƉƇ.zvjD-AFHb}p<L@\9O@aLҨ!,H T+qTOgJHh#hDd> {@ͷm曓@$mVǝ’ 7 {!#sV MC/Ub?8nD^:dzpq#1d`.]N^mFġ@tƍ* k647c=7\[\K2%ۚcn*νH#qN)pxpqqpű륭%Lh0|g:mǚ HCm'=.pjvۘNgzDs ݯF f{O:jq$  H@b-s4=%y%06 kUibA:>Ez-|/wr'mT$k3,D@Q2B7!hw^3 fy 8s 7ؤ]wݕRHJ0^cA3F>sѰ\mx!H"PΉFƀc؋HF.k'2uI 05iFቀؔ 1"?|}'.ON(^0'R!ѳ*7[G(zz%G9+ 0ks$t6ۮsMSYhze]Nt k⬟m~ H@A%޿x6'ȧ=!_/-Ț<{b,d=1^(IM2 e–tYݬ[[>D3>p4I:1$ d]ĩ@fHީY QvxS ƁaTDAcQݷZ(V"X^ :Rpc9ÇmNDmL(3=^A~n$ vۑq:6:1A}de=``@|}X{r3KtMR^V6 .M<7[x"Z ˻'e@lAݽ.Ez%  H@$03x$*{i?3[9}kW~sn">[w]k$  H)#}N{.rAM뷜$  H@$  H)RlFYۛ@ /0^oG}P$ kA #]iV1O H@$  H@XveSn{Ʋ@;Ɩ[ێ8sX3AuH@JvaUuf2v ?3L A$  ;sv$ 9#~K`t ?-$0 sz?.-{ֳUI@$  H@$0<Kk$  H@$  H@$  BБZ$  H@$  H@$  H`xҚ$  H@$  H@$  H@C'?tV( H@$  H@$  H@ᱴ& H@$  H@$  H@ (J@$  H@$  H@G@!x,I$  H@$  H@$0t CGj$  H@$  H@$ PKk$  H@$  H@$  BБZ$  H@$  H@$  H`xҚ$  H@$  H@$  H@C'?tV( H@$  H@$  H@ᱴ& H@$  H@$  H@ (J@$  H@$  H@G@!x,I$  H@$  H@$0t CGj$  H@$  H@$ PKk$  H@$  H@$  BБZ$  H@$  H@$  H`xҚ$  H@$  H@$  H@C'M74JG{g7m$  H@ƀ?{.H@@zR% "`Dlw$  H@$  H@$ XnEb-6ww-$  H@Fޛks$  H?Ѿ'ϥ$ 0"LQ$  H@$  H@$04 CCiE$  H@$  H@$ P>Sk$  H@$  H@$  BPZ$  H@$  H@$  H`%  H@$  H@$  H@C#?4V$ H@$  H@$  H@>3F H@$  H@$  H@( I@$  H@$  H@O@!LQ$  H@$  H@$04 CCiE$  H@$  H@$ P>Sk$  H@$  H@$  BPZ$  H@$  H@$  H`%  H@$  H@$  H@C#?4V$ H@$  H@$  H@>3F H@$  H@$  H@( I@$  H@$  H@O@!LQ$  H@$  H@$04 ZӍ7X|-@-/^*/?P]., H@$  H@$  H@ W^yequ +{k=H$  H@$  H@$0 -"FmTJ#(~_|q{E52 ., H@$  H@$  H@s@9I!/Xħ.EX#$  H@$  H@$  H`>$wD>91"mIT~c['>Qvm _b7ʎ,?TV[mU,CJ_򗋯~",R.NcM4z7[qz_9 H@$  H@[ȏmMS&uԕi'o=Jk=)Rm T?躺?꫋IZuU_?]]+%з?gx7n뭷.sY?^̛7x׻5ݤQ%@/|xCR<񏟱/Yi}<>3X!R\tEg>4+MoG=jJ:Q`98G ̣^ݔg{S6̈́Q9l%  H@_s#u]#8b #Hqzkk .`{~w7WgSp kQ;߉5c؋^wj6麉x+Oœ4D qtڪ=yӲ[*kJ9o}[|-ɍ{[2閍@ -P3i/xz\~uYg&Wu}Mp 6+lr [nt>勦rMÄw9fm6 wr} b&k H@$ z뮻n[$|o7oŶn[o#f ŗeE;e~niq]wU4 /}K)S9DnH 70]7,#Ԥ&(kM"?h6s=;]Xw`뮻nZˈiڼң:E_WG$= nᆔ"nmF=>fr'5Qsf\f7N>N8E$  B_bo~ꫯ^,HC~o?y)OyJJ G>v1w7M Jڝ xI򒗼Q:fTi9N,G0M!4{.iO<FYg6h:.ncGs?n.% H@F>,"iL/kb%%2#ߪ_x^E|'|rKW~#]uUߔ[vmW<(?2[e"Q$5Dj"q=iq'tR.('"&l2)d pf=. ?O;hFک>@`LzP7[yP81I-FH{C8 9^8 ¨+-׼&#=/AZgz,aG}{_2 P/M '1^q.6Ƅ~jhnD\X4 A=<}mZw`!? n\<<3MohXb0;]8^xaZGqhgg>󙩡vN[ɱ/i]zMdKIk1lgtC"edROuj=Du`Dx}E|=<1,M|-ܲ׾k}'JU hm1Rm/lzի5BT<4&tӺ,' H@$0;xg%MZL#gװlLk3ۚ{u){>T309:_D9?%0xLImO_W.79M' ί2Nկ~t{ֳUj/mwdtR38Rb51D|XQ{F?Z#%h#,蔤'BCBDׂ5E!aglUkt|j~6_9@eQ?ۖ/S, N&DyS8S+Ȩmj)e)ˁӼR(}N')2Q^EaaJݥʖI&+ŧ!HJ1l3i~Nev=Q'-I3Ϝ\(/)ĄRk|ٲ((,#)ﲻD)vR ޭeK1=駟>Q:W&JfmRT()+Eljk-[eZ>*OXV &JaU>g:ʜpylSR(=ei~y#lM+,S/E&ULX:`,~iʼ|BOJa>^>NZwO!//d[۝b2&Nt;CUO 2[e,\即]eQGt| /&,-V>`3rIcYPFU7gtlehKZky^OŽؐAgt֛Kم0+rHgsv!'J@}?xxsLS1鹰vJV o22uJϜo,ZceO-i$e LRk=d^cprF:Rr֖r W2h:0;.]S`2 lɫ.Ƙ8cR]N=h?/_F˧eb>9}zZʞ iZ!O6~WN)bҔOrN焇'6%r) 762Û"zSZR 7͋.Mwx.Y.)Mկ~u$ 5"Èb'=//u@ts*Oc?ʇ(m|uz5~Dڲ,ѽDYiXCM]VDT3FF/=aU !p#Zf9 0&7[kXjR {)0yJb%"bTy浪'ZxgɛFWI3=;Z _-BoAqg~ǃ˹@LDÉsll V[ID|mo6!F4^bM7;9J3+E#EZr-)J8Gs& QmL+ͨ9я~4DsblQ6 !=ۂu=B8\10QRktZvts9EVgܠ $zcvyO}SgX=L9$  H@%jr]L̫~S? KY J︋/;Q';z_2ԥI`pmDOvzyrjT\c)hYU#Ufމy-&ݜsRm: b 6UiyyRuv. o~F$UӞ\:t #!Za]v='

s&eq:4XծJl{9SZ;1:7? =iw8ܔIwͨt8G}tzhc<1j4ls\LW+/a CcHNηq"ÇssQRr;4ixnHc9'A1>7KquܕW^:Oq͓v)' 'Y3.O{vRqNn1-Gz^HJ&)vÉ|U0LruuZ?{=,vs k$*o9iYI@$  |@Y*| C̊iy0ZLSM"R5ICOThB\y͍@Y0/eE?ѭj!P ?/? `}uB?B5F2"XqP/_)C P5D"",j3!(|~#X96pT(&i]'"R1Y?_>$y~(Ct/">K}AP5n<8<|hу^38ŪƵDz9p^ƙJVƒ),o휮$  H@hNπ=Hx/ȏOOb(ó/IU^ͼw%b~J`. O=FvjOo41ɥ.7:)!qNF #U.F(Wc~ӣh"8.s(}v DE";8O/fח'p6N{}^ [v0!qby[/N'&B~?\XNf:b&A4*ij]7`]y{t;ve~ uT 8VF ΏKŀEݎ>s.ݓ.Sč%u[r.sDPjymnRe$  H@Ɵ3zKHxfv.x] m.։lj6Eh`‘: mjP휃1=zjE=v1=M{Wy(J+As'OnFh pbC?\ y">b>Qю3 |"mn> <",{Յh Vz򢾙t xɧcYp PaKsۅxΣƩZqo|g0^mJiw?Cԧ0jjA~DL<GQ8$EM a |cZz̫暤dC^‘bp]>Ns}ډ}h׃@z`ED>7n7yT~9>cYpMMAH+ߍ%yq\a5J:(6|Gk{䜎~J@$  >_sMjʛŢ.sLs]퉰] ;х9v&%oΗ$  H@s8[EV)TMCީ}<5Hό(4U ]8IHVf!Rb !H=!/xU/2=i-&1 cv])υ:q"v8|sK"]] AyP[ MH z,D|9jȗ?<4\e^7>Yj&ihfq5פ}TIBjFogx7É'Xg.\uFcݝA+ʄђa!>8ɺfI\5t` -PD L㽓4ټvKFDڍcu6|zx<@9WI-YvsPTwB~[A?ӣXG?u2e}3 F0Br:G^+n\H4,##bfmZ]*C\p#|wNHCT@n'tRA/N? eH!EЇ(L*YX?H<`lJ^gݦ}{ACDƈ 'ETLTtnq|>ѠOI{( y}ݾsSvZqр)5V]{nڶ޺@/DcxyH9W]uUn=xs7@K/4%p6AK,♕<~eI#\`V2 !@4?%0nx'z^~i>zhJ^NID/v10IR\AõނVՂ +Iy&=-ڣ/%Asq "ul#ta:cf~i?>paxРIL'=Awy;3 e#N*#"19Ҿ)X7<$f4AT.)cA~>az鼯I` лwMz=I2= azCB77Eoo/g9^2] p5P\gyf hd00xg=/x?! ֡v: zm@CHp.rWulz~:_gB>"v (~7娃N,֑~8 9#GlHt"/Ia:9pf+.8 }<|AOyXY@H&J2]0˃x(q АP#ҰO@)d"7 %l 0N W"1`c "ʱ,11QR.n< hhGd>iq8p4uv7|s)!~71Bঁ~t⡖ªǞv[9x |}S)s3ުu;8ppNCmGQZ89xs=TA0X1 j(` RѺ?m{K)!u@BGϟ:ӝy$  H@E`-Ho1[+Ϲ!{ΔY` 6]ާrь1$"}]:x>ļ\88=sHcW+gƐ '^^78k /kU!ptit/p}S1{K<ﯬt[Oh&lw՘NP-Dc;#=/7@4:sNՁza)EىTkHC8`{i]Gtרzuo6;l">>%)#!#– څ۾}1FF*vZG8>[44~xFvt"4$)QDN_nhlo:݆M}e'*'|r.h*˺9GmDI*3N;%J@:ϴA8tZ0Ks΅ߩSz9"ӓӭ/341Nߤ‘ݛuϷwC#TEx|N&lҩ $&"2QOE>'!PZh_":GD`}I7?<ݤBq`kY ōc:Z뜭r-9ݹFJ@s%  t"߉d @'>0iD8^DMoWf`!]ţ2]!T! 4%^Iq ̣3zF7q59u$  :$ $ gHZ3RE36==W\ H@itCc0?` R21G. =&q>$  H@$  E'V%8}^xa@pM!DO)2N;T\ziКJ{Sˌw9Qt$  H@$  H`XguҘUm?0hnUZJFKb4a X39쨠è CLS%o H@A:q #h/` VX!CrE%  H@$  H@;=r$  H@$  H@$  H@cD@!" H@$  H@$  H@G@!{$ H@$  H@$  H@cD@!" H@$  H@$  H@G@!{$ H@$  H@$  H@cD@!" H@$  H@$  H@G@!{$ H@$  H@$  H@cD@!" H@$  H@$  H@G@!{$ H@$  H@$  H@cD@!" H@$  H@$  H@G@!{$ H@$  H@$  H@cD@!" H@$  H@$  H@G@!{$ H@$  H@$  H@cD@!" H@$  H@$  H@G@!{$ H@$  H@$  H@cD@!" H@$  H@$  H@G@!{$ H@$  H@$  H@cD@!" H@$  H@$  H@G@!{$ H@$  H@$  H@cD`nivs=g:G$  H@vQ H@UIzd. ȟ{, H@$  H@$  H@s-75z,b/$  H@:{܅^C)gI@\#z\;rnƗ{l3 H@$  H@$  H@ cp H@$  H@$  H@_ {l3 H@$  H@$  H@ cp H@$  H@$  H@_ {l3 H@$  H@$  H@ cp H@$  H@$  H@_ {l3 H@$  H@$  H@ cp H@$  H@$  H@_ {l3 H@$  H@$  H@ cp H@$  H@$  H@_ {l3 H@$  H@$  H@ cp e)&@IDATH@$  H@$  H@_ {l3 H@$  H@$  H@ cp H@$  H@$  H@_ {l3 H@$  H@$  H@ cp H@$  H@$  H@_ {l3 H@$  H@$  H@ 7xc~U /x*/@u$  H@$  H@$  H` $_yu]748wk" H@$  H@$  H@\$зO$~mQJ+x#b~P\|ũE]$  H@$  H@$  u}'җt`pPub$  H@$  H@$ @LjQ'Qao}CDqm/| 7x(;8S][mUK^+?|_.կ,H.Nj;XaZͦuY/~bUW-]wݦYN$  H@$  H` -өcu:iGydׁW[mb5לsrJ'>o>/fm&頃J W裏.n,[lw!+]vF__\veŊ+XziW\qE%_/w? $  H@$ bbb7Y7o.G?Q>Uu{]ЇvN1ȲF #}kN;4>e:KPf. +wuG H  ,c,{ﴞg?>3묮C).3LuCI@$  ![o8 zu]&l2qߤGމ0ts=7pC9Ȳu9Mss)>wyg|Ž[򑓊 줊!9Jo[ < KfTOSr.B`MڱW_}G!H;WBK/\x_p )E5 :z|$_WJ ?|ֶc&Wl;1]$  H@z'p%[lE;,8Z%O~Sd13Θe[+8tm6i_o|c d@xk^3i oOz;Oǂ@I~Q/_SH$BRj?qR2]w]AC/yKc^tE8N2e 'tN<ְ5'_*&x܌A61Ⱥ?E`~f}z%  H@$0?LN7ͩw'?E/zQ~ae[Es/}KSO=5 Q|' d` Ͱn83 #3F%cһhA*^ Gfvi) <zpJƐ[n)pw=?O@%eH Oj19v="p^ K_JʗB{\>Nq8n֓0 -'{Y-?)OyJ?? xw.[n.8jzڋM>,n`,Hk'5G^%X"yhH\d /L"^{<,}s3)Ԩ[n:9kVM#馛gW& }{ _f[9&<O.7ys1䁌zV[! g+z2 _ā֖[nY0K1PuE&w3g[c}_W(nbw/Xc OxBbW]uUmo%o0h{Gi{c,w+RnJ݄b=t}_nH3mYwkqŧ|vj'v$  H@$0kxofmRzr\þoA `p02u" l:7  z(Bk@ C+tnae O}jW_}uV؎8 HٌS5@GЅ^W:.; 6镯|eۧa'gj,`t|j~~/B.?:!tēHKjc \܄r/x"^s57g.&~ԑ/>Ĕ.y1/x¨/8&~"0y ,@(Ѫ3# モl ӭ'7p G?JEc{wEȀD5q$2 !"m؏?瓞>ɣα?7.𰲿ј#s8}UtQO~sAcIp9ӈ2 ضX y^4pTq>GC樣.wtC8Ap3K/ap.1r* + N8b>|rr,c0T?:u& H@$  <6(hżT4dqe*^nh6>ֳRKfJYjd|PyL |+^Q[|iADc;-hT8гgyhg}c[ П<8@hKNQlt?hi!>xL'Qs"zSZFgu@L><`..]v%E#3K B`7˫_$?-yP@lF_r%|<\a1/v- :Ǐ@x>ӓO.c=6ubYDY}aDI衇0d[Ⴣj'XF<=I]!DÌ23:h*~D|ezh]rJM01CPDM~7o޼('ZB9NDn">!|dr-ѽ-h3l?^Cj hWs"A_O<{\1FDO.v wsA >PqX<&Ux)mڭq18h܎8∴΅^7ٺ踰㡅KÄ 6/HǓv#B1N҅'Gd.pX"'aow, Ѐ8 -N/l-B9pHGCCM/F#cHűȍm7~xiHfވFF:]K'xBP-&2# 0"7cNηv`O|;p st37Nև#:0t#:1zI|;="h⡞ko8Bm5m',d H@$  H` wɢLk,u) L?Rb!x/S"zCL'ʝ[Dp<#b M?tB N'Z#B~'< %Q0#A:0IAD2^fSYHoNbzӛ붝 2 9HnL#R# qђ:\ɩ@Kd} 4,@Ab~jOiò8MxJD;E[@"Vs<;lD:  QMDw۞R]uօS:FCme^IKB$r|jkHu]qѰXsa:+ғ^z)EŀS ;g~@#4YU>O''AՉbvA$.,u#|ܤFYg?'[mUPma{:OeB??}(j9l!b0=^]1 q1u cR<Օn8 Fu-/ H@$  @}G`뮻2Dxa ˶*$0ŪvRP,RR36_|vd ʝHNHɅndTՍ@H=F~t[4H%LuE!TB~(;LjÈ^X/ިj=3J:lD|o@4o}jq!;#OR w\YG=:C:u]6۬%#Ӡ1r2x c p;S"^>ihAbqM99Vݗ4%8U^Ucp4q}pb2f:/B>H-fv6JDmt$  H@$0лUalmm>6 #ea,u) L/ CˮZucV-Eij\p} '#=NRNBhP- 8߰NyŃ|:c5Ji\x$O Q"eKy&m:Q{:y&͘xωhGH}MZB"ǖ[n9)="m٦5)"2]e(Di)bHI'T ȁO?=1\Xxhj~# )|9ytCzhPf" /]0RzA.knţN8!P[x4 nMwUW]5w Ҁ;sצ>*ǗAT?$ i#B~ ;'ƠU-40^smah5K-TZhɃzwit_tE{LQ%矟"#L`~xqyt6\\tC Dٓ{ 1IZ tCU;co9q|Yf|G$;6G?SS VYe:l+!noeyr!|3VK/]DjPpL}O$"0"BQOLinH#DyO.2,qD OeOD<A#L _Ȥâq^L Ү\>F:y@X\wy#6m7:f8Iߪc=:(;lpHU-yzT$  H@p Ԝ$ŚN9Qǡ#0dټK@Ck}eڙ{g/XI(P*Bi!KYJeMEDdR ٷ dVBٲ'Wy{~g3s̽ulY̜||I`;X܆h;dЗn欝RO=Ԅބ!3/E<ߡ^|9 ;zlh.UF=GE- A8(اMp&z_QjGTwpDwxy[꠮H;m׈M74, G%HoL0$B+2 *3Nm֙7/' $#R?,a'>J@$  H@뮻:W㞩X+6܃pukqQeuV{@o cQBqYDp"rhhHw>C'=O4ā@PfXo=Q~Ţ*W_D2htBHN,!륾=KClɵva`ݩHUN m,N"t2"(&ţ5@1`4+ Bl?/vr={c%:Np nOg\HՂϵ@tx(w< x<a_wj8!pAލDgH7}( CXr~yx͗$3*" >CJ@ӑϽ Z~z7x㶳PAY IJ^i9}$ &Ɣv!-X /m6/@8vM$  H@$  H@$9  H@$  H@$  H@` |p$  H@$  H@$  H@!s@$  H@$  H@$05 H@$  H@$  H@B$  H@$  H@$  H` (k$  H@$  H@$ | H@$  H@$  H@Pc$  H@$  H@$  H@u]ӂO<1-ӝ$  H@&SO=5ڢ$  zRۀ$&#f$  H@$  H@$ 0ےK.9NX1`曰6mH$  H@f̘wt;^J@&b|WO&ݔ0"]$  H@$  H@$ K@!{\$  H@$  H@B$( H@$  H@$  H@ӗB=$  H@$  H@$  !8HvQ$  H@$  H@/{s H@$  H@$  H@ Cp$  H@$  H@$  L_ ػ$  H@$  H@$0 E H@$  H@$  H@w%  H@$  H@$  H`(A$  H@$  H@$0} (OcK@$  H@$  H@Pd%  H@$  H@$  H`Pȟ=$  H@$  H@$ ! ?.J@$  H@$  H@%?}{. H@$  H@$  H@C@@!]$  H@$  H@$ K`~w[n%=cwfm4[.-R결$  H@$  H@$  H`*%_q!⯳:ieM}sk1?ntEw^#k$  H@$  H@$  ;sNC_~kԅ#6 I@$  H@$  H@!#ɉkN^o}Sg71=ٱumiEIV2=?H]w]{[o==vڽ$  H@$  H@+Xضn::m{~t|i{1^җNyg.,m=Ic C{:C9$=i}I7_[e!HK,D[^YfkU;N:s6lgdMɝ;5(p_KS4s$  H@###馛nJojs=kZV{W_=:#vA O~z"/~e]TM]] S{wz衇_HsϴNH[ẑ_fe4sLWJ;SnoN˄ /L~59g?/|Lvۥ~8Mf7XG?')Ƣ1կ$  H@@? w}鬳Jhk7mC-sdO|- s9 \O?RK-V[ml:OK.$'hpvׯldzk^ |s u \r|u?õWV. H@J~_#8"moEįk{WyG: +$t)[F{o^Wx饗Nzjҹ瞛?Yo6N9iSO=5#uJZktUWE"wa4l(ntw! (3.I&&׿7"֧n?mx 1ZǞK@$0xo~?OO;,\a|+_,H.裏OϤ/yқo9|}Ї>V]utW)3+y{r<[?q4[]wݕy Hoy[8@pH&^Dp'>YϚi{R~!39f; Peo1#p6q/iL@]F$9'To|yWƟ*G7~BkiiS$ (VŪ";QGSF9BcW\1'?d뭷n luF{>J` pMFFF`YgNRx88|$Iew"xroe/˼ً_"=#'ECX(%YݬH]wq,׿9%:6d4ɋmydjm3l?OӦne1/zc meī㎉K$IW:>y է?ElU} FZ~xyN0ro}plH2\><`29o~s=}p s0/4a ݄/6`Y9 %Q5Xc%u],W|1|IJVԃ=g&?\H/| y\r˫6 CQK}z^X`DjCcc,ȁ\_^8}s#&ܬT?h yKy|M@=\#D8768s]uQ ӌ ?я5GrE1{DeouFQqeu;Rl$  H@@{™ַrJU$1Cħ "qOAlXQfDwqMBdF^v2~vmY@ CAj}>3r-Y }K,Dvu ]َ{~Y[~hs/ʘĽ>T$I:[枖{bv]ntl#ˢnV,Fk|H#6Ҹ]jN# z4o qm7 ̟5GX~_{68G9昑b4S A5o1곆:'gA`o6lxG oVunU//N:Qiُƅ04rnBLeh8+r# @swݨmQ(^o*\U֘rܬxΎ>w fz8K=Leǰv5/i#d|ki! H~q: <<9ЈiDΎӊAm>kw4f95)n @4RWkַ6ƫK_ȯ~6m~DFpZ󽱞A}a0jF!?ko~5D{sFh7 :X/nZ|Y6A}whaADK&?DXiuXE#3mK9 65Î?Č_b!}^JΔNhdf*I/ѻLhy ;SkɑР_Og.[$*^qב;TȑȵǸ H$`I?(509eaT,hDzG,@ mDgq/:1}٧Y3L V؈6*2`q,F# )> G :oTrcl|KH]ms {̔ڄX>υr;׬5F#O'Fz%|+S͘ /` ^t_I i_{0|uʂ>c|{f;,SdcK/<-08&t1b hpFฃ8JN?H/(uƵ3*륑ƭ8fS7=ǝq*3pyq\7<{*~q1'k6޵T$  H@C{0I"YAnuF]>J`@&<FAay"W]U}ãqގ1>4f7M" )8`7|Nhzw5i2( OeEM1.9Jo[LCH#56۬)\WJ!j4hu=%"q#wܴY% sXqTWb["o=]ӈ4 ,8rk A:Q <0.9 q E6c=/:b;ĺ͊"~l| ?e * hZU!93F0YAyeCAYD/8FfbK#Mep!7_$|rMppE( !VZ'h#"zQďp` @IDAT)Dc|IEf1t'xGVp0!/N,ֹl|#cO#}(nsƆNE|ډ)lop@i1Cᴩ񮥪2' H@$0^7uʎWK`X po6@kGf'W/?ED!zyFPAchSL#܇3^yߢ$D@s-[X#W"`HX[@\tIfmD#/Ǣ$(o:-!SI! B/iLH8łCsߍE:V _뫌~a7+K I\kyVC`GrPci!.r ќW A<Ƀu 8VSAP<^S/S;DF_x,r R$-LBaF?Fߊ+0>/S7Sht9¾C ĝ u%P9]%PAٰy7VK8;^ɑXPs  Q9=8|F8R|m7[|[Z)8VAffC.(?Xp 2ʐsD-,ׅ1R?#U5\3 Ef|담VɊuta uaDgs#nmb; Vce.lvpOG8 #UshdL[ݫ(^B~%'4*|N"COOzW+'0& rSkR2TYQ "j an&!8ƅ߉!MT8TH/ 38_ST{ |"A\3]kטa6tUJk>|!7ΪCyNh!MFG/oeSږX~(߫N꺡O1k}%ND>VLt8/ >s*F~2c`Xct]Jo[͍VAdR8fZZ|k%  H@&@9r5yU();V~&a&LbZnڸoe;bDcDG0xmsJ(ZA[K#sC4#ˢ9o,#s}oU􃔯=rőR6+>R/B>ZB9lqv+Kb.cy`"G/=hoUDZ4DV"r,NŠUf]L_Qu xR\E7WIM>#_:!8yB' Z(?k'ZC̠G2bڢv%uJoʏc^|0Q rsqU~|R;fĹB=ݜ/K-fwn8,Z A1:~:;ZEǔ@c3Iĸ@jjaq#'9}яGfDBbXc@78kIXwM7-y\ی9^v;fA H@$ 4"VXDc1{>^s)u(NܯLrC+}͡]{:-#";1R^8(e7f6Y v#P3"[[lt}8KmRR=S F)m<;U݊qv#U b"X ND?F~0D3RAUCT&2hŨOg]H93ܣ>{! J,j#Ξ/J+Mb~@@yA!`Zb'cfL}S=oR.;Cr:R>F})/z5a')Sؿv,m8pOH $:<":9zINjFM ,Lͫ*b-@趫dFNkV$  HB~<[^hu2Rx};B~&1},֬H:iji Q=tTZd(q߉2pNZ)>V/ȘD^x kCpX`E Y,g. (ěr5=P~ Р駟l=fIA>w6FdnCM\rɨO+˨B" Ǐ3U-bmx㭌 q1urs5&B1m eN{)Vrضn;3gS8Z/+ǻ> pv6uw;mO;V%jx錪s9(MaJ qtA~kxQ齰:eT>/`,Ma1sHj*nsf0uQ3g%x3_mr}1\e\\EkZ*$  H@ 53zIef~A{94_󻾘Nf> 8} ͅԧUFxhm!Vi?qONxBG)uFGzn4ؘMPކ{R4H 584)4IrH1x:ϣhN]T)Uc^'8?яf[l1Dun${N+BDoRGB"7nF0cL16@$CE._@;Q|Nukc!VN;kqG8_F\Ьe-R0y0OEދ{#?#9igȎg^,jRFD59q0pM!UۧvZFmvyL~r)sGmf8cF|7>G~ÌYŅO98r|\[]qlê`?|:슢3)wxqi5C%fP7 sd$( ƍcW<ݐ((nc׵IIFڠ.^,:o*;%VXaf}Ƹvx<6Y'h$  H@Cߦ~9X*[C>{l]v٥X4);"_H`H GZke\CxȢx !{N4>^ݹ&=O͹qz|6V?eETuШRkϻiFzmQg'+Gor I-+t \Dr& .m-L~xOAƯb@.p"a؈fc=-2iv˯8,@8e[D3uA({Ҿ 4  B܌m6x G-A‹8Ǡ|s6a`.f ,\~"D;w%1Cg!rҕF=Ljk% QtX=(:95+ΔV.j8e)K<ǡɯ<5CZ o|B`ULDp̹։1#h|nq0s>V~'o88'&5]6kq~Pa8 8?` /-71xe:$  H@'@:bzH3v1<>ňzD=7#P,Nb=>8:63Q}K/Tܫr } ({K4bʬvFl?餓F@~1R8$`WDz7s?fu7g28Z c7qKf :6dؿvw-䇷⢋.AF[mCLwLMG 3!G 0"/???X}&t\Kі$  H@%U~ۗոg*u.{-b ^Z\[<ޞg ;{G0}4 #Jv4_ʑhKd(@W%*lFzrhTG ZCӌt9m5 z^pqOOʺe#KCk>CA|!X#5Nj g n,CᢘlCTd[dwv2A霸Xp t" "QHۢgobb @t3 06<Mȏs5L"Iþt͍Gz뎻 OhαNDv")Dsw˂X9okhgچ4D3#p$ YNeXugm]Mʁoȵ5I@}wM#R.8`99>~\H`([k\%  A X^i!b,SvbAՓ?瞞{ls|Y$  ({H@quOا~zN[nlbZ`Vkr2kZ61`+$ [I /2|"9x&=inp & H@$  H@hg4rsLѵ + =ܼk+J@d`VBhgi C?2,oAHw!ws H@$  H@t$KgֲNFp!­Z-}:uYV ݲ ? 2E瞼7u깞i;' H@J:$  LSLj$`D~L /c/xg}TaY H@$  H@$PJ[X$  H@$  H@$ P+^+$  H@$  H@$  #_%  H@$  H@$  H@}%WV. H@$  H@$  H@G@!?KK@$  H@$  H@J@!x\$  H@$  H@$PB~=~$  H@$  H@$  B~_Z$  H@$  H@$  Hz,- H@$  H@$  H@+r H@$  H@$  H@@= YZ$  H@$  H@$W }k$  H@$  H@$ z$  H@$  H@$  H%  H@$  H@$  H@(gi H@$  H@$  H@@_ (K@$  H@$  H@Pȯ$  H@$  H@$ P+^+$  H@$  H@$  #_%  H@$  H@$  H@}%0]w'xbPb?$  H@$ )F੧b{H@ԓ<$ A!`D ! H@$  H@$  H@ 0ےK.Yy+f7|Sg H@$  H` ̘1#c H@ ՓzZ$ ȯ$  H@$  H@$  H@}#7V, H@$  H@$  H@O@!>Ck$  H@$  H@$  B~Z$  H@$  H@$  H> A$  H@$  H@$7 }Ck$  H@$  H@$ 3 H@$  H@$  H@@( K@$  H@$  H@Pȯ$  H@$  H@$  H@}#7V, H@$  H@$  H@O@!>Ck$  H@$  H@$  B~Z$  H@$  H@$  H> A$  H@$  H@$7 }Ck$  H@$  H@$ 3 H@$  H@$  H@@( K@$  H@$  H@Pȯ$  H@$  H@$  H@}#0[ݚt-{,Ul͖r˥ZV]$  H@$  H@$  L+"]=#G3fHj" H@$  H@$  H@0Z'?DuY'-}n-?mݖ.\kd~-$  H@$  H@$ a'u|`/|mpPubF~? H@$  H@$  H@4$uD>91"{mIT~o83ߟ7u]';3x 70-=JKs=wz뭧NW%n4|O}S[$  H@$  H@@caۺt:uFU {\sM3Q;}g]v٥Mj~:s1/}鄈gqFo3!Oo u3rHz>E pi%hӥ^Yfk/9=IlI.u]Cc=s̑o4Oӡ733Ė\rɮZP$  H@SH馛o~sOk~>UhWN٩r,  ?L\[nemOA] SE_w+lFyO?{mݶt d̂_fe,O_Wiv-“r /L~sO=ty%fߓ/uSN9%=CiW8!{1cFZhsf\/~Yd˶S@!J=f5H/ǭ !#2w׿ܣO|338?O&Xe?V[mmOK.$5\~y(%әVZ)G> oxCS 3$86kvgy$  H@o}+h+|- +g>y]*o~3 Y2jp9VBSO=5V\qŞ#o{o,#{7??֦٭ޚ㎜"d饗>)  0 .(5ω4!P~mom된3%  H@&я~4?i7~ߦ#8Y+_ʄ8O#3i{GӉ'8j}"!'HKZrftdd] z)?9'?I_rVWUYK6=`<~x*6|N!9I煣/mCd(` lyxrLxǭj8ҟ|r,=w*72ΰ#ȏ~x@8S=$  H@yQ"~92'mgq6AUs9'򕯌CQv#{Y'/>p8 d` Ͱ?tIY5 ]p''Rtb8 X7QO,xJ=}$;Guk"*^V}ߘ9$v2RP^}{YK3LޜF{]w]U;Lo}N3󒗼$"Zu/7ߜS ~m棚/^6,_8[}cv<)}h)iqeߗw+Og"hƳN%-<w!΅uŲ<' $  H@#9Lz]za?яՠmجΚ!5m")u(a'}(g2ehܓ% aL.hұFUW]F؎EylF7(zk ^ CB =a@Z|;>? @,)okUn /*aa3<鈴L+&,ȗ0CQe 9\sM˙ 2[n=X6>zdS.^E>آ/^0.*+b, "xFΌhvL%DXgZO3$g?Y#/m7;(F$Ln#x'exBEV%11p@`α G~nmph쮻UG.8pM8801⠁?z0_z=V4> Я%XbT]_<8896Gy䨲{|ax127tS`8V"-~9_| K5ΔE]4ޞ鱛cqg6qLi},w. A$  H@#uY'ݦhŬC0Y%uʖÃnܻS3Ϡukۢӕ#Ub##Xr"3-'cS4> s\(uN8!B?CㆲL)b`@E C _b!} NnNff* ?Yԏ)YDn0c}w&?">234Ӛ9@ 7ދ(L5{g~<O _Br3;O ?wi4nW> #N3^{m `N>;/Zl ΓęhSD|)Cc_jqtxs*DS+_Cu%6my?Vw,G H@$  LbW9(ϋ)8x#N٨G HnG[{?*HVѲC,/'ZB?xF]hԇF|8P8Dr_Ѓ?F`#/[yG,U?ݒa9 G+#{D_":ѓ q# sq(].EDGcXNHiӪ  !&"]:(IZ"-) L9"G"؉F(iR b72\DezF>Y aq@ZN '>,B9pHG@,D09 XHqsYgǑHjox7cFoYll~ӥH! {Pޮ+k/+ F#O'ppuc'8tpLq>q8LpP*!kFxA8vB@g&_Ow7dS쌢b#?}. H@$  tO`bp1Dx/:e.%  78 2"ݹGW նO;ABgF}o}[oz hmhzwphhZcG Q0#{Afqa،#\@5rup]\E?!WiuBԍ^fњ(؆G.Zr3]*o[Dև_98 3 ѿ*sdzCYUSrk tuVD2M `f(nLm" E?!'rD`UhoHuxWMXg!Dbp\G^وDħ<e醐UC+o_~3X֭# s +Q? |r?/? 8;et\x QP>r`aYI@$  H@#Pw}X-);V~& @T!cFpi;/N &ॗ^L P/IMqcI٪`A]vG9R6 vFoAD; M;%#(U=nq#nɍ8YFX9UtV RǻXj q #. bjf20{,iLU'Nx߷rDExql#{3Rଊ>d_(NPv/5R#̢`\"NkDz>V3%  H@$>rj;QUl=tK H./[U'7iHk܎B>:$zFhd@9@F6',FaH29YYqU <pqu!L  Hqxbڎ;?C袋қ\HOTM/^>b3p!QL[n{D ^|˟Y@ m_2I>t;۾/Ȟgo`k*#ҸpPϮ$vaYtg1XH M0mXxo hب*0 AU^DT0c!.2 *[qĢǯv6[dY4V7߬Gt %~HG2/:s.Fǚecl5%Xv886L/b}. H@$  O!f7",m&͊Ho lc0RfVl$_!V&%}{j1ߟgy=L{1~ `* TUQ'HViahKhu-p{љ#6ȁ%6}nܜlGZ>B,H1Qxv8}_R`LCzP&"ڞ{H'Rɰ*?-<_#9H6c <"ºݍ 8pMPޗVm3mFc]kUZK˛mYƺN;iYf3b7o:5q8bFC|Xv5K4/ H@$ C~pw Ha}̑_2KhSvTEF 50h N xWz-FڣyV׽.#4K90 0TGlBl-gs~XؾUtQ)J$n/:!} "[ne>/̽މ|oguV&}7Emҁ8㌜, *ApM=HB6iu0DQ =؜2[.V O݈ۓm8*X{GXAH-g#' DFDh y9 l6D򓋌K):)g[~Xž/aff0#/?gĬV5 ڮe¹(88\g݅暫.chf`b;5ǀs\Ye75C"fk H@$  H=/}1%x s15(CG`X+SX%  Rk}3E{䋏u]fSTMB=RD>k.^|9=Mt΅*ƣH6h8 A>ul2u6:y|DE좋.(N/oK4@'zA4+3 5TJ9goE%xc X;)=39TDAS)^8HNPzWQek D* Dcq`A<xb{aSI^A"ɵ]o׋CSb! eҾS I@%-9I@l }|8NyU!w,{j u; &l$  H@w% M@!j_;}vPG[3X>^rkO,K[$  H@$  H@$ >`[#_}}hap$-瞛s\s5{z^J@$  H@$  H@$Ke1ldd$]kZXB~z$  H@$  H@$ Q[ltg=}eS K@$  H@$  H@Pȯ$  H@$  H@$  H@}#7V, H@$  H@$  H@O@!>Ck$  H@$  H@$  B~Z$  H@$  H@$  H> A$  H@$  H@$7 }Ck$  H@$  H@$ 3 H@$  H@$  H@@( K@$  H@$  H@Pȯ$  H@$  H@$  H@}#7V, H@$  H@$  H@O@!>Ck$  H@$  H@$  B~Z$  H@$  H@$  H> A$  H@$  H@$7 }Ck$  H@$  H@$ 3 H@$  H@$  H@@( K@$  H@$  H@Pȯ$  H@$  H@$  H@}#7V, H@$  H@$  H@O@!>Ck$  H@$  H@$  lwuW*xA}$  H@zj 퍻" H@A@=)H( L6#'ؾ$  H@$  H@$  H` -c|<Ōow=$  H@3rkꗝ$ zb|WO@;$ H@$  H@$  H@9#B H@$  H@$  H@@(5I@$  H@$  H@zN@!HP$  H@$  H@$; ciM$  H@$  H@$ P9R+$  H@$  H@$  B~XZ$  H@$  H@$  H{ %  H@$  H@$  H@#;$ H@$  H@$  H@9#B H@$  H@$  H@@(5I@$  H@$  H@zN@!HP$  H@$  H@$; ciM$  H@$  H@$ P9R+$  H@$  H@$  B~XZ$  H@$  H@$  H{ %  H@$  H@$  H@#;$ H@$  H@$  H@9xw[n%=cwfm4[.-R결$  H@$  H@$  H`*%_q!⯳:ieM}sk1?ntEw^#k$  H@$  H@$  ;sNC_~kԅ#6 I@$  H@$  H@!#ɉkN^o}Sg71=ٱumiEIV2=?H]w]{[oN$  H@$  H@@ZȏmөuFU {_|q=쳧׽u#HZxᅇzמ~t1Ǥ]83e]6x xw}s7XxY!#2|r!HOoj"Xbo=]zieIkfn:z;ߓ/N=t)z('O3fH -аbߌk/",qv liM6$!/Lx< { ׿O|ú { 9眉'tJD6z'%\k'vp6pd%  H@&tGm9ZumJ;s*: +d}>-k #o =yOǹ&?f't[_}_}Z])_Jܐ M;6`g[oMwqGNKK4& 2"MY:~dwQ~$  H@@>я?=oJ_Wfq/y,]GM'x⨙uF{>J` akVxjȺ@E~$/9+ë^%>Y*n?@I~`*#Ѓ>y=yK=&yHC85IL*xrLKv_.lwmZ[lQ"~T/|!?e ao|FۑEkfb{byۚ$  H@pxgF^:*T?g's9o~s|򕯌CJ}"!'@p/=,wyiz2fߟN:Qɚx'WĉU8 >s<O<1Ӧ8%c{3{DyG@%ېQbhd^2s[UtB~(.j!mFXl@x7hQeAZNbfM~xNc2<$E!V[m\rɜn-oyK:'oT`0xޗ{g?itMbs=wvoǘYA^\0{Hfq4q{-α;cR+wկΞBf<|ӟ΃J2Uu]0~yeK3M+ L{|ߞ1le G}t^5yM> >nᆹ?H9W(v𲲐,M<|a1{] /k/|3ys]wuUU;3miVJ/yK2+++o͛o9/Fk;N%E/zQ=_zb_X \-Sb:蠜/׾9zgixabV\w;kEH2G9?ẊƳƨ$  H@~o[V {ܫp?Gen-N٨G ;}CY?㾘ăhDȌ?)}| ];x } iJ"ڥniQZ)-WE$R-Q)!E)%QJs9wr=3gy3g>}xGC\pzꫣA@b}z׻VQ]9]GXci.@[mUh0 3_52|j^>Zj=Pu'&YuH|aum<鈴 v&LM!@"2_7g.&0iG}+B#C} sc".^la%\j_wgy DYDVQx}IN̺LRΰ3$[oMguVjo8D\#̝JwqGxE͍$Ks=a9Ѿ*_с aΉ;}piD:Qm=:^4pTq>GG樣s݌`x!ҿ`cp6l3}B>ܒ:C2 i+|pP>ֈgޛDp C"Љe: tʌР] k:S F=𙡓apcG>򑴈!|/@dMOT|ϱGv6x-s=h]wͿ}sG8gV _S08'QCRd qL|LJ>k.rXaɈl6 184΍4 lol]t\40U#2 A6/.tcK3B1ixKƒC#F8,xƈw bB:0ppyN:!`#ԮJQ$M61XF#yWG DcoW1z#7B.Tt:0bQۜ裏NN~0}_]Sz.T埉Bpx [uUӾF#O7p9a8Q G?r]z8cR X L,{q0sƜնb|/p Xڱӌ4 }G?4a9" uw\rڴJ@$  H@%@0auѳ!EY7UzK,N&ND EO/AK!:EnW"_4=:";C'DS 4Fi!w2ʣQ?3","Cr5L(Gzp]W!d.Gr|1n,c5)7-B\Dͪ@Kd} 9,qOD~:jnLzXqx=aс!VG0|hN;lD: [0:M kQ.at1)-h磌Jg!D|p\G^ՈFg}U#?;,RbUt}aL`u,wDݜl)-51$=c=F$qcc+c=8pQJ4?s$Y\܏8iU$  H@$ ώԖ?kOV{?NVK@#g_؁\bF%4Uf DeNNtHܩ.t2JlH6 'b;F:(n~D3ss<]g=998U#mVAQY$  H@$ "]M41R`lytFq CTʣM]p5d@0YRD].b,'e~B~(s<6͈aDj I$+4&"rC\$mNB_ )cY]0G c\t.{W :$q.ѱ{,aLunOtҨjDEr,gE[OfU!u}BZUцjnuBnP?r~X#7 s^w㻦/o"93 Hɼ`qq >*$  H@"jjgݹ}L<زS[I[ND!!Dy2  jH!Ojw F HkM <icY$tA 9)~OoNmvf Yl#EHLHՀJ/b‰zvyn<*::s7c=RrG5>KVX!#5 鉪V!U 3'Z8@G:"yڢ#=K˪c^gkF?0qnHM[I>:n{_1|:mQ׆pt@ùI*OvJsD""6!BQumu$  H@ "%Yb|,ygݨW H` DAc@{RM]bTOY O:A9yѨ~7pCJú8KmJ9R;A0XPȺ uTxC("Bկ~umKIAd*9]'U i_YiڝB.`F3 Fa9D)?XFܳ{)gёpLcXCGuT_eUR Mm9r#Ӊr^:*7=Խϣ9Ƌ-X]/ᆈOR_U!X7H0"~ ߟ&ofpR?\88<OLN;-5'1R,5m0QMl9 H@$  VDφl[>u:}/ LM붆@`d%!oSCDG.X !?@0g;lnO"7|sz$E]U'Evin'XDA23sIۦnZ{Lg6h$ H>c.l\3Om8V!^Yc8锸[89\p90nMLkLHU.O}M:;Fx܌۩TE'UہSq}r5Oq n%7Ƣ\[8Aa꣺ie%  H@$0 w"X5o6s~mU H`J U|Y&yUWͿ=QDwrDJ.vmZh6s4".$  H@,#@LF"*m% n}&I(HgݨW H`j XMNv3zf1!㎩j57$  H@Exy*e]Zk-b!q<3s+~W$ )#B~l ͎~6A @;~4j"y Vl&_=ҕw^ӹD3lKb =bKs~n߉u╈pe#ʞ&D54  GJz1K-TJX~/Gs_|cꩧ6D'i;x!9i~"ywa?K.dICysZ9шNG'DXVe Ó N6~Xp=Nc:,Xe~Opdϰǹ?JO6IׄGg #Iz U}]yyW\0m6_Nmb"h;wq,D:n }/ H@$  OAa?mSN'19"g0#Pbuz|/ L 빆CLϷBp`nE0W\1/bA.zFބn^A 1s?YvjK.$iH!pҹPgԃ?!8TձɞAPhUNe= ;NmrA]ԉ6ʎ29i /;#%!sҵ(Z~*?s#!]K<:D_`2[j;u@P!&H#FeN>4څK0#k^F+ z^nFG)\oR~^ tAۏ(ɪ&CAt CFH8)aKBցYn\iCGƋ 7ꆇ{:ɎAu_Xd FP{N$q٫n#L:DQӡ !#nÓ\&Gǹv)h@OT">)tFtk8!p~vv#vsn2]q071z롮N888|vyu0Ol& $  H`M~vH@h@dM'x"uǵ^{윔}B H@$  H@$  H@^z۞,撍Yg>C!z+ H@$  H@$  H@,sɞ'ou K@$  H@$  H@'?Ck$  H@$  H@$  L)Ck$  H@$  H@$ ($  H@$  H@$  H@SF@!Z$  H@$  H@$  H 3 H@$  H@$  H@Pȟ2V, H@$  H@$  H@蟀B~ A$  H@$  H@$0e K@$  H@$  H@'?Ck$  H@$  H@$  L)Ck$  H@$  H@$ ($  H@$  H@$  H@SF@!Z$  H@$  H@$  H 3 H@$  H@$  H@Pȟ2V, H@$  H@$  H@蟀B~ A$  H@$  H@$0e K@$  H@$  H@'?Ck$  H@$  H@$  L)Ck$  H@$  H@$ ($  H@$  H@$  H@SF`o}*_Ssl$  H@$0<ho H@IAW H` ?GK@$  H@$  H@:ge#^x@$  H@*w_j?T1$Փ?8$ H@$  H@$  H@8#B H@$  H@$  H@(5I@$  H@$  H@N@!HP$  H@$  H@$08 ciM$  H@$  H@$ P8R+$  H@$  H@$  BXZ$  H@$  H@$  H` %  H@$  H@$  H@#?8$ H@$  H@$  H@8#B H@$  H@$  H@(5I@$  H@$  H@N@!HP$  H@$  H@$08 ciM$  H@$  H@$ P8R+$  H@$  H@$  BXZ$  H@$  H@$  H` %  H@$  H@$  H@#?8$ H@$  H@$  H@8y~qM7կ}U7<,H+.l_u$  H@$  H@$  H`6Kȿꪫ믿~`ps=+\śmE$  H@$  H@$ Q$гO$~lAycb[K.$սB QW$  H@$  H@$ Q's|`zի GuQ'H' H@$  H@$  H@z''>F$:ʏm ~=>OwuW񒗼p c??<յ馛-@굒A_jqu|3vadvs)/}i˙ڤ>8dMZj]~pgvuO}ju$  H@$  H@U= 1mtE2?O|꫋o9 /ˋuYx=ʻVG)cqS%  H@Rw^{xܗqooL5)>O#YwH, tE+_J&"?~_gw_=oF?_ùhJ69%rzI_p?>Eo4"?Ĩ>w󝣺 { 7|\O-".[Zӹ鴭￿ˊ矿Xwu}S6(hfmfLgS{6nx㍧)G$  H@oN8x+_-߿>0N׾VJIYZ%04p Ņ^X o(?m]Z6?'?9?}R_?%)Z_)i!o{R a=ԧdH`Dڵ&G@YB%K.d$cX eIxZ7`B1%ꫧ?.8 Fɸ/ n6t&$~WpR4&/xr`pA1Y(8t+xpndh>&}r-S&aT^&p?.Wqi}:&<-xؿ=أR;K>œ4=yO"[n9JxO_օdz{܄a| vON ^t _zHtÏ4_ȷ01&Ż Zx^|_ϋ3QuYK_JLČ뮻^cI*iUXͱ{$MF~Ŝf q ̵0-~ k;w=mmH Hwc'Ҷ-o%Hpo}[nQM\1dWЮ׮_pz: l^_GQ z׻~]X{w m(M]8,/??[?Ϝ'?jxpoysSMWC,FZb,?UH5ŰSʘ:&[%  H@(76g~3I9J~OLp=fY7UL(wyTg!2#Dw^W_/h-ܒaà}CxnOz x[z饓+7t!Sw9{otnh<'nVɩ(0[٪F?}cTlX/cME-_|o< p-rXmsJUk ROm/ M,'Lߕ7Rkc')2Vk˔̈́KA5-`ƥ0+;}+'ENIʋz|83ǭ7<>kG)§:^b~m}eX2NnZ>7]9nºu J?/P;hm _¸{gT_DWW|(f]~x,?[ou _:Z:L_̪ǞUncX/?JAkx}_77}{܄.x> <<f9PFҎV6?gAW(Sq~+UuZ.9wcsG@9E`ۇ6}h j%)K`,|d Z] /a]!-J1zid OT;C5w$CpfK-0 )c|kR4ѹ׿uQv#OX!O,+;TC6~תM6٤`QDc\K{]>r .)="2xd9E08gЦ-l:ElWD;7te"W!s nݮxO=FqqhCz[2F1p+EHB2I"^FCE_#}V,cD}-3}+OӔdO?mjgMqu$  H@5heDr#MFX?FJ`6@G$sL{Dˣm2ҽaeaUٍʀݤ=,ʔyx$BneWGuy7eu4 c<â1o} -kP-TmӖ(24BQɉIq!!z""3NxD.R!֐N,];L: !?GWaN-EYRaMe! E?ZVzْ1BaeDoQFeuQzR0D<p>X QFeCtBBhDq@JnI<*Z!hEڌ0Rp 鰪Ch{s!eI>qBCC%$ǛFL\B c[zNm~LWǑFB\ձ_\*&fa1tcWǑq|9yh? n I~t9=lGq`O:)8rI5ԫ!s\q<UCpRC(,rs졍 !ù9QGM=RnOnkj89?B9&9?*~TAp(tФ:w1Dc)V_}:asպ[peyyҽqHa87688oqlrg H@$ O"1>"Y, ~֍|l#MPFA3aQgk'0m.HQs4m`dza?h/hDt54oXFhzLHώ: B~'<%]a2&똔y1xsE0,uňfbUYh umGY;(uci CrY'mV-Z" ZOD Ӿ:1 c>k0E`Ĺ@n!>1u;=,2:F/yr9e۽#OGg\#*asADSG?}R |&m "D@?NoPFA3UݹK/n q둀$  H@$ЛxEBg`>34:Ok-51"$xf$x/Nd@Mh5"d`0DVR$Y xiU]taui|WJgM! ~}V%9%=Qr ?}"(g'M!p9\L&O.=n\& H@FˆXĒ9Y7Uy&HYZt{doˠoލ1W H_\G@)ϙ3e]6i;&P3"[xN$CdZAk&2ڙ4! FYW!#N6YBL'U ""`ΤI VjJD疧 QYս3E#C&E$(ULXWe@8ꨣIGNOtN?ё"Qr^>%7=L۽ϣh9Nbڮɖo' N3; /07Q:Y;}d#Dڭf襎|"8G{ M*^}<(v@'R\q铚rM p8<OLQע B#Rt5sqMl9 H@$0B~)E,gݨW vI@E2B~&3w"ꤩɃڕϗ#-Di@'hdd2 Mp5)f;\܍d٠D(A#+u2gA.3 nAqupBŘsDoE/GRs 1":/qA38љp2"GDjpPgYI-іnSV{Hs<*5m[00c9& Aeb:#-nN{s"{dJo")p wD~1P\0miۧ#Dn%7DIF ~IɵNu g:=3✏#6#=hm%b5tLJ # CM?҂_\aY8"?z '$a4; fd3 vB?e^وv&JNAݭKm|SJmlZcvm1D#Wq#z(s)_8>|qq2B.:<6y W.4bp^T_/1 z9y 9ljI\15HlwTs{a⢏X?OVs'F1>3~i㎭jjo$  H@w##*sP8WZE8s̑_uk|բuU (Hk, cw bDMvB~ZU&3# #JzxF:?z ujA<sB:h#,K^,ns6ihh(fm҉G*+ Ip~7=Rw^ӉeŰ[.9|>s @8놇/։W"5({DM4  GJӆ[D% !N/7SOM?lNca;|t\!ۛ!!3,K.jR5y+19F<:y`I#Dy:QGw=u]oSt~Xp=O~5:,"55I"yҗ4y9_cNU0fAˢe>^nOX ־ \Q۰`'Lrp!|sl8֜6y8ewF0r2tS\8@I=cQoɍ1!C. vECCGÈQyfEGy.Fogp\lyBp.(fLD% )6hSn` b߹A&k*<0*}{_uqd+} 7n.?pZq:peT 5Q¶be3*_rp3{6#W<$' 뮻W;nF+s#Ft Q{^Sfrs&0c4H?p:E~c=.W H@$0,6wu<3S>3IsGÛgHЃA{ *$۸x3(z"@<ϳL>\DGz#X͗8y>FtTFvagsoy34*꣍wiF,#44e8Q4=Ӿ]us=o`(X-B!qRchb%8\3mxcF+B6b>bk7 {:񤃢#@i/QNmx"x6ȏs)p1OT">8n '#waIWɇ9.cD~s&h"\rsNuҸIߝοc;# 0k&scy`d#m5`i㘛II(z:N\8梥^d Q)xoXwsͶ{\U:`8맮5, H` CFߕ;"jG+i⍟=?HJ2.}v/_WO/}^׺wkyPYѩ3׉I@$ P +Y@ZTR\2JmX'zq.E(e[\e6 lpA`mv`RI]tEiX]?s0dc'S~~x덛kI@$  H@YV9̼7B1[1*TM)\o} jH@FC#Dn.9l05rØx|}M권$  H@$  H`g?犑 /L)^{BZ$  fG;S:w=M 3o<|G)$  H@$  H@$  <?$  H@$  H@$  f o$  H@$  H@$0G$  H@$  H@$0 (I@$  H@$  H@PCH@$  H@$  H@l&?& H@$  H@$  H@#O@!;  H@$  H@$  H@Bl>$  H@$  H@$  <?$  H@$  H@$  f o$  H@$  H@$0G$  H@$  H@$0 (I@$  H@$  H@oh$  H@$ <] $0ԓB Fϕ#~J@$  H@$  H@HgeɆ7mt8Xxᅛb9 H@$  H@w}ߨ$  H`4D4VJ`.0".eQ$  H@$  H@FB:. H@$  H@$  H@sB\8$  H@$  H@$  ,=t6\$  H@$  H@pG H@$  H@$  H@Y #{l$  H@$  H@$   s($  H@$  H@$0Gp H@$  H@$  H@ Qv%  H@$  H@$  H`d (졳$  H@$  H@$0(υ>J@$  H@$  H@PCg%  H@$  H@$  H`.Pȟ G}$  H@$  H@$ %?ΆK@$  H@$  H@\ ?( H@$  H@$  H@#K@!d $  H@$  H@$ @@!.eQ$  H@$  H@F<~qM7կ}U7<,H+.l_u$  H@$  H@$  H`6Kȿꪫ믿~`ps=+\śmE$  H@$  H@$ Q$гO$~lAycb[K.$սB QW$  H@$  H@$ Q's|`zի GuQ'H' H@$  H@$  H@z''>F$:ʏm ~=>OwuW񒗼p c??<յ馛-@굒A_jqu|3vahw?OqYg7_ /\~ż;m- ?^(^ozӛfn$  H@$  L!ضt:uu6 ۲|@T~PE/ؼ+(nn+o$D/_|=Pq)O{ӦE):蠄}G}t8_mEaK/tknq-\kF-^[G'Z}38o4leI"p Ŏ;8Nȿ;:x^Wli42}4햛$  H@exo۾^{mq뭷SZe7SJ6=s5 H@$0~<7y[nX+#l[׾Ϻy=;H~%Xxޗ"& WRucw$  撐Ƌcկ~B~H7xる{ _.|#/D|t p&ԋ8 ?V8d"U^җYl&`L DMjG?8Ko{ w+N8Vzֳ g<id*ŘO37ҿu[F+BJ-$aR"@dd@ uln%V;{+_vr"q2׿.~| #E6;tⴑ@;2G.Zh>YoelxNaIo}$\T{GG?11k.Ⳑp(xG?jGfH?kSCფ^[pGRLݴϲ$  H@@g֬FwW/}I'wI| eU pϺJ}#&?!rse*F`I5SF*_"q,0fn9w}OZC4D?ӓ_b@O>akBQx_*&@gtR5+  }FH4)@SO-^Wu6Zb&8GMǃIMGfB NbO RM0/?0}(abH&/;x򓟜F<=IJus^19%?1\Xɍ|ԓO9ϲMͷ;QW H@$ #s#IC ,݊h0y chau*Q&v˂s{X'&L+DʓN j&zQKHmݶXzhh菹7W_}u~<3S32ϺIzj'p::n_ez+'o,m:wJ+o.`_)BT8)=m,䒩LӪmaSwWz wzDc=v)72E6RPMe+⍕X?JٸKDǭLJ3Dg>Q Yֈf{キ`"0$hyQ|DJI$"AWVvi:7 3_K#( 6`ߙTDO.Z|C[¢2cp!` ^3>3矟lgDSt"ҟ02?i<YEI|np #=x/("iDO$8☵VߛNm ڜkm!IYzmݖ3#;trͱ~?3p-kx'c}7s+FXp=Gb\oW0ʲ,iayF]k?/{ H@$ '2pd G T-2rRenf;"14`Lm{FW-Aկ.4=}+?Ƴ4d!K lyM#r= DLo} -k`VVhD~n$"atKq3}_]zDЗ)\jѝ"ٗ_\|(EV~H}(xYg㼍L)rq++G[2Svqu9J=]xQҹ-S&CZ_OfnjoJ^)#x,"ioݨ ?y4\jpf뭷NmbNu}dEut?? kOqͷf;جFrlρton^{!QU>*e:Tus><,ϵ4Fv 4tm?g~M2xvg21mJLʠ1:+eJTO>F!|u2wԭia:<͔UlxC^gRv}*Ş}S"~s+b5H&xȉOT/}"f]Y_9#=,?VK DḃP =XOArUxFrEQ9 # _BhQOk]§sp\Q ` UkfFÎqAʴLiq]v{jEhi-cTBX\ϵ<yhW/_c1B~X6ie%  H@f'ّ=̟'~֝nl @[3 kDD>N<49-si4^vthK=h;#x{xfFSs}Sʒ+b o#_D_GAY5u$tb"b΅u`3+}LXȅ]7tn bf!#n9aen"R\0iE |(q5oתFSz'|^:,BMv,>º9:eCJDljlR0F\50)3,[ c(6?$#f_"<4:Yv. yH&&|G"R[/1i w]r^KC!ll?7DŽϽ^s^tE1:%ݾ2R8p"y'T>QXw}vZN$  H@ v8NfR9ϔ`RD_"gnH$#ڋ@ZZ PKo |RF0)IQK[жHiKʜ/|+ NfюB˫+tB~SR}E.PAȡlh?dl 1$#Hė˳xFog85q&<%p8QbHGݪLPu{5"E E^ڍJ:: O[EyX;a|_} ]΅x{d{G-spiu9B +jH=BzMWGLU3^0& Z=~FLfbҺpsddn8ʹ ~MK>>pՂ 7_|j7S`s=1Y#͜d9:rR hz(#o3tL[7~a%  H@fˆXc"27osygݼ>K`6FJ]2Rl~W3'e꫆o mM(o?S=U!SJ  y=ΒF:xIL)z h`uB=#*4G=&D￿mIu{Ҷp 逨Dr)UI|3I#)'ZET&2<<3g-/WUt O"Ɛ0DQmR$ʵ{E@&/?# *'IQJN:vw9KD|:B΋p(=n"s1"tضnD|dqS:CIb 7XR 1"~/?vzpᚠ"} e2wpBMrSs‰Ӕ?~H"_W_ޠ,'~Wizo$  H@ !?^U&1-4nRH` @J"I5O3bkeĩ |nb#򢓑r+oȴW֭)>{@f_Ce}7MdK'V[|Q&0::ÛWg?g ǪΎ;$#yb a&:y,!#ޯ+\餚yPWt- F,u9C@:IpC9$MROD%mdh&gT5\WeB- k_]FICouh##/* 64C ԝwYUekV#qrͱ^gǘavQHN:i>~`~ +c_zw>Y$  H`f 0g#{I˳sn[lE#i|p3m\pA3A+y*~mU \'[ dVҥXMN:c@}C~$('F|W}lLn[5Rꠛ.:NW28$1g&s;a= !1Qglc&l&!~aiWQrAZ.C=׋v>ɷMqB.$R@j"h}ڿ曷&1EDfL"A4~ӦH"~';?B5Zk:zJ?n`djl L 6`7X51501PEn>oC]aO35ݟկvu~7UX3=Ֆ(Pe1غm=B @ _?ŋ)qԏQ?c~M_<@ 4jww=y8!_F߾d*:/[2~XKtHK+vge7Ncc֧u1?bTQ+2vo^AM3R29 lew5M߅ ~lE دwN*t8W#>F^~=er=|p"zѫW( C([.#l2~k`£1-R7uWˣG>~88Fs}kټϞ= \v1WvȭVsKFƥK?C=ʕ+SP20FF Ǐinj{|)7W {wlb}̾[j3;".oy5@.,۠GLvn79]!jiF;$ c_ c_=}o͇~7֞hqI=q\s~{;7o{ @4mQ:ӧS_c$D}[_İ(6=*PC Çm.ִ3xO{Ŋ -VdqyLRPcyPпh+鵋'uGCqbpsjJ-涮$\{T=ԯӴ=5%Ʊk|F~:# gn1Wgeƶ tuea7s㖏pڵOh.Tಗ[htSpQ_1mxڼZea"5N-zڅۗeׯ+kFn4؂r5.AU B~AΓ ׈vQ+[΂F.x~Mұ5re_ݞ_ǵ_ʸatY{m=ndEjn~FS wIT4rȁ]iQpe;m΂@;6XtN,ϾMO'}g>%K<+ Ɩ@3's/i6߻a;‹U|(?#a; @|?1GH@ y@`;^|9M[] PljJhMf_?y" @ @PEo_~T@AҴo߾qw;Q @ @ K \|y۾,~iݛ7o%zK @ @_ \xR9۷˦  @ @ @rj @ @ @{  @ @ @rj @ @ @{  @ @ @rj @ @ @{  @ @ @rj @ @ @{  @ @ @rj @ @ @{  @ @ @rj @ @ @{  @ @ @rj @ @ @{  @ @ @rj @ @ @{  @ @ @rj @ @ @{  @ @ @rJGgz IENDB`mkdocs-material-9.6.4/docs/assets/screenshots/hide-navigation-toc.png000066400000000000000000003526161475306445600257720ustar00rootroot00000000000000PNG  IHDR XlXPLTEGpLAAA?R!!!/>>TTT}Mȟ222WWWQQQbbb\\]666888o~ȩ?n|||,,,𗗗MMMlllΔnnnDDDxxx5GNDV;;;qqqHZAAAM_Rczzzߛ@@@_``Yicszρ@StjzǽڥޙrrrOPP^nATgwŅҗݮDeȶ/W\wo]m6EMxjv{ۄا`l@M|_lrMZVamwԺ4YtRNS  $/=Ba! "#()'%@+&,-.0*2:143I65N7WSU8Y9]Q\dEGFHKLMPR_[bc] I IDATx=VWa8TEzv@ qIxA f4w穧BW~W^!,@X a!,@X *B -@X aa!,@X a@Lj aBX ,@XO-7a!,BX asR2ld aqBI@Mg,&.ϊ)>,^u a!,b&M1XL8^/@X,,,Hf*"/@X aVE,T j aUQgğ,ĩQ/-BX5M?&}f)5}?.@XܰM!$XRhKKɺb7o,_M8.P 4.QQ}',K /bfBXLq *EE! x)qRu!( Q,1K#W3oX"7*|??"=`h18,+M!{tⰴCXQQßXcuF.qbHUAM{@R,>_JdEmR8EBf]Q8FEIP } xG)T]E&-"R L^D"sM"H$!q ȶE4-blWeEϤ` ɵE6-/ouE*t[+Y 2HWE$*A1I8`Fx]",ڟWʊ`U$B0"IE-IftEYV"[57fh"iѻ, TWU* }<$mZTlAUeE*bM1bJlX3#V(Jy܆+YDS(D]"EjݬدXSU,Xx[tӢТX ؏DRڎD^EiZ V+2YUDb` H]i1E͊xT$B$n$"*=â+bEYtP p xtF.mQFӢOY4%]QUM @1͋h[ԤEEYL,b]{ *Y~S${"q_zF0/q;E>eq(zEp\YE)21Ts[E<-:CE)␮+YS%EQK|#(P^"0HEТŰȿg6Yɤ8H\xCWF.:mQ%e, dW"{UK @k)ˋH["V'eDX`HVlWb)=?*;#ؙ[lEzh1XYm'bkXUt",ް N]ݱEYZ,xl+~}>\=w@>\|zNˢݰ߃ } -Re RXȸ!bh',]w j{BW@YYlZDCEbʰX^( Vjy^V~s<̷Onfq԰x3\WX@Mkaѷ+†~fExWy,aQ4(3gʝՔE¢+"נ~<r]:,&®Wjb -eqЂE޼b-,6,E6%efwڮ8Pnӳ,jaQ` &vϚEka슝qfsh@DzZ>|wS@>*NY,f] -|TsдWbkfQ_5[E&TE{Pw/QqSZGJl;mbڎCiIo^NѰt;Bn}]B4&MH1`\7d+=8g 8~69HM-X-^0Z]=O_ b>b!T> uk`x0z,dQd`u]rt+lfR,˓dQH,ƝPZLX%k@`KR"m6C}fL^0yBir'vϔs@f|嘅, fF(C=^oO?,\ -~,Lt#`= <)L7X41b3dQS ~ !WNh:>CYCωC&0q"Y¿d1,")XX6Bfs=|SZl6f)P=YX%7,\1ls7od!lLE[a ss`!4Bi`T d7Ce%KK#t"`QOE+fy5dzzpTXstBT P%X°6,>ѧ,Y)+X|-X(P-^ _,f(1 d1"%qm`Q X̶@`њ,% - E̫[n9, EjVo"XՂJ_9[V X #Y߂+j(ɢZ"_ 56f^ 5`a턲,y#,fdsqB5Ur,dQdQ2}t3T߂ʸjVh«["6CWΖB, !WL FV\X!XUJ\hI% d! Y,F"/XB*Xq#on%kJ緥E,.z g,J͊PE C3da-SwBeBE\VB)۝\qWwm.i淳Py" ,L5>O NIqteQB"Nmvg"u;6y5r/TR2/XXgMP:,wm{/Tq|[d1bՂŗY1XZҮYC(6Φ,^^(5X,JM#b'T]脊wBۛ[{ekߞKBPuK~"olPVs y٬,&0|9 JB  ! ezPV:U`0WP?Xʧ,^i! ňEqoyYݎ;y5pJ0zx/x#O`ڈEq/?b,@`.(n)Cbxa'T~u;[  Zz6 P א%v< eq'z 5ϫ X`{ŽPyX2^pXwB, ,B U}BF yĢXl, ,jb[=)˃4b,"X`EMS ( ϣݡ F `/U,k&fk򉼐mĢtBm;%X9=?8ʇ`:zG8B B巷m! PyЖW#v?c>& X`e7!>}N'?9}zr?i'E}w}Sg?ukߍvY|Ex?ώONo~{$WWC/NvΟMH[`.C`3=vW^ _\.B,lY-d-"{֗m:ze˓t'$K*TޯQ`e4͇һ7[u,Mr\n_zr쐎07Mt ]zT<%-| %`.-s/8 1(nK`gc/J)R$XHyB\hu:t?Xtgjs6=UsDx,t0dBݕ8 6в ø6~@00; ~ _DpV8t>LO| d:h9C2^_E5`q*XP[;E^g2-bY %1Coj9`Tד`!E)"XXc@Byf %b, a'5dl#f,NJ6Q- XE))T<f,y eg ;> A`e'='RH/Ux^gDvb艒8"zyk0}TO> Xl;#HXKm>6,@zl/ <.@+t̒͢0#yE=zj/?!('nT8oP¡Y=Pa0~ToM#֘4at{'ŀ[Ȱp<^ BXK)m£[Sz)ݨR;X\zZ{{EH{XdPLb1 16_]A@RA|G/I}} ,}VH] [SVBDo7$ECo`bq`+jeqr ">\pput~Y~IɭH)4oXqJo3 YkL9ǟ>ZoB[X Bhs@m>o[X }zf2`b7Y,,T+`q'PDX MA,m7قW^(X=XZA}jP.4Xw0Yr3"EA%}WB]R{wo&mkSE6x?w@G1؀G,rzoG"𗠅\eM2Rz2sy4X,s6@BY:蕑SRb,^X|8mn#Xb3 RE  ,.*m8lN]ϦѧבrXt+hd2MHj"EAN#YtN`ۻ1IT+9QG|І,|2D)F)`նk`A',4Ivf(1UE'B!(ހ6X,:[E7+{b-R q#fE5Ӂžlg-%b,ޜ=X`ů.ª#EPyk?~48$b/D>p `3un$E`J (f=*hԣ<0D*7PE ,,z7nVJ᭎=X>_&V@;:atTc5! @qŌ+MD.zj lEۼ<3Yv抏X6&|G^aPb|4ۑ)R;m'T;%w'poޑ,>(կ`  u䡊3Q=r9+GS(֏[ M8K`OhnJJ IDATs,6tAJzfQBh1Řі]w:/뭭8 XbG:`q X?TD@R(QwG !b1RE.+> X\T*`aM9r,ˊe{͋9bfGlYy %ƍ`A:UF呝uyd>\< +( WbM~\yVf28C u } O0ƻ` O%% $ %5պUuNokzዲ,,¯jI ,0AIlFäXp G}>=N@7ȥ4!YFb4  I'v;^H!~ ntVCE{qvCZO ,^eXݖ`A*&l(`1*T#Mf|'o]zyPt8J=\/o5[zpX侫+( lw3%] [gեיǤH9Hy==`v-cHܛ-MLSvb&-Y@ŊjUg|v0$RQ2d2۞HYtԑʃ'fv,Kb7A 7*`6 wl`HknelǜNߢVu79ZXkCpa`aطm&Z 'r H`3R59_)̹e5a7RX4 ת .?ǿvKhtW[b=ԡcd`X_59ŗ_:Xme`Cqe(-]q|\Hn=\S񽚯EoXJH4$XU+P`1 xą/ SeZmawF>IGbMovq!u,*20_ϣo`FWCJNHܧʓ&Q7n0FK}4|U_9><_|aCRR`al.pz&FHaEG9v+`QP2!Zbܔ%r! ra΢Iw/I000^0X4ms))A(Mb`&S ޚmcE+,1Tܹ {ׯ?!X|/X`C-ÂP:%*PJ^&b rs,|Wf!?=`A7<:'12= 8Xl0E_4ߙ$eZeUk˶=  PnjގJENv;}k`F0X`%v ǹc`AM!><.XDm>_@xPq_Yg ?jXX,zxPpmX6LSTKZ,- Qf`!%1dƢϋB~09}m|ʇq0N W#C^ؿbaʐ;FRYH8,WznaKj9,X$7YQ\֒=ćG0'#X`<,XfE!o'XX%JPIW%\)E:X `ѣkfV'e 轏)pW-w59]JDWiYÜ"̾W@"OÑ=AXTiQª83ȳ;Rb\tdx,,/.61V ,6rB=*X`/n#1,NO~MBo'7*lda~`,Eww Y u-iI hԊE3)ĂEy)ø"cqm'']`wt\X9<[B[EPJaGƱ5p KnpbƺJ0vn0SkB"々sX"~09~?5woG,4hrbNJ9A3<ל8w7ݵs`*T!,v\l*[XtT WdJ̘ri2a`XDFwWcC[9ETo:?n#`qn@xBƁRم%ŧxJmB+z1a5E?9MqQXi+ i%&a'X\AQ[=,ȎqSNU I{,88&{fkJBӉGNT,,Mv..caC-Ʈ|Ha<6X(@?yE,y,>^`E,(/o,`Ra̚E rLPhl +aAIXUq GI+`w,ELSM *{M88cw-O~=mkZLI@y2œb| 7~0,b wQ%/AĚAiA)Vo˕,3 /rEgJmUPmXy+E,,ռ)C,>=Q1$嗖LŃ)]Lem) , 1W{+a|Fܔ~ZS @moeGgg^M",fi1 XKwXyE,"#q\QMy/8TO>< כ97j6ő]PXP{,wŖwKivXV ,z\/, "×3+y[Y&)uW϶GTa82]+ƋՍUk:IL-mX+'½SҶW œE#ZTv+ꎌVUr 8gE%/H _!揧l,NN޾CC/:X_*oe9lGrQ@Zy2(ǁE[ALD`>I[X +`}:XtZ)鼝*7MOxun```l Pqd-NV "0Q'},֊7 ^,lƖ`` O8 ܲWb̏A;}xiZÛʣŻ''a#iFC,z`iUE`QuIJ1leLCzYY19 TImhL8X@mXy'ҽd!+mBQrh"HXjKO J+a}Lk{+Y!X<9XdsE2 0YtE4j=iU-X\z~8GU Tl.]^~ FbPz/ ,0q.Mk2CJO:oГ°hg ,.#,ыyy:՞%d~Aaџěl+eV=0ZuYX J/Ϳ)E_a8eU^w2`kb1ﲛVn9BVb,ũk](,Ϭs$6u8aAX5,n pٟro?|DX$QdYpe"uYwivEoⰤVMz yQVEً%V\?먮 ,^.ߡ $bŬ6(,^vc l*9a}4xdtmކOmڽ~3V@?|=Ze0,nenYLG$[/'8n9OYvکrYX>~xR?'\ MlVX$c_?[i ,`VYR{eb" ( ?Ӫd6dp׏g~%r*}uTX ¢_xo!,+ ,fxM1(F\в/cva)oɾxU I-QVK*Sg5@?\ Tn#a.%IoXyV:,\Ξ`UK΍Bd8@Z}Zoݻ",aqE'QU_:}!M ,q ax鰨 \YI187GR,yPqFusg )aQBsO m~v掊|XaaaְnvX2a }"Z+C{dlPXh]p a.e]I]Ipe~>g?W;/W) ZNG7^88 WygʰWa^>,EZD`lTX< ,v5 )WCcsaʖU. EeQ34{Υ?RȤQzAX=ln~˄LXâ'#7‚(E8 ظER<ȗEj/ST-u>HKPHIoas6΄qL+aanb'O#>R:@X`"*JOΕEj‘c)o{g!sfXKN|*=1=V⩽ ,[јEfI[}_=DBQcO?L;]6+=_ɷGjxZXFqWw(>x_L6'0,g'߯$]n2aaō˅Gp"3^B1m3XfyQ&*JP#T 2d֥z+ Pcxz1wnA&AXFbxr\M M IX=&,XX%᳅㽽$, &, ,p , a ,   ,a° +}ɓO= , raqӧO<wB߽ + ‚|y ï Y , B ,tY0^߫;aX܋"Zwiz[Ž0, a@XaAX , X[XՆa ,‚  , a@Xa-aqXWX< ,‚  , , ,‚  ,  , ,‚ ‚  , ,‚ ,XoQTΊuV 7o ? ,~]AX,~͎8;[3Yj.lUWp.%q BHH@ia$8~H>uFӋ&?|>,onB,:ePf!bkbbXXXXX@,X@,X@,X@,X@, @, @, @, cWq>n}M)};̾jrJdǽ>X|򢯛B,-{8)_V,Xǃ# k.+ʯl;w*8 bҜh-J?!s[w7z|3vmkf~Xx>.ܝ.Mp eX@,^ 9m9Uoy֮⍻pX%u#ߗ"!/?R,o F4cDb@, li@=]̇vrq bGvy{G],TR4Y Z=cVD b@, X42bqݪ XF7u~φb,qL3{bҗF{],Yba^YVfٍ[<}eVe,WYXdͫSpWbaqbXXRQjg WX%,ؗS˘ӲI\/ۓ^‚SћWѠqjl3gyX9"澗  G-elP,t+Hxv+_It4=gr픒lal(uE9/[&x?<*F"??Ȓ)A3:Z/yjOe-)1Y=$>qiȣI ǿ=y~̔~ut+TX6mզ'>٣c?E&  IDATr8&Lhtp4ER\wSekwqorZD^f8[um}1 cUsyG{r]angʶ͝UT;hf2<'> ].K::h֎Y1ʮȮ% mܚsjG[U ;Qlg~sjEib{kBXuEY< :y9Ө͊ Zu"qv'%uBSFDbX$̣Wf\,}~#2nL}v:˒ylJHc,fU, }? ݩh 4Ef\RpR \smf2<6C,BTL#yk,bb=^(n~olyǥv5,<[0$&yz a\q6]016Սˍz77(!>Ip uQz̍ ๘Om(NT@8⒩ _|hiKi{5}^Q<;JE'' g]/JFz(O߫͌g%}Z~C,2>}OTM<@7{XT!=& Ip󱥽X#c4$92føZŨMmE,2kGl9g+ZPB,}b峹9X!H8*=; " 2&woX_.k5kj_5;JM cn=4ׇf72c /ݺu8?CX{p&^/=P@{rJ,&O#3 @ݶ<%6a OjS IwDbXj,SbWfFrQ vyHX2E6ɏ BQ/GQZ{.q^IB63Q_uXtMuboQ@N#!b NB[%`U{bO#3}=vkhBMĢٜ2ID,N)[IIECwݘHX@,>*fiW,z2XT[[:S!L&N޹bQjq>h]uAba{V,&ûbѵn>Om+{"$duj,}<XL"idK5Kcy2J1'bjבIuș~k"bXl'rebyłmgP!c+`SE;6Bf&Ód>K,x }&=տĢ+~NK=x d:[Ffw{ o^5d-8 SҨmV~b?iXC!"' EJJe-&mR,wXxuAPdBݭ;ĢxV Wx$7)ĢdQaQdU#>N׃cyINjbatE<\|Rq+^}"[M 0|Ʉ^^..JNAX' -͗і2<{M aX ޺b= {*,}]g8NFͳڰewBX$ѷWVFbE˳a1.3䩛.ba?hldxYw{դ^OŰ :,TEw,y։ aؽ6Qx0kW:xr0YKFWTOj5/·Ea;hoo>|l3bzhƛ7. (jJv^EO]=n/ӆ?2o]b61'Xga?hwdN4oKk8ź~2zsGy٤TU(uO|N8_' ,ŧ"*._0y\(!wuwʧe8&f)WE-Wnj޶$ڃ8a8׷Bq#xM'ZE散f0vwmi\LQ.,7V،¾^GW\Xz<ϼ=/|[OwŰ(wU(.\Jfz݆F#;e8}[/R2+ue>IwYxXqq2E3vo$Y\ܯi a鰈ˁf2^%ɼSr}-u`O OnJ0֎O_uU iv"Eqi対R}u\z"n6kU&ܮa_^o^ϓ+3o'e"\}+zl[Ց_\Ec?3oGU]_(ܤUYvlwG̹'4=M=p/$Yo΄E&auk[?,׷۽uj"]4y<>a!,>d=c+E3"+Qӛ+{ 1Ç帯^EENi-B?ܤ& $fߥQ=U}ζF~y{7/=j?hTn|a-WySFt?c1-+[b7jڛa˞[n' ,̙m<{/ 3n&/3} +2aqqc5? hMv' ,dZ6Y\|uqd&_lދV{*ݻMv~syEIlIws~fH,\X2ώou|.śG_?.:q"BX1^X/t=w"L/4% C^df&,.[_W0ww' aa} ,lEJƣr4ON$‚Io<~CX;z.@L7N$‚뛇ۮ"g%vΉBX1?srR8@X a!,@X a!,@X @X a!,a!,@X a!,@X a!,@X @X a!,aqIXD aBX , , aBX , aBXBX , a aBX , , aBX , aBXBX , a aBX , , aBX , aBXBX , a aBX ,w?=k ?ƤdPgc7¸8IL4sz̬iQZy6)]m) aBX , , aBX , aBXBX , a aBX , , aBX , aBXBX , a a!,@X aBX , a!,@X a!, aBX ,a!,@X  , aBXa!,@X BX , a/+Ϝ>ywP aUWڕ(Vݟ}(ZǛ=ZtOd@X/DŋmSYňBX|YhX#Mm }1 ,W5Dcp1=%M+i^l>d+S[ 'BXzo.n>%G0޲Sd'^-.6:?x' a!,Rp?иv~xXS aYb1ƒBXLT)>Z a ,Ŕˢ'ֺQԚ@XS3;omRa!,a!,pv/ugbxY|Fᅥϭ^âx]Y+uswx-?[ݛfdcnձceǛ>,68q@X>~>>S-;/ OkA/^<]'utYUNJVۭlҷz:l"`)^kcXV V~Y[aˏGQho{t^Qm/vxG7U}KI}"oy%zPBXߋ~R;!qfp0Ŏg^Xeϥw~m~ێ7mti%s%Yjg`{t ̹/*>D{?qWpXѡ=zӍW2;w{8 ,ݍyay?]_?Iu-,nfHl\>ڟ/vvt)czZUKRotVߋoq@X abX5j{b<[ntH{Eh=f`;^.d oV2EuE2n0TLu4߳8܋G}6`+9ͧ46,JC]7lT/[@dӯn@f~l'[| a[ToոV7!'Gaf;+DF)'tswBX$ݽI*3sZ3|W3. ˥J=9,˞5 tҊOxԭÔz<.,A ;.+8ݞ,X)=+GȬ"??Okoj6,&'2ɑ0WCe1ŎBXf/ }geXrn6ܦ/ޛܥE{&̯c Lsϧqɼ;#oL?g(M;Ta8>lea!,L=9~nk6w%}sС;ް'\'D6> , *3c"矾nz7tE> ˦ TV#q.,&7MX$EU𑽜5ŎBXA"Zyr;%!a ֙+CX˜r2 ]]˟{F2TpK sS_ꚩdbxSE:J_Mq@X a1s?縬G{â0k9~4;;^w># 5ӫQP*paq MkkB6S8 ,@]n.]{oX O[gO+\9 og e~y[zu.V.JQVfnVZ<İ}w2{ғ<icF7$P@C0@h BI61v,Ykޕ)̴Y!`RMәg@, "B4/׵JުGî)fz,Rm6\XA,N/{tNISp R3 %T,wc*K9p@,M0dOX߲^og7 G{Y/Y|m%v%y)ڑ`"Z+!xk*bĬ;⮬9p@,UԢQCP5bkb<1?7%bq__Ys붔ĉ|)b!ܰ^f~@,znVDGMb[R"I?< +f6N, bal?x]lU$NuE:չiHڑ),F& -K5AƘbb[~{a2R(O^gK,\!y}~XhlgebI{bѱgOXbXl_D붜}y$m|-ӌ}>C {>jwbdhځD,@,č;>G+=;Emm mwfEJNwċRXrرba Ѿl+ԷX<]sӭ[-Z3mL,R,Y[y b5Dqfrh۫aYEYS,<@/b!JYLͽ몦%o,4%ŧ$_'<XbXlLkVР7{]b1C N_ڃF7^ҿ4-?:ZnXݽ  qo+hM&AKM(<wPԨ$EŢjŐ braX/ؚ_,Ib1` XFRĈ(^/jI i 2bd؏Y_XXbXddb>E~XN :bqoOK 'C,D~8R|jE,R,ĭ}`G,@,R";=|61I_.P]I,ʋfmXF.>9%gQ|jE,iߥEE'&D b5c;I4."&&bKUD,̼7Lݥ8b?syrSӰ雛Ԑ_ `!ڳSbX[bb`%^X?j.!Zcl嗕b͞qUByS&DSm̀N,Y#.{zשޢ܂K׼޹r_NE,w$JN>S PvQ0KpG7>[:*j{3vQMgʊ5 U|-+~ #YH$.cME,w$n`LG,@,V{n>8-oWѤ7y8A /L+X"k%w7I,b6"sز_r.5mo:E-3^ `^/"Nʲ\L Ô 7(O\:HӞyGVrO~@,7J|rV4ugkwV=I 'Sd yXx-KO'FbN& bwXjϸ#F+z_ IDATq+ P:*xa+шwO]w{{}p,BKu)<._~->{q6u˵nz7EkI#wBen u=iV;bmwXT/d;{^5!d8XplFV2vίf}5O; vtݻ=)^/'= &98䩼j{;bkN>X ?]jNռxIb"6<4=Tb4"uX b)2 bkse$b' kn Vnfq(-dixuo"%@,`-F?lbbq7M YM ŏBh"?MOGϊL_@,`MJ,dP=ROU BmY'ǹq*k  X/+|66l7$orA·n}bM"d|aqnQe lNi_OMӫ-u,: ?@, ؆[ڏWmXbX X bX bbX bX so=Me ?'iqb;߼`A+x1>Ƙc$p.gow Ph{tzٗ , aBX , aBXBX , a aBX , , aBX , aBXBX , a aBX , , aBX , aBXBX , a aBX , , aBXa!,@X BX , aBX a!,@X aBX , a!,@X a!, aBX ,a!,@X  , aBXa!,@X BXbta!e󽝥{& 8BXFBrF/1;gq-_Ӌ!3TNf?Έ+_5b^0W;¥NO{aK1>ϗ/B;q?c!\uy¢V~.ohtG{ON{;*ʬza{\.Oķ<ʴȇEk#f>޲M6Er޻=p+yEkX[ay/x] vgV<}by]BBӡw.rRy3U;߆x%]pX7hmL%ݞVdgpqiQg%hmkk:LΟ[=|!7.>豰¢%_a3db8}kbY/}?66U8>j75 : 46i̟ Y)4Z ?_>zPNY<U7[?7^1;TfnRrkpFr{|newHyܙdS*xV >X-dvWw wRi,Y󛉇y,1X~C3ѰH \ȾRn]@ra1u=(ıV ˇ'EoO"9c8}̫ti8m,6S>V32N6\3uz[] tX4%[z4zGn4+?\wJHa䘫1Ku ٫j!,E{'tnEgaەlXT.0wKkQcۯ()YYZN~|m}~|w7?&ŹߏU%V0[$P%Q1v|[ƕ1s7QT}K~,⧍’۟> .|bJe4~͏ZzFO~dp4Z.{.R݌_1>NOsz!Zs|߹W(n=߆Wg߰;( Q:wNpWgp6w iO=U9-ÇdM:Z Gja]KO=MH`2L Jn!Z$~Q"*,V]_[ƛcsO)‰>FYT?ϰot{{rzP QDyS{ U(e0lu R;xQ qbUuga7ϱVaѷ@Q>]倹%m4a06*% M7mfPbuC "?FVဖsVM8QZb ce%Y8=Վog~ʌ}sN.»K`_q MZ+lL1Ɲ8WbdUt9hbMxU2Ls{#QLyvrܽOlDB Q)zj.FwZ_ݢ+rVx$hh^4$ۀj1Of#xA+q*W]k,ll啕/' [BAPe2@6˺R w ȸbG\i ҳ5l#bU,8Y#XlA$-MAOоZͶWC,_@cuS\).>#&5"=49&W,9^>i-,XZ{dIlz=YI b2:t^C*B|֣xGDe8;'_奏L =PIJ3Xc:$.9%l1vye܉)%yI,SU$ 7W]0 UOo(㇒mgVbfdWZy᧐y57hq\DkaQ#3ةq`Guiٷ-o~0\TD."׿ ~ߋR[r]-þkD@X޷$)TV5̴G6Ia@HOgv5"ދA,~GFI,&,pщ6ؠqG*ܯ6i cF8( bmI;p€Qee]|}ylj㌅flkQ)V #l8c&U" !XHbQ?@,D xR[?caeԋmH,M߳r(xEE1֓ wR𹍍]Tdm66N8q[,m,r*--wmYNϑ W#/4fF-Z@. qC;W׵kQdVZXh{~nb1y|^b Z)$m1:خpBZ1UE2I}e_nr b>#%u:$\ lϋyQ{;QrJ-%[r O02#!ح޹tawbQ1cqQ #@A !FA3ˬTӘQV]Ѩr[穪R,FIo um"mI~V*dMuR0dBSX;,Tez{?Do@xQ%T|љbm? bRMh\ZhGTE =q9JɎ;]cj-IUiUXG6 B]Ɔ9GIwX"`QSIZș#;D О /ZOԏVe)EUh1DV3#/AnߪR3HY` ,M_b'FL؆!4X\u. fNgE?)m1/ ~!z +O8FܫCYibafY,X +9EonX,q<1<"XqJ㥐3 7CQ:-N>!-Gf4mhHI7yz `i[KqX;8"XdmsˆT)UB5uztXbX[`FTEk˽I7ScnjH9QK:G ]V)!P9w޸PR6u9aOC}`j#D^J$.t)^݂>`\9z%(Xj缰[("DkuqɏM8G犯{X;7G!Zá?=`F'#U4]X R= G-=,XEد!X,WEkFt4",t$j5X0HE_+t܅ 6 Qz"үŒ :i=u`WngICV `13hQ%4+>Ggu,nE,H*y޾egB1E~#B:~'؍UfW?={]_'`I.yQ M ۝OD PCM&Rix]٘)9zYJh,JGDdT>,QrE乄;~8]L8ₜ!ŽGw&'a0B+>~!z +*/l\OvU`1HEbeky$&FKOh& ", '{>`!IE[+wB}wb+عF^!ż"c0mlHI@X;<6~`qOKgέ&g(qUBSwXGoc6XTERlp46c;:Lx/[Qv\x؎?Zs! MJu~s*Y8XZ.1(?閱mwT9A48X,OyR3Tڜ(X`x'1 <.ZdbSW̩Y aX`󵽣w ߉#lS?=`F'#UN OvU`1H4Ȣ?,X`EEiA `hs, Z $eb?>M\i[Bw;̗y'`ؐ$=+;>b,$"oV%N̠řl?S=XGgu,Fj Ё<`Q (i9XS`͗qX5HG3C)})gIm IDAT;)< Iz">QxϛI ;U)J4k)(X|v~z*L"m` ,M,i;wi< g& 9bUjRk,)ot G@*.0oboRQ?\@|Fѯ!X䑘(XhDo`goCa``OUlM,eo u܅ 6 (Eo,ӆDT ׁoyr,[6ŝSaqq3գJh:y]xl`Q ($:C6Hh^[afňh n?@v5v{;ƬU%jԿ8S'ZՌWT}`1i8gS{t)VU ص,'Z ,~gn`X?vz(De ڬr⒱ɒwx`0 VSۢfN. Qƽ=D#XQGLj{c(k2VOX R67o; DGnJC P, !1QNنGc~P`qlfCH%:`,be|K.D(q`2?{*T`АƃB= ~'Ȗ~H7ʷ,[·>k?[=*)Q88bgـTEO'6,R+쯲Q}oeN q/'''3QX1.bn"iVF]53%VO$ڰ>qR51Λl&Q;1ߔb|ض`197%;)eŴ9WzWyli PtlNne:!$*}@E79=KZI3nπ}&RУ0G,ШʣcĽ7{ԝ4tX R?~:ex$bst` ,rHL,xn+jNc`]x  ,{$S7oXo[Bwq"p0_|3}UE4mhHIڡ H,:]ZX wرW,>`AwێW׮(\zvwgm\odO^ؽF-VcF֏:!72Hgqȫ9 !@1FM㴵lF]XyH:!5 !u=+E/#i#WMGu ፆFk‚2{>*~_#> Lf9~Ðj}STۆN}a8#DXJQEqZiQ~ f¢ѦϽ.MtqOsGO֦-o%T/Oh~YeI| `B?~]H<c!$¢aa|HX(5hmۙesIy.va {k~Zۖš6'-|CX;Qni]q/I8](}8HG?5~UDRb|IXoذ51i?[hF[X=K][‚ʫQX]$Ϊ; JZJ!snݑv{[3\]쭰RoYf;O~<{$xDtd-,|ᙞ2?( 1=n\$U=ws|q|!](?NrNڪLPy'\-&F0CF.2jdm hGKPԝp3yt~6x Jrmh>2쪾E浰h=eI3y,Ŷ/Ih腪4y5-B)ZT;]FQI= E'jNdӋ{hv.[7;@g" n_{_Ow_ݥGILҞ>%fb&4dOx}ه{W²p09_tG;NdBoglۢnu{RŌWdN R1_*m.?RDa!'L'Uv@F+%myDlǚk1m8L\jM*]} MA!rja|K]hKTs#X+~8 iBI}Alpjlb9qEd54|R@I IznOq(Y)j8j u^ iTJ u\t;[Fǯr]/?[ЫAyK[ ;Ă=6! @G>Xh@}ijy.Ji6+OfNYQѻ^p8Z5C_Ƕ,x[hRoӓgEAA1$pC¢ޛ'Jr;/p0 {>%VWV1&u'äo!, ,äK*>Wp<\2mg aэ*H;Q"~WWcp-xYNa TAH@X@Xtrmus[ aa2j2w86;C$kRW5(JO~ݙ~ GؾwwF3+  , ,aa@X@X , ,  @X@XaaC}? |m8 , , ohY=!"{D~{CPmL߈|6IH }ba#eHF%:ip;} BXDgjU@zy{mDX7\?0aa*MxC ,4<{o ջΜac?o(Qr>VY"-} o իmeHy`@.H.រ$ KG+w}]A U{+zW ɷeu{CB!$d'?%/,yfTIhw{;\!_YX;,79f,D|o _XD¢/%n3 "d K.] u+in!F +i6Ix nj:9NnK)ѩۈó pBb!O6kNF1IV' 60ځF]ت7YߣL# B9LHIpD rFBɒO>G(WEAZsBx'кa/6!Ie?~,0z !=!Oz,^'^eil? llu"Bn y2^US*ksQZkYiUM[QRpz] KU>flˎkC JתX;4o|MʏṅͬMK.p {};>C, e2qZց{RP 'vuXFI(2tFA=`{WIѱԧJB=E21W7e$ HDB!ԣσqJP/!$8P1`k@3*6㖅k뛒ֵ݃,39_YXqƛ%JPs{e]( [Kھe 47|/,snB>5+ed$Fٕt7?]w0pᲽV c~vy7p?̵(G+B1*sF\ߞ)!I qvrM¢DT Q J)B^֌~gN<ʲgˢ=v;_x@E?R28Ǜ,uUo>Ņs3"hDyM@g luH Hןc@AרP>{k(fHnsgԁyh[<0%4grjq*#\ɝG/2afpMȽMW = |7|a DXH{OS3p1#3Jp1IಣSuugd؏!͇@6%t ;H@KB#11P/a(ؽU[k/4&FPCX`USK: a74Ϸ,  (DʏTg^AIUC-櫁[iU}ypSX@HꁣMU=X):{3pv}`s.Hz3T㖺iBvu-7ΒcyOqa= 7(,d\A"J@k5^  /pfȋ8+%y ]WWJ"[ nL @cf26~eaq e+]-Bx,D;nKO7|/,~aa䋼zB ` @80{-?-t;I9Æe ¢V\1vX=#䧟9]\3*^ҙ ʀ95j98*&&w,*G.D|P>{ WMrai6:hz+ x9cχggvfwFQ|&mJBM&/IUܠC8@q8 Cw`"+˯K= 4C9?Ǜp*fädRnmG<SiL*rAZMU,e\X䁍iѓO"Cڸ=rGU(ɷw&fw,ܵ:ZGda!ʍ @x;qzʲn쒥y Woai xޘ*5[4!̙x.IjE=baIf,5r9 5}7_X/,zMF(ȖկRVYN -=%.(o`3/b!: 䍴-,(Ėn꧳$Z'x ѵmX4CCw U_ &P;3 "Ô)}*]Ջ"fo,XO@b* <5I#% sUpցݴpK -?FʜLѣ ]0)l%aAg9U}x`*Pj[l^ g|O 0r#jwXGOjvXoſ;ۦ&-Nf"Bh\B, Wb%uj@"~9d_]n)_XIOOOL>DE$V:1V-8k*TWQ\u(>Ed*A IDAT4҃E{\2q~b,)Qܙ^1w`WIއ5l(=BQ;-yPq$ʸ">:\.g*8yvK3ncL]})Ê5H8Ħ,F7,4z<^3@mmg& `BhI  K'd u ,O92elLp.Zxs`9%6`a̘1,N"X Ps:Va)E$_cu/,4E7"<G,RxޱoIr|~X\ ~d}.Np&y]_< ,P y#t%X39<ߩ ms] ͭ6YXteU}(B#,;}v q`萗X#ִ`aY;4{5 ,,kahٛVXw3~,G riԢ{%`)g`Z4Xq4qĢ^0f̘ '1bqʋ19##q;IFMG.e*`i,X9mD]+Î8XxO4h,zj;X G]U)а~;>Xێ+qPv.S3u\VigЃH -]Չ,\~,yb9Df SG ,j,z@xΜ0f̘ `gmJw*MĮ\]%w$m؎,^\;Y_ Uwm(bAuC,XBF3f̀a@Kum7z=۾j΋?}rb%=RbU1u;5`:c ϕz |k4Yyio'8\'yN 7ә[_obEFu`fR{ <,5`1F%c-2>99#(WE4Xbnݛƈ处8v_ d)XEvn&VB}~$>r!IT"GVl,,d:TnمOkn9IGQ’\^)|ӆag\ޕazڏ;{e,\tX!X_ ^}8{iG:Ei=j+lBpIf/~fwvqo>˓JXvSh Pͫ/aܖ5OŮaz񮝸;ޕeU˰(nR:f1/,9w᭦o].m|Xfth2j;igG?3_4^󰨍\XL>,gH՝ɗ?^\;'oƑEaC81pbņ_+WkoWauU.z jhXggO΄E!9j/^  8 &wv㗷UX^̺BaQO:,&_i򖬭QEe·EvFܨ:0V `zuO*&7ƒ?,E9wg_O*q8 abb"8;oڃ_g u]/x_oXL{8dâ<=>,ڻEωx!ލCػ6AaS a19'V|FDZ4LXX'n7OW,,[>Ml?,Epjt™?ǗS7G"X{!Q٭7loS2ڳWZ4,l(ƫ?,{٩իlv4܋ 8+YӣcWoFS#9Z-jܼq&s;osP{%qmөk|냙Cǿ$ޛ~c~XJO?heu6f.EKYڴ=_D|~(9ߑ9lrx,pUa͜U/on'mm^ ؼ#x(5frw7Å Snڝʁ~ӻ`o+=\7"#ܱt,YAsft&GO_438 5μ2329eb;rluZQbCLVho^y׎%FxcqJz2:~xoE_ڛQ%S["_8?=~\Ѽ+BX*;}yDQD3ig`)LvoDM>۹+mF׫‚ۚ!Xt:zp_css>ZK+u51aL+=Q^`9 O/؅0q?+o­'C1vy0|v9~ x SAtbBX5Wf; {Kʏ-t{@ExZ6O0<:(,V{޼Y}#,ܷG*ܱ+Wm8nrc: a~E#׾]mcBX"\uߌ`ks'C;/lb`k|f^>sKBX , aBXBX , a aBX , , aBX , aBXBX , a aBX , , aBX , aBXBX , a aBX , , aBX , aBX a!,@X aBX , a!,@X a!, aBX ,a!,4GZ)D#b%1\29Fㅗ^̅~ m]7繡ݫeBX ,a!,@X  , aBXa!,@X BX , aBX a!,@X aBX , , aBX?kCc a(F݃ut8o)Eig68p'ld>b@X`y½>b2OԳ0&fMޮo_.'j_X_.΅g*[k ]o#=͈ Gl㏛/kKkxp%_.l׶-Vw{vyÉ}_GXs >;mX^o%jT.VO.]?x|y'_ BXtcv?γj{>.%V>E?hd5iZϱHśdݾUpn(wwC_ #q2ZotX BXduˊBNمjz4GRHj!c˰(m#_jG/5y#67 o,F,6Wᙖ5Hvp9Ea104AjjvX BXdXHEt'; &"f+J ٞJa6gC S@X kϾ5Vyj|R+1ɛ]Xm\_{D%3,rOa!,N=1|ubW㭷b[wx˰ |\ҍ?8YX?j|eq%#,:.omXT5݈3"Tda1}fW㩝;?*,Oa!,7_qѨsFī VF̓?!bՖslyyfOwjȮ S@X }CtZӾL\HN#,F]8٥bvX BXd84E{ۮDL툇gxp}-18"T"Cs 7&'~V#.}ߕ:OXOPB`aCrNa!,2ln-21Z}l~JFa1z-kcb~֡$,&0+GE ,E$#&Z3ɺkɻdc?WXԮĴ6fXlFo;1j;yBħ;ڝRiFFKX BXdY`s)}wjDilT?"wX+N7b}X9.,ax+-HEީ ,E~KKݿsw&"۩r7^$,2Ŧ>}|6dcVA۰Vh,=ܐIN9? BXtf87P~8|=9;19mo# sۍY]/m"eR IDATvvr'B}VoG'|a!,:6X)*gfJ{oZs %rkVg}/,wr3f/ , o@X .dN ay$W5 adG|Q(=a,>o@X $ګla!,87Ʋ]B9;‚ΧΞ‚sxZRo@X )[)>E aBX a!,@X aBX , a!,@X a!, aBX ,a!,@X  , aBXa!,@X BX , a aBX , , aBX , aBXBX , a aBX , ,R7/f}BX\{{{-ajo@XKXS ,?#,[,ng/_ㇹo@XFXCxn2â28b_L.qYcB2i/;_Eˑ#APk)Ùv$,6cݩjLfPR5^jm/k- a!,.',Άx\>}8*٫Ps7C;:S||iB|>> dɦ rL_vf˿VdXX2}uR)y3:tKX aq9a"=PQI~e"JqWVw:ZSɑڦ)|iPXO~5MXt"=jq|x%a ,ť;+޴hxXT/ɯO";cay(T/v56\l%NݮjEX aqIaPwƷӽ8{:U>E\lF\6FrEm췖a4r8@JV}@X w!,;;U >>GNnpdFSXm:`i}U0U=Ba:f}Ua ,eţ>Os,&^[]X, N,4&Ǘ3{; ErE|, a!, ,Y/WO ɋN ]o?>f|OEτWXohuX nQqHt5&bwana ,UEn!,G魲MOHX,9 Y6jl!,a ,ŕE&}6:!r2,?w/tErpcݷk(Ta^}BX\EX$zHM9ɭ%~奄PX܋[ؘ:_\2ð(NJ "_),&bmόPX$mzrtJFaX;oL89-GFQDAE*cj-/Ⲻs]%!F+$=0n>Ntc1տ=BX,|X\ظpyR7TE(uÝ*khjqEm_&-}Uw뒻KGh,,Lyhia ,BErP||X3)qasŕOɶaı~GǞ,MPXl'υJV ,XXDv_#W'8+H,=dGu"Iu"y.TX޿;<HNY= dx]!,X4'n^ߟL/d{rT7<5?:aq.io:a.I0p'8c8ά̷򽅹ZI a!,,,2G.nq'O+skYa:a^ֳlqf d2zshXd&J9',Xl^u%=o?0Z~{돲\Nִqu}}jΰdӕ8毵Xrmk8,2'gCo_H ,yTo~x ym߲gmq2}BXI~*ջaA a'6ۥ*a!,@X BX , aBX a!,@X aBX , , aBX , aBXBX , a aBX , , aBX , aBXBX , a aBX ,ŗɞ*;7mji ,1(ǥ[!@X^=0-X7EК$-Vb=hϽ%\qW *m5K%,F"tA*ڵ}G:|BXRXYʳ=RWjKZmla!,E!,ċXHq2#%BhJٱB!_6¢5"gܨ=3oXf/*-̎m u[go ,,V-".Wnyz9,7>8%S/EѻS#ϣ iSKW˻u6{lHeQ'E:CI^ׄ=~L)鰘Įbmz~_H_Yaq+9iY?m^X?|H+uͯw=\ʐvNx[6&5-P:7}mly{<9W',BY>ZcEǚ/6]a1sI}eS @X/7,r/BDŬ'q2xUa&&lC+6s+M ڈm ]4Ŗ5$h0Ҳ-Tk{`O.1…]]?Wy!\AX|[Eb!*%,a!,O\r>dvΕY>B5L'3= @X~ikJaDO՝zikǰD_Mz\R5{uEoUqe[݈Z*Wsǿ[UXQzX4Nb02¢rח-e>,CSQy qG,t Pus-Fѣƻ>ͬ#,W\n:ws`ÕEE$.Z* @Xn3wEzX8-fh9~O%EԲQ:bA=c3WYMXQzXNfY¢ MGLp|sva򥽶'AuXaQh]c[\2O+^lRXé=ue2oFPMV)TrDa7m @X.3^>ScYLŃBcLe2;x9,kǔ}E?x^׾)лiJN2,#J$.š!,a!,损&԰Z\nlG͟,_̧Ef")l~giŵ5 xrjvavTdX$FI5WXBXtoY7~*nU_''q!N`kT7~bvЭDX,GkD*{U2ۤȳ7~_nt4ptrx{zq'n Ĉ"9oB{xS¢+ˢte>2CF(_.Ww{΃ŗ*Q$ QK(, M ̥wƭ+_}vJN__68÷C9kX$FIO=v[a aэeQ=A^iG6G*Pti`:^t/+~JEfKǭ-mLf?Lj<˻{>).QxrɰH(5,L @X3S_{exf˥nT_xV<+,Z3I'5z`q<kG .NjCkV`U`[cgb7<{ p4q3Mm&2!Pv8q“*EHXxܲ@,Lto5$\!nu_|"oj?`⻟Z)ˈ\R6WW _} ,cJS̲4^B,bB-It[XtE1yuC^PO 46 LJgF`ޖ4 E-EyЊB ,[E3eux Ku`pbnst1Nm O,v- VE³E{؇O?/%'ۛ؂BҨ3}^`Sڃ{^d]64~3⒇!fܪ}o_>__-` ,/أY䮧mX`QuP&%ʜar`!ڛܾih. pnQ,Rη,,;.6 Y/Ӆds ,ufO4JǛչ(ygYWXUO.2@tTܧ#Iq=3q<lѠ '$ecH]lKK*|4Ab@ŗIV>-̦((0{ xHq;hٵj@?zT D{lr&ՖӮU*Q`I@Tb鈎sűjp q5}X,BH8䣄$T9t=:zle]l+F'ݻ@FcsvM挷~">UX0PkegsI 18̦&Xa|$%BX9!Q:bKSEP%`:S!~e:Zʝ ekhixr*lN[8>`L\[T$(³L[<=u =8zn!6w!e|' ahNKw( vG*}]#saC4;vM66B" IDAT9w#y.LƩ;+\ěir9*T"IM@%jpGCe{S^BFוwlRp),zrM:&n쨢30IKU1K*:BP~gVE,x9v^a/x`i #c6ɳ_f$@d|[g%٢gW}SU8rRGK8d]浏z `lBN( oڋOljc˜gcϹ;ˎZEx[>=['8y儽π6.Y 1?H (YFUdǣK5 욯dTS f=`OSXa \[ +HHN}JgX 3Ea͸ߝs3oՓ;ܝY3$ 5z,%jlW\W=2Cs/XzX\ɹX[᏾bg柢مgG 9iƒ|iH⋛`I},1ުXK24`;w,~,8B$wP"-J+`!q1f}Y$$M a/9rca`Muq)9bK\ż#Qh R 1V7!!r]ѥ>$4^ $]bc01nC:hf/ΦLx2R s~1\ "| 4%GiNL e~4)3 tiYgl>zSYi9УV@ҋiu`Dy+.ΤKkeqD`QD B_>s-bN=413@&^.pV: gof s6,v;[RUTg]86C ɶ>:-Q7-r_  g!B_HQȤQ#N*z̨ғch;ᄊ߲*d EDE\Ց=U2Rei H(9%Ő2zu\Bִ}E*Ձi<f^5D3=^}ܶQǂ Q˩*nYUՠYWt_cꨔNՁevh#,h[9}|sC!V{}s!c%bͤWO'}bqlQXCEa1p<.hHP2Zj D/E4^ g,;/er*븗7J⥪}\W${ov2o|55fdFDHacpO)ji n?J;;oIUjLX;@򅼳oVعtWqsWi>^bQHqɪbc@[8|Wh19(OWH[XciTdOՋވgf|rUL🪛u$Jys,hoB.o)J,XcBĘc;|nmHShrPJ$pYv$@_6ڙ\+j]>fcMB!LH mE, uDݬ6ůx Y;޽"-xEIȝ;Aba+p)k0 "t= KzE lХ6I5N<u>1sY,.ܲCC,Ŋ)+ ڧ~>=5Fz BZ 2 B,n_qSyB%s,hu`qģzBH6z3ȸ`A _ tAD7iyh9hv4o >?|6ku&r@xҥ[ =bHӜWn榴-"h1# `hKrD\L@X[Cۋ&XA--{o^/i%hbἹWtҀn6фv4@}_ecߜd,>#XqDޜo>ӽ|.w1m\Y[å h(i`[Nu>)CMC@6Abq*;gR@ً9,)} {1 6۽ˤYnZ &&Th68"C KX}݈;(mɆXNc;|q+_^ l[~oE-7gйXxEĀ,r'NPWO'}bqʰdrnoə̧uʐE,x#Xs@ș9:xg Rr'@42rhOFQf9_xmx͡{ֶq!iխ-M$tC,ΑN7,>)` P cNA0ݼj̈́&c'`b#KրX0%Sz7gx X{m4pܫ@8(&\ܖHTFaCߜBD*EݖTs3хn7qUbsh7NǮu&!DӉy<4gmg#Y1H1oX *߬ tw*ntF#(`29j68"#V;X{,qy )2w\S4Ee8GY.Ɓ\5[Y^+^b-w耊Ҡ!#? ~n.nv& oqUN쓄O'}bqJIE",="MU?8]-wb*#LzunϸLs]f^b?|,‰Ep<;XIӧ~> e_d.!q"&p"~`iv#K8R}eaIw^syu6$i܇W7LK,IކI΋C=Rb`|оoOtr;XT䯯%mK‘"pX}$H-iRwbHY:A,Û.tS/v:&ˆE>f{o97˝{s>ENc@\XdRg!qPGݬrפ%o~YsM27Y±ZF8lq(01X\5;>b5H,§);t@2_{<PPb>ĂHf^U:#>KXM('u$T`eΚ[݈ Z+Xn<``~˜8Xۺ1ekQ)|FX%mcfApw)0v-1qppF mvdKN=z4Érc[c_M,ʶ@W+/!= DUvPUįG,>F9u bf="x3хnWࢳrOfv̴Zy Oae5a Q4~DY'!4C["T)xj ɵpxpUZ{9f$pP i{#T~ykHøKY?BĽaBJ^bQwSv'pՐ:$i<z npb N%S t:X~E "s-IbLK!z'9ZtN]Xp7iX]6y ro@C,Fp ~¿*aKPbs;CY\M;ׯ`E f\ZĂcO'W)}d. Q@߱%=~"? c]`I 4-X&"Dkid9¿cZX6Ƌ1 .,aG!pž܈( %B+thxp2鮪 J說s:)ǔm0`T`$|ϕ,0û0\w C=(Aɓ#^[=v4ʔ,y , ]ΐ,U#% cPfw y,-G6u2NֶͨzJtJ3H#3xR߸!CVMb]QcQ!I}بLAF'yTKٳ)xߡs~v[զY4]ۿmh.E5FnGG?>W@[*Pc yYnt,J-NJI~=X@ھXZ^,_d,,vyuk.‘F77ˌu2Pn"#? ]fDkc+_x*YWޖE]I!AI {㖴,$ݑW @q_o~w h (2OƘ~ > tPَ(5Hri`'KCS¢s 4B!ܪ(yEX 'x8E\pOx‘OI![(UN}f2}2PbƒTV0E( ʣZyI 8^xe\L)4|nwXGWAZgXkN? ,3 N+4KͲ-B<ueM㾽 -!h"k3[ W6Fɩ9㪉jOJ2:"P}7/k5ҏ{,X%ur3l?|F XĔC\[Uved%XvdcCsŎ.8b€e}ѹbR陮~{x~T_`¬=\X~= 60 םXھXΛ%.1t,ҺG0cdr8f=zLpz e<y?˂iLyj!ĖBea<loeĶ3Q~Ld<4UdI>d bDy(g1v䱰~;C#+?Ɗ` }]ߧjZ #Mt]ٿ-X;C30יִX nARbWz?B& ¸8/>wT`4 TQEh뻬ʹzRg/n`'JUr4Ӡ0uPb)Q7P[@V-&aջ0`ˋp`3Io4ߵpL=`:JZ Vh$ ++eǭ`1’ʑoWr_īLyf?ϋLă ^E@{[_OROvT%lSz7dkIwI'-#hsb<ÈbXD)AL]F9Y4p9?LZ>c,#;"`qN]ˑ틁E8A,Bq, ,1Blс. +bǟ=[!tm>)K65L= ~BTї{Q ;H IDATve4~܄g<8&(F(Ix_':XzB07oFfUpϦ- `!!QK9K ²s~& XXMwd^`D!m(.hcpg8]aIgቬCfd13(L}11j\an)wθizN:}_z̖eT(9t)Oj6sS>do<..h=3ի_ PzkwW5_*'v|r!rxF3nw=Pu//_kaUz;\uZ5/ϋgHmq+J\@XRQ" xF10TŴ-'GO0$-x-' , u$~' ,<(d&[Y }y‚pj\J,Kb׉a6^d{=/j4Eâ)֥35 S/< 0hubij/9Zg+aaQDA MOXĎ+aɰg'* Z ce#elT~XaR/дQ0GU*ܩزy+bh 'Pl 󖊊?H9/,@XQ 3!|)D]ʔ^W-;,EAIyn{\ NC^$jFsAQfaq)=FiaqSPr +5nkEzDɼ`B\aжΘq`P, -'ZxGN5#a!,ŃE¢Xy6T_X a<ƞxJaL,>j_X a E3}8T_X aqaqe'&S Q+φگN a!,/,f1^¢X>j#,ﰸܰ}_HX\L,VBX{ ׳٬q< bxZ]?J٤lr2/p\0˿o/  a!,'JY8-➣9NDˬ:ț{}qxe DXX aiZuAYHLWPVՙtW۰iE̚(bQ4,c@'BXcBy;,vYc&!~UbRFu`(#=fC2ۤyoXNT,My̛"1bX aheɚEr^Xdշd_/1;L,zX0n{%V&IK$jbYÇ,`@BXO,ЛM+"NL&ܡ&iڙ RXX a lzqq@BX &BX oM,w Q+BX ap{&-'BX ap~",$,BX a ,BX aBX a!,BX a!,BX a ,lXYQsK , el@X a!,651?LYba!,T{yZ;{V3΅ \6q7>MT[)HFpg C0CB+H*ɒu8̎e bXaj1g bX$׿XxbX T,p4M$ݎF>"~|<]+tpµY' UvԳh$(|J70ݰ}lGއ*ÿ@,g1iY8AےP&h0MXU_F­VyWy=/~@,i\a>[u,ROOifԽX's]? ըϓG&URk3߿ bX )$[͓E/ѠNR}i}@*]DCU9Mb,껌G|Mڄ8:ȫH羥槿 b񎓷?۩TH|@}fo:{GbeOrXHE쾌&TK  8b14jW257ht^-m5MCmK;   ->:ߤb~X;@=$aac:Rw+@,>ٕKES>C,dp?;xbY@, cEԊX^ [$uz=XȍXhoȯzd>bX|ĥPqDѕgqJ,oD,Ҥmw-Û:dbX|ĈExO6pJ,nS9w6 n #dbX|]o&M*Dhb@qc^H{Z=I bX  -7j?-d3GᶍTЉbɱ>TGwŠ6hЋ bX|E40iuԟ9:zvISOUUSzxBgYƆͲJ|Ψ?pv@, 8Y B|zL2~X bˢBC]9 @, լ]Om.tq:MU2KT2<޴ږ ItTݭnc]A Cmҁv#M=0 11:!~u>5WX bq2(*SU"VdN!BL> 4( ;/|Kbu]aڤH|C:/BLs7 nź>Q쯨Dvi̺bX  șŶ^ J!&U^020 ۫" "WY;=TyT#ʲ)P:ճf6sE=![ÞXLDfRؘNXefȩztk(̰~5;KUo8 @,^Dgj=nnMefRQbg"[K5YϜdb*DueiWt' tDTE(U+/3uU(MbGnEteR?'[GW7i^@, x dc.ò3_v؃[ nm*Ū=ٮPrF,VH 8{b1F7YjkqQ%&<#WKĮPbX !_~pLL{D>.{+&WMC؊LzAxW+pB9CuutHrp ul{B;j~Jƞx2~=?;cooGG;?#Jws{EgO3GDo| @~]n{#Xl grd7^\z}cJew[V; kFkw,FfbOɣBvڡ- gr{i/5gmlt2vvDonFsllgR7@}};َZJ4SsFzbd@X a!,Y8?v}SwBXZrBXRUݻ}iibp3w qBXR2BX aq5g9BX a ,BX aBX a!,BX a!,BX a ,BX a , a!,BX a!,BX ,BX a ,BX a!,@X aq QBX #/,) YX a!,@X a!,@X a!,@X @X a!,a!,@X a!,@X a!,@X @X a!,a!,@X a!,@X a!,@X )+=^ vWq; iY'!7 A΅eCs$eˑzCy^?i欧]o%!ϧ79rx+ǵSDוWqb ^J?˰߾l7ȇ?~{W_wBXSN/SOx#N.~3Y{#ʃx â=)Mo۫@u=uݹgO?:Ei!+a!,ϐ,.fAnpjw3E<@BXa(~dRX,O ',dYEF' |}־?v&0tbxE>BXgBgOf#N OXDp3Wy7'oX870,!<]uaq3jɠ~dNOEz~-V>rƕB:,.Sοɻ 0"9 M ,8MqzL⬷ڌnxX\, a!,NTXL=9߅`GiESř=Y,,Ys7ps„a>s,yza!,8LXp-,iXxL/,NtiSSa0X{7< \Ց;yܤ+'9,GG‹˜gHIc#EQ#r#F<֨=z%zܸcʩ پ_/{1f}Snd]V4*ǴAzcVz  >o0&,Rh+{dd`8reѥ>՛4w1{Dz5n]k,gw@ÛT?k[%G=6LJEy^tŹJ<4 RrXqøm}+x`GavݰݭaQْaQ-VRX] r8zu!7p7,:lʳ9Ϧ~H> E.q GbϞ3 WO1j?0'KF/7|?\t%~rgu(0xfXbh.oŗS,6ʗχ/]Z<[,>؋sg`!\8?,vk/&s>;vvoo͇PgZI)a(M(G@DpuP|alh̄s٘~˗YV<Bwue*3+j5w@L%9h 这i$x0oCl^񆙼hZVdLA_f_gd9iS.f`^ks6AB\8X(—H~Tl$ObI, q[= !8DʑJ, z-EqkYJهi13^Oq)#@.z)3D5c'I5^ho3$n RK/Z3 a; z$ JxaXHqz*Zd L=h]$4b pS$*(F,4coӕ[D! |# \hj)kѓݳV~$g Dr`z S'z.f%?@8j4/.-G>dSnTrXnɤF[ϵc?-K/vuEb˧߹' /Et8kĢrb Z YK<P#߲Y`VYPqn$5q1`N _F8 Yj<=r6F؛U.b8p @ 0 ݝzS >bAi>t6 C-M< Aӳ 0L?P8X—&zh#yT3j#W\SjGdwk R IDBدG\:|!C!7.AB2?-eE<]CCc_hy[n_Y9pH(tdz̅0$Zoj"ch)= ξhhb$0qRMU%4_[gy6bk#Em8`efkoa'?qz(9L*9  |2?yĂoWK XLvxrg;E(K%XŤ IJ7!1/3;<ƿ7gT^':f.ta%G5=-AtNJ"˹^I?8[,eZ zŕ8_s 0b=t)|tˡ#X:|ѦgPbYeB c'yن=ɿ|C55s,\B[6!LY] /8iLBƂbYUr4J"%XYrMўSQ3} ̾/uO_,?J >- K0ጰ5X)a|e#u7Ne`E(¹y߷ r_N|NX(%X2g`*]Xg$nJ𚙜L< TJč}?}f{)!QH6/@ n.N͇݀qºsmm-`4N*j3~6Yq*R']h,tY O 9! iG/i>f- :VL]~8049)`[ѝ5,k٩`qI-֏`|oQ ˇb/" +bEB`UX!Ԩ81Qb<F#Rݬb9`Q` g2qِr/atetҠQAȈ@duᖙ$3v5m E_ābYiIvtW )X?0~8Q.(.,l~iKXY`\.)T Piz̞[*Ed*-lZmi$y9[V'0ȕGZr* Tavg{ъw\1WFr/߶ZUuɖ:X`uP`jvbMkO`@[;?Rz PCw6̗m6=˒I&S|j4NEuz:YzŤR1(UEdbGx*w.ZEv fjVYM K# ܷӇ;`+X摝 ujV>%UO4`E yYGW-Or5Crs|SvhБ,hHw2!R wߑp4G`?`qζ]z2navFzƜN'vxa'7m`@;ǁXMqK`E2`-FE\0M E 2XD餸1.og< {_QiEy͑ɵiɪ:XD#ݨl(NZq;6#'at`dQ clu3U$l`u Gp 0l;v;ΑsXG(Ve `A Q@@5|.1Xd)V-2`)ZXDN9Li*uq[dl"nz8,ǀŇFX:],⎃N^'PIBђ}`ᓝ g]>Ef> >D`AS$MOx4lXy.d bz*z7R[v ~Xφ T)+, G IDATx,B៯`A>dUXldYD0$Tb,Wjo6m`Bw:RBmsk7˥{$Ӛo:&Bi1,JdOcE $Xhc{C[ U*j>l8,jE3)<شߑvg>"VBRW+X䮩%Б!,T?y5\Z jX@YQŞF9 눟2 Uz`a뎟 ~y`1*28(+j#S3 Ě יt<=eedub E,4WfxXT*,藜~QIic'jσ!F7gͬF,>Oy6(`twR8ؗ_`F$`1AGw>N@vl3cװW0{N7-0?X4!k-,x(:`MqɈ,:lckgY:SQD}_)m.N2dȀ"DBTVe@ŏRN/ԩ /.x_;mHrveKՅ]?7K%bQN9p L> C^4X"]̵*3XbG+& &x?RYbCh1Lm_em<^T&mi3#mh B$UlU1 -$VnYy ߒX_eZb/n?yѧIgرc6+&_1%bQC̳BOκ4bȲ2(&aM%%sp MG fe9b=X-Ӧ.]"QLX\.J*%B;l "P.wDRnǝ uЏ88;{ (Lw_kYҞxA /zzA\q{tN~v,='y9ҹI2ˏ#q>맽9M1T:GF,t1 taW4; ^HnP' 5\Пfەs}l^abar&O h8N{>ˮ~}YE/B87{MkTmڥwbUхT]?7nd bh:%roԣr$K4UWUQiL(d' 5E!?F0ٓ6N&4/E2xK1ɨ]ZZbaMPM,hkc{dbaLZ [=Bm~K355BU_DЩo6H,Cٍ“X-i=dx@,X~xѢ>/2bWw#)5/o1#A5 ']>*"d'˦M$%N,fEf)1!g])cP׵n|dYаaZ)"F)%@zt2;*ʊg>K@Qf#:sDO|QIKtB.xѝ搽䯗$b!O3|Kly|A{2,;3sc?{^=]Qq>"#) oo,sk7"#q"MFՇlX9^Aօ4t攅'J,Ȓ&&t鋚Q:o.y&&LUEUpTbk19m\y[h =,{()Ăiݽ S^ҿ0`7lMHbv{WK,@RQ!T'b-6122;ՔdqkM54*E>hs[ *`}~i5ZUgD!Bbd?m-HX bskR:6/Ykċ*_ lSD,Xba 91iŸy6y_5į>^CJ z2-_Y>:baX`iX7+uA=u*RyJy(١OiQBV$+X+[e)B9x).K~rpaah˛W !3T2^&Kw2-2xQo!$ޞU|2JHرiBV|#$97mÏ/|1l{ʏT?-׷UYZS "k" >&07a™?wY= xdW>{ 6-~ׯk.,J7l|nFC.xkA;~&g3jMX ¢k@l\-Nbtm9e}ibac_v_{ŕ}(Z`:٭6-13Ace赅$![?d\¢ ^}|a_}>!޵ŏ&,D|a55 YaaCWL7ث RuC{ߪKQ!y4lZ(&_=hJM1R9&4>$sAAkAg+2_gfl O9Oa12h I{qLڲREijOK/@J/;5C{EX؏X (mOL7? zIl)5Lۻ{9N֐Yj_#a9.4ǺV7ׄ|^jLO^iڲbK}dl-!.zWFH8DeM;seM^Һ A뮓Lv[ Dj9T\pL=Ut.'tH==ЎSr燧!TC;HNkKuPpaEUABӪC)vgsn¢l , ,PR,L gWXywI}1 Ot@/.uOvUjˬY]Ϡ$'ؑ/E[KFu4{d+g'Vr[ҎLSGt}44O ʰnGV}Mg8(ECc|*.$GZ0a->LъC|'&,y0dGN|T'J_OrBό5j a'tx@;J=4+ʓV%g)C:a;%l ˝6[dUZr:= WTVP{ ڏm.b6q4"kK*:84vϼѰ 2MU_ۦiڽ乇h//F^i ú#ڸ#Uwf9/@s e57Cl\_dh9ɱеr[m|gų%=g.b=Oo3E5ejY6X ~lDE <{a6q&ݰ4,ާ xkbw*?Y7Oٸ'ex:Nv?i/_nݣ|h.N* P!1sX&ďչx]Ҟo6B*s伴.B{5!C|n$:̎oD_㢭qx(N71EJXD 'n\mgoL/eD]W©Q_-C.uTΒ-њHmL]&y9I5J͢s 7z^]-A{/6:~j%T)_TE22_ƶg@Mbz1LmF~$#Bό5j ۲mh/r;C Atq=5I+[F02tV :a'/ҥ3UF/'&֐TTPg F d~p7ԶycRXD'71tݎܖ"=ɒ‚}EGADm8iOGasmVjFTYb P\BYMG@X@XaPeKXH mn ˴a Xm7+؜:t~[3ZSFH[bas)~ڪPߐ(6_#Qdx8Qsts^Hv(Z:)E' opt6Zgkt{ì߄܌Y͉NӇщ0mp2GKa<ۘ8:zԴzrÿeSQ5|JK݅E.kpXDn-_c0=̊Z-[o11+Q<s(tRJ\D46s^~RSEytl,>I3Y|U~.Ljx}x{X$amvrڨ: -Vw\i!vyejޡ<8bB 89ɽn=qK{ ?Ϣqo ifNfiyuQpe_ $).&b* дW~󴹼s:/ vP\v\׈D}bMV7r/"o"quZ Pᄊ_G) X m3",C,vzUxIʎۘXSڅ̭3qVT]bQR)͈!|#XX$1YQ4hW/:_0rl4*e;F,~^w c ~eZd(jckN'0r(AϋxL-V2:r=u8Ddy([n̼ {̆,U8*.C (f^8F,ڬcƃE6fQGBC>A2܀(]`fS8Wط7BTy,:x ƲFK,0AX_$> ~wbk,r~;b} >dSquA@39b||`K ,?tTEgX^_ IDAT>S<:wY|EpOQI&BDLZ&YNk,XsAm:1b!S(Bj]җv ; ry l if@'E-x S [cAlht@ d-l0LdK 9'<|9CEU),5PE1lmo$$4fEeňNhgEbۘXZNMDd<Ģ.&X"N,`PN3!m/6!wWU8(ѕ?e튳O#XTH"xO &"UP tS(NNs)dbQ>B{7 Sb 1zd,WWY&:W%fy'⨸T{G_Sb!<5CN>v|bH,8e=urpw` (;{{Xë9DB_qMס5ye8ta/@pEswYNiM CM%D&YJ%NbbkyoI*0yJ >b9I;OLp>bZ&YXYx-8 2iK- ׼UU2 if6O.jTWM][Nd &^bAlht?Mq2 &Q"@9CMOZ;;qBXؽHB/gw-{o$4[V, h;ncb1&CϺ=%`/e)K,~O: yd+okj@X(*0cp/k?HNtUԲ $׾#Xͨ0vbMyŎ| prZMճ,_>^;ΐM;0;ug^/󙖕Ozv꧝!<OġI{bQ#XlABW="D^z$ISs0)5e%([zY\zjBX#}'zFӒiiZˑwjƷ"%0s`!ʏSb1P"gbY7I*B{);u Ӈ2AEai]d^bh(LRѿ<yiװbLo}{D|fm&Ks\ş /Fd &^baAmht60aD;J{sPNgȉ6p^vK!ȉ O(Мz@H4ĂڇWVIn"b264:@F >BO' ySeU`O%gL^;UgE `նujboS'cb1&Olې7ߤbadi43L sX4k:s[`G.*8#B,Dʂ/ v("DL,E"='v,.p8XӡE6)\l[)[E)ނ-?BY\y7b1 7hɲb JrOG#1{"56XL@~RX͜$U[D3+t|%K }Xc^"&7!ʮMB~b1X"$$b-ɛԁ $5]hO"a}ibIȔ%9BG >>㺞A8Ă%s+F %3 NO;άIPB3 Z PHBOzs)P=I-{z/Mx~x.`Y`de.NZ' Ѵuo  m/@M)vU5X$:܃lS ,RƎũf VZli 7Xk`OdQ0kO;ZV5pq2 RJٱxH"a/`+ApN;MS6r3fOIT1':ҎR G:BG+< Ňpm]_ˤԢ}d3~ x(2w%5[bc%%KѾuҲJVI6Կb%(3ݱ8* rpٔ-zzO[,,!oB=wfA|`E`1`1.Z,_]ݾE3^1X /XJ|Vm|-X֯ # E,H-(c,' 6kKGā,zˤ`AǵC+cr1ɲf?MS=u=tf YX\*f߰nXD"SQ3 q`UtE=Ť0Oϱ-Ai߮|qkJ,VEGX>"T<[5W^=XXnkXgv@>30 >lc%uOkFͣ2IІPR`9;=Hݬ:6;CgQJgW M!n*ڦӔDX;X _]U66p=ܱw'zZ Xll)OD JVcJ,LV1"V>`A%ƩjA*[#:XtT؎SYI`1:WP ':b18,*R^F(j"-CrktPw7:j,b}y&F4-r [,nc ,elU&u82 E:XEg'1` RPx+e,[`J6)W_EwK9)"7X4r1xj ] X@' 4:ltq#7o3 bb?c)Y `m)JNS+{mN" :pTQ``aqdr%m=&nuA@`>"`th,`1uz';gZ x m,hSVU,hNLŴHwJp&U-ZemKmMIMl2D)4 ZÀ갩T"V&h,NT*dse- ѯ'S(Mw,n. uxݧXr_Jxj-|e: rBA0!j0K"j{YߑWחxk[k)+q( `1'Qt^f"Ps@cN$l RPJ$+W9obX(b2qYeZK|J2Sb۔qbf~y&]R+tYl`a{ -~rt}XZo3 >k Iʴ$CA`bІM;;R,H/NJ{( <1-db0~+XXPT ݧԁ|6bWWVZ$,X*輝~ʹEm?XGb/oE<$Q],/۴\#wԌvR:>c߬rywV?I)7 _DvnKhOĝiEH Z9?זsH=D>8 desuvE& EhmYvtE}C>@>*| ->9^P k< O#2䒡9l,Rެ`uMžwEV,OwI5E T?I/Tp 5dF `t,~`{<`A03Ɨ+zZ':# )rHaaCUK6 R=ͽR"k(ZnKP|.;bOࡁa,)- g@}0Vo7r~'Y u]uO>/ - '=cdl u?sLZҜ mvӓd^ĸ,R^^y8Ž2$9cqAJ>T2o0h]`vPY(/6W@tifajI!*b=trxKyp[c/sp%~,`AЬac'륽PSqӧ=k+a+`A?;,Rmoq\=ncf| g[G+{#E4kgA ^8)|(XN.J'8Ns,~y[ F PnT$=hRXKP9$P!PxJ=%é3pY*uVKݯaq941wŞ,C02^`AH2<),,aō4lNMdL%U2 ӆc-^n>lY,NG<(;$n2w}tvxDXlj߀W,`1"8Ln?X9h/N_L交Bȷ!"_[wՋb6;{T!HdzD `{WVU8GM{.f"h,Nd))5 ,SQm$&]T` eQ&=v*gNKUn[`]D*_=2l,*5ƻE0$lv Q##_ʼn̚vX1%kgT)"|S`1|Cҗ%GLf@z'zUѤ E+nJ_r0Y(d#TcIS}S'n= 2 }+tX vHE>40liʙ80gy05Cc4آ (YS&D#T2 ӆʥ?^, #LPxb3V:|m1 X*7,`bW,nJXO$G"([Mln`TngzV;cPsIDť@@ @9  V>7|3ss!܎^H{gl{%NqM;jއ7ϓ3桐׾PXk=r:XAlڙTt^5Bu_uJF綋'}mmnba YǓFobal8L]FmS8'3zSk>|w.݇:utp)47$nXsz!&0&ttVڌ-9~׎]bahMn;Nٷ*'{[%w}o?2Ϫʹ9U;όMA6ikk__lR' 03 lQRѬŢK3 rz(Gt?隒Zmr3T1ZCtA0&7J?3F\(ސ;bN-.ϱhmĢMvs`\5Zz`#t hw}4ǪByP$-hSm꿆@<}E?-Y1*б`rث߭@Ӎ'[CE 7&nXt[ѽ{C?o`ݯt- bX O]-.z\y0eUi;˸}UXﱘ|.h?_07K\Ҽ9"|Vv`Vʁ8g%;YOw[?@(FJŔ{l0?i9Pt?>yR|!b5%kM? ZΞ.~F)Nm\l=?~2P30(-/BhDaY4{8G?Js<<>%۱!NHqT C}w)2hiz}td[SУ;Tw{og£.yOuz3k h2y1~bH{wxOaהּ#sj}$Ӗ >17%'% $Udp蟐/2ZKdQrߞ{?J,"r/g`HRY~]i|xYbXbDRX[X*-[}sHW,fhRBDJ슞࿢< b"Rbq(8[P|p!xHo:s=W_,k),JnTr "XyD:wIso IDATWbџbSeؚ%w9꾗zw㽑ưk"%7孵}k+TFZn]|G086Z {)Ov%'_kOX^~j &^PIA?>~tPXbNbucsQ_+)k?Oy| "øz  Ģ/BSoƕl#qXcN\ /Ev 7/'Tr}V"OUiJ2ůߗUIfV߉n0U oImcJnHӝsڊƇHbU+*+*jé {nul~?vM Mqmg~ѹBJ[],Z0V̧~, +8|?vYYbXXĜo'TGe"!g 7|YVxY-K)uSnn-ļR~qBIօ~+`bb9T:xJd˹3i\Yȸ. gAF}bx/XLvV)dNPjIy{ES+-I8"J޷|0"cS^{ E?竔yAg뫒po0x#{)̙N.8p]#/ns>Pwƶzͬī'"ލaO,\yP,&o0.ܑIbIꛯ ʊHb/HvqGic}`%>1Y3칟I2V,UmBʷD(ۡG7^ c"ػ<;3s7 ]QKƄ __lDq-k-/-`Ah`b#x%/esӖ:6\8 i/Y@)yzN}K{LտyIb&;i1+-R_c+`2dNr;.W1IԋS&5*Śy[y[KhNzBk olD9鰃Na ¢b~(3y Ses ":*wҮ,}&R@O EoptȈ{hw^y"£^NW( iU }-D &^U4aH$z7_6"}J翸l̋ҶpeAeCMMa_tY8sΔaQf-&BSf5VS}dcX'\GysǬEI^L.,VD۾59 hj />}\-^KR"QzXȋ^ 4TX8wƆ 'lMMaq@W|溢*L?ՊE.{)]jy;ɵCd̛ oT µ.,{̱E0>",Cy^cXxW5꒘?W,G&$U x 6t EcEnxAJ{`,OCC>gžԖ\!= G,aSŚٔY aVDa0Z"cbnѻ-銌%ι,?jN?e#2i{X/ ECźȔ(?/BXcr{kiQDԓ$BW̗]q`X\仰+m_}qgꮛҐN_WOol_U/c"Y'mOeҽԶzGmEF {HLzB7+%U-^}EEz!fo{]_ VM6"փ)5}4v'mjXxaYl]Ȝx;‰{S{^Ű*7c6 L) +OVC;Gx%#K[؃Y$Z ,(,6Θ 6 ^ B֍{5vtmHճĤ=#JXxVs7J}^o--];?5+^֐>1}W9,^ޕD!K'+KD|xDlV]u#g ,FY~ mHz_tH*3Гɼ)mv*flJ2%Cz?S|^=M햙:b^jkQUf6A[J@XaAX , ,‚ aAX;,NHX*,.9MXaAXa@X@XaAXa8AXoX ,@XaAXa ,ⓅW:, AX\tZZ~Wݏ--?\|҅ ,κ8C:,",@XaAXEUpiXBٰ8!-@=an u+Jpհ ‚  ,~U'a]!,W8vNQ=rׄ‚ / a۹߰HX&,._aAXaQ{Xhj* omX,h&,z¢9gN۰$,tWaa" Imǎ}ˢ_ v-ͺ+?YfnBXخ{Fqd(EټeDhhErd $`nF2M8(<<0e}co vu8S ,@XT&,.{ ),ni04DX%7moaq8šCXЅT#, aF)a!t%Oaodq۵?߇Zaqoo{K .,~ ,^>E]X-",%,[orm]7aQ{E3D%'Y7jQ[u&D/Θ}vN-)ƛ>-loyoAX\4fffl%I^cv0B9E+a+%[`l_dTߩK`$:ٓIejcU3LJk#Zm*tx^Ze|q:U@VkRf@X\aq[X867AKˣF#[I{"t`[zn+.ƻy]ޮIkA^/! .Woյ'ٓI  sPbL3JL'[EB;UWDŃg05{2kD51d4c7hX RޣXuXJ NkשrRe&PcȏF.&,wϞmm),4iQBX\MM YQ8N;&}V0J]sI)UM◎u,_+D- t{կ "Z*t}XdzT^H.ESgR(6%םRa a!Bh+%f }t h}.ǨqPC mEڄi#~1S!HpMOVݰuao܇5N@_e͕ AaSqaZ¢U>;h5h$-V gIebhZi)3l7gyhF;# ^"F,PomKOOJ+=FtfG(^,s۩xV-ђ ̑.F։ a=cϒubFò iFM-Rb+'dw=n^blRfHr*D3FCPwP׍׼ǫ+aa.WgB[Ҧ,|\,Mv'(=Z=lH4/v4oMOVuߧ("J7'G2Ff&ݫ S)oՐ\\ Kӳ;6f/\M3Y2աm/mbaCA,9 ] La'gkzWz6mf5f/:ޜ1JLX޸wyfqFgDoA<5iX8}l=&ce9 OX×JwJmۤ#E<9bxRCJaϵ6}vw ?auL [aqz΍,< B5CXr!zV[Mɗ/B .%G-U="TU}O/㚛8*ܠ}3iעyiظ-ѬUm\t,E]o53&C@t%nYg~iޤ\ẇfl]ZFWzϑ6] ŞY__ۥ=moVNObfu*7HFU(tM23>X2),f=0}oNX8vȻcB曕,|\dה0]Nc}t{F\8#_7Бx9.l4½wG8uUƼpr#[ s*^*ľـ5woUt'yIۇy.F_% o޴ZY;z)J +&<S X" ,13`eeE,5sj&MQg纷9"}_pI,ƮCˊ|#*1҅1Dj6M=bk){RhX%vFw#c o hSQ$S_osOd,|Uk|;\dYEMe4$창1Ud6q=mMHF8m19JL0߮Zu CuA5-H AiIbV@Y?J,~q޾o7Pe({ PźeXD]H/CL,Z!q 9\ \(r[@`*$gԨN95t: !$$[AX!nQ\ay4渌r+ _kp*B3EuUw jLbGͯU7Z\\:WG#ˤa]t؂c4ŕ]@ 5·5'Ts0[U{\VpY` C$H A*UQ(}ݶ/?k}/C+Xd$_I%{:"fa{-6w` ȆGϓG~Ovr&Tʲ􄞪[RIv>]ĚĦIj iեDvSvbxW $bढ़, |p~a3Z /zX"<'ڛJLOuOQה]FO[ڬ`_wg?3?\Rw H7)p3O}$H A }m(NM:5+ e޾D y;ZcGu-ݓtfyىhhn.^ aڙ  IDATs˜3N7bd"ɜ(GmȌ,yȏݚ-xS-9:s,&{Up%,0+= F{ E^pPhW{N2T-uY_{7r t~e+haF (2B GMhq뷏ﱮc?(wRI(;~vyYԊ7D4u <ӂ $H$wExwFbaBgoS۽- n2獸IrAqȣZSvHQMF<Yu qfCQ f_e+>,ۨ8Wp1j9Ӯ cU.96"vaʣN]x(׋˭ybhC g|ꔥn1az&ɊܑxyU] + Z"׽4uύH["p0uQBق8+("7Z~hs"Ŝ[/dYy6;tkZ A z7[~QjM,=l$[+ Bgc,+Л, NoM]DV~})>Õ|i[j%{5~=x[ט_mf/AUlk.| _faqZ 9ki /ydsvNz *e<zbrjy&^xuq̝|&}ȣ|T=?_Nisb#tը:>!oi򼦺G/ [ik5&qAͶz(K4ܯ1 U|kIȈ2*bqKP԰_ï5%æ &617Oh FssiM_6(m5;8.v msh1c(|͵ Y_1Xd=TryJjXֆnmނr*NɿOR3l%S|~ JÏ l5_`EA>]BX, ,BZlPX(&O~X}tmhѐjx'[9b~@^YV9VnVd ^gy V U 6w:G:n]i*z-QGǺ IPôx^ҭ/ٓ==qx|}|Y6j=}5g E_D̏ύtЧ~ Qv6}CY-SX_V~y=x,}{p񹼐z4]:%5~ X[']7 [\e~ߔ|8Og#\h.֌oW 3Kx?;&.Sz/jǚ @܄Ex #ͅŧiq "vhnH.$Gk?Mvd%;~aCE$SWָ%ES-bʕtQ7_GӜR͍+C^Ac<~`ᇝ|5]uWM=1f`]W8?QX[,nł y j-8[ĚG^Ár+3FiBͮ:$,Dm"d[ęf=̎g"rs{ ȑXux=^t"$,OXd e,ꁳ5@|iN9^H/ڽQ0+a!ͮ G, 5GBi0.bq8 YP5@\e_ rBeK8NZ ^ `şPBX8VYg7.í |#:a8 `Vۡaz<.,T}maAvKPP5@\~s8y+Y vk eD,Bmk #Ǽt!U$d^ŭ6D,VeX(RXeVBͅڰ#N(;bX),',½PҠJ,d/ [ =JvBqab!ێNFXd Yspk0-agB(b p U; 9l֌XB, Y^Yc.T~~-[m۹kY|={[QTTTYݻ,᳝Qƨ)// !w`Fؕ(8WhTI jNP"U]UUURrʢ{EruX]ǻvnVp˦L(1l+ of ,iFX,3[Xsx|{/,|e4eQQ , ,ma šC # ~V@Qa=WPB +J(uEv-,}ae/,6 Ia( f߱-,0zeL]iY~YpӢTD]ima;8OqE[XUaRXp~˰Xf"4JG,mP ! *,D/o+aQ,]a˂ @XPϢ4,+m+`FDh ˫tZTv+J_DXhb2, mcs3b/aŊ< ,t|[,bKetC Zӂȋrøzi&f ػ/Ұآ PfL( z XCj,Vm5qv,|e4-Tҷ0ȅb[-*Djj VB+\F:kVGW:NOanHXE Pd7t0 e,T΂L .LyQ. f ҩR]J+TBLPt$7dvNa.. 5΁tG*tYDYP"PM]!mʷPHؽX]d9iE'hKm&Яn4핉E{ꋰ e" eP4,YHhQB-ǵ`Wu\[xҊ| V0yE=Pц,:b1քZXpEz~ۼ7e-Tn"|cVJQU԰ zyO= ,P]Y<-6obw2 *EuU+Udx +~E7+ʣۧrj*hP.B*Y*$(Z+.WDE(a5Hn7)qYY‡ZⲸ:Bkq ~.d6i+¼z΁Etkx2XX܅OY<(ꑼgzˢD͚o*HF-rn* _x\>B+Nx-XX<ӏ}+#7&OƺP<ٲPwnC,Bť .\|X LOcD*eV4Z sgvA QʽaA=],#yyˢUYh2F-􁨍[B`EhE]vp9:zAF*xgՊzś "n+F.Pnɢ{qV[Yd5S[D&x=s-)tTQ6T~ozŰ XP[͊E&TW n_,ƻPB8/fQC>K-[dz~SD HA?eAսm5?hV,V  @o"`"ZCZen0aV)tTqh+ڶ+dq{E?Hbӄ=X,,e\Ggkf!R-NNB F+>`zjs;/)*ZԠW伢홁zbfd)C図z{,Bg[T{͸FQ/pg& }Z,"bQvY2T5Yl޳H+n=87<~;1:X֊vZWTeN. ,'&# S9(+EjfγyXҊU9p^" ,>5{hhPE,ŗCdvfb{u(Q Zh+7 -]"d*ZkPU+қћ۽# ݏ,v`A-((q #>a;E*jX1VZQ -nwhu{bPMdNζfq*YZ4j1]$b4VB+zqx[6^Ovb,LGlYŠmܢ#b|pS%*vҊqԬ^`vpfqPmY(8WjE73 ӨLY*UVk(^DطX-Qda,Yl"nC=o̢Znё hThpZ1W<6be7,v2YHw ԡD-JjaȅI5` g"Aw90 E7h#NdMʄV-ʮw*]$~aA|"ŠSpVQv+Vۼb%E.C5k61ZF-(v [F+bx)q!p "b]b^,ffvZBTv #]$p~w ݢFPmR NB[P"נ:yE+F kVu[f6fˬ-ZHvB 8!&OHNB[EҊVޯ{ł7,&GsPzBeO{f!gZܢ.b63 TUiܘxSWE9fo_,eq$b1eq*סZnQr 9PU 9S(NQ gVnj+X =E؅Grʟ6Y4Cmª\z:u %崢zmڃX"T5#M=vO,Y<2fC fц&n1EiEYP!!`Le.A*U$pqEAsP+{żө'-SІgg]AմTM-ZܢE/`XLjT`KIS?iHJ18UTJ+T Ti^yE]ybrbbi(Y8(ȱE+F0:p)hNTTaE6P/XP],:T%J1el`ISu4ͣjuU Tr *+v[~<Ufa‡=(]h `ع)jN+\ZQ^=PK6,'P"VZnaElgV)SV!iEW,E[?i-8np:T-D.]TPz?g:9U9E g#Z+Ws6,nbKxh,jhvSʨ- efLO,!)siT)$(VH-ἼbfjbQPng,Z|eC ZBɅ %cX-f}nB;H +LZ㊯VԽfq[/X"bD/E Z4jQ"dY/D00˘K,")(V WqE Ԓ"m)vb-C-6 jQN-rE!X*!f*Ev *V<%(ъ^1VZXP5Q0RZDnQ؅%P#JQ"IE`*Zawg;rGEG2E&LB^yB\"j90EDtba[Y|E--򃨼-x*/lTϜH'kSQUE~ٺ}? unXtK޶aZQQ\-/(G4u&C44EŲʊy]q@W ;Eo~Xz]ż"""/]4uS4&IDEV TT+?t5bETҢ*"k2.H#Ovh~ Ӱ6EiUYQ]A%능K QY|"y]żHb9/ҾcoSd1L&ع*]Eɺ"{}2ԺHvi1Eu^UƐ_x̑(:ϨYRQ1WrV,+]a!¢_5T{iEe\-/H #!m#YtRΒ)("͊κbj {E*yҢe[q1EQcH Xʈ&Ң"*zY[W]<^yuhC*hiEoq1Ee`t3vt:WoQUEuŖhܾCXtg;VYTK(-^ۢ.h5E1ATVEuE,>ݣ)VhYd;fZ"[]}FT|l%tTUT4bG--´/~k׸I`$vƨx6D2(nI6oQ1WŴgEw _T"Itqqk9.bWdʘ(bn[TUż("Vl슍R9T#-HVS^$}Q4bn^Ϩ/"]UFEPhA˅沘K'-x.(Sp`M՟x*Y%ˊ]q8hg,-HomQEi_"CqpN?b"/16תEV e("[q1EQblϟײ)x(+# ,K$-Zmq.(Sp`MM(ЮsTl,>e1Y[q1E`8YN0*Ҫϊ+>.tebKY|WE(b/8$6` "Hbj<*UfE]ҢJ-"닪0:ٸ:O"*+zFW`\iQI]yLQ> v x)nQWrVkE{gQ^C ErES]yF\6yPIqk<*ҪHbPgŖkhEb.Ҽ c34O٪"fV/g[/-´"2/1GΑQFUDYb,Fbj$.m-$ESTܪb0+b!b,'܋iEs]yE2|cSSQWrVT϶/bUYXZDi-"VdhS(n*eEm:,|iEb,/ 8Fk&-FׯuSܢUYXWꊗ{ XA[$qQE0VIpXYϪ$YbMW\9,ʢK-Ҹ" :6DySLQ1UPV a9/"-"2/zO#zZ6E(b]W\E?,֕RZTm9h.844`[HE6ERU~aq΢ziL`oEX'1e=1nzWu5¢bdiQEi\uűK",)樨ʊ늫+a,:iEe],$*-sAUȮoXjHZDmE^843`gJA7AUe֮x;hi1`[uQE71V5pp dμCU1gEc]q;PҢ("CD(򦈢b8+w#bb[ZmQEKhzC)ؕ.+wyYiE+.h ;C")a1XSyZmэ [yUY+v+ve1A[(YqBW\3,V\Cih,.h)CyRdQѨvV<;дhEE]y8z MFE*8+¢.^Z4".ZqZi )hWRV,tţb΢(֢A[,!K*YVŞӢl8.bG"<++DqQE30N 8$AQ5E/*ʪxҬX ,VEQ],0uS|,YO ea,i-c7+FYb9-F mE;0- 8#A*b˺:Y1RCk*.꺈b16 pڰٚnARTlZV\+BX<*j*.¼hwD/(꤈"OOW#C?Ν8n8F^A YeqrZjXH-u D(¦hUSgaqhE\;p76OۣY!,mьf^,=SN̈$`T>>@@@o~?nᆆPPPUUUN_CVZZZ˾HZ5GNUfiybbb@S\mcsz͓t˦444rrrπеӆҟ§Ǵt2Y\wFg7FbmS_o\kx_·Q_fCQhtyHuS|AQX䍖v$[tRNS  $/=BP! "#()'%+&,-.0*2:14@3F65KN7SX8Z9_\caEHIJMWRUV^]beA] IDATx=v8|(K㩒}I1w-H=֫"f#3-QPSsKxќaBX , , aBXP5ZX:Fd a!,BXT>,|kCX  a!,bIKa!,FXL\Tϊ)>՗,^u a!,b&MQ-&wi a!, ILE55BX  aQ*`I2/Q[ G¤8#`&N¼xm!,b(i10H)q!,m !B#.[ZL~`&JbY1<*Մ%/rbi!,@XLq ?* b;zidE^[>@X)AEEVQKdE_\:TaE*rbw請2oXoVQ*|??"=0GXM!{tai184+"/(Ꟁxt]$h]6:$'.iQ,>_JdEiR8}mMԅ, "sZ} xG)T]dEOZ4ղ"R( E-tE$+UHC?4yѴ(+Y+z"++&/gH_[EXo^zXWBK0HŰx=EyE*"QO7rh"2h^1(+UL }|$8$-ZYT芼GEoQT; koЈE .2bpY+ "UyI/ ۢohQPU5ň)`F̌X]$"+-qjgE*MhGujhZT,FA+Y_$X:#VEa}Y #؏ܴV+z">48!q-2b63A]H$HIE<.iQT{ӇENWĶ+"頨p xtF.mDbHY49]QUM @1͋h[EAYL,b]{ *Y~S${ F0/q;E>T8F[dwEj"8Ɋ"=1Ts[E<-:CE)␮+YS%EVK#ȪP^"0HEТŰlWdf~T$#qծp]t"/-ruyY4ɮ8IwE +"2R$E,Nrˢ8d"خY^S$zvF(/:q3jТZYm'bkXUt"uOnsSEwl=:[<(7_j__n?ǡe1}Xd ,|g%e1ldq(5?Ov4 l;-Bס."+v뵰Xɲ8zXEhsjo^P̢{x5;gEiWl ȷXfqܰ(Y݃lf 5d͢Hv~θb9w4 ϲZrS@a,, bX ~b',v/B] o߆?4e3غ 23yʢ(,=]q}eS@ˮbee4"w)p7x,8Y6,z7,rbk^quu>tiS@_}OEyYlYDqqBbK)@X`"?i|4s/=I}& 7= z I1&XImeGpvvvf~7_7mͨq3mᅬ,NPyԂ5X>4)” O3,>P Ӷy9 l rC%pE5 ub,~>X,sI'X,\m'ik84G~ZwvBi3i#T6`+y!X,I5^33cB,J#+WX?Ǧ$𸿧6,,,dLX57Br=Xw{9 `Jf>oY 2X`a*X6BI \a=ѣ~;XtEC7CJ5u~;`WrE\3;>>crï,,K,e#XXi6]<f % f(SbONnݰ0,F)`1S,fSAd1jr,oYK,X\X==|?j' K3TE/WL*\ =Y&{ɢ-0`X\A KȚҒ%ꃅ鈅`!H.X{"nHEwpT,X9:Ee*Xts(,da oKSA4W,,FIZ3ᘅZEbct[aa)X-P&Xf1 g|4=^y(Q06By5-G3TْEx]HWP \04C+gJ1aB5[s^ %Y+Yd̋* N({5B,r"kjK^G,]^4W,2"KJ7 7C ,X;fF;+;b3ylA/TxBrń`!njP&X%XJҐEpb,E,E>7BjVfTm[/cEY]@`ah,P N4XHb J(er+j%Pv*+YBVf1`4ba 5)n',F(P.XJ) Y!Xo:X↫j*a,Zi` iɢ,[S^Z1X8w7, NmBܲ3XxwBI6(,bV.YB E(*Xf\ƫ[۸'o%~PE2A i~^pB,\P_HG,E++X,2"+Y % EP ׈pxO)X5,,gM{^Jz"N|׬:av_]Ӧ,č^(-X5 k'`np,{*㖻ۦP` I3_b´r{{`,F]G,mib` ʔ48e1*,B N(et{ ݎ ;nɢw~{ o{B,jhN`1#N',@`!MY$g,% u/h>dQ 8XG,#핼`Ϋ[K+vB"XoX$"ݮXHWP.XǷ]{!<=>߲9`aNng`wB%7,@?"{`'cz;`3bwBIPM*)YXBo,FLW,ۦN(at{g` ;*?-] 1XjKy٬,Z-i,#Xg{,^zPj !XǛG,N G7x57o4||{. Bե^/^(EY1XM|5 JB  ! ezPV:U+Y,VSY/ԴP|",nǝPۼA{8% `mPx/x#O`ڈE~/;b,@`.o)Cbxa'Tvu;[  \J{6 P א-v< NjW@7B{`ddXr!?9󅳶! W (X "ݞeBHn, 0ca)(`<`aD[YeBjҸo& )XF,KJ'Ԇ` X`X QT8lX,GBm(Pmvc)T,eՈ.耏 2X:^&ůWt寗G~;I'gxn?~?mEW/k'_^tj}RWo? GگG_޶;z{~wKX.0a&г@4a|#L{U_o@h+J[dl0H%ofJAܗt%[8]U=*p*P0M|5.8ɲފd*.`ϖOh;~meqos4 WLq8:6|8·h;5X4WpVEP ,0Xoh Vs(mڴi` qb4:z S|ߙ6_)҃p 7+  ;HC)S[k`1iÈTC[ќD/C'w|+23fpyW*in63 =SVr6i,N"*j`Qԅz`Qmc wXP,83]G~J6m2ly.W|,7M;VNw-XMhydmxԲ]ҚcNABq ؄VhB%q%Xx| 7];hP h*X|VĆ7B`=7H@QD.?8a -[J,ckz+5H 5`c){e`3 PBUmYlx+ L  %~V9Md׮'Ō9.xNM-Xx=vw_N̹'Ha~Švb,mvۭBħ $ٚKd|NA|Ӗ:HѸb,)e{V`Ahhj"{hz]z`jKfks%X}wѿEWؠ& ^v(ySǙ6mڴiK\fz 􀭴fړ{ ,&b^u>@1|XX'܎ ְG*uÊN6V2Ims!8A\/#(`Aw- +DBQ&<`޽ɢJv/,ԢPyN p(劚`0==DJ#=?p= ,<`| mua-mڴ5 o?&# _:XRJN !D b +Ǟ8GQN̦u-XtXV5|i!bPzQ`'Xu,  0Tw77j,nd^b1m,V,EIT ;3KkĻA&YyH_bUjW [,NR']xs ,y`w@YM,d^8Xȱ(CQ>bA, #- G `т/GvP &[&:J6m&&w;9X={ _ XzPXxrԀ 6i髑6my1F' _Xuf`7 w=cb3Op2Xf{  ڙ},c\h)DN,B \ Q,l8X dbA$$;`1`qXS[m,ԛݲP>gV-R,~4X`A2+>K(TVvӀEy B_iV>Kզŀ>>ҟ4X|`zy.pAGAcMsyAm7sL9X l[S, !B XH<η2 IDATYZ;S:Ӂ[ߙiS,xvO3#)k*` g2 SS9{hBɾۿhYfW%xnK`asO^9lzJ q]` ~,;``ly|hn`a0hd"+S eyv'amhv`A@=Mh~@ƧǛG /,rdZ{6!NN7#\4; ߋ&}*Vmڰ͠]XPg#<B(zi,&t [q obeBgdE8tcb.p݆,fj`n횲P/ ,^)`,nk``aR@H*W|L%F%>fX]r+߽JEqJLr)#3[5`# ߢmW^#rm,f.+aj])#0ikaN-__ǴiXzk@̽ETw%chx`rU;Փ5!S?#`D å"X4$Xqe]ƂP7AkWkRƒQ 2Ö5|im8mN]3S(r˥B?HeZ9lMl#PbX0/`K` n͑o$.֣m??;z_ejKݜiBJ},n`j:8x[FU :6YB *bz;˗,m,kU{< ^ )4>[v,xW$Xt$vcr4tfB`ݪKn3P`E dWcy?"ކ53Z;@E[u$2Pz7dmdcACbD?J"(^ hOŁ8$V,B~`d` *8:U> ,00L۷`_,,GP`a,*ÖBm#ۖ;BǠM~0`1ˬ7~,7o& #3`qo>C u&7\CM}, 7 (oK1p)tHH,7<j׫|sKp* WYȂqPHs BM@+X|+X|"OEV߬ld,_X-pAw%\ VɜDޢuPG0lƹC޷k?A>P`)Aͫyո]!w*K YC4 u3vK@10,tŊjD2u?kȘ PH׆ ,"y k,`a/—lvac?`q.~?7F_QӷR-'E=ɀ Ml:wqdZ{VXȵw$,>RXe!?fE}"~.&D+lED~&7X_Y%dp*Ĵy JҰHW'ECZ BQU̦ ˍW/jXN'lU7Y5P :(W{hSƯ| ^m8l 7za;"79a۩kmM% gER"[1Jƛwr)Z5c%ûoүfb"/'Yx:iX C,z?f"#y9)dayiIzP~H+' Ya3SE޼?.v⣆œǵ[ [?ũ ZWeppXycpBX\IX$]UX>#,bTܽo~f,( ܴb_JX,+QdcuivqTaquaUbo$,ZZYIY[X+{K)H"'uBIAgB"ꪣ(j=,$a1G6,IX_,ŗ(D`woa[B/]a +S jcx<;ǩ EeaiGgC-[b?;Ȍf*,(j+P;YvB;O3aiq^? شEQOˢ]Gt["eGMK펊-,1s X;S1ZqRfڋiAX\*,ҍHحlOըEr1ԸO lRXdeZYf,HklAEEZܣ$QdՅ|!L }|)T0N'H.*+\3?8GԪPm 'k+B?O*ŢP/JaQz{7z{') E+yq9ܦD #YIJbpη՛,TG ۽8Wܾ2crGo-,\vѪK@Xʢ=3o.'&H. ;Ty1Qg6iXnH.XD$5ĨBGe͎Չqw!I(m K/"}}y}S /. a-,*]å"9Ʒ'G?x*"h }H>*NqC#9ƟȕeqHܕa=NkXO;O6._lnXܺXX<~BX Pe.Y6B#5~Y^zUUBxd'̶ 2,f[>Hblճ׿:40C$ ‚ش]ahaa!76x : *>x_EۄnPXa ,@XaaAXŧjX]ӧϞ= @X./~|ٳyqXȻaq5,>#, ,@X , 3ik ‚ ,׏8aAXpyY0__%aqҰxE( iX+ŝ$,",@XaAXa ,b7,v a@XaAX , ,‚m Uţ  , ,‚ ‚  , ,‚ ,‚  , , ,‚  , a^*dVUfECW$as_7qX]{pٰe , ޾}gg' KZ2-Jmw-ں  , {#5/Ж2/ 1Z2kЦԗΣܩj*}EJR6˃a/X@,X@,X@,X@, @, @, @, @,     B*bd[;;TW C9z `b.2@9Epk]ySBO|RkΥ4X@,41ϧ?96! (Yyr8`<#v\wB+fžU>6b@, Bg}%eq⼉ÙΝ?ZupTW}O!ZwESi^_z0_FQQX@,s[&?,ON/_ٛa۽ xF,yITy XD2fcw(·5Yy(Yv}oKy-u)D+M7C}@49{՘F9)Ӷm.6ոesI`V7yޜX,IRwLB Adu<5elN)OOb04*+~R|ҾW?oneIuSB*><"]ow%D]YLs|9O:!x-[obs%PbN7cxۦQ,_?X|V,TIi ?ݨ;]"WΝ*R {]>Pí6 $d<Fisuĥ\,{vn4z虴gtSBě/ {BXڹ#xR_Ru|7a>3oJw,[f=nfA_b!2Ʋv4j,3OV4j",)nx*銓(w0zUΔܛ:k$n-b~NBfV ߖWm{YB2X| v3.(Sz#FoKޅoJm6:fH6cJlqL7%-"JpcH_˼iݓX,}{`"Y _?طO tQ"rm܋ZUP*05eS0 f.sIB%ucS%Ym7ĺMn8$W BX\rzgb iWyg~$ЅwbnyPŪ{)Bz`O:&wÌEdXC)!{~4ŸX,7=b!XX;CEvRmj]*c:2mWXnxd(wb_,*XۏdO OEQG}cUǕp^APS{Ng 5< eJ9TN^^h~qT,5KjHJhAe6*{VCI 0 !G8=C}yYKVMU{v ݜ'D/?mߓzwEw|֏FջYw]S?%Mö{mn\"rէThX 绛>a!,2f:WNy&,¤I7WwnͳF|qBZTn^͖er4L7L{-j}*~ (qv]LgbſX|5Ï$5,I~qIJX̒1md—?'/i^͓ݝESGɷy[⪉IjgG#s4MW!;Ƌ4Cf @ܴ|})ܙ|n|z"o64:ܵla߯ۿY7$S8"wAkxNǗoIru+>Ю z4OҝDXm7hqXw2szOi|Dp2,Ŷsw?B:C6G!7mZo{Loi]=ojۢh-4Oqn9ܶ*aU&CB<|sc_pD=6r]c{u @v=Naq8 ,#z60^iW *ǻ8l3hbWaݵ zSwD8yP,oh6~N0~^UcCc80m|͌lZT)r~_jŸt&F? W7n#_LӃłا9E¿H_7B/êPx>91ʺ_Da!,8ìl璳lC/7{ KH ,L"mu@X|q2WuT?@X Ι}z>ןЄť/ܶ;'& ' av.>q׆\]mns' a! ˀ a!,@X @X a!,a!,@X a!,@X a!,@X @X a!,a!,@X a!,@X BXxX$لa!,@X a!,@X @X a!,a!,@X a!,@X a!,@X @X a!,a!,@X a!,@X a!,@X @X a!,a!,@X a!,@X a!,@X @X a!,a!,@X a!,@X 'u"R(UQ,ŲV )K5ҍ-FYÁda^aec@XaAX , ,‚ aAXa@X  , ,‚ ,‚  ,  , ,‚ ‚  , ,‚ ,‚  , , ,‚  ,  , ,‚ ‚  , ,‚ ,‚ l;Ț ,a o6/n/<#_^V8aAX Q *zsfX{7ؽE׈Fd/A,SbGm\׻!}XM%W6{ߑa0TI RkύPaAXf]cJxԙuIeَ%Y^^7'A a/aZWKG"l{ұgl wEl3hc!l]Șg]>7,*'/Oݰ8_gvE$msCOg'jd2YLƜʵWdj\^5udRB%<tb?u⛃ϟnnwү>MqaAXB,Hn<‚ 1,f#NX<2 K|ljQWztTeI5ocBfN/zՐkᠳ~M]QaZwWt.?oCB~Koi1j̷2eBϷBl‚ aVL-iOXfKapo;PWխ/apašt֯@X#xwC$ ‚ ',0}%kedEåϗa!goU_.ڊGJfHiNpfk!s#[, L9#m)tRfi?ӷWI69;;+g1Z[YQWj5=-7i葌h;,䆯(ʙPBNкj'u9{jwR‚?Y3{K8 :莧?̋Z/ߩD˜b|>e_.ȱzI~1]ϻXù `zxkTh=-`tBͧq"ޞ LpbcPڤboX c))Ø7, ^:_:{JX#LVvD^~\CTs.M=ȪClu+Wfs{|\tRO uĨX%\ c}?[L?n,a{~Ga\xw+^X xwBf`l9ܟhH# =a5hO꿫}',Jfw} ,QP'Y1r` /SjupyBdG:W?Ƒ~ѸlB⍱8);9z}ee!eKƖ2漶{6bG?qzҶQ s=Ų3}_Ag2Qѓ{"_=?fIּ=9oX,y>',39QMXna#ldKK~¾TT/]zv(هAE=om+ϤbͪfN5WDd푘a3O$ 6G:r; SZo&}d}e׷eo}l KS 򓟏6-GXQԭȬY/' NWT=W|~,gD0[Bއ }#}c BUbaK5{Qt=#"iZzkCpe=26/ 깮kJ>q lnm`b;y= "[_,/W soz?|ۤVlV*Vsk/[C(bL-4Y@, ;v?V`bՆsyFafeta6_{ZwMƺVd^ďiX hyHX$,j_!m蚩OGռ3y øqv4&/âX|+)Cͯz]Ҿ[U,^o&6m]3B}➩j1erMoT쿨Oc[;*'%0bar'b!`lɍ<_W!0Q36:g [m!m< bY7R5%_'HVA^xbQ4vzb)= :9;Bz*>Q,4ۂE,o.ef'ZYv S!g-p»bûyk]sje'!(Ldb1oX[)]?6*W8E^;>Z YkS K5yX@,@v4{n[F<.ss '^XdIĂZYpBykTX jrN# X@,ffk0qvY43ݪ l0Y,_-PJEx5O b~:/A,l!X@,fºdjAJab\XԵ?9E|mFPp{I౾DP, A,XHGK-\Ţh>b<66u5^R,(gł|u2A8fX/^,"KU @, )qՂ:8qĢ8N,hc!ڞ׈MN=Tŋw9n)b"%%JඒCɹ=wJSŅoC򳥢g/a). @, i9m\J0 76Ovly͢PYYV,ERU Mʊ U|]r%IO쩕ŧSڈӪ--bj<F9S6 X@,er=-NSAq9/c7@b[.7Dł,avzt-ŃXQ=Bd[Tt~URkχX` '8^,R#(djǎb%-1k# e|6yUsJ"b,\ppX4P,v$p__s 0Ųfc`k"&רg5^,&Pq5S8ɜ;1W9 X@,3*`+NQ閸h[=/5i9R YPu~&`+*FMۺ)2 h-+؍7&Ot.vt 5b36hgvl+]9]xjѹwwN5zGQ:Vμ{1ܱ X@,惗Fㆲ׵Jq"f>e$sR`2w+0Y;qXvٸwԨ~| ˛QWlNgzHP&8DGQ_ѐ"4VԳM=l1xj"=2U*\dfg\ӭA"S U3ٜYMX:U.mu5`uNY.+k/Ws{}5E'kDZ?#3Uon` ,2󵪴Pp-ߵ"m5a6ca~Ǜ^ɁksXhlB%٦.دm Ǟ mҸUmiJ|3]] ‚hܝO6쨆snq靶cWt_8燅m:} ^Mb./Ӆ¬{$uzjͭYe\{:,^ {w~"[ >=‚ ,v1OM#{|fܟ<}1Pk:8ܼIv#'uѵqjK #o/T/՞^\͟2{yݵ}Ju˿ݞ'fV7NoE_6]Jyz}:geB‚˘$,ǯX , |X\2  nzX ,Йrb,x 7U_z1D}ZNM3ۅzJ_1 g.)^GHGOD&_`s ΅aAX)1 [K zv<(722t2wD^0,‚x{<'u|[p~K_ky (q , ¢{jW/(4"^WONϹ{"uWҁ]CMeDRԠ6Jٷ:Xi*5^RjDC&h]}jS%RvJygY9VAXxFE:bb_ɩ^M٢#15c1.2i3";[tMɊ,_n,)bLؙ7[n* ‚YUe񯤋ňȦ/ӏ/D~k~ |ިBZ"!,d~j2} ?d//=EQķ3p>a>oaAXLiUf=z$wִ7mܨp2ovP߭MXAaXk,w5VAXxE~6)Gٹ}4# St@m Oxaž7Zm_]bY+6NfZ ‚ ,3> "} o*eIŁs”ԩ[X\#Qm O~`bV\ ‚ ,usڧ<,"VX$[V%,@XwlqYz2,rx*,ByOuװ8*azG!(DUPw:%upbXV~*aiazȶBА,О83F5-aqƘs{XYu:,eazʑȅPj~FP8 ʬK"U8ɪ'aaF8ƶa‚={~J"Ds>H0dXh&Kvy*rsX̩&͟aY azGѣZC5#"CIC9=<yN){ض,&\cQ&ECF=,BSm66a‚=D_1 ;@-3/B;Dd NYo ]P\=,}L7~4 =gss'?|XQ[2g|i37Cbu䈚oȞ.Q Xx4azR:jmΠ5b3P-/V]hɗ[8a ,@?B#7a, CFm o ,:MTwa<ڦGy/@X5W}\F ,‚ aAXa@X  , ,‚@XaAXa‚ O?(X )-P L"t3%LY$d*s'ْe?ȗx`nGi= BX , aBXBX , a aplF40DVv:2BX]Ix\IY a!,r9޼xl<,֣BX_^XCm)<,n a!,aq@X atwX]X3Chy|",FNk鹻[7)U׳]&jKQ5{`~n,5'ն7l˵Z!kœjtCeOVnåBqe+,^׾7OZ*L/lj7a!,:1,7LhFQlΎ$#j$9ߺ}aѳ_S/4~f8w##.xބ̰7]<swޔ"JgqѸ^>ˏG6'#fX^N{â*n7F~-aij?*ћmUN#ꕬ>]NJcl{JBX N o{)=)lvm1hA\k^g㙈KQk߉ɘIO/AƷҞhwzryJBX js<ߡ.́{څ k3n?g|2,*_m]~Xv2{¢mޓ~*a!,@r>QfT^jfb1_H ?gzҮDIOc8OǢmKnI#,蒰Zmy_X~PZV {bꀰϷx,Dy:\_Vaaќwka!,@wE:iq=,OGL{{ca:qeǚ7X~{O?G꠰X",貰HVwP1zߍ&7:(,6N1]o ;0BXtQX$ٷESxSwgi l.(F:Jk>^E:a!,@W_a=ʻ&QG ox:fmv7(",j;BXtGX|q9nDr)wO(XE\tC_1|>]6.sٶyϷ-M%,膰蛊ޙdd7x?Xn]yQ($,6b񗤼7,F8QN[LGɹ#λ~S~]Tb"6G6&F)DT6">ӫ m: \)&rOEݚꦰK"aW}ۅ|jz__{u)sg~wӽOt9/|ڳ"4Zb)7<aQ^<:#\o\=83޳6Ӌ?ٴh;X8j[d=BXe3SO"&~W]>Y}/;U5qD7~^od,NXe?, e2 洹?ky'?a(;2,͕gٳbR,ZIea\>?񏞌:VUfuGeP/;I w:U5_n/b<^v7'dk鼨Z8?G\bpi%q@XT w ͝LQK̺6~ZT>t]ŭwu=mL( ld6 $% !H ԒBJZq-⏼cYۻ~9"^{ZQp$`%p&Џ| 3UeUw/IP, ԣֽX:nb ȃ`Wb1ME7#'UK,JܗS #,c`b]B2ыUw tOѼ?Thˊd`<~)+Qf+XHwegK ~ǒT=HE߳| ]|R L,ZmD~ҿ`l8i>^lA:!mo`;!w0J ^l)PkV.eݙ興PeY<$Nx-?4Qi^Pvmh"@E(e4,Z_EV̬ghf*amw&2[~|en[#-r1baW+OxMS~NoV"Z=W#Ev}8Q@?6 ;TU*TދD{CGmi|{*>^1'Tr&?U%7%m F,u‘eFLv ӇXU~ 8鋁ha D&2bT=d!qb4c" 7&i]x}ԄFK,#GhW;"j&3f3ɽiż]\Dwk3XDr9։s^xQzz;5#3b=)noؗ@'")zŻ4fb5s{䧇XDw VguOX;]UgUrXmpw(VV3+v|9+/P;36?Vb`|b*8.M|e3ٯŜjkYq+{%ˊ;yQs쪑$ˀaBHc{I@eh^!TPc/Oe*r\_h(f Y{3tЉ0 VyL~{'X-nDUJ]yʒdcuGH_p *U붖+:jӻy|LEN,Tѭ~٥$N:gXu@b\]/IEzM!F%͹ z@_\ቇD&b|dw-;!|*7hIo,5Th8-GZm`#s܍*%EJqSdu>IJ ևuS*#8Z-zw]{UcJ©69 νs<8 ;G {Ul{!q!x3b*{# xz͈ŌXe&)V J*\'˥^bQ!{3&) wgyށm\abbOWgo/4{E%Cyxǀ&uzK[yfN;{Y syᵗX<#㊉!67 (T.+%& z qfM& 9W$Նڨrv1TbM7P~!su/nF IDAT$'pVŰ~l]דTcuzԟXV RvdXFލ~Аͮ bkB[Y ׷H\˻S؅{'XZ 1:rr6#zn2 dcGȖO:i4g *uc{ օ{Ł4'2>  U(rS˰G,r3a\]^~b֢TzQnC,lmer|}lj@[ bOObL; n!XݵXي[XƚL,6 *8-@7R -Drڲ"8y.!M–`qb g!G}e_%2lb5B [7΃l}K;DcDDv¨>|ǩKqi~N(Kcf;9 4Ub?C_ x`EG{c@#w6D/;IBQ䌅/`V T0n F|mE4 |UtP@MW|y3}ُ)RIYVz6@7mLtI-v'bd jy3*U(6͉ŷKe|jC>ҡ0e)A%c_j= 1>ĢMoǠL2b)[^w&y001q"@vy%o'#٥X\PTbs h"4HB!B.UEUh)PRQW<>tJ@&cϷA~5,fc9Toʶ@NKW16$|ʹt  _m!4UqmNrb)Ͻ3Y(27J ~ZG^N",rDiv4btM :ht J)^oj⅝ב{iwZnܠ :XB?BSr=P/ᨫ'D-@,*h>TÎ yyēSS#JhlvY'bXIs:o`ta,hPnY?{(j8NŅْjѺ̃98$ےD|f:H/i?6BEԢ{_j+|s̪g#P*a*QIWV\HןH V( 6^*~PEC tNW^`R1SYrjsaeȁD%RѰ|Uڵ-)'ݒOA~5 , OKXkX Tf߿2 2$ `Aƕ@&To-?e gfрhS{wH6we36t,`k '`Es^Yd*ۀ\T=݆2UWHhwATV^R o,lEkʼixD-G?=-+.X(I VBnGDaGJ>Ov,ї&h Ֆ*do=uM}M6g|5!eh1$?y Xp [(]#"*.; j+\$ 9Yq~ /Bn m^E/qF,,ҳ*lrZ9MeհlK[`1-(%J}N?&7!"id.X8fc>!!2-bF~g~TkPkaZp9i[u!XGF]L&I`vuPXȨK}H"\jSusI4X&Jޙ$IK99SV,Y8҃Ffw8'wLocHQķ+يEjX&,I\-^k_ ,Pb_Da QIChXiIE--HS~DEf^R Z)ʁ?y Xp [(B,ҿ,pzY(x@V9E"bH=8;xV@K9 `a;?XD,\+W!ǀy:hO#s"αU-bF~2ޕY;$ڱmAP ,fNy[ m I",| X<șQSF!KCuǔ,vf[ :[b Ur|-HφXFQ.AP#:Fu~"\.[,M4z l~R>K` ,"ҧq%~=}^ Z|`S#.M bczHV#+Y6$ |ʉKa+t=/@caBȉ0/7$V,VH"_}WXDYSؿYe}g[}C2tbW`5O TumڳU.Q$3ҕ;.?XZ|Ys)N욤PEgź5#"N,׋` ,"y /RK[`x"`Ǜ QȷFQ ;!FV*y0Ve] k>!*. !i5+,`"}&MR@[U&9?XD8qm6!6*S9h\(n!}ΊS!njT I#,߷e`t8(x/$R:`QiEGR;)?XUH"^r!JEE< Ћ~ ob`'fkײ41EGkB`d3'q`4 N?ȇX&R`Q`q,^Yv}$XȮP X(/"'a-%J5~, 4gvb}E 11޲[ۚ;3dG9cJ;Oߪg,NCr`q}4O`?C ,a$XEeg ,Z+S,EtS~'u+s8O#s|B+tOn6$z]|Je[ VY1h\oVV}Y2 lo4&eSC.H",l$J\!#zqs3a|3+?[c/IMonR<U'MZOڄPF& Z$&ǙrT+&6w d4 áHiQ HVB1`~lWDaPsBwD+j!޵lʄIE6JdS+"-4V7䨈hRӦ􏜙=323g=IYkzfϬ|k @,^-jrGywZ1i^:?랢~U}# ,$Q;&U(uvSw"9˱ *)՘X6YvVDrFLC,6G?׈p(֤D'[?7pY(#ȫBU*MU)'T&qTGS4'<#SN޺=do&J +bK,hi|}] E]ʹ̠*Pb12nx!/ø.bij-VE,$q Z%ВA-Rז C B2u][\d-2.._#C2yZ.?(4 괿z'fnbբ8~rd`Nt|0Bdg~ޚd򴼷X̊U~Ci*j\啪*E)E4Kծ-|Fi7k\B\Ee č-+tPPULîRM8"UɈE ^+CVu'{-5"NML;d?,KcSkHG3JjVEoc^UHyUG-Zܼ=I-%Es)3=xX(ҌoQƎFq1 =r E]Ii֝Ef&%B,]!tW!93XHCZd?XHf.\dDsy[QmE Pt>|2u-2 3+ƐXѿ]?ɿTL}P>!XӤc'GZcPbkEuXN8If'm72Z"?XCZ`IoHSxB :/;ß8 ns4v֏VE>>>>#ղr|Edϧ4md Evn'*>SocHH|>KoѾUl)0p2uW'3b)ΗXTsN/:E2_.EuG)ҌܟjN+C{MQhR_XmjLF,p9"8#R_Q,Uҽ1;vUXPsšYdMC6@fbN܂0]_bϴ%bD;!ʛBY.#F3ї ?alܾE4jqc`{Y ?0aeѲpb*GQ ! BaKl Tz=~"Ew w`xjLF,yC|2H!TF?{D۩[&+efp|nQEgGzԑ UΫoUD]֔OhA,&_ jo'PF r4kE;u\=bQZbAI[C,t+' w*lo,T2X kB,,FW nng4B&i\\B2ϔk 1- R*11< qn+Oq1KXxw_E'D|'G' cIV&0G.>}JR' <L,PcJ6!2Hq[nLg tNr#tIL!9TtNx᠈+k4(wdK&$~-ơU=A,P$ᕪJ,Ptp>(  =E~m[S0՘vK/9?]\{v–Hgõ>_޾X]ZJj[nN­֎t(##R)W ߪ6&D^M ^m A.(B3*r(Bjn|wkb:;t1ƚY6У(y݊7HO,2X iJ,*bJ,n]x&id6^gKwj>YUm 5~R}ܚIS @,_GvSe.>M"=r޴JAHo~,y_'Q%bQWw#hr,Ucr,.Ł UO=a6^ڲ %?98깖vJ@,Xu7o"ws/D[ ř Feg+y\4XƊy gVxJ5&xXCˏA@,X`4FeKyc@,RG,?X&G[[@,X!IO~}(a\H8X.<%UŖ{js /SѠGKE\Yq |!Y6*U=(TraaaqJB {ȼO",2D'05',_T`o@FX(yHa-) /8A}Bx.;/a*&ZPjJ`_X܄$b *,N T2It??,+%PȇR])+$,-Ma8UĈ:7AX@X|eTEEm),IN#y/M/*,b?_/ZbBcvΝ Q Xd8t;I$U ( +Up(鼻N_Pz)xo6/IZb\,?WaamI[:6%KaKD9Ri8}TŔQнqR*AXahpsC ưqM |/&,>;Q7\|pvNa*L'/,l ׵XJDrh6q.,xcoH| )|%,[~`}{,aaaa!hc>enhOQBA?GDq11y0֕cDQzaƎ ?eLڗ'&r"!3B}.o-/شzG6[s-Mj UU[ٜn[l^bsKO\JnknZ8g{O$ݡw23W[J9|ȟݧ3ҨVaa<ڃ=5Y=Hɯ7CUYk3d]}! fMV9$=ͅI?b׶rc[L=Iݏ{z=8#~7?|SLcJxNyXXR\ʐ G_\i$*v 4wɽ2/CX} en]e_#JKak'L8n]_[fz&ޱJɣ 27 dv ace<:op]a `si&[3)7bQV[,Bc)n =],-d"={~ьqMD)cTjL"e߽7K~.-svpĶmy'YSK!*vJMf,> <.iWf24 gFr] 9pe%߫{> zwKLmeFൌM3g_SdyKakh)+₄+ߥws6! —Ah8FXi0O4-#W)M b>&~Z fWt✖IE _Ef׎Qsi|j5[6E/.=_Cs^u%-b׹cW,CzH⢦_͘c|eZ{On){N -?99L~QnJֹy2Z?W =7|7R‚7\oD"ze.^^8lĝ;˶QOz/2dt]r;eW2/X2=IxTt5^tf5_М--uOƈ'ƾs}2ֈ~?{D?3@1p0*DX*(*TV" W(t *oY/@螜>}W4v*s+Ru;؅Rx*N"[HX`^,ov=⺤XPyK R*)`]>:X.+E,`Q ,خ|NLe Gk~,ZC֞֨g,RFf"`A7 dliiE $=80o^arٓB9Y>V8XȲ{+@#gGrukLs7uy|u㦙^"6tby:X53{.FbӣdęhZGw ZY=Iݵ=!,zr(EeLĨzg,$h$:}g zRt2<C Xrߦ`gJ].2c_icۋ2@3>F-Ze d5Bܖ3FƉ.#ÙqiohV4R!p a]xw X,oQo)qbH;kX\@^5&XaA?/V>ǂEApvwʯ2XbN}VPD(U&[(rd``; xȫŁ(gDP 7r 6 UY\֤ \NXbPQb6!/l Z)#3Ձ.p)XqMD.Lc~Ւ!6iaԄL>c];l&k"bM1Ĭe_aj)w]"Qph YQ\|=D]/֚9KM}syl@8r-,T PUX4 DEO̪ׯaw6mw*4?4M >/&BcKEGee9ƈ@0.Z +3X@y޹6fGC )T`4NLbB 0A8D6$u2=H X)avj&&`-?`qh,4ֺpslY}JES?,R-bNUj$>𵢭?e гzPbă C -w/޳,ǷKfw)`Q_,X] EyI9!> eڿ[&% WyCgffF/Y0j%QR0Ih282E |OqP2^_ {L (yL˱":F;cT,_G^5rLp{W{͏?Ȳ0$п)DY(?7(77J9xvTҚ|)kPe<3L2I yisѥZ_e(E,!X\ R_Қ4 {`Vr-+!Hp!lW1%3H0X6 PK#EwpHj"2R/x(e*,2̗DfO7z`aItDȼ-d}5^^`DQ3#B`oyX5 c$K]T}jX`qFߐ Wi{XXpώIKkam@-RhF]40>eg, =6 9mdb5x`e.]2Xlӹ !^H눽 ? S"c:X}Vqr~Ƣ޻VDEcicYU>!<ۤ Xh y \3Ьc΋pfnoH`Q]r7 `[?eW㓄kN HI SձX׀O kpY[Y0UM5`A%9XarK}r;?j. Dht!ݎfK,uSzЪ33Ct`aWbJ@e~?XTх^>$X<8;}9xS}D"ckt#tNXdeClj',L/ 396^7`Q,nW.ΨP%3nZk~pri;Xy;h[^- h5`T Tgjr C ¼R\pcq@w,˗ }TS5Z+^cK@bwu~ЃW^"rjht`ta-cJg-X h$MBiҸ_#i/Ia[`ذ {"~N* ii9q39V粨E,~H`,`6+<}459-k,HVlGfTKH0/r`rDRW٣#$QrOeL[X\A폑E ApEoeF}Zq Wb,h*%P;:쀟,`!/`K8|I {|ZShtC't.,r%w %3ba Y㓄`tNdkUZi6+:}2s`&Č0`N'DxZ<,qIEw!KXeoh!!vWKٌZܧ,,XEeYk:xT144:hT:`?9^v*X(x[6@=΀,rœ.pLQzK(m6_}Gfmb ;X,}` Y]tͽuIb\NYrEfBX_G0'6[ ƌ5.ER҅5 0AklyffgR(6%6^$ IDAT׈g1)Ԉ䎥Q9LyH"qi$T ̂ h<ؠ-J]dApE3I1M@%XnZkΠ8=%2⳼cřQ<=XBv,D(lk^R݅L=Y!!Ir7 `ZR=g? swl`AQtǿU}Uf'2[;ǵPWQgNADÔ`^:2oqU,Btme'%H.oPO|sX1{%#&, vވ1 (aer=$<.^,d2) ..cC',Q7ڀͺC٢_?6khrgP8:VWO#XenaQ`A`ӛ~lP\cӐշBv$MlywQL>fjw hajZHC|&ώ|?`66)^C'9wiVRll .ŭf7{bA}i3Qr7 `ZR>7Ѧ8XR&#Ѧ840moh=<4oue˞ؤIt`^]% rlOq`|lK!@{O mX؍O~'qhf}mxy dl` C#L>Dž5nq3֞Uʧxv=;ǽP3'Xh>ҵckm^|qU,P뗅HO%h佞$yE'y.]ؑ'v 80O=.1ҭg4f=X|en{`Fybm8BwZ # S}ۣ`nE):: Q,K F;N #hyg֯:X?D,s QʖXM& ozPBqE0]*,6z3oZ%!KpM/:(:BYU!8U\GDī*ne(Mw:daE94t:>8b/ЬS,#w{dcDYunDc[ Ϭ̼8— :N72]({Mok:sKPfw՝--<,>dey7MJ:sm'b?Wۗ]z'V/'O #hP+*z,K*NL-Q`r%݇Y(.QWwtlY5ݸaș BF.}q||je/l~^!c.N94š͙/*/mEXxmJ;5z1]%weP =&cfU]VS?[牅;Uזύ-SU]u/Q`b,~)Fn蝔wLi!yQ4gm#'ڝGP#]ZXxEYҩ̷6el5wNyClĝ81&tdJD/kmrXxK2-%n1\@$tݴzt}fx %@Pyp-cwp_6D_g^}[owݒKgzrQ mɹ7E=aP*jkvvݐ4!^nXuSVZ,._nF9banU5%IoT(3J,EF.N95a͙<54ˁ`h,{_m?yEJG  _kmPTᚈͩ;j +v^}ba.bVv\Hʚ5O ѲK*7OVT>xʝSgE}3.>Ѭte򴥕QϊBĢ03e&>vnDtvɷ"57hƾlSqIw9Y@,C:noT'_tmo=ސ%&̠C5ʛxa+759Vl&gni#G'd69,Jܱv~2^*&,98@sNuKTNvMf?Z^x?=يI"_'cQwL[ ݝhvrZ;[cr8ϋR36t]SŞl)8ޢOBW\XFJ_tجѵTn{ekט0SܬbPb8Vi칄hĻE N\'Zq 'j|BX )ms64*\Ĉ-E,zZ`Z  QT/ʤbu}Q>57@,1\kT}n黩uoJGpl":{/+D#T["6]ŞDU^Ѫsd3:! ?AbnݏMw{4p|/ Q?:GW8^2@ fp>X {0Ϝo+$D>SO;kf7u`n,BL)i{X@+eA bMP3\=gO'^eYRYwdٮ>bqii2fFZ  BxXWN'-f EOuߡ!Osع.pV1Yeb𽔖nyq@, @, @, @, @, @, @, @, @, @,ߝe]>zI@, bwba]f b+XdX n">Q  3E@, b@, Xx>6S_LφPXMN\#hbX2.>1ЬO}MoJ,V5ԓ;>P4B@,C"_$y]3-*!%e{Ҏjp'Gg>8bhK›Q~ՓCI=!EaetXL&/v1)-X(-F4 el/q|?5\q8xbaJ>'?d W؅/\)|,^\Ju1 ߨ4Gr7V6}o\޿bXBb9O/ ztUn0'q% J%X2ݝsv~X >R&5c-݆qd-#$WFF Ub}ʑP 'j5]sgj ?6C2`DQW-cuw&NM,[C) LB^!&$ Hq"AKePBQ t$ ֻ@}Uƙ>IpS5Jsb]b;WEaX,;qX+|/aEb QFR Rb(O,α8X wۊbRUa gY*LXRֵŪXgH;Q<$b*[b8_x)!3˯qT[,8D0Ӕ c.-v`tXTznn\YzOٖX|ܪ*uܭ̩}a=؂uZWcm)]o(R*%tN^ wP'P!}^G=0^ _o2HƜ-yK5zhy;ⵢ[dşVeioeb}Jyu|-:'UDNB@3evT#6b˘[venq9O]K4wKV);BFdQSλb7yӱN9Z%nUʼnUrcα;X ; L0i'|Bdr:R{"?Ţ^Lү) 9 ddeBõ\x9WXESHB} 'A?LsH^xɕ9Z4G,.b1x"AMq^YnEKb'4(Bwd vUb87`/ed!">+’"2}VmXR;o?s8Ug(Ȉ< XWr*E eXBVz)F_%2n<6pĢÊ/Ov);2D?܊2ΪP,lSn8鈁X@,_,>3R _~uk,7/mAmX48]|ϛD71 oo馞ј<ޙ3Yb? )x^EA"h%/DIOjXgwu.X@,W,طeE/ve+bu) R,d^XS\X e32ebQ1N&z1Z̘bB-/R,K\uq3Ɖzo툅{`ebq>b.@cܸbc*;b;Pҟfŭ)K,7 Wo[hK꽏B AEbqWnhЧ4hwXhh5.{aIqLcOXR(2+bQ%wY݌ k iny]+h7wx6?_#)ŌP,xX1z(-w8Z,V[S=,ӯ|8ԥP,T~QUB,&(*V."GnV'/bqR&MA+(0!-#rrC7pX⩞15*SH(8ۇS5mXE9$;^,SƅDHK8Jdn@4ŞFybEfn/+.>q =<:ku85Dw# BqQ-ʘGOĂu4'Dbf;6+U;Nͽ7Dce x;ƉXE)jh2$Z8]Ab'bqfW]8r,~I7>,O,XcldbPYT"nX5y*$įu[z#Ɠ&5]Bģ-fl}Xp0*\aCJ)X2lp ^X@,./6Ύdެs+Y4nϦ$u/J٥zh9ldTf.Un]X\L|߂*f G XhX|e;L w/=m ?h^W$"N3K BIB ( TʥBCaʮ,u-sty~ c]~MS+IgSyU3̬߰̑%aosL.T-nog2 ,@XaAXa ,‚  , a@XaAX , ,‚ aAXa@X  , ,‚@XaAXaOvQqP 'ͅd2g Cg#aAXZϤD4ui;6;{r#ɰQJq @X&⦲dOXЪ/q ׇaa?aAXk 8kHwOl~hE/.Ǜ ,I >{@┷mUct|Y]_X*ym/9g4^ 75j>YtaMLƢťGbo*s6<yd wMU є7n xtӨjًsaAX',j *?o8Qv<.1/$Y;4!tԋQRnn+g;/&;I*EcFNלD?$|6ojkKE|Xv`cNX ѴSw3m˳#RX+W?<'E*JUEsAzejF*~>ٕjˡڬU^ M9A3[iRkRhE]zA< if&+(9v<+:aAX#,́n2 R^W3Mh4KaBųU]XD7x,ƦUa1,hMx5¡mF`qR%cuZrs,+j.?srP'Fo4A', ֞Ͱ 3nlRIJ:>l k;\҆E*am />eBY{S&`%:YݘE3t@K IDAT e™eyFȆ.>O8=‚OX'E-JO: H7KuC0wؗS_uV#ͥIŸF5@OXĜ橏y%js"Ey\EX ʡmaq>]a%JaPztŢ~ރa 7ŕ Ihc;buӜtf({', >ElSL#,$(=B8 Y :¢kfB¤W%mW}Ȭ݅0woDyaAX-,ίeGL뺦Mk =tI4¾_Uvn4pí1wŀtbFOOX,+m_s _a<|b6 7*ᵊKSY3,.FUoȮ4)vCalR*nS/@XJaX!m4Vs{m+ ' *{V {W{b$zi8&>Km;:߸=aK"mM{ǩIGaAXaaGYS-29*(k+3Ʀl*I{^kT .h5yg#4nsXU'GS!`Ÿ>K~dϞ$gfҳ0 5iXt)yAp *Υێ0E)SqφE*u[]pXlUK.O[,m*|O{zu8ռƯe :-aAX3, a~?] ÿngX`M{G[Xr0 99/y呿=q2M'u?n(lL~;Kǜ ,OKC4rΩ@׹LI#02DF$8H h[P@ZUbj6VzdM셷;s0 vkIqgü}>xhgy5ڝbU5T ӏCj%, ?y , U/ 9?x*bhO:sko4aF|!@XaAXa ,‚  , a@XaAX , ,‚ aAXa@X  , ,‚@XaAXa7;Y{JoaAX{#6c_zmSmRjڙʋ΁#1;VϛSڳzXLFԃ>ne{q~ a`XXEQRN34L/;&+[+Qq0V{EFC{dOoʔ\1zͮXsO?7r>|ҟdokU3l˔ںZ[ jEVdI , qiJ Ŭ)Q3myr^2o߮'DEϐFZj$j/FHڒPFVNX Gb(‚kXڒ"2|=wUx4!"Sڊ:+ZŰHx.̪7,R?bhFQ-uX̊UnIԯ SvQ , Dq ,7rL&?,Ƅ 3PX EIO:,n=mapa1߼nz'mY‰酃{ɀ!a1bvej sҔIA/0pC3n5]E_CX䚰 ,ņVvO|1߰pOuX<1Ys/IG`L{zپ! Vm/2Z 17Ţ#ȄzbZCiy(IЌQ^bV]Rjk-M ,_u%KAWb.N,xiJAy<>3n|5P-Jsj}I{&힭Ib2Fmse$e MKh14҇5^y{G$̵jK͍‚ ,~O6˹zuo͕%w;i+"] e)JT$ް0mw Ȁ!-@Xmv7u)֣PM:RԐj~_s>_Rey'UQ )T@36D0F[hLmm3ew3qll] ,`\af5W&, wofszZz{M)Bʽi_E[퓢Gr_|(z2,h-7a/ҿQ~aObO$ 2ȖrEl1=aAXs9i])&DnXq!Ӻ8a‚BkSGxDƟk> ~N_R"G"aAXc˅>I?mˍw _ƚi> ‚ה"b\Tµτ z9^=&REaO uBŪHaAX8u々;&r-l.w4.}6uQ=)d4}/dFWRrzZF!9k>d f2o[|RVY< ~ȏƆd2L9> ԮR'nj'VDZ3lÈNfE:kcJ[Iim57s~\uuuLWzT@XN$E=>_^N]T,ئ7~:[[e~nżFuoXEhEl*ߏa5^.kv8Zj[NǛO˩[~  ‰b{߽˜z-,.h({&Db}29jXj~$rHrbXd -$YαPT@X6&얬vQ0z"+un9/MjA;P$}Rhy ڇ۩ ,lSN8[Y썧翛catg&Ga!ƫCN=%Zhn‚1~"UlX伽7.!۰=HtiXunE'^*7,\Oaa#!rxk iXXmXh/:PVV-O*R SaAX<-,a+,Oaa3 Oinx!r:,vD~]XJݘ}X  FEd+cu3EnbO TY_e`‚1.-muֳ]@' :}X  FGL 8>^duX,Кb,UkI X  sm{ حK> :Ѳb$yAX  F]YZN!{P:V4s]*,0- ,Oaaÿ g[:Yiꋮb),nžuAX  ΄i '~?#`BduXxp(,>C SaAXv}]WK2'"co;n[9_EMC?ŹȊ*ۇ ,l]X?Gq.bv=xHdRu*easT@X#3CNlc#"'''|',gԯ', )(O,崰az* , {ZFM;>O^++VwpNaq'9w" YNF&6+mw{^az* , {g7iu;EW4},ޗ% }h斬 -$[ K,PT@Xǵ񟯢#SamPݻFg7ѫiam!7y|rN$섅`T?ΗK]y{Y{ЇC-Lيݽ6xn‚p$3&Misἴa=_t7 VO`ݒNJ4nE.‚pPjnκFo|<}zXx'M6.7,1pkn*q^1}%g12 刅˩OTxpX$π ,od}`2xwZe!s^+.7.Tk_5t<^ڿe89k({xvDǼM:,#a9SEs9ׇk_*v Ea(t6F2t eU>Hqcs|a‚Wm6=|*KnqXRaAX7@ՋBe;&Dڇ,, ŤɇN[Y}[z.zvڕ OY+8T9n\jh뿝 nӭt9u\I T-/³cn{О JSRBiR 6, ȃQw}6o _>3eZuq7w뗨 œ.$\̜s]b5sw=UuU,Z~R+y{Uq',#,Bqv':>vݟ/G/TnHVK֛;O*͕ߞ7ͳ a>Hf#::]|W—n.w͵Aפ y+!fսk9ʋ?-Lljɶ[]VewT">֏?H s7N᫓)W&nc̮d;ݲ+.B:OX֤TS˓ ^)_>W~=)rtbg_R Nפ]KmĚ}B*gn޽$rqsYw gGTśyٞ7YNOg't<{P vVۣG!/*ϗJj ,Gh(oxr|ԗA羻ِ_%eoe{ޙc"]}ysޅ ?/,͇%zҵ 'u|r7zrV+vePhW+jpxIyˬ~ aVg[+j0WpEO%V ^:7aq)>7{jw= Ywɵ$́Uۗ-+`iHI[Bם3gbQ*n[ ݹw|l , prz/;7?+FMІEvڏf8^]} F:pn/}b% /{#g=auȔT_7BF&|e/ &, %̉nng_YEKs%8=aQoj$n/K Ova3֪m7,>j|r 1xXhErOY> ,~Ĵ/i쭤y掰tPu3aK9a3ry+Xl9)g ,]E7U{g&M8+F dgU"_ 1¢wdČoX IeTU,,D>c7m{I4F~owo‚5R/ab웷d/՟ş:a%c$BaqV1{¢g'̈́zJodϵ-bw89M)r, lVf,o= D/*~IdNAv ~ T⩻o+JwvUdVWfQj/Հa "yuUqa3ȕRRaDI vc _U$+n=(}| k"rק$ԡoCGFy , ~,T )u}\벶5|Ie~ROwq=jn|kB|>*;M~cEl˭H6ݵ>nϞ*GH=䙽_<Iu(TCO<7Υ8Ȉ}( ՞5M<,TS /^;6rÓx2Q,,n~͇ap"A(gX,N| 'xފ/G⇫ۧ˝O^?:p;Fe+|z_V%GlMX[)7Kׂ ,f ǧ@X(,&R^zS  l&g XaF囻?lKTaa@'T IDATXaAXaAXa@XaAXaAXa@X@XaAXaa@XaAXaAXa@XaAXaAXae/5aAXPv' Y?pX,^i맧{ d , 7,Zr)a&Kw~{ {aAXaH%[ Pe~h8E1@rjQ |{e6^x|s/{.3wٙwv -H)O0&( X1{xgŴK6Mօ_D!iP>j63D;le)9֩bA3z[,HnE<^l'41klm46R,XfmW^5X@,[,5[>Q#=ʷ DWl!Lmh4iBD5Fï!fErQKVbqL(3Ή _ɠX,<j[BN-__ p=!+Xwsm=G,&'v9mb N1Dg 9}X,BS(1sHtk'r&T\PrVA>Q:b,,G,JD}Q7~ Ŋ`O{1;ɵ( ڄI?,5д{'!#(ĢKU{! X۳ohGPX@,^XXӣ~Ix)b JjE~|=bt!-+*[{E- OD+F^U6LbaOKx֭! !ekT:} u1%AP"!aJ5%JQ-2_jڙԝBE( "X] bX@,_b O"bQeoUU\trIy9ܵLPqos5"1}PAS.)Ј[,kQ_VjM]`LݥX *XBSX@,  bўc DfJij+u߮^& 1H 0=L#Qis&,?3M#CTia"GR,<50Ăb;˚=Uk1L `\OdrymJ X@,XD}`앶#e.kj5w M*0^|tބxŲL,*}y.0. Wyrp1t/7*e}qYG__7 `eq_)XR''3D@=t}XeU _I?ԽO33UhQu# >܏ PڤЂ~( rR,.ؑvŝ蛬 ⹉.@=JĝL exV5L-PLnG]bRzĽjG`W Xl}s&iS=SY16Ǹ/["x ;ch5Yznh. XIX>u dfQ{xs:n-PDWY=O5k~TWAڋ$7\n6F@, g&߶n[u[a/;93]uEԴ쉞^ ]/*v]1+o3]d|-t'c~u1XTqVȪǞٗѵ3W}%֚+ MKA, S, خnԴeޫ_Ҵt:=A`1WsWi~֦vW]>L6;w,o+6)a]ulǫ1hM){-ĎtWZgk lXYn@, _늋 >H9JF!:~Yխ_u_v;HҪZk³E"dY ołY sx_+ bx H렵6Ajj,X\6Eۿa+jb9@H}-2!UU4A>%F}K b G+;Fry(YUkZJc:njpI, H[פlXDS,㫪W C,X@,G,:vvh(:uR_a'g7b)j {U(PNʣN6UxǕJ bxXmP8.Z+Eykb-}v$$j Xd}bX~QtD_p Ek_i/4mLyδ[3 /sΌ8c%9FXEX(y9,*Mk=!,Խq^9nkX! ,F_ZN;֬^.}k6{:E>a@X} ðjS3zr?,nkuX$o5O;vIz7W ,h]-TgZZb1<),o8٭wM˔Q=ż'a@X} M{XdDȈ'c~tTx/U ‚x永z 5i%,VպQ]E0a:aџ$ȆFXَ N5C{X0gsKɮH roa1ѥa@XCIu#>/6; be("Uoٻc'PSǾqn9p6y  ‚xP7z8Yrͽ,_G '=+mᡰP^t 5/ִZ< K^BrMÈ , yQ&wfr1Sys6zWv*d8T=*]< ;_Xߖhoas]P]MpEXų1_hz}3q ̓tn~dЫxR03Zcw c(5ϧz XϵrHX󅅑sk۟wO%Yt.F_-۹60dttMElZz #=ʟP ,O~P~:mGWWўdm |C].`?XDŽ55B\ , ${内M_& 6vE*bf?$a!"bFVT73$qyG a1cpŒ`MyYNIj58jAz׺7}ō6׫FԖ͂ڟѷ&1{{ eݪX Ӂ ,^5Ԁ'ܰx=d d>nU`uA 2Xȩu6ΛbEJH IDUX̸?氈l㕱CQ‚kX(5nXLI.m 8Uټ"V˝adDQ۪$W( /,R~ 7$T4 UD ,a-'RXŠdg]yY ~0>d; )4.9,-aȑ{1[.R^x; ảKa1( ,!1ۻ"MU %$Gaal/򓣼a߰ɄBH) ɍJěveqa) (, c`d0"r;JX +v1f佷5$~XLC1ݭQ=l[XXYw(Ca^, ,5,>델j"& Y1 mu&;z?,vi'zňR{X4z8,c^̺sR ,_q?/sfD~auNJ-獓dRolѦͮHD؊u,IdZy7bYD?0z4 oaảyZIGX$V),rjXڤ!ynXi1VO ,N4,%[sXaіV]x67RugrHB>$<,Lʃ)guaqE=W X OOcjO%, 436\>,65UOXf*jcōuXx}q>N&, , ,‚  ,  , ,‚ ‚  , ,‚ ,‚  , , ,‚ ћ>|kO%jE^ˬWO}aQ-t}ec^liqaQ%+%ӣ*.bZEaQ-a1 zˢ˳B5FWmZ6X34 , 7,ˢ9rr[?K+qt<:+@X^]XYX?sBq1),ٰlP\‚ ,"r}޽nlloiIi/ٰK"CX‚ ,?[g?RrL|ާt?Ѣۼ ^`w_"9uvNfLN<]V ,qka@afbqS 5儅gb RaYsG?GG>:KnhBv7,.w8CaYw^h\5*ҕV^"[]NX>( !,!¢t + Ha"G#Gr} R⡮,"j3~[´v]Ě5}y^ Z Ej +qsQ"Πȣv3T3BPd <"Џ"A|NX>`Cj-u ܰVX ,"] K۞YoT2X~ΨBŃ}ӧe,w+B}R9a^fjkwXٞҮ{yW"oET_3i73j"#s,*s,ʟH\KX);}ٽ"Kàtbݶ)wXd‚жCfVyqAflmgozX*{){2艹(I;J` ͕\fXo21qGaq*v0wX9!p,aO|aq/4.v(tv&okSwr%o K&k$IC{F4WՒ\Lx\p2&wWlGяnU4hd%ZVmF”V~Su> d6}#p(‚8Vov.[Xl[6|ܴ&7uVyKEϻDX)jƲL[7]}B|^,l4X*pbW;׬4#E:2_vpqR-2zz:qR#,kCbhU_et=RҘυE3Aidfc%4=ڗ5Q CS?@K`s&$c^nH]k/{D|4U IDAT5$Y %,RuEAPWE]hGN>USK25Ow_Gሡٷ& v|Vٱ<%gM#fkue:b]b_cbz+\t1JJ-ΉSvCSo\,ay"n"a"b+.:#-ph9ʨ~LFdPԚ$9O1g9O bLNN]R,nTbŠ^+x獱RywW-{U#a]bQEj;נF_J,j5N2Abq^ KbXTO^I8 b"ϥ[O,E}LEqA>IbB:R)8cWQi]=!/< &LI͍D42`2YXxx≝O*SŬyY Nbї$J# XgOzB,  /$|b ra§}mG^Z{b xč$h^cM,}jj:1cŴ5qK: _EwxIJ/  .O(uMs Mv b+y!>XP3oj/(]\ zX@,*eb-b[m$@n{TE?#{K+U:L_|S.0X'U$ݮ7ۈr2!шpbJeWQi_=b06PF=zm雖p2m*ڊ _X51QVQXL;SfbXT,t ~_?wY2<1X\[p L?| Xh5v]$ݝ+nB[M\A1J1vS˖{/3|_ WQi_`{g^@9Ţ&F9)6ӻ,u{ ?*q૜qE0}9*rH,]wu'"gFĂ5ybXT kWdߴn恧I[k3X4?ˁmʺV6jsB΋!$ȇ?~X**)+X(X>)}jĴs}Ҕ 9;-H7+Scpֶ)E+Y"14Ȟui+c4F~gy%*ґD:b8{{_,g&?xղݧ|W[X=hg/=men-Z5>O@{8ۜR a2ڦUTR,Z١0b,U,x!Ǟ>[Xc[2/ڻ7PċMMk7*p,N6ʇ&52mIF魼qmv,y v,"IQmCybXNx' >}WZdwGN-ѹً=eEq6ڋ?4-}uE轄ZI, @ŢI-~b]r>teVq賫bT2!"cϬivvlIr|3Y2e 2n%o&?-Xh̆G bq /UUe(Xx_59ϓ Xh|{LXh<K,īMr)%U4-ϗW=>#6ʛbΥIX@, L ֆ@ _sPv&>P9_x<\$Q {‡4^7;w7ڸ) 6!#yߛkX@,N +z0j!g\f?:LTi@u㍥Ҥ|QPbqZ*oI{Օu8- CVmbU b('ڭ:|N =yOnT&npBX!~! Gcg[깂/ib9&LTF-X@,~Pjj约*;W𺷥 C, @, bbbbbbbbbXXXXXoj7 lq^0!0\8  іKt.LSdTʲ 0~ YmX X b'iW ~scD%r}}rt@bX ňq}'7n X b_Xabq@, "bQ~>QHøȟ 2n_ bR"ٍewb>nr zԒ99՛Le ?Njr#J:V2#eW,Ndd)}ŭ½LQ{c#^5б1HYEw@,Z@,V&Ħ(j?#nN}n#Υ=ᶲ`H{FrXt%~)Tb4cZΘulr[ eb\qjb1)|~Nb=Y雞~f䮈99?{%%867F)Щ҃C3l['Q9>:RՐ];cZoCQ MQϻ)@,,"bjD J,tvQ o5D$_ZM?دF] ddi:z+eE<(*R k'ssۧ-{ߧlAIs_ bQG,Ef$Ԉ/zW濳QV{DĦ3S7о ][,$TP.gΥ엜;T^񣐚*;kVWXK4^&$T#V={DfU&b)gX -"{)k9k%c"}_gb'-Iɩ.;~YU*P>)۶ ܉nW킝Ejچ*n,n["s^{( @+'6ReoDD_XGlKf "鞅Ij<'Ф9->zYyW/g饒?FxŢsDZIY_ Ģ'`~ }=My X;/ڠ.Y2zz,4S3$4@MlJ2%ώ6]YeZJ%t1f}Ԡ8@,ZE,4__lλH˛AT_n_"ЎGѲx>n(<` u]1rݟC+'E{ˤ,M!mm7@E(%Jx =cDށx~Ճm.5{6))=jsx Ryg_Ӻd JC%s6w:਻!q{!bu\:oJfom{9v$vYgH%lɬ\C#PYIRGlQhvOgwj<u;ƏE>tF,` `ռ >V5{E6iY[`ϯIvTEsWc:DpgPs3,gX n~ b{PCYw|X)NGJd%()G!y=XƧ >o (1 e2~;n  ". ѝh;xѐ(@-M3W,js?^eX:PiJsZGew|X)dkşXqМe\L k_}m b|F=7GH& ;֢X?c4.U 6۷ )O4ILN(bv ݶ,am*33#1WKӲ!/*9n,ݏd -܏3a}K3%Piö-H'\Η0@B<4yeOLhȳ"HhjP+ĝX.%?Tbqr iw2.*ɳ׀ʎl%l7$rVMln]ވEg/u0bQu' 6[0d"fpYx#qD,HaǛ#wNb#K=\Y fv@ϣ4ljq/u^R mfGč>vgMCBYhxhM~bsXHy$kChPx;6k|E@yySDs ?!p/^q)#+|ͼbR*0KoUYta[v-^ƊUW0ҳ #spb>y+jOH ۟I+7aJqN֞3}#;<07ɽ+sԕXYU`L(@GsՒ@j1~Slffijro^sm\5ĸdPW~ /2q\Ӽٶ?Pjj6ZaDkވ֧߬Ă9c#12/G$ IDATux@&vT$ *$ׁ0SWŊ] \JMq|?&ƺuwxY`CH. tQn6;x#1 ulIsoiQE?biZhq;갰TܩÔKi{U'P .b0ᣗԾ/'O"bO*2{>{"p:[NH 3q!~?MAI\G THN0ᰵ'ts+M^ӭ`*UW0mwE*1FȅXcRΚ*FWE</ xEbbU\9O֢Isք =67u4)q@<ӱi>&7}2+rX/][>iBP'vWn}I,ҘnXb%&[7vI'6κ[4[? PیX6&@h0 EdmȦrM"M6il۪+H̽m̝{93sLI_`b%_3[^"4&mJuOh?44~`Xl}`.䠨Dea !+> X<,x6ffUT*~yf/vCxh)CnN,Rx O,"t"B'8;A,yF:vXILZ1pް% ~w3hN2r8L&uQ 4;.iU[90yq:@VsF>G3Fdx. 3JlMaiKS5FS}LAs Z;-{*d|n$8z{s~W b6yIz3.w'iqJ7oA݉^AS>Gz>"nN,Fտ\}  Q)KF&褶BTp}\м9/tC?OZ7j X:0Ck΍4}ʾ1L-(!?cbS\'bX޿zP{1W2Uv eH -{CM@t4rⰐYxC]Q,/^<̶m.:,̔;c2TRE7e.D*'7NM UF(bavK΀1꧳ԛr:n@9ø5YƝr C֔Hfc;_XTk@WISh.!7Jyn^O"o+t{bѓBN2Kַ)X?bqL,S}EpCBT%szEA.Xԋ M, _dM{)H,p3]&- ЇfR*́27Ce A,~33xջw^&"`_~K 6(lX-78[֍Xɟ>;^x4st`nbq+Qℏm :-ݦx)$]Sac-VP9 "s. Gme,to)!u}ҜI֚kαic呡 2g5J~\u_W5Nbq N4ak RM)=PPd#\x8 }Qu6[~6h =F,l^XwfH1w/X}b6 ?oy <{&PK6"{;^/En,?0Ѵ)]&- _u 19 %?B+.6ڄ&#N,jDmVV} Zoq*oj3E݈.XŋO,<KeGnb@h(2X4h&/WHnW$f^diLn^nf$ɟӐW)8j;qcS|+-l#3SNV?-9N])s_;lƱbVW̚X4oy[}GE#&1>3N,0ByD\lb)M]핈E/ !fV-QUDA)>z'`X`m ` QFE=6*99cƨXN2n]o M_qIw!@e (C.2eIU">oL̟C,zxy[8 qlXkM -78[]7b1Lb/^RM%4X3ïut 07juXd$ұQV:c, i /N - D 1qlÆ<gfT|A&ܜ֠(bQ:(Q*Ģ'aXl]t6) >ł m[꼙{|.\ bBExa /  Z^hhFMKq@) )O5<47%L$elz#W/SXl!,EVD,&4Jnb- -76rR=M5XpŋO,<9fC)ʥ(by$cSesOD75 w쿻bQ"L % _^ X<,fKiqUF5A3*Qu3eYyXώYZkXd9ޏ?;PjI,rq*L T iwNI%iI{IVH>Yʳ#C}/ՉŒ0+C݈EwЏ0`-ڝXp[AUWX4@%];͆-8;\E}S~\G2Y0b^Ko '-D8w~ҁ} aeƤ-ЉMKfMĎĻ\oFl 0]狓_ ڒTp, R0bA̢b-76rX}*Z~Cb!wx≅'[<(xB, >NG- y<)tK|WPr`Us!Fsp re\P[̨s6~N5bdskz(P~g=R5$†q[!5nmJ\K#,EA(d\N(.8"nVl5ީZwV"۝N'$pfv[y1#$霜tKwsn',}^%q-_>ant'{g8ޝڭF/i}%H|QzIyI5]XT*Αcᜃ}\aFYހf22^kjnтnR: XɰP^I.NE<,5/~;,-?Xܢ-pRe%$hBMbFfawbuğU_x?4/dPP^zsq>yԏ|NXN6>gJ07S0NteJt‚Ϊۏg\D{ ,@X|!T֩ݗ"#v> pg~"@} && Ա'%MKS`AqrUҔQRA,rTY\j=a40ڈ+"zd{KnX)K-=s!5,8fkiLuQa+?N_stÏSs0sܷp|nv+sSKKnw1/ѥ`YX 6$Ndh*/2PX̐[}}]XN=z$:sX}pvhr C o&xA5k&; /N&awp$juŁyLJ~} xsA~{ڝt& x a%oC^(m[a!x)'ȼpq)N!L b ,@X|)| V-ȂH q6=FpL6Bu;p#1:4෸:>}x\Xh[ 4zgl}o/,]=$'aC @XRd]3vX|J4r aapK(' +W.څX 6;-~ 5| gVLF図%zP3Iyp+^,p'50w.^čyمߑ5b[-S5IKMZdwPQ!5],|#Ka[i=2ǛT$jƭj!>jQ{wtg Z"PÜ9 C8d{UU9pބ|EPݮܷ 3ˇwUYF-mN#})K+ϤV=وG2/5/K.\Ԧ7tjv||N.v,& ton*= ZWga ?1$/zmf$Ǐh͐~@4}B;JXy"¢m͉]Sổj-x M-Y3Cg ,ǖs mڼL/ȃ=\m.-KY]()O ~4v XZ;2>g=tv==]noiN.˻jk:8K~&y2gg*nG}]1O 'bL LoDL=xHW~ǚ.:iרnY y^!:Z4J0g|{h:4mzFy #Zʱql7 Oߛa1ms>fd{+0^$jh @Xrg\[qp2z ,@XcA :2B:3qzM}@XqC9g&_,F1޼ȿ17\\]Щq0EwtNق 0vܳ܇L|aП񰥾R2aCʹ\ߏxXZ*X@X$ta`|nѹ-oֿ Û"f${tT|)gA 3qA# [pHGfÛ2xw ,ƍ)cyK9g*YX %~6idZXDxZ ?acJx/ouM">1n{4I{3ƵDBI} -ϲ#R5&yS Ϟ&lu"FSB-OR['whAO&'΄3) Lg(ULJ@[a1$a>N{,Rx}\+:;LKuw|Nu^U|lxmQ vkXj_Nφ$B &,"_0a==g ,@X@{֓/3TP")[MJlLUp&۴ᢷwİi񸻭uO2kfaa{f`PY,~}39c#S TL,LގM:Gv#4EaB& yOz)b!Z?b-+bx* ,;G"eW2gm!rwhRW"=K Ug^8QCb%@}|GŸL{>3xbf(he5l[,"DrԶ-L,EzV۵RbHl؊4 bަ_0$EMI`t- Ŵ Ř&X@, xdl^,ADkV8 ]`wϬFRDuX|& #_  OE(nbaz&@ZmnZey"=G U$2)ܻBu3X@,  =XC 2y}jgKw`TG$OX%C-'LV~O=7%fwr2Ѿ^@,  xF^Y!:Ur 1X/HȊ 1Ibѯ&쩓\Ģװgd bX,SYBZ>B _.L+<}P+M2h]CbqJ4sG!'дeNE I,~:Y%;r"%szU+bX^^޶ߜZ1k[tse~v+cXsEϲ_ dyY@\6amO@L a&K0nMji|)/jzƒdvYX@, Gc2=\*X|ܷ-( p|ҡj IDATdE|X!#]t6oQgAYrO,Q~WDWL!ULα bX< d2{$g_/~XD&) JlXM]w-a EҬ{EuPs?T(?@TCSXMї_/Z~%1/ 3T܏T*ihT*X@,`|(D ϿibQݽ`\Vh +nA+wv_4T2}W4sXP̸&C[՛ܻEa8޹)U,^6dw bQ-Ugrb5Yq`k'|J>G"rQ0ZvrM )T|k(0~c$rNԈ= 4 b)C` #,L 2MSN UyR׊1DHjy?jʍyudr!xg.fܱ/Zg=vvhGf|\3r`̴'sunbZ,} vX$L69> 6gAy=ZD2 /ԮkgS5m@yZ]i,jkDqvJRM ~S\<9M^13G^Ed **dJISUUž齛X\_ lKVZqL])X;Xa= ?Q,X$]HELR{'r$djS"b`tGybٜ) p]Տt}_ޡaD'N'*^;mu[Avɳ_آ*ܔߦKLXO$mIR6;9'^7k-0oapX\)Qû Vb9^uHJ(aV+szH]VӨmŒh!\ gЖ0j_D˓FYv{ojT+bx6b1+zm* #O"J-(ͪƃ׌dZs"n sC G\>+B?/~]ca1UOw {\"XBd"D(7neZ?M;ELaZ` *U,BV5q `xW}VvXU*bOqˬPuSi?VmS6- 'r3>rYln<,ɣfEyJu>x _Ge {&r'>U `' ǤFtq ƾޒ0:)s~+%KnG{ zOA^%{"_yg*E;p 9}XJ&,ec?J%XT[hL_E/ӆz#Yl 5V:W]V.Dry61F%q &?'r\*SJ -X@,X&kh4>kXaYCMoR;I0r0(ڝ{B|?"㥀XP̆b)8 y;6,U+1KB;l6fsb@QlC&BK!,ybɌD ~  s SooZ4-rTU:&n ) R$xJP2L,-ka^Q>\?g&-ºf@zD*vSo.Օò5fYn8bɲvX;k՛̈́Xbxb!N(cQ/bc` +D6XoŰֈȍbQPkr񒳡bQdR(6eFſtn+|b2"[*HfnDL-]E,w?:OQu_,R9bKL0Qk(;xYW,¦pRծ(D!bCXI&'Ղ S&,׎l2֚ލ$/(-B$D,)ѰZ^WEn+ł?b]Z(UԒ:ӡ;E"C '\ygpnC ɉFRֻ嶨* r[`-{_s"ӽ:sNbX#&G,J,c\#dʅ,#5)m4#-[,`9btY//ƕXr/H! & A,@>j]Ş;v@, OCt3K˰ mq!0oM}_]Nޙq] nX&kOkXXcR/;?òuDZȚq7b1XW]YL2%z#ψkDp.b1qhXs\ɩr(mыŎvH]9X0Ywyz曉i'~PD,/7k9,ob1]D1ѹEbl2\,7Ȉr,ŶXOm8dJ,f?e%# #?ޤnPV=r;B, ]bq6z +:bg'SpUϦhYGAy?+SXpo&Z.AZP,}2)!cvxѲC kѻ;(S.M6. k} ',rZy=*DrDWdZݕjy{%ZQ^%U DrqxMuX&_eͧh.jwbXd(轊D5,;*vL|kS;p1OEQFgD4+_h=oVDXPSP#֜{Wi!c ݧ-ZoTx5cMES,q|(  z}<\ i4AdA$G,UtbX $ƶTao1\ ө%5"8bQ~&f#O_Mq{KE-F8ib!*wm+r("@QugW,S84{goook0DzbXd D2*m-V0MV*XKݰeJ6(16գnޝM-*CF,*rŚG٣#X>sOebxTbΰCW҄^zy-ʏ%S諻Tyu֬31&T,~ƒO+6 {n#,W07U:K[,:0QrRݿ3avM؇l#",baGmb"Ś|},ZkV]>b-l;|qba9},D_ki'ffb";Y?+z(;Jb>?R^o& ƖG]՘g[cghDp~baf} 3J,1bվtW,=dm\٘#g3n 3>,9)4%K;3ӝ6^XﴯįO,.ׁnT 6aT{kL}5B,bqXei4F"0LtV?':J>8l1c@,bqXD9mdEQoUD2R,Df_X Bh ͮȇ5Vcgy5Ӻ>V@, ;Z>QPj Wªǭ_8/bog7bTD^@, @,  e~8=Z(TТP H% ky ܺOpy朙B[}6~?KgNY{|9g ,~F>߼V#&, ; j4a‚T^.-y:<Yܞ ,~nXJ3iT/a\*&, IՆ a‚xV"BXLu.훡zE+,_|nXǾ*,|քaX/+;HƂWar.,6܅w*/?jŃPym r+imw7&¢~5.ndPl u.761KeFވGC?rM3%U{g*Ϭy|ބaпl(lFN&t?t; l}_ ,ff;}% #\Wa13 GIY8147lD Xs?I:1a7݈^qق ,*vexb@Qnv])˴UI5ÙV%{nJy[%mT|r6q5.]fGғ_0^7aZV <5uflDʣ 3sA0炰 ,WӛJ6w('A)ռ>_JrpNFsJE-a +~;̌Ų}/_RN7s, [fNwc1T1>q‚KXdO^9ɞo(mՕ“{JއۯT oE0,=Nm>,cDk]X#nsRisw ,.LgXTKN ͸磣#|aЗ.P_fP qӾ찴j̾kg z_WosvMۭfҽeGXS2ݼh~!,Em@@Ep? R^۰h{R 6JPS˾ ᛋa"O^ϰGXLٰKk|ڄaпz溨`͐?RGXEcnc6+)J$n ۛï%Y_H)GzE=bY s:N$_:&, >Eڮ@tۋA2 P'$+}MVLu 5fh cbÃ)iwnXt#,>إ&,&t ,ެ;{ws,N:Waaq-}W aM AdE=/wV{X\XXgX ,f3%yX:8R2AsR~tӆv>F F{tb-݃97n좫^aʹ}O ,$ݷn.7f]5kDanHۥh͞-MԆ+Y '~ U]l/7{Ԥ됮-, cb0)v.y5z(,RJ8,aAX+,=/U{t8HDa+,ywk.k.(^ԏrކqQso?O+17b2[+,o -i9c5> T Ea"9_Lӎޱ,aAX7,ƶå+_KJ ]Ki+,ەۥbRq7.D ?w@݆y}%gœwR##,o q!;.Gr䃭(, Wdf'F ,&SP>obba%8ߟn~D>=K8l̡-|6z:^&$@#,R*8Oâkسj_~@K;\q[ⶕbAyO4KCf|@Y 'u~Kl5Km(mv>~zJXҜ ,~ ‚{~W~?۔Z dv*G1 ,‚ aAXa@X  ,WT8aAXaW?e‚Âkj ,~~ N5AX ,‚ , ,‚ , ,‚ ,a‚ ,aaaaaa a , iYQ^AI` _ ZBHi")n7-M(wBbˇ.ꗺZw+g<8NC=~Bp5;bX   bX@, bڼ.z֜eMbX@,";&p$q&^kb@{Z$3>i>эVb1\X@,  \RH{芿J=egC?"qM>P?['r^M!b(tj60A:25sj=3WrUǝ!L=N3}woPHx(PEt8X@, e&XAp=zܜ+8WD8-rXj[՘& (bYMbʭj,_=cH鞙KkZ bbk /b|!X<%ڲN b(RK)yb1NZbVmM8 ȓPt<扏E  ?! n 6X w,bSJ)2+tjDyhVxR6B,f%JG$Eow+淉7]xak 5;Q%X-mm7YA, +-www cvmAA~xnkw2_kvgogs% ]A_"$-y;' J Ip<4j'LSwsg檟LKbT?@Ec$_)07]ja,xBMB, +-:,\b({"Q5ޝBYu C1t@J ф8QrWlIqə bT[_󜿁";YS:I,H^z K雒_߶łݚw?%cbq#Jʥ*XTT=TdaTVx M0&'fS`r]Ud#|NKQzE)qq4AZXG~X[f9Qb}jR2cʹr(3k;_v&"O"bX\a(ˮW)[bq*{Ɨf[0vejq1o|}8Z/۵&[ip7W8I-tع{lCEt^`PA[rC, WZ,,ehHޖ c^(U{\G 5/0~qYr "@,  cWA"^+U‹qjzR[< bbbQ4HމXXqb581WIXX\OxuX82kbaG,N׫e Wb@Ģ.e);b*Wz'GԨw0Z@bj3Q5s,rZ!# bbqmk?t PJ-ȷ=m@[H@joig!>O eg>jFFPL,o\}8 A  72X%U2PUOzm 7IM^}hm? -*NC1q v2Z}Ng'˛:f`bBX+p6& ,  BXc-& ,N,ukaBX |yFq BX#o j",̩&BX @X a!,@X a!,aBX  ,aBX @X , aE2^oaaBX/A( V ,R!aaBX/ ]|Ma!, zZaCS BX2aq|vL@X5,^/ !kNOfdKߥo|mXZ'~YWƨ׋wyzVobKp[{q , qYׁ!۪VjnUBHzJk|1iŽ`蟎j y$MAʀqiw]E7F4o?)O^X$aqBRfmu4ϕM-jo8pT@X8N!?yr,3PLfo'qƽ.*[8Y*KԉYo?9 ,@Xnaq(mN/g8Yfw;Xﮟfդ"im_&!-'oxa:!T_W2\X&2aqcb1N>i,gI|mgq E:z'{wJCVopMlӾaxMO.-׏?b-VZw_aBXk,P!KO&M,A^o0$7 ۑx8߆P']cpzhb+)d͚5@X/<iI]X$nQ]co.~nxaBXE1wx[D仐mmvAܸI 'mT*'Gߏa!,^"]=y% Q<.oba/8)obQfIQV>FIwǎj L,QmY "S4-WEIEYM/f{>8 ,@X2(BHl}VZEMR~6 "\XL,l]lb* a?GQ aBX<߰{Ӧ%Ós$>(_x2\!cxa8DX a BXa!, BXa!, ,@X a ,@X a a!, BXa!, ,BX  ,aBX  ,BXggӧml?m GQBXɼݾ|ZOJݞ; ,BX<Ŭh=bx˓`hO W+ ,@X aH׏Yzzg98~.,/[#_=v2 ,\fe2֟wZ^Li=XrbUo`Q|z|xnsTŶ޲b [|^ʕ7锯7opYG~fa!,'7v -ʇz}U'e^rPڝp_+,>T- ~l;Ei.7Zs.&|u.:BK.wָwWW{O]aBXOj_-|ќ?uQN~.Y{[4?6P-j6>fD}>kzaq707+ݥ[:b 7*]o-V0+[/%rn^,՚b\aBX3h_t:U=`%8nյz1ќpVe+σU=XZӺ*CX>..{m00| F`U"tu+: Æ՝j0 Cr0e N gQʶ)q$L2.,Mۤ/Mg516-.fZ=88DQ}D2Jq*IFyv|\{ ,@X a5tQ$]y[gtW昇ٻ< Y $)a@wv Y=V]IEҌ_*?1_{iw4)qQuXaBXaoX,@(~ /D:RHFrr0~V7WQ|@VXlkEn,0VÝouBZITQ 8a ,@X aOk_X{q3UiRQL*iH[<' nqy`||ĢYA\oN,wz2)X ^q֩eR1hb  ,xǷO,9!Ҹ.\'Nj]\OE{_Y{b_m&1hUb5$Rũ퉅 ,z<0Q:}c+z2o_m"ۻOf~~"/nؤ'Q렌OnwBl%@XAv2Il?X$_'|<L,L, 7lqG'Dqo a ,@X aqE4n`5Mv[|JhM,#p"6hWЉE<;a\y:@XuL,Q?/0n& jZuEӰU1h.=L,Z'ڟXäګX,n&{aXնmNmk[\ĢwXdoa/Fs=z>Ϣ! $wyS^y;Z>s"|۪@Y̲E'zrQ?G,YA>b8.W:?<`7,@XNAqsgٺ6v9fbۣU/4GiZ`ښpV|>XV0*#oeZɁŸn*2Eo,?ahVc~Qme8f&k{wM,@X.lzgj6tA:: 8ɖHw0?fzNisTv+V:Z."۱/$YؤnekLꃷ/5Gb膰8m|&,ZaBX[G Oֽ(j.hsFhkS/w֓ywHl>m:oR Tcm]'E/nx2k-&/QqrAkq BXVQ ^o܉ŷ_ʎv ,dUdT_ a!,M2^ ,qR= ,@X aqO&Inf^ ,xX[#@XowXa!, BXa!, ,@X a ,@X aDX a BXa!, BXa!, ,@X a ,@X a a!, BXa!, ,BX  ,]yStX\x!StX<0+tBXaBX , a!,@X a!, aBX ,a!,@X  , aBXa!,@X BX , aBX a!,@X aBX , , aBX , aBXBXAp&A]m~?>o}oཇ,i.y'Kpϧo?s ,ř]sů_}[}U /0,rCX|p]|gfaBX<_>9gX3Ow2N ,=9!,0.>3a!,,~_3\~A/X׿﮷][OX`g)†!nP.b A[>VdٞCs8GRbek|җONcqdx9QJ$,"a q@#a HX',)QJ$,"a?&,ڻ@b̍ݦHs&S/HJ<ܹTVnBiiG7m%nz" ؉RYe$/!f>KMm ͐ʚ!a:5),B1mYaUblrjD76 -saPDi@9.'rnݺ4ET'vuR>9T!j7[#NNNn4>VAydMXE&paѺ}D`Fj5[sxNV{ a38O6iV6]THXD?.,BwP7#O0>Ȭo|H#{B[4Pec\De}˜Rm/[Y9;Co_֓ MVmٯުT_>c0pg㮰PE辫|fF~O g" [x\} (s` N^/L5xRpYC2+jdp6i7`u@d؍Åd<8+AX.\jwuhy^2vC˷ 9~x"[#)Lz-L>!s?wZ/jsqxAkwUjFX S繧\0zF7jAceNTeP$SKmv/)X賑 ssc>O0Xmѧ*SIa!C5>vS==yjS0WM# N?7sn{F1}am͈_XKgX̳dEW U/\5|*# ^\k3ll8n,OnJT HXpp$Z]@2daDd~&Nx PܯZ/¯Ξ(3BXmX.jE憕S14,sog]ua?nW8dRٽ7t+Y˄Hk?weo¯Qcfcs Uo.r)d'80YOȋJxc_XeUPXh$!.j߇UT[um AB6ЍqPWutUbĈK ցLb`,2uÂu9ɯLM8%M嚞^Q$1-g6+r IDATgL{xjR=XNn9: ޝC6W-44h/נ6b|/?P߅4T.&wuZ=4D1zx1C]-|A9입IXXO6m&sT]׆k=HYsp[pgdH*@USb@6PAĵ6"4f@7Ox)MnJT HX;}XK",e|)Q*ÖHް 0aa  -yE~EھXDb5/Pz}#>VQ$,i :{vՇ|A^>+Ԅ|SMk^蠄6 98(,4C#v9uB/m& UXR[.PӒ,7B(,YoT|`/}5.,)I¢–r78\X,vȴ|MX9o×"Sŀ-8GYb҅Eݻ-6p=lFcB6N4 (3Qdϯ yѼA o|O . ,4CF#Ж&`<6ЌqЌzEG;1R„R?i"JYZ|rfwAPD}@Q=8GLtϠs; omW#;ЄO=oC*,QɞU[#Fa!c=InfuRasRߕS0h}rU8nXkQxk-bX@u3t?4X6{ۭ`|l hRTˈBhB^SBE娦lu$e*M!Gӓ_*:Ɲ_q)^i*b|0hda &~lRӴVw0(SnwVfZ*,ؓ濨# [zaWt kٹ+,X#XFrׁE'r `Sx_SP>HkO4`Q!Z՟f{3,H7O^B1hUkid,M XLHˏr+X~VL`m( M"+˖IBђXE7VW\q`a~cG2kdSQ,.o!ovGDct`=]#,ΩAQ9XҀy r:/j/P,ǁhr{Z'a@\l :Z"*kdۅ5S2a 4eMP++4gS.z61X V^mlfK4FCm""XcX7p >*=,V”PEtDK8&;W\qŁwE}$'`_&SXE= Y$"mZ^H<ad `PqX΄<% ` 8&;W\qŁw-SR^̆:J8kL}Hq`~ 9?XQW>1q=;baaZ5׀Mv+,1,~t:l=*Zk)}/P(c4%-{y}2 P 4 `S-t{p,K LGe*+D7!Bم1-%yp@TuXG+y]ݿm`f?Fn(m XDͲBeQ~l_ZÆ8bZxJdVjf`_ဲmvs<,|RPM037 Jkd[M3^حu,r0,_ (ű`棯PSL7_ôIoQ6bXhuG\#1`q\4nC2 9H} Z"P-ޡ',TNİM/u'8l6a<|21j-@dVQsF@RFXoT C "_G6g&l* IC#Z@э'kVٹ+,X# 2=~hbJlyH^ -#W/s/b -;o?:"mS}=ocAunlL!.v8.WIsl״&*x7I;vȖA8d$U2 (ű`mݴ뢀0*\2@aFqim:&Ǔ Ts,CҽhaLm#^'sUT'g8,؍qM)k!0Lи& ^21ipOVAYz}湜BNszgxћ$[yo_BU\T[l͟M%7(X-X{LX5\q,X=aZ^ӊ,&~1׭R׊Q\X@Qv7_&'W]g>B;,rysUbQx<395cG w'dmKOPj3v4bG#\INӫ!kQ49n'@g_Ͼ^hb8,@CrnQ=fGϞNXds/T2@aFq ,tꈃU3׀;S,uZ6[#ֿ͙%`.,A X+B% e[7zf|f1nsq 8 j9*Ë^GvgY-XƽArz.YM4FCkDVgieG#(>lso{ |}o /u]ʼ;cEe:|Yy'xDG4aVJ: :kƢ/ ؐ/UgǖVX)ֶs 04N~ ,tU(k8ۣBK/t6MVϒ9H}Z E準bko46â{IL3]9s+vQ8F4k#xTfd]G]jg7R&buW,,{c6֮SlGw;d̫N*=ƌ') 6mnb!Jΰl9MU }٥2Qc JgAl]HcvF^?ho[Px"lʶvJa׸&ۃsqb؃Vs%Gf;imDlno_l$Lbr"=5g `iаHf51 PX7YF,CD׹Sdf)#~p&oloW' @Ru% -ցMG?4D{agu5=sLyO ZT5b?V"] ѕ\{`px O.;bu73ޫdN,nQ G݂WFr>[jfϿ] ɗ)MZy?;ˑ+`\ۆ|Sx[knl[P8c[Q `x^W3l0}: uR݋LÁdDXךj 8PGi҆lْ׭η[]f3a@u Ա={Qf] V+B^%Lo|FbO2C@,  zXp,?7~P,E,R%ӘTY" Gj9E!OH.X,wo M_eu"L:B> C&wbVoR++_C,|O4)4W%сXXx^'ʂ$Eia%l^2X*kG0{,X|a-zXT+zvc7Xz×Ltc6BvB}W_)**!I!Xp&!'[, 4Z@ KӃG/QO4)4⊐) X,yE?Ax3X,%շGĂ׃!{kF,z=k Ujp ވ&Ji~B/DAŢCNPbb]n2KǺG0bAYϢH z|=p-;?d dbb JyX7'SbiMb1L \B\܈шnB'B," AO 4| *y?P6y7bՠr+V  1 @, bQ^B,O9Bb^0}Hk;#~bFzKo ֣ 1PXl2}أW .]AW0X~υSSm%~L:>X<.( d/! %E XԬ],r+)qKSnqŢag:n6b1>`"LƅK9YMI8b],֦ c*C|1~¥[ѽ9놦u12: YBbݔnsv T&DI(#kxgJrt bvC#J`o=372;`^mq[t P4dhQ3$< ł0bwTܐ&2@ 7[7'I,.zc:ƘbMw0LfvM7/Ew\y)I@z0u7;&%+l yDe͔(\@1R{Bs}ϡRԋ{:0Sƺ0H^CjBD:(569D,vѢro_č͊tOx/ :S]t*Ue1D7)14AV#AZi "kNPA-I`A)( G^\u1xPL2UM' -oBmK=b}IU45ƙqEL,bb3Ǟ8Ce\("no"bĿ$EW$jeG,NyXT$*iI~!ĉHjp~1g\#tX(!۩r(JE.֢HhˁY[>ug' _ <"y?F,VEl0fr:DY" F`)Z)Ed]_e9DdY_,ChV94&ttXZQJ-vnPWc, #PϘe. ADUXaa텊XRɤ/cОkf/LyY@#"O>%9j~9JĂwKJ[TvZkp 2f+ 5%$J`>䄖X7:-RObQ4L+ɧ\ǍX=[Sbb{b%"q3_w.=m$[fVE]4-0cƀ`0`c31%+`eEL D0!eD,":S]d3YӧNzS_,w\ +-Cvzj*vX܋-T3aX^Y?`QPSj`qD >J앰MSSPnD)U$al$1ms  Iv|RzŨ[t}y6bz73Ir AOV(s][k8XD ʋ\_o>^ǯ`8ly g,*bNt-j2E[y3gH8WѼTiotR!Dqթ]=Vd6݊GMW' `a1T)|p {U,bކAޤE)jWaK,n1}ȜM`tNPoqEr#UA9:"=uŞ%-,p -YE!XG<~L"$oY$`!"+ aѪͦV],NEEBɍs]<>R;,Rt$tp nbxlw%\%J ^wÁ BcN6l! 9Ǝ؇gvs`^1 = +U;X,Px &X_=5-Ո `}Bj+1p lbb2wR[t, wࢋP~4F"bQ,XxV|5ۺEdF,P`A[U;9svwnc e1R``7+_s)aXXL>=ݎ ~Pu["о&,^B`v4cY*=AX?V@nĞv;6%- ,W+B)X<~ˣG?J"+~b\aRE$Rߖ?CIRśG#xtXbU U!2 ,vP#8RBӱyNk, ̀( b@N.Dsxۋ"e`u-J) X/Zck¢`gFR qbČd'847E4 bl|9Bd X8!GCkZTEڭ^T"eZjR&XtaϲteĭjG`1X#'83[0bŰG+|L3U.Lhh ,,& q1. rwEG7c 2fL/̻zX]_`@i\nFr# ,Pݱ X$-i X$`X 9; Kl0>1T}X+> \ȯ,ݎK&\Έxό FV[ei}BY-5_;¯Xg,&]fY`mRt7td+,F`FIiOƸ.wYzE }vؐY\]`-&`{ Mܭ?c,~ Z ܈= qwlIKZ X<* z 0BW?*f/o3NtoR(} Q6**W`3HӼU` 0@(!vZ:sozt, XX5,5ː X`ΨB'Xu(mK).,ߩ۴S7,i#_,T-fX (tEonWR2Fgvd=[ 59 X^B`vSS*1X]?`1k{(,,,{*&&aآ$z,EXtjbp-}'ڡ I"; I`},ҩ (;¶9$T:`qj>|  NSb˵yasۈ Q6'*`QI(Xb@i0⩒+Xom`}e+qj<"+;TWΐY5,f~9 `5!17}ne`K){.JP,=Y!ӹ tN 5@#ђiŤ]kNhECJoiSc0;=`2r)(Xh`{ uInb E|"#{(,,,zT]*`qw#q5)v$ۚ)鮸3 H7@,94*o^_.i!j@V>͙#YV\9fg"Md>9ɗ lii ,[6qF6,+F1B^3`E2X$G4MmXyPX쐥]q}q',Pl]̜$ˣ d }S AYTǂym1O yqx +7 ~, *6,q= q{*EebO IAwzIC̜ Q`A{u6PĝT,l,BݢbbUiҌf`q%n`M`a1QS:(f?.E:gfvh_V{sN7`!'@vj1XְE; } {(X,HZHPp;+I,%Mk-k X)r\v垃xM$n0~>U\`%Z`$)ˡŸUY#\U^ܕRL&z#%SAN ?Z?Py>|m-`MKidoݎu>7Q`!@(_J gvajY _};t88N5Qy; KU7ٕ j  `û4M yqT ޾մ& x%[c}q8,rK~J@A*)S{݁ic,uZ rֹǽ$sI?j~ kF~U, :x`?{gFdbݽnld NX )mTQj!E{襉M/[?뙙s)J9;·9/Cc;F>bgkjĪ@,  G]XlM&Z;B|fC[,+:O,ѱ XIyt}f+Zl']&󶊅{c~ |1al1NV'( hC,3fiҺFB W 2Þ  MIyosg1TT#NuSN‰ElRSLU.QyX/鬶ip KՌ"c1RsmYwD1!bGGQnhMU~:˙Ӟ]ɷշhB{fwz8ع^ӯLNPb.ub.c2)*|*X|V[חW/ʵ&kvBKOqBez\Һ<F>^bekj2y^Xb&k6U}0Eł͹GE'xEgO)5c6大X V/8֧g.tk 1m\6O1b>qA罟Y uWkkH;bAϘUBy,cO"aIxEJov8L[YNb[c"};MCc>hCdԖN,5'͍DmC,Ģ8JեB mwt@vG=6u,I}}ss1hu ,S},ABN]1bT셾2W|fłX1Eɘ eV;gl͆sE4.Hꣷ1Iy {ˀl,Z23#&F,bkqfKAqtZx1QOsH{W$S-X@, b4&dN(9PZ_I}5.2~ ŷXyFBNd藨X(7dY,],³ϔ x.4]V&ʹ^ڿ\~F!Rc2T"bؓe߇l6C6ɉ ҞXgVI]8_3&>M1:AĂʇoEXRxv[weGpȭ֞\+?V;Tr7=RjWeJ2b!gDu#&Qy}' Ѧog!|P4KH{bAV]PԎkO'%;|JJ=e"i7۹aIlzW^]u%j:)RbV. uՊg.|bbA*Qt#m&J$~bARu7%ؕ IDAT;;^}6 9"R}%RC(h0!N[,HjKcx)sF",s7+*ӓV=V}9=%{7  :~T6$OI&efHL>ҞUfzT+EX@, ܆yOS5ވ9 ;fbJH%(,vg& )f0@b_ٳa-R)a}bBﻻ}FlWb1PܡXԌ%Nڌ  (NdN6nd21W2v8=~ ~}ibmn) /[bǯ@, @, @, @, @,     E,~X[ bX@,X@,X@,X@, X`uŃ=㿐_ÇXvA!Ģ#0|r-BG B>H pB_^ka[[Sbw%}(! >UM;i,V X@, C B8p[AJ,O菂0yGOY߭ -wb#+PXN HE,JQvU,YdT@Vjx(1ػzMH-^Csc fHK1{+ v8*q\JSL8`1Hr+kĂ-dvq׀ye<LJZg)5\0)JŶ[lKKPem_pCIK4X55-½Bji#⇹y&Z4̮]q<@Ʀ1`e!OE Y!7#r쫯ndGb;._+{]]_#Ƌm?-",xaߡۃTX Wov';l-{xJXhN^cC,Z$vRL涃 X7 cIaCաVU\IXQn9 ش8wHw@Rްh.f3Ja#z>p#00[Laq10EYdQX|{aM$,ir H'\uS1᜿ynTco=Su-֖J4,܌WsF"YKC[c{<EJ%7Ӈ5`ijCe8~d=E50w6b&y(a9jet@0 CbءBgG&JFaYnhwjD.29K㜘>[0;P˲!n~N{tHFc"0 F|0G``"Ĉ10EYdv{WX~9 gSv;'γX^:),/=AyAtVܴ` ?it<d8,mS˄L޼&V.,Hw/&݄p2E @~ y`USɺl)hiuYsۇ ؍GX &,ۏ7kN߱‚GdxYA$^N(>bUㅂ} aNz#˘)'=ζ밚l )S(mKK~* .3BED,wys^@  Iaq  __}5B_]3o'1^g(^sT_ X׌}}d!Ʌŵb[O331gb&s.H&AB6EF`h@ ҊtDNDㄇJ"g_imSkk{\[a|0 ..(hwt- (,ً ,^1Gw ő AXgTm vMEF/muM~oO#=/Yk/@L# }jz\wZ dS!<#8S *9Exg iG b"eC6nH0 d@)gMH0gj/$5\  ,b `qD,X5^Yo+6Ҥ&ŚW .?Cʻl3Q+g &Os$#A}z|c⯛Ic`@GBvt,~n2,k$ѡ(,LYe MԪ pS`w|U zhWV { AՏ2X)7OhKA5ؑ`eE,U|mFalO7K80 pw#bkX}:S.Y3b[0˹˜=;Xhho Ec8zCU XZ,NqEu%O2<a+y,󶸩=f ɋw>#9 d3LsϮiȒx|P<NSṿ(y&_,[ƴc?ĞNӛj_ryyd7:$[/Se =#*oH#UbTgQ졘^3yէu kaFXjafty_d[d>T@5lm.n?   p/v},, s h#a?d=fc+1-.|KBUt'SY|Q6(1,$G Cze[)EF" OC sRtp]W$hfjr`a̞,+-|+X1&OD BS`X0XTe}ĉ~μ'X=|Ѳ,vW}!?ڿ8 {T<۟\`Z9;).p>rw=# i`aZVUulhHnp)_S|pr-,txØ Pek .bQXmwL,Y!sX,N75XfkˉD,EbsF,xooے@G*F,dH,H,%XPi{_,E6+¼{%޶bɧОuywX< W@,Zz-B.Yit] u_uXmX\ψEvrɂOXW,ZuS#k'j\8˧lE4 F,$ b'% > oyr"IkŋpOXe/ҊEP3 X}7XNI(Ѳ٨ba۷XHXdB:fʊED^pvmO=vl6>gW,Xb!qWWP|]BMLBEݎ^,%k}M%d2,&fKQx:b ȟX,LvT{^i^sPq:WE: ,ԳPdf^(> .bvBI(#+ng&XL,YP|"섚bq–,r g_i:^v٬X\ %z&ΪP[[{?y_o~ϟwvvOG`lXq~~qqzn̡/|2|5ў?G0q:~~b8<h4?9>>::ک}]\=??8\_OvBe$Tb1}Z-bɉŽX,V^(S^Ģ2])o+͢bT? cN,/Q #"~nE3 'Vx8+~jb**b*b[F%˦-wBbqωRXe?X,[B㒅Eqv9Yx80ЅIjar/*,D#ɯO B*"*l\1 0/+EZb+v,6X:bXK,ZȳPOd"Է}ˢ," ٳE ZBpD`:'Y WzEWmXȆ_6wBI6z'dq#,% YEd ,l.P%HB Zb"$c TXEVx+l`Ei'TCw_bdQ׷- ߖ5 7 {6jb E0wtPa">qEW9(UmqP.LBW,f'-2b< uGBjY7$C`:rp78(i^žGUBT$ԝ6PX4,qb1EBܲf1oa(i2M 6mH/" J1Y+\"+WM{[+ VUX4*F0=W4 ZTl!s =%ctD=2\0 V"+Ar`|v[X 6X*#8P5YEZ".8bH0 Z$JB1aEVzE+B",Vm`?bXȵKPv10x51(R trBp 0UyB>i\z۵WM6^Xȫ PIwgbRjYPb5,- Bչ\LE^%tR V혍~!T<kX MP=)(0ՕIfa"krBU-DFqh6qEX3[ uO.&MBJ,B~hY,`Y"-FIp͆*rYVȴ"sP+ejX 5)H'+ٽPᔅ8Z00,2Mqp9C$bR¥v=Aa15{OT;)ŭ:Y"-Tj!F`:HPaEH+"WhmXvޚXA,BS+GVdEI"Alz-Tpe|:YYO+D\@zETPmXxw*X4XMPв Cn; %YB ZB.R!tR ^W=T] BE7,"3 5XbѴZ=6HmY★3$Ȩv [B[Ơ@7iSx+ەUZ+WaլoX=Xݾj'Ԭb!+worE1rLb"Rd1;&7mQ`:tU̞ԟjhd!W~JYt1Eld ZۿNZ 1Ŭ 5Y/B/,d`U"ۅ8F2T=(PefѝpS m =xq1?RRYUWAyz`.B"l uw߲m2T&COOG""""RXE ]nVao++?/Bv?Xu".;H8> Fb:඲GYE8hs?׿NgjP QE Y*m]1no]aPٷfP) n]td:YTYC}Fl⟄V>chN** +TvP݉"lمzϷEpfQ> f;Z̴s 5~]η.Ȓ*,+츢myn{WMcŖ2TYm3 Z(ZdhPG[zODDDDwWOqIUtYqX(X_nX\/,V,eY}=E?Xan|wDDDDDM1VV,Bn"EalqOvdі,{ wnC.D=0v+(/zuW *4+mg+TsEe>5e`q$`q,Cs'YEhqb)?h;=E **+-6]QVWdPn`f/ n"YqY̿d;/%PS m ŬADDDD m YjZQXנT;W̿g} ,~k~u;Ÿo#v Ky-n:Zԅ(#ѩ%EEEVLKP7+H.GӁEt}P}r 4TE0S[_` """"EMxQЬl\!pS"=ݾ8,F#둅l<b\q[$)#""""Zt^TBlϬ"W5 'Gnj uōEȋDDDDDD.~k©BXqYQ]]zԹܰ chda,fY`oCdQ -[$DDDDtFMtЪp+^%{PX̮e7_XpʜY3m*XZԩŢ0n-0š©.AVkPuyW",E ef6ZXZ[ oI3//]E)&STT8U ?h{Pb ,[Fe;8lCYśLZy1Pdxug,Тۇr0𸰺ȡADDDDt|S=LcU¡B±ۂR%Wb;ţHꊻ--.1"3// VTf+ԸºQuW񗡶B,VBlqB#Rƪ%""";ߞw{ՐBBT̊y,B] cYm|hiB #tƪ^ѝo;ҿEܐb6CWf`\njۅŹa-Cn+EJ o GPh&()4**F++퍋PgE I"EEӅƐDDDDDG>5EAE Êd\`1ŧ,E&nhbÅ"3mߢMY+qE {_sb3,,RZd0_aDXDDDD)Rmg*U,. Ͳ -BZ؍3..*/00Bg9v>%E%6ń QEVY+waPdO--Bpt(dmٹǑ+ v\peۆJ*%ϋ` JT9kH eKSܣ*SEٵbgWP/ =exH-Ҹ#/(c57x?ERQTE#+ϠtbwY,iu[|ţ.(S0_0GgQQUE#+gYq+nѢHlE\$yE+2C+&1cQ˱Ȋ\q޽a,֏eZw".H"J}oMDŏy8%,NEhE-q$/TthhTESQ#,RxZdmQRE`4"cOs\jWiUgE_Va,~)"LV[qEAbL 8'Ңx4E"_&v"x .hQEE\<"닪0: h6W(*ҪwhtX>,v@Zm񈋤.h&(e5O[7=*Xϊ]qh,PCi<ڢG],yF\Zl<(7EiU$bTB{^CE+-X"͋0:hX٩"fVٶE,G0-H̋fa QppRV5ݯ7"ʊs@W\?,Oe1H":/Tk )xDŽ*b+ fz~{UY+.~Xl+[E]D}154`_HE6ERUya1fQҢ"2/O9˲^UfżݮY-".$¢Țb*yʽ{ˢQ[dqQJbl{`ҴV8*hg̮xnXlz (".153`JA7AUeޮ=ޛEtXb-6./tUŒsuA| -iъ.¾p$$E7EY+^n"n.XK| Lz[)8_/oyYiE+.h C")ۺa1~RyZmэ [yUY++^ne1A[(Sf8a1+Na5TʋF`p<$A'Ehg+E-(΋_MFE*8+¢.^Z4".ZqZihEYTb-+VafQEjK-VBhp%EU]+6wv8RyZmp]]0e:yUY1+Ӣ .qZghE(Mb5,ؔU\Du`PM[b+8,VⷕhR ʊ/ݬw 9ZEP84`^G"UUŞsub,U\uHcറZm-*v+a!,^*j*.¼h;uRDQV׷ aCq?]͡ѨxWPaqVY8+"jF]Bh!/)ZUY!,@X<+-qE/F#(WfpwB aBX ,ެ-b0^x ,^P}-2&+v@޲oKX ,7+xQ]ŚbcVuWl }3l%(~ ,w΋}q\a[Է@X aBX ,>}`\6j 9BX , a!,xr}Va!,BX aa!,BX|U5@E @X a!,a!,@X BCaa@X , a@X ,  a@X ,@X , a{p@ g&ս{kIENDB`mkdocs-material-9.6.4/docs/assets/screenshots/hide-toc.png000066400000000000000000004161201475306445600236240ustar00rootroot00000000000000PNG  IHDR XlXPLTEGpLGGG333?R!!!/>>QQQ劊222``aCCC888hii{{{qqqxxx}M666CUdddnnno~lll?nƓ;;;}~~HZIIISd{5GNZkAAAˈM_ffgaqÚ@@@ՔtˁǰjzYZ[Ї޻fvŴ幹sss똰3YƴMl8Gd}[lҤtKwʲamiuzWcERP\mw!bZtRNS  $/BP\a! "#()'%@+&,-.0*2:=143GI65L7RU8Y9_dE>FKNOXWT[^c]( IDATxAvaGC$`[ Gl1o ,5-UUoQ\>'u/^ ,@X a!,@X *J5-@X aa!,@X a@Lj aBX ,@X A§[nm aa!,@X,9)pBX ,aqڨPPY1ǧ k.VRa!,@X,)ń3z}!,beaQ#)XfZF^ aa!,VŘT3j aUQ3g̩Qϡ-BXL%M1>&})%}1>.@X<߰M!$XShsKٺb7Vo,b\M8,.P2"7. (&_z'/k݇ a15* QsE_1HWEnPLrꝲ4b-ƌ-UT fH-* -epSuq\Z,!,͊ 'OVTD\<+RUqTS^FE<-jKP(M Cc-iEaWdN+QO[V$HâZVD"e9@U2R∮dE*I1}HzӇF"/"eey`WdeȤ` j_+ތtUh UWo72HWE$*I8`&x]"Uf+FeE*IXN$"ǤEk3 ],jga MEfZ."qEaUB"IEa[ - b1"P0%vބD[d2nCMTE)H.RmMe=qE7+UkJ՛3buonZZ]1H$HIE?.rӢZYl7Ȋ"ӄ%7MhD">L,FWdwaVģ""vc$EQYY9]ۮʊ@TxMENZM1e\XtEAV""Vc$Ѷ(I9,F-XĺT(+:~S${b FF0/qq8E>T8E[dwEj"88Ȋ"1Ts[E<-:CE9☮+YqP%EVKȪP^"0HEТŰ~pWdfE?*Iq䑸`jWF.:m9e, dWLwE +zUK @k)ˋH["V/sˢ8f"دYE)=1 ;#8[EzhQ,&mAEֶY7*:M _VnsSEwl=:[<(O7ono>Jˢݰ߃wEo\qs@u{Z"vq_ТNY]_WPѲ3,6,<7ⴿTW t,f' պݜU+׭خx ̛lf1SX芧qP= -("k`;/)q#EiWDA}yiutY]q0nv;4Hâ,B {PyVX@iXl3ms ]s4 ndYiâd"tjP]6Ԙ5"|eZTsjX\],nYX(zfְH,Xm?vt|{fYY,",u5"_<|=x,wEaYLMOXEgW]O?MSY,.CJLf( @W\d_z}*9hpY 5wXXGWYռa1a{ѿؗ/[Z,ˢdbڰ܄?{w׽qƴֆͨӉS%rI?CoV"BPɵ_qy=ߙ3&m8ipj#T5` Ov{y9 `0%vC ~/(Wig{<fEhȂ:_Qy/O?,9$XLHP,| yP經zŴ5X\u/O?,0-% @EɪYg#R|( ĢHT(iY9H j#+zEAFPPJ)Y 8Xx6BYnht`+y!X,I5J 1YX{ ʕ+fSSxSAIcB&Xx ,v ׻=vp% G3T,,jj0,ҍPBz'W؃(ק3`ѐ,PEM4X,\+:f<'k%f!$ Ű`a%+fEׇL_~>O?kLda e*Y!X|q悅5%,fʂ׻{9 `1#,\P-j  W#+K>ݽO\?}B dai ?XܰHsŤJ_jғj2MnY,Oł P%XXE ,>--Y >XX  E= qvE,5 1 Svb`b %,F(S+@`!& fb~\H"Xdb`e`4Bζx5NК ,Ԓň,,=FE1`1"XUEkVp,̷,L F2ohZ/X ٪Y`T f(}lY"`1&Xf} rǫ$j%|1ؘy1^hP Zț m׬W" JȓEEP} N(Y o e^9[ ^PF,\1a.XZqb`T +qɢ%m2,&4d\1` `QLnǍP+s*ߖJqkr,c(Y6+vB R#, PʶpOB  it[ qBZ Lnwr^ ߃JC%,XJ0,,>F,L;&mEEdᚲ0lEv+n:Y,@`,Zy"e1ꅺ%s׬|B ^ F,) - )0ňw'TM' @`Mr·jd(EYBX55^ a~;[ .Y GR', P-XlH*`L:b,Zy`T yɢe(Y,>+|pXG,}^ }C²qִJHPX UU',?6e!nuBiBY,\;\NXvd 5`1nm 5[@`4C,&L{,,Ũ눅<-MX,*bUƷ,FE n/v;qbW-Y緗PG/T0VX 3l‚`T ҔEr~{RPBCqB:bnu^ zQXǷS mE,Ztu[^!XՂΪ}|۵- v~/E'TrÂ`,)qHo; >#q't ɫ۔{u/vxbtB>mFw @`o{%Ũ,>͊Ւv,Eq6=eB}Bb4`1Vzo;B'TjߟȟѸY6d/T Uz>W{',j5w͊B.Xl,Wiܰ`,``Pk i*^%Xz5 `Ū|"`QX񖗅jWo|d *ߎB7!qX#q` X`T )F2dq,'X8XvBW`E,@j p Yoo, PiXwBǝPj] %% 牼 m q'@,PՇ,a;jG,m6@,S2d;,&m˲Ya'C^  yi/y0=L|,#ڲ٤` X``'w>e ,Pٲ!")Y7Pڐuz;`Q mv;j#k Qtf:r8 rEbMhPmC,F>b,}W@ X_\}[+`qw?ONbm,F 5Cg'xyF,e[ XcJkyp„`,ʐ4Ew-ԤqlM>RXԗN a'@'XF=E?,nFBm(Pmvc)T,e;=. d57!߾%N>=xqutx֎tx>~?EwQtnN"߶/O^\>WUSGwsiq0\5I4Ledh?2962h2*ƖKQZԦ Ol5U>n[/S|:O}s Z;׹5׬ϴ)9:8k=+# 9hW {N 9XX1D-grs8$ [#ښW7Xd+& -,-/e}]6[-dXQ e wݞoϸ'((((,"(I o#@:X@Ki>@b 橲`"m-x~AdC j[*,ȭbDw/‡eI-LJf"*ޫbq`abtg mF+}g] byz ge90 )`"/{zŜ*FԀ,sW<ā̱BVjVR/I%z: *<XLy7n]-.,EޮL Iūl"nda.g 4S+~`ax} /;znE(((AEi`Hh\Av̎ͤfH1Xɚj بbxAwI[\D_,S]ҙmPѫB낻.X,H,f \ *Bwf_XX9Y_ e꓀EY햧.TX, WX]A=X'LnF(((`Y(rOwL| si`&d Z(d'F`17H#V [:B_JEvp,d1 5)+Y,4NGFW`QdoW/,,jͲm `!Xfg(h/94yBimhyYAX +j  ,hnpsnΓ%&,0l4Z+9$BσE\ _>MPAK(.R zY8JYoxv?0-8-b o.6Mm GbCfX6K c%Xx(:CyEs[ ,jXla ۙNq7BAÄq2&,<\ޜ@vKzoE0gU`AڽX;ps:OZ݅5V:ゃTX<)X,3Xôυ7+Yx; _2z#ff W|v`!vqTG0l g> } Y9b5NaLBpDNpt ` (XdeKXX-86y]Z8!k o9V_-gPd9X,-M}LLo`<X B–04Z/٬c0`q~3Y# cߘBjE`DaPG )~n0mA^..w:Q,j5bT n/3t"*XAVnX^_ExlZ[ RiԱƩx6eJ(Ԇo 08+LeF!z>z޽<{-cǃasz;Bo,N,bq`{;3<)h~Vכp(`)*L ;f@^N\i&Asx0 OdF0]2q`,&CcwSBi#֚Lbެ6s?XlB gb(X\c XQ?,)XrES ux)`g`Ƭܵ X}8,jЊ#9$Fosh3HypLn,lHMEuŒ( S9+G7bkJӉC,V,/F )n_ƓE^w`/`mXxM޽GE"8`&i=Ѐo%XɮkZ4A2={&wE (X9}6 I&P1زyv C6)d(V|ͮS Yfa`au?+0^XgŷAJC, 3*os25Ha2Wdߐz'X^Rxn߰iH#LL!dlKH#ӒRX?-TĜigR(Xy0P\֭'mmx' XM?7,ӷyMTp|4Q})( P`av#D!tȤt5DRx`dcD"t{ZL= $ZP+X,`DHWdE#&ll(V*6ѷO^7;Zo#XX=CElŶ|zX .!,\я56vyv&! z 'vob*?rbJ*IJaPɋh׍}[sC~8{eeKX6gg|@W u,Ϳ4rrpS VB !`ݻa`Q]i~ŃH XhthFnm5](ƥ 4@t%ZoGY,Hʘ|k)Bi},XCSnGܡ[(hG`E>|*W`ᗳ3#k,y/'C/YP J*V,܆p}b}0~eݹ!`N|") "E t@T0@E0Bn~ThXLvXdŸ `Ȟwf>ʹׂ+|Pp2Ɍ``|δW_QT,eZ@ ]mp/eRNt~52C;7sh6 oUW~mX^NfJE;ԶzVm9ƭbL KF&`xSltex ׾<^`aub J`a wib`ڎRWÐ^VRX>d sКb>]m6+0 "o7xnbI-g>/(zw#X9quXbl;ٚ/L?7! X<}f`k+@ O1lnXBAۖ,eTIpp*K/nPUIq'"V f,L3P`\7yw I.z'=5d' si3eAb9cGtoQBBjG"`ѶꌾKjP( VyȢ`w 4ԃ4{vmXmYYEkl,Um m _`foEZbg[U?%O"e+IljuQ1O2^WI"զg",b8) ݴu%)tE$i1٤t&,B4,R?B B Z!1Y`"ڥ5kLi~ȺW_'ϳ(,ߣ>tZb y4,~ߝ: mmz]m%ZYui7/ҍ,܅*;U6&,NOޯ3~,t>unuU@j~Yg< tCu(-Zq[ _m[oa񡰸>i1w18,ڗ*C۟|kט>گ]:sP}71,_ov޶6\X>_-x{CAlVXLYzWa1Eo:3/,&z!'_j%M0: ޒ;7ӓS.JrBX¢EX\HX]",aq-a$- CuTMh6#,?g o&,D+7 7ɯkKGJ?3y*jo8E/ԖitB̄En4,:or]]z߽*, Se6%,Ҳ2,䉹8 ?>ng7Ws1 N{ ɲ p.,,Cdv Q7կ^Q5qBX\hX|8,fWqX<sij +6(,4,eqVW\I4\ͭtE/7wQu"_-ǝ!Da;hlFȩ8qX4ð;eų8,z4X k{`Ck8+J3/?ϕǢĻ)ʗE5wON4%vN)(*htm7~jwbȍ3z a!,61-j\㰘EwˢEE5 L.#(N7Je7[nnh’ͼson2N;섹+ۓ5Ϟ}\Z,+⹲(anz_ {}ndF·| .TK<Uya3~+;Q8}Ya{3[oJ7Şl\Xe_3e+W-, [6N/ \*[lɡG;9굳`ȏQc;JXwō۷6.saU?O,]EY>njBJ퓓gH{*o2,f ޹ˢ+oq~qE!D=$a!,6,DW9^Ϫb"xӰx豰@XpâԬZ-7=dϲ PX  aBXx7⽕aqg6,]1 Ǐ}qC8,aqgeX',@X ,BX^_5/FX a3w眅 ,6?,>v1,>iXL? X߷Űa!,@X @X \nX , aBXBX ,?pQa}a!,@X a!, aBX ,a!,@X  , aBXFXmߟiU$Y$+tE7nܾy'iXqX" /aŗiXeqqY$aɝ7o߸ŲKVIZ X a!, aBX ,a!,@X  , aBXVn4* V<{D_ilNE';{/\܁.` ,5t76Ƽqp2~u{Ohw6,__-0v\ d\yoǻ:Mujhh8WFQ-vTa:ǿՒg /DhAt2# $9Ii\]kIղ=F>c6?t( B!X Xg"ey%GAUZك(m7;{靿uhyw`RTx3?,b0+J,pBP( X;w⍼uG􏃅HS`zg4Š6Y#( B!X XŅw|X"3([`PEvݲbSSB2>sXyt[+n0QSK/( B!X X XKhԼ\g,LL qD\~@5zd^~Ju`ø KgLоc;lAyjsiNepd>C*#16RJk$\4G){,B,F%? S~M(E^^_ }*O?ޚX"CY:;gy8ɮi"e˜5b,lMbtt΀2e1ʀ i'K=4Rw:h:BP( ^=$̎q8!dɿvR 5wt8vpJz޻ Txs;;t|q+sJ̡Z+L 6817`}#{t.Id`KBdU2BK"z'!3@Gy/"۔͇-XVʪ >Cx5JMNvĢ]$#P( B@,,+{*8;J m|?)tl<MVM(hS53*\a#wp i5oGJ53xbbj[ȹt9 < fe@be:8꧛_OŚSwBhjbT$?{5 |}#߶S U*]jDTGz#:mvY_ hyw@0nSrdѦMRBma=.?T1\ɌXBv(i BP(`음f$^;Q SfӾXӾT,Ldn69nw0J"Aȋh]vA>x cq os3l}cdxX@D )Pqiq˟zerSX{su,:EShw$ BP_̄{▪<7G' IDAT0uV}BLwf #K {<)#6y;̶Vrm1Eo<}oJx$O)XI^6S"5I4plf2.F~dժaܠXŢL> RAh_,:E:I_~#P( B@,sHtzcX&5:UW`1NZ w :X9,Aanbf^` )k^A{WL^DhªJ!v fƅ#01 meX,ʜfU5}uD_'ܝjݱt$ BP_E|Q*ٸXNQ"sӛk7# ek,J틽}?[n6?vS#5W6>Ll=|2ג`)*֯w#eAO֑P( B!X X  LXHۖV[btr0Eeۆ#5?僰MLW 7~XHWOHv[m#Vی\,g\Eɱh.M7XO`/Wr)X̛w~!X;5+<y[ޒc? 9Fy|r/#8KπZ^YjE:_'8|p5j#P( B@,΋|ڈ]88=b"sn#nfU>؟&k1c"&^\iysej} B}AMC(60N7SJ34.s,l1^ Vh FKQj!Lbx,=$̎p/Ha["s1z`/øEH+c;Wє7`QZFxu n,8B"9P# ȓ~av#]<`'[LI`٭{ 9T}r~7Iz#DLI!qCXp> y۫y[mE; BP( B i3үX\E%M]mA?h5q,{WK灆 B!% Zn"hve`[[c<8'puXgWTNb^>q5kG7.E"y J_'7. +U-n_zG^>LI55]߮x;_@^ޏJy|~8a ϩ<*_H_B3[N_Bq!VzH ,WYn7y]wU$dY`_@a!,bӧr}zuaeh;\,ET?@X Njӧ5aq V!y@a!,Z6fX2)-vӧ؁BX , , aBX , aBXBX , a aBX , , aBX , aBXBX , a a?>p5a!,@X a!,@X a!,@X @X a!,a!,@X a!,@X a!,@X @X a!,a!,@X a!,@X a!,@X @X a!,a!,@X a!,@X a!,@X @X a!,a!,@X a!,@X a!,@X @X a!,a!,@X ph , aBX a!,@X aBX?OYP3b,hXXDvAa]Y+%ьI`64&zIKs 0> y.pf8g bX bX bX bX bX bX bX bX bX bX bX bXˁ27LЛD-GPvOlzb5Y~r7X '^z͠lϸXF3bx!^e_ξyd͙WE6X X {iyW x;=B,:eyMPߡ$O @,W%-'/"-hЊś=ٿ5}@bbX ŃwXnȷM"q욼Wr9j%S~^h\=hmR@,d/mGnk{pXS#2 5]Y9MqX bm򖣆IpEM$㈅&NrMfEh3f"bae+g7G7ފbPr1yZ||77<'np@, ‹^a?dX[#XQ~_Sōw8Qf~ BT}n?uo;mShG9oP91ōi:&.熵\ӑvd6.pwXAUՇ mU+1ٷҮ?v| @,y+VbВq!A=lu"/EBFK=(`Ht}M~~,h{+XT~KI*‘S-w`;B_ oUi1VPEN,Y\T>/ިPHeG(&ۿ.ݝS^;W8/[;K{WK%d K>ZYX Oj( +=*q8y`@, rP89V߶#ſCr=/eE3kHJ{a2g*7{!|]9mXfّ wܪbߋnNPT\X,ur-4r"CP{obGo_%z)9NiN;&E6ߩ;:,nK|-#8ъLgh8bX>Y!{TzM0iV]굷|yukh5ʠ-==?NxXDYH[ܦ[=vi20ͲǥzO=M"!fQȐp!%DBeF|uU{ظ% *=b0?t׀ ǞKA:baj_E>35ua7f<0윌EOPYT,|[=`zK͕@,*) rD5D,D?ɼsڒoGuH:֞/+GmiC~9ԫFzbT}nC#S+˯psiYiħgk ic)i4'7d핔->NKqydDH(5. h*{p{,<:YRma7ءCA3Xd[/ǼCݜߕbX@,~x.M+mN-FRʋg]ᵈŞw ru|ΝRm]op 'upC :{[ྪv[,/UO;O  Ĺ>{nǣîuEEŢXl8v2ͳ%"]@۔ BXbP6?7Jk֖ eX\iVa SR<:XV-E"=gTIȽUĢa׶Ƣ()ND<@ *e5eͫ4cp@,/|5gWhL TZ^v^f7)Η7ƕłsL-ZF!m7[Zп -I9Zʁ@,@, ,Ái_N5ĂNBbqsU9w\K,nto%w j "P{bqKgPJXbb`妝Ϛk}cu?%؃UĂ2Z+ő.V *^5C[; _ԞXzybR:hҋ2}S7'*bAEg+ŵb u,gXUsb=ʺU   AwY[ZJE,b]7KՍ>?""4`Rܗ1{WYJXjoXR9g+צNˊۢHZmjvpĢsˊrA:mLJgSGd?Ɉ ܈ӬKOZNw`&SjX,ܳpo1l@tyW"bASл:u[,k ׬=ϲ낫Zv5JyYB~vK84xԞ⎈ЄRALUk$b@`‡E1E޷|3o+ii`,Jq*'uib 1Z mJba&`XX\eF1sXI#dzPqk,#b+)ZQ14  9.`t7q|}rGEvT;]˔#(ſ'PbfTjnvT 3;jIHXڶ$&OcK`5eU:#%,I*X) rTES =ZXg&4uĂXX@,X kPp}Q͔oJbIA*dNNK;=_a2i_o2kV`FLu-9E,e}TA;trZu߉haĢؙ>,]I% 'B~gIn2Ցs4A,#r+V;}ZrbxUuqA8|)䋆3BV-K ͸j#i7?: IDATm^Eb᠋J,ɟotUn@Z(Z~ȟDԞ뎸Z1z=58bΟ@SͪqY|wEǑi,vrbiwi\`K}nS,x/X68ݓ}C )y35Λ|t%, xֽ]k[rw݊VJn{F  ˓Qc:ۿOl T_Z01[;ƪp"fb}d<ШtljYz;fтeS}OvbE[U.0Ee5o=ob -\hbՕ9TbX 1 b1_@, h* }ba$dbXcc:j~bq?9;:  dG6M`|bKܠ"{XHncz;GSFo}>'nAF;y;3dť=U iSbkOߢ=G4td[zݑ}Q'SV? ūM]-XXo~t<@,2-T[{eVM;TW B]6)uD( /n}o&BG)3 Ldj* _)9, Π;Y)X@,^ Wۃb 5 ^%RױlZo# b񊸘S CL<[B畤"Z$I5#jK<SE]eMkst:dsr? k?ѿQ)E_om&_ĪM&}x,%Wv#OU#L,쓾x۟Bww=M ?(?JCKa v hEŠ) D#HUB4$9 1L6!{O3m// ky#=oBoreMɮ\Ŕ?#>paAXج;WUwMIw3Qa^hK~kI:_^=YX-)S)_a+|=1,*r&l Ma>uumX q4a8R68"%>ly]'{fӍ0>WaAXt[Vzx$֣e'EۨBs!9h呹zr~IGk_NS= ,k%fwjԺ_âma"5BnL\aZoҋu(ϷaAXt״ˣG43*9t wâmaQ)j:-`ĂK-OL춄BOaAXtLI梄X֑SX j7),FSMoutCp q}gG_)wh&AL ,jE82?'%,֤o0 k+ؑ!,F\x$Nc͍oGXToXq~jL03׮` aM拉˴UM{-aZ$X_{dcnTV:),ZGΥ5Ҷʾ3h]TpTһbcWwm'x{[`x&EOYxP ¢"?sRKXT&NJxG'3Ŏn Q5R!оlQF)> 45)ތ;uw 88r$_ c$k,:yL6 ,;X^r!3쀷ngݟON#)wm `]~u?nׄE˨1ygZt[  pbof/EwQkez(l'>.9qש$_aKLR#n%dOsj7;L% Oᇞ/ =י:.<‚ĝG ,90[aAXSRﮣ@XG ,ljW]‚ aAXa@X  , ,‚@XaAXa‚  , ,_ , ,‚ ‚  , ,‚ ,‚oF%-ş:ͻ*|Fz3Vf 4tIra1_yY ,?Ϯ-_âϏ{o1xx‚|YI]FŠ<8 [ŜtS]"?a/JTҝVnʬazp}w4 mX錤5+oTGaѼҶmZëvNMa1:?aAXbv+I /,B"B3 vVRthsR'άϷ3 +g;2648iJ 'ѵL7{VM&;8j,??'vu|j QZkiRSVۘƤqyФ=h/1Kla(}n|oa?aAXQBzQ>?=c1$*9_<{=%N{^zuO̭J)}y=?5VkkބÕ+5S'3{_ava>cRwVH ]ؚ>9O3-&Tn?._XvǸƍ\]iVjREʘ5Ĕ%#i4'5ev59}5{‚h^/|a1ߝu?,kśx'9O'*9ŒkR_QEXT{{"jŖj-c,f^pI ¢mOKTt g֞?;;uO=o?ccwe5n)\k EJ:~h,OlIa3 ,n9,o7;W5gT3l\n|.›K5FârS>Ō4f`%=Y@XFaaK⾰:x{QXIjJQ5*bmg#xaqCJMyE[җ&a1$eC_o)4aSza1P#aaFUxETu{ ĺBO-#R3"0qXd߽%`X=Fax\z ,hJѱAM"DqZ_#,"0qXXY}JaWm7 [d ,ɹGW7[Ŋkb \zCFa8,.ޘvX_ ~X,?{<a=-z7[J~Tc,gML5VXH;5Zׂ#Y5bC)R ,6,-% kl8Ŧ>nR'87{o>QXGJI#XUܩ|l#KaaJvq*PK}7@:7 ,ڥ7bv70jR$~^2RQXGKBpfG)M񅅑7hi^JEV a\;‚hÕ%9Ppjvx:~]`oKܒꇅoTΰWZWZ8!$i 紽Q>/+nЌfq,aAX܂DwlɱқF]uTD}Vg-&w`,nn`‚pa[‚x3sF ,_YMH=aAX aXod  , a@XaAX , ,‚ aAXa@X  , ,‚@XaAXaAXaEcpaAXπVsk߸=aulyTͳ#=s&h=fTW7Q{~a ,naW>uFzAnSL<؊[hvw|w-]zݫz̔3KNyT[~a!zp7t~>g-`X\l%VuV}fp׆>:6 ‚XoҊya1߄Žξя|XĢn{DR{z׹n4V0/{2XW9t .SobREVlp7w5ko˔ki?sX Υ&q^C ^ *W%*%FQREY !HH]A%\όӢ~_7UfQdsQ2ˏeR9FhD2m̍i *PW cUi[?/{9# }o2K-[~% 5XňĢ1\ab!P<'a 1}#CXh?yUsi6Cg%h4Ж)ɑx\bL,@C$'wP+MS8_V3qլ7Ngnr*fZ91@d Fabʊ5?FΏZQ?rVdM9>YrTRq2h荚WL{U3ٛ$5AeSPLWET-;>@CUTɌieq7o^ZAP݉M? ŶԹ]mR%MX%o%!H^޴P(;QsR #w*1ڪPn@sL#  띆P%(TK}Fћvbя˿n>FeMz ?ߕ^bbqOOtX]ÞK ;XȈQ,' H$Bp@&MsaI$peDŚEs V2fM.Ao,= mQ)s\bL,@DX,4Hdp>[\k{i:E.jx|O^&'þ#_`je~[7}WI]%޳Aq3ݷeI`r*Fˤic v|^[Qfz6P*!3=D޶7C=ViR'V-Vg{YNvlΪ8%Xُ=*<̦-6>kUf.z<,Ue"&AjVKq+ 9ӊg_(}K̞J{z4}0?#y =SA(Ïx-Q06G'·P.6δsRtrLIL:$1T~?A#Aˆ:d48DIȱZH *1ڪPqZ#aw8tԦW=y"N,Ԯ| ~Ji/9 08YW%R~iR,5l^bTbHoϥXHK"&:X{ay)uXmH+Z8?Q&i\BFp6RCÞ\$HOW$q˘X(aFC<M}CyH{{!' I+.ثު?y% ~,iZr4x^l= dEu@il2X=[<}FWEE5\H<9löBl7F&{& 9Z&jحDv Y ,f` OB#~uYtm@}^VNu.FxeQ˹ t*n*>8awL3fXDU*YՎ"#ku^-TL˧*1ڪP^r~FPMsb;Aְ~Y嵋veQ!⌅ *ua*(c.\DMsb;'wD8),0'h($Oi-㒻3^b"2On6gd)e7)an}[% og]:D,Zk*O&لD 6 = mE(˘X$CB oߕΟ=By?p%bᑪQK%F1h]0ϔHi0;?LEOwxVF $&7$%g5 y:gSgϬYܶFerixCJʷZ)Ғ gzrBvKk^mUy@d4WF+ɔ-clX_J4XQHe7M YTv,vtFߑ O;HiL@r>d!9o⛖b0FHW Nh-j+TՓb;AFTh[/aՁUKMX׺ x5}+Xdzm7,d|5},i@bC"]s1z y&h=C~R͚,b?ŮJ j->dn-gZX F~®XUeS\7FzC) NoNv'tI(ȑмbWe6b^6BcrX`s$Lc%X|ErT .tKńPBWDek ǻ](P5v5`1R:yaɳq~7荞^&Uw[t|6t;AFT*y0Ve)k׈JM.YU4*_МKY"7?iDpb4(:es-T-cn.ҁ"X6Eű ;UB^'0xȡy링X`ᘍyTe[  $(F\b?,aAJZrh1!_yWJ#/=`qZV(X̐`MmhⅤ$%fAnߞ_^nR2=M@\99"x#%]e鴑Si[JMnּ|$Ѫ__%r W˦,~[.nO hB#)G (/"2+m 3i:- yQ+ibHN#,xS?UZ|fHT2B(À #*Z{xW{LMyA,Z( j;»ꗙ6reQ?Yev1Ri>h?XԕR_e+^݀E}KDC(XM~J'F8!Ӟ_&x]K> UBBm޶Y`2(xVbFPYd~HT(\[B ,"2/{#o: ~ոX +Q0qN.n.7VHT;AFT*yh~ %9 "W _^*`64+,ฺ`1AP IuύP4ʹ6k,\; VcfV߶`1oY.kbׇ;AFT*y0Ve''\%XܦGfBR˟Es"  d\]x+m ,ZIW.X;`N<-4y ,~7!"`RHy링``!*;: Ź6u,q @;QD+YyRI@WXPr8Nw3u9usϤpczȡebA"4Is4%ܒFPM"Mъ )byT>P[K֞=3>!tVV2|縒!19`ۢQ6?~ >E!mQ\$gb{aEj8C~fO%s}OQU1rS $_ŭP,"veTwݖHζ:~ɜmw:rלHO0p?9,cmoEzJWtK,}aD2mab`*✾g$Ȝg!GBC_.6Mhܥ 3W 湛%I̬XԆ?D wݺqR͆֎{4*0M3߸QǮ_O8BSXC2&YaBcǀX bMLX(go#zbHmJ,h<O,XKKMX6DK[T? C, k%Q7wP@B?)H,X("陡!MҢr#OYEPK PwUMnJt\M 'CIA%5F!h.LǑ X(1&I;SM}~Х?Ve莸PNN,{$;7H5Sv=)Nm!bs8Gwo]q\#>Ӿ=!B«v֧+{=>Ecw:sgH,&Xxޛm&"N˦pO0]}mD 8)ؔjWۗw$(yزroUA1$/P񗱰&b#h"a+77x#rT?D MԷ}0M>%Yq+b!Ges%"VggLR[o/}Dz+qjcJbx>sojVG#y J; #ت0Md-._ b//Mh:Fxam34HK9gC,fi%-cgc4v, b> fGbУm6i7жbqê|#vChJ~exUs x >qLj c $ l:UYo:Wi[*z^^,?$] |e{E?zskAr[ɲISNJXφƒVJc7i(y4*8YDދF~7_E+(W ?v7* w85baaqN\FDDpbaDѮs<1Ą6vP@;P {4Dem0X,xRBP'%"SS\!6uvyX@lUtK"tT ?AՂXֿ)>gX7_"vDXײU>swSDK,i[ ^4bN1t a"X،%l]0 ds l|S j+ s?F @b3fjC 3^EWv+{l01i+~SD{Aąvb 0cStH@dE sWքx"Ft9%e:Yf3Wu\PH," ͩSvdZQrٸص–bq baN>F5TbA+6UN;1ٚbnT} :6'VŰVMq@)엢~ܗhOƈoJ,Qp=)I 9*C韔߀7ݗ-'.Ze=}&#'k۾ps$#P@a[ܞЄJ+20æ rX8`[+3 P8*y~wt͖~ޒX SN#w8k'CbQ<|DV/j6OO#~96ȥ]+⩲'W;=u=Tn/ެkΧAuʹVCƐpf'=EvT?(sޤ'BbAj%J4ĎFY4[8H,R݇Xl*  ?/+8̪JWRCH]o5blH,X @ H,X @ H,X /{gD9SHh$!   ȺB5lJ.޽J=df2!@>?vɤ癙 , ,  @X@Xaa  , ,  , ,<:^}uߟo[;޾fB-= , ,ȼ'_=L3[]͂^vi#rYYxu:;rr67xy{O`[QS W[t_ZKuh">T!V-daa@ g# P0>я<{2nq¢_y0lBŰE†(/"7}㵔b¢rMpZα5*g IDAT2K,,|8]*|6<),8(ذ=WYH´1.l{ EYNfnv"%<, ͝c}PwX!, ,(KaqȢ;Dh43N=ϽG4'E,e!, U'D m C+ 鱙Dž aq6)E>T6e ,LOItSCI-Qn \C Wy}(_Dnaa@wF}a ?.`,{e#,ؘjK(,}yX0|‘[,@X@X@X.zPHUgsO]X[OV}aQkgEd‚wJRqBY :W؋\a7~mK/,.l>3WI^"avnIXE !," 3ysYKuhIE,,ꬋV:s ;֌!hA*OqFؙWIlj1R+¢I"]=NEn/WuӶ2X酲M2#I ORX[ҐE3$((|Z3VӅA<^2I/a$,Gƶo:bnqh6!9l,򓣄'\B_D՘&ON#>;'st Laa鮵q%"9c4m4 FC6EԽNƔIX$ aaaqݮzSDp"ʙq=o. ar,w -pV#:lJX8adLaƞ9:cD^,Ys=BFi4]E]VG]Z^1&o ~HR03?t1&uy~S%5ޯ3_R3[hU~Քα>؀V1/֋7rD2aՠܣZ[SN~թGHE ^IZ)b}$XPə.R8~ n3&obl42Ϋh~/2y?zӖBgyOty6^l7:LF>4 |gUnrJk};ZT0? $TsX`%,-aH((l(WU7|L K_#^Q/,d<-dL%xqjE.鿛2Ɣ~Ώ+5Lڄ;:AV y#&G/jG+$*\ã.SY.dNәZƎNX:āLr6ł٨W?3 I[s1K?JWJ"Uf4~H?p ’#Ĵ+"O_e/,&?42>mCZOڛ]|j?EX9<}r:wjvtNM8FI{#n`6s'g| l<jdK Y>o<>b2]N[3Cν1 IP<ԫ%~H+{f u{xmD&(7% #Z$B 7+dVan>D<&g;ElO'/P 0'qaQ ,R^?QMˠ24. ޓ'@~D-hyuGoxi'|z3.Ƅ0m'rcϟ>SH]@g`heC2X\>`6uGt$EyD%jAY5bWs$䂅 X;6FizAٯ}H,zp咥@㣧]雰IP_ؚ#,٣yz}{ l\k*sqݟG` dPJEB[D jJbգܶ 7mQh'k\ M]/\b? 9aF,$?Qk= ~58K=xv}x$jL7g1I5 eC,6(O= mQ4[ض/hw36߄UA<]owPAs2X~)E긼Iܱ@&rzMn,y@ZrXs8]cQ X]k# }\G"7\"5,#<)b7!홌-gc1i3<,XJ L&Is%~ׂE^)w#\a_&Rl`Ó 3^`_{u቎(23A7\ar:6P|I`#tT-.n{hɓ}[#9 *F+(ݏI$`QϞgDP+tQha jBg!^%ťŵMz ۄ-X,oCل,\8Qbn0Eo x2^", 5(IE&?mj"=XCk.0)Z1Z4MA-Wm-aOH gY R\|usZg4I%QnE^`!! TuK EyY&vϏ7*~?u&<T#+*o >:} ֙ XOyΌv%l[=*QTN@b;SBmP{nzW `+%Э=k-Pz? g`qf_őSO;ZrbkPa] XT"j)ihf+3,j&ňg`e&O-PY,~3ծKEFC.x/Xd12ĆxI{ږžsP ,Jd:~@UBWjɞB^z$uGyhS2!GYHKߛb+;N&7SyKiV?hJIPU$ qpiw0r&(_Y Z ,r%IUr !.c:U`y #itO Wt29y_l!Tw_kNP1a%}Y3GG<+\Br0Y,IwZxK$~ld1JA}3p8(Xl A+5`a4Z Q ,^U7z09yS EQo]M>nnQ6*$BIp{qV*t|硛 iQWNrgH YW5ޱ;Jތd,eCc F5`a>J+, c 8ˁŌnhS}p\-l^PK2X%r;l3><: = ES7 8E7BEv(CRESfy_xCW6_,4 y\d`QC *Bǜ8AnYӂE~H`$>EpTEw;~, Aڞڢ{D . J$ Q0Ca(-)AP#h)BsUdyOdnݺfgcN_s0XcEF:<Q}"A9'o ܀~rE.'?"H=,Z/*<XxcB' ]KgFOԑߪ`1D G;47l"6{lW8tm/qtȼN: , 329XtkH`iP8Q9FKB$` S,qX=8xVX7a^0?ȰYf^Sy(|h{^!;2R [ yGSHeޚ=Ƣ ` 9q̫B:)2"۳NXlI3^i(!4">f rJH ,wW9%!5Q4XH,2CtC&s"&seXК-XR˴WWu4)f\`( ,$?0(^z]`PR8 -5pB]% ܒ̗RQ' {74LF :=^N5p4=us# qӯlqڱ ۠}yPyl c X"zSCp5b7zw kb`0X؟]XX9"'r'F-W+r/+T.`.6ڇXq=fE X/ΎY ,`p[9J(Upk*N,n+Lq,f`ե߭2`b Sە "2/MT;Ÿ^ʗ\P)9!8֎欳=E, p^  nVX_\jxD]}1+Ywwl+TM3B .h%Ak,~_o2 GH`q beRzKZ`.yX8BB>I\Xpe٫-ĎrƢ)*XwG83⫙,Fˮ,8tLU>cP=/yt!7XqݺP\g,,  E;:g,f m4 D` LX8QX.IKZiZZT8XlۛXym7,(^_հ.(;lð.bz&<֕,V`C$`rMQYw09V? p[ѯE<%WXL+7:<;42/ ?gRQ=(||Y4X4,PH`x?*<7`1&Xl-TLg4N8Q(XH*n@X)]ͤҺM pɃ$B1~pX䆇埞 F wXBD x)Bɳ,Մq C$qn2ʿIcVZg>|QTsuqXlI7M^: V  J 4Eg1'F j>vj`{ ,j`Q&Ѽx"7CN= v,"X,,zxey,]iiZS>X&287oҋV5,wR,}ˁ1Ɂ z~NbE,S${EM!"ﹼh(@&`,Zvʜ YNw/|)އiҝp*\ t{wҤ2)$\oHCB{/J4Ăh`FO6hW#E,ojV<ɋϹIshQP~?I?,pH;g%E*".c]W送8$m2A`ZR=Zrkn=IxDA3|#Qlݻ4?sC +ɓ³%#oeT zP7Ltnױ|'y 2Gdc98"7xkQN MaH"q*g~J`D$ }vE|xfvh#wzXpuf bYsiʼU(X$@ڨYM;C'y2]XxL=QZAERk`QX׀v}\M>P _W]`ATu@BrL,Bi7[հ;YINgXiRq&$mW=Q.B0S l+ubz?W5դ73:lUh5smYia; Oާ%z 2DZf\4XpqY,pRcGNM/Ls"IX3&&+wٻ+#M{VC[kcY%gOXm=wLM >P$+;vqիĦEi^!dyibD-7E#Bg.)%[ToS~?pΧz Su&iGf{OkXw&7‖RiO55_^5~|ƈFmܧ>sqڡړEw޶QLd˯[_7VJM"گʆd&MmJ=4$f͇lmޚ4-NGƟ>2qF*r Ù(,}}ƫUIa IFR9F#_zY;.YXd?,&,ony5?LgaA^sͭq   'R1PNM!3n1BJXoӢ"p,ggL"&(vt"C՗N;%cg>Azؓ.f"D'FXjh@lJlY_fV\=w?OyR]UX_oj4E[5>4'-kcjf tHjYk2`k,߲i~2VSO Ŧ~3YX(/YXHepx9ep]3+ jv^خJ d@}a!FӼz.YX;,ux[jS,t]3jp2~/& ]aa1Gv2|AXoWn[ W^^uvBOe"j)a!" &TWJ[: ‚'lWwq%x4f+'sI/zP !9yo5БR>WD&\G޶ Ƅl1NPnБ: ?Ep@zQ ZǙñO 0 '6!tN'_VZMF'<,B ^]}&!xFٜPxR-}Fz:tzHm]R! , @jSo }͓D[p ,N3|Q( J 1U2p7(4LFvz E&!bX V3̵):l5n ĜE\h"mJ}J)!"Ԅm99h=ܞ̌/8 Z\~LEm.G.-Ioj*/v3d&xIW"Oj|\+^|OYh%o*Iٞr}#I$LN+oa6MiQwż/.x*T9pɶ|`_Wv)}0c4 ٳ,R[V9 mo(z67õC-F{Em{VHߐ5nJ,Bj[%o+ , ,\ȍɂ$,^:o`$ 켤p.BHIar*%PV.] 1O ~CĪOL֟\\|$,,u~h~U~2uuEN!XN>XhS Wow#0b[N8sh7m 7h{N/mT\4难Ԛ}0M'ņ ڕCL_|ԌF{GG(WwsRP-6l@h$4?V;+nQ/a , ,'u kZYrLz,}ISK ^rJMtSSgw1w;wdTox>CjdEWz:¢JzzZG»Tcٗ}@XDH}#$Ju)FvhVէ@&  X|F,\t!X@,\bgX@,E_zoy͡UHIFX00p!1LGܲ9s'µ"}c1YƼx8n v/t3X0`3KU [^ dK+]=ڡb$b%?>q&IH#;9?rtm*(lTX03L,~rM b1<W?~-j|_[T 8(/r?P]ٽX)f/\SQ qS]hQ>ϫAɟē՛V? {Lv;5 d1Q 9ŝXj>  b<UBbB}L՛^3̅zE,f͔8~B(FDtg Ɓ+Q:SX )TϨ'jlZKvOS-;-oENr/)Q5b@, K}xnrp\3-iyZɆ D,\f\IhaօJwXoJ baO{X GX+́XFg~dViZmXOEvlGIQ,$?8q-BZlrӖT![U>ξ(*S=W3?:E1iS( :ݷ~bF#D⵴̶IIZ<#fYX 09waˇВ9Oų¹JelnFŝ&q)XX\R@Z5^i62r"שׂ ,8KH<`Vsda³،Xxϊm X .n:[e\CQ.y~iZbmG'W›b#aƈa1^OI(Dd014?V"sT&L+[?HX9+ԉɱ<)&#b1@A`<2T˂R.&}o2䁾/C;bK$Rb G*ͤPȗYYKTҏEWwEnb2{X"GFFyEu!b1<d /7`k7B#1YjoEsŢYוJ*p\YjG,Eb1' y^)#O %B{zڙ؂;QX;b!RcX z&;L Tȇ7BGe:o Қo|B[ ӗL< (;b4oaP`S2}>~K#. 1_(_X@,m"eB-FX6Xz^ErAU\Xt"o@,$>S}Z FE:g2>H0w]˕ϗboX J-F mX=/A<)yH,ơ<335_U7ŵXtŢmwuA,g3F7wF؎L':Z,r ИP>0b}H,:3b/^osXx@3bѽQHW,Z3'.vfg%7gc%XbdbpUko|bdfu&9_bf]x?"X4.@,lOǴrkA/cZ8n]XطߊÓXtHʲv9wɴG#4i~8>XmԞjnvu e윈" w&ztqؚIHK ,  , ,‚ ‚  , ,‚ ,‚  , , ,‚  ,  , ,‚ ‚  , ,‚ ,‚x}lEzw2sGe|‚x (\<]㿩, ‚x$_o{`x\dihII3 ,DY[E^~M*Ta,EX*EwD(=!, O1/M G9~_zjugXck} |Z8,R ◜LxM5u1HGz45w fL>תF߿IR`h.띏_5܉EL)1Ѩ FfRHwzg*mFEq篪Qx6Jq7o4pbLf֫}=<_nl- 42wtNb8޴'s')e՘#IÙ_gK՝XaTvVˆr:uNˈR 􂺻l깍Zrg+9{5݀3EKt]>}4  ,Ճ W$;bܬsD ,Dr{S޵T["?tlGϓiInW|nuDu?,Ns"HE*H~˞ۤv%96V쯜슼vBEH.N[>(aVu "9^]c,:a1k*r_*RO.'9 s ȁ]E`Ŵ4Vפd{m"z6ܝWE){aT}_׎?+a`cl-gUI {a_w7cV [P}O]ta F IDAT{/T_m*S׼k+&! cy'Φ} !I<$,wV20WRph,=]SsN\5-Bf&, q5TSŎ_ !ɔ}=V4pKX,6nG̉Q#"'aAX<{?(,&Osm'DVbG6{6{"{F5-={ȍKp  ,T?? A{?bBd!aqaW +o܏c6oE>FX ,G$5o9o(aarnވ󴻫!|U KB2*圲_֕0/OHb#I!Wcg 7)PUw+ ,G}%c$8H96QZ`GX IlBKϙE`5:$QKNXط*$+ !6J=QhgzŚ}vCvGkww&͊Na5C=˝_;ЩQJWDP>ѭ,Z~XL< 1އiR=p.yâ>. 59W=0{jz`&"9bH!Pu5iwl7a@Xhe2 g&#dn-(*kL ev/,@X?ŽLJ}٣hӽrgoia1vIsw ,Y &S篽t,8p'?:NTIٯOX֜xZg]驝$/K;ߪ+FckNL88GRZn^B:cd,kljHYOشh羶AJ3|2ԎZ7J5bh F\9ΝTc޽tK-!Uر.~; Մ[v>'o>Q?{H ĒŸGZ(Y|eңa˪880p/1M(͚{zXX^yEOWqfƟ}+Ȟ@: ,!囶Wd?,(9f ReSD(,tp,նTy?#/>$ݶڰb8MݺJg즳+6r4z^2aϣz;9c:}P14+];ث+r*暑FXlzs11h9!zZe~= a)}yU?,a?76+3'Y1&,f:~[ ,GTO#;sR*k 90b+Ȁ"ёQq *wyρaVz?ڕf_U1aaIoqtkX{cwͱP+J>el* ,w0GpFf"jK]FX-: %RgrBcňqىl]9+N;4wgs-aѣ5wݖu%g ,:TWf-#Mu7~X (#aq!6vcv޶ tyr"L&Z"E~>M&pX8> cm꥔L.@X*ƽa }n : Su?N{cezۄE>FǍ,V8Ƚxsr|u u&,ͻ:d}G{?‚܈֚jƬc ]7@~~XjF՟?3oz= %l Jx_AX1ZTalޅL%ێ(j_tn)=i6Gv+ǽf,xp thn׉E#oSq  <#LҌc%Լ,h^B|ƷMțMxg*ZrEZn<]wRӡPUBƭbɄ>_Vhj!&ٽbW\.ܻ>x8,iwN<^ĤMl9Nr>PV/]Z|/Zj.atN/H8w3zB%q[pXXܜy-,Rћ4"MŊܝr#,AcF.ĻBs{ټְ6g)atjŸt.zmG}l"7{֓`_*T TwKx~vF}W"SzXg6ͨgdohX7?{َ傷,i:e'}tG[#OngmyyL&W"}eѯa7NCa̓7T5W#+uo lD:מls` t/KߒSbȼQdB$^ߊv}+ ,֕xWw٨OϟӒeo%˺"o",_xgkۋYe\#٬~+Xax\6{P:ZO5BGEGux&Oǻ~?/#2X~ʪ٬~$O<@X}A , , Ƅ~E?"glrGN۰j#!X|Y_N]j`#*{l|iHF!lBЩe]}`7]_^$m^X$i!)޾lܺƉH&,zaXلCa_EM־=[Ȝ dv>o4`"#y=6>G 7;_P , ¢Ivܷz.O^<8Z`P<"J64iSCӤQ_m҄]_'s 0Xkq&%zs9̜9U ,Q[Ogj$pUʽfa0FOD CRwTV>gx ,d`~bV_æ=}rtGoe=DP , <91K."־|aIΆe-kVpLbZq?_guUnUe+qMTK=eNպ9?uPΪ{p}Xuk&_f퓭BuoەR xU ,Hڟ9GA YgS${]#b)zk <.Oޒ$bV䯢yXbU?c&EIu~0 aAX[KCQ 8+/}v[`<]93,^aKDEhیu#;E*ʒ>մ+۝J]F]3= ,pgҮD{gXEq$wwT ٽa3gx׏L-AF ‚?%Il 3ܿ +¢)؍a1,z0msZiݧOLx}2{a|m X3,lRaAX܏Ciϱ]47[y޸9,juq Xg39QHˋkSfk"euPN0ٵ b ,{Pyڰb6EUԎɷT,p5BB'kv'ܳ@kj\a!w\Vڑܪ;r HaՖKfjXVMQ-絍7.+oŽWa%ײY?""9Q®2Qj`a1]^ZꟓvXdE*za"hOlF]k;oEK?DDDaaկH$>!, ~=n?onzy_.T? +}d~?#nע:Y>\">>y}/H$cY'oݴ^/xYe}g!,oaAX܃T=ޘJ%7z7~d IDAT/| -.:JXO-l@d2t G.Vuڔ">aAX "OׯW3~`cew ,U,xW1aQ^2W]1aAX bWW+k2-dU$ ,Oq#3Xy1@XerstL `FaAXa@X@XaAXaa@XaAXaAXa@XaAXaAXa@X@XaAXaa@XaAXaAX~~8NE?}ЬH_O"?]OO? "E ڨFbii5x`BR4iBz<.ZSLWb{Bs1;3b\wF;|f'w X@, 69.ݪ^{K4ې z  %\kT'ŭ?݈/D R9g"Bb@, *Ѧ yQbޖkv#bqFx.h gn SO]\u&[,UBԴ#3(˚(絪=e,-rڏ޺eb]Әhv߮:ZMT_*ʉ/.N8ĢVȅ5-K9٥B2WYRG)_ba yEUc STp|_*rbCL1uv1|QEY5(:-ik2FNp\%c&߄Xgd]%eYh1c/g9gSkXC軏epX@,6Qe-X'̧ %cJ0J*l&,bAL53T{Dُ?l<(G6TsuF*jS-!Ja+ڍvCfo/B;[({301y7fIpd SxúֹkYsUC_X"; uxBUޭEug *B}Ntm 2JP65Qg R,!>{bdzd^fBlޤpAH% +b([|X,빊%C?2TŚH ӝ\Xj(^ 4WWt4G(  Y4=|nd,?"j3aLr iD uf-KRtbe/%D2/'o;C=n DsOP#bl^9ІEFE,~ %+bqiUb@,D_cUl %bb1b%N&X̘#)R,!MH$?(oM: Ћ.A(gDEژ!blqu9u*B,6>[/dٳ䥋KoX@,Ƈ%Kt5)0b%HzCĢI43?D,-$'GekMpXmw.{}N&=b8L7rUFћ_kn1>`bh'LK"ϱ3s,l!!#'jrD)aq Lu=y":>*Xܛ Ԙ)}T, GɽbR,:FsX8CB,^X(wb|&]F}NUZYwFw@;HEM>b?iubU"#M9[Iu Lru31T,-nx^Z0-e9]b X$z+ѳ-EŞ2.PG=X 6˪|ۙ{bA3Ey&zmi'gP,VTn(9cXpr;z Ɂ#$bO0{$"TO1 P/X.jz?wbЦ0b 6m`%APS~#bhGv4̒r+[Be?}[{],bů-1;oZ^btgb:0pŊZL,ZjXx{?ݞ,QXYpqL%;yz~Vc1yرu_@, >h}Sʔ,EzbX(/Y7"\Yݯb6bfQr %Vc"~X8ZeЊg3ss-.bj'&(/ސ>vdgl"?xXbFR;y.`ܵEYi/ %cX³ 4/ gM:e8gTݞFWVvv'x^8$8$dwm-WmoW"3:)Y7x],+b"1MS .,om"7Q3c5Mse{X="Oqz9F,!Te2WDsDI">ȡʰXn!bʯ^\;xnPf2(j.\%Bj^ Ub@, }HT@,^X0QOD)kX|RZ'o6Yzlv;He|>\/p_F-  {E=*ni7\R b1ܐ_׈~(%%}לSC~h)|"a,]| #b >& l U,bW$QFvY~]X?99xQb7ì .zR~czE,^yc(;pxĂ:iNXCsQ_& P͕f!b1[C3>{JDWFL<)6:c="gd60.д X(B9K?{`:i js0I͌$bZkJU+"zQAOZs$Ni.dI-[ٙ5=Aiai_B}6UݼV񃆅 , #{-&a1>X?b6[<ł ,' è2zއͰX玜 ;x-n^ox'a1~%, , )B8RsS3քZb!),f#W7o۫GNXFXa^/6ŤȨѝB=k٦[ V7#`X T( x؉ŖK H5aa/ZƽńlvK=N<^X1aHuY_v>P,vW-B=8eXBI[M ^\(AB-)'‚-,PX] aqʋxI_[znpMX|3eZEoA_'(9ƺz;rfP[ID}˜*0aaAXJ:ui}Y_;W=bjcu9x[Q :q76=a\GݭXа0̼wWa<^X[R<[_Pօʌ΅H9kw,};U0>Xb暿 l9ªCaaԧ!6c x<nSrthm'ぎԳznηezm'lt>:Vo\‚p#saAX._LEDrD , I5Y'aAXs5p|ZV:# ,tj^M'l)j'aAX\YŸ'#c ,7Qk , xj ,‚ aAX?NS ,efO+>Dv7IDrH|r?KOvW\i‚u'+7{?Tp"߃AX 5;9. awL%}/&M숌u$ ,5'yg@^!t$q@XjB䝻/6 JVn X>+?k^oƿYŭNDEpY}fM{eE$mY,֚qP o=*GˋfT;,XV0z-kwbq6UcpKd*;al6\,yC(F]-+-Kn;.bnȏ㪿h([/Όf@X"!u 1cwz܀ΑXX*ɫeY"%wKtb}}X6q^~??9rN*wGzq BXџF ިTDc,aSY{fe.^%,ᇯfs"$`ڹ319woɺK;ף_^J ,wuGSY)`w {Z_E ڽmX#:r2z4, !=R##&aq%r.RwHνR_i  ,f,X{0-gk碼uXDE%|һ"fӰp7{/WT{$ĩu EV?aёS50Y"AJ ItgbX䇾rL^a?vvW߸7/E8ٰ\a`.baVŚWb_dְ}37"!-c";7ksFXl#wȓ4:"QX 2,E73x3,䯻eCwJ% , ⾭eyꯌJna1$򶓰8Us[X4{^XěZYո^3"[aAXܯ]}' ?a761,Iaa>.,\n\M) ,̶8Ut5Z{H_^ydy[h-9jbƽOػ&4߳iDHH$ 9fQZ-EAhP2SHA-tn*H_C>LG?NTf*#Yܲ.Da1'˙qb0y ,4'AJԌ:1JHepX ֢nc]jqB n,OVEW$*Sz<(Ɯ -ko4%EXŁ+U^qݤ>tЬZ3)g\&?zP$,{n-%:a.rXq!kjMP~X)YʑdXUsQ'2PpWQ0/maq*ơmHUJ z׃"a>U$6OdyESq79BoPi Ba5}j,*W<0', 09^7QMf?(f|*iZjy^v󹼧&L7Zײˮq˺x ¢y ^6+X2WaAX ߖ߼]jTBSaAX໼@VOLNXOOB% ‚<;pomRP(‚ ‚  , ,@XaAXa ,‚  , a@X@IYZOK PS aAXciQ3W^)ʋaAXbC\.mgx , DǴ%\G-*x , Tb,7,-&7h*GxC ‚a7"{"y`XDzwkܤȋ fa , ԺM޼]˚6ZQLVdumG" aHҽG6y!؅}r≦~ִ?wŸY@XE׳߰8=w{?~h!<־S^NXt?ӴL}w?of}Mǯ?#,Es Ѳ!, dE@Xwa ,~S5ۜ&,c9aִLZ\byLӴ1糌WQƻtR:$DaM^_Oq3-QoÊ@}E|¸LҬlqկ|׭M| |jLXq{/D荾^w‚8RILрPumBv7 ZisΛzdP;vXuFXhڧ*,+o^{N4 E r ྌʅ D"M^YOE. ]f#։űЬ5ϕQ5a ,`DzğH 3Sǯ/6cTQ.s.6z*OKU*̋~}kQ0,3 kKiOͳvr2ZϝNSl%//,gEo6_ϨW&ƊvX ժe}""-ƃ:@X'\5eVDG۽2a7!iŹXXڛb{b܃W LH"^ϬbrQ,H,v;Mgl$u{x| !#wzϚ?pr:vf?'$qv<045x7c𥋡{MX-v/4 ?'@P6U4|-ssY|P>#U_ݕ>$p ŸqsEڬ_̋7=o-ҳ߈y]T͊‚8:n]uq<-?.hg-N 5:wFnz4j+ԗ .^IM[Gdzɶ{ʟַZc} h[C%o,nЎO/e )nXX@,*.f\kвxi:D$v9<Q-zgC -VgpF]>0%2i}FQ7i~ fuN:~R]VMC,VN $ <}1,bjYRX\/N{Ě SE0^](X8Ob@,@, yvP}?%WY*mC,z~βDMP:a83E@֬D۾W L!&[iL*OpEiT;s(˒}pF,d߸~dقyxv4L3bP|NbRԄ}DiMO?Qfp⁹bjY//2{bQ-5DaX$K/wDaX8O8uh(*MӎGE$:&y+b.T3ҒuXn2ţŵ-rY$k,ŊsMUY0~b@)5$K,e )̵  ܧ:RL'bGSŘŢa?aȀ>I,(V5KjwʦO1pEb ]σܾ퓟n/I3bM6EMāET)Y3u$-i),?A,ƈl /XXnpuY,\h5  g:ghY.T~ ("XA_LʎPbtG,fŐ ]JDCXM;Yww<:O2$\bmLT1>q<#IsqŎQ2̍{IsHX7g*UFOK,\e )BKW_ X|XLS0>UF钒~iX8b؃Fmwx w֒$-nm <1"f1^ȂbH:6.IoxSfoK,5]U\!WV͇&D{91žy7֐puY,ܧj.y  ENs_h7&((6ƅX\f4w#E,)QCQX Zk,XѠX+| ?N}VKmkhvpL\Mq\t޹#*Wby=nA޸+7:~Mv,!m1u?vevv'sbq.c"amtRKb S,z"Gn(XjE,2$R|f#X6![,xc9cR*Er;RG["ɗ.j &Z+q*bwiy<+V* EЖHo$pH{m*Yp:XQ&QSEd[dK,d<{#דՓ>XcvA?VĆXۣb!Py2J /\No2w} c)b+"5et)~j2DKIַ_?upYM,SCA{U8|'Å lջ:t6<Ï=,\TǼDA*vbhO# ?:q><]37/M>CJzZr(4X 21 6'E u~d35U(Ty]J!XӰNJ_Q,I, AQ-DȠ¿]?$|lIݷAX@,,z,wf   ez8P`  P myPʮZ+o&zab\ d3X /u[:FX  , ,‚@XaAXa‚  , ,@XaAXaAXa@XaAXaAXa@XuIk9-:j ‚^illa1ܮ , ;#M4vÙ̝&aAX>7 =~aq )^0, ‚1lODt¢sEXL.1q=k?\ի>jտN5;aAXJ ymJ/8,5 P^X35:}5׬]kbdX,)wm钔|Fm)ZQsW6~-{ 6,?zlyf#+r|{jӊï*NvJ;yW:K>*x<3yp)#(hilzxL>|u@X֌tdIGuì TZ v>E˝ؔål',JM ˁV/>MUu8ș1w> w((_i{#FjLmmiE"5mg Y aX,ڌ4Ct8c ŘG9m۹![U:syOy{d ,kS-{WnG}?xcfⵉFoR5\2,F_ߓ~W#BY5\Xd}݃қ#7GT4a͆GaQ|Jt'2lᯅP;ioi8f޽k@XIΟ/8ԯQy{Z*t7,ܘ&ŞKU(.Lzp 9^\6,wbHn<f;=baD3iEϾ?ܳsw-T w/~]Yt}` ,+#:xH WŌpSE'q^,aq_)1a?ioX+vʏy9,$xFmBE4PP~/,Q@Xלo/*?_Ua"nްxВ*a;|O{.xX|Rп_٧^ >k>wRZ* @XEqt;_ b$l+}מjC%&]@hXK&oƜ }kK]ُ-<(掴aaAX{T$N$<ޕk waQS=Q7,^bb<QpaѩEaawւ{iūGK&8JaAX [ALδ][=<~QEOX꽟Lm;wFމaan#'?֜Pfh5  ‚Ġ{!;˰Pu} ξngdXl&9*&po*{VvKXLw/:{IX#H#u&Upix*λ , ¢߶P=RTi)leuMXإa#͝Oj9)H7T۾zI5vyâs|L,}X_`⋯+J?1LҾgK&̻_\Ω~cFa ‚3\Է-|@*v8 UT \i^-ϚRahT[Rӽ4b,UOaaJp/a*ޏKV qޕ0d)+0d6>#\ĆP"K x[JvJjv"Ln!ZN[F61KU z}ju7 a`"R`;i%F,`Ă ƪWg!Q>Dؿ>|^XȱԦ~/َQѦڇ=CyW~ps8Ɖ_] "wILD,6KXqlgz%Ќ1RB\p5ego0b#X8B$]oVڬKkbzdl|DWR^0~">AJk"kSv)1`````````ĂւN>D {C=?9|'F,h'\ Tn#s.n)u^1W pz5=נfH9({wխÐTiZL|} 9໘Zs0p҂jHK݈v~4W4Y #!Ԥտ-~*fkb`Ă-F/&o2I&SN`b.z{԰kbJ!j4'Dv O#vRXؖZ!{}S!JNXxVmN,tius5Ve|_^26cW(GܶpgX0b DF꜄ݛa,ܪ'u L&b ɘNqG,5Të?߂CD }b l¾d Y8'+8o 㬽E^ǽT^PqKR;D~xxEhۜG,#X0bqӱ90,L0B1~Tqb\H)n+Ϧl.{4ocsl4jmV$gi ܦd ?ѡT ٩iqqt\u'=2ݚu¤Ⱦ&;ヵFFnK?,>biՌfU#  l|#:5%7+B,ڔa;bv-l~ww1cNl`h ҩb҇Fܪg/qtw , m6֮YYZ5oXTVúgΤʳxɖXm F,\\Z͓U?x/0:V[)/kQrΗiiC;hGz ǑK0 ~Dai3De}|5ocϡ2YKB8e!OH9ݳ$;LVWcrI"o~C}T}0GoAHs Btd->WctA(>8y]LU[XXՍ}GrOI\eo sQ9]=hvY&X< }u޾f FdpĂJ/&U;N]@hY&R2;OD G^!Hv¦d B{ȿJKB!y*'7x! &9uH LNj#RZo ™k)Vm~df'ky:$6Բ{q_Wr'2 %=rx$ /핯c$`;I䨥4fEu`UY<$_gZ G%Hd\rEG'^v){yFUPުI,T88wJI/_0ͫΑn툅MɎBdw?iY~:C _۔AVCnUyZZOX2E< mԌ;vGiܡ0-$j4_a:9OtX^~W۸b,&#E-/$ei* ϱKĴB믟=:uJ5iX+d IDATL™Uv8J,aX4jhX_V= #X004>9? 0hxmyQbw]?>P:Q㶅+\cYx-|O'K9I SVs+O1ptq"Bw 2)$>B+?0߄l̹65Xv&ʧ oz^g 'ƛ;Uhxw:#tFc/Oz*kIBZz8Le@)tN,7wlwTOu_:"OĂ?a  {Ffu!;XW {c8}Z]՟ZL&[bkjI0S.DME l 2'YN7E M-ڗ=y2\ȎX8GMҷ,g*'بi-lB]&Y<4XyPmf<If hc[XOD:d'8 ]"I rW@wpRW˸/^^X0;S`jp"P xs !#ENPuؤzT0,X ]"]8}ƪL-;UM6Q.24Y-c,I,XЈjn:kLYM?'X1l(&Otm BS{$A53U9m h;!P;D""Dr;J <ԧLs2"XkRoG,fax=T4Kv< ꗳw>\hF"NH}K=2#|G2 NN>WްFªIn3-krh Jjc/%q-{HW7wB(!S1AAYwbβTbG+0ɏ2-{'"c?6yZLs-]Ă gItTT2uXX}'XD"HnG60VO3Ak[]Ŝ6klF,]x|˹xKylLXW+̻<ʷo".I޳lyg:;2% 4ʼOhG&n&%Pj Bq']N 9Xe/GeI,!o >0P.є^ Y9b8i!ʋo& ]aB}2wp@dk;b1I+m.EU+'fu^5NȼI,z(b\qET$;l1eh[b#dEĂP+Q47U%ry^w[pĢ5ctj٧lj:*grXa`w;D""Dr;B'<*dBqM,M 9mG,fX4횜DK ;s3s(!zkQZO <Ȅ=u2lQl좫9{=-$XƜ J/edI,N6M#8z]AɆp n!#O ~Tt( !nXt2+2YL$k} b-wFXXЮnl&[ CX9tk?h*TpaM`q<뱖fM9OƐ7XHK_2X2:t/*_{ 21g"mj:*gdˆELcwA,ID,޵di%kc `# ӌ`Aca[]Tս7 A 8q.fҒG같2!sG{fЄb,\7rC%z*}NN t*>hwPh}l-] r&̲j"јc˺4~c ^eOB%VbҞLnN=e' ۰ֻ<,;0Y;n,X?bx=ۇ _ວ %[f c\5 V ͒. ^;Eqrsp,_#֛!oR4)(!NKb;e84I5SILM('ǿϼkY:b6ߛ=#FOO,BGV3)Y㨘 Ptso:NPb9`0lER욗:i"MlYm-M fn/fbOm ! >1'xLKf`FXW,^SF_p>UQA&#y pU m0lC훛!lG&ЈMծѥ Oj+c"1{bqhwq#2!*ߖ٘2xD uSclٮ n7n9Ö%n0́q$Ε+Zn0Fش6! %MEcO^D$>>Tmduw׎ f}ͦ@H};)D," `fOt}GŔ<-\z @,҃X%(OQv@<οpg 2vcp#t£IҠP jC pxI9\4%4#[dgρ/b_ 5 ]$h.)G8 V86CAFV7Q 7 }׎U(Ï:?r'OX#qtN}6L,dbPO9T5A,Pf[X8!$" A = X "X1B,湉q7(+t->q?7yg$7Aͅs95Q6֖’,#gFaZ}ZR̚hR"&'C4CA~ߋlR LP6@m:6Bum^N381L\*[\,Xׅzg&E랛y[pV-oip^Gb9Oe4io@Fs1^=C7 $ No">2ocnARdobF7l{ƶfITR gܡW%Ϟ`'h`5;W&Љ(vFwD)$]eu Ԓ$eՍB_d[۱@lĚCG. `WS}Iݳ~1͗ټ#CS-^iLI31%d(Ii<gM킐}% JP#TFaAK;͌%@~օX0xPfFԒȊ&,_4eGpiR~A>,\lf5Ekx5sn&Ì&>;qI?ASڊrքSj!3,tKVjB&oy>ϏőJ,@qisMx; \~aJAϕoJsEXzct RK 0cR2\ť[](Ʋb vRy78r-fHǂU,ѻ탉7 x5usYN& ӧnO@E.$qv]P ^йXB]-Z nΙgX`gĎ+vvjA p{-Ȋf߮ uфEѝL,-?p4Vuc?xo  wvOCN쇽ֶ토:c &hfsu ^_A,зf+vb]: a&, %yA, !  c'(EPT%V_'i\>babёoWrO36q0YgMazu4׶&<=CΙwɢ)m Ғ9嬙 -i5cEןg&\$ 64֔v8mXl߱ 3<lGk85pf.T5Wb] fmpbqGxxǎ탉7 /!D7xtMdObi-v"e]cF=Iq״%:(*l:A$v,]x.5iB]%7! d7m_IX䇍C9kB[(:WE8'Do ^_A,E; t&vp2:c܋Xh_ͬ ! J@,b:5,obnčkdOb]s 2w_h㬺+8-qG8|Rp2g#hF#ع^?*jW3a{f8(E~+|/ mc%MhS(Hcoſisl֌1C׻aĂW mb?gEOif gEX) 'CBdcdXK Q,-"d;A E@,SI}LFU5/s{az+[7gۓNJ^s[nԫݔ[%iuk}*ɭ]e},t)&$bIĢu*bbqi"ҵb @, ߃܍+6Q/gᛃ_rMwG{nhDc= IDATXo4rNv1>\,\[Mb EͰX8{b||2س X /Qs5+Hl'W eds"1$4-_ǚqk) ׫rz?[B_ˈcZk fnkN ׷>8qXlTadXZzg %xO<^P=vcŢIhCr'kSWNg]L36hp8mĢ5@,^sʇK,rgT숕wl95.Baq4-kDcr",s>:P_71nO[K[Ģ|l "Uw7p"@snHІ"(ggzi_KG,o0&@,Xlg'1j^.ëm^R5NϷŌ^5j+.=qp:"W5uEALSvϊݧfh*8gU9uG P[nʏ+C"ō݉bR]D K􉅲N>t~xdyreM^[ݟ;FhC%ZQ}I8~Ln*  o@irCo Q̍—طj?Z-XT³eQ(lWf*:cbs Ζ^5"~bb:_"*FU,L[eduzNJT^Ȑ`ա]F4TcmWDo[W*'FE;heEZF#_6b1ᓑcEQQ\fޫv L߬H(aߝbq#r|3S ڗJASҽ(=f7~Z,5AMۄu>s֦ҙ㈱}Z] ؙuյ6p3fJ6 pobX,RZ>XĜ'wIMTeYM3Ȭ=zfԈ{0Eǩ <{1Ն (}DڈJWW9IW+ IH/He Ӣ"zQeNm,„tݛ.d6%mU^#҅٪XtybHӮ/ԫb1KAAEtq%"祒k'b*ơE1G/.je3xiba593"u>#2mP_C,ۚ(`j4¸`j}gmXX9 )\Z[u^, HQ,_~@yC`<7`ܒ"|4:O%wE}hcΈ#H\ےبv]hN,%dA>F]eo7M< m,]OB9;ח653.1cBib4jlKFM@gؤpR͚L}_w_X iJ6P+. WX`2b"Wlyd0KZR'a"=C5!y$F]B,bg+~ݴ**u]wXԈuS\6Bϭ>Ft"Q"#iCkB]bQwZ"rIWJle\ի AvEEV/DjX̺/ʉ7b!BQFeP0 ȚP[xwXV4Eø1"ab j*!BBcSSi!4b޳*&B+c 廣#E{k?`P_ʓb1DȠz[-) g@(_%K`IW,p[} ZVOs+ ND,DDS>:J{],0b'awm X@, b_l^'V(fnzbzW{?%uC#GzxD\wO!`zXԜ<! U &G#nb?y8f; Yop"3 ɉX,DYJ5-Ae 8G~HN4SJGL@,  !d} ub (4ɱH-l .bJ[ocK,4WCCuexB LHf{bɦW,:>䞉KYKj 2b!I* QEB&]1SOB/(w-#Ƙ0"X@,Ă_[mj-&rIXquU+N+V YSޫ#{u|'Lt}NV (ki!uBjQ+K$+]SXZR(N\ы{r,(4)mf'bqD*"D)\4m'aR&b~nؗ߱%uaX| )DD[gP˷?޶Ì:>OTFtӃbj= F aEX;8rK<:ٻ_,c_*o%D~bDF5W,9loL."ɱʾUe+޻;yw'YKlw#m\ Xb?XjDn H4+lNxr$rDƉ=&i:9\d=W$U _;vM+%U5/łˌL>\G,[ , fSv@;`bt"GV#EfBdh9[(!^hqͽHP;Fm"NX@,x\bAN>BZZKD^l䈌Zˋ;1B%$tq84Y Crb4M\,4{ĂM(v'z=DHkbЈE:QMZib`b ^vԳO_$NEp1:LM]L~Ţk __$FEIh&4VW&HOX8Ux JĦ&6d@ NhZA魸Dihƈܭ @e';=քݧG,mnWP~XĢ2sxvFjj,Bb [˹讳lzS|H>а4{^ }1S㈅~f R!mysёiܼ;%6)T]&R8@,dE p:׏4_YEr0ŘjQ1t턊Qefl.uC bvKy5ܜRqbdW˱ѮF G!*1^[7de<1 l^E)X,# '+q=H,W.z }Cz0<'1_.;'GB]4+|ivȞ n#X܈EN6~S ܭ_ k 3OhnPǴ4nmʛoWl.\,Z\,D(W)=^>ï@, <.`{Z;+%غ6g}aOxF[ݓ?wAm⧋ߛxfg]级PqτQ': 899ռ])aH+0on ;Ǵ9 ~vblLWu}%!]}tG6_5@,  X 3c9BrȷuE&y|bQ97 X@, bVwT,&̃$*+n>dynFϫg  b^"={5Z[yY~X~8hLBO@, OccƏ+X     bbbbX@,X@,X@,X@, /{wHvpl"*RX<\D\ 9"&E +PUY\,-+ca ǡymұ cXy7ڭ3@X a!,@X a!,@X @X a!,a!,@X a!,@X /ݏ~|',Vᝰ‚f^3BXp: @X a ,@X aBX ,a!, BXa!, @X a ,@X a ,a!, BXa!, BX ,@X a ,@X aM6a!, G;BX}&,a{E={%,a{N,^ralL,bvws'JX a =o~bPBX b罡z'BX xyX\FXLl:|:u򰘆pkbM,M!, \O,ͅ8/*Az(."2=8.$aj_l]_^h҆Cs8_fQQP^wl]^c!=ěĢ S=f$g -ڰH.":guGӐ#  a!,P$[Q}*SIe䶩cq>Wmgkp(amj$"vDQ5ǓȢ W);BfEsq͂Y[`b!,lXlyEzoeeXĴv-,㠢\X a&vBdM=(jbU(W 0[`b!,XO,Vaqvۨ),&aQ^nL,ljEkbQ;&BXŎ"YzquE)*0;,.'~gbq6/~>cOlRX a㇏5H%QyU{=;onBX 8gunwM,־̳|~5y ax~_phk=X a_",12E~YPWuXda{zZ4>0^3,Asd"a5Ȳ7es;6-0^?,x1{{M6_ϳ{$杍N,L, OGrX aL, ,`G3g&BX}'g_މMHl8fBX N{dBX Y>qCa!,lBX  ,aBX  ,a a!, a!,@X ,@Xe]V׶aR04FaR!TضBX ,^d6  ,6C(:KS a!,@X<b߰_= a!,հECxĢ\]Ϟa>xi.:TyMB>.MtxE󵈘ƫ8=_wtcW@X ao3,.“b\G?qyNepBEf,k!6u*׫w\_j a!,ME~c0J"?Fu۲HUP bjpiICX),IuYEs\aS.k;^>C~Ԯ"OS3,,8)CuYyy~[juFs ;'M&Y:ĤY?q䎣ӎ!ѱuh_rHLaκ,!ѧ݅B0 0]l|Kdӝ L=uKzJAU:/bX|bayˆPO?b ƭpwP3VGy~c?z bŢ?GX%[ZClɸ4bX K,̬sk7k#OJ,a(uoCoL0@, ൊbr?%n~>N=bX V,@lo?jba}ba!M b"D%Vn|!.]cq>ߚX2 kXbX Q,:* i35v}/̰/  xba&;sfH,Z5;XL1Nw_ͷ x5b?6*qM]q&\1曻Dnk,<, Xlqظ< bJ"YXl|6nG&vͯ{ {o'Iro24ݾvԿW@, U,ԾXشs*^Yg6&~qt"Pƕ{BѦPgی b&L#n>?wH=M`קunۤqO@,^X؉/qv@,^X bXbX bX bX bX L5@, @, @, @, @,@, @, @, @,  @, @, @, QWKlEum Ţ~HYlbX _X4RO|Y;{2-g_.X b\xE|p Gg(p$"bX _筰XɩX bX|AvE˦-hf'(v?/Xҡٲ(3<3"DӶ}Oi(0R UNS|YHŒaHAҝBXݙZ\I>\@ҜiNw@,ӬdՕ҄Yvݡ^JNRڭ3Lڷ˗nbʖO=.VĐ Z|JeGc6I!x8WFX bj%KۦQ )WEQiZuF'N͉ݪ\H,P++,)OjTWUTR D Hj-C:sk+I/K>LŪBl vXq'QHQc IDAT]J3һ̃X bB2ԅHNƍ@㕛ǵB@([$׉Jj3+)'ilD-ǰk,T)΍X~3U!GB63!]VSsk 3? %7,&N$;bX g fm>.'!!DbjMծ"i lL"ƉEDd-"}4=VMsbQ>M<:X  B#bX >㉅HiSI!:XqV QX"fa"?'Ģ'  a!,@XBX ,a!, BXa!, BX  ,aBX  ,a a!, a!,@X ,@XBX  ,aBX a a!,@XnuvÒ‚oڠ Aa!,xYx>o+a!,@X a!,@X @X a!,a!,@X a!,@X a!,@X @X a!,a!,@X a!,@X a!,@X @X a!,a!,'B(}o'7 pdf2w'7ss9=C8)/.,'$gwO:6qrjGʋ\t@X Y?3,>83?iP.Lȭ*ymEAg\6EnEV5sM VimC#ͼcXt;?6[cC+aV^БQ#12rZWTr䥂Q|t.}p_/iǪ:#ud˞z:6;ѵ;cb43:{eފo;t9ʞVw ;?|xG/:g"wrbxXT~օOLH<T|e4plx䁹t͆E?(ںռEg /xaW&[׫(:4plru2x# ޣWM8-6}z8h%1f>Ttzxo]'k >Q0(C1q ۵pylEѠtT 5VTkv18+R:r-^Յ_Ow mŃU;Yϩ6 FJw=sHZMo\8&F~k٭kK85Ҝf˯7{}rusOa>x}Nh~|>3OئS}϶x f;gQzx:)5wKǏmuBh_O3js1ŻTf{x]^>d/?4 hȟƺcx%sDQJ1:jxd6LT?yd8x1Qs@a OR/ #MBri]{ҜHnP$tQ]ٛV JǙW*U9c2˕;W"/%1ǃ&Md_̟%` xKrMGt4^={[Lfd {?f@-&MN#ix93Y?gyZ 8r`.V`PoE。s d4@䡻5o%ӓɎ D @X<)0=a2~ŗ͋qcԈ̏sBuʏ5Pvtg1tڰ~y8!,pH34{#CBKf$ 1c8`xjQ+}@9ۇK9IR[V><M ap\\Wi;`ڹ}))4@itnQ%K\~H_>蟏[UKXT87*Xx:g>&,O}>,Ui~d^3 ?oyIbC8  DzKZiD"v8q 5φ'Jbcac9%,D5;%,7-=&,B}+4}D8zhnVZvqE,,AXjң4]RMC|LtB;PqI-}3ʍ TZsF>c/j7PN{B |gdz'yZA =ׄ2dQ9udk6@Frsx}w:H[(a87fә@B\R ),p8hm#(z8q41v^ԀpεJS$?jHpAp'Ov|u;MhDB}:QB`=HlF-ao`) (|e(B*r{ *EJM#v-wv),E`XX".qK%,KemmNK#Ų]-E8-x1EѰv!, t|e!\XmG i ϻ;\4 d;X߁ɋ Jͽ2Y,mv IPAnGYZubqs/a )_R95l- kCvG.)nŴ:Ja1̈p\I fd V(Q}S*SX@xXC]QVv{ 0ظ4 s:}Ab3BXGӼ7]\8Vbا"~_aah ==%K\~#aQ,Ȳ3Gb¢s3P3jA/ThaGco\2D%OH]xi0f؜} -O!. r=&/v+3ȐEuᚱap )5_',+5K zd( q$ 5gJΑɾw.) j%,H]KO=I, !͋$@Mhy$ @TiVHT._cמ@U{{JX~bL >Cʇ}wt]%AFs &v$#&`Šof@䚻X ^@+{,.(,@El/PX:jwY2T{,"? sN_#0aJɀ=%Ow<(PǢĘz̳ZP7YXrU}Z?)*:~*|4:[@BE=}3@Xܻ7",Ŷa|Lϗ 'G",?F0tm$,C@a@ʛ;̢Jܹ%4)f"F!YՌ,,`"6~A+ )C+!d0*=jaW1)l̄ZX '5fK',>98BvOgBOzݠR2{؏pa9Ith>8o0uap~o/hS"mlr{# yuC{T3 Hdל78uNWa,MHaz(cCv=[ ?뻅VS),dz+|41zq%7\g_Ԧ ;M9#أz*] A +˛_k6/BÁ¢صY|`|~=Za!cCv=);7-w(,$,⫓vN:0svfr kNAŌs6- 36r)&ߋ+@XؕQ8^ܱi ҡ%XRn_%sY/xII:WL5KlK R Xʂ;#^IVbL틤 JGX',THM\WQNK7z'U̢HM;x<! Ty\]d}.4TgI}}x9b>b8w|e-F4zߢZv ),u'.,RcCM^mT:Ⱦ  @8ȡ`ʨAAX`ص'hkA!PX@ kC;5"d1o,y{¨he@OceBE<[c'&=\1| JG2`[lXӡ Ʉp|#كv\%,#ǯY,R_g-X}١O uScG5}N U--r+("/YAn׊;&d8|p1Lґ 9ּz]{[gms%1ZPŔ$,dwA 竃@'JzPgt89a5&#}lX-XS/-1 ~{,7ږe\T\GM*^|c x9ʴbvSuy}U6vle أE_#vIak!PX@ UՑ[ M7cKw]R>xG*ЬlW FžoWeLZy>W`di6.;-e@, wEUBqL&V ە(t^d.:헧3}nq;yp{ĥ~4Y(!a4TxO)?%y! ֑J@i{GK11pwɈ ޜ'PbH8S~;_+)yyOLxob__-m{XQ`w?O,zi`Xz 5QƋ6?RLH-^Xtɓ> C,WË Ms>Q&\7 ^i<19bqZ/Y5z>y%QpgZ h|O\$$I,|$8!/-8PG}I//!{T! ]ŢfB;A,*"B;g nXgS+ۗ=ycL &1bcX[;iq~\,Hdf?t A_ 4C^yXlBDwr@j/-gudZHjXУE~QݿΞ] c@6[?|yC!  bAߓ tlk-X,3!cw9T,HO e5{G,[Fz8b2lPmE5=^ve;^̊v61N(e޼!1PZoɴȇ7I5HE^.vS͓3'(rN[QKXo[u#]Q|"T$$=mrږ#,G WF:J>bMǫnb b^ŲXӴ9jC+.X^M'_V,X6nɝ)#4]Q,+A399 MMpOGe?vk]%$ZYʯ:Ꜿ:uMdzAH&#Q_X 쇬)mm)|%BHj<c th:2]dmi g+ؙLI;2Qv0l?weQ+&E=▭jsX8k{N3fsCpD建UNl XK-kEdl[:Kmdh|ԩ@{]٢|eY{ ?K*Uc}C޺#PYy:quޝ)ؽꪞ݅>W"GGUUi=ObQoR'c'XG=MY䊪t/53+T +VsFUEilwl$=̪w>շUTUi{R6TUs?zxDW-M>(Eg>Ƭ߭5Ţl!lʤZY#]{|mlB.ڨ*]n5+bOL.]5eEmxG:pnhE[g5k;A*AN,5c=g6;rNk'ttA +3ZbWqe;˵RVى+E#~ʏ! \,_|_O],KxoOɳ$7>%TϏX^܆L_wFO2!EJ ~Yau 6ؤ痘~H&)=i=U8GSIDjb13ѶؙlFG'$Q_(CT5vB&;ŒeN^`KH_" z![@6hO,0vwl!r/(삜c3#ouWbͪ.!o -V4QCݽGC֒{?Hԯ^ k\ ) Vθs.0Uw- ^(k ߽@Q)žԜ^z<'1۫rXtcX ֤E\㊳M,n ײI1Y2ݳbgSʂ J4=ݨW\ '1&._oҢ b5n:F:9nhͻ墵K3d+ANZ-&y_ettdč&X=Fbqn bq34͘ǥXlZ޸=w's^^ED?)V|)M,-JSM,XV_rZKbOÎj:g [B7լ[>b!Z A ̅k1&ry֓ba9,g)s-M} &|{672~bWRq_BA 66XlYWJ@ݲu-RͧYǿUFGwl%&TaԪc`:cf _ɖNxz+:#Υ,ߡ{d4Y?q.~P8y;6N 2"Ұb(d=QUtf4n:]n:ܪGh7HD+'/R1t6mEQK%ik1u=oP`GPa`=8=Ss,Z.8=]7׋܅="ݻl~{ij-I<8;8F ԜO vqCp:۾uMGӵ:x808=-2uOYnDO9XM`i8fY X bӂE'^ HK,svDzS,H.Azj\ V,;iA.~ wS;9C_ޒb璩cl|^i|~Z;7R cC~Pc|d_`VP`m[,[M:N$:psxOJ`!ܱ,p : (I"N%J#pKu ,`?^[0 t,@-?^"KDgs6:U?)\Kx@%`1ST2oTMvb$^Є~]ĄSS^v|7LÖ,. jIdXeP A%j2D!i*>X]"-Z8QJ/^& ,4556Tvq,Ƞbg`C- $ DZP<4`B [qAt֚{jr,^#OyCW.{Z 1Ioݑ5}N|5P#(k,= HN"O- uEg$x,`1(?1Xd/XQ7@bil5eb}^b`;| Z>Ѷocd=»I:>`ю.!њuAʕ7 %L`Xз>~%yt/%b[ Q2 XɷK](a<4crK*>L(3 Ꮅfa}dIT9<|bb+pȑ 815!o%JdZlcիaҁYz7mLk`Q4~S祸Yc䑫Ezk }NX bӂEi fco>w_e᥻ *rqSiV|'= ,^%Dս])<Zs,`ޜe ,?"&L='I$&*-bxR ֗F@~nX!+}nLNKzx,;֚E(ip|nk1]ѾRb_yںe `m)&ׅVKb?댂Ep:<怶~DS?>FQWBCdT M8 4 ޖuUy3k,!) hs&F>Z&؃k^(cJ1_7+JhR(XxH%, -/e;Y!vҿIupP[Ip7)`т)ۧVX^=:`QtXhޯ{sş@\'`oϞ;rJH-A0yֈ\g`qXTUVV^Fh{!i%,^.Goum.BIɁ :Kt`1FnșBsu2^ú1}`AXk_,vXtNX0X@"?b yg$% ࡒG،5t.,+$E{xIЩa, LzXK'Ɂ,1)V s`a`";7N5 2mȲ 0\F)g9&Y*E,(_'6b"8a`?SOMT{68iH@!5%J%(WBB+!E|s~ߵgNbϜ3s.-E^YDǔ¯PHX`XŴ/4+JXD+],)PuJ@ӣfl X$`#|tahUԜ;h ,H[ WGibqA95W Q Gرv,Sb Q겠gxܵ#ֿr ,/3?PY K#,Fi(B XV*nd;*Xlygp-xĸcQuE Yhб:bQ+X܀r1i_<>aZJ,މ}lD;Qccwh۽q+Tޮc_:;c n'Qw+X 63 B]JNFɲ|qg '+(Tܜtd 8J,bڃ:]:VHJ,N}") ,m`4=j&`EIKZ@6[YT=hxʝt8ǦC_, zX)1Z[&fzgSjN\J9 $v{ټ ]#Bc0,Dg,H~ZVxPIW#b,lť`tkK2?a/{c,nl2AQ"׷H"f-bX"(V,p{AdAEҥX䉉;Jл"lP@l=e n'R2钂,&[`Uڴ ,B%)Y?~+>}"wPS4apXŴg~fJ,BJ@ӣfl X$` ^mfL`eM+&Pq`q.,`1\308NTeKf&mz ]}-ÓKx$T#> c)dq[wX@!PDu؎&rQ`1pg:XL$Y,l`1u`qd*hF ,ngN p,cY!Y 4?*dPhlMӫ  CKc=X//>9y_e./3VӛWb4?<-dwFxísW8WŸLn[Vhˉ-Mo./Pk›š^p`Yt(-/3U`tq"J@ӣfl X$`j}Tɫ(\q+$NuEK n, sF4X`d/;`!'yNjHFU3רw$ok`ETFf\E^o Ӵ eKY dYa w^*X c(M-X 4IS EvUHHL/,nX卶#v}ܳ )QC?X=\ά*/~5,>:lgU8X,SEw u%jY+{2uD1ΫHX\Qکpm;kVk3Gŵ\^l. q, ]s3$N܏vEe>NHMb33,%UL:X G2AV:6XoP`bE3,HZ,`Q 1d1xw_޶~mOT\z7sXO畧+Rُ*6qtfK^:w!&m z*?LZ\pr[~_ {nrw YReX@!] 7o@lAX; oP~M`-~9C+'+Xĭk&@\0N-r v¹x }dPE~=*okGXr|8"i*/~Օfkk"Dϯb<64p%ej{D,B]|dC ߕE֩N[P!m~*XԘ;FE9\{Vzt*0w/ѣ Z%]sj<62e[ q@l`GϪVp(ϸbSC֑*itM14M0#,GX99,HZ]y,RoiAlov,hk(8 ApxaoNVEv" m bϭf , aE,BN[_{L*-A?,Jr@=A/='X8)Sǚ@[*`{&yeŠb>5J_K32x"X,t?m,|Esū?oNXu:w6xf栋-E> ܔ,xF1YQIY¦x`h*o8HM^o'~0 up#,gwH"% ;X8_ZQed[_bBrF^EK6+ͥ6;b y/dMD?+Y3X'h` bCs j@OPG+Mf޼y%_Y_3UXy.Ind1?@d32߷Y'Xsik4_af:ջe5tͨ| #!\ ibRBZ@BB JH캘d|w|l'K[v8y~sl1?,.1Ey^b>ܶ' Al\ ARᨭu J+7XHX7XVz|}uT{+#:ܜ[ 9p;)_$.QbںήYV A#Ib!΄$.S6cKLuƈ"m[fTS&>]QO  *gHxJΣN[RJ E,>MWZ6 {t%BK]kb!lGA BH+l2]evN&cռQr9#MM;B8b!$^qNƼ4`%l\Bď"rar v^r)y`^lU#*^^b!HIuUc)^,atDX83ki4X@, O|`/SRٜ'}4Xba?Q[K{ 8.I:~2M/J{EcJoڃҝ.q^͝22Nx<#;.wm?n,m n6{nPjlԹ+>uNyqMIZ8,ľ(N{voIZX><=gs`[Ғt;rl3Y͕?%juvdK1q퍋'6-%:2k. a=a}51JN&uSII=1_\iq2:2j82ɶNb\j<ּ+\uE%F"eզ-vp&4={  8(l/ذ4BEaN VXtQjb1atyDizmu^a@e☖gLU,֭ךW7Hb(  tUodˡ^M-GM4({y. 7d;AY\[bgdCI35ؖiogO+%M9Ŧ2m$N]ڌ9$  4z20Jm]FKѨxNMǧ^>ʓOWH  'FXXXXX@,X@,X@,X@,XbXXXX   o.?b)χBj>b.?;E,X  .%Z&^PGorK:pY{6ѧjub bc#r\bxy]rQ2)ĢfB,K[3e!jbEXzO J\X bQ;Ǟk,_ X|ϋ:-&wB!58(qŢCCU7{R$zUb"ܸXLWT}6ѢLY?Eo]}hRpXBݻkX|_U,X|.oU)[7Z,HË́5wV5SbqV0bbhlpbqz( MF bbl.*5'b-+$Bn=9n A2{y"U@lV1-گ^ousQ RԬ]G]yyڞp1:fKW=nsf| w!>_bD3/7mF4뻤lPX^f/{Wʘ3|&76XQ7o(LjÖDclOdhcQJXݸO [_$|VMil2h Xȫ 驼cy% [댅R3xx3Wx{0V.,gMFs{v0{p<낳^y?!e?#kKيw/EΨ٧ އyk-T. ؁0l8'gXN7EK,#v)$`䃜ab=>n@lQ)gLewXXmY,֝ \K,OFg~}VF{(,joW(%3QR/#4pb7(f^32M9F?}gq7zJ[uȴlZ"SH?$c76"M,^qݸŽq}$Ѥ{$Ѳ5^b!Hd:1֗"њ^hF3`U3Jgѿ}{h'lJ(\?'%_)km1D_3'GY?2c4U*ABv\ݹ1Nͦ9>bbF"jy"zPLJ-t-GcbuF S8)vRĉE&$7|'ͼ_Y "C'ѱ>YYo:)ךϕ:%!%>#H[uX.K B;?Grh >Vy-si+QV#M53hZEos`+/p!qmIxGdʃG A:XBB"(dN=^Dbu6MUu13ULhJxlFf2̧?O{{]g+%? ~uY _.3K$wr  wb(h+K[N&4 WLŹɹ-8oOMHݏ#|uyJXa 5*sybA҄*X T:[=XYWl$iB;)ŝV[b>}pMEJ&6ɉ8MV{_7Xjz^4 zFl7׋殾xɳY5iv$hsgqj ?Arr褓{j*F56w6,X|`cg``az@GK`QS2Ni78RϜmzψ)H,C2sM6vRl4o}?h N(L|/ \0^xj-|a ǎx:SN}K'xD)&~k,4.[X+AP%cM>FM )׏4R7{ dY[R:Ev-^3C ap Ѝ /&mRn ҍS9|[x5w L1JE'EopPk*a QjO#"Wnd=Fmظ`t?ů,l\x_ʱ %JF߃Ri}+%D7?F| eeeoNdvRL 3 #d ś Kf~`2Z!Kk#$x|#wI9Hw42ID(UYE-Xi\@8O Mz^3Bn6F> ,$|"+X4#l9 & ֮+bFdp[]/q*|{X5"xÁacss.j\ IDAT147Uy|n9(XPXp=rxDkn1A&r"X,BB@sM{o|b j`zPk/X=Z8h46w6fE>X=x'~v+,Xذqb2|y`0!ͭWnr pt'Z8 bLC'p5Go,O ?lI tڭj6kt ilDXK}R $TXl,vv\H󽌔殶vk,&DPkjP)1S)d(EYUX 2*&W@Hop1XĘEd9GU(C]WJ]_F"e8QlK,<{ ?AU@qOA+]mF jX5O_Ӈ/ 烅R{zHh$@CkEo#kl6l\UK,n?', Ţ_ok=c1E^P9,nrOǿEק^Bo"d󼨢'byp<``=(tW0lw̹ kKVRj+K,_eȃ5{-NK`<,_իc杹\(U,PH.ո)X(^܂S_LJ +`2 旈ŤZr~y?>1>oU'b [9C3Oߓ?\GOwTyrHNv|Rߌ{,ijB|.֧:(~Ř1vTw@,U,mbAdEʐi[p[(3ϯ (FS=<>пɆ-^[#^6 9VZ{ZG K|-':O%e;3y8OKSeKŸ;:zZ7Cۺv4o{}>aQ½>zY+&:qustd3n:_>Ԧb1'O3AZ\GcX+V0D,|l9֏ȝ_]aG/5v ov/b2忟7 ^m ͎ -R";|+0!'O=y}4^;/XX#VW;[;1clڰ;,((ؽKņRbxb0-#^<7rW 䏉6Cb.u2MQSW[9g{_N.C;>v`|J,:F'WC^/ #k$^;Oc.jH_y_#E_,*-ROL X%bQ)b)tHe9c '; h !;w"X#VW;[wG)c|%gi ,˝b!YlFom.vשgz¾l8>-w(~v)wh\?owl)bq/* c>:`q|pn(Ɍt -C_~mSl(.}z&LhpN߆~_g%Y#&q X8dlZd5-{<?i X#_$CjKщ B֧`d.%JA]('©'?P,qxK^tw^EETXlIh O  5)?'b!+KXWX,b!!-T(O, n1Xc,N, y,dYYdAj_eYk>^E!z{>BI bQG4XlUۚXVXFoqNKToSbQXz%J7&Q ޮfoboD/I WbV6.r?bQ3XB" 1{#mv[k UZ,j*V,LKk &5r=kS(}>jd[J,hD[,x)Qm4 oH,PzR ; m))le77^dAj 욒fL, gbQY:ŢXBZvnKCqEXd Xlœ-,H b!J,Xlr C,UXē,bI@nS,Rkfb!%g Xm 5Ӱ79/ݖb~X\bZ{¶PI@XȦPm!ruX$ R XS,2nbĢ&Xh{v&ΒI6i"5$KRĢdv4"OdAj'wK,,XRyb1[[(bgp#N"[S9-l.b]mYȾP@N0%v{U,ˬ1NH:\EmJcDpȎm55 J,A,b6,,P@Hޕ XXFٹx"GREEㆳ@>fw'J,6^b ȟKjV&mYD} @vt<,ؤK*O,P+"^(YdBE}H ܹZ?!d?@\ K,,଺ wvv?}>>> kk_~흜 )\\M9??;;5\NYoyf/\|+#=c}1M?`ϧ]Lil_NL{wwӏ)G޿}݄fNPzw{ĢUx yʭoNbjA,hkfz,ޓY4"N-?\+r j|+EKȃU^1V Wx؟ŇwSXu&ԆA,v86{bݢ,z{.YY(,ڋYɢ,Lb/Wb}B +.\hz0+bXfEnB|w(sab撅 ? ַX,|f1BE _-.Ej !RӊQG)W4bzŰ ,X|.bQ\X,D\HqˢML8ɢ,BP"eu~pb}‰E"W^+vzB1X xl6ބP}[8Kߧ%Hov8,>,=,Zj2 .J~,MdBV]튐+~Ei+BؔflꙟZ"^ XE,x}wy*kYPA.Db$b=w/Uƺ*,DŸjz^XIū3&*btbBEvpVoo76,< [H{YhHv$W]Df(#+b+A(,vI(= _ǫۅc+jpb1cBBa % uʯYfE2[W y"$"Tb78ZvPV,P,, vM; %.Ϊ- -[,lg-F\t 4"HEjT[+t1Xl9fE56XM͚I+$% s*=e,a(9 %BmphNj-]YP$rRR!Z:2[~EW`k MKYvxBoۛX= ,Yj!E6uy-Q c1W^W,x]X,=X(E,3= ׷ՖE|~;>fB5 -dBs,.%S [ar+ma!V$Գ>PXt?xdĢgoYDh0޳"U m|0Ɖ'J)\,W^.DoX Z,-Xx(E]jȆ3y,8m"G_$ ?x^")i1VZ!sE+܂l,b!D,tOOkOYb& faX4EP -Z/λ8AHJu" +dH^rEi ,ʏX<͂E&OC,J۵Yv5YټY_bҿNjR8%Ȝ⢠Q+*"Ҭ~/ Ilw{" ,JjCPz"ŞZlaE_ܐMVfMH^BA҆ 蚄ZP=ea{~[maBDhbЎh]%*bf.PoGbe$BEY(,~L[midrBDT-\ݢI?5^J&*j2W9UtjV'W,wSlزȇYhBlZj!E:BEQ4n!Tmab^q 4e6,[v&bEgX]m߮l6ZjPr&R)':VZarEWh>Xnͮ  wSx$ܲ"[Hfq"\p"މ,C%yM⇧Sw*A,vcbrBePasqgS0Xtބz0o?-0TrH"v-. N1ԩB(Ů +ԝv]. B7,`Qzܹ}buvc/#y~"YȚE@T[ eGOKP· +vE\zE E:57,^^Q]MXt%eaĚEf[YpfbφuLOOa *VZ!W ;սaE&K )YHaf᧡|0+"ZjP )q p=81hHR!jTW T [$ŠEyENjfq.ZhˏKIDATblB׋`eYXYE"W43" B)V~_QnwbyaCOCEhm[=V; # hѢD)[ԺмADDDDtDv94REj"XWW}{%/79u`y=);|Bo-- .],Ⱦ(0ȈADDDD7?q,ZBȨۊe]ϠZ+f]1tfh|rv->H[ O Eȋ}'OG (W;MP3/,nc9YĴH[VX~&"""'ϖ*d[+f]1xuuXJ Ê *vx=<:),1{fw, -ڥZ…хB2Fg""""i;ԙ!'+ m A[Vm^WU(ﶫ?,:+u~WC_$zkh ADDDD4 O 1EFER*<+̶b+6~N"rՠEd gUn-?'G XPԌ+NͲZТEEх """" Q5~oMPQ]qXjmlpx}B """ +kPBz{bBK O p](^DѶΨo)T,X_W ,΢Ph"B """" Q=ř" NJC]qcTlE,^0]8`41? """"1NTOoBThUB+N -xiѲÅ" ! """"@D -b *BVhW<"8j"^ZT0p(0 """" Q3Z+z늆+Xe1@ g ˋ&1FGADDDDj)YL,-"ZصE 20FL8QԦ0ˊbWgK~o!]^D1fR7MQv!+]xvFa1$ZPxD$耱U$)V̸̰Eki1Fb 9h$PXSTU 3s 5. GbF=aLO+iehYs8>,dF/[8]D8DDDDD BBEC⸝EҢI`oauyD$ɲXU8W<{vXY,-*Zи|q3K"1VEŊ늳+*-"[\x]c*~DDDDthM/bThHWSPmrƁ( Q"""&&&󷷷???555KKK***5GN:::=OCCC---GGGԥ\\\hhh|||222NNN?nyyy```qqqFFFRRRXXXƗo~///UUUīlllCVʺvvv畕먩I[ЫYYY bsiyƇҒ777N`zMMMnnn[kUeccc֛͐ڤ;Mt薡طeee9I@Sgggfff@S銊Wekdpuȉ;I~NIX_>NUx`coQ\Lx|q{pӀһ؊Qlh/**b;ziEY[>@X)A墢(D/%N"5İ"]A1;fi"} tWfUGYZ -eE)s|]sC8*ʂbwHE".^@Z8)|/hCJ"CKPM C#ѴH]̢+ Ѩ( O;(ȤEa1XVD"u9@UɋH\biq@WD"\?$NXC#ٶE]Yr^튢L!Ȧe߼mHW`^n~ev~3A骈DE>(< g,ȡ`\bE^YdRS$ɼH!ib(ˊpTdb` x]0-zE[aи*REG-rC=TE)FL 7bf"Ei1P#tE<+Uh @=T[DbhTUkJ3buonZZ"QH @1ȋ(Mb5yE&+ⳊHS,8ܢ0-f3_QYDRڍD^"UeQg1}XtEl(+Q{oΈE-JhZ)¢+*b*I!h5Fym(âׂE+voA3odO?K@E7.v܇,]Z+v"87E&&sjp_t"8EghQh1eYqE4+v(jpEʋ`\(Z滢0+"+oE-Ң,֗Ea슓tWb*bI!h-Ebyi@Z⤴,C,]Ɋ؝U5E'2G@eg;sH-+Qۢ}PdVl +NSbz9Bѩ;(KEoWuŏϧ뛯h?ӻOiqpY{P]W~QE,bZ ]W8$wZ SE+Am/W (+UuhYL ]q|@⸿Z <ˊw(i8-Y5, PtxZX_an0oDaѣ+ggg4 >e1}X ,ʺrg5eodq5?Ov4l;-Bס.â+v뵰XsCdY=,j"`ѹ7X upfѽ GIY=+6,_8nX,XAm6jb݆fZX$bgbg\ٜ;P,O{ukEE®| a5a,6}bwήz*;PIQY݁v+O G]?,Yڲ8bXd,2]=+.Ԅ"ZkE"A]r)eEVWm a5a\[+ݲZh$, ]!,*,"jȢ-nGr8I1b5ěf]+ue.,pß*Z _eq-wkU]MǮoOTsЬS5YE8W$v!O? cYߟYTaZUNX^J+~uE*,v|TstXP3y9 l3rC%pE5 ub,~>X,sIF'X,\m'k84G~ ղd;YhP}-@(YBes۝`Q C%"MjJ ^ -W$bn-'b8YK%[pvBi3i#T6`+y!X,K5^33cBM,J#+WZ?Ǧ$𸿧6,,,dLX57Br=X{9 `Jf>oY 2XT`a*X6BI j\aӣ~;XvE]7CJUu~;`WrE\3;>>br,,K,e#XXm4\=<F % f(SbONnݰ0,Fi`1[,fSAYd1jr,oYK,X\T?{?j' K3TE/WL)\ =Yzɢ-0`X\A KȚҒ%  [B:a\E+x5sdZᘅda;e1`1脒 Y#` La3T>m.Y|OY,\1VT[P暼f'YhPcjbLJC  K"k,29'Y8K[퉡 c#TsWt4C-Y,tլE C3rd@F,] 9W\]SEEj|ܼj e/X4F(P.XdP w 5`q㈅k֫` P&XdɢTɢ`|rf s'qլumWzMl2- /X(#B4,čP͸`Jոdє6CKZB.XEVT'Fy^ j ՛ߖJqjr,`(X6+vB R#(, Pʶpv@B  it[ qBZ Lnwr ^ ߍJNCe%4XJ0,,>F,L;mEE^5ea8+A 1W\ruBM7,҂E3-X,2"-Y4Evb uIK! Y0a8YS[Sa1N(`1כ&XE7Y% ^E al+y57t1d1¯JH&7 @`)oK^ 鈅^hf P&Xd%d!j5b!0S y5 % Y^(j(Bb g'TkVX~ڔq  fDpr,:bWM{/Ԑńi'Ԥo"n"XE W4텲ޞ^  yt[X#XeŚ2e!o;NYTE n/u;VңqbW-Yot{m^`E5J t‚` ҔEr~{RPBU!j8b!n ^ F^XǷS0eE,jtu[^%X}|۵*-˃ vv/ y'TrÂ`,)*qHo; >#q't ūے{u/vxbtB>mFw7@`o{%EE _f`lJf @"8;eB}RE%`1^xo2;jB'Tj> ƅo'{^ e?7>`QlV rb`Bdžd ,,Cv5`3b1tBk pPjոxbM>eBxYTG,x++v ë4|xq줽Px/x#O`犫ڈE~/;b,@`!o)CWbta'Tvu;  \N{6 Puאv< +NjW@Bm{V`ld<7`a?b!"X Xe~{;`qE E]=-!X XŎxB9]W,`qetŔ8mY6+Zɫ X` 2/ فo=X\{B[6tB, ,R=G߽~|ޫ2蓽cǿ/P" %.-Ȃ%[pEv:bNvB,, \`߄=vk4vO3 'O,Ev# YX UKfN8bN,@E'w/o_D߽em`q~v, E#2MoE5`Q El-^ 7XX??=76 b:z,Ju3_8kpJ@jt/ ҈Elv` X ߙR@ax),έbF `-U,kf򉼐mĢtBm ;F%X>`ю!f=XEǷsa,PJ/Tv{6rX  mjĞ>+ Q O7oBxY:A?h%aϛ7/~?n5+/?u^`~zTF//ZglVDz8N Mjw34ԣ, ,aRwoefz+B d K (FE ٤ 3eծN*~slc;D4U*X*}]G)FpEwYҖ&%X!xƋ^FD=I!pB#EG~ߠ9D8̰",>f7d8r1) >5Pf& E чw3 qƠIHA VP'g>0R`QI8K,Eo Y<X|.ؙo,6?O,rb-lc/VhB&L? ,nṼV7i`QNdqIpGp"L0 QMyu-goB9H6X%% յE r^y3?C @pj`1h} 7RDPM~IY&ob3N7,7>g+~$(vwY,ۛ;+Y4ވޮ+jRMV ;Vjɽ럗`qB!zS;tQ1< ,l,ϋ`Xx#jp&k & XDDXݾ}{{GDq`1S22:tq%ǎ8 ˲4u]Niv,roE 냲QS`9 1I'TE+J"Ӄ ֥R 8,,xvkZ,^d -!,` t'U,] UN t33 ƚX `q,q3z,NC=s@ )7NxjJR.'`AIbq@ϒ5"R, UXߍ;*aMq)q`dMQU8[.SG gl) `dǖ|/-X|w,^ų *Y4C8}ۉ 6\`a-Ӯ%Ⱥqt{X {mzM=P4<8XygI]/Z Q,`\m3*7ť*XI'eܛPy!kS,& q`Abu ܽxj,X|PQ/do3, ٙ)xRy7`qGXXin9L:Is+W8Q8 !xZIEFٕ{ybb7bәĦTU,,N,8X>ov'X>X6fJR(ͳ R[+bמڟ ,.(@Ϡ,LCj$Lӳ%p-',i(^gLxI{`Q晥2{ځ,zdkzʚ`-aԠsݱU"T'I&?5~$5%$G,B4\; բXD>GF%jfIͤb1c5`qXȣմPB7m Yw`QcrŇ6 IDATP,>> `'~Wb9&YбdY@ԉuc*Ƨ\Bx`1nɡ*$V&.qؑcsGf0$c:!(aysX IL)3hS,(ӪXQA )ʐz u}#'ĘRcK-Z3 L}V[hKP=Ɉ}zL1`7koR>o+=Ix_Xf5ʂrQ,΁pø[|u],dbBK“z^*uovPG׮&#cZr`/M r5x˭bkӱT,F!"%71EY(9o^>. k޸MRHTcoІ =챛&#R,yHʮzr`V)`SNŏ*Xmi`&C }Knph,zXջ)S^Z]|52.,AX@EsX}&sIume#z'2 Ӓ,X]<_{֣jgJVRI4-j'0X(`qng\┧5NlZM/ty7,;FL;4mgi:j/BJ|.^ӲZfZd*iSF-MsoY"lǪ9XldJ_XP, Xd~( Tuvs,~?owQ&z6E p}E0{%` ,:rJD&F瞜h#`-bŠm!iD/I6.=p)5g2 Ӊ,k?X,$9,);\ r$Ç{b`qmRպQvněXi `2 ọ`xY9ʽ= }Gg`QܦyA]A^mo3F\067dU z_oomXfo0iO y]pP}U4V7S100!@h6ȼBNrr^3=HX@(`Zh't3d$y@b>Kćō ,V2xY X`<)X/X|{``l,xY ,B6ydW,,0z]6տA.S( ^etU4ٲ~5VW5tf+@"4Ka,lVf2 HrI`cZEm̒5ki.X!+B|7`A^  , ZXY0Ud )"oVYR"}:`0XȦP/x_n+x}`24Tp2+\ gycz 6Տ]`j KNS; }TmE%m5ҥ~s:r 8Yuw=TAEDr oF-9ԆsUdb3gs,bخ 8X8`QNSZ=1,^,x_xQ#XBXln`$CsHŢG !°w4,ƪU꤀Em ba2x$FD$\{Xqtmk˚`ZϜ#M* ^l4RV)X}n<o5~+~@8"XvEN4@#Ƒ㧳-# ,Cl"lmP{In9XT򞢊E72%E^t-b2TAC"X ɭ y>3GaX8a`:X@X 䉋L |5bbɗlX,uH!? Pm1,F"XRHn _ƀ ?ݖf,43P*@m]S8SzdvxxOCra& z/{1hHB., AXLR=(P  YІpU-&3;X 1B+,6kFS|mbC͓,^]N 11b,dPXE,y,<-j,OpS^!XDDWZ8U,r"⽔Xٲ5s\>Ƃ[%@* p'[EIME(XLj%]D3d%3oҾ̌8EdT̒jv rØ:h(n3ITtZ5W,,* >ų-'68'~m +O, u:Ua`r[ytk,1X-pWE]#Ph`! ȝ$]NIY@10N+ I ) VD^xZVeTXiiTbqZy$q󬏆~O,dnի,"`u2A<u1ėoTҴb-X`qЛ"aݚ~t;钣bjdd]d8*WyUW*ҁ5!xKAJWU\-{I enWF'ś?_Y[1PbO,o=b< N%&{Hz%C9+:$S=$X+<`fq!Dwq+ņ:B"/Ӱ'ŭ0h};"Y ? ],d7V_a&I5A/B_Z}S>1K[28:yRQ3~L4lL*ztj ^X۝3TV/Yng"j6b. COZ ;i&>/[ɱHPm7Z u},:3[R,.pާwIߠby5'l.@, A"6 &'D'⑾/hHùkeUM"UA^L\yEeH҇jfqlz6]P_m_MoŸ^] tzuUad $șE#^$?^ÄeR͋RFnE':y+c'ebQ'WWyL7H]߸ݘ;gw|Lm!ۡXZRjђYPju &MoHqex!QH\m˟+(:h BFsi(ĢhI|+~Is' N=oNC]hx%`##`w58JkEenB}+ny01Z|"m9L{P"Y7AzPX30ArDS[f8s'O+RfaS_]bI*Ɗ=$BbXX<*߹_@,"ZVb1"3-gJ`dBlY; a}MZtZjN,EM~ԥ[k2ML,3bb*\ 7Ǔe$6H,> hqKlw9u , %bY]jelg+~x7wB>٪ +2x'.ŢsBm-6}¥lUXk~2V?kebD=vP'5tS'ǁX|WxD(R{:I&6I,Z !P;(2 Z<B&] _%Z$*?4HАď뙅W&!E*rQtWb!#blxuXE,WS!q6I-ZU/慺oj ~  lYgDYP.͢J+ڪl\a")oAX9u(- &)l^2A T:4:+. X,bwps)DF,qX=RbE쓧O"Uobj=ywW@R8Z,n <󫈅OrfѦFn5,?{Ѱ)_K-jbѤمK#WtsGUYbWb6X,xXbbEZPR1V@%2%f8v~7"m֢ÕDR,ř@M:F(%X'4Q{M f![K?(8W@,4P&NXH00鼃=&"0BbSj!R2AJdLbQ+o^+vV,d~4D bsx59IX6V\(J6 U:[pF\=8%q>Ѩ5 .]OUθ\,qA^XlZBhEQPڧ,0 XbV{yHkX)*u& GJ[4]rCj-_iݥ"|FD.^ kv$Lg{{xjB98Zʸjy+ L!+UY 8*lS>kVf\'ucbi&|RF`ˍ,XdZo?,"ȷކXcQ%>9֗5[Y`v*>+3fr37iaOɭzG$yba&[6Zha^|VzlOu X44 ŽEGoC,),goX@,V<9'e+dg2J ;db4)T#0F`˪e}c;-v UvkN-X\gb~J,rGgf3b`&|Y ŤOѷiRgdgMߝy7UVIfvmy[s8.wwĂ_< _O, H,@,X,IlBFq1W-on 0i甛U"0`5lY0pjr9! *a20 p1T$I㈽N M`y1ųX @b`3jSb|ݕW+$1#-OBxET b;E  6gXłĂ^a WeqĂĂ^aA}15Y + (4 PG,H,H,E~+,@ X8bJBO,=B,@ X^1b| YeAbAbAb?(Aba    5S/($$$>E+ P@,H,H,|c"̅uĂĂgbQHż'[ҷbAbAb/#XeEĂĂ_b1VAbʈb z<3 IDAT} {.$$  R/:+ReVՊm}ܿפX [,lb$~ B|&;HbPYE-p)Y ,\xܷgYjNޠXXXO9.݉ţGXWBɯXb:bAb'VXtN,NzN, 0"_}E   _E-0vԸ;3=s%$(%$$/zeXX:bAbAb'0.>brXzbAbAb'7~ܷ gziܭkX¨3݈Ż75q۳:x/|$_3B½-8)xn~Pm PA,H,H,$&qشI^[?[!.ԉE!d7^,N9x&@Vt qv05jdA^Ģb O,J^_HyEّXh&QiVtnAma"0j8JcoY.䊩Ē0'K驜MuӔR2刲d%Rw֯-Ŝ>"iPܔUcm⌟WVk'VVEyZ++Ɏijөb'km{4z;9u="ch,Jκ=aVX4v겥[DR$suWh{FmlSM,2gͅ)8B-qX87xx] G8^ug ],H,H,W1kŽQ% hPkއ!=ֲ-sDzL)Iޞ’&ˑ\+[yq 8ޢsȍd+1fȹ%R0_ϫ#Nz!m{o)-!K]SV5nJw0zbsٖlɩKW6mo *-v= 253S^vS \mdL&|ޥKw`DŢ'oKmbrѳb'}ϱ %ĂĂĢ+t+NbVts5-T1e/Sȍqs!,vHb8<60/ !01(ʋtpl$4 "G #]ݭԒZqꏱgwfժOUg[xYr˜{>Ua('cGr?Nٿ$~V *z>X@γ\d;h 3mh !{5W('}c`AwzF-Sۂ/1C3ĺn _pszoftkk1@ƶ͸L0\3A9D \j񢻀`+{ xM,&u鍄:Sc -^hU_} )vFP>X`##`]Z'Xܳ{/*92Ϧγ'r,ZH '& ;TyfEhB 4A8g1X8yY*<%\qE `a6X@p` ,b: v#zj#,#z y|'xVBP (wtEsFKBYd damQ, o6EcUvBc>pO@@P<(J$+̐V M>9=Xm/.JE} MZ2J{d%͖j%Xq-Χ/U:$ D,"TGe N:JsjkX-9x7G͸P MD9 +|8 #N^ѽZQ9y@FB/XX_b : F,f;uͣ'rΉQ7tۗ5hv$.CkL_Qk8~:~kikP˾f]poߋqٻϾ_Q@ÎBhO\NUHu~萇UP(iF,0bqCrbCM`NgqmUK]U[n 4w u&`qۧRĈ : F,>em\Pq޽Fq`LWN[@ib-VHR0T 4T"@(]r:y^/F-e_|f6?۲/m> +~ܸnI %:,px{P3#Xq Bh۟|qZ5,|??~yo( 5ҦB)@,BP,OKira}XL|~Râ% zUbW@BP,ݏ}|ü<׻;g %;,>瞝xBP,Rx)?RV aX(@Zb5wV,bX5,ZvzW+bذh͝o/8kX1 BHnXŬx@$BP,R3;cX BHiXP3˰P, bаP, ŚBeVX,˰P, ECmU\neX(@Jâ= ȆbX$5,dQ{nǰqeX(@Râeg,\ fX(@Râx%ަ3˰P, EX(@,BP,V,HbX$5,ZxƢbҰiOpjX(@Jâmg,yfX(@bâ5wޞqm aX(i Wn䌅b2,  aQh1,(bX$6,uW"bҰ( 5ҪXU( aX() *?Wwb0,  a1, BHiX> aX(I :X BHjXXx`XQ BHiXT9ԪXTwxBP,R+Uy{!/r aX(i :cgx,a1˰P,[,2etz6<[Cmbo]thzzl,bz_3(O(~4Z;,zŮȇšg #GMb3B8,eaXQ BHkXbMb׺XbD4,  a8|/aX BHiXbla/~ɍ=,'ѵb X°^P, "0_Wc̲m!}S?O[־_°B"bҰXd;)=_ח:QfK!W?g"̲+I.ZM'?,.t =,b԰?Bsn"3/^z3_[µ-[HˇT}Xd{k^ߵz41,3ðP, @y(blͮ1,^(xr޶RM bX(@RbbqxjY"֟ߖ0^^ aoSBb԰X̆֯yҳEaL,> bX(@Rbb1C _ya\_\vDyͧ~;eEh߰P, ŠŢ^So](d_ fa|cٖ?Czo[PB8RQ+Z[6,  aŢoW=~zXʿXܧ{rSL-ZR)@bX$5,z ׮>G?[_=\pz}"_|֓7g/yX(@BP,W,[ywOӛ<=~{ֹ5/ߺy9_bD7,  a{a nX(@RâӾaXQ BHjX( BHjX( BHjX( BHjX( BHjX( BHjX( BHjX( BHjX( BHjX( BHjX( BHjX( BHjX( BHjX( BHjX( BHjX( BHjX( BHjX( BHjX( BHjX( BHjX( BHjX( BHjX( BHjX( BHjX( BHjX(ym{ IDAT BHjX( BHjX( BHjX( BHjX( Bw=il ƿB25TI%ZZ[#&vS[-ƊCXMj㕇&;=_\ ?Y381Yo'-"nVabh,NXXXVabh,NXXXVabh,NXXXVabh,NXXXVabh,NXXXVabh,NXXXVabh/Xfw,   *,_,Րs]%‚ł  ;;a@ >%‚ł |0Ņvǘ<,X,(,,UXXc#E1Ŋњ>s\Y[:`DXXXVa1baOxg̈`<,   *, "V78 /,X,(,,UXX+c\*/‚abbZE Y˔-a BǩdGPb@``"c,ǿU4{v0s\KrP‚abbZlXGWx{@19v{@tÂł `Di-#+=mxޛnXnXXXVabF,O781,X,(,,UXX$z¢`nX)Lab@``bb@_Xd(ȫbEg,   *,Z,>Da1LdytaϡۉÂabbZE 5#DVpeE; #b e-b޶JXXP",X,X,@bH ;0}#H 1cXjXXXVabQ̊2xsމ]gӰ`DXXXVa1c,wMyXXP",X,X,@gx"E~abbZ8ŀ1bjch,?7zXܼEO7b@``"W=>>lr[@tÂł EUג1t   *,F^,&s̰ noW+ĺU:'j >,X,(,,UXXrabbZ`DXXXVabh,NXXXVajabbZXȲ5sXl6c,   *,dZxEB3XT   *,,7,XdnXXP",X,X,@h/|+E‚ł +B b@``"o *hV‚abbZE4U‚ł KoX@abbZXY, ``"ZXY,(,,8dd:؏XuWa1^,盵uXLEb1IX ¿S5abb6:K"MX`&7YD%,,1޾oώ+? Eabb1,*V"ōDCꗓdrbg`WDŽnݧa1o2yׯ@"0ۆŠxa1iU |%,ݧv`;]!z94,·-bGr|*#,,f͗ÿ-q뉦чdsEbǹvHLE6,V|S1Rn<:8Ƨ2abb1po7YCIH:ܖ|gtygͿ,%â*^ȏ Fc\X8E̮$2*Cl,Xx&vOm y|B``^/, yFց|Ԝ(qludX_C=?)a}u`kM*t\ۯ!&f[þEjݳܚtnNw=:`zhX|>,,[wk5M:k/ eyN^U.[r\qϯ[Ec}{ƍ>w=FmwfXj}n&C:Pwk*pӞ Bð=mv955Pͦ1!f}=hŢw wH˯w׾j{g>dNM(>kr'^y S4\nΡ"E>  ~i׾GS7Gs7!,: 7{y_'q瀁C@X}KvIPUD`![$`|\_?p_<ȝ33mgup)|Ϝy*:}1$=K` `a# ?# L +  ,+Brz   nB, +p`!1?ř=?s "X|27)X!KH{8ĈKyGcy d`g!C] ^?wu1B*Rp xҥ9<,"zB0ՆluKo`!bB la pBW A' v*`^۬@|ii!u@$>dA6.Cc 㦼RvXTSC­1=,x8|YV ;7`PKH` d% ,Zv>#f;Qs 9ⵂ5%;.,%,8x$ I"XrF X*(s`oyo]XBe,`aS\(T,\-ѽ!Q':B@o !3c( Xް({[ɍƔ2\ojx̰?ᐽhy*8,ՃTcXk'{˵7~z⸿7.z&l%Y(12[ WHB|b&xd`aoǩYZR, E&õM X@1q-HE ,>҉OJtaB*Rgd+nI>Wp "rcp0aE8*JꪛYKU,ZhUU%Y&q鿻@Ӂ+yUUu@}v VhZ\ƥm$%K ,- Zx3h.̑U\I}nY"|pf6BM!ӌMX!_/%,HLF  JX ^a ,^#X7&trH>e|bHf\`-/vcoSLbeZh'C'C5>lpeB/< =R~ ,ԃºy`El08iD05azBP] ]ajIsb]P oUm^4&Yp g„SZTaRx`lc*/0P]5޲(?, xίB28c,X(X\rmXHbA|B:.ěˮ`Q1^9(k,=)Xߕ&/HK+W;GY2$d<:;+`DhM\S~ 7EN%e03,r508`Hj1,ԃ2tdw^k,Fp)Juhe EqڻL <+i}p`1.z5R:"/_,ۖfaX,f+`z| x۷`aoǩA  XXi!;,*F"#{c[2ҐwU*RXLd&we.go O-e L7p M>^egbK vtn0ػڷDD2V'-#u|3' vVۗOBvyǀ52wHIt3]kF 2"/Υ+eHW`1.zeQtLV @sƩF] , klP"]O#4̉g& :aʦ?FZ?|N| ;h /Z9}}P~LEq{nFJH{T,iݔ)vYY"3 Yh斐{oxcwC-\#\,^X cȊE/bkyỢ|Ţ>ȿvK39o΍΂bs/Xx,3:eWD@,7njYA?NfAb\đU+1 d,XYhzM]7|1X};{eW@,WWK4ۋw:7(ĂEf;?֜R-v.^&ZD,@"B*XQ@,k-bqDe~X0gUCbNȲnhw n,XEdު @ d,7Fb)$% MV,>:'~m-bXfQ&߱؝10 \/@\ d,e](>L<(Y|e,tB# zVmło~{O]E;:+ͥℯ0ۊŦYh z˫κ @ ~B*JHRrk$2)PbWŢH6SsقXS Y n&3|ϫ^v)x2X-J,=N0).O Ģɖ: b1еXbp31 Z '@ Lr쉦aB- ]/PZR UB bAO_D, v^\eHE7fi%6 N,@^1?H,wjtrB.‰ťg^,[ ?.ؠQn6Exf / J,@E2-#뚞X/3bɪ[3bamwof,:޷X̢H3Ml d,`.xY goެVB,p^ߓpb}E Sy U#,X,sա>VΔEԙ[m4qFy͂Xq7?"ͤiNxhrϩb2,cXq}fޘR@3dJ|Qc"_HRsft Pba0/Knc)vN=1oY  K F~lZFZpTo#̓1 ͱ8BXKz왳Oj/i} d,`mx}ZI=I@ UVP+V1{#PЎI<}X 'Yݏ&ھ ǒbY#^.N(IZ'V)*8ғa_]cAVeߚL;z8B(EZPF X ck꺵]x758X$"%oƽ}=-emp-#J@Qj4c5X(EJ- xeYXϵ۱D;ޭ1Q!1+[uBH,]}RϞÑ'A(֌ҵW5\gi)X cCgB"R E<ܖ ^Ÿ W6Ot62t^oSkG)8NaV 9>8*-&j^ADy)A(،Rc= T,@9ױby>TL ><=Lb(޲';3)X(ʋ1AѐkG=^OmwɎ*+% ^Pvp;L'o+ksc'Ϣh3pnhX c.iz}H~Iq*#rs0#{r:`m}f2 I]6 =F,0bC*#raa0/ r΄B{L_z up}l;e']4klW8xg^k3уX)<^HLP4Kp?CX`#^5+WF| Is Ca0whfVZ"t}$||c<ZZX_t+8 GT_eHBz X`;)1baW@Cn^^YZuWy[?[]%AA<,@>#pҙ)5#L5D뵾)s讔.ݵB_1{}C֕ Vo.>"j|l؛AUڹqk{]ly#0 ǢTKٌ^8.-' =/.,)UGl۲X֊_-k/*h9RV jYA.,;6-cVۄfN](¢|%zO{XwP6ZmU~10Unۗu96A&dRе̽o\>JމEY&,&7+'q" n_)NB`N+%LuD^ӯ q%,5q{ =7 +`AdH}4I/3 4H&H[9S'h AaёOT|",TE֦B^ &ݘݭ"SX`#>F?푹徿 y T|tD?DS+,ܕ~pf@³NWȬ4KNEij4d  CS"/ %bDs+g/a XwLxft^5EXLБ`a)SXJns$N%n>C~E1W]Mw;4R Ȱ%T;igw oQC}Ev) RX`#*qty y>W4m O \86>:f M4=!Z֜ bڥ#,H|10Q& 2>e|r_Xj|WXLVs\٠@0b ?"+jt5RM] eG, O¢p;i㤅jĴB|'N p%,INJ  裩+ _ X,a/ t5@0b _PGc rnGXPi0>XXxJ.TtqZk䪦=[m 7)EXvNFA!ήiPX ю[-#P&rcg2q/,:&ܬ;ir|˅ ̞[e\cOOI Q4 1goMd/,T{lO)bNcAGXP3/w(,X`—H_')b`] =YaUͺ&9y*fOlw9f($LMJk<_ӓ2Ԏ4DxU171԰iULoB-eCMny+hieT@,AFWu>h bgh~Ǣggh AѤg;Bu9`FUuMm 5KϘYv٤DOL-,0b ?.'17HPmJ|}Go]OX2mA J}h& B1b7Z郦G&z o`փ<O.3#ĹfFn}VGiJ3;Z]畦Wh8u+1N6?K\ʛF9ũ9I3:y԰ȵ:~֍߱6e??>' {]WL[/>!X,h,h,xn5>:rcC.]]k|2B3_>Ύ8O}n^z+|f;XXX>̦ؔ^ n,h,h,n]k?k;ŭ[ԥRm-Tƃ|H7 44u|-pCI{{+k; 8XXX8XXX8XXX8XXX8XXX8XXX8XXX8XXX8XXX8XXX8XXX8XXX8XXXn"-scdWћl#: hi56x'IW"]JFX]xgber*:a/Rw,h,h,|<:xȤdkZ#,jRŮbUZuŶ(3|,pƂkW~oV""R{{,BwC-Ix@X=Ԥ[Q":Y nx(^T.p%,&E_k @e%q`?xu,h,h,<ܞTs>;"YmB,sFR{ ;|3itnk9N'ÖH_,ԯN̐ɩle5XXXxLIs@4  3zyRVèMU9n'Jm֝.?XY+.e;7" Èbzil3WE[0ꦑY-9yv !av\o0? ,E>_>c*X<1#Q|d̰~W0Ν #;sZ;,h,h,TM Ob̹$9D+K"{?ev?\>Bd\Lȶ}mlYwMk_wYwf~StWe>po: jd $5E=ovEf͝sITe9[ϝL+u)n%w@o>>XXX"u婲R=IԬsR:NM~khȌtGG(B{_ۚlF|ֲ}NW$Ng<;|m-}I^R׵ޖz}B͑VCϞ״N/H"6ȑ&f.s0rI ]wvŚ=<y7̈́zdV`l{y0Wަ   ~, ֿGtvi|Xˋi/DD_f`qtO>kiMs.6㖫sE̐d zu˓LfU9/G{ENȜ%3ͤl4,ԭ~,rAOOa44O8V4㴝qHd<9k`~޳7Xt4r!yגyUrb^NRwkNN,1nZc ;;:#t;D{Ef4`l"ۋMa44> f~ˉ;jnGb^Awx>kyEN'N\R wyȼg#'y§THX29`g*5gw/I"~BnѢT)ePܧN ?_Z.)B>ěÃgiN$j!X+_EGЉ}VnxE1z,j+`CE|ƫEY- {PN G\8|) CR<.,"ysZ? tO4<uA\Vw'ee`Z]x'ƂBwOrR@u{i&|ߺҋ>³`!aG,:G9X,贷]%!B`X%X۫23o&ا,~&ow'Ƃ#!9[*E`aFÃg";wPuŞhc˶ ӈqmuP }ƨ,;%= OPVh?'XXXxO#J!Coxu:,|,wOM{FS vz4#D,@*UAPF;pYru.fiMtI96M6Im+X,g~,nJ4,`a[޿o_CbA!$-ژu9[g5L?->2-:K.=,2ݟ{7j>3s="cuM"!Ҷ>2i6[ jPѶ:ңo[sNdhIr~+^>WZB#+DI([9 ȠTvKS\b\p;p5՗`ܻUڭn]{P؃Ŝ\Y?R.2}iGS- *n;wvoNmobjn :4z,:Uz%R?XoVΕFn.m⽠,A9.9\f֘]*27` c͂D&Xtnh:XKNSKM聤hMZ{Ԝ} AvgUbA"[pgLkqcsFzͿ5:L0W\,7TK[Gэy`Dmtki{=CbAŢңp pǾ+2\Q2XPbQqK?ZDz] 쯟1WU-TSQ3XPbQq2>9)2;Wni7\: *,.ݻ&V5[Q2XPb 9ss"s5srmo$XQ1XPbT,X *`Ał;XPbT,X *`Ał;XPbT,X *`Ał;XPbT,X *`Ał;XPbT,X IDAT *`Ał;XPbT,X *PMBo|Q  T,XOf3j5g3*(#XPbP "Aۜ'[E[obwE^8-]G /]T,&J]" s9uxVU( 4@|}~VQ"@v+J544Ԟ;>iϰ]b&(Lw59gY}`12dXscQOLm~o,4ԟ?D Kh5;.R ~L3`Ał7JOF{ރ7gOiVI}򙈚(nh2,m9{GﶞQd5X\hw"7NjeE+y:'2l{Emr"*2=KB~*J}*,C,q6%  [қVc7x`T,Xk*`MR%o~)T,#Xrv,n>;6$EM&#X,iY@OOπZ1(R8j}S" X lG._ێX2SvwƩ'c8_QOLx֨,vn ;9-Un힑h:2wmEFoxj[t.XPb+~|Xz wP.^,~/f Xy85A[,mءXo% (ωWxh?1"_"  %9Yb%WrjLEm3"7f"^#`+v_M0*C&X(5! 8[*ZD2x-TTiTw *j끩テEI,"39`QФID+ZO U@P+Ubo,ڍ`vؓO(QY˝rAԅ} Ik<5զSB+|rEE*,mUDL *T,S.Z{+Xs/ao׳ӵB"wܷ {h!匿1Xt\Gd-;XF::8s"a%k1u3" rTo癚tDH1?~޶Kho)d;Ghxs'7ZXgl' `ibek9߿bVlx{rN1[DMWv4%?<&.;=X8DoX_12ՔqTjW>}q˴J/Sf]iϗ;X,ZLJݶŧA_ѵb+S/R~ZW헟WWyb)fU65,߹+Sd5,&E,H &PD#7R %<"="*Xܞ;QW2ݝgzzfK:!jk\$4mqB,ni7Dz8KՠN,iݳ4M @și]$]\-ۀEJtt4Q# =LإQ) 1O3:q.q-(Iu89 @,HY3],$sQͣ7YSZNy"#,f`&*b]L$a@[+yt4ۀUaN״'13\ R+c*w7P^,4omXNuHnޞ J)΍ߟ,h,~ 4Qb@`n)„GBNفŔmr]-*!B8Xv%B)5y%]s]J"^|9,%G8FXIOʭ0P-h&srP:w3Bv.Ŕ %U:acjľᐮ3N]ySR;dڪل~7#͈e(G+NY'͏Dm\_K'<տ` uϯxF[-Vv%BT>WN`=<҇ؤuUv?F;{I9F#ճt~rʮO"fJ߾OHL3;KloS«ȧɰD?y@Y苺v7zn"hŖD#}N~[',jO`/J\/;lB:n =Bq]Z\̞Cl!Tyb4]E(P $GLZoL46'˖&-;XGZbv9֣vCvk%M ,\bfo.!_4'`Eu"]wf'aZsH.o W)Εߟ,㓣Kxs{R{"1|x)nl}@'tBF,H@#;Et`0I#j3>#1 ܦs z<(aΎm'hqMPm#I5S:)U$ApLBWBt8oj8h?O\cx~sNUI`@ @XWf&`˷ } ,Xv\|5CGha V9sBrbQmI脧;tT] z\04.wP7~x؊ ʄa4C&:}r *J8.ʧ#N6,^? ZUA^2z?uQ* A] ,6NVI0"G1SLCvi~7ƘU0"ؠ+$c/lR zTǧw ;f}u9$`A} Xk~{Y2>:9hݮ <6'A"֦kbIvY,j)[ޭI]Wk!޳H#lQ#׻DsqJgIPwQB۽"v`akݩu^л'I@O@QFuXTu:U3%Lw#8#`AԊD}ѳca,͈E3bq :V`1H,Lk|G,$m.㏙?h;G4%kŔca!zG._ +_ a>FymXFۢ|` !{<~g`Fo\.m voqD,5p1}J=93=lFЍ1_bt,Ȓ.XAMTGp]N3G à^/{gD3]al#D 2(!F7+rNtew?_$Rlz,7NL7k%&mWݺOK0#>C-G0'QibNM.vhAi)nN."ۧVi/g `A ]%;ēL9b+ Ӊ "X e`@u%(bPw T$]>=f>MY#G=.ojnE[VU=26= jl8Es qӠԅ,RQ,a&Bm,CTR"k`ڵQ=.> SR\LL}^DY&] ,șhrnsc<-EO7oYwg3Ö~ J`q@gP{Uc4]CXB_3 l'yV[:*^AOΉn'm.Z&@Y`W<]`Ү Qz ]dӑc ,ظ{k=`1C,b< 'z%eQٗRIw)Bس9hJj5^ƓQ6=9Q`q/WQت"3XLZ.`xS,^Wl?ܘ/Xu:(IǧȚ٧E7? E}UisY3m["zOkۓ",WKBW ,"}]$`˿֥iIڵMdN,=y^<֪rgKKj `qvvc#YA `- k `ȰքXTBwlR16XM=@ >olFseWbR1CYkW]Y-sR&x蟃`1} ʼnx<b jXH'gOe_t;vy _]`Y(tr} [<ݓۚ_y',:idNo|~`1wYG1ⵞ,Vo$Dk`.Y2; S,*diIkEvũ kyj4OS-VeȁHk,%`#V8Q66X}3mM,tau  XG%Pl|"WZms~i 75"G3{bI)"P+=%`zEWʐ0 ]_"AYQ;`a6&jGMq> 7X`m]YN+8yXѴV,`c <_¨}G(d`ޠ껹ϸ.kXld_~m%-Ec\eOIrX; jy,UH9UX '_źc,$_GXp'^,S˻I ,%xhiKWdXP|Njnʔ<޷Y%;^\ a`B]jqY"[Eki,@\Zj9|xV)/XV2KI@U߳4fҪ1)}d䍁Etyb`WVck׫fEʥ5#bcɴqɬM`Lq>n?d)k#YƏKhͨgUY܉1<5 ,>ZNMȔdDCn]mSa*L*Z ,D\@W-ĸ*(lq}^zfeoquf>{y5-I IDAT>'zXxsV%s hSR#v R|vaY*"8Hmjя{$},Exh4i~tr2nͅFrN?TpmV>K͊{~[OEG/L9PbZf 9'l& {b bJ,7+@Uz%cCmbI+ `/q)7T10 qbAYa{H!Vb/΍T#u#;-u CeDbÝTi0df=k,°͑X oK,2? lE$u?Y8*hl}ay,¼q=$cnX]))ι~xB$@,>^nΓMj]9 (-M' vEV';@c9%hbRek_k!h-E VtB& ލ~ԂхH88l#ظG>:46{K@ˑ8N3 qOɃ ՟B'&<|ZzQS~ńSs Y9^*cqcaGxuH|uu@{P{)ְ4<=مwV/ /Oi Koy\wݥ7<{,!J,2'iͻtyAdS:X\a'P3@V!> ņX ,5a1N:6oŻ[~[d5y@liM;4r9gk,1y0V%(L`ȥ#I3_8h%]LLZʼ#˙XԤZ吒A`QlxB"[r&;2̘޳JB,rߑX4t^`AD]Z bmqT扂( 'pőWx,yIxoPxXxXN@?fq>~EX[ @|n3tg;vKY vlTK5r$mntV!#9ΉZԸX#kӈsD)(]:+Ku5GRI |# (ad!CGv@b;bPP#Yf'/ ӡmH_m2 ’ 01":41:55X.'!}܆CF,WD ] T_+^^+ٗ:Vok;cQnD`.j JjE "k\O"h3hC,^^v*bwdؤ7MZb. U6ylEdsrj;Vb! W=FpG0 I"~  V&~hBJv-"r7`e~7N!N15xƕH2B1 9*W~@iG,<8PtXBva[K9=<(oߢÒ=pt,{HIvs)t <<͉ZhF,4b2E7k8+FWXŰŔH #4. i2y\J, LO (SjV%Lz o *fxPP4OӟZ9H~`" bFe!sazqngbQnD|'j mm'ZQ4+&X-1pю\ml `iYl]X\,^~8 eв5G]?b!oB-QgBaQP^>u ]O$p[3: zg"B,XƗXI1P6έ 'yq,G;;QfWxf4R[@yj;dJ1Ι;KW FxjE>5oy,LPUIaЮ [{7=: 9z֍X2|ɬ)vB8@ "B-F:m#N(;I)B*4?jy$I>hcX\. 8o:5_es+" !ie wYEM1;Uhm%lu#d&PbѥPrT ɪ{CoFW% #XEADd縌˴ fTG GK s3H]qOvNױCfY)Ωu~ F?0NCyעP6ͭ=禧OY%u:\1<^KcLL]w3)Ҿt^2N$}=IJ0^2chvQgn|ٍ:߻B+[77f\zT՗5 i{sWȒ,QHY[:ʹ|=>ݸi)m.6kiYg]z٫9iz8{[Va^=K90,D4gm2Y P7}%vF|5趆Z IܦVP6ͭh`K0xX$Xx3/I۷.m忭uEۖ_îí.U!WRk1x+kg tTeQsQWKCrb~yT!9uma,~6by,<ٗaH8w^pl #^cA1(`\bJw EUP[\Oե?:Y,/~~H`w<;a-UY"OXsFQ(ʟGĕLAja<* iBX 8BHytѺ**͉ ycEO5aa)I ǹPɬ._!,x Z!iq %ɘ5a}#r5#toMXBFw",ƈ\/E!,юO{Ocm:.;;mGcdh1%;DXLx[2vuuw}e|obXZ<a #kC~qM.DC[H$.g(la])W)и_6/'Q5aqu cSXHx@K5?pO}EbsXW1 8p,,wtg!,m ͦ=n5mDqz+L76^`Ҵc>:bȵh8 D35\liٷ_[i"0NDD baa|,( S/-;ˉ7B[&9]?W".㢬jDX99 pf3o  IߛͺX"|h(.Îf'pJpj t{7$u,hLm2}M{){N9loaxB|4^X"4Q5 f&?N2=p)U/ 6K bCjq K~U/wHn] Q|&{ק~d6=w¼󄷶Z}>VPQX=:l8Zz<|ы=),ʵ%Jw*,:XSCbz;4Pp0eL]o}ó Eh7l#IeO9#ao.Ø:/o:+g< [I5nKalXal~!x#"@c\} >xO0Tpk. $:Ad۶i\ug}}Qw$?vkPŖbx^{2]$'nzpX{v7eWkͦMLP:OVwc˪j5Ecev.v.+kwbZj1Y[& .+ |e$w nXp19aI 6cb?tYt7BY.,EQ1 cPyoYE<5 s"QWIb EϰA礎xAto1gC> +x,E5v%9/ݎ#go\š E> @Q,ȉrQɘ/X}JHX|!H2G|z~l0_>76R?mN9^nS\VolxÏYc7 #P(|VU^b6ͥQX7YRd(bFC!^NB+Piq(NN.ԙV浲vj=~St@l}-Wiq֝YG*x`L4 WUV򤸯PbӭBSx䉦#sUnq=f+,L]2 M(yšt tXƏL7܊j w6gz{l00a BTjMYeQ `>Y]1R71Br۞i;Ͻ77< }a@f:miwi'XLXhadj`80 r ӟQßb)] "%l3>19岿 0y`P/FbQ"P6";z͡ 0 ri*^Îk#@5z<BO,|S63iˆ>M5\2 Ao]L,,9%s1t !({,r,caӬSLx&~j).-@C4fD4+:+?/ozhFE%I! #ѷQN,D߆ǂo}` 3@b.xT`z;zŪFWK?XSy"BRrЃm4W1xIp /ݸ@&bqhE*AIGf߂0xeX1~ n0R ŋOMpoq~4~A'ڠݏv౻erЇQ k eD.rHcEZ.Ă`;œrP+nX0V(T$`yOYڰDo6x>ATC4fVO0 }6e0Ÿ2WxX pБaxy҉!씄bdǚpQT#';9,kЈ6Che*8\0mp=/Fy'af_[C,]P瘝j.-r3ٝm8t[8M.H3@, %ᥙ{ yݺy7i\qbtJW>p"g5M|~c'ڴ Y`a`m #ڲD *ZxpTz+%nRR;bqx`Kːd;\`7Z5@,Jy dҲ^#Ԧw#* Uz*8c(L\_wPQl !U% Cy;C2oƠ @ ux,:#?][l= T3e$/J?yybKG'ڠJ sღ=07- 8L2|0Icu=&bqM}4[B,R-ȅ:4t,RJ茅JN~mx+ d&: jH,z]-䭫z:׃i<Ģ\SJYd_<^r2"5=DVNIx)N Zױ!hVQTI>>l$CJ,bg9n^dKZXl0 u }6X" IDAT;J,:|pmZ{t|{ᢗN޹h!+"ws$BK؞v h@̓|ޭwceG,FC*l4#/!;Al.vgXX*m`-߶qbPfڶ )8+U L1c ijYnb@,XU廓7j4wSXO:#2 jaQߥ(;a"d\9K!Rn溹3[ "{*⎢@6o笽|wEJ,V|bM>))PU#ڋ aoFe O yG$Na@ K+*/T"oXb+h /X0 "zR5E9}'luN(J4b6"͟ X9@)J$Px0q6j/T;oba{,fSo+'-4]TObwYU9L&(;,W|İʏrj}qb=uԀK}ZbľeM8<`Y!7\ R?!7 ?rGws"e|tCice+j5)e9F4rCڛ9QEEcZ駧Z8{|hn*訧(OxArcJbS6X0SA,b↥ub`S-E+@,Hξͪ ))&Xè4DLdCҸq@bLJĂtBpbaRJ^N')74xY!rPbF<baՈJ4RP҈ŦO @c>GNx!,hQkFbLa~"՟eg D];6 M ×1_8Pr߹DL hĀegH,UnӸ#ňF,~q`oP2MVk>TA,VpN,JS|GX`HRTYU4xWJWĺi"\5aqӍO;7Amm]]Oݖ n*AJTlE[PVۊbE?3;gfyn0a.399oC^;W(Ɛ*>)yk=\y2ۈkX] x`AZ6\ƙPN\SjGㅏGD`A.j\)U?X`M+g&CoxDerٳrnF ^%*o#VwgZ?`a_$,OZB3 .y},NmE̠y'ecqu'秓]}/,> C`^2f{6XDsvTuhF,b]ÊPZ^$ +Ly n gT\k ޾ؤ,t>mwǜFmdY,aF Xܳs c" 'y|vI,pbH)R)xL`]3(Lf} )e,7!f{&KB> ,8 !}<]3b6XdŬ5ƢIW߁K3`nORN);k @T,& #|wD-?2CT ,ZY E5Á{Q]uO,)fS[QEڴ*ǽ ,:]1, /,nU"mlxɐmƹ,-ff ) O!pmRzsFP,E`Emy^_`1K( Ө,#0yXBAmBqLhޝ~JS7Ū4N$8hEmniT"6`D%hĮ ,,̀5 $dOq}&xR=;K^wUvKϤXӻC?v ?Ӫh6ZŅoK ,Q]([ HFP esӮ)6~w՗L"1,Hnf`a.Ju,ty.[Ip&Dt#mS[Q-ߝwjq~XLDUBXm/,^*8—K]OufR%C5E 9 ]#Yi r>j5Cz3_sXkD5b 8?d ,%@"Vc8`}9b1X QKXoC`Iӡ b2b>{nfE♺;)#)-z,9E,81 ck,"]%Y&,HXeZQE{L4>C9햦i}vBi'V&c>Ke,oY5)H:e1hFK )n3=QAY6@X;$EFR%"^,'Mōɤt?`1YT,F L9́G0vQs-/[7p&IGV~PycaB`1#58)ђ14 ^3rI,X,|6 /ǟ,9)2GRW[9STj`d+ YrHz+}B^)1YcEp,jӆxwiFbxZ1PS)*, `v[+yp`Q .掤Ūf1 ,#r~R.M5 J'hHjGja{X,l}x1 4m. -]SfUpLle#*Zn\? 糐_eZEZ@"Tަ(LC3Y7u)HCGυTo,/vb V_Dm(?fY6$#|h,N3{{A122C~ }\0 aUv1BoIb;s8iݝN"iv0 $WOmGVT ēu/X{,_ ZC^"s-e|iP`1 B d-K3C9U_$xSO:]`*K4 G,bT}w lг[L ,5o_q;06{FmdY,ˮ `!RL؏_(V1*1XԥT:wm5ˀō,ZCk1 c/d@ XEuB";dC`ە.ךH푔82-Xxg>X]?h6n ‰@hs'X|ݳƻdq U9bW\]_v/kX<?]KK0 tqTN\^t7YVЉ'K#8#-vX+ Uv ,Q! V-`!4FAb=&<)u3vT[ d͇2Cf3t5?a7 $C2VW'6`Dx~t_S ;/X坶},N=2i%;9Q0Xt@gZ @G{o>਋dVZXl5p`AVϕOiflϘK/翓-H)^1doR I ʍ̺ϧ xUjVh)*  RC`atzBres*r5*!2O-<&|6.ywYZ Ħ4ylّn3s(_&Z2s"? $ߕT$XD9-ªyZY@FC᭨{3t'ysXUEeX[ڬr7 7X`%l^ (%HY|8~H\.Kč!1( bT9R),9 1dL5xƺ]< <칡=xFH #,Xq"5;?q 4 ,h %Nl ]ǹ^Oݮb1X PU%rA|+$?yL`}G ebK/K9;3pp}Ms=>of5cLಏ'a1g]C~&Me޹a{EUVe7 V1D[*MU W&`z!i|^ywa@]| (2ݝ36%ME{EX\Zb˘eũV(WQ~:L|}K;W;G-^zc frڠ|5 2j|9p E5yx%}V8+/ -%{w.cbCD st&Nz:ֽ:g1TzoIUc|<^j AiH<+m@v܅;a]'aqڎzk=ZW^;uxѳq9u9 .F ͯ;6vjpm}Li3N(B~h=T~ųtqkւI߯mX(ŀ`o|kn /D޼[D[Lr֓}TCo<_YN]ugY==`5dN"^H#l{x7 7 |gl4_ % wï\;V\G ~)^SX9n4Ϣ\iSkj{I&QmNM<#,E #9; :JԶݱLQZ4`54v`{|,Zգjaa٫#𛜃`{~8‚vqʪwCa?ߚ2ޘUa RY'aq>xktC^c^csga!;"F$>B{0Z/Ce[sۢrk-֍2rCy?7my`6.{~՝6߈G+ݩݻc_p,X 5=M:𮤽7 5f4/sTuW|T{_QN+u@^Q 3{lS;ѸX7A !<[ƀϲ@i?hv#NFgrgW%;>4d+:`uZsDJm{p,X #w[< !vDQK&̅XgȨ1Ej+qIQ " {uaIּI&Ih=DYŊ;u⪡'~'*ͧJ #_^EJo4,4 p,X Uvn^ XC QoYloN4YK8-F>epl;Dѹ9҃~} 8ǜ} 3G`e$}~|@:>n~[=}ԅ 8/ae({=f1)&\ݺY;t 8p,,,Xc < 8p,,,Xc < 8p,,,Xc < 8p,,,Xc < 8p,#\٬Uh. &|,mZDzb$v%dC88 8p,`sD&ZmT'v&ex=qmy@ĢHY\0 8LMDt]DgcFCx(c G+cI4ѢQ`rmtl2ʈ "A)K$]kzE;$a6)%AXc9Ǵ>*" umKOHW~KBCqZѷD{p;,aQZ. &#E#1KX|ѱr $֟d쐨k]Xc LXuo_DXxk&ZXc@wosy 23irRuD~oM̓J4g?Î?>&,YU֖j^;[Eyy~= lvtoh]Xgλv- U\4l :HN , $*@D$>I[Ii|-I1>wI~"w@$mV]v&!>Uj.VO+644S$)n$IauI6nIK s|bZȬ$}Ғt$1d[-_-3o0NW>0}(!Bt[j} Z)n$nw(I{64+jsRo>`p,X"+^ش[0v>CcvY8+hǴ*t(lEBO2a L j<#+8bυaðo=tUײ Z*I+)JȺlK;2K&! K$jΖɊn]tb鉝 X=ͮY.;` p5p?iO4l9w("o&gW쇆:]9;g1p@?hzKzbOUcJ4iҤI\+6'觿ןl~fJvo/xP!XH.B V^% #x,y^`A]VR& ><; r]oAbUR%/' "muK}矗*Fw[ oH4JF,Dտ4RMmtKv'KjBR4ED{4j"{eg:{@S ~׹\/\[!=wXr ѷslݙ't@VZ] zB?B(@r1wSA=Mi^"U@?4) b!W,sᎨpO/'7 8|V@Ӄ"?Ѓ`T!8ԝJ MW^ܮXW*.yloeHa]j hlXX`Q!<'E_(kd'* %T6R IDATv)XtĔEA15X#W*k+;}`! Cc޶G"JدҤI{=6Vܬ&OչQd&܌ #6) b!W,D+k֦@eFl-o Ro?R'=S|5 Ff;sH+' O 10`G";O |?+% 1ńi=|\%z;; ~-px9,^hgMfX}`!CP[ruh`O5Iz쇽s"6ҡ'Ã6ynhQ+rB œp~ރH9 y ,;>8'4A=Bن^Jt>b+D:sne?;}B@ob):m\ 54?Ķ ~Wwc9H]}(c/J7K?;E{$M 4;wL 퉽\+ ƷR 8X{y+֜*P`tn]JJ9ghII3{$>OtwIl%ukL[B?XF!5_vPCMkwXaB_z6 t*U^c X G E?֖H?U b#T̊&킅\+~t4`ͭ?dgbk:*No `(`@l?Zn+=ʤwx$:ᕢOc"X찱SwSQ1,n}!ۮo Ui~:2X~+k_ucV+f@σ G,|\w9aQϧI&0sx􍤺,%XH`!W,䊅Ν]tM4GNvj@G4 ardTRS֦ͼX]7 W'PQS,jjWèMռY)ϨY;1%yr܊zdNƭ[r%k8NNJ޿E\ HSssb@cl{|q+s XgdknV?x0!5 ~w8O J/l^;vp[{Zz@m{6@4X:S>Q.J5mƛE|D;u7ֆFf[r`!;hKY="J`?B(˫vbZsvlI&6r8†9oIQS 1hEw/ʚBk1O/`!W,䊅`Dslz|DK'K&?.\ŽTDԥj_i`AyW, vx|Dgߝ&`E McQ 3ݚ͇D cTqyky50Z$@s󦶞`f/#XfQ=Fz&Q1L$W=E>3H)6X `q;TVn9q;r~Xc)S];4i^!X8`j徦D9n3rŽ?B=ʦ IO&ɠŭժ i}oIB6ɤL)|=6BX >#k~* F"X8`^ "Bv=,RlgRӓ`JJ(}`!p#OE{L|&MW*PK|Ϥ6'۪%؃Ҏ`qY)|=`X8SsqCo,䊅\m.2@bi=\lA",p]#= Xm ˖2}Tx\5W,T/Y)L\VźU|`ѵ{X\jbULT SE>\iIs\؋R!o Yo8uUcz8=GP2ZPa!VE0VƊִU!^yH//{~w9!^[vg1aͳֳ|&٥h_̒]b#׹;x $L1_tU}X"(;r \ 2i#^ϣO,;S-jsi虚w ł5n.e?Dh40||biJa"WVX bEբPO>,=OsO:"/gQDQM()ѩ'7̻Nn~(, SU7tvƉ"b:OU)#^V2,ĔoyE=`^W-o_L4Քz+4qt̓آ䤺ݣy2yRgn;TbwX%#ST"#<"_y[T:0ԇ,勯MX\yBaP5OaQPU}&=p06XS,L;8b"vlM==bCbW? ڏdڲiyMXxĢֹdBDn9{}TbbQ5>.[O[mro;ᅾ]M9>lkULlQs,0qRn6(4rafxgRDW_<;~2O:\'S\>&Ńݐ>Z, ;b_{#fHLU' QXvp=EʹO}ș9gk@EO,X[]y}.3tF=.bq":RA,@Ģ+ 1>+Ţ bQ,lb4,LwͲ*w)_+VI@̱4/Ch՚Kuud+]7c>;PȘU2K&!Z YpxGokM9§X$uіw. }zW0vVڸC,%]NY?WGyg l0P\!gZܹcQpouwo=tV1r0 (P?[,@a +Mx@" hV `Ӑ k4ńG,Eb1f^ƴ 7,Qz9c(d 폵sݦ<) ۻ'ϋԧs7"=g9YC 2FDZ'ǰ rmY UYf0D/Xl$L9]Ģ{tĢilA D,DVbI3X#|hgXpbZQMg5UUB+1XeNb`vGZȕu~t obMEI}b1GTƹX~d-얻8;sFU?_,@OrGЙ;8Z:!~.vn3K-*i3K ]I̡T&U5ܾbq@VYv?RmBڪnc{[R!,4b2>j_OpXUSfjN(ŢjwZeXT?O7Mohb"~3vˆ!:cj`3U'X"\,x#uV36< &2ilHi$?UahtzW#j,YiK/kZ*Y #1!g@, 2JlxB*<]msQw"_<|4Glct-%LaѼi_}JDm#Z/SawQi}B@`0 D,Dx;a$)qGYaOaJEyEe &b4 >KvJE1PɣTKz1]ʒl\k)2ٗL #S>RDY/ɗؔuXܗLKЀ1rd}ďr~' FsU)8!D\&>bj}bQ;_ D,gɏc w~Ix_tF\_;ͭ}[oS7?8pwvfEN̜aF#떣ׯ` D,@ zڥ Ov!dc4mG D,x6yE/ْ噱50@b"9ME&EɱWscdd:  @Sį Y0V04+?9Pb"Hpqkxr&3]~tf,FK D,b" @Āh$V aOR6%PKqDAn'=,{N$@PDW9؃Z;ߙ1@ƂĂacAbAbа hXXX4l,H,H,6$$    @ƂĂacAbAbа hXXX4l,H,H,6$$    @ƂĂacAbAbа MJW/ݜ_s|hnصz_0  ,_+:zY`,Yz눈3~o6W^0 &off7r?8x-;62@u~rE>+A"fe4|X@ S4ʟDN.lxzzS80 ‘^3ї:_cͼ#'7'rKE%_EpTYtk,cnZm?=vQzmƍE¦w&䰜Sl =vm崻:t/RJ:4$$| ә'7mܲ@躛ba0>+識{kl:_[n';}0 g#ә=7c c}0ҝ6;7'tȱcΝ_?R0ڿ䬔1ڙ3C\Ww8<4?V2SY+wHMǠ8>ٛ+; bSζ LmI ciܼpe~{a%:x5ee;#G_>gz= ZښƂĂĢaSV+:-L,B B@eS^729Oّ mpQZGEț9-՞k*}hi+2.-i,H,H,:qbKf$u`ӒLJc!>Rx7Xx~ɥ)rvGc] ŷȗts=={ WxNbO>eEmUG{^O;=1W\ cẢ;? /]&E6!W011(ǤnM NSMM j+f]+L@Jm#2}'V>Qyml,H,H,:L;ٱUk,bڏ:쌌{]qG$GbԢ~ԮR"2S\ysBՙL5_kԕnѱ׺gjex͊zf`MicƢB CL?6bBX\)ZBQ4 cDF\l,H,H,CIߒJ*񨱰ĤcISǍEcZT?Ev=d`v+&^Ǟ]J~-ȥH\=L_յo8 AcQ!rOϔ;"/sF?Lqcћ6 DRͫnt7|YzXdCv `O3%Sn"ӱ*ť 󣴣@l1#l2H.b/r~Z*h*c񸱨P9߉;|Tʯ-R*ؽZqc1ZC2eEm5NA=H+nD7bv=XƢS,ݢ9~LR,Il,:eōwOѿ;bdƢB@C引ͰBw%cyPXlE$p|LZXL<~)DK[XXX<)NŸYf~cq::E!>/nb1ҢlWE̸̹ӻ)b,A".rN2#uHxe#]24"<cAe#LLW!3쳌}SSR"VK-}ΔרRn^씿b*J\cMON\sXXO_ic1)p^!bPzoueE%۝߁V X?X.}}5?#> $-1/!)DpWӁky(f$4Ƃug6eT˶Җ5$$,NE%^Xl+Ea': cq[QNGT\jL^!45 3MP  sM.Im6R ~PX[ X 䧔vZGE}7gVȍz:Êk͝99"]j?҇+솴HL" EAȘw$h:*+U}A2T{@s)>֯ۓ9%lWa;T  IDAT83" YuV8 /w4ZƂĂĢ\OzE)LhcdNa'j̎μml_y(γJ6[{ӫ-Q-z(rsBҔ6\_P`{pr(kͶ/3t.#sBrj`Y-aK9`1)ʎtDtQF.?i#O. t,X2 z"Ny0j>RS8w.`^Gκ".roU I*lȵ b)7];TIc9MPυwvsӪjT1&!!ﭩ! Ut#)Ҫ,7Xtf,/jν;b+pgsMս"~pOqn޹izF- :][ս/ݺtž79gl&jg^ `z}\1Nd\5E3YmxVm6EaBK$ZKf~e4S1;~軄#ޠ Ɋc G4Ć?9)cbتUrʶw7eE>;kɗf%hBj9+Z{ :t,{Q7Ikf1>qs}^ۃf:\{deWG W33C]fھt}PWx,h`v̼+Y5oOgo o~`AǂE7ytޯmU?x|9ȸa~`k :t,z |K( t,XU̽K%X*^ngd۷C<`Aǂ:Xбct,X :@`Aǂ:Xбct,X :@`Aǂ:Xбct,X :@`Aǂ:Xбct,X :@`Aǂ:Xбct,X :@`Aǂ:Xбct,X :@`Aǂ:Xбc`a/6Oz9^ސft7pRP. +"^~v,K,D7X~ t,XV'_Fm}*[$3j= F61Iyw^3E~ t,X2KbN/%mI}"ZZ&_s~,4X$E݉'oǁ.RuV}?\Q;?3X4ow(`Aǂ-ĽS⒟z@w%;5Z3X :t,q75fbbm|؛v}i; w]Sf+2paO!ښ+9tWY6]w{%m ޽NQcAǢSU/H9?)RP)1>lNhڑmJWm#gR>ek^i>k_{sOl|z%[jfDcz|;ɞ״k(mM-=qվ\ΒSwFycj,e7Nv>h,VmdcVsj󛒿_Ìx cL77ũv֛߷_vֶ:Qնg ?_=״3;gEjɾ6oMgyݵ흁'E=4Xh=/ɡ`XfU~ U3pr"[Ku~,Xб4j-r̚plN4/J t,Xܢ=+#Ӓh;1/qXnN1K j8~E?mjВDҘ&$ShScMeP#iImw]LoJ9$3trP$Uh 5DFc4 MoB+X,Wߙy}s]bLfMF@:m5PQX 6%v 2fJ)ɤsĚ ~6:ڞ."I%Zm@mȓW'oC;D]$gE9m :t,nyQ 􆿃>Uů3+C ,OI]!},Is~z8Xy0Tw~c'4,vٮD㘟1s>j ?X̂QF">`=@@P(TR`tT'q˞J[߼kK8`a`S8'.DjF,J9§(2s83Ri ~\1 9? 9~`EDGBԮTXա-E ~GEȻnں9Z4 ] Cw'}V"EXLyb0cBP>|0X(*;A QwNXxURxx7^.yatqs;X`3*sC:JGc:x:Xt$A<,H9s}:܎Ų뎦&&7SE%}`qH 7Xh7t, + C7%,7BP ,*5(ګ 9-.et'`mő(W~RK83xD4:{EY`SE,:SZCy>X XLн# i1ZS'4.Ŀ  BbQZXx j9`ث,4-#Q&q쀅Fg?B),4->$¯3PI^,UZӞ3b9`a"?SX, )e4?XΌ*`qh%5EP(eB9*6q^`2V'EUF ^@ܩ Q"t<g,EP}e0bbs2٥<`F4, ;)͓/Tͱw X|LW0Xe-$we"XyYiDbm( Bn|vjˇc,ca;:ce*`H$x6BF 5 S`RJsBp&D+f,T݁]i``VO{F0XXih? 7X"4@u,0nHI0yNB4d9LZ`8s, w\.ͱz!Q Dv\9׋/B^D1⌼ϗ;"ucJ`o˘mWUq9=3iJ~7eE} r =gQ}*ۋi$Xog:_qz`8qm -4Y /*jS  $6Ң0W}Xd( OWNtׂ@zɯI`T|jXGn U1K(7YePޛ}ݱ0P(ԋt!sFIӠ6! ,c8z䮴'~{UB-@5eLGlP+9lLksU-tG` X4H.q̲eLe S2Qk*u5`A"= Ixfr`9е堌$M^.ҵ6DxrjlHXArɸe/Cb$B3[cKyS/O62]{Omܽ`9 zڠ'>sWMm-͗xDh-`!6}^UH QXƶ_ͥ6y4ZB"oM X`"@2+Iw&&t->Uh *6 M&C,:5MŬ$X SBH_zabFKJ(IJur\|p]߬l[rtonx;S&H*:`EnI ֧n3mz7˔cS7{翰kz BY}/PlHb?T_9k_{QaWY\qګo/g/7Z-Z8:tm.mK-"azGmZrBz;Mk&V;n[ݩx`Ӿ>9mم?Z-'yGAP( ` XPl\T޹lq{CdJRrQK.(DJB&JE*ڄP"U_`?>A>83P!_g5k,' ?JޜKģUa#K3YD-Z7{wQ|6ԣK}+Gez-%!T,X c}yBswsڋ]RC^>}V-%Z{GbF-Z\evLH']W&U VU+zW,T,X c [4DqQ=,ddvwhXDUZwŢH6l!hTgwuvE" ^,"Nb2EGJV,P6gض{*[6$7ł Ƈ!CNV͞Du^ (X,Nb2aP=knAJTqQ:b``7X;R,[^XD | d,[D8`ǧ,Q׊;Jň_zbbQ;N6WEW,@A&ZѸr]őg{۰bFyXD | d,u/ hlXSX c}r"X$jED['QJ:X,Ob2B62)"ǎfI,eʶIXD | d,w|y/ Q6CY,6*!}YE SX cj& b1 zbɜ"}ݝ?Xc}* d,@,-_S*uzW~饼B,Ob2h R_љg"y$BEW,@AH$z͢Έ6},TD'CV8Hb}* d,8+Rv^=rw^mDYOdPbb}* d,@EnIC30(b!b-SĢ)-EW,@K H,#!R}kku$޲!MRjMK3łSO,>2X+&dz$u%/EAg''b#ERl;"fDby* d,Ԉ#t+}E$Pko_XkdE(e,N.e/Jy'"T+X c! Z" DH<6?D.&OL̜ŅL [, ƇEDqRLtav628:2X`OY.?=V;g[Y}-[Ć{jkb!eOhUΏ^<$qfZRvZ3&;q~Q01M"h;wSX c&tHvxo2Ms:YBdTHΉ7'><Ͷ^62XL"pHKCɯ^j)vWd䃉Lw{?ԶdbNJXW1 wڷC*23^,@K|O1<q 7|2  d,<,sz/R$u&2AYrir:2Xx)/VxF!X˨(EU:KjUreqy5KGr ;^eˮk_u`ԨO{(3s;bi֖^=LVNQo qCMNE~oxb2n "r}u?r;ZCc:rA-V{Oq]KHXĈ6iR>ison% ͊%seW=IӪSuOTJѡ`a^9#z׮NU"m1TR$Y;*5s|mv;K "=c+&~gX`}FDlj]" ?Ek-괾0-W"7!QNVC0ޙBx#7) $]Ğn?DŽ m 44?@fX٭tt,C1x%V(~Ka10 %Ys`[H``AcAcq{/ TU\G&0Ț}Zkx,=HKu֌ Um,&44ͮ7zc%|ʖ|c`Q%Å ٍB{3aLzϏLZm   fb~^,E>e-EV\9F[͡l"va7m{b  fH[_ˌ^sµ z E*-Wfγs;,.ZHĤISG򯦀3&-Y/댮sըqYFvgגJ6$LY  f3o7VșaQ+fLpmrOvu׭"ku XXX& wW6g ?R:R>-jG{)asfgJEZm=h0tug62ŧqx<wj.曟_ltX:44f;g&K]:ŭy tVx4_DۗW"e[ۇE@Ƃ\7Vr,A3XVLn}.2' KE z{ ڟƂ[SU9sOwy G=9˪t~̬E,dhN8宦`Ysj Cvv_W[`pN{Bet,h,h,e,4}ٻ;hJ mmtQ%Wf[{k2\?ל[avv31,ޝ޾l!X|6VHkfM`xy9@U6s"ӥKQkɾѬ$*f29)dr"K6RtxŽB瑓JqT2n%K&XHld V>HnRp4,$7t~*[֨d`(!nb0su M{;۞46ϕ+4JV7B*!`"*cx#W>$/ ?șٙ]v{nnegX.ڙ  d,bM ֽF[XަZcY,'9"=ěMc lk,(KD|IyԖ1(3Xe6G|(B9&'ys,)<^)X cM'(UlOʊ)  mhSJ1uqfXȻ e?|=Je};[B-eg5B !X c@لzDyE"*xvl#GY ?VS1ZK,!ߨXvJ޴% c[[[+ 2Xyl3󙸮vIkR `.1)vkđ\T!XJ Gȷ)&qX?tYuJ~U*Xg,}X[,@M<`hWĢim]sm[,ޑS,5bGމ8-iG;sfvGS  d,pD 5Ѳ1ǟ6kn#%恷Xiz0Gjv7e4QĘ[f4DŽ~^NN]b|'MLk!_pFT IF0jgCIiDS~3/  d,pcJQ$QE61FlbݠTHsL_b6YX[,fRTՕ?bk }(}KSj:i=ۮoR,6tj  d,"gjBcgÆ v6ŚFa Rh;"^ܝcz<)q2]XO*-TM|1_pc6UQPsD 3Iyu.ڌDj8;<|}Ϟb]|9:[,"{OeTyGŞҡS:tLcZ>QzLj3'3_W~!/F'~?hYOa9ÖX|nެY|2b% k1ꋎ d,{ZJ6!>UaPa˼>?5O,?d'&ҷF/uX c&8ټ0b;j-Ԙx>+@X\ U pd 熽.400@RXjWA1_o^\|x(geh[,$L(ٴR=_e?D],̤w "Y d,Tixg+rb%QsEu(XXv*V簆0H@ ,[Ke 쌿XyHS,.d2(wEs!33@D%z4έ d,4vqMf|"K.bbvښXĘ/ᛄ-o@/00@ \|6={Ek#Æv;$Zb -noJkm\\``b2UbgO¶p&*jub1de(Napž:k L,@[G6%œ,+JQx;kX2m9c\]? d,`oǬO,>ԇXi/^QCqw}W( V,@^ỽ' [ (=(Eɳ ڷ%f LmVpyF,@=Mju 5_;[~bQ^^-;xgԤ%/fE7;.p2X̳xj;Vb1d ] UK\i`pb2(zS;aqTeS,tOs ڬ 6J$)<Ǩ >@:Bb^/C~3 1_2NWCs;;}~;OnՓؽɴB ʏc5{ ,vsi'Uyeɘ MGv,xU5~t>ヮ_zjn-XPbXV!47lpVc+&PE)\0eإ>ZXU wKbk5^hz[ T,XFe'> ^,ȹ;?vǩ +sf2zb%5qEǞlC.k/-Kn̈́كo֟|fbA9xeeēݾmO/Fw>Ǻe}nΎyl6^hSbAK|=̓ *@ `AłsbAEQu; T,Xt/ vr];'ݜ=pG6OE?;}yw"71H4 *T,Z9vW"~5ky: *T,Z ٲO'Yns$Flm&/B%/ָYIk&&"X܆kaY޸fD5E’E`oe/EӠ- _h:,M.-f"kMPxmuq֎+B}XtS?ylFq-61'?/ *T,Z̋-D_8{ý?Ztq)I "+v^i0on6N[#_q]u`fSNJmQc MʔO:4:EeIG ȸAZ.v.ǔ/FKf"Ώ^U[Fρu?[XԃŔg 2~ $[ч,}':r5f"zIGD{gk,>˱YQ1$梛oRw`cp`AłE.2HwH_,cW g?HZ9*fWڊ)qrmŨUK*Qd+m[}`Lk?wDl^]s=~!X<{:eP*X_LRXkH}bo&쏳b>`AłEGmg떻A2XleX^`aˇ+ptd@+L鶚 *5*kjd7bR}Tx1``ˌ'&4qOe* `AłE{AsL3L4ƹ}5.:SqY܏X`[bAŢٜ8Z/M^@؆`hePo\,NĩƙmHz`ۂ *;]33loޅA}d<أ.,cc-4IaҔw{*&kψj wqL᤿MXpjumh=VY%X,XPh9&c 2bxuIuRy4 =?޲6S3|/o XH鳚g'Q`kȧ c=\N',5Xeخk}xcג,z T,XS};? v!wQ i5DKF`/OBo-e=v,"t5XX* #v"w5Yڮ-`\Ȭ @o6ɷޒlO3LMvݵɃًkfx|fj۱}|\ce39Z>s{ڱfi 44cWdޯXRwW,h,h,f*b>.H9@i  -ZWC*E,Wihg%,h,h,s]mr yQ_} 44@Ƃ(8XXX   `AcAc,h,h,Pp 44@Ƃ(8XXX   `AcAc,h,h,`zu,ÑݾDZ26vMt|kݶKUyg(`AcAc6ea!w}hݖ+? PRƂS\ӣʱݞ,v_`QPJƂ0hfPw{ة`;qp|gʃPJƂ9E0\|^N#XXX^—=Y+'W~pxt2^7s/C~G ,h,h,`5wSv8FYX-DBu9,b-c3=Q]?夢l~`1$V#,C=F%B}֗Sb@2wʊ0^)J =a`9CyNaS":Ƃs9/Kڎoi1Y-`*`RQo+eϝ#Xmgg j9Y v"XXXd  ׂ;ằSEaK/XOzL(멸rooFKfB,qMN'WDڜ9JVHkbFo~D0fwߢdEhF⻅vutKQ.]e-/'֓틭^/X+(XH$kP{IH9 F`0h]fq7(4X  [b W ~Uu 44%sy Hwo@.i\rՑ>Cdhx1yԃ9c1us},eaѸ,|OZ+3&,9EHzou]R72Sf8KN"olJ#X@cAciPt,||,+FIO/%푟Wq+XV^.Qb]O~}~gZ+o'bvL"乂6^;Eg&g@E.TWW7jUHs2`qZ/%P,~XoգOjjUzke"",ܧ{܌'y^kqޗ+ jH8f#Ú5w:#kX6tϷ7(?G8/PθT)`Q+R|;XXtg̥AToX,_-M"9Ƣw }>X!9C @  l4K= hSboL,je"zzٟG=<۴=\ye{W ئkT4Zf1&hԘj]x?#Lcd?Zꑞu=B}`m4j_ۡ`  =5; -쀠/ۜT `1iYLK[7tWȬ{JO5UE>+ۿdH{c:DB tdhX?`{`(`AcAc͈D^HGs{:`qO3[[`qSĸU̧yfǺ+z3/V݃CY{`[z3noY}~kξI{U窒\y~oէ3g̉(|me|}͓Gп+"nۊ8yn, a|>,$6W1; BfBG|nVՙ:YͭKN FGBSz>h0kE.LMwꑦ;gq5`h7K=WĭA=f91~}9}EYWفY (Xt'o37!4MCgEyr8x;{ĵ3Kމ$J@b2d(H@iJh "32ZepqOw={~9BhM>OgYsy'-Yk]e58^alełx'&5]r5o5X !R|OD=;_tSΫCT's+|,2bpX;#;W*uf0H4OXJƂU Ƿ$akkTwQ3 Bu˺,l|.O9GwTB ׇ?Ă)q1;b4?O/bӜ/ %(H,Xx'1elLT-EBblGy1jqL%iwF4@L!l}Eh%.zk&5PooهaP}|قyD_~Xq'lX;%US6QX4GHzP_b6 e!H,Xx2Fz9uTb.bQKj0XDޟJj*x7SGbѢ?y{[z"J?;S,<նX1R\_!Ўb1$+q{]̤#Yw>}&&Y .ŰX_bw3 !H,Xx3 EҊ'h5Ek\6u.)jwnb&ܗłh֊T+UNޭwzy6XxmWiV bMwDckGX,;re!%b,̞r׏O;X[ E;E65oM?Ve C,X )OCGQ)RI,jDTqMr&sRmL,_5WeImQW,<նX(vSTol*|vkv.XddG vͽ%,T,dNS,_ٯ_ibqؑмbS^3s e"H,Xx ̑IsU!V]X\!{ťŌsHiE7w✒{/SwW(O$̩W(Yl8VXx o(XJ Zg3 (3A%[#FU^de澋E(),&z*b7~j!s_%+g LGŧsd,Pn2 $H,%lVQ%%j|b1JcT!"EwTؘ2!djk7{]-Eώ2;oIп}zc'o|+͗zfDX)l4=łCE3G~-?ֲZX"j^cΑtlElCs,?6'ohPb3Rq>NW){-Ţn-XDY%u*k,ŦX,ZQF˽gyu(we"~^Mei V7¼Z 6(QUo 9vZ}+bYv/|wceV %lVOUVOLO,LY/='gX[+뢹2o6lqwqK6 k,fg!C,X p3,o$U)|;O2:o ( G,ݖf*I,ٞѣg#dmxMIt"􊅾vq\ 'EOD1~ɮyFv~E2t% kDmy훻e "wǕM%qq&۶R%9ۢO_;G+yL&wc`/ʟI.gR xe͓?eY0 (%@bEHKçvjcv g* 6cUjOg an2CQ{ɹ B.P04ך1ΧGH^üko^ԫVް jY,Z% [S,8 R $H, $p㸳_/wf4ݰ%' .N_=d,C*%-Z^P_N/~2 $H,$5}I2R]<xtf>s^.7-Xѹ<}:G-ثB\', GŏKSVsoBrhUp'ۮUY.FE3VJM PHVt+?X-3FNsudΖ'9bEuE^Q_ V,X覎|V0jf`S9, R'nkб#%mfkgN YzgٴKWCB  sڥisM !2w*M٘O*b=&wm9~B"XbE79 1k4p߽7a[r,}YV^c[rpXE~2r4RzS5O' >}&Á]9oۛexenafkk [܆LzF_txN=Fj 8P1hs fH'ȗ=hct !"""`+]5!` 2Ǫ=fufÏr2y,~05`tO#B< ֥99GEMĈ&4œ2 TRRȺ.Ŭ^μDcEֿ& bOF |Rs(=͕>BDDD' V,x<GϦ^G*XLڅ_fp7]!7F'G=4ź ʛyCgXw@NO~o7 a,?]EC2TJ~1B-)5GJzz]2ѿA !"""`+ePxMH竎`Ro^$ٶGK10R ZXЕ`@6[&xfzIJ1u}`I%oG[rȿkA%% 7Z=?$r_Q V,XPE4cU<,? X$aE hp8 /VPQd1,Rua,W/뺁?yaa6^B= UȂU\y,oT4gp`?x!DDDD,X`5>kWpwD`p,Y=X\6Y*`n,nB J$jŇ8Xz<0unzSE=|S """`+c3O H.᳣ V<#঵W(X,"D ϱla6wε_2f%Xl/21lgyGPk]=6}׃ DDD`+*F &-8olm_y0%"sx$XiW^`!&߹\˧BTZžxRKBFaճ"v)~Sp[m;5 g_wc P^sE'^Tj > """`+yIڰV͸ۓB`7{`]ɭp]SJtAnu@N/Q _ "]S' 20v' Rȋq ?VQ?#"Â+XtHVֲyxqzmO'j`!cZ+KvpC&kmzZɷ_`e _ElS7rx ||.@/w/XU.Xw7q+^YJbb-/ˤ̉z6v8#B,X`"q\y* +$ZGhAczjhWUҦwDCB7 Ҟiwggv IDATgfK|;/ԳJt=Kw9X>;~MB jd@[CPXcţ)f?Z{s;M 2Ÿ#P(1 t,M@].>z'_`ӹE=6}@竑'( 5(`:J}5XC4gOE-2*qZi̽.2>  wu= B/Xc#*u]+ Xw5m^6@r>\Ś2 EK;'֊ei?kPPT~AT*:{wwBPG t,б@&K*'w$ߪ@.Nnz_vkXdP(1 t,P({G* t+'B@{@a_k"U,P(j t,P(8fGGasӎ؃!Thg+K=ʌu$X$3jD&zWQ?jY>EYQlg ߽K־ uKwF5X`03C9nBP}XcB) GVzpMm@zAHm#>)٪L-O!~:i l+d\s=8GgtIM}ZVܚE.kWd&?6Yr?~ o YҴ2ityM{8&äTTy ~T$RWŅ(BV9)'O)k eE;7ió*g1z>Hj"IWRjNd% Ȣ(:QF"%l!҉n5Z=h-`Oo;w9J/B,б@"rؖ~y #JųG]`CE}o7s oCs^ ɲ^jlɺ[}n?$wMK vsW'#=QRIjb>Rah9vs7Uˣ0,'ᦕ=NKWUlYwA9@>OHn~7 $RiV E06 L UX֍zFZTk,B,.v` 7!y^ܽQ7O zxm4iZf~BY+s[]ViMվgEP t,б@0bŰU;"#4aa~^C\.9,L=1?"8p,{bӌLit1S|TFWeC+ueФ

OR!ޝ-9@,zFzwX7"E"³f`y b_&AႫBzp C ,/}Ylsc:/=WQ( `:(1~2U.TC[lR2fxVL2-58YLv# Row֍Go~2.tb-oAj# ];©h|No/F7ؽ[B<jn pc4ĕQ`q -\`ݨm_k R"vfbM[ʸJ|hkڸ2 sct. =gvPYCO| BXc 0,v* r2UoKg.ȴ(i ZiyX[1S m>MuuDD3Te2: 9r(T; #4^9"zn߽^N:*Fd)JK!,M{,Dbq~S+%Hb(pPW^ESI0Yyr+T5}7[%֫E w( @ 9qmݰb^V1m*"`,t1ڥ0X\Zʷ/Е>lA\_-@r]cXB1S'fyB`HN-UW{W%̱qdly_w (Kh&Wwn=mckKC ,B¡- v dhsШ@N4WJU"aH (\}HBhZhz@8uYsmmzXգ$,YRBWbnǂiXL8 xJ 0CX3ivjBK$ы~_ak[ZZgdM)^1Ck)`D M,-e$vdğyO{˼Gli)&BHNd*[7T؆2V X\{&T7^w|R4ߪ-u=٢cq<Eݎa2Ki!,) 8p,d<$Fha=+V9L@‚JQΦ f{$dm%y_a#dmrA:qT==qH+x7'z]C-"G쏪M SB=s 0Y\T@a ƅ2,MJX =e ]/fp(SLV<{[r,$!ggcB:DbS`@5[X0>̉G^bIk} ͳi\%Z4Z"W'W58vx Yy刯8P bZzYMltTH+,~0>JovʳH2}!^s, :=saOLXcmaA'qUȮ f|KXP_{FC FI ,<|gʟWIJ2?B$rrM bR Rܐ;!B`Cq9ջgI\Φg7'c^ƨ]Paּ} -"aq唡w$n)&ʲj mŲ*EwǢJG#q2S xJ :E׆XITWOX$[Ց,J8b^Av%,6L23ɪ1yሒ})`+ ň$e0,]VTN :7, +X+'Q?t̵2nLV'\WwD9t5Fe¥3adk#]) ]L ބC;ƽ( w򈑨l]ҋ_+"`лAŵ+,LlT(vW̾Eg;2"ln.QI`AEspAUg: C-,WhGyX(tbbX@aX(yX(tbbX@aX(yX(tbbX@aX(yX(tbbX@aX(yX(tbbX@aX(yX(tbbX@aX(yX(tb%~aφbX`W1X(a~+>NB0,+~|~àX(((((baabababaX`X`XbXa`XbXa`XbXaabaX(X(`XX(`XX(`X`XX(((oS`ab.0,@P,wX(`XK@P,8,'  B  ^|X&yb˵ P, xs]zm  m:4,@P,"יaurm. >,NC8S,. X(ɇ<^YXB'|>!oOtus"f{\gQ&dz$Vw^ݟtx°BY{X/}xX(òY6ǜ=>w pbΰB'cYXT!Ƽ=dZGAe;,r;#!YWC#N[V`+bb{2,4MXTߓͰϲ$[T Ij6dգ6PT$#2g$Y!h ʋabO7o5`Bڦ e X} 4I!RU  BbX@a^i¼h bQ b7CL(ȶt(iDϲ>-U8F>URoXX(b3,&.UX\ 3- WB+O/n+E(8C P, P,U,=J~ŃXL[,7U, P, eXWbh,{7C'&[, b; Y3)IgmŢ~wwӛϱ@ByzgۊEEd-4!,Iq8 P, xb\)C/{&""/OUeiq0u{U@P,`aMkƖI^PbY*zU?`['*+(tI2f?WEu6l&KyJo߽$Ɂ  vWKYbPX(aX(X(`Xt+{6,@P,X(`XI P, 0,v0pU=N.V~~u$elޭE, X;~:s+w IDATat"= DkT.f*Dt~4ϋE i_ɥ(cF-zU,SJtrX(brl(N~:*Z f(v?Lu^vXݢeGy1>u:VŢ^^&~y0,@P,`Ea=xXdvn!;\(6nqjXLPgnWuw:'Ǖ򢊢XTEab Z,/Tӹa `t尘<ҽDXrTb<,; P, Xbgv9PXt'v¹b5ݵ? 5y^vn? 4b 0,@P,(XNObυLN,+/(Ezz}Ԓ$.sEK[<|Um0,@P,`Eo3-K›ףeh/sr&a(ab^,Fb=.l ѰwU=Tj/?;g?^>$׈"X(,ްXjY ,mgӋE"7.ǭzFG5iۥx=>?-h|m0,@P,`Ek4?wڞ,QA?-AuYo2UG~FtccŬ縙/NOWI BQ`oxX,u[lAkҝb ZG-fD^oƳl99K8i3X(,ڰ($w.5֖,o_*Ff"I[k4=Xk-y˷=fW/Hj`XbX ;mnGlorrC7B9,n_^e`XbXMF &֮ n~+{G5`XbXQt{L n(~ab7~XX(`X`XbXa`XbXa`XbXa`XbXaabababab((((X(`XX(`XX(`XX(`X`XbXa`XbXa`XbX©pjàX(]]aP, Â[,4 vaXBP, xX( BaX(<, bX@P, bBP, xX( BaX(<, bX@P, bBP, xX( BaX(<, bX@P, bBP, xX( BaX(<, bX@P, bBP, xX( BaX(<, bX@P, bBP, xX( B+[ pbX4?KqO}?:=W'qBP,9F\j?}]3, ޙaX(zƓo<?~;W:,>x wfX(g{qwO_//:ןX9tٰ~gW0, ~y6o`X|BP, tXgaXϰ0,bX[D6h6uF/K_>g.*Y]0,jsK&]M|Ո޻/ʃǛ}γA/?_'~%jO5, f ~9>9gq|_yÊWVJP:}ϙbO{i'++wv;ilQ ) DHE bԂ1VhMU`BM(/9}0Bf51YY## }{~U]m$*?v PۭҳjطJ*u"!?{MRE Q iCXsBjc"~ppm{G"xdH@|X+,R:d80\) b蛒N4xơ ƕ,^,%X?-:)-ޕPSk9ۆsX,w&13V14FD"H`A XH`!¼k L1&,1JOƲS/{OHs ql$b-~$&E/$\ ^)M}(* rԂq>յq)1h,tI/Bwqu YAʎB]A_P )7D6HBb8UY+D" XPĂD Z|ǖ9ӥ"L 7:rƿ5?[X6p49A^ngo$7.֛`ѮYLJ8|^ޮNYo-S74{<<`1TbMKisEVG15L 9O?,H$4?XPĂ"$\`GJB7vo{Zvct9TX\LEdzI<%bvX`!Y񧧸 !Qc19ʪ`TJyf> #1ʗ vu}eJz ,H$4XPĂ"$\`Q8Rxذ BA)5ѯm/!\%`qpX1K}Ūݫ`mlT(!QғqGmcSTX[``T!R-a&UJ!f X*gXH$i~E,H⽈/xG6y-gCb,ͩbx=x@NB6X:VX &,9jÖ,N+>2 n򴌐%v< 0qj6̙s$Fα H$`A XHs_U;Kv,-0\ƍ[6 X)>y{}v3f <.6r,2P{ d Y:b֑4eO^;;J^X@S aI!Q/`p?q1']wIi48:D.XӹH cN?m}[K'oSB"H E,HD/}5k윅ElE>y,F::)[`"$m|2mQ2 gg7^U5X5$'+wl'k 'p.4kjVm4^`'{w~wb-\g~2yǟ1P!_8\(!:!XOX \khٻ(N`c1*B$PFGPsembjN8&6ML{u˳3R,􆙝μ&m>  >.XduS~ߺ nLLji!-7;4>8X4M05RV#!{nL\MMo$+zo$_xH\o}'ef=GCfչkkEEsٙڝZnoZ awŹvJ g\Zsvɪl:9n8T I/fO8Bc @'^Όf 6֊"4^~?;sppf7G![,2ʷ$b'avo^?x~kB Ms!T}'ޝ' ~۸*"|޽T UoU,?YEvhۼQs{Mpg-?p>?Xd`#Ik<]xjx  >lYZ-6G'ӥ(WK:FKai2xz_Xhhٵ.~`'lzb&l6{aP;gTt(ҥTk9}yMo=}j`XU C1>N`wP |`XiӶAJA?Ng#Xh,4pr᧍b&`9CQym sɌOǶ`  2͋![3/}Nl/Ng$Xh,4p`: kNz}w,8BcS髇k[q(n~{{x3t| >>OXh, :Xh,4,4  D BcBc`X@tXh, :Xh,4,4  D BcBc`X@tXh, :Xh,4,4  D BcBc`X@tXh, :Xh,4,4  D BcBc`X@tXh, :Xh,4,4  D BcBc`X@tXh, :Xh,4,4  D BcBc`X@Ə|a|Bc;O   Dh[Vg K  DhDV]r9U N-lOI$pzBc'mmjjv=]]Й,8)vsm{vQؕd)  `q5m<]8;'c6ˆѼ7!̸d)  -_yۻߟ*X,nϲkV0w ÍW2X4 Fl,nƏ܂K`X= 7~_,ˆ#4V`{eB_{CXl!}tW?BX.QJ> ]!ܭL90dEJrdvtNl? HE!ldP=L~{0L$[33Oq#÷\ENDXh,`WZ«_\J[/{r`s+{ m?.WBv.w {BovIyUzhbʛN=^Mqɭ|oZ\/Ԧhu?."Xpi,l ҘT4 p.^-ɵ}!o\yeNi.;pBcN߿`1Gu_%mŎCː/f2rFj;;Ϛ`і 䜥ORm- *!n+DW( ѐ?pn +yߙNK\,0E03TE$^9"&XDO6*ξ_=c^%=O n=`-e`*gv,%1WKΈjE(`Q;SX%C;N44@]K%K*I\[ɦh|jUK?<~rNDd`1 DF Yi'58 e,#3?z%u}NaQ:6;̊kRٖSYoqE=~$bnXU/.Ew,h,h,J׆K%ڢ~xtݲ՗Sq4zP '?1u.&Ox UyצȀ f]*dJE9?vйbQ2fYŨݱۃڙRqG1;"/T"3="qsGXեP5뾰/_;N44@;hˢ} yC7o?x;KYFEa-X!QML_M2*o8,txg޿G583ߘ_`E} Mϴ)w*2w3.hWu_X`AcAcE%+6+`! qjE69wJ? s`}=s;V }+3k IDATȲ6Isσ'X{D y^')uE,t^j`pxyqqqږ`1!j6S`a/W0*l% w#@1_9ajU8b刮N,=?U'X<^; 9?9"[,jƗ`Pq4Ii6 gb[?{o.zC}UU~PѢp:ls좼f ~8wv\RԐVA`Q3 ,h,h,_hQcCv[.z}w`qw5%9Qe _ m{2bEwOEm:so{`LHd:X_rx 5#qΪt|u_ 44hltEtE5cOQC}Lj>'X씯2,V͕TisoȄGb krLqvoKXVmsIT Bc Y =COZD>,zH7XԎ/@   KK:;:',>Fd6~T`r6Rř}{_di+Et^(ޖ`1:t^|~FoD`\PS1X۸y}3qS: &KתqNo,}ѻU%X`AcAce?Xىu3X -FRd'OjE1OYUdzt`sʞqVvC_qKyƂhOOxwKK4=z=G^+$2sI쭙aM>8w2PUV{9i}h^ʮ;Ͼz2XXXmZybuCMCǷ 44mFSۜ/&MG 44LmgLK")7-XXX 01!)THD&g M 44VhQb`j% *;ƉpC%Z_KO={* 445ZF`j{;XXX;XXX;XXX;XXX;XXX;XXX;XXX;XXX;XXX;XXX;XXX;XXX;XXX;XXX;XXXG8lX4 L-tmЂMa6XXX>D[En 44&S ,h,h,.X q    ch[KKVE8XZʗ>[OwCSR([RSrODd!6p"H$B";W$B/4@HB\v̚񌍓ĄZg.Zk[@ +U[%ҭ+TEU)   Bq1S,V(_kD,ʖDj*ഉEA%dՋtfM6Pb㙳g;w e?2 [,f@Ań Y>X#@վ3?XS'^bayoP^vܹΞ=%YVU)| (dJS,X=  9&D}LC8M,tOJWbP$;_Wwʸ,m5d8rg<] $$*oF#2ay98Yi ĢuH~7Z(UԴvl\vk"F_l!rs2;f׻j"j7&oPbAbAb#/"E6lpJT,+uPʠ!uIW,#Ι;>XCcsOӋEU\e]~wizj=١OD}Un,XXXdljE|mwe~ܱ q3NXXXdHՃXco7(ŦݝpK֌XzUX:JGHnb4w}KZ;?6,Tz0bC*ZAK]z b'R,H,H,l)ⶩɃX,z.^W`TfNjrqѯDsڬbaRXA󡫾O:j*As֌"KĿ"NXXXX֜O:v,Fv0dx+]c1]6XΌ**s?˩9*?'.[b!p2łĂ R׮=չ_coeCKhDn"Yb(O++/q M,OM _--C~_Jܫ/R Rs^"p2łĂ /-ڶۜC,D6REM֒ފ^튅zK<"dϐ!Ps,^\˫XX#7gj+W qw1ttv)$$y}^B6m4Y>x#zN۳A"؅$c)EۦǩP!1,Uu@~,c-==ʷ*a%"#0&#)b'A,H,H,Ѣ%Lsu&\4sC:jSog"r3o&O߬[/ƴXP hߒ%cjdMqHI,B#u*ȖKmkQXX}s~6"&-H]u|rb'O,H,Xr [[k{6FrlіEOe?ב-E7 ι:g7n<4"pI,B':KL;TCbQ4^t 11J 8qbH,8 bAbp-moݹ|4ǭǞTrE5h"ܲHkwmD"[,B-ݹJ*&V,`Y&zfBBOU޵j"T uѺПkda4Zˈ* 8qb=bAb'F&;S0N3yesmV9gAUOQ%ݵY/.6T̎CpRłĂ O-{oAUmȏXXXТUK,$$h@R9-PT-@bAbAbeGƀZłĂ ֢U iL,~"_v_ЀzCOP,H,(? $@bAbAbXXX,$$9iI,LP,~b'_pю,( x…=UA8cŷD,H,&V`XX48!FFDz$&W`ԏr 0fl"8|E# IȜLI0$ gnwkKiޫ ad$d,Xd,d,Xd,;0c+X|+fY(%NY(B Bb{EX|T,v< cXB,Xd*d,Xd,hnEEXEtmB jXbQRXx< 2i!Ă@b3{ Ȃ&"*cqbOLXHK,Fřb 2i!Ă@bG ,XX,XlX<8| V,Y8ba.[oba..>g їІW+J,ۥVX(@,@,Ģ[,CbQV 4 EqYX)G,ByE  bXl?X% + ЩR=bYĵ) рbq%vm؃X&%Z 1 j%u8'V퓮 ҄;T,.oiC,<oD8{KB\B"YgwX}1bQ CﴵKv^b1Q G~ba&,N (}^b`%5P?xeKbQA&TQ X 7BuȳOoۄ@Kх] wvvi/nXLQxt(۪?%1f HD o|S=Vby#j$Zb;Ůx؛@,Ţ 5YdQ Ţ-xؕ[bXx>z;Ro،XDZ bQ1%͆n2E֢VQ9'klpcLt7óucPu̍7O(Tk}ĻvX|XDZA#bQGH݉P蹺sAmP]e[(463̷ƴTDyE,wBG =/ԋ@uƺ~u/GuSìG@KG>ý( /(N#sg/`㓊Ŝi!~nՋ.^ ƭ;"䷆}_>ǘaVSQ5Hzt E{Z5T6N]vũZ b\(/?{.Etm(Vb7X8f fOXfCs')EJs啕K_2XܷŢB_`=z>>iLX7uxa 5~ ~טhke/1y-/+ýI{?LV͘!B^xn_ poNkJqYDo\?ׯ.ՅX4?u:8Tq!f'f ]EM0"X 2 7Ҏb@~g_3/ǥیX7,4 :X<NxSgEUH̑Oxmu`>=\V 1AԾz_7"K9j=r)"a0bnd*L}ѿLY lh@ !Q_aNfalzlݸM?>%(+, jcT,Ժ>t‡XDg/R )W Fk7 A7bhN1IBuuJDO7ƒOtScuf?uz eM{&?'ը}[XHoE[K,^:#b=fH;~^Ŋմ%)54ՑDX!]F&-*i6T ގ?D>|b{:Bgx)po{8-,, 4 em_ِ߇ B՛R.k6kzbMCBc`mo""O6^,fT˵ -;QX )+oCEqޓ1+bዮ6 wm'1JYXfC*)R,7kIW?.GM&τ.!fnbd b'Q/eM {SNԦ&˴bp@Q=ӍL;X\f[fmW( uzBrNoM4 KپbQ'F1X4苮j-^,A,$jfsڜ-5KOU ~9(;BXg]bQ-«~yQbqHEѢXL^cBLyō9WK,ى""O#c^u!X$BYwXVUq8?f0mPZ:2Q>svjt "ghtA&2XG d2VFiW$f bBʕ^k<υg{_3 Q@}EB-2z k+fsۡXh ɏoX;"V롚CX{(8*qFO"J4S,ރXܹbQ\>6XF.9]i[bc>SڔXdufBgV,*,(Y<Ջ=븚sizb}9li Wio?̓y IDATWo~8~{bqgWŴ"-&Q}&s}^k ΋o@]Ew;ݶBEC݊ yYc<5Kï,_:rb]8Ckoz0ZCf@ŷX;+ND/ wX\~,&CnS[P,N/Ca x7|_;:|yP{+͟bazLE+x4'qjx@^Q,4L gbQ9 uf@0pP0W,ރXbQ:>E姶X_K*IOܑ:Z8)ԑXxP_3jVEy?bvo4hTyD%#\Ub#8bqWE/Xt{[okɩo?Q7l0p)1Ƨvөrܻ@,j "6k8וX̩ bXlt*]*Ͼs|&PSCA,jeOwXJ_G?i=#'PX,-i[GbPL,Ṕ<Eh rBZ*eM"bPOb17C,rzEɂG6Xdz=^v"%sO,*rK˒<Ո6,](6jBEZ,yw'bq_*YȹP<U3l֩X}XܝZc fZ,~bY ]G8rvjجOX㊅vK ţPXk4nBYTwۙ6;bl3o6dQX N,İF XCLżb(ٽ,\VhGnS7܊k=^X̫?H߅Z,Bɒ BhT#L(uJ# ܄5bQdaͅJ,P5U,fXȒoޑx4# ;l֮X %9y% u1c5jʖƦM6-^xUH5W޼y֭k׮]nݶm<}{gȎ;wlذ;d׮]l8=>q uCL|h ;wܾm!qw֭[6otwwZoܲrej&6Xr*b1n׃Xj# X,zXkP !02L'TZ+x{WtttٺeKktGh^E[s( Euۜ X, cm ~nº eFمVdcF" -:UhJ-Dn{\8"%ʧƍ) ؝dXDV!NWt+Dy,zb5kPI">ϬXT,Yb!Bod-B,:df!CIhaZl&<.dWtiN7X,D^aM:h1BU-ފE}Ey.dԷu",ڌb,Tf%YXH-B.Rх? Yp W$ _a,MfB3PE՝XIBo0"ǭ8BEWPNf:3MD-,H,/3JFawuVBn\+V[y ,U`œ5TO݄_ބWvż,ȿ el~ " k2^+ -"ͨ] @UgL)kVȸBZ'z:d`Ѩ 5icvPb1veXmYsGR.9Ye*0Ԣ+[م,Q$N*0B]@Uq^Vs$}j/cج u«S,*,P+9qV,}9,Th"]$ dT$aN+̸+PNBF)ϪnP*u(PۏwBg,3 'E[+Q>p P:}&I*ԀYVqٯ,Ya̚}4,6%fP3XԓXd,P* ٲPYZĩER$^bM'UL+q9Za,Bu`!Xd̈́nחXmȸ o]ffFC3 Z(Hb VB%֯ iIXa2Hf^! = 6eT3nB[,͜X(E]Pm,ms2Tr,ENlaE.O*BN\+ \m5,궾 uPiuĢBo뚅ٳC Z$EҶc<P*B=e1%Ü,šE< U.Z²_]@4`g /!VZA{PW؂E5X Xmofa(oK.CPnѢV-/1~s`'W &/rBzE<fxMnLB5{&]OP!Y-< NCfMU W-|(n^Hr*K-kU< +A<۰b sP{*,R(oWYi(ݳ(6-Zlẅb2.@2 UXTpsP+rHPG0X6 Wb|&eQfMy,\jCIpŌa\t6Ѥ*[ +~7+C; -XP+ݻP8+[03 9 5YXU-틔/a p9" 'oN+W: B ͭnu{j?b6Y]56ZXy`'"3 >WzE+W,zfm  3wS He!ɢYPE W-ʋy[rm/%$hRE+,$W ۯP ln`?{HXބ1o47 ɳ-0Դ-OpfQF jj}VbsT _+bsPujZ B7,`љhvub.ԭ,#yuBNκ,,:͢,ZMP-|p$c4#p!{$.VLmWzE++vjV7,6=b}kM;]Keܚ۳(ǡ^h!բf U8_ $yodUZ!SPvzEXȃP,b1j/κd15: UP-Znb/qSijE)b" =b YBYߚm&V,P,l.C̢6 坹۳-\fAFU*N| ^aPqs ^ǻ^rѹ ,ga(MibZfOin *W :10y5}zBa"E YmG^ݚmV,F7Zpb1? 5L~1c1 =w W.^h1poR?%UVjEm'P˃Ebb1:8[gQYP, wZL~!?)+xTs ?H *Vtrm^a+$MŚd.Ca(tVE u"f gYf+ogWINVѩ+B8rBbba C՛~{ljễsX訅cNb ymm+tJ fIOE%Yh!ZtEJ\A)ΒY<" +jH^W T l5{bB1'/dQNf1Y8-T-2Y/ IVq֩iY W+V14?Q}xu{E^'vcRޤǍZlE.q%p61UTv+VOZubmnEou{?"B5"mNCYtZ8 l#?BZ:EX 󊴸Ÿ\OlY̛Ť]E - vG-/UXvъyΩ `b^Z©űS s.Gfڄ**UV{zTxuŜa޲Ka͢F,PGY@TB1l5W1UX!CP+sP(^^ KafQŷ: 2j `!DM*djEg J栾",XBE,PY<P!ZD].0d<\X 8mBv+V\sPbj~ŚdQ54T0 FfQ uWtvX +Ȅ/b{3+^,EbĢE8;,fmqZA.\DX;jLI*ULCP+ԠWb&X[]b-ffQgU-[rqT,._EN{R᭢hųV߯{Ŋ7,nL,'go-kY<]j!BݢMÂpD(߫bU$x{_X0ukɩ٫oY2fi:ժEv fU/j8E-Ť*UZ99u7,A,PdaiiE-<,ZPT ӯN*d*iző.m\sP P Efn"`8dmբ$29o;\C*ߥ:4IE)W1(=W, o{rbtrv[lZl"E  cXOi_]jJYEV\gf~+ Ew]J"BQ-[xva~k!|nP2!I+ jm^fvxb,&4mpny(U-[\(z!~;~iQK*t 7u¯W^3OXlݰ_Ci,YyZlanʅEe\iߢuBƊV+TW,ƃP+eYuZđ( ./b._3T?M맪:0 7#,vx-pf"GZLs.^t 2ߝ]pV!PWt6wzjbf}{Y,d-\(z!~$%qڷ~>5T!R"֊+d j_+Vn_X NnjdI,jjan䢫}ɘX?FpNZՊnX \,~],ɢgq;C"E g]?gdRNuNRbF+z3bɆŅbXh= eCpbr ./a4cӾKK՜R@XLAvϗP{*: ,r(fjeZl"؅1Zvz;IEV\ nEыPPZ[tE  32 >xEPT(NHXP+TPkJ)v0jxbr /.T//7%|~$GѱY/+Ve@6`?!*/YYj90%ŧ5VE?MGPsV!ԕâu xf-li}k=.u1EkRVfDSRܛ=*Hݮ?8zrXVcdgQlE~El~jF̙yR7YUGP+XIsâ_ż"Vlfjԙ ӠKATˊ*+u]1/,տnwQ"L"*o$.H#onlvԙNӨ$EYU$7PaVgPݮHX|xWgQY$KH-ʸ" <1ڡճg2NjETUQdEu+b/>',pGe}T+*-ES]yEK|"1eR>U1*HyW|花ۗ/C+dg1s[qQEQe _-sd13jiTUKnW|XsEv ^ZiQEia1z[rԟxo"*ʪHZa:JpehEy\LuE;R2(H^VEWWB=<,ZP"ZZdi-.H nfNN?Mq*h+tE¢S?YʢZZDiE\uE1 , *h+W|`M:,F"Y4ӢY\b0`(Y : QͬX<;,VEoiE~k[EVH#)3F Wo(YN+iSsULˊ~VD]eMeQo-H"*/vE2)榸Gŭ*UEٶbcWlE'ŖΡiE"鋢1s|F{=*hdE jMW\.,6Ŝ_:iQ-. Neq4V̛UU4K aq"XZi-nmQEi_"CqpN?b"/16EV e("[q1EQblϟײ)x(+#:΢IDAT ,K$-Zmq.(Sp`MMqFUYqhW<8*6E\˲O-ʸFdIc,'tjKiUgEa,)"LV[q1EAb0qNE15E"oEp .xiQEE\LuEUK l\?EQVEuE+?x~Xl.(b.h&(j>>aaalll<<<666ȵrrr]^^@@@xxx}MfffZZZ@oǸo~Ȱʮzzz\\\vvv5GNbr载CVOOOҫZj|RcGZ㹹@SL^v˥iyƼa1X_zɷ9HFgwhtyYehsKXBRY{bOtRNS  !%)-035$/=P\d #('+,2:@ECHJL7WRU8Y9_aBGNOT^]b]@j IDATxMVVᔦuR n d9 &Df%0b]mB|eɺB3_{ɯ^5g$BX , a aBX , ,ThVO[ aa!,BX aa!&a!,@X aE [o!,BX a1?ea!,FXL\ S|Xfb!e!,BX Lbpx2\_ aXXX T,^31D^ aa!,>EXR2)&Έ?XS2/^B[ ?+jL88Rj\ axa;+JBH(uŸo,Di1vY3+GEp]Ei\1-)nA壢"(FOXFA^C T.*BR⤨/rq1PC +UQXcF.2mgl1߰HwEnV1PU~0qEzl1baqXVB<0ai184+,(?xt]$h]6:$.i1dY}^Ȋڤph94rmMԅ,*pZ`R(jLZ4eE*MQ 4Z%E-tE$+UHC?4ymhZԕ,ٮ(ʊIklZ _+tUh UWo7d^HTbpE-Y?H&>`>E̋t[,芲GE(; koЈE . ӢwY+*"UyI/*"7(܃ʊ@UĚbĔx#fF.mQ 5BWij"PP#HE4-,FAՎ+Y_$X:#VEϡEa+rY #؏Ҵ,VWd">48!q- b63^]H$HIE<.iQU{ӇEIWĶ+"@`FH]tۢ$-Eh.,J"+""Vc$ѶI8,z-XĺbT(+:HD`^tbwnJ}!mQb'+xSdb9E.sxZtS!]WDb*:QJGPTE`lHEal+ b?*Iq`񆮌p]tڢ,-Jm}Y4ɮ8IwE +"2R$E,NJˢ8d"خY^S$z"TvF(/:q3jb-YNfְ"04E((Xa# .cY4yE]W|O{n&3Eaq7H|Z"vqŵCyש0eNXbr^\Ŕa`Q7,;y󊽬8}2_?bQ`]a`nN+7E߮x PFYL=i\qvvMP{ZPӇE+Μ (wVSFG ڮ\kGʭ϶"tಘ8, bg\^ :7Hâ,B {P{󊵰ڰXgPś9,jbh@Mϲ5E͂Ef#,&,6m>kE+v+v͹bohgQf1YX\*Pbӧ,&z auaYEkaX-nǺb48p4b/-#Ev"߳BX@MX\\ -eQf1IX/B (~_:^X/nouPe-5F"0y^b,~,"ʏ, v+. (w/DY3,VCiv+uWW\^ۿw~=հUݲxWfQդaX^~raO?,.:e_EXkPwE2,<TspX^}OE}YlYPA޽qqLLBF i+:Cs8)o5O, U#L, Gkwy9 `QȃŌ 5>§`!r>+y9 `1, n%Y,F,V:z凲iX s@6d,|VF,ŤUEbs`MCBKf(d1`eW\~(+V(nE$ɢ 5b!EJm_k`x0XX  J,\ʫ[͒E,VkcȂŔJ-XF(S" $X°6,OYD,\1T!+XhP^ _2YԚ ,ń,F,=FE5`!X!*Y8K[;fВE|](W@X04CW6,"S҈kַ` ,dV̋F,PŶh"XaB4CmK^!G,jf e XaHA%덛,̝PUU#Tur3ylC/T|BrŌ`!oJ, (XtY7CK32d]0 QHR&X]ufb~[)Y↭ʱpva٬ .XH 0X5 ^B)X;`n"-X(+`[Xvb(Q(: Sb e´jVݶNX,`V,\SRhvs5W'\uâ,Xtʂ eɢ#JŜZ-Y,f҄e XAbaMܲ3XLxwB)(XSY·jb,ESZ5s.ow(YPx N(}"W-,`,LS!P1 W'Էz#  $XEPOY| 5`Xig(YX6ΚB{F,+UpvBUf mz) y㬫,Eµ`ȫ[e^pq6턚 (X@Xj%^(`1:bn ,) e|qbR)Y,,P]N  ,X)do{BE,ZՈdN`, ,)d,Z ㈅r"ݖ&,x5{{rB߮Y"X\߰ȃE5jPni"/X,`XNYt˒4 U Y- 춸'NaH iB:-z`&cz;`3bvBU4W}^ ^6,{ Ƿ +mc'T;  0X%5QBUǷK1ZN]6+∅(X,`Q,SZ/E/,&cSf jE|bW0| FjYRKiP+J/wz/DԨEY9Xh UwW,Xk% -XlX,VDgb^G,0|+Y,#y) 59d1Ve:bD )Yc,~Gf_I#QE[>{rë)X?Ǒe[ X>zzl9ӝvx_(zǚ#c?*hC c6Q&bGE8y'jZ %=afQ:)goؖ`]nn޶T8-}1`w<^n(n`A Tn54lEI"E )#`2t|d*6,u<oMOO&'H5-{tz̮l,,N1蠁bw1o(+b1TǤ3@QpK;7l 9pS: gƙĠ(_W7``Z3hCLߑ`,b_|;wj(w,ʼP/,e,Nn!*C,$X((q0$XH"E_O*lK(&[P&TؽA&B0JB‹X!jNZXnc``p˂Bu\cB c#L"` `DX0Ad Y8c`⺳ X62Iy)eBp0CG!̶UI7P<Ȣ[vųŏ?6EcRpnZ&zZBZ,,c3Y:YaH"E,}+.qY\ wU;OruZ-d>Q%bV@_=Liq!`p y2?h+$EJPq }=o'V!|u]|| meZ_+ۨI U=Z[BR(<b,-$ɱBouʱ[p="Er/v tC3bĝñQAm'`,IѩF9gJ/M,n#*o~`p[<҇Q[ݶb1>N[,E(XdPzaE*`(ޱ`bj?؂j ý2Rq`OL'E۵`ꎹpXEwywXɢZv5_XIS$:bq`EhprEš{7gŚyΉK̠,9z!M#RH[ۯ,FTw3"=.;Hag8bg=eM e%d'b?m?! g+= +@+Kb@k$V]8X@z{Rz"ɒfҰХ!M&T ,=kj`qŢ-"[;z`)EZR(jzvg(o+ жk`oZb,OtNŚ} \?p?=w>bbGU0"))<+Yjofp)fPCnxw` "Kg*`t ޞ+Ʌg.hA_FRH9fxLgLC? XWzu܁,^1`k/f _{Ke,|3-1Ɍn?N[8j|K^BJh|Rp(:HX,40-Tsٗ leoEFgp,`Uu /c8J `8(޶ZwH"&{H==o,ށ,4%ii|3<@,7uFoU< IDAT@ٚ 17f"+s , G)Y%EIӧx-A OY,E{9 I.j8V`᪠يܻLEW`7ۿUOJHR[ipP4W| $F̲eYcori0 gЌK!؎V{)X-r41 Dp*`Aݯa. .vb *&EU;Pܸqt &``1uhׁm$XÝ(R{[x-ݩX B¦4A&~KlPBfؔJG"pCY1B`7tCD_D1x;C䍝i=L7 W}bfސ`b͛z햴P_XuXI*bj8⋀V#\'hHlH~=(ͺ||Cf0rl(jtrn}0h2;lY/t%Lj3bdP,L1/AlldL<\ǤH4y==иn-DHu{_0,=9L{zFAw6miG["nsM ݶ!i@l`G dHA$C"W褃;䐢Sɖi|ѸygD &- P;*M&;՜]cH,"dZ9`a2 /#5#ubG|Ԑsռ.Y-Ox,Pl m0\"#ڞtvj/m\XjBbC Ugfa\{𾑝! 2>WB txQ1XZ<PbdF, ]MCA=7n0 t3w"UfITSY}u0XF$}[l,,FXXr6+dl/`) BBZ`XhBX?Xt͒OH䵫4y-J~9-XV7/]I , F@nۘyfDcQ24D]>e 2t}P;މ~b_B)NIqVXJbĈVe{`8+`!,ReB XB_ BDN0ш9grzߋN{,{%+D= # $,Zt]{LUZnښ!iŖ,T C4CB$[܈(Q6Zp',D ' ;,?oc,B=_ZR/LX| ]P c<7",x8x@|^`f ,Hq=R`1Hw`Q0 ,Wy]*yꊵ럙-DX  [`:lMBtbv 4X,> Lޮ]ej40Gc( /dB ,ɂŏ9`, X"'j`Aըk$Je fZż1n?aXxR,)ca=]P9w,\uYy,HgC' v `qNݙrM~ArMX(fm*P ő䁅1+,B[* ?f (de`xP)䐳V\UlF\vͱ5aZŕʁH.X䌀4%2`'(˦&B>B v `;F4/.TdbڤVښ0V,{ 8&JXqpE' ,G %e,~z X胡c;[myK x,Bø+/SǛ)L.&r,f3KtTJBE]00$.KvTMe"BV~Z-r9kG FdqEǷ\=LЖ5XP? !?/,~ 4Xh NO|V^*) ցJ*ucPޮ!X]:iggVa-; 8*,/ʐR5MP =IV/Q|c`^jR\ZҜ|fM.1X0==wN"O<S]0ar,h)+Yy[lsI WV`Cz"T({y`Q lm+  ~u 觳N@20 u7˵.峐v ebO" EO` Yt,[]w5-rY  >˲imۇI")d7EBQӀw,.  Il0ԡ<gE+Tl\u&.}1rgfg|!}څ&]gwE`Q4 +,$XxU# Dx83cY,m(9 v2`DYl! RyĆi3-*M32Ë ' ,9 ;$ihM+?E֟Xkg sKe8-cnETLYs ?lSۣ4X(B,{,9XJXPRӧw`Qq]M6Nr[NvuD_fϭD߸Omwb@Sv=Y`Fı!c $X4 J ,}~!t]""svk+|uY Tς8!VuIQ,%߯{Zr6J!:Zl7m ,\ȐEEIenZu* L'Y[aXtFǡn TNRƇ 'MY66W,@^(ԧ@l0~$qq[s(M0C0:4$vwQűCo.FHLĀ$KfŨE9XHvwf4{y7FtZnt_B(5&Xj,0l38ɒlۓ°U0H,RA(FeGMҽMԾ墮2dK+Sg?ěVxf~TbUD,BPo@{Sԃ"YɅhK_ap)2 TZ15|htRkD3A,XO4HM,.X\I 7+H,"6C[Kq0y9MQVM ;A7<hFዅ#̖.#w'RXh(Ɗ X5}{XD^jX%RHd4(C0/bbb1m_O,}'10ȏ>.+m^y:uսW,ꏥWQŢ(F^WzlGER,qXG.B,z{qtPblcqs"b*Z0Gb!XR$(Si՜B[-!jCuB0jbVV닆h m)Qrb1.p"U,>[ V-Fh| ,̉'c7K& ^(J]Ӯ^9?7-6#0;%B,J3ѯV'KBf*b}wWFbĂbj@+U,`"4^!w$"./JvPVɉ?ظ0 <ȶ;a RͲڅWn +2y7qJMFו eH,ہX6+kP  0Wb9 $-QѦ TS$lWDF#.I`{GKGvEvc, 5Pq9̞ocb,VFX$[o_roW HUV 0obbӜY8\) [\hsjeHٯ$5 .e2S1&9TbSV(LX\XZobO,P,\"hhI,6e ;0o~~O,^ѵ '_ 4!B 䲪 om\I+^UqdԢ>_Bo}'z{%h4 vGO, @,ಈ"`V+bhM9쿞y[5kdZC/Ae*&-uD^P=N,QbQLZb3hbqmo$bAb,Xf)vr5EZԆ7+_ +kuk*_pGU5u<UgsFb@,ǧ=oYkʼnB&Xb8y}~ݞ%DE}(Yҥ)U Lw&_2cM'J_YcG<rOx{XO/j6  =s+gJ,d`Ab,Xxff` Eю1re%&~vRI-aU5rrxHޞ6b%^< @,`B0iꝷc a9H̽Xb bO,Y^rzb  xX\Ab,XZr0szbobqUEX _,[_f.~bቅXȵP!$XRłĂ @,-X|2V,'kXʽwoXb!7X* M,+\bB7 @,8Xܺb5H,TY%  2_4[ &$$00'bAbAbsyH,>beT,ŚXxEW`z[ooED,b‰Xbp6YŚX,XXF,H,H,-$$   sb  ńbeł`6b1!X!bAbAbpn 8XX%Ǐ}ɓ_?>zt|*Xd$'{B.˗GG^GG/_>:~*읐Xd$'VG0BM~Mj$?-//ntbMbc7.QfEwqM({{kݕ-Ҹ(-GtX^Y..)bu5M-i]a94+VWbjiE.P*kyUYj)ŢnmEo_}z'ռ*ZbQQ,:v-uQQ,*E)l*Ţuz\bh4:s:<+Ţ&(ΊEE `+?੧Gŷ?.fEŮܹΟް3ŰxX`W,%_%0qSE/Y"'?E1,~ΝâjY\Ŵ?v2,~E.`1X,"YG^,b1X,,,YóbQQ,JJ`((b1X3 BP,  BP,  BP,  BP,  BP,  BP,  BP,  BP,  BP,  BP,  BP,  BP,  BP,  BP,  BP,  BP,  BP,  BP,  BP, }) IDAT BP,  BP,  BP,  BP,  BP,  BP,  BP,  BP,  BP,  BP,  BP,  BP,  BP,  BP,  BP,  BP,  BP,  BP,  BP,  BP,  BP, NJ>8,  <,  <,  <,  <,  <, uï> ^9BP,כ_zVaݫ7ˆ nss?(c^z9ܞ;E'~X(ŐKW{GZ•Zv{|ywtXaq\K.-=ƽyo~rgEwGA谘*bX xZѷ;r=*ūSR~fx"nj|/ڡ߿2,૭>_=S󭎧2˳(<|\tDc,2~| B;,X+/T KVar0gâvm갨~nX̬'KޛKvql< pU o7;, b차U^%0,}{yBeX^^=4,`gVן&?aYLy~ EϽcG~3tt-="gO>G?#xoV˓x=6,b1~Xwu68,͊g1qCs~12aro' x~xInqo?q{q(y+6[7gQICF?#sxq^:wfOi-Mn\0 (Ĉ7r]bBn*Qb U>䁗XT-*b"L36W"; ,f#秶U| -a{WJ> ;?uLn,DMz.:aۚZ}K!a NLϬ`Av>q`Xi*5T%~y\a1 '&RK=|s0=r`DF(Qpbpc} > ,6qR331!1g {08g'^wz6iÝM p0b~5Am.:cݏZxǟUစX,fLEDM):;*݆nan{ oB?/8i5 of/.R?ӏ%["XM&Zj\" è  Է歱n5aPl/xJ]6 ,(QGs3$} nna1yf;g+f'qXpSl{Jx#E;uC6SEK}(`"*b!uX̑nPXMfiYd: ",2p Qv`2 VONyU w */_MDNh!:@ٮe9X/zO' ,X(QO'a¸ E VWY例]( .SEXk'V,Ea̶wdXإ^X,Xx!Rzn)H(GTq|pLh$N!p³e`q}χ`pPws ׏c,ΰv<gVkm `q 2fփEnyQO-BMF$7{Y6ϸDn R; ,X(Qnh` f8FD [U-U`u{d|+h"5t.>L2X8Gyv8RZ /M[씴6 *b"x X}z,!a *}~WۏuT8XDXeX?l 3#R;g>fQ(4X@u҃E=B,>vj $LWv`qϬ/&U`B%wel`a]$e,nfpf6%oXk)YBeI' (3!$$oC/0SuIX>t \YQl}G[} `"*b!7e Zgjԭ+7;X # S5$2"`A kk9t~XM3$91Z&;Nꨎ0r@Y(SI"4цKVf5g;+ ,my 7>S`B% XPVS֎\)ap]F@/`#`VS$ L`U4NY|P`"*b!c!)x8I.<.X@$ZiHu`MLkh,9 ٚq<",)2ELXuaKaq1z#8v?9gPxRtֺ+shmf\c7 ʧ:/3/>w{;N*ο6=r?=ݿJ(c(Fwir3 kNbM`# T2,c"> h&MBhcxRp\ĥ9+}8`"*b!kd6`Ĺe_`a]Eq|Ib9X*0Dza*2,b$%Ƶzv3H#|w?X,a%=c>F6'gd£ o6W-t Z+DF{%#=nKnnyw6Ww]5ګ=T{?w-A{$EmԉP߿,ނ<@֘;33ן썴I__>%J, ,72 hcm 1+-Bi%Xdti hg[WQC P X%5Ri0.XD˩, ںUZNۃLhs'C-TJ `q_X leZ8khLZڷPVTJ̿ra,k7脙(sƮ>Z.6s|)mel5žsoC$wbǷخ,lDcyCW??ݑF~8@:J/fdZy/3W/,̓+Q^{-Q5E5Bohub#Rq R=,"-( T)xZ%,TBE,$`Msw XD0؂$A3LȕÃUL6`QE*4MLȲKFm&bkDYMuP7O 65nuGx?.`Wqg.40vzo,pE:qVW>|@ >E)ʞWoE4 "9 |C;"[-E)U ~,賄Rű_~p%J`qMbcz1Z&AyҫM䌖`1iX:PޯPBE,TB(ȿP`1ԕUX/v# rJieF3`WҎҌ YhE /[]MKUxYbΡX2'9[EH sfF{]8%[=8Fc}rƱ A  }N 3Pi6Z&XbY5q{,`L`rI(2g-܇d2W5& XsiiGr̡)Bhv[Ѕv% KB`@PEz/z^3qj_%my~~NXc@!^ hm6M'@zFF4`EGy2t .?X ;<##k}ZhᏎ-ݍ/=y} ebXdMV|ͭˤ&wR-DKV< M)>*!QTTVZ@-ᤕ[,SVn|Psj M6hK옐 ߛN{<;.̤ #X'>ذTՉCt+`#,Fz.FҺvF%~7yiUuEǮS/wN;,Ouƹ0gf?S5آ-|.$`<`A]yX15>tlbvb*X52ԓ yv}clzj`a?s2B߭/-^ x;[N%!;,Θyo'+m+oI3jI$7m[rqإ²N6}Ff.}}_Lؤw LGÁ{jݺ l ZBi1#6턋E/X)ؾ#mTsXWnjWbw׿q{ciU s=:ΑnCKgw3Je(MП,ీ",xZW |hi{x-JU0K??ikL?.q(X$DxUz=|[*^+N;NJ f9f}ʟl\O`]d8n߁ RC1ɂ8KH\M6 x5)+jNxQ7)JIwD?qn ,vGp,I¸xTZ}(UWN8bU:E`R.F(&nXcV zpu'J-5'GN;ix,E>+T< 8/)3 ##O<7/BЋka5g(Yv@] XCNy#3TRm^?XuXnmOɵ]X$OܾNI9D@~;"-=޳M[Zwe5D8^ 1_U>qn ,Wl)%n/o%w!~yߪ{RE-" Xf PGT=T2NsU6ֵib#Og1_mm?}"(W^M1.&xf`ņ!K퉺"T3Ez^-kFD ItrF,`Qq`@†!=5Hv+^'jXu;̳{yqˍo`M x,]W1D8Y,5rYu^],[m]7Xo) IBconHK!NpQ;xRU:,'AAXc,|23n4;(Ϗ嵦XFP9!yPo. >؇h/Du#^S%Y#NJjZyUR;1R58Aˁ<X@ QNι/]W<['X, vo ~-`j,< '/ UzM, )jjVɹs!_,ీXH*.~ {mMN!}2ޘ|-`܂\o_Se%ĉ&xfC,OR5j0^8X*F<[BAAU<X@0QY2}7k˱H5E! <˝ ZR XD/,V| *T`AUXc,d&݆Z-_[֛|f ;_F ,trTn6Sa~Q m/B5, j x, FnчC6!Т"ƌZQm@   "<X@ #`Vm/,iYGLL4]UXPۤܵ ui,(i@H'Kɇ\b|ÜWvIksWѼ|8E4w7ʚ)'.  (Xcpnvs^?Eؓ\5iJQjjmK,Dll`a$XR"tVHàwrg53뒗2RHio![Xt  : `b]Ɣ/c^odm)Ŏj{9%j 7]/ c^IUNŞFS^*,v[J#g1k6 3^eat`i<B?Uc+s2, h`<錂_?x,̼#;+FCJ!Y];= x KAJz8ztN~.I(l-CMB".Lw "jmXW 5/ `rˬb(l2{0c֨W  ӈ`qݦCE}噯He)6Ѳmd+S fЙauo9YQ{e~l;&]mMҦդoިoY]ݞ5>?' = x-fcټ<9NC $H,qduXx,f X @b ((u?Rc xZL<ۋ͏.X @b ASchMwx(bXm$8Zv\Ɔi z )YNHӳ 1V_QBD<en;aIҒV\g+c17;}.^*%&I{2*"Ue9!qu,q!H+%֦Xh.9h Al`1vH~-x&NI)p(=F"A톮 ˫RGD`ڶTвbE=bqƿ_M ʻANkg;ɻX#߿Xh*ωM74w?T}HT`B[/n]Y琢XrP# Ҕ]zvnHI,DmwDse X#:GB,l sU<: K[B(h^ > bhw2RDkoK *>oC0:KBt5-1P) z M,~xiGgQ*hQ@b,d+~!Q.XdDsgWh?WJI b~`~mTn1qo^b}JJY}w.nkKb,oZoqX| cX*hQ@b,3J!ˬu&'X(%I?T,a`LfޫqVZbxXo%/b6S &ޢTТbY,L},VJIFZ*bӟHL.K1O-ubX,}S,?}>Kp K-*H,X!iJ2G ƅXh*n[$VlS wmEgbaz?MYSH,X+2[@T 'S>a ͤǫ@V;#!.H7xv`Py Eb#63n>K\A,"iA6N*z?xbK Vb&̰_~?I3:y^(EiTtDbէsz)S ԻDb(rbJ̔:J  $u}z'Z0v\B4'W†6CB3?x7Əw}.b]*޽=5aW$PB0$1C:0&A E@ رXE*/KSCsCcb$)|~t'j}#˟`gdu=E{N Gt뗷W$ TsEY ͨaݬP &i9   ?BH*R0l,ؤH* XuO$S"z8-Xh[٬$`aԴ D>fN~VɤPR/܌,   _BUQiA[?:Xhk*~$JQ},U&7դZ} ڗmc%`j,'` o#֣,   "7Ʈ"X#+xWobv^{ic܋bÞ~ 344 X.}&< wpI|Z}bv 44 X.T5pƂ e1b\8`AcAc҈]/},h,h,@,h,h,@,h,h,@,h,h,@,h,h,@,h,h,@,h,h,@,h,h,@,h,h,@,h,h,@,h,h,@,h,h,@,h,h,@,h,h,@,h,h,@,h,h,@,h,h,@,h,h,@,h,h,@,h,h,@,h,h,@,h,h,@,h,h,@,h,h,@,h,h,@,h,h,@,h,h,@,h,h, _EټT wH,].$XXX47U)$7`.`AKm+? |h 44b{i+',K.zMq3,&E~9`z,xrh5XXX4֭wov*"k͞pS;ϼNyp`qkI"ȡ~`AcAcٖu"#E .c:ư8T6˵܀'vcr-,@p̸M 6ON͂CƂ+%XL[w>Mɽ>)}5ꑫn-~bT<0l#]L2䃮'%sAuEKu[˙k7ֳ5Y(~\뱷4,g*XL]K `Qi rb0ٌ뚾u='q]i Cl.뤌Sl4g/Nr#v,h,h,hK%a[Fox3zE/{`gѴ{vU1{c\yY1BCg:MB\A,6#%IaƵXNTl @nZ~XJ{CtK/})F`1k.F³"wkMߙss'+u[M$icYִ%nxI>s`>bG3ysaz{sOɊį' -Ƃȯf[Bp/KCM`aP{dtJƜݬ۟h5Ee e' `zXs"=gqyq&amR-n22e-{sh. 44K"G[!@$eW(Ǩsc)#xo)0 2fsO"(ِqL 3R} ,NgB`1!/{żmT~͚"j 2X=4@   ޴ r,?XaxX5G"v0߲Hau2l,j!W 4XԿ_ Xytm,#"!N`qӾ}hyh44C W dn3~UanwU&jmNpȀ>,d3W,`"Xt8 "W/DdXc Y`,h,h,¹ŸN<`;G O\M ]4bp ?`A,:qI8mL}Q}EѾJmhh>XXX}Jbc 4Xo-aSgӊEU_X@yĭ$`֠9QҖXKbQzj"$$v'd({8O2#Fdغ̅Y3t1/UxOD2g3V/`sXW3+̃Ϻlhˑ&@,RbQ%+( m!PYkm_AuSh pwDO^w=3"3o.(}/j~1#<({tHd{e5/'dbqq2bHS'x3}MuH[$լg\ՇeBX ],jqb1.jb?,K^{tG$?WĺSŢE,H,H,XҧPؼ~u'AТn%I u<({sz ; zEEbqzȰ^4i&( A M bƢ7;|wa X%wاAXPvAX@E .p2; ݛlZ_m = .|+(m\z+njGQ+MmZgXW(- >.y>bX ΋kq;X d-{'cY΢yo5}ubE(35  n/oc nXo c,%Գ?/`ީ]%K)\ͭiq 8+…۠-*35&  :r-+}D'XS,$$#0~IXbL 4XXXԏc _6 `jԠłĂĢK;bԠłĂĢt<L)JA łĂ bAbAbk XXXbZ,H,H,p-$$X   @,\ łĂ bAbAbk XXXbZ,H,H,p-$$X   @,\ łĂ bAbAbk XXXbZ,H,H,p-$$X   @,ayV/gB,H,H,ZK/$hFݰ櫆:͏9yDb8WbAbAbq2˂?-]]EJ,yb0^Яj_D=.)DLkrV=~u;;鏭 k}*|p: UuKT=izE\}Y9i]TS+0gURf /WDϦ*ݐb0؏Y A[kn}b1饢OM,6X6X uCjX/ы`UENhO#Aԗ֣F:F4bJáu-zk;GD 8^HpbB:}Zbbniz0Z;-$`~wScZvjicؿ z6GNu|:X|ٝd>bAbAb@b)?yh,y{Jb]yrFϪ-g](pnĂĂhbQ<-)#ĢX8. )Eo*Q~Im>7n7ԅK.o8≟/0Pf ]|!7pDzBɏl[ܟ<[}Eϻ6 iaӯ[e'[n OA +pȷb*7PCN@^mb㨛R+"~}Elt_-{U{"UTΝw*ø|?&;/}N*oVQ䡨]KE5]L0+{*>UT&&C%9,M3WԮa<"^=/#]۫CgU42e.Wpba{y,|h}O4GEb#Qxp<] Ĩ]Jtoz!؅IH& lB ZKH!@iUQ@Q6R$/<˲b;B CKf<{e= 4R&].zG IDATbf Jʏ钙4*U^f3"AAa6,vb OY؞%:OgbY |cf2HwA,mD X2(̮ӟb0OaLb95>,/84Z;+d0b]6կoXn iR:yi-&Tjg5L<mMD*P,^Dj fD |?*g]_=eh5u eW<QMf}D$<*pχ]TX\ N"^~!\S񂝘3`S*j.ۥo*qR69a"6+luPӏh_*IURv ^ECa"LG-z^ ҷiX A,ԪGG;1i< ,GHmؽfn:٣\ C=JZ(]"5'e]]N.,Cx5(r]Dm;E$vf6#mZS3"A 2GgqhcipAP<xN =,z0{A(qt 4!4{c%-0Hd 2X<"fOJO Dڠ"TޛMog2LՁ YRG,Bɐ3LXO,D$jcBNWgXb1I, \H@bǕ j"A(wot_bE ?"`#zb&j5Θ ]S շ=w="4wN^.12~ o 1h.ay+ 4 F=Q 1[i13D aJM.4Fӷu:`ᳮ=ba0wE#^Z;]?k 慼2{%  \b?ѡHmt+$; $bbC,{,+"2_pX4\j:_|Ac ")cMLO?¾[ LER&RiԽ)/J[>Ɂ'eI׏4{TkXF6^ʄ[MG-Z۴XNwZ~RܘĂǽ(X[^lUK_Bի}Or 1( 2vь;9T !1qbx3:DL0"XlҸXX+h _S"A /<<0q)>ɶ5XtL;lXz=HDW.%(Rwy!)Ʈr C'J% [-ϔ^TjfI\lW\ /n4)Iйk|ïqM,vU  w RX]*N-1sl+bǟX$pK217cĢpTL,}E$@ >"&qИGb{=%e=,谔EFCDِ7)OĊ)"/ ɝQXlϥBh^%61{FX}6h$i-[V}@_SIIrI:\@FU*C +s0k@*tz)1>u8VlG(T>ȧ=.X?jPyjO|蔋a ֢bOۻEgjREu9Qſl1,V5D,TD,E$^FzrbY(tQO,$:H$Ggx0bq .Od0Sv4H}F*PJmc*Ả+۴b'$j2"MbGαWJ4 ^bs\H$`ԡG:ޖE@5oXsiJciG.=^1GB5AQh5R8zĤ\*Y9䣜NLwh*y]L.zHI`n`E`n>X+L/a'XC'*n&'JH7◃E$d?ky=*1Xkѿ:0BJafX)BR0Nt l$?CȜ#^̌2Zʏ,/-R EZ>:;(t-X_'fF`!'}Z{)6$s` %j)U1ET:>O Gr:BnTrC۫Ć2BV'r`q (Xb,׺, /C i{|@,9 =+x{20;E\eۀE">X+\>C]$E#z+Z b{ U#1oChX[$PEaq\`dbz4i-h]yp̒,E- )0 0vi(AK9L1Abm^Z` +f2IXL DE¸|ټXȅ ,E#brߦiXD zh"zBo-ˆ,VqwkE?QԼ r3/w }aa\(ʵ<3|', 9}mBz`!׫, 1w'o)!S밙lsm2}x9gmV, >X+ zBO1(,9` 5X]j>>XrpN=v=Uj:yIfAQ .u[Q @ PwDEݴ@6P<р3/]\-e~`4!l7}c. X@X S+0:.&]2q`!'(N6WEt]k? ,( kCS\HKptKv/sE?QԼ r3^%()_\Kly rQZmBW7XxbNX)dG  /S,B- stoՃr _BTʥA<$%jOlx2`qJ<`?y_K9">"< P$86CW퓔zhه+9cѥ@StHjAAi7VVD gRxc-X,AA7R%o0 |;[|ʊE $l,^ v8[i (=\(B_D"X|U馡]9 »좆 OĊ!*bKσT'd|D Ox+PgAqc1IF80pn 0Cn#ȧvjԁ? #y|`^,r6W^>d=*?9 AF3ZxO%õvvKj`ycK9ՏA|pAMU:Dȝ=X̰봐靲'hjDA}&8X|vŷ$H9XĀI3EB`Q|Y!mz@Ÿi,Ϯ$0`:K-XxhBYK 1s}N&wMr- e?QԼ rRd^^ [/2 o:)X&mɟЯIk^طz^K zybL^,*S#exe##$$?wXnZ]'`1ŎPtٿy_W,|* U1v  8fKb` F*Dt:Q8ȘPy囆,N2͹@_ȟqH$u&kް VńOɆ?dcHdLn!Vl(>ǫx}̿J" A-U~`1 2gѡKzo  ,p ?b>°hwr$`QWQy%T*|IT!M ӼUgj"gF[4+xyJ7;.O.B{`aw4UdZL (7oKJyc{I+|t۷lv+iuGYPa++{vp-XH4~l?c2#w@7:\A-B 6n ?|eS6 Da*B_18XOqwQQ0͜bU}5Ag0K):C]J) SS:ǖxbX#{NZǂѳCQ0O= V'IqXz}vK!%Zt5gٿ{ 1V?+t:"o6M-Xh{Ƹ( \0={HzXp:\bXB0g> RB\~+ӂ47=w/`f.H_D~F+ 9Y.G_kQWD,ϰ`ZC= P^:i,@|M>%vxiFhѫz^3-%i~X{Ρ#Ծ*]~$yXȍJμ1 0,?f3R ,n05+.`-MO@@'S X_KQiC3w_aq,Ŀ lc ޙ(=u^,Ϊ ~ś)Tv$]߂F2MG;6 Č<*(F5*EJ[٭բXjm֎Nv~LL<=?M @A}E;wB+a<[rۆ|8p,􌽫3}Öw+]jRb`ZD1Rز/7kC9<Ɵ_n J SyiXe>Tu~BT*VlX &'=G爗=>t1J\r봴`wA,e$CI+f ݓ7MDWQ#H~cuHޙw]@Sj]>a+U$.U>|.xcJJDd(wDKٚ{_TjĚ##o",xƁa=IG}zaa(Zu'#5+YXM^Ua9yB_-KjWe]{bN9_nqu\iFF % :AXܡd"rES*\6Uꁄ_Jߎޕ Sn?N|E #viy^X0ݘxې;X Ʒ'7?ߋ1gHz@<‚r~b)/g9J-#OvcoJ& $֘2~`zfJea$f̌{ (Om/YQ4o^[2cڸUu>=S(a冬' GRKi*6{d̗'K_Sy7`x(m- #"o&,pƁa=^G# 2ozY01IXUP|aEt*57Kfm) aq6Km1o EFw*g"&A#'f/E 8p,hⓠ\b'J_9 ,ڱS9%@c@X&1-OK=Fc@Xer",L a LkTv`*uhwDbvPEXc ,\ 8p,kap-,X 8c@Xp,X  aZXc ,\ 8p,kap-,X 8c@Xp,X  aZXc ,\ 8p,]\ IDATkah9^D8ÛnD Ã34,,XMg|(qvI.Rs?˔m6ξ_ã4cM_y4gi5w8p,f"%߄En+sf4;b>FQ%/ 5{Yr!,56ԏtf]u',ـg{ÐQ?Wj_MYiZ!,p&,XܴzɕxiJ M hrDfbv(|.,Y0I&WZ!ZjWaa q6Vr{m~3ӡua7mD!,p&,XS#KDj٠͌ L U|~7#ޣ{@m&, xيn]⼮}7ëmAWS߰uVs ,p&,X%a1ZO?h7 ZpJՄťhHvJ',ِ2]WiB/Rp xwρc'.N TUM"I49] ߑ85UCX0/xO#,٘6 .,\!5tkt=F [/d޻|݊jjJX,j-/XZf# aFTꏁ!Z{Q‚a TYf=^ *{ng]{sEث@jsk{M~vZ/,~8WwOB^!V;=X:\dN*7Kdr][{DdsgGm*czSi~ j^ᄑ+G&Fn"Jצ gl_DQXfWs\|K?'{W8UZ̄?,2M5GqY˺-,ݺ*P%,.Տo:aQื:a.IqIEN3Jn9!>Uˇ I"ڴ-08ظ;-/|w2F/48 ukZgrM]Bk@2+ٙ[#֎ōK @Kyp` @\XC⹅AXK9ҷEA,":ʔ8g!~g)GI*}5X _,8' hi8ɱ3s eO1w.>PZq6cCEDk~*Їi f aEmN u/_4N, ?9e-\¶zyBH%n_o b)WzDU巳(-x'ORS|!Pxbax~ywp"ѨLC9$x)#69:nٱ`5Euڻ1ޏLw;6~} Jb3ٚ UWA'2zv`?exlߺ:nf F TO= aNn3~sjPT {M r==~Xv,Z;FAh|Γ0@"ME˔jXƈ?ݰIt@7}L_ ~(EZstG+þt@,$K"8nZqw"NAnbq(>b1 y1.0@担Tp)!7`#Fqv*VKdvKEM,byyI'X`Ԧƞ=71~u@ ,}TfĢH*&K؜ YxPp (r7ejԳG^;l c"\B?k/IX;U^$^9{ rUmq9쁤Ng䌓t2 H,Bvk/bl b֊ևngCS+i"mՓоm~=]tV*9Y;>W桱axXԥN>+n2t୴X_\c7hC#a  ^o9(g$]9}>]Bba~9aL-bڱhX,O} qjS\Zzy 5zZI,RE;#i;L}P%_)x$t#x<3~b8bUXd7t ]y Zbhѣ4|$8[%zR#qZJ,kUKU K?J.g8H ۚ +YA2H:bYe3~sr9*bKI?Ģ֙7c) - OYShͲ!*U}b}{̲ڼ,$eļnĒyGk _%3g "cx"inշViXv,~^StZ̓}J0;gl?3cVj,` C;<6gKqR3&ٷ$#aWU4Ӝ@?|3 Y_%LSŰZt | %YƟf#0F/Isb1Gx4/I #J,VA,T@ .bHMdJA/3 #y?F4R{܀ eWH`Ō{t 6NX-T#e"Xc0yN̓c2CLqnWVG,a3~B̼mloh״ D,JkH,eґQuSۡ*я"h;grv:ZĹ0lAu'|6@)#K:Q!&sOa^Լ9vl: NՇgͣUZ;֎E2&dT犧GtZ/v< .v IDUFz{boc fwkvll*uv]'? _Lk?S;ĝii9[[Jk-("9*r83$l,nǟW*HLQ+^X߫T`U3rݞ`qi |{H`!VVERMX$fbےPgඦ3Dx![om QROe`ZwV e-yDXA ,:LuӿxWQ6lRgwaw_qƈ;XMZNao'=l4/W}U3ANUe)hJeU×uWKw`lmpoLMfde\Mrhx^-:ʡX_?uFtW1}}ɝD"6>Q= +?l#zUj.3(3]X'' 3&w PrI鰂X,ō*uLVrKkt3yIn``{tITjgk[ECߥi~)^íi+=W2Q9E,U$1ϓ6!-#xElq'z,P%{7H4m`A98CKB=ԙ| %*41 N_ '>4u98Q \k;!XuEpaC*%`dqEeUt0&zb +YI>ёE`AN'h0^ݭy *?/J>=Q2B?Ԋ")O q5Zgd`Av$X$VQ f!,A (oPp]"c,X-2f Cfm|4:KN 43A-("X܀ YQtS|bXd3J S1ۏ+`k /P6/EE,-#GF `16ɜ6,7b0Z`Wk;Ynqh+[f8'tj/O6>xM=/2 W`AC#Xr*k?SoDϽˣzp0NQC2wtdAu`!wGʙx/CH/<Çip4\UKvzŊt0Ξ  rZؠWbh0f>0R&F ?f@qT +b:-qоIN7q)F,N Ehns&&MyH!TP:Au,30HzL؟;a `990b>[cX,EP`Q,ߩsr EFjT83~4EԥPNl<@U#XhNm2 \)xX@6BqvXlu VQ1EGM]2l̂7 P"Xr$ {YҜb6 ,FP.bh+TKpkí`q,H (6l`<(cx/I )X `7 e]KS|h NT/*"B>}5f9s"um/ziWeŶ,&7 bI.{;djwHqk Z2E.\Ԥ7%o dԚT}ti0=N/$;`^qoUN_XE]X^&_ + }Q52ŽXG \(X_ƕ$1n.,(EeaQ\_ ,bJ&^$!XMe9X8-ί*V`,7$4?t1 VvL6B/Xax_ aX[ ,KܞnܯX(`AA2ؗ>4reM %՗UgEw%cEx A*X0EY ┐ۄdul{xz8BZo{eVy'Xĕ Xrwt0 U X,ݥ"4^Byw$M=)`SW?ÑJ.Zk-M5V,DLT`iXhbc<ݜ֫j`[;3=ib, ;~bNп+IN !,:ةt (!R.RpX,R> ߧP-S.%;;%XSlekÁ2aԨ:3Oeict+yH7M'`AHh8EsYTB%DTh<#\_,C=.-fPqn盂Ŷ#6h!A3&ŏQsڷ,t}U"=%uuӡ`T͈m[% ӒCE* k=w ,/P~3"$;zDQWt!u!fá9ZLvHZtKz.[m;^8\0sKX#\zE,뜉;8xxXl+n_ MlT9eNkKQSU ,E_?nWن,xbO=Ce\Ir&D  2i(3ޒ~M[X`i8UB 畚E?z,WqZ\Y"Xܰ)I` %Zp)Xs$Z8?HV<`':z=b4Bc6*Ro -,<;2Z,Fq! kz &`B} :.`:/F =b/+# KfYw*li %Dcmփ2Ĺ\e/{@,gɥ pu`WE P"CEOծlc'oGq7,i!:ƩR: ~~3X l$!ޡXW*SU K骩 \P)_4\B_ySD&r@D7XdQbwnMi,]SDQ5Ȉ& $D)IYXPٟD+Zr|3Vy+nzWLJ_,`a6nR XDD]s-Կ&Ehv6nCΕZ'o2s_tד$;(⥂i]q|SIa[Pr,RuDR`# ]|nOSzLk!D,g} l|@G< ʼn|/Iz!2B`m I,ت6\1 IDATlvt2$ rP}c&=L`uzW-Xn8џ#{LUY l4yv!DV0wC?xF9R XLYL6X mc#wrM5:(u\ZS9;I8X2sKDv67X] 㚚Y՜dl/TIK;,,'h+B[^>M)^FԲ<,BX b;CFi#+1HP\kgLNN`(_EMS55T&bQsd`!M'`oTecqi!Y`zı[YȢJ/ްEGB4z2çZ)u >ݳqEҐ ]SOc.=ڊn5Hk+:|K]Vku63~W8Oϫtu-w ?(AL[V¢_۸V?XصwItv]inAu/j o]k.U? ,$(gV_/`gH& st./s1_jM7;ߏFCfH}_{#_墆:(Zŷ|`a˸Vz#i"(XMjS>W.=9aY@pLEeL~{s:0O1aeEZ<$N>=9 /  D,4Q3'Rbe6xH@`L $C^H0'go%KUoԀKo Ay,D9TIBrH-5-.c{Lmf=",X"[`fiG )f>Oc ,$_ o,>,a,`!_\Xo nROj[v=9ry91"+'%d s镹d}x݋ ^dU><>tiXHl , ,tk}$K̐}6*h1X39ь vcOs=R&w}N$z7:Msquw2ٶ3XHK Gc+XHRh/& KiQ~9Kmo5؆?#գэԿƋ;:(."y3Jrio_z;6 .o*X=; X$`LMgA[$zՏK)Y~$I}/ W@Su6Li$XH+%GU\e9 `!G@%j + #l:wkftL2(BnD.͆E:X@FnKvqDR,XZ iX1>>NFX2[,YڪIfn[b̾UNz>5HI()Z7"X.R:&HG Z2~QU7m|,t `tittmY⡗Ya:IՃ> 2\ |4'@;#@_}Iх Yr\_2Bk&F}m?"Ђ gء_X b˵UR:z$nXTC .ʄd0{9WIs4u^RsH}1],@ȳc;-=oHF `XMDjRh'%nvѤƓdbdeE6 D,~jjJncRǨo##_Q s_ԆvU?MENSy]F]@7X b?ybvW|4D, ۔ﯕᅕTt#`"  i@ `AA4X b  j,@X@A5 X b,   D,AAM"X@   D, AAP`"  i@ `AA4X b  j,@X@gܿƶ8'&Wkq1VL # ޻3dE[)?mB< &>9[d7)D"H]U,bA" H$D5XPł*$ D"H]U,bA" H$D5XPł*$ D"H]U,bA" H$D5XPł*$ Pt` 8&F/DH$*T XdgkkZmӜ4'~ } fea' PΑk9boN;yȎwZE>D"U,H,]އ{_o^8f`6LV7^Χgr.Y0^}',7X+H$ґ XPłD`q,EŲ(@Ãznw X\.yOؒ(&X+H$ґ XPłD`q``xKs0c;!k`EQP! $6K=Ϸ9]PPC|JFF/rkY&MED"U,H,Ǚ\=cqG,x^r2c gʄ\}#`!suy|D:2`A X,X䮝yR1կGp` $5XPł*$ s[۱+*LMw-cE,01,EgJs cpž,~?Hԕt3bzr"'{VMϧrziZӍ-̼ju3I9dX\Pi B&X?+0Omds z|,NhˇSų,H{dLwjkMֳE|=mUD:`A X,PN,Jo48?kfN> \଩FouyxNz I:%4V}R={$yqYiGlkMSV׆qW$YƉF c5U4hջnI[xkDmu\.u߸s$%#+JLC1e^Q?&'"2%>9AͯGZnWm*NALS^F ۜ d$@pZ+(/ԇ )= |l%&h0>D+ڦ1XMN1KR$L$um0Kfv&$Uţn+_ǩ,JLN+5K}7SYPܵg@rإ&[^z/a3\x쯪4!RXfGj۩GPaUQf%5~ZT\Q0WyaI1=s9E LXx"LCL4E,|+A!>cTC\4<tL*T X[񞮩t(o3_9gҖ<ܲ_ݔVkQ(]kxoNAz*XݢP^O5lBU-x{Qۧţm ,L\I8_ uH(ږFۭO%˒.ubFc{0]g +hdlL4mXj.blÒ=Mcc`NNu ~ʡlJj$XMykO ң47$L_]Y"So\'-2З̯&". tT^(*qŨMxW,"ˋybyo;=]xYOR/z̦e<yq;_q $‹h߰d7, Ṛ=e\XH X̰&/I> N& }94:ϠE"c } lАj=wN׫^/nl,2Zފ: )ejœWG0,WB:ssߟXJt 6YÅM uDOnzN2ξ"2 gj2a$ioۆ,nsnƏӭbm aXB^Q Y&QrXMJKĤ OE_s[<~gٌbAéSSs[ǽ}WUѶ`qY Z,-8>vQ ZAV*bXUUzЋ :-b?^n~)9O™:pm #g.z3 i97>5i`!caStX@se ‚fl.2[xb{م!)W4q*Db<R=FTTXauOcaْF_}VxB>Z el5-ǐ99Ǡ cfm&|EYvuuk s^em,ؓ [/(aw K> :fԒXXE뎄l`!x,s*y,Zy;grX8uNԀZf8Bu-bGbM ,:߃wg] ;ݓd XPhup=_^cLzp5Xt7O ,۠'hA4/ԫ82XtiZ!_ǩb˛)|?y'1ۀEq 2X 螚TFJh{{dWv;XGՄBʓI6=} ށFQID"^a59*蜣D@ jo ][Gg˻C06HǺ jj/قZ29#٣]mJ A6]xhY]iH }H&I?3X`.T6bnKս|5X XehsDJI R#ZJ:0t7}`Tr^rX/,Z8N⛆JGxI\Ǐ#)CT(Aw[&`l#Mx.XT:r _a||-7X(18, cz,r6KfKs eX+  *($0u+Xф'MK]u @CdU#,*(Q kji> m t")؟s穩XuoslըokK`p_Tkp?~]z2[Oi]y?1pشA $ 3P54qPlWR%`1<)^&ϥ=s lbrdSpSSm!wZaSjyz.Xhjk;`, ,\,jh.WۀEC c|uU9d2\iߩU}aOO !.  ؃,Hpx_.?HBXrHH.S&V] !g{sCvWZhE*\=Ey.˳?dbzMXxA!E1-p6HǦ 2XRoW;EU r<H,ه5]INjPc0VjGB»BUP`!ٔ--.T`[t;g@Rs "B%XT U64Wك4`Qe%FhwMX`1ITEc+]~P 6d3秞Pk$QE}Y[(8AMH < az7k}NmU^ӾL>@*!2BWg5>D% dio5Em`k=Bl bd\,ؖ_gHpuz۫2Xhܓ@뗦1wFmoV`1˖+D?G#{N#x)KgC aIH 0Az86m]tG `1#)X]\0\Zl a0P> 6%[w[Ł8(`9,v0X.X^cP =[0 bn7۱4 µIȼc@'Y֖..Kţc]_=$(h."zv> ox'ͩNA޹FCE{F@:Xb\ m˓5 cQ`qHx'^%]CzYЛ67z ?F^e4p\II<$KQ0KVt'-2Ip#ZD'jre Q?ҟ _X VV5.؃,<苣ǻX ֑Xtۣb`]2X`ݾ-XYSgcvcĦX"'Xю6-|ڮ =cy%AI3X,[Xㅨ`W9E;KC xn,wXYX0W#|ȁpPaSj=w5sC ̂@ mBWuHз@E1َ@GuQ~ktz?0[1e7)Bj|:@ %A4QSڍh#vOA=暃p= d 𤙈{#X\Z69^C([|+Ek#(z<>]X Ew=oA4nc0nSfac@5Dxʶ z,\Eʼnӈ+{T`1;&-51 T&D KC@Q|T,\@ XH 0şqLOAU?dfM~t,g4Eb)dd)p~b#6QChf*3Wmln XlMO3, ϝƄ#I|p, 39`:HJ֗옝mgDhW.o38X(P6V `CfIsP I$Ĝ4 Rp<yo=A}[?j ENOozdD1cB $nE+2)b? zmW~\+2fnWPYg"Ik46'o:! G,t, =XLoŸXTBF`F,̈En)X,bi X~X(|UFy?.Xte $>n5Xؽ|T~X(J2WYOd^2\B Ӗ+__QK*v$Ӹ Jt&<M#=a/TO1jlG5gとUq1G{t@<u,h!viy񏕰ԅ~k;61Q;u_ETwI 6쇙NnjONvNR9/%=cpUSð2*B̉sO `[GGf5O .kght5cG`apx&7D1œg1Ÿ-Xd8X);\bnd Mu$hƒhxJQW# Ei#ŬPmXe ,b)" [:TTDrK[#Bz1MK.%g<÷P-z"mSly^30LnvmVO{H~Y\baL̛%\cȺŮ~X8!mX]zP 8X;b4a4IBP[JQ]᫳a}K{>rX,ct]+}|Ys=!iIuzS݅}0iVKL=9bQ2if}bAbAbqlh#y]봯P*Enk+O,iekK, w2^khɪxU]=Ţ%)5)3G,nIp]7x{oG,tW|E P /$yɪʿxyu pO 'ooV}~Tg、խ$TaXW_(~c:X| :kȵvHفz|p]d]|Slo.ŊzS0+H~dΊ8YﴘR n=9vsO.`w=+= >6kVz&#u͟v+2bAbAbQC=μdi2ƻX@8H53'$$Ջ?q<tr#=T|Թ\%9= ^AE$%mѽC)DN@,2t}|8+ޗ<]LE5)ykBݱƛX@%RNN6{Vs8bAbAbQO)9%/nA,LFp&łĂ bAbAbg XXXbY,H,H,,$$Xx   @,< łĂ bAbAbg XXXbY,H,H,,$$Xx   @,< łĂ bAbAbg XXXbY,H,H,,$$Xx   @,< łĂ bAbAbg XXXJmXVZP΀XXX鴈Gd,|2#pi n/-s|_,H,H,g**rƈlHsؖ}^ƈ ~B)6puzHE٬%6ٞU#)uD"2}(ES&1~ (+i v?]HH# P,ŢL%$$29g+oohwmغ8չwQC,\E<)7|sEXWtuS~XJG{4ĂĂĢ\nHK|a7?noHT1gDrޤ}9O݋XxzfE.F&o+Wt= 4wK t}D&nד df ;bsJc&1u^8/K3^~J%+G.K#TwFp:^t}`NiYGE%7b/j#Vi@EE?OeTby=I1CfuysOj.Ak ҧ1R=oսC)Fx,k?li״ܝG,[b7*bw ְ*NUd/DzOiQM{'sV'v_3oٻucasؾ/'qkq=Ӏ*  2{HK,j,(ыzB Ӵ7ٰ$-ՉDS s-ŵ kYYh茤ۧ  c;&6]V TB~ s@DԲX<~Xx)ׇdg*Uy !I~twbFrD^>N/n͋!j5Ce=Y_oHHȴ^1Ҁ  :y!rb*ahP9jXMF?"#|=IJɤy\vݒ e17,Ö[\gӏk9!$bajFY,Eļ̀^XUxXT5)ϱ8Q]wN/K/ߖ u_,{r)^wfڑ4XXX;zYXޱ{/$cJ |IoXdC nWJEנ۝uL B, -dZI,Z&&e{Ys-1~XlJ=dv}i@ÉEb1sx@( ⮈?&W *!>QH, UXlwYلc,/bM"jݓwf.o.앪hW07.6:nܺ[: eyk&n/,쟪l)Ct Ԍ4ĂĂĢNBMy ,}I?OդI"&~Y+k"Fme2Gňm3S+q4X;>bndrVE+_UtBUXT4:"QLh;RiɊ/^)mGE.ՈEHN,H,H,#ڟ6 Abi?YSRZA,yŢeERg ⥆yybyWMKpB,TEE7@m byG37+)"7\hR-# h8 s^/~}X(u023$x)$4KNjÔ _/7[*\U IDATyZ,Ԃ`vGvU5)+=(W aiR)'(SYӤo'bq凞i@ÉEXfęw ͥnV Sݴ&qXd{b1Xq C,l>qۉsן~aiR)'+׾F$7@H,U?R,B# h8 Y~ӭ1N,zibk~9+!I/صͳF hf(=N,6D-A?[U $5M*Ţ{h DC_mSrwXhas1+2jĢj '$$r1/n&VbZ2fMehWsUE13̓[8^,>s>פ]%no=lbM.f)gsg%/CUt-ԛlM,3gGv󝞿m%Cen*i@ÉEj|+Т+"3]{wI*7 is8]G¼vabSMxɿ> -J)bM-jzmw玙H^imvx87vޮiR=uҢ&Q%>-\׏;Y+}ɎSCN E sF]d4XXX mң%E1xPފ}=3vEܐSfE}doܥ I,H,H,vN 6 XXXbIw[-efbAbAb4)kk"   @," łĂ bAbAb@d  XXXbY,H,H,,$$XD   @," łĂ bAbAb@d  XXXbY,H,H,,$$XD   @," łĂ bAbAb@d  XXXbY,H,H,,$$XD   @,"ſ͘T;(.=ƙ@!,cdHlb0ḰR2T0.s|[2@pbԋj<~[/jr`,H$DF=j,(cA8UkMŌk$ H$]S8Zs h/5^Kا2ǚ ,H$t״ I`C}5^C)tO]`A X\NfR_B5cH]Z( D"^k-םp'Ե ~1$XMXH$`qI9`A"],(cAkE%x>XS3EKs[,ypXXZuX;⎖op`A X\,ޘlr^_HqaXaľ*`1Ca쯡+L9`q8#1;,f i0ͧ֕[vPғ9i)C=`as($D`9,6 {ЎwL^\0] Zze4&@47*懍D<]ܭKS }`b4& +9+Fcet6 qw4D(  XP`kۨĆ' xpfP%X䊸&Va͋d]G! H$ 9e%X&E/ ͖F\ɞxWGmu\]:t[G n ゚Do6J=GOtF޸ r'h XPƂ2W D'?3v:Vh ݪ`R0 RpE]Bo6zbH z4}z 1_'l$,<O,{qi̶c$D`>$0 s/*߫Ŕmp -V7Ybū%n#84KRBgHYk U~Ȋ!L!l# H$mU`Q7>.m?G(܅K /`Hww [Ybc+ =̷ed6=*2:ң7:wA2:Xs]fOb'?XHQ.YFܽ: ffXN y\,xwΈ,H$tK-j||7PDrF`~w+l8NzbZv[DGot #5PMe,(cq]R~wnwfhm4h?UH=/bhK& H$ҭ 8l0"f򚽆G_Z',iټ }#+kZ@֊e9r &^2g}`b:&&=[J@FjA`QC`A X\,rK8{|ub3[#RAe.hE`Z' D"fW JxmkBn,|M`W>Uo 뤥x .hr]:b@FjA`QC`A X\,v&%.X̻-g:@^E.}GMj#kUGL b- D"h*"*bx/IJ`q _j@X,|M`Ѡֳu_令NRnU4 xQB;,j,(cAE(K* !"rVK K"V皅¢amr=~r0!'UlRuXt,acq4Spi/@A$۱6 l_ؚu\A_N3o_ Y_: jș`1ԾϳHlW>y;bOhuDGotDJA`QC`A X\,X>d@R,ܳ,<\*uںR.ՠՇ.MW|hL^2mYJe }LزLl}{6ˆs;Y+ͨ7*K"XXٵ+z]-ߜKb À$or9˔wnOMs{3N PE@i+(|P *- 008nQ̾/KSJ4+i Z9td-.#O|Fâ_#Ȩ_af S;JI-ՁQA  &L,./J׸:{܊ѥX]eJՙbH5^35~5KطϘb?TK65;!4Pv\ê*-uPS␯|Nݏg?n嗶+#J{VTo+1Ig;]ru`VbqĂ+yP/m 5i:?sDc}v7nN"G(Kkw/mL_RLl2ꄇ&ߔrS:!kkxbqAv6U&KW`b.|?_Q,I_>`AکG~0e#BdoI&g[-L,XRZQ`#524v2Ls u R_KZ+,`G  &L,n??6O|Vc &ڐšXB eCߧf"v &wyԭޕ&0b{J eohK.Q,!f׿ {tA &L,c9Xۗ`b B >-g'gb`bĂP,e )zd(BN,X0  mѤ3fidzxk.遼N..rYO\m7aq^ mV\P:pjf ӛRђWmYomA,5_6kH!7 jMs9y$ !B &L,B Tb877ϋf'v=E]X[!?sȼUs򺵘љoĕn~ʯC!BHbĂX(B^ VJ+UM'@:/*e03X}K{o?UEryUԀN\;j'S8,.B!g`bĂP,JKVE>ml CBNV a zep`0$eN5*,cX !Bł BP+箿~6j<]b u˨R,DLHv,nB!g`bĂP,~.ܰ ոeF@OE8N!4 YqPuX !Bł BPAxRy0OHBX%c(9w| *B!Y,X0 JbC0.W(".V))AX !Bł B$omnT]$XMo[X< B!g`bĂP,*{޶,gP!,L,X*KLZ,>W'uO>V C!BX0`bA(Jܽco2|7bL6{)x=QW6$B!g`bĂP,o Z`εX:*Ģ^Hep?B!8 &b,ݚdA[{CߵXdW })Vgj*p?B!8 &b/%?+{cUj7b[ϽfCb~(Bq &L,B} Uy xl6}wn]\Ř "UB!Y,X0  3dQg{60Z,|XW'# B!Y,X0  Ek"/q{pZ,jE@b~(Bq &L,B+E%u|[X(nBOhc`ҵRF,Me*B!Y,X0  $EG~Z</\Ř] ne%uRb~(Bq &L,BF!`8?^8?_ ה"eĢ%pYPE aJB!Y,X0 F,EBNccJ+Vͅ(\YILX9dϤ.۽&)uRbz(Bq &L,BuA[ȋy@ alY܉#Qϧ xA-/q:P98"1W!2δe I,B!bĂX3Q<["Y(1Y95C踜X( X !5y8b/ĎY!&}=x{g C!BX0`bA(yFW!=xQ/Q.)ʂt٢$h-+ s ų' "p9B!8 &7F nX(Sr߿X۴;fbO }Ԧ]Rk^eX(O}X\]oJPYzP!S\wC=Q;4.Į_ F$F+P_{j˷2%f)/LGyt6ds tvyse Mce,(cQZ,-%ח߻u\ czLJ/zcl*bI&w^j[é'.m]l?w~Dj\"B=7MiEVX XPƢV&_brRG4`~?J1 %D"5Lqg(/r0Zj±T,(cA"fi 7&j׮^`:i(I$A=א|%>  T}$D"5`>GtHUz3 ̚`GLDy#2谳,Uc|?s);weX8{>3ºn *Æ\ l.~=gy-265vD IDAT2o0Wo.rvKŚ7 ,-Ih$I$e $m/zTE󶏶"3^{؟Þk9m;$&לٛ,s]vo ԰+ ]~ʼK-7XPƂ2 EAF;qKOA0 F:[RT^NygĀQ`jI KXxm{pe"!(:^sS:,^O;HDjXV+O_E?Thm),l_ R,uY&Ek+$XSQ{EU=MaIM-esJ`A =.gc s@U%l+=ΐE?s-?{O`t`A X4E:[sQ,.WBe۳ŹIs6C`фr76h:D"}w5&=tM ‹*`aNNm` XAҾ.B홷 "naU,= ܐ[q- we,(cX4lD+{]7E/S,-^(mϲ*B !G#H$ry/c[搐 WxQ,&ouč,%_,Bғ(`0v{@ 0NEIibtTSe,(cXx~ٮ7 FU8d0P, U; ɶ.re`r(D"F4\|UxQ,J)Ƣ|C]`()BپoU (a$b E qmDQk XPƢx%-ҼeCxu*_J[B [Sl "W6arLAJB`A"H$v?/j‹*`z"2:"jp,-:XȀ@ K%ZOM([Aje,iD1授`AXm`Z,?eJUiTj& H$6u\VS`Zn Jό) GVJ0IU""]JcݪG*zBB`A"H$^p}Qܦ ]*] OA%]{m ` "&C6taNJ.c ̉a*|e,(cQ;X NfOb02uE4f0ވiG0Q D8*m6s-hA! H$Cp;sF-lgr7f/zjE-U$, (u:-WmJ`鉄] ~sMΉ 2;)BV4c/g 5SRX w8o_hvk*CRaL<!m::,.9)?ҌKkp‚"lzxùf%&KiW(Ɂ9!H>xlR7p? aPq`3xnC{%l}~ާ1,X08) kJX{>L,X4fXD%kJXz\N>0#,X0hAX3CN%#<aĂEEF=5 !I$tb5XX0`bqR77C-c ‚                           ÂubqH&1Y>gy^,,X0YkpwZLD paG>.DXׅ &?n?ӂm‚M)2-GZhj1ԋ h`bX|t ,'Eٜ""ok+"cXd%SuL,XkX%‚a2EaĂ¢⶚]bڮf^\pa|&9􍍵qnAXt@saqq6LX0`bQgX,X3bvH}jaݲt}frDžRX|6#[;reyu9h_~͙P/aoDՅՈ>-VD+"jYͼe%%lY¹wdz.ykaeR_6,5=o}lY6'\b 1-+" ˚-]pnjR=\.N{X0`bQgXܒ:>l c{=\쁻>Sou-7,Nys}yy ﰈJ\mx6nfݭu6PV^ٗ"S\wo,aBfiɬ\o_IZuʔ{}Ozbݛ׮Bq ٻ$pn*"ۻCiסv,wZma!?#$'_>ʈ PhKBk Wk{"F]`bĢYk2\I')ݰ%:c]oDŀ _v7$QPa󮘽^ Eb64ot$0.?RnC 5{QX4[\hT~]<Ƣ-u]^~ ",[ʰ0jcŔiuaR̞û8aĂEavO;+SRX\Nɦ {zjM)YPa^w%B4JX#EuEmޕUgڛ}#"UEa1(1+FXW_lI$Boś"2 w@dgbU"_1F*U8aĂEa/m7E2|SŞ\Q<+ԐzqYgw016/-aa"a' Ԧm5cJj- wϩbdv"V!/ hS˻uytjðhJLjg#_c>,X0w"KaVzHbu˳C#[+&$O::O$L1}EQL2҇qrX̔ߧgS-E}oX0џ1*rh`bgXen^a,e1oXk:s4,쿘8+a s-o3)D.KdHyNaOBM**;.")!8iKr'¢O c*d &L,a\̋<coa1#E+KrF ůGygܚX0`UD1rAaI $D$Ap.K- Z\H^xg2&Mv퍾υt#='bg>cCłYO"TXlϑ5DM*%!tvR, V') kaR ډ"X4.oķJ,b"aN/T%D7}An7ۛ ^˫dmĢbX A" ,\hݭӖ|{bf T9@m*&TVXiו)Гv?R^0"cvpD4e :"X4&wb4=un+%/u* hgʼ9>v'#;X~bJ  r^=hw3"w`"sWDX$9thy{M3vws"&e9y/ftv]o\7p/*b&~+ H_x걉\^scLewnti!~m;>B@,,{Fx眧86J]YI,ӈ)(Įz qL;{J"pw6bqiu6(c~Q>fE?'4k?Gy(jk)X bѠX0lP|H.5ł=Ϝܺ (ş=۾x{+O'Gb^eޓusN3.lZu7W‘D¥}3l2/=KY*XsQWmy_F!ywl7{NlwY/H\RgK&"rY36=1wYfk+zj>+1!3fN ut&3}ŵ D,hm/+ǹڎO#Ģx8mCf@rDdU؍zn}}n/Ee֪+i#dͿX~[Zvު}Wom-}`X{R #=e]c;ǻb"bǏ93bT?1c KKKDa"cYSv]Z7ys%]A,^sQQռ^\kN?*{*Mf"3^w7M&) )m7 p@ p@žedZIp:AYh_o]yj->32g͹6p@__~?AbA{dfa.z/@,b#X b ebP+ZҧKoXwg&p}mwX*LmWMg1]BW]Is鿀X4M,@@,b[3d$i h\,:č,%Q\ +U,&]+C Xf"XS,&ixK[.DÕ!x7ꖜl i X0]"L5dݔX@ [X b Ubh[5s囉TXXuU .=}o+oI]&3+hX bX6MVl* U2SH ,~F,J @,"XEM`UswHRT""6b˂􉟦+5_X0G+hX bX Sy)u"2UhxB0lܭg'bA,"XEbnl^}&//X55^FmB- b4Y,@@, ȺHT. ZأNRtR-)/X b ug&|ǚ!bӦg+50XQX\*UXM D,ZbͅUbzM,N)bDz-O keO{@ %{DNpE,*va:5r,f*6QwDm< Yb"bQK,Ġ|s/8GD >m(_M, ]bŢ+B,ĺ*7 !k~R5"վPbY@ %8QdAqx\-8d@? aà86WQ,ľP4-o,qpo@,hXSW,ďE)ހOzhX bX\Pq&@ ճ( H"YioXP>#g,jн?MƍĢ_ C!@ D,ĢPSRv;/ZZd́f+ӭN5UcO40VXYNb4K,@@,nPBw=Ҭ$T.K7*-"n pOD!eMdS,ح 6wvMi$ ].jTb41ˆ!F-"31JX'%0Uȅ7;g{Fqer(&8nVw?vB!N &bq7Woey!Ă Bxh:XBtHbkI/w9mbĂ=łP,!?>bA&L,X8 Oʋ=EWٓwswkbA!y(XkEOKuU?{+;^WmqP.ݼM*L,XS,:89 /ۈRT풅uL'3[MG?łBb173f: bDZZ)3qv:C>ɮ{↱\?i=2=zti,<2oP/4f:|qpa06c^HM)L,XS,R^)6a['Va?|TЉz 1/kbA!9ݱWE*=]xV{gӥI$vPi+ةb*uIC}Nvۧۧ?4myCP,X0hL,NX`6kV+9j ?eӱ4`>-q^}8!h=p#=ĈK XǧgQR,߹X҅{bx: ߆0xGWG3 )f[;&>},^;ͶjX 8vhFC#^zn!z %Gٝm>`bĢ!/YG]MhWƘU|m&cb cƃbA!AXWB!.J,GxmsE#o{Ppct2c\cu bXOة XVD~#rB=ف4X0`bѐX|ED5FY:'o!겚)ur@6æI5Iްz)BՅK0+"3v #Յ_SDK%I::!>̨ BDb`zCĂX>B(E֞!f'L,X4$Vʧ ?n~] e1bA!)3 Q s ԧ%SGZ,~&WB$"yR,uJ:#P1x+V,X0hH,j{`?,1%ƞj6~K{8 P'" !Ģs&Bb/?n8a-r.BX".HX!b5WݼM)L,X4$]fC\-Y[M4tG_!JhЅ)NB,@.ůƬ7EB=s֎VڗOM(L,X4$: |8'[C,i"e6o& '~)B5 *jLJǪ _V,\d%Z,flI_{X! oE?;|bĂECbq\ ba|k,VX B!NE[ԎۥX5a>ZLd*We7EBE& &L,/dwq}dFrXm?1>/lA(B<"2F^ (q༰"Bb ]nxX!"3<>Ck-m:`bĢ!xWɉID_>S\NG,X0XDsy oم[N s@_&z^NWT4W@jGr*x['bA! q7~޷:k^9lw`zjNzh!WK,:uR? )rֻb h7B.6O{'1RnDK,X0X-Ja 2G߬wc! 5(CΘ=J]!?U_SŤ8^G   xeysh}͢ҍ*F[T XXXbaŬW,k="g9FOZ]lłĂba*j7)5,6uV[%9 ĢXT6l*^^Z%XJ4痩jfjgV6).lĂĂ"bl ~>7jծ|k**%_dߙ;/kh ؋bAbAbE12(^<|0XEn|܈f͂b|n-[+BX^   @,Ȿl&o6 tɊ3eEJo+ سbAbAbQ}'eXxOG,SjJw*"C9Tou (p}4xAsj+=+’b(:'/xO=2gjǯ1K]7صߔ}\YYvbj6iJ/>;5ZD,1KTjkki{R`)7 ǼNYzB)ez`4+Ξt*n=^_E{-gETted}X"sʈŕdtuXw^ub{xbAbAbEr7'S>PhJFCcBG&9x1 s`G횝4hzzXhگOUz̼ӯ܊Ȁt.8ԩ}cd$-(\Qq^Ĉ:CjXh72T%Sjs 6inh Xr,X(t(S2jd*WM/ j.zĤ Ar`ѣB-M755 rbZ r,F3PwD ٳ}EeHqw߁ ތ ˪e`a)b\M Bi`a>Xћ߽;IM &"*ҳb ` _ɟ뗠Q߇ XAwŚt(ΊW77X4Z65Fo,AlA9bpmXDI3C`Be.Co],"63^Qn= r ,HW:aYn!ޝ?g h]!e㳥'ۋXW_DOlR<*ZIpYDE%ޘ$9 rOb=pd@z/2"U@ @b#`QЋvɢ5 *@S9bjeEsn9=H#^ _1Wc?il,h?2(#ZM`aŐޫ#XP(7E[Kc* J p?׍C0E=y4v^ ,`qYc{?Xw7EѐX= ,\ X"ֆ czjdWLO=4sŊp`D,PaZ@ɴZcs9=g:XtY?䧹bX}`a}*  >XxP}d8%(_/%4R(0,k-$al ,.̍0!p#XDp ,{U@z,r.3(SX$ yP RXL&?('a vZ;SLOzX)mIXB2L0" ѳW,v ,F y 2gS`Ѯ sɈ<X* [4*y`B r5f2x"DIэڰ [3Xأ/Uhܸʚ{`q)yT#zGz,caQ͞X! kZ{YoR'IS,()x EeŜJm8k +u`ǥ@<h=uT _`CF &BzqQX* [P;C  "Xnh~S@ OF1EB_U7m[Z,.L`jVQ"X @E!rVh? ,:!s|۵mp3RY W؃W{<dW/&d kߖ'?z#wӗsẋ^M6QAI-Aޠ+VZW}-ZVqQvA]aiU`lXjcK?"DbyA9fr- z(= Yn}*RPwhT@PIvjN1.[9mnqhUHjr|yK"S,!jTO]Sʍ'f?͡ W[[_P?_y~P(`1S)-,n5}9[OE+ޣQe8X؊2 ~%GX ,1Ƴ)Ҳu|./,h+6C92Oab U^)4Oz,caקMl63. 'rĶ ,k|dzGX4`J:_HgX}!һ,gD( XIB,|>[#` 9\3W5n-2 YLZfl,%Zo%)D|QdƠdO3 XCNz,cQ}%e|#So~Ԡ#c4MLBP;-Dp݋Y^\=mq|iqu˯9'3 tyKKMR>P@z,UPR=Ï;*]rADBPFI'*ג.ЏwoOM{lqb񄋦@ki+P*3 A e Aux! IDATMVZZ~.i7O$Ty+~`AcAcA? h.ĺ1ԽhOqQ}\W{CvP:jJҜT3ƂƂ`>1Gpnu$չ[>k !'Y؍in~QxH7f[_6#k`dmµ& ,oG   rs3?~{O|߮ueތ 44`AcAcx44`AcAcx44`AcAcx44`AcAcx44`AcAcx44`AcAcx44`AcAcx44`AcAcx44`AcAcx44`AcAcx44`AcAcx44`AcAcx44`AcAcx44`AcAcun9gdˢ.kD=fd7+gEF>x^Q ^ЂQkƂ+ܝOHz8xbU\P%4ctE_7XXXTo6"Zb{'f *ڔ5s@[VDuE6bjzg#2@`Q6Ξ,²+"XƂƢZjӻ$=BૂE,X"XƂƢZvOaև:X4fk)y3^_  -[/ޮŵ= j5XJEEWGKEKI(~A 44tV [DfO4/JO&?|_|aH֝6q<~Z}^q.e2/`~CІd,rxc%2}{`1Z,ڇCZ}ܒ`b >Jvt@ =ΚD42,x<&x|COţq(mH%bkG>|#sDM'X eq,.mhh0H [JM'cAEr"Cĥ^XWsSG֔zzARME;"{ax\ʢܜЃ.B}OTd۽wWd^eC?<-90d=mjGM=-Ed{YL7sWBHƵVn.m:Δ,i'udHOC44U*y7VΈAޢD}zBSSKR,dmBLl.e' lC1FfSauq g/%tלĎkGTg/_noIh鞵{6{rO;Ey,DN,B `0" 5t? >Qy FypR_=ȕŠqtqKTx['EfΆ99f=ann#)~鵾i44U. 7E >2EL՟z//#%"l/DVƢh1}1w ,}W$NR:|>Z .{͹lݴ˒ڒ1Kx Ɂ`KȤ:H ygSiMwKDs̏EZ_zEY<d`qM^DQ-xӺңqAbYwg`AcAcQK"˂}e_y&dQgݹ~.!szޒ`'Za`^'M %Y;?kHe\/g愾ɕaڒ5?e;y5,ŨȱůG+XD9OC4=VG\8oa/H0߱hֹo:<#!mjfC4;7뭾5tAEb,X& U![3lڅ#`,긾l`^hK4_͎'jj_v*Y,FoCkK|) REbS2<*XT8+nO {giHu^Q3ꋷ5n7e7]~f`AcAcQ}Q`j6h$X$ `ޞ,zT(`.֭ў";+xQ5/9;cBL߬7P+k,:g`Qy<3X4IB`+Bn2NnIFAE "LgRx(rlEur:LA5ǜ\OK h8nLP"o՘3ŜkNN&;>L5V4,3E"z;94IᅹZg4X0r5u`[g3/^sUYֺ1mACȊEX`ݾ״$P"QX,*g1Yr.y?wYQ `$[KϺCF}Nb`AcAcQEjB]]SZIS *Fd3-WԸEEQJibI%1hj/L^xM.Μ!|D*K4L?tEj8{bR2&*w~cyGķ%*90 42t#ю"WJg3㠃_JeĢq}2sx$sv7%@EjQ!LbAAxXbѯhq* KĢJRτ|x".0bϥy${dB[CĂvW:baq:RF@+cXLB@,dG }G2 ܄ۚX=b S.<&bJ&+Q;bwinVO,,$⦈?Cu)ak<<wZgQ>zJ~i@ ڑX+|+$EǍlIX _BɁ.Kn ?ƬbO kWQ=v,/gA]{i\܄ۚX=U=@껏o"n@X9@P SD,̵$S(IJg$0v S?!G{CizBdmx6)d"i2M3 V PyWI2W/иTҔ]ytjK,cVa&鉋ZF4/Yxnb=lɇX׀5nrFi VH 'O,G[! ;F,<N, X=-c *ꯅh$ m~ O}g|,7?WK]~?pGnpy,O, lbьU =h|O틆B4u(g--?u`y-x> Ojzߤ2цĂl8b( d;\B^* '+d؟ƣ*7X SĢqz,cXɗ<1450WBUY~)pț~YPY.fv7Xos躈T'#ׯ#g,dOwX7EV6 Xq1x^J̖ E`JuXX +ZB,H躈E}n=Ģ ip&͑@z,6]P`o@ВVݍnåoXw7v@!r8k}fmm0#HQ}qW3=}]4. =rRfWזXX+z*{@%sʭ֎> ^ڇO-f̟$Fbg&408x\nu#צ_&Wb2xD,ƆMuu+R޽1'`UAʍK;s0rh&3]*T@mp!FZ<|\:W d/xO)MXQݬ#X˱w Ϲܩ!)լF.Y@? 4M?O<[BJŔ:MJ,MiO AչξDX~r6³V['b0r Tʒ ~Uk/b?78|%) G9#R*q`zMֳq.xϠP}EsjW{ *14! _TZ˙S׉FQu|yXv7tqzGFbN4U4;N,c kOv߆:!IDRu/{<4t쓙"X46K5/WKš Cx:|ƁIyN-#XN4+y(/:x$` #f6tΖ?BR`G3'k-=K1,Ő s#.9tF1t'sYSұސf.fQY?WoL'Z[qd%{MS|"RI)\GKsx0ZdO#ca<ca˴!ɭ`) o"X<х'^;OIgfgw![줈D2CʿYpNw(a \qQ @ƾC@$uVG1phxe?V68k#tys@1Z1}Z(Ol-a=%C-勿kRTUjr!ư3Ix{#%`/yw.:O^p#_ETe1zbpqr5>_c@O,Z / U]W-ukv d7vJ5Nԑ neCzuo"鵳T aT ?|ISh h˞:")[x ٦dQ'= g^J!cڗ$d_.|1.qyAfɪ{m"Evi`2]lcz[M(6RAc* V}ͯ7(̅Vpsv: pCp_tX}M,c=+fĈXX`,qktgK`2&ӊz=|@'ϊ!'HT]G_"G+R2 .^t"4x-o 4fjZ8@Z4@NRԅcV(lW} 4_z.:ޥ@q-U4]Is_udL~/&vN,|v2)-!] M݉^ta.AWvwbACݜREgdp_"$?cSnc `Y0*sϰ3m?;+\$ZCsXj,~}@2"~|سbnFX.)6M0(C^<$ )mȊ q;.0,9GF_$[}*@GJ"=b3DV,kOCPx{Ç5My$,eGC,ѱf@jf'B9GHmKB]5?+([5nAZl\INȢu.VYbaɑ5ZTȸB3@D"d=;ܫB}gd|& (N,R9 ^M ["b &o^l[!/,w%fqٔk`񛊡W,]1En-V%͌1.i͈0 0r}  vS#`by o"$oY}->yK֥վ;#r9I1Ě8]%&I+grD[.L<+JWt+H>>I%ob%5cXq'ZX*~<|U~I{ȸX6@:Ppt2H=Y~Sc[7&<ejp!mu;`-{rAe]СމEQSEeA,<Š-t'&rϟYXXßFuܒ^M!٧34+ƢcC)bqFunjIknFrba<caQQOHIuIW$îz'b6|83e!u׍nSBEl^p‘qOD'. (~J},4 \0ɸeW#m OfMYAzpmC,D.=F-G8' $Pvor0v!uWEBxWbD IDATq,xoF,U Śp[XNo1w{p;b1J\h_=nzG<}go} O$XD2D!}fĈXXa(E!`l'+ҷ8݉X첓"hDh?INה*PST3Iy=VqO U1,euFc,V*#uE=dEj=dr/Z';ԍG5r,<.V8%fл()m]DEKJ,¤w 6T <0VŜC=bC,Y2XG_K/\xM6X!Js>O-h32K0eEgL8j]qZs ܷ̞uJ,~nYWbA|+퍍Ѷ8%lh'y"nWWynN$mRfX8k UBKn庮H,XU(wU';uce j ܠ] ƓXx_W/yZKgҷQ U͚銲((M7bAΔjpˉx,cz"!hWKe7t"zmү(Ԩ,{Gk0 B_'>|GDYW`kPrHMڰ岕^Sq5~? ݎ$6(nݕ~evupgVW!&Mc^ 1k 5)!#XXdeԍPe$/X6 \}b'3N?xmXM}bׇS}VZk3;sC=bzJ8 Wt[f]eQˠDX`ju(ڨrb Xl{Ί.&)Ă[)NjbJ($_ Y 4LM4/h Qֹ6wqN(}Ch]&ˌ:e=yn/."bhŭ4J3&ȏ $ɗ烓4況^ݫ"6lmQқbsg0* ڶch>mduzJB,wܓX;"E P)`S^=nd>\Gķ8An@_]fyzD\݆ъT~,6_t^lV5S!<`!ZʨĂW@Q7<ŭ;e|e٤f:[ֹkX 3Tf_lӔoQun׏= v?`lT%WlSzh8HKP=+*/ݍJοlѤh䃯`枋i!eRTEv|JSZMb>2Mc:Q\BmĢ@4MnZb>Hs盲uA,N"w3Ii(sp,?/6cϋ##h[g_]ѪtuU!r*B2pLnx,c ;/@,LHE,[WּT UW-ĸ6V萘[s1)*^OPҔ^Pd^$O;FxM=$K䕤:"J>?Nl/U-j*=Ģ1NV(~,Thi'ōͫlcO%>U.N5Wbul5Md c_'Y%f~ 5\ОUfr=-)r1s5)ױ=SRG̎V]>cy.yw){^\H ]#hj*Zj*yUw XԲJ(Fp bbF7X<@qJĝ3}bb XJ5my-'[`@, PqF(qNurX@,c >^Frdb4B,c]=:o_/1Ƴolpx,cq5[ܓ5@s5+q4Bð\ſwÿd- `D#XlG,HD V L'Bdm EXHs4t}b@gw +s=3ife`]羋{}6wOMdiTB@1!I& @rӱPرEKUNZSŇ-}tnF"`r>陦=}:6OWZ XPµbݝ'Y``6o,ܦa’H$z؝}VSyMy &XPł*nu-`7֚Er`q&,; ,H$ dU,bV⽑I}xWf9dFR)^ ,J;&!swSϩ$7y*H$I>3X=; T`A XU/F8Rh`Mds"yxg+2?''3Rjq_Q,^(sӘKO&,0(M,GN=Ɠ %(|yKfcs:RdEz1D"ɋ+?T"rZbV?+Xzfq"z?6(==R j fDj<`UWY9iϓ(lo4< XPł*.  z>%ʿ$(;Z*w.Ч60 rS׬w]]SC"Y4ү4$➪{nKyZ߂D"HUi,qĵpiOv3/v*M?On ף,`ƷCz[,̝Hy$=v(r/0D"Nj-`cD<?2٧o30u lR״/#|kx)XtF 뾩jj,bA l"ab޾ˇŕacXU!]5š`aM6nTXb[>;1Ë..2D"͋-`FbO FG&h@*-RX` XP¥yK"s7 r -i#-T+q.跃Xq٨o9_ҝu$D*/> )-iXxR,A̓,;mT3`A XTA4FBN`杖`a*0iRڃ,. ]iD"U[kNf FT2I9EP S,j,bA jbḵ>vf eT,+-ޞHꇕb5njdT!|4EMU,bVG{Xg<M7,,g`a*;9HEB}0}(AS'* – [Ty(< '-}Li`27OH${qE}ByJ_{aV?a'm(K[%^']U,ܪ3>7y˞9֓X17f`aj:4w-`K!w`c)qç>{D"Z ,Z]$/ASk%f1g; a%PA-} ᢆyEMU,bZ􉟵o4eZۓ$ yهI%3S_/b}֟)yex8DD[˗X8dŋHU˓]ЪV}ՉL/YOC,656RS/u]|Ց%7)c( T{mY AIA9|quw HeHYR,Qd@V͔ ,X^=z0i;\[V*:Xe^uΛCqyjzJ[a##0jg՗f 4>E-…纠~z |_`elˤ yاR7Q}/Vc&|&aX0؜|\)uE_~1?~RWWS?ZtwySS?bJ E@NI".kXED"RpPSbqf(; [kN>w~U6;E,Tf,Rt‹&`qn`! ,}ޗmѯԿ}%TJ 2b!#;xl,ɷ4s,f_Kd\&"EeE޹V]lэ-fW X̨L~ RRRBF,d"SEn#;j.co':*+9XxH[뱟L8J OXTC5 XУuX"뇃N.j\ԾBF,d"c*S4٣:fv>JfEEcBoN{$ []^9D eYL6yng ]TW1#!6wtڎX5C=4`֪}E/M:Xw?RRR Ȝc%upc*D,PQj}x(w\NBQr<^2ep8(F\3(WVgv;XL(J=EQLqŗd3 r𞢕]v;W^4deš ׿h`Pcs\ֺU7`U+*JӵPDkuJgC=q_!0/y_ZWz0h2Sq,XLA* ;AA'qqFP܈}czE]Xi#M;)XXfEw*M_|J%dh]q+J,RuCdYr,-S::`ӕJ)%%e  ))3_;Xxqw+|&%z+;…,e3 Zr6lf ‰ta 4n<4|7]6*.,N"Oxէ`_Mh)M8`,q-Wi[hC;^]ZQsɮhH&h0N IDATVT5 #) u*X^燣܂kǃV3w(Z~Id.a .(,RtC ˵t[Yt`qrQXȈі%M ^PFS|GW Mn񃥚?/ < 4% d6Ц?m<A NO`BBhLr-63]xu͘e-VW -j0T?]|saYG![]bэzi,ҴP 6䨂L|s $%o|hy+*R]inױn*6z>Xpw({Fsf"AaMz8fY;D( -pGgf{OPYؑzY"C TV:ܢp苍,"-ڳC>k4`ۣ ?K| fUՖU27,^!ƋRk'g,dBF,~%`r;"$L 3ZQb< kE~L ]J=;"M6Pb.1t5B J@oYϾ q b7Z[GYJʾF`a>*&XJiN]1%[[H WWtU!̑o;_u1XtQ 萶D h8/P|Y , wˮbg`ak52ӀEYӆحFI:YbZĞoD,ױ,Wz/ATkOg1{^{s׸r+ÈS񋏫q "zU} ,`!#2b!%E} 6i[[/>4dbu(Ȅ /Ҡ۫(`ALA( `#6h0J61U>MXCgPvNB<Vsfo 4^QWVMG$a)>Uۙ" ~]>o4vqthf`|f.hpkv:{$M`akAj3SEs [BP'+XxvOxFTu^X W$vx|.vvV8X lNmf%:Tmoo󊎺 TRKLKVp<(1aM6ޡc/Y,g5 $R] m`Z5;b : ^,hH%uEѮiSIĞW@¢DM(DD\(*Qa]QAiS]wzw־w)'kIgzg}{xXxn 8s\OyctZf3lrk8oʪ< 뱰@oO 6).@bjH3boB4emⵇYgq E&o8u;7<VYh)IEa`Q\\ c9 ^g֪떷)/47FGJae ]..ᙡQ[WGg(SD;W dgV aM*X ,\Db{,0n o#P_`[fwtc|> c|JcKbQ9e<Ʒ>,lGc\ùZWE ++ 뱰 ++g"s;43/s{!f`1Jc&}B*XT& VׂwuYG*mNdU}P/ދE @BF@SaysͨUޘb8OK9b~ȐnαQLT#Bgx wŏ 9Rs Y0aM*X=T^s/8 x?tfz' 6MdDĵ ++O 뱰 ++yT}Pp(m41P`+0N%v,ȫj.3h05/XŤXo]:X,vTBe Z5Mȳt|@>b|h2+ 2zuП:$6[M#:YajX6X!N֤cWs8Ke^b >VfD3$w`UfB]뱰T 뱰b-18Ώ;p^=$r @}\|%[ X -{mp4PR(X5vNFbkꄔlq{/jD,Mt ˥ >@53cU X3jkDh-I]$%|N*T`q60tCBZ7zU3o*36k\f ǁvC" d.0I Ǣ?{aa֯{O,ތ˥X=)ok 3㸃~k=VVV ca=VVo3}`|@.ø%fT/F έ=X>(`S 3ergB:| " 1כxoN ō(Ĥ=_QH@8t0<3hoycaeeI`a=cae nFq~ a>4'd]2QWАhFS6moYu&І`Af yXۃ"L!}40͛ĬdlcXfz4Mcdk/$g: t$n\EHKEnH< pJvB_ PYډGx<]LYʺnEN~'|`{er8dzn&*ca=VV_9o"KGa{,2\\"[y6Sk`Q=2IRMk Mv6 diX#^EqR%#sbWV:3CRLOr( fb"~tuv=-i, ~uKFdٝZ>cpU?gVԡF,w&)1B?lh ,.޿Ko }qiAПe%v'b (,RDщt_`'5`Qcế_-ćhw@AZx $ BMJPs)CwH*eWP.ZwכBcFʋ!ҏHL`[i&*#X $y0XN IɄ;I wK>KKV^8H#ٴm3%h6z 9EMC?5PG.Rw$\ԏy7V!IwzMյV_LRMo] Rb嶡FG$%G 7^B`BtLϳ2p9?Y,=qOgV .hDE@h7gNkتvf/3Lv?؛{g! E%!99!ysr"8,ʑy!KoVzESXtbO`iFŸlWؐOcӭ?oniE\A, ,ccB5Csh=&@ .qVG,y*Ÿ-:j_߲ErUC/o3riZDKo9C7. 9n/MoQvKsXk=8oNȕh[QV3WOpE(Rn> mu>h!b EsP(|Es5~wPDaWgxſoVm4_mҐzXtE d,.w7 e9.[a+1\™>1)Y^H d,ຐ ?' /~bQ-^%Vn:ybX cp} _ 3f"C,+ģ)=?7bV|d=A,@v@"J*k4E{wՒά6LR{G PzDUOAW,@]LQ"%C,6=x{b#X cQ; A>;E//j_ ` OD/\?XCyGq@ Sh$Bk}npX͜ʚfbh?(b2M}jORB@,s4L^ L,@ƢV3{=`K,N'yXtbR"Wt*!> W~`42c*e)̱ˌ u fDV0eKs:$j Eީݤc],6l2eS߫3.&>KDiU_ zIH[4X cEDLԖDZ뫌Rp6roLviBsϜ֘U=~ ӌ`c_(, $M>r/)E,&-xODн۫)H;aDm"n-=1ʼx 8Ñ|SW  Il.oKZWC ?--FkDL,@|z͢MZOB 4;!Y,bJCUN?dQ,@ƢFxa 6TvoB/([0q_{%]?"t XT'ܲbZ{e󞧦 Hڊioq\,>[zhXMf SأM=CZjhRI(BꟼL;V¹ [[6/YU,i\q)\Sehw(:?MB(?c1C PЁ#ޤb25rh"kKNLv([I6fݖZ")6vbM ylP%;u9Lb21/k$ ,6CL,/{=8;4X,Y2wL/ո,n(:Jld]8g}oD&l"&i&]69F1ZOM],ݹ׶TU,yu x2X.iX;#8- k E7 .XXScY*B;BwO1EnkuSZ>X/ʮ+TެnlknP,刴ROqAa}fY+/,#oUG%|x;Npjo^ ~$SbqЅCb25rj}tE9 "9[RU,L,,KU VS'C (jh"ĂW7@;gESi m D8;4\,o{ħoƣ<ʹe {9zXߣb"BS||Uh/l\X/XNW]8M,X cQ#"9bq ?{D؅_%&8r CȐp! I#5Xxku7$Ny ˮN^+KDb9QVŢCrEH$:ԓXiXގwt- bσhLf-D JȮάV/QO{t٤X;J4n$Z[ }kkxw5ŗŢUym9l"/,7Z"xWN,\G}%9<>/ER"z{XdLFk7Z7)$*w~h"t9whxaԘY/ wb30Ki3z  JYs/,˩ժ IDAT#iIMOx+l(jU^, ,xbOp͈Ƚ|ؔ~>P7b? ѻǢϒ EU>_JMM׽,s%BM/ wb1/RbJYU,H,H,*et"֔LzVXE*ʉEQbq:ӓX&ҩ7?zŢ$6b9Yb:[6X<->PWbat%țDd8.2)}v)9|*bֲpBbJ`Ĺ@,^wZ门H,ܝ{ɽ;%w޹T^łĂĢRS2dJlx31/PgO fŢmqbu:"rSoirWY/wY.hZbWwk6O& qlRL_;m6l@}ZiE%S&xjkD$6Х4fa7z Dr>/NDN7{I.pw'Nioy5&=K#lEN !_-.z  (4B5R_o]=);,,gRN,ܭlD4|EJ:0&=X携a#3dvTrtMK,S\-QޱyF핷L;[!j3J9prx!H>(NPL4%O,>!i5JDZ[އXhUgވ,h2̧z +2+TlȬjY몥qsYTŹ\YWҥd97F7/ƌYcpu'Ni7O&)>zXWX5U<#%4?yU,H,H,v6&z[kx"0 +SM prh2O'0s#CAH,|_ռt+{\m<&B1|Whjiӹ;cI$F,`Jꞅ9O:y~\ X (8(ILX4,lEܙba43+$npu/viWMYط6^^bO)\Ɋq3nłĂ|wm!4ܳPp}xo|*@sG|Gr{ ]펶rGt]0:l7?e,s&!KXGg惆Jyo~Z-(va瞥}ﯼ ’S v:  K!L|Vs}a2{ Wgһ_j,$$Q:v>w ^yHR g^Ջb&:,\ bAbAbqY&dl W"h?ؑHvd}7.y \Z&%q?Z,H,H,..u3F.Zxp!.#co+]A)y,Gbw6XXXT-$$U@bAbAbPXXXT-$$U@bAbAbPXXXLM,H,H,{`@bAbX6H,H, VPjH,H, @, @,    @,   @,H,H, Ă@,H,H, @,ĂĂ @,H,H, Ă@,H,H, @,ĂĂ @,H,H,jdZ?y٭%\ĠHKGX 5W@s\v W:_D$se bXԨF_s׈cW,/LF=@,j\N&w[;:Db43XXXIl}[Z$Sw}DF:8 EkY&vzET>#$$?,RkIKrru/WJ?U}e bAbAbq< d[u_Yi!_V :K, ;-gX\m[*yA^/XJ^bXTQ4]POkvXzbpPnZ{b 0# x()on&ғݿ]pw=%O[_ Yչ]xӑg+T<-2?{g6hi (%! CIS VD*-EDj}-=3vݫj a3̌G=2r'X4cY4ꏎ -w\yEn drr,ho(k[ OE`6͊Y{g %Ff!wPyZ? B]j ѣ%-Rp=̽?Wg@&uC~Te-kl$F# "<JHɥ\fZeFJ~^1],t]ox 6PŏS1@3S0ym{Ò :-?!lB5@YB}߫Qݷ`}S-Ev<{A+3vZ?e*{Z t{\X7dΈ(M+.iEmVy+>~`BP,yCU-u$Ũl?x=f?x:쿎 Z=h?>EF T A  XԳ/(X`  ˽e;fI ʣI6mKbH"ִZlkk6X䳝 $ZD/MMCP&8? `Qnv4ї$aUGf$`BrN~fFܝ+'oIU`I|Ѽ %f^7boax`BPUBG! 4J@``/`^0u`Gp(ʝjpcـҽlEk@>űw7@6qŒf,vѯ[^E\EM4 Uwiz "X$4{x7JR91,t,/ξjE!vp70 \ yEcI=+0J+V!lM&i B]"#z)G?b[j=cQ ¦D)T jlER4xTfY@!IaFm=XH= Ga3W@7 `xm|]e:ɲ( +>@G-,76!Nw=$#s},&L mp<uk( s8hNJXO uu!ҭ[ 4 Z6>=`BP eѣ#vQ<!Ps=$9su7]tP漣}XHB.0(X`jŌ''j;d$淹|'DpjO_O`1Hj%g>$h{L5ؙcQ}v=j4gr%yoe7qUZ1P(ԏGo>u댇g`Qp8-T7{"traԛ>b[3ػD=nl0cX'% ƁEb3]d.:,MVt~,2Dr7h>7X܃E '~Utk0d\i,/-k1}߷/>q ~`q6\`!z 341i޳mAR`[qoPJX\IETUqEI1PJJ~КU f,0cqep/ h>y. ` .p`L° $$7Xhw+V 崇XD+w&kQp- rﷷpBXx U=zڳy`r[W"x%X~|j ntx l3 cBc` X\ T\殝 ^CPv2,(xVzGe,E,rdm'X:shB|HTʏ+"$$uܯ!XP(TՃPkrѣI<#=,LԊKx?`SX %=Y˒Ğd`Qb"X`3C9Hۣ낰"ֳ-F8x`!Ժ,QlA,&Aa-t9R,VTDpfù,yEwSur VA`fD@P,<Ά| B<(:. X~<=~IN䐵 r r` X`3BFVzⴸm} E`!Ժ,gExgg%)9-w]$`q*Krd@\ukӼ} TKfˊa91\~=@}AU gA@P,JUGv6*"F÷SX ޏm*V+nH?e=ٵŵP{t [_gZK3XXwrrqqPHgzv4`aM$դ5\s]q { 0DealNp}f,0cq%eeȢ [7cTƭO '2@@ܢ}Ft/KuM=e[IXXg%RA3h%y8Ğ=ے|v%Gn |j64eІnJu uIޔڗ4p0VTX4}~ob/_?X$Kj|<>k>|Ů|c#]8\APG"_Ir=ǏM#[)Iu7`aiW>Ωqۖw.QOBcL04'hJ -  ,dZ:Tsgf+,  c=Voow㝬Y+Z\mR,cwH,vĂĂm+;ܟrɺeguZ[J |DMZ6o[ݙ?ckƵ8@R_FUkESFL̾kzOʹEZF|:Ҷ={6;%? WW} MLgϢ9\Sc#W3{NzŋŢ#=#_"WǵȽ r| d V 6;sY ➻k^NoW*6hjw|7ccTr'Xd&sfw$<ĂĂeЭvξ]y3RK?`wywʑӽOQX<ķ{Q;t9;AmzvNnbl:΂$bx߾a/ (*d::~y$%Ӝ"Xy{7w]յѻhww<4hb-ofmߜW:xXX@*Qw-7UjK5=°NHY*)69 _(BJtEӜbʎ H   ~l.9n/[}<6&fr5- 5C Axi @,H,H,`sO|nȲ۷Zjsh7VX 1jvAͦДUEEN   omx8owm/?$ba$R+͉E|0L   __;k?RcϹ }M,Fb!YX$ ;h$CĂ`''k '4ZXj(}6m. $$;T,B,)YjJv _N:&XXXxXh%fI:0k2Ǣ*D93 P8@zN~'[NE^/hca|!R9j3WoϿCw&&&   !J&D* x̱M3[.-Aw޴ ؊XhrЙ*B]Y(֩4y4=}>(&?M:*XXX(0sKS}zDV4 ˹pai;O;Z1@,H,H,vX򈴓   @, @,^XL4q @,6ĭo"$$ɦy- @,6@PY @,^%0@bAbXbbXXX bXX Xb@bAbX $$b@bAbXb$$$Xb@bAbž*"Е@,ĂĂM{E]ht% bQZzSt% b8m|%tb@bAbSyZk[Z >ibjBxF.4V7-H5v/L-P ^XtҏĂb3?bUS{^qF0ʯ||\y(KH+<hyK~?YP@ᙪ煣=4S˞k+O;·GL|wB $$ۛ:1#5 c7 ||\:ꥤ a}h){Hl@YaQ!B5a{@~m{Cg;z+CO  ͸16'X<3C, ެnSX}$D]~ÉS*BZAetFAUeAUBF(vC,7A+BF}+~+Tbߢ'Ŷf0E^bPzbuбQ^mOvb ۶JTxU@Tj9өJPGjȯca "[ Q:v?T qZg;OG  M0íű^|29Ԝ)ם3FƤTU12x=^xn}wThp}n̸OR46;^YJVOёɑu-|z.ď ][h$Q[Nn~4*ѭZkX3q@ãzîzē#Oe"( xPY:/XXX954Y4C M}f6njthxpV{x]WoTÜjKN &:(pHNn1]bY$/iT[o]czWs牅" lX'UB,{B IDATMc#R,"XB~Y f1+ҕe4,f Bj`5X#OwTUW7͗cLs\. F"oPb@bAb(q!kQF,jHψr"Ui.eƼK%+j"GB֙#C}=Uu9t*DHmXp<ޒ^K/.bq-DHUm82T8PU::,*Q 'i3Z}#ĂёSnrEQiJ5Ab!2*8*k~mQv:6 CTl\]Fvcvgk"( wٙ=bb)}n!~xjb]Fo], $$,T jzQG,։#R時Yy\,Vq8z[Z)2޻PōU$]oifX<%H Q*ԩ)o1(-47NjhH+{+dUhp\~40h?I,p ^J^M5|qMy|OK,o0$n车p:'MO bs.b]kLQ.7& hrgb^75}B\&0(K d9bhW 吁W_J  MpP1(T|%("p=U3+"|K5E.'7EXt kJ=&B#ikC}]=B]o'm*3`gZ?!XuǏF%O͕pNǁɳQ@bQ /p)iZ|VdXt*h+GbME4;6 ޽DVkEn蟠-[h֢ hdtimASb@bAbS_(Qҫ~~\ndE*$RNX,FU_,2^u( o9Ep"~+a?[#yW]-"xYH6oM0ՏApMUP[>%n']0 :  WQ'qGY\GNZ7k5,+ab!+v7ӏ4͍Fuu@9y"}eP Ƣ*n''%IpkP0k̷5ba$ &qyy xtT-VgY4E[˶Y }0/mIE}Zu,랺B~gGC:[A)gœ딒5=.l2W$XXX|_r˗1×RYq׌~dP2֙dk,"3, K)qCmJI pGYGupbob}L;8D*i @,H,H,^[F6?|0݁V6nto7Z)mU)%}k_ٚ#G, |Km~a׻B܅̫T%~B,  %KSA$ss#*#ůBIb VYĢ_R.WrD_>bXXX2*m!/ǑGBRF?NdS#/DwS9>֤QNgWex @,    @, @,    @,       @,q7l0Nk¶^2ʶ_&;^P:b@bAb=>F|/}%3{odۅmT=ԩ rTaXݿ=<-OxXgG6j g=ѝx-XXX ؋X%לVc}9_˅=Gl{f]p/u«˗xit X;o20xLi7LLorfk?x01TdeMB7v;b@bAbX<ĞNjbkԶ'T^DA@|l''yH,f_LRJ^]v:ʢ}!7#}6jsQH.R,X.өԁ;S=&|߯&R+{9kx nzoQo5es,X ǞXjf@7ۗXգ~`Ĝ!T>K,ҵXcH,J*ZNb=%  b$H,XB[<)ҡeˬ-A+5C򉶉Űκ-A6=™Y\΂QaTM, X bqĂ}رpfn\o%rz o>x/f h8^;o뫦i~7_!ʳҢBW%܏WN,,/Y2moN, [1Mݤ"bEYYGX-`$H,X)ĜgzM>4=rJY* p%*0E8ª/ |I,(pH,:RWYu*Z%U&ZjooXT X 8C}ts"={} r)bú'|Cb[y?V;oS5ﺋ]Vb뢄eG4g !DsAНp/E咷Cow]*@B,G[l9jU`$H,ψ76^b;d1 a|R6" S%VI^"-RObamuXI*pKZ=^kEv[|e X 8 ,fI2zs[KDc'ۢeJEb?-ǀV䡃Dc\]43_ҍ1ĕͮn.Qk)ڦiEї@,@bAHm9Y_w/g}}b2}{텠Xg]З@,@bs:>Ϟ~vɌR2BL =O<ى[ˣ6ᲞYۙLO(d.%6#2˦~ّc2CYL&ʯOnnw(of_;?ͦ&'nHxSkr"xr{3gx09  @bq1Rt!@x.rOnCo@d^ĵ&td=!&i«#"&Q8)OdFB'BOX.sc&2R (q6{JXSuH,Xutֹv1 E7@Q'ocG>~/G7G= ȋ%dwvbcqWEɍve(uQ4h5!ZQ%S!պ"ߘtg#S!%o(׫T`X$h!bHi@GP3:>RpzOT>5,丩pyGSQ>J@;wL "{L=xBoRgp,~$H,/K|Af$!Q,&{DgK9B(CGzԇe|ñbj~!˼pW ,^uh([VvAzwW]HH,XMz._!zr>Z% Ct{TQ2њؽ%2>s-:J۔|f"x0+Lfb!ޮXXXq`L%(ç,xlu/At)]bo XhMEPQb475]H,X$DBqbHbqͷ8shYoyzi23D3C49y(T3]bb $9W:BAX ҏ"+bwdMs,Rmۯʼ- b=H,X;˔?^PbW,s5I,{{j8'fﴴ(E(إ)VkEV@yӬx)/m vfׅM$u3䳟Ĭ?nzP)@XXj6jS7E~v'^x;/ޓ7=, Ƃ✨#Ꝗ>|sw懘w"mx̓EoYl /`Qq/S (뿿kx B,7 gsmKKA9Ÿ75! 8/㑫FhL$Q Ě90zF&)oyp"nlx@KR R7?"؟j8@r+[ǭj+rr$~J8{`JN1>?@IIظToE, s:tnd&߼WymR%)oJj,jiT;9BB-lCEIǑzpn9g2=U;H,{>m=hybi7rZ0nri1 `XX+}[> *jͨo`aFU^2݆cQ'mVbWi|1<ɤu,bCjN0F&*E>}5~ucFsب) ^qHA, svc$~<]8qXug'[u_׽xշ' u}HuFo>Ha_m. @h,h,<] ,  ry$V` Ƃ?䃘͊-h,@h,h,c*YqXW  X44Q⻉֭V(,  ` ƂhW*a@cAcA@[ .B0 X͒_A`AcAc44@`AcAc44@`AcAc44@`AcAc44@`AcAc44@`AcAc44@`AcAc44@`AcAc44@`AcAc44@`AcAc44@`AcAc44@`AcAc].­DCo_'4XXX.hA$; ٥д9t`*4 44-Ɋhlqq_dbG4/VI0O,fƂƢUwL\97'鿚_|DhflbwbY;9YhUA݉keI,1\)ƂƢ#dQd`0iC{-D =Mt|ioۭ;m,h,h,Z/o2v^CKɕdIItm0;1[*è|2k/T5[ض:FY(8`>ksFUxlOٶ{æ3{,+$2_كtK|դY.mԃŵ ۻ:dɶ7* %5mOy_a7Fln^W7XXX% E}-wj-1\/k?&s˖p͍#[;74zE z⩈ EƒjKݧPQ>qG-%W,q̩=Oz^sz ^^Ss]<-+]d!mhՊ|ÑsE̩'yI_1]MHno޹TTx|Q3#G-|wTb`Kex\GߌvM wh_8Or|1p?))B$Kl,X-Xtq?/-/{)c`ڔgaɗ7Wfev h`AcAcѪ"{}f-w^Is^O\cQH^np^ W, -d?yE\dyrn8[ީm=2MJXoot#2k+2;1Έ[܌H?ЮƂƢeN Ҧݖ|؋Й"OL/9Ëg Y[K?k . EySP>ԧ5JY }DTDCǛ9>jE'EE;oEW mwm#Gj']=>>=XiKAN52,kY"^[)tcb-CIْEy IG y'ܮW8@  K c]d-EFZb'X lW6Ŵ~l,:%GIʪoнCt:,^NNi," 'B̊x8 IDATskJcO2 MbG gIT9y*/*&|3=̙{H͡{M7YkXD o.@UBP(T'F,0bqUݟ!a9k,Aus l EXZ/9MH,Γ Jl rޅ:e9A<[)zGq BP 5U"+EOt,PnY| s?B_bE0 E޳ۖxN@ X ABP(#hQB|s LZ UժmXHiAP6bEb`Aw'^k BP X`ĢEBo(8x׌`1#XtV}B/Lc,BwfXdN{PԅC8|-5jFP( <F,Z>4VZ:TBJjr@Y)e %T2x?'U>| e,198X8 !OE_m%SL," eE]#XZr,E ~vP'@P( DF,Z/PLO1@GxDjOװ  !j =kD@ 9-K6<'U#J!~QBc"ITl%D,ǧY~p#X=Hݬ "e% ll*OBP( Չ` X.()%]Dp@J*[&*5lE!Z6yCDZi4}Aiz-%'SF+Q1SeoJ +XҲHwhdY ZP65R<+"uϳ  )KL*bȲ]9"?t܆8/,zǀG 2%ھr1v'fo1Iv;PC ٴB!".P# <#֤CBP(TF,0bq% 'G]}g28dpS[witxxQlZIΎzzf G ;0_mLYO&qmk9]콙B#/X a_m Sk5Tsl& A` XܸC#7i Ka!Aܪg o1^̵TXY:~F,nZΗi7jT]ö4 V,m5H  O`ű`: BqF,nZ f3ɦMbF Ry"UUWuk `1|B5TZ{ R=YN֪\{?,lCEjLn  X`u(+6~[astڃ ,/nKT?E`䝻F@@@PM#y>2}-ݟmlP;.`^7 j &s{LF 6CFq?e>0c#iHsSzg\.,w]_ #@\b$k7S]eAXF7cžv6M9Þee! {a?ALU>Į@+Vo ‚ 09Aj!1dvm%cªHoc6?򢈩sQfGPXdh@;'XR!_giy(n ڔi@ :K`qn(tթC^d2n t}b}f cާ3zC]1Ӄ0:-ڳlhmMTS/ A+2NVi'7 \&*mˤ2Ef%̥V[l>7Q(F,0bB],$)Uɤ5׫Odzɸk ꈌջ[̈́%?9ݧM2>Nݏ X S?(Uqs g b !t"$?=])R@yǗ,u _LbeCR}XPgG"C]CL8IYX| K .YrA-XzxF&' zگU,΋v_E _~޹55lq# H#*QH&Bqs135BM KV/QNvwコw^^ؗ^+}Nr|nыsJ-q}ra VrAg P0]hhXuMmj!XC0E4r̙p#Μu>"-d'2l7q G\]eEGiT1PMH !|N$$3<=U kB VXlaj}׻݁ʘ VaraI'U lPC@-ꥋ\ X@.?> [Oi!]j {WLV"laXDϵ+zlT NkG{|bNl$gDܓ@@1>x )LbD?8%vO ,6W 1-e1{64a o PM[Pw668l1v-Q/#QuX Gzvow4X42!6@@Nw,_ȱ惮6R"r34| ib /rhf1h8q- tg#`7OA PtJNS'"o7<- N% 8M beKT:԰|˰ˁ #Xc^Μ9s#n™nBB=]B Y Epv B~GXTd,ziIEZ=]qq3FԎ)9XBxnx^(y0PVTmEjK ʪ+wMS .0EȑμT&](Xf+a X yuFVEh}1ICBt lA P&=R!O> 1s".Sυ[W jJ Up1,@Trϻl;k4D| 80XwΜ9 p#Μł,~]aFDdW5}=}oԸ,Hy9ܩ`I~ٙ+y)(팏 RE0W ک-(JŋV 1X@A HM#&7 V~=6Ѓa X >sFjBǁEMit_F2 8:D3#dz8qU3ڄஇ{^4T%p{LW'SSɝ߰jn4DUĆzab"rә3g,܈pXVM`1v^?MX> `to X`O'蛦[9ˣvX}OM k4Գڔ@j;x %v`9(X_&69;U:߇_,R`[্`AC43E ę ,b!X)iN"T\`wk&%6H!Eln:snX8s Ẋ~w?7a9ُź+|Kiu8%Z#+b9l^w}bnƆg< Ŷg 1SlFJ9RdF@*[  t7[7A 1_,ƶR*,`닥,p: iQ& vOgX Uc I]P;g\?En0R#5FcMTKlX3ĢI/gΜ 7bHՔ4ŮnInա*%nQ8W**,.^s3}H=TD^P^rP8s.ɈJT(j?ޠryd d-nKkr0Y,PfըU P0'+v ^@ Vyj F,FX8sF,܈3g:X ,r 2\XբB!ͶgZ,w`Av `Q.9!`MD q59271 ֶzk P0kH?7,N&őfo'!ɏ`ϵ,[-ї&|րM 7Z-1viC jb-X GT5vw{t鍂u+8er-`aj3pK0~=!Yߌ`AʌP8qmVww+b]SE},A&m-zwX 6ӡm46`j+!:&9sf 7bF,9,~ũz,:bS-ʽ~wS.U,JX{.=ir_].{6f D w`}II6"՟S5-T!=&dɺxAA?,#CCJo󊟳`%_9052!;`n6`q,wV~bS*8}h:hu@*g".P#CqWyh|s"+rij OpXdoXUOY2^ӍeMw2kka7cBXQK{)_+f,rkӬ ưV4{p^ ,k싮0$~k%mcV`g^mhР+M:Mv=獅~c3jO[4m.E,ϻ J^1^kNUE7h4T[˙>n [Ϲ{@~> 0" Z|y!be_~Qtz}' /8BgBO6aA41݋8^c9o;ݱ"Na|؈]XtL3dz Gnj=v=yRdtw,ϬfkD\6}:! ^3qb(N [A)w($27m[g0 1셾Cb'a!j OT;'aYX_VxqVāSva,Lu [hЬD˟nveZS׵ Jh$,W9&t%břzނ"~ M0Es\ymkFQC&yvg~`kFڵ_Xz9R$5 +f a[|_9c7Wo3~i(ec% *yņ\8/Z☸g^ߏ;ih1vIX#kEy9 6Jt@{Mt",T[0f( mmPW1i6Zh<Z8H*Itn)m\l4,,^пkbwV[ؿv^D,!B:sfm[r殍|nL/~>2^?,['a!MF igL}i2^9\H&v9^9';H"a!,Lq_$qU{棺@q)3Ij1JlQ` x z%VZ Q7pIܿ}Ki`*&aA4<_ߥdiK)^ݶ#Boԍ9vH/M}_ۜ˓ ٍksg VM-Iw UW^"?.Al(]# z D,=Mx?Yy!(  s7M%M??=@Xd7UTT?ՃÔ{;TW[Ƚ3K0BG%M;L؋UZv9',@5_xb{J~|SWXĎWbu>=}eDݿ&^jJ[$Z8C`*,ר#xmŪ z/UQHBXX bqy>@a۝1c꿉>Q8s$iА uńJ\)Ҝg<Ag$DǕ4z1&lŪ kh蛪`=qO3X?4A!"Ub--`+Z;,aBg›s)0z<{ɒlnٗQP( BU X`Ģ!Lk1 c5otex~ 2S~ș,RqXA,P( BLF,0bѨ  F?̓EL%`p]:DƀQ)m+DҤ3: $XD@P( 2Eڥwɘ@X4MWz5 U4`]D΅E27c 6G UF,.,P( BLF,0baRvusv?0 EWew`A ( &;/  BP(` XT.y\Y4W, *w^x+I9Y#(f,qerIx-)S"XP( B X`¤Nt^݁N_O{X[{Cւ)ޕhcp~X*0VB dZ SQKьN>6Bt( BP#0)`)%&|voLD 1 mjֺj/zY7I9g)Fnj ] ,lW߶tթB_>Whş7`VB X`Ģ!gW淳OQMsKw G+P}X Ύ &l8~(XVk &,@ BY%TJSnzׅBa"́E!\I{h)W.PΏٚrS?fXK)Q ݒE~ c X4r&PP#xtI^kUks?l"9sLh, E^cek(b I+q n\k7YߦLD%X|)ɹ_ ĺ̽q-Tk.- X4r&HP#xle=l;{ O,nSI+M0`aqN-f}&X Xt}G,`jǦP,-_ܳ XlX\<'&2o+`li! [xT˼◛nP(ԣF,0b:o郅FT~rϾ^:r68ЖsV?s+:iVvVa3m5ԭqC}úׯ$  ^zU X7`akW ׊ZqV,zp:XD\Wrm`5""N(pNǎ;a9ޕV䡔Ζ`! jQPൣ=f N+P,*Gj7abuQ U+s*b4)}~wPh5Q X`9w JiK^'g)PvgD{ŠH(E}ߔy]=9yNb88<>t~.s09eEqtŀz푛NykQQ*Mp,Lw()y9]S /9BodJ\n Y9ILT)]QWwFigԼv!1Q$EqE^s>nTväv=XCڕ]:"v'rӳs(ڂ-]hZ%BxC2%|(-Wȳ[g ~r8#y.\Hؽ}@R'޵r':vnpW?GK$#imD@',1Sy X|ϓŤ Ml˰jf2`VC'nqEԽ +z8wKgdYv !υRZ-z?Ӗ'Q\փi%v[,ʃk[Uo' qx38Q+CZ?'g]*)iM:ٟUGWo*y 㾓^{?BP X`F%1W+) 6h;.~08c폨miR^lmN*.O& r,2=ŹH*_U jם> ̧q8AyGN-fhѾzE,|lA劽zoUvYeQ=]P֖,FQq*Kcl"0Y{qT;*uu֣ k,t`}v;K`̖2=eW^sV*AߓTSRJ[ѮU{9X6C_C)w`#vBu/ijbGS E^h2$!! ry⅒ X..Xa(O3=C> $=rb>w0G.xQt?1 )Raqm)#£n1YRxwC }f8,Fkɷ"W;份|w zfD}u?/NVs}އ _C{ {6m:b#ڴR9:6-GBȆjUPxD?3 R1ET5df/s<a6 jjD=$Ē8.$OzeeW_/.u-EG,p+Fs`aCۍ jxX48ouQ٫|$u̚KSkS'D'f~f%gi\e9_Fj?jIn Qqц< S GNȵ,UHV1>~[qچ\ݐ|r~ݍHI86i 9oCdF؁]pwzS\$Fj8lp8]&vdoa褳L^*cx+,|-_Ii4'-!`1?W3P_٫K`qcΝC $`b]зh./8XXHgo<7^W1U*hثe.i ЦN¶2z =a9#z6ܛ#<=o`nkcUh<ڌ,:8˹]`ѕP,`n v! gI,XCֽS{ f0{U;zNz<,P^ `c'`;KH\rgdojr(L|*,]Ly趍vz5!+ %W)·OPiAO,d~,jtg m7:%Ґkشc0KX硋Хa<".BQ ,66XK2`>888Co5`^AZM3XmQE[Yc>Q./|Ht/|{i Ц۾8u#oGV!yOĹg8 ,.Eтu45Y cJ86]6u9?E3Xx%n,6nkqB*0h&B;5X&=5Boqy $SټBD8 ,PV~,Z=͊`BXj/>bߦJ{fDܢ@كA ,0 6 h7:oefr[m ,Xa18rs"kb_`DG,`шo{b`^oXjSd0XGUK G`MX舅6m2fn_`3ݥ]1޹55mq#vaWAH4r  -GHD')G`Rw XrM2RNV*`& U/(^(Pn =o ,u'JL!`q'Uc?,BCB, xBrs8X @>/>/{5G4`єe-`1-6ȒK¹ ?w Ht[rQ'nS8em֏,T@m3,_L[^L""$j,fS)`e$L1_1N# m(XxXw}3(q,'t`At2}e:P־`Qyb cQ/FTBT)~wrf~;t˓ԅ D,}'=y$:gnav  Y;;-BEr^!E}(]ϵm%]O Y IDAT7a@UB]GԨ&`We6sd_=Ѓ{wȶ5EZIitd>>p&x^.d m'A&DbV?tPy72 0YdiYX!L|ׁjUcXJ XxX1VE3V:  b\5"ߪZɿ{ݓ`Qq@bJ_E>uKwD e<'Џ%k~_ B > fYEw6G+p{5(B䄃,t)GxMh3GsiQ^ _˔)4 ybMׇIa$tֿخ1/)2 fP } <αMv~rSON^^T(T>ia+g`'φ E X0rC%>Odbx꿏/lѲIӼƞեB jh\Ni5J1!BuABCϋ <%`ޱ2-\4²sҳE[Jgr[R(X&yH_z=v`-z s'Iy3&E\## XIȓȴ/yqPU(nm/  D, 19>SQ6dra``x/GcEi~kw\Ya`AQFרs$p!82U2 o T{b\J]z"5ێ7R fq=^VӹXlҴN|сvs,Vdߒts׳[o)Т,f} +`AK-ǫExv_.9X#)3Y g ݨIB1^~{*ceZG>B_VpP]ߑ?ɊMToY+ رl# X'U8lx)RcP D㾉 aGVZBޱ2-B%n[{:U=p'-+`adM`Y[gK`QaYT'A܊#*XD&"%.BX@"X@uqg&&#iWɟ5˜JJ` I{ܡy?whhi$h^q>.*k~׍.k=$?X?fȽ'F`ARԙ~Poԝ9 ~"X `A>shho7>..#mc9%2;F{Mjfy`zުB=O Lm׏H{fL׏?{J s;dFWUiX ި9en8+ceZߒ_^ܗ>)CB1͸3Pri Xmm_j`Y[__% $VL(g:MԢMm*uɵ ίoX˒KsR``QPJ`C"T:bK۾]g )ĺjl;+$?nl{AHk=RIVѭu.M5ۮusvWy86w=7%>UZUYp6+!8ս^hU啱Z\)’IrFV/XӉ5:cTEXmw\AT;X bDv/A' X$[k(~H]gcOloA"X@ TWxtbFTuI]d:lxL(j,@nc3@P]h$,]d m~VXeA D,m Cͻ +9r9yYV*z 5X bA7Mćy4 ;@Pwy$8  D,W[05BGkmsϋ?pGBj\Q#@   2X bAA],@   X bAAAW D,KM: ~Xw(fndco f  >@c}3ZX@A"XԬ%^L^e1́뾆X6{   D,jcۜ)[Scܞֺ'ft jQ0^7((ȑ`+ŪEUOmi;-qt<9:祏d'!W~P=bgʥ7yg AA'XWPS&yNb  r7+XH:H[*ӜǛ7 K~G5 o{BXX=# 8V,bQ7$/I1K'/3}I& bÄ1ԶˊXQ*«lě4ELYȨlcIXAu|Ñ  $XWJ5iB XT 0>^Ph(GFF"my'߫}8aUMH\V* b$ֈ9nz|d?Gefwnoo.j8AA+XMSc` s,bUNLY9 "-^0cZyGA|Q,ė ;)& ` Ϻ<;gbai4AA7V,6{WX H;+X uRz`*[mZp-H*wbQS.K7rHuʔ,;BeJ]baTyy=y;]$/ޖܳXnQMb1pԑi'FP,ӎӞ!7`v>6{WX H;+XHMkawunb V,b{99/_;T5s5eZՃ |ijLoӲkX󐮗`Ӵ00;Nht+0E5h5<:v&b9pZgXy˞64 =DgZGlX7( 5^.-;,3~K^swɗwm׼G>Ƀq/C7[4r8L,< :XXغEHX3[ن`ײ~qn oag~\Iܣ[+X騟=?Ջ H!Dͷ.QBHc+YTUv4laXO_"\Ҿu}Z1 / ?CW;mMoH'djph  枰V⮿Sk'$i=o"DO»o { B4IEh2D+jZ$O>oփjq\TvY]r0|yΥKm/*H9w(@tr&{[EKUu-ם8  ߾LMM)DL>r0낾g:U (`v7ct"z?9v ,ȝ+ѱNБMX: *{WD҅"$]3 $^1@Yˊ@Z Y*/K)otLՋ>Nfz9s'r'B!,3QT'$1ؕz9C  8AK5_RG~m% G*|,k=bbOX/$jНen̘1.,L"CN' AIB'V$IA|F7OY>|fWQ/#u_ǼSjhgӬq؁dYzdd$N :r _n ʹ(ڒFX ްhj^7RiK;bO0J/,F-|"7éP%+IO6GQ8#6m'/qZr{sa >`@e*C׾flFvX<8x4T'|\`/N"VQߒ7s7J\{!x>mkWEC2(,d7FHV H~hlGzߢ{:M<{1 v? >y(DL.Pq \LkOԹֆ YOY%Jַ;ίi+d?Y;醇"HHc&$Ä_}Oa`);<.,&EGS$z =r7CBhnlGj:A2sNX5QiЖA1yGշ -i?hs*,ZVXH*n^X(nT==͹J4ES"UjE@ft_4a.PX*,4]֏Ll\z'ajKa!%EXIb ^$,ZEOGWtUOx%[f݄E)_ ReɡVNF{ IDATE4qM*P WAZK8Z0fLX3fpe ! Oo%,NBC F]aqj7KӤTa/X9!,|=b9Tرc[/&^.mHX Nwfʮ>%UXCXp["S(Pܨz:(W"=6",HvhTaUՎcSbp"ndínp˵t9XԜ}VLs!6%,P@6P>Os)u nwjMEw]猍9giiI3I}FںJJ]9EbʦZ>}MY uvR2/=W̶ Ŵ<vć 63 mQ'98>a+l{T aq=5HXOsU(793z]Li[AEX\3WX(ntPDzXm@XniB z]xvsw?[i{泻A V7H[#{js @i[OBKXbؿ7cR_ξ$1"kWIZS%;t=4^"Tf񵂪h<E,)ˬ|:="1Ȑmb]X2ϼ*,j;Gƀ|a/QWmY.,CL9_Kƌ>J5ϳ>-oc`ݽXbФC/x/,X2_~s6B'QEյ-xdJ$rOT>[g.6#[{.ƿ?UZ+EngOn,œ׫᝭M(萷`s{s޹"nm‚f}eAXtӓvZwŒa@6[=Cݕ]6 DzOã!"`踿yNRE;mz%}Xb3̖`b#ԧd3=&Wآܣ($6hFD :zԤ;?U*=wQtLJX3 hR~z036Urk:PBA*Ştkbs%D$Jm Fa[q ırwy#/SnP&b*ળmܲFa#_(BKoZWNV5`ͅtH|0lN1H\ݜJ^6\"z[XL>ATz*+Ͷ qrOÅV -BE|S=g WXF DIpsiG'y(']To lL=y@&L8>tx\(~#;,]QWܨx:PX(c̀8>gңʱB Am!Qu?3| + n-B[ʊ0l}!'yk a*X-id*Bkۤ߾QMXhgX)==ҜLk538enm[+IvE`ö*ߍ9ȊOy,3Lεߗ3tU]fۄVf7PO" -9ǖ7W*CXh][7-{FŗgD{xiM^0صtT`au.^dRq?%1snRV/'fɧRXzߘmrDtPt>JX+ aBKf=u7Vth;i=zgS*$8C& 6 i;ڹ/P?1%8D[kwXbE5WF`k@˥~,t#.K-tx4}@RDWV~mYn`Ww+]o^9ݫ|'Q`}KI%\MixDz)َMZyו(Afl/T=ܑ+_!t+g 7J+#Ҡ 7M_[IgpwXbm7DS9,mf\:ɜs?WZXbWYXe\DԪuK`N@ Hy# MkDb} T,eS)9*tJ` T,P џ$*}C*X🦭Xܹ?Yy\u/?HXbXb*Xpaa*\XXbXb*Xpaa*?9M$p T,KS''/͎!'Q{W%l\@V )?:vzjE$Cxt-,P@"2 b:\)8 d{ې.?6 ,n]p>a*QM'3;q.D=l J@I%,!PB tɔҧt 2E/zeɱ'vx/dұ$7ˠP5[ܽi#k. BP(j` XxUD_ ș #h] BP(#2*Oa`:q [u)m+na+P( BPvF,<1[G!nw䅪FAQ#!I?Tu-yU.)ѤyvJ E=q>IzH&VgHUK#jN'y&SmG@TժS= oDcʛ4:Kjx&YGP( r X`£0ct?;dA F8NiIXފm>#)HmU QVMlya`񖗏^==ȫzP(漩]IzDXxvsB#8( BP.` Xx6@˼"/+iP:1Y, X$%fqoy?.‡õ8po br-PkfV(ӤYvO)(~]Һ!c} BP(F,? ¸U(Lj랱W톣@2Z Xdh sg,V<& ˌ0;CoUx!l ;XC,: >o;  ts`aun `>J(#X78] o4u&8e;e['adKAѯv9ECh_ ,ϲLw~Rű@W(lpdN*jHr&} ݲl9oc L Ė|6B=yTnuk7d:"7Hmz6Vn|Ѣyi6΀fC " 3X v\,<1vw j,0b $ǻ%$/T`KgRx|WoJ8|| zRpoX@:%O&+`< EBi@sʋvY'+j!$ t9B7̷ B߀l"kt'R|go~o& blm U=>S-jMuǬ VqZnP%+mN  yXv6 ,̶gxOH{ d +dt׿C4WB>cQ!;Pd1*=NKӵ1u yٱMuO$h!YqLa!S\AA{lƋ̌(!4F$n̼3Bh&FȒ1K"}æTC$C!|] 9/(Rtj`4KkWRbH$i}B:V@&pGOzZ bkGW ;˙錱Z|P(T` XxU[Eޤ4)g5^˙ "#0 mҟeKmtKj,CJsN`1\mJ}˒Zi XQ/Gw˱MW7f`U-`%|XBq0ƉI^>J,Jv\#gR~3zZ"REҸeSng ʾC)G6!`wV,Ź BMh]PMLh^ީJYmX?Q9 K IӨ#?j{j"an[uT8E! & "! @IiZyU>5?zzz -I9}~tol¬ w~u$ ')t:PLӍDИ7u<8MCڹhw q#]%;XI>u_kITXK(ax^Uu BHonܪ(IQ hџ^lg V:IڹV_}Fn+( l!cf#L2e Ѥxe F?/?^,Yd*d*5؍A~VHzEf-. ܋h^WM7o}} Hz3xOHouC/?]a-,(@?Yb2AcɽgYJ 0F+:/ފIE>'ٓSas`Lsb&$ZCH!9_o,v.C!P*I&d&'M Yvin!`HǚhnLGLX,y? s ./Hr$4:FkZM#2WD,S 7U?+FbL\G^iJ"`w(G'i ieu+XZ -VgfV1GL2eXX\!`R|K~+~`\ )RV/ŕ+bJbqN65^`qB);IQAy`hA ,J{:[$>=߱e}#1}>4>~GzdWjT&eH񗱼gaW ,D_ɁQe=퇏sVUw`цK;c@}{=ot Ze Y(bS7 ι="M/ 3_|&ͳ,X  jsLcL"Ɓ,xK{` )WTg"E#x$ʔ)SV'XXX`ϸ`q1BU,'e 0c ,7c2ΞJkZ^Dl*V%nAE Zj"_ҷl}Gsw!HaG;37,qX޳a&m?_b̳ >G&vp 8bq`K`ay.zBq tݎqxIZbCmT &^XhE^D#x$ʔ)SV'XXLO ْ[ Od2)9^sqVԊ.V-2H,$`q?NC'4lPj+FHwF vb` ttˇX  o0,<9rbS`_+ܽ>rN1[a+M]~? ^W ~⽫Zya~W`" `Q}ƈI2eʔ b*ʔ㾾L[ͱ*ĭb&*7Dn 3 0|)ir'w)T c# y@_~ޥP;Ari,Ā̳ !G (,nRnDIy^=!dC;f3׽7bbε"m|x``ј˻ZB~;NP" `Q}ƈI2eʔ b*ʔ%C\`uCɪ]3ZLrOX^]C{)bQ ,|}6f[W{1 Q`YbAn ŀ̳ !GAo?S|s: ,-lv&4iT1>(`x(v;^ i> 5$[aI2eʔ b*.!4q1Vfmog{h̶Ӽ[gNC%`mKSq,|8_QTRʑ.]9[,RlLݒҢc` X9R{jR)`LB ,B)xK{ d?O|&ͤ1{v?^\wZYuJq\j`1CvG7eݡ5έdn@{MA  _fbL2kXMyZ/ ұb0,Krّ/zc>םù<9JmZGm}o|&M ɐ R`WlRŋ$TwMT#xkd7k֯Zgt+SLY`*bۀ9po7Tе$qgs+1=M>7*'޹aX03d&ٽ$懴;L8%`Clxlcaf0d(E"q rlUuu}Xx)2].W[ou\S̩OWԷ}sXhs2;AJT/,,LYWTmG['C"M; ee$)*Wt(3o,Y81>AA5z$!@HXкC dh^ m1'sW?蟂qAz%r 'd %r?6X}' Rh= /Żc^C$`\n^btSТ=ׄE@- 2DltI,'ʃ^ ~oXcQ4:@K$:FGޭ8FEX!ٖ(V=b_Y"~)1T8?);?0"ჅaڄE?tgֶU`2EJ._~RN¢±ME +tf=‚ hbcz_|}g"HਧZaAɕtb֫͵je_m.Iỉ)Yr)zK ю_ L:C=ZcmNnRn/޻0pPWc%&#⶛|3bRߓh wEkO.jp,X+OfrR׺eT$K^McJKAy΂}KPݶTjJcDV K[_-;>dkU %u2-]DXX;\[Й [T8FL2V),obXX#.SޚMf?CPc%oSmx5kwqBkk(;\֨$u.eF^X*c,-*ߗ as6SQ-l}I!sNnjP c-aW1&;uҾ{6QwG0Պ`lJB=D{-0=` 5o$,g/ΤO(vX8ڙu gJ "cDi^gN ,V87WטjLAl25&Mk5Yu(k ι'} <œ{cV",\LRZ3-<ێE/K'1_Q,jp,Xr9KRH_S'-]ν =E=݊ei\uy6W_Wm=;Κ/a(ߙU9}Pr69\{ۄEv$핎S6rhmuW_e׆v~XM%=}l/薪*c-2EXc@ p,XPcq&Wp,CXұ ѱ;p, ,VXc@ p,XPc 8-,Xnaqp,8eaqcq\ 88pc 8-,Xna)0Jf<0pzM2ΠEX\k.,1 cqXp˂) *ςr ̮ p1՟-XdpacqKw,z¢,D ^S>NThMkpޅlp,nIb 8UODG [|)w`ST4MqZ{Ϥp.,X,iBaqiaPcǢ )5ENcREX8J{#GMuT*|me V1 X|UVX|ku,IJP±|;}Y( )cWlٽ )OL*,rcމ3geY@X`zcӔy#x| < f-*_xTK;㰇<]T9R`oLjJ& (w5ҥXo ߸9LXhY`h NJi^xu !, RzDogm葡lgT>kd%r)Q1ԏQ%?U1FKjmV}riUY\^cdG_FEt,T(!,cō ",XTQ;[AşpS˯3~ Z}]?+D4ۜ^a"Lg!C%C.6%]a;H(_kc(+?uӔ!zyW'FR1ĔP(cqJ0Zd~ yw,1a+8B7w, Ǣ<^{D҇r}-˵TrUdK?H񴵒$XC堂-˂ꪔXx~힙,Ewd:dZ?9@dV6o_& pł/j4[ǣP7ܝӊ))QXL!&4񀔦K°;{(XxzшyYcR,QIEuXEY8l<[{XSB$tX@)g;hL wlb2uY,R~#zjPosQxIXxzb1? Ģt% )J'E'bbz5X|%%,s6_X'nE*"9KGG(]Ԃ1cM7%׮XU,("Ҥ]_1gB,.Q{baMb17E}jGܝ~,b1^ :d c #J\󊅧--vƨ0N,x`Obź ;؆";)iϬa5IŨlLtZ!ԭ( wk,v&bW+N60{wĂ9UӬ}@E:$C^RO4-KYbKvX|dTwY,ܝ%JU7C~)wj_,|{Z (ĂŮ]bX: 7u1>O&({=g{骾ҽhhV$cQY,ܝX ӔR,>Jx6zSo1;nD)γDI? qrWoY,#) C,$ZJ,ժ]WXJ$ 5"Xh\N;/0e +d7'D,bW,~e>}".ir~EwKڙ;B[1"0XŖ-$YXba+Joo՟f7k.Qr(UC,Z't;p_&hI"SX4Ykgk)YO5#I!1{i_olg(ĕhz퓻zb28pZ$?^x{Yx +JI,GXT{QU i;1ɾ(3v\pMŻS?g W,ޜҫCꇢ9vquvb2YP < Qh*f?Ɋc_'t#Q1M^B}rgoY,joĨ0B"L,E,XNIqBKWs^ [upTΝ=nC,VCÓ='Nm+@9$bY i[( Ə#Fuv#'s&XdJ,vQņ $ v obQb!o jyH,(H,MbXI,WXVXT `%bM,y ba-]WTB$R=B,֗XBE V&vbQ' v6i Wm rUx{%X( oXB104C’X7U%&Tb%{Bl U`%b2[xXlRźb W! &"  }!v}%*~XȉE]C|³)Xv-E YHBahXBU9 oX|iĢƙXT `EbN,j҈FX|X(Koo%U  ~O^bXQC<Ģ.cH,JH,6Sz[Y`hXؑB,6X)~۝,jkfdޗ/.<\+el_l,۵26IkצXjA,6)±-T И}萳l' '8 >DS#46oEyuTCwa}gkMK_}@يXbQQ"X5'e gm$\y/:ZY˛01Ӡ|c7b+Bs;mv]K!hk1?/_wC߾%[܎}σEVe.OBw/2*3%ƿ& ĢBY"X|Wb} bʎ+lFhE=LԦjUGCMr,kH,*++%zbSY g WR! s[(s(3C4 ׷S"qv D죖dG޻N?{WՒœ|yLfd4t@FԺMm-tՍ |EE H\p̩[Q :u[&_n/6<䭵~quD@ R=&CkEzy |n.EZN2Wv:fGڇ2SA;U8W4 Sc`\ڭ'8rDsX`ZZȠ}4moRj IDAT ϟbMLS@|` bMM-kq] =ߩ-V4|8fTSTTn)A*F~B>"doّ,tU3bĈs@,xQOO uYn{/X5B?Xh2 Plwa:;ɕo,pw)}J/ÈC @xj?OD$-x ovsG"<>ʺ ٭ۋ"d=rMb7BPi&fz&~I51|%'8lCRٮX?de-fY^t*m*ϋv+}<]u5)~:<nЇоJ"(zӲ&x. 6_Zu.hM\p5 >&)&9[mVJl>Ռ1b YwʥK'&)}XT7PXpt#¿88P^xeu$o:H^ķ+tWXX7ܡ aDs²sxr|gqm$]b Ps!nN\Dـvc֜Ymͻy(RDQo d6바DW ˁs>t;޴q?bLܻi)Ԧ4!ڷ;jsp;ٲjq 2#6`?G8h)ǡs$/ #t B0Hv$S(Z `*fne#s |lI̾cY*ٗTW'nvY.eVh5v\ Z'ӥi'qIVt sii9hiGRMza-Ȝ]Ir"Q&,-3 ij~-6 ʈMYZBFW͒Xa@ۂl:KUGYp5d|/ Nr }*X>s_5#F9BͤPx?Gb̉["Om%1:GERH rm.ytR2 @o%zT*0|q6ʼn u!ڳ![t%y- b=L.\Ӥ R'|,k+vS_Y} 6 ?lm>0~fNa]xY+`iN=Zbzh֜Jfxusq-}5"(pf,}xHvAVŽ?')%GfȘRnrJ1[Y}1mfĈ#XxnP۾PX|Gٿ)bO ,0r‚E^|=~~VT~Z-è̀ ;XNΈ{%P{'8?'hحMqP8IֵU7NsT1!r܆DXR\/:Zac\5Nz:yǏ7GwZbH.yAs_ۨ_UHFGT>W3 @nv4w['tc3ڧ2sxGM.G^j) x@ݡ)hB8Dh׭8MV4 8c]0]ryc 舠E\%>uā~qUɦieq4ɒ=(OORg. ֬XbLp:X\"bA,~ baIhX9_2}ɣd1GB?vIv%N-ƅ<`;.5]$x? Ie .畸Mhw@|>X΢ Re9%Ј]5zaCQ- k^so$Xkn+D\vRih3+ny\6b$ +sVsDgI-+'ҤOs_d0$N q錟4%[m_Odn/\y~.xg7@# uzf|wX XM3H+hy.;DwDI"VK"P*6"/B9ڏ֪:~yVD>1 =DD$s悔pȧ5PrA^˭eC<)~#Ƭ$7!$/xLP7fŊ+/$w|QO!BI/ bhY(NXX9_a'\(Q0D+l$R\A^z/x(=FoQc)qAc~.F lO إ7^c\\ӂ)vc_.~UVp&NumuR:xJDP\ _bwhq ym&H9aSieq$YB/>'"f9xj1'^ajW (wF⶙+VXHLX\&bq 81{W$ K,3A7;t'^F!e :lHbN}y:c݀SF֖VP[3ӦU)]Cl_.jdf mC6;1&1-ĞA QvrjC6_fFihQ6.ykkOtv|իz$a2*HDg7;a Wԏ ƼmluʿMc\Iپ :[>McJ_JM`}kUVXzbt_+vG,N+ e&YкPf&$?iҗl¹= * 52Ddߓ| 'DOHiU/  M|FM0^ U(&K- X@tُ Zx,3GHHnЍּUPN嵙]$ JIXAg7KFs3{ZG|=(g$0mvk fҙ`ibAu9ߖ ="}42̄ ^G,K3,rڦie-ڜ` oL)x]5Y S; F/5g*aWYbډIYzEeEM,z'w+ɂׅGÊk[9/V?oǽFS8ߡ\Ӽ|g5^gW*V\or9cNj}_*ԚˡJ5(7=nuW_ ůVN>0V<0[Yc7}l+wq]W`!,6D3KI(!EQ%F@ E q p"n RnRqE/{c}ιwH9WZ?a87k{CEguߍE6X `ND^r _ @寺FGD { b&36Xvdo>k=Ə*7z$<<%m.>XK2fJE,j@?9̃?~/~0`qW[|pE`q56%2_ _U]_A̅Oŗ_|O`\"[RE: u,QBooP ׿s-`"ng&ޘ`YP{j@_׿| '~A=XĝPXq•,ոpV|5,#wBU"Y6+oDp%3m% ? JB-// =ykSNmlpssskkkwwr}){{;S+Vܨy5˗/>-/"{t8ިkzM^ׯOvLGp<O]<}?{ѣ`Zm&>PCEK%,ڽP:W`1:Y4J1WhqMxa Q,[dE,E= ۺeoeEYhi!*a P#+n9_s%n[aa,PihYur 3* qˢX= --`T,!ROR* ?5MLB .ZdE^pﻖdD #-BNj2^E^  /+~`Ž.a~v[ 9`q%X8eqtʢVmU:PH:Xx p,TB i+:(+L NXX\HE,#XۥYx}CYkf5(Z$Yſ㽜!l VH]}^%a!nLB%t/;Y(,TBm 5Ev*-hG$&3P[ZW B.Rr ), mt(jP_ 59 ٴhȻIDAT[A4XDWaXA\a AXԹ". ]P B9eAe!kkf6Ga*Z8Ņ-sx\d2QpB ٯ)X\ Estn\ %,I^xBn-FYc5 _d!jaE\BE6h)"&q]skn E-,KծK `Ѫ,Η6WfQpVZDk1NŮ`bsk~HH~v"Ȋh+]`ŝ ,rfKPKۋ -{)wBɻkY$5YPh<-R"$<`ѶT]%HkYꘅY$"ZHoą 'Wn L\E#ݮ +|BfCâ:wvB-*X,eE- J,PQZxkŸ-V 3q+A UTr3ԇ𫡄E =%\x p\ 3<Tp!V)(jW z#"X XκYs]R[ , "X:_T4xԁ,,бBW\Q"_hM8W*-]t8\9{YHiCeH ,ys`\LSCxTL +'|E@6g 3*0TsV,E -k!EsEG z@WlL?[Waly_ w}"]X,4XlqpVqJ,4sX (`lhT( bWPA(j lja"qve\B,X"'hqMhaPbdŵ\HuXA(#,5`B-`QVke6b5,L"4-Z,r:,$QRPѤ e+2" *7es$,N#',l},|;, EB .Ic0F%J‡ ++%]q wo՘+ xt(,r~ ; ( r6MwjEVZbt'{g[őP,m؄H v#`%&`0~C73]U]=w圿WSZE Y+\Qz|j6Ţ,~B<97˺YC)ZjQE qNTX1|\s>(2SJ,`qbaYf>7 -J(b1 W/3 niLT!V̵"r^a+"Ozb2+'^PgY܋h*Zb.j#D%*dHWL{Pb1yE"O/,6Ģ ,fI|:("U -\HX4 0w)tH bڃ4 u`^E,e(,ޚDȗZLv鼤/0 8OF)TH3"?5_W\^XyH3m(8ԢT -]zc1lB(yDF1R+T9XzyŬV"hjQWV clAQR1ŝ%WA,[e?XŲY_p ȇE9[n˅h0c HHlSEnV̵ +aq2YgY\f!|i!E *]xRPOW+" Q+uŜ+DBXt,B]<5X⢈ŒYPU(Bv _)a*/]*djŤ9WpI,.݅Ey> p=E-ʩ\-JHBtK76u'7U̱b帢y~"-B:݄:XHiePfBxj2*Zj!dww]4`?~S<-Xūr\arż^}⧥On[,'g6T~vD ]-lEy / NFI,Jb2Wgf}EO͞X,|]/Cf-b:[dʅ%KXVǠ*w۪WP+aq4hcOY ny]nS"[~!Å|ւjQB *nV̵"WmyW<5^+b/CL0f!"W -&Z w&DD)"UR+qf* x|b+0͢T<.]T":ENU|hEy zi"VܢY(BU qm [ds8O?z[*UU+\B sm^*۫>X4η"HPZjŕ ._-;P"UVcSHkP}ŨW nM,'gmth3/['ho|\7a*WOˊXajEBAZ8X-C-jŃ[rauD 1筡8Ei)VZQ\],}핅,<z*P-_pa60`ltEt ln岢Bm/zE#X\Xcb,;-iJnÅ|^=kSTZ+VL[Pjx^ѹub̙mYdx&[H -5q!:VZ!sKn:ܖvbЋeiBFJ-[nqYBR5~ȥ沴{¬A͹"~jdj/X'2԰YS{jq˅~^͗E 88&a:)J+Tъqh-BXDPE,TjyNhFj jqR*fHV!jŬ*W4}`ѱubh%2hY-f Q-l+\1JqS 5kYs_x`1$ԾbJ:(U ɅB0pPzcĊJ+J+:>aqD>1-\Q-\$xrM"\cl eb  y`Cx }gYhQCPnaBť0p87-\0R!hE%rŒWib3gY+J-JnsK*Seg*rB ;> h 5fYtEq )^bBaBJEeXM"Ģmj*R-*r1Eҋ06 .,ZOJ)&0RaBjE#WA]X[,e(qb!ZjaBE cFT6!"; c-h ""Z2 /Z(blB/`45@SN)fBiE+xEp}hŏg"2*Zxj1b/";17G*&p"WbkYjd/ax ? X9JLyxXIE`VԽbՁũb,ZU \(Hz!C|<+GI;BB:ŃTȱ^8+(]/C2Z"E a^$2a8E*JZjJX"ԉbYu@-WŕCuE/c?. gqoT<+8,N +ŎڢP<8$E6E*YiQ.}{y8avVoa(lg@XۢżhƙfD'*I aԶE/#c O= NWU ahE0h 8":{?)WuȘ;k ,幄BX axXYEu7kxtW@_ ޭ$6w aBXxr^l#x.ݶFX ,@X a!,o [CGP a!,BX'\庼+aa!,@X aa!,ީ-@Uh Pa!,@X @X aGX ,@X , aa@X , a@X ,  a@X ,Ѻ5CIENDB`mkdocs-material-9.6.4/docs/assets/screenshots/navigation-index-off.png000066400000000000000000004231531475306445600261500ustar00rootroot00000000000000PNG  IHDR XlXPLTEGpLAAA?R!!!/NUamFU\§AQXr|kJVtRNS  $8/BQ\! "#()'%+&,-.0*2:=14@3FH65L7OWTY]_ad>EJKNSVbc]@ IDATxARGa8Sr^r+|i=0߷jU7z9+ a!,@X @X a!,a"@k,*xBX  a!,BX  1?}t , aBX -|oXֆ a!,BX Ŝ?!,BX Ǎ %%S|Xfb!e!,BX LZL8^BX ,5k5j䅰 a!,¢nU ) JeH_ ,PI1qF MyBX ,YQc`ƑRBX YB%Fn]+`&JbY1<*Մ%/rbi!,@XLq ?* b;zidE^[>@X)AEEVQ^JdE_\:TaE*rb;w請2oXoVQ*|??"=0GXM!{tai184+"/(ꟀXcuF.qbHUAM{@YsW/A%4)lZEBf]9FENP>XF.ڢ'-jYxSoVIO^D"sM"H$!q mhZ,]3-zӢ~Y7x;+U%WebXY̢ʼ"]' 94uP[TY?H&>`>E̋t[,*tE^V(57fh"i1, TWU* }<$m7((܃*ʊ@UĚbĔx#fF.m 5BWij"PP#HE4-*EJݬدXSU,Xx[tbТXU؏DRڎD^EnZT+=YUDb` H]i1Š͊xT$B$n$"(*="+bYYtPT8XQ:#RݶI?i1, (Ȋ&HE-JҢ,&A ؽʊάb)=q_@B#ݸ؝[ҢsFY-"^WdEpVoph9}ѭ"EƢŔeqHWѬةNT"%>dUF(/q[$"hbXg+2b?*Iq`jWF.:m9e, dW"{UK @k)ˋH["V'eDX`HVlWb)= ;#ؙ[lEzhQ,FmAEֶY5*:M 7W9Bѩ;KEo-Wuŏϧh?ӇOiqpY{P]W~QE,bZ ]W8$&5SE+Am/W +UuhYL ]q|@jeq[*+W|tNz3śj]a`OśbhWx<3'ܼ_$Qi䏾fb O?,fnAo`rE\X}`(p<F?YH5f( `16B鹢_h4@`hjJ6C)%J(k#^PV(@Wϒd5C jd"_mwE, 4Y䫡*Y 7Xxs,\1ƺY@$da.Y<ŤJI^b  bEYPj2`aP\b=3%g=9da9f!$`ǪYʐ+b0p}?Sa Wp4C xb SJZU {s@b,ҘEVہ +zE7X4ٱ׬D1}͸d,d_`,,z\ОJKO)p-7f,YX6CJC~Ztr膅`!7B͈`0slݞ:X̉%W3d}ˢ\xomÇ)P=YX7,bZ%ox5B 5OnY,ł P&XXE ,>/,YT,LG,l ErqE,kcEeb %,F(S+@`!& f|~\D"Xb`u`4BϷx5nК ,ԒŘ,*  K"o,25/Y8K[ʃEʫ[m9ʖ, EjVo"X傅J_9[T XL#Y߂+j(ɢ\"[ 51a^ UavB ͬ` Y3T]pB 9X8b*X` Y(U(߾Yjh e\5+4BY+g z ʈ+ q#T+.X,2b-.YPƒŔV, c`,`!,jmW𷰖6C緥E,nz g, ͊PE C3da-RwBBE\VB)\qWwo!iPY" ,L5!O NiqtXF,#xJ.ﮡda8k BU,+ypvBf 6e!nuBiBY,\;\nXd Uq6턚-XčP \HJSPۓ`1:b!nK LXW,m)qdjtB)˽Nv\J۫^eu|ۣ*`QG, vB9v:aA i"9=g)Y{!Z8b!nM^ f^XǷSE~" vxBn,rbo> YIa vrv;*aA ٔE 8Y$Ƿa J:m˽PIºp|;`1fb!6uB { \SǷPmXb\ _f`jIf "8?eB}Rxbb!vBՅNx'B>ë??yqǷPY/T]R텲ț*Xj`!/\&X*Wi|db[)Y(b:dLo >#J'T:NTz`.zf=,F*X#uUat; _ (M{^(F4d1":^v".X, ,rb{S8eS,n  Nv,v@`Bmz![Ey<,VŝPq'"`o1Bfbxy"`a?b!"X Xe~{;`qK EC=-%X XŮxB9P,`qktŴ8mY6+Zϫ X`(2/ فo=Xܐ{B[6tB, ,R?=~|ɫΫO/ 7gB g,`q,lQM(NG,NE`:Xۡoo>軂F'L肿|ERnz! vPf v G,6(zc"m`q],`1`,y/iz,j!q`X$f?,G/ϣ_ ,yvPxC(rE  gmC`1PE6=-˂4b,!X`E{S ( ,b'[8 YH_BMy! ۈE}EvB, Jx (}`:: )X\,>XBm)Pmvc)T,eƫ;|[?u 2X\~EѕoB]2 ҙ`q,NK ⫯py<ym 78G%L[wBAAAA@y@bA>oT)L 35x+u8kSh Fݙ`E;E "O֌7bކY?"] @}& ʬ')= gd=t٫:㘼 5߀9șk!L{`q.XPXTK5EE e銮Y$!F Nҟml!chk@)^hSR6*>Y2x;!GJμK59`c X\&jyCZ2XdhHO, IxL6RvX񥂅$QkG:dt.\苳i-X8={`Lq`:vD$u#V0@brZf>J?C`@;[28SRfS* ,ɬt]}A:.5T־^= `qy}E5zJv9O,I*,vI,'kXh )?Ede]g p 1 )`";JQo`1 洙{bC`fv,d\&}8YnX]q)BAA9cX#zC!X3½ ]c`Il_jj TKQ/)X$\ 2ձh@6,ew+⩔}ص`j h8,,XPoţoū`Wx`1ꝡ4}X0_KŞ6>MNk){XLWؗA3X}@,U}gCEp߼}P`Az'»+,< ,|XL,O!3wZ-;~&WoSE)/go}Xkt/B J*`qe`qX*Yūc`#kl,vX*{`P&>qaW(fy8yhC882m۞oMpP(((`At?\ usw#8pD,d>+kB0qTOhoN`Kmvz{Qϐ{զuX-`,"[(䓪#o"X!I 7}$A('}88mlP"XhXP%ەl͝m @Ay`q!FM nܸ X<8X H>^xQ 6abFJOr?aU z$ЮX#D;*5pT#гȈ6T'NUuE&H{M`A[-J1#ESrO7k{ځ`q:X_{&-SxYb,X`t2 +g G-?W,4#iXs~7U7kFmv_18Z XYˢ)}آ-Y -@#[>X$XjL%`,N20'Q6c((,V[B$`' obz0g4ۈXg:`LxuPW FG=m8[1o0 bC*`- ,"qDml-},f9 Ž#kԾg_C-Xhd4y3!,RJ1cQ,EB5d:8`qN(Ś-Xx-zЅ м 蛷J/xj& ic;`q%[`kUYCZ F3oiLR(PT$hA֚Ac"b@ | \ڣ:w, ,hofCv[BYLi{,+y{%A w5y_ '$ ,, ow,b=XWPRx1T>5l~Û鲙-4 /1I,چޱ<]Wiw`N×#_ MuoQo(}h9qEih bkO.oC@zX[2Rs 3k~ @`1`BiQU(Tkѷ]gaXOX@<;XfE!o-X$w, ) "Uh*Pb(Xcf}C?XDg;B? UFkU悁E; `1FaX ,tCڪ Fq` G`yi!BC-Œ[1V3"P]P ` b5C<}Rŀɂf$,;BX{CQ2c@Qӣ1<6}$*F\&XX͛+tn.%o5wwc]@v%jtC6 <t舃 P| `֊`ll`0S3[o/ P& `Q'ǡ{;edw{+b+*>cq`Bps-syMIU6XP U{-X x5www4X0x uR#ֈlżL$=\Lbl@+{#*ma8#JPq/N&XWT !,>,ԀNjOƂnKY %Kb(B08-ˉK":Q X%s/ټ] ,omxvz&8X$8X|[`U,(ԻI0cq>xYn_z.[\ @eŧ ʁ6chfvP|=fuȵ`q,\ V2({8Nwbf[3cHEhR'-X̓R/*7[ \`V* ߧ+ &oB+ǂHY\glre)#ՂD+<`VlCׂE4`a#YC4=>{)헺 B y$;1ݨ&c`Ky Pe,^?XH7qYfco 0R(Y UŐ1@x_OLhF,le)/cq+( `&:@'-2* zUCd6L&\!=)Hm k차=idj8[éAoq7k,,̺Yb( 5.,=Ce/= ցŘ1rEMy%zwޮEB" ?v@sej2(u S^QY`[ :!XTRI"KJ=8f/q8x׹3yOBwM-+52;xnZIſyPQd9BPɂn_L8I7S;xzXk"nI,g{>}➛gPqGO"@mg(0m,o`{`jvj*AyY,/E6;/Tp2͠W' uk^j;|^Q|փȘ"7$X6 B ,٥鶼͐Z(zSd }qFg1[=9 L*",4Dpdˌ-ZtZPKFKm ,g9HE]TIJujeKyp&,. \tEӼDP}g4MQ7]g^*;s*c?z m  mXZxu%gAX)T,,oRI'˲ߧF%GjR&X ZY`Q`QrY ,tw Z{ ,x\luO N:vhSyf29 -M+ iy{GBy A`Y7.U{uZ(v6WlO#N~|fR3{1Ee2eؤ e BZ`joR`Sb},Eg*r܊HEɪv%aդc:lU*Ya>+p{:Cg~^8zkR|%@q4O6q-'G?!@HWz0XO+~`ЀxffͮĎj}?6]gߺpa+Hݜ¾nv>kze.{gIChI^g?0mGKWo?1'oYg T+YZ{aψ(Ģ*+SJ) Ԥ%)azpZSN8aE=[ovX\!,'-k==cU'/lUtK2!J'2=qobwJ߂d8Y[}!{@AVXso3vXȠW-᭴;i¿ :-ItBbsތY_jFX^Xt߹Q')S.>p ,8ar7ayBuŀfI¢Z.V]f@ Y҅ENy ~eq`e}io]ԍA~&4Z!kG3b絝' u*=0cEWbbV`٫׮ z8ԉ JX87.]X /^0,2)=(ssű1votU>8 . ]l QKqTXD?*ZwTEepXaqȾg o/S&,zb%NV`bL"XuEJ"wolTpDZ*k k0)ܕ>?\Ww^[)eEm}Q0Σ"/tŅŴ _&'zBE߰ô.0Zaq#cfYThJnxz2K̲ͅ(GGN{b=[=]TU"gYȗ];˕BaaG~-@X_6-ޑ0a1 ,jC|r,{٥Eʬ 7,OIfλu}N6D?o]šZp⤏ͼ;''Vp6vBmc1xz`I u1T#nYԆ䞲Xd~Gt8T 8jiD^yb`ۃžK1Σ"y~aqed/뙚h-=V/yVV, U? v tQn{WTQF9!ržCa>< WYn ,>5,>{X$, ,ܲusi۪"Ug8K禌%nqaqaŕϷ avYnvDl@۹Ϊ@ 4EuЧ'cg>*3,f+vaʢ;+vUaAX@XV'jp,a1a7xۄXjI8=5凅Oۄ.QXa ,@XaaAX#,?Bvo߹s a8[X;wn;;ɰwoǁaaaaAXF{{~AX1g , >st@X~X|`X\uP4I0aq Aŷ‚  , ,@X| , aAXa@XkXl[믖^x/rj}}w+V&,"bgTǷʴP^-aۭxT!,"bqgTZz dwZ4HXDZ< >9H~Yp{{qaqPX-/meI_\SY1| 7n:,i13SR&˪YaϞ,//궐q13GPyGe}"",6eYm@(8]IXDy.T_0a򲮊EDX$vZ<9:u$O| ,"b6Jgd^0aΊljY"*,f2-T[ȸW}jDb Ye[&jbvveOuZ&.J OaB-ᏓWTVaѪj  YaH }8ola !xYȰXm3\Cg"",UF(" N'`0kUMhWj5G`m0Sز;D l3=YX~"Ɋ!,.]>n>"FX|tEkX$JĦH4ER7"?" ?|KBXt*eEK[|'u9 ;a!,@XUXd2E|,,:E«Nl@wBX , a aBX , , aBX , aBXBX , a aBX , , aBX , aBXBX , a aBX , , aBX , aBXBX , a aBX , , aBX , aBXBX , a aBX , , aBX , aBXBX , aBX ,j&aY.‚wFjGGQToqj~x Wݛ9A(,ޭ϶8հ}<a!,z0٭<>L>:s_t-cfװȅToZ>`q0ʖGâ/3d)lՍZxraj9jTâ8aA/ou?|@XtrSXdzN^^mdj<=59d[^SQװU=k7?rF+AN6Kt?|@X ZnF IDAT:9;"y{kX|ٜ1R;+~t]և$%q^-w9www:o3^?7xޖ%,N~vfɭ >ca}+QkXd:: SMWbdO9 'E.X+b7o2c'o̿%iq:olqޭ?WJmY8Y=vҰ:n{iܶ`-,F3ZCX (%*%iX<,&6~oVw6*^"W^O'SZTX܈o5[Qb||12=51qg _Y|2q9,|LL69,{.,2gW;jt-UbE2 wZP̫P}^[XojSoˣoB~oeu ju[UYCkꓕ$.O3J<$W˕JV٭d#jyVҿTXQDftՕL?ws?jb8'P͌,;n?h=,֚y!]Ai,? Q4/*Q(z[KX<h{󞥫YxA:>VNO+~<c`KX #wlj88_6䭛b:旛2sz!;B 4fûNjHgG/etʍqH|z{o*,%\ ên$,_v2 + / /prDƠWcaFޓ2o Z"%,פQ}bvK JK>O2XrB,HA+7T@BILO¬}@X(PDX Wa8EA0QJEsf;,zy.]}0BH'w !}X}3RX(`Pe'0$9X@h1 ! Α 4W? !mH ,"\gHq*PIׅ~̭_` SxE?ғfPIP,(l*˄^!gRM}>F hB %J`nv@)v76 .DwjA+c.KpB%{ƾnb^E몞?Ž tlrzΰN0A]O鑽(P`11`с6U*~N'K0;I?y[s ,T`QWR?\  \7֌i0̹C,!8G`qKG`)h<nhMAzЮ J(cj`guzy V .a)]nYx T8fP@ E1M)Gm*{v͟6Y86 BduᐩR* \`f"`5l+rpB4Kl26g_/zNvJY$xb` 0,2FِͭO"mЂO*P`D,hާ dN-5dbu\&STA)C t~,fl,Co jq/z)3X0 y@(}u!#1}mh(Fkw/,U.!  ϵͥ?K>ʛ_]Pc,_JzgD ,(Q2>XT~ro, .aΜQ; 1jum`!2 Lj|zU1b; &^ , $!.E6^  GLa9W{z 4lgq0,ef4+I Ȯ<~ьsyz7֛WtC)냐;1X0'R`Dq a)`݉E_jum`qd M83f-xq yjDZ% ,XL,XdX)F'nʀIE'$Iᇹ} ,,j, nOjum`Q(*j,}ܟ GXLB\d  ,XL0X8> suI`.To(GP9c a8w. =Ti{2Xy7h-\;+o+b8+c%F;ԣ٫ŧH6 ?3VQ*Ӓ}6m)S}#@"e L5^1ѮI_*F8K4 q(ohEq7,B?h3OĆ޼/ޗA 6ݟ>k]g4MI Sx6Ntrt,lknpqŊ+Dyej,V@h~AA㚹X݃'; oIB\ӛȺE)Q`bbETVI͋+asu,4{uO3XwDCΈ,JƶT5Y+:xNqy XߡA^lZ_[UQ2?m%P3yeDM 56 ,A6T>vHKoS^5E| R)'PI%cqu 7R7apM El6`FIUbK7(EQ>5 *P`1`%oX~R䡅 "RFd,=?zG|װ+X9XG>]/D? *)'ѫ}!V0p5%L,F~SL;x1tXCyu# gTX(Qdw'qA 2vn[k?C]. h SbDBwqZYT ,&,*;P\,_RSnvTeFc1Nv[Wv<@Gf]1g6;VXjaE!+EoZřŹ(]L~>铻}Ύ95N_};45.hTR1QaC,"4S!0XH#1AJ;)LgDo[fnPͿ򶷮[,$i~Ꮯ/gcZXxw(vkJXW'~ͱbXF [ n1sv<:5dcy[gΞj ̬5ٰc25l{qAl(2bU.Y+rXl{,Lˀ2eפmEQbq) (B,`p&/7KE#u?O&f_yKKݛыF""bXVP U*ΫX, XwT٬jY_/E;:Xe*9bbB=ƢXT]Wݷ`LH/{8u x"=a ͔ODL7 b b=X %7(+3O pG3MrLDXbX QӰTXhb1myB<Ҍ=Xf'" EOs[WΊT,$F#E=Xf'" `liTb$bx"vn<{XR,Nf$jyGXbX-ke?S{JHyMG&(1f+3"4S~!X c˔^{t֟|.z.D3| b(y7Xf/" `lB@wڛBF7 &md{kN܌"[b>#\b1o?B,<@, f;jXVivhR>!X KNMO sǛ17X9CT2H,&WhGL#B,@,Ɨwb!H!X ˒OXfzc Ab_KXZz͔OD /+Jin+C$C,D}baT9+B!Eh !X cLDX4<޿A,8X _xǵB3[-"NYQZd@,!=HbXCIbXC8t"o{-Ei-A.NsBAY)JڶK%ך$5)-˵R,x$/w;;9(/kD~;k,Z 1z<`͛"iC@,#,ca|0U4>$-rxb1[(N2)bX ҹ* PrUH 7Ţ+IVZ&рX t犕RbX9Jι>nԝxbaߦ|"$`H9wxXDr{ksLUnע$MYmohڻ?zq}1]Dbd^Xh=?W^b^Aު׫bv')|<;mz}O[?_zuG76\@,blgɓҎ<3?y󌶹aӈEI쮙ec;+%(ߓ-N4$i_ncs_$mUzŅY/Z~ϰ. }a1fa@Ry~q#"2;bNzŚ]{EPn% ,Aņk/ڒ-,Rנ'l9bG?vWXԵ {ڏv]Z#,@X ip:uB޾*ɎhW^aE',@X Փ|"RK)og1^`GX/vājqIxG jSEaZc~=8 bPaI'*["ՒЙ:Q++ {쫴,GC fy?;9i,4>&Wv'yvj=",@X gǓj%5iRsf}3 )cϩ/X4 :5;Frtg&LRjWa0Ș&)!Q bPaጟZ~+ɏFsdX}[նΔ. IDATs7yP WyT쇁kN*oTQV bRO>W ϶WsO!/nOo]%1v[kfƟ , ,‚ ‚5‚  , , ,‚  ,  , ,‚ ‚  , ,‚ ,‚  , , ,‚  ,  , ,‚ ‚ bC?_T'۳9巯w9 ՟YUCX\[ ,YS t>{.띷G7CXЧTN᭛??,. b?|.'ҫ7WU_ a@G›ci\ ,A|‘Qm&ړ AX|cXa18Sl2yKXL]E}lϓ"SO‚-xRԨNY){Ap~jSApǫF~9`#\|]-iyyj<GqN˝Oϴ^ǿdX[鎹vX`T3%T>J[&r<[jdaqWCn[N5uKݣ Wg!A,u:cgԱKgߛw;|1>H̤;6LM7Fε`XHWe1"Qyq7UQ~#?8}pь=W;ґv[;$ \qg ‚ iM5?.ؑQc%n=*.lΕ*dDEaQU5zlvcG΢)ᗴ'ʭ D';ǓaQfWz3&%"!,8U=4GpnDu݂t$[),V\{SÆ 1a ,j49j钩%,)ae0uڬyb]) Gq/z7\Ϝ+N@Z9/-OX&*Vs)UtT x kisN%rKxbVnհ2:H9oX E([ݗ>ʄxT 4ZR>,ZGoμmIz۸Rf襹&   , ,‚ ,‚  , , ,‚  ,  , ,‚ ‚  , ,‚ ,‚  , p:N1$y‚>g# {Dn , * is [D~"c'?#{pG5D܇|>O{"4QoeN6ÍO$}t|J02ֱ ,>) OSkG/j9-foxG_D"w^ϑ;'YE@7r5b"f4؆5ⳀcN;<(Rdn;w!WHo;5$\Xۺ5qEWRc ɅPc|:eaAXԩ]/n]X{}HyS{)N8{V/En8ʮQY aL:,ja^\\L#QsV;q$?pXN,T ;;;;w xuЌF}=ޖBxj?.: )ɵ! a\ ~q[e9aQ_ުm_գHn[$_zW|}-J!,",xF #^}"auXYHs*Q!z?/u|=Wh0:Cp¢N-OQ},aalL 3} ¢>:rZl'y(,8ְDeV;_Z+E:tAh!_*e-+!\hȪ5MNk%`1>gjuk _*=>5l1ol6@I;Kۯ-mT6&4gr6E%v"Gb!x6`q?/K{BZdsfz]!ڔJ,]A1w\u ,O! ~vo)`UzVeY.1 aypGvsa:cizJcQg٦ m\1 ,Ja{Q vg#zy`,Gx1w>W+,M`#(XN`  L b\lt_w >,Ax|}-+V /`{]0xVF4T ,dphد` XbaG]FbL<5/ ᑑp@Y'kz⍄(<(a^e~8GDz8\Nj4Z* (:uGĕHXbNxa` dx8`7o]f 299O1EAA^,a5]˔U `\0cgUY>'gi ]f @sMECmR| 7sݱ(>j.{5s '/.[,D,.۹!d,XYS3'"(cZ- ;bQObO8rOY/K.Zʢ K/4dm>4⯐3~j O/VK*m !y. =A &9@&HFzQ<ܶß<I@o`KbowNF~ ,(IQ#hbY!L0Cc#ꂅ .X\˱o=:C9X̃|E@=0đngį{r& y<";EV>IzC]=Xo'sp50ִZng1t%>9 c,Yx0PZ ,T.#A,^*"+)+A4%Y}/d$""$/` R]ͳ)VGsJV!<シ1X+#.;+:evУH wU X|-`4r& /A&VœPQ⁆z56+ .7aL.T3d ClO]l"_4p;8pMJE|̳pݰpz_}>zNf" ,!4Ej˾뚊 ]eecaXJTKDF?U: 1e [!QF仯!uz7Ĭ֓7g .&޹=5 IHXD`Y B (( k_ TMdߥ/k|icKm* Lj= nmCyf`1_eJĕhEm+J(>A,pQ ",,u"xz+K}D0uDFUK,[d̘v+B8:9cV=x[- 8|4 >Xtow,~c^-Jssm*ɽ=:SZ,Zo"bZ̿:9ʳ n`q?W L#9χsǛ![#񡏶Nzl 7BəվŸldM,LD3 \l=|W_@B=Ϩ Sş ׳nnG |}+@=Ne єT+k(%DK7Fj V/ֆۺF>֘3=K)xzmW#$DZ#߉R 9XX|,~r5X̪Ufl#[I5XMtXx ',8V4zcQ|H6P)u X伕Ѩ=h,g#^E. y~ba m9nI6Q9E ,]ѱ[f8peqn|Ew?9-bm^ʉd kI6Q`02Ro c@vb|x 3&GbSXGRiFÃՓ_lׯ{;*fT,:=FT:DG0,G&fXv ;B5C'd\wW"bMsgj_qF=%iώ,xb̈Ck ,xjt;.mqŭ(,^R܉6t`Ee]Zl`6Y)PB-aEdຫ;bcNwyͺ>!.On6$ p IDAT=ȮpEm)dFPQeEcӃL>:,2c;ŏ΍A}'EVkX`=Uf4;pZTRຶ?% J4Z[ ,x F ,EA \l#laXom,]7;━Œy'3?K?m{L& _XDof2-`1n"=X7LW,JY6q! m#KjXdpX^>um@ Rt{6OvˤOuyeEC$`^)2 KIM Eq=#2$5_X4 a:I켽G<KOXɓ`E!XWLqF⻫S 3ITY7xpg bq]׈$+TFPqyxPP&^j5/) ːIAr_d 0bOXj3k J,#m5 Lai>*"zrkA`Si#a@2 ,J~5 VMIm#M \' X+rn*bR1 \DWjX'M-,IY_6Gh'BG`QGwPѩo?`ŐK|nnE5nY!X`Ee,Wn5ʱX8qn6 w"`Xѝ Řj!SB87XlRu/k`qՊ.pw—wbxBq v|0X`M(xb`186eԳz dJ>![\[$SU{2X-r-  bf8"۫X;,7 Cxh'f7~`2tzزmۀʁ IZ~|NDP`QEdk'oKf}] 9O3Ƥ&ad.\Es ۦVX,J4ʀIr@3&3t;Wbhˆ2AE!X`Qf9YXį 7O'`"XHϦ :ʾ7 |`x)V^ ,g?<:?rI"k[5s"@;BFy6U[\ɘ`KcWLg[[X16S)G`o+58 , T6{w[kɑa|Z+:SJ,:QxӶXw@s(5>z`m#dYF3,6o~2um@ն XX*F2uβP3 L#ƢFF¬P-EEG<&5ɥ/^YAW ,tT />.{(u;`yg [EᅽKrhhc!X8 )XY?gsZXȲs a1Ψ=WEi#,ru-\c}xaφ#X( mjƦ#XB%,&+ -Oi6$}kMJ%]?L^ьDe[ ɴbuS3i $Œӗr"@ Gm#fޞ$X6Xx`E zO``G>*'vǤuŊ?3y_~zlɼ~;y:G 3fmswA4W+~_y5E[R͑pK ,A[;X21`LhiKG{`NY6`NfE!۸"2ƇDAAq:f!.>VH{ =!.yW6 ,j/<$ÎͶ]ɋcشfy޷a(@\r s͔0]߂n˫wTo_B4 K+muReٹt3ve{b5b|%Wv] m,\ C b3@6Tw,yI ]:Gl"IN1G'Nnk~Xw Ơ#X@ ,ޣog\6>(2|(h8nmm tx`၅XBh&A^o: &*?w.PXG8Ϸ%fP'TɛAw'ˠX+_0w4.'ܢ1~n}WA⮡*d?ԈFZ}BgF=,M`6G֒K{f6@>g&b<;YG@Wgï6jWn41ocB w0OFL'KKFKBRXH'(K:stQ,Pm2bw7oJ_ũРѵdCKlYQ{ѴXe&M.߅LΡ! cej;b w~,X݇4E-6u/^2I;"/qwD>q-oU]WFv/6]p(CG"uKy[nV4M8MdS5$r7U"(m1u)=l,oD ~9/dRKhctC+D PNjhQ1x7c၅XTvIlI/R:asON!mkeB'H؃CfgxvuBM{dRBH݀40`[6" xbSͯa|[jv]!X;S@a3#7]=˧U]WFɗR`g ˗M:șOTFBn`N\GfIrڻo-`&M¯f3$ߛ.k\7yQ3H9M C,=-Q n[ Zˆ< \3[87Xx`၅9_?? ݡA>W LM@|ikyZ[v\X{KC={,cm .mΜ!Yv3-,B?oX4N?fɌK9dXQkz ݻ,P>bĽ@- *,'+(I;y6(f粲eFV$x;3p ,MR<]D E6A[ G=r)L}\/!Zx]&"J0,;v89 ,VxΌ.ekTTH9t,zۅWŒDv9ݷڱ]k7p?ai|zBt3,~o/W<3?Sx8ū_ !Z ^m@H :ۯӂA$;X!O}`Vrܚ42Z{׵T#C%7bQ;X<.q p"X=Z!7|L.dIUIN[ ,@z -rh1`W<̯x4σxZuŊ߬-+>k[nP~ej ۆܦZ#q*Xi@֓e mdq;WX&ёSB/ؒHA[6~o΀='gfTUڗYzxL{#:H-F.vc{mx"?u=u]t^.}ن˄8I 6MNRng;`e#W,<&Em}9v y<ĢV.^_z= U7rrDj;0o˰ӪIY^bxڊ`̼7iL0~P,CaJ2m[6[::b9I,gv@,ȊDF0"ͣiiU,0 O S! R|{7>Q,$/,u1_N\Mb00AP,b1k+]lM#v+GZzM-̓c2ɈJUm#DF\7A>> % f?a=*;xF l- 1"̩%XYl1חcbUތ¶3Y1ƾ$kJmE_5{.*O+nk}5-!*WxIl[`$صJ1ϝ3ժ]4i1%G=W7A5ߜWb6fRKu'kE\3i ZΛ=_ sZ'D2c'dtU܌bQBJ3&K0iLZi~YO>Vwna5-O`ڪoɘeNgHۏ-J^ܘWJƓX۔abajc1^⺘XѴXsRrAebATi,%9Ѷ\lEŌ/gG^kQ{#bK8 _U!iRfMƳ 1핬hTPjPZF{QSvA98f6AQi`0ѹ.9cQFEZ븙">O=ڛ2IVq"auՈ2Z6: 9|sS}Ư j_z0W;?L7q`ߔ~,"W)N1X`NO&$##?B ^ڌҦ#"7(wm3?vi VsX,6zT9D2d,TP))"e$y$",p&%XX\< p"e˹‘魾ZI"j62vb d, E> ,*ُ?|-t>y߿],h3Y54`P}_r8`3ݳl2蛀ݍAjŭc|uc-b}]l1oK{j^=W޹~/\I %t=s][ȞKybQd|>a! YPp?V_oTiz8PW*ZBSot\BP-60`QCkf XQmR 2A `QG<Ǫ?g':CGPk]1q*>odɖӦ7`!&,9 - ,c5>I Q{bI`9^]+,37xob 'q:K@ ,$Kyq,&BmTd9[l'A }cuT\D",* 2mUn/#;Ʃsjs",IkUYsuA;+=zl%L@ ;X{E |z2DւEha4XI o/{ k=n1 7/Y\޷lj,xkcR1޷=~ĨfT~,X4'\r1,rK֪RU 4YHn :.{̅}XD͏ͦq\- .>U`FV5iTF,x<@ _grMS xc%sZ$}m4X4h߱qz>m*ԛt`'zG,7լ 3 ,੟0o$+re.h$fBݍxxM0DfqsʾcY+Vj329%;W)N1X`S>"`,@Rds` XЃE.]-Jvف3,^;a:ic| eBnMU-1c̄ *% xKU%68;n ,2$55= ,3CX#BRƀNmoiBb9QGPYEczƞ,ZutglkO 'CLx6X8:a z*!>cU__@+2Ђņ>R 时`1r"gCVۨ]eSY,ޤ8тbDkbo;| :)gO7 \FսD'O'lryZfKӡAVJYۭJL;fŽH`9>Bs X#_ٽu1KIT@37 ~u ucS/xDMq\Wt  n%),%*㗌>W,*JSzy36_LC+ 'X4qH["!)V.j }s,=3S??vч.-a9H%ڀPmNjB*XD5r*ߺ8W^ @zRd+\Ȏ y?:X܉lxT .Cu/,F9RO&Xe/H5aی[E 5sU5z0Dڃh`1&uB. RoB1NB`ov%~Qt{ 7 tٹ s X:ӣܾW,RX@@Xq+ZbXS0Q]|@Ҫ3As:ucAғn,B:ԩ=6`n[]ߡ>"o+jHCB*BThlh=vaQq?Wo+m` qRKٜ͛C?I%X,6%4+#E TSy;x֎)5`nƕLF6N]&F\_;T8}C&6pEUӯ $ VzZb9;'|[ld`!wSuoRX,!kytfJ;B(k6/9KO$<莽 ώ&,PkӅ?X/b[A ":FL_,ra`KevD."ʋTl>O~ N؀A{:9]C: )dy6 ܀f;Q/X 3ݸX;D~\O[aB% "S o^VHd.XD~Ub)ÎLfˣ(xn`, }CBZʞ XUL. `J#4X1JK%O0)c#CkH#kgREDw,p #CӮ3>KGH@/>>C` d)xGoR+"~0I"]#Sٙz.En`箻 SqZ~*n\Byd55{< #AX av(/VXO >|ЮL$H0 ant]xzLݕlWׯj nUe|&$3O_=>2qeWa+,R8qfj?\H-?ǁ X+"[;]n`2fyŠ'%#XB&3:4>Zt0*Xcڙ>vVSB =&;C.692@2O/FkL ʯ \jz$P.eyZ LZd>6,q}7XH ,#,USN >K@ml1{9oCAV9s td_ ka}ɨ+X X}g{ ),JZĦ5Qs& Z.56|~l%n0_9s3|݀,$j/z,=l%+,*1 ^0cVzЪHwc6[Z%E}ifITA_8U5X{gEC[kfYXHx7ݛEGufYi3C2ٯ 7w_TyG*HjdT; m6 l;Aaܭ蟮ijZL9wt$$近gA󅘎XBe. {t PCV[H? `IUDzy3dOJkj^Do[ێF'e{gԶ1 d1`.2Pn(&p%PPzdˤ\熹4$s+JZ9e<K^vWZ{V*nJ-ԖFbLZ#P6ݬ[kDˤ9>_a蚔du\+,JM׼?,mREEM]K,|wB+Wb+493_2޳X6bnmݽe!  >,9mE,;yÿ7_bX\{q-$\vkhn Ĭp-ىDǬ/*JH ίm&nߊP(}%'bX\O%N Rzg[ *bŞ6;3֜c]pYU]SP;42\XD=g(@,kOb=,;g}ʳW|4qʤ]ϷwsмV@N&|=tY7C1co>؎*]5if\:[< bX bX bX bXbX bX  bX bX|*4g&H\K(|aQuq@, ✣AZX8 eqިth9>K~b1"2|)e1D?31fDM" bqqb1,M"WG>[7b.qbp`!X ŅEX\;"ΧYHĕERbbXT :"ߟA,"K3,EKM~=bq&؋egc_>EWw CEwߍ\X$Ƕ5!bqbYA,\,|طwB~s5bbOV,|bqbB"z=t X R,}?)ֲ[uŢ]$u uW%gr_*5EchyE:B$ir U:Y' Ijȭ/* /UYP9Ţv4s$+hWp7 t;OKy*&N==bчXbX| ^AǐiD&LsUzJ$<&mDQG,lw4t=hfn)V8bJv9n[cn7TN]e4Mwh0bޠuX"[,inۡ_G4* ,ca rs IDATL3Xqa*YjiER4efAђUni|;VI i"nm0M}~Hve)=ኙW,Q;TP]Jg:\TeS_jʸ%*xVY7quHm'|3 ;iM˛NKt8,Z_NRJ.#{Sb :xL>!_wyXpa=5z,W,@,XgбN bqqz{,b wODO:){7m#zqW.p $qVEnȐN:y`5N_rzEvT,EÃbEl":*K9Н c|[tiSzMW5ҢlĝxmĢΥ*pMr,k]݆ɪ`qlUCpk"muZeL$n<;_ι$C)^UlO֓Rlk uġJ{t{XkXXbX|Z tyTd7}MSjًoϏ=Okp(N$˾gunHP0Bw7S⓷b@^E,1 *wU7ajیa; p<\d¾g?M7Ps|2 PL>iEG eav|ߨ2N$gg1\XTlu&$0㡰dW<V:m|~W95,˅ɹMRXU{FlޝS%UT=<_]s;T0g~كZb0Tvub׾#Kn+^nq7yȸk|O4N8nVUh?XIjmco=ry{{nGÖUiٜy#:RV_x=bob1ckwwĢ|*b͛JXZd&'o޼œc_U<)c_e7 h6m27VC,f#b&;A̢j>c׍_agG%n8Mב>c!}2c[3k%0!i #a+m3eGJ :XنlԲw}NZT88hlId(j/QwD޹R(0bn`YEͺ\“dGG :52+dAݬUX+w4*rG4U;u+sn9?xƢ=|aԁPVל]@N[Ip =q`ʙ[x E[Sǿ!dFy 1Fx^|RnArR$V/**yt鞋zf/U,izf2B_s1)wq7Ӏ2 b s[7X< `(AT (}}x_Iř lj~t,B4i,$X|2/KgNEE|6f$XPj15|pSQ~:r+$k&`[%v82$mY|~=f\;- "L2Ci!'lZ6R Zːi|a:z͢EVL^:jlȫHЗv36]W9Xo4ւ6*C%^k͞HQP*V(D1d8!szLf )f| EB"`ѧ4,A*|c  OP00q9XEUNjp(Qٳ<+y5q_U%_2Q~ ҤI`!59,ؗ$2bvz4M.{/[)\G=lxeQ҆LcA=2w" b *&Q1r,ʉ*/H,=<mE ǎ Lޖ&M  ,}` \}'ZSB; M({{,~Tn5=N|,r&pF$J`Q0XfI&Bg~ }E#O0Xerl96Z8`Q1öaؗ`!\]V:`FQ]Q^7q>x,*^0tXu(p nN,4e YFY"h0{ ź_E#zi# ,44 աG{qU3h,zʱHAhX$,hGi,aƒ7N~ʾlM<6~=Ғ iҤI`%j=~N ȼ&{(Xr_Q$6Xh_!58"r7!=L$lž`q;$ܝs,J"g*,gXYj#`A8Xēx8,;8 XBLMӠhI>8p4E\` F:`!Y3Ss5}$Et0"_-2f`PgPn'=^T==kPFثEPOYN A,keݛV Bo kX!P۫&*?bq^ ҤI`!Ӄ:xVA=c\hZXC:mEA,&$}r%lhIۯs]6 `ԨWEfd,r3SzәYZQz,n*j(yHDYBguJM|}P/ٶxDK٢ qw-"XLY-kX5,5 \P܅'iv#Hu[ @LʀR8 !՘_* >,ɰYM,Z2Tbdn<(Q?MA)S"E,j$O f V4'.,N\"?K,DhT"/(:ɽ7BLܟ#üT^-Kfvs$Ur t6qz R2|$ɰ>pJ^xk +yUL,䩶y1Ɏv8+WJtF&NHs/C}~i/piVQԵ;XH2aT|(-Jqӯ^{bqB+M zofbj&7AXtdS$(KXt`3gZĢb"e˚W=],j5?3AӔwLNr 6q<7OŬOJE%h m|XDiX3U5=(KSxEnb}ٞ.Ҷ>fb()&YzLDSP~{u^bAe- ~p@ױ kHxdIh' #zc^ 2|l`ൡ%zjS 5n;{/?14mp*푽Nы2~\dXȑM8XRœ[6987-w 0Mzi:٬;Mmz>ۡ^y;JE Fe>+oC`X8 @, '{) qюmU(_=̭_-[,Z\X(l.1QE |BYac.Nh4!Y=B⧚k].%vM +C,12XYΪ^ϒ]B,SQcZcX(G_h_5odz%wJC,ZeV|q]h*{yREs xKlIc-[-+#ЮKr*S,_da9=q}7&c"L(I,^>dQ&ql(y'ml6!.H.ʊ#3")?+?OK+bҬ;>88p( b~bK<Y6{jTVUz'^.n {XL9ĂsHs,hYkh9bA*ј0 JgY(KſnSxj!FK4iγbA ryHC\IxTs3,0k^d._lh]2TМr4囐hp!LGI\=XسdA/Kk߄>=m=Rm/|Rb[[fupj o^W,ʹ\-6T.s%qɃC,|XR񖝝_7.\6d(F.v5 OΧ5(GKZh< O2[m9#Jw^"l?c6XXlXb.b*o E}LlPKv }Zbf[ ł/K`//yG`$Za^̣)V c3Jo)CHߚ~:l/Ѯf{M,Eq#}͹YMBp/G&jhxnkb1"GYyFY1#% *EӰ}q:{+Uz9+i˷J)լꙃ@, Q2tvbM 6 X"VX ByE(Mbhܨgp.If~eN(:U&b'NH2j n*~0D[hVZ2@8Ģ<'*yD_,Vdg~)~tSrj)լ bMA!R,lj6,FEYrK'Jn%XĂ%TƱAz,VVM2RDX@,@9DIw/Ng°,  p;z2l"cz^X@,@'[WX,&]\XXXX    wOiwU~(QD0K\ Mx)02NQ46MRtCi:ؗ޸9qY7 , ,‚ aAXa@X  , ,‚@XaAXa‚ 3| ߍM aAXxGh1'"ȍyref ,#[l g2Z}EdPd>a9$+3H08wк>a591ƭ~~X\ ,[:N\twXLN4,ݫ ›N%YQ?ι}iw IDATHGͣ;ŔHX|hNb}{P1m5m,)d6Q/ՒMOӇ$ł;X[I%cŊVR ,<(( Z7'{c?s^sQ!7X+D>sWz.<4'gk+I=c_aAXxϦHkVWXrb~vѐֈ,xڣ2b| +[ߺâ93wOM$[/gTP >XVTDl! \XXZY@@򇵊wؿ3=3!x/}~NO?T}?s{fɭ;PM{%60vXAV^I2r!;^+3S% E 0FXu#=|m*f޲>ɁeLsseeܠ,J^j 3\`z/ȭ>|,U'bS:X.):+ao|-dYe/^,Ix=KY]dsvz݉I_3{iӦM m,n9e|3h< {;֜"p%Bu I9șea]q#S8 S#<^wڠ,>"SqW]X|dgh1v"o-TDK^ȵ$b]d[ ĐTN9:|ϘaЦM6 ,i;k@?YNʔ_tD@!#B<Ozt)5RɃ(y_ j޶2s X3CFalQ/w"ӽ.T|@w]`ޔoaQ `L,ފFU)lL+ ˽L,zzi`Qdy` _,Lc3: yHS ,m\wߝ ;5yk`koAv0S6ȝBq h4F̈r|zN ^|{.J%<~r}|w$8#,0EϤ@Mo Ay3w,RFjhǴ??m}0R:ZG>iyqk$I`},$Lb;|6mڴi`MYcG צH5HlUD|"3z`OW E){ރʆkE-=H^N_տ`QfjQ/֣XAl0\KAoFz(@tKa]@ͺ6DoAER׸$͑W iv6u6!{EȳXUX(4-(3gœMFaGiv`8L, j6B!#N0+X\(yޘ0bgOK0 1+8}|Â;|֦M6 ,i;kQ{yhTTp4ki( SJȢO,dQЙBVQJߎ+J]bj XUovj6u0{*E;=*L@Uy̜A*0!CA~H9 G:<` d'RgDDԒ|g~7zȿ#u,*9rgb^M+b1.(X~خk2.фgXh#7TX ȯQ Vg_F,s ;"9Z6m4XhЦ"? 셼 urDMk+ʱ׆Di.-"Cg &[NVB+:8,duIeciSNGO*PD3F`#ݒ:7;)>ԁts. A4v7Fn3\]PJo PXYRbU!R%]CF,Iqo߁i^0f~@Ұ x!̋ulzSX̩*9 /`uNO č x|֦M6 ,iŬ.Viz10Om I]IErWSs~"Xܥ"/5/{),Sd.fEZ@q LM0Xxx/Ϙ mڴi`Mj́YPHGFb,\FQ?NSՔ;g iid$ oQQvʉbxU@?k,,^`  lp +{IUͮ#'E[r}7hHE6?, d=,B1:J7 b.٫E,:n'bQڗig# b.bF= @9X,J`:wѽMU"`M6 ,iA`qc/A]`lL|T&6&NUdMizhArU/{gĶ!$ATvĐa  Q! @q{z YC!#ܐtzX^bV­,O8%!ۦCTY:ƢC_b|bhNS%kw ;)1lB¸"'Xs,K7D?8aX2g&g`c, @ Ɗ]4bA, $#ڽjزF5"e(<v 2*\跦sӃ~E,f BJ[XQ~hjpd꓾V#ErXqhAOnXZr;vؚ8饷J!yxCr?)YtQvqrwTřeJlUkb!m9bmWz]Fږ$YXpQb frbUkm@oM\E6}O!}ԳW{J^wKРŗcJ$totiҫERY/X}(2:z0x+XYІQKҵ9O,̓jk|թ}Q!NBEoŢ&9b0VS^8"WFt2:|bz[mNO=ްXh*dD5K+לV+]ŭ9nNpx 2 nw${v D'/ H |ϗ,gͯoD?R1wL5e3Ku; u'EEyQ,i%­u`fHb1Z Z)7bcK˔3%VPeUީ|[k<^S#Q6EPp}nBhAŷ7A\DŴW?c|໶ͤ#[@mKJ΅hX.Ebkjm>0- /Aq2vl ` ],xnW%H\Ҝby.OxQ,k+U3%WMiny  A,XʽmBVY:B|M^O I_;K NU|( H^S59+koW,S!t.hj_h1Cb̫E ?-ӣX 6+.4l? 3zJiP+Kz0Hw%iH-gɔHM"=u[k M}iE],kx[km+HV1'#o۬f9VU_R\VR4-yE\KNq ٘roe c(-ҍyS=[v *\->jof~M,>ek"76DXJG G+bAWL=ԋpm4VR!'Ŵ eX}i~bZa}!~ƿBbo8>vU}{nG1FTliSdMk[E<@5y6VdZD{vyM".^"fY#4)[Җ%ߚ8BE2`dɓZ_+mOolNl"%RΡǩpޓCAN=Wyl;q,3&bdS>cVX@,|DHe-PLM,ŊD5xX ݫ/4\Qf~ $ZsJA,<)2Vb9{4SZibȉ,$ w%Q D7}:C4X1lfCY6x=UJ+TCwEˆ{e bM tΥ+RvskI(F+. 0*SuDKQY̓ovQbbQʴIYȷ-k^ X@,Jv3KR,^?bQ,3 %%X >bQJrPC,Șذ%RkX:Vpb (Z>qk5^Xԙ3W[v\G,r zX\B4LiݔCaAX]X;RmZV,K + [;"7͆ A%5cvrqwXt'K) ,-,\ HMN+;s=;m0f$חMИ[x,=͗ɷz5a@X}_?zkŢ;YޅL Z3,F+ۮ⣾aaQlJtĝ+u.?ԃ@a1δlH]_EI{aAXwX pW,aQR}Ksjs'+vŤ hbk- ,;,4{ΞsŅ;˻uEoͮH I:6W>:zf*eG̓faa&Wz.s|~i.rnETqqt„̕aAXkXjJ*Z]IpSgcpc-v-bXNf%|BnItt%ܥ0ϢrgẊq𥼀 ,~ 4zlsL={+,rO^k|Z= oL0/(ƚ/q{֝aa^dnaAXDcc8=rGϊ5;F䛟 +{ sn a]΋2**x7 O?T3 aAX~^ *~ , [l:@XaAXa ,‚  , a@XaAX , ,‚ aAXa@X  , ,‚@XaAXa‚x y  ʄJ=sY˼a8lv{8G^‚x,a]__ȝI?أrMc /a¬J3͉;ei:cnaAX߄9U}?Z>M+UN|?E6 ?t>MUVÎN"7™{v[sGLϝX` ⁆Ūnd13oA˴T[xIٵO_IjۋDuJ4L;MI vcC ,^X\o_fMd&/1ъFval면q#,O4RJ]ذKͰ0evp[s,L8S9z¬uA< aAX<аxص//C҄Ýcl|aQ;0,jͰؐ&]Bxs/Jyti(ͪ@X5,LI;OcvCZ wnŊWS*EztE,kkJdj͹ΈWfTN6\ ⁇EˈtmAWXJ(,Z0{3.]t5Ϫ0s'' aAX<԰xh]e鮰_XLSSҧa l܃erl@X6,F\xw^*͞{ŅGX 7͹uJkf0λaAX<ȰXugg¾N{Ic0-'D@'8 E** ը!hbm{ۛϱ>~ߙaf@Ԟz~7etySP' aaʹ1*ɗƭeHWCTe5 ,6,.$1hyI΋;M.{zSײɮVl ,1,R\bq~LE+,SؓhItٽGG_ R+}a1aqӈxŁZ[I鰨sOaQs, "g9NbY.]wƔ%Y{}Uq"fMq6vYˈpXH0Ns""a=fJ]Ԉ?txwaAX TXUF1;$*}1D8,LR;CzQwnDs*G2mӣeVŠR%6Ԣ-1Z=)b*h7sX̪aV;=Wesgţ0\ؚp{xɭ'lX} yaAXw^Z2: ,  ,_Y~7 ‚9ߖaP*EU , ,@XaAXa ,‚  , a@XaAX , ,‚ aAXo,`@X~ކȪr_+‚ pgk@X@(g6a<ΰOM:,7\8bXdD5a ,‚ ,‚ai`Z)+  ),-->8ӺU!,? ,o&l^GOYߥN{qT[~+q0`ɷ|pR߰^YM4f"}p[O™l;*f+‚K?%,<, "xt/ޓjϸ8}8,V2ٳkn I'DCfj'փ7Qɽ7| ,*,z866n~QnƮsz>[,K[7oFdZGuSMW TQ͟?Lɹ=[mg=bMden|GCagܘeM aAXeXuLϻ¢-F86L|CeoD5-➪tX]5ђ>q^2{XL["[[_yE8,{jWjx#EɽuF\VTL , ZX/\;o}d9c^qV1q`^՜]n:'+jzrv~*,VRhްtHrwXƦH1q_X\E /G5 i?K7" ,rZT , 'N%{"/giź#KLtX=g~;C< e-R| j73zKÛt7x_ϰȋ̅fMJ&`XLXb/~{ [Io߼ ,?"o%W'-w EK³ZYͬOT-g_WlgrF_<5Nz>)8kBBwxJMhJ"ΰP1/}+XbϰPu$< {B}:釅‡baAXIXuķ$sLʲE^-=v*ŵ^˰Hw ]{J[y"a^;,SsD E߆ŻEJd41I6\E⯒U/,v:,Ҿ{XmѾ=2/d(Hϰaѿaa|,g'8Iâz|r+PAЊ};aaL]\>9M}? ={H/ݭ,2BX@Xjo0SG?,6{aq TNGX(ko8}8'\ j=ZL'ȡPQN 8!U6hz[n`9~/]]à^f7\XKÓυEv\XLS캏G0/:~EB Lڏ+~xVū G1?yMX]_s!υf>b{>,꽋ZD  b<~p,9+,f vhtR4ZqUY txB|,tom{ڛs9:ṼËibof"y‚ưXqزxw8t^n}F3Y5oXͣVj\s&,,B1Xd5?k/y?ESŰRL%q=yJݚY[swk f N"*pn ^?b߇ؗm&^!7R⋹Űe/rX?NĜov2&fI s,yLX@X7>U>|ۖ$Tf QY_Sw+bnK WiZ , ,‚ ,‚  , , ,‚ aAXa@X  , ,‚@XaAXa‚  , ,kb5a/$5aAXPe  ⿅@XӰXv}(5R?W ,F7,JM 'ۭ8JI{pVAڈ51Fd"+!Ƽ5̋sy bâ|4guNՙ K,ԡ~5K"sD]. ,F8,&oPv"ӭNRlgJ @X#7r9"P;wغ/Ęd@X#zMG?,T4E"5y%/aAXnXdZ$ls"[P걸}TS>y @Xr90UZHўcaa2s~{rYj`XDѧuH @XRq*1TVdmMńDf(1./aAXLXܵk}$FvF I{FV.&uYur6 %eu%mڻ ,F",:a籈OOzXT?9YC$Xð~[jpy bBwt)7;Ύj',&,Z^ $." a'ܘ8tDB?hHe-,'a{ax-u@Xy,{Tv+Z.i)R2˻"9cXA{X(+V{X4g‚ Ha߆E]dO9)JjbݍS}w.aa}@XܼϪH㬧bj@$u9q)~$sBsOa#Ijչi*k-e.vm 0 IDAT3=iRXRi*yX lZWRߝ"5WXl[)]bɻ ,YNܹ)/ƱRB:,E6mwض,ɨXřbZRN^),v naa<"{FUZJ$jN$F;?Xbqځ+ G%{NiUb9G ,墈] m˦Yǰb_ PY\j޵DN+"} ]v{Xz4aAX؉]t:$"^@dX!+ ;f0kT}P^5]b^‚x&m&K=&lZ햻Ӱ8IuݓnOMd9EdfEo‚HnRHQrOWiX̉l +~}Iw 6"' 9nIkh[X3{rac@XT$6mJ"g||'wCъő^9,:e΢)MM͘7|E`}/jRM%,ym?҃=,%}ucX\CXG7&blq@XASjfZ!jI~G0`][͖ y?}Tzw aAX͞J cXma̲u ZWARrP%/,½\űs;}hFC‚tx^;qW3;',jfl7O|3Y) wsT~[d6ż^#8 , ,73w1w-i3s)ku^Y&nhMe b%nO%YkL&'GùXK߬H:!ץN쌽|o.sAl , tU> sE-bK5vxYJ.fܐcg{n"AY‚(N(+_r'6Τ KR=ys.Ԏļid2( @X7oÜ |}\;sYdD&,aAXgX=JE~491⭰V@tB,<X+aAXgXC~;@^b$8mDq/,t9 gɠ+aAX TXhs"[۬/ qջd+ {a8t , |&6 } n^X\Qd ,+, m7"K¢uO6{ٌ9w'?6L] b"+3`;/bXYt'Dq7,&,ڶÑ+aAXXh;"f(?uӽ ƴWH۸Z].:MF"] b"ҍ͖D%RNBE!Rm W h^mNF]4 bB,2g&˪#ЦNvEa-,{a m,G/6:L0] ea1fG:{S㮛G Ϥz { H\$# _YDB :މ{w>09,a , h4B*\UC#daaQ#Qٶ 5cX4l͹W1,Nw3 ,>ȼe =1 #|-$|c5cXOoMXċ[X<ɩe9?wk,jՌzq3WD.,-c߾M aAX"05,DO"aɰh;ݑ};6r-be%,GN|ڰВ ?", , C$b),Ų\t=gjubf_ў8,<=ſ߾', , r2UE>bh|>-,ͼ mY~~<}oXLkm0'X#=|33}Dm2ruXL9&3EvP(,a1m_@X̓aU ,~ YKb(=H4՝i8wj"V{K,PH?6VM!), i~)io>7"b +V(, YC ~u ,&E2dO5h"\_m~<,{ŏ~"j( ``B=:(ļ]㧯nu ,nY>Ȫ"amF\gc_Uj=?s6I AXհi,aǶ/,ܸP n,9%[ey ,*Gi0 zX 77?o]jO] 7۫VBP(  Ŵ$)ҷ'LjfnC.[r.TWW]z]ԌLנIY7j$7]`XEXLl  "Q{3f:M;b@ӵwۉ y#vm@^ / C2XQ<V jC`*66ә][Õb3+Mc06F g7ָӮ,P( z`(̒cYn  Ģ)Ak7  ,F& עuk ϭ)P[seto4(,\`ALݤ]RUpK ^>'A5o ”,@{= xM_(J?V*ڻp,\3Ė{ӹ $ b@u ,|~] .d`c6`BP(ԣC:yAbЎUXTJ ^NI{xngJWYT -c0ykC ,W!1*+uf{ 唦ow2 EbTecoN"m@u( I>Oc'j`(`;RV·N Cqzk*b dAEż}h}C@P(   b X!/~Ŵ]Vo<["e!`?.:m ElaM.܅?X|ʃIkoF xFl%¶I0a`A4M wu+)r,[i< +VC+O_MkX}G@P(  CÜ0XLbՉo Iȇ BT:#mb0 nIXΊd5d'{s #^d[:pf?XtP `IJ`_'X yWLZXtث5x]cbUk뱰["XP( "C-Y`qfoE7V,F  O;Ł}cAi IM$S`4 +S*k`FhG@W:7\up':xXC·M_GX+; ܴRHIlM~v,N$U>U0-]y,~i5 B!X XPX"gt/MawzKTP6;ug c1+(df%U rl:E5XvH G "g"KMa!,T8|RJqhQޓ6dٍ oixtCoxecسx\kܷt$U~wudc'7^wt+ ׷ xo+cyߞE"+s8Ѱ@X a!,a!,BXtV"I]\:h a@{ NvB= ,)Rxqp6DsδɈ.,i@Xt:WuyHX ,ştҴK9cBXt'(o~z~"bVX],a!,p5>~/ e aѥ)"n¢xhsG6shtsdžᕊ=>xf+YRaqwRXhEjL\#Kͽ.{յRŗ чS1u+ߕ+/&gVoh* @Xnq56 j{泥#Vqf/TcثKw&p9w Me a"6,m]YHOcfB7O#a/FoUW_Mpas%xOޜe rvz\{XHX( @X7}gɐPd-(eq'b,KR:|[eTt'[a1Yӥ{qS;-, ,Eכm8OB],֓!lؗ5BYX:顐FX,DwJRLX┆WXm_~ErR,QlGy8ID_X @Xr5ٰEEgXlG\IGKtEhfO7=|c ,ɣR?j.6cq^_GTk['aCΓs7g"ja1T~jc]Jgkμ=qs$ݘgzPK6kbczLտG¢NPyr#h;bvO?^oj~ D}ň80+a!,؋jkyBr\X$r,vΏesuE2VBD!?u'i $]GiE5/+cLvS*nF{G/uH܌yoZOچŷzwӯ6޺es>b.72s ̍eQՂ} ,GN)N?]x7:*gmNLz-~c aAݛ;|葇~ , a!,@X a!, aBX ,a!,@X  , aBXa!,@X BX , aBX a!,@X aBX , ,_m940Z9}n޼f]h)B~4Ԝ u|0{%F |gF8i4-94#+<; aAXa‚  , ,@XaAXakyt~?՚턵wY}`('|ai_f/Uۑ~uXqmX|X}X&O\qpTfŰ0EU|]XZ'#aQ/#/'6,6 aAX~*!/ ;/8BI$y2f,UQ=jaqϊp b KNbXZҞT=V_ aAXJ?[c&bd1$UIufkƌ䇣T~ ڔJՃ;B~}1d0ڽ&,|d!Hf& (`XOǓ?:o×; W?S?=ˇ@X0#0C,q+U kx_g[3 Qk,҅Aiâ G#dIKN&X2E1qmyHRi?/"gFˏ4Ark,v&,v./̾$<|a:7Nkp1:a҆E^6Aڼ E5G(z͚ 誓a1q>in(no?RN[Hu"8 qd?ڰؙ"axsa!Oɑ˥a qŏǥL%"I"WE~u˅0MX230TݰHYc$c7r-2 â*+OƆEir9VΌE@徶E&o7ۇ;<}* =uW IJ4a,O|4ܱ~3 k.S‚Vs#r;Ə ?7ZEvԛ~gaFT=Z,ޖE:_S_^>{2۲woNsHɌvEz*gzޙnJ(l~kݻwo;&K-~a~ٲq‡'9mw=z`߹@Xjs=2No5w0S+sG %w"?HXTJ xp)47fb#XS)k-]|X|ڻB}iőW|a}!sPZw*v"Tth"ea5- ߤ+O&P )!yE!7pQgBB[2,,лxnr! ,BײLH}aBKg,.Lef,16,fԵ_7^ģf,BXh6,ja+۰Pac>‚V]k|J =E~XdC|Xʋ*xK |,x2.,Wvw=f9]Eصj~E},4BwƢg,(ӱ[Q%z!H]g,Gɂ PX,X mJڋ&,6q||XZ?r:JnT˵P‚V\3I0-DWKbWv\V:qp)Pf^ eជ=QX̟9݅$j跓(E]gz;/^ˣ.z-wP-OC{>‚V]dAvpO=BOsU)_\-zm_NQZ2cp2I)k֏&nM|G- 5ocunE7O^Oێ߯wvxup@X’Kk24uHI 5Y t1?cZ„֕Kg,B&Qf,.9$ɓĨӑw<9lc}I @XaAXa‚  , ,@XaAXaw  ,   ,pÀ ,  ,aAXǰ'wa@Xa@Xa@XaaAXaAXaAXaAXaAX ,@Xa@Xa@Xa ,@X a@Xa@Xa@X a@Xa@Xa@XaaAXaAXaAX=@XaǸ7 ,‚ 8p  ,~S‚ `Xg>AX , 7&@X1,mx|[<|L7s]͛bhbpo  , ca3NkDO-}?{"Ώd7/ofnp]HXX4EXa|(,?Yy^RŅ~yX{S8{W8ĢPO , #a1 )7h9OMlNBPV{zva:ޱ~Syy&"vτj7@XGNVX8PSHN4hfHXa|0,N as t`b[0̊o}Sa|vJ\:8w~\<"qC$~^᧭'Y ͳt}ռk<ƯΓet7j6U~˺]Md=7b~f , "8n$YeĨV yG>np-O3N 2)+ǜ`>kbIc-,B[ż y]ztiqYRS a.C.&e(}c9䏼 ;"FQ0)ޑjWE)a0 8 EӜ4 tXxⅉ^y{U#8,yNN0IF+Cw&:,Iq &,?)b-DkNâ_\UŪ)h`/,Iv Cg,="A9G&?ʃtB*,t-\'oego2¢Iv/ , / ۖ߸a1^dt+,wj8RRWNqAƢmp뙥BVٌ`]Ua(Ip6pIwjz,3{pZvv)Ƣ]u\ISJN6T~Rb,H& , ¬e^[¬eo u;,|$H<c5w[oı`,&sKD GX? *j]~1GU\ 򽨸zWqb5=KJ1l]L*e*"?o.~/a0 8(ֲȴ9,r|gX)ZKT$K9ؾ+ꚏ.GO,tTa1͂\Z7aq'L?_/Cs)H zI8fbMǰNgeX5KmbQyc , ʽ1,voS,Kwo7b'QzP ݜaX1t3)(H'q'MP"#Wt9a"B&qK`bpNaqSv1,j#šg7? <*STتVXlA;ӍB# >E[\'с1s.QzebqT",&aAXb1, Edž{ưH$gAXHʲ7aTAo_`/t]L6?5I='5L,RIO,6oKq^S&aAXgbsѱaa𣵸!,Z]g*xꕛ%('+S;j',BK1ޚX/ , ȧBmj.rm>R"|N,թP/b$Y=,VՎB Aow!ɾr`۟M8MڟX4CRK7pW , g ԭ-},4]a1`Xr\m;/AF' 깒v]ea޽,%~ħ>.ח6cw/,.cü eFׯM,MXwք , ,BR+85%jYld?z,V*{}pSi0% e:ԪR`[DaRA׊IVvbS*BP)R"{A3q'xܝ.?;''}g.3=L>;8IMwOI>|Pya3Ng:K=p(Wa|{Tw c\v2E#3K3W’Ka?[<'rl6qX<.dRx6 ҋChxo-~:VuԳe fÃ70+Y+_r`v3ه7e=8pC6\ɑyv$g,@X X l7oxxY0g,@X X ,^3CUa!,@X:n  G<㟏q/={kK% aMp՗B $ aMa!,aBX , aBX@X ,@X ,@X a ,@X    a@X , aaaa!,@X a!,@X ,BX , , aBX@XalaBXJzaBXs?_+BX , aBX a!,@X aBX , a!,@X a!, aBX ,a!,@X  , aBXa!,@X BX , aBX a!,a!,@X N^zmaQS5{XXl=lvwJ(M+aK΋bk^[QbC(ڌMEx}H\oH|_;a!,v/g~p¢ğZ|âw>,Zs8^¢CZ'OU1a7"7Z۷:?0o/jCvMDtiE naV]hu,zFKҚ]O*f_ SS/,\ui}X߇_Of a/Lѱzc?GYHuZrvin&âkوv mQ{oo}X(k¢CZ_X)r+BX{9~a|ʿ a/7(rp֛y¢wE"5h˰Hwl}Xɹ(Z-X^{,?ʼn~RX|TxUh{[MHXYX4ٰhFEX4| ljXl~eH$-p"rXtt8Ok"Ws{`it)z{X?,ۛ ]US:S5Ӫ^} ^2U/MЩk IDATAHoZIod*,遊bwQWp]YbD}HY5,= /oaS*aqXH|s$j/fj5b tSI+mWRh%0ZXL<&[Q+j}!U7i\ʽ4U-ޝ604KVa[}p3`|$ˠ_ԖiȊ_Nj[m n'Jn= _8!z3g84͹ʑF"M@&otѐVDEY9#>~RNulPʈ^.I`BO<+EcO֖Mh%Ȕc/D\Ics=茕|Kia0c0u±j,N c,?X/r0 tS5`qbH۷Uuiһ/tOG^uhWEuS 30Įv M0cXc](g8 ,|_~8XshMUmãwb$]#f)+ɷEL&&- )8Ho]\HagXxP"J&%39Wb/M`bw~DH$&NFi>mll(wҵ5Q1U/!a:xEZ@46hf9!+SUυ{vk;D(#XC8jOE'?h肊,'X4àa:'|N`P K PaHiDpO'%?HfD{u0M}Nn8q `䤧L,p'*L6BSAebqV*OljEg+P3E72s:!KB_k+;}#?Ã`J8<à9^ȯW["7pyH'{-!`$J_El;DT2ߜH=Ұ@M7;s8 [R[Dm. Mjz2}"W݁jOK8)ƀYraL7Ffd<[]"2X8.U^k$:\ԫ(`]Yoc bWqRDi~Z|(OBC͇PI!^+h 퐡] X|Q&.]ঋ[ k&XPjaPX$O)ppڶ/a<u#u?f۸_,|_W;P"ɯ&B`Ojd@Ru˄џY˜qf?k$ Ecў Q^)q!IͶPO1u 2735cV}rS0l,V ߺf`/MȀS<fѢW+e%L+>øXhkE=*0uiӪ $%|oCZq/uqB0C%,85x4?JL읊9hg8cŭawpNT{֫ ,%M6lƪ&ܝ$dm*hN4ѓLL?.nRzfQhoRuWTfm& `2G<[87ፁ+q.Zĕ'XX`($5c~J/4;x"Ѫ"~t?^,:͗=fR16GGV(\o1P?3|G!w5jA<"3`#];r~ P$ж)v{nx Y;;@5ے٘"[T GūO#$ sK7`H$\*R>+#{HuWONfϹh2tQܩҋA(7̲uw%Jk'q*5"`a].ۧt"LyU}oP-V  ;=.&$_%ދ .-bߠ†q6a`_NC൚=`[Eh_⃅~ˏ T?}8%5u8M;["6'LVSn l4Wo(8XAH#z)0m]C`њ")Vd5T( :[~½)B T(: &BƃVfHY\#.?g V?j̡.N.X3\oZk:lq@rA+[$Ojlk=ңIWj͏g'mUs݁Ф!nޮ1;ٺ_+ :rMr]jn,,`(okl `}(|Ύ=0mF+ f'X\ {ZiT8H2x×XXO7})n퐛r?p^:Jբ/~ C85&=ޕW`wBA(8}}hmf^?IV-)NHlu`#PT5f#t{ eٜϾ,p1,luY^'⳩j@]3W9>5x>ޕk%sDϙv+*h㬹\z"5kqX"荺Ezbx%ں[I_[h`!X$mJ7u)}ToP]-,vq= ,v %v8f|_z.AqIS_^kG6)x[S !usd$cf%p)AQ by+}TY݇ NLwyڛ^ +]usssUA7Xbd3 nIRP1-#, X1πGM=KC% ,BcPwH.3o I^?H "D%5`q)IbXCP TW*Z9;hȋO1jPv%Nԩ~X鸀 2JCԭW'VZgmGf:Ik=Ia a`IJ%X&j6Qs[:PZaR khU, $9) oOhp# >`^'BB: ׏N!}(d.A`5T_,Gu}\EQMBE:ߊEyvDW PYl#9n]Y*Lj1ȼg\`Ѣ/;t kˎz;yb 9DI4 e*GZjIߦ=\`bE..}$?wtP xs ;5b6`9zz` {sC;BᇵA>ڟaŀ#, X1r^d0 ňj;uţi,=/7F/KKbXf0 66y,\RqQK+$Pb#$>i;>*1-±vY]`+#>/' ,4}6E 2'F0`aȹuF8AjZݝGv?`CfxM J`b8wk  j8 zl `Ba>6>DMX>Xh _kC{3iY %r酲//zqu{h·3Ed %/ f:CX25eٰcm- $ejd}kBdX}X|FN)HןN'oiIWr7oBsMxnڶ ,Y VU(BL9I,4 zEOEa= {F0`ay( 4-꺀bQEM<,>X4GQ{rŕ~,nIW>X5Xtn"F/kE#XJmda|\MJҮt bDm`_ G#׳PtS_s4i8̊U- hqKVno X6z>bY?pV; MQ4{d>wK&eHE//I*cz1oflyb'kX;ڰ _ Hߦ,S?', >ǂ}Bэ =ퟌ̉#, X1r.b_,T*Pij.B~.h b(f(ԏ~`q-e>*]`E1/VGߋZW(z'XJ prpo1WKH"pr.k,-}xek(VE`AH>fŴ c#\. zm.@pI:Zڼq[o-/BV=n X6:q+[v <:V7 ,-ęNwȘnuCQzUz(~ڙGqSLN=XB"4qǽ`!$XE:8Ӫ =M3ߑcpwۡJO~Z}2*X /󶪛uC^bA*XW*?#F X0bNz:ӍB5PWn>;g-1%rO4><,xb?rcDGouwZhZ~sS޳{ɒyTw]s;M Xo_Jwz&Vl`pa6*Ml X7:ވ 0G<GG&1V7X^#`Evӣ$&\k-Զs7zBHT3?Dy8 ]%,I"-YCyAzyyV];R` wa[RrBYT?{(IՍDjP6 =4bĈ F`auxuˌWLS<`Ѽ[dG$ͮ<3Gˏx$uVұyu_WPm/g6~]xL]u XD"1XJJ3qZZF bbN FErQ ;E>q,pc+Qeˆ,9`auwSA&ڨE(YR`(>b`amjkLL QhX$ ."PK6lG"-BE*<_Ӥ-ۊӜ&wιjr?g ?eVI I,$yOX폳GB+r6ҘV90_[Y,JftB.:8$^ɹ^ CC/j{:i׬{Պ&#ZƮ?)s_U ?7wM;~X\VWۦTZ=szsӨBXow1q՜'}`2jZׇm- q-!bo=Ule %dI,IwQ+k]!ʔn'S(IU,nhqiB&VzVz[ֹN/s6Nn[oi Hbb !+ b: >}9[dT%LUVz{]oX:]yn}kKҬ,zsX@,ĢXbJI)^zGZ|dNVjM|RN,"kf/Ċ~'E{?]L>WBQꊢ(+W`a(@=>,?i GItvɬy2<]V,1m*JRV+EIН*],һ Y?e1 CFQͯtb/ݕu 3ՂlVW'V2|>*̪LH'E;E"(ov~RJIV],y@@ޖ l׼령Es]7%M %SRB!fW"l89XLD )9!VNʲLHr{Av\4ϔGVҏKg],0 @i,.=u'XL߾%/BXܖVX߳^ES/Y%#aC^^f2XSeM)|U[#7>ytex.>:S, 4Kъ[o7N3#Uc,e}nYT?iژxc很%g*M㼑g<9EȍyܸҬaEY ]],`yX@,Zgh)CDqx-gI]t~'00&X\1ߣۚɗ",ӷT\ sbV 1'w7qe߰xgaK)~B02IhW:vZ|A;ۦ&-˙+gE,S"4q W1W2ӓ{-7>>'En`1>˳#,RfN҈ms30ƀeٯQнS,mQ7ϙ3,X8sM-Ε:I—[w ,2_]^ iPtPmsYnpZim uŎJ%{ٵ{ F*!.~ZhEG2WÙǠWf$yv r <%v\h֛'PrKBnp܏%inH@3! E>il$'ȿ I:Rv~qEtnT8ْ`, RFXЂZykYz󚱻$Xd>'h*+Jtev/  E6 XKT ,QpO3uX?0Xx|PD8SNN% l6+4F#V`Q\H`qFQo>yg,Uԇ ,EOJYm)4Xdt>\c7pX z\!@i`<-wG`e(,X_+_2%HU)8-o3u4|+vtM1`q[yWl+ܠ޴*ߞ`$,`QK45[b_pxR-4+h} 7kDMWٟ")5g_Lc4#1==PAM'X`eL giEK3ui,ꢗǾ7JG5?,=s3g,X8p gXeF&$[e-qa2(T ZXP6D|hk,]`dx0qطݡ=KmH7!@>Uc5,=/$oJ]t'O eb#\V0jS&.ƚA1C=hES=FPSe*SƩ8  JMa%:Klwhg$%ɧ),JV_gg=t #G۽%P5%Ϟ ,1;to#!{ ](IVOx(r\@T O&?A?:ӓ @qXЌqbz {ipdOϡ(И7qЃpf1oΜ9p`™~lwR:,r-k K>*1y ([:U%,頚Ouy].b]@Ȃvn6$tAUԽ5*߆mL "Ҝ <0 x0X>b2:YF}٘yJ闃mUv;ljTƪ-ASٹ}P}p6/ʷcw9wscc`=`Q`?M`1q'l0,T~Mz$X\k> Oo"tcB}c G+ 9 ;Nu쒏q(.+ML'Ee|t15KJme\DocAΜ9p`™3MW>K%;K; +N"aM]crTX`R_[^166CW`Hh|x]ǁEUWܭ+el}S1 XT*8ozޞ K4VBpvQuY$:`g1`qEḵ?myfR,N0rQ`4Eŏi7vYl-U`p%[(cvW@~2򝝀DžwEtC_<-i,Pw4P!+Ӊ,kIĘEͥ%ϱS ,L9s`3gzިyA` !2@;!} `5^ űp(s;X>ma.Ԟ9,ކRHwM -p0?_']!Q@/3PІĢ(>H`NTvC6owchjZ{"R3d$X|fwe8,zQݾ B-`a\9nC[p'ORņUNc"zt~.M\9X@eKw6Xś XoP0< ;MY ,XpJJH?p RnPa( EUh{(|S)b7Pq[k,_[Wǿej A&xCYfq "E4W/ckHDda\~StUusn0JSkW3]U{/A쨰T5X(@erG6`K: vIb!MKSUE3MDYR칀K)}zoOZx8Q,R4&/(,V3iS ,?'ĔqFcrfT,[΁'еXS~ heEۯ'd^wQ^e@5/a^\*bw4MEԿ,3f̀  X(cئ)EN:\ ,'Pf\fAƔi"?YWj%2tooXx`.cQng,-:⡾с^@r+>`qmo&\Xд*2,I+=_@C$ ,mT@jhޠdH:pڔcSwD/M\YĈ8 m#4q&XL6B'xuG̥";7' X ([3f̀  Xx, d1\\.'f+8,ev3i`"H9o-%6pN2E(.[46)hb,d/4>pBy:3UICo=q4J%BXJL%vE mqoJM: ,iXX C &=XQ7>`1ďNs8("E8Ask!{FDւ֥u*;DQku08x!¿|K3 ; eB$8oxY s~̧Iw[@ц',"'rlѩMR:Z{鍼,PensZ g!:xA Ӥ Vp`}$,>OZ=`1Î$~EcS ZgR ^9_T)3)W~=X^7Wq+~TĞXiuͿs-Q4oS 8ϔW{_f Xxg̘ ,ӂ:R!݈jaMj.)3S%if_7Uz;5_ma{,;u< 4Rm?H8 VaJ U\q۠e/H(nW҂X`@xQEpnfM@#^}H!1O,~\Q  o,zًc(pم$.*nQM&`!?M>ℨ |c_ '=ȹss |19|6Aj=Ay!@-j+(E*-vo~rSVQ?Jlܧ\ʱ8Q$[TС%)džE+rԫ!!,3f̀ ƌiEA: 4*ԺOK+jX.(, PnJ#E$Tc7,BsP<5EIM+*fUF)sK/ K)zge`qS2"KbjF>F}<_iwH6C8 i\r[nV-6 n0fX *-Vޔ(J=Kz3@ Jg5o K[}:pwFc=dˏ H/7ylgW š̩bBMy;ά8`bCx\`ضK1#(k~:ZS;p#, C̭+\JgAF 3k1N2e9UkpB1c, X0fL'‘bZ?$+01^KZ2UǹǢ$ k%XX }\,g3̫Ovk(S ,췴)> M=rGV녅%ϼw.~:VˏzgOnk_xB5@M P><(S+}V3d)B~"rX!…a P5-1!R a ,j=AueIbf9XXHƖ[ŀ${y"ϑdu, XHOXX֝H~^[bo@"173Zu47uY({|ybAOizo0\>wWcۣXh~`aV~:nKO셭-P8 NMy"GA`zF3`a€1cgMU&ڝݶFWY&+ ]Azgv{Ǵȸ%~UvgUGnV_E-EBgE3[} xgn:".4L_mXoIX[d%{v)aZQ7E^Z& vt Nw]\o߳ uK}]?jqW4Q]¯g̘ ,S<]cj*ۥU|-6on^WR43f̀ cVp5+Kξ3;  F3f[,3`a˜Q[2>j-,+l1S pƌIi77`a̘1,'{F0p$(c n\LpKH+n 0Bv5"/L~~_նۆy>t>UT5z߾?6y[_8^8T0X8_xRGnjNqG_~7c*~_CG IDATm>ˋ~7S `YbϷl>?ҩ0 ccX`,0 X`,0 ccX`,0 X`,0 cL1%h "35p[E>%2پW@ڷy0O' 0 E 6j,0 1"l,n.b,0 UE黲!ײ/~x5YNbD25WT_Ec "H(ĕÛj, FX`,0 `,Wf,Xcqa0 'VL xg$Tg(ٺ54ئW#bt$x_Pihӄ،w;s E 7$G:v=j?5f6欴~;t+"1 |=eLFq֘{sXB zI]XcutJsm6l{yҚH-+LM${> ֶՎm7՟U2ls3]^Nf em[NtxRD~M;cogC |:Փ8ZL5vX 7olVۅ?;d `bOG2{7XT;7Ls(:ymxy-j `,Ҷ>=XvzsÄ SG2Nտ^UgsmX_cVZ{\&SFJvWAD+<esQuj-ۮD\Zq+2x"[,4 QMzrso8.]cq/cڴ fຍš#Ϋvsf<5vWmeZUBϕmg/eH+=Oj:Q־d*"phkoXn=aޚsﷲa~@ צݨ9D:e/a)m-4GztwK.u󣉳=k3o,:ל@V\Vbo옔Pk5 5ticu}] XZsZ,HunRj7C;?Г-*T]J g:ˋZyN;_\}QvReՀߜOαEr=-6qaѵMcKJӕN=jc f1ܺN~tZ60 ~&Xt1+2hmbX@jϔ+|sXt+7l5RY^6aѝZK+nËg±K*k(Nz'.y\z3xZ(ğ8X`,X$lI=t|Լ;4ۨ C"/S'3׈ \F0b^i8W}T6Sm%>8?^?A̸{F&gh@W`mQ_4Pz8%"kc)_ZH8:̵{G_. 5-LsqX'2%$53J>'MI!a]P|sV#ˬ[JœN#WrY}5CBb&\*UgRr613Q\o؎,["iKzӸBuW%3X\;?wt<6LWs-#JF7Z $*)|hzHRAxgD9񯌨֍+"?z zo{j_G۞z{ FbVQ6~F9`Mu=kn4^JhcOd]nwRR {3/j,BY Yfm,l}cK\3 wWvg,ԤsϛXIՍ^7'ޯVl.!3]xVDo+rtx."nx_\hEDdiI{BBbB.=N{(z=6O-cڡǦW401U,j& 'kh``u5tW5Ü {\UYbp~a1]҃C%!ktF_qb?{Xw%Xx.1E ݊=y\K`.c ј4vhEDdiINDuVm@ϛŋ^  %ƋLh&>L'a[!S,h 3I8mZʵxW59>D;o 8

x"bX[S#!̐-B&g9 ^ݣڔ5=s Y̥Rؿ "bb(M50GI(~1w0ZZp|Dl}wGӰlؤJ Cbv#\bѿFXXֽ1/kMw}]H+SGxbkeR,Z ӝ0bћ UlL,Xπ'"'!Z#! ̙ u&3s?fA9YpXL5@ӊHE4դwBVe)jZXH բgCOr6߂ ۑc401M, v&ъą#bѿFXH-5&Eט H~jXcaKj!EE4ԷJ,.ᬦBi֟O|E0D=q#;ytbX܅Xԃcf+rw|XXoŎCiEDBpW !<޳kIB5y.讓EWK|1W401U,3Xp{W>5j||b#hXwE8yBi#y*<@}ӧBDMH b,\B {mDP)az.1S(p4 Ec MU-r|}uQ<EDB4$yA!Hߤ%OsdrՎj~a⻔" .(cVVibacX||e#^b὾_Iξb1R5u}_,RFc8*e[|`+8]9qJsՐoαXl qyZg kg!h,)az.#cۢ ݋S! 'E?\ Vɾ7cpMiխ;T\}3_;saD]$fC9? $V~?v͡٭&^K'|5?>)֝'rN+Zɭlm^:`Xc.kVK̔X$;fZ.zSšhz¾5IķԨnr}o5DIwwcL]]SŢW|h /m}([V?<촶Wb!h2ο)"a WMׇVڽOg+p۝O1 @edLs~&;bpwba5ޮBM`O%7*Dfh'!^ RDE҂ɩÔdYbBoh0hƇxk.lUEGv1*],>5_w/cNC(N\t~5?fgY#{~=U,zW+Z0{m?DGr¿{z@,+-׶Sqź J_6}r8`O]){OHz.#0x*iS vGf7bGnMt=k{Y[8\ ƺo6t(ċ (-LgdSSyZq̛F(mH6|.RH {+)Zl !Z{nϷ|_./:5%{~5?}>]լ5awGSŢw|fez?[#򳍶7*ɖȏdemx=h'Q X>}|A-m}K1Aȸl?;bp<+4D~ٙEdK#}*H^Z3ss>fg;*)Ə6}?7-k݅:iU?ǀ{ ͮ1Rk:5*F~J:+;]Ih \sHg99Tp+sXZGgX{qRQpbXKÿy(7ȶcӍp'bn\ _pKyL?sX@, Jm( tIlXVv,7=@,FKV`tbX)4b|[-_ߺXt/b] jm\On[c @, 2-t_7_j:u1ɵ[G' @, @, @, @, @, @, @, @, @, @, @, @, iSo3<!#VRAEHY"hTFJxYJZe~^'O^->>}N<Ă H,H,  Ă H,H,  Ă H,H,  Ă H,H,  Ă@bAbXX$$H,H,  Ă @bAbXX$$  ĂRȅ2J96jX']:vYÞpRWmKylHkjEWja9?,H,H,od<7|#/TZ#k`C꟭"TrռV#q;XX%TnlyPNH{9~kݤH!):%/_UCi5Z GT'z'L"g>IU+? @bAb|t 㹩gE]rVKd4PsTcz$Y#uGZjKp0XVKޒڷ=NJM=-^W+~([&eʯ~H,H,SN,d7U| E:.Qa'[؟JRnCOGJpclהZ)FhŒ/v˨{ե\W+~!V?Q@bAb5؉Ť7Wd/RՔb퓺\/|s>ưBK+jk#69w/{]z#C0Tk?$$w"%%UNI֡뮩hP$k*ǃݾGKu:oq̱'p ޛ}oKP Ot1H1T7([1αN~dY-?e0 ?>i{{fWz~ukm_8, Q2Lׅ$ih9D{{9|v=Ys;I=m,[1ej$cf!xM)V#YdYߺKBFYIrw1w|-rasHnlrXfJ0G6Gyt bI 3m.x$ҖHוr&Yc~Z`cJk NB%%gv=mn/a ~OF*qc8懩gP=)_a&(my8pb:Ʊ "`vni "'jksU"THok~3bs'&\t؂ mu/,K=QiaA#Bt@Ja_0O䭝};o杻p5oh6-N=,c)]s3ӸL kW.pl:"tWW ag!QHR$..2o}Nni$byLɘ^\虒#X R |JL&P-T{Zi(wQ--э"JJin.W@WpLE)kMS:)Ue\wtbܚb`ߛi>H肒]p*:Yg{FtD B2unΰ:Y9yc1qu`"XGq 1QO+Tol>}j_VY5ަPD^޻Fܲ.=bzUvW"S}&C`qi,y| ±#/Yˋ,}\4z/4q<1]( HO'ꭩ[$uʃG8vs.Ndbry`(JᒍDMK%# k} 9++1d[\JtVQfMycMh@ݜ;bgIw|^P3/ntRw=S ؐhR؉_t ۽qϏމ }j[DQ<머ULܷ:$ J^wzP˝s7:Ʊ "`vnPJ|Y~< +ϵ;A:K K1Ã=&u._P6x fd81rhO@}v81eLA!iR)d'yf*%5qޕs\* CK]#T5F FF +jt´e;5/*-Jւ$58؞IrE#6ɸYJ<_#dXd .4 PIx6v{p6 ]S*`E$Ks XlU0kX˙\5y&UNѮSvR$[F]ldt&,+o>2;j2v `XD`bE`;7Ҙ${Dv <şï!ƤX'"m!E&)HĻ.|M,#~GF{0N?eNMiDq-q},$"p2*1 N,z׮ovb?&$}/E _mwc7Is~w"z9e&RV_I]8Fl{JQ..^ Kc\Rt+Ft/;4ߴZ΀ؼ_ML}VbMdfbpYV$ߖTjyvk^y uqZb)Ec4 ÑqxLd,Tk9W(x#Y6T؉Q㴤KɊt6 )%ukƀ˖gިBR $fiKA4ٝ]_ 323~F13\I{K+F[Q[1gXә)% V$EQNR44i:,u,ù =js;q`Ib!x༂XT_!pYEEJZ 73сNN1NR4uVhzTԣpD>@q ޽dfU/a,k:#[ЃF}&GYQWҮ5Hd+NBqQYQ2j$HWyXo7yHb2*:ibh^v6xŜ mπ'nMM,ށ-v/AWZl?]mS+by R- .xE&B DBt?U[~Nw [w)<&>}IZ[QH*-蘡Xé+EzK0. [Z=Sjmf ꠥ>#$H,SrzXp "zċm(20-PZ‚GL!RƐkGDn12.o\uwWBEHݴ+B3T=49?X`L6$^G(Ik$/9&n9ܯ 3pTkzCԯֽL!ǭ.uMܰ·?EH'T36!>XM rssrwxS}^9?XڍCg]Ao($A-@wVqryRYO!4stB5r߬+`@hgp^,8 A-9ŏ ldpdcWysͪFR &W|YmxC7O%R k*^-?ˎ$lf?+C"ˆN1XM;r×=B%;Mڏ3nXc#ң3e; ] ɉb |SLSmH{7_8#L/o2;[ӽ%6e<%tz[(Ta- 7 e+o˥BA3Dm.p5Hݛg{GVdVE:煊),^6߈1crp^zafҵbO27E)V׽q$BwZ׼{,y?|$QB3IWQ?+De6|IucK $ĩz=#jG0} G-&Y+m2vAV >M=ݦlTɝ ^Ujh ڴ0=*3cC,^W=>M A- 邡ͩc6Va? k2"xZ5Bzʰ[ֽQf->Flnf ,LnsO٠\#L@+$Q~8.?Dj{!\dV|QZҕBB|`o}f_DtmZA"ޮ=YbJzƝ/) bVc'_#$H,Cj4"Zs6˿ [>b $H,X $ViOia_K0 @ X @b@ {TwFj'.>#=欰;ka~#[1 $GˠzrF ;a~3dF $H, 3ᬐgre@ X @ ?4L,g`bij@ @ czڸ8.+M#e[f"WU]?l1IKcmX\*HC,Bۮv+mjjRE̙3g18YߍgΜ3g3gOXGKX|@X@Xaa@X@Xaa L@X?~ŧa!) Xֿ`U'XVᄡ:X:m g) ǓޑC  1Z=v>a3rz$BL ,xSoŻBX|gΞ=w!,HcȽR[ֿNbu1GMRXr9}D𺺉8Tϝ;{LRX|(Żza",ބ8Lb(}bu I(y[w`$[z9ј>(Vzrb+aZ/.;%Z,[%4`|N}DNX,Jw]˫u"+AE1Iaa!$D^#"4k(."YƈʎpfL{3@#Yw5S"D9OŮwkM9|̑ ۋ-zC8EhW ghIu->8bc-^Xi57S'ݭWww_lsiDdªCLy>N>%LgaQ{e)N2@X%,),6 ,*,NI. Ǎ&ID.~_P1%ٵY{ -Ia{mI"}GzEX$t~Q6OT="I|vSzbױM)QkS9Bp2Z9KDȰ( 2 bQ35atQXSX IDATa'FOٖS#Y&TULVqE'kEƤ+{.%˜qX?Ӷ7NtŤkj$VV+JIziBJ#,9X:aPu#vXң1{[ߌ[28Vp]rꎔߨwm&d ̣iXEkE>\x9׈:SRw5 K9>?^-9{Mhy~7RVY td9@+^" ti6uH;y5 w6,9u. uCсzS3,BאRt/3ؾ^N2>Iqcp֮dZ=ƮEeBZ#[GXlKj|Bϥrx&%6rXeF So PT#3·;W-;,Vu+=5vQ%螏,#{*eHĈU?:JœF1և;KqsVO^lrUX;Ht?Х8twZ.Qtuuȓmxp"gy..*,k}M,s} ]͚{fWZX`_ٙVS;u3ʇ몄R_ d7BaӿM aq _8q ^DS3eKE<uIG2cagΪE]uwB :E|z: z7D ^P'Z,R1A7Mԣhb4\jaQLi bSʋs63adbO !aQ/؂#C̨# KQ:9m5ˢ~ecM#+Jj+EeL8 g,lNħX9._BKtڣ:k~$YGQR!l2M{WFsrvV]isB?Zb!18  62,0 `PBA(a7 Ws\.fP"E޷>ĐLJ9$=UvyP4gػ2Soف4mϹAHy&)\c'10000 aAktXL>Bٸ&DO"ꭟZll%c*A) AyΒ&xzTq>N`)>a]^'#g-jƖ$ ^ox3/T8̌ $f`뉊I`אeY+/7 a&7H `*Z\` y ͚ ۘo#ōMlu?uJ AFUY]t'CD$K>3/E8߻؞a UN=Baf8Y0hcdGu',?H{A 8tYaab$+lݒ'FJ`V!6UKky ͒JTޛ9$9vI߻؞a*YgV)'V9YQP KI:hm), /aaYNWu3S ;-y1p֜OL/IxOPջ@;A7`m<}.Nk+Ofsq gbiqK 8lCX$AM@o=!$ a!F *Xa}&{/#.wbSò@Gv}sA֕ 1Q9X.u54Y{C7[-RftLZZ>Cg\M{W3]̯"d=W=KhK^؉A > #, >Z<5,M!YF^ːzub:U-ѻ(qpu9 cY< ΩӬLJ}2҂.,GGG/¢-WX<‚m$a)6@U$cM.OIT58lM0WxF<2\,x-n)= zVz"TyQ3G,,zIJ_Xvsk:z+gػc W|x +IAJTQ(| b````1 |]Fp5XMH Ii>W-b8SǁI]1 ] }.<`{˥ ,%\X\~ͷ+,x;] XcK$I|{:[c T8nXLxxc55/5嵸"j m4ufhZ@IirHgl_II3!W߅^BlCgDP9V] lw%VeL1L EU :%,vnm#,>`y6¢ Pw^P&0\甋'$`<1N[#Jpdw3 Q?gԩdXٝ@Q(8KȬmTk&o@ } 7MhM|MG;GД#+ֺ0\ ~+.ten]IљAw´>;2` ]FQR]Qɭ-9e-& .dkLR ҬϢk&q~}6~#c؞ޕeqkɠb=KmĐf)wk¢#,3}y+00TqOԢݟA-IQ?"d@h UEc,M[!bmȱnp ,/,J5~óh[V6t BErݶhO)O2p j>e(ղ,Ό@RXqC,C u~H椲eRyDDŒ2ɆoQK on7~OV -pޕ<]rZv.($.֢̓DM؉A z+z zܹl 5QgRU͙o%#t|C=߁)IU?G?J@7T( YZ`R,<"~Wy'^n'\`AX9X{\MRW,&cB,Q3G+$8:3jf |lA%uu,.1LN-]= U "Z&syDT܌rP^CB\Q@)LgJtwJS%X.U*li?wt0]9!,‚7 o+a O "gA@!Yj&Vz`^C*PwRUv̊J`,M,%eTV/pbfH?UfiqK -L"Iu]h!,nvhUv?C\IcXwI-J2CSyCH*ɼeN)CAP\ʦ%dM[Y{G 9֔Zk }BET\h<`=H(؞!OkFȄ߿OCߑhRL@) [ #, >VE@T" gcDR"Yl⛳,t##SX[ϸ#.[U`}[vˏs{W6ܬ (hO-#CK _J@X*5لE}MXSa9mY%"G}j;zeϣx"Ȗpf]L= /+bkkfEI<}.QueI((%ڬB6~O4ƎCRŰwſ=Cr񹾩ՕnzN!ʒibz]t JX)\X$ 9Yl M]d&ZcUTW,\%iY4eZ{E w qR='PuU@Ks~X"O\zhj~L"djgޭsbȒ/BǷHbDKZXۇ/c^b:8 [d5A%P5#i)vaZ6ͣnA58iBb!#$(TAb[Yʢ"RϜ9g朹/C{#ErO :X~Q/Uء7^XdszM>o6ozzor;lNStߢMjcoscϟ v>Cq0눭\L]^x&ŋOMƆ8|y#7 4,)bl{Tza]u/=Ǚ~žW"7J}hUiBƕ'>U޾eݿx_tH(rC?'+X`1,Jנ9tS7M;FsEÅv2eSfy$fwǺs}IKaU~qUxC]zk9Q/yKӯ_z왷f[Es1e,߈ 7_x} zQ'B|h52H(t#֛}XLV>߭>^xSFH}C:=~k};sX+^Y/}?{y:ZOp#9njxNӑk)SzyEnș< ,̶P`1M 9BoÁO_߿5fCћ~$ʽ3Ⳇ.k~Z(8u{,M} oCy|wE ?r"&ػ]8I[Ks}R"yDU5*X|&X$~F8C~lgm~< ?n/QVsGlO١Һ.E=C1*ڮӟ@<}\L'fk.ZAq/B)_7~.ǩSk|T~UayQ<,8@oH_O9~EBE e.X\AFm}Z՛M3}6m}g8MiQwhm`<(}߄A߁ͥDBw_Ǥ~穂F{w;C)x,ۓL3ڷ w;:pp{ tE>kn1{Oti.B@~47$Ώ7WB( ;χd־4ŋ#b,ez#X#XhN B,FfpXPߵFoղ4líz<::kA,cH 5 xR`/`EM Ů`11,BOKTP, M՚ "abn$XLtb)E_"ςoV 9!OWo'm&<{fJPHm9OHY7%XŃEi`1 UE,`Q_b#X8GoώV,\Eum66x{{vDv;?-`aUo,rgS(kE`!y,, `"k[bR`&XC v3XL*`1,dj-TM5K^u)<jݞ욏W"(vHc jj ?`i /WP2X s"4m| A`1-T` -X$n1AX\Lțk PfUK1XHXfj( Y]fmms(_,Bc,t,J "XFoOrN3`QIr :X,Imvš )ͦE K^jfS `Q)XB" 9{,X*}(`1&ńTm, `ngl eSl UEXci9 5/l 5MnGBDȢ`foWU4UVYsMěBwf'Eͦ.`i%vIi[0c2u=X$Rn6;E`l%X`1+۪Ȃ,xV b|$Xʣ`Np -Tz;drrEmgY3X=}^ b,m,*X@*xA S3A[ v[(yo dr ))v[KVo&Y4EtEV`1:EQv: l8g6]9 M(ʧ`1:EH[ȳ'Y4E RXĂ BE, gY@.B7]/Ȯ)0 [ăovl,&īcE/K1XDFJ,T0Xp 3 w(B`i8nǚF`XB( z;Zd]dbi cB$Ubݎt`N7bQd(l8r "bv wP oe o#EA_KȞOBEK,fYR/XBF,gT> bi'> %sv*` r aO!X\PE5B IDAT, {򁅞l6kXDPE,Y2vӗ.]l/_>s VXrʍ6Zj5kسe{[ ~."N_CY P%T[}_YvxvfϪM6nm}Wxަx2o{tյu5UPlYx*uE]iEbJo,jkW\e"X)E[ ,WC Zcuc{*NTS!AiycC[z;wwm9_gf˗a[YD0bϣSttVyEoW^qr{E+;bJ,޾'au[ބڵb}b!nX,[b풅ɢ8J1Y4EZXƗQ~=_b\NJX+dzI+W`$ߚ UV,mW,݊蒅8 ַX\%&YrqE-.KfѐkQ"[{E1W^qzEX,rYEZVnX+ OY?%,d$:Yf-rB .F}bQKEHB _,DxܰfM(1 5yىEZ,Y,Dxַٽ,bY=-E%[8rX:ɿTZ+DB `,ٲz'vrwg$[-oPqSrJYfgZt1,7:lVh+_,txE: /^j&Bمv7v,< F'f,fF.&yhܗ3]+D*X'$Ԯ~qlVn;fWjIYPPq}lڲx_ 7-D8 U*Y\dW0{a8ZPV,f(? TbPdQ CgBEZl!ů`L \S,.eJMArйa"zE5nkPw""&,dkZwiWjQE [0ւV )J" U+zlVb7 U?v+H".W\Q|iVW $T=3BRBmYa(qJYhbUe -]\-OXjEЊ+z^$PPކ  X0"<^sb!Qk!,2> XD(W^n7$Ԭb,TL˖Ex~[œ,TP"ŪXXEBf *UZ!sEٯH^~""=[NBzjbޅ*OYȋiˢf>6gڴrE9B{Ip-|HۢVxB+A(aݚ^n7)buqObaYhE'"\n[ |"IV\ bs; hX ܅OYJ,#y/EJ՚E1 hC (XʅH6[p n!UZsšT:U B,^]yyb&ԝEk}Y(H^ٲ8 U޳'\P Uʖ*J8/n{P :X8P noP,Bkowf<,YE2 Y,ZQ1[$BƌWFSh2V튼^Q rj6oXt=}oM-W,EٲPbBE^"Q-]8R1 ~$0B:űnA+JP[ۋ `a7,Jbkbњ/ΊdJkq*6 qD Q-nV~1 zNQ=߻WZarE>{Ei9UEl5 5[goYreҢE<-V|q2cQ*D0ÈWA(]6+J.PfɢyqV¬Y ,^fRC]…JgHhƿܴ\+1e^~ƠW?iP"jݚV,Z7Zpb1< Lr2doY,}(lQňXs{&~:; UXQ s*mЃPӃEb1hPr},5x*7 ]G[d bQOVaB犴-{EYܶ^A,Pcw-I2TGgs("rYe n]XG>TE uavQiE7e"<XnnO ɢ1 o!0B -|1 ~$p0OV+d ,AN"Ń%:YalYtY P U-\<;D*tZ^k<Rf,'L, ' 5 3fV;"ZlԢ ~1w3!Z+YtZsE+W=yEkFo޵XTP[E,Q,,,8TQ Q-[x69Zi-Y*kxVDcPf*/nonInn}v͊]n'E~)WJ-ʮbaIp4"+!({VwhlnG[ݞXY*YYP,hQV-Z:\ MF܆DN1VZ\Q,n+f}b1,BŰYjQ[nQ… '`LD,̧H_ ;A+ΩY%`1w0fc~f!bOEKA[0N5DC(j*VIH^کbb1d޲Zfщ? cei JE\ H&ߑ[T|hE?eT'+P:Xl_{b->>RkYP8TQT-[dX: O,THCPQ+14* `1<&uh CfXMCh"ZXrӅ'`铝"I[<XA*X[,,0TfMC)beZn X(UtZ{~+v^a,Eb^bB_JMp޴R 1BEoA/>,*EESHVA\Ǡޚ-,͢Vf~T \z! pP?IR!"hž+*+^q7,L,'gMkYhEb` \Ć$@5[QIݭn;lUխu{Q!5HKU7RdS]QE͊"j"Ů8-T(_^eQ--=YhZ( DDDDD)*aEvŏѶ^W;(*}caa/Nד+ %JP7YK XmqEҼ((ILi.-O7TXU,0 *J}} rlXDYܮggBo-ƅE$FL """"ILi.-ШXj[a3}EO^eC/Cn!tB--$.V]_(b """"ړ7&ӟ **Բ"uE\!m}E"Tj?,NE[Y1(/;CJȸXt""Cãd)П(RL!QEjV++ a⺰ҧ"}ʡź(qQx(hOv,hN **eE͊1(z_!">.,YC'Qeq!t|!ihzchMQ5"* ˊ5(w_q+,mY(YإED|%lQB'B*`P p|ܞs|{P;tBn--.],HPADDDD7;qY4 )"BBo+uE:Wbi>9y U]CY[ Kb >2 """N Yf[]I>wPSP#/,΃E1Ԙ,|Z[Z2DDDDDϾ Ҍ5))jUmuE!aW“~ϡ|ZX[\(]d_a_DDDD 4 SdTU4X!Wwۛh,,z^Xr,&eNK rh!7[ŅEnjIDDDDϾRϟe.Mj1EYUuYX\AWPE>2,bEP[ P(QhujQB,+ԶB+>VwmB= ^ CZȥEEd .V^`aTDDDD"w )*T$U0gP" !ԽH1jXZ|4BbEEEe M ФXMQPqSd|UX1!ԕaC,PK AlptQxa1B """"AF8ȤHXPBl+VVuEPEke;; YXi-.V]ThShzT#&b }B+gf/,7'pi!/<\H(ADDDD'oCiTpPa+ʺWtʼn&﫭FeiB\Di[\^`hc4ADDDD47uʩ4Je>jB>xWE3 ObiQCZ([X\h]H`hb """"_={4RXWlbǗfܞ,z+ZEEomi?[R|&آX!oW=ܾ,_YtТBJDDDDϾ9ҌeFU(f־_B= mYkxi!iQbEE댮~ """gig2~H ªB軃{aq6,c([bciB"B3jm1҄E6DQEuqp{tXDPC-V\d]^X`4ADDDD3oGm*+uŌ+'W,;H£b DDDDD΢bLE+uE bū3L1 ^YEH IJ2:'ADDDDHˤO*US, aY.-E ../00\g=&GI;ނ"B↊h[Wwʼn2Ԕ,ꭅ\\$[\]T؅ """"ALXRS$T( tYs-$..2//16ADDDD73 )bAԈ+.iYZiТŊ 2GŰ6ŊJ+(Vw`qYZZj Z1VbQEYVV8+ Yl/-,-B#F4O=~pPcE{]q.;B"EEօFCDDDDD猣rZ1Ŋ@dTL—K+~Z([X\]`荟'd*.**Y!]rŌ,^XYlapQt}lu E6FE /taCŲ-- ../*al9aTe uEŴ,:halq!ty7~DDDDk?֦HЪf~W\ ^CuBD)[\d]^(`8DDDDDBKhPR$ShTHU#NVlA5>uOX\C"^\d\]H^8r!ӨXW"B**BV튧{7,K -.,/BatǏvՈ*w*()|TY1K¢g1" MM\ """"z%bThUHVbǾaصؔE-[7~DDDDt鎰d\tMX \CIZPx. """" *bV+Ed Ę_=c/׮ Ba5M@0yl?*ª8+jaE)-¶XŶ.VpAGDAmUTUQˊJW<oȴE5/cD))t2xX)uZl"uw+%*UΊKb8qE:+ ((EŶ*&͊jXdbWZ$qZ`ƠHgfE+&JY|W"Hm?R ǫ"ɊbVt,aQOE-2uF:"̭VGdEKY4-H"-qOnc3Z!]CNJBX ,cC"l^āѿ4(EVtU!,@X+38}VU a1Y[^OP=ўUa@]b_d\{4,e^a!,@XLVmiP]`M3+q/to+CE Q!,@X 3ű3`]zlQ/FX ,@X a!,jFkwa!,@X BX ,Eȸw uy+aa!,@X aa!,*a aBX , , aBX@`#, , a@X@X , aa@X ,  a@X ,okn+IENDB`mkdocs-material-9.6.4/docs/assets/screenshots/navigation-index-on.png000066400000000000000000004320501475306445600260060ustar00rootroot00000000000000PNG  IHDR XlXPLTEGpLGGG333?R!!!/GHIJMWRSV^]be]X IDATxMrWQb,âl^X#o[}θGS^h Hza!,@X a!,@X @X W,a!,BX a!,BLO#2 aBXa!,>,|kCX  a!,bI˰!,BX Ǎ %5<+T_xBBX ,4`1L{ea")?XfZca!,BX [}BRϨ-#TEeRLxFe^< a1~V4EpqEa|âwV6`IQZ--&q?Xb처gV~50@)ҸcZ S܂GEEPxG/(k݇ a15\T(IQ_bסV4(F9x,\]dڢbaܬb`(Kb<Ⱜ7x`ёbaqhVGEYP `H3HѺ"U5mtHI\bȲ"~ *I`rh" QsYTvE"%A1)x4RuQh8,ˊHUě.'|hJ2yX[5-HV")7~h$"Ѵ+Y+]Q=3$ٴ,VW̫2mѯ,^of1ȼ"]ŀ' 94uP[ 2h^++UL }|$8$-ZY eYlQ v,ޘ@\Eh+,R]WTVE((T_TEnhQQU5ň)`F̌X]$ڢ(-qjgE*MhGujhZ XރWtb*bM1VIxcuF.mMC6b5xWb?*I!h;Fyi1XYf7dE|ViqB'4"u[lf+b7+QH @1ȋx\Ӣ,,mWeE *A1x EIZM>e\XtEEVWE4)DH4/mQe1qXZu-PVtfM} "PC1ڢ+RqNVgĄs@Sn] - -,C"ӠYS&0IB,d^`,zb*K'w?xy3HPŧVܮaa/XPsrb*X| \?9Ÿrb +Y߲0>Z5Bbs;8}prɃӃ*9 `NfE @`qyB Bۮ혃ER(,eIGU1 ?w~MwG/~={q/^t.~L?=˾"J럽ɿٛC)Xγvϒ>~Υq,kW0 Eg5ݛa!(G|!E+}/ ~2X^6 E>+YR"JEG=?#u }q/C,$ QXot ;eif?t/8Izw-`$vjqnV$ wsv? vS]\;YdP,ڕzN`W`QEvͅ op96#XPYW;=[|,%ߙh5Z; \`K#m'><@s@CK0Y36>Af4~>;0x>6Ɖ 'lП1]WIr8;J?@V;7@n=X0"",P,m,Zn) ,4XP`L2e!Xmwˮf-μg|p7a0z֮mWZ6`d2c`_"eLu`fn %`Qܘxh1h6tβ0轡A':ݔ0=ބuE CY[8ǦB=wރO?T`,.P<ɢ]vgoʢP``nR ?+ł~n ʔ)SׁmN9 , \ъ,pItK'ؑ`Fcuy:R,rX`芰_Y1RDã̃'`1 _@k:P-d1_8P)=,bp.kDWR,&KX\\/=Щ9Xlw:P`,;Y`K!{ e`3qBxŹ+H``(3/,,#tmuPLPkW`A)dfJ ٣}XX'챧,&Ĥ)#)⃚`g!KxHߟLQga5RF("2JPd+}$0b7G*5@1jX$ߊy<,,;.T],..ޞߊͦ'ٰvh_Xw}D2e>,n|(,n_'}sqHz^רG +ਡssTx/a)׃BW3H6"|! .! Ґ:Xy63Ssłv<ØҏVE9{bٯ_XE.gT`Й<*X)oVI^t; ,6:;ѣ,Sf@RLYHL~{BWġbϸ`ҰkbcyZł$Cj{r"˯ QK0MܙbQ p%Knf`!K4w) ,ZEE' ][Eūj`Qbq`K {_9^<.X[NU,|vXX@4AX ͊ܳW)S!qP~Xqh(4biYx+TR3#złɊ!X@Ԃ`)I6&`1%i'q%,lfbapR%D0HtmbqbQdz-X|XX yt_ mOe?m w6[ `\1c,9`2e">WW16&{9DHOnT,|bK+&]ٕX{&Ȋ,k1'UGsQ,x -B(D:E `I?+8I;Yŏ7,,m`!X\t`S&Y?`(=X,p׳VvX; c86rY(/W,ޞ=XRh' ~h``1sh; 492es,Oܝ$Y|Tlu,̷-S:SpyŒpˢbas* rBsfc-XDRTO"CҞDMbo%rTbQhB,'vPwH `,X<-,Tu jyů"BOTPvV".Aj "Bnc,ceX IDAT)S=WDŸmbxwv_XH+Yq(aGA5[l^ zif },C GP]HhU7P8JM ;x;>ib.K},)>Mm|b}%>=R,,.ǚ,LE[ۿ7B(F)!IhѷeIbRL~&U,aZ&ŷifZ?D?1 RI"ohX,.Ȯ<2 CdCB[Ҕ|W@  e,*}, &nܼ^)x`!q.S8 vY.DD tT T,P~% JFt .B@F Gy>K^ъ^`8xf@$>(Ϛ ;Dv'[YG >ȻtW`^xQvMY$x]G?mY6 rœP/$?uGdр߉/x>]%oրĖ2XQOK_߁SX |GS ҕE,^>Lż*B __P`B MkڐΦq, t7鞞TS5jMSCYBv󋌱7+ - 6 1N#WWWR')d]TE9%S㈚5Ѣn5R6Z\9 Ql 6;i_f,hI|xA2N9h/TzK)3X$܄WpUэX]5 26,lQ Ge,ENV~,t_T`wXPJb/`QVB}:-7(}Xx\ΚX{s̈!pBX $X;,E1;:ÎBq`ۋn5b@L~$zYTf'A!K<^,^tN;N5k+up[w.zȚ_꫏tQVcWeRe?W> !R`[{vos%. ?^(~ `֫=5gQZVx^p3(*8j̲ms*,֭e?& όId kt6&S;A Go ,"Xdtɶ}Jt"=A@X<,E]\\l\I`DljIa2^_},,3Y[rz gE在vOaGoP/ ,~,6/Eo`qLe3n|.b" h}O2B.}ĠBw\)[lE.XU} "y +YB"w8 Wuh`qK[Cщ[':S*偶Jq`a.%6Pn-'.SXK 2V,ba d` Ֆ}X, ,?`c2,2~~a`: \,VEK?7 ,l.ˬb~,Нɏ Mfbh #X4yiHATiw`&z|Ѷq`qoYy{ rf$/H"Aqn ౉V3sIAcKՅ Y Y `o^R3g,j7Xſ$X@Jw^ `7\9.꿌%F") ,m&OQDƢY*|5k{ͨ!d9G̀쾵 ,l(l0mKӆAfYN-˴P5$_B4x# q9X7DUzS U77X@<X;UoVYvzOiP쯊,`9TʢW(G0t[֨N޻k&(ӥ}GےVe,QRfĊŽƀ4LmaZ5}V  4J8Ԋ[s e Hb, j,f`Q7gt!,JY(7+כ}Y_=Xh icz#SR}GѴ9 m8 .z%NR,NCN3+ נd%G`cxM iȦud4t{U@@ X#Nj":(X"LV|*lVOO^ `<'B~ 9>& MJ7P b`k,d9g^q.):XHV,: .=4,v?V9,d WfHDf*sxq`A Y,gIXFjRt6I&qz%+ga.XP)uQ*j/Y/,6K߅݆E,b %ў!{ᐁlڮvu sb"FStq! Tٻ\1rʅ?;oHO]vB}B~$,@"&IGԑl^Ჽ![WӼ] rsxv(2&4Xy,~]`M,~(ޱG KW",,]cƢN\)̖뱨{ݾ,rf@bH? X,2(^@tл q `^1{z1lZTpvͥhbkJXl5,A\`!3FY(,~ʂ7²",XS岼fIXX eFHq.hy{Nș=m;7.`QGGlz,!>m KlfYGV7ۘ^CUBr:'XŻ 6>6+@" h,~6_ښ/EӲ,e,"KAOS{,3`ݵlH:)PZ8N4/!ղ0YlWDՙ]z,;fӼ E#2[ Y4?ٯTToa _3XЌśp#ۇ bCb=1~r', ngM`bq EIy]0`aw."!76Q,F4WO8c[9 1iH.."&;T&q4G4U+zV:qF= W 4cqp` ,_<⷏Hl+MsV /p_(oe98PERGPB_ezXrN `j0΀fǩ`qDs ۡ-gq`Vwq^zY3<26OWB1YxXʫ,{\[!@hѯ_}VzpQynr?# !X#XxS+S 2e}E}xe9V0Y"Tu74.nPh ׵u Wɩ* {p0@ihV?3oǐN|>rg0fdq,`g"N ZW`l 6%fڛs;%xqPɂnhL՜N{P=͎A'Aqp< {+R?.@Pi֯q'L@XHYuXpmһ-D~?h![tR`?,<_;b ;Y1 xѫ aK8]7#XA0R,3`A,:eE1_0$kaN8%ۮ$d؟Dl! , ,0MlqX jŝ6dX_[*9hZPkٝ`Ub `B`}?-зE,H/W͢r.":%^H3ag,j,j CEŭ4MQuiVo*n8ge4m 6w>m\k^t\(@MiI $Jv|/qS d8 Zm,BhТB䊀@BQ$"ee}NwΙgf4;2zEpei};}6Bݝ ]-;! 3T"TtFL=psWEɫ(`㖺vX=8l`[L@,?QuӘJ,X?o[~o)EZ1K/o\2< _:8~4fog? 5cX^R]X\Xfހ"YɅf_tASa Y4EW=guE`4; &ŁwV=V"K=!zaA,.C,b,#WƊmm$Z,۪3T"Tˬ #/kβN/(vԳsdFbbaCu}nIbyLb͑_bOMڞX?/j1Z,_./A 0bqsG"*Zh7h;<⣼HW( ,_di̺bQfaF[MKfMUDr;AUs-@9@U9p ."}VrPR,f"uH]];hbX\jbq_ƏvJ ł"!x7ZyNêG{V#hAWf扟P}aܒX5瞫Z`bsGG;CLEYt+±qfayNLG&{M^$g.$j DumQp4ƾ"9S^8$:X,-'~bF^1A,n8bt%מZ,w܇׭ͼG\“3 F,Nqf?(w(Z_4WWX-YZ&] K xݡK!"b<-'nb7{ƍIb7. ő>m4̈X8jyiŢXw̢.Mp5ُ[c~( Ei;"EVTDLDNTB[GE+"ubxP"bx"ZC  YOI^I8Į=FG ĠuTiBaC!FbT`Lx Q,:R,bpHH,l+ߤU,|R բ h%>W̭XfqWHTz<ƈYodOQn-j~UK}IC댜#B4 +DV, m[,ڢVΝEw|E*pA&fL,`"0B8Eh]^dljEdY AЌlx0;x.v=9H m})HybBX ޾o?Znj̔XxfQ1% wT[l'5b7pWbrT-ڏ"XG>hBw\8~޾ ">z;Ub7B,|QX 0cbt^,PP 5͹C#'%ApdHt_ʳ#YϩpL%:U1jf:M`v ۡ.b1楨&(fO,7o ݽ8v8ZŸM*o|*Upv:#nbQ8]&9@Ћ*,:nWPbNE"cXb_XB,yqlGR_:b_ޢHpx[ kdVCoAeTQWsu%z&z&z~:J,r>.b's.$X@B,y\/DwXuG/bvŨQHtUkx8P3[}!nZuIP i8 [3EO/I,9 /v~}9tjbw ľ:8C'Ġz"C'Cؗ>UesVMxwd3ʼnb=?wo=FY\XhӋ׳+WN'^%R/nf+xG(F1rQl/l @g%!$(D&F Sŕԉ ~a$8] 1x} Ă HXbB^1,Ʊ_X_bo { @, baA,{=Foޞ# /E,  3 XY,RX|5Q,~X,ʳw]v Ӊ]޶BO⫴U @,*s/$pOo9   T( ,!$$pYWB,RX|+ǰX\w⦖X8M ӈ>z[MW,G)ߦ[,1)d%s,$.$$g   3łĂb1yba~Ăbrb@b'łĂbAb1&(2$S˕bQR,*ŶX,EⰜjEX<-*źF-VfҒbQR,Z4-ZzҬhbnҶHb`_EGE*ZbQR,:vy]csqptbhtؙy887EIh$60w\GgŢXƎ0с8<+%Ţ&bQ 3V,^嗇GUgŋyV4,x7^7âav}Ţo LYHHCŲ7|4,ʖ exoL OX6T,,blfŘb177o̢8<+%b)2ŢX3R, `aX(baX(baX(baX(baX(baX(baX(baX(baX(baX(baX(baX(baX(baX(baX(baX(baX(baX(baX(baX(b ;" IDATaX(baX(baX(baX(baX(baX(baX(baX(baX(baX(baX(baX(baX(baX(baX(baX(baX(baX(baX(baX(baX(baX(baX(bOfsѧp?9boo;jzO]x}tϳao1bX ?l<.?35.U_LOWOx/+돟(][#ř#_Zp8y>SW|g.tfOc(b1btu?͉~zSE3k+Oޫ7ꎕ[-wuso~g'ӯv| `VTb8ű`oM?>< B7,Uz1bx䧺[:,.Ϟg:WR]mtäaQ|7j>m;{dfzw| ߏ޷YP,qâzw[Y+C}Xm8?c aջKhиĭ?6OD598ԞG|l{³\Pz(\I7/aaAٰP,âޫz+C{>зKΥMtGZ_N*_+^]%_rydOtxo>־OC^o6W2,7+ngaQkiߣCsаQC?6, btX\*j wvw6.\:yOS|v3_|)^=ge~xoN\.A\FԤQCH6}͙7M+s^gg3ުpbs%N"❦8oε:~~)Eq=nځkJ|<qS.vX4EQ~@6hr%?  ;XYF$HXr7iEVHHE шv*PG[,:MvR"XF,P)" )}5-([r%6_~f=C|'B)R:`Š 0F3f}üC'}``1š~bM/}]@Ґ݀XȈ,˘`WQX|i_$`|0M h8X$o8XY\خ ,BG_P@sc" ]sEcXt@A6f-ETy-nCTb#([ 7)Pb+๫؟;hߴ RH`nyGCgE7 3.a ҧZ`|R>Lg?1qU,tYT|TcV!`/A[cmz)(XȈXѧX`U`h,"7$d_2h,T`wbϿ38y{6@U)~N\3{VQ(4ub" -ڷ4 "OdjDSvmr=tP(GÇF}|jI )Rm` ,K:֭O,nfpKrA\jummd8"boc%@g#z6<^]w \Yl}W}/`!#2baDRDhi -`]RE"]bXRXbT?VM]`#(aa,vh!z0%ڐ<2Y\] J1`i9(A,$XH"O5TN^nZ;np3lt8v]Vk R<z9; v/X%I.ܜ |@6%G*'6 ,dBF,`$upyni , y 1RX<6YT (qH"B BPnVQ)3Xd"FCdEXE+ő0 3L˛*!jg1an/` v MϧO}E[)፾7`!E׃M:wLӵES .a; S~y+Vk Q;$6⑙}L.Cq)aR[>IXȈXb%3K2]׳Dp'E@b8?,k2Y im`_Qoo~BF,dTݷy .lt]](YBA,bˁXPI:_  ch䞌q8^vCK c{# RHy-X@ =*y-`np!tb6cTzM&ͺ[p3,PhgOj 7}LF',`4bpn._g WT*jXyF9EyI8Xԗ| ,IZ jayUUwww`$ xI2] 6}`ܳSE ~8Ztn!m H)R^ UfX+Z\T' `b6?+JكVFє1aP({b*):XȈX8(X5"l=M7UIG|9v)H "T} dWWԯY~a3X'G `p;n {>tK&^J֎-P{2B )Au6Xz{G y3j tާpAG[ƪ_& Pv׻ddm#Q3Xpýiۿܧ7 $XH"u`d`X$f#$ZV8rj1Tc6']ZK]-UhZ}pAeGzMEIy`!#2b PЕ |0c5Rt6wήm%_"(!NB$E"fKͦ\D"'NH JP r:d3~I( Dl m<RڳJvuJ4ۯZbAkGP|ł= -JnMKNĆG'>׳S6sAc{y [g½ŢP$\@cXPvOdyI ΆK,JրP5 A,؝n`ݏ{/b]W #wn_y+F7{J.0n^+?ާ4b\,ذX,} HkΤ$ҳwӖERߴ(mK,+9YiѓO/g7Ps=F[,F %9'4p$!^F3@h,x3Wd@`(a5ܷD @|`;{SN,>f|]W޿ɾs:'o@A,RȌ&ܓ$CJw{{?O#H,X>6Eꄾ^gKζҎicqE3}hl2>+)Xdw.Q 'X\k%ɟHyQ=?;5g#vq}a_ҺkR³EG6{5Ȼu:%2P\z%#L,bZS%Xrϼi"q {oHA;wuEPSxޞo|}H7O$X(3t7fPڦJA,͇S YDbEdgϞ;]惖3΢}Dz^.֢clWR%bі4;|]} e‘1/h¤CUb!,+%!$<77ˬgcnRN,Wrݛ͇䥑I3 $L"f|m-޳pO\U :gŻ^ 2jvȋ0E,j(/Q b b%cQHV)U-1V/8:LеgxE9WhMX @bb;'0)5"bv( )A,U,X @"e7Xϋ'Xsu RGК)@\ $bS8~]Dwz)A,U,X M|Z$%b b!;6T,R5vZO(mYcSEhM%XX @buǽ9f0n'T)hBQ ;j2V!*}o&К+@\ gfcw¸_ h.R, cBIԏӚQb#)bZS~%XX @bo#W ˇbarq2L,Άa3N1ӈEhMb bJg  b.]"X,E{#X,)wyjvhM-b bR2[Ӊb;"iZZ,zu*yE۳Tb^S}y *H,X`fbAsVC,Pa>@,h"|JW@bkٶZ8?fxLHe C]–"5u /@\ %jg%Xtߋ!޾X0Ҿ2pk>T~XTY^" $حz0MA, P,XL񕁊ʧК:b b&fsS UA,hbQzτ  .OdD q $H, *bZFXnP, +8l tUswr׉EGp(YXX @bQd\Q,(h4c/nT,z4a#&$_ކl)2T, CYP,X `bKZUgrg2$g7%/(8mZ 6kJ)Z#*Js\5ЁXX @b{2/7NQѺ>4_v3Ht N%sqۤbJC5@,*Imu4a.[+vgCŢ%xLhM %U $Xhtvd:Jl֘r;9#Z  \j-Ir b b\Cqz(;똊gh)Ba % ]gUg3dzI^Q6賒b!+BM* b*H,X8j4-=MKnN;ۦ ]?j-݉BZԢ"L%o}[M;J\X^S֯C,T,X C~:>_xpT:7zkrH,7;Wa&gc[<@7,хsEB:pyu3IMrК2U" b1FS  AjX @b@|Yը) $ė}qx7G,X &̼n)U"X @b@<yhf'!H,X KzttHK]ϡj f8;[ :*]@Mi K%GOZs5~m-Zmb{yI, 7oQ`J@bٻׯ&<|!\@+=!(TQ/CdnJk[hٳ}sKeY~=03 ӓ/|#tvQ72jm6n=2$r쥦 pX'oh XbW՝^WxS,JGŲHX    4ƫM|[` `AcAc4Xl)05o\Rr]%O9X'#y(e;*'`AcAc(XTtfNJUv:vwMQ:@hʽ 5 Yvmw,cݱP|3Ran,`,6?Hx6XtMLCm2"GE0z[~cdMp,biym̫S k6 _\NXeonj;EW^+Jؚɼ`Qi嚵܋ܱ2;6CUI.XXX8{",$2h^ J"'EPpJ5`\ IDATRоfLCwhbfHdO ^~ 4 ڪ"% (k I4(-@v$Xl20\<T&`AcAcQ,Y_2&%"cE 3hӪUQYbಂŤ~Pj$+iҹVX qQ\9_Ee>Chm( `1"h8*n #?(")1i~OHj`4Oz아oMEwՎ+Kɔڎ)5oB mSMƂƢ$X3X/~n4֯8S7&I^spir}j.ɋ.7X%"'eEb WLԗn 44%zJ`*AK$#a#X 'D6%%s3m8$T5d,4" 8 44g)]`Q ׅ,BY j#oq[aXQH Cm`(1֠O`AcAcqvxo`Q/{#BP`("VEMRwK: 5 , C2X<$XY8;XJȺv$N ~5{; P`͈yulx%=c.X|)7CŤ[Cd`gƂ` b݅Be {z$ wD= qyl6XtZWU`gƂ`_Q~#_$lz{(G<3f{1/I+H89bLMb`ѠZcEy`gƂ`<Ւ³$SH+JȀ(ChS%2ئ\CDv+}FV8^kUB$+޲+"wrnGT\>#Xap,WXRD5sjP2W`#X(qm ?_1e#mB"5|q_6H$OWKZ&D,$XXX8 J݀#]:OJk-~RU_'X( =+N\meQ5oiqBVIW1pXKSZTQͣp,h,h,7;K Gx('!wZSW[n*Z   u\   u\   u\   u\   u\   u\   u\   u\   u\   u\   u\   u\   u\   u\   u\   u\   {?̍0RZe$AHꖌ/%bV85ȞeӸc'S7_cʼ_3ZG󦆷r9[Z\YoJ26;kWl:fU~{ǪBn1b#J$܅Ģ:Hb.1/>N$)Kb '?L|čO׽VB,%>]2{s~1|2,O^׺%bV/{eR6s޺ ᶾzw+zg~c(xբT}{%M)Iދ{K<|f&xT`qg/i-VB|]]N044Q[Rz(P}o#ŖŢ,˝-m bgPN{- pIY*u8i7ٙ\kcԤnKR6gaؔd) z.8/t8,\u;ԼR?NwZvZ8jfǩ;g: ꟧/}CaETGuڿ\ɧX"ĆQ*phe]+^Ψ;s>v:LJi [J[8*,AliW8&DR߄EKA,,~uN0 44QvUNX»=m U7G{9϶ϝFVэ1̸C=L+Z7 Y+M)#gTѯ:7X̻>ԓp-\Vj),&ݵ '  nQɹWvCHXJ;|}ݑvdga|ݵ"l&e`M +h0X| ƐƂƢGһWl(Xd:r! aw?!\:&)-X,K~^SƸ `p<{,>   X`*aj6$#,!Q/m,B7rq!Vj:R,b9N/ 44=Ui7ǢUx 6<,o,+J8XlHYo(3D3)i/[EpMيY0- xWzp+_:'Ϩ'bsƂƢWْbL;)ΚU)svLЫB_  3#Q~yvޒռoXPm&C/bӒ2mwh[2ӊJ{Ś^_U[,o=խ`qWwbzp?nO4ŰƂbNF'v o{+K{{(*`  9ڒޣl羶^k-gᝅқZzo4(X촴 mZ `&"⡚aFpr1t/rEZ @`kܢ޸, ^Hd\ݬ\\mL{Ӹ+ۖLB3jN*)b;d;KݖԬ;BWb$Xdqi{qiSDv&9>XXXU.6"+b1ftVtA~;سN;tcr#R0rfw&'L!֛}⇜=$XXX2?} eyp`AcAcqhJy-Ӵ,h,h,M1#Kլ%- w8<[6ORV; `AcAcqx s7Y79&Sss978pF44Ƃ9XXX#   ``AcAc,h,h,0rF44Ƃ9XXX#   ``AcAc,h,h,0rF44Ƃ9XXX#   ``AcAc,h,h,mK;C   M3=>7#.SC   0^;ׯq,v'Ąw(; nH0$% ;H C- ãPh,t_+IE{,kٟ20{5B?ʝwhz/siϿ_ҭyث^Y HQY!A+ ;dǢ*Y+ZLe"nyy,DJj8KN I˒PM)(e,6rz;Em'ۮ/XTFGG?RWQR^$?~8.\,.,8VW,d,ii{oe@.@: `Av,Ȏ{A$o+þj_}o#rƔy%=xvMK*(kC],>H_|L|]j]e,s0EUk"Wg,\d,=8Ou$Mٱ ;.N!(,H}`QRlu֤Ll8 u/ ,#C=ᵔP,|?I."'`q`lx1`Z4Řql[Ma)dw3z\VbR#XLLT n)-Z,,хU58wnsd_j?XnRet+jomIn4]+-T)]RZ,G heEٲR֟&=~TwwmT֯%V O)tݫͳ.31M˖vK޺dtZt k)Vy}¡bV:م(8x³lc=ھ+XPhQ7U,`qɆ-`]bJuV{YD`Av,ȎK9:V0Qfl^/P gx7+}D-QDE =#NQc$_;RXE-kq(a=(K7ҜaLx.zHh80?t.o0yܐ< e6Xx]µ{(ZIИ{bDxA{wGe񎘡@Xd&'/,|'ayT>jĉttHM"+v[Nvd"*,UZڇѿ^Ԟ3H4]wdP\sfg=Z[X@7F>Oo[|1şO;!~ݥi?H5%96.3nc ~EA6QGLZ"./D$6eM-G+m1Gb:+iJ K"ni,"kO'(PzvMA= |NrئƮk)y}T ,VvE[ތaA8t<t]rEؓ:XXBl4w_,DuCoFykO3| b5;DQyJDTW/ϝa1Bu"pNİ͑6-ZN}#IJ'_7g3|Zܸm1iPgt!*ٱ ;dǢr@\ZA1wSNuGjA)|r@xX9-)y8/{VWYyTZ ʩYHjynJPGu_'o&b.n8=`|Y)N޳$λ.<#IWap e)њ~|= 3qyFD yE-q\Qx#V,-Ș`z󚨵jvF,jT=j[y̎zݴ_R,F Ƿѓޙ³Oov,;Җ174U͎yfT5&-K&m[߸5T//SUREsM|_aCZ? nɸZlxT1&Zo#r7eQ:Jr]\n_+] <Ga&pRm֌d,vQe?i6+=&CO3䶤ZX'uO\^Sig $e:Ikdه=pʤ(bjV˱OeAa,4!;d&% Q?^rȫ+8xAz"k ,N'K88Dx=4p`y 'ς3hZz>c b3s oGN|_C=Wzc3om&  4ͷ=,P С/V* KKѥ?IʡD4\Y?EӫXxDY+Mذ MۗgܺH7M-rY"\KAE=39#38qp̓TvWu`Y>t= N'tU{{謁.XMɕ7o+oȅ_m{Y77^1WXjWu2ѻ>}u;yr'j*vaTb9B=eºYRj2kJS+D4fGݙܝl, eJq9zvb8"L_&+i0u=?5w,t<V4 ;ٴ0!j}r8.eQ 3DZ?ӗĘ2CD~g:2 k% H$|8Kez=Fie3ڲU%!瑳8F#$Kbc!5YZ j3aƢqKk,x04xn Pq;5:toyzlBC),.@v,F8N{vri5hF}bb0]fAUDfccq@F@04P'!xE<ޓrL{C,\]{]f Lƫv1`8. X=j[:x 0k챠rW[G.i J /4m0tmŒE",GPG]H+h`eOeZ@-*GI@ ^;`!ux勄+ `A,Pg‘N۾',c]*F\$XM{[ :i8XLră6C&n ԨP ԆM ٺ}kH8Q^4;a7b_C6ˮh=vpZV^{k #(QSYxUio6Kzy8߭?yYٺ^`_[^W-: 7pߏ'Toa.G$CM­l>tsk`iO 89 X˴O`DP'&TXPw!YęuhXY~c0\Z|mhO_XE8`*60X!F6.(0I韾@|B )3Beƈ1k,n̓-v w&t`|j O9?xޖB#uBf,ŒEvtAxX ,* D`<K?X^&Ñ`1d5.ִfHKGnRҎCxO9Q?q bY~Ξe>8)nOq Zؠ1EYmI(oG R,I3xo`&Ƙm"t(ֺ9=4qK6o[}d$Xj^ZHٕl3K۾ƮO_L+toE_(य$[ѻ\JX䩃6ZV*FoJ)tih1r&h@qR iEv4GDuX:J8EtnޮtF{ L۶*-ݻaTaf,ŒEh ,a -˪iZ7s"BNQnJp tx8|f 5Tr{:,f5 9 gb Gn[:ϋ bqXGK*]VOn߾$P{} ,G?+E}\E]PVP :zF`HM XK(io6QaX|gY`IpǾeg,~Ķoj~ǏFoP)XhEo{83Z;BθZڦEx&1hˀ6}Jqg^BCRJְt(A ԩ+o=@0<4p2}.KJ-:$X2TV^+Obb?OmjtQ " ;u2#4OD`" ty=$Z,B3ad-`q) GӎPbY,Y R K$,xǁT%nnIqÑ`Z/BXnsx[‘S#XĮ\ ɁJ:Q?  z΋q gEb/ x Wt;FqvE+^NoOfX= a {,]L,{,ٶ7-e[68%[/-gxB |eC MN~ym7,Ż&=P-w$}А+z/,HoEmyԕ~Yt X,Z@Pz%`KL8D`Y\$j`S,T1:~+7DN*ku$鈞,d+rFib>PV8A "0cf,Nλ2ԽRQNean$}'X`E֭} ԍ :429^pd)XQ+< F9l6Ŀ2!1;/l8DJA8r`qV8G(ЖI#Xܧ%0A|;R4&\zg/ Bc#l `a Jo?5~3Z-?rO%zMsJlvO;'_ mfGA`q/oN(9c@];b'TeܞHoNBWBH \ ADAj"l"]qR#G>xL ፇ* |4F`QkAǗtSWF  MRl6z`iԀkQ\;XHaI\d]i(T"ЍsdRK5T@ٔQkZ7H(wu`1S=K c7XPnC "bX,,'GzřEtlD]} ܤdf:apo0XI ,{J,T.W(╺xX$ (S"&\I3 !RکL * Ȥ teضo*p41a#3iD)͆E"XTY/@hh , = vb ,i QanXر-szH+Ȝ,pn e:[de`ыSl]`v;(kbG9N, # , kRcYu#o<,pIu:,n)ُj }7~OXAw O-XVM[?,Nrߧ%jv}j"ږݛ,@v.!e3T@QtSxRi `d |A99T+ЙLGE,"9Ne^,$H}84e $꟡K_U`b&`fhz1 !C 5,E`MŶ-sU*_FuD`C9tE.5*1wy dxcj,Oh` mXzT,vV p$9H}x(Xl=,< XlZQ]3x,{Qom|,#,}~#F2j_F/J`с"IB6d`BL] "j1._ _G$;o.0]@W&oؔI$ʹ|F$e6YXZI;{J7ŗP蟌`a]-wBv;OO -|3?Q>O jbN1yWO49`塰 l9{vɯ8":S}v^5WJv.!~VUqgWDcEOixR ZT Vqk0VGxT?$!qr:.YzuPg&s&i=X/Agu]+h}a.U,`g~,nⁱÐok񽷟h#&Ţj},,`7$Zl>'0Q\`:g6Ga1oLjnя9j럭=6Nr#PG7R'_ܢ=X(ú~T[]Ep6 `;}8b$>~mh5 ;~kkk͎3hL jݴ2^ ؅Li+S;uA)6, Dce_ݽXVSTXᾏS}6AR1n;Ytbjs=d[GNJV\7u(S.ڗ׋Z142zL ,alnDnVE NbTM.R@q:m3e)iorȗ; 5=iD OYX⬁\,QBIմKz0]#:p-Lr@sԕ^#k_^/jňQAADL~v.gC2=C=}/`4Y*_𻖵K"\))Xؤ0 Fwg)X+ 7*ك%coFLqP"X xDɍ1) yXKkv8r(F 2W/hۖn 5Է9Pn8QS TM ,V&hbǙ-}s,rw}|20FgW]ʜF!6ؗȹ`u)`є#z̦K'4[< >>E6ݛ o$ f~M‘6c@8C5 aF$ 2RV;|Oe}412ꪷS]]LoAN{ciAmmЇlGC  /G‚<Ͼ|ygeE~7 _j{5ヴdzra7T}fEQ|@JVQ.m/%m_9y&֭_JTF'e["'>iIXJM:C9cEVl*$A-,[4#b׋āJp*U/:gرy(ǾU-{ 6Ez]*cǢlH .OXOaq6>6m7 `-e9saـew_e),@9t dq)ՆRqPjis;,#/EXVZ*tg&,8a걽}m UΙIY ] qԗ(,|sG a=f Fq7? }|důg/Ft  #$+J6Lt2/t!b=6,JjoFY&_BJ.GcRXp(SF']e*Vﺚd 匊 E^+S6:ZXpg,/LwvnM4 x$4)T'VXG\s!xQU!9a(',rDK+6Sf5ٲAb#4 u _jcG?Ӛ]':[PXtF߽M% 0;qoaw3]2Sim4H~Ca5+?eCƍ;D͑9MsW=Ξ%t & FBh*+IjG5  Z sgPłБ]z:v MaǗG j; vw IDATq=MQg 뾮˞%RmF¢:m1湸{<n 8}qͳ^9ſij|WnTEr a6 t1r&,80x8CԜ AvHC׬&DNC; aM:OE19i*,]0܍ŷuG%%-YmFUD{`tT/,4q ,':8[f}m66YjaV`6k}AH x-YIwB!,c=[UDU1K<}M"ݠ}}EWAU/ xgCX,jejaɣNX[uD/, ir$CPmtu+x%.pԌZ 8p,lV eMEWQ&)s7n nDTT}1!JVE\)ZI6 SYaCbd &x^g5'+ '=VBnIhg3I_k"~*-פ*ʷZP:; < þ,OpM ݗu ' :'k!Yf? 6|D}b[nFN1)&Q Y,& .~@ji<1$ϧ`,nja\anѥ1nL'yx δuLwv=mlѰ{PPҕҒ@7BH* neiZP'qI'p\~K8)`Ͻi meeE*2XvXk9;{X:?]{] \5Ȕ!vj wb{(>Pabryo8xqA'X\~=ZPhvK<+Gy"1.G9 hădv],!Xf=5FBYhʳǃ0g"XGeQ})K̃`'uⅫmWQe]xqe:>FfScdaydJ]hGs=YY.i}]cqWfؕy+ι UChľc^7 u4`tA؀ezh7FYGSbgA@M2vKТ)aMb4rS^܊TM2ר\6F-cP=Ё‹MDo{}k7XpfP):Ă qy;l ;~mMwvCjkn&Ք1Xt2 w?Ixog,J|-pp?y߾]T0Y5h`А`v :l#F@ u"nt|b5b @$\rъKf1] (hHƙi%9`XKN[HtSCf%c5v݋b:,2 g,ބ99 $ܣ p+2F%XLAKY7mWI{*D\Z&Ɲ$gׂƀIn\ea #aD.Sѧbm6E=` t6W[|05 YZ_vVL@zeYecU{6} fc+4A{U,)\0T4 6_v{#M~D;o; -"b;-l5! * ԞE`Ѱ@S_Bo@ԣ9phT{_"5a~V@{2X1y8W!{}|]T#dEZo- z**1x4kXŶ v*54 ``qCZVp, ;pSFw1v9`g׉6-\O,<54*XJ=p,ӆ78`!y2巒I0X=ZPl2@֔|b ]ڞ7q\uF /XLt)-F͌' |dE%:OgYh'M*La #aׂ<c~ iu_}dbaP-&],ҵ7l9US?wbSU.'mUNJȔě uUᅻwev6`"!6yOX\ myJ VAz"V7 9u &[re~S,IG\"=ò<[l, AO`+^" X8-ӮJ$œXj^dg+``7}H+oUN_2},i.x4bCHS ,#^K w lzRjN 9|~!Y^F,$oV^zI0X=Z΅<ԀqXĀ Yxq#e?v*ug;`0*A`1э~4R_5VB3>s fٵUqei٢'|_+Ua S#,6f,P9m!-#E_E~}S,AL3MM,ŽMkӒ \Wog X-regMsY h"7F X(( ɕXlYI`'$$#=] 6RIn^f'UmyLǠ`116'A+$3M;B`b.Nd19Xi2-8[,ΥN#?Vb=_X;6ނԑc`tjAdhڭUd\XQ~o݃T`ѷb4Tu'/+IrOARYE"~`Y-]Hķ{ I߫Z`a̖9( Y ÷)Ų4ԧ"ڦ-(,<-X`k}6s M8*.'䣲6XHI q '4y44+ ,P 󆖼! G޳,b )EYPg7fAGcʊ`{,+X_'JX,.~D*EWNK}4D*C%lX2MY\!MH`_W2ZVED9mGb(k,j.=$X4Jܖ,j;=?xm! =-BEM5X0C`YXA"ӦuX nb3\eI,xRH9߲@0 WOE`-X`GH`Y-`q {cphԛT`!_Ph?2~@ `_yC^ H \^<?9R)iG{ .++VʂCcz,~Xy|W鵦X0 gytT `%`ܲNv@6A $ᵚrXXoq[%vň 5:DBدTL v_mSc0=XHj I "%Qu¸pcIS,Hܷ Z*nC>bydK~`}Ex(b3'pAV063, '~|="|mk(, ,0<3VeҰCc(naghԛ`!P(yDV'۷hŝ`Q׺RY(.Ee&]#= ?p}SXh73:Cj,XY/}@㖫Ar:J`qH":ưA1,i? =ׂugL'+TOK{b@V wٶn 9;%k@iX;C^R^([$|B~őV捎*10*BYDSer+^ ,,jvcf  ,3^x׏`-,8ɲX `Ƃ:eB g,irYb<@SE91xbL>!V;,eU\G,ޤ y<ۀHe ,|<5'B+ȸ.FÔFڸAg@`-Z8 =EB;ł"/_*X`@]dJL\jFe]`1gѲ%fVK6|3زI{!KUrl ڇXJ`Qré`!UK 4@WG]ʌmvֹzgE ٸ,U],E.jr,F,tL~ZwcNG6XwV,Vcj&)XfWPvxhYSv ji,wi%rmz qn:sO޾oh5?`FF$wl(NWq_X\`5Pǵ>|DrX$Ccz,`qXA,4zh@r? n.٪mR i&0EL]bL>[zRMa!}T$JG'\1|Vsg'o+ʏs56f&wXat Z q`ѳ{͢=9e{\rp>,^DK\j7bu,}~> ,f~."k#*0IʍIT KHc?N d 2q-=GGnmIC$@(d9F|bNn駃ŕ>{Z탉,;! [,^\GҹޤX,,"$=L]#67%Qÿ!Yz:Y|7Ǟ&X_yݧY . =;AECwN轛0"?Zx֬Ru"`=\ެPA /,UPu#: , 2s$|<X"n{gJ`U-m=n>%HRҎ`!UK!SX_?;$ɏ(RE+-DV2p?8X'\<4tT2b5=zکէ]hZc@LK5(-_kG&\,!DgRP8Y,`S*˜|zE;dSq?y S\|bby+VC:;!AAt'NH&X XH#XXT`A8Bo4q'y;oom&ɋ,S!HsoGh9VPvR 0yYz,Bl_`eW4cqL;X,L8VE: dDU-T ] ib3*XhE EBm-Ӽa"ȏ806sgJHdO>ˆX*_[jD2,R4Mf:?]^ 'azF07d.$)* WPX6*ʇѣz*s7͹_8:3mBL@*c=_{A,$s7aūLA,Ф:ϑ@lł(4k^'Zғ>C)ׯAkc#v7Yw0وgW+E jCnWu؆yz|ؗtb]RfJm]/gBD/u$#PF,XXjtS`[IF2G>k7I<'Kb?JX[>kJF1T!|85qoF?8_3ϱ[Č6/jbV=kA,̫e8c%.-=jGz@[ (kC OFO&MƝĂė 3ofsxbAk2쨓X+8v56خXL`Si~R bΐKL `''7~XOVmnW(x'jwZ;f3|Z%m<:ZrhROF7E,H&TRрI IDATzPn>o$?䈦4a) B" ĂrQ׊.) 9ǧ,5:H,XtC,ۮ]U,"_>Obڴ2NpkbAlzXgksv5{oƁK>h*N) n 87bm3c`ɘIyBC oo'A_&X=H=wT$YcyzM_?3yD6u@bPi*M (M,(ŮNV/]H @bŽEyz|>-i݋nMt_,*rqYW&t{Tuh|4q ̼HJc+N[@bktB+>Ha]Z* 8ixen}E>s'P (c%e,  $H,1JXih.P4p1^ \ $ $H,p-H,XZ,X X @bk@bb \ $ $H,p-H,XZ,X X @bk@b:m>Ƣ:*H,X^okvC $qy3Xq@ mu$Xq@ fJ:iJǻ[H^>#7SJ8HLb)wш $bqbPz_XtzL[IJtU,yై $bq"Hu@,&U)Kg]3J "H,X7: jC,"焵hvn(.n?sm~E[bɖ\ؿ}j۷B, $H,Ģ?X,*)C,-)@,.ijV_OtR,X &$=ybA3"ĢbqLib}ۚX$X|X:)H,XE3H ~} m*)J[0ha2S*ZN/MM͸!mUob1qI?01Դ2BX85? qb\*}`@oj(d= ZRRnY}Y:I`պ[% @ hz?[5:ҒTc^ IX_NSZP'ފ7MĂ<9>ֆ$ITdb+4{3tI)]+*H?I-[x6Զ$fiFG|9+A{($MlC3IK$EmkA>5[(V.g(^h"W^umWg? />X[ I V('եl5z$˒e?!IiCAYz[,J7.Ilf$)oVIɪk-IXR9$ۥد\.Yz\خ!_$i3N]b7~gWR֍~?զ,`DfJJOslj@jݭbXۻjN X+_)өX3jbZ0) (]̔t0@a8$b\8G u~pwMt xx tuuծjUծƸFx+1όmX/|W8lX|'Ǚ4w͈R |XDyxm\8յ -^TmXhXϨ6{aܾq7=^K);,M*2 TPǫ0[(b#=:16,j{k=lMr@vzp}GTa繄:I¬J\~ lY,d4iҮ,䌅]ߘJ,48{/co$Ã/& 6RPq30A"|N4 "`a> µS`EeC1#Go@5o@( p<%rLtcO:qv+ppN\Cݍ)sëb"U,ɾũ](F]!ua"H\=!4؛'UZɢI2_[CDS2AVQg*X !;nQV8]VW ,z$ :㉊^qJ)bj >: @%^98'n.R ͤ_p$aEyEѲ{5-X6m.XWk/'<`սӝÿs3O4';Ou+/S~x*B4irBX\ k=ܸJ5[gS"fYe~=\jNp@N)ϘhPw;~ U._SLa j)1znrnoɘgoS_ԧЈbQ#,.GbDM @sP>0  ۺB.Cz;j+eMdG!nU.sMB d?Tk~ _7zMEIV0mqau iZ!&Į%A,ЕA?h+\qO+ -KU~`5=X%w, Y-`['Yvbcq<4>`!0jG4i䌅F{kMKH]*_ K4X m!t3 nqv}RBþ[.hmb#TZM`BzbU s:Uso%7V@U~>)Y&b'[|¢K¶]X=0S8Ec11/YiwY8@E܅ʷYZGl@~i.ϔ˃E.*B\1ok8y56.J~" Ď^ڀ*eX%|@V9+橂J/ꪞR$`H_76_jyb\?9xbէ68Ey f,+6s|rM>`qs ҤIb=Fr|cJb/z >/+,kcq5j|@$mԬ,ZQ9%K[eR|R5~eȔ~]ڥNR_EkVYҦ IbY=6o1r)0ߚL5< k>=R N^1+CpRڧ*#HֻI<Ūxw$`єl z3XY-O,P*yL8X<GdQ^Lz[l#f,&9Wޣ9 'zh %XH&`!g,E,~/~ӥ$`!zblpdMYTA`bSw\$`ԮP!؁ECH4IP r-Lƙ3 9Ŵ6m$a*Yu5□0֟Wd,K͓c3 eyVH;Nw'pOF")bIGKffEa>nstKRk{ A'˖jm'm= h^E$2g)fsW}: XomiҤ],䌅(yy8`TQr`onN,\YܲBEm"S aVb2oVM-y dm-QѼ፩ Hk]E6}+]$@Db歐~csG-e`($[XRxyw*`6IahgTV'+|v PeU#L lKvIj[Ay ,- 'B`Qk¾`D;Gi [(L—)И֟) gU7tz"+'H{Eos)|{r\,<* l4iKIBqǧFIg6k{iXxNQ]3BKY6Ib4!q(hK&M3l$_9!p] hTi+5"%n.#iqi{ e=^8HZT ]ڣłEPOFW[\AH.-+ :W.pS!} b1#9ΪY(,t RH ik,Qh~3r5j,?Ah(kMcH f n2{D,P]=jDTiނXE3_& u? 5c!ѤB)XHmp#Vb7 XDbw EBU5,FQ,Z@ * @rE OcvrF*":ڣ,6}b!rT[!!-MM!`ˍyT Ds޲ ߶E9rAKȈ30(c9eυ%.V s\rZ3H1^_fvG`S+&p]I77dD,\gY " yXO/bquް;aH)RJ i&,ٰX@%-Ɩ&o'Js' Y~lb" T>b Gm#8aٔelآt^u(S},d"Ez/<6Wk,{b,|Q: +I”. {ޔf e5GfNWѣH_hm߶Y,:(݁W[uAiRupx]kJh'\` LV:HC&VT?x7 Ox"NHtbFE`)@me _(|R  *2S|#+Qˑw:Y٭=hX&Hx:T{zY(@0ܫ:%ɳ`Bxf+Ta6L=aX(3 OQ- >N' ߶Ts`SwAz-Z:g0 vZklQrpl(,3醊94r\ "v|d[/7dx/<}n)!RctYղ W=Q4Xh4tfwE&84{IRIkj `VNJOvKg.Cehnmf;mD\Y(okH"EXHE)swߜ [pk\CKJj ByEE`1?8PUNCq?S:M,i/´ l+^`M^`4pb}.KABa4-D^ [VM8rn7}l2R"|` яq?r*(4xZVa%  kR9Cּb/J ,<~#M-i#E)b!-H. X@mI'|F7C}2`5B'BA=[,$X>A=Cr>=8X=r,dُŤUv`unIT,D yLٽH.ڟ `Q"jj9-.5"HGY<ho;Z&:@KWb~'ћmz:jK -jR%+#`%e XgXBN 31-]¯,NÝm(B3A(Q. au+8|%*gb}pc0Uz.ZoNvb6RH"-bQjǺX@ї \j*`  IDATQ;b}{EEn,J M/4cɃpm}q:COXlLM;j.E.YV% kw _hrI[MV:SkuAkcgLG Wj+eЕWHC;' :aBc6wޅL,PJMg&OQx}d.jUzF25q ,4˂Nm&Ɵ :JpގoJ)R\,BZ,.)+I*&`1B# ,Į<,Z,v2,NLXmI(,4톿~1kٶ(ﭑYV?BH }1P7bVs}/E)e^8GMK7 ie⒆J.W`)C7ٮ{9gZ(-K8]߯' -̇Ϝ3h6XXX4NY%sL+,ezXO~*t.b=pRx MIk^G1"v`q/}g*,[#DZ劜NG -: S:m]8   f3+mr7 ~C殫'f5\<)K8,fecHOoU{D5X*|BVy$6WoOqك۴x]Gv`Sd_~ 3\E)i,\`AcAcѴ`,ɯ)Œc1"z섈'̲+џ,>ˡNYaLZ^7Xթs&K?W.ުQDIo+ 44g8!LmAw>\/2Z_ zUm&ƃsL`>2UL| \tQ%V3A=`qK?~mn?oDB%vm ~5򧅱$ ދ`AcAcq&;jtyfx:9*)^Tmɾ;\p3a4 y;&ٳNFSo&[.招ŕU>. E n `AcAc>YXs8H`,h,h,`AcAcX   :XXXƂ44u`,h,h,`AcAcX   :XXXƂ44u`,h,h,`AcAcX   :XXXƂ44u`,h,h,`AcAcX   :XXXƂ44uذdj;?[nВ`AcAcєZ7/eOg{xZ,h,h,Pj \`1?EyZ,h,h,`^K˚yT"#Sϸ %Ƃ, V *XXXdQ^sd2Y,5wGA״*8@Ƃ|b:JN)x|5Uv w13<fD.P!@$Ƃ|Ȩ+=e&t?;ވDu/ɣbY=,c,FqF9㯮ՏǛJ-\ziNҾx" 442zA}yqu(+֑` qF׷l, ixQ"6##coBMJ-8(>91QuG}}wHvDt!`p@DƂbY_dD_ԝA}cajmIVŭMX>u0щ੉{<`\},_9ӳ9 Q  su`Rh6Ml4j,E&XK%~tD`&[̦`aC'KNbz|3+ bܼD/," 44,N4n鋝pS]`ggOwxfTW\?n,—̉~P#XD,h,h,,Œd~nXdS`/Sk iW\oa>Řݺi,"44bW+{ ?L"-twSL"çx*rn|ZX e+{5VŲ>{LAdn]/#h(zƧ7@Ƃ2XLs-=<,bfweA).X$2Z9 `AcAca,V&K;L ȗjx%Gw:`^XPd8})5,>A6XXXXW<}rR0*Ǖ"&XlT 04 z(]ՒY` W*r eP"<)2Qݹ:A^a螺:!2B,RMIϑ4JYUw^;&K' (USt Q   `>9"3˕e+5Iߴ] %_ߘ 7!)?u1 3d}P=!j4 ^2beXO%X#}/DBR gNX-+nʕM}k(εi_3YPPt˵* HQXpT@ |wxd&pdfNg =G@CCC,X`3 BA3h|rP=$^k,PP `Nmbt>Vca8k\p -Ʒټ 8P,Cxu^c! ?},,.@d#ɘu744f,0cq.2ꁞJBguS=Watql4~]|+lvh' ]kH?w 26+y>444 f,0c盫N6,Z2QK s>LH> ,ai'dH~= 9744f,0cN*^lo  .s K Kyy1)W744̂f,0c[y3 OI)ſcX,,~+ 444Lf,0c[QQscq)qåYbSANay Ϥ=4Ky9o}M)1t.+\99meR2N0߹J={i"'ߓ.Y|GYdyu&0 WͲ e6opDo&zꇗT'YiD0|4`DX!%V0GdO' Dy{>Y"FVz۠A*=VA IxpFej6aL=XXFX} Ckv K_}]DFE1lN_$JmĔgQ s~ȪP;D,lB^ݔ PW EO:SF>T܁WmE"_z$#BF-G}T$ :mQdhN8[~cՀf,0c`w-33_Ղ6TV-Tw7jc(}ʵ>'1LCPɝwGKäQPD4=*p.Y#lW^i?d۞SGYݼRk,zVeeqH<+ 3%"Ħy`;޽1iLmkТz;_mu:XkUT$(V$XBvc`E׌ ymv^&ݦ`qF|CVڬ(r]eu_`!W<8%W;'[jaS=IyS-Yžn>k|7^ K`5B5pjw7f1] X`3h:XH$ pf7HHcYBW DbM&T5O4CY0~/I >nb|? |MS`u8ob1hM{#R-15" 6ZS]|=|r!ѧM2\L9:kp귖w:}`ua` : SXz\o 3aMj`|1å3PKKX9dJ?Ipp eQ %M`<9$ VM :X]dCbKX5=i?}'Oué/FJ_ΔXq,O{Toh444+ X` B ҙEaT":;dF݄ҿL(FVW&u?jZ=!+R:ݧ{bK@: E'_G*oه5bN$~%1,HB~¿-& Iya_wA=26r.&xAeVoֈPXpT )| JwI%.⭡.@çTWP*BpNyΨߐ堦/1ZR /zZxL?ZPXI| aU N* `'NؑcXCncVqMx,xSqt5r, PIw^Xە"$Z1{X8lFCCCf,,t5u!ol:4y> \^ O1jdsW3ə,|Qs?e 9`kj>\X4g svu鎠>-8:<]B]\ \?FȚ%0WTEڭur>ؑw_M$K7gH@H]PA=!AEA| {ٻ+?~Mt&NqD`!_#E`"`F!_8HνjWV>Rww!$gYv ŦIe죻װʕȭrLw.Vd!{]h9`6] SE-{coȒ< DHue66XH[!{'-ѱk~>6 duU,5z"5Xl(I EbE58/:ذνE?Jº;PJO0bCc!уװʕP(`yCX@" bNpIB]~!R(܅:~#ZT BSKh( ҹqEXC з]S 5P.仳EHQzJ.r m9JKNѩ)P;93|`&VS,I3)?Q_(X}-/ Jҏ@a *y\$( LD{zVzW,4D, b`Q ,1""}x<¸TEz:o뒸Hgd5ϼօ3%[:,\+ÎWE^,:Una˟YRCHQ0 V5: k&kӂY(t`$Kz5 owiBQXg! _%J҃Œtȗ?QPX$*-Xx \с9#D,@,JEH$ ۂݑϭt~-"{BYȑm^bjEmw&K0Bιcq|FhoE] *,Va4ta {#ŨP,R,0Z4&rz7Ѥ], w+遅?:y|qT,lr)x}43wt`KASJɋhEXȆU4%BXX@" "*bND1{~,0\-Y n4m!tL`Ѣ,+?kH8уヅqÿWxsN ɱ197-EJ愥+5zE~rר ;qjBae|HoY%*B9ڑQnVAw9QnAapV-2vm'(sL:+a^Q8zxA}-2* Eа:9XܱD yDOq 8JCz^TQ$~\`[|(RXXL7SvN}e4Nf(UbUEg/Xzbqro>kf"M˲ۜ6f {){PB4S$KOVeM Ū[ ,*W>^ĭyW2';4D, b`Q,- 4Cߝ_4]]я`Kq|l7[c9% 9# "tth,VZ ` D' &Glh*e3ȚƖnױyw9u9\{wE*퉒$G\.{+dɚ B(,[cWVm2hHs9]}=Ϙ,}` XX |ʝa3S? IDAT6 yu^h0ԕn .ZȺ%؋פ>&= 1)0z~X4}/b5?Wi[c`8:5:cmdd%s"Q.R=K*z6,"㡱aݽ)米v\i2X)kpAͳ\4t꫓mЃ|tDy1-S#5ۈoީ'jwRfj$$E>G#)ލۿm#oMX>}o/_Ru%:Ԃ)jOJ#G?02y4-$#2eP AMMlJ6}wϘj(] A@@N Ei8aW>LK{e4Vݷ7<usۅڈJX c^zv=rS c.T&X@+Y)@Z*=|l`nFXh^{_F"<`a#,J81LQiE]{e[-ϵ1%ڥ ˯wi ,{^_BoW,lSՊ #@k#,v=6v8l%W`a5`Vo};G=w򌩆J\9X@" {qR4ݧ?" al^M} :w &nm¸03yQ,`/#DO,w#h'jt35 A@@N Hyrѝp/0j iJ85O[6c@fMpɮzBiBB×?˟opЋO _7/ޞq*_{S/:V]z|䉭Inu:OƂlhp\4@UrUJ;o@s   2닚Ƶ\i׈!-`4eWWnTƂ\7 V1zk; ~m8_??淟 er9pR6VX=æ=<+U|q)TʫʞqIpU`Gmo%W㍜`쟜 ,h,h,jVz K5t-'@S   s<  wSƂZXr=rM,h,h,)%eS.2p(#^&44B09)rF^j4y8wsC,h,h, jIp`U{OnV[Sk;XMs?;7ګ:MK{h6#fdAbga]o/SdbٴX2ϝG)ضk+#Nz8nQggE?X,iړEg6XLn~KbȃH[SYPje}\Ϙ^$rlKx4;E`|,h,h,[75w XlW^bR< z}cK f `Y]c[~tMIz-I}$`|,h,h,] E,t;G8s,b@TUꋝ& `1)rڐ'^v^䑽#>  ZԉafYvPeXNU(]#` EU@Q?653zkI\WQ1sGPxf@d2XQ2Ub\`QTB ςɱ_fUᵵJZh44ѻ?<Ɖ`35EZ`YUꮎ[DV}-QUU  ETdH=NzVXL&3%GE1DeYg"UK2Z g|,h,h,yQ{:RE9ط|wʥPiZ`~ .F:1v2Ĕ$Րo$XXX,6%P*T78,N?8%XK$R+XtKbnԹ5v|Ih2 XXX,DOx^ME+X,/ڨ,Z%_+X?vt]N|aKHƝƂƢ`(jLܦ'U ʢ>~kE~j{b@{\U#{1 _ŹEqk++=Y1n^v8CJCh^Q$ Rj}GdvhKWz, ̗o]xχ`AcAcq`Qfv8{VJ΍U9feH[ex*͈T`vEfNۊ#Ń$teE]"cz6bY.O\GѥŜ9V}bHçߊ$񣿕-w|( 44^W+71gCϣugvzc+5qcl|,h,h,.Uא>)ESr'XXX4_HϦܷ   r,-,h,h,.p*ߠqU<   s<   s<   s<   s<   s<   s<   s<   s<   s<   s<   s<   s<   s<  Y9-I   sڻsg̃ _0XXX޽q7'7*][f LŊrƘX xh=lԤdo0Vog݈}.tgǍ" 0XXXb,"XƂ לDŝųc׆߮S`k Ƃv+0tͩu;>gַp;X|^ G%g;Ɍ?UIЊ'ņlb[xȰ0*ξ‘, dT DBqjk,0@O   /ë E{wRi'X5%~=/|_wd 7]S2+{\Ya^44Kv^ȥ0lI,6Ě`-/ko`a.;לk^,h,h,n,Qg<-5X,^NP`y U ;(bX`Ƃ⎋"K/3 *HLOZxJ`v"(K ^lbM?Xvd,&EK鷬.@   `aOڋvŦH,rqFgeX_440_k"޷Ŭ`QDrWP B jJ8]9ȋ`m'f ;ܖT+X[SE4sޕX5cƂB+X `?Ǣ,WWg;\ c0d56Ya^44Z"jJb6j eXr6|<}ԈaӦܝ`iFn<j JA?̂h6D&XM lBH6xxƂ0}_{!XE31XXX"82c:XL;U,"<\<`AcAc "{Q 9A   wxƂ X`AcAc,v1`A`AcAcBoå! 44?*)(X)qR=K$ʋ+SٳPqcT*Eޔlt&.C/VɋDYja?4+ٻlO3XNw1TZq.YOf5y`AcAcq`aFY," {C<ٮ*c9/ R֚ҙ{sWO}%DYY×+ď]7ca=XXX-X1-cVɩ-umy w!g_Tqw^ gxY[:PZA?`1]t5 ЦĒ9"bZ[}jb!` n|0`QTy!~iŬ) )~U@x`AcAcq`q ͝#f;J9OIHu;yϢ7ݧ y-XXRRQmE꾓b3 $1蛘wm?1c6{GG’oCL77   `1kIyt$$}`!I@~cI?Y|#,px+%S}, ^jtK"ߑp'Mt+o;߹BWBjaZK;X?]O9)o6cd,VDDPjJLFk?hb܉'x'z׼3*-%A0m$񙵖 s*'XXX ]5F4sIohiOɖ=\̚ouk,Ro{Ɋn RD.x{`ᝑ0^%_(9S"[:EJosn-Lp<P>5~O, 59`D SIV.Ņ:;D$dm:(Xx}4 ?z oNEm$EV@<2Rs5օ Ƃ"H({zmv 4)XXX GܻԘ}YNдU56A(V.m`uZI0yXX?]`qqr]XP)v_1E Ƃ"H8 " TY` V9Y]m`f'V/G?:[̙ǂEזyy`_lt@ Ƃ"H/v-U7X̎K߹wWF MY߷t}bX^Xrz?6⽊P[ǂŢ*N ,h,h,N޸BvkH:j>kE\:czAGB,LWCD_,nE>Tx$X̨xQ`ǚEW,hBh -RH; vݵ &   icѓmwv''3o+W@98,=wmgۧ˯oƂ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,ƂƢP7  5>#h0XXXmb˿wzitr{Z%XXX7$ydJ!"$ *ƂgN.X_|7dں IDATZ%XXXx}wT`a<,^"Yg,h,h,b"Η}U=W_)Iӳ6/+aM{Nwl^G+{|H   .Sܞ˝ZJ OM۔9 DֹD<`AcAc)2w?Pc̡$X_߱\ r?EgZxvƂg0)gB%]&Se^],^gVx^Ƃ¯"k a=/™ zO<`AcAcQ+4'Kw׽|/{Ķq\R(Enսu6ch@[!&\6 $mL|+oYkL/LcOb!vh2\D&wzC$ηm&߃E#JR"H:`rtDїOJ~j:Dd\z,XXXʋ auEz W 44JǕ ߛu$_ MVg٬ņBH`1( ] cƂƢކko8e^}y%ٶ^1[bmL8_sE$s19y!r3; EOCD'磔B'J* 9Ƃ⊾Y3#~)&S3inԃ7zLdxwM 1Ƃ"÷ˤ߷.u8p'wu0';ɛh t4_- 44YN/\=S߳+k؋' |x,h,h,ڣzW(` X`AcAcA@ƂƂ`E{̤z6XXX-   `AcAc,h,h,rZ44@Ƃh9XXX-   `AcAc,h,h,$   6],h,h, :B,o tEi`[_J`AcAc45Q;tDZ 5,h,h,oMn 44u,@   `Z44qёb~<Uj\TL`/5ǻo lT7_Z](VzRjT"J7v> `AcAc7^yOEqId_!!VJIż,"e;Ս)w1K56s=gh}Y`'ƂN3o8a"MlT`1$b/^j,֏4;44u[/w{ð>R)}/XENK/LCfl2q;,9[jl`AcAc^FLAs?U@m\-Ň= =juWPg Y'̓Ů /łĜanÃ%͆;-| &.Dy剸 ƒE9e4,*WD>ʦ;`wƂ",'tϼ5~?xDf*,z",+Nxب^1:6XXXES7XaNU%HNْ"kkR޴+X< Әl`AcAc,sӢS/늌w Mޫ_:ηfņH1j6eYvi=u7^_s㉷4V %EUĒN} qf%]Bo` Eh#)lJf?\D<GG/?/J"f$4>&b[XoAg*P9K`,5Ƣ~ tf 9%{ػ|45{9n7cvvK_Ks`ePxeN|Zʹ!Yn[ ',Btr␶p&X?%ulT i9! #!ݷWq@V %Ȭ>wdٞ6߁,BE. 44`؂s 5zb}` S^+7]:-2&̠&^NmsT X,%Y4,h,h,%i*C-`q ݝ"l,R#F+#+~IPmnյe',ry`Q~ed X8rR sE Xk,/JjU; {‘vueP0?Qwb2'c`aړk 92񮠩 13\ƂƢqPSޕ["[}`1,2_^(Wl4\7+Z!f&X[=~}`!Ik,D)bKk:>XXXd͟޽q7$O3jɦCu 15P6BQ𦂷L&ͳ#~I.Y y|E\wpNXZ_ Lͻٻh SNstWZbн{w‚łŢCXX:mH]XܝnXʻ-cuv.܃/l`<0 *Dimb%z֌ Eɕ6 "au;<nâp^F7ǮV2;2ǹ1fپ͎^ FXXXt $gjRqmh ϴռvXhD&h4uEi   XnXĿKI pcXh#"z-)rmk N;a[kG"FBh   XxumuYT|+ؓ=֫ޚnwB{o֢m  <Htk?AXXX,,a@Xabb`wXu,_5) ``h*riA8ٶR*̋a!dbqU}OZ ϺF >bVMeB,,*"aQ>UAU `aXD0vьR ozaI֗aȖF/aAYPEygh V>SR"cjA$Mw{a&by!NXP abbEX8ݒ\R"kEFݐa #f/ɱyq~ȥȠ¢x,,.74c󩥢bVscX~h+ʖ{ޥ1E.8%,w]B,,FDAX.-,% 5s' ;Ԍ}{r@X abb,aXyEߞ\_Xr:X7EY^{/EaAW0ϕ\WY޽3ߩNh vbKn9>c#, ``9S~ؕ}]X1,.~\CX̉gp )MteXXXL֥f_ ;'aq 2j$}B+KR5̕:Ժ\'Ggwa1[2}Хl}1]s;7tOXXX&^icU}aYIĈň!s"Kfeu{"淋vQnƭ]3(iCaqg  K|^|a.$"}aߙn6Wb H6o\0`aq@W ȿ@HÂłŢIj|rN?l$mf~;XQk Ok"u7_:]BkfpwHFRgWD, abbֻ}kNk{n%~~Bd`4py "3  6mYuVd?9ix:" @8ÂłUjh=(:/*NogY-Ho_y$>D?wI5'abbVtwEݿ>%BPN@z,P#n,k!p-3,X0XOw @ X('V`y!`BPF@z,PlCKH1F#/r1Y`A5+5-BQ9 pOo ŏp8`BPB@z,P+RZ,,f`1?hkÀ_59igXGp 0i ra|Cp蕴u| !>BWel`a'W ˍwxX8,c-wCP X`0l `&W[+nYNNή/]|̠Oy (inguz ,u]u'OH{nO-`Q.Y* ,7~j"†ٓ^yBKv_f|cҟ}u  Z-)QRN;b$B9O`Q٥cj>geu+g.v ܙ2N&'­b(>]\ 0jBPm@ `+g ^&L813+K%*Ύ–Mܱʟ,&̫̖4~)-`A.Gl1oE{V6SED+WD ndYΊ(Teiq!+6|u!"H58;(%U"4'𙏏1qP%AxgM±"z-[n}y(i4Q(=@!Xzo=,Bhד %E bS܌膆}ĖMGbcܖVFgݬ퍓V4xeȕX,'Ę3Ԭ_V-`Q6Ge#X9"%spt:|눼3!b{Z>޺QqYY2&G*mR3y%i+&\aEs kUҟqѽ pܩbkX9O.`O1=WEc^25*XB`U =XLYG6!vq0Z| q\bֳ2nXA=?M j3@z,P'nFw`Auӂ!Ӎ b֮0 լw1@ubɃYw`4h M No@z+J ,w}{e9fX-8eac7DAV0 3*g]9f'IBnPCXdUJj)zЈp̓,,iA݆ "e!6@gJ#T[pnåa|O 2Xbi j;@z,P԰]ogB&g`15S>t,<`w eբ"Enf[OG6Z+K> +vMMn,z-^Y B#is*VVe*:>XD93Kg+gf0aigf2XD0p6|.`qɍq?x"%X8 ַ_bLh2_kw`·}kE2!?k|y1NΊLc;XbCxp #`QlNwm`a'XX0&Ȧ{q,a \b@ ,Z'. u)T#;x( ` X,**<]B8."of>1 ,&`RzMCHŴ,vx%r, 9$pӷV%a Ҥ-4ZuΊRf'Ek >Dz2yEJzZL XK98˵R,E ߻E)eo( B9X=( w*3x8n, hx:ŌdYf3.A`˟HPi v DX LWA`xYreR\pV@ d&}Xa EyX iiFIMLɭ}SJ6X<8`,5,P(m=@!Xp8)a IDATaA@{meKQ="`@d-B%P/2ۻ9X(5/n17扛,N޳%ǘsU@51+tMVsB])`(-G^Wػ& ӊG$i!$t!+cpHC!#HY*Hل%H"!zC޶l-Dxfi\}^qƙH;sN{(|Nb=~޾o`}`0E\TgWQ`q8eK`?`Bc`K?Gg;V,Foe n'%{}.;E'T7gYZP}]u)j`Bc`Ңj,X|YC|Ky\܋1FdlB7U,Jqj=L C\Sr"/NKӽq1~ξ='>jӍ|vӫ;7Y{I㍏_ix8<ȣ@ctѿnSy}oBczz!X$sHnۉ4otĈwH/pܛ߶"C͝`1uo& "=ax~$sLe[[xv!NMm݌G(lܾ,yr`1bnKnmZ,#` /Iō/?KfJNfx__^^._Ӵ=1-pV=;b67XDO_]W-u"y?זnGY]:,[88vT=nFǻ0:šـi/iz|.Tߌ%_l޾_N[_~m I؉ 0`Bc@ȃE2Ɠys-tQvˇO; Ju<=Ei-Yt@` bB:49d7dOԖң&ߢ6laõJe;W`嬦x5nN/XEvfu۴xS}:Dkm6  E3X,7.hc1r/<_[Jn(HG`Q:zݭ3tt)݋ Վ-X^.*D1NEw7[~'Q;?3>~f|_'%G峉wn2Idѻ3}/Iqsܑ?XJgVԇ_gmōړ,4 mrjѩCCý^><}`{;:ӧO3ǎ?S<6FW'^߱[~ý#kQ+ZjSёMԱuF_kowc;ϔ fYlM۾؅<  Ge=B[6+ [,4 O, `X|`qإP`X|TyB8Zػ.Ƥ30Bcg]ag`0Bcdw+5Xh,4,4   BcBc`X@pXh, 8Xh,4,4   BcBc`X@pXh, 8Xh,4,4   BcBc`X@pXh, 8Xh,4,4   BcBc`X@pXh, 8Xh,4,4   BcBc`X@pXh, 8Xh,4,4   BcBc`X@pXh, 8Xh,4,4   BcBc`X@pXh, 8Xh,4,4   kHMht7MH2R%-PHɩ[Hېk(](%]t@ Όd[vo후)%[FywXXXt   bAbAbY,H,H,:@g ,$$łĂXXXt   bAbAb"IhO8|U z߿˓C,H,H,f3HF 'gg4K',E>Y/3Q$',;dۛóA!$$E~~2)8ѧDtBJS}Ԟ|%A bQ,H,H,.~rQiͰbPQ:"lb^hXC,:S:o;է[[oCޯ_?=9{[O6˳Օ[O{oU   Ţwu%>-c3ʠ=w\vE5۱dQp/}y\ 4wƉE"95-˿LEDN,^闟8N`o}"_[X<wS߹s^,H,H,S=&ɘ<"3<,IYܬ"ahk2' ubQQb‚b |ML73"eS݈Eψw2ޤ 9P*8I,鱷.%67YSl|#%b\'U!$$sʤArª8 D5մ!7爅iTX=G+L4,&BVvk-,F F,d X<6jPÊP,lL $$El*3M$"vba|"Ņ`7ba5jr|-TM[ eJ)+N,׈ŝ76b:<płĂ`8kgUBXC vl/ebKg%idgXd}^#,VN|e/ĢXh]Y~XHQŭF, xX }, c_,H,H, OX^@XZQ& 7W.vgD,A ZMV\ŕ'+ԦVbqzóubѕwbG?YF,VWWW]9K/$$s$C¼TvğX0K3(/Rk'n.{ҝ+f;mi0vg>ʆq39jIYuQ VբĢX|*j3b(vC+J7ϻbʑB`.\~ K,$0A bSljKφEg-Zh%2/L< }v."$DM/98dI#?YoB,}7P,n/~/eOnK9&z(V|U_.XXX%fӠ6va~*[콝X#rjݔĢ'^|bSMz6Hy[Xk,^pfuSsl~IJm;<"wݻy \b!BBnRXSu`B$EN,̌#Bʤn/~1%P*1Bެ5:MYW(ʪ ƚ&_Mv.=/E2$UhɮV ￟d6Էm+#P6o=8[)+ $$s!;`^)/uڞyU~C}Est_<3aIư), ϽmA?ޭ/ݟ/7<|p%ĂĂÀy8_+vGłĂXXXt   bAbAbY,H,H,:@g ,$$łĂXXXt   bAbAbY,H,H,:@g w/- gg#x@KS:[dp' {#(t^d+ 8T~5Zia\Uy*,,4 X:Xh,4tXh,``XBcBcK  ,,4 X:Xh,4tXh,``XBcBcK  s?  ,,4  dYAc,,,4 xo4 4 , Xh,@,@cB@@ 4 , Xh,@@@cX X XBc` h,4 X XXh,,,@c@ 4 ,,Xh,4X` XBc` h,4   Xh,@,@cz@ XB "XBcT(Xh,@X:Xd1aXh,   Xh,>X Or^xlΗdN}nn,Z "XBc{| WnSWCӛG_W!UE뽡V Xh,``^w<^Htȓ^)Xj5J _V_u]p y~sExU _,@c%ūv`X/,G;lp]=U5oc4Ӭ/3E,=;>Wf4!+i·6҃h4Ydh4,/UoZ9~!Xlfa[;қ/پɵ(Ki{6CR@]fAV;{맓x^1~8I+X[0 +?SNMt~LI80S+tS= ^,z!Yd,k,5XlW{JWcLiɗM:r-cQw67FWksj˳BbgR?s4 x "i>ÍˏwEIԴuȃŸXc>/^>םzOt~n׏:.^,4Md4 ")9-RN]Գ$$(T<.ck a<(d/8I1tm6vo,X$mq0޻W\?i^4 XBcz+Zg{']`|vQI?W E2?|egoeuʙy,\՛ȧߺie5oz3iHv׉bcC8nCT]sY:q G,B\GO}JW:E 9X` `QOۃE5J,Ӫʨ65Y|~lr|`q\ є9|A ;q V&ZE\.\mcsWi*NCT/cX.N4 XBco XsQb('O GMQ΍<;P˃Eg,C4! ?ꥃDt֕gGu|vpp;(=h mc,f U,eXx.X` `8s,E5(.9A8?I''{VX` `pNOkcq6;i;.5X!LEK"Jg F=`OʻHU.0Xa1X{?IǏ5ɟIOV' ,@c,1j X|k ߭?iE92W$OwOA+1,Bn3 EnyC Xh,-A~XDŏΟX_TMHtB ]unBX,,4e|ͧTϳ ϾڅaZSwCVXEzAt"nn\4 x".'[n4!}VhKzZi6[^cUNnWgA;W *f7}ZhCVҤk"Ǎ]@D:z ã?\6=i $a\|=hb?,B7˥nc%_ ϯmƢ m<ob|!'AY q;ZXBYXa&eHYY-UchjKF/؝?ر;y*|~l|~XJvflHzB1Xd_;;?Wj.>J'!e|03ozUPEcoqe -pqʋ=;]L(]'JJ_M>< CfBh,4Ђ`L]V/*ŅA?cq7bK_ݽ'B?@{?YZCjH <ӱN/-Fdd,,&{]Ū}(eҹT['\8XdWnrY'ϗpq fI` lhn?a?ċ"X ;kQ 5SQӍldo`'Fӭ |şݭ9~S{l`Q~m*OxwEaݢ;[-7%/UJW6Xh,4p'Fg[k!h#rt\x!»QSqFt4,ʻ )X싢?o];r&_S> 'YIX`墟dɹNxe+ť+7%X  E搽6ݞ9&]ݽ ޥX 5? Wwm}h5?Q^`y%?cQzVh!&W5˅OR׻[,RW,,X  4,YhX%h`Q%b܈Wf;~x{c -D*͊0,X\.OZZ5"~//Ga`#Xh,4P7X ֜e6}Q5ogz7,:{PÕ:tk9{#,X?`Un پU'wﯮ8EGt`1ܿ`6pj^FU˪^}u^2U/:уWَulUGzšu^Dٚ+V8,M,T_5R<]XnW+,R_//+ a9Xt<|\u: Ub;H`Bcb7hf霡ܣGUa2}Zu7;_Q.\ӷqPL~Uz.7Eop$^㙥Gg^Mp髿{մȬ @sqEB~- R6)R.rpoDxw8{f҄‹ZJ:-GF a$¤r%M6 v97_p-G(Q1c.gE.b,0ؘ l_bW guS,}ϗfDú^We,Wd[SCPze]p^CE;`?=~X/%rM `fpFfhSz+*AẃŹN1(u{!b,.AJ\aFzMWF1v$-\=\w_IDۆ `k ;/!2Qd .)";9+迿@|pŇDdFXk.`qmO`!8\1>WǺ5i JqΈ JFXD!L{|ày[Y%iX}@XWTN,m-`( ~rx.Qq=\~ځ,.#Xͥ%]a`q j2؄Ӷ_/3V=~{+^Xx+,P,Śʺv$- @W0 .󀅯7i,0o sBEEil'qM+T;O0bz7NlM'9Ek|wN-U|n\~>u;XϬ2j9` rpftXr2-WƸŊ$NSeUU ;w%xWv򚨸V!7s\5 ,2$GI51Tbm_d tB*5 !H dY6"Af+PQ`]|Qp=Xu}>`fjH@; .VD}MCRNEUmY-( q grX mK7yn:ᛞJ T/.,uy0.^BA#!F?X#Vղ'<_^R Nzy${l`spmb;ibaj^RQs8j `.mN&>>]_=^z0XA'9w>.N. IMwtܸ,UC:I+Q+g>U-?8ЂEiF_"͋\$*'3l!,FE31 IݚMTR ,S0GL4wZ!ۯq =eٖܲi}eWGȻ ?.NA #a`k)eo(`_߰Z nh(% $BUQX,`a"&baSnB'߇$wڑc Y.Z[2. 7-nWX,j1,v]ߎ[ɘ,* U,, dr5Ulr%4EH8D/V 䓫3 f\zcͨ^x ނo_HpBn8Q ^1l!,iQ9I&B!)(?- nx G,1 0bUۄ5H?N=\3 pzE"qKvMV(1OfPD_*TTp=lT(T'1^*Xx &G->e'SK|+V/D)NX7.U%Y , Z4l&ЀEFfZxXcؠCDĢZqx8gWr`L ʩX&񌼪K*&3$ t" ˀ=}ޡ֩/X b X"X@9GON[caoF$mQzi^! #FLD,<$Hqkj֖X%E+0_փ`IHW~`QT ƕp}\EW`1@3>$35*T.6HS(q+H0l!ƢE!NtAB9I}so@]Q Bo lJ&J,**1n#${ň]ZX8Y|CBn+4d~À#?,LD,7ʡ't^bt W[ XDi7bwyz:,yV_ ͜O~`5oѷ/XJTq j(,(V$mmg`&W1:̊USǫe}$ e+w)},J65J`aE? 8k,jH),E 'Rrjdvk`9kSFn8+8#%oV(?@c!X|$ ![B n6Rܶ 4aˆ&ba"F|X@M]C =anM0XT8 GI "E)> ,I0頰&{M,\HEB5WbNh qZ1 VeL+SX*`A/D>g3A}X4C2ìXo:rIي"#Z귇,J6zv9Ât"E|Ϡc;RDQ>ESED  fl#wbcF %J6c毈#N}bc> ,D5-Xq{ _F%@,a`a"&baw(Kw*T"EM _j84U X14\tNv?jE:_xh%y;I X% &0+܌\ G i2sDP ƕhb~1}`$x2ts ZXHe,]vaKsί.⹷-5<5lMm)n/tu{hdCM_H'o@\eW_ְCd@Rf6y.cf#MT 8S$j~,Za]Q}6b{(hQXtNB vب78L)LN6hM`$@b5B[Τ IDAT ʨ`'Luz^`f>P&l ,򓓵FX1E]z~Ch'tZRK dtcԪxZ%i0E=np D '~8cJM3hy]^KgzPoҧNشXJ4@JN{ II[r薷U ڌ܀:JwzxU {Yyqѽ)ivy' 5-4CSVJR¶I9$;e3mV&pa ^61A[y{htÍK=J!$ 02:$9Xaux xmpXM]7A|T=c 9e" Q(qn(٣Wxe?ŶK~=?=GP,{_wUsxY:юE[r n9\ |*V< wm^< P1bD,Lˆ,er;k)EmW[G$A?o`^'qB у늿+zƥQQ h" -V5~~>WK|}JFE"v9ȍӳI2n]8k\ŵ,k_clśgHw{͖lr6^$b׏߶ nclA9SlzH봴=Z,UJZI4mWf{T*-Y#KpDtqTcծ et;oMҴ bjv$ynwWBmT`krNոZWO[TdŽ*`J&W ӊm®oeިAX",'=-p? |jPӪ‚kkOh4Oz{TalX:ªlO'&+ Yu5nn:[o/,mڐaQ0,;km p7W^Jzr>pN|p٨{#ax O vYr;*X`q5mHg%*]`{97K0gZ[9e*s2+Ͱc,;",8SW\qSVCĵMgIh$dJl:p > *'H N#eb+%L &=.%v39܆G3 ",umT=KFV_NX‡I7 -%s7xTX$eacCp{P< ysmnSןhf@ CFu_|n>u@%=O9)t[Zfe}<Z*ߍp(,!+HgQsQ?-:k',gdƞF_I}[aI ac_$Y8hcr',iM%$]'b7Zx~f-м)-AB" !+7Y誱d:LE3YxUŷIay)HOsxL4Rc3{B N8|^MŤ1' 4K^p0LX?弯LXQcmRAXgn3haqfkP8Rgn8p,X W?q FXTS̈́ES]_"_ W‚+pu 䁡`\s'LX2wⓡ;RIXGC 6a5\ap,XbeiE ,ʎvESE>nE-Y AB $t),Q",~Nê*,hgϚ* U)77$ @Xpj 8sy~y[ҿ/51|Hd Vf޾Z?g:nTj(, y6KlE]}Jb m.nyBaᑛ4 ^öwN`*Ֆ[KA K?>KH_(,:6KFN_4? 10jB*,rX0H‚pK1~!t;2Ñ19jS.;P˽VYj%QQ]X͕w.,X$<ֲ$٨~$_\>JK4kJTXzΘ٤Siu=9%dPVNU6(.?7HȵyEHOsB&+ yLf++{-ISQIZSE &ӓgjNM EZSwiݸ|{zՓjքmZ[EIRy[^K҆Q²XwfaA S($[);hݢQoj-6Ii(&-s֠ܺgBfútKEB_dIi<d!i2 8A+),޽ q%KiѨUX&]fa=):# z#Eʶz$Çl]ykЅ=QI9#7tEQk~Tjm*7DVrKpܬ(7A^#򿗵]Cwx">f2H}3.u5ߝRR8S" b*,[ 8˜gi)\U&aӧ_=]LEo:`3, 5A%(Vd"U`a9@/ _781ذh:@PoU.oOϗD$s?=g}y\|v ) )ȥd{t=Ah3ttb|k ca򙿺/F/W\Yjbz}? p=o|n7Tu @詭S"j, x,/: ウARGֵ$ D7F5^$s{B a &Ai`3:cMOѻqأn.1$@0RtkZps$hrxTJ/ t0] ɘ;P 1'trwT 1= PP=ݏMҕ'hfWA6//pp(0&4I` ]:ti|Dv (P^D$h3T`A:I{H((XH5Gmeu#U::4-%sľ`aXS{GB vc-߾OȓX"djzl/Lq: D6/cw.R ُw \y st<uIСƞ<<hУ94dvt8I5`2\`B@Uw'._ct~(0$XKd OГ`{C܇?!./TFO!ccxH!HH|᪌+);Iހ;3\*!.t^]__ ,Hkf y5^ Ivu[G֡xۡY0r•Md(aT@;!+YzcͬX  ZC ,Q'~&1\9`E3 nZ"2[,!VdSv A5R}q}pl,1Wsp_ q$Nzɳr7ըx wnAX\PD*X KIcϺk$ζ2Y/ "HtyVnNiƀyc_qF#:=":+! 3bfy7o39rT3jM""FB"WԨ{8Ƃ 0i`3:cMWG \[b:HKj,4Fe3khHŦ\b$pW Dwr5yKȜ#/NiBo>ؑ B.(lK^9#({Jh;8XbbXAb$t8E3ǿ!ϝ8:[!nɂ!X>6EFh`S tX -kgnOPMbmv SI8x)z7 O?ANE1,˷9K]j?XtlUxR)Z@kL^=6 ts:w8E{Wwsƥze&X/xG3&y|ыg. {G<1] RJ ?N 3s>?m4X茅Xh&G"P,eW"Xޟmj \"7$XX(q; dT(Cv0m#Žas龆W26H$/+ϱ@qiEd]o}b:m $aqAڣs_*CcG,Ɛq8r&Yjln24rhĊh6],S˷6~<#Fߒ8MTO$`q n+Q]q#Хq: o,>" `v'Y\K~ym t_ֵ3gA2O1e 8cSfyo][[4"e7Up@~otd^ܹ >qoXYzuߍcĐ6m,tBg,iswMzϗX.lЂQ_gPIʊKF)S,bXТaSUZ~U_*viCB ts30\OcU2"c˷6ފ,G##`W|: vnfJG3;lSU{t ;?C(}ǖ72i/iepj K#aA5 kV\ۿ X,.Amj`ὛE\6L434eX\ 'BW !u>ZU CB7:DɒJ,ZCUMsPW)n {kjYYtcR9!6CG xK,&9*iӦBg,tB6W;܂Plɺ ]#7` Δԧ-%ЕPx>y*Xx}bxCyT 6mYt?)ASˎŹP*XQX).X(X#ԑt jN, >DCa7qfS;7:`9B t&KN!XtxX`qϳķ݄ERDft l S`qf\tkI2">Ʒ{;N=W``SJMtDLl/$U%zRO?5`H&F/r.Cb/Uuc^\Q6m,tBg,i^ݞRfbv>\u}C0 A!VO!!dy*cp5ޮ.N'Z*0K CVTK, WCG;xmFhnq̬ dXٙ@ǿг8 ,RsW;?XLz;x i fǼMS| ,I ȚN˚SC6vob `=,1F~OVS+ˇY|2`&t&N&ܭ,Rg/ye2d;4>P,3qj_ 1`a"&baĀ[38PQP70D,٥YG$?tz3A0L2`x:iRw!吅 Xrl`ǺX$`D|qK| rewbٷݠa=ŷvUiPdT!Md%,ofkmZ`A∥ i M Q zh>x9`S0RǢ6Ǐq2\U!|_U@A& "?G3T-6C3`0F~xh$hw6dۻ#L9d\XB>#FLD,Lˆ Xopk;NDλA\׬S_5O,0Ǣ8`qi^fDEUZiPC,$~i"Wn `j㤗Vw(b;bqDvoH;vŷv.H>,7KҷkX%W܃րE#qS`>M`1)= 쀍 ,~D' Xc>o+3 ױݠvwHo `3]O/b|ULw6c|"t&!/ bjYOUED T˱]X׏Bψg0 0bB瓑5wzD,J%cF=Zd@wJTė9`x8X#d+ +ɂѐ ,5,3B gN*O |:47ɀy]arBI&aؠuTEJ!'̍`Q;4h2`>M`.DޠcM\`qQ^8OzQ`;uUw;y[ &1[3ե 3 Q IDAT#YꦸF|p k^]h‡#8{/>;ʬ5̯ [WT:XgĈ 0 #Fp82ýYx9oF, ,< v(?+k9UMUu>EOٟl" 1'Ee;AvWຓ;"` [M*T-he$̱Pp`gh(-[dٺhm׏tZs<FG xǮw.B}B487ԹLE`A[˺%YW=Ssb?pȡ$`@,mMj qcZ#xn.e ۺa[ x2_bT%0i q34q捞[  oԽt>Ϊ,\s8`1:qk'IP/P 6" +`E(xIojY> ǘ.3f".S>b0Xy"3ܡX/cBfqj{.gmLDjQU6oI/Ш黢Z I4}F0 0b$ Eɣd햍XQT1F,ķ,?iVGK[3qg'AY>=XXo0vS{WP 7'i-#TP % >tT1iYUOZFԭYXLni _ !(UF-)tD<0ct$:}-a[%K_u<<3kd<';}X]g kt=xlt|;ęm̎`>M!`eb܉nL'NSJ?Ӂ4 ߿bN)&8DX;I|^{A8{ O8AuGsh(e֟A_&D{\ګA3%+?Z[w~;? ] kгgh,Tl/%l7qS3yj$Xޅڦ9bs+=\k6{O-BY#,LD, r--VylX""J6;HEȮIfI|т:XX@ 2@=gMHV]= 9X@4xIt[EqUIkh. µs7ޯx2ra%v `,es5h8{,7k4-wxnv҂4EKQCST,uy&p !1uF4pSFhc2![% U'W(X+NsЗ 3K\ek:RwXTE}rԪY\{^H4'UB_g鯨V<ru@ <PgĈ 0 #FNHP(KˣVYЈBAwىXy~|NJ[_6{xBmpU.7M( RS&?Z$C,mװ_ILyYqH`oKQX4 jy0D "sZp}١ő yo  at`=hXnɭEkV`2ję`:kG,~q_Z ~P8ic(BueQX(OSX }Nf{7?hκ#xѕI P|   x'/>R!Yͳ>>;պ޹O~Nvּt_L?GeIoFuhdSC"V=/f zƘ/K+HjZORGϔ:6ZzvS֩c3X'8ZWԩBN=ɨE(Fo:ThlXRq:'r-stʗ™򑫮[q[b^5֦x˅@ _.WWPOB_:"COWp88/a` _Ȋ ,`@J?KԿWp~F ap@_m~3*>di c ٗzӂjXXXX4,,p,p,88   @aaccаhXXXX4,,p,p,88   @aaccаhXXXX4,,p,p,88   x9%uD.7AHHa_~^\,6=Iٛa O웰[cN ,^.n#,RXXX !C,,HEF ?),p,p,a+,D%/ҲgS5^"J!4*,.Da1"r93ryEVXQ~U> Wacc',=+UXm'a   @X@a/왰hE ,!accJaשSg. hKTo*0I-]y>QeP̎e=pVj=lLNԜ5cz 63k j#j>q&VXLC[XJ1trnGUEm?~brkCk6M1])u.}:y5'{-k +Ѳ[.JnwesZq;ҿy&jSʔ'Q-ToQsY-[s7^',VBΦǮyo_K :}{Y%u_M=2 w%[Ŕu9օ:gw6:ޝU ۷7קMp]pvE07f"~È#"V},-1 z*Ŵ7#:׻UßoNY47O;L  oD#.pWdj¿mV s7wKEsZkeJS;NYSȝ<%a1z);jȕ\?1k5ܥGRX7P#b߆Qmk8}g>zA#u(ACӸTrN苰 \@*Oȗ_F ![ᆏld@-e. ҙ3JWD4׍PS4 `- VVJL< UccGlש̵55J`I{x;n&!b=ToEX l^lSXx3>e5 I[.pn҅%~u>5|_ʼ ^_D!*%Q={5Na)W@0G‚,2yqfrz[Ym c`eA8l-3cB"'r<̯U~ 1QORəq֖!?#=@ !,pW,(, rJA 02"]bn/r&C5I;>X{ /֢_ҍ ⛪I[X6ה-$5CXĔw-ogvaB9|>),: f^~%_DzoSExbբ΢CA"_* i3 \}o&MQ#Q QORS9J)XEud/ٕ8$s.2M_/fOj5b (,9݄v+a-ߩg7ŽlnGr|}>z/YA [2اN3ū-/$lEz LϤ- Vp<إӄۚ733.fSS1A*gssVXk&$^zhU7ܣs٠m w8~ IDAT\$RcLņDz^1jYt01YLuJ;(VF3֮}&WNAm\ ⻪x@GXX N҈_P~*I>sM*q@ }b+įd?0Q_EK@@ !,pW,_ ZaL'̈́祮$3?i,+S(Pu<D,2L:8, nQ9>4ihn:@HHo{~J`   /%ܸu:m?s5/,G8taAbAbA:uVM׼Hȵ`   [.v/miI_Y`\XXXƅ`\XXXƅ`\XXXƅ`\XXXƅ`\XXXƅ`\XXXƅ`\XXXƅ`\XXXƅ`\XXXƅ`\XXXƅ`\XXXƅ`\XXXƅ`\XXXƅ`\XXXƅ`\XXXƅ`\XXXƅ`\XXXƅ`\XXXƅ`\XXXƅ`\XXXƅ`\XXXƅ`\XXXƅ`\XXXƅ`\XXXƅ`\XXXƅ`\XXXW%"YO%el>R옞="nZƈ(m)\~>‚ĂMOM ǽSS?E3U|]i℺DE=?2ndUF.)^P]c3qJr_~#(r;1b j,νi_,v @nyK5*^k-r&btt3,mF]ܮOzY] cJ=^'$JWjIK[]TMo}Ğg ⿬|fЅŔHd̆"UhkDySņ v\U8~ir1HKu"w쯣ݽTium'd)5mI5;#[o- u FXܺp(kͽ|`DޗGpUThjRWo(ΧA$]cuM7.,^?!jUQ.Y6yC]|=%dCYs/ ‚Ăݳ RZdv M-8OIxg9~0*|{Pu.9<"Y/ u F+e%k ϲ ڤ59KEā !rcsi"yQ* 廖=ql*:1 ~؞}7 {_u=YHMDGP[|[$ews"SSWjhq)܋Rxl#aRnÿMb>'ԙ!,SHGˡ dɣQCPkk_N?[ 6 W.uk&AKam oﻓ\qؗl(qזmu-eW cXDd[-v\`'wXPeaAbAb?z 3"#LSz7. ‚Ă)ryfO#7Z6ga7?}]䈞;Kw޽9¶޽N~#@ezPnbuvv|t&=ߦ0iCi\spwn'LYx'b3;*lWƂƜyl z=WuVg^Žw˅s^{2ΏfCq,r>p}p8J4R !ٗ+/%v>pP6(|8 y麟wh vەi\8B4!v:ᖵ- @ec@X>T=q-ed* VϩhҠ ~8a4{6W ,Oj *>x 1_-"ɷ'%NοA sc5N :a\m/Ƿ7ggy9HڽYsUhR!`,TuKZst Zne [lbb=K~3W=*.fR{?pÏ&9e[3o.drV4L-vG@2nYNaZn%hq'N\E,8Ł,%^̷)}Pe@y0ʠ^UJII+J]X4!L O2qQ6^V QQ5OmHx;|tenc筝*UUKIV86;004c '97 uzd0MG~œk9紁g6|)r'_9ASmiyDvm.GMS>m}zHi$N,*#5Dd,T90fSDNo#Y1]f;O&f߄\Гwz$MdQoW!*>|/ 0GgPt'F=Szn,4u[0kaaU%.XwYޙ)Ϯs1+k~pm.dj):'v<meg 8lN8q pQ&C?WLij}x\3R}|-HP墽-X47Jj`-UQ`(kDG ᪥VиLeuP_G8Z5(g6ECͷ#8lJK ޡ{3/b^6 0v :rS mF;VV:6\ǭ݄fOsW1%j$#ZzT-a; Qڎ$F{D\F9U~al{zR WeH6UtsUeH|RD*0'WI5p/YϓЍ-؈ vwz {4rAEFDxҸ §o Bx4ǝ$m,~CUq)JcJHFB&m̴T`7汄~ K0k]E=&ermw͹_r(;1*yJ*bj7z5ylܘsz!Vǽ$] *1΋;ĚS{3ُq5qv/S$zUMm&_Wb<ؘz@ێCvĉ_ .b"N~{!d1q#XAB@zIV0Oqwr{O|Y& sXy<,PG/*rp.lgwi1E%HAQmW-E>E >CS`7 xlUԆs3vk'Np p mrF~܋Cڋ]B:(_g2n  AlnT e Qs}3ؐqp23/OYZ 7H-%**Z Ë8F CRW=A#vo>DB 2Cscz)0$B{'ˣWX3T=I.)}Q4ɨYH] 9{1,'EX:H]Db(g\,^jSDSꤽ~*XurzS5.BW&l޼36aWt4]:L?{Zc:ˌџ?Oij9QXD$ߝ8q E,\o/#ėm7OÒg)G|㶐SSe7  8Cw7GE9w?Jpk /7DuP*Oƶ$K>#4fd1QE9Z-W yjMJwzƍqN&=7>=RD 2+sş 'FZ^ o|zXk+m+DՔՖ7Lo5֚ҧբ?4F]Z45urЃi)L}/B؎Cߝ8qKYzaswmMMeYx?tk[NM:+5b;g03ggE3fl4k}y{ڽ*Ju =mˏd}{V92cX1=aIҮᘋv/:mrPUB4Z\ШeϋT0SF~0_岺O{0){EYo˘% [I؈vbaff++k`u7`?LϿ>k,` SRn?fǕz\Ž+y0n?$[Ԫܗt s=TXP*P,ȑ/fE +lJS<^J;1@UI'Us4(&D|cPC*9doZR jujȴh(F/1FG  3>y c;4Ǒm@k̊PE@W 8,^X7l[ԚdxDfoT2zH9rL\IQ)=&>Lyց+^BTR> b|,刺M=Wi,Vi]в#Ik,wxOm1{h{eYDublcvDT-O-O}YjdB^[*ħ~I~ 5hQ O2݌4cg 4qSw߿]auP}pNY$먬V?ؕ scx,:4$_`+ zooga@OHH/֖<0a/HK;=Q0) HEXPUzջ(߹Vbc8m DzpкhFqcpnY4/h8sřيR7ٗ6eq/06#p *@ZWLΈYDN tY؈Xܾz.M ݭ/z/1$QIr9/m̤5M3+SH1maIw NE-pbM\Oj@#U*Φ Cv@]`-/ IDAT"$ hK*.k13rk{C r|BM7k7~rt^}\nf{#I!O(3sl%f?+(c¨'O*&FДcG (cx, 4,hi U#uFծ1"O u!+07}Bv*mm&n֪9ݣa"wt*FqD魻 轻&鱞vV (ih*+H' OoNܣ w4VTP5Ǚ+άΐƱ-ĵ 9Tw)Ս^Uz`=IߔkZ{,8k[Ls6 EKi$+8@CƝn `Uho&L/^KlPAub,Dg6w'!Nj++!ưQٗ;WlRzxFyE>v/:}3WfQ?Q]CYfSj B]f ͆?+$ztwW(臟ΖQg;rP@cP@mE J"TBS`}XS{uۓԯM,ށ{dVUo1%Me x(_\V;]W{0{[|xlM~G-,i59נ%F.,u7H]x/J#B>57^ /g89v: <"L67|]Wx\=?rn?n[-s0p d>fDSbtɽ$4k2,.64~o5*,ad5R5$C0T|VJ{}(6w%V,Z7CJ@~}l~JZYް-5>oXm#}*՚g;.} _mÍã 0$&昻ӜQWnygp1GN| @ajOVl]YbBf\|DsTJ兡sh+ξөn?8 uTMVdi;٤^sftmj"x|qv}eN3of^=S@H0`"2Vh` $2 ϸBjΝ{@Xc(Ň[XKV(oz/?BMWE',7(&k댝,JS3G]>r):xaTi>U{19A48a@))"s'Ykwky+B8iEaLlUa"7YyEfNnQ]բDeUc) icDqc NqyLQh_)V D,Nf2eIDxw\-D6uC3Q]f0O/"^k (iuCmd\y”Jsҡx_BBƔD/6 P$7`ƑrfNZ +,M⃴cPRŎOB4XLh#'߻CNl)3ZU#nRXWE5r*u񍅰 ( dM9~GDW9([_|> כ]*1eOY%$N{G]x 6oy+Ԟ}4 7ad`,,>N+,>NBE:ma29-?j1d¼kt4y&1'J>ٟnKq$oS>+L[Rx(߾^?sK+,DqUb) *YgraAX:UXi)&,mƭo!_%o`\̱đq/zO@1&*G sb0Y&*g<0ZЧw:gf+ڤ1(#|^]VPM};X b.i?T8 0\q/ bJ!%!|6[hj0F-ډԔ^^p-Q~kOFx:eX>|U1 uq^}A323D+ŵ:PH ZVSQeDOw^qJNh'ĉ.O)ʿFxBd{q1owGϙepc)`6&"t9L{x%/ɧ~P]> ZǗՔ:lNzb}fa^K= ql\I pjR*\*-(UV%x<&x@Q8A NmcX? bdUXOW%owclg;7!ۭ͜+Yp C >Qœ~*\=hލWx2Ľ6E{vD{A*0y5?J=G/xغ:KoW!"P ۂ/fDQ#0.Fě]pR*!h#^#="s5k֬l#_G,d# ֐6J­ 3'=8ri;ZSHArH%˭=Bp{\3C *t^JAzz@39x#~ԝ>a\,-ڐXmxGeVV#5x7k^zꈃv~m$3f!-':Dxr6Q$EH!aإJ[ZOIs2%o\-sHퟫaüfÅ!*S|J`yVVuH9dY"'#/@;Ě5k΁XG,%_O,XXkP[xLjda{ˤ9@w| j67t^Ry:]Oksq+%08;!Z  b] N`td M >4:n vѝtkȓxFW`Vʥ@kf\>G),><`x:C"|Vv,nn?nk 8hy2.O5_U3S Oǻu}KOmL(iSVA xJbl[b,Y.c*ڧ ko-!yG-* tܜ[7MqR O1z^e IDAT*T[%lu!7*ۡ 9O*q@Ψ?hEc,j.Q,>W{7W)USalih; =<ߣ;B]pUlE< dTN_6[xFZts (8c?T={-)8ה=]dx:ޭW|޴JDMZ' &^"g;%>OỷZKݐkOU,zb[,DK,X% LeΉv/T~'v()3d|CH33Lf;ѾzK_#|Yv`Wl _򽡑ab(/{>NRb1S {4?@)ю #_ԯJ,:4X|s+T5wu:J<p_p[ottfH4A'ie{zw 7`O{`Ef9wI-jܦ֤:}qĕ‘9zC3{Wt@^A~;sE9!buyFzfSMs|c~>+t[8~ct uJ)ۣ׏-鼫W?=w<]rݐ3OK,gX-+Y, BeO9zY7)\aAzwn'dfSvshDnXz͔|j*h'wD{Oo:NRbQ(wbp1+A  K(ĢoR֞c!cT|\ߌrn[qȮ+BG|ɖ6BI݈ viY)fk=!%ek1} w=jtآizϟady}Gr}#/?+t[b>pO'V0svP2z3baB5XmbAd,i>1g&DRr5UYg.*܉2kR1Ǟ˘G ~) 2a]h9Q3M'6>rSץX{qX+5?_CH,=xO^DI]S">6ҡSi]6Dw9Ve#"ſ=nCd;Klp?/S"C9H'΋U=WU#DD7y\Jq_up/oPiXx߭';^;pM<~Nҏit! OK,LS(% BxE#ZV,`VV[&(:W/~O,͍xURƉ_9v׷f^Z5ҵ{d Gkƞ5vRX}E vN>ػ绪 &7ߕ{SN w;4ٿd;?(Ei_՚TwzMS#.Z-Ɍ~`wR7xjb\h x)rŦ׷nesTusX6xm#/p n0W,% B 19Xg'X,J,|ShVc,F,buB,^To7% B`]{^ͻu rym۬Wb%O,YXҴ֞X@,X*bab!'퍦ȂXfQckxԅXBxJ,f^,P@M66X4bUXlN+b*-M%brjX,^,TS݃baBX BhTXm3Ȣy R {C,V֕X< ov]-jZ 4E`oo6.6oU]bEXXZ/#H6(29xvb"",)֡Xt[(B X8B9bM݉s.d[Po y wSͲ):]k>^M)vŪXbl -j Xx{ۤXWbXV"9),Ek" B X477 K,6dE|E݉EbBޫ U, \b!J,6fͦիXLd!Bۄ@.%)T|&]u!km[U[@sn/Vvlv-ElvR,2fUo+ 4Gnͮvw bѴXBٳ |bK,BUBfoyš`S|(v[MZ,m3{#)Yh UbQE?Bgoo'4GLn'Bn 6[bͮI. 4rEx5nba5Ģ) upɂ!QEvrX4$X,KxɈEr* 4rbm%X<e5$$ XB$ B XS,2kfm9}MEK,m-T3P=v{gjXX,0mo %Bm, \bbBnKl3z;5ɂ%)Un"ov_(Bޙ.7ueaP촫-ʁ$:$-7 O.{ϰ>ՕTu> 3 zLB w)X|W x"^0SPW,xE,`1m-TZx,f ~bo)--`a>`$oog% ,b-M*DE1X pv-yv`0*[6s"V,`q/ ,~ %x| B2l`!,v,^śpc0SX fߨŋr  Ss,d/" ,eoJyjX`B=NJhg|"BP P.XW,Bw0 % LBvB]b _(-7 X,fmdqdf~V g^˻++?~loopu˳w ?Mw?/@=aT$OPƊ)_Ϛ\N6V Xwzzr|ƊV+`r=bO',lx`p٢,l{;-YY(,|HfPY5I -2kŧ+c.y*|I`C UHp!Xbg4\Šl'T,v1X% ,,ToSEeqk4\FYhgťH e-lP3(dU| P +SP+`|E+\Xb G,|uۜ.^(V,+X8g~% oǖE,&OCX,L DYm (K N?ZEb+zYB QXE\6wBI>.XC)YKJYbۡeaYDgᒅ.Z\&] ]_jGWcAҮp8 +AX,]R%z'Eaw(X,ԂE,^ (&Yj9yhZk!"63ߘ:SWqNيخ]1+ "S]ݞ2 U  7,L"[8kŅFޚҋp5HEP \;H$B2E|WalŁ*m[_aBe"Pk:^e٬nͦ n2XL)YY(_8+-eQQYj(q"E|_2"+"BXpPv{T$Td,su|e; K; 6ΚE,f߶"jA*O"}Yק8dEZW~E(X|԰]?ⅾ'fI+,%d/- Y1x[ʥE-<1i7f,DUȆY, ",' J#P  KYr}[ݲhEJVCb,E -\8 >0kZƻwVT.UD[uG&W(ave*bp{"dB螅zjgb}۴,m9fYgJ IV[pq)TVuz!PGMBU$>PyXusn,z* u؍5 ۳7-\"dKY`׌ K%*TYi6aKX`qw~`ѹ,Yw"YDgQ{c-Ve&JFUc̈yd^ cg++p]Wa*iXd¢ zV`)VY"Yg޳EZޢ j e`4/4PܛT k+uPWPRHŚ#3a,J,\ߞ,ȝ-HEY(je,ThYmE[+Xv$Tݞ`8 eiYPEX {R$-Z"b>5.tXBي6VG]|m낅l*5,I9 Sp͕f/p4wҴP"40'FX!V9jB_1PBGѴI gAZJa3TYi!gq&.yaALHĪf8U\Kb+~E`1XT"^PӄE> 5JNY荳eCkKm,b[Y F\$WyExT8* N䕜E*-Zlg~zjbHe؊LW}Ei죩bE^({$X#y/u"(f!B-v(]pB0¨R* PS!Y8]u*,Ls 8IHXt`Qo뚅JIׂb޳BW-b h TWTWbZWWůaQ9WYݾ`ѵN$r$Ϸ,Yu", bFZhoaąMÙKE2JVbdcE[|Eꄅ 86WTwz턺`P ]BZ0YĞ.Zhi1ZB (yLRqVJWP YX`Q7*eQR5 ,rDZkzBOg)ж"q`QaQ5MBm(BUnYH[6CdzYH w.ovoʼn4cYB_NUB%m˸ot}2e۹vf PIɢqV-"Yn,փD~Vl4a 3uQaB޶mqFXP]YŢ ~螅* = &,r(ݴp"-F:X)|Q@ϧzlH" *d j%W,5"v*s,j g,]߮)B¯bEYZhEOƣ)tT#K,HcW v+Iڲ( C饳Ybc#n1+hsQRUNoWQ5IOI0fV0q),7XTa(sVEP".D];j=kPgQ+"  Taq"fSϭP1YDg񻞆 |0„X$Od +R_񻙃"2fgP,qaMFRՈ rc;iƒ[@~HvH|n>Xj8O\jT"2Wנ=i0,`QOPfxanCB0E<."d| """":Bqi0[+,+\QA{E"T5X7,F&tzfqwȢ>T-d?ډ4n+Za2WW"`ha8ۛ,7 W\LꖈiQ^+Z{[!sE+ڮ [r?Xż,^pYxiqewz^ha6C]9 'RULx¸'튁߰8,ڟXrJ?PuKٲZl.1j_m*T~ k]q bE%B`1'6TUBlqU.>zZƀDDDD#jM4}+ =VLkcEy^ѼsE^aqXwړ|j;ɢ-};Ylw Kל1S"+=VWRm۹܃?`/B/B-,M#B땓# q,¬jtqs #ODDDDDS>ޘB>-̩bb+59('}W,,câٹbw|v֍vf [Whz!G """"S*&X*¬n(u+Yb,PPn0dCEŕY.xQeцxnKEQ+OW[P+mW/Bu.B /N,~-o}Z$Z Sj즗Z*4*TQ@MkFB?{Ey  2T4,,ZBl3;]X^mfTUfEsEW_h_:_XJnC<IDATWdPֈADDDDIWAe0WBVנ½‮8 ,ڿeoVfadG-ʝ(eF;'"""cxOgNOyXjpۃhס&Zbċz """" 5VV9͑Ԓb2¨^J0s̬{_1bP¢+yd!EH }#*EEI """"}NPZo)Tbpł8",r!-ԍ(k  k.6:U)**Tŗ;X,{fB}(G c K64>{i9jS8ThU8VT\1=4{X>d8z]Bv m El """S;ݓM>*VBXp,`2Ԙ,fb 23֜#QTΨyV]Wq"`ї -4-*[x\$]d^_haX[""""9GR_RLpЬA86,Zn+ѢI o {Ph&()4**zPGE2Ԑ,"EEхFDDDDD{>ښ""RaEcX#ƟYw-YTED 닖1ȟE1*V}aaX,,h"B|a)caIʣ;I^_UhɊzX԰EoiaoDl1"BC #t^ѽoQҟH_xPdRhSP!(cE\+E_Z%zPEB^ """"Ą'""B Vt/BkdQC5hB"BcDDDDD?zP5W,VBhC E 2_pU)**U4XȰbW,Y--.//Z@DDDDZc *&UXXŀ,G O [8\./"b,Ѻ=>P1"bE8^ ,6xg--Zȸ(P(Q}Z" NJȨXX,Bt@ """=dOOBThU,gvŃW-,"E 닀DĜТ(h"dv]qzXڲGE0ADDDDtè9)Z+zsE,NղX@ g ˋ&1uMQaU1ϊ]q^ho6"Z QE X4QKMKXP)),**% ԖXsj,Z0EB""g4jOLQa &+/n}YG-.nWřCuE/c?]šި[PaqTYpBVW iE.j}!4qHԋ"lRU:+wE1.(EodfgmxV xc[㢘xgjJRtF BXxk[T1_=[\YU!,BX ڢ85 Iq ,Nv_ED~C~ܗ@X a!,7+8.bM1 W+ME'Da!,@X9/E.ݶaa!,@X|\mka!,@X BX ,a~c>*aa!,@X aa!,R[" , aBX , a!@X@X , aa@X ,  a@X , , a@X|EءڦdgIENDB`mkdocs-material-9.6.4/docs/assets/screenshots/navigation-path-off.png000066400000000000000000004730001475306445600257710ustar00rootroot00000000000000PNG  IHDR XSgAMA asRGBPLTEGpLAAA@Q?R!!!/>>BBB(((///кlll녅<<<[[[6FNoɦDVšvFFFN_I[XXX߉YYYVVVᚤDDDaaaYi@@@TTTSd۴^^^AT|괼わixbbbbsàm|Ȉָȟ`p]mŮrsseuĞAAA}Mhѣ8FKwyQ_fY~dpuAQX˴S__kju7\ɷERUrjz|StRNS  035$8/=BQ\! "#()'%+&,-.*2:@FH7LOWTY]_adEJKNSVbc?]Oڰ IDATxArIaM`%xp$Eow,A`Yc0R)3+r}je#Wz9+ a!,@X @X a!,a"@k,*^xBX  a!,BX  1/}t , aBX -|Xֆ a!,BX Ŝ!,BX Ǎ %%S|/Xfb!e!,BX LZL8<^BX ,5k5j䅰 a!,¢nU ) JeH_< ,PI1qFMyBX ,YQc`ƑRBX YB%Fn]<+Mc݄݆j),tEd\q@ТNYػ\+ ,W-"סe1eX/Xwōynq'o<ˊ7i8-,u9VZ ]6, /mf1QX 芧qٙ7@?0ihq@YLY8s6 YIY Y-,J"r ד ȷ>Nub슝qz-,$,뾡E,`Z܃ڛW:8ކ3,^ف`QGmEY7,J,B6a%anC Yh-,]_3l wX{C=5""TfWlBX@IXTsjX\^*nYX(zjҰH,Xlm?vŻt|݃=Y~E,ka]qx {W$xw吧,, bX b',v/B":>*9h:,"gfuekV#EQX,z*#=`xeS@ˮbee4?"w{o=OeY#ӆEEnWl+Gb_g w_=4CZl,_;81驱MSib 6\N11g1 E+Թ^1i z!)ȃŤT&dWhhX5lReA/O?mHR͢gl$B*X Pz(`q{y9 `1?oY(B ,,VBY2m"Ca/O?mJ_ b>Eikxs@b:eWCTo:.Xhb2l[)2d)-b9YKGN-X:;\`s_jeE(sPS`4Btx5nК ,ԒŐ,,F=FE=`1!X!3#Y8K[сī[8BK w\57B,`ahW6,"#ˆkַ`!kkJ+YTFF̋,PEj"XajjK^>G,]^2W,`Q%EP} N(Y2o e^9 _PF,\1f.X:ib`dё6CKcZB.X EUHT'FY^ r UoK%4X\B91X4,; ` C3da-SwBBEZVB)\qWwc6oPUɢ ,L5>O Nqqt"J|ܨǷgPU/Դ e?72`jlV rb`l JB s! ezQT:`0WP~XOYTPCg*X#u%at;턺ɫ7|xq,{t/x#O8":^u"-X, ,`&o)Cdqva'Tuu;   ,XlP^yא%v< U%q'Z uW@w5ZB-Ubxy"o`zwB E,@B*|BG yb^=-I,@‚Mr|{^Pť,m˲Ya'+e8~?`qt`,Eu#/҆,Q%XhU'T[X%X XYkOɋƿRw((XnoB,z E2MoE+`1,|^&X,>e)(yrVP8d0!X+Yې+X G,Z`QnK`!Xf7 +^ L| 'XD'I`.3,X"X`Y-U,P}-D^L6b1tB ;$y,Nw^,[1LOwڪW%l}i[ei⥑3;s+Гc \AS3>XqJб>= XyxOq<弄6ZC'N?[WڊpN/t5-XӰU눻%K̭~M`W} u"U꿹XvYK E(_ 'ئMRHRuB,%Vuh.$*8klgbSo=_dP#j/Li0 BO@M~zgwz^S#?6Wl,%40Nd]6`?Aq"Xx:6~K, V%7Xn_\J@h*lo}yH"+j4%X<+PU>K^ߞ{sn>1S`e!PC3U>5M+c ^+DH\vU`նwsh,Mzy}!c- 4lLxt'1s$`vh jәH\m Eaނfdn ,`b-F}gJEE4ރEEQׅz`ocQ!wXPck9e[)RzdqL>J]E+V>|vrs}{,Q{߻X^@XAHhMM΅96SAbg!MY}c<2uax"S4X`tqQ@O z T-VOҐ`Q,"Up,eogY|1C`q(?X$ۿ?ǂƖʠ4I`!E)xY2R?ElH}F WT"!AHJ=;X=,zAGDEԩP14D-"`AfN>,wEZPRS &`nj=4GFLGM4,Чԓ`Q,.,`K&{GBe"A`* orEٷf`(O5{,ܥ $RH%pB>,X*/ bkb >"XPfJ"?}tYe^.X|{Oj,./߽ohJɡWmfc1)f+qh.9RHx.X`K̓ŔXZ8pc[Wc`M¾X4.&fUSӒiD֩&`4?* M ,& ebyr- UN岷f"]*.tx`ߤbP 5[ +9bEsعs Ӣ:`T=0،̝b v&~_>H`q,؃)z" HŭJ zw^,VRZ)E ]=D|gB=r7јuh) fT25V̀E x0C u@' ]ZK70NE>\x_"Uc]9]UT;:1>;u5rz"JT$)R$X‡HXڒ/ u}AB×[# KVu4Iz1x,`l a$L`[ӷH:TCXlłEp,zD`1ʼ@́nf UcQdz?XX?.o,`) jQu'p,vWD:Նzu3i3"\tBz-HyE`ty8OH>P#yIIx` lGFYس75WisJr,-$~,S*}-^m;XDd->|,fb,y,ҝ,`X|őjM7ś b r,gXBp,d,ش:X
]o,R:5"Ek gW%9XEp͹ @ӟ,^Xܦ6OU! Sef=v{Wbo^ X!7;Ypy;zcⶈNBo#:`ytX+M8 U XܰC;c~, n,2XN,hyz"[pˁšjW@ IDATMbwo,rP+a,X`3bmXg+OyapCBLM9s` tbT?<x/5ž,vPĞiviİnjmg+ , YCB8!& eAN_,obZrQ5znɶiA5OE_n-szMԐ WmS%H<ɂcPeכ}`6O5w]J2P;%I\fXXIR`qLBb?6T |+ %,Hy `Q&lxPS5 > $X|yC!jX64灪6Ѧ a,t2l4` fCǂ;!pW ,#O !CPqW1X5>|RnLFֵfnSf`b܀[,7K2: Cܼ%XTE^f8RJݾ =`AHXP8'X9ENu\C\~.eZ7=Hy,L`A.Ň$5ۮRE) (J="RVgh,o/5|Iq]Kcg ?,8D%`r}`G,fsiQ$8 "j5CCC5E$_B0ĕ.|@"d.rƅ&g<Ԫ:{aF׈9q_kGEv” >`G>XX5`a }[Eݸoc*V}`ak`aa~[enM6[LVXyWUb*bƄS6z =ޮuɅ5 ,U,^#B}N`?GET6/.+XJ~X\}X2,] .Kypu~ 25`nFEJ?=mcW_{.Lfl_F -Xeklm\…]$&3 3CV~A<հ'5oyFˊ2Ӣfj Yi,t]4<{kwl_+D6Xwoß]v{G+װoAd6vu#bbz?k`9o o:XmqE J+bF gT'rid:,1~Js\cTͺ"=?:88E-{~3h`1.>>a@js`UԅTx=!/8O5"&LP썞 }FDb1XŅV >.V{ZyG0ꑽYb='8X I(?֜擆kĚZ4 9&xmzocߢ,BB u`Jn_\XR1X`q8C  A(nM qUCXp =eOj\dj,0+\aPEzC74QPWTuB8V!BBW80ƒ43XY8X )[0?N_U\6B8}f`k4XCۯ ,PXjT==%XLoJK$`mK$X@(tYTW蕡bZBH@NTNS\} knx͵ʱ){ X$g*x@Bv`r(W7gGjZNKz$ \uo6bdo^83 XEB`1 ^L))@`Aq 0x.,~ ǧR,XPɠbq>dAdI@}ӲRh`"Yz_&Xޕjʨ ,6%מL`Q@ Bn?jDzs+(ˋ\\84c߅}ۓ ũfKYMV8^]<;0/oBX%7Tbg/ ^,P`dq{u#8b`Y7l0@ 23m0guҰO hbId'; d`^X뾻("E]R&X`QZ!`9RS TyU@n3 s V& JFOm7M{Ea=ӲVe{X_rVa/c`P.ԋu,,xoEɵ彇g 7FYida:m ?MPMފnfw ztPU,`nϏgP,dw%:Xt5U"= "YZt(E БOܔT HVjǛC *8/=sX=bA0ȳ`+7]Ӥ8+́!,!f\΍S/HDÍ ]}7>{),EHS( AT2T T,4P[E-Snv:mY0B1y=dQ:4Ԅ` [`GF[>c+,v\4kNn΋(u*w4QP,,s`<, j`(3붟@)6gWB ,V/ HqpJLW,.B,4 ( ୆X1E]`1nN,&&,nl0,\QW!ʵ'(X&XW`2˕'!cL,BpAq`C>gC%k{*TkpbƜz"nb.Btx0,~Mt`v#TNAEh[,  gݖŮd#XܠPnN9q (, nێ= , . z"\`J   ~k]J; }+۱;CAq&dxy^Kv_$P k(if\,a`&8TX@~גℊQ_^da!Oŷ0B XPG 9@66]uE]σbK (xWpT(X)R+-`."GdX`OY?X`.K &+2;aL"o%<ݬYo+;c03>jzZ?=?k0X۽I"ͦ"V.+(N\xgh[(?X0 P,":C *Mb+IJAwX`mCIE6 ,j!'X4м+5m_>L-`1(&Q|FAqd yAm!Xqkcu:?VwXSy䥢BI^ +W,PfߚfHEx2BT`kB,>osX/`7VTGd4l 6ҭi=5r9Rh)Pc~M8Q ^d4?KidU Yf>\aX.,ً,:b@p?Du~a^X,8L\5J&G;7.˱G1F. *nce-Xt+aΐN,-6lA<%|d׊èx%#[= -@C"=î/׷W׬(ԗ\]^{7^r6U *oogC,Xf!6/MVvȚ^o5Ii팀ͳE-9^{lk88HE!>2k 'YJ,~LEv;%a,,w{18]0* 5{Xrj׳\Yƣl0]D*8y$ZB,_'쉭'ZC(ID]"VVj}blXtFs.X>nqYWaonTB,.`vb%m,1q&b77sVY|TI:wwLM`El1E,&OlujцN4kQYlTm)?P,DbߌZd'C>3CԀ֫tb;~*Xh~DX~"МZ-nXeBĂD /nzq&fFW#Ȩ}|>X>FzZĖK&\^qükT͂_pF%Ab1t;W;ؔ,p牅ӊY4D)ۤq5%ĢM<+>*3RgXlF,3,#sBV+x[$Ej Uif6l"ӑ,o>?䃘$nul^UdWUb g.u ؜kQ E8X8X|8wω9sum]o;89ѭ$cz3|a*Z`Oッu ,JwML#/by=R.3+bbYp\b3>S|UգnrnEm[c9e女 xn 1=oX,L*_W%o2Jd!_fŦo2o-q9EZ$'C5L+o4&F7[7ZqieKnw(N5& dHHkҫV}b:bM,|B,d3p?4!QV3uN+#[ՊFEYXd;-苗Y$)xCF!̎08Gbۢ d])ba "zY"S+T  N穵EX<7yb7[.@bȢW!, ;)K9*fqAS9\wC _,̰lsb.ЧՆ"QaYhgWsR1~ GE-+abQ^)_,xX=XJOɕO33 bQb E:pD3X,,JeLbtУrX8r v,~tP;AǓtXffP׫ţǫśH,@,@BEv}B8i-^~IآZJ1U͇=*x Yovix\F@bbJ.,۽u{JT5pF   bb ^)JoX`bo6ގboW$ b-c/2uo/  P~`b!   bXpo(_b\#-Wbn{@,X|x,ڍś4`AcAc44`AcAc44`AcAc44`AcAc44`AcAc44`AcAc44`AcAc44`AcAc/WC?T4/c?`eB\Ac UcQ&U(ſɢ ?/d7,hl冗,h,aj,4`AcAc44`AcAc44`AcAc44`AcAc44`AcAc44`AcAc꧇ IDAT44`AcActaScOn7_υWtt/D{ Ƃu5, y2!Rwv/ܧ{;`n7{'d/Ls'?00X-05/  Զ絋'l7X|mi_HTo:u  ˂l e2fzazz@zMv_-nuPd7&-WcdbTӹdWd!.H)u7BHkO~ynuwsrdz#WGCT7]xgܖ3ik3>.%˥Qt?];6XL6:IqAqbu3"q8j/Uu:t620X|v]Sm"VS|ɇyE33'Xt3`ԋ };X f}>?_   EW+V7Rf[ޝ_}up)P_-ٴQmqk} ^,w.TVTKY'ś#ZYd,>]Ac]+'{STQkf$!`+!sA>5$C؋?䷟F|٦WOTU];D(0szqbou tI^#ގW,h,h,. Fd۞Eɜ(JR{yc rrOCmޙ [#pQdV7Vs]59[xVC'h+1*~[Xfև[lZwdv(b;d(×!r'LƸ=s8=;>K鶜♕1ÌXEݻ8 z4ݍ K8XOmT9,][;s yqXVֵ:'S=2 ,h,h,NNgm/'sk[]6SKg3[|8X?{FoycB*;(? ngWgO: ǫtV t0nqU"jz\O/}6ꙍH5Y="7.!?`VMԓѽ1(O =ovݜY3`ceN?3PT1y~)tkj?\~2(z{\,6gpWI=<4졷z7ן7|h/>k%(c`KEdC:c} 1}?a_ײ}¯&ya51sq_=.,zvd;8R$/o>+^~]$ 44s5rw&XlTQ`JTIԥPjkq1/ 1t9"]Yi_4  QuEڟ~1b{k(1$XL!8!EZJ9z:͟nYmgѪ2aHbe ~ ;CD#UPF_U'o}<"ϣsgs6:bǸ,ήwF@/b&'V`;  s6|)X,P/Tyt:glc5]Of7*PZIzq6':DzSz`up,w\ʵmIֻϗGyt{`mupwz|`X\,nf`LR? Ozpŋ"fU\r\67~r*Tu> ,:w/XxϣsimE_,cq_1ukn>]w,4 Ů:iM_ ),[0X,dWֻWGy]}ȏv~z._b,P6*u F·_uV+ֻ+(Xh,4ͬX:Ewm>0^<>Ce'u¶]Kř3W_cQ: o8.> S6ZAq<{%|.]_eMτ 1_ b/y5n&9r&`Q ]鍫xكƢ39w]y6l|o,4 Ez;i2QZOC:{1X j7ilav-Nc>a,<,x^y; ,>忔8!wW,*k*X4|o6ô7d=G`pHn:yv/oq?V{?1s땷G\{OJrO#>Þ̫ӋUBJH^~4wSb`=b~679DdLn:>w  %b]EX_rX'slE~7nϴ:f+'t&è`ޓ4:$ q:<&O4';ڧt>u`Q:5h59q# >'9;i%|K3>?Hoz>ĉsK_v[Mq]r4o|}Dǡ{'7O_y`^%?~ST]7n7Qv Cmt `X\,i6ί4}+X VދmictM G/wwo7ft0fxD뾳]:i8}f2-$Y몸wp鿚8}Oݷ^P3XדdGf[`2ߺ= =ţ Ř+]1|Kh2FC 3'X<luP,'Ylvwis4X Cvλ墛>Nf3<$v`\zo6f{}9:?~(ab}윦bYK~ڭX,411zWfYlfiZLH#WWڟb]`:+}x{%6{FOj<\Q`f+N5)/Tu+3bxz'09ẍWvح8J`&u~ 'i,.~{gvݜ_i  Ř|z΋`׵bzxvd 9_:;&/O.`5ijat om^濲{mz= 2Y\L_]h~Lb ~e`q t xbR8MW\^^N% wyH x5٧/)fV9~EA,K"]DWyb,i۪ %Yy^,ƙ ^]Kd~k3%Xh,4׵N< Wi\:I(?d`13_0XE]:UJ*6D`Qjν)gͮCo,Q"`Aw~fWVVi4o,E1`1z_ͽrH% 5]Bc>Z Y.:Ru`B,>zb?[\cP0e2bdo<8,67x<^JZ|Y%~p5yQT`c(Xo.K۫`Z.Yqm;ԙ(Ȁ%i1+554P7bhigU.~Q,*/LyKS<\{{It9/8X=j ] v u4`Az6FϽ;r& `ndt I X8D`\ rGJ b[ , K _y4` X2둬dq-U6z,u4`1wEZI.F|1ˇx<,G^-l}-Y5XXo vr;,qXA4PNd pxl"E@w:n$ku'Jc,`O_=2Ci<0Sz䱀z,c!IM5\KEɁ♕9}_4^?D, %0g ~[<ǕÞާ,l+ޗy3dfn5n@&)ݕz'>~j7:OM靰9zX4IQӆl׉^}ԝZ}ÿJj0؅ =P`ҤmR:u/0k| 49[ %#ժYN&{rŢ9`>@->,c Ia2.øHW1X0bXFr  u<`;b_>ljf%I ,sSXgn Vk7KϚ.h3sJ7.'݂|'a&zh2 Ok:c[_(qد;g`t?]⃎B;,'6i dK6e`!TWƲ'dxaW3! $a/JM=XwѴ34YD<@z,$5Úe_4i ^ݎ9IS "V8!Ǣ[3C XXY(X[4ElR) Xc]_KyƼ3#TCj/WAwW߫NЁE qEN{N{c<NG1lٕ SO~N$BʠS3ͼE;.|xXP(,08 ,m<' ~ OZǙ҃ V<ǂEb;rI/B` nz X=wBHkZrjU/ v#uX,PfSf+HXK%؉Iw)"~胦IRE;* G"lqܟĝ!$ ;YpP E8~Q&N9?‚0(# li/\Y(,_5OSJ&inhoqF ,qG[ liq`!ɞN9`aMLՉCZ,RVĻcALJZyh=\-2؞`ZdƨA814"yef ,I_i-I"d%҃)y~oF&f@0'RPҭ&@[K Ѳ5K ., )|KJ`QH1Go#>Zj !gUZưe)MC.d@F4oKB~* v{P ,Ƃd4;ZmBZcBtSC xs6YCޜs2+`ZѴ%0.ED~^E]9C,q<` Xd5z[xhJ RV*,`3h3+S7SO(c<ӓgcZ\ z'R&,jcO=c-+eC>]5mr %<UYGz犂RM:|nyB9˫[Nv .n=X=SRnuL`aq |`XHn`4xSwc{E0CiDrqRP?@] Cl(\Az*u;.SG5?jr-T(zXxc P,+P?,c  TX\> 8΄0 Pa?6 ړ;oksЂ\xJɸϳ3c)`Q \a5WopDI&*W8o/q@$p\Üh\l |Q?  @*,:$or^òTr_+TSYފ ۼP&/ cK%O^&Xh![W: _h'<]II PntN:KiG, X W~0X=bhp<`]LeK{LTq?ܬior tɦjsMW~.Xib;R:FP?@=_KN( [ȅB!X XP X2⾬n>*I $̊]Aޮ5%5<X $.OׂD?K1+&3\𿍊v.`1;FH@z,P,XVLӺT{`q/TsK},79 BsxҢv6&ܣv>XL3r,8o鴉f? ;,P=`w,P?,c }Ƿ!D'qF[ltZ v(b>q}[&,kҎtJDYWJpa-( q~b E"Y~$X=(SHՐv o `­f|2D,9;T `e㔯AN^RԪfl[(Eo[F@@z,P5ĊXA{#5;ߞ7&R8VO7$cF"[=rh|fx,Q9@O[y,N0p\yj}E9G,A2yK9ŢXb׺ӿħ[pؓ$Ͻ `1\"Ef1 fP,@/bAͻn^ڇXT;:,4X\[#;oZg>bh1AIBٺ=HZXT&5X$vXWϗD1U|OBD,XI@Kw 9]+S 2eHLۧ%qa{>I 3}Jà#Nٷ/Ot6Z?k|eW?IxIL݆A^WWOX,Z}5FJ3TF>p xy@ ]uT6-lv7ÕBo蠿>(4Xdx-l|Jip@-cmΉ"6 B(-^ [gGK6Z0~^nf" \,@|5Fo<sEp7&&E:wNe.5͍Qm6Ż_ٹ= D,NQ 3.X bgͶ,f^,@4EQ2"X bgj0b"}HNUk'{C '<ĢZ|ỤjOBW .<BZ=9VP</X bCd@~R,XDc;)Ȋx@7c蓝v|^lhtPu^/X b4dDCdzfe >:w)YDS0bd݊Xgb||3x/tŋ"X Y_vQU&:X,"ʧۢ5.<'0~WJ{P8_ΟJX~/Cz OG z׿Ur[+ʇt&^V6?|?-X ba6$ 7j]b}>ǶRtѥTjsmOk)+Rd"RmZQ~0שpɶ\h%a{Hg+=.?ٛƑGܢC|xs+YSGW;b=JI\0oEW?{gד9btA8 *+ TDSIh|ib{15zӜ'M9&!øf߿屎[\Gn2#5=]Ի[ ET_Q*7emGbcm9iXu݃ަ5|`lW,"ZEDN#Ïg{MD5q[{ד+DhIDެf+X;GDm.gw̾ȣfn`!.c!/DEa[Eu8Xpł+Q i;zUd~ WwoNCX\HD=| `h#ch^:t( ĽCtܹNs.nfC=.(ibX/JK*,+ ,Ra'*-orrwSa & kf#oIͣ>ʚN(_R#Qk<4=gz=` XD4B4'Ӆ~U#.dT[?3􈊃EQSQ$QZ3O1//2wv<1úVzb.xb^R7k9 '=o~-Om˚ "+ (XlRN)Ғ5F,DutIZHк k G"njX5m=|`pW,"*h8DS*Uz\0,bQσ )qi"}*Mџl&G{ʲVq,ګLe8X,%)1䤞 –w }C7{E9dkҖ{Rؖj{ HT,TB1}Mۀ[`W,bQ]a,}sS}*? BǵQ_U?Q5a,+HytXPRـbX/JHŪbŘ5D4/ `~`?`!0 R%"#HT ,$&#'k>Xu4Xpł+Qx>X ,L@Hd&3Ǣ|`ݨ0 @rLi4pM6PO9Pq,b fau|HSݏM@ۃ,P˜5`MzRF x%#Qk5TP{δW[W,bU6:qsOoL,bQσB=se= ;/ xB=X[XbX2]pS=bzMǡ6\Y=b EY`1 u l yIdzvp]7`״{+\@S+pkqxPۃ 2| XĢfu^5~ЏKCVt(A\sA?0I`V)@bX,k i91U9|u=.ʺOf/gbrLUdIĜ)Tɀ]m4t az1周o*WV`״{+\蕶I^W_X:ePk⌠n.s`FI+k\jYպ_hU LuPp%cyE>։HRR&ܓ1>ldɤӜ X,5OTm V²5vX,`Z8a F[ GAE@xZQC,Yl5d+u޲@dn@X,m[ǜ"jC|G־ {mٍ kz=` X5#G"`! @Pf#\hϢqѳ pޯ- .:uDk: X$D6Kuӂ)lbXI+^K H4}v'O6),,<[oPܦpK!x#z8j&Ln z֨85NB(5HTԟ IDAT[V9}gf=` XPmsa +q"2ώڌx) WZm>QsxgZli.s+ ?dR]= mޮYrrbX, ػ۞46r=#(ER@}5&5M6ѾY٦~}즉5i?=30zVa nN:f|{#o_r`1jPs-Y/ÓD"4W5z}B[j^!qo2{f >n Z)cͼuJ}zneϛ775_5/`AcAcaiOV[kQ{pc׭NcʱGnol waZj?77ޠt^GA^jO[a֎YmS]PY>Cd"z  ;.6VমK`AcAcqתߝ !'WЭ$XXXܵ]*PFb ,pOŝ[G{oO_V̘a&S淂.XXX8XXX8XXX8XXX8XXX8XXX8XXX8XXX8XXX8XXX8XXX8XXX8XXX8XXXs?`AcAcpyػܐ J?Qx msv#<=/`AcAc$2qWy.p6X {IƂƢ((ͷBCX/RyvE24MLi5WB51~  /ll~4DB6>b̉lhY xȌ,e5H_;ƂƢӄ7Kŭ2XLHv`D⿫`CnhgjRӨѲY#;o1(X>'RZE#BΒK}%Xx9Ws82x f>`AcAcnR;˒8zcJ1J4/U{Uf'K-?fth$\`AcAcѦ&[ ުȥ}"beE_Oy\Tu.,..ĥ-Xȯ ۺGڶR~XJ;r^)qͦ%7vV%4K񘢩ԾR-u1O]>e`<'2i+z[_>&|KR)w,gX!#&kwa} MsokD^?T*)۩T }g0Q  6";E:;eF=Z@"v0'gՋd[H8`N$e+^mtqs,FM;+:x9KHs{5ͿᤚvV g0#.te$_-iO;hZ),߽n$ٻ*Eks`1h3zQh,*´a-w-U :3túm[3,v٪3Xw-ɚ&hg=g7Ŝ{`u<s ug/šoSi3G &pyۻ"aoon3v3X G,h,h,:eGp?n_E?NN4/-7织RֱUg4mNh T bq*߶_(O}3T/SܛQg$^"pZ`Ҏ e8ˌp5D:Š}DƂƢ͘{P`q #4Yfnz_u٪|0Ejbcg=VFd|ijDO]4*ER&q۲X] طE紊3X /X\T,`F# 44mR"  =ј.:KI)[3,e5ďB}sb"\p{Y g_ƪH7O}֞9)K`Xx2,`F 44m"a 8:E).'c3ף,:,fEǛJb9}_ޙj Wk I;4+<#qoXƲJc8;!d!dF "BP )_3ǝ\m)^zN^H?%!%_p|]˕LQOY),Xбp[^- ֽ+fp,v{H.ćQJ%<[b~8u65{pZ,bmUcv-u׼U¸8JeRB6/V)iV cu<^n+XԪ t,Xx<IMi]{ <^.t@ 1YY'ZpUL5"wSZ3QO"sZ㹝`"G:)k>ĸ^gTqQdMi?wzeӸx@xǀJd* mlt4TǏE䞕 V>DGs{W-X:Jd|;†zƜFJB[U Uk~¸T .#ꇄ]d8zͧiۮ&e'!rSݰUgUuB{ ĒΕzrV,yghͽRQ)-,Xб19vF2k?!}ax2w0ދnwoo-+ XYqwEL)7Xh)PzjNoa,i?3m(+v?؝Sn{TX,. ڬQAբK,"zGy3rp[sV LcAhWlڻSq<|ӳ 69}-j|`/rqV0_<PЫN(:,GV t,X4zFN<3>cI :v-"SW:DcI : ܸKy >#Xбcx=]뛋+  M,Xб :t, pcA,Xб :t, pcA,Xб :t, pcA,Xб :t, pcA,Xб :t, pcA,Xб :t, pcA,Xб :t,N\1콴ǀd`jOp :t,'å2dRyXڥ5urB}"MB\9ҟ-+'gik-D?B?|~(k^B4qÜoU68]WXEYSP)Xбc=|B1CsC;]QAHf=<0LSQKd: 0j w/2|>)o%{rA (r;Mh`: +T5X| cWj?Dx%CJqRHM\->iL},U|#wV t,XxDdb6y,&r`Q8暯,<9ܒܭpN`2E܇x`GdmLۧ4XdDb!*X<ui ,wd/6EyV޸u}d8{]`QY8zUG :t,.%:;/Ӂő,>^(K7΅ ,4=]c# DZȨT w̘}M,Ev4wxiɯc? ]e\cQaU6/e]ټ {tI5AP%Xбcl),KQo&|^+X8'gyp\\ׄj,gO:WbX$sEK"GrXM#BL ,2XtO~+o5X| }Q6Ћ,Ow]ف :$;_zé[mKӳɤqL8u+o&v cYd^z22s?G|oڡNj{qgѨ֞4|5x4z+͉?s{Є,luŐL"#BOgn|ua>|)5vI6mYJJZZdp]!Ãmp<X5DqJ{E0;=CNߛ+T.rvΙ.x!\ɅZsJyn$\=wDWCo }^ _/}V,~xswMM$]S.2fIB$K)#K ( QekEu](PJEs7Skfot?^T j \TbDסu]BM<-ѾJ-`O[G4Xd>$c ktƺ( Fz_<8!#N7)/E=XH69ά%t<<M!xau!Vr˵T&/p0b#Eq~Կ V*&v!H,;ԠTSO )MG[l\A4" `Ϸ)o+7[.`bo1{'~aaXl۷^K=8[܅CJ/LP,]ub=eD2gŪ;h|$J 顅o5W|][f/RT\n2'qdG,@g]ހ)nh8Y_x7[&h2cL<Ϛi֕wpQZ7X2S ,"A  0i!CoevbA% Ȱ`eWuƢ:cQ9ǣyPՅ!\ M©\f7_~ SW&ɮ\v[6 Nqv#g H=U\JD;6& , ԍW.8cWDS'XK# BWmzUij!'G$!G!&Ŀ$-!NVJIsޕ!i aش3.RSmG"a F;ȇ]&` `&?"|="MXIpwy$Ac+!gIHz.]L tR:@OqWX MeLU1z6}c޵j=w1|}~o l|ڧ&XÎ\ʾr@ ?6)5wQ鋴k , /[!_ \m&HQL9?:<G‘[{'di?pG >{zTlM- ^e]LceHAL6IsOrs& ,H}e+ML{[?D8qhVJ4 Fa'z$;IidXի:cQTBK2Zj{7;U/]gV!P]&PxYX" XօgC$]@z+=Qe `1 [$?ZmB"&rNL4pvs >€R7Lq?G z3IfcU7RG}΅iyjC{`IXt"vԀhnn)/T (Ko g]|r*?$PU "ǏRZ4MUpʮ~mT !ӪJWB=8}L` `& ) cfkXyթCi,$_Кв;/F߸9卢IhYPgJq }3fQT)V|^>n^`46}/? ̬= 4J}]ۏ_;|i8XP?` CxL\0`[KJL=I13"/-%hQ\ $KP`FX6:@ҕb0S|XT:c! ,Dl2dXOt6!3`a>)Yp7 gݸ1[ Ҽ5\L1X IJ!'%?5q@BVcX`Y|EEA(WUuW-ew駧:(n_0;oO?/]6j!&rv~+,;JhFZ(I, E-vGh!!Nڄwt@)gSoѯQXAgF R`DwM9HfK(  Nq {ݼq-v콰O4ENvWhPA"Fؒ{qI>B%Tr{ c=hB%bDޜ;CpF ۯI;,Qp5F<8= ȸ l6k"ݹ["Og" :ֿ`qn&isu6ZY ̳vγ|sFg35RfP/,tZV!_t, ,|ƪD~ {-qV7Nǐ_࿁ڴ'omI)ӮX,Rdֵn/&vOX'em-Ϲ/XtK$&ߢ5*X", b2e4Qs]Gy܊GgEEF᳊.|6˨tϟmӕ/q|:yXW߰Svx+9G+>slep E贅,KL,x$cIA|V9NfG+_U Yn.bEd`^6,X s m}TZh =h`8RJX%rF2w(XMxEYxv*=B gTu~8i_P0ϝ?"XL+6OŔ3ه4@W"4}g%hm5 oB}<,f2(mef }uXoYw9X(3WXY]caQB{荆5A~#;7j`eF|ՏLkTsR7Y9b]g68v-C, xắ?Cs~ mX1lNW޿`k8V_N%ILg=C?Vw `:m˒,t<6[e2H,Ձo8EeCQ,TRIa#Z,TY^9!Pҫ4~ ,ۨy&@W(ak2(E];`Qoz;^&E4EieDsPa@)` $ , ̸zNy{nva5Mb0:U1/xeqf:`^VzL 7.7Ѝ_,c7aM,`/~(jaR.Mkb:Z=`o.Q/ܚ@X\p!`ah}Lf ́[i$imӕ/q|:erJ^c$KrOPXyi '%X`aX%X ŶĖj*n/=,;ڛXD%XD cFb MdҔ%TT-}KrC{D]{ ȩ%N_,5Av?!ZAo=NNVxܞCE$9`7- m C+0~u#k{cGx Tm GN`:Z)}_Ѯt:e>4*Eش,KV0L,x/ctz!;Xxe93(9Y-X< ێ"*"X˼o.2?h/:`N2X`gz2ߡ<6w(ޯw=kfd`qZoUOQrPҪS,%d1X+ъP,5 -4 ',0%khNX c2/Cxz{3PKc`T%e^y/x",'VY 6~|E7=A5AS1+,o 컋J`LI$Y ľn`q#Pc,;ܭ{w{/H5u2h7)2b:JMW ڈ)I?5Dˋň^XL[8)dw+q /{1)|`{4 ,22"*"X]7Q T&sX6X%~|j*G-]&b_bUZs[|`]<^?ֳ5x]Ct+&:*kQGE5EF6ŷr ye,Q|52 ,Ɗė)q=6W՜7vǥ/A`˲Z)ƢJLizα&f fO4.+p9XL=Xc&{ "NXbWI뾬,{IŚ˅X$Y:}Y C+Ӓ{ӣz~pnJJgX =Ճޜ{RhqX9޹0EaGI˖ 0"aA&7-E@tWG)AD9REԕrݙI:g`Ex*$Iwҗ|O z: ?hB4.`K+O{<|7*Pռ͆HOm\UZh.WkJ|O8 Gؤ}Ϝ}綎Y=\+$N&d1甩GNw/`QE"17KǥN`&e/X [+ڌzEB|A*5',lrѫu(Xl] xfz _bmńw +<-s.0WUlS?&֡{VUl"6Xmxw8aT^8, ,hqWDkh:/WU:,9❭tZK]LZ{6Z, }En }&<Xx)S[3zzj6_#+K!Ir쩬Y@WІ.2Ez[7Yɧ-)a7bi:ťzd WcB?fhcHH(G`IWE,BT2& -Vp%8X(uXFe,Xd-Fa7M狀EԅGpkm ,)֙w.+l͐Ȏi*̤ɛLNifIZafS1ދd?Is+CNkE!6åN`&ˀV)لxl`Z)>s!9`R=ZCƵp3)$<4kxT,oc.*m,eB#rb~y[-BlXG=Kg xRMUZ4JQym)r@< F|Nć|Wuʰd끹GyL,msdž{o^*Z`IV,V]Ua8Ш, x,(mFP]16655♾'~ѝZkmy M&;}@Ѯm ,XHg>X%~f :d{ [1vIO,Z ; ,}I5L֬9Z`%%`L(k˫rgf]6T%4}w]wILfW~ŷk$2(w;N2J`AZߴ ^6 Ck5{iP#F9Zoj-ԬjBMA-ѿ3ﰮwm-|ZM]B"`AS{ r,@n ׹@1*Q4?&4`M[{l$_DD ?'Cꮢ~'|Rpk8c]L@O,7XN;/^suU+[@;b2E6No]m* ,CP_~DӶiAMƐ2vEaR'PgY?IH|`]B`nwA`9K g!Sfu7˗@s~C6m`?8x2 Cj)xv9+Xha+` 7wwlqٯTxq )M%n KGώL<XxSTbZ|%o>(d9w=rXd~^skC)!:0Weŋj_4wvY3պ GhIA#7cS'}&դ3t, x, :F`QA{6iv6>;7X!ϬXcA,lajQe= ,ESBt``<#ΝLͲNǎғ Xa& `A ,ీ}Tssm#]F)u_GoMx SBt``<AAT2XcAA XcAAA%<X@AAP`<AAT2XcAA XcAAA%<X@AAP`<AAT2XcAsIcDW`Ht xI-rИhDM5m?ȳ sKNY{k ‚*T   ‚*T   ‚*T   ‚*T   ‚*T   ‚*T   ‚*T   ‚*T   ‚*T   ‚*T bherAC),bA p#|CHg64o g, ޒqq`Ff Wl}X|:g 8P_AxTAb$ֆ{[ڔCx[\ńXtp`w?KE| 8$,|2AU,bA8Xnoa@k}~[<2?R?:PȗgC MXPł*Ό.o'짫礦I{'rgW EBxoX8ȫ"AaWJ>o\ NXT.) m8w"~e6;P%,t3Xxē2,2_u-dW:Ayz-EywcZYˍZTC2TM~};L%`ݐ 9z/v6G ai!|y}&3آ Ƕrz%cAXL3gM~ÏcNqCV)܏J#yO8៙%Waa2 v\V92??s1L:^]뇮qflnch݅Z5.%F@=EsQDn/)cM̮o`쪥7^lOʣ Mfͨ5{رv?bD5Da1Pa}V'^U,iu 䭚ޫ"dɶ`Zr[4z scv ҙȮ j#D0PX\},nSaQ{Nn}9굶68-iچx$,n* 7zۺ=LjE)\?˧"!gAxux琠d9˼DCV~EnZXM@Q04ǴjGPDJdzqNZd[߼.c˚w%il)-fxPH6Zu2oJ;v}G1v$aeEtbI:[&]ƕbZn_i?35)-xT16l  0.2@J=ʜ溍,缅nRU47fa!w*~{;LK _-12t\~2,T=`7a.,"!ga/T17L/5a1O NMաx.MHC.H?ΝzxiiEeI >HRt$p.޴R $%aa4<-8 :_7VkūbZZ2)ś9< 3ϧYXg#bųwzWk XOi_xG !r-^bZ͗x1w80v0sd8܋O̖Ef7gC%7&z&R|}&t L`Yl2 ]6c;XR2'jhv+}bXsxI_L@ly0f(K ۊ۪(EQ )y @u_Xm;gjpy#U|JM@M׶g1ZN 0EGrژҾۯGT.ril\V|fkM7",zGX!oJz{7a,,N1_=;ؾ Gaa舞7~EOp;_w+u2թ~*f9 lWK sبX8ntIX`6x\ [ @an ui麼e) o(eA4-9B`h[9_y/=C |,z4qQ+l HqV&5p!~ S2},޺?NMT4)C5}-&Yi?4̋zUÖcYYjbMY̒œ "Vg]EYevU~ lo:6`k !&/ySogY߀_$`c[lJwMRMF`WYHqdb0{78,.V)XQX,]*g`aHcaf3`XEZ]p39Yu΄ݐa.axի67`i?qv.֡K[@GWW6̻~˺rl9gJ*B6?fLO* ,/1.(`湚m$#ә7==G,,j6 pS#R}y^#XlfiMB^REz=墖2M{KyJcXl)5rws)kᘅ s|wXe'l'?rJ"' ߓ8y_E#ENX+RёCfj|>׺VxFU_V!=,\Ewl+UO7=6jqGPl.0^8F7m;1lsMp{yGjHXEJ8he}4:^K)62-j|=&X1$~ߺZ:\҆(d9Hȷ|٣HRȑf -u XbHʸ ,ҩ_*gv0 4`a|0,ZbQvJNNtnctCgPV\^*ѩ$ŭļ hJ =+/&iPt9e*5:gVyhEW1*Xx<<ӫ#duox+d:Swc.BZa#!spE5YAPpϹUC:&K(By魋~qe(E"GҰqw?G0F *Z3 N,n}һ/|n, qoF5a+梆NfYWNHكƭoA,zf;z6кVu  ݐ}:,9_V']w'EjLhϠX*ۆ9C5N&c]"AeL?ד e<9BbEy,P1@$6,\=TWҏX#RQ+) -ҴQC UсŃ֒?YeENC(/bQ;vNqh* ܶk+]H kCV^oj"A-I;NaզF:Y|XPe lOq$X^.`_ dK-O} a}4o47+pwi:DY(+XPT\ԃ`a5q&9 c+LOY4'`/*dvgLIף$)XeQ1n$9S6ң@txV]v}`n`9)Xؤ9, X0~[]3+X?ǜ`bx;5H˄'tpg& tBDX:(M\ze3$I;  ME(>36uT* G, ,n h<.b'|2JEgq b>C va%#Z\T(l O3v%ig ~;hlo!&;&OµYY#Ĺ0,qb\a_4(q޽(m<,&{b@dlnj8Nq`տR F&֕`q)N?zy.|No&-`AcXhIo/5߀EV($.5I;G,ߑ`q3S5`a,6ŠcHwTKa`Ɣ*]oXhr5ܪqLϺfH!6&E^ / 9=,ر 3] ,fFV -ո,'ot~,XСdFNxKljǓdyXU3`Dp'P-{6{ד9LdYYL,XMBmԇFmEh/ƛ&T?ȝ;gvoLh<.3;sv9s7L[.`z-2! <{S՗W͡PTO[rd61mo{ fr-`aQ:\6BkB$}?YX$,@!'o* +W<~MYF_P,h> 5xz_X 8|@6M,ktpP9J{,SxFP[j(d,j`1HYj,Zqkh \`0X`q&txf;P,ݔl7)S1>,f<`1+dҍ9K #7Y݁@Mc!W)zzbːYgm ,vQ$*oX;o){f{Xl ;n`AU.շF"bxR%R驁Eme+,l˸9Ů$He+ƻ%7h#Zm),`dWU$vF^L\S/q1aŰe/X4eʢH*ǀūJEa+xqz/_^]{x ]h۝SZ '{ ,- ,..pŧoW~ 3sEi[K7 {f8|$TbѵBR%@`IX TMEleӕ;V[؜ ~Z>1u9qD"Z=,,|ҿ(5pEydca av_+Ax,g)mwCj5fudTKXMLe{EvJ {`TfpzX{ cnL`BgT9-ꩁŏ_W/]3w,.~Ʋi5Yo$8ʱDFn>rpI?IwY/Wa,sZȸ`1̡uN1%l?,~: ,`O'?`;V,R* rf (  V? `Jx6]ϑ+uXa{TE[yl4ԇ?>d:ӘpCXIg' Ay',vGV.i`û*$_Yxոlߠex,x9?qN;L֩XP=l]5ł6uE0?\Kxo[NLZ=k ll H7[qDXorXDe2Uo_ MN};`Anƞ ,?qvX_m:)@oQΈUR)c$"!@w׌`kT3a~{3vn|yLz#g< ^1EܬzY=, [{VG ,H\!X  AA`{'``Q5=)#Xa]I KpՎ3!Ϙ!w%_ܞA`c~J41{IL3ڮ]鐧F)1.5@.,k?𹾒:Sq}v]Cr.YQ^H `>YFbK08j1A[0TC@zYG%z,9QA,싩rk5N0G}ZyOUkxI8nѣc򇍪\j֤ .LE*:}8t ya6+X -ڵ ,DRl1w=!YLs3={A$DW t,d#E8(c<;\jUL~-b7 yOvBKܜْ> rhw)ۙ YMTe.z([]#V cVXX rw}e~96?Id)PҊ_iB<,b|G_ʤ1"U|_PE:2.xǦGa!ԶAׄ]Ěг0VxܱmFX7_()4; KؽRfS]uB|kl5(vBhaZa~ogFlTA^ x~[s yTr|&G]W:vۣ;rRG?8zc6Ϝeo7q'oDB65mŭ4*|+kgeo'~ީK<ߍ['?^8 5vq<2YQ߭aL'V*^ZnV9!@' <ի$ˣ\Yߤ,k'=|LU1%v d,zg@{q{TD<8O,EA{釟QlBU ,^ L d,{?N||y$)tͻ[#?'N"#:kzSpd,׊c?{|]` uDy=O!,L\{qFX c ?Q-Ve ϏF@ziĖyM46fBg4 , d,{v# ߒW4 T7 d,@ \ d,@ \ d,@ \ d,@ \ d,@ \ d,@ \ d,@ \ d,@ \ d,@ \ d,@ \ d,(bw+CP>Qb$%[`2X0A4ވ'zolGMfGӇՃgCavݭ3\);k)*86xopIPmqK;HSDp`( d,fR"ؕ7nLC)Xd:[ , ,x d,Pg@+a%{!,\huƗUjÌRDՉRgmaaX c6r+aQ8^+ taH43 op6q{/-Z半h:4 d,0IG-k,dϕ@X0Prhw"m:%Q}(m^l5 <0Da2ú|Ľӣ8}8&,=j0w<]YXxODzC[ , ,F9"J'7GX c1RlDlzX w),*ƭG=[)v!,t6(lclK %L\ˬtb#K-eCܧC }aa.9T9I]LuHf,'ٚwѾ }((5Z-ڔjDu}e7aa6Pnt:,_(=AX9vEyt:ڜf*qd3?)=2Ec~_qIj`wJd r+X cafHm%iy/1nرpX&bEGXD\C}wg%4'X0ZE'<"R`a_+c ʘh[UXl}WiSZ}\-faQy#JWv0ygD7l(7pL]eEx`2XZ?co U*,m7-#_|S>>Wys!*z~\;sK]͕0Tj|_ %>L~D  :brsr!i3fdze5/yژ}0ԝpY̖xfUohc@5ؼܒd[,íq䪶>?LwܡPz1vy.u.k9N,՜QXKsSs5G!6`h\ka%,~=s6 ?r"2Eks!Y(OW=vӼaԌ:C% "&ɧ 4z9u9`&6~w"oc FqS}h^zW~DcƌϜ͠&EiY8Eü=#Q?me HKDc'&@.Pr"x ^UTЗDU r\lxƁC{fZkf}̚ @wKM'5G':I}l6015"t%rU6W6ԩ6i%wC%罿[K}6nVi7I2It`!W|G4?ì[?*) ȆsW5"e [3HCL~(p%K^vnc)7<ZudAg~S4ŧ`6B|۳A}N&?4Jݫ\8j>D7hXP޿+?_&d?Nr:(v-wG^xnv0|;1|\3E~_mIe0e CǥXJX`$K*F o}#Vnޟ)3@߀;;1n,Uɋ(Ǟ˪=(ȶՒhib\S [rۢ .>F,}9|քVzjIYGNvgWSڶk>BtKҒIX>* &J..J.&Y~jܮLѺ=m,k$E'7@Tǫ%'zߕE"b4JҞזK> >ٹb  cV@ \9_0\eD'4WSHc EyvVE㧜$>=̞2|l:$/2 9pcBⰯL>o7"^(hj1&hQ?&^|:awcDj#TAoP[ڵeXT%هM5rD"Z`1 ҈T /|5 4/C5HtvX^ {""JWQX}a+]\LhyARn ͓D,DVY$4)2kT};L+>} ;8 %!ܱLh MXOb*L]r%"3zPnYFXW,"uݻǕB}wܹ¦벰p]2lɌh.In<,W].d'LO,We5N"ɰ֡44YS-($.<;qV~2wLK."[u n[ ^dw(*!vc4t` 3şLU uR?OݹhF+ Ɂs|Ÿ{E!u/fWv<ۯX<(Lz?frB0 ,tNQOgoV*m--=eP^ͲυfEM Ȏ/٢#psrITbNx d ±>s_6y;v%d`;0?ׂҼ>Z.Ft5OWe ~5M0ٸ7.OgLX :G[d04|-r rMX{d>B|IA.gĢفX zqp.fB(@1u#>XW,(`Iq댍A ٸX:  CCi)Ed)0iY^bf;τ Mvf=V Quba54莯/Ci-%Ă3#~D4WCˈ W[ 3 _ΪtĖ*H.ԣF$5?x@y#*IgzXؤ,֘b6xkS`q\@5ui`/^fx챈=1XipV{,YOҋ.⠊P{fEOnt14Xxy|p /͜ᡑg]y?`A+Vx +X()+`14cVE=Q=m[af3-WJ+Rjoݑ} %jdm)t{@fn5Xm|q D(ll{Q, c <RTѿ| PP}l""f/ *(O_" IDAT @EI`aPdXd%fho"J>)6o_QPp&XB 4q2apFH,c{,b }x, UKE[r F8:k(PX`xW {Y(TC7OmC"30X],,.*pCf>hs?x(^=!IR qY\ZG5@);r83fd&ȟY T&Xh?$#Xlj2tҸ"z vbt*:G>?@PDED1bV]IW*tFoҟX'e~EVFNCMѬPrGMr+X}rQ-!b~\t~,qE XģI,ק7a~],Ǧx챈=1X&,EhS( X};!X!m^|Ze`3$GcOB æ 0XYe'Btr\"1#fPS,usHm;oTV9FmK5iayXK `Q6SGe1m4\Z?=`V30v\ +롊J= XJ sZBֺHc AwQOކc RQ쮲T?`GA??u]'E|+ g cHD y?BCEVFFvwRQ`3qg\Ħ| ;{lw2j@pOE#2K^[`q(k$:{68Xɗ"k%X=E3e<]FRV`q$"'B 9*Y"I2;™Aol16!vvXź]9`E:d l/f -m }*7F:͘h>I,}.[iVɽ:XoXru!`tU6|nO5h;6WS+MwM?6U4>izM٣kɃ[y KTMhM6J D,|Wzlz[mTcH0r U;XA@-{uhZeڇ`^dx>XA]:ρX?k4 BEVŸ.7I>; 633|-_j\hsf;xGA@=}hLZUr&yP7oR$BKd= Q Xh"zPDWKmTc,}` /Л/ʹ_TVv*>sQ[t,??B*4TdetYU+=:hT(C3>fz$`Uopt%*O_J[&9F`(9N' )-\g($j1)8'bEx`QWBQڢBjNzdv9yN%,?y]%3< {tQwRE9M6Y6AXq#-7P L(Lf8\2y2Eę!^-7ѣ{XҖ^m lT;=OV")_w X8 =7 |+9{`aX|wߵs6k,d"=Qaӑڈyk1Pr0ٸ|v]6h;歀]r1U>C-Sҍ:|s)y˂񈢴[o7#MgfP ֦w 6fmi^7ztC5]۴Jnzij/;q`Ѳ e~G%S7 (X,VdZPd)߶ mj]y`r1²sݺ!.=E߷,͂y[ ʶ|Sp j̝ٞS((skcm9,kJW(X^BBcT=`8Iݹ+Z֔o 1S )}]2Ał M7Euh^?b<۵` $=X(F{ ԑ,eht}:7+~I`&KvȆxIq&s*Ak֝IGҟ"8gI KpvtiBI7/q ]lvVڕDwi=kʨbm*8mxJU#׾[.\2 %n-…ܴvq8>bV\T?U:_mVxc|l׍ޮn:ע2[}Æ}m~åc߭Q)TbGt~ѴF/8XțFc4Za}hU\0F3bAoHLV9! -w,Wzl|Te"Qg׳!Kroۗ?9\[DZnq=9ja"rmk^8:@6nG-~dzo3ztɘkJ"gA[PJSuPQJnFƇj_\,uEڞ_bA.U!nLֺzwnzEސsSig…5E-^r|.| %oXPVjg|QEN,>zJkT+%:m)W]9 *T,8Tf.XģFPwds#A13~rw *j+fru,g=]A^H^rgq#`p̂5+ɉo6{ W=4p7WIT,X<1S;_ '0keUUࡃ *,(t.4`Ał9XPbxT,X *`Ał9XPbxT,X *`Ał9XPbxT,X *`Ał9XPbxT,X *`Ał9XPbxT,X *`Ał9XPbxT,X *`Ał9XPbxT,X *|9ȣkX,XPh ?#m*.!+XPb" Ky_AI8N6Y!0s}`AłS (vOܼ(rR,4?g8N6 xn"WMEguBtqbA)*歋"AxUXjx`Ałä_^u,^f0Ǹc{܆n},Z1d]YƟ,XPp( S}X^XxcpN/o(ʚGd4[)pI+tK`L`4YDE=rT100u≮k754FgB~|mnt!|zEdExg7ݞ*2CQVe4nRdȜNȧ.Ā>Sx{,z؃ *>UL9~ۺ,0WfcjH.824 ƸEzU#X$ʘ?ڦx"Ouu\:r+p}osuzu-)ul!t/tojc.{ G٢\[Of vIEYcG:a:f+`,XPp20My< J8`-Xw#!{h8\1XG{qU`!>g/81RzÚI5 '}2r_ta,B"ǫexB;jgx<&V "xۘJxSۉX-8.RZgIҾ'^^1p-XPbˤf|W2[hM:Dn gz0HK$'$3pNL%ݢJpSb4Rd8PyC'NbROr̤^S'&P/Y^zң^P_1&m y`ɉ_o} gbNr5GvJʒץfzk,vu,Gj<6Ƃ"S}NZ Y6 L k{>Bt LşfOD|gf/D\pX\p _`ѲHk(2懵l=*Xxy\ 3̶·Ŝƈ D6Qy Ifj,/x_>Ƃ"Be|E9YXPC.E]f_4윮 6XP aCW$=RR) 1%_'EZE"vڷ{,oZb1 n1E-x##8;8 Ƃ"RB_Sv* "ߏH_h U^31T[*Y-DvjO,i "&E,;X78R(G'y珿AؕiX3#y`AcAcIbܓ\J?w`Q :1X&<ۑ7"藷7u`qf\A`B evrB:1X4! ZX|K,ϲ@8XXXt6PGK}ji|mB}s8@Jt_XL6EE1E`x8GF}cؕ"'[9{/`AcAcѢ{w0yݤÈo -XS+ %YOV.`ѶHspwo`x8jo ꫳ[;~n?Aqū> (gRJw樿~Lj ""S)"ExN\*ʤgI'v9 mjPFQ C ^pJӨ';~)eI(X< fEbw6z֞ J,U}M6d ꀽ`μ*ŘXg&'`䘅Rx,*_N.\oڴ\WoOr/Mh[$Z,^>3!k]vNF;Yَ Qҿ{Ԙe'|Y@nYI44-ܚe5*Ej얓;QDt;ڨ3<*,86XHQ#俺2EVEvS`ZO/'o.l 9IO  ;y]@nu^?mB3{>-#=IZK"'u"ʂ9+aY2[ ŊHN9X{O$E^y*J'gw̛H2*ҪG`xPyּ~&^*r~VMj:xܐLҍR-ZcRj|P  vGbwx٤=NtNj<_UqYbrSv{ks5ljDVOtyr,Gsj{':,b [g?F,'X8;u=ڎuS6 YUh(Lg}X`AcAcIQӾb:ИTO':o|n7nd?\ W3\Eڷv7-p&y~4 }Ö2VS7,h,h,n ޯо~WY   rTt$w%PpƂ,W9fYf M;_,h,h,&7}מ ݢ3IRd`@E5j ͯ,ȷ̉Ȍ4S"/2i,3JVĤ<`AcAcѪϓC'6Of/&Y&X,Wӂo,1؟pMw-m4]nV7$&d$X2FoA/ڂR,F,J{{vyBZ8ٙϙߜ936X,(bAN%QSs &Jk/L$D" c+`B+"^LX,(bAMWrq#/H[)=o3g"6HF"lu H$R6PvK~t{`avEEo~.3[`QV0B`E,:z}K|/SE}]0aۂ?v=dVs]\9r^r컵[e[[ [mә̮w#ƧAen4CfQ3J'ϴa,tpf!]1xhF\ |/nGV3{N8& H$R&;?1EtĽܩ,\qmUG~lao:R[[)}ܟ^ VxbIX% ]4r]k]D"H7XT5dU/`QED[ IDAT@D 9A(˖`qVP^w2Sb,UWYF \ bʼ,,ܪB# E`" \;s "`ن̒wXbGڛ3Gzo")ֶMʢeZ9'H(sLkS!p-sdY % {(>#n$D XXMΣR`1C:J@(߬XMtȒ`1{K AyI , ?Kה`j/X,s9{P> XPĢKkbES#Q~,QY^@܇Ey;0<Psb`Z7rZjm̒ *8w* Hȅus+*YH$ 3VUCEa`vy>H7%O`xR `iRҕT!i{`q,-?x$[aѓ,E`"JA.ɴM8=+x,RsDًbゴw׆i<(qQnsM6Zo[ٚ\^W,D"M`"dD0bC],-\)=>d~U%oWu@6H{~"dXXΣ6fX$mW`"LJFE,(bS/"ɭ,R>x!X`/̇z˾,a/l6C=54dL!_M6,7$D X$dnŅd ,7)DZ^jA ,nqY|wm.&fQyϚW,^cr+dGX,(bA~ ,11Y,.A,ۇĆ,}=iSw; kJgd;X[C D",3BALJF3sB.Mh^kVK7tB,j7([BbI5EP"/nˆiEU`1ߖŵ11ǭL7Xztѧ.a{vk)TM H$RbJoq<70'%BdaLY,xj{13$RWn^`!+ XPĢCKPSaLB`<7`y X\ ̤ztWO}[:TJ`A"H@ErƑcw U뒻"9[(k~THuf Y2VDeGm0 XPĢCpQgi^{r.؄ rW&혊#DSrmxQ(ju1#)j}=N`A"H2Xx[$~N%q/ .Xļh(?V.(s¬aX,(bA}RLfk?dy\' -TI& XMrń6 IgGr̬?[FE7ҺhW/b3Im3g\+1ޛ-}tM~xᙩ1}D" |u"e ʝq$)?xs:G҆>k{ E 冥  XPĢC u>•1sFyEș B 8,.m={"kLW6=+`)$#)Ít-j评Ptz'MR,H$\9>o/ Xu˛eh]c(3/JEo,}:Ռ&fi0vڠ'XPĂ" M8ZFmRYEdRI?X:Q.XԀXw#hl(LW8OhFylsIc 0@R0 BD!iUJ^4U7f&J֜0;R~ X֬A÷ DY̞;m[!f G$7[,TMYtHpea|jbaŸy2Xy:26X{uy!b3# !gogaѽלrb1wpa3{?5!E&ib%J:_ {(]D7{AYb! ,s!/<XAr!-_!2[բxXk45m~d͜83/5%AQX9b2Xe2|/C,@(L){N++Pπ;Yze œr d,{(bt+X cpB*(`(W2Xus&bO W2X ԝ{D"bt)X cmsz*V՟Ѻ_kJq֖VȪmrYkTUwxÍ̂6UU!J}ZX8lVT g6J:X(gsUw׮KU7ݙد[3^SQ~_V'unU>z|l޵M|~2X T&|OnU(*%R )s_E*SO͢䶻c,8;o; Bbܼ+,f:mӬ?e Ks!JK=u`hZ~̢Hќe?(lC |ڢQ;H@ d,jn7Y,+^J Ob,O)5n5`yLr4E)Z,%Y5Ι;W*JwtydhAO*׍dEItE7ݜ_tӼgzĕDl+EI.߄2o@ p+]8nBSq-:]`Aj w5~\VX_lD(J{8|g>pt+HoYV=!#|d`#Ag_ڋTe}і}Cywc` XZ 6üXنЯ]l#f92ɮ:C@ d,,m̂,2nb!YQ5Hlù'M:daլ.Z[$JZ^32u{zGHw㘹RJLb' vk,YБA 2o@ !0} KrKD+X|D,kd%3 ƞ?Rsvr& 0b%kC,֚DB~2X1̈́zgэ=hS54r"gv\Se1-BȔptGw#.vh1P=wtTVbZr}՚,o 8tN2o@ 9M.}*$+I1BvU5 'ʖXlwg&cIoMX+0 tn;k8Y ♥ŴW,}\f- d,@'z yw#-k"EyޘbQv_ωN5ۮ Ţ3S4eP;Dў;U!қoͶ}-(IY- d,"n &LC:S`LOTҦX ╯ָubvI 3lk{M_Y7ʮ1Y,>]y /~iX cNFimL9XT2XDzj@Y6EbSb _I;DoOV1y=ɨtUvϑNbyV?[-X cߵND,ԃ_,jX?ew!b7bVލHFbhSܣZ8@:|f9e[b==[c]+p@ d,!e H3ш^116hb~q(om'h?@_[x8Scߤu핺 2o@ ڰaBH:ю^wI7bfh:"=.$+:9b3Jɵn].BUAZ-X c@;}3ГXD$JEo}Z`^/F,wd zT,"[#t1w#>3oesW - d,-)#I,X^]=&/Cyr݈ŕoIۡP;u@"Q&ub*zϽ07 2$tqC6(dA(EDA`%YtYED}qED}٬oƍ yZ "k./naڙ9B6X=(G&m! X4gF,jZ``15Y@X#U{Q6h?QM8חmJsccQ( zm@z,PCaRqd(,Mx;ښ7-};߹Euk gXt\3ǩBP XZ}; 1Xdͪ⛱ VШ)wvip;F, {7A W>nnDkFP(=@\v}VWlCb<,}:Z0.{ , CLx,WCX_hsҌ؁!V 3f B^,c Âܟ4Rͪgh ,ROl<ΥWAwXm`s [I~p 8>ZjٟӁ#cU 2g fZ8IXf B^,c JAx/kGT,K=y A9ZnG;B!:ȹ[f z9_x. XU3Spݝċ4Tm};2@cM9@pg[b4XP;2'c[ #o- ec O kx [N>OX:b3\t f4\2^jHM Q2bIEXH3*S ԌBPAoG)-MB_=΃Q` X0C*`D%I]m/M JK?i#W`3j-]٨ *x9-xn[{? ,Y|_s7Ra%n5& S5n{-"4#igz?4,n`#Je1c,@jӯR&=N+d ZW]U72SQ`4b9_ '|˩3N()KxQM9zzdZ6wM_(UZ ]{VN*`(`u i  %Y*R_s֙=+9,$u}TE_ՁaIaS%O X0-f zY #N -@j_z,cT8W,Wu7j홙LX4҇|/f v#"'Ht_]/t+ZQ3X\ǥEUQ=ъJ^Dk噏v6LjVv- ܝO7pLش@ցM i}9 }oef JE"x6;;'}k޿Q(ꍁz,cT* `jz=x>mw+.+&ʝ͠!},rKb/e7;񑠧8˖/ t4rl0z+0\ _̭`wYH5Pbx 2zj #Ż XǢcbTD#>?u=ㆎL].^<:Xj7s 7mBP ks'gu_tю&u 8߾I@z,MEc#n>\<:(uy@Q]gdoXI.%^7zԪ7I.caQ\*>Ѥ}Pe3_Q}%^1̲ PEls=ؔN6!w~Fjo/d1^fk !&,YVrƲnL`BPrJ T0ߪV'`:2;䮲*I(ZI>o-C]=+ƠԧKA0pOQd!'w8߾e@z,fȪ mv,:1xU|?:HF[>yB/|vE`*-?\iէT" [TrzԘ@ȕ'-=VۥF_M`Z kPկ>-zGH  7EYϹj`!Qm ,\gS҈S&ܞ>Z36o3ab8oDO;-z,c#/9 ZZ$IXAh[JPfO\CC ?{kXQo"jb, o$?\j;<۲.@,\T#>]XS,Lc, Bu^ k32C/?~P`>ަ`k&CUq }IV sl|+z0 8}'$K[ X©]r?޳#/2p _T ?Q5"6;4t5kHjpnR^ZՔEfV#zCXfeml 3T6Φ>MVzػן4%:$ ! i˥%  *P **:عCBMvi:!7@_:z7Xz" ]p/Ypvͧx^ rx5z(%uIwP7ocA"'*xެ,?J`ƕJ뻃wEǡحs)ѿY\ȧp5RJV]ix־ f6Q1S.s^9`1㏴Ga#X@fUM-KEWӃև@Xi⻑y̶;p@Э| u3XPo7Xбc6G_QECc|sLJd3X7Dk)o;3*,f%ͫ953ݜTweMvHJT`1(}40l,烅oœКnvLڦEWӥ%DʑiFvT)]wPzۿHkA|5ӻ IDAT,Fv~$X\|k= %bPlGrӶΣձjhw 7b=X8Ywp}<Rj4 "[7 v,׃EytR,Ū.gQ4/j} e"T "݃E`] :$fSK-%?A3XqEև)!6`qٶG)zNνvTxQQt=XmچcÊVv7U.4-rDx&jL;reu v >t,XmMP=֞[h#Xe\ۃŌ7)BNѣʡ1+eäW:x셁\^󇙬yEN5,D!ؓ%$`Q3rVM(=ˬe}1*]MkNmS*H廹F_"/#E Yo,XбpNE55cgLņ^[2ad(~#:XGekvyj_FRPyߜ7u$.mޘ1  B&^gLy(/EΏg'J"suz]m=XXWsțrUVwmE{"{,~-@O +'@fFUY,cks|*YM>wUDrEXNm*e'$˴l+owt)ߡ`$՚Po9XбcpgmHe =مQw|F`.$k֜ņHν -5/Ti w> 2SMTD$e%FpȚ7P`ЕWWQɶ%*"m{]Լn?LINFU<*YMv&` 'aEj{7NTRCbQ=z?.ϗB=uYwKX>gݡь,wukwDEmLO/֖Իv$7Ew{aݙ WnЩ . vzEmuܿw}|:/&iSrRbJ.ԲmMVb]?c{ _̕*ԍ]N~kcA"Fדk/2kgJNYzTɬ=6YsΜÏݵ?z%%nvk;zѵ; 7E0_';_7k(M8~t,X<oD W1F䐟@`AǂC9 yo. t,XsbۗM@`AǂŃe{6X.V_ 쟬p!^ AF,@‹AU9f!֠ZbwH  Lb2Kov+QW!iIш"JhWE;YbáG2XxX!ڵ6[ѥ??ͫ{w%gKT7MgCQMGUn3ۓ4;l^ʍqdigZYqW#=PSՓUeՑp>\5+?勂4b*Qg?XTeUҢP4/= U2G_hfz~$Bs+qZN/Gb1[1Upb2B*M{ؐc"!p6.0UaFLHN%׺#Cn1H iO,'RBӲX\a!+˭Z;ЎҚgj0Jbx%Xb1.? ^x1b s Y4 <^,@ё=Nu*SKJ 9bSeѨ11v|dA`>a%qӐA?SAJ%fz{?\tONsxjW=b%XL9%m} iDkxVܤޛlwȪdVyK07hC,5mtC/O d,2:ٹE[&kzoE[,xhDCpo>9&+$aBdzi J,wYu?N*_(?ĢRhBT% aU,XB٩"Q "07[1(D&|b1@"s:WY'92yJ謫͋d6łUlƝ,%k ( s<&*~.2XG(Z^,Fwb1}1U2AKr/o##YXi]=y2Ғ1Fbױi^_2>LhFqj15NbG9FP%9RŹ5'GcjMt=9ybqNuyjlb@bqO&A'{C/O d,0z7ׯD3N39n= 7FbqD KXQxRx[<Ă39&Z {3Zhs hbqoSL1=B/b^"X cሲv;Yx_bMt x",k X21Đjkܛ |'kR7oܘZ܄]U)yQ\x%s|_}㱅uGJC9^Źkp'@ H.WhI9W*bQ#ho Sdnb1n1eiB,f;۱0U IzuK);ֱ0b Bü2%y5CmU$īy:\<ãP8PaGSBg= vnQ!d~t5W_/IED!N,֏dm2?͂\rS`b2̧\Jz>.kw=Ml{Ji-R\J!R H_@䍍oDs$G?ș^+ϓݙ5)2Y_&*3jP9sԞpkdp.%fer5FX \dMb=OVgn_P!23/&ZU**AsGs[ =IXMkOjWͣof)*-rޘ^ws3ս*uj'%%?*3H(l|XXXĆ/6WwG[:tF"Rד-[ ?ٵGfc9MRޅ/)_is^i|K/tӶ'Y{yyok>ue Q,H,H,bg@;2G$5XtO>al'CbqvW[~R2X,wk]xHd/$%\,2WE_,nHrb  tyQFa/b1,˩|byE븸bQUA~&2}"w & 0E= ?`n*^$c ƁnN+$!(=֗hN~刅7Qv_7OX/XXXXܳ:23k Y$VkQYQCX"yf8(x% V$$jG/Fx_,H,H, *L֭eUPvyjeM{j#or\SؑЪE C+%?@bAbAb1juQX:ҭ[=iQgRX,.ϿY,^kBn'%zgk N 0ǪØxa8q[Tabb?Iz~xXk*{n9Y, cY5oY; XXXF7#[dbժ&c גTXl΋c,nB`0&yr   ]Pc*md2⃦XHzA,Lbq(.W`7 ūv{ XXXмϲuX!eZ4A<YRph4I0h.;kFZ,,[_h XXX 6lBuoˉQE,xbeI{bJkzWNsX*˕H/w & x\d{,Lus+撥&G^$ӲmR͹bh4fSN%xX|C"@\bAbAbBd8l0E]Yw`[0ۼku9ۺ/upb*BKip=X;2""k]4 w & ;lZU}>Ȃ lf gUM4~ňWU[{)wNk|Bg i{\)j] bZ~:̸Q,Lf|MI,H,H,S&򘱚lYH^|Ŋ\n E>_j5 95w>N !~M"QW6bbAbAbwZo/2в_}NA[p #X}5 n Eϕ{rml wEX}Wvu.]}8Ec^ukc S֠X߯u!ӏ̰| d_9]YR%FTe4a[Yn6@|bAbAbКڃv[;~tqwll\,tg].Uzp   [łĂbAbAbpk XXXZ,H,H,n-$$  ۅ~4UkĂĂ1L&kϭF,H,H,"ITO6/TCpq gm(d>x?0 Ne$/2~x0}ç$^|ίѝ,[fabAbAbqLF o\E|: SѿXx}ᝤ%$$e9(#d)354bw99n3w 3|Hvs;L,H,H,ˢlM&[T2*-xFQb'$$ L|t6E2ӮXY^}Z&Z,(1۸kk ~Fxfn8ii^;!"]fZ*P{E"{ҦSWk^"˅–aBAn*|tGDsmicЇ8b8hb1SRE_͑Ri?oRR g_?cY83̞p߬}8/9_+dXd*ջ3ʭ)#ktүk,6Zމ7MsF.C"H$++9Al3Wс$}hZ@Ӌ7͇i,zg߇n`jNdf/2(-#e];V;[/h] IDATO/Ro7fb޻\,z`A X(1<ؔDhOQԾ!eVR)1\8ip#_bё-T`;+ϭ݀W&$D"\ҋL0.C̸%mԲa#N6Ϣ* ?'>|eI`ApC7: Pyˈa)n440[#cO~ZUSTi<,!D"^Gwsյ"֒+o;hwM2?-L_3:=u} 6̍`mjO&(hAiIIz-e[i3X4jHN`; lޕ#svTǘA_ XPB/. `mc6Ig,c XX=|?RȺ@Q5EM sYX'aol,G* H$=6Үǁ85|I N? sH(@nh6aPbf0` IZk!"AʏNeQݭN%|yw@ / TE66yYەX6ܠU? u/(U57< nomAᠺ.8F3bh"ņs~! "D"^Gwq)bkܩϹEߨx_jު == g9 F$ePr %u`.|J}b':x$v;p*E``A XtL{+fEyth< g;0'B|dI"`N7mɷ8ø72^,bH$<BOEOߩaڗ'woϦOdJS \>IԜBI&2^,wdw FyK?TEG/&UPXx>X }C%;Ŕ@5{ƞU_N"HW\&Ş FQ+N? K>X1/PŅ6P\ߍ29:afM,ƱasPb#ԿLMTc-⼣cŸ @CRt`0X btMht*:ipD"U! _ 'H(_d_JS"JF,ԜB OT+Xl{M[}Tg|2{Z H$ =$Xh|1Z:;bhm}9U6$z1>l8ePs`47) [0ݺGR L=j]U,Io@YX`΍&xloC |4`&"iiqB X"  H$*=8)rX1Tg ? =p,dI _Wr %uJWXVŽߣ᭘4Jd*% Ft^ ,bA Er-%FVME#JøW6:V:2(-)C 9,hXWX8~Mߐ XPBq \-$(p~XkZFgxBYZ, y|l7"bKW#vB&ZEP Ƚ36(`Ѱa}3Z&ߌ ,H$G{t7W]Z5z5ԃH_]dsd>:䮼]enhۮѦ s32(-wvf$#+o.E&2vd-}ԌʹP%*TP{'WH;g::> m<݄mB*^?DN@q֟BfkXh{6{K\MvA#c,S&D"^Gwqlr ;v5fNN?%}TpS 0/9^:0H/E5EJZh\.;CC%5ubFOF>;jPf = U,bѮ3>Î[,d?rs9v,x.Xh'3bl <B:gf_4r9X2ի6ICACl9O9'7fﺺ!k3k S-{ciߚwc{Xmi7ttJѳ JH9M Ch6-V㟼i=;>Xu $$8qr(qh=-==O^TvWdk^*TuW\qTa\!4ŻE$4mjqwOŜOY}N8()X4e?/}Xl: RV.|C8rTv}Y.G)Osjt~p6 ho~fv2% M_Ӵ)Mӌ4*\B4mQ]Jԧ_V4-]IcQ[Bf4m$4BMbHZXb4c]J-odp8r驰C,6XXXxGO6B,b&bey M̹;Y8l"Nz#?$6onO NMe2C3zby`> Ē 'a)8^}=,[yoQſ)"M,H,H,h ŸlSKUf&BӪjG'9^[޷5ݫNn]q վ4ԫ~IR/kuvj5jܼDdm!U ot$,BzsGNJpmu5q=bpb`B&C!! .b^ SGb!Et1&tK0HS?/} (%Wn[{Kisuw-`SU곲IypF̉-} M]\bq)^-ڗ1seӍ.TUA0+oP'ĂĂCIXz~~zYm/3C ?2kNyl5XjȚ쾾ZkⱔXI\Vf-Wivk2')7 b%#%Cˋũr}|k1fYo.D+8kdJ/T-BFo=Z(wܕCVMS,n9nbP6 ;wÓ|c_(Nxj ޛ]ǕXTJ[o[GĂĂ)NzY.Vuɣ؎̄C,X~y:alvD;]6#Wو5bץ|3^hδJyg%jkKfŽ≅sw1m-K+Y2X:q4ݹvc̽{ᖪw,rj^^ڰrFDŽkP(,a]onbEovCK+ `ni<,-kBr~H5q ^;^ېCq0jm`q< /pEx/>W ,c $:A؞ ,[_jG}e'%s,. Ht laPgO"ᧀ*V`*MX켐1ԩ:!"oM{r, &O",6U/Tb BBXC-ZdH@/0t,d \j۳V):oǑrr+]`k@͈h aTqA M㶠 ,c FiDS:>)'+|#"O}(G` A(A'b^4`D`7"d-wfs[܄fu 2 ?O/uX gC@PE FLzR>ۂlgGbj awi3Vi%.@$1ݱ ԴfwvXu,A1f6~FK$,n< ,KEqz,c^O"B g_,b`h,#B#\H*AG Jt%d`>E` 1 ,,s@?meMxē;~`(dV`a/#PUC(1]6 ͚ɰq#p$/ "k{_W,;JtˈhiDU-ޒ8<̀-(=TgW;.S@"A4`X襝Dg1'Ydn źӵn?h%X/E cK?X+hu]OS *F YS_{!^uu5a51BƊa35kCXx"0"dܔ<($( ^ }MVP ? XǢD5`F 1ϙ`FglZDwm쭟B`awKUm _ޜͫĿ,i O)χ9!"-= C,P(T=Ǣžt_pE 5CXv^r1(} Ӷa`A;/FDls [u.UL?" XǢSTr ET`5BEs9Q#Ax,u6<ٓE!?XZ=طl+涯GɪqZ!5lB;r]u ,hWײA@P 7nKw ˅WAXid V|U<0n,ȅFD![\\`h b<P,c jJE:A8y7Ӏ3J1 \p(0{NYEA?X쪲Ktrkͬit`AU43;VGh,VT%p}ż(dao)x`,Rd6=] pw3K.XXEփ,4z;"$'ϵ93QE@K !>f3Ѭ}b99XL]< 0 ,J0/=X?t Vw3% XIwdEvb$8ѝdLS˯x`,_9N|? ݤ: g,Ǣ8B(,>w b,ipmXMG/@)5B{'y^3Tl7@.H{*n6_l` Xl=lm2@w+Ɨ˯~`gv ;Xԉܫ(_LgcR ԉ_EL42݃@/Y3 uVdq y,=o6hB2wBo޼fϿ~?,v{!~^[2au}!֛cN7);E~]A@PE0Q^F^hiUl-u6EMvm@/IxUDdtoDD˴XbL#U֭diۤ7k"RTB X=. BZ@glRB]m<@f jkyd¨H)&i ^8Kz~,si28ts-rdq ^p2p ȹ`x'r:&¦X T:F)3+gJdM>u,c1*1B'f7  &HJ{9}X#HNJ _?N3fa>}fX}>dѾhxpon y8킅7[Dz~IO@' 1GY3`lyLyuKӦ5΍mu̚ҟ{>jN$3 _vnme}p=^X>ՠ`[;,XXXtg2p?Ywq[ ')eP5Qۮ%&?X=(kEv x5%S1Xy`YWB5~ʥJ dGh~a:~{&'/$w\0/|jYog,W\WSK44e%*Ƞs 6W4^H'?:5XXX\)en5Di,|m頱?h`AcAcqauu?`kƂ┺G2b:\;   p   p   p   p   p   p   p   p   p   p   p   p   p  B#=1f A'+DgWEj ӂqƐ{z;`>/S~8}[7ޮި7:b9vdӂ1E]l'm\\aFdTn# aD^R)V _D'X8,^vٛo`AcAc,)3 %NRzj)&,5  &ߜnpoh[jM{x-a-pt[,E ƂƢIUdYܚ}KFx0b˵M{`V(L2ޝ)ߚO3 Ì=Q?ڎ%3պ1f;K:Ut|*oU/_IU3Kс 3 ӓLo{aM]H\ڎRlh|0B I9P յ>sRQ,V™W݋9g 㓵Zhu[[dք,h,h,tkzbѾ,U%2R[PǰM`_L8n_.}$I'<_f^V{wHM9Nd"ֆ͗tYWw^+8дΣ ZaȂȡѬ}Qza.s ny؝SEh̞ +䨭Ww;anm,y ]k}YO-  fG";%.tV*}Z"~,3t_m.XO;2LC̣<_tѽoE!)s3++=C1۴^R)~ke]þ7ux}Vƞf6bX`! 쩷mtb,ͤw+ŭC=RY}Y^Ik]@8 }tJis /Ha0%܆`AcAcΚHvbVm~5*]c֑|d[OI3uhSE5U~FdI}ܔ뫜d %غ(R 0'GIMG}ݵ$RaLUsvh[`aL6N wEN:J8 44/ZU2+;qhm؇S2jQ{>X8<;M ںy^DZ4_ƏQ_Ų{Źȱay⓻/.v4gGI\2"Msyʝ^N֭$`4j_;שmoE+܌[1x=oȃ"e?nڛH=o,{W4u"$Q~2l}߰fKE c.&0tlX^x}"ϵK,>7>ɻ Ҿxin5Ŝ#Xm:7G-XXX~e]Sd|}"u#g yv8Ee%BC譝%RکbRdfW %uagqB UWE /XQư_?#.,h,h,NŬ Z_FA7A C"J% ԿD nƾ CO`aK %V3^=s:s mD4m<;X4ͭg~h,h,N0v"u`1n!^K4(6 k_{r$GS*m,K*{6?Rc 8'7 4 ,tz-^]G-nt+smna{,R-?b)P~[eE?K22Nh ua[Kf~,=hZ26s܄WdhP?@g)N[BRM]X0*RZ' ~㪢G? Al2 H>ʿmJh0]p% Mרz,cbbFSf Rbœ&, +,@Z2jEN_ZHF>oHYb< 6F6 Tj|W᩶_gda:9v),c GkTkWN Ý ,ak7cVaѬO$K:0j:;W'Vgt}*,Fh2ƺdLLwA%,0 Ȃ BZMY[B2_{.[TFVG@z,(~K^g Sd>F~a%|Dc~@(k*-aݧMN}a103Q򌕷Y.8E ÛJf'+o# gGmL@ *zwtkk+oE I:vH+$#@J>SJc6Dn@e>MT(j(?B(h|kHCX`m!x2V#ʮaL 5}.7+,4%8aA[@Ca AjywHYgO5ė {ZAqRaDq6b XMk(`o\,D JL\wY.aj8.F紵jjF)SleHABxaH)ٻF7B%j EgȘ3 &ca̘,Ff&Z ("]S{+Uwle"-7",,{gT D-,#$,ub<{W{^ĻؼJ "g_JN/+94_=Wޣ&c&?+pvXň"+3\bMcy*X͎O\ui3S!;J7^kB蜉OM2.\©r9$*hUyr:sx] ,}栿 .c għ}U%Vܩ_ $:'"d#Z }5dz"ioXG\t4 PCݕONR0>"n@ 3&\!`QdLƌ 0fq=QeoF 6s4 E~ly˒ 9^+a^3/yvfN ?cn>,Aq$//P@U^PKܥ^Cv9>gY%^D+OLHAM]hR={,P¦?AF++].u-n 8,d.q]ӂ`F|  o]8DŽPtST`Phl}p|pr @E, CO~=$~p4T,;']$] pQ'WS#o7bJA\7/ X}"t9XM|+ 6MjDAumIˢ~ׅZcso觇j8o59A8ضWxkb,Re?Tr Oi)HXd%:C[# s1?VĔu}!Jh^w~>0"R)v oЅjkYj ~8X` >)л-e^JA @4dEpNeiت^3EgI끐1dQI&h"dxZAp` E]"f3aIƂ7 $K^ 8?K:߭a,TnEM3,X4I>b_ b X3f2&cauvPo/1@Ć^M6KQ9#B,xz7,>9;J I[\_8&$3: μ_ BKT\[aCb=Ly`Pܴl@YP!Mvd Xw,6>l;$X$Y-6TZa`qbyޞ^n2Y#@<)ׯ]E$X4y@`Isi+F^0!UxC`sB%QD[YfJo5m˟kaS?R Y(VhӰ)F=c=G",+,Ld,+ ن b i]"/L-В(, wl)A^ggo8ÍλX uEtɢ3IE\7MQVNi1Rp[\D~/U#nvDS[ #-<;2a`Xd~}.R_ XGEHP4sb>>6OW꽰YE{`O}}-<N*rJ'+ IDATA9b`Z ď* 3; iR) [ \i'@ )Ybh˜CX1cE~mܡX);_eE r Z2Jz|+lӗUy6oϽBjZKUIJ ma/AmUEcRKaH<7gnWQ #-D/>jw\(<~T)̾\,˓u> *?kk[\!e`J"g Kƭdm@`!x#Ǖ}&ZYԹ{:>b`&rFLA&]K 7H-۠Ua`( Ew"ހ1c&ca2ƌY{DZBzҎmR M@53Pnbs#[nXxD7* a¯zPjx]#n(X Z\ny`VDc`GqTA@YɌj c :_I~UL(<~T)EJkzU!A! CS/+pIKݯd,F E{Ֆ޹05lqCNtd$G ‚FZQQJX*^/n-?LL&>{[g#79)Z*F *~ ɐ!Ir{uDBšjJ,u= A`54ૉ\=w,/{V@D {%X@e'lW317#]%h,Ύf'RviեGwĄj;25%SҹH&%Tu)nW0B?"MkLXί;O3W A2"qq+qZ g}~Q!Ӛ]]@V`RlbggMY9L 푅d-:u), YmFM^RY/Xv 5vbv|Mqj ջ]8v Gy2+Լ,f B=Wc`FhBh;9݊MG'i !"qj簒! }>iBXh? ,j v*屢9Psu\vJ7zXe FX}Ǿa (F7 4apŨyv䊣Ҷ! m>iBXh,\i+У8u[~SvCә];}|X$V?XT/ ,I5>UaL8m.F/G"OR~G}i씸)F"5NݢT[dhR\==qy K=W[odL˲(Uchme o߅-l#;lPkR3T BJ1؆V]֎`3:%H1Dz7ͯNO:|gxeo?P6ڐ x{ӖР/}PHˏd~ŨEmC5+sԀʀ4~",u4.*j7Ӿ  EJ!-ZJ ,u,~Bkr-$^qk5tO I>5Fh#M0JmRy=Gg"ˠeRόdgV=B,6d x,c:lŖ1l)]Af%9x! XlܘNv(dYlESl˽"%ӘRҝM,v#׿CNeO$k18D7B||3T6)]b­RcsF,u|~j5TD U#}/Xgj^"Vy0:W:o  ӥ:Jo_.Sj(K H[Ր!g`Pנbsk6y$fb6 NN## Wh)Vc0,f^/7&9Y,a;SA`)%Q ~>J&aūojNL9/ Xc3)9`B[DzOg!,G LH_M n炗*MMز@mh0VU>ơ5Q%sWQ"h #{" ?t*XOD^1$ $`aF`aM8)?ɌODd{LXTKԷF&#, [lDrB?Жl7zϯGX$B: Fޣ؊#^"dnڄˋ6s0|θbE0TGn2oqřE©Qʈ_Z.K=Fr^qm`! :}r= `jr-`ZM UE"ȈU`C(H #[6c}@ X, (12~d[J7H-~DA_ߑ=f;t1)d1!yf3¶,0Pq{eroGaY]m?עKȢyBraܪ߈Hx5zRn(2y-o},QXuAJ?L^ʋ{}zu[_wofEmxEǴp\2Y$ qRltSJ=Ͷ 0ɭM t}>GM9 .w#1|r`a ȵW֪b?"#|;5r^h;%v½JʳP,\BsߖnִXG.˭LI7;dM N7 #=EVhq~A x,cUCv3|GlchrWLN'Cű֥;ezj7y!iJ&\ෘ 瀥6|>Дtw4]HT-\ތ,oS-2bV]s.6RaPju9r-Om/i]cz= 7煙7f YS巎< 6fka4ⱚ34SWr6ƒLGl/BfZ^ <@.:2yBthIUIx>Oj ,*UVx,c@_]np\_,@"z0! $v"̭PkXf ,](4X<zEZk^bI"\_@Mإwn=imFDٌ "xP*nOYJ{YLzbؘXӮ/_fa9,l+iaa})" ʋwCLewNHB٬mL6i~jz,IHb+v80&-\FGߓV 1N;łB!y+X؉aY5|!B V,X10a V!ԩXXXx,f7ɫ6!B܉+XXk62'!Y~,i,¦,1'O wXp{>y>-\˦aWO”,+"0* `,1YrJZ0jl\qgI1"VI,镥u 1v~ Kr69o@!F,X`†OD{ޗ;>14 ZC 7zXXKAm-zC[ 絇0ھPߞ.iBZ"KQG /sƪBM[SXX<鄲B!nĂ V,S~N<&,'cXSJa|˼ƣbZVxQ)8M,p1exCĥf+}G4` GnXzx ;gk#9L$)2sؓg:T'S~?B! V,XBIӋ/݉z ꭣŃXh{M:\i}F,bVh`c"LVYZPXڜgz[P.M fX"b[61NՈiHFDl5` Vnzm{GXW!Bk`ł>AX~!bF,굉bQ2ʁbX,.iM,F],MR,!B V,Xh/D,?pb1Y7"n+s`F[=t_LԀp |3I!BH7b+_Ԅiάbw%%l|-bkj!Wv/ԣmI!BH7b+6&/U5aD(IwZL;P\M,lK9S"g~caibA!ҍXbs륀nb1 E,4AmŢ1cbaXѣ8U$łB!`ł gЧԫԾ3([ҦDD\_h.6dM,Sڰʓb;,- 1FM,E #bai7=һۚXB!t#XbaC:>BB0*8WB>܉ BMO3B+y Qvtu@J緁5SIHrBuI4)cO}I۶&)b!C 3{xb+v|JkIj Wʪ61:R:#{PFHߊ+X4E)Q1'K+Rb]hEa^^ÆZҦݗpV*߁%diѷ6EIx,Q}{~<=[`ł #WkI4I/mllł Pv_G` x?jL`B,$3=)^[3J,V1łXbgLPBg'DŽXa?^,qmF/D~GK7b!Lw 3 ּK96+cQtvKZIK.[Г5^/ d\)ّ 6=XHv$$d wz$NLS̓i.y,6Xs j]T){`"*bB&l/:1'fmXOw1;+k&diKFn;t&F 2F֒5>IGeaߜB\]tM\󟀅>G,lA]" #= M"#oy쟣W}&Ys5σ4K2C'䞈XM6Cy-z Qv]}.XΊ]j]5-"Zrt+S"*bLhm'q)!wk FO\wjfYiOY`кA`_ՉȘb`77z=`䚿\ FE {SC-F`Z"V^#:/5E G|#!j?ʑp߭W=O6o``ʙ# ,<"7 Gkq3m=c-μK!ᜐ4ejL x~n*aA`L~#1K K!,7qcE>J'N ,,bzBe?XTzLSI|Cno20Mϒ&' fkI mYEH#ʔ)S PdTYoi P)X&q:hq_Y`!W:l,ëCH6>qz50ڻ`aO{e϶/BWP9j#mD=ނ- q9X}!ˊ/BV`XW>&a67Xp !}&@s}, k},u%ڼG5/86MVh ,x[l@Ra5I_g$͏{sumtdI؂D^iI,F ;}}Dk`juI qjΖr9T<)G3ԫն~_~PWŦ TٻhK2e^'XX(S6KPw`:ln,YmuP;%(>X4A4]OU,v=n6Y\Zd^ ,bݠ$ RWي}(`%BpI&`a \),DĮ X$M*Ӿq tm>wf<aY8X(\j]w :W X ?UcXyԾ~ ,Hkd)+`C , <MĢb"L~#ەoB`k2(_X8,h ,+FZD9!\E.hqT N"lEe>]7 ,) P e 4@EYq\Ow`JğfZB]ǝP4 a4r |p+[+X: {3XT$'Bbx'`w>$l}9t.f`ѡ ,p|.usv`B^tSU,v,KXfuARȻܞN=,|{,|`q7'Ee=;k͎<3G 䊆`# =⑀7H6}jW+G{gF?%^h Xc Ɩ$NJA B8v`qhB&AXXTY#2B-8LЀ5|K&M8MS_X(S<cLdE^#mD4RL7XH{,i'VFc ,n!, ŪYM*b_z~(X2OkNcEtNZF/2Z. 3ǂ*ۏ"``{ ,1,2 !6ǧ%;{HJYa}:zVu BkfI{Q`5BY4lֵG%6,lb {Hda7HT߱;e̢oGkPLy,B!i{s vHF/4Xx1" k4i8`lʕ@*X~v@!)N~`f@7DWXTGވ/%wZeYW"M# 4hP)Pj:u`ZHPw~4Xh..]{AՇ&>1E~"P];F';ḣBX(X(SPR77Xgm#oPh!ҬPQbϱJJ΍" {>` *rO` ̀T)x]ۯU89 Pi:3zsG`a`6)9&/À`{ hW3/`XvX,Rԭ]7ލI݊'o v؂sK,@p] KΖ:Xf:Y[o9A;Mv{ &xCca0_#ɾ{%7̹~7kQ[MN}֩Fy,)By,B2sv?YOKkAH/Q~oG<54hF&W'Ni) ,} oPE0cB; K# @F kMp6V\,09O}tF`!yl:C3 X^Z9fϥW5ebaxǴBW;V+i-Xm#=)yfߘŕkJJ33vsilp-$^d%V~%-;*,vi=,hjۀ&A%x,w,ed"pA%y>cm+S+X(2eD4$%VZ+׃^sX)fo?#BbP(U%\;a{阸TK%X 1UG(~)y .)AExvEEmEbHm ,{{N"&T AA] ?Qq e@_ޓE&DDn  ~N,У02K`a__u\oFʱTM|nxi `GKg#Q*"lg c:loyM _>^~-6,N{-k!l}=Ӽ$_ZwHq= ,y*Жwuu΢y &6̱wwYڼ{M k,^B'[;GMU[eʔ)X(S 8$֊NRaUzZS.ю^ DRo.MhDφT̀p C߳y)G9"͘u='bHMD]`1;q @לFElKTpZS{RcBC}ۖ?qZ^.y#-(X^ "1;xLci4 9z6k[3>.Guc9X|aCO4-\iNx-lγ?/P(p%<߹}66o[ǝw<;ڣA0pxAt[vxm=Gդ I?ξвL2P e~=k:g:duBZ+v Ks?,X,Sj4Xё )V9[NXhfrlEBlqk*;DfP%"MiZx`ݓ^KTés նЌ?H֋'HW gʾ )^,. ;UˮLci4f/+_Wm>X{cw12~-ȿ#}"sG2*\`a=ȪS2T;I"D B8Oqp,λB~H%vQ7X$8XkC&Ocج1ىAOb0K|hOraU,.p,&+bƔʔ)S Pu=?c VU+0 '+̅*VnP٫j-,MN]|u|~?_7E=|@? *T,w!3Oǎo70 {423 qF֞N+z)X;},XPk n%Ms?}ηRozz@ ,9Xt_ѣ-- ƴA sZرMs]ZDG:X(_%P`}`CuE}'5 vyh4n^~tc6ܞyl 5 ቾ ZJ2`qgd;Ir=:@bA.MZ8wƞks<ԍo̚ ]_o=fv gjϞ~~bA:"nClc&S=55O'͡Կ4'˅^g2._zuFy==`Ał0=xmgq"{K}4}{d?UFTDdfUo펄'7,7,XPh0Vny|pvN],,/,XP7ݓ1mX|z⡨@w *"l_3ڔL` mQ9h_t7XPbQ'+GeqPdp`Q;xkWN6?DCir@cbAŢNIYeqee?9Qw/;Y uwgAQuzJ9ODI2Is@?&uݯ(#^8 DȨŝ@~e١:3jN׋vxKô\mW7kgQfbAŢO7kV2,X5svqYj_ Yq$ZG2 ".26+vS,듋ֺ౽pyes~rbTJwկ+Vy͒5 *.Dr&%96tEcJ(ۖXlYp c86iOo$oo>ry0RZ٩yY#~y;{6P(ѭlv+*XlYcʗ=fJG5mWJiFNK©i/s7ԧoQfbAŢ^~W$pѹ*_,v(/13 ^,"wUpzQDOXE{.wFYכKo;+x)k7^bAŢAyDS1c7*oQ`i(?U*cKE劎mQ}/a#Qhj8#`HݪvY7nvAbAC.l^,ُك"TG>k/ vH3X>_yLIU sVĉƶ^uEH~˳YbA“yM1Ң,,,WkbQdȺv\fY`v}gm_vݔˀYX!Xt,XPhƗHoN?p"UM- +Ŭ`FZ(c"_NEW?K  *ͥEpUVibm+X,4X<yL1XlE3+Է~#sF8XPbQ'uܓjW ', jb~F2k'w0i.("shµ$XD#`aB[2ƿjX<9㑙pcPR\ q$,|)F.JJъm,: T,X484FqF午1<_\0=,4,:l$ܶεYLVy7cxj3B&iM 2h55Ѥ]װXIX"Xt,XP_rB3B?yP(~C O BMzSts___i4@w *=S竭 ,άP *nxD-,nybAŢW$|VmU'֧E"*XLHt(m=b%ឞ5Y#"ǽG4"KHߴ<kf>_7"ښoD3:om9떄F @,H,H,.Ɍvo:\Tˢ #/n"HYc7[KĢ$@Wʶ D;EkDTҲ+і| nRq˙El_x ĂĢ"$b-ߛ$b5'Rbq_GۦN54ge{O䊽3"Wv3=%?jS]̾iPg2(˄ڀcܩG,*  ̨<^TpiE؛Es*TQ,uMsZɭPE{I3"^y|_X ~S!V5}}SWt OyEYu^vL]fX8bpE,H,H, "|$#VYVݺ(Ftw*Խb/$9I= YQGQ,֬ w2pXU⭚ƶh WS# Ă<#Ŧdz+ YXKD tDDRXWN!RѮW vYUMoEYuQ,⺽bW>RH,H,X{j>]蕮 % 풝V+XDdW,^X7/542Xyr(.k,I@,H,H,.w;,[S\ذ _D&bCx_\yv`cI9Ĥl{U~*TYG,L_X\a8*XXX)n)V-:Ct*X<*XH<\M՜YD;:+>n¼ǬPF  3yr]VWJ*#ٜ*#2ZH#FNbnG,>be{,ŮX*t~WS`tkJKƾ_tӌDn]%JXb5Iz 9bqI 㘛#%zbx6T'b@bAbiſ w%eB{fu;OYrXXUNG,~^o ObiV?lR0|bQk|'vڒJ䃡u64[혌(;+G" ?X{; *p"l.Ă"Τ|.g< D2IџbahHRĢ=aWE#^06^YSZy+KVo"@,;OFDi0n.; b?NӦ,%ZH$[W #R`X@,&b*G6xF 8"{JTcͣζ햡.6f j{|Mm/b&ށ6)9ŵ m̔ дǦDi?9cρ"X4E碽Vu(XEqjXh*@,~[ϝNVk/''YQb@bAbQC3 |jsGgsšVw;NN5| Gy&Qsnm9$`:LupX[hQ $$|xlӺs7n?(g 3)e/"J2TPM,Zi^li,H&Œt,oWݤdvBRn SGyjyU"&=2:m\VDqʤG^65b@bAbO7ϸqo//9b!H}I(%Ss4LJHUٝeIXE+S/ԥ:5C$Rm)#et V,5T&&2ԒryGq$ԜPL_i`c?T$58T#QyJ,Bz^XG?H}MfI{G7   x.oϺ1{jBXqR{qw|UŧX$RoR,We2Yb4`zh Bp`+LN_Y@6/T4ͩL&)BbRk_sX&<B+в<¾T;BkEډIGtn&cD[id>jJOIXXXq/v޿34^pέP#T-kUOVL*Tgz\{4ȓ]7طYҹE "4I<46Eyd&va57aXfmE~!r&V,"#--+"e?KJ @,ĂĂN눅j~oŢ}T=xvSjϱPZ`W:[P'aWoNLG ŬL=daej>M}WCQap",aLr ĂłX̢8N@,O5~Ybw)dx*3XY5=!zS6zuؚRmKcyaH泆X$6؃XW1{@ X $XX -\ F0[> yU- 7TzE/VŨSY<> OI[F3'o{uX2=̫'&v|8@5f1xTR \ua#yCB]H}ڏ!%|ˉTbˌQ5 [ $$?Y,PzqY\ih 1(2\ "La"mY߲y)'y5{}֏ϊmbr8B+&}faAv]Xz;Tcb"ʕ 5~%W,dn풒~P80'52O V{Dd27e2b9wh6W]cSwW`$UN%A+6s6 5yje(Ă01\vg5/}gQۓ5΋F*?,{lڵnQkV& NEյ I=HuZ @,V"ӟ~uHOa3l1#jP/&{ \D,H,H,+fmĂXnWp   G. u   b $$b@bAbX $$ @bAbXbbXXX bXXXbbXXXݮ{Kl ?;sztD ȧ]^W,^O Qs@ x9뺗;{/ŢX  ^S,μڛwwLĂ  +wkkbAbXXXoB\!/-v3?hsEoQ l>ss͉ $XXXH6w{[=Q7NϝNSo]"P:_wzs{~0k|.|`_z8oUιwtnW.m/t쭍 ^ɻ;6>yt<;Wut5׶?uӹ9_Nx̌~p"Eţ}|?ε'mr% (@̠Hif}cJvsj=ԳnzvSkͬDϺ؞EWj V8y?%<ӣ*4lhYg쉟ą?(£| 10EXDda0vJſMUŦ>&5˜ 9K~NEi=ȔfoB`sኅHD.uB%/  ; d,zi0*r5tX"_'c{Xss \s[>蚰^w!CM.p8==w@,"t4ZPy5cQPDvu d,zdkVe";^u[⻜X)wmŮ!.}=Bv~Pl&jz>ƞVYcQ S&a7f,xEW,1  d,~樝/unpяb[zE,bObYƱ0+ϰ*LۓX|r'ZYژz'b+vxU?ťӰb!bX2ώ'.R)6(-(Wd\МJ" FVIObcw!O91!bq'z7y[,TE>qb)bX2": )ʉU듷'6S,Jh[ybv:? 1v #s+J{&s9~8kO %io)⾢{`1Rup6Qި[{Χ)n8bq.F{$;OFWTi #{΄X  cEoÃ쳮)Jb?Q1I汊 wGٻM, *񊅵kM\{)Y=Ec9Bt ȍ%WxO%zR^DfU //T'K):vQG luT\}ŝbS8K[NFyE|X  co{Ҵ'_yܿRCSa_-&f^ƛM hkx_3˯~Q ( WQ~+ȉKG,XnA.=Tvs^G{Ɲ7Go2$ޒZL9N$ŢF3h+r+XX  coL*+/s7*Zƥ|/s?rT]3rswocoϾW>]`4u"+< h  cFHޯm>ԯl d,?g[d{lu\@,@,@E'fOGԸG<Њ~RX c+3i|a/e  d,~irW=6p8Q}T?'|d,b @@,@  cz0I/e:icrjS 'M4J 7٤fŽÅO"LԽc3k@h,h,z{ IDAT,  ` Ƃ X@@cAc,`XX X44@h,h,,  ` Ƃ X@cAc,`XX X44@,  ` Ƃ%$a@cAcA?~ÀƂƂ`?,YYW+@cAcA 44o   සKoM|u?$  9[|Ud<:.NDJiQrgz0"XXXgRlS`,*TVnu1gu,E NIwgbqZҥ+m2\sNX1,i/6  `1|5+|`>>ǾE6ow8bGbAhIlUJmE_RںQkŎE&XXXt ֌/ KprR@uӾfc-Pe%{P XXXtDCﳙ<{"Tsgޅ񼫭Zil+3ZJz^'^Elfr1esyf[y "-y[wə"Fm`9,SzOqtPE%$rUO"KjFd vf^_)-bEu}LFY=,DjǃCE#6Um2)ҫǰ,h,h,zzIƬs(2R/< ɧϗ%Jeu(IP(8z_×:&XHe˷ƢggNEE,4,vPKU{y\ 5X}5bK?&_vE[dA{4nQvCq&!&XE=W"bwF6⓹`AcAc=XEXz| D5'-m O,fKe Sk&e^<~zKO:v͊, sӊܔz{[s <:l` 'z' XXXt r9x!9˾7oe^dNbܘ ѥ: >#)y[bSKXȀwʦc~d׆wqTbGd̝\ պzĕݺuw~,2Nّ{ƂƢ=X4xJHiEY,9,`.""N-ӽ@[^ȯH㺵} kP~m-"+%,ԓS`ΐzϫWj?M>ʮӃE`1]\xP_ݳN*RN VLe 1sR{GO&XXQlo‰nrS,,kߧgOb/&~>˸3~v_ĜNXSK矼Ƃ9TWcaIb=py5qpocm^fqiɹ_4-=?{Ӷ҅i,1v"I@B8$*Aǔt#mH@n@AتTP`'>W=5h^Q0wTU2㭌IX\ QmP/,@Ƣ+<0r6f@@n0aSn\NRl7{Sv40EO~a2]a!+jlу M@pY,}} S $,@2Xв@ ZX c@ d,hYX c- d,ea2,,@2Xв@ ZX c@ d," X]?06a2tEDv Zwl(Q<0XՑI79PG9f1&,@ry&n. 3G6x(zC7jl萰(|+GSb.T[mX c9x?;az*~>|Dcl̦ c6a%߷G7N Z;h@ aOu\XTfFu32'U'Z&[KiC̦S*7{yh;'ڟzG \Va28‚nN m] m!ґZ锃 aa/e8:C--\Va2paAv!FXS*Ħ3JֶUODW d,`&J PBD_3MAE )7IQ e~q, Kfԟ[^E\ooJT #*3R =j `aij'ZDY,4Nk3 "Q |cTG.1aS/fveBmcv4$,@&,E/|U;>[u#m|z(Y7V nlQmҶh?ݶilcĢGG L$ eC׌:q˚d63$=YcEٯU,ؙslWç :Ĕ>=W,XOI67AmxVȍ ;ÞlmPh(tFoiQXg6ؘQnwdXl(/n9ߎz{8GPΜ ro3jZ[mjl i'<+6LM{{lʗW=[Nu=>mY~ {@#,@GXXVlc@l}Ց{GX cp^9^',Bln4̑eqÚ,4K< Ϝ0,:iE%,V-AN';Fp4r$X2TWZ9_Gt·z{e޳d#Ps-m`R$):{}v6 k3D_wb|[ciFcD4:EC2͆?8孱P‚QU:7m+YQ!UcbF|ٯqbg*`2wբ}tRIa/Db9AYRfdDMYQ(](@UQ4~)YJbAD~rY+}?\vu9OprPs|*tkO9?HU!\@ A6 hAbJ7 TT>@ "Vhy|_d*U,،>`:m:&+ Jg_I2?Gf"8X$/9XZtf*m,8 Je}}XDjo4dd}e/b{N:JZ ͠ӰJn]RE/}r^  bu>(]T<[xӴs&XX`aV͕n9‚iXN`c6hƧ׫ ,>2l`eA  X@`,`qȣ3'/F**QYv K.XhR;X,(-GV i+TfpeѼ ;,r SV#l`8UtQ0,_`HrC*[ Nq/гv0 (^s-*-F' y8HY ,ꢹT-X˜!& 6a`8SBRl(XTQ0@ PoD, b pksxT(c3wZF:cq`CiEfHtH?Ou 8',}}imibJ[w*Q{t'Ѣ`aX*Cfz&&XX`aVA^<-,bit 1亐z, b Ht_0G\qd~n-,ȂnA55R,Ц,"5kԴaF,E_$cv0 J֜rEcb&ʄ|MsA$ [p X 0kC(nOY˜!& 6BZFgEy)1r;@v:bC@cx2 #` X@ X86qr턢n&uh%&Mv߼KUj|WC7"ߊ%]Ƈv M6㋞_"ҝE $qIlN3+A?`jjdUb/~6g]`a/&k FUYzX8q@J/<EE|83ol7½篮FT>B3V;"%I,\_:"I$վhXn1wyh%)UT!޿tFTZ˴tFu ('d5#.f?0°V`uD2œA,`6m@k39~x{گ]B΁'|>o2@, b H `ݠk~0c/#*En_l!ի pܹMCU,"4C0&oJ='kzͷ=`8#亹to˷ezHç@,P]m_a3ёX@" k_v'GxtX@" +irulUG4 Olg  X@z-)\&l~s,@?Xx'r2@ PoD, bY̤yv@k,@?Zmz}~ D,@W_kCDSЏn  X@!w`ȅn@ ]D,*U~A@cޟ80$Cjb 7) GEۡh@sFA5x(C%wt%Q3dw 449zr$}AkR8Ƃ`"xn8,h,h, 3 Q  bh9"ȺDPB744{Wp[=1&Շkzw&c]}^-UᕽT\k@u-|֚iU͝M/Xm ,h,h,u*I_ qY OWK/~QK:83>bslޮYZݬ?ug溞TSm:|/O8<J*XXX,D*BC-,|C+Be:X`MEj[NpD<*xQoE`Q1e u?B ~& qQ-s^`1{on NSU}=zN|gM;ʼnnN PjƂƢ@p[ԑFe!}ſmu&+X+#tV8-DSQO$SBE)㞚^Y_qRuOYfT(`AcAc_`qKlg~,#G;S'XoOK.q5,-j8 u{#E`5l]Qu>+XC4,`Δ^`a5Zv,IDVi PbƂƢ@yS󕥌`ђ|`!ʜ<+S]Z*?X(`AcAcoxl_ EՎSBM"Ukn,Bͦj8>J)XXX,tV \F]}5Q'DS`4G`tp|R/XGݹWv;SZḑ,&5,nXrl^냚,n$ T9@  _tQ:f7t3,tq_؉5,~ۓC eqE`v:O؏{"T!D]u'l 7XçNPmѺfC79V?mSs?p|R;X]UѠN C:l _c]w'{ыF~.,h,h, g띇eD[ WoU`=;T5n~E5wɯt>(`AcAcqPƅ2Ù>߷ma:qc|>J-XXX9XXX9XXX9XXX9XXX9XXX9XXX9XXX9XXX9XXX9XXX9XXX9XXX9XXX9XXX9XXX Ťe$}#Ro@EY2XXX]e:C$\8`rvgK~mp$E4gձ dNW,J )ETC,bmdȵ S̭k++1B+c~G,J߰=,XGYx,zx`AcAc?ڥm=Hem)_x u,J\LGG,D|>`Q 44!LiD,"靮J:r`~nw)d@*XXX,Ċs]{r>u\l,  #'X>=wdrzdTnf91"$#osWcFN0+珸slh;V[)x,m|BE#XSKb59l(ŒɉhrGdrãyƂ)蘽r29Q{.ikLOdԜ]voGb)0jF^NR"4;?d5%7=GuJrkdWhr=2|Ait WBHLjܑKK#9#6Z6 ˛sdlfWK5w"Q#vY6ŵQ9Ym|('M V,:MS=\HmWFw8lNꬔg~y=v3B|Ƃb`NҖĢ{f˺x՞s͸3eZ󑍬o.K^#;ųi{-gG^Œ~+ʢ'Xא==?ӃϤ\O5)Zcclv78~:*w)b@,y쐼@–30XBGL#$$ ֩s_e=3w\GD|&RL)KZ_ܝ1[E"6+b#2эv 摩 և\X>GEEYf(Yt+8d^]W6C$Yj;וaE#z' =Z"h3/:×u W^q><êꊟ>~>}㧶 ߆=sb޾o<&>,\/Nӱ 2 x‘Awg`Hz G&//i`<2Eg?0ȇsA  UEm~?wK` {B`!l9}Blm`X,Ãg,8cq,*pD(xRݎ\e־w*u!\ZE-W?%"xMr5E@ѾyJX7`DCu+?*"Vdҟ-G= ԡ*5|2HbPm[} ڋXA_·b ẦvH[,yJ5,fc."^X*R"LsʥX,` X*T EUSXU`-"*VX>_}>!{GjvIXn,#:POA\褼RK↍"HOL#̑rƂ"G!5Rc'VnjLsHOT"Z <&X%<y|Ma:sa[fX,P`OXjŋ:[YF,~ݻ޿GdY(wE_ X?B͔:XV>}dwܫ9Od0,},pTA#,bS89ՓЯF(vd,OXL}`Yt'a=\KRms:r0CfNj5fhK07`E*j] U96 M@1;R+'M;G,zt C\!_,޿ݻh+Tъzb *@m 6/@ray^T$ CP LMW2X\p2X$Ų-_AgK3X _,>4˙0i^ǢTX8Q. ;M#-<rhpdEy,>Q&M^}9q6b  X_SMS6sKV,pmWٱe,1;?\\,T{ +`/ȅr};+]O:ұم ,$:~SF`˰s0Gb.D ,U[4x)h!e ,X`TzUcE?_;jMvcbXXpƂ3 `a:ǙxN"ӗj%]`}z"X *`V`1Qk]|5W ,TwWR(#Q.a9nux~x MX͑)>=7?> Ҏ'1rz(bX,g,8c:Xpư ,yW٩2wʶS K`1\we|m)A.bֺX0Ny:XjgtlJ_|Y$MFx-eRag,-` Ps,wv]m;,(q ɥz kMUF`a|wvj"Q\bX,g,8c8 !\puH%B_F Xj=9C X.o$rޞ//]z|нJsŷTFUdI*}l#`B`VlRy@ma;m/!=Đ1GJ=dw$Jm@G[,H/TOt%6B 6,X,` Xd/b,[KI隷 W$"ӢěMB1잴n?5s9.q67֤ʂ]l:^$}~|Tclȷv^3XX mksX,3xz 4‰'A%1x|jq}XX{?c I.qbX7͑vEmQD-/+/N#dP 酊6*zW({j$XaX,g,8c97.=e}6t3ﵑv]_lGlՑ"aγ,˼,{msDGbg,^&\~d.\^BbX, XpƂ3 ^,_H_3 ޢޔ j b4ɣ68AIHr$;*$$)p*J.wYvQ..t?;q 2N<-˚sohX0`b͝x0kw yx[‚x3 fZ_UO'oKX0`bi>iy,xk‚WebQ|nW0 bL,wbQaYX0`bL,Xy &@aĂwX0`bL,XyEN,0^rXdX,)`b,,L,05,X0 &L, `b;,db a+= 5˂CXłuXa1W @a1>a3,X0 &L,â&<7,>H ctX0P<5\P԰aN!El! @.a.cAX0fL,XyEN,>Z2.e 4ޥyjQ鞍i3]|A(ΰH,OUX,byK>*`b8jZFxaa{7ZHGy좲PaN, & WS%/ϰHl>C{c͜l, (ʰHL,V-,漹anaᮐB_m KP|嵆;(ְHL,VZ{X[`a"9,!YŸHۻ哎V}DaӁaH @EW?H}U3!CQ (N, &aKxj]Ї՝mXVuQ GwͫUYRv9^L{QzbG#kEWppbS_$U/p("UIXgQ]FV¨'绚Co 29?`Exa\.U_b`0Vu gLx3PexqJX|]"6X@Xľ2E ;ݓUXns~Kd*l7N V4raܽSݰy76}RNn8*G2n"ÖӇN>\ŔneUijutMqPI ŋUWCX8 "Eѹ7[*,$tc5K׉mA iDFWĔ+P{p˽XXlw/m',Hͥ>iֿ_F uwԻGI]aapGuX޻:Oߗ#Ԗ' >uxXdy( l8HB`3(̰e we-(~aኊ4qUAH:B%>'gnDf9C;.:1sF$D6&E>jbT.4wͽȭ}ݐ)}^O΃Q!)G{s(~B䙾xܹu[is%ҷtȠĀ>b$),b|q (7 oXzTrJKRmnJEǝܬeDX NQG]jfg$ѭ?nX]f IDAT>`7Tj\7O*~m)ŀf&}4|grUjjҠ='_'Ũ2jъxrTI}"e8ahimPPaQ2:"5,>[Xb WڧߩӨ U_"EM ue9-ΟuXTGG뚛iaNJL;iR^v<,檰Ȱvᅅ[<5\|i^0agMdD%_mR06v͸{r޵gLs⯁m"I ˟̬4JK|[$,9D|rDZ% &U]Y8<vWّP-ou$|y{K,ƚ~Q>cE?U;mVzo lb^X|Obq3K,E"C*bp")O(+BF<*z#_'N@h6SfŶ\t3.7cE mur.D]: >($bX,XH,*`i8|Oynqo_]zch O>g_BEm`#= or3oE1T/njn5xCbؖqz9|uRJ漏(gvtf OfJR'֕'}bÈ7Bu3۫qK/Ջ03!.5¿F"i ѐ`?%U|#jbb&g  q:;* )71!_ gjR](, K,tŪVXf59gQ -'j㿣4¿bXz=YQSq5tm?ĈE.*"^ŏlǛBӐְ~|\W7@]vP?XPI,|#/]xˉ@X||9JA˪yW@AjW,0Uu@`׶R51{BXCA[tLI*815,:0IPX"ah0lHPb2G,bXbq#C,2[o?Zo7xX|0b!emsBKIn $^*K,'Ҿ+=sPTC(YǮ{w zRi3,ԩ]ɉ7xf7$X)Ū$^GG?%Z#+bb-O,͎lM'Bjۖm+u"a׏e8(XբgXœ*"z;ndY4,? #7tmB|(Z!G,~֜LXC;I,P1l)mc3@qߥ鋅PX؍3޵XyݼW:ovEY4,oWMT);EStlD T?DOۍ #(뻶KTvEVR+$'Db,Xz>v=jS,""3©~ve iq#Uy&ЏFWbS^X LXC?榡mkn8[ʬ-X%I Y^ѵ, [,T۷PNb 'wUN, @ϔ;_V" )h+TL(MRUX4 F[_ LOQR (p 1kV^9aMa HTo<ZF pC|_'X&;X I58tUqގF\zE=fڡ.v"G|iX^^^f3XbᶱvbjdfuK`6Fv:2SiL©@;},u9GV$3Xӎ7r+.HlElM9[,+pO, pBX8iY?u{)PF**.`i㓭3,:ߝwH!ל+k'' pu蕺?m#I( 嶱xnjw-"yV7:=bnҎ[}!R4p~nz(Կm"{;-9yS#Wg}PJC.ME<^6/zbtXdB" {puU((o4 `ʊWBM9b, +Dv&i6C.ƹ t PnQ,XF,6K*)T~ \}&BjSPB,fțg,I,{=KJ 덽z>w; N]l0yyE, 9bJ6hj앉8kR$/̛Ȃ0X,i#Xx%bq#%w3X,ҽuK`x{X(5C,E"[,X(z;dC,.ۙiX=B 'K,m-, YvŵZ,~@,n^cPY(*b0X],t(cv[߳fE,neŬ^' bb1S/H,f Yv,K`f_E,I,nEɂp9w=^~'O,.JYNgY }X uEb/nD,^΅bi)T~EXpbq/b"/8v MSbX\ z;]dSd? G,ۿ[OB9%^v*m"dq##ovZS$pcw⸒08"",FځpNwUuv7X9lF_z[6ZT,~X"<3X )YPo0p/NBي<^5X^(g?YPPi/ y'TKy"vI/&X ,^(4,NU,`Jt#oO',u|8_25kkp#2<8gғyvwKlr=Z>wLŋF*,)OB+uw{E-zœ,b_;m8irE,&WtɢMhChEsE{2W7|XI%V`՘eEN{!S44m8]Mb2,MncEųNX`m OX6{"d ?X-YY(,ڍ;Ue:.[tBX -0) _W,BWLK_1i|;i׬N\(nH % ,,To`(QWY\ 1~$p`1W (55KBWE1UguP,,NYb* Ub!E+" v [AG )" e+zX VXaxR"X  &X̄ȶW uOݮ I g.,2YPPBY-fY\ԂzB*ȺB+ ;2Wģy%Ԑ('V7X{) q6,aEY"r]"/=Ũp-`}ƶ0"]Lâ5n;V3X*VYv,JgaY[\Myn©A*ȶ W\!AXxf*PߗB{)[QY5YPhEg-B8Bi3d [*Hb"uE,Ts;8e0G,zwB[շB#yeC gYB-\̈ Qa43k*T]EP+B(oܰ(3 }o/Wv,#yeWΊc1Y8"-"$.Vf>HIUW!elWz1WyljX4񞷹ZjN knSeaDB8\ҢKG G#)bEIWzEW(_aYXbm%Em8+Ee*,j,r(#-(tb2E~{*W\\[atEZ|E+b:E}l1 ŸܲJ',D"Kt.O{#+IHǒU[!t<ۥwB g/)YT7ΊPIYE["Hµ[\ce=hTïK"X\WlXm+k++jfEm'T5|`? UUrHo;g!iY Q(@ |:; LYmEfTm\ bp6B=횲pja5Tr;YTŋE.ps.>5Xr +:_|E.n\Q]x\-`qe!6Ca(t69 )-z(-TB pk'J7J[u_buHeQ ;ge[' --Jk!?I0OQ < b6 +\!`QB,Rxt3e\+4 Er=PN΢ZHoŅ0n2xN' WmEW+T Z5{a\ uo8MPPNIwjQh֨z LZ0E+Rm\Q2],Y,i,&Yů6YEjZHkqB{.v{UjYB *5l+йט+~Oܮ v [߮+p~o;"]k[ݴH#QB[(q"IJ pLrEFdEd6+޶"srEnWW^`ag eaVΖb?‘jZo2 sI)PP銜+Lq[ j",{}k,YY'VZ(k-s[{  RVt"+Z]џ+|_ᬚU&,V=Xdnd!9XnXԘzp#E6-"EV)+bx60֋\q/a\eSf%&XP"/bۈ ]D c?{w#maXĊDbm ''bQeQ@[t#`#ȲNJVXW|܃ E(=X|?bOle(b,>PuBZ".:ADDDD['T1"i(A{PB=h_,*fJ݆Rxkawyoa<\ũv^齢q džd1_r,oC)Y⋑E^-+ܿbѭ4V%E1oePR 劏<_,ɢ*p/-G q!j^-NM߈Z*&XZqUTe1Xo͖s1`[˲dLb.vՃkB/TU1K _+~fr2|f!6w5Y/ZZ"R )""""28°|cwr,:.B|jvX]Œ,Pu(O k [ΫADDDD!#޸^NbGQgE~^QrEEaqXwE24, 7ZPдK[IDATI~S+Ѯ(Kܳ"S~|E1X؛PWw+' %JPgYB-θZ.'DDDDD뤆XaTt+~rڰ}rvi8߆ʟ5^-BBBf0< ʣBb+ZaYO e^_2 n!t*--.NDDDDDWY/RjH?]nA9Wwj_j\ZWE[Y<1(/;݇ʫL[d\LxK """SHq6DŽ*i> Vv?a⸰/COC"}*<[[x\H^vet:5Ȫ ϊ1( W__:.,,סBZ+QeHĈG """"]|4yPWBVA{ņ ,eaofdaG-(a ADDDD$2PEUaE0W(W<6_*/W8>h<EE5B .&^$_da(dD """"4{,g|<\H VLsEU{_1ꊁWE哳m} y(Py#DDDD4p|'OC VdW+=UF^X\}db^--.2//be=NYB«\1΋P׾'HڢB"B#tB&""" ?4S)2**+EW4b +eLȣ{h!f-puQ|!1cуoϟ\NeHWBb^mW<+:/B2yfa7I/hV 3[\(]_`8c> () *X 9Wm^, U4h!G Gd.f^`a8et|HuLIUVkP\Q EHPòPO-il Ya'""""C:Sb6EAY%ŠqW.BPgMYB"-.. / 0FADDDD4Ȉ*Ubf+h?ucX&e(YΪbm!p1M """"3:jRL(PЗfV~fּX|`1I}au(EH y#*Ŭċ k*5.):uCi>*LŒe?aqEXfE-BZQMl/:uSi> RT(U;P!+5+o?wX=d!F wBBBC """"gOq0͇Ui w JKKHO#YW܎eȺ(DDDD4~4пZR|L'آUDsvӊ+n/CBl(߈i匪H!QQT̊ߍ\,ڲPꣅŬċ )]JDDDD5H{-) **$+sE=׆E2xe0ZTiamqu!}j-1iB"B¨Ŋ\a\<uuX.C "--b[̸Ⱥh2¢ӧ<ӦQB2WqE`ŷ,;,hbEхEDDDDD{dϢKI+jss~_1kbPE5[(\$]_(aD? """"Zy4rR͇UTYU,n aYFF../00Bg|+Dʂ"B⌊ɐBN*UTXQ5b, -4hm1" """" 6Ō +(V\#b"- -l1BB ADDDD -1VbRE+ +b▰hai!w } """"ZW|g*&UDh[bwBТf 2/8_)fTTTaX+eʢEdƟ]p'Syj}B\qXXŝEH- ../bl """"DĜȦШ"dt݆=,PuYģEօƒ3+HMQU l,d10ZDгE 20]G LQxSXU"d\q[WlUziaw ŋH """"ڦڙ]zS$T"dEeU/,d1B a ğmpgUy}RU+F\qdXtɢ6Z"BB"v """"Z)Y]\qX4.C""҅EK'ADDDD[+iIh Ê1WEcX-."_l """"uE!M!TCE׃v{iQE[h]X^1DDDDҟXow=E` :h$BQ(STxU8V+WaV ZDPX ۵ Y"3wMGAMhGEPyV׆k,z"j(" C3vDeS|GEP}Y+^zie] 6.Z.UY+jkhQM,.u{B"))Ί]qGX,EXE+18p^FoqUʊe͢,8-¶bQI`3$X4EaUY1 HYinj\ no<*ʪxϊq-,v,eїA[E/?p3't̰x I[qʋ$0N IPIQDERyVLs84-(bQh&ޘ7{TU1qVb]Hۢe]dqZiŲ)ȫ;,oȯڢBgD-)VUgEZ1bOYil8.뢟W毞(̊C a?-*q40N 8$X5E-*U1iV4"(XETAn?}<8,eQIZb^S͊%,ishEPy`[p\GA*ZU\)*.uEOclറ`nEŦcųBX ,mϡXEy`_ppGԂbQTU5]U wꌋ/c?.t膳7*&|gi7d]԰ؑQ[$uQ !Q/):+".Ҿ荌|\0;k7_ۣY!,¶H"͋Fa\pbFzQ1AU E%.}plgU@X a!,E+/څqGkI1]U 7E/"@wء]ydq%,BX deї7<)b|ZIl*a1s^l3x.ݶ_?@X aBX ,>>0W , aBX 8-2.`Ta!,BX aa!,BX|R[" , aBX , a!@X@X , aa@X ,  a@X , , a@X|hP;0IENDB`mkdocs-material-9.6.4/docs/assets/screenshots/navigation-path-on.png000066400000000000000000004733261475306445600256460ustar00rootroot00000000000000PNG  IHDR XSgAMA asRGBPLTEGpLGGG333@Q?R!!!/GJKWRUV^]cde]? IDATxAvaGC$aO!Md`lJUr*E7(.ܺI/ , aBXBX , a ZcUBX ,@X aBX ,@X cDa!,@X BX ,EhS}-6@X aBX ,@ԍ a!,BX8mT( (ES}5[+) aBX ,byJaT^3Q#/@X aubLQT*caq(L3Vo(̋a!,ϊ> BX ,oXΊܦ)4r⹥l]17SZL]̊Q1&(}KL ab[PQQ}/XFF^C PTd(IV_ ŢCV"7(&9`NYCu1c tW **U3G^Zb)K8.-fEvTE'wHE".AZL8)|/hCr"5b%DV& @ˡ1ѴH]Z̢+2Ѩ ڧ-wHEV[ EaQ-+"UoM*ȋH\biqDWD"\>$XC#mMXb+bdRb0{ `Z/ouE*˪t[+7˛YTW"AQ$zF.qj*3"Xɤ,HyncҢEˊpT E` x]"3-FE[aи*REXF-e{PEYXSL;VöE-b&xV" {$QEŲhT鸢5T%qME7-F-Mʊ~T$B$v$iQ,6W dE|ViiB՛&4"u[dbf+0+QH @1ȋx\Ӣ,,mWdeE *AQ@`&H]t"'-Řh.,r +UM @1͋h[EAY,b]qx *YE)=1q_@#B#ݸ8[ҢsFY-"^WdEpVoph9}ѭ"EƢŜeqLWѬ8NT"% dUF(/q[$"hbX gv+2ɤ8H\z+#\KxS^ E+^"%LE-i+eDX`HVWᬢ?@ʋN\-"=VE"kɬVFEz/W9Bѩ;KEo-Wuϧoh?ۏ7~enXA7uT  -Re RX⯏ WbhQ, `WA/W +UuhY ]q|@jeql*+zYq~dtNz3j]a`nΪblW+.. wy4wі bpb+eť<ZD"wb^:+9] u^늃]!,$,~ w,, "B_P1jxdVX -nG|We2Q M7wnW\슫?_*9h5,~E,fYsv3kX$,׶}:=rS@,NY,Կ] w{>TspX<Ż̢,&ͦ',"Tz^+Ra,rf{^%~&o3AYb+w=>z,F\;,^e ,Ba+aqOqO?mSY,kdjްܰ튽y_]qO?Mp--feQe1mXtnB{ى8. 'X"@t@e*D++޶XK"aea!2l1k u?:8~6lV)Peج5Xl>5) M39X|\+fm؞9 us@gJj$|Ŭ#X2GW<|,`1"5C]`S(r:+ƭby9 `1., n)Y,,*V:zҲ}`O-y9 l,YH5f( `16B"WZ Nh 5 %YEJ(k#^qL>0ZT,~p' P=5 Bbn2XLY!XL"OjJ ^ -Wbnͥb:YK5mb 劯PŀEQ `1',f(a3Wda#X',F(W~bMIywO?m'YXY"`jVo2 {4 \omvs@•,P]޲ehT6BI .s=XLϺ}9 `14fQn,v¯`!䊸^q,ٞ׬DEQ`a%+&>gRֳ< Y3T,,L%/:]u\ĂdUyS~ybb *Yx߲0>[p5BA綹jӭW{W9 `aOfE ,W*\#G=YFdQE\Z,XPZ Xu%YPyʒE鈅`!H/XLe"Ӽ$Yb*fa8fa*YNY-X 9:Ee*X$` b0l*%/) E+ ?$ jzͫk_& pB-Y Hɢbct[aa)XmP'X1 g|4=`Q`aljjێf%`@`ahWV,Cˆkַ`!犇JW(C C1XX;` E3ԂdqqB5Us,dQdQ1}r3TςʸjVhzȫ[|(6CWVB, !W Fv\X$Xub\hK%d! Y,(XB*Xq# of1o淥E,z g{,*͊PE C3da-QwBBE\VB)ۗ1L o狡E,m%Xj= _H#Py"n"XLVpMY6 b|Bw\Pc `  NKdQܲsBђE¹kVa!LX\U^ j,) - )0ŀw'T& @`$id 5p-EUBX5e^ ca~;_ .Y\` NX۫ ^X% W/TH tB/X,EPOY|S `X)GGei/ ՗`^(5NX,?Ѳ6e!nuBiBY,\;\\ī[Jd `1lm 5[@`6C,FL{,,ʂŠ눅<-MX,,:bIƷ,E n?H:qbW𷞔,I/u|ۣ*`(G,+vBIv>aA i"==i)Y{!F8b!F˂ o,Y,) }Ȣ~" vzBn/,zb}> UY4a^ vzvW*aA ŔE U8YǷa J:tBj^da e8^0]n:P/X^tb `1oebh] `QnNY(PePj !X U)G,N)* 5SnMjz䯟xqL3^jJV텲Wh4B^6+ `F!WU!Y5dY됅2(XX+P+n^͂/X,ɧ,^q!k,:0wB,=𛇷*XPvJ' Y\`ڈEy8b,@`"(o)Cdq}a'Tqu{))X, ,Zb"Z5B\CxB'T,ŝP+qhj X͉Ū 9% 牼 m q'T` X` ^C0=5X#-pĂ`P/X$%┅r| Y( elW@"A7_?/PվoJ{ g`Eq[w`Ж&;nux៎h?yEO*~etÏG2yΣw'X4P٪!"Xܱ 1['XTn#t'T`[,/9,΢7}?9fo%Pڐuz;`Ѱ mvZG,e bqv_Cԃ/8(Xv!?9^hbYX({Lۆ`)X  }b% X`A)/OL)2XN7O0!Xtb5d !Xۣy"XH#x'p\S3Y5`z؏!f=X'zK%"J*CwZQن|"/`aS:VP sEL| 'Xt';t/wO?v:o9y㛳Nw:o7;{~ƿ,^wL>E_N;\t`qQ~^߳_/.:gYDz8μmv颃lgeg;rVJEJ ,dYPr`,dGKUP4] }iru]{id[^Cl=βx])ltjJՄ+Jp'w0bm؈+,R]bmۏ,:Zl 'O O ,M|M„ ǒpXVomc\ GtQHlK31XͷAN4@@zN!dQ Zhc:кIt5lD=YAR 'U3YMCG-"703z*^ίsdOEg;9yStc8Xt+ ox,oNXd}h5&L68,.\ё,t̻mgFdY["X<%9#Ms`M@Njg "?D OM =E: > 3CAD%deȁaj<|}Y8}]&e tT&m kCX@fS+W};B_%3XPŢ"o/XuXXtݦ),R,XHV")ٳ~_0a„Ⱋz}`\ ]E+>?` e;]`@}級cцd,L@vJt,TXP./l9żSM!/rzy`8`_LD.6~Ehp) \ Y$yv DQFGE7IUyPP,Umulk6bq ]WaM[O,o{oBrg8Kq(aX,.hrr)bx9U^z8, ),z2 "99X8^ɪVOɯHA{PzK=M)GIn kM ,jEʑM`E={joXBۍ./,!A5E { }Hϱ0'3̈́"DI X NuO &XSruW4&*~Kvp922V,`-db:zFtwxD#ʃX7k7  O@5bqŢɂgoz`ehIx`BhCiK 4\˼ݗI9,ps*cJx(EK$LqPqX;W6ʟ 2lG#EŽ`O-)N,S,ʝ,`X|Şj$wſX.'_8X0,ZrCEY 1 ΢J¤u㮂ŶxizX=„ {`}_ėPW?CU)0dVt]C0y`agliUYoNޖJ@D?kU,pPov'XT ~=UmjP4wW,^/|C7!I ƍOcpw;ڂ!iK3J ɰxa5—Aq%+2$XgŻ"{\m,z,f_}Y{Je΃%i= Xyz`vŲxt҇.`Ad]L>< ažX4j~,nv"tso? }0z]QjO0&LA2ms݃^m!+5, &B,`$uP,1i·$ 21`hf}`{G# п!4Gr e0hgoG)?{oZ>XoŞPXWOP!?,XQ< V3@ۦnm玸=*+96}Kpn|PR,4I,Щf=wMn4g6[QRR^n~h,g*]Z[0a ,(WT0`K.*DX(Dr&=?`,+XtKG@3cB? Pg59li,dG,BlJ{, U"V8I7ۣRc,SKLr#_@8b!9:ZH/ц$4x+o~jdozJ`3`ء劇 Uq^8XL5I+;wE,˶Zֶ,͆^vt %H7pP@]T/1= Y BHH,Tiꪢ6o-ZЬEIc7}XûW|#ʊPE])B/]`fɪSO-Z4Csq[ |'8a`\AaCÖaNcl>=e=^&JV`۰8W/XƅB 溤v ' 7fg5u}|Sͻ{_ 2.,X"JHN`Q ߧ8X<3 ;cg>ݡ~G%ϫ,9P*>h Yq:9Ed 3 k .V%9,&R$>\{X^S}8 <%9p@( zM6,,F-\V{,0,n~&,ǂ* X@]1Ť%f:79Xtx),[^ MF' WvY>4$NBbfHE Aq6ɵBeҊ~@h-Wp ksS}qi#OȰ1"E|ۤz{yPV^x/l9X,l>?  Dd*O  ?Tx4X|}`g"?kc/ XTE֑V}/X4i3DŇ1T`te,x-6XvT[LUvɉ:YN= 5>u(uAz2ֶel",,~)#CStQd#q]vt 00+l^Q#Y Tj0v-` d nU 0,z`ёOƳb~?sF,  g us+Oj2T `Q[{Xyjr* }S*3dZCkWyJT:,`p(勐>t&mvOeCrSkkVNf10^>X\ ,zȄ&جb-k#jy[H 9  @ATf md7/,X&􊱖 X%bsz()n`Qpp[=`bzr,B(9,I #,RLf 1* Lp=Ƃɩlq5dO*+"yق[S}[ O6v[(o, wlj,0*6舙/6,wx{^&|0-Zd aE,1dw[xݻ9$u2<[,,F@6 o[a`A>fܱ|_Kg a VVdCϯ ,ŷ!`BB!X(PD`g<4u4 -+b!Z5tX x 3,S `@U`SW]B8>@00,ښ~AYBq~1@p,WDw`$ORJ Oc<пk%vP۽Af00  XBy[?X| XZe1,( +~ Z^uX e0 +bEOvyx,zlEʺ,FJ;,5Xy>$Xa``\,l'r@Ѭ^˕bX"x{5  V O\xIt}͊xߣb c XGqg|M`Q @` ȮP r{/b̺n>qUӭnT+T1")K&Q#V&qEuοmbTѓ(ކB;+K#|[¸nXLb*f)sۓ8w0AkīT,+od;>z*9C٤Hf`!jYR X3  ʒ"(]R7%|`Q*^P-βkO7R dQX6T~Mm,MMRJinYXv e$,tKكBcŅB|q=)ۤ}uhAP3T\`ђ, 39}|O.m:ɿ7 ,a!3Àd2KDZ A`loh5d9]ڒVIa^IӭV00,b›,[vӢj^v^oupXhJ`e{E1uz^s >ɍg'#H -[lYN;==g5`w>[k^t)J6Be v7"E! oUZxePJvLndpb<#/LB%] [lt$#ɕg1dYϣy79(E;L9wj;bX|Qv v;k rL޿i ..wdbkXxŎyUZNQ%,sKl"j&5G,z29"=UOCy 1ޗXajclrc7$MB(~bEڂdHS!&^~˅PL B ~EEi܃BLeb;c #SvvYA,~-Tav"J,XdMwBg(; .L+5fbe3gX'戅[7m,>M+E;ݼU)*|BhZ|EzU7ݿqxT[OO, )Q9"EO$,>ׇ80W|G.,/*t(Dkv<f{VH,81̢ę +W 15. b>xU~쥘,y&JĢ0Ȣ>bR,TKWXd)BnC3}giEA,d@hb-%_,2^edcPrcI&'~_|G1nc"3wrYY%[6 /r'RO䗪"rPWE팦j#:伧sHqgrp! !T#_jtB=tm'O*zv"Oj($sRyوwX[mj5Aϛz jGkͭ^U+U-as@ZĢuj&yfj+ⲜYD2i'N4TH'!lu:rD\v5p'*QF2M|T1_l"m%u  y"yY9Q7 9}bwxbYX'-W ,aVPlکnt _~ o. Y]mibvcNEq1h}+@ oo^bAbaFd1 X"1 b'bչxXYŹZĹZ;MVB,ҍNĢ3G '4*c,zShF{ 3X|Y-|X|+4xk=4 bG4e^anjm/ wA(VWš#E(bAaEg$y|{BU~!4:J,b*{y~bEX|YWH Ģ qgD+. ekSWp_xΊnKBv^ fn#y L\ܑvĶo o?E='79+/qF qW|6mA,"@ m &I-V9`X+,&f+,oR6l9E(x; !E|TlC,.dݭX̄h.YDSi°LfaK=dbQB NB+ ~a F,8r31ZYbYV:dyb!'oǝd&fGW.|pL-lyھ8xН8k-~|fL" [d[AK-1zEa^2"ZE (_.ZYbY"( -1N쨹֪يcTW6P:^[fi}compx[A( HGo\,":Wm$E4X, %퓷f!\{Rs:|(njFv* G:݅BO-|F)mк̊ՓP˂T,Ģ4z{/4E>bM@,[V퀞Y [Q$=DZy0Bd0:Pebᇳ|X,N˺\:orĈ2h[,b'OOI,ڋ,&[eђYS"w1 n w%IĂ Xb2& zACF'# X $X@",y ]K,?u XXup/b!o"CbAb_,I,b@,H,`  Ţfg XD^@% X'J,zgu Xl*;/$ܰ7aGłĂ7,հbAbAb y@-ĢWR,3Fb!B:_kcx)IbqpxX# 4a XXXl,$$bAbAbXdbGbpb4 X,M,H,`XXXl,$$EubVbNb[` X,H,H,6  )/_"Xū/wX,H,n)fbbAbpK X,H,H,޹븍da`w6`0$ :t^@IaXxe@HhU*^ɞv>MQT]N믢f   `-,p,p,f   `-,p,p,f   `-,p,p,f   m9z~NUԲ⟵xDWTݻ޿g%,RW(aGmXXL=Ǣ,P¢RE*ZX{W ǔ?@[' ^Xc0QXtEmY`-,p,p,f   `-,p,p,f   `-,p,p,f   `3(  Uy˶BL_o/Na}G%ΖL+־".- WNc+L~ + {q)_jswaM~p׏\p&fbF .yDhq 6B-ϩۏ/4 je8; IDAT)KZ ᾞAXv!w8׮(5O^P$V]`X4vk^o2kDf6X$,ر_SXt=acc񶄅#E7 &WEhܟ a^SXB\[g󛙉 ^  aq39ӏN-"VahՏ#xDX׮V\\0QX|60ڎ7 b//>zPc:zEpco@X}=  [.EyvU%I9yV;IZ$s)7,ٔݕ'I*$YyJ]1Vq[,[IG^X '*^F}x.L\L.wDa!O_fS`|NUκѸ^孧 qwكބ2q^DIR"Iv]Dq *Dxnàb$"t,I%Y+,UˋNk( ?(Uad~accqBe52{:QŤ ՖX^UgAbSP-Jf|~ئ˨ \}>\#{Ռ{*+kG+h6^nK֤u/CaTbԛI0sp"u=z!o#raQ/󢐉(٦6Źm=CsŠjV f{O(Zg+accq"\DEuy~,,EQ!vQAOX9Fզ: d',֩Hv"(9r*YvVi[gwy]5٥(7Jx$R0|8e1,3>gYtMXZ}0 wzة,#+eEKaEuH终0B>,d8:Uk &;Zja![dѶWUWM0s◕*|zƑwʵ `IZT:N2>|Lij-%[f-+ʯY_m G]Ud7ݳu wjV?dNo?p #jIaf c;MX%RlH*[=a1>Fd4oʮM]>YXM.jP_+siafj08Muc?;IJ?I^Ƶ"hZr.,ꃥ}J [u@XqQam5vۯ'9jCOaO ela88<eOX7(Nm%Eᓅ5ʑsյh ;nZ"\woJc^Q<~accq-wV?bm(IJӆ¢205zf!k׭jkUE7 | ,_o(:Ev,DŽŨv!ͬqm}1ڦÝqEXyBR6&^T|xž42΅woCŨ vs^k߶{١ ĩ8  'r'ݼmu)2+bY υ j.JQXm;f!鸭cU{~<vlԒ)s7AO#EXF8}pm+]8Dd<}Y ӯIVNXtA-,Uwv4&A~q?bbnׄxz^ʨ 2b. ](QUĘCY9[;$6n~~ MXh,. w/glˆ\c[韯z yNxqcj#~YͬͩPTO=p=2/M/ _;;W~g|i<NߊlϻtC!G=m;2p\s0nql7&/otzEZۡ$L^K^|l'i74Oʃ6ǫ~9`[GoN0br7I;r]GLJO,4˂prE gl!j>ܲ'')Nxi-1g3i<8,=IM o7Ɲd;.2zV ^_}俾&ubxW"LM{?xΟpyx5ucG,nRw[)y6E-rڛoCB(XvmxK\$aޟq#Ϸ_m6rm>?6!TLJO,4˂E;Z%%˯^cQb cp$dY7LI`< =ۓn6SnCܗ7E' ³ӵϯ![;<ݖp^^k,V?}[ cwS0$_̋~zs4fO-`1|v!0, 'i#|`X:,-G7KLW7l+.>,މո8SO,4k4Yoz;O,4dLXh, :Xh,4,4  D BcBc`X@tXh, :Xh,4,4  D BcBc`X@tXh, :Xh,4,4  D BcBc`X@tXh, :Xh,4,4  D BcBczc.8X84BcBc`X@tXh, :Xh,4,4  D BcBc`X@tXh, :Xh,4,4  D BcBc`X@tXh, :Xh,4,4  D BcBc`X@tXh, :Xh,4,4  D BcBc`X@tXh, :Xh,4,4  D ٹ6 3`!4ԅgaH]e"0`7]nSI4cϡZ1><3Xh, :Xh,4,4  D BcBc`X@tXh, :Xh,4,4  D BcBc`X@tXh, :Xh,4,4  D BcBc`X@tXh, :Xh,4,4  D BcBc`X@tXh, :Xh,4,4  D BcBc`X@tXh, :Xh,4,4  D BcBc`X@tXh, :Xh,4,4  D BcBc`X@tXh, :Xh,4,4  D BcBc`X@tXh, :Xh,4,4  D BcBc`Xo] O~Ֆ%Bc#msto}5 Iz?婓N{ = !y/lYS/$K bս~Ȏ8i?9F?TOn?hhV 3K bL/]pՊO`9u9a/7'!-*7[+3jZ{ ü Ndgg~3Xh,4 frtuxڧG{fB2Y;2حn_]nKXh,h|p,Xetg?]onwSVkqN5{ăP˙62X,`Bcqf\XvUdÔu ߤV嗬38m4ӤN6h$|]jgQ5E'}/s4ݩFKo^gߗKy=LQ疦HӷwN?|Q=6_^>_W頱qɮ/D]/;`9Wvxh[}.spk%FkeB8,_1exq̸|3];~Q疦x‹EbŖqڵrp]^y[=o< :XϯC/^2|ښ3Iv9(C=M+4]8p˽&XƇ|g7_.~~s-)ց4X$m,4;N|28Udx99s(VA^VqS>yE:vzLy_>=* i<~ IYR| ޸yz3Nlx/ xoƇEH^o渷E+8o< ̎:4e__n|>iVkK6ن/L|l{&bQs~]x˺ȏoFεg\W|SWzJg߭ f"*Ƕ}7u%&z/٧ϊR= HiҏnΒG^nbh|PNGJG24ѓ:ѧ7EvKݤP/~<0W!fr~6 XA3ۦFnJKY+"Rf .;3R<:P7pX$OdrjnXitp`oMp3~W,[Va ch۳f櫩U1J[SWX|?99}%U,L&ZYܩXdqWht hTT饋G6XRRxĵ" XHQӅ5!VW XE>t-Lm)Ibߗ>BmXX OX4|ڐ=^!L>_&Hw5)A>8*$ӫg\MV,I==y.dȘc rpz@qHm˻f>b1!ZXWȊs?E5)wo5pilD?%Eܔ 'DFaKbAbAb% ԬؽQ#otB7\J:[C|Wa_~WvɊ7x/Ҿ6cx5/ϊ73?@qTuŢXtT,rF YrkFOqbʈDJhc:km8"wF,H,H,hGZV\/O~E,ob¶ŕVB(-ub MK^uH꿪;ܑk;|&/e,ɉErV!]jWŢ1_*WX!ɕ5zr7 |ݔEPN,b+q1ɋ`^K:Y/I{b#XXXd 3r[M9Ăݿ\,8ݵhhLbX$7vZؾ?vWMbQ 39[jaլ s/nUb!{f(,WϷWh=l=] $ 9>bq({Ǒ]vA,H,H,r "9br IDAT[)M:~"kض3P꬯K!ΛSJUV,>.yHNt;㣥f&#{эrbZfËi09;ӼXR^0JH;4{UwB,H,H,rN:L^[v$?e}t$Op–jRD#iXxI?L/ߛk{ljaڕ6HVjlbީQy?`(wɊEEf<ȅx.F< p;7Ǣ;~JB(PP,LQҵtTַeą¨Vr~wˋk"}A^,m70`DOr؟ s S\, c>Z ]b+]/^_Jk ׋7hWE-Nw{s]~u&ñ'n/vI_oy5d &+uu0;&oO.kgu[ Τ0<өڹۍ;y:jPT,*鎶]m܋XUɂXdqۑ薔Wvn$+yb"S - m0~?8< =l&ozي._Ml2X\lX5b5=IEc$#jvbǽ~iRN,<N")k%b:HDF~/ˁsbQ?ӽcWYeWĂĂbM1+gZBw48͛O*TsLr}`eƊ9Me,4kl49}dnY~  ?[nĂĂ b   c># ݝ)bAbAbPX,H,H, @a (,$$łĂXXX   bAbAbPX,H,H, @a (,$$łĂXXX   bAbAbPX,H,H, @a (,$$łĂXXXiiߴ#A(b@Ր-*I!* P#' )d3ıCnU$g!? l,P@*X0@ 6Xb T,c8~6O,4w( C-FAc:@ya7XbѓwV^oe~8@g`, oE $:wq<T?O$c+@^@_@O7opOr Kn3!>V"f#jXpM2hR+t&Sujlpv-D=^3xR9?yFHK6Xbb๚T^9hTl2u"R JrR7-P.kJcA.-AQSwFF¢ߦ+~k%,*K+jE.}##e\dC!l{} .rX4$OIJ'W8S(O GZwy)QA.7N(U5iLSa~O,4(QEJ7z~ T,BcX8 4.NMS@#2sueyB%q?BQacئΜv.?-x0zcJZY9$N|=F60 eRAX'ylTJ;j)O2aIE/Pӻ3ӔǾ~Кc,տ(9?g\偨g-'huXm*XN,T~зApUf{zŅmsr^  V" IHZ6"Α-Gޣs.1d|GbT]E0T|X kA[BgyҚSSckFXT5o XTUAj#jiKQiw3YVH6Xbbӧ3D=亼cD BDA>:!"D "!:3#3(ciܢ$IȜ@_@HEȧӖ!o,BQ9P{Į,2G#s[3i'GSge' #}!wn˄40-W=űOHxZ  #Ҩ1X<+X@_@T4_ xTܵ37"#۸GP ="#um\'odY73 *n>k,椇XL#,ݧ_c'6ީ~XrҎ?W7&<2-r1ϊg, /XbE:xGG wbS6 fWB$PTcQ&|UeQ'KG#Xԅ 2x:c>c,6HVӨ{iXlkcQ"M7{gדH҆ T:D`茭8bLT#=٣l2>?澒FxĂGsdulXni$/B=p }@X@ ;n],57GjX.{zoAZ;!O3HHk|%'{x}|Rp;0Pi|֦8Bѵe&E/ \ X$Ho( 1BKΑseb {bE=b*vdK̤RP._LIz 9/FJZHH-T >"D[DG]&jݥȃ'A}w&{4^r)XWȇU|b4b5>R נ- T,Ppb#[pA VxX'OLPAbamCo/+5A9h{"7yy|7:=x&^v7\$p\n` F?G,Yf_bA6{eW(: [nĂ%%vKz>A󉞐?Lb!ӗC[46xNrK+kho|R6Y ݓ,XbHppXHszG[KIX;7~I[ E,,tK}ra?h81SOk+xbAVD0ys%)a7߫99 <셼OsdnI|?k 2/P%n39J+GFV"ZCi!שurA[O'X,P@hd(5uwac+vk;t%^3vTĜ>ּnjDxiCrWRG%s4m:F>_7vMC50rϠ!^'[,P@nʒyź <ֺ:)Xb/ڼk[bB,P@ɬ\voBq[bB,P@8L8[bA,P@=Ͽ?gߤFwx`:zxXŻ-@  T,P]ɲ|1>|@  `l@ YxƽS,zCWKfy0XblLXi@ łqf**C, T,Pz"~5&'H,r ~S'kvY T,Pl_sfqlb!l!^tf͌?3)XbX0m>H('uXr_Xr, T,P`XHKG~>dEhSJ2# 2A6@ H۲, hmiX8F_ T,P`XxtTE)6Q^P)jL*X0X,bqtmƄ9@, b0?3)XbCb(]-ir Vba`I@ E}bш;؀%Mj(T4ir=QC>qiq]f}U[;c X;=Eԁbkv;z?MFT0dL*X0L,'B8l-_l7_+c %~W+s{9}A{&Lղm} &PoSsRckźL%WhCԔfA,nr]Z{*a.kҫz0VEuI9bu/ųW~0bL*X0L,;ZF&[3EmѴC\YxIШcmQc<>mIcܐ=}sY,b%yFxy>'ϛ3Km 8ڷ"}LvN)-@(b0?3)Xb0jBUYє9 O?X'd>>%/3޽hIz?zxEW]$'OqU,eba B&JPioR^ªC-KJ?^ESxwE:`?3)Xb0'*6?qlT(l/)!-[݃eኟf`fj@_fh;Nڠyy!I%u+'O|&/$䋩$gf(Vq\ܣhcVsR+T"h`DTjԒ*=;M?  T,P`Xy===v,ˉގf2/ ;'tAOTO$Oʑwy GJ}f'׍yz'2c"W(0cQuX)~=!ޤt%jqO'lcEt+Ўnc3p T,?{΅9R4C!!{Ґ9CJ[B@AU;P ^mol$! EfUۏߵA`qo d؛͜#r`wFE8c2Cf`A!L G'j_{JA[MXn眍 ̻u#dКt<;4 `yb߯A 4H!5kޕ?dLJXVꄊB!XP/XcB7meݙ۩A`9K@t>K7=lL{$Ӡ!=\e, Zol>P~:"r) +pHi쮉.xPP(z$aP/z`:(T NҜo<.šdZg/Y]~aI 9'Ö.,J4HM `qRT@It8 `~~+xlKJ zi@@Q@ /XT |@Ng.iXxd=NY?IZ英 IDATIמC wO@) FN֢Q=\Bͽq`t%r"*nON8/ks]>JYP/  XcB]5Bd[KjtMdF$ =VpQuNZUV՚ǁ`RA%leA0˦'\~Ȇ{r2-yrBLz yF^,+Po,б@^q}Kݼvݬnn:s;獉,gnV۞K(l31Bmkbű+h(V/XTyY)ᬋGٗZ b\@,XcE=ws>STzs<"wM,jMWlC|k/|͜yX8u]cgݩ,n^{cMIB};׷ ' b,3p"QX7coxYnM8[ S@. {qyCx:?& Xc!UnV>P{9,dBq!%EfD,R'ر>Xύ6O,RP2|$,<nݱ 'U-=cF8v z8&X{,ÇdbބwH(,б@B*0-ލ$X.zFXzSE`Xzݪ05{`({ K K8Z1Wg ]-9`>8̡9kt(`0S滯B3' ACx1Ǻׄr t,$*i0tXȍ JTuH6g`1"0ުyVG (/9{Ž =X9}t`Xz򽫸jΗ}ljpEf,P#o|-@f` ,P(,б@¯Sz`"jܻP"̴ ?b{*VAxA8F ؉*:`DD AJ  jw@^lg{T7À *4`q1,XsKb/ط!sO#XPA.@ЮFՋc,|>Y ` K*,8@ Ѵ*["S}suqi:X3o;*H[H0~6Ȟ c*UO4v #M;ߋnIm A.79Ғgb: AsO=rG pn˿7#o=.Xl;?iwWBCḳAv.=C(螿"'I wR6=j#XPn{Q;2XL4!d1jPӠE|e3EWV>sǍ ,mҞa}lQ{WH厖|7KZU6 Mdoq}C`:>%bX67U?W5 N'铥8-}}>%*7A UnٳU. ^gʮN9XRNR<,6 q.fkC!WuEt`H V&se9cfEP*¦[وG[s`<ʆaZusXOHn5~"gJHߛlZ֌K+3 t,3wc_'$ [JCVU4a0=$pXiGm9\w“,/(EحJeoTN\$Aӭay b˰\5- >@^:U8),8!@ ~EjfVD@4g@ Өzb"vLr%.B(ZcIg A#vEĀ'ͳ-ǝnzX-_p'+ .YȏM,HKJVC7SemFX\IrHս|`%'elw< 0ʞUEXضG%3vӁ䆅Y@ua+[ Viz 2hI:j%k/XbC t,б)[{Hbmm>݄#ց4:‹"2E*?X*czآ85'rH zIC[GTL5<Sԧ>yjI>I^{'^l9vu N E v=|{&X Z|fNabQ慠s\pv٘$=2X`T AZ]֕==]wv |mΎR' ;kѺ ,H!ZWj1k`\! G nA<`e-4!uʛӄv =%E?Lwb",u<6%{ t8Do[M,N0S|][`QpPIByz,; Dy?9ťq5JUrcTRF ^'wli?ݭǻ&wl# gZG]"  m.B/x]$4oshFfHmfbq5Nzmjb#bQ{83 ,mFPaQ,P!q'w*T_LwR"uGoâ.h@Z%m`! jyݫe݉¼d'X[ Tzq;TMkS?#X`Cq%9])I~ șMv%;XpJݞ2+f_jqt2 X o+Gڄj0^5AgOP F7Xdz',(bA Q Q{E8h4ª`a5-3A7O1bpx7wJ(ɷ2@ uJuߗaerX5ۙqlz`4~IUr 77\2۰Q,Hdv.xuPFEIռ#+{|ʜRīMlvm4լa5~gMi{ELwr"úW~mÖ\M,HkqA(fEU(8⵹BP k3,|5* W8LY}->\ȣ ycfOu_n ,`2&#e#TdXmݬ@/p2)Jcnx^1]\vNFR3u8" G05w,C7.59AG\>U ~^xtATpLš>(XHa=̷m괂ች=Fq,娵uO_ /'ޠΊDM aK9>B[;#>Hd3xe0Q1,hM3 rs`6XLZp<%|2[mLcN XPĂ"^ gGjGr#؁ 7طQ^`^eN\.2֯SfLg ,_ԺgW`R5ϷTT INqZh}Xo\~jOK~c$= ^]3P7=U]#;Noc!Q@`A"-=yksE$ <5Ud{@3‚> Ys0sgt}XևPǛw&Xdz',(bA O~ʣ]?sf'.x~X``Ze< q3;`Kjt}n 4PO[Iu+n4JK[Yהc:͟wvC X.Yh\Qx,xYilۖ^4Dpl 4e~=YD;0F}+sAqd#8gqsF c%s-pk )y,cb`,`&7,`2E7UqwյVS/aW{ UmۛT2k;:Ecm:*XD.7txX0a޵Ex^[< [Uљ R<94?})I77J;&Žx@DB˸8O/.R鹑4 E,CWިp|mLg ŘM#/+%.Tc7,εɞgw+v%3բ?1D""vϴ;= VuF"H$i" i8(f("QaSʕ%H$dE,(bt%^L㣯"MaerD"H$,(bA?H8U7^D"H$DE,(bA"ID"H$_wD}H$D"" |+S=z $D"l`A XH~5!=D"H6O^1Tʼn#1*"9!=Й%yNvݲd_{-B[|%$_nn}ӫt,Y_s5XбcyŴL@|B+!K)SoO*1I,lY]_<}is25r`Ѿ7Ƃ=aϪ*X%dl(cA @ϚE=tI&sY,d:'$fg_HO==6i/8>U8J*eڽ]؋N5ٔJHdz t,X  uV/)(qwg2 {?^fd4,*Г_>dsF]#5,|{ssF7kۆ1%sGM\FCLzGy/X6&n$cDD_۴*fF*sٵnhcż=*g,XбobGeZ˻jXzJJ^GZ{|LR`ѺRc["nHD|y譪/"!W3,X*R7$3^z+9q@Lbg/XVԢ>v#Y}P^UI A#9Xl6bI@ t,X`V$7Z k .p,2)Őu/cލ˭=nvA([P`ۛ1Q}А@OOrn_i^OjX:rR?g6﬜uY;>x#7XTfX|UG{RZiQ)N.KhFmoFŌ yQ253")ψ sp,"%:X޽7 ^?ȨN :aRWE&'>MÂEA`X`q&-bxGMBŁ {s _ʜMSTJRObﮬ]TlXбsa:Gz@j#΍]:t,VQ' )I2ByooF Rj @O:l=W%1`wV1uqlgٖ`ռ1$4XF7EI)=QW^~X}LĚvTdTecA"ݜϐ9s2rW IDAT,K,,>yeh!xk*HKbn7,&%dH{֢v1|z0XQUPaqbZ P'V%1x^u,,XWdsڸ'Xrn`B W;YU͝.InI՜O`AcAcNױ_cgER7+EC1jbda,h,h,o&-kȚtT?4n}Q_m"+ó?K#xg_em՗d1 ig`AcAc"CWկ}W~~v쀟#@Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,: ޔAv7#2m=DIlxBjq)}xƂƢo),(XzM/U>E;EQ߂Z\Fzfry)2[P5m&(`f׻<\8paU44mhmd mh]Dfr෩D$ӺjZYx`1,rspaU44~dUcS<`4$FL{:G{ z3l%gνU{(Xxw{`2ԷF/;0o:,,jރŨ>X߃߈n'Zٙ5`\LoqV$7وZ4~3w;J4;K5w?/M3<0)/mG9f ;7Kqcsumxg_ݑbKW맦{aY:g=sLIlu,O\fv7vq]mFGR&tȐ-}!LӐEдc\-ږir9My殮vd{"#7O w~'Rȳ>`AcAc3&M=zUR򹺚[!/ΖSmp~w6r"ak3&֟K"rGF9;iީUm)g)39Ru^r{y4|8.a-{:q2n_ņ uDι7݇u.u*u⓳OZ_igO'[mܡLhwٷݧ?o^YGIܽcC_K5Up&/'RgJZL+-BbCdžjmF9NRsֳR5N1l%: [1Y46-Kޞ^п&7'XF!{C&>@$3>oj6w?ݐ2n݇WD>'N{G^ШxԣT(ǩTXk; 'Š N6"`QKvDޥ7 D򒟍L; Cn^]Leִ>`AcAc3?5)%cҚDVT0.v0-|]l 'XGڌr5]c酡.NK )4:޹ݧʪ`Q)˲ bVWV%sb exNQ#Y,C,@M,8bEXg?J"iJޥS,;YX)6+F*bf+uk U\FG'GL3SIb UoȝQM,VU,f;^b`L/7D,z]:aw2X8ȫc\L y|e0K6HЅo5 G)O;] i()HXTCk.GY,Jzű ,a`p1oCx+ e) m0NWzpXK,z)dΚ2Ql`.]!X c \.Q9VpyJspj,d&KFFM*qL9fz>arnӰUH{VNbp],XvY0D$)AƽXp%ESk",7[ a72X8INH_)m>Rn:Lxd,暋Tc=ӉĢW<#rJb"e#0G4lnEβPO}I!L`["ʢ~*p7l T2By3ğJڬ?@ 'eJ$=mbGmU,xQspj,r޻TUg$iՠx[T3uX&tf4l<0Œ9av!uWP͓VNI(ЧEJ<4rHO|RoYWF  d,DHS2JOH,E}b*5F"3ZUk_Rx4l' yń> |zKymLu1,$&OCI*h7>עjbͳ194S]b ˏj+@b2Nj9Tw)|UmꓰXc_n RY펇}u{,^Tb!!*ˢw)JXkRnӰWgtEZ_Ep1ƴn6bH,Ƿgh;$eBI8ł~"/#yBkS).~7jփ#S%C,@MƘ<6 vxEW$_;@%ޤXKi-XSylxdMY*J{u0ESU)\ʲtA[y{h43v VE J@>DŊ?5Jڑ,{mNYl<-RFTe̡8'5Us?y%iW;y| H%thPGyItfr޼+@b2nM&#?0n9X* T9Di|s?ɕ'չ9DKX롨4RAiM,\EK^~LYv vG'Jm4;M< :BX bl*EnD'H[(S3I)ŢNϚqK[/Q; d,\9\)3nֿ;R2''9*Mй֫ [)!p V@c)`׈v*3J O61q|h9KixTp䩛X3~gPK.Sq<]YQ* 9~#:SRP$F 8bwx{EEr_Nf,JQ#k Ŗ>fb^Ԭ%#vX c#WكZOǮ- t-8*?]Y9X%]Sٰv}nl? HgMoUPtVNݢ:g/X c$0*qRwA,A3:A,@Ƣ,NMy7.u;SbY4{ d,h? Zɏ_Zv{ q7,("'#  d,^A@H][nFk"p~ӷ&:C >߿k>wo}}B l熘1-=f@ ;O& Mw鐬D/Znk|kfaQWK B1s*,~R?:,e_wXsN:?ҍ7B,X ccU,r,( oai"Zw(=o7gfp7v1+ĢHsbuLwkB@:Y,@U,%S5ޓX}hZZn>&E,J5FbY,m*45@5L"-պl&W[뚴+GW6_}HbW/}1eK7 d,b̴AU,mKbaS#x~Dα"'D.4/~~;+>_L``1\˖.{!t` d,@Ewֻe"FbZPc2cq7XU,޵I,~}oݻnjY%[%:gX cB,,2b.nj]/d9"Xu5S$՟8 Z7 zVǹ2rTi3 :Tm DvAX缱|'n}/gE>?νio3Î(ؖ(PZ\(pAE.RÈȜW{dIi7lvI>֧Qu= YbOOf$FB;w`<ͬʸC (om?XNp*EX-RHjmU,k#G3`s{_\ nԑnCA"B3XGJ*BX T"`1Xoh Bf, z,1io8Gq3*ba sY8R@mŮeY@o q퓯@X,B;-k-CYdW185Fh`{SY\镠o^P-]EJ#>tw+ev\y,[ `<8/P,C9$&| îqXsZvwd;٬*EzWq0x}fJiOǗpWPu[leˢ7hYy Mxmר0c.(ޖ< 4K% C=J5*$P3*D@bF(?bԯY"[h8Bd4*{/vX4o;*Qm+/|;AXt`,T#t0+.+f;Fs$M W0: *idӧdm2A3uMS0Vgq/$,<@X Q69 Y>:^v uY9w)&> K#>E{^XдCwA3ezBOoC,IUx`zvgSdU{F.XP}2q/s^~XY;-λ||WqB%g|,'Bwϻ1c=!vxEwel ߹f4l#mC\0x[Dl2wIB%ԌPIx6mJ ,Z{۸:`"n.a|.tՀK-.Xl@W9` X dA,*s+I[=u'EL|%hdP=67d`d?Bm͍BcGgL|ZeGwn+m>AtJbA J,W{s+TtM6D )g@Jʹp38|ڍ wzvD ?.vF nv vAw!2''3]?]_Je* oAAʅ?۸of2(X`8|dyKxZ {@дJѵy$SO2(tjZw 4d}%"'(6@uYdnj<} =76pc(蛃cDwza`嶲 J%A&)xgJbؔzzP3*$E?~_kw;Wtጷ3h"w$U.J;Y$]e ,4_Iub>@*Baeg[G&M 1w`Dc1A uXDđ^DȿQ=HT'y:<Pe{c\֔y1]tu|4Q/> g6@WleE@SO$X,ڶfhҝl7cd1{u-r\co,Z^1妮SױGBoۗ ,NLF" 瀲  T%2| T `##!Ud2S,tyF̯п҈]sd:9Zg w;1_ɠƀaH9t vIE.(ݖb,;PI%5cf,TT IDATRXcǖ0`0blLvYc. tvSDhR15,'&د |j-L >,2߾sVX"X̢,[T풫C@ 7Mk/ ,!1ʘjdM Ru[:-_5> 3`t=1leAXz-E}'ţey^ȄrRv%Hސ +'Td26 8cSR?X߆qT=+ A)7ĖO,ZWh3&xooԪke_i1) w^VJS@4;hktX1x >L 1DR DXDmI@ ,; TR3jB%jEfXo&^T1.m7ćJ>nsMh¿^[b{eeqb} -XؠB:y;ڋ4Oק/۲yP~T >cuQ`iˑ>1ަV2nN.X\uxO`!ed -ɴ*_P  V~w4iC{:AֿȖi?q:L[ ZO ,KGtJK>щ),ֱAMOX%K4X@Ytxi^7?IA&/~F:(ueT]@%rWֿ҈c7S[s&׌]:7Py-dIpΣ59uKn+;t[J  w{{- ,2|; '{-^&q?X_~nh-H;EԒ`ũmSDzΊe))՛r)suΣ[+|[F+IV l=z8#OH7h"N ^K`L,ӃX1c,-PΠy:WdD lXoΉTJ`.=Fg(Ő ;tKJ~0g+:YǛיdrviɫnֹ#SjeUT%=X?юX'@{NPL+`sw ',} nB\]Ɓš%ojZm^MFZe߰ GEHY{% &ܿƫq )m Lx  \7EX"Bf2`a̘X1c`1.E [z+c],3A)`OOX,ǁE7yOt2, 96FGCXPӂECsLc$H4>.=XN͙zaI,{B 1! F$p]= :J 9`qHrnBH%+BS UbgEņ!~܅CL]X[o@mQER2M2`Q 6x붰SR$XhL,3 0f,,>` XUV?KJZ̡,WcBUV6JL Eyܖ,.icP6{ٿԓ㮁%z1"J7 8RϡB:,,lLVV$ JsѬ"u]I,{bBI؛nX9Jֈ _8$DA)bw7'-X4N7t{v,4moҏۍ&環ڥ3%nΓ*"x8E!U 9SIO FrPon ;%x-EOo&ƌX3$ʴDè XgAkb/N{TE`G2Y53=Z|m564 !<>G凎Kl>Hݑ&ON+%]Z[8g~e8ї= |ٓý#+/hqj"J[Bś%H&,9{##`m5] X3 0 cXe K$bJ.*8K,:&daJj*Ƃňڟ.C;,)f#A8S@2C/]I,#4x3o}uڹjdY(H%3'؂ Xp0rZuJG?XT$]fcsgY7Rx Ȋ+ tOr vYh8ܶ7Y{ baٍyIżUmV(mZʫKBS { H䝽=϶]o- u:{"N|w-N"J|cx܌P9 Ģ_EX]`qWuf2`a̘,LD,S`A "9_V}l&bL;ڈ9.2ȶuLfYm 1`"ue;o,z卑#CgйEk=IcĶMQyHhurYFZUZw9Xune͘.f);b?>\ VR6 ,ƀE&j#Ƞ$$Ob_ ,lۯj=sb#dmI@Ūg;,badӢ$`;oZе<]mˣsnRf\VN r'd?t w;;}> _D$= 2bSsr+Xu[M%_T {30fD,L˜XJ y,L׈,zN=|{%y-X`L\#_ǀE_zpM|\2DB3wyyH[&\D_j>,f椋Nز0MqBlgH; T^!eQ£l?&Δ5X҅ew7V--cYSZ>F|xO#+[*a7vO?|% Zv6Y_!a`kAO0[)vS$ ӕRn$ciڇ+x9r'D>t wشX|dP#,ggb%n x-zzdV؛ɀ1c&ba"ƌł |;`e"ʔKs"{eg >'yD`a=?ұ` btBJ92ʦV \glgzN?c"[.%XءL?bY; Ŗ#Rvw*''x X?QE~].Հh*$ Xhܓ,H0`Y~Elj-X3d"G,< S~ 8!YW%ך$qw 8)Sw!XL ݷ#*.X{j%n x-z瑅 X3f"&baX`rktio8V~&?H[nElZsJ$IYat˱C:p)AhLc:qܺw7qn)U Xg*mwuMgևbj,6֋o^>ݒkes :oX,dž9m8, %,"whz[%o;A`AfRZژgD/~&mYN~O,Xw0}BOhdDK0]A,*i|-~{7eZڰ:,/:{AD,k},ȿh+};67k,i2ȏ/ C^ ֡R`h6vV0y\k5֛P|lPk^LE ަ y E%hdM,  XP]4j< ]'ƴˁ˄pa.뿧r\ӕ^ N\>]us)o6¯Jr5+r(* mܓvBe7˖Y7v`|9 KCСߝ6Ň' m_ǯM1{mХ.:;u|[%%c- ` XP{ǢcWXK<B}%F,P( J} CXfB!X< 7` uo` X|=Mѽ(`aV `7F»!PzղMqZuN0 @^ ]K nų~`qeB!XPOB'iV]_Bk?D#~(w~jV9NYQkzTmɀF,0baZB"OzQ|`q-$kCɃYJoiR* jzb DO,6й֊ںW%F,te׭0U'PЗ< /@T;e?1MoUU]w@-`uOC` X8̃BP廳>;pڗ#YYʟX`#E/yں [Yַb5k-K,ٟh P( {ΘlpwSX;`aZũ+/#X`#_ ,_nl9ud\Fe> ,Sr"IHd&SS*ZP>o7uY Qq/_*#VVdYY΀OBvo-=,OO"N=0Xv,e9:PoEj^`MG9k|ʃ^Ļw` X|,+2v6jnpcp*A.o,eW'?,ݓl<7M O٤*XnbUdR_l{8g[} ,S4EuBո3W!ųn yTʻ۔ GBPs +:q6!{.h U6 4Fz $(g`m.ݚ]y$d X`Ģ&T٭e8>;z,&CYźBwQHV#Xa7;``l`qB9B?6@JGP-2-Xvg]̃+|f?s^ ,;b.+&dDVMb:@P(}w M] vwSr($`(e PaR(*`凥XuZ*Yѕ4Y._` X8'iFUkAX"^7"GiVV$KB TprȂƉ'fTP_5E%;Hbx~J8B'*PlTyGB]^\h P( Ճ`1&2g/4X` @XR"æ~[j.>1׾gk\//DTF,0bdty}G1[ÿ({n'`:aD&`K<Ed qI0hFssTL`ڦ]]TZ/+8g&BBUlIb B= l$8)Ɠ{m`4q(pWn֣Z8[2]1s!޷> X`8#>l&-eF1;XtH&lϸH*b/7;#uStFGBE`AᎷ]74q̿2=; -˅( B Xg/62s=0ph?X(.\2rʘէ` X6Na{~R~' ` R+XbkqOt2;JioM,L%;vno( Bi?p7%X\4ZM1@G`QL' X({և` Xt J0֪]$,Ti ,v% h4lH Wf0B)L4;lEi.TTu BP yR: Xe3Sn3Xٚ& x ,0bB%itH9Ŗ:eZku;ְF{P~$*6 A>|sy*ԁӑۀBP(T9Cƺƌw HB59x ,0bnٔ ,PB=v :?\<XAA3P,޼X,~-fE!ea!; {$( BzwXa2w u+ *t fbtmKET߀F,0b)XD^dٻƕ%7["%d;Ipx&L`A:+f3YKnvl P}qw> #靋X,RYi`0 kΌ7̝ZWW3BJ@ [=qbe}~!Dyd[?ω7yc bA X K,Ο} FWo_B;aN,fVvAm:M{EE?4l䌝)Ό&]q]ll K4;-1hEIH|F (߄JOfé6X0_iXMK45=wF,(bA )cUݖY. Ig Cv},o] ߍvo@!IBu+ P+} pM,2CNZ䋩!}[^G]bƆ=c@x[kwp[^1j,>q&Y h [lPLL6,\ wv0]!EXy.$@ROOX£ "HnډG!cq[;\4,|K^ %-%cXab:ĂU 2dFJL.M|6Nfnk.xkĂku kb_l P벌3~/l9<ڡPXPĂ"C XTԟT<Ȝ &D:,= ;~w`D<0 IDATo0!^;,؉>u~b=.j&fj|M)fsV@ ;rdۓ.Z##1⌯6b.pG,䚭&_Dk)gy1 XPb$頼Y44h%N33G-{鞉 >"Tvm0@ .ޥ.]*kK9_hp!E,^}jS@ >E,(b(W _'؂dƉǘc=Kop[$ @up𿉵9Ab\o gMaxw0309+ N@Kd}.[cӜ1z:|u{@ !Kc;)5o&H,Q [ S׭%L!n׳B5K17Yb_]c&4τ ؃L | XPq~:ɼKjuvBMK34FoX\n /a 3XX$qg z躩1+bg$Oq@ !0س)"3Sh;%vYEa25MX\q'A,nݘq掅d=tqH~؇IbNXs2E,I,X<XX0OX0-볱Q[ՎX|փ Ym+hp1a8D,d4E,7J,&$3a X#/'|_cpX sq=nş^㗔u1 &v _[.JH#0R, N(7-18 sp-t&uZ]cbbY@;9] Ҏ["nًXxhIU޲ kC,2͗J"7gػY^:M,:CcBK O'E,tAU_5U WdzsYT2jn9~jonIXZpU]Խ>!o;6@.Mn,ewyv Z@Uw;b/O"K~tAWeX&$DuuHB#T<bUK\u'jͩ* b橵rE," y ^QìS;- =ם ɃXHqo۪,xiC*]!:O>Z/pjTX8GJ1NoS(r+X eX-uLeB6PvK,tXkm8'u+6ŵvq:4]]oy;oWPūĢsfvLӏE:u'W?k%ܦ{osv2B7~Ă"  d: ,JY)R P2rxH)H(~2t"Xt"n=5\b%Me鬘_]&oV̖mriW^M{fRWjB%kںUqmyCu7̻Ef3&c^۷*2.b-3~@{u|.~u TН_JAfT4{OE,(bA ڞ3u/r>3E.Bc (_1zr JłR̛ JBbTF,'.qjIwQ>[K*y \<fO _!='1& Vo RVX(+"~ !}1;sT3|#U[$$<#٨/g^(\aU{<|F(tc\.w,(U@Q^Z+pv3  1?{gӶi)!Qhb@BB(HmCTP*(]auĢ'f=gт=37/\ Z+y|wD*|cPo>'ShF;^k>&X\;%2IfnF'5W똷x?puO9sF,܈3g)˕ሼ#w&}6Xn#XBWsxW)d{$*<`@ _Ea?EA lq.ޠ" RwWq&as[Lk,HVX,K53^VyYuN;jM˞m  ؎ق", s/3i 9DD`^Pﱖypg:cֿ'qgq  u#'$n`ZV''J Vhإ'lyԶBkc׏{j,p6:AwZ [:X`ȼȾ:B~i,GBeXG #t2 3XIKX^ƙ,`0E3 P,@FXn[FǤQ^it, C>ro'&Lɏ$z90gQ#5,6צ3g܈p,(з74X`nv '+s;o]#Xy?rk^O &L!b Qc.gȡ-n\ X\QkJ\=!-)+k: 2qA.ro;FHP<~.M A!j'Μ9K 7bF,9N%/&/ }Ob[v5NӋ`mc n,ٌ}%}n |EN}w3ek'`\B%jؙ/cubXdP"SN :y[| 5Bm2 Z޳r`񛞠SEˀ43߃Ǎ4Ba{Je0xk=_XRY`]v,|2jqf ,Ll @Tdi`Am"c sA@ k: prǸBS4Ew @yLBqP3gRX gs$-I5ӴwP,*eFVi@틦E2>_ ,QpFd[[Dɒg_O1Xh9[eIU `'r=Z^tG & σ/\pk`a(ԅ7 q]d5C^X|!,;Q؞΀*' Xm`,0,>qGe_þ5_m bǁHZPV);t1VE""ɥDOx`Sw?E"xGgx: ,)r- ,`) `,Кn6Q`*X "ؒ#d 'bڞeuY+n~֦)=on`~ H ,c)=6X<)r}}LC G.G~q]Ql Zj>4=Ǫ뉜Qk`: -M6xalKsWdO-`(?@.?m MK ىR 9R'  p "rA* \qTzK]OΡsm؞3;O,hh0j;]GHVвxX\ݏX `bٕ~XT3h_%v}SV!√tW=G_bAXs-#Vze7虜X~X@9Db!vC,;|&_#jsH AOeqw 7 etlO#_-b!mKLQ~l~ma5W32A2$EQiYLʉEԬj`C·XLUF"Bf$Ʀ%54\S8::E|-#`bAL>j&P&-!_Z!O,H3445ɉ+fX CL 'vdsvvϑ[LL#nM+˚tA/1%6Rg<4Qͷȭ.#igP֍o`1vL.k,F+t7_T覯ZBx?x,>Xs:bslM^=yn %͂ᓙ ꗃX(%j DزNww~u=tyyUh[g b`9Ьlx+ZnIcXur{SDU/w3D!G;xg6-^ۓz{ I]!+$ɍ}5E wF#B[lrig9a%B(׃?FG$D 's(qݟXdqJ~PGT1ch,?0]L%?D2bJ%39ݞc6k,}!Wg'%'(7L/ɏrf`'5rO#'\C MRuZf全?c>On+Jx,c_١ &G#$氟dpbAY$9Fƨ3v  \E~bט]3o2;1`5s(j*1J'i~V?bA@f{GM9c*# o[_FVB,-S?hmb!V ?Fhc8BD_U)F^)buPv]gRb!jc9DmСm9\4%xb߂" kErAsb ^\]~NC9nUc+(:JGU m X4I&\,7F b(E/(E,H4OaܛO('ɥ"%X]za/d<ǻ25GZoSۜX@,| r㱬fNHm_bms' /P 5e Kn22U+by\XdBYf+C*jk{nuQF*F״Lp P7d`b}D+ƒLN,Dmw̱͒:}B &MAl5eԃYemZrΘ^" k%t^R<Ă L<6+`(ǍhR\E-{UWj! ~l )x,c.ٺ;=VdV.8h4o/ f#I˻{ R'SL96sC<èyZ?\</^RFȻOȈx,cΔP"8NM26VNbnN\<qҮHJqLyj$MVJ0pc +$iY`):,-bA/(K,c +\є)c4.l X>?*݇`z~4c0ů*)PT:t(x,d$[Ng6#vߍ/_ s0?C,c 6j>)C?[t w[>aV/'nz~F0$x,D:ڌL]ZPs?(siS X$^8C_t/ &"E ?X -iXG:@,c UfٱE"=oX;.ZOy>Ξ6”!cKRQ %v="v%d B䰀q%NoX:ݶ6+-=ѧz/}!"(X hEzN&P 2[!A {/{Ӷ҅9RF4@B`pVPE8Wp>*}/<@!eTՓx<㉙9pW: ,z8jk!h_]S{ cBS0M}O*gDZqmle/T*LfY~)A icօF),`"^-Lnm&lUgH,c<J=5,*bdRM:6X8C `l% K%xcfm`ћ[[ DzԂA-?AOڞc-g(G ܢJ[aa9;mXo<> AX b[H׬ΪHH)}"z!P_] N= _[ "0b JnVw2bћ ?hs ( c5f!̬; Iq3*@3fϜl=Y`"j^ IK C%,F}Ps:6XX&9*vj"Aw0fqEXʨAgxg}ئ+o k`%d`b}!uc 7X bES}T~ MQRE REi!Ob&%Db|;3`\XdqE.w  ԙTOy o,~' ∊/WxX,@"XY* ?ջǃŕE?X(|ydY~;u3/%XEfFLX@A2X8X,#t Xt")U!,@Ģ.c_xg)ɞ> ,Ҏ<`akQ,XXEHμ0;& z;`1ExӁ`qDS: ,hdbgq-ET_FCX bGW'#a;z.zNx姀nJJB(A/eڎ( O^Pb]E6A ^q>;۝"L̫b9yRwVR@OuaAxOg #D hbNQ?!cb{,Ui<]?( z+`1ji*ݛ(߲JhbH/QsWHAX bKWD"vaĕXEq>!6hĜ`(!Yb%!.sM.h9B_8bEj8?CXn֓ŪK <A 6M5ft͘ V/ * <1BƇ,@ V _ D,jUs+R |]L!gӂ~ϦVڏ e-u xBř\x_;1L\!|-_. E@ihum'{j樚DWR~H@w*[慔#ZkÛ%:؟?{@DٳK? qeX@[ D,s͞z~ `DqF?}D+O-0@GD,.} x6_@P v>i|OVwWQz X4 D,>h5/6"q3[_ V h= B=~Xxi(?CJW^9诡< Aq)uX, X bA?_5q~Nt3dzDoJ] o"X@P%ֳʼnY(9,ٝGEA+g:?ل+7;WbZ*%uBo2yJCaNSԦ`r BMKOِ26"t% ;(魞zES4,gay>-<,dq]9oʸBiwgI8X bA]KiҴc#Ҿ*`q]* Zk/.4؛TI-lýZ$:O4K34oiCh/n}^'ErDEMkHpԁW,7=FV۟n"n\+u"iQqK~X`fKޕDR܍Xbb gPxX¦8B@!@r┹H9yuWnC2zdV-,vPoOM[bz![wlx~5},_o-uӗӓ#/uUX)6jw~ga:7jZ_b5a&wYFè6s0VАUػ{ϧSxW[,;FuGef+oWd6L߇A8(V/ВB.$z66Cy\_ngSPv;+e},ܶ<$zBD֟.3Tu)@&U+zRXY/M3-u˞?'~$$TupX 'NAqÉg4wD, 2I8ʙ+E!7u}MN}c}8mx5e5+OdM P ~( t+ F*/ߠEӓmc}X}ůSek-Zuf,'m.o;WݛAg󩬹kBj*" u:3Ĩ/ jnАOg&&E ȦS|ñO0U3PRߟM.J ]&Ʋh#>c|!X$p>`,XxiܠG,~ zBD6>=kGQoəf"*z*wnV-Wƽl1pX 'N+9+" !Ј7eЮ{IXxZ6їOoOXtt(?LjQZps)0+=krpE4Ak$8ZC䙑_UolLV kV2$n;'DCkjtu;YiܝG  c+bQnG1bQ$m3dWPF6;Qlx[قUG,u!&,DXEn0{$%\gA\@0V3 {,h"Ă/gO(m/SPg$1@8bĉp3NAb!J/$(rxRF,2j >tB@;+AIn\0WtG Kn B,-|09s&B ˛nDe ` Pb=Uo$Xkob^6JК˃UNS``?b 9⒩<G bjQ$5L1A1^hyKDW!O)ݺʆXPU~@eeۉ1db諤T~V?5ŠAo}1A"=]_[sʳ'5;".LKt0ӻ* NX8qf,܌'X^PW0b!I؞ҪZ|?ډEOlO($ SB4W6"}(jz.k>VM~B\=+{K_B,E ;5:zeiۂzCE۷FEħL<3:@.1S~baּ. G\ brk=Q [r7rK/'eiP~.3,@,}pq>}9C`}$:.JS,)}<%f-] ɧhۼo"nX8qF,NĢb%? J,:&94X4`8B`a{&B[ rLRTonL?iJ,.[VX4 ,p7 o^7g$ ;?o^mJYĢ˷jgJ 7O";Ƨ6baq].IHҊƛr˶`F#ܱf:  F,h ijh8bA+Jx* /}Ջyp"zQH$D>i=qlxDI>EX8q򛈅p3N G,8D,u"͸ ['#&@q c8R=瞢s,yaV~~buʃgkeܜY7!RXxJWybQo%{5n#ׅ$i|"6+F,,c!n d.x"XX<Ϣህ"{ӈ}S"Ќ"$X䡷lO(Kys| yl∅'nX8q#jxL&;baBYo##P6A+Z|~`G,kEȝr)tXmJ9bߤ6|nB,0:C+%$b4Rl#ׅ$i/vGF,,c!{/ m2ǎ !5dp℀ &^* Q$zlD"$X9J7; ?LDbd0I+3}hU9[I$T±*&oib"Zfw].IHҊg&j K؈[Oǿd8r-n$ s-Q QO~ڭPs6r$qlm^ݚciX*CSbD b 27xP(-G:c ^@'TXH Y",ׄ}\(&32LXx ՋAXH D,',%Zb/Bž haǕ/t(88{7owD꽅śJ~|iB*Uwoe(+9іQN4W延i[~l'u/aQs|u.&:LH[ӈvd‚­);yJCP1XD|B a!(`Mha!iDXYQ*Iw,s[4^:ѹ`O>ば"X[XY[;¢Qyۑ&,{gQ ) cx^Pu{|^?M#ΓyjikղԣP^Զ'=dĞ'X>u]'-5I{y|/aռ! A:׹$0!qFZFKlG&,&k[zy BC"VhϧNJ6|Bg5\eW  jfhJa%컺j(lr'rN5ł@Tc!SmHy1"X_X(aG#M`<2O9&57#EUMrD+^N*, l1Pf`y=?ks ;W-6K*i{];*5bEHLن痢;#5woHd O×( tUv{1wޯDX.yʼ +B(b|aMu2/'d'a v9.>BCB+Z:ݳ ~/oI‰B;+[ 8+`".v5P@X-_Xh8ϩ%s TdsmFo IDAT߃{틓ה?D,yҙ7w ֔zPX̘O˞;Wp\`A?SߧPRUg{3NԚ.Qo?mɕ #wy9T~H]oB WwaW9 %՝pS/)ra!',Mu$ܚf;!;HE S%,El=c/wUxd0`@@ױ ]p Z4dp.%;J JRkg=%'(ho v퓿EC@ OXˉ(at{el\i&8Qb\^ `|s$Q„ו^MՀ+YG[j/>{d.,\@X(VˊnTuL/oa|z9(auZ3=Jmq3yAaֻvKN B^jd뎰P^% n=,öY'ڊױFG נEC]]5Q4Z`AɊrTe)Z.G43I T'[P|Vp D,tIK.[Wp}^!';8Yn\5*АmW;;bQjbpF( Lu:Fd*FwG&+HH J *www7w<"$ƭ(M; @E+j VQg%#~4wf;aFi/8#ĎX.N>ibI"X"LX , xJ;<@ BH[7*!K"O),@ޚ1k<|!>mxRa"<4oBEl z%Ti"X"Xc|1)>h]z46O֋e?NX b_7<fh&2awʋf{ay.5=e9̈5͟SEK D,$ɢ*z&5hqsN$ , ]{n>9ߋ3.539sfԝp-|)e ~iJ<.`Q)ձ7B`E,y6W U!Đw/dcF|T\9WƵj1^D46+Tf֍%ْ!k' +R}ۇT OوZ;d H$4;]*`s]R\{9kB# #/sCȂ 'LܤG@G2ɍ޽^}cF=i4EH"j+0cIMjR,Ij翋n 0wL GN/*&L">O? rUjTSOB9dboÒZ` {3_z 2UgxTmn-+ CvD"B9[q'#}Ʒe![PK `q$ *hpUN``ƽ,^cqr+#EH"Hޘ+?/2+ue9vB 5$ H$RH*AOܗ`qjfXȥ ڡ}`\_8c1Zc]y_TAI"XPĂ"/Xby`y${CĢ&wq}\ְ78qM0;ĉHykXH$)`1*ҷ;c.X4LldR(~Du. Y[kc"pYj n+E,(bPlй<;d!0?O9b-`.(ԭ9f>u}S{`3$D 3X,'ұjc\M*y~goj]By'h&  `jX ,E@uXںek,uC,iw#*-Ɂ3XcGE%˽|gD"B ܗƏaź`n&osDuUâ,FUR۰,pq_ #X,(bAn4"7{_1Y,KKs,&f,ɾm&Xda5=[Fؓhȫ" ~قC}d\~ᚩi}D" |u# ,E;OK[ M}!*V|gl#XPĂ"63 38]61 ax.z@Z%z\e'oo^16t*[w IfHc6~)at"> m] h碓sȜ.@Lđk,U" H$RxBd?y˼:,`^+w:ʌj59Tk`1 Tw`1t#XPĂ"AEĦKn9PZxi6QExG^t"'E( _&G$ntBlNL_sE<Æy nSD7ŇvUek.m{m0 D",V< 9q98۔T`_*]˟#b9[w\? XKa`j#XPĂ"Tޓ/־?$pO96X0͙iϚ+Y7bXלC# mk2EM9nalrӏ)1,-$r ,H$bXKEv.r,qV^2][v*\s:j[W?ڲ3pm|7tcA fV_&Xt|5K|g?(At,X :@`Aǂ:Xбct,X :@`Aǂ:Xбct,X :@`Aǂ:Xбct,X :@`Aǂ:Xбct,X :@`Aǂ:Xбct,X :@`Aǂ:Xбct,X :@`Aǂ@Oo# :]DΣ\K3&"gmJ`AǂESU'NOA2E`q/+/[UR$Ldu6+R\GocA"=Z(r1ݢ-1H"z`q1>Ć`#מ:l R,Xб9ͧ$8ѳݤBdIŨ{3>b| oJZD|C<1%2-r :JL#Xg`)BȍoԱH`fcA"h;  |j4pZ*pI֢/,/ `Ѫnj}oDF/M62GZ]ʥwɽwk3}z;D޹bQn\s{r*=X?ά[$Mb[}m-e ˚Y-͘)fԱ>jѺ7u(,uJI%?B=|L8+~s_1;`߳FkeȘNܷYXc]ҳr̃Eae/-L6Jr+c^TDJպ)ԈH1]+:Yԣ[.;]˷P/Z)-z;SZ_%Zjb(s͉)I깒j,z򞜹+%=Y"Sy5[w3eI29a5OݫƼקM޻sG"ۖ~rJ?2s`alJz_%+S!w}nGDVۓssitgtHӓ`XM_:[ޕEu0qŝkj!Zz؝vp :vE|ɫbSH%9n3MIe2`aXeV/EAP^ۣC`a?M1=wh浤*d=(Jq!Q81}wݓ=qu\6R3&R:?EnI\-99ʜO"?'͘񻹬=7Xl~JITꧫ-[OGI;\1T̑ȉ*lLdG{hϿCе| L,38vp :Ef'WNVdqE+Xl:@eDRrN8;=EI݃n'uRs洔֝7lݏ*joΎ7tZ➐9;XWtlJu.=z wzxos:V[Xq?g,tsR1K6(TT wQZE_[03l}kofY傫^ B`_Iu*Քvt+,,Xб"z\S]/8#V,ň_ G"i}^Ò[4]{Frձ|2i|Q_dRw;L[]dG$y?ot*<8|TMOUt̨v}{Xj4fz`ѶŽBA t,XtY4u.sh,n `q%ֳKh@lQLI${z8[ o8UzӦݷIHi]Y,Mʩ٢`1 rմ~xs,:j}ռ:[h[a`A`AǂE/7"΁Xø /|Zzg=4?٠sT('7Ō{h[(uhvW~78X5!#T*ݺWz[KӅX,b 9:z=X{hcAǢػ?fƴ#N' * S7& i}N4LюMcs%O@iq*?'KAzu_ܳ[xϱx`1oݧcaD\(@2`Q^wҺ`P7w4bVgnBO{C(Xds,Fo-q?,:Ũ~HH)MOTEo:"7 ۧ,h,h,BJx9,'XLG#EHLnwވsYC+:XU2,$W bܟ:;ZN]4bh`QߵiwquGѴ۾jcQ#šTDYze}zkI%͂E 6 O6XXX.-rmrnfΜ)ڻd`-Q,LoR ?X/2NtXZ )g5޴`1!SnI0Xt$iLw }-{墿'w6#S?|ٍMP.xTE5,Fj?4+ֲ_r/v#/un!:XG1mLyj?{Nꕷ~:omJvS`q@ӝXtuEmL.W_PYqwYu38o ~jHDɝ"GSM-=sv5 Zl~1R9R{3;4P/'ۧ,h,h,x?\{v#~=X .4.j]WOv*Ǯ?ƻÛ'kŨNmb]+R\ Bcr 5z/1]a1>`AcAc=@g-E~W  35\:#b.e{  3+R:n`,~Y  dg^?*m,^sU,h,h,՗砎/q WmE,h,h,rZ44@Ƃh9XXX-   `AcAc,h,h,rZ44@Ƃh9XXX-   `AcAc,h,h,rZ44@Ƃx.s;Ƃh?dZd''XXXUWz'ly4N;^mg<`AcAcdBg}ʋ<`AcAcXIgKIC-Όأ{o?>s44De Ԩ2dD ,R<`;WAb=VV,.DzץT!X, GZ`44atYoK~=,,)rD4}t>_e~q8Y(vןkڹT_*&;TB?li3WUs\(1i["yQ{X\[+WެL4wـ)ӴN_/&/n]4de7m~ >hTH/N3Lw,WEWoqT䅿:u` ܺGi"f JE^)Xm-=z#`ҟo}Vd<еsT+ҵȆ~_w,TK~.̟݇ayl_H,.ޯ#-1"YNAOT#X2|+> \}}?,jÜ,`i,h,h,BEByT6;#lviY]OLǿf91hJaA@EVI򢨻@Xcb}&+voݘxy>3o/幓,vfJ=wΜi+رwi9ZGV~ض,ċXVkoa$ySs]],l:'??it_`qpި(j[7UQjt>w P8`q8#S _ynt^!BqXdl:ĎR=<[:ٶ `pdM$'=3śۭ- <>rȣcbgOHg8(q:߂ ^/,L?YxdOY_/-VORRR 3b^ۿV`Q [7RRBf,d£mW'ߑ$]u/i46M©k@lV JfgncJu 6X7/ s>`aqRӦ)IYF{bocq68C_eaFzm{bkpdž,a0K>ߨYA-sR"{Y8:ŸԈ¤l%…IkU$kA!AmlBXbPB,zh _O˫& k ,`aZv6)Tvo8_1YM3,:,9.~r7R)Zչ~EC t>? N jW 8 H>#Vt=`@oFj,%%5`c7c,"yȗ"TWJ*0XȌXxM>VD XI7@^‚y@l^O?ƥ bGC[f'XAU 撁Oĩv``.!B|b-x*?"R T.6lby,ډt̽2{RRR ^3c%%1HA|F/5,mȜ2.]y]WŒ#{bqOoCBq`$ACѨ-uO qP:9_ M|EW3=9 g 5{e X.IRk:h%5qe<j9-" ƿ1 sË'`LXթfpPe))y &6n2bnJizXȌ#R`N2 ^L @xy62L 6}`U]'r<]"8`ҥL;O\[_0¥z&ePw޴n-2|,2EVM 㰮#æ9_d0XŢk& $Up:浥a "[v/8m~WƂYn{\Me斥,3sJ*T_d[Y g'C!%ot4v|t!LW(le)) _3'1`RJI *kPP\K:1_ߝ 﫴w*rX|1 2 kXW(3yڽ=S;+ce[srѿeغ!%u6ش vM[eEC=oxSr$` 3~®+g ~`=qtqҲ<3fDEC镒 2c!34™@U%@Ƣ,ք׏o7)4vHpq8ԠI3jȉwxry=57W=GL`'yB5ij Z5`Q&<[BՠZ*pw+uiO!4<|»[gx̑IcqmzXȌG3>{.OP`1_TՍ~ ,1gzdeYO1k9⭲S&tٖ] ExhLszfk7,Xl8˳ޣfnYJJjY3XkXh>FeWJ*8XȌXx~Ax]g (qo?m(pŢދR1\~kDsnG_yY;)e-]u=qcP)Xѿץ M3EG )g|;6x ,=WgeH/^] mmLuҀz1O`_1sRRRs ^3gąIfORu\WJ*8XȌXx$,W%fJBc "#]m?lxIcQ.W: " rzlߚyc>$Hh1238Ɲk){Aq0ND߸Nz,O+π%UK{Zl× ˣ"GȽ %k@Nֱ"TLw:}{6 3|-KII1Xx< 42GbyJ<<^)`!32cQ?ή' sybf$B jժԏ*k MLH>iw-a[߶^׉̬Y 빹z q>SCuqDֳz]|۶ \X }5oefXbWy{̲IE/Yg~gFJ׶t&وvJJ~ f R/ϒ۴ȷz}_]LKψp+o߈dbv->p/aa{ɀ[jY] afAw2՝b^3z"6PK _2-83{2U+LD|7t-T:nIiB`%Դzufntv Q+26OD7;Hv7U8U%pk]:}'ZO>V2Q> V%9CSdƍf%,zL HM[a2KS&:|JE&+=t_3PZ +^!^Z,,Z"jo %wM}mz+,p,p,(ll}vTJZ |r wܸ}FXX뜞}[|%KXc1`6't8?wu}lHyÃOUXW l^lCp3OmlߞE:xƛxZ~1Kf|Vo{֤e'O]yEŲ u{;\zJ\ЁŐә&a1ؒm6) as= X Z=z),p,p,ڰ1Iv|ЎlE}V-oF휴kowoz cuBJ$;VЛӊLh4uYop8dpm"ؕ+,6TaQZvgg5MFw w!YY,Jf[sY3oŹg¢Z5Po2̅;xO[ D;!,fnԞ/,LёkL"ETVXXIc1gԊ,#n&23 ܚ$NjMjGh+3,!n3 /esN/-<)XS)ghdtu_X$q+npr奱OuݡR* r]hO@D?W|潇 V =+LS橣ӆ,i} wIz;{tey4q'});J2   >h-*,)   -,p,p,з@X@a}   -,p,p,з@X@a}   >g\ '#,p,p,88}   @oaccз[XXX-,p,p,88}  lw{?7dippߨ?\ CXXX!rhws18Zɚ롙A<~1^T:l{E%YwJ+d7eaNFPa\ar(T_FX䇟TӬwf=4] (͢ $ĭWcL\͕`Ѽ(wlBPO+X8{ߟ@f,0cTA7 hp B>G*@ X`3's|+X$}{* ,VXhJGuQ:Otp |ƕXKc+G$X\x.K~Vҁ}-faJ JMj萯HCg .]! %Q3j 7@YiHX&LIf>&K﯂mT :ޙ!<0 L<t,,dۙi/zv>>7ErP(j =q7D)ԉ'RW9WU>zϟ2e`}a*uXӿR7R }L `& eg~Ŋ  \BP}\uoY4שY㉽Ǝ`39ynUyp Z#…=`TEd|!C&_pY`̻FV7a7ݶ2 σf,0c޴ƓI6F+ BZVH` d?Xs/E[ B Gq11\ܩt%){L|=+Y5 :1c۴azBX)CO JL`U,&xb|wƏ4/##X|0X`3:Nފ&k"|GkgEŹEcWB6OsB͈[-% p|XD|+"ZBP\u'X{8NMJuJT~Qgu|6ΌL7x['Mz,k ԘB t`q GvxGDc+3xA.)2lS\&"ؕa`qʑAKM0y[+`qr B GsU6`ѬMKEgq:& P; ԘB ؋n~_ŭ Tll?xf,^VdA::~;Xm!)_`!B]w0bca{BP~jx,,Hq͠Xe>8@E{z" ,DxP`*X)\pR!,ϲ Xq3xM,P İyGƢ.:֨E^ u3,fPOQ  B Gs#Xs,|MG4/眾,NNI6gmX(Uq cݐA)`A&EƊQweB*΀_U|0X`3e޵'1+UGlB bń=q-EBP\u oa|#ӟ;}1wӧr)gƺ!Sʾ,X.1>l; ,Cj$X`35 {,Fw~ k^ xPB#=I.b7D/rP(j = =ǯl6jӏ%\paBB:Ћa?+S(z\̾eXԜ |(,bo9(f,{V9S|9ʟ;‘|n"71^XYTnג,oDw=~zNN$5 Ɛ|់C:6 B>GqռMSS=g2Oǩ_߿ /%(UQsֻl/dPjRB($?`k\p$j"G~`f,@oL\20E`kINl5-F5ͳ[+ɹou2–ɶݠ[d#NhiXƄ3 {8X6ٵ.1BPڣ*vh}0Bk.F&g +N>ϸ\y¨Ebe%wo_U\ 6@0\yգ\P X<ҚbK~w` X&lzjfZtDK<tU`eM`\[NZ'}35 Zf7j Ҥoik8oN"WHKSmhKZmA!!TTDJ!nKsJ.E~vt:̯ל3zTo&qk`bu?SǪ)Ϝh_:y4gwP"^Vu=kTdG_ ܋or[|7eWC^0Uke[$,ZGjm8 T,XtS]mkjǬ͓ }hMF[~jp.w޷ls+?;;L`\TǛd>SC}^sY^c{+pϪ%=]/`a4_S{f3u-/;=fLͭ,.umjѰoPr[tx 6 %O켽_'2T,X|:OOG}_J\dZ^Ŗv@9{ڇŇםxޥT(PĕⓎlqsAL>γr^ ^2tIhb|7,.[,XP!x:ܢ-%b {áCY>rpg 0XPb1:Gp摄7z\f/;劯'`Ał<Ǫ q!n8+/kҹP_uȍ  *#RnfڰNu}{lݒzys6 X,XPfinKQ#pt,%NhPd4gUj ``Ał0tbA:XPb ,XPT,XC *T, * ``Ał0tbA:XPb ,XPT,XOD>\ *O5[`>⢑b} T,XH<}H$ej$ngbA,Kwdh5y?rzzli]-Nv *T,Ϫ7,&õ>oO-SRd'p; *k*o2X+ c.`AłZ)n4X *T,WBiCdE,XPoEqGHwccZfS+_-tiqlόCjN?u8-7Fԫ[v"7Fy7T56.XPb8Eʆ9,"Y"j.$ԟ/b=5y=SJ^[Kf} *t}:|~bgVGԮ;j/:hUbA=WkNe@^v.̋,{n,( j~]qN$  R?X$׽^`16Yv3# T,X6(D]G"@ȊLMJ@`@kJ`ڸ q}Ԯ^oh[nE.*l45K^ץBn+WiBcW{ڡ^ h *mOdO$B`!i=(ZԚ-͈;W3 !TXWQY~띶^R-FDM{9`BeAOEW;>Z7z /c̪VfJv h *^[j,*PcNпU&>o3pFUԕ?XDᑓU٬ZyHߖФdRO-z$bk T,X0GQ~["q``δ nXvfNN[ݛVD#td^dE[,6ONNqeWE *Wg͸C?ۆJf$͞ˎ`OK<x|߄,XP覹-Ztţe7LT,'VL[?C@E %ƖPt@F,BX,܁r0D̩(t:mEX,F{CcN"̥ ?~]??j䖮ԓVq-9!!b֚Ps^Ď Evٍ`ϣə*PZar{ }Oßy,RhJI~ r`=@-Xߑ}Jwn?dO7;(j#WDPq$1Z+qB22O3ɞk 旟.t4ϩSUF젎?iVXLF,&#ƉKyb ?_[f`!#$҈@д'Zh*B} 530}Ml᎙x;wM\LT#vg)nSEF7l桽 Z 9`|C^-mT"Ͳu 0>wOau=VQK5oM<yobj_lL]f:n`HM׶Sr'+csoIj`AH_uB@/~,N.<xS2}-Ƌ_Dr (`s ;{+ w*8X,L<>F_;xk9 Uٽ ,my%*7`Q G@#dEZuxBwEvSENVE]@B q3|{6`!,ڮx0\律b7ڽ$,|gĦ!g%X)G9do,%5PTInL@h"(/ ( hWuCq^at/aI0"ދJ],F<=n0{#u9^`!dT'bþU.e /<@qG ,0b@^o>KgiS<׸8,fJ\NCBLCvS,lͳĽ-oWCukhJXHiƲϞ}WYIL {|+`v34B( K?'P,*lQE,Dvlf\H^7j?X֣Jgϕ'M@w{N`d`ApE8VgZ%S; VC{m X0xf 4Mk iP,B陛bk3xJjX|1B}Uzo% 'tXlV‰8PN(\ 砘p=nXF,0b1XEJ^F+lȕ2͹*V!`57hy ,T*|V}*mmIFu lNMAS2˯oψՇE:^o0 Bu`X{ Iwu ś&,VƦmeA+R*h*.`Na_sή~J,d.~V;5| ,0ba= d>k(X$]%Xď9nir+TР+[]ǮYzs5a YmYuQx1)ݐ}% v3^snЮس">*ԘϻZB>X|bi/Xy.|X<4RL a_XTD[h,E IoЕX`#>tG[Sss,> Xi^8 _s,|D]}gf=@{^XnCX~2b2X4#,9{c]nN=t% R&BgWz&O` >9oª;#?X<`t#ʝHY]@ze K佥PP /듣 s.B> X\~`e[r{q]`A݃9vipJ4zoDj(X\B‰fYL`~f?ϗ˖(7iCn~D/_`OΚD0 01[ Y L,VDmV63.4XkbOɦL#[xJ! B>4XCGxOa?XL4fKJ,/6c 1b'1\{cd/,eqj `6y9Ȥd 7RjX`#>Y`'{ޟXSdWN㺮 Z 㹮Uh'Hsధ Yx=(ϠiS B, ȏ[ZJKv{b:=] q龘Y> "vZ ̜0SMg77f_`UN9 IDAT_'U񐝷%hCm0&3r`+,(GǜfѦ|,0b XccVs( fIȢLTIy1,ٻ?f77fQm&_L<:1c~ܹj9Wg./iK%V<gxb?xSjHQ=3#Wcb;s\ XbD#U,ց=x6zDFi}BGՈ\`E}7j<A${"rn\ ۰l= c]!ouK_,h,h,)o6=\t/loWI`׽Viz.,h>3+bu^Q%Y^̱xö:IFj'1nϨKq3`IckETYb&6de5ҾԞͱ4WԐ[̮km!=7Sz řNQ~eNeř=Ϯ`OJ^mwbe] 447x9yxz{qיvMsm5I=O;Ӵ]zp p{)wWoG4:p/"ZZO{W>M(zv;!~Ԛ6Fli}ϷE"ݏǯodn[ݵ`AcAcY+ :)~qy%]/ZS`AcAc<Y(D,8XXXDY=?Ծ`hƂg:[8:y[)~qB   tB   tB   tB   tB   tB   tB   tB   tB   tB   tB   tB   tB   tA0|8怇1]9xERE=c>1:XXX s/^; ~8ꀇq)v]z懂EXg1\uŚ7S6%Ѽn5Dn'X,rnoÊ$ ɿ,ˢhvCҵ[ .o`ŀ_H{z2hyTV»sr%ol`cȄt>8v%r.f 78m66ŲeU%aYkòThZƇzwg֗M֪lYhܲr͂Yju_֥tiKEkϋ_y7yZ-%Ձg+&aئ:Bͥة)c$\s_fʿS_l33]y t'܉T[LIN3{JM*mh  A/"ٍNt.֜S ?XwD RL}#XRDvpRzrF/գsI&GoBHsb^9,[w.&&UND á+,zV;XXOޮ_`AcAc1OҡUy!>>,[v>h:͌g,+/Q8oIdڥSg'~ԣG~X.X,sqNٝQ!X9ϴGڗY8ol5oid罻C{/}uł;CW5zŘnUWYRXI#GW\&K*VZPYHv[+bBVUU1} ?bE%tƉ"cX8i \g,B!7} {X ]y{_{'*77["gC")g>͋u-|b 3vV1;mM5}.Im;.]XCGtrYe a\NNXVuz~,ՠ "+KG,ukb!)M^qR,X cqej{a aU=WmXc_BPqٛ\^싷9 eX.b~-ӧ\׹7 D)>?VhS9_A"L@.#=z%~?SH(wo&{ $U0wujT7\71/p,yn2gfi044]XՅXDS44s^AdDu_WinMG %Ni( $zuu)lPcbI-q]:~wEj>i#"H,Xr;szXܛx/{XD _pdcg0z.al8~UXY! @b>rW f,)~ł_ziX~PbYd#aK+'̘:cX|3HےƨDN@bRk>.nťlWE8Iv[]_JILQXgsn/m_Vڹ"_,X knzDe JT{>A}ZjmF F"(5]+&2 EJ,X Ԛ_DAbٹ0cnY@̲bE˲D-KIM!4^eռM^bڶ=jYnaɹv>Im%/aJZ@ $ YbcDM#t.HcER67alj/"M7ԑ)۝J>Ji95$˔Dk2*h $Tf$yj_߯js5Aߡjw0xk?7L|ssK87kK* i濮2ir19S"%&XKqIT)Ԋ-o,R,8b\,2"H,Oh+lkB4w./D4C59cAX-\S R" n RA)X4z˼?[2EH,X [TTiEX,#30gb']`7DL,zIRH'`P>PTb/jbu2N2 )ԝ 8bkEfĢ16- Tt#Fj{XpkPbs rJղhTLi riHbZq $H, Ĩe15a_c]5";GE%#jG34I1#Xɂ%}!B](S+Zۚ(ycl¢6~~$H,pU"/'b @&RK,ܾɦױXc3rb¦I'X!GMX6hA, @b٨f1O=b4+WP钜g%2> ^ /uă B6l+X,J!@X @b0*^(SUױ׽EX* rX>.a%r{e^t%?%e* 3j^QmS6wYyB&k9L,K >i˙VE\Q# $H,p4^(cF& nӌO(Fb1ϏE( edE1-z9OY۲윁XfL8o* AA+3*`8#<7ML°%ۯ_L_3LgCJOUc?*}"bAbAb,{EX<[&ΊΆoX[-;s_&g/{jb&4e"}<P췴Xĉ@`X3^J* ߼!JD[Z N;_ob9yb;,P[ZU\$\׻I}V˖֢QB,ĂĂF hy{[od~u[jK.fs۱xǰ;wi?zxӖŢ9u O܎6nW_om"=Pޛ+V>V'}  N,H,H,̢WE@」uqC!*OC$'+8w PWT5=M=~.޶9o8ߥ*G3bX$$!Ec5Cnkk|{Nu^/&,\!sd[_Q󫶿3v몧+ȚX;';$XXXfqW*UѿۿlL\N#hJZ?=4ݟ^c   ZE"8Tb4X8~$$$a@WvTiv7bAbAb|ObAbAbQ-ŹϘ,$$uHm$RqNdD_,#ĂĂ""=3w{r9Y,H,H,bXHo'ím?"bEVsݥIy>/`\;1GqL&bEduYlB,C  "_aVvWb*5MKES3V,B~p%<$  Enl>I}5mX vs<;%\j0>OdITHBYݘ|{.78 oo޹˭tX(/#__sn,IbquϾMUOmCٕX[(Xd ĂĂ"Bʒ r:!'ՆqLo1˹WhsYkA 8;Gܾ3XpM, d}#RRn޹]v,3Ci>4/$$QDf77e})/n-L6{=L3 olh(\=aUݶͮd7ڙ;l:rG.uw_N/2w+6%G:zdHlѫ{"ԥT.N@bAbAbS{hduK/;%'X̨{)/Cj֫Xq"|k,t/Vb :Ej<ҋBBBa\gM]ujuimH&$$1,T3oyɛ "L2&pr5@cpg/H*V,jVgwiDͽRlʬ_,VƍhKq0VD/lpMb)mH&$$l<̨E9uU-jX&b"/c:xv w,P,H,H,`5룎6dr"͋EXfX *QG,Et1IQ藗1tj"%b\,H,H,ꓚ`gk6/=hR,\:P,Ŵp'jqwf(vM_,]"łĂĢE"Fb,XN+WEV#Z B}EK XXXDx׼~yx5&sb'ђCbq\k,zܕ޵5. bAbAbaVe9 ؗꆰx魍G"mEuFb֣N[EWp@r HWwst{,c/u9Gb1BwgJt`@o6#yI;T]V!2.JkvGY\<%b\,H,H,"Df{ˆyȀN U{`nFX̨wTQK!=0EnXY-Q%YoU\Ƒ_>\9=y;%b\,H,H,fu6m?ߧnd}WZ8.5E[\_,2"#RP7+9R#Q0Zm_ IDATOI-[Gu"T?K² t7 vX$  8.,xjI__^V&pO_Y"QG, s¶k`cFrKJY2S5Gi|Ϟ {vQ_,Bt*Y3s=i~XwrFK XXXv.[61h?7KڂNf3muz=r|Ow:0Mu uĂĂqYPg_   c|9XA/-$$Ǥ97bs_mi7}c$`v% $P.54ivܺn%Kt{X7dYЄGG7yJ±8B{Ly a~  da~IPQﺰ,,p,p,    ,,p,p,    ,,p,p,    ,,p,p,    ,,p,p,    ,,p,p,    ,,p,p,  sB RҴ/mipS7-H-hi=q} {mEN-":OZ8Hd kJ|5#,p,p,jMrێEnOyDBg0ݙۑ 泍_Ou?|?T5_I*aݖ?ѴKOʑUI$~)Lsƅ^+,#giviN2k"kR}3,o4v#B'bḅ .鶃7I88մL]_0.|ʅK.R ut7/0&wQakw,V [x*ج#,B]ъcad`m   J|g":'GA¢C,,V6ڷG&,joս¢F ,'NX9\accQ%yPaYy3 OU/Ʉ{ĵEg0=QbyVw3M##V\-&Λ3󸮰x]cQ;Gi J <<5_ͩs $yW%-t#jߊ"X^:¯R ɨWX%,J*yI[qƒ8h+4*,oI^?o^ TY?㊉~u_:ҵq6*,|!O3Rj]={r!,Ǣ5%k1944kn܂ZM$J},!* R_ {jͦ{R/n\oUMeͅTJ]RKkOD:R8uzHҏ 4ՓkLb2Jkv*3l]*HгTb"¢bd':/oLN^k[+5m-#¯~m֖y=45M+>)/*k+b{#+ ^oh CUjeCV;o^X)WC/mCuןVʯexoR>HDD4,C˹6٣vm=83d""#vBJ;Z5=С2="R ϺdDՖ:u*_uLUfzP޷;5civTTuR1]V^央|Ӻ>W).fr=ux_f/K{҄:r@723LyTpGU#1W"9x9ݖ}EGtYʍw4>U$;TW#}247"2w:Z 2좊W}j\.a 6]7S֮fF|;N9NeU'n?aᎦ%]/v[sxPͥJLYU1PӣSvՔ1|`-*eo:ԡgeVlN%"9wGZ `xqWg"ƶac$ 5Stdc/ Dԕ[7m$;e7Œ&yioh]킕O.ˑEk0wU#Y+EEXMbXw4.ӲR(ZYXں2eV:}U͕7f:/VKhړ;[o8٬zZ34a!"廜f=ޒYc;. 3sc͙\ٵ{Dcv8;Җo˩۞#l_oԾXgo9 ݳ| :# 'v/*e&Oƺ4WR}88 me"c}Րv l_0ooىj v9tIZ[&vR.vtȘu9m@l/ڡ=鼞8v/ku}1LF};̀'#,*iP 5%κ7iI@V8I^\FVѨ5 y(],(&Ml>Jj(lz6s#.fа\{6 .,=_ĺpV%XIwZ|1zħ!Z.^y0(0悡#F72?8s.k;vh{;@f2Ċ,|mW4eE2)La"X e ~;3Rb>rpelj5XQ"i?m𱽎2`[ņ \ ;lt!3A.A'{Fǹ}`^qCoA|MZ7-ȧMPhxD+:tA䔿~,/_@_Xp+b:#XXkyk<NJa+ȐA!sQ <0є#@U 2Ha#=^$=;FDo|h$(qK%1XX&2wqL2`*m9t7AaIط aU>0i!^/*" Y^I]cԲu6)tc ,:d1eTO湁Sz,lX F'y LTwV*ЩׅjAsE~Lрyo 6~;ԌjaCW#"`kp=hNE$\c00bQQ ? 9 8Xq2I`A c?AՁ`1'~Cld*,  {/Jr]&v~w|HcIK|?xH>-&1_ Vvpkn PЈ{O,ڰ/"GJA@Rd#^O/Tݎ` \x'crc1%`)[+b*4;{_5s y u\m9)[XW,zMjo$rZY| XNi`v6+Z1 W<ИBWFt08v`#lB }β`q1 QV$&%X- 2`3leX@ica-@_݉Y9Tۯ 5 3 68;_Yzs Ւ#H]5]`XlOћO`zBT"\a S#ߟ~aST{7 %. }򧷚I&Ǘ ]Gy H U?+{ZmK*\ϰ/veR᮶2hڡNW~wP<8N/xQȩeN0D*`CmU6Q l]5)w䉮q\&[~UC.YZP4szc,D#qn7ނ4!kAmRmȒX,V,+>彵8^,q.Ԝ")fjEb}o/zv >E رX5G!NL_E,XzFo~Qv{],x#<,."訋cnZmbͷ5dYˀ6M8帾U*I wR؊]6Ҩk,QMB "La #aKvq`RXJZ`QK,`R`AW4m,rrG/]&OC%X%v{sXVhWg7:|s9%h`?<,b 7ֶPN^IsIE\wAM$<*U:#A*ž9&jskn 6:B0 [8,K_ / 4|ES6_AW=⭧B^t+ h q-Jp@.h'N#UubE{x)z:G$sdr.dE + ^q.Ըov>b}z]-Pۚ#pG,xx$d`00bOtY/E+]92EI\,TcjLpm73E%`1^ cz%V>Gf+u2ضdzE6ĞOE`al g7yke>]\Kk&mH6Ŵ4)bo)l'm:FG"*g*(ʃE%cn X8K-bS! Ѹ:Xz+MY/([5 X%"*OClfƢM~RL1YX+s/ؗGzIJ޹75lkNtQD !@"(1Ҁ"׽B(һOrg@VͩXPգKpB%(~bFUܝUvXdU8jZN;OU6v^SqRHy9YƗ 63^ᙘ I\^d˃dS :!-EIXH`,I/9~K,C﹃,Y_ȵԉ]FV ~h񌜵WXEhۡ# ,VCo,~FoQH 7{aaè>AX4ԩ)5J২JdBMsibNDȗXxQU|Agd`A'/U¥Q<K bEZWr,;{B>,NZ f^Rbޭ/d`acV'c.&Z ),}z~M6udSuSb|O"@E`hpBes>>ǘ `Q"bF 3\`aM8uy]gɫ/wqܬafi6b+Ny5t!Dc@S)yƶB AjXY<+ws(S Nj(u,Y{Rh)'Xʼ"*TH "XKxB܄2yrW;a)<7Ԣ<>86BP&XXQm#57CD6Zpm?XRMהǘpE~{&rT0%DCкK8yM}WY2n+a&a{ ?E 6MCO?)CO7G }+I9,ɨez OqGqꊰ:H IDAT>0/tpkcsd.զ X!m=ahЄc,϶QRnMk)YyF55 ,q"xeWle(#@ $>R9C5CcY(40kϤ߇\k||Xbo&LGI exo.< _ s+^ɼǼNι.`!BdwwH hל18oUeCg퇧@,zNP u|H "XxI]O=/XXݕv-$fƷܫa;Vr 3'#ZJXȼΎ vq*k`QX4˷ubM!!B"OIX| `360K:>xuGaLl6L)"M,cr:q9 wM;Q4,mIxq":C ˓$?b5L=JnѢaXaz- i w_ |=Voѣ]=5mKY?7Ȁo;fhGҭQ,*ZL`(3jȻaEzp؍D(`Gϲ}L,X1± X`c4YdE׈0Uy*q5.59xGD,@f#XX,!7=]Lzo%#l`a$zE*XYpAk ;|uq$2c@%)6H/.vFu޷RWftX`W8 @DZbpF~𥊂ufeUw3+Y"tT" mqOGJ9N/ ,yVz19Y qc/$yƤ:m2pc52 n`B`M 2""dt 2-ˆjCY_,)b5ȞS`aLDOX&SJŊ((( :f*c%c&Ĩ̕Mdg3nyod.޼E PD~.TrzsC߶g5OJwot]1R&另?!M*Еbyr6?R+%B.>ڸ,qVϛ\9me6'G>_]+/v_7 lVbRPm2]͗Mqzk_~dk>/j/Mm!d8qj.ܚo&@JqⓕQEW7o 8D1j mnX_pXQ=¢U/ 8p,<$^TK܎ 8gf;),55;2~G!QXc%/(MY L3fx@a1EDLIRW <…UHSm^ ү=y KaxM慌0'<ӡlwHT2qK2IЀNJ"p+,Xmam 8p,h[Xc@ p,Xжc 8-,Xmam 8p,h[Xc@ p,Xжc 8t%wV`л ]t@@/HW 8tNwC+ & p,Xe:^e ٮ bzL=*,X)پgpQ <OGXc@,e_?EAV Mo)ӶܝU ˇJHu-$ig1aΤSLXvE:,^!,2Ud;ra Ds:V+tu aDXc3kDJX6Ic{aGr5%N,4/3}\O 88sז ,CiPZM4F׆'Y!6-o<% DW.O#6o˻kJXx]SXj,x%,JG.Iu {rHrq  ,x .RѶK|b9t[i. ' ONn*,bDf"nhOXtԵˊ%,ODVEO{c!'&[^''i=O~tGXOTF!,x  u+,c:|8_ll%a1bHϻ7l; ',ئ]K (M/'|/ {$c+G~|<açgU]ʔg",VEwR YmXtTXMhqB.с0\|Ͼf 6OV=-e?utvjⓦ4CPZXԅ7NtvB24|yٖp[X `)ԒD!|kºF{ڱX_M <p,X88 "z z=i1r,IZE$-IJrܥ$SI짬 3+Ljfl`o>OẔؖ$v$/)7^نH, JkvqjΞ"ZF+ IV=û5 I\vbYX*II[(Iꫥ~IJz,&׫}Au1FSRXy"Q6VNq#kU1[cK3bUⰩkVZO*mMXt:9Q2@( ׂ*g ?Vm}IpnQem.%: m0^櫃&:/kC+V)be{aa~c IrHK,, 3_j̒$hu:[@X5Md cC4RXx?Pk>fõۨh]T꣼P=*ګVd-.DLc$l|׵ۻsZx3 Kqx\۳Qסi}@')oczoWJ?'ܫZYV#Vޯ(R%> Wbq;aM(Q5cީF7͆^O&1IoZҞה͙2g l|()VL2M5{F_8`ʃ ҧ;a!œ[$Q}&:Sv"$Ըp˂*_Ff;3DM-실}'[vsf&a.gBfюC`q‚~W b;aa BDNXܰ}Z]u #S'`9g!;IYINXW@"LHu ϘZ{+ W9I^/Nμ<3;zv. Le^vgg`htK:ܯ+2+>DަwyrdL,H7{##o M-ϐ9ꘑm2m_hbqZ;V{`1/WSʜW`RWkobU}UՓh1F J*HA ,H':*6uU-4qJr-qU&_5PRٟ[ُ6QD-\f%f-Gl@yڸRb,JHo^ɵɣq.n/}-'?x6 QWg_xWa 8GAb;cS"69G4{_QuCG|yl > 8쳌8{&RoL:i-h8a9m1\Q c1Rd qSnB w,@lf"V'>O B춏3_B;p2jPҪT> L|(&x 'XtF+ټxGm<5P˜X!4nt*=dL<qVCIѱt`y3hV`~EɅ瀅]}C(.t{m`8c+"9ꘑm|O'y~I> /-EO#l!#sSr)x;q\7/X,BPbX,P SYȽ!,ֹ9h\ouzfvxEB M(N~c'm ӥu Zji#oG#Ok|g\ܒ~"碾h:a,O-ʜcťΏo,7 XԸ+Omn 鷳AE-upzhX`(ljt1D=K}y?,JqM5 YE}b~#kfGS8a=8#@w?)U',ZNm(8h*8KTǃ,QªT"~ڃ#=~c nAM`,]@Y=Iڎc^yŴ4mmwNV6w1a_d>scHHj*y:=O%}}K &]L GlNQ0mr^k%|"HA R`,MZ^Eʕ7{A9MGdXa|nJ(ԯ: 3Rkh2:Q5sr5`O_]~*YzQ~d-55X};K7|&Zie12L}9iy POJy& _QKt @t:gN?VH2y0OW:I"SR,y8ѶF 7 8>0={nB*BsܑD, dEo@i5EMhRHBmbS3Kت';Xu5AAEa G/$i+U7PWu=,N!\9d^ )Xf3`@?Zb`i "YG18k[R PVmTqƂH5&1Ԉ|fpD6. ͅs/Fd}ŝR!ƶO2MTtC0ShbY&-FnoG]`a/j?$[,z#ɶ1 X̲0)%!4tm kqJ, v*;f=^(Q *,:yҽԿ%)8U哯T+kY ܱ'Xɣ`A 5<"'BNU  h;gY)  ivk D;,E~wG}CƺnUk g|-Xs}fD+'0g{ +}_a!axb2ZRiUk:]!gXj3\ZX)H"XiE! v-`/ ,ȇcXlu:JAD./o7ke: E")5AF97^ 36st 0 ^b:b--BHKmfp=À#l ÷;PzQ`z6;T},`1n&j` q,6Y+Q瀅C=3]`1g={Υlw-CO8X,Z6·M'Y,$;)>abodr_3?ٺ`Ý,\g,\`Ho݋J{S`1|y4`+JT(%iGyG3NwÁ0T*,:X)H"Xh7xقVz#qHg`JMer“^¾`(JkkQ'KSXB!4XttCb?v>eU Y*o7s5=<.Ld' ]j?><<,s,?=z0XiNrfn`7?X/Tf*D~2A8 8KTsulGU'R!¯ ,gEMَZE^gn6,p)kSm{k`Hof,8R\g<`6)7şS Xy u1Y>$~q?dHX,bX,^^U)p瑨&`N:1G<>1O$t, V'nSt ?;XSw.?m,Y7[Kȍep v1l$$؀A;2)"U] (#]ei7HNaw3sw>TWWٿNs.#O@ 9w mE1Ƃ*۬|1o`1Xh'q#c$X< $*ʇ @-#7UK~_+J7"{ &_fv|n`?xxUk[M,t/U˅:6<"MPċ>V}7c{,Q;-MSreXܰVbI kc7H[x2X*EWk; KfOv*a9O ?~EŴZ IDAT?MPⱨ`cQ !E\3K` #D$֌+>(,j 5l&g2+[URI$X }\thاJxX]}Ehӡ`AhUn1u+E)Q qiN($/ @cI2X޼+X` *!=h5,F\ӚdY,TdX#Y`a^R}o c1֒W`]='5tM6v&c.O]GI@>kv6BƷ[2控ET[h^ KBz c,6gDJ`b汘Oз>s#&3:,BipCDdL3e5`qUHolQ*TYs6 , xڜ҈P@J(sh;XYom-xDg0lGl ؕm\F/=G0B*=0ŽCCsX`xO}V8a< x#Fh\@耀.cSNV1'"(B&3Db΂e`aH(baֻI"YKgf_r>WY >/ҪaE`am5"+hLH>] ~sKk,I掩Ae4fn/.GE~gm=!ZDF8Y,1=Z=Xk>N%p'?@_&s ˽pbzm>2<=7B6eGe Ie @{o&KDO`UsL Ua~d N~\>5s'!-VzWf:j3 ,> Tx{BXX}v.H1Zc {! h1ܾz?hl+&3@gh"vey$ GawNoH26ч۝8/'ɇm`aL``a_Tt+wfB^xɶ^JgN8U׵L ]E(ʇu=Hk>B{,|XW769Ɗ^t1*oR+%4,Hi˛4ILbjG!`I >2]> cfEi>C7лLzo*U#i~^Uc,aҚNj5|oX-gc_Ha iҾP`(E[ś2XHu+|TҘ9\U Ƞ2J÷҄47±j&An׸ eklOIl¨,VHs vΏȔʆ 33\9 Pѫ0$|:WUO eB)l"\/SÑ\C5LDnFŽQvO{#=mXUO`cҨflXP,far/u""< yX\.[0QZ#X(0JAs;҇Q8kI,I3+0WfuHqҶ߿l(XL* @@VY`!O<@H~45jױ6(jώ)v"TWBoUvpD?O{sƀģ2 ݂hbj-zZ#!i<Ƥ s=y6>sCfע0ߌ~,ou#x궗WhbJ`:.9tRҨas,,_ٳvp~Y^_)XhSi߆Ҫ}l9q=X(!kBk蛴Zz7_sF;, wNmWoc؉6N *׋٭@l?qK['=^PVkzɝqjziMP\ͽY ׷Ww ϗ{#ywlxu?ۼ`]x)ܝTf|&ߕOg5&b1s1>ҖWn#g%o~[7ڦyU 8~oQÁBqaqGBA?+A,؇?,z5l[|*T,qaIm{_2:Z8|l T8{Q{$Z-5=7\zP\ZnvԸߑ@,5{=;axYp[MVKJjK%q]w_ؗȷ`{*s/1ஃ *T:p؁ݩdۿ631%:Ўi/[1jnL{^Et-u:16?립]:Mqa#?ioj :uD.Y*J< T,Xx]eax@ wbA,XP| *T, wbA,XP| *T, wbA,XP| *T, wbA,XP| *T, wbA,XP| *T, wbA,XP| *T, wbA,XPy}x\^~v T,X4\^ε,FWc9XPbĀD*2p^]d]  *ފiQ[ zy"w='CT,Xxа,@{ *ޞڠ,8BD,MňÈؠc{RiVxPk;E96 *T,m͓Ԇ}pSؓXjgfdbזsz LNDh-E) W_Q,Q?U.~mT*aC1^kO/RȕTd ;03p=oэ *%j}xnFtU+X<3e"kHNo|L#qijhMlN|6GK*cSkM}hJ6ڔ$7"S;\̛1c2<2Êr`-;z56xݚ,h|sY;2g7ocT,XxJJꓝȱ,q1sUk; / ɑ>׬֌9Me/$6&^p\D~DƋFs=Z[~O/1ee"<܏I,e2O$b\)'DFiQEdqҺȧxdBdEQ&E4L`òJ9oeU4jF7mT,XxiMXG1 5#X`W~Q+kSeIGHZBi16x C+,*"JH5hOli3ŞA12B2&.ZXcD1k^D" 1E)>gs}*c)gƊnT,Xxi+Fh=|0ŖvE9r-jTT`_\4ʁ#nXOG,i#f(Y36h&+xR`+d֓E|n*$ԃE$lG|2L<=5υڐ=m֏"VlsFk7lT,Xxz;qovI#3XظȜ1Չaq*T#,4H:1IS ScFej/"fx-R2F9A)#4Ӳ(#ERfgBe%3΅*.i"לlZkV@`yv:ElAF I%$&-df%~=3)ڄ3s _f [[>R>y"D,H,H,0 ZlEڸ]XxXtXXd\L&ca#FBW ;$m(Q)S] y nynTBmyZ6?f"=q"D,H,H,+3w #3)M b?"DzqdX,}KqZszvX!?/Lɟr.ǟhX,GHXD#YRieO,5)o? Ƞ/V,qS3u| CαbXXXKx_ fes=y{J{VjlR|B,UC檐X;޹\-4 l²>EX"nGXdӜPZ OXJ $̓)03T2-d| @bAbAb@".LWc"L3Sg_ʺ{TOE{sUbX,hL5 j!C#H#Ebaݘ 'e&&^ FW_30OR̿LMVNL6l”'g @,ĂĂ'MkrfmUuoщvSb!Rz򽆽d#OPyY/=6ZT-?|vZTS~Ų _ba-?PWww,z:VJ;#W]3xÄ  8hܿX`vhFLÈ=ٯrOsэGz2nB⡏ M[]?@,H,H,g<IDMCܻD(>  Qog=Ă3W_ ʻ%1D)>  PjcjweEXXX|,řG?b@bAbX $$b@bAbXb@bAbX $$b@bAbX $$ $$b@bAbX $$@kO- @,B*Ă8 L   lbV(  +Ţ-%   hH,   $MJ!$$'{O67wPE{Cu!$$&NiǙnZb:MA~btoL bv ĢP]b@bAbp[.2mO,\koTJ,EO,X|Td;@,H,H,N+RZHՊ;JoG"ۛfX,sPba7=Suzo;}T}"M{[ݜϫlU7|uy?˝JUMSdX//t۠[31O oۥv)_ox=4NMp6ĂbQv]qʇ8TvPH,5 ]s}RUxql=:WQ9Cqw'[ofjAipWUSshzWetP6I5eOV~bl?5b ~簢j%I¦b#Yv[ n۶kX8NAX(/km@Uȱ_묡{er[^4PS-(dWS (ȑ5E5~X4 sy"˅u:cCg7gXt-:wUJ2 X+BGkZMsYZ"%[-$'sH v+oz*@z\yŦZ i-ޮ8nܿw0"ÑR]T_D`9c#?TD,BqשZ,qkmIKrTaw=Ml[Ma2V)PP ʳp-"5_%Fp& = /NBW|gvӖߤ={\Z= :-j30nnƟE,&iʞc=Mb=`br~yuUUBK휱}>Ηڪ* k2g (i:ۀpl"L,iX#{D 7ۃt1.iGk@P˱P(:XH=~ ,@bY4@,3=Wr、E.}–`!)QwBoVuMu,ܐL$sQ$QgB'((EVjje6e/;˻ ^+몂PX Xб@ mE`1|f~n'yI`;;FDe(t,2(9 l\x1|aQE3",JcAb|آ;,=mCPX`B  yh-Y"qe`a$ͅ5y5-0 GJ's(,]JnY$$vyŲwia=ki9w`dm#ue'y6DJϪ'޶>5僊85QŪF0 <޺S|D'79ǢnPUaib4B@B."ޅRvph;lBdBv`!%,<9ׇ`g|1Ryv|og0c`X~DǚX ,sI yxi0"`MMq`Cin [7ޱ<Lɽjj[م`(=lۜ/x;[L9QR|7":je|qRV ?`F;ADl9輡T/{lX َVBб@Ǣ XėuH,|S{4'BDE AQ:i;TppP_sz`%X<ɗxČ$( /O>ڍTǾ`q=rP(:(t,б@ c1 `a¾Xk `P-bgWYigzV`8`+>.l:\Φ8)5,z p,~Gn8l Q(?X{Bk],oہŨ[ŢcH,Rf+wY,_efx"K,   -E̙(:Xt&<6y{mbן0,FX^[xWj%Xwtӓ!pBM9 tBn#U&  t,,UmEDI$ڂ3S6^ >v knoE~`At7Vepv-s,/ B]OFԻj=!XPXc,H*Ob,,XXEue`a:kFu[pD5Ȗ!,Po 7 CI,( B@б@ǢX>X~S>`1+H!,^i+r/âZ wxnn1 )哰'c/cES狠f`a`]E@P(  t,"h`|.`]b?Zpځi5"Zz$!az6ς`$5XE y70H!Xfsׄ+X|> /0O"]nhIV}6``Bc8 s;A{^ ./i:>,.}$XbLY/p"X$XO;~QHNo?vi(MoXXl,v㏰~ ŸsŸWXxx,ʋO~} Ƣg<Mqχxz`,ānN2X$ w>{tx?v/,q=HTH&n0~i%WOy|xlLSy|t#{i [ciI1u7l=,@cl,?q`Odc,||7x`jb/wO,9gW𱭧_,9+O~ ]h,4RT#F"p U XBc'Μ[g[ֶډ띳  Xh,d37SWFfʼn|WfӻKW/'M~mh,4b}~I~}[7w>r|X3ϝ}ѿ`ԯn|X@_FcV,@ckcځ#@ @@cX Xh,4 XX`!Xh,4 X|ދFu(wTW9l:8Q[a&` Q^:-8|3Z-jTh,4 X!B6Z!]",hJ,BhZ'XQ?צh,4 Xk!%T@lFZ-(EsTE,jO˕j,@c"o5"UJ_ݬՇnH`q Rh,4-SmzoP)Uqa:9RåQjũOs4 w~4{̓Z`VŹQ1XL8( Xh,[ 3Vzop?*:,^j/EV;,4 & Ƈb*',* XBcEo!%dWYa@wp* XBcEo"7T> f^Y,4 ,z|4ᣋ墠hV`A1`X`qTRy+̧xRi *Tl %Xh,4 X|( UҮ`qa5_ffY Xh,@2bEc&\57Ehf"Wī1h,4 XS^xSVMcn_{/rJj̴@ب8  Xh,@@@cX X XBc` h,4 X XXh,,,@c@ 4 ,,Xh,4X` XBc` h,4   Xh,@,@c@  4 h,4 XX` XBcBc8u꠿@14'XX|3n?\R#8@Bȭ|n]]0h,4,7pU>..DcXO>z}Xc7Wxϗ8s_3dY}\Bc8,^'^n-՗%s8]6{}nrǧӋGW-zNΝ/xOoGWH'ϏwSXh,>,CZM+1Pl^< kv3JIR_g01?*.>s#a|N>+Vݴ{QXh,>,0S$,,,b%q>.`qCn'Jxqsk"Xijxr*L=|2L~  E`qBn3[/zH+ǂNGab(XlL>[Z Ci:層,ςE K0G6},4XNso@1H,eo i GBc b>iyXx\8}2X$| `18^&['E^,4,uݞ,~78ڦGHq5r\0WF/O  E5޽6yy@ӚҫeΟH8]$,$r@UbDMqx0TP8̺X:ΟG8 cޯtǘ!pgqf3[/\t5O T,X }1۬VGM;T$kHZZN`{Z&QX?Ժ#-i|WƩO T,X Yڮɛ/0h׍g7FM95yL7o2P`QkZ P=R&$Cz Z[؞i~b2bO)\h 3 wВUp{TQbAŢTh}Y?WjzSV Uc,4myP}Eב1zxa@M~nO* T,Xqi]\IǦSm,XP< *T, sbA,XP< *T, sbA,XP< *T, sbA,XP< *T, sbA,XP< *T, sbA,XP< *T, sbA,XP< *T, sbA8S s Kg'4<)XPb!!]{W=mtF!(T18 5[ s[@ *uvnuvnVd;2\dž擕m*9vcT(X,~XyE*r8w l\]P`Ałi{u+;b"_\]5O T&FM1*,;NՔsGXYک}TI?)XPb"_`1%ĸ;-[P0{UbSOtGHM1*,䥲شb'_*}s@ *w?q3}q ,ĚB> Zk}E&,ډ9VcT"XML% BgLBs@ *n ~{~\{:wC,ē z!˺œ`Q!j~]tsHlMYc7 qĽe T,XK/_zjWs_aw,t!"5EmtRc{ehve6*&[J稖hm`Ѳ}i+->Sm(qg kH֞rg0',埡Kc_3 u<QhyK`3lD+!Q˦}f#mf?e **/|?&`6;xG>ųBvbezHnO@fLW16BtLOo}Bt]3u]W1Yujt\XVѸuިwu@5M.P2_\嶓-K51{%Ww6-uTK S0Pv^[١X~p̠&tO[78EjcVMg_Qh![:X`K]kfNg家&פo]I.)E.mμҌDQsS]Ck?dblPg[NKԞ?ӜJbAŢ`#oKNvo KXeG^uCn ZYE9*b^@""bvָ::G3&+B\:MjûyQ0?A܍m}ּ2Z;4#\՘nj=zCSn\{y[?c]UW|ݢz-yԍzޚ0vp 'l1`nj[+e-s9LhM+q!X<кs):CgeĞz+!s\6mZ"Yi+3'lgF7YMYl4ܟ?1XPbQ{o0_|zPnZKxc!r~C6NNF"֣Ye,ܘk2{d'eL0\ٓ;y- rf#, IDAT$ tKFVR3u^?֫M 6-?F}6bE?'XȉɭU!V<$zb˲MF=܇G`mQr.65-S΅2_"f6ʅXtx^Pp͠42dXP*wGPdoq D_S܇"׈L(vG'9eKOX<{ hz >m>85~e`lX"Tip$+v,,d?yA.e 7%"}cOb`XI{>/7;קr,3urkkT͟s+q@AzxK2􈨈tiQid(`J`x8 X%䜛^/[+{&]_#sYojn~>~1`X02c4 BimIѪkQK%/L#*SEq`K_JҔb,|ŸnB<)IP.]8jCX`KFx% ̴ˢ1b386Efjc*p;Fٍ:H2: X؍z4b*2]4җo]~a46[/h`9ZcaTWK >vnP2b,˦#P&X,=~I.^ 3غ$~G0 pɑ gpX"d_@@X,4){Km~B|o~{mV$+,P0'ٗ9 B"Axٓų8eHc9(c@8UO1ж#?.q"wZ no`qݷx=W. 1*[`QR7PtUP9{Jn4Bs=~Y_G~5iDM4gDUbC:^(,pFvƗUUʪh34e >%N˻Lٿ&5 ,G¨ JSKRLEiz+2c$¾lnii;b]:4|XUWPb& `9N8qrY,",6 fImUomeO`?O E(,n'K?Cy<)/-,֞XY4!FX-7KK$XC"ǽXFd>,Fks]79!RG{"-EUf6b1 FD,Js@_Tft,؍s+gOHfh-IZt5ҷ~+\v2 h7;_K'DT5@NuY@qAJ07~%$j̘!I]6`^NTYyy<尜(%L'N|`,b K&*W x 2.x,m؟=^o)kށP] a`1n\kBVG{(`1G 2\--m >`ܜ"3~B:ZRͺq6 $m>,= K,JjQmɳU X4ɘ`,->e Tj}ŇZ*1@hRWkp\@F+%)wW{oTlc\02Z fu]s. MVf̐$X.hH436w8vN59EL'N|`,b S`&Ĭu().OI.!ޡ":*ɉ6YoYf3r@A:gyhHnZYX/*BŁw'%,-Ju0 izB,E KQ`Q{eodv=!d0U5F]|l,#w B#P-f.J:ϻ$6LCv)&Ue(Ћ[ &5I X.`a n*p,3$ &, EUj,g`ivĉO,,DE-,>" _~~ǏX09Ykap _'9.<&a$#t>Y"ybS2<},C1"nfV d2p@/,65d{mq~^je[ Ų p\j+vOv`/,:^UN7GEIݐZ.xJp1B8`ywt;#P-^ h,"378Q0 h_ Vtm용yLirTDMk\02Z fuݙ`N X+3fH,bM Xx'u ,zJ_ X(}P=Q)RpH+A `X %uC(BuhN"kM2sr-,(氹]NQX1WU 8#Z*ݼIa([Gh%XUwτ7 0Vf̐$X.xMQ/w=rAէRXDO'Np gEԻ  Ә) , m=,Ԋyy6W(ROL5XL '!O Sc"H|s`q`,nRzCSucoG֢WMk`a)pX@X V^ŏʼnX$#B=h(nT&&_h^h-ԏֹ1{wMk&,֜*:ϐT:ED,LVY]uDʌe){LsF"1+T4;qQ gp ;Xd,0XeUvU8:łTAnXWd',{t@HVRS͑o^qa,>,LǣTvLT:j]-,Ǐ`Q)E ,n\V;7 S|q9,ҦRX(ajPzq<ޘâ$74,p+(mα9X(fRL_vL% 2.X z` yz 0Vf̐$X.)]F33`Kr$9iiXDM'a\\|ͷ$߬T.OCf{J 2\f@E!"F "A`8DYXʥ,9}f3ÐEgt>=]{!d,Xd#!_hɧ[ńC6p[ F3%c*І%sZSƚb!k.kMBMg=7Y!ET|7fH(#hXOKotNgǐpo:z\^77][XwwWjqpAT]-n4J*Y*N kfiw\l9jK??`#8?@P(bAƂX$b!UݓHᾈW͸~3>}r?""gޞ0b^B+gbǏ~W3~)n%ʲt-} "UfB9!:J?c/+\oc{t0 1kgnfA\/ɦ7$ƭOǯw:Y<:\OHj:GJ\uo3~k&ҕuߙ.|Z1%/"Q?~'8tOJ]#d,XdGhL$->ݤ]Ķ2`=Q+BZRPgq>Q_jr/ 2d,Gm;iL x ;f)lVĂ?&x;ɰtB֛Δdz ^,X?Gϟi.4с]oXA,`#_ӎt(d,XdFNjYaM7{8vEk\ ( cA" X{O.1}wr(JJ/v=%A,X[,X[,XHOXl_,O?ł6™(n cM cA o cA o cA o cA o cA o cA o(ʌA2;*3G,XlS,2f, bAƂ@bAƂ@bAƂ@bAƂ@bQ4X,đϭ="6'X|wX]bqW,X[,X[,X[, &cƖb[,iL I,Iۣ2+bbF!*dXfXG,X[,-c,omb.Xdŀ8qcWD/hš*-J'O{|xš ۠J 鱐m8T76w-g]b i d,z'N 3fܵ+bqXQi7s!^W*x+7H@,z ≣ ~ȳyD[ }7bhCߴ9Q +Pbae,WW,],d,п]obp5xwWŢc "tB 2 br>Ox>=VhXu_,.闻U.b׹\{ "X2.d,bѥmX8ߌ:{޹Dq83q\c%f;$~?r" 8Ѩ0#^tT(3$UuUW5,Ou%yx=o(*;]SXoŞUT5pK->Ƿli 74PߢH- Fn{J%3bQV~EAQs$,I;q-4vwz84bq%~A&]ibo,}|LʣWV)&w@3XX2K,Sbago&uQQOtI[U4d!{Ղ~%^v;bQDW[UVk8A9g(+z`PaVrEE:~;2Τ^.KQL⼽a D,6y").K,V^zp" G,]3 Hϡc|HwoB7F4Ow"TchJzzkFZ.%;bT}FS3n轫zobq7xX\O=%kwjϷ琈 PM{NRMiN0QE eTsZ 6}qy2#3 ~#%ڇ_!G,2p2 G,t5vm.fZ@,2b1 #I.)ÓcAGgAtSwCݢ\JNyMEEֻR,nOH͗fB,8$je, A.F7 DdhG,+.F(Ra/nKt=y_(V$\}j2""`t Yx{.  ~BE%_ջPzBg9B=oj4&hZ׍$jrJ.-柷XTSGh`@>_T#u98A'ˣQoW@Wd0 )*.*>[{[,U*T"xz%EEVDu RQ6  ,b!N}Y,pTÉ[C$~Vot)@>> W>q{T"QV*fp-J2_fRWhe_RIO)".h< G, aX%5vz(J0(V#K!G,H =-g/XzSA UX~bq] BsḘx*Wy_ŎƚbEuY8A1-׶j<;bݩD-%22P&,$ IDATEtDk/s?rIM__4<nōFD+"؜;bjuXXBx4O,Pa Pb\*d#zR(-?KBxEb1"|Xx#!yb Y~D,`Xb*. B(XbaXb'zO͛hl)>#XXRHE X%k2bdo/Ix4G,dbblB,d *|b,hXHL=߬ U!^L G"kR(UOEl̴Px4K,ԤP+B$_bAX%XabXC,˹%_E`UδP7B,G,6:e,^\x/_F,tb񘱖-؋ZœMR,2ab]z)dD GHq K 웵BT=C.Ă7XܔۖX|9b};!Ϩ޾w. <_v*"BF+fbIGUT2e[,''ю҈ر]ٗ<ߚR :X]$Śc!J>adrA#.){B}cn[A,Q7W1.wMyЧ+AQ׻|B!Ƌ[E]QAxGǤ-a'XlW=V\ 7)TLlX~obXBqk`_"f]F+Fb!M`R>Ԗ#A2m 74)fpXba^M,KsHYb!J@/ne>%qMڋHߊŅ yqm L[%ȍx !ۄ'* m Jp#ܰ&E-|baʞwal uSVqk`(T/oErZf'ERbp_YW,m ubhZ/ kPO^M,cW,d:] w sn W^i 5bE?+m Loo/Dl7TXDV )%bQ-iMؓX4}+Z,NC;T1wGCɫȧ:q-)X_>ݢtŨ5w;;)l7{%o6&ͶJVmU᮴hbWlbQ!$[bϓ)mIK,븉E]==i#N,(tɚJ X)^imgba45bŅf}b1" Xws]^ÉJ|b{Xl)I!W0c{oW|2O/hVTZC+­nmXMOLD, %ۢR1kԊګzWj<"/J, M%8-ɬcĖ2?ښ:nbQ S_BbG,ř> =/v[(z[M@4l%&%ZMvUvWb *!$!]ma3{b1K*[+FY:\Wb7AFlȧ:סהI" qy^,)nX=}_bq ]}Oŭ@rn}_ 7\#ܕĂJ5vHD,N )lQ`A*T +p {ZEJ *OuJ)F4ȼ u X{PCk'xzFZ7 v$T7b1Obq.F,Voy$ ,)g˜bNj/p\EP"ۢ,\qÁgS,fBH,[ba[YP5 ArHU< lBn_bqc z-_PB,<#솳5!S\0=fx\,T ٨X"e[^*&ۇY"' v;mb'YmWdQdqG6Eb@i*1J,\b X(ۑ" *n z-Ul5/V,Xg.E,PB} |XP$)vsj`Ģc $'GX X" _Y5#.t#o" &XLRHhġYs?},VX?\-\\^,3kmKUlj c*4VH\2 Yon vc*b"EE,gY(Yv[v~½fj>[X(' S+ E,NↅYݖIGS&J8;bb0oY,j"F W-RmA/ak$*Gi&V튐+bNbYa1)Xx7HjQPdaNcvBE-ja~2 F3cl__ C "_Q 95ūaQgXA;bO,dq[ Y(E-X"[DK(>(l"2b!_8#?vkJ_IeY袅Dj"/_|3Vدʯ*6VYz VnLB3.ԏY(,ܖ OC= ]fPno[QW _*U$kE]r*^mX`IE),+yv"77f*5 iqIw-nV|Q|iŕ +xm+yU yt,MBJ,BdD,緍YܹY= -\Hn)`0Kȩ"Yũ>W ++zj,XP](}^[0TE> e,rH¬ZlȀXXkEܮXkEگ Aa5جnWoBS,.YL^YhebkBkE+{NvkhX ܅OYXG-,5 g"_y[\fBT+I¬E+ij ns;qG߼" ՙYhaW-lVR+vjB[EQ+lp`nX4ǫLB}7C ^^S}$/mY䓳1fQ4ETP-lpE-` l)($UV!b^Q =5+v^\ޛtAU,nYa(f!{vF\-RBb+؀X8 ٯp"B oXh(,Ţ5 U^5ɢ1 e,L-ru ]c:~{wT\:Xr w``Ѿ5[LBV,P,t[/CY=Y,h?2gsЗ>b0S1?VŢ>W^Bv,^ۭX8܅ K͋0$f-p7EN-YzUh5~c2E?ֿZ +zp"jݚ-V,Z7Zpb1< Lv*En8TeKCS,ƹ{&~:V>!BZEov j׹ ?5=X+34 o׷[ɢfNCIHopףE'ڈOť'>WftBWE/IֱٻM Yi-bn!+p .&:R߸VqBk䊶W{EԬVXx~pU uCpzQT`0K4BBN.UHHB"{#sP~a!xb,ܚEokOChq`E-|r1G|Go7*.5<bEAŢ"oX܈OܜX C5Yi8F q .jq-ӈOS,UXkTzz[_2Y4\x⦡\jav-\vQŀa Ňb¶ +V\!sPO|*żbd543 y*E W-[\8Tn&Ž"suV\ZsW jjX$gE,oZ|Sj<ř-Ff(P<׊nBsEjW xkV!coYzۙEE-^gXnEZLE:-)UHuM+WWb7,L,'g C5ŵ,IDAT ,B/Jl!zqd,hsp+›Rw+r+^a,& BM95{b1-=1OCqR--ErB c1n z~nB?\UX׊^ќ,{zbbQj' OCu,hf"w +a6kV)Y,mx%K>WT|"BPEڱXX~d3 s32ZjaEoGGvC9/͚JPeUZrEsP+{Ŵ`ؓۻٱfMC-|賅zV/6P y;@M,*XjErf6W4b,b-0 {ۘEʏZl!ntGon[**\OW)+޶rj`j7,v&f`mWu;CIHj m`80J*df h]BݰXԇi,YPHBo>]xv#%N'TUXQjE> |"4 UU ?E/ZVXVN!@UBAU{ z݈E-6 ܦY8Ѣ2eBbـs؅Oz*rhE%W80",nP_nGج#Vj1{7 y b*3"2"Zs3LI)"{99<Eb;Zh! .^l(& OXHV**bYWlgPQW <ݾ,mCPC,֭EEє3PH00ۊ䊯y:yaq;XC§ź(mux}ZbόjRS w]1Ca+ eBP>--2../0\g4 """ Ҍi,Ta + n¢.WbR;Xp/PbmjкȾ?DDDD!mRͦȫj]V(V,WP۫mO}C"Cgvg"^ZY[\(]d_`(hej4EFYVm\W|Hﶋ=,*< |h!-6[8Xt"# PFW%"""7iPXLQbSE s+9:seZ_ -^m!q""0?FkRȨxUdŗtY1!ԕaC,PK AmkbŦ j 2E"f*ĶbeZWT]Q`qugXV1Y؟UK JBbE k:5&+gN5jR,ȨPGP++Ժ̬y_|`1P¢_d.-EU/201Bjɛ:P՟)TeE8↰(MwFyiB\Di[\^`hcTADDDD47uʩ4Je>B>g,Ң2PкĈADDDDriV) ** ++(hb/ܞ,>z Z佅EEoV|DDDD4>E1&جX!W=ܾ, 5& EE O]BDDDDo9ҌyFUȪh!`Q-,.V]lHpDDDD曙#,ԟ)STXUHVT}wPc/,n J<ֲh,-BZX[h\$]H_xA """"# MHQ$SHTUXQ[WW8njHB·Ŋ *3vMr:MSbEqEre~gɢXZxXlapu},*Կ9XT"ZW+Xð蕅Ylp"B SFg|DDDD49J4OixZ"PEȊr_1ްEmiB_Db  ! DDDDDoQNH!M񊊬[Ww aPS(rq"B.d b’"bCŪPۊIWL"ԝ`1#t³Ŧ c&7ϟzF!\U,pT"<q`1-LZXqtyaQQ9VԦXQQ"`Ŋ,Y8K C Xmap!x!}!q9~0Ecc*Uea8o_qOX Ȣ{ } """"˟?ٚAŢ uőS`q;B"ņ 2Gc* +uōQ1 _VPȺ0'd*?gtsŌ,pi"B!! """"@ )d @.++9s _ZP0HP(rqèW{R+j,iYt"BB"$Fo|DDDDk,?PUf~W\ ^CuBD)[\$]d^(`8DDDDDBKhPdRlШGPhAU~LX\C"^\$\d]H^8r!ӨX(LB**BV튧E]K0 """#e1S uE+ʢCHP(yq2,B"bSE'+\1suGXt7zBX ,`mʋvah XP=џBXP;;~hAy%.aBX ,E_Zl 8)"tW@_ TQa9/"f tQ  a!,"}`WpZC aBX ,@X"c s-Y  a!,BX  a-@Uh Pa!,@X @X aGX ,@X , aa@X , a@X ,  a@X ,2z_ k-IENDB`mkdocs-material-9.6.4/docs/assets/screenshots/navigation-sections.png000066400000000000000000005603271475306445600261250ustar00rootroot00000000000000PNG  IHDR XlXPLTEGpLGGG333?R!!!/>>999///XXXGGG***|||CCC""",,,QQQFFF`aa܉hhi\]]dddMMMNNNqqqyyy(((333111nnn°@@@ٟ}MlllvvvfffZZZSTTUUU?no~DW𒓓5GNJ\֫Rc钞aqÅZjﶿ壮ދ~晤mmmzujzfvƳq;I0WcCeYuepR]iuzNyᛡ7E}\}rЯRtRNS  !%)-035$/=P\d #('+,2:@ECHJN7RU8Y9_aBGLMXWT[^b] IDATx]rXa0!v2$}^T PB/kί,YG\*>[/^ ,@X a!,@X *J5-@X aa!,@X a@Lj aBX ,@XO a!,BX aXrR2nd aiBI@Mg&.Fϊ9>W^u a!,b!M1ZL8<^/@X,,Hf*7V#/@X aVŐT3j aUQ3g̩Qϡ-BXL5M1<&})5}1<.@X<߰M!$XShsKٺb_Li1uY,3+GŰpX\Ei\,1-9nA壢"(&_z'/(k݇ a15\T(IQ_bסV4(&9`NYȴŐr"YHUQCeqYo ң#_ǥج(;Ug" -&TU!%qO1b%DV& @ˡkhZ.D-mfQӊhTا-wHEQ[dҢ-+"UoM*E$.bmԴ8+"YDRLgȋl[DӢ,9vEQV L _ fϐ\[db,o^fXWBKHŰx(tUD"#sVoЈE0.Bm1̢yŠVE2))d^☴hmf1BWeE8*E1YzSF.qQˢHuEh\QY,HR}QEEY,TUV"՛03buhXm "H4BIE-i1bY4zv\͊~UĚb`X]ۢmfeE?*I!h;FyяҴ,6Wd">44!q M- b13A]qH$HIE<.iQU{EIWĶ+"@`&H]tۢ$-~Őh.,J"+UM @1͋h[ԤEEY,b]qx *YE)=`B#ݸ8[Ңsj8E[wEj"88Ȋ"ph9}ѭ"EŜeqLWѬ8NT% UF(/q[$Ң|hbX3¬GE2)<ؕN[EIY/"/]Ȋ^UĒB&Z"Ҳh",YHtE$+pVkDOd>0E'.{mZVE"kɬVFŸ_VoF.آ,-{ uz^Q>n>ٞ?Lo?|GEa޸Qq{Z"vqGbh1NY]_PVPѲ3,6,ʻ27i'oy^ˊO+n?bIh]a`nF+׭Юx P̛lf1SX 芧qPP= -(âh`Q;)a#EmWDA}yiutY]q0nԄvZ$aQ =޼b+,6,E6o%ezwڮ9Pn7,jaQ` .vjȚEka슃qnwh@Dz -,,f P]j[Y솔L x#TTw^!,.,R3EeZXtXWlxYleq]eq°.Xd[V\ ˃E,J,f E❣ލRP 8XjWYpwˢj͢ ,/5 aUa+3ȫ#"+G]e,N14o]q+raqTsjX\],nY-XzfְH,Xm?vt|ʟfYY,",u5"_<|9x,wEeYLMOXEgW}O?MSY,.CJLf "?ٗ/C*Zv/WEPXxX=SnS@aT8+Y7,]7}<i̢,j, w/;qyDž!+܄4 MND@ ~^WEg&6(M,WթSնIluO UAm#ArT7XP3yP+6-> <)fu" 3R3 E+Թ^1o (p8Syf!LpK­d1`Qj+ʖ{d0SaʒTirY9H j#T5Wd-,45 %YňJ(c#^PVMP@j,'J3@,< Bbn,Vm@,V`'r5@% xE%W̧bnN|}З,<}`1m턪ϥPŀEQ6 `-,f(a3da셚#X',F([X1~buI`O?m%YY"`j`q><)-YXe1`P`mBs9X| s@b% [ҘEThہ +zE?X,ّӬDdQ,d^`, zJ=SzjePE0lҕ,,>v }Bn +ua=tXKsf([_`Uk>>=:xܟB dah ?XܰrŬJ;j6CfEB_B,XP\A|!YPyڒ胅`!H/Xf"k$Yb5f9f+YNY,XLY:E+X$` 1Yh6C') E+& $ jmͫkEJsB-YLHbbat[aa(Xkm,k˜deߞy(XhM^ ]mi-Y,|l` M3Tul]"`1%Xf] r X>BI~%b1Ԕ~1\hP /XP-{ 5`qEe׬S" /Xd«dQ3}v3ЂJjlt:NSlү /X(#B,čPE`xN'If(mbR, `Q,`!,8Vty5w라*ߖJqx`ꅲ,bY6+vB F& qBi2,̽PC NP! ['ԗj],O(JmMBW,҂ E'/Y۶PECߞ޲?`aNn`nX,RE\oPeEz|2fp;ʂE+>n/ߖKƽP  춶n ,zQ0BǷK!JJ^6+EQ X,Y,^^(5XL,j͔#b'Ԫ  `Fݲ$,`QBJP_PyS =Xf`LX,#Wiܱ`,`iP y8b,^A=XGSE/ԼXrĢ0t| 'Xc,`1+nW͖#Ne^  2dQ^xPB,`qO aĢ E,@(r||OϾ9~90\\ņة(=ShEv>bQNG7XsW(rE?kdVG橫C i/~8ThEevj#ň@QtkoxU@oN ɐŢ:d*{tۚ`)XL @]X\|3zQ'_N  oN Şm,&  M(fgxEF,|'@3t)6X<}-.X,\E,ꐅ4ujVo! )XF,VN(M` X`LgGd_O~,^G?,FX YPmva)T1bQF,Ո:{ e]‹?̧^/zi:y{_v?%_ew^䏾ݞ]D'׽4ڻ<=O~kHa]@ݙS?tujeB%ƒ_C%Sa)dIdil]{`Zꏈ9KO85_3-^IoVKX~gLa!0 -umxxJ0yz\^^TT8-}5`w`QZ[, ,o0Y˭\S_%J(P`A)Y[WtwwL$ݙ 4@oțkli} $ v% murX$]2m{̨0xZN:#뀾87xx]|# ߀!HأdTS1sDϴcY,D^-Xdy^XX!B,XhcqT`D%!X? "s<FC 2Y4x12(M ioYROU,>i3LS%J`qHOkZ:<)]E+ːiᶮ@u/G2E_X5aGfpQuAbU^Ψ-d-~J(b`5sEdY|fR1{E558DEcW)K [.z5i`+qBIX Xbŷ :Xj}PD Ui ,Ȇ<<,L֒#:?*b٣}SN9>%mosȂ\cݸʬZ#M xQM-K.-|%jÆ Z.t ,EEEV"ON >K zlsfۇI./?/I3 VWEdyo,PIX9XK,J``X7'i}? ,4 A XK&ik)Q X0xGvs9Q9'-<ʶH3Ǟ]'u%XthT'  \/`8lWoH CCX [P_Es,d!+B xWm,*B,,`"E\?' 0לT. ;,fPIv؝j)RD1~P~XqG) u`1ʴEٞr,O2)M%NOId@ 4n B:OE"5TPX Ӕ3 9@'bE܂? ý-UA,~7ՂW, IW;C$}ӃŁ׃z<4 `1\> H-FJ(z/_Լ1;7g45%NEvP k^v OVBdYB/K U ?6bxكT:CY.`źGܑF [wvX *t]\̉uWPJ( \ uso,D>(h4dQY5=Oft0Z ]8M4󡰋TŔtN닽n 1934{ =3~ S\1HdQM-|ٗl/fB1Wb*"ȝ ,j, |Nl`3l 3)Q,KԈnyQ`MEgջdaGy`]Y;/!W hϛ93Ֆ[O(c%XhI b( o th&lҡ [TXD,G2W%AV!X$\AX_)WY|\ôPf_3Xf!n ygM\,`ϫ( /@3 v4Uˑ%JӇ2bܞwo,Bmo@Ȟ)5,Ԅ KHDV!ױT7B8pBX8 GsZ4y- H7Cih} ,xF;{g>AoyYay)h bX{||o,jBb\ p IDATSM,K6W< X 7s`6Yi ůKv ג~bwK-{iW2i5mb d@X:@%}΍$vUp% q3n`xP`B K,u`o2+s݅+[ V:QV JVY1R`FUT QCv^IÖL9X휲P6Sb>E'"c~>L7;Fކ`O ,[,.>|(ޮH BN %X( eI+3F?x fk]*+~1oG#k֥v'Ah -L6,c fg ft&.Lp@GY.֤CojS b[Df- HuU07 2Wѳ&֘Ll\c%V(ٸ7Ys`z,)~[6j5BlxEr bЉ#nZy32HYn#_~$<&bۍ;fb ,[,.^Xs-XX[N UBŁ3dx d} {\I:jKi-ZBtFk$A߂: q>: N&@-dڒ,Z xxHQ=nbrbH=`3%D}ݲ0ru  ^X*T#IE8ЙE}OwVV+ym͕珃F37=ֻg}o^k|Aojj䖟:ɀ:p+\!+3nik-mc/ka%bW X$5d\l$9+ B{k rUlq|K@{ g\o[]>{N/ eP{a` Bn J]W ]\΂G2< 6~$ݻ+:M֭ڀXXݸ @MC9as#XTm#aH[:Rf#_S`T9Q@l4bw@Kyd``, e( )jpmWF;b5ű",ph *,N ,k۬,,޼@vEEBB 5:,X̱N_nxrǢ*MǀE),Frrf),;XXoZ̀Wxa4XxiHt §wA\F20Hގ\$y!vH <6QLɄwY߫5]U`G,Wdm4y[`N.Xɕ~.`W`kW}<B37j`17Xy b,fj6R΀ h7`bC)i`O.oz0/7!ԠkHX(ՈY5>B:|8*Xt`:o,`'`_w]BW+`!B}f۷"?ca :(XLȞu鐗$X`p+*zU(n.2* Wet ]g@99`a%p~S;!QOG /dQ*6.X!ie%G(jy`~.XClT P4T!O0Jo?{ RP bK0AB$?4Zk5,Xt'q;SJ`t~)%EH,f{#.2 9x]>(LZةk_>˒`J8&X!D CZ]Q~ ""U*-d ,E,C,vAp3~{` ,^Yt+#-BF3r`0V6b4=h f/1d; 0V72W;&IHn(O"82Xx`A__P)Fvtxg. rkX}< ,Sx,,C,:4coYnX Xaj¹e7lgȱ]%d``4錼>;Td՟ptS,04 $W iO:(XP,^XjXXx,R`a:Xps#hB:Y,e+_,:"@,3`ݭLO;䥨bkٙR3 VdGQjZD S&yr,Xd0"Ӓc6;Or׶LwfZכA ZG.dP :Xc c0ԁ?2ߖ[E,jV ,&,[P ,j!y\yQ ,z~C:n#X,2S(gAQg`@K<Г`M^U(s'xr9C;i)lav.3{9XP^:X|k_S`'c )P`AQyoQJ*k]-n*3v+Tv K M 0΀_[Ds :Krw.[Fj'(L6NXTеGx7޼9վӽ ꮣf 0@vBzX[z>)OgDrlPl :J΂ X=g%bQ0m+oJ֛PhjcxL{,7G X<9XdA%+v>E\qKeSO5 cz9A$׹G XiP,h,Xp. [mP' .Sjd1PKE7,ppqS,3`Z2Z` u5 In .IO߽Z[00> ,M$q駈U%a_Gq͒8 5=<O YЯ%ȐE]IJsw= L/."[w7E`1;K:[߬`q|h( KoSHIo3Kx?ZdXtEU8'`7RT(o}1wTrxh5>wJEŻ<rXf 8'uK]3C9!o.XY$h-YߪworX۝13$7=4et?`` ;Y04$iڈX[<[W kvػ6=EMBT u*f;(\[ d@Y]" 9fy {wqx{Ιϙ1Pc?6ǭ|9x_ݲ"$s3>^X8IJ(W-UnRJDDY) T~aQ ayƶ,!?5;Q :_:}wF",c,3HJ?7CU1+tN1_-:p|ྫྷjx]u7CKFAt{X zϞ'wvNA WX3/_; n* 'XD͋)GAk9ڢ~$nX8 OnT!Eh*q/,rcaL,m{F#,TW G`bn:>o- GX >ȅE ŋE'½׸9J.˩j-mjN@(7T5t)ۛXaZ5!,PM!"aa\ cQ b19ѣ~aoVEI&IiYtRlĈ˰\pXOXY{̵-vj\ma{\BԊ,E VuQ#OT¸~uνѰO,ܣG',|brrRc)hZn "+`B,1 pY\;q{j1;"eaVˡq-!,aى a%}j0HtME,aAӢMVcfY\r.xY8(^aq*RCs(,*ƫW>U6}IcQk[]VB4-quDJY*udX]7 OeX(ZBz坖WSU=X9tT6WEPτxEo.,̉O,ްsX0p,E>*y^gؑ(7ˑ >s%j{EۃN,@X |<&#,uş2On]:5$>,w;L, ,pB芯8l{ b '_L,F?,RvK7x`N,ݰ"X<`b ,0a|&nXx u/x a`b@X7oXXbR=G&'Ib O,~ⰸ7':,>$, a:,&jL‚`h5gƸ &aBp P`fAW;,cb aqכXL wS 7m=ޖe TX|?raN,  \XxY)ob1a`brX0`b\9,X0L,XW1XL09,.XLtX0',.XL0paX0`b\9,X0L,zM,r7o @\&ͽ_YLrL,&\No~iS䕕O鷲+L,&Kg|۟67ߥ g%& R.0??N{)@@.ߥo /s, =œXdg/ -޾M05[UrAlbqo,'bއ|N4|j,"]ۊL,tX0a1"Lz Ks*׶vX$L,6dYWq $@v덍Yٽ%Hf?x"ablivp BȪPBy͊W& ̫*-vggd^0eΊWi& L 2.vU_EZ-~*^gb0X__μm@\,iŴ\<3HX.mu N.uU2HX,,qexEb^X]X`b0X\\Pm^Y.X$L,u[Ѓ^0˅2̲n ?/Depab0Q]b^:3HXxbƷ `g& }x g& sMQvgzѦzIfr/@b[ QBJXSq*21yG=e| g#=gMgggІWV,~ުVE>+~ϊ&"woo ?w7E,*Eg%Ud,YtY~СlX4[)/|ZTmW v/2, XlbXɢ\, uEb5,FŢhGzX4)e~"X4/@hkX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX(bX@xX( IDATbX}X+BP,0,BP,0,BP,0,BP,0,BP,0,BP,~U/a1xX(9z}kI,Vp?qL?a{âsT?^<:8vKpvn 1oP,Cխ۟u2$sGww8=[ HX Ξ4,vxlIOϓWO3?x_tSsȣ{af]ퟏɰP,'ëG:8S-EO _~jWtBM6&;q^“O;MxKpx`/$âq#eA;?2j}>bpX j-I;Z6ޜ~erX$iâmg{j-x֥m`< Efz;wX(EaLâkk^>1 ѓZހwҰz>%y_ѝt֭35Hoꖗtz ՗e}GQLf:Y;84bxX}HR=,2\&&s#o9^;,7n96ݰ>7^[{>{Ӈײp7n`*/;zm Sd*yg~e.e< :-'ǍNga ֜N[5âȽ /z}?԰P,b$`!?*aq6>8]صF  J(#³ Xlyf׃-1'c2X]=沱-4ɯ8(B@\'SM^!.B7l01 RQ*PX(X_3;Aa4ÍE<e\Ez'L e~Ybaͪ ~c,wPgw"$wt-]Ee`[= J(baYKyI5Thu-"_݂{8BH/+6Ba !r~WX(X&5ms!'=8P?@E4}d&4һ= /\,r7w `hTj"P.3wfޞqg +a=G"巋6#XWP^kJYTl27I+Y>V'rNg2pvX(PDɯ ?x=7w>J zJ\wmkXf" X,k8&F J0j* xk;IЧZ HBy,,Cf&U*T[x -$= c`83םOޞ*l Џѷr)fM8ç>bSlq%v9B MAUzxr:.?Ov`Qϔԝj*P`D_B\Kf5^5 u`-ޚ 2 Yo.t#X,sS$R63U@|~Ɂ4| k3C,By,,5xQ݆r#`2X}LH`?hoXYT07+S ,(QGr kwn XDD<5#z9+)w.\@:Ѵ| I8sBy,,>* aȱ "Z[TX&!Myvo֘BpF.7Kf5sf4#̮#pf̸~ZjB}Wwۼ֫3Yyoށ5l-Ag|jmF\,8[c> o}؅I|RGY}62ZGWDɯL` ф}.hlu[.&yaA=Xd k r_*>P 屰U US o}5y,1#,J[F8JU%o\B˙bpôl;u ɉL"7 kiX<^w6%064;.. t{L{҅DpgBli_l!8u ډkS~Ne|0‰t3eCyn~r}5ܗڪV]V_ĺ}S/qWDɯ p:J5X2 .d` ;n X|D&nڃXF:**y`<ca1=2 rq `3! myuX\K&fl ,ĚMG?g18Y4^Mqqq̎qY:Tܼͅ2y|v}f 15.8f"8ΕHOEDuK2È*9'nt\w__axD+Y?=ܰ`"5 `c'󢍜/D _{5>m҈&I8Aj,Al3ڂ $DJJW HBy,,ȖXWW ,Vj[_%BT)bCd>TXg;3,cBE 3,J|e7T,^=%t b[şXrXe+7XTA/,{[8BTٱ6`Cg>Jf~o38~=? %/5>bOsGq>TAN \'aO-51Je5!%|Z = ؠԟņhKY+ŕ(Q;u," (TՁf+f{≦1O 0X>UC(NcuVc<m6I.icQEQxa'㩿f`Ҹ<*G˶aYgYO[x`5ط9PX|ܝV➆An-`+6۲>(-b'mz U4.MNu_K%oŵ+蕹U4@9|Ig.UY8;s_nX՚X|i&v$L ~HS-# ?)7g["&OD<6J(-`dTr,˻v-+J<l-5n X; Vɹw] Xha3w3o 1|ʎeբ< P hP'>8X γ4thKik7b%;,0oo  Y=[BẶ`dP.d,ʂ6X/ĺOu6=44m:![2^"@BcܚF0Ucs2`Nv'ޑaI8Sq08ڒ.2cV_˲Z-Y1TA[-NG|u#X7 ?bo^^8K} f.}o_?&qB{ #9:RO=!O;pŢ ,,:ƈ2Kn.?ٓ<-av:βs,G/Vퟮ$l&Ey.ZEhE ,ీ",XJı~^.XM(QB;Zuë ]e(X` q9mZ{f/`SiSW_U?ELUSHSHDp,=`?8_O~Bzνv V{WYM_\nX͇X= nXc{V}9qhi'_4_I><2 yn[,%,Ɨ-}Ukub W=t59$~s-?K?WOw-h#TRi,:dK~B\x&ekS j芪gDC=Ǚѭo**u oz`Ć4]qL`aJe?l޾-emNȤP4b Β{Hɢ)*1SiJy'Xf:缨6~? kjxEE5R>tM%mE+ /t`Qk5.CA?Xc൳\^DSxOOyeۯϩۂ,n\6"uI%VjU0} trap  x,ీv]u}\ ۾XLq;k-5%?D7O #75[ Xl*OjxAXc,dN:lQJfmPmQ|灀GZ'HEK m,4/h `AE x,ీJM9 &na-, qA3 V5vO` ,㣕MoIŖ]S=р"d`)ō&X@A x, Eb -\n*3PذF/(ۃ}S\V}v5c0[ub  =eYҹ  (XcXka`9P( ,LRwПTi~6'Sx`   x,ీ!:.U  jeQe6oiBb2^8Xy0 ,ీX;SzA.,h=Ŭu,bkEIG|(qP !toa3  x,ీcg= 9zXPT/`AH{ek ,yE^e)`ip Af `AuXc,Z!`qK/,8}VС`A,(G8Rr&gNhڸOΫ"x`JN).[A ,ీXP)$";^ Ú{k+ ʂ!tH{b%I;D&4L]ut=R   ,ీXhL0J3bW f UTB+OZ`؆$urU٤Mg3aEw+"=H(A,ీXhm%+:RyðN#bv O]4X^ZwaBML/`a :}}x]ۘZ.)M~*NG\4F9U2AP4 `d_o[oh?3/1QO\)iS`J ,DlF=&rɾޱ_ng-{jeqU\')dhEw7JR SX@A݁<X@ (ޜ>P.c W#bgv_%^ ~K}0X07?UC`΃ f0U^;Rer=yO hΗ?6TTvm[b-5߰oFނ IDATL~],z]TD󥭖Ѧ L*W'6ͤu- R,{n{q<^fMSڼa-U~ϡTMϕg|GZKa뺷U<_y H,XESM:^+OwL=J˳vcYSun-ۼ'j[eobᚱ^35̼u|ѣctQTqx[šljgk08R_Xug_ $H,arf9\3ֶ7p xY3&`{$H,XŃ7 :XbXyAx믕9|svª'7<&_ I' X @ba?Xt81m,&jUa;x~_ Bj1OO'Eq#M .a~~S׮:oD0cJQW>@sB15VmkD;=(wdsW t $H, 7=벫nvs㓶>QyP|Yw $mrG¹ xJZXQ)uCbdH +oЮP)cPMwEu~w@f[,F; T,X 0'!_XV\etV|STQRI2ۨA,~gsT_ɣYt,Q^ qg" ZgO;݌3%^?TD/1{(^| 0W1֡(bxM+D(%NE$߫+X @baJ,eWp/dױ|D@.E8 zQ]$ޔbm ZOzrᏋD{C$ <#]ԋx:]Uayr;4nZ*[@bŒX|QxlIU)u:fɷ(AX)1asWKDCOUHˆGsǦ|P||<l+Lec1N6B!gV,rDLQTзbEX:CR,, 9eE@D{h~MVdX)EHQx@VE D'm[|&I,d O\(T*DVc?Ikb9J6> $H,ZŢ|/$ҹwb/hQ+1?0@OyBtּfj{ڜ\^b oA,R}cIؤײDDX*S@bĢU,|/HX#NdBkh#:i1W ?ƄXXZ &)b1Kt,.M WfՃ )X @b*-},oWr(T ŃbvOX*S@b„X|e}M6: ƅX)kO~-Y]$~$|(rJlIԴH,X ;5.I]KF}z dh5X~)Q/Bӷ'H,Xx $ }yQFM1bIt[,n k\D^,~^ bQGoxvTsrDq1 eG;? >]KA,>ڎ UbBA,&H,X [F¶;bOy#8 zT_e6Oj|;h|zݛb1BKMP Tc]ONG-/eXl8 zZ;EOR`.Z'ImRμ~MMnEXO6b%ElGvX @baF,XΧ~%gG` /Q C^Z}Ր .ITRT˶A,HG}lłfL;>A,@],X 0%̑R=o9gg`S~$a_ V/ȅq}w,3%xʷ>SbZl<%.092A,u@b,ss*6W bw}rҴbиNuzůո[S " 0!A$((K)LMrVw4'mwm$i,!ylj؇? 4 & ,7%yaĂ @ogmL,Xts+" |`b[aaĂ @8qxoaĂ aĂ aĂ aĂ aĂ aĂ aĂ aĂ aĂ aĂ aĂ aĂ aĂ aĂ aĂ aĂ aĂ aĂ aĂ aĂ aĂ aĂ aĂ aĂ aĂ aĂ aĂ aĂ ~"沿o]ׅ & ,?D,,v)ʢ‚ ۲ȭ/u{xfEE~0L,XtCX܅;b8ϥ‚ ;1,X0aSX 5v匰j9FakS4|3"ۺBL,X",u)6 LeL_vݬlY]n~4ầKd5`,#{ՅT3#95r1?,>wێmڝY;rBL,X",H#3j/R9_fG";P>ma1^nZu+svxaq,m_z{-Ls ]X0`b?)rl~-õȼJ:AcX4[cs}EX/,X0aKX5Os㎬[f.XĽPvycOE:c?w,} ]rC_̋Trt%,Zaư`b $a5a3R*7&'핷/e~aq$o=?9b/D˖%&~M.˞ 0 & ,! 1C9)5!q=s2aq3ypMӌ'C9Ms<:!,L,X2,K";Ѷ^o%NKX$ Ud^Ӆd҆ʼnN3{J#a`b aW'7mN4ŻH2qd/E nEs"GJ9RŠ3"aĂ @8B_"/b8! 1V"'rZ2EP~9,>- P & ,a eȫưJ{kbVߐ>j??Ǣ}nXCO! &L,:05_^?%,簘^yF[&,NكϬ5=U@XKX7,X0`qf׼%\ь'r ]rz" t9 =,tl]eHFlͻ_ J6Rf/"|aĂEnt}h^[=:/7~pϤg ,,OG-ވ}v?#¢,T5,$Q'}߭PqF'u!ؿyw%#[DFya1{ &L,ܗSv87T+-ň>H } pP{:Ep~lYp͛E eaQ5ZBR7w#f˒ȟ煅:#,L,Xzg~Q~>Ɇ' ț^‚Ha.N´w:=KI>?PO)P*?)ڭFRw+5^>ѹaz"BL,X2/c=ۇz fh*\=#,Zu+{n}~T{wWϽӥh. 7?{ +5_),X0hXzߊ_X(O(>9uk*[Ǫ/%S:+{r4N(^wAk^%p k^"su|uPLM&7V ˴$c|7BL,Xxf_j#J?;sjfK+KjȼS }Q~mHL 肹Q?ÜcR 7[//c;Kb ,?|Ş9s3 &-:XQt2w¢1pw԰sX b4k-;40 . $n(FrP3*&P"@1=*eR^Ԣ*1{d}{o(!*u @s)䟜(RDiX bgi5 RֻDwlMR,EX|nxz=`'"Z$bV_lbXW׾H], 'Oq,v&w@(8OK g hGYX b1{YvNbJ bP3MKS&1"vSԮvf{{[|,2Dy_5ʦ\7@ >LEg>E["XTG vHZiXelSK1ņ:Lv蓖Q\Ku쏊;0XW1$:oC,X@ 9Q(Xo9a=7gU$D.W"yU,bYY'Vb"1d[.o˫@, hX bT!zHSb!Bv`Zo$=U1+b b@ D,,d Ԉ麅XİcPtBtysT],T =+Ae+ D, ://BnXf}*cʂX  D,UF߿F$*X bQO|~5+zX} D,I ЃҀX D,6 bv D,/fNs>P X bX[,@@,-X b  D, {"X D,b"bpo@ 4-#^'b"bq+&^=ҮrDo>h95cMuW u7JzOI"Xw92q_|w j=0ڢI z,Wqx f۟[ Z_Q84 D,Be_^, :(yV[; J 7UD-!"ך&*˙sA D, .Gm/+.sCNt%$6':|~X*/5g7pǚړ;?F"˼a:iہ(X/],R$]0 D,BDGۋ{;j$y&mjEt\WUqłz[n0X_?$X Mf4 D,B!D7X4܌mX49+SD[jmhU6H:bX bX! uLWybb;<7o۲mgњ[`sy&4c掬-11}Ί,O.ӴKwMmKWύ9(܊ZPnR-^SD* ԰Vg㵖Gy}B\U[}mY;1uT["JtR~aT{qYW^83E,vz7]Wץ}ϖ~-`bQWLJ1_*7Y,,K#[ V }2V b1訶b"b!%~m MLD[+VDӧfP@$vwݹZOM֡S[DR^NB&/b_\(V/{)'跻 f\{ǃj q^cVևHd@ԣ'1{"=i|ٽY5%.(5).}$ 8&#V8co4.RݗIC?22N5^ Q"]GzA'$ЫK+d[29DJrf^9o^1wHaf(R7*&M~Iy}[-./슖\Z_"D$;V QS{bU<LR^*qD,JJT*5 e [zT8oC&]#XJu3Vq,.6~EH#:-~%.lLvqe?"y8;iƧ'hi[ f4Rԕ2oe ? π̓)tc#9DduD_{{ k %(qjA#k[N5gXU$MM EEF,AҘmjʪeݶT2#i\ihfώ*]8DXany ݩ#W1GiqYKbq˸rzJD,,MZH,D܋~{3L4U`_BsO:y!whF:,Y}6Nd)~ExI E8B>" cR[w** 9/Wdth)ňdOE, fc^:`H,ˆE%{D,rPQ4~u}5#>0_'ѯo@ )n13` ێ.Q:VrH_p;m^ZK7NO,zF,$.G75@}XcGBWJG"XEkŠd\cۡfbP|IE.ҰR̔!/Xx ҌA~cN,to( A8+MnDBJcʼnch2G,vՈE';$Z)ˑT侻uUtD,lɶWva'6#!#a"P۔G ࣉX [JbGl’@tZ(T`1pPH]Ц 8zɶjZ 0vƏhǡda Q4{Wjb>lrP4EP'H3XXu`e[ P ,&-t7)O[NxG,=>,MvM2uON3X|G, ? gG߼ XA0%l?fAq+YTe6pk5av P4HGLT,t M'Xᡵ61LYX8HN 4B2Ԡ,"0,, U y (l"YFo!hV4gXP!7FP4`iLw\%}Qd[Gj<ϫ`*5aUľƮ,Z1>AB'` ^>1'@Cp _[ =,puGe3XW}G, ?O,2ҽ8 E Mx`MevwB$PzZڕJiI@!fj~` ]/ gT e"27OR;K& 4 A`XM$ S 9Xx5l.*XFPTA7 o dQIGqhX# b,;lT'ȄV=oβjC.N.EՏS'&JQ>$J~`1M"4,n[gܚBDi5Ձ,ߠjÒ&kN<L#/ӽ `XZ.jeƜ[lM7(HGy,BɼZ1̵J*(KD+WSh%m,4﯀  {7q@,3X(jzl7l;ۅ9z^urja#,tW^n:ӿELYbkgԒ`탅?bXAR_p̷sy5pGlP k^QtX( )cr,nz ®^tJM",eG;t\ҵi`w iE':@IޑFS\? ꔯ}`qEX$L-y%J<TPɮyXD421Гcb=V4Z ⳳϣ q,Z$Р{UcPoa{"68bCm=Rx^ Pi2V sL-DѼE+ U1_e6]8X(҃Eޯ=;g.e_~ Tڥ+>}~>f+`rP ro =ò ޅ>)$,P>4EoB?bD Drɯ,S\BxdxhrEP$:H/ 7^}CmU&;\g/d-0vf@\V*-.7K hwh-7mߵrZ,u\]`a5`jl?bdž5И*>XDf=҂p2,ogytlBzc-Ez`cSlO X Fl ;(?UVB[8$jӟ]{6HS~FUX1޳ q}ͼlzghҊlGv*TslP %nW-Besk]nR`d3z` d:o?;VDH =2fO>]kjV/RF9hvhxv(N7#`1G&VaG9~G,/X罳h'mp{~ԯ,`d[.`4RlQwC˳k@ڠVwi&<W,Ԫ=»QEaD^F&y"zG,Bf^Z Sa'{`EK ,SC2P3ˮ3*$^diNT{wb`LDnikr>;tνv^cLo  ,ChuC{ >&RS=0A;Q/wf픜8= o IFwePPKn^ld~ZL`a3'.cΒW1ut=s3#]"M<3R=ӹ +,[[F/7`<-">fyYǔVba.T7w7;&2.m]xBYRԏ5͛ۍC)a0UjcjZLe<C2ݰB "пH34 ۍn?+Nx\M_J3xj_|W~ׯ>`-v׷o>0Q ǚ\=W#}R˽k퟇o&'}D[$V⪺i`_D -E_X凣E#Dp.s"x$j!!ݜ7*7wRQv6ǎ5ۿ"#!}UMtZ۞ElU_mɮ/quгb"6bUgbL}xF}+f֤w>+9کTwFvIK>e6'+ lE]/G6viGb:$(7w$]elG aVwAZ6G,@^,I-\SZ@N@s>*E{X[ ÙX_K%)pHqI=AwRgc$Ģ H=&9E ؊"X؊Ŏ2((|V,IWۥ2^N,IeDN oCz\\tHuRʰ<暇Xtgr#7L3({@ [XR4lFyM;=X)( X,+D!!Ģ /_!!R*ʽZBұm'?@@ bqDLbbO8KvmuIbg zV,@¡X0O7qX\eɓ=34QNR,z~RXg D,$fDObi5)`ꀣr/ PN'D zX,@¹X0lx5"AFJ,tZ,э$1b D,p&+9F,MbOBOR,R$Dig b@"X8kyqA}U% E i)ݴDO5bTx>X D,Ÿ@+̻%NQ8cb*v ͨ-1ѷ[I~_0b^ D,p&LuOTi״<( sb(L5e:̞'.X$D(JsM  X bC`ŸyQr)6% [DyȆ&0ӿ!ɣ/h'{ n}b5y IDAT D,pT0ȎbOFm/4C'iz^,@@,<"Xg@ ,X b  D,X bXx D, b"bY,@@,8r9/C.7atWC D,Y?K4lfy?k|7)IJq"Ie6_/k>>ωG`9:/@G~V:v."b!rf qՠ?Nk4R}R/ٔnM\\F 2ufu[>N,峉ݕ. %R(,[K!/th[>L,\泉j.w'D魙ۅ*ӿDe13XN,@@,$v9ً:Х͙LX͊\3X][[[4i)y.L,rmY[ ՆNOWWH { Ytb9D^CN?++9 ܉"X,W`!5K5+L,DřΩemE=:'.T=d6_yB,o; hkjB@,p'X b XDGp^%&J,s]ZpwmYEb.w l.''wG%!P'7<X bXbgh_+]lzbX0U࿄"MBc/kt$R,{p.š6v^ޚ[Xg' "jB;mol>wkU=\}ucE^.>OI0FhddjY [k\n SC' T =)T)ѪSzI]e#>udYv_KĢ9KsNJ~Tݚ2]|TJחmA-TucG׏l]]&lb]ǚW߫5az,D˗[z%WϿ'j%w\DQT[9ߦ ~)';[v1skt -ŭ`5E-w.*dgMg668_Nb M+Bg ePTZ/$]ug"ﶛi3]Rb?VFtp#ޞti E5!g\A,gܔGfr@,`"HA=7 ' 9%b1ǣ *!MkZ)ԥk-T=Kzg>⻦/bU?%U3%O'*bIF&PBr}DlU^Jwyȼ^fLom@ lf{{;괉ݭ,u XΝvВe7\4@aVWqQox {5}~gH,ԿO,Ozh@,`"XoM,p &a@SfWbN7Mw-34]|K,i}a`Ip(ߎ1 #X`ޞi C\(]Cy0YMs`a3C:lb_)}xD,P9p9N:%bQAW 븇X(~ Y%qCD,:oiq|*m ϐ}b,]{ ;h5ز=Ru…cy+LT_r|@ Xt!aG,ygݥx? FiR'LQ$>&At|(H:,|b,vs?mV~"$ 8Ɉgr'}=c '`ʼj妦  _{Zpjߕ^rHX4-r| o"BY㪍K?baWY~tZE=6z_֘BB6moĎ9P}Hs.hO,\vs?m:J^}GiBHa'yηB?/X~dfwI6MhߨT f#V'2JJEJ)eR2X7]VIeFZd --Xo,>(zzҚF`"XR~%bU:=9nV@( 4N~X{R,[ #/`^XDĮX R".-xܰ0ρ<88{kl7 8)x?gmC,m+W}d ܊?XTR-D e>(!ڻ7aC fsT

K,tl"ou D?%VRi{)7?~Y,)__P1'?p)c@OR|r739V"42s5T%694ת7Yy}K#(ez,[9"b|S(R#ʃ`"HA I򢹒-ޣ8vll&aCvO;b10Y]]|X4bTۓY, JB:TA,K l94l eMOz%ɾ/+^SP_3򓻒pTƩD,$˧ UX(I)rG'[; M}l˓%G![35>o^wV}tg5\eܚX)Q-!&(""&ۨ1Rъ!U1t!UZIk׽zhɑw9aqX܋tAeZ ,2NUEj*\!o?Te^/9Jb@:Q7*s6` xH.yZ`h[2,4O/ ^X䤐]ǫ|e,Vb1^=ӜŻ,@;uv^b \\S,%8u[,H4 ;_l6Ӡ5I [,O H(:K,o2,nG٠*xX#\WXÜB,d)3ȧ &Ue.W`BIAz/Sz1LXQrtuA+EQ\;.i,7=1<a'./hջn`q hXE潁n6;6W5\e¶oX3Ug%`mj /d<(O 8ˁHgٞ X'p4CմOF$j()lV #Gg%rL9!,(3oz^Y+`k`a|ꞛ_ /~y`Q42tq[Z%[3EҹZ ,ƀ/ fAOJ ,p)_57b49J7Qb>0 AsRXQA],B%ܠɥINMK"{8CJQkLa-MW`a.ZjKW9*<őO`a0N 6UuH"(gj %$Uݳ%dpVhC5Ȇ$3JqK ,7q3dgkO,&OH=C$N|3!A* #N( X(Tj{){s1<#X3%.w, y!AaPЭ## Vb>c%Uj~ cX/,H$ɴ" rlA3`tX-b2m̂L5Oc<7H4@9M()XS9䷾Z`1A3XmP$_'7EI6ʹ8'߼}Ud)XZ|]M~Y`ѩ7/'5`LXi.}V?*?A`I#w "q':X\h`˾T/,H^b`,G !~ ʂ`iݙC>TkJ݅K'T=y."Ta7yoɿ`qa ld;kSU ,ιtoPp$؋ꕼaA6;ui1XތGY ?C\z`3vx5(~ND\(Rv,`=D lwIrj4BŹ\X;~3 x,^@GΟt_c{ E>;5Bzvj7؟lٲ9'>\6m u}"(YJ[&=ejOvh%S h+] ,K5ߗ5=f P'XA44FSr.Ъj`1äV@+Gx?/z%/`amY#값@k,yfmS3tR)8UIJj?4P>;8xە[S60U/rFK 3}s\mP|ĕE錅>c<+΍e@f,V,xH ?ά) ߱KOA&n($ Ah$)4 ˤ\06 =?υʬ09,z?U=g:(C :w  rT|nY`TȕE1,)O˾`a}Y.X⣁וFe{j'AbtX,$LR=`kgDo֋Q[ҧvR^=a0pUܗFA3]絯tw]{Y7Q7EYې !K"dH-Xr,"FGnշlw|548n^$ŊY }T3+oI7Xh3媫5]mSO!~b)ĵ7r+rmX6,,h_/b wƵS\E`? 4g|~'fv&e"2G؆3yQB.qae/J|.T"9uQY1^ IDATL21$l#  t,"gMYO,jvQkO؏dQ5,HC}}ڴ+1_H7QB3d&X16.`>mu_KR2˕}DGՙi۩s D%T2 }FP>1D+ྜyێ+`A&p=M>G= -9yL]:"«ӴBư ЦuexhUr85@Z: 厛ף5v[6XZ3)_7XNS_Mw5GvXny 3y8Uzۧk '+ydUި: B˔Af@.θޝ~ɠi 4fŔ`spTz4+| R՞Kkq8#~{1R,72>X7畷+MZ>g=r6RBm̆{4R7u,#d&P- _tg̶+zgv^_E^ҔYohvn3wnL8, yӀ߿`S^Ͻ"'K+j~nv}:l'K>v3oԽa]sncv,$(4Cڛ4EW627*l?k7QݧMM}5ٌ׻st5Q5*(&QgǮVql'9@>J yuE l?*l%m3XiY ,XH@24eZ7F A= @ v,\O}[Wur-[CkޞVuDR(XP.r5!& ؤ@֨W_kDN7?оNƣYXB6 ,v2L3x#M؁,б@¥=l>\ˉ JFiGz򼮒( ? ,`v5p:J12SjkDt ].;mڟ qXN(¶/Xcۀ8ב2G@!X Xܳgi%4UVk=H6DlB],б@BzŧxkϽ Tm hAի5eqw%X,PZohF&70zkoW~OiPql^Z0R4t07qEdjxq+B J:! McMY#  ֣/Z(N)B,}NaY:auv e şUw,˓Dgo,hnv / 5AُWus@ Ezfc!YE"̙/C2g8+(g`$;I&,4KԞT9L#liQ&X𱸯4Ϋ9=/):AH_/?.CcU;u'Q[ySX q?g d?K b4H,P( B`:d>0XP ?ɐΆbŎ>v_- Kh,#b+T  BP?Xc<Z;ę,V52NH;,}\mɩX X җ gYB"w -,mp,Pd0`!q;&-=lD > b̢ qq q-6,eecQ!B1y%L 셐W鞞Grfz.i4B`A"H$t`A X$V8e" pTu9۔7]Wcfh/ܴٓ\^`a'[峲 ,cCyQh ,H$D",(cAD `"G} Vt@l5ԉ0ɏ]j|I=*1PzaixLv(Xv o-D"H XPBj/P_lHBhQJ?WrW*2%*wG% f; RgzƂ͋jf9ć "d,{td1`ہGE`A"H$)2֟6#?5FurXTvdye|"t0Zr^.9Kg/u1v\D"H XP"}Ҁ'H eS[D"H, XP"m*v<1֤7>$ D"H E_b^n] D"H EɟuXTL׆D"H$Re,(cF[5"I"2$RTׯ.Yk$tBe,H pshjJdeA%۹,_Nr5ݽr)V4R:XiE6N|Ҿ ̝?H XPƂD`q`a4t` ,Y3,hOK`h=9/QH k,'5`A X,2,ī giŒ eXZFR=5Qڪ3#Zp/xv!`q^D",(cA E 0JjNł~}RCHCPo'J@gX Gz; =9/hNu|S!Z ZaD"e XPƂ2$ M˓u*(ڼ5eݙ|⿋,ü(<iy;ں?kpͬBs8ry$; XPƂD` }c`V;P9j5vU j!-k&UWrU=G{REO;U=4_=ͱ`QujjCw*A{Y=_T%mANhQ+B:X(hcv gIL(T˃=fXX"ObYڶl-wAlE{ZՒdq˒=MsXsPViT_wva8aަ7 .izӭ-B[i+o!H :/$qi jfʄ~x) U T!*C$vh5[Km`TOK$pKs g[ź,{o?-vI;olI,(cA kXqd! yoOz0Xv8bCUcb *j C;HJ2E"a|*sa@rqYڙQU1WB~q\Q/jVhG /mM_Ch^[_(`GB _[,hai4"]cۄY$} zCgV ÷\vP7{ x #WȋN7XJl ,b' (~"oP c^[PXHf"ɬ A /%)Ƃ:"~ ]XA[~2Zz8],go] ,:vF EXX_Ck_Hsqx[W`"*bLY!S=^]e6A|(ꬦ`1ņ M0X0)a^G@=?alr?EQ"X$HMcvUG;`ł+v#T$A1{i _&7q埭=d *U1v, #sTZd4e?|e4dxo XDQʤi_Za֥uWqp-,[jO<BJvzT6[bcISm}>c^<;+mWl"XN& ձUG , <{7S*^ۂEe|kXXX(d y.zs,.8Q}h`!6@4GU֞ XD~  BCPI$2up*ġ ' ʖnvIZJ@И y$z D{RNW2c!X7l5V}  *if X#֞ A( _ eݮNV P{Smf #|*`"^O;uwV (&]5ۼ3ewX5vF8%AX'.7XhZerSSX.BXXX(†e @|]G3:) 6]\(lUv~.xH2FgQ/`1}X6ExBdWjFG #OX#nM \C,E^bw(7X^蛬 DL̲kL},+q^`qYH+"Y9ww\Ϣ|£"X85<\`lE*j;T%5`3S`Q֊/jl`!o"7k}{*b"ʾ{GvkF,¾`QB;K8,3|IVB&Xhfٶ 2kLY$4%Ojg_ WlwيM=EyM3%3`gO_;ZoE]ks8W,4Rߥ`Q>fhb8b <%UN`C輬.רj2gU$.EO"j YBO ]$L ,t) , vR,*}Zw2/XTyz0\o P e=X 8dWB( Z0/M4 Xan.`1 j}n>#62!=;Drx2Lٗr-2{n/@Dޫ,`罐5G,bioiJ@TE \>`i-"$팎EX$x$*'L"`҈ؚ lvgll*T$ 9}9wRyG,qW  "0-` uuݞ064ng`wGZxwtM1Q3 k(P˜6[#s}ពE' `1pEs[^n lTƬaєaيW'-!V=c^jk7ǃc 6X`W:i%M];7X(S7jMpՏPBatip`1/,X$r( K`~Z0_ɞy#ǜsEXjoGw XnaQX׿=vk"A(,Y!:,.ᓨod`ܽB@^ւ\;wv;x$##r #n`Y$ܵ#:'su8Wֈn Y0&bF_#QMtxhuhn?jFK.]k+eᗷ ]w+;#؍8tqxCӰ̈Ցz8%6;6z`I*b"ʔ?X4@FNn \)|B( ,(V< CxS-7X͑CtNKX [8rj+=tT IDAT|5`A?vmv-ЗQ`YxD,Oj>X4#<$ak ,D ,Z9X:ZPw6{g-$ ,ĊX|knFO_^ , ԰$i.B( `q ufX]7Љq۝{l 4~ wOg'ޱzsuX@R]-!6O9 {PU<8-, }u(nUBZ OjzXxGZ N+]r*b"ʔ;X`ɵ,a X0l'X 3\NrBr|ݹ'X[iPK(X/r^¶n%2n\eMH!T e7od`[!b9I[% \>`ber_(&*X<^ ra bךEmE^`X}.۽Xd U$pdXAEY,˛x vYh7 dɥm vbܛH'k0"CLwx-<|-W`AP!H`TǸ8=WNXd-bO3{9K6)!'b թջ/3x")^O9A#EY#*t RhE G"ŕ>que*+Y3m|ncEu~O b!-Rt $Sg>$cXTŧ”,;ƚ6 --ed޹K(9n# 5p-vWbW NZ0hvĉ]U?%~*WO 0`^ĦtS2zR~P!vma(l<ŴF_yE"uQHdVOx&Ғ=U'i@ N{g?Sg?$!'*j0T`p\5Qi$y~{h!*Fx=q/TR~-#EZJ`("n" Se[8n÷q_Ng r  eE ^gn+q5j`Ém/PzMH*(2#A,&tx˰n5fhW i"ny~xL\+JML4`!&hO$x*(x![2 vm'!HSYR!G)X80-PY?ҁ볃,f{ ` ou}7@r}=mg:1PQ+ƕL<"NSPYr-(EX;\;:ƺ2z8D|F& $ֱX=;łj4~̾7h6N6hrK KCXL އLGo,L*%X%=ADOXՀ(Nȇ-[8AtjiEqE0s7k0@& >E[BE4vgr,h׈[q[ex],`Nha3NXz6bQ9,r됿LY#ji~]fヂQQ&3XEz%LS+D={5)waQ C,K",7;(aw{@/d/ i""oJݠ3V_ȲSJ[*dd^<,3ܠ<.F҂x ܁,:,c]v5p8ﭫ$Ʊ`ۙrU\矿#`/, ?$qbw ,mx8I۠v!Zگy_]TR-Aû_A3\-U*3q#]MŜL̑M,Ă<J W(SڦNO;{:>[ZzÕ?T`6} ,~Eچ5)!eȯ#XPF|'{ ǐD(ohsQBóg)k`!dbQt8Oou](ME7q|=҈&-b!EʙŧquuGtΫJZ[og}$+vvTdJn$IMDŽw{/:yT1+`Hn\Gzj|I,elOJma{Ip]7M \OR[s7xlc%@ͅO{H=- `ATЕw;%r%++[ V'YRL5Jq% X( *pQL 3UNRzg%ZܸA8ڎN7[ bAޞ,>Py-~b,`l& :}zq_6הt egQkэB9:g;(|a@)d[O G-jyFk 1X,”DOըҩBh>!;N -b!EʙRVWXn]x']bk:/9*"]q SJNÊ=rJ=2^Q]O$381zcpXy4'] J#:2@ԣ]mpD0:Vb1\XYNvp}z tO O2-^S|l*!bOR-x=XQrOwjw̬ g)'O턶vhjU= =JZS{8~ ^qz=؜26wQ[`,^M)f4\YS ǯ3D0e1ENIH/`1+ѵb!-R$XLdɈ[ˢgQA] Y-w0?(Fs !䫶*,妣+.^NMw>TQceb яOp`0e1{7*禮4` aau\[K)`!-b!E.vŷ)X5hXP)cz[_h+B}&'om^_}*C5r4BS:.]hK|z/I4m7Х|Y4tbE+#AA$8'ĢV*ЕA,9e뼺v$rS@d b Z61A )Q ϾtFŧ!2e ]2A)((['Î@vjݤlj( 6V2(݉.%rU4y.z)co0/H,XŢܛZ, O<\,Vit &IٺuWwd~1ZcGy~(/bx)Q X̆"c-_ Q1 :BYȲ'코m[7}''WwBUEMj| qRM<`O1Oa &~X @b.5F-6YB'xx7U,+yMEךB,@3S3o1k@pxW66;[ZB*SfsOΎ {HއJtt&C-qЄ+6ٜp4; ~X @b.QB%m5W 蝀9Bb0w-bEgf:9bn 7}gpZ;_,\ 32搹 DИڋ $Ŵ;nqשX|ɫDXz9N>Xb1=J c:ï5bVK|H\^R׍2E38o1wƁ~Ub>0f=gqpKRYUùI5ZtC,\>fv"xɳ'H\@)k.H,X#O|N$Ͽ4L&߃rR fՊj~ߒbW 9".;wņė1 8G/+(x$b6Lqy@UFh'nX"|eGގ>Xᔼ |ou $H,VbAݓ\,Uo5 9OުI,(XRpSDk/tjjTI&TJZt+$>X{ZëHo&'lyp< xnsapTMQ|{pTeϥux\?G $H,(h ?}XlRZ +MXDęQ,Cg93'RPXԌڍ9JD b۲YŇƴ֧ 9gK55U߼ X @bI,&'bNۭbq@IY4b!ܗUuSknkT}BEl;cf2!i H[bRr&%9"} H,XE:d(;i)F'DZł̪z 9.TQ4#e2陕Xd_E2/N¥ќ|`bEX$sb!6/=|E,bq%:b(:k"Wc񪘼M,LUXLD_J@ $b֧TvęKWtIb1*JB kBtn:mKdQ[P X @b.%6`xơⱥXI"u1Ez E /S&n^⋥Xl9Ă1w{ v J+)ۛdCM,߭bk} H,Xt-.Er5!Na+P>Ї,>RrQUd!<8E]BN &H,Xt 1 {)i~*)Z6'a#I`k*/BGE,blPI^ H{K;Bv41zU,n)UN w1fO݂X\X @bU,T~ܙXܗIFXxǂכX"Tg"%9]9!)RFl Y_|ί<Ġ QU4sIk;QK&Jf4(2Q&LfkZGmR!JF,BpTX+9a7<|ԧA,bEwPrA޹jJA[:sZУX( YK3Dwߖwo.3kP {~ɀk;Kө7@ $=)2qe}-<Ӵw& xĴ}ِi=~9 X @bLƛ6A,X z\H8>c@,0b R8p?(zڰ4; X @b$'n~9 X @b MC,X   $bpa@b@,.,H,X 3iiQxBV(8qXYe+)omBnTec>{ez g&V?Y![,X0  B!{ &bA!ro`bĂP,!B-L,X!BȽł B !7o# &L,łBHuB8[\߲c/L,X!#ɇ gt;6M;p1"_oc &bA!M70zw` ˎ6VX0`bA(B_,7ybĂXBvtŢmz׋[翤fU}t\/eHIsbł B RbV=bhȲXb9n1M5OTKMd45nQlF"31=Z0e$G&ka#y=r`n4cșuݿM<[7-T5ą[L%tmæ*T,X0  B!U/C_" IKo@A߈{[)TJCW[lh`X$մQ ʮ:Nŀֺπs96eFz3rkJWx+R,X0  B!U/Ⓠ/uEb1anw.4SySաg[[a((i p g $WGµXabTG2H5Nh&=ټ?v&HDi?rE|mbiRcT>`.֤a(O ײsZAvg!ug(4{t;$&dyZiN D@jx+Q,X0  B!@,1қܹT,_.LFǸj?)+)zz Cc0"= ,7x/R aY!f&T.ؔCD[L~(rݎh(;:Qvz)L,X!G b'iQ`'^_}'>7.Nm`Kt|bg6tKH֫wKebQ壏QTk@UX0`bA(BX#|麲B AB&~97R+\KG 7$AŦm=C/Rh@gX$4s=ox &bA!QEOW,Ӏ2%>CMRțBSXxxpؕb!|{ ɴ7Q "kĢxPW,7{h"ł B (BlۃHqMHh /&b1?ϸZ,, 9m!Dó+xXΉe)=eb!`7ł B 8| H IDATbL'wFk HXTXBBؓ:{>D9Y*2\{T.7[$?Sc ug: $ԟw֏֤zybF#k]ʻr ,LWX0`bQvʙe/ޠv@b`) BX(xn'R]DwM&I;9vY4ֿ|g)_׉3r6ZӸ(0g,k,'Y~"|oFLX_󾺼X=?4DX,'c@Ă2v5 -+kxu᦬>FoTbA ٦ ql遽`~Sg)$ӑܗbQ$k(T^RQ๸Z,: #+ˋVQ[Xg?X&q/ a RY?oz% &^: 'Y,n+bA!ba'b{wϒl/Xٷ뜜vo?@)[WMޛs}N1Sn-1"΂YKB4oP3=&ooڣ*)L,XxY- x/ޕݵbv+(B*~Jn~&?k=ߵ-v,^ؙ[ǃKXkz31Rł /gZua]Jf̚ jkM(| _s4B4zJm#vMj9f(tNO -f 9\u+[e3 8=133t !;<"?X0`bbr#뤝X\/N3[_~PثJ4nƎ] zՙI٩ Tvc#S[H kWZʩ4yuQ,!܍WE>A/L,Xx65q5`?=Hl$%% YX8A?8yfG??=g i\LMsF8{>/DĢ#gTuҳd28^=b[ɡJA£K5^Y{J87&?" |6*]ba=v5uwm4E87y,uuES~N"cv^W)um XZQP 䩮oYtL)a¤n]Xk0 0&|Y,v-Vubqu|gܗ&y+#b&oovFLpxX\/i&'ЎZcD XO3k   fex_biU$7ďkv@ub{U{5Ş6(n;@,łĂ"3_YT[5"v(&Q4b-=v=-b1/6[0{eوEdQprf+zx[Y7_!#ĖR~dxF(u XXXD.Usmc$p iFXt)W:.yMv]VFQ'O:Æm K,H,H,dUhdn[Mƒn8U,Tx/;, ?FͲm  (;Ā݂iEM,6ӻ춲Uؐ~͞mNtT&WNꮲ=)"XXXD[.qh{A;'3R NbRoK.tn+3ӿ }; gY+v.ԒRI  &vF?:T_𥒌XI }Ѭ<(u;1'ay*[Ȟ"ye`IR#3 Okb}IqCWr XXX4RR?J#3bJNsX/n!P_%1s37ˠewiXJX8? XXXkWbu˱ϵBh}61޲{~}DzcXXXbвXXXbвXXXbвXXXbвXXXbвXXXbвXXXbвXXXbвXXXbвXXXbвXXXbвXXXbвXXXbвXXXbвXXXbg\[6V<bAbAb\l2Z!IJ ßbFUXXXbWR*H˧H#_1Ycno .Xh b0Ln4lt]WbAbAb\|HbTĂĂ brhG}_X},qҨ_q"Ŷ#&N?58 .XJ*JsuYoƿyæuDǦ Y=yky;A_=7?[m\wFNOY[ۙΦ L48; -$$X[rԋEb(Ob.热.IFF ţefK}SjeތU%[ime>xпSq5 ,ګxӇlqdKq^ڞG64(=jV\6>fOuf^;v&cϩk}|%59e<=RX|*{s,/ȊnpbAbAb\|ߎ" HdsW2󉖵LaYAy#.k, vbǔrV:Oz~/F,m9m +$$XA,'ubii*dm$`M. ﷠F X}aiܰhs8v3Q,n341:fQ)owOi+a3(VQ DT.j-RP/ֶ8U?8c9$$oiMp)ûM,62ڊ3(Eł" H, '!MA~bџbt,(ֹwE҂i 6R!;b "(z*B bŪ+eԌ,%mE$h(E, IH#`kZGB}eS[Ţ],FfUbD :u ѓ-U\|TeWJO3X%q$ %AbAA< `XCǬ~-L?`*UUb1^Uvr O;d*}\*[tԻ'2X!m XPĂ  X+( > au[-F9u;TŹle|m g 0gvXÖdzTRSb~qCbbY!k8iOEb@bA X$Dhzn}E/AÊv{͇uFuAL, m +|٪* XO_BNZR,V$_G) H˾n-P;tYIbb6 XP⾘NbmgM~EO^%d&)SjAQWb!y5{9M!~P| 5 %'.1s+jAxcYdA\J$%ao(9^3݌GhQ˯v?7&Żs'}5[w AB,X צ(c imsx49T9%Yz;%]'қu2v+iUǚN*Zp\;ycY&CĢĂ"s&$BݻXo9_<.2{{/Cm2rDۓ 8~^les_==:2𦫭tv?zI/pE,(bH4 o37Ld8P^fCeyIͲ f\(09)%^{  / zos檮$A T+I ;-XY_kE?aE,jmP>A,(l} YaL|VBC> aV|@r(9ef:XU ^m'AAE,(bQ[,bL I,LXEqV+7lb1kX9fbMqՙMhxdRrXHbƂW/"3϶9RUr}Z*̼=Ӯs R֪ɬxJ6}L~Rt[']ǢMީzڒ?4+ljeoOlK*AQXPĂ"ł X]hv }d]( WSt2[ӦI$것Xdmɸō8wj4 Cc%qԜ\[eH췯/u .wLӿ3 pl˵D3 ^!dmX  K~(AA!EbP5bb`*1bl+/k V @爹2 !6.''bۣ.0Pv:7L ߿`]wR,<_|0]0\Xx6x8XO$T嘈Ik˃bqBADbA X+%GwXJY~;ᇕSaS3j)wVʵB"ț}/Md[ j_-gh=?j XL1^L8XXv_ĭʋ1Q,gЬTca[>   XPĢ^h)'XŤ) Jzw*=V;@_E(ګʵ#$#R+eA먿7JC@_FG X|4`X:b:q[n{P-}(AA\/Eb=s58q&mX.߻s+þ~1_UXI,nn5W%7̕{wnOikQ3Wx!(hJz9gbδ3ws:{) 8?Z l6UZ jW$[+P`/X cѪXVfjimXz.λ*hno^JuE~#UDu`w|CٸVCXgE("j56gggX,b2wj9Ej] QK-QUhXK+B;I[\*MITu9-jšŒQE*>maXbkZ奍vl<3ě{RtV.˓MP`/X cѪX(R dh^/GahPgVo )}y[\昚X 7/Vp/t' 6bVJގ=BYz`1aac6nn&j"l Z m:#j"·{@BHD)"}zETb7C,J,Xuqbr])Q1QZxkBe\i3mw+\i(_I} œ$ܪ5WdEMyV"e7s*X8  d,Z {AhqTӟ XKm!MdlZr4=\#/HG4gtUn+nX,qxKXm՟p'k 5%·{@!_fY*=367ޞ پK޺bф G=*㤷 q"O'nAaX8  d,~#{E; SncD,Lf%WdL,b2[ZGtx".E;\!j-YuVؑXe+XXhDAl.·{@߇MB,ZVI&| ?XL\3Z.=·{@߈N5'[S㹪T]?/itv"OiŤp>؋2XVwK5'nѥo 'ms"Vyp$;+LM[ CX cX%>.ŢΈfF`'bɐ"ۚX0 CX cX jvDD ߎU!9%!z CX cXwZҩ1G&>qw"BZ*BW ĢLFDHsp>؋2XںI2{C¡XX`bIbQ4V#>zR CX cX0z$-%KD|l(zxERU,JZ=bh;>¸q-|]p<؋2Xq$,戱qf\huH,[j W\r6 IDATDVJ Wlm CX cX(5H۝"+͹"7w&/Da2b?g'7]&i]A'$3(U'N{@ &!6OFv>;El:NW_Bqb! +;Ff^LUP֑s5Xi۰,;p;)2ߍ,G?bt( d, )Hz ޜT[nb!8P8X u&CImzX8  d,[ԧG5ўlT FqvD=:ERRC]J'c+FkP.w -= d,ĂNޙv^Kl+cD[|o$>~fbgCBcg;3f7~e؊2XůG>[ <}tlY, d,Wn+_ň*) >[[~>MS]ƛ, d,>%Cn3a`nXMbָ:xL+#zfHd{fU wd1^ iYL\^ӪLFOLX[J{ߝ9"/2 jC4j`,;'FVLGF.x[ɓ~G?Do~b2b<6bW" `IښxSz mlAj'(} mHipHYQ_mC,+9OtY9;vMlGB3KIFqQoJ GO3| b1 ˾כu{jb1SBկ_Yt(T;aa_.duErJ,,@Jstb9`Ă Bh[H!OJ(CHG,"'VqG67rM J-^XZAQD~^{f9z:\WX놬}[gXU3-ĐY}oGł F,łBO. 1 $<:OtgI.b!)bb X<Tgbu4 %0ڜ3İGL"|,%I`Ă B s7lɽN-3p/طK9b~݅h.x*qRpJe4wl 3[|'X0bA(B~eCZQ[tڹwE{m%/XXdt=٪XfPRGwL_#:6]w `Ă B 9jx*W~6Bb î;^brkp,dXOSUԡ29%M3b#bA!AY͎SZ&MqzvA,?Ӈ{h ۮe9yShGvHdC,6Wg)a  RxG,`ĂP,!Л3%Pe\ m2ӚXģփ7bѝNTBիbf2)Rwa?(gtЂ1e8L8ք6zCb#n.jE5?fox-nłBes-'{oӤ,QfК0/%\1b!:f||//Aڒwݯ1s(t2/6nkќ5 nۨ|ҞAd.#ʋ]MX0bEXWVVf简gԲVcu B! O&{ɺ:n_]O~i%w' 32伂gs:lţsdz7#|(X0b(vNH  B!<;UɶzXb#w?7zqDbj>LOCGt.ޜ B!XMWc=}`ĂB\!&fJffBVu,(*mi!dsbox-c*P\9VsżklIX)[bP?X\J + 壯pfx!X0bB,lZgs'z3J?1-SؕFe3!>v*[~>aiX'=Ǽ_)B~K^ qC F,h!ze\1F/Fz{/zb}ÙZL >7`\+NnlyyGOBv4柎B|AJޯ B!?#gt_-M F,h!!C"E;5f5ǢY]&qiSG2,T/%0qq@9dis"Hj8(w,Xsz{kl^8kN!B<)X0bqXlAXVTtĢ%hGvX':4;SM8=;l} Oc.!B<,X0bqX՘:C=˶2 NXZܔ\9!sSՔj"đVjc]~v J Bł F,b:xTX+8p$wnMM,{]/.QP$an! 1`DA6ZR֮?d7XJ=Ӄ$f q)ƐR"Z_oDPXHHW䠺X9"Z߭۲":gjX,H,H,"O#v˞BܪYW9ƒv{jL\,R$ z;U],ԾȋoM,HkJb+$$ŢQڴm +l:R6!7ƢGfb1 7_Y|PO a"PbAbAbS\y\^qNG>o7?m PbAbAbqB]qwX@͋EmE"PbAbAbQb12{z)n@,&łĂĢ"-ii  ww為-1%b $$X[,H,H,8XXXbpn bAbAbłĂ s    @,-$$X[,H,H,+ŐL2!OU_1 ꛦahr8X   @,ٕ"NSb1>0â]('˧ PbAbAbԻXN"+g~7".P,r>Uz   @,"i i MbAbAb\P"0VE,C?ӻ۫E~[y~F,H,H,""snzI^,'0S!}bq|ޑB>ʫ\sa_w) |:r)Lopd/?:yp&<%ږ۳'e!_)]㬸_k$ȸo?ׇXXXbE,$ksOjܝ b'E`]orb38}W{Sr_*b6NyiS~w ޮa2jq] pIb3.ǔ?ߏ&$}YI,-ѬD#?ۮ $%~TNlF#,c/yH݊ q7/BţWb+i{sG FtPbAbAbԻX,h=ȿ ކq%B~bTXlTX4%+HV.x}3^Ȓ [n@,;m|R,T1=2aqnZD%~   @,Ţȱ]ifϞyJI ^dъņd&#"v'*b"lK2l⦩6$\,mAψŴڟVD*F.ĂĂH|=t1f2HbOZM2_,^3bȡ )twӦmX)@JqL,[)wtbȰ訹&JV4$׃XXXb,--]4=X_|?qer"gX ّE$*ɀ b-&+Ͻwɮ @$Xn~B,nNiD u($$X|YbVs-\9P_ĎSxaeMd#j*ÆXPw "H!XlD+;?!"ƍ u'$$XM,͍dssb113,^8򤹨J%2b=%^P/M'EpK[26*b:XbQbAbAbbZKϯD$+N^pUbB'婝ՊžLWE7{X/b8*[aفXv+E C-[a#ӅXԡXXXbqBu5xUUv!bDmb8RN?l+btKK*bWcJ2jJbafWwBː"vRE݉ L,X|V޽OV:+f͌l^\ .c_>-fmI-xfḒY3Qx0ڈh;U ~oV|/֍X@,Q,H,H,ƭ~hᗂX I,G/&E泺=h֮̋ԢS$Q&KX1cR8R!^F:Kn~}˄DFUh OȧBRԵI?XL8tכeʈ1TVhF1o '$$يB2X\F;'ZTdq=km#+[=ۯ*}XPLsש>,._k,^ݹic߭<Ѱ>n+.Xxjptq]qzH|"߀Ų^Y^1L'giН7.-ndZ,\]OMȡCSx b.W^~M}7ξ3y{Cn`3;w|_^OE_E,'D?~x#sbz٭iGEDU\;뛽 bqϴZgKEُ(M&;5*1C7g>m@+.$$ŢJEns*?Z5X许a3'[_s9oy5JY ީE6p lW_+$F jOee=;" @,!bAbAbQA,Wvx*Djuu-nۏSh'Xi So0%NXfقݪP\ŊHď̆ml&+1VʊŲxm  +YE %$$BdEgB6f9k\;&{ f3$)W'7" Y, Y~z6X$Z&-Xttr"cuXKɣr)^ U~U(FaZ$56?bP73\7 b5`oꛁQ;&Y^Є#S2nۊEV!)[bgkM%S"o톙cp~1JbyP\|'͚X*Ω=+bP (NGrZk7B~2E̻os{Z AW( {hhFxbVOJ,h&gK鱱D=b#(;`|[bab>bAbAbQQ,J$e.Pa -#Aה{uy̌i׼b6:o Ţk2P­m3baxVU,LтX4^,H,H,jgs"gXlEĦ z5X eĢk֠ӿz⏒Buz5l\B,bAbAbQXߗfXhwP,2KcAPf&& B/?Ž"{?ŪޟŽ IDATwʦ5bZ>J |f_F,[bAbAbQX(50>{b1wbWFG<KB275X|2fs^,LiYbݓ3ܮl%KF(Ml@#łĂĢvд=rJ8bQyŒBs/]21N,_]?.06=+mPŒ5 BĂĂĢ6.zÉ6O,NR |JEFۓM!XdSN5ѶJ \gv_B,WhXXX&׽*ӒW~KVbnORH$qlbūikY^3nibf7>j0^X&- պB,$$$`Lu[(w)rnܐREhXP!ʃ )uE֪Ht6O͛!^M,KV=/ȑ[SB,\c[[LodaUfY1bAbAbQXH$]EP d=&OX }?{>^@,~h6H_Q0Sq 3:UvUډjba=(f](yh'y_7`" =QRXEҺ!@cĂĂĢFPGbߊg#XtLdN~3s|Q,ԈYg6][M۪Gv]ix.ܮ"[ާ bq6wM2n唲 vT[X0+GOW@ĂĂ c~ݻrwKؤb'%J2T;ƼGk*>qX )+ۀۄ7XXp;b( ĢfFmW<}?ܻZw['~sU ">4=Y3j= 55iH*ծ U- Ģ6‡ :}6PG[k:SpNէ<|_BoCK0FLffY4D,H,H,,ĂĂEHW!bAbAbbG6Uf=^ Wa3q`feeZyI"$$X\)}MD'@cĂĂŵ_'sAbAbAbUchVN0 wxhXXXbPXXXbPXXXbPXXXbP}o*bAbAb\|ᅜl2bAbAb43P8ĞełĂ wn=mckK &p p0%qBH PB© SEEJec8=>Rc ~z#x 2?t+''#< &L,łBCAJ-Q(#7>V6|X0`bA(B|c pI  &bA!b@3k:Tou;z6{}XԽ[GX`zT,X0  B!>ܺMTCWdnk8C/(/ȋ|)$Kߊ M/=2Q5cTzLiˬ^JʥұmF+K'bi یJI ^z)j&X0`bA(B%mXd^:tEOY]ϩ>W{>LѤZ О*GVl'Bt{Z/2QBٛZfR]P &bA!Wbq wG3 H0}Xg=5];u!;`^燏b8\OmdN>Y~O v>i@Sb#PڀaKЊ Ybȗ "pŒ+6Ɓ<Ă B +8WB!.%W֤bB  <&s,ְn!2 QBU +{BC@FM T+LxacgED!yLG<&L,X!_~LJXou('0Rb޾EIX t&bQv O)EYPUBV@9۔G, ~2^ &L,łBa*܏"/ :kg*UVPX]9ܫw {kM͒ŢOw|d\*D $-=q=*#Jϊ &bA!gbJ]e J,{Xa1i-Uè[,N՛5bZ#@b I`bĂP,!J,:^t* |.+b1*ՙܣj:\ Ŭ5;1v5Q /'ZX0`bA(B|%@]4jيX#6p]$5{=Q, IgѰ|L,B@n? !"]1tG{bĂXBXtfءA,V1/s,A^HTaڀZz.m?&XX%4L! &L,~ (B<$gN~G,1Y|%y%uDۉ֟5ci9bBoŢE>BO!X0`bQOW,.k!X@5XV33`YJ,%핫Wx-4MqˈE}qE $rdXC=I4%@37<=Q &\US@5P,!B$=gPb^B=n7ѿ\13,:ˈ?i&! !seh 4f^| b14'g9baS57QuF[bĂBlu TXBX\kJR.X$\Bl%WK5EDtԏ\Bv q` wP &X<-jˎn66NXB~UgpqY_m#m?<>p#PsI3xw+{A7ł_UIM[7ʩq"#҉XZ4¶ ŘꤠgvxQ,!W`bbv̗vUelYEkVପ-̆yQ,!S`bĢ58|YaKЊ Ybȗ`MjK"pvìhtx@głB! &L,ZXhBx.t8q%V{*j"˳bA! &-\ƀӔdn|vZiZ7 słB! &L,Z ͍M7\l5is3b/xłB! &L,Z3OBMBK`wxQ,!K`bĢ%k]@ǥ{&baXs,xQ,!s`bĢ%^DC@5衬ȓbA! &-`N"=(&.c#FBe!YDxQ,!O`bĢQ,2wO*נmÌtw_M{g,M T Yy!I!$ Aj0P|R#J}AsO@KE(9gٝd7oRB|즬}򙝵yII2Gw/ymbq{0  D@@bĢP,rb]jC1"%pߜR̒V-=,KN,X b!0[iiauec"`Q QxXc :q\8pbX♅<2捚/xz[u:;vhb}b  $bQR,b37w϶^,HR~|`5hm+*;귑v:Qb  $bQ(U񘼔0K~|`^qo\V,1+H,XEX,垓'/$v=-I|Z 7-{W¾+ֆ?߾ $bQ(lixR^XpȎڒe}Ӈhj:'j#Zv8TGB,E¼ G-:۽#EG t_Q 6 $H,ĢX牅$CLFyIRFNQf:k:Z^6d Y^_oo`O]8=Ǩkb1~nR (~#"m{M]nUQ7[S]ErюD 0y=׉oݏcs?˜ݮ~}+^og кh?lz/@b@,I=ۙX)[U͠i7z]+XɎee]kXFwvQjS ۊEs^5_ Řy)ԽEѬ%𕗋t$/º ŲTA,\b1~N+e&zh=.[,X 2$ZPژsU2Rbf++?^U=k-"\ۈŃͱ{1`,g#[Z;:xAGG\B,E:xJʉu[20vbwTE,k;b??% @,czn*ZbMJN3ZGJD_3UmtL,St|cW CiMI;!wjA螶&{EQPvM|M;A,U CmbؾmS޲Xe[s+b`/\jŢ qXX @b [׆4-ι{!{ゔZ/! zJv,զx޼QY^F蕼-!`X(.PEb E|o(@4 J :*-1*bg_YǔwTK&~&>%|՝L7' M$S-Gڝ_I'vzeN"orPSWgdS~}H48QH "긮nT:o0KߓѮa|D"[n=bXkՌ橔X0wD< IoJ%iXdRR%)gcv}iY."ǨLa1 Y7m#{UB6"߲.:b<'baG %M~rUMCZI~!=wGQW gNjgD)󷕨lYξ zMK} &.v.+}G"֥hwn-8\,X  I!By`V:w$=%܋2b5佥sr=\."2Pj¤WӸÏ + &0b)zX Kο$mD,tTZ,7ò Eu bQ~_[DS^wOhQq_/ꍳ*yMhԨ-iŌ܏PY4[zB IO76E 8 7y3ۋIꡑ6]4B8޹w5qq;‰ZDRB* 7V [=.D]./jUcky>{nLD]<df2{fdf˚wzJBUYF1fX&ky豸FbƦqT7]18 9'n0[?螑+߭]Ţ,$_IUXk ۾gwŝGJHX]XEXU^Qz1ZI,*.]LN,L})XӶ%Rd׉LĢH@,路z$~1 ighqA rX\=ՑN|2<,9bQb Oh.*bV>UkK~Y b nKKJC 2Q(jw";U;[A:=ZXImD;8cA+}9a0cղJK*LXXX@|oUw+U>ZPN8Tw^d?'#$$PB5=G>fjlU}Cز>)XXXpuؾ\qXXXZ,H,H,V-$$   UłĂ`bAbAbj XXXXZ,H,H,3EC㒛K+  e5'OķbAbAbdN<.?~ MC߉Cg:V $$7dw!=tWTT,f? УtMk}Yc}}Y__(_ξ\m\L,H,H,LjohpQb`X3nJլ6bJהHzmo  &hڮIyg"./z+ 2d B; zaj_/J$ognPbi0e1^J,H,H,B8X4MfHF8k!reW?{g@8e $$M.H5,E!ET|UL&d3d LwBH5 &Wi8MazGZ,jXq!BH5 &ͪa­%pZŌ&b!B!$L,X\C/ iغX+y !BI,X0(y!c f]ƬdBM,E!RMbĂEy!gN ĢX,Z"B&`bĢ1#@b@u?'r&+ft /N1uˁ,~B!TX0`bQj~##.tPL#΋Ď(+hjsKbs`6Ev(~!BJ,X0(•T4=5? #(CR?#o9^Bȓ^hokF0z"r &L,~mPm)Qsy_,9L0>뵡p~<=g.B!Ѩŭ+z(+L,X\eoKDl\z,t9bcI6H/o7J8痋BygYElIm1cy-5 l6y[O,X07fOOy!I,F웦AZ,ᙞGGnn(U/oq5N{]ք[:hSq x&jǁ$Oɝ}%aen>%my_N,X0 BHEl<dzGR5]8bql>תBoc9>d#u5F^jY9'k%XtpjCL8ՁOeKO= yZnft$kى &B)w(&*bqn1X;Oj~ƏUx 'VEۀ9<%+H|iH:pZlLJoHQʻZvbĂ!B],< bq ~k)0{] aN_XfQx;6GԔn6`&:oct7\ł B!X\bv# ߊEt$|<b#Xaq4G1X,Gȶ7ł B!TXdpbSI[逭7_dO3_,b:l7:l> ˜Eezx[O,X0 BHEvhO9Z+[Y jON y!kzPX ӵFW݃u>pĂ B!TXLZ`+pmci`ު(E{9,ȗ1G)8a_~bĂ!B*U,_˜D&b1_-]E UU*-# K(7LEkX{grG ;ycM,X0 BHQBgmDA L-w:v2|YJ,:C7Tp-jfB9+jaLׯuxj[{Z>=\E[RRk 8W3𾖝X0`bA!J 2'mD4syE,A`0ZW<ɳ|Z fEܹQ?6G >=ۨݽTHF_Gl>c?&{WimĂ B!TXgw?֑{@)YU0=@&(lf`4$V&]~c$1߶Hʎ22И:3٭nm,.Р`kى &BX0:b@{|ŦHOVPJ,_AvȨ(z^cF؟5=L UClsˈ {q35n:A{Z~bĂ!B*Aca;A"~OI,Z+D@,TBe,<{UJ,t(i |b$fYWQ6 !I-ݭ$ZWOkpE#ZO,xtv`EwX{BjO:ǢJBe,TBɳ!b` 5EBm҅nZK ZE,pC,Z'  &i'o+QċXX(QB!"ʧ`O>j?ͩ[}[zc,{Pt4h[AF=}1N<\2wݾP'p;PI,zSm=qP7ڟY3ΚfH,q5BM9\o)aŠ#B<ڔSjݍp?nM[ce̐_fViRQ=9^blUI2 Ks'&߿? k-+%twQ"͗bpzg'‡m7|Jll6M3;q^ !HitRi9vԶIe!8649pP6V7)!9ZO8u[5jis SGTtCbUgl@Ρfw|nȎo$Χ,hF՝93ZIyq:!Qx7@SݪgYB%BĺhcW ,fXƩ 6" Jn!Ä _'FC,8uN5xȦ>B:i2',:# 8;qH/GxmƛʱNw䜺6奛,pF,fz7F(UJMjj+W~@sotܬ=\3Ok;X#DEBpS P %JALaU $~!ط8]/ Ao+%Qǘ/<,$GLHp d^g#hO8i׺8 vjOAZX-&CUPv*ng6ؑ;&NL7mRnVű1M,a+FK4/kIH.I1>)O|5;ZEOّ,#^A]'́GMhPri+AIN K0`+nS[q|j=|H`@: >]-nw,x4qv)kW&ܠmI6xa7ΘWE~hvNq_q`#4#>DXX(y23Vж(Dߟ:-fЖ6'6S' g*9uPz/FKiE"kH%IQ; 0 >1#K_CԔrT]`}6q8,s>baid*)?Rk;֧Ұ!!ž -6`*GUm(#֠xƀɹ]ZG 7V/:H]$,5Yd6w2M,(..؋!Pvus9 bu#!uk˷_(*;i1\;X^I宙4$+o?P6G, kD"#E"lN>V{+=vmʷ : "H:.pw?eCv sEJ<5=o18HYI5B ^ʝ(wِ^_[a% r48y I9?|NfL˪4-@(1o3Қ6pEduXij+ܔ(Q P %]klK;,,I Ws rgΡYx;^3ru}2q]㼯:W' >*!i!j*K} $>9ˡ&Fu ^'~fuP//iGy (Zb cǹ}M2fnnd$~_*^A2CyS٠Rݔ!/ĢWgU0~*I Eqjw!٤5vLfM4asgm_R&/hZsX8Jn!92# _<X@o- 9b4`M^< ^Wn%rdcS Bii>Ja.<-n|آdק"af}kV`q7F,=e~ / `nW`=űEdw[f!$l@tw8ƀbQAigW)Q2*c2JDxG^@/uG1JRI#b萸Pg$ 519 v."ǎ }BU#EkN ,$q1vOSlzlp[0C#`KHt48# RҽaʞX@¾\P%! @AY$!l"\K-ϒ>XJYū1_w^$n`13sgi2PGB uwS "VͭEoX̥,p)~&^Gb1O.z6Mܙ7&y~%7OnB*|ϕKD2i4"SۜBE4P蓑-ԛw7EZRN]X17=źѸ=BRL=M bћݐ%"1>ZٛlabA9f345~lX>t$Xt$2|b'c<cᓷ{yX & ٘y46ۈXubєB$e9g*|~bϩ{ޓ-ԛ ep\bsF*X7ѭk< :$#CSǖゐĂQ 7ͷܜ8q p Sd9ܷWkvXE?yT9b/1!AsNR+°2!ѬzĢ 3(q|_d؍D? ywȟH$ũe"g@Qo7+ȷA-) D\%*#f/ Yg3ڣ?[+(_z,~B"/HJ,Lr s~1s-%V;y_{[ \LĂ"3:M,$Qh_bt bьB!O\E,wD"ybQO ϩ{ jeȱ@PozO@XLRlSSAWccC}߫0y=.HMYk=% ssy,y, yBaZ{J$?hbq/q?WIaL~QrG &DF 1uUVYϩe:NrCrIuG5SI({M,XT|o܃dD$k2*;ND,'%0>b暳&HFL,~ ugZ_>`)Ly:I W̴dm#/(*'BK( 4ۇ۞ݐ q턢!ن=Ŵ=Bz>+})$*#KGƂ "=:#6͉p 0Fgt@,^_~{й٪0;Eׄ]s\mVbnЁ?UR."Qd[V. IB;ʢXg]^)x&n|?^dY 7HeD i@21]Rj>+TV}K `!u̸nńJݭrĂ!۩] sE_=5"m.BZ5\3\IAr *ȟTSX`>X4J Y%_${ObA|gS k~9o &ox;o H,#ZM2yzs?(64=~dX>NDXH>V"'8p l1{3X$Ko7mm%Mf'_ގ\H{ǻT|~sy@ݗ*{QV'ǣGY\֫%BR>'fū|mTvE:h7 ,ϩ2a"C$E)wE(YJ^"  {S\1g{?ZW;HcV<#OTeveldO\y`J,U*d%]ӻrTI|Dm4MyY[  Cz[#YkL,ɐ€mN5E, Fc7Xm:yK|]=Ȃ ."1>"Zd/{*ŦЌ񛖎飕*EG,iE} ĉX8Xxϻܾ #Hn%Y8l?%:5 tF,@X9SOv, ·KHb?\b%ˉ"$$X0 ~,R;UXN=KP, Ir3m, !6R:!a[o_ M:::[F\aɡ-b@ acWn%6&ұ~n$5-:g?pq$=G0l"͍wώ$IK y}EhtwrJ0-!%>WDq@bAG'&?Xh~rDk CEcpolocf, D1Tv`$cl6yq{F`G>[6V\i#n֑4)P|7:Y MY:6W:hD"̾P['c<c瞒 БϔXY 3?]e`/$Iޕ5m%Pb6ITP5h5JKR˪civ71'T{/V^_iU 8ܸ+\S0X$D"9&%v9=u۴ C)Dhr};=)bMlb/&d$[;7iZ&R{hji.*M#v84x+>F ŠP9EmćpBhⶵp?_4!JucsP8egco3B78e3cT:2/kZWjT1Y&x[%6΀}bF[k&Ӟ!W_3Dbz`LJ}DY-Ae5ܧowEfҙ͵U%ݾ,!,?nCvF<<DQMbKNmrp` z rӝ»bh['¡ a{N]chXYC'>xcBn^-R|W.J-d&蝒Z8.S+A\bk˲Uv~#n!WtZ+ך"n 97M~}lW]2p*Z1Ăk.nz,c ;N3{R` `OY1b!gnB=34bd`G r,*&Lnl+P` 6%V5g=\D$?Dwr؀ѕ/|ICsWGL(TZ77Pn/Zc R[;#Ch|ɂ<4[,'k[0+_J}N 8*B|3n6;*W[n۝Xvz\\"?`@ <$o+~XX~2j zr!f^=XL\x© 1  ]*IK,B?Ӣ)}/]$n KhZr5I\`7bF5G+z7]~mlWw1'8c!@z,HiXf `3)2lɐX˷!QNba8lxe)1ܒ1}^\8X9cO)SSx7@ubA8B-NE,fSOռ|R%oWK|DfcΨ~!߰V; Ku(NYQĢLf#8aް:va_2N̝d˹,^V9f SƜ;f~Ǩ\^OtļC&-ԛyF,WYrk mX̹FM!9ӻ:It`]ж~^uqDUo"D^ƫf{z¡ۇ2 +?QhFsय़Ă jG \r/^㩪wIR~ͺ ( t7fmɟ5M/Ѯ*Bʝ]u/.!'0>lX=Bdse4WYH2ITv#Ă̮wr 1[)[Pz>+e~U+׈,WIbd!n/'RĺZ>6uWR9۽ШvO@<:b Xh!y ,y̫Z16hPʏ,˞+=20f30U/ :JDܝG-#\z,cݴU_ Ģ3 Zc>pM,FJt_Tb0 ^ }8»= H}j qE-L6 C @ X=:0)C]QERWbqk ǨSlسE.V+$]}X:t#7s}ܢNB @ X=:e$p$E+6eA16(*5c\_xe+ Ą_c /mL 0ԌVQFrvu@b@4B,c =I" iN#+޹Up˱0v ܬX8F 6rdV=DYVmG"e!gGtޞ5O m7f!$)Ԫ5 z,cD2rF,|ô@f%O8b;E,Qb>IfқA8DM{Dd[b!0Ob>rIK%^@ Ohfrԙ C3z,ckvZ^ni:F,"OrpH[^jU6J"',X=Ql288LSl㴇hI٩,adKDiAln@ 'ڃ!T_TTD,c w܇;k:ן51تRwi]P_k>wm!`߄bkOgq U06oU\xN=!ox@ IOB' A/{gD ނDL$E w+nA-Z\j/'z{ o|?U0O~ ^,@ⴹǍB'(8PpVkjN\:i#=֒#’X P,@ⴹ/&ZKr(-5V1'.rru\^ӣ'~'\DٌqU533V-J#!z8>Qe&X bqߚm뙝8\Pt &$%EݕuNr"zpX{!PUK ~Gà~8"M6lڭ$ &Zb!TÁCYa"X /J jm+(Xt%LaXp$/h`"@Wu Кc,TYy}ER,G;& B,@yA+b`w݉h!OD]XDx>G]uMc5t<^,j#O&K S/T"X _h pjئX˔FdQ6:ޢkgŋє2"1Qg%X b`"چO#l:@xH>nYE${Gv~7* Nj0ꬰ D,8J 6$"`IXlRyBK,nY2|]bq@dSG XX b qIpmj)X0OS#e5O'd&uSE&}ʨ]ZU?XX b (Bit/XDXLS-lDF&NŢ3: (\@ Ey$2S0 ziׂ9)SDdEcڨbR@鬘V}9I D,pTXT.Z/u=7[rU7ܴ>OJxHJ2p]bT\2yBHYdŪžC1bFiL!bQb"7PLQށY NXuRGDkE4HXL lT^y融Y9aSPB6XSuCb9!($"׃ćJ~r@, W,@&D3E'ɕy>IEnR+fcKo|Bg¢j]bȩB#D' L9N? p|dI/5D#{ `P+ e pu^.b03%ksҚEMψk꿼 bQb"mwww?L6÷?[٨ϞYyb1 5XԴX yҾ;kS5B,ٰݧkؽo V}Uo ?ʿIW&`W"}G}2`[t,iQޯ[JX>]wĢ D,@}o|iڗ_51yjkQͶ9P,"y,D#*4{F|bS5B,ZUW;5 q/}˝=imxfq:&Pb"|io4MXXҋ vjqJҦKK9r~PEK{#;$bQXT-\,"4XdS DbG?ϟBl4C, D,~LH/*4/)j?fs X'cj(FwxIĢTybqD2^}[6YT)W>էWY,@7a(}дlN!#|S,rK"m|Hs#*489ٿ6gbQOXb"0:+C,>ri6[f5ԝ\,NC,l?{ʔbQRHJQR҈E½Z6g0%6+3]1^S;RʆS^'jDrJ*s$iR,b+>XdxgRTLrA&/#Y,J I,@ƾ5cԴoc$'bayi_E.OmGn<|s?Al# EZ{3D5<9ђq+8#;9{X<:>ypMKZC٠0>Gn9&śq%poi<}fEqe"N)㊻/c=sq:") IDATX0n#nqiA8"=a:J-)':xӀlү4ՈA#")oBPrhP%j۳(B!jN\8.SG}9n쨒ĝmI']ڍݢ1J !5^U`xwufW}:,J,T3Xr5^'a7J>u}.3]pB&խEmZ]kSSIǿcrx A!`@BC "5*iKܩTܝufwvr?rvݹ)O$'t>n_[e#L^QtgQN%}`y{@%= z^gkVPԚ||&B2y\EaHߺፀ'6b `DTRR򁅊Xћ`[*X7|QC5'&(OP?z!x-a#:526iO6eྞa|ݬal +Q6mqL38`O5gpmC z[iauUv*qBTE2qASkKYߔB3|MIr 5*]iu4Pu^0j08ǠԌM  |ph@c}m)XL} '(ښH} sbViK';Q!yOmŚtaR[&kJz̝sEΑx{@QnsR/_ihGG; /JiLTRRR PRD+HԢ- yS}lJv? pzǖ^="B` ) ݤ5~ÿP02 bһ-k( hs~2Gc\ [Ga'][Et#u߽0 ݴl:Ik*[-H[ :(oaxĒ'u8AB'1 Ӣ ,",SVn56XlѦ)7 9vB ,f/}pzI[-g,TBE,~%`OX; `,7oWc[Qb,3\7b#BFXxۊwJ煮}t..&5 m3®[D7G`1bD&:-m+xt@_D g|l}`!>3;[l[}?ꮝ\Ģ̀ZS:"' I`LГ-}.y&\qN@hh=p/,Fqӣi2|ftơ,Vr4Jh,w$vEP PRb('_X뷟0kHc _ A.wf*(H B o[H%P:V `&,|m=g/׊;V, 74̚$(U<R&Tm,w40NOkB|f:ҴgK}=.jFL(`Qn@@S6yB;Av|` t<&Hr_БyNP%bӎB!( Y`09O_!dPxPV G`Q`TXX()9$?~/ fuZl]9|p*g&(d&8`8ErW+v 5͠\_4>۟MZZ$|a.%6 gYȥB4Gd@d%/:M^(XhX2A+. UV:eq&.;&g#I =aH% , P :9n1,Urޅvw5\g ~[P?2ky B\bVmK,^ |HMӟ̣wUT*c˂EUŶ4)Xxnbd/O0j** (d1bxԾ*S:]g}.Щn0. 4*B6 tm,H.B&/Xe`1NnG(^n6DĥgBpEC菥-`8e/5BR`"*b!ѕbg{`Kj˟{ σ{xIfRv; "YC=XP{B^{Q]BZG(^Woܦv"Y)XDA,]wW/m8O9tj*91&F/FG* rܡECBiPTBIIBE,TBԚ5O"`Qw"W@M`qo*Yx —y@_y`k0^wf@@`qC59ծ~5K ecA&8KrسW*OUys,k0pk*~#O'-8U99F`[ K6NiƆ3CN {W"ZIXX5XQ'$m4bby~Ff^8`$hdDb~px>:MТVmѤmME,>,TBE,޹];xI;16 6#@XṐUSujHQVO%R}g掱=Rb{|2>9#Ȗ ٯZ3} rch`3P_*S2G(>Rr]WZA]^ fjba?ª(n7k X[`NEP<嫙Z/Y,LIiVJ$+@Q X- cÄ##ՀEV邚jרS q${[n]"MUi`!\C֎ˢa 1Yb1QDogZp}`1^fнmHtw*-̘>߶B) b!-v šz7\@2`QIgWzCbVy;j2T%d2j)42%h(E@ EΔ:lP)]F! mc_nW%5`Qn_{˃zBç]D!(.-*=&b$XšhuYt\<.-6pX3Js@cxw`1dt<]#X/xɰu p4c½0N<4EHp$Q _J8O}$Uu-➮YY拵Oԟ ?\?hOOYY\< 6ߨ+jiS4A)$!J6h=rXE3>+^YޅhT/Ih`j \*mR+>ۙ8ĞyC`&/-6mlsآ0V~c )۸t#@#<C<xuPp" l`fe8nb `V!A&3[1v C:B 3! Qsݥ}ӌIoK'?vp;(BthZ}b$61ux>7>rXͱ=W  MU t{5a:\!G-M)>EjQqq*w*CmQ&I639y2HnEPVRZNN&+Xd7y~͓e繊+h83eQyxSF̓C$:EP:{y1>6v_s q͐7S̔`c5 YN:τ8,n1CpsC? 659bSYtZ[zJelKШp#2-$oM``*EiJ2hKXER˝g1 kғ}n~@;l 0.ZW^,?V2"+T@?|y~\\AϽDO>uH(G*h 煡(za,ժ,>~7WS %~G1d˃Nj!=E^``a輻ڋ;юKBN훹zkǕ8TZɸwncH^iCfj^G*vjKIW e4z7Pkjz n'!dRoqևXO,7bֱC'vE!oOqc ,X(1:=!X(m\&8f𗙒:P,6=Zk tNn\d`q%3Rq SԏT/_apQxKlsEYkcӔ>˾"`Q$vyX,6ע)Eier$Sg%S$@R E4 X ,t8̥=J *݆KXJǢ^iP-ŒH@T?hj.ABgc|heP~xɆb.`$TBlellǨ{54SwpR_EX}U`^%1CGJ(lplkjƶ 1τӘ~-T,l⚻Xlg!?Gt`Ő)Ebͻ⾩k܈&0Rc0v)R`!-ba>3T ,M sHb!}!I2b XPDJ`aTكa#d%3 c?'$O# >)Dz?MLfO-"S&1kvsjkbHb!-"X`f֔P $m)2tVh*,&Xr(%(fbV` <N/Fc$8gFS-c"ف;4- .P<+5F@`Ixz-dі9{a)$\D֣{6l(B!TF,`I&b5 ana oT@$~?u$ˉW@8MלH#MX2n(̕vq.JE4^oB! F,pb> ߃UC^nn->1Cp PWZ,lrCnڐx_{#yҸ)\;O1fY[Bɛ_N3JGX0b;{:<=-wvS_~kاRf{TyYuB1/~8 Q,HuĂ F,*5 #˽!r+'pb?2]MX0bEy|b-!B~B,[UH@=}`ĂJ3crnud^BXj,(Jb#'ŋ_E!E,Qo},>j7f~NwhE{;bXY״X0bE<XH/B!M,ZHO Yyq%ujzAk*S.̯c}a?Q8zԯy&6^6CÕX['3=y'B? !h8ŋ4Jȣ]+D<|oP]S31JiXOht]`Ă B!<x!w\0S ݻ>p&?;0^[E5͘M-{ch TEb?mu߰b_SpSY'I[7_O6j:p-n6= IDAT[ҏח [ԬX0b!BXt#;9Bdc;aL>JBɣ:&6};0bHu5mOKdһ6QGzlIZIobWfqox2Ֆe}+/ѽ7KiDvx%qSתX0b!BXksԾj\?Fñ2]-:бb|!3g>e {кBf}~ b8G:N~Džba&H`MEܩj qܐ\veN, 2JEn }nkU,`ĂB!], 7ev* !u "ܔrӰu1o)%P=M+_nP:.X4@Vʈ8壮m`Ă B!X+RQEir-T_KEbѥsVΑ嬮kb!4^W"cSJE4=Ӯa`Ă B!{8FULK(_I%H,BhVfOwƷ0GGmY!bv>.kEw .b;[^]b#Bb5 h=bL$Ŕ]XF9b/G-R.b!DPc8u}pX"BVł F,!rB퍪ٻʱ.0pgWb7-dC68ޖ 9_baE,@E)DdUZ F, Bȃ $iϊ:_=b<8ݺiG2cB.b13_Dw}pn(ۉEW Дzx#XB!aph fր#a|8.KъV*M;aSP qSlC.0<& ĢEexQgn!`Z}\"wMM+}O<3bS-j  HJy8G@st <0fBĊ97uln O`y   baI&@-N$z$"uhǶ ̈܉2boL$E^lūņ'o-)Mō'U7Ť#ovV>s*$$pQ"2-z)E-+R-"eg]Uż%3]*.RܞYKB Q''6Pba,WbaHZXzj ΈMYK\wʪK?~Hs>*$$pQhψeY)ѼUWܢ!3Z?g6kݙd̨ѻ묉\n #pxA,o%~5.e E=*YRUoGvSvsk \}ǕZl+})y[ HxM՟CpqPx{0؍z01snc NR&błĂ.8ƧAXXXEJEK"łĂ.2EXXXE=_XXXZ,H,H,N-$$   SłĂbAbAbpj 'vrsIOԓskU>)s!$$!\LgŴ!+-~7 1!֣ӋE4/#'X^,,Ă-S C=Z+L!1gYp \,f$ 8KOZ,~~; XXbHZHC7=hl4^kn4}gGF, #YXeҊ;n+gd5ԅxr{ګiT쿩;uRh+W_WJ"JF#Sfi+T,JȲ3]yaz:3*L;/U*(jkʒS(Iz~ĂgbvYLjvwqÅEBNua ULkuJdsY>VKvkhxꔲXDgUiKq~$ \y48.:Ol>B, 81" J"ť'5?˓2qIg{XVZ_HO,d{K)ZhQcN̙mw@,fDn\}UNXw䒗ʪ0h˝ONhybIFʀf5숅 m:cR|`d}bCjxX44zh:۳r5W-Q U3'ĈE) $H,@iuLoU´W7WĦ%5ãNXrČKkV֒#j)pmZh?T, H,XW4x2%&Sp`^OZG}ZM{6龜zIw*pjv Y$ml97& ǰ|&KIe̩&zWz5",2Vvkoł࿀6DBEbgJ,_\tvXpwf=de~&g}?郏 !\29 xjܞ;2ƪT?_.(^YPJbR vϣ LP u+krۺ/ w[B bI A,Xsn"y%$ $!)cptsy}pɀb?ΡL&~F1ޥ>;L E<+$ngD] #-}C,E' w4tYFb3)&XG#9I;=pAtHS:a H,XdXG:|tZXdY/9E  XĢ/?>KE^2 m H+j F٠7+d7لw0=3\\vz3h"Ϲ~ {~mee2p\^> Ă&L,ab#]FY=Ŏy!!L,X_,$; B BX0 X|H'G 9A!0  BX?ɲb;cݹĂ&L,9b9G,s;R;I,WvVmK&0`bAq\4/be':Zxpx;2g+INW!?MMML,abĂo!L?"z'1E}Qbz=o~i? !G-XĂ!G alŢ đVBU'X"uJp&̉ ! &0`bA"csSFT?y !!L,Xr"pNa&0X&L,X!&0`b͉<0pZ1NUG łBJ$hR8Ă&L,ܕxXP,!xł&L,dq"@k7wuFC R"tOubA &{cfTcu6t=V4Y`N,j4 B))ڮKB!L,XE8SWU)$Z,_w/ &ab☋ŬS\{)ejgjʊJ{4^VAbQܨ3bQS^,ԭ:L:X4 g!P,abĢ4D0ƅRXb17Rl|riKSGͯ鶖Trno-OM (nliBOeNʼnx\x7oD^30>E6`B4. 9#λfSSms<߰t"NWQG?!P,abS ׹G'db1 ws%Q{s};\5! 6Śu9/wDvF{nR<#eĖ.Տf[4ru}bA! BX086b O ekauk7eќ׻ŢN|AL=bnQ (`nnk=kipىJ0;cQnxНm)_Y?V0G?!P,absU=C,kNa99_O,ļSkO݂iO *C/w=hut0~bу%V׀W,̣A!P,abP ;@,g^N,Z)*b7 i V< /O,tjW, qV3łB(0`bqL]W,;jY UH,*bQ /PE#ZJڝC7 w[0ڽ"fݖ^)xMG,4-rXPb{>TB( &b*l.W,`E_x,ZEJn"&|HjBga(| ,-@ӻv$#baU} FiEx+'TB( &blDG2)b1mo ¾G,<݃|"D%N.^8I`&켬 CF{Eb(jnnKW,>r?||B L,X00ia@P|*oS"#h m3bKT9n=oԲ&pR.)=u[GV EdN.caeejא8Wٺ}!0lc`6bqiBaJU,vrH8|ۜtB(0`bQʘX6/5X]I@:@m`4 MieFЧ"ڙ!tЖn1Zk'ķh#oۓ;(-otɤmYXVSZ$T (J{>,Dt,VbN:4]^D6i۱|iF8!f2XXXI,=+rzh[ă+P~J@ߨwk-j01B/;<_Rz컽U2JWQP!.TOD-KAҲ[@_JI5ņ:>>~ $$=7|RX&?C #kvܲ[MWŌߎ.9"[8Ft.gfFt,oO B,TSb!*9f ƊeţЕE;*[rf2XXX\:>n}wץ^;ݗs0 B%@=X+k±ܭLȋniSwH,J XZ ǯиx}bQ ޡ=CG 8L^ Eʅʂ?9xW14K,OZt A9Ard <2m՚W1ʪy"/W $${?Ro}s%em?k#++!J,̓KrR9;U2\#Ă 8ݰeDR;boXrTee ""XȾ]obG,~ hLne9i.XXXRbᯱYVTrQ+27wjXuw q0 uj   J,4Tny=eQ' 3fYfYS/̐/K0yĂFO^Lx|>\'FyyG>vʨ{HnTޙa"@$zJzhU5S/yL5BG%-ʭzH;XN+"3@,H,H,z$}a^c+j?'RI"Q)Yޱ;-V/PZ;㧘b@bAb#\V]-+0n G3gWۿBO&OdK_O3Ă&M"`GP:m*CVM 7Ԋh"_/!#b@bAbpŢlm0͗W0[d`@b@bAbXb@bAbX $$b@bAbX $$ $$b@bAbX $$/ XX Xb@bAbX $$b@bAbXb$$ XXX bXXX njBP,2uĂĢ3}/ܿ|c{x{E,6Mp@ L @>>i?K-xٽ?< + )Xxz+b@bAb0-E }xN,zZ(. phEC^P6u>*(.F8qmE=yH{0xM,SbAW)v=]_O} N..Џ7W\xDEIbJ,.f''SnۣXՉE`}NbJHzWTËsk:ʊvSpv $(ۄ<< ?>!I})jBå9 Ľ۟ȵQd?Xbb{\$DOk:XtY#w-19Ĕ JRzܨQf# #b $)߯BIWB/i gb񮘩Y#JibGXZ9Ŏ*C,~exI)=?tf17%PR,tD>QܕX|LL;rmXEpj,TL,  X 8(]9@'ƌ[/bU,+Inݥܭ-HkM2B !|_*`e+6b/ xx7X= 'i{YwhцQpb}8+kgbƽ?Ăˆ7|E6%Gc":.(绵Ԫrӛ'ԋĢ%ĉ[ O]%-;bDX̉eNyq;$[>k%Xsba2`:Zq_ܧMYm' X'xT70:]ň9JtI,* 5:ʀ4E9bnX!qԢSq`e͸q/ʅfQC0/ł[亓*\DW޾r5LcѥCxn3L~Y^C>B9oWSDVqo+Og6WxO _"G5bűXG>kk2?5\ޕm/FXE81"v(ϱôXX* "#qꥪ3E\G 8o^"Z nX!dsqu|qNJZ IIgxC,*lOMղ ecXSZ:N9U '01$exneEUDmڢvh)ݬzӶq/:e{e lne!acۉKӌ::N^ouh+ZMjX! oKIW•ˌ䋌Xjj~tʚ-tʕev`{,z\\3뱸X K8@mxXsLVj"G }a:ӹi yXmh&VL맞ig0b $;{dLoymX$H,X$H,XX$H,XH,XH,XH,XH,X   X beޚ0U췒@JA$ &Mc ETX0ZS\z?^}H9akF;b~Mh,h,,  ` X`AcAc`XX X44@,@ Ƃ X@h,h,`XX X44_=*A~@;   eɂ\  jn,h,h,  :-\jp:?U,h,h,j'Df/}h̶w@ۙOJ   yS\{wmjrKd#ZN0SS!X-E =ƥU+#ReXƂƢZBD? o,h,h,|y-N*fEoZ]oc(temP>2XBth-XXXTy-Fk {>c̯eMJK J}wžjZpV,+ԐeDc0:ӦؽꋵԪ5/gӉ+Q93ޚ7fcn8:ơ^~2p)XMd VE!sU®;{r)1OJ NDZz(-1đ {K]x*3{nut*cQ*}bqWzt^ -X g)dB v#n_ޚ-  j" a1]>OK5I<WZ ޵TY0~>a`pג! |dBf`qyLK{ѐd`R[. |p:ȸB2s+#4<\2/:|'@ƂƢڠ>6?dWol_;'s9`l_?J;A"S? "NE˜벜`cĠDOYsPh˞,7:*9,n1? 445v ܡAA/  ¤i>+/\,boABk<[,xa@uϨ9&g_e;A8b}ޑo}y];!I{O'뾅Bt^09Y樝Scx[*_8`Rs]f^4>F^5%'f&qEPC:ƂƢT$_*ϬVcʅFwGC]u&o>N}(z.cF }j2JOk|Cz2/,"r~s'a/Jȗ[3VQ,Bs}Ba|ĞM4#tЖ qa02j#$W7=ԮS/+l+4N|fWYof؍҇gќf+B|J4.e>78Y-w#&$,@:;*dy(4*;Z_#].M,3"tÖW:ݗCD Zkq>ZXơrςU&˲蜜æ,K~z!^O*T;#z~ ڤ4(5&р*:sP# ٵ,U/YYY&x(ӏd[Wbklg(M,&,8O-Ua(߽x"E.#G?ˋoءLŰ:FY`5#vZ2r;+E*/> -uvK V /,tDW 49K26v[=|n2Vl1A_r iA)%e -MU>X~dחa]LcfIu"R+'ܡ{uSuqO o[)Ia:s48]]PkuKӆ`/{ƭjx, Kvm=a,9ؗ:ĺ/dY5CG!9F ^YF\',ŝ^XhH(.C o)XkD^xv+1A_r>GqX󮏬ܐZ`D2#'Mcؘ{l'$,"uO22;ܡMY*xiaq^7|`N 5zW$l*4IOQ3#Yxfa0Jd:a樮NXhfS ˵oπ6Ќ 2#6u)zwڅHQ"TZ*ɛ^ MYS 0ePXhˁ0) ?P_z!)]-=ޓBx")Dԓ{đfϸEq-j`yt([E-T7<'kmaA[X ce@[2&a~;{l߷}GXĭʱ IvxiHޱ! l[A<]7}rVfe2dw,T{;&/Sp*..AKB.!&h2!(E_ ZTGc~==sz&>}tI璘;X*(\ˊ-S6X\ )KS}ePgV)Ko@Kc3PrqXO61w㲎ls S|VB+C02y%@M跶^+Q{\z/IIQ՚«ՁLQ .6஭@Y[dpٙL2^ T_^\=M5Ђ8i̘1,LZG+N7xC 1 ԩ' ұ4_7&kE?k}EI8'jKflkke%OzL?XXm'|{| "_nmҘT=7&F|,՛VJq1,>@9 鍜^O2}CW7`{Nz;#\GŁV: ~Gɖ*Xp!đGqQ MTZSEn({@W~o* ][a++MhʼDzah|bӘ1c,Ljdgk❞o6CO3,bU Xx ۦ,S$2w4 !uoX[eoM'& TxvUܥޯŚXMQ5utWmtgDC9) 3@zMձA(W8,puJR[oHZ+C02đeþr^Cb 4>וQ)f_4Xʫ;'҄K_6/bEdl3fXXGt[C|UݐΔJ7 R6%˲ˀ.)=X)-U$U9:%,6x2 r,5%,:[qwv+ ,^AvW& .)͹;ΑgTiK) :mpւrֺ AgL_q"Ewkq*z>,6R52DIFy/4O?yڝ,Hxy~4 rZ'mruŠYiBU%iZ4e̘1caz,TV&-硹9*fi5x &b, α']Rͪ`A`3uA/Rp Gf,Z⩅d/+h(kw{\DquR.EMPx/k 8"2,47bʀ1cX~,՛ ʋJKT;/흂%O # ^;h+ED`1hӦ֒%ip??moսoGVXq~ePLj/) ,T_z#gĚA6@!`8Y  "ւ _Pdxđoexjågk lgl_Rrԕ@v$sA(hJs,\~|a|Fe̘1=X cҕ X~_W)ב<,㸏Mj=(T񽺟~uo>8DggxQ lNWr)c!jdY;hP?^U{P{L9Nktm)Wv<8|p$t"_ˎCJT q8sd(hY'x,NlJ;Ct9)wO[Aa,=Zkl//3IX ɬ98%?B:Cn];" w^b,˖Gv/:D~J~q[@Ip~ #gu&T6@!`_n@q@\mLb pEg(A8Am}O,Q`ѐgX[֩#~pȈƫ4ˋ|:}W|/ҵa l #c}6[G?yŔ;%N T>8%X\}[;FPtP:,@9%_^MJ^S,fd򤇕oBs^-X$Vk]LJ5}3GO-OC,x_ڙKJåFN9*"% Mz螺kq9k~b΅R6!⫾i"1XZpvRwMi$]Sz $o4f00% &xIYjѼH-K?\{d">t}^}j#Lwr0_8Vm}E]o-F;1Xx r#zQ *c {:Ix-=N UskY,lzmQs.*4,g9wGIqk7]0X{Gi@ f^( =hN}d8eNC̺g~ڇg!>f CF V1og[p&~מ)T{,2a,o lhI5GGY-|} aCLp+Pòc m 瘊hjdV|*{X+ ,pd-Oy")Sp> -/`ZG^$XcVy!m4_2~g/yse-g #s ^`̇t,AюQ2s7XI)}+Ӭ$&`/WDm/q~s{wC=-q~[, ]k!EnYUZM"8B9IMrO b 2Y~.煻YNuhD!XhMYs#izQc䌮Z8cZ+km权4qT( =hV'l2D_gӏfYBf/X84m_ ` qE r4-n]Yw+3(tz ,CV(e7l=#vg{Ė 5^3dӺ#cWk} a@f3Bw2>}/o/^~Ӑ^]3P_oyݑ~X@w;dsl\hO ԯMvnZw6Nkr"~9s5^cul&pQGU:tO޽PG@HY $X$@,b߭ Dm9g(_.l Cɢa`ڤk" ,FlOsx <[[坺l2]D<`B9B@SItns"u~dVi>`5CH41T^A4]5b/A(Ҭbs! ,h8(#G+6͵1$" Y 7XR,e+]Z L.isrIc)\J`( BPE@z,Z]dQދ,M[I$X+'gl(qpzJYje 8%kgv24Gj#d*oAv\x i9^ckn :BHg 2R[}q@(+2ʱdm7N 5=1~.amB~O`CQ4l,@gm4jٹr3?X.fMՔyLS~X ɬ,YunTrKn2[F|/GUZimI(Iyd2bbīE Ec)||VZi,@gℐNX "ͻ8mSƄtn. <.T H}"$eܣVۻ&A +5b,ZE=Jǵǯ!ce>BS- cSIQ4l,@z!5}'[n,LȂ▱8'/"T,m, c1J]X BS'X|$lׇZ cAFZ _WiڹN'tИO ac2<`,^ 1g[ƢNc.ĪXyX{M #ӎMY0R:żKa"m+'t<=n,@Wn;#9How֯gnjŀf=Vnۦb5nX`mth%ݏ MOU5XnՌc{wn,fl80xbO[XZXXfrw7ho3k~uV3w60GhjIYQT5қ S]9)ڑ'*'Fe"Oo_bt|J.8ۧ$62l12guvn(ʒf,&Ű[>*BL[ۤC=5lj${CIѣ2m~ 謹D 6~b`ݜ;Ź;3کe;SBa,·؜r/ѧ'KEEԘNNC9 )#X c@SHI(oDR0HeQ0~٪TWXS:*@|R,@Xg *I)֚]h?ᓕvn1A>,Q4 *= Y"\ÛUA㹕^ȦΘ߈/iF$=vuH7 }*5y'k*?+ҞEySeq>JjKY |*+X$۞۷n Uf,Uu4dRlX%w5<`FM{Xl&X$ 陱8}Ed:5eXHL+CvIO 3Ht qJԥt:cǰ 2W&ՌApc5}qPXsN߂Z!:6Z4E!jMy}'D-Z@f8Y-`7ӝ$uJ{|cP_3dGdu a~UEkva .i?P^4i,Cqzm%隱&d_dIg5 oүңm ~*ďSݴ/Q=Ц=sb"]sx"?iullK3щ{hJӸ!%JkeXf)f^O~|uVѵڊX(lLezⓁX'@Y$-˦Tg P2K||Loِ+Eĩ޹65tq;Nũp 7#&$`  pYDEa- K)09==V=}IOB>t0@ +9-&wI^*MflKoFBʵ^E֓ OO,!,o-%Ccm#:WCrlIQ[,ZXHԀβn<|Ey~R$|ʳ7bn^F}օ6mc=ڴ^"R6ˉ.*#&=`AtnX 19,;z^t:.m oC\zWNݽjJct$,خG!XߩSHLjHF7 aj(L2[& ҉2=mc®Pd-{5& +E8HFE1œ փx ,:(f[`h,ST #Ϗt Oa#cs].PwX+e =Do BP(LcbnC5`\VtdW$hR2R ›ĉ%`c=MXh6mFz:,xvi,98H|hK-Xzp((( 8IX7CϕؑC׊=]66w#+<~:CJ*N  X n7f,T,80UrΧ=dc/'TԇEMyklj *"^R w 'j1 #[U;HڕQg"@vЍIE'@,>L!Xmʀ*-_K4%Xx[,F2Ƀ,Ac_Kp(bx4QXP-/XS98 Y8 ,x|goRLT .3ڴi ЦϽLE{#X UHřKU ,oQեw3Af-Oxњ9,1d)J/\eD77`-xwVE8 薉[ ,%Ps@b{4wkcX@OC52x5 l^?2hڃv -wt,U(0w;⣋A`Ѥ([OGEpX]7/H|5,>Swy$pʳ7)& 5XhӦ=cMۭhh#[;,2܋f1,)cۥB")d{ ,0v`,-U`au](=XH}"ِfNXKޙ~:R{M`~ !`woBXXc u?XCLxRkvD o1_NjU=4: #`~;-ÚjY"hŀ qg$1f`9ffَde ))(~%FFv"W`snROyMD`MXh6mt+w=z:,6}юCGj# _v)Eb!,#(%X8ڸmO*0ѫMz]wjpGc7'ѱq-r@ Y ,z`\gdNb=`NH`aN'$h[X,FDG^eUob)KG :z\2Xݧ 0s&Ect?`{,`q*>sE"@.hql0^KX,U6mc="o:wY?J7mAOESSeW2b!5X 9b`AGEIlH,v{xpp=`qGM4hGX͸1^I;K's\&@jч)r"x7 XH2K*mbv= ,<-#L;"XM9L6:X2B[_"Y0蟧`X ́W{J NB"In: MD`MXh/l\?oԋTU79%d6SnjAA D#EޥSTEGfy?旽J sFCl. &d@Ю6H5wK GAN RM˞Dq/hqph *LVK,mc`FxN ^f~`o/}=hh,l.@2XH7kxRo-_nI2U1A(sNd:[g@k[QS,sd[Ԥ W*SΧB3Kxd'wnDlҢ'](Ȝ,OfNDxXC, Y1]O)`]!Ki-)L/b8Ҫ#X<ЬlŲvZ{v{l]mNg-t ]ya4'B^ߛ[ƕ[,`1 @jV#A֎j' xE@.at\^7+d}9* Öt5T;QMY;UsKcI X,nnfKmCT-;؇s5~I%kFH}ίk-;m2|:1ŕ,N'`a[hmcokP-$0"^3u,ϙBgY:,o =c;-E}2E[5uww1+y{^8vk{)lrrpG*ű!&cGx3D-1VvCU'Aزj` 4.BW܂E'dg f&=+ mYk6`: !MqXX`=d w !Ah ~+^ "–[ߤ5c>^y>w{,FBliF K#@%Zkݺ X+*A S5}?,8rR ,l-$Mߠa=<‡ I(d!a,<[YpZW5wT\\c=4d*t%!.U(𙾪 9MH'%heEQ_Ê20O7٦BD9+|p$weR\=_b. HR h|{S 5j]+p(cEy/sNt+,&cqEiz<4g"[Gje+zѻHBH=|?~!ơ. @5Bh_-f9$ q '"X ֋0[Xic^,KM۾BM9sslnLCٝv`Y0p;gm W(|v#vzx3X_Ш/5 8,E,X)1Y؃mm1J>׶8c-FG-)IئRK K#0[/C=d2rn`Ar[jyxpq%>ҾTCOj$՟ZjH,|K`aӷ~~Q\/{RFfmE|\Vkc+X<>roT-u:,&-)ǂ{,ZSP }dMLշ3|0<_ƒGt>T4{Psq$~6PmY<71y87=z<?Z?v.[-h Qמ{:V{׿6ac禾3R<`.;Rxq%0RoxwϊQ}x^ "xjj??ċN6] 6@+>]]G4θrc=fj@\0߀?>#=RmHB5G"=Q2v DwC$O>.h0RȬ^"P:jy L{58BJ~j1KI@ZXXRrqq5qhB 1p'xz  >5qlЧ.Q2B 4qЛD ў$A3/E~I76HI m4x;tX&E(*9&ո#ڦji`k\2 xrx roa*#O bܴ%{ l I5H|fXVqT!b(B^H5,: [ .......  +>^ɴKS3`f=( xwcܚX8* &zD3DT$^bjv ނ4Cʤvy<ÜK\aP{Hggg9A<_T_x%fRB٣A4aa2V(&uTCeqcbG,]Eb>GaE,i<-tQvImqjn$BB= }2XX88Kԩ~UCKb A[]#PȯWAz6,'A-hZiz%+fŔ9/euWO‚_KA#_n> d,,D~w=O )7G`jQ]ZBRҴi<y.ݖ_˸rEemlm((" QiP \ 剕YHSO= pCw[Xy^ d,t(0L:pA]?"̿/WubWe჋i0P&e!,Hyٌ D-c 6%ElZ/bO2V5MXHiBapa2vv'GC%c3}M1g",$* r4HdXN̅-q ,$ifӦi(,w'_2X82 }2Y= ?7ȷ/|@oOhM%DR_qեArTD4.,@ƢeR}W9(h\X cE(g{$Xg,kjQa2bҹ-b)F;39E?qa2-cMyH.1X!,@Ƣuͼʝe06ZJvjX c2X`a2z:W|HX<X{4 d,aB/h!'DW͉~yaD~a!h'aC}&}j:&&,dHd}=aمzȧzF`8RGXLn[d낁>K~{qag:>nRz{uL 0 d,;cwڧ#Dv2 es#i^՝̀ro(|9j2cѡɓ4U cDsH^svS|1&&|=el71!Uv1hS2 ؘ$aLR; մ"QDȫ/%D`h+|gy'|9CqL5i~gV$ &e܁5ťeL:X,<5Ƀg8de2YD\TZם9PoinL۪&SFn'y1eN ]04QҲ;. mz5m:ŕm1UF|adǀkO9byrU?Z#w~}d"j[d+cJQC1w R M`6sWAYͼiL&UE7e17V&[п!!2X_ZХݒZvQ덗NaDi#|DH}y_(,n{[Jz&bosO3b}"NqWkdJוhNմNSЇWsۻHk6'X 7[aoz^ #n"nS$_&L79׊yqbܬ#d, Wh.DZH nBD"Qإ%OhL/E: W Ǧnjă2Ng.wk?c_AN~sFaqΗ\knER-aa3l@4 NH}a%h>k89 iD>m/+R ?oSgZ,u.ͫAҐg+22$wnMM,]S*1? E#I jmYJI@/-E^z4=ݳzfm &gi鴚1& )uV;D%Oܮt$r ==f{1 õ}G&&IN {ezy^N,p~$* IڙuEzmy&xd\C?o\p/C`JAJ yTd5M4p(qcߵZUTX@A#7MrmzGTP5kvXXڪ-? 8#bi5"A`EbISX7V$ y.Sh #4.{]V}2=h$M?`!p5?څ~RDZ@ ^#u(ƥ?rWR?Y3vš5r.`G60ܦVQDBEh"%le3/i_TD|S>r)X7뫿C.9"|rPnXY e`=Le(ߌ >r`AZK #Xl=xȿ]ͯ|3]`]td;rі8-@yRXJ9]( l.-B6_$;% 0Ktd$Np>Ĥ3E~++{ (8DD$ބC1ezR5ED<^92ȇ"# ŨSh%3JP(q #CqiGnC2f_w(Ӷ Y3vš}ju_N?S%!az+ROY̡)a9*:)?z\Rt.i%&,Bpډ!V*̛po" `1Zk^q aWh25in]7_Ni~+#SHM`@`'shIװ l4_y:6gGWaM|p la͚3֬88B6ĨRO Hе0OD%~SgpQzpм,Gh< DCwZ3;f:ƂE}Drҿ:h2Xd[aȸb .~T=6*CǾ,e6D<X"6LR#y.)Erłzԏn(8ҊӆLOlq`nG޶Zng`<)HO|3NM)"-T`DTǃf@ztBiB Si.T[.Y33֬c=O"Mh|'V+EEڅ?pk߁jTd9:k , e6Xqc \W#fL`q3UPEr&[\ C?ID{Zln(E~,L! ,6{7"TK,R6=\X$']o`1ZiG:NƣLOlȖzP :C&lc8)3l-T性>JiMA94 꿀apPihfmaZ,쌅f)ξM;M:1`qӞ™dⱶ~n=4|# N }BU-oߏT 9:޻ăE}W Aᰱ\!,v~,u.,LWCc-Gv i_`eXZB`0X8]vl/L"9ziv(8q2ezb ,vHv{ A ~$|+>Y"ve,fI6l#(@ađ([l?`AXa{_ R-o?cJ -qA3xHf,u0J_rR}5kvXXts(N_*HhCm@>ѥl%GƤXNgFxH>~FNxx4XܾX,P piQ᧳jTI,C)6@x fBG^qi$ʡNk֬ ;ca/&s'p܄h+ i`apQ|ECcFx[kXZ`&]1vF\)o I X D FCd<XLOXvVᧇ8, Q; `ǃf0+ρh_oSY&X k֨8rҀs׏\S=E^[%oeq5&fPK5_ĕ)vV'yeCHH>1 u'8XGn`q,L`r_ d3Ku?ȕ_3܏ա*\8Z4X;Z >#&]1> H=sI8Y BBa4D:NƣLOj*Xƃ[yr`S0~Zs(sB)[@x %?{ڔFքvx{2*""Q4oqո)K-j>l%)|\t7M3}9V?fɋGfhgIE&e,B 4b X j:H/<$2^6 Ȝ)3 ߽g/}i6+?si"%!5$u[XvxwN,hڊN+o /~&{8jbA6VWs4]KbZ֤"Cd];o* ؏B,]4N3 _l^Iߒs̶\c$ 61@`2;tWX$E@hS@3n byzk; z9R\ i f,4\ XYm3wP]DBAWܵ o`~w _E,(s~+Lȝ5]yŦs3^DX`"Mp/3==e35.x^:t[U*[[_[7-kX$=yuJį^a #.}lWPwwT]tRJo'EP"#'+t(?rg_$(.Q[0b"$ӯ .Bl6N{.-qX#X8̤ZJ ʗǗ ]E`$,z7=4T 0m5 }Kc̤6oWr7sF!aR}MHSLw53j$YC1̯Ң+>\YH$1k 8ޮ T)^7ujhu :`NLđX|OdE`ba̒ ThXEu܁ GWW7ve֙3IkF/֊_ ݪ,Uȫ4̰iA?M zTك >+jqD?@mXQJ ?K>4l6-wDehDQ:-k < r acc{7yžZۼ,!R%1rͤMXfg%u$΁|Ôm&Wbe(f! ݌syzub~03T'x@T$~3GWg"Vd%c.@evFfNG deiqDI!kk Xc+>ǗY> JWg$at}/.k3 mըg:zz}Dwi T*>gC:kj;=ؕMn ~ԈD.Eӯi[:pb{_}^ݬ~}` Tc a*FViKoOw=mܝo}}_X`3*Ґ=)؍7@,X vk2fF ѲA X`3pۧ mou!а/ )N&NyUE|_)Q1z  hB X`BA3}Yw`h6g7hvrc?0-]+t!u!s^siY7SWK%BK^~fTJ9z/..6&X璹A.)e|V(dǭXxDi~ bxVVB/RM6lG X`3)8LEN=ش;8w|Kiй,{ 8>5l6$0bqʏyX:TӘ`^L)АeA,"p3!)X\љ??GP9}(&a:⻬aa X`BM* 9^㯛 &ziq_be]ܑ}Z{Eq*`!Bp(h|8KL?s0n&q,\@ J,0c .v%Ӥ,D~mb1˟hbԠCR b!&ŶĂm DC5b Z"mUd^O@ ăf,0cP.@uRM2L7N,`B,zdnŸXL3b1AW&N,XhmT.d⣝IB@ 13?88wmX܁{d_ bVP5m2gSyw1M,TH,@ C,0cڸxkdG%:d,2gܖV0\3oͼ1`0I'ias9  @ TF$lIlcU%[խ{p%atGX  Bau6:PZftrz5ӆ]Biΰ&gpY|d}7ʡ 6\oZ_pt aP@ OZ6{y3i{'y1GQ 5x1RW ܰ@ ̥LX9~P՟TǭļegT0wX cQ"펄E8oc3aq]*; d,r﫰xrXℲl绪}޳K\8i+H%¢ jHkJx pw d,xB |sXZ",%hnWnCX k ,BX cDXT g`|E\SXT?Ey/AXNX cZGE[Mh8o{1vU\:S>Z(ʓrI$ mYe%,l9a6#}P0>dՄ#iVff?aQFj;mgTNXg࿖HUE6>+ġݬo| \^-9̊E;\]X cʥ6Ъ}Ȫ(DJUG~!ò~:ǬxɊa='V78Z.e&8 EAbXǢYԆ-a'" ~;[qί(ђOXzpc.NnTCϠ埀3-[ƙ'}_ȁ⭊gs({Q( 2kjE3Rh1jĴLR[MIǚR֌,o)ṠKc>,y.Yg)W 2fxlĐ"%R_&D]4)ڣhe~b̝ʬqY}Յ2X*fpCՅ[囵bD"JC5fד[*тw|Fr9#2^m5 %So[5e8ajNS;d #=?-ҮmXhaAvAÞJv]8ln=DwUiy3mB#1amBTf`#b&[ec5F{h,E*IaR;a6y,mk]g|!gU4a[$S Gt/)?ZXI\a'}rݑxȃXelQ{AKZ-9 E;\]XܧE1­-`a?~,O=e!3F Ѽ1K4 ql7>o_? \mF?х{A.aFa//\1^o;g6K7~EUFxm>W؋eB[X,c;JR2*5A깢1i^pd{T2nfsK9X4E[\߸hQrMXЅ~:[XbrEn,=/{ƒ0ܑF0-sdpx68q0\D(A&Bba]]]mn&u68-ԩS 2y/X{ Yқen }f+v^1DԽʠY[lj$SI'9H|UC,OӋowH5%P '~7QGf#H9޵iӦ- XX {,/ _?1X(⯌+TD4k2XܻG3,e3~V;ɟuۑkE IDAT>*(s7^@-_fĿZ2 i} {tR?4 7MԤa|DeRR2VlY[ۿBn+K_3{}K{}`!6}a!l]Y:Ðf P) /g:"I/)ؠRE6d#pŊ(XS?u/ AgL40ɘ2$B^W4# -)X,r(bt(B!0$HvF-2X41R]6mX/:cM˘bHbXfTag9֘A6Xly 3`+7X&2dMT+d,kٵ-XxdN] A 38d k}>40[F /gzELa g7rXٝ6 cQا+y옫V DQq?r*fn3eG4v,w p(E#FjrkӦM[@ Ц )m- dטLc[`qNs&":.9YH#|1C-i =p`X*f ,< 1D0Zpj%խ%.gX1n¶"X|g `qJ`,lEa"!?jxۑ#w2hvU{ ,P3 uIHK[КحX@#H9޵iӦ- X茅Xhff\Vk ,3d{f⥠VnS\; /_KUn-E^»Sm`(莑m;#9& 2bhɇX 3,\1dSPZv%1yf^x-! {UesW4*$W1.,֭5 FS!@[ڴi,tBg,iG7=ȴ5_ZDŽm>l,*H-[yXgva?Ƈ *DLBEvn v ϶cn.}ߌF1ϫBvXHμb$Gk[ 4In✊bWcHىXt`QvHC@`AѺf0@X41r]6mX茅6mqHJX`;QbEvs3 ƒeX um+`V ,z 9q02HnC,6K=>40?y7`!H}w G%u ᅮV0!EJ#w_Ř[&GQ  lpwCX[+E&F"xצM`3:c7ʆ u6id7 :=o N4jF,MB]&lrnl%YXx`52D%crP \ew`50?+9NBckV|8^`Iw*'{`J)= 5TH=U͞]ql{ͷ"$3MJż=/WZnXٙO))K`>/,r[:56Wa82Jz{AӆM r,)x0fF)Q>,Jxkgj^؛֞\D,͎EM6mBg,tBOoϲ! sIY%Vb9.Adu_ͳ+'HƜO[5O`_ejfhC' I7;Z |W(TR[/&݋N3<.o=o ,ʤe\g 1wk,$Xə(r<U{lu >lBd@fT+B̑G2xKW48U:`zd=ODh#_=ïC"SEV%owY 5d酧^-,/51RJMVBg,tB@nyc& H/^Eϐ\#ٺx=䩎^vo#<}7 83: |&^K#('0XDMW?o-0?+96`̄l+FՃ]+&ĉ]A[_Zꤹ4jCS9{$ |{`уx-0XɰXc%g,7]$LjaV 7.cϹb›)si#4_af6(HAoRr8mhB!4llnsM`@`(D@Ly0U}o6V!jv:?N)q]łmǍYFQܤRXtGEm3 ծӳT71"@ 0=`cƩx1ϭQZy`\eOͿ\Q,12I|{s(yGwmmukPΊk㚟5*l@.;&̀:Of`8j\aD/CԐXU^<4g]{Uc')haz<ԣ?k7[XV2Xٹ9f{לx精m[&>X2_B`I'Jc{P15 ֗*zY\~ 2X (s8{RάY,"<);8acW4գdvEV_>!nmYrL'\vuo zq|:jT?uxxoo((G۲CE{@\SNw9GK%䠿s]uQy1:-u].ֳT79"=eЀX ce㮂Mϥ#6M#D5U~2X8y驇ũ=k7Fn{o~bֺ+X c$I mĽ5EPX:bp1bE-nXy:%rĨU,"V_و~Q,dʂUլPQDJ^\qAߛxfrwz((b.֝/Rqi4_FXj(Jǝ1~ k\,bi m.wjݨN9 8%Z%tQݿr,~R*/7a1F~!oz\>p?^>NmK hcEzF}1u2X8Y%~\ y,AI:$=47,bA4ZZK;-$m;%ih[ Nhw2}R::^h,Jpɭo2eږ~QfK_^GA@ '=DSFe)m+S7B$Y} ב3"y7 2B)R>G]/&e̱3Ez#v~gt@L+~ d,pI*Ef?P6@_U, Z51ʨn-3=v*yG=B#1;Z9QRAwwrڽRe @ B >@YT#qhAye`Ft!| +bMk!v۽Ow+VU}m}mKE|HXh3'.?^:2-fB7 熮"/4WӪP_ݒh3WC,Pv&Ăw] .X cqAQ.ehA,.X cEgia˖XXP"cq/fY(\Chq~!> D|b庑v_ΌUX,⚑PX&"cWD,\S+1+!ʧxCbK%!ш EX\DjB8DSIyA,=0;tXX-,б|GRm=!"zPo۱ئWp z  Xׇ=cQ$¢r9^"  …EX4+̱XzŚ|EȱpSoXDXmXX8bMy ،craQcaQE,o9\Ǣ!XlEX", :Xln0;۷ۺXBy`av,\bӦJNK3joV/kρؿs,x{N WWTpcQbQWB(@XxXՎE  w,֙"Xk ,9_4 u$,p,J ,4E PamNcP6ҎgڱؖMXغ2X|958+鎅 ZpYLO؈c2aJc9;a" 88+c9e,, ؘѱަkO,Xm_Xl!v -P[k&,kbnXXccbWXxB ,V",bKM,&7?^XX7 5.,b,pY5  WXi,T7EرhY5 iBn(,‰,BB5 zSH O3QǢ`EX ,>M.aAXSoz{X!, ~}i4'N-IdA(@Xi,"E ufazKd,k ,n͞ ,֕GTXFY44ڲk|P^߼~0@N=;ؑvZjkX 4xCkWpEa ,"Bsp,JCsICђ3h+Kq(=uXVg8|E}>$zʿcEn'JP4Y;_u"z#%cd;>LN6~+l]u~S)J탫brϒ|zzl~WyX7sCd48c%<K"Oyǡ5*ݚ&*VXxK,ji,2 OPXlXB!,Q#+Q){vS+RЪ߽hWTFo/K|_|ފLw5%{3E&C^8d}t0T{nw.fdިwQdˣoU+,̛BņkM]]n ۼ-T]]95L'?S'E^\1JIb=i%TAI,ǔ49:18lMKY/^?>%{3S"JĢHDUf{(r 餪EɎ)ɶ5*ݚr(#2m [єoU YX|;|aimPmm_^-s܉<9E<{1%.}fNS7kjԨQě3ӎfMHV[oMQSku=o9UUUޝ9 cjNs5*K'2-}89wkVb3ؼgYENRgzc#EIq IDAT^q!҅/t?̇|Z,}^0?%Z0*BCE>^L[P3Gz"2Dw v] KuS-g JY,_Eη,hBXm.O&Fg떎ט[pLFidޒk=c8{A?:veͫjY]VuNuVjYwYw:kFiSkC >#.SmejׯkiZ ۇl%icaj`Ny$bCwŘt`V erhzfߋ66_¶ҷhUczZp{_R (DvR^,`=ŴrV@(erdLs7v?rC9RO;״Jj &H$-0dW_fe%Bj}IB"1ckrSx{x5);lI<v6?'qpC nnjǃѭ9888\aEB):w;liaD  3B$ w4kVggcߒ?Q0Sчa@D0().^,V=S\˻[?G;\''dWAse+2n$'̇>6ţ9!.w?TUpt Lf P+zsYaM0:b'Dt5bv͜6?0Ge261>ނbQ%/5+\>%=XJސA>p0+ WKd\* y65떩GKN {LiTZ6E_+i]oiIOeAe4?,G-ÛӲw:W5 ,(ŢTQōK+,nW,T; ];IuK nଘ7c(+6otU`XlWcF<𾚈)~eȜ&żL6T1.qQEַ^N7E_+iocFZBAFJŸ(a4Qx[sppp}nQpWQXe~B3zopP-H$$Wy4a#\-ED\`nA$#>~!~^Ja~ Q~Z nE_x牂;ҐCuK ҢsC׮/.k11&M=se%cX]eD섈12WE-5ssfή" vTehO֚cElXt[—채-}6iI$#/:"ƄՇ?gmVȄH]8\KqJlV 5+ ,B}UQm(ԕ_QoJXeT; "piF׻=Hw^!T+x/ x")U5{4[,#XwDԋ^lUIж#-C[{?:Ǭ]diMw> eːMVTZ*b'D̎{Uk5hڜ OV"9ţpZx{wtȏ8TtgZQ)qKojI3 z:U*}tj)R0PtաN2PM{C0"[sppp],"}uQE^naAf͖NpGzT\H*3#~UW X2TN kQ?N$tǩ3W$͞fyV'7uAE,_.ffx01]7nj&{j"O 1idMQ4 ÒGy%vNݠiwDFG4{1V+>QsLZ5vHVtͣ`7gTy)HiC=@Rn"|-"ӌ}}=*F[hKB4ƨ,b &է:fѭ9888\~aqFEgVf(8kBX<ެUXp; 2ϘTFoZ{?9Ne)Fh @$>4`C=#{ m $ 9l{_(~CuC#Ykmr%w$$ҹ[:< #5/,tE(fo aq#NX(Mw>FX{,p^(Hv?eLƸ-g4,k-q/)<yT&s\T$ E3E~9}aR{~TFslwbz75nĹs֗ 5> yaOZQ7HIpQs0ը%}ٚ")&'O[aIȚٗ>~JXx~ESEϛݠ:Aޚ껭ŏ1{KX|wd/,e~P$ w423wRC\Y߻Lɫy82;)|HNWfC/]*^ E{H9}{ƉeF 'yuGL"61Ֆl2nI' #i:m؉]ͼ (*=8h0|O 5AKӇPuUY%^JGΜXOV IkSOO\x} mN8-j}rv,`&D3I>Ztxu{kW@X],t{<+w;ڬ),$TeX_h8\+<]e8yu $bTG"sk)_[i[N+&O Z Cx5߉=w*8JW{lrZ?1cɥ%{CFVVXĵ2:Ǫ* 's5(xd~ݷjDBu^Иa'l߮e8*còQ*>(+X2q S}VA{Xy%cbØoR` ʠn_@CMXGXlBibP-$ ?xt3kxEO-zb*UaGY= (RE/77/OCD|"PP7Jm zErw 5{ye iSE7Ƽ,VB&mck7Ww U5>>6Yx(/o۫fk}kloG# Q\um}AŘDJ帓V^ JU[z'toPi- y^07 sD)s>iͤpgK 9ł7fSn",.,>*EtO\xEcH-AHcP<% (rYoK&٣.-,@wa^U e c,9N@V8j.xxEa1|S{ڙ]x E@}R_S6`N#p;ަʰ|\ o)ghU$3\cPjN(DtïG+glrݧ}N*>/vn[[ߑesQ% \?)Tkvz|_*R_X8 ybk O Q1&{}wbGoeC^zfIp_c$\&/4*"t#B_¸n㺁yHڻ}o YDSїˢ֊OءMssD,z5?~P>|ke!]RQSHY~Ws J*^u 7Vj.>>I2no+B7>| n=Rۅs"un@zU5>l+'Lǯ -ݙ6"'Lf+yɣ.dx!DkKLkG]ԿD5'Eo܏%~֙7B(UN=>snvybK7;{w*u҆ {,ů"aI* "{{,٭hPģ4g.꽦DAcy'oe/oJq*m=K; DoGKZNRTXd /Cʩa}bH;j\42zOb._lؓuʠ܅x1iooо1 j;Zpiqݷ,6cۚ}EwŷX LֱZ.d]s|4A}O}USoX̴[ķyMͲ͏e~Hܓg9kSL" -4rO)/,)b/CXlM=a^[(dABDt _īo;8) q5klG1 ʚ+iU +2M$Wh c2aF dY5),ֵXH`Dk,lgB,uI #k9]tN "_!JX a[,PK9a!LەBNRdsהB,BOZY !-Ϊąp?bXCM8R"z+ +rXC,9*~+> w;6/aʚm4JWP2g,PB\hY ESc/{[uQAR(I!+P ʣ*$~7>\s_-g` OW*Y|ZWP!T e% j ).T,~zpVo)f1T/Y V->narID"f*o%VZQrEWB(,J ½.β]5اX, YԷPm%^pªf 7CE+jPbZ,J8 :n?PF,P,٣[r|ɹXd,YE-jbroC )TX&\a"yŽ8aNXܚ#gfKCE e,ʼnmꭆjT7k@43EŔ iXtrEX%',d% h'a%[(7=%d1EJai ,~meY ,5f}HRs3F( ~"n^B+/O,[tb- o)z~&jfᣅڅf ċ%~H,ꇧ;Ɗne#Ls,IDATݎnחP7ּjbf!jBnY ,tG Y7v$/OY䕳EhEZhtfbQ?<+VQOWxEeBNXت:aq~+vB]X\\)J,Ys(ZlqՊ.6 %c3؄*be"jńF,XBg%Yc( %cY(ѢT^1+}Vk Y{ExBYm^BXB nYm UY92hѨE[y}XůO 1?VdxW̦}PW 3x 'PabqVCd,kYԃ5Zբtziv1˼SIm*jhkWL}.X,JѮfbjPd;Oe54 Zhrz`W} iU++yȽ.XPE3bqb1Z8B(Yt,j,f1ZL~Q~RV.Ql.g *V\z}+"%he&B6C1,fѢũ g/gCpBuԊ+\x.>+d1x vʘ4 (nT 6ݫ z6UZ+2`>Z,.U,[\Xx=r=*7)Ztv9brc~8Xʭ$X\kWB]X7~5,cNE*jHb+j+n zEgլQ8tfMx 5z wYha"^|a5j_Y*~ي\+j0_1j, sQ/Y1db!,YhqFT-.Z{F**4VZ+;sH^nh b1H≜n-,ZjɅŢaaNNJR+,Wt+;'WP6h1kwn(uªE[yE/_`p)>bR*T,NBˠt]+fB5bdC5c篡r(-ʨU -]zc>lB]DUȭj:]렞N" XPkaEV qv.Y b,tZ@bx;vOP5 W*XZ1VX^1`wwa-e8yªE-|v 9 S,9UV"׊++cťx5tB#m-V um.z/w[!ʼn+VtE+iY5{X⊉ŒY_C5ŽZln f$"T{W V$W AyE+ubb} 5N*&Y4F-rlQt*]߱VcE6\*(F"ڳX[|yd3 Y̢ZHHvqrŌY{ '.Tjfነ+3JW _.޷XV.55T];)[na[hC"/<Z,Nw4T$VbE+0_1U! ,d3ThE娅-r &KtKYƊR+2+tnj!nXM,(,l[GmDZ-E 6j5 M/D+r(6cnn[G!Pe5Th,d=TVZ-$[$m.^;CNXTQ@jEp"*B.XBXl,BPU-By..~1;~5Uݍ8(vd J"AIXM ݙ\Go0m_ZX]qX¾V[<-j!^[<(-V]'DDDDt O"cV8sr+mEr{NYD,PgZBrX|ADDDDC'N!ec^+sr *z_늎WEe6''o0}(""""v!tB+Z|^A ]yaq=X]꓅?Z\V 5[|Z. #ŔLeHk;W"8y?Yx/uiQ F/A_ADDDD}'Hfߕ] Bۮ0X>X zg7Pbfu oh+{ْ)TlB| jym\mhuPX3 Ye-jaf /g/DDDDDg+zPk+> Vﶳ򁅽uXxy*4TB-[,C….ϵhf&L.Oi]!+5\"^Ex[di  """n890;Y*+>+]QudXDgEYBbY-l!z]@ """"NFSBEbBEWX4\1,JŝwJljB_ҶEċ/DDDDD;XΐAOJԅj5+,:> /,%oLipi!oDy?a]!q(}2E0cEƊ4WLpEß",?CE-\ZQ /~r9W1vERB_*B>g,h݇2Pкx7"4T5ATaEv J5Wlm`Q}' ;E--V]VBEg62TźUxsvmd!6Z$[H\Ξ @aH!QTQgEm(ME, u*-$-2[X\\tb4g5eϢ"VT k" %pkYTF./ېBNgT8X^q`1,DwZ䶸bEFADDDDDs6*VS#bfbBB"B """}aBPqVE+ +b▰E}E҅G6h?5*WE,4-r[q2斈QU!Y {`iʢ-Zy? """"ztd8 P-.2^DDDDD!BB"PE̊WWLEd Ub /f1݃)$*BUbV`ˢDV0vGDPUQcEEfad%Z8h1 Q"EaE>.u """"ZS]qXlEBE9h$Pd(ª╲ G]p ADDDD7C#(rSq/+jxŰME-m?h1"c]-x-ӢeE }ADDDD41(8hEl"ׅc Ov;lF[ XDDDD,ͮCyp" """"(rRxpUqT,-C5"E16?""""tcq+*^-fX%iADDDDtVb-<[(h+DY)"UjV """""`q-Zu[>]Y:qT׹0Ay,;XqX01#j=QHƨPҶ(E/#VY *BX aƎI* uQ6%,BX EhKMu5EgV @*BX ,"Xd`Ksaa!,@XjNkA!,@X  a1-2kb<'+aa!,@X aa!,2 *BXBX , a aBX ,:8  a@X , , a@X@X , aa@X , @FIENDB`mkdocs-material-9.6.4/docs/assets/screenshots/navigation-tabs-collapsed.png000066400000000000000000006261371475306445600271750ustar00rootroot00000000000000PNG  IHDR XlXPLTEGpLGGG333?R/Qddd3?7Gb|?RЁ:HDeP\zìʸqӥDSZ_j]ΕUcjvCQe~oxKwʦ4ymhZԕ"ٮ(ʊIklZ_+ tUh UVo7e^HTbēpME-FY?H&>`9E̋t[,F芲GE(F; [VoЈE . bpY+*"UeI/*"7(܃ʊ@UĚb”zfF.mQ˸ 5AWij"PP#HE4-F,FAՎ+YѯXSLUTx[tbТ،GE")DmH"/qQfqLVg&$.XiB#REaZ,ff1h+" #E0-ʢ|b(vEQV"#w$n[ѴRͅEIWTdE*I!h5Fym(bЂE+oA37E'`@hsPZtCQhHWYUě"9M5G/u[Ӣ3(X,"UщPR{8E0.cDZ-Z {f]QH&őG2ui()7e`X$e+YѫXRZKX^D"xYZM1 d~U*zMFPb-CbҶTdm;{Ê E`p[E`ϢV+Ǜ?s'4Oh7,]W8*܆݆j),tEx\G>ZSE+zנ+tE:T, u>heqlFW (ͧpZ78iX+ ,he񺵰\a}y,f ]48??w e1X ,ʺr5e1ldq5?Ou4|?-Bס.â+ۭnsCdY<,j"`ѹ՛WlԆ68ކ,^Oف`Q;GEY6,j,Bv;a5anC Yh-,]q_q0. (wXӞEݚlaQr+vߺBX@MX|+ݐ靳o߃+ԅEjf,Z ӼrO3m,,NLW|ˊKa5aqyy0E,auTWs4ܻQ"taQk߻BX@MX*nYTY4EP]!,*,zecfy5T~dVX#]qh@|YL)b3ƛfm+.~vU.,p*Z eq-kUǮxOTsЬ?S5EŰxOW$Q(@7S%B; 5PCE}!T5},fm,f`Q&j* xBy L"K\Y.bbyJJ7BUU_a,B,PP,d_Hv|S故YXn2UC_ݴriB͉EOm[~iO?,]srU޻,g PB n}nS٪P0TaE+Ϋ[jp3t,vY,̅wba!Ru,B: UV5V%BZao(/JsEWNE-me¶bdbqJ.,P,W,`.: A6W_SQ2W5?f2`n/jΒ6faXfVcRiݖwXX z@BB[pV]ɑB*?E8foU waQ^5 ,PPMEbB/, S&"[UP拡F,'E1`oa< TY8B 9X\Xb5UX,c~Eƛ,'fN  ˜Br,T|BrŔo>,bAXYLi4d]3H XAB,f" mg1X4\6+(,eaAE# ,gl)XwBBEZXHWB+,֫bqWXJCEy1TUYBVbJ0 5-n',: $X,9eaqV b: 5(rEVX,`),buꊖ,b λf Uev첰3Xy v~#" ) ߳Pc"Xyml(E8$:aQĊ ,mS!gb PKK,\ B\e}Y ׈BkXXx5=Ceu0B$X[,`< (,z7xEʢ^g;  "Xj(,x5K4X8* P#ۦ;  ygWYLޞ] q,XEW-,@HXR,\a Re1.U I(at;m,ʓP Xa'NYוE5q*`ѪG,* YavUX,`!MY) Y*XCqBZbQ&osVYh,!Q#ˆVX,G_q:wָdbXWPo7Y`QXE1bX/Z&XָTbykSݾ-.ߖ,wHsumB\b =% [^C׳dq~sNe`,BXe ռ"`ѼOb!XdbW@bh,f,+F,{F,;V@HX6 6dގ#X| ybM]-,,@‚\Y(˷ה! %X|s~Ŵ8lF,;VVnj Xn,MPQj,H=b.XwB, ,*OehϷs>jYo}"; +{כ,`q,l1`F,:]YaA,p_:H'IW&/?ɾ/˟7?y(`! eNoG,Z`nWkgjĂ` XR_EyxΡ`,!%EB6VLb9X8G,.scqmԃ/,޻`,!Mא+XG,Z`QnOK#^y'@3{?R@c8Jߝ`aB E! izZi}-yE^L:]mcaA,pNg_G_wyYK~OxGriȢ1dyݖG,nW#s,0`Wr/߄Ňtɇã~W7O_po~|_>fmA[~~(C/x߿x?A?g神pi˗g;w޶,c^]Mmv&f n?;? TdA IA b w6f1'_"e)b;gؔt!5 y~ι*>j212ɾW$Ylm!Yat'kgP͞+_lm 8..>ţmX|~(bQnB78<[͙ &L' >FT? d34Av ɕ POr"hĞ T/B g:ņ!gS򩙶3%XlC6盻%0ε9{+=$&?Cr ::Tɢe9Jx"4FXT(6ߦE+,Rde_gm,Bm^bcYb!Br`lt)`!L0a_,ndn{"f`Q)(Qh6 ܕ$Dc'k(*w5M HQː~* NwtCjFs'`sHşC'3LE脯AjQ yp{3P=\f`.BCTICX[[ F`[{cӯJŁ`qQ UY<œ߷EkSS(l B( ;ST4X&Lؗ]Wi݉]E+@>,4 eIOI2zX 5SE33q0 U-b- Q"V Y)9ڕ*9Y ?)ʧౙ,,FaPu(♀_Xt7U,J,]d(, &싁j6 @ޖ'EJ~mZکX$=;`A$p`aT4~7OzTI.I |j!n& $)CI:].>`RqG8X \Ed(ibA4 X E"j[e[ ߶u}]6ZbQi uqVxAڒ44X&LؗBò=X]3 ![Jn ~X `F"ՓS}7(7X?H5, ebs ^ \OlwJ,[>B :3n(p{wѺE-?~߾ 6řEK2N1i ̖@ˎY v`Qz{Y;X\ݏJ<8r8G(: f9C>$(.ꢜ?qX8J(G`V]`!sȀU[+kAENz`l)TGřda7?Sǯנa<]{O"(L,z$*L?p ,HAVNJ(V|bAIP9X fMz(R,Pf"Lj47HƸ˔&|l j \wT } X ,}EoʶP-f_=[1xS(M`q`a`hMs`7%Gn2|\r 5dy0\3b\r9=$mV0a_7X',hfԑܟN.|8rɓ,x`$x}(OާX !?, ZEyԩXd.֦C$9hW,䂮DVSF~ BسH:,Em:g?,ڻf GgHفWѨ.xbm$g]k잲}bHuw$eIˑ/nV„7XKt<k,p0qt}w*`A+ q֒1S@+ Hx@bvSa"݊0oSE+_ݛ% =a%kK:XE B`A5|'WBmz٧nBTLxwԓJ'?d_g/,L!LDzCw"BHO e y K$>V B t:X,׏ۋɟ2:XH-`!ayol1u7u^0a¾& ьo uxSf x$`pغ ,m"EЩ|&CXy[5d`! QH0a ,B4+)\hC3B%= K)DZub}4ˌ Ԧxʐ;Z8$?{-KWxP| Xش5vU89X`) %}.-I/=0&kْ*xPكI{ ^1;+ *Bnyu*^AI S|cH\I9m.|8fyrMޒۯV~dY^D.w~„ - GE&Xw3B!WMT%mSbVOYq8I C 2L0dj ^Z{al!2v^B]1{$q}KV]]UOsΟmKmi`[O s4(ba*E(zƂя?K#SS,. ph+ٴOP|GC~#)^"{` wJ%9h^ c,U{iDkįPx|DL p'nKE_f1 6J~Ë ŠebE,6 j+{Nz%VS^Z,Ro  Z)%۝ZXk'L:әV|UVK̡ITDic6Gn*FJx{G[<# PB= m nCxLK؞yI,lX fz$rY+:Igs5 76 ̃G4fA0޵\2gL/[58 Ӄ{ a`<6Wo:=vUrEy@ ʹ`5:??-`Y\̽%%'_.C@yvZҳ#dk݅TC92z"%n[Xm2X|XhMb!}1JMbqy`A~4v,@r @14}&a׀bϖ,%}.W)0P5X6Q_R\&Q/" Wa! eR-" 73Г{Yb U,! R3 +( āH&$։X&E=0XnUWn9XbQiP{ QS0]M v ,x( =Ti-{UDZ31@)Ti_E-,-uGθg ݬ. 3ZEKJZZm-y(P5pD тEm,kamXR0>* -#, n.CW,~`?Fb~;XhO,dS(kYb;T,xfn2"l{laSEk Xw'"`\px RPgT\zjHRX )hd@=e3K k T` kA,i( 2vM , _|K% +P70,`>S1~z`,e~FO,IE") }Ԓt]1>'qXV,Dtg%q&`Ə)%XӦPgޢ=u_ZL+  ,>a=c``4FKUjWPDM.n !X؛B aAA0cCcCZ]zXv Ev[(Bo?X$P2Jx%,J=2yֲfN5C9s,7UxH*`qweE8c3 ![I`QvjJbd$`q(`aQybT(6j8lXuXl˥(шq>   &_)9m^ʰ~`yXHbn % Dv2/X-t[_4Y pbٰuH)W|nW,T14v,Ɔq,G`Q40wAFDS`q`qdi.V4*2kFOT,n06C+UȞ`#EX䵅RBw`/`$X4X`P%Y ,hy0 #h)a'Abq%^c,X|BYcAG.r;J}T,ʄZfXP 0ˬE#\'١lKb, GvvR`=PxvNX Rl T,t< _Pm),bb񷤍oPwL+X2QV i ]b!XdxO!B^`u [bH 0dYtCB6QT=-"Vc WVX`*Px\HaDHW4.=KT{8j]9Zc_' Tx0s4~3T"j`1Vt3ea9,*iy(, ]OR]\t>ʴQ|,=~@v+ScY5HUVb# +82B9yZ-QxtHrDIvbV'+`#/gHO,b"V,ŏ g_e{Mȳ@"#aL`}! 6>+ a  "*l'[)`!0)`~eDbཡfsK7)k x{J/h Sp  Z5zv"pƯ4 BYSaq[l zF/PxlHɃW>{ܡw[vk[q᭄w_o݆;ULݹnz**YgowWUB±Nu؟B",pjm~p&Ybb .:Z c*ڹz=:=&B1Psu946r.ZgPb<ѽ<ժ K pє68zrG=Vclz68|Y @bMS7~ P=s&0A:@6iɈ͇\\rY $גlImbQVrf>g^Q,HF;6|z*E4i7%vZS}[<龱  %S#鲷̛rWĂ0mI< G,*Ӱ_/Ytx}aK?ly/W|˵0͍(}[L,:۷/^B1 ty}]6 #$5{Ƀ\5AeE7=x&ybSg GFFHv fYJUJoKǶX3M, B'PR,>A^7\!I1iXs1;VLOW:=&ZgfBFiEGdR/̶p5sʽ`Xi6yX2)bx8M,R,ԊEcmH,bX.T+Xߡ Su5UkO;ĂW be >9Y ڽ8 2yۍٱ?ƮV(Yb`߼Mؤ\jQL,ڽ;_2.8~$S4aQ|KZ^;E,,XE|28XvJ/d}0bѹ䳨۷CbbŇ^/άQ4h4 2mS֟'ڌC4 f.p)OꔲzrX$=RkpSf}*A~V_z[œbbxĢI-ҕ|3.j|=AiqI!Yщ/TbX&),f4bYdǥ2VJ*ݭktSfdy{}}Ux{s{%SW͛sR`bg>,WBE"#,"L,e"mɕ($GH "h+4 hE0sCB Ҏ pm٘X,XYx}:E^w <᱉Ųub1EiF^1K'q~ ]Vˏ>[lr۳јXhлph숪~NiFEU,vX8Ҳ9&ybiCbX2GH,*jAۆMZ..dʦg/^z͉ [21?Zg0łez)EXH"RO=ZUf?Xf1[ba, S“P @c]1=۵ !rri;i`}b,E]R?ѨřЊ-3 ߈leuϱt㔫N,`Eb {-Y̖ڹb¥}&o/U,&d6" ד3OG Nr*qHGl?JK,BXTKooXB-&bQ(EZL]9N˲? &V&,,fK\2+8EauY亟otER1k~^{C2d]J-w,X44{4Ʒx6K,B)bxͅ ĢtWlV+`B?[~O,^ c]CI}P&tۢoPaUM$ΆBYr%"Wa-XU^xrĂH,@,΋0$b:ꍋ'&0㬢YQ&S/j%[HZ1/"5v'lN,M,lX&>  bbXWgId$) #\$X䉅,dtb',t`QE._,0oY|'4'BXbjffPF3S!UL-\1t"ѓCB-&N%`G4FSEarrƢCc1%j"2r4R.qXth,Fl1h"J@5ZD٢*<E/Ep`-B8( r4wi,:4#]!Z *d+F4ӧGlMxwu>Xhe.`9+z{5(ZlEl GTbE_ƢCcE" |4{Tїi,:4==8[h#0sOƢCc٢/r8gE6S;> IDAT 㡳ƢCcdu=;0xXth,2UY%jgEƢ;C<7/{b7Uıq+`qGǏwTE ƢƳ^)bE8Z|,ر(XtJ%8Z4e6cja7¢+zc*8W`qWXk,RgGi,~,4 H,4 H,4 H,4 H,4 H,4 H,4 H,4 H,4 H,4 H,4 H,4 H,4 H,4 H,4 H,4 H,4 H,4 H,4 H,4 H,4 H,4 H,4 H,4 H,4 H,4 xG\K:+n/d rXh,+ !O6s(_{!эFaǏ?&N5\.o\pGBch*N>>#v%w s/$7QXr 쯯5X}p+ b W6??e9z"M`~xoooO|?b!\W ?],Xtk5Xswt0[P`Xoxɺe햭Dbx:YP?"j2ŏ 6v>0]-`1^Izw>Xh,4- sٙtز`(X`Л `; 6\εl`i{n[ʞG|4m?:k]06Xdr#,47?ܜ....: }~RI=T*aVw8ʝ;Oҫgm\ogX,:i., pލ駕`q{`ѰoP<0dąʧ \|-c|4tV.þ~Ga\Rzik#aw饻sx5Jt>\\Z`XmcͳV;sa. otzvuz {ٽO[RyB}gzReOluV'/z\4:pp@qzgM?θ4:Hf ~|V]R.RlW9A=*Bch9_l"-|Lͼ Ư{m ]k_m|X{5Nva8-^{q=~6 'ӵܪ=Gvy.55\V[^0 >^ǝru`QTw_Ɲ쳵O.u+X.Xx i?{f; ov~w.>WETS?'_+kutщ6>n2l%:qP`А $pw[16KXH$E,,H^x_;G*(XVL:X`N_%?0 <2S d5V2 4g$c"xXB,_m`W9 8+D"H XP_9 =667E^Tz ^خ`,}N,i]fDusɍ/u ,04p0lqpՠXdrl6w׀{_XH$" |`W|Jp<69`aL[)*aEL,y;CuTJ`a<تʞؼ$X`6~%Cz卺_"M~#Ezl`߬߅b,h,h,{*[_W9 ~ 44`h0Lu44@Ƃ:XXX]   `AcAct,h,h,u44@Ƃ:XXX]   `AcAct,h,h,l`f͢&!#>q^Ғ\ͺ1XXXx$ BT/O7Fy+'WϜ?"Ӟ}*oNƂƢzQhf`1\?V t#xYܗĻVi)C)XXXIde0u02x Xs"h() Fֻ*Cs1XXX+{h$']a,e^f'ejؖrx,XXX:tz ˝>74ۋ}MS.SymT?,Z;/kS,Hnjx˶O'R{}xw\+4XXX* =pY;tv5C{YQtX}vzRDϹJ9!2҄ RB}ߎfbycьilxm O1~ڒٱylݢ(| /=OIOJ:˦T<RSy)q{G|6;blVfdjub1R6lvE=ԟ/-Ʋ=;9򛂅Ȝ,%>bK_2>55ܶPcUх[qo(W' "f2"v|CKIS-Y{!B|coKnyjhM%+,C|YWRNYс{)Z[/OKz Y9؞3Iy50!c:Gh=X1vvUֵoEDa,ISS8M!t0U޸®B/M-"\1M 6Ś}xYs_jG[yDLue=\y,nԗ4z܆%oMKH)?Ge~DnJZS<,{vTT1NUkMʤZѧƂƢũSK4ڃi5y# :͸:LEϝm K>1W{h\Y6XJ(DOu8k&(7lIP}jn+Gf$/4xmD`՟?BZRh`q)sUZѧƂ9¹{]\+Ú`+ܻVmsƅ H1WyaDpq]=BaaK[QnwRFQxd)bS-J`ђ Fn#8yOE>3X|wn?2u`E\e!2;ʮ7lc5 OZu=XwϤև~ KsNUcǃEHgh< sKݮ,@cAcet"R,侖Ş3OE7Xoh=UaBtrP  c4U9>4ܻSz2XA`;H&zRɆ`  /#fWÉt{DnžRCcz:Xxbƽ,Tվ0mTC>p\Pm!u뿆`ao72 >E>#K gz󤤶bY"!7{ާBӷ@ՆGb{{ܿS^7 -ąb-# ,0+(KQKu;'9IHӴťw){fm&96G{kŏ"*X8 [Eig +]Cŕ2f6`jdY(]ƕ=h.zcc,j"r>Y,btXW  $vfYkS2>ͱbq1hLՔO,TViѼA}63?XZ"Eh 8DMzK,i,,f/ f6E$^cX!8qIg9 $H,\9'Js67$lZoM7k*&'Mj/GRZ}XTױpbV3Hnʍ k74mm$ > ǕXN IDAT5հaY PXE ,4WBɇqeEж)w XP0,^v{Xy,bDhۙ8QЕ>~Bo? {NN^V2A85,MA8Q )=G_y;@W\!ZhmIU׫Xr]}Q>%$e}C&&WoHWFXyk),$Z~酢ʲ)2ךrVޛ4VކX$H,w O̧d 7{vPRQ"A7W<秎_>osw, (45[526Ģz_j0n,}8ƢW-Tw^ƧSA{I*JR_I:}(. v+ɀ&(}aE nQ:L`5L~ bL@bkG_͖|0MA,Xv~[ 6Xت A,؅qMsIOFK}ޔku%Ee$byGpZt| n|3kƇS26\P]# VJH_k݇FTQzmbzr"Iw!BmFߋJX @bLU{o ܭ:*WkK'ܾֆ<ݽRxN[X bkUwt}C^~hVW0Vy\\v- [n+hP!H,X_7yU("c? Pl@bĢslwd/U("Xۛ b} qPDXwE $H,i=~H:X],X (>hQPD_<b $H,8X @b TxV /(@bƾlHY,rfŬb !H,Xؾ$m,H+%m wȢ1 $H,`쉴:%=/a^Ѣ ~}@) $b+][r jZ/zo(Q,X Y,Ş|rOid  =܉ $\fJK7K'$*QO]S24r Fp rYOVyR;'ا*ʮӰ@{ Q,X Xfm+]F~ڛ<ƎfFU*GHwE#Qb $d;X2VʳMc$vv\/iVس轪!; Uo˾C,<\'b1 Kgp  e yi_JJ2j:G:K:J^K~}z7_w~xO)C6G@(866,L87 Խ{$.JB!ml(&zx"(ﲊ}|CL4b ]]D.9X?U;HA4̏s(Yݏ9 ΘX @bIX6pe&zXEv{J=IIK-xfe`o?2UB'nGn($jc,"riC,5@b uizt ]=Ms9'Szd̠Mfd ,Dl}Xw^b׍vĄ_l#8X-Y'-Ypu- gM,X Bb=1"buG{Q^}5|fΉV~ҫ7)6]$nN18~Kφ)QN;XxV8QY,WG|߂X8kblk" ^N$I+`}Fu/ vdn)wMM$[zӘjzQ R D^%B2@ $%vn!xYQ>&$w L$=skV0v,šY&QMc|Kɤz*n(7X?@E ĸB@0$X:,py~iY^ #VQ^żi3ߤ?ԾFAؐC6U>1SECD*J *:x,@^@6F'*E'O#x,l?~? WitW NY  s2@2WxXX[b[+XHFF)u|A`aDF]S5=< XX  KS6,@ Tt` X.}XF9bs}iW$Kc,P^š9챢YT(J%C'N VCD3 +X<ʝv gҺq|,ֿv}8u-czRt#~XLc4P ,Fҙ`a1,,M;}ڜ ,V@lN2")#z .:|r:|xFlMXb(7XX `~8E;6u,c,rSyk ,&{1&{Hv|ܺ(1}_ڴ$ֶZ&Y:MRp3Pn6bۨX@sԃX}@,c,ݓPwvӓ? PE*u`QCgB~'86q5x{Gxwr <ݽN?w/(`[ y(l)em5oko{g Kxpd_gHtr*Be;S :7Pn6aCݭ#-Yo{v&`.X<86;q`A;+x`1Y9Y' mC[^@(,|NKlo'>;YV[ʍЅj9b?[B ƋFV[|j `ٌa  #gT#|.,c *CWum )"cW,E{{it e GQ8y~9x ȶj}L#m +VNL5+t2XӜdZP+h]n uU xPN6*Ź+ t<0+"TI1`aN+3r7UvXZD>כ+yM(I+:[h;gvJko?>.щ"5g&㗰*٪%j]R<M g}_/t1`a5dn+,LTj|s݆ *x,Z!7 C/ Jp^F]cpT6p>ooFl.ʺhzƽײ8`QތtW2ڋhW!wx,XhǢoYUY>Y L ?خp*~ۅ8|@ 9_Bή`b4%s/G7﫪xT?m]dd\ľ-#^UMUEϓ{^1x\+X?ڒ`ѡXlxށϭ<08MciZ ޾UX.J",2tv^i1V`<%fZ(.".7#r{zM)Ys{0js!uusY"N~4Q*@)2 A|G (7٬]UWEB/~ XG}qK.)2bM$k!> X¤P>-6V pXJiKذ.l8Ywg8{EWK[w: ]-Ufq,sN㰓UGMܻR}%DZktvn"8bZVܚs)1-+X2t$)p$[1@6w8fȨ֕4G~>';|W*r8`QM<EXKLIÆ6#0V:۴劉&^ <0MssgSA<KAƊHobM`H@Wd%0pn6Ѧ*}+b,lQg߉x ܷ;^ $5*ΜnPOBn{]X̰A~ Ŏ ψX8?J_pc!c'EH?$aۄyc , %X#X<&MH,ƴӿ^x񒧾xOUq_GUX=CzK-+X荢9<+pf|7o>=  SA ߠʠ\%S7]Xxna*(5n`QUS#ҡ̐Q1K|`Q#2_=k5x2"B4&0ئD-E!`!~Q~g2ú(G_zH#' K-+X荖Ǵj W: _XNπtS!O ,@ 9\ħn,f'@ AYV3!a/)ƚ, }$ X$u͹4X.(E+ K`m3haE zTH'q‚!7 4 bV,jD45}UOjKȱI>o8ص ?n;[3 sɿD8X`qq| u1Yh9m`qedJJ{ꠥ͔iVp΄,uINpOM U!ҧ`/7P,>sB,M_VǻūZ9X,֥to~l-;̧֥r)ksIw`$"Ƃs(nY"u_f'ѷ'Xb0tӮ gů=/XxG9oRV~2z5e,{YuKry?bB4u GD6Xk273-jvlb}sMM4)X@ʟJ,^ey! \VC/LM=[`Yj/b~BE^<]#aEQcBS]둎Ã^5jƹ 44O У@ ;T 44Ojef;>lٞ3}\Oh  vGG@LTdvcV 44On1#,G)JKnEӛ|ؽlduv=<H   tB   tB   tB   tB   tB   tB   tB   tB   tB   tB   tB   tB   t6X^yƂk*23G/J&tx?eC)y; <`AcAcUwz Õ}xo5lȳ`铃=V޽}{,u\;=Kී-޵]׳;`>],*['Qu7 RVEfwz0j̥jAݛV+enro[c^fsۇQKpXPy-WpF;/+g_oVde?-GVZ1͎/GI]R_ǜAC;9Mol&m(Ŷx2"'9\Q޿h   踋qn,;n}vҹ[7g?n[O~g4!FBdϟT&̕VV4GYPSr垾|cGc\X  j!"+eĔ ww}=f&[8ioNPÇPq-G_tdWD%J&Rʨ05jqy*;!r>hN!tg\YR Zp<@Q"f}}di4.ɒHyJb,۪-GX>-T+}hM-[~5\[Mg4 IDAT{{ca ,INu(j,sxX*T=ݽ^L L2Wu1⯽i堅qb~,pS %J(Q2A}#3۱-Ly]ɢ}`?gL:.#ssTKЌͽPC`!q~b̸ 9DP` + `U⋟%oHoBY,Bj}.Ęg*>  (wTzucj~#ļpM :da=+Y#$qK#fWNG҃c1ھ pd5x p47陙DR_/BD{LcܙoڦA\.ݞ6S٦N"In !S!KmhqKI"`Di l&u-07`,b!HYv&5̟yˡ^`牿F: )h k]u>n=!`jM ,*` un/K=͗ YbR`1a`_E~Ÿ`1S!8|;{G ЅXL56b,Hu2lEw  , X ,BY,[Ӊ`b~t{%BJ5,!9,"m\W+%W׀`ng~EqcoO/1P/MhRā6=s_w`Q0ňog:@ t P0"D,g&BL>C2 k$S5<,6(X(XhH,k1!Kr X`'=.1,Eh\XsŗQ`!Fmå}a>cfe}`'.m` ̇`=kbGMڞ5,vјP|=thh}} !m^K摽Bw#"a*X(X#z4໬wAOBJ5,:xm#Ab1ℭBkNq-l@# k):ߜ,mKR`1A`>UOc ,,u !ʤ@PAD.q"X`@"Eew ~ eP Q<~Yԯ`JaGj4X "=y91'XtКm.@c״O\إxs?ީ,/S`1 `bDӀ F|#5&.6w_T6P^`!?L/\ h M qӦwÃLvڑ8E{{ztiTs.]h _)?,?#3@$=Y}|¹~=#tvĜ73mS'q?9A|^q}W:?=hۑǸJ/.0ʂUϦ|èiCPp^l堲`'"~ҰnQ&V JQϼjǗ5GW|&FkV CyqϦK֏b8NW2<6N`.WKUg,@-E^3Ӹ Wv 6k2ƥ)z zh]Fggzȡ4rB)겔t "@4$! "QE>_{flOHUc xcwiobמ}Qz**gS.7&@*MKfrfj\FmM%{Ӽ|^K,N* =rɎgQ#Q` Ȇ0XďTvxv=/9-IBqL8\Kd-jH;\Z$VoX D[dbM(D³<Pb!HN==@ _nl< n <:ynazҚ o,)kě[O 9pӞ/ i|:ʖu-7aN;7rgjvRFrmM4T1\"^FtCF ֳ%hāI}9K$l18]\ђg{fVSAxsYZRS=/+,ύX=:?9n whsV] Z^8q5fԈ/Nb{ʤ_xsz͇ eޠkš|ĭSlEL%EW?uxڢKLfYs~} }N7WRo7Y5GG#C7. t A#tyMB8 ڄ0:g#'fg+:H7LXca"L_b#j3l#@QhCH̅Kn%ĺ-oL5 W`pj̚l>rcorӒuĆvVnx}GM6eaU#K 9bf'z:b!/ZP bbQACC 6V)B+y![Li07Jyo%i#`2nEIT3탘5Tx03hZvިU{tۋGkbtI|X(Jߨ.]Tdyѱdi?u 9gH,tⶦ? XS(=+W쫮1& P#MQj6BE.mײQ]lgI oLvشЉxYOt~ݧL~Ӕ9ؒM9-%t%wFZpkC')n!GdUn`Hh6̯t"NT+zbpf RWlUr_&w X2ѩe*B^X-mG+N'D6RaI &Tb `RG\Ea5dq/d-Xb.R.R`vp1XJ}`mEk+OardVf5鈅_{=uSfy[)^'MUMݞ0@_4WS z,BE Bz4u`vxb$SG_~ k`GyෑHK 5(@ ]b ݒeWu p#yH7\p$&7qz!ozp"1Efyȡ*M>(z7 2$u`^H)yɏB,<-N[& J$Q+,..$^7gO*ZM,Ӏ^yN9';6kJlSS(=uݏB)~$-$QzS5φa,%Cmbz,Bų'as= /X7YlhԚăCVV,TJMMw#1Xzb9 +ȉ El]ǻp}G"O+QnR=BIMcle\I sz1E12.{u\ *a(J/â8uT-O P2-9alɾb❈o>Y.ts kX(* [,`qb!bp?B,$wZƠhm4Wz < EfjM?][O} CMrԒ".HAB/} Dmugy|Ln+tCH ,"Gj0RO>VX8چwa:Q|F,Q,m\U`lyJzJsbTAOw(=S;R1?`zeD=}4ˬsV[U.oEȔ@D 8OS\KlR 6o&/.%A-Y"<%)6.XiOaH9mao^B$ ?ek ,![\3A;R'(,@\ఫ@$"Ƹ8Fx/xa!8)w%Z印8Fτ"r&}Gj* GPX6ssW#@ V^%ܧBRJ,Io !ƈ:Ҝ>2uT>W5JWR%[XڤcL90/Xߔ95*1ijK[[Ʉ p t`BGYyS>YgY.Z?gӃ.w4B{]"#GiƴC;J:Mu-= ؑkLY?VX@X\Xڏxa!8`Ͳ-<سE~BLBa9RZ' GPX =,rRI)So"ſ D J uWlٗ2ZX(c2MM߀`7(, #Ba.!lq=8Ms=~ +t"%(,6ID"gӈ]Ɯ!7`.pX]4acag =mt*[/,d]lod]bH טlB!󀰈zlXah [#@ 3dK?]7l,WK^g9c@X|l}l(bFE/t(TIb_}L&f{f5=yߌ!锸mc w rIAScӬD;$a2PI߀ˣ)z\0A륵h]u08R/f6),`L ,⌓SX@JoAPw5fYZ&J "t܌"r>GWBneOXl [#@ .iQSoFFQ6^\E}AlT5lsIBG~`])Q }E]{lY/Ad m:[X^s aWu4ttc8f>s{/b&}#/m(,X`& xSi 1'o3<]1cm4 CZtiU&nY a-2~JCFVb[﬿UL}q؋I؏ ܈q j"3P;yvL$,Ӿ3A t-<۩BѶ"V]#pGF_C;&m)s-,"Fj0RY׻?$,춡@ 0b 7b?8;%\.ۥ\e4ȭӹҧL&W 1+MoKS LIË_5ՖcUl7u[.^Ǻ#[DY<G^MD4<[K= Ύ $8l'C||z{Wx:e#&Q#%D`4ЗC'W!$#@ EŜQOF *,0b Lltp@A#@ DMYn!S52 ğ ,0b \ ]%( DwPdtF,0b@ ~!PX 13~@ F,/`^@<EW ?KX`#@ ijF,0b@ @j[𿷣]oQA:(~ *RԢ|i)rThGqzyYܟIN4 Phm=nwvvy{ d,Z,@ d,Z,@ d,Z,@ d,Z,@ d,Z,@& b2/w=̦YaZ?n,Px,]ç.߳I[|%.X caO-~"B,N ŮP`']A,@ŖXln\;h~!{V,@JcrKbQ[׮_b&n4cSɤcmO4N)أb2:e 8T!Z,$WDbg[ g-Zwv~*BM@ȫ-jK.R,0Ԥl *>CW8_B=D]q.BFr3b_߮{·z'gsŶTNTL,p ],f7Bpf'|׾5 N;_nA+f}׵|Jt$b4/MS>*@ =-2l/ժqmrc8@-Q~߾"~{U*.P~>#uv8~j;iJwE)Z2/ i[LgZ-M K; YN6jEs޾[,GA@MtTĢd;V/*ؼ$]CVdQY ȹX/0W(L8bPӎu7ό;cAw "Qϩ7WK6;+^N䓶څ5CA٘X3:@2XKI԰drkU讯Ö퉳w"Q/|չj&5x; SdSsF=)4*]%闪Q W[\y^VPZ~Cw؞D.4j|6)DUvY%Wߨ8IJ*1tko*=+(<X"Hs2bQޗ_Br+5X$ĢBZ A,I~H(5) Ɩ\ja^d1aFsZ_N,pPBXbޓx %9 3c˟Cs-ΰX g2%hΟe~ѩA4 [`[M'\'P"&s%PޮachL eUb"j#|2sT[դR7Gh0wd80]DeY_!jrj&l*| R_K:ʧ bQb5Xي9OPī9],ObQlbj۔X8cڈ)斸='@hՌ@lXIͱЪ++an s8̥uF̱k(2X Uo%Q92X$DX&^q!pq ⹎}2kLb)i}M-XҨͷPa:AQm7&\,WSGR,LaѰuV'|q(\F@?W@Fn-i"zYwŢESŮIαZ_{ϟ"U&jDc6*(ifsO_: 8K3g 8ߛW>,H[Pr]L߆:T>W;k2M3,q bACv ;:Pcn'^`}nGpK'}Moؐ38\b'/rĔMhIc:%˯~ R lp &]+d*j9\GEO%p=[ZuPanK6sFX3dBU)Xu쎸]Y-i87ʩǜ':Fd0]|Ֆ%6 vS)oJ 3AϰX^%vX@ؾ`#SS4$,h< l3jT`3D DE-R޸ ,UC* hxc@oGe1oSbI%n]1û@Y 8)07;.֖#Vcp?4:n@Gx/OݸUUHU sJ0 *3tp=qD3 RI{<: vקU(o.gd_VǢ9C˘& y ~1GNWx͗_<[^,Fhұ{z2XLT5( PlA[ːfw0[!vJ7-4NG^.9SBGPڸ#X4jH7u,3KX@禎vqSkb1¹^% G:.' >H ҍ, Mwn =oG u*4FZ׹;*U|W%a{5JM'[فM%aOh ,  ĿozqpWs0Pz'Lh3,I&w񩕵zE5Z,2?Y"0EU*IgolQx(ያ*oCg B%Cm GX(8=*`Q0,lY`q"`!D `[LT%Thy,ZLmc^~I X(LǏƤpݖ8Eu!,nDV\~-F NjZV icp+ݬ,@4Ylv\xlH9$sў0;OSȇdDwe²8իXc Lj(W?6̓ —յ4$EO`"tH}X'U"M=~UgWe@OMsW4M~2pn뙹R&y6A<0ͨZus $Ƣ΂r`ЉElwlA2PDf֠ed]FF*8(iL}Zd؉AҺ-`R]K2H m_H%ue/c2$0T"dkG& 9Q$1,0]'X1iL3S૞dNk,&_,7[ 8`uz:RP3Nss]xNI#z`qd?akp-Ec a>~%hAT$3@罝 ˨Xȩ@BovQoikJx X`E pc1JN25rl+[9]VtTsHՐ x?#AR@ۛH u)$yI!-ۥt4:%EVq9B wWgIybQ*DL3t4.!kzVi09R]*EנCȾҮ9ރ?&$[0/xQ)OCev@PT'`iP38V܉ū@#+#C5jUrzXB,Ax6,2Gh xOvkhhhBDLJ,1k7 ޥ1qޟԱJF,rN 9c'3^f IDATW+Fr3Q:o7Bȥ%yj0>?̶a-lmȉw]XHik##w__ޫ&KYēt`b:mk/4t,'{A:f=!iXjr4jXhbh Ry,ɡJg% x@r92ɢ5JѫU+|)VF*PO '`~KJoق)( \)S F/v0Z棔X /~r/R+B, "4Q)_oC%Ȉl|98O1tG.VK/ёX(gV7̦:P! 5h? \ %4=Iwa}U N}~>8h3p") %KL[}8ͬLV`JPv)"DFjg-`lM&㖠$4Xp L=x %ubQ&Ub4ׅqG <4وsd b-^;SCĢE~F4UZzuǦ` bN,5dõӮ#=8^m-$QVGҷuyhJ#ߔ%w]XHikyWh-tf;E cR9+ =*y! I+1r( ҁq3W, Տ}F?>N71~ X>& _K[k%w7/;nʃGVfph>m]`!Lԁͨyͼ=Gوsdq4Lx&'N{@˘EҴ_҈00-#߰7^t I34PU0yZx%H6K{@>P2 X(,Z3RBHXR7:Ƴ h!fd5^*K(? OgYbч@x<f I<(PM-jP^/C\Kёfh+j"\̊E[R,N-/b+_dًٱm fC[|mW/e: 4Ҍ{L:#%s+,Hiya6JaS|yQ9 ~V9 "ֶ䚴rˊwbcvX̫TFsaQWBaq&,|wȩE/߶),| f^nSC-l] Nn!Ŝj£ѥA]d^#)viGXLaMO>9Z>jn͌]*,/,v(,3/|fȑSp9>Ĉ* Mt/JYs r׽^\_L!!;Roop,XpS<OQX&7VˈCVd UG2vS9+,>]!:4-.ĺC>y{nO`OeI,(Vp,2Dh|N sFcvHcmN,׌1ʬ}9؆؆E@ m%XMs:&;qY:p,_ X$~':e8IԓN^K&qG4_)%WOTqPķDrBJI ]U}!:&]$AG):"m߯b?AȽ~VEu1_A/HMzN!9}8< 3khl8eT< =0um$$zepdͩaWE鈄ԧxʩx[ ߝi&,H;;^]">}oIm,f'F^Cod4{ֲh;axt W '1՟$og+lv %f"'l}N;xWntlnz;%mVk9gU@5I*,l3Jk}g7 6>53n[fM>_(xJb ,L%NЮLLGHcYUq*;3TczM>q9>3յ iX sRQ@^6EV;In!ݯbe&'t^P],?ﱘqp8 i@勇.,DVǦMq6"/Tm7ƄNψ.iF^Dp8y 6Sz =2+{g b *,k-,|ʢg az#G2YatB*0WVe?"̂hzbZnjs~srmQ'`tcw)]uM(*ki͉ÅE3:Bg B XD"c]t綣X"k9؞E"1L0k_ _7:2 ϏJ/":eႴY<{;[Z\l!x,cOݺDN-rL5YHcg w{3"Xӧ:<0 E{!7܃px&ռ>Kt`&u;RfpMDcT'mD Bf{$$7%4ldň?9ULjUF44IYԿsx]Z irrZBtuO4k%+w 8p,W*oHWh"^,WZ;AÑm jJ|+&8SGs'Zxm״F_Ӵ>+7),X¢ i2@F 27.͖a:p,Xa-Ep]o?'9UsUG!d-  nRXcE¢bLpkا 6a{CNVbYa^AXp ~,a1xsI@oAp{;YbU @ka PVkb368׭չJc|RZV ";<݅Ja1 8܌c 8,,Xga= 8p,YXc@ zp,Xгc 8,,Xga= wMM$[{=ܩn)F|{ݨ,K !͈Dy JH]1l g{{&3y>R93@AA[,0ct+{־\9|iyAOu|)5n }|0Ţ'1rtQ,Gf,XN`fdX%$ [l )> c0'xGﳝ`bjwS]b݉f,0cfފge'MB9v^7oÛ]ˎZ(A@Oގ0$X>cp+]g6S]p X`MRɚ- |4aްEm0pX|b XX!dA\~ڮW,O}nSݏIn9A9ttYШX;X=&gX@8 gs? $UBe1e?{xz@/˪ ~U.{zYsxn< KUUFa&9s$UDI`h%F>eOUWENyOr[U&nj3!9NճGAN3͆t}\n#V~/hb1Ƙ.vafa}DeQQ}mFhߩ_gw{SwY]nү pꍣ] '\u 7<6^+^Si8f,\tɺ ܙ=`X,aG,Wb8nINtJ!d6!; Nw1D#Ol5< V# ,&e%+ʲR# ȉIb#cxjyx2j |{2nF־]j0ufIK&7|v4q4#ToWo\†8woXhKV5*zď1f,0cf`ŵ4HbqB- dz.R>SL.p@x  <~v͐8 %\+f]pp4eZ}gQ={A9А|r }Kx J h,~o,ѐU1׾O"+* ^ һ)Y)xhw7_!ѪʰJ(kNzYh/o-˳,r`kDA1zk ]A3pS۳m'dتǺV0/2mlH@?b~XPEok,Z=v Yˊ5<7_jR)Yߨ= .Ұ<1`{,X̊\ L2~#^ˆGOƒ$MHG&?s]1r ֤XTX/H 1X# baq0 [uUW!/ƭmQrb XTm$[lZ 5ĢDX@՘>X,ZnXlFؿYÕb#Y7J[,5{A9 xa,\J jDd+\,^LO#|-+<6HcAԈ;;;m?S( ߽Ab<*Iz-w}ı7qG;ziZQ{4X`3ȅq_A5~se ?caFИ}f$K=>۟«fНafƣvXtǭeٌ\GAAKw_X

\u|b XT 9i@Hz*2!%H>X$$],dtK~# B _+k5$= _zj ^3cQVq }@AbgLK$n }#WLXd GX<'ƚd˳,Vř&FwNhB]WSpMbA5FYklX  ~4J,bPόP~|}$kkcӅĤ_AO.X>&N&ٮ/OA<8#U/j%(EX`3.׭әz!_123cdNn rF0- ;$m>`nاS,ʻʲM@AN#;Gq;k>x .1*.Q[,ͺ%hۯ=vj3ض/((J,oъf,0cbm<%X쓱([b@rM5%fnmsxyM\B4{@ANS8'. jCCqwnOM$ f0Չ,-RKWx+6ֲ",(=+ jVB9@,}xsˍXJLA*_~ݢ±jsZ_mKUT1-3%kI o|V>QX8o(!mNKF-;j bAbAbF,Ġ9ZsȜXD{t'O7;k+#=VPnH ;~(֋wX*+ȸqZkEٌ8*k5Z_?ZXT:C$ֱPKzGfibgEuΘ6ͧQx>kѬ27EкjZnx,֓AG,4sִD5b\r,$$i{d<5&UR5_whxZr1ە90zSh*e2QG'(XI_J gĐlBdf~Jq~RcdH,ȔOϸ̇85F瀳62aL0||ngBť߸U%{:bQ+DuԖ5 s[+o7yHm)y?_\m܊E:3F_<0T.5]?~01M۩G?C)kYʣ0*a )bLe,'8女rszKVxo֗z{Rn)s|1SPaNT":ZADMX8e cL0f]j6VΎzS+H?hReuM6X{Úv3Ji;5Bb*hͼJJ|⃇_܋Z{^y=5[]}V={WsfDRXїLX"3f WX sEu G/}zCd{>+o9nmLvMIz:s.̻iN)2*xHх#i#\YP\|8z$9w.[7bAbAb;9{զtBtv2 v@.ǩw  \1ޚi@ XD{LO^ ]L!X깦YdnwBqXXXAEyy(܊Đ?877X懿5 Y/:v~p&o|j "$$=fQڊxwcpnjIK MfqŻPQ.LʸXX6qE{^oTfݻ:_tT,, ~p5tWj:z XXXµGX $$b@bAbXb$$$Xb@bAbX $$b@bAbXb$$$Xb@bAbX $$b@bAbXb$$$Xb@bAbX $$b@bAbXb$$$Xb@bAbX $$b@bAbXb$$$X;sb b@,H,H, PXXX ;EjBXX ;H,H, @, ȭXgOO,2 E,H,H,-ˡ1݉Eƹ  9^ @,2Eƹ*R,6}_H,H,s#~!۫]B-6 z"Y 1[,2 U$;%M+hZf;m-Kžڅ.}R7Jhmk|A,I,bbE '&bJx M/BʢO}e[) /$$ SN3}4 W˃6uo!>!('w[, @,vK,-řYTiהemw} κXf!{bObQCt+.] ˓Bظ}Tl7/g& 뭽@,vI,|ًEtZMXXJjy%%يEWNz4ӓφb1mK:mAX<ԯ'-,aܷPH>xY -RqĜzt%H=@,vE,|>ȳV,~ X,\3^4]]X, 6[x<*XXJh7K;:[\o5Zq[)$u|Eo񷺵ࣧg#oǺ.?t uNJ$U?!t??~mcd׬?u>k/Gևzw𥉉g+흾'֦’0g'K +ЂUd!, -ɝwY-bVM,VB'##b+b\/DKX$]n=LZ6/4~{^h(Cu'4]M*~O=,*ږ`aU Z@SAR/b| \ybrg^8; w̞i`t{:%ctos: -AG}7g,q`X @ /pB!XXt́u >wːqy C:scquJF^4'kfjjӜM`rⳟ.DH0 䙼77cQE[r"tzuS)jZ  j3`&w?E:NGIVZH8Qz*&Zү &-(>GT?g18?,D5)cN i_5mwx"I B!X7X^ʝ{-X) .)<0Z^b\r=.A%#XJ(^Ns؀嗩1,`c X<ݩ&Bq(X`Kvz ,4ODLh *Y. &K.`a! G}Y,<5`|_XOZ͙c>[R &m,oǍ:KM X8]d_(+>z?_94k,,솜p6OP(`mh@w3A0l, 9|Q, iRd#D'y%x0*܋+QWK2PpUU@C-XX1i J~s=XHpFYer#0'sva :ˢsreDw? X`~p"nk) 0X.Cű?lo0BAP,P邅%p{uIA3cAgՒ3|PxpJ<H| B0x9 DkJl(X`2v0.3e9y[mDݓԖfE5G`%[^ jd ״]ζjpbWmeNx?)c _",o6o %œHH8NcPP(o Hݬ|ܱ!\{ (`Qh6iəf 30l4(%fc Jl(X`rcT<(NqM a`B,~7XWN"S0}/Xmf96#"cCO,| 3Z)gˏ,I~5[׺5XOsb{lQ"bxʿ,svXB;OD>#RcyPm~m>3~WpB!X#X'vXy'ڭx?X 5]4/n4o.Ias􅂅'<@a3][`]=XxWaD%geԵo3,RP(s 0 Nĵ/L?{Dof@o%?6aJ.*D7󊬄xaNpQ&o&iL) mGә3gϜSF{*sEK`Aacf_G᱄667!bZĂs{e]-bI^{/2B ֛6 -2'?ɩ RٙXܽ6 ý{$v=9,{Is4mx1s=͔{لwm[Q2@C,Nc֊3 zmHg<b=T5x_[Ol Y?.8hV~cf$$=ysz?<8iX ,kȋ_ou-}vSq0>uT,uwk$zHsjvf[%-W{BwBxbeG5㈪ZmfG@bq mtfN_ՙĂĢ'X0f9Y#5چXcsb_t"УpF-V9|^ \yՠbQ=6VV.QkDv]}t_bdO"}b&߬' K&?lJ>/+i wbֽ#"Omʧi-3&(l|w2<+^Bv1ԸHM*hU?2>dҘ<,N_//vqGmq0| 8 +ښRr:9mXֺjY64e=^X/_ oMjuzitntxbY;V֒ #xLξ>hyØ,wI9Oީ /WV]}XyoY;Z0w֢A[oN^[?c Fz{< %9x"37jвi7n9l/gk+-Ko=eβFJǦWw7x]=^iOdm7 w`S1d޸!=Ӆdz; hh6( [ZB0A!`*x)UxDgo j|S^vfw'q(X`")&#NZ~Y$1vW0Krٷ5!ʮ:K66.Ȣ-U7`-bQ?nu b=7ZҜ)號x[{{d&caժvcyP(3:8`VNl8K2U1[+8ؐқwMeҿ Ȍ&w)z(z 2c8psAEZGa3{yV`\+ꞽ煽? G>PP׮ 23<=ղmw A1{۔Sᷥ>y %kCve.>93ϳ1}up4kEFE aYP(3 2Osj;[3W7Xl>RpZbSzW w{'Vu`-DeM-{mtzZ8 ]njGa3 =sG}GX`L.7(<$XXw1+`XckFUkW?e9v):@pq,yÿ$ B;b[67" PD@P(T' J>Xd,LKoV4xM8ؾ B%FmhOnxV**F 襣OzSm0/:0c$i'9ƪ'H킝z,Ytĭ7ֳ4XYswc{,D^V&Z^J̬|D,{atGBQ`/Z5> [C  B%,Lz`1R.ɷqo1D.Ia€LE`vo_Mj~,XPIlO?QQ w^> 3Hwz6w,\dx,J$8" P ci`uV~N?tMBe? ,VfPjke9P(Գ D Q ny9Dw&X@]$"c <}kx&8UCD۝Q=QQ wi'> 3HRK|MU #Y=XM X,+mŃ P9J~=vv]5>Ơn;"cpӸ0C8?J,P( HUɷݴ[1;uyUA'i`j>y xH _0X3w:-&{x X` V5*=Xt\Kxq)*lcboR~GI6ԇx*f9AsYia DU] 0Ǖu:``Ƃe0" b۴v],Z{qr( JX[ u`t\_l'/bHC{Z@󏂅7}RXXb! 'j=j,̚`e,0c$+Vt m-<ܴ1+ ޷ &jPE&Cސ1N yP~l: fmqng^Ǧ)a؆ot: &`|( JXL,,snm2l\qዧb'/oq?y,qÄ%OuD1T,Gv1c8Pޙ\R:,0cDk.6wR^ww6kQYM~x,Hꀿ 2vŬm`Q: aboK/H,7Y/v.o;y0N;3z+G` n1ӕn-l u"e͢P(*`kXn pꚯkpw}N-sln)׭7Y0/ |L}0Xwyv?e7j,@v쪊 H;HX00@BQ{ FEZ^c5o`‹\|T* ![.;b^Û'%OSc;P.^yc8 W+=k~otK?[][m奔 ý.^{+幥?8;y_.ccmiٵr5) Nrns Ńto]ZH~(ON޲zī74PɡqiFN^=zk 7D,//WGũxU/>07jf3>~677NpLaK8AiQdY"߷V,N4o(p >ׇxmt2}? D?;y 8/>1g X`হ|r>ouz_ّ(>NӼ}&SS<zU  |ӝkqvv-7s:7B/~S?Xi }3켤X,N;2X >k"X8 8cda B7h8+,yAܟ,+;H=Q6Hޣr V+(ߤ0*qsꇪR$Q]^<1, ` I}I~}>X} Pgae 5.ʗ&ƺܯ ~a\UE M hԨIKcY ~إ@X`,/E;/sEIǠb @\I0 F}PUiEH$?FA !V*Xĩ -r&MJL$*ŭAX+X"U@X`,Ga,dgے u+:H}X`~w,GƃD7ڢ#jVAg,XX^sU^&ɲa iMڃyrg^0VE2%H&i"/ tho,0 Q p%ARHFnR;26ZXQ[eJuo_f)MJsU(' 2yzZHcdEO0o,0 <}O-;}VVTi ,D]Wr,uBfUBT`WGS4=XT]xQH9y[;et bn|((B%8 B5 b. McQUPy cQW &l,d`"hcźjkB,0 r_%W3V? %VJxFTcQuKc֫6d,RXT݄=M:XjݩX}LڔEw `X,>?p^|_(m'*(.zcvBXx`4Aj)18X ȧ4Pc!ʅYb鄱hؐ8S)@X`,G-s,SƢ55gc3Ǣhc+NƢ!IȪP `qƢZ ʭYZa,:AYN Yj czBh FtfqCY\vXLX/Տ o[ X`,0j,DNP HYm,rHϱ6jcѐ{9H&پƢ%f[`\ϱܢ 8aUCM9`X,XAp9ˉ#;XykaGzmWNEEP;9+ֶb=2Y(lB-\;XQLRJ0Dn#^ʏBn:qc X^2U~%)Tv0aM*䩾y;*/"8z EQWS=cXҩ{Bu#=~,_*`$c XRXr*Y\Aw.5B;X]kPixoF(w^ lozas )?bX^i5Tat"?m E{zA4n,0 Q- ˊ3p˩ExWkYcM'vOI,j6Q$ BEa'yMt֝hku$xFg(k2G/NKyt p[RfxzRA;;y`@W `X,N,Ȑ'A,0 쬄"QdQ } X`,0I~#,`X,>6Y8yإ' ` Bߤb X`,0 c@`,0 Xc X,0\?;{%Dyf,`1׻[[|eӼ+cXLa4ي[ޝV،S,`1[`dq՛u`,0rl]Ų{}p4f֌g,`qȻ{Wqg_mfi&Xc17Mե[}옯/{fe,`qػ5|.;3O'Xc1#=Yzdn f@/,{w,>+ c1-ӼS6YEK=E&~KTNP;?ut!O={8ww85X}D8?=`,0pkH߽x9eh|5X,, G v7-k~ч;?F#`Fzs{Boo#My;4.! ķj(EzJR"uSQt% :B0hIow窗60ExrOZgp^vӰ~lݲ;~`tK"tf0f!x#cYwu›2d;M wo< Z? BM8X nvS/h2!%o8թQ96F59Z!'mZP`[,oWFzPOΙv,wy˱ŠV,ZK*NK9!BOr®:--s"+;נ˃ eڻ#@̊GҠ*RMv O ( (ݼ#O 6%2{Ȋ_+$h/7'^ُ24+K9gU ,oNQ<}8:' Įq*2V,b1b~yk% xx} O *x|cj=ɾ%۱+ֶR]Ԟebd=CJSKpU?Qz``Be/}@5,,@m  f-@`BP hi{G9F x _|i} X\VK@^vAȸBq|Np{R*FhyOԓ6V,b1Zd!üf<4i?c+jA5[GU/@ŒwEI&b*F;f췡9fBW>~F@P(ā ͬJtu%s,$XE6~u-0?}#Mx`ylwM'X?Ì'xRrk(X`b̵Hڎ}!Lqq"$|Ewy!.pyN.[I û XX_imUDZac X]J*T= r}U=S:z|؜Qͨ„fB0-vW!XP(jbwk b,2Ͼu-\`qg{]DY^E_nt< ?ڤ?hZ>/6V,b1 thc`q 48 Xj *Phãs1 `**").bO  BM0X <`IbHx޵J,2Υ}q4h7 KnGa+8,A -9h@y ܴ*!ŅC @BP ?R IDAT,vсxH`ѶH }w,tz`M LϼŠV,&E<^g_㏖T,#E5CYxgv\`(Pޓj׽ŗ++( t=,6La`ђZ`ї5pQÊ?XHf;m&:4'x XMC~(`aRi\]%ax.Bjƣ\?Zv( ( PxCԚ @Z F5[E_{ qjϱp%M} X:`ӎF"_K0`)}.Ш ;Ex4zz('jnBsqHr),fQ(ghvleMxV#}`2}.F fR2)7mxN,$Xxf˽=ŠV,Z_nB8]:KIDŴǢttT]#MG:d,޸[݌B "qdC P(Ppl;mp$,y]m)$|vI=4"X<Ӛ ϛeЖșk0yS7`X1>Ga+cP)9K[|/M_B]5NV@q|BtsD]tC"Eq 8ߒ\KF)ŻKJuDDvf:'|sCE@ǝIk( +a {At 5GHyPa6,H+=oȁ:tNpy-@~1@M ؿ`x X*L4ahu|Un|vqW |kg[`fis+3 ^!Z`? kk}Lњ ( żF^Q@U, ^,7 ,]iݶsڼ9kQ;Xx'>Ga+2߿SUSf.u95sJ?.630h?X`+?M*,S(\ƧcEP( BGzI Pc XREPQ{j8;_e\- ^`K4'*N0 7w^y_KI4-P6}.vҸ̞s>$okkQwp2XXX.e|~nS'hk83?Tp}2XXX6sUd"έTN3/k =- ЗƂ8]^ɝJelfigou},h,h,ƂH,h,h,ƂH,h,h,ƂH,h,h,ƂH,h,h,ƂH,h,h,ƂH,h,h,ƂH,h,h,ƂH,h,h,ƂH,h,h,ƂH,h,h,ƂH,h,h,ƂH,h,h,ƂH,h,h,ƂƢ7N8yxF},?O)'SǂE}Gs k3Sr` 44LrS^;]iH!{z:N'ɜᔃs鳞&_,:`AcAc$R<K>+_ꃘyB`a-m[":Xe>XXXYRL.HnWu`&n`k 441EV"aeqqf۳to:rItkI]t  ]0<0X{"sB㏫Kŭ&s,ҩ+[,Ƃ"~0[NTmq{w>0'ecbL+3>|o~ Ʋ 5ǚiUy8ȱStMroCEvvbb|qm"G{ZngNشSah害ny"Gz[Ri%w,Jw[cJ.xF2j)zI˾pq~Zfqn,X:nZLcR=H;ۮ >۰P ΕP[ou)˾jqlfk_ER*fp *X nU{l[(o;sfO]ӗU`Ѿˢ%R0@$a!~};[+V(섻6I=5ctl-+ٶ`Q fز":aFt[PF9xNŎ,Ƃ"Hc"œO3 5qnj;Hۍ\3ox?  oԘ}ewsl{w&;Gʮ)*J`l.hzh\z&~Ć9ySl^nX?zzx?ܥ*s,\Q dl?سVsWݩ;ߦŖDO}zڲzK'}͌n87G'gS USj#Ax|7gBrIM#Xt[PqMltYYE=o p?2ﯸ3uYw ?$]c^_I\,^D eQ5AD +GYdV=M,b[  g5SMen!bQXɩ&b~usr~]Cuƒ޻7Y;"ۂhM`mARdQ=(9@  ~ n%jzY;uapG c`C]> oƘtJU`[VfV.lM;ˢ8) =ZQ߸mV9Cuj`q ҈]g &ߎ{92Pi5Y͆R @}߮J%@  .&Vՙ}MW=,pRX32\,;žƢvSjP: /~(E ډ,qāzxi*KP Q3%흚W[O7B /MUo,:Xӌznkr7MOF Yr`̨j4X [SX+ *5_Smy †)`Qs*bMtT n`qd`,~E| ٢j52ۍ`q,ߣKˈV^ n޼759Pέ`-;RbRyt`1Ƃš}G^o0֚[͂>,D&,D8SE,.XXXo(&EKMcų[, <{Dm,$X8X:ioq9, <\%W+ _}B[c1%X/ [_1ΫB`AcAc:|_=zUEkT XxY`c"vvJp\ݺƢmwn=m+k}Cq(  NQ iJi!TP* B77a ;ߑ(Q|3vb@*t)}J<> nW|3Y,e/_XnHRwXsZЪӞ8-el+B-ѢQ~5l}S;!TA,N,@Ģ<-mXJ8b΍ XpŢ⎅ˍ>uډ};J,*XhbhKpBiø9{#tq~8QK,¥!IRsžcw6A%貓 uOT-9Ģ D,*8+/<"#۲ؽ"M3>Ţ5 )3m%%9erHlաbAu˲?RW,wWiouIVJ& vO3jXlu⻲O;8Ozj4~{U禼^~-[TSNYruzU~ D,s^-p~ 'nn=e_lz̈;6j=~е@x}`-pĂ'^4'$W5pȞ4XTq{\-}Mv>kV ЄbR0݇VWGSVD[w@'|f@gkFmst cl7Yƙz L'J,R/%|K{uGYXTu(Mn{Y[o@,O,@ĢꁛIc=$ 'Q$I;6t\ pCiĢ D,jb詳‘Yjso?FRw GNY^̺vGzA@25qE:]7Ⱥ3>c75-؝}/UFlREX+5X bŽa=zMPJ@1<`@"&rs b@,.X bq_pM/VL9 O D,7MIfnx!b"7ҹ:(Y]_ bw!X b/"Xp'd2-OMs{miG D,Rhmr)B֩h4{*{Ya O~7}=Rq+0z*X b7ؐ+BXhXaOaHx&bJbܧX b7ei 62bǵ N\)Њ\j)3S,1CBLgb?'X kf!-X b@ЄЅ؅ a\il $zXhQ,bB?)>WF1+Q5TgXnbb"4@#TB%hH?XT9I^9~X ~FØ.X'X b@H$G4b9]<s4RbqEHjE1[浒XSyv^ <>23q񊱱`0p]Z^ `Pfg a6 sꐫC%Ʀc<;X b Åҁh4-sihP;8 *BkǼ::b:V]YؔڦAXb1)cCȖ:Pڹ/`#5AUں*-i6Ա.|{<@ p 'm Ϯ,wp- MrWtոcxA{DbZ \kM"vb1:'>fJ2֙ :"XЈOE?OФX\_R!b2"_p,/iT>}Qwq2T>r  \gkc4ѝFa%3K,tsr_p?C%.(׭j/-X+Ϡ=}X b ?dFZGD9iTڙ]JK͞.Ikڸ%Q_&f~=͢W؆qԽO X$  wKOjk.}|zj4Bѐui*g⧰?=X b Il2q-5ÎXuvԮ3:ɺDzF^J.]-']jFM,au8S4:gK,@FP5)E I [QZbhgYł]ƕf"C]$ň\rqi  قVh]R 6|w< @ AESP$D:5#jR\W#d&FbFA15gj(\wbd27nqeZ g< ?{g6`IY GRѥV"̇I T{ gUiG/3_v'daR<=1w?c@C.ĴML.o:(u ..9\a8S3FD*jyk?CFER&+,&O{X  8p,h~L +=OX\4899?cdS7/'fjB,@XD ᭕Ɛjllx0/ #1ITP}p,X ϯKP\C-\qcq.gv'yRӾJ/ #>aWث}Xdbżb@6‚3Q]yw)=WX0 F.ҧ }7 S\Kk;?g.9r~wrwgNR/OnbƤ2tsSbQ<`rl\{l%ƍ.,cSS\gx:܁|h|9ƞ{/{#,X1gl8l{:Qä90%OܕjmpTXL 1ϖB,\1 m@4-t\Xxx)\"źZ;Ȏ);p 8p,hZ2[gjy<1I(syN.%~z!}]xM\[itLbkIpE+jȻzL4Ggbj)NO4.:۞y6dv|+ͧG Z@geONsƷap=VSU;1pzt =h`?vDO9}԰H٪r6Z9}:b&FXXcQolaEsYXtYg7 lVV 066 v D} rya%ډR/pgxMܪX#v\D|?N/} IDAT:S0;NP)Vo蛋/o"Rxւ #R KKr#x¤ DGXc'CIya̡&?A"AK 5W D1 Мc\)EW¢z`s/UZX^5O۷Um+,*R `=aU*O|F^_X^M֏0TXcchWmFŲFjgm.[Vlʹɱlצ2FoډWocW޲XcY/wFfmrLee>[kRX UMYk3ݸeT,Jnd~u*OS/͚IqVȣQp't޶~WX|(|ZX̥3d^Fc+A,P٤ah߹1U9ځlZedZֲ7i֮KH傾Md)?ϳ 8>ݺ_`ab qV2*Ӿ3b: =&H{gPFn1aOh#AUwR]_&ub%W:\'4'wz˞z5yFLfhaqU;ż!Jw˨役UIfX\%6>&4-E;ūsOJ񁶡c{xEL(a%552[#uցVX0=25b1 a{'"òuKnN-l2Bߠ^8\.QuY#$"pMT̠PGUeO@N˘-4 X&*ެf)T2 za*Rq942kPSKu$LF" *;3d>,IQf{\ *~M"vQC_o +IxU|^cp3!>p,XXAQމhQXT ŝ@2&ǵ"өExr,d-r2EU78N\ ?rDTg,Q*yņєk<]<%, ?Ȟs+:WY>ټn)N)G), d^D^5D`uK *1߯n+[,9ͫ: =Hl %jts@:CcKEJ>KmYI 5o_=AxW @WiqK?Xx-;,r~}tIb_nN},ͫN bfRMă?>qa;yL]ܐ>cDT)m`"z,1>_4"7ȳSּ6n )='fplgb,BF^ . jގh}-l7Ej @7 :=yĽwRMg#g{S%/-pt=h,ޢ:8#XhEY K~-!m)B{.C[`aTЫ7YUO8/[rEtQTJ+os'd\~#g"XhټUҿcՉ݋$ŔS\b6Wgլ7 *es3G׳L/YYu@#h^v@ڛ' 6 5X l⁻T,Xx˅V R8|<gaYOfw89rZZ~;*bbimYORwAGfyG! omިUqjhf-4*4#G[[񟦾w7 @'=vĂ^̩e=pW.['W e7)Z.em#m[Cy^ȓZ)rj+{r}Kr)蚽YRl"_Bi՟:T_`AłE)Oi'op,(bԽ`Yc'Xl?|45甮5l?qW˗'EڙjRV'g-sPuX]mz] wk#{iHY(rБb`Gj/" cGnoȞ7Q߈7jH{q'^_`;׍}]qj 0Yp?Df#{;MrCۃ *)eV.D΂ZIhrȴY>lC )\%[}xo g!"69fu)d޹=}q u/+2^Rѐ#a؎sƗ>Eg_(]߇Iahڟ;Z Mjf<{W翯e'@8+7 :8GRi ͮ|^~kJZ*c l@P(@6C-O&p,K;Nv#mОtڂz:=w _or1N{/:6K9һ8ikb@$-he&X $b+J;3j9)K ؓRg9 ,̔p bH YXbY C.B%oң"4{ A#50# fLi9ΐz @d B,h˹`3T2tȿ]v/? _Bw`Hfls #]}Sv9kKvvuQ EPW̊&mXlWv`QbgJΜ΢ Y?ܳ~PT!fy̳ ΝSyx,8bsedrBP2X<0X,ed<``k.TR.`(`Mh>& t ,y.`)v}O%hX3^_F+, Z>nĬRg*K/o `1` 8wUiQX,1 ދ {]IsA{z"&Ivӎ|lX`E&r@b!Ѯ`mϰm] ]`QŊvOxTzL k,rl.TQĠ,P( `Tf@(O,` 4c;XlNTw,7#3 X`Ƣ P%Fgb,Nw@5+{w&,ZqS\*`shp"BP,J7,fdEUM1שXS" >`q=visxWΪE5ݒ^kZ/E)Һ ,JK=Q X Ǜn3$ʭ9֡g`Vֱ[NI1=(jb"aboKPvwLg[\8`h@zp:"n`Ab|IH X`ƢPv[/s,P,W1jB o {qa'l,,ά+/@duƜ56y JZl z=;b$Bg6X#+,P(`[]TY\ ֔oK-l{H{}iԤ Q>H]/X` Ud7 X`ƢK_c=:Z}[sJq+=/O-p҂,6ֆ]<hNhC`dG֔9mՒb XF ~k, aP1vcP(Գ ./e.xZJY)-oHd?ޥI Z1 E `s4Gr:@pA4M5#r}٨6CEe46"o'65qRAN6s+TJEΒY'ZSZX =[cWiv6Aoۖ Rl/>{s Q)0A!XP( b Yzrb?E wryX ,"-BI> w9e{eX6Ô|J^F !v cEtg--f–(: o{XbScE6mzv.U\Si ߚwwKHf5+'Rn-T;%Rk*R^k,C0b*z9P(|1`A' 1]r))V296IV",JVKl7ִbDcOU#m݇M$ 3dy3=dG e3#=J"3*pDqV7RnVf W VPÕo${ ey+߸[X [r^2O:l:ֽЛqؘųRBݺȌ>_j&a5a[9\*+©~|BQ0nG[ fr  "+P(ԠGZn 3@+BA}Ba5TxJ-l BQS Zƚ»s~;3; 5l&w~>3o0j $Xw WHlBV ]q G.l-ڙ$H,[^ )` LaHvS d @b}"ZB,||iKDZ$E@ z+} IDAT{ 5p O 5pB1,@b+&l`i >5{E0 R"౅$H,WZa JI,CJ/BR H,Xp/σ"L=zp/{<GL*bl(T@b j{{i0-kXjEWL8^1=MabRb;nT n W؋vY@,@bnĢWD&F4 T :c<(0sسgYPҳ0 $H,E,<x,X[,q'+1 $H,U,"1`"f @bĢ[Ms:Db XxIXd2o[\,m2YIq1dBbt'H,X i]V,bz;~b("nyŬ"l6+C&T^+z<{ {! $H,u+D{bWW#W+ŋܼ"izŔ$'OeH_^>y"[bXLf]/o_|$zkM'0]bqs߅ H,X yQK=~o%}dX2fzr)-D"dn(/,bAf1bWt/-~̝ A,X @bTvb> ݈/4H(yŲ$/Z`ļ!^AU5sȨ>efǠA3|Go~Ѵ#P'˙BizCPǟjZ]Uu!k ]XQn.V|筋5 _y9׳㍄\,OXX^rbцRvRW-z7F+ҳfOcW&"$e$E4)a֋P,'v 3o̒Btڠt:ꭘlR\2KHY6:yk(_N2ey~gi֏֞AՈnS $9/;aؿtߦ j1RmjE-%4 f+E,B(̃Q6"l~VߪS!ϸ)z2ZN5.k$DiYZKteu[&gE%^ߚ6m. )w4 δp Xxa!^XX^a-Hb1gDy{"-X8{c ,ba0 kxwwY10nlN7M3kBڸk,ԊyNi&5Ξ/LPuUS*dͯG\(z)'jc,ra;& ?YD_EY#KW"htՍ7SŊ>!=Z]ja&i6?ӄ4ć=yƨ]5bBTH oѮ6B}b?֙KGFt{e!]t X,ځ5X\Xr 78OT( V!W7 m#,EL,$ cDXx*_,9GSc8RD^, V(`EA t`U ZAIIט&&&3;3)˞{Vܡ7s{nm8<w3)/̿A4,4;/n!żA1cǢu,\7j/R!+v}`!ֈQN3^\xBl[KF,K;|??㬖2DFZ7Zd0FȢV\R;JFq,D(WL{ϱ`RTS #؈t8 ,(YM`?_`a/*yb1,,<sYEՔ/6]nݹޘ czB/?ғbMUbGbRuX e҃-S^=p_{ӄ:q.;"~(w1r&oq=znbzZV­eeyg>ײ`!,6j"By##9G#]HͱF9ow`tHh-x(.mI;[l޶ʭh 8mU4R'_7Z#oV`!G- c~j;hKͯB6m!kveFX0p!.X]^sV'i ]iFL^9OٚF,% nX,  =XVeѺ/ wƫ+2By" 0&6i.MљȻ;`J97cwr^9!mLXqLNpwO]<ӿ;1F3]_u[`GkptڵN*RZ~#m` %ܶ APE*,sMZc#hgCzc'66tZh=1c2 h dn}|XPܱpΰ顿BZCe'"MXhs-y۹6smvwA\\3˅Rۢ  8p, )XhXtfe鶙Z W|gC͘2pBO@γ,y"  j ^'ȄS (\?_ ~ 癀,r=-N@#?W/蟟_g~}oF\N`r$#Gԍ!brX<{~SY(^ޱw,n2s_~^W3d@ ķEt)Nqȵ&A近(RwAGb#G'^,VN^np,BI/Fr,`dĆ ^ӜnTY%IQՈؘ*4m)HRu#ؘTtGҘ@,P 4L8$+X2OISE``B98DY^ޱw, s{ ;Y1x`S`҅w4;Eh.i$#Ϋf6It3]c1ep좝n) z$SOq4Y]p*l t{`1y~N; ʝr9XY:lv=:l?caBbx=;L S`~`:˱ȪrU1]ԍY,9 ] $Ƣh[K !i2yCr* s j Xk-,v+YL{w,>,.-cq(Լ_,sdUi.`Q9I[!QZPy"*b=*hFĥfӬK yT?M,\AD&: d; vݍYN*T4d>9qdz1ŝ۬,X޶-4& BC+c ھ<@xv\8=Pnd*u=@ C.B ^g({ȹFk[ m̎-z4i? @lCDAu,C%Q;v"c^$: ْXmuqZmN6vb5v W=VZRZ7xri|$Ȕ0hB 7҂Eq- DQ*2'FEƨuC1XՀȂE3c;KIdxGfu@L:eHǞ$XI,X Xsf ,6+ z}ڼf6Gk=];SWXD;H;Hp9-K^7[QclZF8:ŇdgzחIX ̜(_:CQ% uYn,}h}놾>S8ہ۴RURR?yI*"\g"B V#*V(7|`B,X!jαa]D "-PM-rT]܂?zĶC}H1:Pa@1QH}A=XLr6V5 G"00cszyH O}5Я6}r(Bmewpn|-2Ysh4 cA|8RqwT*o2& t:݈:%l6j7%:]tk;n1H\O_X8999NN lׇ}_ U[^`a` >.|d1ϒįKf:p:UVX&E r@<ͥEV 'dXXYRyES/x`5eD,%/+q4Sn)ԃ:ɎF;Z#;wdZmmV_ ^ީmzvm%zq~\탥ncA2zYҳ})2I^\TF>;㣣R+vi.=!+̏FYNNαpӷϷ׾>] `X5ֲHV's,8 q ${Af#tX=W " G898)XC%S\p$8~LqSṞ]k`Sŕ$XBNrr1 #,,rGal6OS:ԯQݲ=?hn=_t].˶Eиۺ{1X4faVmbJpgd!-i+t8,m_o,c 'o,f}dǂ~gQYH,,Xuh `Q/?UPd@b uĨ"f+WM*$]ŤaLxR< dʦÙN<5ﻆ-h($` &o|{q<p]TCx+߁ŃNE0ڌY9 ]`qnb:Ytk*l꧶[X,cѭ7mu,cafcV{'bi?EbCƠ ~'WJ *==ĉ&=Ubm#_]8Xu` X895x`AR9=>;-RE *ēFqOi`DKq4`1B6v^Ï'VF,*I5| 0&ʹQa&%(Da9f[ex5dx\0m*FzZ+ E L={#1;łU svur}5f=׋>wrS}~|c,R' q/NV* =%V_2>áIWF!$&z_a"U#X@KyjB"xhyXr` X89}#X|,~JY֗Ӂ﩯׎#LrFRM 9Q2B*E('Q6fdK/,`ج"%݂ߢ DElxSsTK-a3Rm6(.6C'`f0xcAc!|#?zx~Ir=](uv<\e(_pb E56)ԢHZ}N8i-8t2\J,M`H_hꇞA-X,~|ҁs,cX\-}`ag48P1\Iꙍ'%3߿6 f6ǥskzˌ6=}+C\K{C˳I7g6 Rgl8X?' Di@M nT$IԐfB3RߢozΞݐB@A.gJv c+X?V[bGu8}ϟ]dmrϱt2oldZ:M'"m5[VDzzy"åZ&k?enj薋$3ZC؈b⥷MhXbbWv сC v)biE%q +?XOCoۙHhz&q#ǎbL6kz.+#X;)\k|U9ͻ\|6]K1hd${(~sm((|Xn8GA,xpu{)GO{x6fUŲi&rznL$35=Zcz:Q%\IW.|:I,jXLmvEFlۋEsS-/*ckQ,˧h*XX Xcp忪*r >cQMy x[޳/oB ak伢xxBK|d@ NOBJRdH P$ 1vߛ]#sscO>*)@,vY,d|pZ)D b'bs&AxZŎy.?u*{1'cak$]6=~XX@,jX ͕*o)%u=&I>rnoXRW;f 8n(` mR|v{kA,loH_.=bAqG4(( b ły˝b: bc"-B,cH7Ȝ:Si3B0x̿p`,9W s!Y?Mz!FbbbQ+P&#/bhV "4B[DM2 Ő粱ϼuT,8ᚘObOo4bbсb8YŢ&Eu&]%7Ğ2j=RFx"h佬J»L(~#0~wh  Ed(ޭK]߼=EF.cZ'IĢfx >e ;vX26  Em ֵ+BN(Dm*gNȚYjO-o+S" @@@(S,.H8X\b\x IK; (((^EbquKEbѻX\-ob6_ m31c޼=4d;7HI]FaarBgJBZ䳸ggUOG!}@@@02( &Ε^G?~GoI`fb,J`Z{K.l40`m؜m_m7[FgJ4~O@,*EK%e8b(b((  P,P,@8 -  P,[O7JU~Yս Z.uI2LMUW#`0Xbb,`rBZK:fZq"vT%7|r&1K von,ӬP\byMӉ'aϱb'X;9n3 {S\M*_&R0tl3G I PA"V? {q}>nv*C.]WSy:0sVVYj>FeuM_[Q춬Sgq=|I\Zw_Ehj2..u`cIszߌj3_+:3H`,6`!]iRj%2Pd+"@՚UNU3\5 PɫT5drLnrZGwκPYg-Ï:Cu0{#)UfOaN?3)j& 2 5|P{ރ[j2T}Xcc .cȫZڬzQ(+勖 % vWCr$QXccu,ZɼXEguٟO-`n2W#5K1EɯJ򞙌QWB,+?lSv$x/s~+~]˪.N0XKQF_>JT[t%H4Z XPiÓQ\&7j$DI$Q'iuF  nX`m(J02+^*ٶ6:yJNsIX0J,|cKPZpk 8Yi &v>\ e;m<5X|d%AmN}q/-Q钤 vX1D{W`175z2Xdטt()Tp$$-07 .JO~<`00܌cQ Y:#.b{iu=X0E-H9oAX"BZx[wuѼγ^zz>X̞Rd?,*bNbIs_+ JWdO{$č`adcߤα"l CYa0XXp+e#SKrShcyϕkse23gRt@gcax-_ U-bY:U`1h3F>\ N}STcN=+;sgZ.sد^{C1f-SH,})vk(b)0XXp+z̻h .~Tc aLS *Z*g}K4BbtUGc,xRThYˡ-[IJ~]Ӫ9~ cwlh^Q5*qn]  nXlq e)w>>ȏ /3˙q|xO}pɜ3{gg>>Wwne:cg1\ۢͧΗPl!,1/7siv>{X[J  nX~Bի09qb 6Xc0c0c0c`0c0c0c0v`,,`,`,`,c`Xe~00--00Wc/n,}_>:c绻{'nX X^}C_~ 00X|{˳}?ίi k˟2v $.R q;D ЩFgnO朤-`mxbiBzfh}rl*"jJEk1-bAXbATXD*bD"vMyɎXP,XĊEEŒƌB,łb V,T,\qtO"׻C >๫b16H,&'Z,( @,(bbwjfޟ##4{mRr;slg^;b=aUG}b1*ŎXl;if۞7n&Rzm/G\F)lyEy؞Wk*e[ˡ  @XXL;bmL( ݟcCn%Tfq,Z͗`!ػf}#ZX[fљ0x&X8WNZKg?|\ -5mmMQ{$Њłb V,RS,&/4Ofg[My5GfmY]̓MK-δJzs?+k' /2#Iu9X;`pP( H)畻RtAHj DcXP,(XP,b"-bT]gŮXEsݵ~` 9 jΒFSN'/ ܇ P,#y޽fXLYf3#?B[5dr>`@,LLU [B/rE]*ΤM͇U,( @,(bbHu9SD2c Ś4'JOUZ*GN('u Bnm{kϛ7fwXTTX"W{{gXP,(XP,b"%"g?5{P*s~+}ْȜVYQîA_:;y!˥f:=b^軤X)D,vD3bAXbAݡ IDAT [Mq"^PTσp2j7J]EZLNȽ}W,J+kTwֲŢbƄbPMWXP,(XP,b"- *")N)x#"ϕJM):"S;ojx +bբ/Ģbt 5c?_XP,(XP,b"-s,5^,6cJ5pBO3[3'Rj֖3=ZߩPfPjj})U|XKU% 2j"nsXłbAĂb+ivl ^uȖ.h9[XGszZXc"WŢbkNBB XP,(XP,b"EwVjIh/z6Xy+H,Õ;"wn?:/ 5H,fDŗAY+b?0z<812H,{{3WcRXP,XĊERۖT~x=sѪUEba?nRj% u }"Db+b?xX<y8Ѭx3sY=XzBȉl];{搊łb V,RU,>#+,-6%:KJVnU6Bd'2۶K.+cߏ]+-EW=wRȫ-ЩPwż3jԜtWj!N. Gj|QߗÈE]UFAdXy=/ntb>V48{łb V,RQ,|pbAXbA.r^ C,( @,(bq[O[|pbAXbAP,>MvXP,XĊ (3f‡ /   Xs, XP,XĊ *    XX$  @XP,łb V,(IłbAĂb+ bAXbA @RXP,XĊ XP,(XP,błbT,( @,(bAH*   XX$  @XP,łb V,(IłbAĂb+ bAXbA @RXP,XĊ XP,(XP,błbT,( @,(bAH*   XX$  @XP,łbEz~7H{ײ-O3 叾 IbAX)AM'rDR\WW{gכϧySXuY5T%Phi)MmYjڴ1 չ':e{yb"30?3ɜo(b2j'*O62b /T,b EP 4njq!\-: -%AIt[R?rܑ@7 XyMS*$߱7(p}dˌyuy- a RcQi?vxӠayfIc X@ ` X@`łnj8ĴF1Կ-{hXusK~9^Bk+s Ld| eC#Ժ;bS CdFPp1 RTlM kWzq5H$:T߂P` X@`"NE67שhV"9 Lr$w4Ԉ$UY߹#l#;DvFv~嵿U,X EmI21ƙ~^Gn/O:):@[`NB.f"W )Lgviy PngL^SDA_ X@(q:ӎ4Fwg+Xe4Z4DkX̎^~k 52Y;mT/矌| }ͦyh'qÊ͙d[bϸ'i`\U{PWm[Ѩu'_g,> X@* XESt:7&Ö<#ؗ;y i\o'"(mG\R)ķ =GKxfA|('eRX7"#HN;:S.M1͔v6t$8'9ЄTΰoE-F(]E9Kp.h_9)QDJ☲ό `Aϔ#{8ZS<5ZEzZٴpW|I$5ʪn5kx{Ttl\ FazWg^hpOޭO$!.ʴA_9@c8w޹y\:8ጯ[;5Cd&+ŏ:OOP,RVyb[=9XA2X@* XE w]XK/.NܣasL<^*Z *:{n46K0>ῲ),6 \F)v~,A!z: 7`a a6WgPHq^  6WC!re"0c˩ONu}cHZ=|~Pg)8~IMS?_T@ bPTL^Xrʡ(hpf9_~ /2̳wT!s0$u~vck:u6UX_o'·*٥{Mk }|lԣ/Zkqq`?\I8wUcD@>³y}~JQOeE!_L`3ZE#Ygm3+KY~(lƷ*t6j\t+JuK"F䁻&S-qRJU&`1 e]3N{ N$쿢Xڨ,m(F8xK"B>n'$"qvd(uHXdN1)rU]Uڴ*T@`4$gNan?})O%!/lg`).1TSNلj ϜZeNBJV˲iqyE6T4ߔ9(+r[͆B(Wyz%gU]jmt/~D*:kqfO׷^ozD5`oqT;_ dͣ>Mxi"Y;,8X0ł)Xhł#> N#^J:nn,z)Pt#'M.BK{k/ׄuK:|f$8Gآ*)A@@ jX㤴s'n XTHtAb:L"TL?nr/vUa0(I(cݫ5pvN X;;}pfATAF}-,uL< t&Ǝ3{` X0c!EXtebfj@>a9bɮ X'J)އi/Ȳ~, Z(X1K$DXHknZhb!e " ^rEHaB-l8';›mDn?f!0(tg=pRZrQ_DM3XӰn|ZAf5mwS~qdKiʸ<ޢ @y rpшi-YӢ33{` X0c`"⥘\ǕYB^w3l7bjAX =3 s ,x8nkcc^+ОHb5!8`!1`bC^0w s,\\(ba Q@M ?P%⣳9)Pp_آ`qA+%^}Q9N>$nR*v1X<&=`MX .}R.uV,R" f0('?/*qYf1`&9^ IG׾is`QRdFQsZ O[ԟx o1؋3{` X0c`z"@]UF!w.[`wSbƮ,X+tvYJاHFz ,ح[Y?ce8T(ЁE¡3h@~MUmi)!)O:Ssf1j.Fre=GoУE*+fǙe`S,6ECTW&5XqSHOBw8MMDmRc"` X0c`?nRD* B\o :U@ʮxJpH ^1z2@^N5R{('` h6Tyͮ)b݂H`x+:^/'d (0k?xQY" ENr#.E\G5XxPJ$9P?'SPc=N#F5 ,pS,bS, kLUQTsǮ&>^0M%,:< 7;G ž NH-u^1-o ,a%%6bѨ|sWo,%j 2WzRF'3]s,FBQvHOf4_Ψ'qfoJi(AbuW@CE\Cɂ}Cz# Ot-(wٓzIH:e:30ł$DT`-|`'ԇ jԝbő5 tg߀Oi|_`ѠUVwgX3?V,b V,~БM\Ssv=m+Ę(@JMhbd&zZ̎-Y->Uwiwll-Űl {6㟂{~nK(۪2*ٸAm'ƏjG2[֠>yOUWQ+cq]{2S3.}mBmϷRBVw7g-.k` aMTg,`jSRv , X6bKJgRΠV;ȆTHon528E#⭬f3'5Sǝ丆xPLn\gV?ԃ]H҈!jUB>I?cU5uuA1PcÞ5נhl{WAe&Rtqc XBu`Xʊ`.j?֪|, S|[/f~S"uKl6T9y E~T7`.V,a6t%D FIGp 2"2z9M/_@/[H&Zd i^HgH&%nEH̫iei$2/Q.I@؀W +$u^(~*B ` L)[uEQeD!6/sTӈ&EP/BQԾu[jߒ@t뜺E? #)1:(r3g- 5X]r@҈9UE+X})5CC= eynghH0e0Yfsgs~4 b~B+zI޳ `aXS\\m+GP F#E L#Nog$6t/{Ӧ£X(.>4ecU_M3#l9Q#oz/ X`ũ#s IDAT+0XElfPH1&Da*s.q`HK J7mY>ZOg$L:EeIOS Yn;L1T^,{ꠥTչ]`W~5gޟ ?< NoʜA!s\,e &|nTO$ 9I%Q0ZHV,b EX 9xDjU=PZ*Xs-SݡZ煉\㴆W,׬bXl˶̦k &Q˝*oV=JeR({czD^%Qym CKp5SZ_MӬa*PTY%f.vk&g \M}|. X6 aQ,8M )cЎ61ެ%2F#uW3Db`+ o:p4AАn{(R(O[9Gn^9*_6Cڗ`?_Z?g!!LۑΡ5t,)*ǑSRZi~x*4VsMYWa X`(ՊCI#shJDjܶqyj:8D`So_-^ 84Y_U˝BߊKN3p=*FlnaGFLVmYW;w31bi ծ~tDN7EhluW*f{747 XퟂV,b EX 򲤶cugƄeg>X\XPw>, H$dtwlߴx*7Y޿;޴>~>Ko`5Ĥ "\ddh"H%(( vYe9h 4HJ عHipNZ6߈]S<ž媝8GT==v*x]NC.łQu8ĒR=^tZq|4XXXXXŮ olF7bQ'ĢҸR}W8k$ͺb_SjNDf6=# zBTh|4슅~Jj4,_\Ͼ*eb&P-Y"TXXXXXŮ ̴d>W,.:DVWbypX d~2z[vm4SµbUK3+|]"a37ZqOJR_5:.Iu'jtxs==Wf+Rl6]S1ɥwA_-^%h m@,v>$~tUO9BBѪ u8$jn VN`| ͡    !'y\lj<̎q[h-䄖Ҟw(C,P,P,bwm@,X$(l+((bboۊXXbbbbb (XXXXX)(l+((bboۊXXbbbbb (XXXXXͥ%o^x#533:FbbbN؝bAE o/k#JrC~uW ħ ]<=  !((+]) _zWlGbUT "n^}Ts7bfC!n],. CI uV5j܈*w}NJI,P,V,P,P,bWj|X`~4g.QHi_kxSJ|W,X 15Ϗ̪a9(7"鍃B=5_}BqJY:qg-I:9sL0kƘX_ɴZˇW5)؇ǠnbQ,P,P,bWoyh[^\_\H)W,F,]pJ/ ~ɾZ, ?ٻDr-}%\Eq P KG с⁴F h%Qs4xcWA&3gd-) T۶j//+ULUXC[^}ݲ/MXfoĔ,ճ+7jX;g1ӯEH= ݎ  - (P,MQ,xՍ*5BXl_Y/3bnاw?V/k| 9%P"~#Sv,@]=f֏b)=( A,>H%94Vb bQrԷaM7IˣP]r#4_Q((.bؘXrY2_BV˴xv&f+ }Ǭ_t>D5:>e{X\T궥Y.h4ҚF+_&;gr>)Ab)J}Z,=o۝^ĵ}J:in:f:t|sn:b퓖qD-55*w>x bc޼MI6rl;'ti$mDݩ]h]b&-~LjJ.:}8j\a'R5|7>#c%MG۱7 AP=aǜßɞTurZGwjѿU@EvzhVd1Ar\e+& (Ŧ(nIM/bi Ɍ2+vQ C&2+bi|4y^wB}&bSdKt?2! S>fG9i(bb)aE`A>n7z~IE%-nRE2m 4dzW2HJ/Pbvy!V0/T\=̻.nQͲ:o"J\ʎEQUY ,W{-KqJKd,2{BB f72 e|C*9n%54q537;: ejU%Eיr^YHRe\eefoU>0^R> /6VHw kFr7bCΡ>KqjA,e%G%|:f&Cd6;,xAL4^b (P,MQ,X|>}amȃ?L"L>ص>W=D#I+&==G`ܔx Q-Y+:E"J? 4MBM&LNaPEx&wۢB#U\e,8"amUn|-;;é׋# #27SNc2<ҬtmM"%(LFQyL79e|B\r=覤B5$@p;djbd9kR o-^uqNa^lޑ9u/7$^ L=tG/Z'e?`H3//^;/hrؖ"ҝt->[CT#Kڹuq͍x+WH1iF][ 媥EGt(f⍉.jB|uBbw*jw1t?PLِ/T+Lb0<6\*赤)V Qwrno$U>a.S895St$Ix'] =3/,vKnKdD mэ+<9UMN ]$ki4ލF}WcIcKb҉)aiUnNu&xb2clzպ0JM@Q UHA!B(ibƉ97'Ϥ&YXW;: ½,~PGV`n$yi԰?ҹ,uUŕzy//DՏd1.Ea!Iq*+;H"{ 4^`y*B$g*Sm&z58^. ?٠OP1*ro5 \! ѯiC䑝]RVG*Yk@tn*˝fʐڰ6c~HC"owh[̪zd|s ]X[pocq]wXu/t,4#Ic3.MKpV=N: G|'$lȪc+f#}AsCȴw+9.x@*y `V8<NadߚzR0S|dHΰp޹<}GՁw@'-q S'į[ns 32`C֛p$2mWЛ L~ >vt%D13Ӆd)pÕ]&Fwq7 7gl 1"<8lL>'fc֘ZժC|qbrN/#zLzHQ)I<زXRG H.3e03%+gV]_ Bh,8qlG DM5eܤWt_%bwQih;ַoԈ?>#V1|lfV̼(?AM" ,M@Hijo-|:b9xz DWuF6x$o,]wcq]бvgRIiD9%$YQV= y" k|iod!]q=Ur+:3EnFy(nBQ0o '~r HςQs]2EȎG@&}~N0 WNV^H%'V~tkL7-8 XZ5Q+nms^tioYkv{,nIr\>;9ʏ`s~]V*oU>cC# k96kn d ;m]& qcg`@]F2SƷE;ً Q:N8ŤQ|U͡֎_=S෎>'49g[.=od6(Cn˄/IZnFLU%T*{5W+2RQ^6h/ .\o]̩9S8E4xyK-`\DeIn)xۛwBxB+UUJtp=Ka^klFH5 Q׊z {o' :l2TBq.jL ۪ Nx]^ g$'Zc[TYE,;>MmĆW~ݱ뮻cqw,9sO)$'UL8rW_s O u&~}H1X0+FC_o 2cU9Ibz#o*=7Zϕvņ3aPY챿"^u6̺l,-յAk0*ɕ$zaњJ+7?g,L xAn],i?lLݯ#,m1"[f7o;wӛ*)*ZbE"%/@%`(51HaRguy ;zoNrs⚢;-ˏv?‚qp7~DB,,0P@ܻ Ame[Ecq+d#E.@0,OX]8eyY[JpW4Aգ᮪PxC-gNzo[wӌCDoqPAguROʣGLSo,WYv%% s&MKgY{;CahI Z,A>%BXksnPӚƀ ,K3ͼ]vJIFlC:Dv-{Ť 30\a<] y2N(  t ܺ&hǻB'=B0;o6]U\w~X 5;hƖ͇hF a(|BDwa=B$tXv Pz:c3h(=؋@ !WK>a>IK~E27kܻ{׉ï1w߲^׎5qX\;׸ر@2ZlˬLxq1~+4ѬI&cWck# hnٿcfMuBD9͎pvoI0 kᐪ.w*z>fsa:}VZ;ɉLg6OXz&Ya]oӓOMYYIF*',ʫ} Lr޴BL _ѣ=tԝ3ue秳'qO5?+<|DZTn+S.Iq$~?&ɅKV q)1~qwىFQi}N+,k>Nrշ|4 SK㺔J\',͠PR37"@[HQa!/Mɐ䧫T07ZzU9~t{26=s OXxndBX`Dhu1UahcKfŅa|\#R?4ÁxTa!-߰hnc➀CXXke $70CzZe(|ҷ <,3ҷ3[錠ZR2\qwK1EBҥQGgݿ/k׸v,k\X>(4([1࠽u~p5mFL8]Y,{\-0M׾KvmM)q>;vVKUHefHkxLXv6|0I58Qr~hLr39,ivf̑ lK=:x'UpKA5B-Paq"dm4*PS/ecT[9K .hD`ꢫ5BFDžquӫaK cOHhkL!+L 餾A)R&ыl8#rW_=$"]`NI,X[bZc_`qYcBK:2rݶ@D YH:ػĕ0I UFWHN he]$fÍΫcE$B;wfZy>e޳5<ת.q߳FFa`۽~1v§质4e9TpzU ~-7ʡ 2|RwvebCLho gjqYS tL4w7ȾRdBO/V/',"{;[ds8a\iN]bG'ڨ `&[B"F?hҨ*tR>X~r&:'N;Dm03 }&Íᢑ`C  p,@X@X3AN}cRP8P<[+BBŧx|]S+ԹoL  a>,W*"~0E m&{:SD_r-'dsrٍmPifl+E-dj ǰѼc̴n([dо21y]ZUqCpT|+[AV9N[E|nIޓke|l;tX#P-pdk(f9jk#'2f iym90jʲw|CTJsd $w*(tױ;=j(ǎ]yE؍ϝv׶lۇ |RuW<&=DXvj 2':N|eVj!Alf2 vi=`:6NmLaZi0Yj{Y:vQ7C]´ȗSYg$gsDRu,:][sofϯ/Ucq*ԛRfZ#)>w5RͦhnExt](D/_TXa՜#妹Hc|CF[MgrY`"- #2lj)U܈ 3-%D) "!y 3jh0%_tXXc4/A|H7I*ЬP:+w&AՏNwp#[ "IQH8LkB)2՝ f1/ xH?X )1խC^tG F1 tn,3ŠkO(-ڄls{˵rCaN&#$F/nD_la*!⏅7h@DFIhԐP>Ex2E?s]7D8M4r M"rL*U8^|u"hwI A^472˫>%}Į8"x|0 6]L%.XzIx55#[^ku/[ r95ސğdɗ;3dp,' p,x g\>凬H3xlv~ݵjorq,>9 P 5V 9K ) p, ,^chk׏k:3+[==-bR'4/?ī ,e8_sn4-(_UXc q,W p,Y8X@XcS8 p, , `Va8XTa0  p,1|xzD Sjk1LY"}w$錱-H!rߣK/ ԇ{d;Ϝz{wonUŮbkbWU,vmG,~3)uVbR:v8(7HJ K$EP6PYʝ.gi aY4V  N^YVdF3IA<ȄXpW/XW,OU* R$`Pa< TFT!`2<> - Q"J!ox$4 HD24S*yEi˹,QV_ Z ,ME/bZ$#dr̐ica{K6 L D BQ,4s|*cXp^Ns9R)2vscGS4P5⅔nkXJIYX&TDɉ)"K*A24\-jd" YLpIrD1|.=o^llFM-HH>A𻥭*1^gS10jHҙc#+(q4cE}%ZttfI3m]eFm0P|踺vv])<=Men'gŸt@QJLIoXKJ'tu]&^F`x^ =bLŰ{_ړ~:;ʙʹ#kMr1aqyҕ;V(PՕ ϨR^[1rO;Fx`>_F^OK7S׉{'p"-&^gNF[:&ߣ#"'=>?lNKʈ7`xJM8``1ic=Y5H~"-&a0Camx\ڱd^T0bI3\-( `Z%{2UGL#Edthm~>LXŔ@B{lPGԚ!i+ lqoK߾ ]ص]-UYf3 Lw0WIi&ǭ2P(RWYKnn"=;;F2|X8E0IX͎f )83XAH`al_-;BcC'KG?6Ju~=f£ɍ. {cYfL~TI²H?m/Hx'$=vRy XJхUKζuDAQ*)*uG9 MZz^Lc#[Ҧȳ&bq0uIl*?iС]R5y*y].Ͳzj "߸bbi7Ǽ*qC*4VhǞKW2ŭ[cqk,n/l, {) dFnG-ab}x6E*7duqag^Z?Rw)Nmtp|nk>M߰b&kr#} 4 Ci>>,Ng/~uǰ(²at p?X+4Ebv oXxZ01,ޠChZD/g'M`dMƂ!14[- -Z+{ǰF0./ހ<"Nk(}=-eY>O]ACˈFO,:~N  +1,;սO ogŞv{^#X0,` I`aqe o<>N=nC'b,z}Va_BE8Eﳬ3rk媺Ѫ4x,we(q|R& %R^4BQ 0 ;1ja\>рӓs,]s:""Q,X(Ee%gXu!Mh%$jPe5/ҰڅĂjvtE)l١T!(W$⭽P2 7|A>Jk|?,i Q&es^Xš9 ,T5LC jPQ7fMe%yY`i${,yt0@"VO+;y~}<КP;8|{[v :tmo@v$ICmmQ>2?m| Z(^N.UPz.<~y1f: Uv"F_[$*=8Evp'PNXIa!OXjKNBlq)8ԟaQZ$gʸȖ;~$P[P ),U?@ۯ@g\k?E8ܣݠ %&b@2 @r ZB4N;Co䫟XT\m 狓[&l;}yρu3lEE =&A EzA ]Ǥp;4"dn_N‘H mn~+=\1IȺY N G-Y3ʅ,nŭnuK,nŭnoK,E}W',N@ |Mk%/c8wE7[:OƸ4ʸk9 V`wX63x7TeUSXtB8Po#/\nCOvl{ͺ/Vb1c}7gcxiCz? Eԃu/rX)9ǂ.n4Tc{e=uHvYʛ9gSX|&Br .ٻjijôWOg(Ͼ*.EMI!:)mҸ\ rUSmF#t9; KUƵؑ;e%a0y'S|V,) eUKo Ql,JEUHճ41~'`*L:#xQ;Jdk=cp> 6" D3pU_L?0g]0 u h Ī0pŸ\tl0p7L}E 2C_>JwYZ|zo@E5 H⢺+UNL.- ^ʿw5-u&q}?ߔ2E)-lFk:fؓ_hVϻ oN)m귺df*wD[ʆ:|h{#[Ե{slcUml۷νY88_ٱ@euYW-wC8ԋJ1eg ̰l%CJK7F&vT65ׂքq^9$˸9=۬g"E6s;i~gbtDtUm*bw\/?;2YNcf:8&'M531BD rDFrb0, qTQ!0b3xQ߱0YSd"H:-1UC:UeDC(l o% UBo@'d|M1(.oG7cP-a=DMbl[!BO@+e0WYm iƔʍ΃6ol$cQ|VXdK l`*Z |A,Dأl`L]dQ_'MFa/.ZɺTX.cᱟy NRW~>=0:6x ⅷ$t۝6tv6) DR+ŒJvX}fkw&pU$<B$ά*zLȪY0FY۬7cc׮ aK%q,$͢ѝĆ)&ݛl]Q/JJ,NH6CqOC,AU%'lST|D,ޏ\y@ w×kdl/nRj/|s vR~j%uI[ _B1qJ+Um[ٰ49\":BGH#+V  p, ,cOQHvjYDcVOyR~q67$.\Ͼ09}8]3}s &or vYyRؖFjO<*,+, 8  p,  p, ,|=v?RXcWXcH8_ғHՍcEѳ7ƒ9J|nx,&< 3gp-OXn ϤjOv9\6*   p, ,ڠ7r}cxxZ;2ֳ39gջ\8$ $U֨v~S;vs,(+MMOVk)ĬT>P :χu%୰8  p,#$3ǗӜ(˫_?qakUU?<`d[>2ꃪ_Cy巭F[Ul>(.ͼmT~it?->Lw/ȹ#役+)DqqIuD?޼`&]K. &_=|hG~ppphk5D\Ku!1Ϡ ;PGãþ8d-FSaBP*$"QgK)tQLzcө U.ҊৢAJT:e"-6'G'-A~0cic&Kn\ G)b:@C$CƼ#B=x{O ?Hgw GBI[{ߧkrq24DfEm'h@`ĢXi ۥii #>=r燻I}=zuσ$IՎ+(V 7ρN>K}u;2ͪqa΃:'T8aD4qT\!p4]5As}MQdP3w @ $_6}cP"8^v2|%,Ipj>|M/l|}pS' (SDv˖\`̹q5f+_p]'b4N\WT,tGj5 0 f)HV+x ՚Êfvݷ;T㬱0 Ijw,Hʬ\4Gafm_=4jl>? x jbam?ba+`T `5)i 0xM M  V*[?(~SE߭<:{SڗoLQ"p$OlB/~>mewmʠZ)&X(%v*\1Q<:ǏOph4 U{N:ű”^/pL_%Uٲk2\;xakӱQYOF- xğL0Q:]0"8_UvI18bٽBev KMW*ӣw㣙7۹x.{C9,7Mg$Sn譾jrZL[cCPwMyX(ls5^fTJiN5uIXҫ=P6OTk:Xq0һOxtt-<'0MAptd/{ AR<9;5>]-L' 9s^g}wjax,6b(%yAY2U4Mֆ`Z %5jw۲0 $5/O&h,d؋M/@0r1m>ksPd%`lʖrVGf6&XM,ЧvۊmX؊XfSQ,FM6 ]hFW*J=FuA`**@yJP&Iu"R$$%/PpҦCj"5SV\M ǣ`QwxOя@$7]JMX8 ~[:޿X̝:p>wvy<̗{-Ɵ%6w;=SXH@"ݛxE,$>v*=X4AuU@n6IXԿ,_fc\qgv@_%#S.דo8;:^XSknQQl%Z ע39Y _ߎBižʖ<,N[% RQUڊCm_,,q}sMʝ8Cl!kT=\2aۿ;gy7' )3]w^{<_@?{HeX\m,"ntӥ;\5akbNov(Tbp Yք./.X# ݡa"+>t7}%:^jhTwcDiӎrSH_ |$Q$FjinO2Du\ʃB!OSm_m;}?L!u;>t:R5>_/2G +ʪ_XXU,Kba)5/ńqv"}Z;ETXN1#NVCКhnpH/z5ʹ<`vKӣ!n~X}q}] k, ed|WDEh?E|+>XQ' kBSI &,߹puΎ 3$uH_he7dQtVQXA& \`5ATͷĻ\;,*8,`tSEixc'ΟaqFs%%J*d+ sb1X$@5f:?Ҥ7XUV@%puxLT*R)n>]v!AS v04Iod'}Z@ּ&6߇{{p%Oݍm.Cz%xs]\Rg@0M҉` IDAT0-s0 2 >`N`+s҇ x էXG=r{Azf`Q;v&*ۭS,k,<黠H}3{+bE qݻ[J ze'-xovȴO-9NUrM;16Box_/Y8eCGC8yh5w1[x`]fCTc\ѫ9m?KuU8XӕWlcVynC<3S)-ɃŢ'~r>%Urxm^פRJ˹s1η5vkx"b?M/ S~fP~ >W I!֪47r`c@ X 0?\;$=霝pIic\MN޿}fIظ<際Ht7M'kB:Nrg#MNr<]{/þdʴ VɻQABccapu OXeTbX9Vf8B;]QySE&nA`,Eb,Z\s9yEv 蹟#nѢzxPc-@catꐯ>N|U3 P5* n,`,`, a1 Sm%ը`,EX0,`,`, ~@   `c7  00n 0,`,`,,`,7XXX  1XXo07ξ+Xr00%w !88}S_&we n,`,`,jA1,gs$}7%XY"FQo9س"Y;S>Vc^:WJ[? Ib  c-@cWUbn&F@jyڻru;kqKdrEpL*{hnԃ“«&FV$9\9<}\{٫zZHZUvg+`c@ X 7kzLn=W6ԈW"GdrMa?=iDɕ]',3>l1 UlD9 ]NIb&P5n`!ͰVmz|v˅%ShsJ#n#FsQwz"e>Fl5$*yA0"XXXA1HbAtmQؗ*ž.EU1)ZF_׊6͚_kT5lO-ėV5mZXgXU5C*>b;WWC\Q[8@xQG*˻t5N^ D4*d.kJhE6M4hD/i\|L`'5UՈ8[   bP? ʮzc^.ogX^usHf)7b@Յ(+LiXXa4:֞[&bT8f3GOeZms7T)7‰XQg8@ Ts/>F[ƒ*Y,B%HJ7ɫL~%:{ǕB+Ľr&E;Zp70"XXX]M#J+5ryOY\ɴ&ꦠj bcY:{ItJ+ӊ%مoWO֥TUtU뻲mypً Fy ''$u3zR "ή5qmß/6ʛM|XB uq'T^W':i;to9`{`ZD߬RPZR}>^L)L8 ۫ҝ0R.=L*%NBJލ     ؕbA%&rĶ\9 dn!~UnrK!#3Lm{[޺Y7w}RmsetDNC Et[3hy9m/8N^$b(osX ,lMJDom|`C?HƓ.A:2iL?)]ϥj._Fiv -ƙp<v[,P,V,P,P,bWQg9lG0,3:hW,bU \AEs;1FUUDqj HƲmXx5LSu˽vّM! s@.QUbfJb.CcewmGczBr$N12X*y<$G#:%ó7B9@,vXp<+qs,O4ҀJFIiXRfEC$Ye<<U2M67S-( &DR?{% Y( g<LJJ<"wRL֘X1Qx% t}W¨;=F(XXX'vXlw}~9av!傯gF/ro']_u%s~._vpd_ ~C,P,P,V;S,y9qxH@sSC!y;?YuG3  ~C,P,P,VR,H<;6k̈P׷|doIԋaDb8a !³ؙVIQ/^9 8;p&1>XXXXXŮ Vqf=qjƅ~LO[ yJ8*7o>?% ~-$t /7]XI.wVlLϠm`T(/S(^.@_&"mƄ Y_`TqģX73.?0!#!((b+B5݄V*Beb$h+CQ:.U'*aֱ-]J 5'tQ=8k,=KĵC.J!( 'Lb!((b+B*Ah('Eչi͛_ơL &nT"?e`p}S=Ϫ7浑ԾۧĶufj̃=8UlԐW/y`' wR:u 8XǪPnxSf>9hu1룽xeGZ݉r=vJT۰X;>\y1-z-(l+((b+łF?쪦jaZGćsc 'WNUkWzU+;D7}( Q)`k@C]H+u5jF Ġ7q]W]/ln>sN|064}c=^Y}C6i*Cy+!||\+s!/ \sj;'щZL䟆Xc,;F(lWE]8FRDVѵO4}06Ω: ?Oق3 4Fmmjf(L%|@, 817.q(VU-X׬]Eg'zq--^FIΊyU .u!D6_4[3ִ<%bY=6YZaXE$ek6vis3vNXS +Xh{s'Ab H, @,%AW5BSl5Ҽj-kי"ɻ ~͓\֨ǨnwNֲ.}EY= e߆vȰnDЗJ)S-2>gjjVxeɏ&\T1>y8R P$} _A06I`ܯ`k H,b$TǒX^.7k8?+1z%IPјg 1%QNgԛ7baY7 o'OGE;@,7b*X@bX@bu biaPSHd[łc`n/Y]W1W80[!s|Ib8E0 IXb*X@bXh?Fs]yKᦶ-ߔ0G1+WOvb1Y^ =F6"f S]Tڈ_'A/\Db7+u5̤vXf2%JXᷰ@bO H, @,^Lb(#r_?hGn b)}pGD}Fݶs iܶ:l=&O\Xv;xZiCb Ҷ;"IJk[Zd_nf FC~Ta -W?D os X@b@kR V >1F.t}Wkf,_#p7QZ__o N!_|7WNV1-xU4X;cſ,#&\oZ/BH IDAT"z͟yOTOS!A)BDn+{E ً󓑈nྴmncm 9DڻW)Xb$KI,yՊRÂG )P^+J'U1Uĩx 99a1eȳ®"՛TxzKE՘d/ڐߜTPXܽ}37@.>Q"V&^ y{L(A {UzATR`+xeEiǘ zZsׂ X@bXĂ뻂9#zw>^dv>{/2UKRpQ<(E6=#ni4@]͇7QD8=-;l^ibJ z3|I碙y3&Z{X3cN7& a=G?y:ZM7`T%^D=ybǞ^W2fw2zӌ NCm~@] *ŞcWoAbO H, @,^Lb&VAU/kYG/%lΆz$7&e~GY-L ;ѝX-af5gZ̩q53>H\4zf9mD+?GՌ= }خvt;.ElHSE6pE#$gq4}=*YynnΞi;O"VoW9\ xX@bbR ̚_ qP#!HOoy60~7s0qVnty8XVٝFSSz$҃Lwѭ~ \+S/{z'tu'Jpe!QEFwJ<ѬIuLsdMk H,`U $,;gE-W+ê;L4gwbxp:B$6.֧;\m`9 kajޅJjzzf V{+LL/;1O~b('fZeD)LDY0f'옺Mb"e};ٚh*5 xX@bbR mR$zt]X| '7XyboH(Q+Nw֒!O,Bd+2Fj;޴=~>ǏmLp yoKEH(b,˪|kN[5SwQBON(AYY,{\;e>a6CÈKc"mDuVq&'EZ{'+     ؕbRyVvQ(: E}S ǾXT'm!̯Z0b+>2L'^a(_|]D(YR!w~58z J|BJjUy4Y QI19ѬbX6hD:{, ୋXX<"-^J;կJnYXIq3l=ḱmvz)ZǑrبq1Sz,|}CiNBM" |b|VAwi];nvռ^7E螦.zx0?4NjΐڗfŨ* b޺XXXR,XuYXQD1$Jz't*j\XhHiF7`XC#޶c9!xy'Dp\(xMqtWy-<(#S"2Qٛ Z4/Jy{9o*Y`i8̋mV_7bbbb0ZJJsSS,Q7gqP,xXXXŮAgG?d_/X-) (l-((bJ/<ѯ#~zϟ`*bbbbb X.84(@,P,P, m@,P,Y@`[@@  xV,P,V,P,P,     @gm@,P,Y@`[@@  xV,P,V,P,P,Oϝ1 I5$/   awK8\e$ ٰpouDBEcVۊ@+łr> GՃ?},/Pf\_hhbe xkpDZ/pW:geVoy~쨰X@@])4wkf- X~UPZ'wN;za9˜cX.; -#a?]Ikgj /Eاhյy9k3[O!yYxۦ)K_d:t>"i NpŧQwP,P,V,P,P,bWSr"k6vTg$j7ѩ˦:G"'TLX#jN,=l]#;5smÛxN`%H+'H =uv)DzxB|}ej:*Fr:oVeb9 stN$rPxո}getGqNOb̰ɱBRBS;wڐwmFbbb R,C"$†mʛhneٓ;VWYO7`,6])WX֦km c4[hضl+ź;6Ԥ+gǾ !Zgmvb1 ~}ة&iZUbVgY kβ3l1ف94/7 oeF7n-J|h|YyKl =XRCwRvDbbb R,;j+FFu.O/oMG]@`VQW4Ծms)A!9M`jMzcXwm uQ;I뷘Do/FDY` /pl'@kUce+ݙeTofAwq}t鉅X;lz46uŸ5ao3=\ q~VFtm@,vXpwVo7 5O,סE G_R4QڕX?enCeT/s싅%]COn\8l>}yjc#؏*"o/&m?IZVĊۈUs\m8G[f+Yl[1:W4bؒXzbAs~#(\h2P8~gۜ'udƭHbXʠK 68’#E>{{ed>o+鯬E@b_W, 8Ă(KA֯Ţ,ra;v݋E]{,݆0 O|nnّukXqoJ˲\L>Y`d_eQTO-|=?N5=bO/Gzú"~Oiz#gwⶢ+aʺEfV#ZXG3|%ܭ_H^TWGXPm<05b^qbyۋE:|oTE2-pZJ虡ihGu慂>!X@bXJbHbI=4QsΪTrzsl f qK sgT KҨW Ͷ/*޳Ny_^ Qkq{Iū])xաŻnǮW\a*D»n35}rMq̣ܮ!el;qLJ+uZjۍB/}GƸ[Oy<#0f8ν5yTo`N9ž2*X@bXLb0sYruXH9>_Y֠7eY֪ !ElP# uh6YEx[q*X@bX|[WGq:հR1Չ nl"ɆE, V잇[x4\t"Jc b H,b$WI,X\dc64 1)oK,)0wQEq{`FO$Q Xo:G\2xSHPe~I#oN)J6"gN Zf9&|'昢g X@b H, @, E'wʓ厏w㻫oޟb{5=y 0zEҮmVՆwbMM >#XG H, H,ߠD\>u4i4"FF7VMF+ݑ-kn~Dpm1-@2"_D֖Xgo',K{3HleָH j P!TkS5ޮ۳@M؋K~c``}PN@,P,n|0I %SQPcA]\ uq]0ũ꽣Fb/d`Dܝpw0uUlĨn-fT&Β9bbb0E 555.qQӏ-'ט5muW2g/bro2f0w){v77BccKuP@bbS@@ԢXܖ=nm/.GC,P,p*((M[3Dh̨ЇXXT,P,P,bpE@_.t.bnq0E(   X NA[2q$Cs9.xp kk؃<N@,X0`m=ڏ~ce#'+։k5{Z1V"}ցF9-zbbS@@A)q9/M83IJպeJl)up>EToK-Aʅcu0[{nlKJ2!bSbmF@XXXŠ )+@,XPmn%5HcNM3o+r_agHEs5nİQ7 QwK~D֛N(T.뉭&h_k{#-_X >|y~@,XPU/TʅⓍFj(՚[w9}p\QCXT[jfP -/!, u-Y$&v $*jwVlO#\"3\WXЏXXXŠ o3+z%g2Oba (4%J&Xy>iZX׋^>]ji!Feb$  X JQOtZ8dj<~;׫#26i&+%K,PYE(\ˈH@ojipo՚ZȈML&sYwp6܉/xeP,G,P,P,b`76ne$D[9cz4:u<#n.=¿T/OK?X79),JKUElw8o\iymTWZrl#XЏXXXŠ /)n *sFe 0fk>'ɰiʪB)YD%/sSb, Y}X J0x2`)(8   bAs͂ilz XXT,P,P,;)$8+(8   NE|~{p]@XXXwS,ۋN@,b\,P,p*((bb jcbbb0EyىPpWgbbb (7={e6YZc   XXܼX<{A^}l?7Q:~abW2CÚ @,P,n^,?5 /aǴHHZ0?rn=ʱ_@@@*vT3_kj5w)a~<';)uo1m'>[.>ڽs "v;jUnXXT,P,P,bpa_P- ,*l#ͤ<0PNIփ R3<_N+]SWR@XXX -5RA_ozK(%Wr[B}xr Bimwj{w>|m~O\嫅__<⷇'ݣ/_;?>sb\ kMgő)=l2(42|\LħZq-hx}r(^-V}De2ʏlyN=5Պ T,P,p*((b18B_?v;۞ĕ>bT((Z(EܥB  J6d(.qQ?n=/hk` I7?5rg9 IDAT _) K6ΫUl'cm[ޝ@[0jq E`(F}]m,/2863 so.,H@lj,Kpح6:ƨ7C:+mßFg&u?Z?yqx>8iH#wž9b:v>ky_fi|6Sx̑rڣ6c2|sGl~A` k h,` Xcyk3n$!IO;|,)cbJ]mQ c"']$pR<>g&d:iȦMNӬ Kaĝ :*;> 9ޚ+ON0/`zOF>Ɲvp,u7u{NTEOKL2(uM5 Ѥ9{,5KN ɚ[ujqE(pDžΒ+>7V4EX*; w|P`40,ލ@kV[,N;?bc!9zʓ,c[K΄gp8dkJO; q EkDB(uV'yc4&wlٝtm;Vx^,s%?oѻKuU.ݗ}\n;qnqzrfeC; Sžs#'eu/[r G*t2*X8pV#}T8)V05R,`>(X@cZ XTƸׅ":$xEP7 .WvD +.)`1kit!c vR DMeK9N]侵Zaux-8vf۲,xJb=xf!:쟝)XoC(` Oǿ:` _Ο=u>]o`qij̈VYOͣ>cX̺N;Ks'Y`a ׂ4X@x/*WN"F\-/8M%}٦\)` I,4uL*^e6{B"kiU;+r/`Q4zV,*]OH9?Ƣ{v ǫn i\`uǁ_6?Xn=g:ǹۙcĐWߖa,,&QRxIe) ̇ h,``^ X@c xle}B+4 X XMpb,G6*)R| X0]8}h.n -vt d$y㭧_Ks6ڃ}׻:3V hx88/uWfQA -v+u5E@ ~ܹ_0+`E"qjVdG h,``^ X@c o<#5[7r-k xSW"DŽ$S‘t֛e-kb\:F#̑նڎvPi#] Q͙cN q^vBNh̾}ʾuyn`8޾[|xwnnΞR:>$ 4ښ&-ڨdVJa˱|:cDZ(6ҝ؅t.|]-(JZRBQݨR T:  aT( X,{1Rpj\P.?=:i0oǽ!6!A~Jz?Mߘ Mϸ&CpIB b,3W`v8hjn3.  h,``^ X@c @2<0$`|R_QsnЫ~&_Q7 uϪ1 &hz¬PzFCPBGBiS.QjwSDKt9꾴bbXNbQn ݹ./4Ԋ^{m?nKUʺ|SQotRVE~:vh\~cJaG'?[j)z|nrvY^Z  $b2Msٶ4էq_g/2*%6pCz8XPVeUd/rR`W]:4T$1 NE)^xZގUiwϩu7ǧr  $b*E[짌2>n$+T,_3GK,6~i4NڨqA}WFiU\\/uR[)&#+2okҫ v$(:f~5 $ $H,bU : H˕֝LX)ĢKE&jX dzM?ĂVP,"Kd޿g! XÝFYeZoZqy$6 Q\"; B,X`W,X UI, uOm緱n"t,8mC!ubg&&z2XN.r>E!ƛ x΃BfI:eA,X+@b]@b@,V%׳<#>u65!z#5ԮQce}yuۮE[uWRLaP0IM`^kHMVL$g3jWG'kr~b!4VHK0r5_noJΒ%[s捲ն7S[Mz}VknY7guB}I΅;!,?:da_&H,+H,XŪ$$g¢{ۯ#a= Sb)q֚^ES= *YbpDt]aBe:\+q1.2'yJxř3`)SxF D 7ָFAcXj,~o[{pfc͆/16g3kGkԙ^r K7ϚqP[Jpgx] cv XĂV>ZCQkhxY[}<̹3eny$xJl8  $b:X;k崟|ԳSHepߎso'z]鄪瘛cE:>lWMw/~mgȗ>Ϧ`,ᔆNQI6NL/VT9ZvF W$g7Fcd‘QlL,u~;D5>" _0( RjhӊM%FM/\,I\9'{Y 忐{]#?Չm}400eAxG⧬FR S8tL'>1ޟ=603Ǹ"/kGy-Dq-_رW"v,b"V /o'?F<9rKnDLK hR0Bi/TESS$0zy?˕4T.(FY=r A5uRThl 4#uʈB|^ Ѭ`(E4Dk1,v%Z(i F3/`bJ$ "h!HʼnYN68w)fD7s H$ɦWCPXq`ejtY>_f55iV &sP fLQ$_˵TX,S*)j0JeUy p"mUJjB,—A3  8ݻ0EMiBTaVS*BiX^*kdIB٬aKHi6/TX(pbYAZ&`ˬ`pCCbEرW"v,b"V /xBf)rx֯& =ut3[#c#Gg#ϵL~o'T8;=ͳ Xmyngo~Eh(G#ϠmM WBksf+5r v|0vJw]MOE@NJͪ})tX(vFXh5V -s!nV&LNޒZNXl@i~KyTgkRVn}z ]ד q=mqW|0>/>fx4ܘ?D`g2W쥃0},`fh^FOu Vve%dpNf9co~_6SU,''t}:y!YXVw jiFjהr8cR uG.lX~P`AAj5og?٬kQ_޼ 'Mt+\ vw Fs $oJkX-ݡ<땵>u az? es>ZU~)xceucuZOpz {n5k5p*ؤť:OX jRFe+:}炧"5y.4/mx'ͺ:s҇,ęIsks,~~3XĎEX c;b{y>w-Ũ]3с+~ې n NNݴYxfWQ s+_I8([6c+DȿF6 !k=9d AZO:mz<ZT9O,X =laո閂U߉W`_kA"x2n5{3#C/ 8hr::sv/g=2xAgӂ'y(h/X_ d;g|e,һar4]?}]Z-OɏyuMT-tmo "u);OBAHFKhw3Τ[PE'5 d2r(mA7w/jm?_ W$)KԈDāPAQ4cĚ9rO9;>=ɞg1!y~Ht*T!&d}*%Y) % 2N=Ģk>mICtmhv+e-j_ԴWdp8sZZ,Q#nϫ>,o-gx;ѭX0 BAqV 7dUsS4`QKKD0SO8O rJ@+,|U} 0KVa EJ&m?!Xdo;3$vfG~9GkגwQ`c':_US -Uح&Y]88 `5VY(`>,ޏZ] 0P N_;^P/ %ݿ>, !6+,AJ ~3,`b ֯&0a?߻ wC9F -Rvʑ >`żn)6Ū[7j#Q!]13XYТNƪeYUa5Rhmy% ƕks@ը*8ÂŲН?FfP}r&T#96.!f 5[C׺2t6=P8zsC*E q77,+,}'p{by$v`T#(߰e fʍ k}1mU f,_ <bjx[2EhUE;HjEXo)sdsZg,U,P qŮށ`]a9Pa@rZ>[LtDrc9XJSr N&(6(E`;a X~0, XBͦwxB"#">L>6Ѽۈ>%.GzY֣}n#n-:2Q+x>zf IDATXpޗOvֵk9_UrSsXB\yA1xa=Xqm }hf {書To84j0x %:do}EO~?S=Dd;nʽBc'l7O fL5PlҮS lz1:=X?noz!^İfvcqdg,Ƚ,s{xGrb7N)&ifOn52Lcɽ;xŤ7,RbKz֍A{_eF` LGVߑgo _=ۋX?AV(٢ M EfXb K,@2e{{GS#Ggu p S P,a(XXbqcSa^GfohE'r@ϒXb K,@%(7w}p \>( P,\b$X P,@>H,@%Xbb|Xb K,@ Xb(y' 7Xb K,@(_B 7(Lץkib0, $[X|jZ1t?w 髳_5@($yJj$ϓdN-ꙕUjʼnK,yQH\ÿxFO)hT[^v}U2K\ 4m@-;tТͱ'( P,@,@x"??~?b1g?jjT*UE Rl9mdNj)ӽ}w+EsĘ:iVѼVuΜ^\zx0{e |X;W)Ѯ !m&FW3E P,a(XXbgO|3<}QL s}SxgFi37iNWE ÷lz 4"J 9Ӻяw7Kpa rnz4F~%% jx;"S_pw#/D ~bV2#hQ|`tzoBv)Nyq+nhsgX F/ -ݸ`tY7F/ L[!ŕ,mtj!B( P,@,@O9_~sbGwX<>]<}gdlيNԍ=˫8Tų"SNggmgJnuǫs:g"#XԬ˲dEyqk<w\ţKL)wA!1bnFAܰQnY'Fftan/սx`84dƝѬM*Q/r#ha!w!숷2%fE$Nz#qy= {-#BM3kk+-v'S瞫R8⾄+~6Gcl&o)$Ȳ bL9O 6 y|кpO|l<4Yh<'HNgZvwV~P(*H%h `Xb( X|-Ӄqvȉŏ/^/c>.r}-:O֗kۇk=h#ŕG-%w﯄(M!š,0ӚFT a^ϏiYu,tR<DYSӴlo|jKMFWq60lNOu/<` 4ӿ~k؆ş^_\\s__Odn%^fVڡ̗`B[ zQ@}i&CޓFhKo\{*dsHZ0VƏ'Ņb;-9؊糸G< ]9bFW/0)v^,`qLx$s~ٗHl49//W'I& !v58RSx'[Y3 Ƃ1 M C/]U]%%I((|,VH3>y^BWEKbU c>S1wB&,'IbW#kcxsZ?WX_a:jÒ.Y$ Z z ?+ ,@cXX4 `œ~ݫ73g7ٱ8?8%ʵT-W(EEXLH+`=,vU(\( @tnWa_|t%| QD' XxR mc#EVWGV)nǾL-, XT>b;-8XY^zgt'mjZWS aU!znɆE^wb-!KXrzmXE[`WyZd(&NUq~9R4Akh:"Ծv\鯰Xu+*ɼۆC d X<h,%wzSof\6!9>G&8/$bn0Z(3f*7>"h, Uٳ+Ia4#nf}O57DM<""=Vpd%3<0EcqHxz2768eg´L5t)ذ Lu\ +4ðpL6,*&4~_41o}Rv_po$*mN|VbmX۲64Q41LOgv<X#pmA'#h'wlX%`AI/`A{`Nz6ca X4O?|vgggن7J  g{X`i %e _(_`5d-ҮzQO U-7{ۨT̺ PCKXLG:M~_3KVT+ŇvฮnFPp gZI!#R)>37^2Fn'Ev$ )t Sɴ6]%^#RdDWRBvS؆SO1L~m`9ҟ;c~t4U9բH뜼4>rF0F ˅)nÂD] ".AwUS|,T-y B@<` 4SEc/ }i#Ot`^2/3 jꩌM%,hvwEK$RUW/VĴroW|I Ȧf;zai}!1Lf_*bD\<ʭuiŽ5PFJGbƈc^I/=\drFd'ddMbRRtR?T_Kj4gL2!;fLrЋ޵g+>K3 3ٸv;vߔ{~WOodP碵x[Zfro1nge}۴?l^\$oX;YѤgB1S%Ҳ#SҠPyO @XXP,X|iYLDє4Ԫ&#Z0X(kbX㻈VN5r~]Wi/Oz:ݩ6T1#ݿO]T֊Xrѝ|oaÿ5iXx"kd~,\ nQ?LߟfG jv.v޾w_oО[\9ޫuݾEI8=}:}XIcxEĂbV,( @,(Wa+SW1GWw헭ß|Nj[اXP,Šłb 9)Wd3_5S,(ałbAF bA+   bA+   bA+   bA+   bA+   bA+   bA+   bA+   bA+   bA+   bA+   bA+   bA+   bA+  /G.]/ĂbV,( @,(_W`zu.H,(ałbAĂb1cuAbA+    ( bAXbA@,bA+    ( bAXbA@,bA+    ( bAXbA@,bA+   f3K @XXP,X 5{{X\XP,Šłb7 D @XXP,XtX8àˆmGŋ XP,(XP,M,LSؿ14C0qxX  Ewc\ӱj 1tqb@&܊b21xX  Ew}rPjMA*N۱ŹnvfL gbi/ @XXP,XtXXZŭmn7F}sЭoO:[p&q}\bqbA+   Ǫ4mӪ՚F<>>qlԚd3| "X\XP,ŠłbŢ®Tc,]q<7f^y}hכ @,>XP,ŠłbŢBTmQf B,^zm@,>XP,ŠłbŢ<89p]!NyT?VXTbqPS}~JnbL X$ @XXP,XtX8q}Uk/MQaR7#1zL,1ʘ!+ bAXbA2jiw<7{g"OR l:?rZr\``hpJR D.G+u{'"g~*}4}ӇN/(BmLQ['w\ 0* bAXbA87VVM6odyk7v^_A,Vn!bAX*  s,Ӌidi}J?PoMݬrX|yX,  ŧ!NLYK`XP,(XP,O,Y4,RbAX*  K , bAXbA8sob`XP,(XP,\,ݶd ş$ bAXbA8kWy,oQ} 7d eĂbT,( @,(g-fhvSezGqaVLi+Naur Ug75b RXP,XXp?j`c?=~zȆwmTS?*U>ˮNt/, xXP,łbb=4powkdѻa{loPC˶m Q9iJfw|xb RXP,XXL*Csh4fד?<͡4doaw xb RXP,XXdly:ԷA'Ȳ6Xd6/~xX?z#ߜJ(^- bAXbA8gԺy2vo?=7ws?q7mx{d2ͿV$ ^+ bAXbA8gSivFwnWfv#LV 3<ɶfdXkłbT,( @,(-J&kt錵z(cE4ܠUZfvR,;.ҥPbXkłbT,( @,(g-Gki@|a4pλOF,(KłbAĂbqb `XP,(XP,@,(X,  b|V,(KłbAĂbXb RXP,X XgłbT,( @,(_XYC->{oO ސX\XP,łbr"¦@鏵m=mLƱ۬}9q}v(Q):ĂbT,( @,(+jCȕ5ĠיG 14&(VjVm U1!K{@4RҲ0vUn켦 E?Mr<*-ӁZD'v:Vsbq bAX*    [Bbm5u;U"Uк}ֵcm=&T1ֺq]UUt:'LAwݏciB_>NH F,B,(KłbAĂbqIb~oA9>v)w~T+_*0 %7XE|reU^{%bѭ䀺+Cd Joޭ[`X,   R,LB| wz\s5N9_E,;W. :1Ȏ}Ibmk[(+9M=ƽ' W W" bAXbA 8H,ƪD0Vjx)ԍ,B4V>ѵUL#$PmsSUo|m:]䲼Qu5{P^k8X\XP,łbcv.PչZvuŎc-]}LWHK초E*AvɜغXӈX1I,8L]p-bq bAX*   7yj1ZV" Aƪv.\AŴA<$DfvL6ʌ7v=9?6ʅA?:k]X,  Ŋ56SF\¸$$6:cK{LVF ii%+rDz|LiFB{LSC;q9j@,C,(KłbAĂbqb"Sv|LIAPl:hm=l֧yA:@,P,~T bbS@@  X[@XՋobi?ٙ)/>ųg ,P,b @X|*VXXߋbůϟ iZR)!W,[@  X߉NXV,^P?XXp@XU,P,p*((bbQCz @XXXœڇ  lbbb (`+(8   @[@XXX؊N@,P,V,P,p*((bbbbS@@    XXXXT,P,P,lbbb (`+(8   @[@XXX؊N@,P,V,P,p*(}@,P,bux,/Q,X,P,p*_2@X܊N@,P,V,P,p*((bb䷀.;D(Gc'vq7:XXDWvBSrc;dž?2ӧC,P,p*((ZF @%/E/tue2۶obA"1"s%ovxK]:p(oO<[%kFĭ} SP|U,P,p*((bbL1kų;`7SAݦҽi]‡PxeKxte3\RiR7n@z[c}ߡG  XX<52qsb29 7[9CumK"]cQ>[MW)ء̞ߙRR`k`[&g\)ʯ]O`2Iua][z"P["lԣg٦%Nyf6, KՇkd-V9Ct>*('MYj0M[bAX 1\9Aiד{XyZ>HGiv(-ܱ:L,NiB]9-0x˳d81fe_];H,tQ~Szw^^'<ِY0@ZTnm-^ &63xJ]}ͳ}l6Yl!rVy|Ĝ4%0jgj%-8Ǘܛx9N.7|?VoXlBx?v 7oNWVpۋz4V5*3&$zhQVj ]mGQµVF]qȯӳ:NNM5ԕ:dChbjtZ=KSF6y~eS\V ƕ]*Tt8W2sul~P9 bbbSN,?Xpg@}Jʍzm/0E%_kM%"׷Zcڸnvz|-v3Y* s/U[1nPJIBV|Z=ѥ>?{w*;/iJ3eeEɂZeFIaC'Z̮,~<l&;%ҿYP)I;th$קN&%rЎBӸ׃?lhO+]Dl‚m㽈wVKoS3ۥMd/[Jy,qiW}uH|EeqkMmG=bwcK l=ח هWM TFS$ 2h1{XY\`sm`l9Lja3TjޤdarD6,yK2A: X%a2Qh2˘]s]tg"W p3" "^iJ+x+~X2伥epŔwNnq(=,7Im{QbUT ("XD=ƖcڻcqKPꬋ<1(Ӳ{uXd/ ?gЧ1G)xuy%*Cjؼꝑ/Xٶ,D*`񽜦Vj,jӑ0$$lk>y/HE~X},{nZW\]ym%yb(ۆUP?8 EB_`iZn\t[H$?%RX頴 [$f.XՅTcÇV/O7d4X9I"]v\Uj`EcSƏ kW(DZtVzWy< IKw ۛ=4$4d7f ]Oű4nu H69?ńA.ЧO"J,wa%QbU(`I2K?gL{ `l ?6V T{ a bՓ~iX̡!LYE. %5;Qk+aQOx -N-&v:N9dR۞,yqV, ,zңfN[P"#ʇ_)='cc%Xֵ&I 2 jޮvX0Cyag_,m<II ;Rר.< >CXh`/Ê> ʪs(va3ޮu?ZE ,OF8}l$٥n,M|d\eMN[VT( Iip_(vTE~j^G†K/M$k,4,"~Qb%QE i 9ƿ`~\kdBHESяE*Yۯs1Ni[BRaKä_pTl|X0=s1k!,dWZ,4\tG+w^ kQs)H;ڟ}@N)6xe]?0(./mE^%=1Xc,c ?v, 8 p,>ݜYsR NJ-)bTbSIݔ$DjʘsP> [l2n&hL_0Uf@b <CSfLD(U mZIݠX#*W tݝGLSL~,tkqKDH(2L&5eCY> KB J"frq3 {]F WDw1=g(e}yؙ[ $Rj]sS[#WRXo`thLMԍAz#G4`t[8w,v,Xc}XcmH CepΒtv#mY1{8 m p,@X|Ԙ{ bYF_>#G΂ߓ>I!`t[ 8w`,#G!_ rGN'Օ)-X⻱`c/iXc@X@I~ys,\r,~ }k`qٱ Yt Bpk,@ p,@ۀy.X}jرc```tC  ,nбZy=b6 p,@  6`qQx{ȱx(u,tbȱx ogخC!o4/8{3 ,Nݩu'EXӒ IDATϽfLH/0?*Y)_jB/eh]5s _,nGB=78 8g$"BP靅Phpw[Q0RK6 {ᔧvCs}ӽh8U9ZýN|tM:6gapw,q~nzd\U y\4Cr2f+o|G]C|:L]QRqZW_n?g2nC. c *{f%h?/R|2˙R|dꓯ'ۆ)͐~N!X\8v_/Xk"wUwsm19E4/Ŭz{?GQ&ZX*(.BB#BcXZU/ G3sEO&ӓ!(<<ǓPy"zFT# NKzMIA1J˜hp E4#WI1 "4ґ:B@`0&mN0UsnlGIE$JD00GūgG>eI͐Sԃ }JSAa~AS``.4Bǚ"eE["ů d[lZY Y%%N>qrЩt}Be,)H:څO|9)FċQ8D\Ui&i(5;= k~XEP w,a8',ȱ9t,B`:=)d,xy?uV" ʘb]U <ݙ 䥿ؙN"Xxk8.;Yc[l&T\4 jc2<'ͱ) Hښ’J_拱c9,YUg {%[5ˈ+R%X]dk#C/5D pGa,\~:{Nn`|+aw4XA|*m %d֨-/55#eSW NēIG!SUm3XL3fM8j/̑6ڧ $*܍6M-]9e}}$FÒ5; :uv y.l+qiKzحgiKKR,X:{4yԵy9xe{Zds} Eб;t,~ P`:QMf\XQDKY bf:}TӅm_D$<ۓ E{Vє>/2UNPXq xT>ͧGz0MBJFuchw25`ÊڟͶW90б :udp)}i^'snM7'rkw=wgFp,^1BuّhxcH<*U@*/C=./(/% x3X<&nMrJ"w/9X7 ^# k=`ȓm, ,^=EVAo2dZm>T?j,$)zam7  /vE/d(gqS34qlc*wşDZd_~X5P!Xŏ]4Zi g~TjTv<5-c-satanU1wG 9;)Mb/` WP*mR0 A][>]~lZ9gzZЕfWBsqGV697 uRֱ HR0'rX=%`ڽo*OAkFA.׿Vv]OU7-s3XYeqk kt;)se󽷬Ƴz 59No``aȽ%rQ^`QQ(=n=OּM0J?ވ.Fc0J9,CCtD4i*;8 vo mXT讝:bg,\ V팷sx8q~XEP"c;7`ώo9!X "t,~ir!%W/KF+k65[>u]$o|yz4sD ]05mQ'PVw`!Ű2`}[OiBѦ\,kҍ2)Ó#M%G+|V/"qzFDa' Еgcy0rّn5!K&D6` d##,DX)QmLf4[l{Kْ<> X\KkVf_ \K<֕tA];}Q=܈_RA< `zQ帹XJgA縜Λ;1iEAM{)*^ !2\dG ]Ӽ3,4/x͗au <ĸ+KEBFK.g`EXL#,8踲aQ=$:[v8f3VHC8@!6l8=(R,õ T\P[7#9`߾p vca/mcSck,ذ8ϣ?~X >5ذo,R[XjzI m_y|:$\,ւdb,,/du9 Oஆ˂S,In$\qY1`o䔣>4 Bt:('.O <.]7kRՃE=-&ji=-,BVCNƮ.Xg`b$so`1l6BH#n'q>X]Yk6Su1w , 1*#@>Pz GZӳv4܄Ow`a7v,^ ӏXşvca &BO>n$u"))wo`慒I(/xzc. ="sOqwiϰ) a@f2Cte"|hŀܭUH6gXL0\^ QX$`L5VmFs4j1k)p$\bMFP`ђbֲ1׋oܛ-rk8 <*5`(,vKjPR4Y%Xe:U,X4`bĜiOp*jȴyq 2֔@ip (h-0L1<"+T]|E[/Xرk7/?~Xy-}jرaa7T ~ʝdO G8x1fWä\,϶ R6k@iWS'nڋ`4E@ƯAܿsEӽr; 4JzǃyL;׻tFR&]M4^YM#1_;::n8ح1zǸG3WSj~$ɽZ Y?bᝪT"[d!t#@t,GZҸxlRIUaq/|){] W1^Gtlz0W{{a}GQ*zjQsPl 2nS!i38}C`(Pe`*kb!@SzX>dž0~;-kfjF{{ۑfqwTS$yOq,J4 DaI;TPA+ E,u5~{ہK(/y?UՊgVj>L%mɽQmmΕys+7vWbXʲ^Z[{5ϝ57ahl-UVfnzw xn:(``qc~8X|7`~-:(`ŧ]ff D+(aR]ゑEa̰MM[pJ Bu]1)Խ0&=eAg FJ!1h[OrJnr [_.Ӱ_Bs*Q̰LI&b„ +\WgM̬2.5hʬe]&A:FA$}< 8IL5B 'UU:fum&uUƩ dp2-= ]mS] +`N1!-?΂yʺa]B`BX쫇8Y^_H7 A3*/=Tl3,突R7UyWݍ' mR5 +bB,0|VV&L`\_oeֹ@ ,X:7Np,,:_ DZ!䊫XP|" nC㓅KH )> !h4–8 [f$ 66kO|豯v!iz&fp&bdpxISat5r$ Fz2o_X caCUr G/m8ͱP\1`]zjXz[5t,PHdXXt8,j.O{8 ^ѝZ-θэYߝ S{Kc]EroED?X X|,B7zKocBZcX|,K]xrY)r RRV?%K~`9 ue,ڎE}!.J۱A`q2Xc1\눳49p8ͱ@@ȱ9t,t: }JoXtcq6^( t,P(  jp+X)=`XX^( t,P(  |`kX:zlc1l`M?cqȱh    t,P"0,_;vcc?f8"t,K` BcB,G,B8*cq%*X͞#>d Ϸ їM-vli~ >},|fcXPEK2~ X / ~ŧYW;JKtG8'TḓYT&m ac[8IUiЎڇ5:(%;8e PE uXD/e͞2C_9б@!X Xc񩒘kAYN7-6)2-imv aa3y[{:RnD{Hiw6_b^vPǪWU-o~0P2\ ᤩvs2qb { `>c uXϱ,>`ѷ۷,PX|&;tY6Z;˫R"Z~;Ajm{+Ȟ`WfڃdZ4T;+_nqYݰ#צf\k'ۧi]nVy'k7ągNǖ5mslm@?Qe6<XPa[ ,Yj-t,PX|&%mNdڠĶ&KNcvJ:2^. %3NUq Nե"'4a'4BuӞIdI)[}F6딤j Ko=cWCQ^zB/ǒp(m[uW0jTmϤzj^)EvSK'5`Ra$YM<]Uh[łAgd. LcӻT= z[U'D"|BrB&ptܟ}y4Q-g6K& j!!csʲiəFۨ[ul8 Eם=hy?VKF0X3OTfI[دJJ䄓د)(,=M:#3 ʙ"j6AgDV&Lq²E/\[4:(``Q."pwBE@!Xcqlb\&UZ5|msiټu;4lih.>+42HsS3 =g[ W֘Fku``x[sIbuTa4Zͅ[tPU"۬,.3hz BW[u/,r3G&eqF=f6Z aD%8Ɓ0FemF`,7`UyTwUFݒ;P|98s ~/CbD i4wI5f-a4<(NXOA.XSL 2A< V+QENh@aСYIb,74,$xĘ!bh8rS XrGOf:ÁfG8 `7GKkº>D#ߪڠHEGu'? ͹gfnl] BWMC>6A@s⡍mt ơyDhq zPRhi'&P2*" ,~m,~b?X%Xo_6xk"Z"*O셌1b ]tںA7l|@%g"$fG3t$<g2=(>frW6/;zU7V޼]{{Vhʺp`b ے}'Osq[#6^xs``_:$]>`q{FNٞrsn&c?E<2{×x IDAT%tZړ:f!G9J=NJFլ>`z#e*O{oµu_GM{KĞs1қ2 vLWcܽTal+Ō%]•ũͤ ;2&cTP;+a e7 _s!*պ'Il']\YjRi\fǭ԰ꂯrx 7c;<T#uYXr.nOYSnLsÌaJ9NofETm`RxmX,~3Z|,⟟YZhiDmREflh X86c0EQrD +h`q>VIT^*+*zw%#/m=N^"g)CPxrń˷ºcjpb4kg\Pm Q#yzgzDpo'_0f!TsE|r;k&Ǎ.te٩Ad'΁#7K[Pk\F-0!jjWܮ9QGLDP<$;T]ɚ孌]7swr;9US5A(;GE7޵As+vϨmf㼔w( n2Acf OfcZh.(EHXڥP&X8W+B{U,"E`U,JmCu Zd_`pD2 :g@Qwm= piuPNS,Mw4$o+5]K~_\I;XpPQAx'U1CܳB#̾h/O86JV]\gAMUa3A0_“J p(>-VF!oyObD׀ٺgbAuƻ nx"BcޠI~k'*fޜOv\WЌ&m9r-;p `)pgpyϤ;Կnvo!Jttg*ӛNOזy>_rh /ۋpC/3}LFWU,"Ez#X|>bw/߿m_"RoXV">JԶ-8( G:WHa7)x,TVZ [DR{g8,FVi f#ƒ}msXD58 v F`,)"( 첪eP5IU%)M/nGbF?}LگXČ^?Y~ v% 2J2<6ܞM$Is0VHJ tkCP> {gt2B`'<^2$BB_fC2ވ E4ݣ,׋\O="p>sZJwK"Q?@0,&,Ԁ,V/5mbXVWj  N\ҕb`A +.'dAuN;ϳy cjeI6v@T>d=H"2z\x*\6X5X|jdm[_~("bc)^0%gv}o^gɜ5k-74;5дɍXZj;/JWX]?.cRŦ+'Px^<FJ{c%*lvѦe*>8U!(X]_[ԩ`\؁-QKyBǿb{zkΐۺ`MOvvbN?ҫ.M.˴i+rZ{ezRi2CFX&דa2F)[P-{̸AWҍAF)d9uqL?V +=~&WT5[s`,]wpiLj*ZS Jǀt3Zw}@M+F=б+Tf :c7P7R~ spsPiRp@ R~WCgq @q%^RjulXD7c'XX2x__7xSxU+("k"IE`̘<`gF fk2 dJjt5*_i}3Ä`@5k aTǴU u ^_m'@r0/Mض?AY?Ant N_8,&9j0Tz62"YNLL>6S^_s_{_WtaCW!a_)T̳I"c ZOPhAcrfS|P9^MN!$m쑇@לfQk&fH6ns&RS k  2k$4̾v< tJkR T|$Z60ɴ|Zeɢw@{;C1zG^u³zZ?[~LhhLj )i<&8/ؠ <ƢS#sO;tI9*"N)^jd@kE,%@43ˉ19J"4ļ1:G#,&("P eGB6]eIgNhIX\ibd|CDᘍ<#]kh1̥ޡ}8Ӯ0/PE 8Xhjc`pX;P_!e,>Uz ,ܴPߏpBaj,fXXŭO'V]OA4Վ:xx+tSjM\u{z]7B 1Oߑe= ?7e,ر?br2ʵ+$j_PŇ^sȹH_X_Z ^c nY# N }ͬV~|>"+0v{Oyw{3 !5mkWRiαN]"J?ҊNsɱlOH[} @3!p{u9%9BlG ";'XJ]B,$ hBPo/?B}3SCW,,@.X.XD`a ,+fɇ{+AzpN/@KhYJ63iI-(CO~.5ί3Ŋ[Lo>k$WKgi)-Y .>V|>A'd9l0rQĩlCZ&:@[Sqai0#R TgNt]uEHauTAJ>nZK]IW3J'fcQkyrSVR("B9痨)s He6PY^7 gZfdNBh^s҂Q9HJ+I ɤT(ϦV iao-IPj*JyBAfaq10XD],@ ,BXLK UR_Ōۓi,`j,(X,RA8r~apYҽu7Meb 8 ;]wvq_UW/w]I=)P*wz#Qz; ٗkEB.vEձZ'ش!f˲wK?zbڱzE6l7lv.qpJwb?ϧvu;Hy`A,@ ,&7,n8= _"v=d煂 y oޮ54"r`5jz˅Wo(I{ߣZ슥Zs5k狵v\ۯw6kQ(l畃Ae]V/QVsSbM* ez:*Z"ԜYu妸#@d][0Cm΄Vֶ\J3>n Ci'&BꤳnMpl:a,pvF]JWUy,bæB-4rM)aD11%Z(iU$p`cB">$2fX{6#6\X@*]d].>g$R_[GknaE)%C$yi,y4hCWiP|=Y"xXg]>֗(VTF*W*^M.OT[ǟtmY=Xx;XbPs?XO=XPoC}~̓W,^b@ߴڇ,$<3\X-m)Ҿכ24ir p}(ou^lI*Fo&hQQFvWhm+5,fKk  Yyv¿,a6ɣ+HpCNϤmc,cX^Ṕ̜E5BA̎A%$, F✯uYa~ G,¢( , X k֔8T0 C]bWJ3`z98a!N8ˮҲ {X(OjvGU|E3 A҅EI;W:f$lGDWEV4,@QR4I$J[䰸|n  :/_a16, O#7Woix-,B=xփ)Bo'tʚ6Ut{=m %9MszR랜+,q}B5aew.'0}]X 0iFyܖFYCX\1]A!umpWRu u5&GwhU <(hNwRЎ IDATIץ",ZQfm_i1$mE^a)Kqʴr1U2JfNW(:; N xQ?$ɑU"D̀a@:Ar+4.V2{XZȖYRL:'?#,xKS(^y^>X<%bK{ 7C/÷A m?|9Lkp6+97}gUv۶^U41WUH`IaAi. CEX %CWj2T,9F@Re';b>=<6oPTC mJ㰶rJ+bI(E@J |&d4vx,cHXɅxdj& U՞s뜙3vB0{*De홉㞧tCZ'o>1`o-SqϞN;ba,Px h *#.w*nlo<ȤV=oJb^[tnW6דw'.nxgr^죵Gg+j?ͱ[kvw9zg[ZRcO.MmSOUY1Ĕg׶iѬ=0˿ݞ"΍ߊ/7'-oLomlowna=vEݞvkGX`Eb'Ϝ"Xbt}bOl"BE,Gb!d1v5Uoۓ, {>RެGLOӇ|m\+e]4tb-TꕛFrZ凓JF.u빹R6rr#NmfNu]ՕZ}f8EoX9dJ5:EĸYLU2VӇK9Z^3b\H7+;S[b=VʭBX@,-ϸZXYNh)DŽĂ/BG@,"z$ z5&+Mђi`7U5L,VnI2OVtRU4+N!U5d94-A@Ki 9D@VEN*aŰtAv: 'LBޔ|tȓ%tU79鉰ML M7 z2Z"z_VgM $VPuBק#h9A_*VڤGUz2L{EonYy_LSS3d/Pg7b񂉅]ݬ,BZbqZ)'PE$`_(XB {bTo_g!{elM%'"Ec?('<]qRbw}dqo辅6+G9] :;JQ}$ {|U?%pw@uɻXwJ[)Yw'3w;J,M  'Xb1?­ݖzcĢe  Ej/pBZI CaJ*)Eȗц8j_pN(q<X=vUbƉSdGV(gXba00mq/T6XV˅BRY,jF^|w`q(;Ɇ|I=|Y7RH r:732'_sNLήvvB0 bq ,$\bFSd~" 6Ž,JBuvvtuuuw_x8,ܹsϟrʉ'.\ppG$uM*[{ KSoz҆d銖ls/%kg3|POCN Ibv;S&bqElF===+XwĢ*W\yGw%_D!TVqʱ ZAłj!^B% ^T,f,[BޖY8}1"YB@j-EkKv#ѣE |^KN^{S"/nK[^hYdqZ,FYDFWH3 +"S]/˗^q2Wph`xEmz E)sBY,"#֙-AM /n^W ,΄\O(n'N㵝XEE$ .EdAY2|h!I-n! *dB*(Tpq+¯X|,)^G6(r,ӷP~deZNbPvc;q .haB^u %ԷpXDE~`XΊ҆" qE1,,"B vPSxo%]|K(Za!f|l+jb" >osUȂ/܂ .rO*Y fX8E7WanC,XX~( u,4|[YU~g(Yf-B-zB$╂9W +:^17v|'ԇS,I,",?Be=BgPkphNldA,Da {ETO&%IQ{ۇP\dŽ,.}3W s _ [*+yE#X*,!;S,:^Xn!{,> VYx㷽B^ga7C .B\1 IZB+ #7t;X=>i*r#MBXF,2 B -eŢ5%/~uWpnEw7i60bG(﵏X8j!}"# gNJ(CC .D1(${KW+"X`ߴ ,łZ&bDDGB4 -©; |CdFg W ,Z"$XȪBӷ[D4@k("Z8v)gx/ j!Wy, ,NK XEE/_{# 3Wf!,P,"&ZO:x! .pv Y\!+PBGVEX4 զb5"Y D0 5T;(,7U(VGNp `~l @ ~ LW[(`,V: %{C'U:F_ibqgs'+A(`Q f8ZXLJ": ,nԚm*ZHPBP>bhAT\a,Xl(nO $r" %OY׷- ybE^BoZ\q粅uP4vLW,JsPvE۰zkgބZXtixq6'+Iz"lub Khȭ AzE`1x,[b bѹ exE,#yіEfi6Z0\nʅQ2BUXȹBW=hB]*bWG,7&ozP&YPAO,J5^~Bwm7!RSŽ(:Wr,:"}@݅:io5H^J^ڬYTB/ZDBw.dDc~I`K0BUbq+zy͆^o}2&Աq(d![2ZPBR"W ww2| J)|e|j†J,/R,ZPY,~Y0͢r"W -<Ûy8=+ [+L(l `Ѿ5[MB-V,Y[1 ݳE [-\(x/+O2kEʕT `q5mGoXt8XB%Ys*%YEyТDZnVb2gw;K$XP+db޶,P $TlbѺ ԂE,P4jzœBw w;%2 %UVa^h;kHBBًPӃEbhMPOv;YTk4TiY4E?))>^td1L/UZQ务W\^ZA,4&Zf-sEf!TBCjVQe(ZL Gl>Z_?TcE9%נ+^.B ™ENYw*5 hݢ[:wT/FT`j ^ S+t{E^ݖbQvOyʜYi,6"v[ v( d1>N@W\^QB`> u4/~?,Pf"GY-\|."FQ[gkvBz,V 8X|?zkbQB=h'6bx;^0-ZM\-6[e*_ $6A^^nWۏXV,v;Y緟"l `ӢDlƢ"n{%-ZJbcpd6oW\\ν½`7fV!~J_:^ъfBEsZi%_?ԻVsgWTFhn],z:Y,Z T*[D=ۋ:~ Ԋ\Qr]Y#`tpfqꆡfq4 -ZX nb `2 0|Vbi"Պ+zۯ0BV^qh-'Q0kr[Xעͫ,/mȵBrEkW\^,P7Ec4۳gykEy:n"RPŊr *mW\+WDPUXXIiZ >ZU +[K ػDH_QQV! ]{ųMp "`,Hja/Ehf7-E]-nK_'j0b[+6+vE+VM kV/C,޲3,Y+HjE-lPFk>|Ç>|izɗ*J"Պ(W{P^1 Eɔa(faPBGidrJф]P™ō+Trh6zb ɔSoYX e_ʓh!Zly;/”:*oln:V b +WWd8yp,2? ,h!ZHB/t7$[ȟ_HHb\Q ~Eu\,$ԁBw[& c?+XPha]ܸv1 [ō rZXů\ __n{Ŵ`ؓۇٱf,Z v BBA,U ׊0WW]XeCPY= e.ZlQҔ /&(.\",b:VԵxUr3YxIiǕ-O/_4+&抾ƾ8:,Z/C%pe13Z4[$/4gDZLLVLEWnuxX^*h"i(+(Cfp\JAQ=p^YV4%]r,,ZeQQZE ZuV抪++?x9)â,͢x זox$XxJNuD9TEE*YQ>8;,bj"#{[.EOqLuH{T<>VLgE4Wâ/C-*zH".^'+˜ϕb("[+v¿uRX,)P"xS&E:U*Y| j+.&ҢnqqWI!7ϨXW6`("-~EI^~w1}Z&E?1VYg@Y̏eZEHbIbeSQ*++v -h[\"ɋ20T'DxkQѨ"+6튃bAXe,ڢG]ш^ Ve^ "HLW\6,oeYij".uEtDDiQܛ"FUYvova .x"k".uEUs \}\"*+FW`q~X,.(I]yL^ Vy)ޢ"X fQ Օ QY[qqG^dWƆzhDxk<*ҪH^̊& ԞamhEIDATpqG]yFWg&k4X]5[TdSEZͬغ+n{鲘-´"2/Cʓ:QFUDY13Wttb~(޴EY]yMe"i{TUEgVtuŒN (>M-ʸxEy_LW/8PyTU1gb,F(-٢h.hEz(("+¬+euYhE[SWoP~Y aE3.y1SGs=1QU!,@Xq1 z>gVU adm1qFkItU!,@XP}1{;@oKX ,'+8.bM1Oq1:VW aBXxX{3 w鲋 a!,BX Ż\!GP a!,BX9.{%,BX , a!,BX ,{j PZTa!,@X a!,@X tp#, , a@X@X , o[rY$bX bX  bX bX':IENDB`mkdocs-material-9.6.4/docs/assets/screenshots/navigation-tabs-sticky.png000066400000000000000000005573341475306445600265370ustar00rootroot00000000000000PNG  IHDR XlXPLTEGpLAAA?R/Q~2?7GS_{f@MisPo­۶7Dbot7\ᑤpmx}ɸf~`λQ{ˑϤm܌GtRNS  #!(%*-137R/BI9=\a '@,0E65KMOVTXZ^b;Gde]nU IDATx]NWᔦuR +HVJ"$Hgf g=>y K7~9+ a!,@X @X a!,a"@k,*xBX  a!,BX  1?}t , aBX  (ZTx a!,BX ,9'.F a!,@X7*tbbS} 5[ ) aBX ,fń BX bh"`i!BX  a1lU) JO_ ,PI1qF MyBX ,YQc`ƑRBX YQB%Fi]+`&JbY?*Մ/Jbi!,@XLq *A1ڇ4 -fvJX ,נrQQT'E}Y_bXҠ4rui>cE+r,-cò"GG.K9šYQeA1 ;Vg"/ -FTU!%qO!b%DV& @ˡkhZ.DmfQӊhTЧwHEQ[dҢ,+"UoM*E$.bm1״8+"YDR,ȋl[DӢ,f9vEQVL _ &ϐ\[dbXo^_WBK0HEx; tUD"3oЈE0.Bm1̢yEVE2))d^␴hmf1@WeE8*E1YXxcF.qQˢHuEh\QỴHR}QEEYTUV"#13buhm"H4BIE-i1`Y4zv\͊5X%qE7-z-]ˊH$HI~\`eݼ"YE) oЈE|nQYگ(ݬGE")DH"/qL(߳>,J"]QH=7JgD%ig4-EsaQY_Ѥ #ѼEMZTak"BYљU7E'% GhsPZtC QhHW;YUě"9M5G/u[Ӣ3(X,";UщPR8E0.cDZ-Z {f]QQL7teeiQRoˢHvI+YW "E -beqRZM! dvU*"# 3ByщV[ŨmQ>v2+QE)BA1l= E`p[E`ϢV+s4ͧ8, =+~@"UP-E+ȻN -)v"{נ+tE:T, Uq>`eq[We/4,o  (ws:XYi-,v/Wذb?7bO㊳3ob_~`′>,e]ql@78ZXvEԏ'_;Pn}PaQ;ZX@MX׹E,`Z܃ڛWԆ:8ކ,ތٞ`QGmzEY7,j,B6a5anCYh-,]_3l (wX{C=5¢"TaWlw^>e1;gW=՝W ⤨,Z boq;y.Οf|Y,pWmY1, jbgh-5I"x꠮xh@E2¢xq{+vֶtx.nYTY4EPP{esfy5T~dVX#]qh@|Y$aM]翺2_}{xO?寲8Ż5wή& ĂcW|H'n{9hև_eq),¢_W?^+aqpʟ,,*bX*~b',v/B"_:9h:,ʢdfuugV#EUX}9hU,z\:,^ ,NCa+aq*Ӣi"aQ[󊫫ѿطo*{Zl,ˢfbܰ܄|?7+ 㸌Nb#|i_Pxn|fFO0l-@yfC /1743HivU446TѪD9{6b O?,6Pr~_(W$}Ƣ3GArY|dn(BBبQ O?,694XH'XEPӾb,Q`ܟRg!LpK­iY5[yJ+zJݱ)ud!u5\V,bR=犬tOt ,PJe1`zW>(kdh1gaQ.*{e  o`JE,PU NUZXLsŦc,Lb}0Wab$+6BE_i \ŦYdP,t,*+ ] B&nWpL*q3e^.,UF~aAE7BWU)aB5ZX&0O嘅_eQ,2/aY_y^ ]ꛡLEY!Xhf އBcxocnEPC PU<,ʢ09 ^PF,\1c.,čPɀE`x~eѕ6C+, `QI r#T+_hcPRe붳P g,j͊' v^X,`tf~ʶpvHB  it[ Ia!ʮh n)]f!-**b9 E^i˽ۦP32 igVY̘BYޞ]( ɪK,|r[(,g0NYTYLJErJNERX4bWp+ y|,T0QXL*v ng* ҔEPBMCqBB"),O*PYhWYCW;,`Qn7G, ng"+,wX+!<==equ:^]܎g aQ(;X wY$E Uܑ^]1fp ,WlojWWy"`1aBvVX ZeT˷,&B ZQ^6+XX Be!]e!RdbzrB< wBPIaƫw>_OR2Y,P-,ԏY(yS FuͶ X+U+7._*rȢe]8kn,\F,  `+΂,XdpE1d8d1VwBnr0t|VR⎼|/x4d1"׵ %  ;XH{Mː~`Qye'PX, ,`\e"`Q=p*h;y5 ,w"4dQyEȂm|':@ kP~Ca`!Xtk‚@ ʢB| Y( vl2b~W@pwk] % Y7Y\/B, `qE #N(`E?迊~>w8,o ~jȢB6FHb)XF,ҝPnjčٱk,NQ7'Xx0dQ,&  C(fgB 5`f,/w6`1:`aBp Y}B޾_ 5k7ې )XF,Zʈ` X`\dz 'X܎!f=X3zBB,!|mz;`* u`w?|L@(kBO?=5g.W8M'/΃8~?FY?9+³o㓣g`q6~>"H~x.Nvv>=}T O%~?{6am` 1Nz1"! ~7w$І((ڒ"tp{tXŷʦB$$YE E(IxSb!B2Z&=KIZ-„ F,\qY ?}h36a79ݕ`wAMA^y(.X?Gz,4\R,FnueXxdt,,b{7.mjsŢ1069{:ZcL;4 D@XQpƒ)Y1D) б޳7a950 J` YPo" [⫁ŏ?E(_(X$?PU,XI „ .s:;; qAdqNp[ƾֺ,|p˱x$l=0cwBRE`YBJ;) R,hĔ i!vktRpT*sxNBEcr99i$(ȬdQ6rB"A'b`*HS,N,4w6 %B0a¾$X(W0kׅ.}ӿW/呉}6WEG1y{,h8, _FuVGnp*Ֆd. +5 9]I20)qr`AtRgmmt)`^5ķMi% 4EdU ū$,Tej/sj%nWx*f:%W(a a„ "`qY|+ +dÌ6ttX\Tk„ R' 6R, )L<;g2m2c{c @Rfa؆Z,\hzLdTQz~Xd_dex y!ȊBʥX6X8,XLrG c=/;gOO&r#^V„6 &칂E+:fz~G8-węL?utv½rk|d,()HF,Pf`8^,Fq wUtTbc3"hj> 9@|(;`o0`qXM-*ћ}d⇇$bʤX:XP,hyC-~|zO|Jr {}E6+L wx4X'`#!#3X!:Xм$YS}0YH@Ӌ e`Pǃd:S%Xxd'k]vҳk"5#C>;j[ȯܜZ`q8XE,o,T%X⧟E,K؉Xũt&Cp~?\ֺԼ=:|0dz5\Oi3nTaN,xz-" 9>,jN! [%Hu3/> ]$ӹ"BZ5*$-x\,zpk Y< Mtg/;k"b] .IǀūJsPz`z`Q6l^R,N,Pd(xt"K8xa aXd֯ z6PA `Lv+YE3kO$FWQjLt+dxZc} Xn h\W4_jE`"\ `qX$rY_wef2XfKEWSD,(X)P,\`/Mqo(aX0ʢGp5޶oX<Ȭ_AP{BgWwFu`SY_:sXa`>ȸ"k`8"2Nr;G8 uaۛֈx-Žb܌ڀw~cl,}P% ?3R3X@<@g1X;m IDAT2dK9`q XЈE1cϻPzX VD,INpţ;H_ҽ 1GN҂i =[2z)5ZZ0NT;ZNG۽UvR‰NQҋv5W-#-4Vh;wga„='*Pׅu mTE<Oqjc0`pH5YXOGx[AFйD( *׵I,nd g &MsXG=4YK\C#!eucXبO T˄!Cֱ/o6Q75XӕXx/$ Yo ,^de XTB ,LJf=ݛ>nj+s\,C|ky:P J56_.iZޤ:<l%{P&Jk[|ȧo!$EO6gJm'D;ijmŷuJ6#d$Y}&L3 ڹ)0n#`E+\v{e\]K&-n,4>d;ı,^zW-MuiFiU䨲! lfgv[l9R!d)X{mD/لkUhE%`aXELm CϲJKW,B|?bDN#1X4}}O*9 .0Xɉjau N@[V4ٳ Esȏm$XTee#,:XJX=,f9ꔗ% xȔ{x̔g}!n/]-fkHjvAnO& NKf,MAYWF`B= NjR> XPnXT}Iܚ ɢۆBNv׮O5\<׽1c~e_.:aUn1WkկXwl6+va D)e+*!s7.! UrS#g,2n6&3Q5ud>`1CDž= '7Cѣ 貀' &_1J'> zoBE8=3%Q(o,T1m,~@>Y^ݼգ*]CdB`PyJȆ-\ݔ&,ԯ"12bc=x` @Ń=cM`&ཽ4cKSoYf,([X(`Pb5Yot$diY _ 15P܌0& !`dڀ!-OQ)X@E N}|pP2*,+bgnpHE-IYjXS~ ጌSho,`^t}O>$-m,|]ZݫHyYB~V`UlOֱ%Ƒ2WwOO?g ; %~YقфwIYafgԥ(ui;Q` X??5ğqP?P(CU9To`Ackf9wOس 3+8P*®ėO J0XdZ]XOF3 Dž%^7m1SӀd2$XdX C L\DJO "JJ>;6,?Xf1,Xz1I3{?h~{d,ĉue,>Q}JXБ 0Z'~_-;NZe`YECBs[d1$_lLVq׆= 5agfb2s`rnX؃Om  20X|<"3a6y-&zyyZO.gͭg, z, r+pR\5ZO~t$WK{- +#:cQK %`Q$R(Db)X_,00, ^"x{ZwF '|#E#B["hnr)+o|)G+5f,޿F$~`aXH0"'ͷbEK| cfA&`q@&{P( 3ck~ p- mfV.B)/ 4,00,(Z̺u#@Irc TuI(U(O-f 6o?:X9<.qE-' #+O>֐,2XЌ -cB=O! ,~Xh6o0c ^ x1Z"Cr(0 B-|)X67),uv5:R}:/" H&pE6h qj|Rŵļjޮ(`S",00 ,g2~ݝUZo'YHَLGI٩cAJ,f,dA5$uPܞc+pJ)f3~  v1UI"ldfd9E,^66KXl;XXb(Z%ۼ} 6>|_$ *3mf{'\Q/ Z'L3,KX4ѹh`ad, 0H,ZCp"4*mudc/ ``-(, &#+;Ύi^mF`o Pڔ,Ko5$g ,n5m`Ȣpp^@; m)p6 F-E`ư8+_E93$DzlI"u$C8ޙc!D~vŠ?]_^ "z߅8 _XkS, ,ߏط-E,*"N< Ѷë4F"VjF?8Xyb=1WfPŵe&8 k~ᙆE\E>͞AQn"6 ^1p 6[,gqxx-Ԡ&j- Zss0ýJ v0 u(_ x0pl mkSk8{_NL'/ms8?kNfEGT\gT&ŗl;-V" xbmB,XHEb EZPw( e.jNV\^t]Uzݎf/kD!G,5ˮ냔;[unnq8JHCՆ|pH*s:THm@,60JBH~'XOZ;J RfѦk=\!ZX6UZuP5*sf=*DW^zB)^,Y,0i*Ӝtbͼ]EJ-De3:꟟mϞ] 'A _/,0lXf1++¹w⛼+31 Z6/mrAb!ĢE'E,S,vYbSvb<;xb!oY@,2"j72Vyڊ[m ]) qe?c5`b*Y Nn, Yb[eE.%)?s%J c6YRjB'D=ʿ=4{ 9 ,[,~fbN,~I,"DZa+wTuNXq,B,z"6 g'iPzUOV}r݉[45}ͪvf|N]\8N?i~bv(oFJ-/Qv4B+UZSb6Z,Bp:8eJbѠhmFOOsf,i8%;:9=I9ZXqDe,,7J헉FAP,ҭWU,"( 7ڴWv"\{R۶}1dla3`b9Ɗ0 g΃f*©R4nE6"pĢoH>RjQtVXFBd73`.ǩWX,Y,+^z{-4ޖBeY,f{sEprVf{$u"=M*]-Omc{uV{DT\k y*-S, jb*;,H,+5( +"[+Z+^}śck<0oWlf;'Zɪ7RohzmjA;z;Bd)8\,ά%V` Jb*H,O$'H,@,z-"2#`C[MX" hWwsjLVN!y?8fj?{&Qi22Cb\4p5sX kX|{-  bE+_9~BQ>#&o9t]f{\A8^.qY,;'>^xr  b!ͪЍZhr_ #Ґ$DJO>2Z^J͛&OVY,2-$ `ĂdW|5#hquDeo9Y̝X~EcX   :XXXƂ44u6X+0!J Yt)7r]`D nbJj(9P{Qŭh?:o,MEydHdutSQ[}44_,NfgO.dh_ܫ>,w!Xx]w`8N}iq``ayz,Fދvv+ hneV饼`G5`AcAc`1[̖?BnQX$*> rZ\J>EYF5oH"hGZ!֓\)pymΉ>qVau-E8(>>+\sJ4%Ň<~` a.Yp.&kϣ#:I8sϣxuɃD"kEwW-dq}M:B|Uct` G 4ƂbV fӰBnOM,PR&"=y̫.^L)cПz \wgՍVoS!wr2LfS5wc?Y '0P+/o~|޳zl{{|;,>Cq>uwG(? ?9a8;Mpq٩j0vgz;`]<^n 92ji0|ժSSloG~oLps/H,h,h,5A?'9̭+qy2)*h#ʡ#{'͠߾6Wz%D':V :Xqòh4.e=-9{6wMLgű6aalrM\Tۮ,z{/8kN:ٍLDeIb9YUÙ(P':`k>h  "j`ѧWٺ,F&'zJ炅Ec꥙T/Fe{uI_YLjQ0yTK;4=XTq3~{Һ?ݍ,:lbZUy lڇY:`5y@`AcAcq.X\cq8>R5Ӣ3/5xc=MFeSS0XDyP][iYZ`{{I-ΉVܣ޸qV*X$,\*?yYa]z{{L 5o̓lܩP`MWQb?X,};X>/H,h,h,-`x6R@ Q ٢t1 tWyleM^%@wxɤos{(a4O)9^'Vh'0Ӹ`᥯z4R`^7O~ƫ5Ag([›‘`;$h y-Lt5 4+Ov5~4vRijd KX|p0N8,zqQ"O*X$:N$  Cr؉ch,~m:jtjexU|F[Xq)TO,N*ͯ5IcQ m35gGg@/н_N/r} zcj }ѥP*XIQ$ 8@,h,h, x®Xc*Xx ^cY1&*D"~%,&ř 'S"H>X"o` њe$YcFzEףe -yi`? w_ 7Ft}x)MxEMxP5fr(E>f|'ݭ`7'ʋc5 _m?L[ W-o'y&)dG F&7bpΟ*z6SLXQ Y$Y}Ƃb`!/WcM\cE0:l4lo\ʆ#W^hb8ꩉT~OռnlM{F`!fְa&w䳖f7| HN{bcg$g/,eO7Gv4m2MLܚ724PFӟgk+RO^X3O|PI"T&dG F&7"N5Tc%bG#Ơ6Erwm/[,5ܴEx{>Oޖawě;:NRƂb`agb>7b\,\9-Iݠzca4,y&Z+NK_ ޤ$X4?;6d FSlh"#ƣUozT;<,՟m/`j}#((X|Wf/O`)56Hf빑7?.j䋨ch cq .m dD焿Oah.qvD`AcAcf0q0V y'|Gg9Fxoj"`O}Q, g!C33rhK&>dEA:O6?D>>fk { 0)‹XEغY yZ7I;S&FN,Lcp+]3iF6w2V{̇RwN>ݏjqRƂ'f^Zp,K[146=McѡVB].Se*TXHPB ]$IPbdƢCcLHp=ST1LXth,-t ;aVDƢCc8 7[x@ =_VgǡX8"%1ewLcѡ'?aVgE\s\Li,:4X, jLcѡWf E@h,X"XX7etCMi,:4o pepXtn,t.9XXX9XXX9XXX9XXX9XXX9XXX9XXX9XXX9XXX9XXX9XXX9XXX9XXXF^=6ƂƢ$}mۇ r:CqZo$n,h,h,Lmmt|%Wl盽b\J7 44!E9rJ6؉Ӂkq E{~> 44vCQbmo`}V\X񛿶nfh`AcAcf_vV ް-.8+|`1.uXC  6 i\xEGozӒmx=ٲMr%XĜ`ޗvn{'|v0zdh'<(XXXV-m/grnbNORVQ%7Z*Ne_9\}i6}tM]]s#_P"[۱^__`1|xY˵?XԗʕNs]umg^@Zm=pJ`5c2Ɨ_:w]5YgΚgj^P8E;O,kS+j/U*V!g: ƂƢ͞,XV*m9+jmؙd@ܤNӶ];[VTZEꚹk=Ƒ}0_<;Ej ʥ ,+`V̵bҲ췱]W/Rl{'.H~(6Ks~: SNYYE{1>44mU,^I|#Xx*^},hBVVM]GmszG걆` z)XR\ z X4㾔 H{!4X\4F_gt5K`x,"/cGӆ]`AcAcnG/>L+$@ɟ9E+4X_nWx`q6]4|lWEG|R ,$ ,=rvdbU M(%)6ʝ/+9d&r|M\Z֩ƭ'2{FQ00k-rvL>v ii=ec2L_F ?q0XXc(,}@Oc.R/K?~hǵeW[ŌآY}jm\ U˒@!:[n( g > ' そ~Oc>Ձ44af%١kAo>Wl_,*J|/X+h ` ,4g\]s8ܬ~h52,$<3 GGG÷d7>|qEU.JC øU`!7?u,h,h,ob²%al(b`!+!~M`Q%Xt\X,FxVU`7W2u\UW k!-dUKI<ۆTwB&/b]Y^a?Tu8\!{RnvnNfꭍؐQ+xnNӏ';+ޢz/X,4vGS,Zq_B0_Z7-1X|nsj>3`AcAc*^WB[nzC_,ýŐ9P]ձms6[y*}~ =fP̲g5;@(6x>j#8fp-w~CsBʃLK'&X?V?vUf-Xl5o?,D` =[š>xǫ   62}Ŗ<5[a"״},&|=XZmLڗܿh>zׅ9#,"8q`|۸is,>2Xh, {F'@ YS(,^0b1`Eowv?Mm O!Y?wmUH[aԖMƘ3Lv7o}6y~>3C0)e: gk~swXlۻMӋC:1b1,HcBn,0߾bAbAb&duSjvgՊŚ=EoFB!]:P&Gv߭w~-)*-s o_\*7nfU}eCDofܖ{γbFrmIոr#𭉅Sgò 9yz/d6b{׌ypfV%/SBVFt!HImG7KE0: /33xR, #2֛5'M~WB,H,H,dUW9Cyv+L%n[ӄ.XAa$.Kٯ/hY_?| K׬>Ģ6djVX,KCi܇ IDATpRbѼz~H=h%m{пoP4-9m?'f6|{bJ:yScy=qYuW,Y\}.NR,сw!5nY~WB,H,H,28˒SG,-Sץ u_axb6e7b&UtP,%/ Xcku8z/[fҰ=[Y#U.b_Oԃ/붜{)2۷ֿ |sbqT(4/GĢ:nώAIƍT^T+O崝pt,O:NjX ?KbAbAb:U펜J=s?{*.QgReAIs1Qkz?/[bq?ֹE*TjP8M,2Uo({k dp'\tH?X ;abON^X&ΠdrUb1JX\-+M96tX8O-Y~?%FmuME8:p9!'[۞QVrUĂĂ"3oW" &VHl4v UM]ZPl_h1R7318-THMt3"ʞJ,b!DlA,c\<ʹE%|oݏ=2{@Ooc_y@#$$HPn.XdfEB\,4[VŎm`XXL/4jVXxi')i$%b8X옛mU5mbW,H,H, \m1y؊7C}(ecbmr姕bq` Xʺ"b!?6g,vW[>矿X   bbLD,FTV7`h _O"/*rȷ7=zu"bq~a%zt I @, .ٚ4nU!XVXoEym'.RAR,~Vwy⽒t&H=X,za㔅&q7   NwҋjP BV* Y-h8 Q)Z-FW}N.8XXX$B(?SW#ZA 8dM22X#WԻq2oݫyvPx:S/EjJu2_Аg 7 /   Ps(2ha]I6ġP,}·` /x2/"b|*]f҉b:h/{U׶f!l]=ŻX$łĂ M,ƪ(?kVփ^/bLvKJz'#xϾ,3Y@]qXd^yV,: &|ț֊i- )$$'Y<|t?s>st`v G7Mޜ?qA^yjѣX,H,H,*;j9],H,H,.~p,$$Ζf uE*ɪAiu\} hFt|HL|bAbAbp <.s߃XXX|rUJ! *dgy 8XXX[,H,H,-$$   słĂbAbAbpn 8XXXf`jjwXXXqgW_8Pr;"12ζ'% o@ZDYcJ t 4B&Ƙ [s<-63gvj^Lq?'fE,(bJ:Wi%$A2Jm 3AIEzbA XѩDX482Y$  6 QKϪ\rba-YJUXB| @E,(bBK,2-J cϯ&  Iֆ?T)/ fuB3Ă"pV-bg&AAbeW|Yl3UPmbqA˩wRa#)@v;xs@Aٷ-2J1ؖS|a"SGgtq1bߑHoY*w?$bƵ9O{XOCch^6Mc^w*s"gfD hF<1)+Y4C,F)[\2c#.3={%ޥXPĂ"nb1p7sf޷סwUySGkz.2+&ZN7 QX5+oZpd)¶;a A$bŦx~^)_b1!+XvxbA X8hɵG3BD۟9=.j&l4O,X8j@@p mVfnתǖ=ł-NAt= J㣡 x5``,Ub9|( )bjR.A XunZ,Z(fSxZ,ذ`v'VhճjrBIjbc A =+ )O'w沮bFb%̆ĂE,XQmJ-X+3"QkXʟMf ߘv A~X=wNAFfIAǏxm‰XeuQ#b,(!>ݗBH,XP• hONb(b5_,|ܗj#۲(0T~eZDoL7tA륎Y]Ku OX#D.׈K$ XPI5IQrK) yeX|P a牅|oLeg{YxNʝdmЌhk;yhrUzQ(A _#byrbKCwX0I]uxbA X8YA^I}]b K-ǂOD~2ݬ], RM78#zyc\/g+Nj> M!\Ipa[I,  ^;:f{y!\ 5D=X(MB,|2a^ F?4Ģ)YYb#_$ XP…GZ)Oİ2%Cze0O,kNѨ ^\Yx @?tL;} ={*T_@F/# ѷ o(\vʣ, 'ĂD=Gs۾:S?|bQrbs/qXR,(bA 7JUW)MagHv咝֘u̍XL29gMkIg<;g XQ*_cwU+geuUas,jDA&H4\3$ ;&ygihmka@W+rT1d㚾`@xhH}wnAUD\7k/LwuuBBʁ1z@E6Q͉:50{) (O,bϔ!,R`MJghE=qRo|,ctd;fog"9al篒W N)ƉRW-@MɎ\m`EY X^⡺D8A,h@ybal[].$x b*p(Dm^XXX|Է\*Df%6at,#"^أwXpF X,%N酕i%#B,;sA)A,rtە9FI9YX4d[R:+8#- =(U59NobHeLvE uounbXz'w/<1 G,v;S\ԤMʫQ"2n}n'{YI0b\,(\,XyӼRF6Ӽ?cjj  @7Cc-oBt? {VbaČawj =mEE#X  :'GI"I) wń,L,H,H,[D*Xeh饛ɏkld/l6+!F cd=*aMay料XON;o>gGG"wrk*Ii?LIk],ޘ  &2sghEZz/+C,sfLƚNݷQ;m^l߃OlW9bQXQX\⡔?!p`b1o^->at'[y_L,H,H, lH=2,eQXLq"*3;y6Peuuݫ$VIGbg-!ޔ ̠&J'Ģp(u%TX@E!Kf{[,bubyH:Rc_i5r[]mh|bQOOOnX֘pM[JVXxn-;ZXeB((\, .qVf;"gܟȲ81uiQP<\` Z恤yPF%RQaʭ]Ef*o:w'u?hnts@jm#X+ (T XNřAme1Aj!|.n[Ag~.b~67NFVJ2}2BkUY PsN$_~d=XW{gC1nD05D^ުVXVYښʼn"_V}]w*ZJjUÉjuT BX"5+Co9s W$llO%o"DzrG,r|*Or=WYVa|}1 bBW0VȿcxznSFF FY>JTnzH 235L5zbpm,6찐Y;R,j`--N~(n# X?p< 0Dwcn u [1S5V`%!^J2ơ -`!j)ZWe4`,xvCT/sØkWQ<%JY3 #|(XtU;HqF?"mn1kiX@"*ZEW$>ZMEBYB޼}p맃wz`x":{,mcሏ=A<1 l0HP*8MP9`0`k){nklp~#t)I TQ3XlY!_7`n` X&ve7 q\ĉlK~JY"Ð=h3KȴǢh)7sRbmcQc exmE!ze?G@F \aSE8_"f`qxvq;B!.c)U1JZf3B>1'd)X؜b Z7 `,֨إ-8g=AOu1{8{'.Wp2]@AGƬ7bcy,v X@B6$2ڇqcޓhbyG@0^%(NAi 0Ke[?^ YKPh1rܦܬO»W7ȑ?֨OG2X(ܤoyYU{A->ˌ4늒9,UFyq^.5 e@2 PSO  ^M Xypѫ>9X:`>ttxY`/wщPdFkkilg4kfU{9ՆK:t ʳO,DXߏ1 *qv4K*7[săS-Xp3kaFe>,{,l'pF'y ,rX:x=X3faLb^v6E7 ]?_W-Y=^͠&ŀ1/of@3yYgXHB4l %D5y,5BCdB bۋm"[Yqr'K45X=ȸ 9.vX(5^>U!l"?悠Lv tf`hD, kp$ `؈rfpp$_ln X-X@". W?~ݡ5XLҬ`1P⎡~,p=>ELEdY2AS^ B MKp/@ },BXskdǛ`( )K;`n` XhLܥ\ )qZ@ĻgKXXg yʹdT]FW_lhm"!!Fm֣;"4; 8@ mW^#gd}qT_b6`Q>Sw=i,}Z2=- X(h DLi114g}_b]+^a"); va`*u[եfwЅZSs V9h=S<;*}_ :K}>3 ݆B,zu8% `a8۔Q7XXGα=] '{NbrVЙܳk9~k'V4&5b=47 k脔 Ii'Biivm5j>uoW\ >! T,X{w6򾵣fY?÷WxnmkYy{wǖOm#64WQ$_޷\4+Om-yȅ)tnZ *T,+9)XPb(].Q8h/0DEYiڲ%`Ał#X̛;OlGj~C,XPx *JC$m\,0XPbT,X *@`Ał8XPbT,X *@`Ał8XPbT,X *@`Ał8XPbT,X *@`Ał8XPbT,X *@`Ał8XPbT,X *@`Ał8XPbT,X2Tw"^RU)}O?`AłdzGs'ű(,xwx$EMI!XPb^F"j Qn. ,\|x!Z ~Y(`Q,xCbAkjGW(`oYvm3 T,Xx:rj&X"}V;|rYgekG_ ٺ,ZCa w-us`Ał'btpEc)r;"Y׍f4:*w7kͦsHA3~72'o|{i͜fTX1h%J{Y3<F\T-tMRm6CwJŴWbg/ 6iWYԭӓ];U릇FQoiw܅ZzR7ͅNgvm_uw-Ί3laVϬe۶S7Sn-+}lXzD=޵{wחi0|~,XP=Wq옊/ln3%'wۺ%՞ieBL~^ qׯzi;ΠžAi `qO-_nԾi}U\#DnPڴݓD&wǬt*:I-]n\ғoݥWnF8*?8+6ꙊݤΚ] -)ÖtfSRҦcMz< *T,<քh Sꯅζ:vG^nÖtb$J-+sN bj9!2O/mfB3UJ|'X`קj\]23~X-!v.'tx[o'T8)xTP})ݦgK)?HY%UF(,۲fd e*ƌb|z6ܕd2fVl;Zade˴rlc 5ܖ,n+>wYα !5V|[G,$XPbᡦ`vÀͰN80"qov`t>\=X z0'sGK&<ȎڶLo`1n9w;L;_ȅĖez: %?X$ YCu,Λ%Z,hq=i]/5~ghiiiibyeBZH:@w@*vٶmt'Ϡts,H_І  EIuk:,>R2@ `iPRt@xZ%Op 9wVׅ5jg6=Ё}vw"Kb3ia[;ţ? Ŝ",,B{,M3K9z Cnx, %?X,,>c?j`x]{aMC]@3,ʮ?cBD]X=`QЃX,5X XhX*@Yzld_ ^`4X("l@O8X|8`%c1XHx۝ʣjiiiii3Tѡnpș `j`Q,Ɲ `ANybB{,BUYLyH&R,fL' X(,`Q3 e' 6u7.]+_ZZZZc-,}8A(w'SV[T>81kdO 1$j65_FhA cc=oxpmRqey0b\A 7 J*@ ,m> 5[s#R26Ǣݒ%RP_, H+cKCPO 8Aׇ6lO"}5FحC_i7~`dD3l!Xk(G.;6Ez{,N;X6|; g  =zUX쒥Nl=yi$3@d:?S -TFP9if{و7Ci7ۥ;nTkf,;o_l ,P." /8g6Xq:VAilO-OHE*br,, , Ƙk ۠|XA84+  }tvyY{'aW9_tyme ăqBxEbi:;o XhXxQ t Iz8KW%9l;c!rtJNm'Ml0s$tc|,JJEvg 6F䑧.x#DWXdTGρEi #aő7 Sݭxvw05 a#t7kxEteLe6B1QAlCV]f,)M`1&`=c5bZyQ'1sw};խ5XX4 ,FO,\PՔd VJ<|\n,P.0q<Ew5;_kfEu:dTRq,-Cr8fmu~0 'gzVË.:CgsɈwo&CdFOxa;`0UFNَ|QvS ۱Gdžڌ}foVgT+%vdP;.' F z3{TZOzS'~;ƕCo ?+`!=__h(odPNiLuMn_Wr^䟪`\̢ͬI`L׫`'$9'&9@fu$}kиl}Fjɑ~J# 'l&)-*C6"/V٧U1Z 9{޿//J#;`{$Z +Q7ZE;yTvk ?%bQB_ ffy<:_n0TP!~X 2gZ OJ⛵nd荤MIiA0KhXlsCG:¾/. Yit\)>ŖSceoezșm~(ThOo_+Hl%AD AH:U[:c=pBzǻc{IK-6B} hd.fMԙH!Zy3M 4-("72_P!+%,w"xƑ$=lpڬ,"|o@e$|.& H6/Uw Ҁ@FN,$Osj?JL+ yY|8S ݨaK*e4R|jSY:Gw2HmjMgX/xTkHbadtx䇥n3Re덳p3Nehgp{D>쎢~T[w@PODtﱰwKR8}~ x;׽PGoj#j569`w?J߻8Hc62pzx[S,V!BdB .>T/L|o&Pp|"?I^ޯwm6MhWjfET.rş ƛfGWel0V׺8pN,NmGE,JGxCALj#n8qf,܌'K a0 bsMͯ_/nF<8Ïcm/#QQp5l6w`!К! aqe{Q$.}JS|X/@vu:#v\ gLbA3# _Ǿ[6ba7P}f:" MI>fj.-Ř !#Qf-ï%UMPsn1C@?1fPwۖD X؝">DK0AX:M9ݖ dԲG<i}մZ >\CY\z!ۺbǥ z=5TpnA'B,pl;qX 'N8΢@匃c`cV;I\Ciq_)ϮwL,܌pg)"s25?>t4IxdX u  [v%]S C}#b#{D Fg$qqYD{'RA:GXB>b"3.ě^H~K;NB7ЫP.N7a!~u9Zh,| _UwX+ H}1sض=X|`Ӟbt ө?bbq"sl-sQo<Z6>\C]C<11Mj;|VO9EjO~A=5TQ@,pR7G,8q3n‰UBF})=8oчJN,$(IY8U-l*ᄧ1|CĂ%`bᓦ߽XDJ%ބFgucbᦲ7fWǑiXS`Q 20gA}2*$=5HEiP(Lba#N< p3n‰1>Zs6(rSdEXw?ޤz/$^BRM@BAq] ȅay xEgC-^Y{^eVnuOkL2!~??(˓x Is|žR@: a3ƳZe'w٧Ic]ހJl/jd\X'Jhza!ik~s2߾ s /,̏d|i;,,6n\S,a ^Ww%iD:caѨs#]jd(Y045^usZ+d)x$RWj͙o(,|a D,.;htK? ͉0 t5.ͿvVM^hپ^c8휤˒p5EIX,ʥ-,VTI~s3"˔I3eg‚s|:nń|:=Jkt\p=I J*QF=:s3|qw\{0GC(f<$,n(vh 1bd1b9jB!EΙ=!_a!H˵jm-Y_Xs\Yˎv)yRl7c^c"Jm"_l*R<6 NGX bm_gd?Y4XL7RAsY^hս'j׭Z[.JA#wQbQuoV&T{BPE;{L%w/j8%Y);=kZ%&5Iqr˧0Q̵q-v[m]9kﴯͻvmwԯ^g{N3E֮Φb>&|f̫[ ,!y[]`w.iQX1h9SXt( I*[lT}VuVDT>EzW !7$=3g[@^ERB_WW}ca! X b҆Z_u,J=҃Ɂuצ`Ӵ΂N=QlϬ2r;a=QMlM\ FF=jo8~ =="dgyRKFL7KYik\<إNj/G"fOHc4,DX^\-qg%' e5#G=tͰ]Qa!֧]{nhy)NW*l[B] G'^^_a cυvue 0S,%Ԝ`[ׯ ϰvA8C ٶ0?M6:`5a!qij'aMu3FjD(t`sKs D,|Pz2 XNy& 3ΐ@ X b@ D,h[X bm D,ma"-,@":sdN1IlRc$-!g߽J)S5[iQqɠY⛬u[E-A:Xsϴ~EQko#&QƯaѲPe:޳>cEWZ-Y罈 ;q5UMѶ,  `tų O<soG=Ė-9?^/x&gIwc$ҳRV~,R^&“5yl`+݉%' X(eq"*Z0e꾯IafK&ǂ/4{P>,cXEN )B>Iݥ2b!#!uϺOA3`^.[:a1̽F -,!p/k೙"cy p1Ib UR f,L0xZ bj̩dઢ 6tuL)o&$ƸxL,~;d =Qmp"EO*c|F z5 š8爢5֎B`aKloč 3zE=`a)(  9,ni]>g**$@E纛_anzₖAO7&s0qIѰfFԊ3f0 p] ![.o )'w~}S0ʂ`*,~;d ߟBYՁ'h(3d& IDAT`ɗ4i`abwmh3|UXdd@2f r)2b!#G9%Cot|X~`LvAk8 2li͍KGA)3bF ʚhb 4eXPsK ,V极1Yڲ0$|%X(WXR `Bh{k Dc-C znY]L`lW9¾B &# /7QɀXȈ utfP M 0 p`? nXj ?6ڛ'\͚[4L>V`dwף$oiG+`˧Cw2٢?2శр,V}]פt^%boXA*t4LP,oC>}`=F 흔`Q`A6x"eDhSY.hqi.A_{ dWyoW}? F{.5)Ɯk4NBFmCEPtE˘";z؝iW|={`n|dxQ`q׷OZx5"F% 9ʱKXT:0`~3_Xg(F ˛XABK(=R{5-юQ}~=H=(Xi]Vv E>qّNyIXȈnǛꣴsĥ{> Pv﷟¬ťA};M>d> ,!7j°:H-v,z٢e LTdyi > @qYPʱn}g 2_O>TFb v3m)] }1byk:Lۡƃ/@bҐܞ!zuŬ{Qŷ_|9X`w8X$H (I茿_f;o ]Pٻ&5=ʹy %|A>nJH-EҥU5oCBrMD vw1[Pvݝy;̳#8Wr%ڮydoֵ_=_{;~D==Q Ţe\'&#  =@*4 {.JPuzYi(7YSBZd4@Oh? ٻںh`\& "b́*K" J~qHԗOg cb}tKb1% _Z#xŏwÙ*fqA}8EtW):c}5翟X\yX0 Gf8l<"auiASO)u =Nmr4^Eށ͉EOB B#WD.]:2b̭Bb|D V癉tf؈Hγ{z#"bq~YM s~ mUl#8S^A+WӨP"p'o q!ǐ -Z݃+ ϯ47DO-P޲X,?o^`؟DBD*l2I@J Ns!\K[B6%F/0N,~^#?wC`/oZOdzvåmUD,$V[c/vҺTvűy{ t$ҸIR t%4h,jΊE$IѴpQ+jb5M[.l4Z5M#G\XrN(UgǦ* H8,VA1S'I]Ԓz͟>¬@.dxsX5P ti 警AR GFbPh,j<>SF`J ψc °]mS/IݫV 99dLi(1+duk-%e d`,n`}3 3 [1x0y b ͠ @/C5QOF8@ R?Uh"]:qMPvI,zp%$TTPU͒ʆH>a+҂u $hʨ4'5jX5OI8X,p "&b}q@lu\m>+~4[n^#6tP; X޽rgx{!^|o08x[NGS_Ѭt \S~5̈(Lq7tۖG-Gy) LU1{)Pw|Wc28;0M.XG8EQi)B ,a;Xڤ+TG<n::5ŞRz67˝ J@+ c&`MEeͰH٧ba'&g95ӛ:Nq68TCt/Cs ?ԲX,ljms}W V2[|*E@tm_sA[vc ^bQKub%hҚBQ2Pnog|?<___*{u) 7CNv#s*0Ԡ+X.(: ew` ,֦֣1Vc/~͈`ї/gŘ.[Bv% ̭jR9SىXt͢r{l"iZny<%$n遱-}/c|وT\C- ..ZJ/&')Cw#y#RD_!XCH:i =4^2 5* 4FJWRXUAUuMM{N2>brw!vdOFh4(GD/Fj w5'i>$qsofX$m&Ԯ~D+}Uy:a!kZDn,k}5d pl7*{bưSScVzv-G#͈`?~?ڶNWZVjY,ZUߜ_R>EVHk3Ă%M<4P JNq:q-R",6)$HYVG o~GF)ju!KX b7Cm0 ,1Q:i'ݪz~Z ˨:>񧚮OW,8iaOYYb!~q)j I$A`bE^O'6u#$ eD,P W`\}cJ,\8^4zNcoH"3/eCi jS2Y(/07~]:sBbAC^"F8dcaXqjpv)?]%BȈ>-0/N1ԎL:J̬~ĩi0 5U3p6ǰG IM"tiЄR/,g0 ',%Xa&HHٳ ¹IO]M44aJ-EbqRUF%9{s}[r`oE.Ƈè@—^ݳ&Q gA9㐓2E|QXM]0}H,#z9F Ba|=i%K> *5(_(77 `;n%ΑLN, H>ea064_$^ OnĎ2@ `cz !Ee6*N?3Z]Um,ME1MNsͨ+8Z, .#i7/~"ڻ 1fD/>'`R!:CFp~ X8l,ЂCK'4mR֫ ʻCUt}Ԇ|!p??9itN<;gYyu1>v?AC^`goqg0f<cG4~5_u5cG;f4RY}и# I%_i%*Rj-+YH`bbŊ`1 zdFzA +ʁO?; J ~,{/߱%f(E Ɍ X:DXX8/ X3 Cڽy-W]F+#3)m) u"X>'ە8r@lj("[րitR/[ݤZKxKĜ1ZZb:Y>XH /!z4m-U d8uy Ծ,ԑ *^Fn,ft8.f^uʯ!tw,^P4nãb<X,WO9G1B}'XM43("ip0 zw*XԀ'[H f^lfhzB&,hOh%Yɭ_:;]B\sK?0u@R ~ИX1ccMP$+I Kc<*xrVE6bYу㶪gYo@!5r|H |8b-3i(nb#ΡEvX<(YVXǂn/ö^6D۹``_PG7XOx*`}^S9|2 ҳKWʊoDi:Jx*fGݯB10B}' X$LXhmMb[Espm(ĭbܐ#_,ԙдI6q|%HG}fPyyX`DM@(X Іo!StmY0fx,˜k5zSҽA*rHtps\ ,&'r]O MOE?Euj ͦ8jgXDI/Sz,,BNUMPy/؁X, C=I]y{B`{lREDTKR;~ ѷt=o෣9Z`C ud3QPI 1fFuWvCVPpezii`1-|,43C6)`qJ9X4i灦oxdYh$/>ZO3.CxLd6`a̘X1ci'%Y>+c %,ưFD&с}87ɋ-PDH-IrV<_xM$xvϟ6Ƣys ?OqlEڷe6<%`Q!"?PGX,ݝb9X(mx{%c.!ubrR%yA}ԓR/ ULRO+"a:FBL ا6ڱ~)I`1%v`43DOhڔȅ`/\@VlUND?J"sL6, X3f<caVFuoA:1bY&j4Dc,Nbb#j l{e9UDhA 糥ߦƢ=ql>#ﳁbNJ43֨}Mg>~&O%,'Xh~'$ 6%X`W7j5"{,Ƴ)J/"I=W=l?0fx,˜5|."OQ 'qXqj`163q́9c,U,hV(3,ki*[O/h'eŐWH ,?+2,XV(5sOϬP%ZPz?b' V+!Iy(lء[W/G-]l4aVR`0#`i(^|aiߠK\&n($@3_ ,<3P6%y,P3#@u^ ;hn)[_/ '7:;Be<ƌX3vs++R.'Bєchh_c|JkC֘ԣe`1ŕ 5!mG,X>wux]H+@O|0 'Z(X\!MŃ`Jy8!X'22=bPT gBﱸX$ +Lo4^W }ؠ#]ԱHUR-ĥa-2-`}' X$LXhkǰQ%^ ΌJMp5K'4mRBxg!C:(pF@UqV!bf o!v|p3 cƌx,NѺQpJUXDhF|P RQ7󚝇7K/Ev,ZTxa@,.rϠip'gd7jQ-PtV$y, $kJA4O\qCmRз;92}t4iYXIMmVX/xGh2ͺRPz?lΕK5i qg26c ?"<65EQʬ$8GM6&2|r-;OXhk9= ~\tÍx^c5zbR. IDAT\Zy;cfP۔c*5 } +u>˒QzIh6*{\ Wg-aK/,S%dASx*5{ӣM%/՝Dz6Tt!aXHm &,\J ; ;SHXT6SslT04Eɞ1YuW ,fV:lԘ)Ω' +K{R9}b.C:vG_!A9Mod{a‚2wBޞaJt,15uS$ZJ)A?8ɫV*@l%mZ&b NZXB)'lXܹ‚e{CrL>:ꪦ!~&HQ`o\N eo,5\ qz>aywEZDZ єAdƆXc#, Iꞕ? }4b>Sm}LY(æ-.;/燑=7TVXa!a-cR?y[5 mXvWuLyJ{,ځl@zrH9sL^{L`5,&ʍ} 8p,94zMA_[Eb$SRAc)QX \y<,~rҕRCX ,*r,JxV_D'jyJ2!$_I$<ۗS,,X KO2=3Gբ,< _I$4)kd 8p,`wLPzVFǿ&_O$RB$PLXc/}RZld^Xc9? 8|q+v`ׅ 8T,,Xba 8p,XXc@ *p,XPc 8yYUo}=2|pw589Mnfڽ</!=%,Xpb sW.=m_dz-m}G!BѺ!¯쵰H{w8p,X8:13޺a~-zl_2{> OT"Mj*?O^ B%v?Z@ 8p,2۵7LS dݨzV[bnt B8t^tO%k%aމ`)/7 r!$p,Xy,2Lەg\Rٳ1үpHIX8c,JCaq 86敶ЧBŒx[Z.9eU]+gr.m3h(,j5>9r<N¢**WAaQ#,_wa Rqiͫ]_zI7N1-ce7iy/Y޿nkOzkuY:M~)nY2tfn{~.ۗ7dGYMiYKן~wS:};+7ܣj~!ne QwO(Q<8#αb|儶g%ȩ}T;Yթ[5 OQJPyIOԢX|?ʃNQ2-Fc$hh.5&uWAF(8YQ5= 1",njW Q]EkBPLȹoSܽ"1/%s(, ۲<}R{4Q 6X z(} %)hA%uޔ,@)y\TVIcS OKgbhsJݭ?GEPY/,[S"eZ)X./. $P^XTT̃/Vwv~ X0~mk(C2UX⻵mF9|zFB|c+Tb<7W./ j5X#mAգP( sǜ=\#Dn9` fǕߙ/3 AK ,:g"B8|1~I!gc[f&@V$H=<('r6;LTWN*E".G |= xun iHnё^C#}8XRoĂ-BZ] [×H@ {xly;)Xtez|p( BՇ~%kER٬&䵬ȅbjwR9@k'W\HL*F ׃&>taRVf:>N  #8HCf{oJw'`wkj%^A y#x…1T,P( UA>Qd;ةO/v` /yM}WBc`1k;> vs"( lJXsME,&^0bBPu%}xCz^ l.Q,8zgM ?\SvC7XL`qك(>,FC\E֝uW/PG E@+$ׄO^$,Zd#X쒘Q,>ɍe`"pV=&{FUkUrWoW({zQ< BNc`PwjL7O'!T?]l+X<%N*J`Ta7\`0){W 9`!{S\KcʳH#hi(!g޵Q/_ȼ|[p̉17X,(dX.j˸CMBE,DS_k"(vORB+ `WbU?{K!XP(.iF& 7X֥w>_?,oL3MĹ4XMnQp8$d =, 5)[-uJɴk,X.ARV~,0bByB^oQzƭϑ̻.([2_0\{*>iW]ly{VQn9 ]c1ϖPl2fyY%QY"-UUc7ѫU`a,ݛ`BPS jܼ ɿknl8`6Ko_`'o`bB6~љ!4B͓v$4d?=u 'BS:o<̐62lqzS= H#}q2cJ 0'>Sb%јoUv{ )̻w&Q~o  )b8{&]MX| ^f!wݞ6Xp.umR)6eo2ʗ>`ܥvh`d'~;k~L6{/q8jF,j';ص;IgzgT:]sC3䫞 Rl]k,6b2Z,>sG%2o Dnķ'*+X= BPuSqLn;nhLBB4;e1wϞPumc8yfDxC.$DAK:R zr,:g;JVԿЙdB$&kw?;X(=sF_rwE&[ ;XuʊS`1ۛ4_.їnzI-X[yuy):?2 U v0Z`  ˊw߬筷ڻ`_?T|>:;m^ܻ7q99vo6 3Uݺ00v,{8t8``AcAc({G+XXXLP $ XXXht0 XHa` @h,h,,  ` XƂƂ @h,h,,  ` XƂƂ @h,h,,  ` XƂƂ @h,h,,  ` XƂƂ @h,h,,  `SM Ƃ XN4 X44E5+Rۧ[+ Ggg :XTrOPh,h,DRBD?S-Ai=ߧdA }(T{$қl =޼柠k XXyUּK_4FLiт֨w`A,&Et 2T/-izw'ؿh,h,spzw.D@iP{.e(`!;3bnN67_k XXĜkbi+"XE_Wճp<׆j,`, | Cs3泪`Qu_܋_0XT{x`_gػ++53"ߵ:$XsE>Y+4,, -~44n͠ݴs]ۚ6u|e/Kʍg 5^]m/ 2 si15MM<;-i5U;}cAQH03뚪q}]Shy&&bj"jаƂ`H6y -`/ji֜jlyn1f^8%lD c6cyMWAŝL4=K ϜKd H%ry .g9k T ֠ʜÈQ\x.1l#v1en5&ADG 2\$l"fh؛3_#.-G@\irzιß&$؅y\w_r`op<׆ :OIJޓ,fS;D\厈=;՝ywiwo?ܼZ)Ӹky&)"0JR9~%w-(cc޵gE3LjM:S;R `!2p385 v[6G;=F`0njX&$2s.vvhFE~EDWq}|w.Ukl8f\E5Uw*o_vݏ XdZ[YyNch7y ue,UfoA N Uyk_% e1Io"|q:)rGr*ƝЍ1UVᙳ,֝k k SWR  IDAT[.]][xzXXzsP' U=2`1a ~MVI"d}o`Sn8.X H>Jέ a}JƜc;{pN2x +,`Ѱ׍E gXi, 7g3C#SIaM;Yϱp77_`֞7$qlIӜ܌Б3gt?\I޳8:sؙ=k T f ?NJw}SCJ` 6V3rŐZ#[I9Y0FrX51%swWk眽GXkk6VV=Z[n,~ظfs>lƫoW7Vׯm|UsCG[Yث`=A'\sz 9.8`,=dV ӋM5Nc}nwu֝+Yw?~o=߯f<;ן(5{NjF \d6'8qo;!.59nI<~PO&{_0 &/2}Qpŝ}/]ӘX_[iRBǾ"Un֏|&"pt ~]bQ,rVVE:7@&b,VNr a}6B"HccdF|F, RNFXlJ'{a1=\k.,ƥ=Q|w3tצ-z\vB}f玌Ќ=U:`XwJ=xMv]\57z}[:cw߭MEuctp,36#"'<0'孄uIe)??Y[|wf"᱘}_V%·Y~Np,p,:d<s@ARX SUzm",F~>=$к+qa19O⭱{5Ď亻3(갬mu.i㝻mNݭ7ֻZc[5َ\j4I xz88ĴtjQ# n||hEU'zҢϦ)a.+͡TFX|-~!,<ptk`nZcIs+^/{%[2"-,O3ⰎE& ă(^B Vq SOX$#Nʉ ԙ Qaкhm4h`:%bT.-9ǪcME$= v,?p4abʼCJXK>?z>BW"!,~-hާ?(XLJSVۋ up=AXޱE>-qkxXXǢֽu?d(cqlb(HF>aRv(Hu piclӠ9zhB|"f>>MZ>E"= v +-MtfD?6dE.o9WZ T̚&c‰o]Y{вYf;ZffT:PVc<q,X(a^"ePX~z p,MXMHF>"RPl*8~S2fS]Q Y>gΙA7wKAO/6"Ǣ3yZd.ݖS'K\м"L6r\Xh qwX?mwޑ?k/,%5(}Պz']oŘcqU[58V}Fʲx!'Z(L LdD®,eE":fž[.f[d(cq|B WI\B .˪\a cc\ؘ56OCĂ?<;{A a!2jq 䴖,@X\УMe* k=$UfNÍ7sr]-w_#Ҽ.w=mƞf|4߁4PWʅa1GEʱqcKӎŁCb8_CXD7D>:sqa!t .=KuGDXoth%txQAxξPIsE6TBtc~̈́E2E'`Ol7Ϝb)=,Ǣ.ʳE)¢Քx"#X;oMIYmKX ?򯵪p}nl@ cԑ+So\ǢYKtN#,B{C(rek.|NSdhB3@4 fpo?֤wiP",>)}fkk@XXX ,b#u3i uqK*>hXkYr 4t,б4^P쳉CI`#,_6Yx`qAwd%YP bJ3]?MyHB!XDGA2}%3~/>(ݬ쌎:Cy.TIQJ0حE80 FeXH^3ryZ5L8 ָ!UghVP( Um*,0 " Xcq- Ng}Ҡ^C>ҋh7 p0P>,cQvl[WkqEu#?]bNXP( `1grS.>hݬ쌎:B* >_ӿ7KXH,N KtBSVt,NmǂHFҤlavAP,EB[q[M ?HӼ&qM!ip>0jWͳȉn~̳v7EMdX;v鱭 UVrs>  t,2\/#ZLL oφ8XqU l,,LT708Um nƒ9韀ž I4M32 &+pCv^XyBT :WG/zr^yqft3ʬ'g!`0&6_ G~A~(uUH<'ob<"CF8Lj$Ggm )sf/3&Ǩyq,=gS`v8Lux5t}ؽx?+K2lo|A@ɿТUBDAB9TjCXPh l`6LﰒAP7,o0G:8-)|z0{fdLKl[BXx!&~ њ"& )Co6;t '@+mPcwc CdP(  j̷§iDI6d3/HaA3 ,\MZk,D8&9Pثɶ}am<'͌p]=4H?a;б@*)BMP0,P@  z- (2Q;eflJ"'3|&TT z Ej,,ldd?ŏ d`Ź,o`[К{.%P+Wq,:'|=quea1 `I2i7/>1 fC_UH ,\M`q'c59~ *H* srLᆪGW9# }L(t,бZcQ)^vˊ{2ym]et,XGx[`ѭeXt^N0CC<: EYQm6o]uu_N:T@$h]$`0ت֖ۛ8x·;UD_8 Gg@X eX c%Dj峂UőMҢq+ꔡ_  d݉oZH "ł)z29%⿪u -{Q .೒]b[6(b"',@_sO,։{%vG@ WbլV~;";moyjm!~f)EbmeJX;{ʿ N EAǶXٰ G G h1aXnš3a@y& @ \= Šw%z9:~1 b27%/e3tEZb1_ru]ҝ}p)7q*k^LRj [XKyЅbg+Y*쏸5PEڠ'c-^#u3:E nkO,"byƐ]=Qhg,A,@Ƣ-OjLW NF}&B&b>+|蒽'kVN{5@uQLFm[ŸDS+&M2-^i**YE nf[01D'iy[Ilb2XG١zbA9sX[DłuGr5YR$Ϟ6vByXRqN%r7sl)bbD']'";߅UXEyk4f""pW,ήrDㆸAeo69!5}%9:?ΠR}i d,/촴)YQRD$+a=>V7 /f:b `Md4VuzXL[2z۝ ^1tAzLlxŢHGN]b1i5HZ(r.@wX[P^sMS.SJwb-uԵsE׊bvIoLF_p@,d X cIJDf(G/"m;ϔDAX(}mTI,xțJiyU Gñ"JL+q*EΊ4}~T~fO^,bW-߉:]sm&EBĞ_@,tX(o,`1724[3X061"El`oUL#%\>X 晴 _V9#>y;w?<^Qk љXfe=b2fM4?syN|{(tc>pw7b˶"z5gF&S~#PbmAiEމ̳u~ƶ׈^|+N3uv>/j ;gî)k0r3<M(xkX*B-XGY;u{*}x{~"nQɐ[H}kVF"] IDATv(7 yJwoQLʑQEB/XAS X c̾ˉQ+36AP" Cv7} \YX,ŘuGa̔yWdEvLoe)X$&cB-l9ޯ*еb4 b!esv}uN}ymsA,v͞0ѫ72,`QiDkX cqsҿ~MZ( UȪXȹjX cFA>cMvXL M,y}Xi1 d,ai6r1(5*/l 2]:_LZs/?~bbWC?B2Xܳ½],fa _zi0m %JvgeMg(!>B ~7 d,Xt9V=_ @Esh}_#z⇵n#X2@,L4Ͼ+bk c@,nuP~i mi)ĉi" hotڔכ]٦iiC|T\%^DI*l@̺zp X c⇈E٬4*M[ ,׹]B@F3ɓ ZtEUQ,4kVfuh%%S,ӂ&+ h7KJj:8$XFVK *@Vr$-  c!f yMdLTSq\F5*jӔ1R*],?鉟pHxTeCU*_gX Od&4{R=ټ kR,8'q;rg/7 .sn,yS)\@,@;ަ5 dUmw{5'26m#,ѪJ=!Jw78(j%nIU8x<ey7  7iۍwSI~V߆"2,-VSJ-|i8k_JsT5 U-h\$zr|)feyFG&cŏpXQ -$,9᝷YYJ4 Wu  ,nFXQ<)T#p,);岣~s,l'G"v,UrOŽ*GoE[p,Xaq}ǂc 3Oa=s, ݇cjOɫKow,r#+T5@X7XeWHT%, 8L"81%cq6de9C;ձH~oj@LķTx1ZT0Qa 8@Xܜc/s+UoXo0o?;';j+*poQ-WYe Q+"YeT4vtu,YL|;'V-gZ'{EIDS<ۃ ' :j p,Xaq.uB9W-yȮhp e6&UP8e*N*( l\h9%.EB]pCO),zñm/+,ULFXDp,XhgMZ_T2?RXŝ= E5cm,8cz$ڱ,v5cؤ Na"v[XMl3?hcq-_g>փlS6|0t>1SӇKX\}ϦFr73aXEdXr> b%o 8̴:9گ }#W FgG~r~]H{HPj׏qg8p,nsDd6^_L#l,k]:D7_s0gl? >kSXR5=6k= a:TGVFϋ(N[;~H~Ftݪr;|'fm[;T{(-[n9QܞeV(oYHo-n =ӴBXSwCKfa/,OsG޼WQg쿳ң%7OF7h%š+!xOJS~EctTT⁈ $zN3 -͉D\,"{8Yc‚ g>d2k "x R,<}nkf8RE+=EDvT51qqU1+f;M͘)VZ+j j?Da +b7 ŧݾ~C \?~ -0J1hsD'eku2#Aa9,ow@''N@N{p,X 8io|pG͡”s3~MtQAOal-2tK?ddžψU5x5O~''o0Ѭxͺ5Y NX\hH#!,O~ޤdh./,}BX8&g[ɻG s,v?5B FմZ2X!'r""|88p,L^y^%wOaQ𻥨zFOa$CE!2Tde޽az!7ڃƌYmD$ Nkc%5A 1Mcvw}iWae'ef=sq13?D&vOq+"-&09`ᮃEςݳZ {"{]y&rV^KzpW5]1kRn f E@}9 >zϫHiݱ''X\9;C1~,{{E+LEߜo ~a4aŒ${{Oqcv9yF(X4Isc``Ԑւj,?Mp'(Ir? ],Hv`D`1ٲ-O(r?Fy8ZWT>Laocκ[EЩe(6OtEd^Ec*Ԋo _ XX5wX K-g<+]C,l 420,9i,.7[ @;o`1ɫ]{=Y?XDv *[SV` o ,oŭEOkW#_n`)`6d bdۮGy^?V9i(fGd``avg, ]S\n7XDv 7 Fg_/Xl n{ v*[?t,"?]"`1^̐e1ƽez4qxyp|;C1sb>,F R @NӣHvFk.Xck XDv sε7no >FhƂƢm/yyL7;Š%{`8.;=neߩ#uC%Σ5$ <}sp~+Xđ%.7 `ivo|E^wzrhILbE W֤4vZ> gޝ)Mgd7o EOˬ|\VWD%SdFe{\,ҁ탅jr<{_R5T^)5g猗-qi$>ܰo=nWdwKeޜ:+w)>LFbi}f|;o.Xtْjt݌zLw>9Sd]/TB}3zUԲ`2/cfW>^*H4[144=Wa2" {+_k >n ksV0X;sJQm?X=Za̔;ܭPU-ߵU`> ,,:n{o/{ | pgq5w]Z^^28ó_"wo F>ydƂƢ-;KީVC^f8xpKP5FZαPkz+U`#Ŭ\7//Uպq`O^r>|1j[Ew=E=qfds;" @P z8Q av^;قs`:VuY}*;ϮE?h,h,ӥcK3j}pPJt^a0\\-Js[m/c&t)> Vj~ɥͼx9vObmM?r 44aޢ2fq^wof0V~?44J씔F`1o:o<ċץ' k@ƂAlVI,. 9^EHY+6xXU"p |,bm ЃƂO_)O*8G맻U:`   q   q   q   q   q   q   q   q   q   q   q   q   q  [ 񟜙cSdD6'rĿ4U ʫwE;%bN{DI௙-:j; `AcAcƉ!v?>o>X90,Ƕ39%X\b ," y)|,v*>H|)`@`a6,{|5Sl(Ƃ"ʒ{HI3i XE( bf+Ƃ"b^d{iVٸ@L,B46X :t"'Y},ԉ-P u,paL`1|,h,h,"D>{ ǦQ8zYz{R_ 2GoݙoZvPKD>7uV07y]["z S)x?\0@(X̬o9KKpԗGm$jV#2hbCdB(1cDڠ-Hb7;sf}c\8_d3Ϝ93KYз3wXT W\D"wߔUwN\dF`p1wnw;],doocF"_V{oM  Ʋ5 'mUe,(cndPr[ Lb qʾ)W>Q;d#gt&W*(X4[寱 V}cpuh !H$)E` ?ܸճ{'9,:^+iNjz9`Iw;zvئ"NW<@5q@XSRȂ2_ p <}^fJ6RŻ0iM 9q|s(B³`!}&_*wJE%%XЂV&`u~-7- 3v~^Г-+Wy8&%utwN)>H$)}`q`.cxဍp<ϊhU=WJ\Jbq~| xsМt [Uƌ͕\,7Q"i@!q/\_,adAz`A X5+ɭW2$ ':ݑABI< θ= E`je` _Na 9BNXDS"H$R> ~@?>/ߩ22.{|ZWlB}ff"p-k-hcJaW.̺w!@;^#o"i@y65GFE$Ogޟ{Vy,ly \yЫBU;%bLp X_=>o񓆪 mG CD"H) W5e=gҳX h y[94kcct`QSC?E )E4鵃e,(cbWf|Ն'Fy7< zػ6f14 IDAT(x~#\.Xæ~WoGsBI$B'B:c=Nd;ggjAj кXd|o]/ lz17 ֎>GC1Y^;XPƂ2#Y5"k5T `%`qٿЩ1@:cIXz͚i6Ŵ7"$D"Rڃ`}ǫ%OEnY}*+A=曳'>Xx L`Q4Y^;XPƂ25g}5^W.A,xX\;0,=nzy?XD$ H$RzmCAq &PM_ ꁊo~f&\,vnd,Rs@!]W/2_Fh`!̛`q.zEI D",9h _܋)ܱiEŊ75(^fqsvW?#,`q e,^KRS"u`A Xt]q/BPY̗؟"`q-5{WcjD"Hi:nZ9E; ^|7>j%lmbV[ߏ*?0l׿;"e`A X{ҟ86 š[$((#\2XDz,/X(6I`A"Ht塉`q\.`-%E[4Iz+gf5_wifςVOr&:9E2TXQFTQ\F; ;eNuؼa}4xlut]36,=.4?V71jrH$DJ1Xt,2Uww[`+,PF N.Ɩ2ǢP~5:*ǝs]0ưyUxl@NUr"e`A XĔoL#'wFW4#l",di/­: OĠ>uc ,䣈x3>zq3Œ fM5 `#}Pln,zOގ4I`A"H4Ţ֮0A%Д'[hsBNąj|dY4nXk,3bp7XCD\,ޮc}:eתڏLpM XP"19-]/J(n/]ᔛ.YO`I/q`!C킅 9zLbq` Ѣ]G&GE7?SǎMpS܆$ H$R S T } [( d @+rDK;.f.lt͙9Sh܇*\XPSBؒ_X,(cA$m^?j0:A:qHX)"}1,X*cR`DO4>g;܇s$`' @n6$\d{*rWtTpO5I`A"H;yԧ<˗앩&N f g佟xƔ 3&V]ZHֻҬk7,ќH_¬KoXT={K}=e耂7֡e,(c1BwFzf4 ,s0,/ϫ3#Z]ZADž7+ID"ңR.Ÿ>SYןɭ}(yl}Yلs[L ]•\te,(c_~wF?m[{N9TДzNSW K(4VEp4T[")y"V`9vH 4a ]h>kg_ixo(#Cϊձ 3bXW-$$WǼάl:3bX'$$Wț SI64X uU2<S?׏~=̧$$@bAbAbбXXXt,$$@bAbAbбXXXt,$$]X,u_K^`2M&łĂށրY9**r_6-yʲ{5p'zԿ-˛zˠzJ]5u'.: XXX5"+^1AVψEKZuݔ,rkTbQ;Ă1aĂĂ^Qk@ kU"ő '"|ߏ⼔ſS,]7ק:dd'26ϤRKŸ>f&b`łĂYdA]xJlQ")P,V2sc=]Uj`n 6ǸX|}_D,XXX*o>)lJ+Qz2B}qGk!oj{    HE֏/ U |yS*(TՠTb oORP+bQU?s~P^)4NNzzÊ\ʀ=,pf}46?s*辛i903޺_?lũw>   VէՁl6oj(e0U5Atd%ܩ70X хg_+b7Nl+ÏhٮȇI5M, թr,_y[vÙ"kI H,R %/5jba&pϊZ˅fIƪ>#oG'v aOh%$$=7reױ83z8{2)yLWOU|S7K,2;Ţg;ow{8勇em;,yuzX WXpd4''O$e96rVH<ةnMsl#]{/gbvZE'lӍƕqY5ܟzp 8/s^h|j;w>K@ZgHWWĂĂĢ鯧'ƶ;/q%EhSXu&:/t,>"sk$6>lh^:?m]YUYWĂĂ<8|>hC,K+˝kEБX :N vĂĂc3N9N-oW,+{ӶM;QU!E$RG ^Gz_+yvf߸o"6hb -5;;f( B,X 0y;p-ge$X`# m\C4EVWץU0'7/dO ֏W؉P!N}YE__23S}$X,`];O\w/bסڸ?ڲk܉;/gW5zhP( 5`q*mHp)o(=,4"OZء/7x5!kl/5_GBG,0b/EQ)23&؆Q4`F8Ř2"s m|@= Mw'G.t; H[ؙ[o^6V B,:[mz9X7<{Oa )Mٛ{` ~`=&ǹ_wpl c66`pu]ot#Hj}ŕyL2c1&7_9S|Ϛq7ɛg"J˱|Q=t]!L&Lz \k^#P+6_XCKNhZ&(UP 6QX)IE7L`.%"ڢP( 5 ` {h6o`@_׵猁_$4y\lpu*$Xgfhr<ѪBQF,RY9ޒȨBu[IEhOb%M =F;al>*6Xr*'  BXlתqh,b r 9c``Wk[d8$">ztr:G,0bt-exف KKo\$X bx;Ʃ!XP(j"Ë@9vϔok``qAYĄ猁t򡚃K/Nl",vh"Б X`5UtMk_D,?_*X2f: \ &4q"XP(jI2d)TCn }BWx1 W:+RJl",YFG ,0bݵ9*6z#X01'`ۧQ3,(-NXT,P( 5>` `Q :d猁ő\ jN]E|6X)$FP` X$t[ŁV,, 7"kM)`H6;Jd;< B,>$DX`|oi_@ 2P5A_d.,ⳉ4VQ't#Hyf]-ԊXű^)uXyYa{fݶi٤؞EWݦbx;o *0sA@P(XE[j9jcYKVżTMzxXw=m#kǿYt-tRAI }rժ@VkA"% U=;crҖ=$[238;O *&w T,Xnxq`{ *T,zizqkeMwv `AłubA:XPbt,XPT,X] *T, `T,X,0*XPb,`Pb `AłubA:XPbt,XPT,X] *T, *@ `AłubA:XPbt,XPT,X] *T,ndYd4]zcxil/ 5~ *(uŌm?q鞽<_9~l-Ͽ7jӹ. *T,./Ҹn"C2 IDATx!Ahr-~=99wǎ"םp&/=wiqi7/1߃n,XP(6bȇk-?h4 Zۓp, XټIKϽ"g7/1߃n,XP(VEODOO59kn,XP(-qw^fk _o?rYGGG/=y1oipgwuߑ`1_rl0ȭ"^-֧W?ؾjHiٴn9=Z<[ x,NyטWKmz;j#_F~geG*8~z,XP(ђZ28k:X|UҰTx&~/[V[-J{csŎbItsւKaԶ h_mI<?s-5jc @_{ q_G=6&եĦ:8ȚY֍&u|9?;&#=nn98U Lz؉h먪`03j0ͧz-1~z,XP(dɜazf{oQ~>>QBTM)΂V_^V`Qgy~j1R{s3^*դZ*K!6wO +o緣o-LW| x0n,MK"r,4M< V_}lT7c/֔P*X,?&I%jy W &|3\综+9,ƒEA8)#RpR=,\2ÄcA)/L/(&KXĝNE3X 5qanYd߇ *T,R7T5 Cx ;=Db&Xt:Ǘ@rXCMUUںwY!_U. +E큺x*xg='Ϸ'O#JJa繕v U?Fw=DQ"ץ}n~D:3B>Xd&Hśf_:R7F%"ZHn%_ `97l}>n5XPbQd]!V&8,`q`ȼjՌ[l}]uM| ;eQ$!;Q'j8H+>Va]mnw֖bBMU0X<;J%BH1骹oVh0qY\|(Hih? 8WћHBm:X%|T \A=9A4\~z,XP(0DaD_eTjQ 'bNUb-ZGo0oEK.X\WE]cnřjJAwӴo֔ʞ>k_;[զ.@,VJb7UJ6b]e*Ԏ٤homD݄6+N2YVXpgZJzI(wpkU,~x  +f}wW׊kL⭔vHSf.c1'Vz.|ܼMݞ`^65>|ڱVԑ9mZXXX fOqTD?rbL0EiUJf|:ݩהm ћXh/3U|XTE2O[z$ +n~[2?կ~PkU,`2  )T(k^U,{C|y/ 8Ec^כ'VbaT""8sW\ޜoUt k,wDݭZJ;!$$?gg[8jfqB~Y~=r?g8 ^R#tqD}zxnZ- ȉZw.Dk,Z(Eu!oC%/yVWyҙWie8?޻ 5@Qtݺ[Q2Y9] =fHKxj/{Oˌ+ lĂrPi͜=CJD,x\,U_y_dadϲ*nI)L$$s#;ٸWb_ .a <~Rk7"G{ܩ?pnf@BDuqڏ⌿#bţ- *˗{܂s uĂ4mf]hZW'l ղUܺgDtw'<;yߢYg]S9t.k+G^ P1DCb:~">󊴺; k?(X@{6 w67 #\bQϷ_ .XE[b ,|ț^Q@,`Ţ0g 9*N,tM, $$$*_dSʣ#$#Gϟ4%"9JƏg^5Vr RLtkҷb8X`TYL43+TH,M"ۼjgbK|xt E:c(FbAb10=SOޯUxzw=m\zak:PR QiYhQ"DQa4ݾ؉>l7ܾ^lusNŔCцjqu6i{m((N%4vCzǰ;%>8~r ViOMX;^VUytNa7wt' o,x,腾JJJJc!XEAbUt} :NϘ2$k׾GrcQtt@ua[`T}c9,SW &}B!'+)B9o@-7kg/-BӤ# d]6ί#xYz5𪙢cVۆ_:%TQT. ~}F!ߝ4;tbKgPg66 ~Sb q\OJFBr"8z̮R5d1^`Q6}vi"!6YzMwa$YV[ˋ1Hh(`*vX/"J<89cf0 X_&lx0ؚIWGpH?i W`L]Eg#mhzɵ)J6uB&+[BzA3ǯ'vlt Yvaıet .1Sߛ/p@#1uݷŖmS{'G=Hp6 yW+/\ϫzIPCIIIi!Ő,AyqY=,HyI IO4N䌩i&|`[FrcБ4:о8P Pbk" {~@s+d%X(" 6 A|)X$Lp?',<ÀE{H3 .QehN0!gU9#qE20Epp,|G#8g~ؚ2q]iŲ hڒz"D!'Ӻf++CгoggH>:؃# +p"`1:Ͳs?Crk,='Tr#v$>X,L_ #Go#Pn'_)'+)B9) ^r O,ZkN4Q4q?}2-4='a4)f}E$_W8"9fLP@#N-_Su#$`gX;./GDž,V)5Т ,{[9WH5,#2?beEDXh)LvRH3ԱxkH %%E&_xddL8;,L, 9C,n j"= ;G.ԂGQŸU8{7h*cXӴ-> 8,Z`<YApC )#z?%kQ@STK%5]o,3,ؑ۸ E>5z"-`5b,>,Cβ;Jΐ_` FHpT| d%X("J,J6lp`Q Q`PG_DpGޟxXtuu+nO DbϟԬ@m=ń Pn~Mdq>rqߪ3k?FHM#kkT]TWóHNEbA\̮yWlG,:'L$H,8XPd9^3ocd1NoZ(H,Xp з6ĂlbaDy[bA# ],h-.,  @b@+詉$Yb1H+MUb~6]zPtmj,E$H,h#uPC wbX,xIdruNª bX @b@=kX$X.sd|X-´EY,Pdv{3 `7cZX{Ic(K_pVj @bX42X* ``$J$T 5bbX @b@Kw!=P~R 6+޼&/穈/yqB P#Gd @b@,Z6 eTBA,> q",LJ! @br LA,NbZj-" H,XpŢN,P*,@bql85|XGOxU6ȫE.} X XM&MbQ[bA+ PH,څˊ Hh> #ELAEzfN_c(pE\b2/brF= g1$H,XEk.4* = VAE=6IR*7D)T* 0!xb(&Xڊ\#n}mtt|xb $P,baZMzS3xXFC\q'o߾=<}bTLa-YAXA")ꗜ ")Y6.NrIcs_̜q z[8QpFLڽK !gZqC,! @b@; m |Ă"֦$ ^5,{OhSX:{bFsݯK寻 ʂL ʅ` $dcBDNft")esE9f& D2b0)p($YAȆ; O* |GӱVb)W.QQV J,DÉ8s~b-PBJ,z! @b@{ MFf "Xyxb!H;tDg,#ʊ" G8.?%`a7k|rbA40B[a#SQ`(8|>ݭ\C['{Jog" T.V.GeQĢ傜+vp!bz$d"XAnfT*H e[*\"RȟQ`7 d\*wۡhh7w^Sك}>U:($V/Tu6P  ڈ=]bqbA ,-|)MX)|iTY;OӵL94?`*ؑ)(-;OvSAYh#L<ؼ4|I.Xr6%u&ax|?_+8l["ux9 N*lL(xI碱(JT̎uSNfxA6f6. l6DJb:2 >2{[RITC=3i%+bx&ˑ6/~gb\n' {qFɤŬR؎X, gGX$H,Xpln4xpb,ُٴ6q9,3,3,;M,e}бMsPzC$[Rb8ʮ ׾.Vr:tvҳ!]꟠U% Ϗ<AN t}z &-ֆ% .M3c /Sb 8msXrlhN*@r'; vL5f=JwO:F1 b]#g]ʃ< =X,nlc`bqÂEЅ,Ad= XtȾ2]$BDXmK&K4`L0=w`/ !v}sX83<M, (6r^Ś,0VBfYCL b\"GhMK\M 0AY)@U4ŕvH8[b=dDuAzX,6+aG.:<</(J(ijz3Ǯ\WDeI#Iif]1M=8`zGS4p`At'r0"GobtZ~춷'6ojl$XLlVf|68qzvykN5NT&F8P m K%) ZE2-hƀ ^쎔dK%o∼;逴tBm ,XcT(1zQ : &P'Y_Ss}PpJ3x,c .wc}"v,nMc!.Ы|0EXY/feLB[,`/ӑ% ٱ5Ezc 0v, ~dx[#(e/K704U0H] zB@c$Ȫ 1( LdOP EO)TIǂ֕G;ܤrrѤVbc} ǂEa}llb-0&~^_(zi(0fV!LwpD0IW816$u$;wKU<`q~zD ..Xpǂ]X\``v,e# vt(Y-PbP2+e :!y9ԄR,!a!y,j^@tЯj[6X FIXX%e Kـ^"8STen`z(lEֺBq TRRvTwuUTm,uf;fU X0~R(:l׭PMl[MbE˱`udw,R)4'&겕X/)]]f˱ aAIXAZ_e^$6"[T [a%Ep,XX v) ..XpǂOvEm3kGlY^*'`pZWK&eEŕlp ":4N)9(Lh!G8WyUP)"Zހ*8y 몴-:3$tߎQuj^ۚWFՐӥHpqG*Y'_l2ꬵfejPk< bbKnMgooE屈#@ni-^0q2Hݱ7Oa`^ _}|[RB,UV|I <']j?[ cK"پV E"4<`I,f~[ptB|W"  ,]9r`}Osqǂ;\\,|<5u,RXk*2 %+Zs!!A<4=0%OSd5"\R+(yiy R^ec *!=]RH eEǩ5Y)r%bBz( A/gJy/KI.V~@_؛VZrY`ɂoZtB}"ɇGɢ ަ3N\Т&~ Ay}nȠcEqRd(j(F)F"= ʐC8r/u% 2aJET;pM˶P1EIU|WF,>k驩akKHO21w,cN~.|`l()躕NIY\*2{Ɣ{,|z`Ѱ"H6@ӳoc(fޘ;ܱ`X`q9KC |:bd.C>w,Nn7:) (0gr<+kj=7r,0rDOD|dBsh|oc|聙D| IDATb^nb?DkۋiэT,N^$"'iy`bqlfo8:A B@@ |*/,X\}-bqhnM':=eZ&Æ5@t}68L#jS,l&o"-MX((@,ʼn-2|z|VoT,N|DXzV[O~ATx<xB37hEx2kӳo{DWhS,+~4ĢXXzX|L~[ZV vXUJ,VMsE镉|b`>_ (((bbX|PtYkȟE^>yu@@@    P,  ( ((X((|HhsoX܀XzE,ndbbqS,`(hE+Xh8yG3wކXzM,F6 -fѡ bbb  Xbb XX((@,#b˽چBt_ ޫ ؝k{U+Ga>.`0@,@@'VRsTvׁ;/uUZtˬ+e=a!1KrOv}F XXГbQ (o/QyBf[|[T"lWb?;AǷ]U*͉u:Nbb3N&|J|ah,.:;A[XzhǴ[Y;ve0IX,do,kM Z,8đ'͵𿛝/h9-rKmޘ'XutU(") 9Es7"oYŢc|$^+Ll~Բ<ڑ57X NX '9AZ3`zbv5"1 ?%W#˳H=L׷Ck];VľɒsXeَ| \ 'L}~/'-%,L,?k~y[YmZ   @b q_ b $@,b $@,b $@,b $H,X$H,X$H,X$H,Xb $@,b $@,b&Z'Uq]EbX@,hŕJN2H,Xogv;-ޥR#@b  [c}bhH5RJpFb/5GK, *A, $91XFۥgK¹݋[M_,Ź?X;Nb16 $SgX|Z^ѩQk~u>m^p|WF}vk?V~l*fKy~_z2ESO/s,}%u~ټrޘ4DS,NI^o6jͦAf,_% $@,bfoz%C(ԀiUBtWr],.ĨZ^.Tya;UU\%#nbb};ջR"VʅgD !Zծt}/bC*H,X w}.|VܛW4L*qE,῍TVBMu۠2Z /؇QB,9=2Uw~A!30X}g,>cqf [sɽbm*IX @bX,ӎ+}L;:^12b2k+ UOB,=Nڟ %ZvE՛GXFio7b1 /)b1Euѣy( płn?fiZ}/yDeM1ԽP辶qDz,t?ŽhK~{Kv.Suz{iqzj%kݹ=j@bxAjcD N3څ-J?* BΎޯjn vc{+%{G,`dbqLTY<*X @bX,jsD "`DI5K,Fj٭i75wDF+{g8H-E|S fW`n3f[cl.o_N + rJ&e mytfL~ pz&J]?%Eg]bQ~-Jbǔ+*$$@–c.ml7%VA'k;~nɶ,E6EqEq+ԵCX('#VXtVE,.PUGEO-J)$$@oknv8onF20n?U,dߞEg]VX$0j0łĂPMa/6V`A?1jqG)ٽnt.qEyݽŘG](,DY}&w맾doGGSWH @,E,$֖~W*x9爈Z–`Ʌ`ˌ6csşzٯnc|?;u͡v|["PH0b}Rg 0$Dv9#,S,H,H,  9뷠nhJdGB\S,D0 nT+S!Bc*BX Zm!Ie*guEg-bbJCX]$%] #]%(bq"5WطKĕ%L3s łĂ +E,]48ZxXT aȑۥ&νE+w-Ɏ{@=%8i fz-Ys謼E,oO y㖺'8+b!G*{oiT0v91S,H,H,  e0} 7ҜQ3@wr䤁"2(dJB|o $Xl e];ŢVDz_,ze䨲fu!)9t=倊bv\y^o_]<陏UN}:A^l]c1RK?7jiԞf✕+$$pE+%QNqi#!$$a =l [UcQ]MEU]}?xe? z<%}]ļ?ٌHf?/=]0=R4sG:E,B&$$ 5^/L-tR =w[&Ƨ?^:֭m,hݩ7ҟMp8nvgT.AfuyyUxafh3-DXvאַ7-htx"4bqhOBzy–z(,+U溉EY!!   EV9-WԵ^iBT!m\oT?rOG[[wz9Y|R _({b8Bu*\dJSDT՚E8r6ҚoZ(U阼$[ڸ[Ңzb/136cEaυI,:A,+$$U͖Xb7w8a}?fKn2=ɣmzdiin592hjJ,fk.S<*H,Uߞ9MWDf0IyO]lS눦hX])0WfKk|%2/xzHiU8U_~r?֔)~9+;ΗO,/d;&/SǹmgESF]9؞W#{nևG,.̟OMk.We%+"ir'DhK~(y5q0p*Wr=Wj,yk(庭ddvNl3(^6bC^rLi8-ϼp#8͞IQn\w3xΩ-bw]C{   >XczShɀZLUjiLMB45ZcLouf_'3bXXw7L_-klS@ʮW|B`HN/.IpUiIyA&8a0$H'):mЈZ Slk}u/I_v#({pۼSK!n@Y$u|$ʕ!7-ei@Eȏ}0˿F^2ydBE2:D`5YhjAhfRz5Y16І/JocKO<NIiY ..֬{bGX譡wvѷh@qŃa^sW˒=Udmq^rڱK pK@0gޠ25>ȏ 'bD,qPI;c0GJ;ov(t?x)?NW ,@#.\sSl,؉R୵>H"| pܟ L%&\Q_&{n ?yB7~'aQ31$_Ю|.P&R= v][Cy/b<-Ns Q?,{Piֆ}6U_+wU~yVϯX>x3M*kC0!;/m+ڝRV֫z:v"M0[W IDAT&tm`;0ˊX^H@3ymZ@f[V`ʲ=Zo[ՍQ=RGU֬i/=DUb' wa>,R,[,f#?,pđ &~9_Z\<҆`dbX`#z5"HkStnycøK^"1ofiJjPᥴ37򢶭R/_; Rbs܊r̦)>m;`+HrvjJrG9qfI¦Gz@r-m̭b¼ XnX_+roT e2W,6K.raG;QcqvBT(E -tH W(PH>ձ٣]إ3(KJB<>2i ,G64w`D,#Xm\Ηka/A9^їݻjw\!*ST\Z\PBt]rOZƩҒ7z<K7\GgLS F{|mH~d7"H0[l.. ޹B!=xp'[1^O޷:Jp24”C.BHfC#pcy36U%<4N4ƌMܭʹ7uuZkΆ!LP$uZ(ݫb  G{cjfM)L)f*zV2DYv:L8`$ hG0N) Y +~P%;Y=5gjqn[-,"ˡ}hC%FTܷ쮪S2, ΐI5 =PTk>ոyGu"L XH Q8{~8"/F wErAonk/ mlcڅ}W\QQIu}v"P`QE:$itg̃\ϑ`amlz֍{qc1"gC`AxuӪ}qE$YGf 7vW( ,:Iᑵ`PXaWK\/M0˂$x)&\ʑCs.)7W;ę5b33-/*lX R\Y'D9'&μP|dWtf"kN^T*N/~Φj톳WNA4%Fxj#t~B׫ XPM`1} ,fs,v:\#+f&_>f14=HyT`[D|,= p,@ WG8l\;뾂Ւ3t&+LծE z`asc@RsB\l$rvp+BF,;"fVP V=-U?J8XZ(X;ƳS^`:Ŗymx3K==4O곁7j?&E*5A/_ /W`!doĈ~\8.ٺ-B72Ԣ1E,su p, ,^~d6Țn6K=;`amF'9{`W ],bnDuM6 ,ԫٱ"ўX(FNrlP1 GٯH})e%Uuy(GJ45%8I[FE T|~ B6V$E7;-O9A0)TgDB̍(X Xc?X ϸdj[[x4 SI\Pu,|Ռ?B&[[}>m$j5R+`jJ^гͧ`Q z8oY,T /9:[Nu"_F]\F~؏x(R7,r$(oMWʏh*{k Xc`e[0) uԨ^qџq$X ^WYVgA>3{rd8]Ee,dN\oYEiXX,~zy ,PErd/_E^Ctg,OMVN`{d}+zQvK:KDgK`O7 iws(BaluZ䛝ͥ}sRf<8KZ|շ`!=P_XX{u p,,ހ~ggl8w*90 B jU0Ǎ5Xʣʁy,+GrL㍶LC[z:#,;Ѭұ䃅CVDʼn]aEpoԔҋ쁅6;YlSX&|nѥxf`3cso'ӳ9:?*3h}>w%XHW÷`!m6{M}tm+`!|$RjXdB|X  ggf7麖-m =QL.8mm hEpi[zֲ?.JZ!F;om=q,TvF>M/t%F`7ALwyM]bZFXVT?X`4J"-0t}S2ח'?JRz>d ,x l͞[eބLzN:qGm=Ȓ31ƅ Yy47@71"Sl@.J=0q7.Tz0,Vyn G{nH£QΫCt\A j'+ll!MRS8.eآӽ#Rͼcٯ8ɔKXR}  p,,MZaekO䇒3)LOS"aݮvqR5Gm^q\r6X f$Y(N^v7wcQ/C52Ti})Ys 7LY;줍Baί$Ju4]H%q_ThO;xAw`1`8 qK翌hbxa5(zB."Q i1V9!~ ڱرĖB5$2|8h;ĕ5{с$1騍U[iMRHhh RBoFmw9]}Xc&Fot?fv6 R1o+|ioxEIdw;/)4\h: tuP~V'_ H, fz~څK{@xܮho?733!w>g+0  U X !И?wsYO{:K}G8i?+O9^s %!p?;ۀXX$X@g_4x3}ic)/̷l.)¿GL{"@c}EU:cPgơ" *_ W~P}Ⱦn]mXM$G$Z}[, #i11݈kc<%-tʥ@&*BJLCm5UR6¶b崖"?`9>BTp{|$amñ]8 aÏAFaؘ/#XEBPƝ$U,/py,Tג+eIJ3"{ n X~pMhMcYdA0K+w}(+Gs^YƊփ".L7(48O;Mj-i8uW-Ma|ѾZ+oJfq|XXnƁ=ח^-2miWO@Mf~_.K~5Zgˍ\r[uvS[, #$0bY[ ljT2ּLDئjdfBNY&M͸K?Uxwy|Qxr dɞ1<d+7S;w`N  "$R`IU7h&mm;cmT Abbm*M1H,}z92 Mݗָ4á״2-;/ Hv8QMx!כ煦]z Owzw/k݅nꭩgX\6fQMךּq0?e;LVenB>u<5Ω4rk?,OþV!,>X,XOX'VD,D?/MD̲,UVj4Pw8]0l>R+e<7wza jk˽zMߎ<$8DSƢWI(ƞ<D+N`E?6Sa6zC{:}yl7Ph>DX , = O E-l[ۼ%\t=+ wJTZBs>6$煴֚ 4R 0mNHK^gXxxYOdE$DOxb?^+J.XԚYکͭ4xj;_njqO)/,X`؟ϭ4ǥ&,-hMXpa1܆Esf_ᯰx*6,NK.\?,a!N?/!G|~/ߍ; ݪ<0L}E<!ac ,X,',ӂ\X*'+_&[IJ-7a<KS~؄ik>}ie(0¼=bYH6>JxH sUl51Y̢T/aD e:3Ȋ7ƺ3zfɃ`dPƩOQ(cX`bGcMcS/'5f녹NVs訵&׏`E3;R5 J+jpaqmzT/HdcV:3?g4iJ|Gb5UGvx݈EKU ,p|a=6Q/os!&繋+oZ.SɜwQ=m6vR {g̩+œTUb<ʒlqpf"< fut9|ddd) IDAT UI0l:)یԫ|#%$˲i% # ,X,(,6?_ɷ'b'#Ypeq~IvQ,^D9"ߝW SE$׬A@X|8,X`د74cjݚ橷 ,X,#,‰"eP^), 4!,>X,XHX%6#6 .,",$,X`8@Xưba9,X`@X ,v ,X,  `ba9,X`@X\(,X`ا F C9{y){{ɉk}ٻę6ԁLTI.B6&1QTP Z!_L=>,JTT/d" 5'4mD_(YL~B+M;z:F4tF}e#}GPA h3FsgiXxɇ2x Rd:z6X| OL{_jBp8m 'P _~o0zAyVƔY:Hi6z^]RtL3^;͹#nmUzxerqk8, ZycO ' /ce,JU3zߌcح"O"BG^Gb :P<Ñ!ֺKQ+ d8IyRNXiǽ25Qꌅ3z2:G AՐr'^n,ӈ{OhtO0x45'&͓ϵ1F^tQơv.g&m!tTz3')$ltYfGq}c {.ZNæ8,3.(0wܝ_<2^Xx'` g]_a_xI&oP .wEʺ;l) WB㤵EC, Պ!J'dbpdy%oY ު*aZǟy6BwVP,Rw9gjeKKw]P bcNMLEª6YGo72.0"5\Lo6 U7gDAYKDxO<%Xto d)(ϭH)$|;(uFFڥ?P\f_< ڂT>eLJ+\ ַdoDvY?iݓ|זq.ژKQ/ce,<$-!$"]SVwМ}ɲՓkګm(sƾ{^!Y !2$ʆoWlYi˃2ܛ^Z'k9"4DĶlئZSRE qbۗ֍fFUqBȏX~HLʴ`aڟGaL5v4QÖ=.M"\Jk|j9]WYS-#CnջVoW嬭LWaEmq.D4OؔIMClS!Q֢ch嵘D9n % KEHFқ>XYAi.z<3VᆕȄj05duyhnb};K\ qǒݎK٘KXN:I iTW1ЯAkoMcAU,)xh[˒Sh?lԸUf>_vEUm 7`8Y6 3:C8RhI%HȦַsޗ}98|ZjϏgM?pCy]6 ZT`}jZ,j|'HꇹkY6t,&Oʹrﶡhl?Z̳svSė@p};SdO<[ ߂;E-pn& > =yw,EyaAivRW4/`\Z+oL=QՑ("k Q<˛xĘ| ,J' 5/VxIOؖu/?^LH;H%\g{Vc+݆JaLz|%1:|x\jsii)%vqĖy?(#wB2 Ocڙf}*~7}x,}/<  &JVr7mx5OTpmIb\\o8Քf_KhӶLjy)_aC}9iRm~QG]N;NJEj-(|ÂjiSe]Hg( xFR5Fmn$欼FdE/K/񃘰9`[j US^ZzH&Eyc"ώ\Bx.JᰚjH x0iŕt71^R;BoDڋ"ׇdK9PIz+K7k?CQ(۳sG=*=d}0ݱ rP*TA7pT ئuIދJ*aHR#N OOO Ac6P#'n[e[זv ҚUY0+Ɛ3G[W 8 RRv. 籣}4 c, ׵1kd>0/3Uн7ָGV2f|+ yL!UPU)_++P#l}+^eG:ePc;ov wC~(>74XX,ql'=Q2i 8/;ܽ@9Gr8B rgs%*p*j 6mRM~g yFwD+qR=`pG,(% `W&WC߃,hL(tܨe%BPp|%KONvCou %'fmΎ#cw,rXo 6k(zje8Yem4,Кhk* +6bu2\nl(Xԁ( dF[{\' Q11_6Xf=SGJE0xJOYN.7ko0,f !XY99^3X^/O +l>/tVNrXXGyAdXt2X@7,Uc_7Xӈ7ϰ-*c& /3Xܡâ\"‘jyŗ,D `~=ڎlNPU;ڂmłn3 q, b7v67Yt۹p¿!FYME8.9? ţVGĸ Cb^Sg5 D$616"mnFܘ"FrAD N}8}؇G֋8Y3*72'n4[,@}Q [IT ,@` ,X/| `hZ3Z:VpvG(KN__`A/|)U^ U4Q EzsOG?2L2<"L` 3\:ؠ=z)?{CisU;EHcS-޴Ξz"P5:8(j+#}ލ7)f]تW?B $gٜ !Hdl55ʹRTξz @.?`K2ؕu(S T#6o[QtW|4 *#q"#Y)X̚&CQLIhYoWoOY*.NOAlWu>ZmNXi5'I߃ jm{#Jl A 5-URATσjSgQ* *y*L& 7F WϕVOkIEk4wB *Zj 9A1z$*W2%Z Xn%I9' h%.Ƚ.hf| MW ,zx.| +DBlU ``A`] ZX~45j{[( ' dK@ IVwxvKq5uUgmNhI_n&L2<"L2' M.eXKaՠ*J{RWro?5~i΍/?;>| P4JW82Ov*F?f\YZZj"a)($6L뛄hrmO؆ۉ sUqjwJL-" ^II5UwKMFPvDub7^$yÝ5*}m#=ihV#, K``*DV5}PHaөj*i M+X4WR]S8_o`c,-kd  )_(t?stQ.hH"OϾl˰ǿ|Ea=-!g'XyÞolUV@5[Ŏ,fĮ'`pg%UϫRmUHA89s|u6OmT`Au԰KP#Q䁸xů`Qlߴe{Amdh|g v_ o-a\D oZYuU oe9 $cy,2$ϛA)PFs91LX2UBR3Nki7(իT@scr(Y!B1HX$ !XB`HS*:\zrTh{p-SN,j|%Öt08nTZ1:/dN?yR ;_JaL${`w4BO 0$Lew?T.¤ȕ( 553gBXI1OE Lۭ kd%2'Ğ7-*GOŒ3b H$V}E龋{\i,0.nI2Qfi s\i-zzb*"4dƕߴesbj{VsXi_e-9n*S GBP(((PPE#RT!T{wm=<YΌmEZkO3cFS.-GH<b7^i1B%JcłZH!EԶբ@LBC?NV5PzXi@Kp.TE%REnR1 ,+٦L!<۶hɵ8T!HaWd)L-M`Q

HV0 ]O.!QEic.Dn@OTk4MֆoRtm/kw\J$ZA0n!@Cb|C[k9`57Db@23#H|>>x',WҸ!ڬV9;#wN獉-Ŭ8ֳ1o?#-1Ϛ|lU?Vݞ|dDOx. 4Jʄ l7!݄25g:+hMSz=/!lo&NAOWy 꺚Z<)%nX"bC-¹]?^3E2`Pye HL_98BbM, c i }gl00Y>j3 pRiſoo*B<".O B6RCHp8B (ƛk-m6&'69)(8j~;xqwr@Sf#^4=a20 {5识u6)fWIٷ2FouT>ϞAџ}Au `[ri;&5IzuZ~u;q IDATwM$7˷_Y&6l =4',+oeנweуB~{!FL9ax`tъ;n+ oHTdoOt'$^G Z]FڦOySoo#l6d,GD,zEɷ^F7$8m'/uHԯ w1Ļ8i )*Qab >܌ Ob`%EXfaup4Q`n5l{%BLʼnMD1a8*{82b^*ˆq'uģj'`-c$q bZpz$ʈF[Ѡq*&B9qL&]A&xf}ܜ/![t}#G擠~^5:X2_EO5~tt w2㼎Fi͚^[Qpܷ_j_/%u0J'>/V X[JP;Arg}gljzx°ӘMTVjSgVyrVterv%YR/ǝZ>%[NWkmz|JUV` Vv9-^jŊXRo^UzvjjwU5[ ikLNc|_ն86cԲJ%pjG&2%Hм]љ{{΋9EQkko}+~Nԝ2/>G,zB28yv5U0gE,.aq~}&!/½UYwEJ\3nXei( .U`φ78=qz9A]X۫8YڱL&Z<+R21{Fs,n+Oy2 =E5Ǻz zTpV/+s|!PΫ*g =b PwQd겓L=,05#핇։bu{2:A-vA,ZIuyQU3%.!<Ȝv͵SfvT._ڑƊQs%*;0TӤVXuBrӖc>Is}jܩ}q, tCm1HOȞ._ư sw쥒=7 J?_\Vjx~ J!* FQqDvnY)~ b*ʱUZ97$oȗ6n"@mW!IQ\ltpWj$\]H!RL1AW'$NL Y.J.` Оܭf|B@ /Xvh6J97 9HwuX+wu3X 0:BBj d-..PgPVe @4RmW>, -m4h-,Ped˭h 2guPX| O,g 7INelAnj7.lHI5a`_$nId5-/,mFHbKX}quFŚY&)-2(&+RmM-R~lgO&K_DVTprl yjD.}1hfXf4U#r94W<2ͧ葭l^Rw\MoF+NJM:z>Idg6"juvB3Ok?-i1`]&rt8e_^}^1^͈ w\}2ޅ$f+.,ٖrͪcDGe5.?G;tY1giԩ}P:)WSlWYE0aKo@Òmst>x7ϦmA`ꨁbv9)8Urݤj([^x늓eO,1O=UVf!yЂoX Qo <1 m1$L2C"m!o^zksπ,A ̚M FB 8ʻX?H\Qe#b)ȑ0t6|򱼍PcU ;-noʏtsmXm>d%-:aZTWL~G|taпq\*-m56 >RI]8opnml#RQ*O5 dY2C+9y:Jn9wTgu2w ʒ 78K$"uFB095ngے 艝H%ZkHh~* KIΨ&);fliҤEXI S.sȲ,A :mlBqxj72m"3%E(L3,b 3a|ȍ Cm) m%$"آyϯe *)2X_WXxYgCw\q U?4+&'XKb!`,;T ,u\cX`oScf,cebtPaV1oȅyp;P AX> 2Yn/HkLacP^j cnI`L Yư ApB_ lvK`<jh(Lb.`=#.a9Ű@oXbɳ ,p%ʼn7F!˴ǰ@cFgP /U ̦[)twRWmzŰhưwXMCBD, ;NES깑0t'[-fXM{c>`ڿnt=y2EOW!W[=kQeXSC 蠴Gkr׹޾21,N>8tl@S@ y ѶʮHÊ߯IJb?kެ±gBXI6ic&M Ő-AP#x۱Cn]1EwXvv3}Qf7{ڣE17"d3SzW* \sUiB6h@9NWa&Au.@sX仾t=\% ;Q8K`Q7#џ`QG;,߰eDϩD)3W=Mv-)nD8:o@;,2XLA ]q\uapx/ɡd<xjс7i˓"p"ϻpN ,ꖁ ѯPRͯFe}ܡp JB1|aX">V8rSPFƑ\-"aaqJB5HN>`s *;,N{|`$ݗ{qZCRxض[,Űh hME%RG+9D۠m{ZabX==zEIg`BlaQD\N`&ѭEwX$Ef&*r 'Z#hKWZ2;q61LYܭ4("FrBIrB2wރa&ۜXo4'<(Awղ6'PBekٯ[kUfrTOb6g/3+K帗.lwQ/MGzY4Ԟ9=B\#bFi~"Ie6-6q+NceH̶/|?gtT,0zb {xݳpx<γr6#;lڱTٞnZ"ul%Oh~G |0GS3vw^emS}ZIlb}4Q4~!zwt>-vg H^zr)#ES ڏ[b8=H>ZjoYs֏tߑ_7-1A͙o֙%2_N=wy] !BL~sk@; sNDK+XLj8lkVt _gME.\µvg}v2ܯ^mf`bQ!:y+Ԟ{NM([>aН+Afuߵ  gݶj]5ԟBZB,DͿrܖezm`bΪEHZc5+/bUO IjQu͘u>|usb'ڨ UXaŊEbQXa͎O"H=ԨN{e ޼{+㱽lH;']KzfBHFqp:,;~R+׮tȢPى}ӽ&3xMo9!ݰ+U j[i,eJ@䎽D毌.-#vI]8r w9N 7!nЏ_$1EQ8%bb&ҞGSyWOC@Seal]+&ڡ{a|3@"JchͤPzVeϊC56Pu"R; `ێ+]%Q5gK;<)6IIdI2m\4 u+;NXUלjppq&q*1 Dねq-L׿̎LSPvE7:'V;á෮?M&DT:;:?5_׆9Z~}{>̊bŢ b z{dtb{`6A%t' CUGUK ܧ55ͳ)0PHUe\{ۍ.Bފmj&`AWm!nLZ-w\5 bBrE%("=!"\D r+e~ˑ%Ȁ\@! q&p"ҁ?Z&W(HAXo x^]y?4jp,А㩺W"O ~M}rML J|7(w0I}f̯: s TYpHc8MшZ(Am'(j7 dEtWq3`[{>uq 6|s&n*(jJIS26"ڨBMr-[ў,Q P%p6ԤDm4VθʐGRY$UyǏq뇌epwxn`B8iH':2u0fk9bvvL1ᘈϱft=asC*)d#ci͸XD, bd,^gZ덯_$ <٥$b(ϧrUz{lcD`蒟:⣉nݬ!OsM ͐.`,"2_mwSu;n]wx>hj[k#Hlv*e&ewrc76Tc X 0pgc X 0pgc X 0pgc X 0pgc X 0p"0?Lӗ"X)-o+ تZoYL\ڸ{Npltbzq6yyM&_iڮ| JC8eðXD, b`,~>$sI$[/v!te~ӸJ~ۧǷmBte `F󾹦o(?\R}k $^q X3{IXv%ng, b c 4C% O5[06oq{9GyL?p&AJ淃Q >')]+-leэed>OITEYʋU'p99nfTB@쮞U+9UICfݑ\-C ])k&e9nH?O]|r#X˃بLڃ5U7[Qd4w Fi,*UAcPqo_hR  7c X@5 t&H/{m?ugY[jzP4;9o{ه FCa!R!ZP VVoAR, GjbA*D{g%#thJ;%uQDʢeI%cM2*;p;[:b/yRom [<\^٬ihE ?-P4w:\mY]1 IDAT[̰5¶'5 Fl͓._Z-Nv1c4I4-{jG> ~:[d"mɒc?oDҒVI˝-FD KE(㩤?iq,Aw D, bd,eY<<{#|y=)E`GP|Vw=X_yÑ84!lEƾw )b1SRZhKIXrWBlupkFxC. 熱D7BA::<I8u!4A -TwK᎒W8J vo_Np˟Ha;U6\*7)ztO)N]wKtWʑ-\}9x?D*cU؍`,"1XSOR;n|țbQOE].goP1 w'|֏|XDOnO#ab_$ӷjNyLKsHl}4'⁺G/דOE\DgTm*N+e2jjK$ZS cd.? /%?bϐBW3[`f/掴Tfj/ND%ND˩Ġ*{zO' qݱ14+g4ilۘp>GVXfl&G'6 Ǹ޶{:7{|Mn#V?G6}lJ%62Vޏ5,Elزq[RM=?J6REoElmg7;J"{x2՞Ž5u{^>b,vw;jz>#ON>w.EmKLe9Kܫx9'IW֞gӤY+3ge*Q`,"1z{>=U( E?2UYU_Y(E|&bySczW8= f8 m2Pî(D A!#jd23*bCmr}V[ٮ}&Mc/ZxRtA URgaa/ ;,֣:_[!Baqd w <NN+VzfGi$cF4 ?L{۷2kbxO~UaCF`Dt(Z~OyЬ ~JW8I.E $3XLzߛ]@f^/n_ [P@RY̪ _!b?wL&O.$3ȇ-yqaC6ƕ؎)va $T,<(/L0{9 SQE֫p~Z^΍7TX`YODՉn"- DC-Ci@yBQw@%k(|o_}{ 6y14* ķ_tˈ| .oM2:-άBn& 商%ӄzrG"QvkТֱ:Z>gQj4ʱj,xZ>W،!8zťyT!CHń 54[C O"'L- \?.'mlr^t,h.P~}skD‚ 9I_!wt|llwc.phV;O;5, _8r+!`a!/)s>t<]LdrVd#;|@ CX}ږS2<(8',vđ|MFOinJzLXưhR@(^j+B%݅HU+b/Ibd43y;JGv{>3[n-Ne3W#)CXSGkʋ/qi (] \[/-;4u82۲^-o ZBXhu,:eR@QynjI *vE! jENL=R~Ԯ{ P=?RZz4ֺ4VeQУ(PkTyMPA_@!{X*,.s|4> #+ĝ3h lF˗vrpx (0ley vT/Q%u]AP`ʰTeX0 bDʊ/gZh8Q`a}@ ?;XX,+F `6`yQ3b[r=fy97&',Lս\*`u$N)9Xx_VN  ,7@0gX@ "!5*!PRW,FoJ ׈5RҭOn$ݱDtģRq9r"ܞ%VQLj|yqM\'l28aJU۬/SDȗe#U-o ZBXhXڠ^GDc/e PG\R68OU#4+WhH%t02@h%Ѩx_3dk 0`ţ_)a(Cʌ?i%>|X,X!Z$a![ Ks$]gvq Ad Q{@C|giaōa?IYNOK={11,-.q3l`.IK~Z;nC9kX g?`1}/Shqh}ģ  9L E J"dZ <.OW _$^לՄ6Ő|,piȊ$睾/BsIk1(W-'bh~oy=4E,y.r5}vg^=,|pͱ~hq>Z fKK֭t*Vp0ry&YOܫB7 cu,h`! 4Qg4NbMPP`1h"ŵUUX<9@MA\&pV|OߞLsN)b 21!!ẀP`8Kb*=ݻLFoICۜsZyElW>0x7$!Jug:5T \ 5~Ř@1e۳{,R{;3| >20+|\B ,DIQ\fu᎓@Vn%kl3 .=YF$w ;i{e'D"De*3l9Px煬 Rݜ3)jzwopCٳDh6h BsMn,tB3Zn.h{ zϟ?bx)g>[N!VnzS1Pǀ{zR}M7e2-2q3wdv]i0`ZBeba!mP6YG"c cLEîr,l'te~׍,!kR|RX `WJ‹[I5tkt(=BޣIV뾽2?EEr EEFѮ Xp,(?OJB,ƙka;X ]0`6W @dҥ #0{ZFYyh٣9i\7I()*X{ɣJSlKT{ժ $v.`wqCj tz$ﶃѕ(G@f\MPR[B*ŞBUM4jldFR0uh _Ҕ5 |h;59eڷO 6i;e#\dRΆB,iy9TXؖ,oMiFtw-ga(a>>W XÇw,Nsu`KK c{,tzF`!>tUZ{ja̵o`Q}\IX\ dbUO2BԻtf&<(x/nn\HM O-llknK.0D2yi;7E,tzQ`{,t.],7h78؁5ptûWJ$qdvG5FTN:64x|8Erʈ TiQPEr޳>Yݖ$ZeQ4USa m.)-VϜwsg`-f F y06 ;M{ 4df&ׇ'RDZEPnch4fuzY`{,t.],jW-]LkW?Pxelڳ"ثk2.+ mM\׋ h541nkL`%D1uDLhED_/ v]6ٝe}0&%_;\~T  $XKGf/RG:/6?/^__?8Rh iw,\gw(Ea;xWɗ~Z>WKʼnngB,xb#ZJ$/Ujx/HS٪\.*,%^ ZXQ RVdkM2R)s2"StZHL*}uBGhN:o=P)Ũ˧mIP'2Z-(܁d)$zYLJ" k._R3EF\H>,}\ٸ\Isp`@b ~i|mx0^q1j"ZZt zJ$rYĝ>Xj}$d9,s龦Xanbi?#r 4zjC|l-۴oXWݬC=3c)\;5f\x&k~ 7ԯG?KjG,  $H,8`n\:˷ez͸)j)pS[gay.qSٛi,H̙~Uް_r\gJCˌkb) $Xp o뾦LSM/Ջl0ECxg]0;KX}O! *LP\ڬ欶 y74s-yj6dXYXd[=mJzrؓc5}fD͸KSDX$qWݟbnΜ^yU6 b) $Xk\ˁMD䧯bQ\gsbQHbTM'|h|>Y b}X El;R z$ūk8= Ȕ?W~GE 8U5~`[zY,tVW{;i(r{Q}b  $XDܮN\k~t"N7¤oS9<ɮlbѭv$HN8u(׳~]]4 -J~,Uݺ:vvs p2bq\Kw\Ҵj`k3'dgʳrkz-O$Lz4얷t'vg[ǮC,8@b Jt4ry. FirEƅjF U¹Z K67TJ%XVmx4i.-#fH:Cj$ k 8 (ɿkEaYWt~`.S ,2/)n.VU9%-59YK)TOӵN& ?Bp b#d,ML6Q$ζ5q._/9yP-OR(mVS&Ԉ¨Dm@ w~{03l{NB49W~jDrBʏ+#B奮݌% *2[LK rys GC!c9ױ|,O/HYrc+q KIRI~sA!~l%$ؔ_YGy5sc' akb G,w|sQu;[W7֪3=] >iSҺ/m˲,ҙmm};e|k\F,HİXn4lS3c9+)>4KF(Ҷ+ fY g&R/2ԳQC g9pNct'I~c\~e8Wۦўyt|kd\Tdž]X G,֘+8U3%c5;)޷`C9qKFN5  obƙ 7qo-n%R䯛gںoi\9;=zL+Dsxyx?Bai-feƩr sba2~-Jn^lLtckFWfUoڕP~6 Y,X `B2e(,CJy\خr%g3_!t+̤)Lc,7S^4$ωn^MwY_,JKWXy: bZV*wX|cw7CkVWЎ9Uz$Ik4\r6ݻ[+ks*F2UMmp Ɨ{C, b#J>+tZM_,'d/[7k["-"{N,*W'XZp47@,9ݗӼV'qiť%\Vm0;nJ?0O_<Ϗ2:xM,&Mˏb%KӚNi_, _,1bx_b}2;#j\e&@A_"jq|$qtXdxM_,Z/zFFK=6r֨" LPdivolåN8U7}lȆ[-kD)51)rk:cFf)Y'PdBNÌ֢ҶL˔:f\؋S)7<*ƩrqȦb][HSFhP2#[/:?QޑD7 bIy=Ab~Dz ]uAX#!?M۫dB2XE~Z R>\*zgByC#jpvt=[r~ueCL.B aMXX?MɘaЇr> @,e2X y2z'Q$Mݘ_EX7A?ʉv#7N"8Aڋ`^bYf1|d.xvc휖^Mb X@;bv`Ye IV_g0inGSˮU4c0ՔԦyKd#/ځZwսOYw]umLsܞY7i+m]NVkQ~^@, c B}Dlʻ(uAIaV1lY*/uM ׼K~8 QnPSi4+A|ɻֽk%$|Vd׉]} G`!ή$,]NX`dnHq }/\g:Z^Y[~Ks˚_|fҤBf;_9R(dS|S32^swoJE4S(>{P/:[ ^,H,XEE3~ZMzv6PF^P|wv&}>Qn]Yi,r`Z[uƃռ{jqb姫.ռ4†=jE]BNۤ,åҁVޤ9 7Yvǃʤz^:i泦_r/ŒY0`m؋KM.ׁXb@b W񨖱$ckLC)݃X1l5SCeu`M&Sӯg} $eqs$PU;b`zU |V,x){/aS\ge:v]i*Rzu9LGHN||YtTBX@, $H,آv]ZO{,M鏵2 ՞#>kb#S6_kV(4V3ɝ O^7&CfEmw:O( ZWa]dQqtw޴̼mnǙe592V1st7>nMxyDnz)kbSn=~;=+f{9ޭ"߾ǩP  Tm&Pzp>i]/Wu4w*f*)f\7JXċ[Ģv3?syka쾪]oX?x]E*Fn;qvc0ZOJZ{^eߞT]罚a\*|fPׄX@, $H,`(3EXʨb%5Pф΋zܰ1q*؄R\dX9nQ3 F (ns|ܤ $n0, Ñ Rb7pX|T5X|#VݘRwy՜:ߴ5կ@' ݍ't.Rki/gJr'1a^[s3CUd/T( *b*L8ɛNsaPff 9ce!!Ԑrx@/+o_ϘjC*JxMIL]ukwlŬ&EwY!zlDvbrD9 ,9]XDb<n9]=wK' IDATkk{@Vk%/E(3՘*-)Z+RRԲggwq澠JbLtNqfXu?7̛XP9W7c1%*}[GTӤfNtXGW.ȲNZDcg_R[ϟnіo6tE}N/EUVӞ`/SۙHNMڞ ukǭnmS',.W $H,80z)a<ʼ}* {uOx<uPSUq٧㎥S cOL_tTRs^UYErWnG9F r\mW1R|N{mw~ &߽gQ=.,WGj.^+ä{'{RI[ۥ1q=zyY: *cFUKTVyTu/0P3%ܑtC^yGo1{  $H,8 Z> \<HcN)o!>=.*YQQJAO kGX6ayTzWcZ7+x}LH _ 3b $2bd,Cut/0Tu#FJY{/Wb˜-7HtMeSB\׊KBN'obab:XF 0@,1@b_G,ty Ш51jlW,unԇ+!%-X̬zU*n<*uu]a;EQb镵 ԺKX_ $H,Xlb!-J|;Z#kSYN,ݲ2lv$fb,[IbE,X b񳉅^LhJ#%][79YYydt!̷NL* e^Z b $@,~ оLL^Hɔon߈Ef !zRҕXvN,hn7 |X @b\h\L\}e%QVBXQQ )KNYlJVYQxonUS;盂^[i1ZZ[fTJ:51pY |X @b'.s~EG+=<%pPG+8o,g81e[#K%Wf8gӡe2dr |X @b0 y̩K<,Gc 'ӶY_'빳VF较ܷ|ݰ<Ý Xb^֌b[O $H,XF%Rruߞ) |X @b!j3?.nO~>C/T;@,|@bC N,vO噏p~D/Y;e@,|@b lFJw!˴ü3+O΃ΚN1yjU)w}F y  ~H,X pĂ.v[IQWz̛H4ϲ(srw.b+ݒ\K2-Dg!<9_}eWrޔ6 'H,Xp8b͵Cp<ךr|4!*Ql8kɗy(d_|bo>uDx_8GZ\ٿJS8=Fy* yw $PbQ7ojj6w"0Ylyx0'}ma>;^7^FXzb;芅4Ͳ~*7/_W@,X @b\Np>IE2CEdr]58rĢ4 C逖&0z<\ИWŘz6LinCXq@bǾ9'}+=XX E؋25W, wbXO>b\pI__\B, ~H,X pBʕLg ҼT|0x+o4ofzjm5#o ܥ1tVy+spTI,1V8,0E,&_"9BQa e$zMS@, "H,XĂ۝.sv;|j -a5Uפ=OPͦK#\%^)DtZX Rw ZTc07>[K1׀5&lQ;6fԫł0GOgABN>܈1mo.\5᫷o :bu{]/\na/6b*6U,\υ  uFE,̦D4$RbZX[ Xm$ v]% KoL>SL9!B!cV"pѐX+l&_d R:o Gt|:.-!g8$"z&=_ΉONU~mn̶IōX\6lƹ"i ѫݧ-{߉EަcG'-raqbuBw~ ?\={ XpX @b v" `w>ik{Mz X2, 64>bzgɀԀF Hw,yE}^6^ c챥oS0b1۩XL׵v87NU̶#F콍7dbFubjxP,^=z\{tB}I,Q\:_xBlB#$K^xlᔂ(bA@#MX@,P,X `to^Gk5Q=W4)bJ\UG,=];|4abodh qgQ#rm#sVjy(iq;'b ,޾񣻙9yÏBe^~`ޓGo>xs߷NtÓOv>zz޷j\3zRV͍P,:ϕ{f%[,Jf{u!*U{ @, \$H,X0:b)޵T_:ZRH:X,^rFWEV E7EyWB')j,ݽz.Xi)nN脻fQ,&4u:X4)Xa?Efp`0xoK2=28ۃ-q'xo}:Af,-u%f9WDwj3szXkX`Ri^6_ 5hQ۷I&`7R+X@,H,X `tbҺaBjWR=nfU695뿢jZ!:w*JEShɢ赤|riYc+nmMcհ2zVJ-?O ٳg/g[!ʱCgaf89s6:*CCa-nBM?ٟW$LY{-) @X(`|aA]wA,bb# ԿOYp~ 4[p8 qF|ɩngͰrq p g/W! % S?`;g_g>Nw:yBNGcG<';-q3 }qF.΢H  $<3 XN{59ȁk/x3&'{_l`O!wjH(f-j$XpX @bO#폌%ܟ K;I|˨sNrj'.]|fXyX@,X,X  i'Wo X@,b?XJ,X b .-H,X $H,XK $@,b b Xpi@b@,X @bhП<X,X `Ă$tP"  X `ĂܑO_n;c49E~{AٯT E _ $H,%)pb;G3,'$<s{99̰s,b&yf&6j aź9L״ /b0St V   FI,&MVgMgW̮$43b9":K[(H ־vuR8!Ҋc"Y9g$IҖu뚛Xe۝E1Ғe'Yr?kc_֢W{D@,  $X*.)r :ɦʇ{z!OɂM7)NVd^-F)ד5AMiZEԬk=oׄ^%.+)bR7}rXUJ5&GJQi] JB(&qXp&H,X0BbAڥH/)aQo ]V`zKXޘ EI+6;ܸ^*JɄE%Qlci+55vV5dϫzHn&6!l,ucjmQWX   FG,H$loz71k-&>\L@ݬmp+vj{VxU`i^$Uۘ^0wsJm'U'`mkΗ(TjX3MY|XHif\{RW8(̥Eh #"pBf#!Bcw{=Snu{OBhYsլvޭK9ijabb`,XłU,Xnsʱ؁G:ܮOb ,i/b&=hD e_·Von+X?tA%\Rn0Q0Eyf;ގ Oa LL`*bub֩Yˑu奣ݖjjEPqIߧۗ^X'׺r7 afݾ׿Qta_M=LL ,X01b*LL_,,J`UG2ǭCLG}<O,I+׊ќ`FVuݿtt2mNoy5*@8v+g,Z-G&';0)]BМ-X|ލow%>3ӘF4}5$?zh8]R?4"3/nynvNd#+\h婅f' ͆[͇"=|9w8#Be/CaWin+b; IDATU=W{w",e`U,Xł?,x}eϷIB]82u^#̓]Ѡek 6 j"AhJQ8+ưڨ%QӒh |ՔbH UTGQȈU3UF Gld-ŝA!Xdʹ1@݂<%k_ 䭬 "lB-?{ It)dD$E(m5^/ҐNX([u3@HX֣̋f,4iUq(dsdX f>2:x%8w/m b[ϧ 5p^,uܓIjq͚"h;o%X@2 ^23\$1ݑ.XVloUU5e9ig֯n.Em#l=e6^F໐<3Ѓګv6`*G%^#up[SoJW0 :t-EkuS \kyl, F]q+3bs8k A#mFwk:.E/{CN;Kj(]$C!9=_MQi#) 9Tyft-*Tt}WJ(+*E$ct,$I` zSF1нx0Lrt0 %PiW}0+㝕t<+Ѿ;ZQuƏ,CS!,us$eő{̮ѯ9w oU,2J{Ԥd2]Yr/~5ZM||oB?o3 d l6Ưỷow"a׹@X"\$y58 %<6,C S J_$ <ܦd{G XiI?`7BǵS~blA}{ 3wxTQig<TFp9߀CT(u]D#赯~ {`1瑭^ фk*N=q:Äz?`3k68QX U'BrE%H[`t,E$ , v5iİ%u;X@?`+~)8 y"p4y9)Tn/N ʂfdSH|=et ǧ.jzH#MW,z%1x0#yл'lS﯏~Yb> CIcdu2;`?)8 8x?~6ɋ(X4aqǰX Bjֲ"DԱlMPw2.&]1qB˜of/;TUhIGEXOP̅e]vIaP9u7+o9Bbfx&ˬiY,͝]NXڽ`Թݙ4/lJT$9(,{&y;˻DoyӶrZP*xARbnvҬl٨S|VQ\-<h|f Ѡ~C 7(VٙJ8cD-haĬ ۈrmς!'?7w)vSQg,zLЪnma*8+łGGVeֿgN,ܝi1e/SJU6k5t>#ig-u7ʮ+tZe#7L 3ʍ VA{ۛ iH=tEHgA,T,b _Yۈ怼(P {F4ٰ&G8aҼJPXՐ-9đ̘b_ߏ? Ej 䎎ѩwbb(ϐ+3>hr_Y2iqQ( wF⓸4 y7HO~ׇo8r&adIx'='$y!2^$$vƟ$]<Ț\CCP (!9$DCoYx(Ao~ඕ(KKTbx`k C\^$78 ';,~NSL1N!3dP^>r+},bXXX'š`X,*AXXcT,b  b X|X@*b|g bbT,b i1󠰂$~O > X@@,<~{y3Wo{ؒE0 EnaSГp)!$ʉNsJՙi:y>NGl$E:Jٿ2?~<ŶCNJ[wRMceR)'~e*mNb!d_' Qao~{@ysܘ ah_p1s)/]``uW,p ׇ7{?B|rW*%綜)6v˴)wD[]r|9Q`CF$l+6sNDGWɛ`R8_N`NA9Wfn hR/M`XϿ̟2X(7kӧ{X=< a e`Jd^1ADܩ1 wkRRI'$+>]HA3/*mm(7W35gy)j[ v=Vv~ XѢ~HT2bp~ A$z;5؃N"0P6D= T@QɸNjc19wjj/Ӷ}xSCBW6SQ.4ĢRlzXѨvsU[wd]-Zk@,3XJ20RrWkf"tY5Ya 0(]\\T̴̗iŧEcsK'U,8_'4֭t3iBtЉ#] \ ,, ߂ӷ,?;{Qx_~LlF[[@KYseAtֶV=]fz\KPa:b, RkȠ<7hwG59[ȩ(/JƁ0R`܄ ILM?PF|!K6)=J _zVtUDf?hA|/_5$%mcuDi[&uDeO1¬e3u.cs˼0 0w,oLz>|SS03PZ&9gбHO ,c $$O/pqyye+Ի_~z3 vϓ,d,j>Wn0h}g,"[=`waZ]3Wnot^#`DPƘc,H,]Pղ {<)&Z7j-Q:aT͛uZ`"jBRolla'"?JF]3f:cq?OQZŬSqy]A,ڈ`EWRZq|};.7vnmpxok2Wow24kp%zКh⨊2C!@`9ȱ@BB`xo^~|Mo^“I,o'|]%X5ױp#B\o"` T` 3l6 ^KD"IYV-8]qJE:R(T,,l nEd"űn< C".0+xeqlnAZaXS=*-8[(R[8vo 9M|t,hRɢWTNJK*|GfI֚k7+{|~‹ ^MDRӵ^75rE{Ͻ|> 1/X{.'gȐT/u{F`9ȱ@BB`y_Rߟo6O 8 !LHBFl(I|_'g N01hB[qv.“iNIʛm'&$ۉ OZ Wd(.ӎv2X<]dPBi9&ڙp%ԳHs/Eg8rM 1qC2LQt$;GuNZ}> ,}= e2Υ)2N3#dGNyeq&-8;(-ypvLP~{8x džw{7w9nߟ5бrk7׸v 82axD(OLp^BYX !=)ڱd$ ȱ@B` ?D-[WT&8;e P4iW_b$8@S+ T)#IRbvb418uS4M1)Ѝ"`)k|Mg䴪 vgt^0ba8gm \G23 f@=.l=F (gtV0|) ΂H`؛km#( BЧ~ѲVYH +^g@ #^F,˶ Xpg<yR %d[(n eےR)a}gTXmte8O-~?~_H/Rxw+ ׳Qۛ,m2łbX\ ?]|Wwzg{enYo߶yAlq@, XP,(ť`˃ޯ>W[_˟, o|񋝭­ggngŶ@,RbAX ]\U/?eva[M7?Ė@,2bAX m>' `łbA@, słbX  @,-X,Z,K@, 3XE,bx%h3X BX XP,/ $X,(w3bqP,ֆB4@,&plXLPkKbjűbqD2b* X, Y4@,&Kvp/ $1Xb1S,O,(b łbX Xbpn.e4pXFo4@, @,o+Wܸqs)Yd   `X,VVR"4 -Y̩XP,  @,.y.V,A @,  @,NXX\+X\=U,2"M@,`P b0MBkřE$WgT,(b3Ĵ `g/W) 0M̃W.bXLT,BxX#bX(Rltt `Jx}X/O^1ObqX- tBAf!b!RȫRiO "U,'ޱb1bP,Ex0Ys Bz` e޺cE?EπX-ŷY*Ib2(b ^NoE qxxAX XȺ/]3G+]){uSNa巒=5$b6>jd!4a(1Ib] 5bA@,+ݠ6o}߯˚oeO X|(b0]bq}LXԱP, @,鉅%̠uϫVSm8!^q-dĂbXLO,[,rōbq}"};X Y4@,']B}xU A;fY*CI(@bp(TX,)#crr\,)X  CRfI"kZ߱mܼ  pb18*)IX>X^1bbD(Xzg]-BE厓owŞ4fbXC,,[,fZ,EEaXpbb1e8P{]X Ax0X̚X\X&  btEB:c!" kKXKofX\UHFo;6"&  b3bXLX,[,"H+ #,X( b g̡P#byb=bQ (X$B NlŕX|2X<-K @,"ի b_,)dJ`X,!X  %[W'&_b{G`RbQfib ѱPۈ E-BD8@tk)e CXЏf(Bb^ ׈ tX+)A6XX E QjjŮ ѩTjuY˪ՍnΡ]V*!VbzfXb0666>,gFb X6Bec,B}7-~,bd ,d,4b1{ŲLoe^f~_2^QX`7+zMQXG$%P}c,*hX;h޾dQ,4b1( XȿNX,bW,~dźřXAX@,'@, Y,ݦP 8b7zBsB^ j6X@, b F,&݈EOSFv1x{ bј~wzB]B@,   ~XLZM~a63mvX,2o e @,Cj X,6F+& j @,C9w{iS|(f[sٳPeŢ9{K@, ,DƼ&#y(;p[F8z.(&d@,  Lh^j-b~lU,:m&, XX/GcA0FfIfR?/HF9ƪ+[3ԯ?ŦABbXP1電]7m mvbQ70d  RN iٌGE2J,GQJ!&n #:d+4)vU{Pbu.rIp?\x5bəP wb@%nv=60b%fBA,b1f(J 9+\/y⺮S0BeRwC.CuHyuObyR 3)o1doJ1ݷHT-&b`Ǯ Y@,  F,Zc,͞bO,MʼnXG,nW"d s|;R:~H#Wr~I2rC't)E /42vzwBA,⊩sxQ9O=}a"R)|'^X@,0ŢXtnB]6ĈĢd/mE9b ъ?=TW`MysaETN}7tc .xzbn+oPA2xIs7Lo: QSX@, bQE,M-h |O?*8D,.my[]X@,*O_}=R= KO:^vs1Wa+[% ^ |eqVb} s%4s+}[Sbpe%̉}!jMD~.+ڂP C,v͹P5-f[ei+$q}}ugXv"#2FSѓ"fH_1.S:VvaDmIf"GDzbXP,X|TM#ƘԀX &Y`ib-ĂQfʘ~>yL$ |/-c3J;lRy>NC]U߳9O)>S@IP+  XXXtbY[v  C1\gqYUL{. IX@,O],67fsWh uLbQEW,f߯|;= ŚE$0!_  J,=Z"};c,zt3Y[B,y! , XXXp=.e=EEX8 #8dKXbXXphM1d[f_,I'z. Y\Y`ib b!ĢYX=b/&8⽥bq9{Y}64b `u67F,n7 {Pg[!˺dqq/@,   %sEyjmbiȢ K@,   +EGE,N,9|Q/ X@,@,8X|\.#wElX (B',g!y}}vw'^ɓ{7>Q<}͛>Tѣf|s9f<.U~'ϗSl0-c|mZ >Ҩ}= Ž{j[vWdw1vۜb8nA,2X gK,!\,f^+v2̢􊇹Wf nX(h*w-ȝ*2dZ VL&!yJʌX\P^P,fG,[E3Y4B%KY%mdѬYn,ZT-q֠a_i>n@,>+ŵE'Tf{ŢX, Y6BWE="d-Y4kZ OxaHE\ѬWPX|T0"WXK,VW< uh,:%'E-E.3QF٢Cw.:m]YiTZ%ZN5 !)iD~kǭ/`$/5ޘW+lV0;K1&'y:dQ.Yd%g*Y\͋Wfᢅ+bddBDMI)RrPbW wBz^B=.nOH,[bJgexfCk0cbBD _-_VZfQr6*`QVB%X/bqKPv!-PE]CEɢ,n^ko[ὡ|!FB crr+r8":b^BfvlzEC2Y|LS'b⪑,Zf1E -c Uj"f"+1aanG,fǍXLP,٣-kq|$*Y)eF Y-V ͠}RB +|%QŔĢ9dE,f,h!K(~E1j?R,dh +Tf[;:E-^, Pſ q$C4eY9.Z r‡bQh #,jW,y^aXtwBM,Z?BdnY$k(1gшY+"YU`oQ0JkE+D y'X/~nP,z{wf3f,Մq hn /8 Ţ,EYfQ-d8M_+z0iVWPrB XP#&,jpbq8IhgEPE** ZhaE &^,~l"WuP^Qon^QE{׬{ 5YBnY۾YPWN,<-VDb4є﨟MkEWeT~܎oXtXK,\{̐EsX U8hpFPݢ!^,㸫r" n#y%Tk׬hjjŢ,fj(,䠅ZMik>+t"/$z#`F,& -ԑn' 7fQWC Un>Zja0OS,M("޶E?X bqx Z6oX%Y1 4 -tB ccʚ0(U:]+J]4`Q6B,+# C]1,E^..}8;hYE*;(+^,T^1>XU,[<\/YB_0b(WY]-$yW0z O\yZ+JA^LJ XfW JEq~PҘbQ`GXϠ%W ^1Vx,Z祻f--avxHm5fqQB4 3h&-t";t ')^$8 +^Bv+XSE3_+Df" j6 ;a-P1liŬ0WW,]5; Xr"| %6CfnpwNdHr1[3R [+8v|(:ָa3ő1G,8N3Y.JH"w .* _dzO:Z1E1 Rs+8 CPYP9Z\8Hj!Wl`l]TD-(R];EP¼ʽB\h?Xl,LP"h >taEcu(O(?+(c+xE+6- ;pn,Yht.]j0?{wqaXIhPqFNRd@%KRuBksY",bH2U4E ֝ k%EUkŔbWtWuźXwh;X-" _TE4-/,^NJlx1˫+>NeEYŔ?EZEzqmV{+"+~Nbz]=NXXyPCtZ|#Me|\_JFe)*Ҳȳ:WjEb[X4/C.E:[<]Ȋx5K")bΊxXPge3nYdEZdE6\T) ŧrH⩘+]`1paћ,E͢lxM?s0\Y ͯ} O?9-|x͊l(fx_bOBݿ,"LbHdƋNk-s4UcE\CW Eg]z]a;*H^qi s]< Αi"+cO_ZWf1lFϝb%;|F+i(+nW|"¢_mhEI\]Q;v )ϢaJdCEeUYљ+A{aqh]Jpe0Z4Ӣlh:9<GdDN4"^V抢++/B<,ZVE4Zdih~T,O匨*h[raѩY,ZeQQZSɏmNm4WE}ob,͢i+[`(ShfEWlz`qX]"LFmY]\/Ɩ *(.I6Q1W4V"+/Cm*zH"..m1œTFkUSEZ+6"ԝbKYLסiE"QY$E:UDEPh^Z e1ŇNZmS]yQ-ŜMUU4Cwb"-Hf׶("ɋ/Z88Z1cl/U1EVsq{=bEY,eZEs]$y%Xh63?\6E/UeEs8$,xg-h%.H NehzZOQѨ"+vGņ]YiEs]шQ> 8N'0*Ҫϊ+-tibKY|UE(b/%6` "Hbj<*UfE_2T,ѢJ-"닪0:F|kiUTYћ+]bsY ES\$uE31F(@YO]7%*XΊ\a,PCi\ڢ.#Zl<(椸4EiU$bT -FʢY[s]yPg.h~b[Ȧ*YwW<m}Xˢ?ZiQEe^4 c+5=~lTE s@W?,'M-΋}*DISLQq-eQ<^L-ʸ"͋/ "*z}bhE>[mEܦ:1QEeUdcEvŶ_mE>ZiQs\uETáhIuS\*¬hWuíPYI-S+$XYUӓfUʊ5]q*h1S[qEul, (򦘢bh aѹ 5^EZLmEVe^ c{+ꇰ)꨸TEt,a,Ңj("]CD\iS$U}*ꮸ]XYT/-iy]y/|sO*bxx8GXYUZmE^Q_$¢Țb*8WeֲEY\uhZ"vV Ue1Q[qE#0v 2%țb*ƲbkW<"-l.&Jv;\dybΊ\q{PWކ GnZ⢨/ &$E7EY+6miEQU^,%Jv<^F?7"bfEa[⢨F`peHAQ4EaU4b]W2,75eEݸPܽ%QWEk⊽naqfXcih^a3;lNA4V+BX:TU\yKv^PIEEX\U 5j'A7<F5GiwȊûaqEZDmѨ^_ pH"lVU ,n͸q-wmog@XE3.yPL 80#zQBXi[t㑱 s=BUa!,@X_ur@ArK1c8"{b<)Uaq.};'~A<@X a!,b,-\HZIL Q!,@X b.2V0snsFX ,@X a!,FP a!,BX, ϵU%,BX , a!,BX ,EU5@E @X a!,a!,@X BGaa@X , a@X ,  a@X ,@X , a.wIENDB`mkdocs-material-9.6.4/docs/assets/screenshots/navigation-tabs.png000066400000000000000000005074161475306445600252270ustar00rootroot00000000000000PNG  IHDR XlXPLTEGpLAAA?R!!!/>>XXXGGG999mmm222CCCFFF{{{---`aaNNNQQQ///dddUUULMM񲲲xxxᢢ}Mrrr\\\@@@՛žhhh?nfffjjjϵpCU]]]ʪ5GNÇppp@ScsOaJ\FYiyƛYZZ}ε䎎ި^nTexm|Yis؀󱱱QST􉵛0W;IɸCe\Q\whtyWs`lKwg߳ԧ̐TnmwFTtRNS  36$8/=Q\a! "#()'%+&,-.0*21@ECHJ5MOVT^Yd;B:GLXS[bc]N IDATxMVVᔦuR N5Ay&e_-_Y5~WYI , aBXBX , a ZcUBX ,@X aBX ,@X cDa!,@X BX ,A§śom aa!,@X9)p62@X aQ$3gkٺXHY a1,&w^h BX ,C$E3Lk BX ,@XaOQT*}aqL3OoԨ̋a!,ϊ>3BX ,^nXΊҦ,)4J⥥d]17QZ]̊Qѯ&f(}QsL ab[P>Qem1Pa!,8)\\:ÊtU(wL[[7,]U TLei[ 0GX=:uqXZ!,͊( O_,ޱ:#]xi1ZW⠦)xZ YsW/A%6)lZ\[D"u!jn3ʮ(VD$(>XF." `YxSoVI&/"qk]ɊpU$b8`D^d"ue1yE+gRb0y"×j~"]ZyUF-,W"$x#F.qjAf+zeE*IO$"Ek3,+Q-34u´]mE+BʪH>`Eʶ -*b6"P1%6,ވD[UF(/q[$Ң|hbX3¬؏dRx$X+#\(Kx[_ E+N]Ȋ%LE-i+Ҳh",YHtE$+bwV|`ʋN\-"=,FmAEֶY5*:M aooF.آ,-{ uz^Q?>o>ӞLo?=enXAwEw\gG>_݆j),ztEd\q@Mjh1LYػ\+,W-"סe1eXz/Xwŵe+Nj5b/+N}u<Onfq԰x3XWX@Mkaѷ+†yfExWy,aQ4(3gʝՔE¢+"נ~<r]:,&®Wjb -eqЂE޼b-,6,E6%efwڮ8Pnӳ,jaQ` &vϚEka슝qfsh@DzZvwS@>*NY,f] -YsvBi+i#T6`+y!X,H5n3+cB,J#+WL[?$𠷧6,,,dLX57Br=Xl{{9 `JfoY3XT`a*Xt7BI j\aQnO?,;.Y䛡l%:h+X"WExZxNd0 ׈KYBH%a I²JW,L7W\]i<+F*KPEŗ_.aa.XȍPbb(XflSAid1jr,oYK-X\soΝ{;s@ž,,P\1lsd!l&R,bBhr(,,"kJK_,,LG,l Er qtE,jkcŨJ.XdPE'W,2BLPd>eDHsHQNBiijd5CY%)Y 4Xyn7,,|bI0f,YoYƷ,J,PE^ b Ud^p,Uz#(, P٢EbTw,\qWwUIJbQb k'`@`5C5% g/TE#ڮYE+@`%R%틅,̝PUB#%^ Uʼr*`Xb\7B5(,ES e,Yk% i"`1b Y"R"܎fy5Ki3Tw~[*Yⲭʱp`٬ .XHP \04CK^(> q'T,m1X i%2y5gf(m~;] ,`!o+TcB0턚Gq#(,f% הa, Ʒ,\q 5߰H ʹ`AdJ-IW/-Y,f„E;Wjd!LYXnYOY,F;Lwr`d1#,|{F"X,UIX]Pp N(u"^#XŚ4m/YzB No#z,@`,x⛢^ ׈pxO)X\]3,,gM{^ E,PYub-ޮhSYW/,ĚEµUhe^ r'Y8JPcۦP` I3_bܴr{{lp"/XT\G,mib` ʔ48eQJ K'2} ݎ [Nɢ{~{ uE &XTJN`1-N',@`!MY$緧-% u/T%,#R^X%%y|[;eY "X\oX$"ݮXHW-P.Xl-Ƿ]{!<=6߲`aNng`wB%7,@/"{`'cz;`3bwBI:Pu*)YXBo,FLW,ۦN(at{k` [*?-] 1XT`lV ͦk`,SJ/w^(5XTB &tB;f ^ @O|Fo&{^ e?7:`QlV rb`nxq΂źRPżuBޮ,|F,Ntt{` Ǽ8wbY>eBMyY UG,xv ɫ7Sf ߎB7!qX#q` X` )F2dq,'X8XvBeW`A,@j Uw Y\oo, P`(Z;x5 ,sq/Ԫj1  Ky ֻ#N(`P6XH{Y跷`!XճM`P.Xl,ueB 'XLۖeNs^(Yaz{"`փ)XG,eI'@"ο<~_;}s3Xd{ąECY` bL(NG,N9`s,Ξ.u<>'ݿS=2'OFO'X$%F^JNo,`ngP qb` X`= _~:,z +E#2MoE5`Q ElM^ 7X<>y`&W/Ճ(X< %ܼ/ YE%`Q5lv{B: i"Y6A,M)0XE&X,FpV묅0'B ڂ &"X`qO[tE_=ѫOO,PkJ/Tv{6rX  mj_=r| 2X޾y"N>|ѳV~O>mZt~ݛ?:__ZQzuJ"<ӗ/`q( Oxãw.-ncY_dӳ@4h ]@1k첱 S,`(B-Ih>%8CX=m{$ Gg3W /DqOY98eחfܬ%fLpj*J/uG[ǡNg>vM7`qB=&z(?Ez v:-H$XH}F\=.Sh4Xl`MoͷFڸ$'mbwWZЏ\ s UE.]뚵4JרV%0hK"S pcqq .4}N=/G[o)Tl:`q*XP;(W i]Gc,f)& ƪc!BJJJO.v4%X8bc>.F[l۶@5X8WC VcYh,X t9\ǚ4kyP?<]P`C PU5a{pa~ ˺ݲbKm fy qw\"Sp&Y;ⳁŷߖEiQ1nT?Hπ9ŊVkZ esØKݒ2-I]E+@;,.@'/Fl53? %#\ykƔnX`hg\%Ô'`@'u Ym^AK Ys|aJPEʂxC׆U U4y[g| ŒX/`9`q XP?岷Y^S*;x$`PX(6 -Zfs  %%A.l^bJ1R`m#sq,Tm|+ިX( mBToMIQ; Y, F@ v@-6:ʂmSA =Bő`-8foGeBLB=^\mo^=ߊ)ŊQ+v8VKsDN+%<^,cz-}_hiSpޮ, $EE`Qb&P@8ǂ+pke`ayj4< J6]7|III%V#*9XPcZtM9hF+W-5Pvz5X0R8cX`b^ %Zp, 8swxp!62XQ ,Lx r`ц+dL5*ɂf_Po,g?XUkl(`كEU0N$8{t2u*-ӳ͠,i䴢 4% 81U0}`EEZg{\5cW=+hPN?Z X\;_ 4C{`1M 'ūy,{;[~Yz,fn$X^ cy >Xx ; m3MHJJǢO~&p -a&?N~7nmLy*K"۲5̶̛F='8~Y0pr`A¯ ] fʍ5u|II= P{p|,;̹qpJ5Y[D+;U&MȮX }]m@&F TNMT q2̖L+Xn6 atgx1˯~B8+B=%xU`Q-p]COi`t 'MW_:dlVk7ebsڦ%l @}gn;7^ttd.Ş4i,/cRR,eQO$>*<μ}y`,0Xd'G˛פjbRsf%MoVꢚvQ+]ϽRM5w/Qdu%|4$ DYK+!^@"t`f pFS9;:X$luRHd;,e,L&$D S /a_@׽H7O w>M}D^z8L޿B +,Kqjvn"XEX]W~,m,~kU{< V ENKWl$cis䷜Jh(Xw[iQk<X|*F`bY13iY.P3}x9X8^JDW- 5^]u,Ið#,40söȏ c乏4IC=WS:X*'M}Ҿp70,Z`a Z]ۘX X@Ƃ,oomEhB1ȢɌ %&~.1mA^8No,UZĀ=BrIvS3E5hyWHX0X |5` EC!ˆRb/`AkZ ۊ_ 4\# cXOb5"XHHDIam } (UH\?ÑRX?y$fbb䥢BrE?=} 66X|f,`a\Vj3 AKbHL+1LDE0{  }՗&,G۬]YyuH;BѢJƟ.F,j\ 7  5s1$+, KYL۬[.{%[ 4c7o; C9C]b e,h{:-T΃E4z6ED)e>K&ۡXdLI$.+P`qiFd5Yu0UFOBɆ7BxqsD܁jln!{_W9]"Yl3X$X|ůZ<#f,`aS0/P,N󶘖=K\HmI 1G/"Ъx9X@1?HNZ#`v:XTv|!XУeaO`AfOݖgwc#fS )C8tιBNd @xikA s-+,u&Z˸O6^T^,>Y[kdu v,^#X`1JZT7(hBŴ% |U%2l vS7a+YpjȽu]Y%`: v0,i:ZtHF^*YV$,Mif",<2@IG'Wf\ OGM,^,t` 1YIhɢr!BN۾(9Y]wǷY@E%Ε,u }oY{eT*7ɭ1m,-nū Xv,Dmmp/{RG 3MXs:Ur[/07Kr),ONCې.:VR ZT0,eЏ *9XZV}=u!Lܒםj3@j.3lgbg`;g)&3o4j,Dg9iGcቩޔ}B# >n[9H")y[tAtӆ*ͷ)-LXTys_Y?E`ql5SVشT׺8 ~ ,9XMx`G Q Dܴg,rik8½͢Pߺd@!%EV|.@b$ЛJe"]xc̢;ۙeE"2#̓9eye,l|m7_Inh#9,9\BXdKjzN";B=kp[NiH^{2'aw[z-<ΟTM-ދ?EP/*AaY *S3 St_R6 5E_t?芋AP](,J¿Jc%aI)D3y {a6SlL,et<5le| lB`z$WMz圶ʚGI ϘӨ. lRWo.owxsݻ~ .CkxOaw^BmMXe6ovufݰMsˢ_ky'0Ek%Xv+@5@hܻuG"JAzyIXL!rnsB[Jv8,ubq[6  j'L,ECYL?\ve] NyKŋERYtD5w`9IuM*/+F>e5tPVWYf VŠu"yTXS`}M389 7EaZov‚EBZ\z e"ؖpʂ˰Xu_pXG:h }*~]ENFu@[6S!iDo:j""/rs.L3]\hXhQaqž̎ŷaNj/2,XZ+CۡfdlQXȲ+4,e+"wyp}eu_?hX*^JYh]atO_e!죩԰â%w=°#â$bѰ8_NNaaEbX|KXaZ7C خOboB/]EF տ^Iaj*BQzYGYUDJa*y$BpѯX4c7KE&yh^‚´pjʢ‹ew!FzXB%:7O {d`{.f{d9yco;OE4E/H^Xm,#o? m}ttXZțdتʢҋceX DYEl페sEP"^WPgaZO{z"EXo%hwod!"w0,2ErZ4 ,uaj]F pWLq}Qغɵ<Q:޼(lt)T[.Cyr)/rK`SV?/ ϞۇX,O@X` "k^-?](jV.n2/ e"\t+ YΝNFίsQ_qVZcrxiXqW*|l.,Cۇ,#,2c@X 3"[ nG񙪎3P3sVٍrX_詇7F@IUKKP?zj'Eaޟ~F>.|O, &;"N,Xw&L,b␉eaĂ:,X0R &@`bHL,X uX0gL,aX<{tÂ~X& c‚ uX0`b &L,aĂ:,X0R &@`bHL,X uX0`b &L,aĂ:,X0R &@`bH[5_*TVSeŜaqp;a찰 UW0>2,*e,TX|2,?ܲPijkA&,X뇅? ,X?{&υWz;t9 Bb / 1/"J^2@gl! Lۼb ǕX*,X`c V 8p,X-,X`c V 8p,X-,X`c V 8p,IXF 8p,Clh;k?G CC)5Wf>m_X&,XwK8_肛7 y#Ϝj+2Όp+ڌu*U# 8p,&s+)9Xi[7RJU{@;Eh"&@X+T!,p,X<J^ lx#ř=˝[u "}"?ʬ_ۜɯ),rY~U=4~ /EZ~QGXcxbOJۻx#\XȤھ#RWxe]٦>wͫ3f(,gvp,X),C-nU(ƶVҧ_R틲4b[ˊcYظeu5V9T&nE~B$ww *R鳷Z9ڠA3˫FBX$l뗨O䕻6Ǘˎobu%`+k|{s:ʲ-в(P|N^E~]wr1.9g9<eæ*4?pp,X',*Gf< (=bT IDAT5K[4|frVJ jcRZig"_ {pYpr{k%0p,XԳµXT',[ˤKy×˫xZ7Ҙ'ϞlmR}{:ќ4-ͥٱlЌvy,mNg,OBƭZ俑o<]ocX+,ry7P/a7"`+}2zLY#|OUՓ'yth}OBX]cbFX}+p~eo+7l["i_hOo x:/.,>J`brN?p ,$kORfƗ}Z=[TG:Ͷ?^gE_%Ja=l*z#;+,x"-Bf'B˅E\0bZX\`E@_8BE8 HX s.3"Tۄ$B_L$  8 rqׄE=\C,lߑK[견[.,i^J0CHxWE>v(&,;%S!,֍'Ro䂵ñ YSOcpE@_8xL¸jp]X,~qEΜ^szPΔca<rk‚mg,fO\X)=Ӛ8+[QXUnn,.O,,a:M׽96w8z EW3:A֮E@_8g^9dwh~XBz~(:> 82 魥PnLeBXk,`\%,Ua]^BX8*UrLGX\]%-.$_ȥbư›9\Gφ-'y1 :€Vca'!, {"`ŽⲲkb%–L烵mB-^em+ǵBDQ<$j*,2!Ev|Nz/A-Q_P5c^v0$δQo`!1P2 ,"n"go2#g-;Nԅڃ{ׯoZt]]8=0~|8'p,4rXF`o~i=^r^,j7ѽ߭˗ӏDS7oe}p^Hqu+ꎦz瞱ԇsxzj`lϯѡ^b=Ni7/oZ",$=o}0Vkt'GI g'W9eF+n_v;gw~6X|I^|u,ꁓF@Bc`-Y-<ʋ.FV]rC_/Mec0vYn[q>XI]ћ/NbkݭP6V=Noۼ8XԻ9>roQf1n53o%5Ŵ|Nfskh>}k ͛/+okQvMF(Xj{n!_lʜ\C;jxt~7A3%Y̋bT)ozS^䘪"v@Bc`hLFi>שW1,4- ӤnػҦfwOa:>O:/.b"{9Lvf)?罦f^ X,Hvn_m;2N:ol~"E7`b6!tR++\sohkr2^gCq&Xe/: n>jrǽ[`@Bc`X̶smXqgÇ~ZܿLY\>]"8 e`apXogӨzafs79EY{Ի`~>>zg6 eɝ˻pƍۜ5F 8 'B_ {O[L^yţ^Gj~kzpݜGl:fGT\{x? z,~GW~owzol-z_8O/ $ ŧBՄ|/:+XDxft  3{n(=';5:v(G~,4 $׃Bc`X@8Xh,4 Bc`X@8Xh,4 Bc`X@8Xh,4 Bc`X@8Xh,4 Bc`X@8Xh,4 Bc`X@8Xh,4 Bc`X@8Xh,4 Bc`X@8Xh,4Ex7Ņ_  Bc`X@8Xh,4 Bc`X@8Xh,4 Bc`X@8Xh,4 Bc`X@8Xh,4 Bc`X@8Xh,4 Bc`X@8Xh,4 Bc`X@8Xh,4 Bc`X@8Xh,4 Bc`X@8Xh,4 Bc`X@8Xh,4 Bc`X@8Xh,4 Bc`X@8Xh,4 Bc`X@8Xh,4 Bc`Xػ&ڀ,'NTw d7@pqɢ͚jxO>O-}KnNSifL $ BcBc`X@rXh, 9Xh,4,4 H $ BcBc`X@rXh, 9Xh,4,4 H $ BcBc`X@rXh, 9Xh,4,4 H $ BcBc`X@rXh, 9Xh,4,4 H $ BcBc`X@rXh, 9Xh,4,4 H $ BcBc`X@rXh, 9Xh,4,4 H $ BcBc`X@rXh, 9Xh,4,4 H $  Z]o`X:f \x]ͷ/vU/:v+<1< W_ n[GͬK6DNa)YԆ`10,X7<#</0:8rݵ(6/\=8brǾbrp<̜{Z'Xm0P ^-81t8Xm, vvyU>3bt=`Q*M=jۣBd1>=̏]Q]aۿ{[AܜˏV~k,_z.QRE|W ݷ~`LXh, odav,g!XovoXyvlֽxk #ٌ+F *ē60s/ ?L;"|-,4F qCۺVg4, E_eJކ  ]P{Y 5jsRX1 U x0`q7抱|Á]`XQ{Y=xaps~Tgn ?'lm`!Xg,>D>Jh~3WW WCwS!ċAS ^eGJ>V _ˈ\#.}J,vw˃bQsGO~h!cUFcAr,cFq)qOLv=qhYMMOOFXh,XެUO芿K#, }˾_k3Ϲ|  8`mk\-X4n3?h|4 1|'ކxnv{uro⇺`q!f,VK_Ǜت o\JBcT_x05(gbJG>'X3\ms=mmgݽ_/dwRW۫l^ar`z&/;75,vLeߎ!rxlܳ?[߯ ώُRۮ|h5<[ؽQyěfk}o?Ս4y|{x[G`Ŷ++{ڃ}",%|$6۪WÁSݵ t}Xw~?m+Y+*4dXKKs4AВH!R ܨ삢Ehڷ> ^ؿdx3Nnot',jd<8D x,TxOk5)I`1I1蜙$'Z7ceMXĬάkڻNqB}>564X|NTmƃE7eO9p fMKzV lwAoלF:AUs%-$k/9Xf̳Eo*`/ Xi5v/"`a< Ff;gD.7 LyZXc={[y#f AẔ*NVdYױPeovJYbz'M|+πcoWžFX,r<ɺ2ϭs o2Ocz;CEZL[|D,X2mj|Gvq˼a / 3[&p~Yyj,"V,N j8A${ҟ:Pf?^///4_\U x,PEkrF'!_1Dde?'?6n}8[+R_y=.tt4.c$wNda(F[^Tw%ӏӲQ?,XEy2X`VRW0Kv➄?o0VhQ[D_WƼM }ڋElh&7AЃEjUf|-g/sPHb>Xu`Aye'?56*A^okV(| :խ :|l7Ҍ^\D()<XN8՞I$Ȓ(ə<ۓNNqis' z+//T3f.-S׽k (X!ݿ챯\Lqk̫e]MkM~rQT䨏̂X.D`Q cS 7AÀwz|)L[ Oy d~ҀAoxyRa`S[(J/~鲯}"`<a ^2Xq锵x6Cdf}t|{_z`gztq4iP0a"ds5 a{;z7ya1 IDAT(3y?d+m M٘nkM~ZUQ[ ^Dԍ+C@`T}.by5%P pO'[" :(|u͈ W➶XcwKxC1zbjdߗ>]z|CǨk9qdUE&..[ִ|B=`t?jF\Ht.ѓKL&SWڔo{ j/װoq,RcػwI cUgJx`ǽMb {.|NDPwiK򇚘l,"+z{r3vZ5.]C|^f5,XhZ¼pcvh0Cetfl_МKBv̲؀gtPN臘o{G v7A)}TS-QSzk5GٝhŜYd,E/o9)]#>nz:vK"[W Mn{7T :gÁa M `^'z>5>nP`p!S ڦ [yY8Ac :ի|~gʩao ٚY_bY%㺖ʱcڒ#w)4;jŮS.ĘRv[8A<X,JJ}M;f0#~k_f)+ªCB.;~ v [EmH\ v2܍CAXcR՜:ՕbJIdꚠrŝEV1ox$`]\o_OiׇEE(KW:ihCw t2EnyAXcqwa[EKR7E]&GTOpO`6" ;Ez-,E[  (XcEż(0&9JXҢр}4 ,Re0 :89\JYɔ(`7:iX2n"A,ీ9h\,ضu_`qݺ4FQKJ[\Y:^Q, D`<ƙ$g6"3- ,뮒ץ C ,PSrX$h/,B+> ,ీbEe*:cr>XTհG?޶ f'`A,ƽ^^Du0o(/4`x8gMPG  h Uvn'(<(kP,:C&;_E ,vv8M(t>K^Pڻ5pc  h ڸ;Fp]%XdoF(G.'X;H5*`x89(rL,  x, ϮFq^d̓E[?EmvH%#X",m\N;ȆnłE"˳  ,ీ:kER-ژڱ}q`q JN׾&r uδ(Ewp[W-EՕSJ <X@Htq._ 50K^,Ȼp~`q&}}&y=A'/L~? %㭣T9`AgG0+ B#9 (2  32b@k C;PZ%\w{ayc`tw$S+\ vߛnX 鎘HGZyWylaMcd;JXl ׍R,BW¶ސg qG埄@Erҕ9פ!'`l$ QW'^""C*MM=ˠؾ_TX)o!*jxf GCGw=V|7\Snw^dO]!!?b}}a1V}-""kʨy  c 8p,0ʪ%?ĂG+vQRs9&uTXT-m1af䰝-fnY89+NoCD-e8\%gK&X X9Aj  8p,`8˩on\2p=,{z:*CR‚YhaAbҀ& ؼf5IF.0V|VJlY4XB~n&,0.2fa1V}-bJAkکf1 ,%,X,EYӡN,l =yW~)jͼ9U>)ibaGYdLS(n2vlpК}pߛ RVv>_XpO7|˚CDžEɈ@*[ZKiʠ"=:X D$S^ɈBIjj5˟D0lj6;lʂ=yOQQCbNܣ^mmBKq1 KlIjM2c(_U|aVn JXL8L˖pB Ң{Բ28-b͔Ѧ=.1T  8p,0%gqf|rV{.Ÿw+`J'Wìp&\aa8*J+ SnqJ8|IEͪ|j4¢Vkі0%b|}6SCa_ Pp2%~+b'5,vh /c!b*XвG~kk ?CXJ\Q‚D˕r-cYvJ=L8uY+듖`KY' U>EZ"W-K^N| ,Xwæ@;,8-] p]غQj‚p?Bni)'A=gB :=z!S BVk2S^k aKH!?IJ`.d-"B*Aa`,a 4=GޟRwzV:=ZXL1՛rlL7;wkh%їu>))xAa# ȁXO,TK7*IzJRTN2ku2k->u:GMìPV hNޡ7G,Q}G9r(,*#koSXc!w].)H~I89Ϻ,l-qV٬|~AI/n~(8OS'|ZBכ'ky?lygM~&?OgG[<\{hIwA>\}FF|zL[KDq6b=y>K|}m-T+x ;%Jp,#-,<ÄRziP?;67vi/C J;s*>m{,".n6KQ_YEgQlo OUq30}4q툾̟[$j8;]?ov.F oR*Lؖ)˵*,XS4gۤߋ_<蚸H|iK vYw6{qƕ]\MXN=^ʼi/}! BA %t1򭿧~Ӄ[gKtm=Y?Ks]7 'No{8͍pu}5 fV?Ro8;gZWtq'{|I)^YdPJ աQ}W/Nx ;9oQKRqgRf'dxmq. 4J}{XX mxE&ibf{~>2]!$|ۥKo8#Qy~&./??+fR;w}`!,lݯG &(tJk!,޽aN_`Zb(BH B”Z4VDOB ]/F/0e; I.:VlO+'?|W`Aǂ_J",/&s:\feKt},I]Ȩ`hߨq,ϒnН:RnG͢ϛ{V/4mHuokt-3`j/Xo0X,;UvjTH8sPEoпW`AǂEȤ+ޙy7W57+hW~=X8SԆ> -I抛C}p&l6|@:#1 >cqrNٝ_~— 3XZyI8S t,X@8vE޲̰`z=,z !vƵ"{Aom9-˒sBӻnK,`=+rEi #X}ɦ-+4X}8S t,XUOs"f8g 0Q=E`T`Q4TXan˄eA=l| aZd=X1r`/]ˤHig,ZxM߄A :aɶW7zBm˥PNXA89{?4meI.{w߈|H2FDucZBcB}o=t,XJѻ=z,!IjQ-`^,z ۔GzvYRҽiչ󩳾)_0O'tG5zuEF@;Xb_ݛ(ƒEjIp :ުIIʛ\ab(-+XF&m5Z>ҹm~uVp|$׸kH>8KR3F' ~Oz_~|[YbHP!f 8vV|G :j9)8g3Is]zߒJHvO䷲fۃE`kY)^5v" }E=x]L]ّN@y$)HX;lR,ZK1W : igQO[O`<|%X t,X"79c{"t1+2~PM$ PMJܮ^?ʛ1EgF팘5,*N'P`}E%S"U,%|'o/̯dڏdؒڪ1=/kVIqcx`+vVF{,r~\w>7زuM :KjI$Un82B )^7O3VӲ$+XGyf7Z-,>qL SJS:\B t7uERomcWC8[ƅ*f zcIUς/X\$Z?׍KT*K6^cA"̷ÜS?]9>:(GH0&l%;j]og3#+V!Y8:J}qYgcIM٩i§76%=Bi6J2,SXg׍[¨V!1`/Xбczڣk=-uQ񓽭CZkL[cBhcF?X}wKݝmWoP :t,{eXF#?H t,Xܹgɫ#o< " *XбcqLY~r:YG~zn,Xб{gO/m :?w2 " "XбcDt,X :@`Aǂ9XбcDt,X :@`Aǂ9XбcDt,X :@`Aǂ9XбcDt,X :@`Aǂ9XбcDt,X :@`Aǂ9XбcDt,X :@`Aǂ9XбcDt,X :^=o,Xб"-(+Q65s5b"y=g,n8sf,,reT0XԸrM`xj̋lޚK%m,`a:"iùb^{ݴW[KMz9/Xt&~CacAǢK wc?$Fΰ} bLu?,'reT0Xtn=TŲn(G"s?ͥ[" ~1 Vq eIK*lB#XL `QD,:u8/`AǂeYٜ,|ÂE Q\d±) 3H~aG9ux䮿Ӗ}u@XhWB,,XбoME3j9j9x>XFf ,Tپ^g0M+R5 #wvv`ltB#XC:vJr}],r",,XбOYE\NR^ԩ7t,NAE*9,Xi~t 0"'b^{a7N$l?/җ"?,8 :t,-O`X=2f`, gż>oY%,ﵶ`aw(+ᅼGh>؛$GwE],"qpIvh0MGa"0*d h+ᅼGJyRfSޞScNBz^,b,Xб-JY_mTX׷zjrNsƌXۏfۃE`+vR{FA`aolrw"B9rƙp`1,r<qD>SȍdǮO},zTD$Z ab&r :t,)NB= 5)L\"DpΨPؽؔ`18h!#ʮ߬u2 &x?U⸫Jesw[(!KFiؒg }oF,*|HCw}EUN_k/qY‚E(E :] Tԯ{2kK(|Q/"NLӲ$u,뻆ne{id6>X7xJ:[+Uq8;%~KJ"ܿ0r?c`ajjӊN&Xбc^M ݰw o:*q<9~(pōRWͺoO6y!X ){/ ]_x3^;^{? :b{ :t,~?}<#Gt˵5,XбΓ/3ކk@YuYʈUcA26y9|%RKDb|v`+kIe :t,~{{z'(#;5][/Xбc/8X=-@?N~Y8 :t, rcA,Xб" :t, rcA,Xб" :t, rcA,Xб" :t, rcA,Xб" :t, rcA,Xб" :t, rcA,Xб7;ړ?eh-т E(HUzQWc4Q+/oL/O̴vu{v̙ss~3-yԻTK\=5xG, #^XL}PM5W >.Zhg]̳:G_ Xx'މEz2[X^`s+ޏ/,bRkd/Ոgu^7f5WpDm|eik}덙#MA^8 `Xx'n4qG,~S#XEF1",$>X:{-u^7f5PԫSw{XCDY6ӓbVzK ;pDt޾o=|?2 & {Ec]GMA}ЋWt[ Wj%U:8a*#_<Ϫq233{9z`Q~ ;pVLgo|/m({Юy￱?\__',^2Od5b[Q51y`i|X_˲_Xx'މEq`b# . (9,zX4X+qh/ N, fzy/?a>Wd=a{/3ƴ 3r;$#mm yѡʅS[ߨW9FT`^jM ꯨ#ɪ}[uHƸ%8騪,A?^ w*ەкɪ´3*ig\ivvM)U>6atSu"KsNXw-9Ua, ֕Sѓ}T1̰{6z}Rsm/S;9veC~^,}fWw`+ IX> XtmDIXx'މEA ƒ'SY9C::EٯEI&dDi) N "VQJetAumJ () Xؙϋ ,,/'-ԙ̥U܅keʽB-BZ\ݪn*M0 A>¥N:SZ3zfcVܱ[| n҈Ϭ[ruR$yg~a&W D%A&-YI̦ۨ 'E[GAcTǸ;{bz½Ncov1qc8}!M).mVl"s¦='p5(YMI̤TuD$,381Ėj,bX7KYt`Th%qXd i&OFB B,LC^|QXТ̮%H[ϱQrh&I91pUӾFGj}u-Te d_H%]2;sN2iQ7O K[xAР,8ԕ#l/XEH!1=]S¸|^wbX "iq+2ONEHɱR${Qm)W͏%m}r7lvfqI^4V=hѮL1e6Aȏ$f@Z T̻@tlt0eoxHPX),EߠRI+R*A5T1sX@\2?pr qϘuQٴk7;PJ-F00I/ k-|w.(yMFqAńH.7I!e#1|cY,$r||ޘeҁxy^Mn Xcy`)=$qj@5BkR v9a[ʴ;Z D*%ji:qo5P }!7`aWJY´b;Aa EXrs )`]+O#KPIqA?A/5nНl1i,b62D~8Dr: M?`O:בV+j4BǑ8NV$2کӁ>4G)u\?wtסY5#wmDB"_72R UQ?OL"ErQq*mW3sb%; evs_NTOoPH~ m^O*@  @¡P hh"P( J-b7[ O=^)ܠMaq)NPTG{ӗrߣ2=i! s`!jΫS?7I E:c1a,+)?˱v>['tZ/9]36ͅ-=Z>ºzUHÒ\0]>b #7tXy|w UWO] 4YQϧ=R3#Sh# η0i%v0QBO*ph@ɱI*@YY|-D;]캿U_LNї; XT'(`c.kG<Å`mQ'H!/amkia2h%T.1ܕ5"LQr{㓭2P?f%QCXBXXעDx즡U, \3%bָ -lA JEO)TE =+Q&XZ0yT,tbPnXfYzVEu>:/6l`1/<Օ- ji- q( V/\y9a3úA7" įC.]RϽr:tk6B9zlf$W1-oHnhL.9:Xmp,>*?xK8Xt7EQVfTxNuW, Q$C17,ye6< bNwǚEd]3;FڑpăEg \ 4j*h\e:Ψ}Ktdl7Y*  bTQ!;;௳yKB #vcy fhVE |,MG. ɤ,ƒ6^d>߀@ɲԯ\,t1(<#!Vw/ 밚0.KwB洍Q,|+B9;?؋BsM|E:cX 0X#ͦ*N'Xe%X\.gy i7/尿2èw+X)'i 61e$uF̘MD.w zO7`}@R{Lot#|գڢ\Uɣ{R d Xo| ۂ9XuøMBDAH?y0OX L'.dJv`x PbVQDcB QilK1-.s;`"'&b}BzܬI.IocαܗΌԎw,5μa[b(?Fd)Ww [Yo?"krfiXe}U,KZN~`E.lThĆ3|LĎ#)3N9P51,&rd'Bu4g&RUX3zx3E7l5yU9h ,[`A=Z`qY ӣ$wR? -7E`Q! LNA E1rs؊#W><{{p\`Q>=8Cna'5&Sw0īx}BDV-?_$>~0hh^ ,ň )A+&XBI"\Xw 0`Q*> pR P c$Z"9 )1`o.PS'MɗLFIliG;` g0ܭJ1hXʕ]w<,.9LodY ^X$bְ [)9TFb8Ym|3(Xe&J!gUStD%K(+X}`X3% `1JeC4['R;XYO9XZd &H`X39y>O#+AƱ*62cq`qcE0C a/ #7E9}±D~tpk}:E5Ûb^sl*:׭V Z+n!(y&3bBC/Jر38%9Z:'\ʰ )].w'=NɞXpg܄ESr1n{=ob72|b[,|śM,,@C'60bȱթq )T"E١&,otU7MmĎXMY55f5`USչ)|{Mɭ:O9#kSq}Tuxu"=5b1#t';f]_0,Xr5+*vBjR{<Ŭ mQm;Ā=֛XoVI,FUŝ^d"c3 wE,6 yvXZ ~¡Y^lW~/tb'bIj]jǜR:㚛HHy-yXȃJxybx*@9EQ4#Ӵmƈ,pSDlbb!UkPcK_Vm+wnHg:wqӶxC"Bt"I63iW%vW+'Xc bVӿ ̮?aW<]Z YB]fs w.s <ɃT9#MW"9dg" }铅hIEsbC|LZ~=ju@vޛyv{9T;f] dZ zg"B5"oVh: #M"t$,8ԓbgK>ob/[>`>6n"*eb!*E=V,7Sc EьXL>+nQb(?*j'OX_ Wk@ 'Xak"FJTX,]Lz.wZ8lY] H=.wMG=fn@Bk<~.Akx H YpA|b#'<EM")=? b @ f:algaX؏ʏ2YN'+7eeYDniï .׻q4 @I,*M^|ԩ\ԩк@z}X&`j)} b[,nz9G˃nܲUEZ~,&K XA: vשbS;Q Bu*D,җewǖZ*3VlGXZJþ"/#ەg'A :ža;[s,g:|('ԗRE6 0u@ ":W: 0qbZ?>a  ۗ =ĢFHvaYZ&1I.0\~ _pE\C_A}ZDZ$5=$GgP#Lxp \S0}4R"14Gd]sN@94#XACD3<b!zegI%Y޳:4F{ @;m pWK!!$>C3KMR[.2փ2ֱn_T "HEn'+¶6,"zK:% ,4HTP@(~-mΧƘfv_n4vxyQoSգgQf]RFPțPظm3.=Se A OI"@6'h"3=𾯾L8ȝKdS7͓q `5?M o]`, ǀNŭmWsK燳\RTwRO\{hLyy{[HBDOHo7 E,Rs MWV~\(!el}@X̠r',oQ0j?3x3 d,C"< ä}ba(#(,@0,궤-b$aQVGa: d, ÿ0 dFkZ&8j6{AjX  d,@XX c d,X c@ 2X ,,@aa2 d,@XX c d,X c@ 2X ,,@aa2 d,@XX c d,x}Ri~ojr,/w\? aa2 o"K升#u25Q5h_9rO}Eݣ^RdZ pr[Z]2p~iK{݈~#%h1-o٩?(,i/ w~1a_F" FGMmeh-@ _|o*_- TyE/9' fn'YN_ o#kbtn Q50a6N4/&2Qcp. Za+a24w#&,ֈ*f -T}ō_^+Ԑw Z.zma!l$hʩmeh#W d,PEp Rj߈LtRXp` f#m<>QZusK7Qj1~1?++ۃHp{ j\}f7F?0ڹ鬤ظ9]oZl1]3G@Nfӟ efoJ-V .]t/NZqXM:\'UR$6/`|RcS[<0jI}.isCƭ.~Lwz{,3v!o+M?7j+C`䜮D HX|#ʷ&+Á%t榸.CB>?SX c:N7ʇX𲶞`d3z3N"1<= ۈRF2*ۜz>+/+ʿl^?0 ,YlA{NJ b}~|{*LɪܒVQX( DB?IWΏZ-iH@!fEzܯm*z&A<W[cj9v Ԍvjk&~k&_5(Dǭ`H\e,ajL*$H~qw^;JkW!«yߦAGb W3^4ީpc;CAPrJщ6QjZGj~Ufjv/M[Xh:ES EfYr;ժ޾a̺ŷB/onS-Bu^ڷ>L< xȩ΍h҇EYܴ}]gq }!,@d*KLhjy WxpaQ[ɘT֫QMX 4]O\||pƣgxK Ksp9ΧGaqw|>-`t*4ZAi.o;4/ʥ]Ү?JY""J-Q#EMmLTϝ7M|̜3OԆBv̜~fz 8`1_1>olQxXT HMb?Uzj Zv6&c3n-125 * 4S1W# V7f$u/l௢Khn4`A_dBgQGP'e"%g,ۻot'F YV'xw*l3p dq 10 5 ,xgpZY`!CFSC{-d Rj$rDu>w!?BX?\ "؜d`Oh;rBɆ&!fXǾEܶxbciܮ3M@Dux% SqR3-G_6ric8t+iO)d8y6x/fBiZfd8qZ07o:xZw`ht1bޛ]j,%?czxbcWxP0^^g =2N9 : uxct,x`<TH.L E?|Q- `rHm^ȭ*gvnR2+FlM=,&.–ze0}c_#{%f@D!w  ')tDHsR|`iuXӸXt.%ŵH*]֦g.XÜ 9<`K{2" &#KAe  M4.l`3ڬ Xz*:Ā`u`E,,᮱UX# ͆ee㌇}HuڷEXsaŅ]Z,<iA `$6ēN(Ȩ/RH?lXuԖdP4ρɦ*9۟sF2VSϧ|`$)&cO޹$lqSn2"rQo8na'jf01<`e?$ޞdeZ]ժZ%XtfG>3v 8vaUăs 0bF,ѓRaXcuHJm:@V&O^33L-L4} y ,DgW<_AC IƟ,`Qe[xq̑mQHBdN*S{`i  ;DC5EfQ97 ,@ڑ[,v?r\϶,r9Ro2&LI~,N%)Rt1 b`4{`wEmni\}t䀈!3"6J߳t~`,1Ōڒ@`aqO06EMxFP.4v#Eԣ /!^(X ABڷx3^9k-<ќx`>"XDKhq20MsR'c+:XӬ tM`a'68$ Bm2>a"XW`΄`ODĴgRSk,V:ѐ#q,hSbQߴNC{GLyt}Cfni͑ ,k{N?& kRKm,$N_%K.A_xP 0G ߒ~fsg?&"rhfɰw]8!ɘ}E x6FY]/ #a}?=c59)~4<ϱEv8ú(5,|?Mi  h gT8_ꫛjh&ŔifRW9\,UכRiošqPo) ,2ft XT`*Ƈ` #$hkvLk]Ʀu[d; $>1džUe& %sfsEl_\XbpSÞ)/XW駚 P0b~M}؀ /LaE1@у(5,.8~BB# WX8|^*uS(6pYFDxtL~O[,В- Sr, 1,DTrwXt >&BǢ= *6Ɗ%ɍ O lϓui=3"+Ԓ 5l`1f0 E )XTS1aw;X K6 !W@=īg.&o]^Ɔ-qY `a ,xq,j%_ځݘC۟=BA2ڠcw׬-Ű̪`a/ 2hdXeSeB e2$'u2־EMN ~zᔞ}FGc ˣ&#a>W_=shx13D,X\rbD$#}aEE&1Ff6_(EY2?+sx68&_7Xy`!N()XcWud ŨDWťX#_wh*Uof1 ,`שT͐2pvJ뭼yn(s0,XUjcZ9$29LE1.6 ,,'u" A[ȹd!=g>ضY%'ѣS X[<Wm+ճvs#j>^~`_գ\fUQ1l%o gQ'_ _Г%wl'X,}A8xsIMJ(5,D X/v%qVC3pel`Ȗ _ b4ŵk{ć4p{Y,Co5L,rg(v+r],Xw]tww (~ع؃o[`ZլNicȘbP"W+茅9"ox('|hfs`o33'ݜ{`928x'9+@^tIHA`FW.>6,Ḷj5qZO#.y"ċɍs@PPʺ({9(z-kAK;Dzw=:.N:k?A: 4B?'&$Q}_ETk%'r}\^ǥ\ڷvvgvvA03<aS}Cd]AX X3[_w1 Wą\Oob@X0&TX(->a{jKs ?s9v?iAiJo)"{k~T61ft$3 Eno - ߞHZZRzo.,Ȁqy~$B:qv?9մC|u:tPc/7k]8Nit0ǯoKVa!O2h>"a!Z9Ki.bPvy"UfH9"MG<֓xľFԡ2 In|ѹn'@ 8p,zBZl_X&Sߙ~ b2rw}q?5$)Շv0~ϿO{@Xt<zEXc]΄iAXP |^aP: G `` _ΘEW 8tNX,RM\ne b=}v‚Lukͮ] d@MSpR|?OXt<zEXcDe+k,c‚R,p(bҏ(,\% mo¢k + pO+{¢K8aTLa#鮰 4r}w,摣'ق f LYa!Vs龘;a<EP6TVXgQX|97ύ|)M@>9tʥssHXөDXiNYCBl9`#,R\ IDATzbCC5 劗d1 ֈ]S)2 $! ,K"h\ jR*h Ay\$_3G"V+s~ >=}SI#ӑo4fTqqb٘2Q_K#%!AS,G.cfQpF,s*/7dHW77XU~xQ[ ZEvkZWި(~J` a|)P$t@qX le9ts>M(sSMOڌ-~o|T}LZUۚJR`Wf`%.I*)UųqU]IS$(sqwOveWh`8pOQje\+=6骄 <@TRx$I4'MFnP̑l+ɑ'yԐ"zU>D:goa=OȭndK/.E`E&B7$aHsC@Hz~\M~N('x OxC=iŝ6!+ Df.ueQZc(ZQ"`]{S3Wϊ]*[9bBӼ͈ϳ3Ԗ$9?93bX[v>t~X|64zP 6z Z7~ p*j/@3y>bC.1*ֵQS 93 {ƛQ*Zy ]υbYp]@vo_D[`>OÉ\RW[WuMPQӤ6VbG{%I-r-(ŷZG/!(֚ɟB͗/97kޤ}xg| JgP~pމl}wKX tb1.I7gr!}T- bW31T6)KS(nc5sji'ϪnL ٽ]ɂk"3uh]9#ΈɰL-/yAXBYlQbQdکXZx=E餡(&]Ip7dO˟POiBXJ WC $=H%>} k,md.2a"C]/*`ں Bh$m$KT쫀ں@s8,Uilc}^bܠHK*cɵg,M}Z1<ك^0*8 џh7YBFgF e:lo s\Y,~l<JUlPӟ3BRIk0TۘҟS^] ~.Q68bp_ `xAŕ/8`q~8kǾ˷_r, g⧰u1B*դq#/:Ex$%ɮ ۚc mrUuiE௡? ^(Zд$&#<[5[J`1ن b<n;w Hi&T؁ȥr`QLf;Z&8`tZI&M{— cgFQ+Q$VXeڳdVڍ2YD>4;R Vu4N:؀E!AsbYM֚F<\ ݰ`MRCޠ#o<:Xxl%#gz&:XTFf 4ABLWHWD gh.E*  Vu4N:؀E{uZUE(,_1XXd Xv<o&UjWBQ!#3X_U.]L-7ս`q'kE5Gg,3jg7@fX(s{dShl8>ڟ|=c,:׎32:frY]I gئedw$5r)ߵ$W{Egs! l%qje ˾ gQlIˁc].֑Ept4i JRt\jw4>;Q.p 1D;&-"67AHfEW@JeVp7 Y$) Enfzfz23ٺe=ts44 WYbKA;d^3 /a k[u\WUhm)kCo;P$ݤ^(dAJc()M{w>yM2qLUi`7э0Y;z̸>O}#gK$8mc{,A4tգe䤦0 O4 Z;'/,Er&iuXz5TkՃPiJiQi^Q*j`ZOU"\+4#'++i>`=x+X|ϼ.`N`N2\wƂ:;;s؀~-"z󑊒Cm2"{@v}9c d_XY  X#v`a+O`ԃi3^=eAC`7Xe8cUXh(o O1W+X,#>XMa:ē.7@(q}"Af BIE0.\ڶKxPaN (ۍKi JW29z6qiRNo1Jm ךLY(%WI4QI!ZSh龔"}q=2m]2d%Z;c_(c i\bSL,}H]61P`-J$ Y2Q*ѱ*,32E\7V ,$`wή.X$ijX^|LV%639]; [6+RHNlG-:܀(?-@&[kš;0 p`Q+eJ1p_N1`59٧ϸ#X4J,fZ+/`1qh۵Z@=cX y ^X+X3IxI+Xy>X?o<vj+Q<0X@[[$n5XH TAj$L?AI]xX3;tn=M,pOA}GE;c$@!> %Dqԃ Gvc{,fQAmR尧*Ur9bQ73XP],#Xi^,->{}AKa s+X,k1KW4f% ~V n`=lO-;o{؎`! sZ$ j>гxbe"qs8-z`?o3J_}`ȹ7>{Y,.ANuFKn3Jȶ곔&`oA3CRh XuڌrڰB앂{z-N<*ŠFQ{+'rBg߃_X&d BV&E\:Zڐgdy,bi ,q֯GAv;ԝ&n`,ZK` .ǨUj#`Bf{%`424]2-)"x@Ia׼VhsEZǓ IDATpT)/Iy"ǺXpb)V,W?Y&yj؞E/',ƄX},0 `;h]kS<-`aƒu>Ũ t7iy+۱(A.J`{,l7lr%y Xu6Y,uj1JPVSiMS3R0U~Vѓa,Кda5VւkzcԦ{6W^yZyr,E .<l:r U!*+C|:d,^^rTم2R8qZ9a1C* 7GJcKJq&x o5K?WgA"X,`Q`M%i2]OU,LUP))E+Gl8_ o|X vڽ_z$iPxww+Wpu2_ H4S !%L>a>o(%&Z=Mb J!~S*j&.]!-X c!ʊ7Ocoz N7Dmf཰}6X|])E=dq>ߢ-.oSA9ڨ3E ;݋v ou;> ,Ps@IoYTqe ZWk 5RI  XpԵqi.lgX QEItjSRRCXGxY` _,'hj1)mFf~y%- e:cr{ǒ Ϫ`Af}gOs - uKmhr8dm8G zcq w=Xiˋ' L!*6X|GHZ݄oN%Nrqffòz 6>TE0|%t&`aG5B yQGB8 e5ɼmrtȊ^|.pRK46}aƍppG!Sh~|B?ũs?@XHP-YۂFeD\)RfZ`E=zGξ+ K(g1͖ɾ[`AcAc絺XuspҧuϩW}E+->̺I]2 oxWՊ̧֟Vq#UuᢽVIm~|T+V?җWwϝ OQ7~ݵu:?f ,jz^QfLդq—i5'tЦc"죟,I 83dX6pQ,n'p6g-isF*jNg[].,ʬB~';ͅzE`q:(:w9x`סƂƢ?=|+ɏvѽcF`NoV?ִB{qw?}.LѿM,v:q-{^QɵmhO u<\O}<ڷǮSB ;2& kod z?82ls0 vPWUuYI?V_i+X̎W;Ը5S.  ^~ʚemu7sUR}ji9Ɋ/8o~tVmLrCXOW۵/;1v@2e7'r{oDѭ?+ep`H͹T\xtz](J\¡ЅML9o.gr_!s [+ƂƢt(6S = i>[j3l.uOoy;XXXEg_;,{W39 ؖP&s$zfa*L=XXX3Ï|ECglƷ>5!H]@]P:`AcAcQ:U> J;QO M{1`AcAcQ:w'_6޹v!XXXIcUDZ,v bBfbRtv\ 44L=j~Kڋ\06 -cTlo/a`_ ]sF~B` 1࠙ o4m,>a0H`AcAckZ0߱wτ+꺭 쓠iL?дaTl'cHyjbʞC̹Ϳ0{mitMsjt.Mލ_+wzѨ6E"٢ .]`M+ޮz/_6[_6:f32ӛѭ6LJN$-> ɜ`1U{bQwgoscYJ4ui5ͦūۃzmyBsZfv,:M 9cvH.Zm: ܬl6 1tTtc}_BS 뉄znΗw:Ş:n5UM4궋z.Ӵ DOpFW*Q+Ōs`LEFzĴlK'Q]SS~qE* D4'UōӢw'Z&jEnjEMk?̛ Ԫ7*s}?QN%Scm[ kƂ"Ou~;*0q]-'-X#b QXv&"fwY͊ؕ,;Xd\cqB։>e]kD# w1Ykegz0U:프.( uK-B4hd7%D!y/I3kڪ.;؁vV;fuYcN0vU~xg3=%Uq1>[],k,06[4?{3ǩ=Yʽ~Rz.1-' 8=J=-Xбc2M)uƒR>8RTjE *G"~UM8Q1Gsw`˚#[9|ԘBTɺrv֏ 3uE6z-Q9 pE@*ߣ`aU\+Vo--Xбc[\S"Ӟm_ 'X5\q|x;X3fT")){=?n4e',1}|œ9&,\R/&fEN`bE0dz%R~_ Kxf_O%&Y|[X [cAǢ܌+90Ab8=|`ۣ>cnwTiC]XHCK"אka*_!U()&5 zVeѬ=_Flހ`qM;X$`Aǂ_GzjhGFban|Żb:XI!ڣ>cr1ڨRYlԩPQ`œ*x۪|jO6[qIa6jA"5$,FEDX49BNVnXwO%OTГ -Xбca7̬W!Xǀ_cQ``/'`Yral $XO<]3qwn_IXYo/+\l͕,JY] K E7\!`QrͽW> ͉Cop٧iz.1X{鹅5= :t,l$Ziwv5K^zgbE! !ZHޛ?r̋r1"S~Yn >(6dcJvޛ7Aٙ#ѱ>m+r u5uRŒSr!ohRυ(Vߢ9\=tªnqsOXs c؂ :gmU*YG8[}BX-w0W9|>Q6WXO:fR纄B)u_w}8oo;Sȼylo\u]1/*0VWق|eҕhsg\Nv?d|M gyU >r]4DU}'XڌL&PY:`Q3G>ܘ^ӏ6- y_G1zΝ裡)xo[r@Bdy"X.0=QY֩PO 5{`9J=5,X#vA|۔d/`/0X {)[U1\ފ[Rfd*ee~x>6Z$οxy_Kۏ廏շ?mwj/?C6̀MC=b<کEϚʟ٥fIEw}Џ5= :t,.NpԘwiY?)յq旁 Y.ωsL`(| RܣjȞ"X0t81=@`Aǂylq i+rw :t,.^9hWcoMuEO :t, scA,Xб2 :t, scA,Xб2 :t, scA,Xб2 :t, scA,Xб2 :t, scA,Xб2 :t, scA,Xб2 :t,r_߸^ݙWY/M`AǂE "ϷN~mRbwhbpX?{6O0J;jM I0!'\TU mE%QiR$L=)X8Lk0BP>4/]=neNy3iZ*eFΠȷOH ֓E7hP( '|~X,eԅ4f,0c^3*@7X6>@P(O x|S.XPcf,0cqki7EpIof XDȯ [ɣ@P(䁅†1 hOyW/zQ9rD3:HH<<&93 tj~fnk`]m](ʁmShe qvEw661i۾4l=Kٚ}(v`HU$gT_2iokZg,R[T\6,h{E]|sGp4X@P(ԄQK`oLӶ-W#&>lVvLRm*kj5tu&]R)ڨc_ܠ^l-Rz7cĈpSX˦G8|sf,0c!+BGZi`.Po+ʽ6Z;gK/*?EIR3vyXH{Llt,P3X(`DWB*3h:5h-?{O`A $hwWLmqVnݡ߯78Uϝ.0c@P(duSk XgjZ.xWAo]\"eqPv\, iT87(-w.zHf̄RQ w>(@T z>f,BJ-oϩ 9" vZj,`qHn@"Q?f mNb_ _7}%N IDATwq;2:P%1=t6j0ƂY]<2hi+z@BP  ( LT7dYf^o ,. ќLHocbJ_mogkvFMU((;mHQW]א>3G \cUK07&֍.20X!bnye,Y^VaקQvS\,cć]{B2-ZFs, B&,zG`"X!qsR K ,.2X w /7lZNY"p[֙gFOv X`"J otwbݣ}c,Hqa!) 6|۱$(&r3Q-U*߮x[ fqK`ygq0v7lP(jBB:n/pb/W}.Qם wbqh0?Q¡gD  tF14p N9`ctE7"Vp4ϴe YP_chٟ"* \|ب:,v,$5R"wI~( H?cQb['H`"Eu̵̫{pS`PE!0R+ZjGyDƢ(8Kک0X!=ѭ~' 2j+Ԣ <+: P +եN}M^P( 5a`Aw+}p}萨_=‚` 75 ,Bq-REؾ.ycJ1bD_8nTvW.& X`BVy-Ejph0~E1`q9LzJmC5jzmI`Anny\AP( 8X v.%"ʯ9).A8*;vTEE(nX_#G렉&+Ff,dAw QNhxX .#b|$XAVF׳l,rsmGEŭ> E7*!~PY.(,*72 BP$T8XSߕ"৏R9X"֣X?丁E`aP#((;/x[eF!XLX`3w9ʉQbḷE4XH|{K v,c8t6Y<ۋf1+xC7,,H>-%u޲ 0 MԚmD_K^B5wFq?{gהF_xJQVc FfRZ ,QS)SVvHU_=308Cr"irI+,Df&]XvPBWr=z#)ͺnQT[1\|p [eHT=:Zt,e>4$,ీ‰%*5,qDXmBUzeDbVz+˼/NXϨ"D%‚׌'e,j*^mxCXT ɰtYlpWM\Z>Ey&uKԵ FFn5uM]l8I&tb${ﴵěb.ܯ3JMnnO#f;BˬJ̯*zm-qy#OeMap WdH63o46'pha3_񶾾X!, !t)D9g5 "CaQ=)Va!OpeEۦ"% l;2dXԘD.ܘ6 vEDUA9*zu2)C@$̡)1oYvP0^Kх5YN҆|~M&7a/E %Buw7Kuh"RXn)x+v^,2= n7,#Qj!X xHgvsXY#OGXcvEpQF sܶAXļlg,6/$~n _gx=祩4oMaQ&cSsצ199晑696:~$uG_XL#bZ" w7mP<6bY3mԻU,ET D,hva^kyK%'q`~m.,lv+:7Ke_1BGm怹:3aК ,7˶o3͉MrqZ".؍^zO}6l6ܻ_ gY_ˮ-;̺:e]Z6I ;MkA&߮4_…D3osSy$7W%|7 d:Tp9a{szʡ:C2,/ x,౸? <ӁGXzA{](wH%hQFrW4bMKubE|<XKI)PY x,౸7(ҎNr~Y2l:"#zqf='{V[ma<XuUVwOVX;UqR**Eol=`Gi:x x,ү96 Fl@ڿ 2H NXckS.RBX`(a<p)D5+m[ ~z|[4kzM+hwɍҼZK? XPzI WѵUS_HȢz: <X NtڗDs=5l8'WQ?PakQ_X <<X؜uT[aEIWXCL~XaqޯBdIt+, x,`lUv+<ؙ#O1_aoڱ0dqO&Ǭ%}ESXc"O{ѦJ &JC d9SC |gٹx x,sdR)V/ΈVD CڪC kbwESXcqEKjvV$:t p",X8ѾaqHT?T_X5maSQ$LEEX^"jԩvؙxuw^8L켐PZ=w&dֳ~U0TX cH,t#tOYjӚ~1HE7G=aUwaѰW9ucGX**,@+D_O~`ڒ"Q)"U{¢]J ,"mW} -d*c d,qO}5䈨ڱz ۛNAIž7y|ti)>egد d,ളDr [%NiJ$9sW$W?ш;gqO[vQJE |&&vaճUKX**,@+gqzfv!|&N$JwX8N~P7rWm*8ma)| ;o3@w'{NT]2Pn$~a1`@ larQnl2[JMa!V_q !5Δԫx06wtn~c d,Ohwzjt"O? 2Xi}c-ۣ oo:CG%Q j|0~c@M{yP:lEJ Tu QfPN> d,\YBoIRƔHU@uݰa=+e$ej;wZ'*DusW2g Wѵgv>f$]2{Y-3F ?eRwu[`&ȴIfݻSEIsTmfp9ut?;ġHxm%lnE"Es틏GmG{S^gTzYH_*uT unSYo i€L#e~E%,@OHu_79!7'ɳZ/IIS23܈<{ lVӥ(c"&,rD/5^M~Ub0]v5kKc"vT㼵AxWp>s[oW5eO8k.':k7Oth>z. jS1 SWiѮnm)W;FAs,k /Ds-q5<87 \T fsx?(a2z~H*/DW $'ff3b[n3upkE6TX2-éԮ?(S-хW5.d[h&N^4ōL+Cf jf9‚>F"ՍO;"ɕJ ,ljgep(Oc7)uS'V\fTaP"V#hK7o_֨#,Hzi>91oM/LWoVT%-,uk?hĩغ0;L@3dND$5zec<8T L(z) _kSpސ? $%u  ]8hO[c!lVOX{C5-kaLL'yHOw- O给+>5Ns:s,La)U,h]5"myw_K rEi5#vb?LE*N?(a2Av>Ϻ98>*,d3$Iq\,C0TXXi{%o{ͷ[6w8-%{'&{bі cBm66 ^nҔIJV&v]M4SV3UY=aaD]nbqj4<Ӎ'݊=a gsWsݕ{׹(Z\Xv^a4!@ێ}7D d,O1*чE&b__Uΐ27{ـEݗɖGX SA?c^YNv*'hvkXץ4q8P)p 1Xбcq6u[DŽ}/ mM Ѝ{10ֻL{7߻dq,Xб" :t, rcA,Xб" :t, rcA,Xб" :t, rcA,Xб" :t, rcA,Xб" :t, rcA,Xб" :t, rcA,Xб" :t, rcA"\l#FǙM?L)EyWcA"eB$}5ӓ/ x`AǂE]?>/c( T x=mr`>VqIeB_=XбcѢ7)ųߍ_!0bLd`@"˃ޙ%m8`2,XбhsD_Vt,XAR,Xб|rDZ@ͷf"xh02HEp ڂH;Pv,vW1wE:,j,S]w\(9[Nj4$e3M6M+,SA=x7]̧VMw,{fj7B2W_w̉ u'X|)$0-V,,TNj:bTp4 ŏ`91}'`SS?\2z,I/Xi7Mv#w}l*' uąY%¸. ثri> PhZ|}yNu,.w[`sv`8%;\'I{muQou)9gHy{?mޱŮsAYmyPaݖ#V3_ ^wEW+O`9Yά^qkkݸ #"[]ϝ+ZXqV)\D[_(}s6;>tC,DC'\1[Bf`/{rpEp`QF+^-h#RZѤN|h|1?`sGm9AfجٖZ׾`+>7v@[拠O+juR3jt] 5ziGƬV-t8UaJ* L&`o֡XQb)fc V$yW[[ڹDBP4ďr ӟ48P"-yjj{)BPQY bg 1(ZL's: 蓫a=^_\_{)|׻]`qx A ńK ' ̟YxV,j"'鬊aFYk ,v3σj(,ٍ1Kp;#FO񍥮h=x "|15Y$ B XHm`z6Fܔ ep(xE h[vOuӱch/`!.C_+GYHd?,b tCߝ?XT,7bާ.s`!v¿n};HFT:Yciެo5_5 Y8XG 5`5\q=a`1I)6X,ID{4_{vp^F It ?VD"XTEfǓYxV,k3[0m_S,]JbL dXwSf1kpa"x[*` B X2TZRbghX0a`i*$فt6 8lI~P zXcȓXE_dtY[c$Wť7ρŲ3>`q=񙕃"k``59`3K,WQ(pr(?rS:Cձ 61τ꾡b>ʆ13mgUd,Z`WŵٲHA X`}8 wLBŢK`ve}@eu,=&OZ^»wyͻw,>_f|Q(ԐaUxۓh(),x$%bT*J )hcO"5"Xk!œZXWٍQJ3qSk,b^ .{!hHu1pH[ʽUܢ}͋DoB( ]XEk8׶Sj͚Oݐuӌn&|5j}5^ \=εB09,`qXETXlf;M׀E}~W @b&-:l,r6位 k:xcK0">c.l;s }> XoG, -gJ(rMezF8)E ZHKI8hK9h H-j ԛJ'pѻhfLRl?yfXXX`]Z7tXD*== \w!a ^u߮^6ofFǏM kS*gbJ] tU\a >J'N_rS,DL)?sUbU}0k\% nXXXg;l^#>?1;#pb*w{evE`;ڗթsUmRļkˎPfo]g3TYUK bX@,bAbAbqgHbFi /Eu*ezzwl 3J'BjYW1֔Bu=r=KkOX$ިVn   ;Y5kŽ :%ΐ#P=" 秧pi$ڧNڀ,VX{n:0 b  ;d}pt]FĢ䯞g'Eg%BY,y3A,Nak-lr @`a I螁7 ;.@.i%X7SЪ9?X\=عx"q@gxkKO.k)*ܹ-Xl$0 ґSHVbcLj@bAbAbA,œ;TBbm;s=HM3"0JlXTMKwڻu% j>ҤvM5'A,T ǞE,b   bsg]& *? vXcZ1K_87KfV|y)QBTN #=m{bXXXtݗ73ux>}}3t$mbҞioqX TL6c. pgkŧYCۺbXXXDjez7τ}/ X^3~ 0s ' E]kΏG :D,b   (n=ٷ3sSI [؃5]V, |ۮPmkHV!XVd6Qb   T~_]mX5r^?Zvt=m/o\բ3]eG XXX<`ĂĂ~DNyG   Ʀ|ҝD>!$$Xku-C,H,H,zte9GM"$$G?Ob  xpLٳzjy . x]HE})53q2[E^­e(IɘS*2ű- #$$7I3џj n)5]r+B, XXX4F[VElFĢKrO\kƿ9X{ WKW,abZU`v9Hg/bAbAb'X->Ŕ9n][ւ$-k/Sei~.+ +Ы*; Rg:ڽ(%rKXVNdw{O)Q,{](Lf`ػorNo{x㟪ˁz/_s|nYo>49)/!χ~&/ _kb{K/7 ^IWaeeLsj{AL->s.꺾:WI,4eRߚ& #od6ZK%r|P,H,H,ydJM/lbؼ v1a2N=E*a/3/$>(( ݒ?}unŎl+]՞vwӨ,q6SgCŽgT3jy br/UG,R3X!(V^6n a$g/O֜;^xn0)po>/O |O,H,H,n{>[I#r-ju/B&/N2o^,L7퓭Va~8OMB H񃪥JQT=mliGMc홋I$'i2ƛ&fnΕf7T 1pEagYzQstqcs슉re^]}S em7yYo;3PTNS3v<eKL< X,v:+W ^^tArH,.դsif1-{^+iy$lv)%V1y$U5p^%udC2V,>+lYr9Mhf1/>Kܔ;ѡ  `k.x$c{,:bB͈D&%=tL(]~X^萵({X6?vG;E{ǼL?f`4ĢlB'l?%W{7vOHE=ZfXG~i ;6>5S9U]GRb8za{%OUs씩V,vP*gD,%ŝcY 뮇kwIxbMu'Sj=V MH.dcް"b1-nG&zŶIe;b";{`^mjO FL,fNL&*FXª9 5|bMbNXosPE_Ŵr/e S,E|S,/R\,\?~~3~ )=N7֢b1&@,JagrrFuکŻ":+̮>Ѫz:|bAbAbqD6ogĢCb__>*v\,{fxJMFJ,T]X lJRxtxtLEt6_,'1>٘: R??lѡʧ|wb%b^{]3+ Hf 1X1G{,wUΈXu>7$Zjm":8K,?u E,H,H,ܕ?!8b'8K,{#b1&7"8lX'&x;d+X4$B[;k:Yx׵'V9#b"8ay؇q&Ż}~^Ia  (^s*1gϪsĞo^YRbQ(Ɋqϼ)jI$iu1[ g;=YKw3dci; XDa gE{O f3z첤LnOXWNR*o:Q8teEWݴoe %:l"*~}[Ne2;;οXXXHq(&rM5꿆iɦbo-Uݷ/J)J L6 g\yJV:%ԵodU^IJȼnv )8VuR\e)-4t A\u'\#3*KjÕiQSJ3 cbslfQkͫ ˿: 7ۏ0ҵ1oWBvC+qf~kS(jey='X ,bU]'\b;mnOWfC!{ 0Zb|?INITۗswd g{I~+gL,zWcٿ[ܷ݉KIYM!bXtھzd!  Ll7ە]#Z[WX;xgifaDЯZ/rѷ7a홟x{+ѿ7`oFV&\L~xWnn=Ӌ^u7J yxCŕbq/; XXX4vBY`łĂ⧱'ݹg+bY"#,$$?ghm`łĂ'6y_?:%+z X,H,H,   łĂ`` X,H,H,   łĂ`` X,H,H,   łĂ`` X,H,H,   łĂWq/˵bq _9   ~_   ş.W?.qbL9E}~J4y   ū wsl+MTH_9   #E9f1'rstiZP,H,H,řfQ./{42SB[m6 tA9>UX}DVGd2I4Bх=gΏ;3Q3VԺYcLP(겁F,0bB\dqx4p -f4~> 0>S( l` XP9–,wWs|.}`VPM?:b331  B]BF,P`Ŗo9!-XxT6 0A XP(F,0bBـGF8n~h,@W `1G@P(e X`ĢЦ|+ϼZ=yxq;= @' g(8` XKX`Q)xq<%m%h ~mA{S,L;+pܑޡ/mTW_ _Uu -Z\VX4>-U 6`a'B0_BW9e^ұG,0b {  :i-I,4Y"q:\`dVXF:B[鴲}:1p|&ֳt`$?-^:Bw _:'"8WA wɿ0 )>,޸l R-HwXUY(~ܡPR@| 3-WGމbO,[zSZx#b#UHU Xg\c&hi-IT`2$5g6 geEB(;`B,Vu2:P{ve 4Q֧fqdviY"x; maƦ,FY: MW0aQhf5)?FKU)J<,0b ;5CqlT` |Ƈ 5]Fc0|q|PtGS';'3HD&zIUP:NxS^kڗ\FjdGfwϠz/8fJ" O-Pɪ |`PQ`a_Pn0Vq< :Wȸ\nVP1I0e=SM4L <:X\rnn7Cޙp3(ˤ9Y9 &+g8Ճ``\J4wa k` D/%PX'K|J &hGP\fpĿ)Xqa}tчz5̀b әT6bcAza:;$q'4F.RR" JX vBΑ'%z­q-R @x\PR.X,o)4ΐzDAa  r :/P9, !BTa_d/ k`aɒcs .{馾Gb6O&9zZ W?+oFjmN 3|&sQg  \NEüxNI p[QPǯ_OC̤ZsGuZ azvUڊ(a|0.bdEuԅ=OվoP ^XeB%`Ay~C]Du#N5sTM`2N;iʩ>[,,l * :?HoSl"a! $+$hO @J/%x R/; <d23;H?3X!Q1RF 2p q![\( ,r0;z'nLsJIZ_^7!CBjɪи,aD^+{v'Ӎ".~X Ro,b$4y}@|˗"ԴHX,k,6^뗧B5BiQ:3ZD`!]bŶ ,(QR9@ۗ†P4}Xqc , MpA5̴g&V[~`Qw+k/h#1v P /-  V~`:'X pWKFwrQDmsOt.=GR{ןs`!#o]hWOh!kg96mkZ ,:H2|`Xu4T/X,XOd& Cv %JT,)? lIQJOQ"QXߐ,zӎTe OȢ'ZZ /X'4`"*bA̜4xX4 QA 뤩Rܝ0LpM,ʼjS@4) Zqߠn[L~‰QvLB{c~#ÊO U8;wk:X< v˘HB:bL8'3H0\/4?XHwYT2B% ȋOC#yMH]h;I+AB CzHC2kX.zEI"g*+# P In>Ȥ?l=t"fe:.Ƣ0`t/mzhޮQtF!, %iEz;6Y8*,dA۠H&1V@рZBk'X|^4,v8*0[ΐ|"h`2 z{qf ,BCFr*PDIP/P4sJP7w 'XÀE+$ !m= +,XX%K bDEx!u@~`1g|;B"X;' >-}#w*55$pױG1' bro{>. '}z{1IF?lݹ:H~x<&ظF`yB[&K+ 0Aϴġ9 eYdIskA i"/'NfN.<J(Xԅ!Cb QIF808ߐ,%]e%MzR-T3tKH P '|D$VQHAW}LG ]f [ݝ9X+'@ DsFu9`T9TcJ+g[  뀼?\+.=w}Z-Q÷} 6>z7l<ӎ , #ml w5޲#7>~>h~% x ]$.9jlC;BB"v& Z>EM*8.*Q  䱧C9*՘H]r8V{ -du5E@w!Dh51d163X03 Y5 P \`@*c6 K)L~`QJ{Eâ/hnV@ה&w`q^9ˠyfIMxA>^Cd nĽ K'w"X9?˟Cbû˻}5?\*$+zH+O:jY.޾:}z<ٸ2BJ( XY*>b@z8a:nP$`! Acvw?CZX1')E3xrf~0qũ0]L"A7uE4d`T`QiP pIHgD%9 +ێZzub?`N: v:;sM 0v iϗX{.),1~swdp'wBk]kw$e D;f6D% $D"~ suVZqe, ?L1o=d8~ TB.g-Nr6E廙:;\ybZ]Pu/05 P2}ƹh˨0޶<0\vLί!80-GpȐ4K z[r ^ IDAT{)7Whg7/0|PDL]?/lrjϐ,6drBۜjiE1PʙG^ Pv-b$Jрk[oWzK7܏*(Q6F-3*@?l 2s]|`"*bqd2%۴iK_s :޽qf@s J ` .*K\ 4j% i>70}%k$ mw\YiD}LM?׿?g|43HnjϼPߦ8pQWY$%L,XP3b7E]3W؟8 k> Մ &cw=.Iq-toD; *T,fBA%j?= G\Ӊ A7l ۅZޅ[~m,XPCo>>'wr_* vo Vbv_F *T, vbA,XPb *T, vbA,XPb *T, vbA,XPb *T, vbA,XPb *T, vbA,XPb *T, vbA,XPb *T, vbA,XP_ Ԃ2}/|'Rݑt66 T,XV1͉ }'4 5~E#ţ T,X/L~d&wDBdu"37jr`h *,`HN׏\d>ǃżLhGG,XPh=FHbW`h? }`Ex[H2tjBo7޲ޯkxPf[!E6 gl˹.ztPJΣ5~m,XPhe;!7*ck#WFD^U*xl]?KFRD70wL T>lLIS(}o,9tp:XgHYRJ':cFoA 3V𑲡QXrrUo ?[;2;=q^Eܿ~}Z,Ux>Eהd 95F b2,*~سnWF:42q*O:ՃG$):.SL,LUwH?l}9HH[׌Վ7le zW"Xt$0z=uORDD\sXޞ[w{ jPڲg癛3d]yW.>,GFQ`۔zPԆO >&1(j@9,XPhaMr]o=V`1*zL2H5#SjG@]K&7N*f=RRv=xުHAVƉh\+{/]IidԵP/tЋ|REoo%XŌK$Ed,B3Ku}ƑQw=:HUǐ3a=nFG9HR;jNF[ *T,npt@WԯoN=_G#~9Ts;ܢi7b&-zg+`"zX$SrKɕaFDϸG U'CUu -YV_z),ܾ#OH,7ʼnLmTΐ7Eh˟ܨ;\O+پJşAh`AłMIu#UlܭN54ű>kW_]-E6yD0XK.bqzBL\o"x=A],F"K?dMo<IKHp?!#v~|u!Uo `) z0/s(zt%'ckkJcyrKEJ,$xxC-@bi_+bUbƃu^ ?fgvٝe{HK0;ݿn]%^(b X?jZ=bqlbjF,RW$Fs3H{\;~bsbiM,MYܒ4(]|M,FX  g lA, H,(:RU-a-,dUbd  X‡{͙}M,VbY"-!2 SŴ*t^i@,&I&'ADxWj;5@u*!$xĢBC)EcFjpmVՍ#:؈$9a w*5Xt2bz,c"FPi-Jkt)3oؿ"UhB,1,"i=QBe+͗IiZ3owH,q%R>^qO,J|5Cn{t߬;}:X)e ȩyd@I"(@ /XK* hH+'ad}sz뉰(;RN%RU+~$Rk(4߅wtXu2bpz,c=ПꟶEȈi:h®7SlXB&׌X/E)YcjƊk#ȈF< 'Hq=ˊ' Ṟ^:koŊr N'9n2^uϣ6ͅeĥN͑U."sVFb@ K,vgc:kfIh(N7И?\T(;RYっ5N,U\䀸u(&*DԒ~§C,c v6M %{;`voif){ko Y*Q -;Ļ[^;2\yW{yL,A|irӤܒ%PJ1aaI%ص^s}}kjAĂDRSq;P (| 9^azӟG7y?gB?wrkrɇǭ0۪NF @z,D8\(QrQ1LsrԨpic_f"^ _+ _Gv*R k>|+@ Kyxn! Pf?F)FAhHn8 أC,cA:@ D=Nf }hO3sZN40m |žV = EmрX=bRVNiEﮑRz8zb0뗏]KW jk" u"²E=M-D~oV%7Ixr7ݮ=7i 0fT%wC;TeDSwt9dT=M,c ,SL?ڶm~yWgǰKdye8^S70q\Y/[V'VyּelRiaw8>%K{R[ON~ Jk\Ñ1y. =ͻ K^iF(utT-7ۮRծKbyy&:u_묮8lm7{~[?$svZn,1)sq˝\y$MZf1z^5vai}ߙq&Qsb!b:O;lŚJ&6.EV8=NmmYT+^YB $jᐐ`RarcO!)Ը,~^VKx/)k\hkA9n5|~3]#qV;!kRWvd~Sm}DSt>wtl ?8%{<0,fqVcf X  7 '{n/9.)TWT{& nɶ;d-W nFmba2&caĈƅӱ"|'s 1VW[ÿ/8/lۀ"Kq<c uLD?衋*̕ .q^ƃ@amV/}'8@z Sxi|-/9xB1E Kd^ B鏢ըգg^P h!kF]QCp=*U 9kءԂ~Ll%Nx2#ӻ,rgߍ.s_୦1l̬۷4X9yZ _fDhAC>q,m 3x'p1b2X7.uB4RB/X(D+ xX}hO "|J8v:gpͷ Qu 9$Lcy"u:T:w Gw  g"E# αbJ&02Y"y~gI/ܓ1By:n=F )ei4P \{w~L:Nҽ;R["Lf-_Os; .NܷoKabѦ!)Sq@[ =DPY+Sa=#ȗ3[zIoG,r F,;rOvy˝N"ar#ʒ8 &~h.koJ,\X#&xq"ԒsnAb1I3~gq?k{DJ{A9&I9iݶIל3ѵɅz@ Ic:)1w 0ϐL†J1b2X.|ֿ: v( nX<T|5jM6Wb "_89 Ep{i&;|1`O$tScߵڦh D(7^`|/擧ڰTbG}N7!U@ q-lK - 7ؗ\VjEq7F3kBԸ!< GOHMnʣUtYKfL5Uyӟ'ID"`9MQXbhnw&p?9%O+&r9~mP+t!b"g>@<V)?rr!AL,B-됺#eS|V~Ok&yenLi2x#b!GH6'!3{)F+l"P-}zDx,*qజ^Wͷ_t5X8u Q~eb[|4xV͈0d,u5!FxH V)tymYR> TړvI`t4h:"$Y!F]7AmHz".rBR#- (#ѱbz$Дm8G_mPNS#g͵UX̱%!K>̶yL8Fk^Ⱥ#-|*w1g"h}0ƙIcZT!|;XZ!$ }vEAY>.k>ʒtg̥ԨgƟV.,N/h['!m/ (TĹ~6K}NDqeŶ,qgzߩMXx~EA,ݻ@/ZabA7I=w>Σ 唼 no !%iv~:Xl.^OVbKLbqvj}|QW1sZhj+CD V\A*a #&caXyGQH +[=ZYяXM^!:-0݇^=4ݮ)٨ds=I׬D( S'%am7~ኃ@QFc­UKC,,weт'-.(  Ҝ{hŸR# ޭ. F(jny?B⌕;|n6AСA"C,rijvpYZ{haFc/E%p'd% ^[}>)0qLA,z_9_ͶgAXlJyg̊jAvp3bd, 0 #o^|ٻ4.+vrbUjM*Mo%>a目uTf=kuꋀK3E*Mĥ #M(%]"a??Z p_37Ą`. [J\PؤlqfD& Ym\*7iʗvzuw2C,Es[v*'Odi--H.>%+FӘ[9RI'R %jˉš_ǯQB3hЇuaPbVxF nl*2wj,bcDKb?h('lAr}Pnr?xM77x`=#*Ȓb$U{+`-=]jn 6x,@@u_o6L NC ُ{E< ,*QsmBq B9Įp - m&ˌ::vⷨ'U/@CbA]G@2g({0b7]5Q`ON?(O& ;;]jᡳguoF2Ğ칍n# f3Zai%/ggwO'["Œ U+ nK,F+zX{#MK,6K!&} $[ 5]'+{y稳_։ O|EQW?X=G[ydYͺ\)%c^KWU^#XdI-ejn b :iH&|iOu "+PQ1}^!׵lˢPwo1^80QŮntpag}2⪱!FnԕrW*×9%j8!vg/$}.B,v&@TW.\pARZ 38[*}Ly,v׾Ɓ;,Ȭ }+3TZ Z ]|j6"tb׵/t9nM,F+7<f1y^"}ȣFQxgz;/ˋ՛8|sމoMkcC;oVqF{r+1v9tz<XP4P <@,c1 0|łl^bujF!,+ G؆(9aN<6>{2BJp\_2EA{;r┇߃2djE,Tj hXV~y~?LIdΤhnyU\EB (k`a|8q*3'b|uc=q 7c %FL%X:]ZXv 8X}6Ðv@X77!$$&c)-^uqo<_Q/ESnž#rtXXcToh{,]c;cM%xfx,Xk?0ws;2s+*~l7cȮelsv32w~\Z?WӞF$j9ǒESp_N>^6Ur}LWGh.3A3 J/iEwlbԾ8~"hiĢy ^0ד/ʼ>9'3{ͯuS҅5fXBQNjV_E =X ȯ}vǺmU p1mmomLnb4?o 6C:Ăi{$[;M,ehƤ( -H,X$[k IJҿ(I?k w5No<5k(S_9eڸXd\FNyf )(2ԪZáN:iv@b$}1IX|ɏτZ|SCO8O9}uxUŢ׷^pi\oL,2D+zb" E#XFJ/k/G!n0 T $H,`M0rba.$}vq6bqHK6~D,ֵ ^]XQc{ۦjb$kÓ#'aX @bcf'.C HAOdx ِbHx13OC, Le (xdb°ZETc~tyCiJ gf)k BKG"%XFo>[B,b2X8`#:bqhbS 'ŏthOv c mnK|lO{ >XPhWE  4O>L n"Kgn?Eߙ.Yf-x5:J7ݎ4_BymEa2X@h'փn:¦ɯt㍿ڜV+[WJxw=X`)ܯo0.v!-a ;1v1 g0J$d㻎 G&\` Hs406XDt}a~ m[B,KgQwE$#=[wEg4k{pq4іv4X.T JFl .{7jE, Onjii鈅Xhi)D4jo,>O)O膯l,A&zԏw -.:6E&s,EfwE$J#^sA`)QVUsueR]UjM@4hS9;" a)@Yݡ]lGVL"EX0CY1ş XxZ)^xEɚ2RO-!WdrKajsE ;%=hUO IDAT"m5)|ie~Ό ,lUB 5={]?;{hiiyBG,tBKm}7,^yngKs / ָǾx%%XDE6!R`Pn{Koob93h\3_`=8$CX p5sթug!zrR\С,QB79ƍM[Gi#S g$(*FDzB~f y~W:"V](^ĢN4C얐s-=14Im@Cȓ20H*^8Ν%!AP|c]A/,,pe[`!z5_u :AZ/ѱ766v8?%JuUhB#!(q`M֜f/Zy,3O\|XR4|0,xZV4:I`Y`,VLp"i~pEx 91AH?r>WjCZ<y$%WdTG,:b#ZZL?9_`Qe/}o*,v _LC97]!Zi6~盃 W̪"N[98##f16g w O }躹,1[dDګ,Qud:Ͱ9v>Ї<Ŕ`xf|()hkaDlW E$8ş,tirE{EvxOcU4!{<}$DϟQ,ߍrK.)3lZŚXhii] ,tBG,.|>߯ ǓumIS׵@ǡ08'-1K,.SS--Xr9Ez "67IUɹ$7=M Q_,wPEQ-/Pnz47`!(U.,S"O}w`XLJ_Svc6[g)`SD`f}MPu [ KjPIreM> \naS|u. [EU`qhX LPw,, rR]%o`=G@`XW 8;tOI2L8N s1''BL@1QЂKSRQT=:T)_m4{Hfٙ]᝙֍u^,w hiNBFj?bQ0m >qbg,c8ap[;j*Ű' 8T?gXE*-5vE"2& d,-oU5B{UvHpYRmD, 40 ϩbΉ3֤zX5K(8BȐ8[ܡg/ڍ X&vkrb!H|X BqC,rMfaةFĢu}g*ԥ%; F\$gDjdN,45߯ gk)44n7c2It=4ay<~)if ^q(wXE+fb!t;!=dլ}Je"7YHI]E[ui#$MDXlՇb8qaU[tU .sWƖ!"#/zb8ptlyh9"X(L,[,S8YLQiU ~)|DDVˁ|mش"6Pl eXlFG d,!MU]ÎTNǪVJ<2XZ-vё)%"𶳌PѝɬU>k;/, K.rR)Xhi~gچjrɖ^}bzHQv;)S/yǐ~Z5(Ob~ώT8rKu ]o4K,@kCɨ~QMM`nx%2ju9zC܉&xc^b2\d"DAV*UbFԮqŢIeyQXA,@kB6MiJ( 澅XsWDL`V#kK! d,vEɄ/­$i9i^Wk$cq-^!kt@hB8k\ d,mE^Jf=pXkW,$ZyyfV d,Z{60wSLVRwoÏ7-oZ: ~7/@ -6x(+b24-X c@b24-X ckDdsWHRsodC|m d,pi@bZ"X cK+2n|G+RE8kk% d,UuB&ꔬ(b#d % d,   @ \ XuT"RnSpl^JK, ^\ŢjH, xY,@WB,$'qo@G}X"sõz\߷!:£Cww=Ml ?O: ЂZ6/bD!;lWz7&~'9kB[!)t:'Ϭn2In]6gdn`Kf:z ~^*X4 )nE<.M~RiɌJ Jq`eh`1QhQTO>+w%,&uI2v1<χzYlg«`\6+ ; n2Ʈ3MnAKaMG',h,h,@>%?UW Oh6ߒk哂{/JVڳ@O_SG*̓u(9Zsd I'>XH#Ik>6keLکTJYd`2Jņ!6Wleh?X_U=ECziVsI8}M0 Q2t6X~3B,^R_C|0|cuEgF}-"5 s5bQ9_Ukv=ޚƂ`1;!]r1ҩ](O:_l3X>+bwv_jŪE{6JXuXI? -exk   p5{u3+|֯)czЂ/.7;&m3w٣kQvP?y{JӫH>{,RJFƗ~,fYvuK   僲rJ*xsbő?(^-"ܲ A]C}&3sm,o,(WOa(ۭ,h,h, G~S Nn]ؕ^ =⣂ʵp,aMɞYn,o,>ٍuƃ U"'R_&lX/')5+nhm1qNZ34 cb]kzhIx.Uu`aLYQJ[4XXX{,!; f\?Q,MI~Ÿk;{Œip6L\7 d`G8Wj`AcAc#X0 QZhIXebҧf⨿?_#xk   &'7/(/Ϻ(7d3.Ek6H'M?UNi LfSKI, Ҥ{70f7CoB܄$syJZ-XXXv x; O0k鏒R`A,{uOey^P$ze'-%;kE%ivmYݝ{WM>n5U hǘ)ų6PdT83k*|5~kbnh`AcAc&X χA,SI0+[4XXX &S,hrth| T=)@bO{bdKz],ؖS'uluMa`ᒂ?jhDytC7\a +fHmw   Ж_gfGx~q:vXZk>d~ Mftmiѻد,h,h,@SCrq.[pƂ%%;44 J՛@w,h,h,@[gʋ7΃p`AcAc:XXX44p`AcAc:XXX44йw,XXX\?h,h,Wt€ƂƂ` p7 @h,h,,  ` XƂƂ @h,h,,  ` XƂƂ @h,h,,  ` XƂ`Ac`XX ]E}2ٞ3iv~i,h,,~9I='   `h`1>P㍶Rk79O?Ƃ X~m8H(;^[+JaHڼf~ṙf@`ѝS?[/*{E#@㫞i 6balg/{gIJr_hmV JTK)O*jÃ+rb7$(77M/nm=˹!·fg~׈(m @bCx$!3'~-PU=}7jjw g1PvUXMPdx՘?i4MEٸ㣺zr-nu牠ou˿LͥYYLёJbv+!;%f6R"b18g  @b3EΐXL+7Ebbn}$pdz/g{a,@UccttNvO ۇqi KUG0yD)wb1)/X5Ţ_́5X b3.KDUEfrOR,?ە', mxa2H#q.a DsD~q. ۸Qeן$=̏t?ω&D#֨7b <~%S,¹\r9e pqBurURLbqlREP(z Gœi im IDAT$̣5R(Hktg˪҈AREEBJ9!Jxbqr#N[E $@,<_G A 0EXGe\RdEB"?grSM,^tYl񄒲{(Al\I ڤYVQZ6h8@b@,>hY&/W6əs:GYXcyJNn6,n }&i9L}tT%wbDNn8@b$obb7TLJC#,Yos~)uPOCF,^G,D .w}C#bQs)u%R}uիDN k .X<3  ׽ςX䜥 {ަoN ־/S~dXl8"}Hܸ;łei] Sg'LXܲj!H,X /{C-΀XaqkE,O( \ͣ6pGRJ귙f_񍶥PN3F>LC,֦ $H,b[|X.X ΀XzLKb+W"$Oty'hRET5I`-jbT_߱Wʮ0 .XҋE ъv]O P0"g7Ţw$aY[h OQ|"dC,X b'ũPQR #"]*su~{CLXtח( xXgwʚDy,'qΒ*d%;XbYA,X BE۲a|],kojΞnjg7|N|`w8xU~i)T+i+Q/΢KsD4y{Ӛg< hzsDŢ@4gωٿxl]{4O(shj2ƻv.efHb&Fų^"K,F)y H,Xp`c<*84+qo +J71]@,N4{D5yE(}~A/>X0jVc^O 躟Y.ŏ'uI+E"qҧRLXJtL>}.Xdz H,XpW.GMv-84^ʲK;C;&دjQUykը8BRitVo|N "S<?-xWŅmbq?o l'20XC.dX݂ѴsvŬYb 7oO .XXTxKq8˜CdB,^h;Q|=! w1]@,N{O=h=oL.tt tR岞F K .Xjφ1/#CyXá2 cGQ ' n  @bBq u$A]n !Q65P X b 0)52 ~of"˿b $@,Zc(sS[bQu?  b!*Ģj3e-f(H,XpφqܖXǘ  @bbM,FsIv[bQ6>LL X ҋŞm7P3ڑ[ba>B^1Ӹg~kCt .Xx_\Kըϧ8hK,as8z|R +@XX!bJŨ[5j*ݞX(cy_(~tpr H,X𿈅L{s h_.+f*/iFwgg1Q@,@b$|4MGAq(hBӡp$H,dbLbX@,XH,X],-! @b~E7| X e]I8*BPuE&*$0M Y;V|o,>|J#w\lefW7rŻ` {hԷo: Xh,@-B@@ 4 , Xh,@@@cX X XBc` h,4 X XXh,,,@c-X|ăM% 4]E+S `@RQtwѺn~4,X /G7?ݠgX`!{0p XBcŖQt@^km^6{Ql&ɲw~TY^-?'Ɏq4Hl67>䟴.ޣL~8Hj#7{ˋJh._f2` `q`o,l{燫|(ʣe՚v6ň}vv XBc2X^}]%/ƨAoyGq^1$nyKɎqG`#X,+"9 !aĕe|OQ}Un呩o XBco%XigbPYQ$Z|Us0h,4*4勭oV XX+;u` `~VM/~is+FUIKŠeX[ An|،VPą[v4> @^uo*7lN [kOrmXl,xP/`7FejpQqهӠ8CI?~}h"X[ $@&QU|E3nktM~"8$;5޻E<X|qrwgg86 Xh,lYuW8}k}KS^ăXq~Gq`Q[]R8;; XBc6XlH@4ػ_zY/?7q=48X ߧU嬇:kL,@cX|UG''͇gKur[۵1` `waX``BX X XBc` h,4 X X,4X` XBc` h,4   Xh,@,@c@   4 , Xh,@,@c3kw_6ht황 XBc9X0|Ѵh/&0:h,4Q٧p[9d]Aow Xh,@ط+/|}X`e;~X`v`nq=lE&nYuszw݃}W Ѱ=7}a8JɆj6b8ti]¬턓젲i&N0wF Xh,@x"NajG`6ls1[z=e|NFae@$?`%mwWk :ak(cCy A;Yc^ 1(.7wX`tt:ѰSƂv.FvW vitWE7/I'$dv;v6A:,ɹ+䒶|J(9Kp5b;v^$${˞e1EL+|@pQ\{:ȷE=L>E~~tT'AP; &y)+bgۗ[,s˰Sq7L άQ駷E5& ,@cb`ѯDᬲi%UEŭP0%SbZ6uI F*BA0;rB0g<(ZQqGuI"X` k_U[V!]{Tpʦ #}X-jJvxhd]` &lv/Y0ɯ5[_`h,4 Xź`ڋŢ_4?ݣީ62pEXb` 7v_3EtcsB0N/qn  XBcW,}`qX=_y􃝍j^ dXKxI(fO} ~ysb$X` {۞LN{:;h`N/j;OE; y\c1Y"( 3ϟ h5 XBco,Qmh;Әݍj"X&s =pQ^8 E]9a(O޽6u&`I?ɨ `hDɸ5@㢶"F@âUgǢ ZȒ'9> _hZ<&{. ,EQ{"ݙ/ rJa?~X\b?pM, ,4 N͎u1[!QܝSbW/lC cNxOon>`X@! Sg{$׎iG{œ S-X09Xh,4; '-X09Xh,4O{Z!JS;/*M@P}emTFͨVFQ$g@O-sAY6%c~^;/cb \ɯ)6xmsҮ`L1y`K+o /G^>!9+y'pu9ԙk^|R=L^!ڬl~sW+K67G\6G?o,ƍw  L KB?2iN ^LUaaXyBHntN}`):o$!\N~Md$Շ}ta?JO %ə+_̇swYt~07馭<:m\H]["wx?^rkN>9RN%1$lsђy2c{xkH2i3;wAU^CL@ku].ZːF):(iVB_>jBPtµզ:6a_Μ9 bV,9tΈ^ FN݀ Ck8ˊ6|׳e[*NGuhr"9_sKV4mz-*owk%+|sT6׀9tk\cd(z%qٴ@X w"[QX@,][oAy!`XQtcCyRK GDvG蔰K2k۶D3i  *M-\j>FM|,=kzS2Iy|#/H^ H? ⿐Y3)o%\|5=4!V1 ,߶B(ʿXFkә3gn­X8s6^&ɭe>x ":ovwdgrk@Wa1hd2Ȓ93 s{KM*x aҌ[Nt61JPT^m33tF `?v&,_ZJ:c'g:mfiHpW\*$85@9_7 {DS2.(0(񝕰86n rdRݸm$dLfVj@x.PFM``', R!dafp]DC"3 ȏۢ9[R'5QaaC1ɭǘ+ t(%k_@pn7. tz$Y2Q4,i1d\h IDAT¿(/!Bdr4.Z7zz?4Br u{[CLB] ,l:9sV,܊3g`|?>0kCX97:}/$Oߚ! cw|B9NXxman!Dx($-Z =."e> s\mo8 aqb :m8,[DC,\,*4dG+%CF^paAlwOQaH|EP9z @;F.6@``',LH˼Nsdjӣf= eP5k+{j(Ǭ`JJmr+8Olx%1ցLSL1W@DaՆ"XN=v'ǒF`W̗7^,l4Y ^|y9s̭X gb1%K|bL#*?wϧ3$Hnp;h -]퓬 %,XY[-v9l,Ni3a&'9)6k9b#LǕ? d2,o{%/( J|爰s"9 `~䟆&X^ A: gIoXt]D MoeEׄ4M TCSY7ՁE1a-u/ݵi cN1UeoBן*,ryйIMnj2.H fe(3ĕ#Үy),vyǏt@t^ 2YX3'6ib U[`чHMgΜY[p+Μ%,V6a157H^X4aCejqNɗ3BX,j.[W& c7G@H0;ס;RdGw<wYɋ%c9A߶RoVU<`&A: \Re-t7#N#,J& \Z zef*2Ȥ<衮pgݰbſG{DXxLMc&>ib U:K: }r̙[p+Μ=]X_ʅf}jӪ{+,J˄nzPL!,^+g{6alu cdry)gT,oۀ1y1$t~LX GZQjU+S 0Ӄtt%!Z?MXt JLVt a!Z 怸J x.7~oa1%Bd  ,YD{ sTQ]4|Iz=maP^Μ9s+n™ ڀEWWVɥ_ 8J?YXԈ_a]p&("BX]<{"B04Y.,j(0(ȑ?,&,X7ꮦ6@` #,,x 9V ?MX4BIxƢn𷇇! h}ƢnDE 3dP;8?[S%Х@$(sFܒ@BiiJ0Z)Ww\M?=3Lw3÷I&9t׸Y}=¼?8Yiگ@S0[ X c@(aQS]9I|obXKǧG H-,5|!y? zDzi߼{ mSX4#'|a|x'[d$1k/xZ!E}q*Uz j;kh X!,dqNcA‐y3lEO ^]řSb8t/!/J/w$,uA ,?1-H2XJXya(M(∋xe{̠l,,iߟ캵&mY Nsfdbf$ Jc}ovnUwO 37?y!i"^VFQ_(,/J.kYk*B$}@Zra1 ,zʫ*aZ@i+,j6B'ԖݠW$\i~'i-3 ,ggngHnm!k'EYvhn@Q:.2S]+[DcFHH2XJX@g:)ڒ Dd4ʩݝ8bUZy޶Ǯ(>zoY5+ ,moce7e+k}!G@'w򢰨0̗)kFryT!հ</rƃN (ʋ"F9RawU$ӽǝh X;UqF(Ŵ-)U`]:AwWp=o'ڔIڰ_w-`aoLKjǖFdtyhL+gjra8=ipF騮LmW H| 2DO4߳ κ~av ΍Q.Z z>4GIwj% oNEϲAZ",v6}!V2=jN@eXqt͢\:lit* 2!R'oNfW>gi++fLAt*{Hf1yL'gEzq*BY8Kk$V̞M{z6!V;0(Ku*aFci.΅¢|Y#kx?_6fs%QnWcEyq+rZ䟷x؇E˼n|@0/V Yw]XPQoJXo5Mv_>awWϰ(D}>}m+Y{O_`xe%1={{b)gøɸ,"vNu$3RhUܩepoo#-,׈I d,`dho[kJf[C V1‚I/ 2X0Bo_/=gZr-ťnm동ȕˣe#r VDX c@da2DX c@da2DX c@da2DX c@da2DX c@da2DX c@da2DX c@da2DX c@da2DX c@da2DX cQa@ ~!{NS4!ǔ3EHEh2_n rNiˍ!C'U)YvJ*.?Wr_B~ZNx\8! |UX c"1XyN&,ʹ^w&\QoB 4lvoo~l{jJX Q+{QBwqm i`p QX cl]X!~-!󿃰0苌 =h4-^T FN"Kǟ@m<@+"qD[q%c uD5^9w\oL `,f B{Uo"#¯D,m DZ7zE *h Ӑ._L(G*?= 8ۜB`HK{x XVȿ+ҤI{+X 9c!Mp {,v}X?_}SXhO\fb`XVagoAJ d~2E D_{EWIV3rB ,,> ,gh` ]B~M%H?fj k G7`I?Xw|-`C>&Mڿ rBXHƿu'ɾq 0<#[54b_1t4X4)Vh [L73iEH>7}r,CzX-O/ꆧßj`QqIOMOCQXصvOXX,J6=q9y jVXF. Vs5\P@6ôXaݨE{p <|c , 5N"wsnCuVߡdQtj=5&MBX ia-6s1^_̘ ByiwܼQ* mmY5Pen4qK,X;2RVo slT;R0fjDIͪFNgb4$%uh%T.XP3?C2#Y'51qy|71FH!u'X-v[`1u RGAQçŻ*y^r5RϤPܓSvwfX [3$o^@ (15 %'Ș9$m^_s{#k? )HMM8g`ߐJWE14,&{68F R7v$Ts[?G|b2-6('Q^x+ 7CKr< c)^̶֘=XآR=%Yϗ ?,\z9c7 ?[6Q<Cޖ1$BRdX~H3rBPWB,N y%vU*ȾpEbDI;]* KG8f,̟MP<XtJih8"mGG GpИޓkΝg֧X)f/H`1dSj "Ftɧ{ZmS,ԓ%qbT6XOʇ|}"3ܢ= L}+@U rVt׸ԺCX;X Bбmj[X`Xl`x$-\U Pɦ 8S鑷p'NM"qz/uJ ``8n'-eqWS-;hMbOA!>a{o4k]!fC徸 ޛlI V4B䨔bVy7ݱ7 , y ,nC B49c!;cs IDATg,I{eD~ ,&L]d#D1Q>)s1Nut?XK;*.+pz n \űP)~9/'HZAj mըS`mTs%Ƌ%hw`Q]`.$㭹" 32VqX-Ǯ, r){!\S絜ۻ,J@;|#b{͚gpESTJ >ZMgJB+Lgb="B. >NOA zVMُ# {=2C>wC#ZZ: _Mb%Ҽ+7X}@߰< A'jQyx;y0kͣ70ӄQZ~) OJϐJ =- M3Ҥ ĸ RL'T//si#I;NnZ^4ӦMC`  8`sc J` )Jr1f$^`$[աaVZaڸ]U_}'&%@j%Mv<Y!P̈M]Arvv6Sbx;?zmJ]fQ͝,^bFc#HF)XWϊX WYU~">{M `Spl)p(% ,-B' X2XL\5Q1΄"!u*qs.29LN[nm -MMҐr`??2,֐,/򐩐;PnEg2ш,H MÐG0Lpz=Mߟ4:&Vwj&N2L;ģi|Jvi fGr)v [f ٪,6Ƚ/0M>ztQߐ jQg,y*{̧M"._"Z^goRlT,M{lx!%ů??z,Y_,,~B{,6s/-?/@h&j,R 9_NnQ bηqUb,>UV͟ ҵˮ%`!Ν,II"XXYgr֯GtML'@$XgÞc/X\+jI?@\{ԓh?ݼ i\c ge&+A`>,2O nw.=a`1N Eyao9,$7 BXrUgoRlT,5Xh<+~ 'Ǐy_1XpO+DD k{ m?}@.հS^{VŴXZ*,2Y F0Gar}X 0HuXkxN Y;fbX0)/ŕ'J@8ކXXW Ev26 \wh3,65Xa|O$m%<9` PZ,zA'HbXܸJ\sG-ˊgliqo-@W?x@-bë =kFr+"XnMBcB{,v=W hebiPMcAPm)EuC@2;KvH@x4?XF5hsHN H;ZY"9i&o!xnTP`0Z ˞yy`QhXXM ,>" !lC׾AUpDo+XH@sG@l02X'ŭS4R!jw X`B VioMEz*@uE8-X(6 mڴB{,i3Kuͧ.o -,.?7by!+ p`@KɆ̟,Q!`!ϝ,0k_ %wNsPuYT XwU4} xY %[#^0{% _w;p{r, PO\X`A"48,I 2( P'#L DucPő,Q~ 5XH{;r3( `1["cmy&yjЦM{,BggnK* #lLNbk@I~] i,v̜_ŌOٝzZhXsOplNZez5gw`,XB /=Ye'Hw8DzY ~ymuuK$PU Z^p&&5btI yH4Md%,?RiC򲸻`qe"Y  Hf;X iouMDEucڇ^XB-U"vlony&yjЦM{,Bgn>MS~bfl.`opHpio/4_Á.iZII`: YΊ 5R,"$ =ca*T TB[Yw+Qb9اD0Y#+Xqu5oT ڴiXhl6:rĦ*OHS0%^0p@-/tGbT6)Fw-Z _cuo3_ lׇ?!${6? ,Y8c GεP]ɴv`Lkil$oۯ{پkF:  's4SÐ +y&UCZ*`Aj#1I,Ft<9xVf rI[NIU(Yn،8S6xƆ6r(4 υ[7vaW+ OIg0XO,- 5𰜬HK! u$吞D [R:4fs9,\9(ہP%ʂE]cK-_Z&7m$'·<{QeZA6 mھЗonzdGH8?O ,Z{U'v 1 ,p4Jf#Dw$ bmϑ,h bNgePdn_ U$k^j#W2J^}2i4rxVuvl2iSٹޭ ,s~\4`ȣX<$&[P󼖯  Š6nճ\,tz@OwE{n<?sD`ʱ\ɩB,6՘z`_έRBۨ}.b6k8fP ٦r`qq)O{mUgy֝zƸbǰhH^+%,b&z_,*%<0Vl #~lQr!jH{\7Nr$S,jͯ4*X]} gGkڑuE=oj%'RINiT''ђ BD@մ 6 vm}]!QlS,yߘƥbOJ)mϔ]uNX(1N?x8Xr~],;δg}B6Sľb؀Rpp;Ŵ_QBaw)Z\xj6n.ʪT 1"#y@ͭ(A¸bǰj7jzi6%4Ϩb!7m*󸊅Knmh7AszGeS1uE#(34r)iH}_7S՞ P@ny3w\?MM,%c>P>I*{ko7VDXZ2B>g| X ^?P]," m"|[` JadXK[g?+MuLڳZ !5';l_,ƈoS,^b]3*.ϠYs!gF,Na]Sq45ԽVp GIoIpo{5{~Ŏa1HlT/}έ yPጶI,AEwVb[|1e_Xn5? = (c+[8BH{Un)oJU[:c l*X\۵zبUӧ 9 rJl8V-7/5tva*:`b/~. (G.sT q[ժ_SÒic >./"_4N$ɏlX8Sw{bn$܇XLy8kQZZvs+*5\gC7%#Tj),Q?Xq,Xb#SSK5Z+Q&>HcűUza T,D99*^9%& BQ]Er>]@ |b@lTWpZ:b3' "U<=)cA@H@ /'' ( ]5WfR{QF@{b*\9,?nAmhX T,P1艄0Ў }p퓝?kݙ)F# T,Pc@ł/bǯXb@xT, XЎXb*XбXb*XбXb*XбXc:*tW,ZU,Xb@xhUXb*XбXb*XбXK[.Y'M,~3Md X֭[7o07M,~w\,`@[ՙz4{ B `@7 yL'h$z=oO([DޑBȽs Shqncp:LǰBˆ*XF,'pbuƹr0xb!'Wx@A,ZЍJ ^ ۽& z؜XйXb!"$d&Xxq<"$wbq10P oo!t#}WC,cbq9*WXW,,*0Bj:fIv8Xxq<N()UgCfk[-m<}rjSM>+7;iXG&v&X#M U' g\zH8|,G{GYfu?E;G;cy1A%0DĊٱD/$ԫX>էOrj.TfstcPުG\btqFk iz&8 6ف(3}LAgEK-ׄ(|u.S=;LEFnħPpIͣ]+\\zqKR*N}]淓&~ 1^ v`IqTqQui"~ Yw䬍,B\A7XYIXbEɈEbذ!en jL8n"y]"`_.`+^j1\C`?mF~;p6ݱW(ڴ؁| a4^}Mv&U^7{<@[:X%V(]m3)Po[]EǶOmotP$OZ$ÃÈgkݕΫnۘEY|5z 'E<21SV1̙ScY~6>Iފ+*|t EGZ b֞Q/ɉ:e2gjZ4ǥj,mG]Ǧ?r;ՑzN+Bw77_. zOs$T%RVp IDAT힊zLo5"3LʳЉ };E?ceF_5W :޻ ,t-/]WhkyX7YvSYF3<=l|;3_NIv)`a Z"uu`tFPm4^,0f{ k2="fkfi)`ꑖk^]9eaCљɬ0@-R5(FQi"EGnC װ4P%6bϿ,E2b=%p˴QR>zP+ ϭewY:# ^T%5k9aYls h%*,VB̊#٧aӧ-,P:Xn,,&hJqLPM頦't.zdM!5(c'u԰}7_1̰xJ:XDi=j">`r=v5¨Gۧ.o2="fH(,e'wZRuZx1S _ ^>M0^ v93%>bE2b=y 3GYÓא˗!iafE޽'YK__'*?,0M7wzguYTG&#Bu_w`Q8x(L)a, .28A/F;!IiV1lvKwPPt S\bጞ>X']$XZnGB iIƿu!cklX5qY϶e #=t‘?[7~Bn͔")AvܯsaUGI,ܥN|=vMrXbXܣ B)`# "d"j3EikXdtuD Q1ea:y̥a]Ō ,>kW Gab؁dN.h,~$, L[5V`|,X(OI0)m"cIw3bC#Xha#%Lj`5NrFOx';-EM$+́.PPP7}'HtCXt o ,y. ,Lk2ǠGK7,CHo_ŀ4 2}fO_6Kf) ,0ꑎZ[%F)71$ttcPSQa:r~{|k7-E| h_ w+xDF_6ڙXbX;?Wo#XWo?|xA3A>F; gLЩPnp²Ri>Kϣ-x&^R\$% E]d)5sy,`ۗDƁE}w 5+>G[lN k;X#˞|ЏV`w2_{9,O d?M5#X'MٰJdæBia#%LkMa` %%-'߲L)@ @=~5`QYi%'Tv$XPBXoi#°fr(%H\FJ"eFc`  ,$(6B + 47L~Vu}twUwnfW mO>Uu-x  8/nmbǁ/XLj|mGӮ+4)eI{) h.*!|fvE'Mzi}$MZ IZHiXzh;۱D^.- ,:d)NS"M`ArX0`1$ uOZE Z xV?Yt_*qB 0hWJמ,>ڳ|L{JFф2 A`Ae||l.Ʌ``{{ !b{L?O2I}YFwA6oΦa_ )klJ٪Qvְ`qLDåu`mND|e]`aێO [dͥMŐ5,Ec:ae:X0`$,47zx:("Ԉ-,;-,윚άw?-t |VO9A79{EbsǴ-"}3~/2 t 5rB6+1?d&/g_˳|>XDLp#[%2 q+M{hwg?ػxW;ĬWܜ^Yfu,ք9 ,T5`^l* {;'b?XDbfM45fL&YͥME.nn @J1@73NDgL)d9XJ`4^R# 8W zSEOthejN wG#"5yqh|STc1`X`q7X\pP]t/+ajӛFO2HY\aTt2žEf0n1 3V~dh)fv .7X/;7b&ݪ݃nE+oԑMfj,ވ7ԫ%&l,.$D.,hw5ˬerY7X3',\h;o&rJSGx<W ⼖#BMrT/Dɹ:(< zݙ)::Sb/'}ڌmYOן nZ{JcsnR7o7'eoφ a~6η5O%F }fFgw^d3qC|֟nVA ;N wԩqN0cDwl`AE%%O`,njq.f,j-ɲNJX7޳b uJwFl=<޲G2XڤMVz=ۧ4{/~}b+6'GWl{tA7X4$&D̤{bnb,AWn/Xc:s?(),}K;1pȖo93*#rgHd=+O8@p1|=k5]T0X3ZI_~:,ƨOqP#V9 sd (t%^k8X$8k$F%\k8b퀘+Fvr,$qhPi J8$Cā U'r։gƹMZ,-Ǵ~8|+}|@{ G훢X\XSZo4Si .bD Y\?ɌzUi: _h-<]gt 5m 2.C2X=:W IsJaYqi7e \s)9MFjC+ehQ>ALӁLm)\a{`fD!턊 oȯF?n <* ,j`[oj]ZNXqQ~ AW6zWퟕ,Rh]`aBh@PEà@kݾ!/3 /@_+,+ XܲBtȫo@h@P{Ѵ+Wgœޥ_(AN88XXԹQ/":,Ӛ?n(E;D yc> z ,X<{NBh@PU-psB(+yډ  [,mRmZ3tۻ4ur\?[2A_`XvE-f,   \```q,~ۋxgZmYouAAjZލu`AAA`ޖ,M    _p6_X 5w;l dЀ  2MXps]m? ZpޮeAATXP5E\m,,/,0cAAA僅bQ&X|ŏ`X@AAP9`Qw,~XXY~eAA^~EnP^.Xsm"⸆/v5ӈe]] Gq;\$8BrH@D" R@y7P^ d?VwUuwuWmr|tuNfa]@X l (  +dS(!,⻪B", Y>a!BIY2Зh:aX!o,dY9 @ǓZٿnUX Q}\_Br,-,oJ_⸪քWUoR4JX/mmFAaoJ6),jfLVXPBaa֚BUVXX!/-6B:Zw;)>ޡfPǕ%-,x^SDv)TS^[(m33ںPMf~Gf,q('$*{w qQEs;V]𹮬<'h1;>.лmvτOXpš~Faq/&,",T cW>K;"|Aaq2vzC8`nҿ'⫀ ,~rEpmYdEohI5iq-5K FX|m uDo %B9mL+Y 4hBaQNXqc g¢fAX| *)ԟm!,`6(AXZZ!ɮ^m|q%+,ڊg*6|/V;-iBceCɀ CW꽂烐OR[R3]c.a.JXbEpD<勁R5  4wEK8 B\faQR x;&h~Epj`  m. Yo̿eVn.7<#y!,ciJV<&NZwv3 Qv{=azH{W?uӤK;} ?=cxf%z>a᷵6XnxPy.T26x>cﺬgcq2j)Ʀ/`l#m \czm#;72{Tʵ1w1)r*ɸblPz(C_aY',}+/OagPm%|~/cڥ⌝vgtwP$,FyJ ذ&Z/N̩m$EόG&'ߙmq1pN<4mXT 7?yR|)4:$5!$OO[y:r޳"3/kDS(aIl4#WROAqgKFg*[W7o;rm[I( k\o4"j|'K!kaU^FLdʭ)**Pv~˼OnI;].I8M HbM~E}&w,צU;ά Xd`_ /]bOXĵ Y"4xz//Xo<%ܼזS<KRNBcQx$O{-/W/ n Y׿ TӚ72ߴ˭-fe}$'a&YVrw46,r,Kq0ھtN )ӯr4XlY&Ynw;z[q}t6gTzSiV'K/++$;@V(?RjS_H*} ]\^p/Xբ;ά Zdna͞Xj-B7',CE/B/ ,w&xn<}mєfVcAk讳/ѨNΓ`&aoN;φXM|sXf[s_ijZ /: EXí`XL*dk[ҳuչ!/2I&a?q`wXLf9֠㔜9zFLgTAaAg CB~#-c^)5#g ^q] IDAT:'b|V#k2>oOhx#~2"Ox80(\hyՕ\iwyP OEjݙwLȢf Y}߄0 kaqi %a@ٓ?"4ż|#wF OA6Ŵq5-'oiO4lSea[=-B^sm\f˘iʴȠY(#+[x:#AHG"r@Zͣr3#$,Z-4o9og"%,,E;ԃ\v;l6<nE3W,*pB!4~E&4J|k"ÜKS6"%&ϗKy"id~ȽNB|.):;^e}ƾFfQmF޹Fu]qXM"?RյdG` ZU /cyrD,.Vn6QBP[$Z$H%yKOzξ/g}R$̙}oIJOUV],Ee潴vB7,c?:B;on& }əXrpܬZ#IEGDBo脨z2[s)Q&uF.otþAռ}M`9FGF"6V9)T#p;<1aǕ+yOwEj rN(bn;f_Xؓ,~7d4Yg4kȶ}^=$YѱҸ0BbO]"|\?y31e_e49iWޗ%7ӗ:/IՑ2V][**]dFdzEBn}B]aRJƮ缴Ws7ֱjv)ÌX&cbqDY#tș[@,' ɟ9Lc܌SI Eq?t7hXSbAβ'b'G 4 TE'ƻ6Xb ULh*س& 3j:, ﴞY$F95frvVBAlJإi=?W;hbb6b֬y}q4W'pebq`,0rQnQ'  f.X5јjØXP/S! ٛak(m"ScOotѐ]{J,$ɧ\lҺ b1ɮa1sFwBĢ]QyZPPnŻxX4ԟX{;M?{T eBai׌'i!:~܄VT,βjHCUJɾ _sbw\b1m78)_3)9Ա:#klCE|^ 劅{3H,5O$3{Cf.{?&'xCb1Gj{"K2S~uw E岘SL4w!zbQ(@mbagBPR,VS,tv`'+#U,\(, zCZڡjk鶻{1a,epBlRvfW$9opTZM&3Ń$9bq6/(^2{oN5=#=}f|Ģr|?$漴'  f.XxkdRpG,BoRӛ3c+ﱨN51JƎ?9"'bqH?|I,L$]+*gB~ZBĢ_Qy΄W+'"4p֜Xb G"QZw(&QvNiWBn*Xłnz)bVXbq( Yk࣡Tfa-Ԃ{.)58!Q8F)dX >J̓ymp6XXXUbގ텲oG# y9 E-xhR v Kϋ-<I+h\ >J9=u;g'׻]gbυIp/,XDFC„D,Hjѽ-]`5'ܰLNW6B:,h`Pu*,BNɣmt4鳐rac 4°CX,4 qE+ܼKh`N{Td3e!ߦf"g$`-Xp6A UȰB4:GnPЇnّP 'TEp.=ʂN]f(kf4賰J-H uuS`A"2 +tZp PNE6kv)i΄Oȍ,&ΊȂo͂d~haS 7pz CC +lZA ^+H ,BfU ,A,rB,~9$oБf!2 ;Jn<1R0<7?{gۛqк!$QQE-&4"K<'lyݝF>'`,[‰*W +܂N8׿yE&ĢIo$lYDP;yY]H^PgKJ; KE6*ZasJA( :XPtW(PY<-K[E6YjT -$\+.UV!bqk+d+',ʩYٰ~Y7N%C%eᇡԚjq.ZjŇP+>VvxX q6S _+T9+̂oX`Qó,T}qV%0T^HPYq(EQ |B [+L W T [$يE< E.f!סsylyÛ_tFMxT+J{PWA(]W,\wܒE: %­Y ,j W-E;_L`SMm*UDWl1(+L'ZfM^,Pd*EK-TB w'$UVjEm;PEbqb:8fV,i(iy;Z ~R\TQ *V"m^QW(Pc%B]JP4 -y(u J-˜͇w{C$LPV֊2" z7gɢ1 n,re;z6!Pgp*L },Ab!n`]xj CYH~b\ᖯpU ]-&nb~kZrqm;}B+A(sjvIxP:Xg' 3 "poGY[( 0Jq♎VH" gh B`SE5 E;Y|=$,^e;+_nE-kXjz Avӛۭ`GG,+~},,KyZ\M>\T"6_mH)lHbv+6F+^.nhua" q S+Zx[6^O6EsubKBE,"S[b}iE,6r jЊWĽ"85kĢ,],Ygk%Wz[l/Y4"lv7PQ- S.dP ܵ"]|B[0UrEjWt5[!S߲61@-&0n!r!?\-j)BB[Ũo#0^_߰8XO^kYQ2 m&VOW)+޶r3GYU0fEK-d&JEmZ/By:<Њ WP-nPes{#fڳPZjah^d0gyMQ IY*UZ1<گX V&P4T^xE^-["~y:0R!V zAZaq<7 ,bHբv k/bs e/H|cB9EmVbW:Xᳵ[qnpqX-[0v!~ # ~{ϲ{~ʳ4SST8hZ{ۓ^ s6,veb,2{-qʨ[HvQBFS = YޥZ<bъq *om;j^9ub!Pn7,D-T -\(~r7ݡ͊xX)Vʢm?8WEY1i1rXi.ځqniqVV[Ɋ:[TqQE#GfkCtVW xPQ[TqE;0/ 8#zAQ'EaU|~ ,^>`\b1v,7| j8,*^wUbGZDmѨ^_ 8$E6E*:+gE3.hhdfgo6Qq aĶhE3/V 㙩'fZOtb0*ޠ*E'.}1ysew'_U!,BX śZ^+ZP=1oW b/"@~b }{_a!,@XYYŋ.Y]1}3h%(~Q!,@X " ~\an[Էaa!,@X|\mca!,@X BX ,i~r}Ta!,BX aa!,BX|U5@E @X a!,a!,@X BCaa@X , a@X ,  a@X ,@X@@ EbX bX G@6b]_IENDB`mkdocs-material-9.6.4/docs/assets/screenshots/navigation.png000066400000000000000000005426071475306445600243010ustar00rootroot00000000000000PNG  IHDR XlXPLTEGpLAAA?R!!!/EXR2)&Έ?XS2/^B[ ?+jL88Rj\ axa;+JBH(uŸo,Di1vY3+GEp]Ei\1-)nA壢"(FOXFA^C T.*BR⤨/rq1PC +UQXcF.2mgl1߰HwEnV1PU~0qEzl1baqXVB<0ai184+,(?xt]$h]6:$.i1dY}^Ȋڤph94rmMԅ,*pZ`R(jLZ4eE*MQ 4Z%E-tE$+UHC?4ymhZԕ,ٮ(ʊIklZ _+tUh UWo7d^HTbpE-Y?H&>`>E̋t[,芲GE(; koЈE . ӢwY+*"UyI/*"7(܃ʊ@UĚbĔx#fF.mQ 5BWij"PP#HE4-,FAՎ+Y_$X:#VEϡEa+rY #؏Ҵ,VWd">48!q- b63^]H$HIE<.iQU{ӇEIWĶ+"@`FH]tۢ$-Eh.,J"+""Vc$ѶI8,z-XĺbT(+:HD`^tbwnJ}!mQb'+xSdb9E.sxZtS!]WDb*:QJGPTE`lHEal+ b?*Iq`񆮌p]tڢ,-Jm}Y4ɮ8IwE +"2R$E,NJˢ8d"خY^S$z"TvF(/:q3jb-YNfְ"04E((Xa# .cY4yE]W|O{n&3Eaq7H|Z"vqŵCyש0eNXbr^\Ŕa`Q7,;y󊽬8}2_?bQ`]a`nN+7E߮x PFYL=i\qvvMP{ZPӇE+Μ (wVSFG ڮ\kGʭ϶"tಘ8, bg\^ :7Hâ,B {P{󊵰ڰXgPś9,jbh@Mϲ5E͂Ef#,&,6m>kE+v+v͹bohgQf1YX\*Pbӧ,&z auaYEkaX-nǺb48p4b/-#Ev"߳BX@MX\\ -eQf1IX/B (~_:^X/nouPe-5F"0y^b,~,"ʏ, v+. (w/DY3,VCiv+uWW\^ۿw~=հUݲxWfQդaX^~raO?,.:e_EXkPwE2,<TspX^}OE}YlYPAqq!-Qy 1:`.u^B^Llu $pKiu׷Pόg39IlFF?ͭSAr{j0SakThrY9H j#T9W f$ a3RqpZ el2+zJ d=YZ 5`Y(Bs۽`Q7 M"KjJ NROsŦc,P&d/YxǂŴ+6Byb,8hŦT7C & c/tB?a4BrŲ{K{9 h.pBH UF(M0=`O?,l 5-a,tF(i!T+(bЧܟIhHcf(Sɢo, B`Ѵ|fNLn`5E^{b\EZ0lC{!/ܟµlda +Y !X|y5',{{9 `,,lP- т+6*>gO<ܟB dah ?XTܰYe#+}WNf~eF, B#T)W,`aHy3TVd1`;ba*XH', ~s n%IiYhYJS# SN(`7B I X>BLPdYy"`劉ŷIBiZYijZdQjPKRivݖoX ŀJ`֊0fa-YoYƷG,< Fnei-Y,ll` M3TylU"`1%Xf] rx̫{$ EjjJj e.X4F(,fdarpĢk֩` ,dU߾_jhB ]5+4B=m?+g+z ʈ+f q#T+.Xl,`,Zf(mbT, `,`!,j{Wp5C緥E,z, g,*͊PE\0B)X;`!n".XH+^X-Pl1T^Ȃ< ]b3iBjVOXčP /XK) Y!XTo;X➭ja,ZY`dK-9[/ԽR1XXw7, ^ X^baU0ܲ03XL8wBI6IXKPc, ª4Wy5w0-,#XuBvM|E\% [/TH tĢ\h ,EKSOY|U 5`aXh)^ ݎda8 UIPX UU',;p.MYgmP`!,PE^ N,% ^imN I±d1 e==`Q,&mG,m`A|Ţ2e!o[NYLJ%PJH:q`*[I/Ԇ: L#;Ųpt;/X,`!MY緗 % u/d1dQ 8XhG,#bbëtŶ<]:eQE_abtV=b!]ݖFEC|b6e߶*,jta vzv;*aH qɢOYPEEz|2fp;]Y-umda 9^]n:`AzB*,OXJ ^mAv< [Nxv{wW@pʃŦDȂj` X` e/Ev,zv[ E,@b!,vB, ,r_\L~rv7/Ͼx󏾸8~88PNB %.ȃ=ShEv6bZ#X uEǧQhw*T?yoit\EQ(o,A!XfN8bG,t-|?_*&XDgc?93XfǷ!f ZHb-XG,jDE},_,Xʟ`Q:dѱ Y؂d@ t/҈N1bA,EO(Wc,"-Y씇,oP}5D^H4bQߔ;@?NN!fM n'!*m9X8,ʃŶ2b"q}X/5,0`:y޾m:Gm7M'ݗx/7o~NtQt,po'?(~8~}>.:8ſaw?}yM.7{8q+w.fKww')KA0cHCZ_( 9p`cI5_5Y{F],`W{/G\`n$pBc5I:BU|#.㾖[w #0brx]^,V;S­Ysg,J[Z|s,Cmo\ʭ^}Qʔ)SB  л@xaǒ|z tkhD[E bb{B79 a$P,Sl"Ge:g - @~p\lt<|-PǵaMbG'!g;w:|~MȨVbi_ӷXRXTKC^W2bYEQv[s5oF҅Yi*PL,ﮱˮSw8yspaR;h =tiViji5d1' 4] g@!njnt|XXjx,}1ڞTѧVK v,[tRnݴAS0`G9& 7v.f>_3Yt.x1&hL /Eo%(UP`aLh ʔ)SC,A9 ,dց, tPzm`.X!cf0#3 @!J. U/oQ-ą^!אW s Bg'KXڑ0XDt&E[9`!Y`[)zGB@W`!% p@RgŊ,RӍ=uPLvdA^Ckcww$'Eأ]b;q Xl~"uK_'Q!7 ,rVu[IXPl)"+M!" >H`a)|hڂ ;&"4kH#XԂ,*%Poi^/X|۔mm)lCvŻw[Za\ѼʳM &[Mg'ʔ)S`q%~t WCq؞:$=gO1*.QX FdS>\<`qӗHQ)$%LD6H8)[E1U@i0S[,Xvݐ~K ,:ٻ_+YT].  9)T]be] b?ͳVMO1o\3vOo,%G-xeZʔ)5EOy7ot> 3鶣ڮX܈̱' Q t)-HKX UMҟQL\MD4 ,ơ~ ]`a xTBDo"MKehl0XAh zPrs6|Of7vo MRYUOT"eʔGrK Hn )u}rY7w'O( J ] M(pB=ӎ+꼂^(GE412eҌWnJ`1A",݃d4SE[[;y`)x_JU,.]c$ȯ`A*8|>:gXA3hP,҆nFʔ); c^*NAËT͖0+N, OQ,`BLE_Ey!`>&X./W J*`a]!ҳ3w X?߽#`q$,?x?KW,`+c1b,_b; `m:djgE0~4+`oND ~(eʔ )-\,x>(m4Zu! /D0D7S,"`a oXiZbvWӵEIdZ?C,ЦkY ?{`Q ^B+>o, g_,mVJ ŶB!XdrgR,Ssqh(vFrUA9-zZ|,f!WnO)Ly/ ),²;o9KSgТX$@ʞL2ukR'+Wxzz_oX|`!կn#I4dر4 IDATR@ x7@zT,B !5/M"*bGQoêbzvҏp7;!X ^-͟wx#+``:,nEEGEEf8JC)շ2YPB,`1*0-廱sXEN/ r D?L,) ( >ҕ[NRM 4}Ȋņ#FtQOж%۶3) zO5X7n X8XH\3HG"$!|^gR'O`a:8 ĖoW,If5  .Ƞ>l2x@ǹ}L eӮ'?*~.6R= P`: *dIdss$12"9g\z۶8@Eg:͢6 <2dA ^/ǝVxiK"A֥^l=`+. i1/KJ,[A$Ey?X9ٍTmNh~NbaYX 14ŢBGpGyFw!ao'~ڡ^H)x#i`SZ/CMvI>? ,%i1eao%=a`<{TRhQmF4)O,H/)| {^f(vy`A3{kA 5mFIb v⃼CZ5+%d,5YKhzDXAZm̓"Zd`qe倅v3.$ůCW,^ mEC^!XdzoX1 )6X,WXv ϟ}:&O,KA&pd`+ UeAwsB#``QWtDe5Fج-iUj>FOS$fGka?Xe` 'x0,ju_?}mdal`,6S(T,6jz2ÃEͣyÚ R fz`qE_ ܐ ޠyIw`%5X  vXV/_Ur`:$ DpIkƁS'Z |* *-a"$XaҧdhZ=Zm¹,*ۃ*BeYh` S(T,$@h `XT9eBgMtɒE%0**W(]m$&h x0~'O/Թ &O WdE{Ђb ZXH'F m6Eb=4X"X<2X`6F`l ŷPR`l   f݂&%s$";M:T,fk-W:x/lzVݷ(#8Ou0ŭe};VŸmL8oH,Wlݤ.^Jӧ|Gr%u)y`2\oƣEXl.,`'6ȘBb&:X䅻)jɵePce WZ@,+U?!$0t tȪqN#̌8vw_ =3%XE|~U,,n֨BxJ;-T,~~P;T,Wؙ`,iZNzL` X%Q,6/QH51X\ɿl]LB5酔(JhA _ U]Xe6ؾ,(V,#P`/ LCұ^]ɐ(3Ɓxe?_Dzv)bSĚSFҚctR*bnY֠LTݹvEpl%Y(LPӇeݮA/*O,5:gkPXdɢSQ@RrV΀,T ţ}(P XĺnnŊEŇro4ʳQ,#``H24*|E$t8!*~'Im Lj+տBTD$漙69ZmB%dO:YLWKxIz,]^jٝئPnHD<) <Y'o|w.zf[^9`?' υz`c,dv,d)ԇwqB 'Հ;L;i9?sɴf y zɲ.I2lX FuNsF  k4 n{~baR,2 'KNpH28\.HlY]A&ebq``QZbxPKDE.3[f X9_Db ,Ͻuہ6ΒE;qmK;!"DI`oTY ecOڹ\&SzW6>2˜ X<~|PPgl^ۺ8(d\@BD/Cul"`rA $+Eѕ%b),|܏s?qeys-s%tyKQYdm#ہXmB"bn_ ّ܆bQ= ִ\^rZ^5}("񅕱ɈsePmexb!߂uu9$}Qb!q{?w;~fHyWե fEV,F,¾ۿo_xQRkϚQZPG߱y{L"6 T-"H.D z-kw*zW:_fe}!bQ*JaIO5b\,Ņ\~iBX䫅JW?"5-W[ >x/ w6uQNF` %^5b1?(pnCgV(7֖l+vRϲCg`_?v]+HZ,"P>9.-.e3TݶߤB!XDfJ~F3Eӭ5b͏WFErRz\ ,@;@ܮwCGIY) q׆E-!-IhǗnR,qH,_6bqarĂbZ$+Cb! 'x]ü*W)K NY:n!OWnB )Y|tǛtK7o$; b",^ )jyfa̋2;}UHmc ?p*41K*B,1bs?qH\ k#^{˙EXe&I,W W/͒X^bE~boc!,ne?b7+bh:b7'Z[}Q:}=y67 T:\pZ?ՂĢb ?wW] k-ށgىEX^J4r Hԛ=bbAbP%g`L˜b1b1j_XT*ڌY4^s7sX}r,lZ%U+Ŀ,rktxĢ >aH[mկWT k-;8S -VBK&7n*l"/ȢDuS1 exŔE,yEj%Q8_:yhQޫ(fa[quIjhՐb~/"j kuu $M,YG&qm%$jU*VX|ZbW8T`f=戅,g_tlMy=J vxgxqGYe%D1hWxt+ۙR)Ƒ_5Lbn3eS%$# ;),j# k^v{n-yž?zq{(y.vMk79T&^qy(ӐXCPm,fRoK#2T3X8Ehn1Db0ڼ鳽+Xd6Dux*M+.zqr8}I޾j=cYbm= bq]I,LQ("W-z.ZX1ڈ7Nv+MJ$~bQl,)T쩩0TbaSnA:cY´ޞH^Ix{&x;X!9PU1 E{'"a?җ4+/ZwǺuY#ĢNT]U6xLR,qªPe>Xحζޞ [obBl9 8/bq<,HzSvt+OnGJ6.z7v *M[o.v4Ew-{ebAbcIW5LXXX8DdxH,>VbyR,ŵ(B}KNtz['ׂJR,>WbDu%Ab@,'A#0$#$'   łĂbAbAbpbbbHb13bAbprX̐XP 8XXXX,H,G={r|{-.-oXI,V7Z<+@$?1ZEb'Xغ,b#iDNV,ooZ X,ޑj!Nj`!'ɏKBbJ,Õ[R-_9G/BjŭT&3ů?l>Z[n!B ==ސVts_S  )ϥYl.(X%jbasEzs>3iZ.}iTl,Yќ\P, ds6m4.tXmNN.ln*bn.Ml[4ӺzrZiV)ŢV˦Ei\@[4+j5ŢXl[d㢵/\*jbQP,z-uP, Eȷμ\*Ţir~tV, ERh=nY((*0@Xr\FYxb'wVE>+gEȆŁ<ӭa3iX]S,`Q,m>K`uvȋE,^x&-|X<8 eX{Yb׶xc ߰ȊE+X.:E,0ҰP, 0txV, D)rEqFX )HBP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, cق IDAT<, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, BP, <, >P;|VybXg{T*G]u>J{6cDݣW\>IO냞p? B2s,vwuzyT:1|XL+eֆٻrn^'~ߞEW+Sk`Ewy7|luX| BP,\ȿ|sp~7:tOzţCTvrVa^5_{1N/r׳xw{5{_|8Ínt,GFÏͽ5+ׯ_]e){ȻK6{?" po\[]Ne?7^X~c? bX?nR=,*Ղ cbϟ e0_itwZ4,^8fzwq=Nf|6/ݵe1N?gU{\8>O/c\XSh(!@(FD Q \L`[@yOp7]'@ T._|Xn~:Թ;{2pBF,d,YE %2(Q!fZ;*ݙnU@u:Ɠ8gՃE~AtǨGQDX(D*IhQ"h`c+<_Źb׌b p&B)RHpdlnjE[b5{$a{sxC#T&W"$F~}(IQ XȈXE=Y$DR,28 "ne'Kӫ^`i52HXzTD g */BHB֕B} l#٭PaP d(I`!E?,4Œ׽#ܱZ](ͻZ7 . XN,(Xp*  `eH , ?PYlA 548Xxl,@^Lܲ] Xԛei6mN*P`X97֎.aV8m҂hA B{J#S4C/xI V3ctbaLީ ,Hr?`n7k 3_ wVJ؂FZ:+c&O: ӓPEd-} [tބ*fNU4ʷ   _âO1tȰ6'XȈXȌ>J\ !Jʾ?~a`( 3xݓad%($Џi1 QY@,N@ӽ@ZHg݈w_B0&ܩ.//ahx&~ڤ,$XH"" l5{ .aѥv$oWXk7H X̔#!yF.&[4Tl}W} `!#2baeX!Z'vj>cbWnD *CuE7J3$ Ċ Ƥ  τ;|Mp@Y:]n`QD.]\B2,mJAN|&%B)R@bdk4C FH#[r)*6O[P rX%I},YiI3{ 1}v ,dBF, $Upyh, y%Z6XwYvTiru&`E}R@ fܬ)RZP" k#(N\3φgPV<>ux{e$H$W+1voW-'t iڦUmu  k|J&[cu6|7UZ+{ L?f?d\(/4X˝szitt񵨅Tǿ|q)R?Xm,72 hy+zp`koԁLVEY6hw@'yMF),dBF, "BQB*0))dTI? b1.k`C%xcoD"J),,Fdɣ(r4M4hkiCY)SZ&0VA4xbc L, ;RC8>+HۻٷXZ7A$wb.>_WY0;pz_c~>lw"> }3LZ+\F_ĸԟ\"EJɢ 0_Z20N[XgT<p/t0 \ Th٨,dBF, "Os7%D0؄$A3kuE zEji1X"&y` ϒY и!Z㜌a-UӵqS j~\RƮ⏟~52g,ptԽέvWWTKbѷm|z YqNTqg5 ZJƇ.։`a}5hRH/"Ab}ҧ`OHgX$!]b$KsXJP/~(`!#2ba #_BI2 Eyoi#(ǽ"3Ta?J qo5m̤_3>=׿ %5:61K> {{kb Sw]H XTX `1d$sV0?u"O$#ky5ҟq)ޗZL߹f"6r:I9߯C [Rw޲qHGU㯘$ٳf+mlŲuN0u%ܟ7)5?R蹮UgZ_`1^y"GNJYĸp,X04=qpffF3.׵cZ~0OUWe狙:(5ow X|s0̆y~q,rbrF`Q8=Ki{f.ΏvvLs|..|2ɗ>=nv KhM~rQ.wX`cQN3AՀ_l)qVCf{ &[f:?UW pΌ>m,E]wǙzo,haG x,F:X=ַX^Q4 c=,ܣq>NN vwxxUޫgg_x.^F DͲb~3%:#킅b*p%ݜw \eATncOS?#_.q}@RytC"&V5g/X50E,!"/݅YNƶp;AҪŠU{b8A 7Q c09gwwqS c|HnӃe:[oy:9GV(Ab*[b2938',%,27jb)s׺`y,UY|,Nhr :Zs Y]a?ºU?|&XCJcϾVfQQXnV?1%B[*4's.X6 ;[JA]; 4~h{9 g^|7vw,[k/Z8I/-}bX!kOh!kXcA{.[[[9stg'. ,n[wxE˲ǵ'Hs4qQ9X@À<X@V#nW؃sqA3 V{I`aYV]0+۳L”P+y]Q"bOt້AP<  Pg7r/Te; 'k¹J-HU+ 7rKT/,fI{~<A,ీka|G"?2I9Tg34L]J%]," b d`A5XcA!C 4X/,F[[2|js&ӺD?%`q E9ւO  (Xchb#`y=xY`g_wK=CJf,&#`5 ZㅃŖroE(AXcTͺɝݱ"X($;)@ jeQo7w!w,,+J[*  x,ీ0k^CXx[6Nj]N%B*75,]j_{  x,ీ LTWtR`aZ"X$((,'mp5^8Xr`A5XcA]=: %zXPύV"[mk,y3 |K i`kpi>^-AK`A5XcAdf̀A^jK3a`AcSi_oh 9)`A'W4>5?>Xㅃ+;sΕ <X@ wma;c/7]?t(x%x\)`Jv\XXH&>JXEb@ E,  x, (AhX_mEź,VX R}QHU 5d i_h&By`̲tśm˪)΄1Xi?*)Q$ j ,ీTֱ_mqHn3e獮(h-k ߤ̜ ^#_c{~O9_zuǘO,hM~*RG<5LywX@A x, ȍJ>ռ Ig;85zN͂Z'o a`ZSvrH`QHM9e_/;/O#ޢ-{jexKL~ t 5Laʽ  9 rb]y!qs/gF_줭 J S`A. [8oVX07]U|j;!}WeoA'g^8F(X&daktǦ8p=(PzwNV,lg"R=k>@b|!SU?ԛYKxZ]lV?^,$1jQ|)fmطJ5𲊅$MnU+1ԤXh0v: ՛ [UBF*Pb͓e<"]W.{x́X @b@MMpLYN){&zo[[5ID9Jmƚ&N)oaMPWK԰wY)m}j=glS-:}nE;9WYPMҜ+]hyIvMq)H,X<ԛ6Sug~ <@b k3nb3!4 %QPbcbϒ:bFiOV,X 3nxb-o2)ȖS $H,x\[pb#L9ru,X @b')C5k\5Y~b[@WI&L|cagZSH?h(H,Xg+33(4"qWvm͎Ţ+&6/Wk39S o%|X @ba_,q_0C;J?˧553h 5p'vYK vg7F34tw7'ȋ $ (s+"_3M9tHc-ϣN_6lݣJVn#ܗ$3 -h(H,X@,s\UDKMv5xvZΠxf &߱O[('H,X yKeA0{ &b9~]6sǢ7r"F4V;mCΪOK 0wv/} Km*H,X]`VTqu>z_ԍTAp)v:4Vgga@cZ>ozgw)*αZ'/#U/gUC׺Uz{=>cE|ѷ♪iNUs|qZmJ'H /Jm+H,X*/WSD;3XT,ЊD^ *OXĒxB|m zOnZO.>b$KD1O#C<蚰U RD`Kkm ;b$;! -NaE7RDLƹQJTɿ ^/$ף 4xnoP R$T>%n:'ZxHN^k? $H,bKX8TW_EhbGI[oJbg,Z?uKU|ކ`zCF ],B: 6 5 h4XbcME?\TЦbU,j(oHnśߧS.Dggx)ɇl F}OCWU*+ B]K7+=6Ffy1RA $VXAEF9Ɠ M,2(/ވӺ$ _Txb;Dp´{9"*z)~XHOZ蘯;NM XXXl߭ 22c?8dqN#tBDX[h /QX EXn|RA $6kecpW¸P@K 96f!O\X |w€X$H,W4@42QT1>YG9#vVqFbqhK,~Sy| ]ȑ_7Fb0@٤16c^Ub!$_EODQ_,( %b P*6H,F@Ft/QnF7~ 83D(늅GBpNX],X !0G,DD7ZFY  :{ i|&n֣zU+ĺTj?ݴOHqDtX @baC,hvK)U Js/9qEǕnɕ?ǂ%zw=M}_PX@,BVY:J˩Se!dJzoS@`Xti0\fHLVwã/oZĮ+O/w"n7X RWK7o,@cAcbP'ic$[)Yn,T$#k"pޢqc_?9@m%7+?`41;,]kȨo{?Ƃ\PVe༃$M[Twx$nW)ty   pY'kws448n̗7E'   p   p   p   p   p   p   p   p   p   p   p   p   p   pd; ]䛝cE"m<|Wdw p!ƂƢ&\\n +E !x k 44fsxwͽ+7ʒ>:<̥ = S-q3r`djDZF\]}zޙ7W)p7sقűp^ז'E]Ƃ/u֢H_K"E`A1XXX=|0w`bʡ[o0 RNwfUEɇB,m̸I ՙ'z]ƂﮬcM9o|Œ̛Ȝ7/ُӅWt;{>;ޡl)re t}\=U\ėq>~F'Xk44>!Ξo dJ:'v7ꑄuӆBzZdNjf'n(X[,/7=Q{P[YKν*rx*sKikj̍5zc5FG=)7.]tHY;K~hx:2}$jHؽ=$>7xy1|~KFb.,mlHE"ch { OiwK̈́HXY1vfIփȗC?ۛqLcH\D"#`GJ"Ny}ڄ&wΤt56w !Ƃ§)yn[)2ٵXG C$j2wvM?+G|Fw_̳I[Ϛ#98>2o:{,HփŢf\gnpņsDWAr!@aUő/XkN 44>ڿ*hWI5b]x$Q9Ak80qѯe~ʵn+ 'VRVjK䎽 dh5XښqbT3^Swָ} ]ɂ$+N`AcAc_OBJ}X}gj gO?m7UѼk\$^̮IRs8oyp WE^^:ÌkOŎ; /syq="sO5Э7d*n,nT8Ӄa\8[hw-5 S"9+KJYH`AcAc)- o`QvuփŰQjF{E:OܫHi-s7(X|iw7cu`AcAc3`X֢NFxM$; If|H59jJd}#ꉵ @`,X\qV"PG}zhkN44~UϒzDѣۈ ܉y>ŬNDF;4= y[|ןrrfi߲6Qݻ2hZXTTgT4gU}\Vyt#;|Z7j6` 2I۰fG׿_}CE!,p,p,nW\€C#_kLKe0t^{MTm@#N8wj],u,| 8@XXX4kn4$^rЀ Ǣy$FΤ1 4 4hIC&gLnZXXX4)6 -,p,p,Ib/x .,p,p,    ,,p,p,    ,,p,p,    ,,p,p,    ,,p,p,    ,,p,p,    ~ls!,p,p,NĈȝtEOGhV=eC؟זiUgR<]"SF\(accQ. GRwϻ}ݘ9^osZuNwN*$3kҪv@XD'[9njwŎb  :⊈^ߧ\(fTzaS R8^Ӫs nvR`JļlV5'rw >D c%b  ah69H %%UC/,Gb|jySZ%2;]bnt?.SڱApuHjZh*Ka1.ruR:zŒd?ip~}`;VӴ02za6ێH|UC3'Tńjk7Z^Xh+5T7IbX~?軴({1L:#e1vYEϽh-8Es~Ŧsڪη8 JvZZQX88>:ԘV,sJdY&t٫SOuEٿ}?Sy bɑ!Pd;5OԺޤtlxoJF<:W~%= \v_BX R)G J)Ei4i\[5^JI]NM\95(~طI"Kwjvt!2{JU{ qҴkɘw5uX{ۓUn)_xk}aq.Uؖے6 Ct(} a!lqY19=ܢ55ʹdL7Nc4U'q4^.R74`s:$۱9L]/,}KH6w5Ɵ'yG*ٶ6_aΥʹt> ɏWU>N86zkϬ;{y}n=䵷,gHjEe`wim`qYTyo-p-øT)jUlXX?.89gxIji}j^qk==ʩKʎ7K*#{剫j7EVʑS"xێf~_NeH(;+QVbtZUK7굣J6modxYV*6ƭJe`tTNm c׷{kҪ> U¢זVUtiWKqY'x+ZRnS=_Cr!mזk:a +3?w]Os˝`iXa1Z^9g1Y1B(ެif0gVݽUЋӷ{Z!T=Gs^BF7}ȍl~{"a 88ۘY)JŸjTJՎܫS{h Q"LG-܍WBz,%e3KΈɳe9Fb7bW<^9\ C-J_sXCD(jgwyZ1ElC3x E,R 6DPXDs3=c #BF,ˆş8T,1ȃ5rc ϑddX@qcع~:Q\2/iЄiKP/O0UkAuM,* oOfq=kf\k de@ϓ1豷0s?#TW 4*r$t#zύʚx6V&U8*\X51)B}յ!G8]qb5{i~c 咣uS 6RtȽ_̷Q\_ ^ű\1'jŷc>˸0CBj5_:86&?09s EbqY} V5pL q 9Z `E󡘸Ig>k.!o/Gl,=d4DU>JdMJSoGHl$dp.)>Qh^%61{x-*Z4ߐU՗ER7| =Ѻlwji+ɃWX2ܢ ϥ(2$䅁3M. - g7i^[@WɕݲNʦ)ȿAwNm?0F V"^b#Ya$!#aNei`bAW-°U=v^O[uO9ޣ|9  [a>TS{|Xɷ]tRɩAkԵxD* Cy.%XBY!_$.[S[Z"PZ""/~ :A64'ɘ#\ i`Jb[ߝH'P2'čCG{4WjTj5#W NFH,nҾC kY8s|TѯXV[qR/VB#qQ=֩uyE/SfKĢgdhr*IG)32ĢJŠX0bF,R߅(u .a)f[xEWF}oi+E0wqrXtV\ b6d=Ezm)^Bb=^薾TiO0(Lq+B˱~wEϹ8Nx͈EcGBJK"XDr:2=4P6#lgj܄X§ =0s2ꫦh^%Qt^6wFH,n>W[޹65qCNIWB fr# p A"U&@(Jo-`ؾtwYdߑ>i r{Y )[W]`eAa $q8䎒,Ҽ`dX _gY\u6`, !̡K&>/`Q~>YfHXw&uRknI:>]'`diz=vK\uJGJNb?`|Y?f[vqBbgNCQ-X/!D.$)FUV;?,Dl%zJ:ѯDEx؍7BO`",qq4|&+fӊ}d[Wڟ ,6ka7X|訪ME?Q QɅ;W 01.OJ]PX` )[mBnW7XxbnN>@E\߮so|'!3؇O4ݎE ߱aHPU]ە`<3k?]_]cqF85A+IQq\0BYF-6ZK`Yľij@1bF#tz+,,`^g I-vbos:q}f.%xO$, N3UKrx }ix=nCLz`dۂip  Z2ɉ(Z^ ٨+:WnԯDQ,:)_!Bk`!, 17', qr̅n , (ɮI낀 'N(@m4 #θ ߱a zn+s1 3<QDM(X(O0:l5IM| RځKf= 17&/ؼ]SYmOdg, +/3TeǎxhTAq@ OC|w,BP|8!> 'FvCdx)_ 0G}]Ѿ_ȫYdEHL5!yFЛc*yYւ![N  }=J. 8 ×_JT=X\;yh.Y&QP{Ke\E,~SRCh ;";o aRXH?hbb?עd)it]Xp >蓖,>z?[ B±0!I $A(Z^ ٨;WE2&E'CXTxSkl!O͋cdWv`XxbnL^,Āw.}@~%, qfm_Oki$_eb$,PԂE F ;hIa8۸,hv,SϪ vVVHJh4~̿ce1܄ak_6ntx j,F`Yy },~GȅAoiA8 ,y]`a`nq#|w,[߳h~G}Fonfji|(zWo}ZX>귄W _zܞzE 76KX|~S25$_I\q/)lf2L042n8(*LuGB+ 'o KNUc+,#>/=!UCT&b7]>YXP eB|? u{|F~C|9jBODԶ!(BpNRo2Ϣu?BN]?+_\U.lf[|DXe߃Ųȫ{u17]FTlрc@X)ܛhf@G_gyr?މK5c.ܩԶzsX|x`*ktׅ&X?_ j%Ko"DE|8).A U3bЋC̛:UrT&ʁyۤoŮZA_vkUQt34U8`&b!4H8U. e\VXca@Qh#,[ҩ WYxB)Xd(zha'~ ¢]:Ka]K-9p,X;ONk\K<9D4sٌfh*5p1۲d),I%\ |5MX̳o,'mo^/Qa9)O¹ͨ9 8paA15sD-rd g4n`b30V׬:B?$ztno#a. y6OA˄Ev 7I=. V޺S8hoa U"¢UbU\OhG+,_vsa 4rѰN37**0AHzX{dK">Q3~ugGC[(,F1Ys.Z",QX y7= uFEJc04>]?խpV ޮSɡkݞO+?OnScnCZczș`sqNDI˲ymjp.zQ6 Ny3]C.0?E.wc 8y.{Y.,4|$ZQk&9+"쏨,DgaY> ^3!OuqfŚ,KDzcJ[4jҷy} d{ ,>dh,FbqF:7?/exEӮ$lltN[Tk_7j_rZik\U:<٣0L^k<5 ~eu˲X,-rF}N(K]<*,/e^yp9>;seowD}ӗ\/Ʋ˲+,+VDGṧIZٜ}f輆&+z^ ,rj,b1Y. &u =Sa~Z;t-um {)I_b;Y^ֽb߲czY[$,NEtX]i72dp,X8&&-_Fz'ؤl߳&:W¢U/*'|9UX\++:K mPN=Dϔ5E{?.RQZٻ֦y%#=T8[ B$0K30@J?t7ZZ%!Bpzw%=Rt %%:bgX,>XX dDbL`-^}4Wkc b"f:A黲Fx6ުTkNޜ.7]ٳsP#RWudz/ʼnExZ$g^|^qWHBxN~"GbD8g.q"RVS=gj#y;goi.J,JXvH_ӊO}^aIf9UXs-4-9of Fh zVxtrޖqi${H,nA,InJt-űL|XW,+'EXGM,wClHkE_臓7* _cjMaӄĆ޲V%@|C;Ŏ7Z1'*R4e޾mmI,N!Dh-{Hk| $of.5,INFbǝ^bt1>YY.J9mb`-YI\6ԉ&5#U5pMU9bC,r#o=y XT7i.֎` ڙϢY;UwW甆|UUx|56POE&T ~Qĸimq۱^E]':ojԆ$b_o(;GNI)ͬ{ع=eIgGĢb^hXT|/=~R3mqdlDT+rpVfxzE=i;THZ؝E~ @/􃝦>2҈ zb^K,)>5Je pV(Oo e0V<^21C,)Gf =H.n`%lpE/MH ʜXС(H3攈\>@g-"% &+BumWzfG>iF[lh ikĠkBv@? m%:"q=gڃ&BtQM-t?ߖ,^p$o/XHCzJ(J`YFA8K/o)GLkbCx )R ae֞XW&=}FjYUD\}ۉsrT0Y>7~Qw8lC~EtܲP^s@n=} / 00d"OeWf FCuxu} rF}ꈮ| yyDR'M>#XUS[;g]?Ģ6ͼ l;l8@ِ(VdJ(bɺg\-M_pAC?p`@5faI}Xx[Ɲ"{GdoXhcA,HUߧL r|;JLA^;46~ྫE22+H4=_ƞTkFs+VzuX̮b:4 4j@,Ʋ/-,5YRp@&,*+U0*҂X9)?kxk2ηowZ0L"DbG< h;X<#>:{ l7pGbEȅ"@E,zuq[:OT9iif}X_$UDUܼ}a+"4}#?!-}3X聇@邶JRec,o3xzK,x<=yXהXN5Ot .2C,Fb~a"ޮ DlwZc˃?/>B7OoFdXd:ѡǷe-rDy~I"an9 'bKZ{uşf.m=Zq8<`IFՏg$U]+U*bK2S0MwmX~t{,j$թ8~Q bRl: y*g&'G[)!$^} 3Xl&IakgB'j_-Y7C kЏ2NlX<d%IvU2@q1MŠ2`۷5kO"PMc?C-Ch]J^CI W{e/lBbh~[(5X(1T4_$+&z$6,O.!D?x%)}>EXv|eIztا߂X5⩛1|'N/h{EmH)% Fm_n흽M'R4 CnSxæMtulWa'?h ih.|;PjH:+> W5be¶[3* uL>̴oʓBe\rS`fWX6gߜ$v⤠8]-M=C9p8Sd9. *m:;E,EEL l/1o dX.b>cqdG 2})Ac t$`[_XS}G]e6虝]s%b1 (B#-woXTR: \E(oZaJmƻI>KuVІ ҚX%~ogXLkԓP`a4NzU ,Hl OBjP`6xc:tAvH ,_,Z vuBiO]"wRr- XljtnVSxVp@-E,Eg; /~f=e Hz`BC.>¥&o'/AG7WW  tʀG!$qK,2=c R XL `o{(IcX,`C n I,9&DO$eG+%1Uzܰ\D8ctPzwFx!̞2K:2Z2E./a ˁ`gLŇ4|;@`q8X"l3{Xxr[pTe P+ }Q'vюSײgpL@+(o%xX^(dB k#`p(` Ot  EiNi(XQ"Xt^Ijе C_1EV`j #r|uV*E,7{]LG`a={jhIo$cCX M )D˙`1^{w,?*4Q}:bc_}bTc">![\s 5,Q9A л3Xk9€. )XD)`-{j=j:R?qY.?n 8lbNPU`` ,jxqZEO–.=nKQϊR06h9 /^?X迌kY" ]/.XCqfB =hN ~EuZgBE.)\z"E,EGZj`ÖdP?5"y *N*7Wna)eݛ^|[b`q_pUx~U,z*˽R[ks$I @U|'$HWZWYrM(px|uE^aiE護6e f|:3]8=8l7Н!<,,w!WLʃFؙ ,ra2(@WjPyh p5\@[m2,by] j/"n߻ř,4픞3j!aE=?7TR06X@RŻ`ae\r;7,Ф~ܹ%5mC[_tn}` RHwshHfE(bae_e2xV&_+c( puP+jD{cHۢ'ѻWK4D r@3 )Xw}ʷ4A\|] #Tȍ5١`@{mHfSTms٣@c?Oq><"3xx4#,^ 1e e %h'bJS1 Ā /bg^\nҝaD(`qv+Qd7o'T[B"+6?3qAވKQ}]"Sjy˸\7,c%l&:]-~X: XꂆG{AD(b]~ ) 7{X:Y Vk )2 .m=dj&RgUٻRKv)<3`9W2Xnyp _c#3w1^#X|x; _Yk) e:Yn 2*T@ ![1^B{ۦ2t…[ [-}QG^_c>Na@yTBLC0uXXۂ#S6N;Àc?XlYxޅħOP;4<v*FcL`шFB41$f˕޸,׍m]n%u (B|>hLtyE.3 蟣\|&=Y%ڑfaaUTnҖӺوKLf wX+dzcG,Ky N~Q VkeaٹI̔yBq<= I8JԪ,,ͦm?]yZ&5 V>ɧ/ mDX{Yh󸴂sdYLɇX3Nr 9rF6 #as\Q]uϊy2KQ AtI88QWj>Qěfww8p,@L+gD*ʱF ABr NžYNXR Zs,-棆\e Ҿ(Vc''Ehio/SGT}^Z5..5^\fInUo充P_'mg,O O,V05f80$8 +Ȓ'BD$;EON4s,̽ c+nEp/3 2dTW7t-{ KlVl͎,,E]z69]s`tM̐֒ܦ[8jz *. ;NOoBLR3X ;0,:|X0ȋ@^Ct%aaLBLoi`>s:ΝPM@‰q2l*I$ M_X?" *]0ң׾[t1wa?U7V%f%ԛtW[yP ^W p] qӇ%VvC57m%c3xUw䫶!td[ofA=F)S>/NUj6҆vZ>)fOf%۔x.[qsْNX yʨLMvMθR0Kem<Oh 6vt*.x9Qƛcc"Bcq _`Вv\iEh/(G& Y_ne!t֨bK{7Ͱy%A/,`o3'm^NU,8/'-gNA=QL9;G"iWrWT Ax!?tB^PIXl2ނU\Oϳv[re 8p,j㑷Ҟ7{tW~e*IzLkV%_3[ ~wS68-#\M8N}n,\խAxɱ0U 9(8{$xcǢa\3mO  f6!`fh`[0#u/ump<14`SXc(>b+hEZRaa<`_SY$k1n6;'>1nkhcǢQfLjz]o* , ,#!eS+hNvjѐ;t՟ JΏTs:~zyz.ߝyF94jhcǢqצI*4hhc 8-,Xnau 8p,[Xc@ p,XPc 8-,Xnau 8p,[Xc@ p,XPc 8T_HRy9^CE@ Ln[tTI#d??'$uvws]H>C-EXxwZB4,7ǟklOp,Xt2vb'9d7Żnۉٷd;`U~H ?.UX\T{c8 $vɄ_@XB"۽V"$",l8!TV[ Oǯ5ha 1BI7%6oYX#R9?8_} > lWvSξ%h4>OR8?ۿfaQk4e 84<}voYB9nqa!~idi-[EFBʀ,( e\>mC -%$mRT^u'7枖''5aV(,">EY 3)Wŗ'nܸ}3`+b^#[/dv}(,#O`Q}EܸqV,xłW,q#vZ9\opu]ҶT%YxZcevndAGy`QESgv w.c̶od F;s 1)ܶ)HNPufE$188}',B0ũCkwݽ8X&, լZ#=^t,lTmN"c ޻T,a 12,29]/{ ^ nnuzGڅ'q5 hv-(b*z<$bD7D1&,)"l=z,ti] n C`ِ(64[Ɓd pJC+X1f!]QgApjZQr;5)qcF`58v}W$8dVׇtLFq"rc1XLw`ן48yy=+1uy3o+ eA=>Do#{ir'QgF~| V/"Ug!9J17tW.>* G珢, 0$Ql9bSb Ҙky%ELX0Â49ZɐM8i*XT6L\PK dR KGnA1"aPtkm%iZd̃c2J$i$AsӳXUw$ ExsethWZ\Ѓ1 H>XoF`Ѝif  /$ <&a + I wBlp9ULo$I8`-Tt7^/n "}aj#VPъ{dUe ~D=Jc@sVXW5-* !S@N)@Wj%PIǥ\#3XxOuL uB(z¡B ' *X7ݰ%J.3 5┑,#eX=?#>hblKF!De _gϓkXB^7H(%l,lggA}kD?g,h8F g] C#XdXHFo:ͨkSA;E$ XXEa놄)5X6\H<2 X-N1XurjHܨpM$,RJws#볪a5=}p_w(^ΔWǶV`с*^/ sVheC+iC S^32\8U4r.)`)}Kݦ!U,XkVL9U', Ruo~V(Ȍ8:M#S;65Dț윧 Y_އ\w?/XMv顽3~W,x۵9jȱ OXH*w>P0ZrZWkj4_݅;b ճS;ǧ)bU:ȯсE-P>JSGz/]f>/Uu12ENe-Zפ%X,4TtKT/bF@S4Y,]1QF"nS 1Qש,D.ERG$Rjj(X"D.q3jbk *BY& a1]C@Tz,.uET\@D@ūz䭩b?ӓ~t~,8A\,S&Jh$w ;-h! ja¡"3XP}=+2d ^, %eJ7?|7=R z=Xp7J>d$~Fc&XA&˂Rq?5?b /bE,MǖdLj> `6  c{B+mW6 B(Qr'eta`'  PH.Z3Xh k:-+Ȳ ctۼ(_r.E.{%o,io|Xpn??|;t—p"Xqĥ@~lr dtI7D^XւjKqHŮª"7`!Ykp.-KBZ-Y8tb?N S*<(N{Iⵖ`QQ0XT:â+ \^;E ,+‹Xx i9G0R G2Ė; [_PRskLVm w>UEKHWզDH?AT 5GoU;f5*FGd%/W@QU+c"/XiNU# xlHQzfQj5p,Ž`/゗' 0,^]7`c j6v7Dд-4vIL,} Q/̞ӴEUO`񁓗;$!O)}J[=_=` E]L$`q؊W$b . P0*23-,,*r|o^_pe˟( =|QOD?bd`Kmn]RE92EXUζ4=,{u̗L__$oETXA<֑fNIIVUU@TUǹg&bJ3wsbZg.v Z(+ҝ}pKFI{)轈(&;,Nm$b=FgwO;tgSR: &I*؀^WF~4sT[KzBl$8>y[(tc ~ Yg ;'Gx`B㨉;Hş,ַJ|i2b v?" 5)-Goqn)ԘqZZ*}H罃o3 h!'xKD|=k@?s-B=XE,NPA{y#X4%x. `axr*SV-胵3n7K mOwJ}S ,^g}-8b{MFш*l,;Xވů2,j=ܸv~:t+?9n /QngKnT/9[&w4z_=o 4CM{wE3yp MbkDLpW_&yZ("PCr >cqִMk"A5o q65,N`qfvNSwX Mi&YXDM ,پs[֧oB"K=m=ڂo$ʿO , }Mf[//D˱,Vfg$f(J B+7`q6+԰6]YDjg6`!V%\ IDAT,Db`^/D,$\@;fX|$-<3 >ݚ- ̋Xxq3:X1pLדsdɳݬ0f`2b\ D+궅=@Dӗ @~N8|vq*!Ш|,X`9J]E :4Gf˨dg<ϱ#2`N ,uٵNVs,0]="?ځ14TNju]Ѷ=;k[V`P֎X|ף-C!{{\mvb$2&t'h(Pr -gmlւ!v5茾ԨX]v@}ǰj\FBtvwxR,8 clhG{jBW9muxvkz )}H-C6wOxEa&|a'}_,xBBgNX$ChH,>:ҷXAM&ELzv7v48mǖė}K>[0Xz s,2.E)IRJ/z2>F| ` xaB 8BAB ͪ G8hU%|FO@po9 Li(*q > x[oXɮrP*7Xdpt`1؃Hy0 I~5tA#JnX}r_X, ,c/BBz=OSkTJD[hym<$I$kbC]>"&, eYWBMy߄;I>24NܙlOhS, reܱJ.8/)I, ͉@TE-X}>_Тԕ;, -Ajnr:6?r8'K`'J[?C̗kZ AwsD "؊`!ͩ?m dD-ǫ:tccbb|f>fX@ܥ9P׀zJdJqH X$8 w _5$,.vy ` @xDc pV #X GjF;s'4 bQDRdE*sωkr9tb-b XͤR7Z,rBarߟ{ \Q~Fo  XH sg wPrJRA`!4n).,:Mǐi= #v .һ. 2h3 qPHo'm& ɶcA͂"ʭ$zgi ,=~ka?{ĕzc8,$Ytq,y^աY/wxrOV@eW9/o;Q ;F-@G: s bd@fbfU{K &,Q9e;ABEü]#ŔJV+=ur3ָ>9X$ %ΞcخՕmrGW*̍*``Q`oW@IhjvF,ӊ_M5'Ţ',G`iݪn4`a|ǢtŶ`NbaZ,GFAZFEskog1pJ|T=B`à0Pڞ,\Ӌ}HUNu.|g >W\<ˎՋt|ηp9L(g\OdgYn|fGc%KƆ!bdx+͖;Xr%ci+'7*TLYh#@bTĺ-hpnON-a?7+cZk5_I`ºT˖N輓-:Uh6*7e: b)91i[j/ l֔wM+1 8x-]](d"RP p};tpA0nX̲@^w,тE(N I Cc.ۅ#! )´Xd.AU%XSX@\`! X`V_AX,ׇ>ا|+7m\^[D*jK=_z$@.ZsB0Բ\m=TR2[ H4ñ4(hzbOvp`:$]SS>v0IBxD /e]󀅨|$6廀i0->}CH^ti 7 B)*gW@7omGX0Zı%~(E4q#S,jjlY4"z5i(͢&lScLJM,/fjRS_Lo 4h|?UYN>t~:[npνje|IAч׸g̺ҹʎIӻ#1gAh[N>^3)}#-㾴P',XP8gp| Gy9Wa"fV%Cbj;2_4fU](,qpmMRNܞ1+J?{4d"pm hMݺp诵$X?nM7?vjz'cq,ޙHlۺ",S5߯ۊ;w seVB :X(w靫l3W /cNP eQhmJUQ ',XP8Gm . 584u[yeQw_^7d0ڛlӺ?07z =OSI&9Zt8as,XP83Q$Xp|b ~$m?@l~Cv,XPhbX,)p/,H\T~wDvb9{00`7%}#Yv,ƿL,+Xd3nABF= /؍?~bAŢY6w1)Ł,h,ϚM*S 8fݷ UNj]=:^k`QiϬ 7ik )xNkﱭ^t5XK44~? *T,$ұ6#,o¹}5Md ٶ>٫i#㱠W{5[ͼj1[mX{MoHUVZR$isfrz>Ɠ3uœxpu@$Un`x44#Li M<] ͭoNk3rw&*k<3,"`Q1 4u㰖WUMQwЭXeRѴ'/OK_I\jH)'KPty8}Ȩ1݆%ifމ2໣=VF2Pe:0||l *T,!8٪X{l]m}$5o_m pZh4DŔ?5oe2~;NoUv[K@m;+>ky،C(I}y8`y[bw*E(ή1Q U|ͯ[7JՖ;)ZoG6v;оi߶i,&鸹l,3,XPhRV㦤~Z=sJ|~\=ǖm7n՗_$ӳSGl\(uZ>=HS%!;[cR,iX\G(AyfAx=أnk}$VQ0/Hn*}YU\nߐܺ:dځբovBNB֘n]#DHf_UTo7XO-YBd;&Xצ%rΫg1XPb$am43} -$+XSy1">VqEU#qb֪Z_oKIG|պ^p<oe+X\[$<;,npynSJ9)8]Y{SW?|'@VrIE!DE(1ґR 2Nb~n.g:9{y9as-U|W'BGu2,^ N~<cX v#N,Vgqs YbAbAb&nGbQp&gcc6TuϿK_ǻW=xHVqݨIeMɤ<{aߺ;\ntXxg%a{H#DbfI2?T«2yS)E/Xf}b7֐؇ЅIn}4"(bU䯒= E#]ܜ`:  $b>S!Ցasa,ӵb1uRbQltdL'g6Qeמ-GmB=dUņ ߶=P1fE7ZGէgeu^簲V^9y~U>\%EJV,&+إԅ@vyłĂĢM j:]sl6E8J,֬XZ5 g"K]̨/nl1&o-ug3!ZX) yriXUg)4(uxb1#M񛭤˛"QI.rX5]wbq:[ղ٘X;o>ީbAbAb&s-b//R,^n$;XZRø/ "|C(UbQ6ѧXdjv|otXt_XxU;/U*yꋮ'Q>i~cP׳fĂwkðz7j1w/.zcgEjrC(ؐ? %O>/V⃾"(CQ(XRW2N ERH8s\E3o׉EY䷃Aj>> tXXXϸ)-U%?Ήd9|PKoqW9璾}?}n3JE,TvRQnXeSz?#łĂ?j1gV :ޝQԸΡXx"ott?YU1H=2P>r-dzrnSCWf+]2Q﹭DJ+#|/[EP c; 2sݖb]7& uaŒj!ZWvnbZ+%v;|ԪP#jp\jLok[FwXXX7 :tczڡyqk>vIk|zvjO'7ՃS'O:QӍދNsUAWX!#Oj;H{mpV[6]:{5>=W۩bAbAb{Ԝ,&nE۰o<-4)$$_y{cW"/\>ߺFa y/b=nOm5)ֹ*{*mh|cF"-o VnYihO,H,H,@b H,$$łĂ XXX$   bAbAbX,H,H,@b H,$$łĂ XXX$   bAbAbX,H,H,@b H,$$łĂ XXX޹75aEf;XAIoRJ^ "r3J@9z{pe/IMp ?3`.g["XP@ 6X b@ D,Ƴ yz_OUMs5ScD p;t޿7 D,=3E"*NƮX,XBsjyIR{Wo h7X b$ 3Nswoo7ecq!Q%?# QU0ڻo,@"4,e>?zmm,xskFﲱZo64sc*1fqS֯yc"a*R~ݺŕ]c o,Bb  D,˂SX 0MQOJ&Oʽ/3J}t~5|c+< "[XJgu.:ngX=gq6nfxq\Դi>]W1R4ߺwg%-7Hs4R V$wbfSvfjlI]z?f,@"$m:w^ŒE?,I{uHY-Y?W\P.NE*wWT2`,~%tcO/_"M?=vž L'LT͊u|{/y6r4'Kg$)XzJeV/9^W4wU4qx75_c<6&wkW} p{ D,B2G[y D,]"}e$-bϔV`-VzLeR>ėZ [OX,Tˑ1śFTң3h5b+Cnn <*c7k5hCCwF<׽d21X|Yg Ue,N6LdoHO,Xʟcm4o͛&(mޥjo#a&% KU74g,@"$q׺ë}4)nϳ2Xr'"'D$=Jb3wg0M&3l#(Izv+PNoQ2X<.뇦$dtc1"g"XXS'kCn( *ӡ&79*QMϤydWL"%lu8p;:c+~N0#wTUngo%^2p"-ve4%o\ JSc&h*ܢ@zhU v e{ʸ)tE w2I/Qb,D9Me4d{(&c ;Nf,`E3j֐ufpi91գozeд;nvƶL0'ykQZD Ok\%*;t8Ҭ^QǠOTU]4X b??/әLV1ev[rk,xD#ÜO|ͨXxMK Fbَ=hn( ;a c1AzזXu*F.`,ؒw.c14_*f2e1f? e!sDSD19"2s|ZWesE sfǣ+Cp D,B/0{Er~"d,ѽˍ/+b&Ff5*jncQ'xZ#Xxi6Xh/'u~|o,*6%"#(1{h B]b,Lh4%uQe\rE_՟?D%RZUa,@7\kkۖ)ۮBˍ/`ܦM1|ҘgXTTw DQy^(zk_)8Ο>ciD#/P` ähuM+TF٧5Xl5:+g, 0}V[Hʰ5CCF)i*m:Ŕ~?)C 92|x|ڭ MΤJG5NBeX}"T`.OGcDG JksDhXӃѺ/(>HMjP1HǍ6aH#Gp/1+,%]XQ(5uԹ&cN u K2G=@~M_CX_XCRE3v7 ď:J#:>i}w$,Xh0!FYKu:$;'g՝ R&%&,\DEYhuQ4#K~ڤJ-GWU0\ք`5%ɮMuZ$4QL=a1p6>C' 몋"b&bNIV^ih~2\§T8Rnk'J~wTiO01}W9m8I7 JAtKf2֕G,tORTC^ 5Ba:Kq?_a 8S?rNi;a=?A$yϪB.(Ru-J]r 7jDFd?߫(`p7ҬG-VpVyp]=a!G-wU'hMq,~[-K[) FSyZÆ}<XX(Uo;S4ۜ[؅0芗.i9ه7dBryX ^SKbV.j"QI~T:ڇw$,X;:]^yvu{ሯpߣn. O,+нkR[.L--YbSK=yAD+ꋋLK-l{'"mы~~5| g 3](:h44ʡ{}/o47"=*}CS(4I7a~;t!,~Ea]1]̫,Q\^'JvL'5.k`əQ]!,?:4CXf 8wFGT[|y\HբG6DNR’8)7,dsaš4),X;•ޭFps&;׍ 2GtqrcO ,c'p,X Iy  ,Мc5hR™% ZM8^kCp/A|u#=`p#DEK0HX=ΖF_{4 >$ 6!7nU kK4!,X@:\gIhulz/ e=tS|sR6덵8mS])hBXc4M4Z'ybuu_ Gå}x0PitH "OUB3khIaqEԸ]56_̾*,ټ=7 LPyb`@;̲ k,cS.,XDZsYe7sl|dsrW$‚Ś#[^6%bצ]Xc(<ѹei(w9W9|`<_&тyb) cZca)pp,X ["Q8;E+>9Ţ[Α^Rrґ7X bEln267=Y`O}3teCѵ-|Sծ;G}% E:,Gѷ?.ȤONv 0e=7Ovs WS_-NO D,(ۛ(3_ް&1x-z7mC>8]byg"""«0cXb"gKma)kf cVvuqcQ (ZnM[gWEX:: W,@ĢP6ٶfkBU#Z IDATvL h68Hgm"i34LSžX bE2%MҿS pJw8-,ۮ1]?|K֙;EE,G^̜]jg=VbQ^@3r̐;b"7ڗI2"Kx:h#cD⹑*H$f}hbg$fds"-bħT|s2c(m}H D4ZWޒq-z^||sf2ʼڏ5қN٭L^r>ûERE4%/]n 8}TwQk Ч(/dѺ9P'gg2j4P |SZu!暏 Y ^~ͣKԴ+LS8jCpTwG.kw]sB@qY"E9{nI1q|gqڦV O565`L yeSK-R86149%k+ɔ8#]/1'uNfPKt~q}ÛrK~9-(am7zݦ.ݭ/LJJnp;r9oz,^>TbaK{(7 'Zi&r5c4j[, D, elϼ}LK&v2j$!}I~Rrrhws ޣyE`6flL=ȋ^[c%NQEV{PKI\n.Pņfmd):7]r*>P@~n$WW9E5P]m7v+Ox(Bv]w7Kszj+^]'eWH,:SO+bAU/USQSiFh\xX8ib|̈́5閻A'ǡ D,()C,#4rlTl&obL_";`"u `,&tdޮ~.˒[F˚XX/IV8Hn=7J:^Óe`̻~ctP:տXqOtՍ9R,l-xDwZ6X/A< ҄p?Xd𑯒ˇ״/M,w;*cZs޺t H8UOOuWB=zX bEAh V؜-X#2shs5G,X|j')9R)X5WЗ"K2bL?Lv>M ?>wĔ>9FS$bJNT6M\':{y 񗃚J-c hǗiB! 9.ʨYe>k<ɅP;h4NrYxDU8MA,X b.ZVgYΕQ(6[UE,s*j!Y M,&S{ihU}c_үܗd#n쪷.TzϔM{U&D4san0ȳΙ`֪ث bԪh r"mzkme^c^%/д|{d7L o5 l"3z=O8p8681Xlnw@f%ŏ^*`D W֯h`h lRd8W8a-pԼϥ9ʏJEe#׋9Z6-kVlXczwXس^Iv>%,^ϤΥ&Һxj{yB|Snw@?sT!~/enX,zeF$ EнU(?%eQ2X|$mkM-&X4Ȗ?Xtˣ+I!HeK VeO-Q0kغ(Xi,zh_B 6 ~e-+:ꦄI}ҤsCs雜 I =U?Iy: n,dV=ˡ`.+=ŌxJՓjo2W`nC_RzsGqW_ =V#RBmXdJX`*n,ԓ2X E(uJ0X 1fʲr4 =A OMůfj(/W,Rz^(k4cWLEc Xȡ+UKaO@TO(|~u&sP4]js`Yc/)NJ3΂T]㾯eI vSY: 6N==jvpd`qE&ݵ`pPQvEѕcѕ%fs6)Ő|R#Bp~"XXXiJ{*,Q5eؤXl♕,a])Ɵ9 B9WMN)Zjښv]7Pfov>3j/h&Bܻvőwͮ/X_Yowr_2.^L ![&X Js /}n`TkMQ47݇ fta)o^M3T,єerI}V,%e9qEѕc^*˘~[yR6Q!anw~3WyI1# eU.񓯶`AcAcQȰJΞqi+;U'zk!sm߃ҍKbi&ARVb;#!e2͈ݝH{@{BP'WݍPMƂƢ\cz,]Lg-kܜմ:4Se2 CLʬ֋5-zBEBb oJw޲O7vPgN}*d3K[o6iBXWBIGS5 {"j2QcDY&gw%v烅Eʳ=?Ůvu&)]Wh1i'.iuERgX;5)=N:VH|:mPEƂƢ|V|u-j܊Ϝ9Tʎ/lQc5Cs p`F[`s,n|E`aZYVTn8"ֺ\Oϻ @iwS߈/?8WBM%`;!r ;kC;4 $O~ qWʱLrLf(n~XtR]Gի/! Vz:WKz  L.'lN7c-黖&_.i;'f_rlqٗ%KN)n'rQ~`?],NdGK?"XXX|poY=<=E0)P_(FY7q yE,*4ϙxTA伝D";Xy#/E,(bREQ̐E[8`JZwuluN/}H$`!` `{"X^? 3XPĂ".5|E6{vnnV*J1E)Iz(:TT!#W<U߯/)+a1E~3atjEw*JA濆.LHA,(bA cY: XY`15KqVyp$'2k Ӏ/Q,X4YD$"اU"|tִԻ쉎w/de^ĥ@"HAZ$ekEX7/]4x FfϺq>l ;8bn7ocIi58HҌ8fKkg XP­V^x|2}`٧W'L!3ի,8A_YӜGj0 =XPĂ"n5㼱HJő?Œ̺Xu3MbWJ"M?XdU `˜ĺ,YdF$f*c!>̆ljZIӈ #g6R.QD3 D"HmܑQ'#( >T7݆|) ̣SA^:Fŧ0YFyׅ4MƲ7`h0!cf  HkA UÈe=ZDZ 3~?%ׂ(B5[=7z80Yjܣ7jZˉ fdN]~¹?N!D"Z C_o43>7W3K嚴h˦.V=k27 ;X|Cvӛ((53RE,(bт|9bSџcnjg4i:U3Zț\`mo1.m9V X\@'lZ8;Z{Pmk\H#[} }nC1]+I$QS9+#28E9L1ǗvXL҅M ,4O,|xlŜ@Аc6B3o*`k3RE,(bђ:{^GfEY{! Xf%x,?9@&2NXfl&`q cEDw`/ fy 9+ *Cն a: FC=7fYg)X`ƪ \_G@`q"h]9@ I-D,-reH3zš9&}ڠFwęTH?#hTjWnJ=MXH$} i ϝ8 4}'i߆j";*FM06D,EP` P,XPĂ".1oYW5$'O<,6u;~xs>{·t Xh) *Œ>$ΈTK"+X$*coؾDX=;,Jŋ&E,f[lŶ=Н`3w A>'`A XT^Qf~sʶyźx dmw#LMG:F>/H=G!. Z]$S`!u?,D`llxEEŶjF`0]¡M !&aYAl]ikOtgvMw5vdVRw,(bA zsm3l=Vh gBbvF/tE~==H cUX2Aϫ9BBd\y`a${,,XH$=wl1w h=,]v{P17hʚ _h t_͖b[ű!'n_3)|EgܟȲ8Gފ (>5&FhEŠ52v4ltLYFGͯ)k{Ҁ+&{;龟>}/ZqݝÔ]j n@,~:@ eth3 l6䴓 ]ooTXOA<>7M~P JIo ?i \bǝm^t뱓զ½ڎ yz 5oIJW|+˼Xp@̉=r;;9{ByƝF$H `D_V墭?G cRFkAQ2g^LTp\bS"XTN:kڗa>fi7b||b_ ,Ƀ~[,&cx?,gv MȈys4M듖oWN; j=*Xm-No} 2%l$cv"})#7 8bcyBV= IDAT1|GNtHwUXȻ)Y#"_|o gGZ1W.KR|/ d=!ܒѭa*lܚp1,e H\q?nyAMF`lO'X bq/:K|Z9՗ ".'o-mN)λnn8[>~uK|߲WS] {c_"Zcb$2ܨD,c<[lN bX䞥]bey 4\f?纮'д_{>&{o.nv1}Awbf~V@G:-W[ ,˿KD~2WNl9R[ |Fe2eC,>Xtb]^ kY'2,{+&3Y<&HqO x0t"X<6=zXx+G VV5~7#Ac9֍)@j⽌}[8_CbADVIXTG,@"#=ޭTG,bJ밳v~qM Yw7dxx_ebKYa?Xj,)*!B:)NbHkVb P5@G?g]Xbs9d\k"繵φ<%GLN *'OEVH,,*N92Ӥy'U7 Zb"Op"&}]Abi ?fX\v6*#7T힝*D$8%re X;>@bqe5D"ED_Bĕ; _U*R_. *X b@Yx#E5Kw:yX,@|s==XJA,"XPV,Tتc/.[VmF,$6⪂tC,$Q/X b@yPKvkJa qcxx88$h//6Sgbί b"T J6Wt݇]̪9a!"1߼N{ bXX b"T$Bߪ*BJK^}o⏫^P,bT_,@šQXHҦ{ 0^BZ,X b@9u\boTU9@h5[ge=Ģu,X b(l7:+b1ijʥ-Yy"< %- yP+^%+ P4X bB&_ ^XPxbTK,@ ;Sq#|6*)0գ'ݠj^} ;:ԝ\sb0QM;T(jiM!FrZgX b::4]_muꩯ7P{Muw: <6yZ'+eE~@5 D,x)s0@ |J=DD"XX@'TE,@'E,ߗU5?{S_d[s@IoR EE 3rPQ_=_M4`8‘isٶ}ɳ +E,@?2)cjtG,@? ~Nƙ&@ 4zS*A&X cG5N@ ~Y,@_ d, d,.6| b2W+Nǵ}G8[kXU6# d,ӵB[Q ձ6ŢD8 2ܻV8Ofs@ 0C^oOV#~֨Dکe0j\[ <p˨P#U, ?"-hm@ DTJWOg(x@B뛭@j%QX$A'[IBSVMY͎ d, 3qLcb߉pk] $f X c+Q)bӰw>KŢsOWow8Ub"%QNBq_((ޑ~ d,I?gQsW=z)f { -}󒴣2~ȪmBg#lx>59]O›XbtHEOT& >.>AS#bo eUT|nX<+Fn-BOXxFMgv?eu9)f:b{)ϣ=쌮kIZ'cFhfi1E͖% d,|2Qޕ@xLj",xk[YkY6ME`FeKc%g%8)OldC/=$⼼Q׉˗(mg i%GS\XVp b1-sPNYS,,XSJN=}g3S6. Gzh}Ֆot1[/Y6Os?;6 'ef=Ǣ1YB]|Eg$eNrW)VisM=kmqb`?lXD❹/?:;jn&)ޱ=RO˛D,B.%O͈l"CjMQvXJ=U%.Ezd%g="uIQh2XeliϤ;]vMc,b1o5k4miZMT,l }h1bJŻU*&O;a f:9k^ALJ)k:zjX~ 4b 'G#kCp߭b5耍"1HaϳXtV)c,\W i1$i4;bb29 XREX'H1\*bD<CZs֍ vhY,EUj3j0y=2»5P7y|D?B^}h%,)2k2ޒ>hbHDU~[\e=x4E~IXC, !% -4f)ݵb"~ d,]3lOxD4xXb-u ŢDcaY,X4t@w~Xvh]*I1^QsG8"bQ$U*7Ա5^K19G i&wJXl`AłW[)iS_Exݜi՘eu@0K(=c_,b"d]:? գ˜"2aEkf"eͲ`̜*,T q[6T+zv&mvl")uϵ,nA؜n{Ы yGMm15ǭS%Ju"W> s c?sԐ,GNu, ' *5δ=UouZΨ$]f"j^SGAŸ՗jFc5Cmet4W8 v ѓph7#l3oghN:`q?>Z]] 7TWP BF?]j$k;e;YQS%n5'Y$ -إAQc`M,3NLጣ`,!oueI3MsbAb7t,`k\7VG9XPb*F MMNK" `AłPtbA(:XPb,XPT,XE *T, *@ `AłPtbA(:XPb,XPT,XE *T, *@ q1opCc_ߡ>8J%XPbhzW.1uuP @^ 9}Ō-]Fh$ *-3O苯K8Y8N-(`Ał``+dS_BM] ، o0Ϗ*,j|ةIߛRgkNgg%gl`AłP XYYѧWo)\dDmצal`AłP XY^FM|[N P}T[tmvL$q? *@`a,gm(-<]|H?Yf(Si[)+a1y`، 7X߭e欄Qޚ̪Yyؾ`QA`شURq`oIc3,[ǟt}=.`Q!+VW6_p,XPXqӉHh༷gKqJ:dY)/+X0-*}]rsN |9'kgU,Y_-B;EW`~ {/>zk,J,߉DV\R3ZݯjU'  ^$+a[0F2o(E5#<&oNח#`q⥮M|XXZK˿/->ٯ};~[K$ra焥{"cvq6_΅d ?=DtE!3$L # xDDawKԢu_w<-nd_99 Á,`Plܧ!&alK ,]` &q+# RH)XEbŷoRBz,"O<EE`H鱽"݃f |o=={ED-}cvk#ٔ63|<Ƶv+ye*؎llOE @/}z54@nd'",R߆xr,]td.>U)Rz ^(W| :5[dSEnK`!=cT<◡d& WU=OR #Q06FPsWB˔-t}j^j] ӆQ5]P1(lJh3tGV# |}+,:yt{XFs0Քŵm3 TVVi-*} 2J IDATGMK͎߻lGNEs>S$yW,#O;4, e OIa RH) X., d6F#MyUi7  㚭?Q}Y55hb=Tܑ ;1 хVa5r>ʌj.k.bm/m{.ᝅHG Suhu-F\f0ubP+.̥n@K/ 4OSv~kHӥF ?ܨŢmV+ױnEl\,a93d=t~hZ/;ȿ箵S6@:ˈaC}R5EBu+I#n|87_`% Aum {!v'{CYvuQVvR)Rh`#cxfkX ~*Ϭ2xu+Ƹv6^񰆷EêSٷ U7n.ha 7{W{) c!= Vi>q1/.&A}΅B3 6sX(6c+}|23 X\AE:˼PM^:] PG=WS04xZGM`I hDD_WU k@6,0K d?eYh{,8=|rڳ%h` 96M%3  fM'B)E bKm` ALis OLQL(P(|Џcl .8"FX p!2pZusJ jWchIdoM|r{}ܿ(;=Z|̽} 鱐|Vm" Y XX`CiqqHнt ꛝv-𓍓yHb&\TaE`$bltX=2a"rpK H7X59~s*鱸JXBs+4P{HQWŅ)s §`,HRd XxD ԳfZɿX98`|-iD ckR3,p<9N&]52 [Կss_kI5Vc+XHX-ԮiSY%Y%P9" wb ,xFGEq{6FPI40w *ٳX 9 DaY`q S(- ]+P`ݪ,ڗP 9á7C!! Mk DYUʬ0ZJWaY`QeiJ0ݢԁ“oו|ާY/yWcO`P!r,Tq, e Om^`!Ebf4eջLLoIE.$Wa; `!=cQߨȼ$;B`e gA/-,>*xQ)~A=QV=sbC6U,h!L, Y wv]J (b%>SӢ`bܲ,HR< @7m`ߚFSf&zaM} ,3ʸSNvSv0pYKx$8%`!=cQT/jaPi #bXДd kiUPQZöaXKghTf^`ueߜOw0h,vg;ۀ@뗃ň0HCU6ho^4,<]YE,HRD(@ [w&5-M#HA N!M"pY!م,n$ȴ3- sH(*XHX.diO¦| XD >i|X hD,idXB:#B1⼙bE7{ | ŹCoPul^;^"%ceyI{{_ L>1i ?x`\`"T2-B) L>j'd5]ɿy8:wė˪7@Xpf_BXvP<`QT SFd LfryLW,+-.$tTl.s6XK qdA F +K_( y{|,O?#A3w7NM\kI) BD `x!W:"8--\-*Voxm=Ebguٕ=9mWqUQRFtX-dڽN#dE, 7իF`B/Ǥ; ;;%\.kn Vq1f,{7,\tnUWg dnT,,XPiXz  v||/?XJ2,*$>XWmiI 'ghda|qй˃E_q›>]Y^z=vTŏ忌!i]BNJQse/{b Ze\df*+Ǔ3׺&%jq)_߸O ov(DDqf t\`xHVf 2-}ywW3X_cn*XZQ m\ U9m#cF*EQ *>}o5æ)ƕc y "I79VG$lφvǺPtYBjQ\n7֑L1d`.1֘3oM7B-n~]Vuh׋ bTd^6&ʳTuyV OE]\2㑆|mMdݯ}pῦnkǷT=\yRpzO />nie1#۔}hR ڑ,qw^`QFkMh*Hw1'w ,Tl̈́~|2QǾο+XWp[%;+zCHWuUV5w1׸?.1^jC2Q5kg&X1XPbW>^C\hbOy*+[)v3Z.|3~-V(Ϭ9lг[?*Uq &ݩ^ԳU\?.u^D(T,Xufy=^; lZ7 eޞBDYݏPMlBVXhy+J!XPbQlw[#c^_Y8a zM|LEzPJ6:.a1b;.k&ŸfăEߐߝЇ !C-1ڭY~JV ~I퉦}#vBbAŢ:Uhu Қ>8lH}ǣ}PJ0wmc *T,jQ}{ѓã-|MJ30ֻrc *T, pbA,XP *T, pbA,XP *T, pbA,XP *T, pbA,XP *T, pbA,XP *T, pbA,XP *T, pbA,XPؐGl~\_E#"xq+|nPku)7tRz荱ӂ *Uϊu#١ ]E"[M$Z?xq{C7XPb!1UzDsaHVCn{mG$&f"X| yȳnI6{|PR΅[D ,JM.o T,X#=2,_mۂ T,X@䬵8!+Y G,\o v$\`~(_ +XԮ,j?rٔ3i[q a) ,! (@TJ!J _+Pݿqgㅤ[-Wxf33mlRf,0cѢH6{~M_ sÈA0֭ Bv /c2j^^?^N6Vz+ƭH  cÚf eF oXnx<^R6XMA3-MRv\bbz_;-pTa;2%P(`qiRb'X*o @<;MtFMVuD%-.F< 1SCXP9bHVz2_mhJWYE=)w]!X`3-jD}I Oqx(IjXf&^kSG ^,9oy-NsO/0%XLO_==W䮸F{ZAJj`KՠP( WE6؏Kf&X8en$Nm A1R6Dօg%X}uEM\ A|/׺&Vf,0cѪaSK{YP%H ґȨa DRԖK5Or&[Mȋh7fH=9X@x|C-N+;>dvN 1!,3pĠWxgTP( 'xG]9kt]j*J{u`3hUѺt9o59.3ǢoX/3<XdaΑ9olJy4>{h%څdqo7D,#/D+;8)U%GBP,ySR[> {KX8LBfpSL~ _Qrh{eS9X%UA^%{Oo ]&LOs x_}E˺cIP fˊ9W+EROA"24 9z F 1a%L؂,DַCޘXX=+6vW B` ,"!anô(T]ĉОPLJBW*2aڮ!m>w` X%8FU8  -ȢbvM</7/3A9Wf,@QH,`" Z9`i&"9J;3iH`Qb`1韞M+$iV&EJ  B`hŢ`¦`%Qz6oUPcXG,*lqNMvz/~›Gf,*dl`e]㭃ŮI-#◽3ǁo*@,JpW`BP(5WǽEVzWQ *Em`.C;ĉۄ[*K߮,0c+kqSس| "E:,=^!MY[ ,U"XP(ʇ`˵`%Xxܻ9XB*}hq'uJVC8/ 5cgƂ=&8MaUW߁f,0cѢv͏=Tr"X, ?,Yg.p8a2)I9*,P( C([`q`F/ 0d< r,I""3hQeHv[Y`qn-[Ŧ97 ^,d2`1m w( !XD!c {7mDGSQ1xx"ƽQ44n0`q[XEFKl [nGf- Xf,0cѢZ"{-ݑi4.Tisi_P0i$ @?ֿH~`AN!)>]5 g V=hcl?t+J  B,>sTW,-Uig@~ CZ1t BX|VAuuS|Y [<ʞ$,0c-v;Y:B]ݑbC"R=I|% |L K϶^иc!287},\=΀Qk /oD@P(ll$+U<ٻ[*6t/hО^)m d/I +ұby) [*>M޾Wy|Ejc$W+UGt-]D`h=v^j mH&X2q0cvQ^ 4)Y5 ] |Hh5[2BP~Ea12p[ 15m2E}0Qgm B1 =x7Ի!=!G[ mYO= X07Nӳx_}E0=CUvA_kʍ`AyJCg{ Y),*s>xx,HwF~񀅫LJUp_ן/5:D@P( RP>r,˽<+ IDATn<!:do{Ȝ񞽝aӃ=GÓe NM_?f,bξ3Q 97)<0d_O(7dҮぉo]iSKS[  JDu 7Fn27)+DjQ?XowO7̊1O%3=gNûWؿ .>ٔ{xhF[H /amY> Ha!""bvEVmV ?EXX0]λJC%tsʷ+ fv`g% m}l#t[^Ę 5b;0yWb Nލ^ڇ:]_^a!""bn95 ؼ!,~7e>ͻ0^e릅E>ؖJ$ `U4йOѝvrvjr)%GzFXhS@@! #eSr5rIg7',6T%[T/p~ad{&,lKraa -߼f}~ V< h?M{Rϟڅ/"@l+|Dl𜭁6NtC~;aa[*>tPX_i,<'3nrlݖ.E+AXX;1N.o#y^6nRX#kO[SnKeM3Ӭcͪ>5(,~f n_\1ZX<ĢMqe',{^}ra 6rKN)]uJ\d=FP~3d]4(,& ȅX@b6 [L(U%V;2|X=39ߪq&zz,PQȮ(Gu9$7Jo2>:A4Ba BڱO"oI2llCnT\&|n"D B_3s S-G4؄Z*7 Wg댿."tA)Uy9>7:n iЛ&ArO e\eed׭#e!N_yX%)%(P'c}8FU}aJv׫~6PRyj;@v߁|d^6WvlO%O*P/ayOlnr$]Ji;CFh#8Pvl;jC ٳdZ wR*s4v8.c&: O0Е )l?s"\CRSwKG3_ 1Ԡ^XQ`cjwxBD,DB@pIYyGg"?}/%/uNo8vQž09EJTh*ߑbx%*sdH `^?JK,I `f`Kv@İ|%||eM@m^g~U.ު߳ojZ"h.fQt)E<30̧ J65:Uݩ+,XpJ1 W1`‘m턅͕čJ/VM 3dݦ e9,2 "ôqҬo3k,oxD&\ӹAƐ,J\dSJb}*, eh<=TkYL(i#nM4XXMNe2>/X5^tOs7؝Rl9=ٔ-֏)%\lWm"߰r4]"3w)DU%/[?M@@D,DBD,;F) [Pv\sN21T͡g˴?'k0,vAe7dtB30i~\DD^df7߾,sE ZVϐH?X=wx LJfa_?QXIߗgU3W,Ә,&̍YXSQUU h$wo4X/'R/FcWEqu\357Ī˙0Ym1'$gYX f"C΄;Z]2 Э巀9m^!Ƌm}+|݉& Ȳ'Sb< HOeAX:Z&O7;b tܟM& ""b!"oT2 CϞQyԹ^ q 2 Btl V4{ @R%hLR55"S޵55l9 !h n69ʮIY((ZaW_ff^/tOϚՙu”7`X.}YLlqq ۚ.ۏ=y+h'2TJ`b1 LS AϜ?!\NKb"dg f%MtWicϽȻnНUH5Pr2.^qGID)J,ƒ`.sgzf} .Ngcl!jO9V[ ar2h !;q|czFiCU{V>!v<$'|~jhfҩk'_go}L͊뱰 뱰reL,uzc{(FA&=ۓObm`;-ZxkL~>^20)aYr8T5;R^)\GWF%q2z)-C.dd~t0Fd]ZWaEN\4XzDjq S(P; TMBRmZ"3.ER% Yx;ȓO2+jW#ݹP:O&DE|ܼ m}bs aM)nHŘCԜBp&&>J_-0[5yRz_5*.q|czF>{w>V^Mbhf҉}0."IU(gyfŊXXXX ' @)^rB8 6k(I?WA:iݰ쿲X{3pͺ!t&}')Pr LmӾy'"U`Pt%XLM+wX׀xg N<jU~&JǦh$mQ;08ptSi_Lԓ)mXajpX6N,Uǽ `8e:8Xzs*XHM8-\Jbb &މ>^[kh)gX7gTk=s_%l243~bX> T.w,b77+Vn9 뱰bCs.$_1 ~YE,>rvK[6u a6zJ¬N`&6'ާ-QAzC1_R/xm|+E\UX$DŝL%9 rcsUA5}QD}]+H'0 ݳukFy!7/ 蠯.&Ģ!p{r朖I')5E,ESM@_-Ԛ^ N)xFjW lnVXXX[/ Mu`r0XtTj_h }qg =>∖gvp:ȃ>w@rH̙NPN>tĕȱDpcy,ؿ^^qUԨd{Pbr!g]s5((y7"  Jxi*O,aq]x{x]Gb' !>{ǙYoB1I]XވX4Nȋ-Eaҝ7I,m9`{jr,-Ԛ"KE,rE8E|czƯū!ݡQ 7A,o6@p_bnVXXX[/?㪪vʊRbDwtV`=qRj .`d> QR>_ Qm !î [Q^ JN_V!ܓO>I )i %cc I,@`)O a^~w7zpB*OcK,^>#nqb@ hH!`= >UèQs b1_Ll=8 mȱiLτ5=;9H' -0cY>naR sb 뱰 +Vl@ @2)v'>XD,i:lYrˉXX+^=Cnv>UQ3?"M~cMx^VՔYXZ32 Ac X = dӵ0" QX啻JP:|Ŗlۘs]$ݞSC<>%qk1EY-dzQz_ʒkKa\&lX.#nN 4-c(&] on(o[ ߤzS 3z;xcrHNP#4#@Z M)[^NBJZ8xœ3M.).^X*K$盩 ֍P~׊(u=WH|'Ty(/mpg}JqӋMgZk.gOF+>nQ]M3^hǴjcn XA=2=\X2;,g~KZ 9/iC%oVjBl, 3οz/+ڀZcZ>('?ӆؘ(y yY-(3IU{\8M̱͝qx=Kv$Ĵq%h"Kf5~rsKٗB؄)W{L$,ܦ f?ʒ9'dpE0}Nh1wl{%/qi3>;.}_6‚|dY;d6ٞdΧ0 3yQ^X8'>g5r[a^:/ 2ߜ vu᝕֠84wfgb{/`l=jK$DSbՁº$f\_`I|IEkHcMƌtTfaAuon XA:p?0+{}GvTuU Z_jv.Txͱfo&2TqKޔA52}u(k|\mtp4e+繶S3fgfݝU˿>\8-y]rokl8{fj:˼EfȽ_{nkZ?/fX3ds貛eϬaHoz IDATo8պeEӧmM7g!o+,c AZqncv#Eo H XA3w{] DPX@",c AL<@y``!(,a X bMG;O]ԅA,. ,c A,P,b^ (,PX bGX=8=E7rҽc&}RXf=L>5`QmC~ A =Ъ!CF@z,]O&,¢-Q_ŢCABˬf0Lga#AX=QCcz7uj[boxAُ)qiFjY[rMPCo+0z,cap2;7Yajp~_'b ԁ؀xAS8Pm<0Q[|MjCo+0z,ca򘉡u!,8\w/ t1s|XX!z@MN*+,\nFX"5 ,ݞ񳊯k A_xUSd暄rEfͬNZ5NcN@M.Mnj)*YcW!qd z~qx-QmEԍ^却(: L$Wu L$Q93Sm<gȂS<8ė.לn_/I5Q/NX H7p9Հw9]uGJ)y3>AqGt=ŗr(VBGBQO+^KS[_ L'L7ğ$+e^xl=豰p _#cĐ86$r-+)XnH#7V!'oLPa6!K?*q /J|e\>V;>7I.^B=Co3IA.O%mgy,r|+˽n6r]ijBB^1cy$I~|ӵj`j"Lˇxy >`=2a X؅$fKCdbj N@ฐ|OsҗjkTlT.S:Ss=[ἒax#;w~;>cI% Ci$u԰p~"x.b,b# ]@!A|nrx/9"dWQM@L0<|"=88 I&,F?\-٫(.ka:)`QY .@]85dq쉯H" , BHWD@TC<wy{Wu=ӓI2!?.[%LϏzן~ݯiE1h$ t5;oE,f/= E"%x! -}՝=`^;C̱d~ݔE_^xEBPPo ,`s,Ӡf~F`,.h 'WBe2 '/m6 ,L_AX=%k9@$=q́l?,<= 2mCB1 .KXu,% g+p, $ >g~w m?&BPD ,fs}ߘ"j_jrkЭ}m)3XNңEb\ӧgE,Lo#oksˬ=(CM|%h~Q^,|F]fMx@CBuwn7׌8U}Y*X$oRUqQmQ( V`4nY5z8w X2gd-fK\ XA Tz,cQ7T8m qmDK>8Fᛰ( ZNk3 ~{>X,agi#8Z>! XP(0{ 22=c$a`X,~%X mV6XlaX=a;Qo`,DH굂`0_EUi#_ٔ0 BjJ I(XDmZ%XXXs' ~=( EQgh hM',L/b(v\y l mXҺS;RN#n+Z>J5L|I#z8} E471$G [[e‸ITkeD?3bP_~xJ l&M_`qMU XwR{hc6b*ϗP#^)FX2Hvpř?UhVT4|L,,c2Lm*Ȫ%ZC)c }F IZ6%ꛖI,AS=O:hoUmlzIuFt8XmoI]KIm7^bnS^lunj,؃E[(4_](\Grܱ;9R1"X>F6ȳ>" CNegv^y`A2yฮsnR As@z,RguϜ^Vvdol{urN穓F|n;RF@\Ϝ<^[)_U?E[IWs>HүDm*qJ-^gj6(^Q`@Dcj!Z9XeV*##jܵmѫΝaK޻Jof|C"P @EեyZjsT(TNRlEmp}p-E{G|c`(ffE_ ,.(߰FuATnc@S9`qHcq'E%ŘR`hW)`᝙ٵ>2RHPM XP` XT[ o8!І`Qj4ab Aȯ$ŏd*D#I:f,R<{mQްF"2(MUC (`Q*lO,P(TI` XT]1>,F,Ib6XpOQ9QE]2"ڧ WZnm 56\ Eλ:Tr6=,4;?\쎦wf$Rky.3r1"Xtf"[j(X*篺.,ȮwXd1 /_[B=豨#sNwPUK $ mIRU=VHml>!J[}*Tlβ Fk{HeA.﫪X񢪶f]kUeяUu<\T4753Ů;sb#E?$d|* 0 &!/`y `$hXy* .*K BSbX{Yݺ?mޛUtfg~ފxiZ6;~" p̴m  \:"\N,n=qm,7>Dk]Jls3$860™B:3"61 h6i+as sy&^:,L,CC_CN[Qܳ1e%jEnw^/Y1;8 opuUœвSJJ2b!#RRXw[ U֭ko`w^I̟?.L5 ̧<9Xox?Av #'.u<({x`RN(v`m0޲;+'BV,q9ܷ{g5V"5 P+*5BSF8S.T2H?lyKvXͼޡؒ(_DwryVKg;}5ųh %hOP{5E:!B~1?RRR6 "N#X3D,\G6&8Mk5cuД(xD6|l=1-Cd'\>>X(ѱ Xwf,`% ~L}8`#3åwh.fG?5ͬ㾵yb.m`ՕLތӢ B -mQ/d $e?x*SH:KUE]0օ^O3qt@~יB; 0\H3b7F $N0,>8~ҧBp39wOPMXY"RC<7qqK8dxחznD]R˫e,./Kwz&NJ7猄)K^~Oݺ_ʨZ`8pJIIɈXHI ٚu#oAzdWjtk$ݟg@! ^zr0')ԜcQ,ҚĔЫX"%- b-u?d) ʨ9w9uv I XnkaS= V(+=|IDG]EhH?WtQZg& RCCJaXUHRHaX8ߙi&.DoX֪y z}Ez.n gl`1TBd&Gc^2Khz9XBJ4C+>~b$ "!5\#7%;kaIY %%e  ))XU?qh 0Sދxxط]!XdMu2]{\t4@,(ݿV{K>?% cz30mO>VIS,lw\Ni'Q_=2pWX݈4 #)bxbD u_WuB2K𾵁]p wk ; S}6:`QC5D{!aK ԛ>A*VЉx8zRa:k 3+L9 XHjpCpxc#~s謫S31[1kgYbRa~y%N)V3ǔQ|YSaݭ i QXN(1P 'Q7#1/7A(ЁKbQ2 oUOKۧnc2b!%%?XȈ\O~;r~P]߬yH ~;#X(ALӤ[d,Ԗ>n?G ]sh!?SSINJHxĨ $Db+  :n FaPݽ;:Zwݚr=7/aĂAMۯ[ps}'E`qO`x0:-Xl)Ʊz*Bp^ChJ-`!޻}ŗ列(#^ NS4m+ }$XoH7\HJITZQBZ`"5N #RKhZ-f(E q+X@cx,c!s@ߘC߆XolJrSS20}qoA `!1K Niz/fk!-Q`Lۭ,v v2l &0p{*hyvlJc,2N04D$gnyۻ*ʃ;{=0T0͜0{,$ ERt ,2*0&D࿡eoRXж< ` X@Ņ?8QJ ~4?e Ƿ cjk:4<Bl.0*Z 3XA~4Ws ,d,uv@8W ,1a&rm GafQu)wPO`pT~ X 0+x%oͪQ"p/f IDATq`!lH`s#kGWѰ͜XѸ%RֵO XLތ!s6ǝ| d9b ,c ;_`Qc{c2+{ϪjEU#8XgWk >oh5D3d|2HjXy%I]QֱhieՊ]{k9n^Ry,y;JL{jUkvשR X<^՞o(_ǴyZ. Xؼ3BX~#l}k-Ŋ6h`aݐ foɡJI 1b)&)`yjN'gU4)R}MZ'QRxz+Wk+բUL٬d/Z ,((ލV!cJ5` Q>#87R\qأ0Wz6d۴ֲќr)7ztZ);`Aߎ/t-bS ',`a 1JOpU8 [G0:lJՠVR ^*Xh١Bs6`1̆ox2Q6t%ɩ-7&6hg̘ȶ{j:=p W f76oMb+XTZ;rd:Xރ\k \أu/]ɞ!ImtYyrkM,'WC^5yr):1m]S7 ;\1|u1T,(Ŧt?, X¿J,+!I 1ƂV~7ΏB >N gR!, Զ 4R,STXTZ!ρZ8#@fF S3+h6E]9+R]F3DUkzX aCQv-XX+Gݾ/ { aCBZuYJs"-Yc,(Xv!)yH _|Է7@Hi\Bs2υeUACY U%豐X|71@ XB|rq3^ {AoDKg@Cyghd^}XK5;h ~[;,M۩23s֟Q18ٝt(Z/&vdEZСv8oM WH3cq~%Μf=꺉oRΛ}A^B_JIHY@mS)|"ʁYd;Cus>_,{IosG qC|I44b }%9BZ&S ,%'Ri<jhz%56s% #whTT CqBb`!PV>oOd Xd/](ug|"~PwzhRfiu%v,r5nz-˷d!ڣiGޒ_vE}d.s6 45V/;zdݏrx1ݜv`P1yѻ'M%w`GfW hw.Xw1;IJ]tw_E-] %b*Xb-Xbo*X9"!!4žn0;_X!ݴd+ T,PD"ݨX T cr~;_࿠-1i};H ~ T,nDhQ!ӟE`FowN:c{:Lt#b`wA#qӻS T,nB(AD E߷+9_κ;bh횏ih$mO T,P QR'iACtEUw bI,P@&Pq⏝M!a ^"]WTi.֐]Wv.FK! 4X,Ty+l(RXt bC^xڐXtߺ T,nJӯT8()K)& # xil‘ =k([QQ=my =WiDxNWpUӞ?Ҵe;\(#$ROM,ȤDSy>\uu.kzF-;(4XI)b1V0]!2<"̰AS*X܀ I4)?^1Z?F-4~-55GGzS,HNW\ \,à Ls}>~f{[3'*W%ckɴ>Y\Nej$SY/ImRVCkoiUz(o]c}uSķŷ 2)&B!oFfrd˓V^.v/rLpZ>IAbc!/}luىLAQ,OpAS*X4"/.dI"W0 ^ YWe\"l b0 ɳBj$AǼe2ΗG}9%iJŮ[(,ףHV~h],rP uNbU#:rc|J~hEak ~!N5 !#_7W=T#%ϳ/Z{,%fiBp'mДb*l\j`L[5c&N+#(Q/:ɿC,DjTE3cѨF@LE-b7j(N,6 Ot4c$i4 LZ X2Kkvy]1k Aj_(#)8ds't[Ɩ_,vO [,F+AS*X4Ll?FߺطGc Qen``ԙw-J|XĭQk#gލSY^ $. J׏o043xUh ЉW9,ƒ@:๴~lh|2s'?=Ӿd'Iy'%Jܞ9)f.>^! R,P@Ţa@9ŒZKbEԀX'S))bubQĄu;Js@?;3DrW,T+Km{%|Q*D'#bڷ҅f|s++b>b1JYrX6hJ@dS#yHrf {paP&b!_'2uh.Xu=Q⩃>bቮI*$bQJUf# Q*JXO5wvK т'#bڷy1oG;ybNڠ) T,9H9˷FMJ4 1{ e"!IX %_'E-b1JD4N,C$GbቮTYS*4X, {N%aR\iV?3{'zvG*D/b!v#K׈+i T,PhI8l9G {/Ub1CG,.Or|Sv] S8HR{*'!y|pb^p1W&eCI^pE/nsg"dd;\Ln˔b!v#b-XsX86hJ@ d[ [IGS*{jNUS,bN~߭s ۇ[ 1)llB,60 Z&)V: e.qZSOFBL&뱜Xt}F9SXI4XbEl9>ǖ2CKVѕ)u}Υb*%"6Jc]eXlPW,~-nϦ7ƠE s!)( ػ5/2SU,ARؖOAbEsq>8yRS& _4*XhcIzےp2dGDCAY E\|0ȕ%!`߹'Xsn׭Yg` E/ڨ`AǂEtw(1uBs` ΆOi2*g 7(OPkDUbDACx.j ]ѷ%}O ,mJq3}m)Yˆ?Ă`Q޹7X5 @ |:% u艹_:3no@սZ &+r%Xʾ)RIo =P54i kZgZ5ئӜ7XLHmecAǢ6_I箧:sOHr™a:/F$>+XQz,B%vg=tB;>,:E'B\g^ofW8kvj"N~lSܬoe`i @ENQU U9w-͈$bzsTߪm;"WTMfԏ ' =BSGjZ7n׬![s < WyF] :t,j3~+{!*?wiR曁Wg gT[˛F{R`R3IBJ,Zu?,,\ԚߘXFGrVEeգB`5eŴ>f0Ә*W庩zJU\yRE w-jN{E˰]{iUy Wvk+Sev`qh]mecA|T^V-]=։3{=5~oNsic;7Hm-P:+.T,?-Ջw\}_[g\nyEg|{WP2,@ǂ t,X,pPrPa@ǂ cA XcA XcA XcAǂ``бc,`бc,`бc, бcA cA XcA XcA XcAǂ@ǂɔHw!X}Yw)]N6)j  W.+"\![cHd`)2t&RUoIXÜJatXP<#E׻+2y[,`q~IIiLj`^.l,FcAF丼1X\? J~՚zu,t,X۲8-ў&/XN UK~چc}c/^~o=ql=N2@@O+}1n4N[e<̵RϺ1`$?)/)&Z/qsx / cPq`ӑNF^>7;r}{] ňnv'䷨drjfIJKb$do2쳗2dQH)u幞L/ Um,ZHd c3%bz=auUihLf[N!X5ҽ{L= ɖCQt"03o-55O)zaD6\\ UFmftB7GB#Ȉjùxl-w 4kقbt#Y\lŔa$%f/`z8Xб9~~-lyyX,Fq;X "$nOS)g {ݴ~lWt8Z?qE ߝŞ/΋51#l{ r,EIdr[ ێ~jY-Zy'~J.1XesgQh=Zxc7=^_]pV1֭}Q)ˑZ*64 q*HnuL;ZHj{}tjn2g gWt,XiiTSDܛ7ߙ]T{Qx`DHB2|&'(o}4Qs G{]F7u V:/滼3886x޽GEIOHIddȷT8WprE䭚fm"+j'@>Ħgvb3{jb Wb@ 6aLQ !LZ ). tSzʒNyPOy;C[Afwz*Z^kV,bEbZO BBz~bkn$6s<:g.@ko0e5vnv;3>HU73-vOH{3ɼy `\κڎ4:G'>$^Lx59Ga3#j׭E0x*ڄ_+1r"Fb@%.`b IDAT@JyT$JL\>|*4ʇ(ۈ %"U!E,%es0EiܤpEWT4ͩ$7\n*I+l1ꓽ`dS&`BP(F\Rt2ɭ E+`]fSB$7=7Bp?Ʉ RP%i_80#UɆ&Dؔ6!uQX8'Œf, C+Ӹ1Iu i0Y{~X<̞HŒ/ Ґtin4 ;,b_w\a?x_78O>ygX/f0B|V@wӢj R7bd+lrg1'NB~1oֱZ]d)粯J?6X3<#H;/S[JdǣܻX6Z膐خq ,Ga3!jyn.QؼPj!,|i[Lj9J,j) ~]["^ {,%a< $.=*ƬWe? (.sg:St`dhj6k?9/Q'`BPSxh#(][`@u 򌖤:X[qar zt2ZZOl7+'Œf, BlZ|m# rqD` ,<#Sv)#g;̄ b1(Y;%%x*c93+bP[5~h@"'NW_aBX Uz)b=R-ZUg|EBoulթG"Nu#GdW7|tѰl=XX 3(uAWD=%i`Ha,F,k7{xmEa>oWvZx!k*X``{  u"oo^u+J'=c+Q'X:XH?WO'T Y+$l7;Zj,0c+!j4>+ 3:W",*R{rKlVaj`̀s%|oSۜ}L}le:7T*X#XP+ y{C-](7[ XR&I`?v*Κ\}nRX5SE0e6Af,l 25_Vt*X"c`SŠkVOdKA}3 Wy*I5J 5ӏm[_Rcѡ⯣O@PW,zCo] I{"=G)i78gt",r8qs/ X BR}hA$f,0cqŬgX XJbVbufZQ'c,/+ĸ(Xd[K|>h41Lo~DHZON/,0?  u"7. X|.ǻ@Q-wSOGO3>.+``X)š:`Y-9+(@f,f2er$c'#' 9U-z ]*Bޔ4'Kvk,(#@yu!q=""qKJRAegEOX@MuJM~rIEj!7@0}@:|jg,|>#;_[CҢSk/?aB,~3FR+s1k `)tg^Tql=6Y:1O(0q`yŧ>׋ŷw~.?ˣbJ^ WP(Os?ǐ%P!־|wῈZggB1Isx C}kq!1,BLqJv@ϥ_ g18` XFg8`2/$nztXQ;Emvzn8'2ô"{,`AjؔKJUw+e}FGZsk|RlpW(K9k} }!ᚫfqj\ X@,( ,OMiѾ?l9B,] +KS0PpXXTd`_W/b@X@ 8#^~");#n#&>(jϱ28^Ma(U",jo_O  ZؔЌ޷m}Oˆ8mb^=(XP,( >/\~`}3'I<6_,JbhR,XKPXP,(k[Ǭ8 V,rXr3Rłb ] oլX8ݲnIv b@Xb}bX821.;MXd1]+XP,(H,+CpW e$!c>ТXNEʢRr)9I&b;~bAhX8o_ӸV4v:d9_7J׊u+Ӻb@XlF,Mh9W6-rQ[CP,+8pW(q|sR/&_?`łbsWkoTv\3v>wD&Sv< `wE pY łbX łbXlR,pXP, f# bqyEXP,({0rkPb@X 0@X Xb@X łbX  bP,( XP,(b@X łbXb  @,(  ouTłbŇfTłbŇRrqu%g*XłbATɍn:{:\lt_ałb92-ƿb,eh  &yB5\yʼn$@Eˬa1XP,( 14zBg+xwgE9UL\"OWJؘT14b7f@z|nXdr9{1J.8T1 G!WIk_u޼\连%L Ţ]boـi1 !,6꜕5|!2 EMf;X5÷>ҪANJ7g;&RvxzRZI&Ob@XX '^qɀlXlYl*JVbRIy~^+l k t\%u@ }5R9S'Z*AK@<%*tJ Bcʼj9p?a&łbfbqoH|Cu)6|\ggWW۸fъ3x\\V@[?:8k,K{[,q7UgI^3GGj@,(s⎝y:>58y[ߓUc w '?7'/u'}и׎kS7#xvR8,R`h[ cD(R6fEUdeB5 S$UNn9KH*)ln&/XP,(-~w.8./ܶχlxvEm 4ኍ[\Q7,ZsŢ4n*>0OBwmLX4|mҖ4ّ<&/XP,(m-CbZ'i1COtgǾsYo cb?LWF Ѕ/4۟8sBKEc;,ZrtbJHYEc%])~U,~X5;@y)Kyo*e-XP,(m/bF=^- q&쨸OJ .k)qF=iJ N 7 m0֜>Wcb%v'AX^Uwrl_ałbѦb1ا|Nv:b񓘰+N{ +)S=fO6E.l*B_ 5 ),ϕ6Z,ESb&|EE Ţ="bv݄]YS@( qDk(qMLVoV;tO`h`Qbio;uxfłE \Ǿcݒr:.@,(vA){TGWBL7:kbH 7j~%MHƾ?WR7u"[+k,=mIy@,(v ѩ_D58?Pb1%nǾ^1 o0Hkk,Vh$b9]LQH'¯`c6u>xD ŢĢckbF3=5Xo(_F+6pW(#dzqV*-rqV}~ࡹp]]@,^Ņݿ-BehsX~sG-M5,'w[[> ǟP8 ~ޓL-s1XXX8Ы+>/|tϻ9עk}-Xvg{߸uٽXX~ XXX|8}ӽ>/]u7vgb{^yuIJV,.u^W]Y,V; xb^џߺ<+#Z,zo|s7#K[ uއotT  cczJK2 bXXX XXX bXXX bbXXX bXXX XXX bXXX bq9G_L x"2=JI!O:b@bAbJE!'Y6/$RG0X~=`XXX ++b}:=VLUD @,NZ,bb@bAbEl9~EL".A-AR Aa؆ I.šJY6;vz9?WE2\>1joQ} [ԑB9G27fJ\$Kb@bAbX@,ÝLjr̓_D%ȮH &fuaLL/*{ ?^c1b`@DR{B6͕4*e4o]Xlbq~,(XMͬ\REu:HrE@MʚJ02ՁR0 C5Q5vPIFn0ycÌX23OʕTa`$ё0ⰭE^,U( @,"h"XMzm[vr;3}C~ш Y9vu'仞/:Dx[5m(b:e!- (j,vI%JMFBL (J, EAbXXX +3_T-AB{j@5N,'|"=dbQww}uKba,YL l/ @,fb~- A1]db !ˆqv=^=HŒNlh>L$b 57b? 5ٳZbVdebس!LuhbvCgb1 vX\EML+:Xb $$jkSUʤl0̪3ifbXMƇN'oas< ټVԏ5g`4-#( !݉EuKeߑXxPqu>ELGegҚ^e/I,fb@bAbXX8fͳW}&,NdiܖY]aDCfYyՁ4ڡH p$j߬y[$5,ϢjQf1g{w 5  Wyϭ߱"i#"i^,ŪEۓ}OQ1U)K,A^qBTE͎W%@Dr<{M}DZ9Ot nXW IDAT+w?o!1c~5~l{j?5{MI,QIzqBTu.E!b\=yuSۮ}Z3hu5  W\uK~XTElLV}8GiB®"*?bR3:V0cKiu߳,ݼ5yY80[36@XbrXF#E+"ej|5כ79@Xb7׺hiX4,^[濞7a KB}H8mϼN;ѦmXt=Nm)[Q?#,µ[˂,)jaq|e`vB-ڏOþ୩SߎLTJSn|8W?g'C+l Ӄ18Z40z<3uַfsո>rN`X#N _,f{sy~/jGE\2?&{s_);qvo~ݍaq_vv{/?\5[-xgM @XbJ"oh8|(Mt.ND"^{r :g|ax/H9 ^O:&1#i<$,\nX,,;?ְlH~(tլ7DgP>U;\b4zkǓQbp6\wHkbv?=¢e@XbީτDʻq}}f+1Hvؙ-ki"=Rh=,.D<^@GwTEM?ŢIaQٙxâ~wj\Jk!QCI ʝ񉸺q~%#~L8]x4,,_f/sPR苸1,hn(fb>nկ'b+b8,8"f.,Gk Usm=,=v㼰hQW a EtkyPykXtp_?gX 1߿fu=,Y^X- a ,bah^{_/m1{%;6,PIa1!iܪh~W a E#} b7ۛAͽ8kO~Т/`XK/<|uvaG a   ł]m?@#tba*n-  `` ]b!,EbaaaX@ᰰXX,pXX,,P8,, (   bbaaaX@ᰰXX,pXX,,P8,, (   bbaaaX@ᰰXX,pXX,,P8,, (   bbaaaX@ᰰXX,pXX,,P8,, (   bbaaaX@ᰰXX,pXX,,P8,, (   bbaaaX@ᰰXX,pXX,,8}'7_Oe"&w|~"Fwx#ռdR{vQXX,,vG7[meXt_@X<(tmcKBX a; VEODHK "FaV*'۾tNbnwb1va1_e -J( AEM&! EQEBBP_ls)=w dwg<3KK2^@V^oo[P320f_/,̊Y0fZHg,BxWFXaa̘¬X cFXaa1c baV, H:|?v$"|Sо:MO8jG6twDN/0P;_XtҒ%P3{q(ő}a[ *7kPXckEDGtC@P:^WJR5WN<#~>ŤqS? >_K&Ux6_hf'B5[e̘1.,̊Y0f,DXΤ(]j7Ҽ#4O,@r$(îrNȨB&'ĥ|(L`<qHfB.`\ԢGYΆ?} y5D#6IGf#.mg1ksZn9׀#A +P ?Nc\d_%/R:P t%omm!(8sl8:f֝IBv`[=j 7n.,*̫a\ZKND]s6WJNO4iq`=. *3beL#J X|\^=὏ Ǐ;N$/x&zSv~qJ'6\Xn 7| (<Ť&Pї2-"N.̒4 Huxm3fL',̊Y0fL/,jQ.F:K͐lQCT5N99|e͒yce5#6 H~m&K C] w!:1:]8,6 =eb/P@IS kA&/rPBE'te k28mG>9"w6?O% +,5#!mOO-uIaRSD۵P8jO,=귑4f̘Y0+ƌBXr#jwN_{i#QX hI9bmdArek-6Q|"',LjȃfK6(9~*?)qgowv1)%Ό.~ۗ7:a&1?b'"2vȴTRղ"{f*J"U@~D68ȋ Jxc_Xda,Qq)H;ykCuϺJ$fD+:t؟ 0To8LXH_\!$t'BMB1:/rkΜ+~T MzX\N^ RDͫǺ@kwZZ,tB:3fV,̊1c;ׇ/HV_ Xܨ/Ywb!\VO'Ä؆-D8jAJNiŘxr"B@= Rgl ).[?> h؉UbqUnZ K~mqɋ Jh〰5w!O),ҳ 0To8LXΏMگӛ%wr$̂"] k6,4-i/qD{tEJ98@zBex[PDu@nMeeoZjpa1=B|˔a:Ur!%ʛGY:}N%Ԅ`} uIð +TחN+jw愊VXHze̘1baV,iy}omS[$ ¢#{чm7= o/,F 8U",[D٥dblh":`}$ "?cMfOz̳QQ]cŲm@it˲NPJ+H^(TP2Cߏ. ,GVFE2X5OA(`(NߦqP0i7}#U*,~[T`LO"SQX(1,uJTŤeRT_05r@~N 3`=%zιA3`|V{i~5Pc֯IUX: LŐo4'Z,BĺAy3f̬X cn#,otJqB޳TOX= 6tq nU7^X0&C۱AZnȹ1S>Ran3cY}l{M8>UÂwY RZu@b\gNJE%/,E̙P3k'AꭀuI*cӷi",tJ­s+[jٯ"סz ݊3J9b+C5Rꀖ#Ym"e=ۥ‚ˁ=%|E̔mz:vUu KRpz˒ڄ =8v -Ԁ/N,B&i̘1AX baXCatT(, JF쥙 0&,脿n.,pଷQf u&,Գw+ šngTc[@ԽY,Dr [+@MK^Q4h UȺͣ X>)j ӷi",t\Y| Gn$,}nE`Rj9b+Cj%r+< v1}. , h\̔:QwOAC#/t w ?{>iB !KGE#a63 baV,dZȕ菜 !,`C & y$2 |qR30YCaa՝2$7ydl%$%q3a 9/u'vA `t+ >GRĴ~Oajb+80|>#EC(/ehzE]F4n f,QX 8c3O`>7 ŝ9DXI1sZʔK"ͻXzat(jOBaq3ɋza75^ mY $/ { `Ȩ_ [ ȍ B3EOXLyx6dEB+,`8ȐjX$9{ԧ)[*[챸*ݭF?V A/,oSe6hJe"=DKg,p",&W9}U/55^Ndݼ*ԼIW^^!ϝb^g xf <2'XO4O"xI17n*,!W{{j JS6d[il8K.6]E'_X&,hr @dHa$%ł6sY^F |p: LWD 梉ZTs1DX  "8ɘ|Qn#ޡA.mNW4Baq.,h 씳Sn{<%M9Ok;>MR:N nR:֏|PXNHM.64DX۳/ )M0$mc8q0N:p Vn8ޑbEgaqVV~k9 !DءC+թ ¢6wN~sra2L- ,,xp}>o!ڠ1bjCcf m /8c3DaS~xۥ92$VNZ 3p &U'x=CT]1 }'䃓+Š<"cU7sEz zau|G}٩Nf܀Cy3#%^&6wl8w";i>~-5[ HqSa5dq#e8"@6(T$Bcۚbwo 5(,F:>+ wN e;;%KzOI!3 `Sى]Q̑jZ25 ^X-5mM1P[tT鷎bs~o=sx! iϧ?ӄb&`{QZ WFv:G;z7JMWa"U$|t=ߜ"nvhϣnuym-mLS7B5j×(J6d&RwN޽1E;qrMzG%{gd|*_Ze~)jqH^RL `Hҷ}8ΓjV{b,+ n84}w&a~?Ucl'>Vl}U  2@HX\?hg!dB̈́==]8!VS9o$6? ?ϘVXQ#[E4@UVi&ˉ*#\o#ȵ9Xaa>gҖ^Xd ~Icn Hs?/7[`ֹbGwO*4թIqK),n{_*{~)WKg,^mURn͸CJm y^hH16n*,!317Ǭv& 76 pCu+f;$,j4(/ IDAT{̵-3 ,"C"ء.z8cmY(Wy\4+y$?3Pdee#֦pJFʍP}-%\o# B 8c3Cշ>2'AXXVKm5Y^hoy3 wɀMuKӇ\[/-3)QaZ.>`v,_U뼰ˍ:t&-_XfH e鄅θYp<,S,u*/x#)/ VD_t&Бbj\X@C}deqүM/iώЁ ёf8>z]ޙeZoد sg'iGgKa pߡ6*Xc.\0 ;źf_gʎZi< nNx.pyUSb+k~6& @ 'zBGezH-Szm8T/}hf@Fy{ 3FɷQ=0-}t#O99 /{ ӏgɓjXrD)W(ԯmK腖>DOX>o/OLd'zB #ǦU΄L_{nJb?>AǏR`2yv] d#,PTϒC\^Ŀ\XX sa\?w_>a@@`ghⲜ{|ގߙv Xy70 gb28 d,X c d,p,X cc@ 2XX,@b28 d,X c d,p,X cc@ 2XX,@b28 d,X c8{bb2:;nu`/Ǚ!dCcLxW%~C(5cpUA~Yo26y𓎟zr/|̟ Y uuFгX c]1X g̜ډU RjNISiVP,&⬌uXuNjݶd@*مق27X|qJ{x$|2'S17覃jb2"2XAm A,Rg}#[?=;;{v{d;5xMiZ@޿ifhXY]:{}XTGi~zTwi0Υ{n:.FгX c0GȐ5} \ *'$Ke,VN+ ; Ă|T JbE ho*aXDWbA~˝!㱾+b,B_\>i;łwCR뢃ڒfT=2X4F i7cWwb bt]E,fԂNł~>D]1u!dc[5sE^~]tP[݌ g@ ~XtO;bX*X6;>\Y9p8wF, 5C+p.W^/fc?E,~{?],@S'_:?$X)|_={ogBcA"op*x?nJ36O:~…b;j=v-B^wo%Y|,<5Tk3χ.[ĢۊESE=zJ/_`ίu`o 4_l5?XxڈʹdZKMӞ+mv3u/M냃YPb ~H-DMxnZN+{(;ƫ- >p*X cl._esD8KGQ"~-FHe&Dr Q$O4%$M}Om5;SK=QL*.zss9C7(VEqCleiO%'rDƬ 7q3ZYzOCwaդf/CwW"g7 b.E()b5B_Q,&YM,/6A+,ޛEvTL03.w%/(+'.;&TRv $k5Z.>*N0Q#Y,َ3Hwl(~ZV^䶱Tb[DJX_^m7Wb"TӉ ],03muf6uPl!]-ӢhJG7-JbGIzy;G;[[R(b!l_[7-Bj|b֖%YojQ!gJwt-2͍D]~,; .K^iӐ*="4X c<W!vA_'ɴX y7ǯ+&:˾u5)U b{6bqلv& EU5"oЀaE+? EGnXVdmnH$+HU,R"cLNݟu(CI>NkrKfVNđ5X\) $eg:) 鞚W$B9#0[ ްq&f¾D]~Z,Scfk;*; o4#X c# ,kq>`pƈ N(<7sE,)5IGA !GǓ~cM\GʗZsR^ j6bR0ޙ :*bU%FmEw%nɟf~\;TRmJcqp ux4}`&Ү6DMyˑʴ05hw 0 сI> `1& ]2SZ'WNX5>(ӽB,sǰ|k,qG_\CBE38?7ƌX3KlK-6EqV$m+Oǎh&$XtnnӉ.Ẍ }wFzt,A^ʧ{ t1 `x;[*CR|I, ,Dգb`quirJ`c(lNsK'Ru8 %΋)3f<ca}mZq=<&y /"NnR0ؑI>{ڳU҃(ךG? Ҡt%᨟#MqO,fM iqo,k[7~.X5-9:pVJ;vzd_b@Q.BNf,V>֐M 5HKGE/?ibN, TOļ` L ~S?smqsb m٧vj̟* X04G9tIJhUqix-,m"Z_,mӁ2 zXu,x4k {>ɇ1-|JUt|+ XB93Ň4 ?8ƌ3 0f?Z̽<`=%RsVuUnԁDn (҃řOfO0;H XNxIC3VQdWFReb[X`aa` K@ " QpK`- PN]Ipm~gGoBGuRcVyW J{r gOo "-~p(oTRV{zh/(xh,^ =Bڂ1>Exjs{_YJ,%/>Y.X|4`a̘X1cEG#{{[bȫwju~ X<_^- ,=ܺ!Q xj<1vO`aw Ս MB땻2vzq9.aNtKqݲBT^Б,^z O>áGZ} _YvF5s-(3FZ/]^X뜧H &PX"as[_DLX(XXk,XB޶rmaIk @ ܌|J,pαX cƌx,O=6؈GsG\jʆř@(Oh [7 G p)6nv?X0ַ_[B;=X8r{vFj;6i6y,BW},]͊)s`чRQzթűQKc2Zߠ:ކ7P2|K6­ ,GCܞ.c4h2=KZ vE`ޠ ,n<^KXGuKj˜10 c~±OOGE̒]g`QŐ{3na-n~P]*[GCTJ6b`SFE:vz1?%X ݠ~bFS֜M7ӀEi 9 I eL_S3F'VE#,q7?X4E-,2>,$O` [ ߾I+9_A%o Հ1cca<ƌ:u X0κAFJٺmRENrQًnE~djO}@5P-4,ԱӃEY!Ty$8NBQ,O/#Fr(X8 e ($!m H-؍/3v:tҢ#)mZXU E\2IXZuT Xi `  ʛ Eƒ™OA),NkIX j ,Ӂ\?Ex]bĐRj(* Kř%/?.TƌX3lucgyߕv K(X- X{"]KYĵ K+PZ`Q'R*M ,Q]i)`ξ)m2; *ciD"((>GVz/3exzG[qw8sƓ&!v5%,x_7{W!R3d,r9O5 gB=EUDY4|=^d1繐X|"BvA,NEhɋ1 ? g!훵9΋W?9%-gřWʈj#TF´ƍܷ x?6շ އE˗  `5j"Nb.b=|V/OM?5 il3Pc˜)UQn}n$dYCI @1YkF4BZFI3E5-LX)s-{% zt̖ۼ7C2۾&ŲXO+,%13$_"tx0s"OJ9LȮX]$mBavQ#,=K28JOfYaQkn*)-﹋EkqzmIT)s VҌEbaDEHbccq/ʫ;I<߳klRx]V>M"'kYd ++!O:A10֜ڠ)0 \Ţze Kfz'U_36=b!-ַqQy۱6S\_O޵Vޮ"!8%z;Up d,h oN)nޓʛ"F=CYX(OdmI_Qo|×z2uQK 04AU/+m!ޮg, ظJEcB|lV%ZжX߷JF,XHB|!Ti* K~Y˄}w0&z Fb1$Q=k wkQnmG^z#lۉ omD&j޿v/ IDATXg,]N(jkC[~t W~.zݒsip\I18m6Zj-XЏCIXT_id,9ވ%lVr<"0aceRR bY54 c,"1% $Qܵ3{X .[ %!U,zHV?Y,0+]nV;,/Df :AxW粫l 8&MJW"+D>U,E{U, X(#M #fA3-2w6C2_O*u XH@Z6o{ "8H-W&yE%Pv7_ ? ?KQq/C#MS-[d?EM  d,$=h83*JI?.b܌*m_X(1$VD{ei %GV> T7bD5HjڻV3 =)ųX觰DRonUlsG.Ăgb"] f}rzlЋ<+`["OcwPKn3#v1N,X5 X~]Uhh 5W->F+h3?D|4mfR?_sJ.f[ΎʦE}'Aob߆K*GVҖw qe19F|f*%#o"zЏ5bfrU)k\쟬 ̮[X%}l"UB/5; TY,6%X cwBpe^BmEF<'D[2߮Xtoh_\O{>R=7Syk`ĭlvEw=WޏXkzthzϽQ)EMc>YGP0{}_Vh`No#8P xr%:v[QcaO"~wX :_E'6 _j\ŁJ6PS' d,m@sČTMRl?o1R٬1X64/X cddRxI- (}t*XxMf*:)nE 3hY,@ *" xƓ>4J,fA@b25!4AGu)u-OV[~>k*Tec d,k4"__Y[9ln^cha% d,kt~. hRݩp ήU-4b2-X c@b2-X c@b2-X c@b2-X c@b2-X c@b2-X c@b2-X c@b2-X c@b2-X c@b2qXܺ x|mt`]$X c 62H&Mc68ֹ#::rꝦv[S,]I72w`qeJFwU\< МX cT=5'N{\)3. KGF1E:1|:2Xt>xF_6 tB,@bW5ՔX8qv#d9ԑyB^B,bqBH|4lrWA,X cB)q+%*-aBQ!d{HH[ub6Qz!B27SS!!7 cv2X],A9pj *-iB6vd$| bё"oEý!4/X c@b-_JE""3H>:0=ُ$ݤ^w=?8Iv>{Nyv4۟ ,? gc1c0;f˜|x&; LT?g_bτ" Tm #;)!te?twv 0Pk}bGg7~2MVzMŕH## iğwC4u/|Q!8JQBSƠ5^tH{V+a"펇(Jg;"*3gQG{`No%ZޯBq? 3m 9uaMᜎ՘1c0;f؟n]|a5drVvʏx^:sriУ/ҘXCݻ8_/?dfzxB/}-YɃTZ(1BDwx r Z'D!-LAC!HVIJ}UXe3#\ĪNeA Cb\Ll8q:;7^xzKHYO"MLU1*Z*FȡXɂzI5tG3ثS?*;>Oqsuc~0I50C~Ag:.1>ۭO=v(E<0HyocF6yQBUA‰e&/?] xtܑOAHU !TBq) _c٫:a{3 ^q"YMBGƌX c%F~eˁ9(3>XEl%1YmU>Nԗ_evqEsB[^3t F ,)oN_6˴HFxyFX oX4YR}QqԕHR8%SŸ8*ݵzk 8Ż(Q &HO9Ct=ԓ< vhX<ヶ6`YBʈzK @NX<49m;HnYpd5_Ψ,r1o )(5z~b6^AjDu+NX(nw6mZXcxޅ5̮4J",:Q/UE)6aƂG۔$璽2@FXR@Wz8`t822)>>:0!.)MS Ψ$`j>"p|kUk^r۞ %ɨr{_ַY8i}mu#:aU'\F[/6y[ޙDFzeƶg}?.339p>9 H(9$[׎)`C"+T@PAv;5tfay&w?o\ut g_u7@3;f˜mr};>dsC4`ȷ_Nl3BnPҊ ,O8@II1se by%G OC֭}k]̅E@D;HݳㄅvyV"nC#0] +@#] aQ5Cؼd5 Ob EnHԦ>dT?pH‚-Zi- nGIt-AJO^PG)G.&FnEm߱ht߱q`>9[yBQEi|àѰͻEz-c"$,"=RBB.T"iBijp 4;z? P0^e!,_q\ ƌ ca̘da,V.Pqm+< =JS.")XFX,zonǯe)pb`) cyKtjwQ%W*?Xm#6;8aKx/5IK+,W*05q[ZVДRXD0r¥թsȾQ7'{૴J&PXֽtǴ koxfǘ1c0 0f!05mB:aђEV}#S?6> utg@X 4Gg^}+Ap;)VbF%,i"j*6oK!ƄE2|]\mۻu|8$3ʥu ߡBzJ@X$1FkTZ AMXt*^ZX7BOh<[xqB Aa. DI \aq-t քyy3& 0 cƬ"YP!/ !]#,0}IXX[)ywn$3/8$sRX|~7>tŏ"V@a2;k酅_!a梨tNX\ JeBu.PycwKB!<% ,nU|Pjv@-,ƒ.xK:٭T AzZGAغ:=1]drb䔤^:ӻ?A%E-/B3Ad0 kgoL+"T2cLd,M7t9P eiwHRگ[XXV4b&ZƎJn\) !v-ky'83̻Ø10 cƀ 4_?v _X{Cp/R4qbw~$Sp(,^$AWnLX,bԡ{aRy.+_ LT.KXSSvкI!,+n) ,ƒ.q Fi:b(}=UXd6udr8 lAa 8Ǵ +I)i̘10 cƜ :4ZCT^Xyt)8s+_ PUJ%1 EcS%^3PX`Z;>A)>UXl!tʦy64b[U@6AX( E' KMEN֪)AauUw#p2o(,ƒ.h(,xa#aͻ:WժY1& ,7{ 8:mHX{1_D垏j1cƸ0 0fByP{9 Wue ,&}ǩڂw9mJ6]8>L:}N{!Z+hv)b/z(,6c(iGXlg #oN{Ʃ,,Z(${8?P@tcѲībs̀KMş6d7&,SB&1HY.9 6bF/,x֗tdaCKa2'O:& B2A"v8{E ,t;]+^iPƌaa2&ca]휰e_CEbkNX[}F[@hΡՉgz7  6PmH(}tn *#/BaA`[щte9a'^ =8x&NLNK{g4 NsqMTaU!fJ#;(LB!!U-5Ζe[<.i/7~mTI/8UOwT襒mߒ&i t/t"HrVpY,8l_b5iNC`ux[{07"֜l8/   ]͹mIIu%`iJ8 3=D*w~!nI?& ZXXX`aqe6=ng 60lv5u` [㹡=G—= (,p,p,B>n/Ơ",p,p,v5cc:OO\ؽc88@daccYXXXD88@daccYXXXD88@daccYXXXD88@daccYXXXD88@daccYXXX| "iHSM>amLω\ܽ}vo7"2'b,ʌ`%ךбV&?ߺ-5oAXDCX   !,:E2gvHX4&SGkeފd=J}88,2[9Yuws,GkeR-K"n'+r}=R(+,FDN|ۑ^UvNXXXaa;jޱl3бVkc;EAXD^!,`W   }", aŷQXԝ?7 YBX   XǫFߊ/toгǏwV7gl t^h;h I]i3b~"dS魶PAy%ykZk%ӣ-FoNTecj `זho}¢,?![i)(,wIiCJTIGxz[E3&Q|آPEFR$=+&})b.˲D2߸+,Z)I {<RYς82#RlibXO-~úZ5ʤ{j̚Au#&-YKvv{aQkˈe?X),.a Zv)fU}bͺdtMZv8urJrOXֲݲOVuP؆hl OC3-ڻ UnljhlZlYOLjxVp~A۲ԇzDX^I-cZ.D =s!oYҴem(P 'WU ծ8ׯkavXvcfof5cw   c.tiz[Q:qԢ8n?'W{뮸>W~yo78:m[|ˤnH5\EOXbP%Ȳ"8 "F.p%aqA2 snǬ~rLy&ӋU8v_o>o< ͝V:FѴ^1iϽuHqKYmR4y|c˭?.,vcQNEyZYTIY(aχr+,Ͽle DzʼK[o.h4w,آ*}ESaA?-UةI&ݬsoqF1]ocFN޻ޫURKɄDD7B{RWReԪa|Q*Pn%9[!~a.u،gݳma,W, +aI]=RzΫJ8|^qgW[t\X~ʺ1>q-jrꂤfEF:~UAXT 4pMtc2* /K3)|آ װp +?]aq/-,*芟ZXX^mnAyD*}6+ lnHJ?$>#PMp՟cw[of>jҹY{-se?%lEy{ r/~P 5N]/e Su_4徣Oa,s] 3g\X8! "(†M& wWDr Px,֢m/;(f2C;==cC*Xh1RpYEXbs԰aѓcs@ ">B%?Ǣ@T(E-A1VB"t@riwh`a'F}+ՙhz: {ł-X+XDzBPą0;eBav'$TQ({./jM7cRUHL0Û߉x散2VY@Azy;2/}/4wUe'}mP;EЦ}iGT|LX}4 %U/1BoB`HC%=N AS)pJ؏RXwTXȵ2Y ˨h(t5b+hhBR ry=IyjA`1(tGy¨\_Zt~//CᏏK?X| ͞q^TXٳsW*J gD=,M&;-d`!;d/Ѵu:# A 2X`/x#R6cAOYQȈL7.xzZ^>AY{wsbJy(ֿ4,CZӽuuG A \@C :edxzk`q^+y>ɪX vEFCj+!/_ P "l3uCB`I X! ˱HQ kZ a`sC#H`.W±򰿔 G7O-iꝊ/Aч74hݬ=&o ֍Uc`a(, +U\X1cw444W,p QHfմ 򤃫DzbJQ+K؍v)7K?e_fդ_⎩Mō$"K6|fc))3g!eĖ5 ~g>XbdŦFMح;ggQb̰UlKP>As&`Aoub~ULx0awu9u D ,jG A \@CjknHjk;gt|T'X\PY> أ]vfs1* H_pE3O,2ͷ,:@5 #oYX3`ALT!Mk`;, ,4g> Xh1b@YzHB^ r\Ϫ Plok@bѯű'#?~MC`f]w`AQE(t5b+hhI0JX0P`1&khڳWԒYkcqEP_GS`&ߺ:Kc~/QqXe"4(М0`yP(@1n[ׂ~Y9I>Q{,T`7non~J%I.k`Ao"b vņ2&"+me-ǀ,$|7ZŞyJ'ִұ3 !1qw,i0  HIבV?XP[ /l>AjAkgG7Vr*/L0v`ln-ZKu-:XԞ1ZB;Z`+bdAXmQMD.Il2,_'[#T7;"YՀ8syfC(H@R(v)4d4zMy@X?3L6aLJ5 Le^ BsXtϙ-p+@QtꃬC@ , =[XHuX92hmmmxCDA"d>01++_ʊN.K`[_Y/vؗ0jCCiRHOn"Z3`+bV07+&,LmƯ6*9Up:Z\wOP~1g]]VM~+mn!/U0f}FR/f{X$HYJU-~D42D̀E GlɫȦuc5g,(O$bg2W匝TS?X@~<ʰsA* |a"É9~HrBIGp*Ґ+ -f[{3Im/+yy@% WCM З?maSdÓ 5Tun--Ncj>o%"Z`+bzFV\2e oQ_]V@uԹ%0ǒ}(Tb7Ey!WM!aX֬,|}]/dn%P?,XdXkl:,ұ38!b!<+#sڵƅ_}_ֹvib?Jyĸ߉ 44@`AcAc44@`Acަ&  @p6m%XXV,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,JhB9  xX4X,h,h,Ƃ,h,h,Ƃ,J8Jgh5v+ %Ypj z%WXEX:E,G2Xh,`Q_O v(`Ac,h,h,Ƃ,X,>p mX(uZBqj~1(Tgl,YŁ,"iMd 4J0 4@`AcAc%X|T$5X|lo,i,mmX  Jhm0l,ah,BX4 4@`Ƣ_cAc,REMƢxE`74@!XtTj,`Q`54@"`cQFc,JPűc`X9z'X(ѶƢMo,>rc\`Ѯ {cA| {cѦ7 z1v9vv/X41wĉ:5X46ZXh6v1v*X"jݚB P #X腅,i,Ƣ0XDCƢS,G,k"bj,`Ac4Zp5?X؇ `=c AƢh, 5WD(XTE($X&6N( DSoX 6v9G(NTca>c`1,*ӂ1vkmN ]o[R oG#Xh>E:,Ƣn6 +XrTca iT`1jhqC^,"5,d #1Q f`z;'XXĜX5lT5,TS,܃B`q =X,Zi,0E3@q<Ӧ&#XE}jP(ǽ'N`74@a.5PiSo&|#GX'*X,fkYY4?82a@N_]\yX <8) zaaLƢ1?!۳,h%Xaja85?v.KÁ0VR |wpXE}BLkg[ IDAT9St S9v爐IPBĢ{P(4Y~]_tmm ێ%Kʒ_Ur W$܌+&[ evKf%+2p7C#>ߊ ḫ[n|,?w3E6/3N\[|Yۤ6P{P},l,RB,PrkaYp,y)>%2⵼kBq,U.6G־`M˵V͏'?D7Ĕs8~5,y;{s*Wv9_f Tε r6P{P(`qxr`?] =,T]J 38g[^nyf5.ʂ#E~w,N\%wɸbՕ&o-/ߙTp9xi1oY0)WL'%r=á~e~yy^SA {en؈{r*{<2[LS֖?O*k?/iPV}PZJ*XXo{`daʂS5GK?~_]d2U{ߓP;ǂg"忡v+k$o5φ˞a}2ߋr8vܰDIPۮ8{,̝ʱ"O6r@TE8jM`q0kЯ%X'  Fh7nbZeRsE"ێ surrRS)aڟg]IuXy{V r86ź5J,_ aO %MoS>/C`~~ f9(`qD 1}P(89,X`!6>,TxȂS%kBnO$mDbB+"ΕڵM[{LOcFP.'zooКM]m&R<9;OFDnz%r<>j}rqʼljaفĴ\β%>z֨SQwNe=J547lYfw|w}]չx۹3L=/My;4S?\v*PˎӶaWfu>3>r.Ӯ@1  m64-`Q Ή,a,85PbNl#Sխ)?{WF/tN.: @*&f@11=Ż9J9j[e}d0cQ2 PÓ<PI@}aJ{C] ,m*;kHo!JaK~Vq78]k?Sy:8(m0/k=mu1%=Ni3¶Rd"cS25jXSS@Ǎ?M_'acS\--yDwc6f2we=0/93m>,AeMبM9sRP{O5>.%%]É161Z[2|T"$H.?$Mn{ſ~ bVzFh<#-_thiDrd&|\B |]exЖ7I}z&/ȡ?qL3U=,#073?ݨ -lb݉:a1eCܟ)m*`{BYZ =I_:|7/vOk3=เ9f רFuzѡgT0AWV5^z0ٺ=Bkhdz'NCj4Tn^Z˴K/BmjX9 kR[=o]˔zԒ:TK;i6Ҕ7H"$O,()/7o?F춧e ~bQ!߬/z۟*Z\1AyK6`us/q; !oFA$[F66 -W'Np۶V[ڰDU#嘻9|tfxVjQ yh5 kMrE )rƗiBuφgi;8Bq8{BKeS[E]4kWfrY# s휕=]g Ps4&!;qkgd^g8Y1uN`㹶.*`)BVk/Rim7ɽ99cVm^Zy0.A~jS[yduH0n…8#˪еۊmY<ċAuQv#\r[ N-H"[*)'6[XgŵosB hiDrd蓆 6E@!!sX;3!Fz qiK{y] ;qE@%ϛN]g䴃@7Ol=ȎM1rUJL̪&8 A~qgl!y_`|_ ~0ߟJu:'IP)~Q-03Mm7013 :7B~|D'B/\:oXX(yH7 g4 3 R@[w^ِnS=n2}$SOkv̻jrv,ͮI*cUAn0nS{;dd',-3xY:~o6tjDI$X2ĢRRŵKK,WW)-v4"b.wA-]b^j`InZ tig nFnԸP K8ajRThd`.Ot{%\X̆s5"DWXB\$1 h)̎ f'!4&tJQR +e/avRԦ P2K$ $+9ii?KрJ ZP9b#PD98ڄrU'_ ݡmINӐ}utIL}:0`6~eC'zhJ/ʴTnj`IzUɸ[Q1~9?H"$O,o&ǻ3 3-oXyFhiDrN1[`Uo2(hU 9p L`(AZ~Wv*9Avp\|qgxiC6uKR Q1H}UY)+;il:z\ +JIȌ?liK q*qjhی Ǧ:avufZ !<*'X0d&Vk v 3~S>)4=Hî /lwsY{![6P9>U jϯEPb2u\ ڒ WҔcԻS;״"I~.bWꭢ=t[ǝ]YSl΄.u&>H"$XTfqnX g bqM7K YD"+&,rp*Ĭ}T]!|EC" 2{3R6O#+OJhJsdϷG.JM\> oS)r'>8ƌ@<Սn[KM~`I^4: OX*h'6uTEH`7`ph׮41Z9"j״'+9]Z뮗Д؁gzں(}3ӗ*!hTRKp Ł\ckC@16\  r* ^(aԿ1QXCt笽Z[Kʳfr s Z}p9V=58XLbbaV56Y(S+§<?5hP[W' bC,!_+b>1"%nߴmf1V JfsB:l6w泌@KV&=E6r\D|qa4GUmFcxE&'(JYiXF{Jmx!=ɸc{.o<ҰwꎵqX2*"4$ 灂x6S_|os&*]LQ)y&gǥ40O/ MhU &w[pA͝6= 8RLG֔<@ݝ@!baVbC,>i b;Y ,vD4 Ixu4CF]n 59 jE1'CBjRnAOΌw[Aow@,|yHn.u uV)IgM;2їb^Y45S*^fQNxɜک;Ƅ=jb2ZhꧼĪ:( 6tu9qla?6P*b1&6m(J6-^q}sX(ݤ"v+aǪu"IT5g&z+;5#,x{0vhYXŁmaXEYX .lue$JO1T+_RyiуaЉ Jpu>0pR°.y@#bIn"Tu~Ggsc3"k^^LŪHkZ\T^3x~ i+ X̂V;Fu$s. ﺖ뚳{;6p^[ZBeo,6Q$#>zj}9 J+γ︚C}Zq@ {X| !PeB\(^*. ľŠ_Gf˘kґW*gQ߲eʩ?J\)+rV#PK qێEMtQn?-"We:T {'@?c,ef=k(xpHnp9Pꄲ#)؁w;䟱IqS5&줗|^όwa>[@osL :$gL[1Dcr% F驍KV|X*o_Vq[LJޭ?]"6Js^+H&ԮaSC @,.(,  6(`WuWx=S\dǑU磄(\YzW[=4)P׈6&e}nFx}h,·IƲQ2Z,%$x&9h^9ٚ0 rz4mV43 u5TM `$%JFU5 6l[){,)ߑ~Ji ޝZTb E]mXl bi}̅Nׅ:r{\})i|)plR4LHzE9B:4fۭJͲ_xTޝ ˗̰arqǚokB:h,·eVgM>ćXz)#Km5S8>E2l]/?hߪ^7`%0dI5.u>;KWzEXZRѐ&k GjsB}ʨElgRewM)jb%"py;U-#(bJt]@ X;_bQ_QD,]osM,۞Bօ¥@{dGGkZ7jTKoZ,{aK{8zjwAƽ8it]]뵠؞jtQ:n>o;-aFUgdžK7Go7V.B O,XHX|%&ϼ,$!-;Y=K@44]l2@n = JbXmWdOY۸4D#=#v3RrK< Į v+#ʒXxm''!fY|,x](\qJ E?I|):J ݁@ J,IW%BX|-,T]CGqi F-NBG 3TII@&Pax5gG,\:"<J,D.Q h,aл!/bwQ 2!P{Xl+B@ w6;qW fAqx0`7cnd de)6~=G0Fù~n?? ЊůN,El,_;MYb diB(ΪP{{߿3h<> t:q8CQ北5WWW<_"~)G4|.~#=KCZ}V_tzr2Lx?:==}gTų^occ}o/m IDAT e&+2E b؉X,P3p^Ģ׬b4y53+YUX4 {ڿ_%qJQ#YWWThbab}ݿ-nBmbԉffoY,[BooKjJ&bj&Z ]vq䫅OWs`qpVj +^q`_" V,X% )vJ?ea&4YTb1B6a6[BR0D0ZqW L8z,UXl`ξb]X.D\OY-dQOC= h!Ћ[bш"/W*X8^+Fg`ჅܰfM(1 y duX/YdFoG[u"faBG iuK%C&T9"W܂ڰu ,$PO$ԚJI,g׷a^,9E kZ/ϵ0**%P+e|p'~nLBb6Bمo䉧,Pd!B6,+܏w WM+D)Ti0NrzܯbC6,#j*{lVng^U% 5 %_ߖ[daOCf1PI~qtI8qHcE0 3{E-X`nu{[nIN+K(,s,ԛzLp[,f,T0";E_\%PX"޶+6 w~u, _ fI+$%.TxBoYf.CE bDB;F\S$R2bP \1rE?,vwíY,#P %+, PN{YhŰY+.hjYxHE-ܮE-aKE+nE+ryn­nI']&Rh8u{b Be!.Ca(g!8<;nqx3b·o"Vxs߯pP=zâSb`yªEF,B}~geaEOYq(-@_B)FF3nH,d!(+^,E(vch~v[x 6Y<.=eQ'8Y5f13 ]-BBŵ#C {]VVZb'E,l?b8 Xd#7L,JfG–L ^޳E c.\L_hj R.˺Xhp* oEq$[P_׷+xɳ[|®Y$"Q y r[('iha0Xs)[xN*db"nBN"]G]iGDrp㔔IE+X vv1XVC,Y$YD'gS {MW -nk%h *VZQ V+B(n߹X4%e'gu,¢.B(E^tXd>NTXaĢ緶77lSJ,Jb"2hy{,DpPZ,[( 3jR U+DsPzj-&Ø{b5,Ԛ1J,i(,Tg}vEA.p EHBZAb{nB䊸W9J,WtX{F|ĢqJYfOCe-BBe .Z Hq\qgFzjً\D[ELwUsꪞg`!"""2/Ɗ| j+ԇyP,`QOe(YUh_ZVb-/O%^X_ """"'fQHmEB[W4.BUűa12Y̗g_oCCEY-+-.j^` """"&)GT)e\qWx+ EXi8ۚ,BY|iF Z$_d`'1MA(R`֊2W̯+"vEcߚ-cb,eE4Zb--"XCh=9KPŝ^+\\|_b7,7=3 Yd!^ZբiȾnHmP}O#ycX+^!Xt\-%YPe(?jg ,KDDDDA DXK"mr֊y+{P-W$Xܜ{*,ʗ짡N/gYTEyjQVB2\HaT5l1"|aV>|E1X؛P+' %WJP'YԣZ- q+.YUoިdc\+b?%]튾⇥ܾ4,O.mPfЫ4[NBn53@] z V"fּ\Cb,PPfP-dCг-.{\ADDDDSo-*VƊV[P+mW/B5.B -,Y wyÝC"?}q'oZvţE)T X1G v',_Xei(YYCZBv!x """"+gt: 9U;PeH\aABE|기Jf(_riq+4O eGYe """"z(xSE*VA{ņ,߲pbPŽ-p`YsZ*TkVk3W(W<6_*/W8>h<E"]h!W =[J\ᮮM """"sEaUB\AE+F]1tb>9x Zwd1f0} g菿""""8>E)N"m3+Z]^>V]yaq9X]OyPjh@ZތepQWt^O?Yx/u(-r?DuGDDDDc.$N!+ + n{YJYT,h1C)Zd<\V7d=)T@cbt *6xٷWt^:(,e(n,2-^BfW}r@DDDDA?ɊxA+Z!ׂvp[>//CZѢE 1]T/?-DDDDD[6a I!+5y?5rj/RExjXWZ38B OH'UHV˗ +]ѺudXDgMYB"-.~_K """"AFSLpT!֊jh"ԕaњ,zfa?;FBŬ DDDDD;wNb2EAR5B3}OB 䭓E-\ZQ.f]$^`|P]A+*VbWtaQLwK,hB܈Ҷ0DDDD?"jMP(RT(U;P.+5+?wX=d!F>Ņօ&F """"Ϟ`R-(1W,/^=Yd!^qW(EEo """S9˒c:Uc++^{}X 5& YtТBMDDDD|kΑ(ZΨEˬX+E- u*-$-*[X\̺HȾpDDDDͷiϢAb2AUdEc5Ұ.CZ EH k gPh&()$**ZhPEtjHhhbEօFDDDDDg>6Ō O\ ǟYw,£d DDDDD{dϢI+r~_1KbPEH IJ2:OV%́T}@!+bkbX¥uń  ! } """oGI{"}kAH!MqBEQE+ڬ]qAXt}j,BBB/B &,))*fU²B+]PWYP-<[H\$]d^_c,r>ՐBN*UApX-B ZԶquQxaP9QqXUbFE+w`fbmap!x!}!q>~0Ek>*TL(ca3WW\X-,-napQt!xDDDDDϟښAŤ b˽bX΢=ZZDHȺh(h<ӘbFE ÊM]qaT/VP(0DDDDtqҞL ~VHW<]paaF7V.-"[\]h_8DDDDD9!EMQet͆>,P,ѢEօE%%gm{Ur "pb,:halq!ty7(eu',܆ED e =\d\]H^8r&Q}bKe 5UHUOnmYG -.,/Baty2PNJLJd!^Zd[\(]ԼFDDDDD,B""]Xsꊰ萅y½H m 틶29HMQŮX b`hg c W20]F LQԦPcˊ⺮XPzpiaw O """"ڦLj/jS$TeE0W']c  a ğmpϪ$*UĬm@=l!qucSfI kr  !Y D'*hˊ]1]o":ZEc[boq }ݼMUɹv ŴbQa_'$7EY+ŶbQ%F'hK"]YY"N-XE' 8(MGEXiVu#âfSXE1.TDx͊q-,v,eіA[E+?p̊b^"iY\" SBDEERyV s84-Ţ.yQM 1!7kTU1pVb]Hb˺:" eS̢"ZVTY,"Z"hj^ XUEkEwWLbOYbq\4E;ǯ̏W<+'(MxxV -ҸHRW($EcT PťmQb_G!|\>+38 a!,bE0h "{=) a↺E_d;i ,i\a!,@X VmiqS]Ú3+ Ħ Q!,@X #Ŷ8'mzmBX a5{a!,@X BX ,iq5c,]  a!,BX  aNFIDATmBk , aBXBX , <aa@X ,  a@X , , a@X@X , a;˹0Y/IENDB`mkdocs-material-9.6.4/docs/assets/screenshots/search-highlighting.png000066400000000000000000004242261475306445600260460ustar00rootroot00000000000000PNG  IHDR XlXPLTEGpLGGG333?R!!!/>>WWWNNN'''RRRȜҔ²}MEEE謬GGGCVo~BBBI[qqqdddΦ```Pb呜`qzzzXivvvzͰ␘hwMMJډӪߘwwwq\xxxuˤ݀DT[Rkji@dpv=NUP^eБY߉ED+7IPYX5o{x,+9H[ioz76! {hsਯS_vuHbj&%hFTӂsPnܰ蓛­ʹ.VN³=`t襑ym1Pa!,YE! x.q}q1P5 Qo,1K.zbbaYEE<Ⱜo ܣ.K9šYyAQ;Vg" -FTU.hCr"5b%DV& @ˡѴH]̢+2Ѩ ڧ wHEV[EaQ-+"Uo@Uғ\‮dE*I1~HxF"/z"ee1yEoWdeiQ,VW̫2m1,^ofQe^HTEœpE-,ڟW ʊ`U$B0"IE-If"/+Q[34u̴\mE+BªH>`E¶ZlAeE*bM1bJlX3#VJy܆+YDS(D]"ˢ{PnVWE)*soΈE-i1phFXwE_VGE")DmH"/"7-jv󊞬*"M1NH\xF.s̴b~EvWfE<*I!h7Fy`ZEa튬DE:(*,(n[ѴRͅENWd~UDB$jD"%iQPŠXWނ eEgVɞ/̋n\-BiѹU,]Z+v"87EOL84EpnO"cbʲ8+hVTE'*BI*#-i?h1,3Yɤ8H\x+#\Kx]^ E+N]Ȋ%LE-i+ܲh",YHtE$+bwV ;#ؙ[lEzhQ,FmAEֶY5*:M nsSEwl=:[<(7ן>#4o?enXAwEw\'G㧛"UP-ŀ+>\;'CbhQ, `W]^W۫PѲ2,V,<7ߓZUWeo4fG WպݜV+WЮx  FYLq\qvvM/{ZPӇE"+Μ wVRFG Ү\kG϶"tಘ8,2bg\^ ( oh,E7X,:kaa,~)Wsv7Xv|eQm =FX@IXl6PC,Z dWW+6sG?qϢlbȹ]!,$,fHYLՀ7B߃+EjfqUEw`|3uY,pmY1,z,z{V\ ( E,r,& E⭣V)P YJ,VeQfHXB=+BX@QXϙEP#¢oq;/DY3,V54o]q+./w=հUݲxfQդaX^~w|aO?z,.:e_EX kPtE2,s,, bX b',v/B"_: *9h:,"gfuekV#EQX,z*+z=aЧ]ŀPSˬi(,~vE<,n寻aO?mcYiaѻa[󊫫?>{*9޽yaDZm!>ILMͦ d2 ţ`RSB 'ww^o-%o8sBZ]V-"r, fP\a#y:it)xnda e,f,;,̅|jK,,&/Ɇ3X<9~ZmszzaO?,vw1"YC* ,G PJحi,0p~::9S K?Xaue#W R: a3z,#X oB8 4Xt,,,LX n^X$I땕E7p]e1`8 %A(sa1yQ@P; x$o+/)(E+ B5^-daB,d1`1-aa),K2 X!b,. ܃E@alʒŠ[L*q3Txe_pŪYy#TZX,`1s,uEbEwŠIBE,1ʢ\ b^ 5`a= e/,7 (X4f(Se< 5`q m׬a$XB,jƷnY02,677yk6Ma¼r,T|BrŚ7B%M,671nHS:RYTC]Yv#`3b#XHG@_uqlgCUŎBjB ./ti,3jܱ`QNY{˷!IxX.(`,Pͦea,'X8oj#4@PU^,b  '` X` ce Yop^7`aw;lĢ E,@‚a/Tؐ~v+5X#}m X XAb[B| Y( vlVro  ѶJnxX"X|,G,P /Ϟ=Ͼzrٷ~o]8{GPuCeg bO6_ w9Xܾ~z8L~+/8|dQdLoE#`, #AǼ5 k߇ԃ<`=,\b9`0rv{]h,# X(`Jv & `:CCt-ԺqlC"/`a*#N(`E 77?"915,z۶혃RzȒcEuԗWL@+q-)soaa ب 'X  )P IUBݹr̓ص9P3v9yi`E >Cjp{oaOT[YQd-}L7RfG%) L2) :* #XDݩgelCIW̆i5;;|̒ B,*I,K; x-ſ  7V&n_ W E'M'1!J`¦wh'7 6 Mka<vϤ5X8̤b*Сb?Ȯb}w2#@ 6dDհs^BLp*%)tyzd9,7 &3:;@6Bu5 h4 RII. vP<ŢX5,蟫p]u,PPPP X?=Rl&; ۧP2{;e-8 ^W.MDf$/?gUKgl>N$Je ʱOg.ԝ 3,F',?Q Z (T :"m%I@@AAAb`yjG`rA uU,!%{;`!>#)Rj9 `)'uf`AцG7e0/8'||2I+E)/2B].G1p0!?R`|6VrN+5Xx[E"X\oZͷIzYuY U}ݨ6wۛ&}P^/,6p}:|qC[@AAAz`qZxv̓=ͳd1᪖ b # p%ԥ"X Xl۱$boS1 QFJ/Mmr]|ym`j`.2'e,Nm̿%N,g+{Yoo,PtB.on,=PY9}E,PPPn,W<߽;މGo,Ƅ~Z,YwI?; 2nl+8U@nQ{n!]*o+*sޢzQDzKp  ooHPt na)$se x5PmǢ?=lthCycœE$\ĄC@AAAhAg*qh !!B@>kFKfl[3՛a9)\ TBbc1җV:M42e,!# Ǣ4X,`*EfB:8d[] ?_+^JKuPlV0T6g xq|(((7f+IDF=Ks(wFڷ 2䖆1 dAy'/ρf,6~j8-}A՞c4VzT,͉~XJb Z`d .,Pe?t,cny{ hC',\ SEQ@ ECXN O`1BՃt^ 9#²,-V[`Ap1%9J,2bqGK3g)(+{,}+B'\D,4:YԽeEjiTmjXC,*EY_e;dhW- R,c!,{K [Z^U,nXg O}މGӋ|&cA~8B_Qm‚mhOuꋲR>!Шk+>N4I`,grNy, -}S1}I`P(nL15B XL1a;Ul@6'`E2 BKB%Y\RoEP(X4"nT,Vv IDATkR$^YXD(X8d,"7A3 /8q)EBu2)X] 5x]X WX ek1Lb0f+5MцNPHZ`jF H@S h;U׺ED,I:w ,ΒB.ī̲`rȀʘ{;,X\X[WXNQhE,` ' w&}tDw0CHpt@O{^nn{-C S6;ZL9`zbQo"yۂ ,0y㯨F& /,)bsQM\XaqΔ=i1/K|<7Xͥ- Б6Xt?SŇjq? .XhcG`q?{gϣ8qn}I6;}bVW.K"9 YRCLDBh; 3G\i mիrIW tË#_np  Xog?;}+:c6ZEfw:pw,0B7 /LP۷Vg'½'iT?OT_Ur%֮VmS2}*i ,`eZD_"= $Xx1}1*Hb}O>Fnaa/O,j ;yBѲbqzw.7N<"p}mzo緅p{d` )/VS( dwjײS(X]>LŔ7+v=<]^JnP`P"'ۄXjl y4ouЌ⠫ + ęSP."(ū;B_(kgE |lV>B{~م\ #$!CPT{>X qܕ3AB~u2D'^t>, ,E|(0#情X, Yb %w>ԙRJ չRD3k jD|`qҒ/'c #A)XܐUW,$Vesg/.&YGH'.9YmRg`)G[!4Tn mq_`A/0ț+h)#<[L"V@#(AwiP)EJP+qX|ٞ*|,XO,z`Q>ѱs!NKk Ź2ȴ~`C&Xh6M8 u/`1B<>iQSO<`1&ߗՋhqK}g%bK1 V4 1@@@ X0u"6Z 4w`&62raSHbA!aX>WV,^(,nVS(icXd uZ蔍j 1~:Xt6guB w s涍kI qfP*ƉOBd}i7Z'I\"^ 3C$SXXP[coEY|u.7]ظ\ګ,bF)?~`gc ,2N s`Ke*e.2`BXm c~5y}rlZ83X\&U]9{A],%ߣT*@w[=mnө<⢋PvWvB`arxEqB\ѯo>!+ŃvJ>,2XdZokm'X|+kP,L0mD2ԉ9L=KMiMp.½f l_ Q[]\`AIa]Ab EhJP nu**Xl2+ AW,~郅AAyk}ż28MNꈙ s>}ۼF4# !/,`ⅰx%Bx`᢬d(3ԉ# zmGz]=N=\︊qn0 seC*|,Pn]P(ɰ#D md jj VP#[ZWǑ0{Xxq_l0*XDoUAHP;',ZR c@0B纵n&U6Y|N?9:7eqͱWj [#բo+(TLpsu}'M EZdqh Bn(fS?WnV2"MR`18ZET&>En5Ɇ^'zTXy:]M{t4;,-G>FH(`jQl*%ShpɌ'(Y؉(pŸm=W)dOUeC%"f*'A* ;otU FGR26}YFg@?( ,ȢcNF;646Ya`L< 6xRBdٵK>LnO  BM%z7/\tګoͧ0UU%kYLmLWv"wXvYKK0Drbh+B[) _j/ nE+] ,m,.OFH-Za(g1++=22;gދAM;_xUNF6"5]wR 1=>+ U[=LoV' |!98g<*}|BtvqwXgOʣ#.RUq>wB%T:y$a}ɽ f](ufug] 4EGifL*mc*W:b5 ES++% &q/" LŕDHo}"M-bZ 5ehMKv^{UR7v 5^m:<=]Yh{2jnO4T_Y3TvczbtǞ<: (|>o{|Jc!WT9bٽ}hY moOyh2G,>'_V=n:7bgu?J W,T(mug>o&|E4R?N3{VٵVDC ܂%[*&:5KJp5ibX|%߇ێX\iI,TXeָBRlfqUj6rR6dG^5JQg(T۵}ǑO"纡UyvSl½]ڈ=f_,bggxXBM27RUGUH$/9\ɹxQE{/yw+)BK. mW,{<[&(ѲPYL!p;$)jQwY5LC,a$Fm8Gv̱X;/"IfQJIVE1kXmM{R輲Xa?{vL(ۣLfdB73"ٿRhsX4l EfҮf_9bRFrJP QD#͊ѯժKEBZiG%⧔*"5`bjG[48pK ,Xfap^,Bv2ڱGEKR7Gv=Їt .rưZqMFb 'IoȍFL-ZXp?#a_ix+"Xt']]N+U"nhe JHhQ,8r?? mv"z{V"x۫ B,Eu ,E;+TBEarbI*4hC]S[i˿g+[r/Dt$8UaUY 5qBE\i'w|  >6wwG_2W-+W]goPlTekҦPsY?9YOE }*]&)۷n$49hbq+X X"f19|O[u&*0]Iټ-wN4͖2C% yc[m.7c4`NRqXg-1X"X̟XXb(YD`\j^4DW\Lu.F!BU[KYj`wEEX}L-0 Q5Cybޟ66 &_?X"@,Z^cD|?{f1c"Fȏdy@Mcw ,Eb+!BGe£d("ұB8Gc*[t; A XY1tNXx4p\E -t$:Va "NҢ@6m'8y_Ŋp£"\HLLLLLLLLLLLz_4\h,р.q=HNK"UQ "U"@S#dUXa Ƣ7jg - R&Qs4KcXVp B`£ lE/k2L> "SŽ8G"4EDӂjXe5th,BPFe,4EHh8Xx4===!-k,gUTbU2X\ŋ_~n5VBƢ£h)GcN2Z//^,d+[,dB I(]X -r6ЍQtihbm, B i,< £h) @h,4Z 44`AcAc44`AcAc44`AcAc44`AcAc44`AcAc44~' IDAT`AcAc44`AcAc44`AcAc44`AcAcO?N7<.`AcAc``AcAc``AcAc``AcAc``AcAc``AcAc``AcAc``AcAcц  a?xS; kҹD"qki^xߡ’i>~?}F\y^zWo#XXX+bxbrGtM8+JGqmQ)S{~_h&B`15r`V`q?svᴍ BF+i$w=𞥤y'gթ3X B`AcAcQ,թݐC T68c`1Jon/|+TkO:Ĥؓg뽞Z'R/Xu̽,־]BL ",BA],h,h,{genU-0fMV5QcslHA. e_"A`.,@ɮVz,&ɇȈl,ٗ._./o K}iFxiaL./ol^ތ|r䝅nNGpXѯKzTr>9پ=]_;o3X_C\.^TfFt|#Wh4pr0Q4G`AcAcQ?X59i9${`wvwU `y8W@=L<5w863OF<ȷ[nomȃoctb ~3XNZ`߳KuE,r7槍$ ^˱1b@ e,D$GhqXgr2'r%hn0l{j7ew*H\j^]iqޖ;'{ޝ _UywnGLIAoE] ,.X|o=8JkXߗSGX֕;=t& I'0As [ ,8~8)01ㄑ70,OrXm7Aާ5X:@< X>߆{uvaOe,dEÇnBx#j G ޶,`R9^އKƜM8t~B]T? %awE-;iP`qLPȹ g A`M*#<&\lw~1-We6+bQ=%řR59RV EŢ,Frsڹϥ`th0XZbC/tɘڷCZvǏ\7 =' =F ,Oċx2e߁t>ȓN~$\"@I& tjɟcAB҄`1BtxΟ, tGf pB|;L93JMhhu,x }-d ,|4l*$X ֤nq$=M pcQ6EEv)F|u,@X,XHDYo\?8H (ƒo񒱦w$CT(.QWoǾ:nv9SmL"%\<,"ԮߎؔbZ~ (+ IӁAzgES9X.c frb5E$>DZV X",—<|, v5.|5B!Tu X,kJ>8wZ, BePW^[,$X`ancKB|+i(ƅ]|yǣI&5LFu;a:CR=z'5c )d_rM f%; :X1uvc;C,&3蠷ZGerkEzZi:`A XN\AYgu$X ֤,3$j9gPDhT⫌̮m ǺS 5b,|`QqX,`ݜO b/y\b HJqZ,{!36l>kP/@IYٱx/Jb,HH ,:r VƗ ,p}'`NX 2`_- 0npo0X6,`w/W Xł,`6:OL`a5(IvζO!@}lI i`tt>t;ťan 6~uؖtR{]Žv E RL RjiE~i ~@l=J*߮ ,HH ,` 3XREbbp VaTijM{8)]a|`|2`λ!O H@eA,d 65Sk!jP`a5ؓ+ɋ}:!=M *F,.ŢX|"?b)}J yLÍ/XxJUAB.ȀVr> X&rw`;5D7׌owc4 L0nP 1wedR&  u:`Ⱦ/:l1OWlޔ9׾ł$m/Ao:ٵw:'n޳6g_^2JEy"K/fQ,1TJX-h+rH:zY4+T{9Po4glSt6wOwk裳!?Xaեzl5bc%XXXZg.NH6Lf2WL&/3WU?e 9?C~x^ [wyf@(P(l_<~4Y +CDۑ~{ F%ɞqu7t}i/y:6V'gNk)@#{dž_Sm{cޭ6A 0*O,!L{V<`AcAcQbRu6XeCau/BYW^?vSby4a,9.ȼضt.Ʊo8dްrA!)WTcѲs:coOoW414zGu}U}un)'Xq3H| ,}Σ3])tT[ζg44%64 ^/;B}1}6=":XܸɎ ?S>""2 V8|NC8݋b{6,wATվEhC/B[Mv')EZI+S|y305/;{*# '_ yebx&gpH.^奈xC`bƠkZg44v0 ψdŚzdG,wׁ_Ű~X+S# ~5;ƀ[`1쌩XAcEsyB IDATH 4T:O؟<_5]ޤvxhz|ZiCor>ş2t8c,`Q:έm$ ?OVZlb1 bΰPd$Cxfbv/RPٝ&7Ss;U[3d!Jsujْ%ۭ 2ig_)5v"ÀȊ $^T4&hXW"99=K CѨ.QЋy[eT[,ԉ q _,dћq|WFfv?h zB,D@kWf16lκDXL˟^j!nEQɕ{ b5#k"PfXZ#0 ,b )3{pE&@4j*MU• b!l XW`Κ}M`ʚ  16s;xʲ{ $H,<<#T8DK4 Fd^tX6BeaR:P,fda^H>&, ƽ^5*b+H}@H5u%ʁX$H,)GenvШM:I-+b1L-łNBvҗp bgl%E2О*=Ţ؆~a6޽Ȋ $nz@nJ,b1K}m{mdNeʼ237bTFɈK|ba6ijl۞Q=*-$#-Ec'FMzmX$H,I]bՍ#~W{t_ Xlȧ;&aR,%ϩ'fw JtUYA>>cՍa{ČWB,P&ٱxb*/.L>!1sIuž%*H,-H,XNHP;DrhSi瑪s9wjf[ZH68|XT|6`9_`܉*y{hoPYҠ*QW7̼F_U35E]1=4O,;rmFJ1K,,${oȑN;4[,45]J56 %3lI;)_WCJcX(98l Er>\jS1V3G85d e7=ZANsQ`Su H9c4;zX(=LWY@bɘ`,wpqĕ!]CĽ)1҄5lD>W! z>DTS,Upo@e94ڢxq/H3V܈5#?Ղe7CB >_=Pb6Wu%~bѓȊ $-5ڟ ^쬣iA~s]FOq:D|eHsˆwFS ֨ݕ{ur˻bُRfhT n@,X @$lc77!H,X I65 pbA±7 H,X "'Cp#bm $-H,X߮GbbжX @bX@,-H,X  m $@bb2]8  ™ b!^hds,U '̚!dDWx{Y/zW4}]S2]JsNYhKOȗ^D/ ]"qJoJih˯A $H,@ю I~T.\5}oSXhz mBgӚm ".'䶋ELߙ޾b; X @b"BOdI1ѫ6+3b?6 E,~pLco,!bZ+(^2D[j+@,oGX[.[\9),*׈oX:o,H,X3Mi.QB=׶!~Bwm,uL,fii6tEbO,BOHELඈѤ/Jk}B,b8DGE.YaB9[,+D,7RL>Jbk?"_RW{w"ѤE b1L$ue~5:"H,Xi^(mU -&&vmeU, bBvE& !|c@bD^IOf 4X2ӕp7H&RRRzbEuۦ`h0{gU<5JUT'-cgHhb??LgS,x>6p\V^HњEj^| <7΁@|w N_f'D}F|ha&Z|.lj9_.E+ba%cSmV 3U]O 9bVY}aaF%00 ~%<BBLW{TwWwÕ>NOuUuթSwNUu X b.qM[c %Bu;̌ `roY:uWsmz5Xܮ=kj糺^mP' ڹE~XE>8GC+PWW2͘gꉡ9{# !EeJ1y5HĢ5EkϚPJ?RphҚ: bC,nE"{eg [lZmC䰉_;[,ϾXtd$shݯ EX4(qLV$VD[v#?s[i&,mٗX¶a:1iÔ6a'ⓐ6Y<ML"3G2 VMK\(S)\4]):n c =hR&ZA@4qk8~D?CS])f=?LY& ~L^JDl+\U~R,nҝs=Mb96р[ȯ#A"XKS3!Y&IyL7~7kʌJS F#B^+_!}v0bpM{EKOb!Lt$?FMKko$@v Rrƒ~2&̶`9XtH=C>%X : ıfдLrI%?"(_D$bG& SxŽE,v0Ϗ.b1`:Tb=*UE|:/55$!P(WT A2e_:0mї^a::XS' o@4O,<3rG2 &&՘Fo t|<#%{eJ;Ym1|΅;R7K:L֙Sgb~K+!ؔ Wlj:id~  bH FF nOb$B>O$bҾ+i/xB _b1 ?믦B /E/ńSStv|[>e)/}4;;~7=]T3+a LMqMc&X  Dm  WJ%M0Ws ~((% j#~̸lE,W} = #-H b˲cW@ʏ<u A&gˎr΍鍛r}JRJ)8ĸzJ1ccu4{<ӹOm| ʾV}mCaX; sD 3t)yڏX0e BDpxZ8t$d RiLՌVǍT_ohTQȿu b3I\B,8q̪p8 *K~L0gc0FdaƂөȐ!R0e+K:\nmeC@ "A"@~38QBn}gp@ tXF?`%(JPKI(BmBfO,F>׀!ϏJ,4Pc3^!CrKlf#kg 7.V(, >$uh)+N M"0fNÉk•a)C 7JLJoq/[شHދl,Xll}_Tba5kɲe琻Bс"oI?-b@ xH!+B"ѹN|4]g_й:g Y9١M,MX0X5-`ჯjSI0HR;}ڱ)Tb '%ޏ;pr?@Y&X#$N6cᚦRځA-I[ H"kQq`MU *Ѓ܍#p?@,@"22r*"J곶?K,^We||ϿiҚ̟sDD,XY<r_,xelq+yBKJq :K̆ZR)! 7ڱ>+ʝ]G$b!"qOTݕ *CCȆ3eßX<-ZngɉIb! uEν ܿ]o_Іq$[Q,hIEB6"G0 G5"%vG-.Gk;vǬp/@%Eqr?G,6ВWi\'GN_U8ڨÈsJi쮔JwnOMdypJ$1bPHbR 8wrkuѢbkxysӧO'({}!B恅X(2e%Cc8A",WDsj&/oFs,ژϱpW2XJpqg\ȲB3XdhcGEY4,B© ~͌G9؇q(ŧ9E#˘ŊrIMQH)Y2{AHfأas ,zuy>3.=XL)`°K'?a\8[iY;1ɫ*XIW`! X@0: H@:K1BfX(2e{ #𑽅Bo:Ť rM<>?yp`+D/X!Y*ri,>dvkALkX̋/, kIHaegXD;EBx/ŇߴJ SngsW`э@^ג,< >X408+xeVX VC$יo#Xz`QF 4W`1\_׀Dt-6 WQi/#eX(S<cLY ʿxO,|`bڵ&ūgL`?c'д>Tj?gŁ)/X zPArijV.4, ?=dn Y%܎y,|dkeq$x  }軇47 .Is ,nX40, P4?'/x_ =jiY;E;o8Q,v ib`eq_l,E(6)PLy,BfTqR3XG I]7kWes{Ҿ,?Gr =sb=!UQ,xV,JD ,?g"ޞcq&Xc!} ,#۴ĸzQ,۝WbbX&겼mX}.XHoKFHgJ6\Im I,NPvx(@NW Q:;;3*$ ҫZꈗ 9̫BMZvǑH,(݋N9/Fh>,&qsW`]&ڭl,v8W0C\j`E9"-k'(B2U,>o,ϓc= MX ,)k"X(X$y~geJUP2ō1Y`o,v- ]>{A-VGՁA m̰@+9j,D_ ,&rXcQmS#A4zB7#uf7Y< ,h :S>yQ^#zel1N_&wϤ=05pxҸ7vŨ9)`h@Xg|!P pX,q`Q}WK6hIl(UH7H, M 2pO5ڨ;oXXle[%`]O a*E^~ N|.tU45˻E=&ڭ WvS9;o oy>5\, X6 1Dʶn,HpPU@!pe?"XL^?e; IDATFQn۝3OX,ScR,!Ls3׫BX(Esl~~`0{v6l]`mh-&.5{)2zǏnnwZZx351~d&k2tY!U6"Y$,@isd% §8 nPu!؉@qF[`%`hd$:x>F7n8ɛTyn:E4b Hm&JL沑y [1{ԖKjN2dQ] IBޏ {t4BNQկڭ HgnLlfw`U*`bsK,@!~ kv_QX N޼te-Ee2X&Xܘ u;X-OG,?he=3 `q p:=+C ѣ7xۼ#y3X)w5NlS-e&_I٪X8 ec<_nk2R{o  :P+{M?oez8㓲.)"MG=QA Ʀ51CM1x.NzZ3;[ /3ok=?}e]R_?{&Wg1gAe*v|pCMty!pɊ$}es?l?UgO5 u̪Se_A'۠71x v5zWزƛXvRˬI#5}w7^of9V{/ .I=( .bi WccEk _,X QBmʗ9!3|1tAͤKՍ}/L9٠ܦu;OK j`3. 5 n.Qr_b| ;62d)N. &}|Gm FYKX=)3\n'~`"_ 7/^%EiO/[bVk=I,R.@V^{-(ƓE\VEn[,X nv|^ S\,BDWKn@cd\&$墢oMo즵ִɵ݆ƚz'[+?O#**:m';VL9nS)82\ZU*i2jg(WylC,wjA,^3ƛNSw׌XQI  $H,:86*?J7%Q%[iZ6_”ucg`*(n.9%vַHL|Ɖ~bv3]iK3rٴ*ʻ%uM}X @y$E㒳KSz5R~VX0RH)Lx`lB4rzXr1` c*26!.+{CEbj5a EAo@bĢ3PsIRyvao;oOOv]RB,Mc{ ۴e ٠m~ZTP4dx:yڥ *.iÅL.s[,#fB7ktptbqf~S^m){@,=ŢW Ej $H,ء=g9'b|ߏàGBJM nÉ*;w,!Ɗ=ĢVDBXωXy!i(T,r"x.b!IJqH[> %zclGEX VH}kAyP Ŷ*k;Ut `PvJ,Lw, ;!H,3@bĢ%0>ѭq!Svq*VC,~0bqb-Ww@b $-/D4iB9lw=Z/ԘOzU>&e %B*bQUf%%jmM,l $H,Z0,axKNK-Q. µK[ DUsbQ2s+DɈIJ!)RIJ$s` CQJ)A9k X\3Vq]2#H,X4K-~f}H+_,ppj|#rxishۜFMb\x YXԸX2,aZw55fK3wO,J&Ao@bĢmؠOߵS4v=@,_clUd=B*fmLQ'R7Y. 8 XHcW{n},sᝡ!eo>Rx6 z $N9s8BLdz<3ox M%lw/$3볁iP[,X 9`fguVxX @b evWvY=h^O|kr  L&:K+Uk?UV=:?dgpiVHMv`1i3V5mӿMckFB~^B񝵗7PǚbwZQW7n"s~6i=9,>w͂iF0kŰ%'m3*z9 s1 ^aMIޚдldK\fgg,-w6KG1:ʟ^zD;,.SH]%q3Oj*Xym`q>+U w)~S7˦>Yu.e+fe2.YH> 3qCg؃ͫK˵˃"=f?7},%jr1Ȟf ;N%)};_0 __.oNa„yBD,DB؍mQ08c)ȓK4NLLB+!g+oFPG3\`ZqZYͤ Kc: i +U3kZXGכ|2plzK5G, ,^!$Kc:( cIs!b̌%Y#֞Pô, '!b!̿Ym赶>VvGÚ;* df ,c=)LןyY>,`!ˇ̲į$IF26+n̑ڑZޥ?-e>/]γC;|0^)i|愑1/Na„BD,DBM9 ^fUXc;CLaB'M2#J9ujm۟*RL9[ l o0]p9o؋1kGiXx3t1 )t4wX8 />aY^@&P!*`7XMP?qآ3Aӿ)9>߃5Knw,Ro8< ϙ `R?hv1Ί Q݀@7XtSMmw\ qd%bk:P; 4ΙO5$@>#2J)3^Aΐ~:JS,|W?~w7Ǐ[F,z #X"A E ,' '3\Bq䐭H _ !S)Y\*y(H˴1rY,Fkӿa!VЬXH>H5؆%?a|$; cF'~`nk=cqn ^;t[il_ X;-z &M{fֵ=@-l/|kuM 1/53 ~Ұ1R{=*,.a)Ny/bqx|LO?4d( x+H$aY}u nXS8&EQFʩ,b2FƦ8-L0XX鶃rU'9^7qo>PkŸشy`ٿzo؀}Z$:JwҚrppSMMM߾575ݩ5b1^,¦w<`Ҏ6"`4Jp0XZ=bƬ XF]DFfz.Yk_7ۜ"L*MW@RU5/igơ,#A+&#RVH`!j0w5t2ET ,My;̒:My:„ f  a7"g]tTznOSV`gE\~cCB\D;-߰NԾNdMfn渾2X #>mg2Xx|.8 \w`e~\ ZEj=AYwqᤵz~bF|\|WHW4ېeؾdT:uCRLuzpi] XpYXRK$ \IOa„9BD,DBM9`,Zt'XD/ ō"]Vf-uNbn>|oyْD _ ,tGQv4O?`O[|vk]oZ,<>O!X,k`_d$1$ !<g3!BH!<4A.ܺ-\kgwO>?8>3ONsMJda U-VOPv ]hFs O XO?I|_`X϶ۜ.:XFբvO`kpvc[ק4i`!#2b!M)^XP]L&+n X`[ 6[$b'(ON XDwḾJ0㸃ǿ4lq>SFW`|0MXX By$iAKBP<\GU>ECZR-CUPgSE'6nP9)J2,Oˍ9M^B`Qy*I  i%ܵ`rcBΈ⑧P?>˂PLix 0 o$m(df.H扳XtFip\mLfwp,4'M~״F,-B`|^7eXO F :ń&m8fZ 1 #q_\b΃ X 'X,X#GOi%*Ds,QW/ xTx[A՛3MĜ2B4i & m]3zfDkHoE`hf^, h ZĎﴩ ξә60d[1RN8`QmER5b*X0>wZc"ZfؕƀŎr,r̐A7ZЉ0@ڍ\s,@U>E]4\r,XPl`)s9@sBj2\s,J[wsT4i?6XȈXHbv- `jG2" W\_W╙| x(53>'A IDAT쬏J4?gIj2fJR FOX͍(gwN <>#[HժPX5`|13G^"<aG.XXH0̫o|B"IUCKZNժP"W]Bu^"m’Lb8BS`^!M>-x ~Kd3M4iҤBF,dBn=V`1h*0&h4aT#f,EC߻^m{;>z30 :`X ׫Al5,豤>rv $hM`Ʃ 8"~_&`Q9") p¨CPÐA[HYi mxx+ Ab,D|z;l kH0ʛ S]" ub-)hWf}XӫQ ܋>rB*8Şy)`N-bQ4~/{J& 2b!#~p 0ڮA.X Kˤ6F#k'ކrNܻX MnO-jN|FJ.HXjN%:Eh~UmLy oCFj 9@(ws==u3y("`&V P3ExJlPD`{H40Q4>U6`>6ib5j4/ʛ^p(E'+Ւs&'soh]cߣK܋=yZ9lZm9~7 z<(A:s,^;3و3M/)8}ҤI`!#2b!M*Փ _4u$~yVWoAvh*mXq!5H܅w ǻ6w\kR~[uz39԰ӰK {qx%7Hg8@mtGpM ,IŦi(U*Šhfrp%mqE{k~ab’Eo~oYy. ~X}FAE`p7ӦwtEEc_2%q2D!XѴ *oN:X09*zĕ(,9[:|D9f<*@CZEh(^AÒݓsH{!CXB}tXv fn t増˻WK . qBV\QiBF,dn6lΰ7:IM,8`Bьnz$E.LϋDWrҲH.Xd`woXфH7>=#g ]wсcwb\GmvNJ-Xǿ~\k9%Z[wX_e!Xk1N>@d* ըZ炅ot S[p>M{<`bl:a Ut`dzzNzIY#/(XM,+zrsa_u?|^@8Z4]#JQl{ɥ6Y+ ok_]L?﨓+-MF,dF6luO¹ICr>acXYՊ0zb(R旡VNiwlΩi\λK 4ƛ| %M?oaZWGZn/oMfVj2ξ >Dw[S܈^0O1'X,_&uh]_мS" SNs&|ŧ!J^ޢ%z٨ce˷f< O 70`tsG;L@ʙ*Bwx8%G?d嗐.|<ҩ}ܽF -)O0B8Aiׯ6&  'X$qsۂWA+o`pX2?kwc˚)[6 cxڍ=dבFkST\zjR koWE 1=!(JPSaR([&sB$aJE\}kljֿk[ _7SOR Zʭ&Z°T "Q1M!>7޿33-ʤ'l[:msj`kDJaNJ ^7U]#_u'OjΪeoO"{R|_=T}kEN+1pG7W?53sTE fRB]9 ݏ})+Eiwl ͠8Ў;M5͒1%Ccdt>TAa&/4,S.X8c,\ T 443\VxAiB} w}o8Wtb5my_PO6 s6i!`,]2XX\,6/ {|i#i}'ͼ27X2M{Kv%4:vmXEMk{*KgnxE\܏%v,zƇ[kglywS޿=ן5s!`4Z8ΤW}Eb0Զ0BLa~Ltv`1i? ÆFVF o CE`gxVEBEO'6O=:sLt.Xv82?y ů-?W/}SwZ4BlIe^\m{԰?TPGؔT}g kRD?!眜U L;RF"|윞 FcAcQ=Xc)[>X`q3HD2>7y@cAcQ!X-++.  )7,G|NYsנ}1(_]7[8i}F@ErwG~WV;'m:Ŕ>r\ ੔}ʭ5d,oT pVsErg44E}g玚bBJ5;X8s%,o;\hboB@`s>7t` βNҴ w&+'v8v 5< y1ƂƢBgc7 A;y>XVM g,}G*, -)"wpa'I5  J,1{b~`q0[`#Ĉ !SŪM9V`2,o  BL,~ o{6SSDʛ{ZDRBƂƢFYj j,^ xb::!Xel-/|`pL  ZbC\c8 Q1 NwdFE Li   J9EZ,!mk!/t:d5$Q ڂLQ,h,h,*jwsZpC<Ts bž*J/g,2o0l(X 5m]J@Wwy@cAcQ)XlY0&gT3 {>!~حKV-)懵Bb<>֗ B7ҴYHH,lJ>AcAcQ!XC%9߶,|1+z(15*ܘuNmy.߬X]@˂EJ2RFRʍELHZKD'&L0vE`1ޱ;A2 mJĐJ 7VU۹m{{h]XX'R9)pX\K-8&e&ƂƢnŇuv" NON|7B |E   s<   s<   s<   s<   s<   s<   s<   s<   s<   s<   s<   s<   s<   s<   s<   s<  rNO>վ#]QoOtc7~T7=O,h,h,.@?j% ?LKObwX!hW(xOc@Lʨ{jD+ 44J?~xV\6XX`/e*m 44}:>jK  Z,2cu}Ƃ-Qg,  r`QX @=bPƮ}V + 44^'>} w|?{Ķ7O*)WaXVvA.D@) PLEq4KJRNHaQɳIx^/IcrgŸU޵^ة,ڎcq,3:n>dBM_E$/|t_ã</x"` ]I5г;,,Xh u['x|IJWǘ N*fXgyM5K䕁qU޵YBJM@UZGbgMDg/%ৰh|xʿ>vyTkxeG孮(΁& 8p,5kdw}|cQr !ұЩ<;rw-+k\B3lsݻ_&o,5{wdQXF9AR-EZбPݜZVKy!/Wc@ 8^aɕ>y9vD^X+SZ=qw-]haQQәu6|X-N}"ZJs JX; #,XV(a#EY 5ɠ)Kk\;cǎc-S4i8b,TI >3Cq1&b34cĈbW~4`ױR1^YaE[=.]GBh vNX|g5rS5a%׻֥.^,S >BKզ`#PvyEtE҃sQ0x@hUŲ:e,T'/&CWJ4]XcM}qxDIU( ,rp3 w]uAXU:Xy6|>+;+9;@4MpaC@{_mK~C3Oxf2ML?@3ELo^9;A{6'{sF,t delSuK%7ɱH&,Yr Zh7<\ԭ8d>[ jH~5N(O^5kq #]m"ژ5;*Y/U<`BunBtpXQ!.߮B|b@ 8\BTXTōM**7vEV)ȩ)-,kn׌ܬUJ\\WY&ϫDVB4.Kyюi)8G" "UdA*7#SB@ "UW힭wBS}_y Ggˍgox& 8p,ɳOj=M&NA \I2jl}LeqRW6%5c]YX79E@O[u1X{2j #;D❴H4\YS/m($O;v 4_(QD?d) Z))[ ajʓ]jBTr'X&v`wC4MXcA|Ϧ*Vk|CǨaxEUKג#TrЀ }:pS-F*+,:)ZΨin9u[|zнP(ta,ŔU噴Gz".2y4KUiXeJXO; kg328L-+.ܼnQ0CaY=One&S䳾,rJ9~.yKOi[;ϰs[\HwZNX*?tUC^~㏧GBd֖Eۡ9#,kٲ8&"G2{@4`р\2<2<<gtgaY2s<\z8t*>Ic8M v@ڤ""TD&֗̅1ܷ̬5([fsӤ!3kƛ=k. nHśYsinh'Tnv:sbv݀"XXX`Dr\|Г#KhEYMǫ:͒6"om/$m&m\5 ԫ4{?'XXX`}D-! w[Gޝ'(5%ħyeYý{({/y_)c&ukԦ"3[n`AcAc1sظu]r%uK";"m.E;y(r6empwT, 7O 44oFOX~sq͠PH9b-lH]vM-D-}T| zT^jIqȘ2 ;  ^O=ŞȾppo\0|?M.XC}"3v+ϛQ*-ƕzs"7%<ܻ>=l4͸  ^kRu V#uܥzoZA(YWD.r^7*Rk8kH^]SRכJ$n\dfVg/U0hB#oryϲŬY].bUm';~f5?؛l~x&XL5˝aPrmg?>3qT,sޞ 44=><TNPc&sіٛ]sYIuM.H-k+UGvfy=j_άo὘lS[0hAW6 `A.r֫m]tLY=,D_ʗY71&o7 gE"—Egg"'&X|O*:YaٚF"'牃]$t@pU4-hBd?|ht]JѨ9"[gwyrt6SrGf\ߊ0J١BG?'VԃĝN>gyS'n8Y `^ mp9w2JA8U핟ȡjG;j'x13FƂƢw D`G*,,ybNږVH-7([r> V[d *I-PWUŭsŜֹF)w2JfP9ݸ/X)ʋ2 uH-+o|oM^F, #M;6.L,L|^rVwbq3=-Wl~^N(&RzbYQ퐓NNB,{:s}7 >ĢAP@gE?+KCH,H,WJ/ō' A,~'W\XȞtGT"xV5}E *HZ݆icZv\kxZqb!v>5?ĢAP!Ŝ N.$XXN,f^l2ŧV+hUW7.>p"+wvXyġjJi?mdoĢ6;nv_I,:U,[U`፡$ĂvbX^W>ɈbD,vbXESEP(~lgzV+* <{!'3g ;͖ZʊQ=ft=)XOb̝evy2ΉlٳLi*feOXjqd`/X8 MyƬmr 7|vS!MǨ+&€w;aGC⩱W*=_<,W]Ƣr$۶9I,:=Uw9wչ6XEBz(E_kGĢ^.'F0'ԩѫt:/K=N_'I2j|N/=mt:L )7U˜P.!gMV\s$SVz^X~rlM'"/ y*f 8֢֘S:6~Q7W1R̽,oz^9GSGlqϋRK-%!q/P%T񽼖B)HRpŢ6Db{Yn"eT)wfq -WYowX'>| :g%nq@P?>{=obզ䄁%bGVE2U TzfhV V4W[?Ln7{:WI,`eE蔬+^~Ce[g6cVHd2WXhԲٵMKGJp#jmW,"dOR~ Ib{t{., EX\,Bgtctꇹ(lN<VWVO]?7)} VV\} `VArE1sausn,z3RY#'/ AU568ߪ ,Vl"ٮ@lݢ9LAPJUvqAZ'v^s^j  &`QՋ2h^)j㐰2{GEEp!3fjQ([RQDIU7X]XIH› +B΂qT 11y`]"mw&lVb ,RXhFڶ}Z|0LzR&X _7{K;EhYNPkZ4ʭiS  Ko=ݼKiFE$|`Xe^* Yʄ*B &^UlL*H핸n)w~;6OIb郯kX'/7}ruiMG73B-7O>g $Kt礹O{ EX2X& ,zs?Bk̳Gd;ǝX(4ȶ߇,^7X,Ѓ3Kt/{£ztB$v`eH6D={"G#^u![&9 " +.6Xe9f}`{? -ۃK^ȶ/CLRTEHJheJ!S %b3.UfG] h8mL 1.{t.0p!,!uv ΅ tlQC /j( %@>3E:EhQ$qyTE }J*G3$4eU@}U8twU&z[_aJv7Aߡu3|BR3z5U) A5e:3I,L4*bws^įi< ŽciKx+Sg|M-IŽb4|c]o)]!sl{;-(b`'dMAx~$b/Xl*xt{^ pd#8qAx`!m} 9Xl n1[3RVn/Xufi:SN|,glT'|Y 9ID[8WmGX\jM b0@SB̳FaϺѥly (FkܶŪDXP7KhVŕ1n;t ›`+9do,sqzUBƝMEŶM]q,*NPN2q?R@,9(nf@5G-5̫@P,P, ~0~`b"' 9֛"61{VWhfKWgcF ,׷4 ؋C,~>$`'OP~<.I;qGĆ$ A@E7C?U&1z:ƀ")]>#LxbO|G?b_ o(2!ܢ,p;+怋3Ո~V<n&YtF: UN(jٶjϝjwY찗bQ}2xq`w.7D4Prg |Kgbp+`ի;˧b˶{U{6PIgyAW$|0-6FNO Uhf.#6y`-w(L(듫G}U2M\—P{ XWwbAbϵ*T۰cɮGo3no_X%I:y21yCRXS$}X;KK)?Ŷt@mHOPA@E=; h?57X$z),s"@PF(XbUa AX)A߯caǏ`6`LCv (m9@EgOPS:/3X\ λ|Yk,6*僄SB).e+n)_8 }dR,TL_I>$Pu2ӟ|{H%~B7.ZܹPHFf`+X pF ǔ<+XH[v.C&˜A 5UrXo9,yS,`^hE+ፁŭŽ]2sz0xBsvd(G chNb^҆,il]9xj!P,Z`aqAx '|FINEYn6Kstƥ9o3 1W^Ջvⲙm^^L]X>t+ mG` `!_ D8w+mSXEC:[OQq łY]X8Gn R,‰2q+;'Y1?T,IM`s",fzF^fX> o nqUOZtm.Ⱦd]U괩bkCv q0@6yu-QDBnda7X$ Ϗ: JJnx'Iq@NܫUXc\~ƾ8E%\1(-jZ #Vm:XTU7l `!gYlu6r:4߇|FǗ~HeI[ +R}z7=XlWYm Bibݵ{+Ga{Xq'gf&+>yV_X,랊 <ԯbӸj`PbZ,uMAz]L6!jŶWGTXz)ϔ`mY|r z!yIX!f[X4b~@u"E IDATFeDe(nAQ& x KX,Y"eKHQ ZDHY[3pDb,νT ӷ#C݂qc[:` 4'MIW}U y8Nk})@CX` :bŢ;DXnDy.DfepÈȩ3 Vvg caql 1T}6[+5q56Pn|2BCrωEE^P{ y0EoB!?|:+]7 (PYO )♱Lǟr "R~*`SKÏg+҆VA J&feTcS㱐k5rND`nm]sL{鳃9sm#FticW`!٧Wjnw]KҸŚE$X6@hl9Q)xDY{BM!tT St>`mZZ|"nƤ;"6ndU4{1Ƴ-RVg=a4Y~R#Wz,쫉5hfdj[5AKR.!XBگ[8Dur]v <qG:UE`c%a NOh! =)%m١U6NBA~8ΩUW~: 9uO\!W&L`h԰y;:kKa@htTe`5á{QqFIu8I{{7,:,qDo/M &5Lwr݋Bpֲa9e4{9x;F .l VX#|xmQ>J-枊N,Bm dORpz`!F[^tKX\_R{!eƋ >J]/) ,é߾($oEJ,ѻ$0%ʃtjV*)b(//Og Bq&q?w60ۡYLմ(tk)iqp4Mml˖7z=J2YytfFqs@|7.MBA>3Tq0/hgP *HqgYZUn|R,]Rft}^MJ(,sh9ދRP4\m@j#K%B4I{P&.pNIHEDJBPZTh%}1İ]4td坍טtqyC)T[Qg9ٿۺA=oU VfE֟i!XԜ`QU+ORzE'զHĺ)]RsmYZ;v`>*߾&qΰQtΊc:94ܱn $ZP e ~B0 iL?t(dsvI~?P-|κ<^Ǡuni[g :H_€^Lx?ށ^h2FbꞕjI}n^y`l&zzcObe 44_rVj>MzxKz{f&QCZ𞑣/9SC0»ζޤ~`-O,We_3?ܓ΂`c1Z>x;xV=1o߸y~}XJ5&{LXX}x{ }o^Yty&oQb}/]֭"X6w˃ESsYƂI8֡za6}~ֲRPG {nL' Ƃ`߫C|޼{|޾}!;+^;>} /_US37"X446>_Q٣yܧR}3q3×2ۧB X`>A{/bq>vN44@@cAc, Ƃ X@h,h,,  ` X44@@cAc,`XX @h,h,,  ` Ƃ X@@cAc,`XX X44@h,h,@? ?/;/{XX,% : }44 p`AcAc\;XXX\twh%mʭ5EqdFFG"`AcAch(k"47rqyD^ Zh|>^bA.d,h,h,ڃŢ0.6'  ."~|?7i~?! m{}8Iv_,8d̖8Y v#ssp~'7f ML)5 /p0[$W‹asE ЌB˵6E,);a4*q^bu>7VzJ)J&SWETM:7 ~  "orEF=UsX: #>ۼ,X^XK|ڸ~ ܁͌񉌩iz*TRy,&<]o`Y(#XXXt VDp oXDԵ1b]Ⓜۗ!\D2פ|޼Q6TROhc,uɩ`AcAc-X u,u}a:XdŶS 1.Ŋ>,X6 9Y榮R㉾5x* 8KH 44]jXL`qGpsO[Ūs~e!z )=jݸeMRbXʼK9n;5g5} )=G(XJB,7+OVPAyDny ZE $Ww=Ś{f*ğSm6ٻß>^~ nq(CEL8 /{ai{(9GdΕxqw΀,#s(ԊR/Rz<(kpUZ:X 2bO)x`AcAc4XxLbm,YQ z1,=k k1^B,kefعc`OjQM} Qkl ƽmʺs.ƂgbԚcf?KљX`soWdqrYK8زblxAe9ZRM8s<.wJ{>ZЊl>ƂBy̴3S{1B}U [܄/==t ]G9nb~cU%'>!+XXXsP.Jcxn1T  0j8_Ll3TޗUQ,h,h,zIH9u-{Θ2ʢR "XXXh:/ɢI,h,h,z~:0[ NtR0,h,h,w44@Ƃ;XXX}   `AcAc,h,h,w44@Ƃ;XXX}   #'7XXX᭭6y# " v%,h,h,t{HE$ˮ`x9n4~=[bǍEjDNR/XXX Ig·(m#g"H]    `Cd֝̋mdM s"v),h,h,0Va3.hԭk5otYS-,h,h,0"߼醞|9*50VD Ki9(~Ǝg2CaL(-,h,h,0D&ɔȆODŽuaP5i)r,-RJ[iɓ7I)ZyVOTx“44O'7#/%E1ޙ5+U;Qh%i_bўQѹv}O:`@[?ɪ[WWj!6np,TJe C,h,h,ܛ'XK5 ︦>+9=2àPa7HlȦ3,Re@5US'mHTS,h,h,~,cG,'#~/5/qY/马}vIe8AbVd˙2( ;ȥv4o" :`|)X<}U~ojh;~"?7KlJX/Q{uOسgc҆k)ߺRm5R\®J_0;!jGiQ?p.Evd O?3? 7^_ع0#}MeWiXUfs=;>j9w͌dP$U*ʮ B?)=w|81c=[g %ݵ}σBV?v;i+U ~Swt5M~'rsx1X%*"H$'Ȫ,DΦ~EBj۲s4r:fqMp**4)* B]-ԂhlNӒ4 po/zovmqݥ﹨찳ZdK:p= sotvyGc{xK u7J~(?vįf 'ȯoR3ՆEUO 8uu|r<9! ^7SlYW IDAT[58:YzjiOż׿箉2\5it +E'4l^ z^wKX,\\^7ʵL?2C@,brRv)-3UaKJI\rۻrj [,X *"0RϱbQ__#~nRܙ56_CzmoEG漯~֞}W7M^s9wSU̙孤O,T~B#ާʐ׈ ~ݚ|{7"mhž?/j'oSEuJ8n1ULrA-{4R,.!Q2T#lkbaնf]9X @ba?2whv,$WeX|O|Q+;)d(=Xdm}O'}"dBl]Y+|<Ԓ|A/u /r|^OG9hP}鉅Yz߉$ y>bAX>UO,T uGQX1_KvU!HԶUFO\xE q 0XxU?ӛ\U. yx;=3!{oKNY< 5Jf!3P&b`mTG_+˱PX, V.2Ƣ45QR:ܦg[,8'v=)1v9|9YW.H,Xbsi8PSrhF ] oO,N񙦠xSLօpT}r,C1{wߠrXԩh_)X^_4j;EflAQb1Qju`b-9۟2r4)$>yLD􂥯*Qޒ,,-kGG " PEIO ]8qk@47nXb[PXLֶf]9X @b1M,/8 #t5BO,Ɇ)ߗfbCuECu[hy??U,4:H埢SĢJExj[ ],X &߼ՌrX}kmcqr֥ D=T#=#)D3U,Cj]S)*C=ǢاQHޜzB4j[ ],X &!MkˑbQf̿O,j|';U_h}pS [\cwR,RCٽ^"~@L[Շ0`T̎'x0(z󹝰9١x#Vma֕ $Ă|A!Rfzq([,^šإYTm N?]4= <Zz z!#=ixHbI}4`rhdR"tמǢJ0>VKxɁR V4-baնf]9X @b1U,G|o~=S"Pfq%bky;_ԢmΝ٢m#}:BD"z՝eė"Kޑ^)5b/EnDuΗit*QkTj'BBB]xzDXjZY{u!yҰ Pbaնf]9X @b1U,1G,WãrP,boZO;!Q1Qog[rOȒ;vQfxO@R.4,_G}>HAJ) pDg>lׅ8ӵ,T,d.B,TbV\EX,֪A`EF0ȗķeSj-ZT4tXU5qªhu`bt`wrjD9+"D,k~PxʱyBT~g>wX- v+-{+.ˢ/?+byEEh3B,lU.LNα` ֹBP|c`56@",+K{/u_ׇr W,X 5 b[/}F'{o'ڷ.~,d;EP݉Ԃ}"9eø=vQ$sq9|o/~FD3&wN/"YN7>vaW)H,XrH^O? nd濞ET?0"H,XbHGl8jC9ZPĞZH<_@X @b!լQs1u5{x~oJt0&H,XbaLDد:MR~1>U9;G?c@X @bW/:_p]m/=.*;xX @bb3 $,H,X0X @bb3 $,H,X0X @bb3 $,H,X0X @bb;ĝ6[EWLd݂+ H 5ٸzLExh~WvZ)s[,X `l@b  $H,[,X `l@b  $H,[,X `l@b  $H,[,X `l@b &;ނM I7Aq֏Yn ;W1V,|){yb^ZˀY|@bĢkp]X&J*Mb1|ŦX![>\O"H,Xz#:]gr^̫Cvz`BS1V}@bĢv^=b&VOEH,X xY,s= 林c``XK ͇ z?T;" ?~'t?hܿ"8X,ODg  $H,^q9yƪYv]5Q*%U_fE˿S\+v\*MS*-2mmGZjś咹-] –Ǭ_%b=mnNŖa9a,*~[MoW]zZ #<}WsFT׌qNfV Pa2XrUrFCaXƊ[<-ԊUz{M[rNr[ܜŞ`@bbXdG=3gnQkbMa" I9Es]HEuMK+G{iuMߐ[|xwPܴvo~%.zFZKB,#K],E?j8dس,95C765G \״3,ܩiMR+.1]rmi;՞\@bbXS2 8bAtϞbA7_-tz]/ӱDha~\^$o:Ăh*'X8,7LG6 HZ2T{ƷZX,;x1n|o4kR[uEsS_5~5':|B,3xY-F \u%Ԃs8YNvI9 mٮ=^m<;ͪe"|js1=b@0*X{AT!L]phſ#“X̽SA0Y? t!"y@#ܜyM1 miYDK[p:gDFrE TYS&;sji%j5f-9bEXЎ¹,Ӎ\#(=O,Q8!Zso Qo`('p&F¦i-,{58qW,DZG,d#1RUMnP4:R,ĬOmٹ1Oyb1N̡b1ö$՞" -lzOX @bL,:˗Ŋ &\}~g 7bEX)@ZMb^.&)J +| D%ќo)ڎ XXX%mՙ[zh*5C hF`@bbXT+ CE(5؁X|@|N zܨ.ᲀ"q#?܁;XjS5KEX$RjϛB h"vE ùOWSyd jVS`2AbqI`a>STĢGD{oGf6&#"[BJ0FXĢ~ },Em9 %OʮXLy(9{ !d LX @b1H,a8IaHF=XaB>4V^7GgpdDjb& $NN{Fk%YUex`[ºb{C,ͳ.Ux %zNk6H{9@@bbXh6e[ JF wnm* b@%mJ xSbdZ(Dq%QC8y'c߱ԵHՎm!д-K|+j[9"Xu^OlVbqD |;Xl qK6*ϩ%>)wX8;g=>?ْMfaD $};>JfV6oH=J/Ot;nX 5w%r#I:@6&J,V,+0xā7;4-y: & (5[%1XQjnxkS&ҿka_`Z͜>ffg9V~6^~7, Yg},t… )&i50Oj `,y{VUNXJ4U ֥6=nSєZ&T*觎_b$U:U&X2tį6Tuą_ث)eMo'/Bz,Ǣ+X(%IPb Ttq U8A"%XYfz`?`Q{0͓I#E,P3*Gm[J\{0K+tP~E( |BLw\t2S/@ \tX1*wBnlqj fv B4+6ҏ`!=c,2Yܕ?ԩ F)* rcN糣X(Jy)7`3F XX}',lJ^нL<|ٶČ ,ܩ5D ,eą}HoBj~P Jn&E_rpYf,Bz,z˫QϤX¨N1끗R,⑐%Mn"`gd:NXW`ԺRU4,F^$4 <)C5Z,:,C”x4У5:(ᚈy6pf=~#1aWzB@&e֩3|S+Xd] !G6GC'h«HT)7Au稌 ԗюmSoXMklZ8dIt8BSS1׾ 鱐~& /s)/ E0g+欠@ӆqgpe=b 2B%IXu*qݭ+HdaA^bu}LUd)/cCP)bb=9aV? yZZgĩWcrEG;. "Dy~9bs| tXUqS#SO-T$,>sT5Oo08A@gfbh.?3?gbL>Ob*fbC3F vҎ\̐GR<ԡ6I 鱐>ej.ňJP# tr`9"n`1/Zl!nVYt2vg`Z$h&`:ί߉؋3 QЂCjNY)ߕPQ9):F xεZc *6( ܪ.v(> /zc|͖Dw(Ց/L'EhPQ#i 0"I43D/ qqqGHy~7@Z!Bz,ǢO^مV^3,t}U]Smr ,߿ݴnV-.%n(_ܴ> yj3`񏦁͖մ-(#|-"a͗OWiG5,ꐸ75ŽX 3 `ٱ+X8RAwG%a?\eakD ӚF>OER{4}#AXJui4s(0'3VL -4Vu.QU+ջs:]"7&!-O y=SO-]uޜRVG&IpԴ .MY\F @^`MX#KP);e ~&n:!٘v#)R^@lVUdgH A} ~ "?A~w fMWz~4f }mf g,7Qd0l`k< ^cB'[3#L SITSVB`b+9ٙ`aOyZB1~!&QAxyOY?:ZW@[+Q2hiڧZJ{#0|-}fk˘7 yL3{=< =]GҌm,5A?| TX w(ƣ%:*?.R3چk>"%d,V )c!=}#BqBvD3^B$ d,Z E rk$i\ o b޸OֈX277JQ7cB W8G:g\,MCz7p,r:Ji`"XL#k w|u`J9":}5:, _$&p lB+PYlɤ!#<6j:*;^`-!?b'kx'4 "ѴX0D'VE9ChuQ ,)/#ᑃYv_ 鱐 )R"lpնE$жX4?b9rN~nbco4 n?|/]w65٤K)bpT\T\.s ߴq{`e IDATאc;X;dk1ysuNt`@(x0"#jB5+X#a8`flE677W`1N:WML`[,1Q|옣:u ," ,ȌiWNjB$V @Z: -N0@B 6ޠߙ :Ny&J͠Sΐ޶o3fU4&|@"X.7sbc|ohĢʽ" ֻowk ,sS,vuX߾̥. D, \,ܡM=X3Š-[,\Ї B,F!;/#J7XHR"U"9B[TQN&Ե&ƨ/6}Vd+%܍׃pW*sJ83KKcĬʣ~ג}g*;U7 -t{jHdI}] X b@Xx "w;bQ]bQ#7eAB-ĢXF}BvmH*ʕHbANb.:Ţ욯s Ȇٍ.z &܍׃`<\ d_nilMk(BQʓs 7b`Ә}] X b@X,s0 j\cJ5B8zB?cq.4vXH:jq't>OBQb^yX qZ└P2+^τn9aܑdV:%.%mpM  e"^P*3']  aPJTŐ0|/бe+A*r"l uwi`oS~$xCoim0&B@"X.dm%BЅoq{'bQ4 Cfi7c  6'|usU3gS}&ɒvS" ,3i{3Ӽ%BɞR 9h˜7 o5{E hFuګ kgy;qd)߻<ohDP," =+UF1:2onY1*9o$VX_ye(OvUa :sUl6}0Xi#jc"t,"XA,29cFv8|dg7,';۳ǂnV$%f;<N,꺞  c>|9^XIXck9}: 3d ]YʡbѷO.21A4zoMl()X%wfI͆ ¾‹Ŕ1/]:#Ɲ)ScSШԟ6yCfAiGj[n68VYzq\2GSNiM{/|6" װqCͩQmF;B(ltG6>1d@lo{&rj(bAndnQ0O"Jut~A1hQɏy"XA,7PM 1X, OX ; -mu}}M " I@a76b~o4[aױ+o.6UYUy[(("t-qb0ȏ =JmrN9%6d< 6::o55Ynnvf%e*T2%;ᆧAKf1Xʮ^ G 5<&B6: D, XHkl6"7{87xcdi*nV&BƾFMdqOE i{L?7|(K+TjlBċtA&w4B<{UR%yS3Ny,#[ LIz db+sb!0|b~) Kf٣bFIN=嬽‰o:%Hz iGtا yB<ܠ "(k ?@y3ڢ(b!2"ŶOnbY&8&B-gsCxb"D%~ b D,}av}~=cՎv ź D,ɏx/&1lC)RK @ c}_^<@ -X b D,xX b D,b"&G`FUw=3mx N%*Q9 )+*+hd9}AL߯/qg:bKiW%B\m(QS2X8nm?(qk/O,/T*3XRbi% 0X,@‰F8`o[ m=4J Qc\-B,`@XU,cW% 8 %hcD.\cBA,>X cŇţ]bqO,RH#XXc,>ŧ d, C_*!o%!N[I,uBTS`p~G p@ vbXKr#X cG,۬|f/d/N[{Y% qqn~éDY_,Ǿa9q+l;fX7^#GMq9M/ޯwbR, z_" du9TNirtt~555DhbuU}Ңq^eYERܜ%Ӓ]t/vQWVmOX cXDV9yn[ 2Gd,- Ɗ q|xj(UZky2HfMv(t3Mt,VIu )(DiyQۿ/In-7*b(vEYGuJIIȥyT~Ix-J/{z]bK'"!#GN%Nzؔ;5nE7V"ϼ *~-ڲ ~qyHGL3эcΨK^qR9" _~8E/\3XPjɓܨxY0}K 8nD2Xxũٚ*fwդ_I} Hc댉-UGɲ?!c':Ӯܾ"] B,% vLԺ,N_$Ml23Y*b5zJb \)YYXNݕ[*6 Q8@ Ocp%͞cY!? u)qzts9`Ţˮ +m*L'^hjq/ xNt#rX㙘)fC~X_%N!Eg{Eo^6YoB,UԎ*ֺn56q'J,@S,|jRc:y! ;;0vͶR,M*R,S-Ø|5;U1bJy9 bO!:G:ќ Ns4E"m/Vٻ%IlzE=r у}Eqe=wkU_]D@ /3fB1h&#9cң"皱#d1=b*9x#"0Ĉ~^Mt!23vx2\,+%Jw'b#FUT&Tn E ݧ+%X c%yg Vy!6c WLXxG%j&Iܟ!zE11Bc,bH!??  d, 5eo%GBbqFb¯Qz`YQ|/IbwAb=zƂ7熊EԚnjXԬ =wk7vkHq'I,@S,$yE~I7,qr@l^8o!#ŋmBB1\%Y4t\I\ Fj,5jbC7V3 %i;T,RaqyJ=wkbO d,(x("K0r }Jp_'^1L,8\-5ݕwku)sBMX cX(}ƶ/N9֢23v&xi~E_c1ND'6^Ouաlr͞)Y$V|j䌅Ms4"%z"!y0HwcL+cwQ'&F,@[,ޮ?9{84l2]?2泥# z=FD%c' eH#gfݿmlrXRc,81Oo(BeNZ0xibVMmQa^1ab2oĖ /=%bbUoog7捕b4;eh_aqֳT c) d,,\v X cI`'Yˋ!9j@,@SA^IO25v1 d,>70I[ 85xD{p<@frs c޽ n{NwF+PCkzZx:{=v"~)XXXWxJ-Z"   r"   r"   r"   r"   r"   r"   r"   r"   r"   r"   r"   r_MƂqGTVӖ,_Q3dqGeTіRD,6,h,h,۷l>jdQ叱E[D}6mSETE*UbjcZƂ"bGQ/HYw$*;XH#XWא')1n{? !i   X0鱃Eu#X dۭ_]yybjcZƂƂ`,F c1ZXl,  ½od"00YHćE28"ɰ_è`Ƃbd8yqs6W[o)ot?|:7]CMk?5[|#0`Q4otur])5RѲzl X5;u t4^h*ڦ L3/{ٟeݲ c7{໛T{j]7Ls#uYb^Z%aϼ⚚7T撱L`W{43z7yZ޵y36+<3`AcAc12X\7 [Q'_}@ڪ G/9:>)a0`a|ҥ\;U?2wbQJ5.:[Uuo\Vt]4poSi_Ք .s9/i^O^臯U5hꙻ~X83Fk.3^R^x/‰w]Ty+sggƂ"$Xomur{Čk,[;0&pH_:X,~[P+!jkOB0`Or:tu,,Fg q'W SBڗkΏL6[V6e; "tㄍ`1gB;Z*X8qvf+_݇geq&Qԯ]{6>e~4,,du\}˲_[trynYu>< 44aBbB|t7ĶvB /KǛo^-J=8(X\."Փͤ>Eڽ`$uAjY2z]\K,uJ X,ymȌ +N^yPd-Z1^)$Xr^rڗ o NЕ),h,h,BK=I qjxI }}!={qOŕ4cQ25!jzs/D"` XH3$^(@8y},?K靚T944 qQ/|EZĝOj'ʽu i;XdG=F(K `a\حs IDATj,u<,W8ǽV #jph (枇-^;)3`AcAc`QꞮ`x!W}ޞ#*L)cNV7s χgƂQ8[}w9z_έ'ow耨5QBPDh46jb* CofڧaO8gfόzX{-蕷9^bl8.^e>L(_ |wA':_zBEĂIoqõ@ޣefB j(_i6YVv_0=Agsbs{"dm<Xd6i}cױv}l2PZ,@"'?8ҟ%H*U:GLWث>_Ģ-] moh;ĂMӉ/9:;c1F]"V.骱8{V+P+o$G/Fh_,1F'EI=b 6Kwx߁ {-|xX coֱ8fW*O>*q|ĹybOe^YF' o6>}p5-lM{XM  LRy) y8!xѲύ?|V9aC}RXxf,[Ru3'Z,@ _w;|F~֜yc<Dǂm f<,glz<+AQ]3ȿ!*\ؔswj,s뤞gs]|ƴ2^,@sLjiHx ¯qt|+A=EdǬ5سB d,㵦al_cN+Z ewe~S*kC,X cŧYyKm;>6` Iu~xޱr/:[J݋F@,X c璋]8?Z=׳6inVm+L-m|8$woɻ#orX|U@uor(tibcg lg}tΕp4;cT%#,X cby=Q8A,+X cXhc b|]@ M! X c"u =x~+؃܈bbZH8~pu埾̤h#- F\O˹=-L# jćT0}u͙'tٙy>?m_2㎽F* 2X 8ayռUʋ]d{&8/!2}J6>@S<7(GwB/TPTՂJtO[9Ƹ|X)|BwsD_\=-2:O y~ȈjcX=Pbbnqa_rH2z 2X@LR`~*cdAgS,N%sƍ 'LSnX,RGu0e\ËbSȚKiRiAiN]f_1F7'sX;*ٝp{2kyg2XԷ+mQT46VaTd{:"\Je<]. ,KyZ(oԡXF"0)j J2q74Dl/Sazo~L[F}q֢z//&0bb2:b/P0[E~!DxΏ:ł[H܋{Ul͈AGZx9i%>dŒ Ѳ UDԌE-a4!S;[,߮O,%=7]dNbd̗莅iiѱTWx‡2X{yM5:/ ۻ-`tR嫁bc#06]2tݱP")0 nJ+ZqPuWn5UI\*"9N=]m.Y%hf,JA lU?< ϊ2XXdM85MilVXI:) bRQ7EIX2祈{IR_dFvo1bνb7<}1=*T%I-@ N7aPjcϐ [!Fn̢XT}mq{2G:tB т"bV_3 S[,fKBr}\dG&oCsGp;%X c[~M?ۭqfޭ¯E Gwb;:Ϝ %_,X>\ߒ /v.YSDv,iÑ&.Z`d d,y.߿@ d{%kOb!f7y*P/bIy\9np^b1bQvd((ϙԎvbBUd&~ULc )X c`)gvy_XDb!+N,^d|Jkb1^]q;uGϽ= z;X={Pyɍ4walhf1, d,@Qt\\ޭoŃ({X,LET?bTE۳=UעB]jH+HTj+/vNP T߃Lũ4S _bw;&X cUod4\_XzHP/;ynf_|!?̲Sv󑞲vnn(m\*gLƾ+U/oȈ2X/IW*jd{UcqR o {[W?^k8A.Q ab \ȑ#$1VgZ /yNޝDFDt*tX]=ayjÌ8owHȳ͏6_Z,^wnRPJC,:g lLGO]O LGUA]@ oEY:ː ,Zg}G}nÞt&v2jX[`GЙn,"@/X !QoUpn2 qo^[3,A]&@ 誫o,:'4eԊ`C'ۿXop_[U)N;+w}l]Ije5`Z,>=N&;dƷcvփ .X btŶyi+8|?X]Fkb XJzyYۙB!#F]k涢JDlCH%W6fE<`wmw |x4G1ς=7ZX@A,@>$Y5Ɛh1- v`qE4Ǝ/? Ua_[';6HƔY]d?eܠ G8yB<WոYOG02Gw`|6\ٗl5_reĎopDD]lV6ÆgsV f*y(g0A1z\`أk6pAA ,@5p.OD]`E,5LxC0Xd^k״3p L'fxw#"G>`TF޲H"S|ۻ7%?Nrf vD5:q zEl KX b]mkU&sw:1lV`M/ 6v?N pYea[£ 3r?21xx5ߵ7SicQkQ/;Vaw)n= 貁"X4W7ނKQ;bGy  ,l )rؕ߇78 ߴub x,`A|˞õcd8dj\}du'Z5{BaxDMێh3sC5 :g5Iq]$Go|K+-r!!o$! D,pk0aRGQpyok۾}y Lr;M;_Rv8Ӛ_Fo:Pp(w߆_ᮂ {j/[4f!ɷ 7E@w[:7 n,@©95j!Ntz p'GuW}??AY.GufH]ж/"WA|^`!bq`"B wt{@P+X`:u6l9z A?,X`h|  пsӁ ,8w@`/m0az`id}g4P: X+,|^`Ź"X ?X\Cm(KfUԳ~iTU`> -d 㷻4J~`qʿU y'o !?p Bk:  D,h si{d#I|dY%x2e~Q;yZ"A\ař9V)Og_mYj]XT/7ҩLzG%X*YR۵%]gwNu=&b'I!EztavoGJȲElJ?8Otv TgI m5{WTpbAH'%,6xbR$,ܶJEz5iqK$X bESH "bXQd"/U`O|JDhDԵ{3?;A2$P=$\'E~LžhVm=!.sqH yRtҖURqhr XW)`gE>%mm$߈LL1#i(=!i-`"mEnj:xA5rgVPg5*OBUfl,6]8XQxvD zSޡNǿ XP Y+/S/;T4)%E3qiz\vœNPgX8-bm|EŪ=ѩBRrF',"É,bA m-,pۢKkY-C$E9$`"mŊr_fVonpQƟ\n-8"ִ=,̣,__-`F޶pnbI$/bd``xbJrJKU5>Yd `kE0v%Hp:!:TϰsU#ܴϩ dX bXTQ~9?SבA]XwJ~`A4"%vS^Պ3Bez( VaFHCtOF, zr[a$À 9TR2RX36XB$ Xm)Y8˭P'Ż;Wq D,۪0ⅪvG .,t, )㌅lr3F>),*)6pak,:2I2\푴|T 䄃Ě,mXfŐ,ܶJ~(ZMmGU D, 幪FnS'|AA 1{n8tUvм`9, !Ri!3`(˴m^# _:|$>H ,(eQm^G9D+| D, ;vx E{> AA \NȚxk(P"HVrD)Pؖ0#!2"^߆)O-9ECŠЪwOM}]̂?E.;  kBɹm,^SDdvs}yٙةv`fhX.k "{YPsCsB   И: ;VO5uE,ڔC6jHY:<[ξI%Ce;XxQXybu~;ݬRΨk1坝My5   G&iI?"N1!^<Ef,Vhн,ܣ(9U3uŮ6j͚ĶoMNfP͔"yvce;s:hd<rW  `5Eu)oG]$VVE+Jy9Q`alo;Eew_,B jfi]+bǸڜy;hF.ɖͥ0WvF;>R4c|fN]ks #B⡏^cXgޮCGjh+XX#բqPƂƢ9X<c,,5N&3.UaBdO7,憶_,ܕEټm8:[X& ƣ;?Ů *V`*sgms55Q1`a<ȜqKJNc2֒sߜ;X(aE-Cy   ?By2~k OI~,s[kڑs^SZ3 Z }֊zX>dw#ƕ+֑@r{K_wbAjj0ni'Xxa6VA#`zTkk򑦬ؙq+M B7˛kƋZӭC,{ݮiRS<.XXXsJsӵ)U[OkD;&͌GQG o[2`AcAcέ;OG=+3} q   p>!N:qfnL˪Z^S 44&-Ւ[5{啓wo6XXXJ+oo!/˫ݥKN    S2<n   p   p"I IDAT   p   p   p   p   p   p   p   p   p   p   p:C)2nb@乿5X+2R[-QeƂƢQO$ku˃HH!o2Hdo@  F W65RRwb~"XEkW t 3G&XghzXbRLv` /iNdKM"&X4~KEڥƕBݍ!Ghs>XXX4|B&÷Ix CǓfjQGz7{%;Xt&F%e^G>{q-,W O`q?|4r>`CZb>,~4C")sWuo{} ''c(6=~uTtrvB#KERuݚBl:/'~^i\q+k-8XXX4ԫ3b (72aXZ|,zκKwE)+zGǺ/r3Y Hyr3zZ'{x-v]$u3y)wAיx

˪7\$گei0f}&ǝ`2~3cc;uw^Q^\cE:14&yf?L/LًQg_4H^¾~+X %e`ƝsO>k7Ygc#EmqƂƢ9Xڄ$셧"^Q{zlTוK}}#"W[J2p S}xa`+J(%^7ށB˧bk `a{3,nĶ1}%!{c&p r8X`**9ӡP;KSv֯3`Q2a#FU4}r[&Ov}`E, eY,N@Wg` }EcE3p00 60X7%PԐKɶ}) 1@'|HU^1m ,R8v(Xa06} OՎ 5:`@Sh b6M_{2XtptttzGס'@`AH?ھB3Cj(sYǠc7'XLP9 g_)PйP+,lv]d`1.a5,EQ1'X^Yk- \x/J`zں5 ,SxҫYKWIy$huG Hiv|)Q(QAx 6du,F+`pFsNDFD;;sieLln͠S!4, z({ICr|ID$ /bE,dHHU/HfLW9Nd <硢 ~(4půlʤH.}R'Oе7 ,.)S, {`q5Q3Єr/}=`᳾kXr`/}-`B\L}ڦ/X( &`OgNh'nu f#boXgE#Yz(m`qLN*d{9 96X\Xb V7us`"͡G*]|w"^B4YPآ*E]su`**W dfe{=" hšGf~$}Phђ=tXd p֡]" su* rK AX.YrAT jlU[ wQ`E,XHd3A}%% Gb Ay~DiO"˷!7=}TtBL%ݧoMlEnYTUȔl,qg9%} @~qo~xcG+8zFR#r3nVIz9qRk}s6 lx=_=im_`Uv,n)K$l7XdJsd6tk`o真&G@=㸆*"+*]cTriMpWI&i3H3m$l%Ȟ(:pɍwmCiYChb;q&Xwjy-3iA z^8Bdݼ2$nV.%ݭv gs6QNKRu팈fLG^E[[Ȋ@:cW ͉Y߰TmE`sbW'B0xoъ_/GY-K9ڶRq0XfIg/ lڇbM`(` 2E־qrYlZ ,%Jdy]% S(# C<^"^ĢX} xD'X䄾YaA ]a;W*x Q 0ksʧӮen23bDҜoqw BJ`B~ U=,}zT8f33)Z NnmOsd ޣV^4W#nn! ,H\-1M%XLRo+X΁gENQذE\Wde5c9L][SHy*c _"86{I!1̐!,)M2/y߳}tK-dVJ"KsN&"!ǥlvzUQaL/Rg\S{;ÏXt2.3N[]9lYc `b-{bo*KFB_/Ω^z|=xssbuPhڣ8Rq+4Xt-U wJu>Co Eㆠ GXHI,Ly@Æu<9&e=X#T𼲜XH" -.N gȌdAQW-3SPŸC 04oA (7p3_FbqR?m0elmb/ ٗ.CòB=ihlQ 4Sc5*MG2xMAIRb-$"RxF?%O,(Ĭ bЭ}3ȭScxޣYb` >COD n7a7n[{& ot25v$ & ^W[tL,rhFuO,uV+:Yؼk NNyƷ}'90[{,E['b;v"ͣA,fk2(-G3026Iiy{hUPE2bĂ.W[=aem,(Am],BY~,ЕRMDL5ݴC SbPd[z]$mz/9zL,@q(9"c  oR``݅Xh k!7\q4Zc;BI˭VZX+Iˢw  EGĂrJBZg? Y[+0`KkX&f[_[-v9*[N @W$yb!JPL9fQ ʖZ<ԾNBz}]XQKAJեw}Ѯ8$zsdޠ%G,sPGK1NXp~˘6~" k٘59>:ӘMZMXx>U!W}/V1Wx9{jM,\`2xj$ ,JɕyYQ]A3(ИcPSU~6hgZ|L vWRt{Zd⊘l_-F mcBo1Ioswe>"Nz#-JbVtm%-oq68k$ Vcx,X, ‰4tR#֚|z3lf jJhj5c ڜ!t7XVa 1[bY+"71g%c̙'( H֥vq<ZfA <b-;E6?rE#+Tj#[9kXޞL jJvmcT1K 'OƗ6,"p,o\O3[. 4QzJ܁w%`qĢ-$QLtin+Zn8~O^G,7vu &, ʑu An %wV;B,bA %︟y?IGV SP2T[kZ/OtnbQ`ӹfl╼[tI3E p6 )#K 4ؔs2<4X^^DH3IrBe0'н`w;, t!A­r]`rb|^| ũ7ϟX5>\/Oz_>bSP*gUP'B-SĂH\kySb4 O.v2@0N5͸bC 08{M`i .+T''2ҏXlUd `ĿWыS! í"6m GdYV|ŁMԟ4K (,WO,l2Ake3(Z-t-Ye_X^d鳣$ڨ-b!V=JAmG$`~M "FB2#Y|:>ݚMZ"AN/eBu5bQp?8O&r@,huc nfh vBX %JN1do1'@(E{Z$Q#'ggBrA(D_Q2]PٰE\o8l:أӠaF,L=p*ED! x7 Աкeg樳d߱wXwXjz=B uH ؕMR,7IP 4\eAݔXpID(Z-W=QetK,uyh2tp l9 "EbAR-Q2u4:4eXOFgO"i+٣3>,@!h阞4DbN }]`>#~iJ,B[䓳g[~b%fnl~Nv}9^׎X ubD ;T ոC,`u ʩzBf`x<{kq1}U[NI Xg?-ӉQsf.o rvl3%-ud f!/EV-om|qQ%ShIfJφl!%6L%YWJ @lM2Qt2M}C/ly4#u2-8.,,qEv[ޅX)ⷳR&$teL,_B-tRQ޴H,l԰:f !l8$bN;8BLVtfג)Ң'{zZ E$s9s] |f=NCRb'W۟' J ubDɷI/< H..'ĩJ,{h6^/''H?@>7O^>co@мY 7[kэ a "@hyJMݳgYuMG-qȒ[!2BDyH =Ŧ)`x^hG`n,T%|"@]T {8&yO,[֍D,cˈWQu4(RKǑ{1ӔXpI$PXoםN_K#ձan;aADϒ׀XE30'L^3ba [:[u+V%仁ST%w 7x‰#αI:ln#KaGE8KwIDqfuh~^b[BRcJNO'R+~"EPDX %JZAv dX*N6 |I~r} \hb%Xiz!^!<+9j|C,m-نĂy\qubքf`Xƞx@, RcMh^JW9 'xfBNO,%D"Z͵&B: `Ӽv[bB٢BK/r֔XEEiڑ ȁ1V2<͐뾁 Ɉ֍F}:'Cв?K)XlD*x+@4|N/% xN)bD:P'J4Yw1Y4K:{7}T2A0NhQin.>Nw?JeižxWmؒ`ٺZy#9w@ry2ya%JZ$BX(QceN񏐈)ъL,GDI#b2Oєi^S*XV@B_@7ܸ<3;{9yiPJ-ܔ$'''/'6X bo[<=_;.CզvJGA b&@ t-?-U) S,7R今,YT"XP=Xdv\]JI&;bA#GU`y{ D,bϺs;( ZbߐT,ԃ D,z9=9KQP"SКV]Ȃ~F5`X bB`X be"XPX be"XPX be"XPX be"XPX be"XPX be"XPX b*b"  @b"  pqMtP  D,X| \PIb[&k<ܞ&ZU9"j"XS/ˊ,n;K6kR,:|r@,-X b(3L)] bZ}mb'PODR,D+"Xm :F,x6)b}Aoa̜FE'uےk?vȦ*chU{lQ#⬜DISgsw& n&ޞJ= u tb bQM@b!fϳU٪RaX8Vl/KbqaHX"FB,@u҄9b!MB,jD,@8)%of;M+.ˢwcUI5l?bKc'2=b,E¨Zh8.ݮ}6uXucuZv;F,u#/R[,@8G)vR z'%ĭGXQHXѥ(!+MP8[r9,kғnܐ ytbb9Ȳ](Ɏ l|i*V5"Az/(`k[,J(y¨Z*D۫yi${RZbq+'ƌAӟ|=q/>zh!.b1(ï}k>VSʤa㱒PoFWPI " T#ҔOQ;NznhX$QTQkr,s늅)srS,@8frӷS4n=mVX5N 굨t ^>n}uy*68XxﺅvWqh-w7>f$6=u: J suY{baNվZ8ˠX||UCE.s#g4ib$k5hN0"w9@OS>:^4x;-*ެ{m-QZ(2ldU;^v_.ZB.&bGG)l|d5T~F@ krƵ^٫[u/csڄ~) Ew6fPT }bxL9㩫uܒU'LӷLgpzqIn/^3[;d#3l#AX2ֻlwbFV&z}ߜ[!'oN^UDZɳwgBS_!*d ^؊(KB&TEV(h> ?*ܧ-)|}sd_ptd~h~؜`>w()1&dv'c…l`z0%̥..iyPA$"loX`f ƍ"ד64{g,9%R!f:*>b. }.+ݗSP鑘dhT,K{>P6oK [E H\oeBa‚]@*/Ge 'e]9,A۷ʍQߢ_+b xRZ`J8=U%q%826O_DX,Uk֒stB4Zka& R N ufrNfɷ&!݃{vt!׀f~%l hyr/|n%d)BF`α)%^yح)(`s$؄ϼlѳ nݯ,Telnb OÃw;4u}p36s7qn\AyA1SpޓKI:vϭD%%ñX@n/W ڍn0*avhM/Aj;x VT@woCDIÝCC]q;XXj.mJI0 5G`FdȬpp7C,Ory :f̙//t7`}u;aG$#س{$X{}==X6XKޱc`Pb֤qlO1=@,b{`z]!|s]YVx m$8)X؋ O_{ bY,~@産0;^AF b FX*bP-'XĹ= }|0P·A/p~`!'@7,PRbiV3-9/t="\Ǥ !0_ËBT`)@1Fcrc8?ưbw8 A e`Z-.(g< $U@F R/ʁІ1?/(O }> gz9> g۔ xrj,:UzVEX83,Nt,z*i -!@8 ާjF*ŧHP}>F ر+]v%XtW({Ѽ6L^,:z U*W IDAT_BiU4%X̰i`R1g`+|N,8`6^9-^0֘`4a8q5)x;0Pt Wa Ӹږ/oVMòbè\Q, ^SXggm2uQZjy>zaLTwOiJ{ɡ0'|L%EI"`گFW%Zb8`35VWJ#MS`,mfob۷ߗ#ž,l^6꺴1`U4'#?7`kSyA KAY)`qI7z54f1HDbc,.` Nbfa@I?p[w6ɢγXxαT3+= %* %wjbh%/ y ۲컥E7MBXbd|X]qߊ+jWܖP2"bGfM >5,&;TXq.146ńzЅTli98u1(vMDž<5(\Dt`6V ,cZǴID;X26G Mڔ:ͦjT%qe;81XX8 &5gwO{s*9 ,⡬&^2=911ӄʴf韁#"eGBOhe<.? &,*gC=SX= L>XѲVpȆu¿U$X4RVtmd/y bqzɴ~,E?.SWy3X靟.ׄ}e8޹=5ϛ ]&q!%ՊCD.!E)咓*9dlyc\py8`eEe铥%zO}ITǝe7tnd`kɀJ"X`"xHݷCExH$wOx$"y`Q̓-P`2ƠH w-L0Š,P`YnH! k7@3aoO>)`9/` f ~ǼjI0X h=Չ1X_E`6;"EE8&,&=~Eýl,./1[8;XX"XOe >!CiYh K ,zօW]TfKnFX JpDV9VUVNGoT8r~>BPŖ/xwYE4B :1"Mۣ ]`/ubhs(.rc(.DYc6Ay=/ Oci,q$!+F\ly-Hd'! ^.d< $T Ztn-^h)g.k ʐ $:+v"3޺? wE7kX]C+`Nͮ-,u8u0q *)}ҩM!(''"PBŪ`ql6S , JX?N ~Y6p̂8,Ccu+M%R|*ͦW̅[`a Eʬ(`A S  ثr䫷cj$,0RHAMT)ǐv-EG2wV,`V?޹J#FډyGXr[kBBjI`a3ێ$DX:P ,0$gϵA—.tz{b<` ,FӳG`Y0dD0 ("5@XnHWX;m~N)O,,9H`9`}Wc1r3,JrU lȘQ?@!^߈ŁEcY8sXj,>=ͼI=6{䷿w%V,dT"#V<1tN3;&a0\ϥţV^  }e{ʅK*FntD|@VMy4ޯ Xh`NV5j{;ecft@P?dmC0,pKaU!GW\3G&k g$6ѐ1ݏ}> c?O\I.Z^79Bq~e)BOъ@# k`ywgۃE4 K+,%7>bHp( Op{[.T3\%}lXxZF:0>,r`,:?>oafOuSsXhwvi.x7m]]xFJ%.QUl{4ZSXu< -씶1&wj ăܘ,>lt_1'tJ. 5-,|X9%f?~573ǤjCB} ,-G:Ƈ+j Ԃnd&rB&Ӽ7^ժ?LT֖Hg @\e RM8-yk&4717 fYMb,ߊ\uV͕h {M? uc \ PzxѣjA읢/޽5Ɍ1=8#WQpWGFF%5mJ8M#L1@y3v$c4@DiV[]T@VRjWբ۽ܙsfCk393??sq^>m)ܟYJo[{)XPbvef;} ŗ`q۟w-S}Ţg^}w[uBἑ]W4XV#B}u1C=lm0ƕ' 78T$>wq0.eӹ7hۗSܱhg^m&D}pcՌBG/fc뽏vT,X>PTAh+ *T,?9T,X>H=):i!;T,X>@)w` T,X>@CS5,`Ałi,? ; T,X- *T, *@ `AłrbAh9XPb,XPZT,X- *T, *@ `AłrbAh9XPb,XPZT,X- *T,^Ygu" oE)^إDj=,XP˦Ktf2Hm΋H~*Fo1FbA")B[^6MX2I-Z.fN7]m~Xdd@1j1VbAŢƆ7gQM":KY44|H"2ss~Η7Mj󍱷 *5HnO 9Qu", .XPbQ#fɜw3QuY `0X_sK:řy!D`9W;?tDQG7OڋZѷEՍSezS- +r`O5m٩NPOeVn^'R,o&MJ?Oc-}\5j5"2kopִʛt#>w 6 6h 8=8a)11\)+9{b *T,jUYy cT9Q/f%>6~d`K`m$m[l@s .뼬Ų]JioU>-`9o (EƆ+U>W$'sZY)bQ"3ݴd%h6Xݝe]nuPȊyX ;qIFG)U`KztZ~R2%L:G~pd|QJtlr`*f./'Ohs^s"0Ll251+"uYKwrM^ T,XDRޅ9(ktѵM,^"S:XEP7MY)+FgQEUbC qhsd`,2.՗},ⶤUWﮢ*#8"{^oYF8"D c5Yvc=~7_:$~~%Qq.衡zuQ)u`qrdD53fdV od휘Ap>twi]z'Ќ5H8﷘ RǒY,Iz3,-'`c3`Gxxck^bA"jN uВ}[Q)`ؒn6%rJ#"}쑥K7X8j;4,NknʄwH7B,F'`(TԉA3޵CXVtJEũbdFES 9VsV{I#8MObJP@ M51E~{q4h{ aܝDf>~;۫{_ [_ ;$c/Ey#0,V$iT,X [kLI걟D`W1_bA}(X,Hł/ŵ%ۄuCg:ѫ\``Ѹz0Ցy`Fɑo2@HsbA 5\gZYڴ"~1jPmE^Z.$c2w7T 8d:(:_=)IbRcUb]LtP vCHsbA↎w&-P M,ʊNq,^I IzwHW(nr+q{0&S`QqxޚKwJɠ`qz5cM&X9XPbqCޖ2~/%XۂELEh<6Ձ{~TH0?8,z=``AłM?$ko.x3,ΤΣ'ow_e MU*9lힲbo8~*\4u\g_Ut(:gF.sϢp[U;U5_x7y~83= UE *ؾab2Š-"7g]8i)6_p*hk:2O-eEKjqB\@en?b7vb&U0l(yC,zgnVոmE *x=hf3& [g&"G=P IDATs]]pÚ F2EIM*&ooQyHE%܍X^hREt^?T *T,;]{dzNZ3 n˟ߌ&WoX;q i T,XT,XT,XT,XT,XT,XT,XT,XT,XT,XT,XT,X*F=XPbn ݇_.9zbAA}I`ԃ *{ಯ_>s`AłPKdF=XPb4?$0 ^FڔͿ^"4>t[_EqN=#,XP@- um+nX؅T|_|oJc6'̶ sj(Vr>,mGs6K N>#,XP@}^h_T] j|lRwnIadwnA8ʉUL'N>#,XP@-K_ȕTɚXqmuz!Ւ7Ko nڱrw\7N*ק&\.>rf(>02 3oQ+*v;Urv#LhP}e_W|Izvb6-tZ׆E *T,v[Rϔ_3]x'齵kS&KoMCGǼ\K?s`AłҮVvhUV+ԑlt0U;6O->XM#sFO[0R ܢ|YVJ{ݲ%KvT.r3u?b]c0v_S`$ *HNxe;q{:yrv[#~iӎ\ǧ0;Be[sa炟I` *HTt4&GK0A{"?ug_ a#hfg;6j5=RO8kC8NbA)w,QRΓO0YݰgyݛR/<ݯ%nף"~bƸ,XP^͗7#0z km|?+--PՌs)RzJjsܜcǙkn޿7PBN-;_2s,ZzV;|?/Uo XYR uUwm.Ȏ_0"Vz[ƶj^z58(yf#sR>g!a *T,W[5YTg(.&#ewW3j CV:Y49=19on6h5/ftP.RWa<krmwnJHDhuX%3 Q2ml0XPb_ex[:,"9ɮNo9Kfd28We~wP r_󊛓_R?ﮜU0q:=@éy'd$drF_JLxE Ǚ "LD2'2ߊ?09=}Rl\mO|ۧu};uY\ C T,XfuP2vEDDO=k*/Yɢ@cQMve##xW?ER*PdUg+:k}X$g-Axg8SɽvŝVM=Q>մWY;"0 *`}V'X|_+Xܖ:; GM-S}xz0++)ؑ@u ԑ`ϱ;X,ol%*60-'N`J;S?Ƶf,M?@f,XP`$k0Xf^ҕ[p؈u0`AłiDr3qQRGY"kcٞ9)%~6Pv!{3I Z.[q`8-y ) *T,軚vSc݇WŌ݌/ԷYIc&&駚shq6 5`AłaC4n */7wt *T,^h/] % */(+| ,XPT,X *T, * ``Ał0pbA8XPb ,XPT,X *T, * ``Ał^7=Md lN K)ɥc2G %W30 f]?O;0 BP,aX(pP, 8xX(<, b BbXBP,>xg_>{~ B O`YX(^pfB0,P<g °BBBB0,0,0,@P,0,@P,0,@P,@P, P, 0, P, 0, P, 0,0,P,        BBBBSXcXbXaJab>jk P, 0,Qռ   .}°P, ((zxwx1>{LŢP ~\r;Yɏ+ ^0kC]X(E;v{섽:,tGŢP 8,O~GQkvR,~,G(6ԯab z=.{}_âx7~SP,RqV,J Hab{ W~0^;a; S\qX$]BTR0,@P,݇pURnwҿ޴qj'od\ˇENr3Hߖ ոKIs[0, ~반k,=OUg!ēLw߽W:,JPc۰^R,Z0Ɋ8BBCkqɫ΋wZ/âxLG2ۇEiX BoYެ5uBha1dað P, xaqu0n/ߎ(ղa:,G"`T,NyEY-)쎝a+(d!*^UbXbXb? 7~Akgb'J~:9V,N+"}dUKEU =,6_nAb0}ގX;Ћm?lXbbyX{W?EwcaYi˰[$KtYh-Q, auB)}oxӰ'o/ݡpSQwbzw@] ~\,|6XbX{g,K($ZWKE jzsUrIQ&RܡpS>1Ϳy[/(>E>b:>(vFCBwU'Ki5 qoF~oQ°/]#^ lz)]e_DOϪ7?V,_^vq zm`[X(pа("Y^_5eXϞg °- {]bXP, 8xX(<, b'+ +Wvlc $C$waÀCXB8ȋeY2Sأ̆3s]E]U=, bX@P, bBP, {X(d BaX(=, bX@P, bBP, {X(d BaX(=, bX@P, bBP, {X(d BaX(=, bX@P, bBP, {X(d BaX(=, bX@P, bBP, {X(d BaX(߱N;, n7/Mݻ?r*aX(pC;˷'/J(wX(8>-Ri{;N)7, "&ۃ?oO."~m^"6R(oX(Gt+'k/x)bXPqs?È?#㟿?ۋ(:S  Bx_ϩ>#bH;?+b:g(bS-3, łip|6QR|o}!b.}⏈R3-3, łG_'??j;DU8X}TWRh~7JTU=>ع^-3, łF<Fy~tЭzp4_x}fu"U~rԹrbXPM{y2=b-Q]0Guel{ԭo+O Bt{kkk'{qw"~K"]=6YKnO7, ł-ƍwz_=XL<RDsSa aX(z4fF~8v{vmM~LG}EԾ?1 bA~hZ'͏ƖVwBFY"޶gN)8, łҽ|yjpeiPvTupyBsfWѵ4$̷?pS((tX(;>1xUu}I{Y~ekDX#⇪\(hX([>؈h/~ߋX<Ћ񪽻FlyquxREܟlGvSBP,(I"S{|IbX@P, bBP, {X(d BaX(=, bX@P, bBP, {X(d BaX(=, bX@P, bBP, {X(d BaX(=, bX@P, bBP, {X(d BaX(=, bX@P, bBP,a}x' (YQt*FEŵ6->MbaY`h:wk:XXX:XXX:XXX:XXX:XXX:XXX:XXX:XXX fQggg 44xŬ%W{eQb1YN   [Z5Xtx,G0AƂz+Zt44? `AcAc@ǼX,&`,2gM,YbX,0QƂA#Xbg 44-?X,0QƂA#Xbg 44 X,44 X/]{>r3W)Lu+ӫUObH␁ 44 X-q*俎X/ag׋bQ/?g/+RlRz<+,OlfI~<1mmO&[x7PC"X+XXX`ѻ7.zwKGQ*3Ze(XE~>#X(u8K'[cV{t,G"g'`wwT)4LHL{g9sjO$C(EY'_= 2bI]64V*`aĚd*+$`AcAcE"?ԶyR/7˪ObF=-U=;kR,4mQ    , /J]v!枾}pPovZ]`1ؗ,  +ruV?f2^Wdusq'X,h,h,@ZkƙKEZsif,FI=W{NϽ@kH&RoHnDC'XXX`ѹ<ꂕ*nEYOJ)"g"d,~۹?T9Hܚ%<dC   ,vfsuBk&;LU9M  4#}럾K`Jӥֳg<# Ty~3XD",ѡ,sԼ}RP`Qh6rW6$M%XXX`(X_c`ŦRG]>f?۲>*u~E;X*wx`JQh_!X(,в\UeiOgwթY]͊n|l39 {eBKZǿzEXk~RV*_~\6h `,'ĝ.RZk\k]Rkt*=}a3Lko>~SoK+>dzUxFϲxzݟM8@i/nHyL$   ;XaMt}9K/kXG£Vқdz4`AcAc션e>Yb 4   ,b '|, 44x0gVXnfgq0,h,h,`Z=<2|k5,z4'Xh,4{ps Fe/avfٝx_V޼M^)FY1``Bc[N#k+A  olkβР_  bXh,,Y{fyyyV8#+0!X0PBc@ViϿ khֳ8,{zPYܹ`@Dc}~N=.޾x@ ŋ0vJ`6 dX! v}S,`' ,?!X˲5 E`1\;[+?}bxaȎ/\]Ycg|793X 7 [ڷ_kpSyޅ͏jٟV=8W<,_=`zus}jgpn4O޾TF_7W ,aCkY$pP9'XLo^}榧~KQ Bc@,΅[^'gVF>dgKz>x(Z q1,ʍ=82jܷM=^AtB頋v6lQX׊4~78]kqޗ᥵fC{=߷ų˻VqL+ݷv岹1RXh,,  s>rYwYvYʡnS. eۏ;͔S]X,ߢ)Xfu9~/]bd3R'X9s_zV˦`1Mgrl S}Xh,,  !.,Nlŵ0߸vI|tkb>zBeqU+Ioe V1XLy>FYiawa|: ;ۓ:V+VlU<mnMaVboڗPfl6_[ ËgMb`q>УW17s1k7)=XŻ1Xy8hW'NEKq!>~3Seq|qt>s>t$zu9+hc~ⷸV^˲ᰭ<_t~'X󼦊SYvZ5=T^l;Xkמ]\8Bc{gEf!.u:P 0* ~hD4#ܽuNU:>ubU< y}bBY-2Zbsw9^{k[J 5e?K@dW UZ_7#ډ[[s~ō^=Bn0b >Ȓ9sz\)/r@łĂ@Eeg($NeomŒ[xP=%F_#% S c\H,ohtw sce?aYs񃇨(%ts:e=E%vĢY%Z[(n "x;Z,LU6Ua!ZAr16?BĬz>YFBlzӓ⯇Oryn_nʖUW"O̾EG0ZH,N*r(Zb45 {p 2+!0^5XE,VBu]-]W{}蠷Ibl[?>;Ǣr%7)d_,1^bJ,O,H, ;&U}-:Xl9+C?~X̆ZL(Oq٫jun olj   /#}FEΊ̡XiŢ{^ ݋qvYc7֣ec?& ! 1r۫zpbkMX۞WXb%ۅvT&IZŴ(qņ!fZUprjoX< XL~x5ōd!dR,m3^q?7XH$" 3BLsеZOWݻBu[jbdtJ.5XЙ0 K(B-,T,H,rgm WXV/$ꭴb~9ӖU _ܩL EelJ,ԘN1o-XHXXbQXL,kU ESZtPKfO,}YJ&%k! l}tPU !ݰǷbNSŢk^(p 5őX28]ؿX xbQrE`㭺Dtn^E{ qynImHV+Xo旵'.ky^S(7CMĥ,xwG]bşs 5Rt k};QT2)*hIXH؟S aba/m88M,F7bd^jb?u +XȃM:ĢF43)&AU TPUBbS̋$X~0n'⬬.Vwfl:ȤXEKb?@ZbWm1ʟOKy+kUGoV@/& Y%zf,Pkxjw3+9}nAÖ81ku+XZu/k>(,KSuն4!qs7ES(j b$,Μ $P,Ģ"Xܾ37^p^i2{QM.Xt?U/WbH~&T?U?=]w"SJk:,?&|_BX,"ϥ{;4oo^bQS/mE)dY,:◘$#@,H![e/뷴WxC svSqi{xG3צXt$š>,7K,pJ,r-"d1z[ y&S{|Pb5x;B,Z,@.|t 3bczbWm}[ 9WۿD>y۹ XR{ZĢ H/^baE\b7%GP[(n 4b!ۧۚXy wn@6M,A,Ap[(n 4bX0XxmH,Ubq6:䵇XD,PLbqKEPX,eK,M-jEbF,Bc,r(~[m X1zbXS,F' ɹpEW IDATBknc,"`GS,~q" n bh ?B3*R-vA^[(H#NS cX8̉b5ͭB,BE>bt͟X3h!K,.D6L,N,DSk ŭP~bn)Pbq( m-XȂ[ Xx%sPǣYgE,,bdY B5m͆X(0XN,AA'H,RSbhE^`@,&sEȂ[ XMbXbq0b5z9!oA@*hk XD4Vm ΂XbolD[ Ģ5l\xp_W,%m" n bݎi XˬX|3!/Q[(n b.إ)9< eR5R9w{PfOwMQdK Asg\gd0s?vWGPۯ#0ȝ~Nx߽ӯ7g񧛛󋋋I]=-X8UX4j!/Xő,Y,b1ۙW|j1+YV$0 n }>E+ZPZqhE#Wl_ϴb2Wb+nBɊśWt]XB˒څEP Y܊Bg-Ybt2(,ೡV\ ؏qWlB劅nb>+sKdKi} U,[;YBEE* xPאҭB6pmX##bqسb1.q"/:,KED7*ݢ-tj!""B: ,6kE %^B97:%gd.YbDeDSHoLfaB epᵹ 1T[abI+D\!*ŅXY ,+bnH,jb῅ "hKrjfz*,DϢ -rjgBGݢpoJYEV5ݼ2x'n UE )fpVbJP^dѕYjq}.C_*ʴBU~qWbLB9G,K(wlVv+\5XX(Y"=-Jd!-qbo\<,"ž+X\b=6,fm_bbQ >B)x" ӲhEZ6B$|. ٯ( 2 M`R\cK+cjFGe!# UdnhE[:OZE +iJb8bQۄnK,ּKPx [f&دj oNZH+ T[',6'+E Uy U^X[XDpĢ-k,BYP*@=6̧*X9bkEyBEz K(+PB,zF- u.jg!CԴpy~:8E#&|BXhXXpĢsY۹=iDBg*hS {$pO(H?:a WEaaZ,Cŋ)▅okE)ela'WV)TqW$ #/L`a8koB},4Z[. XP褢,R\!B ,&s yu%nL,.[(YWYi(YN@2Ȅ#J)SqE+ \4,R`QP#)"# YiԳċ.^D( c`A|48b!؎y,XE+v5x>%ԨĢ[x$kY|MoN&B9#,'2߭Rȴ"_ w=}?/+.T>e!gݖ,Bd2gC ѴE0ꖁhD͢+l^Q+XlknBS,:#"5"nE, \(L+r\B,fV okb bѱ OY8kY5 CcZrb!4Wz؃RyEXy+#PKZ}{-,- o,̢ͅ"j(<*໗TJ 'sPry Y^XtB=׷gfP~͢,ڢhZȁ([]J{<0' %]&2P q+G6%kXtEe-CE,qZZq֭~'LU"sP_! bG"F,F)PvqVD_RdbBgi*CТH-`(‹91P~tVB*HsP)p F9o͚P -T-|fi*-:pCXe(W Y`0e6 sYUX\"-8g,f( [y QZ! yܯ>5 +E0F߲xMꚅ|JEjrE-Y-4VeYTcEB+u]Q7oXE0f۹hG k[8tY-}T_+\\xT{`Q?G rCy-t]<"E.DdD'E⬤Bnױ"v+Kj*mŘɢ; ^8]q) =Zբ-ʶ84nʄtL"UE9 jASPꂅ~uVXti_MaYE0Zբ mQ09&R®vW]Q,[~a1[eoaqE<\tu,3Ih T"5EZ+\aރjaq}h9 %YHE1ZBų.t0Sre SGuh+P-O.eb,i⢅Z䅅/tcX"#lM+z[+^H{=U>,n = Oe(4gQE]]|:B[1/ 3V|}} za'V L,TYB<u- o8aq2oE8f_ j b0sE^!W_܎me'١rJ_\-ld23ڣ. ,*,Z~EOn",~= %^2 hQ+t]|\2=*Xa׊kWʽ"U957,V zY1e֔E/Z;}\")0rax<+a_A{ۢ+ޚxCOC"?Տ++Ng`UnLHSE1V#P)+v9r`nXUfPZSQOra jk5~8 qz"_p>a~[\. 3Z]Q ^V| |UT'm P]! sqۼonOqe¢r}{dYD,׸΋/pa"2akul:,bAE+vň۫Ea4Tb/¬fÅ<wNo0ʊMa 1W+9IܰX/,C+ 0yB+Y.;žEM[V+ -7,nqa1,>{ivV 3[Ӆs>j"0pSY V\omжW4hXP暅,e-jafpW `AaH=a VȹȊto-/X؃PwJ^< > U^Ej-r`(35QxZX|Qa Y:+1nsjaeaZ`bZ!TkrXDkղPZB EdTJXI-X!bojW/X4sX&a(YgghѥkKs CePK%*(Ze+3~OB-_ɛVypbE1^TZXG,T!NJ"+\1CW4ŊaQLOCMYM y"j5.HX`1(RR"m T+*?hfᕅ-P&-l!cmNYBdEq JC]qK ^YB.b .DLq("m^VBwŻ+.no",/C+ Y4E-D`8b$(0CZo-}SV ծӘPw zYPh!Ӣh nWƌ4ߢnJBD ԸkEtJ\e10Zia›.8%2_'𪢖tsq{A": 5,BE2y gD9TU"+tEps{Y{QY׶$wmUdE4W]W`M1:,ZBmaZDmb?[|Q0Ҿ*¬(I,ˢ6ZiOD].(拶%XA}RȦDE4VԳ›+nâeIeQ"-pѷE=9C`oZڢT"/l`T*9*Ve*LV+Gń-Pma"ׅ 2Z'>'헩jՍ YY!@Wl6,Ń- 7-0qB~NȢHM" 7+dW< 0T\hQj .T_1|܏QbE"+jsE/X?,&ECZHq!BEM?˦BWpV xBRma"E ~e@TaKI7 YTcV <dXL9 RQZE\2/h `רb[}TBVEswūzYG 7-ʶqa",fQOU~~ˊ+ÓECYEj .ʼ2i-$h}U4fESWL9uǰh( s{0-t[ظu!BE29HMBWpV׶7xbTY-гi .t_DAs`zĄ))lU͊s}bګaYM [u+}OweSQa 7+⦮xְh*1iᴅ"/*1ᳲV_oêcbaThі-d\pc&)RThʊx[a0i‰ U6/j1}{͑ 0ZX[;F]sؕZ6EW*+ƺr?Xb,ZiQgbjh)3fVׅżEEbY뼨seXMQ*Y1+kE?EA[<Ų.$¢X4WTUQdsUZbh$eZ?"ϊ]ڰ*)9.u)Ų)"z_i˺( Lp].U_Y+ί£E5-XECDR˦;+wa1vؖq[ȋVb 60q^FwqUʊebYqZmŪ.8 4`gHAj8*ªHb+.7XEոPyT,9+FbǽⴰuhE_ZmћLg0+O2IDATa15sZ$m"/8$4`H$ALET$UgmS"kE\̋fblM` 쏼)"gE+,ʲE˸XEL,(M*ZY芳bf*jQK-y!4FHԒ<+j׊x<.{b불㢻.y/2DŲ*Y1+ӢA:.Hy%EXWMAY EQ]CtprnWřCuE]cg:tY7 ;,*NȊûa#-HBD(¦ȪY!,@X*-Ҹ"ˣ fgm&Cc{T\<+BX-ҸHQL 80#Z=QIΨAU /mJ\T?2٘ aBX ,nh/ΞOUaqB]b,2&p#q_a!,@Xܬ,⤺5`Vܺ+b/tV;Da!,@X9/E<\an[ԏFX ,@X a!,o ZCGP a!,BX/BX a!,BX xU5@E @X a!,a!,@X BCaa@X , a@X ,  a@X ,@X , axG\ZG{IENDB`mkdocs-material-9.6.4/docs/assets/screenshots/search-share.png000066400000000000000000004206571475306445600245070ustar00rootroot00000000000000PNG  IHDR XlXPLTEGpLGGG333uuu&Sppptttooo%Qiiisss!!!nnnlllmmm&Rfff%PrrrqqqaaaRkkkkZZZhhh^^^%RdddTTT]]]WWW@@@FFFCCCMMMcccPPPeee##$JJJ{{{xxxZ^k#N333<==HHH999000RRR28[HNe"IKKKѬ*++_am((( (U%-W---+3XvvvDDDNSe?R555D&&&CIb777WZj>C`6<\9?^RWh`x9$oorFKNXRUde]a? IDATx]rQ.n ̇~ %S!0[:dEk=)>Wlٳlg a!,a!,@X Ҫx i a!,BX ,@X a!,BX ,Ą1"CX , a!,bhS}-6@X aBX ,@BX ,aqڨPPѳbOl],BX aXHS;OW a!,+ 1 k5 a!,BX ,ŸU1(tk*!}BX8AUT&;7sjTSh agEMS GGJM_ a!,O7,gEiS ub7SZL]̊Q1&(}QKL ab[P>K /baBXq *EE! x*qRXu1( IXSF.2m1dlܰHwEnV1RU~0sEzl1baq\VB<qi86+,(?`NHHɺ"UG5mtHI\b̲X"~ *I`rh" QKYTvE"%A1)x Ꝥ4RuQh8,FˊHUě.'|hJ2yX[,5-HV"Ӈ7}h$"Ѵ+E+]Q3$ٴ,6˛W,2m1,^-of1ʼ"]ň'՛84uP[2h^1(+UL }r$8&-ZYeYlQvޔ@\h+,R]WTVE((T_TEnhQQU5ń)`&̌X]$ڢ(-qjgE*MhGujhZXރWt_$.X:#VEa+rYяDRڎD^4-F+*"M1MH\zӄF.s´Xb~EqWfE<*I!h7Fy`ZTEaQ튢DE:(F8oXI:#Rݶ(Iߣi1, Ȋ~UDB$jD"5iQQ3ŠXWނ eEgVodO?+E7.܇,N]Z+"87E&&sjp_t"8EghQh1gYqE4+(jpEʋ`\(Z滢0+QL#57veeiQRˢHvtWW "E -be,c,]Ɋ8U"3Byщ^[ŤmQ>v2+QE)BA1n=E`p[E`ϢV+ۿs4h7,]W:*˗ۛ"UP-ŀ+|@?CqʢvEr_\Ŝa`Q7,N;y^V}_epNf' u9,^C/Wذb`d3b@W<+݄b?~0qhqDYE8w6yMY Y,,j"r ϓo (=Oub(슃qv+,&,"Y'_-XtA[aa ,~+)ӿsv/XvreQk =NX@MXvPC,Z dWW+v G]|/qϢnb(U]!,&,nHỲ7BAu"5x^TEw`[܎uq^qqh@ˋǙ6_ U[' E+fť<ZDˢtb^:+8P(e u(^늃o]!,&,~ w,, "B_P1*?h+,rۑr4U,'aM]?*y{xO?ϲ5wnf Ăxw>TsЬ?S5EŰ~ ߮HLJ=y9h8,ś̢,&ͦ',"Tz^+Raʟ,Jf{^$~&o3AYTE~`]ǡO?-ΗŀPsŋY(,~tE<,)p?x,~X,^ Ү؛W\__>|Tsдw_bofQ_5[gnz8 C&& bF@8쐃ўV~s/Ț@BoHm$[zԸSv5Ȉ]SOpâpA–1,_h)ւxPo9,Ѽbk;էi?r-yf17,PsiX+,aVobKݳHbN: 59a2Ⱥ+aqO~>9XfTn#EUփPyEm0S+ ifQrYOBXLB]ћWlo@, e! UY9,22+_ Q(@{Y(jaQq`_mwâa MX4H"hq epvDa! -E47yc5w󑅼^ ,Ұ׷ aY0,V,twB͋ , RX# ۖY!,JַGbWܳZ߰Ht`AXU"YԳEł,=,| ]†E+VܭtBܲ0ea~ϰr> % , KiX# ׳PSefq`AX,#PdI(2,T>),l'~ ,X,g#fd!>esYmBxB8^a`YݽPYE<,'f0e!8k; 8",lwB/ a@Y¢ddaja1kxw[w'Ԝ"W;+BZ r\N#9ݽPgb-mX+\A@a!,mSװ0*n$' o 6"S[8+ t\P~>H޲ַ,%q} $,Zv-lX+U xd[ַmBK5y}{vV}(¸X3!-( `?ٲx,,Bi/,tXnkNB%eX),t] !?uBX[ڧ, gǷ,| i%,ȗ͊avE: ,ZW} *`q+e¢0P"p>Lxsx!"X򭁠 ۣ#Y=H,׷ųP ,ԃY(y3 ZeEaAX 8_`m*,[2.YkˊŢtJ~Ă@P]n_MY GSYE% |"O~u{`@ aW? x@(a_߮ȓ,&;,xX+#@@an-,كo?,,Eaa\W,4wBnw@H]AX‚ tbt/TK>ExI(aB|buuo # assJE/,v/YXv_$,JX nX {/Yoo?B^.>-j?"ЦE4@\(giqTZh,%(,\SF(:Ym6mUL=,~ɪe)aS ̓  #KzO$enXnHDXXXKeš5k]^˩b$H!|0 <;7x,}zIW9x CNB™hk"CZ,ƻms\F6;N:@ݜ7O]\y!9o.OĭlT9b {Ԃ(7ny; u ž 3䆞YZZ %`tXxuűCpXga/wei]»99 v[Эv쓈 >{C_ֿfH [}Ųd1)XDJ`'aqWZfEoԻ*V)xVVzNIoC7kRy1ʼnE,ϛP`-;ͲmT,.~z`F0TMP,K#Űg_a ZǞKIˆn)l<`OR|qcPSſY;6;a$v!դHԑq=ۋQkr]DZP,|ŷIbQɱW8r$QԫXMꯎ% %3,]X+yr,E}hb}B&o?Vţf;,8{s`Umj[E>уE_0+&R,r}p0i`QAX]Rx!OpF ,:Y֬eԫaE): bWL MY"' q>3˭Rw;WW H^R'X`,fRN:*1RE#l8oRt)1(eJBC+J"+#pt IDAT;`1,b%Ye>. ]o6ElbJ` t; ; v?p8zT'?7fYvLU1F BۿB‡G# Xp A" :Y+c  zBa3]R8(P,Y J@,X7hv!EXdtF3ɵ7%/8uo-3 K]fb XG{PU,RiC!]D7DHO!cM0 W\B7AB|DR<|:XȦ `Ptk Dxqc*IJ`qV|#PX|+gYvDvy.@l@,4vf$K)s㈗~,啼Ce*XӯXHjv)JhG+~Әt=L1`uYJ("6h{.7tr#zEOY4xEX"!\1bA@ dHT5aq?s!9!eݲlJk*E@@L6mmu.TV# +2)XzbQ ,YvL#oQb(WL,i~'gmtقZ"B숱 \,f-yGZ,f j+w3‘ŵB0cMn?W\ _ =̠,aS*Snʾў fِ`1\xRכ. C ,&x`zQǏ}-Xv0&WLX`#g>OvFqCikEXQUhXxJ`e3h"Pc6.չ\>Iކiu0lrMy=_W{n ߼tW_/.;f_}n1kN\ Jg2 jb*}K}%﷉#jV*/wEV# EPMuS =AKH C$\R T(, 7?wgwgŻ3;WFUU-xLBK$+O0c5`ͧY*M~Dcfd;X∥_i^BB^xI̺]GX؜}p ];-Jt5_֋(V_Lbc@=Q\!T7}! ,25Z)%,tǕ`hh,4a3>`f|J7SdʢžߩՃE \ X8޻56 I+iXXjofI e}{, ,b/,&XXjZ,XﯛjvX.;f1`?B7-i8Yc,-EI(\d_lJ#7KE|Z'̜{5TuKܭE0Dz;b~`ujX4~??MY 3O&NS?^=.|=ha5y3iV/ .޾׳;+PdA[v3;pr BDedBh൷?i}w X|7XH2<)e0N̵̓ F,И^ @pU5|OHW5Be\ ,46tʚ0C+|`f/ U>1,8 'qõe-#tþ@&cqb3)@WocH=%]9qOMDoD0B1X<~2<-rE`Q ۽,$,+i~Y! k( Bs&W+X4TQJXHBYPF}< X8B ,8CbQ1,SݮNޮIW v^Uv .+XpdS $h6v-EfU)"=Va" cFnq~X:W=g}B9JttVv ,.mJUH uV"YX^!Ň ,>rŧ.`aM uO 3T0 -B8`ED܈` P$8aCtxE`y1fMIlzT l?h,BqZKjj(tu}kaWFtp>@e;XEh*V C>u鉣afimz!Jt"1F\&"ب+PnY,i`,>`,%3T0 3ZʹO(IH`0+=! ,\V/ok-7+ \dSjƅD4/,]߉_~MPhiꋦ ~R* `ilȋ{϶ːR`DI'HK)+ec,: ,l-2+ ,PX,0T3y[s\ԓYS$ovkB,,+U**"tuJE k|6},^nmG49Rح.4,B> [[ AzE0X)Ps1W@#h6|qE%mH>8 =FoWgf]VYz G!= 6BXe,9rTE3g,$ljy'qEU\GOT47Ț JBa%Y/MBd#(9\5W =n/&Z<U` ]]7ׯ;09a_$ViY<$9,;ԜX\0`_1V *sT`DIHnZr %EP`a! vMxIzsKKAc#C0B~MJ:X=]B'8X8 oSfPAY,P+;?~iyi{f֍Xbcd,&]ݵvXHW`fa=ǔx94na8-+W  6'#ԓ-K75&zLC\j-!D $_8ɑ#6%zmIӴJ,:A^RL IgvOrqB6̷ӛKy^~χ+DA>bؔܖ+}KLqjŕktMC%[/ȉDMhL,THg"IB5~zWFQ/f.& ,oFbʽ3yZVވTlw^"Qf[ kdb!ng6Y:0PB,"w3rIa,{bV:.tlnjT(|*YLz kֽלrE;beD,,k8*OtdU\}/ U행Emx_%)| }ow>vw8_ %~ ,ݻx?/u|Y%w_Ym"?+ə|%cUlA=s;61w]"/6u͢9P̂=^n[YIR\lXj]HL ,* G\>XVϡJ, ˷=S,-Lb b/ UXdZosxaB&zQcE~2 ٔ)re,7'3X>E$딊E'gĂ!b ӎznX)b.wcs2yU=)߲q{vk珥e/g"8Gq_.Ǧ(b1Ʌ՗[oԟ.|Ҵ"ۆG_*F1*tfceɰLB9bBodqմŮBf5&^ĢP-&Cy4p6Pɸ>{d}.#נªp=[&U@ zKx1{Hn?K휀-wY{ 3IKlv+55,^] Y_" 4ܶ .29(f!+AĜE*_rÓ!tlc$obXý+"8%#-+*bL $%jq\ z[ E {yw`eECWnMnü"3Ht R8@,Tk!}3|}e'X/\K 8ò4$Hb0H̢P,^lX}$XE hX$7Fd%Y &j.~&jјXf1+=ʛEɹDX}T)Ym{ޒ=Ҵ;Tl9Sʷ`K"j9MȈrm'c H, mXX ĂXX cZd1b^,  *V@,9HB @b1Jb\XM,H`W4NO"-'b͉,w"(I,&Ă7*ݬ(H,X "t 'aŤ Xs@,XqJm4'3, @b@ŌbMEz^H,X.X։  hXDboXPW+fW̟88Zd+yiӳ0 r^W[ok],^#bRbO.m, b1;Ϟ(V Y"_'TX֋hd!ʼnE+bz:5D,Nfg  X̧^H,X>Nb xzb! n H,XΦ5l pw,z,fq!$o^H/"]DlE4`b)␬1|T2Þ.GfhsΩȊr^ IDATk63;^fXw|lZvK,0 XP,"PbaBrJPO=fwP,( ºvBPW -IeB"bbxE0J}5Z .\pye 3J(F,>EX,(b;tۈo^D&»)ۻrDXؙPYMf*v@,bAW,,b-Ģl9\(XP,,a-bA b4"ނqK"łbnkPb\t x17bB5˷w  @ ]ĢY&Yłb}hx59`.P,VX|XjPebf&sv Xb-F,(Zb XX4=GLbbAU&b&Y @XDX8("]z( h@4bX b  2b~@.bqkb @Ģ|sX[0/ g XP,'M}bqb @+V5/:}b@XD,v*l̿р^$tkzLhHXu|7łb;7z_5d:y}ZJр~^,JF,o(bXłbQ(wȜ "3[g~J1N,uW ( (+"L,}_^>{L,gH\WŽ' ( x_pGL,2x'ųA,MXłbӋŷ%(fb?~s:#]bj嬡dw_x]SK?piz ~i^տxëȆuoX]'lP, XP,(e 5#/<:xQ/ÐBwSo@Or;9+G}s(G_ +r|fA|fnx2}H^=ؾ}n]d?WǐB}G:GZSƒǶEI.a~}g@@,bAXV,NmhN,DF'guMGt24J;d]b? {6u5 ^mĢ%be5<8懒hGzՂXqq1TgXqo6(:Yb2 #>h,ᛅQ9wH!+LX[3b+$LJ\l[3!ț6[s?d:VV_,Pi!? bMm1+pBbQ3uI`?PH.G5J݈==@,.%]v JŢX  ,l0"bAU?E,}E&˝bߐX$O2 ʈEv'س%SGڜ}SĢ!7+H0XbXłb](7Z,$$5~D,7nX,u EXd5 >PoklZĢ'qקX]rVU ŢI Ţ5]0XԥfMZ SX 5Ffg!+ʦ޺+ VX̦Bm!@XDR,ʎ.x_,;~ܨZcᯙOƢT$CbsM$?3\sI|N/.bbQ};?,Na`6=x/Htm}xQ,~z(cx<}*BiE Jbo;ْ(~Ur#S\)u>@6'ͽ %7|\A'F,2bu)&ddZ"}'sx@,ĵ*HcKKM]gCbXłbXrp]9HH?X\!;]0ROIq-J)a\ %$wkX8zZ\Jv:ZeCvYnPPdCbUOr)BQ EM.+Xb XP,VX,sL+;"_WܻjcD+05u*qIU'b/K"t#<i-rX9p>*YAwb9Wq%gh0 ?OҪW곫kR 850 [09Xݛ_~g!cX\ʯݛ7o~6B5XS>5ﵖr\X`Ck\X`,>k'ΕWYNJgs?oW m1_0\3}%rƂ X`,n\t)+ +[ḐUf쳋GSo`Q܉^Xh#K%'ocAVΏj2O?ẻrRIyv9+]?C‰傅oK%[c X\+Xe>+Xb+qxb>sȿ_{c`Gc6   -D>,ǃř5V E/ X`,`F:[&ҺQufŌRrЯlU76v[?j֫* [^7Fd3閵֦ŽsrjʼnhxgMgL.+s6n#w;{nFv;z3y[wNq Ƃ` b,BC1TH/8cNǂz6cm9wND?F,SPPyzdU!f. ǂ/v*yΫz|Yu~hjE6rSc[O&D2?XV>Yŀ=X!N:n,8`YcAW(X`,ScL1e_}i[(;j7uƢ/;Xxi}xA ؊ǺÜi,ˍK j,c X /sj,fPvQ5Wuv=,VdU+0or>FE=Ƃ7lƂ`1Tu]Q'`QԙO_m7E騱؛p[3j,F )OMF``X`,>[ZW5q`Qw D7>u"pKr:exh݅qo(XCmٛ^Vƥ11d Ef;Џ]xc{!O92tƂ`1 FJƥhG.|zQ+ >b=p^jpEt-s^)BR[+Stgb4xz_9y:TFMP>_0h6}R[Ÿ@'o;ٶ3 j,7 X`,`35MQ3{ٸd 7CtyZD!]tM&Ӄ`,e,  b,VƆ~1+UƵwfCEw: {p$X ul;Xݖq)6Y;Q۟^lVWy Qۮ2?۫C¹zs婱0 x&:k?2W{ӳZGO1\ދLveԸY^N̦ǂ/ [c~tbsܔwOٝy H,XTS 4X`(@bH,JY X oN,2=/eOGVדp X % 3Ō %#j_ǔkB,28+2F{@,@k $bєX4vfh")DmqTc΢Q#>cCs4^Y<(ӊNlH6 )DX++?)K-z=̨mO9gR\ ["yy¹#_8b% 7U,@, $@,M,Vee& +绦sq `d3O4 EN.=cN}zbAhs+wo"9^XŠ>=OY!LU*`n DǼ!1Ydx)D/!DݞVjl` +У$H,hE'>V.ދ \&XаgI[1PQ#bJ$ˢUcŲ+j[ 'lc?¥RJדahƵ'x׌9dAoʋtÐEIO3Ǡ/$H,hEдu[?HᇿNGGr*D4b1! }G7;’+KΓXlȟ,,6z\BxD3"4tm){NZE.\ʣ/$H,hMhU{B82mA` Zv\1{/'Ɣ[;4kzzXxZLT Jb͈5 C?+hZA, ]+YYH,XТb񖗼X\jU-'bJń9|Xhc.3:Nb1dҜ˚{GXUI(njl2~%H,kZ:MC,X*@v=xF召k7RqUH,XКb<Ԫh6Y^Vh#D;f I&8,X,,zWz?Y> @XbO3,^Ks??t`Xd?e񛿏ބ%,a \RX_ޛQY?}_^Ϯna \BX:/_/~g޼}kXó֮ta <ͰXî ,ba/>,eZ+jzf  @XbO3,PP,˛_Ysa <Ѱ膫~/ҵ}MWM?ã:}Ӻ|! amu(mâfzzu}Y]V >|*Z?vF^ ,ba  Ac"telm ១E eq:âM'9V)aө"ߛbX /܎?n XX,22h)2,w3?H/cX,~5?'tF#6XXnRXÇqXM~ga1~e؝ @Xb~~-e~bS~0n UKC J?q,AtE UWջ 8ESXyX4}?Zm-|d ,ba'UzS6\/qhMv됅eU>S!jj!~$jXX,\X, okJ+ `XEuy1Eu>?כn@庼O9\{N_,y:kq XX,f\M{".a \zX\_6 ,baa(E ,baaдvp`X,, ,ZT @XbQe!*a  a  a  X,, a ,baa ,baa ,baaa!,X,, ,X,, ,X,, ,`X , , ~baؾ;46LЀ^st^(-VlH0zQ/}sbMKw,<mvf}ᦿ*^io A "S|t &X:%:b5ݽpFE{&͌f;pf&vv}6=5z,cQcV;k"9ZxVPd*^( `QYX0/ |W,7<[E~?.:{xM5Wbo{_"8&:G3G4@Eigvm|Ï4!N/Fz,V 12!ZY,X~h`Q3a =Nŷ(rc)=%ߕ?~p²`a "Nܩ- ^ fNuK7E7i+cj5A[ZӡMϒb=X,LF)TNX-klu>~ם.,3PBa )2`a0%w1K6M,>,r`K6X,Z_o _䁅,C6DgXl܇/:d;hf y%/4/9_cjU0 *oB`0 r,X4}C*E]wBh*VԮ΂w&" +li n yE.lm2NX$]w;"#924SD TtXq\w,Y/^\z`qBȶ ?ٶ*sTQUJ[mm'rijvX.n %S}OMQU)|g'*X7Jl/2?&q2g9x~Z˝?>!VYSUz9u8kUTSYJYN2u%j NgQ#Uu65pﶋ Nt9ʝ#gs0m\9MߝƓCUudd-6;=T#a.mn˚,a9|2-.O Kp_M?.馟l_/4G ,~|yMF)B3./!OK/_5$hʏ?"7{͙+Kips,Y)y+y+ -қxg番N]&Sm^ U7ZyCq;L-z`5)sdVebv&=)y,<|5 e_6~bݵxS>X{e3049\ :g\ 8asXK3XǢm4&-b,.]ܗN'mhA_>M]n rƧGYi!2-,B)HY_k^-z=G qIv2Ʋ܀,Ӝe}7ږld4eu6DzϚ?*In;xe_2LvٶE`pEВ<CZ&i1'hgkfjחgZ#[gF8GzmVnznt]]w.6H-@"6"鉂T R&_Y)fޛgx~h=?ό 4b,8 ղ=La$ }8O]:h(:/ˤA]?U?#XS`q9Oo8}W}ں.u݄'R>Oqվ|Ǖ11*ݖ; ,IMAZf{,@I6M E: 6~\FQ3/q+X\.J zDh+Ekw 1 YPIN9PlO`A^Y/᧙`e_^'J~'z|wx,J _fЧHX|2QߏUDcqKK껳^FygrPQ`u s,uxS`H ["ZS7)`Kka{ \:bLYM'I] QZQ#ڂKW4,Zݥbp)E,S`遅Ԉn!/D7lX3mJWfZ&"fA֢"AOESmpbo' :o3Ka)>g cX$ E9yr7ӉB:G} ﱨcYNSZ m Iz;n{X(UyU2y"zNp0MVQvJ`| bg ϩb |Coš:yWkߖfAq^Ͱyᡰu)cy,VtQBRr<*1tX`vi%TBHmAiK\X|Ji-O jjBfdMb@6'"W%I+ QO8%*`اfq=0@=ī1!e=c IDAT zU[Z,GR;Lt#d5Mr,ׇ͚+@xQ1y9^c r:H>1=$8?;Ch\u5ɳB R3YB0 jK XR@f,*jCٌ`rPz-0w^f'}H!-ƚ W6]b=D%XD,rO w&M˟4HKv̌ #ynR:8*uXl'N +ghO Z 8[U׹+vwRˆ۠)e҃˾eCt538?'BiRvۜ `O N.$,k3\i ك<hB.sι|(XȷOVL7a`QGv Ŷ,cy," >^e2,reL0qK(noyb#aJ߻e6\Tj XLtTטm-}\eɂ=V?x恅mרu6N`A{G^ҢC+NRՕ6/@k}pވрkH5:n,XhSBn28W=2BB{kXM ڣ;t&{JFU.|.2©&Bľ.Ɋ`YMw Ŷ,cy,"]J%9M',zғMrVQbS3 (6nN6E.C6@,:`Ae#&QւTV ,CETw`HЮb@g<Xʾ-Ꮵrys XrN!Ă!X~vfދَ3s,x47vX`fԩƊW&AˎZ"]dnclpyx,Ff"N?8dZ_ KBX4OFXbaZW5nT*Qv _[S$;p_bQ 'Q$f  c&K7,h`"b].5WŗmU KXG f=l(y[_-2b-\)#jUkWbDeRsۢFG X'#HrbBz_N`a3 ښպ>\04Y,v(jz5ڌ+렋Ň#\,*]9= C,庱|bai!>?X%oY{2fۇ}b=x1اҰZ'iKxj&شy d,S~jVmߝKlSOLf8 ~edP jU{ѫڔsYLm+3;ü"6y]ٿM_*YŪ|_%~K+UY5Q7X cĉU\KV6TaKK|v z"|CB/26zb}jmfwǕ䮱$hMf8v9_mɇGmcacMSpMɟC!z2X/z4svBRbˍb$M+1;Y osh7xo"0{xbn|qeRΧc&'r3<9?xtYO V 7МjI?Pt|UAc}|8 d,X1kn.)6쮗XX>Ń ohX2@,>!@, l.WK d,X2X d,b @@,@ Xd,bb2X  c X2@,bX cd, @,@ &V,f[?bLlۿԝ\o޵ksџjЭ3mܠ/Q,=5qѵb{(7l  d, roNXQ>U2X\+7_~b " o-#yQ7ifɍ;X l +${xĢ@ۉ/]"lgP~F>P[|d,T/xl bX܅XP֗  @,&G,vܦY,?{FXVEl)4m@$ K!!TDj@*AʳHT>gfy@WU9|iF(Fc{,ix}n$g}t'? Ѵ@i?#6+ULۙbt|m)@ӫ@fFՆ%+c@!Z i#Z!@?ZoG]CGڐdۄAzFT[4֊خ Y-h>iX9M˒9MajT2[py#M vvJ3% =bX4s Pegΐ. 9Z*zPfVɗ܈mƄA,RQ-ՍLeh#'|ȉE!_l]Y8MÌ1xkKFj#S]MNak0ϧ{{GfG{G{G s$',gqfXZV:%Cy2UX8gA7&wD,\kO3Y(? cqp9 ïtWXHĂ6k!Tח U<$L킈E^% h^{:/%ǿunj,2PR&P=+VR鞹>$+ 6aNhL%D ]*l_Yv5b8\%D6]Mo! "d:uI'z+ ,T, hz4B]"Un`SMlY6WTGs(`3+qO9ET݄ЃBջعB0R G&t4X Q6!#f:֖s(Zi_o{}G)2 B);$pNP2ƻlw*_@ LTĢ-zݱqIzlXV+E$"Drj$1HCDu:i8u6'fpF,LӒFju:sEl:! E_;!P]P=T#..Sni'Eb!gHreۆn <efZ*Jt<(DTj?8&X0yUuw*h/3A,@d",dp\;^-){=Z`L?0K".I*Kz>N/XH+k'APM= }i>NkAFObqV{,|ﱀp.X3J('/^N'׍hOd\6 ,{rS%,hF3\~z(C0߱%aw==8X$9 SX@@0q4C .Ŝw,P&!;bcq=`pBȒ@"Ůz mNN=Z5<9E`'R~Hv9qJJlc$ӣ/C`[̣a_ó >8:[#rUJ^?O^ShAsE@#O{EhgX~D m o"1oXfяJj\A 2 R&j'/(hP`ǽhM%t kPTy+<39 ŤGuփhhCܦAe"cxN0KQ8z ֗04PsBO/pA`K ?!hV JgCNX4mc[ 5eOmb EXO>3Oύzt>?|ǶX~`ag_}pLgNS,~gώbX,I#Q5OA 94"Cg,+}> I*wY.΍+{5=MT0}p8q޲BG+,n 9ͫk"5v+pNSհt/XB" ) 5g* X`xq52BV>چN`GŃxEIu 71P/[0XdQP:H.w=g? ٦qg'R;=}ЇUEUn,V15W{ XK]bfQL=5m`!,m8  X2[ Ѕ͠Ƽ`!y Vr`nHjX 8Xk4wt|"fKKi,X\cgPЕ>,2<=;3<5I"X$ jYn6L1# od|d1`9r"#kX+1 IDATIq R2=斔̾\c!0ؓ6wXO*g|4 5D54q)pNS"Wኄa'U] ],*y;/6FEF`E"%{1`?Ý׾ZK`ulՇ&vw#`G*BmyXEE,vEjU X#^O*.`A|B+xf?4*v X2ם¡A*/4w ,'`4 V,DKϨ61g,Lqz:VAc6\~`K~L8%1&)X$b, +{a6ůK5z ,w  rsEOzia{md䓟 ~ӧkzo ޾'ؙ"?KtX臦ڂrU%0Q(+\F`A(JϚ;q`U=xAX#+%詣!v *|8=.Խ}X%XXX/({,2/=fr*:FvX:s\t ,A)Gb?XY,0B(y EJx| H2jx&ы83ԛMDWeBz*(qmb`,%8, g:Xo, .c,N{rbX,~lީ.N5d hw Sh%5Hm*Mh{2;D!XKX|cαX-N9O6F&f ~7],,6q?EY(Mu|Q@=XaECid0XQ\]>0՘&89HfJ騑J u}N{a q`QV` P.`0z0+`;;XCP OFc}-rX’ѱ]~JGПЛV5S8'QYrײM , ],krMcHǃƀō;Rō0]ZoIJ,Jѫbpٶ3Sg!x 8˶Tͽ.MX`.!X342Ʃ,,5lă8˵F*pNS Sl*jJ o#XoD8MIu  ],Ǵqdb/b[XT|:fJv|3X`-G|MbY&K,,(k%{BҲzqN{a9oWU}GX6x\`rCH mC^~EEE1]#: dpgE~eU!cZ,5Op]TX2)W9 +|L`?!IbEm:".w5# s 0RLϝb4\N X$)X$ (]P.E'e{jtP#Rob 8owFDS,ꥣϨXܖOc+< Sԍ,,z]<1c0.sj%*^ qlPb_N*_꺻.*zV "Qw#T#ՋI2o :Q:Qe'mndj4 Ef;+}yAT2"!,@LzW1`ܟTy.c}XqI%i,%Bt*\EY|6¡I'ACm#`An$X#G1>8"Z$|_f_i+JX,p$,d hF̥J.*,i2]Վء\A.6ީ 3 +(xM."h5]{k[|/<;04;ȎX4q=,M,5XDh^π"#U^xRxO]ZCIJ,Lszt 0(|c"+,Nfx -*ǢhM~k)͞.t:fQ XXXjO >D=f09OX,,:~QQ0uTxE8 0 h`aaP/ ((㌬RZH_P\@UmJuxi&1V"Uݍ ɧ )쒳?^";&@}T ȫbű%".;k.nوAVrA~lruU5xג 4-pCvR8ŴE Td) uݭiBQ`MK@*k07?j7ѫސ\;s歝"ʜΜy97sfQ DXx{V} F^Ǜ]t#4‹h3=lR>7~KKIća9АXD~K^g N{UK,U %GU;-wyM9< 6³7޷N=U =JfrcyCDyT³bQJw]S#n]=[Q̋^ȃbi6ݰOrCuN^DT'UqG'>Ob~'|b,nr  )1DZRD:լ'9{L|X3SEUkj/=wa3Uh}:fv_>ӗGounHzŢ_X#$*v9:+W,~t hl-c}Z"%[_`s"D"=B xl`_fPվ%5(T|;cV5^3!DM7D.Y]'zGdD&-h}{yw(yr4Hּ.M>0X%_|:I,}(Ǵ}&J"3 'h{( }jgLzu-c'oKYnΓ e+I`]`k.br,fyxZ޽@tQig#{cbp\bA8;a3N [>G,bE轈XXзR{O,v/|E@+B' "X W,#[ĭxX{s;{$@bAbqtE&e5@P,B@, "cw97s38r  ʖSjl6T -[' u[NCjM5] M  mJ"?[t#[ cOR~,c*ռ۲BId'128YsURz)P#K-NJ:I Q2>T[7tP%Œ{C4aXp8 %/u#1P7N+!6 OhqX НuƋe=~N0=dIs5XXM[C$B:SFbLH0 $Hu &R6HeH,î Xfa[Ȳߦ6_Gm׾{Ώx"g`ՀO Ti"f݉Ïswcb&VVMbv a1ܨ2GP8'izK<.#X XP(!  @`UpVe'P,uʌ;M ni~'ERo󱴎BmP;%40h zJi9ÖJW?7G(*b`J}TI}UN^*OY2| Wތ~xZ F![FptBqv&B@P-ceu`ʊ ^XBzSjͧeҗ143Fc+W]rE6HMD68睈z$Wj'܉J/eO ͱ4z8J͐cAer?PA@@PWKpBIα")`M|݄욀*)Xc%lEeLqL.dX$փEB' ˞ EiuT4`qd?Xh[XPWtɦ`1LXDS$5;XcA|HEa ^P?-EOE`X*$▍`-Xtr'o◮?W`c;(굃2k/ϱȪI`I׎G@y{moa*XT,`ZyKPŦ~[ D6&E2uqsuAK8BrBz\"Hm?r3#&8\F@mU˯iJŮ*ׁhDzJ?@_߳bw8v`q珚ҵK:( `q7":U&8;{ ,б@b{Bo7[ vtLHD ./'%;|;,E v |J&/`X`{߆rs5q+9p \O~<1^L5=u資i2}sT̋9ky٤Y~= B=Ow)na OglXDS,*ֺ`c^,б@b`\/){+Q}tV׍Z5Fx[RJ/z4eA^`J܁އ>5aEW&bGUx궩.myyb,Y4 7Ԡ(H{ӟۧï #H|͟-OrX'|dZx B='蕉* @U:USPEH 7Xꬓ''1Ȭ Hb.*XcŪ*#?X),Z jwXģH6H4Z#qjXXcgvT\Q1۪y,<`L#ź[?wpA>9==Ae {Ӯg+ݵgU7%uP(3 _DR9M 7xmE;CBc BbOUgNZ$mk' W<*{mF4`H,5Ԯ)ZLj :XlTm"wZ9XwwDT\=̌_[=Vk*m|IW '(8bVƛ89rdma5ڞP"X,߱0Ey O+t]܅ 2|#AG.N(ـEjZ +nXj j:X?%J?z`Vfa:懦Nrzo@y"H2C?(&l bn|*i,H,j,]Pp`Ah=]8 B=s@б@ū0{]]u( ;9dRm%H_O9'غ[^M,*McccA݊.D"J?TS+5#x#k' `Bc`FC6 IDAT( #VKǂ,r}ߑXX¨W+`T +bRDǂ|>yұM }e{hky!:VE B@б@ɧM ?z`AJX|p, z(9' WJ$CabƱrBIQݲP(tFP(:X<ɰKP/,tb0u҆  [Tc.ñ9gM. JWb8Ÿ$ 3- B!XPXcBxXzl?~#_ꉗ y2Mrfol^wc!w6/dk# 39%Ƌr` nP^1) &З,"d!^\pe/l1Rd9y;j,ٗʿX   @,I,FK,Bwj}Sݭ!=CupsV^=4u|{B Œ !X(]П&}j]ʧyWݎ~U=ܻ $$X[<"Z坒XIaPM61W^۷7j}7\۱/7ӿ1wĂ |? 9jD;ބwL>:}kUS7cyvɿTkX|*m^v_㛻;T;y=yXb@bAbs%7_+[OGNNٞ:ڿ'ea# >~5r\ g} OnV?\=.7b@bAbs>v'ۚq}byվ<ܸ@,ĂĂ%Ss(Ă bX^? $$X ۜeSGXXXbXῗEk۵ @,Ă@,H,H, Ă@, @, @,    @, H,H, @,H,H, Ă@,H,H,       @,  f ^)M5B?L4B, E6WŚĂfs kX Exb+bQx9,-XTfjMbAb*p|XQW @,~-˔fuĢ2 QZXXFFյB-E^CłE na!W8t3h mBXXF玵p O@,f "XXRF& ˱˖{ϊrfaHyh/#rŢ Ħy9 -*_E/Xce3eH,H,p!TJ!ı#?siCve}sb9?:-,շ`WYjkg)v[׶WXDNtJbZv=h8Ǚ3[ʦmcN~']j)a*U!nOSf~i,^M.L|] bE?ܳ'l Vow* ɕeK[^tm ݘmMOTnW`ObAb8:8-azJ:4;M0Qzw\w 9A?bwWR݂l[ 7#\lY+-:fMw;?UG ՛B$M&fy odG,ʼnź%& Z6˦ZJ:,+,sSA-=}<ȇʷMUWw8Mݶ)&:YOۚ>!j&4VNo  7XmoT.N'zҪoMJ3U.o;FBr}ZZ-h4s,ʅ o:6:FQ:!1.o#;VWbr<\U Z,&L?Z6WmFpJ&7;L9=?=OVVJf+BXyUNX]s Ssp[ZDڛ⬺k,]fS x;**ܰԘQ3gxnba B͡Y!"r!"hj3 LjψupY&o Y*6̩ۙh/NuEVNX4`jϯɪ<5ՕXt-,FU "^eMuVYHX[ # ́*V/cObAbLE5 u3vQ`UeY˿vL,SJEQ9 8qdw=ЋrVXľE؜Qgb9"VxbYW~"e\ץ}QI@PkA1y;5Һ$OXīĿ+UEk+'(ڊʼnq;e{4ĂbaHyÝaՐ>Ģ/jp˖nKėBx>ݾROm$"Li[eQ6ekTXF9^mΆ/rBOE"@]!m"t YXf "Hn&Ho7-J o{X$Κ/!ڧ ;bQL?ibQk@gEt1V_-*oB2Y"bKb&TDZ=ȥE%O==qh+&Kz Yf ObAb(Ԓ _BXv&BYŢ*Bb2lTFb6_N胻`dַ-YeWXEl% u|XĪn0,]=Yx,BH٘Xf0<˂Ăb1XBjXV%7bb;q~R}=C,bߦ,+${oXN KPĖBuuLs@nZbя%L'qC2Y9C !؛n1 bkmi v5aTPۍևH7aVL:ލ%>3 b]o3!9ߜs|bDﲼ,VI#n< $کU0sl>͌a6P,bQX膛"6ƢK,|fٻc,w ;-ej{l6XA"/OC,DShoesIoE n]> o[#yŭ`.tPO1@bQXǁba:9UUTd1g + fZMrG鍨Ū7p1_&#)u']=Y}}I _]Yȝ1E/kL5KnH,XgjjM]U]-X GC,:Jq:7!.舙E)lׁ%It1j IC^sXb Vt4l3洄mbvQdE" IU+1YY4uyO8bؽ7LgnZTX DBeh|-fl| J~7XmROX/rdl/ :1`H՚hTS9% u Q-%&mX9+o0V{ܶ7 X#Ij5}&o ӱIS}MrEib7Xq5%%ٝ}~+=T*kecht6-\V"r>_]ၬV޶Rˆv[r4% @b0!'lW~ޒ-|;6-( VˌңJŚE~bŨ?%q>ETSձzˊR,|FU<ҦHC?˗FXbEceDg ںZMnEĨIќ($uQh7X[YY$[Y]L|':W*-Hi =-s@"~=]tg'dG DOG^]"H -eiaVB )=!W78:zEb=]w'seXxT\IoXS\6+ylmд%Z+ViCẙ&ZK,xk,_ v$Q88|6+-O}TL0kz@]6)bY v@uqss9^< $Lb鞿D&=?yRz2kxwJӳ6M"f"MR?g8MuUf|kNwđ~h&:QG+dfRdS>u33^ $>;R<)ﺕNp pCz} ;_dF }"$H, #&\ܥTM2fdKj623wմzCFMH,X 0f1[hAY鸙=ȵɌryZbbW+;c5sb4ndäJ-l^@y\[,mwhd WFmA $'>afv Bzl[Ӊ>K've]@,bqUlGQ_ $H,Xbc_gb $bqf X žH,XpAR!  @b  ՀY$H,bH,XnŢ  @bE?f1F)Ϟf[9  @bUEfh*4s%[>"ZG D,6ksV 7t X jLЏ/v~{($QbXm{};,~[B nX Uzo ;-K+DsH_^"?/Y 1k5Bc Tȿv?-Ȯ9oY֮xZ֡ck *Ɗ3UޮpTv6T~WbA4kM 26*Nisjm'LyHD "uV)s @,@bk1ٵDذ{k;'~∅M{ݗurk_GQłh7/{\*y7'wƹT?DKAbzE4=$$H,2ڷXp x%&zCt_g^ :CO?т<$Eba&C]U!  )q@  _x'C'DNJ=$-y"m:ntG%o ք;DMNO4 XX\X+}t6Z8ٲ ig#^-F8v^E W,c^y|'ʻc_R!  @b +ö&ѽJ6aQb],zHd !z!? @,@bKUM٣\%j36սгDsAb:soR%SD)aXt& Q"@,~9&;  @bbV[}֧Xs7z2NFfǐM,=#z זH|$;Woy`O0GU◢FH( Œf,Pw/^+@XX?= ?#=g7F}͞BP(f,0cB#8cWS{/9ݛ7%B~o|?$8|ػ{!NWX{'&a( `Ba3(ۂ.{%ޝ,N4RhN^qO`GD͙B`K3!w{砌6`!G^wB~ B@0c ],L 9CYHȯ2<G2PSBz7YJ⽅?z#$ `Ba37Zv}]m;ɥD`Y ORT`!$y#޼`lUpF_]kX08?yv8,>Zbx#$ 5`e-ЧH'<EYtfͭˢ0cqzZn@(X@`q,XCP4,i 19n`xqcS!E^S`x$ 5`[֭w{>%ӃEmƂ|, 3+h`ԁL_ze4ژe^o,*?1h-iKy]TԮP'6T+ U5 )}O8>BP *[7XL 1)q9uYf,0cϯ53tZY@ؗB}`9}|?NӉEnG.E,;9|# 5`QP;H%S&=En0>cmSEa3Zj;;Vkn ̃|oϛp6 Shɳ&k ъ[c1Ս\@a3 SXZDE0~:m) ,"WiPTbu4`%)nv3!oq B,RerP˴4OGE'eHǃE2`1 X̲Ώ7H⸣Z_a-+VR]s"YnZ=4`iU{RzZ Դł*Cl$Xl4LbOZcoZ_ NSf7b vUei]jX]7N۽Cy4؊Bf,ǼjQm.;*5Ů,奶thOl-~\[rUD- vl3zXhЍ<',Pż(r/FU0>%*+EkJK|zl] ζWJ2E)Vi+UJ/FE YKشXv SG0n6 ;cHg/\5~e6-vߖkŋU_,}GH#P(D?h9t$,auᐵ%;4[ΊFE)aKrmy/OY0cy漢#kXLU뗿ήWsѐ'.3,n5- # U؎+֭اDP(Zw/Jc+#OLPS#hVLs{g ʖuϫLΊ5 v#0XlS0˅=W-`Fp<@T<;wJEPy  􃶹C훠g涢T F_n2l_.X,Yd"n){`glyؑ 3ã_ ,#j(a 6oli2K`N}e%4Rtճw IDATOqjJ$.XJ%Yn%晲XR*[~&uCn`Ks.,ή~:a OXbwdf6˳$(/,,6VXXVKsv"p#w cG(X`b^4iX l`*]0ϿDۨ3zJ`Qr%Q* Jj<IXvWu׎W}ǥnh(ap"48VU-sbYqfԍy@=ӻ_>(ٗ BP np+m3W־ۙu Jo{d_X,l8q ( cG(X`b 5v𶡳gB,rTRD0X+MSgyJ`QF؜(cEi4.V#"N$ݐscm5,W -hչ%P}oGJYB@P EV dd-oT4#Wʅ % V X#< Fa;@a3o8H MF¶&ExHԺ47F 70vrJ~n`>,X͵MjR(su|ԛE, B$XXjdls߫`ѰXf;,<&`7f@a33B,rmڮ5 ,ݬ8y(EǛ j?a2@ILXN[^ZGDCwxpx   P*e&g &!XH3َ<&`7f@a33U9_,"ՆZ)79!cXdEG) ,nUٽP^o3#R7Zx0m ڦ""Zq`qLmgr BX冲m^Qg)ISꞃ^?cOĝ;pÌE3OPs_ E2,F"TjdvETwŎ1XXN=n}{'X?FEo6 G~.0^୞vlOTbX:[dyXX|@FJ旝Pd}Vϣ/j8|wem q@,TlsYw}YG=_({hկ@,7b[}~w# i*[=q>.o:   @,ĂĂ @,H,H, Ă@,H,H, @,H,H,@,    @,      @, Ă@,H,H, ĂĂ  @,    @, @,H,H, Ă@,H,H, @,H,H,@,    @,      @, Ă S9˖;j>*bX|@8vq+7dJ 'SE6/舭= [tQ࣋ŁS[  $JBԞb|O<} 6bX|,E>X|zKbAbAbQ *Kx1O;}re_#ŧ$$$ -֞"Zx}   '/r\EasD'~>!ő矌LxqZXMEvߡ\ x4E.-[y]Q;[p5}؅sñ YӮr%ntcߒ=Oz#;}Twڊ~rsk/3E2 $$$%6,w6_X.v/b|X ݫh;+}B%˵zKkP,6wY6:*4oEշ[XJ^_Vdz2 ר[0m U֖@wš-c:xQ=U ZP< jzi!*ψgʄ ή,2Ր@TLBB&`a'̅7.dШQV|=/u*/&MOoy*U sw^Z!XbEqͧ"8pW='z?ϙ!yiԚhnlX7b1vɸX|Njƞx ΤPHܕ=ctcn#uǤɵ0~[=Ԧpl/Vj_7u=P,FNqb}1w|IZC!+D*Sb;ba k>;sndqpM<&_2&A{Y?#AOĝF$rzNY[}t^ e@,v[J:Vcd $'kZ?Wc)^jjv̷ 3E5lf<j9="gX1QKb;2(b10K"At!T2NGǍP9|cĢһ=^P,dMtGŢj3Ts_~Hvg% XQ[jobbČb ,M~}^QT4/rɨX|Ahݾ }Ҏ=obMũ=gJEYbkҘXjvMMTܴ4(h]ձK+WރK#S} _]]aV U ;&=)RXrGJۏM!BrPKKAĂĂb1 :\XD_"a+7A,b~XKŧ(n_ ԔKF"3Uqb.ܙB}H?Mq]ב~aA PݧLqP'} vblbJɾiØ)|[;ĂĂbq8n:!ebQmNE1A,\vVNwc'_26+Ԓ*V׿b1/Zt"O E]n.xR*{#6PzpV(cpX9ZW $) ĢL|XXX, JTu{k{ VS#ݘ,ɺ3Uf,"/,53M,R$^e[]bz%iB-XkLkm=7T``' 5 /bqXb !ɠƍE_Y j2Ke)Tb!XXX,ٴ|5,:%:YrnSoL L9+{ődp KŠ*S hECsRl[_hp<6Tqjا w?w]6b17zݐXt۝Q训]D @,^vxIjeR*˲ږyLˮ(ŝ[_[ɘ)j_Hn| 9PR}]ĂĂbwqi-j9ϒl1J]_)boe}&JV,R4ԁMgXe俦k /nq} اbQ< Ẋv-5SK'3Í9"b-#Xj~W45^ "&Eĭq٩PغcSPN>?W=+y(Ăb1(nQ4骚Jtbv?A7`cXȗ5S%g V,v jEX8ypcK6xX8򓋻)O.ėT(Vb1nP*ݚXM'I905Xܘyf#nXb:(^oeu3ZW:L!j b+jۣ(bAbAb8Evcux%<؉g7ңHev l8L4@gh%xլi.7&^iWbo{Bu]35V<JUgT,/"j= V)w\<_`D61ۙRf;漵_ @`+Վ4z= Zp5/*xWF!awRe B'p}; N}& YCYTn;Ey۪;7x־Q}n~yPzX[vu2bOf]w+X.FLbAb3Rnm'}x=(z5WuE}ҩEoaeUgΙZnH,"{Z>'  },a1 $$0jn5=IۉR?#Z&ڃ)Bq& @, @,H,H, Ă@, @, @,H,H, Ă@, @, @,H,H, Ă@, @, @,H,H, Ă@, @, @,H,H, Ă@, @, @,H,H, Ă@, @, @,H,H, +Hn YC/ymsޏx?b5囮/$-}x絊Ăb߿y?kƷ|7sIci,=cMiOMc~rN(V0ZKYB뱀$>4 vمъCը$gQ)]n; .\pvH6bB89nRmW*XpE/ˑ Gվ,z"l"]vpdlu ^Ͼh|͆+=3V3Eygj|d0zmcm?\#X=7`{P'nߍۃǂ{,zM":y|.d+)j7` ߒ}2TEm"UŹX'[2{,D!ʃ?e/ iG{YJ|5#t{,65L9]OD7eF+%Lh;Rx%Xݍol4i͚;\-}+f)%I_te.ģ>ODO4š"|K,`%V$I)faT QNi궞X,<Iҭa)TH 8$ Ҏ;Km R,H ?$wfX$ui3 X=h[Wt(cзN) %Lc$#Q:J2YA6M3GRRMsa4Lě2*Pn dhqo.Q'vhw6^PhL@_.LDu.8S`/Ow6]^)3!NːlnJxl~tސXHFUYƄ n3=Pc=(7ԵXP Y@UU(kBh֔I Uy6ë#CY9W4%08X\>X>VKӡڷ38 ?3[$ H:T0oPpa=3SY&2ENiv;&,Htfe6\ba wxF $Nd2x|!d6hWy@B|kwjyh~%tuW9Sk~',,[|Dm5!2/ǵnj0XPf3OP}y4 8_\nߦ!Dl#7bϙ_؄m.ƪ2\ X01@`]\.KS@syQ]qn:pT'x/9}x;kGa萅~`Vf?fYǍ9 S%-z~meHb/G.AvxC@kS G(ܤ.<&.}p=NbdU2Bg]enPW6hhv ,UVs e}r,ԛh^Ķ،e}`OaisJ ͯ.f 5Plm9dh_:3njĭP*X\u_e34o_<l34G3ulXD(b]I"L#%A_ğe56Pf3;갏h][Zjs XEo*\MD3V ->2azE61OW:TȄWbӖKX 1,Վ:-P ϼ:=ݢl\l#DhX,ɝ? #`BXΖF ł2Ob[ *dvl(N#05a؜&u{BܷȦ`AJD?X6WBwU``k@W+M4Sq9}} X 6~L=K-nkWd3#f=iR45b#s↖iZ@J ϴTŷ`hz% ,~G`E,E/L[y&b:m}N"moD!ФlQGPZQLr,db_ jM#(8\vyjm"wO!"\Q@9#jP~(:L10(ӟVh3"ݯWۄʱmT^U(4H ,U%E=Z4U*P ĦX%Q1EUJS!_=.28Ghf`o_{V쁯9G9y#WD"ώ"LIcG ~3YP|!UhUf"~= /nnW^5JPЬ']~M~qw "~~ӂ߃o+Phܶxⱗq/XD(bqW[@=#{๶x[|_o`#lc[j;q@6}imy{v'CqNbM7obţ"="X,lpZqnt#XssB%:8(L^ X۠>TJ4tme+U٣r@RɌe0J"8U0 WLjS3mҚ` B* QU <;KW\kH;ب`v@cfla)Dx{__z"łV)6BMAZ7+}`e]zQ-6,)Ņg 8G`E,Ź^D&T|!\Af$ McgO ?#D<Go( b{4K`OS,z A ${$g!=CH=;cݶ?ݮ܌yDB\Qb K"1QTݸYbt `ITettVD*vkjLkh._Z[ł̗=,LSZl+^Oى s^LZ !9h wb[Ŗ,e1-B]_JkNxbmѲJ)Dxzr,-s1Nv=S&:01"XhiZmu,hC?xKIHݺ4z0'@;ߟ&4},\! k}&Ev̵vA-.,K᎝.]\ &?ac9ӂ" R1rϜsn},vX+DHX cE/s]."Xag/Dr7 ߪt;qqq@,UcXiETnL|R*9vVD!}z;3VD2I,2K~K"xc&x;jE} euT],M^5t%(<` Cޯ{Y_ %HYacUWDQɈXn""ߚwXؚ+Tj6X8̞2Op]/ThkM,"ELP9C,"`^\.{ #~hUߖrX,֩ io|}ẽ̷FKjV\|:lsL̑2(X|+/p[!cjUEo5${~T"ߦ^ C|X)EbAwH=<ݾ_9_2rvK,ϟb@^0{)m} &nQX7ⴧͽIey9⭸{3SQl()\:W9\zWyLlã}WhcwB-%S,~ʼnM fmQ,8}qhX/qDĂC->hp2",ebۡXʦX"[UXK O-d`r-jy*v>q F=q- K0+iQ]+ N#% E<-M^t@,\|Fcƌ(>ߩ#MEHD,3XpCX6y6Q1!/G>w;Q:%4)J󓒚PY"x̓f?7owBF3Сg[}kT5۝SO"'.m_/c[/ǔ &\QuYѦRO ?jĂ?~!k+VOE+Y vqXI?z9 d,zH6>~ <ϭ[oMY~O`h aS5ml<ʖ>`apѰE SOj=Chr|괯Kmp\Ob.Byj-":J23S/*\V֡Q%mP]oUw|O-7kTRŗ+FǺH>f=hi*ynl}qXDNՀpȘ[".4XDD^9S,EIs)8oLʎ9MoCwg{RO6+)ZH/,b["ַ$ `{SĭeL6ڷMp[ 5̒:iV0DZX`wWRE$F!mu[.0/:~~FSgڳ11F|FϏi'9.C0,暎VYĢy}KkiY`Kٝ^ @ܾP".صlPhCPŹ }Z|PHcܨ>=…k]6k(ѵ;r5ghc%uns/\{*s7gԿѽy}T{̹̊ԇtsHEH&.w!Kw*k^?%޻'lX kX cqy}GbXbqvY8Ez|zsAr Zkhc_t\ X c6ZQ 1X@,΋XmB,N+8-bQK7X2>ԭ#t⬰^vA,kN?b1?q`Sr  c3*[);b!#?%bC䔎{Ezb@b 'hqfCܹr}Y(Y)@+ǟZPInXd,XX c  c X2@,@,2X c   c X2@,b2XX cXX2@,b2XX c c2bb2XX cF|ӡxW.bd,gb~WM"v@,@ zL,hbX@,2X8XXd,bq$u,,Jձ-7Ty>+UZN4lTUѾB!6?VMry|bX2{/bNPuCY**(xSfK.cκHF~ H*4\fbX2s(FXPfTZ$*VhO+([bw,X1>+: bX2_ oIW7|X4[DX J(."-6#=c[1Yiu5|'@نNn@,&7/1.]? d,z_?_Vʋ{? OW,~ 8> i=*yғGcR,6Uma S.M\doOn Jibߨ;*7mQҀlMN+d43PI:`dzr*^mDKIcOF_W&V IDATq:@(Ѯ a{!{   5e`TeAڭW ˎ:7б@b*U e=(wrSdn4*~U(Fb@^X<'?˃gן%E(P;v䖾Bk&36ՁBPSGiZdﲑ`\ j0(t,бfL:M/Z`O2_  Y#` $+^o1#,>fS_DΓLt|%X|<`B ,*h1lŷ_:rλӛ`QXc1j'k&f=0'oo?,~".GaxD^~#=޿ rtxI >it7 #  t,.qksu8E6:cvgN )E^O/d?=vpWZȋ/R9XV(jggDYA2;I(9,ƚeб@@Mm[v_{CM^U,eBnX珚$˭6z(kR]|.Z]yp`Y9*d6ZkS֔[B YּMÇ.yX':jd*`1;TuȞeY-eZ Z-[urze5m,SJh!=QoB@PS9>m].OxD΢bЕ1z޲VNrbA3h9âZ'|$·Gfak왹'oZ5ra-б@bb0621&ЉO?oW}g%3nB[m-ȂMU0 yWlE;<3:E3>j@U50,^={h#t׋b`J|yaXcKRg Eꍂ(j'ɨ+4)rzpK~ 5PLFrh$ofC,slh6U6:XL7X?t##ܩH-;KA,CKze #%!4PC^5X@\f= venJ#Q GCiwĸ3,sػ|ߓMʗ^3N2{r>5 ly k-|B!M\yORŲ 1$7Ȼx e}Dn0 f= vFj= G@PSXDh(r\G , wP^;8 E"u(#|6WrC.~yX`i,h t,bw=?g)ySNX`d E"h S`=O^hPVVW3dtYM2tGdž TӉX t qy#E9ޑ6=m"uzG,6{9`P(ԏx-v ,bԏ" e Yw<\2/ƛjFm]S1B{Fp? :G27iU|~H+p *NYB,A'98XԔ7a,j-: ![\t`tSBJf~s#~"XL(ƎX#郔ٍ[JOk*֫gd!,R6Xl?m# hE,Xu1;YQ>#7 E[2(X,8:iE>ŖS"sб@oSL|!g#F<%i% V(3*u:qwrlFww QqtUޥV"k0}B ,(~lߺ#|)oMo B:rVV!i[P(gʩT,*h<б@bzk8J 4}XVdothB'Q2)g\k;r,R4Œ}Z99-|ͫDBP(%T:^ :r6e rxT̏ pOh=XM C+">:Xc1UJ19X1!X[V<zPUm;g&=rXnYdx$,rCk6_?ch X XP(UEy|8XD ^ ~`OPBDGr,б@qjVwY7iXZo9u)[w #" :(:kfw;~oo=B,H,H,H,׭'u+7ռqFےB{H 42z2vXYb[FB%3w"^^c!aRi DXڵQ ;Ѯ,j>v' MQ̿DھQͭh _~ /M\c#0ݴ~ h4kb1tN;u@Siwy$XXXX4e#EfhH5o,K=bѕ^nj\ÝQe2#zIןX6W#8jXz[q\,^q>o'ŊՑO=Yc]N~*b(am={HkZУs\_|s"ӴbԦ! ĽA @}ԁ~~EO OhS3QbMi}te+uXJ(*\^ 4EDstqtyňT7a1f|X8є }5&"ԝ2R)_%HV!]ᬶ~H=r5o)͠KR}Y.7Eklm>ǺN:cC=?|E{2e_ b@bAb^bqKdU7{pG#y Ve^q ^yI6?5).ڢaT벞آQ[dFEdYk=k h/x#Ug\גXfQ<|W9 Juް4K|k`Lv; Zij퍪i@RrȔ$rŢ-݈CڪcTWsOkz5ɬE h/(Ɋq#[:n~N ]La^\]&seRorNN2Uluf7;W;{q1Q/5KfJkˊײ2AG   6Fֽ`-,yj lTs)˷e`WݓEoجq:i66?9<Գ|~VOg45gkʊt h+S.=#w * dhql,1S*زrڐ:Ƶ|>)k}-52    鲼v:)] :><©̆ߋ(rg=g8WM9ޕ-mL!$ҁRΜo[wϖRt^Ɗn5GZ|#`$DbAbAbtD {0bqQbq.ZuǶo|Y(M]{yިE.C୬8+;I'?fkÄ =H-+u^BwBJfYÒtEG]Iuc 6#hw/ǟScT bqAbqOh>z9Fʮd=c{[!+C{9 vX{Aeiq}GDVn6"){R8VsZU,B'3LGI'/ 6c,z$OpAm=F0 bqAbn71#+3RMSdtH,:U/' Q^3fmi]!kw.:μ ګsBNG;=;kP-5E K*x-F[?{Wۛƕ$hZN 587ٙRivUX\ 4Rvi%ԉJW~{ & T`f;w${KX^l P@~SFz@쥃م _oyoD,ʤIN/el*;Wuqr\`Mw2UiqKHl5i.VQ]f;PrOR-C,Obˈw޴ ش`*ϝ2_骊j닆gTl}}Cg#u@J" B}9( P;22]h@ X0EC *Xl! >$ҺĢhL$2ٷ}G8P&*#N~ $hpYP=BNlk'Ƚɤ#=AϢ\M |/ģ8)W$or2c!Y1a%  7׫ԂҚ7Kw/{ǔs'3q T,>Pɴe =Qd,:w֬zzp݆oQ<"ƌ)LgSo@-6G&YᎨ5}fekV})<ꐎ\CCkWViyX!cţM-lhT~bq%BMCC8x*+$cz @_aE25i׬|J: ~3 $Vq52vA-V)\| @ Xx`Gu-b;M[ t'\|L1&wmv)A {lƮeCۦuFʝ8-DOǺ u{D^>XbA8n̓8u)bH,qy {Tu=e8y.,UlH Kԙj_TE?2Q% m 1AOͥtsՓtћ#-8?}rur'"",}N|u g@c VcYtVr^S7,{GOG_-X q|{9cQE~BhoxO謶$w5nHHmOtUv!hӼZnp2gxy*Xlvį~0)%EFEL,&$lI$+Hݔ! <9PCޢ'5Z@= Â6Ê|ꓛ]$ƅ~!@6Y|aJb$YPUoXZ0SQНD*pfc 7H^=h92!j7QB%h Î9CP=󃊌~pl4&@ /@MK"8fd\ |XТvQt5Э&@%"U%pe{QUdEpݘX̢>'`n +&p^ǔ=kbpW&#)s@f_QNbW%b`U)A / ̬9G*Kn(wBPbqN,vUu3&#ؘ VUֲGbơґL xn<$'CaV~>4('ڑE'jy"O| JbҐ iP}, +&f8Ӕ Bbygž>H%0B [J,ZKĢuXD|E)̅2 ArnKcɍ `xr3ՖñC1Ԃ9T4x}:؉**lO%$PC,eW=I$\R5-B?iWĂs]]~B K,T(33K;S* cp,gĢ_Tiz^dMiU,L$Rb؃JNWoL"gjEVٷ5zw*p5 VKǗoGk GwBų̄g*XlzA4gQ? 8,X܇X,¶74FXp<#* )uS."@ (NT]rb#A, > +L5X3KjWt%GQdVu/H,P@bOeiF+8܏X45SĂہlb1uPإФjahŷ]~4 7\s&(F T*@ XX+$e Ө&ba{Ytݽ8!\kE1Z=Ă͠ j!*$XbJRL퇲[IiA6(yРf:.cP{gї4 ,d(p脍#ًYƻkn6,FD"%1U.C'=ϑ`c:eIp9T":)n߹4Sʶę%|:pcIDԹ * ?fhbas`yzΩyg.2ӾNvgBهz7sB7&/bgve♜Y5 vXJ~ y6|>0euzXqױؙO]J>$=]Q7MDӧH,H,tB}HNu"}bvvXD@,~yl~͍H,H,:ҽR,JVz&~b爅})gĂHYUdj<~pAK^A, fQA XX9i5^uHm6GcO{t5bQLObXXX b b@bAbX $$b@bAbXb@bAbbXXX*R     &+0 Ă@,H,H, ĂĂ  @,    @, @,H,H, Ă@,H,H, @,H,H,@,    @,      @, ĂwS>UO[;"wjĹ"ψbeĢU>AM:W";T I8-G,ĂxPb vwֽݍW_[bXso5e#/9EW^sW,E헛l-@bAb%\~njU41ka Ç͆| CR<7-N[zdža0a۝D*m]8 D$1RXVTVJbTn<ņy9m/k'*]7bsI8jLR5@,ӈʼn$@pd_?OXN#kD041EFϞt:Mui]fE3}ɨ(Y ɲS|bHpok.2k0Q*mb[ځĂR*]E`q/ 126YƱGJrc}c#*\˹&!b6ͮ6ǜN"ߟG+/wbzb߾ybӅ b/'b{H͹z寿]>+XJ|ybJ~Uo%v^ $F2 Ҟ.y=oZ7xI^0X hT o :Ξ$$_rF Qs6iwfcK,DbϥGr5LuXhj Q/$<{;﮻iNO](qb]v3j폿Sק{j},K,f,¸C])={-=_ kKxںT[Ixv-VZ{_[I37;4 S8Ze23af]F*oE'B;DgT)<-R?.dէvXZC1')Ws.?r5)_ݓ`![5> 9gxhY'^;gEƂlI!HwY'?:D@AAAₐbi7w<`su,r={ *]Ҹﰪ.)J45Qa6;#M*_@-}=豸\[..d?,y(G e`!"蒗  8S kߌղ,o"y;eC,,P ,D:`wS\`Tv$ղsܝØc%v˝vX˩%ŞE#F 8`[^]9 1EߌeU+:ovݜ`b$@@AAA"_t$щnXT8paJ.X(nyXT ћrU(E(T"K7s=豘ĈEA@x$;:X1"X$}Gw2Eߌ)5(ft-]EKb8Y[?bo((( ,2gWB:ϚV`E+Xb0jVEڲG2֠%(B@d u$>Ǣ<X}-bN&1,3#sn(Ԕ&"%ň`1"YLڳ'Wo<`q`=l. ,oShG=`al鱨b: QUՠT[KB]@ńIŶ| 4zEtp αr,3Vrus,^v`1*XBϷ ex pv=/h X<  *ѮXt.bF *s6Olyf1ł LF@z,&NDOK/ 2I#EMFrJ]n"0c'kWEKbإD;·o)|B؄W\XձaC 'س5Khppc8X9,nE4"v[{;=豘$Y(a-M'aL|E8X$j \N BT4y3ims^Ҍ DTNE}.,Fd;i`JuǑ_ u4PP,~*FJ"HZ:r)eΞfJX4?CӉrs̖`A5mסMA@z,&J!4]e[";3J"ml^3[Iez; oYgUlo8`Atjb9'NIJnM̸A\,K9H|U b FqcyitEi$XQeL8XPڞM(ɼx=CHsZ[mP&!Z[G-ʔd?鐺"jHZ Xb$,paGq2!6C<HT{^`lE{ H'Fe/Jtn@xtY]l bP.W&{>ŋ\/^>ɝ~M{F X ,+TL*S\M_SPBEp)+`C1f2(rk۲ͳ{YaxSQ X=&9٤@&tL,H֠bX("[I_XrXli| o aOvBEς/0H}Y6CDJssZ,J~@Eev,˦7eUZte18޵ #gqֲؼ-k5rcUa~D5_t]\Û;䷟5u0jFDI޲cZ˲h:eW7_d/ξC b$ M?]ea'2x)L54/CkB&Ó7 p 9^0QFlrWva=豘DE:3㽟Nҙb*pN Ӕ:N ߌq˙#u`1;! <d;E\e{[kܾ{  C@Yx9H9=,@y +r~W)G:‘-CωfrNmVb[aH`˦JA bL݌0驞fHP}M1J¯gIJ6@ ZW@\vj}>(,*{_><^zz}Z'XX{sSQ}`qu3q7Xk_,̊ Ȧ&"@q^B ݖ|D~)^CQWz`1_ý<Pry&  z,c1Ue'U+Of@um4 Xb2$zu3 @,XP!:+E3=Q2"*Ir0E]jaL~ [Px ,^--Sx$= e&XC-77QĸCyDFCAA@AAz,&TYz+OB`1?*us9XH4=E;4CjOmט%Uj]ي 6XEhѪ6ݫ^5%;"ݺ<:Ü9s/P)tfgZŜV1Yjδ"?ohtb#G֍c֚ ei(Ă_?fF^\V;aE[-{ևr{sWcj_\R: LVK=T%n{׊]x_;:2^'q}n|K }Thsb@bAbpb$~(\5wIsvPbIʉ =\eE΢tUĢ#+X(ͨJKKDB?@,H,H,nXtejSWpi=( NŢf:Cb8H)rl4`XuGʌ."X3Bìb9y(6@ Mb19;uH|([R6;)#u)7|%jR,,ˌ N,oĢvL bm5C;jL_y.b@bAbp{bj[f=7Ɣ P9Uwvgs,SOlSP(Ϛ}X4qⵔ[U@i-Kۺ|?i]v+"cJŤ'rPFdX;85EDioR,Zwf͙bklׂ$ۈESW,N~"?ŶS۷R\j $$E,&~w7Ɩ 3'XP" vg~6b1li⃳7X=-SKebae۳wt*+fr_ E\ףZb_w=>G@,H,H,nXxS =8䈔A,je(iiciKgrtLհIIۏ~_mI؂}>iKrLמ{׬^XFZ$ME2!&XHW @,Ă΋EyCz,NjIE9ݗ2"YSZb$$Ԝk>T~!to@, @,e'csoa8(@, bbgԵefY(Njme7 {g XXE3?e8ylL)?,   _K, L8d IDATVfY $$X S1_,   @,:v# V,t+ @,H,H,xb@bAbE~Ă@,H,H, ĂnC} Ăfu;ڱ,D*3Bnb@bAbqsO 1SZO)O#ōa,.LF[]ca!? zIb(qz  ^bqX>.DFsՋj=B3U^j $$? !egQ8.}bI4[AkVԠF,V?xk5NjkAXMžƀ^r, !bpCƶ7l{xXb@bAbqn:B](o-%|ȭSljŸIbaOUַ%+eaƶ7';:8᮶ $$ZS]km)jRO(YaO#W}A ؓcO &b1m;q bh $$#*a) :N.AP,B}V,OQ,,{{=Ѷ7h8Y  6P,.$XZŜ(o2]bQƶ7XƉ"XXX7ce?hXtF,}5WM>n@?ڮ[cQĂ|YVh/E,ކ>Ⱥk#kwSĢyFF+Ⱥ=I:޸r=bXXX(իٰ/spEWAgm7;Y!t?Vvn"J{腳M"lY-1֤ܛ^|@, 8(b," !򟽠)XYA;j@/C ? tMኅIU}\HQ,Bb( t y˲Bi32$fmw\8ˁ@[VW333BXXXErޣ}<9~]#<3Mb@bAbX|t,ͅ5lJ,?c@,H,H,0k:LB9&Db"f"1~6pf XXX|9Hd8Rw.weEEi&Ό   /' XyD,   /.yYT3a'|Ty\RwURMڍƁFEOj5VY9ЧW,Vew/4Sq+|t9|0nMo>v\*ݾ|rN,& =cOx:] Fo:F{xy&b@bAbE{,{~~~SXX09.Tn^Օ>n ɪzM6vBȯ5#ѻBEE_p>pYIMytǸq>R=_F'3cEKnLwo) Ģb1Uw:b1s˛numGzŧ>]^E :ŢOEm%&yC Mٴx0O=tBG,S/"%[k"XXXb]J)U}ub15\56&Ls髧9^q lk%Vmc_jƪ*begUUqb<_U-k }NæY^Ţ1)_ߙ/i#3'uMiAXQ/waV7v-D, bcrQb'_ {)%炚4aV*dF6V;Ju;i$I%j X pBw񶒆gjӧO~e,%CB9,Kz u [eLM3qG6"XXXbq1OmgFx. 驩)u+қb*E!45%UUTՙd`mMľ-:XMiꆷ+ԁ#bqv汊NkVL>cr3_,zlƼĂ ØzS7DMĢpg{^]9prt]wEX۩]baWIEY4u&b1-_iUɅXb@bAbŅtE~T,ՉE뼱lJ͖\uO, buJ Nhg.~R, $$X\Xco^}D,²/?QFr0v[' 1j i|jib@jŽRZɽԠzJ,޸"XXXvQu}igG}HMsPi!eP랇uZ-i1XoQ*m;X$+}}퍭 bl_E uڛ^tMv739.0Fe)brHf`ҽr%6mr |g/š .@׾/J,x|Ne͗EϏW'Y}MpS~cٶ_R|9?"O,J Y?_K.bK1+Jwj&8"X(] Y._dX[H;e bBgM{r@,@bJDMŢLԾoU`̪7nqEݙX=}KdQm_NٻfM-aBm+xq!\BwJ,D갼b!vϧBX a8"9ԞCrX  @bq% B?o|[t^8"?/kFNӎ'G;Aǟ$f5O,?z5V ZWmJ/n< RKNZ*Z;bXUTT,V uޙ'lO,^B<]*'|'O|P%G󡴗b2ūW򸼹X^U?2o7U?,⷏D isMԭ'a6[ǰ uft7*nn:dV{WEβbelfN*~!-72dk$\\=I̲N5ImV=w\M6m_өX^dNӲƣծ̻VX֡3C,ַ~ X XE>Q0,wH`,}7_ $H,Q&cUqϔb3A9ю,"O(BX }adzerQf:1AB@&-r W~RQ's^yόX O@,@bb-4_wgԗR,.:~ n*w bVnxX"/C(}'P"nMj~Zj2W~ H,X\AQ/B.1NS;DybaZj/"^R,d z-0W%xL,m_4tKMH,Xl'(]&Xa:hK.̬gXċ iX,FG~\&2݃RXEG΅  X ؘ119HĢLbZ'. eba Κa_%iB6 "?Iu~ULmX5$%nv o Kذ˜!~$ /FAM2wH;|m07 JEvuW,m@ aAU,@ aA Pł* @ aA Pł* @ aA Pł* @ aA‚@ X$,;82Vivf=x?ʼna]ݞ-Q1 %ØЛE‚@ XPł@CP085nYh ΑҗُE; pH@P9\ 3iL$,TU,$,>eyC@aQ `"!$,>$,XPł@ aEy:oT-jmbR~$NLDgNC% =gqN !ӏ뛋|.kM)O7̗v7M?fl3XkՈGBNyݔ(j8 ]`23ϛ]nv;u71mu qdX%uNJ;fxzq9eMiYmnмdލbw;b掰`/BqWљ8P2̪ț{ )6X}"Jb'YwO) Ӿ89+CQ8|l< $,XPł@AR pp-7! [BX)E*,ܠU BjxT>Wa㹓cڗ8êh!8\\`я}XZqr$( #[5 mfs׵zt^Kvs O aq#PP8BkCPk)+l1Deȝ jF1KMm1[te`!ۉ7#ޭO116rʚړuo Jz,/Aq;E3&,Nŋ0uSMlT~aJ8`!VwB@ *Mָ%} dUƃn:x.K=U,bA |aXI UΰOڌs39WXא]O44-LEX@8l䲰 omXc(1ce/,ڀ;Cnzm% bM]eӂdjȗAur-nXKS4f# 9{~k/ǫU"‚iۇR]}{|=׹}f?j6FdfbTAgB`=9p,ّa= IDAT fX k4mh[[Xuet`;4/L1vϸ6/!g(/hx{aĚT=>G|z,BwUB-Pe Wn S|*q"CҨu^dn}'U7}~=ɚJW˸0^IXT a{ ŧ&'c!4H!!0ʱnm9):9U߶`LK2:PPy4\aF|xLF21-:G j⩠m[0m1*,f6TV9Y v.@J5> m`% ?E{,P1PB}qÎnx塔Z1w ?p83Z\ o3Ŷp Pj XwLԈ C [ʐu!fo$`- Q!:LaҠ$E^}'dibw o P]֭=ɖ [B7V|rvIO5aQ7y=ZjDK )}5c4NhHK_uHoOBӞXCv#C;bZo*T aA aq a!!VPJRUO0F‚q\bĈ] 84Ţ('%oq*1`Vщ ZQԇdXKG9‚ j#Z6JŏPs%m`*BtWg)VW%.J;!tx]mWh]~Y78(GN(\ >'gEwB2aoXaR1[[ǖVS8ueWa^I9ÒdKMD 52h>N FQ6(aF'(x^lY?x|p Ccr6/]uwUW]U1*`ۺl$Fkt GLX4U*ͤt+XoX(ڕI,keh_JCoMۚFOY1Q9 3l*4|hXdX8qN,܉'OXM1µBKNMnUQ΂]qddJN/n1j8k JڑFH-X| ]&s{BdAVšONj&cЗլ098$ɺ9<0ƿU|F,nVI"Fkt G  %L*k-7{R+XPxX$ BR,iYt6ػY bcsn#N wb'1Ǡ-KIYJ`wB:g )Vym!{', VD z/DJX۳Yrg-P'0D5vU? ~Ybǁs``JPbaBps*n{/wcXEOOs:)*H,xIU#r&ƨ)YMb|z?iX@%(H6bW5B,4ħ<ŚLwFVbqƲ1uEO6&mh].ug5n&ÇpĝX 'N:xV𤌹VA{J.OLZ-`m < qJo&8v#x3\ANN,B,bĂ(Vxv4Чm2ybѷ{Q-?Pd,OXwlĂ=aL-D,ŵ <]3hdfrnVXEri@Yٞ& l{hyQbB֨Me.YjAD~[XGX-LJ,fAWoMcM 2(nI,43%2!G,8q'‰N,2^7r"e"V\ HnJ'kx.n+o~ɼEc!TZk j÷KA,Z6$E)kw%xxS6aU[qkЁy B5_eK̟I'-̱æDUeb0 y{´5f5B:FKXH˵Z#$^ggxszJq.aXiVovjU I-(؟+Jb%ʀQ (- coZ T,3p5cqhJlw‰wbN,8ya* Wm0ZE!䒥FO<٥&^&xcN_㮨@<,3OS񆚲A@Y$>fϡx-==bŦX?]Cc& XPSx2ŢOw}'7WȺB,{YꓝX$ܖ8Ĉ#Q'H,U6O+ *f \m2A,.d}# 7ХDIh l<-"Xbhb O@4G~V\}}Q_/4I۟7?afFN,@m%)72/mĂZ\+}NX5t`p{KQgjVI04y8s5!yDb%ƇubK`^Kv*k!}mTe5ғzH #I-(]0f*_(4K=Je_ƃcmֳmMDۀ&]528kiLuWU$}jpĝX!y_J,?89ba%yXΧǣ,ORqkOQsHz/\3@8`cAYTO,k# ^=t,MT "ytC<=2,$+h?Sro3X%9h˝rxtbI,D!o4.?y߀L|h\^sѸZ#10/w 9<ai6G6bA-.͒y8nּǢy aD"XE; %y>*i|.<o҈z1&w\,,hTX,."%DjAdӜ6h(T .c _-(p~b?z[5A'" @T.3zWդfgLM>|M:bĉ;p'G?om}{DJO~hwx X 鉯%wV9 "zWQb;^-@kT %}"yY 2z1v+`wý\Ľt5:^IfbggDsUF@< R[VE *G`#pw23֚}_>".oo`_ =;[#l>DåX=ە)+t- YOHgU԰߲,ըwȳ25&^<MomMۚ0& s5bYuUTId_W2PvuMG,8q'^mmm}\}k_OXؤsw*ka)dL58ʙzV*n B\?_O%-R lOOdTSp Ͼo#u!|#jYQR҇SVϚ_/{gƕ?G.l enpds@餝$ơFU.ZZVB*fR%.zc׌g`$xsΙg9lj7~͹N'rFSim!'Zz}rwQ =M9bݲ]ϸ5Fܚ9H^A\{>OFݍ3Ngv{h&G  wh`1qXG4'OֱT8=b),vIcQ2dN\RC,=6#c@AX [ԑ_wG3ӽa%':VC,ZVZ֥`Kf 3'Ñv҅2LE@~abJ:6/rarC`PO 吻8j ۘd5sI@A Uf'cQ4}$Xx!+$"o< @%"d*T8Xs l%7OL) QrR9[?;A`cq{GC=r3,=輾b͐`Q3cE"^d`FUv`mu1?(=`a`A, 8p,X$ŬjѼ~3Dю;rPft[ `!ʞ,+ՏpNWpG7ZsGsC`A, 8p,X$D6<$/~!`L\(9h0 @) ٭ 5!M)M냌̱DX@A  8T" B뼾T0yE[4hk&XG* w^VA`iݍdB82TWf X@ 8p,N$tqx;g_"9)5$'M0Vq`1L˺ݿXT%0,VЍ "N9b5u7 SI-V8R6O!-E#B3"`!6reULnߜUʰ| G Vr 0jY  8p,b5|8DIz >xO&m.v`#i ךR7^_NV>@A0 wDnB`jl@ЋX`">{Xwѝ~Ÿ`,:v %)\b ZLm5H,`uWA^"3Q`*גZrj=xQ]&Y<[=>Xl;Gy6 , 3ddiڲ;כU+'tǃYD-W  `c\W3B9wZr10Pn\VT{,1ٳ3Bu>'[kU0sCk.TqA cbreH$Xu  c1jjQtxyBϺÞsSonR]RwmUW/#wR;+揿ztƍԛ'U]XX\үj<)x Ƅhܬ /9m[QoŞ\8wE~a;6RQ}>g,zWWr?ީ~?~Ë́_4b|ީecq$ŽD%qo֥`R2cO|b:v>`1]:[k|0v.3kv0w/wk`Ap,X\ ^{E}buڵv%nX|=,-yRD~~bz{͐5| S9śRۖ`HŸwٻy'!3J/{Ճ7 y$"5CBR!D]Cm@w3Nbozy=M5P궻.D_SĂ@'Rk9kbEX舅Sb1ƞ([o YC, jd6Do"bA-/ET'?u?=}E @*YoM?5RΚXhѢ#:bEX^ۈFo槉.A /&KL b΢X!?DA^!}B -X_Egvnwac̈aG֣O[SoS],vfwncuh8{Ë{&=7aw &^]+ xImb 2p{mbY0ŁՐ%Nwk] cSEO0=υ71v\ 4~ɸ+ynO<ʟ`ð}tˇC_YRP1/s ylGEVb'5nѴ$ phdY)coB}V8kQerKbłPń\hVɷ\n6Wwo/Kn_Ϝa=>5>7[SIMqz}TUd bqXN䳦2Jʳ Jl'R=MŬIj,rM_.Z=sF씩 -TwΆ Qgt(;O. QZvHIH-:b#Z|,bỴ^GPq?4 200w ,4, 5 <"ɀίKD:ryD&M ^U Wy%@e08 ?8>dG|]8=h:#h|m,>ٸɴC)EKDh!6f1>AzV Bk%vO$B6[ # !"_QP5ڒba*;I *'dIi8`6osSF4B|%3rwxw]y GojB! ىdZ°L&XXՋ#3B9iLӂs)PRpjB}לu ڊ440 >/ )1 4ТEG,tBE,ؗX>"/)J%Ģ-0TI̐ppY rNBpkCK#fUw GG21$B<jCP-H VF,$GH2"S#PXt\fZWp8%b#Ưd6SRys8G$KUU#-i,R{uD i:w3<wV!ls $Hw. TT20vklBv"WIB5{+;boSy"Sx'uX\Zt&w :xJ,2N(ğed6mK,8 J8VIȧ٠!dCJB,vGM,h Тc~O2)~yc/8h+&±WeH,oȜ)B (`8&{LӬcjx=Wj)+0>)'P$L"ętY}nPX9/ ) 4Т#:b#Z4=gXw&\qlȋmE,i/^XNJ,2 #v2 %*/096p]bQ]qK򻉅]I+zkm|'-s8vi!M޵6,&Kv9L i؋ ^$̄x30^L9TVq fp2Ru\5/yId,x(s⢰GZ+<`X+YX13Q_/Ƀ{&!:=?w,o(7 "X, , [ ,nn` 7X ]#h R ]ož9EaXTRhMhI yBFX4qU[?.SgDD џ,tm9Րx!谰h9bNsۜ*h,eQy> bQɄE|60~ΩQ:- ,<E>j,cv86ۢ!Ġ ,J7Sa{Whq'wX3=&gXE Xo]E[5_8"vl`^*1L3^ ,쩭ѭSTN*o9#8t [۷כ=x?b|.fDD џ,ݭm뗵`w/XWM.R}pvyx l~O4|;۵CBe ,*9^Qˈ!VUn`1-+ť~yR4ٛ3W1_PS_#jw>c ^a欱U.`!Xbuk=;fa` Rrvs&1uJ`QnO:( Q : ',lX̫vC_#fDD џ,2"ױn7u= ,P,X\)]beN$J k6sdu&>nX>ɬ'HPcgUʠ2`Q؂E:X֬zXn6 3W3!3CŒt ϟ]Fv7yokz,0gXlc`ht 6v> p^ɱp/Du5aLGvR*4. XM6 Puzr,By3 >.6I`>,cA "?X*L$KoT1E`T@b~ڗ ]km/ԡ4D/QU(̀˜.qV_Bl) 0eׂeҞU+v9)6\V^gEͦ#+ l:?(ԍ.4.Y sUb˙&0Xx% WSWRH/POGn-Fι╣ -* UxE҈w ^}z-ӺPT͹W7o]w,*S[kVZX{e![wͦ]* , CT,o5T?XDD ,|I᧾u.kollT֣ ^ 3 7&f@- `q&Og^ F0BJbeNW?e~s=;D,7 OUS5|īO,1/Vgp(:r.`(_vN`Қ_+ &'~Nx/e tZw4S} ,q .w C4f $X4LdOJBFήbv*` /"ww($<9z_ CߚB3,V;`)тx$rnl"yIʦpوӹ$5ȹT^8j,`Q9,R^ [ietGmuo6 ,`[Uhѝ}ɹp~Yƛ0Nx+ބ# ""XǂZ^'KC,bZJ \0@>kt^,f=n>j"yI,OVHY4-d`\ a,l#Қ:gQb P]GHf!8|j#5-0'bE !2Z?`yHƓ1\9N2i`c:}Nףn Xd 406\,+K/G-bJzG+[,Z9v2KgݻϟxͶ  >} % -*͟cH)][n`2P0-]EN"fy(۷ RvEejktsfmKi=sIǶͦEsV>,0H=ІH( ~Xo ""y, 6su_ܪT 0FXxfW`ciDlMxipEԿtX W9k.J1 nɧMQߞ1:(O{b#B sn? }V񩃁ඣj'^۩l^ k<8byO)_CF9%:%F2;JP^r:X],U]98Y,` @ ZB@+籜hr3U*DM'.w/?%~? R(d)V,'n`͹ ЃFIC^/56cQXT"U;\WVk33Ǣ_.267vqV(%:izgƿmZk-)vlc3q|Lx%ិ7*|4A=4y ;Ģpfu)׉N K?:,tR]caxIK򥛭'>%̬dg] MWx "y,X z?tb|~6]>#y,zG`wdÆou}^0O) "Xǂ wCYYXNH[px7Is\mhP|d\Xǂ<DD,^.G!K׍?<\ʌy]tƸ{fknEuDD  7cuO)N㜱_m\/CSEe-PMb&jn6$m@c b&^oYkʹg8T]3]5uҥ7ں[tu`jJ_`  ҏ+uաWjnoC9|;sퟛ`  @cAc,`XX X44@@cAc,`XX X44@@cAc,`XX X44@@cAc,`XX X44@@cAc,`XX X44@@cAc,`XX X44@@T*2@h,h,,rRݾRi>OіF< ƂŎjvvҰ}Su)f9wR@cAcn&oWf֯lw?ڗ>_~wx{N.wTkzӨ7 +ЭR /'f+UcNx}wn^yR%  X44@o*63IIU 58_`_mx}gjŬǗ5e]Wיmȿw^h_lANrȲ?2pGZ X44@  .j2մ__0{$׷;Z8^WW&BlW]>͝s~~tdG뷣Owَ  X44@O)LI1#5=qB¼&p1{K̆_${ZU,}7blw_{0R\y)N3bz*X$kzo5w.[<ڇn0Qh4#=Z#YӁ; obLr'J(w5ܺ7' Ore! Ƃ`gm() ~oLtwvS6ZehzU1_omܢ)ꍽ(w# [nEuȚtʒ&B[TtAaކy}FsΓ QM/_m;Xӆ2ZHa_z 2Э(q!ݑIi;3@h,h, &fUUk |u3P {BT8n&E2]!v7+tڌB՘WoLGg;dG8dep(  Ƃ`qC˝*btxxΘd#]Ӗ?Ui5TԱ\%w{~cveoN]?đ۟z%XLBVowݚ~"&Z$ȅpo}13tǮ3xxM#Z;iD/}^'3 Oi>*o3H{BQM Ƃ`k x,i|Zc6r,nK)쌇wss0je\@_R]^U}HdJq)SL[Yݏ8yd`j\y5 ,  wE RNYHb~l+$vN+Ÿ/ FE4aׂ~˘}k'j.SFE`?tjݻwG/c-{Oz&X4>9]*~t;mfHԗK~U6U X44O,~\q?%Zt/VLs3Z  Ƃ"7ҭNLj,}rWݽCL,  tJ|vchXs51C.̧_ X,, ,X,, ,X,, ,baaX,, ,`X`X:& IDAT`X, , , BX`X@Xb@Xb@Xb@X , DŽE?WJX`XX, XX,τ'+x*X,, ,X,, ,X,, ,`X ,, `X`X`X@Xb, , ,  XX,@Xb@Xb@Xba BX XX,@X XX,@X XX,@X ,ba@X\8,Vf:еaqX)z8e ,ba@X\&,3,<`X ,.E,X,, e ,ba@XX\,*SWND,^"], ?Eˢ8P- ܩ\iXTaqXFћ X,,vܗ/^'!p|a_K!a XX,/͈ՅE2vaѳ,Ee1qagVa XX,}J]oYXmkKwܥ26;-}2~z21œ􍢪5V9{Ǎ"˽V1UI"L~Vcm;UaqTqaXtd3'1=f̥I4nW*V.@Xb";?A96ؘ\n^v?x=nmy8Nr7[6̾zh8ᅃшPڛJ f$aMdƒe^]{XJc[FTGkK(FG#Hwy(?ra^w_Ohm_.,7]wZ3l&)Ǯa~TfEP'_҉!8H0* Ǧ2`X{WOsae0WXJ쨖'5,ZO / OKXtwt?ʿ XX,چ|_JߨɅbvc${.a8baqzraU* ̇E$¢iRʺ 3`X W^7fudd[Xlnau Ѷ<|XO ,6yE3f ,bakc3g;ӣ,~o{qQ5L G A.a \تfklii,uԃwhJ$}|5]k{.Ovȝd>,'91՘EG~j X,,pb柉\u#Mw OT~/O/.kkFQXN2\H?Q#,*G;iQi7\eXߩ,+擗"b.z?9íݎ?WڍTqXsH|XN2\*Q "}vrF$˅U#62`Xu ֑>_̟Ku/Zdg͝.1H]SxKoq}^ Jr_]=no?j81hBɊįdmhkq"kSM'zUKַzׯ9J^o~`{W 7,/#bI^}mEMru"tS#|0燁,WR$wWo5nФеE'ZW Ƃf7*ԣس8nnYq?f,488rS4W?<qoc/|1@h,h,Wuy=?ԴOr(ql@cAc\`!Ks\n¼ɺ̿i1rD:;Bg%'`XX;X lͷsfCiKodJkZdY& X44e7lvw5MXmBYy&k3=8JN8 .y}ik?cmr/q5Cs䄓,  3M8^ޙe]jN?s䄓,  þMO]rfdpIEʨd#Yb|5ΩI@cAcy8' X44 XL,d W   ,&o+`XX`d Ƃ X>A,`XX,  ` Ƃ`@Y8440yX!XƂ X&   XX a,  `s, XX (44@E`K XX `,9Ƃb` Ƃ`"X0"E`'Xd䟽M844@@E`h,h,ࢂ 44@h,h,@ X%h,h,`J@cAc,Uh,h,%b`  @cAc, Ƃ ,D X"44@jLi   XXn,0`(,Uc Xeh,h,`%`Acn,TX @cAc"X`&E]?LG&u, XX $, VPE`  bEU^ 'W+@cAc2XDk1 fh,h,/X 0`h,h, V PT}?LC#pnw\  'v0 ?eh,h, 'Y`U7.ޫs,oBqwm2jZi"Wd̺=8XΆV;]0oLLRmGI+ Zh,h,@Vg" eH22\xMf݈֑t^0i[ёe'/w=;b{K],Ӛ;A,̙z?I;_{Rlu6ب&M,VoBƂreY-U"E&b"₳ZoE8ƧYK?,әpdY2=u2в Zz;]T3$́t:?ʳu6"V˫ XXh$S #T*+?s[l2eYb_H~-Lݽo"wsXH#@b^C'R;lw;mNZ*4ӄ/ƺ(^y}js_ٜ{@q_oS|u2eOϾ8!+FA{涰ba.|gi(<<'M(́=o(O~?5J$ݬO^z>i^/9јYQtŴHW`X@&P,ʶ/Yq,î|5 WGPgʎlP~eu9}fX>n^|Q1NkXX,â:;EWEvqdWyu|we6~s9NˬaQ}S= aXuaYD^8bϯ ~iz榓ʃiu\D]!,XX,âd0mQI^LCXLGͥsf#FGཆ,}Pi:?J)zx/~GT]b!,TYg60*]b]*8>JqpX,,‚NE\f#bat*-▗olbIy{y8&+XX,JG]mcwNV`X :%~'DX^ybat,,J kg, aAbxξ͉=0X,,‚nŏ b!,oogٮ>vYhȲl<`gyZ*Y;w^, LX̶R7vz}]u~Y,շc]a t#,! H,j2a7+ǍvQI$O ,baNEr ^nW:4/V첬-v8,C{=_vX,,pa1XX_q0P V]e>4ox3jWfi&;v ,ba=,&?7vIαص0+ϸligAXTfFU b-V/!,7>peNlT^Q鶹Z}ŵ",a \YX|4/ۡ|G0Xb7ZbLV7O۝X,,СxV0[$IpE UFd"<&`X@.χe[ؕ|αXu+,a t.,*B U?Ly'F/ceJembX,,ŰnsY*YxsExc8K}W(X, LXDw=^7\^PUr.,i_X, LX$ü]Ax +ozWwya{̪k`X@g" ]{;ݎgߟz4W&.:,  XX,@X XX,@X XX,@X XX,@X ,baa ,baa ,baa ,baa, , , ,  XX,@X XX,@X XX,@X XX,@X ,baa ,baa ,baa ,baaӭ~?íg, aAx3xbat,loW , 2,, 8,, 8,, 8,, 8,, 8,, 8,, 8,, 8,, 8,, 8,, 8,, 8,, 8,, 8,, 8,,elzg8%` 4$$I/v %ac†||3o}ⓓume}'_gJbPY,H,H,*@e ,$$łĂXXXT   bAbAbPY,H,H,*@e ,$$łĂXXXT   bAbAbPY,H,H,*@e ,$$łĂXXXT   bAbAbPY,H,H,*@e 8Π4a pZ1[!סW:H,H,H,C b1V{bH,H,H,y&=!Q{}Z  CbAbAb!섘ߋXjc7{SbXXXXB!jɋV~2S bAbAob IDATbPU,BA,~X?X-$$Gs Fąٗ/nZlu)]u ט:\M@])sx[L=(CXOaI*8XL.3\S,5;lqL5=i$yzqG)$QƢĿ*$$%ba nEN85]jfX dkϚj{`;jgS^#sf* }•,CѡXy=1190Oب/Y*]Q 8XXX|K,T=6u/pmnM4MU+ w`@rB!,aa c\B$2bq cĂ%SH +Gϭ|ǀtO憆EzqJ٥"99;KgMg/==0.>vr湽^Nۻ|LbIS{Y:GGR(;?oyi eȓzh֫Z3N;ح֚ɷKâQ@`XX,,iaQx~҃(,vcа(T^9Cԝ)v4Ž+YCl?yOrrS)W |LCN^:|zr>#%.ًV2 [r0!OvoX$W^emqxsiA̰XX,ât 9~,FEag a&B7kgGEajuDčPV4f߾T꼹Sy{0,Ӱw9ξ Y<$gub368*F}Sjݓ&Zi!2 o';~vnz'«,,vk .XlN]tjXgHR|2ya\yy~tg<l\36Q}ϗݯM8R\>+}A 4,, iַ\Wu |eaaXUSkk ba+f>UJz<( :ba+f*ySWɹN9WbW,}y]UaaX4zN+5_YXX,, baaX@pXX,, baaX@pXX,, baaX@pXX,, baaX@pXX,, baaX@pXX,,_bqȼl,UqXz[fad.w>/,EC;YX!,,>_]1X#oBbnb c BaaX@pXX,, baaX@pXX,, baaX@pXX,, baaX@pXX,, "],&,}Ę. bba baరXX, 8,,  ba471 q\,Y,+_1 G8,,a19 G _/,, ba@X 8,, ba@Xt̞epɰ$,n_,~,ӓtxJy.,KI-,-YXϊ_ 2,ZՓ$,KE2Xda/?_,gXX,/,b֙. G>#,, a\>,bGbNbqo򫁰ȕj/k/8k4^,tbuX0a~Sv+zG۫kڋE,j ,2/:Z>܊j ǧO0aѾE`1X\۰XaEPNO?ޭ7hGGs$ a RkJo|v*Qފ?^K?:,qѽ,/Eϥj ,=l~hGbV1F3;0asbq;8,~ޣqXeqwo@X՚oGXCERGf}.qbqb1aa ¢X=\m?yE bG#z'yX\-م,,X8Fta1j -}aqâg/m@XŇ(Z//~p6|X}пX䯄" W:,z |XԢhnXX ajDo?q^ckHbbE 17b[M?c^z8˶`16a&173fƗ&C RVRVDTʂMHwM$ U찫z_vf!~ryXłX|i+^XOtcAoE^/_rEY{ӽ_q Xh,,DBn!zWZG,!^ (Y)X'?"X0֢W踰">ݐ`!r nc64X{o_>w˷x#3,\Q`AcʛPGſ~O?o_qGxm,!  ,z.=Ec,EG'XxZ ţE.o_' oh`a7Z@,X`^oУ`܃X eX\,\q$EX,ƢBcEA/ފQG`܃XB.w8 Œwz*,zOšx j,3Kv X: "=  ~| j,.[EYEv,złj,,Y<;@a <8Xo=X\ ՌY,kXPuEh,ZJSYhEERX4+ u `1U` ),x4bEzbh s߬XPuG(,P(X8f^Ookx4b"PVcQ`1`a7 =Eb,&"xzwzn,Z Hh37Ç`1Q`4vzȂ` ꌅ<-#,b!VãiUyx;,K,NBމ2 s-R,Z(6P XXwӥP춳"ǾُuHBYU }w] u_ 6;B훝sfYhEEmvnC Y#XL&}P xG,m'`1 Pń,N5,rȂG(,y҅?=BxV-y}{\ ,1 YEZz®. ཹ"n[! *+Bz%qu{aP V0p֞.n䥧,䔅^ ղ+ 1fY*-BvJ WCB VBLW8}j'+t0 %Tp٬9X6`4bȐJ~ u^MYT)NZYX䘅Y"m-l.*TY g#*,:ƄE*׈ g;ݨ$ BEA H`xYfnwWwc{V{+HtUmB=ۯoC),X1 ?gP-JB DV* V\,l#T^+fKuE UNKIDATYH7ofY,j!q{/Z),UVմ"׊fWtBWB Eo'z%[) BoE H"G%[Y%?>' +V\Qz|⯪WG۳młW,ޝXdh[-Tofr;YXhFZ*ǥG}A)Va"׊+|, =&,dt^B=P'XLL2e1YbԢ!{$`Jja"t 2*Bᕢ Vh{0`QNX`&,`1~vۋ>x0")Y;e2mYja3X-JP ܡ>UVc֊C,W^h Xpq&[|mBIb֊+xEW,,Xv>Z,A,FBS&r$NYd,t7T-ZdxYe.>K RQ"mshQu'\\p Ue,'A)Epb;EZ4[m +`x -^{YI;J,6b,YS1 (>Z f} &%G?O*OV1hEnl ',JZE-TqV+,c,l9u Q X)>XZr"XP%ڊE-TE1|"YPǩYha|Zŕ`mP1XŅ 2]a~](',v,]ǻ]pr ,ge1%0fh۹Yh!7-ZXᢲ1?`& I*V22^Ey%Tol5b ՂPd~1,l9NZ j!-]\)Z0wUXɤ"*f^_jb Ģp6^YHE+Znarݔp}:JjE'W{۱WTbK޲ٻel1F(ªE nۅ vЄ\DP8VLjo~"WX؊B6B-,W,&&cYȘ?g.͛E}R-\b>`c3DhRhkE{kʭ]&X( 'gPCϙ,jop ȉhHRʊŒrX]Y>.B8mdbPEF2Ɨh{E⫕+,vӏ,“~C9xyvK|Q ӳ\*+"Vv&WbP;uއ.1Bl! _{BDDDD!B- (X 9W|Xmg {(2Ti-2Z,PÅ /DDDDDݕaq"B"du+B\ڋc/CuB=?-lX!EY """"'2ŋ*XqXE3" <(Bj/FODDDDrvZqc+(?hugX&e(YΪF }!_./ADDDD4;u$1! } 5W̚7&4Z7B:ğ9wdPaƊiaq ,CE-\ZQ +.DDDDDS"")$**(TwX=d!F>ŧR?TATHUVd\Qsņ/ܞ,y3ZB- """}lǬTn+\].pESe>Y͢9/>vDDDDDB"Ί^QtūPwEY6T~pPqUNJ\1s;(-\((h~qTVeLqCE Ê8eʢI2Z'ADDDDd*OuQ!U W#¥Ed SADDDDԀR)4*Un+ 2T, hlapB"FDDDDDr긚NP!U4W`qX ˢ+..4/BbƏ6(?sS,Ъb+xh!.D)[\HP1DDDDDBKhP$R,ШYQU Ԟ "zXqt!yDDDDDSO *T!Ub+eYG -.,/Ba4Ǐ6)#<Tᱢ2W4O hj sADDDD4f +*U4#Y'UZh[X\$]H^h_ADDDDGZuVd϶OKG =[[о9=0aDªB.+b쫳,h I0ADDDD4LjrS,0[ˊ`䊧jE,zhB"EA """ *OoCUtgE,Ѣ-$..\`sѠ$PhSXUĊxr`Q . C..,/J舟8Wշ)rT,0sXa'-2[qlatb*4 BBM*+68X,!-B,Iќe~bo|b+;"c sADDDD4. W *2V g+ʰE-..*M:Zz7>*UĬcau*E -<[H\h] """"p@MPᨢx:--muH5Ѵåsp'[ymREbE0WPhQE ADDDD().u """"ZS]qXlEBE9h$Pd(ªAYQ#.ZdtQ """;)^q/+jx`XTd"DDDDUu-xXi2ZTl"ƾ """"VQS\qVȢipE1'@DDDD6ӭs~UCXq.W """"nס<[dpyciMvD 9)p,z8*N `ADDDDXh!/*8DDDDD;2)QDDDDDP[pQE;2_=wG[G!0b4BX ,E//q5`CE xR a@]"?wNСy-/aBX ,XZ )Y+q @*BX ,2\d`Ku{@X aBX ,u5D , aBX X59kJX ,@X a!,BX ,@XJmBk , aBXBX , <aa@X ,  a@X , , a@X@X , aPa2TIENDB`mkdocs-material-9.6.4/docs/assets/screenshots/search-suggestions.png000066400000000000000000004313571475306445600257560ustar00rootroot00000000000000PNG  IHDR XlXPLTEGpLAAAuuu&Sppptttooo%R%Qiiisssnnnlllmmmfff%P!!!rrrqqqaaa뭭ZZZkkkhhh^^^TTTRkddd]]]FFFJJJCCCWWWAAAMMM"""?RcccPPPeee峳$$$Z^k(((<<FKNRST[de]G IDATxMVVᔦuR . Yd%d%da'mB|eɺB3_{ɯ^5g$BX , a aBX , ,ThVO[ aa!,BX aa!&a!,@X aE [o!,BX a1?ea!,FXL\ S|Xfb!e!,BX Lbpx2\_ aXXX T,^31D^ aa!,>EXR2)&Έ?XS2/^B[ ?+jL88Rj\ axa;+JBH(uŸo,Di1vY3+GEp]Ei\1-)nA壢"(FOXFA^C T.*BR⤨/rq1PC +UQXcF.2mgl1߰HwEnV1PU~0qEzl1baqXVB<0ai184+,(?xt]$h]6:$.i1dY}^Ȋڤph94rmMԅ,*pZ`R(jLZ4eE*MQ 4Z%E-tE$+UHC?4ymhZԕ,ٮ(ʊIklZ _+tUh UWo7d^HTbpE-Y?H&>`>E̋t[,芲GE(; koЈE . ӢwY+*"UyI/*"7(܃ʊ@UĚbĔx#fF.mQ 5BWij"PP#HE4-,FAՎ+Y_$X:#VEϡEa+rY #؏Ҵ,VWd">48!q- b63^]H$HIE<.iQU{ӇEIWĶ+"@`FH]tۢ$-Eh.,J"+""Vc$ѶI8,z-XĺbT(+:HD`^tbwnJ}!mQb'+xSdb9E.sxZtS!]WDb*:QJGPTE`lHEal+ b?*Iq`񆮌p]tڢ,-Jm}Y4ɮ8IwE +"2R$E,NJˢ8d"خY^S$z"TvF(/:q3jb-YNfְ"04E((Xa# .cY4yE]W|O{&3EaqHvZ"vqōCy70eNXbr^\Ŕa`Q,;y󊽬8=x@ϟNi1af0bקś¢oWTsjX\^*nY+XzjҰH,Xlm?vŇt|}ᰧʟf}UY",u5"w[y9h8,̢,Fժ',vb"Tz^+Rakʟ,Jf[^'~&o5BYTE~`銫v]ߧʟ]ˢeu4?")px*8-Y6,]5} i̢,j, MڋPc}ں8@ЖҨ\"q&8IMLS0d"ebTBLdHkPq3mn,n_s@b}N=动^>o{NQट6.,+Y,F4X`s@b]Ō 5>§` un;W[ř9 s@b^YR+Y4Xu6B)a{^[s@6d!, |V,Ť犤^A CBIf(d1`eWt_e F+[Β/d5Cjd"_mwŲ5X0 r,dd1`u]r|+l/fV,拓dQHŴJK^e  bKY$Pf 5F0OX(P\d}ޚڒOE0cլe`qk>)+Y8e1`QS`lB-ws=XFo}9 ` ҘEVہ +zE7X8^Yω&0vEVb\E\l[K;;ԿtkN % f(SboNnݰ0,F9`T,~f~SA%d1jr,oYK,\Pz,xnOޟ~}5Xؓ*`Qp"F(9W[,PI(u"`a.X ,F(-W,2’,fdCabtVNX,`^rrpTYrtBT P&X°*6,ѧ,i(*X+X(P++uz7YhPcjbBJ#  K"X,2"Y8K[ c#T}oh*[/X Y` f(}lQ"`1%Xf} rx[LIJb)b k'`5B,r"kq,PC=Xhf i XeE,J, ƷnZ0wBW PvykvP敳P eB3悅,v @`,f(cbF+YHC c Q v[𷺛6C%R" OlPC fN(wBj"X傅^B)X;`!n"*XH+nx[|5nPY" ,L5!o NYqto sa~;] .YGR',P.XH*`Q:b,Y` Yɢn(Y,~,}pXG,o ߞda8k B$XW,`wͪ{@0| J) q㬫J b"` *XtsEK{/ԈŴi'Ԍo"j"XX ZE W1텲ޞ] #4a X\ YeECƷ,&E no:ӣQb*+H^"9TǷ=z |b`'TZXn T8W9^i i">d)Y{&!Z8b!HFw|!A >oP`,vm픅>d1`Xa|tV{Ѓb38ږoIC,\DȯG,Vh Xb" |U Y<% +PF/W,P\A *,EC*dR(>'tB%b[ [ 𷶖,^8Xl/Y8O,XXnX;Jh,`M@UŢ~{;`, XbJ,@b&Poo(CJn|Ŭ8mY6nୁ ,0`AbM e^8+Lo,zx$ y, =P|||yөeW?/ ,քP٢!,X< 1[&Xn#x' ,¿}lz_OoZ]E+._LN/~" ֆ,A%XhY'Ԏ8b^  @c?[/>?`q )X^r7dH{!4mŤ_G,P/@%E~dhcEKk^xi@rE O=,\b2`Q3lv{V: ibo"XR  ȫ2d|?}iJ֟,L"8/U,{kffk򉼐mbyK:vB,@K8GE*b6T,Z B@noۦCK`!,XxJ+/ e"XF,>Eԟ|B_wt_7ǝy'N'WN}}Z77Esey6DH`H>UbIЬ B0Xj"Pe p+ k@Zh*)8fHlX7ȼCp]γ;ry3'XDP_0%(ӤlCj 屡$ZAKնj򠲪G.hR q]J>a0N,.|ĭ|&5VM0;{}'.JżP|,Ib~`[m5"~P,8qd{bJqgYHJʦWB\p2PI(CսQ D-UD9"dK*HSVrx˳i֊-+QH-V1\Kx0\@: ,=X [m.ŰŌmb>s6cE#gųoz{38qd`lydᴖv vB(',3~pX T⪴X$ȏD稢${gXD O-bȖEr-ŘO80E(H^#/s)2,(C8ք C%lB5 (+P3L+r`1cՅRI󲷭FW>E~'f,T 8W)و,7X|7,ޝN9C'N,:@ XJ+\J\g4Xl_9k`! XcWfN$4Xd U>Xe}/E0U7E(RT&Tcp\`AD~3k!HiFc합=ŔZ`Arm9} y{Hj0 sDӊI: }v", u/ u`XٛVmbqvv*r3i}`h\%6=>G\x 8q("dM!-4O"Ebi(?. W$hDWtaNPB ӈ( ,"3!)jV(,vۣ,ۿdof?F`ar׺X>m A6~"24: ,Rt`"W ,$W_<{م:w'NNLy1vb `NȂ[I0:`h(`W>2_&Ga1כZJVj 2"7^u/ȁ|8d'B] 1Qm+,S,NcAW) 0_ݫp̼GYnAȏQW{`,h0,Dԫ.+ ĉ Fb`]Ȃpu ~W9W8 `1l !%<P*S[`Q Bzy,vXL%Y(j썣϶ŝQ0R,N,P,],֌j3XDI\]n`QpSwaww'u5YZNWY\xrPH4M Okӕz ռǂc)v&zMT%]t"1pFU0 7 jJx,N`qgX|v`bCY `qwUtXQXPDo,StP%e`HԫȲ,xR}xb^9OY\M01ś_qhɈ@!Y`:G Q }hEu;tuXAS:ԲŚ.2F g|*Jb ,vPN2YÁ6L'! aԇeEYSGS=X ocN!1˰#F 0f,Te,Lkz\`H¯ .hC- Cbޭ[eX0Xع2y,]PgAMwA"+ YϊuIE]bqߞ>{ß0OOEӍRA,d жBctn5bbf~C ddcQO‰'Ls``ar5;M}m 6: Y3 L¾TeipBdKp , o{LPC*\Llf Dg|i2\1?Og\yG$&,vX,FB`q_~,m,6(ԙX@6UmVFf+ʙ`aN"x U/Ij<,8d=X$Z +s\˞\*[)z~fLC({vR^\O ZuxŃ7U<},./^u{bvחOzy :ql8X$vPd 6N$zml|g y}|ln+4=/ZfЉ,TYQ8b?tQ}@+UJ8,8\4vyԽf4P v{%{gĕq[[J%ZW| ,Fڕ6-0U9!Icp:˺ "7Ve{ϙ3N2d|9$;qɲgK$.RO?5\zca&9[U:b|4 _D(˱HDє9J;d`\є\A{fڴ +| W\ld`Y bUJ!`qB: ȱpag1<Gq#y"}-)XV[%('α%ocDPT QRSnYlpRhw—:Ig(}c>ERt2$?%B,]@/ѫeviœt} t<F=rW ccdvu#kƬ 0DW1d بU2sBl=3mY +W&! Bۛ'l|7X|pAՊ;,o 7s%8H`a_q,,8KPm s+#՜^v;Mގϗ Xq.ژx 8furyDX 7_ u >m*`QĤܲ-%oдHlo`rte1P!-q'!DSR,䁽0 <| ,WxIg Ŝ,㿁 ##31x mT  cA"Q_S,/U\Sv̴i;d'W,+BBkW,s{# {`载vEjjV,f9̦`ę̡GЫX(9E"y[F Ŭ\`ac̰FYHNł2-L2MZ ( Ooə|\?;whP=VXdb Hp2Y99 p_è<HzScF%!z+aXP]"FD^_Mۡ ~h{Eod\>] {CVo3Vo`!X(B}W2Y< `Q~4I~6`R4-7X4;BmV ziSr 9wN|Ił4ۧ(,oZE`Չ[=m,q#CC+kܢm*et7DbT.7 qWq Yɡ ,j),`ԀiF`1g~UjX0Hcdes6m,vjWI^Q^}r℺,RBi*CQ/X8'98,O׆bA]HU{EԠwNHEn݊{q}-m ,OL$\1< K?y%u7g.^FIE+Įë]`*)FG& uØ'dp.H , u bIJ1mt( Dn6m;e.X 6x]*[ eZ}E `F,zAօCXdhjK)D&mD [h/1WT}GPZX2m>W}ٌX;m,b, `a XT2iY X|I %> $ՎU#U*Q\?0VRzԠwP$?R(u)P(r,'i $i? $~q !O[."pPq07X@X{{Xw)]ZFU*-^!5Xbm!ʚnM7xrYobq串! Qm,kcZp]9˂CXg[3, n,EI)!OT,<`xChf-P.˝uv7FCq,= 5`O6X K$ dA9ɋ(ۇs=ͮ>ydȾkMA ក #\#^\Q,[r>:l{s_n}FzG{>t`! X"hUQfnySr;n()ju V/ }EN:EEoB}vΣve-ܲ#3qt`x9!!nA_o͢JQW= ؎f\$+`qxBȧRA? >%BY՛-Bar,$FT hlЦMA'sĖeo݃+,7?bWL-b!ߩOOX+6@X& b敷[Dgm]ko1NRUEEVUP:{ dM(o;Pm.D/n֠A"MMT'zDN/^ {9Xt"/`y*?{gq )hPA!\(0jD%Ҫi@UVԺefne劻W]x//`t^wg++Q?8␜Y*6g~^ F{6'aXѵ"9Ҭ#]L"MV`y&xZQ5w_!0W'B! k"qP6MO=-G, X]>h+˃d#J,y)`qn"jc1`qX{)Pe9-"c9~)>AE#/ ǂDɓ7V -¡C.O7XXm+[|>}XBC,H;onb]R~дojz~ya{ݴ@_0iTxL;\,4Qz%xCvy;9ҫӧcjXAk mW˨wfX,W @dQXdg_!S\' ;,˃fy~.kX`n[bri3`BٳhL vF,#Zm* QY`!rc`!om,.M _A>i- Xq#O-7z:4Ufuh$3˱o]}xmz-AE'8$͂:}at)K1(L ;)|{}U;t FVw^-jw7bʣN7vYo=ִ߽~p[`KwF$GWAsAc;]\8Ӕb^6%Kwsff#@g+Ey`!{|X oۓqhAR<ȑ_E Ua&,,1y45䁅|d6E_#XX$BZo3`8RPЂ-i05Ţ̝ /&0`:/$SX]HU/wE'27H.' ?`ߊL(Y,MebM~}=E{eNޞZ̺ØDѽeed#RFߊb zq[akMy;5l;]mHƅ+ E`\8dExQ TG B. ieU]rAXx(1V(2Kz:B :cSW4x{ tk ܎!a=wϊ~53Z=o^^uIvVoYf:o{U>=ES8l% J>gWk,?{L,I?- 7Og[)E9_ųc:[/i+n,*A_RR_i},%7"z!YڢJ97,mRr ':%uوEe>EJXT% lj-!EH-:ܱhF6Y84QpP!9{{GB#u6& ?d,[XZTk۟f`q~"-6y e)\;ն]Qұ#e%K maE Jg%<3|eNc;'Rgg-_,6^5cs*O0;mͦ|_j.) <ؘU{ 44Y~^(Y~] LB:H0іD*z1K, 32)< :pZm8ҝc1%1 9`qE 3Y Abt^4@1H yZ%ESހx1H! Ì =)}Uq֡`Wc1v`a:Xx1ʕ++,hg],aX`Q8 `d^#iw3F@ h`qTPbW"_u\ 2` ZJT%?XHc`q8:,Rñ X|L"-LXVXM@h$a7^Îv*,(Z2Y R,N\Dƌ4葼o# EeyxHե0<e>MCE^K=gLO`B ,ug+N,h,b|+ + ,n ,Βvy*,n\QXDdo%bNeגSq2J"s##یdc`fN7Av"8JCć=!o-k3KF-H<ς@ű9ݘ}WΗ# TX(,Y8^' űs¾QZ2YdH.&8(4-H`Aq4|]VY`޾YHPoXul ,_11`@2Sp +zѨ0:Y RT%6|_+J H5YXHw@Ezx抏DX Qb`@'"ˢou/9ɰ ՗!c E2U ڲAу:*TfF-*,uDU(O,.+EEz#Bc cq4`Q@Z`q-@" կVqF7Qz.+g$oS0N7ڔ\ )e ˈC0Xs,&,MX,@ $6\!{_Q5G떃g%a1^'P U_%f8SLzWGHqc^z(uXiX,,c(X@ IEMt=E̯[1"ЃLnEmCω5T;%c$' q}:<,ΒcqntCMXM`@'ڨ,b~r*cpxT :ҝXHTcYch:B r, u  t`1*dA<beP xx[r,>4\E E3Z43ٱ?᭷',.p4\;=-.⊹9؅@XP6`hBŻw,X@ PY`X?{gӚH`aaX&K q@Bӈąj0Fj!(,/Qetb/fXS,~X o[XYRQe IDATaX,T,۟0 z7^XRXRyŧu ʼnZ,b @BbRbxf @b"hP,"?ix;+{bǴXB!u Ge t=Bf/Mg",X@, bF,2j'I,H}/de ,Wf~5o3BEsjۘP,(QfZ,j^<)fŢyㆳP,(Q L'5W B^aŢišV VnV+rZ,&Y|&Yłb`W B)B› X"b3 XLX-f7nܸ=`r5I@K" X`1zfq-Id2J*ZrcP,P,(b1b xRXV ^,[u x99+Mv Xs@0Z"@X b/'+0.xPh Błb=rmJ,LP,Ek\#( oIs X|#Yłb? XF.Q (K')4bqu&5gscXC,`ş/XI% "( o&|xOXb*P,(#0 {[,0 XP,g4X|b[̹X\ Yłb`1[,`^8N  @jy11b ҈XXP,bAP,m>cXP,(s" :y(cshZlH(H@bXłbʈEsb1p`:}}w #XP,(//u",: rcq}bіXuWŵPP,(Q^B $7'SVFDʏSٺO,šT^ M( %.Vc8Ξșyظx!WψP,(߽X|~b1jb0Pb(٣L_yxx8vÏA}R \wCꮕrr{X䷦8tqjV~Jz^*;;^8ꓧbWrӆ\{gyǙw|zYX/jsq۲_ڍZbXłbX<|J[vp,^ҽ9}~T޷#FΊšY nG_\߉'湶Ǻ#K_d||_艅k?6G_+{kfW<LϪ$>/ZNr bXłbX<WRX j'Rʣ$t n;e3_/t:5\E!v&rqinyU#5հ߈ŎN' zmY]tLz}ۿM_8hJ%t %F3ʍUi3@,Xd bҝΠ%?XuF u..R&@48] S#;ʬILi:Ӥ}EJx EW&:N\VX2rԇSr`̥gAeRA,n:ӖLۓD1bƢe?/2Ţ_wW" 4ZqWhx~b_X(basimzzP̈҃oܯ{;]Ţ=-5XحlŞ']c˃S4*bULq1JüƜZH,&ӅbX B'Xf_Yo_bqY3 3n X`AbĊOT*[_!׷9Y>ʮŢAhj #YuBb1{dq6Sk2bqÙvL<1R;a_,%ucX 4KK* @,(-9 -s(+9$sX$O ʈEv߳vO$&!bQ)_ṉH1@, XP,g\Z|X\Te-aj1<\, BbsX|^LIyX4$>*zܡr6B P,(3hy#o?O,21OwgB1bTav*ԩ'"խbw+z(XZ@X O/bq/{"Mz^Ycᅏry!b1 EY!@O8No"y]bq }bIPłb݋ˈLU/I<@juvOߦW_J|!bq.+v#D =;+Ȋм4бb}LX4sĂN@X|bbbIJI7o3[BU/XlIZyB<{X((mUױH KytIm֥3q"&{pM'Rv2b$(Nm] LYd]I~@,bA@,ϹȰ?{6r?p&)9}-@`q)d[,8 rQXÇ\}HYd)V 4DpT|g[6V4z/jV] /P`]d;{cp.XVy$:omoϢ wa_?>>+wC{Do G[oclb$$<}Ez ދ ;xKS}1 5|܊v X|y]tս(zCՏM;CW:H,~x['uw,!z#v9"@,Ă&/$ @,V{o<XXX Wog,CĂX;ۋh?x $$^R~g-xeX\rb@bAb5lBkLOm1<@,H,H,H,tQO)j^zQ3o1Vh  LaXtÎ7U=jUgW?8H1]Ũ}A/hHMnۃ"bâTxu(U styn?v]c1]h7>/ 0'bz:1L4dЉ&CO,T;bQسbjxU3kkt? DX]j/-G&9C,  +Ylj}tRRfnr"ŤУJ-/~)cb15/n+kߡ-#EH6VgcXXXlL,FhyE}-T?m"oTb 7w;GMc[?0EK6_%>/a5 v@,H,H,6*y[* XA ;Xۃ`bNE+T[ɱDŠu }څw}߻aX{Ă]   20ӟXJpd綛uoջJ׶ <&h^fcө XoO8IRDlClۻړm"Yf ĂbbH`Xd۲tB%q5kΤ;<\I,k#9ln6X?zU#maEVk ceF^D2wqmE/S.?mv@,H,H,6MQ,7{V\UzSv_O"4i^~_wfO_`فםdP傡yb' :XX?,]b@bAb (C)b-оX(XXX\zX \,Fa'^!l"Qף#X $$b@bAbX XX XXX bXXX cz8!9ĨmP *-FBQ@ ΤUrA Ҥ!%MkBڐ Κ5鋔<;5kMٿX @bAbXb@bAbX $$b@bAbX XX XXX bXXX b$$ $$b@bAbX $$bXbŮ:v3 $$X#]M,   @,. N,    T@,H,H,n,   @,_,1/e'_3G"YF`@'9b=nk辚ZC;+S $$B,cf2-6j'^<%c2bXXXtX,^)닋n^灈~+Ļꓕ8He/$XXX$hi1<\SxcIĂE+$/^j|K/.׾Ab}~kŒ|X}X7޺t{@EN ~/H,XO  &?|oܑm[ƶ&l"q~lq]۞1vF"`W/X_֍e;7kӶ'Ն-vB5>͸R*goEL$89Ul l% WUnCM,N'&C1[,H,H,hK,FCRϨQ?WR;"XD˺N+..'sSE:DЕ֥Y2Y } }vrTAYlj})¯ *sWPϜ;W,䘡b@bAbX4eCک?JV6fw,wH$'=DyX~ʷewJ,D'b3Nޚ>G^n"@,}QE"}ԠǚBI!{CTyC%"w/odZ,cUZ;2Q:YGi)3@,H,H,:Q,>%[9,jx*2wz%rmI㟡=ΆH2UH3jϹ+[ByxyDN,L#xbXXXtX$&'%;_ta߮X;j,lK*B7Ab(VͮPGnV~4ŕ`WZ 9"9f# |X $$*GNǜ3RCਉ=aD X0`z o[ŲZXlkz uLJr"N,KY{M%>bc,JӳYJO>MIXDEmU잟Vq)ܭ~+/ϩe 7l~cDzwϱ(O='0 wsɖOܽ2ubl$r\.s\@,   N >?m4=[yI=}~A:)suLؼ[[ /K?E -tk˝|N/hxϨM?p<o2[臹X $$E+0;CX=~zK(ٿ_=7Za;jL8!te9-66JK;&1ƴxфdjдE( 2haqԸ+m<83;Ϗ7R<>~jixjx/ Ux&fŷ0KWSZ|T|l;lewj\/*յFiW(âF+>zS^na aSu+߷6L[abav؟H8|*_N +G%Z}c7 Nit[qm_ފa a.>Q_?RX= owIX,,"7Ȼ{^5T÷㏗ ,ba3,&.0A'a XX, ?,bN"?$,a XX,,l?cȲgscW]rv XX,,ť?gn"}ɇCC&'ڟS, xbv訲أ,X,,"tYe ,ba@Xְ8NMX XX,4,bY aXX,gMW XX, XX,@X XX,@X XX,@X ,ba@X a  a  a  X,, a ,baa ,baa ,baaa!,X,, ,X,, ,X,, ,`X ,, `X`X`X@Xb, , _',  XX,@Xb@Xb@X ,  XX,@Xb@Xb@X ,  XX,@Xb@Xb@X ,  XX,@Xb/[X-g(^(66}z9ՓoS"@Xbg+,zs OiDRXw+=c/~?78'X,,p¢֊Zk%N-,^sO, 8KaYdYX{!@Xbg-,BOt^adYuϔ G;Z51blupfk9jz}"zկ?LK˟2|>%|XSJ^nWnO_?Z?>:7Nչ ,ba@XBXl -:Zuk8Y]M^(âLຍ,;{[߆p4/{0~,l(/=X<7)o+?/G{? `X ,NN{VZNH RIaߧNa3FcupX=!,>ŰYcreVYm;筆(5/R(➱^B V"kZ"$J8I8JaKz<}eX{<Qƕw=, ɇEQl(bP4fʅ"$V[얋ECD x5wcU(ņX]k}aq#oOX uwRXژ|5Jr p[;&F< ʲxƭ/8, i-LFxʋW%^X ޕb9 b,|>Jd+邋a%M^{a1"C+Νa "v:>X]?XdJe}#"nᰈOa<ž E+`幰xO#âk'Oaqah6"^8LIS4lb/v׍:LJAX>YZ TLWy\X MOO8,EUI:{X,,xMnzf j\D2,Xl3u;NȰv77h^/wſé^X|^Kv/,,pG]ϲ룡(E|'񷹘f¢Qpc XX,'TNPPk3B .[񅠪Y{"zx[FVʰ gly4gD脩W=媱a X)bKGb0+*%+b]TOXXXbvo~v>mu4=:B'/˯EBB?mNPG7 dui`y 2ק-B8"2b^[7P=b@bAbEo-!Bo;ioH5VTŖ{wt"n;"u/inmВJ":bnBg& `] bڙ˷Cb3 '@,H,H,؇BxÄ7}0Z*DNW"}24h|y޿mBU}W,VJSSJ A׳%v;RU$b >fn}[G"{sOXXXb_}>J&_O뉄Hu$>lHiC7fu3fkBjjΝ];Y]tu%55똽qr?[ĂĂ6WdZ1[՞W)t O>Ϗ{ݏ;RRi, $$84lU'䓜=Ibb,zk&J2:€@,H,H,K-\ N9DbXXX b$$ $$b@bAbX $$bXbbXXX bX @bAbXb@bAbX $$b@bAbX XX XXX bX3gGXXaCb19.饯x`!Q VJEO8kXT-ŖEwS Q1GEQlѿ4ރX>hg-Ų|d<ޤX:8a& ^XWYƇ %rZ<4[aA ҝQ|vܲsS 9ms#j2UFH,6''HgB,h"%zȲ=EM;~Jߦz5>EG RȪ S:3?,]V,Sz`:,ʂSV,#E],EcD6[7qdGiI,H,ʰ=w{m7Sݲfjčp+/9>ʬo*8,UιWܦC?9վ"W˾5uvsh/~׺0gg X ).EiI,H,O47NJ&Eƥ݋ř۵#H?ߟF#Gv.qcE,$$%k.h8&p\7[{ιbQvS+ Fc!Rs:V{zU,;?=hYb}_Z(+93)qW/!bqpX* λN0E};nBwi$IGN XQ|FllbBBtwD IL@xy3bG,:LN,Ygd'YDH]=oL8Ny?{Q;a`S;ޠs#(W G<bϷxwiv-zx;_p=#b9,,B<^sk{ͷtK\禿:H$N$)ŷy@hMc_x5M97Cv*[D2;FsBM%SpwIGk@QӆJDӨfZ٩j(GZU%*d5o^$X識Z*"Ű܎&j8 yZj+qC +p2`2_ī^]7z(4RW"JxV58ώ#>8_٭bNGcN',ҷ'g<ϙsfb20]@/=Y24hiH1b3E Fm:Y51WK.zP ba6P)a*_GgocNαǧs[zƌНOOH!w,>i@a]wbqShKD,lqR(Ns@70bbAGq3|eGڵXL?ވb?p.3XϕO PxeZms"{0p ؒAGYJ#}qsBqmEApUX.g8`dB4ehqD,bm6EJWNe*qH  4Pbt pg](S FNޗS`̂sWytrjXXE0]*#M\Xf&#̊^4ɪZ&7 IDAT9*#ǢFpp0+a*֗{0QOJ4% H0"w&UN,/&.Isy,N* x/f>{Ń'j3eZ^Ob1pX"Xئ"P*zшN'&%,$ǢFpp&fe9Me!3X1%Χ نK.B<'hVl®'Gn9U}{4_m} +okRuU b&uK,&U:b߁XOM)o/D[tbѥĠ%*)5潝@f7]6 x<kUEdühY BYt)ՉEI-Ă[(YȮSrHaQ"x<&$N,ռ,?rduVY7mz'su&ŅB8 .$KC@$x"W8xzGc2j7ц@i/`!B7, hhkfޟҬ D-  5 {L\b&TL-%<|=-i4r拧IJN34(zK jzT(h6rQuvtVDD=ӱH4Z5JNʰ|Y2үt ܳR gݣ+ԖFB'zĪ[:?X8q2.cህS&5I#f{~RJ0nQ@X\W>ҽl+GbqI,`+BC鿬p[y$XT&$bˆj#06O肭qhXm$H)?Xxva'5xL~Ī6<]^ܖPXFdbATҌ J5(bAQw@,mݻd::#dD-潎E OEV~/O{e2Q/bG{K7k `^m`eECs‰p G,|%be<6L2x4)oXQry1cӕK wW Xgs6o{ E<Ă^B,}@aX$7oJް3 =q>7|K)X*&N|>Shd%sl.O_E6b:Q^G CA^QI,;A 6r"smm'd-u,V8|J,R2g{$f[oBh_9bĉX#N8-h(HK#Cc2 (Qb\MX!h bqk~bl@N܉!]չ$Xܰj w+5aI-|^0rZPOie-B,׀Z]EFTR7lg,l8 q*z|})OXBŒL, 4cA[FtŽ0^8k6B,m]d::+vH" CBn>p\?{ƤjJK$'u1Whq‰pUp"[֐)IPvEK> m" 8bWUd6fY, wb1b^X义E/d{ztqz:$ >PbQ,ɻcN/`z{%6!Ք ?WELMUm0b6W#bǘ^>E c1Vұ;X*I`#^<\ J%M6G6Ict謈ۉx"E `}E ωEV拙p|x1:=,bN(XGmt~t+ v‰p 'NJOcj)l0M$z0[C r&Ǫzi=q ks_Ή5Kp_bq4K)X9x @ߞBe9E=#ƘDbu.bA/89) b <魣xeCbŘe,XJ#Yv\N )X5X^LVHhM`%x#lQPf7*##6#L@" EIct謈ۉxbCK7PѾc^n3ȼYVPc5Ms,zo-Xs99jF,sUfQ'.c2N|bNDGNXaqKtn3X xoЎ:!A, guG^xjBx]Qbz~k7X;ozD`{lpo= Xb(H08nbu>bA.W53}v}y [f(L` >q_t2cP5'3]K[]REbjZL'3]Cj wn yŻD1(ٸ,Húg\^X< R ĂxDb\?ω+3$o#`M"n' [ / yD# j5l:+a+Mz8_cgX5 = VVjM&jKz'.c2N|bU.;!?y Ͽ9| ʢWad,a›\;klpy"N`}X4k,ؠۏt/J֧HM԰ W=]a<5bu>bA.k,Ȟ~ *puc;.[M{2\6XdkV[, 056zNX"2nl(~ kyWX ,->O7KT⤩դ<'o[A,cOMK`BvNum嘸y'vtfDD=akFQlĂj$6NDh9+a+qK_X«9o1-O'$OpWTb1RٕX8q2.cɗ p#ZmUqPUdk^ w)]\xn~z7X8ý!+"_`{J,< ಝcw`ɠV5 A ^{H ƮM X7&t NW QRQGƆB}1,^B~ICF^em}rD,m+ 奬oqY&++Z"mC%80L`c|OAlX0Ic40d;Yf--C Q8hWh9+a+s|W^<{c1mهAU?爅'.c2N| bULB1>Ɠo%+\f;.;AA}[ܱA6Vp}:( ESioܨ^f!7Hr|.X^-I&s{f~4ϟ- fn$7xn/f>AQ=f dl7 Md|4G',NvOlq8^5ߟ*?+X8q p 'X8)pw!N^|, /'Cu=(X8q p 'X8';k{gۛ6#Sw=JvKOCN=ŭv($hyIi EJ%TEB?D3166N y)/0y߷qهXB8]); ϩL_l7T,P[]p5٠smن-9 QBY *{O1 ccP@ Yk`,lHh+"7,A/V' P@XX,O=R{$e?. XT,P@X T, P@  T,cP@ cT,P`,@ `,T,P@ T, P@  T, P@ 0 T,P0`,@ `,T,P`Ś䟫ݺT\ל$)gP$)c<>uIl@JlZ=Z\A0]B|9O-ϥxK5%-=< P@X\Q@u/Sy(v ҬM;)\8kޱ2i5Ys6ӡG ##1Pb7Yzv~9 ^OX4W;< P@oXq=∟X;1;V&Uؼ6g)œcmlB*O?2ޖ?\y,d,zXHT &E0Bb26۵Jo?y>2]Wjc,3 Dca|jO"5ڛ'2cr(?tب0Ժ'qO_0n$~ϢK7c1{,Dc*X,¯='Bxg:o+bѱ]|xp@/e,4dc2k%Jx-l閦^]"WZ殑(DTFq (Зya,hGc25؜PSU[j&օ_)ƂQ> tQirR7VU&j4e3l05]M4(o>UW5K[*"mc#oXpj^4 z'L(Jc+a9NPؑ:Nf?&oeE= 6Vv.)lkWp\j';ƒ Ⱥ.sMM:V ~YqXCd/e6#ƢN4̞Kb٢c n,蠬4薒PX-{┷͒ϵ|L@X`՜7B%H=9D;.졞 jDNl]OmˈH:/P37( LWuM"[t1aMMcaQwS%ߛFr=[g_OXOX<8 T,P༒wo-n)tcNhWO֛{ԓ>B;Mm톶H)$ۡ\[q>eK*u {㑱;B7 y{a,6>m[ߋѳ=zscq903n[bD%].a:.("B8bZē9g,\Q̹*dN5 uubo`~[]ֈ )r%&BX ;vXAC^0{g,M~'EpoSƢ.<ؙ3#`0vYSg^ۜ&W 1ުSN!& zzƂZ scg ?%?{g΅ED[RBPڤ! АBIh* E z$|[|*!Y6l rtifL ŻlBr|"0jeyfc)?lb$XLqN,=X{32?#aZƍ8Wk9(sf;cfuCMHx!8uWMD ɴ O)6'u}ǘvY)|t,M!׮VT?RWSZ{,bE@gBx,N7I1;ŃckibF\Iq,Mi/Sfia[.H%,JVU16 ~#.E 4E*-~O֒U(.`}?N'`"Fhc,~j35䫼XH=i,{Z­OHp" >+#*Xh5=EE{{OP'拠D"~EPX00XD xw2ڗ:X$Z`'2gX(u/&S0JoZxc^[.vf.;X78Mm'l&Lb, ; MށP#^`t`3v\:sknb$X[<Z!a#~'Nx#X^be҉넜߶N|``aK'wT|υ>NS*V)} ^_as,/B.9R*f[z5N"X \ݧtWC\Z|vA>Y"_ʒq5WfK.,PM{v(}4CofK4]~tci^%ߧi)$5}9uϏpqO`1$E+`"dq$PK88IW]]G $'LXDGs;fXjH5 'ZcuX0~S.)-.$XHofe. j,b_*qvHJ\#-{Pz%V :XWdza0 d %[,?r{Q4b0|pm;KnЌApjg4 IDATl{$R'7 ː܂ IjP+{Fc}cjbjŠeR{&;%efJ ˉ(a`t{ %XXl2'?JiO vקφWt1=7X3~6Mc{,b.`1ަx= HSdV|s/E,J=̒ rB+uZx.j CZal:.vҕxg_Ֆ'ݥ?~}_Vٺ GFse iͼy`*"8IFEff,b,*+g,6t5\hGXd.]זm`Xd*A }9q3,rnoB cHj -Zt|!UyǪI[':ajXS8oX',.n̦`/ Vǥc5Vݲ}ޠXo߄Lsp߀jGrk*c.`tsډ ,,s4$ȥG8g{{*1ZM69PLK? 4zYyIKq="Xg5P(TJl\%(R7Z>\>XQB.-'OZ rq[Lfv(Ni14`R:Eӫ1X&h`pJA,*oTM)=ɥ&E`qCS]`9zf,b3YE},~hgBd}|G {/|XDm;Yclj {L*טg?ABƐZRdy9$)~6z#4 k05*4ġP2s'f 5 RLg < mȸAձ~Kd5,ZExAe{mc3XX;Ex~^阘9 s ~:N[ͨB tӘzq="XDŮTm%jdXXogIƝ {,B+ 72sԷל9(~.z*=N'XX ||EJLcP;]2$i"N0,_PuEX]VLsz; )+!}'*"oۭPU ڄ1 2_w xacHuo (3<8t`~D¦IBgXq`*ک:w lXlxE,,[r{7(@ޠXo#跖J̢nXYت X|#3X;*,Ff=sœ~`apux8&a1J))X PBD?3t:m :E(Wci?HP&4%j6:%eW =ŎT Xdz{6.xT,a2cխs'f'2548bϒ9~/٨?QWzއ܏P1.q_Y#;XA;-w_ǿZ['+yn#XX;Ex}œ~b!Ej``2C1X)X [zN]R=%Z|*<cOjJ&?,4LCƢbSXi ,y:dTsi#g:AZJKODC/)f $P ئPQ!jUVU?og.){]{ܶŕe9P;LZ9zd;f83.H[Y䨘Q}V|PX(^jP0\Xx8- OF+锓JU9S܍,vr>vrMXAwaq DV+Wv&v3ZMWƄYrAT&qY~1 ,5NYc wO 4Za|\q7\I;3i_mx#f$Xxh{򧿸ZKD EXt0g+:CX{{C1X~} p5e:#ؒix\l{Z? k'TXRae]Z޲Rnw}S1kݱVܛRz}Kƪoe]vyhT>/h7+QDW4z5O}S/"O4|4ޚL$9%39809:ծg=JkqLL0eG{Νv^ [G2?tD%U_zۨ7nyZ?OӸDyF$F~.S 58W|~Sш?N[squ"G۳sz6ua1`9tcWXsgRp,p,‘Om7rwZ7>1gYXPǭԓ)0Sܳ!"6e'2-{3SڻjY 5g+7e-b;܌[/sa6C;~ Eן.DZ]U;DͰZJgzIY \ g/ `}kN{w9~R1"hk,R8NT ҂>(Ž e+).u3x\Ėj{Ą.ng[ 3UÄRN:.gef뵥&ĭ9':g*Ž /s^ )5[ůIZJ9Z-?܍㒲}Ԣ:ھI7ц0_)GkN_*=ǺS[ c hǔz鏋'ꁶj6B@ۗ30RճVPB\VaƗw?_P%woQso8|\u;# ߇=5Q88- GNkBr^^G91=/B<8:ԧ-aavcqs'Scw/ww>a!TlM 8[#-{uѷGX*60i!cq#=gH/:YX> 0ɞ-^3Z{syyY_d*TڊKWӍy"ni6wo'4 1` +ś4U-,fTWf&"pnуZۉ{6:N$]y;i 7ubi0S5גtcc+"n-󏖵a4EDmV!a4Epslyik٥w88 accXXX88 accXXX88 accXXX88 accXXX88 accXXX88 accXXX88 ;Ľ.ӅD1$(!x бmn #&d0n N!AݽG[J[3Ya  c5_1D0" `lIVߣCp,XOl"/ ,T i]X@5X !{Y/ľe(*c]ԱH=X$,zCڪTސ22f+y hUIX+nO<W&-{p#V&&Q|pDo@GD% AꂅʗlR\@<pU̴*p, 8p,A69j$+`& X, [MbG. 8kST,fU*tXjF  ǟ{T{X, V,"Q"ś_!8p,V^U_!BQbfMKڱrޕ,ǻ+аHG,t8AdFc];ζ@jF:pm pͬZ}+暎(%9X, V,Nǽq,,fӎ-^Ş-I^q7 <皖)®3Ϸ=cbœιvCM SYjkɢTUcbŕ.B;{HR%uWq乻B`aK$8'ڊrc13h8cᐑt?FiMzE^$,A+Is+`EX`1[XBL͊RÇS(slz` ZTS%?lbJg]^Tb\OPnW>w c`B@#`[?]BNޓ(d?cEpU^MŕA>MD-X<@`\mK/%|,fS:K{1C$n3whqܭP>Xh~7c,.uDE,#|JmAʂ[3&Yߗ 5)--b j xcb=U.Smqy菟JE$jcQhb/M2՚-w9`K H݁ #BeMGKE\ X̖f xuXcnW>D"iyw+O978izS2 -/ Ǣ,8:j̝xWǢ逸w{ T(`,zmA-W_s,u rg~OPk,XX'oہllX}dXD; X۔, gуIZ#}|Q]mA+,sZq1'8s`ź/FOGyhyE$jc1]*,kVSb^Wy.^Odׇ! h bW=ȢNEt<* ՟Nu 8{/M/5X4Y+65g؉GnHn zA[n1`0igWmI`'7bdbV`iԟox0 7|c4ƓyjLd0p&%]WS#<(Q[>>:CAW +͕[~2rVg«KEt^ߓL,0'H3œGep,X<=xP!HD#gfEEQLj"5M8D-8f 31ζ{FJY/l[|.Xgc}4s{/-mWϼQAzo48vOCv='b_ 폟't#i( ~"O6ǿ "B8J8De8 苀jڭfXxUq)+^q ͹=VG׌cbEi 79~S"͏KPjaaĀ[`X2XbBL!e IDATUWͯSܝyK,{V.U{g}Q,w/nM!Ȉ*?v*2ϱf ' {e@`!.+[OuV~ z&XX;SwO2{ӪXDJgNT\4'дBM;F=HIAQ$6tFjY$Zt7 Y?@$^ yRimc? 2'ʞ':Բş_i-$צ}z9Ul%KSG_OOg%/&Xb FU|fcf H,H,OU=ZE|`?ATA 6kO-65hbqk-1uTYKpɈkX4b18{g̓(nM]y`ŢuF$z!'7kxT5nX.UPr<2_:+eW @,H,H,~'wwru!k[E+9w4&]>htux0  F{X. -k釠+b @,H,H,~/ՂRZ`ŢE6ǛX Vj;̅CQ-(v⺽i7=C /1XY[4b@bAb[YVj;̸Xt >X<-tB>xZ+j.<A_ QbR'n.o:Xϵ;WvmH,nd $$XXxO'*jVu0/ Wp]v"OB>X6ChRtQoM{Υ=^ʞG` o$r,>'pͮ׏=3CVhӉ p]Ҥ9s 5qBm֕εN貣n7Zfvf o"_;޽Bmp5ZMP,Vu9F6[ BA;yUkxBё?{s{ @QgfCb18 $$XX\䆸-*‰Ŝ>6RMf>\}v^ycp8X|wO,\q) RRϺ4*~t]wۭjټ+ &o/hy&|}=M7v,$32#\Qeg!b@bAb[j d8.U16̓QO]b$$$XLFS#Y+ xX_^UKD O> UR , Buo-b@bAbbXXX bX @bAbXb@bAbX $$b@bAbX XX XXX bXXX b$$ $$b@bAbX $$bXuQ^|F:yM!fa}ҿUkk ʧݲ\ 8Ż/,ݥLE_ZXX|H.J^,b%KbX /cӱ;%H2PI,H,>W8L%2E!rO,2'+PG3Xb\8??B{yPpgH,H,>" 뎵(%^-/p xeQ^/ⲈϞXe*4{+V*{(Sۇbؓ?拈_Hqf_BMc/XL,zS/6],֦Wt" !D9!Z)Xl9U/|eG,~jwJ~p'VNHZY櫛]'E'JSBN3yՕbq!{.ݬJ_ʮo-mԉjygl}˯t=/ʵbT,BlյXM(Ӽ"krbw*uRV㒿E^v'KpWrʵջGƩE7B/l.y㾿a:ۯy|Xtx  !I,NfJ/b'=sl(;fwH<<jb?of'I!:=t2b;SVu[Ց]jYOUe3!)tc3ާX;e3ynWe>oj,n̥l-&Xrxo7!ͦ(gbXł\5c1G,*{,zHVͶ  ̝F` $:Ouq^ha \J,*7H,ѫiJXX]^sBE`Xg$J /^[$ czt)cNU(Pd\R =J;yH,dFer$ٖ!&K ȌXv9f2(RVla^|-EE?6W,2[O,,>5ݴXT 'b+k~Ƣ{ bS̲)JErbW OXR" ʶfu[X;|#W,0 @bԓ>׳=u}vXdXL`Z~by}8#&: +C')\bq<׻%`ODے0-fuYV>1-sV1TFE T$&H,X,X(/ZS1Nw݋d 7G,2[aM>Q8X4mKw{vգ$v#)o2gc{mp=E} bq@U FgǕpɅx9 EcX\"hDJb6o*{ߠeQW'(dJFbqg`lFƧ/%@=]+:{Z\3c{R5[zf s+=a9G, qL>e!]K2Sq<Y38]ǔSk~C,,XX]a Uw:VlJV@ɲ[biHMWu.a+oOU8M8g PS6+HZ^՚ymq9yban5J$\S#S2 <ڍntbQ!<7u%{DՁ^wQ& ) oˉ;l|؎j穧'baf[n$wM[eYJ*vUUEMn+>L[j*wqZyx^ _;/;p&{XSڹ n_fU2 ia;adĂ4'WG=9^ݱ\u%HO<(֔W8ofC,~!PV+i$l>RwbnMBVE.,bAd'呪(Ĩۺޗ߳rRSbAlyش}V퀐qW#@bLU +sj1?yí,p*H5Z9ZZ⼳qBMwժ1l*[3qR:RdxbϩdC!W^S]VnV{Ǟw󳺆^ $t5wmuT˝nn!T,~߲l!>r}"$H, EdVwٹeڡ55Q^7@,NCeX @bqk8uۭuaQoOG@?iMO Fjs/|'SH,X, rB)9eC[5/T_Dkmѓa X|*[:کG۳Z q'[ ~kn4ޓXkUY{;7 $H,}bfkWH,XMu^s0 XXD,^@,@b[Ōa X  @b  @,@b@,n/ j  @b2u8߾43z2H,XDbq lyŐ  @b2f!"$z}wѫ}^d X `Jb=/UJ/Ba`AuIg. cAXh=d'(}%.煗s-"uJ؏;qOJF??Rz  cA{Fuj>מRQ0sMZD^p*&QoLR,ކ `Ap,X@lqya`kRK~Jc+/^~3X)HX@ 8p, hxӻ(`[cqJi=h$`㢳/`2 cAS mф`$Գ:DhZ,n,  >{~4X~d#O|&Gf,  8:V<,`^d^,޺n& cASD`΂L".v)Xz\X@ 8p, hJ⚟x&р,^9it:U`c}-NX@ 8p, Rpd"Xhk]J{/;{~eQi X<0iԞ7oC 8p,IҼMU+7!ZD.!|9O^3>"`qZ痯Eh g|6gJ[o/> >jySA [Y'z B2a)z%f6Bp,XA1XtHuFO3G`n`{gɗQtĄ;qG}/|:aJc8XO 5AKݺK9X쨥`6lfY҉{{Hr1`1,"!a{=" ]o-uO,bgc" ڇUZ:Doy*Skhu9*X I9F,Pϭ& !;Jk+z'ڱi,P&O߾X6ZTuӉd5CԒ9;K5M첦ѪZg3Y!4W(4Xt(XlT UOڶYǹFN#@?X*-uˮ<̳fjdR}MyI-^b| ,rUCnGS]YXKMղ'6d/,)y$[4*S6yK׭xl ܨeq= YQ{}G8X&Dt 8;%q,҂X YbD&VJI'W(+*WőEZL 93sW,a+50E.i!c 4P.a:>Oc: 9"T_G qK~ܛ}8zt6:QJɛׁ hbM%f`Dߟ63rW2UY92+3d%)傅/%;ןlYyod\l jF/Y@p,X̊<XX)OvXTc軙)ZU5p2k3<> RS=B,%aǥ@m?Xd(jDGf,P=4[,^dXxî1B; J!YyF'z IDAT֏d%cO,X(YvW@4w`yJc#r)O5XZJ /,|)Y&@ Q?XBZayRF= Y2`S΄d]feQh!3z,-!,fU1hy'jDKJ[*UQĺFUhgi=D U/ TEÌ-b k? c=KE,{'@4`ewP m2Hʤ𦼄AJlH_}dl Ө,XDvw#w #{ 8Җ)>PcTE s"O6=LH),]ƛ""pϻZ}eǮ=X x1F5p,'zEUKmX\;U=k՝Yc_=GOQt hn"6+RY0mft{\LcSVH_}d|6F`s2qB`ῑ+ #{ 83 Mcnz߆Ύ^ԼC3ժRjбVRWqz`c#|N!?=MSdƄTa`L# c1gc1+|N,2!QZXp]Q`1Pjc#)g#157Lu߳#HLX- ;T&IHd>not OoH?@!$K h@ mZ z+Ym%`:=n?64$!s`b]oE, ~tL;W,{PMEtH۽baNI,vĂS4ڏi(bw] ^zEĢ"2iGb1_o&Qb1_'͉o!tvzN/gǘwg', 7"~j棒`-ĥPn| uX kNL,oǏGHEWeer}bjbS%ZT8l޿kwA{qYf?Fb,auQ]=sI:_ W w<ߺ Y6g2bUS"Yl,NFNI,vĂ]߈|H22yX+Ejzb XOm`}HI4Zwh`)n>WLLx1V%&a'a>ޜl^[,j=Mxmo(td+J|Jbk$$Z(;XbF ` OHmr'Ŧ"߃K&XYnE[~qV :;$>FK>E LE#Umblxu>ε+$ʦ-v1;-qX$~0v~C,K,vĂp*yxר{w?̭r֧ۗv4ҀnⴏVgB.w!~w͋Fg·SOD&RԸWwWcF@bAbqnD:oS-(gORA,>XN?؆E/6 `Kxi_C, 3jwbx#Sf[ 8kXUKjbk<|U>7XXY_^,>d% HU0je{vE+E,\,~P_A,>d% HVb A2«AZ[~l8oQ~ĂĂ"-vpBޖQx"3W 0 "a#,*a-bj@_,j6xןů_ ?{bY k uNŻ% vL$cKqF:~`ͥy4KS{6RUs':z[rF5ll68sS/w׆IYw}Uٳfqoh|ؒetgz[Zɝ;HK+C%xsbvIbNTe CGk+#Ȫ*l+u r-MP5|To]ؼ;qϘ;S$$N]80 y?O󻣇ip똝"x6`/WJ,r?7SÍ#Eៃnlhml3Ƈ7 \[6Z;eFV?!sC%xsbvk}xax5OWfxӷY"ͰbXӠޚnm~1 $$ 5A\ߕM FY|l4^4k®kX=ҺV*[b!FUOyY K%՜hBRO<67->@ҭmj!Qj~ MQ$! G !`B$cr7gfv~1L9F33sgxA#PWK eXD 7%tg?|>-"SS鶧bp d+Nb%%i4G'#{:*kWQV-PTosDG_6#X؛1@_ X`bdl@55lnKR VI>r,Z`+|ZSXlgRT,Mʴ0\#P% .>%7 ]5[a袪؎Z&j}?%^qʢ,jqz[l ~!.PPP~%Xd>b$NJ,vRed0M|suuoVsl/3F,0b1 >JFxQкꕍ-,b {滃hIVhox F0xj39 ƄXU`i4Yg#X N(.I WA@AA`wC|[cosf,}(0R P:L5ޟq`H ,!dX+ d <ѢQh 6"*nٳ2c?CN(O\A9'/wrAw^ ΊBRo漫X|=:>9CXzB٩g"<1u~>5OL_ݕ&o?.L^\`-Y}7+LWxWS(((7 =|!YV0Q4`G_%ZzW5{:~yHr[gL-C`Q0U`6`1Whʛ{5r؋>,q,E I:w+}"@*5תQ URaO/^ϰ[&\VtSJigIP l?bk:]zVS=)š(U/g7Jp'_eW#>:2́ [\N8XtfD)@65BvMOXp?&u/I;` X ڎH0 O-K`Q|(YѼf|L*v|X5˱zn޷O.lsR~*IOm9 hqBd`e`nMZn).,6mJiE XQ)_}w'XR":V: ,C,K6)9ԓ#mJ)jg i) ?-ЇJ0.d, 0=SZ{:X /~ c+Tܘ,(jsI6k+XT,0bbެ4 :c1#`aZ9hIT,ç A_U`Y"W|w;Xл:\ϒB@.D}bQ!oһ,aUX̋(q׌ݥw/$4` 1Õ=IDQs]ԋX|wў­F!g++㸞BAAI廫$]bK¢ RP,Zg[!X`# DAf~"jF l`Q0l,jF) űPMƫ߶BiUUF%=ζ{"X\ǧs,0XVJ , 9Al;"Wxa%^Q3/˱`%lYOw+𹺷K,΄lfW~K)^[O6H5X/ IF 檠XD[ X`b  `o*8h!`9`IUV/O' gSh;XOW {$j_ TE1[aRx$(b/G,; dNd/9k;om`G:T` ai!A1 XH q{}"`5.PPPn,znkA'kv')Poe GTMyф^9HvOG4ªA J p5 uZ`R>`o*t[͉2XPDH,&7UUc\TeTq(56wͨ6V 񍼢fX, Yz, ;EP5$S>VWw`!IްQR&.zX,eJ PPP=yモ>QYv ,<+; vR;'X|ŭP`H nMXJek24,Bc`{1; i7hA3 X$ءG1WLyzXs9s"fk_E25E*?| ؁Ц n`q Ҭ`rE?/ߜC`Ȃ#%z-I% $|څN#XdjhR^*V(AAAAP}${WZ/%jzζtrP=p(A VDD0х"X\=MYɲ'tѓ?{`ZKiy(`ytW=SZX7! վlcXQy۩EZjKCf[PNz7m -_22Yy+}4lKQ'|:CbFQf?}}-ґyB>q{u ùsJAgP 1QAEy15vύEjf+N)foQ5X41(B^)P~قMxW3k5PEY%N8? mxOo{yXܟ_|4o6Ģ>$ g͛frCcx~@^@#oϹ2C1ꗍ.vϏmEp~_sĘ 7ʣ+\~k)3r<r=' 9e(:b1:oF)][͚>G,_do"-cX7'WQ{n|dEul XXk*V7zǪ&@=E^^j6+8ޭLbAbE/[h{""? bL-~EVB?2ߪ23;cvX %x(#.guە<_{}Yj|hٚ1e<1rǂO>"Xj)@,67)bu\LbAb%Pwe,v"ʼn+t8`bYP}m$C-j= Orq& @, $$bbXbXbpd`q{흤bĂ Ă@,H,H,       @,   @,ĂĂ@,H,H, O IDATĂ@, @, @,    @, H,H, @,H,H, Ă@,H,H,       @,   ],-k@]\ ĂbXMRᬕNN8]Wlh5M7CA|91-DYEbAbQqUNO)۽=%5X Ej/1ղ>gJNXÐt9ގXEXG^~YV{{D*3X,;bR,ӵpjZubB* dުjm*6FV{\/'cs { `sr{+z<TpqOzi d}6]tsGseg[<^i')ȡ>Ww4=|VkMkv,M]! 2WV#8\baWu}d*ſA!ʭ[vd cY3{EWkozHۭ.cuݚiE4uEA,H,H,*Nڣ1U],ŊEY.("֩*tl9bpbvN8USk=!um_-V 4 cY搢4~Ō; ?#F,K8YGĭEc? 洀jѵa cKkC)xKMbAbQ,S'1utTM$e{T*FS!R)Y/bXйSb<ƌ֙Lّ@,%;dRdB/.gOҴ1&R)sq5>+D4zhjf[LM%7gYt>{\a[=/WXk -dχ;4=,X\ M_PY?weoRVwg.\ fsc˭^G,z)nxKbAbQqxU5emC؝f3J3V-?iMtJq*]@U EdYjޏ\)aQzCZG]\t᝶&2TG@LKV-/,]!u49D\UQlX4i}7$άw91 X szGbqO\.cA,  ~:YY!@,.Pceq]ִKB8}N8b1ej5buDP{ã yjwۈiSMBw%jjo J(:c0Y{PiLzfm}%:ĦTodɂX>Y jҙ>doⵄ[Lfݎ*ghLӱwcվaԤT]oSG#}{AP@, & [.x];-;bcnh,Ob&% 1)(ٴ(b9gsfx9s\%&{N0!"*0"H9ba歷X?Y*MT; 97q[?n#.߹L`<͔2}ܾ-62L#bܸ}: 7g?2<Ή%?LpSQ1ޣщQ+t?|,m9XߒǷox+x;.5Ҝ,IϱX"C8a fo{R bA$4mRmWbPHT6$2 W)[.Uc-ʖV\*zV`SUkM j0M6.&L* WlJËÄ$I|YXUo"a5Xr]_U1uNUnU@ImYUۮd\PU/eӞQUYZz!eBa )UN`PRGrX)-,Ϋ2kEJH[JUKa-g?EIMLhvg_%2P/bzRq:ʉ(V52|VOo 8m˪hj$)oQ Uq> 9XbE ש_'!}MeO"ކьbD,fggkC3bqr~G' O͇faEs_DN5%>i;ުi$v= < `7|k$ڴH H oi16"[#D ƒ\&-t8?k0o u8hҾBI]EBg51Fr hjvLu5<qy!QrA,$2SOc]4о˛~FV'X[w48Xnn癗+bb' يOA$c*^jkYjA'A,T9E9*l˛7DqMZݩ$}f`y$L,;4^a*f W*Z,_˃0(,L,Ɵ?{8`'K&@bNmw$gmltT- 22Tzg$ֈ4!&8`@/Θo"4$5h*]5d n~~I.̇(NܫOڦe LBKUؐ3bqWk)M鎢ݸAѹ ^C*/+ϥ$>|4ߣщő,K<=3ڰe M, qX,Iw,t&5I!}ئ6[BfL,ފ)Z 肫C9RiCoջӔEpmHr,`-Qߒ;X6qX (w W8CaquRJ( n9f+0 cz {*9!\)r: P`XTd-352OK RCw! uؿd  Xf !}g91KmY%Iѝ7_|g?IC1&şpJ6˫dPT"4lQ&+pZp&Fv2TC鶳 ֈ<-Je}0-"c!)NU͏(eYIΚk|),KfӣS ŧr( 2u5y'''2#6"щŨbS2;<Đb gNN$!}b{muU[[fbLgF.GCyWb1qOw%F!D,Cif5]xB^]aj%<'X0OU՜IJ1TG&f+DsNBݮGN܁CN>~ Ht:Oz/j\&`0 Mu 2ieg .[pkmQ'eA'jeIG"1'Ew_Y}o?Ih۶}NqY,hC'qpC91{3!i 1-9X i^fgսOUi`bI}{N/eYIQLv>|-K,Tx5P93 A˖+K,.HNKM~5mVk- ?qW_ k{F   HbسX6K @ N9_yݝgv_Pvuҙ333>X c{,5MD8V:lcX]T`V}UW=V'>X c{,N$BX5 Ƃ_g;jwE^fr;alٴ,r~ b}1jc-ofn.6u"@/U $RŘ:j5]\e+v PǑ Yk;*E]6~W*mA"5,ŏ#Tkkn j8UaOp`PʴdiՂvyD"}2 ˓gDZ.85{sv N'%M"2C; Z*챊pOd!*VX pp{(xXՆVOTB_Mչ)s!ɲ*ןp~ *8ɗ)FiQ*m҅z$R̟@ɤe%)qF7jnbU u-[tBmn||g/ó.i4*ut,E<~`PqL|?`AE#p]K`\6zcj磷-ޜ{{(c[|{,$`a$>++Ԃd ;8c|`51\  z`5HNN̒U`W5 eB]P`౻;_ShPӾ``{,|*6%i !9z Y4g˲Fpzv6y1e9N`+"~,#e0 1>ERwX\;Q.A[Q.7y@3 w{<2n%6( JZT$DyE{Š(=n98h3[&st/8ksFOXS,Ko~eaeP͌ bB=u~`&ȣ`«hBj$!w?{)5@.Gf3f#oV@sH5~X,iM aHfA55. Ktسgy`jHN , =dj5-V+u=py&38X/zUĻ^ pA=F _ ^hStY֧4)g}%>|w6VIXu GH(e0FlwJ?;fgelj,Rŵ_&盪 hCMn$X +oNTH"J(h ]5rf*oZM-^FB hRѨ%Eֲҡ,RZQ Ai:f0! X=FqTiX䘽C^Ӫ |];?PYG-J3R$;ehFDلg;$%j^hH~!oM )>:X g +Lsу q=s3X\U@M2|RlH6"O ߻ Tx$ְRe$HD~ZXz̢fG c *{'IJOœ4e`ҭn6X|m~>aADwE$Fyuq BMobXk8iE l8XDy6XlGL g +eoPVuj 9 ~&hso`P@M$an ,зHp%}Rv\K\k}3yZX/cX| cdU) \8~]zȚ&>MejXPEmavM VLNbr墢z-5XY`gsEZ8 :2{Hmx Wu>,_MS%LH![,KLJ XZ{10;X.$f8nTY&yu仮E!U:-EOW<@7_co7Q[,4^9tJɁbRaΊI&E-,L .G_v)M5zk/:iMl,<s ,@mZ+Tv"9Xܡaj,IY?HjN;)CSV6ZsC eٜ , S?BX?lx5b`3|P 5)ǐ`{,|~F/4oOCjK{gƕ?7êծ؋urQs  B3rZ<"#9JUH\D/s ksGywͯG\ޫ,惞?C IDATvgB`Eb@&?2ɵ;Jc>,M-wE&Ht5eq ?o c̈z^=2+Tb$g6s!Xұ! 1CLb7Wނo?O=:NifwH7YM"W|_Y>4kn4fc_z%[#;)#u9UMb|ac^Z-, ֹ@tBeSIOxܕ"Uǣ#.>u“_a[a|q_W~?w_&_|h  8'vx,r]X3G*Jm9Ǯ2Kc9yR[XgʑWO>&|TبhPH$ _e{+S{S_&5p^vKr[cn[(k+E;t(3yFݛtE>"bLaw;M©4qJL&ս䍾 J*Fz}e|jq_i@X6GOya3i>p,X|?uh( aKX\b 錨jaX7:E^j!!U8,ﭞ)Sz@X+a1zP 2Ь5E'<~@!Lf&gpKfnN\\kj6+LGqbƋ^2}?V}q&a]ڬt~`}H'}KoˏL~pA@@X+a1+F{ݸ'E٬8rdnEM]/, vV"im;4NjEkVFϕF_h-&,fA{- UW ";g1]urrO ,c@XܑЯ:υV;ıHۧ"?qeQr넅IFJr{6.,c^#Cf|Xd u@5,>C?>sn2%BUqb&\ϑsϨȮha 8boaVX˨6P'zCmrIMjJXgSE),u&C@X䨧TQ $p,X?OX, Q֞xYy/jmY<"[Jn8Qى<[S'aq#x|0R>z1XJGNΛ(^4NVJ\bW=°,e5t6탔nYe^\F;qWK5I+,vrA:ų,,X/*2`wd),ͅx. Ͳ\X9_;Yh•Eʋ*[V& =#^g,=;o!,E I05R#rsj݅QvuG a!6Y>sH+B叴I+Xv$qbLC7o`yp,XaIxQ|dZ|Qz1_W|f(;˟3aq&oF35oIM|*+4l~ 7YLu/ǜNNc~+3okˏ^ ^D~ ^ "W1fN\mzsIá?D?XɀL-/H RR#,^Q~y^#x;djaq[GZAgTF^wV;/9bwb[XhDkq{4QApJT.mqn{L&q$.5!YiL6)B<Ъj8/PQǧIwiٳ̼\ΞFMɮXpߤn#s,B,@kp F to]~LqB8gQsXMx,B4XUPpZ'T(aY1-`%&,Җpgw:uN:5m)5Ur,Q{Eo(GSDF'; B*7GQ4:eUxe` {ղ "&J'H#׈7Q~ V1TCyK6 w  Gggu{cj9Z }RyB\JtHa'O@׮ZDc1m+F*eXj$lt9LAlHQ|9(jpn+`@T,-#lb)x&Hf%ij>`g ԗ2mzPKF^[ [l 2< ,Sř$*C3pc%G Mx,Bx,|ۥ3|s8&ˏ/tcHeȀ$Ke}jдO0IX Nr&f[(RF'J'ɭX,:Ptf@ &nŋ+g<#n9=D;5 " /XxaHE]P}Z@PB%HُOE⃏Ǣduh9jh;$1;(;4b$ʹK iZ`\R%Xv, ,0. )o]?%ǢȬP?,P˷iցԸI0E5=F羹 OY%aM7HԮ G֙Z^\P|Lle qym,Xw&^eyۉ6̜D^,XX|mEVw S^a˽/XTE(c0dOQm1m4Rn;gmO}pmz &7-Zpu48B,Ҕbp,Ebz8{K''cAF~`׃0O{= <dzq|rx=YO@`Q$};l≬ FGCxLՒv3֥]۬A/!$mB#91O5O"}W),XYj`㕁+%eR+nDZp[~ j-k6 )op5N?jpFݫsVW/'6X,v`m&<c]LC?# 3yrr\_Xxp`haat5 jR_ҰHbN+dXSIpvM)&H.? 7s,4 ? yKߎeccGgC!p,"C&/ EO!KSnTmTJiyQR[0Y̾2 ,Hh|[xPg!3ydFz,#}~QZfmb*zpY\_ sXa/!' MU *T˚J>AiقSg,Ut`m*IGGY;sN/20Ƣ X|m&"̌]ؑW\/^n-X$?+X" ~`=RO7z,,J>88VH#kHP 6J\G\X8xO_fg=ME;$A NW7GG9K䎐cKܴ`ɠs`|YOVpžX >AqαP EpAh 9BcJ Mk%)X-H*QWbth|8d2 oܙ"8"QER ą{xklfEo~;獵MLhc!<sq3q%./N~# %5: !&S_Ccn^Pv rr۪HOz:F2q챰) I=|T*]z5X|: OI NUcocikDC8 ~*X`3sV`}2#(;BVȑVL9gh3R-H[Wa/UZי= ,Ȁ%G,"S4/ SV* ++,.Y8yuB>J@4фBx,)ymT+vz_ 鵀ŭ#`1}*#P{P(tgz 9ĞP(o9>Ttď8RJZY!fFV^Z Z?jڢѴ' ii/ѽx$ŊDͼ^<};ay5yX5˕H|"1O7Vd.XG㝸Gx{7Vj ̿Yl7+FCf4 Q\j;7G#|x7/M7oCXĂ9EFS4`!Xp44bP"vuďI Xn'X|HXaP}<Jt zȄ%r?H!3~(+쯒{h0&p`W X,3q4hhsYaX#3Ҥ?<;X%;Qm#{Dp2JIԘQ9 ]pII/EBhhO8pǢ[+ s>wk}C~u#46[״pWdm >+ +N%6sx7h>Km=~"Bx,;ɈVH 81m/w?M,m#w TTG^X)T\RJ[iK ҨC>jH̛1Hb<1/xv .lgfg<2Xw1/81Y0^$4禱,-!!Z};D5Dkg̢w<1=Xe^E>[hyFSt{`\X^u45;s*ޫ `q`Xߛf))Į3=Uґo:oR<wti~^Ǔ|OXN`!Y< 1mS0qL /c}E;X$Um#?B(=+XXc,V4!D7T1}: `!N<36 W8cI\`ajJE@bcGl傾KIڶp6LɊ,V4X,~~"s?,@x'#DŹB x.@$g&1o  bJՐ 70 ~1Ŵl{ cXbPhw7yH9;B]邹6'@o8vpDƲ(!] EڥEW(p(+qg ;jq;Yݸ7HjjhNXX:U[*YOxWBЧP 2~6bO5_qe3\X(Yh0bj2Tv Бb­VHQ;If3B5 j)Өz  0#4Ms͙bfec9<h;_c$&=hҒbi@]IIr,ny g0l T%:&4 7 ܠڣɴ ~Gn`((8y|F^ Qw$"|;Pw& tl:e<;Œ?4JX(5:?-ڇ!Tl}6P%|,CJ 3Kʱeqz yS*,"@y ~?aw VFNMı<`(+ Lb;9RE,nvLry,<şh# Bqˆ闙FIr,L%d{ wqt+`nQh`g@ 2w !Rtiưl&_}@fNᑏ_nSz`kcbJ}Za>Ƹ BZ!WҖk8'5)TPVXJm߶4E(hy% l&Wm  kUfݜ@YP Y+rqe ЊQ~z& 7Qz_ǺBӶKк|2:A* EPA%qٷd)R燺`Pe 䳀Eβ0ʋ"Q W)#4зe=*woQp q(rfxG;UM i%ox%Gȍ1Ofn%Oy*=űVAZV >U!q~fRV'Mŏ@6 PCr], i|ʻ" A˨*_- 9!U fx=b4: fByXxoJ!QBvjc;mX_kTc/KɂY,O7`5R)-N/X(U{=X,Bn%PR),tỸ.RiV \%4W"9҃ "A6PrPwNl'Q Gj3XX+hIL7aI?~mw%ojnc0E m)TM ~{,V(6ϡ{ՙ& XHQ kxeѢ &L'ߏJg q Ћ K!j>tjneq'5FYf46Oi(X,+ !yp;9;;z;Spsk06RUP$fE7N. -b:A=B"X XL .re`V IDAT:hJ^\6Kez ,lTcZq ᘔCDEpL q+XT!JO!By c᝼詞xW {C`kVU}:245$=X#q!2 q!(nf$F>û p)T[,\6:@{q9'4zE5mDH ʕuks-+PzzrEag)dE;_M6vQF譢H޿VlqvL\J ]KSz}:7WMZ$e[߾p)kv<ކk5VبepT}א(ׯ蓢џ3XM.YL`nr*Y73,M7JybW' x cg!E-cqCܑ됱ᝧ,F e\fHE,|X#R  BԌf۵`1)TXx_ 3kSzOh, h,G.xvEQQ8(Xw,n XނXņ,Χ씶zE8҃Qud̨/AGFԽ  e=KB<z`?VK]S^R}`cVJ; oXb<<Xԗ1b?Ћ, L`1h\;- =P#UPCBHF='|I!c^G~9[ŕʗ % f8n?$ 鹆j3Y]&wWˁM5He`XX돛fH`"{o5"<B,v٦G7cζraJ6+h®m[\\V^`(EҐ~ 33Tp7T^L̴Hrι;G,:[q}~E-BSs;}IXt8t^,xЄ_Eeh!8үvCzzUMZQǃw?o&vCT< oy |gLR̦n#tX$?fRbAbAbAbl@mSS,@[ꕒtyDiޭܕ&>WXdyGb1eM,LE&B}Iέ[׵~?@E,S7)ӗŢ ^?SrkTsrx=]*(ENjoL;:xbq;g'¡r $$$qz%'˚h\oŝU5%I8XDkܱszE銭\bqȌ6#zS?7(brLx3ygַb1qyTS,cz3]bqsbYPnbC] bPFg;!i|s,Zf˙r@1!. &9Mܞ !$$$LW yJ&VbODoE(t_U4N1ZDe꓾XlN(3ԋobOxdAW#ҺXs͎ѩw4ŢiNUc)eʫ7~ !b״6~/^&o43[Nγ$NS,JbOɤ-uKHwG^ÊXXXXy,~N.$.<qDmsdr~X@=ٲY`A h|ӷh2BĂĂ_ǜ }] K, $$$193d(f;.HΞG, VJS۬O7P,FKy;{v yt̬/4еb1%n@,H,H,~bs |+g_@,H,H, Ă@, @, @,    @, H,H, @,H,H, Ă@,H,H,       @,   @,Ă|]K   {[˦3s]_%rJ   %³jMdHLHw]V~<@wYjͨes@^]xeW ).ĂbEĶw.+dKb@bAbb1,%'qT5/wz>XXXtXɉu)JD,>6/zIV 'C$ػ`oe"ndֲ>ϬLb?estxB_2yuLVB Ă[Ӵ4'+qQGdZ }[u߉(U85wRlѤ.2es9}33ϛ3Y;x". $$])rb-KYĽR2Xb-,br*YO1e܍0bMAYֳ{%?2yE3(E6'6b@lU>YUuX$laC~)4ᚤ3n#uu񼪇67y m$PՕ7yeMN&7O[π^J^H,H,H,4Q}#X(eݮ+XN,ktwkZ41E!N+k"E ٻަ,#cўD+7T QFiٱ-n1,;2-PQ`P?Կ/IM'e$| v|}}3<9Z^E,q-(^"7}Iˏyo1!aoLI;ꢱN~M<( sXkaY\l}GcŊ2ATYy3+0% ʅ3&.a~r3'no<8;DvE|M=hPu#: qTR'BnVBy,o{++P\۳< t,V -$ܥA}+/7 }HXGPx x_?= apD&A|(y6IJ'ca-2c7^zC곖ITz@ YXt]E_%N˰em|ߵb t, N]/y4g5WB-5 2i 4"<OEE ־_LxݾHRb&@n"%LOWjR!g4 @ YX06ެi%eh|=j t,ϰ']]}=j7Tp|$^~Wx:"[ӞJ&?bEَ F7T@cB@bYl-+,#%=k7I&[w{uG8/+ Ds@͈1ς%dX.w$)}IX!@ Iߺ蓩0$&NH&ong S/Mĺ (eUn֒;O[k+G=g;_G б@;ЊL95!RjIi'9д٬EZu$޷f?m z4mJ >tLo"= Z%>B<&j'LmñP&i=GXI& E1vJH?IMz\ 񖴥 $|~#f]jܖg(>/b/?a_gZK,z ?仞xDэY~@ +,:IKe $I6*=d'm҄fUmZ=\LձuƢ bI pn"tV6n.8WakLYzud)SN};6qr 8o)'T=e-PX NOq6@C=,aa%#M9;:vU)J2.a24+*'Jݛ|8Nb赱%w+g|?&, R3X L@hk˹reӤVnNڸt,бX-lJ& l !jJajrV6&bJhz`yͨa6H/MzJ ('vQX7G|sO]a 5 5 fH D#mɇn&8Y[PX5(cjcѳXX16%;@iB=^XdtyP7r0ް$"#б@bP | 28MOJa1 6ĂDO4ij-Rv"àɒE]}, +F JZX=!SR /K8<PF6*+,uiLyy8`-cӕR IPY:&E/,^GX4u\˜06[v9a%g촉bqSQ |PFn*"SaPg읫E:i¢CK1hG\;‚Hl^Xs\aq7o@Ɉ\ "QK #>Ud@hZH 0L-v,%,.db' @x͐?Nyuz}/, s#`?X 9qrE3R@uAOE~=~½͛"%m[vK2ټдFg`J7q,&򎅁@ k*,2K<"LԘ-0o-*> ũ;rkԱ8K Mk"Id҃fLB&"MP; 920`7!x(A{JBm}tkk,<ďToWJx+*de @bAbV\,R:d/lEr)Qrql곃֘ ^1]U]i(iXƉE T{<_cQ -7CYSEr:&dWP[D\, Xkn7wt@̉E"9bvH\NReڌt{{EOoB,`B-nҋBB]+MD 9/x;aXLט&"Y*_yR% Xs.tBY!S6rl.s_,+:h8boqiKzKq- mW4\] mz%֑/.b'pgaY}`a[ boվp+ܨoJ hĿC)ix uпؗZ%+qh0ٸ#cNXXX$b߅(n/M\gܪ>$bX((Ŭ݋t2b4> _,DMJܝJw}'RU2 )>_B99XlK,ԔԽzX)G>kYlyXXXlJlH&vfo‰ $ܯi(`,!8ZG柿{U2l#ab!ȍ?ȲOmY%c}N|]>)8LD8G~ܒD,TĂ¿b_\߰w/nߎM z7;wŚɱBWŽf IDATXD[͚bX7뽷0ݨĂb=) Vid[Gi&e_ XXTEY XX7'f][r bśP5LZĂb͉e_T$|}}IKӏ?X #W/0e   @,      @, Ă@,H,H, ĂĂ  @,    @, @,H,H, Ă@,H,H, @,H,H,@,    @,      @, Ă@,H,H,   bcuGLl bq71 XXXlX gbsLs L;XZ-NŢ㴙b@bAbbqbub!4  :λ#)DBBTCGB4ti2XH,>XǶ7`LZih BXV|ǵb͉Ÿ3?A|a;45~ $չPmzOƞ2Քdk΄ X|9pk)H,H,ևc[re_d/BvR>b"twsbqr/ig|9jw͉)R|ܾT:vg#Gsbh޴>8qy9rZN~]Y(wOW=x* ]X8>`*,?bڢBlcWC3V'ЕO:C,{dAυ@,ĂqkL]_E,cE鏞œ)|:~2Ӓη_v>xs- =Qzt:^Q#=tk,ԩ馶֓GoO,Uժ(˷yNwXܙ63ڈŶfW/  w'"ĭ2#4*j'" E =2(UFA<I>e yf7BӦ.?XH/z7GED$[I@,HpdݣI7pTk6ԋ3F! rΩf^a9/{Ȳ?^xt JBLDL::Jzqmf'Bz2ak{/yU5N}[;[ݦuhXbVJ-r".9N uUk6*ITkvxqw鶉= ^: Pwb9Ikђ67Ck{[7'oӽ=b{,BUv\&ۥe|X<65` TG Sv Jb]% J1ّFy騤V+#r>`!% )BCCB`Q[MS-`sdE g g6pxwOrrn@=wpi+O6:5~C]|YVZ ir ,®  T,8UWYe.bp qR=avZ0{P-.F z-lkGk>T{)vĻv%n]QHOm~Xi4bxQFJ-FAbj*KɃ%߷!B4b?BK/NŠ*7K 'Mhhh_,ʫJ{,W3a.RX8n6/6P*{{J*6Sf ޙ:`->P@b7CLش2M`A/7֫'`!K ĂXq*`1R"~XD1tߐ$1^ H?,)bybGjЂIلJ^*3Wyʇ⻙|[o?G$444/7`T%FnBR)jS1—fBUQD>IFy}X.&mQY|RF\;*Xl"KԸP`a) a#XȰ:UbTg$RRX--5h XG=1*+UK?ӫY&y%1(u=HS)y(}s*X P% hhhG`qH v2"@W$u?:|>w+  T,ߎY bknu^p>S%ր9љk bƅ۹vh1Z%,"$N~Y)~SYЉga 0M).Ƃ~7as,߲ga31g'm/`&Os3}`ΨB(]6% N>} 2UKx5{[:XP_B@o#A6g[` `,(RX{m^?lTEJOQ,wl*Nœ-/-ܱUܾX06`BݲK3ɂe٬ZbtBKpЭF ˀEe(XQөb1P÷MZ$V2}`Wv{ 1/@@mg>ee(ևZmY35`1mitB5*,`aGTiLX&1]&e%,0cV ~N!a;pr6ٳhɋ:knyg>G 44$Q*z{ (} H)s匿hJuƆv-\oF@ofN?" H~,!\c,]E)K:bhef|y`2]It7_&bc>d_wp~,V~- :#[0 jɾJ8"Ҝ$Ԏ 狭8,P@Ⱦ,!!&` b#`WI6 ,"=OQ#"Z%ŧES%*l)1j]>, b /4X-b=N H@"/דGE'0XfE@dMN/19 =p!A]ăEֆ:_9&A8IHQgKeHhBpsnr-X{Nz؉RT`mXNLYND(4446vTGL^3/`v/v;bq-orQ۫c>/EE+ <mXb񭌎H(t ْ#q xlf+t@aYlw{yLf=~ju2e;,"=Q<#M2Uʓ#U"X X3KuQhhh_,ز]Q7pOG7pQ^x}0IE8`#UAyt5J _쌳*mBYDیǏE@odI{hm>TQm:LŐ?=/p,Ce B7{8v/)X1F9$XdQjo)Ŧ7  _d}cz_\^%l$:|t0y+i7>:;8 Wm:*;#`+݅2. b6޿z[49d²9'Өbe(DЧB'~vS9*b $u& jw8k=%XW̓f; ZSsq )1hY8"ukfFª݆\'b1Y6ΡOue> n3=l妬$Cp.OZ,hLJgU\ar sj /\ꘓL +ޞ~ f௢]ƌXXٹ-ĂĂk-zv;ۮ.Jn:r,W;AwVS9^ 7z[a. xby?۵;krHO{OХNfΑiٶ]XX; L^gabX XX3Z7ף@, Ă qmʻ)ZbX @bAbϥ1VOmRY,#bXXX XbAbAb~Ă@,H,H, ĂĂ  @,    @, @,H,H,^D,   @, xXpBXX bXXX XXXbX $$b@bAbX $$ $$X bXXX b b@bAbX $$”:: x]gG_Sd˕,!1EcŢjpfF,  W@I;;z"ӗ=ȃ}NbXXX|^J~\`wgap_}AhS!0@ÏLEԋ\au+*f)5UG&}7Nn]/\ (r1*H&j.©wiP%PvVcrZ,⭖"FT]vʵx'Ks߹H$/O|Pwb@bAbQƭo3whR~\,<+ݗ)|5ӟy"S4nIE%I"2.|WۯP,0 ĂWpejF $d}_P,UMvE ?1:__2 bq#bE+)#=/.AIds/**\~L?SXR  (̭n P='^X|v(x&v&Xt@,H,H,N3wgͬǦ(#A'bwQn;Sc{bqXe>fssrf+k6/?wLs Xjm?埛I{IXLڈ]xHn*uJ,揧bI *~`ůf4տ   /u ӰZ[?bQe<.#ꋔCSX[UUDHטEChwJfi\$5 bfi3fG H,H,"E'"}+D VHE 7VvX4= OuiJ"ҪSc/UOU;dŒb4+I{7e?#"fIC5>We񧞷T}6>r󦺿~ήu&h9"p{_^,eɞb! $$jݯ%,]}\$i)6\M:jHZXQ$o oڎ>RK"T47J>oߤĂrzij0X8bq,+k/^$͌ b-h'XjE8X/Ԯb-?G"<(1c5CN xdLGO ?XTE=5] RuAxce"嵁8bij//Rn .D bѦHֶ~{ 6㎷dT.֯b@bAbP1Vij0;XbqQ z'ygf_)IL .t%4GXL2JRB2_edY,eD͑dB,6`5>fb@bAb0˛.-ޱ'nF[xϠ_mBqbI#Bde ˶XE>ܑŌVxC,eȑ5+ƨ#"ykR=["4@XXXKbсKgP71j¼l6\)!"X 𖭈JXMĂ$ IDAT"KM̼EfkJ2^,g oY]5[gf.G%S_O'OLb@bAb՗wq'tTޯYTSgdź4Sm/"_b-]5bUd: _st?XXXܳXNbԂ9ي  SXa[صab-y$]]chi)b@bAbpbqku03Xs*KjEIlE-)bQYk[,Mst{g6h ?X5`o\۸NȂ33g3m5mŦk,Nb- r*/ƞQKx|:k X$U:}eI$[EJ{MM̻B)I5I,""]Z&Es,މD|bRkj   {+c`:^6:ͅ~(P}-Oӿ=)%Rhzl e]pb1c'$"/7Ăb902S+"m Qr.gګ FE">mH|rHn=YݶKspZGuP.[Q  $$&!_oR=Jj4\CݒxHZ n$rM-r}eWK),޲.,K=5+pByo/(RMN,]Ă8~HچilY3 d{#m;& UMد zN95L7nm xb$k"5J˵d́-~f(IrE56eÉ>R |RbW~b[@,H,H,Q,㹦Buske0p k—ۂze{#Go4Ă^⎋ H,H,on@,Ă2}b@bAbŝbt bY $$Xh`>9ŸpN˘b@bAb-"᪓[4֎}ڢ,   @,:źY,   @,:pȭc wN Ăo ,    @,{3W $$w##U3ցI#l~ $$2V,V^džu~ @,ĂĂĢYUۊŸfOEv8bXXX鏩X }!Nԕ.tv8bXXX8Lp[]  .E\"~wG{M"Ҿ]]G7~ou $$iP|_],&`6bŠMiZJ0Vrr3ZΜ\kH|=iZL jlcV|T[ ֌񓘺Z L,_ӽ+;ebjL7_6U}u^ ?َFZ ĂLj9?{ĪXsY1ŢOUgS|[E5T{Z{u:x.,j-$k3N5?{Ƒ?r#Q$DdyXM,Z&Tqi8 4c L_&q%z/ٟZɎ\<ϋX3xq|~vf.)Gd(!XXX귗]fKpB*޾_,^)[hYpY^UQ M/^~92+b*wS,^mɦ(5)= IvU*Lh-L-u~#ǫkW㝌U~ $$#B3(AܬjHքVVL,qtpO,{vei|cZ,{,;LU3 QKy\4u=W㱺pt WK(oB!PkJ $$aS8IY^m~U%*"Œ7넳SFhBN%1m7<箻\ꚿ%=>  @,H,H,.BT,BEtNߣP$TAT콾/_ BZn1@uD]3 $$꓎1b Ģ)PxYZxB+b!uGo—{35!PŢjc  i겦!T_EO Q~:BXNͬF"^>EH3*zA"uu^)P,,q#Xb@bAb1HӮ;p"|&㎨-L?)d Sd$5! X Tb!'LyC, 8'Zjq=(~!bQT4K9;X4i BKA"Y<$1N*  zP'ۺ+(O,U،E}b!?g^ƻҌʹWGBc݈ $$ysݔ=a]sXL;Ygń#&XXċ}hEϤD]V+B}U7/XkžF, 8'-a~h g.9[޼=/N&^3BU5XŒ-žX쪥Cyњw)q= 31Y`V7.&CWG"'0 $$#3iEe%;wKXuW,&ZBbVNT, u7d'FLvZ5*MdG.N勧mqˎG#V,; @,H,H,<I[|qI2eoG, #oK$[^l%E[  K)^{~IC\deE~Xb@bAbq[Ba5/Ģ&oOX $$1z|w(l9#bXXX b$$ $$b@bAbX $$bXbbXXX bX @bAbXb@bAbX $$b@bAbX XX XXX bXXX /O*_ ٢IĂSgog%+$̐U@,H,H,>A8/' XX WBǯ?\,vK.wiR øV~8p   OW,O6nqttR3/;ك{^??wWO"R?߾{ʷksxd7{- ] $$X ׆q<;V~aۦN,}k>+ rvnOb-ڐ+u馾;ԕKzT\Ys;9XXX|lbX= bsUNn-i0    M,k,f}6\,*G?d]S9z9naHJ =uk2ԕe)/}%'@,H,H,( 17D]jaT*=c1(j*nmmwZ,b_,D>W9)&p;c]{q tb1X~c)nsmNG^^ ۟kĊ|b4v"3tngb@bAbq40G{g6?R/dm8j|LlbR$jZ--MojN^܎70˖e\60LY`ϗdɵfi~O!Os(^wn^u˛*"^mZ,nɉJYHogbQITv yb*X\%Ej(fk`];!^u(^~-w=K8BX?iXdb!v~=cHDn(=T,PJb >U,'ĺW1줷J,P,cVd3ak" D3вgcۡlv0^xr*7Xbquh4$7#%ȯb6]S/y~X/_)/_r_iba}BJ1 1#zn?mn\r x1~V,AY}϶k{sk4g^ ~bT,PBvuYjO0o%b\֙UXl_aX{̝4㺇L? .Y]aKnϧZ Q4Ӏ8_ ý͂4Q/$Eχ\Ne3(°2agPqP(EcgckeĈ6;#˗7/o_.ž5W<\_7?N,AY;& \Tnqg?o?vl< T,UsDxh8`XXDru]y5)Q'u҄LuLZ1A: xRџ"zM#uHj6T k/<}j&USSNbtKnUjba*%B1#J?D,B YO׊E&hI,G[fhCpBX*W'.1z[VyuE)D-gVOb5=˟c\@y_δ߶/on@nXB%~y'߈P%lW~l{2k"$XG>Q{:~.U@:+ P@*iM>5WEޣ@N:gKbXZT$ bgJWyv]Ե$Wb1$*Z\8Qz&$3*f@[; {$}BAʩ|>(7 A@_#oq4A\cQ,n|'b T,P9'jIFZ,8M(Q KbQ<u\XZ,tѤl.m Q)gf˧d(- -ԓyEŬ YKECU5bQ7PZtRۏw}H4Ldbt7 |b*X7=EIg >bU$]oX*b9\5%O3|Za//fY+*\'IuWλ Js(iɍ|1ibb Xb0Y-#G"6EU%1qIMR]~6|5YμX0W7.B -,Dw~Ыa27' EKKlQ#/Æ@,bXbqVVZ%^xZ ֬s[3rc'{jXx*}-wXbq}&RZ:XT,P}G}bk6t˧.;6+:?BM݂P VV(rWE\uUsD1?& !!tvfWYYv|?/J՜sf3#CX*ǪOU?a}CXXbqOݽ߃cܿX P@ۿ_{?>H@XXb@X*@X@ ,@X*@XXb@X*@X@ ,@X*@XXb@X*@X@ ,@X*@XXb@X*@X@ ,nM 8#k{sau^pawh>j6*v wR\5ڳT T,Ka1dR)_۷;ӤNj7JvƘ.1" a3Ikcɗ~pJ-nFsCuDMC=wl|}y X뼀hAXT,P@S郷xM eTXɿa:2& nAc1~ޭ^HRK4/+26E4G.Mw T,P MR6{`ō#ŎE),H7 /XXZ5&gVRX˜< P@ ,j0%3vwXKkrosԧKqS Z4^/gM MM=w[XHm,Ni;rn+3IL漭!4p]V[qݱgSd9,ORp xv*xVa&[ ۍ"*eD¢({%9o%wܞ3 k9JX:JGjx](uSoN^KnLn 8T?Qʞ{vԖMꙔbNgHX̦]oR +1Ŧ#+ 5s';'ʸ3Ӯ$ ! DŖ2HƄE]63ʕ.slHɵzTw`s#CU11!js4$6Ṇ-wKH\EJj=M'NlVE+qa*X;؛ݚHXN[(R bѳ_QYIs%&,6 h' z߬Йq_|XjP% 9q#._[Cق8S:3[ _|WQoP?Ȓ0yt.zR¢mpr$N2-r>?E_}%-qQ繦AZxrYz!I`/<kg܈SJV䯶ny}|KeC\ܲK h@ Ѵ_&PXH}gEf",D?}_'6(qC8y]("-;]5f<[cp°~d:$p†2ee/3}3Q8YfS "@X*⎅?q€G8k7} rKit$,>‚f?j֡L33r&(ǣ֠^;ˮ0-ZRòZ҆&ߝ]p?ZyX(AXx܈)gMѶ:JBXx7qYW jF:T^l}.FP g [ rZTbVlbgjԶlP #l4ԥѠQU3ԉ%8cYҙe]l ۘFM1x=)I2j3"ae2:.)_ cY2qbrPj Xb ,XX4X`w 2fc1…2/TE\, r֙Рw-5o.Mp!=W=ѫ*ODBTiEtJm/ҘD6_ :Rd%T.϶Nb!>yE ^8[i((n2vl΄|:cyMdهUMޅd…B… .0 .w /NuK#dQ79]U:T7y4emsw}HJ&X<\Jy^# Vڸ,lJZ-F&54۪@TbFRotɖ^EKf]n6P*%2(o(3V*tŽ4RUb(PrgR. Nq˜~w$K*}/`Ia/:2R)kR%b6DA3Rs94UB]͐&ekE8Tpoioi,am¼5|:=j¸]?S?:8XWetK',|X x f`p.ʯ"3/mS߇m,hϩLQ?(Iv>}"Xm畆Ƹ`aYv,R&ҷGBnH|6r㶝M¶]()~8XroHu25!|6`J ccqB: {naXX;u,' (L:|U)',|X ,fjGQ)fv}gPF+A-Uc`G4ǠnT,Z sAfcEОPS RG`p` I[:c(K,;xp%2e"zS: ҉ ,lo (_Y>I~XkKgNT5!|6fc`ˏVWpL`H"XsZMܩ`aI/*",lj |;~7ib[Ͽ؉GBFuSc;;V J8i1PJ@?:vA /PhOC[ɨ=VwgE(VcCBΉ"BBk;BxzEfOB: I>X(r,,ˎ!=W`OӖ:ե>YBٶ੢ 6ʦU5T~zo8ZX`a7&X<isL8ϧ=7 s$4S'"2kB/*(#߱/,|;~ƒo,` V᷷3kC"ʺs,(1Ƅjamd @IrYkʽD=tS`!gʯ0vE[S`rnOΙ`(h&NE .bi: e'BVoX"&,tԐ}sm*a7%E wE`@`af K7l~a•J{?gXs;&˩`?mL_8|UFNMw,o,> X,tŕp(TZIԵB=Xb@uJ"3щNBv٬{R@ -PP"DlI-s,*s[39cpEEZJm>RzC>(*0!=>nXCҤBsŠue 'cX:ֽ|N9Gtg[*6UT9`QGݓ`T4i JB6x3eU8pڃ1BYs N`r ,Ԝ`a NaUuc8`o~X々8$L<5`7!!~sO$AoyBJ挡*4*9 Su|!7AQBFѡ$!R0meO8ͶmBy>HEաz! fmSRO3Gb)&\Ju,ΕF)j;qEMSN/stc<.fN!??L1瀅xU3SܲS`w:6X*)ރ: ϶1Q́`ђʷ8/As&>q!l6Z.t0ᖐ>}Q4D͗_> s Ut;^/ ևQ| Rspc,U:yaH J m&o6bȆc*Ȥ'qx'X3WX`rnx:z63HEx/;;"!@ j5Y`z;X8L*E,اמ,vtAϳB@"J R+G~#Iq.N2X]|`@C ᳁ _a]LYPa…8A2V̳4XXs ukLYIl5H 1Nm2[8֪Ddֳ?NP`!#d # E$_p;tqØ79i|G{yy/μA,G1pj#J-?~Rv`K\-81aグFVX$C̆FeaMbLnȍPfPۼO\FX7Nds~d8p,ſ/,ޥi6ټ`ǼnmS*:4sW;Oֵ|s~RIkଗyǭ³>ݶ|4/ku[;yu=7\Ϲeg}Tj_6;ƾslIXWf45ثw w.h7~W   aI]?q_ң !v7 p,X@XtE"!, Jyl^_3e8p,0 8H8Vy>uC^c@XU('+b1O , 8R0}M|L<~k~@X8p, , X ,c  ,@X8p,X c@Xa 8@Xp,X ,c  ,8p,aXc ,@Xa 8I¢mo\b~ozf ̻/'=ܗ Saܗael=\\s8p,`\zHi#oYhNlCǺLԺd&CUB*[-ާfl4$ /$?r..;o4a ,X?GXlbLXXRva^RU{+ @X 8p,Msx?XT),Va¢AT!,xtYi8p,{ʞjӷ>X˜_}ߣE@0i hn8p,cţX\aq3sRaa ,co%,JZh+BWza)U.Dz_FQQݮmA?PvRnln!u,ڃQT͘S/v^`.VrtڊXTbwUT Cjߧzì-<cŧxU{"\ɭ@ 9 R^^OK_b!2(NS:ƚ-[DCّBZUVXWÚZZO]%}%z?U!^SrģeVGYaѓ&2P+i/e!@G=\tGv$2:5]cE6}Ra{]rDe1]h]_G'B&VD~~ϊ* -E?[R?gX 3J[CJreuU=)3ivW;."lk(d̎X:֤Zr5=9ַNF !, 8p,RtSCv˧<슄 IDATeh^)*${˝ `v&VIB|+!֌bϡ+S6Gs Z ̂ zXtRXXPĂ"$$ =]Vj ړdb ]L-0\C+@XD.*bqQ}a?Vt/XBjpNPbp&S)[26=r nU %,Ƭu=/W X8seeY``QLD94 T`/_05<νO@=XԦ4vBX3lu%^\}Wsj=r VelWrǢG{`lx>o @ 7 t<3Wf:gV45, ,,WYyQǝ0bӋo:J:x-Mn>שP7˹>ٝNtD,mGmlTZVbcLRr3߱KK+,H(bA XXou^|}El2藍ۅ^N>4XNG,odwZ^Zvh1P(HvUE9[c,M~@^X8go<`̕i '"ÛnӘpHN~(96jx@%{ <XԦ?d|lXQ~ر'jc<(_Մ_-mi^4vGݮj-+(XXPĂ"$$ #ȴ|jǦ{Tڽ>α;znR_}`ixz\F, sO\U3QIX`?f<+Uu'c.#XT;4Σr81\ƇX'Uq+y3;e]ˏW]\UNҸzqg@Nӎ^0X\ gBVoG`׋@/s**iXoW/u+)лzW]` +o}( sлlք_-mi_)-`! XXPĂ"$$$ ;\].gwA飇,ne2>~o@3ڞTb'P 텛t׹%'6OǚJos !n~ ܮjӃsjݳWfgjT}NwOه< y`X;! 2uJ}`&Q- z$zUrX KN%k֗~|ߣ ,\UNpwZ[rvֳ踓,pHŸ? ^,^3r s4, c0Ja$B5d+X` s@b P0GI-CyKkB$=~G]+/ISsGt;0y =l4W'oG+3g:/$zvjK3j`,);qLZolr,dG%͔|Nsvb@#R3͈E!۟xRvF%Y*|3P.Zkg~Smݘ= iG/Xa,,pHŸ? ^Sd 3ixB:la, w2}1^rIY9=(`,xvz\%CCQr-4jBEoK8L=}YPp9C" !!X4ynIz ,:eb;,)W˻η}H2a ,7BJS~!Zڵ.ae'rvE 0zDk,>ZU3x'q++ +] `צ?b%]{UB`a[rnJU(2Y{zj_-ciB^;O|-Ǐr'9& m)&:˯+ E,HH,~&Q7l\{]/fqYV#r/TE kh):w;L߃@~*]6%դ7Z{n5FaK _u檾ߴ^LŞToI!7QkI^C>aSot3)뽿~jE7/]$u9Ղ" ! ɱ>D{Yud?~-R E,(bABB`I`\*4>5Yj:g`XX_U3k<{?QJ3@h,h,dI^&+wͳ7c`XX0J4;G~_dD =c`XX ZүݝaNW'3 ƂHxLKk 7J;gC݅Rr;wf,$>]jZ;gYc.2kW~ռ3wI?={"SrpVXMuߎQi Xo1@h,h,Rh}3nbޗUCn7x~/7<3=rP/Nq reSsab1N]oT !UMj۽I@cAc$5X)0Ӛu#:H4n'{ҫpk .z{Ȥjitde.]&)~#t-՛S}'IZAw=[ Q:fŘwXH &@`ԗ03J55HG椛[8軯RE .ҘJ[6*I;Ǝ޾-#{{37ub;߅z+(Q܁Pm',  ab/  M-=5fwOt~S=7RzW+l0*Uazw77n۷nt{CKo:3,ftfJib,l.]R%ށOhBrr.M[nl,z`lt^ǩo?>Co;xkD  ƂHjdr} [ƶ5;x9%-1a*ێ<ؖc9Kܞi IwkFlHB= zu5'WNn6 X44@2Š{i.J6;kcryL%NrU*Fqb̶=@Ù0H۾lƚaBt\hf޸;xH3s8@h,h,Yy-Vp1 rtjGsFEhW{ k*4J59P'9%kVEUΥ4_o ƂHbpœ̩~ӘB4__WGq!Q5f,-J'DEf>H)m,fGL]e-jGC;?]޺d`"uur X44@m=ޕ,iM[)%{߃{WEx/[=t%D1zTT_xB= {,\n;V=)>dX{[,&~aI:BM ST,q$BX`q`Bcg-Pi^x>Xy5Y7Tb>l4Wpzuj8My5ޕ"qBQbOl6!I&4^ˤ[#+R$iϞp`qK@c G~xB!!ΛYh(cvu>uuxvC]!kv/{gj0kScG9]*6uCC&@f&KdIo!r"d< iOӐ'kjG1FYȗzcד2T.uUfeYIl,BY5'oŢ_ݧ`%xZfW=k/ ij'MX8,Xh,@ӆu=@O'Vg=lOI{:&$üIҬ· YҨ#HQJiwn e/{l"IEOfݟC-md9)#/ Nq,FYӦ#c&}8Xܿ`hn:/H^&` ۛcB\C ݍP4i_65&%UwsTm,mE2ֽ`ф:R؋W]I"ːtc+c&`Bc2f?HMEmߐF.`teCwэ ;X]IbB59w]JHf$YL&m*.XlϞ ,@c@`1Hi|tuHk9%Zccyon2`фYBZ9d,J7y¬ Xh,/,pO' bHTFE(6XdۃmpƢ4N~^9Cȋ٬ *9Y"Sdh,4`do>puc1랔hn17Y1'hܷt"d, B8i^.5=Xħʓd2h Xh,,,lv. \X,7wK ^ZH!wE Cm\X mv]H]imzicAV]Vi; ^OA37wH _yM؞}>1X,Xh,@sk[޿')* IVi|US;\߽}v0b;h֭W/N޽ 7svRq]՞&!]m^'E2uC5LeRoz^xd1d^h{Ջ^O<޴V`y"` k<\p]pfmjo>!X,Xh,`ŝ]xCbfY Xh,,keʬ:|Nx,XX%KscB aP,_,|3X`qx֓|S Xh,|`pS`Bc,?x!X3X  4 8Bc8~`Bc,nݾ6ǂ V8,4n,`q|Bc,u:X`?~x  4 8`>dq~, }/XX!&me  MMy IDATx(WXA{G=X3X<8:'XX`q$X9X{˼g{<}\_w|z_~zj3޾z̊/ҧO{󢸒E0B@_9,l&ʣ]׽~66<'|UCS|Sz PJ   BFzE,h{,Z>SW_HOR8LJ:ܸ3[c_\O3b6}l-7fv.@,Ăb2~b-BBΊz&}k%֖D"I~k"I>0]pF#i4RBaL3VWD}zdT0:Z!"Y+H,H, YdbѨצ,0Rr1t̅X؊EϵغRSb UkQwXΌIo9Tȫ]BJ!"j^biwB@#zg:PrYq/,ؓ #.b>Bc<#';~ pz=1W=zéԊtکX@¬߮6ͦQ +nxl|)u3 NwB}~4l|jRҊfWn#@bAbPh'CuYL}5$(1C$*!Ϲb(Q88~!XWuDγف 3p6h>2pVHj@bAbPBEMvi0`;?=k ӲUmQ$DpA?j*;@BMUm?֭v;#9J*j\֌W @bAbPVZq)~=S>Ov_ͩ|X:XLnQ7QALcʍP@bAb_,meV 6s/ZӾZP[Ut XX6PfQgjq.::ҷ@9u ZQ{   GR-[Y1ӉN~`.ptN]G㧡pZA`$$e,. ~T@bAb)l_aH,H, (Y|bqixhP+ (Y|pb"_q 7h^$$E7^,Nʾ.@ȏxXX P*^]Wi\c@iB  4LfQP/9@bAbX@̢|WKRbFVH,H, (ZT=\ Tdbl$$%Qo\DH,H, (ZTG6MA+ĂRQ~bgO $$L,4$f @,bٗ)b0@bAbX@w`Tf @,xw]jYC-Ӭ>UC_mvJ#JӴo[: LB7 $$pҤ-жu{@'5ӈj馝o3WW\b@bAbP+إRR]Iwnh#j%56N1YJS\b@bAbPi=ZHZZ ~o}3l"pY5Q!W+[b@bAbPn컫MdECeJHHSg O,L6ͤk@,H,H, !͞cfbaFtQ_v&VjEwE9%0 7뾠 $$Ecvx+k,zŅ/]F81K"Tbq)=0O0j $$E{@?iv\f9>8 YkG  $$!iw[OH=R(vھr:hE6pS'm   ~_+[UKPN%ʒXb@bAbP:vJa}N:àXcQz*Ă,bHЏx^Va|cE%]궰 $$ ػ6 2AH۟U>~vh69:%Uk Xh,`Eڝ [WnwV0"` FjS~5",e4  4 ,,@c@ 4 , Xh,@@ 4 , Xh,@,@c4 , Xh,@,@c@  Xh,@,@c@ 4 ,,@c@ 4 , Xh,@@ 4 , Xh,@,@cհw?2l Bc!XRZ~,Co4 K: + 4 1Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4P;Xh,4ZV8Xh,40Q?V\ B7:k]~Zf#?SXh,XyGo !s`_ V(Xh,4nu Br|~`1a_ V(Xh,4BBۂM"Kk.Nk ,4 (!4^%By`\_aNŲ XBcbBk bI3uXh,`9־ _6,67ߺs髖^|1mwb>mgٞi{sX#{@)S'<{6,sz -? , 12$QfjIi / ]PrzQ a9O[Ϗ4bl{O߫$$G_i:/9ߓmH {-اZ4?M ֿ'xqW(dlN܉g,3>VvzXQܫ|u-;pojf9ZNp܋ߏ08y9R ӎ  ,Qn1icT>4j}y(|${VJZE7-Hn 9.&KB8,)ܺ6h*XT{sU~#ϼp>5Bq[OS,"T&jrgQ=7:sM*د(w٘;eɎts|\? .L.9^fXh,`AHjX]-G:00Nzٟ!}ٿT`=|GP^4 i5DW3 I^%w'7zyٚ_;UIn%'^p_ۧl_ Ə>do8dך~| Z3h| us(X#8^Tg9'(G7_ڽ]L"^ҫ8u4NT#q?5BcE>g~ AЮ_M-8"G3 IgNh?&EǴr!߹ɇ`ϱ++Ik3";WqUrQ5cpQ|,8$FI 4$Eq[&,X; _{{X`q3~Ńݜ;eξiR{,vb"3NR^IJ?  ,_?9ksŇ8-o58.3b?rO+3֠Xr,qp(|⨺юb{OSs}򾅘]֊)ٺ/{ӚHqya=[ZHBhpNQE/z=>B.6w:Saeg;&;P"\"AKg̍bzRM.XDNdtI,Y# }8 VƂ( j9/Lڨ*Y~{`@W,ɑLb,qjݜI# 3{o$  dۧ޺,cV}vxӒo=BK{w,H*gԪՋ` QRxE3飷`!>Њsĕd 44`~ ~,_?f.{X xsۗ7 =3=q 2#}Be`qڂQ*3m()CͲa^_3(~8Ua .^L6XM#fH7 44Ibk]iŃZ6}] ~&VOS/ursP>Xܤ- EqL`!1liEG<`x`AcAc,!VIKY=^NbH=8)J =/jE+`qo>=96SyXŏW`QS1XLlde_S3pC&)/q;W4 <˕<6la    `![[B,o/pE j  .y|ZߎƑ` `a\枼-1lhxLW7 g=y{0U:bXGPgYY<A%3v->jQpGaGOVm'C]Lv:Xxv 1S5d2 r(~[iN uKq]Ÿ5M`zF4K?yx[i[7[3BF5Un뛞y3S1Xtze^TWnH_t\ąe߻M$Xۗw%^Lv:XT}1I`쳫YHX3a5γCcl>G/gΛmF?]`Q:cI1*e^Lv:XXT)ln֚F0hA3XXX' 6b Ӿ5SbO   T;kzm+6@ܦ<;/|52]];t>XU}ƜQY0ٸV6J2+e&e]64XXXV7\P*V]' 44{Y{,,h,h,wηmDz;۞WƂxgGy)RǶ,QƂxw5<vyw ~Tޡxm~0Ïw1\O,h,h,`AcAc   8XXXƂ044q`,h,h,`AcAc   8XXXƂ044q`,h,h,`AcAc   8XXXƂ0?UcQT/"L% ,Ç>~TB$W& X}"i,TB?Ǐ}2X_\O_QsPYX,B`Ac   8XXXƂ044q`,h,h,`AcAc   8XXXƂ044q`,h,h,`Ac!' (XdO 4A5h,h,o44a IDATqyL87j3VIt2BTHVK.BZ hKhꢸ:0mf\_0wng0{~sM17|>mw/}8vXXX&&p~(0,87RWt>1e- &-  ZN}aqb]w   && a;,L,L,8vXXX ,r$),aіť(,.fj4p4hgX$~@ð{^W[iX,(,.qX$$,L,hkXt +,faqzĢaab=o+,faabab"X qXXX@ L,a1CjXBY(GEQݧ3Q?w~zlͣx_o[Z&WXŕ4,E fLoa`}^~ÓOE"¢fb'?lz~3 v 6/06 X p-ylbIa?Dz a> ZmX\l&ێ "|sb?L'/;Qa[vnBab탉QXbaffZ;"X̙X ,J0 ?{L,'D_X@"X&m  EPxo~L,$ߴ~ w} hwX|EaQzQt-{/'X'/n{kAᭉPX,7Xݰ8a6@X'uP?x;, +W  Eb=GÃ;tb"L~1*V¢U`'b" ܱ5ƍJX|E,¢+3,\Q(aA;"+\v/ެݹޗ[OE2'N|+w^ևEsĢaabepˆNm7͖r/tמ;X@b'a]N, , ZZk0\ F*Zŷ a19aq% Pm 4.u՟kQ٣Pgjb6 d¢fa+^5vE(T/ "q hb1ebhXϷ';,*1 a,X[\Zdh&?>,ƇŬw - |rlvMXH> ebAgfeDn;q ۽JW-+,侮jiyX\¢f8ŕtb1}UX@&cb%,"{jj%dh@+S5QX,Vb]XE|&a_byâlɆYY(GEQd?^f;,JB9$,GG ,&€YXLXGE怰j¢v}E/Sc&aqbLb>, ,VWW ^G횰 UZcqhX$?׏\XkiXX@ðȮXLծN`X\}B hBՆť"=< uY(aM zf(Lvwr~ v}X\|1,.M,⑅ËPIX|] JX\84,G%,,jb%fJzŢ¢ąEeCbaE,TzW,5K55NjXLV"P^dQٽh+'k,ۥ<aQzR톼PmGWػ}P(.-(ޮŀfkoo< hNWݮmvpX?ް8*,Ʂ*v4AXX zٰ8;`CޠgJ hŽG> Uޏw$EY,, hB&w+Bٯ8x{{zUXTKf_p4IX bQ~mҡ~(<8[8,l_X aâvzwfa1Q%,NU⋚&"bTb75aE%,NPXlP5K4 ۵"~aqgV4 v׎' ,g,? |*~nM¢E(Lv{mvTLMX {{o¢PwpaQ,ԭP /M[OB gšyM4 xXř ^(,v4IXLeWX (g -â칃K4 bX]HnyXԆE>wXLBaQ"lrrSWF+@xL! e[F|ͼیٷ{`Z`KUwBefy<,b[mm[w(Y|4bJU,6{"]od(YJ|4JX`E9XG]b;6%9 <wB*?x`z"zlJlg|"BeAX(Xvr⵼bۅIo&X-YP|4 /X|s—,J gFYX Xg[aQ\6+D%]%0 X8Bollmnnnmy0Lp8]\\^^]zNIUe?gS޽d2n/9MB+uw{E-:,`Vrn+|&XL`1Km%=j!Y\ᒅ2I:-Xey0Lb; #-6֢-E)>F[s&V8a1-%, _VgW, =NYe"շ0T,4tZt8"^씼EwX")U`TÃ.XaQql %&[`JK%xB(7ZIYrY8g,HB-k_+L$MUVXtEWL(Xlm4,TuM6 OB="nPXY(q}Yi1VR(,M .tPד'KLE!Y)z!AXP9P`vB ,]\8+oUPb(,\",rgTH"ŽA' )µ+P ذBPPe]X6ksE1fSPP ZGIYGejYiE bY0'\\KdqtE+b Baq$uw&zU,V0X˳PvM; eZ{EY(iᬅ'sG b U!(߮"+BsuaK; z-no'VXR,^t·,bMP5 ,j\ZbEQ\茑 0Hw)V[늰ʟN',Jt/nVX+]BŮ;gPgE>ZhmŊ_K|`]Vx]|ŁVXjaQnW& ![E,= ۪eo[e!VCgQM0B%\^Ȋ`+оB_',M PݎPOLBc!{&XT▅YPf{RZ$k7 PXS ߮0+m}â - s/TUY QYҢQ[oц .J1c|IF½I/ + +TBguPw,t ,NYUf!WC$-R;Y-RWؐ"E #%+2_ VX¢|q&,``5E]J׷{(faE(ZiZ :\\K_4X\Pq~ [Qe_ź!,Ib" ,Re.WY PH o-p‡.'RPR ,FRB J蚄Z`Q;ea;-cj8 EjZt1BS _&H<EUDYEqTWȂE'nWţyP+,ByeCjYv:]rJZ$kᴅ"X(}!F%hþ,SLUjZW~Eq#{q0VB$^tBn - = kwgMBhvdLdH\4Ef&V]', iX4fvq'jNeqU-kgaEJ[ 87KQZSDQ1LH"E_ Ei죹bE^(}`!佖-,5 *H@W-Ly.FepcLH AQW 0,Ts 8ޓY0G,:wBYշwB#yekAY\azRZE[ 8'R BoέHqbRWစ_4m27,raQYݾ`ѵz}IHoYEYŖZ4x 95cX4HhDP» +Z[1ѱ" Bi_ EZ5q6WT uWb,EjYa(]"-"DC+.&K= '݊VV_! vaE,V2XfBYTDB8 H`-Cb,) :XDW!m^6WT&V6Xg*,R;mR":"J w.ovo15BۋYB *ж"qEUhnbu *\BEuX YkYă)\h1gZ!.ѕ7БzR BUDWmX_йB k6XvBUcݳPUe!D0"-DEX›i=V,zpSTEt.U)-ϣHBBYbEmᬟz(5eQYPY ΢$-b"y80nN!RDUdE!VX]m _6Wԅ +Pew,Qb3RKgBR"-&imbZN|`Лp/ aV+B"_~buEOeQ;ge;: YX -b"1/znjP i+|,n |`ŃŶVq*& ,\"^6U-d$ƹ(:|?䈱TPalnTϞ9+A(jva _ ugqne<ճb(-" =e8.бB$+6\p\Q2f:XdPk)XԕœVY&YoYoZhk 2`c)Jb +tBAvds&,#,l},r, R" Ke,#r" ,|" ׮xxo+*tt*,Jg{0RC*hh@izNSiLǞRq]_!Y?n{ UL,ȧ,ŽwE8\7F⏄: 3Gߢ PZ p۸Bj2XTn_zP7HỴ]-f^܅/;Cwq| *yuEW5  '[w}, 3ZL⾄EۨADDDDԜ%*(o?V1vsErO EEKï,Eyf1m(3Z}H߇p!E.Zh 9Ggp- +\߃zPvx6bOe(b,>PC4ZBfUal#<1O~x3a65tWPo('e(Y5h_Zjg ŋ& #BoDDDDDgq ,VƊ1GV"߃zkEbnXLem(# y}?ĝdNvΪT1B֊\a\qp,zL dQEYؗj|Bl= """"ڿ5,Z1p+*{EkV߲X n#=[$[s˅- """s!\(~TK*j0Eb7,.'goz.CgjXEZ-"tQ]0NCżUBtGWnz>5{zXōbIm:T@-htx9hG=yK"߀cEɊzMaqXw꓅|,b0O-CYG=\haDDDDDhqBƊUt*}c7 mVNF/,ǡeQfP.E) a SOwykE9Wנ破+^]7XE퓳KmY7Z"jКdF?:WQ,d V"fֽbSW߲/C/CE~Ԣ-wzqqqщzSvTH< +OW[P+mW/B5.B -gNϝ,~-o}Z̴H.hMADDDD ,G7SB@MkEB?{E~  2T4,,Zrqt9x Z| d1bbzQsC±­ {jEEe1YĴWV|4bmPr/IDAT0E Y+¹bN'_","Y:TL o хӽ60hR:*SdT8U4XWwۋh =/,6b +e¼ȣ{ehfG[B|Q.CBΥ*"] ÊTz\ouȗ3 YLȴxeG ZBB|DDDDDC?()n0k+^)Vwm_, U4TB--\Ly!a? """"?EC?-(fRL(PTQe5B\:)zjX->:ZdqB.h!EօB"6Rm)CI%`EyX ۊ+n_,_,:h!и(y)7ߚs;ՐBBT̊ߍ\,ڲ0ꣅEa YZ3֜#YTN )&S8TxUhV4抾{Pc/, e(ba"B"2j-1ЄE6FSE¹"x=x차]E4ZZĶquxdƢӧ>~Q°2WqE`,;,"d хEDDDDDȟE1*V}aaXlUZlapt!0ˆDDDD(rR͇O**+V=4,e-BZQpatx:DDDDͷ(Oo=())Q!cE\gEחVɢ\--pl!P(x DDDDDS$T̪³¬+]PYPZDиHȼPpX=ّBO*UTXQ5⊫jY-7hQbEօ """" 5ŌBV<7kNE0Z8ZbÅE N&(~XI2V8VsKb@ˣ-.D1ADDDDiϨ)TLXў++Nh5[$\d](^x`4ADDDDqTVL1 NJ]]qfTE,^0]8`TDDDD8O2DVE?++.jaF7^!-jp]X_DDDDD9EMaQQQE 튛]qyX겈GY0ADDDD_aWZ+ZsE,.ղ蠅Eƅ҅EGADDDD/)**YfoCuB]2pȺ^`DDDDD5=T-aA!HЪP:YxASbmYhala хE .gR|'?H0SVE{ɩE["Ei ϋ0㏂6)#>"b\d!^Zd[(\]GDDDDD,B""]Xsꂰ萅{½H k хE[DDDDD/8HMaQaŮ>h./jDDDDt=40DQ«Œ!+˺bWgEH [.D0ADDDDO3;ޖHp[EȊ\OU/,d1B /? """"XYUIyUCq5âKѢF!0s}{ͱӈ0˱J?J- Wߵt%EQY]YQ>Wl;EcXg[q:/j1+]æȣXeXWzXE+-bUQ_L qQ6KU|⼰w(EpHb`β?qS䷊fVeGX9Zdik\u%E_QWEwWbkYT"j$.uH!&Mh~QTE9+fvŹa15T,z"j׸HS3vDiS|EEP}Y+mYDGl.& oe0\ey++ ~khQMR\"{BPiSDQѝۻ⊰YlK-VuE+1y8/qUʊ߷ˊEZqZmQU]!Ū)c]q˰YEy[TBepyK"׬b͢Y}iEo^b0u`8+a15kZ",/ qHh(EITWLMR[$qYS]g,.16 p,`lEŦcŽBX ,eCEmE84`rGԂ"O(*ª ,3.J}x8vqn8{_AuQeqpZYqxW5,vE!Q/)JU ,Jb\uQˣ z CyV 8-qQ̋Fap`FzQ ,NmJ\T?2pl{U@X a!,kV^ *'qU!,@X\P<\C^KX ,E_Z\Tp̊Gwx\ JbSQ| ,'Ŷ8;mznBX aq5{a!,@X BX ,aq5X˻ a!,BX  a!,T!,a!,@X a!,@X  ya@X ,  a@X ,@X , aa@X , bnŐwIENDB`mkdocs-material-9.6.4/docs/assets/screenshots/social-cards-accent.png000066400000000000000000000706561475306445600257410ustar00rootroot00000000000000PNG  IHDRvO@{\quIDATxw\Uf){Bz"EJPyTPTQ|~`DA"E!fS6q223sg̜_r2~s%y!4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 Nky9c%w=بCʯcO [>ҙct5^|{s[v]2_znS;;V!B :MjVͥc?]e58"mm$Eu=5-uϓn/.;7{ӛ)abt۵FM7ʖhZOlUHYYp D !KCGۥ=}Hڳ?9eHK<G&ԱRs22옽jɰ,D (F ˃v] p4|{H>ݥq̩ q-=۳=Sy~d"vin*9!]qk=3C0B?̨ggiD:Ph;c^ZK]9SzYOcJ?Өk?<-ZayFT^֍? }1ʓ$7?\ Ku$5͓キ Yiȿ[H1INi\FzIOwTKzMvgMdFD:sX}k;nоeGh-1J9ЖI]#ҦmҢ>[ v =UnRL{ ܷ"#CjTj\j@y-b,Ⱥ(@4H^^H~4T WHg3ˑ?g3/]h(y9R^GB7荙"Wj[詋]~sf̯L;"W!zIwU+DG(JΫ|;ax&ΐҒbKQZKw;r@SUFt/>nNH|/@UUsohڄ@*x_O^IRFј!t%LPW]mo«F([xvTtZvSI1޻|Q_+-]]>U{HsOw}OV~ic֯p\Q6PIlj*-}]Ru [Suŕ^rLG\N6~꺪TLcgUϽ.ZزCl c[Aoу* u@UF۰U۳]{×sݥF-C,UEMHQ@p*vmˣGV%9-6>mӱ4׎IwiNƹOncS#Mca_iB;i顧"^bԬJKǞ*;Θ!HviΞ(UUU1g &Hs?~joyuO6G_2ʪrm)OaɸW.(7.YHRu Dӷ 0Pm۝c6-uj?݆H_8}DzUOI[IW^`4zpi.99vYCW4ka4qPu]kBW䣫`hUl;xyEcHYUZfRFA*;vM"hQGaյGӢ"ϓ~|x ^Pz̐&Q6n~toyOWOwWtigݡ#[YD:Tj.}UZd 8;^92m8ԮJnt_l8[R"m!6h~: Fz2ɂe_rB ҟnv?~[\EBWUpjdgI ۧvnfsI#T"v'Y 2UjͬҬ5ߍoZUguSiiX OfzU?tdtMF ykVJ,\!\WyeD]Gc {EnxϣJJ/& *~ 7gy*VmK5h' =hr{/>^ DZ\EbT *xTc5ϴ察>ҜlXܷ|+ kP|<ѳkxٖ|[rB[`(tPiu_tU0a OzV>]:DY8ڶRXүTP{q1KӉ c GX^  ?}wJzb֯F K+zZU1NAWѕ0qWCuV#in}k٢iedQ7A+>]䪎9*:jiQ}>8R'B # Vi~t؆X;7>qNjEl"\N-R#t3yߛ4ʨu ny4s^ci}b;#r@StL_`q) _>unV%OH@$$RQac V=;K?3兜=+wM zE[^Mޜ%}==_C"7TfS+Z/gA uTGW<]rv c`o©o?[/_X6q}"YEGCZ1ZeIі Zan2zVu' c JW~s>Yi[΂6'[4ʎU5xUU2*.×/M7H6ڴvc@}Z~)wކVJݥϐO^fu 9I=իO] ~#^-sl*hTr">*Cv~~ޅ)3CҾkϽicYFVoyZϓ>+RЂt{}t_4qS@,nޘW/2jrʤJk>m<^X}F*oK?VxlXUq=%~EpRN]`JV#7nיx t!X;4vںSOgtcO:lǸyCOH\b*uC6n+_Qi~}}k)3S*<,m*0F4]RfvL#Ϥzڼ#[u9E+\ %9ݮuI7^n$/%Au%z|P=qOyppEjkWYgםEjL5yӶj~LNŸ^t%Lä>[n@p(RJR/c]eva ,Ѵ}*] }] v+ahuU7Ԓ `.8o*EX8?LzGWuc+aJ?c]Ut!Qt% OhJ,GWpFNzt!qt%,TrXt%U}F@-Q_2B@-Q&tQ`ډX"+aVWW ] P.2u+!OD4k] iu`PKՅ 1 !TmJ+Z`PƮ͛J?VW\mJ8~FL]B@-W[Ne4m|KڈX+a!4%AmD@zW2ituD+v6mOw)P`PޕP/+!!+!,!+!,( +! ,0. +!j;,8#+!j3, "+!j+,6"+!j,!+!j,) +!j ,16 +!\G@=GWB خ.EJX`IJ7`It%)t%@%t%k@%t%k@%X "X "X *XZt%D`jѕFjDWB ] .X &t%D`&[w /5+!R 4O?{Ӻ.?J# >]%}dѕ0]`dT?.m%ؓ Ԧ #\,J Ն !s=Ȣ+W`P dѕ06W#q1Ȣ+aG@-ZEWpW!s)Ȣ+Ep<,ޕ*yCdǮWG@ 6t%|kTRrR :,AVmJxqAUKn)t4fQR^T|\ڹGZG )|* RopF=$]yO**NzUP폤&y҅SΟ,5*g֝ҭTV2- jKWB Pe57Ovv,75#ݥ@uIn~=\@$#r=Nw)P. 9_`%dյpxiNri;c\ 긣Ew$Pd1ڍ\>X{kԻ[Ϙ/=dbr\m҉RAnB] TBڋ1;V,}< +Rr5|Sx'K<1KxU`@=W<(mZϓ%-jDT= z`yھK?i u@t`20u%UsoWWv6-fl[2xt舴@ڶ[ڴ5KΟr$iHi[GҲhnIo~|s+/{Ilip_OܤԨ}qAi^i&OWJk7B&Կ4-g6R<[2{PڵWZҪ kzzӋoY\P1Ⱥ,WY:hEeޤ5ΕڵA9ۛ-; =5[:x(5$Q7Ȕ.=hT{#YU~wWW`kTvV9:>o\Ci`+Η6mY b[F d$ M:+jClW6#& :~ڌ [y9RV6 {@9_zk[f$WzvO5=Xj}޼S;i@{#w>Q2j.]0h{FQ~^5ȖsAY^at-[fU՞ڶv#BeXD51 eun/]qѥH},=É/ׯ Vo4)yK˩у`Ԫy|QɣT%lܮgc4bm{:^߲Mlk~j.]ݥmԡM9v]gƩY_N#A`R7ml[f "vo(#IGlU>jxW-.b'G1y=n%/Găb4rEowc>"7^UhJ]|(7V6|A%Iu0Xu-^\8#U&ӕVN*BΞ]?nm0@ꘖJyWw~.  Zi.iA=y3;Jl.7}^ %Y]OJ/.yt I=HcZD|4{CJ];Hqk'5o)c,gCGwO G~%_iT#Mm~ĉ#I%ҾK:k9ri'ui/ g4v X<:4d6ùmsB#Wm{۹WZN[&==s?_dIFpz{57gz_m҃tU{IH[GG7>=bnH_ii=mZteeKHtu  =YFsK~Ӂonޛ}k;_׎ߦԼ"/ cSg<}8=1\OՋ&k5@FUd0~Tq/@O<6&ys4 ֡#Ңg=#>"?a[=4ʶO@v~,񟱵2[N{۵(/5OqtviԦ&I߶u6ӭݾEts oIO'Ž=t ع}lVRv-?Ӟ5O[xXz)OI^BWEq&H{"*dn|~Zn 8|Tz_cO>͙ҒܲÎõ|4sֻjmy᧋֝yo[xz UF%iF!I~oc>/njyW! ?K1Wߗ-IxyOKkF͙ygo(5V[v$;e7όyg%72 J~kӺ7H=߾3k ӼTF _W޳-W#$iZ>*]on{X<.u(aLg]<)-Õ#9 kowhcDUIp '^!1M/3mu5 7Ewe_N3gIjL"qt$; b3x~ 0BWޟcؗGKNH+,0{-kۮ`{H{@jnT0K&>8꜒v_U<H V-vTZk^ϧmU nH3j|,^xӺ-5O˘ZHCGO8(·EUytԪytl܍WWjြ;ee9)X'(` Zn>w +7Gj#8iPW˕$=_+iw혜r۰=Hndڸ5 MRamo&R6) jujˑI|#X;1P;oJ'JS Qo:aD  *Znj>"e5&y۾[_j=WBh TYүgԮ.2iAtj']ا5HŭFsGoʊ%b׉6ml?_Ƕҽ7лirhtlG/FU##qUhibOvIJ H͛Ju&7 7mf/o^T=R|\~Q~׼1Ҁ^3F l SPs'I;}=Rq;NU^Ժ ĭuz/{?Z~?FJ3{ڸ͎OXV&5i,un/ k4a(;rV{ҥgQ4y4yt I~ [sN5Z]T,5jh>DOnx¾=="G^aR:։Yb<^cJ:.uȳyڲ#ݥ(ڇҊ.aB'YYҐ/#]0E90Jrs+n׉y`!'JӑtDl K:IRDS6l ,5[ΆBUl-+Î=үtQ𖧝{]pm[7߫>pM:Qiݖt@EXuUү╈;?yn$&%SqӳUc;_3H{_։~'O63%I?H:zӁ8i䆥;H/o,w7*-~L:Bzڱ'9sfr UXuM~iւx+~GO$w]pҏug]f7_|Vm\jN:;i`Ǟc~`q]vY4k<BXm2wlWҦݒp8Af|kmUʇ!cC䋞%;HNqlC )U<)5h`)7'e'^(5}g=tc솱_rBh.w>t'xM>ݥk}| ,KOӧM/57iT3H:ϓ^yO` 9Nj$Io͒^~j< @}f.[A'o[G-ͥFRva+>novcE PvۨOw*5ɓ{GI{iZO y# #iԫyRn#KJII7yZV:V\։efJ{ICu$uhcv)fUPؓa;_{iΒ?P`bSJyZ)IXP(++7,ѫkkJ;<[wI%%M)/o3:ct03FbLO\<*}Fҷltf%̫ۧ5{!U~k5R3z> )5Ε~ء˲i}!P`P72j2v]oc'.6nfefH:I4:k_Y}W;I5jZ.K;HIKlP8OFnXYm>4eu'u$}bkFvHUR߻(ˑv|.,d}!ݥ^~Wz}FK فOr7THG үLz)OH_( H=9['P[`PkJ WxeFC%}H~Ƽ"2RF?KxѰ/{f=_XTcZiZO[KFM!uhv,ӆhOKzK=ul#k%5ΓeKF*>.KGJ;J;H[vxZ?XpZF T N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#4,8 N#441F:V3$%?&^x?4. c岥8|GשC]ci{oԽFѰ.Ut<ݥ=._xn.nUt :~_#OO3rtMF{H7ċ46^Php_v3pJE23g(+kc[e+9!]qk/MW"I*:&?r;>qq;X&} ;}GfXժ "{rkc۹W:P(m%T nveu4_ؗ-c*R] qM;m*ӢtsГ/z=}Ǟ>]rUt\;} ,IZN;Dh MއWE9򵱭s^;ic*e;kozYmV4eL~v:Z$^KCe޷[M^6RI7>ڡ#ƛ7Tj++HEY'=RrXVl5ճmPRRY)cç݆Z+TkIohZg=]wi~GO]K;9cgzn=wt$U߭ONt#ڶK6H/i庚?]0EZI}*3Qr;?-oőc5aQۖ҉Ri6ٞf.Pe|^w 'Hϐ\5]Mw8ߨoa ߚxIy|Z4.b4j HOn⭋)c[6Lz_.;hxYPX=+.ftZ7)^~׎TUPh{,Xnw9F{4+)ϾܳÁ:zLZQzinx>w4:*1O,F G?f>}ҥgG_^ۨgzM]yG{R=T5r9ss'1*+CO+?4QqOs'oƳ)CuIȊei߉/LE~-[uBu7{<]~6޻_@[0:8 ҺN .^-;D: ܾir"g C=OT'zq9%zH5;"{ҫ*} ?9Z07TSZY4GUs5εi KMnvl[v٪t׍:AνRfq?<9<]0ŨwW{gG{vè]kLںCɱɀ^b'=FKB~tQL[}Wyx?W.v]Mj;n/zzm퓜Iځp[5."ul4k/7<&ztͥGoƳ̗~yQ6<;V,7/lSAYmj@ZŶx1{Qzq< T+B`__|];ئElKK?}'Kkf m.=T+ϳ?Zhcߺ<6[W /K|$=fHkM i,Ry3ŕ1ҙy*́Byޫ6/>Z>#C:6݇K?{"\>ZTOqG s[IOl4ɳ'AH^GVYs55̒e,x5U%b=~GqyZ7IR|}ɛ;3CлnUAmD2[ב$rsJy&dm Bݟw ;H<i6l9Rco:ԁs@T9$dC$A^,dʻ_f/le|"3c/(2͜4¯oO =f̷j8ZZXacTZ2gmeo M葺F}8/rg{zkcw0Tn[NvZ62i>yǻ+=>Ŋ#x[s˭*}7Ihe[ #ȷKE۱ql6lDHOdrM{C=Q4R|}jie ~DZ<ɶֲ#vSx:DΑx]8=]L͚HچΓO.ƒ5+ntm6xg$R~^ ^BR]uW2! ]OZ$vۺ^x^E+l5U34{WujgzӣO׬Iڽ϶v5z}Rc@)޵"Nϓ6otio$>*jq[sii߲#lZIZeA ]\E;"tT hc̱~&xVld~d#+~g{EFgO0sojU򒱍r(+˶nzs\Km5l+nw#7Mzj/Me4jѪ r[Fv r;D*CuI2Αϡ>Jv=tmZsI3[P3ۍVo>]iՆNKy'T9$sJ2롢SJKSLJKȺ-cIEg g'lid5O߶+|vؗ~[/X͛ǥSSPK %J]jĴȯ}p~oc"._r߇}>>(.?cp4k0iX{S=m^#L a ZCGFi'[_}8|_xOVb^lr2$:4_<} O mmvw?72ǥ%lն}xBhdJ"3a2Α񜻒QwACS]CBUhX$oږ⯾M AF#J]jԡX'>T~b^RYf)sJ+[P0VVTMK҂啿JKđo{2 9 NJ-3B|p۳{BO1JtXc6sۿC]njkN֥:AC Sou[' 9 =}:F wﲲ쓹vg縖TNAJ/?Yb=j+j+Ru[ב=G"sW2.shde̒qZڵo{t_zϙXJIwH %$UqdC$\o@]BUi/" =mꬓO:YWe'.4ԱT$[_i4jJZiԹt7l<ǵvgթ=T/ՄFԸYɔPQusd,9w%<945/>9)cUd?㩿ۯ7OΙ>6t6髓d֋ AS?R}V%%6ik[X-\{hP+[J{t xcKQvC_3j[ᗨƹv{gt7ozᬅz<;}\Jzҷb_z|Ul 8W &y  {c1cick˘!=AdZy~.Ɏ-@j~7{GH?;/$c}94 Y}kV/?[ oV2#w%pIȯOz<{R^y]r9Fz)]zN=t>&S]$X^\.kvk `Y/Lv՛-eҗ.zw+R;EgqG< ]hݱ@XExQ;^b?y]G ç)9!1O?hѻ찿u8zhB7;EgI#wё"y3{Ck*}'XzI[7K#;`oeV:&BNm}l-=iݖEuESݾ i({bAJVPhм4eF6K>'}"!;8y,FXVzMI_hfO{w\Km+<]rv'ǿZ"j;[іx]AgNv=|T7T7h."+ݲb{/KJ3{ew@1ڽ~mi2g<(oTA4>˃<;Z`U|,-W3Ie&r+H[vH=i4CUݴ]Wԡݼ]zEOw+Ol&c׻{+q|'< /l,^Ŀ=me/frk'OWX,[#[OIi{!F0sIҚv;>C:tXцQ/~t7gU>uQdCT/~hCY7gJwjL~=Mˌ&m\W-f-~ob(FzuO+m󝯚S縖7:<{sR'K߅Gr;[ב=G+Y Ρخ{H߿Ӽv̫V$Ͻ!T]?q[v||7k{=}8Q$X^\.kv%%j]$=_`c'Jcǥ'mqN#4,8 N#4,8 N#4,IHSJc$rv4Jz!8.7d/o{\r8g+.:&?H?c stP:Z$JwibBoI3??祧jű96hL:k/z&؏҃KҮ w־Zntno-^y/ݥAUX8$OKG[%Xw?Y\?忪N%}+F K17Lj\:|DLzOԼ)c[6Lz_.;hxYPX=+.ftZ7)^~W*+KNϙ(xg;MW={cw/IҹKW}9ygH4jJ*>. 􎧕"!ygud`_`OhX+=.5:b?o2G ir,_dKc4~2O+j\<;Xu_o?bGUEcy9 #ڶNJI4sAxT~SvkUqtUs)RF{r#ϓIWO7j\zػ-Y,7~:IZ1A6nU E]_7^*)5ofoF 0ӞޛSy^l4}¼}7jÍ~;+w/:8t%FH [6-xӬek\;Fss׳ҰFO×#F]Ƕ[&үo7jָ||Kϖ6CJjar,k%FZKeRN 7<4 #606@Õ߫ف6o*aE+{Vxiu[߉o 2W uh#|Ѯu^ ]sԧԼ'*3Us_Mw$@`Š[G{zo^l[4|t;sҟQ)3CBβT T?=coBG/Z:kyFX|ggiTےGS7o-`ԫt=/:(zSf̳-)23?oo\nhbO'nqDk.6ZӆU"(7l]SnΨOwiFzO}H=>Vӱ!}:t,]mCۯ7?\ڱW7_?y^zԽ.gH>jUxDisDuDVc 2m?- j|ҊRZ&[{Y8-_f^k1wU1c <)s^ Nk/^%K]jmI(46[u> @ppd[^{PW#A!ITAGn!k-e7߽_zcb/ϙXKw-_]}hPz&+aVD>_Ż}BaՔ1F؁l~u;  IZ8W&y  yx77~ln(kFm+*8׎r_vycԯg뙙ҥgr:"D-_y}k=+ N!},{֬Zk$RΛ:-m˟;3S-n& xxhy֝ ]k**}+P/]J4zGLzIOV?}]jmsR,f̳cy5mlJKE/#اf5f-W^燺 LIΒ.=G: #ERffa^UL҅Rn_eTZ*]}xqG< ]h{߱AXvy/{coֶ/-yƋ|k3Ix@?ŨXjaXJ @Mc/wQ=uϝ.1h.}[4czZeU'om[[ookO}ntdQ9usz縊v,~b4|F[vV5NPzu 'EGlUz&b'm=,h^"u /#g-O}0T^?燺 LX8W<J&_s=i=jsٲCz)O}ΨE.S!KCk"evh?T R;ѶG׎R|ۭg;톭IjS>uPt>Alo~ڮ@Ͻړ84z}F7Xk6r\O>O>Zy0l'ޖ[ S_2rp_-A]rA/Vrrl2:1'==]cǎرcrJ_]]gpCl֕W^uSee,X[ J&I2L>d2O<裪… <[Vffl6>3566꣏>ȑ#} tOkڵX,~Y_||gbh֭N38gª*%&&~zl6C<]g 4䨢BRSS>c : Y u(`nkɊҬYgB:[gLLНSN)##C RxxL.3Ygu(`9-]TӧOmݦD\ҧ֙E<tL+VХ^?~wy\p=˴dGƔ)S4l0-]ԧޖ1p-؁Փ~z#].=iŊF@8oځtZĄzOсF A,5 Xj(` Q@PF A'|'|'?Df'|';f[-O>O>O>O>$ޖy%|'|'|'|'|;cZdè' vs  ,5 Xj(` Q@PF A,5 Xj(` Q@PF A,5 Xj(` Q@PF A,5 Xj /`O>O>O>!o4?O>1-Y!Ie@h;xC۟|'|'|'|'7{Вkt~(Z-/h?O>O>O>O~WLK,qr!'TZy~nAHг, XQ@P 7zhĉ3gT\\˗3FgVZZyeeeo/}ywe2IPj'33S .K/'Oj…Zh^z%;zh]tEZb:_||^2M٨`%DGGk*..b֭[zΝe˖iϞ=X,Nߛ2e***TZZz<]@o@BmڴwXkԩ뮻tM7)++Kٳgwi= .dee)//O?|EFFxIIyB-_\ӦMWi&t;#ɣu:kF˖-Suuu[,=nd2RkΜ9QNNVXzѺE~nC@wжz[C Qr!**J]wVZJ),,L63f_~Zkݺunn{./>@_[;!%oQjl6ꫯ۵}vNEEE7o֮]#p n͘1CmҒ4eUTT(,,ۧWJ]LT7?Ыo2zXn07Ow^N8dǹ)nFVK+noҤ&K$),,Z [? X*$hҤI:p@@bccSꫯVEE-[Ǐ+!!AխVWW+::ZZرcSO9=6{lOҵ^ ɤ>Yɉ0qy2xt\Zn);XL%';]æ&Kluf5V ՟RxDls1+"N۟EAKmyz\eee./w=3ne$&&*,,LZ|M|+p)yS:쳵k.54`?6mZ=-%)xdap^NVgL&杛/?§뢰g0e)#-Z&gFۥJ.86Y+X6T+9\QɊLrFNKѐA :t'']d2 oUTTh=PTTΝK/T׿oX|[dRee $Iׯל9s *]/Zfռfe:VRl6v4pT3+[?*,z⹝ڲT]K֘Iɰ0)?σ@(ۭjj,WScDhۭj?%KC"̝ {9^ΛH IG$Vl Ȏoūt 2DبO>D HVee:IeUUUU__/:ǏR8q`9c Ow~eggӹ'䡟=>UFCoՑ ᱿sVtLU54TS\b$ 9ry}ՕH=z4Mj pXJU4VRBpdi(SmUaY$͛&Ity)!]WbccuW_TYY&MGD{uuu***ҼyvZ婴Tnɓk֬YڳgUTTa3fкu[t.]7ިUVi߾}y^:PXwcV||DK}qyWtdY=4"<]IIRlldj,7#˩."¬oC74ZBV'}aSC 55V**6CaaF -R¶Zvկ;P~o,^SVVn65p8tRM>]vrJIw(\hQu 4Hڽ{wƋffװ[=g7:;&MHUZjp}5pqh Q-ͧs81!R?XF @ۛT_sT(^ϳUW]N#сfd:5Z|;G$pq՗7jmڴI6m ȺO^]]_|Gq9!|jjJKK;<~a=ݎya#eUVѨ;˴rMqeEszwv輙Ya6(Au VڴOs%]U:Y2Ǥh,MhGުuںT+Vȱ]ͫGW$=sZd. ӅtδL HY,6U4/*fqm\"Wenko[ڥ4 ;VcF&kފNf~k묊0?<2KC]Y^ѨH'Ny~';J[{vz|9rV_+)QZt~MPN8%&DڶLowXCLt.3@25bH"ew8TUݤIO] Mj+av,6)&.[^JxN^fs!zl_>`O?AnVllrK ԇ'Dž+F;׎j},::L^3GG7N̳u^B|ƌHҘI꒡vᠧM6I)QNDŽ+6&\9qZ?@{ToUQq9njwngﴀny3۰8'd}MP4G>xv|[w:}e2I?PϾ躓ECt  Ѳ _wjٓu]vuq }zWw, di7noR]u"clp K buHGp[b;㹳gucƦ_حdyVYHx՞lׯ}}G=y9zi g~}FOvYm´]c2]x ǝN4Ic4cjo{*|^(כw[nסx՞$]h~I~9}J7ϭK7#t&K u,d7 !OD ҿC,뮄}#B5n Kvxޫ?O.EA9qއNԵhsffiἜ֯#"̺ o7}Cz:VRa=7{2҂k2@,>"q@(kTXoS!ppg4|HbcpvÛɶR%&Dh,N/^0H/ӹګڢp?ufЀxMXmU?#(!>B?MtL҅ssngcX"Iz3:t_{~En#5?g93t78'SF{.nkWͪOOh3?Ϊؘ]K.V'I7Mz;zcd2)+3u&wL&}'pq=:vNҹ3᭟yҕujQⱭ_GDӜ. Ӽs_jw6kk1 AuG?@f3=⡖K i=rM.]8O#VoӏQN4ebsJcuuV]Ҧ+e֯*u tv{y}MrZfӟ9=vδL=tTv~QuV\e Rg:u8} IR^}lv~tBBXI?ُ?S;o.s**T4aیw=eXUE?cUT6山Ѧ7;]4o]mݙ0\sԩuތ,=2:*S6c;?pzm~bj{rHi?˹Z-ۛպ7tɎSvfԩMNzu! ljJAO֦Z5C\"te^Ld(`y_w%l)~Y?9ڦֹ}bc;M^"v~IW;*ݡniYvպ/:Pر` ̩.ZD{t z#;}kΪ;,py6vN^{OOjeN2a21Ca?ugz=^xIK~2YI'N5އ?q*PxOVއS'\_K5G;.`ua ֝š ;\ @O6ըDxᰩX 92#-0zkHzOuWP&V|d=915Eh7+sرX\<,IzZR65uw}CF *m˶9c7اۛiu֮t {Ό `=ܬ2?Zy\>t}8bXswa\_~"}㖵N}nS.8.U~~~~d]pF Mt}?'|CϿ/ӧץ~ѭ'-E.^XI}2K3hugG~GϿVT[{}ؙaRBd_gŹ8W\--kП^gbc5lzj/~<ɩ0_'|FfQ}1/^UD ޖo[U_{/ƅ'fy"#|_J8d̵c5䮄[N?UgNH#":of@yDjʝu;饧u7h?+Vq..Qa%_ODEuon6-~EFv,7X;}48wmϝ_ -L}~͹?\1x>Lw0&K#vGkQ˕p?~d1EQQaA%|'M)v:~cMӿ=|{c~s!|7?7B6?R!cm+!:9}pH[< PfFƍ>si^L;ٞwT]h˘:U֠r^:e4"M?jk]L yd?뮶s<ufwǿ@<'K;Vos5jhSj>lW]`Za}WHMΙG=[&O>yvG?U<F?{gڠS/؍P82I}] ʵź+[4!UW]2ԩٮ2?qk#&sk jjԟ>ׇoHMeU'~B[:O8oFms5wVN o3c;mla"I tK7;*Y+X? vll`OI 6}ۘ&{=uz/$IONƤEwNnWaexއ[\K m:of&$lZS;ɮ,񴔎+I u'g9v5'z,?] 3U PuM˂jk.4Qz)ݮc~vf.(egƶpq>*(qZl6s1<0^fDidqzq҂A>Msie{(=tMpbcuz让[~\d@ڳάĩF+ez$'F*_h͙o>0C񳦶IO>ܴ唎8pܨdw$dl6)_n8;׹sXIphgIpnNOᱶ/u'r4di0z!)['z.% F}Y.w^ħv5gfWJRR]wJDΪ Hs^Λt|㖵:\]_w鬱N]$f]s0]sYe*+oP7nO;EoD=.A/cQ< htQj'?K/r8rønZZ-:qn=psu9./m_~urǧ:}[&jb_6FK /i|] ~֦Yu/g2G&lғ,Rs՝VSۤ?Uz]NC;-HRbBɴ$'_qwO:}£񆿷^syvΪrq#=ݡY9LL%Iw@l.އk7׿^?8|pכlܲStCt%C]SQ6]q8j8Epȡzs=q)a`}q56:w踚kiK6X%Laa& m_>?\W(M?]8u8V{6tz51kojɣut=:\" p}ZcE!;vC)7oy>|o?ReۏW둧wKݯ_~/t64ǿ3xP&÷@xT+k΍\J8 6TgB_aQsۇ pUV[sw^}P[wm.fd:ꭺ a:oFrfReEU\A.?Pyҕ?NzmrR)VQq翜m*suδL (&U4`a6o;U|v{,u0Bc)G=aZdcRB_8͗W5&dлX+F Pr_`+aա?}  Fz.ϻzr)!+jT} Av[wo(`BVO^JH &K1>Q򀷅,^JiI-΅) W@hۛd5= mX(`,/xSץa&l=kn@_&;+ *aiF7k)dN.]8X_l#:]Y:vCFH=2M۹V X@PjT+,O>Z~;/SO>][?oZdCVoˀO>9ݪڪC>=ycMO"|;g6G(.qc ,#vO>O>O>wn;/SnH|C)d S|O0E @0TW}apI&'7z}J~n~+ED&(<2aJdYF@L=^b 3z@+Bt,5 Xj(` Q@PF A,5 Xj(` Q@PF A,5 Xj(` Q@PF A'|'|'?Df7:7zz|o7c%j%|'|'|'?ZNލ:7:F}!,IgDj%|'|'|'?XoC=otۿ/䛖,Y0 -@f6kjFT+f7zRBЧ? Xj(` Q@PF A,5 Xj(` Q@PF A,5 Xj(` Q@PF A,5 Xj(` ^- |'|'|C$hF?)|7z|Ӓ%Kz[_䉶|w7֤XVdtS ==6X6k_zr<޸)??e荇fFP|O>O>O'lzxNaŃ7֤Rz7*ߟ,ɸן XR,P(_YF@V*`E<V(qUs  ,pt7_־}|^ߘ1c4{lG$M8QsQBB|rw~Gt;Vcǎʕ+u7N\pc;l^:\u=Z]t֬Y{L W_գ>r-Z\uU2Ldj}<>>^^z/_ׯf̘u@Δ)STQQRoܹZl#"IիU\\,Ţ[*--999׿#GW^ɓ'%˜={I}PxY1)JJTCM W4=<)%K8Vo3z=.?!4e 6̩peܨd{zC=?0~ZbsƚC#SjHvoWWS,aJ #B[@Vo~>MQaqj{]./+VرcFY7\;U[Dര0OpkٸpM$ X*!>BQwUKh-BzG^0g54{zBzdro:k`,fs[ڰDЬbӞ=mQ+.Ʀ(9)J V(ֻΪ#ۻpv.҆hm@ 3;wkn`@ K85= Xj(` 1VS34zxITFZb&:Qڠ#Gkko>vJj^6~zRw=TXvf5('^1odV;_q5uxB254 ̌4 j:v^VONh'eڻ͒hI48'^iъ bSUu**ko>~Jn?[ƈ8.UcF$V2b054T]ۤ&+/*rS!I^{v]yêߕ\;J_1u*ѷn]'MHNv= xC5cjƍJqJKRTT-6UVYTQi=ڼ|V*K{UOEGi~:1]#$(+3Vq1rHʢ5t{>~JO;/~:UN2`I`Amz9I:wZ.xrǧd2\.**LQQaJII:vsQV[WТJ3/nn.xÜZ]w'!>~1#5pxH/]0P'KՊu3h@}(͞)i. fјɺl`U4WVtHKҥ kyrኍ WfFF MYFH=Ҳa%&yLҼsˇkǞ~Megjd]*-k_OoHvHW Tl돊heEkD;i@a$_z_ ~ a~uSoՃ?I:-^u/<=N/=z,jvL׮-PjEW$%ĝ) |Ss:xNב,=)ls&+GOO֜Y.W->B=>bcuwgkWxJOMׯWk<̫ג7=<ĄHIRX=fg?i3iѺ ztɴ;:{?ѕvZrdf ַ)xܙPO>o4甇t?F{{+VK.凇t7kD[Nx$G'?8K,:bcfCwM=4Wlv:#d6t'WTTXe>̞:fwLѷ:[wJ7iBy!vu0{_' Dy5._{?i4=s4~LO|莯:{(=a2I_jc]OB}O>OZNލ:7:F}!,IgDj%0=tٺR߻d~%i w+.6\߼frǧo#tw[L^6L&tm[/EK%Ϟ?~s4zyVW˜=f*59pE,O oy7]zgg+>Q['׏v9WFkWv?fRgPO>o7֤8jFoP7zo %K8zF-pp{nugSp*(ѽqN 44E!~_]oĭe&e{V_|OngC*:zg5{ww'qá#W,Ͻc1;=6kj)7pTC{b٬/a4v>wHJեi]1LX$]u0KJ~#+I7*YW.#YɤW[C/z@zk5QQa5#ݚG-!>BsfeU/q\X+8.0H6^0jh8Z=Zӯ̌MÒ^OTdkm7;56E3>T;PiYbc•s5xo'p1ů;zN`u߿leVm9W /Qccǎ=SW^2T߾f[L&}Q/X\v@/.ݧ:(&pnnYQQzj6m9)QmܾsT7ʼnS2.=N-56Seu~tx7+pӿ^?z]SS'g?$У%u[R._mmg~:VRcF&~J.DZp{p٧|}=p\;wXINWmQP]yE]zBYvgvtYjQ]ӤWΤHv^SNMrk=)wk9I.LJrb|_t[jٮrmԭeܜ33˭H%@a~.W--6=V?kgAn,klϯh) is̙=(xulчw}iV;5M_Xûch*T,W/ֲqN_}vr{ٔHaw]l?guij|\Dϛv3ۭ&5MڶTY[ rgynSJ=ZЫ+lh ə_QW8z*I:ruSEWX]΅#GkZYcSZ*^ h]~|;usxՓ:|U]xl˓<͞MrdLެ_z.p 9w<}̫*׸uǰ]ܙGjsGNfJp+Փ'Ndj٭ FW<$ XAl8z|`[ *`u7!4?+V%ix D(.6\'=ͽHRᑚ &MF(`yaRݵ+\C f1錻w KOurFX;7[a}K\iBIcܜ׹ܜOg ZA2TRbyH-^0HaaA2(N_U_+Dvg X\~,_4Zkhp&(1w'4y0 dp ՗Mcyo_/1wOc}C 'FwnW սst{Ht`1w/sRƸyb#IɠH~ڰ6~zB Ur^6YFsOpܽ  VZr1> ȊskS >7^6\nycw~rr9tv2Ңfkq0?Qrc|r'N7Έ0qk/W7v[Bhsn֠# P(`}ZdƎJ*#1!RcOWؑJpk٧^\MLn>Rǥp$= XAXIݻgl2'ٽ/Vx| !n-WVѨ_x4 JU^es@(`Zn޹nwuZ0_FZ[x$e ^omg[MÒ< nc[EWhdkh. ZDp6LT{oըHI KNB}o/rnwֲcG&CɇKd7_q;Z6<ܬoU,P rV]]ֲ&tuupn{pbcNٺT{W,ܽL k6lpL ܝ+M*,^87GC<CO?T6iG^ESyް z:wz?$.h8ilfu_ Í%Jdžk@vΛQW!_сLs,|]B|rǧjAQAJ^di23b].&:L\mrRרjWTYi)CNP~]73K3 Oh׾ WX(\YV/PWoS\?$&1!Rwoajpq ph˜vtYvUVYh Px;vkW 7kV^f9wQJ5Zǒay3t̬ ^5=yFmWfFnNJޝpqNojwX~&Ur܉ytk cRoIe>tXw>I/AnyvQ>1zO>jь~FuN>ཌྷ7nYܦ{+ZGz={?f9pF&=V=XQ p:K6~zB'K+ZnYWoo]~'6o;ptk#5#mɮnt[[~dZd*s >[vfkd E(2Ҭ&CV*kP:W;ʼ.|!4q\g*1>BqjUVިŵںTk>::aֹӳ4iBƎLVJr#$IUV7d>S˵rYo CUTdfOSs5bhg(6y6:SJug凿{h&K6gv)L_='جٻ9w=)!yCSs ޟ++ӛ֛~ ڽB/wC锥ɮUjպrbꏎiuYnv{U\BiֲVx4z; XV z)JMzfI߼z[ZvtBUQEQÒ79C.rZk?>!.!>B?}L.fԉ:1o_v*a\B!eޫ~1=d{Q8荏?9^ݣz7 X-6`v~Q#y66> X⪪-}ed;Wއ7 }d_w5}J]:xoZ(`Z?T*A ҂wN%'Ez:V?7;/W`B ,@W>KcF$)w|FHqJKRlLLjhe:rVuGv𢡄y ,@v>ST=!I(` Q@PF A,5 Xj(` Q@P3[@>O>O>Hь~F/SN>o7-Y!Ie@h;oBO>O>O>'fW]MOmOXӺ||9Bfs.:{{om9v3"?!y׽ ,#vFm o?'|'|'%5UO>O>!o4甇t?F9+t˨'ђK>O>O>O~`uot?F9ߝ+tkO>O>kR |7zs;WdZdè'`v=;6kj)7pTC{b٬FWJHazîڪC)7~,w ݹZP@JiD =+z7W,o$ Xv_I(` |龒(` |龒(` |(` |(` @}%Q@JWD +̟W,?$ X#w_IG(`O}%QJ?TD ~+|+|+|+) XO>O>O~ot9!o|Fo@}7KmĖ\'|'|'|Ѩxo7:|w͒z[+EK.O>O>O>ƚC-FwߴdQHpPޱYUWSl0xNaTEEf7zRB#jtvbX}}(`#=q(`#=}%QzJtD n2J7}%Q꾒(` Fu_I #$ X膑W,t+`tD +: W,,W,,W,LW,LW,lW,lW,W,W,(x$ XPv_IB^0w_IB^0w_IBZw_IAP- |'|'|C$hF?)|7zwWn9_ɸؒK>O>O>O~`<uot?F+_dt8,O>O>O>XoIq7o7:U~Ot_yEDKLK,q[` U^u5FkV8NUxX6kG=8vV ۣc3@ ;`w``W֯)`}%Q)JRz[D d+@W,[$ X!v_I}%QzsD OW,>w_I}%QBD O+W,>t_I}%QsRD OkW,>u_I}%Q3bD OW,>v_Iz}%QrD WWRs '|'|'7sC:F2t_͒q/\'|'|'|ըXo7:?ߝ+#dts7K%iO>O>kR |wʨ}oZdès {ýc֫axmr ѩN5$)Zo0z=pU[u(h'oTDd-0~,xyp a1=|)6~C@΃v{+m}t`2}z`  XHu_IzP쾒(`}%QBJ+jD rD rD zD zD h}Ռ@, DWgP2t_9drF }, BUGWQt_F }9 XAQ0W]`0nBYw_EEmʍ- |'|'|C$hF?'|Wzjr~lPdtc}oԝ^$,Y␤Uvt/\UvI>];vV hm5)ltl""|u4ymA>O>O>O> e4<rWfsI2a $?!?9BQ0ylPDdhE #SK@3zWЃ,Bw(`C }= X=+Q0|C ,w+Q@}+t_,?ʿ(`WE ? X~DQ}t_,}X|DU`QWgx+?|'|'||'N9JKUof[-O>O>O>O>1ߝETnԻYVoψ<ԒK>O>O>O>zcMӿ=/lӒ%KF=%?(7îڪCA;y{tl""s  7΃=`Ϣ!z,}(`xG Mt_2,7}e Xn8A(`t+cQWƣG t_ X*8PpA ,v .ڡ*PhC , NN*8QW f@ȣ*Q!F 4'|'|'?Df'|3')}%K8$i< mot>g}G>m9vV hm5)ltl""|ϛ,Y0bmat>O>O>O>O~76Ps=.^K$\>ݟ5e4 Xe G+_/-0~,#pރ9yw 7z(//O-rzvߪcƌٳGy{YYY/k߾}^-==]cǎرcrJ\BBBBιsjٲeڳg,L 4~Zk׮h^ZŲX,ںuҼ2nx}"_g:7pq*==6٤qk/-O ]$-5Zo>+oXO2xd [>˻ w˅͚5K .TEEVXBtM:UW_}***l2?~\111={?k e S2'':]nάl%Gdi2Ң{pFt_N\ؽ{woܸQfRzz?3qb/OQ94Q߼fHdiu3s^3/_4X_hlw1zxX\5M{?gS޼%{˸wiqzofw蒯Tc;WÇ$|lzwmkc7Γc7el]iv?^B߼zMWB|JN6uGbssmswG3_svefWo<͛7{F._4X#%)**L'Ok'w9'3c?^]qw \1_՘8Vz/ Xf7N;v:+++0lg~y1c뮻N֭x'_뮻NVҁ]~V^$g~)_7Mce9TxF1:'/S=ofEwPB|_st=| 7fsdir&XI˟y=[)QjlZFk MKKϥGUB|Jd:/=ZW|iFMՏ7^tQQa6Z1z9Lhi20^&SZJfO3f7O?3ió4lp*U`Sjr.?P%;?j-}"5bhg:;X+_~kL&TYTvffLS2۴jQ/]OrmdfLPFZNv<<0^gMQ}Mk6ﴀ>jܯOvcdWo]8x3Wݯ9,Qņdi-v Ȏׯ)g7]msOGZRS4aLmi]<37.*I*9Y̎՗/j.*z*,zx1߯<.,og? EUEݮ9s(**J۷oYg%٬SxNEEE7o֮]^c>$QEŵ'@$)V~~di\g f~w|`mr/R_4r8zZXG>kct%CuwieZ+v=ywFMmo*y3tvXW[[,-O޿ +ݡ/޼%{EE{Tj$KՆg̳Lq)2LEj/~e?x2o+#;{xs qc?kgr''wA&Iۿ&IW/8t=}_ik'VEESI꒡Z ܛ42ҢOj̈$ g{|W| D[n@~6x\OԻ"i%'Edixt**[m6VH/.g}^QV*ѣO濸9d2t[iy~VUTYZs^{P;(_>U5MPeEfIFi4aLV׿ip4_z1EFu<ɽl[ mͿM"O$G͕E+{ޚN?͡^ܭFM 5,ѣkgDFi%5On6;FE9$I=:_M{#w߿L?8K&;~Sy_KNܥ5,̤S2tF5M9L33w|-'@mk<_v9v81@TY?9 w8Ho@|{ƎJ$}vAOSMMvz,t <=sџۥŸwb;c*T]/T+Ij+ _L %%%ӟuVWW_r{SSSUZZO"w^뒤YӚ/lۢ>lI{;]Zbuxgj )sZtfjn$G]5+#./zcelvu{])-kpyǡm;:|fsXI#xGeuSοX=^:ZMPRBDuee`9TQiQfFӥ튿3"#S:rV9q1>*8S?y]{*`wRHe7*Y?}f2޼%OOW&KU|\^G94nTrk8w|3ů_}m/^;q^ VYeqYCeÕ9NJo@|{Z6tPFKr*SWO/c@?]zj-{W +:VΠ~zCgNm%mkЀpwp3tZb5tPBʀXIҾC_לudVh^'*'n Sۿ{h}ѝ;%ٽ_6]exb -:ƌLRJRTx| kȌt7 9/h .ߕ@죄p=ө0pq}.}-ywPuMITbB-'M(=5+v~QؘpF`|WWcv[c/.n;C} FUU[̘۰,ST=srmzJl?_Tt(hx|W ;5ScncJ C[>V(`-OLo :xZL^SS劥ъ5e&IwrOoWn[Z{Kר}cu9r8ɶRUV[p8t酃Z ] o>qx{}Q69]1*9Ya4~tk9:/`j{Ӡt y󾖼vCs5iBn8YggQV(p,MvBƤl6iӧ';S{mJ y ڢ:qfldF}!A?:EGWԩsPoDOJO5ScncJC{}l ~w*1!˿5rOy[WFKs?07u9%u_z{kZ]Umњ 5x@=Z|zV^&_o*gu7ퟗw }-y7m9dk4>RYzEr8O6o=Yyz+nkWqmchO1,XA Oo7j/FS&뜼~yvn8 'ϐxMk%S\ ߷/awcN_i6QÒ$IEGh`ܖvwx%7%G謱)ش+[(IZ4bcÝ&oN =-a EF'+*2i9oגjYi<3w [$霼LOm zx]o]v:~wFZsף's̈рXEE5[+ҽ%6 )tw'?Cv11%`} :$ޖ'y/-P}MCvtҐ/-o¢ soR_0g5WUu:(A~b$io9}p勆ƩѦ夫cF&{4so|Thn,ь KwdYi8 NMMv}tdN=3cf0qn[OZx~&!q'l69C Wth3꒡Z"=g=-a =)]KPgZ0h= {c:]vjj:(A_bõmgt#wY[pՐgy_KF;TCuѼ5ZlMꣂ{nF OҮ=w @֮xzt7Ǯ@gu ~PX&-͑n)ȸ#OowNI_w:-r8UrRk<^Ag^v⳼< ƷK]U*!>B .5tnSOOθmgǻTYsc԰HO+**L=Uٙg;8Q,]<#y+H#'+%&cF$[s%I_5;vWj+!>B߸zdeJ 5ͭkAɉُ'1,̤ ˇyI;TYrtw9u;09.] k3]wm5ubL&fhX]oq_9}Qw$*,zr8Z`fj7kɷrO:r*,ڱ\F%+<nkW<=FÛcW 3:bffNl-*HҌkGI^]qȣ qfw#4q\ja&]wL͗+j {~GOv,ӄӷI;qɮ]{*: KGidʷߗPCM>Y/O'饧9 Ԛ kشnc!nw|~OCEՊ `1NbU-}㐮lb._4D5uVD),̤c%uN澪=M/ON̳ĩz%'E)&:LUiDWK~<]p.3@EGkh=N_iȶJ ^Cۅ` ΉףKުp"#*hTiyR:uv}ܗX7^?Fah[o7,ӋKW?8K_ЉS ^%-'uW5mbƒ֓Smٺ<9FÛc3~iy34gf(>.eeM7oTT<~ ?Qj3c!͡Ǟ!= :%p8,1şBXlY&yrǂ.5xU''ȱZE;L zZ::\\q_wwm66}L'K;8KRQqnC:vN&(1!B[wm/Ҹ[Oe(2z][vw} NѦԔ(9VǞ١Gx$iמ }jۅhfq  ۢ+x kΪ[٠WW҉S SUEsX7޾N?o~/hw쌷vVȭ_%y#t&bޛ~Ejr8/iÍ'U9~[=֮xztǮ@gq ~=q^7ݹ^6(#-F1:VRg|]OkRņkDY,6ZwT߿sSv g$?uLÈ ,Yh*(6Z_lxn^7u7&l;JcC, eF]NUTp:|gssd9棎9B\lln8$GUGTQ} 7@Ofue2T^ѨsVZo]z/tD+D]@rMVٻ4&q@Pfx+?!O>O>O>F3ol9oJՒK>O>O>O>(-8o3"O>O>O>O>kR%gc,Y0 s {߿C46Pf0ЅTEE[`X@W(` Q@Pn@芈LPXx@@KL&Z>xḭs[sPnm]P ??1[466Ǭ:3Ld@ ȊɮܦM[N8j{{1=>{?9"( $n$MMӝ7O$}ktX#rOo71}4A_`$*.a :0 ,ITZިں&U6=<>w+ !$$qA, ҢVm⵷*Z+rުm ,(lYBB !!20!dd!|A7s9yxBezE~z[rpapκDGWZWW~tXjW=(`I*:^?Z4 Ppq圔LRuMawA|}F7gxF`IJ b7n-ѓ/|){RbtUrh[teC1_<0\9[Jk9i?*F~*+oкE_ά( 5lpUxF)>8ϑte3׃djS9L]wuI1U}ήqd]?=YuufMku)!.Pf~[w?{lK'k.o8YMN8Ҳۻϕ6HץhDf"USӨ=|2-]S_fuQh8 PCC<maʞ#+OeƍQxNi"w7;ܮ|ζ\c!d]>9A Aj27J}QZ_Zp$Y510:FϽK+VkO93S$IODitt_R]h~M3;dN %iX^ܡ [=5A!<õ1W}Y '*@Ghz֏+'*sGFNVDNթI qAM5"3J=I +mh}̙co|]8Nd6[wJA>ʈRVF&SK9IxOU9eRZJ$tBioJOk]N"9$Rfmf]u-^jwhYcFGKfz, т{3Utv EHTtJOj8IRu\4z~HB )Zw?$eOJ F*-5\Fh+1!Xks*? :bg?ΰx) ReUMT]wuz@/=^6q9jtd‡Fj@RX[窦I&4d͟ߝm;KuD$93SԬo/'1ZC{25#1z\iΡX,z楝b],ۤo93S40X7 qA:VX^ޥ+7Z_7rUWg$͜f;hGni@᯽6W?*FO,Hz@+mDgYFEoo==qZdk?w Qi{~`~6H sZ3}ўδwg#㥜-%z*hI\ߝvFgۮR)y-kxI猞z5;1jzכ7Eڲ1sHUz^O/nM`H?S$Y~zvUVYG#oUqA^^& |*sHUTMM$g~EH~^>5ѾoVؿK҉:F>(>GLO3+m⫏ޯ2-Z>7a3'6ibXi'*>6PG+Twf$"}iVʗd+Z3WU7Ooi$m'ńYӓmj[\io#:ӎc {RRUV^Ǘl:$i26gV"ZmߓseGꎛ$IϽK%'>tO#әiىӉ:oT^`z뽃mngV)N}oB|I Rjr#7^##PX\&ZcGXPqViY]ɯRFzv䖵lQ)&) kbרo|ƍk Z'Y6!Zy{G~Sq#SGt;ctVIҪuOBnc'SYQ w87H N}jzg4t4pWjπIҼ77"#l)ю2eeD&kSڲ6svcIa~ xr=p0Iܫ#VRYGzO;RSk퇶fk+q UU7j> q2LZbCoFtf$Wʉ_ N wz@KZ}2_-ުE[W9} f4?W>ڂV7="i{$|!dhd7܃}(76Fѕ㪫c"Pj㾵v?_/=`~c>#=ݧ8v&w#r6X^8&VNp~AxN I:Ua]Ūo\|X+op01IΖIC"Z׏ҟ_֬i[vY,X<Q mC EF۶5S93So' :{\L`zeeRyEmٕ6h;r\z 8:o:.IqU{k%Jf}{}wUjrJNWv޾u;IؼvE[=uYZvy?$Z53z~HD Ԭ_~s}2ްP?͟mnwz>85'U\R+o=J;th^]2I߿2k6Iâmfd}$x-{0]{EFe24il^|rΌ30tN ?oXSSeXgG83Ƕm1atIyMG聻Wvkvtrpt,~@yǪ'T9c gI^~PUՍAw<.NIVsEO]Utv9+Na~zmuW׭7ls;WGdYƎV}%??k$@wb,H~}#T͝=H7^;@U5MIEkZ|r\Zj2[t]lQ]Y-ޢgUpth, ڜbʈ1ST\Rӕ J RhfZҼ;ϕ6X"OW]Oɉ!z~86K~^*+W)DFF=6gic5d]uY?VOle7kGgr/V|L|{*=U'/7vߕf P`|UmGW+WGbcc.٪5^GקH~}:eWEz:lLIR]Yw6}z*{~֑8'9I]CKՔq8&V%'koO|w=wiѢEInY 3}G|ŠZr2^F'>O|'>O|# X.\x6,=(`QGF <,x4 Xh(`QGF <,x4 Xh(`QGF <,x4 Xh(`QGs{+;k3O|'>O$'>]o*[\'>O|'>O|/Irخ [\'>O|'>O|ӢE,..Yv0egmvX@{(`QGF <,x4 Xh(`QGF <,x4 Xh(`HRvfw"V×:pIENDB`mkdocs-material-9.6.4/docs/assets/screenshots/social-cards-invert.png000066400000000000000000001006641475306445600260040ustar00rootroot00000000000000PNG  IHDRvO@{\{IDATxwt[G{񈝽 ,@P(JK Q e -QZ(R! {A8ÎS?;v$ۺd]9C;^wH;,V*<]=X05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L e +tͯRF7+ A>knY4|HD|{A>*3ԽZ.Kv+Jee QR|Əօ$oBnv߶RGtiCGJ4E$__/}yvjZ6KF~~^QQ:gNƎnn~~^~h\?=J{~=VS&4ɯWxF)6lwԍ+$馻4@\UWk ٘CGJT\R#??oEEk͙ޏ!ֵ37*J/HQvQYUoVdhl9sWwijb=X>Kӏ?H]==^?<&LkPEEOk75kju;>m·w7VUU ' O֍mߕGݮ¢VU֩Nzy 䤎9WuK]} jgۄW~^zINW-7~ttV%k]EG;TYUZБ}舾w~?rضۼ=OzaoM.nؚ;[og'[&&SLXAWh[ U:紇e3lb~KObWn~nzuhٺ3_ܻ&gՆ,Uww{ l[+y{KA6y=7Xep G kOaWΣ aijénQKViURQYgbcYI:U~eiV?~'Ǽ)-]o-9Vit 0RwMpY96]buoQQqi趟֤q*)ժ Yz_T]}a9V邂|:ݟ⊺qSh>ަOa ;U[ԯo~3"R5Z.K/UXPT~pPl]U@[v-3/y}]w{xۀj*+<\{ V^zvYS UB|22kV˼!?$i<vΛ?9ߵ ፭VkҁU vGWΣV;uΜ֭}lC{n\-uo(jZX4M#o)z7l_x6;[mkJ-6ÇD[ǹt3?oa_Yũ>DV떅롻'_r|4 %T=f̱V'mN߾^o_Aa `~F[\CWBŕU6)N!cTT44iEliTϛ(//:צiy3; 5_kE%?ےkj>2ж꯯}AӠ 3:{n\m&.97ENؑQZTUk|`+-]q ΪfuMswNZr1ܲ3Z's^^3'&<;]>A Qi8ϙoӭ[gZ\ԕY ]WGՎzEG3ͯ/YyaaJ;浺:}l^8&^ PVΩ`H.k~qm[Mk%iʄVXmXkO\6xMVާq|[r1έڑZe*.QEe;+'v_K:~iYm PW֍ڙ.θKMڼXR@[j:= |[kmƶS\} Kmuo+ VJRݿEGj3fEeԲ5ǎ6)N߿A`~ 4u%hm=fD*hmmVf^k9^PUcuu z魽tQC3uekKuMnyn\gۢƅk#uV=N.?22+l^XS!a`ɮWo}{nW+d -Yr[m%CpuĽ'-٭bfes+{ߩKj#OVܢ(&*@ёmCOWk9QAo^虬+G?T?=5iY&ɉ! 8;Z9sSU[k5Y.K>/:;k{jͬhٻ-IG}W>,CQ;jؖ>r[_H͚Eϖ8VlD>}4WW7wVNEۉlAWWk-3њ٭^{9%^INotgؼ6mR]} Bm_/,Xa~ɕ++J;R =@guzCfMc`wWЕmv<%hȀ0Hk|jEGZ-i-THi(f댡i3U49Im>^sfB뿫35iʎ[{ok0k<;K7ڳHX+Ɠc'mOml{kpAu5p a[oҮɮdQ{mW6Ϟ~ɭN3¯ٝk庬VzKn_ze|+ۼ_h;0=' vt4,JlIq ԑ%Og"=l }4]E̮hnJRfm:ŕuIcGFiȀVU6h|5N߬b36хdg &Op5p:oSۏ WYSnz(+RY9:|T+eg7n ?C}u#mc8eBp"=vgJn-]ݺTB %%bhiCZ,ݦڼ'vDt?=lICUk6fwە't +0Sq7鯉cRj9DtaZ.Kq*,Q~"^N2yoغF=Z6OO,WRo+~#upHx`CEG+m[x;|fEFsEW_N<4n.㥇w1X,'[d:5 l|vS}\ۢKmmݬ+.@OdeJʼn ]!J]] ܫZ>Kw4I2Q!6)Ω]qA`ZI$ִz(MJ#huOR| 03\]74vd~vy%(G5k#^^y1w>BC|Ф]Ξ.hg%)2!eK Ggivë.C# Q\V}<]vfWi,O!2hִxv֙u*CC|CSr߿օުc^Կr?:Z/?9C#xXg%oOLos5WruxeCwMthAmG bKoQ^;AfG,Z0'IouqNcxO?;eO/5ҽk}~ 8 ׍M?:檢¼c6JhFVXTڪf37́.xk>ZԸ4_rqN~5VVzf  3NVrR^әڲ3O+f=/Vee3 b;K;n`xMӵ~K)QqI-ȡ=-^jӕq 8kiV-+˻&; ?_/i@J& ǂr1?3Q_|{\)DJj䣸@Ms6ΟW3Ѳ5Z1[OZ Vj@PMs ^Koڮ=yVk3+*)%23]oc5|fe Rz̏EzTvw;oĶLv]0vk3um `.X+2dIѩUaQxq+ v/XDqi- 7,LE +kt@kM] <+|%'rV‚jѽ +sq0):Zxr c]PX: -܇ +ahu{``rt%EޅY09f%1m]XPwhEWijq5|p" MI1m [s/)Dޞ.]M] g-hqe]FdԮBHp<Ѝk!] GWΣ !ݐٺҕ-\.fzZWBg\]еw%Ѕ] {cWBZ\]<du%e㪩mhs\u,zN%//fOK+2GT]SoL[U#^fwZ!KVJJc4wF||' 0mWBIE RTRZ>K N< zj=vmە2}bo&hЈ+<+Еp%I**id5XWG@Yy~y:(pY?oѩ>$ǹ;] /<'EёͯTݏi(M0_YH<st15gzdQ7Doe-du|5/:AZhzl!zIccg釦h ׶Z<]V7*(֮=.A=UWΨґ#*.վE.ٖ;D+<@;|<]{:^qIKdMs˺nؚ~I!J1#"5 %&G=\ps`>" ktSJHpt׻޵ڳϞ>sP0xzG8?LzjVB zo͝oVd8NLTΘRl剮W@/pвEw4Z~ә޻jVˆp͚KMѠaW1QzJN nwo=pxME%@wLY z@/ѯo,-^t0D V߄`MOQZ2ڵ] *s`uԉ<Ɖ?E RtтO= U\|X4jXh8duvVBރ MGA3] z,vYv%$@duԕ X˝dJHp&ڹ{s2~8T^9M%rUsH{БR>ZWԩV/>JN 3"JI An)w{ u9?H7heZ6SБRWΪА2jXnpxuj7_7B?)֝ڽHͯRee Qx A>9NC87dQI6m:^JUT֩^^ QlL$hHM9yUڵ@{+#BY9**QUum_9` q4 %hο\ Ew4#l_ux{}b+s;\_=73"*eGSGKSZUUI| )c4lp,]=A;vh<>R'UZVʪ:ywD(O 15,B;/+#¡t\vLc1IR͝K("ܯJnտGUYUo|aQ @a_V^kZmm~s\->#\VeJ?Q5k`P4ofC߾+_.Ȫh`Uܬi%;֚뻕W-գnecF+JZ1۩XVߒ [stds|G_w>:u69yUzCz:{vnvGZJZ?9yUzjCȬг/g;'(9)lAA}iZ[{ 룅GtOy}UT\{XxCGUW5uQ cf r]xvў++RݿPp䊖eRcަ$mܖ_~yhۦzm0j)џ`NoF/W_.M쩯jtސog;Z kՆ,o;[ѝq0D7߳FO=0E#Fd]MwJJk ;|]r^K ^/Rn ZNyk~+?n6%Vu\^5Ȭ=njr. Z{X>Yuk*`~vjW-Wl^:e4=VWM+tϣS#WsYx+23\]"R+Dys,vz؎quz=:|z%}Kjjμo̎e멒r_v=iMB}Nakn}㪹?Ov>9_-KoqkQCUPTa+aX=2no`i7[>b+IڽHd[mjY:'?Kpu{(jl}@WG"2tEȹPuM*0@z.wi%ß=pw+vUz][LJ SQYͣ$ϽJֆ0w?>t+^n\'bX=ђU' wzEW׫t $z ma{MZJ3hat`zÚ5-^{(`Ak6fy};\F;хS ׌)}40%TaX,**־Z6˩T7fxFO{CuեOlց5kj~}6}ktXꥷDECU=Ժ^:1Vg`EG^yUnO>axtIZz]z.4UԅKskڤ8 H QhTRZ}JzCS-B2nTH԰AaWCUe:tTj,qnޑPt6vX~w8Mh?T55^?P}i^}g.VknwPQp[ƨ^p9O쳻Ҝ34ub*$ط)URmx.;1KV,|,S]Qӂ4t`b㥒/yZ.ccV'n*ǧk̈v:5%ᑺc7Jb|Ǝҏ?H7~ߡbݔS.c c 4|H.=/Eg9uDGwıv>d`ΛW7+7ؠ٩ ZhmMѐa.e՗ T}UX[r `>F):o*=\>pSj?*}y7 ӝ7֜6!õ`N~y^-^@oETT9@4cJ=ۉH:wn__nJJLJ, Ӕ 1=_a~c5x@^|c}_/Pen)Cw7ԝ.9)XdcH_ԃ!ץh !6(\GGkD] e5ʩuL0ܭ4sɺ9s%4 [hz#Z`uses̃&94!gnLFc>]EͤV{`Z3+]Ԩ^55[$%';5y`ucVU q >${;^%NhH̫Y7O(`uҙgԉS=I Av_78\}WT^'01:Yf{Ȫг/Җy. `HI \yn̑OCn42cՆ,2~NTW`%k` 1" mtyf[q=wCNk(ߏ jK3>gZmh@Wg0rKmx[ gX54-1'JfZ D%5z:Y>A?:J)! P`9RSӠ=m(p}c_y{[ u+wW Zs{*.1>䬩4tPx2BXr?JFՍY,EG+'uel9 pپYeZmu,1:^_7 pNtrI/uciàD\|\ӎNٹ։ tɾ{+gY^ ޛ!V77x@*Q fܽLF ڲ#n* 9ZZ'T`usw{3؍0#B->>8X=Y oh꯯v@VN>͛hxf1?xgfmƻ:b1|^Au'6cJ~ekpj="ΛW>/}gh¢jWZop 78V+0G-[ixŴcz9_C8\l:0>ѶeM*)5"uOЛ`?;z_-M׽mRN^Unٙ[]L-i}g2/vSnz-L" -_S۠m% C# w,L7޵FwwlYy.=.'Jn=k`^캫hɪUٰ5WݺBkx$(*_uu /EZ̞B>"32lpr;>[z*,WUxmxcZ=@|[r.[Uuu" /`ZHP`{AeέeoۿxbhUCjxJ5beQqi+զyZ*z@]u#R* }<åeX~>pw3 Z!z~uL_.IؑQ@UVDvv+2<9=UNC9uB[hon}}ѐ:pVmW9 q< ]5DͤN__cGFyp3Ժ5 ڼ#O-<>\r\^Irjq8O=ObW?AVG~;I!v#uO{=y:JA>"sm̬p~< 1>ѱ#t=] !anD}轓ՓAJt1l6>р$]yqr':k;{0@FMs]:_i3H7:LM$x':ݕ]gd4oVD':?~86Y`P/NS\L=1>V}|#Ϯi0=qdXI AA֩mОEm/c"#7!-ۿlz334of[筟xd򪷙0&Z/<1]vC"c5ofu7nujG.9c'k˜hnK趟v6 gC#\m//Jԛ5'p aK镧gu<ꯏ5/Tq1hIw#MVFș>}G1ql&=S;whђtސ:'Hg$+gyGKtUW;枙_1XImY,]xN~UXT}E7*{h2mR|~>4M 9*߇5`}1E?d?OWQq){[.GH'z/jvp_}:V̜ UNUH U|\5lPF~.>z[ڽHE*.QYY, >yn L ոQQ>9Δ-kegSUPTZWۢ@EG+1>HiN }quVL-Жy:pD*.QUU|- UB Icc4ubM멣e֕o'jִxW }4]O:/=5CD1]l,~@F@;,v2+j}u 0mpa~uZ}"%۳ZܣzcNu ;,+ܧzU]clvӽ^٘mxy3:_cwNS^Qf2+Ze8ҲZ=wZXAI/Txn Z .[mܖbާӎj4E.K8L[xv4L ɛg+"fr?nV\Lu^xTm3gHob`2@o[`jB4bWeviZwܨ(H$(*ܿߞ-Us/__Kuh[Y\nk]Sekh%-n. 99U{׍-_Icc<\3zg9A;Qj-Dپ渮b,[<6e]਴eZ .Cқ8L[X4ndc){-g+3BёlږgLBYVل[բW [ofL*6㮆IRHKzZ`I{߾CŪm\oöIҼYjiv,z2;2RMY'ߡ#tHFF?c$I>@t KWPռ}yT*sEe>YtT߮Pfv5jX@q7أi6l1=.W5Z}訖TfN|4.:'Eg%ecm=1fϾK}L;n;H+[w{ USӠ!dA\j)JlVn^4rh~x٠VIvj8ak kk*0[;R Oi"UU+OΝ.(//79t9Ͽ>i\It=F-ߓ3kӻRH4 H m3׵qo*Z+tOE\CGJ5{zێ328[8zlYg>\uiF֞;#A7hz6SiYhD]A^Guuns~s+?͙[>K/:U]]ؘ@M1,ϐ\qNz1g{`I?TA>*Ӿ3"oM-NUNnV<8=Un~nJj%5~e8`ZNdU(1>H|ɫ=nԑeRb| nsoݷϙi"eVOl`ݔ-I;ԗYY!oo QEevhGjlw FyͪkEJ?Qg^ޥ>Avq};T߬¢j{ob ak6n-׏rxj*:2@>>UÅi:V+X(UUhz^>eVGڞ3Pn~~uZ>ZxZ_|{\l=?ZxD/[V!•][rakcL4M{:syr>Ι~[r_eenO5gz|ct{2r4!z& %c X}UQQS䨾ުz6mkռVۢIZڙ` ֵ=#;ww>aesā%kT^Qhy)#BAm._<<pԹ(:_ǫZ[S'J T}Y$Ol`㹙Y}*=4Kqz8=ԋ>]GW+$Y, [skoAsU]S ָQi 6ok{Xҩ-efWob nC_K<)b[Z)5NtxΙ>JAA>ZO:_K_^ݥcmB WJReiźVcTTVkwy3$5p۔Y cuحr=V-_ k_2RwRc+ǟ߮Mr"T_oWWmt}UV?oUaQΟW0J޲Z7WFEr͙1Za~Z_Lon_[N9k sБ%'էghpIzm:pX6q\N;V#Ţ{osf'bi<&k>,MϿ[ˡmsvSh,}q]we>;Iߛ1jtyyYo&EڙZ2~#4t`*֎>T}ۜk7e vnB>jXZv8)umOgm;ܻqqpgk[35mRydZxYy;[||H?s?h΍^GC'6ĊwOt;T>KOc=eBc(_ܢ+cӜZ= 1zp9ђz1g+w{:Tqj.8y\||4䯈WRUT6Z?f@{dfMW|\`ǚY1Gj`PWc[ X,Ϛ}すϞk؊^߸-W JJAp8\=vϤ/o4vdEVQIMcuxykƦ]xvb:ξҕS!1 hb.=Ο,ժ/fH3fZ,eӨaakLT~wx60?54X{s(0[O?8K$uf&k.ښų-edC`NRsK?oonvURZK mt=w]q>jjuɹ)soh{uMY!IܔjNיcfcdJwbfLi=3׵qoj)mW~VmؚjݖYsGjM@-v8)umOgm;ܻqq;;byKJQvߙ۳H4lPxk-6:@0J^w^fttz27q.wԃ=hDuR쁻d_ݛ~ ~:|T'75fxݮ I3. J glkρ"ǿvccMԗiI4=-^Amh5kcg-;؟?;nSt{_}_k75 J{/>'Y/HQ߄`ߞ>l>nT߽-ﹸugϡ`X\Zk;o}\Rڹ@箫߷=GMM&Q߄5ޙc{yfCu968s]K)}w*ڹ@e嵚5MSQqv|N_-v8)umOgm;ܻqq;g⊋Kkt4mչ;>+Ձŭ14B_z\|FoOg=ݟ*sW~rG=Ft!$BÇߦ+5}:}P&M_Zs}ak-9UX\mXl3w}GMm,zl1yƩM % Ro;Qiyxrjj\9r\גs}ĐБ(,ԯ3(/J߬M95,Ru:V-pquqWgw#;sreݹ{$EE+,O%5̮l5\{qtOӸQQڑZ_ܽF#FjMQ"l ˷u=]+륫ĕwCKWx[4rh׮DV o;HN{n~5YD$(8`_sf'*uo *-Հ=ҩQ y/VVNte[\.dڽPyUͭ j=MpJJk˅ѩ]%(K1}_>**Qqq琳ԗKgZt |箫59󓃷/8+X[͘GcFDoؑ6-C% Z&Sv+oNdU肳e4>8Mr]}WU׊um;ܻQwvqmRyrf@;֟EW\4@W\4@Y9ں3Ok6hln?Qomϐ8'\U/]YfW׃=f= c`ԊHzle&>M-]uB4jXݾ8;+,OgL*\5ǿ;#r6:|MeJNli騾'μtenOaswrVxsl𺒳Ǹ~EWEE];c3AW]:P'ǩA<ǃ&\גǽ5նp~Ș9%^fSv4rVk{#̽u{hWWs[=Og/;Rn?ꂳ}]~JO1|{3+륫ĕwԃ=f= V #EK'ݞBEmY5_d6i4Kӕע NK{9s$IY>8Cɬ/**mI]gKg|؋ ozy"BurCWKm%)y_ҩZn8}Yn:}jK{rS}۫ Uަ=b̈VMz;T^Qq#G4vϯ*&*@G7ZΙZrGEkp0M/ӗKI-3ψEVgj"<8l]cg]ϸZV^z;jY)q;߃OmՏ\.>fqXU9FoOW~Zw^Y{+ϏV ~^>8\e*)ѴIqv5if0tưc/KV|\u(3/Qezŝێnrq QN^փ79gN QiYyf[t1{X?C)$anxVoRIi-U[LU gNTtTJjsۛX_o_ӻrULT3k[=-]}B,Ks+jK{򈓃.Zr\[v6~fZvSx`}06q$}Fi}%9 wb_ӪYs準:wܛ'5i\t4zxv/R];ֵ=Fp8ٹzŝ[rwK.qt{ÃڹzAY-:|WA[};[/f,w=ŕGWgގ1N3nTT̂$.&PCtx|}4bhK0}r~_ˮV>}|yyY>IGЀY,(Smm ל[33dHg}Pj{&鮇7h\]:hU~]b&P?]qqaA}B|_Xz0ﬠ@qMZ![6(.&PEժנa:ti_vyl>꨾Y`V+J^^~( h;Ρw._v~?}"CGtC裺6(*_ё/mcܓ,8+IWUUi[g3ƍҵW ?{Pw68Bq1N]R GaM̜ڧgDX]u붶eg]ϸs54W+giź,$e(oKrәE#@6+>.Pa~̮PiY-rjZw^Y{+Ϗ-N3nTcw@ohg\n׵?9D:V}U[`3(~z㹙)%)X'ʕS)p&cFD)6:2IzY)!.HGVGGw`3؍?[44w_ghYI ?3ψS 7!Xw4ZwlDi@guqp1zt{3fh>ͯTn^'WSmw?֟E7YjƏVyE)LKOh]u`ug,宺wv,VG;G{_OGy8A߬Рazٙ.[ mWmќ3mxc`ruUXTUDXMV/`VeuZWtl`b>>^ ֘?x;'1;LA`jX05,L FS#``jX05,$ժ/kՆ,OŐZnt߬;Wn?iJ5E{"7 {Vw;ϬV~}L7޵Fk]vڸ-,{u{ O S/$99@=qϾK 9.I 򑏷-.$cO!H**qkߗG鶟Htk J_|^|]yYȮL3$% ҇b] w嘴eZ .Ny 6HB}=\\iŚ?+QϽ*EWUuSvnnqG}iTRZi%:U &9yUэ:rL~^JR~am-1:~V}Y$OlbY}/9ĩr9S-<-U АA̮-9ڰ5W1Nf&ڔ-7Jݿ^e;T߬¢j{ob ak6n-׏vW*կ[cGΖZ7v efW]zѨ3mhs̑kDV~FedVۢ~}CTQYڑZ5uB66Xu D:(YtfOWAav-N$ jYgi{8[ߝy{{bmiN陗w)OP9z|Lڣ}/Vtd1VoȖ$M?#NF=3]pH34d`$iL=68\r5mRCJ,ל'__Om~3=^yBC|U_o{_׵W>onj|(m8zʄXVU>MG9I#UzT]86Z}b%5~4x&iʄƇ*==Xg_٥k-3uvT/GE:VN"[k5{Z||Z?hgfWob ZYUUE:^_z(xj>[XWFE<(gT:|uE14B}|Z^g)u_jHǙ63(XGb}U=M0&Z1^Q S[|M&jSg=z$AH+Qhn~d=<:(\=%VD{r9m#ә:=v5h8czZjw=ghmޑtyZmk,Iٳ:zg$;1S%34y\]{ Vt~wt4jX_wx4Fk)=RBIݿSݢzy֑ӶL}w**Qltk"{ɺAv3z| Vj >Z`p'~F-IrR6moCQQvOQBewooF%˕v򵙒|Ƹ-_}pcNݑvT MF оs/u{=化ϙ:;2qO-SvnJJmÆ2vS$iYIv^|N,9:S> O³{UTR#K5-o#:Sr5dٚ:Y07Yڸ-W ${W޳gުKKѬϳt昶uhOg3ȓ$͟h=]R]+#@%5:}ptZ?x3;"ꄦ/ Zߓm }r[9rL;;\Cq7*J;R hHMIcc4jXcvziH˚X`|A [shq=Pj_ԭ_fNC} yʲ(*O̮l7XL};x:W]Me4e4Au"BiJޮ;YϼKٹڪzywӎqr` { M벴fSΟ8TSeH nu%%)Dmj-ƈ釦_g)u_R(&*@Wo.,Ov0?3Ju9Sԋ;tY,ᑚ4.Z~X,tQUT86r680qgjUTGW]MZ@Sё:96Z6S~z7P'g1uG}w^h쫊3IZ.K+ey}UT\]{ ca߯ 44EW\4@W\4@Y9ں3Ok6hln?QoHk3tE陇j`ֿ/]}b`JjT\!MQvLimi9種GW^A>*)i5PYywS)O9^-IF3#]}LU l<fk3gڤXj,M~>Zx[Lٳs+oVdp? Hiٙ6h=:s]9{ u-ΚGcǧmxF|}tq6*s-U\LeL#]}LqOrO^oKU]So6>=>g7UehwJ24COp',HFJj-)j|D5>?\bpsd^q2O*]ZV^ܩY/=ܙ w>< _%&{Ɩ9S#N>0-Zr\[v6eZvSx`jN1Ъy}r=VKW{;,ŢKmՋ#:SZئV-o++I~-L}oؚ<[{֣3ו@[9sԯoJj3Tܢ;ރz^6H!ց;٘O:*//cBC/GO?:$G=;QQ**cmo~V}1!9s|$i(Dh\6hWCOp'/W\_}rX|xP/: Vު>A\7>^{g/e}+o>zc, Moݤ}[Vh@J,eACk}ڑZustP?efWVyh4ws.;Ye롍 Q]]jjƁz #{ۤO:oVd(91Xy/E8JCwvtIʭuTtdǾ=tϣzCmQ\LUYUAtHzIX,73A|&['~Fኊ¯DvUqKjρ"u'[_TnA"Z;_xn>,M7d+D||40%Tg% mMeZ0%T7_7Bow@媬V }tDAmc6$Blb^W^]IzYzZ>[G*0GGGɚ;#Qi:[ru-|zy֑<'9bhOgkGj Mѐav3z|='I|AԯIc>#b7Pav{&iɱW<:6z}#@CT\ <4x@~yt]`jt!``jX05,L FS#``jX05,L FS#``jX05,L FSvX`4vF 5`M`&XX ,k 5`M`&XX ,k 5`M`&XX ,k 5`M`&XX ,k'ȽȜiIENDB`mkdocs-material-9.6.4/docs/assets/screenshots/social-cards-layer-0.png000066400000000000000000000106251475306445600257430ustar00rootroot00000000000000PNG  IHDRvO@{\\IDATx1 1eX@,Hk                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ;1IENDB`mkdocs-material-9.6.4/docs/assets/screenshots/social-cards-layer-1.png000066400000000000000000000134451475306445600257470ustar00rootroot00000000000000PNG  IHDRvO@{\IDATxm\}ecc 4>]WԪR+MK<͙u}]x45{``$y/y6"I/^zu,NII/X1M*7WI~#b  c'Qca'^%$WvA.$yu_&$B,n0h<ɳU$$/WyӋX1o[LN'yr@$CˆYrX\ȖNYL_H$O|fg~_rx;%ֿ> Xr䯓<}y+,xo<}:?WwW&?$v!\&`lI2g_m݋XI?I>ɫчplׇ<чp `ly%^q'xn\ `{sA~,my/_%y4؈#Nؖϓ?ؘ%y>=>hE_e `Γ#`W=xh;,Y# `~$h%y<vkz/sYG8OF'Γ|:ةG'^/(Orx+(OG;ǣ  `N/3~< k$?} k|9hA:K'&`<ɳGX $>b,Xz@' X8x}>} Xz= `ݼG"`"`IG%`-D7z#HÓA C1Al^0aޫ `s^]A<fB ` Fܚ,~><_EuxLrbRGQ&`PM@5 j, XT&`PM@5 j, XT&`PM@5 j, XT&`PM@5 j, XT&`PM@5 j, XT&`PM@5 j, XT&`PM@5 j, XT&`PM@5 j, XT&`PM@5 j, XT&`PM@5 j, XT&`PM@5 j, XT&`PM@5 j, XT&`PM@5 j,=},ygXl PM@5 j, XT&`PM@5 j, XT&`PM@5 j, XT&`PM@5 j, XT&`PM@5 j, XT&`PM@5 j, XT&`PM^]gIFL#&$>_!@5 j, XT&`PM@5 j, X4{!`,ɧ^W(uC"%`PDW@KD˥U"`U"`U"`D;WxW \_%c]J,ƺv}Xs*U"`0ƭWZ_%*X߭WJ,uU"`; y}XU"`W^_%;z}X,^D`YZ_%˹*XνW2NJ,qU"`pz'[_%wU"`pZ']_%uU"`p:'__%sU"`p Xd}XbD[_%*EW__%[|}XgU"`pUWݭJ,nU"`p7 Yu}XDV__%3d}XΐU"`paDfW ]_%WJ,6|}X[*xU"`U"`U"`pY*j}X|n}X|n}XT U"`PJ,WI^ XVJo$/,__%y#`W*wb}X{5*hU"`4D؛W7S `O[_%LJ,r}X{1*`U"`DغWuS `˦__%MJ,*jDآͬ `6J,*fSDؒͭ `K6J,*bD؂ͮ ` 6J,mz}X*fU"`lD.W0]G,ߥ7`|W''`̥W''`eWDW0ݭ `\_%,vJ,v}X3*z}XvJ,f__%@ݯ   X}~@b}#@zX_,WW:X_]AxWx8k__}Xc5^%$oF+㴯xX#^>"F% ` [g}u@X X벾# `=WGc}u `WGa}u$ `yW `,,eY_ݓ,{c}urN@XՉX˰: NH8=N,Ӳ:1 t `,ӰZpW jAY_-H뫅 Xc}0 xW+g} 8W+c} V$`ܝՊ,Zp7W+nj nj vnf}5p3뫁,Y_ &`\j0 jW,Y_nW%,Y_f}UDpU {W,Y_J XW,jU5 ;rwW,`Ϭ& `{f}5 +IX^Y_MBj"GWd,`O&$`{b}5! I X^X_MJjbFڟ$l\$_< j, XT&`PM@5 j, XT&`PM@5 j, XT&`PM@5 jFŋ^.^?^[NOIENDB`mkdocs-material-9.6.4/docs/assets/screenshots/social-cards-layer-2.png000066400000000000000000000075711475306445600257530ustar00rootroot00000000000000PNG  IHDRvO@{\@IDATxݻUdE촰Jjcaaa+ "Zj)B&"x)bg$;˙>OyTձuaUQUmƑu_ ͪ:䕪:LkOr:ƺ0}6<\@gڿ׭TFIN$}5=ն$O$dp 5-ոSUuve k3m-`J(\C$`#\̚0dHU=,|RkNךhNgU|`Վ Y,^%[!骺}&I'y10`uǓzuv>%{um1kwkX{XV>% `'kM xu5ҧ~a`2֖6%2^]IN)aUmT$%yù%`M$'y=ɝ4kz&95^S_|fsJx>g 5^SJAsM)!X1%Xk~+ `-Ɣ`Ř,8SB%0%XSB%1%X/SBL :3%HZSBN>NgZgjsL CMikIpIpN%y9Z3FZZ;#dŧ5:֚.:bkXkN!2%A!drJ(\"``sJi7}ӿ W Xs3dM  AUݓ$g7&y#;_O$֮TFkط`YSE$!^CL"$g=6ɥ$[k-vCCZ !k)pj ~Lޤ?p `.!k)p0FZjw5%v!`QUm&y>OIj{o'9IENDB`mkdocs-material-9.6.4/docs/assets/screenshots/social-cards-layer-3.png000066400000000000000000000155451475306445600257540ustar00rootroot00000000000000PNG  IHDRvO@{\,IDATx{nWY  BEB RPQ"4\Tr)bAl˥5pQ( iJ)EJ6@AL"@\BH"_/kϷc]s5מaw9Wp i{Ӷcszum?Wx۟[Gڞ4Lu{~&ɗ\nN=Iޙ INIr$'$$wFX mϟ ҶW[նO?Zp,i{\'Fэ=U;$ջՐu6m+^>V[k ,yd%"'Ƹdu]w%yGS!$ű/:=vr01}7cyq^iL݈]vg'ލ{%yb7$$$oh7wy@c*{VGsbwcsc??8{$Hr$fI~}wXW_5ghܱ mv_omjM{ M3UciCmsoimloj{/8趿o̜w:f>`#.ǧmŗ>qƆo;_็ׇiO';m]fcwg1k~!splg_n{A[:m:g~ymOo{U>ɋE/op.{ ӷ86m:?uU,w~l];LzSgΟK3]:oVo&(a6sgʧ..w^W_x>zk[3qGqm9M=ÙNoCmCoQOt:/Kp,/}m^3/X]jeta'>#'̴^=SPͤ=M`}Jo젎K:z1LXgĴ%3:fG 'նvm.flS`3Kٯn$W.2}sLN97+2)FI8sγҵ^3q_8$Y>dӬm3lh6WZɑ:]o_oX>;މI޺񜶳10f IK>0SvnNԮ}d$OY$LrII^L=gu[ܸn施jkfO}LO{Ku);4u֤gb._3gm.fǜI7Y4˾m5*ۉk6XKnfmp/9Ҿ^v} lq?6ݧئ^߭ fi 7:3qobI ޭR=9~ZwRж}v>ߛ}Ԥ+mo09Ob>:m3S42ӾGĽry)mp&v. q*6}~fDwb/LCfb/lf_xO>moFS^{{6q\K 7b:Ngvчso̱M{\=}S11~;{'7Jm?Q3&&.J1Ɩ_<ߘ);~u?ù>[$}imo2 c[N~b?,Z͗7O/7\c[){?hRQsD u4-lh^'פ$c\|bn_/g8GlQ׫|co3I.Z?#]\CWv],zk\ҍ%[̔tf9R7$;ܞmrۭ߬g>Mܦ');c`n}Zݴg81lrnq粍cKK3䧓$IŶg&I`|~o,ON-]l|a_$wHr1rvcVͺt6baW 7gʚK^3+gikIq$㓜ܶ P=(IMr.MkjoIrz1]Y,읚ܺa߬ۥ3es3~LWԖ:c`h4/{pynW߶/OrJ"$u/9^JaX~~m_\Iyy['y$LK2MLK|`uL7v_u۴wɶjgn؍1$yĤm<;&^3Nr{1I^I3zT6/Y<5Ký|b?挈1~$|,f-tؙg1^r+χ'&eHWE{a71h\3u$l{1_fQI3-˛ ?q{&6'/܈1MrNs>3H`,!d?./z6m%:'ϔ}h;3e?ǷWih:ypf/cn}$; ZnO1l>ٜٱOfqIٺ?v~c?_ˢo(%~szkI~y[͔[XrN^6wˇQ˿3_6d씶Oi{˶wq _v7Jۻ=7W/N$/iUnl 7{f,IԍOl3IޜIW1` Gc L]u1EI7󢶧X۞sI~'d,3|{6GNm޳y$)LY1m1׍Hw=}-rۏk^M|e)mt9W}R='X̜wQmm=Sm߶Wmޭ|-W]OɜĽs{XՕmM.lSx1og}1/Xfǚ=.MWuV7i|n:sV,6xOfwd:+=3xoge~V.M1{ic`[cXF7m.$clJ-cp$gg1^Tے1w$4ɳ3יc|I`qyS,;wqT6R%/NrI6){a?ߝGBx$?68_; }/M?Lr1t~11lЙ]|qp]5I:Ƙۗjڎ>1s$)3u(eˆS'yu2Ƹ,[&G徍 Iޛl\Ecg%ݙӯlk,6~^/Wdظ}Ec1Ǔ$݈F3>Ebc'挠u~1II3< /boW+:#e7I,mI~!OcJg88k_o,_fт_N}c_c|}:^NIqoؿ21$ݸkbIENDB`mkdocs-material-9.6.4/docs/assets/screenshots/social-cards-layer-4.png000066400000000000000000000166021475306445600257500ustar00rootroot00000000000000PNG  IHDRvO@{\IIDATx{UyߔM1( (11hZ/Q`:LFH#6jb4MԠQ#:05Қ&"A( o6p/{>y8wߺ1Xڬ Xj$OO${$!I>ZjU/Te5Ug]#TUݿ]yϺV6z~Y?UՇ:??f]/FpYVTզ$u=!ӫi`a$;i4p]i4M#|{ZZq䜱03eS$XwZ;1ɫV3tu*@ ` 7&ylNrE[ I^IfV iSJ)ʔ#Mr@ki}hEli`i`9k+RU{&$O$Nr$;')uI_|&魵&4Nsa[7 $$>eIG˘ s$OOIJr O0דs1Wj$OKrH${.II$Mrzo]ߓw9!IIx$7$ܿKI>Z2:>ɿ_A~yk?U$בA =XU$9#ϫ6o6IK$'+k$WgxOIh1hUu +f^7g:I>wʥ[?13㭵LpQU=>zoWUYUgTխ#vWo5VRN٘Uu"g.sSOUWU7vfUh>n:vXsE{Uulʪêy_|Kj_ЙKK<7tƴznU}q\^U-Q=Uu:n6qMnZVU=Qb]K4kt\Uӗ9ϧ6uC|h6hxM-|[ʗjXlUKU5sc ͵ťsz\~X'j|]:n9#^ X3֡ڶṴgLުhUcB9sUm$eVUTqIޑar=3 5ԙCI0ɶ+$V}3-jI_A>'9PN{U=1XQöe'$>'?<I4֝1I^~eh;pv<3eγ{$Ò]U-Z E<&R~pp3vP'XUoJ Ց 6|TvINM+Sj$no[IX{frͫ۽:1I=ἿXUݵVՓ?+[c$'Ub^{%q91f@UU`"4֗c2n57&5vwI2!4-vi=AUGջ/$UɹKWszjfYI^>4yHnn[כV.$c(9?&Fr [ƬyUUv<-$_?X[ë孵k;bߖdEw"& u;ef8($3iG?)Z ͌NrEξI~9Ɂ+ Q]=<,ɯ&aa3,[}uDgےQ־E&$U'9Tnwld53sȈ:nU΋<M{:ϬEnPUWՅ#sTd6.Uu\] k!^32﷫NU[7Dwv湸r~zGO;"'ȵg ^\WU;VF ۇzZz%y}Zk/iZ;vIk/8j1ǵ Ezqkm$љs"ՙӝqg-ک=s2lq%?<\mK~yθ%yJrQg#s/ZkmM.8h3[k' 6Zkj}^8b/Xy;v]_1Qz>Sg I+$nݚ:ǵֺTZE_댻dJydW9my{3/q.:|mӤpҽ;OZ4'N\[^~8׍])^ݶ'nyN ?H׶1?g9֮N{oZ5v TTI ɋxoUtwm[g+eQUI$wu-[>Z@mw !9 zeF~qUtZz8ZNq~ʫ?ulz߽[ ƊmΦo+`&+I1$$95Ʌn>`A7K LRU_UgUI^NZq]p@D]^΅`vzqɄuδ]ם΁|Su_V;\ULrtl;VzBށ|LQڞE]](BëbC=K{^'f9Pr Á&C!V3yjꁳIZUwkˋ곛H _Uv:w2$j~=0-I.N9q[yBNm$mYƇs|$̖o%9)ɃW?mZWtSLGI>II~c::N[W{z[a]Suzd9ˬ_3&K|m$N51mIIn~L_ix!Iޓ$W&lMr\MInIp~Lr˙e&ys[-'Iufq@^dQּ1^Ҧfx/jӹc`ZF3[8V9z&lqݖ[ܧ9y\9ge̺v\3S06k6r&K8wдmIޝIOV_Lr%mG\1kIޟ;-I ܧc!a0NlKsmaO`];󠙰m_sJS&/P8;&ɉ/rҦ'&9~f{k':sj$>SiNͻs ᤿d/OmIy~=,$_NrY|v1̠Zo$l;aX_H NW%Heu+ǜ\25psOO8qz:ʲz]~n˫HI::7#x~/(mkt=~^ ߽Ž,ɽu`e@ӢonVWdu[nrOrW'zSS/mI]f0!A!\>MYc>5;'7ISnN6%a8ӝ:OriqIv3 zတ;&ǧh%b~-Gg7Ӿni\X~+ WYgw-`_mۘ] $yO T3}۷_Vz>ɻش-XtޝIK1.I/Yn^m?'ObKquSoc-Ա#!dܱr֘|i¹|p|Xڮ`_J^Imߴ?>j*K(&9{2|$ In0'm-+83m6<0diܼ[?-U[;ٯ6rqfŤ漅m6}xN{In4&~sHFcĢt3&_Z؁p.ܦ+6ykvzq2`2UU]םWU{fi]]3g_j˭˯[jNߵWX[~3XnlM]]:g]]UgWU9c ͻɫo9̙7vզ/(Vkszu'L:uյr*hl:뺯Ή9Vu^<'ꪺ}u]uG_%c`P unyb]kχy@vzU]^ nmޯTUjkIkwLɟ vz] Vuݗdt$O>`]syqv_wl]}]ـ1wYU5`rmuh6VIӏuT:&/DE; o_m9>Ie+Pݢmxcq~*[,OnUUl?*M^UUk.yilv9چBX]}_J*Ul'WEM>~AeXrC/uݙ3qU}w`B"$w70m26kmkCy6tum:`k`^_=WTՏW!1*vٍ:|ٵ47kmS֝ [kݫ?Ut`W16۾ g齗ZQuUkDlsӦ_hӫt:0nKck~M#QQˬ?{fc`1yM ~e6YF_'v]_8N9Ɨk'٦뚪6n+czm*ƴ]ȻuUU5%!cmInǒQUuݹ]׽TyUq%A񷱛琍։5n㵵)ʇy-}}~P.ۤycLzj6=6 ~/ ޛw0xugyG>=/Ūkc2Mn.h;eίmz윛ા\gٯ:pl~lCUybMԡEI~ev/[6_s:۔u֏ݾf8~տg˪zςqM&Lg5CQUX|veglL^ӦiU_Ft]_sצU;+IUuԫCUl7l}}ٕry=6rcڮM3jC7QOw$yDcUE6~ɿSSoPUP}EUsȦr ٦~5;lIeLse.$<`'v$״o'0SIk$T3/'9r~mkvA&~䬩:a%SᗴjnW ɻm$$ly_m%Ź4ǧ$ǭ!/i玱U-u OkiYmWI^( YR,g$WOsVYgScwnּæA3a7OvA΄?|73 >;U%o-$?nˍ=<g$i*sV-&anm m#m37&r?MۂuM- gO$7Zܲ<~>`CIN旓|"EUf-svߘc}alwps6e]MvP MnIɣoOnMc53(hc'U꿍c?;UuMOk /W-Տ9c^uUo7>Q[ZMuɈG _uG/?ot]7-2C󶳰.w]wigU8ᢪNj `u%dˍ*տrz&`qݖ/F^6yUuc7al^/X6ruj6ά P~~HmUݮ1{U=|ݕmQWU?ұm7kig;qlȃ>6_sZڔu֏=fC[?i={.;xrXTW ޾ؗC\U?W՛' `~jC@[ª: 2MxvU~뺯qz6/q{!!S;@N2`Xlk3$$yncyyܭ6jv{a{C UUI~/qzVu]M7phfUUuUU]waz  8@|ί=N{$j߀j/#➷YInSUOksUum;e`x;n꺚nФZ=K{^'}{Xp`Q~g/Xx`٩bONr$/N$Or~LrqL[IInI$&-C'EIL$Jw2-H_OJ(iߝMA3|/ɷZ>m7ku~9 rBAo6yI.·>Ȍ!cFv`e@ b;'b *'ӗے6lޑsu}f gINk빼}>1Sg*ӬFl_!Ll>^>ݦgYnIIn=g=uG9 Zt1 $9+ɽžGc$j$!z{ZaI^_=}tgF$7S"W$2m󿟩OZة M<8:[$E o%2e$Kr$m7t<Չkk:WG;MGe*W\^0$=|̈*#,8[ޟ>ɏL\n_8ܮYK[nf=s={d[ǹ ii#IϘqVg$?4ݧe挙Ok=' /~dxpН#ذ% 2u41z p lxXܐs_05or9%lnys-NgOI~tI̜'r:ԣI/L{$bh>f\֨c ;]~ L[iTmY 韸g-`gu` .lFl1آ5ɍq ?cfV]?e&ޝι6hpН#6X9뺯Ι6fhw]wiSgûu{_oӷv]w՜kO;M?UU]}û;/po+ ΃>uq]׽x6r ƟRu͙6=k愿^SU_r=ao͙nU-3 |\Z)SUWVC~ӿ+whgHö mZbsEu-3IS\UVCI>RE)U n ~UÀ~axC7&*ɯVoUOoԗ`6`}UK:uݥI.[W\}t~h8k]KOW՝dڪ}UYU[ gT.6iwnee1ϠierU=]UolmӿZqCۇrԳjn0sY=Ɣ{|hV]63hhpP#6XL\ݦ6XS>ɏ%9s{}u~lHƿzms$&b6SRUur6ե,ի$?33oZ5'}z'`1y0y dޯRXWSWVϫUsG{N~ά߬~ i1=|s\=П:i[:_UɪJU=m{=n&ڤUm9BXF-Igտ۸U>HсćUuTU=?IWUI^UU?`8+s8ޙN$hc|4yųew_M$O\aj1X|sU}$I~o_uwHzvpuݷY`g2DT_oUUogÒ<~orcݪ~pꗫk'9MJrtOiXZV1-'jٺT$[.I$WgfGkZط\SLr^ &ɧ6$GNſA$HrQ|U/yp$ƥIhL-[%xjJՙ[3s~Vo&6ץӒhjud~pv?<XLr׶ݴ|8 YߘӖ,#[sTYX1_-%<*9I.ˢ}Z>SMڵ$lvAu$O`1IYH?Gd_ia KɪzqU}oXUߩO?!}tU[Uhiq~wI߈<XUVU_WQX)lQі?ot]ӧvOW}MտudOuWLàF{g8{ ,;|[NjӻW?Uݽrd޴UF=[aVjVgqU% -';}8ΑlH'iफ़$oT83a{NWCͫꌪz wXjyOVteIENDB`mkdocs-material-9.6.4/docs/assets/screenshots/social-cards-layer-background-color.png000066400000000000000000000144261475306445600310420ustar00rootroot00000000000000PNG  IHDRvO@{\IDATx!eNN Np  zɆ5 / _͇0+3jâ*$h7{܅Rf{&;nS@ḿw~ߖ j?3Su/k XDw`GkV?c}/*twq^<7u]}7^?S}y]Ӎɓ~~[E=.ƀꫯ֣GѣzW/s9̻/UNg??}ٟ?~ٟK駟8Ç_\t楟ƀ?5>{yW纾~uɓ#ywtcza=}yz߯~V3ݻWost{W|I]___}ҙ߯??nn[oՃnuF$7Iz}-@ ?髯jXw XDtr XD3`̀@4 XD3`̀@4 XD3`5nC.5wtUU~i/ٍxjf5,f  h,f  h,f  h,f  h,f  h,f  h,f Zk'}}}}}}}}}}}}}}}}}E\j/骪67:_`O߁k XD3`̀@4 XD3`̀@4 XD3`̀@4 XD3`̀@4 XD3`̀@4 XD3`̀@4 XD3`̀@O-_UUmntd7ڿ f  h,f  h,f  h,f  h,f  h,f  h,f  hu[r:LsW_________________nS5C?1`̀@4 XD3`̀@4 XD3`̀@4 XD3`̀@4 XD3`̀@4 XD3`̀@4 XD3`̀@4њXC?/8RsW_________________IWUu8љ殾8Vk~j,Xc  h,f  h,f  h,f  h,f  h,f  h,f  h,5~_mqȥ殾pos3]}}}}}}}}}}}}}}}}}%qO Xƀ@4 XD3`̀@4 XD3`̀@4 XD3`̀@4 XD3`̀@4 XD3`̀@4 XD3`̀@4 XDk>` K]}}}}}}}}}}}}}}}}}%]UFgKv8Z=;` h,f  h,f  h,f  h,f  h,f  h,f  h,|I_________________Q!Kq͍4wq` K]}}}}}}}}}}}}}}}}}%]UFgKv8Z=;` h,f  h,f  h,f  h,f  h,f  h,f  h,|I_________________Q!Kq͍4wqG:[{ijy~o?PGTچB%GO4v8SBkM oj5/(9DKAD0"ƑrN; 9SjKJSiiя8#@O Eizm50ǽ18qUXFU0"`DaKeG$sH$rڤJ?ȿGJSsEadU)P(RKA#JAcJ IAUJt)@lk,5eJlC =u%U؆):њ" VlX։3)gԒ)R?Gנ ZAM))g*PR+qԒȪPVD%B(4Z|+WRMJLKT-!e -Fۣ=,J3$iЪENf((G[3>?ocb F+KQ(c b0f2<҂+ YkO4`S@BQv__:m1߱GAjf܀nZJ*7ܽ4ih?Gn;݅EfWWpi:3v;K?ϟi#)G]9?828u\Z=(ψ$?4V+꼠vo[߇%PK-uLn?~O]=Z8iږU |AR`چtɵ N#B +_?4m TTBEJ1ӂBB6,BH.bRfsݞx7t{'w_Z tEX -B@Ex F'aO) Y>Eb=wаo_7ߊj[%JW*y_# fZ?>cf. u0[ PA;*2iZ);ZgX|+stZmnz# iM[|"ȺNGLnEIE+5*Rm8ؖ5';8H L#5DtzO&zd0pcJ(ygn=J|x>˺׼R#cZ´R{H&O5RSbGV<ŵe:'a`\Fg7o!Qf\zڮ!T P%㧟3V+Á߼'ܼ9rOP]rzx`:$ayi_#N%>UF RY&ez%R0sbRMfL1UpЕG?{h~_QR{{5+B} x@Z/C`ciיîT_&'Zyu:sZx^<-\!CNR P߫ VZ`QX)'~O1)v[L-\S?EOr4ڱ"N[K>_IPQzLӴ Mϲ̌q%)T}\.W1ÂӖ5dw:=PkEBmrݮ3FkYÊS m;º.3smH9mWO 9et/1hOn&HJi gLj/Q.9&vmRWv T *h-;(=4{vPVqK̛GNZn9M3+4hT _8k (T("~Ź5x趣ByX͟)tmQ}6-9UcYfOu?>S4CCZ=]s)Vy˚qV뜸6ۮO J+^~ _<_0;ϿVPѷ >۳RJAiEPD~ҋX[T1"Naa+$d@U>y{;?KV?wJ0xq{Ҋ]X3)G~/XiQd (U@ʞ^@, [*5AD_Ҭ(R䚶 RS+_39B e_*IY$*b$&@YWvbhPCSPK +U $J,d5ʹx(QTТ)ZH-5ۖ,ie (kvL)B,RGPKSS K%+S+A DBMFkѐkJ+氠P3VT";ۢ^ Ӑ"Zvie AT!B!nH 9or("HU(`1USU%@Ps*g(%c@BRFA#3PeJΤuhp=]߳H)5#Fđ )P2fڶe^W1 BN4 r^P"/vR8U!"Zj&fOo[DmH)bƈA'RX"#JdNXȢQ'JS%#v;'~y{9 Gͫ[?r!n,!DFaza8x!k&_cj aˆ0|zLJeb,c2,z%/Ԕh_Bc!`Rfyz#WQf%̧ϏOt!n`'~7VU2zhq%GXb5q^4Twd11fjXmZAg ^C޵H\.3k )_ ]ׁϴkf9_Q3yR›O>qCRayB+E4w4qɞWsgr4cܑc&?M/WXT&rn{Km9Dps{4/5QNjt"j ezkBML׀h#Q47{e3qY%B{ؑr@ iCض,tp` 5 JnPEewܽ'3ǃ#5*Txxq:Xnn -ݰK&R9N <0`rBЊX={TxJR]<Vǭ]Pׯ_gx:H֠ i\y[~+:0gJې}主%jÈO wR8)5WbZSrN,p]z ? Tty{ߡ{t%\'rI Iyvs O|$_#[ve-z|!SCc<])ٛ[珨ƒځq]9ٷܾ)ݙWo9= mrҵ8eYF `~%kb HΐqTYs$WJ59,8אr*iZ:ѸZ2RZ[sZQ:(c(@kqe}!ۦ!15uXcHSж aZbXii9=?IТ9r/h] Dm0)ir~|YixsW>и#c4D:/>P(MV'9^)|'yWw{|rGy+sQk-k0/c?ہirHrh4LӴ|ȍ 4s<y>e!cKpaLT\ "\Sd6]+!UvF3-J5KH9J+h#FLt_xa]qYVfӠ^Z~ ʔ"hT)ܷq"B&mHRDQ I `BH5$B-dP*Z $Ҩ^7Joi<@6$w{B-C'+!aM\2Vu mL @2W-m%BɎKIZ=mYeNgXbAA/ZU*ma"Tn:05=LSjacV,m畨"2_<"%31-e#U*6z~hF&շ=eR 9K$K&MX ƭ&cDeJPk(B( 2S@ZXj##ʡVZDUi 6vT Ec&hTŜJ+ uSQ de( Ӵde3"Un BTA^R"* K-5p" l4U7((DzVkv@KF+1Xz]}iـT2Y2DgV5TvecCJ)dj-ZaeYWXeiFjZ)TPT!Ț&R]Q&cjB RF428C08mFJ*VemEnj sJ(P3lV|R(aZc#?=J;%DPR҂G2wde)`f\EM-WFH& *gRVH;l =s0ki%eo0Cx!r!'^H$ՌΑ. 09gN`Eŏx/R`\7h 96tj !Ԍ4OOtQ~@xsB.:En4rhOvIć3HRVԪ+\d A0ˏ0GzWNX<=L+qY0Rc^gHLOį8VjZ=!ʚQ@)Xm>P(EU("iM;1 T26֡*(mhm C+k7j.H ˌ'k|ʰČlѻ3L+8rH9ps'`@zWu"z?)a2r*lcĕ_pbpe7V$ԚX B鲲x -PQ5+z&ρGBh6*KDk[21b$#T\ےUe uLӈ]+te^.qnPĒ3Gq]}Gv[!=}gi(3_|!3؆ _uI摧3ܿĐǙ밭#<.(q{ _?vb)_{ǿ+_FX3i9t%W9PTm^NZxu] !\/yAw7G*e4JO1sGvL [sL5{.'82O'JyftmOPhAAM(D)Jma4ĔXIg *´Τ R$"RLTBh!zeB!#1߱[.kJʅYxe8v %q:]׳ߠm _-gn4|x^907;֑H\Vltr9{>{5fL5 B, HU;.xA*rM'Ij%FPqɞ#5SH!b- S̤5M)B*"RK&Gp{QB M%LL"Yv-fve+ žqs5=!Ռ/q"J6aVt]v(u|r<<G*_!'r*m_ǧ3-5 nů{yqLK6%ƅr-x2d:NE^wx:{v=2WnnzJ q&fa)RAH@1)JCE}S9 e)yixqDLY2ڎ%lBUsw#M+IG+A7Zb\남 OE!%WXDVQp*[붑SJ͎(ZJ&WXU%kaD)ԲI5BΉZ?sGeep036 ]"4qzxbyyJsX¼0>_ȹE@Lwh9擷)n]YKf'݋BB +sLD19k~限)2Ek:ф}ՀnKO+T7_,Hs4];,ȍtqye 3O7f=?\>NH2P5{sw['0}ӘL:t׀V B&ƕy&?ZCV%tfX#T2k]OS2iqmS/d|7D,LXڶ8D^혟g?aG-ȼ,ռS5~ׅxk 1\IÉ9Wu e4b?Cr!O?{wwn?~gaqZYr!~YR-1GlC`&J}Sk%?gVhkp}zԍ渿AM1M4}G-)&4*B;# Zk-nA Ӻ2ٯk1b L+Jeٔ{baœ D* ŒU9C3㸒SP:4 I,OTOo8*G[%͜D iTRi1 @}ՀkJ\SZ2S(:0Db [Mv?RQu%6X2@T6@)Hi#} F % l9$Xb% f53"Whքh(%rRsd51hL81B/NWv&DUdl)ɦpuV %i eӬKf ~x尦!ky +40q`pt0Gt)1#5+ʋ/+2J"|WȷD6W@-R昨k.1+HZiH=J Z*dΧ3y /"v=s,9s¡i#)XJ̤TX}$BhZ1~S-1zkYmO5x[(KM[FrqZ)Ĉ1# To ZWޝXsJ؜l%Fs\^\i9}ے2>?;Xk Vk8U}%)%F!t2N+5Z_z޼zK-xXE軎ZonZ<\ -'e?|ngy3Phq'{RHI,3/],31b ?ŪYְ+Rk0 =ms{e ιp/J0Zo=^e|PZ$ureY1Rmx^<\Ʊ_|usW;F}<2apD?/2~/__f@{F^khEL5$[gT64[7jChJ@ ĭ)481ĚRPT42@[ΑR R6جV l'|S5}(j- \gg,w8S+MI Sʨ\Q+KVX3;m%B`m|&WTi0(76M+h\(R1cLQr(#!-B,E (J>yݎ4ԋT*hQ4P|=cָ-q ?;גZnԊ}a }AH ]ڶ1J*Pڐ dTl 2׀EsFYĪ !l+嵥M^j% /٦/rO5A#Z"}ɪͺµ=f|躖#Jkre(m@:-ll5 %8 -SLx6MH bj k ~}C-[`4Tk%؆8%uTCUeIA)E+ӃEut0 Cx>]h֠<=_Qnk2 fEPsS#w!^wLqE}vuF)a\01 f= ':ݐıueO|DgA;E,U%ºN4e4ѡAQy0]2(| 3,B۴ئeuDXk!ӈ"jm-Ѷ֢%I %|%ضaꩥKv-NyI)4C z`c#ISB*`wΡ% EXë{r)辥dPn!a37T=Q m]Gkbߡ1EL)a/y3W.˕WYb}Q󊲖Mz U'Vz>}˜m5X jM$n M],ݮ+_#vG$]ۑf+AP~#~ہPZrîFZ{~B#D@]W4<@|kf~'|GL >>1ݫ=%AQԚ* ϗ+Mci YVPhr0avI<ءuD].z1DŽvuq+Fvo5Q_+'8ım -y;~bhwh!@{jOC)Ǒ!{ O|?B;-ͼPJi5n`I/ }GiMM*=#mײJ9et*AY/v_rtD:@+rhpMCJ cfR 7ϋ®pf=͔0J3de_7};t~+>L0r}ၰfr(nBkƶt#.<<^y~=N,kZexhedힰ* u)p9"5!t OXk=}ېD DvR%ooKW]~k-67 ъ5gt+ځ5tB"Z׵2{ќO'ZX~5\QR&njۭnRBKo XP)ZXk/^o^,b5Ub C^"U+IJh]iElZ]}]͂%3Y ue5W86 %Wrt%ƄsW\N'֢)ġ3{8q֑SaY"# 䞛_~0'|y}K,1(ǀxE4urIx}CZ<@?PŒ<8G-U|09 Î"b~Ϙ~ˋ2p&\ߠ1|GT|raϕ*(u#P3_|J:5K3Ucġ󚶨#S`q8IQX7'-2$jv\|&B8g+/#5{zә8qh;R4zxoAkTDs}і:G50bEFK)?<a3PG{F__+Hʑ˖;L&  Ak `KXkJthl+G!iJtjF )l~yUMf*%jN)fQDRqU0J3+aR )ĴХ3S<P9Jb^͈`6uW y EYV9pka[LJ+U'BwĚ ^`\C-ۡD#q%,2@[&D*_ps|z0 y%M 7ov2a`7m%oj,Ig:einS<<]Q_薄@ҋoT&@E :rĵhTVQw;Ҳb;+/ qG:=jTyƇmq:)B֑/ ´-F|)2@yf9]'7_ry[D׷&){we%]gJH6_P#nZ.F!0̒nJ6\gI+M#xض'DYrch=\ fcWVY(^"lqϪ2K1laJR  7@Y=V:Sb.3F#r_Q1-5>ftHk ӂ`N#F}#jk\~GхX&qYKHd%ݬu}J*'|ʜ/6p$]i:Q5\8_q G HVMX&ѹƶEw"%%zu6%5N[Tİ)/ Aʖo[JFNJ‡@Ji#Kɐ𥠺%F@RȔ@2Tr)dCRA1("f?,%ʦ:s ceZ썢E g9x\ZӶ-QZe<V)fA1%y䄳K;shg wC><_vtmˇo3O )mnH԰rs77 qhZem]A(z8FǜIk!foO|q:1˜ڴ®ipRCsF7OIz#]bB|F1zR l._=Z)KP2( +ζv;bL~RbZf IT2Ze}G#9bo)RBWAF?q]Ff?s΄Vq 3ӺtU4Αpg|9>mKSTp#/|LΙݮa^<jz|gɛ޾g'>;؆7w7Gg 7]ϛ]W$'7]K#=nY18H0+?04Nmbde77|kӕ efh,Á]9=dȧLO{1\/Wz7|ᰩw?_y~XKawp40 nftºd|ɏ A9t ܵ\։uH\/# *jm0]pw;~qIqv]]d#nb" c \0(3f.3i9_teܔigZoqbo~Ѯ5o-/MM0l.2|x0ok{#EֈѤTi۞~سy8)\x|/3Z*Nen-c&~%L aaߣML'7nPp1}noؗiťVB)TB 5ަ/KTW6B-]>l6ŌQ R"aw yCZX3D~3+Z.+m‹-atC@ ^*˕0l]Oqfz!d]xm:v?dVnDU䴒İrzzov<-Xc1rL WG_Ļ#4h0;~:_~c ܽ%UMp>p[jx|xJoh͎[,&Ok[Tu,T7C#R?0 8 D׵2@q"mG+(1p+(TÞP'-oȚ"Z;v#- W 7q P6QR(\ۼS%FrXR0aw[fMҖXm3Y29ה+hKBDcĸQ =υWÁY#8pVI%IFVgRTá%웆[k떟$s,)Bق.4^hKÎ90-~%bx?.(;.W"ʫP+:4&QFϾ)9Kݑ̲r+=!#9aElֺY8PF})JuWlӹsNdF>&1 My%jh\KHwGܰg-Vu0? @5R$Ҷ)glF7F7w=Nas!lvmO[V %¥w;b)!cusV-Bs p=6dJ^~(~ gX~wd^2(%=fO+8'R W|yy|^Y7?W=~`pyZ9=^T|qf\ v0 kyE4q35P7ֆeY-&l\Ț!!iq绎N45T9yxAYΫb 5ͻtv2=9qOM=kL\{^m1/F} s@ȋ O8uTq9Z21oYf !EbLK M*Nkf"rQ Hf C6U57ǿL ܒcXb-V-H$0{e[n%Qk!cƢcʀ9fl2j)ZQsb[#TͮUƴH !gVMϺ8fxvq!ʡmzR 6 A e6Hey hQĺX#4e]g:q)КnS{QP˔XSEY0In*Q A)U[[P Y^&El2M gj/~!FjJ8yzF%kR=VA t;l@Y.Zz%Ny ͉UPRD͖Rf<>a;dG DY:єY@9)(*ED%y v}J! 80'Wtsc( +Ѷ+IWoy|$MXI|BQ}lÁ?p*0g gwpli;;vH'aí[`|=8ʯrLY\Rf~~)\B_ 1TT(!_gžaUp~,96ԮpܑBK! m Oۤ1⌦_fLӰKBMշ1PtCfy:[G('ymQa br*J1szf{}YnOXhf#n S^h dֱČZVn{ : |$E,a]9|rJkޢ텵FJN 4b$Q"qDYs%zrز*pD;D[&yi9޼[&iiOR/Ooy~ M+eKp#΁q{ ӼЇxGlCvxBE}S 5GZ)!l5p^^0>2XÕ%GD4!zqӷ<^Kh~g]gr R0E)K@Rqְ3E 4ՐcA)Kզ NYڦ:1YgRˆE<^ن G@E5,I1[A5Wy#X#a؀ca$ lj{bɄ#"ӄ[FU*q,!+mX֔݇BFF KXaKFrъsdGְ7Ƣ`tT+5ؖT ~M|ɱ+ [i|bo9b@ {5clv;ӶjiAABɑݎs{MogSB|DzF9lF7F%%+@UFD9z{mz+m~ n-0SQDUJkC rbpn[/Jno,*Mt0XE#v@ȅ<_53-#mmAA[㴡-s)y!bJ[V/^)UU_m6P J]˴(kfE W^r^^i1X<'m:/cf8vY+D6h*WNr^(zs̴|а#'N35 %B-֊:Ӷ˚+,/5Χ/~eqQ"*awD]V\ж?!? tn^97푫CcRHc^.ദB-U5Fq`0;ak)$ aN_h~O?}v`~rh[u|ô-McLji,,5A'2Rʷ?s?`c'zwn 5oZPYhԖL"(%8pn;dk6_)mSܴl٢J2RJELWV $fgPN,ؘٖr\,(+3C8xhAcь,2{Cbfc`1+IT4mD;<پ\}cJhY(ckE& Ejj)#R$ UdB&APoU("VlUoVfU2*LAЫS3ReTmuS.>%rL^M(0Y蚘Jev~2_P9bES5BKeY)-S P$b)Ynk7P*u#˂mZ#T R-6ACJ r*೔W YSuЦB r*-}L,?VBM5-%D0%TE\ \YV)֭(uU>z0K_k!h5dXTQI%CDQe %&\=D-|c*X&x-Jdbe0B"B+7 (!M'7R4 Eݎә+^x,C-_܂u&v eax{z=Tї/i7=#F'K/'P*P̧ ɶ빜.x!BR EN3Þ|q:]m5!i(IVbڡ%/ qHZ!%|fpWp#3~0)x}J,qAZEsMJTRue mףf^Wn9դxJϒ4=1' K"iiEDؽ{`͑9xexsGt2R݀A!N3FjV9~f? ׏<{0[E ;])J f3uiŶ@gŲLRc,ÛGVRq=]ZZCRG3Eti-n^v/GdVLv%.ɚV{CgG>1%Ϣ%<6Эe3RT~Ȇ/OOxz?iJHe~ P[y\|׉Ƿo9/X+H4 .FTYJg~+a3O"Zۇm#,ǷD‡bT'x41͎Zqf{rG^Ap51i6meHY?(>ȝ&c2[!#dy0=_*\"'JʴJɫ*$, & \RHe "2%KX؞1,A M;+0w9h["6:] I%TQj< JZH9PrRHRzW9TeRD\|fuQHL.lm?\&ýh,6bT˜o 9Ǖ1R2 DȌ9`1X sZuMc:ku:szkdEI"͒mSpM`dnj/E)k~+[m5 S0uR 'V9o K}IAK۳cJU0ds-q)`D* 'ȖV+J:qeY5r=!tk#xD:D9Ȉ\پ#0 <]R蚖q܄2cm55=}}RbMTCj$!WiJ!*Hʙ)47 |a\S27yPMc9]NdH$Le*rayy~ygh깢ۣt_Po޾\h)4]?5=QB[ܿt>QGX||="p"pmX]`*c;ya n%PZ}Wqq ˙M1=V)MG\Zw\3"tenteY' Zh=ϧx QJѵ?'~D x[8}:v1iZuE//#1U?G "6XpX|T ,2R!z\KHnes?/he[ZedJ5͆ MrL:{<AS#+p'0W4o#a"G7x^:=0LK_OX4R/U$_2Q F)| 5Ki[hU9 `fj|L̹b$!JQjLhd$@(6)J:pC* Euh:H("N7h8i d Q/% 8BKSVY[*2l17N/A(Z10Pp ExrH _T4ҵ=~)3 aZ9VfؔSRxƲLV BDnSSx"#r 刀۶Wr$ Dx)~hMƧum-9 JrB"& V:jb*ےo7_$Z )%ۀS[1c+]BY[ݴoqk!L(Pv4TcO4rEĈі"jeUeX+ʋ((i)Y"u}J) R[X 1RĶmqR3%+֚߀EBRRזleCD[%"oF2Uɰ~y´;:!HxyFI (8 5Y8 ;vC 3CRt$4 lkƅ2Û=ivroQV#ZK3H12+$Ϩa'šA iYKHoy姏H'"ljuM(U_{@wL(cF[cېhe=zhd 4ܩf D%Y`I# R 6-"fw >=V@Xk__LZ>fA ?^i`⸰v#+Rm8iaz>"#݆m)L0pYݎq7 u`t<<>উ]70qx0EBdM[M+J tӐ$e-H#i[ReL;@X%Q5=//GwD:h>}|(-Zfg>q|ɓx]2=idLxc҈Tm8԰д Y|>]膁/Lݟ9!%1\{.\<.:i͈4[X=ax;ƒCgBlvз=ӕ;/2 u㦉#:s1^Έ7|Ķ2q]^~C "ݞWr 4t]1-9 V/} Y4TZ!WSոm Gv;KXTPZ Du $j"UA55Fہz ]!D6=O'"Af0N#Ji1)YBM'%%T(SZ)R.,>o?J1W30E):aA)MJ4z{{2MX2_f6;>+_+a xy@̙o.u4ÎϟOtm˧-sHc~Ӳzlx`@T6kJ$r\"VL EWT21"}2SHcpBe:L/ 76 dI K Dp \J ;.H%&&604Rb\!()7 Ԅ̵XJ@0AH)Վ*QkVB[YnUIW2,ȡ Ѩ"@it;xm.1nG.$VݎG* ; X\@ 5c"=fZ9`M˧ٳ3MLR:C 2(چ1cfleZRd DT H^Y,fÜr]rL*&__j Jް_B*H_S5 7tK1mGihmZ@HM# 1/'\mϒ{PЦ56,#d5)!h"86V]8O sȄ[e bOn$-X-mޞJRbdgl6M5zG4$RgsECh]dV7 [ ^K<]NlJH8o/E-9eJ P2Rh)!j#Ka%-rZ%59WhP= gn -85SHT_9&Lɍr8,+]ɒd7T`RXg RB BQjY{A>**#֤6@23"nc4Wn甄$LRnD R|MHW|4ߥvŻ'R\FLIakel E*DJ #RaTJh|Pd޾!1(|%I6݌m j! "WCU8 O3IJRTOS)Qk?_ټ{SJa4No^)wҷ%e]p˂?Lj煻'n!=$b) iuq+0-yE'ܺ(VPVOLHZi+Z\auoؼgr%I>arDgX'a Zb)$"eGSmH9[v#R*O(W ưsM@ӴZ²VGѷ#c S*oiiI2-;,vDkLdvwX2a?YEBt-˲"S@ mԼy2OqA-'^b 肑`cEw@Ěh5VGr9R1;SS.Y =9T֪dwUhQy8`Lk,LYA aK"6&p`i;aGVKZr__O۾u \Dž=[MS1_扴OlvA]BΖ]Ǐ>I۵ܵˊh r,]JKN/WN3lx='^}!*X4Gʉ4&^p2Ս(-kM>8ʩru>#uZiێ=WvwP3Zhv;sȘӂ[ie5Lf:He #%n87o4JSoיRds8c`&BcFJypJJ y9]*I\>|qryl0JR5y^uSwƛ%'=86=˲܄1[ƞ[ FjVu)sa&27vڋ\I)bT;s(-%Z!$S`z]Q:ҷԻ<(k]j\>/31RWGLU N\m\JuE[]_VW96 1VN8RBkiY%?F¶Q?}t,9"a Xѐwސ܅a5VzS]."",1 R-4,e%3ƀxL¡ѼX DHt<7%yě-I213(BSf*d=P> oLYRMg2œ2 P %HaFP웁VHȬYRJXQ(m(H>aUl)B! R$ DЦd7Ʋϗ3aK|y9y Adn;L5"U˲rL욖V{hnIEtq=]p]_1A3-2IX& 6Μ^6E lj;t݆8NӂU 9'M˛K#.(ж-~q5%jfswt4J%Y`z1]B.3$=Z[ȵM!:f`HƅRSc" ݆@y<Q6JJr\H FH]?p 8Amde ژJ [X݊\r* %X%I rĪZmUF+}?JI5au2_ 4<#aQr̲:E5uO߼D@'T*%g;\Zyx8X*'m)st>#k\D(~x:Sn X$TR$~nvvo_}aKXm<GgnaA i Z[G6XVx^8c¨>S(/k#',Qk,󑻮ٿy L3M$nTw~~7ؿg3W!?&̿iW_77ڏsv]_dUrFބ)nRB ٫Vw R ZbRԃNI!)&Tz 6eT,%QȌˣ24VH Bc͞HAɂ Y-u>r%5bRep]R`*&61KMP=[H% EB #CR赡-U jI*^쥦)#(H@[ ` ^k5H2JQ~aj Ofɚ5rtưBn:BΐH\ER $OTh B*Dc {rN5Q$%z0/Wup^J:R ciMCuM%-RBen[Pd%b %L%4J<`;n놲dc-6zQ2@g4fN )@VjA&6͔jRRJEgnk$ CDv0 ZAN+,`$Q CJDJĢi #f7BrN4"c:e9(ax@i$ey/ l#l}:6Ca-w4=F($VsF6Ȧ7 eBTuЀJtŤ(%r2OCyM߱y|Lm+4EbbY-> Rش-V+eFP@t 44дRVOkzӢՊahzcj"UTx$("BO&8ͼRa˽¿w/%v?7#|_cNT Kf\N\t!I bH$K 8$YT 'yj,%՛d YZw5"B 2h6RҢ~^1EKK`ִljj*fR#rd+$" TtEQ SFAKBؖ$ *{rYjJxjXiáFAL @.U{NUAmFKMe^̹ Rx6BJƅ(5Cʐo3#Hh RXBD5Jh:xmXL1Hؖ|,P9כDXY !-夘VH)LQQ%:\+T}|Q*x4E7mjUOf(E@RwThPdnLJ՝*Q9Z%yr^ -2ZIDXa>\_\~91a(h;a Lf4͵m`2!G6s6y|Mpa%9G'%9yEC{XdXJiB(eF4fh!:e vU#YHpaeA@IN[ 2ݶa|'MG7XyeoGYIii9ω* SJO dJ,R]Haj!1t,ti X_*' O'tua|zÁzD7dQ]M O 1.=n Dߴ]2YVV띿UBD7~֒\4(mZ nN!C1u&`uCwx$^WK4!zq"y7 czy&G#[0[rYCe 'D(Q*4#Sa9O23woHJ7=KpXi`Nج8]94t589ٵS%Dw mI?M)9gT/_hm]*^c`\gtRM>aXBfկ#@=6-;Xh2*>K!L+Eb۶eZXLp0 l6HV5r2δ]ï#/h-+X ?,;Ɏ2I>xF) vKQ#) Z5-1ʜ,) Xn_ :-'a{|tĮ YJyf:_ ,1/,nbr??+RVޕ5^E4Nmx!FcJÖ?}wIIr2:>}>av=iyY֙J 9&* 譩7dRDDضLBBM8qY)m@FG-4Z5ѬA ?pW`i-V4U95ev=~CrJ] /W2eG.V C%qEpUzq'\ AA,%BBKThYv(#y)[3<0H)"T\'w"V%&eCSxvV+:UPjtAH, VXRhY9rWy60KוfYk-][x3hloHڡdupk[RLαĕu,pu~ḰMaȂ 5I]̄uy*Ią &JfU?[n 2ކi]Y_q21%~Ħ5%(͠oC#TGccd%x9dBn%dV2K<^J7(p)༃R.se-8|HĘ!N %:SU@ Y9,!j/T94'C81u9dd.D!8O=8"~ɹ6w]C.;/\u$#YBW~|r>3987^49) l{ͧ{:VKӛCF2#ㅒ[oMkqn‡ w}G&syAB%aDzLk>=]I\0u0.mbrÁŏo=y(ѼNOh!9}yÎ*DpFӉ4R)@5}RFRD=c8iR!i ipEtT-B|S\tM2{֘9NW.>zӯ#槿d !?@k?>?cVdBJFX*#G2,ě:6@ M/YeML5;-a#OiE$,HT`%\̝2x) )%hf` ,YK"&BH* _8t-{^pK*Ah%Ԭ옳ËBQLtI%atM%)D-y !+Dl.QEODs%Tn;\&d+ 03JkIf b&Qڷv̅h >!BbD"R  R ov)f)RVX|.7zRΕDeA~VJb"#(9c&FG QdU@CM2EV\*7G ݈%t ]Č5#%eaFY#ZTSц HBB/!*JS@,qTvW=@UiA[U+IQ!quTnE%#Ua _[$ i#IU\_4mZɧWmYBA s7~z"3GkbЂ)x. mr1Au]n{.tff@ؖ(2W\P]qj-R+w; DB03&f?}QVҷ=ϸ`|=gf%`S!9 !ϊ U|U=o{PRօ"T2z׳:O :$aq:Mz7}nϺ.n"AuY0ӌiR 3n(MCA0=qkHcZfh4> +? Ɲ/h9>!=h BBĪjG۷eOs:^%RhTN+0R5BB/4qAՇ \RZuؒ}.E+m$.䐸^kaL_8'G48''̸l1ItvǗ# xx|FHlZp=l~hDY#} q|Hc֙cy>QXekDptC LΊv<C8#Ѡ 5ZgU䐐+Oh`Wi+RZZQhئ/zAABD¦kYcagZn@/;|on?vf/ϴm-4r|214mz1px@Zx٭LaN7A+MڎÁ=& ɺ{|z]|bsL 1Ha8d)!0,rFeC;193F$Q%l#Ey\QczIT`ƥ{JsOMG=AX!D"<:PDưFԻr$KI˵&J!5FrLD93E[mQ+efR䒈>јjSFq#CUJ]H#(40jo-BjCѬ10H+jJ^y,[Zsi=ʎ9:67Z|ɱBOSuٮ1|;1iexswhAKc,y7+x ]*v\cQϴc8B)IZLDi! U_{ԠCi>p=|Mn}MgqK}1QRU[h*nA3Ԋn(9RvbKڮcu3cU5Rrz%1%(JeuI!LS% !PJ"1Tzf e^r3JZS KZR HY!L)9Sx=c-FK91iRx}="TCy@kow '5b[?/К.X)% 3ݡ3ۻ#߿gH'[sR8N*hs45%Br[J]òZ~:pG#ڎ_>˾ F >{+Kqa%i4B]&2Ϝg&5gNEWB^wߴb%)Ec,OWϿ~")e6DJ/(қIBttFZyY񥦙%7\ uZѲS p~e)iAKE,UKv)YEBmkfсQ)dyrTx=_D;RQ ?OxXVN1}nSyNP71OI E ҐC 溙ڢ +#7s.x"4Zs BBkHTMhu(I2*W6JcƄB!,.gץƽ?ؖG֐,q*#UhIX3}VjMnn(E1L.+$A<1j0P JIT'#2 !FC=b`uaEDn^*,$AÔD#iRzmFb @T& @,Nj.Fjdbh vYJ(JX9HAnP}D!RTt.>߬R(YRr@TjQV)վ TYƄiJR|DhźL]`.aezDE 6TR7+XY5D܌23M@JېbBDK5M%AT6m{KICk 8YaHm×&쒇۰ݖ8t,I|w?}f-m9tXAD<\l톷y =gPEnQ$j#E/ceFN%lDp2|lO6RGvCa̤qBQ&Ƃ n!n קg̦g0]x! ?B?A (%RKִCO}M޻% IumK=x>.Op( ~I1qϘq:Zu"z@K@ۖR1*h2 5ږ4z8͙vɳmXב녮3 Ӛ?<'&CYSHn@h ?CX -k5jVt,l6-~j! H,ey#Tf" a)߿d F7t3=_~˸p:M|xvfÛGVW~x`{ pG8׈wlV/Kkpf͉ݎ2=}}PZD]6\Pvα+BZ{=H"o-=(cP<ӧ''T+q^y0[ܺBa<|*\ڶD]0U^f} D:Krv YYO%!zR ֚z!J>xc^f*DJ32]g8PJ` M:0`LAT)T4&pC%EMVҔT%eu)^>$5k ju!Z.!5P]ӳĕG˚k,d "K XqZf vE^)bɠ4@׵'NsA5]i,5'ֲ܌=%d!XSGOjO&|P4w=n1M<춨qBi򼲑1߆P1ݞ-^u+D=SV ~LX+ƊPEbA7-1t~agz_7TĝSƹ@uhm由mM32o(e5PT6cΙ"%EU^H(cjZ,߆MVZYN5UtCd)p }ۑ|5A XCc,sXB'VxkIwdXr!)mZ|>IKQ-z% Y1^3Ot_?L _<=?iDn SB\ ˺Rd:Lnb#m'^Džv_Y>o_Zȗ%,"eoxvSYzp'+Yjo߳1FH)ztoT:͇<Ӊe'?t|+1Ux||RÁi>zZrB1%Wa 6TX9cZM 1 w]x`lC@Q&ĕ, Ւn3?4ֿ#GCcS0rByLQiNIJ~`^MՒS7E!>5znC ePEBD"o:&n ENĜLPhw#(EO+%Jrs, (iEIrn0sJ< k"KU*H񑭰1KBQ̾4DH:W7tov?Q`ǚT-edI[aq  Da>:Α0'Z13HH#5HyH֡5'h$r1BWq4)V,:CdYaӅF f4߽˧4z#Z|e,o@Hry+$ D˸Bd!(VZCJ$~yH {FT me`w2* (`B 1FaCYVDپ֎z3^:\Bĝ|x1/p 0(vroк@ !1"//ARHgͮ <e!.\؛Bx#0CϦv~:b|qE뷼gO5)Q ?;qo/ -/uA?U\2 FK"=b͆4/en@5TkYZIV"]Š˙F#XYk?.Mpw %L$JI~wٴ9r 4{2'~tRmv'ZB9րQ Cc5j]9'1]`]|"DG29)bmya1c*ňTy)9*<k-%6@rinrt*qR֬zKn)m1U "IB0-U+Ci 1gPL Ůk𗑊m u?Ol-^맟YcD >^V6-F|F'ܰ{^s ]· c\9W6خeV}xϒ?}|%L34`[><<|//ȶ,?̰sLhTjDB7t8 1T/3|M5RLFI'ʁT6a)åRAc:dZ1#2޽c:=V]/y!45XQM @(2 %ZkPqʎHɲC ,Ġ2[QP~%ЖLBm!Kb--RIԭu_~Cc)3`)h2%O Aj)raE-r/«t̲mOk#CAI)L\I&f!P"XC Br J[}DDJC,S $XJ&IQB2KpV2Q/^fu!tU2l c$.3VVJH4/# Z}J W`߶@f +X@˚R֛XAWBZ .y'ӢD q%ۘf ]8-~Vtr6q)5!ilswuAJEޠITfS@IIXdZ ,̋ƚ m脥k٣ہa!KBf] 1O)T+Whc.醾ۢUClgkvt`M"%}eaPD1:ȅNhd*XV)0+%e:J@ ̤DF (5h(,GNZȶ $e͛Gvۡ[(%GZ``#IZ!۞DH.S}|O$ o!u TKG7FS+%$z>.+\y?\8ӕ)bXY0~@V\{ݨZ*QAm;bF㦅zr5rBn:m0R!$Ne, $t_ӄJ|40+9-m>*p82[~v+/dϞ#ʼ,\ JZpl{Lkȫ:=bw=m(@~Oaxz]7mh,fOB!֘:T52 R7,I?%~4g ?#@6 i (C;63K\i-i$ӓYf(%ݵwjua+ t"LY[9ׅ)te sJ 12ݦ%^Τ0(ԪR2.u"rZK$q)>! _rQDR`K -$.Vs6 GwL]τt:rz ^Όs,lwf5 Cy#,tD>j8&Ƙ!ԁW3 )+etMSS5]t>|𴶡 AEJu,VܭQqGR*5 cRJ}ץ2upjJM њ~%?#lv;~ˏ@+CJٚ_>yB!e04ӕ?$c=ècph 2E2+)^"[%I(@k 5IB*-e/cRl+]<} %??_xY?'X+W~vST(pJSkn`-G U )4^m >RHRCqFxpJ)J%t|ZhyZa Z C!%H*EFNH&ax*.oo쐌"dDUVi> e${i=y~#4V׊($$CkQ`*&mJU(پf#PG*u{$ڌA)Aw-W軎ǻ;.JeyeAk=sp#7b&Zb¹V)H Q`4AA[ݷ,h1F5fż3Ed+uuk,#"o+!FDU+w Gd a@ir:3?~⺑Y4VgHݸ#>EH%pPK͓uJD ͪs|gJn(-X_N әl:CvDkŮq?3o3p0nv7=//a~sPȒ2Glew%pVh05gvntOo3QwuMKc*Ӽ0Q+U3Su[\>%:aH)<_[>}zetJqn=޿K8|0F|cja=sT'Q;P;H9PJaYosc|&+0nIQYk1cd3U6O͙zFn5 w`KB^QmZ LSG%wJ5\&DORjmFmm Rᰟgy/oo9mq &|-.뺱]/ĘpBjZIcL?P5gR3mLJRKʭ_kKc&TX|64Rᜥ )`i\.9lnlqm[1䂼%4N7IH-D[0RJ洜!Jn%'V22/mˏy3w2ok5uKPK׆Ra݀ e<#.GU직NK^VT5dZ<\̯gO06NʰQfD:m%3dI )dN>.@f4--+(RzXYbww#FelĮ;kA:hDjyYHyҊs0"DbbB+换Z+kfIڲ bVtvf{ɷ[ȑ*C-'l jkY-e,;x[a͉[i-V Hm-R觞yPs& "s9Y"4h_кr -krIdaEcrQ(Olk"17 ΡDEՂr\mͿ࿦~8,maCqK9b+Y:CY|~:)mx4;7 {)ajq HBtSR 2_ZQ"ӭoiu]H%76% T̈ZVږ)gr)5Tb(c ) dc 6.Wn ҆Fk$hJʹYI2Tm|ƽ{)bXSPض [(kx? NW|< R+3rț4ʲ,|8v|xGN̻݁˟V7ơnO,?4"4^9R4_ux8Rja^\_cmqALd3&{{z3n?~7pZ_y~zB\@"%۶zZˏ'\y^3O_ jvM,bf^ _>~Fa^v {xR{zʒX6ϛlpgaАTW;vn^( 5r ![;- v1RוO⌥1?3*R*>A8Ɇ$+_~ YK(jV %|&FB*<\W@BQ@]/frj^ 2'4Wn00REZj @5ƾ*ب ]*.N%5kUi>)4Jhj $wj(dm ǭj wܠ&)@`B E*2XRn 1l>\8؎sD"k 1@gQ4E͐VjIh*oЉC3?QwOݎͿXxmXŔxH֚B0YS\kU#Km,QfJPلfS \EB#$QE;Ъ]E KLZgBT,iC6lt(dm0ߑEA+C n,*R`Gc9_O(!]Gdr% EPj[JtPG*n|9Ag!qm*jK@ !5)fm؅-EBDa4\JiLe[\Q"[oޮHqg+6P`n-R:j[=/3:R( UlՒ+Y+TgBmRn[rk1nlJm+"dǤEԄMSU kFm~ƊVZjA 3P6@J65T)d%øC12_# #o ~<˯wabTuZ>RQ9^^_I1$ºb e!ɂ9t/ͬR@=e ȓ$]|˕a V_䢈xUiaG|aw2Q ~h !slzvis^"f Mq'jɌ=)W%zF5B!ȕU1;y2ۉBN0VƎ-zv;~ApFc+po`w(- ) =CiBL;LL˕uRtoo3oL'㞲xJ*DQ|WB8 mGkbHt]O7)|?TקnXS3U܁x7˙eL`=Lәn? |:؍=?gmIqc7:>3y=SnIVv2ةnh_~y,?Ñ+Uu,HӅl<4 2Ses(i $g U 2Wtɬ/ahU*HÏ_"@- U6$5%[{ׅc;-i ^s]Ou-Qw~d]Ҟi"%e4(aP }\T\jn)d= He8ctCK#PjfG^_Hҏ#J̔V1sYG i1oGH~o؆ L )nI+))EՔ\ɩ%k8WSJ]!,jB%eEJ͸HQ.`ږ Zqz0K8o mYzG"RkqbYfH1'V{[M'a?2_g78rJ!nzTvƉDgf@ QPh!vC|Z8_޽t Ӊw6ޏ"еT)-4 ^.K8KW ƁIC̛HԒ|Q+ӌLH20(:)x"}T JFNAK?}Yy UFR* NPXaФk@q A bĚ >cRPMfT0 ֹ-2rhzV\%c 4h5y!)E ٩$ˈɅ+ZXR.|S$NTJ$AU.l\cLDSxpc'%'׈&*m8'[(6K5yAIb >_=aj3%g:דsd;yz^Bjc'0FrZl,ԣRDjŖ 1RA*fȘ8t#;-!5g JX-YSZsr`oѥ>ܫ6$j ń$W~)Ern{ra2#X2p-8ɟ3򆤠jcW)3Wc됽dVdl2oMqmŸXן~;m[.ޞV=tbmYkj<>!DJහ΂o72D!Y{e府BScBH؏#װSjZU$r Ȝ -aDӖW93`EB [:FI[ /V!%qښmR ʰU F"BiCadđFIΙ"X97IS(a0`VJ+ӦߵjKXK@Z:LUSmm#P|MlGV 5R8[ Eem3hEr~56BEAlY=W;hXnx|hSɄEB(pc̷ g@1cn D"E1G)IZ*E"yS|Z^vS [A)4 BilY-J4kȁPgh% ەiGt:#+6XR-znvUj@*aQB`TSZװkə!iZ_+|ԒY6j(k J+jjچSJl\T.T $mB D Ӷ6M ./Zm,RJRPR`fځR7wHZm/61*(UC.mZiT;s!*E hN*%4p<1V*\點%1\ [N4RΕ{w/?S+ ݞD/$O'R?/׳Ft7prs7tH ]vzW"wkU,0ә? F41UX˂)gi8  a[ )Kb +5ǑWjtwdgH\_y!؏# Td&TcKYg  B ,B+8%BFrjС z]$6 3jn$S黎}?))бR& -3.?~"]I1r:n66 no+Y6 Ñ3 ;a%N9 iT[DڍtX>!`5G?QX`ӾSFu4\8Nep@{B hû;ȇ?IT'/7 ߞy:~mYgFiҨɲ6NO/hOh;sYkɬ5#/+o'~}pEG(˚)r8!tu=Ӆ"{~@ÎWg0Z [%j/?oiFqOŗxl*RR*5`~]1JK:-R)5aR|ve2&:◕n*J*qY? xOqRYN6~}3+2O'ճs&Sd׷us~kraa(kIRp]פ7*Yгƚț%q?Tei$$R4ȹblKj*$6c{{1miU"+/jtfbcǧO/m^szNwi%"",Wg t[L8'k&TUwh!&z }&e*:0RI㗂8 5<`4/ad&4*Q {=cQ|3ZzX JsR$Z7 ~LN"˵(}1;3Srf^vS1h7 mɮ&H s|zTm5xqxI*6!0r ހ,9Q r?x7N 1؊J2Znb+9 BlQu=w} 1F|tkzD*^>c;kZb嶬)RY:_/۳"PJ_[ٓבzFԌSsJ[v5|ccUn8UZQsLgRMd|m| ÀqpswgF6%3gAVSnP97|9<6tKc-WJhӒ-mVkbj52h6(: @sYWʰD/Pua78{~)Y/|ۥOgAV`y*Xߍvi4SoP6U/O|=FIMB薼^ gtz&N݇G.3YyO\—WP(~8#G{,ˉw"|ۑx=?|!$2J!?O$i̲,|~i )[֔)H^^3h~lfWK ٖ9Jir)ZHNڪ4Bs3aB2n@:H"Y,>Q"/ǟ[(AfG>.QzMϲEM״@(%mZ2W*o*`%; 5L1Z$9baɑ=k $Qך!Wq`"MΕP(:Y׬)rhP2@˼F)2*k%(JjBoQ%"ڥlJ`YBSadO,4sK%)mq*nDI/Z-6eSUhӳ/I"{aAC|.%3<T3x Rg9 (Z2&:1rc5yzF#/ *J!su\C&1M3K&D!s*Zϑ_OJseŇEb5̍Ss!\/(EוEcMt; |vYhj]K$|tC>64Emb%v~O,HR EzPeA喾kہ6պ 9-uTK)LE E+ůtvBLVji|v䪚%(54}F+&k?1eqwx}ږ-dqs|z)BL*u9WJ/4"$*q:ZB@Ky>1DŽ=i(%~[ eJͬ!ٶ!@+m짻{:)B:֬>zM 3TuZ?q7:^?즉G\.9iӗw=aw|K\WB8&ͷ %%H 0ݹmږ2˺6靣7gb(\ʭ;9rWJiKQ[J&J. MxoLR Bܬۍyg 1&_5GƝ,a%ʺΤX)AioPb"4plYhۘWn PJiuB M BHBhY%Fib7Ai_V|FDPhKZI+G ٳ-FDتb+UImTрT$ %8ȹUq"ΗMBt6,T*7G=DZ CFTiGW+[D Yef4PBb36쇉\+MVwZBL]Y=J~!6PĒ5=I3X`2)LFG^wͬZOg2sۆ=>5ȵjKc3VP|KƷm@67TJ,.+[3H7j2ٞXWfRvheK)IBiT*6) RE*H1EKr*R mI} ~VJm&ŀ1Qb=C[*97TΙU5TGn/֖1_SKCmm}p.ۂ@:rm kxtSK_N__M@,(v?~qQS?˥G*?>=6t}9:FQ71DFTBma#ǏLSK^NeZJB ^;vj袾c,CG/XkpH9f.o,d5(dAM×qoӵIȤ?hYF'Kl6qlҴ%Uԭio) J%R,)(FH)ůcg)%,|Ht}ǯOV6stNWϙ?{޾@@^*S;R0_Iە$A Eǽ;ĄQ3Z;BɬaeoedP^fU;$!p@P AnfDI|h%YS#uH TyChGs|ZXS S"V[CUxʽm8apX%)l*0^I4P5]QUTEƍWdJÞ?:vxTCL=a#Af+pI&|J E c'iw`'";6AgV,%qR?j%sHB+\FX#J _3jSf(tBdP{{P*!gо'ӳ{<4hH$oLVhYQl%s/%:Tڬ&ac d "nM^j;W~{I6 b,LEV2%hՠjЂzTLEPh$!ţqIUoѴA-5c, 2x:QcC+0Liϖ.DH%b2ȪBjKZU\-Km嫐 -BriNJY52d FVȤXQHR:)JvF%Pn!lUlgI"'^=pȉy_~yA//'B3p4ޢbOg$[݇Gv7v>r^pZ&G5XBvF.Эc J+['Rl4w蜖:؇%$²ic!S6tVT2oX/r((Q@v c&b%vN$w˹.0{;~D=Ko+eFVx|.;G$)I⺎29b-Is/O IRmBTt.FxogUd-Qb,wrRVs,eg^7֠v#thkZ,UmHEW11rz;s\CG4E]8rp(`&Ĩu%1bypq0X8 PZ_a<x4IJ!w-(2THU!I #JbB܈qw|` k"a()rԖB,aw1$O(A NI$%'^snurhC %XE!vRQ[aKȀkJ:۷' Q;#-LwDBn ϘWĂRHQ9͑" Z9@[ѸrU ,v@ &gՄN7vN|F7~t܏*rܐ+ B`DJ.|ERy9w9(mHJC/ JKEWV7lɫRw_VX#lDUEg=DYǧf0{PT$T ?/9"THKs}DVQ;eoMlo[?/||󧟟Y.+\y+8aRs o},9!Wj׎ՖN9~|8b)nTTʐVpLVB939~}u畟Tۑ༜Fӗ7>2ctҎO/~ϮkɳO7I% =|f7Y;?|y^O+6;|)mPU.L"Jfa[F4N3UTB*6lqK^m[`YSf5sr=B Ukvx|_{'܆8s.NJָq'$! vG$T-) \eEY$Yz!"eMC[C_+2-RcfU{huP nD%6.높qdYj$P)A,LRL]Z$!DQIҊ )4.7T2jET6YеN Jr`0'khK +NereI4x,\ tIQųSi!SQRTd 4'iRc(pI*A b, D:RNl5iL 59T"Kh!&HN%NJJB"BP1R_)mۡ?|a[WVHPg޶RGajeeQ zxQmoAŠ@5axYتf Jz* &W1Jbmbܕ(5RA@| ZIRI獒Ԣ)#L7iRfsJmMS!lJSe&B (jZ0,"ftkmXA#CG*ri9`FWX!Ln:\늬kDو9P')$U Xj\oEI*%ҙ5hR("qd w;n?x>cÙ|u8˕I@-gwoUn3A9di=2Y#װG#]gu܁31C-JT[Cf\/Ohkؿǧ~dT {G^S"\Ho1H*9Dv~y!d[6/i@ݍDZbFԇ;t) KF(I ~!^kaqX 7MHӆVJ\_FO )-QB c^#9eLUzn Cc`|usB?X7:F־>82~^W%tt7F<`uc6A\fTDgDB #~n?/;jj/L#]D60wS8 ,!Q`xx+:y`*5AVLޱb]z w3yom㊾?k<-Ĩ)4O#f)~epa),ao+/_|òD_~x!c!yPcEh4LL}_/RO7v#6rrf;pMo/Rיn\ HڻTkC*R2r+$r)!UKuٚ _mX%Hc9>$0la嗏6PRha'kXޗK%=sf^~2S݈1Z⴬Roz;O6vU6>QU/R 9lo 1PK$ !4KNXԒk%ȷ%֠z^9_W8g9!Ȕaec *Ng7xA2MEvfPRKR0swmј%iǧ(̩2G{;w?cK` +5A3wFcZ8p%त{~^yM]|9c ac=kl-iE>wed_d AL"nÎZ*M$*I `r$`4JPU[DɁ($/O) 5q0R2f%F&[fvcg$M,aXIO[2dc\I[)YW7E2hRrfΒ$u\Sġ7SK(%te0g"nw*R;k@kٯ-M[VsB IF#eCH%1QnidcVW_O?XXe.YEVàV!ӫ]Eyn[6ΕoLÀ276Gv^ֵp*ƷB-mjS 9ҍcSb JiP}z$B% ER7.RNh0=DkڤSR*B m "UK3ox}y&v'Fe%%xrLQۇbl"̷G˼ I~s\+{ּbJr]yy}~ϿaO 5uzY\p*bh{?3t%H5|8'n سhòμ{Oh7%е?D>~t~7 g΋~F C7L;jȸ?<} "_'mYؚtWe3#51 7~s$$Igd|IZ%ǂsXCʅ5dB' s$4sttyVoTnG5\՘~˲PDQ k",FZ̊FJJ+4釉_*Ju#9Ul~JMjTqӆn^Lc\)Xvk/<VN6KIKTK;0f0)LPKUY%l늒kɔ"QtK$\y+W$c@$ y-6{ch 0]rwGD{b ,Zk! '2grBLH#d ƸYK"VL76E*YE3SH*n|8jJsԬjpCd9Ņ@cnutK9׈syk/Ӯs]V)xҶRR{#Y۶WqЪ|pH j%GuJvV V:k%j}@Z.J͕tdZ4c3f5ҍPki’VQ,% -DcJ(ٔkYCĠI>Qr ?_C[GM{XԨ)laBDNt IfBozIdh[#g4셸%Zb.EH֜C"#JHTd"nQ_+Z˲ Xx7L\•3wxi֩_+{E+޿?ѹ9l%paC J Kʁw{뙡 (ьTbH#XRp~yzL߱fm]Ȣ0gx[N4gTRH[ɀ/D @@%uГee"_^@qoz풺mYE ((je;kP`;.?bЂviΜpjr> !,e&*Zxw̬E֘[ 5@j{LR^s0"bAjGOQGQ[gi#軁=^y"8v3adO#YOg~`Uآ'ظȂS0ٖ#}7XNS.h;߿G\Rmm.Ia[-s|8_)Rf8EI{L|yq?pCCv>v]g&Hg^YoU D7ˉ+)y\HC?'B#G!͆S9u,/lW)w;Ԭ!"Rkrm\e[6{z%zc[m%,۵iƉP2{l@?-V9n#Qm<יvÎeAfIv=ݪ͆r)1zTM!a!&=L6Օtn6j#os u][(ly]ׯɈoARns[JP~vVX׵[ޫZ>[G(BFLEl|*,1E-wm8Հmm}㦢 ǂ՚u]ZRܒcYm(-&3ՖJE+j: 8_ޚHf;,bEilV6AoB "cÏ-UDİ 6zBێv’ Tth2#QyCyS-^Q(d5VMrYS[TicW:ӒR :DĚp,j)ndEv%YSfВT#Vip 3=T%_f -dbK0ږ/$"%|0ZK3܌ݚ1F ҟѲd V,)bAKi(UIl~C+K͕( IRyI)R ||*1-)auFO WWFqI7ec'2hJL]+FkȜqHТʊd_Ξ&#fhR%BNvuA궨2˭WZ )7? ڀB@N+6ua{ 2N@=MBe,V3TFt{n1,=$3D{A%V6.jۀ4ʚZ+*毉/ڳJBܞ Ҥ߳+\Qr @{kH(%r-`PCRc"datG b7t%\Ơ%>zB'mw$ Dk zfF\ӊzO~c ,dR_R8\7-ѷy;2ctJr^O|?Oϟ+Oo}#+3hd{~q@DoQVCG ՟//? JTv^tE'n\7\7 3q;|Og+(NB,U"/oL@7 $^Jb a$1Ҫ9mRr;ʺP(tEĹƴUmQh$3ׅ*Yힼx_VFcُ=}75C7p#\ ŃQEхSו]7Vye\xl4=C=ӰGGy:qlc?`&n+1t֢mIgYF~6LJ1dRkXPJjPOۖޠnj}߷i5QQJd?{J).]!&)5sfKy2{a\7+Y8lO)6MFRQZ1=f|+r3鑲s^s* Q G96?3o'p9凟|@ՊÞ{z[icpQF#g,TsGȆ)pZq?#n:@q#36ڬ`Yh2.#aL2#kA p$@d'5$z-qYaZ$9W,tL]O5R-F3A.#fJsfm)KE57d4팫@֔IUQ!hZp f0JYR#tapM)@e}` 9D~>]Y3L]6 jqwwtJ7)IUx=b9Kp=xĚgtK@-0[Q!倓 B`>b=czRѲY3ZЦmodvmxr ]\%b-d#YR"umeC(-z1 Ƒ}7U#)qkѯ T [jê-5IYVS ȷa yiVpա]*9;nlB js}Ig-}ז~kcL3Jle\xz}~=Ԃ_6J\ZgR]>j3?<6[m?'R3؏w go sz +9 Ku ~7?ze$Fec5D{Hwl)p:&YNݻTQS9.要~?tHiq4w\Gݻ#;AzWJenu8!rR !p T@J51d0TÚ6PUZ1v쎦w 1EP,4Rd-V%-nqvTH˱P)QRnK,ٶx.d~yXIj*D,F(~}?:D G-0DƯUsz'}b!2L<iv)?ȹtD@Iq1He9Hі .+CI53(iӖZ5IHTJ$Q٨ HTxd XN=`H%!d&T em*ѦhD6m ֆUUKl/ߐCLZ+o8535Xױnb? Pa[k־g]gNbzG͉yFXK*e W9F,BUtA ŶSw&S‡-Is^6R-(t+J4ة"!5CJ7XnG 0uc"-J )$銦ٍKq,DU'}at|?~VUP% ^֖N1)R=9^33; "Kph<Y$a^@$YIIL7(W-e2i[PZR}^軎,VJLcOv/#˶YI] uyD? H)駁uYPok-ueˁ4.J?R;\k8JF[FS>b؞_U3|w_mڶv w P\vnq޸س͍3I낕6w]VIdi@xL?|G-0oo3!':rF+4|=n/!ȌgY"HMRulJ6VV2IJJ. "k? ; į~wuX{R"Ie2&^^<'ѐta?L'K^B"3]g8}>4qӀ*NEL,wG}%GLBȂ HRH\w`Þg+Cדg3BVqvfY<)m:| $iH0q]Tz#k7VR7 y{}iֻQR6~uF( DF 0=p#ddd@6.ot@ӕy{y߳We|%~x2_Z]t#~z1TR|y~KR& JZrn?up6.E&КIZA;AkJIHTm.1q-QoR IJ,ZXfrtgUhanl"u{P㵄˼PiCT:nmh,󌖊T<vR ox>mRުG(͚o71}س^u7Xsf=늬Q`8#c]wO0<2ZV5m\CF+v,Ppz(U%2ãx鄤ɺs ]5$ė/g=mA- [|^IM D ǜkIam\H&s요ȋ$%0Zo Dȕ,MpPVKd:ɵpEj,qdKsG(Z!DCK3D9Q1"u&ϟmֻ>3Zkwsǔ]I%b#H4PNIXBAhIAa &F=ݮf6o30^]u:kww<&</U&2X戒SjZ[!IiaP%-{ Q(zU(U#DGɟUsf L&J,(3ŜgFƑ4/ȜyHa:7VpDI>WēnD#T(-B5q-Ŝv?V&W7Z}?geO,֢5J:ƀDye),PWBPJfvna]1BHI16{JA$!xU5ckmkr]~NqPn`׮3 dAù$xaebM#J9]@e]!$1ت) F(C*[cNiyvUp0't3FJ\m2!fhe +5,tbi|D 2SPُ74 1T*TGs7|?l[FgYWPn-@oTPH4G?!1ZR僧OFW;3u㗯x9/>x+ W-!W$JĜ]c 5o[?q>rjͫoxۣD-۝'>=sxϞ {я yY Ad7)3=>D%=ݱLBf_.\"~8A bN̥V\㊨5U Y)3ӑ:㤡ZM(Tf-} ҤV^lB8T=O]Q",BɌFq<74aU6=XBc%&?M5~m諀,*l3JN(ksS(11B"T H- .TXT )YB@HA8% Id|]F`8)0eQFeuAKwd MAeÒ#')I!@Ոpʉ+saD ;QZ!ԊbULjm#tJcd59h+NZaSeœZ3gPz$5d-HM;֭R0K1tq/%[vBK2)#* 6WhyBjBl2R2tƹ R7+b-`LRJ ږ"j-))1!JaL~&%j0R!e/5--AAJF| H+RGP s!Dj(!xݵ5h5tdTvZHd1~B)9qEЫPEO'+JȚ)US_&m"fi T֖':!s$ ERYZKBIM 2\>#V\ DX.Kd9pȁyZp /Mt],Y~q8=7mXJ#'Gq!yH@tȑtwwaf|_;_yinn3r'n>xxn0ϟ_;~= gE;:!יj ]o #v[r-iE?NCt1y'htUKDHG*i.DъϥRv 2o7pGvw ?-(5ؒx<]mPK"N3vt!+oE`=3l&un -3gi24nw 3aHM͑^wtPbfqodmKB zUBqֱOH0!+YnG"bU4|_Sv-U @BSŞ'^],Cq+R4>ռ΄c.ɋ_4%͒TJۇ] na:YdVyUWgo\ Èy\ດ.\~".m9: +}_kQRϊ BJ,&JJȋbBw[eY3)-FրTYj}LR15{`eUkK0CǦsәaU$_=w9Èn-TA+03Fk!ɛwl:F׾X1wm("` IPm8T"%s %-dg <B$U|(,9KR`3:L-M7vcoR¨Yha@w!3#Aц!%f)hɻJᄤrAEHRhCZIZ3GOn17SU朸nxU̠ [Ra09s déY 4X+,BkhIa-N(KBKsZd V/TňZV۳d[DC_(z3XZFRtayHgP,KcB #˲`?pIs&qv(a9DиzRڬt<Ϣxغ4yվvA|U̼~@E Q5vs\9?50T2Ƨs#ts在&~u)ȗZHhEx j[sA/J)KY[P$)7<*f/ե/g[kC6SMK[s-'5;H)))Tc/4z_0-lZ 5GvD0T |5(R-}5zQ%^樑LjFH*e^8?w;~M'QC˂Q)vޞϔt)V{* :7;Nj+ 15~:tcG!O&ttv -RTMO?Imҗnѩޒg]*FUя=~ʴS?t!_yB(աi!X19 u14e59"K^clvZhjV%=M(#[1lRNfb!4B0Dt"3O_ +7t2ݶ*O)TPhQơB+J5BdbePr{K&(AD8)gr(q"DT<#KEV)A2FՌ tH-BQC gX(oL-zp'v1p ݈|o(Np ;F:Wd oKRVy::˼.N) b t^uZy; b*8O)QD)`3Sy|n6=vwt;;g,)v#TÈ(!r@IsS1<<Y^JkQe{^}UoQ ]ðBЏOF_ eiC& J} oO;_6{(#-|1,}\H#1̕Un0WQNL-MPU:͜rDiBwa)u!Rޯձ~Nw*ĸ6WLzZK!5a{f*ǩU _8'jtK$p%i%onw[N#=q iuÉvlPJ#;j)kJZEmَ=tsM]YwBI^<{B7YҔJC|֔J6>LX\FMbT; G%%a{oVKU\﹇JI@%q:>PJeDjzt"i:PI4Y}gkj\fqQj\~|Q)$=֦@*q@q>Sd%1+Zr@hɳLmۇS׀GpF\!WOR-?_aZ?؍[ʼr 1 Haَ;\ױ4"^"xw38#(q[(Ug1t׳uaEyዤ8CWCDʕդ ^YpW7 4E)c"U9K PB1"a*u ]V(2M Ӡu RY8116]hx˺K6+rIKV}URekUAjҀЏl \pDbDHMvl=H538fC,[PR,['@HjVq)TKFdZ'RAx% 3Ff `  Oǁx:᧙n<,/w8nTiMRXׄϰڱHSaͅXx T%X;׆V`y"KLe%WO?jĿ~WY0n"??ݢHa]',mlp BPBKDt hӚ+ ,>f %x2 Ȝ =X1")rEV:H-M&FYRXy" d%/ {ݳ!WZc_.LIkCP :QRB_RX)5LDLO%6!qF0T J1(Ow"Mp*I$fΙ%"8T(6˼PBk--Fɶ&՗ĖTzȂ5=%5_ ytYӸ e.Δ2k9F( $+0V(b/A/6B]T+4UVVr./fh# %R6XaQF7zXvF2gG5CYѹRS $II hPReGhC! %ʥ}]IBjϾ%':eRMZk`s3. g!{B\W9r&Ό7Oy=byg#R,r% É'p)l#f>~gH1YKJu@ppOg59uJ).\mM93=/ +Vv)kM ;f]=Fkj|L}NRKiS&L͙uF>*'$;3} /gtΒKFME0 hJ6Ah$cg_a/c3vlJK6K5g)K:bn)4 d%m +DH L nqbabl6[>}BL}y!b@-5%)!D^=]g0* >s38 kH)ͼ.NSzJ`ŀr|lϗ %̳a w'V,SBm:HS g1g^L;@`vDRjbuI,Rw=r&NiMJ(mslimPP Vj*%$_0)?moUӂFl/+SgDPQa6|z&cG2-+hִFH#6-M}t1#TG{|,2(rdӊ2,schI- HÛ\v9- SX׳y2 uEIE 1U b@dK%i~WB|ޚ ˊV)RD+5"@X '9&ƾg|2!ZBPw}~DQ)Rht)6CSK".i+5l7\e/T5ՌrfSsέJI׸~@(*S5ޡjʿ_/<ώq {'B@N䜈S+|y?O|`,wwoXebB KLٓeF~jxF*æF3VwYխ둝8qu}EA73_a쟲Os'<FOKa0*7ϟ~)oNGլ*E*leZ\ӧ/H]siy"Vcg wOu/y{Lkd~alvzϴxN)tɜ+ ~` 6R(֔\z2ee\33e 1gIPГ5eLUVmq'J{RٲdI bEӠ^lDoOƞ+a7tu%ʜ2%jݮ0ڞDt,WݖV "YtmP"D M,F+=}~ؠḀnɣE; oRqN9F(ɷk7H 1R+$3:dFTIEcF+KA,9rUѪ` g0ćJщ2'd#+,;gBѣud}MLJRh%^ 5 ֱo.%8 8t)\B̴W,5F ,\< -;h#^ kdrX%lD*XȥRUKJMkٸ,$4v( )Jn6[h%9SR@Ɋvc,Z;q-ESH4(X+&ָʺ(-ZK!j|/cܭӆ޺b.R@NgC QϒKtz28ӷK JԈ$tDP9syLC8m8a t=WϞamӮ{H 8jEu!>Pj5ёd=0V+Ɲʢ(,x=&(e)1 &Ð+P`XEtJSh.U5YH|>3mFVr7=La8NJd ѯǙD@ !>P}̜ڔ7컞/ܰN3C (Gո1:v7֕zxbDCywLm"S&L;vG b@vG:qEjZRSJ.-+5xHc1aƯ+kjZ,x)ic4VMuX1J1v=%Jmw]6* v\Y3cxCnϡv"Q:dz';tFktffqKS+|L fQъ,׸*˲"q=/b2_޵E"C_%ZCz:RcQ.ZbXȈby,2.F \ =97fV!F4ZYl.>G,A"tIM2 =CFcdWל ,/ ;h<w@(E. \K&V,WZҨ zU~hNEB LXVz琢;} J-^ \p?s_`xp!Τyϑ/39kEĠpSdi9DON bIN]AbRK(yab W^|FbL[_xvW&LOPH쵢e;=5RhҤL9#Aеᮕ)gD 12k@ cRڠt(EΔZ0]G$%YJi R8LGJ 5G@iK_ CL}&8TXfJHtΰnR!x:j"e"~^,ri*jAdvjE*Bϝ*w癓6\cF1$I@́#7.bSѺ6m0)d$g|7\8#}CtϞuse}x{)vOlj1\hi2UR$5s*%4+abYZ軮&ДT - LrccȗBI PBPR" RB*kz2BK4|( Cx Qv)7yᓧGXՅZ"q`o g|U|xGRَDW޾||*{{g77B4:D%$",HC)d (gV))IETJDz~ͼ+w)r.3B";V3 9x\XHRrc7,&x*Tf~/̹@OdMDI쓥saUJnwZVZ*YJfX Et5c XՒ" YW!1oϾ%a_;6hJN J&3Ǒuƭy4THm!>úfJ"ɥcܦ̿J1ݸi_.\(R)5"(H6jwThiCNVȩIZs(۾#D+Ƅ‡J]@e9\,U AL hER]ă0FP zK} iI>1 {0YtDaHJ IAT[K "w?.x(mcdZ~/g1J`sΞ+R=$ucIjIE*!B̵YH 4pFb xbX_d k+_{`n%o=sL)QΞ9أSlpc7Uvp+l{N=Aga`3Lw'ae9,\"dt=Ֆtj-˛pI~7%Պw180i5CzGg{X3~G,pdS*56My-d("_x8cA @W-\n3R*C%~"`S[N>[װNqt|3>|NgFnctta;rhӆ |-VjvO_߳&I- A:>~5oMg݆7adnPp*gf>'԰'UEI"R!m0{JGU%&'jX(qF̉Nea،HkK5̥cV0O r CH~EVŲ͢Ҋ~~Y\ٍ[RIBp&V}Wѹ`aM+a-6 V/@ސ3skoR*ZJk`J6M-Sa Ֆ煚2zOJ4@s@j/|ۿ鱘(%8 TK_czT7/4km{t%R䒩5tgk([ׯE*l _p0cS\pQzu%SM'ذ{{b} 1RJc)FV6 jL,ˊ:lSOͅ<1phEv,ݞ=\S_5Ь%q:o5Dq4:s+kL%%Xښn !fG2UJ߈5VbUȢ2-IXހ(EQU3%圚RN@'}}cEZ?~ǿҨuWUri+cMٯĚ %ؚBLqe%6Pٯ֙ti}˷FT-aYb"Dk r Jbn*\N qen0ÊBr[<)1̺͆1s[3'562-9,Prz۾*S 3BIe=9,t' ya;2O~ޜNtTφ$})2v>`՝R L'jT3wti s\,k RCѳ+V_gTk<ۻ3K~<W/?t 1֐_ Z]jGg%O]a,lwkX0pZ8pw:wΑ 1xLp}88^bmP3[-qBr:##9yBuzef7c.4wPi "iYD *0SYc$֊۸7-$4Lߞ?':˕#fеpJBҖk$[׎8Ov`^Oh-SًZ ):ck w/~|eĹC`QI(lEsUhc92)F+,uox]* le'RZ[BN.VfY|ЕF R}'@JhnRyjï?^_{-yȧ<{tYU n;RPN)L M3MSS =rc5H Qv~`q 5e1(rjvbt(BhD-|dK9~:әJv-B! X][B-i$KleeS R=^hQ k!(ckvk m(#=˲`ІsD" HYg%;)9D RZ(3TL *K\b)͊ HkΔ =p<%x?w%Bi6WYJ\%vp,|41&jBZ WC/*[U̡sa:ekϷ<^|_Z94ܮ{=:z#Rr*tՕz(|@YN@Z|hɊ9ȁ_򭟝=0mk&IQ9EjL9T%I16nAAL,M_e㢺Zx&>6iښ(!)6Rhm>PjC]R6E*oar Z^hj6oYOSj,ky]PR$Bq\ =o{eegZTB!py?r-QolD̷5j](I[Eo:a!pݞ=^4G^k/y{x~3 E뙯?{BXe%aN"2W->yœg' z Ӻ"4{Z+Ͽ*7[jZӛk|[$%3a17CKZtny Rn5 [w;}?SțwZ*butRK647Oߴ:RJT_sXM.MY˯ݟ{]9bB$Bjt< =wv{gU"ʹ6 Q-hp%wO e(m/rNE({Er'o?c3"*8#TW+C`7Ґh'݆^n- hN )"Ua-s"-EhQf*!jhcM 6E/* F\M8H" MVDaI+s\QTBDT70 @1HNFZQJd%BxHi I+BCcR@R1WQiQbXYIe&#c`z b*VHU2gI J%HU#_/~?!EASHPsKL%Oh )hϴ.\ #VՖ(AKdw=G/͏v Zӹ%f M# ;i EPj[Vi5ɭ*# R| ?QFRdZyfM )Bk S1FqoI96r͓a(??'\?PfO^Τ1֡Tp\=4=URє=@'u[NL"GmC|?lz66 d @䌸W/ uSrXi0ڴLJ;:PD__X5ǯ%ZWR|_T" h&D̼xrP+ca3`=n ,G<=%gloJC()M@ipmv[ M;,'-i(Eo803}%;o?/{֟Y«7^D;Dbb@13~bӊzXtPQ>>;voZ8wdUDhk3/5ļbCe<)_D8֜GN~-@B2ZK- 8N>cd[km19Տǟ Npb?8Ès<{q:J $B(bO cZJ&mY!*Ԅύ!5h V3riZ[0RaỿG#H5l3-m\3Rlu RTu6_j(l?q}0gRn,X# eQ#NK0MŴ(#]925Dl!3RjKZxs Sq}sarW L.#2WT]NJϵ?s?嬔sb9{\R6H 3]qNE)u!wd)QBmPYqH RϾwF-)tdMm=v 5X'۵̞tY-H[ nF`{cӡ!-+ ~+4"Fh>{.)`T A_*N:nM%#$騲1jbSJcuKNZWh;"fJ!K3S܆*ӅQX£QseZW$U]Uɔ8,P?~ fRr*CuȬ)p=RYÍJbgڀHЂT*BTRZ@*P ?3\3 ڲ&)&3- 0)P Fs *+>xQrl҄tʶPZ@RDS![nB¹"K$/_޿hMYEKYHe(Bl)H6Y+ժ\J,µlNZR{"qyp˜1ELLh͖R^f)*L!1tͦ%ѯLъ?7PZz25V )3vJbXxw{x !S0G֘04~z{RȔ 6[TD!_l_yW<in$b=Gn0tFp4<OtΧ@=YJgnGX癇;2l‡__}oxtG'~;Qx)g;.\{jXDFkA#Ub]'fd3KH3:3P"iߟQ d tyw x{JQcd >bH ҕJ+V*D!Y3_|rDt'=g3G-Ya^_Ĭysӟ޼y lvnj"u!p@ojtU :/`-*KrlvR!p_Q~KL@(*5źO[鈓aTvp;y9*XX>VO\Tc3GOֶZQJtrScOIp%,>Ֆx?S@LZ|kV$A" 1Bגd4S:C:7ye9)g? 7tȮ5ɾij_p&JE:NO>SJikt j@<.HL>L ur:1t.,Ӊ^\^ʶi^)F* H Z<3M~wN܈V5j$37cfg;r~W7|݁=ݧx" TX ~gqBH4%6V~9`"x{7; sy|$nZ!ITN"-1s<#f`=^)DՉÉJlt}DG؂B:(\%hܫeYZ BQRKԓbeYW׵黶-4M֤Rb M>o:É5(n *o_B+rظsR3B9o=FAH3ZwX cZMYYj䌖4jm9䔨**'f0-e],-a9ƦjɁRs1x31n}T:iYU@ foeUu][^%lח wVSnR^2yH.{C)f#M=1U?$ZQ)#;0RѻZ<mƥQ %Gad P f`ZfBN,!V n`>=)L:c9~\q%VZAUIƍ*Kg$G.!2`" r@*_6KFu1S":rTyq3 bZIt> 1[>%NQteTN*p*[#Z(5džTLx5$-ZT4[Tt5>VP"U<ٌܔRcE勝d#KF[0I 6[Kl]?͸ae!gI[XC(/;dLvO͑S nxR+qAK#5-D!bDjAY2Q5`膁+)#FtP2ǘrjMtSԊBxb͏6ÿʵz뫿&/Ch ijK[CkTUƢD;Cf;5C` kKnfV)'nԂa zjI)P':uylEiȩKR"edx9%EK~ՅZ6vX!u/PJBT2jiLe kHKl].]-:֋ +VJ$ % bX#ue]?l-K\m R@(ǔZU !53JjQY{xs;nW#Ϟp:x8Lu uk@.<vte,;vbI}w۱gYz;5loxX"BJno;9O^XBNy%$Uj^/б,˙w|1fGjߞcԆE]GI?>oRʦf6Ŏ+/óL%jX|7ÀWFBC(ER.{[/*xSh y!7!ERGd lC)H:.|Fꕭ3yBEafX׉ PXDԢP#BU 9,˔^/5gcÇ:UG[M:3i0;RvIlFΞxj7KǕtw&-+*:!5bPcس3qZI|?3U*G^ƐqR+C;;B(l?۞?D>ْ{/\/F'>SVbɥÉLO +l_3=B ĖY q ++OoP (A$OJ+Y)ƱKwۋPKEΕꚪ vA*)VE- jb +BJnɥ bL`59W>}F+!q{{O׏pۦj2/v8ca]O%Xh r#Kl l#I,:G)ܞ!iw#o,$ޡ\c,PH#yb<0 :S̘}NoQ ~[D%G/Z/M5ca3 !a FC)_ryO5n~W@g 4zm -v n'}[ }ͦZ>k4Jk4VNLDv]&BY26 +?GD"D(FVE͢.Ҡ4%Vٹ]fl 5Z#D ݴ֨\0YW( GkεK~9DEM j[jp<߳MVvLpN st˒RAh}ϩU3BRpEzƎi[PBXJBڗ-mKc pF\OW jAv wRiXF1!M;Z-VJKBs;T_:WBɭYw9wHA*¥BȱՈs&u!Sgڒ_आҖXܸ[?Z x;DBT_5D[ sPK%6`99k(6huq`O hUJ|LĘPbs#>vpjx @J(xD*W*7V_@ /sB*x9\--<~h⩪p-7]j\ s=!Wrh,9nLͦw;X#۹8߆J'\#tLǧentDu[n@HǧGrl/ /*}7Çd@T!9SfYRp:adzIy|-+CڼF!D*MP^u M 5! 1p\r;/-N"H\o %ztL6VִkJ,(&K"` E.XA#1J3VkfPF!FV͜2K FJ}"0)n60R aJlUXG M!LXӷ_ͻQmjVn"qV '{nևe'JR؞UiRXg:RI90*J6)YG(PVk8dd;J +]55m\&% Ͷ"4K8)QRŀS31ZHԢvl[U4aMM+Km@+ɖ#TnS$Y)!1ZZH)ŒFQYHB gTlYa|_>}&NHa [3flRiw )F(x:vR*IT<_X8]ߨ)c,Wbx%}0ȇ6z%&}z؞ BCP$Ix.{m+EVTtB1刨btKfk* ВjQK&H%A{1 VJLMߞ2Jj6A~() F¶AMK[lXCw||h*pF*w\nV*2ܟN 9@H3x)ݭ$͆vD,9g<çhS{J%@ ~_EZamA#W)=-!h>sR $v`հ%%\;\?RuKJs 90UjEo=g-%VI~_ "'B!R;fŤXڟcP'#Q3)[oN3\~uZ# NRN0LG"y}ymYP3RK^y%1N+XgױĉZ|tJ|x)xyxV5O?_|B+MSy%&Kbr)NhgN6g%>F:ŗɳyp @d=^Y2ry>uԜ퐹mEXݹvLA KȵS 6XYj\71~Q+9"2".D\B:J8eO#W^YJ&--pck1A[\[v4lƬsIY3QÐ*%P1[FmɹPlF3-[NZflϼyYS3w1bj;K 6|jvG'>$qps=%aV-='Jk4VL:Va")ڙ9l fC(96]0J3*y7bN8gbJ R+JncLe>هɴRkE6B ` m L1 :UR!J!*![Tb<KjRB҄Y>vW˲Zz|@0r'T? 3#+YHZ >dTM^/(3 E.?;Ђ7ye>Ps%3-GS??+ <Уhܳiae#K0n+cϏO~ mF.Ӎq {v\ hb8K@di"4Ji 9qS+"=1_(9rb=^ۅ'54Ygr.Ko"\XUJ ڡR :X 2f`H'Imš"2#0 JId<=!k9yq󊐖at/3жUdK*QhZ7(HMM R#k։Ψ$$"v;RjM]cPWp'ďHԚ*yQ*HER/ExІw=JHPdb].$IщjڒTN)^4e&EYR?F BP^ж:$BkAԦ6B#dAcMPȲ_hC,$#,)`3 d1LQ A%U+VٓFVDȶ-*rqJ"@k:#kݞҬ %QhAE%Q-͈IS2(*1nm'%zZ鏃oI_m$ X*[~ y:~(ձuEjzR8gYSEg^@$J͒;QlE!OoED^<(MgrN6)+#rޙV DȈRcmT+Lf#+s痥 U+V[l?r]nъiNW#0eNS֜Ɲ;N(0,+Owm[Ho<xmm]BaZ HփeÏ\.2fg9\4=׿-B\A)8yxO*P/9hq~BBh2rt/ E*NN\/7~?ϤIV K@ge %U.3g|tsbRƾg#i.WDJ㬥tG˺R m{i y,E^t58HJ?

$(-Pg_Q֒LqyE-g HBC itj$wYR|`\`[6oCm[0Bq=1E6Н%K]Ofk@lt-#bjURF ~E(MƧD)?R[{^DVR_QF )Dlsy{tOf."EJ?T̷&|dH1,+Q-Җ%r,#hLi0/e0fi<wnqXR1rj%m w}:Sh ]O˼F"tqȧODa[ Dt/2ľc%lBWH-Jb$,jB@9W$~@ L[dQ +j6/g3:h1hthnڰl+E di5ɡfhEα]Jm-vDèòu6".=QPi,)47HAV{w$~ րs]F)+ /blo?V&pU >V۶VӦ!!j!SR[u]PRzUJRbmK=R/.9g] ~KZC>nxJBI?@- P( r8y}},Ji,, 3*rH%pT(Ko51myP+(q I8hmK U#@ P~:H&yRזmb@9z&YIۍZ"XPhG;r [l D3Qn_ҟ?wnݷ?$ݷAϷ\բ-s v HUl3ʶjF=Vd,&hm>3%mD7mmC|:* ~ZԾ\\H%) F JKKdi YJ![BFHo{U5Ӳl;\v"4m]4q5'N#x:pq]u=x}{%'Bu<Ψ<%!@ >zyv- B(xT8x\lIяNϼ1M|!nH2\yz8]zx|:0煪!p~|~ݏ+o7N=,wmf˚H ESd2ˉuD/jO?Jak ܔR V)2tzP ({e{CUqmP#eZI%eRish*¶;6`ͯZp +a<IRWBly)Gj Pq}Q6A xBɌ_W~tα^.54jd6ۍzx팣}VtTBQͶn!R$OJ]UuRFaVK߆X2JQtCT;>xʻPYQ qԐ5n" $(BVS;;L1eje~R Z5˟֤dT1AB$h(_2p]v{R*$Dug^1XY^)R̼/9e,҈;{(k0ZJ~o~’%t+Ud [kL׍(QqV50{BFTɽa׼q>v8 kԚ]Zip4u-I B(QZ F#򆩕!U{)Z2E}R#G02-1SƗR%Dt!$B+鸅{B.KR)"3 A.2>SEBxC̾ZF0(Pd܎)rpp:ez-$ ,WeΰN%*Dzrm_ZJX؁5A'0KU\7{2Rɚ+Q44H|+02ȊSEI2͂u߇S~[CJp_E_W߾ _%ZH AL"[N\Î.Rd+ J(z襦Qs+ ` K{HQZ`Bi6~jŖj(g5>n% 1"crGԖM%!2t9DyAw5l) wJb*NgqlϸkT8}8l+,;R heH1_,-{F1LRJ^TAJs[%(q'E6&t$)lb;0Tbͤ9W9 J .,hL(3cRNK-mD!xTfͬU%@5䪐BrȜf:+0)$ODW+6y<7 $Z5a)J5 d1F#gm^+ 8sf)c P[Z.V UКPVAFS x(tRj9gYR2.76U|zN *) @w*Oj 5xf'9W3 1ǖn 2mZrQrvPbb0Y!}hk И\~Cus:vGM5‡@*"4U ;!E4|юtƴSR 1z +ĺT_6bW ǚ*ZIbTqpF`@ a%ַw]oJN)&? e Qhl эjU7媐T sN,U)QF**/)6yC3niNֲr./7']HuaoC-;F+f OXk(},-BBH /_/-L8R xxG R=ޡu]GwPeYnʼpy{(3>c!|#>!Rd&+_yLF}H\ HeP5VO$PeDՅ_OU2oۄUZ Ju!V2-+BqïFac+aD ;ۊ. *l󂈉W\g@ox||`&1r 4r<(?1H=@EBo- c4߸5GU'NGtgIV"GC㏏%N7ߟѾ_&Dlf'))ϔ"Y}LW^|_3B-zf\j -q[Y,͡zBΠk,TF̣O͂E(R83cnH q؟퉥Nzak!8e$>˗(6߸#_9 놿ݸ?7>~:RnliZi1c\p 5 Z'$t J"r†?tKc,NVQ5z|ب1ĄI@D "gb)veisf4Rm: X xL.劔ۖĶئ7yzGsiEYu^0{vCk{?fcM{}̺ k-߫%RƮH{mp^&9~RURUv Q H)8Nܦ"!ƖBvb x$C)0JQRowsbءĽk J31{V 9;Vu @X!v^ˬR/o<^jBRk|m\eZJjV I$ަ7:xc7V.)$lp c$գ`4D^W5D2{R|*" w$SH.jITr>8N K/- LY 4!yz ^-Ky2=QJ+:n(UTz"QD$RXK=l j ơJE u@_r;4$$'d-"3V?ZIC"Zb߉)PKa];׈ր0Ur󞡷iL9Ru-(!dT zLxB|\P3"OtNҝڠ$tX9bB2Ț*%V5EF٢o#sS V>Tk |}'Bq2XSmwV ~⏺`Lo?uWڴ¿}1%cUp/Kٞ}7Y*5%háNJ,WÒ|nVIRl@)I$LuEkÐcڐAWJsge_WJ9Ʈ~QߠRaK-~@ o$8r. `u /<_n$!^, Bx`/ f䯟z8`D<_'?8w^!rZu+zcK*:v%W_ ,_//أ⯟C7'~y6&vyYax:ҍ=V_eoTX} m %?;ւhy}}|Ml'F&moTQ:bqc\S猏 j5mZHR-cjQ!DZE[΄ו<rDpa%e"vnpy6|F?yԚ{VrP:Lp8cAK|ԄnR v`Fyq0Ɲ=k<%DJ*IOFۑB!U fT+c7߯ i3CTC. !@;)3Uw"iш*)#D%ք9DZU (E :2: %3Q8|eP-2=YbLkL11i<'8~!,3xz6 q,6/ܹfBx*+/qMr1GX{^_^?EP ;;hۯuPR0xd't׷gƱ'RB5H)ظ{,ۥdI@nGFRCJڶJ[J6Q"Պub<Xr23t=e%Ky{{cuE*M?Ùuxxze ;ŠsX# {02L/A0JqEvl[|CHtA5lg{EJcloN(i[gK-q8!ɧ1pZE8X:R4 yOFaPՠDf?ޟyf 7J.s"D*PX8J$KJJq5N댒lVsx<1MA|8BE`j0؎%FtZI"ceZ)#zQV+VZVOR`$D5 (Ar-Ii rr5Lڎ.v9 dTIRrj}H"dmr$nmkC(!P4Di2g [SwUR l()a^h;n}&" 29> Jʼ̔?j9 ˼/BjR)-s2yŷh@ w1o5L)ZK+ntP%8Eɉ˺^۳0gGh͖OwGK'H%P5۶meU///d9>X CAf\87zS֕ 6TXCv{OOO|~ o}hvBNj8qz]P"Jt~BrqFz!/#=Y4OOwoJgi)Dڑ+lgsg4d F--fG!ʑ~DkKm`G_(q{!vPt8{'cs}c爩YxRZY CB.X١Xjuq4bhVL'$>NrA#BjI4izoJۅpbDcZܙ|YGr2=}I-gBQ%iC8TpwF[%G!`[7Rx^fm"ħDNN7 6cӁKÒTQYk@TM ׀+XR 5({bbP9mL5c@V() S76s, oJ8'i܍D!k3DdVt**k?Jh5'( )%,dYREV0Zr*$1ed6,5Z:icH66nf#1݌MgF.9CtBS)}!)\ Ӽ`C@Lo_tI-0GP+Kw8r^݀ H^=:cۖx 3*DJn{! % I&2ڗJDq̄h s2bip+zaks/<@OӉo/(1ÁWpRc'x]a|8u[1"V F2cWֵ4r T Zԩgy~IJG猩kK)9vھ@ m#2uƚUƲ,+J5cwԔY>}ǟJPD% (E#F̙?3ܶD i{R/}!9 Y@Y w7UE+JzyG =)I\Sr!DqXwPVW·3hP4SBGJ.5r8F\3 qAKP$T(dQw#8 }@W-ۥAӗm{wG=h׷gtx뱽}%oWo'mX~)◀/ x"oui^5*W]qz#&r]K{:@*j,ׅ b;/.%3v'!` \7}b'׵Dp8Qjx|gȩ;x ZVau\sPXmKF|#bd_W˶2:+z<uBَG%h7dT*i}B2O71Ӎ\26nPF!V[rG=B/%&((U9vabS8)r旟>嶱 d%}{nJuAS`luC" &L\[uu鬡L(WsiK2ͷvIQ1xlKBRlK}X\}ؓsoP)V*)]NP%/m+!'F->|k"U)ļ.$ [4??޷ZbxzeYfxv2_<:חߙ錖_97:@Hm:%B"f|80p>x7ǘH-E#'(gB|벲ۂdLN>xvßڢ I43()dm L -*@?Z^>LuR T ۏT-X(_/ݝXF \ϼ- FH$ɕ^U/o?>w4qmbCi՘QBrG $CgdR3GRA$.1":˓ոIe@:nShD3P@UsLDgGM0<{Op‡cYǁC|0G): Y3Sǁ0k&&tꌒqw~=r~8p-ZBqn"ز$8!ec7(+I>(A êGt<٦M:8`6yZ0,]j@:KZIҨ*fB\Amå2$!Y̵c"S3m"3NwD Jrݸ S62Vu%3| mT 4t%xBRwc--'čӁ>e\Δi~fP u4>]<:~GB ٠C!aN*4#뼑#p°ǎ;ѝHQfF~Eg3s@=(/+i ddg3ͺ$_96-,_ӕ׍>Z:!bs=ku]J!q맗V?| @qTO'idybfOlÀ;P$TCmK2#?>O*8#X"ΌVږwCG=w(-VH@̅* Y3HWR,gbl|ORǎ5m^K ֖bB3T k,LN! EH0\'Qr^'>9>>Q 9NEB.zYtOo5F:tGش΍tLo\(TpF7>ԊNRF֠<#]N*YABt빅u|%捄 )\Qa8`lGe`HR?PFjӪܹI5Qt6@Њ ,#º+ ?o Uge0'УB9C?^/;pw,[ݖw 18z~!g::ۡB 'xضm_zු6%C-Nwcpf~I~E)I.XJ!6j5? UW OX0cc٨ƆZ:qxfvΡn=5L=B?fPKnٷK-9Úhd{V 1xՍed;lQ[~۶ۍzn\{VV(eR7D9|? ;;)4uZ eD9+v/w\捸f' F;lN($5OiA)_Q==C$s|pp c4K*nd*$N*TQO=Og #8XΪrM4v4 **H24~]XZ_V5;' gSw#[E&}TAΙŖ#ճr{ވ½< b!vh*ZZiz1'b%RZCU\ƎHmHBL*gqQZ)$)XKxf:ϣJw=ϗuZ9YY 'tlKP$PdQJ08kf-lB,ՈEJXw)5 "R1X-j의roV6i9f&Dj?*T;}R{t@\ ;J)PR$j 9p3˷_ e7sK%eec[ Rg;GOkR;5[ VJ~7ol+ZGEP<:·c֘,34WHTb**x8jmQjA ̢]ntDe˧9#0D~HLf6_x=񎯷gH?J-;6Ϥu+Zn[yY^oKBʕ-EBLO9yƻOgcp:\ߵqę+q,7D^O|0ᱧ ŴynBBZK%}qVgbYt!aQúϞTpm =PrŚ͇*vRZK{Veg3BE UAI6ZIo 2makk>b8 IdO\AtM)PYsVINJ=(Ŝf҅JW%gWhSy@協f-r4U&Ng0JVvDۜHh2uA  IYj3 Q@Ղ1x  hE S"1!8H萀" èOs'BZ'XG6ijXn|M$CZk3v(_VfD(rY éKFq`@˄(k)Jn \B䂑Lւ՚2UIzEq,.(j޸"wcӮ mT讒TI8of(h61ZJ%-7\Iܹ:RlAx{mz]Hrtc,kuLdǍ7'2gtUB#&"@mڼ_+ʒ2F;EDɦQ YkEio+4TԔ_JD}Nk5=I׹c4!FgUr|ZazG3__?TYHcoq)9F5f_,yd_(7>b pzA t#jy3i(3hű)6B#mGu(RG"Dlj$"D 4H܅(vjk,-;n̷L3zG]&noTm#$w_Tr,5qVDik&ӑ@?P#)&VIFs:ޡU(fy Q\߸@Ϛ {R%_I+uMvP ИS֗Wn_ V:i3#劖9QXΠ8z鰈)\o yaghi*iҼ/*b׍t-T%J ǑUin 3Fۗ7mDO\f+2|t'm%}"gܴ׍u"/5m#Of "$Y ơ8"j>ͩЏ'D(RP(Ld8s>CG)y";C?@~~9dYU_^Ұ_JqP^lm6Dlxmp;=P e * ~(]$Q , toHnU`2ac:dΤ uk=6T -+BDBlT(Zw~Bʌ2fL!{O-Y[r&EOL|CW&)A |#ȲԒB\@(m.)m1E)uA!N3^ z_n1&ĴuXQZkzֻJi gv{*4u^rNh%~ۻBKXBd]6ͯ [>!շ kd+khĖ-Tw~>kRҮnWPK(意%1hDB0/JT@r"V7GI>UTrM麦74㥒cMtm_Z!9JjbBkLI"K`K\.otȗ F4-]o(RJҺ3Fm]9;:_uy.ke۵v/7|B(Z2Is7`Ee Ӻ2"X$a1H i+,r3g+;ƌUF NNrg*a]IsY8 2HIέ3 %$(.Bm T1Bpp[N\WWRmQ%/NktH 4ز= A36$OhqDPKHѦrO?Fj $y]fB,9Q(2/zu pzJP"cGNRXkЏԚX7-88I f4qN` Ra+ e}-VMP3H"$#} ĀA XFkGd*RqRhW$%TZa_}W&bnbBE( RPm ,j6qk&;@ "<;QrfY6ҶDf +4iV sĸTI2;c %m]!p8ʟcZTVA6ZɹČVORvm3)zMPkB~X#ú9W6NSjK;5 1UF $B3'֐yխ"mƍ>3똪9z --Pݙ|~wPrw>?>v/O|8p=o[d٥U~0~ĿgЬ1uȕC hx>bdr5Wmk"u< |NЖӡG±ﱪkްQaY҂9RV*)[J)An{r,UR:wHT6%Je$U~{TJA(!%5e"ŕ?pFWBH"C)L0ōNGXNTB8m,q'WĴckD^ Mɕ:N)<mg9yP3qH,w,p6rLG Y7-# 6*LCg"UWcP"Gmx,Q j0YmEvH2RPX$yipM3%FֵU5 ʄIOύSU %dEZM ]Z/1p*9ROIM*BUɲIkD䌑`iS$6%7GDp5D:cx2mRsJٺ5`i zPơJA4ԔcVE(SsHy~}e 2qY'A0֍;nQD%Wz*wUP ^@,i 1KPٶiFᡦ/,)<UЊL",Tri-EFT9Lo,Lc; >Q-;sn6ĥF(eJ񞹖-dO P:T֙CI,(%\G(K$“Ѧg+&D[|YH,*FjP17ZN3VP ,@TBEmiK n I` CWiUk1_/z}WK, ^223yr|};m9IdP k;To LX-UįW²R({G} JЏgtǟxwFj ٦ZSO{ L ر"s~h2-d(_9<=H@8(mc^7TH؂ǜ'@\g;Q--Y42d\a:VƦ+&Uu8aY=6 &J3~ݸ{|dzx|7)# 1G_o(s|'L?A/B@7t~~azgA"|Gr|xFEr\ -cgYjɈYohl$gz LI,Zw0A(QjO`[yp=K W?=$TE3)$GP 2ufX4J~z@ot}OL^^PpvMӁ;̥DBܨ*nRiC1oQ9tӕVt- Z2#?cɲm;pl2") >vIO4#{R v,, =y8RogOD]1ɭPmP+Qmvùe״Ԧ}w1؍fArΨt]\h!Ptʠ\e )hێRRZϬsc->x^Knm%xwRޡJkw]S!w[Ĝm( eE^VhmK4,Qb~C2ijԿ4MJVRևu5?1Et^rK} 5TlܯTϛM`&nO30S=tD0 0bkk5+`I N;x8 ;}!Q%ӷ*AS>Ѩ,̱Q ŝx ?y^\}\;?G;k RR 452~K)R1?3:1xU:7UFmM@J޾DTIGtAwk2QFKM!VY˖/p$U@MR :7[ퟅ k *۰K֥"!_ Rdz l^<9''%E (PB n&RsǏ| &tz̋6Y!n@?uIS4ZK9myZ7Qe]Ǵ,Φ4AEUnD۽t:cAc&؞i42(kw]]]X-iFY=E5\j;iX r (J|Lk~9Fxĭ\4f].eky-dn ]~{bہ|ºΌ7=%:RI9>=12k,ۍNΙ?B+ΗKk¯_XdX'B Yc$YI~g]Hue&i %sL Î){\5SϲVtVra YJR 19re!o6}QBhøq:к~7RS{ɺjʞi0O7.D+w RHZC~5[4R8hX ঁ tvHSSrF ,TCZ: c Jh|> ϯWf]x?5:Dnr.fӠ$xY+oEBI92ZaAiK"Y8>uёQd^ 45J+K)9EaЙ?)FHh$wa%Q4%Fbhfd֊95)Mo)ȆH$Vb^"XƢ` &WH$aٶE/fԆVJltEҨܢR-RML5VHx@T5* d|J`Dct 8><b!mE(]- SN(BoJCEP@J4mU˂Xh%c@ F8kr (9F0_({=8?Apd#QTW{+*ĸǴlpLT>SR[ܵe;&ێ $"c,'33 c3`&zc>*7AȵJ"%LTMcBƧ4BijDIJLJ>?{tvh&GsZ+i2ݾ~2EJcIhAY9 ӷ.4 ux|<2)c gW +>yt9|?v^Cx=nB=spBl˴x. 7ՇswXQP9RB :O-1%[JGV1ÁWţ}*'#&M$Ujh)''~7خő)R :+lIJ KY~<,-`n?>0x0H6w{Towz~^qޓrZ|#9+ktJn3H%Q ~q^b݌P'$Q]E{V5/?@d. 8w|mts.{2>~z";JxC6%֊?=vIY:c;ݱ^fvÎ"j*cԚN$MC4ѹ@nj%HNE7 iP}ƹY"P%l;bU̴EP#%c=R( #+)KE7E~jIJnsaЪ0]N캎 G, ?ļ,O'W#ccd7 CT}u{f B2yLm1~P.XVBuLNncF*P黁d)X.靽RK`m-2~)!< ܆hv#6ve,Inj7~VJCMjLXl,)m,DL;94ھ۶= 7N9v !x(H)@RuTWHYkRV[mPRmRkX%ׯhEbkgpٌh~ҨZ釁RkH|'-dU- /۲rM VY *͘s_a`l;Te n~@H,]H( )0tiǎSSDjгޮ-9X˿?|" XÞkJܔdm-IxYk4O7qH>bB I״H0 fi< %VT VYԔ\Xִ&P @oz2qS$Y.G_#f'JvXihM@"#.;(^":#^9]!aq 2mRtoZ0$ٰIJz 2#tE w@hAc`~>un,mLdj²PEm`YTR3Z[ UT 8KP?Z[TT*3kuW )FHwWJ]tQ@t Vʃ+B:2/\]K7ȗ??%64Uzb&˜H[ŅL\9^%mIе JQޒj)_oڍLL 1cDkuXm@z.O?bݪ3iM\򌇑yt*xHɿRXGh>wt|<y:??:  Yʢ4(,~E#$\zDž@+w*nSlَrqvҩ&PEA"Lؾrz/L.7ȼFӐKFKA qhh1߶ c$Dȥ~K,TS]+Y +#2N(DahmƱ2JR}@$|J>pv,LڍU$`ۖ4|ÿqIMӑÄ.n2`*m? no =s fw3&g$, HΰJ\ R,h+1Qr@w-aQSUV`Frt֒c3|gNŠVI2|O#nrsiy ~1^&o]"O;VYFϽcf&FW?>  ̇O ぢ4iP} =f8՘Y4|Ҙa41%}ůqHL:m|sg̎HX+c8%=>c>21-~ iBcH+ͮe],ތW_-B iJSV[Tc򝦳{r9ʄ(>B?mL55nH0fs "R`u3O];`;Xxd3r'iI%s{yad0p3=ۄ/{0M+,b&ek-Î? "CGvu"$ĸCT*g {vWPEmO 2hi‘R) =(ͼqVT. #lCQ@)B[IZ\@Y;`X֔,TqY̙T+J+N[IQ 0^ ,~L 5 }KR$t~EPPJۍ덅" cd7m-!%Zk]ԻJ)]%F×kM8ѪM--B N,\HI2g]f28Rb=T&Vy5MSSeΑSƔOl޷CRUƢ(]++u2nɼ+Km 6t165Q66+1 }eXcA v :jo$H9rzH)1t#:S 73\?oCVG︔=~-s 1EO?:O_0R1/3Q.gyhM]FAVM\/Jk[)f ZMklGc,@hE`_I+Mpζ4ޑi$&_gT`yCHB)մ!:L FYbLmUYrV"K^z"#4ж[i I+hDDJD4J80G\Xp{FG#i9,5j %Nm\'YfPe| Q2@5zy)bJ"x|ӕs( RCg~EXMHhmRVS*}nznds -ŕ6l圑oAUV +7I QXeg5އVX* Zve]q̫xc/K V`r, r5i(^%P%em@iޗ mXpz*ԘmVnL1M KѶ-ehNlKk tC*ͺt݀T41=/>zn$EVWMmq7Z4/y^rz וcy Yz!XlE5=!~ C#9yRP|g7XNn(;zIhn U@0=|OOha^ٯ#rv|<>`ZK߶4ow2mO I^yanܯWJc,0U|侮(6ތ@LS)QԔz Z"RJDnq^Ϸ<ޞJӡ86=K4@(N4|<"4jnKģzz'9zJ)6XkzKAL# m-*Nk'Eǧ@?hnDX5Fis`jhSХ Rq[p@$m&do5k*bLj:L̉@t;mSTBe/ >eb`H[,hHRDa8"e<ē,9rP0hqFHLs,10 nEŌ0DGQ׎B6Bb@˄RAdְ9QVT([8Mw0H+CdHLu sD9H51% K䈤ʴ>aT`@ԛGǞ+8?<)P7 GsMKL!e͑P*)p*4O)@d)O*R)5 tmWLbpKem:8"X8R Qd@xؖTMRvzeRPZ۷&>>h 55lᰣkZoϨHa~nXWRNئAtSLtXm)RZQJBpg h]7%sa(ļҵ,Y^54ڼ}R)\0z`ђ{QC$2pJ3Xm9r#:ǀOtRas&. y^ip_oRpc.f;1 a G_O&]!3ӝ7fl=ӎ[Zѹ@#D2] w;ؑa'n*05DUQ"CT-}Crw`ZZqok)_W띴u ږtm_T"0?nx)y!Zv\|~&$AXixG6HQ.~z0>F6Ъ0A=Fw|?Gv=H i ixQG[R! MҺWBWؒ$rɵYQ?wm"B*R"V[bm(ZMDU+f,@״ա)W~r.8<Puh*XXNQђ~? PZr PBTִMSy6QJj)%S15lӿ}]tM<}k7ֵ x_ץ&դZ(5](E!ԤTھ/_?~ءd{2-XRq<[[A^|zGnӊ3z<<+$h¾gZVlDnl=ٙÑiv""'G5 - ETo/bήImYCn4 %scwh$$1F 1`D&]ԊҲ9^n|~dNȴI@QC)tEoRhf!YrAԭȒ{:$ZYn)HЛb$ ujYJU<CLs(tfWÄEp*A*iƅ5 IF#hP†J1KCZ=ET_D`  ׇ97p_*8)yPu&%%EG)JQKF&hTJH~eƴ޳7vm#X_9DuX|i5! @m:JFr"Xo>YKƚ5%zѣ0rIPzZ*9RfPh%WLl!$)Vّs3i!Ԕ<֘NzɁvFV6<?{%n$a% #!gvGIn&ĕ(!G J :{9T)uūB= am{s"I %3Vh"+CQ6GF}=HR.ئB, m[td0 y VXݴȒyYVlohtMPrzeV`=۞9 O?~ ͗ҊaI|](S\K;` Aodi)o7֞#"zȁR!&HQ9}%jo D6HB)Hj}-Z:#c.QJ[å@LL!+M4!8B FaѹV"0?o4F>yr9c݁u X.sM` (3HNH+. ~t5n=󌐒t%NΕ]5V)]P_%L 2 ʖB"%4(J ,Bbk IzX \=!P @ 7Xㄍ6*D挶߸JbD}[QnY>V8t= GuYgփbzKPaC=]߻W^n$WK8GB)^ +ln|[ em#˙z_tmLMGpb kƲ > m2sOՅZ40OUtṪJc;yeƎיjnΡTM@z)V|ۏf`+kՁNA[ֿ R2̔ ʶ),>9LcIkܘ]&ڦ2#͈j)ULu&eHI0-s5%5 ʖsyPffD! P+Ml O9=f@s$jP컞\jR5]y4}^'/v< #˼ ÁmL*K ~8WơtQP홧z26Fv9?a7JK4ZZǞ%x2~>;nv-FWr_&u?iHT0>tgzِmlC N3(+CGjzz>>X9o솎<Qt\.4P !5>UȺ8D:#=*j"L`l-Ƭ${MVYPh H s(q]#'f;γ2ƱxQ<{3 Was32Ma$Bp "8(ڇAK7e.yFr[!sTf,HfT)@ń$l1Zex 3". Ӊ03Er tg B]#ERD;mS`*SYB'U%9+EJz!yOL 4Y1i 煣(q"pZ<JEDF" "IvR!rf @&ADR{tBU×Rw19P2Ye[ϐ>HXCZTø$1eqk`bX96q$/ǧ-~fu:kZM0˯*7BB[B"Q{Ⱥ0ee,*7Pr"P2(YB˺څP UT||΄EAjpIlc؀%=+XaI!᩶Wcg˅ 2x=˝}CXϘÑeq0l-9}{FB(n }k z5f[C6 fǢ}z:PT >EZ-B=1f71B("HL AV13( .GBRTh \9ӝHYוrEh-׿G FQ9cY6&κ8\/W—R /3I$"c€]-9G5x Eo5K N/˷XcQV1=4u5eb!3Z4V3Eq  }ǟp|HHRLu bpd%I!SD"ƂIbe͵2]d?0f atBHkYGGr( r3 j|)HH܌Ze!@iY:zí Tcȹ#n^hFv=/3"E~ G´Pbv;3 >fG[mA3B+%32س+EZ in;nckDh Hm_cײ\,ޡT.B}bu;|<3{B XhVÃBe=Zpih0t&s"Chێs<%%]<9ھg sV|[Do,ӡkB'Iv|_]d)dʰ >RP\<~x~0>m!:nl.,Rd+/mSL39 %mc !df)B26ws8>.+/zGfpthc *[k8J+y#{+:5 (˲Lz[X׵5Y~9oo-!]ᳫuNmI3)%}Bl),MjPp&QZTiG筦QbK![XC٪oTm*DrzZ Wr P-B+vFI""蚪j)4۟]*O,H%yhՠe"Pq V?goHiڦ9&WW+^)'Jʨ8>WZDe<RmH4/)S|@8Rno)Q[wv> ۿoҲwUQvyBEX2q=n8jZkm)ucYVݖr3,V+Oz j1bC)8W–1mrϩVs5՚?}?1Ě_zg 4ڰZ@6rNܯ)7Z &Ĵ}1E#~J̉9^t-nXc F|n.4/V~r s~ z0ťX Z+v]IЛu?_~E|;]+i􌦃\8ˌ"ݑy~~m4mcXguaY#'V |OA'#"(NPqo8O3"F݈˅=h%8_lgOJ1K=L|&6.j o5} )kLlb4a3Z[lj!\m/ka 2 IFѰxdowtg3Fz2s)tB(ڎELQ̣Mx:]dviuC#fr펔ye?F%81#$3%9sl-D |kzbIrb4ͮO$h092di@fz[p1ݣR.' !AӦ*se` "|WKAyj;\VRm)mBWS,ZwRߡt2 :Vkvڰlqbb/$"AH4̮~+4NZxcI-;]R"I^DP,x|d!Y4 hqTɸR6GuPfVvMˇ)2]"hĐ"1Dqy(H94= (CCD @"SMP-R(o!u+U**C L5(EʙuYCKS!QBUUw4ZTh$, i7GHrXk g{>9>=PEqhB.n@.fܔߥi12I~!](i(Z2ʦs)rO! JpL;۪ێQ`ڇv,k*UϺTAo@R$Gzmc&hI~߾; Mh~JBogT?0>Kd1=_?kSX0rx)DNr>"l[?Sbex-w7jmN&E@-8 F/'iF?$ܗ3b`6RܗO?|JwyED{nρogP|Z*`h;L#mH-2JL2"ZC~r!K~RXC7ć4]w›!G)ZiuteC:lGhM3k욎yYf<H~ʖÀ6)51F\NM+ޟ$ζ%B=ەNiVp.\ͮE[p;avx1<!t s=.  R25Dh)3?2]nT?GN'G 3z&Hg [Z~}׎.[}gPĪ]@); יD 鱡QLJ]0)6ܣGB-jXZwuUM:ga6 䈲->e6xXR 6nW~ѶBadϱJi" 1:dS .ժ[muhs/ZnK̺ivX*MƘgEȪK bh]ZRniP4 ´tmKLJdZf'HJA[e`]5Qn%o)! M[79aW7RaTr1Rmnc>O4]\YFwU9q17f֦,JyWw]W j/~!7[,+2%]--EIaD>rZ" VV++"|]k!>G]OwCk B„`5kRq ]rJ'؁iht R v|r{X܃GH9B<;Hdc6;L1pU>ڬ!ih3 ^(H}ۛCɈF*u {*sZ6*`.AYAk}1 xyRa׵4"jEz;-JhD7R (. lvk4Zm:LLDI2Hx<8 1v\*C o|& i H&$Jj0r#SPZ1PgI k{$_9gB] w![荋ޮ_UA;U6\hZUb4L=<]s&@?q^օFY45I\O"6 6dhepZb'cBkMc:yB+U=1Sմ6LJ 42|eQV>TcUі5TvvɅɹ,!%pѵ;}|F5-_/<=Y)+]GfXn|p zof*ǖ/ o C_C %sS : dZӕ|z|sRYB!i)UfG5XjSI W)z=QI*>vu )@HGA0W -F !#N3VO+~ӕ am3CȆ)ͭ3kרz m.RPQ4SbfqȒX,Fiv(Hѣ3 CQ4Іh긹O|]>n&MUm_K Ah~-BDr#O̙k\|!%:}e"+o+rȤ%db! E#;*IDVQV(YZdbUۅ_XS`j#i4˲ʲjl+ Al<J-4ɺn]c]7ۃآZFKVzO56,7>GKlD*Bk @Uk* >H)<)yX}9N\ZY#/g;߿~c<p.qʉd42s.z~` \nLӵ2AC+IgwҐeCDVnEe(i6'z`LP0wDQȢmm@ |X[bu#1Ge)*Yu˥HA Q)gq+xM\}ee]oWr<ϞcJ |ÁBH-4q5YΔ\IDAT}~X0]OO۴< ֭CéB[r) 3->$U$9\.WE:]z:M+,3srzzQY4Jn .$T,/i"]'n}aEΜ?b- >_o\_}SnB9e<{f<|x$dr#D(#rߑdW2-Iu=frƕ8?<b6Z7D׿ <:|?H*>L7r)9f;IH@9<:IwV<әqz)V'ʌm z~`u"rCL+t;#DvgYWNlR64Хnx_n~}NP C<ߙ;>rO`{@aϷ9d8/wT#13/9.].vBG!` Wd$ "KNdU9&º 5VC#2OՑK]PĐ(iΠ@S;s2XK5k2-4a XrH _f"J'J.(醁,zJb1 fNJD״m_7!"rA"]nhcPJWrkZ[kO)MMBeY޹YbcEA5-%]ӠTR{m{cr6Y}J4B R&@Q9C#1`ތZ+ ; 0/˖$WBCۡ-MUDކ`Ԫamy[BkLCY T4l.z;elj4M[I[=Ro$kMGJT+k2ƒRbYjc5⹭+) 5( m5Mg)(ȅ#¼Y XARqgZ!Z~?>ЦDQ@-,Jv>BMVA L>, $INӄPVng؏HiFK!m/w_ %)( ')@L JЖ.(J?}L!LEr!`BIҺ4ZLpY /ĴD|L$V!%ҷwaEᓕTuhVW<}[.c=>IX뱲y5]d! rtT5 ++LJL5,G-(em l..J<9?[Li??vo?j1DJ}^ϥ!'\NWBLs<V9EH)p[\ۖ)*@:/+>y*|odbEDǟ\ίz麖=%zn|{øVkr 5G: evU>'!ku&SSڊ)}Hol!5#DݪV >;od+u"bC 4ձ kF?}^L(=L|z:R噱ihږdQ|{^"aϷ&"ʀm , >yz`qC)7zZZi՘aE} +ۖx?SE[]9V'.;3 gVs14fFU9@.қBALrv8nq(YX׹Ef5ZRB{v*M*Q# Vk4+Ajc!D*4R!B؆խ$ҦֈBMMɺ%צ}K~>#A*h #`}!) Xv}Ht>!Jf>lvF:_Ia6,%K}U ;jZǺY/7c)Q 8W#gF2뽦A麎u]X}U4QDf0!h>H+QBWS>Ʈ%/;b#>gғ='^| P?5Ã!ɧJ=)QPOg_'{~`p䗿zcG7vHܬ,:`F( 2kXU.`9b;0gA MWZS՗W g%^|x /gƶ\oWv=aoئ:ݐ(X˔(㩕MJt` kdUJ=֘1%7e 5dd;1ܦ;RS1kG(U22mj/x$:5$JVc2\[HHơ'e,=kadOL۶0_q7rgr),ng^_QR2/ V7dv3ɦ c=@Bɇq`%bHzdC}Iy"儒 #9><=q\*BJuAkCk j0 9Wc*8s8߫23WvOv2͔\4B(;MR\nWVHQ ]s_+7>O!fA18W>ɨ$ |% (=/l6BJy3oȆЄc+%Ҋ_|G +D]-RSgR))( W<ZaR!%Gkƭ }o/`hfE0TVR-hi P+6_AIÃHXM;*mAeÏ?^],Sm5(-EIʚҊ$"gH)A.)*Kr {-j02 [QA i-uVӭsbc6O -)ju2i4*WR4 A(e 1WvMRH&BDjlnKm%O}%۲*ɂNe:L# !ےW% J3o}>ZG .l>е=!: U𙦩 .e^VBْ_#JygŘ@Tֶ֩RӭVƑvy^Br-Y/?>}dv DDˍ{ <]mCGoG67R6XP1q|x"/'>>>3m5 cK"3ݴx8|~/<:N )-yEvZ'TS@?V+_=R7-C۱>э=eqD#hj:2e ݑDXYW @֙L  Zs4Ai)mLMBoǚ߆MӒCdS{֘q>Rb,=H+Z4š#(TȤ*8Z9ҩ9|Z,;I+>_B*RtXmRVWg؉]ª,vXrO|{4EıXȯ|ڍ< -R[~;=הN^ yXY>hI6pLQxC("gvF@5f%2 aYRJ|I+ZP5Jm:RL\#9Gv%Ɋ?.$Rh"V*\Yx,yM#AȌ1jݞiXݭnr ۤ2h$>%Lb0Ĩp)D4E3xlSb9%F .GI(FPR ir j \aze]ӑf)x,WҖtC$~$ ŋD[:O5"(1֩VJJi6*0Ă& rH"1 b%RDfiOdMɓKհWexV2{vGΗXe8wtא]1rE!ڦvȒH˕ A͎QKD0:m "4B2LKHX^ -d76-;kd_3sX! "m'^UOkZ4.zf5TF!ޣeAJA[CJP։۳<qhi@f }B{?y8oLq$碌'؎'N7n߿2\eÿ "MӡDfkƞy^y|Z qBQ 4hn331Um8tC$BYfriȦi0cOoeL#-a">}D "a^&|:5OӎF)s{C81mbH~ 0,?rO:n!LCP RȎ yo1"B8kethtӝeT=d:ʮCrQD ;.Pa.y=r 3Wr"^.!]hw=˲|~Bcw}E{AV_>z(=_~!'";6Uv@g&#!p8/|}H0 d7!².;Z!vzm$4-%*PVIxfnvdgl﹪E"iD-NF;J=P)DTؾ򡩬%-\-w4;Rph%Z#R<ĹBiPV˯_2tm[| il[ᬮZR?W,uقkkH,VwU߱ݹU]d<*Lf0":N}yARR 1d>~F9Yc&oogr9ED:%B+ơYRH}Th7lH Q jniYZ ~]+(iH$Dɂ튶vimaC o̚ZM0Oe7EUae۠FV|># DHZ"yCڌTVq%nFEqXB=Λƾ"xZmڎzA !R*E¨h&EsBpfkl6PdKe*r-On7⦬ouGRژ8J06M53t#-nS['S[> I0rYǍV)TZQRf`EH]LkU c'?Ha5bh4$(%2MI X\.N?=~oJ((,%*&t%>&RE4#aYG]&D/':_w #ST,ƶ!zڬfȻbdqBsR%x/@(ZT87-f:)[nYX* 딱RpKK7QENG͔ K̩`6le&=^x=}o$dx3muYɪ -f陻qSc-ʒ NH! smI-3O3%fgZjCYjX*7"u}OFm66߃Y?h՜iޒڴa_A@BJLM@ e`%BjԜY ӪYѫjgr!ז.JOmJүo)H!DA92hS;+U R݉p|Ьs 8,_߾ T?]^fa@` H$v;mX5xBc\oFx|#+KH%4՜Vw'<1$|y~㇏\+FiVߌԊxF-J[n>!|a%("sT6^\w)e XmX_DcpEڒZi`ZZ+Wɔ9Ɯ{`TJi!c)04E 3 lǃ%g[*%qeB( }7QatD@%ue׆ue5ۗYgzQ́YҼg>J\P@ =E5ɯYǯ7TOLDLJ{^nOmx4Z8R)e%m Q;|}gY¨3-YQi鑐%#c DcČLduK(.: w86C^ lϖkƇkfP)>Hmلӆ=UkzӜOp2$L `6ӨMBAoUToZ)B`JAE5HZ##IRK`^2*wp~=rewzO/ΒjfZ=h6h#gObR`Pƫ3Y6PB7I. lYQ6.Ej`3ebnU*bוҐ 9U\ATxnZjQP`!k CPܦڰJ3q@d r߳+:W㨢d2焈 vtP 2F s$a] Er#"\OD' QFF2d1H*[. ([,k E@4H"5gBx`nSYX׹}t/ J;RY>sy ?DFGX1E%:C0 %*&tƞ^9|' +;NJ&LmHF0p@h15`1$;|Kw: sD*I(k${.oWa|OLz|$vz6pwsf#EO6p_0w|3?v$<ƎBb} )v>Ӎ=&uF 4J՜> u鎊|zr YQjapz/ وFӖ+73)Rp}zƌ skzmy۵r;!aoW,vcۦVA6kYPVJ5u^3#7q]?wCj\?̵/~$ҤzQ?/lFVmT5%Xc}@ RlyA͑B5дOg9ƪ|&i%BHP٢3aJ.%'Τ-X216>a72C獽,ܮIjۿt ;t<r 5˲˧x !) U)aD[#DH ޙ8|>sKWz#d>߾$ck5qp7a ~`Y<><2n;#g-68V=+wHYn$@oNwzqy oo빬Dyohy]퉇 jR坱s1Qw/J" ʨVv7z0Bk&зa1dRkv'9gy]<58Ɓf,mzs0WO~W-FpT9@ʌ7]4ק>=_=ÀWnb%-XCrƞP+/^ ,5w}N,X_cV RYDa0A.s+Qnؓs$qa5q:Sptΰ3i~fʎqЄ ayj G0U܄)Vr*XbAQ99k!dpPEL 3ŀq#&6pWpxR5fsÔƲj JXqT':l72aU{8KX[=%s!zL(@l$*0ܶpA)dtc5 K8;'mhIlU*TC5gn -RIPJGq$J(?_LJGU=//Ϥܢs=Wȹm{c kwK.j3 rlU3F}g}ȭWՠu{Pm6ti xnmWhR25eTݶR(!1"j 01;tɯHwGd*QV1hr؍΂nǷW'Nw\_XWm{0ŒGƒ(ţB!vH() r[(^kVVBя'frb脣T*eEl3ZY5B\PZ.Uw\Z7l a;0r NÞ{~ח+;Y(Sz[8Vy?uzyf7PKd< z*%L+|Fw ZU)+r[V"-aCr H\vP 4B葧=s"IˌSn7Jiv $+X#7 nD_(TލlibVeqG<|*X4ڲ7xCL_O0?-Hk?}O o|#t.L!f:_>ĜPs @ b=:d|VC~ ?O㧏X1i4i;pJy~R"J7AômԜ;􆶆 2Nկx?ÊV^k;tY5#&1օݸG*ET=וӁJi~|a xx8p-?=pb=9ۙaL+%Hv;qDz^)sB̶Vka_Eb Ja7tn &IPz qݑpP:DsK4wKu qD ^҆x57Ή="x{}9D!N5sW$wZ2Ҵo@.D959b-(cX;~4S1%Zc`;q8Yוyy{{׼_Ӻ=+jyM1ְ5!nJB뺾#ŀ ݆Kơ2=mnO eY[* en7rJ|X2[NcvqkJ.Ρ$Ƈ2!`]W*hX"`UBV=ou"1gN2m ՆơD‡Z8:[=}HYC-Uqh7Ja&D 5/1Sg8(pnSHmֶ܆~G1yк-n(i[%v1g{ ! >Ç8*'Z'uKiC.p^w/WiKa KD)/7ۡi-ʧcϚ%`UFwT2s%HJ5Á[T=R73q~'OUDQU"v-)9q]1΢Ɂ@0M*fڢD1 AUCR>k:7| ;BZ9xoٱB8vϵ=HMTUA;Sc-J*;tCd?]YVҴpw0ٞ (Au2̈́Mv$~ mYHIgg$d PiLks݈[֪K1_Vkk7 RJT*/kQRI–R%Du)&Bh}ZE4m? h~@L=uιjKHURTFjƵ47(%Qy5DBH=O_8<>~l̶갢+1&İg_(7@J:gYCZx}{ú5%_QH"8b jKZ8;rYFF|5VIclX<76E6drnG8Ѭ]OIV̖UDt&d抪3/5Gr5\DioCE2]gE"a78HtBPy ) `e/Ơ NY9r_΄*87Ep¯|1B4Sշm"0;bttiVO'0)sLGa0H*vm"[bJ'Q*(^׉.-"3W [F03(*RXawN 3Fc v; -&^+.7cDm'kZ#k RksGY9v Wdm)LК[Z7O (EHm*DӵZ0E0%`͍ _hCUU56o?^ߐFKXj9ߞљ5kBoq5OT ?Iue[UTA.MH?5׈-4I5+.T3 JS OFʰu8uq^xpJkPt$L#>gB,vu%+ӷ/-EX*t$/7}j3B8v'f:*uBÑ_ʇMdo4Sm&n谝&*:L =9WՓє^#bR~y '}Ceg^ӌW^|AXf *ҺW>p O_~חoۯ?>rݸNsݘK;,x3(Eq48!!ؒ2n@ #%;GY+oD!qcZg>?B\6M)Ԓ>Aw;^RSD)7RQղ.=+ӗ/]ypGt\/3J(bĸ2}b (SoQg IfBti"Á_ߙ(*ʒ2~Oސ) BiQ0H!` v_F'6!z)%ks~MWJX)jw `6bl{ʴRB$5)W|h ,885{KQngcJot]ѶԭJet|Aa&J 0X2ZC<ݚ%p38 ڂZ4@TIm"4ܖNgY&VT]QRB~ m nDi뙦}a8}U?l䜚3$["!0ZSh$bK ⦓Ϲolږ-QxzB Pn>?j #I)} #bZkRhi'*[Bh7AB hc9"UsC3bn)'mf5^$ň Rd֐RSD%xFA6PP/#ۀZ7jK}OZc(!`qݍ16֬ҭMZiKʭR!XZ+V6$J!@Ik-’Ӕ؍#Ӳ{L>PyY%%wRzp8!D%,b iZEbɔkY>@əo'~hAOӌ?Ԫj//^(tGHOȼ,-wv}Y-Oܖvhm^R3ETӗ]m]BJtlSc=m?6@[v% wwyYKe b.%'Bl%[K Ie$ӭUoE-A 0MN97exjVhi*w=hvndg::%{:Xo]\0ZXwq%I:PUy$E۪r[dKb7h ǾH-f{QO&RY'AZ:\J +?N+zNYlTqІamͯ!ODX%ak'H=n*x m5;mΰ :FzmBH1pTH|T RH~1=wV,j!2ȊPX<9^[ͼ^/E*J"Dnj (XD! E)Ń8H(pgv8qʢu=׼Rd#)G*9{l"V'$HȺE ucj6T!Z+%{bm j5aç?݈uJ0 LK΢"rƩv)2)e<@[%ж Z-4@fBX2B7ccV`ۢMC:R*iޔF}wX4* ~BimKSjP,:]qob ϸY<_VO莬 H| Z2Ρ(G㉣rtJPf )U愤H)Z;L$:2ZR\+@M+DL'Pef+y}(F!"k\~|v|~ǩ̄uNI;_^(1.w}Fnj %!v{Wp=_^#[(j)013ݏa $1&\G*oɹmv]O\WmLg-2A #?>b-> bI~`w*A~kP *~O 3uZ׉X3iYy<qrRn*(JJ1/+v*}w#4[ۙ}B$k4w?}`/?a>`ٍ =͞)%.ӌ=/w#kN']gth>5{:H}򆰎珟ɣ 'zePCwBaօ~\[I h==LVjv}Gnv=F[~2n;"DPq%s'Á!4Re!˷חe&JÜa+kE.԰)ٚ">/tw{c+o/nÉX_~uLx5E.`N̶7``:VIRRDmY 9A4iFMU-vQh3JHR:[~M"Af} 愗*^늠KmLU@^K ap<ߵaӉ[];0ʠuK\x~ytzIF>}d;ș?*SZ8ܪ doWְDo tk 14 kv1n,c*luu?8PXbx6z)JʉMn  g@e d\$ ? 1괔ԏenZI :ͭS!%jm~S|Mg|HZuUBE[Ō{+>UdHYko fB +)=^VQ:(xþN/{~q7:gPX7Ǿ؋B3Y9ʪjNkj*[.#PgPsEDm.]%N*pJr%P ƺZ:C: -A3{GlWP5>w 4UzZkNTz-9Z9,T-QI4Tc6Gm|@0} UlP5?ؾpsmX >g.ʺRV˙7X o3UB7ZpJ6URJInZ!b#+J;YˏRq'WXuk,#5~9o龶& #fȋ` jsfgj΍a-ooV+a:Uf/=@)IdN+BnSgAx:ҭh5ÁǷg|j ?Ŀ/ G#9{NZ} YbJhi/A)u P8t5v/Be!8'~:9{!8mPJۏĮq-qVDmQT)-u4Kukm~궨XpÀP|EULZBKRR4m1jCv1RN6!&K 7Uh@Taq )RB'aE8vDyx>&j4*.70,^rw,`#s9Bp$ VccLWZx+w;[Qe oؾy.OSԒ1 %c8s\nuFnOG)=r88t=0yt#?1vrHѴ \H*=Sad3{%9⾦D֢x+p5,bDf9A@mCPY0 yvu4XQ"ҜDWLR5VNm0Aǂb  -*BfoբeMiCFJ5g ?{0(n| % Bay%%ZY=JmV-i~fTt֒DH (}2Ъۦgm0J-VB)Ji !R(;Mϰ?ɾ_*ߑ%J6Z]V7V}Op5Pczb%0 'r H-Ge:)ķӪ:_轧O Fg=?b>| ՊɑިPƑ,%#ZhHtQ8%V_XoWJXqZr;r6_0!+#=V9ß> `{!9Ȃ;d"؃;3,>eepDH,ۍaJRks 7 ]ج 9O=br}=sz#kdqe<09|-B*mX1)Qu%Ño/ g-ޮW=aFBJO>]ױ\!-j+9/()E{v 2,s`+]ɌF. =IV%g#k"'hFP50u;vz@PBr $ؒ6NbF/*A@/7QYZ*NZj1Bف;PL1hP_i5Y)FRsuUxZ@V7 Ϗ#3mmHaG^sJH(3qtJS$Bȱ-UAk˲oTmn PJ"F2 ;m٢)ΥB!)H:|RQ+6H)#r8DM rF#낳p`Z"~}JB2É??wwGJXf gU3{70"F@MV:jm{EJ[HT R7Q̫-;#Հ=1TiB6Ht}'s$.B uiǃCȂ]DTAv{G >Hh/9C.6PcnvS,`RJ39J!)iB.c,84].=_m;4&D.h%#v7@TۿO?dnvÌT z#ϯ ;wwzfQpp=On #!W-E:O%ERMt#':/^39.m"J1B/V%Y|cKd1쀶G+䴂obc&;Z? 2'Dy;Çdu!+ߣǰJ8_H8_ s 3i]qKvka2zcFKÿOƿ_0++94ƛ6FU7%u F\̾U%|XH5_B35D8aNmEAȨ`J\g}ߵ/vL)4Ӽ7*0 ѳw 're?݈RiK.qKųGR%@Nn :=S0' 6e#@ƈt oWP),aeww3@I%0s. XO|qpzE61ny8E? \f||'tp=i#Y<]t~Z=JK#L3oĭTNwBoO|_1c  NT|#K~7917JH|=_iq^# N!J.AJex{?C5T!6asǚ|3,C#&VF۳7ٷDf%jKʢ>jVZPAԠTImQsDiC-1֩161^K۾޴vuYHmjm ϯ/ |;t hrUY:?y}yoj/I/#4J((B`]Om)O'J.\3ۡby89~C ]XS45nQPrXzRL(e0NR \ُ\nw$$+V0Z\SRnBfj>׿QƧl)Zځʂ+F%67ƌmCo@)%.h1?<'&Z*OMIZK!<_(Y IqX4T4W"pnp1'ճTOJUB~67f,*jmkLJ׏y@¼l܆tLӕ~Gp}yALo 󼐅}ZISaz +VYBސBe %y]RSdf Z9i%_=)>cfZ@n*/(˜(7Nݞg'JirQȥpIR+N*n1``g{ 5d-Tqqp^+!QJ֙Ċ˖`&eĚqO6n m{ZiIUj&"ӒyЬ񂬎?&AkFck"^߹J3C̭%,Kd)褢’*WU5@kEɥjqZC&hH5s[(v=ي~HGO`K`]oPV? z6{av "V- `h5FRXx^B}pҺA{1f|j h")fPMӖ1Xנa֖穽RmV%@^6=tkX2m ZbQ ?p>3/ʑ$ĶAݝx}~e?Xօ 0-w.(JhtCG0 #tkdbʼ]k4VpxH-֘u8 !ZY*(H^.0Hn-j?ŵ#RT92vJƐN74?pJi!Z=Nݷw#u"ΑsC݋k8~#cifSk8稥22ყw~ƹtJT=PU5kNmC"oR@`0(t,#n! Hʨ:~|p+~{AϏL!dgYo'~b'/"nopÞMe\=c5ْߠE@Ԅ'+ {Dwܖ"YD 6Pj` ZE@`ւ{R##&:s͒*,2v9VON$4(h"@ ͷX5ζ7-&k9AV(*FBHSk^ڴFV\ʽ1"EԈ+f%N Z3ځ5Gƪ2M+%} n[IZ!vL$9`eo;& ȴvtKb7ѝE DiYNtUAKT٦$Bj)m˒0ʢM 6&9Q7M0Jºki[ `4U (5x(M ;rfo7|{{ Mq醞c{mtۆ@HO_HDNHVs`Ն1r[έA{UNBmKMWгN3wvOHAiVV+JX`IS+HseAEkiZ#zF't73Or7?0: E!B@1]bazБ¹YkI )WO׿Ϗ5q^7j[ +(ו}ǫ>팰6qۓDA:޸ݡj,gf:Ӫ9aw#;;2-q3ZFJ)LD %$fn ۙ8/HXRB,Co `#΍!7q+#k \ƟX^ßz`zyxO#:?/,r"kQ;kJ n km:r->=r\P)RDGn/o+~ \މp}PkƼLgFZ_ߘ_#ϏE5c|x㇑% 2-Ԙ8/7TYJ-uj3| jvf5:l|332 ˕h_0ww$U8=|y䮧3?~yEqer;r~w=7Rx]Mm!HMR"xV.HZl+#QqAJ́(%ZYV9o—L-[6kB-5T6RY繥?s;tZ[+KkE#tʰS/3r 7\"$󍻻Ҁ)Jʼ4kJ~$'`6f֑I94.VgZgXaen̾Z(ۄͼUZ\=yj!LJrN0Ylu*5TA \/g)%YkɵkZEmCKM k۬=#d;u]c$C!JQrij-d 9GRN-M!!n]ӑoA"dD /+ jg5&ɉBŇ`q( 4 mPJwKcJP߳.u5a +Z&iZpZeK /w>FT#q4H,s9Dd1%ΑfTjR)3?1VivCc`YRV5Lt(ko_"!QM%P1ZO<*,qf9\8XG[^+kX~˕9Ӥ'6-L%||珼M|ˍ^oԲ6j5kf+; cBQy?8d6kjݞkJh)#IX^njsJa"ZH( XFS?RA%5!Tg,h|JmCFjL{ivmIҜ%7bQbKV.J7 X:bHӹL=!jt*|O pe'ϵخK}o+H96c[=bHنƴA%b3 Ma6į? aXJJxn͕fMrwZJn|4iV/]k!Ku !b -Љ>;_<FXK|Qt㯿 RcPNomF=nw=;kxY'nS cj.R S #{~wm,F+RXyuyL8n>}y}npH*ye<!pw;6or]Qlj*<Bz"(^*nK`Ya_+Ydk&ʺi-D!_|NuuH^"Tm5D .;f徇しJ@ʙR BL|- 5pVRE2fR sK7d w=9 "8JEg]ggÇO'ׂ_#ZLJG˅/gt:iaij+X&*MYw^#FQgv2B?)y%DJ #Fea7tF9 = (PLpM,2NaS"R7_ʲN!Q]O*k )Pdzh(*VjJ@-#}8!f .(yEfpZC9Ȅ9EZlUQ00ShP,M+km,I)@)mr$B&chTASғ%yTfy{9: XbuE f{p8tד/צ!R7}j5Fe|NdZ@M# 8|]s Hqù3Bgk!'gl ji@GM)%!k>qcbpX H|  eAX[Gr`j5Sʲ.>|" +Z+ƁTTNTxp}٦T_n3Nhv$EK)qe-8iIYM4fVh݀)"! f`P Jc׃hi X_ؓNc#fdYCa;Ff~{Ev#|XӅs *H~:.|h#㎧\ׄPuG^y~gqU ϑq{|FYf/XN푭~J?X|V?= 6( 7Ӟ hD'/WcO.~N=󯿡%R?^a_&XUHV2ua܏%3M+96hufkt[B L1Ǟ 3Tg`m|A)v?;P~#b3ƵDZ'ѱ?n[EYYz)j$﹭_Uv牮!,S` pׂqn)^yo`==y:ĸtؘSb<WDLLС( )4xkX #1gB( a$7h ϟm>3ڷjvsH@)$  K,") RA,$B!D$+Ј{n6o;0^G:uksε|tF)aZ7B@gZS)T @%Vմ-{ű2/8BXc]@[Kbd}- ZTFRfetH&!mZ`UNk2)db ӈǧ?$KXߪ+-4uG״OTڂRc\"UU]";|\RR"}Xk( /P!|+Sj[,CĥJ#%}9~Be+{,J/43B GR^P%5Wz}\ڃHVg,gPF8T.߻iX8$(-c๔+-!"dq (b^ڏ%9E_"gୱΣ/(arS.8cYH$Ҧ(DRDQ!S$ 6hmp4n65"y:ԖòFKoK +,Um+ "X-Y TUVsRlI)`Df'B,\lHDC=)xlS[1@V4kᔍ)W;՞%(e){89Ƿ\mhMqȶ"›:F)3mC*eԂ1:Aƿi,ΜO&r# XǨL#J.ٵ-VrXiUtx8d+_cӁ/eM:Qxu"@KQ*$%wxW^g~aHu%f̩JdtYz{1Dw1G M(E_i25Mä(2 cf'B{0ͥ|" E,Kɗ(^]7 %˺RYaJVm#"z @fTe'D?m!KaF|.1^"SDx.3ɋp"/)J-Jөͳ6wӴ<=c.${ !-mU 40*//{zuǀa y`X%mM82-3Gޣ\bN?RKvO#|@o$Ako+L$pΫc\f~Lm?'HNW>x7?8PVc"HȂ7ww j7ANڔ!ߴNCBEX}A"0"KG2NKuB\2;6mV9x?C)]# % $M/x>\P%C͘izkBo;n71FeZhmb<|>c<90`T |͑[rkccbZ$w'j?3_y2_\V^Ti8"b@a]hA;OŦg2*U6yW1T 66љX_ ky'Go+LӰjVT !qx|`r*-3sȄ :%bʜbq[-JoQ&JH0DFӑ۪S :僶a$82!Ij .V+iG(3 zEVz1zkȔ)_$]]ӵ-9e 2!e&e§֯|)y39G}Ug |+q42ZKC)_]WI{q;EPe1 !o:n]0Jb& BaՕa %F41 *kJpPBUJR}RʊXYuiX#BR]R6!9x)0&! baIJ$ݶbVZ0FiZV UE ـZZ‡IѣE_ p 24 mUs>M#%?eϝGƅyZKƑo[!MLZi%xXg%Wרl($ dߐ%DپܳpOo~k*|wOF2^~ͼLH ܼL@4JQ|Gˉpm[a`[7l BͿ6ӄ ̲ _^ݾD43ڶ,cq!"Ĕ1AU91.+!B]%2F=P@)dV90/3d".Iڲ:9Ϻ:拰2H$%U3)'b.~'maH)|(gN!yV2c9m%OwhlB .g5D!RF ,].F) 4 !\Ι0B(`܄e >h$TBwɸ. V\jMJt"/S 5mRɦWÅD[wŅ$FN<bTiZ!QJ.0Ē"2[A*ѯAiRki"  1"9** BB, k@ąF*5>rװo%3O#L p+ Sk]*?x:DkL' _i+08(ͩRIF$^lZ$wO O낪jޞN>#U̮U(m>2m};VZ5H)r7gLahn[͋V dY#P?x}M] )oUxa?/;xZe_9A`Df[[|t- 'i@ %-ri n-`mK|" JFyMJiTi?Y1RQB̈́p.??}%8CP cmrM2!ʬcKh[ڦbm1ʒ HZKT^ o}k 9g˾KU+$e2XUey) )ȥ3ݮB d^S49 ?{`uES5dɗ&Z/E+$0Wt/N/IS5K !Wx*IIqie~eZN(%赦^QٖWW9M+ 4\41fHJX]rҚ힪=WkiJvݞqwu K@+䳯=߾Cn#,u%ZJnn_A*_WĴmA ?Ƨ_W W0 ðgm+2hG4"LN4l-64 bx]OS%*Jե -USI}}# *Tbٔ5tb#^iwO>}YKQ_}瓻{zpYQIRZ0tY okbd K0!f s#KKcQBM?-5!I2>Aȉp88wŋ1*NoWE(w|?UD&H\ѹpv ! 9c" @H!&غ![=<ѵ}2A}o|cW+2|-ZfǻyrDY\W1**H*!CbtܝO%9 -e"uiy.ytNX2Tۺa,!!ea=Xwŭ%o./W'v %5^y0k|Y(OhVqM#9<=u= Bo>_g7%g&k7sd8N\_4~J\6<2;Ѿ!5Zie_HT] ܒ\d?omz2Ria`iY3v`2ҌQ#tH}sEU5z_]q~)i;jÉ]7?17Oek M+*df>d)1}*sͧo+]|RcbF_L}[10/ GZΤ55Z[|(mQH׵h]8 g]41 _^Q5-+|ܱyr{GoǁFq8+Ѭc0?!r= ^mk $qN xʔچ~y:">!W {\,UՒQ ˙ "R|TML2k(v]WL 6{aB*MJHp91#nk\x\Xici'\X }X֕t󴰻7_|?68o]m-˼Rn*$#˺b> ~e8ذ6eVW\J?֕w$R"uaPYY"$msq>9G%bv{H9RW]Us8)'D@cps;r(TM#ųcK_u]_8B)x)]'.ma6 <_\d9f} p9@u ;ddw:o;ںf\|?S ȋSB 6,8̼{4.9mUiZm5"祸)/@Dx✓c9b mLnƯ FdZ$D@IeA RJzǯ?;?С0V"]eDL\[Ú>51'rm^28H%Hvy<å>BE>_G"xF:S3Đ"T!EHZQ3,BCvej2ETTXhu穰xs>KzGPYgΪՒuvT]Ӥ73Kj" [|px?!F\C^Q$:ix8MڊwOc%XU11xR83.Mγ1 sqc>ʁ:W_(HQwqz|.{ /|)Kg 3]_({x?HT 5#$A邈Dq;99xw$QGbVU?S֘FM[=͌/iEXU>?/>J'rj/nTcLq˥LߴtIM)bds |5R/=.]aS'I)д j[HNn[=FJ=1D״<>!am19'ڊį|w??ox$ 4Umˀn),|ۇdq\6W?s䘨ꚦ(8+X@t]_G>ek7 k+bt]8.`v]RkTU1 Ȳ^"45y~/#d^{\yϨ=^X?m:*ȳM=MȢԫZQG^\oۅʴMi6,YӀ k_ٓ7Nig[2 e?k?@k^^liN3S91웙M>qCgP͞#qb J֠Q|GǿXbixT=?=h W .1IHH Epk) 3IA׸y`Sbgc YIF:x9@h/jK \;;`*w-m MeG_ _zh>WOlxՏ1WO Ǒۢlжb<$L~̚pZ?~ mZRs2|D'~uEsۃMȮ9-tW+5,,Ԝ1P5gkq SX+pŸ☖T3ߝs)HyeBT'xt,m&Ξ"~O|I}|/ǦjmRD9a@_(ѣnL!Bd.[LebmaҰ#;%岱dV7KD K]Xդ&_"1U'ų,NZZ*nK_3- ]w7:swpbWZ1 $3 +w@Fsv56۞fq]S_Y@v Qd(;gk?æTq޳!4$K{y'OTh6CkpH+C" nz$jYæ: % ț*A0}#1{O۵)кkRj6uM^&Theɩ0l6K$_D􄭪3I%V57o_rGUQ 57tu5u]ROw)p)JKy( [}jִM[DN5UZ S]鏕_gJP`ڵyz >_RJ%'eQ/4."^GK_c^j >BzP?+0FD R9dt c.xq$ymj"B$B HBQيfaX#PaY8C˲>jFH *EB,?}aJj[FK쨵!'q^Kȋ?k_jZI{{7<}x"״/Dtr< uC5c%0i^܂6#%0F͎#Db҂4Fj\ šm]u6-+ WH4TRJA[5Ƒ0̘T# Zu}y<mwop}}=ziE FV5qB*KmY%j̇;]t+`䜨Z_q-Qh Ueyy{Qq<6ZWdM:qxET UJMpRmR8JӅeyiU6Vh>}qU*Mw[J,ºuA{rHXB*ij遯|+l7;?u,"YΈcĭ31g(T(2aR]!Ǵ$csӶXb)BoP@-KRۮ%x:@W(7wAi$teX/K3{o|R>SYE!]V}_D)3[OkͲ,nm J_ FꪹĒa)Qr.bQry}J!( CWJ؊5<τKdJc­kyO>x{B~_ Qg!"wAN")PR7VĦX%3MU3Ok)R33A*Ie>dvH)?=3Xeu[R(W[՜pk)$ifGBJ#GR+վׇ]s\\#)HBxT ! Um{OD󂐖uOL0O3T -,»ib&n ,abBlv[ef<ꗿ<0L UU޼AJSH}iqچVPGI5ub>23(5dva''O5]1m0-+NU67|iC)sNٲ3*μ~wZieEe5w3 '{Pef$iŚWBd:eR2k54bHo8)щ9V #Ri.WpILҐJb"(1n9w8cS"-m2 C!ۖ&Be*Oi~TP*Tup`JY-+juć'ҼapO:u+' XyThQB 󷈦T\<uqe#P;~)%=5-UiGZSLvpG@&qAA D Ñ/pq'V*IK>B3=hښ^s3M(tNG\\1s~<MB #Hgkh *+y&Ҁf7}`8~@ <'"-4Ɖu'ypw;б.MIfßd%g6.T *rt 󼒭liV wޡ65[ʗ8N<}57w{pe]i:ܷ| "~tQ"Gw-M[\K0ѯ@bߵ#KR4q5J `MTF4fZDLTJ33ƠSX%tHM6UӰfA [U ˂T&!XH \եm6eXWgx`͖qB Yr՞*|˼2~%L.4u](.SضxSiIz:v-R)Bt (E;o6㑶XR#<7s*7Mi/ ! &u.Ns,QIf]B.Np8i{ߔ/PwAJ)| c񾸓 l'Z(T)p9 mSZqҺ'\G&L]׬k9b.JaHȔ!R b*u>\B ~gb-mՖ4]${bHԪp;ۦ"İd%x8<^^W9R%$ LEHFޗ( JJtբ7Ow(["nX6,~eU|qF A$B&D7cƹm׶xukZ^n<><F؆i̦mкq8aVf##JTȬYS!m_#qE<W4 X1Ȭo zx7=Ykmgp<tDm,P2 x3xjl9$qɸyusE<WuMȹKs@3tUϊi vۊ^Th)Ǖ9Nk|R$Q|-$~^ 畛q &nDҖu^w-c\#O!qu]]Z"@ptVS5N@2{OF!,B%YR^-n 1{rvB؋3}{1f؋:S"_73F1.kCN qFT$rߨJ/Ζz.bc»^ߚ(}xi" A6NGFT\RIx׻߳,!y#/ދ{!>gykRiV%\” [ "p2 ,Tb\F W)'T(tVD.ޱi7vϺ:>8bTmۡ|tW}nP,Kfef&Nn1=;> Heeϼz1rw8AO uSQE~v̫cZו!Gxʐ[f[VTmiai .:eO"|Ċb&x5Ӵ0rVfSwhz *B8s{g#=s8-CFdG3Mg(no*zDom#Y<.`es F˶mJÖieR"̑O>{YV!+FŗveY$$n ܽ}R<f[ n?k;4&ūc(4u d qK~Z@-e+譥-IZ#\5UxR M5DN2\b}n%q Yue9nU ;26RG?< \`$o Ŝ=[83Jd(DZ镠:*)]N g !АIB3_sA[ǥJ >^Y[UZ ̤ kBɊZX,Pk mLQo| 2)qŏ긽~cjZjmJs`eDޑ#;#(JSX RA- #KULjBRdu uKJl̊5V uSw0'ÌJ,H4V(tVu>udtg ]W|v离wOyJp(b-베ŋت_ų K=͖P5Pkǯo!Y"*b$Uq0X)Iwe"jM r{ÕT$2]}{hېlM~Iv"gp˃GJ9dQ.MR@LP޳}0}91{mM(J牗Ns@jò8BVlv/PIQRU: n)T]*_@p2S2^: ek엿JD۱ꆺ#R|3H"+l,*Ákv2fw#!~zmg'mO5UT ɰlSwI>v)*"n(?jCpTk;O-tXB5WH|H BNȶi;ys?D: 9nn."@(xbz83PE];bjCSW8WedжL i9Fp'V7oX3yY DZxyC)wTmC|_m WiLj7-T9VǖE7[NL]Wmy5mhn*)h˰PYbL$zWrs&U xb$Z*uĄP Ͷ߂KT5hFAXZPbc OQFPw!abxzd>9|$':4M5MU1֑De"&hچnAjV>{٭O#mQ0-3~uK;hHh뚜"ѕf43ѯdsnPpaxUfsEꮔmSU R^q R+s+ѕ PUu;xfd!;挤sLp"_. 7T{?NZ9#xII{>W3KImӑ-ۚ,!ERkqpgΣc-Y(<>d2_//4BxNә'Rlk%J.T2Zm h:[U  ʡŦgkj*Ukz$eg9zϔu&|,ϩfN!8 i`嗈A`*J9ymW@fϮnC@MghU  wo?+8yBUt$Z4qq&_`FV`K\I03םưr}UQUO|v8 Vu()!,H$nyFXKΑm6-'fӠA+@^f^*HΣrf_ [* b"ɊøM-TK$-!bbT($ ( FZf=!Wh Y\lQ$LLE4:m.ȎK/W@ȺBRyi|/$"KHDޕr"P ºPĹZ !/1tSBiK4tn\SRҶe^[9~%F_Ǒͬޕ{P :R*=%=- 1KmA SVKPc-B r9ÔWRx62!5um(bHxs nw|뇯j*eJrf#(E4D9¼JJ'pYX01>qWcxuվ!&TH|opۛ+-2(GDش="E >%Eoq)1gSZvHakMr3_ҒO(=f[[ŵʀ4@V%G"VȴL!,)gV2/^}HWuiRTiy]օeBT਴$.n=}ѫtD"T("v~u +n@.4zC(k ""n9apĨim O'VmXG^!8#4+T2.`Oi7'Rt^ƙ&TV l?~nn4՚}"'n=Me GG^JˀBRk5S$n l7&=L #D!"qZLur|e㪭yE8V"sB0鴠גXEQ9kc9jlHX] u' iҠll9lǘ9AV$ uAp$3Ȁu+$N$)-GO/ȅ ؊a9 JKHNBӊ &gKXkg1FWLn-=.:k-39G3OD!ʠBFcUi B!teArXxI@6 Ȝ0LUBAȡa/6T$B( @mR |\9'HMJwBZ&$%p2®a~ρspLޑ0=UͫXE,ȧHD#uCw "b^Q4/&Hq*sahA4۶ֆh`F8.TZ]WGtVo*2Ұb-.dllGHe3!DC0 ~]iKT,+WI @5 >Ѵ )zƇG7Wlm15n6R+P3,6nӐe:Ou#Ûw5x8pxxoZ{Ԧi$‹=tѬ~ޭ%LN#V2 DLZ\u, %TH\oX#X<0>>`*[]7߽cʁ̴qğ_R6C)uMV}ŴNxhZ0m^~eOOdtzG-5Un'J+v<>=;J3 ID2yEeVwŝG]Njw{6K(RiTV&$%.$wwXcjղ~"pDEFàH XiЦ.Q:Rn>!2e+%mےyk Ueù8Rؤ{q+KLIPxW{Ƞ$2"NK"b@&f9Fq{~!K=E))^p6^,!G&ȗ”%!ey*m1Ņ{GCŵo$㑘2l(޾GxYH,x|wǮJEZxT5")2 @޳&Ɖ_fNN%>f oy=a l7YrS5gu&g4[ S XbUqp-2+B:1MR DžQ٪0@"rB5[} /]? aV&8 lpX)>+8^_O|K!?=b`gӉ :HSaMp$eSY@v,2Xh6Og6XKvT h)D-Zr R ¶[~f_ܶybfV7(!3=ޱmCK-M8Vi,Ry4SDZDuMVilհL+Ef kK"Mmku~Ovl{޽{C̑5 N 5),ӉVXcme|ZJ^4"Pb6RKba܄X"duM]e SۄP6uUgF,C-K2]!P>FTt?%齨T[Y!$ah4ҔE4l3ID6]=UU% b)<˼i ((DiM)q>KDG $4uMecu+4a0eZeB D%*>&R% qB)CpkkN)*cL6 LUd a}q+JQ@ >6*6qzR[qY̵5ۚ8p(qR8Yq)M]S3lƻ@i IFKAg,if*LiwX3IHw=)Kֵ|>#JJY{HiA[ŗwm4gYY2ϼ Q&Za+Mky7(q%8B2(mmq? /f:ت!{jp)z /<ǘ,a^V7.؎$R}P@)ëk첂9M#2r f0ʠ.poSٯiCrD" !d_ZK ZBd+%)MI i޳."]ȟ|oEqcu|g_Ҍ#aICU5x7!b]ZrNȉB K Xci%UBJӂ6//Y/!@NYp%Sj[bd^WH2JdB DIaX煪Ag*\^-,}ُTd/"z0Fc[7T"]]s۲LsiD0ߵ, lw[x4날 d)09#/ Zn7yexC 8~WQa]ҡBNW|2uS )DzE|=R<f=Z%J)R ! tS"MUp<\2kkV?p<s%ۮX&aY:g_W!XBx<QF3l0iEHR]spgW1_&Z!`,jE mm95fp̦+*!*ͪw0 3Z1lC>ܿc3C%R: I'r8cl,2iY-sM#XFb|/M68?bt#8֖Ѹ#ڏTۚt!&}Ʒ}pn{:QL"w8V ?} %gԱi; `6GQZ pbAe,4X2.SяئcF@*tkY'&c1i8Z/(Jx,hd̾x2s(m-z0(z$9䋪pU 󂋁mߒ:Jωvi>ˍboz7xL 8 a%²i,t3b(ܹٱ%)i<9.\ )V#ί(ab\o6dmv%/[&AzmqHU,躮2+EGtef2!,둍Lox$/#6"cRj6¬l#-+\lr$_Cz0t2L]lF誆zdk󅸮'䨴b>=qh܄i'ݎ1 w:)@ВL]$5V[^)Y:) T L7N]!LKXrq%ݑו80}D^fv$Z?2'iDWݎ,%4!b$/+uW3Gd'Df5'@^="em9o /wVE?:ܼ d@+l0,mKjkzὣ 876Q;;'TPz]K3շۅxHkoXSNH29R[q\hlK_7 >jB1J(^o$)yI)rF՚mʷ_ ,Cb$NJ2FlaWL4; L8leno;dPB(i&͆y;1\GCɷWnC Px'DK-3B*!#1U5SZqn4 WK2l6;#|pܚsԏo&Wku%@[t~@ӅuR}>J*ֺ6%PaKx+{r]Ӑ[Z!֔)ɐn[RRb˼cbY'M[ΐM^!RbBaZ2@mx{p0N:ApDK8 d%Y.ki|PR \@f]F|T/z/_G-(^=2woZ֘u]s(p徵t Z0xwGr/O%"5rmpܫ-k\ w-B ~_2gJ2+VՖN[_>d RXB+Kzd^"hsI$ BEpqTv9D]­2=%ۼL;ni|`_k֜4τ* O<|1 ^GZ  8n&fKL4b"Icj%x6UHq)Ę1Z"ENB,geZ8ԵnLX}LV8‚/U =+eZ"ooOby@ٚm/S qF5'*#Yi 12maa۷m[&mO=7~?_XL1,#6 //c-촔0:mHHR6{n;>xbM{K#/ޱE<< ,~!߄RJ(\!j I:j\( nn ilö0ƕ("KER.FIp̑% ,=9e!!A-b e:15)ß+U#V D&O4Ǻ^$k#wBFf9'F0FexB=\kv LJ] QX<ޯUi3F$Z$VhƘxk!7]RV`,)V׷W`&X 33:k\W,J$B \,F(3$F Izq7D+0[cy(%2U,DuZRI R y&s@۷,K`glUѵZR9DO 㞫1OK'+XB`1m̾k0^^0Uz^WHJ=ф8| @$8 .>Vʲ4~4R%=GNׅͦf^+t}9q"HszSXtLP6m3O nv,ׁ{RXi+Ϗw\|?MEw%Uv0~V`nABi<%>xt(i%yݶ*Mu-kx{YB陏6Ujçl(_^_51D 9TJή 7tNZ6-^k`VUfw_ӟ~?p:?9&6JRH 1 ١H-sJL%[7erH%lъm]tY\n;:왖 {eR 3T8AiXurIqQP AT̴,4MKp~2g^^^h_ )M1 2 vi@= ֐bH:Gn8J!`2?ԝzEꚓs0/14u 3w21 t?

Ff 3 mՁ È*iBt۲ِR '_ B[Ӏ)ogXgV7BDYKozBS!hfiHK H;\H#y{zr:Ѵ ̴  >.l-u94P4 W0/D5cۖhsGԊmא 9E]OFb J\=m˅#^3#M@Zj:54~񆻌:^ H=xoZZsgDIg=ҕgruN%C(SzeZִvr/tuEWmq˩X Â0:FDqQo=:h: r9w,` H;2(S2tQfLL"܂֒LZreM0;.ǁYZybJ+i*4Bh^~NVx/J 5 DKՒu.qו8]hh=Q;uU3Ræc׷ 3uk8vî4O3 վ']1|"52y\WZe .c[4EmVaD 恮W"\Fp/O e^[W;wL:\[Eۅۅi8Z{ݦi_Jjh>0T 793@ [oǏiAZ,#2LjxME rw?}xa_ߞ7=;9s$Ⱦk?|-"ELaEft;r~EOiAD~~0 +;2*8Q|Dj:24QWq7U٨H]R) P ) A,K=q%} 4L+!!BPm6 hVXcd+u.u! PL+iwǫxT9soL\.$9R{dTV#L=Ā+Mߓ ET69iZqDU)J+#T{nGș2XiCΉyJEDQZ//4M],cyϙt$DekLeϛրhsX0vǴ.jM"g.+'|㟄G&ń_vy%p`NuwExB"ۖ1YHQLjpnyKܞR!!5bR.6hcTq\. PXe.m[ F#p>R2ԥB9t+X"u\1y"doXDž 7*ŗ\EI=$f^1Q,mcۡrKGB(;/ƒ3IhUJYTl)Kꈯo$~*Ӡ|I/W|He9/֬V3{8͞R sx>dd& e!2M6n٭a"f4ۊoLJeJ*"ٱ̎Hz2,ytaMSK]Yb"B28HڲJ%)L@& Db,h BiWt^&HJ0+m08Ɉp$WʰD\R+6O!z}YBX%1bYhQ!D!ʨn6~ԄM3 +3CRTN=&eX,n͐Ld!Q{ HܞQJ^߲fjƐ}(5e!)RӒR0}#n;mB@)r.R,2Rg[EVx< DI׹L[H[L }ݲo?J No|37.{aM~{gԶB)]P )RBД&ΫFKXA(BAb4p[>[Y rlꞾi^,dvHoX8j UN`(ǻ ?< W2uht׭_^YLUKWI,:US*d \+C+mW0(ϟXr`u3K2Tpze]'lTVea%y؎JZp_Sҩ}"gQʐ|nBґf,X-q@$:X@|Z(02cYe}ضcLqe'9B\_p#UI3~{#:ϮyuW|eYvwmK2oi~LwX1FÂ#!-Z+._y"F|>ƙ=a](i*WȦ߲q噷|# =>mzb,3~ruZqq7? =hzaۆ킮,jKpˌe4u j!L3Kֶ$>ӌH]7t-v1R=u]g^9 >Hi7z$iJ *E@iq/b'ב4iFh/^\ ˷De+WǷSbamwyJ2ef+W8ᖙS覦z"OX ^i[Ij Gۛ .KtŮXnӑi1?bHtY̷W><|(]C]s #l Piq}}ǪiJYPe+`BϚ Yb1wsd,9fG =q^0!0g~}B0!e8#&ߌV ;BL)QXX..opn%8W@1n7г*X<PM]nzŇ+˺m[D!Ӵ=P #$um۟) eyΙaKy ѓa!86appww %vSR,碐\$iyv- r"Q1!DˈԖ!zmi;K%8l[Dd-R8Z+qK`W,NC- aUױEk3씤+4։y)?}g$ؘhTLdX#J"ň@5UH .GHEI΢|Q"*Dҭ[^Z7!Gh*RQ6XS.˸Y3˲>9? !=?ZdJ$E r.Su! 1$B"=BK Uޟu%7`WS$s0JMo^m}pݸ}["& Yj|1R WS1u]@+r׷#>&a&+蛚McVMf4hiV6-R'3m [5%0a hec;4áH:cش 1/~a % |qO>S<ęö!ǒW9RYK]Uג"̂ ^/̔jmZZ2,)Rf&RNmC-fڦ- #suXcYg\`%v-뒰Xe&D iD˚[$rP̫g =9/ĬѬW=Uׅ){x:$tyq珸^vT՞Jy:Z9P+K~Iz7^jS&"xz륤6ưh黊e 6ļprF5 +J* \I }g߁̌ÈUCPheh V3/3é* Ҷ<Z0M=A"i$4.(QUeƉᎿ=߾4MŇ93Lqnu;J|Mk}IYrLDك(YEWՄuxWZiw|*k T,"2FOvVteZD}S\d6ঌ*LyQmNHOaalѦ:^6۲Dy:R ښnw6UM"sFTέ$izy'r7e] +r¯q#&"lSɔ`|5ucQƹraO1T2ejb(uI7iΡǕZ\$9@'֚/%% `׶ |i9He%U Dž;HESIOq3A}ttȷ#(!~HҭTkH BDZHL6!Gb,u+UjJ!*mKRVbu)B(A#"$B hkhMID(J0;*]B*MW5?yTM\]iK)H3CnGTXU~Hvuk,3 Le-tƇ|-Tr6P/7qb- ?H~{g_3V+>o '`pooWj;^^JJ vZ7;$#U7\)lۆaY'լS[2. 2g6}q",+%' &u hyJ*qIʦ4ZS5f4QXR5}(;~&"Ⱥ zIryuQBnf(txIVp[MNɒJ1ޠ0ήn tSy}t}O$ɷ:Dcm]=6]t3f! R_P!<a>]Z|č vcR,yh!qc(&D)1Iwwm/"8VxF k(XBwTkX^8j!TZXKnBHI)UQyZxܲ,]8 HeXb|7$LpuK]ko_~' ~C()әJѨ55!B)g shjEKVHPԈBHtæCI4V^G.? ȑ,mbr.sS̮#_^h &E^.9v|yZ ae na9dֵ/_[7&D4ʒ]ӒJm*QJ1#<#@#ujC eaŘ"Rn%_X.\XҎ)3yY<#*8I$SK8s&vՎik-.Ĩ_WJ{v#*\T{^b6d) ;zDp٤%Ky6hjC \:"=>'9󇿹L Q07p#GJ6{;^)3M#׾IDATEo6痷OՖ>$ iGuM,dcpŊ#vU. M#9ÈD/X1ȈNT<Ĕgae5֍d)UT MM9#ب.xB /lI2jKt'cj֙WȲ!N ic`>]D=,"1,uBnj0q] l%y>CQ²dCuniudMhkhUצ⺮(oY$re=^@=x3PZdr+$HLmL ۾2\&I,nGJP$\HH<"KW(#J Dʲ:Τ\y5xwDU6 yX~uYQ2auK݁MggR E M]ל_YGԊw] V[)rgˌ|tf8-ʌwjp]N` ^&e#Gl`8nGݱry:# 8P7(RVQ)ܡ7S^Il(H|b׷Lm#$y&ƙO[~ qE[Rqlhef?i83o "& 败T̲a]&s8/3Ͽ}e 6b}h%Y!l}Ӣ.P\V ZV!ց[{r6bZ>kHlwXx'mOƙ5z'pO1Nc-([ ׭"qtH6V)x2nWÑaf3(OOT ew=knvXAdÞ;Vb+z@mˁo_\0M0}#OlV>yd11,C DmJ``YWPoZȷ%Tʐv\_QM1bHSe^54cfZLkɲ'.+#EBxЊo q,vt kE7ȜE'sT;|3'6i"DPS\eh3wnH"sf&稺- "'r| ݆,wgi^ˌ^oTI cuٳL+5݁ݦ;w}᷷WDž{ Y!T!|ǭ3$ݞ/o˙(@YKZ#qDѺd]\Ap>Sb uՊ>RbB2c® ۦBR` ˄4iZ#4HpRFYKcjebxyzbs80#UP5=fC a?w?积 aǑ{5!PY4!|1@.&Ʋ|@ Z銭 ~Kpa2P=u\.\FrQ@3ʥ'z*x}(H1Q[qaw￾WW ybl6[r,TLRb%d@u\Wq/뼔zyާ@S4Hbxp&DҧJo_)F1H7| ;o|KEJs[\ p( T:!aT1N@ tVP`S > b$J[r\bFjuΥND9D4yu4M3V$*q0R"Tb7[} FgO!ïᡱ Rh)d29-yF&3+캞aYB0ώ Z H+$(]l"nC$I=R@|9%{-P AǠYJ EIm[-8a߇WP^T,uB{@Zb,DYȹ eR,2CrD ,6TUڶ͝ҔuUn^}d)!bM"n"s(ˆJ '1X#߁ƪƪh-nӔʳg+WLJż.%m[U?!PbMDYRa K,g [Ipm-˲PM[Rf5km8,(YrVjFkݞo!)ޖѱvL&s k O ?\X#x~eY8[eC_iaOeO<n4ZbEsㅾە%ZW?Oʖ @!@V֊8O[& L?G ++2XIZu]ג[uU,,l]n5mnR2SBQqP^$MwJ% m8]i@Yϸt/#,@/"^6ݡ$eX,^Vʇ-uض h$>黊8{_&~},bs9O+Vɝ¶ШQPtMM]oX.4idbivϾiGzg%jdhj )ؔ3~h#ش]#UÂ6l*1`` *49ҍ^BXzIU|RWIR-lI|3!vYdFg.-\`TZS JTDŀ&~T| UƼz8s'C&ɰHIJ*i@!E+ҸIiAHV58]Y@oyk4:xT8RkXTXhI 7-Tl/mMj?Lüztz۳8t-u{G8^uEgNRh/hDF0R+xIRS g*kbvX)Pyf3,㕠̙~tZ#Nmںc5aΘz`++Z*ʒB9FZȐy+D/3w4'VPt~T] #;hj[ePE^)&銕`!yC%)LeAnچT+C ZfYW44_YO4cg ͦԸ"K'TjO{.ߞ0}U.),ׁn1}\`w@<4hn] J6?}tb\fG,aNؾc@TVLa91+~Ku\^I .Φ.6Ht ^glh[#Qlx'):ʒ[b 3-I}gpkY/3~~!ȺF:1uE鹌kl֐ %0e9b".+ w˥ w{PáG]?3ߞ4b]#/,'Faݦ簹G+ڔzۻZ&8-W--mMB R,63/fTRT{V׬>Rd- Rvݶ,vuuTi)q4*.3 -=un`;J ua?pY=hѢǕԠmu3uJX+3Z(6\*qmۖj,g {->)/LC)p)Ex11|݆J)R:JN[ձ 9BY&[I3%TҎ,xk\"|II:/D SWG_a3֒Byf}WU}\__~Wb,4Kٲoڰ7?1EB %/WPT+4EǏ)2,3vaEX )݂ђy;:ԊݞoAK0fL mM"h"+I2DKa-̚WőWz#kŲ4 2/# 2UW.'N/Gz iz -Xv[ufrRy%j"H j)$Л-!G>dM,xw;Q/T"r(SYLV'RLu4ObDjKHWAlj??\ٷe83ue8+F(tp)^^!C벒}"Bn,/ol*Kq\_}#S޺X@XC2(j\X.#]a D3@Vx.)\`xURLglr^WئC7pjMs fڲiv8i*Kݴ౵ܞoϯtVRY5.W*]qr<_:>~lNݶ6_Be6,=?3y?]I߳"ge]$q=¨c#mGk"dI Dx!2‚Z3XArUXC%# du(9AF*8s]x=@hL|a9|xbQvzyG+2O?1;GkyX*v3dˑuRb{8p~;SDۥVhM $Jp9?eN)MML ?H$nC״d%dbZ p @"I$+Jí4ά~9/}NRUK`GnVMl}1& K SżLXS?䌮$>?N>x\%>dLk5e,ieX.VJtVu-E))g|1e"5Z r,nv D#nRɩԱT P"%%5[8 W*exZ5L4Ti2aq);q|?E­Lr1~kBkd0MHBG]뚃5/ .=k(ˑnxW3FJ$RB#6.H vw]9j fpr_t!D⮻ |"@;%DeU-iLDDŷ˄MRd ф$Qa@,WBᖑ`ngm3pS1?|jǯW&q1qY#->bv+mB Y(?RMġ3E kH$xnT %Yh+mmq!ba <m TFr*9cH13 iPJD_j57eoF=QgR"FJ7T& "B*\XoOcLBOwKX ԍÕsf%FkԤJ*cޤ(D% K D\ !S(sVKlXL* >$ MJSBkZ=y1$iȩpȷBZP)#afnD1Ygv^8pB :[֢Fat.4up *yD n^Ɖމ33}rCr,%!ko`4YHYϞ:&Ae>DÁ H"$+w>XU(6HcAR[͗~ar5mek5 E1#-i@B2$HJm fviksn]<Jp:#R] jRt|}~Ft4B'GzPUˎa9+K,{Ř [CH;2 ")`5p\&ǻ:tV<ۻ;rfӁ?lN'6-o3a|+!5B<)Tmn_+5$$Ot0 C*CegיEZc4WR\JBF ёrCχ-Bx_H7"dSeN' ۺaq.41? 6jڜRe]ݣ̩j"&l)8Ԓ edrQAN ~"PpD[#oۍaeZŲIQapH[Y\*oJ"8fw ŸԜQ<s*V5:Hѳ%3F4DBތ~wbbg49fзFc5<$%9T& nb<ゔHd(Rنm3 1MԺhsyOLŗJ YIע)p޳N INo6dʔˉHePRs%i^he4ѴlZWzz@PJJgYd$w+w۞ ,wi!N *dz[>V=~vLv*LJ[m~!Pt*unW˂ )Uџ.8ۆ9>p|zz]Nd de-e8<X5xJְ+|>1.,{>CS`@2"۶y,ga5B s9/]2^HpFV]]~>0-3SaaߵpǯO\!C";!z^8m4V'*U^ciaYW[,K41%P#vɍ[X2d9_/Ep3K,)$ɍ%,h!з?mH@d23ꖺ%YC? n{f bL{?iF# s|ݦ#L&q.'Nauv&1˅0&KCV4@HN>>yYCk{=A/<_=y|c\_yݶm{|yF◟2\/<4Nt5R`h%ICw]g3Q+p\SQ~O83)Ffȩpm܌=XXȒ:sj!u_ViF}Qi7pw 28Faa{`V#K8!ei[޼ ?qC@ي71{:O g~?~;̏>m!:a[ױDo0iM'ۣD/g&ȌCH ?PyulyZWh#cLfڦi hjՔČ MK݆jK| ~_~k 8Xm0("i#^$lLê2>akօ!yM5LLo$nET| jw3!BҊ%lQ{,'Q1L#^x."V *2ۺ,lɐCXsy*)1Jb *˥oVL`BٯxYcBVr*/O!鷸i֖ҭ(%X Irhs0^r-F5LOE͛vh<[$Zh{O% .M˗ PRp]/r4KcI ʭ,FbVuy0:NƁNhb`6֠le&]FTWa+8 τ'´\B|o;@ Ŀ܆ˊF"6(2k q:T!7;?i^P@j7/d6 2SrI2-';\ {nxB Ȳ:vRYLU. 6K݆$DUa~ǿuq\dZ2\Tͦg'u! ]ߑbrI꺢2?|a|$ O !Enx^/3U`-9Ux=+?relp(82.6u9́(%m[q\P6_ƈ5,bKݪӢH6GZ1Y Odɋ:DgF3RKalj=#Y).3f/y.%2tẺOzZ??=bPBr#݆g 1/iE I\'H m5 '̎c`2'yXy6 !DzW~ZK7OUH}e&P ٗJ̕#FITmCpeBeInգsf_c ЦFP9u]`XRVs̀(r.Bkn)I5@}̚¯*u]rntc lSLcq7;x=*#)[(_xt1;fB,2)2*ĭ伣-a0&6%E7ZrxHRwfi֘Y:}APO癦)S 1E"!%pb8@ --g (˦q_0U5TF||"(L`z+` b}{sQw-9n˿~$:pP[ u$ +}Y|\xӖۻ|=*JZi2覄̖ y;f]ctLu]T2\PYӷ5~k9ܙ~ky=O,clݡhA~< ёSzd^h =2w=ŰAdSiJTPV@m;RP P{.vl*emgn[*H*Ieh}<ǻq߷ll"ׂ a]g I3=byL4,J:A&KWTd1J TUʹޡS,,0wܠ!peV-6v9Z˺k)۰L IL{^J!eIdY<9027lU54jǑn*Ԋ#{Mw̾ LKbta$!Oգ:.F.#!0,>$]eYC75Ͷ;DHac  nHfr_? ,AxPDd͐B agHy^Yc K1 <VEea+hk"ZB)xj%$BXDVJWȦLˊBR`AxM3d_&[o\&r%if5 *31e8:S:+LXBCDƄAEA8-@d^'bL3.}0R=eo 15!g @2륰,(Qi HDU6!gFSiAW#Z }|V%6mᑻfIg<}ֆaa{6&d8^Ht|a&x8-aǰ:0 ȗ_C\3-޿jjR($2L2nrB`Oq>^Ne_"hvעt~Ew-;ΫfluMcxGڎY4o[|\@EMkd>%Դ)I1ƻJѓhSn@,Df"fO >e!2VHZne9^"a׿B+>:~ggTܿyuetۀ#ӉgqDjgÅ/,)ɤ82O3;Qpf_yDW׬sW|}*O9~z%O=!G2s^ =fW`y:S+w ]b{-QkNˊ0t{.}`1A*m>x TN 3s09E&{0ǒȲLLar=ovx_7ܲ/W '"oԛHdְlJaۊRȔ.~iZ߼))Ӵ4AF(Uno'|`^Jo)$!JX+\lpZkx.6O2Qzj]aFmLi/Tj wĔoɒ-Tf 1|WЯޕo$rJ,%w&ͷT&*LJ? J:JOHRΌDL+!1pv5G|LB-3>8D7ý.I/b&|(, X)P!xڶt%R;V kyo;hu+_|Ư7oJEA[7!7N )0 rz[^_O-d@a&y9_h3ZCBtxO6<6ꘖ U[ŘLVF!Kiv="Ea뗑yfnI0.}|DDgO8̌nQZ&kخAg|y~HNiIH ָ1S1֜JBe%L˅qesyeE q ˼д-__\gF//dSr.f,M-nD wM [\-QkY'oSJ*mNY|H&(CW=!ƲpP$Ɣ3OR.n^q,"B~!Ӽ(?9O !0JQ݀)b- zQau.*1s+[Q Ҡp򭊻gBDi(C]5Tu qJYսղ `%L701 RTwR;^J \\.gԚXokpe9N˙<Gn2W jM`&?ʴ:-[.21 uyx϶ eBbfݸ)x-5'f73˕g>~BVͶ1۾#@eƱT@֬1-%Dg]<__,q(USt.‚M~+c]Cd\/WRغHS*H 0 ωqWiTR~/NIZ q dX#}GVŬl{{M$p|:cDaȜ鴧\!YX}5h+qY4|<}ok~yWnBkӌd~=Kf=Q*9D>yx!#UHIDZqkHͼNwlěh-*@rnTx)Hȩo8QVsv˜T<}וxP[tuD׏|_ܽaɕ bYwL˄ mqz:r: 3rc6q qy>$M+mhv;/,#"cdx2 TtU^W4Yp IiA׷oQoY$ l-1 Z4]MeCp4n.2 ޔdV~O5\a)LnCj?1%RN7̙>8V8)kkn߽++kc OOOe8 $ @Y)Iu\JdRr\'R,ɍq]ɦT=ZudT?;R7 ejU A&ee Aa ݦgNTtF #wu&6[3QF:Dмt|xYM84 Tfk^0_ $Mpz*y= v pm1~z^XDžpH[+jiz8 % 1^Gj)IZ!ng5xT\eNQG6xtth 1"mwLA(M%MiEE6eE8`qV5܈6$6R#Itʡ$<{AHQKC#1{P'=ATC~ZUbnj[IEbAIKhYrqFVКaRbB}[sN!?Bb 4Zi*iJcBi'́JV(I[X hfh]cٳ i!6tB|D!Ѷ2,#ϟHmG-y*KSw=p(|;ݎG8__˿+_?V*˕*Ɨ2I %!EЌJ 7w< dm)2:ȖGe!Dc1]C͖ϯ'׏Ⱥ%KY"$Kx: l #Wa7fxWP !B0ВӂȏNR 8c]C[hI ÊK \ RbI )asXe"#g.Wf %39 bX fUWLe 磪Hp{hXAiK҆tA@wێ1hD$/__\ |nO @ʨ ~c*6|ɉ- 0. }eonx:´њ*&zry0E~}ðLo2vdIH: eEXIr3'ieY}YZ0gX;;yoTVnK{/1:Nupׁ˧Ϩ0uƏo_YۢN;G(H֘Jw5BmhږGZnzgYuf@ۚ8>2H+I|HS)_?#˜o|q'TL\ ޭ u˗r DhԆ*5sJm_?o{bWo9-9FRL#+6;)׆ 1R#DfI9Pg蕦5JY$")/XںTD1UQSe2N3PRcvK};ĪX[s\ 1?a17o V)ӕ븐SyW?`J#Z)p2\N7WOg*RJJUiڪB!!A ) (L)1H0^6Vl6[#ӲYpGs!8\bq-' pX=T$7V %-T9,~ޣ bi ,'L% ҄ɷHF_j bζ(2+/HR.Z9.JKCV\X1&μ_H4!_b2L-MHJ_IjA]U4* dcI1SW-wwXUTFS%TLÈ@ovya LPJ.y jMxDX$aO2&Q2.$2sm?ݣ-YJ(*0 g*yLçL7(9/PBfcqByӅnFqxwĄV[uE1b${x#>JJXU22am9/>\YDd(OdӴ(Uxb]ׅy)qpɱd傏i5_y>>Ie ){Om)e9/N$Î5xNÅH&ĚOå RV1JS7 Z:3Sׁ^ZHua\=u+E]ݮF -;H%V{ÊR/+Yu<ݖKdpwh1vfNOoHִ!o{.;~x#-7Mz]ư( FH B#ds%͐s )?Ҥtz ӑgbQye[b J@ᯗ陗۠-|D$:\g|2da$ yQ֖n+Il#|J,#QWsƉe_U >eTeSkʻÆZ~'*S{w@4 W3/#uגĿ~ߎ/;[sDVmgisbGD]f$dK`'%oc`),H&n7sx2K*u1bХZBƻ'DoHBaӕ8ͼ~3_܌y!7N m5 #nxy}¦o~&'566X#I)RuA7jڮ#@]x;#&iƇD٠Bê+s[!`u+:d1ɹRk(SB a4yn[%BJr J@ܪdL#2 ֍Q&m[Rh l>̙a.M͆T￳0)Ɏ"ICn%]![@M!b斈V=V3-B0/8@eJhk(J}7mAs[bí+)i fXzB #ޕcR3\/RrR.D c w @ӶJ)6'.zi TI*%d h%ش ;.ߏG^N+.=m7&]ǯ_VGLr6oA"613kɐ;ߏ\5鲲Ն>>Je,Z  KsE8OW7:4ae $Lr=x E6 Q &peZ2e~3K|>;jII_~}fJŔ5e!DGA%ǦmR,Puzzz!e0B5He<.%YV ue1:0-C|+AD-n!L#$ h}IQ@I$fe$J#)"Vn{ZG\:1dI|qK'!1gS̓߆R ouot3'"ײ%ɛ3Z}e)ce)%7 X:ئ& QȾ)hmuUڅH-%S1'5KU=UY.4ZYnp2sN]{[ۊ*r*Ly-\Zy<0R0,S9P8YiJFsݡk!'mmctȜ?2RFY07z6M/)~ql UeiyǯTu3˚-9e]9e#% w{͖~t2TMW~v{o0_^'vKV5Uu}a) Y̗BŔߓB`)ְ-mL#bN+>HQk6 @EE]SU(IWz: m8]Fm.$$ߑL8O[=)De寯\ͦ~xB'Q+^^NlbAa]GGZA ϴife) CBi޾{/gh vCW'6<>bEoVXNG~?pYTҦ&΂7&.7/<]e)H={z2Rka2u$,K,78*v COrM_L ]Eְ)}cg:^//eqGp/)Fw\y<K$DbM1M#ٯh%Jm%}VSV0Yel:4RjTZJ[I͎;-FL-Ji_/}aN m?So"h$!ab+Ï۷Egu9OnOW\ Xy{#+Ň'}H /Mvskӑ0/?s_7N3QD0)^gZ!r|b9p|Z+5u\S!Xe6ؒJZGqAwVvO!>tePN"6؂rvF2:HLݣ 2<#iTfid M|!Hm yЊrd []Sw;be0$:)YS$LehRKqaKD1q3R3Ӓe]Oj[R3-%3aZΡF͘JK5&kME--$n i")˂-?w|x={JD4VB:>-R) A oxD!Q[N e-]VʲDOِ|bVy!Lj[ڪR:O?3T "WVwav, DgzT(b,"*Xv[Yw?|,Kd<+ i[ݖpe$}r^qBWp8'|q~m#n-9Šs[$W֖NK̳O<=v>¬b9HS-تϦӅ~E75nǗ|k=2"<9e49ҌpT]c`x")C{I*,PB -cpeum k`Lfӳ˿3|ypY |s~=rgl 姟FSib 3y":a5* >(w?]`].I( "eG$B(H֕0+'v-˕|(Cm33~ ˕y (ߘ2Ӳt% $[*t9Ne MS#sFqα{2T6DE$w)[9W"bK)"R6b][BTu,^gq<K1#R;Ǵ~Kc0x-R=?jO9twF3@k{KP'RH[=$Ԅ\[R JZW#-U"RRFrSQԙLa*fڪ"#YgOm,r´:^NoIlpĻ7w׆3OK(G ۷=呮L1G/?LNM[El%7\V}<|<ӯ%ѱ}|<_mX Ju|=!~ADLede >gVZQIYR*P4,(#_u5Hζ";M,S1r)lei6a%xV/3m~e#` +Ħ*Rc+r󌰖%xІ",k 9x|,r %ʞ[S~^)m.LdQZJJ{[B 28:ʐ閎~SY񩖵 m8mhWGQ滽ېDα0[wGm=ͤohNWtdR23Ƿy=bny=zO䘹^ۺRݍW*؂V}4ƒd]E3J[BXk H6b_"fjВRb1EE]H ۀ. nuǒޗ$u]zαl OyT*2ت_VZS13CJmwe<&^p>5̮|ÂFؘ_hmj&岶%zs >ހ |~=n95>p>9OOVb]qzr﷤ mہUZirxw DȒ[$\D΂݂k 1v-t%Lv*Biږg -ۊ8U4+zt0{҂xs4m:AkpL;]V5ʡ> /MU`-3욞iJ|DmvO @Wq"i2FVkRhIr\4 }#`Y{x6cDhlu +VW\gx^hm[ }ŶU\^~'O R ?Y>][چgX*Rt0g5M H¡븞K<[\d [X-WJ4£Dw-2rUS)npXg뙤dYab`μ*Pb׶|>/)vC+.g8_8ܽ ]?s*ҺlǪ+T>?eB7R 1Ľ6f3?0U88B^i7xydK>FLp ^Do6;tNϐyeK:cac[ef\.TV28%ӊ׊9|Q".3heFO?~xZ$>h[xw4 ?!8X,: `ce'ea L1%u"nKմ 4-VS!Xm`*wi+F7o[>}]>ܳ,+eB _?~-&~x L߲\p@ݞBUWd.m4Ot<%)>5sdwHF7-qqx!]>7 5yy==" o׉~O!`XX>}fce8BĄ m.ax`NsT?Ç_i剸hm0ƒ}$Ȟyy#SǑۡ஫͜=8,em_#}y.+2,~ݛ4ǟH O{+7ݢb/ńֆ4{{y\X+`x=i,8^ KD(AUIGDUYt( 9Rd)2VM!ïe|-vï_9ϞH1rۡꚁmkH%\/DuߑSd\&=h%DGv)gqD+DL[E֡$MݰT#RH@ ,32 e8SRXCy9>b 4TMLx Mݱ:͎e GiPq74MX[n}X!6%R=k20iL̩ F&JqWx&:K,Ot(I"F2wEm>/ uA;TQrm59:HY,/{JѓHT|Io\1D"I.$)P.*̭ +J[%ܼ74mO m4)YS7P"HXD4mq`m[^Gwe6^.'T]\Kft˧ưLg^_VM˾y4SoA"$m.y#?ٿ0N nSF _MՐb"%4yw|y:rҍa:/__9&`i ;QRӍCJTM,\P^{)zD.n\nB)!Q)]*9@,ύG4~g.}Keq7R&Db^W Iպpo`x0ZCPR\-cɰG`M]$*Z֕X$<s$$4BJ"b(siqZnEb- P!t4{RO jpVVTAgF+*Aڊ,#@ʖ8fĤYkDkizK 64FҪ~z]e63lw ?vAT-Q"ƕq\^I}N0Lˏlﮬ^p:+ΧU=T52m9^ݖC}]癟H^^&^x@QHi8c3q>"C:cmheŸǻw4m\WO$8uݙ(;LgH OʴfY&WL3[śN=l`gkR{ZȺ"bxPXēL-:>II-akk~2ED nsNgؚtH4fC<ǔun}̬'ge.qCCa>nh̖}GI<1'Њ0씅he lWITBpd2Q r6 1%Z#]ۓuGou϶Lh$i1-~e#ֶlwoHB CiдuϦݒbmV7B] s,0LDTuOitԶ/˅?!6txE̦iش;bP(;HO/{e4)֦9-o6=u~{;_~cZc'%SL޳XR.izȣQ^/35a*46-i82^'1$ 5/j7H7 ȑ3h +?=]߲^x"Zbݽ5^+(J^L=iu§y#Hkh۷eX. DHX h?"e&_9lz[uG_~f HuBIik~1=Nĵl]_?W_ <<T eV6UMݵ$c9;Jì"u_35*lqd ۮ?w"k'x)cLU:L]qDL.rFY5,!r\y |8O=DUP[VʲyHvGc+~+)4;4MXӌȊr CN7y|CזͼuT1UEw9_N4ME5YzZcp0_dmq91{AN/L̥Fw^9q. ~wG[H5ZI40F#)\&cꆀ$i]jzJCVJͰSbqkI', )%y&ݞR"ĀBkBw[*!QB*&_/:};t \48E`:yI+khl}Hmnts[UA d$qcBli95",y._YK4NUuњRh!r - JӟDӴP9R-+FyE+\%$Os$QuGVUI a$Ddoߘ֑zwX]_X.BwF>>}3j1¼4MGSw%4(Ue q>okąu3"2\-dk]J4MIօe|c;BNjxc*X։n euUF.I2w,.c& ]v"Y<3iR[]pR8#mm2{>uzey-ҘP& ?o#Am2OG@J+MU/y%lCI;酶JZl hX4-He0k+aTF>jBQљov{^_/Cϒ;o: 2 DO=SI{aALE%:EGiql* {bXb.I9`bfe$ţB-9Ē5ZWq"-[ag%MfzDVeC]htMPʂ)J@TXU!d#q/ZY_ V-O ׁmy9O+o\Z8 UTmhfXG,ڐB +3uلDTM̉quh% |)T$)HX=ma q%yI+օ7Vu8손D#-<>8x=mC쩻 %+&)Zҕ $DXTMEUa 5b l=i ۖyq'-XrDjE+`[C90]:E> mZr5`kK,Ռ $:a7{^~L6!xH,]^na+&6okF?vO ?֭M~#=yƕv:M5MUF 1Ը*hhp+a̽U>+=wͮ)3e]#HVd|q~O۾!njX0 D*1n@O'STպdiR?ByG5E'"GH?"bQTDszdQb&Iڰ yxEA! KH( w:3x5.;ضͫ;Z GdnF,ΏCTt\{0 pnɳǧP.x%PBbYqgv l]hjx,W#)LF{|͒0LL6EWtS@ Z+67k%'VW[)}z~8=$tHD!US a<߂Ryg}x|"/4?h߼A|_~?`8 {n2Ogֹb8ۓ 6%e "WME?+N3n #}?P7 GbSӆkSۙ( #Z%L%gI#?B2dK.L2"5L6ɱ+\D$Bgl $uD<+"dkB3OOV^W72g3JJFQ&R6PeJDJ#8Ms;s٬2vNZ44 ]O{]eި;Gy6ƬMFSfǎqN%&#v[ljmvݮeQe~*kNY3m!+N@ Kw`=*,Z֕0&BY0OUA;a2LՂ`9 C!5e89t:B.]<1l ;+PB0TnKoFwCDY;]HA(+c fF)ƉɧtʸJ}p%&/< "YBLaJ2Sa8CB˽)[1F:w aǘZKPhУ.#R(BZ@'~$CΔ#1Jg9M]s>(*9_bz逓!u:|B(Af.](.TNpwD, aEOTrc$jZ]8\JA0M)*hSKu}QZIdRAHA +PyBt1p{jDB$YD3ԷxfBqfW%Lް6ܙUYdM19j|:)%3>:Lc1cJH֙aPT@G8=1$\2C#$X=Z:BqqgAkqv4gvtS:\T\^|_Ïc;]$6tM={1 Ҟw(<ឬ)h%EC0Os^C2 aX|d\o 'g'L^p=cՒŻ#~rFY{p݁ܶ)>N4JyVkdbh0@81!2^* 6Ge:͟2v3<}́~bv|x>{mQd{5Ov?;Z#.hO~5ŲBfAy:9?N&wGGE@1Ues6X#eS8Oi eape>=Vve}6mʂ8r.g:B zL B3D ť>yhL[FLd6FU%ՊŢݛ(\d"2 6ny=zOG2Z0[ #\RsBdyrHpŽlRCtZjΨ2-.v< bs겄>0  F)M2/ t9Ҫ'$TU! )B₣ZdžKT)y?+>.x#EE)*2?_10iW ;ùMqs #>Fibr4KAMJɑ3OӅݤK}RrIĐZi~G!/q_3H)v1YDzNitOs6(KF7&6$ЄMYe/_)Z }O׽S7O9ӟ~GΓEmp) mwBe9O;٬w ^ڮx-Ec8 WK7OZKUhY@45SjPBBL!TfՒܮjư];27W2.5Fd~f3uR^w08^1&{ b%~T/.9R_{c^%.HL_g/ܦbJ^3ZkIqν4yĴq9G{n_\Q$V8ON'e1/KD16ntApt3W&2rl9"CN&*iq5hc/>狫[n6H P@8Du@OO~fm!($;'g,V1L^Uȋjx4d1VtD؈H0hVVTgfpsĔ5gBe\Ւ| h}S4g .T̀^5ǖM^.JF(I~~QeX%J)=|gc4#&MP7,REv#TTՒ8{' Sl87S5>r]L^ؓ)w#FIĘH=b?MWaiAuYUGe5˺Fk=RFJh(5MsԳZ.xn #OO#nϻw5G*J`i0^0u>,2x~W3Psgb?̇S7Tex˚OyG0y (x~7x~>agudL+1:=IגfLO;Í "튱ocE#N@`R *jꊱsd nq-Pfxziج6bd;w,VT՚4%(mw* {G3#JD6ڤl{nX.,f450Ȥ4Z +2D]VB >q>=P(02D7#t#rZ ĺznNf3 Eͮ{$/sDD{;cTFZB8?%7x;"3=;0O3fuMjXOgl=Lfv0e^<}Έ"xjfXMYQ%G3?8 Y"YLW.js;addMA7M;45+کЂ멪&K.iТ0M\]384TJ!lZO\g\d~ѣLHzD^0&(c4CrM84!I8 s,cY>GD֌}ys FeQЏ=zAڮK`{}/IKeg,DjNd8elbnJ op'ؼs( yi(<0#s\%3MUY&yNU6hy|~&8jbw8& 5!xs/V$%Tu蓮\>}u- Giv)-R\k{Pt6 C߳Zg5]N<,#DȌL8ҔuUĂi0v/Igg4f,皟ch#MO׮e$ל /w'dNqxYb*>!ԷdE:Z_Jh2C\2cjxu!1ivi`-YQL|yֲ S `ӵ?9,FHV"<{3_K1,C)!=zE4p<`=Q FhY1M#Qo<3a( b-5RF2a- F7gI oB^Jt3yU'9R¥ACO %HSxr"ȬaϦ*6G۫ Ch[~|[h(uɶ|o+yD L#U YSŤT{z;YņτārbQ {^lYSA/J0 玪PÙ2T[v;~~1MRn3IkeTlo8$EphhS`Zz)8"z9F0 Ȳdi2YlJv8@2,mri1zP*(?< f `Ii,f&Вɏ陧1"RW \|XosG(.2f9þ'Z(%asb;\-$>*ƋA=%iC1ZWܰo;]k;LYqYhDY,KuUPU%cl-γ4wn) )]7 qCY2\~W#7ˆy3q*Ҧʏ3(L^rGf [w9en,S<+)Z8 c:Bp201OXSl<Jǔ „̶ ! -qvy9 qfp3x "SM5S7Y{!/VTޱ@wi8O 8 ipSnt +#W9ȘGK[Lx=5錴.#*P"e:,{v#bI,o1k8urږeE"bL ʚ;Vdvd-;,ADJM#F|#sG7ZNǖiB (yn LCOt2f>YPd>IܟxW<}gnÜ0JvǞeJb㎬!L<<~Y.Ɍ ($͂ގ ƒCGNdn؟[z@cÎiM|P՝:Ԍo4YdyԂ4<3 *X4q-3(ȫ0C%83OR)7t`i#.xvϞ*O艉j,l4%DR2o-Y&XWO;9R.L^}'Z7qvSJ-8'%Osr+=MV؏6欯UatD؝("dgwN=-sKŊ; %TR1H.Hy0" 0*jL)tHBNh~o1&rY/)&V OOHQȈZi>]1+pn!?rwwɩnypvXfVu|( 2ÞvTur}w?%Q1Bv >o`s\Ze3MeQډipVvf|b("FgQ"Q"`fBi>G, e{, 3v+BH8׹E$&Ks BpA:myB* "ES)xexޓvJRaLpc(Q9}?Պa?J؟w1m/<0*q. &˘%d39~6$'"@m2 t@-:3O'u\]m;YK/uȼ bGO@Պ7oڑ\tU2ٙ>Bz'Ng5}|, V-jig92i*2ف \i6ro (׊św<_{C3_}0ݷL12NKLSZA% әмkʢN"2 '{5<3 `2Dl4% 1f҄~N-Mjx:08jT'0e!M4S5u\ (u=:O YjNep$swT*G)5FLF4))W/szeY@BEQ0!/ R_EϜ(S[i۶&NgO\'|$smG,Χ_Ƌ9O/]6LӌBZ"9b"fxFZ&'s()E\H_^E]azx_F޾bb^|W[(V0#sbe9!5% xq* ˫ Qmj75,#Lq2*)vП9vgDbOj0جy 7Ykנs|YqөEG3WYJvAS,x~~DtÑi*7K~wq],X)-k.˻b0r(L -zjE(rts: 2TJvg>[ڱ'\v*qsP&G͞0TZSglQaFGe.9D́ԊjfEgK5ERgN4_~)~Jҷ"oYM>Z۵ibXRyΎrM,0Ud=z`cܶ7YuqW8yh)3 ӡDFV?x &?+z7aǑk)00tn9w\moQ"yj$ӂz}AdY7Ӏp H 4,o0s0=㙪\03*YFHYxsW"G (x\' bY!'_ؐgJsOUtԟF~<4&EPLxD@E`} D$(z}K; · 0 ! fPe%Ypu\xf(plְ3jujŢgw|,Ab#fZ o^z<Ä %,3#X6x%Vh2*&HE7 is 0DVeI>NmK^,o6L; )dQ0#Г!P}7:Ep>hgiM*q3,dԟ9N0>E2WzRJsj^Z>֩Zs.Es"("5Rb8K*E=>.2y@lvMHfJy<5 A?N8%!fKyiDi6qBfG-4fͱٟ[N퀐 :G~7Hg\_-Jp{So”KNǞEsgKf ޽jlgV YVn"R)b,+Ljv Vu2/x>OǖʹڮX6 hi&EԆ#0q&d!W9yn *gLk*rFrǁ8̩q(sCS$vg;;9o^ Aa4wm7b]ώCfȴfώAH454-mgG "$7,LxS\Z,Khdfy<8KWVb #+m[|2GDH;|(pLYۖ=,&E8cj8tgq$ e22{C;2 w{Nޤ)} Ӛ(YU jkܽ+~rW-=1̍\]<히`YI>ΔH|k~edY%t`(Wz|?}TyɇÞk 뺤5:D瘄1p3{z|4s l2wmRޔPfHc6+0a2I|\ *p Ԋ Ramdt2<r& &K:s]V|< _+gL.]i8.HN 2&P> !sXg.REbSVe0ͩPDT 5Cτ=I!A KSRTAcL옘B99c 5{<_#,Y^e5ԡQ5rpLqd2g\m8wu;߼(ybޓ5 M~mvKe2}OVd5O~͚7o^ǿ2˘dMY4~Αeuw(4WMEz22<"(ٔES<#U}M#/3b4R38uV+>;E3ESrwdFi?re,_;m{Ff~i^mk/wȏ^oN#}?ab%-', ]<)M "}y!10Kn%rU2&T bLX:DsOP]UNSOW. +\?Ō;QPzٶLOτ"cb@Od2۵,*3E$Zl8ȄkRpxxFs{03Ś0 1OdZ$&v$/bGDїfyLɌA3RR"AíeS1Ge&yN^ԗ&HmPZR4LJ!0Mc4BΑv)FtFPF3EB#GgynP*9Ôخ*J1͈*CQ1mlSLO(#92+!F\ #*:AgWg4\>!PKChrsi|Ђ'窾|xJh2MyJËs#,*O%(U)rKzx8c:Pg3B+ʬ`fG>Lƀa E#U]$AH9Y'(Y>?9q?Q-V4M*3|zGcײ\bS&AtQe%=!'s^ȩ=qh#4<&6MóӉnXT9hOs՟|WAp>M(~I))Yp2AQ^C?"3<3fHĢԗBn"@a42 3MËK !x"O|>쳵T=UU Z&hC; i&{8]Z.%Z,yliQݜDR4sűxPk\k4EŻ[$) 'Uz)~m2RLcgSzl L]L(͂ND!]eh%rJiFi'0(S+vm'UMQH FZn功 S+C*T YG^_1F ɸoϔ*GF"_&eUrkbi)Y<<ܣJ.y{2"Jw-uSBdڤK ;&HNsyXnu)(i l64`y{|vg4eL2;!"ǍPi2ZRi[T8Ȳ`-"(V5 ,~CL2#2ug2%ɋ]<12~ f*@[ER3 =E,2BPȱǞ4͂[MnR&YjtpSKJ9ОйnFѲ,g; ZLIp=MZ tBFFfv`?[ȷ42F`GN1ˌqi"xKYTJQ "#//m 1bre #Z&.RKCjY#bC^6lN=yUnqA K9GIIn bA"ӑ(3*]SKR0)VD-/\,QFj "!BAe|{vnA'-|y ;DobF-<өmwl^Q5JfǁԣCg9Ŀ?c ޾(2wDOYһI5]'?YTF-9Uq;,"y5WWvNLvjdrP Gưl[Y0xpqZDa-ZelV ݒ Khe2|OO1JP);]$O#Rkv{l H&8َC_\MV0*T& iMSttHd,+H=Urd{2 9B$Eq/.RY&A,@TUG¦ g-n7ω#%R@f 5qL^ 6Wksix2xiBt(g-uOxs -Y4q ]晾;i e2<<+ͫ[N1{p5oޱo[:8t-e];?ɪPW'Z(VǺwoZoYU O{,t>G<3QXEIlcyNجKJ s?ݳz{g@{8߱}uGXt= ch4<}zUbD-vTez8Y ܱkO8F*d1`f: HDaƳ(2^o7iZ7t1bȮf =hh3!1d"oPLj5kF[efapnQZsGiA ڱOnὰ| )rvqaiğjLg$dZ>~.< ]O_qJ>7KPscj3eL?7 Z-(/ѳ?cZ1w΁뇁?zqj%W|)H,;`y+hIn e<Ei}߱Z.ȍJc&yNVd6(L˿%|P3+uj94MX&K<-&seAQU)R]cr1Lo_ܿjrMDd.8Syfvapp*TI(r=b%C`pN Y.JJ2apBsh{O-0eYSn<-4\'w*oXT|#Mh .:/˦ş/햶?#:RQ9;b(t<Z7*RcDղ`f:8;ݫ)=y81<RѶ;V+)*|s}E&Izl FeH7Ih%MBwyNf K A2v=9EqY T%B-!WAk;dZ!DhyLWHE,ql)1xkO4UzQ,+&WVd%fᰣm;,Br^~/Yߡ1]nwWW+֛W E2r"eV _yfΓE.'z4LdyjXt;WɲD~ GZDݠ+6_/Yn(e -[YCWa?NAfFYa'A7I~ԓi~ߑ śECtYr8)LβՒonְ^@]i@ef7wT(wSϯTeC;&_-7K,Gâ)QSG M؟y| #KU9SA -K01U'w}KS,oΏ!#Y. Y.X.79D 1yNq>Rz򞬩BkO2>MQCKU>Ʉ@Չw1HT#l`X3^e1I1qN\-+t R(؞{u*q ^AVr-yV0 >@nk:&&GUEgʠp(<>rPqQ:+yW~H9ؑzj[%W79kW * 8R%RXӠl@Q8>p?^69.J*:0>gYW躢 n1 #@+%uYɲ $WU*IMbW yQ; ~%a㌵#.DPZ{:oF.iʌEДG%R+Jbʂ7_6) UY2OcK8EzF EQ%_C4iT\":eQ;ƸU]+b^eOmoȤ"ZϢKVM\qd\ BH"DVp*< &/h&H%.b% "V:ƕL`KTLޣ g/4·"2#1i3Zlj^ %cy39QeP,KxIJ{(,-@T"dXV|dy7\c;0W?!voߢYl\j|u}ź,% ? ͪ,+njw캉rs<(W~Mr ILzA?+r5 mTu_}.X,*|I< ͢dUFp(8;d( BԌ.pY]OMm]JL1`]@F^hCB0 &L((pglp xסCW7DM81swa@D2Kۦ)K#5r-R@@JrQ/1eZ)N PBi-/˟D1.(HE8{/0E.i^>[E=]׽ĉ</Ox|q$c~ GSc%uL.5&19=?@]/ȳLe_/-S"6EDR </1Ϣ^*Iq/1@L0MהOA\YBg?B"_^C A%e`J|ֶ-M$aLA@TLr꺴,O.w.߇ijq؞,3B |fH"r:)J ;N'mjA%É`hpŐ7' 0MFQ3pۑ+$ł,(iڮM!*GCD!!m?p:ʊ'!R5㐊Y%jdNT79 6Ȣ#P<v(8] 's8O= _ eAm` ӧ'LAZm\EE{Njh6=VLdvJmSouv8jN0h#Ͽ_?\|KfrD. TBQ6a]2-nZVW[]NTM2}ȼ?sqcDz1(t ޾ng~i8&n.3:NGprdւ͕zKLQW+jfyGV"mɕ3Sf&h0#b 6mi(̮hG^0̖ +1%7M?&!^c]4iCnDDώR&iqR!Zp1R!&J R-nTcNJCQ)L=~_/-^Ρ5˯^5<}, ~0>w;6~vĞx"V N#Gf[` L<8 J^Zf9`y@ E,6ywWgCl.xŝѷ-4&b=(˂vT%R3W&(l1R"c>ZA-K}֦vO-a*카 BI2AjE78k)G?WfdJiE~-c$*Sm4y*Ci҄0Y8wG N%fW/mb }r8XoٟOL1񀋁9Dq"/ <= rn !U/ȫ9Nn"QK^BSOg>=ځy@@;f4j+[}`0uYc?uktw;=jvwڪrXH$/ HQ$H,`!@N T X* " F$sګyb̵Ԗs <=}q[rir͢23,iFБ|1,iielyQKj"A v 8ޱ;[[tW.2wfg;= "b@ɈQ7ZDPϩF_dցyԂ͊H!'#ESX4M r3R$JY~a7Y&:+Ø6D 0Ba~eg.lpl BJ!4P ~%%vT TK#>~mG)d.V_eiy@HqIR^9qcE#ggƮEJAU״m4Mt}3כkHh8_jE ^QyiG%qK?;=О j g}U#uQx>4(Ĕ:bTBDLUf$ngLgOoG45z%ȓ2%]dJ?>%%˿;֊Y63UI%} ;k% ZFfVfٓd& )Bbs} ou>U|Ӎ?B~ӑL( 09J4pw)__#:1ThJݮEg5T?`{xaVlJn}"xVWY.CbQ}/yœTrłнn z^wC<7>َL xOxypsN̳cydUHCG,ִ{PUd2܄ #7?A_[_Pk 2C4xbnA^Z*j~`*qƲ{@b?O./5 ̡9QjX)*2TX#qfLQHZ2|B9K*UUU?h)視)LH#XƩM ͪkDfhǑnS>0 S(2!DzNP9R1/tӝ'!/xT@]ܭV\7KrR:B2]SK?8N#|Fk&ϻ=Q:#5W[BMNu9_\|;x?Ζ?$nk&X(_]nyY0/i* q.p=aRQ1[ gYOօn]by8ɵ?Ym~q;/۫1Κ 4"gԐu5L.,B3x«{IV&e{?ן]9~zdp#e\쉨K^axrEKJQpeUt f0, yn{t2Fur>JXsԚhGdbDcrgNǖ\Kp:㱬Xwa^Yz".YOEjl)ˊ:Y4lWkwxl1Oq~u]%@j׏S`21bh9=^ܿ?PfE#chSԫdبU]XQ1=0U )o#(X8HY ..{(1:#kx;|:p<!_aD-ۦ7\WZF͒ 7OH5W7\ݲ]o'vϼYLag4&(oZ&d9u Q)I&m.M]U^Pf9ZH~jZ8{OTE)/46| 3擑kiC 8NXj6&l-_F0/lR_D`w4OiJ x1O PAZlˢ; Rӂ*KH_Y^-3>U+!D?ȳ %A&zM]dX7 O~*z wG#ۦ[|jK{?Wzhe8:l!7?a:QuIYl6+Sw6oG4bbP]7ѷ#zY3Fǹ;Ɵ?DV ߞ#N/ kRs73 0ͺtO;qΊ5EnRBj0>XDaȫ-2XS-kd1ř%X M;,10JZgoS.jf;'C%c=BR2RkB4Œ6k52@P k#eY(*&*߸\/_ȄB!Q"݇ Hn/up_5L'e!=xIpsXAWToxL+Xc> Oo@?~|uoKIvNW) "3iSYKY((vD⩊ yVp{uf*L;R;D_Hz8i@xaic12Npo S/vv>OSvhC_7_z$LVX%14çDq4@2fƐg;i!KRw.U_JW.D({L.U%uUjfIr?SzTdapajEn2aۀf&ƙ2ϙ'O[ʒW^])ȱX-4yɪNj;[BH|((󒪨ȳ<ս}t~_L xHi!4v蔠/_wơ#8!͆~rdy<&uM͔B$sOѼ;i@@#81b{=/dEY-L#cO^Gm Y\(adE](,#o{"U1_(VW|rU?~f&R"nt;*PArwS=e4[,Ț]=TV7g;vwlWJ/3eQ-6vzRd{wG,9O1y7V*,Ќ2c ̟)H4~ltF'*F]$|hAe b@5VI&)Q q Of#hɔDUoLIf;)x C^4,2IȈh43oXKfn2NC׳]6Pܮٮ*OqYG\XECx{خ2N?FEѽ{|Q/hO-/>[9f}{0[2pgyVeé\@џa6%)E+cx/_;>ce- βK2e:Fab;D^ɍBp'+N"\L~$/jMtz<z j69m7pO {Qw># Gv"kj<3|&tG\92hC *ʙ#GʦF@4۫-!<'/ qZ,躎7uQxʢv,4̲Y2MsH`K(EsW%&Kfk "=xO'ge04 &@M^2NZ5Z\deQ(fX6K9A凱$Rհ4ZGt(>ٽbL_e[I,-gS*zDH.!4dLΦj@LE)!xȔ(*yBTTR%>H I]/*ci o# >}g.,g[d {RGV%բTC ~69o/^$E3U|$ vrxXo7?>Ԣܞ<@  /dQHZ H$~H\T@E6(1Fx_&<&ud-7GxTEp"J2ZAUeH;LIF,*,26E!}OVhAknHbY1O#B`þknV\%k~ycYmJV ?s<46d$n 8PB(]xa(i*[cdA1|rQ`brbgLpI!pw\ w/(eY2 @ I$z "O>>SSjc2Jf;%S̘4y.Db>}}- ?%UO7 *]2Nem@ L~LDfBBwK$AQvl/M^'s ) &@ʔ 1@l4,a$ Oܯ,jE\I, % }2@*ѧdY.YĢG&<D Ø~A ĘSbiQV cje6l,y~zbY5LsrY!܄0|0R#xKvgn87R >(Y$~x>3- ȋmt_B<<) }8X6 1>gkӍ5K6%xS2$%H͟I l_J#=t" M]('D3A K+<~=i;ɦ's#/^l@8Bx( eN}c$pde 妦:f^yp8ٙcT|qpa49ڜ('(Y`r{˱e{;3v ~͋=?J6gbWjQ?xOZu#D&+LE03gTce+D3?s~/xy?HvsȌ`!Mβ*t0;Eϑg< Ь1YI n%<x13M%Cm$8݀J BqpE;svdv1#NHOZ26.Dc(Ҡ3ڙZJt رG 4[:;%c,(֊K=]@ 82VYtICe?Qk ND6HERBH9ӏJgLv,+"#fLQaQx17YHUMA;O'~ ?TFH?ةC!e'-c; )l`'};H]L%y1 S oth1wy̸#/kʲF $sΐQv0 lqQ~fzj~(W|%We.Wd*=spqC-<DdߏeUy{(R/"ݩ#/k:kQRs nG̗h'=7|{qyGC+M^ n+t NydO|Aj,G;AkN.I1d]y3 -hOfZUfUp1#YbǙS s. b0F ܰZ5 !=3utӁq<=9i-?1u-\!5՚IdUNj2݉,08mdd>a"nɍdg86 6H9Rgȓ&2͏?#hGY@Bڬ)fzNC;QH80(#ض4U-w#=E;ZWA2gll;o[B2?鬃'FO߷s|Uf/^Se܍7[6/{L8:p]MJC/ttݙoW$/&qUFn*O=3Y&fTrn|Y(Ͽe?&:[TtA/L+C)on@TIPDe=s 2pXb31|}a#C%0#E ?oV FJڡ[1Ͽ`h-=h)y^ƞ]{LTHqw1)a޷pٵ$nDgo9dyQ)#7Z S朢CT%b ܶ-#x]rp3Yf lmbnd:t:#DCiY %&X@JH4ʹvf vX%F2P8`ēO\ia{O ㈝m+R<ڧAӰ(?@UWt]Ki`&GOK#2]jRO읏k-!ԅCb nLRΧŶ٧!O6!nQ*PV>ZHZFk馑إ%ߟi |bsKK3BxiFsΜƖC{N#EYgF\߬T FRUdyƋW/X8X/W,JLy^״~Oݹg0`A+:;Ed =gijbyU|B9߿-߾UFΏhq:n|XT5UYet{IdZR({vidXSdqt(zp@Sl?kgG2Yev]`:f!J㧁LzA<vq&4\I!iri(.:XQr'{6-hh,% %\A^Kd%ܧtp۔d 1~J6}}2 .Cdeq*KīSzq"ғ <"^t<=0l|=q #H̪,iy9v8>ćyBezEp :U.I>b~ThR*Ǒ(Y7k2yi/4acLK3Qd! cb!sq mИƁ`m%0OsONJҳ!\*GfT2Ud΁ԋEQ=}'W %˺k;x:LA!tE&c /ʔX MyG}paÉ#iGgl,)_R|lj*c2*?rYd [͚8L"`TEa28{AKR jEdn(HzG4T?r$d):T HFt0(4P 4*xPAqڰzF3g S"P\#%APgU7"ՖC#rO|v?-K5yYgݐ A;Q*ƞ 6W ȩJ4ac`-w/V#.̔͒yY(΂%U`)sUr5Ҷ͖kA v{R2 R D&Z,_a͊?p^Tv=ZY2]Ȋ9=2zЩfȌ"3v^mǎ]Gs{^9t=*tf|j;ի;s|>P-kזG@#% }vK{:3_o?>>zMp-*'Le&ɫy*`b}u#Hܱ^7%P=B*[G 0vY`ذ:ՖԒ/j#kvM3R)cpܝi5R8DD/Xir,v(! eW Ptx"yӠ BP$) yy-"FshkQ&,NDFXK )Q lLHYӝ|ޡf0l531yk7[~?a٬RT5D>{Ͼx9lh%!P9컖秷ăs<[2xF4 <.6"ۼo?iQ&S^yQ9߿A)I] N*p!EL~ƀ)Q"UQԥJF,V%0IÞ27T/޼G[NG" JJyڥJvPYarf@Ǵ[+& =>sU{{MfrqR'7Sy,$R `"RH߆3w1xND{ֆ@beEY1>A݅@d 02%yM0L#m!10Y ϳ3y LbEdOuY٬<>>^t(Li>P%ᒔp4MyNYK]PR[<=٫<{i#7Wxgs[6Bc:qOݬBO;oi6kx`\XFeSRa^/h5Ro1=_|Kޟ)r8-7kBSsxڣILx!nBdgbT "xW+qFf4wDuƾBH! ̢vd{<"Epf&0tg4M0+vt^$♜Ef>x%݁e[WqEBEGH+DT .%bZ"t|zLZ}q !d;Jy$jSYLBJԣs>]B,=E>Y ?|L w~>H?ըJ@)y~~FJYWN]j03I4Pz*Ll+ozShy.,QOIKMY @lȫ `4`͵&2'8pHKT P~Ixӄ.$x:dt.D-Yf2C_q:pyi sKUU)J%,KnL@~E=??#`YW*ryUI(ۺBl{ą)i2eHfy ebwjX02Ϟ͋-/6UCv\ NGp˗/Ic)flξ'[#};qPS`z5L7lʃ6ÑSq#P3E"y6eM,<)UI!V7~ d-ӞT:Yߢ`)QTRPџE3n8B,:PJG;ƐW{,GyEK='=CHjC"D"B@2xFoYENB9 mW7<'XwFr2Lyqut;)0 0)飤ĆٍU|,w׷t$3 Z2S^C?`]ϫ_ îD@F͊~h-YUARGLmd(S^=M}TVŊL]<~/_|{߿m)z]HRs؟8w l;ЎSYM#Ñ&CğN8~?OP'f:Ok#\1bm)I)T9O(EFYHgK׆wiיUӎtB6#xUrvR9ӋHHB!$Œ3Mdv$#[.[q,svmOY(1:|C^ i@ɂ|","yǞ?<,BpZrUPҊ4퉈%C\UO ; Pԏft3z@O{w:3t-uXLRF=ofpbL{vӜp>&Z3O'5"4nqG4S5%4]O4ZN-1 >,w0g1FvMMvKggL#DdJz?4cJ=Q5zqw8A#E&ev(4 S7aGH.UU!sI-TB1#y]R(C7/ndjSyցzNeUM~l% YiW=X,W\]]?p:(g4޿}CO~;LkEbr12ىEHCZd_|#GG%L5tڎ-XWK n$'DʢKI;]UD1{3X!xx9O=HRhB 6^"ឩ;cb_l#lۛ-~1!PMMOfW]%R2#ߡeSӝ67~rR M狾320ru7q<n6(e@WF v*4(gΣS-ˊS;Y3fCuv ks f;T-P %R.qSI&/L'Pi!.4%ixPFaaҢ>YBH6?' 6sƱOL&F`y^D؞ɕ(rD8`(26ޮaQh(3"gsj}IAeLޥ > #)DX Q#ϗSic!&|&KK6+Ɛd12SlBLS m1#$4MHʳĘW)j? R3-,yR,K#<2)a$\)QUQ2qV5mwԞ uz~Rk8DFg/@U/>YSg;c'>6i"˴ _/Fhe02mvydJMsm1L|@^RdZu%"uU1[tB44DxMry4XR ͚~O\0-ʤ &ܼ~ɪۗWUI{<%o}3_~9Ւs/~qyuȬg^ÞnZQDkȯ) 7΁+֟}&oYl㌏)ɔEGfA\]2 =V{"̔{H{D3'B^]6Di VՒc>B9*m@f=;홆5;V+c^'~Gy?)Ek}ͷgly| '* 9&ժzaǞڐ)^oQݚk4"nK֔{3֜玻ˊjY4M25zFG(3C"R7+FFq^krF%|?UQd\6SeY2ugY }ts-bI6[q| dۙmaY.!id*T, eaݲ*j2:>Ud)A!#FqYX) #C#mwyDDZ;L4uVQVF*&S𑟢 cXQ*C+CHNvkuTyA>%/4ZDpDf* ySzWȴhn("F Dax|zD]`ł8&j1&eeເ,S,˂BkH V?-VRH!PG ](R7=IV.Ɍ,w>bLds3mhmJli*<0"Z_z@1Yn~\D@^F1ڙaN(p.`A)~ox{Ϭk%"D=}?03N z\Ӛ牸0R"“!G An2q J9{ԤR:NNG,c$%#R2(Ǒ<1SqHY&( l觑h'اnYSю#Z;2N# ׊tԞ6/| E;N30R Ɓh=ʩTU 3gQ`~Yf@UҚwĚti3@BZE>#/+dY8k?%4isT9i!"ȱ(QKA0Wlqʑd))#38Ǚ+OmK4L?^!bzU 8sibw:Nfݞ8 G~?8H8pjϜ패sF5P#c]G Bc8qtYPiO{t_vM۞)Ù~s$}ǮXܽ`}fndZ\*^~YsŚjurQ3 %W/o)[|s-*Gw{߾pz`OLdXQjnE; Z{w=ƙ·l7%.Sx)Y.2<v4"%'vJs܍d&@sdRPi Ab%E3?lߦ18]@FK2h9;!ϳM@s`Ĺ &*%灣\Jl1\8 2 *) \L@3O#.yEkDiG\ wA e$R r 2crn<#.La$[\!X)f,JD;@Qt,OI? ,4X΃;?d np:%323ї(sk;BEp8Z/X^_wd 19`꜓oYn?p-]f>˚Б!X,TzMY-i#ƈ@ AY/);ld{xr,‡R=:%[9~f[VM*3R) !p,BRRk8(=j$HPXp+L^1+!bRiE?vYNGL()v& 7BYY7LO7a2M !QMAQad#Jf!fsGnrqvFH/J`3=39ȚI:qDrlYՆuU_|UjUOxZe,9\{d rP&ҷgRhf-¥e 343O3LS7%^ݲ, *)]KSg8ay<&CLI,_a /Ҏ41#OOm!2ZR,+Q#d fbs%(QRD`YQTuR@{_pܲ׿} v#;~k??=;,t@-vg ( \s UQaɍ"wC ]h?bvbAU٢b. ?Oܿ{juzo|drvdh9FrNno_!TI#L縩*~׾` 2=eQxzb]szH ̠%@! 6qud'j0QY 9ax]Й0L81L~&(OX";B̨aO۷H%yy{T|"4sldmGP?OJ(2Nu%q֑{rZcF4 N#A?hDf6$s\srQɬ.?vRB+\dvJ)/Ө(?eؕz3Nx8N=RHqcLDLv?%$Zg8رL 뺡;ydy(U{!' Kɡ )0?9Č.9¥dy4v871={fp&3Ezr#!aǑFiAd!rMr4E^iilO0\~ix8N)%fi ҞHo;N) 8g)r4iX^C8DoSqQdND;)4s{=uQĄ̾[ ղ77l+nK1_TF;T͊T*|K,j4 $*P:C Ve2&\(uq)%FHW6$@aY>QW hѢ8s<cѝ,δl4E%(ahA*y>OGrTt\p'YY߭!g^_j7?,6Q)%E %s%_G^7c4:v}.}ǢI={knfn4zA6E6y2Cǻo>pw&cD-ۅ&Xd*^8*CzO]*16RHU^oɋb+DI:Gᢧs4!;pfO۷Q<2 KNҲ;DAV]s,EyE f*yQKQhLJ _?G?b_?; b 7"3Y&Rrf٬O-gNHY KQ턴=Q6lC7;a s?!e8YisD7߲2Lsz>Qn8s:yHMyЏTeзOt/qCO29? )g{FC(DVdUA]WHŲbY1MN0'ݟ}it8ʂ/="K5Ҕz'/+djn͟vyh 3@*vP ?95H`FgZddW7iH%N=u˯nX-y7˟ѝOM}˛߳?aT-vβ]Yo7x;Gu4""RhOp4 "RH#wP :zl*URz}x؝@"g(o~ ?7 7| wOGnoc,,QJ!BJ{W YcbS7*&\S׬[ ;'VeNPtąy}yHO e4Y33BHi( yC 8E1ҟixg 00MpvNLjid{H?!BIuyt^"NhR,˒"c,m3 CⰌr-A $^V;OpCqA7 p=:rI$.+ ?Jr}bU2I.4,"\AQ}bR74b X/Y-ӑۆ'ǿr=p@ Ȍv3M]81d]u20Yu, #%d5xǚIk>=a8M3l74q$9M[ղXpr{F*)1EA-,rypWR,5p!%$2%ayٽZ-i3+󉁞fis9Uy*wW^-/yDzhv"!EaCDԱ%g<|}\oQBSl19sF4q!KRkD ,kad-/x&(VR<}Rljɐ)8&aJسKTҟgb0Q.J2-q1Ry^l @#`Or*nsvv CE$JWbLFCx)jvC[ c{ 'k*N1%:z"\@ĆuY%0ȅfX,"R \`[,fFԢF G)B Pؙτ*$u8?`x *ZTql; ج/8jVV㈳ͪb-vi2M\pɒ*$< f%SfDoٿE: HZۆetlQ$ca{ϩ}E)~~m< E^uq:T:gG0qyY/6-En(?1{<_5 j9ŚQ(6̐%k<\]o9O=*z23e`^@PlVDL*ϙr"7[HB@?MXZix%n#c@bSu@f\t,Od|]`$\/9Z^Zxٿ #L9JXkì i(X Qib,WV98!Up$HĊȪjȐ 1qҀH']4s=Tos(B i+.u)uI&BƀLkl$fo>!AD~vdP|ǀ)HV߆'K΍̣AcIeE`|GR,8g[ q(˒ML03,/(<)S%Ә`*0(Zae#/R !eY]e^eYB |Lf2+)D"u]3L}T %FԗKzM8J$FL#g-lA(|ϐHpn;:Kl}jCdJ" H]J %$/±llni1a>EW%χ#4`t؄HSW1- hn\VY/"9mϖ,ӝ6-C.ID!q3J`iȭ$-"F vgG\s- M~|j"u#.4ԌFpn&z<, <3Y${tf͛Ewv<=9'8(ɋ>ঁ 8`ř *pC0@KEEc;xF6D*p6DRAxw*0YYd|,m BhC=sLJG2 #~f6"! 8!aCg1D&9FH(D? 8k)jʀ 9)CHZiad;uű=_?D+" $ES.) 0ИbUd J&-"48*D9,3^-%>XY/Xon䫊x5R*<at:ZKN=ar COԊlɲ?C{gNG~ }1,7qt`ij㹺khV(\gu=6wSѝ893iq[b)?|O^u$, G7L񀐂,6FqZn[Ck;cJҸaq$N=&ZLgPdeͦ5/Rdm e*x)~xayljW2{"s=E)jfY{B0c894; t=4frB6Iܥ 4Q(G<#\giƎ#AIe>#fdxyFOVjȼ1=بK1zydq%okrCˎZ>~}kswC 39~:c>pŪiyi f_&Lj`ZuAwxe:}Q'bS@w#<~L\%PyI(d(ڡ3M #?}8d7 <^eY(3Nv)3~`"`ܧ Edq[";wI(82ch;N6]&\Q ZI((6C 8D XJ)uyFSJgey$8i0#ea$:@$"$34;i4;x~1FSUs NDd-uv{\ I|3~=+O$FV n냧z&@Jtm2H,,doˠ[*C;L>e Px-P7oukm Ȝ<{Sx={ ^:"c}2#28F-s?oLr82rAÀ68eY4OdF1 8L[)%eYbLz^xz}d؁Lo,=yW[nTvfU0=/{V .qlG%F hɸZ ĄyRh3#BSz]B~߲^VTeE%20GԜZᤈB (ˌċW6'KjU( YßN-mO,J\ ﯹ/ݖeջ 2LݙU` SgKpu{&#_Yӵ_eհX1hv__Sd(e ' ʜdYsdB iagKn TTFS۫k0ag-*J~δ-r8̌SOȩ "sy!Pmwe#ޱYНA5CGgu]`ݩE5jb  摻7iV@=>7uZyݤ$=F b0\3KŠslL;ͼ~}by|Kuϛ5F ~O;I04U͟_Xj86njZX+te H. qe^Ɓ s7i<3[ӃYh!1pZ8%9θ \4SfQ33M{zQӀ=ѹ`vIy&ί':p1㜕N+:b]d{n 0EA'frLi 5 /OhᩛIbY@`09ww8%ۖDnf< xJp N#ˁ^laL3f(1#37iT~{ :t4|5 M?,Mff+Ʈch~Qg,o6(gܞt<%²"YqoX}C vz}oOg"EG^8+{?:LqDjM)!CII^TapR%r+bfu-.:gv 'YHe(%b`9&h=Ī`(I!22w=ݙ`2^'4D[#~lƉ2Ll U{ n`e$\N?CQ4hp})6oITEfr DVȨ%fKt~l%?ܠ2ց >)O.kLժ?jж-y9O8"C{IoP n<ߥzu*(*mi\V>۟+.SR7/Y9;jtRc26 >U HK(,3̒6(- ad{iL0gqdpj{z{0YnhC{KDˌtIi)}>òE VMn+5}EA۞YlEW2%zs/H) -zyWyǦ KssM&nE@x{{cdjXް1O_՚;PS,+L@Nja}]u_ಚ|myݒNꌫsù?cݙP掻b˹vb\/9Qq:ZX9:&0( O偡5~)dOaH5a^rPی&Mz@x_ۆθqX(cfߵ dtØ=EJO v2lP s҆MʈͪF~aQ6)qazDUΓz{rs R">Zaja JɗÁؽ4 dS0NDkZʓ)J*OtMQLNV|~U[=A vy=Nb3ZcD. ՖO }xBzoHkڡe(1Q|O#o<haP/_//#7YASnص#ٖbT%YhEtb}1#nlZ1=h0$(*51X7#M{6%p@ ہ۫ $}ۓ`D-#TF^[suQԹ%łyx٥CLۦd-~>p:N cdhpݑ]{"n|rL*V>ƓS{mkﹽ!)ןytjJ/Ӏof7|=[8Z]1 )Ldob$?xL@HgZȋe8a!&UR4 wD!RK$ |P $(E8Bϊ[htLq1IÏҠ&HKD ΥRiz"yRa,JT:wY- }`g}u]@YTBr[VE8LxKC'۬֜Rfʲd䅉d  #%179]~c/]ZKX$U٥a\0OHӏ#1x?RfHHPL4ر݌,"DR #$74v"p;o'NYv@+Od(_D CHߞX,d :ChMvG2iʚMU$.\Ǟht0H#֥jꁥZ&!Uӄu' $Q,\Bms2>>+qjYVR=b`t2ɡu!Dnf*<`2ŲxnWZnj9Reu]R78,ɴq(7<:sR+E%%yQ xyQ/ wo,QJkIm6ea<l''BYFsK#~kqډ<{=*x/%󘬤{'&~ Rh/b#~9BI|ٟY. YmN_x\9?r8tjX7 N(ZajX`NDaUD Sop̞x釙U,= lbǞO,Lh`),~\Kdc؉Ve)BT%„@#2ZrsC)2@7Sv Gqb;l4up\}|FLe톺ed<}oɵn]ИE*/{977{ 0RҏoQ~VX?3@!'8Ȥ40|oJ=zBT5"*= GCU%ljLnzx_~"+s73/_!2qDda/_~B 3ܷlrz{{6 FkdaooB-N_SCf}{kSG yI^"UD l=uDeB %iH?M!?#숐epggTpd10 #w4eMcqtf0Ѕ&؎/{9{(.AQ{1OiQJ&Ÿ)LF0Y,Oն(ꂲV eSܿO7M,#JB;ٱP9-$GrFTYLw,"_PLJNwY.@!%)y%A"їZ1\cD1չ âr|Gr24cb)F"¦SazMov)Zm%eyPJ35|Mb/Lg|nL1A<ȋK+)ԊZ]41U;sye@w>#EyN dcy&xKYH <&㔘ZJK _+C)0X?X9NF| yVfeEhBp/aR=Ǟg⊢Z!HC?9LQ1ğc\ >gq9 2w-C2]!gw:aB@v3qy!nE1 CvgN#<]ꏑnp!,1"i=Z(T|Z՗ JeϢi&WĐs0O=О[o u# ) Ic,y6-j~yaE#Yo1UH#uMԑ)6onpgGBL^L%*gU`U߻۫-GD'F(fp,6,8Z^Jkvoyb\pzyv*9T3wQi,6lV _asee:'] 5l *)N'D#Ύ\xX b~r@%JCh2qy0e{Yy+-uIbʑ$Wk|LzIOӞqļm2>=pbx+_{ DJTFR6oϯ#ۦŸ;V\cێYE^p^#p-Xj$Hk>=xyxm]RTvYJ< 7'uGn1Ur쟞XmhkN_FV}Q/o;ί;"f41m ÌPedB#\DT6Z5aEUwʒ+!xVUx:S6 rvKh+CҶ=QVhrp'//r(:i'd4Ɛ7w(U?w%XP1 |DU o9UN)P -`GVkT{N+yp"DJ.qq!1Oi9aG,<h%H< ^%~QQ$79s3vY/vLh%扪,ituhB`E1ZyeEHg췤HkZ ֋8s \0u#N e2 leY0L!T -$E|hж-3(Q) /RoZH\!F#u74"0 *|>c2jc.]yѳYngVMImX)A>uM RH/?XS+d{gk2g]3U ^Oě7w<|d;D㸾4?r,UExE󀒚O7~AE^p]F7%7-[h mUk}O?xnnh e]3[Gf rȊq\29sPl'G'fPf$"ywGv( 3k?j=#Uݎ 5n9:|,;Y䆛EFQV=P&-_*ˉAA@#MQb`#P*[>>B' Pu"Օ.]% DGVjbT1"HK-OJ&]lE.!1|"`H ȔN: 7ٻo*)SB IT2QRaM3鵖j|oayDc͢b:UsLe@Q@~QR1N)UTx<`2Ӑdt>bTSޮĘ_>霒eYrE=R%-/߸_aICckw hakE"RaR H dD(2.qӜrVKWTml qE\@ȪY2cbi"}_bg)Ml=}FM.Z.dJHj󞦪y>әDl$7kO0y|z /(ۙ~Y,WGvWb IEG:l )4dH!1]@˞0Z|#zeF!|hֆnjf Ir ԫ%C;Ph*x|bwhxyz`gY(PTt/ӟO B! Cѷ'BՊ?gKԆ}Oٖq+,64vl(K^-/PQa' ;G^B _޽[Q/$?-EɅ fހ"yf0Uɛ-7ˌۊbUs:Z^jj)偩/|FWG)xzzuq7wo؝,2~2rT~"+W7؏g^^^`j]wo(@o?Lr}ߢ2w7|~gPU%"vcS{@ŞRBԞnǮμLy݄h=`M8K@@&K.5QhDC`tT@o.:tta M^UeDkGB$0M=ŹȻ7l%EtqDg^,7W ĩ}6nDh aF`m3ZK[a8==2V9:Z;vŶ=;>lUCY_xb#woȋ[btܾ{~OW"Y\Q5??gJ`%߽fHi eO,ÞoQ/+8ɫ=oﹾew-}?rssz"*)p{y-Yd̳8,syithY/jwD9<>,YJ^/(&?Jp,]ˌtd-"8r[3O>!Ξ!T0G ]G&l9_1YGvƱ,๹>OĬM(3H%PG#CYIE{¼dY׳*JfNh!pUl ) uVB'8 7%DV%y2wkɤ #UpɤuGbh7IAt3΄gjOq,=u\eE 4jx9LqD {Lpr:]^%Pp}}db/ Fc/_?*e<{]ָs6éYmTUtj&i1bZe*`g'hYdy:pwonHXa& Ĥ@0Fj\ 38y^vT4ndJyOnM?O'PVx=y> av#!:ƱGe^0Wk'v>3 $>2O3SJGّe92=ޒ98S/t9%P<}~L,Ak1xD =Cwm⥄erEs TrQ%Þ TW˙f{˜(W5߿e{s^GNB0%翱?3I R530 .8|%U^c&rv@(ũo! Ļ#h>YInFF~PFS'DJJc`RZ3Gt'op/by`u2 ogsJ[{6- H )R#%"vLHD&TQec- bA0GN#YJ'c !'FJ 'b59޼}jKÑH*s^Y_3 y~qY|dT<|yoc?t0_1Fr&+V180놫͆a>w]JԞO:g>}}{8Nt}0 C/ _'N<x?ek?%77UO!#"hfTίT!@&a| ׊sL,knb!f9}$7F8X]#8d+^TF1*-Z*E^`ϧO-7WTV`D:c ZvnGFЬVܽ}<(U3Nd t!r暫낗w*w'E%^끲YDٟӧ3*8TU (5_g;׿]}'pDθ'~ owCU -z儩>P-F1ˌY:|%ZT&_>~&J]@xYLtrFekɒ!G+EriE"JD^Sh.d v$422ihv ig8T91N2r.P2"eqƁ4e*Èu-g`,n߾c4O·=b b4v1:#3DYE*]qA|xC~$g>ÉͶFKS/8hM7YMy4yG6oMQ%~ |d4*ܨ{{ӑ՚WLϿBn75Ƌ?}b}-6TDP10`f_ӎ=֞>G8NtV<ydY"ev@ir`Yэ3Q f9%ZEqfZa'aՂ<::>A:EN?$3 u~vQ9GR@/:4?}f#_qaqQ3i"Ba5ϟzr-X6grSPi=˯yBS(bz~fPL:]Ȫe`]ZUlt0l=+byx;wo<#jg*R15z$̑Gzb#-[_L]eeVgFϡo%w3ϟخȹ?tcRTږeW7לΎIϿZ"kE,ysfp@Dw *Թ [՜ڙf1UQ59߽wE#[23!zMF#ՒKL;Bᧉ 0&]g9w#_~zBXY/x[^v|dv_y*͒nMjհ\7 ]Ǟ^b'#rd o`J9;ѱqw=7i^Gaj M1pZ(nzje'H nZM0wT>t8;t4eCU_h]g"QW傧j`_dZ#8p>Xe5Us0͚jHQּ=adGsܬTMIt3J v@s3.4[, []$C'^*1$2U]HBDžd!O}{d΍㈔F1=e@1ǔX&[͸jx~vT ^e2M5Y.ae0ty!<'pS"ȌhX[M(JyT-VAߪJKݧ[p疛ۚz'3Y]\wJ%~@JJyB-]fߝ<WZ)ˆx@ku[Tgnh,.s)Y)a<.x)IɷH&$rJ2pUW3uhS f;t Oz΢@[7UN;uE74Mz:ɱ?SWAg3W-&sǢ1:ÇD]lih)ʊ(_ɲ=u]BbEq8Lc TY YNQdْ>HNn -m] =Otg&02v=Q,Dɰ۳\x3YuvUF:8X|Ȭ?#\س{z Y^bațk~t2[Z~&Աu"Y0+O8obR r3s0pes;PIò\uqteG4 %WWe:j\C),V̪09Z2)DFO+ab -a>e`Y)N1)4qIH?KmͮV]{(s"dͮ]?FJdV^Gtiz~0x f&ך1ReJ.D!˄$x8^x+z!QR)Mu9|yB۵z~TFpWWdGfق7h $% AH: ,O'*{R]J~], ͡S WWHn5CK uWFA%S򑡍;㷇G*ZdB$uġrDOpXo{-7,V+*鑏ky;v6fW$' b8äWgı4h{ t]C,1z*eȰ+g Ō0PN4i 2MIvtS^Ɩ#6Lz4ܾYw|Ogtex|Ֆ*PCu~u-x'#w4jaLb;YJțXSonXQd90 =wWK@zcKiRdۑszwRkwP3+$9$2+H2CL#$ ff>/|~"v5q$J\ۑm5#ͳigwEU,c`u5T?f1'=PRA:_Tз?61(M)j!x0_/#sC&ʜ#eSf<,ʄn9 4!2x,+X}?"0YU4D[KT1D`V0j·6 "Z3J(Kf4mƎEI,f%cMܽ{b`{4&6*lߢE$S;B8(ӂyQ5(~htҞ|a(lQu$~`׶<kZYYib RkGϮɤf3jl"2X. 2!O O I`8YbtB˿@3XC7Ҝk 嗿{3֩L?=rsn4uw9`ҜASْTk^/Hc{txaa;pnܝIDy񲈴8u']C0FA&+(Z|OssDDkL0kWij%//G޾w[D&pQI9} !8tH 5#āqtfsIY4$I\Z95-lFf8-Tl4]C gi;f?(X.4y^_q%S)9?O)\?pu[f99L+T8%1.<>:#RӗAdZR'rzN""2A8g;8;^, $7 | t]2f(rSpez62p FE'@:;J%`J6*@=C:;ǁ/{2PqJbMùRْ2M12$ZdI7$FcdV̘W/O{azMjrE|LD6OGbu:;O,87{THV̊yیB3&`,6KN@7a%>\ͩO(m2ih1hKW3+i(B()WJ8*8FO:zDž$I'D)"G83HQ9H]0Fp;2*C }1)Zqȓ "gde#ˮx;0=$38?# AxɎ> D0 ^?28Zl(g#:N'*3f0J;KT5v#X&)a )iqCv;$,7HDtAyib;HVO9ؔ3~gRc}DDIF@Έ}O[4dY‡wF?v?ҎWF4)O{"Íb%憡S.V :ЧU.!MgBLx?uޟQy$3)tJRw5&#'-CPh<64#3[/L@o`{IZ15C#//oim2͘@"\KYtJp#fEH(|7}O?ǟ*PChY,Rͮ؟{V#2IʁI_YldžqQô0Z.WE\r޿PT%fZf/40*pzL3:H6)WL̅ďn](5/Ś0<*B%E>'_-QblψyO,VK"6;O:Kٽ`9w l@R{T;I-2)yy5#O &qi:%&73t^Z-']tx&vlY y ?|y=yftc4?˧PEcsiD&;| *"SESFɔ~dz{ޠs3Nv錊Lן_(3Br=[_Tc9_pzD ;܍.gtn`̘g%E)A&ySYIu˞I2T CC)(izHT;*sJ1^Oml^ 3dDLhgV kA(3ݩOI+;^-yU]KfuKXs8!ف`G&IiE!SI'v;uN '&˱=l2e3=.]c e^=m{ZL+3~2ч`dX7ԉ COe0\,~UBvZ*CIQ 6Hv+NxbaȊqD2iCF\HBL"Z' "PD"iZH$JLj!W3 OK/M)=ɹT܅Oni=1V(cZǚX1hT_X~!L dDsnj1n<""PK0eUad?g9e9o#fԧ8C"S7gr$rwᄃN,%eZ{tؓcP:}h}IS^I:->r:N'fD29OscHp|zͻk,NUH/!xl ?ӑ4O'fÅ)/̩dOGH=m(ZЌ#&pEJ{>SH5x / q$0 kBRr U*x F 0,xMFi<Ƙo2|0!N|.Ĕ2 [Kl %1&xHrKƢ߮iZ%/㯀u 8O)%$W}wOϰ,~ b/q:'7ӳ9S8D[LLόѹ)*;G$K>D"0ե ݴ ZiR;$ܜu?+zdũ5U)M3y@SY#"NLoa>J))*$R%i\cty>CQN'QdYJdeE#9\pu}G5"TF08q C G''?1>?-b4m; 0#zFheNI'I dY SmdJm:÷vo`P5((IqlN M*"kAHڮ"BFʼxI˂n!g)g3RoD_y%9;Ws\rn9%Se?S?=A!Y.gyI-><<<:q ğnq-(9$DSdRTI2[Z#diJ=bxhcQ<9G~22Dn5]ߑzG!4.Dh jȲLIu1BTב::P$xp#6d:i, NcK>hpH*(J"yRbT =JA嘋Qخ*̗3w zsþmqlސI$9W kzDSPM3PfY,9r~y& l} 7lsyBfQmwg3oxzz% ϼtZb;&AYngo8\mѠg[Ump\ϟxi)*h5 u%՚ϟsqm QԘLI,)$OI<$yrί QGI" Q e8칛pRhƱǘZ 00-F7Rl 8l7pϬ7>3ȿP:H2Pq&X. /ggٮSS ynx"es5oBSfv#~W~~vN`n0'I& $Æ4eSM\.,&m(d 6P.WҰ{TudZ]s_AV3Fįu=]E1 O?ۈAІHrGAZ6u㏿ "Bq7ݞAXQBW(xys /IoEZrXlDgkF<`-+]/ɚ+DTsb> 5A֏®/ی FM1RTGć zx\80Pw-bXgK4;xEeY"5qhXHgV2GiڎGڦ4tSKYeU{~ W+%hS$ݙYY=EnA2+gDYG? 8( 8`FX_m9acik*U#Uo8|y^96 ,0E$,7Wm#Wk-$D¢, #,SfG~2+xBw^ywuGWwӠ4SH+ytcϺVx81v3vIu,x9IG VDW23tW`4!"&2q﹒)Po(!JC&eSY;49T:ьdؔb)~y)}va}: ķ!LhX]FiP5h-q!ȋCSG"#B+RntؾcM1dZ2/rɖ 0Xnl9g$CJZ,Ym w 4CIE]ד$ϑJ g~fWkMY C˰KI;)Qj0 *'/C J(C(5z`Hp; ӄ>:cjQA`GhLԞ<7] YRK_Y}rmk,UF7z^H拂wUN;XB+r^bdDc9I''PD_3C'b6j;g;МIKCP2b.: P`/OX]gj (8tG^Tw<6A8v=VL:קǩRF^ <{#(f tg$*f Ͽr[NCS9B-oQMnxĵ U%3e@b vAϑd fAJR }H#O﹮ daUd~*9fR̩g6C=>\m6@wBӉ8 OgRPBe_xTs*MZB"}r9zsS?sL$[R75 'T>pa~O$@S8'TH5r7+I`۞V8P)/`{LȌf8hO{!IRPN,8752Oh^w[Wtqb.$Yyw" Fo]pj;C`Z*EI!SfD\OӦaXҝOSv?޿q;J z{n޾Ֆ:9^+9É&18:a /c,RF!ȿ]^^!rڽ^~DI۞v^:OG߽H(:àO{C쎘lݵ6iΟ翰\͹~Sΰ"ᥞ*W{Yz Q02zQs*-w-) $Drp^gtd#"#mAPg>`!rE51(%Rĥʖ2 Oί;hHLRVy0OdjS% rbxY>L"ҊD(78!5vj/5 lF8g1ZM4Υ1D"ZN|=9T$JӍ#1x6#B9!*/Y)$12ڞ8a=Z-i*MW 1H"?ӀM tM]`(ˊ,/97g H^}:3#I|XWf3A@V="\L&oz{1Fp#pY@2bi" P, .C '+V7m]L^>x#&IRL uCߓf$CzyA&Yp XI' #{vp,0L[9q0U![7u*"͙U3^^_e8`J !.ʈu$dY1l$"x{^0#4M3/,1.," q9G5H99ːp:rn)qF+ab]6b+zgʢ$Hwlxz}!A6jd5[p8>_&vU^\Z ~eE%UjP|f0iB@kMw0A|O! 6ul V5G o- -Ȁdm6u4:ӌ\2 -|vs#>ȪGVWkGWgX!P̲9J^OT%( N-ki6dIٮ&˒TeĈbٳ, HY\H7nKꦣZ}3u?o"BdvDPI3cϦ\֨!(@#CeM%sC6_30Q(r#6: <4qO=mq DFZ,9GDM͉Zqk!",/(2rɹ:c:OӌQ%/?0jT{CLS|mkM}Jz{lɵ#۷횛;|dvUr{4 s $*a;𬠬r'ι^Ϙ)ڢ͚7뒗#v{{=]xqfs5U))ka,-RNvhyNg dݹ͖bF9ُsH,n/P.p|_W)ݾ?qO/,F&ɲdpψ({Ƒkr9c?lI:Ts8I>mZI]%QJЏ TkRHhM6tR$iwPeQ 3 c!b`^ͩfRj~3+E%"6>2U?F1wyD! 2ZAMFk8tiB($LU"zQ).i+"Ji, @ uY1 Gz~:_+RLv-%Y1g#E\|N۶'G RssZ0qeQ˂E\b/I|[isO1ޣa#K 'dk0;b*K%iY~b,x/a}u9?jsw<HZ-(G+wIPFW1aJW)R&' 1 }q,,3L3t=MNfޒKI }G0V-pLI^ }{?#$)ϯQ()pvv{43oVKꮦsypIrI}ɥHicK^p:#2EmRBߑ2 eJ1V:t<\OU\m8O"nG(88g1Ya =SILBID]O75I m}BRJh1R 1,gم=F꩎h'y&J3ڑiLCI)PgWtb N2I:F"~8ؑ,';sW+Tc$TUeOkt.[Nf2bi:R.aG')" Y,y iO<5x%Ix>9ZbJ+区d8d)0 v ISH7 c]u(!$\ eAZa$kfnȗ9qDЩ JI$8+ij8 Á}:9ugoZ6LXΑ9| ZrwZzezYxtɲ Ir:[jCj@5>|Wajr(h]jBg=YMCv'63拌,^(l|i-aYQ>p)b= f)i&XmV4ۛUK+4 ? 8#s%QnݻIeHD8^͈=0IhCGǏˆ?ܬNj<6㑡1㙼az9Z%ސIx? f캞F4hR?IH7$fOgQ=;ftc} RDRq ,ɹʖ0"*)Qtv~M0D8=c$RoO%|"C20@;F C.*5l}qɒ~=ݎxd>פIh3OOOEDrЙdu$K4a, D~ch޼eD0]׿|4}JaHۏ/(D>+M77ܮV%xw{K57ezrw~%8rxz?`Dhh\SӞNq|nHW 5eSj=G8vT/q]ːN3F7L(f%c[S*[lSI117WS vll(]d|xdi%iDL0R 匾# D !Щ&+2~pT- 4'/*-مr|a!:Ip24~@ϙV3]}o߲^.PfZwoFPV3Ttq,ϰҒ햴)f9R 2Rj)>N,i35I2IHU@E"E% _>ߣbJQ.9S~xQ<}|/BRV=79eYmW~?ZzicSnoJw#wy&?R+yz n@ T5 Q ȲC C7D!n߽yy8pܮsb0zOTŌLc=#ӢB/,H`t¼܏dQ͑BPi`Ětc'%#,'T%~tCK]REI%`"$6`0G!&#jAŀ<+:apڵ4A5rϓHYG:A^yDL A GK=ډ(R4Mf@&{g<途L15˕2Z F㬛kBaߪ2_UJix0LJ$@}p`Db ɊH$s#a_hډD]K;r80AkM8;AIf29l^xnj7t`1[ᆑf$$$߽g^{!1#bb=^u #i/L31 RpjN ֣՚R* '/ ~{ٱ=C0YfFS&J vg|~97- ^D- CZ6eh<( b$LC_Da3 2xI!Fr b%Iw; ?)PF'^ JH~6:$Hmǩp%0 LO82{4HL)#pbge8ʌ$ojdtR ϧ`CFKӶ blӽNWd{Uˁ4M >0tSf&F! n,*-=(WkPUUv@7$\'ǃcw긚/tg \ jsmH<wTH&rçF]< 4H"+A;`aDڈQ`q>8H t9hGFÈӂ2M>2 VŚ j1n{~twovI,r Ƞ}?}fdGߡ3iRNJb`y?a;Cyy~"KSV%:$FIw !3WlW /=Iio?rWCCdZ)us^ȶ۱>}y$ъ(Rd,/d*陕4@[Ty*SNشh)4 0Z?䑛5wQMRׯT7@S=5(I25=j<|<{aف.EAY' ÈT]JC@-DOs>btB$FW%C]^&dh mGa 0=;qlI%{R9E( +,~짪I,BNU 85Uq>%"bp'j9g5:O?*vHa-]ќz \}2-_z;C3/LϟI#fsMff3YE}~!1w#dB (zۂX綣Zhdu-oV+'/Og3y\b=iZ|;l s"!8j5Cƹc`$ @Dt4<!'H&5P!Dći#&k .ډ6 "@ӧG@EȺ67Z4 8 z/qďRJMZ;Ն4ō'|NaZW،Doti/ MsS}{X.4>#Z,/H )@h֚Ֆ?M7)nJXIM/,躞~y|~DIZhm ar\JISG'1#F'dT/T$I¹i0ijLs9}?[e}Mkqj'|=i❛8izj94DII&2ک8eaJ@vq֒'ӆhR+z?r!K 0P-ۆ(4jvB5+ɲ|ɗg$k%znnyzz9˩QRa35/ IRڮ8pI̋բ9504d&98u;iƞ//)ǓEQaos%w7<>Ђo xnu3{TR 0-YZ ?|Q#T>|, ٪\.f}%W9[f9Okib#Zo56f8k^^;r)M*>q7woXA bJGDRP,8钽z.SVP,\g^SIp"ɧD"RD =&($sD##vh&x)/72X,Pc}z-MoֲelTF3+ s(i[~`X'ADS&WWW3SloȒqh%Z4*O=9=(g1[sx=0+g-YVӯ_8t&f$!xʾ>x-W, ߣ5֣ HӟH5Iz)ք݇%/Ő0uo \T# NcC"ZV$J͘9Þ AX f@2Jxᆫw[DsϧOi,g=y^Ҵև)<fTo\V<|yH+n(u`?Q^q-?~3Kr6抎H:[bf)XsGSD2vA:H2&{~~7DaiPꑷMYQT=욚$6۔J͚)6C3 T.p[fd5|(puuC^-{w 7\-zҵgP]CE%a e"xߝ<F TsR$Z`?ܑ&%I +~5'?c? *1G~[7פr#Ak{xB }۰* 'Ӊ|3zYC`ٚ۵E?vTn_?fQj>KB?#t__^P&ɈY愮:)ʊ"ո+JsX\PtFh67no["-ahh-QwG蹙/8}y=!B׏< a6X.)"MH^"u6UO̫Q-(P~p}bls\tO{Fۓf3&:n3(5 q=?|9ݔLv@jd{w3XE\Z}<p8At&39IS7=0ۮ8-vmH-$D\]]Qhfj`RIB{T)"C}FIBD+|!#36k$~$U"iB?vm 81)He7[^_1$)բDJŜz/8 |~(ȕ$JNY6$BrdZpIAj%٬7\_]& sM[&ؓn$MP,3DoIlb9;UuA DyUXl[1tnu)L!Ҕ1& (Rh4Ij8Uh'~^(IfWhPFa҄,pQ ƍ"nOgtl5e^Ҷ'I!8TA CUQ& xGn } .6@!l1麉Q(Ҍ '`xiu,lJ~(,͙%JJ8U;} H5Pxv1 VTWrJyI1BI̷T7ZNɰ0l9Mwdy}2 Cwf1 ԰U*MYT 3Edbb iJ}KD1jO߯U?c7-2`'鋙NNARg'S(c/97@Wr,S]068j?LtyOt}#΍csH<8{^^_|k-/diƫ1bT7 BL aqZAXιqZuѱڮi@HC .L"`3042H'wu虔Q KOp#AR;>GɨpL?Us۶a1_t޺U tqd$1#C%$A(?8FؖHQƦ EU[svjg?0s~Zs9>y>xLX0vCr⠙S553I&][t F2R$rʛwxWs<; A(Oo%nvU<- y9OA 5:Ygv!0Nf vi]PW<~3޼}`۟t1YDG^埁p#"tcaL3˛7ؾgsd>=~M+o ,O/Re^Î'&EH&lEZbdD,2agyٌfh?BʌH a%chZKt3IOk{^| v$/|[Mgg:ld'g>ܱX-gγ[?J*,'3jAHGv́#~-_=G$xUh7 647{6ɜX&L۴EPIR[("/S>'1|x\YSzs¡fnt>]?R(2|?>1 l'ʌf||ĶVIlFwhHiL!^qk!aŽ3oTa{sTĈH8)I%mJ \-fDQɛ5W(}ah[lH c{ku˓v{Hp\]\Po@"氣ӂ˫om$cX7[T3]B_%3c!v<;?3: Ej{uE3x軆LIa CC;`H_!J0F6> @#.x1=]@(,݇c*MSL3w]d pl;ؑF"F~4cM0XCw-jԎ'+&GN/%"Wc q^ 2p@ mQx/jqf:2k8eRN9TՁpdi oΏͱJ}j ߡ'#O*9g q[4ߏ )uUG(0‘BZ 92  A|ra{yNUUG'QIP5>GRa;Ci,m;fs=XdWUu|>C!E`#tbǑ% O,t@ QB؏ KsnnnGbӱ\-)Þpt*cx hl4|gqG`<%5 ' Ϯfhp@d%ZH[1YII=}"e Ez)IϿx|Y,^,8xŌ$Xd3]סv[G<-H) =ła5;;Y"8fP䒡gi\~iWPUo_`WtlPmZbI1oZI](3$:dVl6ْ$2hid1dru""8-g9Q&ʱ~ܒSXڀru2a pp ׿M mU!Shod3͎~duGaf5/=y44X'Cg>_f%\__(\1%dD$|2Ae$9wDY`$Fץ3@R 1G\\fp0͖LtzHB`5(J37e:˱GuKΗS^\^%/j~ ۞Οׯ#nX82-iFeD1rf ȉdl$)gTY+IЪc) >8nl^@8Qz,`hL"'"B~ 蔐NP дk5MWS( 2#Z#$ڻ@YNɲ #$FKu)dH)jcG7w'<dl"T@FT)Q,/GHj|W#*v-'I<2PDAD R6-1=qIP^D11ƍ=u:FBRFB-E:G0`` `{6-JEc+RIB&$%2x{nh#SıET4EQp NHUBwh.v"eX.3NIF g%ٜ,)P퇏<{sxq2j~SfRI9E,889d6S1Muӌ0$,$I IR8N(8ɸ?,N.#{It>4bb_zAY@-X7`,6-}C%uvX=c60Nl8bk|u`&K&aVqfБ!%Ok\H˒r6jvHR콠2O8iys w(/q}ϼ((W2bYvtEeI J Xb?"4QGHXkbJAP(|H9( )%z)Q:R:cCR kq~yGUxf)Jp cMP}E'1#J!MS=B׳ hl#?YN~>f9:9 lP (4}Wprrr,, HcB@ExPddq#ghdP)A]0}Ǥ)(<$MQ$H}לB}QaIh]d,E)!4 Q! /3 Ε(iBg ƻYR $;"hۖkxTVEl%-ld2D1*2Q,#x $Jʲ$xGgБȳ0Ua 3\hN?w3tC6'VD-i@4aKkI~)!K" )W1Y +G'*vԝ%V+n<>X\(5Oҙ d\b=q^o~x谽Ey]o!1VM!F88]*+ɬaߵxISElqIx4&[z1J9 :qnȌS|q,}s XL27|咷o>pr9z*+y2A#"0Ubh;9jAkxX()9Qg޸IDATGmT&%" -[ɀ|Ǜ== C3$f/`X]͹G\ԏW2͛v9YpXswf<;=. O)ZdX`i £ZIi\,knKĸ۹Ec\KZGzwS$O*$ `H# 8١)qXgpHHa̧[eTl)`qulqʏ)K8c4|:]_qaLuܽY 5fKGյg#"C6"fxW/pfh2{g10#%DsYe%7ё~`{O[LRZf\_? }Usxg(8}O<;׏woښ_/8(4ٴ>&`:p~-I1?[^}yl2OzvNy"i@ j7d"rdwC<q~CPtD>TUIS88{2oސ$)YxŒ+0Ěxb"=8~x`[8̲2/[f@T]'Rw;>+4L^,bu޿H+ v)fV"zo[G~z#042TyܢPӯ+e$Hi[ဒ<1YDpWS|akugdE:J-2)%a{Çf%n]1 $jZcM݌|\`\49dIV't'yA5ł#GdQ:f-@$el:C3<$1Ăϟ#1cM{!fqyxl7,h$a8,"XE1}vk&BI4yB1Tq*dBd?ɯlwd~D0 eyjzly֛'L)XeTaK#0s)! 8oZ)Q$hUYPu E,=}_QLQ""NS:bE Seh{Yshƚsz'@i")xB?#heHf@J1ဈc\(& iDYB=#"fdLYC@pSBc:)y᭥&i=}$4Ե$iJ,ecCgIV4Ip|"2cH֏=!i G6R 'V| eo,x?{Y(،~}{l: ȏbz{OҎUufE'aHibó++Ρ+,LuJUר Մ}{G4xq~Cz=Q:!09ǧtQ)y%R55}ۍ14&@[Ϊ1Nojtdݶ"aǗ!):+x}g2{x3H(4;Up2ngN~иjsגrq *y-HXrzL\PqT Ǝ&-Y#uD?yеzG|b^Nx? knn%i=34vݾLD߲<$L&%>VS4x[㍣ENv:E2zd ;V'dirA2r}š߳O x,Ys@V`$gs F109I t"iC8׏kTsz =IlP[C4 ~ݸWԇ1~:ANJ.7<{~B{"eZ$󔋗H$ͩ sT VXoffÁoX1f'\c"xD)k-,&qnRo?=yG/w ږ؀7I,F.:_cl2( Xmɼ'06)'xPIX,$;f9u/I| +KEt$ϑ޳L#qxG\#SPƚLG醁}rq7 mC c\4IszGAG(D1ZD$1COĤjl1 :&L7z $xq1`*quvx v>Q،5}aӑR0c#Wif{Ա}p8#{?;nlLҔGp.$ Y(F芛5҃5f&r8>p#ޓ3+E[v{0d{2!߾}|&;(s Պ$8g<vrF}Q7{<2# ]S#gtmG7 nj"G}k}Ψki;K:L"Tݺ;|Q_2Olk\]^|`bTMW=$X=ծ"i7P59}@R6yNUDiƘy<ٟ;Os*%%%0%ilS"o֑L2Bápw"ǖ(V3 AO ͘oZ|ߵ/>kmX={nK3$ϩ5$#Yi6|C[eD["%riAx-v'V'3&ϰ*] hX{f-))Fs6A0LcGrI&/_w n!p"fpztBմg/ѹgcBaU~&ЩG*'tE?o#Ҙ/~%q⨤l*k(0"Y3Xin3D1Yoa`)iY4& cK@O+ONR-j>gY+>&|r:v35wX-.<{2x-dInCC*=JsbiDЙ2,l2- γ\mivR 5R48%1YkgOkO'tvwtTcP9QmwdQL"Oc}{!zwdy0i6B;KҬ ccStirG8W==U:oU eN 3y:$/H,حXSSݓKF)n?_9ˌ;,E M!HKkIA0{N r 4r6#K9îޫWrE*lp~|b6痾߿!N [84ΌE]ޏRHMӎa!AI:3p޽FT Y(ISF7YuI96c' ְ,C0;"98A:뉏Py9A*M9C)Y$9 AB8+EPQ A% E1}1^I:$plؐ;4Nz N2~F]$*VIQ"*"#L(iI) g JlG]RG爮kd-=κOb0F8c$JcEN)5C (p sڶf<]KcZ̈fnwKy Eruӳ\=?Û$ҁqr ~:q%(ʜ,NϸX:>XI FhvE\__sk* &n)D% r~ (~$s| <>n0ĉ˫ ޾ssW=IE|K~kq ^gyZӴlERNMU# $Eeb6c_xLp%b4Di$A DYDZuX=<Ӫtij'qhRй!5 X FxT0J!?qw#II8Fqply[8FGWuGX ȀkFgD5(F'1I` B)x_?ge}KJAVc<03LH%#/"4:$n5LkI㌮HM]%M߱lp69t8gG;#Na,l8F=F`[(uCu8rGYFQJ2ѹ-t%ǟQXg.cʲd^#eqD,F8QD-xQ4f"Q]7RB6-MӠ#IiH! "c%1=Pw Bb I>|F!A)tg-Ҝ d6C' 2&Z%N2c:x飯{8YiTd1VF#ɔne;i;G4HR$q`6ƖT8)f V MExK7( qxViX\%(qOo331:irYT{v=iAS"./W,ps{`)#N >\G?>"h >T}R|Ec<L&l]'cʙ$,y`=_~77t@U$e./>;P>6[W,ʒ!ApJ tzQ -,/x ]KV,e`Ff<ж4;L L6c}{G \}hV||oIJ<͠gоH4ӄz$W$%W1ZJLa ɇwTqrB< l)CIS`>6ti<׏\K6tu= ސE2!cRDKڡ>RHb0h*M, Iv0 D1C`0AHlOS&`_uJƬeQ7{nË9PjW ?Ϙ<ط]3/Syi%Լ3"FRi1f%]7#% }r9́_=m+-U|7߾ގ|!VK+ noj~אM )Ufp=cE̦Qגx>͏ti3ūKkG[͸8%/θ-iU 590Tv,{Iufhr|9~M)ÚH?#f,Jv)EJ]~1[YW䱦b y^ _ˬL)XE UdqIg[MCehn W9~rA?;p3iɢّ'G1_:n]caÀʼ`g41xM tlt&̧ltOTW' nem{Ҝ4I-бL9$>tA[&<+xx l1Dє'pw-ip!+glHᘊo<08G=u'rl,X&ٔ}8qѭ!I!|~s|~Be֔iIqcÞ:ʈr0-΢/e~9#s*yn虜.> &O0uKc1=CH8"M#Ҹ5Hɡ(7yI9c|E2D%IF1e1G*Oa1r-glT29iäHy8T miF:۾K>{lNuci*}M}w+vְ^)+yZ?|NCGǤJ?K҃V,eZ.{ 8.NkX,`MV@wQD""/ѵ Ť>T-w yAbvC8Oj" ai[4%cbAH=xO8֛u5ٍwc ʈ㈺GF8cQ43#Q(pcT;-d!C]8`qLfTUEk$Kn\B:B(.;|ƤHX p(YLI{3dӜLlR׼|woþkz)%"4 R(q :h=ys*3X-)sDa:QDo,i%5?njŤLoRb݇kn+V rs@V'gm;BjY@)"=?Ϧr5m_!]?E`>-Xusn_ooezZry^2Tk(f &Kr-{h]b"[fi'4UגZZ$#D$z,J1uO[9~*HEh(' #]]D\gQUJ-ssDrdI!au0 b8aF=\rѶ(ѥ]K8 pξse(4Y;'bt);IHXQ75;4mM+RKI׶Lӂv>!hdS0cKzcuTx Qvlh4c R%#gQ*_7"`w#߹^U+l߱Ŝ;4eE}hQď QA;ba,BIbam?:Sg-,+fMg!M#0B`64K[< .xڶ9z38! :Lq{$Vs~4˩~? B<QXKG|q~Isqcrv2Ps/\v\pqv·f7=*JHㄫsUL;0P{2b1;eU"q!b Z x\ $-|7oiVjRD0p! ds]}A*`dN3 r<8U4%S硪*Ȧ۷h䔙H;C9Yp-C_Ge\ɒp=<*P$j"7i{3 `q6c ]N8_] C!x',%DNIIY>]wǴETm Ŋk3Yj}%[5l3,FO&5tGg=>0+r^sfYڞل HB% t=qpT-dbūg}Ycɂw "IUGnj&>z@G@ XWr櫋s&Y=Y!UᎤ(Oxyv`:1is(C%zdqcz>^Mf%T-&D:C6 aVMcQg Lfp+8P?mn7lm(xqX[(b6c:_!O R㜬iD_(K!Ւf~N,xyŊb2#Lqr.fSV)/_RWk5ERQx G?7ƀxGwק_UZk!X04x,RX,HՊ|F8N(P? o;lߓ(IpcDRۺI'h1=Y Bk) W#KϞټ$R8K8B^ZL1,r6!} Eځ,J~WqCH~b9ޑd -tCCh9NO xDs2n+L轥Ȧ$8VP%hE54]: J7R$%ѩQ$'w;OG`tGf1'F軦]v@iB0C*Twʿt,ZDQR8i)t<~Fw+ExƘdvlt}`ќ: G_?pޓ I#x?1֢Q%'q-Y$:Gؿ;ιO.,c,?%喙m1a$1XcI=5"QRH@۶LS_7t9e'R1i,MנwRR%IrUљ$m=ZGȓ' Y5-ZkŚl*8cK0F{Ζ+h) =Y]ԑT3&NJHHb=Ώ =_ 'EI@'XjO$ 氶4ՆyB4Q1TpqK %Gيtr{_1}Zz"TN9i"bhCYHq’_^d\ޢ%)aڎ2֖V|ل_y쎶QOPo{N9l7"D8OhP|x{ճ nD$NCP1Q9Q1dcyt|/??#M+Ps5Wܯi&g4 %Yp{K0Kˡ2t߼#Ĝ,%41O?W_SLGD])ZЮ%OM`]%9''<8Ad=Ʒiy:WselX'!0,/O?@ 1J'+%a6h2QNzrE'*BR2|Fd)XB MG?}%&s͎IجSʸ J:aLRRbU֐3M;ly .H޼nOH*秬)td-,U3c|oۚryF9Tv#{fŖ''dy7/kw|ZϹ}-,J )+³ٲ[U>Vi<yhӫ cGѦG~ei[x#y0;aOћ=ŧ˿wWS.<7LVϸ} Nn6 b-c2xv;ńޣKs,l?<ңA|mXGTw{I5sH%$VC`,Vkr72y3B}@\>;"x$F$ֿɆ|uvQ)zNV9bZ?nI@Zۚy9EFϾ5ݚ2JЌGl=?߽#D#fm`u.)Q֎1YJ\{tmEzzh m}@BP'9]V/_v.a9L)28oo' @tX2d6Zofla`=* }E,"0c;X3GVm0<]O_OY=bB~'??恓!BJ$~{ N 8fZ|B'ڎr6ۿlQD9a1q&~' f&б7xc:;i8-HI}e9gR?篿gymq2_wlcۖtSNf$8>rJ&YA?XZӓe*1'?K_t-hePDk\G F16RxҬf! 'h$o2H__AaJq-]BY<)tD,V:e=3[b$N <#{ʢD1/O}u9UHzc^@D8U2G%Jz!OQ'͠,H9Cտ[; ?œBWȆS*y!x?6Csqvrc,4s"?+(8<".P3׳+>stM͋gK&OA x ۶(홞[& m[;WW?xk In(FH]77l{Ң>pCOEI\m9) w$y EnFpIӔX_StR1ذoKet`Gg&e[OP<)"Ocyళv "OiF>/IRIVHt<Mv487cIkPEeֱ-esڞ/x%4I{ ɜ |f t~?|V0HQ.)' JID;&sO, 1G6L*n 4G.qD'3\`=zXN8]?fDaKI~z9lYo ph%,v-M7{k7kC@&, bWo>?:&;"[G"2l1b*Ir)DLOr|{@Y#{D~>lrٔǚiIe9Iɓ dQ/)/Բg@k*'m`h[ b@+O=(?%1Cp~=t LbB Z#!S_Mz|&}em33g$Kt[EP$@A B""sLٽMg~FzhꎊU} #[՞ɿS sMo?!b<9??Fcٰ͡۽G ɧOX)9%x!H -uӱ)O vl= 3=ñl6#N=GH mK$\.< 6885c X_?|$H#]x+,eP tw_2,W Xyx< 0l:"[ι^3v=퉤Hwwp< ;KOޟhLh=/?9 =q1T Ŭ`y"O<3*j`ihe(dBӰ5)VyŊ"@D3v~b+X\^Ja1p5" ыAhG@:45}yd5H?p{&^sbN?=`ǁ#!0c52Xp!ȋ9zг}HxX .OrYH? G^KEpQ'?'#È4Is=#DH1-O~—%4O Cp#Qe=$N zoJ.bU(xbLN, %*P|/'_yIQ83#c.K /̳ yLwӴM?X<y'n݁OZ2FH/[rȼCT5u#oY5K/;O$_,tJ*i/])kad,k ݷ>b͇CQ\_r*RboOt79Un+p:> q^bqӺnb5% f9I2 ͆:Ҵ'Nm'bDwvwdIFJSZta`LG\nXIЁ ñܳXsϿ5i[z_ 2?˿`uby1#N+ʪĻ<&GvuȬ(Ӑ9bЛ/ At'0D Պv4 C<'/cV3=qi0:~=? Ym `eWݞՊo(ZB8!>ôÙqzK RnG>s?ڶa{Ʊi+-0H yH`?YB!*άi-'VV:$I 80ӣ>m©e& a<ٜw z0Ǝ5 B@0TbǺ:ں;T03Z^a qސ18=?[ÿj“!8&LȄDiA5iqg[pDj gƔ,MmBOφ6)[]PhM9B ID9?ޟl?-^#MRMk s *B;MwQR$Jk³%;Ib_N`4~I:cqxZ_/$zS8=1FҚ%Jf ׼X3N0rLl)JxzmoSa 9{꺚&L7)gӴ4BI@)Re!Zy,])ynjSa 39n ?.֚4MhDyt0Jr:_8Xβ y#;(a(7P[ǡ Þk'Vae_{ny,'!`a3nⴅaH|ùEsی8xgi@PHGCCcb qqC\!Ϗ;c:#yN]:X| z9P4ơ~dO#"#1* xz/oYW7`;ͯ0oaq5#f~$Mwe(aCf$׳EpN+}K8O匮a96vIH?D˗ۏN5 bݩG8-o^GsM%xG1U}k8T-xFk| u"X_lKm;R_m(4̊}۲>|=JG@#d\dq8'VJRV5Hk2$rӜ9-?ox޼zE_޼:n˘Tc6coxk6=/94=C=/.g ^ s8c"CZv@ݑ P͝I(YA#n HƐHĈn]r{3vh[*"ʳ\fw ɜS[M5{,tl] #XrDYf#Jޑ%P9ŋ[N=1&S~$*ɸ;7#v_΋s=a_Ie'^yM%V3t-WlM}&y72dƔcזrQ,GCߡGXG C# $lFئA9cX2Kǭ_O솋^ x>p:: $3IWKN咪<"9Y8ne?ӎ<^N 2IBI6y\]ry"S~lgJ񉤾" uVk;$t75x}oH:N| (1iLu\]Q5 w a=̓xQ_\.8"[)Yl+d v`-9T#yҚ8 /Éo|UǞ"ÞO#X77%y`\3VŽUWW! i5I0rDj&M"uXti2m[#dqn3Tv3ra Қ"q1:r} NRKM#qbJ0/ Bǩg$ *iN6Jbɡ,B 84ZOr/18FCx`ZS-УIFQR2 gF@S7=q4 gt(c $qҵ4 C8h'WS(&Y͐fU]MƶscjX8G:)Γt7h@G:Œ,͋+ P-yd{<\W2ǁP$<{`@wh/HØC?b s~(I0aq6z95T۩ckiH88UO4(80KBCiНՂy<26Bi6CC];kС`cta1ѫ("$:Ib6# 5i"EDdiƾ:p(sw AZgaÏbb;L)j%C!:ь^K>n;~yC: xh(:y55rXc5  3Uw\t H;mϽf%mSRn^]Ӈ yFZW|$yj뷼|#vt|çRQ=lt$n݇;{K74mŧYs:<rRV-|qr>Ck}Iv?p}yI %1ښ+YX.g6{p D!z мe E ݑmHQ@JK$O#~ =˯yK:-野Gl72xyֺxErb :1Z,p: i WGftc?ruQ`Ɗo|曟vEhՉB8TbWpQ Ӏ(ʓHi;< O4:RBq;(&M8K4F{wTlYHpTs*ty*bHoe*ơc0 _㕃ӗtGCHA&.TJ`-\VH3WmA&!w=?ޓ\tn`wjr2v#y|8/XQXߔαwsy۶C xOFqrY5ArKBcІÅ=D\dSv?m[=!|kQHyGDpŒᩡ,9l\^1b K8 Y|^ -2 fݒ37ϤBQ?w-IݎGγlv@v3]mF@$N3dy[tC%ZB@ adG}IDmbXp<(뎺3l7w;$f1l^0JŌP i[ 4Œ|^ѷmײq%vhfk4u=ܽ,/O\E(taPRU%_~񚻏[~f웆x_SAK~+Ra(1Yl%~CM"„e0zfnNT)..Ӎ*Pʃ30GHMStmTzb IHxQJw'A,rX;u۲# ,[ }y.s:)☶Ǒ(b29Ɓz KNI[~yyIƤyN&XhiA:˱bZ]ajYyC7t6C4 t@7:cQcam; 7-V4"QS!#qOJQ禅tjx;h{>l-= G+USݲͱ}͛K"fub}`= Z=Mm?)FmO8o5lzMR,],ٔdru;x35,&XILߐ. @iy'Xc05Q!zj4fqhN5)iڎ@H8&TE1c4Mɰm;xz~p؟%$6Q55JqJNg&-$!/ҩ= gc! <(lUB`̈w(J`iۉ<{#v{(؉BP5E:YssoUU@o%@ =Bχ:'lV]EHI3e:D! ij#=T4fi1, he$Wj~vڍ,!m~}/#뷷/H,y1zYʡ+Y_xyqI,R?DqY%,`^$]E tuc~ษ@gl''+8"kfƍ #U"Ɓ[^|b/oZe<=W;֌qjdq l^ιY͆)4]R:h|D%Ip*Y.U㬧1#z8&=q"wd,R|Y\JKЗ,Bg6-3YL7Rͪq渲$n厰iHz?Mhjr{<hmSoɢ^\WͯpRwo["Сgx(9qɌXq*K-,櫯^&YX/ (sNXIB lJqbyKB%ÑkC₺h"E*t  LY_^w,/n2 xŚSr:EIX3OL}nPAҝ/愁7-\94 X1’.xDЎ#B+4Co~Eu(<٤Io[Ԧ&.BLߒ M9ѶUסg YQq<<GV,ؕu,K0lq8Cm&0wВj7/gOa H -Ib&>m*N%5Oǒ)CF!Xf3x2,Yls꒯޾ pA, W|G"pÇ{^(:5ٜWkvg\ףCs:{cYddEHRZaWk3xkPhY V<ى9XgHy* - P5: A 4:WHB)8(=a2$!q0JY,)ylJNt0qP7I:X޴t"y}8,"xo0`!@ Ai"4y><ʈd8V5euo 2·@OM >bc5'br  =*B04/" dGCP`IˢtBQcli[9+絞W,RH0DI@3'/SKB 9͖ R1u0zX$!zEM?|D^ЊX)y9nZ6njjP.iG$dyAIDU5;L?02]hN3+f9fv%Ql\XDYB䌣 1Z T]GkFy(_ &bxH%1/*Pˋ5.{cv<;,eH57M"dIHc5.X0Xf|q0=e Z9:lPZ֋9Hi(>DB5x"MbN9 ਪPJ8*,`50rD!YVxAI%x9֠ E13wIS`>6E|Ε&@! <)>OG3Sh6-Q#fݑ"˸}ͱb@f4H?ZiF,[PD*lHi7\4O4AFMhDAHN3$avCi*64lwfb AU穪89XmrzxbF&? J;6aO6=^<*v`zEyء%51gł*=bpo^*f<6y~~ۗ!~ 'vDz!](3tXVD?7PI^_H/94{s4O\,V3Y#;MR,2ƱdBj͗/QiKC˧Op|!Wo.cɇG )HDBw=0! lAXHjIT]ϋ"RyY.)V*E (j,`4?|-7,g:1ty "K#I炠l=,#oE᫁8A*%Fh,dͱ!ѨRڳ<[,)nsOȪy53%o_%)zt]_1y3Z8uI.#>`F%Ϩ4jKEFiv]C5諎˗heMГǚ_D"'GDy SU0GyW+NtBf8$_庈YhM E%irs~3 "<'F*`YpgCmBr(pf}9yjɋW7J2%fYR/XI9<&%aGlF69޿rO'P?%zuK5&5l9gHFG@;;L{7?[3 *@!q!cߡ%t]`:;g Bfil|$Φ`ū[(tmyD3Vjt!q"RbP>qT.Yt]\dqchk7h MoX,RCGgx2PV % <CԚの֐HEq1+TZJV49mI hh4 0"X,jF;)bb(LSa7 aF `Ǔm nxyFo1nNp8M䪩IӔ<  %JGhhk-Mےg@cq"fmby6IÔXH\Sqy5z˛[Kn)(1mzڡf^D :fYF(~@SH bd!W_tcK._)V{,kZ#|9ӞbĹWo%Ua@$'"fl }`qQ~ 00\_d;$A)ɀX'%Qo^ "r,ڃ(1ƾp$ ^[mj18K)Tg+d 6?O8<8g9:7~6 0MgɁ521i!c=`΃LyZڮ pRP5 V F [;azpXW%97: F nb !޲kNt& ZJ)'[;xd~qIHPRaZ$|Ax hDh{88b:R4M3fjpjp*px;$aD$Q5^O\pPddYspTuԚv}#O5ZN ,CVmb9g6+aV(dGa2YL F ITDap:4gl7mUh/X9Y:x^heOXgkVW~3|zG@L.yˆ=b&PaǩmM1K2OM+!҄qKN1{|}}BtAzL"i8l7(҂(3" jja%HH;nv(ˈlY5BoJfC雚iGj;sDZ2R"D6%fG݆Wo_,R/VTOl5YK#N@Qlϛ_r]p#ZfΓϿ}PqE68@҈Xf*U?p"t׳YHko\U;|͎fȫ9w*qG+#N *%RF6NJ80"/R@1 CgNr\q\?o;n`XrqyXb)(6rK.I#MupY;tgLcU2=?1,#@r#o(w5թ߽+$AH&x)i#Mog3vq|'(j6?8$4=ro?<=H ' C-( b,3V]qoX4YcE$ĈGȀ/g$iHӎTȩipbLSQnoh紇vn""Ȳ`;fȟOi,G-qe],/X^q V? ]RW x38Kŵ5vɶh}ے!Y4֏U͇ ;BTP/H965 b9KN}'R-[APy6YS9n O~YQrbYcÄZRu 3~cKR2:33AI& RH(>-ֻ@eq(!#6Xk3\g`O70MPQn#/28fbϟ7#񄒂)֒Ѝ#N E)Ij&4 Ch ]M6T1ܠ2 Shb΍UscK+mKYά(,Pu]fsubS+ 8疩sgyBG6i7:7&YpgXb:䅔!8|sPxb8ƞY7qۖwHE\/ƌÎ~¿ڙu:3goB" }+h9g4GB1膒76#Z $Qn Fc,HsTk&SǨ^ѾEF)nGi 'XDENq*wENq=X#d[Q:&H$W+#m]bnɱ|GWTcl,H5M;@coU:0ȧM pHC}՗_4mO6D6`~dn"tgԇ~=>q tW ||o/q},HfUn5W%,"ÑxbzM1D3o9!ڄ/ 4%6䋄qvM%++ޑu'$!q[0y\V@p8n7TO#:HÀ8kڎ@ 4=i2@̓ǻDdZ鴠{ٜ+6;ֻIG~_ق4/ho:yx|/ޠzѹAhFAZ\W\-Wl;i1u :tO?;ֆ#IзuSmŻW$jN5?=p;_cqF{X\./=qG˗쎆2Hy1 B(ڦ`lO=eͻͫ7ӏTml1eY6-RƤE|s؄~Cb0& աEj>C 7D* 5eJkQ2lă/o1gSqdeI|  oQ0oxkt#R)$mZ0G1B7UMj1+6 cE1IkgIZ1#:TmQds|\3W7J Z,e c=BH`j5Ms;NARLsr(3Y; >8SG1ӑcLA(%3|ݝ%Zƌ CO$ C λabMSl=г,h%d ͖A2=Z*Rk9NcЁ[y֘&1niM$ fh#5_ȄSiyr:*c8:b- )=vtf$ JaȢpiQPiR0ZX)jϛ,MX5fOdXGnƖX%B0S=5#Y[N"D%yztFId1[ v6+tr,KP0o[;^~ ?m_̲&h⇇G^0󎾳GK9Xp8%qҒ-Ϗ]EYٌ$IͶFyuyEg mi9'$`lKҤ`}1i }]m°^BkrF&$ePKE:CEiF l3 5|%=ey}I>Df$Z[C:+DY̲ \a 9-kI~pl|E"zmk0x^aڑFŚ$77Kcے'1D9E iۈGLO,W/҂Y.ޗ4Mi=3|bi`eT`өVZ-aX0'Ӕq0Ԓr4zB ^Nr4}CY4p5ϩ=RI|/Wh8e9o zE=Kx|(a@"SH(f9o0q*3/1Y@;}qY75q~[#En%]/ATendiOL<ǿ!yCaw-}70ra`'Pvv(X7&g醞$ahƆKZ3mG.ESGU;,ӧܼe=LsW-VĦc0B hN lc{N%g4*kjptA6lvMoa-,wTbE,3>=Џ䬘-醎yӶ5o^aw)l8V'񈖊"Iؖ%V)dЍ#>P3t2ޝJ ƕ<ҙD?s~n/yb9)Nin VAB S{Bb2:pb o Q(jsFYKesZ)Bc 0tkf4c&.>YQPV֊a($=`Niˌ8TPk4h51Ҵ`b9Ck,RDd;n8'R H[SpY"Hu{a_ ,Q!??E(I۶g+ ̟VqRcTSL͈D,Xo>}HJ,SUy8 qb4@i\?Fo-}RUCbXvqB<0"I$bL#a\,xx< < fdl dRKF CM?$Y,MpƜ{#2{?XXA-#st?UA2w7\  ȉ|;= (X^0Bq>uhSDjzi f?0/H"#2\EZ W ,"#vJ?,J2pcCs4W^1ܾ, qQDkZZ'9_vg⦅~v}P̼,q:/*bY %)=yQQ52~Yjͦӄ8麞|5t,C}>친/4(i!C(0msr0C!2u_i5v$Q|8r (ܼØjsGߢqޟ8j˙wKFzhE^/g5D4jff/<<~!%-B6W YXB3pCU,oozDwD)$h AMϿ2@&W|pKNqFY|㢤Hb/ƾ374㗟/ۆoyQqZ|a:C1*(#\Ǐo/$ժ`Yr,>TYny5kQDDhXMv5"" R2 =B@ʊQJ'5EfTONJ,Ӎ*y_)(*MHLb=Nz1'V^= v#Ӆe5j6cH3}Msa$,feLkAp; BIp}#EcqEF1(!13CݷpZ)b^J-Y"71yrJon)$Q}۶em8bIF B$:%)ctL?8 PEaVͦx_c)RCzIX'Ќ$ ۧ(R,KB@sixį_wcsF DG)Z no4>eܠC~K"IT ׫%г\b'1~X\,ꋄi 9_躩h# ip".snWDa ypi;vfE?^x|TLf,W+"gِ)]?&y'e- =CE0sYB%8鷶<'suh GH@ cWANBo$N$ҩYl&v#u%1Q>t̪1#unQj;OeH򊾵DOp[W#qӉrruï`0#y;q=_8ʹ (Nږ˥iZ,ivh%ĚRb|氥eԽayE%I"Us2[1+7:6o?SK|f{ 7qU-dLFF-~l3/(0X.ޮLwD<F0 UyY1 E^$̪3łf%Rȁ<[N/[\cQcQp`,#}g(H /pﹺHE86+匟{>Dx޼c{n|DҠ$[s; 9qX#Ɓ/_dXqݐfclV RP$%c{Nr{sxjFJkȜ+"a( *RQX4bVp:P17+i[2UI;r\3߬ټbhNǖ~T4Z7ןXSYUeB\hX+Y3hӚr<^xxǷĕx9sT\?3+gC͆˥ٞѱ:O,-A ﮮ Q*ZLHm 0ۖH+16 RHLz|?RhZ Y"paYXo aR&9T)ҔNNHJ  ɿ_X/$qN?4e1Hgj /_q@+88=w@Q^QNu %Yd5Kps}?>3a{%s~ɒS~uCyU`,]EZtZ̥ZC&87w#*lnBW#4R\ڎq0'齢;IcEbMēFe9Oq"0ű@!L-J8N&u$j*UچD Q#i` 4EWc>a3Q Dzto,,g+E Ghơj|牢8*g,+Қ)֘טt9 U:I78LIItty1״C8vt]ʃ 5^zyU@P4Ή [؃O_Yd8oA]Z_Ӝ׶hag!IW@PkN_v-_x|#g\}OB _1d~|h EI]t:r=s RM5ksCony r,olp*CHN4 0֒D󲠹4H,/I,IӔ,G]g̩F{a4AIpf|u*HS1#O Z0O?N ɫ|>[c?~A9Ek-_|ikDX"U׵Aqh$aaE:gܼ`>cțŌ /`O #=_|>\\74M "9o+hO|~x6匫͚ۿ|w|þɋ#Á% IH#E̲¡nY.]׃R88Qii#M-NҒ$~Lvc5$"+SSKq =+GKFNxjTczͼ{:&6DL<+^(&G0SoQ.k@1.%14/h EfsE|{zkl1ygfo{{GNHg!% BL%DLO·ɥ#F:cP~k& do(ьւ+>1}΀'JJ89֚2ū_!R긴N֤$'7on259&0'R$Ip D^9XDQL(%h=0ZnFIB40/0K5#RbI (!0COO)'h5}?Ox  ="&K''tD !Т$S.m3{bPbMӼFvD?L1Pg,34b:;I1ƒ&~bzZP)8]@o}o ɥ΂7\3ǦeK8[HTgdrr`y6ۣo ?#QĚ,  #I:8%#F{ASܕr 2k2`X|ZTZ҃ZTRD0fI$BQ9ibGDp,H\sidMDL GH4/džyBd$QBP%GSj5mWX)*y:<#N69χLTk^v~=OH59wnB%EN*X漜.;Kl( tv(+.3c-vכ 7"ȑ_)DȣXykkg,V:aߠn:.vE1#,pPEk WzÁKȡ%^:m渮C)xbY` K0&гY,ˏ,9!DܾX+gWKڟ)6' =79.lFHPY<ΓpQXAbQϿ i^`8?tz&O2#V)9_f2r VcƔ's-YybF+^\6U/5bdEN%%KC 2n/ 9,Zd< 2yObg'0w!5xįT0 S͹4y#L̍4%Z^YN '6IDJ V ' Jh;1Ypd6"cCSe 2mi3[RwMMtHa~/RV/'4]{yd:uSLfg45Zk6 mӑg Y=h"pNNM^]H> iwsRonwMawӎG~i0*槇6W~!.rGJCY,#-5i~5e)p;~eS)PK JM(Q@FYL8rNʘr@yH =аH49tH(-Ef(޲}~Bؑ`)_Ei˪ido6K5n(n dhqu;?Q)"\\3 5telj`B*=q%3T9#%Cgm߳\,y$yBȘ]/9=X_L,f{tI Ҷ'DƁgdUJH9>^^nO-_3}w!iK' /"r=r@3ͩ?}Lm{YN3iOcz*ܙ=ӏ/_ v1#%\wE=Y.R7jc#} >X+`;zv/ψ0ҞOnd{hxTFhƥl=8'/cYᄡͨGqA$!k7{|#"5 HN󇲠ўN fqu^oLj=#"2Ck3.i/Y/\\{G h/1h]BG1˅=r<6̖*"KDD=>S?6[V6ܮSf50X9=`O/Rb8#erqȸ* O (cGNA}rDdh-vs!5RO=ݑݻ  +x}$gxFC[R\.=q2={ƚڋ4azbYQ@ ÈGhZlbXGQTPW8Ȉ BGf i~{^S ^5:ːIB0& ŜxKEqj\-/͑㙺74!fI001LhPF8dauCctp@'Ԕ('`|u{ơg4)3'whofc8HQ$JHk.{GZO&W83S\֘o^Ʃ(VnXCeUťg8cV-HھۆqG泊?i) T$#U>m/<<|%$t}j0}906=_‹N3Պh_+e:{}pl nje%.<}ś8` 8I4XbATyEUT۬hǁn`tZ,)*N6Z_SΖX\ˁ/Ot/\_KLyAeyNSP+Wd׏lq]3n)Þ\u79CLJǦ*ق4Jo|_#i@HfR1mעne=0/ް'(b^1ZK)O'^_;o\]Q7R8|"0@o T r9'puB ;ko*&߄"PbyΣPYSs ~cnok,iTG E$JN QA&|9ޡc OEQti5zC-Z)|[b$hg7r^R\b*L\*cI)(5,Ȳ3| 7xu4MCǬV" 5k%ؿ:uӰGs.8Aʩh)nG4vnSRb_]}$OM,[ dI΋ILrT\_]^Gc:IjKqZ{H( 1-vf@=Es>( u4o Gh #8P\U2\W1tMY83$yfcs _)bjR6s|ӛc2D0ZriYWUd}#O5@Y'WQ0_./{!KجJB=alšUݧ[x"D%>N(0AK yy~ɋ|v#!odDXD08n5"%4-_#=m;YTĐۆߕy0 kqYّj!C.[19!՜O{{??";H~dZYGo77t37eGniLW77TW9ʼP)}Rf1" #.y~3"nxBK80+TytBKl\/f|t(iVBwonpjHiL)%W1|DXG 2B5дCGҜ⊘5\/i|"1rfxnL"%7߽,9\:T"]z1r=g^ӞӥEi;8XX}B*;nn,n 004G^ RCY `4ta=#r4dIm[ݖYW7Aemclz<5~zKqu.K.#pA{T!M9#M>OG·=t7ܾ&Y|g,p1[$EU \Є|'y_FN/"cyuì, $i\WfRF 86s>_tuiuǻ7$e YʹB)oFͻwBE91eM #p݉'et ٴ4ϔJ@ftŌD>Őf7kDQft}4/Fx3Qc^*_Xb iZ%IcF,hrICn\x2K?+YI)OW7J l6(ƞQbtiItFf %fyyz8t]Ӵ4EI5-!@e8aRaYmx|9{Wx~Hy{H)[I>sx0_-b^ #oo74]]nC$ k_czͻw3z`su (r\ȋ%Lw8I4(I̱ktc'aD P_p f8_`p8^v;>?s~DjjwߓJGY"yQ(A<7F)v#oooy?xG.g)29X"%_%}۰g|=lzp#3$J1-f`X'})ipmZ9D5˙OQ %D ? $I<+*&Vz}nZzݾBٕRH!}ouݫ?NPx9}ʊ^c7wWU-u:UJRAp^!"ͿbA«sr)@`3na IHsюH8OH@ @uD^OA׶ }Ϭ1=ys:AS7bq:IMh\jCr" d^Sr8łLGD]G\Rl@C,Y:R57$Œ=>ɴ&}GLÅGMBJX넮kf&(Zާ2",Wy{fX[A79qr(L;M5Xg1eız{<^ l.|#Ĉ#*h"$4zF@^"`:[ӉD,aƎc{$/s(a& oxey{`ـ5?>cqwUҟVe>jA57'0-Y[SY0%"gWw\oj+y0H˟5#28޾yǥג9/O?#3s˱^GBw4һXkp7pswů?o$QŪJi€77\c4;"c,Vd"Y39b3GEK^~}bVxXvFb$9Qq:+uԍ%HdUWYhCV$jxaP"&sw,W 泜/?2v4!S1F zQ cf9hX+ 9[9}1:`# g}"D9< !O'W\ .RՂT$ x'vpu5 ury_̋%D"Ғ|al/W+<_'k}JǤyD}9%e18"+O$ZItس;cG>K5@x:1-CK%uݑE^ gG18( q8!f*:g'K\yIWi@8J%J"ڡLs$a{:O83N:xoLBNr|b0#I]HiN.uB y^:A$I= DQB}Y6':72Ya,H:3LBMһ8)}SKI435E6W)™|{W|a 4|UEN??EJ| :I9]Nx)3t_%^yVS|% ,3;YiqxA)0~s_IbC a"q᜙@ޓ1ŚJY,+8S3o5g"[7!M͇瞡i*It}>\n0cjV1Qr9u/^ffqk}Kpɴ5|fI0=yqlg՚å</_/dRt"Rap }8v(;ZkՊ_,2/%>Jia-jN-|²;16՚5%S~юy]tf ET>RHc'sp2Ơ$YkIt57f\'"LJWƞ$:T61ar*)Ғюty^FQBcFM4Ǒ(Gg)I7-L(iۖ01(",IN1!SH'iݑ)Z"[h~JП,̐X<`#]nI'6[^%}g׿;iG9.P 6f =y6Cs,kt-ZÜ[ 5:T8$Z2OC b_H"Aw:Sx "~ϧE5 MZϿ uJiVaj3"M\87\/oxK^ ~ oVKV/Gr<#͚eu i:GL k9^h3E\[U>X (^ H!~al5cGY)5ODTW>s]8+ZNAt?gtw"Qae{9nƇ6Ui{5,M ۇ=V E= Iyj1} wy׿>78Ls9K. +]YWvǼ\ͫ8%.Ο,>l >=e)kZ$zA=T X1;˒8MךágU8W! vħ1Bk('+~"1T%2֤0 O'Bx~ lw"&Z=p=g5"c;rU87???82_%x*] ӟ(ӨDupsjX*>IlbαQD?X*\Ag ΃`k-EIR-Hpiϔqh.53iY-g<_Ñh6:š0*C RB?\q pt-1ec`ARm&qq=u}"1C۲I#X'yZ3(!h <*@)AS1n-b{MVX2#7o9_Ȳ,n=_k,lXq,JSNal:suWr|Ҏ8V4&yәzM{JBĮqE'rdo'HkiY_~~ZT@%.G8*+D(q8wh!Hm߶hR|?UiN$Y:#e #I 췪sc=HiXrLea-*djoRT]h)!4ȾHD`V4mK(v$OCD\.G<79IDZ4C-I I<\@8`,YbY1vkE˩9BKz:x IYy&Q{8v{«)$h F4Ix-UajR{5 fDJD)H/c-F#N"ƾQAi5VezQ4`gi/ 89u||<|O#b<=?cx8hNGS9[f MjPm;2޽b{8s4BV4uM7HgI^^jA%*#oj8Zt< {>2G~G~énZIf +˙Hgd* }8ŌX5z0|xT\ :KPM}j):&b^RNdtlx<isC=IiJ3t4mԂ"hm;j֫kھ&\r>xsK7~IDk-yж,8[dF+ɥn"|1xGt[;^E~Y!DW19xt}l6ԿkQ@x24:>On)'h;ҽrlb:Xc[thGIIE vS޾D* $ ޣUr:M=]sιrrcoK1k؆)EJ4DCOKȳmHc-0na718s&~i@@i20/UcK`YbőYY=M΀70;U]U*WG6G4@#Ϸm﵂iof(J\'!q3"t0SUe& mP%wPCM{vX˫+'Dl1.\{\+ *W}:t.Gtd O;0H:nnTʸd}u Q#FG:,c-c\xsd^-Uw&/"vOX",BȀ{go܅Y4oτCNn2pC>?Œ낟>@eC0gΨfe]\Fhre\@ޒ./'pa y#J()8A/ *8?Y?\_|02%TJ #uSS&)=: jgm uH?W3χ sTSxAI6[&cf{uеDqnDۉ"!jU?:Fe @oq޲l{ $ kI$(ۖixx_.4MG ƞ,O'C?Rr!%edQ!}0#qW%vfC;~?|{zV{4#Og@ ;Ȁ7(7~3y38ŲO1Q9HӀ N-O,w߿ezgNՙEkjT E=e`*=n]S W9ҰaDe`a0S8b#v[s( aQ0,|+3H%  )ҐB&g4c=20R#Ol+%e1VcT,##Η pp8k'=Df2=G3N,tB&5ǶaI AG7@aUUR"=B1 M?XcYZ!]r(wBwaZP |O'yY^ +'J9`xe_Ln*0?3y4N:Y&g9iF:05XmEIfEuzqrӄ!(z8k[E93|}?Ďy}{~nzN$ 4=8A5ִS?Ϧu[_%e>\_͋YLBD:Bi4H!?_ $ _KJ> ̹ 1C7 LAɀ0vs#%|r07nM{!Z|P.l=qnnfiJ҆Yɂ\x#Y%JRdX6}C)\7Xb>[*Ԛ]p8kG'E@1eBDhsS/??8cy|qn&8WNy>$leE튛wZ]xr0T#0LT;͊UI^p'-qb pnQ\g:3" -TnOo B"Hʄ7bI_~ cь  UE+~Ip?`'LO:Ko=IeI]͡kIяC黖UNHd Dр="V92b\\Q1R8`0v4̈:;szٓ1qZ#[Ea3\Sj`"*fpX\J $iA ^/uBOGL4MOŨIo8O"~`) ?ҒeAl,WYB'4P ܅q8Rgk2 JKH"!y(DI/rp|v)( ˷tUJakNgޠtk~=IU }å qHj0+5uŹi9=5<=-dBo,r⋄PcB! S">}L߾Îqh7/Xjϻ7֎<8M1R#ȥUdņ {bR/ 0ة6=ϔiNwW aG̷=w4Ş(H;LArϏH0_G4߰4as:.'ёlCW=m=3m#p!Z6qFݾ*c4۫ LJuOor`u$.H |;EFK'TײT7Hi{*0a"[^YÑ(̧_.e]J\yD:)Geu^ \Y.C۔2M:ΗqH?9 tHM&C}˷8a".JD}aj: vED;l7+R1u| ҖIA-PfĈf'/bI5Q˞_bw9qHC_/pj(〩I%f[Y]o:Jgedf *Ό6HaY k Doe],XIhF.Y^# ɦDXOF/m41nR`}f)B*pQ75Xaߐ#) xf = q`hk~Yh.CC;Hkdym-BÛ5aB$[~n]Ptmo0vml{IZru},Qf)ˉonЖe MЏs U1M$8ELgXgvhy3!_<=ہXŜ'&AFj`x~?a,ӜS cTwu7[oWc2 DKxxՆ\ƞ@I0`0q;᎛E ^0V'r%rO?ޣFzdHtT fF2ɒ/=Uw["ÙeLru{jwYNr;;q/Ll/|gLa0p0CiaƑ0pf Hdgq1|a2))R2L#"/ItfLfﴷMC@;y:/'.l03HkHLqxՖ(|ͣY@')<=Ǿ'LSiwo#]?8]M?,FeWyFpΐHC5=Q(2qdyVE9O/$qf0 n+]P9QDƒb&C xH!惢s3_y;wS83 xz6?x<7JӔiȢU ͅK޼)I\uğ~x"FH76 ^ؗf㎮j BNر#E!|:Q72S+"M`ti/đf[B\] Z<gdhr N+qJc&BzBe #v<<~>9hafReVǮtS {~xJs-j/_dI1/(" ˙X+nK(" #B( Hˡ,ϴ]4˅әq24 Ӂsut8iju 2 \ّOY3`&CK־XQ~K ߃c^ynl"4e~v? X;Cl_~lv;zn=yQr~Jз 9"[H˜@(3X 8;w.'̋Yb6J|_R7 h@hPY|w]0Yb €SS1Z8Àp8vu3Nj\ ODh #(oZ=^ߒ^FMjE/B77 CGkeZ$@ 0@y Nj<=}7"@.@qÅ@IBПZhlc#DoG4#!}z.s$-)5^A_k.ܱu?nᏯD?􅇦F 8u*ղbFk ˜Ps=sqx I>IJ'CH,ܴD{&(@tPH`(:k麑eFRq^EG$|iw<4tvX;w;ƶ# A[I8QĈA%YJqaY"xq0?7= "V aTxpHx^ݖ8&&iLWiϤIn`׶/͈w~ԆӉy#8r{ ))@?|$|=X 9SwF /GuNBXs}3M#ñ:xakX KʂU$Q&\ €b.<tZ0OČX_^]RcFX TSl[O_ML*d.d=##og6X%i q˅(^!$lb.Eʨ<ZMG;Ԭ҂nyNR4_IkMC.5V|?2=c߳5H2=MՓ)W@9;'~xzIȸY϶70-E4$Bw[d Gk&cb[BN5jH`Xa:G+#^,K/?3G!Wy-_0YSm"&/s& >? F 1Zu'<3qRI·%È,MgT0K:4CHA?x% 0r6ADy!Ɩrжx8p)ɓ30DdqJi@J[aP^'c0j$bgAH"R) 3UF{A{PGXO %yIƠJiXF6Y2_)R(PXD,e&,W+"a9PtOEH8XՄ"" i</L8?%5a@5J\L`GxȒdn4}'pDZ1 x{q唚MoL1 -<3돟 uL-wuҴ'L34x9K1$Q{ӑ;w˂?O߸\YIloqM& ,s7l7H(*g:8O?BKߢiǚ|s8X.SXs=]GXXlj4ho0=0X/JbghLH:M߼EpZ.MT#~bƘ{Mé{.\ڑivgN|k˙_ ? $)kI!Y )< Ch0J0 ];12 جVЎ#Irs}%R^1C gfwq$ $vl~ H$Y%ˉc}Z8"N뇔sC𷹚}3s4sQ87[ϋB( ?OI 4%`Agý/z0WIgRk>5&0_Z3B+ch&8b.8^ZF< tb&MrԿBg~}=(Ld6{*J0EQD|qa=[I3)#m=AuH$<+<* ]r_J!PnAyl{(}A0I$//A yl'|i0K%18n+EL"] ,±Za!3&3b0Y z4W)0"B c,^b@8q`_ֻȕ_i I8DȞa:&D|D0Ԭ0^ DlGE h$R,adY/$ .BG9M#I1p{,!% ϟHWRD k=3D{uEzE=4$*a4orMݍZsk>jun-*M5Ͽ| nz%У10 79LhAx2T\ @RX)K ݐB Om$QIrogkֲ;f`f  鑸Y9#KU1Yëw7ǚ4Y.gd =3z5-H.MO)Q2$0^*aDgEL! >DHNՙs7-LMGl7N Ǻi+q JR&3Q ZxUS^r4y[H8蚆0HuiB*e1eʠZhEɹ>ҙK{TJھ%PmȦZ&C5v쉵P$2͐aD/̄7vs EI6\5Խ,$i"֚iO5x9^m voߞ膁,LrtL`!qDxŲxUCJpn;q t%\0h!ñoɒ.L%)C?"xi(C@Ǒ$PRn*"#biPX/q^ 0/l7/69]7+,ǿ|ÄPvP$OWAHi$u#U&EAEH 0 "M'!nDdxP,";,&˗44 \oW#J j$ԚEPWw#iR;,FiB3WDty68e3 C\V۞iV%m7É$ 8>< usWTMA Tq 72-i(pCӉɌRsws`&#FLj4TEY2=y1skǛm"_, 0\`6{vC%ml?/5I^4DA39 3aC}i<5P17ˬ%P^*\jhB̅ 5ZqաC:!K;Nv2Rnج6:*FcR7ՋёFS?,9h-]C9l#0I^4Azk.y13ܥ]CYf Zs޾yh?eɮoxz \OJͷٯi.xRUjCf׊}Sљ5-8t1iT‚l0dt0MYL<d#+d!+Da;Nmd$.Xԏ4e7LD2*^]lp}tǟiy'JoL͉<{X5}=W(ӬŹv'Owd ];hŒIsue$52?e,(g,m8`?QF|yzIy_^T8NyH˒4S *dEB~θ," Y7W^ #qGg|1DyېnBNꏯ^ehk}uE=#{RI69cr<)n647-T#YTzMV|: ҄PY8| r-' x,B-$&ZƜ5w[z~kTVkGVoaEOq+Sb-ReBit")DW mɘHްxƈ#B"zF-ێ MDfͫk&u!*M,;9Ƈ{0μ t,V(ЪӘ1G9^x-eA.D&be=5NpwbZߦK'OqQyXѫfqDt[1\xn.=QhPcAĸ&m8l7-a(hqS]X;rusC8Myo( K\1Y#yӵzu3[JءE(ۆ7k$g``.0~g#DP. C3yAbu{a)F>Of;z.b\g @ MճWpusr$w%*6 D%epF1ե } i)Ech0s $鈝$U5fW%?]8 PM֒jKB`7,%T#0dbئPŒdRxppb/숐`=8G8)ZT38ɾusQ?Ӟ@/\#o^a^o!xFD"Hd*-֋%LH#P' ghw;jyGuq؝hŲ T#xjZ\ &mI(4 "pCGߜY1e2*͠%B ԗo'N"$AI޾{EQ8!ir>HD3:d?w߽fyeHNbF"p:b^S}+Q(HͯOX, uMé w|z~wʡ[v|Rs^ǖ2Xzb]$y-OY]/x؝j9lL"L/-EJNo˅o}XTɥ1ݑӟf"O#|qJ:Y$„ 7z!Q$}A SK/9W WyDCut±ڮ)XwR4LHnB& xaan6\g.r>&[qzY`7t\jC\jO;83B4'6߾w[m籣eXa` ́<ɲ cxY Žl#72FlA1H%;h@ސ=EY-,3b[4]ǿOZCk *"Z)&6qDi,ZK߬';WGR%fv\a<Έ{w77ț-S+Ikf"t ev3yҭ DTAzT1cEXoo*O9M43,c3CM JVԗ)-& džuQ%?bě :HU\{g$XNuT FpjPqHg|.VtuƮs=K&[p"}{$YDHEJb D| (&{M;B$ID1Tox6=}n'*ݙLHaj 8\MaFȆ/++VoG1ycx|A0'Nsb=@\. k@z4"bD_.oÈeG(\ln<.ئc?S# G6 laCew4 llkLE8ntF{͊NӈX->溼/%B*KKf S]GJ^ޒ2)p4 _(y,8[p>/޽{xf[y@m,nW|{8&÷_?^Ȑ߽A3V2/zX#y~[(_/T{.uEIj Fz H#Tl(b4gdX\xzx MRƮz$z{È(N(˒~8yJߵ|#(<496?AHra{uE[tÄ6r uEa`Ƒ5";e,K[8# R u0|x%???YJ,i~4Y4ܬ7$pyxޱ ]эs>XlD<޳]-(׆ha"_埩1L')vwQRs<&#"R;nxz3('rŹfR`3jͱL#2ue|>GS?e qߑɩ>MP/@Xb[Zr5儐 'f֋v~h1h%iYL3z ~@ 1J'Rؙh$;a-r갃%HP7Eg)nfAKI(0(њ9f~VK5tVuh,He$`H"$&T2"ezqD!|PJӄO3dlq":`~>;gVL圏#<!% 9oh5wJj4c:R/63Eݞ%n힉MF4msX1M/y1ҒFaj>fU ;"-BY@U.YWat>g M5M}d /{1ِ0pNr|iNgnn ^?|[ҽ7kWRH5kWD +"[r7j+btrb) . Ls:?޳.6ŒE!#7:}|:r:p aR4̈w"W7<!Y'E5OG$c,f%O=:ib0fz0bw:Hs6s!u3c9\bou%J̡3Ҙ3!R^@DgF\ 4Py)fi33!$ Bݢ^[c3#LٗPr~\ J)07WG;!geY^f84Ң$MMHӵM( 1aTs|[gN^I0¿L4fVDAdŚ#lf8ԹZ30b +lz?C˲mڹ!QnCR0f|iVy׽y)h! a/CrFKŢ\s]{OZJZ B,<2x :9Ǻ(٤9I;)dE…+ `)f$s:Ӹo_YFͺm R/"p#`X$<(rnV1oV8+kszdݩqޝjI !~0_e:~MhT0+Oqt˥(˔v =QT!`{u#qEص  :y뜺PAD}O_Ӂ?9Vs0qozu1r>WE9|A} KuE<|qM"dt!DY``҆S gh:Ӟ L|E$<=~#3.& ,i_u*]&%]?,J0 \+K6"LK $4 yZ#8?apxB;1/d9$%N4?~ǫ%'dޓ/7΢ǎrKDfhoXe%EːM>N?'[b!*2dMG"~z2i 3m݇W)P*XɤvقEBpN27%W1oor%~$llonXyϫ-T,Ȯ7ޓe A#esP0ty b\?T^:<|OF<Ot}:E'ߎHX.ctf]{Bor¢*4#F 1dQU FejQl3v6QJK56?!J~LYnט2b~xRwL#`(+U՛?7힘w4y67oAD "J1u9qwe2MF;ޡ28H׷&A[Պsci /(Kj  3jV8KZ-x;JP%"htHҀ;HA.e$-O,% Qh떫$:nW+nWD!w '/ ' &(y͚.jˉ"98#+MLSj`j.9BqպH%Y(Y i`XlCɲ$JS1msƜN4lze %E$Xfww+$29p:ź2IwY-͈6,y{C <0P<>|x`$. qHWQJP,9ViN$OYH"V?y:*˷L(N [#ׯ k Ao&]K`,E13G0&S0/h -d̦\pZ1Vg "+0=kUM?: ƞi$8Hȗ2d4TTE2X˗_ȋ Émy?+ MXNq>q~xfH wvdp{Qhɓ}z^OWPf?~|ݺb(9?]S.bVYcKfMܾN_:Kx:fßt\'Ϝ3E0Y"ΈD@,")Ȳ͚s@`` !@r81D#BVxKpE^( 9% )%9( '@jn yQPLg8?g:tG1Cnﭠ,]߳[]:&JD!7W׬%a1R9B-Ȥ4ABo{cIP&|uDP@ fĄL(%с@8CDP=A B$OȊxHk58J)fx-Pqmέ0 cB5Nxg::%BgR#D4_] vd0N0a`$ R8`g,a\{sz(qxj$Ι&`ga$/ ))ʌՒP8r0|+|͇opԙy]]_3i(ziojڱǎ=n) ӄ^ٺ=1f?g۝ɬl]%c( ˖ l:#J؀#ԇ@W-YYv[M1f4\uv}Ҋf9Gh= >"χ\J|ϓʒd!L˷cy(C^|8r.*lF~:Nm/%RX o߼r>b 1Ͽ:$(|rL 4mA(s,8HÄ[(i;0$B)_RT9qNYg)NZG!ic)?ѵt ֎bX`0+$A&I|9R%%hePGudyRዱ u)$^XMBJ~ߊ OZ !=|_u=r\/}adyZ#.0kKl֍0 Q=2^ 11N{B @:B{ؚ'HprtJ~Cʱ9`? C )=+ )VX%rn1BثvKL|z;xBG0ιC hn1 jJdNd)pZC;Z0\%_uns}R^1YF,%ձ%t&ٞj!=/X1?}'W@ *G)ѹ_ %>mY6̗sڼ$ ^s.u̦ 騼O'4d1G+rNeE % j+/#u~>>W4H) ق-}1\15P<|:c7THh銚fWP[A][e8ڮHšɛI:< (!~_ݓM&qF?49U~F US%4:kg!^|+͔< z!ݩ!Yә)Ӑ૯7L_p{3\e Dt> _pd)j:hrMMpRs<>_㐮xထ Z9tz`saI%{<ݰc+J[a| <[,F+t"lE  U~!C6uE!Q|tҍP`'w\,8W#\XR!j=<!}0(tF$Lc\=B?.u5nS! a9M\3uI (N $LV^Jc&H~||`S?wJtϗ]Ź00" pr/$Jk5Έ$lo!Eg 6(HEJLiHyң*dz@CFHu`G&7H1^JQė 'hر]K= LCu f)B9Z]fhhck0n#cn]Nl[!<޼Ecm[zs=`8gzxF(0P|[no1Zw=χe1KYSl=Ṣ*z~O ^$իzf̈́(T\7n!Vjd y>I:c9_`("3:87ރkKg'SV {E@"=Pcix! f iJLㄦmОD G-BM.V|oSAQ 3OxؾF +m9nV$iL]\_f4`kB?+dẖ˧2?$Ld1=uܸI4A?"| g 3* /8 瑄 a#w5cs<#}\['+Pz3GY}Ŕ}hjFE" vRd%6\u]^`=N(#~ش٣]pr%^}Q{wKBd"GM["fBKS|#F%}1ٞ{h|6a1LVXNVp;NsKn}:֖9q'9jA8a]7x0PXQ=>F ^<0 }لӉxKܯ!l63+7xAiGHXJDw? 7 |O+4bP*mg\OG4K}=8,z(([.RHK{xr3Otǹ _ qQ adC2Cӷcph .cWWጢsn=YTE3t=*vxC28f~L{LW#+D! $x5XaP4z hnaUOd2 =1;1"db~xad-W}SQ ӻbjCkGv3 MLSOgJ[[Qa@Q6CKs)~cIS&xDNH6JmG):fWSEL^Uԇ?躁_r#"p8ly(jyGVo~OlX >>SlQ|G޿?A@lT-_ (bztctC΃!#^߿JnWs޼6-`\QNK@ ^[o^\QB4E$O?y!Xh.d6C;sp" []K$"&dH0" 2͜zA/[6K=)')m0g,|˴iG#ˉ2[ x |O2dzDFt$x=jQm2'slS㺎P:_kݎIb=ď$YLc2dKق"&$dH5Bd[3c %é==#^#BX)SV5>#"A<{7( CslKNTRIt|fq̟~Ϗ?~B銩g|> XސNt8x3_I1A0 Q)~a˚|Au8ba{9 ˙0pU91F`P I:z ˅4Knz/\"IӍ{2]M8!f1Y_6_y{jst6%4MO?|%LgS sૐnpFLs8ns>}:S>OE뫔̈́kw~kfDVZ;V)y~ܞ8U A!p"ghZy||<xՆB߷|/_N7fpust2O\͗x$4ekZ4nsElw[4`:73a8nzQR $3aq5MMS zz A($MOQ ƴ-M]Q%M׎yO£)1&)%̒pxu" S/d;n>=܀-Y$,^ Xa@ۗucd|SR[tJiǓ~sHSzٱee>c̠=K3['%uS%!h|Z2!MVAfYFu"BOO[$!Xe)EzC^jq>̦+Ypi|瓦?MCk?DQ7ٜ"['c],sء #"INjp(YAKy~x %A(\1q1_u%Uyz<%1MqBa,QWM;z(.u%\@ XlnpٚS3>`OglOV T<귈9?M'>}xbL#ӛ v0ŜA8><Imwt=|(ΔǂU2^P/CeZ.C_{iQL8qJ (O ӀlICzG|FYL)e Ґ&?),A!tg:;-0eE|y;N\o<|G5çGO1]q:6?(#6YzK=IQ#`Y>q⫘ ˜yP<= SDiFɀd6OGfl-.xrEW&GJt[)sZiáƨlPK<@wImn0$4o6' 48ݏcw\,]鞨}N!+K#r:0|nP]x$Ps_.8|D"#:g68A>^{#RW7S:m-{LP%JPE_ZD,  nhہPaFW\y@(ñAmϥոIDWY>Z>- L2m fӻ-ӫk⌰슧o Uy=s=_i "pE[#Y#rDa)?SJ$Q3eY>qrـxx|`Yux^z*s$b OY'(a#ڟu_}Ww,v,R@z,A KS5]#XN#p,f'qSwG~8aOdnh(۞ vF }pF>sqe,޽E'9U9]8!hv܈l:iq4bhql& } Ǝ K"=0Eq!RG7mNJ$(KH8iƐֱ-mq FmU<G()H>ע:hhRJuV3 |ӜHU>DQ/=J'8 vpQ@_}7wWdI_|R 2˩iFi|iu1gʋ1vyBI5C۱З%2c0wΎC3F~ֶQ</OQ=#$RL$q 2 WkHFTeADc L7l636T yuRTUC,)`8wk-q>Xހs\M'{S}iirڎPJi"?@hPk ͚iN~xhZ 8;`A{rqBw-I3i<1;n+vZ)$frzq[D7OM9[.噫 E4;eY\-JLqi<#uRzl2 #o~vϠ5Y6e5E!vlEv軖tx$KRNel 녏%A H"W융/Qj#!qBR3wl*_)P#<; #% BϧlkKI@F"FqY7 hiKg aQȈIeYq6cyut&1Jg ]ہsrs<%XBkKxd Ӂ%)?+)zd׵m0$Q1vlN\.7GJҾ ;@43 !"\^L-p,$)7UB[>t@? 4f`qk*a>\OEp FR"e;xѵ`H[5\]oj汤li[f 6=4Dbs7#Yȩ"IHѶ9\N[_8?0D\.O(a=AabΥђD+ 8ctF> %S)s51pQH55^$NV\,<@wapMM[UHUG)uwfdgyЎ '㑼kj?/_Ղ-.ǻCn{;@w%3Uduñj0NSm5DTx$i5tƙK~>Oʊ"o+dBr4I /=EQd)4j֜sTU9}(I·`e0E8_Gl $IZa>UUrK; xTGqM)51v\/m4ӑڊS5("N0֒ nZAS+&QFk ~̄x)q? $A4]HǶmBE s Moȍ Sku)CMYL2VS1t兟 DYԟ}#(/3BDXA #șMR2oBOr`ېT"@(A ry`$sl=˥G'Ig ħ,cba#SIv7זoߢ0}ɀ! }9OO3{}"pFS=R[iG-?> 1a{j?2H_0[YZxC>UT.nԏѭSxwJ)qĥ퉆׷؞[?2BRGpz\/nrd$}N^_ { :}߱X_=#Z gN'ry#M>{_Ez>>H9YS]Sv)Uufl'>f~}ˏt 8:x/_]q~|G&z̐gqF;LSr.1 Rjd l6d3޿#^s>z":֫5c9tP_r v}C~ V f hKgBYDw ]]d/w s%yj&)A; |KәPx~2ԓkj ZљLG)mӉ 2F'iZ̳F Y14:+ 92i5Eq8L3n9Å kRv#Ms{F-wo({W[v?H _#T枾`#Ot=)ueE[1+ڡ@Β5 H&kds1Jqxq~Hi0*Kc^ ? |As}u; wD_-l:P *KK4Xڢ8tw 6p`v'nъx2*!' {81e\T=S֤a)pN|"0 g_p[Ni`b&b͚WN |ӞNx4!ҎzYHӶE3,J ~  A^M1wa{gCGq^-bQqԭd 4?qww/uQb%xNL€_;0n{޼~CS5(1MUc՗5I|%?!E!gX^랾zAxaBgA[̦h۞gWK0q08$ys45VS5=eut!o'n^Bv}uwτ^J!D:y}5i.̀=6W8#Zz_b#A)>|d}Xf(Y^!s^c'H&KJD*Q̋R(D#(=p5dǼУk5Vc(:ݓ4N荦{'9 2K@1rX0"?xu=#c1Ëw gP5ZEt 4bctO8"/,fs2ݕ/uӶx ^zXg )= h=hpyIDIӎ[ʲ"R3d)I0 iAH/d-Zt1HO~|C(EQJ1i=е-qwXJH)ib߂nlz +Ƙ߸i|5UU<)mێaRza GsiU@4}(J(@oXa C1JS, g,.Q[kpHcIN+!Zщ1,[=`I@7m|C4CY.5Cې}J2i4"LCGU]M,)Cp-/6|tAD>i)vrx3~=da% Bvo^/yt)L).=0ƚLeN|u"4$L7;d0IgН)0tb\͈W>K":U<8s<:}|$ _N(dN(;4aTlaPLWLBzB8qP./l>\͹dC7" {pb 9 y}(__Z8_x3r:hwd}{j8?)Yox\20<9F%yfc[R}d9EL%4*x}M"{I7Yq{q'Cg^xbIWt'=4hd5,H3~oHn 55~wɷ:8?ӥ&ے?c ƐVl\"T6G~[{:1tS ,Iۯ;'YΘ~IGWsEB]k}|O 6U7ѾE3tţ`xB#veEaOk_?aiKM"WWjSNd8PW e2])rE6ۖtc\@'v9f`W0YMy}E|u:C1}]sj\SWa?^p%V!|$YNf)ziNEE$a&Pv1~0tgz64 :TFW[q7tmZ+]I$]4$& (uEsYq5NOEha d~`\Y USs4aDOJ,[1}N14, #X0Kfްcʢ i{F>?=?[v$EkKQ^)©,0!&E/gn5u[,4xلyu0m}Iz#&)˙~TQg6o_aC$)š8W#IJڪ& tN3M zKU9"s8r(r~ թ$[,(x#,d{x_DA@P51 +gКbF sK׷,37$aOC$R_anYʺ5PQ?kL3PQ2E*QÎ X/>?{~'>~|1,M)sl nE~|zW+TpYdqjQ0I3a$(u|Mi|/fӶ1C;vEN)i  5MݓCw_!85'Ihd2|0NG!dNvB4۱;v!FRX'f;G( X3cF bqX%h ~D4!Ɑl$YB7hNeq fyLtTUC[z'=/gGz Io:@`DM[s J\$4dN"~D+<0-}E|8 |]eD{O)I[1MPZSԧySw%'W|ӱ "b`- !/Klo8/glsv='4 C[htI k DH%\N2L)lB[ALBr!L&n . 0{)s>N:ǧBvs } Vu~0º!?Gvt8V0> @ sHI,8%R)<`ˆFq关%aS>`$([0š1Ҋth6W^D_ƽ@+(HO#cѽdڞ0Km1ϻ_vK7XBu5KC }^~{!|sl(Ӈ?} 0Zy6ay= txeИ09>>FH8m2Rٖr1gf>pr.ToqzLB)ARc0&>J{LӀad}Œ4~#/1O[dqZVG5ݥ*iʖ{b;RRZE.ՀԊə(t6NhRux.)hesllӅdԏ#5bH+*c95ibsu M G~S͙A]愾DNgj I7LÐ1݅H t; {z~}ݹ'??2Dl? 6Bd[AYj&Q2*}X#i+E߿#}^7\ݿ"W|l YMWPj(y>rӎsFK̮˟4f|@^8Qř)XMiOjB?⇏{sL/н) T=4b{OԚ+j ~6O?=)슪<|S (ʊpv'h>1ܠ]n{|"h)~:!ZC0#\^CEsAxb6Sġ%Ӏ/Lr>r8qh _r9@J Z!Yy Zw # e*HEbszz8ըl 1 Ne )B,""FD'I}#N(OHF?{ Uy![dtby?OLs̳[4TUcQQhGe>y Lɗk"3+K5L̡8_S]}D+#0U j\~{MغaH֓0+y69 u 'z$#h 73 Wc4`d8?9\o(ylEf3#3}T7W.S`L({q/=&M5R;i&H,9?{=65YQO` e/Q΄ +4ơ˜B]C5 Z,tmK[7$qO]ےE~,/ CK9 Jg#Q/m8)~QUV! S?mZ?i('WWbXJ4Z ?>uj>a.sGd{{W?*5La?8G.nX1j<<)F#=! jߣmӳz.) z 2Y$ʘE)r0z38mXD1(jLX0a;ñ;yz̆ 9mq$oIs>{=uJKn#|O[ 2m bڱMYc*/xBP*B1B8a:cCL+mv7x91HO;? }6 iD Acy῔(Jg4mMQ^x`2/8evWwc\ϖ~x.פaD,}]v>>"xA_}WoՀ;fIJ]xw$b3Sj}9PB_ԧ#8!Ж$Ï4 aDaf!V9F;$JH”B  g4Z C+^V10G]ca-9$c2Eg,M _XHT"@*zaI )FS4#[vtʘXښ>8@O?5aSW(x#?=)N$8:m>oq>=h@uD9SJRpwƌ{3h:/QЦ֐e mri:aaGQD/@)RN2>Q1ҚuBuH0v/X 8NEN'L V8A*EuU0COcH kW ?O1Dԃiqmoj2&@4Z:Rf2r XRF9^p!O!Rٝ|ǂ:9l,>|OZ%WiH#Fpf#"qڈP.*ya[[oO%iS%_|@y$<T&{+vg,xKXG~9_;r'SD FZzEQ$MQ ގvbJTqOImS5xf璛e}W߽0MGQ *rV/(ʞEќ%aMs.,Z:w9< UȫҘv0D~DWp݉<l'{3?閛 =) -O;R ;jLW=xss6MWzy).ʼngB?;{;~_WWl>"y~5L70 gL0%[,y I|05 o^]sܟ>p `@`KgGnqjvĕ'#ׄ}G}o6W S5)$i$My~>2yv=~ ġ{Ba3]۲Xm>5TC)OO^Qe#CՊi7WT0!到m\1h1'~ö$ϸ~so?|7/S|d,EG~8()SX YD!}]sk_ytұ;=#錶I&*īgǥq|T)00O)e/G䘡a\= v%"5N\}>sSlqDdU73L_Π-_?㞰 / ]$\5sJW\N>{\0iD>QQqO=yRCIkÅ=ؽ{Ge$Ye75?%qac>q[ ?׶nÞVQzw}'#&Rra$Hb9b"|A@$1ٜ]嘣uzksmeJSb->ۿ~#}őahX-V,V3~8? [.'8e)J)|ߣkFǿ?"54CE(I#] u#0"B"C͋YRv/M 5]WqlZ旧$˺?p?)כ=4 ')ōXۏќ]Q-H^>QR 4\x N8Gf:aFM[GqQGH7ahp}lQ%}C~!H"Gl6?O?&ɚiG|ZMpi&|zDI21VP T͑ QB״cOM_:?=B!CIC9QxFdFVӄqUY4!ܣi%:hjc{ֿG?7guQзqBm,)a EBՒnTE M]cW38X(׿ſ(c9dDa ̈ :6|2:=%EU>{<O?|:_O~',]chcIRp8_P|d6-A{f1 7+EfRctYMKk 喓)S67xu9 J AN\)B:Y_Ҷ ƌDGӏtuTSHE4pn[kOC7HB/4֔]Pc+ڛ'8$0dm5N'`uȧ4k}a2ͯItQJSQBÓ1TWtBcR^YQqg ,/K$1?bt7M4S"}F8)Iq0b9YLO74݀TdYv+zh'8:;?# CFc>5֍4HBx<0B*tN߷X44c8e`~}?Z~ߴ?H0v |8fᜠZVΎd}Z(dPUctg!NQJJrXTv쨛%5'3WUk1.?!,G$ gB4f V󊳕fw8 0҅ȫ]cײ,IEyYmNh=qU MehkoӿВ4!/z T}Hi=m7Yc$Y/8@]TP:$^- 9088vܷ!/!N*D?gߧ#H\s@,WYѡҏ`yuv)xyW<Cax-C ?wY_[=H|,Ia] v |}~irv{4Orbf lБ* wb{Dr(k<szOJ1t-}U +J~ MטzU͗cϻGh< yQ+qG״(kg) $nB!TҌaos_^8QGӴGnoy-瑦aqgsF8sv -~Ps{>\>bڞE6G:a:}qϒ0ƑϾoa-嚢,X椳OC}Ͼ~Ok'/Q7%Ug6[>MnXܼg/b/YpI Y2H$3D^5ozC758%K~@~aP(V2yJQm1-Zؾ=ص5u]t,s~l6-wgDTx2yyJT|!wxе-vd(:RA&I?7ݿOѺjJZ4M1 Y%ɫ=m G$~XTm=M3ݎ ijf}:?oh;jc-ZzgYx$qD[8ӠÀơqDmJ67z'M`!G: b!iG/mƟ қxRQ8|)fkG17nj#0-#@$&֟N/.$vnd{$s3,W VH!&iXHOsr&Koچ˳u~dz?=8:x|v#02>UH FF۠c\=$hz1}S_|_|C}gu-Ւ XMCyx~̗i-()im n6~LU|{w>%>lٗ5I$vyvKյg^u[/hMNbՌ,mYȡIf I`[痿x!ggR%Ղƫ)*[0ce<8Iz54}} {? ./.'XMM&}Vi~2:utXON~J}6@5 1~_s?Lo-EQ`d( bp Xр(OOɞZOi-sX71;'[naQJ;o_kt0񞞆R)U$$N $CqRa}0 |<8Fl>wߡ+8rqvFu4M|f_3Lҷ( pb))5rƍLϡc}D 'Ox:ݘs)$RꦞB"C.?2)$UU dRJ#TJӀ/_g:T'vJ /%IiqÑ , v1]Oc-eSc%M3]H% 5cQy> 躎rڴiS?'?&Ki@:CŬi*V8r#5} }F pvVcTPJ%f ]cF,Y%ḱNIHU~̱:T}ހƒ))Qt3_ b~<6Ckί ds+}(Xf3fMzqC(MHSĉv:d4#eJRah u2GjD=t^jFg;?߸-Q_Ӵ w_-x| F"I ёDg1rhH.GfYM<ΈS FaE.y%jA0ˊyP7 Ql6'KCI{yMq[ /8[<=A4{<+#ɒӸAR<)tK5M^C1{GSW|zfqpyQIR5AEpXz no7$n /sW ͎HDDHx~,&S>{jd=疼ptMb352"qu~Bmjł_|' kJ&(q4Kv_X''K>~$dNkس/M臑9]LJ[2Ǵĕ=0AH9e~ SV''T]Q#|Aq8rz ڦdEFX먭a8T4y7oq (-8n2;Fɴƀ3}GD!/v( $GUC3ohYf ׼g{z43JQXn7Daϋ3$ 0Cr6*#[h;|K?rqyq&eqs{`0an%<$0 ' =y⒯}|b|0-8!MY>8ŴidFC4BO@obM׶% Cm<<'"H?h)'{iۢdT&'J#8'; Ӡ?=GX3O҉y$ŀ#wmE "G`ZԘIHqY&qV#*H1{t3~_|UDQ [*D0 \,SЧ-.3mAߖccy'Vl(o$ DLquȹoYf ztMv XQ-݈/FoX>"33-:D+EuŜgn Q`6lIHrH1yH* } 2X(NR5r|}t<2jc;GN ? ՔN9_ے]nٚ7ľGYtn9S(稏 obȊ*11T+ uqz&,oъW K =nwñI9\ ȸRxtŒH[ M2#,B1~>ҏgkH0[!]W3;9%H+LQw9yAˉ[]߳3n>ܲ\!H4@^Ssں& }*3Z,On6!9;??{(&?(骊?Lʣ(*fA*%}U7oy=Ys-77$XBn0l2`J l5 WȣmajvBzO-]/È7@"|Nq(rP#GǛe@<_16;EQ[It6#~2섢*fwOŽ_+Ïƶ%ԚȉCSM@ DH BN8FrA ,OOstĕ,xOKϏihȼ9Go CaǑQC7Z= JXiP9}[M aW[b QAD$3XC2#~2Oe3a xξ؁Oec SdCE(;BDh Aठm+% ?N&~0OҊ < ]nZajE=M]nFXr<~.8tlQ Tr(>y#pg/1nh||-y?`Dʱ/mϫKB14f`{e-y~ B%PZGmG\UMʣ(zB(mŌ )z0釖89\*sNքGX>Ck☶j4y`*LaJ-)i~ ">n ҄;,L VpwCtUG& c?'CݔV#i:#eAVړm CĊa:SM }#} ePC `2~qlT~N|1O.aFaRV霮7TM3 ?(%iGi3 hJ =($R)X1IdoPU8wCJ4P9z֫ 8;=E^)rut#tHXK5hߣ(@(O׷_Pz^!'x{ێ c{haaN&ǧ*RSʭJxZ#i8/™yX-MpNm꧁CI(a3LB/Ɓ+韪?˾CGfl@ {9Bc` ˓ E)Tm_| ]EgǦ2hN[CeK՜sN ^L{΂7 !fV(YnS|=C[K޴XGj֠쪆0Y'kVes~9{6̣=tB9VkA,;r G@[yC#92[{s9ns1 {~b3g+}徣 ycZڦ,5DGggNc6 @S%>4#a$.^.8};+gxBpjK^\%]3/ZHh>-u,R;D\>p,ZILUƅ}/%*_(<컜rvKz+ݞmZ~vǢEW,VPdZLaGX <'5{yAGx. uPVeS>/[m)+/ Ӕ?ȒǷf ɞTX ӌ#`Y2Q% Bh<%hڜϿ| ߏ/XY,Nf8 ?M 8vK4`W`B &3KCU'KSn(7CvJtN;xC2tHbJ.Il8<qb"yHМ^H,7%+K, WQ:'M2<([3<"Rgșf$`: s޽ Cmjnonqmw.OC)9/_"l;.!bN!~a;`'BݑȌưmr÷7G/O8OñZj ?ޑ&/trAR~ ֔+LbQ{lr|l cC6̽#}(vwmEt~L[ :Gt@z7%^Fg1RF1}ݑ& g)^/3#:8zNeUSdFF,I$9&~XG GzkQ@'?`ۏwl-?{sc| ۺ֌$dA\"b`xbZrfؑHsJy⌾/_2tCP%q{$T>3~wbyFK,9n:( X3ǜtw߾%/ T#`cC*A#Y"@ E$CS3v-0L4a9K }xfҿIL^Oz8;P ;8!,/ @mD#MF,Ǟ A^qqz̓D jȳ8 "=ӡP#fzC9ROf>|O2RBKKCAF, hŁk:`,D"ǎHrmKΈH1&6u̠~ta{rs1. .!9ܷ/X#PpzF4e!eQլEׯ2Sdx#}l L2s\rum7MEeOaF,ݞw ;q>GP"qmW+.O|l_24tJp_tvlkP1ss({!vp>?Ci9Œ}G#],;$9Pi|fI1 qֱ\&X9Xr~~A34enDKH/hrÏ09v%#iѴЎ,d+-Ӵ$aHGY~AϑqH|A{nZ^Gx #$6+js?/$Vx ŜR7//YiK}$"}5~=Y&DÂ#CUw:cZ A cbqfKX.4Zq854#Ibv9?^Y4('IWP"ЌaF$bf2@D<1cSжt6! bS;oiˊ/_>d}e^ g<_Ċ}KϰF% 9nw>깼zF#,yήk3}oQɊ΃HuBslydP{󜦭ځt8Oho}ǡ,x/^=wo{8!XD !%!pї.È2=;ru|fHEtdoȀGx4%}Q5njrG,lNRxb 7:f1$!^z6m3Nq+(G 9 yJ''\|{am14t(su}x?3#VyԇUHC"*؀d}$ZX>whݏl}JJ_+ +}>~|B?%FP4chzNtzdӃdÈӶΟ]:;'N<%;h!@du fsr, |7/&sRQYIߴyXr>kfz階7H?Bq-yR<S^F<;4ʈ-qs2@h=1G^] Lu}vJJB 0#]O;f`cǁ82SUIA.i5R{38Л~ ?~`G=׷8HgݎaGy f86hQ^b<ǎy8ҴY~3H^"pRt#< ItHՎUm6G!IP 5:oڎgx϶89<~㻟,Q-mӡ]xvq9-j5Jxb@?}Қ( QM]]5uYi]*CӡDYGf3ٌ77Y4e q&H1jq 8T(9UZmCݶti}1Q2f GkYma9ɄaG9p)X$(i|1/ ԃA*ifRfcBmyY7{BTTYMZv!րB>Q`SEPJ'`Ȓ " _H'&ɞ&l[RMv_'رCʩ^h _U!$>%ye*}s}}` C!?P5%BJʢ)躞v`F:+xweHmw^q}(*;0*Cz/OX,2b5C'hbjegKMזxBʞQrs;k68( i}~[N(/p8Ea$I((_O@g_8!E) "|t =Ҝ?.z膖2e1O 7=y[pے7BJF;`bCioUuSc1EQ%1H~ذ^&kpzqߠt㖻koq =%3ް\.ZqvvS <!"$%JR0ZiFxC= av y&c`W>:Lٞ^8:FSr=BMIu4 SGIEݵXTQ#=5=vmY)I8Z=8b%&{] Zj:/h-3m?}[릁Pm?IE0|cyrJE\rs@iBH% (Xtf`a-87SRJ)$B|/,0f@KV~?}G"|8AkxBhHj/Y/W(9RHRJ$FUPu 2O?ma2jHGZk'8RW5 ?q*tG 8݄v0vdp}0[1Ck5]o ,V5044&Jz )a,f!C[D1c2$g -ڥ bMl˂}-pTUEej($ϩlʧ$ѫcW_թG]t9V#Ukh bFKo;f$6y=&=cIq,i6c>vyĨ,Γ쪒Qڪ =(ZG!`bF^,MO_[~&ʎ׌Bͷo=-Nqh-Y'Tc=E*&9ͱRjي?2B.̂$yqJv*ʼ7ie_70a=N,W1IjIfٌn8i;CG! aOF(g3>\BEx&H:"qr{I|='\\^raw=݈Jo+$y0IO.D:bȦK2B9pPƐNP:ƪwo?[&t9kDWl}A;zܽM=Y;'Kʺa<~T`P0 ݾa| n9Z{||{$Qq G9M}泔$Vp+B+8Xxqeyn"5 @[y%#P7\,H8{.Ζ,0l=inpifs^Sږ-bc(79 BڲcF:m Umy޳5?"Mtchy;ر !=@ʀO␇~zf1p@,C9vHSbwuAc:”ֶΠd[6lygŞ?rsn兀k:3OS[¶_5?7NRUop#< }eX.V@7vԏteθ?mMԨ'r(hOC6{4|yqgˌL GR3"{*a{ |V=0|Ia@t3o"Cψ)|":avGu MQ@ A1Ҵ5ƚO\_U8kR|2fی#RRO -do;8&`c4ehv2Mm-JJ0D CM1 `'д,I(`f9`_YK#nf$ 12)̳+NX kTOc9]E߰-X<zR>VƍDqÞKV}]4 =C_㺁GR3"?bD +F%|ØnhێIf R ByDOEB0[tMKARNIgYa"񄜒m1J(9ēOJ?KRb1=!BaGjkR@Hg8L)UO9'A>Q3@@?N  &xt]Қ,t!W(1 5mg6O6uI:GHE۴hz>C22^ y]YCEH'RFKH-d3X/iHF f ah,h(-1i zdZE1Qtl b`i)4OL_I,g)|Oy%%eY2%K87> ӟEUq(sM<5%ySjO YgK?9DZ(G4aÆ0ظm $_d_\t Br yoylBrPuHѶ8Q= =2j \߱JSVw u@0;2 ׏~ؓwajɗ/3ThiARw-.M#9nj<=Z)hpݑ>DZCDj ੄4FsuYHeꩵBEEZ\bǻG%/_0bwwOB~g>ɖ'(/AD;^=1N EP܀ 4cq2#˫sFӔ}EEӃPÈU5K){HH\G%b>@oYVd8u)~vr/9?Wv[R^UqP`c>APS#9 ~}y:'H"Ag)x\>Q -8#"'$//^-uQk 񞝲zqAEt0C׎ԏ57[*3!o8Oa+h yɳ憛=k+7($uYi8VRE{x|(I~8Oyh۝asᩔ3.ϸqyqB)bO ̀v"Th1ڒ^R6)(Fd;W-9#Ś9~F9 MUcaGW$R;B5"mx8U-\}v{Y>HdL=8KởX,I߻b[r*Wx0S̥#q7b:^qs , |IhSGdZaLqDI˘ Xck TIQ0HHQݎZiϏy5֬%ǻ=Ԙc* b$r$ MY5hǎ/^\`G^4ID/b#&ߓ:2G'8|%mC-:}Ҏ1s$" Ze1T{v=Z[N'5gg$b5tXhugkwW lcWGzS0woo9y~qIW/ Zd)]ףK/3[xxfK|$c^X- Wo8ugw:E)fQ9g5cogGB9Qf0pC h0N0[VLCiWy ©a-a<-IN0`i݈&S pLʯ87+<amھSaFH~f,"֧RPg f \@MrMYA^,qGyƞo -Xk (G:*a LkT% d }<˞ PHLI"#Z[Roh3%KtaV`#V -#xK D O@!J_PDC;/0ÀOdEvD=-ܢ0$Oi/Ok097Iw-Hㄮ2vld4}|I{dϞ  */4q KB0α^9V-Xb6e͋3$[go,9]mE/}ӡ K3/o IDATvOH)Ȓ|QPj4Jqؾ x*D"|ʪr^ @yBO0!S2mJJ K Gߵ`GxBH!%i,Rʩ:$i=iܚXXW_:+=*o32ڑkȫ اk~b2 yr!AqR(@w?:B/"Rʲ!MfaLw`aTy$&c:BIY͘ gg]NbMaB"ɩ7BJz3 "$y N&B}-ʒmP.F|~! wJ#nk`OCy!Y4WJ}(pO iz82SR:>3hOlJzNOlNXu1 >0B9:2AiMOB 0:D>{ea$U#msz)F(g,3%ĒjnhQ:_k/9~lO8$p4=WpKȹ\_Pw(Sщy $j v2MQdpb1 \CDP7Y ^̨weKDcEH6K9I8`hEWtTm3„-3~ՑW)yB5x,N<ŀS`^p,d! O!^ s:MLIUc׾Eg q33žOfdqF_本gܿ'4ϟv5}p{!<,h:\gt{US(Ψw#Q0)f~S , "ö| , n,a.txw)FEq}$'ܽgyqNqOhǠzC."hے(ܐd9 ^@-Ն_Km-3PlkF3`N=??H4ԇ|_~`$Ǘ!ߞex 8UH[]s4s|ZQUv%^pܟ#E(ƦG x޽zlKv' #"w>]SD1݁@Ec&<;G+mƗ/rysf-qf prSP2m}l7pYMag α^͛A%xb*ڳe2#2E8_^F6EWVԭ:DyIc(0}'_j@1 Ӭ}OG9UL_klrGMte㤤u"M"n| tlXT( XwıjbMR'BQ0 !ZӄvE>E1 @E3z>Cѝ|ђdKw?rł/_ɶ4^~g2gTvd^a}O+Nu;x=Cw߿%!\W,ה@(=4lxAn~ףe4Ohbpy` a2mQ, (?-zH U[:)e9?aK|:Cp}ת'2#F!-O{N#ad P9'$c<=I$ S"Qtz}CM8Tx~H ]Gdo_G=IY9>H8bYh޽Ͽ09a`Jl m5_?uϻX1LDR \vKjI=$d {azc}$ ""gw:P %Il8ÑF\aq$i< JEt02`5Cvi]"ha3* gK'=/i]W˹hؖfD//*c Pk5#>ito;43GE>apr \";b4cK pB:gshØ$i!@.%pw[$%e{>+mLV U3xyI*e/yXPYͮ<5gJ/8 3o}C_~.S3=xP˿F{o?7ѰNtU EA$!xI pSI2Y6낳r$WG-_#rh8~pUthۻ%8*Xe!S[MCD8 x~]1:3Pz?a|Qh"v#;wdEГrv"Zz>x̩Xn6H?M@;bLض^c&ʲP36%u]'>`Ɖ޽ri~LzuaQbXƱ% |Nc33yH5*Kxyz&<acOA98єi|$R6}}mG;GH|~z~}c4o'&QjEٌL!RPΏON0Kd]P51_|MY`3GnppqrbX'"0#KbMOB#1SO$G~_aAݭ.~"^/hpF.L~~b0ʪg ϡeئDz=%i4<Z C^VL?q &LiN; B?) FC u$ 6djG}%_&ܾOXt}˷/_Lx8нVhdS,Q $i1y3#8'}"?$ͫbw!$#1s:ͬ QBе?j9+pֽU紕` *Ǒ{xkq`2R)`f:瘦Bp<Ƚ?ɭ588H,?* DzU4ch5B:e,M"z3aZ)k"1xraO(80h&r;|:$|$*diLkKlJƶbI # QefyHjWJXd $xhӑ~ȣŒch<,L*dd:wlK?Rl[ӏ HR^8tw3Y^W`%Oy£knbm4dATXQ M﮹2·VS{Ay4 S"ILɑOCp3?˱slI?p7Wt@մ\_~yru{E gGcŚ{ b\)8=Y~wP-g Z37[IJ@5a?&@ ABzqEy* . .)Szu̠;Enkڪ"Sei&&iɒj*b{ CjQZRZ\70M-~Gݞ@H V:4EUCyz'Cyzʐ `˯ADzdqHƴc9sURD1qZI*,;!58sdyEKChGhMf ]eB&L}ũ'אM#c!#bA-;Q1+tmcF|Ͱ#lj&Zd3a}APd~D"<mBp!Or֫iwhNG. Ydǒ}Jyؿ[Iz|:qpA/97OHd#Fm{P A bn&#?нAzrA,B~GQDI©iA'CE//aNÈ'Lv(ԟ '8)(Ŋb;SErûbv2LfH=A5iV` D1^^v@ MM$يGd?uM{sqygs#y 6Nβcx}9/ Pbpf#?}nB:AtuSf dqhAx d%A;w?ݬY Bc&Q28Gjˁi9a fgsut dx=H.\_lfb]d<>=,?Bۆⴠ+3AL?iL??? -1D_(0B* lDeٲ]]z '5~(/}H҂"=j3״"3;x{d'Imh+{y0zďWY:OSrM62Mz6Ne=:-Qs@L<$ m,wW }+Sې;m[0ZxJ-Q Gqa1L#Y@7Q` PB2qB}Ky %g1f*yc<`F3M(=q=z!Wëi9OS H5X=U0yxe T` r7mѣGQ  ď"&;'o$e;pY푡O7d Piۑ%L38 خr2' B.93#k虴!|gIO͌0OaqH% lA4}Kgxa4թa1ynћ<mqI)? soЫuoͦ0HӔmibɡ>0 | UDE0LIe C6)j~a<C[7`a1c ﹽuC_+ȘIf·_hNNj2Fo{$Ux|&CD8 __YK_h6k.VK^ίGܧJ7vj+y1w׎0[Yeԍ<-yl-S^R_lƾ̩Xx"A2zN.B%Z2p|?-;EL+ENwLDa0z_^_(^uG:H6<|} l8Nl){Z=/thےAO 4zI3Yv¶-'W|gsIAK͑C+B(  ?Py,EQlJ.,8a2 9JHs?,bQ5EZu?"e5-Y%3 ñetSP8ONf&$fcO%{G!{>Ez6/lKRH*ݖ߾!VX+9ϸʠUH ׸(P8_挝&e{Tϩc<*ž~CRY,M3')"9gaǑcg퉄t J35xJ(4mUq;~vO5 7ueb1 xOYq |Ŗ"EQH"|4"YկVV"2K9ڊ2psEm|k>*ao:yk\ rse_kt`zCgiO&"f@~5Ctc2BdXF>'"'XtCݐ!*7m(g0Dqu1iM,qbä<P)pYs@Z3v0iE؍~ H*5Ŗȏ &C}iċQW~O?۽ J0ZIyhyGņjsMkZd8iˈ_}wwdYTQoڎ4+kV o\^p$duwo_XKƩ!kc*邉>~f[$}anNMTWZ#b!PGOz8Gy:c- f[5 "agb$37Q[0t>%`2f696GWN-By~dØniRY 8,0[ؗ{udBgݣzE$,i; 4! B8`rY8ࢉ)y=YzF!0 i$KlGfq\3aQ"Dx0o\<c-18ع!v8ޒ83OfiڎTN!0̛7l-?|@sx}yA U~s&\H8=;43nmN 3}? sܟY_mP#w {,N# ]vT@Y2:Kyħv5:A3l9lI)jsBmDS%Uqn[|5'pg-WXzrKll~F4z|EzbG諆HUX"|XA1sj ‚vH1sqBy>X<`MO͒9$/0 ȷ  8"Ċ9)0Qo|< :7ctGFo(Hk8|O38+XcG^dtmG4 P>Rzh bI3O`d{4=>?`%LnB B ݾch4t=|}0N̠~K} 0 RBgCjwO̬Z3ꉩ1dyF94 4GJ9͉7kN`[-:1T3N2`*qPNF虥8$A^,zNSMEMsui IO4M_yH a -햩8, |gɚ. EcGO"ʮ s.iC0;Udekrm*<#ȗ|X_Wڅܮ NlR Tql5:5zh&2ݰ©{6)iq4vl߾O?r~ky "N'wY8LГvzD0(.ɖ3U3H*9 =Y2Isu4V U7b.KY*SKQ\pqajŧOKhn౉x|j#. 6$ʱnh;Y^nI›5˛וLeG׍q"i.Hc',WV_w"aDT5ETP;z&0EA3uaɊ-1'j`Г?4l4W $$$#ַLC弔g2D2P_ȶ A4_UXKw,ל?^kl3gQbϮ2wW81O\ݼ#ر-L6^3llaOI|m '44hg2< 38a[<S':Dru(VgU%c3"z /%~=0u/mõQ>AXnWtzC!u;?w y EB^$HQO\]bSgp&a9Fz!R*Ӊoן~fFwwQHiNXU WLfd0i/Dbf Gr~i,) ۫+T0 %: G& ^HW~BDF7ݱޮȄ3偛@KKL<;k%?lb0fhk5e3łHK/צ% VŒauHh߲>DB`7}e$@mKQ8q͒;.+溢^w/xd'-@[$.?Pwf:!BI}8Pd9 ߋ\I&b5=Q iľj0+5Śjɱj;G7% L X$|9Pa*[p3Yq{%T͚\$HzZ[C~}%=VB9Mݝ(|e n $F̶nc Ki}#ͳ\)P p{3 *RsKСC: [S {bCd?n0j5A=C9gެ(8 -0 E S8#Ki |u7N4bH0CT5t噮z/Gڲ iہ(θ =m}fqnÈu^(Ig.KB)X/y{oG8Ǐ#';a#S=Mr%!l2#_=0!dT_}:G;! }>^_LB<)y9/6==p|g"`*)hBU\,6+G3/o_)i I3]<P%n^,KbɾjXWfCGm5`)C7R5uP=zUmWG^cy>S71Em ǮBD>]Y<8gX #]P9-;s4J(!mo&C?恍1 Rf@{\;\}l 5s=Pa[l,dN4;p$ eqgzJ1!So3yM $YVIS%{ӌ8N|"g{Eb)$IBD!@ߺb‡O_Pa5?=Eӈ/%W7B|A$=2? C6Wg)᜝V3*y$^0WgB4MͮoR DQ;]~ҿΒ$ H5'[5p:ܤ 8?a8hn>t|vV nI %L8;! $QĘO; - K$p} sU9!'ҖLj>J2h1ƎwIARyx|U :-@5.2'<$dK^eoF;M" ?Gأ20iݻw<o%^bX8N#0rCEFd@2MDokLCGYM<|^{|'}*} O8b~e,=30]-ͱoܾ$Ɠ#$)X^^wIF> 8҈&ŏ 9-i $*%CFm0L0jé*J AAc q]`|;خxOXsn֌S+}e9r$BRqO=LEOۍJu{ŚOɗ9VKtp X,oIB]7\_zP,E_wkÎdbԚoLB |+;Ӂ(mJ+vZ^;B9F֫/pOwN X,S &q`fB$[Kjd@.ff83a քDx+l9ҏ"A=S;^|U%0jӈb!],鏴f@ã,V[IBs7^8^kǷ} `, +K>aX~!,XBVE890N s;:a$Mqj* |6ey^3C_톱 OWVK:ט|_ _a$ٖJr,OMG;,.67 ^d2ɿ_0VWܾ[׿ıԝtlWKvv!QچhG0i$\MnDæG$^4.E{ 20Db&Ns;Á糣*>.6\E?)m G5>{x ѱS5/C*,-CKh( NcdOҝg]z;Vj*J,hc} .k~OY/!q Ў$y@QlxLS?D\m7YxYAcQ")`q\ vrWkZcI-<>S$!*]Ţ/a$ eŊjhQBG tMO_NSE20U@*tOu[|=7)D ju.Y.2Z,1D]PG}#*A5uo,@]kaJ"P՜<=,Rv+iuϋDa×2wZ0/3y#ft` Jk U۱R"L{a =^F>y'Nz83Gќ$|?@e4σ %pnX D* A3tn > 55EO$B3[>8|L=6`ͯSZ#uCZ6 }b1u%bt@D4qegNA8V^ Q(=SquN`eӐ;vƲ=mLzidQC"p= J`&XfXc ˆ7Z[hfI3!%a1RH&3m#|??s-O/%ė#QpqqRe)p^ v e:w]"p,KTxKI }6łkAqt3I&=! QF{zzw> Ә YmVliEM ϯOsُpȋn" Sv=; AJj= t}G{ʟSÀa4dq:v\f:`}o=QOX ُ(Qj @zah< `h8HE\l/<#c>[aJdMzIvg-m[=zFcH)]!1sLJ_XDӎĴb*3ari2A n`R>OuQ?h F3\V"~Gg_'Euuicb6TbO(-aL-ZNϧ_ Y aaA)Er3%&P'rE9i #ښ,n;NU8iCz7q'cϓcyD4/_~k_p9Ћ[WYʷ#C7Y^W5Li8tHCˈU,[$4U?yoNGCPۉ/\]|G&$@? ^8+8vwˎá-kr?$>'I$Gٽl?lhNՉihJ)90UB <7ϏG"%B2 ,wd3TDfG@U=T4Uu=BD:sͧ/5n# Y_p*Tgvq/_K.ě$R!73x/ܿ^kL랫;8) B[9w1;s9(v-7WH%馉xj1$5,Vk @ ]T> A{ax>ռ{=34lio_Y}?BzT<8h Yrk~quwjm,\7q7}"Y-d4ftbUtF8y>Ni$87%#RơOkuz>O;lX?|;VuFᰯ3WW>~\"AKCCh{@!ai-"W~wWzε"I[Q_+??p LSByϴmG?zK{4o&M7$Y~O[u/fm @%uxW'^mՠiIÀXY`)^kqa3Mh4}a94c4Y o3ZzfXS;4Ѷ-]ϺqPkUqIAy:3=A,p3\ pǶ;t(aqXy!X!誚E)B6$-e"@(țкrpYU,窒H;_$qD mO3C)p,UvIZ #đv$< !e0z8"&8003ٹz(ur,OߒT3mfxo5n#okRXc.kRo0 Àq0e] Oo?u:'>?`0^af]%*?e1B8 &7RRO|K4;J欝VJH7#08I,Cy#"qd4 8Ns2̓hk=Ϥ5G?oWQx:b`0!zmOp5 d1=Ry%dN@aR8 )xVdŊ@J1 ?F!gG@`-Ksu =uA^_vHi:r10-xlCgY7>tk1~ڷ\d)h+RISouJk ѳ>5"LxM܌H#꒶29j͡9(MԞ檦l//9ǩ#CV}N;nʌ[L)"Ç5ܳ ,&5>S*!ޜ(r|+xI_kalF<~RRI8(9KHI9l8Ɓo,K$I m ۍ|b&O0&Igj}4t zb,9FgY𙼸;B}Fw'+o? 5hg>~ϲx 3t=2*x$qͷ#8*O(rS1q MX%x`ZyjC\.ox^К)ȩp%S1) #5Y-Ek/{58x}Mw(b'\S鉸7HF6+꺥 Q#hOAq~A36%&? PQtnjj_%10/'~X|ر)TuM, 0N'.TQN>[tn.&`8h_SC_@h=k<\Q\o4tXPޟ|cjmn~H}؝z0ejГObz"5Q5<-|%J)51# BEYܱuDK֫9T| 'ô!hkit*YbG8kO,f=,=FIb@W5uհx C-'p>g8m-1! +%NŊh ~6RUwZx,6N=A yLb]o =Ŋ/Ik^ٝN$a@gLRQ{?jׇi Qa.hzeA5i(yBQ0HpbB{ׇwG(bYdI'~".y97TzsTwdMYbFqD$LMQc|S |EU\L=M4u=/e8E!ʛ8p!|$ |?-I^7 SA!diOO'c0E 'QKE a6 醖/߾rs}bPl. imDIՖ|yx@KV\< < $EqOeg"gF~O{ՆЇᙏ_~fxӢirz-QG9v\7p|+۫5W04q`r>YVkuQRgʲcPy14f_Q[<Y7\d9huEVd,wLZ#DQu ґ n79A7 Y`{AzY?~R( d^H57Wkd{_VD|? S8@ʘW0Ն4ːdK}WlP>`N/O/р-G iږ1R`f{3y1#N Cl9v/mx9Jq)/SeP(q6 H1'}% H%_ݽZ'ؿj]o釁<_^ \A@Tep<~Hi6 ?Z}߁HߟERѶ-i갔m3 bC j@a4^@/@kc?[.x'ݦX+ GK]431#P#6*Bxmѝ$nyѣĀт8lޭ톳1S+ˌ58_G/<Kn[oQ=6?/'w5s߿%y <.ťBdF}k Ԓݾ;;>ߟiMXd ~|qH|!T BY:+w%Lbf@?LgQH(#zٮb_8-on7њA `1}r!#A3t *#Œ4Lxz2ᅔ y3v;R@:S5$A/0C "Y\_'@<}J$<~Bv&/34'sYQ6@Ԭoּ|Ljp[Ǧ`+}HٵQ""!)۞~8h+ysá8q2ɲABs)X|O uEit0\hy?J9:oJ'}E|@] r (8ZG݀h44":1#Jgՙ0yV)j0CO!,\ (Z9hco =R(:\[cq99rϡKlW^K}yŜ*zyz;ohdP5 OBd4CS|BT~W/(=A0ϐ#r^R1K5,-{^gob#ev' әN4'sڦ)_SH,qdgHjْ}3>S)J}m4;5@UҐ~,KHeZt-Jy8c}zqsU5|9%8"tr>#g9Q I |D9_μ_2h3qvd#CLmKH((޿l45ahXZ%3|ޣğX\݂,ˁO5TD SPPB쩆 E9Ek^ RLzhڱH2ʦ7T's$J ϟx_C8WmGfZZ5X dqL C0zZ !IPU3ڑ( Ð4(1#qZS jae[l9k34iEܽy (mZ|?ZNaxO_lPHBYs 9OOGX-cll{}S, >}L\ZnY C]f9X73t^_cDF8)xbpiM7?1:A55yQ#?IIY(˜l0uۏe_U|xsogj5>7&Ȳ>r}|~}"shAw ͖uR=DAHt8$/_t z0_2vEQ^/hM? <>;^^^8 ,y>n}toh,F;L1ieX=΅<5N'11 Rb'A Sɘo3%{%r=SuNHq׎(9W8o:5;`^M9<$F;wx,z.u= {fKZ?hy21ե5US1'c-q 휧V9ӅnA58?dXp4MyQ)OuHfL=QWuDdc_zB MU w&VQ)Ni)-<=SZU^K(RѶ='Ĕ3WsQb{CJo2Sv;򉢈*8j =&黎 ~Tk)dokˎ/ 1zI55&RҏQg+>brYs> E`ȹŰCnVk$#(8ͥ0h2Ӗ8,$"?*MmZbS3c ˹ҎBL& Yf!ӏ!ǁJ v?~*zѨ,Xs@r9yYrq..Y>75uvIKrт _//4]O싁OSpOg>?9'# &`#8z0 0Ó][U\H>񽐺huMn@ZlޒejVQLwx~8 =Z -zV,op h ;5f #./>):aV+loUGGx/Q'V |ϲ^ 8G2X9p/$*iQ~-WkCsy&R!?jfWBQn(Oܗ4 y2r\ R?gݲz;oF@KDWnyrNn%w+w\ch9߳oWRR=D6t57kf/t FsG[>rϨnWW\]Rh(ʰUO0QMȘ|>élr9ȓtpXo6c36=e81 #n6$,Cǩx cxTs͖#Ձ#_ :6$@s ,\D|9f6 m??xZ)\W O|@2`4Qh:B!3(d/<^@ t. $H^!f(%okJa -7{YabɗOOUrssuI0.~{g8pY3j Y(8%2*{^N C@3(@hȳ5 a.qUlGɜ3q>džE88/lRG*Qj.fTaMI 4ԚA[C%4|<=(!Am2fGtj(قXB5'N>˿~6x|90ʈQ?Y/2UL8\FɮH4;6,WPw,Vε@vDَ<|Lg^jfdIe\篟1Ne>O?"NsDsݿ0͜xqPЌU=ƍbE\~ޟGExgRݮz|>oHBt# pV' Y?}',x|9ٌkQvǑnwZfقdqJ*l`j&8SRYdj2)Tr#MQO O1MMO*PD(/iD4j;G\#mE//8?Ulbӟq@Qtx{wԣI*x8?|h<sL2bJ%<톡i <+|sK `l:?d2UF[p}u!BzMxqr"P5ƁOrfߓd)>M5J (B fEy>8E 7A= Vq"=^8%.~쑯 rO*ߍNB`jnrֆB$y'hg Vk6q R遲^!>ʟ' ؖ9`} hBq*mi^PFw#^S,|b(p2!R<_<}AdD HjH< kZUO O< oor6* |ExB*;$B!ґ(O?:$o2]O(RHzK5 d 71> #*PҘ,n2Y{5rYk5mNQjG~xjj9|?ew[ ]ñywGdAwX!؁lV3w[Vo醑߼n|_>bGQ41W>oy{z'F">([ϟqx^Dӗl9bh-i&e{=cs@x4Y Y:c>OC vj1RO/(q|~zgl}o# -ߓ%vt<)uķq, LӱgdI2:}r!#fќ6lc 6c}:×O_o臑8臑=3VX%'{?R7-eYk.fj5:d3xhF߇j:r:N$ZbKySG9%oߓ9R) <6sL 0b1Jл,$#Vޔ2#(<`JFi- X,c!()¡Qɍ"}ۂ1}OY+ %jvQDLC|FY a<|(y{Cݕv٩"7M48!Cn%ma)(b?KMS%YX| &77o9iLRaP)>?UDS,͐GI8NHA@a{B!BN#^EB B8b,K4CIIYCS̓rbM =򧪶D^'h&ѓCJp fysG%(3~ \ f@ hq`BEȈ͚>s9zNh._,m/Ȳɸ֝/baǐʩ)BNQAI8>?:MY4$$r =i.dQ#ba0*Q]:6+TMG-VdqD(yҔ -G(3x ɢO{0#7+UN%Q`ހEDÎ(3/ C,i:Z ~)fh|B7~(E f ]D4E_ȑw8?_5AfUƥh8̒zh}cqRfIJ<3,ooȓ9f#Œeh 7k.È#oN[/`F R }_ U;" IvmYH|ʘeӐ>H$^G*3$1a(я_/g>= kC=o/тSݴ-`YY *EQ1zYStщbRN,=Gu9놮l Ŵ֚y"g6yB]TtC9Ղ{g}wù:6b?\!Yz'."BqɲA8m"(<+YESI䳔n'N={b3H1\NI@$G (ƿv@fo~f]Yv?Q8<~)dS PKO<#I!|vIņfAӳ;^%W 3cDœ:TQv=C_cLA r8<# &i0&,*ڮ(ٽxcdXR%m[s憦mf*N(ɫjZ#.]b"U3*o#*G>S6E]2=7_C|Fո(Jx]ryOQ|Gt#HorP VICYRUg>޾Z%_qssMŨGPJ2^o8>?p\Ѽ< Ֆ",82_Gv\$Y%9Lr'Ʀ&4'{w$~X<(n;Vʣ5|bV%X$N\ 8&rΗ ~+|4dQ<1:_Ȓ@ gXSX!‡(O짓%p"ESa3}YFsh@dzN)i3J)|ĈG(3kP){00 $jMD`pV$X1h_ F=Pw-BJ|ߣZ}aJh3-sJ" @ۖuM}pDFdYLSYg6hږu+uub^O?U5fA34|@;;Îh ~)ݎ,pfh\X9y7Ir%M}edI@̘EK~#I4cO/M 5\qfhX;}+T b]g]zŠGKcF*on2(塔7BEEmi$Պi0ל뒫tx@nz>nAxd%ׄR(o*J∶gq-wWk8ǟ>]||M4q2m0Л*XʦQ2m(+r! O9|ߛ8Z CX;b k-ؿnb!ʛƁAЍ&kkFhcIii%]!~Z*7 ۜYF{-5dbe q@9?o6x{ztc EhƱK-DOK5r<*BJX"*|)#W~*mm1~8VpN;:ruWx?q??liE Ӑ?q5[].(;#C mG0on=jT#cg(a`H8 a n hgs$7#F8/=2 8`{ \mZ _:d[M#<39AʁlqX큎Ղ8T)w8?!=&^g8>(zŐ~@]j` U} "o+LSr**@!.p}tb=$uK{BnRAUb\"ZKV,vb)y$Y)M,Cl6vft DƁ3*AQ_nHEm C~?Xt2E9,Z݉l O_6t J R|!;̥tnY#gԧGaе;5B|၀|8 B&,fYB $@>T?H/gz +_O6H55_3KSFc*x@c{gZ_I(RڠU]M ekiۆ|BtmGq.88:WWWx:1:#}!"b-aPVeQ7 {LӶUA$ax+>}JY6E-͠OΣ|Py1w3/ _Q X]3_~%B$ ^] qw/GΧQ bh kR#|v#_>?%8mU@.YOZ aX t3(j#B?)j48'0q*/Nljb&p-y!(a'Bіhp<93$18QG7 H8Tc!xrZ|Y0Hd@tnc(KQ=p{ӊօƑV )4,,bH_!=6aCh'\_eYP¡OD7tX Ðni-]X.bnnr^vG^p.v3MUb)^O&. ϿbAv0[ }//?aڑ3Zܾp=YQ- qBM=D1_qfčaN/g6yFY].p*~O{w2QޔmiE i;],`4Mے~,^?]pR ¥o9hauϠG"?dH qL!@IfI9P4UB?w(h4YRSfN5Wu}'TveJk54Tc1_KJi%uk_?MHGBʉK1q8&\.g.yzzeMAoQ55BZ|̩߱$N^q)j=D2[XlCC3NU.y|~j!#4U9v9<὞k&tCulqē$RIib{&>u?xbI0-RLſ8qLq z =418Yt=fk5ѣ|5CR$YL?(OMuvy,R*9a:%NZcĎ_89&.9j:Z]D&:"TctG~0"_iGlz2BЦA |qƩ).2 h=4aYRߑFǡƦ$a%7IC[pkaS;G3O Yk^=B+2_ - ?,&M ׳53/;5=td6_s60%%V($a.4i:_CMk Cv1OSsx6 ڪjցzfa'D L~) |_D p=I A6^COB&<5O|!UmPIf?l9_aMF,I=>\oӘ_g@rnɩp.'ĖkL5ktq%O/h:M&<>O9Hz:>?a9<f1WvWg2\ׯjq4yar=Xy|>.<@"U@|$1rT21IzPwސ$!w mM$ xB;UQ=<7xD-әZYIJJ'c|A}n9 X1>Ն_2hoԗ|NMp؟G7ý쾽[sڟX<~~J3O3K8:]gV[Ytlz$fMpf5^ 4L}ybZZc J̀cI+R~@ڊYnhv0c]3x> y:ސx>ͩش$lGL -vKv()蛎yϿܬś?ⴥDo7UI($qq|:Zh`ꉳе1M7 nE[jǹ;H1<ʗ#AaTtEb^ZYxKf`>⸻(%#eKSlwgR)h\-bZ ͩU4rpH(QŷwMMlLOZVk꧆4K^\8۽ #Kr~u[Qv Y"$|'#a!f,YN<;pn.<4 q15Bk-΃4v!֧u߲4Avi U{$C#1C#'^OKI8Y(3.bN bTPZ*vYzJbpX*_iS-(;*ewX5w; Z|J9*ݱT KD%vM0 (DAU|yq:5tu itAFۯ<_WˀT<%cGw<^v'Vs:@T0ld.,~5+ Yc=v$inKRj=]4^eH].і=KO9(˞JΗ>綠K^H*b1螺pT ׌HS(gIBtL̇?醚㹠GL |v#O̗ ?q(] Պ&e>MbyC2pAB6{Gմ+~/tfIW!˫V /fd8>=OS/O$Ym%d>~&+Νx8Hm\zt!6G4l3M|6[p{o~/=|g v_g|gj$qȩhQßޢݞoh@1g|_~ቪ(P]c(nB %=߼g4@4#eo<,?~=FaW YBQSV{P 0AWs~ʪE~U}a$aHtCrךzM4v;9MQ92M1Ҷ ? t$Ibd<ȣ(8~zoa{P閗z8d>_pz>y>zCN $錶%c:m0Oʧ C I+rGӜtS/i@XY=^߾Fw\"0'= ߑ A>g&+#irC}aHն`AHN:0(8)^k|?dF'j(-͚b68g38!|M=5]Ki!rjM6<ӛS(_aj# Şz }rKk6W7dQ@[6E%_v _w|:pՂw& Ƽy)oޒ~x~ey}VޱZopBH9z_r4uUĞOӔwۚص=*2hmB0v" ywѨ uAazyN81/m3^ RezaM)NnJmF5zd`\"cO4 f0L)&ӨٮIR>BԣƂU‚,V fD#EQka@5RkOdߗB`uO ٓ0E>I HB, ʰ8\P߳'RэXUVi<,{M8CaJJO,^HOM ɾe4`{o'pDDq3c RNqZ82u]vJO,.KӶhk֠|ŏLQfV+g{/'Kq C]VdqB&<<]? KV5STUԐM*Ͽ}&tT#ifiJX79EF-EIV4ج3tMXmITZqdbq'G*ôy= H'Q94?d=1c6WHceOs_vhť_"5a2[Y-.jI4uAz }GÑ8WgK|ƥ=6G+F5`H|r CD?C6KXslW#5p(Μf0H+,sfb9fudB a[2/bfE |(jBϛ^ZG0($DNC^= VJa<9It~J!E2h :@5u(ੜ BI2/U0q t vqk@ (7M~vzg:BzC{t-'$ u7/fOo\I\nXTuKv\HD>T} MiZ8p]z"b8z+LKY>R)g-^裔D*WJx^@(yk"K8ϧ}X8 jRhkh8XH$u5pDhO>jh=*NySr?#۾c0#8ҏ#X~I2HUH#}PPz2@,%Ǝ( M()J3Bu2xgdYN41yrq bOa1]Wz>6QID^3L#L8.݅o&Yo}'i/|<4.F0A4qlW[i $rB_NTnz&QJ9l>6@D'>5/5^ b5YњQ5 R0 ,cZPԵ<5|"o5o$]iG%g1\\L/-b_]tmQJf5i#! c>Ўȳ9|N8on/YnfKmKG$fݲBIv*+|ǓIOu@NtmPQخ焉, 6YNm c2ct=zHѢ~xC{axq- O(# IҜ # i`9՟bWәZ{t"wo.FKtu2Vgcb,Y@:f`,"R$7kT0cefK_Ŋxf}TKC/& y깦e෇3nE){<' ~&AKO=AK%T^`g)&0NR5A?E!/(/$>'3B A6z,] ń(l6' Smr{wu=mԏ4f]-x[n$gq6# BK27F4U ~||橼tO2 13Hl$O@o!]۷snׄWv!/,)r >}@SiD︻Ƌeyc]eBOzuKt5YGwUp<0ZÈcЎ-) $ "ЖE:Ùm QB%a08~g4,'#:c $Fivs(bzxBT '`4#Ơ| b?X.vD fd,I xs='`$H)f"Eʁ2$=ӈ$'\QҒ>M*ڞ ?<4aE,X(jHrw@ txf$K9vD6+Xb,/%s.g>AȂpHhږD G}Q'_zhh5z[.`mQyH!_wRhZItZZKg4J5JzI"* NNs)ŒH!Bz C>ݑw1M77aFy* ]M5 >~%K&yMy ?9//ՅЇUJ;hGHd('H#\,][ cF儔$NoXYzHDcsڦ" #h8f0mBU8\ Kېo Raz9j"t/_r:u=W5H]|0T ׷MC;ñWWw]o)/{WoKڮ'  D7o9.ܼ3xiQoa1[yjRrh:Ne3]_Ùd(3g$Patfc|ylaK)V  cOa$iN'< !]g[ &D0:qN4/ɹ&WSu=D7mKk}!<(Gہzhm04ACIQc%`4ۖRq^X)o98ɒO__hHdVc"^C(yDoz2%X'il`5YI8H N/g99,1RX%|ᛷDAg=ȁ$X_m=R ʺR 8_r)Fv֍,?!àI)H}~Fc-˻ ~\ݜHw?} GjF5f 0AMyLe=.-[|c_F! gfh,]c8 T(eYe+/ﮈ4yzx*tV>s͠ٮ}`Xg9A.,C۱I7_vϏ<_/-D*^^9QtPt!Ŕ_N|[4pH~sD>S?F_.,˅#PiHt톫+x(-Ū%lQTv&6өC1}LsLe.nfy0ՉooC*7T!z*8?l[T!f6ctȯR!U{mÈ_p%cjOl^~s_~"KQRa,/'P ezT2 ٮSŌ۷Wdy'F<ۑ 7tGqG^TɎ-i=c~yh2xP Fh @ y^tq@C2+3"2bwޯz|ts/8(fRe}uN6?oH( Oi&kj'BRIc J $liՔxn_WCrʩah.CDYH҈l6rd6kV, A + !QI,Ŝ7QHgA6n2@Y躎|:EIO?-<4%O'$ ɐ* '<>}|S<=xE0o?S-* y|~|TlsAm+C:E]X>=>1J|v #J&a2_>gY#6; #&gsdfӑPzO$EL's( 9p:t*f0%D/,gDQGi:P -u LldC',T)vFb4| Ok::" #T17q֡=:PQ G]Q4F&Q`NM7PZzx:Q(L@cWlSby>д mՑX9#QT̀e;nHc"C*(),E,C CWRjf`{n &U -zm$ 4FJ^yTa<, Pn:Y,%+Mr~E;f<0/Jx!qf^! GhS="L# ;0»Q=u$]SHnK|xDL.N$`hzӌ\jF6QH[TUPFSULLytùrق*wyIӜeV%gscw)*GYT]c "u~`_A2:C|28"-ꂷQ xT[KtuTlO|@ gm ,K 5˖o,~lf:aLϮoEGa2 SqrKH6|ñBkA"cul@ OuuM}?(RDLq$Mu5k3Q@izǦgsi <|zؒ$OoMGٕ=q( $NR$z8#T!CBHHdoӹEс :b /<4ҹ띧3wdt`"GTQGXg>>6,oq}ǫ?D"3gj@M譠4=ANAs{@'#)YHl Xܼ& jzyPf>'C[O{ ӄ0vtu3'z3Inө.hg|;_Ñ9Ԟ`fV|U BSLd9 Q 4d|8n;0 C>Dhc!m$y $ #$f6/\Y,~}f(Ygcc;_CM,/^s7-o.Y/(qwEDݴ,PgMKI,H%##|9>?%R߾"b*~1_waT-*y1SxV <EɘBHʲ_=&'yXleAfJyo)650Ƽ,,o5/_`#1 CKTܘcqutz1i{TqcΠuHc^pFK)քZw?ǘ9 I 6@ `)̀ $a*(E%)dIF9 ^v0llt6i zSqqyE/tHbfZsJQَt; JVhM -%\ML∶/„n0<mC/eS4큇ɁH.x ~s&q~MNh,ɌC&FkB3tk,jU6(ymXSLF~cLE=JhnZ)N'$ٜ}ݰ&s!}Áii'l\l=vC!)'֜7WDZ0 4H)e2 yp喡A5Ŋ!T6(H~|b@IJp[zR+`U˻ߠӈW޳=x[nzNf|KQBLP62C] 0G*R̗ \(dO?O@Jaѓ@O %% F컆x)X[ vB]XNJDkH93??_遻[..YSw_yi3Mud5K^ CY?/&є蛎b"Æ &ij6XC4XTH"5bNa'bɂ68ʈcCa6)RX4zp&cLo(ODIϸPA-8 QN1!6Ĭ Y"&1iLP+V'rΑF IG8@H"z1087+!PR8HN8]( I?;CPc)A{8FI$ΒDK"b(׉}ǿ+)X6=RL}_? O'QlP*jûw1Tu@3(K :T\B`9v#CmW &n}}Af (ũ؞XG&<'RVsxB0ei|/g~=},I Ʉ8 ĩya{:HZi.o^3_c*}Sr93W v'PSY!Z~ݎ$J O|w=Ua?P Oxs۱ud6Y-׼-^*<€ԜJcvg1^Y-r֫: B)une1EQd9bXcIl9Mҙa64N苊|BEDBȀyk4KAyO80}/˟1)5Z>A*B1DJ!^`LyZAscZD|9, h>TzL}Q ^jrBVƏU(PA@ ƄP!d2bƅSu}?*#}!0[ERR*>~JGц.R޼aZe9Y>!N2xƂYe9A20`$g6R5BgҒ /{C C0tڶk/15<'z| I(O=}&PU>|jvؾˡ$$ʐiB:SD*ˌ{?Ӷ@79[9P ۻO_o_(;d_>yn`Q-8`}9nK|gi;$ qhi>SmhT0'3N5a0CHE N14$X㞶m*'% Hϗ>Ga%%£t(y@j(2Zww=WNWҴ)WJu@ujLTm=]?av~M/J~3C)]!LZ'@4eEUI-_Jk%yz}Zo ݘ2'ʼnlF=O'v #zQ%˚G(x[4-y0CO'G8鑾7onȵB8ZQݣZO Ρ] t8&7kNPoYgWK$Jx!ؗf9m MI jx:v86 vH/qkO}ExLjuOJEi *ίtfnDtA -/pCr3Wg)Q5p8h\t2!cu: GD C-mⶦ<5o?N-ED;֯|,(ëZF{O_X䓔F( zÉ!ӑ$HP1'!$[y no9<=rzGy$\LsZ@[8_jw~x8q|ܑZ}?tDɜpu{bsvy4~>!`=At%V!|78sgiDgFwՍ6\N:Dߣ[aiGqey|>8J" 3`&rk',KuTEI[7]06-g{$FϛgEifp8Zzap<2pְOqa?,NCYQ=uEKLVK =ضnnJO {IE?<cwBMx1?ݖ#X{?gܼ{ [iͻk*yw}NKo3MՂGbuVx);w0t=m(P#is:b@o,XaPK(ԜFhEB)ye i(ij DѼT4r^hn0iB۵=54EZ pq6_;ɩ14n=Hd̾W0|#3&)yߎյ(8'3ld1I5I9#cNH= //9_4-TǒoG]$ %FC$'At# ޕ83&Gф'  (_jqZ~a"!aXcpqyZYFtE+=.^'Z3R~k[zDAs%$ј*$Ir8c(O%݉ǻ-J(xǛׯTQp7i^Oflq/L JtB@DUeyVGeZbE+EzaqvF g }߱Z-gFzR#_s8pjcI4z̦>= agֿ-9u},=ZkaknǤicq:e5_8ӮRvy2?Z(u4M 0Dq*ω#ŀ L2PhG:tS"PH׸ 'FMh5F6p*dSzhlӎ^vfӃ@geې4XNg7~|| MNHAE[S׌R8DQc;Uq J:N\H% ں&:E"x=,bp-ǂ4UjMsTyJ?4(-d9INe:z wt0h@%1ْIstfst}?P)mC{h)ؔmǛ%J4]\01 M%iJ6l#52A7tCL-?DH9Ԗ˛w$Q=1 Si5Ö$%(,RWuU1s^zSj7>ӀLtuI2r7!..9uo ?}tdǨDO'Yȱ`zS#̀{w=F ÷,/\^d8sEy71C1v:4)vMl=e ޮް}T5_P-P) [$)kYOx4 l%]`ġ5C0Q?gg %bDߐXG`>g9{u4Tn0f=^-9֋=/knofLgs2,X,QDd,Vg/a:!Nߨڒa#$Npi@4qzd *b*OSu'9kY>HddR _]_S%Tp'H GDpԴCIg[D(t2~垦iL[[33 fO/iyڐ)`MG$iJ'ZZ/Ɵq9u]@g a2>ܵ}`:4XGYVc4@Qy|}G8gw|(Pauceh6I0"kB4g$šfᇟ?rH*Vy,=7x'˜іxgx{uIŞr[d߳,ҌZHT}Kd<< Xizpl}Y%kD`xEkxp]Ӏ,W ނP%*Mh vZBd3raG@OYc1]sف\ Mqw5Vj.3PhDluéh*Py5=tVGMr:"d2躞{p}׻"vq]^ $ec>2/52h=e{$,̴%1%Ftij$gݲL׊o5$b> yi&#(r)i@ S5gyH.zT,ϧAtTq x}3g (+s>r{WYbTT"[]bۯлa'XZ2B߽\KZєͦ G@H.|ہBr1^ǨيGܞz~)Il70؞?6qmʊ;uc( Z^_|~Ռ U,L'9]Q2_iSD8͂T] ??s:QB;W{8 MM{$j6L@_ff_/./yB~#~U݀DLW8i Oj6d~u昮K8?'\ג%Ixnx4WtMG}*Gv=Nܜl0Ŋ!9:?є b-8lX_f-e][W3~7(iA@Ҕ+Ȳx$0ds(AP'"8,^7`[)\;` |'voɂ|#`6f |"@E1oth! 2زEG ۦ,,t"'Hp=~€`ḐISca~~ɶts b{O[NEC; sd,C9(CO,H8/=~L(%{-8yD ի0EG#oq%(Hn`2Y` Ør|aUtAE1ua#4'I3*Kڱyڲ;8&_Ι+'WR0V:8 @4ӉzM&9H< ?WI0Ι..OWmþdyw컊$GhjX_ٖq--: 𶧩XS6窤<ׯFq`hw쫆t2gR$3ٌ$f5Ez~'Se+MILAޛw {i5Ck U]@J2ж#5It4Sqrk֋ ZA.xBDqAк?c1P8!Eє qRyO-rt/fO!XD#Q*]\B {Prb{,J|+cF֚( X,%HG`< <"47Wx;p -iquAA2{7G6?PJlo}4<9['w7Pg1es{؏Rr8x.)JC7:9?d>Gݛw &@8VR&b$ R(X;3?hcN ,!l xS75Ə@FQB PA:c03DZIM"Bqf4,$cO%aܿ%88\ \̗8˩:@S}]}b?xg0}"!!=}L`:ツ+U˱uoٷ-y>!mQUc?X6+Gmquj\scl2!ts|=8a\#_ais" L5a1Yf^2 x#ڱ-+`,[UC(E%R)}g1gP)Mٱ;.C(֜#E9tiB0[Om_-@HIF:͘1o߾eSF)v B:I|%5,fz=ɯg#?RO88 N:z9Hˈpѳ3>9YwFu%W)Ӷ$I?}e ݡ2'2>~+vOH|d5ZL'X3eHQ~|"7oV\_XB?~а9լfKXl7/!"Yp>=;=$a/x<ٚ_p],O1r/~ʡxܕ(| | N UfʾF+ 4-MU|$) OjO5lIkۡZϩh<0]8[/&L6 }`PJ1̯Y!;1K)/|$R S,bʩ?QPE\_LѮ+y5?4QK=b:E:~_W{n[dyv/?BITSl.(8稢#UբMa`?P%#<ɉT!?3uٳۜEV<IP7$Fbl>6C qG;T|dqt6g[S-I:atgz3qqzoc=id9ٌ8T#lB(=qҕhguqJB:95 M[p &cbh1ZNST/@Ru%ES3zfc1\kȸx}jL Eqpfݽ0 cǁZݘTZሞy4m<ޑiS}PaWy8/#x,gWWgۑO&iC J;4#K3ʢ6ʦZ06v-tr( zR3/k=ޏ)ZQ{0xIj`䈍I7LƚfZþ0+hg~Ebi1}hJddZƔi4  $~i-33<# X*\L1(]C a]0w[oiںzPƠi̘9OT zd$UGX0 "\GLO GӳJA9V1lX(2*VqqUקGjIg+NUO aMKӖn@yƏMgIDATBziIAc5V\RA<O,F٩iN73niF$ UͩnxR#Kj$KBN'[a[MCKI04$2bݑ_~T=sPs>ͳ0tq{E1%CStañ}P:-xS|bvyI:]T`K_D|,k+`vqNGSv'& W94S}ǣI5Q3G@shx9ہhyy4̖S֗W)\-#o,R𻿿ĩ@7 ۊŚ|#eplw=BXTaœ!޼&bfqʇ7oְ\-͉3}u  O[br k,߿Lktŗ5!XRaLMf jZP=찇nl!\wi>%h(wlt;OߴAV,}Dv"S)a: lJ|qHHqҌٜkyx'MsH0FMxaL(N|9ˋ1Cqn*V3t`pg{kXͦH!x:me [.ϯԂf nzd4[OH$DP.YH]wh<ȲP1`e5RJCE[ALgh͞,TBs[¶: ]tyQXYF&{zd1Y)OO(,rńAD YHbB;A[4tmTɪ͑24\fsx ), R# C%՛)"ӨŌMQ˄u\IGk:?uvXW$3[Yy[\Q^H~?Ӈd5WL %$g3Ձ߿{ew`0DY¦h㈳ de9Ro<#16\d3Ӂi:pla@yuͫKveq4vF%1}Uѷ-AO3_ 8nN{:9ڂDӏ@*f$+s5jpLӜ4KZ!$=J* /Hi&)0 d2GfADtMME-fXLU8OA8ֽg0 N2QczbAStUFa@1CO4Ȇ3QVc iOst:x-A+&i[0KI,T̲4b! Kbb-; B 0Z~,8hl?p¤>;AH&cZ,X!'cmv]/සq^jOУ7SyaѶ%lnû ~5$8+Dz&gf嘖?~) q$ E!*nUg ʮ#CezCΉd~z9zV8T%Upu~ |}dP*0x<`*Z?lLu=I1clr9a]찓rk&RU)_ڷ#՜quħkʲ&]A^q`hQJUUkbk;>~t膎=Y1'->k?)ݞ(IȒX|T0]̑OAClӲ/C"9fY=C_J8#=t4qk-@蓏윳K20kl[N?]~-">GRr$ }nv!>+t>>|7>0H x<°o| 0kΟkʏL:qqqJWXky;vOG(~r:!B?5h2ş%= FT[$a~hےW7UG"3I95N:7WL~~! }8Fiɾ -Ǫ%[#?$'ٿtbwQB~7{$I:x3l(ږw{8dJœG 4892x8啂ߢ5o)8y-݁8<:#4%FiQ˂.s~Π3GĴq4-3 cB7?H=e!Tj=tmG7L.臞ƃC;ADiJo,[5ÃаohqScz:;Pm?/ #V8?=nD|0Q>eՌVpҡG.p(P$G}&I2'-d R%ЦCc!;37r;b,}{@ Akz7&/8Q`AV0¢`rL>q<ֈXP_muT,A ?5ʦbz_ Uٱ߳(_w R |,)n␾隆(=}s>+NV+C%]oX\KOc~0f|t+Pszs$)MٴMBϧozSQj:eMXW/_PV%H?|8zDӷ/=o /}r\ ڲd{hnKE=:= ~Yfh<,؆e7OpqzƱl/x v{`Ȳ) _moz޽vG62QCg&4Y5Fy^r?;>8V9Y_p<f aM '>Ugޗ/L&B'3XRleH e>uQq8сOtmO$Q4޳8Pn{V ,H(E%z:7d0͡cG&3 XciF{0ܹ}:,ny :źaLR:3&{0g{W5-eEp(q5Ǝ,g̟qM!ЗtBmOf{z!˘!ؑAik<@#ʚXT(>r0,Z ?OG/~A]ShE'=+]cHh0]$NgoݖiArR9GJ09Y-!!ZH?)/#7oS[5ݦ4M;DszrfKM.s_Q# P[c9YPv)yQ1=qrrJ~7GWOXs|-g\<;G`t2׬w WWVQ|ѧpՓֵȾ)`w!t'!Sw;>:bs]Θ,w]ΧoH%ES򼢪(cGOVݏynG@q0!ZPr0-Q'snkD[EfMÖcf|@:D!dNd= {DJk&'֒]|0ܽc6Ջ7dQh-C#,#A[N?ߍա)0]sCDY?2 5?{?~uo(m וDdBiGz c4!Ǫ X@/p=A@U7ˬsz~]g[ʒۻ5WWq;B)8t1a2K]CS-z2=H#mlfS^='?˩[z&4q~wsϿO}_~O{_2U۱Zf/#a+p=PjK~OG??}z[h:'fNB#/* V~gJr+9e)9{P/s쒪p ȫt2hJLUGSɁ'WS_p6_v=x%9g<ߔ܉~gՇKްk߼_'RP0 DQ(iBǠ$aC"j}<:[b"39s,a+xu]s<7C>~gSkL1>oov uyɊ?ΨvmJfMz;4xD{tA/,v詋#g^ZTdYe,YdS&I6MOI$zl7n4'W~(4pv-]ytr{}Ó*Z :ywsGwӔłu8t}IZp .#VS3!$m{h-^Q65Y)i S !$/_!I(誂}UP-?=Z3=Z* J+4MZJƭ؏Hz 0L昞0řGԏk;8@ i>ގQa6nd =Ğ&\&pRvC^MX?Z v CqX$%N(%H*5%qg4r8'߯K1yU/腦NICQ*#̹Q/X*yMI(h8@t?+8gGaRaaexByu]3N)r b !j-@@=~_7>yz}dzgDa7><xoofٌk#O0Qv5R ].ɒw[IHU)BOSGZ&Sonv"L1d#ܳ<]kNN`l[3?w cH=}ċwo)mGYLrPuDABcj>]_s8Tt( ( UCgW?ׯb?-#_ wTEʈӳS,5A("X6c ǰr<.J޼:I_7XD9wwL}>lՓ1'w#}7*/o^Rabv[r,QuCNHNN ' ϘEʡDx]n_; yxRpX \s$'ǡoyyKS9ٌw|c?ق_bf̞Y^eTF`s|w"Im" ''A82#X%l򒰬 } @rcH$fcW(LbXL(׏N f,/n q{.ݑ2e"/H_t|s)29|1g8lrc޼Nj2Ӕ|L8 ~wBrvO/8 "%/k>ZL%w|r9'PI̓Y}GdBxxf@ D-yU39,+dlu}t: 8/2o,S-mcӐR*on~l| #^@X^sјG?d/ _[}6k궤iZԬn蚎ל,O )E=R`cq"_JL&SH= "E^XzԘ8Z*f ̄krZRԖon$UEEaII}ܳ\49>i{ψg)][JY~'?d~9%]+I҈Yq{@m# N37@(eT)#8N_˿g:Ƕ#C M׌(0SkM)%'l$/Ú)YbSiv7t'|<ٿN5dOiHU P`$|BOqRQY|,R@i-]Ka,9W 5> qW* Sȍpc 3 If)ñp0@U־(Bj5F;viҩoqȾCC;(/ITE{cGQ|bH$dxH݃eKL_bTM>0 * ojpa$2v(!1S+2Z h//ٿ o}[N o)a5RtDiuSf)`}z'S>=l*h-Y,&fδ:YbXE!df̦ _Ƈ\],c݌ @6M9=sܾe9KiZƔL' W9]`1Ny{rE\=lz0=BޢLrE$ gU7gS5}ѡ@ k'g^\+}+*i]!'YJ:b!!?4uI'3<~UhiL' y~$Ԛ__WN0NK|c ɑQƤ?S;ׁRi q?R{5vLN y0 0 tJzhum Xaz:oH38|?"[ v^1h:)8MasWW{G(bFsc64]Kw _WN6 nFãDaDc zs@}U)c-+6VV3<$Zu?~0?\8d0Y,2H2Z 1 +̟3W&+jٔ*zE8E0FtH;ھc8k8vJi"и#FuO@mGJt}+At%!!cz}8I4I&4뺣lZ0) -@kڮ|5gG y˛{8 Łh[3$xU dAjPrryc+LE^r|{`v/c5J?DE7Cdg!Rئf22N骒@I`1MiGm?PB(NOh#b>lۆ8 tgz0ʄpe5-FTuGĘj񣘪9`EOR S_-;f }zТģd;r1]sW8NL. )ˎ>E#pawK,I'mq{ˋ+ֻBi|%,Ek8q~!.>^`a C/C$YJ^ߑ&3ywl:}̾2Ef!RgyX츘Hcy6Y^gxFQ+TP{6#V(iL, ,TEt5:rqqCØ0@1zi =:oљ%_|( N?xrqJt8ql6+ʾV b{ǒ@%,r ͆ko|ɟΦ83_<47ɻׯ gSkf+ڦrd۲8c $5t#v-́lt1k뷜}뇜p;?$i 5H)zza_no C'ԇ7ŇPS4%q3[-1CAOʚ' M0^qu;# ̣)4O)Fvơ6e>{]#C cn߮Ðw>%,mjvoP`W@yjN&'zg-QlCˆ~PLOO9~cPmdFYɇN% &?n1y{ABs3>#zN0_hD_9AQkM!S+eE2!32TaUvXZzXXx{}O ÚT=dg1nO}rɋoٶ=:NMن iǼ?qHx'|-}Q3O3^~9FJ.Yʛ]){ή.(9ͱDIɠ$n)KyLsnXS IPvd^@ZdfpƔLkL9_ Q4 ]kCK!x hHlߣT}X,qc!N"v JJ|!q_}iA 38ck#( YgJV-=p:OC[y i=B4BI3O4By7V4MO|NHZk$fp r<64u+xm{šSzhzG+ ݁|ʶq󭥢~ F;XrvT?ܝ48x2Ơ7fDn6H!q윪8W| m_Qaǣ#$7oo)X-)E3 V0_1q7Ϙ;O[Tszu4pcE ]s' 5-?|+N0 S(~톋3,&cp,?**3}'~!-`.ۖc]Kٌ1ґY͸5钶wqFh$kj =P1$!(npv >yr_DŽTFucz Sj}kQBҶ-($l'(0-ֹW Rb1XC4PZ?PF9`$p}% 9xnqN>l4~]עO&?(V9O^t59)灰6"`đcWnd|[nޢ8r:c{&I"ھkpQRVZk#M]<)`ǀ K3cRi~$I,a0mb6:LuQd\5Bs;@!@д R+Gk'T UUx1H|L+bp)NX^6ϨOX30Bba[$ib0bN0hLI,l oyIF 8_2Ē^ MbE6PeE1O0e3vC_㫆)=yC>Ƨ$I_0Ȑ8Z D./NiX`ȏz>ˋ[bI)oooCt:}j%D3>֧,.HڪY6w;{8)#Ø*byuɓ$`z 8],L ߾>,Ѵ~9I N/K>SŴ oH&+N'*Yodɂt6e<ޱH&ܽ~Ke- ~2_nnyw{99_ZpRY:A8v#$j(rWi?fwP d9 9K/^1R3MRwk;ڦC!Ͽpw:=BЧVv ['S뉢="ny' d]Lg32x,-orۜm^1:B)F)z*EDm)dK$ c E0MCYHٗ,Af3yFeM^q(|#?1xIBx|˳͎ӓoQA, SΝq|[$ӱV` |OPss%d|pD G'S蘞ΈW Jcy{ C($ CEf%BY 47г)rN(1nZBQWAGFtE ΒS?e1I=~bE 2Q#=m 'Z)j>mE]Da*wa@Qk-m7tW9~ӿwPT%Q8K׶AоO%(_#P#KppRGv-G&C ` !mr0 ǪA 4l"* /v<9k]>^Ogz{TD9rޑN&8giˆP-r$#&|[noj>ɔY͑ŌEs21 mcXjy#T}C׷l6$Y=4C+5}ď{bǘ҂Di2ƚKk 0JGꀯB8I!,%:ܷG+֢|NJ4LHy< i`" CVi22Q"A*l81ch|Ѹsq5`hiS#ʎz?$qh+ ~m؞4&>@=<1hIH^0р62,B9)r C f@ f`mg^iQB\LEIr+ָ+Y?8je7dhC,K`9 ^n[bmR=qRmR>apz =9A$PGӔ*=㑲Y̗{cho[r5 L&)qi#MS9>YD|VtazkٌCQ1O]#,8 g<9  ..hJӶ8_; b:Q^1ߏpaK9͚'b ~CǗoM>Ӕ~}fy+yM4-0]"b|tق/]s8b`u9 4dXQ ՒG|ハ骆cYrrӳ)I4''XJgcƴe0AvR}bbe1Ӭ}8 ւ{FQ+VJJ0=t ZC t3|5LQ NFh:_D^>ZzH!= 8К 1kf !Ɣ'c}WA-w4<AW]Pt]f#?ϗ|O-O)RK4am9U(0<, Ӕ8Qi:V&$8T00&"zћ_{ceuM1{>GfI1f||:#K1۵(=8&1,%ZGI/hT2Cܛ8^PہGAHu{ 0]E StBzr&o^}:Fױm( B#E)"qƴ1tAaAx!Jz HJh 8m]S[GkcDkya*k:+0BD"[$ms,z NRvOxݚY$3̓)pz  A+ɂ{M_:+M^5ˊ]Iym*rt-C7NP ZbVx ZQdDK^m:$8%|E8OM&MENnO}[f%vC/9v{:ˁiT7\ՑX>L}ݫwH`9[M'/Lg'T{egXz=Ye3̗s,=RdX)_|xD-5]SkCi%C!H ~qްMCP*ƏƉ{HӢqoL2öF+yZ85n G>sӠ&|b?Pn ME~{GlND)X }[Sl7 ڗczlu}n+ xC}dw #I%޼}$姾ov@#C=D%!ǻ uQ낓%4%B} GUDd9%/ Fan+-/?g)7ouCHY-g@ 'tF|L'@J$tuE*[n^a$%{<mb1~*Cy-w[t f>Vz$iOxw;N'su^L9xMcnj>#5N'UIiḾII$r{M@N[=!~\-p~̓xgdo{)dI[Txk$ :q=%:q,KR701fE /y@|1Y2kr>:<%e#tsqz5w膎..Q/Ԧ#NBq#HCnӣ'-6agso6@kt$ҍ&4V4EwK^Fz>_ǿz%Yī77ﮉ/ݰmU ey0 Ӏ|pB݆o p~`L#e~`(%=r9Ch5e] Af9軁 rWaD*Nkߤ]Y>,9җdžL7(G#YC ~r }q(?p ՘ϳJ`aG~WgUWCdKQl-`q2 ]q8ks;^{˻-MqJM]miʚCO]IU|`}f5"Ob&SœYM|tl>+ʺFyp֢5=/h7ʢ"I'$f@;%$EQ -}ߏIS)+s8;HX5mҶMSb|f}ΓRg@E1Ǝa0rL:kL&dIL?t838=1@' &tG P{hW>@Țo1THV GZKkWT]SAZZ:1#M@thOQ5GJ0e@ۦ7=A+E;=TkڲA)Lc< X!Qľș4MCo,:)#ZHTUM7raiP)Plω_xh-ILTAzvےh$֣h+{I2Yr<ܱk>`|vTEIyh%1TˏDI6? @Xi-]-n'}ȻךzOUow̗S>c|7͖(8:]hȏ-}^̱>o?#r>qD tD/<Eǰ= :8=9$yΠ,* NHu$=æ,eStGǚh{b5C*g?es~Rnwu(?e'Vi@f_Ж=A"()چ3ν@L$Qt{0T"8x J o7Z+L_%@T $Imx ~農J{8 mEc<&|g?.afCv\=~8сbo9BqXL&TMb J"޼z2軁'|\:.NAZ6{noȦ 6)ǣMrSyű̙Nд%vhفlk!|F)R=)L(dYHph*au Rjj@)(*C-+Y2( H_Ӗ5u]?зBJ'~dQB״X3>mׂQTX*{h#f pu-N *cOP]?>G)v;5dB_t3҃E'8i{HBQ=Bih%P sҧ=y tJEU&`ۢalʒ8 G1xA!~HrM~UlږcA]]n{ Ht  39huc*΢dq?1N)\K:ɹYU|{YB[#L>clѾd͑zO8]gh/l5t쨛Wdqrq utF%"cq:^x ši3VhHc6?a}4@Gu|257_ff@!E4))<偄ZDvP(0~t8 ty$n*XD3xw^oޛ t#SI)~Q1Qz<Q#7j@nOa8PQ'%];3: CP0l8OJpfo@J1^n!1c~xCEԖ1c5ۍC֒ 'fܣl`ty0#B:(bw|^"vWc{<;lv5Isr\̧ / 'gL 7╤&I4M|9ʉQ7'd"3{fɌHYYJ@Dx85\PjGV ~H{qV<{ &/ I MŪȉLx5}] M۠f2qΣ)Ӥy bjm0YHOq8{/Dx8I)iF㼝~ ,╄qPhE ͜xvOOOzfo 0g,;Ѿ0F"œjƈ.˙YO0A.*`* @8Hŵgi%z2ڌLf ?oAӈ`p f‡&Hb@&HbƑgk^< HZg|J B~cG=4N|HLC?iNDZ]O{tL"uP=M=E׫qKзDqHV,, Y$1Yc[dqhF7_Lk9J@̩x$-x˄4+q""E7~~'qLvGEb|*`֐ X1Mo."3EIgƉEyi֯2LiB 7o0qzBƑ@:b(pcbC]tg×Dl bEᒐdÇK A~~dВu("CAR䋘/_s; oH9O#?b5%'ڧg< ̄?@-E8˯j\f 3͖7op[TՂ=Qs<O!,Ed"bE?jzGc;4x˾[;AkI;^]EKj<}'⻁tsCҟ9}б!(.84x HbbҎ%d)}݄ 8h́[xMcZVW-~yۉՆx)ѐTJ"tе5`ڞ8,9դ떷oX- HK& LcFOՁ, ~$ Þ z}ҐH҈raz8 WӉ8>v|tO0ᩣAiazXryyA=t$QDk._py8U,V%YOO<&0|ǪCe%:&>~i-XzN1qE;M`dʡ9W7kØ73Ԅ"ؽpWl_ *h?P\VņF'4GvCQ\narg#(!=Ҵ\, -S "p7okZ;͌%hxWA(IvԽ&!H"(R:gQ^HV9މ-inC^T-5WтxyA->aP8-e yo^_9O.I[,H#FGf&&|dF6+1s8خ]_#3pڹ{akV= aD4Mo٭lʒUjÑOw(ښWK/Ĩ{~{M3c0._>bE;(<@D9/U8)g #MS]oyZ\ t8,s4\]^S?20yG./׬7͹^ߠjGdi,$R/Xuu+vVI@(TD8+b)pz$MU=5u=0"eDLmKEdaȇo0~\QɒvOTu󆶫g 8U=a 3K1 S^]m))E,oWi\ۑ0R\7qJeY_zwaҜÁW﮸qvsڱ.o&G7gn|aidH5 DeJ;*3POzhHcĄR4WX3!G2bt8s6yBGMSXP U>@ u;QO 挶ksx>ݖ#*azCXP7O$};0[bH_25w-frhӳ~U 4d27[68~d$Ar?Q=# KE. * w[&Qp8ZbAEI ؝pz5E|OugL(8ӰXDl˔H9FiPEucJ%Q\Z9NѰOExWĨ1L m2cf$bh6t#9a^ru⒧c̷WyFGYD&),.wDqx:En+.$^8ID{ׯ0iF)DIx>ӜdUfsE;銩,X]d-m-y=),ח|ߓgf@ X&9皯ȩ93y^!4r{x/:Yж NeYrw8#e)_~#P 424#muF9 rW)F4d8c[b^ h^ #af9 R RJb)KVéϴP ӬfKX+8p,ҘUbēmWXTyQdekK3_KŜF%"t[SNM$M5g.Uj2I*Ґnh*"ȩ;NNGG"m)^x1.Eƫ˜?"KE(zGZlrd'Cfh;2*qTmCwHRqԓ'JuU*Jhz2Nͥ%ε2˿{&+TW'N3v>+ooޑTF{ӑ)ΎS QU ۫W(H1 Iim0!,r]`'3Ms>WHkIe Us!QQ #Œ(g 鈞&K$&$zf 80uE;08ݻ7dYƩnh|β &NSzʢ;{ ibr7>d)\.rՊ k&##/x-YWklڑD 梠?&'],1^P4W\. E}sָ.^%_b΋4ؔ8(rbPc:b&Z%4.JֻBeJ&}[&)J̜$g Y<gd>@IEDARjM#Kv ~ TQFDA)a0'~\觑k\q!i[( 3T9Rxkޢb B()譥Ҟ-sFA(Nca4-<&PAHOyqF\-TQBE $IKDj aH)2D C)v˄7E&Q,*$ %QCIeDab5RDQH7/Q8 -of¡,0"f|'srC(Z @$Gk*y0 HGb 8X7ӧ膑HqfA}ƑLX1L5al *s8F0ߓah&4 e9//a!mFpW%]73Bh&q|\S8ZǣXƀEAթX7W!nϷwO#)`?|}b̉'K L-*F^%Z0P!ׯ/$)a gKZ.tb} -tdaB{n uxQpr#EeԒg1H=2J8gP4IucÁ)0bwũjX,SˠՂvHKF9e"a0HPQHiƫ݆xTwṁ0Qڡ+%{QIߏl7UC(UT,KTÄEQ[ ozjX|‡on*';o?4=e^6hXQ!>\oqϛ[Pa(rBknUsq|Kܒown~ Ցe՚_nA|rcXoOD ƺyh~c^2C,J|;Q$*"M>d ?£IJ<8T;ẁ(;XQ <-_}&KJΝzE1X#mV_>o,&y\GD_+"#- b{"p,"C:,WW MCQlѓO?"byEĜ3NnEY_s0艶)+c{,&|."_~As$ %)K5? uD,?Su}&Ka>Plw|FIAL@۵ y^b8 /]DGaCu=R IZH Ml E?@]G<>=;WYjD2ErמhB|zST rV=}{]?"!JcӴZKzoy8^p@ܝϔӞ4(s7)+jf?W5臞0R'5ZODiJ6\%ӨYei 86E#tLf;$ڙӍ#*IR Bi; hN`a(J֖ zqZ%K3Í#ח2uې A׿=S?q0<#VizE3Ś߼kz8㮵 0E 6#`r $9d':OFhk_*c<$Ep[0̋;4M84(p$8c q`zk N@a`àYbcAR=-ށ"fuJ8gV|J7^y:TO*0tC2!S_#S޼\w# s I~Q"`Q$QH4^ d4BJ.}% #Ǽ@$%Rh zM`agT!x^~[L,qAJ"l—Ҝmc-y4Wk2tl'}SD @Kϟ ZV?qgBmgNG/9>?uGq`(!0M)$q vI]1X"3N瞡 fFoL3DiZOwh .QiIivˈo>\ᥧgIDQ\,xeL:_:55a $2LX^H9.-N5%ܝY\?\OΏg0?j9kN)QCG7_II$[_&͹ysE1jeF9>PŬEȐ77,:N{{@mTyx}q'(")s6;T4_vbB2EV0[r đ$$J8z =KMd$H$߽yŶLi ٤)onYyDdD2DII *xAH|Y#I\72# zCآ"d+FQ5X:wwÿ/CZ$4CMgztvVTOUqZ)I d/Ś_~ is:~0w߼vDؑ( ,qSuOP 㯟-1B9X?h lp~~ Sb& 1G,%S풬˲PUOeOhnd7mI].Kھ# BdAV͉?y<` {`5i$QR,7LÁ"zf͖E.huŎPE3PQb1K,g2ؑ GsOQF7+5NGN͚( I5CvwoX! J?=ↆnLc>Jvhc pD0gC53G[4#b4gGh(7+<ǎØ8+劾r $E1%Yp:yzx"07fo򊫫%4Pqb:q:If͹:!e@sX/x!2WΦ'3pXgJE\SqȂL,WL@Af2I3 SϠv#yJɹj nDc'xIEaR1mwޙZEoQLB)9x24Rw3X32^}+su/O0X&9A2?__呟<7͚qpLFr? %2bqA׎\\][yʪ,1LYVua7yLS=(f]ٮ04U1ĉDa,8>~ B~xqz>]KX40 i'*nd4#h&G7Y,s'0=WW\\\p>_#˥z2(OgUOk#RGȀf#O?$BXA )%u2xlabA0isP%ۆԱFGAǏyz|B%)qJ04,%etyxzf,cMD ގ(JT@FGXw60D!qV@/Ya0p*@81o¿ s?jk/ +<ϦB!g8!5g-*DRw/rZ5i|>%1Ղ,KLŖfQK7+q#`4=S5a(IFDh]0 K%yb$qztfn# Hy0'J)01e8YjEIG zc0VJqԞiJe/9-^Jy){Zb cf{dK x3mzY!+=EN cd,Ɓcd[̗\)  +,!iL[!bu[!D%3N^p¼@zjҲ-J&R VcDWHpszuHF,X!8g!#pxBO#,Jyܑ(ϧJFaWdd6%0`ێv(b'.J7ਧW(FpFqn@'Gy˿|&Uo,o.I }Ø5*ıZ\7pr7;W+ǚ C0&-BE`E1!uF.uPʘ/5ri"/$B 3rٽɉc!04Ӽ=wIҌvd'W\n_MiYrY֤k">}ł]?98ʑlfOq8MK`ВE+vq2|DR (GEOLJОO'Sm9hyg.\G-NNrF;,zǨGVy4tH\^\*E;Pc75ԴA)n 㹧X{2A1*qf xJ}v-k~5aj^}sMQ@^aś+n1ӏILZ[.( }D׶l#uso{g.G9s՜l˿u"g,ẅRwzbǖ O?ݒ^lxhZ(hQd)">k!ÄPh7pl+( Z"BI"}'vqՂADLw5!aH?NVy@"c@幪HPDpjB!w=yf 2ʡI<$gf@?U\,sUshMPqGNL=L4]Y<#y?X0OD58Aۜ?s% 1#]W^/Hy"h)=B)Ʃ'/ l"=釖%}= 3WK>p]`,!I `|/Dু/?dqJ- @,#Ɨg; %\=-8,D:XĈE14f`V=[|H/<3a9$铹tG,&e1~w}m_;2z"/.: \6, M}_bPOuc=s^ x"+c%!%Uo.ږ0^km&6<<5ˏQ) 4W7+654Վxx;wo3а^dT_5}à;FQ$/8Wlk&4؉huqlwOUB8bQ$V)M}q@~/_XniKŔx(W=G.0g]O;6Xgk$Iy}|'0u- \_mg?V!!O2R$p($LvbҊmoL#N 8N`}GGmG C7sga7j/~ $ Yg^V 0[xV̟{I]/KL+EI <FO QǞ=[|4r\9WgOq|I[󼹹BJEնO/ƹ,ZaYY7<Ëi5P,q3Yla3o׾%_!^ V[z=ڧcYwӈrM jzBe48Xſ s7ESI K7t\HIX⠠9ODRR }t@]r!X1xKV(έd bI݄]8x9w$0h "xn>X$MJHE"t}S_cgpڒj[!D pxcc1GgnյlTuVnq5A2y EHJbo'1;:3C0ÐY-KQ:&gJ{( Jv<Ha&${ƗV;i6ۜh O#O# 7nXҷ'4)jz CnonbnѰ?msaHqx7KOKT|-nK\=gk|r]4lHC(41m] ,%ȁx`D&A A\zE` AL0%4ͱ%ptwY.WUמ)ǯz~W%,ȋGn {7_ٮ F=Л'679eӟ5O_WX#H0PEc2ќ5qS=£UU1wZq܉mZ(o2vON,7<|DYDUko߽o;aYND[XbUvO2B0!AHZyli%O] Sx'qD11%_x7Fc}_s&d,\8nɪȈo?)eVp$P lWIeԎgʷ. (peȳ1 DPuuZdחw8"ˌaH%Պ̱ӣy2fj׆m+tzͷۉ3ӯ\}p't:fGMo?\W>a2~{LD( ar{(͖^zsFD!F2pШEjcD*a./x mkirЛvC{n8JRD0ӉtҌCy2n\9<]á 2J(%M4Xҡj_Qo.};0e 6X3??/Ȧ%BO Iu}bR +mC"j"/Du$tCE\Q^_nO,jyO= Q,6vnT!BL0=.f>DȈ~!JsX-V mK׶l_ t3UVXT"I6|8,26+f;8eJBFfwâU; 5EΩd 9ZpaD9zΕEn,q1L#z MpK.y Z!㨉^R r&JX4ԇC]]\⦉:!dDtLIO@қ0"B; 4=IΩoBPm,'0$MrzD.r6+y&kyH%3Isÿ4No(p%ɲqOXgKRI^z/__a<ݑX{ɗ+dņ\\^pzO},Q>!Mc8~~Db?}Wa"c~EZvFH*fSV Arjjp-qεc׻ PSU'PlV%f1Ng.:Rm4Nqh QJ<ڶ'O2'h=LL/.av-90 Jb!TsU>Y+{y`ex%h$$Jk s=?^xT`s);[ռuHd)%!TdJ)+R[j΃,X(A/Q,Y,]Vatg:ҳZ/pGM$<[R /5]߲, 8o8;yXHv" n0 <=ݡ"kn9ZjAŰ\-W|y|r{ItX눓PkO{D^j~kTxھp?7V@u8Pf ʍ(% x}‰_8P3KOmr$9z[kW+>RfN7!,Q 8)XnV?hڞga=:o90fNO֚0 : BP9Mې9zyfYдf6y 0@k$%3-Q!֍vD@6fH0 " 1Y,P*VDÄuA7URE/"X= `iBȒEF(d8v5YFQңHJbȒoq*@IENx{IE!27Ds" X !Bi4h{FX)^IHIHb"s>zM"-(&GV)ɢՂS7p6U:I@##)3q`%)H]:-JR=e^2hC,h#0s]a *N;i$-q)Xlל'hM[ ӈ:C:(x>)77[Qp<3RloXP.CU?hAdKZ ʷD6@%$0[8v24cAi\IB8E(1 e>͎@g|?uK!4b (42aD/RbF~{"ωg)iFa289Wpꩧ:=[BR"蚚DD8M Baj͖ ђE1|cMR̟޼',ƶ#Q?^-i]f#Y2L{)}{v]sM3rቷKڑ }v!#~d<ձ"Be^PJI7 gNEZM S~|ˇugnV|-RJ(#_Qelɲ ?NDiTvd#r3{gPhBY8$iBy$IF, F-Og_`18O"+ "X{Iׯ& gn R2|}z1ӄ;LXe|&WrqCCIm{l165ca=V GRo.7L޲?]p %c|" %Y$,H)FܐcȋTHgƆoɔ$a(KÙz0LCs;QΔa:3&:c /Qb '1i"aqIOEƩ惞(R2KPYTaq2xۉ*&;w0KJ1*P8$,3ѐ 5жcDێE"Cm4J1N#a!$v-KxZEi mױZ/f}0iMӀ|" yW=`Ht] O(y:<E)5}S 햋oyo{{ûw;~%݆͆/w-7Wi{Z 4OY%}-~$Scd ޾+OK65W[ƶ ^qjjF3PktاTfj8fѣ<ŹcCn^G.W+77xx>Dvv153$Ӥ /ס!xf`e4KjQJ5Wlp^2ybSLF& *J TePn߃ b{IVILzyQ6g硺֖kg!FZ?߼ЏY@(=^߽" ׫ytS4|?1Vuab%p:0HpG O]]Ӷ۟c-J =N\\_1ijdQ*twDLh8(1ˁqp #Y,iǑ@ࠪ{nخCnPRfk5?Î$s[voߒ,b޿fpxzm:iӁCC?xEIr OGd$ӘPX lV$y\^3Zr4W@r,#Uȑ:CUa{ӽ4^\_h?h$gNx  %  fꩫyFN,MپzC^]Ĺ?G3 8uyh9k\ ϟ*"G6#N%|Ţa,z0%*;K^=Pa槟ơ x,~ׯԍ8G! ɡǏtsF͊/O'n4MÁss +=닜yf=i.Ye9=|M=Y#OJI'O<0bHGt}>],{KN3v?~+jM< *y:}["cLb$I: gƮ'r͆₤(ǑKD3 3hF>+nƑc2//+#>R=QYbew$,nfU2v⊐T~{.K#4gR Uu7(a -i sسdE\UFReXǒ/qOӏ4ǻ" YUgt zO$\-}MS?T"~t:ÈŲF|6B3ROV 65ؐ[O,g=Ţ9#0É vu¸i:ńP hD[! &4\$K\Y2&8"]2|F["XѮ#)"f9qrCG[JОz~݂S{Ox7-Ip\h*J|:rj*LG4@}zWK؟v=l b@$q=a?ZϪLw$iwH3_(F%x`yD"ĉv\,!Af@A!d@kMu>/l*˜rb`F8}*<><ao12 R$YA$<;˯?O<= ?f! v;뚫%H{s^^o(Y3gB2($,I&@euq48ZOt PiU!l8:MX1nTcHxIk&265bY`Aʙwb\3N^p>8/(8 d5 Ƕv4u3-yAkN' Aq}?=p_8L'%eQ(iʢ>YV-;7\֬fKǁSБ!y~ٓ+r/viZ@*͇ݎ|Aۍ() "p8C]wUC&fZDJ?:˶e$Β9Ia,BEH;Z:/?_'"Պc -ÁGTDJ/sn!ܼ]H$S|'/37t ۑO4> 6Vڮ3<:}U3RbiPDAV@q+c;X<rSB⽣w{")~o)R0^EQtcQ$:&{h(fcѿ&w;D&1֌Xta-ZڦxчtS^UݱFi_Hrz^rZpw}tܷH#●+Ւ+,#JRu RR BJ|po-,3i6Zv^HM4mG6dXVBߓ}?5~Kv5_-IB8뚦kq2n\e5qm:+t~kH IDT' 874 yFgDf3Χf>4h-ItLh:2!_1%*)RRU{LA@G`~ $B=4!vSB"" $f&x0(Pc{DE0'Z`䨷4Npn| 2tN5Ӟ<߮:*+L2K>}3J52%nVx$`kd:!{j+O+#2aY^\q-a*ʫ+!N P1A)Bte2|:g0uMcVolI3-#hɢ`ۮf>y"bDrB#roEFZ)gDiBGc 닂jQk7'ڎ[T'9`=W?bF%~bd ڴ;B>A3& Ǯ'J?X-߼x{:r Gf0LgStU:w9Im8׉/_ d2% k95@Ko?}`29[T2eʹX=% _g_HCX`|Oq14K͊z_f"Ms! Y8u-"O#Y,qǁ`]WS C{%~E`UFIjNS횳TɌA@ŊZd-UNԴc&2e)U1uK$A:R)rn;&EDR1T'<זIQ`IEF843|{̹m9ī741Mp:")$M׏軌H+yNW#1}bJpXQ4 ݟSհ[_?ސm$):Nxޟ(3?KHE Y-ES)߾ga=p}a[Mךd4L N HIJڦ>k`npZiaL?>}$b1hTQBHj(hCLG4mC$%uknݘHm(5ߒHk<%wmRP75qV=FQہofL3P_?}Fkҷl|J|:xyX_Ts>6{ 5i?pxhP)24% Y1"EV,ʒ^OmO߾W瞦( ^wxo(=._3bWxϗ}[tq[1ml}3Cx=Ӌ"+Csw=Mcќd>mN Ht^㱢]gh3~guqEu㘮m'Fܑ_?rw$bѓW߽zH"nn!)8U5g7/4\} لdD#[\\ݑ"b=nO[S9T<7"ЉmBc,A&o>p>^>o\^pIўd-45x (< }<3?a@Z_ǭS)%_lxW^x˿fj:>^v4U;KD#M}rE:1 R.QzAE#xDF9ӎx$)5,&V* GfIÿJ7x޾@rx#CG6~|?gEN60v`y/!Np m\L L#jpY!Hg `#7لB |b4e׵)_ ʴDY>PN5@M/P>Ӕ-i9X-RiAD\hjٔ.2_0' s-1B(޼E' XO%bt<+ r2Z7zg|wMОt!]`|yOzFYfN]ˮ" H531c8&`SLb`FϺ"+xtTՙ$8軞?qX:)7Dp:rd(rz|ߓO$o{CEuo%IA8"!DL߿"xwPѤDqCZ=&;6xrYx qcZ!}Jv-!Ѱejw˅Tb*bH"Vpx Mic;z#E'43v M1E HIYW a픒,!Ě;s4u;w 8K״h!f,r2.21O (F(Jk"!g ,"E,B&hAT5EeKp2-DR%ɘ4~L xGgI26ch ӏ<4a Ax^=*V|=^| _;ד9ELZfEG' @~f$7?ӎH$\|ˮWgH<=ļ}-qy4ekck.n'bp5C%$:c0qXK ț;}Gy9T$ i9:^ۆ ~\NN'5cR% iRgz/Y6'|itB"(9!%KbV @*/Q[5RcP+R(92b!8 N$A0v }?z$-mVB%TR"řij0fLI`ہ!ZmC^Xh?|yo1u !fHLGoi8c ߍς8L 4F͜:auN#M=Ia>Z8v$qD(IBRLӊbR"8Tu 0"c@J>}ǼեRƏSX MW(r4PjM$J :sVν,ZjQ3-#8bرٿE@FkpΌ23Gkĸ!Qa%H)]݂slՠ~ܤ8Ǿ7GhJ[1 `t1B:")&tњ Ddig4:N2ƙ~TikUwvC$:PƓ]3(Gs؃Ld>>0]C)ZZhb_<r9I bGbgbPj ]G$l`PJi B c5n@E#z#U ~+ 8K"Hz3q6V4Lviq.&OhjCjd9< X5Ce%!SkHx5-WKds$tiʒ\h|Toyw\"@1+eX=xss˾zHY%?G%-Dsh_)`c#!B˷%m#JcXl9U5Ep\ST dДuu\|(X\]p8؜ڡC|&*<"/??sw}AiJS]t(3(t7 *$Hi\" łjs|68"1Jx`}BNv o@dW #+b=9R}70]o<<D\j}'}t\hKMQ"Zb㛎>l(/’Ebt8m,9dXRB}@y8;O,S6O8p +%KΧmPgvK:ILk5B"iƶ|-;$Ri$ˑsx~X.xLDGt֣| W<]ϱ:)no\M5!򴫸YOX9aj!iN-݉4Hip~ y\jd}nCMHs +$Lx:skLp(-|]&_6-^jDs|zB,eFSt eY7wT3HMʬī3ÙnC50ZR/Q m<==kMQL]z$2/2-JZ3 ܰRQd)Cג脾cŮ(Gvh?Lv֢E@ ׯdYF]`I"M4JjP)PZSPUOks&ENu<9v/ ӎD  I1 -ٓ߮K:Ӑ vyINZLh'/K6#KÑ"r|pZRcm@& 8I0P-m7N;DZ"Mm7-E^y!(M85guDѼ4 ,Y+xzc]7șsnLUNc)G@|5WSJhsƐQ[omթsWv=[ifl"7 <-]c\L't*82m'O4Bh#9 QǍ9@۴#]G$ 58,Q')˔PJ`;1)sD3 c?0Hȅ֍W=`S B!qA9z(+3n0:OoƪR /xG$""5@cRſ2$Z[(0^Zƽ1y*xudp2#7p~D^{JG(8MG$EjNl-Cr}uAH˯>S{EˉޞRx G,K|biPXW$'#t^Yx r<L{H&qϹj87c9 b23]u&8As}HS%3w+| /g=eIS8gѯ'HX׋9hUp:L9jw,:&CibSH_LLsMfS=p{ufҴ iQ#rFFH<28"h6=,Ւ?ϟ'Po ~[1DM$ɳC;7ϛ5q4 g(EOq$B !X֊a0 ߚg}%niaMZkbm~#%]j׿bPZkul%a]0|FZ$qSST28eeHXNFDbZOzn~rx$˓Wx?={=/"KI otvJZ}tDܾ4I,K#5%MێULFf)$Rjd5@51a+(_"\)-wUVqcEɘ$ifC$ }rp: NH`|AHLLTBYB"0]G&"(#gdiD/4Yࢄ,IȌ'Wh9weav*IJ #W' -Azpx KDZh-J ajY/yZ|cYˈ x? ӄ~Hu #!&4}KD`CB jdL8`Q!"E#//#J4V<S[s[}D,uF b Z5$:%R qTuJ%}S}B M$d:o8qD=29 Kvg˗\D#KVyFBqkεyMSl\f=Ua'ֳ 6 51VǞe<ڌ dCf2q:[)[|;C2.뎡 0Ziz낶0n؜9ہζ\.l4L%q<,W P1a:] 'uH˂<3Չ>3bR Cs"e`w(&HM<{3Ȋn.ݞx>-匡,SqCO%!I#T`~urMɻ?^)!K255]D\@\s<(HtgnX]^Q/Z`ZNr%ӫ+&7i1@'<y{A(w\-4|éd]`ϼ|t0˧t]>׆f_9LI I%vQ}~Јt6'%Y4 Eo:NiwIY̠.Xb4=S=ndӂxK$`RўzR_bS5ǶbN<`[A"鹦w__x|9`zIo$~vY.'HM"O?JIb0y9r9=s%77 Ҹ,%i9v|xG zrIAVL5;XH&D' Yd> A3)' &yB:!lZ1rJZ24!I ,&|ݠ۞p9gq\]#v<>l0xG \^/Z/甋_ﱻqY9H'QBO"7+p"ax#)wo2oBforc""ZcY߮ ՙ5l;q1fC"s. q}˴LY̦Hce\Ʉy{3|wf9A7N{||$/&\d MQbe1c{sWkj,g9# H y9]"/U Adf,ʒT+I̢,)ӜXŔŜ$)HTj2rz} {f $Z Xs^ȑ'8D+Lr[b,CtqȒ%8bL@Y,NO4@K|WkH48I^u֦J!H,ў{"&ƃY$IX4:k:0`I#(&)qgqDeNoHxb-p $buxX ގph)AZ}ۑ}XRrLfzq:XWލ)ןp$v%l*1$Ms1OO'sM $O@7ϸLA^L9xPdZrnN a7h8 ]Kg8$DJq؟{KOGβלώǗ#/_?=A$p};o]sj^NUÿ_a y1!H-%/ Cs*DHъW5z5×bzAQN!$ÉgZc>08rc7kE:ֲ҈H $k:|g#I* a`:{b}9eΘ~ Mґ3IA_<~|o+=0I!*0V[KJ R(p~li-_-TA2E׍12[ܾA+ax8u۠c(IvLe Y|MO `9wd$B (]!%(iOzN犺iH!#f%]ײپЙ#~;.X|,RCon  f ~{"=27#q=Y"0ZY_k!t=qGUqP,A!%48k,Cǚ88XǴrHfXw8h*` DRds3uF@}6(F j< h{HhxJGe~Kھ=BGa@ “H Ӆ1f "'2X/Ȣm{$A5$S#oV+0nNɯh]@E !:ELuBCDktmO5)L v(g/U ԔQF17 h~}k&QJL˒niz|8b₪9qmh)~04Q Z3{vH9;IJ/9|S)χ?}: o{(o(bM>+|?S%j {y(_<N<2}BbtֲfqK<: Ez224r7c}i,q~xK%5o{Ӈ{\Ds1 S]I\&T3˦4]=ZIB v=Y1:W7gBQmSL=04%L|6;o-8вߟO%]W>Оَcղߞi͂vC <,O(f 7;|3 .3o:On$> z z Dжڀ̨#<3H9oV Nb9eW4 dNGd -kE 5Ytx+MKe_Q wwKT4p}5Øp I4Rg;tZ2t=mtvED+Ϯg{aßAΦXsnawN|좤s1/azGzqJלy~zoiyZۣl@zšmH.'MS]@,5_ 28s Ś.67}G9Hp]=Ƞ$3MU^i|>h4JIꌎ6/,'%'zJ *_QEB_7]ǻ[ҡ;T\9: |Lu$Z"ҘGW+"mi 1,34a8]_;Tȓ_RUGdd񴠱=tFx8YxJ39 O_7w{x MCf|~z@kZ_ C4 X^F!^/x|ӞϬg35_{lUe<]}F% *@6$QiktɴQW[ztF) CURG5mߠXH:>GiGYlR2Bh<=&UZDZ#}'[8s=CH`}DD'12QښqmktܸDgw:ca1en\@%xk軖dI I)(Bt=Z iRLи`YIޝ'wDb4s:oJ;?&4~4 5!x ֘Z ,~!g!1Gm[X384| ^78"qi/g)>%1YtVk:eϨ|N{>kw3xȲ{./yswx:rswtBSDĉnZ׿Rf9Iy0.:A;U2$ &dK|&ɹ^n#6|kH9Ǔ:hr$雖cCeyc9s~gVW .<>lX$ TsEKE9%q"8WՒGE(v{DXK$X\Q<<YArL3Rfg}=}I¹4w$ R(<>e97s:Tl7Oy~a4.V'Scpޠ=St,9BDLfsÉ۷w(ܵ̊!{AE`{+qaxFJcCo Qa8IȤQ`tE;C>0X Jc ֎ W3~^!|6LWap?R[ƚ߇]׽V%I}zWQ( lT5OJLlde5,NX\pn[=RI y6 "$b (tg,TXoϹkgƸqLu8cG ⷡa ,ckŚuqn }`0dazOX=I#"#eS' (AUZ"CHm;Z?Mg:XcӌA *a48$cLt(/q*f< "0PdZ( D2+q Ju 08z0"GH Hg M3*kj<{ |!Գ78? =TMCeq?0-"/hE 8=Q~!cb`<~8%UjerdWl:ڇ#t K5U~y}%R_(F`6t<b.A0l~?}eG#b3# GAGd2tlBK^((&"\qK|525D=R4}{@tpbZ\&Cl9VGDxS҅d>_U@ptvI^$9y>..pMR8A[ΓsRȲB&7L =Uo8EBoL@Ew ߀#悫&�_~R!a;VW\b{9p*zaLx:ɯ&*?;[Yd1$CEsuk$N`5|<п^PQ_?r^#yqfc-4yptũut&2t`fTDlIKud6)p]lJINpns"[Sy{A_5qIɤ(y~%C%+ R3yCSLbl2 ^P&1M]'HMP%N&1:*׷^P*J52V|m IDAṬG nⓌ3#rys'rISRA?N߲ `9<2sjE7=Zx|١IV4+E'Rq$2(v}S0- 28|d_PxՊqFtFe1h5!HI1<= d8"ۿ?sΩ=E1ϻ;ǧLУ"E Eg)*$ԹzZOUy ZcmO%I8J8)BMqd8pT$ȡ!Y]p:5q}2% >r1A,LˮItr>?TqOD2""hGz!'q99zH6P5"LJ$_U4v`_&iD{,{Ǘ&^ͨI\rN>-"DO? To:|?0M#^ Z2FAz|$.JSG[D ?q}=-۞|ׯ,S`2T_H㜶4 evhQ:eV,]Wӻ|3qbƤx~!ertVOX3ȴyH믿|pyƩ:!d j{&'(S~3Rڂs}&(+ec|8`(2uO4e.t,Jv)5 /- Xk$B Ilc |p=Rꄋ$:ˈEI.wWHM0A,<E' J$Itp=L;W DQBo^87Jp{58 'jF@n0X'DYJh)M\HBJ9jƣӷWoI*7h5#o$]Rj[׺h}Z$=RvdYFR֐@g8A,vH Acfx5;뱽AgRN0Ό4#e<DJS ,`D@$B'\ Ld:h=^(7$Jeyj"X'*{3vlj!U j `h qn*^;>)%Y4 &ʧ JzdC7f?W4(!Ydr`}KglvIC5Q>(%GE7$rIᬧЀ-|>9 68! 7c:\y&IDۜiѠD";dȢ )ƭ\:&QԚ( À1tJ(DFIp8'8Gm[ztr)3HB28Ǿ9'5(?ϳi! IJY' fLۏipü"Q:5~|Zˮe{~DO7,C:4cyY ԃӑ`#$%3=NH_a }k蛈+ fSλ8^T[ x.-%}б Qܩx bUR\-XAk_Ye"COL҂wt#綣X]Qybw#O$d^rW4dHkOxiNfmPBsz^QN vLf9M{&MQ&heq=Sur9gQd(If;3bӹ&*LsJp!a2椱y8EP=A23Jg4\ 6u5GZB'G;W$I1 oOwǛYBZe X]o94th".9OvDӌiN,ۖ=e\ a[7 -I15[l%Z(p[f%l>ۿ}E X,b2"Hɿy=sEuŔ"PL3+_w]kL" b&  !`B+iz2؆:dʹzKe$qI+8~򈗂=xbix>j-YR Z{dgp]Ǥ(!dG. 5ԐKZO_ȊRA4u +n2|:a~z_Wl߱& h8gZ'ph9Vg( Yd9 @]HDIws]1̀<$8>oqq‡Eru"cODQ ./ȳO/8ɧGB[sPq𔙠<ȒOasxUIl"$/3d5s=w>-]b 4}fk d͂ՌH2ˆqi86oWbXL #t`^ܲ^pv`cmGd_jǖXY0V2g·-ESNS5yS\^H^^Mf)%yY0@m ye%84MGDG5bںC ׯ<=z!/O'bb@3gT͞D+Zng{:QYCܼa^-YN'62)L?i$"}]Rv/,/g }- r+o\sfwqsjށx805VpnJ SyAZ<4N}ϩxxW͵,0B豖X;襊RjNHZcҔDEy 4 =9%G(O5 l5 8KkyO1OقvXC Da`!8Y*Ii7T,1%:Nk#y3#Xk*R5.m׃qB6n~(9VC-Bp%8xL;QALYXP.I= ċP#!`%$Ao15J,ɘ <G> lac$ ~lCqjj MyKy_]_8Ue3#/kpΜ "b-|CA̗WiATR1]Nʌݩew8Gu<+7o *ye,)b|rI4mXL91_ӻ8))REyAUWFvQ/K+Ҥr9a}wMfSs%Ӓ4!dđnj/?ap`:S5WKY9|>PNKɂ]r0,gC, o4c? -O߾!3l5~|F9I͖i˻kBzKUyN`帔^]-N ҄8IXLgD;tY?~asgFKodu/t̹_cBuP;Z0Tr0rDRb@ AcV)!HP2F( r~(PA\Jhty_1Z w8~y 1]uQw5/8$`y膎##zoQJX&IOr4Cٔ$iHӂ5c"ym) vj?ӷs\^]!yǏQ |OЊ|Z۞Dp$#Pu dNc5diJ]#53G)I rBOJ0_+:Mɲ Y:~1bĈuh%JKzaҮUx ܞDt`e2ECJ7aqE#Yv8{Cf[c̤ GSShRVx0,"9j-hbh%O&;"nu󤄤oǛY2!#Kq \ Ir$CI1 Ssc7Iʱ+D,$X; OUw(Q5HAVc% 1MR) vYھ#p~5wza#ӍY-QL%*j$#(e0!b :Vi7xkgCr mHjRD! BG{ľp<,eq_9 el?sjIloO l"%.HRd 'sl>3qMR|S,W$"D>}>b߼i n5-lF* CG}A+:҄qbA #6UtRr[ㄌ/;n޾A)`w BQ93E"Urr $c)\\9+TgSTTRN/k*"K(&uWhc/N5mYMN{|hH3Lrxxz>W<ř3?|@9OX'D 8Ot¹ 9Ir:c?r)2hAK1랬Q{ǡ|ʛnz,9rж$ E=`gV,p$jT"lzZ;>=?tBYgo|J&d!!gnhX\\b^dԭ?lt?|#ARuuLJb}1d>0ta_r#w$)>)3]Sa}!5ٔ`M4#Np&`v<>_Jۧ`{I %xMgۣt-t$ k/?}yDLW'vu[Ǐ(#WS)vhٟ[-~I &7xi;v&3}G vхfw"1gjLETb' 퉃ǞdeS\&x# sݲO^.nִ}MuI-<ܝ$g읣k 8kq |C8p%]-";А3Yp1:t^X_NTmϮܒX: Ƴ+J9bX]/ǿ}:SJ$S͒lY%Qnjr'gDfVUVu B!#P?'Wa7^V|v"#2N9lKK%"8\:x/,T,8[îj8>g,7ߎfrB $U|Dp86?~3 2l' I9\^.Q5.@Vll 3$vqʵ̲tB=͹:(Kun*%sh놾Qc<{禪0x>+([viҜ+?mhZax1q[fh$ H;e1z b~|ڷ,k~#ǖBlcϰ0A&XeRkf5(+D}Պ MjIpSB^++;%LJ#ђTp dJʉcEZ2 di6ZtBk/~Ac yV\lr拌,MX͗ulNp>`7OOK..֌0Y\oPSBLֻ7WIϿp\KMNwG#̘=ա 3D8_~B 0 Y ,$_&K%*K0ұؤ\\ψrٔ\_.‘)I{nO\Fz٪yL[ܽ}pyuK7:5c[wר`j2zTrC,+84m×!Pd9%woVtCz$I`VC5(`9Q(pzjnWqG4,c&L" Yt1Zp7?- %*&02#0Xv}q$zku9{;gQR!pN\A)),ITD%"00;oH끛tb.sz R:o/27oN=s|n@UjR-v$3<7-]E3Nbz#FIe`rbC,MIrIR9rNYf\Ѧ .1H+-IwYAEψjr%7  ߼+%?ܽAO%LEaGG;DiƏ[tLH%cXK.7+JF ˒9sS qRbǞxĂoY^/X#]Kp#B{sqQ6xi bA) ,~{2,' vo߃JJ)jOߎCx>Ja Eo'qBM̠< vB`nS:HY䬖5aHuz!x8 HkG9Yjf\[Oe޼Eɘp޾{v~,$%¤6n0CGSyz2qEE>#"x!pei![\1_^?T4gt>?slzR{a#7odW_s!^c1m(,EJ3ءtji}q\^n\ S9 ^ƞ__8Ӛ(DNo//̊-O;nDEAmZaKGd*B I$yE`QJF,/54%1bF"" KR%qL& NS8IZŴd sM7ZڮG X:`yMH9aZ "K2lZp x%1t@D$%N"8%|:F7;ˢlV2K&YNc\Tu=\(O~$ՎB%sa C!=O!BO0g3h!^ #, "b!G"ױ\10 _Q*5YueT?bVi#SOt##?nɊFP7q^Id0ٯ$qE%a_ȗ힬LE6c*3_nq~S1{WTME1"2Ox{uAq쐌yEn;Ncsws|V'rzs=ۗ-."OSiF۶xH҄fdY %2c<\_]&qsyyO#:I_1HIul3+K|v="\4Nt̗3A(n$[>}||jv?UCEǟ^!H2x:ow״mKT'o?S7-?lh"QH|#cN1f;QHok |Q1 ~l{ (z!MiXI6<8U@0$ׁ֨S-̿,^04I&o0KP #gx'҃x_kHS[Wr䄜Nۨ 9&gŇi.dRHg >Q=C8;Lipض w7\n8k4u|dZ9I5q\МN5imOap\Q`}ݛ WKfeIZ.Xtm8y@鈋|'w'y^4mSy.18︼`Z$ eY9!,e^OW܁x !Gu 7ƐksPdE:c9_ ʬ 8[NCM)>|GƒLEX3Q"LlZ0@@ A{3Xfnp81 "^ޠN`iC{Q)5\-RDj@# =Q cL`SdZ"!N""Ktz %أ4lQ}O,bph;Qњ?:\Σ$4Ӷpt} ^ы!334<&px~0KTA+ŜTdž2IgMvo ܭ:#W3N(V9}h%語:feמE$?,ĉ鉯fi? $rnQL4<_ xgSlQJH3G|8I;P ]O$ Wjo&e6̠%Ւ󱥪Z6W s4 iP$Ey,^;vl⫘v<.8fvqL\rl~e'r[~{i,{sz * -?C,P'%y{&ց$8]-Yx'@V,*+?ӟ酣RAk.,ȡii Tf#^X"9+rc \]^yC!qǬ1-~ceUU۱&r$7#h]eG|]G{dUΙ__a#:SS,UGD#'4 !gH48p[9mpyºX$չf>[cZ[߹j$ YFHd4Ctѝ(f+8flΨ8t8@Mr8YȢ͂qD3B,>8"ʦ" λUVҜsX3tg:N-V(r1.#z((/輣#: wE}:`+O#5(; =r=LU¾_?Q8 LNX ZNHa_YGEk"% JH}˘&4]l\R75rз,IP ně)iQeK9+[$' b1@ݰ?m9[~=֒ -ZJFk Ҵ5:u"<R?8cy yng4B{{0vӣ"ic@}Vh??O`|a#:lW*1qfDž\@m m1irED4>P@$DR0gqXYR q!d(iHÊ@#5j`qyR^D20OtDځkiBf%NHd"#E' #{ۆ"z5%"I?HTlScV*TytmCwh)T #!L`8NP:&S$&+ jJV ㄙR '_hNoPyLDttC-:8a$3-;Kl{$LvO_YN(W<,w߽ޏ1RPsU 1Ipdžo;)| Juw ^JK4G1dE}OuН:(e}b}{jM:HH8]m={b9d)ż E;/}"8$ al?&YpHSv=ɢܜHb9#3r"Nj27~NSCҐXEto8vOx=Kj8=_H~֞ }D̲%/|vCVw/c)-5wBAp\lXj#gR94xњs?\ruyhkPfǚ02@Lx=҄rF Ï-,Mԟ3N,6@X31cScN'ӑSW)qpuyEE'S$ iPÀ"ĞNuqOU7drޒ ?k3X2YӞ ت'c)X={NmzIzQdvQ s0Pl躖n|VbsoAv8vvw'b?Pfp6fyyA ID:]\<\9tktܬm6 2V9=ĎZw(VTrT %E#]TϤ^ B5ӉKvK"dQ@gUAW`[eD1K)sFc=NuV̗\}sjҘ`3٬@DX,6ԃ=y ңg3|r>3~9~ҜW W+0G4\Rs ;o],ỷ|xq>S*W+8>Br6O(6K$F"y~Nkmon? AGcl;ƾ-7KfEA,!dK[r*催Xfs|F5Dm;$r6yNZ BxX#t]3%liv`>_*VXg J q O2aל$Q߱="Ѝyg,'=*b\E9OSoU1H Nq6HejQd3/Ӕw+>}y`/&,Y1gD8Fc"GygLw=u7 eL1yO9ؿ5O4IP$),cqd F3j(&S3^x{MGuB{)1ցBS9"!,J(6+,XvBP)4IO?ܒ@{MSM:Dc 9\ " cb<qJEH!02:C443 MqLãsv4Sq'iI} vx. {DS7gִcO76=9CDa<3H84SEYgDRKC2 tŊ`C׃RqD8 *i;N, w@H;2=!2;{bvD2a?pt.iJyh"z4:p!qL7Z,'S w,biBH28GDTftc'umYp8)H)%+BpܟϤq tm^jqZfq> be๩Rb'M$EHӂSwB8CU[PSYHBiMIT1 e4 WrAҌMbvՁ)#B%pvM6(ЍT$T/\m7%:4U98[KsRՐֈR\w5R;Bcp@#4ǎ?̯GtۏTm9ÎŪ3VEΟHhS{x&^_B/+CO6[ҷ=Qg8JƦenW_B>.64$|8^/lR.֋'E{I~c($f4˂#zufM:Zꂡ;!ӿ'~WnOT#Tpsy|=\,`3!P%laܓHz˩9rͷ?|C CwfJ v5y1"׸^ҧaDn}c5{['AxYF)i'5sw7<|HQN@$Z\ҵ,!$"}wՑyY_"tؿ7jzWWDI-^/Y3}˧3sdYIF#&JQJHo7?giZuC&qXܼ+=FEO#֒Av0ԣ#U'=f"UO#\"V<c>}q~xdu}it@!Jxä!ٚ\26Mvtι?!A>V+ͨ⁗!NrQQAIwt% #՚s߲4.[! -ņ$)b8qcFK< .22zjQA-݉ÑlQbVd3VO;xc0驥%mSqw9 bs͡8s&Eq8w G/g?~ <)z<N4]G4eawQ2?O_0jh0L634T{9#AQP55Հ/ W,gbs n"x87ǁ"M'wu& (=oQ̧繢%`ôl "zA}:b[||OdMҊ,)PR$bꪞ6eIiZad 5Usngwu֔enlGSq 9Qˇ/S=a!P7 Tcvm^!Rbjb[iH? E?syzaߞޏI9HA% ^ F$Q@ߦJ8kbzGXg($X3eZ,q p.&Ҁzx 5h!X#ZRflIYKfAZ"R @XG`)) ؐ9I7!OgtcIJqIJb<-5}Փ @0~D^"=(!SQsڟE, ( *x!X'Fz Uld"(MVLU[~J]!{ x'Z1:I SzJq~:r_yN,0ҏi` UQ&x|$5H% qSRfs6l.2~KQ)Dc2劧]EӌH5R{?CGmDcNu QQ\4N&PrA3Ν{yH.y9ן)9\io j5(mw|_X'_{{E8Ŭc5 UɋWnV3U_k _apy:7#˒ؑCHVgno8l/f >?`GGY74?iD͒@Wẘ)֖g/{.oӈW;OadQ <~rh-yN`dOeBeEqlW3 0R-K:;p=rs L+P^O0=wJ #AANldI)#qA U74+0cKءCG k&&^jtde#9^RJwr{n Ma̩>#D ij0QD̊x|~S#,Rb`ݙ7_jtlFOx90Nȳ,ijA=B#Щs_q}s]D0=ΎxÑEšݎ$NWj= b1{8aB@SWQwж-Z'H| R11ZKMZS,Lez$ =IL{w(4 )%eO` EʀtcFF@ `0PP!,,eU RFfS<9#:8;~ޢD@qta_7U5^I0"~zkF$1)n$*'#鄘bMC"&xN膩9Hs9HunڬHNf퉇^SwM1%£p:a%?_yR) 5M:{`ͩ9 5G d4ޭ;GO׺ihdB^czovvuܾYqwg΃E&#qd U_4^|D/slF{s0uYb5g۞hc-wlTe0Bu|aTp-ooVT< ^t*JHLe,H,\.W,ӑ¼3{}0 2c}qlĺ4yz -ܬ6Zb$pCx^l_*t4#Ra`#GCD@\ 4'XɋXZ-R3yiHŜ(Xܽ xt,f%8r+qDJ$GxﹻI󑛛%HA&|q? tRY~]3[$tx>C_=ZOLB}9!xۋ7K36Zh3>94¹=Dl;v//,36eNuMZcXo-3up7q%~lc5>y=syft""M7uiGi ޲o9 pf4"}KrqA,%[DǗ3NHVw|xO"rA'YBsΌAL:ttbqyN59RZS}OT>" ΋QugNfL"TS1Ϝ;r6_\pjO_H&S/bwPJN̴ضJr<t ۵ PqB4b`L;̈,)t@Fy=olǷ.aqV0Tƀe"+,!Bn9DI5O B0K2,#H* G&",GǚXi AH4|&h_KuSѶkINa)'xq@"R[uяn!X'u߳; ޑhnJ/CX~}(-c@ *Nh-GX1iYbƀ}? bN'1',2H`pX!D_vHӈ8  %֓mTT8A:IG1EKM4R?=xeZMw&. ~Mj?L"FM)` āq<-ZuOOH⌫4 wo?zwoPo|#Q>|q-y&Rj5xdQZ#dfHT5Lu$OvgOķw׼ 3<[ YzA"37w8qjr;O؞O\_V GJ[63^~~͊ñ!V9y8YgP`]}B4Hpwk{C YJ׾O,`ϼY`] Pw=.Xl?}aq=c 8Wnָ^a%%#j9z`{f]NRx)8I,@+IݷH[_OHy OV-aN -O2/|U È3ڏ J79趧n!^/dpywuI˜qĪZtx_ \!LX0-]dmK #bzc9ϴ<ữB$nNwr;#$Ơ| KHEY;,Q$9 0rsy R2iO8wKLgܕ48N؟*cUd$  \sw?ϿE ^Lk÷(cRcw<~S&K5|'$4BG=|*PUrsu˹>Ĝ#Ѣ$rRrt>8u?ҟkf%ꙉ/̯iǑL1q'l؀Ni/II76x8#绷7D^~O,fN񇆦˂a,&PҳX7N2Pijts&$IĬLIH 67w>~FqY w 3YJ ˿Ϭ44֚p)KN! iljGךQІUEYzP MsB`I$T3JCג lȢI0Kv/|ͨ3جh(yt}|g"U,߬"E?GQjWc {:G9F~ bI_|1e..t͎zğk>}>;"cez}6fsN-H? +&*AzFpE$ sı[t K(n%`8 QŌ@J/Lױ(f +{l;8h9.蚚KvOLiN}<0-We `Yف*TQĜiXYbg8U ˙&2FM%c02c68TLL@k&V3Z IBZr+*k$I33TL ^.ίb(CZ3? d5QO| bBw "$mے&f"̒D13RH8z+lIj  JR8A)ELs ' hM͙1G'bĒ(;HY$h)TFr( xq@JMTdHyA`Hp"8-l-*s z)g6XJȉyw kZIפ{y?&S+W+(H ow;D̮&'ŒdӢ9aP$Ig:g%H!pyuoxlMW(SQЊa(e¹(n !(c457W7 !"LiV 00},8ztD +8X2+ 0 O $֊޾t>s?:߾{n'K6C؟))mp\g7ӌŒÎ|Aݞ*v=I xPbVsLp$'I5o{#i=7׬W{MC̐L\-AJ"3ZmϘ0K"LgݠUෟ9pqq|༯RۯGI9/9^oxxzn^r!ɒDEyf4 `!DhmIgM%1Cb*Tr*圦U@8M҄tZ5Q"n@!YZ0-ZFu T'S]t,n^VD*8:@wӠƪb}uM70iY FC0̻oy˖mY,|rE$\7g2c!)3EeYpδ*p֑1y)6siJ.,ٞd_Am7՟\nHҘ٬F׿4qPW5y1c0#y#@]T3Ɋi J)4ן-$YI3H.h@ul?1MRmHz`eu5 DCh+Z N(g0 ff:xȋ){:bizd"#K AM)= nbsDy1pґ)!0Ig;Dih=` G1TZ*t2A)a!)d)Ѣ"PS5>7 `D \P$y$LKd- xk9gT304yG)Ů il Yv.xz?bw|<㽙N_!D  ୣ;d\`B^VS"`- )24TEzoSR^^2h8a=W=**JoYS 4G*fWK<i q˷_]<&Q""O'e?5'n[zv'"+(f$N)˜O™э͆4MM״D88ǜq:|d,xs{fy^~$}oۚ77eX|g۠"hHQʳݟnT9U%tA3Z.ԨA =={ .-9[Iyΐ ;DQk͛;Ct|Y`}hZrͱiN AZyK"bjC3pXLoZa`]$ID&bQ%1<Gd7)s|jGX~߉; #W\^i[ww'v#77b q2Sp|F^(d|VC <Кd=O } ^yKRg*!h\oV8"#`Gڦ! ǺG%,-c"Jћ-=JLlcR,$nhc7+VWl_RuM?pusrs=Ӵ RJҼ<=Mi3f)8A2=7WY‡0A@HI׍9U}"JgT "hǎ]S[;IAΨڊ,["t]M+U5  Ub9;.n tMqڬP![0CxO}ϨIRp}M̒Bjں!&ƙbtZ}zGPp+ī>8$ 1-Ka@Pz8GErk\T}RRHpŊvK mbR!圮)$>x8&8O-ah)0EJZhqArb_ǑBNbqxc7YcH!o)1dztiW b2Y$ej0⌥je)"1f&aJIOT&h?Hf3Y`sTp>E?IN$|8BxFk4CrnR *ү*ww_Uze]EJN-k3n*B;єPo&SS ? !J/jC+77?D}zA1c!8a^hD*f~n[R?~@^P/׿W4ՈX {B$3MVñb^.Î|Ps>/_%Wf4%]KNJݡ2%\麁XkΤ5mq"#EGlwv/d`hGD̘o w_>cmt`9x4;ԓ؃uɇ;+9 Q8tE M#k`z4 ɔ(c""Wg@z a+!1aS=׿rg[nJz3ux]T$hZrV't.mYF<3EQߟcU%~Ţ>׸יpb3mDioՒH[es୥mZ8|$M%*+#" }G$.Mi*&#Mj`\33:8g VO64Ai*tN8|ۏc Hށ72[`FH.r|Γ$ >az᭥" L4% ЍJ*LqwW7TϏdyNv<=Sl>!U3c8f%!DӿC*MAPkB9`|@0%wAI/Eo0 :ۯۿ̪Q: ˴K,G5q3JA30Pjť28=8a߾8Y *|{oe$e jMOo$ŒpB/_,/rO//4c?3]F1/)ʈoSj9X.3 Kg*1B{z|ϸ{]Ga)Xsh%*BuG|h*20ݑl`h:dבJ:$,sXk")iaXm68vib}ÈCJ:"R~o-Q9ɢ$R'w<>>Z'˫K"<.WF$[a5lA@Yx[6s6QJU^~1wUlr Na_(/M;C6 B<>spQIH,Y<'\3N|yVR\\ o(_̧gR 6QB,@H9e)8$ӉEQ&G(Mf<I> ŸE8 #GW$ymF 01KєEha5-<#ݠYwO~gbP';޾՟rz|`4c)ҌáVE*ް%bXP8)a(v|W,?ƌq} ؑ$+0czrbDQDh{2-~=NJ*!e[7DFp:|YN/H"K4GG1,򌮩Dz0zzxDHM5^;$E#uے%%C7KڦU< TUMQ˒߿, wjkJEv_S}Ac$vXG,ˌ}`, ZբdUٌ:q{s$c"WYZr?瘺W,TI9s8,UjBjVہusjjP4 ㈔!9_n1޿ñy|蹻; ڠՆ|}b >`ǁoIGAke#9[,ıĺn<2_͹X/7H$q2KgY G<#4R dF gMƱ3+^^_? P9gE9uLfn 3;,estzBi.ϟYOTHk,1iQ+($Pi$h=1 ٢CXcI"T&&J%z $O\'F }j)PMO 1i @Xӊ$!XFӠĔ|N, ζ(c#aBˈAxB2!'J_`M8)q(8sz|6S,].PF;N&t$xJ$3z/QiC%#i?G~VD0cG- "LN[љ3x?[FADQJD 2ҩ!& c.ҜL'Ƒ8n2`L_q#EIBh/ǞS5$-1%2P8a$T ` ؎ZdV8N7oo X=2XEYїtnvϛp1?#wd x?޷;^ ~or@و_ydZlq0ԭcy<ܳ Hf,q@^)} 47U)rcUÑFWO_༘s̙kK&ᣗϙ'Xr;.Wrl5e7 T#󈬈)WW/.RԽ/𢣘93wXS1#]myys\gh/pRQU#WW/8[ cczDW g\,O xsQ&;4͉jRKDgD"!IcN}áIͩfw~sZlĞfA+82vam )KtH:+(&4q>8C MN1ьmO\!i^ҏRl0D; 9 X$H~44cO秨X#Z;'KgQ4qYra"+PaLdy>AeC%yjC|F@PqN&G8'5:  )Z8t-:T8oѱ8X?{xlF=@;69Cr|S3kM}LSN^#Nh\Xq^a: 2BdqVҎjD18yъG $%{DHOux;~P1I GOCp9Z21o@pDJN1J&ޕ4)݊e4VZOYc*B"0Z2K8[Xij"NO$ibBu}s)u?N!Rղka0|}8N(誚{ŌTzo ORLG4ۊy򒮫ȋ$X/>!s-u*0/gj_Sd,qpq&+,wr;x_PEB3/3|oZD=8.״zL(b$~0A=E| ).&sX1ڑ?~~ M/( (%"-c*%-) OLJHb _ j?uF O)$&sMM4+2a y> a=JF|~{zO_Uӌc6xF@+nnD 4SM4Mɩ6خϸ8_2q;ڶ"Mӵ-~5;JrQa9_g%0 MGd|,Q494'M cIP3@MȢa[`8#`byǾ>Nqվ#{8'sm'`/B8aXej|{DFWɽ$6 .L?*DLN6AdkQBVF/tqʹ2KSอӴ-^~kX%)3@iGZ2='zZ(~KA1+Pz0x<F蝙!c~]~H%u48g?Rs-!@kv2'"a11RfRJI&Vxz۱K.? $|=6\?w=4Njvky!FP~U',fuf1[˯Jia{fe~?SbZKx!S4;ݖ4HJ6^Xrx|9u3OtpqJ{̱ݿ/s~T*~P+f W<i yzE4 CKu< l >h.5,&B(t &l=wg:PĒXK Kv9<"r5E۪Dł^ eZ }"fo"%%$> sqΗO3̹9zD+ESYBN=/VW8{'?؟:pRzeG!Iba %2C;Rx-9==J)9,ԖX)F'9n:+>xP>ZO9(l:#QGzrb\?y^p8U,8; )+8:8b%164UMs<ᤧm/k%ؠjC*;}HӔXE Jrs{ˈg8QhlHآuJfDIl"KR8_= ̲xnN1mO߼'bF;XNG 0VCs:Q.Kswweg0I'n:K  a a5x%Ax H<[zUp}p]$N\<+$xv#?W7 ۢ{n2Dqȧ30@ c$xPufL#n^)fcEN8np'K>7|#$% %g:|#%(K/_oMx=F:%Y]@WURaj%O"rjXQԐ$iki0 m/;_I:5FkeYS>p3;Me^):"Mb~k'0o~3F6g|jM!{蛆 eIXhNw7Xsw8 u"$"Ml7?Q YѱmZ<qZX1""A*f]Gm?wX`{b`4N ^7>X~[7U?)L$c cĚYq t)΁DR!Og8 n1C;tMG,q##:N m; 6:4!F%%c4&D!&IZjFhOEۆt9qx$(Kal;tA͌H $*XXDO>PxN ?~?螚DHKwmv\ _7O50 K rԱ_`'~a0@Hs`}߼f; IO"O ӉahtHsE_Ӿ"kwy֒j>u|{cŬ`e{%ٺdq")VSHAkƾ%J5e&YJp"7-?q5`ڤQ$*r.,39 qXЩ~L/$HL<[N-J&}39r_oxs)W)|<_?2|Bk9,sq $RiG80<O_;>{w8UQGd3vwZd*%r,Ot=qɜ, 5ZyuoW8 i4=8\3̉N:`1.g8XewD$\?g恡3,6\]]PZ _^RgҡdZ!g@.%!C--IyA+b%=Ti3EذZX%sy{/6,n;5Ikx۳XBXC:[P#5qRD58lY1פ3xl|I=v$YJ I^sq*咋t}6M+e[N 86SiFiIӵ?oYiǁьpXL3"䲟/@=E3FcZ*앤zBe9~?Sl93FbA9_3I/W%E1cؠzͱH$ab$q΃ E K#~(Q"lE>M9/,JF3b!IRI4ψT %D~pg//O! jrj)i$3b8(-Lx07 1È32 ?h;7yr'xkifbt-YF(""E%:/hڎlkl-XN,} 2+HE'VW+N՞$˸k,?3rjSv{`?ۛwy60Sׁ MGg P1(/<{r̾%bӈt*EqbXpY#IKx8'(!S\q<>4/_l>&)4Т"EH˜|F7XBhHar>{/xz3g߾okzơG"tL_l6k<'/"4zC^̰֣Ҕ QȲk(B5U 9iYO"/e fQO@L,i!T⩜*J%i6RjbHA+E" EKſ'4OA)hYiYa@jE7@^4}C74}é麑,s(S78+ AZNO>/XJX45[~rn`IĘK  xZe1?x|R qo膎Wh Mc c-ϯY:&4IgSYCOE#J*V7ncI118NSk+n- s4Ol>T}?ePzRGgĈ`!K!૚TL`=,-1czffD)˘{J#Л P0H :&Lxzǖ Ax"Jg,N"͉ 2?JcH!E@2[P{J Ap/2QAg%ޅvH#`FwSH!:aX3ՉEańA b1 8$483 j&(A()[5Vg֡BI 8š$nM3!d{@l0 7HҤDK#1O"dߍxbq~`1Ϲ{s,̊?j0o||u*j q$g)f[Bv$, 2H0f^jO跏3 |x 0d*aps|XmE>;ZfyAL"i̡q|%|͖#ls/zuawK"i=M]Z1zHg Q*xxwljI]j9cxU H[u !DD4+PZҝG_ӏW]058;Hc/JNn9X, nOԢzϯxxj/3v-Y rC &5sRUPl<}\m6ƠY.2-]s{z RpBȌ )6)0reo!/RYB"Xze:NG~YI!xbAw8QwyOZve.ɓ?sX/$tmn{՜&F^|K@rH54E3tQ2zH3g<1t|?_r?r}}sk'Xk!0K=Mq %I㇎('8cK'fQIp#qO;IZ\Li k<{9^.Hcolrs\EL4*KHpfEUMnRŚE<"jӌW iZ i\PF6%}=Ir|}b~#gWeLgZf隯@8#f]Ç{xu 0˦I<֬_<ص4qf$9]v`?drW_Ӝjx}N;Ֆx;i}nG}ŌmZ!<$g9+GBx;kM7$A8k) 2YP#Z IHjH( W g *D`8$IIntcQJHcL/: њH$rƾjɃ'Ex^F,"J> QJ` SnrHH(pA"QES vfQǶCY`,Jhi`t N7m`i00 !Rᤠ7SEɉ r󩧩`cQ)5zamVejj.D?zQy9GcPR#R#BIY:5γg;{Bpq=Co}ؑ'95u{x9?d0W=e%C?r}aQu?ӏ9NrQ1yIcņYқXjYǺld g7K0:R/=Jgt~$m; :=ٌv,;eb\?{1/_n;ٌDή/ٞ>5Gǖfًk# gkzڔa隩~$YlE3{l#i"w7oYTuwN:Mh{sDZ=!ք'7R!x?IJ<k\ۣSCE7Ra=:</SFXO$ZiNC0͓+2L;(˜TN98')) ,e;ψ&_\G>pb {fc-Ur3v#uu!@I8U֛%1DFIxӄ:F!m?o!RGs~~x(Kꪥ(!)Cuct9$bj{\?P۞?} (9TbNimqŚKNeJB7-,Zss/>chGg9۬Hhjdz0c\={ARxxЍ4Y ܷtՁj)w;<{Gw@q"=A 9O?SL5mݐjE|gja3H9$B`a]̨﷜8>P%]7mEc,FJ* ZbLT|coINc TM\sg,Ŏk2 pB9ǼLyrNuE-/ 2zk5/Yl8BD$N~űp(bEVLۡDLJRv mh{~$"Tq;'{8`$ɩée1[ ,bf5c6+ Μ8y챧[W$%Vg\V"L\*-$R?w)&GSILն!oW?Q < YǓbF'DO *C(膆9u$-E ~YL n,DbVܬ8+h} 8[Vp-q3(g B8G1}30}<,@$'GTo9w{./qcՂY,3泜O^s|xCx89 ̑R? }ov<\`#S %`e}&֊͊z2POE cb24'+ ~-Th4$J!1xVWLBܓX%@Mw/AI!Tbe$ ajajxEh1 hL"J$nq1ʩ]xf jx- fy˗ O3,]g~W֑zɃ1FDc{ÅXi8'hvD C^(^~|Eit@ F3tؓg}דeJhI5TmԒb^TDEr"8"s`@,aP) Lw|'d BL8YnROEzJv$l> SF$N8е-RAt[d (Ʈ$圀`HhJx8Л'`bK-1F! G =ncg%8];5R*`Npxx _|3_$.Hc^8 ;+v8w6pwc M;Cg(PE/h,aCȒ=ݒɗ?bƋ>Kza"OIҜbwCb|1jE=j^b͉(.p18SBHLcHs68g3GbAF m-q\GZT4$ "g QdTسxNVyٌǯՂvpK"ۢ2ç8TDbA /7K艵!FQz =$Z!s><"uLL/ػi& auRpW52ŒJ>UO~MNO$[s}1C*G4~tb?t8#ťZ7$ѹ'4vƺ5SC'$Ck Q!%\Ih Fl ilr]} AfD# xܶ-2Vmqo6 |o8<|ŋۨņHHqجxws 9]k̑qi3e%q85GQ/1a&$ns5nbMB/ Z"B2nja:B''\ nS<['܄VyA}ܳlxhTH21&{7v= {F;pyyFWov|ZRk="TUز〻ݖ,Nɳӡ,24$:;NnZ-2e*hǚ?ky)aF6gרo6 |bN.y=MPd9J)iK(O޿  2ђfLOـӺ(bB15-e`#yo;"l2N bNcx H@'ƠLOkS⣈<;t3 HՔO A"+,)ni[U|]UH,N(e#g:C DGHdiDgGTVN ,p@ 2(ӜqPZR ōZV'pELiȰ(4C?Џ[\#~0|]M3JFӂ1x_^3c8[)8U{>鎋gsPHn*摋5NnC`}iy-c $-X9Q1dp e9~):oXHyTБ94 ՈfS-Y8L[|"EfقE4+qz=͎|~c_Ϳ˳k8u1gKUCZHV9oaaC2S̲>:7\џ+f`l2^쐳ϟ3zaגy|f$#6$$bkw -2!Sh~~b pŌ="MIE|?8tOZ-|B/C&5q eqO>ѷ1px0< 1l%Ya5y:^~GkOeEF ŋg`4!ٞ!rзi+Bz{dv ߬"A;)R.2oIeH"p/rdIgK8#R0#/^_^(bL <5rJCڰ5$Bqsr\ wzr[pyXX` -xv8Z||àG$YFXrucwd:Zƒm%nO06DYF%ۓa=r 3嚥BX"퉒퇊n둪4H jk <;=W V/9*_6,A'P:a}cx魣Vxd*%աf8T4݀5lg8G9[ e{V5X%*R|x=ϟ}=anVRiy54Xe6SD"qH"% y^g9M2֚c[Vm+I$NSm:(EkGqS[#3T"av ;\!݈SNe&ݽ;e΀skplKsWHg~f;ryC9XǰSuDZvюJ%1Y2+3n>$xAZ86w, &ՈfhɓTc5)IYN|Ķt$# ӑNUŇun9Ws \?{AtDj'4?|@F7GX397cM?aR'9Gf/Ɋ?S$Igkb24xbM.vC`^"ɂ:5nUs\$322=TNF$oZP(0$ 7*B4hMA u5h-0Pɲ1Z \x~ypo> 0RIQU-Mۣ%+s(MH1sRMHǎaJ|ZvYb D߿Iyw~^$H+]M#JغyG3 2Z[trn?q}fzH?;`YŒoH !~BE}ZmxLrRi o={Aņ9;?X@Q.vL,aZڎ^X1Î[uqs'Iy#NEsrx˒,ys5~Tg4uM4cv\PI2ŒnIǖ4.Xn(Պ(Ѵ>,cӡdtk7+sӇ{V7ԣ Yi8Z_uD QP|e!u8cQzjv,sIz}ED^:pVhE<ǿǩ&x*: =wʒ=wRBn6K80k)hhO?}`9ظb O`=DҦLaX/HY.tRDIARkMr͛;(!&VJ#Zql"0$9|5É ){olsk$̂P8E{l?)woݛ%߽7[T"8yR&28__AλqXnoe77-RR򇿻.C ^ãr@(AfjC\d)[ qbD]ӗ{h)x4GG1bjgl/ WB+Eま<4EѤy3g#Ks~:Id(3o % 9?p>D&"Jl6Ezi v5&䋂f zOadZ.KVEG:cibcABbwSdBmN#?}F#}~sAS{1 ~"/]4:7 `Q`#1E 5GRNq^vy8x_?cDD~{WraX.cL'Dic\UGdoff T3X#DO\He|"UevE׏?NFƁHigA^iQ(}'ky;vd9+I^:@0n=Ġ X ʭV@iń@+׍(!)Ҕ$Y Ɖk_ wG? d{-$yj'dKS݉4QH,eQdey"xm@߷KMPJ-kɒ$W_w+6COВ5]R &BΉ(&+ 6D3kqx-_n.5^oggdPJʸr{me4@!O1p>KB*sCl pTgI0Sό#%i܀ \ R 33YB:Fki=0b} 8ɶ\Ϝ(FYQa&!fh t3|qQZ<! J8TF=IRƎo4 Z+")0q֢$ XrZ ?tr&&rV6Z*%k:k{0<;G;) $\^i"e<\nYfG5F#gT(/UsCk2cp>Dl Ԏ-}E/(i'.7a5qdžDCԵQ'홋d"AK&Ȼ)L,߾ ݁Q}~GT"Ҙc["h[g],BgvYwg;6t~ Lb,WJĜ:tz)9|p.0ٕjzf IxR5uCGHLRڮǟ~yMa9U#,x vg{ښÞypT':zC[nvIIV Fs$r63u}/?5Od4W]K8v-Oxzz\alt24Qf3YO$_x%^FTaf$S ~lRSQ~ 9woޑ霺qtK޾[6ǭȲ-d#?7woHA8w 64P:B =6l)%hv=u#쫑/G~&CZf$EnOj E J2P2"gF 0CtUY29Vy0#x7בJtL7 $QDFP5g sKqw|tV u<;@F7<"̪RI Ls+ G$(B̯}a97C)atzD 1g{ Z*HT!q4[s8 }ùxϨ(aZI?|7K v`,?(+ڦxE ˼DtYMR<1#׷+|8g'݁ 0#h-VtC̡xٝh3Cpĺ7\\}Oά1*5oq@J")'%}{(|s77 '|H,r?T`Y$,SŻ5k,bȐ*E)f|jh /;1G?}x5*v_rEL8ȨCfIZ#BD[?>(J1#^*Db6ޒ]-Ւ,7lʜ|zaUcJ# ;,bKE(Xl6-t: AT =}ˁo߿!$JB%k˘7 ˜%b;W I"Os #q~ڦ )b@1m? aw:Gs؟ħtьg}[޼0⧎mk4gՒ~Hgq"5߼G\_(v;4X7(Eg4Lq>DŤ5;_r4O/5ѤpJDIbI \=t"]dF't:bJm$}ۚܞ)6tÙe&HQ<>ҷܱ% AOmcp#INeglqPӞW1E$Q$Pᩦ*ck 4X@s>џܽESȌCӡqWsvL9;K\dLtQnK7`iOKS>^jG)aEn"11q+ra'_hZ`W醉xb2б$+bV _?#p,4vB ZP``zƶ靥{j;r`qJrljG; !gh&DIJVNy=r' Nxa罵6B3 Pʋ(6l @DRƙ]*E)Z*n?bd kBHi$bDOYPp͉Nm=mgY$+pY蚎&Jhq,!$}?,8 :6GR˔ÎGn/)ņ`onT=-!y_,SnXoWĉmjgZ\^b(& ruAL!P. ferw/EĻo(eE)gZPL?ֱZ%N4Mƛ/xs"Ѓ˔?-cC`駉>0xH3Gk"!?.68/qJݝ1*b]'FsZs#MQIBqJ6YksyO=cbX.sB _]qucPZ˜đ ogX/F|fRs;qsɝNȠ!2`q.2oӞ+YĢysg" ^^*& .(< i"P~ȳ=}oNt:m[Xct@I4zhcUdI=Wȳ?R_7ql^ -Ek[.d#wwWۋ $ikByF4IE"/QR3#YVRiuJ Յj^_ nd0Xj' :_P M8HmI M2:fc{r&'fGP VKRDI1'N nΝF EеdAb$v~)=401 Y6t+7`,IdLM3K c&ҍ#FF|'`HWK s/L$#4T=$ZN$zR蹮؋y ΣB)ЀFkXIIhgF3Nyc`7YŚDv:0BPޓ91ڳ)SGɡNiUa>p83EL` Rj&{XwחiiP:'Nfw|Ӟx[%lW1Azp:OkgM} h/"UXnڎ{ ؅$k1y^1L?d%/tgOgm`-FԧXđ%,(7p C19Gݴ\2cе.g-eY~HT3 XE\> DJP?w Uf}{Espvt"8rEvq),/S!x6MAPꎱq:aNdpu Ej~7vj( H0lӘw" a,өN |CRpbs ȉnRE NC&D}7CGO=;yQׁ?6ޔ\#.ryO\YЎ-v%ZivuΎ*!%82[\? Nj,LLfA D yUXDyS 09,dt60Alb8'd'S(#XI?R4J9fcQ&fV5LX9Ra"<9"N؟^=ƀǙ&`'aU H"Ĥ4̀ sԶ҆=u7`%X%*U\|~;+HHjaS~χUb$YFdW\rd9FK%@ I< `ܤ`FH0segR&8  uR(=Թb|z|ٟ( |Ϗ43Y*/ɳISVΑ9]͂,7YzLJgtC 54OgRm躁/s$diI-麉qPG)yZ`{F(\w|roz{J?ME̹Ǚ{Vu=]s{wK3L8R՛-}b"?kơ-hQZ?X,%ލT;,K3283//4uO(jΧ#]{ $Ƿw4MǢ/(9,K8NJwoo3mݰ]fhiX|::9id穛 ]o)WԇϜ|~Ww^ U&rE;"1~TZHWk˧gLZiўcv.p,Θ"&)Ejp&ph=a[~Bd ?=;(-}EeN/?Gv59׬Dj4~".K|LbQ4/ [$թ# tO n6Kp>36- Fyx>?=)rDݬN;&#掏'aѡA I7 ֥"- <[qIKG"i5j'.bA#we.ҜhǎM>|#2\]m4Y'+FrZDi$֒-`ɵ$v %ޔxPd9}_陮||\Kjfjx|x₯^П>}Q$f@Xǀ,2 {bwԧF) m'8/?rQ[*ۀb$H"Gno NbVǧg*eQOtUM{:b];ƶ&c,z4e}u ^JҢd<#+J #c8)i=u`!ze~Oշ4BeXt6X*VH # K~ c>j>U$unљ ^%qi(xvS=٪`Rv{vGq R@ryE[yo_+hfɲgΈT{\Qȓ-%og?0 UO0v-ύ}vr(/ Rs8hvtx4V̓t`ۿ"qĻkMrR,57hLXo!萒1EW a.Z? r <"0Pw]s$M_UWW3茔uEZ{if>\1m.kK{4s4 S#{87O/!9gzn0Znp'g9v3y3Sci}eH@̎@!5:ڊ!dE1W\idIDATid]sN5USӴ-hD $e#Rz!iN<>Upx9[ޭVD!pzޱLПuEbFH2AGDff.0 n3&gZ"8z3Z540Y΃Z egQ:0u#;|ӯa躞R=:%o(1z0Heġq~t=j>cx='x?u~0fBo!xO/pe@G~&K$|̙:ҍ&p:QZr>4XJw|F@\.ZÁ(Y-yFuIB'hZ,-v.)y-y{r$E`Ij'*B&Y1֞'z{4+#ddI&X$qJ$4"d<ɉG*Yj7ak'"`C@9Qyp5!s#77 OT!u[ǹ~rx]`FDT<0@9Og~JJ&??bQim Ju&O8$0Ghi"6 >2Eog8\W+bޘ(ډ<8 Lϐ|ʯ E B]z2(q2#Z*8hh^`|q@i691oЅ[a`B~㺈Cv 'O0nT,vxmjGR5q$ƨ5E O?Q?ݓ-^:_o?Oȕ'].蚖0堟+Gv/5Ud10MM;욁t$Q1wgqf{M3YbU|D%fq&K"AJG_?r}sMmgVˈnǚwyzc|"Nhg^| bh?ß?r-}V˲}zچmpҠ"eTWX-ӑ$H85W \% B 1)ZAzھ'N[*--<%O*H%?|!gAo.oh|B'9!NȲ[L14!ru=rM ә/c{ =il& *@O/O,^MPu Uc{76464q {\_bɱ?̒,ت!NvdY͛+CM;.9)/*fxb"ew\73t0DHGr!۔61< \$ږ) K"$I8N ?)W%M$oxz3*v##vǎ=oޡzigz,J\ӳH5yiTBa^^_HK~3! KY9'&mz"ǟɊ t/@h"/nTqUCQFafGk+`(zmJ0G`S gboj\Sψ!;)(A0cbRľ^KJͨ3"(|R)xu`e *2||x`\P%낪o̓glO1v&2$(R͊wER5iH0-M4O'4cNГ 3`^czj#WhRZGx8u-q2sseInjÈ"Lu1f_i=B_KQA)}|Ldb/˪-j/$-:Nh&YTg9yFz~ᩯAW1MlO$T0 X* ~De:sFiƑXJP30EbfK\k|n&&JJF9ß*#].XkDr4B,K Oc1&2i_:v//ܾ+ cFX]dXl7+sfdZP +2GFo9 @ k(}O[T\]2=>>LXH5<|#syA#["/۟ [, Z#>/_@HJ"?2eI?N8;g¤x)O/D%r5p}wZƺ'K"m96?v9vO? %*lWc=HW|z>"ذI% n )FG\p:TxXm#q ɑiBr>,J皾Ȳ3"aV 8;O"O!y:q<8 (&OP cfn_r~bL#E=n5UvKg`X ݹFE"J9<~B1dzBXmG(SG${:ٮ42=80\.6{폨8}uM: G覉U=}5;l1޶LVeQ,FDwfā##X |Ē]nÄq-nHbCvFe_XyӁ՛[|д_M`,ɘc5s"qxq8αkNRNNđ&CC5j$z84ct`E%_l/XPq-z.K =U\!<'֋QeH#+KV3dIL^#x-EI;9NuCgi8+RY{+$"- N8rI%4H./.f(uh!:B h(Ҕiiێ8Nh8IQ̍Aრ\ mO?X;( <8+H\(!o?Ւ?}EGдB1Ly?c'K20* i=C2)P*bK?xۯg7O7(bO?v<=BJ;U|~~u-͚\ӎ#oǧ'"8"\`RSU $"QJbℶnx{S])]9:?Bj|_N.7H!i7:4a`~kq3 C{G3b&1(}|b͇p>`CzoVG*1 ]s>ѱojSx7oӂv\]^+ xzp)x||f9Fz>wz ? brH~LlV bpb{y<14G..o?X% M6(5"uQҊxTW4x@yP*G(E&PinE &(t#, , ,㘻+n b5m5~iΠ4 *Iiˈ`" ?|UP :Ӏ׊7vьiB? /ָIY u8*B菖Џ8%UeƖlbs۷-?F+MsgZ+O{xjȘx/(/OA  .XLH;w2#5ssf:3-Qf\;e|"-I*0Z3u[M ^M\lS)҈?|(5I"\ݗ/:I,k23 NqyssEVm EL2lfmXXHkN SBnYn;!L䮦QݰZ)O{4%Ȳ;Yn(cy*,.x>T|ᅢ(5]15L UYl8}T \.pc rcޛzdEA9w-cpCOVxhbbX0iS9A4]`t@^ۇӁ~~Kۋ!Ri"cx~y4/kx>VXPqJ%4iR%!RĹ:!E ^0v{4K!NbƠgr=uY|hq"Yi}m2jI)x>, }ꂟ'S$eb*G:; ML|mq~ R33(7J: U1F$ Rm9geI@;;7u mdq6)/-F17'ނDbfNUiX,l7h@"FJR 1iZ\duSQPjH]32$sDJqEXDL7 LS mfL3!X$VF[&kLc)/2dd.֙!H5i$Pb#ʎ{ӊҸ{p4bN@d`)ID%MW;>3=-xbďe/J D4@spk=BhyO?J4 1Jg+aʅa*gq>s]=^h֗w.K,[#]GDfi^`woU"J呦D 0̶}s陇NM(-w r:\ R|q1^_5sj^ˎOȴb}sM?DgE5D+L{wvN*XDS֊-ՂD .i`$iGZlUxqf5W7/R$@s ̓ g\N4nPQgyP5xT Q)|` 4[h%_jc*RT:E2c~L3ԫ5IVoh f~IͪWo/7k/f;$!EUgrf(]$EL<;HՃ n[բ͊wvrcsR7ЛvBiz₫K֫BD'X,gsX%&lRޓgyrn9E<'I3^XhXneJD0 G#mVȬtQdn1͙؞ȗJ{gL)d]v*%a9BTZٺ" 0C&DX>RL*kDiMR~@Y*R«"Z$^gjEVlH+('+ԉ9 ܈#e@)*פ¡+,(BC&!30A)2$Bq8!cxfS툞@'`z&ghkҋ h!^[.p b/״#!Z7H%f S?da&zÌ9Bs2^T|9yS<rŲ8>atBp6X9yS?zKsㄮorXmxx b;xx`表.ڎvLtXbDN^hg߱(14:@ M$iVC")eJCvSpY11*IY' IZ4FvpG^@(=j+t= i>=icB{/Ǒ\RJXW~}Șd=/G?b{(jdoo@7TO;qG]g\`9x]ła$su-~l9a<_,"i #R| R!IEdZyÛTkT ε¢fIV.nQRw-^Aj *iA :$5^ҍ#caԚ,ϐb ./2L8t:5t۷/I>ҢoHU^-,IJ&/iM?zLgRŚ 3y7|Hoc&[^0?=F΂QEEs|Y4=H$Ǐ>?}aS'(jį(.czY` k< |5? c&oY)7W EYupEyt F!CMBV/)V54RВ}ْ ӈ}|&$xv#/S3 poxx:99N/gAfuJ)7YHqcf3'221)lגlRkPR)Eλk{y6nyGFn7KDHe9FG<|9ܷIKFi'N4eڵ~˻~ e */Xr.ABFW׷YF?N ]185m>(SmN"mHTN\gH30b^,]weLP,_,G4Ǎ5ι)Ra((%]3R:ͰP-JD:$Bb'~Gӝq~bS<(iT=iBDESB fԑ?;}Ӳ}GڲX.(]`g"Z6 éS˗]e]2Gi‹xe(xz31)HdQdY~~).J(ҔJUɂE8ugy9NҹHHc ];@"vB+@^ꔘDQT)*iNR.fF˻+b J Ҍ.ɋȻwk$^/QILKaPB5W ys1xD))DgDEy@K1#`FlL#-!zK"檢3"%5ΰv)M8f4""/<-"(1!e CO*A4#Y΃DM?|GtgOLptT%I0r_]papWuii$Sy0NIff Y^1N9!Hlj#Y%nE!G6W˚9s}}I5<=٬qf(>0YG(n6K^v;Œs{,<H`2˫ RܰY<<+Lۆf&4@u$LCO=FNPBرt:wo7u`Y/0ͷ~㑷X:cQ u 'aH`\??`lzWo/hϼܠKZh~}M ??ʚղot]` O^x<|~z ZwEU$CKņ$xo( A*b!.ȵ"эx36 seQJ3 =x*PI*rT"MgF,OsX,%+WxIt~UJ9uccId~ǖqnR6KW޽a\txa KÄ?ruAVМv 35YRH7R]Dk=GʼFE2+tdS)2&tCC34(%軑j0;rysL20,O(s2ew8ў\ ;?'EZ)C"#Yj&ɀV8sWk8 %T%QH"YE~!Mh&9zscYN&SՈYF46RV[T3EdQX ލ$XN) Z(.@k~Y2QᄠO%$hJ!T\ 2 ؖL*&6JDdN)d[Dʚ31 2mCtg-F0oRѪRg!&$͋WM0dPB{l  TKR!:\ 5"mHH&|y8歑iFk78"" y$b}=L(-91Z27&ɨDJd=H}]jO 1 'gsZO[62#Rk,af[ϚC|o?:m]҉_J&9NR]ܲ\`& |޿ЎqL$(ȟ~ByG7?_M@\f_](^-Qy8XbvKfւufO|1#;ǟ9#>߲ ~+t.s Byo=R'Gd0O;./.7'^YTe%X- 3͚ùmFTc?^~tn HwS]J@'K"20y{J/}& GuB{|deҒu)efIӵTsx8vqbLѥbYH%r8c`q3OX2  eA z,Vrs<7ҘB Ti悠ܕ+%,W2c{_-Ն933VKmE_Tfwnѫ}g;*K8NdBłItY3Ms߰X$yFx?~0DznO,j"Ȥ@ I<:g=RH~ssK/V,Ti"Mat=!bDs?~R{0\_ R<}%ՒGtYǗ`(y+ VR6-(tHINdeITN4fqADA | hcFB1c!If[TW @2ʼDi! |eEu40j0a$Q|Li2d8 1Uɩ8;E+502#R#$lfΌЬVkPjjb936 p)3L8q>7^B) M҆5yuXD_I42Ne<I%Ŝz}J3>|d2j6Nۻo;?1t=z/LP.\߾v]Dz7ww ϟ" <@׷$Sd%o%dŜ 6^W,WY5~ y(K5(EK8RID`MNtz?|'Q)e&z=/τQR#_7pB(x K@d>,#6q[g^8V&sgֿ<`^)jG |elqY Jɳ9)ItBd)ltHc9S5m]QVSW"NI%*%u/KO=ZM*"u`?bxe ?B"4ݩeΤ˒HI2f"Ox{̱˞kxoX]f83a[J%ۛ|q{<3DW%D9vD.pFX2gUWx6O$AoY.s q9 V,Þ*5z3rn{^~,8.3¤'< H-z~.,x5~U̩l3k3r>d'X 8OXufr 3m㹺ޢ3|7o?Ҵ#Era:0a" ddIq4Jf(lpH`;bG*jq'SHW Χ|@ueruD#cr*|>HT4u3Hc5횗W>%׺B%9dlϲ^̫aV}3ǘd fdade-LXQe d (d"qQ"C¹9n{0ju嬳QgM(-G hՊ}?azWoo9_ǟ{s5AibMpDDg17~˗[*/r+`61σYj#fpkX(MjsW^bVK_upGdN)4arFPwZ|AK *c礫x΃blzK~x49Gffs=oܱRAu=!FVy(#:EI]W퉺*8 16$9jC$iVD4Ah/m,MQpqU;=?g.OhrttmKYVtmrDʔaN4ɲn"iQR.?!.6DӍ=F":MX&)4ͬ1dceYr/,cZH]ͤxvG34l{g:%83ui7YD $c2R#&D"D2z ΂RSi }`:rRJ(42L*&fO0%: f"KhnI*hE$ JD l<.0L9k=|R #f " ; UMZ#JOwT%ū0BDKhg 4vy*l PК4QW`% yR+@8q<-08 kOXgDx^PA3O`k*EƂTص|?rUT\qrȮrWBf'\1Nq?ԛ=hۜ &6CK).ͱB 1zn1d_Y]^jkrqV$U}= ,AL!*k~߰̾/d _dێO˒oxܿɓEO!^yA(P(%Y6x@?(?=C?o\;Dc R)a,ɒ( $|%v)Nn@H(FBP5]qXgt#B Q~Ɋe3tmb2R3ľ\slF5v{T&ִq4oCӑڝ%?|~D'%8v{ y1gjw3pxyf\ra!,5:Hg.nsww!5c2%٬l.Fcx?p,.˄< ,Y74m×_^Qh';!uB<_B1x%ӊo?xr}ɩQ~'"n陫%i0M ))-5m3DgA$E6ג; f8Ma #YY3*GʈwD@:E+u0RԮҳaUR3kJVG xLu_b6J qk5U 4q@wh9շv 9$Zq<}sC6JRnԤW OYHAӝN{2'*A a1̹6fdY1$M0Ԓo傪LD~[ | Cfȉ=N1eK4͞)3<'I5O/]OSdc2aIt8Bc&t2U^/m L/_ȲVѩ"LbiFH\^; YH3DU"+f2>Q)E]1N=REbp2GIHt"XB$!0?BƀzME%4wn!pQ0&8 "QD4_նJ+fP]IcuT$!L&bZ\1Y0 ' HMu Zg:\5dIBU[!JhJɲ"~Q ^ d$$ix3!BkdR /4 x:!UZ'yI(D8-Jȳxs|{AǺeSeU.Bp؏$Y~-H$zBAJwTy7`T9M{(2NMC\\q{z;Qm$y:8{~y`OdȪ!%^#K$D3;[DSPx~0L8>}xB*IXmJs#9~qɟ>=kF%ÙXz0ќ-c07$2Q04gݠʚhJQ{}.y˧'ZP#ՖyHZT;4 v$֒f%F j;0yYi~IiJ y- *=zJN'Rk]㌁)a-lB=t谪%*ɑl^XT͒/%HGV(jx8$:%DfS5+M"ѸZa@&lDYEdTEruAy84qnGrB%X,(g+zxEA׷s}^\x~x[&(Z{:φ\{q7mjg,<+8g"%(|h"<a"8cJ~(MBOwo׼֤"_nI^曲j`Q4iB?x"&z'++T11(srH@#qs? TFQ-Rp\ɟ,)H$ꔼ1%Kr$&pG Ix5 iN"gV 8gѶ 5dY:HRBhJ4Z(EȦU23uR's*>OGˁmvB&)}H&/}3!QJ^EBŒ(gSs3{GbpqN>9 b%):Iy~QTyYᑌޢs H7qd/ |0 .8w3Un$Z`鿠7r3Zk_J9p/J/),Nx"`4c:BDY"~iMi:/BDPBkѻN(DF O/O|z76hL8[dМsS*Lsk nOo")늳qYzF#CBqzӞqd]/Ȓ?j7%e2QiF:"=rbJssP]^JϢx+z+7 qnS35mc 4GŊqHpڱCzž=e\ۿ #~kYI'pxncvBKA87{qD@p\HP*z4'.V'puZ1%4}O#f);3C #1Xr2w$RbP Bץ6.Tub}MR! NUߡfFp:Ӝμa{! U9v{`{}C3hAf#k#H*wgQQE9'2|^nh4H65رeU tZsKIǖD֜^D|d`]wWh~Go<oWXq<0xw<7qs zO1ey< @]d|y~9u#!~ygPK =o\sntQQ+w &pQ1<==d4a8wU]SW+`0$Q*dUIw:"y5E`M~\%i:bzl;BLnb\|+-t n^IP( I33"'EyK;΋ L#rloxj\gfCBے[\ߓ@^Ϝۋ 4 ]7P/'j(Iɩi;J1Ne=:|f\{?Q-?g.yʪ;9OIO<{zv,M v{oiqk)YC!G)$77t]Kg Jz,%%b ȥoOs (I4anQuJ2Ȫħ)֤HD7o <E$ C!҉ܐy2=~ x)9g*-pf 7 B4M&K4E 5aIM׏l..)i途~f8|IbS4ºo9N.X҂fKdiJhڮ!˗Lc糙4L7˒*et2 -:Hw64g j5ğ~f%u | h!ia0x dqF;DkgeP(Y2D4ћHp,Q>п~f !鄋zE(es" L%E  "dn<9"41Ly2PR)kqH BJr*B?p1ά("!Q0zGT~LJH򜗮$i'˗〟"i0h"L#)󒺨qƈT59d$RӝW+`3v`x5J+'LAP,ے ܮriB<?[a)*]}j(sQ sn;;T)E=qxyk!2iڬ<+9b fp _i4pش۞ Dڮcw7ִǖqh'n6{Guر%Պ/}|~|iy€~bQ.O ?|=]XH<\/z ũ\R9MGhbU2 JEg&gGGRH⌡ٽ<19g! УR4Z*%TI^%R҉Ldiq2jyѐ8ma|G D?sH5Q:cU DD@o^KRBBkLjF3P(W}&ahŜz>00wp% 2jڮE@P(lz3Rܙ7f8Y di=!3p%ѸWh$Rqn IŌmBOo'r1f3v'Œfơ'2'd<f8\W<]h4U$zSP>'嚋 )ՊERpN\\ў:&7Uꂝi[n9=ed8[ әJnDG<~>>L(3QOR%(kI`~0+Z;psU7_g&W yGqÎUF-~tcK_}\Ы#ooHFFK?ӝ,w5?-R*RF2_2wW^N, :+?#S]]u{5'"4M1#v3W-cݎɲ$eQ9Rc E@^tbْ1D֋%}`Et V /O,TDp:$EAZU gUǦp3B(%8ⴤ1" =(G9 VI)S^> y^?f@rjGlv,r 9\P[ް;,/Do%IkHED-lo.]eEFˑ9vWnPerÇjvA4i  :abN]t|P{I['<m2;dVi:m^Ї.ym9>>eikiidG$ on.¯ lyNR/) '71;)%LNQñfSQlu#TբDĀ27|~7_sNf;Yo2b $J Aӈ"ܑn1!\`:ȨP##I5$4|zأ|Mp@q$LӷDHBZ$/=iVNRH~i%R1ޢfQלN'x13JuIAE^bi8__]d2J &jJ īMڌ*W$Lve.{Q9c5AY„G I*z?!8uҚ//{PF)k ]?<1:ɣurxNfU|BRnOgVeƏ>S/+̇x 9OԽ"JQ%mbjن\4 Bg4(De3-/\_]s{ `?r=w",X?>qso =Je$Q=EfdE03׷IT@ OBUTd*2[0([1 cx<$"$5D*s)H5n6mOL,g i,˒(ꊀ:s/Z c/M!Z*$#>2TIR.V0 %jBfH1q50]R%I"'Ɲ֓E+k $+hچ,I""afxs>׷hW+4'Qpwss9͉Hӂ,q1О[6K,DRAYxajQ+#S˫wo0CW NVQG<'ih5_ѩD)H رZǞqv,g+dΠf`D2 6DryH404,LB)Fhws]ϐ2~{z||#aO.tqGl`Yռ !8͹]4ԳonyԞڑ/\m4?C~{ƉMM;m{ŇJ+ 9hO G9|PT, 4cJqhX.f,Kqd p4N A4Mxxxf31 6 3d͆$bL ;DLy:4#`hL@% _.{~xO+&Iy:˗-FUjs.{>pusK]X{/-*I0Ҵ I5b)m;͙a] |t@'wMAHl?p89N%\#Cs>JjMV,#2ѝF|`.Jn` _3uO't|1;-:3#y3u|'O ʜw/(. g#1$r_x~'T&$d%!D|cp\դ$p?N;Gd!{~?|tPNmoY$IiiȿWs,G蔣5c ڇiY$L݀>ψ$YY^-JGj4YJ\phQН{α)bnK $ 3;bw 鉃ϟP~`(^ӵ3o߼und y]Pya鑙m<31FtV* $£Uj3"Cz;(e4%- @%I7TEyݯ,(ׯ?r dk1Ȕ?3EUӍbE*ɲ5mFٌjVZ//*psƌsSRN\gxgAEڶcCG mO)@X,6yA^X{Lt34c1VOI!.|*vhH%Ƒ!0jJ1+JyX ű:1bA(!%@ZiJ ӒRU,/362Sg=7iE D 3bNdu=uFM`jc iǍ#Z .gDI1#Rʩ)$|p$JLV5Ye "Ɋ9uQ&K _|fz"j͙bFie4 ?#s3 ьg8Z$!K=Ngka2R=s}wD ~xl1Ɠ4Ռf`_/=6DwX o޼{˗FX_O~zß?-Cϗ4#I3? <>(ǯz˫--EU9SؑV8SC}ә^Q3,ZfH𷯈2#99p~Qy-O'֜l‡/0Gfs:I{Tsa0:bӚe81-| a1%5~rߟXܾf8Oxz>R|yKzUZ̸!-+5$²O:ceԋ ijw B2Rn_paK5s8IEIҚrC$oVhےH:fjD34#6Joimd1/-_k67ۆth-ZsYq^sY\֌7w0r~#e`z@Mp UNry`~5N9O(9B$lNl#gYȴ&4ƌ/޽gvdĶf+ʜzL*\F5z,M}ia=y>OplW ˑ^pSh㱣3FYd1rsuwo^Y1^s<x(hF8b?B)0(-1cX_9vx7TU3SP,'p,RRМikV( NӔ>z$YF IFP9ECu#"OA"56N>`e;B?C nEeO'q`cZ(ĉHe릏=JyI Me,Mot-m#nHK\P4۞ݏϴ}.,X,u<p\p:#TuIwӝNsHgX۱^a3WMOLR޼P?~?X͗~ aDxayN "Ms,Kٜo~`#IMÃLQגdV\oּxb.pq{ſ|/lVK޼yMV 1:UFg K3*9Uy,B|ؖ4K&t0L ޾y5~fUG7 B+"?;*ٷ=VdP%"7oxyv-Lwd[V%fYnHB~26[`$(=%KhPȻStbrWuu:'!HԔҠkϖO.)Kg /'< =y|@(Ni,QadD1 #}ZGNm1SM< 8!%co H|t,K2'fC?-U\v$( ()"ޏHJk퉛Wk^}IZ$0K^l0a=[o.k|@w>;Ofg؋ь, D |FCqvB&(d81$@1EH|RB&_L.2g=~CyI{zb>px9RT5,IBQ$:ljw>%ʤ"x@hOh<0t8OpEM<2B1 ,U `"w-!)t"Q~@Yu9r-ZHoTZbd:pfbFR$2N%$IPzi1)q{R["J؞(OB_Ui?dcm5k/GxeGz194C9F(6`eH 1=~Agh:Ź 0 ϣ5wpbt/!aVJ;+) $*3鉥2,9rlJ=O=1Y緜D1pSKӮa=2&OyyyڬyRVԑ*8x`sfo߿o'=*l1"Ӕ><\m|\wdJj@$ILAU$^o/j@y h+3;LgIqC$R܈-rMHt8 #ovfη2)Cd c 挨+߽R=vls2$ p:z͚s(wkoX)n:`WyvVPUUFN 9z8Dz)JR$82Oo[:#S )se'/4IDZEf x#Gf2bɩXܐUQ(=qayYCYJt|i}ǵf&kIjvkR=͈`8L;gD1w<>?pwsbV+әrb Y^qss;=`g%R(6i)4Mx|~=* OO aCtQ҅!ֱcV =OǶk j͢(e)YIOfՌӹP=Bk-*o*A:3# (ڛ 2D0 iK% 0q\g0$rB(;ΡdFN]h-JљPsa\͒8v<~ėieae*UWy}C9+9=7(%x-W @Ӟ@o{WƎSzV58~$/&H`;-M{{dL !<>:<%4c?py:@tv߰ߟIʒT Z$Rf%B| )r+:-BF>?ޣ Ŝs? ޿{u77/$m`<дwo_h뷷,6 ?8?)؝[~L#Y܉wW,Ǯem#?0ggp,&dSFzɫ4-yRg SN(¿%uH|Ƭ"R',9%jITq֫:JPiNd$ROS)!nGD@ɔ<8gLY#Q1LR VLx !"D͉L!B'V4+p1R13cFFg>딼*8NDHu?D>LuH*݆UՌ_%U]ru}M]Wh!qa~=bg>#fq:jbaeZ4#<ͧk^b@MDOFZ6}eMhݤU D܀=>3iBuu-(O'|BCXtM$}P-I :eԳ,-pR{N#gRJJr4bSxMcH#`4C5R 2 DN]ݶ驦ٽ+0B˄3ΦJqb\B#DDũRX9ہyKAB"%D$APhMol  16ȋbWL.5)+\Ɠ6Y]a~4~ysBIp#X/p釟 ~)X3_s#*5 ܝ L.Fd'`%Pe),0#s`%Fi3{DӺU4Ȍ}[~.ADElp8v<|9r|Ōa:b)+Ab-~HFV M7 >?ȗc6lP2Rz|詯P<~<|۟?Dƹ[ ?<Ά\ϔ8D"e9ݿ9C9(?l??<<}~d2Hs]@ qۆl\C7rz8b!2Xϖ/ ̪nG×-ȩ=|mʒzSԒ!t<=",W+Évw$É1#Z>@9۾ÄЎ#AJ&J+P _iN$p2ʼn@Ytmqdž(RfDg1XKRy,ǪiO..dk ]KLX&i`l"=5mIx$w-.WXf,뒢5?`K*) ]jZE-.0G73ΰ1! PDsڣv{س}8p㇏ܳ{͋;>=y?t힇cqplό>Œhga%<0r$4y6;#lNh#G:Up8:^7`Y(q&u-uT=tgf˒r}wP?}#Ǯ%%Nh|Y!W :N`=OOfqBL*e ?|ˇ4VӊSs"on7DY8i,3s5䩢J4nX֔y49Nx(~YyLQ*gGi*'FUOgRLhY^7;Kc&'ƈZw-eq>h:!O|. 4 xRh 3dbDwJ2JҬ ՏgRX@D}<~})xjA >fA{f3n%9/mO|D zd٤SO'm"B qBTI6ۼ!Lj9}ҏaVW8gȓC9hŴ'حSx;AtB4)E#UY`!yYO sV<͘f6yQIrDH8ZO .K脤=Xi2="20[SǸgz ֎tf$sqD4rmXRӢ8F*siu%ȥVQJ"e F2'$%-֌01{' KP^;/<5q?3~lJL}S3C?CԪЂnh魥5cۑ+3B$2#=˙ۆ4QdeI :q|\hGsơC#8u$*0S . EBy5 ,g͉o?L]ͦdա3sc!p^ d6;d ;"3ᑺ(KŃѶzcS|=j&#WǏy ޿_=W7W4|z1=7뚺RURȩgs2+pbVeHۑJ8|oǩX_/$x^ޮŌ< |'`Gnj Ro_ݻW*psfS3N:*4q2#B9,ԋk!ПFbwjHEUMm{D ?}iƎZgx)9Ķ'5$x3 (s"#zCߝpb^a) {Y "s7#!K(J14FoR2%$M(>IPeh ތIN)#y:]@2C9+t# 1UĮT*#K2] I˂a4?ntNuX_Yoh7D]#W|bܭo~Mtir|?44_Qe>>\Wؐ-+ezTS5՜ʀ9 AN*W 4΁7B*kIUM2[1[ݱ1XfM nW P9>>poP%b+n^,I5Y,ϸ!jʲpn"$Z f,%Zm_ОOa6 #,ּ4p%Iy|R t*IGYj1)̗P;>~ DV~ dH1A~i2gS:L [P(.܍ap,K^yΫ7o BOk#wOLY ۜdwlWd:g9Sd9>D"1%JJU"GG&$f;v݉(ha{3Hxlç-H3Tl(< I^M@qJ*R̪&) ,sdVfIJB֌ҁHS9߼O[y5sLF!H) $vCOPsLEY4,Ȓ 8ΡҔxdIBIu5g8/0*ad);qiE;:*8m='?<Ə,*c'leTǎ롪goi @8kQxs{wl^#f44j}90Y5#K |%,W^c32T$zj9 F5YSV/2,˦R#$RT8cpÈ ~cyA ӳe^ BbVgx`b$N(I̊2pIdN$/Pt.1Ȓ)4Pt]@0:9;O' Y\_m8H0If 5<=o*A&AJ &R;M124-9F0%Os8RDԎ߾")77 hږbZMÄÞahFam'0}v!NUh,Mcd\ĸ@MIIiyDhGBH v$E&NN_7!ȲFz]cgK b;Dnk&8 ip\3t'uqv7ؗUY͡meJ\+>S HU>6aoOŌsY/=S;Y4iӗYo폨DKw3Gʺ IWX?mR}-FP g~oc2*tyMBaܑOZՊEG9Om돨l YD6+*rPlQ+Xxn cO_Tb85cL nH./]`{&)3y0)9H]FA|f5sEB{8ԏ,k>pO[qUhӧ{3{E2}q7 <96{5㹟!T|?qu#I\v=x αC.lf9!Գ2#̬8[kg5j|`ivv˛o#phP/N"OMI'y^e2#yU clT^RsB=j=Z~#߽g}}z|׃<|@pQ5i *O!dc,*r2N'4 |t|tC*;hit5Eر(j| 8O%/7+A S Rf)ՂkBxϼ#DD+E;x/f5&pxz^+$VBz󙨧4CO!2(%ckQi~b&-;c( D3X3%d>_aqt2Ad KGAZ d D(%Y/W"f*#Sӏ}OQ ]GuX"ŒalZ-$AqKSje E{! 9~ЖwE͘kv}H}KA4HZDE1'Պr#tI)kD*N]FO圇LJsw&50] =B+~p<0J$HUVdH$\Ps=0"v$iB$nD"%;(%L uYNŸ.LD>"/Ө"EC`*zԶUh=-%RSZgUr>wX0n %e]H$Hu-bvQWsN k=91I48?9j…aD!H&a'/Kzcry)"NUۋ)^XBJuTĘVɟSW\2ԊxїX*ӿe 8DZJ)")G`%ȿ\4mղpDEr{n^]qltw'~+rti=EY?@p<>Q:LZ.ff:a']vIV<(bl/V,&1SjO=Rk3,C?ۑ~jKNjӖCǧ#)Zg寏4@$Li<"V,5?7]:xAsxsh|ߣl[8BYMv-OT+9 )ISh Co@X,X{E nųBִ-AOg9[y&ʜy%>~\-g޼yA(i E~`4H*׬f)y Byr9N3*K0.KQ)YuE Qڦ֢Bb#-JzgP TYIӎ$EnLJ#%84~eP9s~ޒى,ѥt}iips5EM=_o u3({3H "MHܾ@jMߞ@]rۆ$'4Je4]O0_,v^퀒390߾S S)G5֌X@ ͙8ȳIgƑ 500#YN,C&o<LJjtK;pYF/YjODƑDx0aB,%QG9!d^vncǯӑ n ̔4y,7o380JDUtL~zpf>%w5cE1FtvfQ -mU4fc |VQDD^ 9XgaptOK~B۷/8X31MI[|#1&׿=_w,KxJ^,x ׌c!z ࢅdz5y,M$O-[|QxY5*$EF3oVO?㤢pW<9ODkϓŌ[etf4M ~DH]OӷHX!h -FY zIۑ} g\ ~ iR{-edI,-|ybGsq658 I,kwGEƱ P$6vm r)B\}gvP&ԋ 3Prh LcS9dY-J|m|sOFG̔||n HH8D|ԔkI*z 9 $' 4}>$((2_l B' H*!7ibUp2ҍ\ c{Պ/:dCOĶkl_-wo菏KDcődY2-Ŭ&@ i&'3H3EZHkZ< #&͂<<y #綪h]9$yH*<6C;ӄ?Z5y#K~ T&4&.Jz^lÿ=|elʜe]Qy?>ctCǬ*Y!1dSKwLYo&k0b+`QJ #R2t v2 kMnGdi%fi31#U 7-ErW q8A۝ 1% Ȑ/B90,L bRdOnEAdT|u"'S,REA%iFJ~@Z5n퉴,ͷqڝ3嚯?P%}Ӳ{N$ʔΌ)Yc0P%>8 \wWNM9}~ׯ8b@4Ԡ/U#Y$oh~tTYn?p} [ć:!rlAE5O+oNF~5eLJ/g5u~G+g3|v8X\r?S|{oVXz0Wknz#U`-ۏo)χņrv@dZ2 kLT~_7@S9Wy? RKonh#ހ5D?u-\R$5coVX%U]ժd /3i &2I(#!9u>5-. }zaߍY!dt +2bL52Kp3Aڣ v2-rSib>*,38c.-M<ՒB|YbǬ*0n wÇ'YbU03eR-R : 3 MOOCUdĻ4`FTUs#O*5C?e9ιi= dٔ{u7Wb25K3OGnoѐxÏ?KSj֌h! M&C0uTUEcĥ6$o`SMu;$B1[\G'@Y;݀nkH5DnCqE<-0nyiHHt?P$c@Z]/=`{p;6"GHदj|I#RL?v Ep8Gz2mIRCQn a@fޑi I DR_IRENtT)Dt0bOcRⴁIӋ؎!Ӌ$q~.^z. Sdyqq{ȓ2-Ǒ1Xl*N0(ŊQjA4BgAS Z],<.7nD'CdZJ+$ wYFG5?,LlM7Y/^sW,P`$:eNyaڑnht\_H9~KC:Ϗ"v!皫ҳ\tgoUt#̣OK-9fT|A@. R>t4;OF"bQj1[8 ʊ"xTFoy[O9paOl y-Y$KmYgܾ{Er;ʲ`{>rͩm躞{|T[V㺁,ԳÁOR^/Nj>oO 6/6dac}FJ-xB)ab=Yq|srݡDoGΣ!(zBւ/n035Dc7̮g+6wܼx8f0Uξ;Ѵ-HM@R%cS% J++cBtUQp=E2#ち9 8_=HfO_~b{BV% ꒴DzV?r8mٵgLwxJ4m9Ҙِ/=#,4熀Cxpnwb?ccjΟ 6|ftؑ%fys$6qoOA߽=#*4$eIBE#,f5U],ɪ@ѵwHrFZ% ԝ[^~|f&K 4Gn c{4R)Kͯ+fsDIdP̯diQ⑔Y]ML*^783^93QSUה'չ.X!v)*,oHNH 뼠NH"uɾ=e{"##|=3fCl~OO[J6P([2xf>Ttǖ|<9~έ;!p|c;bIxH?c =i8JJR(YEtJ'"eZ*tU^+ꬤ*@^P2D9NLIlbA4 \?࢕`LGӡT)1pQ@jtV`4y4' l["蜱g"^(mvGH#/enw aę3iU"j^cϟu>3Ϸ]^9=W @F! 6HLr*?$S]6FRۤ!+4B\I9nWs#Nծs:^ks<@0H %baD/8(@ @kEOj~diW J"JH !.ӁWi%J 9EC$z)LWqD3s@j )Rizp_5Mx$c0v*}RZ5LeR`8CԧD(qfc A8t7k_$,Gn0 !>@Qq"'h!E1APfYHSazWMÛ أ$4J -N|r ,;tSXT4]n%x~[ӴMcv`shض-B2MP"z7>xL)9}Kk~>'J\8{8-Pi7 @iOXiF7R5-ꄌlQ0+RJSjnvq?dsY9,TǞ|H]7N Id\svqw?=nhnlݞf5ωVLь=ȮY\:QuCWa:")0H\=y0 ' >L Re0NM NP[>Cȗ q=&8xR Nxr97e#+~ JxR!8dp,Z!w$Dz"h9y?#ɬP)ַ?6;?L,GHi:\LfH$U0(QllK8t$ N$NZH_GDq=$] TaOuh9H蛀X/i%!\! 3 c i#yö-7Җ;.CV$\$Qܽ|Cۺ\JyWp+Y\]8;'` ߵt'O:͆w[..aw?qsvw=٢ş>cwK̵,>..yE &Zp8 h2P"e nGQ`&-gR lL7b9cpNm9㉾6ysG uAZF<;K?4+ lƛϾnOj|bまɊ$9ŚłYLK >)jb^θ^yqu'7iXg^E`UWz? 9xXbpëK%ӎTa=Q7="" $.j1wQL<4?)$!5,A3d{k?-&ƀ̈X]bǑOk4tܳ;FuLRK2IBKEݷP"YT10Z8EKEIYY>F>}ՉW=U/ȹ|vמ]SFe6u*/,Fh/bίW!SO>g"ƶAEY4,1ҷ=qY`yI9( j÷Mnrknlص lF\$>[RWI?Ps.s9ܾEۑTxPY渧\Xs~O7P<ʄU jKHC"]- ;"0jEZ'uIG, ":e ҡgGڮǻ@S7 ЇzۆcEza(XJ[Ȋ?gӜP"g\145,V DBu(!ITLH֓fRc!JQʈd0a=$r"Ib`džfdwK\$'J%(˩ JQAm Pd8)ZG| #$i^q|gzz)HSU눢H+^<jC$~IOG福)w=2E ǂ~sH)0:fk+(Ʒ=)P"+9X/yN25N"Ds@ԦiMOkZE*bzTh= `8_F9x蜣FxC%8gIҚvPy숒 #'đ Pu Ɓ,QRkztkڎQ)5h=Q,g`lpv߽33z Bx5ْzaWU GE%MY@ b1 k=x`#0qྫྷkf4M83\]^)RKFoX9qpJ.T0d&.'X$*"$$ &= S7(fBGSL ӟr6#W!0E|a+`m)\a1 owyF ~|{خCql{4ݳg̊Q9;[qu󄺩ڶ(2$B =%T=6{ 0_4*FK$I0?s,XT֕f)YsZ05i29;6=IA0P|C3=7\@sؼ;QZ,K6݉ϞqpO\\a}ũ݁ñf81C^aJ+"bRחTՁ8 $i KۻhN-Z'#TrqqTs+Fʲ;5]k<-\\,If3L#281.;580MK& >)yRUɬd[(TR,m}zq`[9f4,f30BGil@"b>{rp<"O) %$Ok+` NzYFkGn>!Jb[Lp2ؑ`Ǭ\0{c}v2|A1+X8A UAy,j<G}\ Äּzb9?:yS#TDiJ$`&@M[QǩUk4NEWrPiHfK?!IAMނV`'G5?ۉT Q2#ni2M8E)5t@,I,͑*ExY2Z E(O50=T8ҔI VR!е "L2br45NJLњiJi?;ͪ&4#OYd= (1=(rʻ?VL DZ=൒$B)f+ Z c/c!wG[D| yO]ϔ'jb^9]Hb!KS ,% rx}u" - R=M:ggmHȵd%jiʠbfɞΜ09yt ][.uN!4G4,dÙ_wƒ-\?=W9QnC2oZ{B:P!Ć6Ўo;ӿ_5iڱ:OHe4$Og K9вlIyx<æM5v ܟ y:{Gs 8!~gpDْ B{ub(iz,JG\4:Ae%K%)fy8XL94'V)-?r>9hi16mI`'W%>Hs<"0ư jQi_\ߜ"_xr<@k6Mz}K$eac=i[Vq؍$˛'<}q ih}s9 =g)"E Zc;?ZX < b5=mcqt'ElF\'%?Cs~oj%/".YbEd=f؜PiJRΈf_<Xh' )& qrŚ N<#woX/.wj>h viZP8)sYD׵49Á8(ff+r!ɋjE"L .<Ö"O?h O.2OyITf|O隞6xzU՞~贤K56/QgtŜΖClnK@rC};"ω=|Ï1(kH& "qɅNɽ5@diB1+hM;0-|0ďjS5 !ŲXiT:a3v&6J5ݖYQ-I^ ER(YAӌ$MCw3-EB( 4ƎpX%%% 0} R6UͱeI<5c݉ċ56f-uox3 [5T7pg*flzl,)qB>;gU5 JJ Œ"Ҽ}?g~5IL@1Z4B!#֒4~$SLp:Ţ$$Db-"x"0 #6dO Qj abj#0~DHT"˧$qB? D#$-gsZ;p:QIw_SBJ}fsWgXqc\Ɋ|)(wS!'N3$J7o1,%Dy..|qZyad9_E94u%޾v7\l",rSU'1hIͿ?H)(#7)Je㗬/!R鈵FF,9Msdb|~B*Mc޽q4]Oqwf$"?>UY/_Q{э(5spZFATNV,g4(i=Y1+e"cCY,fDBrZ˾ubMɱxu{@;L%/޻|=|n''1lƮihO֬V%Eɩ91XK8$.H Sޒ9O{Wo-x}%_D \.4=͆(cu&&H3(Xg (-⩭Ka9G#o5v. ??B0#A@"*LR8&-$Z)8%- Y JMYœK~A(эYWϯǎ?(fXArl$ H{ k ZO'H+yBL.$Kb`>[mZƍE9C!.,A{:3[,M,(!+GȩM;..k,q׿A$(Zcͱx #޾9GtΗ /I?o2 t´G 5pf@ {D9*d9=#"(ίȠ<6nG?-~O&pu"nɎX0Fd} 0$bm` i"t=`'0GG YX ԭ Ȓx.fi L G(!QJcAISQbO0(_rM% !WS/v*J4e|%=}?f맩lVL>c5wG-߬'rXXd{]?MO/>pxl=<՜k͋9Z:fHyx'4gTɻ=80tQdQ|Zp{CZ=7ߺBs.a`X1[>z?hi숛٥%>ٟNܾݠuL+OW#Fzڱa sꎌUENJ?k(o ֳ9fDO-ydҞdQL$t]\- ] yg%Ǯ ?}D*YJyu{KJGfO3,h·>xX,rqջ;1ۜeħnpufCm;'KR=Uw{zs,'ϯ qsqFxƒيtYI[ar[bZvoiw;kxgk( ait[Guj9m$IDo' Xapp:ҟ޼%#f v`gs>kgߜ֟)/_ĥ|tpCM$ xYTZ絧 e"1 Պ3Dp} Os 5pSZpHtZ2+s? >䡡l:`YJLג%D1o^>3 A\W'\ r!XScǑ.{t쉔c@SyZX)!8^#G<+vfc2jl Mc;=0.&xS홧 ؎NO4ʸ,W,c]̹}yTUk˫Kk?!"{NIQb8p8qc>?{O-ݖ}؛UOs0nDf)/^CjfwEE ZEq,wfYB;4] PX3p=1n~H"LauvN\g)Q#@- xg&&Scۑ E1Wݡj8z~r-ק]l&f:p^^,ڡ*bն-DG$iWmx:QsBg0=[d=iR*N 3'%wC0!0]_cEI

#Ns~…TuCS˹s4(MHʂR+BH3xQ,H& c!@!xd^H?F`RMliWn$W*WsXq`ǩ\{֎ ã9L,忽?1O"ܴǗ8`I"EH :bilFT>E1rGoARR!|gDڎXp8:YFWob-qPb>3/IӜnO\\8Gy؟xs,9}s8-`)Og\g-O'M[q8VֲZ/hi؁q8Ӑ V3bN]ܽ{,M T"|O Ʉ5*fKDZ9Q[ 3ʱl-ۇ=r8Z"LLo)3B)%?{P/Xι>;k[6gw'YC$O1ygFJx؏d18eSD #Dy~L$@iǡN[]u1=[L)5͆x;VBcjGU#=NY_^1O/()7/nZQUo_2IC]1=QHrˋ픊r1;DH~-=MOCi8+E$YQr"fqCy$J"!8Ϣqqqz=C9|;(~ߎ5v*I"9M]ON>Rqml6$h-ABFl P2G@ ±duGng@ 򌔘?7_ H) /#t˄a@IJtM$"aED-HL Q ,y"T`4 /SʟH0aʿz(ؘ)~E YR )rB H׶L 4a@K xC=XH=YGc R #&F?R-Z_j7bz IE,4a:H!7WB<ڭ'Nj9_ONc£Xi=UqJI@[0I$ԮAI"/??u" ?H$IK!8E9CcH dx4Yj:eslhOF'i[ƈ`I.P8X4E;湧n[b-1ÑEb?훑+n+(&l ]\e1YbŸ-?Cg+ ͓yVItbOåo[ӆV|0Lg%v_qt\;iӒ$NۏseLܿ0{\.JvI$.re\ΖY= 8UDYTaEp:h}2ϾNlw;2-R(O]G`ezJa@)P+BLLEgO{.iO?{ ryqƱ:u e,3EI&nrMd9fe_!) t6\>Di$:z}tD@?uѐd2֏G21?; .(1ݲy,OCicXt/r?m/Kvn jT$qaܜ]w=x)x1c>{cV[(%Q)ZvTGs"d9i&q`zE^3:B^l>6Ry/|v=!q#q; 8|x'PL|~ ,)OH#E%]2 Vg>;Moh70 C;T$~8ZLbFy=NS1&泄܈yk ך,M+Y퀕puyŬqVI)HYt7_#Y8ߚ֟vK^ROnhsd_W4i'ȯC=Jr8'gS\%.⺚D5MIDAT.)g࿞kE$1_՛7< W%3i:K("-(N@a4tdh l'g98~o43Fi0CO,pR)Z+%%J bRW5dYJMzn]+oWB oPyl>#8O#wzhi/AD|6Z4 qXqDF & <,3t$Q5Or...~rn.4q[W=C(M}e};k32,0vf'ܜqx:qHә}>;Gh;'4uߐ9I>{A9X,CӁ g䳒RޗcaO?l3/YrVsV%w %֊lFvd-#8P|^psu= y{`PS54euGg<])Sn7ol蚩91-PImL%4?| mݑM_s+E"/0mC%W<%0NeЛΌ'86 t:7g !4yX7 DZSlptD$ָdjGiA" R9pp%:I7,/YbF5ٻ|p1OV)U%('\\%N6GYª ,V (4,glww,hQQ*zu4PTmhh 7QLyL1#q/؜ƚ0-ٳ3݁ュԌEd OT.bv߳Z}E$,ŵ5Yֱ`t{:puS̖Ŭgt#!,1TCc-77sEI&4Xͩ#w,%/_~hSo(EgIvȇϯ(h>}ճgTMEg, 2s:9_k#=p9NxTdxgcþ"u\Oesb4T}EH;4lGWD)ݶUbVp= >;pV(vw\.z3""/Y_GMk۞$ Cϓݡ⸻EQ I}X^_D矐z7S,"b cwx` ISeYFsEIZ5Ռ2쪩bvrypͳ'>f>PhE` S-gy7β\Ѷ&*?;'0_]#㸹-lYQhm@@Px8//Z<}ɳ/۷<#1M z1C0f3 ̳woI <'2fg : m$^ XDB'o߲ͱa& )bJBwb-4'<ˋC[Mpb1OR'X~i2IxOe:W+ #4Q;WϹ6<="4}P)wo^ј@9NN'bjRhCْ7$s6Ց~K&4mCq4DJ^,9hn q o߱ ْMuD&Ux8PR |F“caaeN$ӑ$PrX5mEDTJ m-I< ixt#8;NN7e9cFGnr@Oz7>nO;ْ[LI$-*߾eĜv"|K}NۊY3H#4lpj*я<vDZ$7~9J}!]r8֓K1/k S7OǞjw:┋6q CE)=_T9}xqBplV nvj} 5hPr>KyklAc,cXc{セe<=Z;.HS ͔'7->LLP8G C?;T8ZHTaQ}܆hZ4alZ4Y_:4L%QdY9:`=a>ٚQ8>}Y QZ#$Z H)$;k_{,ya)y0"pCRc̈89V'<CSsXR:(A B<2ѥLդa4D~Z#1q*"0:9pZ!̀ # dZ"=ё$%6F # RFG@<zl3 _c/a"餗XEďUv7'ȣ NSǁGJ#6:;ᅔ$J3t-dO0P;  IHFXkMq&Kw7)ߘ#E{38P ݀F2EA:,ߣHl]B$!U VQJbqk*|qg]Kfe]k9ZM}CMt5qeiOm9Y_3 5%%8a3|x6G^HA?y.tƑxa7o>X.QfXݲ;0֐xc/oHevGI |j^~3q$ bCe͛{oOVu#2 ]R K߀:*/;lEJy~F\yhTK6.`9..*ELZCF)W1D՜qsy9eĬ\ĚH* qpw;P1/E* Y%CAhzömFaݛ-({>x>R)ܽ尫j+gK(3XQ5zs^=8 #kVrhkn߽f0~w/R$9P;z*nh iTpZu~=f$́Nhہꑥ׼ vNCö9`HE]MsK2:O$:MǑ|>CٜzC)`-Y2Xr4CrղDŊz5EjˆBYܒs?'v@+^m66P.Wl7Gx2q`GFmMVd$wCSHM*YG(nrY R%w87U`:FHljƓy x S@OuNdME^  &7~!.OEKdءg-I HMRwx*5FKeDMJPS]ddtHI f-nt IS(F/&cМN-hyF3`$#өaa"9gg%qQF ]G,=K+.ܣʘVSI5홿G)R  XO0W/_o^}%p f|Lk>Eն֘E5Ri%dyA$DqsMpĘ|[eY;jzrǪ"bb8$I SuBirzFJAYҔ,NQHw mBɈ+$P-h=9BLuEe/y icCq~ƶG'_$&*cv[<}?v˓ >9diL<>Jf |W|gipyqUSD:Od{./.bg4H+SN͉7WScweWg\392G:N\5Nt1RP Se|^4h@b]O2OV%G1҂$iN,g ,'MbZpBK=pDBOTc= xChE3ڊ!xz$*8biVD:coY.Ki'lSW52ꚷ/_~75wHrYx-IlU]aHocw:Y; WԄ2Ih9ҴմT1y0ӳ*_d37(=lmP n>c;p2#n.H&xOg&,X$yUO#@QN Hқi G@O(#H c{q tD#nlZОNd2'% 9:bAYPqI HRc#QHjR-ijFk=iP rE[h ơ.H;R91lN?sٛU"|M>0gOD$9AyD`sɄHa?X|UdTa xf[q.>Xok⛜XV<|E^=io7$"N9SX8KBcD)' It`"8ͨZ `m47'm{hY7\\=ի7- <ɉ`lF޾:P (Y-K O/nSq}9cWm8 G޼jQb[N cV1Xvĸ,ʸ|¾q?p%ʢnwd>_ҝ$Yw,/[O`эT Sm /RcsB:v, vB)q4?!{ggub`snb 4cܲX 1NJ,QT*E #F ٚEFs޽~~HP:jjdqw`GMSwFxӛZyzNY'\<]?s~Ku<ҋ\h mbx[aj H?7EƸVjjU"tɩ-9#닂yfټHIPXIcO ad @yUO"˳+d7G^{n3|P\_ѵ[S/Pu؍g7EɩvhI:GfK6z=-5 DQ/%k Ox򁊁Y9g]Ѵ GbH+!ꂃa M7(iv94ѹ2mCВ[SsUMg,%=_Ӵb6Xyʻ=EVd~4xsmHItNnpB T`,YS&)}?1Ja 2F8U+bpq`ƑL&4Q&1}? f9_:(ʔ=z3NTDqL?<ːL~AG@'+3KؾFg) k: IFzpb I=5+}lvXEEΦ:Kyί-h w YFu-F #^KL $I 4J膖<'("-!%v0:ByAdt &8U:!8Sj)ҌDjXslj$&X ƒJLQQ$S|;0ΑtQLNg-&qD Te%C5 a ̊IV(]QsرYft$3.t"2ϐzr;pV t0uPM0VѓQoZVWH Cg1ƣL誆v5]b6;tP!JJvH; XQBNR"@ Ext!&zl!tĩ/_ QAG5g:> XKXxtc=9_fh݈zBu y"'ĤaXȲ~wG%%Q*}_~5=eбFtb:#Rqpb\ R]ӵxO;VSs^U?yarf4U 0 _ݕR, {_c~,R\\ %uGb-x }{oojƳg+6#X/$)@a1]+f# z=UE $E,Xxzd{@ ]_-+> 3\,פeP ԍc{TyD#DD7Og9i@<ܽeżoȐ}c!IҚ9[_\sZn2t _=_)C|{"$GqsrGr1ÚɁwEm7$<5DnGc䐵"Jii(-;֓4ha&>d!U;5IBuIg%;&H ),zё&/3,:bVrWe6n44ok,!ce@ \cjE?(Q"I#sI$Hb'Jkq0+JT}=ie'{o諑b=g X RGS,e9gX$Q8S룳I<6.E"G t>cx~Bp{Î ؃czpѴ4#]^ uCOo;,JJ#A0C}t5nhq_ӭ5=!qV #5›p tÀ%@zз T6!͠^ -ZNx>)D!&~mdpἣӇDKdpXkBє}w,ȢoF}T&E} RE(aj*LT+aVDi B$8 vک[a`wcdm|IXJi8E  AZF;&V8zp\M_&ֆ,y2 zف"'ոkF-5{Kv-/A G52iD@4ْ!*9v?1|[om;3(#oy J0Ҹۖ.8v9cA_q? -lTMO b%xbS-Q~a{d3 t1:U8ۑǖ|gO'sNt~2/{;KmXL̀NW+?@DHd&Hgܽ~=_ۓ"LJ_H,j1g-~#/9 =i4Mu5󟽡"IL"=C~]z#zY@EOkHsFhzCX"mN["۳}aۖsb=p{3m}Wӛ@~16<-TǘEĊzw3qÐE<8MRf$5,%5gxi[J掋'ۇuu,9Ŝ,ZSΗ펳|ARF8JsN(3=1v0Tp:UlotBNHsh@4"c9BJtV`O"5݆`4wYhG(9w3яw;C|bzu<_-(G"'e:Kq"r@kTO醚HL0AJ=>X\\(G(ZkNnl#R:( .ն'f,HlNE_Em`2Ҍ.7L᭄2#F ",Ie1 ^ei%<Ω8S' $R902I lny=Ix)a-P*fQ c˒t|n2(k[V79ALcU%V #`cBN""F21Bؐ̕#y̫QPû"w|F\J1b`<`3ff)/Cn-J)<*2"(tӄǧ'M3 d< !ߞe9WR%m3FIBJ8?ܜ7:yŪ^2 Ü :p5λJ3=lOmz"꺎ė/|7WL+WH='.[/qwt#F ..ޓbV"C$Og."C[C0#ݑ͆2S#oS@$5>|5{ B^hP"᧑qts机gOS)3fF3IMe(1kJʖX]?JƑ(3/'e)ya r$&<s̲›A*0P":* mY3L~d(<A@%ǘ!QiL y; I%=JhL]WH%I g)Q!|p)`3Y0vOf"eLgͰP`%Uz]L!MKearL-opD4@2_~{A?ܠBD8hv8/ɗW|='Z,rB.!4~u_^rMi.},;1%F\r|d$b6#Ы Gn+8!'#%\,FR\03/TMp| E@ɮV,k-"[36T`\di37I2㚖B F⻖ؿH;#E)mb {Y`J:ZbUSח+o߲DOT)qnU*QVȳ `"zyڶi醆=:Od׼_^ѸaJ( oZǿ;ۿL,jFnbBʌHޡyn`Fn/)ќ8`lG캞fx EGX"Ǿ'3++˶ȱh )@Y`YRVK.;M^NڞM`t# [rqeAm T6#!. Bggn2c h4adII3] LC)b `rS3#xwh97ڬa`l lU, vwZ`p#ź">ОZ qNc0"RBصd'O"2 !$(NϸEg3 F_Ye`<-:Sj͚~8#d$aBTɏ ibjBk$Ĕp!aZeY"Bk41*ljT  Z2}803SG!-RI<;wW6#MG&ଡ:R44@XlIJpnόcCR lC!*!h;b9'F Gy3%\n(% RHجڜnh &)<*LL϶? մ eԈ0-}w`r-B+0p#$m3GaDaRԂG %1DLZ^Y^1,Ič=]0yKn,V=)L( )b"@i HFSeH 0It>T?S'h1M ZjTRF!' AЊys$9 {C$lx=;ɽQ&LI&"8#c j/.ë'"r[)T<#‰+je؝loP"z27|p۵!%AiFf&ެs2-'G#BЅ@]׈KcCQ޾]ki`K6Kӷf[ӑ_Gï=6dZ;tӷ3Z@jp,kι}{3YR,]Ղ_w ߾qg_t'|{h(Xّ??V?]\VӏN(ƨk2Оbnwr= +Z~\'描':e*W$xYޮYm-_?㤥6Y 0Eͥz;fbY!2ر`7~gх- xvB2]qp7<#zI f;׻_8t^+7* #^!]@y0g7ŒkÁ^ϛKu?;r(I )pP͂ۛ5EЌ Y-獽֙72_d[~# ~NUF$o@uy^mbƹp#Hs8}dUQ0fC$N=x'*ѹ(3MobCбB#85(/&˲.J}ϟOݙX 7fK[&M BS߱\ol_Ԓo(2Kax|A\l/mI"/jdF$3zzq |'DI;=>v#B7N'xvxdjZKǧ3Fd|DM|HŇ7ow(p!ct"_W09W4, M![~5%Ekd!t>-Fbo~܍(hŢaJ%m84q ApJӆHXb"75%qv{nK8Nt1~Ee&mzϤ=#B`].|{>}!ҟ|rOD !r ig]\$j}ۼ ~+94lR̘q֒%X'^{5h/nB"s m5}sdj:v -CpEMӣ%%.e4z$ˁIX8 A ]i-1iq"Fh@GGvDj;IRtniUR,/C +J 1nJ' --!E8 hawg]-&cН\7bt>lm)ʾ2ܼs }͙2Zq*)iK =Sa|Pf9>?G A`MO{#0[bp#$+jr4oZ$I)W {&M-ʖ4R!,ʜ&ڲ6fcېCJ"V,gԃL++3hƆ@De*/qB3=CS H͐cL 4ZeH13d )cHR(CJgFqpCJZcZi S" 11bD%IJOd/`)I)5'5xBW}w!qQ#l B2aIb( C nd44t~d`1Ĭ̗sMlIprޞdL&~=5ƑvARcy:sRT2'vLLNӇcKkv /'x~~0qx:LuoMBd$p3tƖWo_H{\7Ci܁ Uαљbf튻o43(;o^#:[+>4]RFf*jf\m,k=s\ù=xKlWXEYb?%HR`&x֋[^x9 aZK_~"y+54bӁq~mi)(;4WR!l Ъdapn9q8gE4ӬDDșg }Cs:!$[UWXzk@^TE93$O0\SRȔXH%i$U^Ҝbb|>D |Gw'qcubl.tY -Ǔ}ێ',nWqc8'}KH!ȫduI1(y~vu1 804y>Pee-L͞=NHwz-nt?tH/G9kPu}pg!x?E 'zGVe{y{:Rx_lۀs%ĎYSo0Y7ꌤ"?xv;Vu*\n,ŦKN<q[vƾee@ZR.*8$ !PU51rڜyNw>14-ÁO?Al;wƞov@ ad[nǁ\4 k,y, es ){|& B9.ט AhCHCOs:ǁ;wO3dZa`|z%bA!HǧbkkvOGꔱ51$pZC^DRC7L-o gSgbqpYF]%}&bƉ󬫚"PHČ̘fÕH! -52%~rɔA҆(4!H?mae ld#IJ0&ZN3+X䶘ޑЀeüq9?x (Ȫ)ȡD{S8/ hqmKGi xz1u=n"݇we·#ݐł9uk]"$AVd<2z "uֆs2-ːx#ZDre)HIₛQ)"RR1Ȍ QFU$2:1gW|Mu?[ "O*L1Ź&k+6f|`MjI ?ج{޼y˗{v݉{6TyˉL߷43ZyQ 4If3%ߞ{~"hFe1 cJx)0{y_!#Z_k{2K?GP,K"gw=` ޽{7H`"yx ! :%HDQEzJ`19CREf) ^`ubT4F5)`5*7L#RdogyG5$V~q\GG6H4KV[d@ {,  bYΔ-'xѿN(1WYLXlQ*\ڕJR@(217*[QL$?+߅HQ iQ8^31%* al05sR`Jaj&-$ۂ%}a ~BDf4V1JbEY$^'IMđ,(4Mx"^A'?rn%ARw%I >(xjMkȌ{p]*iIJ jeJ/DYIؓso\-%(|fu"[h LiCEh##,,h-ۛKkX;*5M?GSonP i601cX^ yfaA4 C #~Xd$F뙜'+lKb?NTR(!HvAU,.?OisZIB[9T~vz"[^лHA"OwܮK6#c}&M'<#պ$/rlsvo7 S,`:Sn,Bd`.%pdwğ{rGV懷tO;yEn%?{޽ ..k}%^ c+?y=SVGd|@HۛkRpCPiۑ k-უJhO6?QU%Jjѱ{~aYJخJ޽&oO-?p>rBtTu"QKV߽cQnoĢ\qOԋ;0%y(|{'MbԜ=!1#>ߣfuˁ@F2D!ٺu u]bwct-R[V5yެi[dLni32uEQH%93\CX+߾}ej2 ΍DUGR*rkI!Dbt3H6hKa8p iEg4 k,@'+DDŽFB bH\V(Y o({ލc!4jC%sё&9 t(5NL(Ewi"8%0b"9KP `GzՒ<[PGM"1n HF?%C? 9p1-:Cg9bY!ÈEm ifL? D?2m0J, %g(9Js)E拤Hk,;x?w#H) ++Hqn:MR=g$8睓GQZM!]0Li -+$B*!AR!!Dr . 3RY 4$}`7yڨ C{q| 8bTJ.Ǩu=>}dU =YNmo ,ҵ^(wX.,^) ~A;zzEa L=~廓ae>rCs3PfUyvxx6LYi4Вu5n[yqC&8{کԲ].%Sn0%X!̶*ȋ)8Y_M$`gxZZO *,EQe9MKq:HULaϱaW]d d‡,hۆ<4mqժheAۜ0Jp>!S%73:8!ۑ,Xm-MItSs4KC?*2NՊrׯOOdk8 mp;˟x~zk6-wO|Ǘ=8v{hG%8yx'^Nԫ-*جKR=_~F^Xr][./T ]T%C׀ScCU7aop|9#$.sn F Kb@368CQfR)̢B9Y m;KڤDc(E mYF)8.J/kdf`t4q.dѴ=%q)ql禥ZC(2TYb$H^FqyyIl35#KfdQJ2+Y_\g8 %yF g-$g@CߢDDI4%QIͨ!J-Я:KV7[F7t-YYP-γA]v3#S,lX.EsVآ J1p<n a / bl VCtW3 &K!Ɋ"Ft3L푄k [2KBVO\&NYbO76M,xH۳Z/QY T/O I, -Gv/]xZR, z2'>_y3WK|ڌ7l;9lx4_@T*P,bhۑOdY [,x[j%Y oo+3ZV%U2qx,q`4Ҕ\]'y%ȌIw 3k'.~7<6X0zopBYQo8WrEE9ȷ玢YK'vk~ U)p}Cfgth'2~L\7pn2=R~cX^\p{H b~u#^BY\n(ex<3\K #X炟/݇p1,-o%77 .J |ė;Hmg %W'|R%'ZY^_Լ!֒B9CCZnDZ˷ڗgk{a a,Es>ȭ8L$qƔD-EE[b7RV5̦D{#\\]a*AIeY.&s43Sӑ) o3uU4jɈbzd!޼AK M_?>萪Z/rXu(dcOX#˚sG$Z^jrVHaƦOƬ)ᚁBj'nk@#QxGUӲqQ`fSĪI$nˎo_"CG364ʠۛwm =e9"#d YV )&~u%c˿nKauF)*C`D-K Wo>\n 2rc$?|M3H9u}^"E2.n[k=߽{OS,(ʔ5Cwf{~*2p9|Eǐ*+}2ӄ{~q H? qbas,6qeEzClutm#yX 7tmqª^"A(K\7;ndB1=XCj,JbEYe%$I]ggnIh8wMK],V4] u]Rd7lV28l "ʘ%s&K`i56z 1F)cw81HEMY,qPm黎~xxG oXH-A$#@?}:אg3$ߍ)(zR\ P bF#Iο v$4Pyq(ZK&YfGjMK J"&)E3aNkPML~bIjD"*39wX% RP|x* w쟟1b& `%!o9poL.$`JuPhsy' @]e ]CzI-q1o_P9eat$3?d&o\_a$n%rUf1F21C_}3ln (j,5m 1'2 !CW?@3;O|9d0{a4צ#yI˛,Ma|n(E-nnQaZOtؓt@X;q6DE?'yF+3{ȳ4P"b`lv?@۶|B+EesHFY;f I_7LS矿\36C0%mCi7 ~gG%Ù ,e]Q5C×/_yƹy]]T,%75l9-IKeY'8tM$w'g7!z wL? fd{Rb3C/&azQӝ|VkVtJܬ bND S$I>, X]o!3)jJmQ%9! 3R[ڹJ+CIjf9slQSn8ÎyFOp> Fi05/`~?..R1[ YndX0)Ե]W욖_>%"Jж! ) z膉$>ɍȢ*紙[޾ߒeZRT FJLFtEQ0p{+~w?r1@MՊ8dRW/&?#U]uss"f>w%?X~+"UNrɠqaBIA&L]]Sb`;bU4493_Pa:8tARi)vGD^0 gȌ%$G =40JIasaiJRsZϛ$ZkSqvԗ?]0X^Q2&9OO/.,2 Mp8?2=m{"ȄPB05Rb}-:i L2Z\r܍LәRTs>Yvd$+N/'9ʌX]dfN~}0if.JϜv" A@x~M;Xь#W6TVSkN~#eEB۴ "%P9/^0M22Y-j7Pf5yedW(d|$U9u]=Į#ϗ=5 ܀˗d|˗N?\]n/BI5;Ow a#%6Ӵ"778sqyMQHmtΓ]^I-[sAYgZLVqys)sᦙ=_|b=|j ]dz$r"Jэ;>~޽'%^)!E",4b˚?qO~`{D kNw?ђdP9y &͐g )aRdp'3D0a)[nEnHpLd,%'=η m亙'Ҵ԰Y˒i!2+(c`Jwq"p׿{ U.B~وqh{<>&O${N o3qo?(? ۛ%,jê^|FKnK﷔kO8z<]ӏ Rs\6(AITU5ޏ,.._ Sf%24蘆YD]״ݙ]DfsH 5 >е //蔸Y] Ҝ,(DHEAy}m9a4y2r4e2i9O0X9 )Ҝ)VbE^,B.׵-Jʙo$#JFơeZk aIP9JD=uƢD$MM^&G(492lDa(F"R&|>ӌ-IְzҌC~Ix ZbLfw|xZhT f&eS*5WyIn4y^{N3)(a1^7^ U!F[NHlZ>:0ֲX0bX.PD&7}w JG2yMs p1$dY2sE4y8,\Rx]f~&3 $fVa4#FyAdW&+2&΃ zBMHG;qw=y04\TW3kYՄi<)\6˱y9Vٛ2 ceL!Sbb qZ5R\3[H5X\%UQlͳOw,E]\@ | gJC<=?fUsg޼\l7SpɒfUq^Rg \__R͚U/-R [el5KQ_ƐB=Z ~L߽jp+%#ooYly;Qe7z6W7Xڬɲ'|LVh&;r#OGlU&bCg|x<0Ut¹zSO? \0Iip4Cϐ&>=#MAYHuIs>,i'D?<<=C ƁOwwD/Znp|@Re-Vh&\`^1M 4cB)M@J$KPTe BJIY^vON/s `kY=OJYiO#"b%y8fUc>XohٔXZ%*|K}נD7ά-  ZtHfnDsԏ%JX0L+bCWeX茣S C4&Y2 o#|Bd f-od,zp) !uŊ,/q)TFaMd}|kqj8n酋$X( O___ cxB?PlGLԗxؖlr|⨶uUM< CaۢD6grraLJP$<'?xy( \mά^BaiZy7aՂf)'!L+~fq<8:B7Q%rv3&al ח ֵeX dN? 5rCh'&+o/9y7L;PO|x-QHuC9/ $Akzf^(ws'"J deFqd\!A%y961[bDi9 ja`xe{94 șF.̰b(+La9{o|W'NJ*N#׋_xc3 mNU(1%닚1>?>,8u_?q8 S󞲨ڞ(dwhXl/Sʄ.4(б( I\\^ &'q!cID(2AZǦ;x18UrGP ,qR#Y<Іp@#o- |ǥULBs~%jD2ӎ8ttgQVR|%rΧ8:sK?E$[k1M̰on6٤ }J H^cdeˇNbU5 %@Ue6kE|cc˜) aOHtV5ϿBO Yn0fbeAd:4)Ԛ }?D+e i2csm>Q%v =~)IөtC"2"eűi&&]^PŅ 0^E4JKdqG5IV];ivJÑصnl8-C.:X7eD)q%O%%12#I)LbcҔxhGKltCZ1UaU^P'6,fyu6ʎMesI 5 ;r\-*hq}Gw>fHY;nhA72+򨘥Hgk/v4(O3!.)!ÈX3=wqه@ Td ,MND)#2FdȨ"RcP@2ɓG (M &eZHAp:ֈ(Y+tP qsZ;jb9'T]DIK^Ϗ/_^a(+w-7 Gh=2$chGںa;S I"9Gם3PsX7Db =#ǟ!KV"FLs<#yx|;Ͽǻ+۷}O:3]Xrp<;=C%ް䗇W^ Qfk˹v޾'v,7+cM& Et:p};?|GQqݡcTs>xyz¤Yis{hXy~_En$yj9c^|y2_Y,݀XDv?%ca#Ƕ=-]?%4z=Á3*WT F @!5woo1&%Aq=_)c "Of)y r?/wh'@8{9Gˈ#M ÞL0cXK(3Zo醑4ɅX3ai}jEW7tut?mZvϯt@52@QiWyԪ >ӼKci 3ޡ ME2niIJVU% Hk % JR#Նa9 ƥ0Ȼowx"/QCU٩^nΓlɎXg !0 ә(W9XW2@ T+r9"@4)I6ڞ"KD CIAD~*bfsB6UTF`D'9يTliUFcR:0E4o j4\]mMLD#Po~ Qk~꥛pJ٤bwvE) 'AH :!jbY%v`8-!Qf1M=u2mDD x<456zVrc h/%QpDʥ7="%Q$+ct2DndQi$܍}ۓQo A\:n<PJO?zza 91o|m"ȩ"#b ѣ$/sXF6)PСclN(HBI& IAx I4Tf=I&.Bk-"jtYYw$B`u, gG5eu"[B'>֖ZqDrktiܬטb=,fy< F~ʾ5w] Ӟ`=-|!&-2"a儴+>әDgG0xv䇻E Lh"ݎ,H7 a4뛷%7kDrM^\G=R d|@ f낥J9``+sK ;,3;EuRB&f`^p\ F|ள9by{股ܟz^519)۞Þ~/fnwZ@;g1yJdW̗K޾}G%BϘH74U3rAsq1ftm4gt]P,/If$ʐa۳ϐ=X@5yF3"Fؓ%`#Bhx~~P€{`u=`ig=Y!Dd^3_NϝDk~\cQGN ټ$M4yjHu :3G>m9\mr?XV$Q,g_cE!FŌTswdXm ,/}ìX,!]0R%WW7hfU-^']t!/THw8R vU%(0yIʾn |<2sxGZduF)C`f:$&g=(Q ]L &@y&cH!&UN`GǢ%D֛Gu=I2v6"cMӏ֡dZrbNY$R*CHiv O2ʬ0*8]fүK EpBitcO7(BrPGc}eYHfB7ɓ(I!l>G_~1M{GO4A1- ִ]rENZT'>h(ZTjVyJP;m 9w#Q|`e)z?3CCp !bMC?X$eQ"cڐ9&+i~'dFbpa[JpCϾq cmCV^1BJ뙕~#g˂F AGN}7{]ڬ@ 7/8%Rr-!p0 ǺTl6q=J`dW_e>%:d ъDo6yj1'S;b8gf K01Hd֫BIJ9Ur0ӵ_?M=C+.|z:ezpzasd}& CR}[{vBѶsOER)X *QXyy9|dp૯CݙB`ZDw29.=08OJONW$?~Rh^g2m Ny-ÁY6lnn@+臚oooyܽr:qOrOUTb6T"$U͊٬BrVh0yJ1Q%IGK>\q{@'!%}#ws.st!C:pJq8 5J\%N5D',el;B?bd=' ~0lF6 R?t.;$GwqedR]ZV):Op:Uf$EH &D@)|hIRS,TeIX;L5ʱ!$ϼbKl7,9J5b`}A;*h}&k՛_4KqhT!BzC\wdj$JҚ$7-C{|xE \O=*IGho,DiR$Yu!,EulC=Zs-YnLט$K+8nr{uz3㎾>A2=bFtmK|A"'f"U)x{uS]Sj,g̊yYM܃cRr}ǰvw;V˯CV 팬H?I*ݾ;vN8 v/_88 v0 Бg&,ɴ KUJ}n%XG#y2y⍴Qw.,793olGV}IS1,ܰlHluO ,)R 9=j ̕6dRЍ=3}aD-F8MQr5EA-h]Ԟ4 MM<soI\@vc$}Oü"z5/-ϯ/6QOv?sB)19B[+R+6T%E;$93b6GFI}>Hj$Dp:AH3َnnߐmam \#~zJ,%x(rޔ2R#tDarEFut Y p>p1"dJjJnh0Vst߾cWTEI&fl6 Ef6|X9=: R +V z1gٌÞbA mTaB0>ʲ*H$0ҍ'VB bi;49@y?t=|TbQ7g4;^gY3ؔ%&QS`j8T_D Oow1*FnJi&ed%T F!P2n2R#0 /ïa9giO۞Fs48N3^ratz4 AI bXژ'fiaLʬ'tY۶q> M b8N YØIc{^[^oHXN3bb>HtEȄh2G~!2nP`{V/tIûvW2XD˿wGsnjo9[x!!"é}wox9-I@mhyAT9=Ǯ%RDҍeb,IKsx|߳\/~aʌ1xu ֑k ,G%ZkdYFߏ _XʵmpBAsxelk Bx1$%S-aPҐ%z2 D@{Dh ⌦s-TDJuP5Ӎ=i'M22:IEbr il4rB*3@ KMH@*Ũ'`4t|FjRVi 3m#/}MdML,)qN*gQJ"l j"'BMbzzB!wd>4ɤvKZQȀR Y5cp# nb,DPd!$NL| M(d tCv@HTS1USf)Q* 6QWĠȴ$(A:v 3<)w .b@hkH rOL(,RkXE A=ԴbܑrOu?qWBx; woטddo#`heMTR1 Iپ|*7k^چQ)a.9eY:׎Ʀ=o7r?>=砱I#o-DHl)>/jv)"viGw-kG&+6IVXr.$pP޿yr| YzAh\`ٝtcGRd%Hf`VtF;LV1 &M س.3 YdT"Qw\W9i;Y%!#q̸_\/?||#|súZbp[Ǐ?"/ihY3wKʐLY-^\UW%޽qUT.r1+2m3o~{Gt߮ X:y:{%N Wl?# 3K+ Os4ᙄ@!%͌ʘg,LiE5[Ӊv @r rV3z͗ eGڮvlaiQyOhmB՚=@?d[ӗ/ʊR&d.݈*|n軑D7zS^N)"ӑoCMLFnxo%dcϧ#yA?̖wn>7_/(V$`^Oϯ|au3NfkΨK)@eGk\3igmB@.sHd-!K ZdL'XpDfTL*|3Dm[$;2[3t-EណwBU7D)&oZp#ZW}5v($A?4 BjLdYmiD$2fEEy-jI6 %X v*$F*Ź==>3oqQe%q 匇'"3Кг=hO'fyA{\q~{{A푶o(瞦Ʌ\yRc(a8Cۖaq,MD2Rf3ֳ 5 DŽ)s?$jEQ0eI7ʓ3rF@NMI j{댮'9XNB"R$2V LԠ&FRZc\щg\CG-$,sF۳ݿuUa8d-L3t_mߒ 8Ge \JntGK"KI1Zw)8Is|F' L1>L3562%V`D;=J!PZ H)d4YH%Wu}OQVUt"8GL<KL"dB!3bL .0Asz}ǟip>xf //[<ԧC7Ps%M= ap8 )A;QJI7O5i6eû;&l^99_XjI쟞)cdӲI$}Lr)U/CN\W,1JSzAo)"!N%1=Nj38BL5E!OmiJGcz6;^w't^DF[ cp}I49q!ba3o =)m\!tU:Apޓ9Y#$2z{?l^Ւ Nes̫9Bi>=|86 Ҍ︽t Itvwp2gȰ}՚YDD{+id*Y^-EiI/?xDr9g%:vDhQ2a(R9;]Ў$ڐ%B*ta8FTIמ8vHd>_|:r:EEߨ=UZ082|+ &( xq]؏՜74CnEP鄬}FKt3t'lVF &P`G8iL$&Qd0^6Ct8[0fzQ;Lj'ht90N82 CĀT@Apy'=}8u"R-ѳ+'󎤷 /%~J{v,ʄoys;ןIe7K~G(urvC[w e>i3;m,j矿DhGW#cxDjAh>}G t凯Z-y|z$}_?㕦?"Z+jAAB0Tłjhj>ȺJ ~:-KB$ y߱Ir7.p"y9m6yIQWKHҢZK$!4/"S-ʃ 2`9yd{, *1ÅMNv1 M:_vIrCF~w_{r (t/+:̹Ҝ_sx@Jp)6sHHST>ÅzDJ)[\-WęYE;,kz72")f =75\m 612П:T9~7@'l>4=ŌJx%9x{N<6iLGIBE[+  d5d>!f[w {-VeۃֈS ?JF$/;y͛+Ǒ7H"iLЦk =݉<ӷ;dP dv#BL139/O$!:Mꌱu 38Ub1`)f hi*X%&5^Hnv-1w֌C&}w$StTZ,O{TQ!u0P*|bRMUSr8Mi;q݄Xmr=sdIdb9/ZD6e`e<>YHp]ϠRF?~qD˄bLu-F!!r:hg{nd1MP<SR!A 4/1͔S cMC g%4m|&S(bmY:dQekoH HpD2'ZYVT}伯Yfmh-nlV3q$7? (pΑ')H[Oj"!&KmDk=C99!L뉉(IءGa{XӬi\bVps7c0ĺa>_65I#CK~}j"+Yox}yi 2]F,ރ󁶭a%boG2v ց'=JH".b ؞PouMbBY7U 7$F3gb -+<`AY 59t " f&*c:0:KfDIi齛6R`eDz@%?J@bpl0H= łE ;FJZb@i(8BHHDxfjLH8v]w%u,(yGu'ГK2d$$,"Bͯ1 ~b &Cs#,Kʛ%A(0QI "A ×O` o48Gv3NCnr2nd %\7췯Tip==LzбOmquM+|p~/M_[XAy~E -9Ta&x^'^O/ѫw<-r 7Y͖MNsYxdX-"YV f4yy"[RGR`4b2E%ٟZn$I4_c{ayR*Y0DA>>;Ӂ~fƇK3M[85թ'`}{K\28K?Z\7tO87̋ ʤ}qni#_+C>71C$9O 3É{Xa](raOCp4c4*S# zwvU11RnyR|9FHVIuI$!+JùF=un;0D3c%5ϯ#UY6,KD{4C8r"xȄA%N*D.JH7Vya"%fJx&FUXg:I~OI?~#O\='%?1oj4Lliv.IюDe89V=tH nZK"Jq߇ZEY>"}}e<жS$1v'r\ӝ8qNPxٽbrNcۆ$R{LZ<L OR!ѣK5$)j ,]XO@"%GT6mGER95a$iS{dב!_45V8"͙\Bc$39QLCZHO #I8q &xbp=Fɀ '{ E YNh݀AQ)3mΈ!L!y^Gi ҌdxM|@Dij<=JOoJ#.N|ԤZ#@=HjqQi@zBfqq & (bHFK.7AAIEf 《S^ Lx`Jy ^V@n.N lFfY =!I+FpT"D "$J(8 J t,h &Ib`CH7F&_޳cF?6rsa<ț BOЁ:3 wlf :]b6'k)#vDaЦP/V^GDyC՚Xxw<|ܱ#ČB rZ z,i9;vY.GʾQ N_v\K-mSSC󄓞ydR˄v2RͯٝNĐj! M{Bj,ϯ޼Gj3<+tKhʐej@ۍTr`{h z.~ u=ւtyxxXzY,/BͼH陛;Nݑu чc{MH4:\7՝ngO//߅H9ddlZ1e91|tb)jyĨP,pn$ (sN0FÑS>/P2!pBLHW9PGq"b3;wiNc[vS%N5Xa{z⛻5vic s8Iƀ^[CGZ};rwWǛ%CT9o`ێ^i=HD)vฺې/^ ʊƁjY;X8wO:F[?~A]Bvbf_ocnnhSCfTlp@ϗQv=Ѩjgnnh1r.xap 6/͎zݱ.h[Drk ~6ݽ'V Aӎq &<>>A2ә5_+e1+QǿoeDYb@*ؔXo6ђMX. vbUVKA(1/W M;Q.W-o55#on1 ]Gƶdy1PMÙ &њ4}S}&Fh6)1x|QDZxzxÛ e ksʐ%z 5_vVNv6ohOTaHF#U`3+۬߾ϸ#KַN}'*AMBD'{lY'Htb~"q) rUQ숉"b2uKfWkO4HV 0bLB(P, 2(>oo]G)RpeBwk%&L$wD JM$k=\)"Dod/-:Krk|BOb5ifښ4#8t00v RBg|>_O?!d{4Z"Ӑ?T嚨ДCZ|aw0}OqxwLJKBߡwn~DRBfڑf)yZNUuC:˱]RDlLMT%s"p DAc%Г'H ."#AC$):; ;4 {G@-QL'P|ԴS{@$0dGfz=tqd2Xކ@@oaGlJiP*5/)!'H1c}PG`&#r*@ 6e#˄1we 8g iF"FR^nH(!LKm =$="E :4yp%IDZOb)%S^i$jRD+C>+3QA=Z y˱0tgǨO6a[B+)T&#-]ùHdsV{H'6(8[,R+Kp$%e3 /tU-rⰳ1p8x3yQv f^gVheE9c/=+}Vz!A6tz̺xJo臎=@D\98*6 7_/aP7v$ *C,>0?Hb#-c0$T)u(D@fx!dM>ttW~蹢'(_Jdj-Yl >|댦0t> b1X0,8|<ݿ"?Yܮm ~5)Qd|x ~<e~ēDeHup:{Cnt8t87yLU'nT<<<vS2U+dteHpZG{ْ.f̋nOVd:$WW$D_Y6p掗ϟn?)JKb9NxأF HVN֞YfdiNbR;U91!a:HcBxŤ9Rfi6T&4#Mו[Zh D`YA3tT& Kl_~`~$K4 ߖtan﩮WLIFhkno3+n!z~*+Yn=UR+l8juIƑLΓ4 oi',A(R)/Bz8KkCn@:[2P;f} ϯ;n#)+ܐ"eAQez﹝k45 F;RMl(IzE勺:r֣'U!5e6'Iut5)@$QЋ{M7o|jD[K#aIaE&؍#X1ڐ (Fc1&F$*84wz:1<¢*iǩ)3\KrAƤ >q <<}S +64݁'PsU.:{mr˂К̩'RGT&[AQ-"@tFUBc\88f3 ZNQ$Bȹ>y^zGP9Tdڏ4BRcbhpn$F 5*NՌCSu-Y1Ix?_"0 ~dfaߣ\7;=M*i$¼c hں=2I&Ww8`yuuuzf{:12/ C;-CD  /ȍ=1L #MM̻M K3f;D\Y,VRc۞b1c8xJ =u9v{@@7_Ucd{D(Et*io1|yg>5JLhir:yT%yA8{Ҟ: ?=뾥d8UB1%@&Q\rX!Ld@˳w”.IߘWF^09Gu#0ˆ@hߡRc_+!FƮ'_gi4/Bӷgnް?ilG,ܷHr% 0`{O$Jimב9v~OQu]1mrj xݒ)94%3ں{S%8"&`ZS-gROCTX_arT ( UJzvO'Ƭ("ō0M ZJK:_sfW$qZfj8+?=?#_8=o޽CrjZ WBՌocJ]pHYdQ*ڔ֑ F8^<|st;M;FfO7$Ed9H/ [RmB\3yEӝOIBtM 24T#Yj}`hZBMi~ >NƱא1 eXuB3%^)?8 :KT$RQf%G7GN~* ьCGB "Ћp$H3&UmHlr=PZ1# =lZU (20D Iui$o<˹`- Βf ( yE5015C s֧vZ"YAVTx7ܔv_q!&sӐh$)erxݒsLw!4- Dz3r HH */0yE$ϱ1:GrIRΧIp\a9b.L1#6-#<ߓrUqbӖ2 O;^e!ef)%NBX(&0S'I&fRd:!7q#EG)eD=FN>DU2k$Z|ߓ]`ESȔ' Tc Q Dizr#o`I?)~u$>n0qHe$h`I R#Ănb+jh=~ <cjs<S10 P *5:o醚~;"G f$r⌙4C*0*K:lX1!bt`vEO c Ӟ@Gbc yfn2D+HGŐβ4uF4/Os^%6O,|hy֖s^TV]̻"2zFf#OMN+[TIfO$fxrDWstѴ[2-m$v7hrMď#Ղ=`>y)]GDcS"Dd RN :~D"?0r=qƘэ)//;F7\pF!5Ofdy/Nmz42{<UykBӍ ">#%IRW9Ԓܰ^Pf=ԔQ,7R9e;y*/zә~mO/l[{}?j}P\NS4t]#KV[\3OzͿ7LRgh(24]<戌`sA ///glXʰYXsOSaLN}OQm.j IQV0ϦQ > ̫~v$-&8'*`f3dM-H*ahGb0Ќ#I^Ҝcc a k T$%f4@vh),I0 ]k/4Q㾦=75S|&DW28t'ܓ_||{]KQ*ѱZ=9_Zrk}xQ"PfT+m(ˌ9*8҄1I8U0puSqnBs1TUMUud:A-, e=Tc$INjC~&)S&&Hh56Dh@m':r ɂrf$yhǞ"cs0U%1 6ǿF$!rzbQ@M# y,sFd9a4Oi(Ʊ&ҌS,򔛋-CLbR5|:QD۝!`tFb j0O=^D?41Y%:|i" m}ى(J!㧏<3v#bA\𜇆Q EId0 $nd^ͪnURD:t\mVi Hi3df~8=eWYtIk"YJ.%Nhp@6ĀRRہt9P,%7NimwFif azHY!ά5gNR8Q1Fc4mcMNBRѲinZuKմE {,m⊠s71xyFЬ%֬匛rnz&m:A%.ぶ ̔iFj n\\nIp@piDdɖ\qq8sW ooxsM "/PRu_y7hi QJchײ'RCߪskfE0HiN y(0I,WR"_-jBJb6X3W:W+ ~tʝ͉1ׁy9 )H!W^Yg9yڠe !EuFIɓb,Fk4|6k2eh)J9mbFLbC$s4M<3;Nc7ӹWnI1$U|}\mޠ~5&,+nonQ41Lh[?34 }?~/]Us$͹=QK'Ms@+v\k)s}çOwoXsmrsNO?lW nvyŚˋ01nCՎ?X Rܰ,Y$7ח( nIAjbfsuth"M٬s(!FynZ\qF_kbFI|VTo*bV-ы`fڞ4 0Q(3B'm1Y8%HmOn\,wD9v!8v4>WK# 4H'8kkY#ۛKbj8 SԨ:FkYo7?L͌`"R,*Kgvh-IHM״h-MMӞcC]MR&*??eHj۬6y>Z_;>EHrijb#lOt\TFhLmT"tNЇE\?vsu? %1[ 5Q ^*"$L#:FI7-B}E5.QI 1(%Ƀ5D`91&GOb=kffT%6 $`g@HePiε`GJ:HsԫZGnr$_6ibR6i۞,~IsvS\l 7*eĤ9Cм4 B: _*⚟Ntm?O^՛+L6gڱ'-rY-Ӂ$iN0YA(no6|kXk jIwޣ 'r YOミVໆ/* M-!R_>}`%$AkGax>0V3*6DF܈ۯX+||B٢kǎ,(n$YbQW5bf]%a(|DW;T Rt 4Ykۡ?y`r Aێ.ߒ:DH!z mhMK1RxLf[ mCUogaISkoV7o:PuY zO.ѐfӶge\;3c{$3\J(H(jK49j%Yi(RIT ? 6WŒD e>FiÉw [n=s얫%dYuQ¨"[̶hgsIhǑz#rbVZh=@+(RLi18lbD`=Яd86gN];Nh$2Dv¾jfլ">XiBFH75-R 뀽/\H ڞf5?'1)#yRH'^>=d}X^/ :VGHڱk$"OuEp8zG}x#pyM;Rx7JA۞h{T{fXIbpSXѵ2c]3Łw<;r1:_q+ 3_LyP:Ͳ10A[JE*LP jWhoDH rf6&bSxƘ#PRVǿ@*zIu0ʱ+2{+~ qgYFuLnC3%9|X?1nD =y&Wֆ~ 8'٤t]71C!A0Z_~`&bX%׻aFt?0˾f 曯6)7w\_nsE÷KlpX=GuC;Tܽp>lٟ-Ol.ڊ/džfzQ`t~LLL⚮Fk7x|Ӵs$BEq d  ͩ4#sѾ'J}OQe* E3D1FáLJuTCO&"?,˜S-M 2~C}FvQr89'uYaBdڠ@I3rX@B;B3s4CHz` 4A+6:gÉ5/D雁|IZ%ZG,QIW;V7;:;rxxFQ 'Ha߀Tč~#%,ˌ lP#H-͉$&1_a APT @z"F <&K_"2kply3 O DEKD(=Ob$xT@.FO2%3R鹞a߶P.ɍ^`6j!l ڤs8_5ӽX*cQa&VsؾoQ0x暙mPD?4HT)}Ф)F1[^ejLGHM站 CU H4lv_?[zG}Xֹrӆp"ϝ~*o{VpzE&XoVDHE rsത7,9?YPq|Qfה8DSi6ӿYf>mpV+X3[y`懻Q"ps};Jcۉuq=v%9>#7i:E&[<=+[>?k~{Dz`~"D!^YsDcuI*-ܬxbsG.>|:p1P-޿bCUsMةHS3SPdRa>p{pz<|f{ITb^7B'$*{h:Xpu+$!"-֓Gn9H ODe USZ-qM*9=bU"'[8q-^$"cgthI&E"H&x{UhޑoDBw#Þ{xfdм||",Yݼ,Ufon9?Xr#ܰ*uMtm5om(R#Xm&`GXkr呾JJ _xGg'2EgXJrPr슰0qav &X ;sҵ-I^+' k']8-ApB쉤(߿/tH$?s($͒(??J đRG'[X.CcDYIRRy0Y&aE]b4g FӞ}j7$ΈB+b$:49dH4ؓ3:&l%c۳L%>LrF?Z\ LD5{~Fl؉yAapۚ!qF.aS1!MS0K>' @wsw >< IlVHxNSu;MX,GXde .Bw,m!0Ì#sW܆L4bׯ 'jпl#@f8Q"2qx5x}M5}Ӽ&g64M rutG*ɾ:sjRmBe iOݶ,%bIZ , )ٯ0I:WidYs>[P!R2L[% O 1W~Maө_X>-eN, "#{{Kt9-RD|IUжl my{}GzGhxBv /|oZ& GwpS$O/9N\^\r|f{tlp&9he( > :9,-J͚):ӹaZatuá>Ն93Y:=LA 0& jO^qHErMV6g.m R̯72 RSD橴g$FKn4Yc=W.!RLbPJyA$^ 8!z)Zi`Y5O7 X7d4R1M rL2ibi肈CITv5c4!P(3쨈2A+5QD3XHV(J"w;tɩyhAnQ!%e ެ)X$)Wp- Dy2R=Q V\lwiG!`.p}! XqdtVV"A+[B"Yז7lRC}:c-w״\,VHJ]Ұyarv2;L}C'&4Գ2m:M7m^\)1)E&鉬LC/_s468~?OoTdۂB;r0q&>u5]^À"` *~M/jEn<]۲̑<9S[/iFdFx>-ϛZ-ٮR3b@ᆭiZ>|L(aޠ#IJ Gl$ED ȹje\-HTʺ\'a`Xvڞs7P߂XH-S{Ff f54ÜrCYة#L|A"%z09oZc _,g{y)YC6<|d 2,/1YsY:;1EN2Ͱx17 Ca#Ǧ',톛;2"@IEI?q@{K{cE,Dc;W5z×O{&Uɩ1JPn _x󻯹yY|Ź JMβ\cҒ9&^N킾 _2IDATk8|:o: T7_" EY$9_mys5olE.e}$@XKG;fLrYmXvb8:Fp89⒜s]6[(QP3nv\.V0NxPlpuG%+Kv>U bwX/vtU`z vt:aEfط-d1-YGI!RQq}yK zHIHQ*asyA?t^"viC ՚EQ!Ldo$EANIJcHXDp2r 7 $`'KT}MqE/:ϻdotC&$w=n{-qޣj& S7\ܼEkCQ.yhC|~" h@g%rjMVOUU|zN8/7P%o߾i14MxO@#H-Z#xGgioI¤S)t +*H$ ʢ@G }HY %{4CKM3 TGJ(2#yEfnpuZ[\Mf#\m/B"e9%X!>@UU8΢_/D(KҢ@],ϛ>u(خ6,fJ 0'^0~6mQa$݆Fe"3nɒ1auL)ETs'Ar;-}$:PɊJJ1x,J8Ҽ9<{zݖ,-0:'NMǷ#*I[Yr& E*S\n6xeun?Y5#6w8g=p~1_͂9 _b>B hDJJܫ*ș̚bl %_`( niBg_Ѷ=}s> q>85)4"d\ba$\l6$eB MS:g-|}FiT(XfNX //$ht2+_B4E+bZ: {[ hf4*˸|?^۷d,::b}`Y5L#b;t|̛ n oXd)wQ1J$eW鼼 (lzupBӵ+UCKyG)˜g,չ"؉2Q|_? <*22)B9(5EUA"<h7:?x?|`Zd˷wWdewc.( evv`\p{ÎE#WKa8GҤYr$s@& ieo<+KT{s<&"v+a" by0`;W (Iv >p򖇇'c nmX}uG ;2oyCՍG6;aO7'EEtq0À?sZI8?0b٬b"95˕9ILFi@ uǏ#R@X$+W(vǁ4Od #%C)J|giA5f)4&J Uհ+Đka-rfx]>x #K߽c:34lNm֗u8[RqU&} S鄶qG/T=Bzt,!FEmO&'V%p?5-FM +1HplylM4,7gNxrSr,Դ?>⋌|eOX/1DќZ5`8[g|uwM2꺥jf%5ئ%~E#MLAlysӁby8]P7,+k-"t#҄Y%g8=?ibŞ2Mn$8OYdEAshȡ>K{EIҵ I*姿 FK]c|qn. 1bNH$Q `gzrqӧ/y_>3SMaN@L'Rdd AAlxMp);THԆLIQR AyI1X &(d't߰\,n^b:oqH䈴pɳ$7ԧ2 jMs<ҌaJӏ#>xR|.Ԋ"ȗ)aDsMӷ.dv'BR'9_>?xOtQiۛTh??aۚruG۴Xf&Lo:/{֋?-UsF&\xK&E 9ÿ[5.סs7Rj,ί^!}#F++^̖scͦy\Bɹ%^Zv=!ΧvRwYtfP,KN4P ( g~d':q8O_*mqq[7<\^%-2ڮp:PsIbM/OcG}[!R\9O<=sycYYnA2 _>|(0Y.ݎ9GT3U=S;; HmI;RB /$iBvKɴA+9{GL ^<6&awpWJR,m =7"t JSQJ1 &PUdyNh+lkLJfˏ[pzn߿e~A@đE]ą$K 3jhx fNuq hCpLBgЍ@OE $a mIB8;ܐlV U<r0 mǹ=HR}7_X:]ì2t1e-E&D eHŜ D6RS> 8J2XQFt2:b6 :: z DPPBvcSI,I@)Agxl 3$o f%#u]H|Gn`r~'bң CtePx$zo%1$ذ\}GQm`%QqFT.~$0رfu߲2:2`H0>%3xhVk"'I;̘CE^V9<߰~eq!mҧ~a(_*I]Oy%M y*Azlt8`ذ[j"q _hU`ӯM;gֈςIv)"/<|svtgtˈc-B"Sɧ#Rg(ot`ٰ(?[RmRәFÿC~k'btٮJt ]L𷟹Xy×G~ycPlV#( {{>Ў_HywIt..$ tۛh<}$ݎ?%JD!EN e4ik{~szKIyB(c0<&tAhT,Rs?-#S{fw{剠$J m(#}0H nBv7_#$O);N$,l9_vb-nS k|Ul[ҲVt_m/WoϨ`X%pF#~B B2;"?er_]⼣',eCF5U}Fk@z-cߑkE/JӉ%sR)I7_XnsUD#r9Z-2D2AgqPIXp8p&,#źq^X5GrE(57b>lvn[/*k~7z l45Z+nL,-1(-@$#KRRa~x;NWki:oY޺ MNvaFe$JCMr[KX_̋#",wؔJb #M}d^cf_`-:30s9-DZ3[Jl OeA  YNuB | `Lv Ir; A-m"QF\l+I2&4I~~Jz 57/1d-PY)Ϗ{M'7Q(3/{͇UXkX5_]PJ@;,T/ (_+1@jC|:DiR!Hu\_߲W(nhd(965T0'6 ?3 |?ٹ>B9$D?c~ zK]ׯ9|$o,kg4d5Y)&Ju8V%?"&2_N '5oy~~@H)2HҊ`LbȒ/ǖY.3#y<hźCE*O3|5̗/ϬV+ ɋ;ˌ|uQ\һ%XKU'ъsבm.8vn//85Rq||`Sh넡UTHWtmJEbEr `hUqlO]`,ap#Z+KwHir AY<4딴0gR)ӈfTԽJԫ,Zi=t{a słyW1A3R+&ݔeTf^GAHZ"k#Ѥ%.KJM40ۢdr#b^&*3ar&_ @Z] Ji!i1Yб,3ڡcZ Ev\.{lX2 ZIt"`/{^BKv4x8T@Ʉ<盓3qBLjM)_Sa}Hxޣ$ 8b 5YB@E1bDHpa 8 2!,I1!xI &gF!|Q"ȍ#V̓N(<3)rY̲PC5;%[)y>>#%8rl'P"U|8 uIS0P)бJ&nBK:sKfdI 1H~׼z&,=G?a2kW+g̟h{(m ueNYINݙqzIbοvŧ݋Ɗ t,U1O_;U'FQ=+EBDe\)"oLȝHx)雉9 W&9~^=!#N&P b~yƨ[/Gb|s:['ۤDe+-'nF2U [t2˯Vn9+&_Њqri`S'=<=㇁rфqr"vs_2;Բ&v兦O-za깽ܑ(O^~ETDB`uf<,r Sho)kW9 H}Ct=.||;i0 5:7/Ձi Mrۑbvgsssᙢ(R{s`Չjù!trlGrpFW&bbbMwdd=i\¹l+*[Q1eAuWOpĺ+@/=k ǧgqϢLJq*!j'$" MC/F8YHď'IQ(_&~r,8Dr<ku'cp\0=H_638IH9FBnx~x$)A$ˌT5'Jz]VaFVF .J^NgВv˧j狌i)WZ ~dMM(IB&lLu:YZ*q33l˞>ÄHJG'ՂmgQ m@e\q#X9mے&)Zj%KgXx !H@Kœ%/UV&:YeV0J2WXiiGf Ќ=cLI*c:`i,z )Xe9ENx;q$ILS{ED8vqrBszku1grQ0%Mh R"xHHP^A-&TIJ'q,"EI>sNhFŧ}5Ñ8y8A~*#_\J;ʢD&'V-Q(8tc||cQU5]=lnJr% Tl2ǁ( P#D6Fg/ǹ(3J%MD_Ƙ,|>x1%Jk\7'f̜Rl0nn& !L8;2,<~/VW&-fvƠXgfg}CXrkG%)S6$INki/34K%y᫫`pqݪ Ղ#S<ϼ1 ?OݍlwOC]o25JD\phzDtc5q Ն 4/-/YCa %A,gv$c;Gh?ji@r NM4Az%)2)rIw> B`zbL4arءS=ݮO#, جZџj͊܁uّb1*[i 0Y"U09JyJbm&IP&eA<\_H>ơ2 ˟BJ0۷oy􀳒ݰ\FLiӑqPRtCO$h\\G+} l`j{ơeD"op69tCUC@1:p0-<3E} pJ&[xI^j?!PrM;MtMʀBkE4Z@vf1H1>dvCiA36FNҐ&I.vH$8,Q "z\X;2M=G4hk? (?7"4h`!2(|B̡JB[3_xnB*MAؙ+* 1qrH0og2dIN*0r9€TG2_RDb:8"YJ AZi3O)TW ~N\@h~>kB#(gcp=ޏs/<+-Q;q_00Q ,7L2⥱0dh(P2!wd 77x,68ņ/sx rӽXq?~!( -ϭNaŒNGOi@t4劘^!ڊɆ}!r0A'E"/D^!M/ 6w\Co9-FjQ)H-1Lam R{?+V 3ތ<5&\]ᕞUijcj~??SO. eu!؞<66O$+-[]]Btm/ϼ<3a-xBĮ%Y"Ѝn@K$a``nV Mж WW(͎xVsSGOtڟSX(3Ն; oKȋ5[F!{ۉraj KRhf>(o6Ebr⑔ UP=MgrF=~oZ^^hD30жÛdܱXTm<4"CT(rCYV)I軎>q8Yn#0tG^$I96gcaRfdUәv'$0y:ɉ)2 -w+֋5ݱ&Cql:dj/hqLҀ:eɬ2zAoX! VD95\_a;޾yђ%rGfHiJpXP*j'-R2վՊw_kV o\ fjlӲsvIB<)q^x|D*(J][r-R*ƩC1 MpzD:l$ iN=+87-כ+Rr4&dӹeo3W<В&M9no![4 eVx^h}Lh}O_Uh1tL!/7$#D(d:(Be1)ڦAHA()O>q*y#*s!Slu,IRG\.IF0LXc)vp֒y\i,SB` cD?\,WhPOk2^ZBjR^=?Bj4ldyrf{HA.5)} &tp&3dZm(VD<= "Q(n=2hG[}g9?Ut݄c~3bf 0:#O3#tꂫݖբ@Ixڟq^&n<<<\Xm&n`Gx><Ѵ'.v+x8`GsL@c|}X. HIZl01o%u;MEÀ"e=v=zfuR`4bb#gsu9hi)%q ):pnȔrb$xO|jR랮:ui*Ϩ9 9y7㄄9ԑd#rɹط=N'$GxGlkয়?r:58MvyrT2tzVhn7OG׸>|o,I"EJC :s#sLhNHIh:Ftwd& ;M;Į0MIYC$Kq0Jb'Ʊ'I%2 €L&e=Ay <:NIe AHDU~WWo٦K4 LbFf u;fhIHR$RDI'ʬ$5 d@#aY17&AJRG%`, ٙhH QJ<%K4IDYk$5CRHEHINBD-_QjlZ+|tyߺaf{qgfF 4`A4t} ̵xG?O%3Έts8,D~^FVy>0=0V` bQ$dQ1ʔC`$&piLcǡ^CTeNw,'eQ#F-tM)K!ཤH$74$t \v{{ӂhm!K>bGmFDӒk><lj~ZӋe+=C //Mˋwؠ82nk(u m۲,e'N/G'w_MSw$%kN zd!:|(QZvŊX$rN_h~LQn)b⋂ݛmͲL9?ULijg&$bdea+B}|?16„Zg vK6 VՉftgW\7믟N7fh 7oV;^s>\{֫K,Xd?>=rySCx:x;rɻ;Ù\9*$q瞇doQdHJQłBjt3jLrssc9>}%H$v|~~!.ɖ+N#Mݰ(Wkqv"_X^nqX?l3#Fgt,N1IE%!XFI0=]]3T5I't ewWGI4 $dlQ~Ha$~lG|ײ(P@|BQO-?8D ABM  Jo{ )kjṋDP,reطi$MKPͲ}{M=3sΜp3FW#B$,cq lIPT)cK&Q(I;}=]==]5O{߯d-Ek>A)Ws8R,"<x5c20R)u^+))S]V@]ָ͑j͈e6 c/~}F"_n7q6esbI}Q- 4y/zD1qLB2+ 5}¤MՊ+zOw.9nvG2eHк@/ToV)B &؏=^A8PHƒX %AU/gw0IjF\\^S?'bs14PRw0P%iVnQJST3@#X]!w`,b+;Ϟ~ [;lhPApz>!ɒ"Ye^`r(^|uU"C͡Gxj6G:A:_әjIF?LahjƓ4,K1v 34AHV*$)*JgHqOs("Msl{NʊIk(s;?ʊ͆q,U侍w=,@)/(x/3:=?h"(i0fbݒHMsvK{:⧉DJT)C X|xdxBDLeXd:=MY9ιI'M-Zk$yϼutY^~INFC ?O#,rxߓe9dFG\_bJC{(JY,/Q)x 3v!z,%H9ZȱvK"Bk~_ë+i|!.j$=GhϭEJH"c^Wfd6cfUȚ$M;% ֑itΞCB@wLÈ׬ƴ$EN^0xԙ;=Jؿ'rT]2XkD2OG; 68Ute52ȫv#z@ ^):g %R% 觘;\0Qi~w-^p5\]^92ͩ^S/r&7X.ȳqѴ zq{1ixVENQC3eY$ u]s^`Pz80N e68fZrY.oZ2M5RG<2͑iNe_Ǻ^) BQstjl0|f!W ݎPY`hP%ZL1B@"q΢č=,8É.$]f&w{n@(,DWZ9ם{f*IJqb +i'=0@13Zu\&,V TecDW)vPB`Hz6Sޒ5Cq[]n:xWiCtA *( AId8űB'tx\" 6`*a"_8M,C3+K ~ nt΃HS,e2 H k=Rj 8dΕD}D0c;ƠzCZd|HTfypO%:(JG2n1*f+toߐ2XC1O=}?`Vd,x@9q KKَfbuaUA{ ˒o.9wؒ$Mg3h;>I kN;V0 i&}G 9x5YbrM: eΡitu[7a"n͛caw,3HБ5I۰c ɐm7W%[>bt'AU#]eL$idi K^B(ōa1ZVlcK.5ϹTWzض@s@Fxxsid_81sA!83u eγLJ"08+w'Q)O?xiOdm\guu\yR've&O&ORbQScApwͳ A8,glvt/aQtSg 拄kR5$*="X6(g3޼$26O=cҍ=:]߳|mz Sb%rNw8R)ċw?[)*K)Ri((㺞@ӵ,xz$٬;б&֫Et4OpĎY!2e:2F4Z+i9~*QĒD Gc93} 0tgtʀ::D ]'Bk2R<ƺD.͠Fz?A(!B8r%:A ߻33̲ͫ{&/蟡TJ1urFj o˪mOy,]s"I-IJ7 㞯s`Mc2iܬN24D"F0t^#^Ft{N;BH$~8G~ RxzjFP  E!)ZeX"tI!N3<j IP?2NG~בdב1fiӔhgfe$$7$5X7)hֿWrwr&Ղ4a[J -(9żœ'|Dfa;@w]ǹ9F#efI:`:lؽݱX|탊fVzYHaX-?l̽E\UMloi4V&$o܎mwǿ.dk5TUTՂeU|H^?G:!j4e)HeW'Eݐommχ:rɛ{fl(lIL U٦cZXҬD9t 3G4W3V|vÛw=.*%ڲ%On.Y$,n3@z6Émڋd"͈@9v6{A ٝ Nhΐ2}0ٝF!4u=#4_&YY˧HLIFZX^]XƒE$'). v[82](pn{KY~1Z 'ML%:bfHf'~ӏ ' "` "`A&J E R%E&3)$cp r:& BI8E俉|6IEPr6 I p00 E&s%SIDO8l|<(#PY+Fkhi2Ae'OWbe]&#U]$JR%mw9[zFЇ $HR)g}FP&)߽8$7VcTfQXWTȺbƮb`^X fsTw=UFvEUU>jM"{؊:%m}ջ~m"r~1*bI  KR$TNIb 4MLm;40ىc `z\g?\\`{:D,'ˊ4M79E?!S yv_y׊{B?cٳ޻6T8`D5+Y.t}w>DgEQbpatpGf^sy97\^صӁj1a-S[W$7Oo0g/x`ZS߾d3↋=|L/^YBkՌW|!0'>xv7uL+T̫XT1y }9?{6=A' |򔻇#v$:c4^4|+fy= 7o9l %*M 4/*ΐ+tăR = TeeV%\34dJrR1DtFPH4rT4i\o~S^bH0 8=#ka?EQKa*r;b 2HrOc|pu: pf}s=~$;Ѽ#t tIg%yQѷ~G@Y3nޚ(%$ 8tHC[lbm@BEEDIpĤ${o xBExNp2H-pȦ_ߎnǁBdI"4PD1+ -4RM#7Lg]UD+GM8; u#/!B#ɼ4ƾ9C}:& |7>=H" q8GQ*# ^LT"05-E6*Cʒ_ o@ iE98bIڣdiig?Y,d$Z?Qg%HIJLHh[2~94) ɦQkqTQIl6..ӹ Ўa\VoQ2F%,-~e3zlOKH-r|㆑)hnOib󰥨*5WYr_Q>fO߾C`QR_!ry|00r[Q.Nɂ$-hN S{WN;{.k=3:eyQ-'N=w6L@k(׿rz =D|VsInC(b(N8NYI("GQpJJ 3ҍ\SL ʪfwl>FKP%m/}d|zC}l@Émn4P-47_k?4Փk6/PTKfe L,+\Q@ &sϟ2zuƺ*p]K]˱8$'7Xxk8!Eo)Yl;4rysGvo H#0,wY; #^& `a<ɒWy|P{EX#w'0\.Y,2ӎ<բ oUkbĽy;<0=Kh&)yu4#I eMN a$լ⢞a 9ʺ ތ\.7 wJgSߡ$8;FzyFVc3 4p||޼}& URsz;)<\2er ($SYQ$ٜy># @ ÈցnO$xj\>">cW+.? [g$Y)qy-eJ4CtmK?oijf J"#hچv{(2NiHhĚ 34 D#W:/=7ŶMJX%> (37tSJ2TQa+%YIӊ:mZơYag@gDۜȴIEXӘm;C7 ~Gc;_)ۿOQYP)l^@aev㖢Y%$;iOXdYT'yvù_tJ?ZLU5ۼdG>QdwuDZps}v8v{K{w"UdXةguF3.\E1g?0Œb8<$:ŋA ǿ!0N` Ńsi TybEMd: IZxxvQzfYsp'|秶ǎi9YB&f>Cz3RzUTJ5jgi`c5?gſM=tg yw-4 )6,MwaăTyP<{N41iJY4?sq_`!ܝ+q6NCz(Iבc=*IC`z6 m{"OY*ib?hm$ ~>>_,/HNq/@3܊4o٤.Υ31B}9"Ti `QW7F1M`ǑUZPMP)^kYBHs 41Y p N*yryI=v\ġ, ՜vmZ' "(#(@@Ai~T%_q17|u4툴u}It7@*Sx,w;rlzy=.V 6<1ó@Ӷ9;mYO_tYQ*&qlEw+%eώ(?c0-c?W&S?yxo<ǘ(B/A-™!W7;er:no7YGMAZe0}L}|lt0_,IdYIlM nyf:kK?ߋoEQ}bLtfw}E' vv;ڶ[q hC,q=Ol۞j1pؓj"l6{V}ӱ0Ӊהy{fvt<>68',GH_ĺg (q' ʪƹλ[޼tSon16 qH@(Pr[u-0ri۞ ocvd5_!y5BzNC˫o~# yuI)/q&pxaaװߟclGN5$^%q֡» cFq OYGd߳&hHƹ8,*IE'C? ;4gy膁o'buEP WWdvq-"|31l7`'G& 9nil6G͛_WQ^dsI7%p³9lXTc'fӑa\f:MXLvba&z&OǖX&?7?bqӱa&֗En??WBRVs&7"%09Tc w$e׷HD4I0ӄ..]L> ll+WL̈́DDCC"HA\x)$5^)"`=_l70$IɠB pIJ3.N<gJD Fƹ/M 7AXg6M:L Pj%V8L2f$ZAZa2$RbŊ8i̳LbrLu$B"hHLS\BR!d2hqXp\& (2t(pμ=MyA  cǩ"dl Ney*PFE<J%*.D$(c]\le;pfˀiR)DҒֳVzs-f4́J)g .?iGyItrN9f W9}yx"KR\&\yxEU0~5$&*)j"9R*#Eu霠Zf3p}Ǔ%om |6nWfC? (yblzNA`E;tf5qUgtxHï~\.x P*- 28t&v#y./X=/)Ōîc24B9ݖL9d5H躁{\2ˬӇaJZԴgfKV/ig~Ū ~{dk3ɘl>v-O)hr1#U~4ѱy{Ϫ+A&aj<Сr=C 26х[ƮG#fVUGKo^1T#07SO a}F!dqT:iȃ:6f|ܠHQy8L,f3bƑ|0MdF&Gt'I1e$Jz/$_^$ؐ*bdQKIP~2,KR4}l`'OJ{%g/ټ&ʫ9-- u_+|ͫo _~rN ҋߞ|Y=_`w䡡s3Q3 3pD'ibF^H7ಌM&b02׿D<L3cs"I%k<J SCV8roX,*@TFמHgmɤ,yaD841*ѝ b^<[3L-c,1},J,sZFg258kIw>rQ{K!u='*NMƠ|Ѳ޲eId6YMNU5ruIHRDU04G7k LJ|0 Ļ3BH1~ylqNw2hq?~!) ,G~[,2z}>ƈ cGrno'\qy}w?br-2I*@20 i¹z}7o_3x*n.o?4T*:`9q2Ϟ4mϮ3>&B==^ Ōnhsjʜt,'s>2_嫷g cR=Yњ Iyj"h Z& ie#֐:<)}?!&9Բk[ $:M|N^d|}ˇOvb֧e{<ʖ|?{@S$84xg~Fs0ticFf*)Ƒ<`h{N}Vp /gi^G@[`H۶aHVkE0 LCl4LvLƃ"%RBL82H,el&REU2y=qawEF 68JyTqr9q"j8T(pR1 džEsvREȪs:n 66hGV{q@dxk1( 6=aBj{} U}qj"f\,[8!BBd{/QH"VZw#HDgxJ!U䆉so+@O8/VLq:$y/dcCˆ:OzI?gwـ]NBg/,:ɓ<LZPfɵg񔪧2ʬ9=يn"NeP|[|ź\P,8; i.re "Hv-YToZZ=W'4ي!xNx´!sDHU/iW>u" /َt>⪤=xo'Ha'T6ь`BqL؞=eẘzC!$<%.y/sB͈Iy.f"Sm2ENW;pd7Dtْ)Û5c=|s|EyoϑbS ^l0*M,#~pzyg/ɲż$O=̑E(dF~D,KuɛԊE:†<~JĭXsԞ`xswO!=C7 H9kDHx}kԟ#5G)"OIl@@WiʫWLOgiߥ ?xFY0u r1lIC'_GkI6mgaeLbqLd\^0]G/9z|VrV#W5io|iƑ͚(<7G//*NRha@]W͞$SH?\. R 9pDfgLL#O|}ˇ/>bw'Sjܒo$Gq嘦)QSIwZ1@1i4T)YL0 GZŦÛ4;4m[E1aZ6=8gL 2FF$hyCb_c~W^02N̲ Y:|N2AcTFtLS2*jzcXl{B~4XQӵ 4C,WKd(ʒ%H`V/>h) SԈ$xA%o=E^`> eUbey@KY6:7ޱsg~9'=7d2"/Ia08g+d^pzٜ A%} '*R99 4qv @dyY=wwmE} S03-΁w5K87eW+SGq4$>P LJч)S[NCKH"6FHF!+R%|z$"t<piIӞ?e#S۞`$g$I`&qn-:,@ qH0FwǞ \-R,;1at`ݲ,g8/XK޾C''הS/KW<['Gyqxܓ5)jt`~L%'ˤi8RDظQF4Tѕe2z'P9 4| F"$ BgU{88S}/vYrY?2/yǞժNCq2kw(qSto= Ƴs2MޕDV)*IQ؜~"]`udYFx8R{Iw.8qy|! N G*OOE< 9p!juۇ[̖K^yC3L%Ks:᳗}wk֋}afY!#3#OLc*x-BV\)F7zt/ud Ƣ݈P<9d?1_iGCnHNm6~d GsL"OJP/W=Y&E1+fݳ\/vpXg&

UB h  RZxL!A<FE,B }C| O)RjNBN@^Z|0=~j di!Gϙ+GF:)\a9 Ţ G&8to}5>$v7ח_͏g'8}.+VWsLh/ޓ$+e\|lJ3ͳ'Ic0֜]fPRJN'aDI %aUk'D%4 f~y"kPe={c|TA4B3,IH웆~%WŌ!Ra&f*!)&kދW;JIſsrKEC&FC rA h'|HMr",EHJӔ<ˑ: HI{\9:\B &g0ƾwh'Ic2.•21w?I.@߷$Zg(Er^~CQ$I g3>xzc;ST3#2^}3xC=vtB&%IU #dJp"gt/Ҁs n> %S?Y9GKE5"xNM{b;7 噂-a U#axO5UYRUQ3ĖR?N,3|㛟P*M3}3n %yrVS5EXW~0X.V+tH˄zCu$i*R(EBHRzKZ/-jyslH!iJxI5:Mp o cÈ"&:2+Љ"I5iPgN-)9 dڥl0UNG!6= }(rYƉcp2Ê@sY&2EgϞ/.y1:Y i).HwCja4y?=y ro;o}2HS1xE5 n2eߴ|:T\<w\* е'3)`1Ɍ UϠyv%I9#W$ GPƑ^WYR3kHC f\\/ky?eP s`Z&]Jo UL`t|l\Ph"x㧟3ZȘe7y)HAa, ]>Od1kYL݉vdͳ . Uᐪ'ђW8:&g cSz,^ә'Zx2 kP>A5X zV+A=zIsYr<Nk5e9^ƑaL%26c+bfr} obf]-(cdeXȊ9E:J, }{B"iؑ@"u0UԳ eI| ^ zIRl]0L>.vZ!4MKt3M=Rkj̪>21ĥm-NDd j,ˮ3oEA*ںK#HDfG~Ց[/'naWǹ{5߰]dD7HAxoo)B䦀x_t\mX,VyoLD+bbKfRI zxK72Q{NmzN"uѠ<A1my8ƀLJt4"bc`l2/KL)/sI!%ytst3(zm ӀVm^qU:  !%-;FgABURæ (_e *OݑS{Nm 6=aR a#v<1Gz112S1#8É)p9O8{2L1n-o->n;KZr5oh Qa઩ ɢ() \msUq,*n[}}˲luQcJd4JQ#Ç$|FRLW*\"ĴVw"DKA* ` B(.>2YP*GSV IJ!Jʼ 0h4#gjchD2YrdgU Bcj_ds.r3 =3"ҝ(BQ25TJF,J)j/:5!B?#]CP4eY#*L1y8;uU?\wwEF?/s2L-?nՊ*2kX\m6LpطLQe<vњha#/t=?~S1ZAYVt'/C?f4Y2mor@a8݀0NCytO?LW#:,4Xg%8J ,!T^Ьր3IJWd-`n<zV)S9@0rP7zVjM$Ng\t}!#YAVUCc,A?}$n'DU|>zрL/ph6ku7iC.tGHCQ8&rC\%F)ߑipHEC{h͢o_OMӝ[z")ѱ09yƁ̶̔OQ,SBHMwe"mmr,q> ~&Kp"(tL68 3e`g -b{nSmO3s#If@lrDl"Jiި 2KEF@.@4aeAtsjSR6ĂH"~VD P%A݋b&B2BRE(.5aF>ul$Hc*R}`E] ).ۤp9ĥ0٤i⢙% OWik8]!%ToAdyF?H1z\kPɽ#N%z E9|A -э }ݏ||ѵgdfe?Jぺpao)kǻ7 wx2^Sh 3x~xAĪ Śt}n~Yл? D1Ϟ`xV- t;FVMK?uHxV-:`9zAUp>̇\LAp<ʙЁuÀsWM&y~E&/8Qud=WB ?Q.V7wF\1nԢ7 -fͯ";4CVWo9^XSYg۔\-m?5 }L9&V/D/kadYY]Ӈٿ~jZi: Z3l;2-ӯMX`Ǚ(4jjE4J^^JkU?%$CB$COa&ӚFdTuZ?^T<=>2EkC)I7\.nhFѵm^ i`MǧPU%<EZ0hmP>{sH&qȶk5#R zAaPZ2ۙ~orә⚃МY, v-uQ׿ydZ.xj&S-%M(iω, ~sÁ\ohS t@1=M'2qEE. e$j Ř=Ω/y,+* 1&BP YVqR= +8k\gD*.&ZH8>-^VUCn4aF)yIX,nb̗X! H>g3;vp>PeEhh+޾ZPd~/ 3O|~|N$F>q9tdPlc9wc*B#ܽyÇ4Y]fL L^0LgYMT늛˛k#HU@/Oy bɘqޑ59?&pw.rNXްX5yL7"il뚺ےW[vȥfS}"8[UɛV[~5okbw&U,VkTeCY304U3eYqn[ib^x;lnY}=7߲@?sUe$,gbgѳޠr^y/Rn)*/X tnB98iQ:("Aѱ>k9'yz>쎼eYf\-V,^mcGC.4:yfzŢH[4߽zW7z}D_y!(_p9j!5W #0lɋ4J6}M@IPK)^P]捦3 #EQDLZޓE,qzL',EHF@iM$ali Ln0F jh)Ӝ"|1 %^5uą#yfcJjQ7 Ki@n Jɤ"/sy;bhRCY|Q H$Plשj:c&LU6רBg9ߥFI,/NbsL@FǙ=E9;]x.R3`8I`PAݛ72͚/Ogd^# OOXx]~n`͒R+DHSgE1x2ITLht"&K<0ҟ"U|]pac}RH ^%XZ% q[Z/6:x(-By7߾zׯsw|>登k>3 mS%wwxX`LFQʴ)~$\P00 ɂi84 r'A'-ϳ|&P%0Ѷ;?=\LnԞU 0;>açO7y|gZɤ=7Yܔs<xϿsfNgt]W[֫ Y5 Qi(bɕ@?ujV^\醁 B[yQZabxәi+~Bj2 53n/JGzM7OL6Н{>7VMò"~F'N|\\jK Jqy`fr3لE"ҹc EYu/Rgdm*L]3*̓Z|MIe ӹC*Y6E9bQP-K0z!44u<U'"o~f\遗\m6Xpc<m*i@TQEN TdGQBSRXuz+lA jGO4xpqfpܢ3EY^WM0*1l8䥮0HiLH#Ԟ;ͩeDeDg`mO ){)3=`8#Rmp!\#AY6oe|(PuF<"KtIUV9J 3M\gBDaĆd&\`1"BEI C,O\O?A ad| &1XgQ2 qQg$#q|(@rBf T)&D2pb`r(=4|%QJdL)lHŬv lx.?lKcMz)L͏!!H/£egR|jTR%|`#HKEtj!}N< t0PRL`O>7?>uv_f$-gv ΃O @Z"Ky /rӉ`UWd7W|޿ ;wɢ cڰ`QJQ:(0.gq' yFq#fTڮqnNFk|i+JHm4T*M]fᕤ^=2L3;ϟib2C4tT_'2i(>PrĢJt#} g#pΌA"B@*FS&g98D$f:Z3m7SALӏ#D2^1ى+Os1ϟɴ3at !+=^0<6 a g? dߵе=YY 4EV~|g޿{M.Պav;1ypiO)2&4:^^1L;ʅ@ ʚO3,P&gB#l[EP/<)eb^fgXG$f//aeL>BCN%12](` %]#)%Ǝi,R+~4wGAߵTUI>'>N"-OOeRFSKJ}EAQ(96l$h; /3JKmELNyoy}7|a?pܿP1>h*T]7qؽPeC@P55"zO;8^g9ZD%,5j-|/|*/(y99[ƾzsi!n67~H cykPe8~WlntÇ3<JxNV?idYWdf'vݻ_Y-Wy) pEOSׄ (EX /C":wa,թUolQ~fZsG BgO-za!x9BBj_<2#Pe/ ]PU2+X%UU'% ""e$R -dLp%K3uIDfTJM$ f #R(ri xD Y]!5TiGOP(H2|f8>t P_$)| E2̳9x T{S`j6IQH%2\Z}qP@}q*f]=]\\7"^-_Tݜ-8]K@F "G SbBͳ*bh .% ѡ$H>=?E}; Gs{bu}Z OEQqM-Ȍ_t)(恗3x={?2u89'Ə* 5W%Ɣ;8@ns0 )&X= LddI/{>wt.T*YƊ%2綘vhA+yB]iA8MsV ĪyTә6DzK!Ҏء=/F9vBs}wLUp /Oi xMcXF!=zopo2n◇gf눔, #JG~oMi9vZ^}aF7l9>^W3WKkUNߏLj{TgE4xv{lYYs:Lswe8> )%7W 83vlf3/O(θXM]K̟?|*_z AuZJ ?l{N/;4rL8gd]`3hP:VXTD,EY]d5>9tUz LYir9]Hs7mD/9 Jq78 AmrvL^ɷ}O78`y0L815y0#Yj~,9bepÐ N2te\DqR__vY5ju ڎ2&/-oGPYz7ۈɂ*%7ۜj=8`F Bo6|ԝY6+NdXg"zc q:x|;AVBQ+LQ#Wk^Z>x{wM,Rs8i$ص9H%9)30W |y9 Q+IiDVd7Ϙ%Ed8Ĩ(֎EYE5@dzu%OmU^cDN fQKr:뷷tݎ(#ekAןGOYQ"9O,83t]ќ瑧,+\0OiH $X ů]0ar&+f;OCޢYKmЋ TYNg B䩍*ȲY&/Fݙ1TdQ@I-wc h\i .c3EY9/Grvgd9G^!-e,#//TDJ쭶RɑJ~A4y%Pyb&y$n hpJ`hGDbv|ttw-k~}3EA2>?y|B(M)XC;+}aY\]X7 xxyz{nzKϵ1lfa+RcuU]b~i+___f7f0bF@ąt?P:_p&*TdO!@YRP\ޗϝe5YfRSשU+CߏL]6TeCɕm?\_ݒ .JgecOa).b6J*6 eYaMI/w bi  &%G]RJN34E62S ^nlL OO<>Py~~pܣ2f͎Os`V˚27| >h vnt<\n rP߾yvfqEUɪ d^dfԔ.hyxzVwGn,+nf<u>{yajdD)^6lQFXȨ5~,R*|@*K`TFx5 QR2#14ODŽ DeKhy&o@b;MaBLTg"#[,6P H)$n/Ck̢ZRf5Ɋid9'f Q`R*8MyF{>x8O:QGɿY 6wW8;~׷KRWcU5UCpO_hY2eհ?"` vBzYfh]8ù8عǫ, I?2HH,mvd쏀~`;2r>xb݀$_5>4;DfqBb0D!QR20y#a(skzfiBHG_l}*Cf AH"D@h1gUlk79774*nM3,D"sEXkYhWl#\z8q|~O;S;P68Z4冗n%&(bA&5GF Պ[K 6 >fr:e3f&gQ3uX(՛oyMxiv,woMnr[DK? (<#I!%Qj7vwH"1ѹc].i߼~{>=? Y4FR暬Z%<[D&yx*?QF0[zEzwC;ۉ7߿,E 鑹}ݚUf&wae"/ld}A1v-6oŪ*9'v/ddT͆I*O) er_![,*F"߾o~b0-uU0N-qh џ[D=Q(md9Ʋ?%J*|,+P}8oL<~zd8ȂωSu8)iOņZ\ f!htOOhټ? $aXJDR/Ͽ"{6.AVKYmY^Og1heVK0-#to 'NFDZ1=v-T$2~kJO\Er!3AYeL0,b7;y8)''0U7R&`5 u9?R({h*nn0ǫ+fe&K^)>R0m2&"A$ OL/([_K4lW(^ 6FbpdF=!u+r !TrH=ptS cxfߞfKH4qndGJn()%՚pB,OsZs>8ԩ0&he' #bR$cڗQdJ9G6dEj?O.%H#Y-W^vTE.cuVK:}J9ycۂTa<Ӭղ z_>gZ%ejEFd\PW,ӏB l+":vBE I *SYm^I#ODZƀxjKKqo) "~ӿq&g0D$?#sjEpZ&i":2exy8 RR6 ÄEb&7&Kw:!eTffw>3^y B^oȴ&&oC@$(TNcwBA>u[HF9!|?x8) ra-*H"{uE'smɔ=iP'3%WKMr1N &1g #@HB1p"krܰ.YO|D`h;LYP65JH4qOԋEjr,Ja,sN홨4I=UVcw5US@_j}ӉbdθF+*'(Ί$\,HD;[TdU FRxp$-|"ty@+n&D^eX!0ƐZʘpQ&_,R.V RIgIY, ΢1d%&WP(G$-ZMCOϜ]$;YO} ^b"uV J !Ӄ\@1 OpFh)TzqEQ/tښ*ufRHAjd:G A;Ta#p4QvB:GT1eE|_ MɗHaK=!/ƐPȋuLEv`߽_$E}bxZ.m"|Er!ĐrEnDƐ.?QD4Jjtsrivx&% Uj*>?{ǻDbW錒Wˆ ;,#*wyC0Ob:UCЖꆠyD49h\3낧.p@ LAKVç:uQ=6*cn(0#ɳSs4GLѐ5#aXV+d^"@fzzeQLXT@$2=]w`3FQ0^E0xoqb0yi{G΀%d?QʐՒwY-l=!H =?Pfxv=۲A#&:۷w,zX]4;Ɋ&EZgw>2+ß >C'Kw8׼.Y_//EgRuΫMG{2羝ljd0y^^o߲#rdz^m-69p|zׯLX,6K^( _'ADV+?pׯ68b՚ "oVϔ'睝qJa8 lWٮ6 αͷ?pj'ٓK5YthVKWQ02NiLA)@ex;<<0=*u/'~>#\&oj^[>B6|_8K߽͖3ogEZq8s}߱;0?'[hql )rʡ~$Fh3`7<<F9̘N0`g??T+YӞLWW5&gz V?rErys:+1yN/)Y]-YA SjWoHv3KNQ!_ާF:TeGAawdf8e,/AHfȍa:<3YGuh)p}Oe łiL% &#y{gWdyF$2}g89Ҿ왺!"eU23E^R9;NlBO3iv`-<~@Ѽ^ܮOӶUb~p"e>rz9?Զǿ[kbW_:JO[Fq8Laffi(F/b.Q&lzgw,{  VSg\<}}|ReV s @4Oǯlqxq`{"2TFE(dP7~D*'*B.5Eж0YND*يi 1Y}Q3TV#%852ɒ C5J}yrE82- 3NECS%.'FrjxJWVHV7 ŤqG >PV F,V {',ŲMY7v6 eN;j .]o2ԅaWztLVpsy Gr %nBwߤ(Ȫ}DYK;t \.8vuU'TZ~÷π#Ju릡fjC=SciVW-ߓ hyjMq#]tNC  ·8IV]`Zonwz> ]W>ixs{xL=vqBhújٞZSo_q:6y׿?xfiOrSxYVoUGݬx9LO- \oq$:Bc]rTvb=θA]l@DyY.+2"ϟAFnnpiZ \-/[B#]E=>f dWSǧ=ZK n` E 7kvg2'3"+ٽ<+MS7#nzG7\ֲs3G?(tֈާ޳(+kӑg44u~YVUd@BJHxyء[rQ0Rہ8=xuUnX\ca*bu}ş?Z.q {r p<:drt݈2yzf : L67woņYUt@*噻 GTP7Ƈ]:~]GTGQbQ?wKGj1cr1G2jֆi D6kO{1 xz~fYarCp%o&Ͽbinw"k!/qԪ\ZK]VdZ3#QiFC*o9=>x\mD/}~݆?3B(n fۣbܧBL|Fev1A+E7 7|`z6+vrZa' .̧rI^f<|ӑfb3BΖp@T:9eY" ӆxaS#j4Йf`0g'ElHVUHX-W6ZWW|<'tB nDӻR uܮ9tcOۍdY{Jc.#ϒ#!a 1 ڮG A&K;hdr]F7(tYq!4^@4ZqkH0v)AˊnI~ 76O'1x2G'%Ӊ|QY.1BQ]~LcJƬ6Dج7TeA)Fٶ=00yU_b}bl,ʉ. |jPTӁܒeΎ*/)W:d{q$@2fw<Ȧ9w9޾zGnKR82}z) ;%VN/0ī,Xct{#(V5Y4 S<_lHhpd\sw&sTy ژ,y"#DG@J2bte3e]L"[Ւ )Ȳdsic ߳{}AȀ29ZtH"E#:StUh63Ƒ$vdh,1Ap঑@ +2mv D/+*\&J]6Q: !FHus@D\e'{2vBD)Y4KК?{s3]w. /{LcjXKق;Oj<}HL8&-v)(Oi ڬ Y i i›UFu帧LpdBYwq qC"^,Np~:o3ͩ>W eP€ނ0[ut#v(EQr金vBX}CRCUoGgaĺ Q:#QIn²+L!֜3ր3z83@~#o\5K2)i?Owwtw;RSe%ȌO~R/'v<̥xRn_1p Dy ;n%G&|~j;>B|۷,6 Lbt,=w;w.pخW^]cgƞ0)3բ͎"K"y1@ԝSf #W[ TUD c t %?%)z p[p]ˍVܭ XoN\RiLMn"Z8v)IM>D3>9l?2+5FSU)J%t~< ֛+V-4s}s5l) 7_Y71ŀw#GL^&fJ6eL͖<<:;r:xzy!*faYY\E*Fe! s< 1r#-A9&,B!#efȊ /H-U%^x4d,ťmNIIi @+55C2I߱htyw$˸rwW 3Yơ-81=uQpϏ=dȲ6CtxM= kn uIf0tsr v#Y.l7kƩcgf")uΏ;&!e ]mN"-+Jʢdf'x/ E'@UIз'h]Hocבg%JGwX#ӂZ!&+r"E@@#IEd9nPU5CAL$*F8`"fUZd9Ez"(.J3,"U uJL$$**NQpB B@7p H0&\@磻Mj7 !N$%Ia"F\6PR)ԥm"тi2碃 Ah% ҇:OkmY]iq#Ӈñ`d^}.yݰ?if7t˜e .<|daf^#_uw@mu%9cs\`fji(C{ed9TKlg/z)DHr@ݹa3R}ǹ}T30ÙϟO'DB’Dzfˢrx9qeyPֲ^G><;7ԛ bEfW9q:펈]{{"\7<=bgϮoAf)CD̜#M|{/Y伺[77s0-U-$A{'zCvF$ uVRɂ0 r*JT8y љP9u'lYKʴ'3Uf!S5_}঺tm9^+NG8ugi!ȓ@QdBqǺ9 =B ޽zG0@21႙L\}sRд-8#N8=N2Tx%xբ<'ppY.q"%/D%ժd{x,RO^ɂ?}ƺy SV(G ϏtR/o?2k<\UȢjNZ2%_%,׷lnW5C7`|DS }4h6wj#ޑVbM~u`w,+$a+Zй.uS̡a)$F=41L$nD)wnx}f|SS%o߼aG@Պ\&4wꠏn86x3Lӄ$0c}lǞ1TI3^L\,ɋn2|/')Ҕr[x{7\/֬TNRdi,|-⭤BIuq\E6V]?D뛣's}65E@ Mo71TrFv?cf,ino >_ c !D0Q:%Isf2QtCl=w &T%BHKDRĢ5:ꂳ&$:4aZ{"O=?~7-Rj O2??zX4\,YUǧ{V?$Oo_m;ǯ??c]˗byn4ssuG?p8҄E]~gTEx<FY^mhz?H\]m9hLdyFg$B&y;khaP:C)^q}e=?%w+6`]gh-HGÞ hSnGןqy2iJoYFC=hli.ƲXR1O3Yc'J꺊PF fDermV_YRDyR%}fA3"+"Ǚ x@xW.K#Lxn#̖T$iAZԛ%Es*Age\d´4a"fKsjlj˞'O7:6dR IE4Oi*S\۫uMRtY`}~bV|xz<|[4cғR,%b;0:M>N`6ZL󄷞D+4m"6dLv2idҮtVD*/7Y(83Pu\|t8 R0a$A$3FIC{zr ԥ]ckgI@Vq,!*g# Q|]. x^& _+qQbbxa.M("6r6.D>$јq/1eV %3` BF*@`DE!33%^B (ˑR\z]afRfpLvbU/^rڟ)5i&rŲ fn'޽/J- +<^{ YZv/<}NBW+>}N %#=)Kdm[l0c55_TE<>S##Pc~RH:\?O$Df{o?r**6U¤axiEZҙ}[GjҪĞ:ryW桋-łƷ= bl ( $ܠ$OȂ;Hd̈3~$ENTE`X!1f7P5*Bn@)UY$k$26mȓ !⵨tI~SYǏWk~WvzQBPHjL/hGb-Z%4Bl'홮=fCg{>=4^d6/\t ͆ S~}d+I gBع'qq |' ۂgDK6kf)I r\,$LN;:gwx8puUcio1za-;Cv:qhqZh-@zdRе$WKސxG]ށT8Z )$^xu-R2sǻ5oW۟>֪,4tZR8:3nMFt88-cgX aXbp79-rՂ@Zf-e}E` 8r%*4&i9Ss@1ΑH*|rE`yIa-rpjz_X\-6&C9l?^c!ӂ7;_n+ 9E駁eSg;G`"Ҕ~YmWg932L@*LQEqw -7rMmƱԐDvGrct)^HYK*Qf0'F4,;&kٷ?̀H$Xp<>p8(Y&9|av2r 5JAsBې?,%U1߶[r7^^0~¦"T ϙ@_ ~/ܽxO&0hR!-L^Zş?xh |yǺZ2(^ҝ'|75M8-,Ԥ*,u8UȔG <o yD0SU \Sn1k1w ͉sFWo!CuN3_v<xrw3k͙x}sǪ(Y86N] LzK>߿D_BNT;:cJJϜ3#rR)͊ahɊeN6Ag $rE*j/;BJ2$lv^E7Eḯ#"R$yd'!m;aeh;4G>H`tR{a)ؽ<ȧ{Y)JaŅWDt3Cߒ)i3<ElJ,w-pB(i{3TijdwtmK߶9GfYrw3"Tq -%W)N~uhN_̿gP\]mi'9MhcqF L;8c3eS&l 3ct!tei}{G#9VcJ\R18 #iHXv <;i#}-Ab |G̖Dgd7(La=~C+NdE^%9I^trAB/z*Dž$!y3xG_va/y_PRk큱=CZV= R_q>e}f-rmlw<=߳f}}CN<||録 N42jO>(!Fq"Dp8.n4ge=,Jil[, $9JvQwxv>P5؀g,8kxx~9Y/AhEdiIKm7|y9ZS.oxVI"X@T&$R|oEָFf ރ - o VYz&<2"7M?M";cK!sv˨ By+3>dR1)󞭔x>L&xn`'?I}}Em?*(ҹDž$x9el6eQ`m-[!Nnϱmh3q+q yA]3@"zNgA%:,Rtp:pv˶Y3sw_}+eN7looȋ"N?' /x%9o>2kχ"Yr~LtЙ8l7-*%X^s5 $fAQ\ 瞄M=2МM!NB9nVyF3rlYbԫ59v=A,5-E[4)5zb[XBKVE뫉oV=lp(*/bASAZ&,Q{9x=S+uA7ӌGqM$LIs>lqPwȗ%&"k ~ؖ%%,(u]ҚbCX1-Sw 4xg C00fAHh,UYŢh`2yiSCKX&FjuETقRY7zev$DMOf,p<2? +p]h&Oꎦo-R#"S\#Kd) M?6\.}~3O93{H%bɹ*U%}RО ;NȧeLK9r=n􎐥kVmR8_8+.rX%Ǿ{dY~ H! ^ݲ*$ՂbYcXD3mb͌^{Gj^cT+IR0W~2iªZ/4S-q 4լn91 Ert`Br9Vk?gQfTiBH߿auzuՊ*&uVAxL^1{33ؙaA+I(QVKN1Ƒ!z :!6f.Abbt m, L>ftP٘ȔL@8!㝉-yaL@pQqr?MX}JZ.Xs ˲KČ`-TO%ĉE1fg,}iP2G!D8:RsI\"*2y)GN' .fQB!'_8Mo.FG'ؤL$ODMG͂9x{$3l[7x?܄ fnKB`(1)B_H$ :T^9Y c~6a05}ի)V 1I8َUIvyvkP4=M 9u0l ,mȗI2SΡm**BӍhL|o-2L(J02N؉PH [pڟ8|D"75њf #:G5W%?}xM!^;K9ӥӟ{2=vO︩+å}w_$UJ!5o< 82k>@VԜ#fZ*φIXtxS"Ŧ¹k2-y:4G3lWwG~LT5IbiGY望8~.rUW&~2X,jUJo觙W y=wkqtm{ |X|WÙWlqq:J~(˂-s<"QY5 ǧ'~b<ZLrB|< K{ftiql; #冮/?i'RX^2|~pO zIBXt斷ےe%@)?ܡ2Yf=<$ 7fV43>,S"gFcu`a 75o-' 8;q6b+2* &ciHw~`٠bZhMQT$$A$ 2MKf9Fi*K[ԀsEuӍ#gox>ۉeSL\r:u0s(X[ַqAR K2pn`q9|G&j@@Q֐x ?ǩm Gl ,Ec晾o.Fd8XCTyRvxcw*('CY/+$#θ.uA(]7gͅ08M$mx]uwHIQTƐE-ic0ډ KFm$7*)!HJ]xUoY ˴2#NFѹ( бiVb = cdc##Tkd0XkF>J3z-5߄k7>Pet=5D#Z·=c8"??r!ܮ Ru-~qBxƠ|*kui$a'}GOG0@ߴ|wsi";O\5yBCؒgù=3_~L(yy8q9udÁ"K޾YQ]i~vū4;?^sYRg ip$ޑ~}MߚQt$X忽6U!uI+x6F{¹(Z] _W7>d6y"w^.p1o(4,U㦑d O%X34' RyK<@\*B_`݅qEzKXBUo(iƆijff'tRzno7$$/Nv/{>?wWk~OoJ2ϼy? Rɳ]-ԬJеH80M=E,h_sw4{2-/O<>ie|Iq!nfd'<2,KT˪? ER+nWK:gUeTk$ v(pjNGN3_>@3;ix5j#wo2Y,OO_v'tC@59D# Yiy>aPз-m{aGSed<quB>. @RfgXmi}g8;tVqj&D6`fGH97-]7 Vk4NXV=^T=Shɪ*J2( dȹq#x<EYm'˩ø8z~xd8,H@@$tJuNdeDҟNhADv[k9@h>tqH! *A.$g[QEQ35.q^5O('i## x7Dy[-27`AFHb+4dJ(9tcc -癢(Abrg:#`g4'Od_ji<dQ 1{2<3.w)V}ͨ֊$)DxFҘhwDC܏bF] Ӛ9)JTyYZl\$ D J\Tj5W~FB.M!KIv$Ib3 (e_%!/HB'S)`؝%֋ۉ n~Fw|;>3A]LhHeS#KTLd.Lp[M&PXka$قN\i<RX,P2m|P5l319_~f79Wrx.$sբ`U9ٮW+gfCwxM:2x D+y1ҭYd%mw#b28FZё]ߐIɛָ4dٞT9H,1XC3=OJHXc W:ٳ\l&CW ӑdQӴTq-%4?uX^ok?"a vOVݰ.3W l6TuvoBcūWR8DruUL`j:lyWgZ$dY, ]vYgG8;bf·_xORd+P\]5jrԝQ"etS9gzpDTu6)*-hΞ~w͢B=+j3̾o؏ -"f[{ plh EVc;ZW[q[)@`]ԿfUն_H)nA*:CY V.nޒe)xtS =qJy]`(s'LkbJ_ }^@j%.IH N"l+p1NFq ¥ I"p~˲KtffLC@chf؟_Ȋ_~Bo&p_>~=׫- eUEsF4^ !*KiBD+u]R%0g# ,aR ||^R()53$.m__Z"SEYڱ/WWyYW׼<>Z.)8$TU L8v]xKF!( Պ͖͢_I@sIuV=7WkDHpVgq(p>Y-o8yb8+޽z~w <+Ǚ8]~c)5ۛ!FiDO$*%e7݁d/O-K~xra4)%@-%:$m8Rg䋚f{c."wYB Q1DTEğS*1Cʅf^}4s\'xR!I$)h,qT}]+beh֛錥r|㰩'E2>pss˔C]U^eQQDl,O؞(|JM;GTO)bw2 y09%u%cp":C$UUHybFa4^;ê(yߓZ PER[f' Ha}Jr$bě,J8` )$6tӣB\($"(4U@R&1HX.2g{f35 Z s {b%2$%itT!'5UB.|+N-Ay~Ab xB'&(B g13Ҥ*C\rD(83cJ8@*DɈC$ҚD LS+fL8.;"TB(J~mMI)pP$:#Q)Zj(a[( }M8IL{1] !VDx1"uD;2!)eU=MLP 68"X9~OGL̢ȿ:`ʄwu¡?WۊZ,*"b (ky.N -zGϲ~'S:c5dYiy{wlFҜ_08'?>C?]o9un-+]fJu)G"zWoo(cqb'SdDrv;fhY3tj)/X1+RUp}|DKЍ|itir|h@ؼ"OS޿mmFд3"[qL/|?P_Rl4wm:;iMQ/Kikz'fOO@)2|rv5Ƕ 茑f"x~gȘyX%A8Xm, 6dYɲe/;v/g8Q~"KUE=2a;fdy `]?1L/Xۼ+b}}t*qNk3p*z.P)~rlqQ;[W7xږ~#K!/5)4eG4l(5NJ֖a~|eU-7e?$#W? <>;2P: 8ϋ.⡨ɳ$inh1f&O3, 6Ni =]>NLv;>r >}4iA^Y-03S0ͤ@G`O' t`GTޔ,W<>ܼ?aSrI'*dQЈ+(=G^i3i'#)2f#Y,bC*!If(} )Y]9cO}/&Q0[߾M]W=vz[,4ɹ^(AnlJH)LXo=?g62 Q< pjvCV?ۖPR}jQȼB52 HS,VUDh4`'!x3L}G#l&)F”tfPkoȾoѫ5r Gq-j?^ImJ-7Wdx{[w}tBt>0<-qΑel:5,GYQp{uC)~ Iȫ,jA6<{QRpif+~h/FY5Y_X-֔:a]f,XyVl"Nمұt9^Q ()I hj޽r"G2qff0s?Žq*`[(gT=ZkƮe 36$JS*h`+ 4y<ͬ~=yP '3u@Z2%DpSs$8MLff48uTE 5{12"Tpc"sO'$q:wjAQT1~/J Lfdb5ȸDlgT.XX]t*Y,d yYDzi2:؝ # pD,C ej]-g kn|DZyz|bu"5xG2ר+gu/tII g R"IrKt7r$qpB+,KRt]%;JhcXg1%.B+<$IHӸߎ1(X;\,}r1)޿Ä  )_<ꔲ(8U0OK\o2FP"3^q-bCbQ{nB[fÌRkG] l9ϟ=BKASv`;r ;$7C;!eE223-8'eʇ_s{}ß3?'pl*Th'%߬(sE$ @|􅺪8N$i~4?yoZR ^߰(\&-IZYJ]/8?THpjZ1,^J(kI%$6YJ"Ӡ4Zǵb66: Z( $A&)fA Ɏx<,㑼.Kv,rLt &Iiw\H5R g3L̈́V,IIk.֤N$!& $yJI 8"/%N8^n@T7w[s00t3LXLnԎ$%3T݁%Mcl»Di0*!SP9Y@(P*c-7:GKGK@3w72E/bZZ1,qĚeV`C@)5#Aٷr)Fgɣt%]{HB`؟.VYqYc#IUd} 2f8Y\#;!d .`J)B#LsGPfB4QJJG ѶbLdxo\`-fX O)57v4 )[>6&$.L+y Pd*ڷgD'X.O!2 !sB^L6WEa*QѺD D 4t%>!#4pLAxƾkNT\e<e}3x;ɳ3b& #- ]CR/-U5?Alؽ-e_XT)${&3$F3C3dBp~%TgYE7xհ #-ml[ٮ#|8LKhр(<>ɘsǁz1 ]הR5+?ԬI8^_ ŲHŢ3>*K0FGhč}t2du,rْ|nVqLL} բB'RXs<UY 'n5~ GㄟzTY+JQ^J+D7; )rϧ߿p_?9"ICزPAk2'pZ8^>/i*4! ' f|PHn"БT }\srS67Mk;,YC;"ӗzI6+:u|3w%hxy9 ˄yV@rsߟˊñ}60zA?,v9eA%IRzsӒW5ȏk37&cI$iA^-'7#W+fvg??F%RtȢ(1L3#Hh;,#U)l Aὠ(*֫Ex:~wF,)ZTEEgJڬ4&81J}lO$R1 B?wai.N$iti[uVrZV(o҂4Lpd_R:HN[Ke(!h{4uJ#CdTyũk8 =y#I50:RIqXkcss0r}"[Hiޡ} YDD IxP "yiKNi$:"t}O7 vIG7Yf\:!$8SRR%3ʲ,bBO 6t!BBՆ~ j5X.#Ӱڔ4m;9Ӈ[ڶAfANkF7 /<z+:*O# ,8N$BY\\O6|K@,6y8L:6=2XVd:#OV }'ז;Lik\bi牼,N`GqiF#$-Q*%2y)@zfYK C̢>`@Vxiږ,`q>5hLQ,v;N(;͌P,OGa@zԞH9<9v3njChBdvbc7-p|Ww$sadiE4ѢE8;EͩklBKѝ7#Rk$HI$t@ɇR* 2#R T4hL :RșBJ8??X.^95|xǗ?,O>~Nenoǁܱ)Zjp(q'ITyW}SKHb$.1.-A3BXnR^q"%.-R'"H3Ny"2b3X-nP B-y94KҸּ u *gSk O=ɖٹj됩(=3̮%|ipfZTw2qN cVVUYY;Z"9ΦHY^[>FkDSj6eadg \\ >mTu͢|g9A^1!FȊV򸵐tBj~7ж{JiAQkr]@5O-#",]h1 (jRĎ 4d]Xsص;D3'8Ç#iOP&Lt ;,}LXg%7J&aϬ._\]'g ~:YA17\^4yF7F/?quYPU%y#ENk@f"uUH]я5~[()XV(XhiG%ibh]㏯)kR?e<(jEQ s%Լ*tG4~OW+B +Lw@-yVr6;=" z? Q^vwv0\Kwwz&s㲊Y nƞzyR;]GQ42]\_YN}ynfx4e бEIR<@3u=YSsyB8juFUI2Yr#dRHF&c^C0_,RHiˮ#xɺ^uI2" yfbqw߳yj4ٜWԯo U6LE0 ňJfȼc2AezQ%SE@#SzsowYXVQj !lxRÞ>"f`|Nlp4+˖1h#;LYUf=Q!seD0IEk-ʔT4%1TH%7HcPZ%ٍZiL{'yFi᫣A.Ae=vk-Ւa 1_g YT'EŚ(RdZ EQT5RN)tUl'^Fi| z~ .94uMnc1ء5AS-%H͊պba ~=m7 ӞAWr R dADnsi|B`hܽ}?WUUQ% .H/-8%P]5#ަ!I{8P%eUq<ɴ(_/deWau}EZuZPsP4R DDiӑ-|*E.@nߦN_E|}uSHק6?ثl~[1)U*^F4ȍ!"TElNRRJ4%5+J(1B3 .Ue35YY" ]D%Qa94eM<ӑ}{9u=ZhEN=%6!R5%"up^}~ӱߒE0de)+aj;Pge 79i saՁcl#C'駑Lb䄩9;" h1tÐ =F,.t n!DM7~t*bb"Qq3_7L}O*B H{:R+TQE2&%?;YYbdNdRɩ0}D *q6ϕ"Xr%2H6re23+AHEa4E)0dlhl 4Iٙ.v\\-|ZC WL I위TBɒɦv-d"/<Ȁ"-cLr%yƺ v,a)("Jߠ_JB+82FxB)i _T4@"BZDW0FgXQjaGiz ~>}#eC:'{`O?^pܾ/E~W~YyKZ{.8%! AO>իCl~ eD3egF ^sD؏̤͜&S](iк`Ħ=! YV UH1$x%Xog!K (AYfa@+;l#0GaUѷĹ8:?@wzD yz< 5iY%Wx9SLᅄ X vL!4@ej׋]RqndN!X>}z.P5mƞ#qOf{~2UVp 0EY-FLgXȍa#@H,q}RTEYxx399ipjnJ?;Z6btNLewBR &F>mA$ypbeN T1DzQ%6&ӗV\B%4U^sZLn%NFhhW8 iLmZa"+ K{aBi)RZOXњ#.&!dDQ%_hqHܺx{,lN-͞S_H^z`"vr;VEko޼˗'&x} ɲp|;t˶e%[{}|}Cp<<>rFa~}teG$ _,crh"3= I$d+++ `['K) >}gJ~[W0Z$(! %:0vyƱVxC{V ¯Ok-צג!qtԒ qJ.s{<{)R҆p~=ĘXr_!^W>z_x~{G>;숕˫ vK=1g\ެP2DH29fpdnlj8v=,3'Ʃ7/ѰXbF~ʢ>z@nhO..?=bڎp2Lvի[}:V}{@ӄ0Cq8&l>(26/[䨛xMcd=S;CV욓Xg7\^2ډt %J/DB0L>vdƊ) Ys %"nb@(awH%)UM? O+b7&g1еm "0{La$zϤ 8 tHsܷGQڧ#_b&9a%CmDE먫 SjG(PW k)f5vtY 4PiE&!D>Nx:\'u49& <=0kftSb0 vEYSf/'g>_6#v#&YUMI^4%DEoG32Lޢ\4YKKR֌(E(jDn%tFAXDt` Q GO&|r:)Fa$2˘-] 2h!L(7R?|,5Z9r%o2?ś :~)i◽gY]HZt]TD#أTO4i@^(Bq8Yo_| *'ݿe,EfbVk#ALKNYwoc^VO{:O+aQYPJ2Бj9-H909La$\`dD`U[Hܬ"'DO?q"hOOO,`eˇ#1˿؏NȻ}d tGOͩÔܣ:xX^ι{{fF,>>vtIǞyԢf`y8xnh7=;aJ>cra؎'S˧\K^ݮ@Îqt"G UUIp:O,+aSZb,qq9jz$#oY-jf3rU\ټtl6;oԳeش-GWp8qڴxaسy { ps~sEnӱglL25MM<Ȣ&d'NA$k8B놋? \e֚RG$eK 1 nhΑkzNA˚Z4*RܦJB,'uطL_HnaCpJjJGYK&^zt`Dp۱3?ajX9%Ͽ|>|4Ղ#6$D쀟,c*kT@T_4,'3”r%޲ 2"~\ ڱct#/g7 WF8j!I[H,=AtMfYQ D+641E(LA&5u$i V̉vTc( Pخg;&7 3D!$jAZXm\e-c?ǁȱޡ9y ==nϬtÉӑ_7Z)y|9`f%;E]ZGqp\,l !2uÎLe՜ȩyK=0 g-J=oW1K8adgW Ґ8|-ǯ?!@iyQ@J%Z{2eb6kp<ݾN vQLIiM* <ίdRsn8Yvs%1=1grvk,H!nj>gZ^ݲX1:n)*֫%m{`wxՌqb1BL !)f ~}dyyI#2ԒK z֧ 0#B*͎!&G%́7deN/-ætzгy!B;`GY@TN3XlLw(*xأJWoț=ﱃnf>^eUQbϟӹ+&lD! 4ѧ_TN@3yM1_&tѐ_\͗IZ^KI;B#DFE?X4ؾe8pHtgnѹI. D)%X1'I t2\j 4MFS &ͱ&Gts1".k̠|$4DY "4ujщ.Aȅ0G&kDrl8 8xU\&9b@("'YK OSRTA"L)ZZiP :AچӇHD@yJx"dǀT$0"=H\gOX|ʿ2~k} qv11}'Rs?O„t=ҞpӁў'!2DUuNl73vhSw)z& 08T.0[ .y*o a#'⇖q3LhAY% Ռ(~5nнcSw'vbI͘6gU,׸)0FЎGH&|H$hQ0FP8M )%r>xbD.!`15S0([=Qfժ&=AK' okL7Lk)[ެ3F2-[cvbЂK\-xg2Ŭ4W5ͬ`18O0=u3gyuIv+92$69](qyBHIsyŻgJֳyy]0q"ϟ_0`XД}fź #f(YRk{ri ּ~uGsrS`Jq_TU8MY 82̗s*t̑S`{SO'cx۞3nEYUEXC3 #UѰaҊOo(ms8I493x3ӞY,1vݑq^~Y92jVsS3B ?1k՚)PigGD?tx9=DQV3^O, }}%PR CObFY+#Qf],2M8Sx,lGr챧f`qѰ甥O? <>t%]t/+ʹAH1ѹoi%F|X,9['#ሏL͎{FBS-Y=nP6`TIe8Qf5˩f5O/AfVՊYDGE'+ [ex#]kQE|'n. FK+f ޽{ళLZ3dn#˫5?| ʶgVwLgb-*z|?RR3v/<|z=.M(2 'mwL< SP[s-"dgs6"^Lѷg׍W\"Crpwf^"%okC5R y?Qoo&mx=1퉼(F\4O/|O42|3ɤA iu1K/-qRd~0`C'`.~`;nnXuuZRӍDӈI J&ǗPbʊ68e|gG#{K,+~s{L+B &'sj}E &2atjo94s{D6DbH<`)!E3b'AFi[OԊv8Dgڦ Q1F&gn{5YT Ej2`Z ;: p["|($lN)Bo6~&+0SQkEFH1 ip}`Tcr}ɇ|lJ9+ݢxe[&l72<ɸę5}%1=}(1 &TU؀'ى&b6}ط݉a FF?Dow4͜tb@]V6lwbxb?內Mq ;Պ7oop>"L Wy?EU৉;)PQsvKi4׫ VMM؏JE=uݒoټf>/x{}u(t8wTHqv>XVލ?mt4݄G*g;0:s40*e=뭅1yJ<>aS B{L! z[?f\_7tF^~&D#\^hB`L:Cd5TA ?zYXO!&PpoO-S09ia8gPd\Cej6]LƤ2W81欔{_PH&|T!շ3QHt>#肨2d3EF! ϙgDx:OcZؽd&НK(Q2d %zA -n(JdBAar "1_[25IhOֽvq!O_`?tܤ^jcIcE SB\pc'H$4RDF"g 朂I1b$_J_Ty&)sajsL QBL(."R}%33N}Z }(x&Fo-MZ!tT9!J2Sc؟@ (15Zھ%$> l{z~"=OR+qKNCKM|>R(,.L `k53kܘY"UcOMdt=cYuU c՚~l>8X%' iJvH^W E! @]> ,iLŏopġߣП(zk-fA#191Ja]ϤF^a_>BB%JzG|#YQ, 2mxҸfផ{JQ*+?\dUjLc}{ ysI1ZOPdIA(3Fzq# w]ǟ߳tH+|Dž@}1#;nB!4_^&^.'BU087"ӆEzG;rY.o{|Bߐ)ü)śYg ϼ#i{ /ݞnysː{EQ{S{r>>s{E(%nCfKVyѽl(憦ΨusOEÇG³j8ū7^&_V4 g޽`wlJQ*Ӊ #ʙ,1YF8 lv-;t^,.d ) ƒo漽\l~t) :X_8l7Mxya|pj1X^0b _,^pdQ:Z/FW%jng8dRmK( 7:O㔸xC ATV gꎌ݉nGnx9S6b 3ێq`&ơ'ilF &pm+"?^x-eMejㄝ,T ! B @s|T8p mq:q(\ą ~ oY]i-f,;lۑiysD۷LcO%gPST&#Ɣ *lO#cHSZ0vRr1[2 #c d ,J'8%W t'sLȍ49U^&)8HD:9Fg)%. b s 3yrx@IY"а"E"du0OF0M,K6 ؾcl80pHK]я#vҰ6Kz?Z00h]d7L@5_1 E7pSG{hQ͖lp:=~?qyriJ~`(ȳjbuwczrͧ+M)ʜȌbP4Rs"RLbo|>ܟJiWhߜWq_Z29L%@ uZ҅Pu]xXԆGQ\ ;AiuHfJ{5:./,)0ʠdKO |AedYio-)"N4cT ~m\LB]z_Y$1]> CbgFcD?GKOG_<< 5moyٝpA|m=yO?8$d9C*Dm<&̖H|s*1\]2/>#ys@+bp:ٞ燏H;q,pv-M \ĺͫ~YW/.X.V@qw % <"b,}e`P Xf~=S7u3;uN#/Lf * a1mx9JIV.y3' yfv*2 ZvluN['کIE= 3sZrH7Wh)=ylɵ!*vRdq=nLTP!Bɿ?w|on@׽m('#v`v{ 5htNp8t^GnnʊC`1YLq}{C.#ӉN݉UURi†/#UbFm:\,jy +fix~޲iV+bY%z~Ա,.g%oGϰ?n{T4{$Jͮ1{x4ǃd9?1`yz]7 Ww jdYל# CzFVtӈUU̠Za'K#* k ]uQ3?s|ǁgV|w˛;~bӍ'^[&!S'ߏHi@;nS,_2I53/ zblG&|`#*3+N>v쇞L S_mF6qpl<1'T9'mԌ<(BYpu8=ޞ(t`987t(:dEذh`.=8X.֦’g~DgfS[ "r%S yQ0MJIi"US3YKX빺FHt%bC%y^2WW Dybb6O[(3IYH|Ʋn8lwWso uEAמR9BDany?yd&'/KF@%uQR,,9x~~"PVLR\cziʂǧN! b6[Ό<Ϙ55ٹustV+@| Ȳ3ZiO8DTJź ZIT TY" l"x#S\HiepC !`sTEIn28=hw\d:2 ad4,Rk2%TEmljcjEJ~&lot=aDYs,C6}DZ>g,`p^h ac7Ġ(L` Z/<<!eOZ}*57 $Rּ'LO577 CŒ')iQ)aɴ.Qo3)ϲ )< Sg&-.?s aSY>ʦ!p3ŀ(댼ȿKnooY-'-Ӕ#:9Gnr1JΐEctjFWR|Иs41tN1Ţ'潧,V& 2eΌ޿/?̫W{EuW͖K4NdUfZ0_.(v.co ^s}YIV; j${v-傏> T [iN/O c$+xb\Su(mhO=yV ~0Bϫ=7 0ytdtcrـu?>O&1UA8A -$[Ks&J?%M' *7/,&BRlrfK?C4*S0Cye%|| ^_^qPv=?~v«5ƏGnWk@# &~RF!h2|n帡p%vQ30^\̗3C:9p*2q}J Y8Ch8tFxZ v<Sc (+2f`p`N7Lyհ;yV9/gM"#G:w-W̚kFf;l@7n]8E_>ee =F͉^3;Z9!ҊIynP芀bX) 5M~sfɧo;g=FK{~_|j( |잎q OQeH)Y4 L-wo^П^_0Z45k)qwMpSjw050ČmӟN4,U3ucxYMI,׷SO?MX_q>ӵ-Y]ϠMM?M~#i#14?[\7_-[7sv;Ӂ-(=8)'^-fՍrUd8p3o|~bg~Ԙ(rnicGPyrNiA{8ry{K34eX;,И 1ITD(4Q(1uj/d"ଡԈr.n/??sɂkr"À4qr2ǠaDI b;u ǖ:)*rh9|9Ι EKB%rrv6tdUT߳x{˾e^$w4Ja.+6~Hږu=z`9"FVe}ju&'S:_Ac\@\i?m(gdfߡ\]Ь.8? bVd~"f%#Ntt¤8TMe^d<2Ɛ򒦘;O}1$q9(&>x,#5弜^Ȑ:,Z'W`LZ6[q@r"vRKgZY4&BlBKO.U Yxy "(p<`4ص'DҺ\ Á"3Z ft$ځJt,38;2 mr}뒛[DyU0#xY?=1MZi`m r}:k}fxNm8\Of*2%l[lH>MQL`7な8TyA]N8Mg1&G+I5ੵ26 aR&Lc/ u"02 ェrd87Q<8}'i|iGz7gQV31LS?E*j݄l-4"K:`:ӑ-˺Ԟ0JJF]veΌ@Y:2d 8QJ✥0 ( XG4M7z #؝Èl7n :'x~yw׿hʒǮ`&:e5y>g2GFU8N#MS8zl,2J3\ѻ 7YYP'4]7GJ>IPRHHpK"rd;2%aY 3W_D!Nߞk7(!9YP-i@ -8G&kޓ98h1:Z|Hʒ&U8lj}|Y>쏼RłuI!>gyͫ.W S|I4v$Rr g=4y,n~(wHc򊦜327RzG`LQ渼AW Vۑk.nFoqf^Fi?,mu]ϛr{6";>s*-nD7<ƾ؏ׯ2v-ZdpZsW+$ \G @BT9FYBdOYK*SmO]?*Iq'X"c 1wTWsfˎYHU2 v>B4p`ť& O,xxn;7d*g:^].ްhjpmO f^oZהbO4MAV*w_hMD" =8pYhz}ǬH3c;s p"=WZvˬ(lBZ`#eU?! אt CǞ,%rjRT9qqSĄH}}<S 4H;lBUgg`~BPJ0zB^ܬf(%Yoqij#o,cYTחس:/ȬZ D!c >vcX2l?}f3~*>LPi#Z/f\\]b"8G>&;GYt]j8tR$V5F({a{%I?C{l1&?'>>~heO+L}χ%MUps{͌iK<'o""HY! b`pSEH hN1R-01` B Ϻz22JSfgx;1tgHs&%QUEp#~{"GK(f򑺮Skkb /CdvD-34 YQ4GFvb퉫e* `tsl9"*^v/u:~u45>0<=e0~?@ڑiE{j,/)*Eh˚`=yV%7#EU"q\MK7yibV%n+6 8g* )ƍSjL-kuLJfu IdxJ{`1JDe]הZ3|D ȴ #TG4!(P$ĐJ;_2B&uyw##Lp.ZDesrsATbA3Eh3 c?d[>Nz8xDM1R#`uiH3tTTq왕%bQM)Qaj]īW̚||6'*|fpvy|ڲ}hkh' 2ʹ̰.5QzT9'//qǹcrxP O/N^D1r}gHGNCvBr|M9d̈y#b0BEŷ (W nެӞ ǻ[T v"؉ñi19P6so.yQ3+*//l^xw? 5V}wJQo_y yGSH?=Fp,4T |^BwQ䨪Xev}-y>c̈RyDsvB/uˊ.@yb-?%߽ qs=nx= In{) 6>DG-/f?~sc0<{DힹeM&q?]2:iBpGN#!uDZ )SUX;"BL\g"Lr8OeIu"%bx-Bzz/"'/+vfSDr89,֗:pGtɋ(82+ VWDxO[q6y:׫+v/?ٲmOÞ~n{g{{m@ ȁ%B۰$MkZHm$$$ єHhjB %$(@-Tvu2vFddF9Z{9x)F~"/^r=I$ۉql o>p>} E!蚁7>[ӯθ~vKsE(A ٿrww8vf:av\ Ȩ7E=_?Sm1bEps͓9$ /&HbgID-g I{5Y2EZ'"2=3tQ!ubF鄼HuJ)2p݁J%,ӂ\%kO0>vO?ML3Y$<nڑw[^uL(Y=$ŋOȒZK.!WNNuR1$|@SRE'Dp*UN!F(HF(#H]85ȏqwM!ɒ%IbS1<LӌIe{(,Әydg@kM۶'!EPBsf野 2|k'yA0/}S+,LzE7Kxy~œgT3pZG S%ܴ=P<~vfSigg|oro|p -%mӐe.%5tÀBzMIWqp g0#S9 ck oQ"-k~{gc>qg<ù@6gP!c6˚i0B?Ѝ"-jrM߶ԋ%0cƉ3 @Q qqv'h}a@HP~Y:GkHBMҨ 䊴Hʊ$-HLg)9|7͈,I$ə8׵IJ⁢1'+ Ѵ=Y@UMDJVUw[4+zQ1 =Zh7[; LHJ)iL<I?9P9IV0CxH7XHxm:;c1BŭCn'?H#"8M*:;}9fLa,ꌼ\$Yp@j%ֈ.W׿OA"/PJ3NҒ/^YrBEgBgY;{;)=C߀'o>A=\l>* !wRrV:6TeΓZGzD!]4hAPX)Y-Hr@T&:Gq.DTI:>(.4߆5޻Byi?U+Gp{K,;n\ar齏*X4CJI)81*ޓgL̀gZyD{J/P`-YE:Bq`o4:Eh IR3P|t4ĺU`#ͤұKJ1(ӚJvD3! }k ,yu8̎/2 -W4]8q={.p# $Rre*O|&swyzU߿Ǐ?B@zsxO"<..J)}OerE9=/0Ö_ggCJd&.p*5iXn igɳEm30޳J3vdh& 6.(]P]˯AaC^Eiቱ}| Ee K>0ndXΟ=G $>c=rp*U7}}ǃ 1:K7}yU%DKAhG3#KҔwGwG ) {G_GOnoO_<^/6z%8硪 ±~T9s͐.AOX Ǜv$r 4ol>6UE*M{n&BCۢO1/=dFb@ k8tC=oo)yx`\ԤGR0㾧>x|FyuVps!}?080N[/"̪X, a-k\=X%)eH Rfyt_'{(;9AxqZ.Bw{XEQ"}w0O%NlB|ЧiFxk%uƑb32FBj`g [P $D rzOVH^$$ӃnPdᧉ\hǣok?`vCH4Oh!HddnpRĆ@MF28}W2H{mS.ؓ 9.h;(8[hco֋8I [/gn*yfH<+ނbWssAӒ` g+84ENոsft`zĐ' n>e2`7~&BWA0q8nnn8㏿7o}`T%rQC˄uZHvgH9ys7҄nvXl\x~I s1YJ>|gLS/3:%xf$: <9#jﯿj[YBιXd\>9w|憫^SH`*ftcPVW :rۿ/_my_Fc|GO Ǎʼs,i:*/._1UL\<~_JVFH8R0= i[zE6˒*+{DQ24Kme*4/T}?Ҏ3ۻ;~Dkί"SÖ!fIןWqkiAct1H/p>}g˚MJ%<}>LGφH$EJPÌ Gi2Ռv"KwjG /~>0 ZPW)_}Ejt]=gW,xkٜm0$ywfuU=}CӍ.PO˿ѐg%C{'Op@;LJm%0n{EEDr,$o: )P}w ]"D% 8 $Eΰ}x"BSGzz*},HDz"7iaFJk~oɽɲk', >gČeYb隆i{yhv9#4T܅[߄Nx[UĈ8~ﭔHs*.xOnDdy1wBoM~!DMBej)ӌn0>`( |lw;|1&$I#㱉\.gp/O*yvu08Ǒy!D;IΟ,4,PJ]/<<U u|oq}90 eQbcz,KHYx)MTuJ5˲uW5.5g lϾ,| $UQdfdt-JSkz3n9[8[-ñ̎G~?ȫmm?K˫gm瑾k!o|oo؜]0#rfI(^y4֓%K3gky? ~n8`挷71^ ,.83vc8$Y nKU4m)^k 8/_;D|NMf;9cgI^9:c6U`DZlk^XT#O\QY)={/5(ffY;y3:HZX }z= $iBwlς`s[7 @w츾Ö$)ut`rBKRTVf@d !L;Gxh#f 1s3;N( tNZ༣=> 0>THr<#7x?a(kN{5(70Oqf{NNU4X;#U3RO;9!nm@H&c1N SidGX#C[R5G7#cG_@g%wk?{(Y ffzD`F&R#!1B*El4X f74'9x'k'$,hebs$0dg<!bk ǎƌx0GV7ᙉJ#詝CJM"SUx!ft!Ѷw xװ6%&9|+_W=a`6$1qvȉb NhS%߁ptGH4[%TْIx"hblG7[zdH:Oxp^}}_=_̒X1|s5 o-kœ_qf.4#-fJ;_uwǛntL³|yҎ Ŧǟ0ߍ@s=42v9x|Fs80KpB $%' ?^3 3JW\|{;Pd2(R2lJ6xhi(=fYg.0#I98i8b4D%՚Tk},*9šuÎ;vmdd& /+͌$Oc?g~8(V &3ӈӶ]dO;M8)fC{l㌒mdZS\K7[f3 Sv&XB*EdCIPc܌ B},p2ڮg:a,]K3nf7L2ub*Mg.r)4MJSJҸǜ& TYطLadUdI;S*Ia@EG&6K%9=q䋦A1Oh2#RI͑TZS?3`h,(y/--hx9zHyx͋/x_vp<\,RRH*)Mo]\.&@wÿnZςټO:')Os]ѻ?F}lG 'dODףH)]fk0a{{GMߡG*KZ1NSlq-ljX{O</S $m81̒etR)qN%W^0{sKO?K1)"{}/ps{Рͬf>Tu'W\ܲ94+r~)BxL扗oAf|ܼ7RH<~אTt/_S%8 ]V۷}0E8L|/y+. mk1bdyI{fc8h!c?ϑZꫯ(p{E%v2i&њqbYSNt3$2Avwv{G3v./9Ǧc?Oe#E@?gWtD?I$Kq.8ϡiGmC$HX,TUCCx???S:;'$YUR_lbg S7l1PnT%94{lgKYɟ?9vaz"GJj<+w;BoHT<֎#~40#e5Nr`(:vCˡ;g h$${ HTв^_lIcMG:\ùa Ya\ DqG+'9Jzƹ7|p,+e Mx -YWeIfLw=lc-I^253PyE*4 <3v\!,$*a dRFNcU[x2 @"1'+hx7TA@03e?ndlp$ e%Ќ-A,@qws\0:xNjz7%z'riHTPEA۷D p='+I3'("X@TK~(W֑;/8_Q1YWJ厇YLSOUJKZ3![*qZ[,ƴT؄i=j/~ $Ylڼ?t, %9;ljciD*g -Pr@Zdy]It4Yn޳9+t쇄4-S)4޳o( A/LmS Ib;bH Lԫ;|s͆4#I,!CCVo2ղLSS=9OmߒlmJ*Dwj,4rt/zqn7LG ʚu2_X(-lu!q2u=Jy3lqSf'H׬kh*G~4Bwl)ꌼd`J BIW_R^^],94GIA/WGK?_b?oY>~)cS)/5/ 5z?yjWw<{yɺN./(/.ٵrҼn 0 {{G NJtQtils=9l;nS -50.Vl(҂y6$E4c:J+bPY~6+&gq’ne-{ΥtQP82;|?jO%9mےh*;idy~ffo#-k# )iyxҝ#K@iœdZ5ܳ<[1[q?lXpGc9{E3(z;>|ơ#I n5,@(?[\;m'7_ow8]od‘UN"<sLq~[$c ȓ'g~ۗ7kd+nA*.6Xk0*ƃLJR5ql(Ș9yIVTL}K0Ju(2bs:E4 ,A~HS:QINpl{wyi&Wg̦僋MO펩xr^Diɋ'+LXT4C*A5MhLSp:\cKS9:,ٰl0HhE3ʲDϟ}oXd8?ډ}si$iDJIEwBa'EN.%x wkQ,Xp3QX˃䬪;`\@4}2;De~`]܄F@H$'X&"eH-;G<BJ}|&ʼe=DfF2-ӊfQ%ԩmM: RBPUutz hZ;4؉yH'2E$t%΍pΐ"(f_?;#ެ !_<?E4Z㖫'PUj5%ǻ9dc'U/GTeB{8gi,s%ۃe0*HM3#w-\<^qn<Ÿ.BcwQ T'\YIbB{.&=JSB 9 5ZIlPBQ+%MCJ(.D6}t:&Y4G3k`t%hbF҈Uw3 XoQ LtJ"H I03*wI2/(M}DUW%fݞzMYf,%]b*J.6$$I5CG)ZٓU+vmG7Frƚ=w}ȲNEtsXPU9S~S.#eƛtf= SOg x2!/"GKA{lȋY6@@+q9yg$?E"ЊTG70i~*8z>ʙ4z=YUӔG`:,g H䣏8p@h7 =$• NAfčH(ޡ')3PI  |r0NVBEMĦ?!)QR S%1iqH&22|DR@zHtG[!` g3 '*`1fDzDª,R =Mc0v%7Ѵ| pdY$?nЍ<>z'L0UƐ/ ;]"4 C(iub$:t]Qך԰z!5ݞ<_r~8+ ydI%}R}݁Z&7nh3QŒ`YVv{EAFV`h#qhq@Z$qL~Ԫ:84˫ Ye3vTeqΖLkpǁodl1[(>BhxlMZ״hξ .?3eza!#W/gY-( ׿jI."Yl̤SlR tE- & (xM+Wys_=A R~K;XH*R >9W5Lϯ{cwDKͲ(X9c,3 2yx7Yw{'IAiɵcp.IUB釞jl-^jStm0s,#ۙm{-2& ZXR?ŗ3dIeɺy8CG8_|1˺ ", ZrTfl'ƍg2%$XbIFxL!2$II+lwX)8!tJ]WLݞ\Yjf 8Р\ A%t0u$'2 ޑ(@Jr|$<`1ǘ>N&Tzdi^͆$0D1'3ЂqcK,ΰ-G~ LHoD"V_9A%!"Q9Jh`I^֨i@b]l{OwM\CJilx Rhu7INS>7[ etW !P>@ls..R((NJ`g4#$>I>>F2~F:3!NU؉ J{BF{}Vs:<eӸe%4R)(Ż$NSH^el'hX,kPaڎkSEQ>xdtv4ecGeh(3G.ةh穖+.Gfl{z82g.<|eGjS)df˪X0}`SҌ׻Oz1LYš54źFIvۆm?):azU%q͎ML{8pi,ha`"Ǐi—H$|&jͦZJ Qu9$wg=L{R,}ǜGZDK|$)qњ,^3adUVHBSߒqyO3zI"{V:-)ICo jAd%Ed4~hq8pl(R+<}D]iME?[̱Cxap|0?X>?g JVGgln96 $|pyEdfo8esoQhb3φXP,J!<eurLĈUw;n޾mq.jT]$ԗ+*-EYaH?64͞?LzV%u^'),V$šbSV-fd U6F|n@XzCfL*/0~#Hl 2iYy@'<29w0Z .8Ne4ql "S X Ȅ89A)RD I Rbc-ؓ$ YQr}O;]NLTS,ji7fCuvFURzLYq}O״qxf;aD"d;2s"IY+0H'˓Wa7Ec yr ? Gyݱ\ןm;`(x-L#uB6)4nnBXz漣22a UDm5Jv~ǻ{$,ga%؜?!=a8 ^=tػ|dOpaz?}ujsua+9A߾!_.GK߶b+CBL]-BmS߃pZQ+v-#uv&"k#H%R'$Y~zZ)-OHΐ$iTÈ@f+.:3(%Jov@ 2dYlN-5\]=a0lby{c4q3%}B<{& K:f2$:* aF{DBfQIzRc^: ִƇfg OS]P!ND3h`# I*qēg)?HJ<$@u.2L+Dd:av0.ج$x QeuɚK$N'N-(Vw]ɇ\lpFû? O L BzԖ(c\BY^26o " h*@xeW ,O8xgo^1OGEFgn^,SL1 09BU(BW1=,5ȷ*iPB""I͈3c)҄`[$O2^޿a/JD{  ۗW:V<~a` g=:| _`)cYLkas]s„ y= b Ŧ"ed$-I& :SلƐ rAc-Jk,e(]pT:G^8nᎋxT;=,ȋ<)ްޤT2Κ$OYfAQE;ZK} 'WKJ3fEl'bSf%g|ӫ/*7#l*lq UfہD(ggg:;O4J(łiIf6N.*/Q锺uF3 U,Di13J ɉ$$h%e„BSEHJ14- L&%xh5HBʊE] Iw3OH3##B-2AVT RH뛞L;qTuU"CyL6$)a!ܱ,+2#emy=Cw[?uϊn2tfh-?;'_ijIl}rDT]pNyWzB;{ăB N0 A"^w8 NM2 e>-J f3⦙D PV3R hLgfT8 fۑYt]y0tYłyTUyqaY4|ME%D[k w:c?+:A߉ZB"/?䃫G(glB, 4?bqQ ȮiYe^bgC"=|?O_ݞٜa9߰!T}9zPkL( ҄oclxuw[@PGsJZLE>6|*hچ={|ER\ljd=Ewe,5UY"<]ᜧ*R4mKZc "'j{Owh"F4@j$Z $f;SW%}r=NSt;L| EZR_& MF.]1 I\3il+tU Ñ,IhE^UUôol SΫ5;L?2=gUdr 譧kqz2Dnɗ4 O.Y{wTwoQzzan\iW 0LE8t8Zi#TRkR4o[Ri6$R"˜c"cۓ&Il8s r&F좲Gu{> OM*rî,s>LI֗|~Je5.V˒I{R/0O.^зyQy|͏yvF2~om>e[?ưے[/?0qhɷ }=Pf_1onoʌo/Iflô|(2'.Kw<]/xGka F3eU"Y[$A*uZ3-:gh{zypd;XlA)=;"?)wVsl5n8t=^]j%@>0@2h2>uJ  Yl/`?JOg_|4qc9 0Y3Hph!yxrawZ(M^Va$C9++9 IΑ(E dE.r%-JjԘid66~ &`$J0IAtl.ɪN5fX)S;.P-KRsv7 "|sׯ_gdkڜ=X1`2X%8)77{4D/n`OH{;A)riˬ!=iNlyF1{N"?RJE35Hۙæ+w yJza 0iI-Q1eӄvaG]BYi"#3Y%I1=CnES3[GETpt UE?dW&vyQZȲ" Oޓt\snw{?I;+>>~[ɝLuPfW|>%Mz$RyfQ-8{˚Η#>|~?S.Epi[s{a$/K5~vdy鉦ǙqrL)/xHA/)3͹FKULÐڥsC)iF%Yv-(Z+Aq@)Һ?&3F*adfTcd<32KC+;0˜bh;ܥnP2N l?P.ݥcys͂ng~ESSVy-eǻyOYaa sOX` ~,%md{#wjDNiɚ'\$8!`Ղ{^>¹VJy|9;O9ƍ5?amהVO/GeiG Rf_~btӅoyAҝ(%eHYmK\s>9>>2yͶ?ic]rXsʔl\j6"9mpX,u=` /PT+Sj8XXK˅~xCjiǯ|a,Ef ~[㑪y|Y-1'~ Mє0{!Zqa:?Ͻqҷg%0ܮin|\8#~[|N5nya,`8O;P+Œ@nrt2P_ dRZ4%Mp>%HВ,h;LYRќ,ٽqnJ2-IҠw7<>~{|8brͻopϼ!*_W᧻%5PoIGߟgqC/x>pnҌ/;=,6 ʰ{L68"b#ĊusfZLDSOT !'/7DqlZv^[ݰ#ֈ#d]bfY c5O,=YfO QڒǜI)^x8!3.l Ͽ1fx8ᜧ2$NKBLjV8,ql2TY0|fb$r/a\ !kT5B #V)~;Br&}`O&2|p<>#PENgixx'5o޾酟?μ}0EG?Y+J<(,904e4_ڎzO) 43ȸ3 ^AZp92#TZ3}ڿ|L+f)EJw3:0W6P: !gI3L-Â/D?c3Y{Kva,4$8}UI4yY0 )0Rbgb8,W:zYlԶGIQaZ] yN IVTXk"RHDy)A$nբ,Rk;qZHJB h<'H&%XqRٙYDPPJâx{䕗"Fə Dv_ZbdgeCp(訔&ΩRE%Z 2 ~b801 U1%Rx9I 3t/'O8%U^Zhln0k?w ʰl\` alK<?1ZV<0'4LSLy2+/=컙\:#E,ʚKߣB$H!3t!@1hR遐)pp9仞މ_EoJ]ש|L¾W)V22e$0:< EkɡiۖiBD A]U\3#<2jULiD B,&EiW@`f7RJvHF"˺&^fyYށVByxcj[m eT̑iơgy{D;f ґĐ!Sihm8e iRa 09Ggog"23!"]eCSD0zZ$h=j4U h<1\NH%Y}wӊ{UKe% O홻op-: &/(홠"ZM#wl#N Ҭ=9̸V`ǎ7&`EQE|"x{-U0<3,C " lh#KJU5vpSyN? He#/4#2Ԏ ,=dyN Lgɲ s 4u4邚y@yᢢlV.2=8&X 2t:H/AI&:o=EBd )2&H69:~Ui 00#Ĉt":bh3ԕZPK% ~@ K8Dʘ\j扅Z sI/%jEw: Ӓͨx *ʪfw6dl*<-~rhi>D \+5L_+JDOSP_kM mbeuo.,L_J$QSfz\WVLpW|~Γyl1y 9UœZTs"֒2t_8=7}Os8/736xo9/)h 6K+QsSKpH F8 %yiQUIF.8h9Sb2G4O_~a[/qn]^/oXT|y?<, ~3I*DK Z朆d7XDŹw>UKֵ0a1<^.eI2ۀ# y>B{;b=77jś7O'~5>};.̲j賚OϏ˯O<,<~x$##yu8\PQiE7Z7oN-Rj^^&B].Hbz n:gO,"J3b~7Ͽ2`tN?TuEY<+>Z(c~@ӥr:^/A% eqil/|dueź1EnZ^?!~@^f48l=ㇿ ޓ巄>\T78vGq ogeD[2Pl/z7.v9,@gyv--2gb:1jR[yҟYVKGiy4\ tB~&jͲ-U]@waZ1=Q]he"Q.2{ϩ=Ǚ"b ؙԞ1PmO^e-xzׯx݁ix|uDp9Q%~x;PѶ7-,'ymK,KVoʂ/OG~~ ~N0*jJ _>nnsheGo_SBfPot!*r ;PH370VAFҝ[&S 1_@䜛`wc '6eMكdeMDC?s+nEb  U@Uٲdr.# 4ӑ# T]XKEUb| )Y/rhdp:DaRLev,ʚqhy{޿a<7L dnӰ3X_> bA`),x9{O_8)ڟY6ifVe#LAP  ]f%8n߼|QHO%5Q fZId[w65FjmǞckSH crŦ9M;w,W7<LUdKQM#2S(ɐ-,VTŎ} QpІd( ,_X-"pIMT(-\B??R+Ͳ 4@_gV%!R^S-+N?! MUt)o#+?٧&DOW6WS2g7!g!5s]Adh!Aɯ=k!x=['82 &o2^[#B|p@n2Bt> .Rsw&ӊzEMR(2%"eRK)CTK{:Q)2CץϩBHD 9ܮiWWa럯+"?>}yLJ*KB<s"aO55ypXn% L"aUלvß o:g.>S YrYpٍdY/qkP1^Z Bj|L\~Bq@g4%Z"fe-LSW m8h3(r>=C)4H#c49QJʑ=3V=JL^r$7`//|~1`l8-_=8Xe=g ioy3<zd^P#OՊSo>z6/c p˧>~dGLS@:KϢ̙3nmjIW<$/kgɤ&J ZiTr![޼ʹr`L#zqе3i& g~Q/#YVRR zyQZJͳ*(<d&cMOZΘLS,gfv`{e,S:Ǐ9\^8Њ.5= v6{,ӄ&T4͂,+#m;FjÑ7߱~(p! mM3b H )i~%ԬoW<=>\ 1tӁrd׎ۑ2Ei9 "t_ex?c#e˅Y/Xyûp>O{m\U\H$Y~oa5wbꎘ>PM{iYL U4 ֎}ޗN+$׊ϟz6HIQ*.  . L]cc40$'N<=S4 OOa |_Z~?qS6QZ 27SSף2c&fnO(7ohҔ3N3&I0V$WyS J[jHnj#NBA(a{Bn"\+Rs@Ԉ#zs,Qyŧ3K7|ÿGxiaͫwtctK"2yxܽV|y>|N!#noN~C7'`DB_~OcK^6lH(} cŗ//BUv#ZkˊɹYYU,hx)3=>~8g< ]v R|PZ%X^J ~(.2\:KkK%e!c C_f& ֏lV+o{uOs<2yV`LvMt/X6IQYpLeq&0{txaZbpYF7TMb"+3Na He_#zu10~$Xm'gY6#~앋%*Jҽ3aJ23#OTN l&.s /;Lf\_| efBJ@͖yt]ҧ2kђSwDç/8RBVӺ,?77@Vux45`(Vk3SSEIݔ\D@+19>*(P>,JџȲy1u19`56')%bAFL8Hĕ픜BYͩ69F45yQ& is3[eZTG(+TV!D8#rDQaI"YqHpCu9!0@$&>w(Й o)GQYҝ9,&m4B$Wq"dŒ:(bx"`s)%9 %@ě2+\#iLBH'ppK%(F pdYG(B`E*L ſ7J.f%o/LNjC Lz]!p (2ȋ&/",gcٔhprd2=zQ!mJCY6=S4(n8h2& ƬbXSFC)fbuY2[rȲQB]lXn0ŖEpa&4uX9Zz&fɘƑW}F(XT5Ub#afnTrey= g*.]nEoǑ{;RFaF%pªXQ)g (o,(o?1O#y^X_㿃8Yp-x#7~b\Ú?7w @yl5~̛7(qx>2r*><39!GEƿ;`Dh2l77ya\O/-nd|WoQaL.4bAp,zKJz7€R=/Ov=h/|yybx^W"YN yaJ qBL_ueh/thtY5 Z#Ad^0!8lA23#DE2d ~^aPBƎ`7 UEE)t J9+>=ݱtnVU޾_'~};YREL581UMsa~dڥƒ>(w;sIQ$aIH߷~=K_W__!_wR[W״CƧ9RUJݿQi-ƅdcE41ٙntc/Yx5l6k2c1;xECۦal77TU]JL][,gmMz֞yɲ$$ I0)ׯ 5^cr9=(~#YVqw{ 󁏟>nWKN=͢)|xx9q$6zdh8h]H?{qBS ^ݔTBfwnYOm︽#37-Fj^> % FnUxbQ7O?GJrjBu3)=R@gh%qv&3{-0O>UMX09yU1G,+ȴFKA۶EA۷d!yz||ns+$DT-s{A˔⑄ n[fok02:3TeEyfZR%YQM sT:8ņD^VFi]2iTULH0MTeTS?2Uta0]\#,Jk&]` t OmP8( yFS{3򆊌ȧϿψ ~rLc@#!DƱ' # u2x`^(䉧;ʒ"+pF~x_!/2~'OGN灧hӞcK7΄~qO?p9C h_(S?o?P쎻M/93O<<"~+ N3鏔",ad_?ၿg>~f.}T{zBri/d.Yd[6:6Y ,әr"YQ5 @|:s1Os@w:{ǟKiSAbtwh^Ӽ]P^:&y>4Sp[~ ӟgizͦ4f}Vy U8xyzNόmgˁLRq*P,y}{ˎۚDxI~(3nղaޤ4x \NE<&"cxy\eXƺ=;C J!q]fnO^UtL3aD9?OJCc롥R7Bc &/xyz.dYZ*)݅9JrfŖ:+f1rh=KGQH]0فር<'VtF%rK_ef큥wv`7 / 9Oo3cALJ] $i S~!KɠQ)^>~FTYN1bdEY[QWG [8T5v99n)%Y ׬׫eZJƱO (L?^׮c&L`|:IvZmxL{< O=<Ƿe+'L۽/{Ňӎv]`}[jcp3 LBr{ N0&z(mwt9ډӔe!{"@w>w--e3ّLSr!/:5tL|!8[|ybQ7YNQbg2!@dg!"7ErI La"Z! 8;gz\q2D&o Șv9NDٓ5L&J2MYWw@ǘ;`tc{GIę-",?y"{O?ߜ3xO8kS#}3zΛE m{.r*%.9A |:f9\zOywpH?t( ҥ>gPb"_9A 2T8=#ud02I!eɧ_h.@,JLSl8Dr< #4'RpCAQfˆOϘ=*Hz( d]C)0MH@:|P ͲBt&|r| Y/b}U*Q bUrjEL'# Bj Yu.NDVB"BTtM[M7<G̖/(mPhaF,+( ߊb X;%.gv3EQ${ mbWǕ cB!Cw7k|u{O۶8]F^'Vu: ).h۷a`%+*9]nt>ཧ\,țT/Ox;-"Fn+|fMv,%@{9ѝvCqgXS5u@KnfT4UV6ư?vE0Dya`()ZQd;)=#5R+ix<2fE 3.LS2`\'aem{6[&%"v"qnL c߳yah0FP5_^CDzL4;p9swUYt8oֻUg)eXxivi"L3aiGƶe<À-8D32S~xMTWd,=]hg䫓C 2>Gai:vKS)')A8wi9^0t8KЏZ23eY3 P0๹ eϖb4+O>Yugx$O("\v݌QyQ /(cJar!st0Wk) /y /h .,dYHӀTjޣT qӌ =DAОOHy&ST T@8}kR+vh'lrAPcBD+32]6&E˜NT%zLW2%9,R@k+LGeMnNQ@e/Z1=RC "c!= ZHRZ[0F  qm19w ZgX;L-FjD҇Bg)Fa,fM*eѧs맍6Uk_Fdj JL^wId0TN0_7e:="٢T%@dg ^58pse8 !|ˆOL3`'QakAyb 2h(fq~»S4 yǹt3"(1!?ySe0`)㤘%$tc+qX<~ydi.ֳ6,˚cA ?nKx#8.`\MyteMq G%{9Uj<ÞM1 EoȪ *p,o_늲^2@]5\ZlY5Z@TPw% sȏj'f q(Lr%h)ȑ<_:)_.uqd~, Dx+L=YhVMwdQfsw7,ʒ/8eʰ߿PT`S;7Ys:'rE+l[dyFk)}{b Y3|f{4B?D.EdY2ٙ.\>{Kkl^uWK0ұ灛{><+q\5xtG2Uqw7Lk!y( x;UAO^ɏte3 eef(PWb-Z.P5g. [Z^քiB˜J@9GT~"JI]JTUh lci4&7B/fۖzUqO8GzZ$ʣ~yHO143vY.VUp@K)Xgb"@gZW(" lGh#nD 90By?Q>%2 oB!EB\2萿w KKOY 1cA" ZW+<Š}NӄJa!IM}ʨ >'pRQVtms3̻7 Ar{t]2f{K7o*~#.Δe fF, vZrfse9l% 2,-"/ ӜJD e+(T-xDnNI eSY-=YB*˂l8]x;_%w /ld;6ﱃŻdZY7%ˉg^1 ]HaFKD0`g8|Aځ@are]1NrE/Ɂ%݄;|8#b@5 G9E&}Bk<;}PvA`1rAy)Ž-~. I$*`Fp/әݡu5KT^3EV0mtFg9e#b@hJc7uS5%HIAjָyfZxicw[n~ɯ)'P闰kqnBRM D.!S%ZhS "+ d^VPENsx<^DD$·$E-4(!3޻$zB !nB1^i)%Gxheer295rMCH@WF! $DQBDjSJ#d2E3dYbE6H0hNrD1$H]E&+^3WGsZOqb-4Lth“ID*ʐB݌7f.;iaH N@Ɋ͌sqq~Bbw\/i0R޾&MvE- jQܞAZ€:O@Qmf+FhCiJ FSU u D-Ql/Vc۞E^1t r]iU.n4 bd2U3$h溬 ss<bEV,3oEY!TZb-&pbXݾp09n {ue _,,sݏ4ZRmkqV%~3>ELqEf^e3+"!7 cgQ*B[vGG O S{ nKo?Rg \o=qpe:> "/7<27ܽ}x\NgMEPf䵡 =RUI0Xzv}kzk}F̗| &):ہ/3 q9w[ߝ2ؖ\Qc{I.%ZK*Q5K(JDThiBܠWgQ2/T@6 Qg9"xj<%vZ.Fg$F `$"J///h n8 c?FYaQ2~ĨM7k ,e<9PA@GEwihq|&QpmˊnJ8!}d[Ե͖%Զ1uA @(KdgRZxkjD;EM!g8ۂR0 ddMr2!ExU+Cj'qY\.4?ȗ 8<2OvYMfJwQCe$(M1:F<y"SLiFČLWѲ TJD/(q{LsIHR")7e>-P21+D1d: EZed>4%!Aȳp$3w@1|jP2JjbL$,s%7PIHuW>{bMc5Jsm( )41-k.ӑ !.m"!39ҟ4!bWU)N)ub 6]Ox?x!EQ,َ,Kj `#ȺYkNgr3v0jw7.5ˑzKK0")4w%c1.ԺC7dXG]ڐ/}HxfbEnvb\ٓ%18= a2 "4T>sE.gbl6JZ/Sy~U= [kZop3OFn IJ_}LmJp4BIB*;N3ؖR EMYV^hW5/ts>y=`Fc<㏼<9>ƁH&~xOiˎ7;&۱/<x`8.,nYn K'b9ZVS.ۇ5Ka48HN'.sO~"GӧgVL/Ñw J2 C_Ͽ3hx9Apj[Jr:(0ѽ$5;n늇[M|7iit+(2l:ȸm*EU'^$Gu,K7 y:2Gf;x9ù78!(t^q UzY߲VEͫՆo)ܵ+z;6[|HC0Li8"vlvnQs^FpsɎQBw>+|;sHc\t1#Zip?{*к ^I!8|4 e qs|S)EHECW`s4yNQyQP;;ܵDidvAeA(\Lx4SUUjw1{,acJ巟 Qee(HAV(0BCj:.l;[i1"ʄVH"rFkᐐhF;2)E nFk 8jB0i]Zlj}D*e">z):`qH7*Ovvx1Jhu>MC^ ")oGr7/-v'|ؼzG>}x_?عEݫWUÇg/߰ 89<YU5횦ɲnnyBQAy?YCLje) rjAeT+hB\[+O*QJ/ۄ{~7 ϲoky%Ň$3;Y@2MjS*}*]n7$rwo1EJD)CgHbhdX2)pB=MLP1-&Y!&MI Ptk-2"`DDP2I)$<"%N'dJ*1Jp^/IIxKxjÕC% E Ć N!9Ro$J̵#JkX米LǯH͵1uDa R$uÓR(@*%DjH3ô'_\~C^)әC7S,V,o+ζ CO7eyźP2]nlɹ uFqfo?PT5^D* e5ęcOY8ۙ۷]0jnclxSoXoWy})rH^y 7DuOx5nV|WWv,+!#ww<_x~T\HV2XK,8& y [o金Ny!snJūA8c43&xjP^< h#,/'iU\o6M|r Ҏr֒Y-($\5 H9O80O۷o9!%vVD߁\5S ܔb޼ƍ#zMsՖMS"Bg[n_RWܼ:]#L,BD\0v6`*\XWl7^xn(V)nuQyFTL0B&ɋ U,W [È s;ahk$+g~~Umh0~SA9ۙL;Jj ?^C/=yPѱ^q}wMXП # H\r;<鈀$B*!K_iH/4dJ3гZ.'dt#8 [&-xseVtcE]FubBd9O3+@qoY7o^ZpSO)W]**rEQU=omΖ,iʂ,Ѧ09.^!i"/JS5 fMfrL:tUlVk޿}XT:5H0_!S+B7 ev`i, 2mH& eJʔ6(LQ,*1r!* T,+Rq69RF`h{ epe2KN=YY`pt"%.FZ@Y$1,@]7TU0'}RRgrZ1 v ޡH#%=V8QQ,7+ i6|dUTT`]DzR5UP%nr(vK^֘,cKxQ@,},nk^ |7oygޢ2 BjI,yxQ~_aÌ. X}?D)߼MSq:L|f,mjJ詪zJH["|UH1ˠ߃^e-LLk"\_2R-5ɩť=?ZiS3gݙ;y[>?~b3_hMI4Paٽ<\"F_Χ8OIh KľJ `%Brz}~O͟7\~y-u3ځY,֬VsǢ\0 Y޿v:SK;~wwKYTM&޼N"5_]qxzM##^JH?a⫷)7,tQ u,@zAPN:si)"d"Ru5bd*fD #^_q!sNuY9FkyT:# DĀ"E9dVÙi@+LL 1KʢJAeN]…mt:ۅkg8bT$4Nya ;#L^SyF] x.Y 7H}f=wq:O qcH4X]3O"!b{sGYDQ@Japt<$,L/-j cN?n<>,dI*OgHYnH P22UOibJeH^c6턷3hɉ4vZUKړ6x"]?$&TJF] +*VMawO}?bCꌺY0㙬(8fqПibv1\P5T)2ǁla0e4%e] U̻-Ywi:H'rB(i846:")!Ŗ]$tޓ75EQppQ^TTL7AL闩?4eL \t>^Zqev1CypnDx49 ӥ"ܝ@2*+^gYA-]%MEˊo}'λ)? %EQbu;v^XKi6kf4't&y=,4~8NX6Tk'*QÎ^yT!H?3Yp$C%>qkryr!%Ot`?ȼ$S|鷘EoY%o'Ysɛ[cwo_E<>#aJn1Kْe<@iFKSDXz0h) )Ԟ%E^I}`:ڮcY̲^Gˆ)Xi)Qa"+3K#;('݉!H=};=PxxcgKnJz3MVk~Bs76R?[P95N @;r #5YV298!J1ϗh_-n$\K_ByNxD/_m_^/Bs503wHpgSdQ'J/"!@1 :[6MBB?Cr}!BjFk*!q֓+ >| tgvBj&Yx-I\1MKc',婢S` oW !MM8C>$EBLN:)q!ŗI :w{ED aMaAgIdtsxaT Lf`]/ .u2enŁS@<0ϖׯ>@T8u5p{BdI駉*RTłX >J #Vb=**OHV*rПNdd.!Ed,yj 9<#ɰ!N,E^|يՂjU3#A)łK.=)3?}ojD1ЏgmϦ^#dMS4.>bђxya%ޕt"ǎ__!%<|c ~Œ̲.QHvOѻ13?f`+/ϼ$ _{Ksyp,րCᇏXndڲnj2r{]x2@7Nշؾ-bxqD'^/63FeyGr:xn6+#n ԅջ|ڳi?JC=w:sآL^ҾȣGAxVeś5s&Eݝr\5kYx ]OF/-o_X>2Tn8̳@m q~l۵q}0 0| gt=ojضOE.Q;((2W+ʠɍp|P%O??qHU?}K>?`\mϏ-0D"YfR9=yQ\O.jDJ6D;p y|zKƮeɨ7;oxx8g^^[IwRq/jsfuSwgْ`67v… UA=yYX,x#YWDp]"w~f}:j)#_ڍgki6Vk ;UA,L)N}z-ӑKLk䰏)',g0# ^\zD1Ƙ. e/b$LKZ~Z/>HSX7eMQQ8N#Bg fv#ZG,OC4k-uY.kTQQVu4irَH;'UV03 턈 `v-&Xj@- |׼_XTuؑ8rUy/4%&^2O3J+J!ȽŽ=Eszd -HH &2;\/s39Y ( >ߟ ng2r{Ayiٮr;=Φ?D}EfYt|u3dY;љm}rċ/.)E ]n I$Q*R[_ę//S)u'DZ a!^BKc4HiɔzfYUTU奬+o6xW ƘDO &PZ%IZэyQ0=!D2"Hا&\,Zʿ}/Q'*5kGPptBrYEbsM|0Ucb']WWt~B8 %·:S*a΄ 4,^v;FW%aA E](*}O 8L>`I;稪Xgkv=_%HeCk'5{b%="=<==l[_fftMHt4"rJW!Fl/B!4vSwp%|Un*5X兀fzujOG:'zD3yQ3wg'E.#:7dua9 ٶ$ڔJi ma%EU4ŒyG0eJ2a K}צ9ν)SQ*'o6L<Eu}Ҹy$~(RehXl% l0FP5鄈@ĥJXcB(òG"=㏨03 Xgstч %$+<܈N1YL%~HƦo(J.7^o1>F<28xip1"6U&ۋ))$wdB&yMKBɕ!}tx/sTZLKB4QiH$& "\,IÊh_`Bd>$[)DWSHȤAZ 8|dTDG%%V8;qN0řY.l8-0$t|<]jTK Cdv)2wW{ơ'^FbX3#r=}_؟[ʐafzɣLM9؁j6~LO;+8QEUXx~y)rFcВuA{=p3Ui%kl3y&WrPz8=QW ܝЋyz>su; d`ƙig^q߽f)9:fmWo^s/3L0hٵ}Þu!7 nbIGہxN=,9x8 ՎeZ,᧟BtŪ..03|O-C s϶)xZjRZ&-SvQ4%UQciT|8#fEI;y[^1=Vq:W{![/ 8N\6|~HgI0ٙe;yr]z=Wτ,s?d Ucwk2ͯ~'@rNmGY<]dt#>Zpatx5ac&y8S-4Y7'3,q^2Α)ucWtGG/= #B_*ca@(ES%4t&wUg!9mԵ(t?Wg֫ׯ?-ř ֚8;|]ZqFÙe&ȲHc6yM3WvǷ~KS)P߰s&_=X!f-͆k.@?X%yV O$V(ܝɴ!/*=sVyR؍G^!b GyX83Y4% EUTGKq{myA\Jr. F8"c1Dltn&ϋ_fx!\)L^2:<3nH di_% ZL"LĈΒ#dbu`rqJBY<'9uiDc20P 1nFƄGBw7S`<M ija`Z ua:& RXqNjmǦTDkg{}E;{#YQ'\s c4./yn{ b?Iv_v( f}Ejj)Ӵ<:/ٮjQxhgo}1^QpYUa񏎚>\_϶gQIi+.L@8&&4!.q9« Bw؋g7/I?c&ĥ<&$bYV2ErmE۶dYdN\m񀔂(gK~λcj6"9^ !EVlbQثnv]cLchr=ɋE߉ZBB$K߱; H\ 5uL<[ǟ3d M]tsdق>5dEo8Üe7L.yW ,~1Yj25(3Z2SSLSǧ" hѸE8ZD%Q |;Sf4b )=o釟 Sb2Ver2mLg=.Dآ=T"0fzCY4ǁr;^G(#d)J}2dE*skƍ#pԙܐ_oSbb-6u81Gd@,';I&(yOҙ΄uNfkdyLrp||o%^s<'FjY1YI]/PR?ZD٬Wtfd:#^2mKWIT% UdJ!Gy} I45Q :~$+ҢL{n*i6EH DO+Mt0;baV^ԣbLNqH4L6# u<}QEV#8Lb>J{L̨AR3C-ȄN @&<t 8bD}6)K`*LBaEjF^Rr!&'6R"H R"Z4"ndyNLb>ME{}'T\[ɂ } Ř,o%&GK7b-<ߢHR,lB)., ÔPjAaLϵS`>|KQ[4B %E-yP2mZ])+Yt3<\r[|ޝZJ2;G3&RG,=:ilEfw\&j8ler =a@*B圏fdTR$lQ^&ˈrfT.W[1_cdf8٪d%5˫o_?BO&0/@dj\#E5źO'G*(>~>W+O.Df;SRͯ{l?snGl?O2iD9̐ sײ]3ׯVgJ`&>ZFC@q%cqS\3Ɖy uE![7+^iuL<ϸ~![a&Z٬ij$H.ܲa;<,W8/u&ӌ;`|-VS7L\!/B#:Ƕ??Cn{"#өelPF߽Y. )%??9td&g&N1 |Yr3ÎE;[%v9Y-4Fn7kv#Knho12N#n((#ۑlj T3^IZ*N"h_ȪjxDفdN,iG3z%3s۲^(l*ၢ^E?=PqQUߪ2M&*(0:[n}{GYy Hii`]QR0='#UY/{F# nbU/-F$2BD,*K,Q)qB#Eyym&܅/<1`-"QJFPF$p!@͖"ˉ*9q" !<(a譣r<ڙ(KLvI,#!1ҏ=Y3AeD2Tb2vyF% d"5 pzْ+EwD%)f L:Uɭ)-#廟Oe =fpTĴ^o8gBJ|ұ.S7QExFEWQFEXqzuͻ~MUgTɽ:d<˙Giu) )$>9@旨aGL#޴wO^<+~ɴapm)򿴈_a#R#K]r`:^ %:Ӡ\(N=JIOGL cGeHQJHMD.54g5\\2PӐ'w1^߁߿8Ѿ0K3_b1By9w'$WkP a{TjF+ 6[?s{{G38|xǖfUS$F3*²^ǏrQcO?='rܭ״Sr4+a?"'2c2-|r 9EAxXwztZ$TuEw8o1F,0Oe=REYm6mKU;LyL&3qdhp@aQRW||^ox݌MU)?6Ss @ !+ qI\bf,OFt4tY.` ̈́axiL.eێ,qO~Iߍ遻+EM7NL˹ǵgV 2ZO>Erpa)qRr(Xw=mwj,%S 0YR>1yN4&(`iƐ@r IVE]j G .7Ea8-eQp"/Ȋ=FJt aV'}r&x;tD!ƙbLEh3> dH31A eN]' "*Q56DZ Osɔ",a2 ` <| I!F f[ Ѧ\(oScie#1XTZR5SwN'RE(+p~c( Mhbv+M,vXc !]:Pers,hBgBE@>!B I^t ӊvBe&&W~ ;P5q ڴtr(1d/%ΈR(d%20H)iT+bDK' S$o➞|ɤ1 V,o~O.#0.MrCЂ4) x&7d`22DkTqCE%Q|d-EQ0ώfr;G]Q^#=aׯa͆ϟ{lb?q,2"ͫ+{br6+~=?y>>z^!M=i&W!'8ƙi_L1pq*kb -?O /ljTq>~0ݞ!^Xo1yfu5EϏ`#+7؏kpc&o;oW 31կ"*7771U1{6]wjڱN,B39/,BE?Oܾ}KKh : C7s~<n֔7gx>qtT sx~8֎l LY^m#O/WWyɲib(R7("OGw6c{xTn[z?Fr 8^_3a)y>n"YYP-S)xiW|gv]H?Ox)Q!J^v{9yPcOIW[cŲfyF. -~m4UYdF3><4Bcxٽ@}B+ɒ"Ґ5Oq*K%ӞkHFhRd2a@I2bJ.&"ӜsDrC@ͱhʆzҒaSɸ^BiBH{"}WE0O֕C Sk(!0OءLjS>bY1 "yBe =:*/!c0ƃD1ib(rcdHTzx|, X5EI?91p13Gp̌>֌6!7\D $i$#3bHaKX/_ܭׄгnyy[uϿ˟0YeEjai8=tCdլxZ}˦ipnLL|,/Uj+f7N~opB4 M f|ye(J mP.BHKHӋKtX.\z_wB_AD`tN-#ESM#&/Y.7L6=aN.PYÀD%9fkJJ)w IJ XeQ1m_"j}=!/,/\/Fm)Oł_`y_`;R uavOXfEEeZVk^68^4VY TrG@FMo>Ntn ,Y֞"הun KKF&R36Ϡȱc<扬nHtLS q"2Ϝ8Gc$W+~dlRw䬷WQ]8EҤy>`xO`h-r3: a[*`iL92(zLLRRsx>#e)7 B~Ð 1OLk$t#DTyyi}sM.4!eӌLZa"!2| # 2eL6lԸU#__;Wp/, _&H_/ -/_ h1\Ŀyb(hpp)0֑i [;>$ׯnٿ'f0t aY7 N 8"K?3eSq}uſ;+>?pΩ:_ C3ɹL2@?d:Kb.V*|yrdz#XW2pڳaDd#4C(UBi3E$ -5ÉkjipF_0KR%+[n ƙj6iJ d0Qo8-W5Y]1gO#;L+;<"bn-GJEZQ%O/ܮh?rPL]o(sG|?ᯬiZ@,놧Þ,/yOHn9G%/g~x+irJ]^Sa9@>k~f9w-Z3#K!uЂg͊[UNYiLqfHU͆tB͎M /LF#Bj3~1 n6|3y7z^bYNO&#(,"%KMirrdUh;gy Ķp0 Cݛ2% ue^CG3OgthfeB/ͫ,R>Mt>H%Y8tDEVX?aJe*hr4q~~&\"\680CYɪ(Tp_~f^ョ?ܑIJ]`y8a ضeÁRk}>t>19=W4ÞnXݾnwfQVFbo\Q3՛k~xDup)V@ZJLgbU#n CdyhY̳K-WJnW_)T/JuS|#E̱D<>d2׍q@(>2ZYU v Q į[lӝZ71d"ghi<"Hw>瑐!q1Z&!K(vԆٝόsQuym@Ɍ\?Ȇ Uex:ɁJV7 CS{Ȳ?x-Zss>䇧gNZwDVfW_3ӁoݹKgɵy [ sIQY$`H!qUӦmB'TCD(8&p-W-?eNF(0:CJsB uSs8ƤC}0 ZM=@!~rEG?*; 0R1ڙ8Uxa-sȌ=::<ҵTB3M"N,%$.8ObD.ė8BɵwlgOKN|q])D cċ%95z*O3]bQyOI#\O(_rC)$gt/mKpAN#8Q"a) .gVHљG4SS^CYr8.YzKrH4!$2:KV3D(O;[!m2uVbeCYVeӈ ?d`'jCuu**/| ;L =9|t씜WHdS "ԖA:Ztf[LK,.5$_ 5>Jk󜪢D 5vHQPej-H2$vrCQ)".:k#FS*C8P a40/K1xJ1OyP(4`ZC02b?$E^P Q*dЗz1CIR$4_~RU-R upjurEs?5RB"D]l%&J1?U 2F\p:U)Lp/~Y|c$\bJ+_&! %QZ<"GI20ʼnMnSG#s |F4H %/uZ.!ba2*F*yI,X&8[u<=?AHg`9?`w:$ed}{\Xoּ 9P9)8G "?`T _ݠ pgźfΣzY/»W{jRL%sw[OQHrz|a~9O% C}.(O,3w-KLy&9OOiSw- q@=Vwܮ7d~y}}M },8SV De&6:bp̅%:IE&2B?Y\m&0ybZg3p m$hJ7d(0N4y JlrmhO-"82-Səib%Ȳq$-ض) &ak9Oc ݌𩨢Yԩy:xC)si^,x؟Zv)l7v34<; on_QCYӔ__r]/X7HiP*n 2f!П\bɲ8B t+ҌS9HQ]5(s{zq)rqqHy|G2,5:fq{ڴG2]m!QbtAi#H 6LS/MY癜TӎVL'WvfP>b?RZјV\#1H85Ym,.{/{'(dx.oeB:/%>)& 0KQdyGeI/bURA8V4MW֢k@ʋL >|R_oz(_3)vuY]")bH*#oXHjM'^6sp,WkԜvFJn6k͂WC4]vjSͪz ztCL k<#cdSK|SBe:ȫ&pA$s =_w>/שm FQDw3uUMN{²#wLQU5J0ˊ)ݟUs(%Rkd!Jfgad#eVPUܼ}M?[zE{&`fEV-BZaķG3΄020^@[ ~ 3h'=>Hg-N+CLt6KmK4 ?0-!@'sVjDk@K 18PՒɎR}8dimAL`!^yfF0vgBJi%؁ϴSG;Sх@ #\!D`[TtKsn?E3d!\-AHg3,mڼHӤ 2IZM` 4 ޥ>BfN9X_B&Y\b- 1`]nZ #5qE j 1z&oS чD! ЗEA~_[q B9\}4!vbi|jJBF" BBSڴ@"C&<É=EX. UT+tg|cG,G-|CS}Nd'ix}wp~zESgU.<E v` 1 EF#13 bV%Fe4jQ1Ӟz7ZYM#(7k*.4 EgfHEYījAY3̒bEeY7lDءEFSяgzIf@ ]1s=qؿ~O{AHk,%ٺl v=7/G˛PĖ0OA=3W+l?;ᭅv ?>ԛ50ΐkirLzŇכ-8&F;ͻ7aC; 5󑮛iB|:+9<)K+(?8.t8DJ%9<8H)5z<{~߰P3xe8i Fqhu=i5W޼]Rֆ=}w)=w=z}#o_c|?}On 4W 3Rj0dA؎Y7wb"8Cm-BY28ϖ,?bXfݠT+TU숚g<a-9>/y;lɅX-:"%?LQZӪĘ 󌊞: %ŢĜ0/;-J)ܣcS7f˩=T7Ș\I]*%)c$EpGdT})Ymd-eRaLerC\n(Mڄ%Ysusâ,>\.0ZnQBdL;*U#zm5?{qv:TW`$l Ȗ(lL([]._|$$0|.wHHer}{G-q{bJSs5=xA~AX"DĻ =?6U) 8@ o#{D4?/fe,$+o<˹^_%ذZ]TȗKs,/ȴeƞ=zl6ǻT%c3SKGğ{NmCHZQ5C4HYΘ~CIEn2$\'.QUǗ&G- =\zb`tetx '̳{޾ÞlQ' s@>_\U<s▢|ȼsk.֗c{X/sEk\Ψ @u˴AIhTn)9$Hc|1 &79PRSarpN2b(9yERRέg"L %RYOg9A1y5)Y3 CY:/)6!%)%г=c蜲1Y0 C @D<뒣,@j-R$0Y>@83οzOԐZNRa09~|Gnno)L,5(R龾|%%|xc;qH'BЄJ1ZrwQE7o^ %O Vph[| /\]]\)+vN͞kx:&ׯd3لuFy=*Lsh{8'F}`mZF7طLϭ!E&tapsl醁p"/rDз82~ M@JDLMy'ę!d:M'`iJ:e^"ILiNNid */;yT (x|mPҀP:clFtY00:vಒv z݁%*4SpHT1EOy&ֆx|z$K7W)8:~z15jjqAa " h(g\Պ; &_~G+g7Nah[%2:ӁisgʢB<ΧMjsS&F$$R2zQ#f .F:D;!LCzEێ@ DKf iҤbsnC$Y/LCd%}wDɊқ@=AaD(d<-"=yD\$S*Yio̲$PKR!Ā\cD>)ە*YpM\JkA"J$P պ(+uX?1`c@3H6CDE@I(Sg4D?OKBHg`-$##"9KBrAi,JhU25E\B[u{sn\ EoH˳ Z6˲ssNjML8×v+<1&'>7D*O 5>JwSj #3Q1o씀YE]*G OOx(}ƅRa@d圾TEds=ajz;t\nv[P!$ْc;&K&cX^0Z!9=MKG;D %2>\m ?2* ?l5[abHK58pbGYU˴1&Vk$BiŬ$ Af\!qT"P KlẑW eǧw*.ߐ/aOt0uGo65ce ~t@yY)3Ǐ<;qbu} ~ |+jMGݎ8`L ٯ~ÉO?Qk)RphOY,yGD27mnO"5]{w?c*X(3ɤNKKot}ϻ~vqI;6 =ZL*wO|s}R)ƾihE"h?qs_+p3Ɠg9m 1{E[80F0Ա}IoA E"_pdGdT_㉡w= 75޶B~? |S|<4t<˯92FtΘNt_)"FfqdpzMw:04 S2CC.$zx@HCŒ<7M[1I4ؑPt*KLQO?u>؝:zL/__`G.˜͊m{?XEF6ʒl;@?59楠,Gϫ/}ĞWRqeɮ^19]y}".8yXmx\sgDEwa̔09O<_]%ǻUM ՜1EtIbT1ŁBn8tGOf̫"9e 4[sdӶ-Ւǻ{+9|>cs=Ҙ|,&/O EF͋n[tfRS%yGSӰ\y3F)9a0>6X HC&k#ZFeQ tc'g6ZbcKiv}|6Lo}#JJQ2"uN4؟N}{!Z3-jSsuN.Y:B:~ǯ~38 ld* -H9BlA;(x3BD\ Ӱ/.1)EƐRgxg@3NΣs4Jb"60++&g!G(/IR'ЙF! bLVMFguog($=S (3MU+qH kNGSUE)ϙ/Þ?lyy]1kvvجd Ԡdj~B $1(!vśE#jI^h'1 `J7η>QsdHۙb:h'#@ 傻O9;b ,-y'^uTk׿ǒ^D >E>P$SKt=pJEYi,cRARB(T <ϑS_ύ}JRJR%$ &3R8 1\_ӇwL-g{'?@۶eaU(HBu?8cGsS'Ѕ&Uki.uJfJ(E/ŷ?ct'GQV]r>}|Kθǟ~@)j87E,b~kMZrEw:~=֥z="Df޾c&hp؜Ȥ`V粋뾰LD69LRΞnt:**HKjƱJWdB@5Cm* (t/{.6+#Ӂkx%Zhh\F)Kڱi4'//5c?Wi@xh e A8Ev%R xEQ%9qD(!$}E#'Sv,(ReMoGD; ;eZ@?`(Xm6To^sh81uM9ݖ|^Yo@N _ܲ/SYKb:YC9'tǎ&1NH!:ن8XQYE9R,+jr!E2-%]גyjUSQ 13-:(BD=E.U2M 0ZhcN#n&f): dZSd>&ІCӡi@4UA욉 J?mҞo(%k܀Y1%:FɍI HtBDA1yM "sDP n:#Z*Pt]&)`pDn-:6a"[{^)2R]QU:8yH]JD8 =zDM]-E3 TnR;H RPT2sCfplVHQ!ȬHzVgvs6#JR b6+4vg&b]PJLVJ e-=&D״NP3j9,Q4u a@31/i~wKbj145U=X©滟_kҨ&T %~! }khNE?D919^1 ݽ|pM31Nikz@Fѣc$Ƒ ?S#uX.j7!MӞ:Z3eC2x:q8W `\!MJMSKJJ[W2Q@=Q 0X.g#qttFYg[2fQJvb+0^C;Qׂ/H#E^^Ŏ,#LU" .|e"mME AI gCKs|yNbu200 .R+qU|6kMםDgiu64kƾGM#XBQta(\/ gUfHcp"/pֲlp(NJ1o- رxyϿ'fKV_y1˿z/h~#l}=7-zU*EO=(sfh{>fUb$Ñe5g o4G·%?}dhƑqw\.>?q7w՜Z 4'ng;2KyyMn">sy{#/xŸȨ" )9rxÈ5ݑ,.{O^lpthYg&ѦfyӁJwX7X-erŬ&d7_Gٌ|~'OԳ Ghw!dX<5 G)U7 jTFnȋ tbXl6YN4H]f4mfHYW%@,zƎL1 b`ۜ( jV1Zdr~|Ϋ)cPϖhiGpOQCj\"ʬd fA@?ȋbsx'!R.k~K)m-0Tp1Lş4-tD3uH)HO\:{G&R<1 󑹪eKc -1J&PF#ceeԒ{fڐyE3t(>慡(4C*19YD.& q0RSQIV ]}K) 弤o;76@+I516>5HԄSԠ*ÛW/mpm*0m`VQ1u=,gryqNϫF isSAn$˗4oyyEe$g& _o*b1T#dK`Vf,܉bVp⚏%Aˉrz9 \?|xd^^-'ܙcL0#Bw.fg({ !5ә5 ) ,HΘ)RLN?_l6c2S:C4.LFNZIi"1=ZnC%UUuB$Hs$t:"dJF) Y95/  Ũ?|IKMrpғ8N_, ϙ)yq8xz 穹,4ev]񳯿e#{^}Nj rmBp37W\n. CŜa圫 ?oX.E4Yj޽ku΢6tbGޑUU)qTeF,cD'^gY >;<İguML88%iufs9Y&>}f5Ỏn.+|bTX5 Or `vtH˺~+f|Mߏ)zFOcDtR%E " Fp:D Ae8՚Ufg"hд,CesBxO=!wdyOY^Q_xt5=RHV/nqO/.C7 LH'Oټ\dܧ0Yj5a9<1eF6!x Ɋ9QdՒ] +N'|jz=SF"bR0 J*Ti>Eb JL]w{0gNd&bp嬢zeFJP7a]h6Hbqܔi/v\^0=C3&c2z ɮ> #Œa"1wȪ 7 y :\d8\O-䈓etPYq6I2;DҤbJ<-BecN%'$|R=,'4A!Ui/ܘ&ú@^D?A 81 W6iA N9\Qxvf%qLBPI6LEI {ח"| IxV|8QZ߿c =ޑKǩrh%Jeh)s$qضz)M˂ Ws>>o 2xuB|H(g3?X<=~dܬ'Ʒ_>!lx'R0૯6t튧a\sӟcʒCf3[_`'X˼Դ!E`#rBL̾91B$SǶ%eخ# iʚCdAQJG{OVln.V~z`=/j櫋5R4MǏ侀+w||j?-EUp%ͩ:($e]rGŹhu;a1;;SP{-i(]Q?YK8tJМ82/7q|8HW+w\/LJBږy5#GpY];taƑo_95GMSReK 8#ym1)0B ,d4}m[2cnS,gsܽ@'+;6ח=M%X7!`;79-y#/rT^N,Ws42M]ѕ&h'ré(F˒ϟC/C<(&Ó@ذ{/P.2Fk٬ lQ3v=?{ۗ~dR#vit=޿g+ -5*@7 ̖K݁jS39K,h{VqVXtDՂLީha ĝJ01144 %^ 5[?Y$ipdX%qY'R)9 怈iD Նvdžt"M\&Kg-h$Ji<&U"9˪C~S(M)LGƘ0TY>.PD% l{.5~IF^,ǎWzCR(,/..uF;I" @cH0!1tZkf 8NDi2t<櫯Ꜿ)?36˒= ՆFJ~l@O?KVwx,ScK|:$L qH,,~,Ig~ &G<#ʅDeeš}~ ζgq9Kii&(R dy= # |qDKɹTljt&)*K"s*$MPk笀,B`/:|L CzOEx> 9{+޽wyI#e'ls;&aGibV#{*Cl/V~ɻ[r^rڟ8%UUATe AbCf2"q2Î!xLnR(W>8Ss1ّ'FiwO,Ws2yzz@k, ƁaÞ%Y^79)SJKe) ?!jݡK ۏy~bh]HŹH@ĄJDe1J!#1‘Z""&6gUH,A$DIC/ \st}KHM֣eV)%ϼ@2YK-^s0Aq/ t=s1yn4|xp]=ss\/#F>9 3ëKOi黎UUn~! =W_fVw0Z)RTёX=°-xq&ӒWe0PHGx%wO RLnb} T>^^&-%0gלWkfZA<1#pH0"NL 1p=2,X̖h2THS +J|q$}OĀ/%Ѷ GtuZ*k>uӎoU`b#sMUEaWd [Ik("~|^Ж}n tFq9qv\\3T;jcˋoFfւͲWszܲ\߾dt>qss˗D?KDEŇw||ݡ!L^1OԤ`rDk,|/p'74o[09LӎwO{>Zl6\_]R%/.#<':y<ac0X܏/0fxD7o^}͡zME+ pRa)C*GƉz2#M)V7dYYp&jCa9v|uy~Yn8,c$(h#e^s笯Fnwb}}˟]ry;ܪH0|3_#pJYVtCAѴłK-X ډ8`{t) k̢&1}LiLT"qج-W(Ӟ~O5Ŭ 0~=UY}r aE/=%~Qf@+5#&g拜I Q|xli>DY,"g%^(da'zi*8j!q^ឞe\( D9+)W gqj;>u4TrRT͆1HX///X.$di)3:.!/fK^-)U=M,˘gdYά3g\gQCQq:Lʊaiid> 0dB0 1z/A+M ZW DK;rM|<D.VkrO> 5ރӖ"/)tj Ӕq>!r t"J'v[grsʢBJֆ,LNU8H=С E?^o;, :b睧, IaidX rr Uxsm$RKŚ~8u(BFs͉ټjakFsj'nW̩V30E|^DW3|l9<,h=Hl;ZOxjSrnO?E><6C,fCïiduLuVS"˙lЋgXo~W_T9 !Y* ֟+Hpg_ }/-ɑ!f\-WZc}$ła[ mjYLȔkǑq1ƜFБZ,='S+鿥2%Qya 95pҜZRӫ\lX۲hz^3ڮnJ{r9!)<|=5cG?L;(x츻d5[rA0u)h*?ج8g0Ԧi[Gp-`x63DÖnKp#RI#et2DYs} -3X]^``#Ȭ@ Zfɳ:p<52X"B%|MQ(!i&]@q%qO_I)L(ObMcג%u]SfZ(qw7bri>}u|, l?V;;`#RT gH_,eiй"ûW/#UbS@k P.D=S'Yj< \R*8geG.]2/4g;fKt5ZPVk""imZ:2TiɌZ=Y`gcJF?"Ze^ ɔ‹t2w"dMLQ*&H", }T)=DK<"B 0Z!Be S] }ʷTyb i@p.tDƐ_%B |L=+]i D>/"ߢ8#1"Im,E'Ȼ87:)6I7ɳ 7 ALhN{܋B06tC)r,qs,uQ3LЀpT\_]sw Rjbt@$EQu;#*<3 1" ͪʙl |caƉN*&z\5E yy;V<4Yl..gxl89VW!\LCY&% PJEÞy\򊪮qC׸8aƎ l2 8-KnˋyXyAQdݞd%R_3G8]FԞzqgԙA=(e:,*>? mwrMӦ($ i]KX9u%9{goPynp|d0u#*a Q705'Ռ W$)[VW̍ADTņx\߮O)~ zj4ډP˛[V|%"۱#n@vU6}̩6 Ĭ$:r/߰h-;..evGij m->W)GtYp'lSTVH Ӂ|}I F~ov~l;B cz =y#h_ӎi ZjҶ`=ChCDaD8N!jk(D#s.a5FP5gz;(7 2b| d>DG7p:uϖx;%qR`cć >3_Tf >48 ]e#rBK@=BX\'L@S?"dw[rd\szz"N}O?@U WuKɧh*ݐ :9~6f%6DjC 0DN9siJcFH&$^(Ps.e(먋?9JE =?L0 *EpZHk)2]Udi<׉K$;QȈ%3|^o~K|hY./'8 L=sfs럽:xY-JYi0S%Eab A3to4IQ,xWCh xXX+AԡDe{dQ(O<~X3]Kmtv"+*+s&m\\_Y?M5|FL)Ae̹0 )6ۄ3Z ?hbu F(\I{QLF!3;d̊)"%+ Lcϼd;De0BS) 8LL+%R " 's$W|&GHM\b0 9]qRqC鼦":ϿD8gYrgvYPLE6㖪klw ~yj=Qj9G :'V<)QB"F6,X3N'6өeXs~a躑L *65Ϭ+ܾwacssR u%d2 #,D3;IZ yVRd9W]E Af4]sbs;KY{2qOf4 "gFN=Ji,'KG4qbdhdP\Bg }r`mNWԨ}}aKEjBN4 #Sۢͳ*/ n%W/ L9 cg91*c"wwL;L} D#&ӈGLnBKMUԜ1*!2SbEx"4trGԙHQD|6raO(R_DfE8 FHAϸEnr_luC[q.fSF$HU膑g[s"9}j<y':[iS>jp{r}w%4@5(%~/vbڊ>A G WHC*f }TsR?YznVkpرk[uJRbs9 U]2EVR~ JM4HFAFTC +g;b!3%ȱ!4vt]ђS]4͎i9FM9ND@B3nFQ"MŚpS/N0ahYr$G, (&'~=Q9C%X₤$ӎy{Ov`h4!Pd3Gg|x< 6W<g1B4?U/q}8{n/_`O o.ѳX.<|>1 yzlhxfC:g6Xff"=@*e}c,^W<<=mkOO,V uo~k^BGxC)$eJ9\P2Բ0H.ʚqwX!)_F/V.0 np#ŒFf~Lupꚇ큱R68#D|xj8XKn'.>0,fI%bn,g5?{c>86G\Zjl yY4tr06/^cI8Iuv1QЍ_qkL#*GM kQrԂ^z̔d=RB2 >nl.xRbEYhwd1цXV`EX8ІbwQe9MT:cDȘ AߝXoO4OdAqq|xB>WGjFiʮa Ud<}jH%$C7'.12 $=Rx6U|G&3|]~!Ȣ4lZ1yK]͙VK1+2%B|dV_Է_p8L]ją} 2YIsv,KV&f,'qcs=ҤG\HجWՌ=MׁTe{\m6-AB^V{} 9{85tvr̈́)sSIF3,ww|~`#u1CG01c YsN <ْpAд#jA{<e_^ _~LJ YA6i$ꖲ\X5כ5On~;t׳4>SDB ||%ED9%ۻOhVQc<+9>sBHN)8h~xmىKk .H!!` q1E{k8ǞՊiEY0- DY4c83}cL1stLC|f&KuTn%83(3:/|_\^Dw={ pԏ|qÛ yQ#}cyu=Y&rDgcHf /^1zՂwX2)99ӞjNiuْo0ڑLKb-Fz~+~51=y8xdLの;`ӔSU%+ź0/j./gŊU&X3^zj"WlDBGgU<5c2u CsMFKЊ$z'zF0N#^֗+q0$)w/QfM5SeWFYa=. c+fuE4g)Kv]cr-cP̳Kf?nGkyIymqZbħCKY3-7/7 &xuuZ\F(4"ȋ0J)C12J<>DLNȗD1WCYŚT*1dyNC0yGoT@ pϮI͸4T#*X$?;Nǖ,(ɟ;nn_bqce=! oEfԠJ Ӗ2eN1R#W&޿cj:2]ӏ qtݞqFLsxYYIN=hRf9YixZ+W7%2O1ԤaǴdLF`W_F>O>v{~5Eco?<#Bl[O̿z')򒲬}93LD%4Ni.Sd/`)%6ghss www_|8;J=S1-O*'7aPJq}yiN NYmwwkt,Fs;4Fз;n")+Lp%&#ÖLt{s``X2M\|mKm;Bh9sm!%gA]kZ}׳X Q;f5MB`XQer ЩNhEU'ѲJK4ș?iQ5d"+3l8x$@%wURLB&wLNfYrӆp90L.'o}&vUF? ZMCL3"KAwy\HX^\0ZJ͑v)3St"ĕ%2)w~f=^]HS7_qpt$~i/ )8m[ʪDj5GTHV:_CK8dEI^0vaD#B bdh%?}QSd&U;}`V&Wˤ~r{{nbj( |SF ,CN/\+?{_40ZBqCL!}L"ɲ GILV>O4dɧU9Y ~yFY=Gן꺭]otOv_nN_vE" !ʇ$( `c n02c\nN>{5s5}xڧ,enMo{u.Qf!" :nB PC D?E-^HjBnG Blj_h) 91iJ8Jɧ tvqb z G"4y_(1&ؿp΃L%A'q#6iE"c#:G8b+"jyWiO2&CTG SЀ %2* ,{ :Æ JJ@fiہ,3<{rW_}0EMeޑ9F+TZl6KĿǨb?LLbHAPg]"+ .hsbdbkbt4!dFA(¶LA?g`n 㴧Ԟ`2f Gˑ]^o6dEKpĸI/ /w}Ѿ5YAyu=>=of>Fԍ?6E$w#WgOs~Eô8{>T's~/xiVs~o+޳rEFwؠaBLyCzί10oRc]CKq/~eǗٌ$>8}'h83NOm׌CV0vÖՊۛ{LYXD`׶/X5do釉ß~\G?Cv](3Ng3VMS,YU5Sow|[mwTE~ra6_0_@|< 'nrW\a?wD(RA.3L3{~[ܽrE-8[v8:'ZAn nW_|݁Σ~7/f*O g,(@[oDSb!FFf%o~QsR4?A9a"yqn7} W'"<BI;W"[Uox_pc:)0YA ES63_-ap8KH?MMY_00ӿ_{2/x #\yN>v LE&|Lp@k8:Nq_?ߢW7ka`y~RckP Jkfe3Q\ٳtCOY͹{/`IucGfF45uY0P8vZ1tY){d?&uwGDfr?TUyzҎ#aO?I-%uk%)Ҡ.ĈQE3"]FGH]xm F?q?4Х1)TZ!C9 F;MEIj'R-;'".J1Bँ,S}&> 0f)`@ {GlAG\k^\>(oǿS_d&߭Q°8MJS5-eSѶ-R;\~чqϴy[:țzd@7tLe,zyɻGBzbl5g>PUXOas{}ͪjw>aGA\Uo}\_7S-|OUV !sdJbM ,ӑYk_LAc>}Z@cY) 2P`&;%Pd+gG4\N, ص;|T<‡dّ"˙& 4桄vsd1;qd; ^CkS)༥ddFя=?O|\O_`gC7D" 2&%} ˄z JNON31r:_]K^U??ȟ;dZ H=FhFXÚ( adF@n Re\3 UY #լaZPwDژY?[Q*l/g=ŬAG4#PD  ԐB2`-'Ou_ QϨajĎ;1ˋsTIS~\O"n&/:\֨qsCO~K ~׏xûfF:GKT^'#:#oD"R(P %k9R?{_N#c<1 ;#":5y^[@Ty7ϫ[l71:`u׿<."|A#J5'k=~57ot$k~Nq*(FC`ї/90MDn^[XT'snߐ9A x3f5>Jg<{vNw| LBs_-opY1s#(E1=dPܵ,MmK.S*O.g\8>?Fa 2D⇞̥=)k]=%Xǰcb #'ɚ ծ08ݖ}8;dp. o_/q?tQL~oY6%gO}FYD8 "/9|rQP_,x+fbGt#]so{~_%BLkf%<#_s]@ޔIH*vRs'19yAdoij6tDߤWdCcb:9nl>Ce dɲ(Jr &Oַ?䔫0_]ɿ1v=fG&* N(g - @aJw:#U=;&?X7 EgK O.OQRp?CkC![oTUM3=9lRpp߮ p#WˊOιXw8g#I?W|R)=SAhtU2 3}Ji L^QU((R-f!`{ ?gɍܯ<'$n}eupݱ&lJ2Ol"Ĭ1*8{̬us'8 LP(!N L//NXBÅ@S*Qg,O 0~?I&* -QBQ%)JsvL!B 9uIXєFeVC0vM/'~Nڬ!$ԱlqC CY晟4(3.NOtcHh K[/_M Y3i'_3E`^>Dž`';^~Ȇw|l~fUl9GsF@ho)|rpu~KIn /bRM}>$5ɑ19~#Co<~UYTERTUY! "U7r *N(RE "su{#4EQaL1wTf30N,>52#i=y!Jw,5tHPxY^GoRu bL2R#k54w77OY9N޽_/DAxeŷ^~ʲ#mϗ w~zv&$Ŭg~֟g%Oɟǹ;wu;EV0rJXyʼd^ ap ih nD#VF &L_#=~۷EVOt DkǖɑFQK|q:#:]!y "k??~1b{qGH3} kn89=K]O B@tBHa7Jϟ{~ Y ۑ!`r=~Pи`͆;9.)bANJd}o;~~צg>\=|ZEcsbmL}.:G3 h 4%l-Ɣ2O4 ?N`݀%{87:D1 >l)$>XQW%.$aw4}ѹ)$%zLy<)9wd31u-&G uT(ޘ &S TWZ!1Es7ӛ<$qhD7Qa`u,xs}KnYΖLKفwk駼yC%X?v,~Óp}*ԥfӵfsuDeJ;CbY\n;L40BQe%w5a;|FU -8]Y1zni[ ]-{OTE*q*gdJS-a4P8*EqZ< (MD7 shƑ(7UbʔXvhS0}RAi3 =._Hj,Ȫl>CR \XՌاM ()܄3쐒TB@h ;~uMY!|Th)J1#49C ӵPMVGFeJ*gXAIgb:ThE'CdzzGpThmc980phxTcshgY㻿Bz?RK{ͫIQ'Zv0 0>onԆ\tg[']7Ty8u| v}#j ?S y*Qák~g,U펽yEϰq\?hG c86iL0gqltB6B-1U<:$@p#Yҿh )ej 1,1Dj y^A1`9# nP"%OcwLӈR 3B cwl $e !մO1`L0 GLO>Jq?6>ŎmdXQ%3y @9ɴ۷|%=Alk9:ϐRffnos&ۥYçO+kzx=S;Ϊ3l7\]<;G # 5@*E}ߦJ*EQL.2(M PB*!%EYSϖpKÁΖp:c}$c{G`ØJ5 ÐE19K7 Fҷyp9M2/01cr#1zzNP}w%@C&d:tH%Y4 Yi@5[hj#13g8)TD˂,,;›Σ2LR* .,^%Q Cf>cn,q' 2GO~~dN1 $%Sy[~>>]ti&%Q6s !30($߾n ;F ct/3T7ة#MAP%tXRRSv;KNNΑ2EbvkZW%gWO9mfCYZ`򎉈De9ESa 1Aup%dtL$k)o2D2b|!2:O9_EE1xLf,N.ARށ" AdH#3I׏L0 Iܠ %i sM[LS vEY%?6R)r)S@ hRLBe[iS SDn&&BR. PiB!5Bi E~h@ X )O$iK? ާd"Q#D@!A!Cۦ A&1"?|O7>Fxbj.t(&V$u>0\G0L{oaDII)KT8=fqpv`"Rj^?~h1FqZ'lc9,f0j Ui)MRS֨P R#KNg+*c`rX~\ "ˢ)8^6nn!2;8=&d2l||FxT1qujͳK2%OỲ =1f,er8k;fq)aqݦ{฽cse{ew\]^PAYd01j?2l)=˓Sꪡl?}"۲Y1D>S? bf$ f>czųgW>N<\?p@]YVSnpi )Zp:[+S Wp2;Yۉ|uFQ$wۑ*+tᧉ˂o}zxh'N\0M=Mlbl-qzfp2++DCs5OO . =˲ĹWYAMEʌY3#AVdE)8+[}G2ZMXSbu4 /?kQyb|2z]Ysݍ9}'l(%Wg> =??[&9Ղ4` ?}AQ44o-la&O}z;6s%oR+Etd޽}:dRk;h U^JM71'OX|$V+4n7,tA.}ƾw r!»n (5gK.Y4%HpѹdLgerFg%BfdQBq&9ʔ̖Kv]ˮky\?* <#/suRpvJGj`1_,Vcj=Θ BOyþO~B"5"Mo8/<w[T9aYW4Z3-{;Ѻ I!2V%RjLP%uljbE2M-Ccx><_JD;GVKUt]G^LɊhNf)űL'Ȭ^\,O+ƾ+ / Q0 AUD+E&sLGH;;ҺnS%0&EfQ#c ,YI !\,n6&[T׵TMM,(z۩HI3CMCiM&QȣT.y] s{v{mJ;$3G7̛<鷾ˮlkImgRhrayI1ٴ,OKGb)й!P iJXk G0D1 |d7o{no?t8k0F 7&ܷlYU|E3c=xY[LQ"E`xr~JΞdÎn|ryNgm)@i Ӛ">B:Hs :~XRJ"+y_7_JkDe${1GhG,#:XG~Tf2%D8XysB V'zf- I[urHhLfYaHLrR6(PJehsև|>ugϽR)х"C9_f-UQQd3泆]̉S&]ˬK*ȳ&膁<~[-ݡ:PV Υ\q";YІa e%:=9>p:EJC(!.% ЃT9ʘv <gyG%UQ\\^e1w[YO\^=Bz% C=y^0 !Z.)<T%ۇ{r9LYϼє5˺FT6N CϮ;`(~e2u}.stV2-v42)("v*aZwXgb %, DۓEJ\.u%^Kdsw~CAݥKS"[oج7L20FZ01=I 1F a,O8lT !%as;@vu]g50P-WDM>L;|@>Na|tט,HыѕdRaWNvMq}0(‘AHvHi ЂxZNf5ͮnj479wG*Cg%R-J::8U 3QIljGGU Bh`L#YF?ʔX !J4(2 5,ł2W5#jp*FK6?e'%MB 2ha}!#6deơэ`Q(a@ibjp'䎾MXwTgH=úBK?X?\<}'|k_̖缻[`~S~ע3C.[:a8W闈NO)e*S`MG.yqB)575{6`\^}\` fZgO ՚n͒eȻ@}>'45_}SZM^v;~D11k2ևY 8rQqr0PK R9ȕYx-F)-*Lv|o|ϸFȬ2I5O>6z|9gV%Rq;@V@T10F?R2޼{CQ:r}}'WL*͏{>j~EkG,sݮc KΫY9REM>[K&@l,q=sg;ly秜ܽa7 C#X?>"5<ʞA.+nw#)zŮU UQ_d4j-"ӚA(PNK"a e^"EmE{OoXʌF\liQ 'b7@( ͞9of8XVM;&[LVHc2ҹڠ i~ P,lݮG5-hBq1 LTJ 6[#KNq\|Q636Xd՚lΗ;w9/K6\?P]o1˒1`s]'-nL<'mr {u4aۖE^nv̫`ƞ<(˫+ x|La=22#hCaO =JjR(iЦ`[|Z Z\Te]a݄kr1MRb~f["|br SA*i>z'byBrzi`g1?h˳SfwZWyd-(U3 4/dl"+ߥhR%C{`̙iXZ#W<>Eˋ/(MtgyF=RIZ,2¤ٯ7Gvly¡p1p6@IM 4;Zw uB'uH`G,)B| "J+Rdᘴ"3M?Zp\%`":(ÈnKvly0my !ٯc+穀Bg<0Ze8>}p4*T%C ³5t》̌. 횺(;&FUu7|Y-2cuR&ûkjr@;NNjÒ/o>csR)8;LaVQi'/ Tď-/OOx ߽'uh %2a}'Ϟa j*fSEq٬g/ۤr>M3K¶EYm'];"|T1Mڣ"+cn<3 &q@\,Y.%5(-bW~ˆzмyy_t8t.NwJ1=圛7\]Zf=8|tܾ{GjI >IS1w[C1cb.Ԩ*qi»cߧ3Q3yl21 PU80Jjs-S#p j E?tTG0`?ɱ=#$<7oД5"@O \I$H ˲ 2zK; JB:!2y'R%.i ҵ; X%иE94Q4)?TeByn»9 w4U, &s졥n3(Z 'Z1Z|Pͻ;^~@ uJD%slQ`~~Pwؐ3 (L*Mr̓g ͞}o~>݄s,Ie8Hq=4M9y^_˂^1_q.%i$˚(60ЙFL^8D*t{;v) 39BT)69u=C( 7okj2Hk3&Esu-q04&)̏(c !ǘv 7t\֦iuYجcT7(S$P&1)qMގz $ٶx JPqZ AJFc G`K4!QDJM`t p,zB %3ypR J|hIr/!+Bg>[޾GtsT`Y{RtEK$Z}{Oj~&El~/躎r&/*Iîܾ'C?qp53Lcs{G;wkʓ9^!y) aݥƤɩN)Ģ=pur/__{;>hLs[k7%(Y>;Z?|rw;dFp):꺢kja4AۦzRq725 ʯ!dJREvnbvVpr6C9];1Y)x|8; na<mWa3tUs~'x`[=]PsU]G=?0t~wtk'*|YΰR 3޿~;xQhaej&݄F$ O:vY`W_[QGC#IljDtL$/sv_H%wUk)Y2qhG]N*uwyՓ=+&o 3N APȻ[!|zE7e 9(EW${5,u<wRa+E^ӧH(3o-mgLIifD;`sWxQ]\@diyA ԓL3 ""7,N!e686E i=L*3,O0uIZv ͼbzq4 #򌇇 EQQ DfJ)JHm)!Vmyk@!>8nwkZ7bݳ,rΫǛW?ǎ0ZI|NDkB9Ö1+L!ZS&~+3Y*z8ۣĺoiZqu&|$8/:[K߶q.1`VuJ1XG=;_rh7eI4L/?/Ʊ%b9;Y2k߽ǨcrBd"B^FbLu=]LMk]K1l:<06r' 2%Z %:Ϣn5 AL@I$ӚR<溠92 -DO#=%2ĕ $.)TA8-eA"Py>gPA.eU&0bװ=Ban'lSnF;8]ּ|zzz9T9jySmZQ䉩a&2[I^4EF;2(]T֛-EEp#> ȋrʛ[u]ss&,%xη1³:dyzdh{!75pr.I)TZ?p )x!S|Ts}hDNX>D.y2aMdbL#? XN]hGB=[`Z~q踽IpxIɲcȲxN8?!yF-R *JT/NiA&Jwlw*pvq;ssaFZ@k~0zvxx㜠PӦl[ЖŲUL2MhS˘/,K#۔T%w0+kU "%A ul~stSV%&+p;Qj&Ɉ4&m:ٵcd׵ }O ӈiX0A$e "t=;JёWFgDQ)U$jY@m FKtTx0e# 3 <*20V~J؉E.s<]dPTn2n(KnThc?ϩJ"j^0?;Ag&qz#MCg<}*"ӈkt%EI,N 5'W=CHxw}E ) >y"]_KfM0zioF.fjg?@a*S"_a "3@*QY)b% S<;ڞ"EW5G&8l5NHt='͉Υ&x7ҍG@ ŊˆC``XH{!b,7LGzyJ9[ljkH gĮGn4g{ئHlO$0v=*!1=u (J(8OdXQe/:78YL"HwCk\QD(e@娬Dh>Aߒ P)6zDPGRbB"dK )= ѳ-G2)LHpF@`pڱKV=*h!P1 oP qq82c:T4OG&bjHQBF R.EűIo8JJ%J4 07Lva)1=`t֧ƧVxrJ_ BrLqeۇU2EJw Tu֋/w{%5vE'{4"aq N[t #3xݎYZpҷè{YEs-8;]qO~%*l#0_6 ^; h2قe^Q)K{LPl=H(o)qGYD\|j *~Lۛ7[BoђWv`C:wzV  ޮz54Ms)z/=ʨfŻ{ݵ|b>o >9+Lw2aebǩmwmbv=.XV޿c:t ܿ(s> rw?{dː. jyͼ(C#s ->̪^~W8NHvplUJplX367<8c@!--&]wE7"TV`Qt?ii0:%fM$Jsӫ^>[1m;l;D7:0y-8?!?xU:<؞۳:31v ÆW9JCT5YݯKܾ%b9?_|23t>;'hL̔:*u]qTM |N;d:zVDI%BJm޽ATsg/x;96@Y*DX5c615_&KВp'S*Ɋad{ʳ3d_ 5/rĦF0&g&"j1 :/`Qܲuvǰy]M{O=+[t.H윩2{5_]U&GY|J'Wg0e9T~ݒ ( o|򝟁֚YLLV+lB %w7w775.N5<6_"e8lv,W+>,h|c4OX]>g,OKrS2OU֔9CvC+Ͱkc~adz/ hޣH4I!XJ!8-"~ p狈*3vh$_}R@&?9Ύеv2^cVL$gQ3ZTJIaQɔp!aQJ;WBE; # 蜉1U]1@LJG1٬t^sfFݤzaczOah[run?qh%o(Ub28?k(k]-Y8nov(Sb? ~e587*J[ 'W:9y"3T?Y:kQy}g> C=Sv߮Jk; *g=OpNVX,OGiCSV(#}^!x),۬)roﳜ̫ -4yfhw&9*Vq!#aXDkev La rIFtCHh0BJHl;BT SGDO#|N`#Ffx@Wlxxa+\\DwSNmB[Gh ,'r~#0|jS\OC,=  Re-Ya8=;%H(!;K (CH6c:lHo[NbtLa1E˚)ɥcP #EY1 #>& 0-.zliR(uUɾB0R]ftݐzKYҦ#JAC#h45ZP"G@e=9%Q % .0 K|AYE,/.qMAR8S*LIr+!B ;% .>uO)F7 ".)"xJ钐hyo郷=D`x>0 ,ϘlOOH5iOϸcYf<[5 GfuŲۻ)ɫIx }$'k;oG:!lE;t]:,Pw[DӋ_loY9aeCg)L ځٌyO( #uγm#7Ɖdɨ h(s={\I<LQy|+NϘ7['Ϟ1& h=կ|M{&Eu-QBQd+ÞuFQX=C5g/9w?C993_՘Jr]2/X߷6;a!7kyUrX,X֧:h΍<Ōq TK7wvLq~bwOҁ՛dƓgBs~|>)<YyS7h=l@G/49~ Ժ$ڈ u/~i{Ow c snGGaOkB!dxur3rOr=ΎwkܾgV`Cmee,2 Y^k@?{0yFY]l; ŜvRFGw8 |9dc /"G%e MQR,y0Bv{ڮO,'.q`S3k2m,K2|B`&yh9Uh BRKɡ=H<ƈ -(c=3WrOOY53M80ZG] $6F#c#CDRC2by"KTc%h!Te DZI| Li&JP:)#""a`7ݽG8Ϣ()#)Aˢ`y/ӫK!>IԓZR_>V_ؒ86>C˔9Md^P)v(E]֬Euכ9rqI dS3*QR0RB돏DJqŘ-X\QR}Tyq.ﷴ'f}׼~"}[//~ׯ<˸:aqG;$zY+Η8;P9Y:_;l6[3ŪD瑢) ,PU5zP)͆q<>eq~IHgJ)4 3FƩSpFnGUYo'l qqmO20aGCt"ǔV ".i{vdR YdD#3 c"%X\D+L7k~d) mEb}G9k=ZfY"Ӕ3YV3ݞ{OK 79f dqDDwoBpm1Hd^w)VW@BA7 [ LSVYL*9`1CP*(~@0~RB,qyN2zV H;qH&2`Y8뙬iYQBdXn'KYTD7uPn ~REi$ |,'8Z"rux;ʒJ,„`LT0GGf jc!R@&%Oh$)ZMUZK1&A U[;!DR2‘/Oe@q<QӉ%`d&)ǍH$fGOMy0MG@x%`8NFqxt#w)U0m8a 8lmM'MC?կME^o4> U%"8?QT <ɋ/qb$`vgp#ghɴk.SU5s;d#nqM4eH/`r>A0zzA|n1fߵdAg)~K K?42cfJB"f5zd>`]Oxr(AKr/b9SP /hcJTE<+hw-UsE{i;NѨ董#k01jaCro!Ҷ_ۯzyNTw=OxoiK#/_p{hq~GϞoޯ2I4)Wyll^sr8$5Y5Sfvz^ޡa}Zx YQ!IE۷4:X8:,>rk~/ٟRSKv;=<Ό Cǫ7,y6bxvGa  +2K֏Tuӳ?5A'syFC`>pz8f"=p9<쎶Gu~ooLE%cenMNl: !PŲ,y4:z:J-QV&#dղDz!ws~z8Xbqd#EVoG)yxυIA03W%$خ<-BK!Y*z)",Z錇#=]?& aD7zgt2lVqrbsƉb; ӁRkf`&IFb=@<#dyN4CrLdvF;U9Rׯ޳=S-L݄<ϩIa#+dY2FR5YV;9,ꆦhYkch#M@g홺\@` aFJeb38OQDY`'8߆qi%`\09jw|#tH"+hbLJ ƾC3U^"bĺRt179!F7c(4Mj>g,C442ڠK8PAJs,0;$ KSh0z <Х(eKCT2U UUDP}]FiI{ZQ<x` 3gFY.:8=;XWkDfj)Kw\lO(fIA,|myD#<}T#?_/FMN^4 S!ol*CBor~ dTA*coHf ~oo 5%%w f"H?Lew;$:"S۳ [dž 1 Ck]Z[$E܌7rJuCEWlt}ݛ|ȱO?h=nlɲK sD)8IH m_Ȁoyl<<$R9gSb*W/89i|f9Ld~,M]M*;ꊲ?;ņrv#plV%Y.Fp#j}ñ8*HҚ#8OHjvg|*H5H%*M]Ӷm:I -%18yd܀ ^1\#ܞ1r{}͹ٿ<3M#E3"\,xJP77v/GX cJLw۾d~H!nǑ£/P >4(cZ!ť^Z4kM=QIՊ)yOs,[l۱jYYQ8s;P AS-e-]_MUlܞff/\]oXN XUt؟#li?/#;:c<]G>1uE yJ2MZ= PQ!QLD%3uY4 <;aCr4OLnBGf?qΜG4lo)rD2v'd{v<^ I -lfw2y0Mhti,1D1̉O&wJoL))E^Tp >MIԀ3֎BW!H =DaE%K?3^A;[V!EV&Vr;D:TxN^DoSSAOM+ .OՅc4]K|0)R%> om (#©nCĒ1=vl_⤢0%ӆLei'3a[/Bp\4#3mD]D޽*QMs׃LcOBD'n4fIy8ˡ=v2IMsc_sG],EI,W\U+ ,tT4h3'g&訪_ CDIY-yyzaK^K])E`Z2df:QDڹ㺩0B2Oϖb> Fz\Ҿ0ƙcx=?r*~ *$BGGq$_х)( Y6w7k]P@w2çO80eş Ot#NjnoOOrKzLb6]-NEa+N}G7N4Q?4G/  JyǏOXxy:`;BT !$fZ"e]qPPTƘHYmxQasK]YB yx ȽawlaTDӰewn1uǧg;tǏCdjuWqu;#i<= rIq~$NځEA AHPiE 0Y ,E'(}i( 3q^Z,xy9K9 d+^*'S_JZSrc)MlVk)7ӏ=!S0 0[GϧH '<)f2rzDE Z3ĈfvLH"J ! TQp1a>Ŧ| "Pڤu7#šbβАCFͫ;rK,!ܹx|nӀ .D>?Ffn~aw <!GYv2ޗDl6xY?X.9^8 @; ؈nd#*#!k݄ {$Ȁ=QXpZa`-Y@kԡV5x|z&+wT:ۚ: Zk*8;#0__  ?Xuه7XW[(>"ҰK`jybcM"Zp x9ܾrYE9xScqY]5N40 }?r8p\Z2A{܁w?逝=,V 񁏿 sw}r /koBҶGF#Lc.MgiH,emA,`%9%y3 CU;O,֎ ~E 5ȗ/_p>r:̱m3f:F((cRD[ uw^ǎav,놺0㗏Y<>OբaYb#3<=8[ʢƘ,.3=:ψ"\6'.aƙpB]0&L>03 ؝[NH !g,`ʠtbqIy^"7ϏD@RIpC4eUekD~Ky]0\mo^p i8C@H *3ڗ9jv'DNDeY 1D m3~*"d#RdE'QGV_G""`^Ԟ=J̽Z&gyY\D #19&+Ɋ; J3~@q32 7JL@tƶ^B@/8?}F~.J#>z~U&t8a2Zэ#O㈓R)`i0tw0(6]Hh)DAj#xObАRJ21Mcz?%|[ \/S )'6Z 򲯓 mћ9Uj-_E JT ) )oM$(!HG%dA)Q2M= t_S+2:}OgC-{r#ZbDe%W da҂bͫ;^>S+fɋ T 4n1&/c=n6(G炄wTME7T2 -HEL9V+N݉Gui*Py_0-vU~ww7-䩚%QcK75ӟYd_c_ǟ YOysǕН~ǫDvTS?qnsm?d-L,%В>5!Mԣo'g/Gd)dk l`y<>_??\VvF-(rS S=E#\-3<-* PhP N}rb _yjg,ypy1d}X\ܽbpf{P;OuC$gtM!xh8c*(+@W&|[dD3]Z58=cejyibwE:hw@lJǁ`"ǑRsF+R1( ?o>3JtD]va@ TfB(hxzx$6KWkUEXt`S֌"E Txw"`-01q /-q\h00ѫ~jY2MFr6ؼO#7̜GLnecFl3͌w##>FӌP/Le"UMUn@ fE7  Hn4cD<;<`fsnA4 m`\ _>$PR/ aW3m?`egf|=є oo_pQo ! SyDgs;eƀ֒BHܾ ?=r:4xf3T-E%2#"JU8y wwo؏+ARZoSoCPoRB|k6 k"}uG !&YKf @R&E×/i+_i'*8mb^p:RhNX0!PL+ZcK[!yrO] R Bg0UKyvnF]C_-R uI]ԋ-8#bf{vA1M?F/HrƩE(3LhjLx49~6L 9˹0&\g"FbpO'W(q^-L }BPZ11Z S*TUj 334\.hD)n% .s_򻳵d$}}N7ԎdFB2,#SԓW52#Z4{Dߝ)sMQ]S !瑦9=%[6opҒ9ef1]b'GV8~*3 @Нv1z*/(=RՆ" UcLޒt / lߢ#:|j% '.E<1ɛ$ę@@jB?uIE'd;O,ضN?,W R3Z ]T,'("! -綥 b1! Z}Xx91Θ&3ejG/kk0gHx'TE@j(zrfP.)%TRYQ^e /rOP\h4>LaEOSIҒ(Uri*c)PB` R)BhEjAt2L9&7|L$%\5Ԛ!IobYL D{+0&ec'+Ҥ/'iaVujK.cZDJvJȋ0$p`ܘ4* $\Z*0#vrl'| L3#2c)4K$orqM i~zp" xr|ge@΁_d 32dH'D,8ղ$SՊ?O'8=7oxzsYY/l4<e ݩi60e(%:nn5_8u-ӧ=O۫-'޼ajO+Σ'0Q5u1h[ISL͒eI䨢&k1/t0i`h˄a/'dޓ{zC5&9*bYz`%( -ŒǗMd # >>J3KZq[1}$3/ 7KjiX*eիs?rz!Rw%O|0 _* ?5_?ӟNkb<q^Ն/Oau}#S/_x\Ӑ@{9 =EZ+^^(w|91&KQ*l1p-@Ёꚪ^Þ)ovN$F r8պ*t"Lxzfgp8=.nJ|I4, q9;];1z Mæjێ~USa/89OԆk;X/׸L2e?\,6@@JecABmG-4GRJ#WdZ5d}-R }>b݄gkt31zI,rzGQUdy$'N#qɄ |Siq@^aΘ@H!Gi"yHI.q7)AGpWl^=PÏ3)y(rt Q*Ny)Ku 2ՍO#XJp0͖#;8P 9L3\OHLYV<qWwX4%x"M"(γ.5v_]4d&=o8=UMp8_rSy1&4 z/UD7dzȲ!<.BTŭJ>)2,I1D2JʲdGHσ9 $*S|| *(rwL!js+iç;i˺A@=4r:RZ,xzxfC-UU;^Ц-y<=rI-0yh3"U<[,TP&"t8&cԋ̤a|$h&׌<ԩ{K)<2v=cL3CyӞ XqQ &;rx~d 3s1rCQvmO\]0^Q(G!4o^۱hT`=2x,vq<Ԧq,}A$ёTRɔ5v»t%gb?bdT5JgH%8==Q/K',afpx"ؙrDs` f[(wG|dv3cUr{Ӂϟ>qXr? Uz+6উR; ^ >3Di]g d+qcX!(UN…؛& >]x&lJ(-{8$*M`#iНU2'H,}hK.T".Dc._x_heV,\+<,ޠ$X(%Fl< vB '5RTeI^-<,R^}Hܜ\*kӅ+LdgK.&]XEff;E,"Y =ҶJo94{$QRVJR0|L0FpYP$>1(D6ˤG]RjNJo WrZ z5M#Atu_~iO3J{I~l'|p %.$hWVD):K'39` ^1Ɖ( FՖěׯ;֛ wys7XbOd*Ƿ?t deO#!0g=M8o3㸧U/Iz;" LESt'x@Ԃ e 3,R=oJ4ѳ*R/ Tn0:cg)cdY`GrT Gf~,&9tqL (##әŲ ~Ɵz޼E yOQ,fݰ)$=D#8v="=6~9>=Y/4L;d9Lh1{4/8憷R^gwnyq8y:, AkW<#S%?[/d*#J;<bx&PTv?p>n7|9{(0!?XT1 % /K3)2pd<!0zI)eBّ+ˆ@`yNx*"T 8cfqMX9Xz" כyλ蹹K9喬PI+yz~mF׬3FOCL#X'CˡUoG, `+9!y}U=/ÀKd, …Q5YS1ϾmH8=͆wiΡaXl@!-~?4%=#Nj6B]!XW p@YhcpNDq(˒pǻ穛&:dyO4#~Hn  OOτkW[A}RP&Gg\&HwҚ*-#)!2͞c?0.9z/=6`=1X)x3R/ӀcHVHiZ2E,58&R4[\Ld4eE!5RJ q9ZGj8\_o"e@-Ȣa{^W J"TA7|z@HHPs|r4<_hfnoOL݉sϩ;jVPK: ai#v(r-nv_>'D^1,%uaڶcgDtīF2!!1J.wOfyC"GFLL(.cb*xhk+`vfGH!QBdZR^Wvers]|;T m }y4 Ð t&"9)Z)RKV "9WN$bi/4q9#ik\ۙ&|o8fp<x F ~{3#$ gG"cTT-x U'uslS2#c< $}N9?0gE|`^sN{DSb8uC}j*qc(*f Q"qlcQ+($j8fY%dSL+l ц.X`| -!DJd&hw+< Lq5%FOEtf3GF #( Z7 Ҕ,f"=0L}$R7Š^XCKٔ\q* 0W)(t/~uOOO9uD!y,s\T!3ԜL1:VHF"2 :rfB"B+j$0Xl}TY.*傣;2 ]cU|$j]O =R0s4uxw{C<yEiqkwa '+Ñfd'tvbžZY|blx^P ݓo Ǟ8#)ia#߾ˇց^UѣU :brQ9,nĥZW_qPu;=Vq,j+GHq0oԹfgtvH۞ɳ7nU Ky4rYtGqb 1`eh0:R!/<㽤hJ5#sx9) XlW˜Qf<uF4#߽|sGVMΩf}{6]k=E'0 X _>2Rˌ`}w4%OYf1v/4°-KJRI/78-0bNxVtBDFw H]reɕf3S73w7ՂDЊb=L-ZKW ?=RVPgDmwÅbszYUE?RΖE`hW-EVtQJњ&v//ÀrrR+*,V4GN;ZfTj8kY/WLin)EM;\ Q, Q/)؟dUz6MԏD73KP(^߽zO۵Tu4Ϭ+ɱZMįh3?~eGV:RHh52JZn9wX,N=0LQUDgx޽P%M]ep/Tyv{/rfg^3N7DC$abDL)q˜i+"$Gަ29Y0y#ҡ;EҊfʂ2B1PJA "1$L?%9"-jr8=H*ɤbz" ~h(eUs8Rbh"K֌1 O}-1]s0 /0 ڴ YGֳ^lӿ}ڄ8G_'>=|_2k( ,tAwܣJk8b噝]"-vHVBEd1MCjU+*|" aӱeYHT%bvyвZp_0K3L]p:b%o7z\m@l_#2Кy f@ɴgV$<}RͷK_D)mۇx$C:UFƘEF!PR*!FqS)qC1CR7{,Oukg35efh6RyL"1mGK!Qɕx|^~< .xfQ@*pF|fQ7잟4Yev剦(.v=) e Wn9\f-RhLTUEcLt&̾29UQǏ~xYq)ӊ UU|Wfq3Kh'0 o{}g $UFuC3ԡ(w v/(J{Oܾ}͹ߨ5*RiU<,Q ^ !$ %sN햡PڐՒqv&kdfdf$ D r ^b%$"Oed$tT]MjAB ̲Ng d&tFpqJg"Қ8Z-v?s8yHh) v,_ ;Ղ<lfo)%!(iai=e^fkGe2Dgx7b*4A#x.3 #Co{ʢLF)󌐚"Eϟ,l 6 (-( ءGC\bGAY~UMMIbH&g)aw /{e RInL0TG'!$@ҝ5uixdU*we!.sv3ĿSC)g%nF23H0S{$/kiBi 3EZEdm8O{I8#G (QHmf"m8"TzC \|y E9,#e͇\f8%SGtAG"=X{h=U49pvdɳ  E;b݀Q b0*'* \XLd^ZlN@5׋t֓aJ#zJh%:x_rQMRfJI #Zḑ3owiV2o9??4솑)ϖeQ#p<pO7?_&u3{lږjI;mrUQo0Qrx:p{Zj>}<}O&Gys垛Tપ9{//DZ㇙+^-P.ځ_Y0{>|U D#nYrbxDۻ[woӽPƩ'S4P5<-m5DL6jAw> v˦ZّjzjQŁyG3lH.7\_oPvz?-4hbWKNԾ'"L;{=mq:⫂톩4t?5ÿG͊v9Oft-Mr5`3{i" N7OIJ(z#sN'Ҽ}EמQJf ֆ(բIk|vqcgnjZj#E]v]ț_>~@*/GV%_6s agv]o;,}=={Voቕ8Dmfqdt=e^1K9We0)EؤB0]X ޳^ƑrP;MUS34of.%"O)Lk 1z<09J(#?wmqHPVif:l ;f6w?n7;񙫫 Z^Ύk޽:(19 20x*LQ◇#ӞE!*?cTr6!~ӹ }+l{d1&KSxGKRj,+er؞%VsTY Z';t6'Wx_byFG2c:^,ap)D7GIEߵ,%EUx}ss3eQR-W<Ӟȧ5aCiJ }#dO{/k#y#GRaCNr?pٲkJIM|"^ p7%vNN4?ttCE&e9ԅIe$XyNӘ`Z)hhRl6 }? ZiK!8EDńyu'TfljBby' ={C՚ZLn!kSceY] m *kR*1脤zM.VBH"h-q1R ͨRw34{4pf 3Ue PigSs)w~\L1"H uq:lUVދє"/.%eBD_D%A)(1Jb`'-P_LYkEuw!=u_]".xQR1&@\).BPB$n`.B<_Ԓ(bfK+XVZ orZYUfC?z7o OdʣAWޓ)3]bM Ddj#*Mh)QZ-4 }%E#Q ֋e@Au!,Q5kΰ}F0O fMY- @g J咺9*sf?#QS3ш,AM|,꜡ݾfkBǎ'LQ)SW"zmR|5ȩu|rt,+ƶEx8>?b%_v fU 'Hz,ŲXx~86͚[/'-/әf.s7(+f3JneŌ fzJP4+Bt~sϏagne$yj#?}=w7 #{fz7,^Q"?X8I}޿3Ą& "aɍ ( պD1+]эahج8oY߬#Hn+2P1g@`~{Dr5afF@K0\ eQ|Nۆv,Jͧg{͛;$iZ7$a {u%<يstf?&+{b4lE*4`f;*C `yAx?}3M^UEQ̗_> &E`|:1N.T[OK6ߓ]^,Ƒz-(y{VW[F75:9Vt]~|>cj) ,cLמS\n.ȍATQg;`=2v B9wHi,͒/mZ'Ƌsy"h=9dIys]9 `ߧ"^1Y2qe5cL^qc M,jrʔ}zѰ\.yMc){TЗVIctĔ0Nk}3u>=%/P\cS11937|6%i'KwGӑ/k`!&x1b 5/vXeWer)_|bѐU%!Dy?/H($v?=EpO{6˚U͚ 3'|6ykʅ`GO/O|* >Ƥx?ru鉟~~; &Ukfc!%_}˲`><>fvEc90kav"/i[(mO/T%Bkc)/-?{i?jS`-OkMAp=W _1؀m?3-uܶS<ЂskЬ57|yh +ĈՆdYoJ.$o^3/0XFߞ9?&;~ys)z\w⇫-؀̿vtHS&(CQq\)FPU9m;X/X6w7RZJk?^_QdU ̇-ET^%͚fAG. ӻn 94Bb0S,(=ijv˙nL0]?p&+~}y v7_HBkg^!&n5yVj$"l,ϱֱЎW2Yl4~f:zi|VI05bֲI>J%^d,IZ^bq}dc"\z0 !+K+zE7γ.Ұ|&ir-Z\7`Ǚm\W"\"e4G':h[!/ 2D\@ԫ E1W77Ɩ05 ?{K! A ;$w (zE3`GTv X1HY7KrQf9on^]r;[|QƐv\FeWK6"Yb ,'oqT{nJ6'~]T,LN4Y!x2!fWDiZ61$nbzO;t8<KL)Eb(.Ib7\75Y@)͒WΈY'0{> qN$XˀxBk8 79E<>0ہfe>D)+ebeJåA@*C^TuMyȳ̔(aJ QhPx$ bs"KҮ>0D7̉_]d ,(Q)$AA ݞʺaYg掻ׯ/zO޳j(@%yQ!Uȯ|`|`Ўzo mߓB>~L!ҏL*;<#גR ש$F)E=.BL{>1-bpةB ,%>x'Zv|GHA2SjGbTeI]H)aG'6 M$jEPh sHF,!06T;iLܨa$o~6{4H?@8|-5%3&D$.e}riLSTEg@QV& xS*Mf4c2+X&x\/oj0u=#(69i2(QY[ih)8La@V$  speE9ޣtz!_(9R ~?p{x<8bL;$5/azfW0ϒPN9;Jݫ%_7Gz)69?|s -vƞϞx_pݎJ/.p;fůޮپZpޟgpx>6|l'R?뚾۳(~ ԃC ҈# =EQ1Gh,/1aCXZL0 Hl//D)q=ӡ{C֬uڷFG>8T՚N vtcv#ź(:оxYւiJُX"2ϖU^"'%rʺ! ;Ӟn6_iJ')GY?O-}Y_--~v^_~k~ueId,;,c?Wf8,V c$+ǏuNYee7Es|+V7? -ivsŦi1G^e{QAs5T*A*~LtVd5E4 2բ*rO<>?1|s:(q踿c2=M=n l8Z~hC͊2G*X󌲑݌+-o7h]/<`FiJjU, d9d? u7ufh; U׈&p9XPF)2aw-/?ЏH.4uB@ns&k~++<#NO%4qvt/-"(BO_PXUErpΈ"ci3&˨&EHó,(;]`aup8ZSujVA,f V1x޾fKpﹾZsٰWaHԆrͺjxuoP TޝzLTޡ{Kno=}-yn3ۦMUG(fDz8==LN^HWŢ֊:3\]1JafjGD;9\_my-5vŻ m,Ky5W7|zxDjŷ߽՚7oxUJ}jZ2iQR;ϔYƢi124l0d6YUYK%!0]Z 3 !)zȤH%q2LՒ,0bլYm!bO.}3) Ir4 Rp:"SyVPC&ZaTj{ >cBTF LH)PӦn;uO'kM{UrȜ>ӻ@x~㏸~f:u)rvϻHO#vj71Yw1D R? B)Ce4 #BHN1VՆ,)򂊉 K9kx32,Ct?ZST5$jubg9B$7j{qx؁e瞩Y.,u  *60#8j{0Lc/jiDthAk My'YL0MYNU78!J"bzl!gJ!uk/+ <\<U:71gR)Jaf{W|<1rC^I6,#<ӈ ʼ/VD]䈼JVin!VvMyśܣdO=;1lܧj6;$Wx:RK4%YQ,(!Bq&H?Uנ! -yg%4x ^BpbHySأFjEiא +0r>(pJ);@SHe@0̳G+CߟnmJf)Jn A>@UjP ctr @t34&etnBwK&"81y%pӌ19RS"H{ȻCax6^pGw!5ډį/LGġ3y|"P>Z\f/E5A92Ks4 JyN1h5Br |2'Fic$HE.BfDy7̈́4~zP"Y64!Gڮ]{fR1?q&/fk={E Ed/ͯCq(S<0)?r/.m1 .Uh s:NcOԌ%1=v&3w(H7< G恳}$5ǹLat4:(Bvv;#kS&tz!&kM-~lg#UZOR1v? }7o)5G^-c730YA7dZjxjMLl{ՖlYT5yQ}n$v)u A\EWzGT%Ez$O?s|iբfbjZf<~@gnLswQ7+|^Ɩ?|M˿ QjMShHywtǁhJ ,߿yI:͆J䌻_><a9{TbOܽB@EV ,UR8xjN_zY2F^>y{F`OciV|zzOvNӇ=Z|]%`KtVĻ˞YSy>~|=9EinC83N3adFpM0tEʱ;ږ| ɨT%U,Iͳn, HNK,)?&to^gv.M#C ɡ:b&7΍,_1jc]Z0YfN=}?؝h!@i4Mh%m1R>ДM]bRSGڧ c|d$wNaԥ%UɌƅaB{^+;gޒCMIo6=vڞ34 ;>|:Pf9rEP uD)C_vv6@g5J<=ʠt++#W؝q7[n77ȨȊYd2^c#,+stQ F<”L;(DLy\kS,<|| /'W[VW+>|z?03Ւ~]\\eK=2 ! |#ZO-N+lX#T. \EyJmRRt8$4br  %PdJvd&G Ma 8iC?D*!L݈DiVp]D dg#BDe48NB*6v'Owxy>sLɱ>q%w;vTJRTār!9@9sLCLaXn+|-/Q/KBbBI<(;|w;"r.4ei2aiЍ6%2JhQK4U|[5fEi9ŃL<.pAix1 $bERɾ X.Olٿ!K T  =Hf:)YM;OpmErX-!xN#RHWח"W(<1rjZE82Mēeَ@e+HW1nЅLY'u֦<%cww &kP* ʇq(`T3 ~fQ^6MjYs^ӔuNLeڬ6:o90a憺J1N;oo^o! I,?`v3BILWS5zrL〔3,ǹ,K <1LN39c*x x0]o !dvYmFT3(@p)H ٞZTl442g=8r>r uip80aGqvD1y139}G9b\̹I0lH16Duk|q 3v]&A&PE*A}`Q-1໎dԽ@IĀ`mZEH&%J4i&:HRJ1] R4E HI"["(213/N71zơKSi0)  ^$1K\JT}M@j!_*DS`;Hȋ9S=iItE" Pz%%^iUc?$H`Ub(I42̳#Y޾~{Rg5vX.kdNpSϜ,Tu?3*)X\q8< B$zWw0 :]32:Oۢ$5m;pdbY кGd&Ps,c ;>YT}{f3uUqvsJf0ÉzM|aTV ozveM|~!<ȮG]4{;s3"z$ΊXLOOtxH6Hr t,/Xm S7LG3\P22'TYVviH5%D'ԎY^m0qdⳔw,ɳq"8zyN\+3d׫ʊY.*9GZO]hPNz0w\\lj>?`jåfIQ*^_1L)Euhꊘg;{VuM۵hyP&AھE)p+@H|*<==qRLsM< f`ORSv<\]!~˒:(Ie β?()˒vJ3N=Yʲdd({~9ΰ.dbb `YMyaOoTy̋4{ocdr kh%;zڐ0.%g(FLjS /'=W5O=DuqS}|$,K{s%e' 5EOU_JJX;;%*J.T6"MSk\sG$b1 j#EYqNm`#w!p'F̫-Ji>(V[dRd(\C)& e;E^ܗVft 2c*T\d|A(4<3 ӜʘHugMC{: TiPD.j*:H1 SK.qpnFu)K7;LתI"&FafPh%6_jQI,K2LXܵysaH@^Ua)1U@V/?;o>`۞N:÷J ]d bX@lnYF;2{t@+9[Qh9yV0.%h$իoA8P0فhG'{f^SRzuCCKBHzIV[DPRr{zuMl(;IÎ=Rj~f;LOGg^駑b}HevOGi$3Y2>" @L H>.zx*Đol05]LB@^$x;Rà6(.w Vq&CW;M1&&C$(Y!HYaHā(ĄLNfB!.lt#pK>;B*@"/L,K($Ɠ/Ruj҂҆ duΡct υD+\ZȈ"91#9] hk:bl_/S%54&. qn3F%[Lӹc&WkP%i* B3ڙϏ|z|o{zQOlyޥ-] gJ >D0JB31@`3E <-!XLPv 9D4!⁺p7@P芪Ba=L~ N4C480eA##%F<[RZji@˂(a$2")\Dt&ZGT }Je)3ÛqzKWR݂z 9zzlj&v}efz|7o﹩ ϟ &,,.9D(EDy᠔5E \JBY/ iO33⤥9R< Y4KOav4U鸧kb!^G7dUCYe@Uz;rF"{O8#2X/j~(<݌S)zuKYL<`X WY G; qg0q{$ךqQY`s}Cդ&<)=CbSin >xz7P/*P9?`bnc;t:=r4;"5[bǧG9·#Bns'3 \9Ϗ|xLH"OGEG>3ぶfQr8E3YY9qe 0" sdZpӍ-ySȊF6,!}Pl[*xCHm%E^`d2~fhO0O `g^k-y^Re%z"8Q7%Պ9xA*hreXTk ̞ ]OVؐ#􄵖E$A]Y 2qFPpb'GY,tDV,r5: HݏP ,Fk3\J/q6CbӏNJL~iJ‰ Ga2+`s┺#v-ˑq %DI5e NXybhdb_٢ÈpffCR7wv{-Rxk/UQfO?|$O= 玧+jss{* D3Uͯ~/lj)߽+'Լr:w2g54;݁5b \,E2 2QR bS >iK.&-7N. c|IbĐ{A}a@1J7WfQep:czNUbf[<'fmL^#qN-dFa݄ .|K(/m$fħg%<1"ċyEM Hnk-{򢠛,Xon) jvrYN=^LXJ2gtx~>Oqáwy7ء)2U}wz*%R+V?BVdĹ-h.+PaǁTm4 xgxCDO'N@T).#Yf!ġ1"A׵xIDATA=! JʬaQ)Ւ&_kL`-B&g8 25j40Ǵx軁p.`400azGkɒ6S?T (LӌGyfbz#j:B;' T7jeݒƮ<32>}uQ/>sA*v/GƬ$Ej䋀% df Mu'Npb&Z#5YD c0]VBBf\]2-EUةEȥF߳֡LNU5x;3=S"wv虧\*u #}ccu&|:bۖK w6Mbdu K3(㼠*Tu,J^ST*:~?3=EͫŹ(#u]Q1p!HZ,?0u$2 'ltK&E475-r#Zb}%QB4cXP>bDQBa_&LjwQ]O"ZPYa^R# xJ@K^ I&(#`y!M_ni0/J$(\biJe7JK41 OK HчdIh/$e28!xbI!NM9H,yLMV`_/M ʔwC+EU5X;3=H$;2_dyɄ"1O6UN7׫5gDR754ˌ1l$28 GO읤rD<{}ǹc|:1Gsj+nRXe'PЩ$4z?ybQVĢjfx|aO?`ƤygÉ\KjAskF9 \%h#(mZ0 1 TRgLBnA*#x; )08".͖2PirkfdvlrwKn,70H~`ZEAFvD+kDg90&USc"(s &pBi8OUQpe1͊>Df\(4س?Ȳ?^g\P%n1yCV.g5Bg{FcrZG*-WcQ,6&שҌ̹;ZҝN(eUS^gΗ>^XL: .Hıɳ,/Bb#ltfXjHբEM%כ4aS @8)0Y4Xc_KܨL%ƞ|J#KɵBV 3HH|Y%fCKEfj0!D *ӱԥx^SVbi Gd$GA\Vn(!P/HY4kV͒BI,cqs?߲YdiOՔ5ˁO rY,V|\*L)p-d ӂv-Fem\T2}~)$W6\-K^-ڤr%qII +FoE/0wq)X1?sO[>֗B*.WH;[<0 ]y8#SD,6,%ˋ`-}:k )KIj6ru+wjFi`b 5 ^"_^yVZeĐ,!qZ"/B>A)y)h\9=8fV.D{~ODIq*r)pn#+ 1TUN Eݰ?~4uf ˦d'|x|*+rig`9`Rms&3uu3:3?x1 Z7EKs@b}C9gqΣvqѧgKJsK3Yq>!1y1`p00 ).CĎnL0ReB0;CK?R%FHÑo57wT߽al23]~-^F Iw<;dQҾh"`5M O-BH4{>=c=sے|IS 1nKY̶ǔ3q8%9/-br=d =ӥX)M:a3L-Z\l&K"[,D7H'sx9iOr8LXgi6k6[qGGE-YV541=֏dZ#AE ~fGTV+B{}i$&7&cgӉ07KyYoi&B$}jE ,a vBuƬ2NQH;h]D(OALxQU15i`Qgj i heBþݣe,$Z'CSRXY.j =튺 ӈ%{ķ߼bQdFs5k?젬y٬֔4Kh(*x8Xm[]KXJtGEUp8?3 XnȮ*y~fX-=.#ͿY ֫_sG(2{{OBriҽUJ+ʸZߐ jAnNLILlA](LJ?!.nl j)f99<}jy]7r}]33E BLIY. ǟ_(Ăl v&umƛ ]bK~0ƣ՘bΧJ^x-Cd%YP!B;y$5WՒyim-v:C$w=cq\4G' |{_0u'34uEwz?SO?JwG3^83xs Cr MJ+l5B˶hh?|_qU-0Qq׬h]ԛubT #eVP]1M vќGfZReݎS`r^q#&sGG4'nn_s8|Dƻݎ}~{(ˌs,e&f;Rg9B(4O;[߼*VY9WEf{C׳Y/ޭ}u5[LxV *cٱX_N=4EMRrsGk; 7[ÁNFDY`U]2wV5EQP7od`i!uY,'1zH|"+q>nvejӰZ.ǁO%, ֫%C2>z2]y77D$_8N k4r)=i9ife}HHei|>&741ԣĞFj +S"\`Fi4v)4@ (>dYz(Pdp}dt}EyIf2T<z`GDȤX B"T;4(.SeYu#/ZkMCzat݇w3[`;7^~T4^X4 %8i267TDritxz;1NTyN e@)`!z7R"| i?Nbm~gv8Oi1J3#,($R)oW p#<2♢e<\jrJt r#Q9 ]ے9(Gtn3-箃n)% ^ZEmg=y:ug`Ǩ"mFEķ,G#љfpQ'T)W4Y"臁?Eqf?φ>왭 M۞yy:qOXquuçϼ}@9p&y5ϏXʒjU("G)I.7[ v&TR,ť,Ɍ&\_EY(Y7)ʝehcF'8=j ;H!0MM^ՔEIe|bi)=q'KlE@T%Rf,hcX#+rH0~rٲ" FrA 10#'H_Vabw8! qL3d=E3O0'H)k4 F*F'l-&`1zidrEfa:1tm{2 g-Y^s}w 3_{ BX71́%1^0"_/OOD$sŊ(%|&hm-9eFqOp0Jz) v1'L1dE`Nh6^Z*2BVhfYFǀ 8/`jT!h%9A/_áL78kJ&Hf 8Kœ]>D8}U!\D_mTx/(z.*T:HiUpIL.zIJRs+*O !؞]䦺ాNR?b2})h(J|$a 1 i38‹Hmb>Jʙ6Ɓ|_FS.Z>гެS,ɲh/q CHJqJ^"9=NO V`CL&ORfMU3#dXpCϪ^bdN w,V+r)y>vX5١t χ4gHnQdݙasf4/ǖbj0NxgО;dS[G8QeE^ۛ a 0#'=>R%HiDX\8ۉax݆??z u1.G^o׼KeVRsīohtf͇'wؽY_rL-sTux~}?ҵ{l*a&LeYg9ݧGyvY@d͖{>=MC 6 ~~{E_2x eP//lsIꊪ\:Yt0YR2w!Add{ H޼? ,|>+~d [QaȨ/jS E7F+NgT+aV\Yӟ! F3tORC5ÙWww_y|8GudvgV;G YQ6%B*~8 #ot;OQn 5ԝ-fNv`QULklzۖ(#͚pB954C eBx5Zf2MLʳخ8^pD),Pv#M O/j3#xp-˛MޠjT5x|~Qaꚧ>`2|') JD5eCv%.6bP<ؽփ >~6q{Y$bL&%02baYN;la$aGd;eIV3㎺lP"b癢(|mf,˂<,ȐְX9aHpѳ^,vN\:O,%~;~o8RQsIO3]WP.jN=C3YܼvYbME;NltS۱;}em\/jƨiǧOPlt:3=GX<C ];HUTI4rQxiKڞ LSW/ENq+ 38<=%8gaGe @ (c'&gTU3"R) =뢼ph BH 3SZ3Ϙ\sC10"1MyJ) Y.MwMYQ~rDJi~0@Fơc'yY13?曂"87y^zs60_GIӽy1%@lNCݻg2yvi3#uUO%Bͫ[L&y#ZrˤCK!5&B+ өeYUl7+;݉WDzOlXbNޓ)v#1x)WP;\bv_\h]LλgxiG."B|6[+ʎ]ija>U]3]rGT,;dYF׶4Yiw|8Phĉijڽh_ j;y:LLL.B,szEgs] 1}?\cffgе!dkf:q,Y/N,sd5mџD"MƉ #8D0Jiʦ-<y.!|/Sk9k&cZD;dbf28u"KL)pO3^Fevi< MXџ?cؒ_L#PdE\DLU;@QП;^ݽ_0mE֗ps,#WE3E!3с3l&܍A《wSP7WL[g**J051(\{UDT>BZ3LD/%唍`/ɊftAUE{3wx;6sK/Q%h}SH$Y\TFGٱ(@OYؿP&pS1R[)7x73ԋ%0u,%q]VwL'q8tХ|ʂ6 um3O=͵FG'Y~u: f 70LQ*-cZ5/=h;KMS"@Q^}w.ݟxǑ(^[y&8s3MYH0gVzh/igGf"q펽9kaz|y1/O/^^eUG9Ͷ;H?+~m4߽p$dͲ!h b8KΝA7x?)0*0:8F%˦fjǎ9b>!ĝ yO,ߐO\-WXim4yRSPܱ%K{KnBK]G{:sT @HU֬ q3I[e?lÞ5rS߾ , ;$ 42@a )Z B-F ¶d IVw!+3w a{q8+*22}}y\pq2W4?Qds[uE2@~z^ I%6tMt@xZrjZ>`Z1XW_bIIg *@2_9WoHsR#MW_N_W%Oؿ14vT5Z1Z4t RyZpE`71fyiR#d1i YGS|GJLp}pwG$()J}4͐°-,Iȣe''nW,#4 Ͽ|)Mװ. ǔpt~5?$ۗM m| 傪e9(lw*.1_03RS<<=Œ'˫=Qζ. hm(!DЏ4\C QŁKRF7P7ĺz= HP0 1SXf)͒/^0`Ҍ|ɔ =<Є8L&֊oJomw βOhbCS PRE (TLv"KS0)O[T5 T}DX̒ ${4?s^c&lh F&$ %e HJa#+saFĻjx_ leSua{fʙ&Kfrnճ]Rݜ9}LJM\V4MO?8sS8v\l7\\lҒ2={qvsX??釸!sV^\2$\}J%Ϟ>(ٝzmجtMI&sl߷nEpi{'p|+ 9w>}5 !DLEt9B!&Ipƴ6 4Kc%|,w>/XG@Zm2VڦaV!Y'kνgOEQ9H Jk4MCƎ8H|õ!D ?r<{htΊ74E "Fh%䄐@8l3VGisЍ08j{EZ8*8б2"hMϿ!rj:WCG_S5X/$ HHfj+O$!La8HQ4݁$-ޓ cN>XK) _|NS l7Ov-ݱ#1)b,' E"3ɳ?|qmxt/Gyi*U.:]~BhzIǗ<) t> = ͛=r9Zi?_Iਘ/ow|~`vyM,ȊCs=yVrcY(-iƁ\m2{}(C@Պ~9pon8޾x4)g ,g ?e]c԰ݬYC/[ƆG?E,gϟ?0dKdΏl/.sQ<1{KӌƚZCEZ`Kt0oܼOdCEINr@tIQr%9TǞ.;p^Վ1|G,&+hIlb5~t|x%ȓ9E,..;OG#_ܼ}<c0K^<0uQ咞"_n;kCu%j$%W)~ <[|x3( zChv`j0JSI2N#z==sm Hh+a:"dF^\0ñ>chZg~z9rɺhc Y/L=q;Մ" $z`$I0>ہ' i;Ds2+YV,W yu"%ZO3/4 U5J Y =/_BW0}Aed1d >'X3d9Gk$=UWdZ2-:+`-ooҟ>}vڀ&a"W c;|۟QqSFw;+nb9=Qu5m{;:%SsĎ!I Oxq#//(4x&VԲb\(~/FK9P%"&DGMK(@KT7U-ҤNqFXaOnpWXd>l7\^?cm^yEށS O۞HL4I0!I󒶫醖bVibZmxzId=# T Ld`/h:M Ip;G^T"u<| -VCB@1 K-WRFw$-KB<1EA`k}<-YVP9a;2A=Tm'btgDK9pFn I >KHYG8)H$@wX;cJ!eQFIi@hƮb<86'qwp:'M3߷'N@|3NzAU/,/YÎa)gyY`SP*|FQCIl$-3_DLN Y |FHMZ?giF4M8xg!tQ 7Z2vc?>=X޾Ez{ţnjcyb-]Sg >R/26$ $ō]D@$IYW6NN.Vlג&HPWՉ:a뎮1+L]K34ihQ@}]K1Kat훨,fr<ɘT#niaYJ϶2_?2+h,(aC"ECWb5QݎaaH vŷQBxGWEФx >(L΃X,dZX_B"D:/^eR)A\I x #Qe 5ć8drgS Yp8;cd IFȡb0"v":!. gz8>&0xA 5Qȶzw|w"#=!Kx?` 'ށvkwm0JDGdRu58p*ӏyf0JㆉrFw?Ŷ5m֣U_zTڶXӚy! {N{vrq ƱG O`}U9Og)&t8Mt %,Ѣ'16|bj{dtv/>}{Oa}Db#qv ?"ȷCE!$yG TlBHRpqDiV)E 0/ EJrljn^$EL=bIp7_2/K<-0uܽO,LFӍonytUr-}œ+^~'3ơB||MwW[(2֋FR8:|^o*=RJԷ{2$Ejn=%U `C?pTךc)0͹z;vC{ܑJIzi'' fՖВ/>k[p5q*黚̞nEF;:r9P[4/Ign:^yKgϒՊO.Ɗӡ > H4 {lV<eKc4YaXժ&!shzRih{{6&e332i5L_?Q'o~3>300=e M[3bSp{s|ni(.+nt,4bMppG 6=&H-bN$*!Q& 4A '\\` }KB`;ѝ*%|6ځv\J - N&0/X=|5tOa8 :qYRrQM=jF3{ht@36+Ug4OL{ʾbը8? $DF+b {h'n#r5[t̄"AICþ;%ǗK=jw1e<3SUs{ K㉡ȲjEQD)8189b&Tw=6t c-J,)LFjr;.:yInfon^ɷ/o_;!*UB;ʢ`^3uW2) b5OYhRU"efx$x:13T&Hm,i놛y}upq`Z>x蟑35g}UhY7\\]!edfŌic B+RVKb@&~}#{MVB%n4޳IPt}J s}x!ǎd21VL{8*Ei'l%JXd3i:GTwCL7?˜"ۉjvb|Qt=8!tໟƛCͩ# XT×~k>~O&v^߷LjűVԕc; 7'z%ڎJLÞ>hdɌȌB)œ>1"ʟoB qx> /2ĵs߷]"K+>q{"Bǁm0YƢџXM1X,Ȳ,Z2>iBkE۶(߃4OΕE(gw?ɟ"I6 |-O}m1ȇg;;;iV$1|ߣ,$INMGݶ|;&MPj2mȴaX~#,}g&`~F$H!⋗i )i$FS%MuDgw1Jqw9xYF"{ڶxgkxI"$Ѳf%b`A@ښ)8QyNe8??> u3[$>_B;hhuPTZ ed)⽣bjn\S!$+JtJ Yykp㈳1A"8kiU&"?v=C uDP$)brVGD^agL{ܾxI8jpܾxIUWn83ّqhB*穧-B\8׳ni@W5%i$ LѩƵSw@KC7t(IqDd ;Γ$6x$2nqByF%x:Ah<[GnNߐ%5Q>l %CUUrIL}K$(U4 $I-:+bPA>[PmpY *h# %8N$EBWuA" 3+V)77t &FM#cé)5Bj4%5X14)Ybl; $$(ynwC'61x] ID}:ҵV1N9{8M!EaE OB&:EN8o1^ϧ+Z(t .Ѫ(%wEEƛFEӻV1Muҿ3gwg~w_s̀1;&%AxU\ܼq|W>.v{.Q"k25̯J>}_2wo8Y\^pș/ V.ב{;rkf'(`D6=lFb8mbxN-˘>1yrupbcU"Y3qk(->p_פ lZ VemMqj`(%.V|_҇J3v{Oݷ|[R 'Q.·?(rnv cq}Myrŷyz6n x/X]<ێyR ;NWN fa d`cn^|dGMI`ɒV)s[dHAG/XwܼviPFG;0ӈ~@:O\N$p\*4%]zE`u@?L09G}:'̙YA] :EN T)T<>Vд$MGow=c3qםȊ0g#DdL{oЅ@<ڒJI*%7^Ηv"[I)w,N"t#apŸٌ@3NdApu2$ES񔽩jpp9M[t{w6xL0Ţda nOt֑g mTu49y9'$iF2+qv=@#9+֛k\?06-Պ-irOYJ^ gt_|7a.qǚTS2kd Khc sr;2Y (fe>Gn"ٽ}*]s&,/;&2O|:0N=c?0X-Zp{z\?apO9xx`蚳GI ]M<AXRy,c\P׬[e۱Z]Rx+nC$![6dƶC@SUH!H+9)c&%X t„sy7ٸH2&;0hgqMfen⸼\5=ddy 7zn<{򔺮p}ϗ>~XcI !-CS32 =݁="B|Ǭ?|D-HƎ#w/aD(KS'sv_Lm+u dy0t w!(膞4IɳfC^l\2T2z./.\`س0iFA%)Yswj)ib`{$$Q#ZܜlF!%16yC%&rDMS[ PB3b$d-80-pRQ\@'!SeԂyF?`ʂA nK6K Ŭ`4G')0`ZHhua`u"kGIO8u;HT 'NLI r)uh2 n"#ΏoRkNPEg4iwܩ;eRhP":G0  lv${N!dIIϠ Ѽ;)(μ:/8칗N 7Uu~ ";K]*KX<s{[$Iޫ~&Zs-0w=I(5Iytsx_"e{(_MHS0Lמ(pn@,/#HG`9O=A@$7XmhfU ucq㈘FƦN#F*4͑pPkVW[. d^1rմNQTC ;qw{K9[BD,}JŔ0Q;t7q >u$[ʓi8S`$"LP8|w|sߤ:#_Ǟ٢uErvw'[ h-:bѹّ%թ=]N !X--?<0[,H|{`;vǬqhj.=Bj=+^bhK"[|O6o!!.zTNpJ|iQ&_}zI? #޶h?q!)=F%%7fI2 bd %2KY^,`冻|;c돨}]-rPyWt. 㤥zb ñsw3,3V&pRƢgW얛ӛ0ԜR'Op`rX//uM7~/zGd E;Bm5īKDX <)y {d trڝm"#_1 / C~G)JAR(Fyз;grYg,+CV~2ZV41#h<~G]7,k6FƧ?vV98p8m#."coGʫ5eIqfqYldC71Nږw,M ro{~`^O~7(,2zٷPԻ!(naGZrHݐ%ÑfDP!O+xԤ Az<FՖ} Ŋ.MIPOww'GƮ'Xf^ QJF9 %]{D1JK![8S.x68 ͆XQUJR O<^COO'O}"/vkuAۏzsH08&@(nxuZ 6[Gé"M2pP EIx繻EGۏ8a-7mLKÞ>B9>> Cb1C7cbD`[`cädy2xAfI~NwTՉ aGyU4ۏL"雷< <w;"aV<زZFoX%X=5غf%ү}ď_܄_<@R.KEAk^ط5_sb;KyEҊ4˾3?wCwD~RkFd B'(! Ȼ? 1!M&yf&>YI6B۶*a*:(3D1L#c c4im"Yf#0\KlwDO6Iwbb}y4~Ԥ2/7,k(V30霩q A3lUip3nXs:$!M4ZHl7&2KF&gt&J4(8Nt'3L钇{D"IR1HRY:Í#$*0[(RGɀg`'2H`"-/1 *A鄪o` !# 67珮.f"nj?ENi;K#a?L|D(TPe_b 6-JkYT{tDt\ X/ZEnb&yo›ןkTcXSҰX.8=s|?m+B>{Ǘ~5E9Iͮ/,.Xoyh'Oh/̖%02(sSj|kEm7ୠ0C'm1ZűU C7輠RAS^[DLfdi8:j~S=c}Cj%R&Gh@M,*S|QL'pJf"dbH@N|C94#_5|8u,+ydsok,7kn*j9&>b4^ut+ɷ^猽eh,8vW1A MGw{Cʋ]Ve L\jC!%7b"l@gyz{َ+e3sq FcalfsӉSsbhG֚Y9#_,QS7E[X7[o t %1V5%?OLxh*;HSã G~0!/2H¤4i~hmHjdZwZTokvQmۆk=}3‡77HsD_Wb[Tj$izs)Y]9LCCo-V$dyr$3:稭%KܼړXGc|q,aY1/ Lid8ITdv$`LN4}~ ng҄@`l4P9iR,B(#MF[nnn0#=VDG\3.//#ZzQN =A*5VC5eS8)%Ma#.&e?KEg@ ET1Ɯ+=CI,I2JT$qf"ƔPv&έzpBU ˈ{mEJĔ;{4"D}8C`)rRo9U=zdU&A{O GiQY_Չ|b0%'d2I(ĈI D"hj5ogsz7{v )? %w7(Z 8~/iFӱ}~M]#CB۝xh";ϗ.7rI!-Y)p&Ax:@0:J+sޯc*&Ź.(x/{zWc )%tT1(ILr1:TFk$8P̹,)ӜlRc"~)c^d}N)ژʲʙA׹>f9?}uIo<1Yvd\!><|ST1LH7 'uEuQrqq6)cEJAh'RmXkIΒ,1m+̤.utFF;dJa/_ps<Ϲ@ĩJ?!ہflq8t#e9kgԬqï ͊oRfy8\/+,&M2+T(1eINJu#׆LiƦe:t}Gn0gxD*j軁jKy&lD()f%r)`Yʗ$ŖDIq}zlQl@9]3|b}8bCy"C)0R16GC3KKiNS~ c l"IHoc¤PIP z(f qN)0B/aEY4i|3k0MET,WkgSl fe4Di_\ۆ9Q+"I1KemL8?aG#+7$:&P&vǁKDD*Ggs36#4)Zsr(m?Sa=k<^i01',)9G`zS8AN! R~W sO ??(u~~DJ0i $e)q!$M$2ag#}}@Kd9"HM yȵH 2`DcGs_c"*)Z'4c4G-?QR)¹KlM(ƛ1Z; B3+vm0Z#dP  c-=A8L{%Irv"I;\v1g ܬY])֔A:Hu8tVЏiqvW?OA4Ʊ~:odH%I !%ԁOo8% )mӲ?@v)" JCU mam,3dZ]`; ֍O:`$)76{ҞaBB08^bH3 (eH9+%L2$~Tpu2̸?,nF OW _q{2 ä;6gt@(ORd^2mFTX^-\-v DW9/g׫xbj{LO>#/^ݢ@ "Cu`C1<^q{A m?T7_RA)ͩb P± cvm{"5&un`X2QZ0Ue~1DEW?Akvb =b( i &iO'^Qu^\׌e*5~ftt΀C@kX}g<*N#)hc|=bڥsN=;RҸB-|O _$iÁ~9Jl (|x|]S? Ŋ/^=̂dA9R%aGp@#Oʂ[g[?YG[ȸU{ [wm4z^:;gZ dJ!\`IBo6o![=@%T= !_ɟ +@I5DL1h.2)).44 H74zhR-S߱ c"Mu^B M,kbz%e.Us[CA EضTęp.ߋ2ɞP026q{>D.sql蚎snlx]jf^DZ{K!Kr~oXGQޓ'zpmD(ś7(:J/x<54UrƱgZ$ &T&z;pOXRsDz93QFl\Tqv(*Iؓ%eQjb2Կ^*Lb"[=3(A]+cm !(2'+ FTɹݞjB7Ǐ{4QgD8cmU!e0@F >{ݎDk 1Y`jQ ќvG/$:3kn+fuzpXnf wxA; ]{cZd5ݩe89WN1JjbwHdEfOSY:ق$/ (LL|A^AHFRb}@Ȝ\1w;obLo"+OkGP $.nnx8ǁNvs2Mrfbz{cUu$P9&Iږ_ E6[.!МS0O4:Iz7!( (0xn)6@5П F;L5qdr\ q&(0IJ^H kDdI$.Hl `a )ID.0}iOBW"ƄThi4Mo*ONjTX!qgġ[h80)"sy$%=C (T ;;koeO~ׯ Hla pj9mާo Us$+224(RuBaLp+8(M \*0!_A@Ri܀%h'ꡣGB>RiDxIr~_ 6& 4]M$H!0*0)Y+N)@~)-x Zwb8|0`Y.8*;JrS,awS0v|h˪Hq?mF(ˌ'1 5.RQ.f[kTTH|3>z! \\M/߾]U%_ڏ4- `<Ї9"Y2ɔcE(ñfu=ϖKww$J2_[˒Tf;<Q`C/>{=qK9#U;r{^ܡ_[ #xAK,gu]`LCKB%LbWWBǻP=Y_Ag5G0!2̀gF~cNJWg^@&?3~d:(I% Y!g<`f>C-XtO=ݛ;~~/%3&K c΢l [F;t=? 8l/f9ꞮnyruI\3)O?Oo&LZr<łb}A0MGI]0)-=bc&ל]pk}h;ق!_+~m|o2Wy (F먺ka ՆX.*mݮ&rF#sZ X93D)SLXQZIb8N4rGTUt}GUҷuS#bsq4N$ 뗼|_>w /^d\sy;llc hm {`fH ailXfny,uf8 GyoqC, xV9M2fHaf#xNKr򼯐EE~8K G ysjyL4@7a43U˷7`Y4Ǵm͎W/7Ypu`1ϱSG}s8~#Ų -JM;,a^& k\of\RO|HٷΓiEkoQ_^|d{n(fAYs^}S?LCEhfo[Wo8(yu '<{ڏl?f59 #l<њBPpff»u;`= kp']_S?_I| BkdqYwtS {t6ZkI4uH>4)ҤIcS@z=%Z k!VI`t/rv pZK2% |l6+Ʃk~? ~oQھ`dy=iǎ() zG&#멛q 0#}74;5:cGQdY@`tr6 CL2>Z;9ZӉw{~4bbJY SlE1Ch[,Ca#+0[8ad b5-iB?NT]Ce9yxo*2AII:$Iɲ9'C016-2IEJj]kB&8N`ہ^ͿD&K]P蔩mR "NgZdP.70@TYtt1I#{BEZ~w?glY A yd h@4EeN#+$}sbꎤF$&B`mdoF 2c, ds24&Q:&XI lf;Yg-01NB@]#y J_?wE1ɢ2qAK"LҐ( d #}ߢR/INel6G B)Çݿ 0 4e g`IrҴ@˔,),xSXy ޿g&%1 3h!˲h1$v :t"MѴ;-ֿuN 8!hz;D7;As=<1*{9s??o%̿#3MJV P}wJt)Iɔ9TStq8#GVfsnp2-Xӂ򒏟bҁ4EzfljuA$:z^!"2$GIE۴?{`]בɔ4d\^\0H5JJt1 e hha S7h!M/L|? ?DMmAq@+KuO,[h{rv_nqBM*37ܼCyK>yQ^aqsugOx,/785!&K5/oEWQ^Jgs"r"KƤ˷o y#7:_P -94vo!-S>z F ~׿D>[\_*YŲD)ņ5+R=A8Xo/(Ï>ë="|^sj6 uƗ G D/|LJ'WF3SEzV;? `y|y 9U`[g?-~OO(((Ҝ \=`1Op~-~Q-a1X)v,|A`Tc_ŷN| Gޞ'7|}5X>-RxǨwU#Cc\r芛7(I_zNf)q)){._B)9gڶ%XZaTN*3IbՃ`9<cU%\p`mGC%Sa F9UXn(LZynF[9MHPf)ÿE$J%Y^Dh IQfsb8Ѵ&Io߼kad3YF{'؉"M)濊׿W+ق,tcұ:{Hiq5y4g")D'qB|4O& LJW~oWL;Jj{8 @G NH@@tLk3ۖ>IH ^C9I7'$de S9$%~H$2\$|pb^i a'1Y.F.([ab$(NΦ2E6lI2<Ñ~"+bjEթg1joCs|_#>||zɺӟjg&i8'GnW30F8X-rdn5כ ĄIY%)RH6Qh `c0ݯ̪wrgI8&ΰv?g~U醙>L(82leM,RmqCK@[7W#T>Zhp)!ڦ/ d& Qն-}GZJQpw8ExD''.X,pF| U _e,(m\b(rTHMpFN,#7 ŒGTm[+=rrd^'915za!^400N1"m,5(B^?OyF6y DNH< YE$2-i Xv3 lF_kɮeMĆ 68*+˪H> {^im]첮T'ϖ"bɩ]p` C57&/ÈOm P "0EFVdi,s6yJ0t0 詯貤Q9YPDo65ϟ_3(LU` aG42]6bGKln?kZ@PJ S7CM ƎQgEAB7G=C;"Ɖ;LD+v^kikO =;$%t I) e ٓ :!S :EB/S~wsܝ`Cz5}?&1<Ŗt x+Ç@Y1· 0̎y!8Q,WÉ7+]R* 4-D۷dӌt]Qyr@ =ɵerd79 "SEoRPpD!U2 4.]$ ( 'T(MFt D%f! H"6. h) "D*2)4BjfJMSv#:i8b;q.8&.|}5 r}yF~}遫/޹S4i !Uezd-T m !s] X# Qb|bo!WG@ayD]-#(x/j?@(Gə"+!j-C#e'T}{#ey6kiV`jRgLސ+WTa41G4eC-SG4zCQL p2$Bg4 8'o^q:x/Q͆*;PkLHgGjIh-}zp.fٞ{?}3Y򉛻kHLݑ sdqX3qf&3Cd?Lm'ooAX@+VՒ_>Z6%m;A\vda,W5OTq T<袤/{"GHTy,oy?Q[Z7Q]]DxIi܍ı-~& k;kK[6o?#x?qِhwdWʒٖPk|Ӊٞ_'XA}az}fh{ʷWc9OXz3EVTMtJ J{~& UUs8AӔrY.j=B&yBƎES23h)x49e͡?-7uooqӜ@u2r>+~,U\R(7S\C7Pl]ϲvOe*Ä, ơgڀ 5]4=O[YiD暫M4-UVbuӱ'3n *4 7AZt>`SK>?0r0iYFe͠T$Lhe!^-y}~H}f5$qv%Z,wSՂ#A)ɏ? 7Ys&J&<AjI,i2 hKW0eS*KʥZ-g"b}$*}[e] u9ZJ)€:d25jƁ4^)#" "0ߒyK}0&U:8׃_̨N$^|v]Ǻ tadgPMU-Fe,+=)z|Y0ɸ$2s P ZK%hZ* ?ٯ6dYLïY7. wĹ%~Nm!d4bw\gXo1Y'1D!@Yᵡ- -RUH߽ bPL JT.;qLVSM2 Ƌ3Sp bc`)\4y2`UŠa<׷dLWX7p}sw3wq"3h-hSajb%Wf1aQ\6EŮ='sr~~<~~=EQt-K'N_ |2]!:cLID_Ȭ"RHZժJñ0L D2%h_ :F^>b{{6vR,1?Bd٠Bɴ8O#xA7dFZ.} *E^U S"r{}DܞɊ՝1]9Nfe2Q8D e 09J?Y& CNh ۶FʠE?)?Gq&.a.4!7 #`2Co}Ov ;B 4UԞPv?3wi26WW%*Àq2g "c"8 ;8N//%e;[|<dFѩv*-}IJG%Lr,4M'oZCN*LDD!e#6;O`F/ HI4I|9Y@I$,Fr̀&Od%HIhnƹT!sD7.n>1'"".c.f p'H|H)J !5R% |D$!JBHխ V\NPOzPAdL@bN2{O,7D3EAd5>Aep1=Z(_1J4,Y45@+4X8IA{>Rȑ?3-;6*+QT ?[idv3~^"}RIm@ G@&4z|[}vĈ*z ^@cQ#4߼%4c{J%fyJg\t;2)QH;`yٿPlWrwubnNmswf N+*#ੌd:zTib *רjfZY]E|NokfSY._ۏ,׳{=yr0h7㻁Ų7[\QږrM?>Wb6,nط3LnR>/Ytγgn(fK-|0)A7;sXig ͊fQ!ATo;tg9="2ءL'5zݑ6j&00*bUKCn,%.x|@xc M:yM9@ 6Lh2-1MÛ톡m?biPˊa AVXh]$Ƒ|~z㧞sX2X4l'puӇ'Nx 6)d+i?`ƶ9}/Pʰn2q>%W>ӝ:H&*3)Lպ~p]"'Jd^R)C{deSBbD;^H5<) EjQs"l\o\d]K-7[n4uÏ J\4&8X*#4Y`>QU%JU϶inD?q^}Y6zyd7qz~D4v@Yv;-n -rf1k/TZ?"Bd6W5Ըaa;?}D%U)x!%6H&7b6+"WWK޾{& ~CaqBfY;LnRsޟ9If۞6μ 6M4y`n턔#sJx #(E>_IDOf&BApbd&Pzy8udfЙtcn"ׂ;T"'F5cth%) vFKI^nRqY."{CR=KS g'-Ϗe6%ӄ)"뺢3];4ko軞 M]1Ƒ<9}ZhS"SG{DUnDT%yD Q("E-Kb}4,(g֥ >zL`n.&ZK9lA`L0PSHER>$S*_. 1$)0x41R:1=mtDPJჅl,b  KJQt%=BOKKRc򢋿tx>d7=p>0FlFD)0&DžyLv%9eԆe%!Eifo-ϻ#(3ղPc2>4>Eߟlp<(q65.`2:ڮG)"LM,tECq!8<* .^m`QUZt:P6 mPvB OO -fM !8J=#~x1ڀ0Gɚ =۫%i&_`+vn':G:G(M%0Y,qnqu@Vn#7LcGˌv Wa?kv mܿ!ҷGyf޼fiӑ=犮]kٟΨ8τL`ӎ*+PU˩/4"?~Y/xwick^O0WHjd j_?q}&km˨0ЎmAQ)y:3r2%ΞuCO\-N2#`UUg+p5,KO/|G81μa_҆?D101ri`Y iV]u`]R0c _l 8s2D['E4'X5 G?\ݲ|Ga x0ȄD hgʲo6ƂU#Vc{jYzx0Eŷqlyx6Z"jd:'R*fSg5Raq,Z҆fp>'(K;s\ܟx ө|x{SK^5LP*<7~0{"C!)&[m8=EVx02|^\R}еg2mhL3/v(#!R")臞h=7tǞk#e]qh\c{U QX)V*pb,=~é;SVK=H~}Ms`Se9JNfѳ]a<;~ĩݱ4~psriKtnhddg޼}'3[͊>ƻ5)%U1OCd75W ystxN-F`У&i$/ 40 TgGarJRXOdF*lLM8L]DHdTDR)4OIНBRgG1%0c#-ZKVD5(bZGLvFLiS1:a#!Ly4K[&k9~~,kz:`XSݫM5 jDjAh#W[r|xX_-8疪qQ0ZA/'~5qT[&/8r* Yc{⪩@jdy))뻷lꚫ+GAe-F8wNf0XcH\<=*9tĺ*'7vS2Oz<~R+ZBrK%S3#8Ėx901&yWQ{IDMCdq(&Lf_9ZDft>3,(N)5@BDEs<t2 COt IY!*>a.uݲ!xًԗЊ K魐I1I"ExX;E 4?+-w|{0F|f{M7{4LO-!DJq<|?X\乹x:|qxyyas-qsj(Z DhP,Xmam/.ɡQɥd*c"4Vy a'1hDh箥Y.TM׶]gD#UYQ}$/kv Ĕ.1"U8y3LE,3s"Y;"?\̒eN3ZVL~$+K<&KՙiZ0YcǑyP"R3J45jY""0Ȃ9!#^a'كH%hٓ i,pH%p>|qJwHmP&Yf7!eMcb IX#bRDi'ĥ[^ءTSOLKfh4xPADr!HR_Jʦa-LaD9RV u0`|rd˵FZO8qcO<})ɳxʜj 4+kaz/V%R0LE RH37o[qćH-HtF0 #?!XP.Oh&+ZAy"7yǾ#H^<c aD(zr=EšPb:3 D G+x(2)Jg8?POt('aHf9=&FBzO.R'y.uQJڌ-, ^E*ځJrcDF'Xcgp_jēEP'waXi,cl_ !׿M*<ŀ"-hGi4y vfе=tX8ZveC>|87C3"bW_m9f홼QYAe482ZIvy3Y{I,YGf* TyInr6{r )R=MDɶٵ=Kg߲|vC*@nr$;xԜ@jPN0N-Qn&oy𰽺%j0H,?18AQءE S.PѢco߃ؽ>s{|:]mR:k&CX =P֩g?:"ڎoO`Z"'O}3?=a: Y ?9^w'yD9xS('6WȍAW )* ?) u]a*K~9v'no=`ێuާA^z~Pڌ)2鞓qqf?~[vCZ:-uӌ3&bcr]y푋Ҟ^iejMtc!t2ח1s.9*X)K bt۷Է5ԑm7<'Llĕ_ÿ=Ǐ/vo!-"A|~x$3e n_͂h=^fdY|ztݼa F!EQm'fQhOfy9:6[xi( &7Ho;$i*6ǡb`n8T7&7 ؓ(q=OQ` IyQYJأ|JKWT~291|5B lpdFdf08MHYDRvyw~]n7jqE`dGp3u νŊH&`hxϯLtX]>!DX,GHՔ퉫kd%9zwgXV׷7%yYD@AkC{ɥg5M`OY.4UCgGM ɘlb1jQ&'/rfmp< ' r䢈(PqJDEL]?p:hOg"X/Hi*| 2Gfks1k%&U[yVdB!P9,KԚɔ[Kߞ1J,UER:D('uB66`GzAAD&fMi`-NN#u?=;irzY2H;{ဉ3 xxzS6[X+n Q;))w R9D !k e1EM }OI`PfI{P)&1t3q!:T)HkndQP*BRm̓%3RI]Ӏː"8/k)@&N~g]%p$:R6\=1 |j #ZfIzi7"OB셓+>}NFgɳydYż i&0_zq!xsj㘠"~ea}gh"}zaR nn'G;9l<<~f\&_.p"PC$`<˩ʜW4MιR?Q>Dk~ ؀gta `8Q^ SV CZk6z2' IqܵTyt$4FI2'xsmwNy/͋a(g8PU0==g#QզyTRUVQt2ڞO"cBY8ZZ4i`zz1?N).l _eDlBҝ[`BQ8czYieDPDZgF_@/?8)jC>}C4͔YNkNL;z$GU6RdGy*+RxDhZD D8pߑ*`ijD%SQR0M4/3} bxvk3J#(0* SDXYl`;p:~ZKMd]0 | :q#af\h >MNGi X Q%;Lwt@Yq>US͘<'"J9ӱc;`b?!Kz'!2"cHoq6P7 ~F#^.X{IK;ʜ@b2uk.v. _@눹  cyHר钸Ip(Kgn@aX-V9lYxReY6d-ʨ;vPEiH)I?"?fɿ^w rR0Gx~ņ%|Oe3MA" 1_q', 7xȋ:igXqVqnOt#o;yc d?v!pJ/-]aٚ#նFH8o!w7s޾(q:1h?F21cny{0Pm8<#ݙvdϔkS׬$bal\-UFssO~dx@- qw7//3!D-Bp޷*Pkw+k^n2CKG nbt9; 8\=O/"wo8Oo Sd6f "O Bk ٜxoE8Έc0N8N3.-64uEFQ)~b7Z_Q+~byF#a2E9O|~s8CB~Ns;Pv7טYĿFt'>>Q\]?,LDp`Yfb8 +l7%!G0e@#ɛ%(2R2tF:grqAKU,%ޅ6H m{B u=F f,yqΟX__'PG;~ۥCzn+^{5j)M>l›?'RprȫylAN|#WUE`"-1EFl*RU1rwop.rz83V[|Qnk4O,KÑzGvxSOԫŀxy~>s8hBoZ?2-CyïO=zE`[ՌeLB5]xd1+̇22J+͓ 1įkHÛ.BR~% b /50PT=EY2[Ï|y[Vv8;%qԞQJ1EN#<Ҷ>R=)M؏L]K?,?;2m0EG<BAY.q(xٟPJQ9>ɽF,.v_fSO Gd*qYQ)c(#ljj{ٛgԥI p@Ԫ)U[6 1 f3yT_Z;Hv{!%hnxyy!pi vd4TpHdO;3C^TizWBTɈ*G@GgZ3 =~J*9wqu-M]c rDug1iN{3ez'uһQE. TLnFfhڶE6 -ɌF]3ƈS73-`{آprgZ:t> a*ׂF8דikH)]`=F#dy{ 7Gd^RY,T8)y֑g\Lz$J TYP5 LsO)!*,R"N lT>PV EТ R4W8;PyN,Ўv*0yZVa0#F+HGHEkG0Is9Z`B d3F#ӹ9"#q1Fɂ)H@HS ! \jLL7/ӔhHo~7:+ "*ID|5Ne2$b@up$ i}@/ 4x2=:(/ I@IU$a䒢<\JiddeҒOOciS3ZXg{󞹏|;6FxS)+;L ؙqAFl yw87 5<}BN^L{vWt8Z43)Y*ojX|?a^vyHtz:=ݰ#ęf19~|fZKL65*XVeM)LJ=o! 6|`N|sYԚ-wPxJ-tv&\g1OsO,>Uժb,9sfA=t0XoDWfеK40 9 U.x=&6CK , 1zȈ"O&.YntfjoD)G*Ư .)K,(dpC8yI(WN ʂq`QoB* đUrIZ3kd}Kt@'YXirUr6%@]d+͛;tp1 OLv A,bKAU+TB9pfFS%/&3XƁa&#+KLU0R'bp籃Lsj[,K, AKy9] &`4ydv^yYoIQZ-xw.x憛""<;3?>03Þ|FU'gV+e{ERx8[NZ@ԉJ+=e]-$f}Γ}fFĔ"18q`gar$0茪<1@fT'Rd$)r:hbLv4Mp4SKVCl'F,ȹ?E0*kM jr"hcx{}*m}#>Y5ҬLÙ;#b7O @d1z9 LJ1Z'4C$BJHB2{G*CsI p10y| 4N5&FIi4ZzUN'K'$rʥwP˯/]'-sstЩQ(;2";6bdm;!3B! " ~e6[ s7M=7Wx8HRP%EY^3N#咪i(:JR)t /mT0 ( nhRBUi2cEa4h %}wg#Z huB(2}c׵n*R*;rlɵ_~e&Z?!q\Q9M@ Cf5Jks($z̓)8[QnUF^da MDz"f4@-Z)^*ϱ.PT Y}ʬ@وrm@,"_XSDrc&C8YDoQ#G#)0M0 fHC.z>ĴB$&Zb:WS/JO^ 1P!I=В%a$( D #Hn ޻p%^l_I{1O 2:J,9^cxBH, x?Z.ljy8kia~¸jSHyWB,+yNK]չ> (q&2((/5W{B]Q0hid{Lڔ\mi9^Qw*U@H;"r$PeY+H>XbaGeƔr322gPnS/ rh;7oyy͂>=5ԋvpܿ˧?e=qfzYӵBvM?p>n߳.sۉr3X/J 8B#4 "77X7"c"ŒC9ŒaydܝY,sfc=e÷wORyIc|I' ;;?qw<c:y 4oW`ja4ƙ%u;%epg~3EIo`gpvr ; 5\o=䦀9~񁣵H,%[~ . jU1"CLt>QeS([ԬTN?Z^1g~v_Oe(4h׫3?qؽ"LӚ_l(SR:cf{E&*DST4ls2T3;F1[>~J0$\ƉON,kMlͲ.R"F U RάVKh>}zY-WD*Kvr;bW&KO]T x>yP.+v/ \qiDu#'65FEίw@7Yb]ݚDXT>-dۇ8're dQ$#֎!bC|QgySPɀ,2 7w( U,ӿO?~5O7W??#zɩ(kYe8~z6dyĉ<K>z?!jï6M #w;Q/t ZHvpji]_>q{`]rԏ:i5R9G".)#WKVH_S g39{)4+ 5"%yB|aK:Lp,3(q#Tj|z0*2y…p&9ߕ*j)pe=RC鈳d !.6f&8wi^(\⭠FWo2K \&)VEJ/2s H R+u\*-.D]l#+K&o[OqZG4:n\#(j mOS5/tLݬX.SMo]BwD)9[$LeJp88Ap m sGŔSKLdIbhWKg'6W5i"kK`@Q$48v,Z iB]82*󒠀KP2)}e%F2t9٠dF/?# i'uk ;GBg2)M,>hS]RΧҸ(Arb}GIFHU\l7 'FLBb%AgK SAI*13/jֈJe,s |*[bG)IP bQ{%Z3w_)ˊyݿ/?lCޢZK,ܮZ^H;~"/ǁL ۫-e>|k/~`ߎ319\r4,jv]rl_\-7\iqB0v<>Nf;B!+m4vL?=30` W+z͇?g_x7@+T+vdxxYXg%~[&QJGvhon *s Rw^W$z7nMKКϟӯ)B Ow熋~;~fn<O ol(ˑZݰ(%y]xG wSTT7{d9K=Dfi 4 Xxzy$+4K;50) #o:Dn˘{esxD߷hRL5vnxYp[H?zqG^)rū;K2OezyxG_ BiT oNMr؀v됋gTYv:h[G;y~ꆲQ/͞ަaNVH0Ywic!?4.ȕԚ=S?G?dU,3no.QnB{0'hY9K/L*g,K⢠; Lc ~Ÿ?ؑ-vGv<=ugÑEQr^]-\Pgo_ݰXoW bfX"@a0*V%cffDM˞nr%͊ժ,4oq]q`<<4~}I,MEV!=:ÍjAQT#tBZ)EQFT<=uBQ.ŀ.sdQz"xΪG¨IQvx-aft>#gpNpx3uTFSg9c?ի"R,6# v.+Cx?!dzLU9/<~|;7߱Y_pMyƉ*L#^R%LeDeyLJ'>>4O?(Kr(׌BF^JO1؎IJb{sy<л~x`jm 7 }_xK'H/ݳ/NidG} G8v{'nVu~yfme[g&m)4˲2k0 .brҾY 䙧$$t .kL"qHRb@H`>}H\.ԙ_e! $!L)\1V I3w~'μ>8~_Z.^#̒@ZfY3=S3IeT<ӍhO-ʔxz$abHx"9؊4E4 ,#$Lt,%BL4gRr<Y1!OHP۵dYF4#X;2R,.j!xVxdt$Rt,8j4αĵ+&;N$NFO`z9BxjpS5>t9~E6a(ͪ^\cLJеd&"F%p| & ,X)+%%H4L7+>q^GJ\"Ue"Gk6Puˀ*\lJy D zqF%42:2O=nN|ZD4E 0D"esHkm6g4EjryZ @[,F DE4t<I\~˛Ki@dbrBBe XsB0kYT͊(ھ\,(%7HSRTK.vשHXe1gS^D '(y aP1?uUFNџBӗEp)3zZS5YVʰsLMs7TPv#Ed'2T`I¨/չ!+<1 ȴj91()<ɩ&*}938g 53!MEE -rK,] dgYkӗb'yr%Z$ҝ○jTeZjmΏOrhMQ~]^6u8;H;4\V%Fڮc3DXTZH juD8 }T%L8h$4afQtMs,YFR4 e~t:88? w/Y ,t R3ـ2Q2hQJ֑vljz!8,"bt#Y\]l)D$sxx`[sTl6cx?}F8CGF7yyg{ovy4ێqysW+ GI)􊧟k6<ɳgPbÓg9$UE&Jxw%Wn>!'Ld<sfKf[V]:G\\ru==0HQ萹dW/r@,U ?v"D6aD^j,e99EЎs;]q<6<~yAQzry ^ltxr"˨[dLc g'UA# H^׻UX\]`2A]i ~z"x^YĶ7,.\]Q, iڎo_|Vub9+稪1,ǦBUԻ B^mi(`2OOj"g{ݷߠ3ǃH7yuZV\!kWnm||!ӆ77R-j͒:/LIV\3׈w?(LΫ7o.ys墦w7TEE%:]tDᙦq =Ð4!9x yN-(#\_.i.8חs Z3nhlC>Q#G5c %rE"}7#&C3>YK.n}b'\hrZ`9,2L&q 1 \5<#a\EW\l/__Bе# s7@MNHOc2>>ܣ˚UDfhCjz"Dh'ĺ,-NH,2Bp\\mk'qα5;c(4'*+g֥P:5NCpTu]xVB`?MEA6AIM4ӄ6h( aT'nGK~*"7EAf <6\HC;#nr'5]'GCr념(RR+; d\O.t)ScL\"@Qdŀ*"@hiqY-H "+--EtFɉ.T,Y<%7T5Śm16h9<lG.`ST~` FE>>3ȗQqbxu}x˻w`x}C~ Q$NsnϏ#77[\-ѲGJ] a,s?_NiN\%ȴʋ԰yI! Y_T?ǯh_,D[Хas4ĄFEN9ǝ#xJi}Rb(rʲ@J8k뚲, eY&dH#&5&*!8BȅHB&R8ðr?2s9!&Kpp9瘧1nRp8.5BeYLU89io^1[ɿ<==2\mkVĴix~y %Fba{uf= ' 4m?㣦vHcSs/M8ΔEJ#C2ŗY8$1>UY1:5:R191$<Ȳ,:jvW;Lq;b h-ʹ'Ҏ3}s:_kS')w>Pɐ1%ˢ0YrszTB %1Iq\)AkTUP-%'81{\3\.:,Be|`dA2=sٴ1I*K YƗ\Ӳnl6 Mtqߤ!J癬.e{./yG޾yȦZ&`!ϵ1 dFB:6i-v2OXs`kS] b($h{s;y蘆,Y5<(&= 15"L |LSzJdA +;! )%JS1(8|_"W`RӇJ5Fd#9(NniC؈>_RΓ΢8{DKHU 1T_HYeV]ZnNpfkY,y||<_XR tJ8u y>5X..a[95hT 2}?Pe%Ezɩi[y,j!yi<<_^tlY ,wwp<ǑL%NfqMW5ri6A:6CO%>uA,V #jSanԶjC GՆaE3~0:^^:KZͰZaO#ñyG%Wq{YЍZ1 S発^!ch/<=>Ƒkd#̧Pyρ;TLL_?}j&+*tc:|g-jyjF┢rt]{n6kwTZx4 %eF?3[`=iƁ^\cjK1^oj9<3#<=iS-dOL@A4~aYbP)}#Ӂjw8evG hHH*ĘF$G'3 ӁGҩ ]IFgA E"RS,"yQH⣔9̉9cbmFkLDmk-"¢Rh),<7U؟}J?-'1gI&1'eD VRb^&AV@ o4fw͞iNQ4SD!軞dOb{Gݜ1%E. E< 8pDmg ureD]U4]K;TVRgiO/yM =i'y<0N#JX۷8||f4/iT\CVLmFQ.jSQ2ّz!9՜Kc욂nn6`>02yS-ł}3P]h5a!{w抾=rz~ԍ3mIg=Ŋ1{:gl6[N#Csdq&e僦pzA[y!3*A#r;jy}{KŊ9USs3?tF4ݢ;9`FNLѱORC^Լpz<͍B3([Y-t|a[iźa1CgwՊ*N%<|MvuM c'Ks;6{sˁbE< Dy~|a@E %kƦEiŢ,lCZWߢm"@)aCՆ^7IDATLroд3y\U02I^U^\{()*ɧ{jSцێ`ЋHϼyu GA?=sk. :T\l9><`y-3En8~@KQ,a|T0wL$zAǁzwE?@!.ɕ^8TO]^25ixy,\ݾEfe4cۣJI3ꚗgW_ 4DDrYOzɘK^Yz&[@ <4'`iB3)IBݳMۍMu&TZ!n ^ဨX.a{NϏq&(/䆜-^ dz =W?=ӏ!׎Ctn77pKӄ 393iX$-'D)s8 ڔ=Xo.Yuqȅ *U;TG5Fkq@U%'$T-"JLq1$4XT"x0=Q[J#YF"d2@x$\:| ej?yN#56+ ʠ&%t6AգGDX"K“d f24~huqD*YՅg#baMyP~W H1̰*ipǔ!bdY/ AЎ}Bc s!d>u|X,6CD2VQ< .#Kfۑ]5?gYK~h-R8_owLQrarLD2Xo90.2NjCU/9vxPU p(U"r<ō~D?u/94-&(V59-sX Myb LgYf,`m$^oX?b>6\^ส&abGSKԗӧG,ѷ.HȪ&-H..Z^{_vU]-x<4^]S>=GF!~d3=C7h9<Χ X6@4Ctg!ij#'P8ʹN\ώ"lC}FU}*_Xʜ|I! 4XrٙLuMbt .KTUy7oD^چf9q&;2v?}7OH2c@D*1!e%jUT%( rM# (f8QC3JW(4641pcVdE"2zKAhڶӰ#]&ޓg"`:'eU?5tF?$8~'I|MYUCbd]:ԝķޒ+ÿnljFիw|<<Ӟ݄EEo.wf$āޮYrNnKN9\Go7%<|"VkNV# ),pvXsp}b+{_5-׫"Sp 7߼Cӄ&N]7a'/@VY vj<>ݐg5>!" .:<. {~Uij<~~O`+ƻ'm(Àпq %23, pu1*LrC/24[Dd|ġ9\|5hKK50:nV%TK~wsnQqx~g|]q7\\3xn8t>x]K?QT5y^RF f;{{cB 庆 + S0bdՒ!P5M v?N>|Ko?s2lYls,͜铫wnd,0&r<0wި F@\W++N (9֧I?ĺH~#Ap2ڱ=2(ï4B3wP"3;~ٿ_n*Is:_̯0*l-q8JH?X/FRE}>$BBǏjó=1ܬ}#B1"SZ#NwbyRNҶ' mVdYLQݠ  sDQ)>};zY\l@ wypj|GerOx)2̴/τi9 tǎ9M=o+t,X|basy {y~nla@jlwd`&\P<[n`Ǘ'ly}n}:<ٲZ/iKs6df\aZ~Ղ~S%͊tiԞ49Ȅb8h5أbYW٬6Ɖq1m4WRx.Ih:Eu;N1^DxEϏ)ef V7٤rlC 7oaZU*/$nћׯ|tO^Grm8-]:-o_/x鑋͖WްPͩS,뇆޾gLYE?G~BϏ_;. %xs, l32+yϏdBp.Q6dL;;+Vcp?ɴgE$U%K0 ['o4NH~ !93Z R/".&r5U J* 7(˚bEU-Q0Z ig4MxeU1 cE8QҐFex*00NS" Ϗh/ѲYQjp#1Ztci1YJCĺ (`gDcاrY-h~HP O,9\y80=wPdݚNea s M5 ={nT*ϘC)цLe`NsV#1RAG{:b)A'YiipQct]>l[~Zv<RH:Ǒ/riJ޼{G\b Nc#D{j&T%Sgn t`dB;u2Bg /fhXfK&gPsޠ A|iKQ%җJ%YYDFfQ!f"mI\3L<ϱmFJy晬4"UKklaKڮ+p.ciB0ωT_.;޽/pX1NToo?SK8>sF 49=BPb|:ȌbF+ET=5V+]Ow)g\/ RccGPexGQ'?cXҝX*Eb+4CS-JTd;|:12rs3ˋ5ꙦAQ%}?aGa/zŢ.mϫZ|C~{ѡCw(xۂTyՏaliܓnjLłbUsQcfEM$ ?ӊ*(<@f9k>=&`^!C`&~"pY]n͎ņcW 0\.H!x*qd͎W)Uڒێ3y5r]/}!Dvw M?ytOUmG5Mg&p3qO|ـr4EKg^,%z\x?)k>ἥ,KmbyPJR5R N !ddȰ,$Kׯ}KCz_`J"Rj95"C? IF΅j*11&O6k{KDSBDQ3;]:G*(S߁Ѩ|Mp!$) \7DB.+mC)4tbFܼ6D7OJ|:+_.B\TR"޿ c#80_^|$1$Lb bh} NӔ]Ҵ' g7 }1 (zS30) 4}*.YDf>fYF&CiJ)&17[!EP2b݄mjmR:$R.1uPLCb}BHY01x 2@ F'KyYѡcYkD" 9/"mw@ c(yuԐ#cC{l(c1F]2AYfl_]]U3c$w0;sK?ӹ˫=g~3vO bO96 ^_ mva q0LZ]PdɷŒ|'$c?Fs;K1:j\~M3ɫCt8jjS!<߁m#DT CP/v<̐xwCs8n֗\wVc͂zfQ@YՊm.$lO'f@GsH|?j B|3f8RxK&%/J>=@;pߜbz֔ZN3&/w?p,^(/wqu{Df:y">ߣCefN$z8@ڮ݉`gb$X{"ę8p֯7kI7) 4dd(x)kf*3\V52C+hʨaBwJ0Z{:1=?Fb ~:AG(Ȭ=aǖlUX,N |$2no\SfTI <=?({j9=iB(sryYbj9QX;[;>spODwSbZr҂4j2/!(g4a}G-E#jCe4q? AYTx6b}DJh|D J$شk(#ӱL@)%\TkMAJz2LSbh{rIHP.RQ6ɍ)݅HkkL3t4]QIЊJaLβP'K9'#eU=YV a#(xڷ1bTl](2oGL㉺,rM2'ցN.#х<(>$ %X@/'\*?~ k}˫?Mx޷8Q!SHmrUu΄asZ6Ρ /#(CCf CsBf-3<kg/,i bt=òӇ8 {4%2|ێ#E&HYiyߓ)y]T`O]C,W;=Y#."1=SסBRܩB(X$%1x~ kE8t~DKE7_vl䦬N'scO5E E ST%Kho&(9(=Ն}bLDiBY TEJ)~bE=bI\bdY!pv`(1€Թ8"Pae\q_bhR!YAR+'@i!!"B`6ڢ$H$ pccZ"" h%(2iawNDH.&9tỉLjPDqBaIRR[<8^A $fhdDr cp 04&Ǩy(4wpjUsQ^]0ځΏCK:P,..2ɍنi|!+^3ځ=2CEC;3ϖz+ǎ#v`6_Eﱳg8Y39I!%ir!fe!r^DqbP+ r2%ӔaѦ(/_Qv]S霗=dw<'`}4fa( TZebcQ\mR=kCG c(|xR^mptlmL}y,өe!kəX+ O T늨$WW8 , bXhCjG3yU',k|๮kVEn)Y/뒋튋͆8~L܏S`] 2[K^3Xzu,y~ ;tG LqFPk*/a8]MϬQ,443}zF6X]M$aMD _dY* /rL`",vEIr2zkQ#vv05f8ktV\cE-RsB3 L0Dqc^3,"3c7]N)኏|uE؂ ndQin VuFcGT(VkfhMX"xhoXuɮ(ɬ`Um1Fd[i!wxoI12`\RsѝD ra]@*NYLVr@%$,0E;U'd04 {υ+xO BhR*`ۑѺ ֍COn4US"dZm($1Xl=OwRgi2uHSRZ՚/zMidGD!T*GH$=q ^`()3Y]PU -ncQ"fd#~Y_\#OoOD?/A 8Ƒ0a r`g3ȉRM 7TZ-&/A&͏o;Qb ǯBP"W,xߑXNywOǁiX9=Oۙǁ0LOoyzڒ K?w,/Ӯy?Ȥݍ\2O'ʋk ??˞|Q|,bؿ5/{2oxسTاh?}dUd}USԂ \`݉'ӯ4Ué? t任/?1IoH@ڰP5Dx~4KIy7̣GO?8:n.`-_ݑFV%O/=|`SU솁/mG)mL?Ghw(CWc{/_aBο #.^\]]BPU-LRi4 $JBv-QF71==pY-jAmpÉ2Sln:quP% b )$1rAZ|`$Vqva}uCQk o [$Ͽ`_೜byӖx8R k JiG#|z6͂E#ݎx:0v'5Ь+TV?vԋ20S/VԫUzvsj[B8;JPL !ǮK;&+J6TeMY<+ %&dnZDԒ5:/h+,s:@~GHM,LJ2@R萆1,j;>ۤ@g's25 TL"UyX 2MD-10ڑ}ڑ@8'[@]v12ΖdYBMz83yUgd '?rLdxgg݁7K.2iWoLyx|;nCZ2GKSeDg'v_? $!:pC$+jdȲm?ЬJ~og:X.Zюԑȧ#ZhuVR5+*%;i ʪ@ČX;Rzw<7 •Q" lv ,(ʌzђ23iʊ>-qN|c7֨(* ~Hn4"xq*}f[*rm'{9e34u p6`ƔHMl{y¹5癮vF(hSQ;rt!RZ"80͹vx@qn$YwCV̩%~' EASgiWjv>/%%n23)y˗-EޠFI2qfGw Lu 6՟MYi(!R )}#YU׷\]3uV$\AL ~Y]l΋`rzi+D\Y65YnqƑ,pg\ "%2dZ#bdFx@ ʟyXoֈDr#֍=ʳPT \·(p$ s~~h;EmWɍ{=ਊ**FH] B !>p{sé\֗k\.L7 XE4vs%Q)F7 S0_b8>kgߧMiD Is!{Rc2 K ogg yqbtil.x5Ji4+j/Y]_grۣHrQIM Ñ5.ZK>c۲X^"$2JmQ(vO_o_3'R:G%/rl]c%]oٞfo}tW {Q, tis+ԗ/##jefd$ETH'ׯSfsضvxDV60f|5c7ɳ)%?$Ky a>~Yi./jJᑦ)>4wB&y7dFs5[7wkFUMx[=t GJd|zxDU+JQf]w\ccz$鉵TTݢ$ *'{ ُ3S)ʆ:aSQ0 Kv`bÓiqqsºr%-̧:K-5RUdq$JU Od͚\c"۾%&/9yQgLZ6yF;8]\.WLc{u, rӾEgn.>ܣD^r< Vfai2GGڗ'V1~>qW4̇%X1'2=e^JN.+ ؟%Ɛ邪T9;E­ cB(dpV ZrǬ>|!D & n.Եņ#&chRvZ;emb$S͏?}+1SVd<BMiG_An|S#f l O֢B]&axaٔLF,9=ly:%zEu4 JgH]gdYx,jY3 vdxOV7~KJ53J6|zOi.+nrH-H#S>reJE8w;\J&p(؟H%yi4u=A.ny9&NDtcA&g108is3:7S%A*i&$TR|,KT=D~LI' !b`>C`i1B\knLYΫ:%(u45T);Bf`("mg\yjhFno2 n759qS6MptrL*A a&R\!LtRdUÇ=e^p:so_ݢ2]l7?0fbԷ",:^V;̧N^ywvՒ0a&DfOO[nn|0v-4rj[bpxk)6TEBH I4͊q{sicѬlj S]wЄiV4-^qcQ787E/%xI& RF8'|(bу>Qk`Y6'RBf ? <>82MfɡJorJHR2_P1 (%tQ$s1RpE`{O.S҆PS Q4x,9Z2@HPïH"*}wU.ぼly54slGH? aO)AL<./<߃Dab{hRd4us% F"db BإVU2FNayE$b^-Y p`G)9E !)t=K驧eajIU;lpÀ&P UgT\ݽx,J"瞻kN;ן?p}{*ʻ[<.3\󖥀/,/b`P;.xzaԌSbSQu{7?Pg\ב-y{( o_e~A@g۔r^{:wO?/\f%j ?~i ?|1bL)4oi'f 2OuU+^tl=QMEX?Ց~wn{>p}]0˅Ta߿p&7Qt~n*YT<~zZWOB >XT+NJ͂ӡdi6껷<} f#x EÇoqɞ`ua]/`숾bِWU"[5qVe٬2 8hJN>eLnSV2kgp_[.//" bG6W "ɹ~#]ۣTg'p*N߽! J9eɲ<z$ 0mm}èPuI( 6x-ٵ'G23|vU&YW6"ؔF >j41{,#E(ם B2ky E>z6J!c߶&*Jȕ$aQ>,wadpBe2fϔuKs< T:g#/ǙՆ\ӴCvqcswO{J~ȏ߿\V"fPE@eO4MMg՚˚#u^\0;H7TD΢j2%] z3ǣN [GxB6Dҹ%#ZjT,ݞ!@ߵH(vdZȜ'xw^gyjc#8W6DL|967CRig4} Y|Nj!I4hBД<cL2}W]g!(b 1="kx?S9Á"/Yˋ sw/?~a,z×_߿Cfim[ڨђ 0qB"iWW,/_CہLý {4YU5:z>J~ 6x7#$4ܒJ|@t(}s>x(+CuE+99i7N-Ҥ{8XlHf4UY23vNC3!%Yf,yvE~JwsGj:vDO(`ZbjFłaJtBTg{wdeA3NEx#~w stؾ'_.@ LX!MDeEI ܖ.!&P%<& _HvuYQ#zR^h) K Sb(U0,%|VDY^x۟5!w@^%(Pfi0ST4D\⼥3mlbLDLc1;E6DE_2ʦLLC`d-34HeҀ3ӑryd#. SP 3-:d0= 4(d7̧#鐆3D,DwOhAfx#R+=SpZ! * +"YM1w6qާQ;dgW)a]b4"Q$1ԢR>Ƅ:?DRY7"v% 0"iٮ*m IT#8ezQv'a;ܬXW쇉Wʼnnxzz@茿sJp,J5dbO@`v2Xr8PBCZ-ZO=1u>Vt1MQ0:3-D)>b#RL!`Z{x$ID":XHB;Q TSKԹ:b81Jdt.Z֋+  ]J<>!Uj]\]2W<ܮ.?NLh5gxyz \}} C/XU7V/?pW\]#ۖqhj$Gy0&M=}㎷_Ƒ<ۏfp^}w%0O@YH^moN~K@a0OQ2Rժ"F[^8trC4 !$W%?y޽$c8趏<@j,rl_ۛ2JO#~8fƙJ498f_ Ŷ-1z>^ F;Q9qD)E4e!%ׯ_u%za%&|$3Y`$bC`QT󈳁rgZg۹dHD89O#߿{K3R).KNŦąlOw ջ B\^3YؾǷ<~I0+>LÖ%'MO+_?=R902ˆYcɻ⊩;PU^_J)j;6v\5^qkTlCKY@Sh9ؙfEyYYL- B0NݞyaKb7gFDZ8B#W~qNV)$F2PX@ yZK ~3ekAJ(yFjQ!R&OddE)!J!=umh,GXZϞcItwB؞BT873O^Ɇ(ҡ93g&Pb>x7Ekr" %rz`tEgC,Թ=8 nrA,s^}J ^m*L8,7W,/^1;A[޽x9mDƩsduI ŊJhEA;Fr|īw=(~_`e\^~Gquv =˦`?N8~}ESjNe|x:`c?nOD@MY/ȳ?; ܼⲢ( yiJ_P&3UcsniK+ڇ':/h$1z6kH`yX<W+j,׼|r幣=L )x\b z;bfqyoY/7/<軎x/3 /QygƹG4%j5r͘I !*z0rx9qw{9ʲ`{fs,բJ?|a&It:c]jT'!o:0CJ.z*g]yL&r^B, Ǘ-M3'WܭkBy}^.x;cQ&hQ2w=eEV0CQ4 Nc DEY"N)f"Äщ7?;5JDdUE" 0r20k`tv I{Rπ~/ xZ46y<Ȳ6'k o"&4\Ƒ@`GB< bdYqzF>c$h15Fΰ,˿,;j5<%ΈɛbEAjdyf7M$DQ.ٲh(S(CO@deƋHQWgd`߹Ȋ7)r@nE-Agџc@CV9 oUPsƘyg;;Ԋf$+ T,4uMn"+P!ݯlc`nFK D<'HUyγYsڥE] .F5Hi@YtW{pH(qaH2R0CG1<+w1Q?I,-!*8(mffRPoH '~@4hSxئ)wV :ENSUH%1yzͻg;KwCx|̻O 2$ݴ(gp2{~أ@ce WdcEC;LRy~Ma )09ьݑ\ 8'@P0m fAX3` ю")kT,vD${Z4n󜲺`Z|ݠ3M(%}'c$XO(iO y;TVrf34;_kcN?e& ?TA0强r[\ Ai.6\__'i #g=V*Z4DUpqYeqpqw "iwU[6^!P@K5+ʛ TU0=4;bE*ڱn >?)aXn-Ȥ%Fʲts8xuutIPL(# ,O) i\qڶl63{miC;-Y^, LJdex0rqW^?|=?[S;^(*b$P=Ǘ':g9U%qD 7<%X5!`eQ){ǧr ?9\6lχADHU6{8~cn8=?Oov{jat謢idvРb4|f'&ii|S^2h4ڔm2%P*/ y;?E<q9/6 ƙXԈ*7QR Ik9\qyn%8!Fn_1y/]6hz^XxHPղi ('řI@ TS'-cHL%V8WnCiI:kl-TO\9AJ,Y< dR013k:ىIN MF%R0a6@J }~-/G\L@U[BGmZu3j=ruqSe3Af?Ei֗+4S茛+\GQiBDJg{:`Ϡ7[cb`Er2 RH"LpNeC"MM-v|S2HyU=X6K=>i2Oxʊ먫{& OvyLMɒ1Fu1MZ#IΟ|cD<5%h$/@Q56%|2L+~|qN IX62ϗTY5ԧ9$s/ g4H1y1Pf%AŊ i$]#v-RP&X. EN5.op==Zsʨ zSBW5c?"mZc@뒘TnGl?~k_Υ0YjSwdʳc{b\RdM8x>ȢA5Q 泝BLf /[{ECp8Py꘺ŗQ0;O\BfȊxz A$5 0aÄ 1&'U<+6%VC&fXKR1! (T1Re$7 FDND3|RB`DڂÀi%^H< Bg8p.u6 HQV8ǀEHntĞ9 mR8+;= ;ȳ,) /JKiEїBfېpzޥj#dr"FCKX7%,]#sn ׯˊ}N#Ѭ0Sk.(ʂ77׈F)9h& dEAY4Ty:0C"Lq܎e^۞юLȫ>J;O? ȍ&bsYbbfLv1f ?DY1豲&˯3xzbܐW5FthAdw78 >#"6vG>|Wr!(i c%ܒ!eۛz\;Pd9ڙ0k .2UUaF؁ {noX_\7%ٷ'#"g'~F'd$y(V뒫늪 Nwԙ&3￿݆{jhd ۓyD$R/JMe\tbeȢK:z3Dw!aѽh~wD)faUe#uC;P%￐m!=<#7tT!qdoT-aEӰ^.=<!`ʚpLBHça?Nxs HR'}<@ uclj<ψn`:ǁ;'ZDtF+aOh tx@y:P%ZgPm9 P1a9b b(2B1 =!(q~BjRhɊgAHȲ %D?y8-6E OLq( BK!yq{VW"_.X]) SɊIW77qdkP3$_;N1cDHhK?#ҔYz_QBiHi'޼GK zsMSx7&r! 89- gxdQ/ْ)=Us^6(]PeI+A6j8LU$0joY! r~T3,/CO6T!x0ooЄ(rϾh=v4Ǘ#*dA;(^;m*U Nrz=2g~:"|z㯿]ϩq !(Y8FbA.3޼Y-3p:8T4+.O#B̓պB@?G2R׷2 1 bEj$Ft UUP ۞0UCGb?33y`5٢*/ S En$L|r]ˉ}1ru}ldA .2bnȳW >^UEN4yN]ױ\U8P65H^-Tw?"D ^4[v`9#j?[w;mT Q 7޼cٟ:Ӂj Mah 40tU^"`3*WDݫW\^0L٠uhaF4lB`lj~3nwE΢撬Z]*Qɔe Ð|޳0JӟZaL,-Y,jidgF`ʒ5WK|O?] f7^ʓ$R%8] I)ɔd!8f (.*BTڠI Ⱥ,0&%B()TMI^ybȺYI [[B)M-h) \@ZRE(0Z" CBhi\TMaEarb(=`JX.)rEë @H%ﮮ(&-Ar)+qn,bbY^_c6 YW8ihO-$oo/Y%v Ja ܾz~-߽~'tÇܿ&|?1ř*E+,2+ˊL*EC;x y1Ղ).n6;_ Hm**QȕN9\T Bjd%yׁRp̟dEhbƬ~,ŵV4%ڤ{Ԋj0Yҩ R%}XX6:8W$7YcQ%d*d GbfF ܌sɹtϗJ༥[ӝ8mp.g@e^kE*Ɛ櫕l)jCpyA'<*2T$K7ۖ,T6g>|B,YtZKY|y&guIye'.!mi8ޥ˫d- 'J2,ƐՕ+M~!ϵE5ʂ!EVTyMb3B D$61TE2A浦 uCt#]af 3qn""%YJ|ҙHCn oSiYV* \DH\2;OPf2MMENf2dqÈ&2攌"`)*>&PI`pa֟K2U 2Cj}B 膎,/aQeCVT<s )0 .Ö~(7K6 sIv7Ն#*34uáLn!4pN)n$D8 gfd&[AK̈́0:yD >YM/>0[&M2JCOudY Ec@wcD?"/Y, ?L@]VhQFftF^hНTL3O#**2SKu6BFgxR#~& <9I9dq THI:XV%K:EezCbd>vaL!0y{1 e>" "2CHs w7 >&9Թ.5Eb"DC$˳dzZJa7lf׈}5lJ {cr #bDd+>S9U-YdSzj68C۷x~y$///䙡2#*+N [ 噆" a Ph p@V sArs)#UQg|MV=1v-Պ-y~9pΈ o4EYB.G5;=Y_(kr&l\/WlEUlٶcٮ~w34tA4Ž(]Ǝ mLW E!T"=蛂/لȦLPP ${ulwՇ2dssϫ.7#$B6zO)t,  hСH8?Lm?[f9c|r]3m=tvf |3sDl*d{=S(|zE9#C7etTL2c֟~ciL;8Zbqh)CSeJ"Y|"#0 Ę 0xL:#8~?&EL4=PG6\r+ж-mYHyݽy\ml#C˒$坍mvf: Oq1C8D0@g'Ce]URJ;ņrѡ%p6w<{#=˘>񁏞=7ǂO/sCcAۛ[2g1"x> s:zì1 oٜvZBY䩦zLgXgU%jAEC?yLȅ(Lyq,X3"}[7ti4Q呋 ]ۣEi)!HDGl2G'PiwjA)EcGÞt6\8).Z>v6,Naô0#$sxyNute5U`Cd<&C<.8R-麞 /躎*S%AjfdvlG#M0C%X#9YOEŵ/뎲B\x;4'U%20ΐfLa}v=Z%\azn)˂Љ=s48/BEiB ۷dy$-A =A$3D/ -bB#Z)8NtX7DlI9T8%W1UC@$V $I\y)"eUMĪ<!9$ uo THc>>Tya"lGtmwYuk{ DǑW ƩJl'R1Rf) Þ op,!&y*J2c[|"_|)mgHDJlGWŦ SǴ=ggV dMw,KzYF?~Į ]Mk̻jג$@JB,;tHuyPuL= 2f"8p@f0؃ vn鐡A\.4_ݰZИzس*7$$P::B"c!d`0B=2MgQDTUX=74-OW\5(0BǏYׯt LyJXEYvo~/›0В-g-S[\29ESԐ.r-Y$Kg,9>=z|ق}j}0Ԅgݎ(gR}ip7XHJTD{6^+J9\7VRs00r>x]z'ax4VP$c79.b]puRe4*ΗCa3dwӰ3z0xU*JZ=!5F7̳%6/M nT;lF]T $=lǜ|-ٚTVab.f2dqBah{N7k UA5psw YjV dPٌURz89Yr'z R' |25fXstUQYNInlQd=d]yц{\]йb7 %UdL~nkW8Gs/z{Civ\з` 6f'2-™zI3Lyh~tefml7[RakkX/.&lHf~Z+no>> )w[VՂ`-_Nz|'5X>d~9՚(d/2[פ:2w۷oVG:y05n䧧LT%2H]XD&ЩDXKE $B(y B2#"xW8f$i9GRݎQ3 X&pݡB%ZeȰP?p{{G5+cۡtBT̊jf4oDbV}`h:$Xz`)iD 0>URUޑ܈sx?a}ȖLHUҍ-9$M{iBHU7H ZdAo,(Ebx)Y8k[Y{Ο<52HW5טCM\׌D9A/Ddx;\][%`qj}7u )f$'H6hӑ(I3v7D93 =IuN2Cs )Y36}A5ɒ%xҬ<~tv ) ޅGsZ b40\q%X%)x8Gh}3N }_1^'YS!1}[滿E9l;p:kNkN9JZ 52U8?*+^^f|*MI % D囷t\D%Z3qE8Hi> uA9`&G$Ve ^j!u # {zIgsDOWDHi)U9C-Cq5=rـ݃NiEUUShX'~~EQ,Xh2#_T=?g\db׼~ypٲ,C'rzwYOּ5a4|W> tUdZQ{aaɼ(y66y|`]f75}G9_r rHǸغe{-W7< i`PfhЩ>ԇkՎ)9ƠF0!A~1v׍fKD WdEI?X'4s8: *N$ K_ Q*ϩ.OY/*`wÞbz͈1#wL*k9PEJXWo^skxsMX4U|C:TH9O^,e|VY^[nUHY7txn9 ,3}vJ3L3?)lƋv+n^aߍx)Ikl@/9Y,;PّxFxH;E7z8vKiT|s6ζl߼$I<*~_ANi=<tM-y|¶io]\[12|@YAs'$ 9gQ38Ϙ/<ٜGJivǓ "8꺥,Vl9yM'U/?%#EOT92$ ۆg8;9g 5|OrOcG^'I l<-~{Ͼ2$ }G?L誢OOUNR8  b2qS~ I]}`6de@1~g( ^0}&)vh• 80ÈwɊђRR."cMcHLc$JYO)r,Ϩ9Yy })a0 cR&7pLtI~b >̓e^V̖*O&%vO nk.PJfrED2 AB*5(f =SH2ąH;BIJ-S iV e9VQE@(Jq֠d:bʢF*"QKb',JhGil6{O6 CO EY ,X 80'0MN}}dPq\fKsd:JcE]Y}߃Pi8pɫՌqh9=]ŜY Tprz4,Hq&OO["08c$`h;qgQ$,-%x!i$war*!M5Y^\np3鸟Ř,c}l2"2{ニ§p (I%)'rQ6&7]R0JJ~4(s\j8'I!h%:)ul (RY>9C4dG>lt:]n޿T趇/,r&f΂^oGcT<";VJwx;<P.YIs&CGe 2)I9WEAs3)5RIxv` S :lR$;dsI6Lc$`H?L,~80<vSL#&Xr>3ɲ<_+n^ݑe%aD øg蝣O*B;̘&s];r$jqq#y2xo*I,V i^.X漾{˫7lN1F^ 5c3eձՒit$1.ƨj _)nYV ON4ZϮ_3 N4vxos4[pﹾy˾}@Ԑ$=ϖ)ۇ캁n2yʌ/L&r0H٬ Ձ5JPϴ  G' btqpd>c4)I9(ϞXl( Vi:ti\@=]EYqxؒW,e,znk-aO]臆$lϋffjwv|p.Hg =SR @m :czzɬ5O.6|ڞ?}ɀ _-imב|7z@ 4Dд8..sw[M,hj|Չd]J"g.a8ҊbIVd$=*Ift,-xo Iέ nbH 'nn-c۠vqzeឡk0ְW0)놥TS9Xh!q}P7vdٱ%W/xx8Fϰ-wwXk#/s %_!xR(uJ/IfKDѪXθZjICXˮ Ϟ}*Vs))>Ʀg:itvYE*5YU0_`hZ\;Rw#HU e8ʓ5Y,D5fq*# V}OuzNVDϾmV&Lg Ar_OT<͊>C2f|9M~0mMV˒uC^TBf,RTeI4Xh>, vNP.!Q vyI`v)$"IT!Q*qd{!( %Zf%X4cdVU = tdT圪C{O5_'fT9Պ4|-yzZo((i6 QG{&q}'LI'M4@v|C"\:MRBz1:xcIb\pw]>U%c]v>зmdU3aP7xuS#TEǓ98r5~g,v23X=ԑ-=Äj>NJ׸>*B>nCDGb̋ dHaF`I'*f< _}ej{C&2pJ"'v0ca0tiJfȳ-{u8BJ0Ǔh%񫙰0cZ$9*|l1iP!|fZ<4wh/8蚖ɌZGG+80c~&y9=!JPqny83=E3dӏ#]} %!xơ˟(5jx?dqg⑔UI].P lWccxISH])D$ 4:Ҩ4#Ed蠰ƣfJT`z!b!vxg7.#;(X~| S*]$ #*֤"PƉ^!8$uWfpp[nzKđeCzQR"ɹ2<$*9toIYRV''Śirx0omz4٧y%8 fņb^N\=໙J4UŢBZC%ʂ:_0L4/8{^0#=}*O cf$S3|s{tT咺of5O=bYj>\6 fpfk\sss b~JӜ=<_jVA" 5Ζb T0۔,0 LS`Ah>~F. SǓ'"<CpLU9c]89]fDGc!rԼbp}]d88QhM["tu$*RT`|߿K~kNsNOWȩIҔ\g|x<Nge9izmÎ>Dl3:9;C9AHuG};3_ XC"*m_'Gжgϟ\p蔳sjIP)%YE,F1nC@*_O<|ʓȮu $K/i-2-Rn)ՆӲd{5-'BX.2f/K^,HR?>:csrslVQhaϰ1 L,q(Q ACż"OE`QUtgO.)%w_# 6Fgz B!AgmK/q2M98Ïl?I\!`srJ vBۓ(E9?c8K48ءhYpPj"~{zf90rh[^|r$ё%ST%Wɪ5劋 pw8W;%"r(s}@3hf P)<ъ1Ip! zAf53QPɿ]L2.7?F}矿߰ o/Ψ򊮭,~뻿uF;ŷ t('OG"Eʛ)f6_gL)3W8 Q,*:f]Q S\n<㣯>f.Ζ3.sTRD52->0 ro@Ɓ8{ۇn)Ɋӓ gk<`Y"d,Hg_pzrE R`.Kz~wg9 0.mN(tu7ږDk"'ϼS9EcD5?$`YΗd&I"(c\`~k1^)'ABxf:~ 6w|WH󜮷loo(NN(6+ >x[-QLѵ#7$ 8gQ:.qN44ːac#"Z~~՗?*CzE[fYe2 #=hj!R`>'gVT~MtfNk/G_8]3&ph|ᚾy+f+o"uB]oYן0GC=Xa<>˄kY^7mx7_J9?H@aN?{f5gLGwG-xTÀJrLkܾeJ5r/8YnLTvcT8ScBJKDF (ɋ[mVqaxEkI5 >yu?6]= oViZlɛ-GO7ypG)3]06n)af~ݟgO-NTJ3Y֫W\)3BjߓY|O94c?L/o!x|ᡥoo 7$P:)3>{׿bJSyؒ<췜=y̴k0!)-"ϰbb#n*Kɓ쐙F<8~ۡ#9O3|zmftmL`*O8wiM/FJtAܡC㒔#?Ǥq4[T^"IslӿzKlN7nOR%\]cYB)o^&Cp)Y2 )Oo?o R<E` YEeСuP}o_T-3ѐZYvd.*|gOp}7b=o;r)U?LJnj+=~0f빺a9[cYL@~/}g~ "J!p!R&kRMueN$,ʊ$g~7jOM?1HӂnHuG~k}&oɳɃJ$xGh";5RDdYNu`rEi\teY͸:jWLS"t}2 tM*F!<tӌ S^[l oAthӔВ@qcJFDCy݀DE6:4M7nޓiZ`FʎM^_G$mfN? dnyIASjm'>a{yhFq>Oq_%\lVԝc?@ŗR21Ŭd}Rlx4$2ԖE%l(`B|gN+Ya?[.?ƍ?E9 EAFd KDן+ϙ 8'Zp9.<Ň B&ھc#H?~o5'km$'C&k@qޭ߉F<~ck3h]S8 (@Ҥ=P7hh"MRE[^0t{wYk'_;IDhϽThh"U (Zm=^s/m47XkpD4%m XDd)uB6-O- ~߽?H^w6' f;DnaS#"/g(M2bZ"R4q!}CJ47HM H @U,)tL)-d51 Ktvm|W-Mz? vI1zdRе!6ޠ=Gz4OULiߛHg\_krqx&g@Gq#%2B` &7?fWV"|zB0xAlٞ2h!?ɿO:c 7h))s02 9:_$Em 0vtCRL S6)Th,I dg^Y3$Ea6;eV2Ed,+Qf)~0햦cV-ZC7LXhКqbښʓnnܶ Ww/(@Y_y3/ho*]z`\z|ONVO=OސT9G+8;;g0pIL u`q^1I|Lg'H( 4g+ΖKƦ)c[=e?|կ"mF^-sl9{DXP朝 G%Ǣ ق !nڼ$IRk慦{Dw4ۛ/PYB>gGtv|^R9d3cLo=)AA_`xt~ɾkI ݮ烧vWF ʔ|`o-EZ!M϶oI&T is^\ %eR SNБ$&#[\I<=o_1+2U09nw6#5ٜ 4И 'LcpS:oKyEYo9 ~1uOیt~;I'oXo\p;zT ]׾_d yg 6\c;xǘT1_<9ƩsH_)*,sWc|R h5zn`ސ[o rf nxOb\$is~aA5_HM9>]c5TE ^ fY>t:~|YJdfd:% atˆm;l? FC?7ƿؖTYA4u,|N}P1ޒ8y݁CӡYlΑy"KIPh)m"sWoP O_$6,U`w ;|ye}% W{>~' qBP W\>`8Y͸|Dɤ$5\"v| 7[0Wx|h,_C70CSpuw~|y֎"W WWz DjN%U" }lF*el)dY+??<%Ec16%!!HDDǻdy ݏY%)+|,Y!8f*Q:G~`bb J".k RfT<&0i )Stso_7Zߟ%$x*~H޻R2FהJpSulyi"KC(Ha?'˛7W,sVuBlF'7ooHК%M]3=5^1v3L]Kb3aGا1YYvOD )xs"2aY-]l!ޓ(`iƔf!P@?JS%3ZBbDBgQd֒ks(E!40RÈGAj>*D+s$1c/c#<2|D[;>>,GXQJ/-f( >P-yT"3_>F֋yU"7w<{EɋżE?)HRM;!l %W{.?x5LkPF4 dit!sdҴbYɄH1@sT;;۫RxK0#Ti+F'Ec%m;EkGJd"HFU#hfw4]d^ۀ \{ڶ68b= `uyn{dw!%}ezY`~^6l ŽuͼZެiMCP ;+ ̪hjfO\]|¡?:W[ w5:dzMOsurIr /% $߰ZU ْ> O7Eɧ~i +dk9Y]7ky_qrz`G9. }7"P=Aг`e\AA,u`Nz}w=ڰ):uͤ2<,\|t[/^R97TUrICI7۸zG"=0 ]ɒ"- y|!?=é|KYw~|Hw]ݡ%f|z^Ql3= ?OoFRapx>d{<µu]ql&__d 'n0 i"I5E΢TyYIQHbNZr߂` T*{T#E`Wck![4YQfq=TUA5ԇ=H d*%亚i3(X,ҊG hXC:\gQ2m8Rq/t1ݑT*Ң`b%Ri@IF7|+$R*#aS%U\%B,Y",+Uz8,$b3jI8rvR2 O/K9|7؜負#I^6Ͼugu`{1/,՜74FIT"ᰥrE Sn*R?pz70YAssh9`9^=F%=pzb739\prpiE?L nK/G]0t}l 'ˌ͆?E^|pl'UoP>*j8XO vx[M;}4D9K*(eszȋmyN)Θ6P䋫-ógOط=7w{8*SYļx$U9;@xOV4M :o&Î:"O: ZJpց, 9aO۶$IB8Ȅ*f&ù@Dنb̀=!8Θ'Θ/L{T9H@{u7~9#BczKY渾sdBɊ`,С@:G}w4WH" ?4dytr8;g9":)S$;טi@/%d`$:E&Xy5,hM)Y# =PIOjP_I˜ o߾3X?(ERuN*nvϻuw'dH y`p]lp0E16-!H2>8l /<: i$R4%o-Y,IL-@=EUw$2B (c-s agr. T4F'LQ IE(G7:@)@ $YG[P:VfiS=D ''7;c̊caڿ㿃{_ ߉[G8;b2DѺL*nn wC{cf8D}w}E%R#D Q O_T5/iBZ(fid^$+d4ig!ƅoZ`qm Zcs&H`bc,424}"@$CS3xKC Ip憮i=qݒPm3ݡ0 t"fo7$"i6gXL#H ֱJ\o;/x5EY۟SwTpew**ي?cyr~3?7} Dг(OV+7qsp#U.bIzJx<8el{_/R,(2)9_#4gm$esrt``tI2ԷLt#nI7wc}QgOOyyuE'\ӂz4MG{ߠE,:t&Y>0vkʬn4rs{f}ͫ3|3O#]SsqzJ*.sleߏ`J׾)3Իl8[Ҕ+ ЋIps؎kh-i*ٜn؜ nl#]c98=Y#Lv"Y U}ۡO"knaG3u=]ypCophz^|zOYl ai;< '5HnbVWLmn75 q9'L0L"Qt5w_apiC[]B"89Yc< ĺޑU`5ƍ'/?~̳?f}zB2!VcIe E5V% {=vyQ7 0>r $ MMS,PKl`|~n_gS?~ȼ$(z+&.6lV=cW뻚۶{>!2DèԒqRa,?/kDqTw9xW%8C& cF8pa*rB/,Ն(k$M);$a? ;jVX~21x-JȔf5[p>#!Hu,~  COu aǾ)qdDC&u\5u}t{=n26 *m݂hIƎa%#3=<:9Rs&J2P )Kђ@ȐqM1fŮtYFD,3RB"n)xz3QZhc#K4Z&ԽaExO=}_ӏ=5̪.e Bc /?}'3RA%y>X ]Hq`&.x]z~G.#G/J@?L߱XΙ9R%<=>8qٖP[l|t 9gMUOqMCЛ6nO߷SãS&C9tW%d0`zO>|B2/h-~piG/l4-rzW|SrA5<\TPhb:O|?9#hcZGk>KZ<]0^ 8f0fǘr66!*kkLKf1!c,!)g?kH6G2YY{Uog{ZLW[u u e@If=9M0)w97=֘z9&L tzCrG}Lwc4dR,EeYj l\g*%]B1(..R+_]z<>︻bOHaMa [uƍD}tzfb:4\oה"ZЖ Ւ,\iœP+R5󑇇/C*;~}SUu;R4p <`lrNP5EQ0_!#NZAf/NWc ȹ;_x.1Ƒe|82{$c'B tB(뒼,gζԩ3+rES>ugN 3<`$aLt-yb|PP(hD@b)Ȳ2`^3H^7/`'fPT4oD$C,p*:6 su DAz4eI:BCeS1zGݴDʨCEj^ .eY| ;mU?PBeeju,Yxɒ6܌ 7H$EVLn"Ȣ,=p8XB\İrmQR\9hizMҐ3> EC@Fz+DUy@ r%w3@avV i 2E si.%Y8ht@~A8TgB"s6R:gd,G }i{g$Q %IXAZQ`ԄQU 8)3=Ȑ! JnN]]3R@ ,7^<,#P[G"hGTo=wRf"^Ʌ%RW{n!?"9²LclʒYNg ӄ.MSlhKݑi,5>>sIb~{4;#Gz˧~&+d-%6놡?1 Bg\rǏHH1,yع'*h J첼.ΉYgG,/5=Ds$6Y(4CwFhy,ZVÆgḦ́Ub -/H"p2=tp@Jbbt0I٣Z 3 !LVuzUY;>l6>~-( }ϫo2w< yQUA]?|j7>fM^*wg ;OF偢m p_?4P%n6|w#>o_ ]'4 ݌jfA/tPQPjEÐtmyϛ&.X,@Ӕx?SKYF֫ ;޿ 섛ZEےw7WT~g̼B.r|ƘJ, sLlq#f],+z`>hSb jF g;x umY Պ CבL`s#<;{ן|//Xxd0M6 Xr:}5;;QZDrzޓ+AU\%Ⱥq1Wےvzt&Z}XxꞱ12j&G%9N˂a%MQ2d<zdCO;޾TA%"2N\_s::NgW -~{|7<;)X-L3B2ϙ=yS"ddF yTMM"v]yƙ2 s8\8D7Uˏ?2;͜fkaơ9&(ʒyPR`S5 @ur_HwXb,403v"PZRU5)j8φ)5%"Xy2*\rԙN~}> f9 28Nd8hFjB09Ks>}ȪYRdPKɩ)LF~:cwdeN&4v6(\1ݩx<"(! c=Qk()2rKcO4Ur\mXO ,pQCB(fgX`"MU1Y7{ë+~7w- Ͳ-4rܿ[IDATAh7 zQНwdsUbzG~u&C,5M[bfiJa$Vf8nKbI^Pʆ]w"fKןh˖eMDpQ/)K~Ăd6<"$JrҒe?../0Ks)cj켈>J)RK@u BdJQZLcjyϲѪD犹ۂhq$+ĺ'J$}%aPFMr7^=uJ.R*?JI1&![bHâDH*.Kl56%JTg~Cꊺ]r> 8&[~(X/GEQ\oy cw#_vLE\_a=ֹK<:ͻ{ 5,KiFlR((t>RW1xɄ7t}˹œ-ΦDt<7(/QMSy^U%tm ȿ6ZkZo1gFd*qx0pR7 4]EQLE`񂏊2qmZy |)ڴL)]eMg+m`a M^Rj'+st,1l@ zC+HJP_DaD^:K3P 39hvzJkbwx)[H6'N=,1PTK ?@+qӀǻ;!.nҌ׶ 0(4Vj؋@(25Դ8xD=Z 1HgZ/!:#jR1g&UډL @W\.818Rq;ܿxܱ,qU "*kyOy~XV(ȑ7Dr)K^X)L;9-Y0;,]F@?QSͬ5+\ ȲH j?Dp V>B#MB!1$Гˌ(>Zt͚i4,EsӮR1O2g+l[o?>q,7XgysKo<||@|?r:?m_~|jɹ3 ꎏDENl=CO**9M0 =^G~~BD!ˌ,״k>1E{nn4Zr,%g3e:^Of{K?Y/' -ik?blo4*5/ɿ?bmDu3i8:泠Rpm8 ٟwTYIѬ9}ȍ# 5uYUѽ0D#]͟gk^]/yH%3Kq24 .yfH!ZaBNG˚5`^W ̗e)%H!#+3^?QoלƙY;QMQӏU]1=m淗ay}(8w{vd4e&A>vÈԊWo'Nviȼ /,д-OeCY|>'߬8ΜBgvg?9=@] #n"iM鸻ˀRTޏ]1^O4rL`r<G9[v</{|bjN\.Y.yO&vVhLwܝ1Lfb\J{}y9:`G^m",C;E&'gw2EWY&Krz*D{i02.4Bk'#!SLf jI0x30"cYh\RˌEMNAYl񧙵.x +8ȋi:'"Ji3-%6EMၛ5Uж ˂~e-J~wxǎE}Gn t8"DFPuA^+0uƩS߬x"OlںD!ǟCN4%КP,WV(b^Zn7Xaj(Ltǟ~9uF4`4X3㉿xB_NeUqfX5c5WY 3L7$*/)7L*Ҷ c7g%<`$AD6>?!kn߼eg՛{T1Oq(+I֖׈d<C|Cyw7ׄǏn0ts!z7Z.(s֊jdw|z~Ʉ%"C IWHX5%j Kk[)VMKP*cJ C%3|~QB!Zt. 0ӒǧduF-֬U]J:9ysp2Yh.# 8f#dyvAy`> kԺ _%ɪR|w{ǫ%:g t'$5^h&qN8.Kb056LʓG_ ]y~<4?=.FRR=Nٍ55ħO8;R7dD5W@n"TeKvw_4wL/'^O𙇗3,m]%m!ċYjfrV8UqK_@_HPpA`"KN{x}iDd'k:+RSe9mYVUB`6I,S&ʼ`\}ӈ13XzRTUP+{IkMvio5=uRE ;XgbLp`b{Ƙs6nIΰu=xp],11z/d^_3N#EK>jYqQ"F牼*4 `)"%*ƤkPFg:/l 3d1 /)%yi$L]Hד4mӠ&~eyASߓȔk8!B`&SPszTuELbE$o*P4Y*wT9fE,4P%Ḿ59ox(C:G)DDdZ'Л`yX9E^,Og ݂wQ(fPUXUJRUSSRã!Ģi ,YPV 33Y"W4ׯ"2ٗs/J)$cjP4p<҃*Ӹ1 y^v,\-H04[Js:Q-*wء'h?,3EyOYlߑHS(-vxrRY\AH cF,EL}\5a) '3Y^p6W1S5vTF "E{~Bu3IqTڀVj@c tǸH2d0GTdC7˜YgݑRyXgp-"g2H9aěۖ [{T^p 7wK<`{}2t6c pӈ?r |mgsdzw1#eSUr/O{w4 牬]r<ޡgL2 jbfQ/(qR37 ns#J 7o/;抢8-LK101O#W9rXf@UUZEn@ ]3_ˉ1:ǎ?lyk>=rww gs{#?4{mWs3;9{zAUe{/8OloGnW (Mߟha!jʛ :Zݷ|䰥BL3Θ.P5Y`&:o0EACuǟ~E%'ߟzQPu@#8l4Mh+"Y+{.XEl 8 Йi[ UA\*ŊZN3߾zM?Ψ!6&3{mrٲ1,#U34d"czzNub$%mQ=PY#@fBTW  T5"z~xP>Bi-Ëe,5zEQGJ|[ (w;"(ՂBF<_躁{oO=<4w_Ձt͚Ϗ͚\(L.{?Rf/ڊ㧏%MU"aA,[aY.YBCkIn8YU 6wiGDB+,Gyǎ2gQ)b'i4X:G Aw:Sߧ((a+dSu/{튦m8nn9ieh!ɫ SGrʲR`LAsG%&f!@*TH1%3fo"&ɐII=<Ǚ|*8E^`A/&f5h]8. @?dYw *z!팢]Ɖ~D7bP\V3&ȩ)4cgv:/ 1͖جj dp8( . \LÉZA8+RogV| A% Śxj}D qA%ڬ`(-QE cfVk42#:O=ݞʾBL{7)̆B\ CejSxƳZL֢%4Ԡ(E[l\TD:pYq2} (d"E&o>zs+"#nT!%UH( I_iTمR@bjIie&F$&|LܬBIbL\ Ye,DY;A7GB $881bj.AV)("B(-16TYI|~E S^3BҰZ q<nݎac]ݷ8#v8=߿J mUbmUq6%vg,Ly:Lc* IPgC7Q5%!ȄX7RoF傳x;\X@FV%Kby*ɨ @C lO"1Y򨩛 Ou)Ň4!+ -e#9u;~pH~ pZ&DBW为`z:%7T ! <,oVԫ@? 1wo8(^ȧ55:3IG.rw'N\c#Ŋ)|Ϙߎ1_ r,eN+TMgv' (8:,g{~la{ˁO?2>#0J̪Zrblpqdn9ϫ{#]H^ݡ E]Kȫۖ۫q2jʺB+k|tF |@e9/T^[@IVB.7xq?8q|)*y珏WkT-O儓YPjM&\WFn7o&>B)RR 699 9;/d b4E}r[<vU牼Y3/B ͫtN#pxNv&WL5g%(_eU:ɰ3(C+kF7ru}iwDШ< (SoU8hө# zk(uqP//;"u* 겡CexiʆEӰʒ,˟o-.XtxLQHadJ-UAIGt1()f%33'XsW ,UJGx!!/*Xg6D<㳜2/* aLZ1'! ꂂ.!rlp1OST˚ӉyY;uts:Diް;(%U=~;sU\EC[.3 6ۜcr:gUK?̘UYw3e ooyw֛+JU?l\*ʪLЍ,KT,+yduI8`,SO^P8'#wߠ\hX,GF P9LJ y1i|m !q$ߎ鎸BιMzJ&֗1Eօ3BW!554HBFr2IJ+HECנ6Ja1PUJ)y՗Y3!3R0\ʢąNiO"_y2%%L <ĥ !QyRrE5-ϲ$z >zNȘkX,~y7P aH9u%H~ɵ`μEbw:0=vtgg2U╸+:,80N3 MTy30.si@3bƶ\O 'CQ0 .㦉( u.GU0c,1xf$8~VKɔ&Bpr#4Ӎ_rr2q&\SX;Ni6ށ^P $5NR-hUࣦ74LR Y3>?1Ni3`D8p>hOD!s."'=:W PEQj^ ˚""⢧glxa 8` :1{&4h-S%L+4bd);p~qְ*qLML`]dR6j*Kmjru|"@U֔E%!1L~UVӚn |nHϼ"kZLHWB V-E`"˩'sjIݬi4!PUEs ,3|8Ӏτ`%"к++EžĦ`\@enJՂKM.ee`3>T5*zί5Bu u+v՗J!} H@jrR"5)O,Wk_. ,W[nȯ zfrQSs:ys^rde G*=[TlqbΘq@Hn#KE |F%q(-!zJ-ޒb/EUR5Z<`BJGIT)< 1#֝yMzZ.:*k%J$g-YufAl B1kMUyz,r&;Ja牧GnnUe_8P^9 sW9w5Y-bbmQpsU2\*6K /Kl K̹cYjEI=Vkv#eݫ;gsA5 nDKy\,xx>2tqsݻ7ܿgٮPȯDeaH E;@g]᳂h WלzoyEV y:j8wl ϙc[iYݻ@4=WEGd9v9SK!`_v5[DixuF9V͒)Mˉ{?_aY/Y- .92'{xB # e7OO|&Yd-mUI@߽b[7扪Y1JMO߼+nnoD]lWkP-77Wl*]&eNsN@-ybsvˇ hY,הY B?yvuղ^-Q`{uCQ [p8nj B0w#yn7(ex FZ J'SӮdŚpBEAa4luF]D!Ʉ7Q*X7\!@Ok).r^߳xsC[8?WS3CoʨժeY4gGZ9>n5uՁ͚ƒgqbFj."-)%䙤\Ty=W*^e7[-BbgLqs`^vGsTY,k&EZa=;9(!6e2>S5Z;# Lݤ4AKkUMܽzCBLMۢ+3iES A*zQK{gHT 2ĄIα"miJq.ga&5@pEU#*/ MUDL 1̺mXWHK Ϻ.?Q;0Gu_N|x?p|8> Z\]ozfyUQ5y. At=!<'t]0!>Uo""r$eJP1LUYm}8rsˁpjPh~=zy=$\-Yk&CizpdL55FkaxY57o0LI^Fx=Y,@5gZv;BccX, ~ ] SC"gRwxԗ(__~( J&}s)bR#bd:#9˺F)iJqZFO=֛ ݑyqlyBJIQ_IU20}M^_%_RfxUȓR" z /1D꺦8M*Jg!5v}bE]b<m^RR%_A84,ٖ@)XdY0,k)xqspT%fleAYU R7,Y-WKsfZl$Www̓!XCt:y<ϩa&O'x_rBrceBBf4DZG)EYTeb\c( @+4O'u? 0`Kam)."mݐg9ET5ҜyD I=&RKF"Oɚh-uYBDHINj@5UPa&`IVz"F5AŽKB D%]]t ڒ=40_{T:vO8?1?RFgf!t*)ݠ`,Y;qb i<"8kDhg<&ESYMY-h%EnB|$2a@Jees<ވdiJ*mSeg9MT*ejuf˲ٽ<ἧ(fcAFR:AC )Ea;oJH>Zl4dUl-e^iqfFj7wywyرU+>~~/✦j6Dйf6=df8y-JN5P&f'ӏh{LbTIr^>=cv0PkM]m{K)*قitaqv{Ǯ?0ETjfd#̍~I3u2z޼zq׳χQyf3<"pT&D0%E9|`=B`߿{_br*AZiLbߞX.{~ ݙm AםXZʺeX6Ky."k&awXVK"MO3b[.|73;^>>p~>hx~|OVFρ%Bf_9&!ҕ vׇ#^Pbǟf6=*+>=u<) _⻷xVG>v_?= 3ϜwŝqՔ)z>ƞugqg3C.RT}+WpFr:w?}/$ B6Çȸ?q<6ˁ_?0/sxOj٠W7 檔Zj?ḃ'~gidѬԝyn_y䇟?ښgT2xc1uHHh 1N=%--r =LY@S J)iuNf<ͼ0(a]-Y6FɇJ%j?0C gsp$*֛-' $q9ϼOp|\=|g&2o?Ͳx< rGN#g~.2ԽtgxocRή`Ϡ3Y5:ϸar6%׷TEQ-[3s:w"'ʊ~xSO4a6p'BE2 wWO=<%È511\=E^]1[إ 21Z ò]cG]~Cyx<˟p3c6!%W7<(ʊJK󂺬q"R_-h8o1t8Q햫zQ͑ǧ#ҧ" }GV( s.6tb:홻#J O (EZuQ7-)ʚY2M3Cs:9dy%bd& 2 .\`Fd0[ryy~&}]\v=ebcGs7b L7̣E@ v'V[rZ֨yF,yn13ʽ@u<Sztj%*DJJ 1L2i%҈HR pJ EF"xp紹%B/i"QB%Q:x}&JJpUWK }vg/i44*%<-nї>?gf\˦j6:Sl׸ W|a!r vB|vCqvN j\o #@kf\(*ʪy3 fL| x4M "G#iQQ"[ <+Q12dZ20axUʠk%ѧG)%Ω󚶪PJ2+lq?8mZ)eC^TuA%Qfx2#ǏlKͲ*ɦ*)%$hbmS1|Rkٝ_WBԚ0ܬ9v;ˆMMHj88>Ev GOV,!~O-nZVS9Xl,VkvKoo)r߿nJ(Qd{>?3LܡGM$ӞR ew8(Afa 5l8q: 恠roR^(8}̢/ :W4MkÞݎf݊/?_?t'6댻7EEe}['F!H:<,  պf5o6 ꂫUMUvisxYT%~%ȈEF?TEA$˂.=~x~~ \~{i@LAq&eCyY︺OqqaMUe 3߰n^qzswiyR/vK(4?}*0Lݴ|Qz*LSoh6W܀ 뻖Ed *WrYooiVkPX(F)6ũs!9 3VLT.F+ 83Z(c@5KC7f].L? H\_YnZ¢.V݈AEUZ,YKTL xݑ`=6FfLi#솁8JY_}?,3M[Kk6[ze5s!X]5ꌾ{uXTܡ| U(({2 v|ěsUUP)./ z ?L9 ʊ-Yl|:##QKsdY Vy2/S \T誦B^?~|=/hꜗ4yA3bhtͰ7<={jũ {q;N(JlNsP͖8EssJtӶKbt玦ny<2jEqFHM^1C-cӘrESWAm~` Tyζ!2djE iRRSy.0φ]?y>jduq{9ʼ[Ή!%0RHJ!>^v'ifP S4ɈEɡ) bEc^Z( fx v(Ǜeի%߶Z-1r- jy#XX/nn9χ5 ӎ,dkJWu0;ö.2o}ÿJj-'b8ѝ;65;~B):aeh^H7i 87s0i"%ȒzX4l74(ljs}-D*o^Je/Jn:s!#>|i!HL9]|u2ArF> B'໳6]@k,o#J1aEqLRr}}Ek>}q}}RL/|uce::zž[!o|C?* !/cLgeۦLC}P:2#"EcM$8Or 9Ty,mr#˞\\^u` aXȧ,φnH@e̜2=AI"p:\x,EEQ1cPy~@R/R+QJS5bA SuۏoZ]0//<։7CreXE9ƻD4Abb /1Ǟh%e"R ɣd֑)M`b,ySQ}r`iE "u̪u$Db) ׋{\xXD qM.Xr-#^ vMFd:821cq}G8 BqwǤ^(R"MB(ds/V[Sb8͗Ƹ:B@.r 3zj2 cOV&_HJ@ih{"#35hry@@@ |?1x*YI.,qHdE{<0+MPW tB$A=LSB9+cۚ=Uˌfi[!kd(cp=B+LTK_ ,ZFk8T 8S|bǞl2oi I}3Gb&wh]%yAq"SA#4GΤZ\!itNMĔ?2-AA) :F "&WT\'h0kp.ݘ|V:-2~],ܡ/x#+ȈV9eV%]}],XTFc!LH_UDDE "/JD|L@ A[xiOi3{OOjժ+GPC=j?d7()9vxϿ0Ee;'2s:bɊH֗*;P$7!%5eb fF:i9v"ǁO;>7jyo{+jn-Nǧ c4Y?Ȳ]w=缾`ft=}[~̮"8V˚Owx?R4ϻ]y f<2ÑPgqSTUq|6GIv#76\5kݑe|1NTY{7r|w4W 2cK|-g6@k;bH'Xm6'~84Qhn<=La`20xp8E`I 1*pm7yFsaͫ[^;V9K1b@(EBi}~_~osCRU /d^e|~2:7]'͟~3[FGH>d+9|2N/̊-}exfEYTsvy{{ndBiuN]x~=CPO=U~.%#LD(&TV3*%kCa@YV(]YN`lϔU*ѶGMd#`Ȕ Ӗj . %GfuQpܵ.|u, R%Soo?4#> V>  ïogWdE ̯ M]au|~d )T6!8՚mJfF,*+s`gJm얷l?}d=_r*+Χ=oNaKN~fEƺhh'- 圩PB' 8t27rJq\_]t>׬KO Ŋn&@ r8L޳جRaJ./)_W%LK𑺪 I_ R1M)ct8bt8uA۶P$솝&2m28^ɑgJ .Ζɹ R.#Nº #UCHmyAFOn^dy-yQB`(箥Js,ŁuEk'Fʼd5J)& 51JЪFH$:C{Eq#J(t^`8'##:;"툖u=p&=uSSTEY4 2E0VFPYpG(%ojtY$`%S2T>JJ:^rR ;!Es2,E 0)Dj0FO!him~w{=1psYXmF{A<'39Ĭ.,y-/)j&dUGw؎ ab2 F t#UJmkF򩧲#=,4 0&(ь>5$ $A&pnBڔ{vRYrw#d"o%& %$THc~(㘪?Ɂ +Nⴒ*-n @ELJHpI+1dB)LFH5e"i|zΧѓg,Zqw E=E2Sr<-v'`,#@Z/<_a DdV'>gvÈ{d̋۝S\3J`:Fjcr@#32pv`pGPZ ?t$37ZqBОH? P^ᧈ#~K7t8uqsMyز{yb CN";R!^!<ʌC͂_{>wM?mӑ.6OiҜmuUP ŊHZD{m{J#ECQ63[ñeqa'xy]n6579~17^-qΦC郞V$7O-ӎ(2#Ӏ JkUe2UͮfOy{j A T ӚDz\(3o4kA hA5w;޿Yw{d0_x3fj=}ӯ}d%-o>x:y}Grgp=@ȡK>,̗h 5RG^E[2Kée^\`kńŷwg1}|:q]†@;_=+qb3Qs,ei(뚬Z TI5vٝ "HQT%eJ/dd,sZ׍XN@|$L4RɈH"=\Z/tXN^w-,iێ` j m @Yp<o,HI qL +9@4tQdgʷxĤTI0Qs(92)`͂)L@HQ LYF:'f̼q>X"l' TS"kZai.z[LAOeH|Lb)xZ+dQY3WVDe )=eU#b"|{SH<;"-HEAH J%HSHb"z u'F2U}੪ FΎN#я ϕ!+ E^)W ϘzA̰m:2)@[B41HjsX. Jl$Ail $J$Ai6wT+<#L#ڔ6%$ۀɵܻ.xb:&kd<+)// &SIx2dT8fD1TV K]iċ9&/V]q{ "|1;_6ɾ?ɺ )" >~NfhG{"3PXV37W7|[9'Ŝ?nl%9'3J7UI>kUgcd-Y>#*Ӟ,/T%[/%U1aեS@=_0IX4+3~iLluEGr )C;:+E(ɵb6?Dv%QTU?+V437+-UY#ot|75ຑ<cXwB|jd:,/!Kڽ:Ĭ0]{=nYJ?( Ael#~E v]'>#RiuAqNlnyl֠42&>ߑn W %=c7q\oV8ՒX6զ;MlnW mᥧ^͌;Z7 ݉zɻWL dAy{T<sY}= Aq +3dP<#=8yzvE -O{VS\-uy-rxwo6@VN{N&\#u3Mힺ*?|FhMS1<>.$r>95 zaN3ySw tny|ޱX|Fa-1} ˖YUbQz^Q,/L}O3{viw`\#/#KDX⏑%77 u]!:#=WÂvڡ=ݻ[~/7!`Cb5M4F)Lj S&4oGd(EPC)Mm$yVdBOS#|dU]x~t#j#bMUS{`53LYl8/PZY4J\v&+4_hʒY|;Z`8칿ެR 2'1Be]lJ\@>SSݓmGeu#syhRe/! pTY#ސtE?Y%r"բv|G~2pn# ՚y:/ 8z轤Zly±آs0hg.ض`.*Ä_~z3C߱tDUW dGQû)Ow!L6s\wf #S׷ds^}{$}dsdaYԜ[7px&G/w[/)$#a & R/S |T]! G zJ,y|H..-d8+\^\% EZJ'7apS1ɲc =RhP⅑k.w( c 0<񕾊lR&<Bve@%4 ]]D3EYք38 1= %NPIYq!]Kk1u5F1#A n{O#5cK^=4 at|}vE^"v()G:M4%e>9EqdJ0*~ӄi4 r2ɽRH!. /g4YtLEQCU58@hi>/4e(˂ȕ"ଢ଼0Z!ȑR1")J2E7]/}L)8!JUaDg13 |X"7Ł%dj(/5Z {JuT"ㄏ#IQccV SO !$FZAֵI\`g9z}ZH 0[4PՐ)T˜i 1P*M8w m !UdW*Q!GL==bO{m0ަ ES#Oh;ˀ&$`[H1dt6Awz'|Lβ(1&tap6-yxz~&\Hm[u|3~Z_nwfsfkto|x(! yQ%Bj Ud*CA'H^W4wv}u DBL0v.\)pR9g)qq$G2nr M7WyUVWl@@H<%3b6;]CuYpcgT4 Nd )3%/yiwIp|) Iv+M-*qA dyCU͐Q?_?bfeG)agϏL/b!$3\SHr[OoԢ9Y -mJ5-Lͤd-zL!uQ\.н( R[ մ8u79^[zb ޑ~6u;LS߿`$L#FR]b%YǞd9P1rn)e}w_ ݑ~nyRer~y OؼYL;8t#ffq|"2+f1"PDZ?|fid,,6k+>?~W|-Y!n>+ %2_+4)$tw%7=}w)5OL..52{ԅaj]pvOqbY -4KSxO,իk% E Zpw3Q3ZybTdPp#Beɡ'N'Kd.1x̫j@(4Js:Ȣ'vhOG8"*AՇo@MrԹb. کEIsuњ}c{?}|tEM$=b/2ہ~pM;#=qt Etp:j\7UUMU6 Rk8#|&Gi#ʺZ%> Dve9جU#]SUxl9i=/'~PIϛ770F^NGLˊ#/y3^R9Sױp^2N羣Xmzy3,i;%)!|7ߣ jjj >}G֫N@#^(֋57 BYcd%b.P5yzP(IuRq̊7W(y{a2#JDqDy`GWK̠("j ';&A6HTVЏWP<>&*|g(yжa"ȹ;*hB O=N2j8 Ct_"UjmږѺԆ,GrmpÈm{v/2b۞hǞLKrɂCeA2'7?rzvOj#9 =O@49b^RcVI~tۃe{&BO#y)#YQm;督߷)* =ӑy<[D3kĢYn8bl6 Y$sjӊaYUjN#m|Y?u@5ط[%{1 0@׷|L #o$z3X^b`8pݑכWO{l <=?斲sY#(-әW UN.Թb=[QT8BTS:I$+Vr^ 1k0YB# d]6 ԂK,9{h%'4Mt}kE?^:T vrt]136-Eehq&!7y\j>%+qARl[kt6"cJdy`_ާNp.TQR%,K1 <{O = mG>3rЗ*ϱSLf8Г 7LlV믚GqO3[Teɒǎ#L]5,fs'4rLvZ09*g 2/N=2( d=$;cy&*&6Hxv JjdJ1'a$+dbVipzvDocT^3ZM,g Equ3K\ 3_/ɫ#cTt )g|ENÜkWkł(^]QI^>=S/'[u"wd&"4W :cSj͇PSJȼ9ǑiOP7lWƹ .]6'>5+?͗X gYj&=Ap|Q>P OGn?N ھ3 =onf4e"0GfAZ/힛FQxf*<w32o䴝kSIQW㙑jQMDT*4]iܾ{K!𫒢.X^(g3}7 4 u|yqbj| YddE7-dEuǗ-OMrA-"~x BzN'EBmFrC;]O@֔ٔ)9{VՌhb΢0+s>ɳ ^{!"&C@7xwg&)~zw߰^̹Z5\Jx߬uCTsV(#1!0RIUM0z:˹Lz2kO4%m 4uVB+HXm6,k{Ԭb{f}?#1f pY6 \YV2ۻ'VHFG n_Q-fȺbssM{8]D IeD{: t@#,f3D!2C,`4*K-w.8&Gg2+'iՆY]%C2/kV|5֞y,KjT΃`wX, dY7KnǏ/6x'yFViGY ˎ]7ɠfQ'N#6+>}x=yоl) o'vCen\3Az>>F+8݁hGdѐ9O/ȲvH8#Q͒Zv[);2&JeeIQTE';0s2L#mS~>bF B2 #՚j:}]R"TM) 6ZTqJʂr0Ɏ<,`=^84Rq>7|rUi3cJ_D 6o09E.ə# &DܹVWJyMM4lDkfnHMN3bh8 JzFEg _CL\ >$9/].cdz#rTRܾi lw/lAW2c,lqR1Υ dZ& 8YdJ81e; 8?@) -%SL9euQ08uH<GDMx !U^csxilR "M{DRuLGJRg ]ۃ(!SºJ"ҋ9.|UwɒL"M1g\!HUx9u˒r"5'ѓ1#_aw)r n)5?<ͷkyͩxx=׏\-rD?+yqڵ ,o?>eg9 aK+/faK J2]),*㖼1slfqDb1yd(9tc("|? J-e]HvA-._Mf᷇'wold8-$c}&JMՑz!p]J5wVR8qX?;daV.xR=ovMs^CK5j3݁.Gp7eݐNL"cB#v@+7xh;͌,Ӝ;y陬vu;SO5Y֢X38e^|382h#:r2%?яv -HA(r*Ut:g= l3=#YI^kf{;PJvQ) UL"kLQ!%8T&C3_cvu؏{&`43ÑB 2LxY6(1=F =?-?|$77ږLBȬ^`T:̲!7?V9c^U@thyxDlDrexxxxFx9qh9:ט "c"E^qF0?BMz9;V.=.z\`*F1E>xuLlE!s?bj,(SV9/H)L3Nhe2#9<#~]wfTh >}BHlr~+yUȍC,+ y >)f O#4RHMxܗ4GL{a&7"JhPbjJtNR\0\UYC¹8RqtD D!h_{$S%E7Eh' ;b|jxf,6WL]G۞Y-NzV%Ѵǖ 2WÀ{nZrvL'ؚ&fSwƹb`jObL1EڠCL >f"H*CO]ל3yV %B 2:GYҋdG>=:˸.  #"BUĐ@uж255"{%BkGdV„ T *]ݗYx)yA& 8#39}JUGO$ڑэ=T, TP&NiJB/V 1U=$AʫOӔk"V-R]5=b.Ô':?IyqQ2-pKYZW^I?"H&{Wa8Gq:?FgAw?ӏq-Lļ'1NT%uN03,HG8a{QFgN(8?J=Գq 9|zz?ݷXog~w7oYb:~l0XlT&ơ*zU|cja>q)1 -"2LbF'P *CSȱ9H2~D]U~4YQszx598<24"ʒ@x7tF3O3Lo]G-75yLOНJ3I(?|ȫ a ra#׆8\2 ;NȜH=ܟzE3_'n8o X- D|֜ŁG|UϰcM '}v- KwuaRb4:Z)BʪNJǡ?yU1)lhI} QúNeJV_\GofW|:8v͚݉3ͬ0t{Ռ\ 5Ǒj^yisbJimGy=/;(BߡI*@^cϼ]/qQ&Chp8d9[2I?{ǰ}AJI2dE<Kj[ LKHt/9W5>#Ղ 2'W0-R짖~ǹPe\SS-8&^@plf(dz:C=#Sө#tzXض%xO 8Eo9v//8拆|0LeriYnf/R񱛸]PZy,s[gaLeQj}ͧ5?[T?ri& `5ooӰ׵C}ߡaW,=0Y_ kT.)Y <^Xp>=!;F%i͜0;0Y.@vo?b= (7u#1tfg.R&'49[ʼM<=<zP9;4(jp45/M]ͫ0йq8g4[~x<&<(^(M'G~Y|:}cF SJfFuC{; )]1MUJ!XZ眆(NF vbVx2'VϏ,2(2&lϑbx`X}>-[snRl ÎX'\V2oG>,?̛9ŌW+l\?3aC4NdR,jz!i$@s!E;i$HqB*bq.9]R8xR-#C;McB}zv]GYUGLCHh yQ^U%R<#Цkg( !9=Cd=cB`9R)Hq985i`^(hM2\29 ez~h/U! r)f).-EimR"tB)Z"9Aiu~$Ӓl~֜73?QkN-(nj->mq瞲^P5R;Ӂ'4!TQP5ZGd/,R :ʔN*wءGxk%YJF Rni$ҺĘHFBR⭇K&(fTeAp diMئLm(c Ld&,ʲ(Q$/7ؘ&uD s2JNe%~Lbj~"I3ch%aBꌲ(`]6u$2 i[\ 5A@, o_S9z`=Qg0 D3A bBV5Tdu #49?jj%272=~b.*JυA(˚[*s~,JM `}}_D[ȳ7M\_7D!;JSǏQ8{"#πǟ؝;6`5mWd,_]cm XAU6T%L^-h暑D?PjQs6<=astVsv#@h2ͦ)iEpܟx8YDˊkÉ+ƾcݓ+E oK\/߿c& ӏzY&O?Tf5518bʚxZ^_OlL3-TNxm&Ў-L:zsh\QE 18lba  zsxԆq8D5:tC*fW+;RckR1kf)2f77|R c sЎG DT k) x\ f  (=?ttG肨sjƛWeۗ07c$B"ruC]0|3`Yo5++esbV6FsŶ=#N"7VkniVkk y؝QYC]/Ѧȿ"zzp$(U eG%YW)Z HQ7|ٰFqزnUӉ49t^̈玿D>wZ-Zf77 py0\D51<>vlw~k|psP^5 >9ǻy S>?@wwv5cQ F \O1FPlb@gY*_҄.p4iC<%IE3Ja\FԎ\ 0zK;8蠴Z{iUC]58Ǒ[ ɼ܋U]r2HUzȋ"ZU|/h*3de,J tJI]I&!BK@"YwbJB]bqqv)Ȳdw--&o1VZЏ=>G 8;>?SVnr AGi.(aR#q(;GfE'(Xm C1E#^6p$ (pR9qS;Rd"Z \3 A(a dvJS J6\b 8Ę yIghLW2N 'M1,K/> 4F%2q'"bt_j1ch;aJ&ݵdB 勤+a8=wyac/>SW&hZin)#^]q8<IZnbMbjf<,3aD 7^GS3fcw=ԥ񶁩M8RMf]?lρZ74u#vhgVa-YbZa8DgfŊfio?~__O{ӑUQDM9[?fHl(T]QLc+S%xD T/?d.b3GlxEbg Lq$4 w`"Drɲ/ebsE)4Skq?O?Y͂u8ugjJl2#=d6m XvUhfx>s~X_xq(,mO4'4'ux4'ĨJjtmOkb'eɹ0!q *L,Ԋ;'nB(RkI%[?ag%OcO4V'r#iO'j&VYFߞR[0ҍsqwdd*GdZ&q /{޽pdniJx>Rec]&G^׌A$uLC)dtD|Wl;B˴c:dHK&w tcd'a1&@؈r4:9?ghgX_F]i Ǘ-@ ޾#Flɦpx-뚿wO'9YQĬZxwO=SJBya6_f;\>}U(Ud7k*++ F p4 '{aq0(S1 -w ղf-ٿ+fUbL80Wuc3@X 5pjx:CTi~Xr< d1{5_gF,?G6D<9[Dalxy:P݊7 " 3 o;1 (i^7ij/WZ)|=Sh툳 VuN7OeR:9YI.l/7-*JN#Hg'p%%<Dq1(%Ҭ7&h@$Y #f$fyc.qQJ0O3J,qN@i5j9Iqe.E-S˹tdV15N+.r* "F҇R{YKkho0ssiM`2"ćp/ 8 ͆(Ax@zQugj'Lv 6dYB23zŧ/@)`#t>cg231 ꦡGQy #qdrnPҰ\.8.ژ$&#'3擳3bǑH,+Θ'Rsbf 12qL?Ad<dgq>Z]!Rds̳IG 0M3Y68%S#dEzb2i#a4Q2.,B@#!3)V2:B^:#"#y㈊"Fb9iBƘ BD =ӯYU&k87S9uY7x3r N\;6PH0IgVa"bDDJ:./2} J5Ґ*/ %ѻ,2 z,WezOy()N7XYDydUљ&ƙ;Lߝ3@*(*=Y*c{aZ׷=8ZK~Ior&C#E&k>5@Rn EՠͲq @ݔ"My d@fg9B4 Vʪ Cr)!;FrSL۔V"BdGq@ ̲l;- 5H3oh!L)S;Qg+G:x"dyB,!Z1&/B!"UA4}`5}]jJ&(!L5O?ϴLJ7|>3=5:FO_, &;#4Qz3 ?|oG!lן̢ιyw:jwOR9qqu)W5ade& ~DN8FK,WϏ_d MC~wjFGy kes\abhQ抐Uz><3#~:hLI|}x?TEvpi@$3~ϖXCYgﮮyGX-Ì\^pGjYx|q|}X"ZJKl բ׬5e[/Pa2S0{YgUap£Ꜧ,X i`{-0FjS`%|_X >ޖXQV6ǎane1D5F"6%VX 0͸ Ŋw[ʫYUe`YbH04Upx=:3T%:ҜhQ!*GHQt<ΘL۞-Ţdقر'Fh=fN2ޱY_2^ ?݉nszQRWN_߸ZlpRV9R s}lrjpvMY-;;Qm,n*5 Ӊ\4:¾k9OH4%8zx?w-e̪ojyN]WPjCSEԷa0I:O!DOy`[uϼ2ى(s3F"˪4 q'%Eb{(2BߘvhI*Kk)J<@]ġT2(c`R].}6+MQo#ACG(Vytb͆}w>"ivcdG<I&v4:XU5W 7+m!$!Mp $J&G!i$US"g% wh)2mY]-h#syYE7;qDJA4ùgYV+9 (Js-rdp0<~=Jl5O傟6|xOȋza82ۑRDnd{uiL,W+Ij L׫5oO<|D@(O?u??|wDzoÙ2E o1| ``WI%/aݿB(QDNuOLxi(.ѿ_d,5v3p=PRt>B4"bd4x,ڠF%R[,3ggB)]eR[)'Dnf$ɓ~3 J[T %LtYMDT9grDY3׿ް\Vy~g?R9ZQ7 *gjù4_ l) {n)뒨$e.gm4a(·7N#OO8v-Zk!JG!3 #yjJ.%RRa21t*f\ JΥ$KiL?vF֦K0JS}z t1BHnF Lj8iJLMQ \yx7c0HMKBfLh4"JM?=R)1&f`C$*ަ[(^DBt8HJU| =**6?]MAUyM\Py};dajx<B5k2Dwij#vrD#Y\5CSoA% B)O3{ΎD)ț*=Dc @@{B+0'ef o1Uf%=< Uͻ[ٱ\oYozg}d岦;rwࢧXD?aV=@k5`Dg&&}vUdSR]ZIҔDQDi=1=LN۵RotWPÌάH&fLU eDP05yA ۹OܗyBH;*FaRȒ0Q*0?fá'7N/hUq8W"GJj_ʒ?EdU)Lwy|zMѦB犦lWca8eLlvX7ۏ;~+~{9` Z0nv ~xC@$xa(gQ__T@+a`} y~;OA!_jAt1qaoLÀo{J]\x9<c/Ogeh|XpxbU끿Złw Ynsy)+6ehfףR\a3tϬn7\rwN'^ⳌEݐ,t9E@*+9-ACYpegu!.sy2f†*s7|eˌ%s˹ky;BfYƉ `#݆Ƕ0xdQqww l`#?>s܏dB lD!X_ ܭr75u1RX?S(;^^O=uyɣd}?G꜈B źYqar,׊Ň-o?w?lѫ ]1D?ӟȋ$Cr>=Eʪ J6BeEtiW%[\bnNKU. //"rB"B@4Ju5Z)1DjR#P-t:,<1eA7H$fFJ/Yp9!0M#!D< BLdQVvtPA(nܝ/5k-4Ż": N}K7vh-ɳdjy*KޣBBE:CD(\Z S|ĺ̙o'b߾~8LdyUSa0fG(X6X"z-/L~bg؝sdp:|=v&3i{Ç2@]W4U2iKq:'[ .؄ #5J1YaӬU]oKy9&ɀVW%:ϰ!thRؠPYA ,Yy-}{BM虆34RhSbbL; 5&+h2H ;F~;l=jòExО vF 3M.?,%UJ0O1X 5#&~@^F;DLBx94 NĈ-}%3Dn QqfE֑^{*SR;iBH77bKYlg^s= -_fr̬fkӮSoO mٻMPTMzs{qP"܌j*{ ѧꦏe$'P)3yp)Y!=M%)p#E8tF)ǎ.$.nEj(;A ΃T ݈B@ډ3ϖh*aL~M#nJJg8ɼ%e]#T`krTQ%ZGP:=/wmk̑F $QLcX!:PB8> h $^bQf|ui~wDT$;tR=VEE&2dY .T$zn[ʆx%y@+#@1#oW;L?_qx?#D/;y{{Snw 1Ml*vLIO 2!,#b_z0KoE@Q)U48d%R}7{bhAXYD!Lןs\EAUVd Z^gk {BD؀6م+ wHa5d:`~A9jsYi@ Ǫ,τ'C3߽!2ю'UjM4~ta?e#Y2GβF${ WWώYft1sBA1 =uYa1P-*Պ8!}o(Qۗg*5rqvx{}tfzQpz|f%*3u-Ֆ*98ezBPaY, `{knnXĨ#+z秞T=O?+ן!SO߹j9=BH2n}ᵥ0]+4>_4нc۠8[P o-arN=8K(6 2uwT3%S}|(v Rr{}K&;6x;'~d{cJegD?󜪪=ggL]`j .PFO?'M0̗/݁\fp1Nz~Dp<0:{~vXpq]"4|"FM>- YU!1 J|%_(k`];6˂<(vb! Ϗ4b=ȯw]B+`P^bHQ Z!ǁ˒^ O{+Tǁhng脧85#+nuڙiY5|~'$6%ə=@̰]혬KBd0Y͆i%/]OvO&6b>pɲEF?Zn8v%pRi0U @ƀ ].%CۣFG,?&/KyDvB@d\xYLf ݎX,88vF[g rЊ4Sg'x%E{ISGf/pS %cק J Ua~UYd9/71Fh) bcbxS,7d3Do9X*Zut=0LחgVo?ܶ DnWH-}+]dThط#gB$RÈ-ECzBCO'<xߎd'0hx{xMx`sUYLw;?/FT&|ja{sІ7ynnx : ^ef3st8p] Dˉ_?}Eͪl23һt0J(BY$bj"X1:%.[pi.A_Lۅu:Cl$?ˋₛI-mwF_O0SW5uffZq> YE}vC2]ZW1BtA(\(1f9y,Iye2ZFJ^ro)A1AFX-dZ],ߐ*q6$̯>@oٮs^& ,jI81 #ޥEF٦K lA۶L}nfG+S/dEK)i-JaH14MMeD`o ,k%Kas* '9]5zG0ܜί&0JcE^/1IDd0[h%,}0 UQ&TYޖKDg‰见(#Bpt,Pcp`ˋ-#Z}C]~!4JeH*#+Ln&Q6pb}Y K)Lc7J ;y@ O<Wd+y=B ^)Ksί^_>&q1ݺeНΥ)`lZAmd CZj,oH*A$G~ >@0$A霒F; xɈBjdP%S}=ij2K)tc4ggKZ>Y"$Htۑo2eLmx#JBhB]y郅@btS7)r4BE&;^T^_8ZDlDpw}+OOC B4?X(W+X^G26͂//db ܄u`82c06\O.Ƥ`y1:h0YEiDUfHӬDe(:MYMb 5ڔLj1⺎RrcUYPZҟap[mY#\$ht]#My=j#x,V#/tRڮ8vŶAg%Ϗ(ӄ }a=?=xw\]l(TjϚ`}MqEQkQS:\]#mY6&~f#&|ӵiFdW8pѳyM#jEKO<{AGؖ[SϦ|8 rUsA5to#Ef(qGc3?|$_g?ХaY-6xӉeu?8uC\NQWxfD6&}os3 '&Z%:U-Mz{ŪY1OR+?qse^#=&C,Vs4vhŪ{O}黙"1|P+Uqx{zm*1ZL0yBe%s^wa+`%`c$Q+>@H2w( Ե^ZtH#yfx#0|۱-s!Ӛ[VѹDxt>2Xm{ PDAе'lעƞECgy0r4,f{]q,B,Lt;⦑ю䋆l) W^2f2a*vs:(VKq}|<+V(n[7Kn6[e,2D6;v`\Q$翽 bAG~]EݒzYRբ#Usz1\^Դʪ'l2_m"#DҊ~s虏=Dx=Q9-0egn?|G\SWK6shG~ݓ5z%LcO{ڳ٭=EQbjO3UYVU]QVn"+ <1C_0vɌ:KZlW;v5DDA<*MEBj;AQ8pex;yzEZW[|PpL^eddċB&8LvDɇՂwT2P9̨.:3.YuuISf,˜EE@:ӌ'&/8X]-(]۳ڬӔ$X}ذ^-3 Ote֐)Td/ipÉU^ |\-r-fb gՔ,ʜZ){G$ KM(")*'inY-r~\@FJeY]c! =mk1S?b?X6<12$(˒a:+e"237<>>nO|Af~NL>rj;2&;r=-w[l tz_6)k-FF4SIRmjA~]rC)\$i(b ;.^Nu{hB5$HqNk Q\aLQQ%ᬥ, @ u bLį1OX:TinrpjBt,+\9/Wmz *5ʢf(ĤkN]mXɚ{43#Bff٥ 9.<k}"qJQEԥ5Ҭ/e-1lSW^^L_F"8dYNQV`r",py3BLs ].D8bH")!ҏ=ز.AJ4?*-4̾6Rw;^o8".Lt6*z~1f+&+BXBZl .m2i%Ĉ2W" ȹ"K}3)ak3Gt^0D$MYLk8DcLN :/B0zlaXĈsF>MP-S;<2̂ 0Dr蜧4:!2eaQm=eYp=n`lTNam&=R̝zʡ4J.<Ӌrs8`jrn6|2'ӒhXTMͲ6f\`:NݙqUbs8}?s< 4MӐeq9߰vmG59핓jY<=s80Z-ytIףg:c VKRiV޵8׳ݕԋ;7[l2X:"e)Xliloڱc2YS?HQxxr\"݀+ws8 q:w?ČR'Ơ/\unK;LLNam 2Ǟ\)\?#C9weC{z?ҾE{e2hiA0O/D)1H=ŵI~8Za 2H߷f YhϏOt]VoO=K=Q?i2II ,dUo,yDs/oG>?@#V~ JktU^bƙ? ȧpNyЏn+>7& ^J&T5Ըi=P$49vfضE=+L}d-O?X`S32;QKo/k*I[LQY4gYoh3{|G# 6;ʦ;Mo :lp%\*b i囚#0"lov2y*S }|sQ30'x'zSOo$NlWIߝIIiooE_?1X- d<?-so.4+M=DUgMDw\9ła!xׇ,O ,)? OGu\s̨gf;QU&FiXxwcUL}V~Xnv=0DY77du|`#YaȊ@7NH9Ni{Fھgv<95{qJ޲Sהʂ75rZҵ3U.74ENYI1d&$:OfF.jCO7w\Sa%yy<g\#妋HՌ1byw}j\c M\|;z8!zU3 &_@l'n6k`ri;Ixbsqfˮجk{eCU/ e&$˫5p#߰]S7l?ܰ],f ǖFDL_cDf?}VnB/˚(zZ:Nbl6\hol|?#fwiQѺņӜ1E۷y?-D{!Y ʂzpƏRJ;s<];^8;X7qB#=F(bd\- a,d{KYJ&/J٭PưX`p6PWKȐN14gdQR&YzvD_?#ǖG! 6-w%5>DtDaR%yEc%BdF,*2dgeCjkł5ns:.7KB#(OLer.YWnř4ݖfjH3ig\˿e,v\w׌c_~DQ@?51F#/3s{~b]VdFPg\wD mw`r#Қi쨛 n`E97MbL#˲\ 7;V7;(fzc-p 3-4eMc4OVab^Q9@Z,x9qFc,I<˘ )e0黕1i"]֚f$ -8%Hh!JI]/(<:F( TQ v>EґB̹d9[hYqn'r|3y4\ Ma_i?%=S\oUj".v[^x`#HP Bh$190YWpXĢftСaFdz?ҹ|͎Er+"xl[ZuFrG^^3ۦbR<;~3]+37l+o׬V ?u4U𞷯_a&sTԜ^Z ՚m S%/ϸY%Cdv[Jwٿ|eUV77[LV1fQrlXW5o^TvFԴjʚhVɴax=ɔ,ӯ՗ VTjMDyHu R>`]BävO2!(JzAXPJ {D bLs#8p5 i3 =YE9&3YIu}1 1!N.ov,1oL>.nHᇒIIar&3iJ,C$C??dROLgTݲ[n(uReW[ycʴBILu Z 2㴐4UzZ әvK\\:<ͩ%.JS鿗,7u}=J<#3Vߤ_^ZŝFkO÷& 4t\}AS7m*+"+r=~u5[)Y/]G,u(TymV>paҒe]aׁכ%}HКa?|G,3^昨3B52YQRֱ*xruUЎ#0#MN/ٟNlvw|%8AfrnnosF{#v8^4]])r^{GV%<ϟ(rО{]U ;43-E/sl4kwww4U dxz-MY` _>Qb#o@U,vP~Hn-6?=cmn;yjaP  ŒBfm-~؏]UCA(qb\믿P*{|}=k~{ë]ĸyy)C;|,?!܌(rx{%*,V (y9ە\uVep| K7igRTd-:lVלGI1lqRZ|4*23Em[ɦ)BE^0 @oJaP"#np>?pCl;2W-6zjSZųP VjҎ} ޥ G=ynF 8 J^,bR0v FҝN7WH ә,yݿa݊VJYӾ%;/x/=ݻՇLbg_YGe /=[2~Cd2 YQRgVطgt̹#/vcqT! #7WCO{:jT # 0F?yxgqfɫ{A Ru^G9Pcrc#L75E-ɭc155UQp臎rAH/2 ]j 6x QDRW Zk,:RS/h-zCYLԒi&e*؟:6SL'0 Q b@e%!j…B.>5\f:K*z9qY4kƩKb )0J1\9cޜfk1$cxba&Si$7qBZ!OYYIߝvKN3<$P#fLcY (`:`=CCd9Yv. e]\cMu鬮$x!nZCVD Ef#$"6PEDB(RHgEacJu,<5 ;UMdj˳| L3!YL2^j<ᇎL < Y_r㌊bgfC*;H5Ό7dR-Yj&y?RlB1]N3ԌiJ֛LK @iv<LJ'¥YS6̧G*hG&;3yCPwW4qz6x8`K 뭀tHRE8)$[.PX%^,gJJu5NDqR-A$4pBЋ(2Ɋ.~sQQ c #q$`\/|P !WkjisC-Gr~;qKɶɹmiO7KCog sd5dYgEzK_K/_~ft=7?~èzQY0"TELh]`#uNnRVgZq(tV`]g`(-Mst rD|~~mGʰD^32\oVi?)`]o]p$quE*AYV^&cnݞyhi+_b]uVsr-jgԢ*ñsw~b~?n1t<|tl8 ,%(^q!5KltyzsEn4˾副o/<=vbز>$ӘVԋn4gōТ3ž;p;\儩Cͦī}fw7XV+v+  qt1#}7KulcRjlLMӤ@YtmOLmty~z;GQ. 瘢ơ臑jA!$dv9ɢDɹ;3LJG٨zEQW"crnyJJIƱGyx~flnDVWՂT5dy|}!JO2/p@4yM:&g_~þYJq:w Ìqt0X0VJ߾EI]WN-}a^p5lٟ(Zqb<>܈!731N,2ȩ9u=YX,-2nD(tw`~Q!|d=~\myU)Ɩ29 H,q^Ҟ" i|#oJr%#`2FP/+GJEF'y$WLw瀺A әT|!_a5bDjD.Dә.leY҅?'dxa@ IiImr} y6kBbwZy'v:}4AFB . (pY! Ff@P*acL07ӧӓVw]u9{u>uU gqB%c~-Y 7Z> qϨk-9a{4^fSdI(^.hv{cIEZ)fMrk[BhX.Vg YGvL ^3x1R)MC.>Fi.8q1M(2}ާ!B+!9?rb XZ+OH >2 ɜ|@k%I[;*Ӡ.xi@gnehi$#) 71t]qطSrwN,>_~Ȝ5#8Z10LSط#a"BD%%ZL!k >UH dEN/ŵ3J:;c~~2)ݎhMާQhp"":2JwH% FʔXDp5IV|`M(5YQ9R #PZ4!,RsZR*E!/ Ͼ8beְ/X.W, ?]eYV*!#t!pw''E2n`]/g<92Pf9TlnnM&c,w]exKQ`^5Y"gZ~rF(57=-,OX.KuF;c׳ O@95'͉xVL}cߡ'H)HQjnZn',yo瘲"LYK6='|vhun[iC2'_p* xkzϬ,ٵ!Ńw=U9EUf|HqkAk2Sh@[ٜڞثkjȑ̗|9?a +fȘ&sUFSTuZkdpwf3^xj>Wwo98d>+BQ2e' gKD Vz8jflv{|dt)U>1Ytitdjzv-ó.YCQ44Z9 DOrKr^\{n3#_54NϰQyӊl첂He*]g)g9Hږq"5^"D&޽lHW n Cap |גE9eN²7%2y8 0Fʌy"f sv'ϙessœOp~~OO/iE8LRS'6ȅ}㫊z9O,7`&/g秜h&SDU̪];jîӼ}ˢZ%0v9.jg'5RtYrvvBt#ֲ̰nD"(!ME2Wf-ob^{Ο |:8?,%99=CEط0x4.Zp͈2}.U^rrzr)ق7oޱ{SWMjSSrJL,c>iC<{z1u]3QJae>eX sma=DG1D\GAH +9G!566>$.xiOL-@QLd5** ;:1DCZ~CbqGU؏7K`Gq}`Fk`'>5X/}Kz@3"n uhѲk$5h:/V"ψ2C68F*=S6T{@,껁i0 L}Gi>LmT~q.Q"Uά!^z"mT $T7t'$R qs3& HJ|w|va+T6{MV <>O?%3yoaAN|<l7ll-dr(yw?l%|l)pY tސ)n hi'e^j00t~71"TS:oAU,fx7qy`sqݵ :Hݖ'buiJڱg9_#vo_.X.kxrZ↎á͖͛A-yllɚ"4E''='O^pq 7~ϙ (NvGWo!1=o!F''_Z͈P/R0uCU4B3*,bGy;..xAYX LL t*Z3lG5yyΩwooO9?d]0m pl-$ vȴaD1C?жޅZB*=4@؇0 ҰZDPU9#)9n8;;MG< HED!nvcOpM1eUҶ-t= 2 #eB+ dh#p ˓[čY`GTn@t'KKvݾOc # qf8;1h8Edy&3W_qsd&33憐 ,#яÁYGLÆ= vWywWCw׈h9+=>y\|]glK@^~ 4!J՜0iG%w4tHhyۊ`>)Ӎ?E)Axњ<9LDoV,a:vTby_Z|3("͙\x;BK&j,uA;oKs UZj+E7o['-__u^>c&>/-eq?H_߳z{1zC;k^XKfl;Lv{~xf^DT olljV&p ~?z9P<<8t#|ɡp^@<&~l| SzA{c^)f}9;G1ɚa]:'M TT4/_^ϟOS:Fux{#ٚ|\/<#tA^aE,)|N:?mY[Ζ<}Fܽ -ou0 rL07XV⧾M|ka? 'O/YٓKLK6bŤ$uYS"Mc n˺lxon9i eI'%q?RkrMP~iTr-m?"eZVkʢr%z1E7O8?;z.gk.f ˷y˗e<3dC;0#'9ufE*ܸ ESvH1Z[h1 B^-|לI 2ԅBzVlaa)yl-2Ki>+8G6\mi(n}GUHy'+n[ %I7RkwꉅbYug2g圯֬g @)Q+d _vFJ3 BS89_{z|M#/qYsӎfE7ynd8t.J4Q[dRοvst uP3 ݄]D-ҦDd9 S(3NLgO߳lȤoU\?n#Wlw(iDqRsv2C2QDK!%0/ "woطWo'vb51R29"r/ǐzMyvo mhN&n<-O>dFu9ikT{Ts~v)+Йa9?\-GJU2xhvC^;KVd\]=RT`{#X%U=g1?a^1yA1o.C@{3)5Y9!%-dyEB2fLfsfYy>&#~͖XُT*as4h Qo?B #& I bX72LoGГEsqd]D;"b@@-lpہ0 DgȰ;0Y%'rim{Ohkt1 ͶG^5< mOh2S([~g+fw2uUEYQ3/gypAQgRD73%7=D^~!jBXΟ]U%el0@a)-+nn Rbpu8ta?z9uT%qzOg<}b=]T {akDe(U4z6@ Veκ.pv@gsVMY]Nj'D班1FcC~C4l\q<>:RaZLtw+p]amj?{#$Nt]RqS}&wl[E)غALG5q.Ĕ:3&kGW?bs12_>DJ@۵-Q)1&DbJ[w=9Bhc(1ǮOFDSN"nnz %R"dJHĘ@B9~FQ7%'gdE,\>}BUyn,K,k'iŋGtSLBH&EI%XX9EQ(fQyLF!i`{MP5>৉yݠ. q"U~lb:Q"4u}GXa$9SRid36aI(0yޥ&LYAD$P~պ "1w>CJ(4'F($xo! ?c/9Qp;qFwoqp{%ǡrݐ+X*WozszDf%laKg{ݖU3'؁3~'\>]2+>} )|M?[\-9񎇯9*6;^QԾ=ʀ>QON=B8A)K(*bLeGmO?e3d9uURf% }Frp>(֢%vȣ00J1⥡*}S0&m:i`vĺM {e*d o{"cr(u8 ww 7B$r"Zo+ D޼d^rsO͢X۵ERFu<8eup},/Db87J# Q-2]|N%h>ciOяM!Es%#ǔZ2Ja h#$I()ѧҴ6H%!d?bdNdYrF;&L͗):;>$VC,>&SE T6Ĕڒ??3(~?#R;ѕB@eG$F 8m>[2jh3 c={'KL.Y͑F<9Ei?"W$|FFY,HmruuCf2]Wз2#ݿoOVKtw;@.6Lfy|$C!bdSrIHIh'Dx<Zg?;38yQ \"gpIPF'AG[Zc %)vC1] )0e\JE%3?mL&GGʑ,p4aF҉($8Gp|jQzB% Z JoKh1~ ƈ KF7ێ<зlo B:i(˚SÝG!2"O WX-3&7!u-ލX,Oha:1MFVbi%q.Te FßdRQFp>ْG!UdAfº3#EqYh_14O.?kcBKɋa =Ӕ2UU eD+@= '2_"2J'=/:mgdvbZQv UHgSk{ﮈ1b4!C2'GYLAg^?o/cg*J4* =K1?.%X/51?BH9qib8/sW_QQ#bpF0h!1>ڤ(Ox#b:'&_g/}HT@zV ?|\qz~ݣgw/u_?m&kvuIS `=m~7S_|wvKE48cG^Zh YdU64ˋ<}qq|d6x{+-?W&lQ2mQpD9GxB) #)'+5ߒK( &-)ll@~?`9˩r"Dֲ^-ڎLj3Amkz1ݸ/Ư1x#FǸ⧁JjM_Gr{rּ7"&K(O; ]˻WhʒgsYFGV)cmnoߥ쯾f7B9#U3~]',<}v0?)#g˒aٷ^7}7#wC,Ysq:㋟xuT~>]^*GjNVyF^7< l~li9k"!ׂ;꘱0Þ7WxguaRM߱:?G_#dy74p8 /. (#A(* ՌK G`G"LJzs ]w.|O/_{!ʉqwA2g'TM+'/X4 Ce3ZLÄo-E>v4Q=ͯqkȯ|w^?r"\j"h ;tYqQ9]\ps85h%Ld$=7NZ ֎^#vܳoLL&ZafnG.G>b=aY1׊&r9UAך,޽#t#l`|26޾"{\?<^12ŌIb2L#o~l2v=?r*a@XO]7Xe\.bLt ,jK1p PYj9 0,g,_o|0E{LߓZ2xOx)͞,z*x^[nnR1_-RHNjc U*e$cnxvdh, Mq{to,0Yþ| 眞 02mCҷZ,8-_'j}Nۧxv))MV~@J~OzfV%~pabswKwwQ-Ȣ;w `Acts o |\[Srb݁q\':Ec0#HIY(]bTm29 J:!)ֿocȓ{[FzjSU Hz:V,)dK8mX欗s~"7JZͿquL"mD7L.ut=aJ U2[9L~plvmq+("NV9'/wׁu5""KI -2Ȣ$su[:bێOP7G݁F2wq}cn1Q`W&ԙ;l(`_E B7cpǁ)M1brCӔZZ4~L6ubJBHɎX;?_K6}7dFO?n0G,S>L!P73ʲݛhy,J1RU,>z?Lןh۞__o#PŒGSbc4r' G*8&q !v4h@=Q%4%aR!a8DɳY]#c.y=Ʈ뺴>ʿ_/{x`D o ЩB{ڱFڮR g6|+j1`QhR_a@Kul+F<t($IMU ':ƐT%fX>0M<~'Q^`#Ɍm)Kbԅfhi`Z'Ï=>XfwM YӶ;!LLKÞ(섮VkR$˾2Jk&kAiL30E' C(&s>LSQ >d)ˊnط{X7;)ʚa!&TD$@\iZtblIS J O6M8<#,i]3)r!x"^2/5 +@\| |_-jumj,22`!\TDF (A RFirTy1EAd2ctMdRQjMg~E)!"Дy ){>.ZQR%Qs0:@i|G8qFZ\sq\..iw- CIV/CS5V ,x] trÀsV@8zPyNT ÐƅՒzL)\/b)*/{9C9>TPDdxqhdq`8l$"}ǏO~߲f3&xS̖l;@3DO.5k0+flvs/ɴW yy4Aj+?W~{`xrzFpO3ӑo|{-ww|sp9؁Ae7Xŋ 66]$3];d&ْz^2<4ELixZ~) ߳EX={^_K>D8EAsՆq\'SX63>9vp0MvٻZ7'׆vThN-CCQ8dwu :b&OY ֣| ojiHbBB"\rNSيESr`Fv[ǮlK~9OND9k22vŒXj jY~rW77萧E~g|53dEuo';9Da8캁n))2b9n 6f{dȼ~yǞ89ء<;;A)I^s#/ךQgf)5v`&=˒b9!Z#'qv1n- w}h/c)e߶84c07 zF&WKL$j<>rc?N jQe5҈yc%[ i&-r޽csaUPS9Nh\pRO<Di#Ōp`ʺfG2e8ZDV4@S7הu~) n8\<=aU/c#eU=7w{ݻqwe>ht/k[wf Pi7>԰+5gD 5- SP Pxqs(0AXS~d\qhX7\C c/L4]h% ҾA+M4 hYN RHnߡ,׏D!PYvHz!vLYac*eʌ!N/#ږb>Cf)ݡcِp 724G-Rhd}!1Y5՜,yxء%"ҚIl;䔄?HKfT*ϖ\<rnfd* gxގm7.2 W'gu.1Z4ʊR)xqd,+ó3~?"Ve| ې)PEa|)r7"KEta+~~ ʦ"ǹqXWL{axlP."GV87TUFu?Hs>g8 J77|ش=EVXxpMtc**F#NI%#'jqq|l/7YdHN-(@Jut;yք`OwΑey #JIL'l6b+ql1hh HQّ$>r>1Gn<64L/X"I6f"˙G}BJ  AQ֌vYIeLÈp}K#􎺪iv()x;R5R%W\w mb Odưx3noo1Zw}#98Nd>"z]n(Fg?~ϋ"-{OQ$FlJpzzջF,69섒H!ɤFU-vƐe)$b"bЉZ"$s)&yuR%PN"s0M t]H U3a@d 0q0&&!GG x<)RFF( &F%uQU+|S/JVLÈT;eJZ3M=lȐC(Kc~yzʢ`#w[LVy$$:MnH"+#-[[K"+c"zKp+E)ʥUJsY&C 0hZ % UUnM J`BDdf@~a}-Ӽ~C,(f6,"Ӝ^"edۣd9W޳h4MCDX/Su2for;fF& "a'B鷻;t98УuajFAQsr vbh|*ody$](%ĉݱ\#E`;V:cpO%+s=op$qȳ.N8-g'l\;3 ˷kVf HS0L49cone!Xx<<Br~~x#EY"QG 3FGXΎ7᎛7|/ew|͋'k^])@ >޾fVjlے fs1 Ŝ|Ry}udG_)Ɋ7o^U(]prvƾ}49 cځq "JO/ɔbK|[Y}-a`:A |Lϟw'kn7Gp;Y6Kn[vw„H%>r?乆  {g' ese}Oxk܍R&18-Ζ\<1:l C 8b@Ō>A|6GYUeݠǎWohCrL7^QRW9t3[,(вo.nؽΎTdg^D3 w,3X,N\`-Esxu;b4ɊMԳ94owZ`uP_}'uA1+߶ϩb_K4_քadSTwrĶ~G,kbb`,M3gOw;8&rlmow`SF~BI,~{O B?1+jv">Z?13I${2e^S%;Jkgyd5e%a=ZÁY4%^c.ؒv-B)F#k[h6eUu-:;K/(< *4}d ۣ8N6}b fPyHv ,JoW?wSHnz1$ź";˲Q9-y8M-KkY]-]zMU' ޱ>E3M]VdeAs&,6hg}hMV`#6.l+턊0Nk oi |V2/Jv;HӁլntEΫƞo҂3nѷ[DLbɻ7|vƧp +g_Ўzb@),=˒LIr /%nC5?ß!g@LYކ{SV$pi)1 kR}d! R"q>qz"kI<8TH,~WUk-݁WQڰy|np9U0,TҴ?PW%YӶmZKZn8SdPvI4lY{bbL\*k&1j(R#nYV(9Zr]v޿},ID/d%A`DL4-#§MQ2)ryk8>ul4"B!t@J}6 ˔-\iwIi"LAyMLSb^c"͘O@g]ͳcrFQAێLeLki E5CgyjNr֐U:ɫR(DDoqyиiF)N]fOpKz28e} B|):7%` -81FE34k%8M"*/y~9F$Y^DΣ]Dp6] بQ+ȪD DLa9!S9>=ҤIFF#r0*i!sJ&iwnB4%s~cds<0UT|='.xw7\6E.Ns:_ l@X8ׄ[Sjɰ헟*kj*f.P23mSӋgɌFk`:\a}OVN-XTD! C?"_;]ddXtCqÎ?)@8:b)r \y֠ME AS;<0u0pX2#ŒR,dU $* r>2 O뚦.anar X@9gV1n[yP6g2Ȕkts}n ooYY2|S X4%:cyz d X5Eɚ's?JI>9OsXX Yi\/iʚfW_&39E#dwphw&K2!xq~K,DВrٰ8Y2:bD!ru_^D`hҬNQy. ھOZcb$gEi ; SO׷y4p}v WUцd,Ϲ<Q9HGS%p5YTFّj6r h%Mur)1%E )׎$rFSޏ~HNN89AyA,ۖ+O_U2!=/?|f ٪Dhg쁃 dHO?dI%U!`yFYR^;2*92P22YZ^aV)$ZIfį9b ÐR7µ,nI}}ۏO{h"/BҶKy|ZgKbL΢1֘3ԇ.(h=>L zDH.2TŐ$fP$De,1$xťcS6v2<{ Mrf8;1&Îcbaxxx@AS7,sKNǼ[N(hl[[\1/h, %$n9i<Qkp7M:BHȄ0$vJL2!FP{FIP4. a_aQʐ ZiÍ#0:1̂Oҩ3;+#23Ra,>,!%RS; >H>RĐԾE#R cڸtҥbRQTca`J_1 6(pvd0EΡݧ”"8\sxjIGFmxΖ iFUW, nxyƉğa\@&-=DglnVG|)m $\w q#W%gND+(*5m/5xg~ ~jY^l9uGK䜶B1DUd,VX1(yx%o.E(#*[eE!_f8ӥjcvf p j`ȩMO\ X"u4l#jyKs`0̈YL:a;~=S$0Γ%E#eoǯhy9XOoa${>y8x~fn<<=8;즁SoxwwKYcGhW8*͗_>` 7E#B姟倹^Gu~{d*)˂Պ̦$L['zyyІ\H/SMybuM&*j[=zբח?P%&ꂘ6X։'Q5*Jd.cQdzUrq~J eN\HryMP4tDH2c?L<~"+*kR<ꊧi0yFX"?p92&no/ɀnsx=^meE5^ ,/xx~(fu98du4N ,Qy]!$ӽ./BZZ;YI8Jno112n6-^gDZhˆ`:lFKuu &r~4xӽn`;TUq+.6-v : 㫠[֫ OOE_bMT zO+a$1Zj`\"b{z?ۯÉݯ2izwsO7gECUvMk&):C l4\^JiƹC EFk@fr<(,ʉ>&;UQc;\pxZiraZRr!,${ϧgs'hH5nyN" 5EꔼZȌ,zkI7TyW 1:-<ˬ Z 7 cgIĪ.(F7vqR71ԺCFg 7YN-3KyiDVfdRPorn~eA#{A4ygL镦*yFt0̔fD5u]Ѭ|GEE9(n׿e;()])h5JQ^1'x|r=; upuOO_:rQ^4ENw6Bi@LtB\b#z~ M߈ޑeYz1l[xX[&++9n!PRz3h'YL=shӀE1KsmtCH|,WZkcBe7)MJ~)#[u83 EJffGV+H id!$$k j)!D+l"4c|dYdJ#K("ԣd]W0{O]ԉU]3 I8MeXg(Dq^?, VˆRKaf'Kt-j9EKYb4yNt vZ,8]_鑮(T00lچiLi1AkEןҵe)ˊ21 n@K1]Bʲ4c j|:ρJIEx@JMi1@ n8Q9ec} Ȳon$B$eY0qloΥ$ *jEQ0ޒIEs#eUT=Y9ڜT%ISeG3=ѧPy+Of#rȊtBCg)ަc6΍ rJi$JNۣL!hp{Of +qVdh#c2:dYIp!rNS,cOLE@bH1B2ʪL=v;4L=h-;ĔVy&3^Q@}Pex\t(dyF="+A 8!mAKJ2 ,*le d!݌5"hZT<\TJ AvZDL&)(S2yrQH> r(rnP5RkVXkOW?2 /9A!dX|ٽ?fg٢P="J޾yjrX q{!SKD^3xR̮(sSgcFU5Mρ8xIqYZѲP%>m U!͘>4OBb2byC0aIGAWCPѴ^XhC=4"BE;1~P;K( {C\`\M NbߔfO_ϖ-Q`>Ubʌ=tϟϏ{Bְe@aVZgeNǙxwuEfL;9/\^_rYHڋXzEqB,6ҝz21!שwɰ^O'W]ּ^ؼ>y^.A +mjT͚%Ad|ʺW<PƒW*`;Eͯ/[~ݑτB \Z_-닊Z~ \ U@vsegrkk%^O \.ziYHTY:9͢ei=5?:u:<\[!qRbyi(nUZ-C7lWEdfFKfC'9vP>b.4Fn/'^XT84/;Q%l B^_9|E:pHysּ}w, ֮%ABR /ϠҖUfyxx}~flE esyfRf-H,y P$ ;!枹?1d5j \0^;DzHWuӑtdQxgh2f̽NxA2ꦥL4 B21833NYY,Yfo޳Z EVՈ5_GΰcPYEpPDT#9j-Y-*P#X͒6%1z'OLH0:vҳ7cR6y3.70"@Tꜛv\5G@eE[y;YE3pd:<"h)U a6ɘ6 Ơ羣$Y(Kʢb]/P27C7uiǡ?lyѲH/MUR%, /!#M-Ld"c wzs2$Ĉ . tW CXg(g)u(%.g]}Yp'ȹ֌)Ωa\ {Dɒg8;'fhږ7ooubyk-m>=es3'~{B$|HX0!^kk5#d"N,)4-Uv J' 2"E0vML*x\ g*2q JD⋜jѥ$XKp6hfsij}1)!T꺢+@e3Ldo<"w)GȀ*ɲ`4&DL.q֐: "ut^˂j2:>m ~́S?R!8񳤐BGYGܿ}KQ.irђ9uSCESr;vp^-X-lT cPӉ-Y.,PrF#f0t!Ot%\zĎs>EPGi[9&n .^6f\P*٢*D4")&'X1JJ@.$D@U>"N<nj~$W2 ;_EbŔ "0TtRi6~٥(M}(v=yOO=FYh~W~xu1/ȟ #+^__(<=]kT% c&%PF-gdzC[/{DF2]掬*l CGV/ylzeeKr\RG "t/;要x@YO/{p8zw펾빸7SH_yiJqӶE,'bݮhW4xX8Öqw!~~ y|CbA !yRydbOK13Js~i 82 UU5qƥVYcew \/ xXU|vWߘTm*g4=8 =<@$٘?ʢ!eJl,5/H3dZ"db\}(ʒjsbݝ?F KU, __Μ0&M×G;,_7<>?YosI!k>/U;,ڦؙ7o6dYn>̲ ҠPHz`ruNo5y6gdE8%ٙƪ>'qhΥFCk-R+ЊB'p-UQr;tp:2Iv+m@2&v gnR J5vBgX"RW(RLR#x\k"}q1pLwBO 2@@Da<7$ĸ EKylHݔUbc|Bx֓a0-~\uM^'+(E!z8ɜZ(:%D8"MЀH4JDm˪oyaR-/vH GIn+8(+39YŦmyU0 iK!%n(1C~ [H@WMsD'6(Mq.cqZᄤZlt|Ղ2o^抸PXGAt@ %O/~$e͛5"rz~9P | ,$pb<`HNSLV #û;^>^⦈">X v; ț7w~hۻkO'2.ݗbzɤgz{랗߾r|J\rxyZW>?sy"++D_~y U+1'IΆ}V9.VgD<}~hq3ڑϏGzYJRf4vj zixK|z$ׂ>ܿcQv+  ۩%lNCG'q _|YqQFcu燯JyF{YγlJI—'K-54Xm8N38"ƚ߼ߨMY\H;r*PJ(U~tfDj};\&n߿ursnbg//yxye Q)i܏TL* 8ND"4` |go-4"/jPfRI9;BH'`3_!dJ,y~a1]bU`Nk%}ߓԌ}ьDH.#M]5Ӊ``gbTEdYF3dYq2 6R`fSR: ڂb cSy󂮷LZ~ f#4Q%Υt iєUd,u6`AOYa!2C+MBDic2Գ'ơf:./PǎǗ4幞s?R9R- s<!j4ESJ]ׄǑ(,/1Z;\'O\;hEL缧s2)9N琂8 %itB cJ0 ÐWB`15*kCgtv#Dz,;sD)h^ $\l,!f-(ʬi`cbm;m!bx4"Md} Te.B:+ nD:,eSwUTXɚ pJ%|J">0 MY3$0bM?2 kn>3IӰ)<uJeK%.MK!Jb` +FnD@r q(Nz_@Y&ۀ&RRs42&`R&bH_%1x(*C~3)FԜ{8e[3 GÀ9BE4 @;#(hV 률@5udpL4zyg>EhPHդm $PeE3:KU7LfN/1:tou4臎*+(jf!x~ 2HqOcPcĘtYw#DҪ <~)UNK\PČ y^LF#|D: 3JBn!a6&G@ F441c>#8O&Y s"ןӃJN22 ]"g2" I^2M/YeƱ︻ct)K^cw_e5zK8oX.[3P.yo=R\)T!dQ/&+*y֩5:Ysj:t_: S9ZF/?J>|M7HE^e@]=5L-,mA%  EL)7jTseeP8adr`c43bZ\xb\T%!R4 jUNT0{^_({4enFʜ{viHthǎpuq32K{Ŀ wo-f唢Ɨ r_)Ӂ?|iG&,^l̂ՊyS' s!->zL?g,yyqțkqk 77X, d=ugmed??utÉۛabun(  c/lO\nvrCG˚7?b2H8j(%Z4%iR4-Z4Y24yg/,Q$xҳ;~jҍzF;9~y$>PaN-3ԅZ&Mi k$uYpu}~Ûq~M2'֋+QH:^LI0Ox7"( ȁȩ%&!]Fcq{4ʹr{Ek0M'R1쌙R5 3VEF=$CG>xV%1ǒIhBGj'3yL8%?zXqE#U D{6TF] k.13O%ab^,v&S9NX2㷟>qp74!w|3Es}FϢG$Wg^'b'0ҏ=zY_姿|s:cٞ:l(8puYg9qS^U y^Q1lje"=;KdTxkPJLW ɪy z￟TS!js\i%<'9}mӜCqΥʝH5F3,4UN7Z8Y4-0 $gPJ!9T(1@IiQbJZEf?E!2Шd,E]3v> @aHC*#Xf54 1=SL!i0*PR%֔MC#Z<.ZGH~"v:GeAg,ޑYVStyr}Cqy{@e иq$H,B1ΆYA, tl9fp&)Hf@ȴ@jA)C'Rdgv* #<ܼ'+爩`䙵$FB+i#t>R5*8u'tD 3! #<Reɲ}=$=NЇ/|#%ՆE@PyA5aqÑ6d$_WDyRehrdV۞(c\*)+80v4R N=vI\API (8Le*+Ȭ@(RHv"Yi,㈒idđHE+|7)"DEI.%8n`ATJ *R9DFWȔ NDJJAH e! fgƉe$(z!$1EwuM^9꺤]\?2LHo/x]Igs}M>%9#\\[T6S-~p\l.lL4b}rR!  Aa7vxk(*,p<0,N(2OM)b^op`}nNui1ASUki/ϯLŚCI0*WTeM)/"g %"HY0Cf<)**c $,OidJg9q<3M~%@-%Kzf[bz"I5/ɤ5?=+Shɻ{NNiQKG*g:v//|[Ԣ⊫{n|OÂuUqٖDѝ>kNg?L|IZ29kL&X.3 mZ;T-,ؐݝ 84eARV9BE{ds.BD?P[f#ae&Q^Ž4*rº9%DW- 7[va zdgg&?Œ4a=E^Ԫ%wWה 挬i [ fp l{&g$X.YcMDS-fY P5+튢q?&}ShD,zcyzJPwIdc7Se\Ӯ7xp5.X^3|saZ_k9+qLiGiZ"q|z}EuBN^. cg(9}}v5ɪl馉QW&Ur ?rZ~YT5m< fMWCǨ%ՆZhh HZl|vYs{TآJ)-dBG\0Ap(||)%Ɋs OibѴ*/W|QEN^і5B vOR*"N63D^Ihkgy|~?\6+8bc$plzFI߼=y+nBg잞v'|xz #x̾GI%msUN\l}`XqS5٧ÖB??38ryQ\Ո̐CTy[e^:|F43:)x&c:;6;μ$yY x7B{N#.o.2ŌUqz=/OAΖK.6<gC` ]l7 VsӾc~u3>ܲXXyŪ2n[H,"#βaRK#yVA )y#̤Owrra}36" 1]D7I'Avrg۠)M?&6_9GeVT-;ث, CH3!ўS&$@iu}J Y#Z%Cqd\u3<MpzF[|HY C3;QZDOvfR"'oM:ODwJc'"1a-U H&(A@h_ЂӉvys#RלN3y^s˻;>}~̆͌ҊL}P9=~i۷2gdx)*{e:Ϗ|DQ~3s9z^=K3GG7UnZrr30̂LU6_(-:1Ӂwo6<=> l*2Uy{Cf*RKhg&kg$Bb][2cquA6Dxy}"oonx{{iw5-qd G )$uɺZ^4 500H;YߣeQS2 SOwsYh`)}C)닚o{vZ?f0|ݽ"]/2j+40?syՒ:=wliƎs8r]G13??SG2r{xz&w-ä[rVzt$a#JiQ5Ȧ;ESbz<8|E5X0 @V%KdV&o+Nu;zPdxUK|idOG7U/ .Ynhʆ\h&pyG6 fg ~.kaeFO$Jӯ%l8M3\HAպ #Sq?_qL<ݘ?PUt{yBFx~<h4d:.jnw͂Ry\4?8UO{бX9\l\ رJ͊z""/B Lσd66|@=$R*QbHo̤oP DDu = !1?kMHIQEygTK"cm]IL:Ᏺ< .8g:5x"݉pA:K)1v:W*KFHmFzg1~]5*(};sF# U& r 1 FJ=Nbb"]CJ0 QB H& 8Ȅ> -F&pI25Hi7׈f:xƑj-,@&!9 Q "nYnp2bfC4,jBȐ ݨ*M@ )~|By'i^2Z2*]Ǚ%yGۮ&RSFLc1K:)4FyP I702 ySNNì1f$ Bz1#> o^) 2u)@e% /hY6z]zTh]:m#I"%3&Mb%E>u3Ila%*FB1iP2% 2E5D!JlML=8C Dp-~ \Q9#y. yN^s: }ss5BLYy}qT˛0",E+.OG-Zj@5<>|=,G(@swL,E^JhY7 &"-t]- ӎA* X\eIgo&/^?zݢuB?br Z ~OdV1j4NZUEUHP]mxǙ2/qe%[V8P,T:2[DqC\W1yjɓt"gGvcǏ?e =/{أ˒fU L:rb i%<y&JHi,Lxyx$J)˂8XTBh0##qn[6\\ RuQGOc>m ͟3-3oxK)7ʒС/66.WTuJ<>n{v| ԏ-Zh~jY) _*W ?c&zl.%e{ڲ6㌍hLR,=(DD3"f$5r.Ԛ_Rfm{^?L%rY3:4x;~f}yfݐEd˖H7$B/hl9OLh#E&x~x kx`G)I >R9DZaO'heN ^>7LQi5ǧ'\p:Zˁ) R@ʂaLzLPgpmY%q 8+(3qOcxDZ0#|gpÎ{2#z(K:'_>oYl.ch̢jɊa/8;(K˿}?0^;M97vܽy8_w)=O}zd=,6Ŋ& b$#ϲs.%%㜣( R5}[ mZNǎ,)t) ΐy)R[LSL|O5<03 =Q!X="3 !༧JR4, aeV":>}uBxX,$ ER58c'@kNnb} 3v.,+4Fgih2 JM$O[P CQ録 QΉ'+Cks&QNP-yYX$EQI|7PP2B8?VȐfU`,o}7ZX4 %3";>KHv){7H:3/N HwLиk&1g a[w)1bCidEs(`φ'piX3"DAsYwLrqq07c`VRUPkNf6őWl/>=98MLxNT(R,KIy&v/ 4fRBہHQYT`̀ @`qfƋ.+LI,k^[BHひ,~ xU2 ]eҕCizcAd7 c_^Ȅ+e0kM8Xs;^_\]ЛspӌV,R)IL q$ c%H0HX=+BD]7&Bd8ߎ\TE&ʼӆAgd5s/JDP5RjLl p>O<+)G) "‹4 |T>uQR`Mt d  JI] !J .Bc3@74Yc8uTEes1Wk>`}YPqq{ǏCaٮ+tzɌ1{Cۋ;>B0V1GCa2/Qf'Y\3>Փc=A1v$#Lr f\џ^5ںi6w($ 5t[C$R  eɂd-tHS<-K./niW /GW|j2dؿL,3OvT1pxLVxz`6Ҵ_( [O؀ՂMY1*Gsa;>UUP4-_}E/ܾ %ULO;eaPw;-oo8M[gEB(3\c@DG-ľ6ᡮMMNLRNsp~D snn6mu1hɤ'tq1@EUZSb9Һ4EY"hL='~E؏|#ݲyyy掬ȹzmg|ŊzU3ځy2 C͊,+ .h_(e~@\7" !p>< o^a#gU0ZbP"r{{صTHT͂K=n1ybthR\jyRC&e֜N٢ek;qβYoP >~͖֚먋vm]D( #yL%YhyN=:&&Le|82O#1*3A#_N#yUq c˾+A-P)EGj YT v8#ESw"#!vyՂC;0=Ūa]|70}FkW m3T T@qFM7+󟿠|AҚ)>0"UAUUhΙ#T:t9эBLI2lsfye^.jȘrQq9Xڰ|bghO G2U %_k^?ÅW >v{KwyԒFwL rj||G+K傿~xfsG M]|ӻyAnsCw>edyl4+>$T:!"8dB$AI%Tw\S*|mO {D<;ꪢ'ϳ ޶mtuu|W|>Pߺԕ| wDbD}~*V}zAb|R)xZ=8^5c?I.vNv;MXJ0DHq6_[٫f8nFq18Y7Dj`gwe|x:3ώQ,˙eQp\R:(Fʺft.>)Q&e2,$N{t)%]ߣU$j4 1buҤ}J_4C"Q%d*'L Z"a9Cr,(nP*]!ӃGk l\Y7Y^Tk+-xM~ *UlZCp$&|tn" SJ+B&";2vL`RiQL*D5ESyR'{}o KjJ$HHh{T(G#5=;q9D8E_fV:N" d-LSb Tz}H$Kښ(RTEJeW xyBJv2vS:/O7SEpzI}Ydw8Yl{ e@3 UAX듐 Z׈avLvBz7oaY)UO ,7Lk Ѝʪ!jLUMF Ym7@-Rs}jQr5( w,.yt ۀ3"-dVM;lIhjvj@V[Χ= FyrC[O_~o[i!iڤFʂaǙiY=*#.L6ͻ兀ᇷo, 6xDSQ/;O R3Ŋ4\.Yv#:x~4m_Q/W|w(gɑyO$3<}EIјUSWkGܳ-4tp8Pd|Us Z^>Ζe4zSdE,(E*qA !r%%*|tbux"AIm4%Eqi/3"5uS^mzBzmȘÅ~h^> _20 \T⽠l9G횼P޿BL'@Z %W:bF(N8 ",vNk_,0.[H{4I% DF{M +X!e7qJN4צih/-ӉnBgUUXp.\+,wa.\ŪgU~ 1^9,Iw<&KvopVeL3bLN[5)a4)(%RiN?#Jg,灨+?з=޾e+\ϩ5GHhi67JV&zhc8Q])*$1xhrhH/Yot^Qujf2E0 tSw(L1Hi2|*!3 .-1dD !܄&udIG^?nnE 7U4o!*a~%*Ea8(E窒s3Z˛WH :7l_D珟-6 e²n(N,]R-]0 3.*0 XjE:aFY^q9.dFWĬB;[!+QBdZghDA-S^ c2qf70)J꓅^ bpi툋Oe*Tu0WΜB{h`!#:h1vƶ'\cjPP1qLY#u RdyDZ;gE^_}ĺkUzEw|]:.òb8JXٙG 4 B{:>UשIJHŖȹY5H5T.'uIUIDfb$ B %xr ̈́)|B .|&647[(rRܯWL텦0)Ѭ7H{nɵ +wo^U9,8C+i ]O'tBc2-w?#7JtVCV۟/?\2giĊy_=EU]~Zqj;h[<{γψ)x -Z|` f%2+8^&Ʃ dgܱ,(tmSc \/?DSjݫ;"##tK75w[ i*|fy@ysCQ-lV&'+4lon1:'AIF"۱uq/,W593Zw*Ƀ01ܼ~E\Q5׼Lѳ.(5uaor8ddFqGӅ8q,yްXUܿ4p_ e/ @o)77\Ӭs޿rϿ|OOi؅2'k?7 t2#*SfV2v-+F[=q)I$xw|i=2gϒH:Aq{r1|9\؍EOa [*b&,+&cОmalٔ\+,.==ւW6h;p=9wʢKt:0w4: OBHG=#i|9 H#FƖ(ˁ)ƀq"8M5+ ]w[ {DU1q̲2G2ʒ{FMi?^>ՁfsG^TaDCtYdl{v_^0 iNC(yqN(\ϛwwߣy̧A%En=N+:7`Yә(ҊedR_^l6x;p;gO;&72 ~ȵdpZP!PKNkt~hʰVabGeI^s@9D%h" .GbJ^.PY9X,CKߡB*g" !AMPE@) S(Igne 0v> ۡ#vJRU%0SWK1ܭnXPa :< `qJ%A`:2DžHA 8_NyB{*FG x4|y{ $"4v9BiRH~8z|h] (H&8w^dy 5y13t}jg<},CőzZ>GAZ@a?y*.D-h[KH#[݁y2EbOo޲ˑvȋԳ(h}~ o_Ƒe 8rp__1?"soOY?A(|?=hWȦFy]~̞a *-&)93! d7 uBD{uh63~9vQqoLGj#XI׍Z|3ÙmRCoV{7 9/CKbO;&;p:< 'U&ϔ\>7S-KF2u>|!K?Yb/{l1vGrSx$g-N}Rio"tg5BJV6knJ +gty$DޮxZ6|t15_>~f&n*MӰY~Ⱦ1q~oMSxf:SX"br>q8uq q8=穾yU)i M<=>si{y/̓9%/4OgNȹ*kqb;>@F<ٴɾVWLɍbRJSTE<9x#euvϜOΗa8].eYkt(UI,uv($1"fbԺP(4ϿgvnbYU<x # 7&?bf0YEDzEI\Et X>~39Ox>h`#&]nYKLJH7E>~Do3 SŊoܳٮ#*9|>qxn)[V{~wB"s. ޼٬xQQ5&(!c?R5w|ޝ"x$悛D.<ן˜Jd:TȘX!\D2LfΡ6V*@)D)3?bxwu/Un,ˮN,<ό@z<_ΉdDk4ߝV9y)"!˲Hm5kGȈXZ4 U$EO.`1kK&C.=eQ0MeybL"t-Z,yDʯGFќۖD2ϖAUh󸫾I"l'2es k;ezdLH\d Ï,7y)P5LYN)*ϼAD %Y%(E],Qi;ڹp*,Z ަ ITbt"RH0DgGʼH\q6b,3x2RV N# WxU69nNm!d׏0N309% >k- G W֡aS[eCO\<b"J"LsrC_7U\]af;D(X2o" "UӌVdq@FchLp)ihT|\#0R7KzIltA,:#@SJ1 =sHm-ESb\rݰ?>8ΡCt (gF72(*dݙiHS/B(fN"5RTHX9۪DGVH'eLIK`L)YPED@YtÈҚb6yj׶zqvE>w{޼e̹YV|vݫ-,o2᧑8Έ(iMQg<ݎRgTywۆi"KF1O\&opǴT9Zƹe3:KnN7xo.UE)#ѹT]WLn»yS-ΏhiY2v) "RxFc{ŖiRVDw~JV>A7o%c0='NsĠS[0⧞<v_X-*>}&`ج%cGΡC.g\MѬV|9z/ܾ{Ex{li/ K+y.)4k<QT9&6E0rqo;J%qҜNy.ȳ-,h7 }7K޾]3ipkmiȔC.??}xffKKs6K#L8]z, Bg<w'8#bF3߾yMw91@pH65U<6q⻇Ww,u~X,,,ܳ^n0!*DYbSm'*2?|0Y߿'dSD;Zy)$'l۱\-#͊v Ȼoq 6^3un{_q]\oo]nwX"?"( aXH;Q2ZHa_9 `Z:;!n ES3oސUz1w߾'Hf:fg&) # fݚ.(- $bYlLX&|QŜa t@O,24zB{HXlt u^[K^il o^߱\hL4p80iL躞i$\4,W+f빴8gY/oo߽4dwo^))"2ܮ8Lph[N:@M꺡E^Y)k #ﹿ}fsrAzMjDJM4MT٦(!› ɘ U^'/7EQQ uӠ3EVdis-%c*ԉP/jnn9u*ױa&f#_o(>#Ŋۛ-iǑ} E(gfVeN-aj fu1(z-ޏ(Gf@T9@f)^[n2lՊ۷bYÑE^Y1b9R ֛ h|tXx޵CوS %զ"d0#7[2R"5i?u0cfͣJÒEdRf÷ YnpQWx 1)gٵ9Oе-Ӊ1HerZھcǤI\o" D!9/(ˊ*1:/H<^t>RV9JAg:g1B%0%X5[d0 ݎڔ`g8ayfgU ZKJ:?8b!/ rMqJ%UHn ֧gV]-)CT!FΦ8KaatS26 H3g2#"UzZ0Ƞz.eRk3mPc=Z@g!8,wuZe(Lz6cDeJPӁ=5Ǘ_nv-dh;T-Mav8['@beQ`e'.F;perLQ$ט6M󾺮WCDZ`FT(&Gh]"&ℳX{t "+Q2ؐn;௯-LKT1EB:0 C)+c0&c<|Sm DT[d\.#Z Oh_~oXJ޼2߱ӉM8^v ۖ_YLSi@IA]@Yax/8aLwaO0>cϨF @LTv͊'3f _q\섟g,5P0؈Γ2> ʢ?H 4GPgi;bfdiȗ (!ܠҁWJ _>%XY0/Oq8q}`4kC?Ngdi R-+ʅf8e9;yMgTU7s?߾Mf2pOy )؞؏Khe"##J3Yt xŒ˅h kv#f W#TF\GH-_!X&c&oKASqId?7|%Gͺfs{CYbTt_#˞Li֛u\e _:"*Aۊex]j⯿| y67lrƏEfUߑvdr/8HX5X-K٣IĸVvDq{`Eh>MDL)22.c Y--f'g&||77[_a;Y숷=.~B׊6dI7 ]75FgX+?zbt뜿#ݎ&Ҳp{ k7<] BiB́UYXSyZOgt"ꖱ`]qTj0N>l6%Q,q(zEUC4 !=qd7* laYƞFyBѐv=BgE Q޼adGg˙9MEpR9 z͂ޡMӧ+bAa$"%+fК~0[dYQi)h5] Sf EϹMjQ0#vra紈7Eϟ-q1fv=al^ܮCǧx: 3.9N-}5ްY$pΜNG!7U]"W9<ƁEQ ɥ(%*?L?&~Ԋ(-:hp+}F^ͧ~Ď37 eQUUO>#w^eZp_Je,ʚRkQ׋#E0EIEp vu^5DY/V(xy}cnDJgiجD+>|~F?vbSQ9wo7(=ZΧcwFH.spp:B TUx{.NEdffgfj^Wd㶖($ .N\ȗo3O]=8erv %e9> {mEdr!/Lq~~d:>;LQkqx&ԁj)9!F3 Znn֨L0%H<ϔ&p{"X dY؞2rp< ]i>F3c*/( 05s!AKT?`B\5Hc*j G@UWdyF"aHimO p]j~4Q$Q5X8Biog$U?8 iY"笳X͔UN) *(c eQPE:2yU"B+R^"i│!fUH➐L;ML=kЇ8'a*""BM+G;Jt]uw U LB(y28)cR]j8R̋dECj+KhiPd$uF!Y}M )4Je}T(m0eXWW50(!DG!D@+q=r|>3L9#<}~_?giN6~cg8q訳"ptr.fs[O rL݄ gTDKM@Eki1Og0ӅYQ%xA( BP9sL@e h/I`L4ԫ5z, y1"R >+iZREA-=2_&ԎEpؿD2>?O^p:(#GJ0{T(,}`=C *('7kG }k{fq2[ӎX $ ӝZY.2-ղr:F0B8noVL#OzM,3\*inQlj"U4dam[a.ݾc2 8<_QÙ~]^jcbU,!䜞{_3Oare,*2g:c 4x3~!&K4UQ1ΖYhef}6p_Br[`'C3e!)1U/U`\ڑL^xx@wlB+^onJp[wlL29"h 2%1UUsj;*#?ȗ7:#̞z ϛ׷,Kn[/ۖh,%vvG.3˅#4#a 8=.ɔBebB(Yiod1MqiYV,k333X?,EQfZq8zH,X.noY-,%KG?9&fv< `똆izwe"0SrL0-=^01,N,29xúd]/ArfNxi^'/?Sp}.n&wl_U J.4kyꞱqSd:ZĻ,F2)x^=ܲZ]ldR'K"X*'ё5eQP5}7vAdȴ-Swx*>~q|`|?r]"}Bi, f;5߅iK Dj]ץJB(CJ"=\%*vC w98_S^*| cujD=OwO,Åwi"57_9z<'tFRKvvTUfs冦[)H#(*ǁg)~yY?1 c`r,PvKeJH`˦aY7iJ4* <"5i]dB}u*))rJ\~u&3 d2,Vk2!k,*)pޒ9EfIϙJ.>  !5b_сΜwЁEDF0!ȃɐ*}`BKM'5wH%d/1OĨ2#^b=d$P)~zvFb~RDbAOH,cp"ԌN2C+I&#}wfTuI.ʤx M Ŋn7Svrh SK Y~uxd萄xqe)`IbrR12Ĕ+8#ܔY(I$dW> XdF㮂&phM""."cwxA@UT(e(B S@3BxTnf<ͬ+VMݔ/Oo*N#l9\ZB!Է;CVgԽ\X9Uu( .CrtЦ` M 2XG Fd/MpYS{»\k&CHO?"[rKO$3r)-cT8;cj{'F˺$'|Aq{9H,%FR\l$Bc@5+\z?^mg&3bWQW+TG[ȔB Жh*Xb3ͫ%?;0ܿa69 nza?~/?R ~d<_huS,!MIT3wEM,; sX,N{?_?`$A-3z;2'tL7aԜC!2/Jz0qw늡x~Wbtdxkϛ+~#JbŘAr4a`t=pfYs237MԷ\#Mq|iy}wϟ`ϰ٬ P jɇ>1@1 <}oE#}k (2-Ӕ*WiJyp#&[qiR4aY-%@,LL'߾߈c9 ~J&r;ncN-*/_=:X޽k<}ȷy>OtY.+$[PgvvU1w-84YKg݆̐ˌg*i[?~vߐ?T:ٗ `/S@HfV+gQXN#[JdffrI7•lW~DXĪY'd!0Zp-r}9)MYW/n" ip4, Q)-gJӗRw).X1"K.yэtoO~XAzI(2zqiz{&MQObG} Wu#Z2OX h4u<3MF6e(Ɓ+@2ٙaʁ yۑ훷\-=ӿ51(]&vC4Տfqdڐok!9H</-:ȋ#KjZ4jFOOMfnEw;>LUiMxznP r}xFa"27䋌ގ잹3A8ғ5+ֹ0Um`]J J1H( D*.}uW)ȔƛՕİgbOR 8hėybj_\qH`3*1DGj1MirLi8)%Ub]f<#3q3ϖHLͱ'>y!(Eӟڤ.Dj •+2cRDH(]-VDFy&.6}BLrS:vY%8p]g leyvGqJ8vt퉦YJ&40S_ɝ#@d\U/}tLh.-vL/UJ^9u fƴ~o .9#1DL'08H皖a*3St(A\C:O,Cs2s?CVɤ`2bH)Poi )X[X(I6ƤMo$x"Ht:hr)YK,F(Dd7h v?'ItK ;,E^7H!!/*zI(2Ew瞱?BByK ]wl4FyLZQa;?]x:v.jN_G^=21͚fhӅyN=hMmb_3iGR䵠Db p[2w,8Ѭe8uTHW߼!1t=SAʂoPq #{J9^#v_pر*·9|c/#Zi}& Q?τQs8MtKmYox9t#_54Ӈ< ĺj?nvMh8u-sg0wo)~FHٮW g?, :> =$1uyزYΖaGv/xY Mѵ-O\c"lXV~%jU\ڑc;]h/3_01*h Msnd< %;jXGTL^bb?糧cy:ȊS?rg֋|I~yX1uFjݎ/qqƩTry-e.yݖjS" qMg s{$~:cT="y(V$\t|N}łvgK?M(ɍFf,֒-Cf 26jĩn՟{ ْKpn<+;lKsχOyN ]\.wkdU,oi_Ox_3@gvHkTWYf Ku,+ɐ߿/2Ӳ]E33(cʯ^׀ T;gfʪ縩4iApY!򜗗_ydA'޴ #U~!p;3<:a"`#Sr')Nz2@ekfL#֘8qke #XʢZqZʪĺaYa{s}tx9af8HS{o.\Kob(5%PEMhDUxY$2ig)pL)*2ַ;2qp:=֒}r2$f`=ϧ v@~{w;0 Sݷˉtb}wGv7,矞fqy&2hP7=u1>_͢3B"^oX[48L Gy92#/mXΧ bm{iq@6Ŵo%B:ހ3#dvdkf~%Or/8ҝg9O+$ˌs.Ի5EJke}s=B  oVh^D# J_fjHtFk/mZ"rb1pmBkhW2Քb:0,޻8#+;iMZ%l_ëǁDG.sk{9ϼ,m/z!NBhFt,8-z.3fnaGV$: ik1&-<|:*D}P~8Hȋ2ǔD*Ì2/ 2eP"P ϏOuZyF :~~ݯINY=bWT D<3#E㬋6B)v $J_jK&MN:S~}1^.(/pѲ$hy왌3֌ismixR}!u䥝,R$ v!WSA4We|!"+8 ))JJ$LUQ#I"!W)qjWt J$ &Q)i|5Ʉ ~!,:)ѬV u]RT;je)w$XPkU`c2,$fDžq02`v9KZ0YKP $xdXGxR46OH$ŶX|\b:)||rI$"X$Ȇ(%:ȥAQ6͖KA|GNX8jNR$ e.3XDdȕ;HTNSf\^]h 3T 6{"L׏Hwl|G"(fUUЏsdE4̜-J@>|F$M0=Z.?JrLӄN8qj\ԚP:acC|qyISrG n*E /) H'8!δfUч+ORʼ$d2lV~ථH$Mnv謤)+,1B b2LWkTt}xO$"(βj$RSeND (AvTe2x>37TehM]SW7@gx:2ŚrQH7+nooW_Noް]HDIϪ(˒NuNXQɔ'YE) ?KKAx*|͹RMge&Hff[uT))*2֫+.s@%wd ,H\8j=\R7{T<;S |[fzM_d,yBJWM@= LQb0efa[)6%ųnɂ"R)gY& Q-&(f -k`߯Y wki`8O3f mjDssK?G|? d՚f?U3XPU|-37whXoy:2ժ Ձ< 4EǏ>ܳ|~cבϞ7PV+f"|z!О) 27wMf^*-Z??IYݚl=o, 4euIZSnȊ|{hyͫ{ {@9<#J.jE`0S?w6NnD<-34+p~_("D.MUq[U4YyZ6IJ$SDքp8ҵ-2+eU NО/| Jyo|Ki=?}Ͷ͠gN ~~tRPW+򴠝-N=*M98fB X晪*xd4|zo</=outnO)͎7wwS&g[W 8 Ɋ=Z3f5Y]*a)Ū[#HQ"!_J!U4w-MNjMӞ$Qvp~!n+x{5e-[pÉZ ޢ)& s9TP˯?D! _IDIEiZ(߽{5ۇ;J):TuTyR5uYlfe٬#ݯNL,qSk/+b K/?1[hO"y5vrh]1Vx>3PHӔ}jr|𜇁|]Ro Lw;[iϔuԒfG^X)lpq ͎ BITGv]:Wj5hz@Fi! Ñ͆~8 7ٔl Uϗp`oVY1 Eo,cG#^T.ݱ c_LJMݥ-SiE0/0yfq$u)'9QW뜏3)kɲ,<30C;t33VxUB;t,c7ӌpiV.F2W(I# SƶWE4+6#!ু W*>A,GH5sJZbLisLÀ5 Y96 IFQTd:cY-RyV Y1_Wu@$)4}1H` AuwfYo dZQpn3"3a3MXc6eH߶U+eɶnYfSH>H=yšK{$">?A uCWYncWV mV8dA@s d  8I"W$TK羣 F-Rٞ e*g764`[,A4yeaOt- f@ Ci+~#xK*g{cdIsرٗq'*dw#Zjv=~KGTd`^>?1yd{KfFq! f& ȫL)fa۬#??ƖdS6zHVL#_F~zߓwȼi?g2+Ng> fDZT ax`S||JU]bǿ0 IV|f1=?>\e)Y79_>`"N77#)m;nnn+tˌ6n\8^zKT1@g8N I`C<.ƅ_?}De /L  $UNk*0J 7<;_i'~?-eSsťP*2) :8bi^g z[ڞt~Dc`8Δi4[LyȯcOg'2H L|pI} df.3|q%ۀe6Wq 2s4ިk0ES\RhmJv͊ ˇx_LJ0KkFTӍ-()U],IAv6Xg2KcK%Z1 -J8nmU"|lLOrHIRl8R:Σbh̗y8,3)7sˏ?~ux32`EM -eD; "eGya %= }"M^zˏtc=Լ?ypRbCBw_`mGfjyzOQ %,y =L"3ډz[~}Mj* =`2\>=lQ"agj/8/!\sIjXg9FђD(*>N/(gp_T!DGzm EY`;יS\kUBQW4O&yf )%ӵif#\wy-K{!!/2;h@Z) b!J2:E9N|{)Jl!B,ơҜWo@ i|q%j|.90gy;R*_g_rv1|xe1(b#n^Np!2bWι2kq =Ơs4Efww飜 .b[CI"+"pKilJ:Ȑh!eٹR{D;v&5)JF& +x.TeQ'aƁ BYWBI7h 4bz8)V5"ˣ;(rޑ9fF~f_( nI$Siti ӌR,fnjܾ+tZa3!GOB2GIuUo M/5IHa IZٜ[fXx.,6ٝ `.WU d/]?8,3\e?OHoi,e._^h7d&͆ slonY4e\fgR')&Vg8AT92#dApbސg9_rM //ϜGHsD mc[ZvkQd~98,*Ef5%5ZR)(䓡T vuUDT4!! ù%EAQ }Rd)Ր'R1k^r9Y5 IA*-S%!MSlV<#~t)`'Pi#AXVaYLd^ [R"9`SX5"H겎jDӞPZbe<Rk<@gfHV[zq8k^] | šB憩7_D~ٞ;zE%넧D73;rGۉ1@;~oL8,HXHSo?#_p~-:o7Ǹ<4%"cLixxf_K`1dU2g7Jfp abYpoYU) 2 ?}"$157VZoXg)fZNa@{YoW̗0g%YUsGnxk lE 5D+0b)org.S^('l ͊+.ϟ.!q:~p9ԬStF&',`o-nPUEY1+Ia[y32 FUt>b3{Nq* fnEΧGp˺ctV75/b.Y0\fֲ$'vEE;o̤*a !蔼h5nK' bRHoo>HfatIѼۛWMJF 'r^^I)2i{RV(;;IMZ3~>Sr-=~_hr"]ʌ T8 Nqhg8X 2(4'*2fG"%yY[NRylZ{pAj8ЬVXp9m&GLn&˔5PzK{9蜢m-rV4egoJK&2V57yF4Ms ~z!**alޒRՉPڥ 4cfVYʦҌ٤9$e&>]&΢xlp߯0}Ow9>L{Np9<=08>y|/Țdec6IfWS c&$C wh ,=[Y?<yWԫU$iA0E@zFoV*f9QB{1z-/F~:c BMaZi4M_!tKaa,Xu@|}ƿ["@)n_2Z4-sHVyo8)_1 ݫN7kB?_Pl\osv9P!IA >06dd\ ^Zr5arv85S?Dӑe\@x?a//Y.6\,x<#r`<fgYUX9iR&9Sސg9fXf]ʂ/cR%9ZAQEIUULfzyp ],HN&$A7!P9ERHW\@@YIZ1;Уf^yT/\LC~G^hԘyFJ֑QYyL:I[lqHhi ^w$,>޼~ϫWo5Ϗ'^=7woXe găXh]p8Ɋf†jh{qc)L82<2'Eϗ3#1yV1wsp(*V*0`f\BBsឬ1֣A&q}~9M [IV5 $#DLdHX.|C7{|Ya L"h%05,vt<,29˱s~v&/JT $J):3M=#[+6KK7I:NPnYfu%8VLnfK^h.Q+RI VE+&Vww||yAncse ?ǘa! ,-a.w,_#3mWH-9OA%)K.nwa¦(igniBPtQcБF*nwO{{:m [_μD4B8$YMVWdEf#2Z[l X6729i*䮡Q%~7eŲxө'ۆu)Tanۆ|^Ȧs M8zEhp A-${g^JL?l7xznokZS&6ҢVp8l}K3Fk1!7iMf DUפYΥmqqYYq>=iPBD(cR.Fi`h,p i!a>pspa SKg+\HX\ 5BSKf ~H?o헟iOvq#vdHO_pUT,Ȼ|:"D.6 L⤢ib<pQd(xB _ĹI҄!JfyIfQtmKFkHA0zc⹮R3ϬV+i/gI*O)W*ӠLj:Ve2LP4'UN ^N~^7ےHqa` 'aF *#!٥~騵p|B|/~tl.XU22z[NJb$8.=~{t]ƇȻ/x*'׏/,8 mp)5h8΄~nC]ylN*4-8\""}_'u&':X}ڨڄ7 sa"')0IBi9ȋq,,KLg uy) ̮rf83!Tl!~bI"Wr;RBcc'D\-%JY{>_@ZD}ͿɬmxwwsCX& .3M@ژq!774-y$Ӝ,͢\iBkfFn!M3r/8Ot]s>~]R0Õ@_{f1EUubc^5on"^+.cPB^ g~NTDbzӑ'y)4y~B%)tGa"]0A^֤\PNޣ˄ǧ i^Qo'lT^7y:s-,㥿P銛o~ gq͆4"3anU1nYûTun=0'8xpѿ@BKg9I6R5SO<ԓYH`U`{Mk7# n֍SkbO#ͫ=9.'}lg6zf\0f& 7-L}O mݪb:C9ۦ9XI h0hIr|؀*@ {\"@aC/vw|.e[Y$mUhGZ y`}+Η i~j,nG&G4P rUp8ج*lۑfE4) YDjyI4Ӊ4La9\Z7,P5HpD{jIS@?ZެIngo| x8lo~Ǵl<]mȴr@jNH.0AevBah+w/ /JWc ~,8#2LdYƪ*e*jtpnOLÀ3 uQblje6U4 }KYea@ޒL-J!P)*X3c7`+&n jp4Dh-R֫5Ɩ5/'8cb4J"i:Vk~ěD - Ǘ&1vsϺ. ՞Ag}reUf ߿D .ٞ25 l=o_ݢ4/i+CUhF 5WWBfXJc'8Bx N"'α@z0//l/{eL h54MD|(2dY]Q&0Β9C^!E\E8Gze F1_C//12TR"t6B} ">!\eUeQXoEhuL)^~cWi㿛vz BdR<μy ]۲ۮ OOi*RlWkq`o8^(7I9Z+s^ '46H˲Ǐ_CȲ,Ig\hr8!R&mp;Ra[P hEd*9Q,cZqZǕliG Pc:Ρ)v6*F'XqAA*$dlev/%wtvfp մaQ9viÚuhMV2Lh8qD^OAԑ$HVġ=c xA5, L#fpR-Z PulvTeL%B\GbcۓbDdy ؅:XC(EYU)l釖.pNзV'Yb$(MݐHAmEQe9nnIć5>|>=s7:Ӽ0͆o9GKO2)" w?|~;uX7 eUL c0 <>>s:˚i`isT ͦaZfkǑ}Um{E8 L < Ho pK|hw/bk?DX(POqt>-}'ֈd uY)pB'%G&4,1x=n EI2ɤFσc^fھgnhsPѿ")ha>=qUFfn0dsg枛7{Tg$B̹=hxߣ`/'jyޔDQ<<` @#!Nr69^bA2ǧ ݱM]DVa#˅fK]D-Á?8nK-W\*>'O/<eYS1_xP5?%,>||P63zمexxw~ӧ3]?si[H$]{@4Ifϫo6̘H&aNx{…h~==3 /^3k)$т,7f NGL;3 8YȺhH(oe&9ϤUS{GN~%`gEXf2-0)alXW5j6%=E"y<>3x8Pd%y^6E0O?/ȄNY!p|Åo}lu:Mf3{ow;tpuEU(_}E ba~a ;ϟikr9IFk˙!r@ 3^c͌MWLxО.r.U84uz}] 4,.,EL4AEv혻 MMy/1G@xg5kw)2,fƎ[ܶp:џ<'·B*VHEi\((\:-Xm *%2v9=f4f -e*K؝.glד It0M4s<94%MJ$,!oJ L?-nEɶ'j=IW5l0ǁғ)VxВɎW݁S;yY8Xܾył8)U;c29iphK{oO8kWHg&^IOpjq^0 Yz@'K{?"ʎZVcLJ';nnnI>b|;XU%zKcͦ`/f)?mE 2#u kU E4c hRR2O3eQaft)+~L3ٮ:efVm3)嚺n$ Y?tqb-I񑧶W |d& MʹHC#LcTep <$SO*`nܵ|~<t! Gˬ=4|iP|A9/A;XR)r:| CxIxSWv[w;E3Tw|b8[,K!/+|Ϥ#降trjI$2x)8yS{2l;iRP7 [z - IB q$A RaL_D"/X}i%N I˲|ɡ6bGb f1iJߏ-8x+2/,Q!WnsMӄJՑ֚a_Y!k(N _&"ȯm/a]1D%4uMz}|8yP_Ms}}<, idxOGu,.Z酈h ˉ<"KfcF-yQ`R4(l&:Rjn H!yRQZc2[a4ʂ$`#y Պe1BfꞗgLۢBÇ恢" i /w!2YF40YȄx:M9v{n6 ŪFɔmYQ#xl؆53eXivo<3׼>~"K-r{N ɪa˅Î9Yۛ||ȪZ#B4Ls J~ae<T1/$dyz-"9]FKfYoo1^𗏏"&~x}" -wn+eNKג|hVM`&ˁ BRm"rsopb,Ht3L4-w߾!ۏ4e2dpB#eǏHEl:cG ^yժfUKߣ* t!U+ rF|Sn2sO: lw˿nh̤5drt<>~[yIx;/ytoo놟?tgd7ov->x>$ybzpH%o5"=SP9hz^~˻RoXo›7q~x:<8Ury,2_yr@%KFAX" !r&0o| +}_,uUWWO}v\Z??n9[ŖCVz`n˷[n^\qV\*/&ARsn5~]<(Y/>2s$eaJd0R5WÉX9lj5%)V+jt¾8>cpoNqz-[C+}A6oǖ6,:xnt2H*z5LjG&x$ 3 dfBO\ZLO.+gݓYAa؟&E) gF.&ϸ?}y)x|'*L~r} 힠xW"eez@F"g{Ʊ{?Ou#hCd FVsĦ~ч0}NA$x^&1$t<&1(uQNS ]7-߁=(]=(5e%{'ڻcնSɛ@$4mԚC`Cd{8i>,Jb1&EICU.wŏۻD MSt]KjD CI|w )Ir:Ҕ#4!{23kzZIԠZ#HyH3Tvnw9€qbdK-qB4RRHer@Gp!%B ETSB)S ILN>XwD/0hL1zN%vx;9{d d< $N1>3 U4bř1TSĈ,AH!2n"DҐ3Dd&eR$P()pH  n1)6FNd sTmIWL#&ء%cr\PoޒHI\`fJ=5+Jg(o-P:yRm}$MZi' e I#gH T$V; ?XPٜ${0*eZD!Zf,0N%J2ځaV0ZtÆ-}}@Z)g31tÀj4ŘQ<~Qfi35/IHH9u@^N+wF,g;ψ2 IF\es2aYVbLbuNZMF<'9컆яt>)xI΋WX. /s~7w( oo_ӷ !r9ЍJFvr$(jYbTqq8 O=aIszE<l_SAxXT PB(nV3FLahRH8 솆nH! WHp: 88چK(IB1v-<9+%Q|yoX.}q ?hEXHpY} 0ٚB#~h1slgbIg,W8E K4C8#12l[ -#.Z EoGJ) \9ciRn7')>>% iH>>}A%=bf|p\>[-cOxp}I>c\R/pՌ6JIǬϘTHv()-*.09: M^-H)꫔0#!T,gZQ#[kxsxS͚2Yjv=G h4+B:q|՜1B[cG?BX>>p9߼f-25dy;Y%Lɖ%ˋ%c=X#j`HgX|2p:CFM '4GDߣf~}Cy_P<1\}r0 e9yLJ~X7La C8}Jẞ9qǎ>1: ZAQm[DE)QFdbn0Z"e.˲ /4vD5/hn-i"Duw8a*ʼn8Se} I3D!Uʫ[8H!)Ml6r1烫780>lqGӵ,Þ:$2,t`śSP4H}jITJH  5JM )"N͡'HRdB AHI^eάIPY2=8'%?䓉5gm0 v'R3s5|rNq^UlOzy7IfTԇ#|t>g%خ1`rDń%Yʬ4 I( >9 u=]O^xQi\/9ty;KqQ @R3.3C7v#oIe KP\-B'R,rV؜"N1i~Zȓ{$E(tBT#lKJt}ccM3"9_ڇ0ՂPR%Ty4K@JM>7< 4\|DԴ{'SaHFY>~6gFxnB1[U0ϫi#b$ a# ThS \Aaj{XOj W>NOȗG8xR܈\5 Ǟ<}2qn#'FlOdBzǻ Q87EF}p OYcpccp#w8v!5-v8=\ 4M5:x&ji$Cc(!"J SF((s%3 #zogd䔪3[D?Ŗ'R # y!f\YE1yxK׷4#*I iHB|r8XN" Q990G<]sQ(ԤI[O+i?!b& dYO"Dӄ)uHIr$ś /KtZA)QIx:`*+AMʼvD)Bŀk5h1R3eEA;n4,sL4)Y)`s*Q"G$DH&>fdixX Z|w¹B%uu EAF~()"HDFOd fZIHeIk=)# .:"! DiVS p(>]$>8JO/8Pd9:/H`h&erzJO(F~dY:q$aA(M􎱟`2zӖzD }sd|)! aBIhe0N`t UJtMO~z-[v-h9y4fZ!"?zZ xjjX]KZ&l8$-Q|$=YUTĪ̩R`-E{o}rbI%{eU#ib#*Lp|\ޜrC*޼# /|f^5q,jՌ@w|ODas>|xs2Ġ1:qvs4 RO/[ej>9ƞCױ|QM@h۷A *%'nVmGRQ}"%-rdg3d=CHG;~DZf8f\GYUYEўdfFgƑqt-cŖCw$q%?Le{dW,.!v e¶ْtV0HL gY1:3Ls# b~v8אf1Vo^q<<|_,o>rH5?<:n<{"2kCOk#Y2cl,V9I9I\=2<_a\W9G/G=1*cLbFG ;Vs#UYm| UXVEyFbΙ2-2ad!M=cR onOl^mO<>r*q]Cb m QkBSJ~@AHG*mݖ$MbfMh]`:om 3:jb=&//dj0sz(f tZ9Q#lď΍{d>Dmzhc6~lN=Mg'~=~pk]rNgEy_Hs)䟼='UoG.b0WUƲLXQe 'uG=94<ɰ}K$Z!dbNx5SG(%2X2)!%y~g~tlR+{Nus4cE@<}`l#+H7>10tө٩0  ۏ>%fwEqOnRdž<[ a/_SU3<勤Lw0N+ رg)4c2..C_4AdZՉBgԚ, 53SQTH|a޹8m1럙'WYV8fl͆ ;ʲ$2~Zs2a6[f"df—87q`zlGL'1 ?"B  $νkH1` q14z} | c)~HZK,[#R,Kr*[ PYS6wQɽdJ &'ϱ>mNQ ~o5ItpTjr6c88',e>\S~rk%IB^=MWӏV]*9Xl Mi~rFIX5St &4rh݄揾x&ޢ F<λw $ 0HSJZIRAmIJg$Y5 R%E#s-=A#$'?юG-y("ϖ9$C%9rݣzwp~8)i2uJ؝LH++(kP4<g)ᰣ폈"Q`wx񋗔JI, B`em8隞?c{O! %SV.PI2Œi%AXJbr? 8,B2ԩ tY; k?0啅%Jw5d$F EbILdՂrc4)<yF95Y҆>!縻%a1)*/pʧʤ'wj9#Qqغ!ˋ5~ ?`ŜHelMgOLl6Gcʒ!5Jq:vHҔY5Ǩ%BD ӌw-&G ì\unUV2QfbUM%w] URp9wSC_|o)Un.dՊ ~Ͽ۰.P%YYѴ Ws>|"ȵa-&Y/ d#nHT􏏔ɒl9K.-]K`Nu:N5j#iR0}d^d.<+fWcl==Gc30_Hg};06#?)+q9EkQ2rvy)31a 4fNQHp~ AItZQ,JӑosFTga )-Ѽ~:zR$)W7(rxߏ W3Bs݆V$,rDOϦ拜7jΘ> fӌ>ï~Fg\}|C3v(cȖg̯!Q7tԖ MG(($1 ,gFO/}lU ٳkvrR]r9?޳. gy|IVU<(W真_zn>xF'ْ~iE(Ɓc~)䀩OG)zqmH\?`GT&4XҲ`5p}sCTZf]<?1,_#h'7kZ EB^p}sM.4]O$3 5,2o ry~IXHxꎘ(j`?{@b |t9o Iy$!-8 F>[ZDCNw7|'đ>ɹ4=岢r6Ǥ|zeTϟUTgȋ(s}& cjՏ*\%gG.9ɨIʒ"ы'7*Ђ_]dT/.fxU:gsM8PjA%; jM:;GJQIJi`{?diB Cb}F^+onH '͈ZD(H$Ha2ELJ BJd^й7$Ek/8mg eŪO8*/&swx|xiI$PW'1Nsl;..uGfYA"EVcD1T(>\33P,Պ,,-GɟщFEߴv Xb`X2 2Ԅ4NH8kU%ZJ+~OEEWdyNOl%%?4?v,E9CS](6z`~3rL[p@%xsLVl9#\ʔOQEQZxg˜eEf-*b ƁK8K<t 9)^_z۠f If?[r.OjrIumyi{jPƒ Ib4|($=̦ t&U N(Y21z~FtL c7%7.7Hgc^szv,3k qw$ l|XE!/0y',?\b ?HPO?H <{2XIP&Kw5'A9{sf8/i!I"0_0yN>:lů27Jk$LiL$Ơr24i(Vz'ww,!޻?G~4c{qYc!N>9T5=qyqM4ϧR !z,%s,C*ciR{ό焘j3J5GR 1]%z2xd'CA?[ g- -~2(Lw2 y>F!HI4mR2!8lƟ?g^STIɲlB=r ^4ZS$8OfD877'̌RS̿y)usbLN|(&G6 R)#IbH$ zB?sԶ F$s(i|"gtݓ O֟ &y?Xk-*b6'iG8RYPH!cHغELj0<მ%2Aמ]pkJ>\Ϙ0Ibף%%JOdCHLj0zr8X\ tT}4 5;?W)GdVtB^y(Ch;D$&$ƍƏItb7X@eu $SJufR0 :NMͩmHS; q$Xɕ' XTDg!|D>b]G%DX?OyCbdIE0INQHҒXBe 4Y^%CX۞~ SCK}ܳ{˿яUzk84h-qH$%5&IikIbZ  mK;tD:R,g3C#u }G _ Ofxl߳=xKfzŇ`c{Ϭ1[L9泊$ՄH5tmLTG~oW~oK -r (f~?c=#9 56yƋoh*<14%臞atk7Q2Z aiRsZGKԌd匋DټГRhRF{9[QD~>B!1^hY%4k ä L2 }ȟ Sam_a-=YErW0t:K@gwOR4#K^Q4mZ]stY>=Oo|D49\a#ݾa/pZsEZHSL*adaR$)0w {8Q ~r]X9ql:NMC4->?z}Oל(K;o>9Z C,˸o/qsYU,qT±=JL1FG-/ ή/h/_ݓ 9GGƫ fLc5gN0vLsj; YƱi>Q:=8)aO{<(MUUWϱ!"6yL5=S0_6i;(!XMIfU큾i:r;e"RϾkl#^9O5[C)C93-0bSjXsw/o2%/f|-mI{՚5Zy<5< mQHw춏 ux»gfwk6H.1yAG`z -YY-anϪLI݉:\;EyuU7^-g8mtX1phq-7$أ CH5,Rb)Ȫ(WO?4Ϯ4T! LFTiO 3+ GDsldEI H{$_el6oPNYAl6l[_Nq7N^qmED?[$1xNβjc0p|rvw$aC7vm:ݟ[IFک9i[2H~`Vdi4в = 872N#whoqg_aO ~1X$I9}Ed:a 3B v *I۷b֌mGA*()?M)4]h `Ҝ%2RdG@[ԉ #_$w{j9_i5z4'GQHI0r{5P*5?2Wp >:̊z]9PBWoHPH2[1_ iB;#ʑe,I98nyomjg)e zd>2X0ZfZGE ["OS)ȵ(6$2Ⓤf3#k4~LZ ,f \ 2h=0R$r˯l[mx1@_ (fU^ң=ٞZV{r4( ))X%Q&~|/M/ef2 bI @dF;wՔQ@Zⴝw:i;=4RJ4m DC"?qB 8 @$t]͛~ }y&S?S (@ |x #I2Q,IB` ԼD$i1IS,O?; '`|'T)I bi<rMxB(^i+ضF/g҂MӀ]){ Obtb|5mCMmDF"C?y$@LwioS{ݻi(;&v20$9:IvW$tJ=L)5Ch֡Oe`Ҡ;&tKEȳ?NcW=aH-H+=T2cH ea4,M \(~H hqsfxܷ!Q :ܟNĨ8zC?0Џ4e$씛UO/d 'J 2x0:aRbA%lN{aZ;0Dddf|$0tS4ɧGDj.! @$Do%@g%ƛc,Mpn$?51ƀ 4h3 !<MRaiێgQ =Qݑ4$UN5xw:K8lԬ3\]]4GdiN}Seiz`Uf*n:$)S(XfiOvbdcE㡥Ζ %۷o"!(0Gxq?*KacdI0ׯߐHJZ.g+vpXahFG p^ Hó՜(<ݖO?o߾hPiAs8PIϦhH}Ʒg׼yyRf9pycY ͉|4i!]OkYrYJUG=c?pwWn /\?;՘BTqo1ҚHَSS||ɳv2DsjFrgxlIXSO4uPQB|'⽥fPO<:a\a:(8䳒>\^oNo.h }S*Jg^@}j((R!7 SdhtqZ1<}OvqA Nq`۲Z4uϢLq /2fUFQ4O{!I e=9-/>|P qO i^Η;=Bp=|݁=R$3@K$Axzb{:qZSDr}s ÎRłnC"FFgJ!IVPBN VOi!֎ }sl`B̋t,!đB x7IZ2\Tf)$4]za{@'<{dkFksjVr18=w$ؚ}ɔz()2H MvǗk|sgW\?[;q}a۟X,45JyQ9RzV˂zlpV$%gW ՂD[{|=yCF;Z,ܘIKS8)c)[py^J3dnȯV~djEgn6+PZ%С=)4#*22g9@ۡG%ܾaq}91% 1rwj^#VScԊccdi/Isn]7Q]k@={cIG{b,#S)F]gt_!d\s8*fk)f&ēH! {jPYMq|^q#T6w26m޻4zGPSI}bfY\EB ;'6T$$2N|^`hEMms fbaȳ^-_|"#% x"3c5=bwؠx4I .p=g I zՊp9+ɴ ;g%B)޴5EE$YFRjVc'$sŚ۲(h Ertcl>2D:K 28"`Nh#"Tғ@axKIku\U)>FIŽF8thrRw3(8t'"(Ow#%~dٚ$&%}@eAl-agdr-xQ1☟ǎ^ޱ,<6DU2nk2)5e~ 4X֫zOu9 YU@&)sֲ4c)C֊ݳΉ1!Ki9G-8OF;-J4&O5X H"$@;7N !L`v&ב$ͧ8Z>&JĤ cK5|i'wTAkW*\]scN޵tCPcC8p*yJpCK(Rc䣏(Q͗욚L3MC' vxȲu @)eb2l5 酯^0t= }T _#dduT~],HEθ{aA0WF:GGY;vOp^yxoj$ Lyv7R%iy_ўNPӎ٣ldfs(*FS҄S_89=pnb +l_~s6-̏H*FuGnzr 3 $]?2/JGj~@9z1%q'8-!0ݖ*єM8>n"$(pbn ́0)xvVFoVd$_S,F|$4v-Lm"7% 2큨=g }9GU9pHo/i:&^v`s[vq >#hzS}M/hhN8 wz.@^ vg{) <YBZL)VDcHSsD M s]aKRF9О0 8!\a"lwxqlVYlGb 7w;B!3E^e,9D%i܀HaT&%=Ҹq|$[l7^,Y-8;_ۇ-N@m3Sb72_!3,r#ժbvbӝhHYy8(N=/8[Wq2$sڇzZ~#Ib$SՂ/nĨY=N/o9xoIbrc#Ƕew8vTO1D[+b=`X)ۗiIonB|D-i=lI󧉑 &)5-!Q C9 x,_hBK3qYE4aG?vS}q8; xӉLxPPbjZ3:GYVf#: b?:K,bf=UVq:uG׏v'Ҹ&Qe]칾X)Eh5o`n+tRaqDw:=>ۣ G!|$Dj$EĈQ tὛPI| !L`';'M$wey OL-cGLst:y.rz"ȟ@Z1dY=Eo=EQPUՄOI'8}|/}~ai\I=!F,Z'nw;u "D)A-z_PbrFyO<J>a@s b$V9Y!Lä l;aHA1DRdiJ}j,+b<>? ~>?!i" _ǩi{oe fhpnI0LtL"͙('Dj\\!Xೣq"G9]:NҌ EEOfR$[P$C8FOJ,K @7zΪ9 hv6NXHyD̓kXUUYNyTrl@1:|!=P };"@tÎ`)o-FN !zqIPzjR)$zJT ?G4˱rF{:b퀒g{ mACܿyKg< 5Y4]øoɇ9ٚsiE($-}0 akv/)fmr !ٌalb<, )5 Վ-݈N &IX-WݜeQ\>>LL$%aH2+!T+%S# a{Om{qሮbM@`m{2)I"tMa,g\ 퉈'19>N(KGF)9>^xvpo˳5B ֫%1N+ٞf\]WWXyIY`9:Q*чG$M'@(RQ`#vciUU},ϱ C)mbQQ}nIbϺ\-W IR2DVU`lZ* r3D>)hC`>Tpub{d<)W(LJV)%>SO&W~{`qԼ}y=1K*ێ zY}!cbN/qh|suGh:ST%p"$ Z fg3ӞiX/%bz/;~`5|YQ&˹54pawԬ_Q. -Ka&% <Ҍ=yɴ#Be_ߐg~e4YQZRcc?nb^7>9900 YB"j|`yQJip[Qsq~4fI$ggv[z(Ś8zvŒ E|ŷu"9_Ptֳ;W_0s30~Ʒf b@ZP`QQbDcR`Zrg7d8ftѱXiN?Xf痸ÅlxC}Z9LJ-:Iȥ ɲH#H5,M)+Mnhi%z2=ct=]}bldQyB>0XI %y5Þjhy~iGG5A}:m@g9c=iT9!$pr|ܱKcD>5YF'2gVYB/Α!A0fT4@ Xݫ{Ɍz{uI4pDڶ%KVWs~M{"W Ny$s^>nB"9u!#94G- F%dFo[, ɋ%(%i%/K͉Ւ2+}E9MSs\Mד5*(t|>|ډI(挣GU,Ieibaʍۥ,iUuU0 d4)\jLC7"C>sSS35k-Q8=1T,gxU|uےÚ(&QҐN0 JSMtCL2RM܉p #Im;$sF:2LLHX% Ȼ㣤H+DX;+> gi]"+XVlקG;:Ѵ,Pq!LbI5:OqrQqGvе*Iq8 ,Fk&Rŧ_(ozO[p\gszeٛȲZ\x㋿fCJE?HUT\3!Ud[!CB|ocmfB()R >xP +oVH L X939NJq&Gȴ[2 fD$J; bӰYhW+]MOL]*P,/vEv<}fS7r_< ssT 4v/Jit&*yոi`FA'`>c44[ "Ihǁ09`G34\@@tBг\a(\T m~vD3^zFkILk|6 !Ah)5DGg b!4ьӷrC"So|+@ 5qD Sth[ѢH!x}yF+E<8"=IpuwtD]ˁ;&,Ed1~lG\8@\ Ľ\@VN쮮|K}d:ؒ9MSs>HLv68GOC( 7L \b#jĺm MĨ am}e^O$(dZ)?c;2-e EźO'B?˜EQbێ3XS >ȿgŖwv<}zeUwoٯ ;Ltȩ.̈p:|~zz=Ztn`03Ww7fiLiȍr8ohc {({d^0g/$ @cCZN],7t!}Go.#xsUbr >|Bov$$Z~@jofKւnO$3\uGdUan`YhLr\aӅ-JzԬ GΘnŧ 4){|@}ЇbuZѝu]|:;>==S[Nƺ2Ʉ陠$Y"U,%3nlyws}&MS/슜"y96঎/OGx8_{#=W2zUAxxyK6nIabq]F[>9U/=2͹5#N;Z#ƚ߼7i dG4҆uy$IΗ'MRtH+q0RnZDC3 d+b |:ʜH.fIuInrhRP.nք0xz\.d(,R3+NbB'bp_pUJ`JÞ*32%?u QǑ"%O ~cP"Z <^Hd`{4(PG#$&8LjE"_XH=5Ss4̖)g_ "/zw+4᧿3Bm„ $&5)Wܩ"1ϰbt a$O tY2a]mhK &fADAD.'&*HnCx-xd*VT\3gt8?zx!@<7!FNNǎn 'zڡ'@;ޓy+(H3t͑"9_*aGk"M19TScH S"++a$Kw0qGe&Hm$OOi3ÉaX7]z(^JTpG'Ul_r1`l^@'$YI{ ()&S8_Xq9h:I$2tCԼn,W)4j Gz(l3K}fPfff9>xI`[|h󜜚iZJ(X%Y6zvq~a=>opsx+zps!#uNo7W(ӳ#RHh-7jHӂ<xUgÄf3s0N4mz%")I+ϋbF\ނHf[R;9C ,007EYw$=6ȳhf J9:u39ʲ19;-X_ݠ2MKqpկD7e)*ȫ5ILR2vbPRc7ǣk`QoN!m_3ѣRT!p!Gd[$E v}B),"'4!0(d)J87,,{]Pk4C'S+=:14Ae {B0rneK$xx@I"ڰ *ƞ$Mv#wvO7\ݲXr_Zi4gZo)YT }KQd2R)@<5<?|rbдv P^НkRm׌^./riyz|L}wҊl,#5ʇ{1Npi[8 OKk]OHaNo$|h ƱEEM;v(SN~Y& ;6E6'rBDI!$FFB'e0H a֔Ś8{Oܒ\04ņ|yOܓg2K1b%R 3;]2yFY%3Љ7!Xa}|fASzc ,wBӳKr$ceL0]'I&U(#Y 2߼nC^anGh7{=pd'E +hOKkk̠˒$-6+jˢQRXn2EA4:7+׷\\aG/'NE鄦;\б299MIUVj͗jQE*p|}+~d[-EsX&jQ. TdOmbW.-vXV9~HMz;g&p&Hs<0)xO#.8IY(Q ֡YN:Gܔ++>?_c雑*|zOyYE Ǝ݊4ӌQ6DӜk6*%5a'\aZxZfC2YJk^ږ~Zf'JX\|*v&bV5VIRY%u( 1C4Ea5N-05( >դYI,/lj|D QJCXӷ3]~碧ޒRh.O<~ydÇy&T'CKE"wSQ.xœvtHbåhZUF^):J~n.,'Ӂծ$-47ˊT$ҕfUed1R*? 4 hc[nD I4"O#C(M0R 'ZhC!:zу:ij(A:6i}Gf$uWǀ5}y8^P@$(2˳,ck4X|y4AG.Ä%Q wcb$]䘅b<"I$JO_R/5qIksF mMeRvIN >76 |n-_ah=7'JI7Xe( :;'0wo ⭵O~k{G_ cר/◐5Z_4RΉrc,n1G X;gmGJ&1gto7Lۜe1q197"4b$.)ɲ .ouwA@[pbR#I #Վ۫;,Ǐ#ne$/R]3 BThIIp=&8?vk&o1FaewsK`NWB V 6DdF&JcGZэ3=MS_1Z`'>_6 /_>sUer>??= ;GՊ9p< i= 7N|x -SDl˩>,+\|y9U?~5݆( >-iyToݒe G=Rf R" ?z"ez$ I͍b! 4TYU2Xr$81@sTIo߽c-W\zK=8Ըb$HɻwwY| Shi nɪ 3=pZԨ`vw,75rIP)2!ϯtE:"05TK@ t\.ϸƶϼ蝠A+Sl91zG'V(u BO'cs*r>?4FOX/?yR^%wL~XѐˌU^\N3}7 o<_o'{xv?^`%=[N`H;ҏO b5߳y#\!5bF0|86<^F'c*F 3Ɛ2ta2tFv >ϟyt3 H81hGl#Ɩ|n2-p@siKQEBV%Z"74)0*[R;#f1҄<b[Tg1vfxiTAGbӠ9iU!Aon6['LHRe1/rG4 EZ`& u7j=W/V;g?T_oQdE. FwYp%)eZ"u©1L=.bd>|ZU,D傺kxyyw,f"Kͧ'D{|F,=}#P9c$L=MOjzU쩻>؁q}q0uX DBF;ss@"(y'FwaDmڑ|4Mm4 3a Dj)VETù pnBx`^Qdkz) dk^Θh^ja&93aGJq}2p-%NӉ/*N=i\[Yxh&ͷH Ip#Gsr 8MO9' 3WW1(5i*8Àu ~+RaZu,E{0JZyy<2D2j^.*.p`(oX *~}d{'RC^ RYp}Uέ߮vGtm =QjeW #$C2rn(E0t~~9záaǦ"e&taE AQ%ٯ"U0%wB` oxs xBt+[ V   qmQc=0}wdYRgWjn ;hqHmɳXlv9ĿjwfMJ4d$IMČ|{b8@( }3R7 0\xD 7Y=Bo$KǁnhZ@tc?o~EO@uE>y'f Y^ 3:58%؜JR,W̼v@e% ѓE4A)&qvBِe4/A lNyH{N_IDE|DHC׷4݌ ɤJ[m$̮\7gxC-%yAUVNd"2MH9NDpT8"Qi&qH<~3y9A;9iLhS]9P$|aǦLIvL6\zU^/~s+~:u|znRŚ tD̜:ZS-K󁾽`d;b[#E MJs͆lU|:&#&K Sw"IAІ$K 0"8o9H ҐS,V6LT5BJi9",%1 #I ɑ:_jJ9oI]LG(ISG3'3c0[ڑ#΅_kT$!]IY}Vsb7p8m4=dV3!z4ct>DH?L,V[b`S|0I(%cN3x m.q`((VI5C_HMy+Yf_? Jy*"`y1^^?rxºXp=FT |1-EbH B)~”)+THxxxzwZ8]Q}cYJ04=:bzV 7?iƥqUKKU\m6ll;pz~dX& ,o ,+Q$w{N ]4]GW_ t!0Y U*݇5׫6"#&%OO&{EP77 5fdlo8>3lD1>"GK"}r?=n$ 6wWLnB\g ذZZ&Ŗ)\lW'TFzSqzx9^{-vEM PCt"]W7Q)D"%51׮f bkOq8|ǫy[js$>3uLomG$M;u6n)eHheEYeg*W)T~aSjU~=Q-mIr=K}Bg<#/O {~ 1_\ƑD6r"g6Bf,$9TEǔsM]cBz6FDMku뙜%52#1כ O4bҒK?bG3;~j"Rra"׋@K$ܮ no7W쪊pơ# =bО),\`l'[_NT`_h&Ka^ϔ' )5sQh TC_$atXmFɓ)C&5SۣB ȋqco:UɪIr/O-apt/$e/lVK2)t-~ʈߵ`1ph TyB^fDt Kc'%E e`~-Fk$/ dobޥyzy eY#3EIB)*MI-'W>x!˥Ap~>pa @?vdE> J.ȟ?)14,ƱGX"7VBz3 \xk:v@@ $' 1B J՞<0Ɛ$\_qnfG^kH @yDSd~ϏdJck9D>t*( N@tfn r_V3D RH&CǗ}'r횅Lzlv˒B !Q;vx!p^s:i. dž0EɷMJCi"> D" C Re,thMP fta$2{&"b}kE4{3hYN̦_\[doo'4EY08^@)r|8vd^d YpFg92KٯWrd.$׷wTErs hY5 (&!H$%$h1\aU-);ڗ#\dquuE.S8ȪS 2Cɉx$W)ABݓoW[ mwFGd yQf9=Soy;z;%+#+0^.|I1HZO?¤)RXIDAT!h9B`,A'{I3 y!TJ2#CC\Sχ|aǧ>wMΦحͷ:Di놟 ^TgQ\,,W[D?c}"˗NATUna0:@ \B$<׏D{ǩ952O `zϯTvo?p-冡n n[4L [?{QU9Eq7tZ򻯾F 9 O/tv ZҾ}CTYʢ,qSoܢtYaX0 =0pቲ|{bH5udX,3HMHU`޲5a 3n@Fc,IX,8)C8 rn*+X$ j/\k `9+l|#N NZ^'$65ݚۛ=^v"˨O5sI Gɿҋ"ܬs bXdㅻ[|Ղ_7<a cxMo%CM3A2c\P)؁LBAp~ցLh(sK v-X]Ҿ< ]-0e fR )%yz:e4T( ]Bc ŦL,r<0ޓG;Loa:9_M9jQ$ 2O O ]z,o}f_-۲(s2g&H:VEA2'ڳi|a)rH3߷H)(~xuR]o;0ϗo?Sгݮ%!2OhH vx%8m[pI!K3(J'h4kӜu"S :JڦfAkK4Mb)m/$K 1LnNzêZ 2Ϗ_85gn9w5y|¥oJSh Haf|!ISr*J +lo4,2% 8!ZIW'40ZOW~dg,9,xwXSʉMV>y~Pv ]&,ȱNP r. b( \5+vKUHuE Iʀ tSOVU{&4ӂ\1/J4b,6pa[ ՚ ox}͆Lx[tvb$-)%u$ GFZQxkfR&)6 0f-WTRLRT(Ҕ$MҔ*/ȓD'ڠts9oHD)ZQZ5H"1 $ f`{$h RjIg0F(EAfb W<+( ޅ__g4(fYF$qĈWȅŬ,+n(b2K&xk|(!\=D ]RIj.(SWaOf3b{1iMӼ6ZA#:G3cʎ3ԝ;Yt`FCLk5K vo~onmo*s!1&$8Zf>$P3϶/*Ⲝe)7^;Z_@Hx?펛+L!%\o"^BRe޿+wc`^Qy~'2%r;%KSdb-7T<_| +×O4&VیFLFv$)ɧW^.5/C0!~3!ˈ:edص4&blwQz{fؼ٘;ph`WoD)|J^л9^؞.ņT6wlj]Z%M7ʰ"cFG-ȡr`<]{ kR $oRj餁Ej=OEI,%n2#]8zwMZ\m/dJr8_돜gꊤ̘:C?:Dvd/Mʃ)fL3[4ISA?\8Zxt|~ӥ,3D9>s9Y+>(V1(ʂ86رEdۛ=V4p]G[ A%l7iadYP$&ᎿzrB[_h?? ^I_OvgEǧjRT"X^{3xٙh4^K^>g2ǔ)]&2@4Ìdh/`%tn^H[$E/uxf!& <<.20mO߶tD2a=vC'Jk1h#?7$IB]״m@B`򁧦f2f]d,y&ZƮCe!]`[nxJϭY6 |@sip 58;w`C{1)}vY~a4MM7 \"`ld,Ot}aخ:%L"͑k'$#K\ L!A3[ۦA*źZɎZb,(4+1f,yay=|>\x<H_t3sdArw{2Dk.L!0rijBgAr[ΗtӁDV=gnSI$/_S1vR>0).灇?IÙhItrklX.ǚ8~o[0`#N#aZHBSȋҜDg84 ӳ>UiFI  "F)ibrjDrne > o,nC:73,@E541Fʲ$)E^|RHczsx籃7VYl-}̓z%i`Ga۵("LD7D;?9!%Moͳ"̜$ryk[O\L{i{OYoBlֈ!4-;lWkn{V%mbǑiVB?ɧ^Σ\.g!g(Dw#儐r=:;:0Z&\e3Ik Sp3(6 ~RJHnRYPoVb P(9_ؽ7"8~n"%`fHE"YsPdly͡DP{>~>r: uMW+z9q bH'|u(#R7$}-RR.&#;JۜCm]358=2eqwPڲX0՚(7wcU4͉t&Y_L=)9dt?1u'r`4EQ )tR %xg)  "J5JNsdͱ @d}av7{hh!8b?iVrbR Dョ,+T›(9NY/4Y:[S#q7(~d iX/rv; Hd$Z3>L{ z=/i-b(KTnv&8zfu\. M )ӂbURGO8`f F $eJv7OJ#@W;0݇k>/׬ٞo$ fK].5ΝȊt&o৉ D%wW$Zqsu3bbO3no=_y~=X?;JύNY\/Gb(˔U?}sM)>Q zιD)Ւi|>?HP:208d N5I\WKD#=ȒqL!e[ՊT+7€Tc YoG}|͸-")I8py}% RDi6#C}$IS} LHr$V'A8oAfbjv$:VblM 1\PK9O?Ƙx,>nKt.w` 4+;o;$fYrW||~eT;`/}fzˉ]U⛎4zS4/H"_\nY/IB.4 Y*Hg:Y;EGfD߽$AcӠ;rxzM'ݳP/rQq %//c&vc/ V+ɲ+3~W,D4g]K#W|XJbq7|wa4MQrJQ8*g(o+|k6:#LnPLd ;8^z(VkяlV͒(?|z{ZT72+G;r =j?~Kqb0I ]m8/o޳y1?111*T U,pQu*EUІi80YeQx~<β*B$#;·K6r8Xv%w_kIWWWyr oI-w4d!R$nG,3vo *P??]`E`U-RpwKw?W+a,RI#)o7YXW<%ך#WMr׵8;dʲbU3ZK B$,[&똺 wEw|w;TLS`Y=I+hE?1F]7o$^J Ҷ h( <#yRE"XO{gX6<%rD۵<>=1u]UqZpY\9 <<Ek\LP͊5ł/R#N'ZkrúZJM$+ 4qf-I8sջ9QܾOp:zad-LaDa0y>}~N o<Ӂ ?|w{mHH"3Q"Ƹ3v_OlfǦKx<<~{V$iB#,W%͊p^Tu)'N#JZP*a,RIL:r#KsڶGGo=mg7uq?68XWYF*$~8אm{b")Bم}è0J}R7L~4bd`*1ZrV-#$C&^B74dCd% :zzKdFv=Ja!G>?=pk,"4҃tZ,"Y9bgtd{H{$$@>3'8/ IҌ9Ʀf, 0 $UEI8Xk"8 {[J/\,!o PfJ*,ա}Uk YQ;IRoyΛ:!FAQmzG `T3(yV:&ČQREKSB3(~Ä ԧFœ"RoRVEzo$!C4M }j-0`qf_8ex1\H=[1YB$Zcbcy}9 AIͻwH%臞iq>p~$5r(-L'Iʪ|9ߘkɔ*xڷu|@D iRς%B\YKӔN3 y~@KGPX-~=n z-yoR3Z+ qA7hiM[wZH lcx'c !Pơ#I+.#W딴H9GI KfAjkX曅jM;mAgl3ik2% \L&˅$@IZgbOϐ% @GŖAF`ƒwؾmj2$ ʛkϯ( R I^*<7?~B戣$[9/@BCL 7u(eiF? Rp&sa|t&U:QwhR`xJ,vWC^7,ʹ.~k|dyh$:O<ǻ~z<͉@V.hQ˹%R@7hmXno(Ҝ>r{u >3_Ԃsp:7ؾk/ n+qڳ!aYhՔiIt {4wU"eB+(nj* kQ*2IFz:cAQGI 9RI٫'@w?nwe +ڎ'H\g׉?^zMpT?cdt/?\ 4RX; Zʦ, _ݚ#\^Uةcw{/# & zxy}"vO} s.uG3X,lNbRh-]I$֔b5m& '$,W|ߓ$EĹThCЏ'&/ 2cpH(m T*kO԰HWx Y=>N=URa+Q@9 q2bRM#֍% taO/%upÁnrˉvA'&P^'خ謣$paQy"l9>)4~#9s"7[Ou)ݻOϏ/#\$=H-4#tAZj dn^ v uד8 mDN(R_go,kp݄^‡{vK/nJlqCCQd gFMYLd", CpnͥקWv :>h.RWօf2iD7;}k|gy\c5vyi42SxV,tйsI 63,㽥HRʬt:jЌM,9Ñ8- O \}Ao~sov,!& ̩ʂɞVzZ{~xD:矟)}Ą bowԗ>De&eߒI<”qg2GWO~.i{$Id0'Ɣq @"1r9QL!d"z.u:Ύl cF\8&2HMrڰٲ8 $Vi~)UW|qsEʡ:fY, IfxFdeJ'-f$×G¥ž,I3 j]\hnHSЂWK?<<&&؁E1zO]9MELS䚨H߽xz >2p(Ou,K˂`k\t}4ΈpwcxjbO^.Lij:v fDL1bWJ%B8&;v( AH"{aGGRAC$@ ]IjFiYg"ftPq|y&#DWi {|X;V-X1FX.%IbZK<="D~d"nW\N3.Ī >az=e$KU2$QFZLВvXKBp-A9 bSċ!|D cBEuW o=Gy2M?IÁH%r0O& OVp,B=MIBQ$i>O*#.SϫaOyZDnǟx׼z{`[~sځQ(|?aYu/8WEK1MRp"m;К;&Hf&vyL[tAe'J0,HIJc':7}7ɱ0lE6hbaN0y=C (%VQd0 vbrmׂDTi$"?K@E1*"0s&;\3j@ H D3 $XB(t"t-Bb"ɗ(0 nl3yv@Z'B3o4!eeP/m_j~AJF;0C^)b%e3y&8s1sI`9ƻy,N#qR?RUGXQ qQ_:TPH/b/8<(#~(W(m3ضgr3q%1EVPISC7UDMp*ayӴ͎jlCG5q.s7چDJлŚvTn T# + :PZ_2^a[b՛Rq(ڕ٭nM|F_vO}7<_ݲStY ,100 IVX]1Y1vG9+k[%?uUǚժdYK#2AfwX~ltih y|z4Xds9+Vmg€Lllg' NU$ LZ8[!eL( ld"O3$]Lߝ1'Kfk0 X_Ämz0wY 1RH(W| h% 2 ˑ0V VH0qJ|AiMWۑ.@Ȃhi _n[mXnPi9;5_-8r,"@ ʩ#Ny>3T>z6C1Ą8B. 8caUY/V(5.%v/gʤ$Q+4%R;{.KcfRgmR/Oψh6%Sּ{4MN%&ʱcq[K,9:"ܵ9.HHRdؓ)F MI:!tQ8RAͼX  È'Hg-Zk69pՅSu&ݭɶW|Dߏ g ^-4Q-9mq8T(]Pk#vM!bvHO&Jp<jE&vCmOR/D&eh)#, "u_psn:np<$!Ol.ՙ*\ZCO,5@Usijd`X7bm#LP TCǩЎHtmmY ˈ8Dtihr89=#zb38]L5BzŒ$Ig_?0v=Jdh̅y#% 3k9 uu#^R(m۔N2H99֒f)ISqYGY?L4_Ro5)fO3#z10a-u2y7J<3 H!:|"2itd'i$ILo,=]"7{ DZnj(:O'0!̱~h9?H4-)̓v`GX,N,%eDEg D]Nوdqm1yP$I1I%ya}fs!(hdG&c,=m~_`%q#jeH#CbZ%c ;)Ca&d DE1QEg dHځ3" ķ=y$Laﮈ BKϏF3!5o0(2  v-ʄ{2R$`L4 :͉#,Ek.|hI^AHx|Wӟd:"[P:wbCS;g 0 D%iVE*:K4c^rM}!2 cJL!\@6AJ&u1ypJI5+V_ R =?SgWD!D;0 RsB=4O/UURwxg Ag%Ϸy;-$2IfΊ⯆k+f-(HvEu, ֫r֎NfN((ݽ~]eBK0!2MFDl!5 &NjMTh _:y 0{4#YL#Ѹń$-XpzI8O?=Issh(ˌk#e^L})ubC%|En 7 chI5ł$T:Q%Oɑ+n^v5wWP׌J!Ғv_T2خdJ℺m^\ln kXMg$s:>yb}9Id,ڤH0SG Nz~d=4Ș:A 5OCI|3Swoޢ)LMsr#aG4:OidžHi%2@)͖|GdpFXIėKCT,7MU'~b+#΃G)u:2t-"vGEM-n& G "8< er⸠>rMzE\BSPnW8ҀW676P7=7 rY.kf @R!ݫ7<ہ 4 ٓG)ě͆1&oɖ  ׯv2[v x8b]G*ա.5CT}z$-n_!"Mg,g pQaXb$JRn-eKzb[Jɥ&A1tW-*Ӣr9gVy&L`Rw eK{w6w̲oVr!?6 EQ+4EkM] G%y^]`XYZ0z!WnҌ8A D?#"/sTf! n> Y3Lh g+DEx1?A(2TeY!y&L}ς?,LLR$ڠED7sM.6ı"wB18ꌸ\~f^X ro`axǶEI8qH9x 㙺9'4.{ϟqn3߽fk(cEKE9iB;sۥڹ# $&IE=<2k ` ߵ,ѣf&%\Đ%3|0Q"RqDx=!QJRJxb=ɓF3+BJyӯguc &K.3oM},0܄dA Du1Młoя#UU)Ӊbb1?3 2?|nԴ<|³\H\DiDyu͗Ci$ |wW׏LŒDqD8:p\ =?U[n |GTᣌRq-`޾[szz#e|~"UܽE&<>t8n8\NϬ׷7||O}?N{rLg^h뚾9?8?yzs#YQCɄ7{,ƻǧ??0ѣY}i ȶܰ5.hڮjdB?[PƑv\FKd "(1Ɍ8-P&C0@HMf#8g87OdB4ݙIUdxpA1 eAxR%2le=88!FOU'& ӌf_?Q8&`9>?йQWpSeOZq/>xbOx-Oxi8gNGڪckMϾm56k6C1ݲ]LSO9_.tS]3ɇs]gRO<>{ KV  }OWc:f!4HWu6WT}|~D}A^4ME\42펮lnV $aJ\S-]?P%,wGELA[]S×KE"vQf]bT@.pd p*S=O"[AʈH'~:?SݰX.yH9x_r\ mq|>7fj w?.- 9>8YÞ}jb S~yG|q$HCK1 OOOEXDS\3ZGϿ;W I{&q{e\0:`G>}L;y剛WA][t̃xk,^s|Hp_Y& ZW}Kg.3ΒF2iD /tĨ fQ/N=R֬7k `fO?syzFzbA{im1H`gD!P5M#d@GLRsX:+֋yږqěUN}9s<<=Dܾw?Оr !N\$ bM5 .H`?`XA'DW͌E Y^ m۲\.qan8'fUжԗQfu{K(X]h3sKwY ~.D35Z,'͊4bҶH!K%nT퀌cDLgZ0R% _ ˉ^, sH!syۆ"m7yS0<>8n.m xTg49h3eYP%BHq"2 C0]Wc҂rUbjFT'/ ʲ$6$^87Hc3S;&|`Y.蚎"-vӞGnc D C~0ܥ!tq-F:Dtq9 7o-soג(T(XI#]o #AԎ~zfjF@nR$[-ڭX7hTBb%}KӴ|H}l/n_/1xx|/DD\ ˲ӿ?-=&+&v 3_eCnK':6-,{1v ebUQn2L8<(kʻ͆1>p>Y7(Nsc;1 oT',9!X9].=[6svu-YR %'YoH˒1Ě<z߿e(V }R2˙@s8#Bs8\:lI+P0u,fqg3s~-fQ*aFA7Y{gUPñIC*M)rIFiǎ8 Yؖ fQ!S1v)s&zCŎ;`Yd1G-c\KvPfQ3(bB#Ҵ N 7ëBZsU\›IR؀˙vtmH%^Bp.)"fʸ)u/QI8uba.TrHjh1ϟ?MDk,%+K?~! sn # MvBO`mT*1$j"M뙼(>@ksuG=\lH M0jlM#$:2~=U2ztZUDg4LhT#,{i8wW{nIѝ[(P\-S Xz 2r#<|9T7Yޢʜ(K4bh/Rdt˩r㈈"iԵyRLQ̤cq͂@$Ԋ("Iӄ,M_p 9O}_Msl&jD} Kꥉc'K7zn| R78K2q i6%} sFk~22sI_fk!g8/[r#nr/y9,{7_ ts6I)!&H!"Kr #MPd9!ՌiA"OsG޾zARk9=F-D"%9*Ɉ)OuCTx;@pz !LẏO%W7&xswCi|Q& " #k7[2-)bAE Y/IInbG̏BZxDIGPn(,8G,+S5pذ,| ϟLU2ָ.L2kG,J2ӇQL||ڟ-kV/3ǧhy>$wړ-8hH5'O&=H}Fj-~x`ympwi(VV0s}R~Z#l-3ˌ{A V)71FHdB)e& Y&|`EBlM^,6pܽa܈Pa %#226ՅlsE/1'yq'57ta'hqP@dE+`#x2"JcD ھgebRC+c^7DH~Dsp$sBUQ=R+B_H?II&y-m7p WD:tO͑vK.`H#';N#40=B $&518Xb%3Հ-$va4h;RG.e.mLs[;6]˿éj0rfC}KM?qYZL#K=<:;6| ^eF$,LI3(;[n 6ۜ$KDMjAZC;6Z{V˒T!mz~XtÀ?`O ΓlV/ `Qm< <@&IQBD,W&8d\Y-anK3ؖ ndJ i3G*9>a=F%'A0\,2\?OD8^2cbi]/cZ9=bmz~;rR)Fh@]עh& b;֑ArdSfuE:de1 OC!|9'GFֽq!ʠ2s ބv0P4@*||kFi=3NsY6 X2(7DiN.af:y 4$MS,g^niREgse݌±vB^1^(BfqNH5tMV33O3 $fF)$ϗ/{4baoI-5wk$Eu-6xhR@IN%sMh[[ɍd0%*S84l?,lʒO>[K?M,’%8,V+,R,B Έribû =L2Q9 gH:\}aOף(-gɢ`.?#T:c dlG(: MGlNl.0O#d` L{( H!)V87/&~!`_VB #o0i][ JjMDku5->(A̓޹|)|ruK,b8$+Jdn v;'MSƾv=qZk i$V(TR#gxx~::Ga ֱa88<|,K31qD|xBFNM#j$LQ,on[,y/HNg\.#CSۑlKLLٮ6$"4Ujs=rGbeb^UbFwcw&+ &ZW8/=׫_o޽.5=q1iLXw7׿_??#MDvqpn6Z)F=jrd ^Hha 901v";2抦PqLRBS Lvɕw;ơjKTD\j+i1L뉴l1EDHVu|ݻ'8e$DDW[VǖqD1yؐe }?Dm'~6D- 0=0& 1P ,ˉTJQ4^ ,sU[p8 Ci 2Ȋ%&ɘkAÄg&g{8bǖmpA}CC(1Yt=}3#lg]al`(M'ؖGL PQafh,SI/m橡Hi@HMEpRΖ!b ^Q/O8NQJQx/qS@Iϖy#gzj͡X&{iBuئ!7ѷVkCx8ȗH|>(sR/6</VpFz8I#ւڶˈ_>> &'H+KV(6wxXoKI;LJ3Y̧ilYp:麆s;|ɒp2)iL5F ~W%j4}C$IDwdse"pꖢXZ^͎;);),WRd|y]4h̢AX?뫂4q> e6k>>SU58O-cL*޳ԊDX'4t$bn ޏdq`)Y]@@l2xEQ,nhunP~D kWXe! AnG |?3/qNOD$+ QpTO%)23lB4 EP$_q[L#T_xs9,!Z!iZ)T-E.1LxϲI:,wzb/^v(+r*Dqp=0pwE.O}-xxSUٟkvwr Rx޼^㻿{ERru7quܔ(cX[!T N0Ţ" 6 >'%xOQ$BL&Ͽfw 1G2*6.smKn'~u617{ғ=_>AghjfYeCn ęk+ԗ3}s>4+>W"kqv#/S;,#Áe.N\F-zM?n17kls>_􉱩d8>Gs| y[ c H%Upftn>A4{rpb:NHMM/-B-ӹbH?Z$%o- XخX_Z3~a`#јP~&$. yFե-&8rU"%O byO^aȓ<֔IB]ՄQ=9v7y`GN "Ŏ=ȫ߿"_fnf"K]c'1*q4NL. ^kr $JaB&%E,6לks *g#Zn֔YJce1>>О9UGJ/ tD; 0 qaV0q~1j[_?lQ]r~$]z:` l;eZfqݡm'6nn*uM hv(.]`#f\{Y%^Ֆh Nvbl+muw&OFSv9P%"wŒfMC`sͰpusiDsui&bFVłX _DK6>831~$9\*F.v٭W,v+&#(0Y-SHE"KI$H94I"NӔjMqcs2Tx#n3KpBtÞ.e"6diFfޓ{8Nm6h7bF% 3}voHhښ<ɋ} !Q4ZGy CRI94R -dyA&{&yh-˙まPB2M\$MX (ի/O x{wM7A DB;tMEg<*Z($%h'OF^]dYiE"',Y1,iYf7Q=.WUcb N.JUIgTuGR,Qq9׸Apzzf/KMdfb%dJLBb.8j?#=bM)%K6Ŋm\I&# 1h\kB\ohi oo^Q蔿wc^(oL2"5o^?ǺqlxwzՆR͓r$ReIA4dYIb$F].by,fYSVsIJUBi6Ix{!Y"ws2JRb -l G 7/km5b((%!Y(J8fi08Y.u8s=ۡ!r~ ~nm! z-_aC/¹B o39L+<81ulfc1qf jK ?soDh C(Iumẃݥjӥ#2 @+ B%\vE>,[;YQY5(>H%٬$/QBaigv ~LvkIdh;Dqh"anr )_gi's@4͆8HA pFse7[V"C9GڞYyɽ#z!t=Mu:sdLCE{#‹,io=2Ԉ0oA&b\Ra>%C $RiE(jNbE@)0Aa R+#If4˹R|+/;0^)1 >9729$Q/(Î=e{f)=BH4sk4; M=ءDa6I\F1C?жu=o'6 ,kwH'-Ir:uGglĤeݖ[{>==4Ӟv~~4+y5_~,Ѣ@t"hT#,jv3grt?~`GzC5cOޢ㘫2ž%(=(cf),UAE uu+6%gΗ"K҈_|(T=w77<ؔ3pxrYEHLϿ|[M1 (.0!/ 0qܺT5o߾SQ%AZnv.|?nQ=_{tZ˂cӶ===Cף=!ƞD!`1yjhVp# <=MHN_F<4T&;g%!**noN:fUhq90B&f/qC{~KhlE"iO}x$4س|sx<'51?=|=:E ңEgnov Q4Ң)-~6Оefq"#$noLjSS]RnvNτhIbG%?&揿 eFډYڱJ>T G'>}~|=dBYeIn3 CG)r q"SCt߰_ r%Xdo?wXK&aiOv[Et&tɅ:lalZ5vC< 3 r jvL*Pq`=9P׿B'X_/12X6 "YO|:\,Nu4Hȱl6; ib]"cT3›73}_S.ׄi sv/;BUsu=#6vfxxz:|⻷;Z+ڢ/qOHf[pQji[l=4 u&ܘR[pjDDT>{1g]{c<*6u$i$M=37W0 D$縦(EH?8Lߎ7e`{tH IeZYS6XYjI;rӏOƐ%ChQY3C*azxXo_2O !fR!3$I %%:D|)GoE1DgJߛeC| K3a~]zjԆq !3dDq[E]ReA%F$<&H v`,#ie47ԛ-}t##$FH2)|{t1&e n"ՒK#NR  |`P4NJk{YkMi̋=Pw# Ątbn&ڠDHc/$A r~ gLHs }C B+1e0EM 0ץ/H$-2$24#CzyEś 2RJ̜nbe b<%h{J%)|5 $sҤ`r~⹟}jQYB(og@:@f7N-m7S?I/nTԎPܙWkno^!??fM.,W%SGDIjx:u,xϴ%Ĺr{2l[##E\nIXo RB`Yc4!:{&ZJC-Xk.dBYz\lnh( z !%;R1 L34 &IKXb݀P@|$S#cb crKƇx c2LVɃ Lӻ -Stš\\1I+7ln:9 3\R2MPU .͆q@+bq9 py! pV[|~b%OCoI Xɾi"zZZ$$g#Q%.Q.K)BOӎ_۹R#av<9Xd, 8[{v$i cK`') tYa꒛knk&fcD0\\Y ȻW[޿j{dTu3Zf;u%E ;7KE)Yg$J8uk޾!/5o\jxlDAF].(Ou onW<=|&w>,kVvٝ[ap&;<\{\\,xa O"PV+N#&Xo1&!)Hc#QI5vbsu+ַ8v9(?KYT˚ȩAcdB?v$IV뇏DvDP*ahGFH7EAU/yzxBd #(Ɖ2@X,\]a`5T2eh;{72CU,LP s]lOJ޳<N' 180W>=>񗏏gnx dy:G(a;sI&8YrwhvGLX]eDCGNm~@gkeb8u?ΑBY3`O}P./(IqD] %Ekn5E ZQ&MR!ib{ (z0FA+z{Eo=`垶qEU l7[0oy!R/_~y"\|w{K$ vhƀT*k\<D֛ E֊"Z'EEib')-v, $Ixٰ=Iܲ^,[{Iڐ R*̗Y!3_(*xz~y'-VϟZ`eNZbG2+h=՚rY,(+ֹf[VٰYg;~W3"a<~D!U&+ v?xshGV4oɵ3 IZ 7߽Ɨ?1=<`d\wooiNG8QNKVduۖp>IU`,=5) Av0n{?C{f?azC1 -',#GKYX5hV$HHӵ3\,W\larY3G8quTeW.jF?L|/85'UrQ\Hb)jLRS%A?Ir=G}vb|G"pˇO8j!K `M,FkW D-e"dzf1 jn4(AILQI:;#_>0swƉq~nvT0!8RPQh8 VQH0:E+)fVqҿc|ΧmsD 800 CFV%Պ*-Ɓq$]ni(K,Cp=߸8B[nٮh09:@+V();q}}CZcEt@y)B(M1.8#UZ( 879Jqnz{(v.(4_oKKXlY+PYQR1*08GEG-~Y,ntE© hQaޜ5gI;Yʬ@H}hl \JczM32vc+dۖbsq}sy"%= qbE][C84 YBO`F)bOE%7YJtY;[a"ya58MDW%yTj_a4@/6Qsˆɪ(f A"#v~I9/e2+/u> j8gV/#hgNIA(4 A&?2MCd5;,',4ZCHP/4d Ib(ʌ;ϖE]:Ʃc Ĭ{?c8s:6Lt6ERU8R֗7\\FI^.ėOlj#y9}@ݞ<2<ɘ#&V P ?ȍ|?~}=z;G[b ,\6'Wx,B O r1|z;u }cW5 Ŗ4|n2ğ=|>|w8Y8?EjQQk^]@bA.iU]"٬'>}xys;t / FȐ1pzܱ:psYz $i;<펌yi#}??Q֒֌H\_? $Yg+t`#1k~=2Ŷ(RŖy]-KGĈW\-q|> xt61y4 箁D11/]0ingԕ,(˒];7C%e/ G I!ƹ@;G%0Rq'3cEPI3L 1C! +L._X]˄uHˈ=1'y$KN[6>bC$C+CcBǨ&D^YZ:SVTiFS(njyi[6`c i-Ҍ?~[p!|??3"WfcJHh^]Vxb[4d^qhBK]CUvD 18t9Eh ͡E' {س]~(K\ э4OOH!9gtl Ӕrk!Uhba΁ w=cߣD``胘Uj1G01Cٖ}@k)4C߿d=Hs?w$!"_H3lh2"DhHbKL1cV#%ޢhLgx}OଥsIq;0Jg[..ւ4PyƉCӱ^utjIo;C=U"tħ)e^DQDFʼnS|j,_]s&'~c[ |vo;N&8v;.ozsa8 hqOq}ͩ}՛iu6Y}K'#onIu7ہX}FX&o^zŊ>}J/CWϿՆj& 8Xo2ލ0 ݁+>|6nE ;NC`OoJ i 4tÞKvNB&(-ʊC?rgY)5a! eDM,OY/3MPI2H!7?,'(ռ5}S&9rn Kr Wo8+D _>`Y1D5 Wz' nRpĵ=O\ s-IK8.eGd^nVWzJQ'ϧ3ޔ;|DN&72w9<APYAm'.gVuAc; -r:+(%Y^MRl^37(baY$DO9amZ%劾iH|5Nvwbqڮx jA?x:~s;65q!&ϑBP%Q\_]Q SK7Ng..x;rYU-?? 5_dܪ0-gTh7H!zLI(ҨJ:WTX%gd"ͨ/V3ʑtFrlyz$=bxhĪ;k8$Hy*gh{"tϏbtZ#m)ˊDd U'z`<8eFMI?gX//12TLH1L*5/\]_\f'!HBJGϮaA8I*4aPy3=hf3)Dt|'+bQBt,y0,ZLadGΧ)r]l{1yF(W+\". hP)iY؞(o<%~fMJH:G3H v0Bk=~> cdS8ȗ'D9yJ3M*pچI)IqGE¹iO vY_~ŗ?'~ՆŬ]װYy45 bv:V[L^ci94 Jk`XWdB!1\$9Z$ydIBDjz&x_?+eEu ]O%"E!~P Ogt3uZs(1q$cԁ8bV5a{ʱ#29 R׳y ۬X\nLcl,KD(qX(a9R:"2 n) :7aǁ,Ir$8Q K ` 2-Ids#7TiúɲZZ_W$2ah{6 F1 "j/?#L_>bfp\Wm?^jQ"=,MB2QLBLDʹ]_Ft]Cm4MsK'n 4ok3IYgłO{4C*"+h$v]P1a ~F >h =Ab NŝU* 'RrC)7!kNVmDyv&8f؏Qt[K&/f%|ƾpTՒ#~1Ug(S'?RK4'"/qE0Z"b;d)0̆07j#؟;O7 $IKkz1LB@IH&)fa,F(m3[yu ؜oOD (|ƆHVL|*qۀ^0IN?v4}]2Jb@#I,JrÞ4OaꂣH՚vw{⻷x{JϏ;G3ʼn@Ӎ)R atl)EA0)nw?SWAe)S7ki`h_'·m"Sj~8RyLj##:3l0~;a_O"tWcȒ‰D'$IAb4ee?HfrɩiIҊz/oxzx:n@rq{sV%0a,/884i%Gf5".iv@ڀ dhkR t "*LfdQm p#rḆk!SbQ2L 7P:lT(2!$%&))k8p>w$cL}ᤦ|I"#I2"B$;(_Y*ڱ%Kg^mQtOB@)ˌidCu{ ÏnO]ds??Ҏg-YipMo醎)d[ڦe#Fp:(A;8 .{tZq-A9 㽸"w ┠k2YHSt&2'; S)J#vCg?^Zsw2O𙣷}{$+^sgUrſwLCO~b4,6BM,c-8|w%gs ],q5<}m7~I&G "CKک#I F'_&tL%|_(ˌe$RE'WWu4EFTO_lI{$z,햻/'>+M-c7MJwibKc'4! ևAyGd&;ƣjI?D%Y\/ӄo)C iXl^_6\ʚ=ShJ8FD~b28l@$k_C`hN_ٟ?Pk4 = ->s xp)߾⊮ogy~=IEbL0y1mK #EQND^*]@*5߷%r>? 4y1 .sXHhLȗ3\ÁP/,$hA^aD-fE89ڮGۉe`j&O#It(ٮWńs-:Lɴ@@*#6UDtDV ApuynrE7 L~>GK?eM$4r}I)C7b #a1sdMTQBy]e&꼞1 G#0Rv-^e"BD$Em;&2FZ(éaeil󂲨S ==,_ zC1+yџ:\|<#+BHR`sDY &F7el9^!=$g0s.c;m$-S/q6 vHFh!@3Cmq ܆$Cǥ WGd1D0I꺦E)V[M= I!Ƒb@Ҵ󬨌&D֣E_yfmagN!^~M/Qh7Vx)L"#4 DjISD H(hgE 1{cÚ.>}D)E6N yQbǞٌb)5ER̜|=uKcSPQ`tn"C?  Y6;Agvoi/L^R1G4_Dk-:1m('0ٷ-[%qa^D]L|$b #*)Xl+r{Xב@ u ׆˂ZE$ȑ˲囵eղ$S\֌DJLY0D K0lYAa IvA`rP#qJH󜓝=oy=81bE7w.oH:[";E(8OeN*xF؉E <B{8w( LTcLJ}qIys5{v -SPRɿ?Q=ӀN5DKD9uu. fw\8ȍ&#IH<)%Ɖp$t=:K9OIaYGJ&x;/0S#1+"#}Z E,k2'LXWhr͔d WȬ&[ [L3LҜ(\VNJI7 $("!v˪Ѐq9wyxޡ۳3;YJP93$9/3H^)e^Q#>F#hQUQHyhu3X=C͎~r~)I? "Kd'ʲd\uFZ֜GaZ_G kSCF, ٷRVWXla_Z|kIޠ!Wc30 HX9eMi*%4pN|x>dˢ^|_,I*)WKnç;l(sL=QBHC2}4F`ylRʋHzK'Ҽ_lIb :53h&1#N#IjmHjD"$4 C"b Hdl5 c{-yDsシﯸ}%)r%J^3u^APqbYJ6 -a $R8TrvIAdHGO"$9MYW $MA]g't%~:KƶEO'*gr,YbIܚJ"_fÅ1sD^ ˽o.e0gQ^ PJO%wVsxixa;$Ibiˌ+6`l:z7sHS ")%QQjC"5!Q̜cD;~icF_YRR4c-I ;ڶbfe&tfMQYβ) ҤDh@us sb~Lvd{!"Y& 4>D&d.YJ0^bۿ"aQ1"87'avf#IβKD ́ėxA=Kpt\rQU^_RJcK%\l^S-.@j2OT:╄':g9 VI\yj'C&rۖ*=2?)&E䉤0X|LeB(Y&9,JjQ1:3_m£3ym=qĭ?UI Ǝn.2ʋ-rD: 4ڏp!b ) do!ZNGV"=3 I)8 Gg48t)֤قio*hTZ`btLHnVC@Na: E 4D 2"S3Mų#Hn2fBHȲlߌk[l¼qi#xAIVssrd߾(/ Aň#8OaiMV&dUa@ɢ\( { yLn}J&`jvo^Sn֔u_>DqrD?|n0aQ* [4͙bSS ~#r owy`?aCdb;>}=ܲ\6e3W=whQ0ق6"4H?jE,Q0 -3m?kl׻CP2W'j$4&޼?d&bExKf$87hmfJ8 <#Y*tx?g9inx~˛5ES51D$#۶L]ҁuEk-M b0I5$UlW[MB(әq.Z ϛh4u %\tT Ґf`*}s,7$y%e G-NDiGw|5o6t@j Oa ղkO=> 7nUJ0O̲9527c-$?~#A %9MocK(M#͡%/ E(K՚O;8-Mx¹Hħs8:>=ru&8t+<=tj 1|}/DٝUxL(늋E%EOD|x,!Wc}K\"0X7aeNe|M\^?Z{b01ɟ?>ygSf0Xy6u9*!Uڲ} j:Bb(dBƅpjiY^,x|ab򁧱cG#On4ms,wa>F DD˄"I(ѻS׃J7ԋ-ISwƅH4:T<-Hӊ"_F*M3x1;T3@9n=0LH ܗ1"D,h9cs~{-Vkb["f1/DR{T1] <%2\iN3cJJ0!}^y^!kguV# 1j6Ɇ9خmv9ar\3"( Eځ<ʼvQ^.GY[\.EOB{DpS)IU˟egpڎ$I¡=Q.^{(23L0IEǝNJ ?;ŰH13{|)Lz$L!f5v=IY`? (iZT J/U18b,B <1p)XuM{:19"I e vB.//8vH׃Pv9D$=\]\T `B-~eơ",}irlN=/;1VY%_y}s=H=2H^ go/;D~y$ v\,K<v"ԵkgUI\\niÿ/s[BaLuO{ՂGOĻ8>yHF^l@t u$S?P$mvE^x{O*OBhOu8|87-ʚ(tخᑲp88ŜNÎ)Q잎N6r|>a[p">839GLF%ɴaƹ4-Zs#*\hE>_?t<卑AIZL`x'LVrKY{2iI##Qr0$בDRӺJWO{U̴XRxrmJNE)mI4Q<4eqvArX-|BjΏ{>~y"o8f#y~dYm_>#t~ k>s lc-!@ 2 C$% $P˜BY\!ɀDV IW{+#gê]Vso>y>OVÖEU3!h>BQ<݂ SuW49wlH^x)DB;qg<yl{![/6`B(XU<}Nɞ%cϦvDie=lH =Xo-w#Euw7\|r5uϦ:O1G~ů~_|E9ί2"iIs"y)o~`]c0P_ #Z8:q mh,uÑd~AW]3v'_ Mw@{wsv"/#ʼn2WXωw=iڞ e,coFa$c()C^(-xDE{$\8wcOG)l?L$Mף(JF;}Gl%o:d<>05E~t`}cV%3/kc*{dy #L\s^+(eYd,ľsgE.ɢb<K%I/!ʸ-ctDuy CLcBq_}wItBY$N9gEG#m&SX'bTC{ G$iGf7dqi[ΐ;>¤FBM@H *HR4N0f[Kiw'ӏy8ɐR$)'лhɐVo'7xgQOM[ޏLǐG*c)r59W:8#y8vOଝZdVfGBY6XI&~`A DaXg(oO3b9zTX4uC(7Hω78V9^]>;ϟؓ`zw;ݎEż8xq:iO~rTEɢ8_]BllzY,Y\KY_}xW2a-|9/_\MRkzEQa38yA< tÉbF/H,KX_<~C׵(rl5j]źd9/x9Td`Qw-?$(wx7bdM++v9[M <v4޳kOx}yrVRfq\aE80H+"Zz5*e,5::H%eȵ Ibl#1.SX\|gĎ/=HA@۴$IG C M4D:(ORD< UUbrA~h\9 dXiO%\cPہ|H#Ռexe4COqyFθyeljʸZgS3˯_1~D$)i<+8u-8NH҄8QZي5Jq|sap 詍{T!X$*_ry Bjl˫9ñFPŖ_O^rg;鸻۳Б@zAǞy6q|NR>y ݩ9 QTWW,8SE\f䅦n>%O"Ñ*%>} RU1g*/IE^-hVt<90R8d8c9Kgv[p] ;T uGQBuxxМҪbۜ"-rBg8_QdYUM DEJZtzǬ4p:=Re U)#YT:kXf|;ߠv-/qΑ9*B"xKx*=i4`qsV.yudۓE4W\<#5B*ֱZ] ?;{F#U42_qiaQ}z:GrV˳o=;p{d9[S%UEv@Vufw"IIsC@.[6 o(uB>/!QǖTZHsUlSc^^p9Ϙ1gx,_|2td&-J=\HD7[ْh(bbȅbuq~z=I,"ɫ)>`ܷ13$÷'拂 ؞+;ߐ Q0J/.IF4bT<{| Eg)i :fZHicl%]hNGHrAGKD9[tJQ $!@ꎾi ec_%KK(k"E"[y~I͎qh8_Z0,8H%a"#87W3L|Ae:BH1l7<|H-)㜡 Aʸu+R,I6ABk 2IJQV]U<ɼHk'Vc?̈́cBFB!P<^>X7';O%k|"nSF3R7'7[OJU ZꉻL;#Z*(~Pzjsޣ#l>@J1SQ]$'&S aW:BzrMF>ͯI ᩡPɕ)ME@4M$I&y'轘O3㞶7ҜNI!" ɬMBa #&/r" /$qё 2yCO,B?P~cHkڶAJ%Zjj/4E J? vgEF!I(`}azzH9%ZKђ Ga$ RQ@*ΘK`cO=q~h`0SujZL:ܰ=_ݩٵ$`slň{aXJb|Jg%y4{0)}q$I#z=Oq 3J]GۿK/$J;hLC# YtTtя-}{µ k&q fΌxӡJ1 1O (/fSk>2tf0X;YF3wtH`iɂ=),cz8rN0>,MZiʲnҧ R,*AGDI:ٜҼr2'"EG2@?U$ifP'h#HA])s0TmŒ,ރ m +P9-qHS+gIRųsb6*& uC v(9>"RDZ~X'"W`37o?g;,˜X)W? Sa<w_\35˪[ڡfSghNGv;:ع9HRT8-a2er~8X7[r%ȵcK^^\7Ki[EZ8s 4GǛ6yž9eF\QGבSh'xxoɫ3H3G93w|Oz""Hxw: Xג&jP7wswo?XZGxoxww [vHzA cBR /d{$Q^ <jr[ck:gz`8!~4O W1ZC6a[cCw|pyD-Zgg!`f0ưOe/ܢ"Myn6\= %n865ABR<~^?'I424݁9rqFQOөwJsquI5l[݂a{ > ܼ{O}4cضD9arͶ [ҳU?Co=_}G۟(9|>JdgˁZfSǛ_3l;q&%d nw'޿;DRw5_k̪͑70y=yx g@ ><=5-4 2HoE# !V@A Avd*OѶM3)М{H~)`WiJEt>"Z{"Eʀ5^ka[* ~qmX'ZMKsrlNmkU%[lp(-gVh39Wl8Ob$_a쎖 N]I4욎CK1[|6 ERۀR`9 lai7YQ w &\ɥb&kk1ÎiN5E^ 3 IFi>Dlv{f`4A)C{8e{8"myR!>ў&`6`g1v{kk >/0=!$dJ&$g~#}O.+3h(_NRNwdtfD&b_$<(BG)?Ck }Þ4v[YZG Ԓ~hD2BKN-?iSoAK?4oi6~I%J=)s]f0GEȉu%D8'6LbGHmh(8XCSsaƑi0P%v4 mariOvAHo?n IbkffPjMGSw@TO1ľ?ԂO"@?ESCX3ݓYZ~?1vO鳷E3woq{>H_˄;r?A+gXh| P1 Y#,₋"8a#ҒYPǏYUrw8\\&z㡥q^B%bh1!fqh,ڱ#"+Dg{jßyEZ=Fϸ|@ĊPpJÈ=-y k #BnjhD KKӆ(͑Q5kƿG"xT)qaS]x`IZGy#5$IuSiHČtFg_~\o!H_Ѵj5gj!9j#^TK#[7D|SYiJT! B7wxOYM{׿)㎳{vleºg(,rij9T śp:nK;aw|}I *a[gkƦghjfENyF=/H"ww 6MMkӎ-pmKߴSZ, WDZ##M"֌cǪ8??rTNZ[9tI k; , sR}\?o} lI,'-旿xc۱y$H4ΈE`q°y|8Ǟ,ȴd~~׿\}34xfgYeE "xYJ5H!mGu`Dm)g mmO`N;VQB /PI-j׮8]%R t5g6ю@dJfūxM|;'$ϐ ؇w*-qO4.q>_'][G<CHŸ^Q3%BfH3h<\qq_ %n7tKHtsc3U G` Yjt #ђ @ZH/ȯ\L.(a,gkW2ێx@xxdl chF$gy=?w|\_xA$MԮX8nZ#Ǝ"NXU%Hs4m+7_f{6E~Oߟ>Q1#OA׌Xߟs5(GKxPY"|Ƒb:/ QŜH{bӢ".f'8EF (? <"88-;f%JؒD 8AXeÑ8GZy1lQ"+%X?^~/اS!)ϸ?2<8, 0"AT1R@q#?? @iVFz+N{Jqo:9(fĘ#-r\3vl'z/ʼYA+vD#$&#R㰃%99Dpl7wtH; o~Ռ_HҜ u[9ؘC=Gȁ~W̖ @FO$m͇oHY gk _i-"勗Q(Jx}XdwW3v~LVS$CṂ<% #*Mʂohh yj U@%wzy8V$IF{WsV*S~yEFX eB"n7$[OdA Ꜻ>LBqD%.zgU͇ 3_> ]sx?זT NkFCBl=2tv@d/Z JqDcs՛aPl S*|s{#qG"$7w`x8S\.HosdlvXq<6pȟk_ڐ+SǶngSyww( vadJu u\o0=.//!Do޼x >{yv#?N5 ٫㑛݉IJW4ehB?(Q̔ qv$|;(H%՞g3UBW~W4Dgjd{E NmK#(3bzp*ZB4g3EIFcq!g=|ks%˳%D8{GG0/<"7X͙U9"F~u4Ot<b9ӿEJ2/qBK;v Hd )4X3gs ݀{1sk~_R*=l#mK,4y @o0XIW(+PEIYw5C ^OoXTo_3-ȓOuEuVqO(XHgЎnS1IѠ-R(Xk4s8'&!rȉ-[;ŕ;-eB%!ƅ bn,O"!baB?QmOGTQ҇A2 V@?'hM v*HU.ﹾ`C,{YV.!3݉SSS YA)* gYB NC$gG+a[!Q p"/@w$iulUan1}KIJ'T6RU@4+(JPO+RHh&x@'0nhmI  ot "4wo>!QLdm1Պl̀s8IæFQ a*Ovh&@KC" Dڑ(RtO͕x?~HO-R(!q"0znRb 8A"КDD!w$ʿI0L4{O;FHO׷Xg|p<ǞqyIv-H1//WE 99$A*5T@ XT2ɭ%Xa\oh'(ִ]TTyx(}M4MT("v!"jLʈPwG~GjJ#aw V1?ܴ BRxhyxL_S k:&)f@c囟~JG./yYW=]H3͇CG\QbQL?|`أY9ƍ$s|x`~qΡkʁ2JxVz.wDՒɰ7FhvuG׷EEo"KhN;TSn嘡%N4ƌ;"!Fc RQd9hU%mS3tJxLGE%K˄n/`c4S-QPg$c=e{]oVܝ'Rѹ'ƻ@c pHnɭ8!61)tZx;q4?凝 ֎1eاJPMc QST B"M $YʬL?MJM'Y+an&g$M3DZe3YB}lGxl)[gRv <'/%ewb^Za8{Nv8EK;;bNsgV͈ Z6H'$*o~*(=*CO_qwdV%o%o:GUX8E.=?<RXV#w\5[^zqESSbO#x'NrEQ%1ƚ/*=y_ ڧ8w'Ҋ,YO28 _}E EiͻTޑ/ Fic>X^bU7g'vPlU=r^xe2_$,/׼2T ھfqvAR|s~=L!.⩌`]qyYP xl)ˈs8cx=0371l"CCEO eZjn5ϿMZ^?`^ckk4vl6*^|a$]ݱX{hp73hpZD1zGV`%.2B0<mn`>J NcE pd!˜I#Qd I"?XgSɒ윛Y+{V%1 ;>{Qpj{Vk9on7lEGL)Dquu3ad=UYqs/^xlbnYJnFJ1rrj2v{\/ CXㆆ8y~~I'yIv D*nXPX_,YW W8ȫ1֫%* -aɊJO{3N&O7KG*ןtf$NS#Zy(|=<|xSzQ-e~t$*P |soMZ"Jbt-hm͇B$k3 jMM%#DitiD%9v bG%Ӊ}tm f$ 2n ސ%MenK+ʼJ-X3n{q d,*͸X-1If\s}`ېe 0$QB;W%N[trQX( ںFKpf( i%X,r~FFws?we^xkj{86lOy5mZU~ {tAd1pGbb8HTLlhcHw<#YH"~O>3ځsڦ=IF,aQᵦX[ ;|W%K6ݑFHdQ~0i7ROW8Ivsp8P$)y,_6 A1*(nOkT$&/*Zg隚Sci$4]$E1NKD|`_J1f$T{qxbb !R8VJ1#Y눶mQrHV+ ~B"L1F@JEevDJIs:M"ϓ0ne\NiunO10ǚqȋiRN\(nshr! ώ#\@POObZkqS>VSl4*Gt~?xm`bT泯}7Z`uU4Müx|ܐg)0,em}'Q-&W4Dq<~EVL$c( RB+ 1Z|N7diAYiL$LKOFw9=AvGoZW{N ]bD\}û;V Yƾk%Z.=䅠5/2C]Ӣ8 YR"Fۜq>L&Ob̩r6C簯=a1`li"@ QR8Ԓ%)_rpg^3j24]C#4u?pF>}Wc{Ged8b^, łS$e_adKJSG$i !*&II8;4xCD:t]CV8 DS,dDA" JL?2Ǝjr^u{Z",LJy<ÉIhR^}jlq{S$,2 czv?)!xDI"-OHuE6Czx1OVU!$:BӷRzET3xF$6LG.^f:#=}tDx"b3#N9'reso*zx4,;YYp|׾o9Տ$q_b9o J[fe1w{$S_^#ْㆾO;tQZyLg,HRD_Y |uASS45TggcCzw6=ݨ>0J$ݣe˜lTeΫgk/θpu\KF9g<x9c*I9WϮb0ǂ8jE\-Y-c.2~pg=X8p/9 Cj]ۑ֐dx~~F60C `.AW>u^\rw9X')ˌSADPx:,=nGt-r1GzoY, 0Fi@/dqʩ9!d=_N]jD'{AgqT ,{k~8Bh:e } d S9ݖHKEū/i٬J:!qj2+6=RxegSXGK#DR" ٢bw}XiQ^jP;qQf88=%Jd3D1 !-lhgz}b9 #Cl@F&2H|`_̖u#F G DE)EYҞ$%J<`fid}v,Qvǖ8?mPay D2,U#sEs4{ /+gW a=~uB"Ki]ȉ*4z`FhQRxj{̖EVؾH!96GsiF -c$$nH278Žab R8d@)*cҔ,NƲ=0ځ($Ɛd)c7a!$0̊9*R^@#(#)7jzW4Ռ,$V\>aƚ~h!y%SL9EsDP ћHL 6@7t\؟vlN;ȣk0c=S=`S)Swtv:XBI)!B!&RލyIcA SVGr{\9ü\@?rX`#NZBXBR7gxu,ż3nnn@JL"j"t6ꎹ ^0 V"ñْS$HKA[7҂Q*!c X泂(-W< hfˌ( 8(~UƮ!R7Ҁ˩ f0i2=BIk03VP S&9sh)&0++⌶(FC/*s:6#5Gc]Ofs|ξ(Ғyp'%.<~ &l\OUi7=RI9Mݲ*E;Ebr p"G4p-f4y2dՂd0nsG"E)D5DHgF"^k'R`!EF=`31ic3OSQ$Ǒ<c>rbځ(蚚ތ /i߉c8uu~|'HNmw>s8b4#B)&h=؏wᝥfbR+z9<>3*ʲG=Ѳ@Jq$Bip@p|q)bI8? )MvOM M3xb88Tqj qL|,EƁHJ5hJsywo=a0 X (9 b|y:hpbY̰(g,adq̳YEЎ8 \iWHL@I*b8lXD)mShˬ<,3Py2ˈSM=TU0qge=qTS#FUB;,ggۆ@=)gsz!`Vα:z' L(KLg-3s2c;QyC7874v@kIYVdOGTN7t4t 3ӑ:xr0w#,cМN=Q^!zqB1{Fh&u- RS_׷ (8}RvRSPJ,Ty&qaO64aFkPZb[B&]w9daɟy0N48|}`隁q_oC?o-eӎۇk.֗qDیXkQb ?zy~k>l̞lNߴDʪj`yܝ|Kvndp6D`C82Qjбɪ9ηj ܯϓfrVз=E? (9`|ic>|g_E?e0 \- .[^*?k;$069(jR+3-Ec(2m-*(Oz4J@}I㈪*Gz\cU\akڂ5'TWm[ϗH! lw$G%hN=ي(J&nI1}x oE'=swyqr 8?恦1QHssW/ĽA@P[| Áƒ?N^Obb>aqvɈHgs,aiJ8:4(^ YA8 b5qr ?$ռl8ФE7DiJrfCETN؝hz9'4cZV9agO,uƎ=džW/yq1#e }q삢^?{T:q@4lw{. \3rŜg+~YRpzuC%tJ3l͡>НFŊrsjQMrzICul;OB1Kf\p'r|X}Kg;EqlѱFkAz$ WQL8lurdl5QHjN]KR<>lH( ]336Ge(2&nOrf o9YF,cn7[:yqi蝡s\he9m&uI8"Hc6igapJ(0I^dWEb0&rz[圦ipu 𜝭6{6w[Bs8XVg+68s8eCc|dFdtSav (f n8AD5YstQl|)QS4\q>%xI;=k7;]`Lw?/\#uLUx8Og CKDh7f=C8" W/^я:TiBRh:k02ZkCìm}?=2Ilz4@7<  ,M9ـ6nw846 {w^qc`> 5AGEʱ?ᓘzv=9?~ FS f084^Pt4F蔡G==|re>H"=5͵M-lNe$yE;<",Kz5RJZہ Ѳ$Fd^_7>)'JC@ O%'1&Lm9KsF!bBW҈UpI4JɕFG>!rNO=cë>=M[{KXٌGg;~7 hSTErx\ }R rYT1btwM4=LAElGtoYM-I)3ޟ xFbhvL!'HU5zx1OsR '?_cO+S2'Lo)q%Y67!xGi5 $"QJl?I6Xg /UČv;#I8pZ' ^aEr!4DʠU‡R-4]ސUL_טNvaq?)&FG+gkKTg$5BGf$N2JH,<|f^S-#GiGR֜=g3+2"pbo_⺆,0*ǩyT+u^` q1__ҜูyG,/VTyAbr Fh><ޓWmGIgZr%X:´ٕO FFdvga͇QΪ(\>qi;j>#1K;iS?w xe ~-R ;^<=|fv ~o9v-Fn\Qw :MYm N2M>`]W7Ղo_$IfbglSayZa'O[(ŖRvd&Mw . ~aqo*YyZl±Y,g8pyr=;X,٦8쎸@U|z>s9CBD&n۷<~z#.p{HZTB$Mqi'ad|!ObFcIN?4W ݁Џ(cc/lem8nKT05nYg[rO$bt=~O,9J4}HsI҂$+6՚Hi"[BhDYCG\"#e}ufDHU/GzcZe9X8E' b!kT1HݵY 0 =R B$y*1Q LӧO(B4_@+ 67%7wɲ^]!`GڲA)_jM8$*RV9"G Rm(u1B&x1B3؈pr_Zd/K&I WH14{IyOJZs*IeTDRPs:nπX('<,Q)'7 #RH k橢|a9;O&ҿ-/ܫ8NH^,Y8H4RG3.d"ϩ҂WXv2{'z~-ezQ;Q)\׵@;J(ɲɳXkJ 0Ӏ{ 8%945N d^kIBVy9Bgy=ڟF.\/1"G;I$,cB\<7\B&)w+Xe%2exL b~y9?5lV3X5V` tVXtO'Jig"}JxNˉB "c1_ E=e8?p4vuͱiQh&PsI՚PWWI2_)'TXP\D@ڂZ` X #kɣEA1"8s!k:H4lDIvi& JgFgơaNA>BJX'EQ*@Vqa %#e8#|&)}O@]NHiV &IjXnN -M͖T(=u$! (Iq"Fe:I aʜ< A"aGkvgӉ<ݩej's營ϛa jy? k߿'*S~3<~>Ev57zF8r;31K.bEʹ\ܱ]^S;aB@@0E2XC$_&Ì2|ze ±yoc˄%eDS7DŊk>=6L?8AI IA).˱4]MA?MH_h.ec!YAEΌݞz9yG7w QOLB"7k͆dsMqٓiXܿhV$Ś,+qyr (["Fʈ-VX>(ـYYa ƌ32X(/` # e|~n8d^[<;î α^{:U'37KED74ԗz8Q.+<Ip ְ"ӅЌ~O+~r鈃JȤ绛;G Hz5舳D~6ȋr⚯-5ݙj1HG~o_O񉧳?GsN2Ño}k{|{u7u{&#.=?}oOOG>|jIܿ1*Wl69[Dہ v(cqƁu 5&><<_h#QH-©︺y}U2[v`Z]/{yG,5vr]3f9gXo#$'*2"H!麑Z'Cݐ9әO?iެaRh$Zmx|zd 5(^QlW䑢J"t/:vM.G^gQeyi"(|$/Vӏ3ZI+uX-mòZbd||b u|/lkNcTSm)Wԗ?}Xo(%#*+H1t_so︾^'D%"]82M5>ifzUIN vDq,YX?3Nb!$gКQJYLvn y$vphSxY*0]X2.mα\dt=YҨ6HvXjG-b*5P2 kVU"1HH8Ɍ"PPiQiL?$qJ'<d):F7'K# pn/_PH1c}e\-2L}jM(WsYo7i Gy'Ƴ(WD:&OYA d5~Ƒ)AdbTI44UUV[a%.s]#oo/_qǨcgdžxFV(Ds>&3t| Î`$"S%뼚|[i= -7WLβ?H☾m}}vB)͇L/)XsO4u3SYi3~б,10yPXiDњmZ28OV K1mC&~y?qi: d8uג&, kc9"Vi&2n?hi"tA&*bn^op,Coh~'KSb"3t' sHc@̦_ޓƒa艅'5Nhz>9CMpHH0*@jё%%|ynjPJb'ϪPw*(:h躁!HW[)MLkI LaC#\Ls(iN%(J* 1μ_,J wiD~{83/hp4mq$ay̑*YbljׯcO34X7baF䋵p_w3!4q%(5 yD%beu sȥ$ r4L'joCILx= bӹ"fˮՓhw ]t`F<nZwh%aU.XK8,rA*<ۜ&KYT [FF ӏ=Bk s&ơ/m;EHY t47Ѽ=_/~ޱlZx?|ei[\P5dيat{>N? ^iMuF|=HaŒnr(oZ`2=X^19?y]>_ 3(4bGg,yU!th.OOGr- 03?> c?9Csy/O&"B<2#iF')`L$EJ([z+ư߿E% 5;v}gW|5Y/RL7O@qڝps9=}3,Hn2UZUL7yn@")Um&sa!L=nnOͥa8qٟ@Ua#c,h(bn' *J.}=928R^_zOZh7wR) v""%тEUL߼q$ARx Y^r>IRT D0bqWy=#x9юkI#Xo*eJ<:8Y;㙘%#R0mRtʛ-wYDkƑ Jm!Q}~|DErCәo޾ÎEu=Ip>xl6\]]{œgD 4:DIfAGI6u'AE yu8s1 /73HsH8 W/ @ Igh1[5G>QD}sjz<n6[KKeDiQ,0l%7%Y"`l4}i#x!eME_8+@LSO{zk޼ߠl5brהU4͸\aY޳{hFFu5@BV,^]ug4_?dEEd$iơn!"̽ T I!MTq 8/j#$.hDs{sOG$qDGApq> UTi"_ T@,pUaGRZB^duG($y!Έ ;CXݒf%T)4% xi8=iXe-"ǀir 5?e{%R_.-xǟ")yUi4Ogd#^aX xU&ׯTY+.ǚݎOgdQ_A x?9?=[K҂x$nLtyf;{w5x6@uF! QJ0@]4#$ icD^DYBgS^0Y Y^E fTr!)+MDP7F L8Lx;.sT GH,DiFcʂl2sWU@ȈrrII^'$_{vj eY Ϫ Fׯ^s}u4f"QT`Z! pt3Z3#xOvEb@_IUB\^̒4a4DZӏ ?V- Ԓ$rhQNN AwDIRE=-J@(4IQAygfL.Ǝ׷Wd2[O[TyAvɲc)K<a7k0QnrUXl0,!9DFB\d!qU,H%@ Hf[ZTy'0,8 '؏ӜMYHc0~W38t#i^Z/"(\ݬi.5ft\}&pV$BrwH4U+4AiE$Y QXWՒ4HdT1F*Rdp:55TvsǺ?v"r"3Y(Opz;^kA lp@yu%%/*Sp5~hK ?s!A|_}Zkt])y4[P5]Ͱy/o_?_'8 Nֿ_IuYkF+lH'1q8a$ ?*/>,*Raljna^D4`_8Wy<3%IыnZtv?XGlV+$fÀ 8RR |_y341)B3R"'NbP_9LWqLM2/XU(*+ʲLwrV>\m85Y%!\_ȬdU,n_|Dc҅DϔB?.9#+ J[a~$n潾~"0uEd-2v8RސY7k>oi8|>.+z4 4C 9r"=W:He\w/՚nP($ҝ l&+O:u H`/s%yEza3QJ? $՚Q3 D7 T4o8oOuH1 fUw͈ d4qL;" P7//nF9%^"CN^|0x$RзKxsR=(y k|ȋaD3gK tfn9QH+a~9?p9kyF3p/jd 4uCIB3D@Zχ' 3 a0Pk޾#O"t(,0tlVKL?poy[_-iۚO;w0u3d%4v]H!V mO|LeWpzpYKqsl)2 Ùob,oM͚%0gwj cÇ_Y2AX;u"qηEuF3ع;BϥID%LZe S ikOn+a;UO5:g;w Y*#׊y-Wy|z{?puw×/_.|zx-ߎ2O@(Q+)Iq Ն6?rn1a9J(En4xD YD"\G,wLpm|}fsŧ/㙩q4$֊O{R(ǏF߿(-X%}ݓ 4`uwx13!(ر;\%NcfP12!؍=Sq{nwD֑f)֬Ăm E""8TUq4/f(?3lT&v=?\ްXǚ*WK45^ ?Q1w7gt7wh?!#E? HF/-u;?>3Zupl|T!bF ÑH*b2qx/BP {<E4V1CÅ(Ӵxb;swsåښq8y]-y~w!\.IgGDZ눴&.23zfb]pq%Y3񅡂rvт8>VKַ+:soO2fei-[f 87diIg'C;x9b-N|:'!sEjHΩsl2)%WŒgtШ4%e.)t͆jIӎ4_c 7+oOҔ}tUU*٬\F/s}AF0blY@{)};ޢiӂBAef;3FKTLfo;$%'s N?|B*;\X31qh>>9xzzw3êo1/ܿR/?~ (@t&j{6UIZΣ"]Ϣ,xB%9SS)AJuCV8=v>;GZ2E0C-bT\ܼ[WK*My6f(gCpk$kZ,Ah>^*x9t @X5DHt1yG0x9b8kŌޱk;,<~}"|ʻW[k$%2y۫;XG\ג*n Rd\ /S0H! XN0.hb\2 3gٰ~IJ,4TF C(=O4sEcy|q! h)p/v?!g$˲9T'oQg/22ӛ߀Rc-Ñg)O}}ekJȓg0#؞_gɠc% A8}hpA!N)n^k}sAqk77W+"%_FFdMz֚Vۜ*oH+rA*AwEI(tR +Ww&eBw9 2=1cdȤ')8э6aZGddIt% B\.{8mO4'4TCJh^Z`f< *o0M!I džYܔtf?񟸻;l]r"EO G΍H1NA\\JiB}8_綡:3rZƾC)Oj(9I.醚onq{]mY,X-"4;Fy؏<75k>?`LGV|L<&fӑ ({׏ eV0ZMZ{:L H!z7t;fYTh$I Ljr^__ԧpFaFDLL*LÀd fЙ#:*0A$\]szڳ亪frR *''Ty3\FCDk 7WWXKX©c$+]G'VVEd J-)=mЍZiֹbH)£ʓEP,3U+|c%|¦\ОGqd` M2xKY&_n)kd3 4qA@@QdI3c_#"Γ ^!*b/LuâLY!D9`oF G 4dI8,2t H˒Ŗh񌤅&/S,!p$X9yU|YjAHk8yР4SKgq,Ϲ45ǶfZGTZL͒O8NQė_v;dEI |9ڞk6U qVRg~O_wΐ9<|Fe1 #[DB/cMrH%W RSKBC_/$IE|yz`r4#3ȋc&Ʊ{4IXW CO۶h UU@;a%!~XqnBHe)JI$ID)Y3nlifzeӜEo"H B$`I1asl1zz[>Ѷj8ťL J5Hrb KShI5d.gr-( ۴,u |X΍2ᓒ(]^Y, Т"a8z(7?OhP yx 4}ĪL{Eǁ0INs<@%Q$cLGP'bo& "Dd"]X;#O&t6Jϻ`ag:oDiI$o. _ZRJw#!8 I b=# n cYy TAPAnQRP۹Bpv:فL\,q ki 04eA(IfS('M2L7Ǒqq[crR ǖCwo?Hi~HRFĂ2g")3,Jf_j޼^77KM/4 i28>lb8|zbݲ;hXH\o9M;ovx$bW  \QړEkĪ8|ğ k#ջd#(9~;t3v,%7yw߱)snk#BhrbFv;F/Gbÿk.j['AiFӰYFH7Bew#߸z~3DT% Pt~D&KF7}yܶsx;ܻGB;{+A Ӓ4]ri8eAx,bb™N$iVψC@^cDIoS@ |U0IAw|=~X7S~jvǚ_˟+w Kt< ߽n1C2hvL?7o޾F鈦iHLOң'sKcWc8Xd+5 qQ/fPzط-HWKG*yӟFX;ӧ'AQKi@{(kun 4{댏bQ_Ϝ/GDIK  vhri\jyxɮּO?#>jSKyb I)IrS\- q˔bY'߬ ߼~57soX-wwɱL<ie=B9C3`% 3Uoɢkб`ca\lj軁_jŠ>Hhc|I֌cO`4 CUv,3BMpnFAX09uqBv `a vD(f 3qV*rV5&xV׷$I"7W'q4:uU>޼&NV|A/闟qGLTEÙ8W,RI{ #8yA()r=j\s$T'tlY\bYD)h b $Y-4ts6=ds#.ϗib?9%wq t#xSr}naTlezh]Z9~IxY,nׄ$yG\҂E 6e1ng^g1.8J-ʰabhG }o.g~Wl+@pj`͈7y6p_N5uȒ Z[,&~&ԌnZ2%((PvZ)c!#A_0NgfP#E`/A3.IaFҷgGJMY\=JF,Hȼ]JQ%y3J0PB ,%g/&;g&H3=0GGPBG1q7-0915z0oM8jD*FM[@v TyQ^l|sXb.q$Iq Ҽ@4O'$^TeI„q47GoMH77W5Bitd#fh;\q\>yƮaF,'HcM Dlog9 2RTУ1:tޢΐD\ *ϲ 2J9HoQz~BJFD&ㅠz$![UMзkCF\Ox3! n/itſiIT(o5vf T4T,JSYo: -Ap֐e)I¯9ws1 J_~kg(!/ d-5>ҤEEߵ(!Y^m_cL} ΢[#h >_џlRevL3UH'3׷LI x"MɊ;az`>яH-&xHfK]w7\_/͙[ |~#MִCG\=SKH2ϗ;#iUQG.%-"3{Ap !,REN,Yp,ޠC[(5iu G%DB9.8:cc}).ĈӇ| vPݹg'X,qI1J kȲSHuFeBae-h8ޠƚte%&ƱA,$E]G^l7 UN߰;?ꚢ/&ސXO1M&@6IRDE@VQq?Zo٫h>h1ۿ =WɒåuRME&(˼d3)X̦\0ځqr'`t~i:8|")YoUUdF'1es<3Y3:4R,7+.`E뗯߳Q4cN qG3e><ղᄀo=REn A82FX^Мl\@?YPe $ay<|deh% T3Y*v'$^id1r{X9,Igp }OmH -1|fY-χQo̴3c?3t$. !. [Ւ[ bϟ0DU,7- %E`4Y?3eל{&y>'H hx)dIB Bt3$6t#K#<㗏GCp4-I1-m[n8I{.HigYVhƆ8a*A; TMӓ :ËcGCqm{\mq'x8MO_bvAJYPn<];L3UHd|IyıFD c-*OcG)θ\:r4{uk$zX Y'4UD{7z0?\zo"XIRlc3G"" (ZJӄZ4%̓8K矝 }{`^qiڿzIB#Iu$0￐k iaI$4KcN_/3·O\ӹGo T)x &^dD}$JFteE?K j9<Y%#fh+}0A)zk6$yOHlKV-z:s2K)28%hū+X}{B%!yŒd^R {`$KtK6S~1gA22T7F`+ѵJ{& ءʷnr 1wCLUMۏҔiD%<̫s z/0W[v@0BЩ>b41-YYX`G =AKǑ,_d%I:s=(Ae(eigI(57 diF*פ-#qٚ2NSHh`&]QdatX?1 '!=& 3;IDmB;j *AJbknͻ7W~?`v~ \`˙w;D{BeF5/GnW{jm[~wۿ>`'I2l9ϗKU=mӐW]}OkDҌJ%<}HY( .'nv+n1 I^V#MA'sCjqp*IҊgPiǏ$EN-~850EFܼZ?֤ϴ.H̐ lRzq#I^/VO{ҼbrK#uz4)Es>sUV:FǶÉEY1epuB\^|fqٙ (B X,8H?Pj=zÏLΑpR%#DH2Ds;~x#C%Z3!ܜ v,˒n(֤Ygn&n+.>IR,|xx(3g=2bC-Tf,e[|H bwc- ÅS%m(Su,?ӔtYn|3|xXdܬ4}0Z֋s)2|y~"r|=k:>=<{{K"B_[Lc e`aӔԊJX?Q%1}e=('HRz|h%ϖ,%u}m$K0UJ-yb{蘼Dw%JPy ]Swh8T՚f0N(MKCM~+OFWtG”c ƾ7FbpÀQ *msFU5\z4t>\*jQrԑ ݚwAa](Lb";՚j闏3 ݚ%So2z])|zcEoGML%M0yf}2-`gז #E:i +JD{4ZGL=+.nz65ָiԠjM5yy>>3;4m|xDIɦ,hS3  .8v5Np\P{CWc\hI{l5}oGI;)_~+9 klv4eGE8/ uz6=H%10 #J9( ;*fYRNүBJ<(R1ږq^QʯͯbnvA1B!!  4{OgGʢYR̋q`4zF h" !wQ0IB&/gNHzV,KF͏aHRR3kO(cĹ]O}i~I" I-^͛GH&aɶ T#Ӟ3hAP0gڶƎ0g2ں=!~B g8á0a:l޾Eaa,Fh!n·! 8{ yBDAԄi`hHS.jYۖnp^ ]`?˟CG{LQ(I~uC\#n1U KZK4rނ>MCn4:I1eo~Q?Q١lYfႎ5=aU, C``~,UDsD ,*l^-7:8zpi#y|NQܓ&<^8k ei6WK^v݈=OOG4HQp_PRr2ɳfZǞPvTcDF*L BYQn-40)dppp;sletėc<[d #Ohg1JcOg>?f 43<Heܼ,n8].CH fnf],sВ8/O?|l x톧B.y8t\\6פ1,sJ)O'?dG{ >2s@7v@si0M*85SM`lY'LX+O螙XS%NXlדHI.'o rc)%_,+DL^g9ݥ!3 (!IͪZbjJ#vrڎy:t!Dۣ?6ˊ,Hmߟx"'bgnD%2p9ktx"wld%:AD0n R'@QUhr$ 2胛]~IjgNRs9٬7h!Q.u@;4&uk:b 9u584{88pN|?Qw`?v6kiM=8DT<af;&Gd0[bh݈#t_ޣ| !]ۣhe,H&J"gGئ6 L:M1`"JMӋxsJGORud%IB|ͅHIW,f\.cXk KOxo nyL`~ϯ9Fۓ)Z4~eM:W.Fk1L1^Gg&@D\8hfaqYa[)^ Bhmm&EJ=;¤r9SWx{f RR uS}`QTnEa_ZԺk[4I(|n[BQ Z=~e!%R5f^T =Ԉ.mGwtǎ8zȔu!urwGYF%5+jp X 卸GH$&8FH O=6.x<;l z˅duI͎JY 2\qUf,R%v\Ώ%8Q:Fss) DTP(ÁB'"*˸CO'3˔mDOpPw#3|a+as78bZ7aQ%hϖa@i0=å! 19 5bApɎ\/ -oaeSyunf]|?td7^Q-J~y"!I Bsϴ±خ25AÉD;ms<pԲXnX.SFP);6ۜ=&9Ȩ$hX,*ct±Z稨4́~Cqbə|0T | `ZB%4؃hS'Im. %$fES)"G8RTk[MDzi`3":45eeX.snbâ-Qhۢ҂h֨p|+̺ RLx^~MٰV!=8u=}۲,2yuW\.5ӂ&nv X`xZag"Ǿgjk4f ڐ^N-BXܬ+a‘rWq{˄Lsn#4!QhPQiH"A9 vdG=NlK\t?ǝopj[CH{Χ#*Z e=ґn\EAGuOTy"/\U?'E^74 x鰍GPJOcz(MIP#IZqFN&"K#OHvD0) ~WoސhFDWk $Ҡzf4.Kl|! ͻp;Z]0\]Q;XXm+2 騖kb YfzDjE6K/HbRq8Ȋo=7"(26rAYɗ+07Oz!P5"Ipyӭx 114*֫&OV9e9ڬ%5.rR늸yWA d$impDZ"m}lšHbl#/ Bk ƈf7~"*8Nk(F-3x RBpu}ͦ,E F -:3Tr>aYhv5E2|b85#i##F v?v@U vp.}KVܽi.c]$IAZmė8:07_5uMDR,#KSh3d:ipNH`̑y;õQY6$Y N;jà%DZ܍|>5\+jrAtyG'(+EjCWD0㾦'MݻԠ˂SHZ~$S7tA8˲4F52DDQe9ַknpБ*6;sub])Rԗ~SKw,oWTw0ӄbŵ)"$b=Y$$R3FKFH@QǺۚޢtQ4uMӜ]`Xҏ.Rqo-_jc~ yqa[t3esƋޑ ¤(InVU?ݼ‡0|xDU*ͫ9?=1ĥ=!۷o+=K0\.;N^I|D,69oɓony~~/3J> A Jӹ&],OO<#Ҵvtu6>JBx3ߧ>|>d :yx+_֑yӞ$b3o-0M?@uha~^~v㙤[2y{ZsH?^#;07-MK8\/#͢`s}f}Ң5h-ysCg{3eٟZX\2#7:HRڇ=ǗVpwoyvGi$Ⱥ1YBgg>/>00_/ }87O6wnMoY. VSfKRm9kN3XYOgZ֎9E3 *aW?pi*D?[(g C_r^0&zERD 0q]g >>5 "ZxQyLVTO`۠T% =~ Lt`P ܬ+vJg`ʻrAUvD5NCϗ/g4+ eUU%~tm;L.+`aj>gB;3g;&Ȕ 2ҞyFX7P_@$)CבuhF;KQ.X),~did'rA?x[COv#857pYFt\eYE'>=>Α$%rj2)D)Χ c u{4=Mɢ0lif7ofB'z/&e`ʔ4' /M$ $ (&F;0qD1EJ#c[Ϣ\]:O r؜8v $*K?1ijYy8G(>˷;*0uzۛ-ut0SЄ0YX|8:K SӐe3MuI0NpAZJPLSI#gYlV;Mt$ cILJ3@@1ՊnȒ~@o!,ȳ(fa,tJSĐ 9A*܎OdY«ˤ/?}"ƖNx#Ѵ3?ܬX +fS%L7X?Πj29*1Fh\ ΒGN+gn޹<-vE.J "RH\ښ;aN3#L((!_ 1WE(yjJeBj"{'/r\QZ Ҁ~N x1c40RdB۵C8P9Nr6U0ͮ01;~P*Ncpq:BY1 2]q!K fwR9|L/1Lj|) ,эc~aKG+J sӍD -qzGʼEQ`zai$II(Ybt( E͌D2M,_&tTmف&5!\$I1C_\o;n' bdRL,GM-Akb8Wow0Yl}: c"7&,8N$ 1ZkFgX-4] ԎLcjQ IR:b. n߾ahs+`S8-iO3F%Qa[^8]NG^00t-S9*u,H /&?w;Fkɍ??zFFz:8e&q Lº"z]2^ZZw w{G'O# 3gVE؏1%r֓l~("n$yTpLV!I ;N i6E6C 0Rj@&U՜k @_C87\{P_sӳB<$ɋPXC|X[M|(҄Z210t Yc$3Nh' :/ 1rsu#Nl6%`F|ԗY, |PVKLjK{Lh eNb Zw<7oxr,XW[?| UoßDrtD@ߏ} d ~Z.bvP'G~D5 cOħ3޾!ǎ\漹]p)ܰKt6oOOTW p\ﮙÅ5Ų=qy<7z? |{<ӿ}N $ݲp$4Y6=As4V!UUc,Sɹ>3 eQu{AiHav%B|[扪9=0* Dm#ec<fHSYlHrxj][Q@P$-#~"+ ƾ& -WvD hyVA||.Wׯ}T9dZp SHaBȋ>Hd(Ng<'hHH`Sfad~/ mUEb_-ck:VՒv;~n-zWY>33tIҤ%|,V ]OYvaZpBoV$# MnPF@)۷xsi'sT@?x暬<|$:({E6}{C~~ *d~e'mGW?$ej(LBȉ:wH/ Rv4Wu#9%䫂Le󖶟ND eF˹FID@7Z)f8u}D:ϫ7MK& %C Sہ3Lx>Q w ܟ(^} "a8P_h, -},14߃iťɊ(3Ʀ'I Ow9kCw$yFPdJHSɒ&UvLS۪Ry I3/e5: ]OdQ sɍІaF!?E5 Zaj~|$J\rRHyU#3HdbPty!̱*˱9bGD"E!&KjrC7b^7ٱV|OW-cӰ㑬) {9Bk/'o Ʊ^-iGK3XB)2!L4GV\& yJ2uLb ucQdYN(-}s}w;ZEdvXcڬ0&MZBP +5sv%B13Jp \LzI(ڶ3TՂq2h& S99VWR4_:I|eYAhy\NPB1؉셟pfX>X&f_y_RNJM 8̬RHj |7oX%eewyG?zEf(t|Ѥ`'*gX4qWK52fDXe4]MQ'|'/?>皪Hx<>~g>=aY(r48PnnXd!4Y(DGH3^RjŦ\Hp1RLPTmG9Q 1EEISl{D &]inTB.#myDJ)oi@1Z)l$1b ?$[X!+N6՚g$$Jw,=6H$h&:% ~'lj.&h~ L4.Ov CHj2VWwWT56 gǗw߾~J0#a|~tt4F*xx< ##DE 4ibxw ߿zͪhGL.XlW%^dϏGF{:6?=^(ṽ;}0FSD<+Z=Å~ %4@(3Ogev5 .M0:H\bxzuq]%H[ &0uq,x<,t j y&͈~=ޏ9&m'KfK;L<\N??c[HپyjԱTUvI'DUpu}*ˉatnjlpPf4e%8 ; DjU7Rn\2v7^a}Ũ'n/?Ɔ;F'|߰mpDL|vn-k#)}wͫ$7.SrX_TzIY-ޭI3IVvޒ}j,p1|zhnxK!okZ;r!Qۛb"T)8tF;wh"~~j523 1NkDrn+>?<2#vG%*/YV+ @'B.$R'F*rR&߾AxUF"%O&^^g2Wݒ͒]LO{.xz@Hv P/߈#2$J5˛k i/v>klˊWRp| 4Mb -uJdmB) #Yn$jM_3pNrʲbߜ,FeiJ  o0Ұ+ΐ:E%0ف7(f׆U@ p^AWUť` ?~3¿Zp>,jAZEF"%& , qF <>DBcݱ>^-I7߾]D)òZ_9Z+KiBKdi1C%!y~k' iy}N2A/rKN0xdL<IƖuNQˁO,,wW)QZ*IZT $,7+;yYUf"3.g>H4C?L)j{,7"|r:2#np`(jr&1s 8C;ٗ}C\:ȗD= Sis{ e,t914?OEb eY~ys_")!Lxk_gNf$I)%2ʼ(T%};˗k9|~О ;9s.DIHm4IpkI4Mms%1YJhg_N݅h6 LJ6IRh>ڒ]ZLyEsͻ ^PTk "dWner4H'U#Ak.5"L zrw9yxd{cݛ[|fh8yNY,yb4ҞfWլZjmp 3}s mɳR^a{i)IrzHb: zƩg<>YL5Q*)Qhs3sQZ,PzΆJIM$bCbn=,xi4DdՂ4lp:f zryg83<νR(A b9;_Nצ=vBb휁%x)tԚnjZW7oHB ŪG8IQd{(̂du~m[br<A9 nbr U|޲-/X;M b!V%1 aHjnd?;'t7tt !RYEDQbIVqs<0v=n觞ޏyǟ>45&x|4ѓa.JDeyVf7@4 ,6(o_S]7Oys{w[^]c #7DYذN5=<'@?Zx!_v,feYGw Y?x/||xB'!<&jEG6,s3˻5ͥ:q TzY /T0:k:#Mdb*'@Y8? ͹t9P&qOs'i!Ifg8"T))_Jr'?\~ϗ=Yw8`Ɓ՚ݎS}OB%ͺn1|iA3u|^ext@s'vIBXit8I6<]z

1X9 ^~~،ϤJSU .go02/ic}6?%Ksc/0 K3Zk`ސ$sI4咾麎i!ifZDgNȨ #*J .݄ BQ& ħ_7|9GWWMN(J`~~#eͬҮMqO6]o1t :\cg{ӞNgBtx7\j[ Rj8y&'87L@t]7/djDpܾ_-E(Ajэ8EkRq.,Zq8rb BMñ93L#OehKwi>1tv'G<2 I -6 )̟O򂟾|澯9!0z41ǦbCO<41=0!!riCh{_.YftQt4A O=kɴ"U<5V3_/%Feًiՙ䜸X_a/B֯ɞ_#e:l~R2 !xFk_:wLp8eeQ!|I""I24YJbLu22'~!"q~}-1_Bcx1ULa\)zq6wp!]ߡ:4E)RX ]1riY\.-_@b)ĹAr#vXkADx>};71Mp ߟkctif>Ph y^3<߿884@t[V&r,Qփ/ AY&Yf[&wf'МzE3HAgKsڞ|&"Y˥aj3_΂+|vIyi[*ג'i$"Y.s έe=Y4'-||>`jg/,)H4I#X`H7 H$u݀NX%o3V\oH3r:-s͎Eu@xs1)AU1Y-Aݾ#&ˇOh ǁbx#C2EQR$)!D|@3`op/PC iv$ xitJ#FᦑHpF07GL:3!%L+@H[<9\E0ob)frfV(ĜNR֌Ǖ IY1#9+-}Zb7YW Ta =7_QdngDf#lwT+""Rx.IV.zvNdưخ'bpx`[$FHcnDXᄀL8y2ÍY*\ t_0taێFv`T;wo?}"M䆢҄FJ HEt-O Hh SEar"Oy^m!r#~E0EG;L{sI.ؽ#)*x>a `oIdr՚csvwo~O4}Ob|aOOXQ]O{~O77[m< , h-T)/O\otI?(1!kn7%? ꎐ82Tcc$س5W޲ jɟ $0u',w[\KC?gl31'vзg6ŒW<d"ۻki=Is:}_Q?/6WDщDh\7Rk· ŞvQQlx42/(a *F0PV &WW~ZrvÞ{tU0˜/d}#eП8\ﱧtFaDAz\n4oq=V|sßqʐ%*3|DdB\<I4^y޾qZi%OndQtÄ j\n))#eb 42_F ^yˇgdc`pYXɹ4Gnh1X. >*><|DFM3\!XLNk&ҴW˜P@@}SUdE#jLl :˙N-Y,Q-}جoTt6޲/Z:\Sw5h~(`׏lkg᤽P,(2ƼJqd[,Rs9Щ`ShĠj7f͚OHiskzŦ#sNR0HZvCd8$Dg @ӎ˗fZ"<1hۖt`ڰX.gb0д-hT$a vG'BJ1 0!2$UEs9c\匔*ϐ m󟹻e~:ВkT7GҌq??۬eźJ@UGf`Y.~ uf0 GILdy=*+%عH2Oh%ȫi>vVIƓ x( Ia{ehJ fي@?D+Up:>yW%lo6(Qڐ%mt=e3M%_y&19˹c ͟%_hcC`l,V qB F*"5%#J};;^OH2?;]DsrCAݵ!%,Kb*("rTKR%@KuK y^ޠdQl9 G8I n2x$vTY-wık!5adg tHaYt@ |Lv$1)9kI4г**qDf=1bUxiح\8w-FVF45=&#di_"zf|a1D$1"pgq u.8 h~UkBaRo+研bΏs_4M炌9fזxw~fbGbONI23E|_D4ͭi&7Z$!sC_? Lӄxyy^8Y| 焓lbA̍hRCY,pBJziDYV,/̀#Z*wW".YY>Oؒiس-[<2"Uee`f$8optWweUef#]mil ^؎"Ƿmfy:, qbw=~?[Ͼj#o7IAxPBMrdpFƶc^E;9Y ܞIÉ׿8k?돈(:Ux_ Av3PИ8$CsfLi ?􉪪XX I 2GEОO{揿 չEt:'֫-=*R`EjKXQZtdp}b y\0Qf;TXӁvEc8K^o88bheLdL2Y7 d+2%]hVsT<()|u͋ )~$ ifW5'觎a&n޲X4i02B;#8b h,%\=R~3gBPdنmn@kgZ1~g -^pxnӎ-9\hs+MI|y6X^*^߿8b^kC?_C&@GUL=}`CkGOz p85c$?xww=+~;~>+RO/,cG5*3w\yKyn`;rX"bh}8^%1pZG(63yQeP(>~"+nHMpPq{O/:y(f'n~ as{X3f;ٓrnn,x-N(j$ I舡똂i0BrZreT-x>ؔ+;0v* g `q]"6d`bɈs$ ;T#H]oɢ[crtx70ɋ%O@T^}2OyFd""吮! eɄf8on6ݚŷӏp4 DLNd $)_:Iߏp"^ ̒#6#-#Ő[W$YA槏l7l (MR7߼px&RSm~\a(7vdže8 ˴`X#WK7k8//)K`"]ؐl6iBGh|$aLNJ0Y0q=S4]hkBa$7ƒ)VB5dSf0YF"czPm4bx`-I@"O3س;Nif%U3p: C]Pc i0'ǪzwWM ؝Zw#LZ~W[x|I5vM-B) <<ԝ tbSnW;q{u7yuS8p]fY LALx:ɍ~Ҟ7=N$rMC.$IL ENw>,rut~ `G),B8ƺ&ҵGi8'bd&aztƎ`"ѲZ`L0NkȩZG5PBaFKt:)ɫט7jP*CپdaVjFLP$/dQL<9k$~onY\,/;^v5GJӏ?.hۆHS)/_ _^(<(%W1_w쟎 uv!["f ͂̿yd) Ol csB͗/48nnl6+gJ)#tm9R&1Bʈs{ ђ*:!(6뒫E7tVsK=FH8Otՙ,MoK(Phw fF M3 :&0'F ],D*z˒SS;d-O/ %wW3|S\lqlhmKd | -ujN˻n(ף%B)//,8œkͱZymk4p K[a#|#VRF=DuM[DV8#۫{wGZ'#\3ł}@FQ3tCai_˗>;?&x1D;{/N{'^hñz{0xrq'^d˒ǧG,u}iO\&Kc>r|:2 ż=foO3gS.AgdpZ4KHs#(-M,q{>~ @]ٿ</qbvi(Dė'T؞17!4 4N8>`:ݑEIM ֎UN,y}&ؑ <\"ټL2%Xp{IAv95fUDj~_FudIGQ#?B0 "1ƸX^X,ɲR(\pV4Ri]ZKh46xNmc$셫AӄS74b1)QphԢ#ߜPNr< "9G#0qGXX2QDD%|(!3e2ͪ(!N<1xڪQ4V2%OvhO{poo(7یoB'+$VL!=&;21%(Οx;Qqq\uںazng edd8U >XLDբѨZ ߡ%ROhD@8EGs}HLB3I #h 苘Hsi2?~GT"#(dL( ëE2A*1HO%ݦB-9TܜX.5$@v6#_f?lB@GsbC,0[\s^cbrgZ`sm`LLp%CסD 8h4qA#5ѕ)i"Iw0bc.,uVy̓*-{$3YIf1 B]<$⿥ơ'xө[#vI||)M#@`&" 8kK,I9lSHrcOUvd{yfgziD^me+Bm)EN]L 5Cp^5 ״>bdi)К[,(nnHtq(މ'==O|81+7MlA2 ǩS|AZ*@ivīM X2v-S7lH1cJ,Ȑ@tP2_sjN7&@-4']A`,Jc<{ @̵ d!(Ko!]O4 }q[%Zgnœ^l50 O@@IAG1q<(.:9)F" #B`"56h1k;$o8vڬ%x&E䜲aC(%>($mbb,}͒2K1v2V %u]S8pN4m0tֲ\o ҌuCSU^6ͩ'l?rZc^qsuǢ\b"SҼ(3Mc "ZPwmLS /XkvnjǗ疇6R)ӁfvvE<=iƊWYỿ\to;OЪi4s4M?yxpdb9w_v,Vk ݑT}GQ4`ܤ8F ps>(kXpv`-)gGRȓP$+dY JMF8B,7vq$qCK!YЗn@Tb꾠Ҙ2BHQab8tJ;*5I`~!xK#Od)ˌ(xqrh: s [^(5&J߾?p*Iʒ~AlK,ʒaXnKNmpV9*#1Cד_<3$Nxzy~+nfؤW\n7h/' ׋͆rwԻq|:O<\,޽?@l2%,]IR0@Hǟ٬G^._d%Wt<;V5TśXk։ *JjEi9v$^29Ek,5=rX z p{ې9$IkZoH(W)4l|NdF29iFY)%$WoqftuSLB&ݙoߐ^ʈܿy &f}s837N|z!D`YiNlRv$,`adPi$71ሉ${KXqМѭ#R%8 p^1vN}/lSuv7l>$+Tyc10 (&py.ibz4f^1+蛖|"Z򲘓yB ӄPj>Hu#bTUEY,09"dY̲\`)5W7u c4e(Ҕr0^a!)h DqB#zֹs3?8!]ӐH+"!YiziIEfDG1QD[ɑ//HX- ֋[ooIv!0:"~3 p1p*ytD Қ"E>B_+z@-0m]12cZVZjnrOGetQbe8`yr֚ipΑ$ 78lf^dyfH4GKr6: cc~5Aje`iO:dY;]%_>|Y365) *%Т]ےL)_'r=P2bޑf/f Qw5BDZS5-fBWJ$Mxޡ!/X E]o)D.RXH%гq` "_d-YpUC/%quJxYFHVSASw DsG[-ɲ$IFh>y X3[)֌ O%I8wh(NI TQ?wgBzp>Dd}o}}m{ņ9ۻ MwBD0@%ln6te&YJ d҂;s}{G^,, ʀj6 >uqL|}ڜ .Uio~ȟ~{s8:KEfe>!c:Kh-;pps}O??sn`:H/sw抾nqQOțX3ZKn:2$!g^]cGxĤz(ŵ+chj 2HR(Es>zi֑C?}Cpe02b:B ()' 71i7WD&&%0On"^~T;EJ? uiH)&;1 A[wֿqB`glTmJ")Bz|,|09WiPzCOU,!V8KtD织/$&i>G#"s8b^rzOyn5-m[sjfZҏz+^*,0X%^Ԙ4uDvNFA19Oxwsˁ9)qniA#nBk"Ih91Al"\:adY&c]s(BLD=4c״ɱJRqFӈ1ZxR1[B܅ovPzN7nr8B)+i4Iq_8Wa_} A4hFqPQ,ebhq$k藯"ID`c\p.ƳxEh5BfDa{R;z/;:X.uحmd$Mݢ"Qff& H ;̿?)מDXepH_=975B;жص-Dj%X CL aLh=KΘLOVqB+PDgsVAX@+FWcס3<.2(3:EVn8 *Unڅ&w-}=('Wm_#B( svyu-2N>p͝D4Z_~TBITdATDeH`% LADi@VH~UG )jb[O82WBA/ql.yu=qۉ 0 %BznV iH tD̗ 9>4ԓ)JC~fuƎL:w2I/ }[,,noILL&6KljK%Б9"6F :,X7k>8<{V-Ţ4X~ϫׯ(ʜ(2dI/GxYuX+t5$qF5T?~bHD26[P(ouěo"cAiޭS:HX N KS`I\^oyWB?/=1p}vOƔ(?e7\o7E@mNbV6} MCMsn^bw7YB,U?j$ }"[^]qAvdb'ٔW캁8OێO> HIgՂOV.Ht"C =#274MG:yBQ$$*%1(Oł՚D \U#8Pm}f+LTd4c˅&7|=DtpMO6suw2Ii fqK}X9j ÄL,@5,g'\pYfNc!__<zbj'UqJ|ڳwyuͰ{,@5(D@{QIEbi:xr:c Xжk5,͹Giz{E\rjjfž=4yFZx>XG/0z8k@d;9 eFΣA)z4M_'#a`RE "CEu(&W&8-6U6 6zC&4ՙ/?}@YSo-%j4ti Ofz%n1Z( q$K% %FkVon'2 :SjIy%+YG j"GI8HQlX=68gQ\- J`%DqD$qX_j:k0EA*g)+tbiB@hAgx?4:&fey6撄0D&Ċ^~3AoY+Sr1[Dq4!8*vF(aw(?c'1Zn6 q$Mr(E(@KL)f{Vj Zi1g;%ASUgƱ'4OSU4DZ3όu:N0&ŋj$2N|9:8'˒eFږɑ=Dun护g5q$͖J1IDb"$xC`hzO3 vѓe :Qt]:Y7,`ƄwK)""bhHapp0"FG16Nig-Y2[$&ISTέEPÉ0W.OG<]\ pzЄ0WϼQ3\L]bp$*PK(!J8E\BKK0Mv\ID"Ȅt 37wψ֑ޖ+޼O{~ipfp>?s_82{J ⥤,FYځ#\ĬҜaN;eK;L^]s3Q^x8"d]@"F|K;0u}uFDj2$W).,qNKzsE:m]LMztc SI-~p} 9R(@EycA0IBUHcb [C ILtND3\-N4BEȀZ qBGqaJ@qhї~%#aJZ}CH s8FxD 8W|) J+? ('#!H" 9V _Ox )x蚚lQ Ȁ/qcd`l+(Sۂ/?L+W|O\ݭ᧯yW\/Z>= I[^mW ;&g#ḛjT=\C> W-8u;n,M9bO̗X+DbǖE)0yɹOWeip,E$ݤd=+QQ1]5ODA%>|: 2__׃P T06Gʸwi}{O1,3ӑNieHv8Y\]c ܢ )NL 9GxIK :/LͲ Dy1Ru-!8bY\\tǏ?;X|ͨ5T/O7 ~ Gk͗?g4!fDsr]1t5yMH-ϬiZKa#m1 YEZ%\$i;TdȢ-ֻ{Ä4a,yfbeD);ԣuJcgdG>yf(ʌ\"I[ hXl`D笷Pdv/y %YV09Ky;\mOI2hc|~ؑ ^Z<< =+2ir8&43B$Ҥ&͒HIRc8 1z7 *FKM36xi1֎FS)(J:6+/8>?bvQ^.y|OdɅ)gHDLţag;Mt(AkO540yϹm&fH3\1h%Kz77LSp҄e(s2i{`Gʸ6=v3Jix1WrcZ&%& fF$q6. f6Bc =li >0ysUϺY e>;΃$=$<%10(z+0&`Ȑe Ds ~V |2|Qs f,BI(|4t3ǹyp'q.L,9+Jaf}:9:4E1xq rK38e9N36%Қt!]GY.?= yuDc@KŻZ 6$rXڑ""МjJ0fw7077$yD%H$/O|D%cr;nOnRi`TAё|w_*{1ꈻ7_v'?C{D؎$Kz/՞I*L,#ZFS "mh ;thQӬMndFa|f:&?1 (t:Ӷ yh*lBc)2c`YlFG8܈n u R&c%I^)C?- q%Y)FZ~7\K4zLO#[cUC~,2I掛[t{G4FM`*뛻Z?X9e)Ғ\1Q4HCݷgnno5u#Qǎ˛)^*Pɂ c=TQ=|#b,Rv|y|x<EW?qssNl66eurxdŒbɡhځ9uOiUN >i i`T dfʣR'9vdiN53iO~= "҄8$a:{t5㑧CE׏<>y QwT9't|;($ 8U;̻yra 쫚c ϟi{q"Ts>WLZcxhC`[߼&Z MO:m{!Ն\1θc x8'4mR=Ac"bÀ?gxה?ԞIҔ*ɸڮ)blz^N#Fv=__*|Xɲ7k&HId8|||:_."91/Sp39G%y y"'yj޿؜iew؏4êz$s#@<}| QUAI20ّՂTIHc|1&-cMW t@>??yIIȘlUi&Bv%]d tBJOyib<<~z&Q$2Xr`dqK`PhבE799 38AQь9"JS" 8lS)Q(F08?vvϒBsnvXf_`w9cQ.t+6e5.4IgсsbԃK's)%Q) 5# _ZsEPz`9Uݜ=tKZ4@(I7V9?ֿ_*ij|)\0ڮHJIjI#gp$C)33a3'eSyX\lTMȹjph7Fiq:[ϟ+,г,ʙm B)U$HG+F;e{/&kZ$$쯿k KNG:qwf8Pr$!|l1W풉fl~p1=9D'uE(I5,V!YE3b| *j|hq}u3+ a"- L8MI%U?qWEV G86 TTH3-Z*߰!$? &IWuy#<퉣|9(ę|8W,[7DR*7iS e,רS36?w>| - W TD1RIQew/~by^f!B׷CtWܿ:ߒ sג~E^n0q˱Ṳ'teQ`秇9C57@:H0ZKqB& S?^XntNf8Z2묠O2f '4!)w!1W?lU G@$H/ :?\-$-J<ȇ/UbMz~vy-{%(H,ݷUfu?ۻY@DWiX,Ƒݎxuw͡93]|&`R@R.e#qaHc 0F֫0bEY0WIpzwt]E^㐠b4g,qw0Ɉ([_b%0o< * d)q6|7 Y@qr8;5rE2rӃR0G@,IAjKY.f醈Qe$7߾g"C9޲3D=R&%7oI:}`Vx4m5`=X=WQy6L{ +cY ,!"2*x00#SʋZJ|Y"$O2)TD$qB&<=K&dQ3-˸պL~@ "&Dz޼ *bz h"!ɒ' =_^M¢\^|&4YEGa$ׯiH;L|[$q:֮, *Hi3^ˁ{^Vu0~"K4IaHh LLX8 H"4ҔxE<=NXm%Cs8MX.ؤ -i ݱgW~4.y|x"S^+f5CI!S `qq%̠-oUWW[O bαeGbcPRHbXMy -* $q%4#g%4(ML@HIe$q`G ~҇VR8~# 5Ġw{#(ݜ6<6fdq=$IޗgREaAǂ)ܶm=Pk{t\u]7ŸwrzG!pRZk ZF>W]GO7#,gKL"|M{pJ;rY3^5^$fp-zD G|@e7$ i|Y#eG^(bq~jfv_{~ cY&&~C>8S>gcaOx2KZ2)R$lmGݔⶫ'&"WyPİ+wx.OSJr֝ f!Ck2QhMl[fC+Ib!Ͱ݀Dgp0#p38H*gTFkq}-:H}QJr|ihd2 -%cc;;3 è>>Gh@iG0~8m{]]ʤiƛQ}g%U~ad7HIpaGΖ j0GEMT4mҊm%Q 7aD1q`jYG1ƤTeGW '^{adFG`e״MU=`gS|dS4$%K'>l?@Z~~ҕ{XQn0ؖCG+~Ui;w~a]Z;>(8U-ݑT,PRk")ؾ|?@)?ƻOGkPrɖChD|88=X=n Zh<2U! HZM:r:d(+LHۮ9U V|ﳾh#m_ 9)7 1VtmMDLOkLԛY1e@T!8j1}phL6cCtg g1)X9*|atLD:bHD?ND oa J,Y\Ҷ/y<%W04$6P =9|A4cO/!Zg)=8V% cUC6NeC<];J9Cyay7"1cۓwE vzpUKalnoFoodLv@C$:F;!Dm*t$(FsomsKq,,cs!cq]omGgO (ezP-͆qǡ9Fp:tuGW5cES,s&:n{xXٞXFfص,cmPR\s~m 2Xz븭NxҔZՑylk:}K@b W X˱x G8O""!q0o#Q~ticQ{RcY; ;Kc<0c`pڶt:KǙ.x@(LH1 n }@>:s"zdfE$IqQc˫14MGAk>죛L+o?T1V5F3:jĖǤEwwl* MSmnqAkǂ \30Xq: MS7-8NSnݤ{_&Q(n*$CߣFi֣;/ӏpT dN"q@k.>"di4SL 4o;k΍DE)NiZ0O zG(b8h-ْC㒘`w3i]9l:Gokړg^,W(zۦ>8N>z bϞ3O4o߾|ɏ M[)]Qp]-(X+^uߵ]ޢcCK 'љZJw +Ȳh"-[p#Ge#0^m(!Nb4zwP퐾cpvc;ᥡ-cCy<2_-q|A8@Tlv8+^k:pڭ<ȮNMtْSJڪp{UlOxw$'WcsRr0E|-K4j&9c0(&%=&D!<ѳÁ$Rw|ݱOim/ 3 3*Kށɋs$ۖHX,, H1AJ>3.s~bqƲo+i@AlYoyswCtqF4vi96%Î68tB-?u c iln8 4+AeUr љ=x+PSmlGz+DqiI&El&n`8˞muCs(_)ADHӴ<_9>P8="8zN<׿e]zbhPiXhGrgٳz"`=0fc(P&mJ85w6wF z'}8)_}A$XaWsij,!IW tٓ 3^>)8_ras(97|jO<<|l6p:0>:g) tF#t~>RS,|G*r..xZZ(O 67k|')nzsd:?g2t\-9:6w%W'8+ɒ@6Q<4I~GMĨK;hqYH~G?%r\_g ۞}!MXsL:\SG1yrE{dfx躖TjDʆ(5u@p@P!"&nl -$Ɓzwaw{拯h ^|o9}n:!HIP$9˧Dڠت{O.Va/M&s>9uɓq9٣Qd)eJ brxdf9!9o) @w`pT^EjGϟo$"&S9!Mؗ{.',Weó^'pv~h:gaۆ渧۾A*rnA)#Ѹg~2bfpdtFE~r'b%=tUHkvpvW mg_q,z/"LBBy ͠. ҔN(LϮȦ90n{a (GadBIL/-h-W*p6r(ՑȖ)]90 YODs0YmR@)L*(W9?ⱀFKMZb#DRѷ#+O rњ$Ϙf I{`v&K(Mt2 kG!KyH"ʡH nm.G 2m8#0 t#q6`Z!ƨ H6 ]a$w:`EKk&Ey1'qzv#EAe"20'G ngk$D!g$魣w#ܼr Ǫf8m5`D 1~G =e6Џmrl~!0=dBIDsءkjnoQdIb#"( JZz\4Gg]#CLQ}\SX4{>1R1t8pX'4e9EIAk ۷JxfMkR)q(N}G6MҔt2+"|fK>]a[;"cl1͉\TsLnH#.,P'\xz݉傳=QP4a{nPwFLj:B)B,Y=!\x)y:AKd,GNW35)H}`LD?xעgh]|T1QSVУ9 L$)mS(fWR4C]Sw[~vTCHZ#[l7ERxaֈD _u=;t$IHTŔ^? N"ZkS9EMځfVM(#z/)ˆ{7;5Flh/4aZXJ7 uˋo˿=gKr񍏟sJyKqlFonX*ˆ}miZGc`I#IR ]MZRQ, uib~N"(f/㔾ka8[-ld]a#P=uQI6Ӣ,9 5J?퉂5εıfREz&i1Y-P!pQ !'ƶQ=ӗӧ T+bN?8T;>GC]myxbl,ΟQ-&OpM87 e265ϟ]1}qp`.r|o?j‡~F4uO ءp#g:&t>9]Yx8bH3{n߮Lf|'{KYvGT5|s,8CnG]{ʣ-+$R=0Cds6 Bs]Ysh:МDCY/^U=_|\\<#zXqzj"Qt4B j>ZQvqvd *0Y~5PqPYH 1AҴIÆȴLI""n層ynxxf{zC?8ح;M8_DEX%9|%!XeGS^qD@Ё|cb]h- 3Hg3ߓĂ$V-oonۖ5xkGS}t9E 9-$)KNՉ( eUql+Hc3oq$QDxHFhE69lA4czK_6HޯOq7-Q(0sk CFmL|b>w1EZ I$ƶ-&J0yA2oJ?0"lS"Y#Hs~oi:ᆞֶ "E(ATUq6O1qIFé*ٗGbF6ֳH|'uMtDFoF>@Ӷ\^\ D9& c#}e5eەT͑峧|cJ^OHXs"ȣ h)1u?<O6!um4. l;6=olH)m;2tbt iCv|v3ٝ:LKVt ǟ=+ӂHi3-ho8+;x}CtA(A6ȓX⫒0XpД֨0 OOU\-1|9X-=CW"%$YJlÞ*#Ӕ>g~S N00ȐV>g/FJ~ӿ1ZqczHyu`k"%H ׏Q-F)p;K'QL:NIB} ʨ} 3?kFOLQ{ftAل Zšh%0"JV# rz*Ӹza҄48LT]ÿ3Szm,r`^ܗ{QXWHD%=R 8FMz<mqb݀pf Hmp~Q {HQQo~#9)I1ЅQ4FпAYУoڶfxt @5H\2^ļmb;ts6uW˂gWOI_ sz N\L xL`tFR&cz*sp 8] E//)Av{Ly}s?Yֻ)5S( m2t6AD(CG8ՌN)$cm)L|HaC#>sf<L mD y@Z6"E^iL2|Շ!Mj:]sTpdD)| _~56i*@ӗoN{z[%1}諒W 12(LD1* A$ ؾO})Xn4I?FTy:; Aa@>sؖx̲nFջ|?{Feݏ0=Ȧ[3.?Q#SGAj& @Bd f?3i\4Gcp4M?00t vIaPR`-cB膆8~ KdJ #_q$ }oYxo~o~xl%J|b+Fasz\rqlJޮy׷t!?} 0^ȔY6CȌ/pbD<2G%Ȅ~p:?Z./xvYSxFQv==WW?^<,O3֎Ba]c#׷Ȑ' %U" D M C; \?:n3͗LL DF/znsmD~V Z3DL1fxh65Ne~ﯢs=1^R#Ęo(魥oh$(Eg Q$?9I]>AT{H_ |:B] 7~kgL5%Ms$=_r8UIJ4DH$H,S!Vm~GSV4~@͓x;$1l'~ HpqDWɊVX?p=OgQ46\e퉷_y<|B'̿_aƑZלe\}vckl*MP}Ós>y4Y~Yˈ,vK7//Y؁H)g+ڮ%xuG O "~`-ڤ\N f)&1~s^}%Ke{*L8mKN/?xPvji1P&3 Ċ5RHVddIn".dž$zeΏ}XullqLc/WZ-_Ο\ \d>nu͛EN6SU%|2~ 4b RIQ:^mE1ւwmKG?dMW)>0B"ʎ餠 ZNw\3MR$Gxa'sPcvwds|z<m)aկyE&1uqv~Nmy6g/PJ@ @h-f2cwjyZT]K$y_fXX.y/>'#GK+Œ(Jr:]G+Jfs>lUtvԻW߻mgĩ`,aT éDXjbjKPD԰ZNvUK6+- QaP"C=`. xea{g99(@U`hm lJq*hY'ءEN5@itf/Tќ׳~<`~tqps:֜Cuɳ I"$?4 )5ueHr+ϓٌo}9C?z~wx=۷ԧû$!-2MEq"#ZWk-W7ˁX84t5E6xP5̲fW`ٔ(t7Zӑ,2<Ro 7ID^ PΈzLDBB;; !R38Gٷ@uIDPuװow[dFqQdeXcZ#YV0Ry H[JGX-:J- ~ߟ]at6h%i8Jɥ[?P M AFXm{Dޡp/9Z='x_ݖmGF5NA]dFb+.Lq1ov(p6x2M3ijqF/HX, /]_>푾c]v 6/W8q ]#6<k #|D.9)mPQ!/<6X<#Hw&% -i J)C[g@i h:E0 ipOY^-Xg=oޠ&P:/{4=>!* |Ķy“^|jx 4"wc$o޾uݢb;G~d>g~~ٜ?^q4zlgO_=onXX,flmG\1d1RIm?p[mmEOGPlǟ|¡,i'HRXq|Xs<HbH S4ݡdP 8ṼbEsCTo>),DF@.ECwBi,P{*dH |(ѷ=ZtULpN⻞DHL F57t *Bʒ~7o0Qc"oޮiRFon]st(<:Gs~UClRL0l6qu$ 5FE8B Lrá>{8?1˸nnM<$"]3[H`y>'2&%V}M5D*p}0r0ų R*Ntbw94 G+C]p#38ƍzWwg dJq46Fd`LDLݣ@a$Ɔy'9eFNȍAu WvAQRw;fI‡ٜA>ɱkΧsL$PU=:8bZA[u$cBkXg:)&ޢ"NR$IB`fZ29.w8abي/; +׿Jrvpr+΋ Y±nJS>bnr Ղl3t :At|=]Q-'?"F̧$Dњ8I:)-ò119rv">UdrDr-YgĀ8@QwߦNlw{,cZG-ۮ >V8- 6 %w`J8i;"%xMK=,'_"l/Ȣ`_U, TkDJ s BEOu+J+(9FHr`a= ??_(Ҙ"i^9U _;+!&9};sBbN@GhL?:\sR*A:I-I#3C՞gaG?GGٌ&h:I)ryeG9,rvG>{FYnp} y{@Rt$Lc>'OywdOrjK*Ac svy>nlbaひ0!'jás%S; ȡ :ɼX;Ag+ḅ9T?8L=Ǫdal6i=}#%] ]UHP$|k*vb :㔏%?*O o4ap%IA_H-#Io  H#=f m[A5΅(BϿ>o>cBd:G@xی-P:bǃŨ~hLJ(3%ms{KO:! "XOq<<}򂋳K>wZ`8eYj@{՘Gϕ>IbvE$L91F'9W{6Ek6rO-qb<}9hɟqrs},d L?R;oj}࣏>-(VJ-x Eq`- `щ&%G6fK5w5OW2b_W c9ϾO1qc/6kڪ }GT,)tO3>{`邫%r o=i;.^'v5OÚXFئ! #Qp2>tB[$i66Dh?"$Щk' )CS8hCE[.xs9k.RE'0]q{}K8x~'/HD<q~uϮ8kʇQ e[޾;8E~Dl9n[4'mc@h{+IV oX-c_;v'"fuL l3#_Ň㖸=2Y^bT6y8ܯ8 $%M aW$ iYL ̴iyFZf&{|# r9:` DyB4(cЉRٮHdiJ6DPԱ.S̖TpZQ&N dpB㻎y.ޗjd9ѳėy-9;;p14-z9²'0tuM#=x9SoJ0lO{^bbJXپ.VLmV(b op(đ峧{_A I'ωܝh=F)ZGrp4!3T1&K5LaKǖIQpy˅IU2QՁxbOÉIr(lzIRW_^euV|rAy|BoMɬȱ)U۳xvuF)҄Ք:qw ѓe$''=}ˁ8HF)EG emIp]c8MnKCׁ늫7o3"3hɦoh놶itBf$$s(m%̘L3n0F#C'ǚd55#ځ(IQqDۏ!2 WUMe)ޑD1lBݴHH4<5LW4;n8mS(|QU5+ -$M} 1j[>.K"ἣiR5)43o K3{YJ2'6lM_c;"ÑYw*`[DHSuc 'C޶L!W*;f($;&+ sNv(&&XI{k.\Itg6Rٖӑ7G֧ͣ@P8!q!e3IǙYޕTeUΩGVtvlQz,zX#| %M2xw]7θJwS37^0=WN'ڮyoHxt ޹ zRjf3Aqti`>DFSW(`є{_!b(쩑9.J%'M 8J9^ Qaq嫔"xRrQ=.O%#wFQBʁc3жIi͛kRFB۷L\JvD*Opq1g>]ޝwd}_;~Oо펇㉴șLg쫁7{6#e),ie;验f-"Sra  ]z%/X.O9Ѵ=PJ:{hzl)@P$x;:(ScX i+LY%Qrް=^Mc' AO'x*S" {$Vch۞#̞?3nBί!_s,L?᳄)i otՊ.GaTD6͉SCybmrrvMnŘ,˹_oƺ0687 Ec'.8#iZ aX9O^ĉq6g ̦9MOZs:>p2zc~`9{Q<ń>8"J2%(kCۼpA i)flsj*&y5iJ4d -/?"hӁD6=ӧ{C<锥,C3a LZ*Sڦdu1o\v%{Oxl 1F+v>yq5(V)<(6=P:õ=rHq ;49$!Z y#ӈ`%5b,| uEW\-uu O5E34 I:DZ,fgXcbJuu`LXNc|CUV'>{n(DL{b0, 2"e4Yɜ퉇Av݁$A4"!ӺSW[݆݁4 eGQd1Z;E][Vs-IV;,Ū@ Eߞ̖쎒Ͽsc<)/%ud4Aik΃ ԍ3f)ZNJ `uAJIw{eyr?01͉#C50K2fYq/!1(U_hmYl @Qij N=Y،|n`"u,,u=IQLXIL44 B`8$bdJ}8ښDxR-Dqa %T*3F qKoEV @@bb@0HIbUV"Jn`j(0pwF y1)RΗ3ӜSW./0cEp, TۊiB d j)H2b9|p<$&"%0w mơNGn`<*9j$ٜ$/'Q}UsX"c(cxq>G3*'qΎ7qc#y8H39M61Yrwۻ[4b"-Ɋ Av8'(I_~Tf}kIuF<6fyqA0Jqq1Y\.|!i-h@{S1wHHG'dQBiF cuթD Ū} VKa\L$2&BHa)Ҙ9:I|]Y=ZG($%Ǿ%z({8jăYSTDQ?BG#ByT!19m#`4Bq>!xtqo3wX@4B~&n޷Bؚ֛z1b`,pΎ";P/)%ƘG7xߤ)MP{hy$(im p1IR-g+ ]M$(LKKpwi$/p]jl8ٔ5uLd;0[ן^S ,Ǯ:$ITL$ORhw8ۍpixZXɷ!x#M"$_1qX)]USȆ4de@d9%;a CD>(31|;$ƚX)NU mUeJy>M϶YPU鉵9 _}F ?{Jcky( "IToXCd\5n EKmǩAztBuQ[ġok9~^vmx[Q1y nL.ƭ+QjA{ڡ0B3/#Go%!9d2X-gX ~ SЁ 1Æt:?9X@dy/ϖQBYÑ/_!H b !Y3;#Q/Me#-<}e; b2'/s|.$ʨqKg̦9+ׯSB%_^04b?qy6eE ]4MYe1z-b% X˫K^Tv mb|$boQ|ǧ?c|UagYRβb`w<\8Wowނ~}?V՗C%%P 4%|F{Zq05 ;25SoQ;Ge4<_-8چi.gKeX̩%Űq8ixSeoX\^op!p)'} DŔKu b6+ˋm94/xsßNL'T{rl(%(?L0f\%Ւmyb1#cv! 7 ;P5s3':UL& WW|u{CIr!p>ɸ')+T$QMCH2T&:<J4_~ꂷz~ e_fZ, N_ɌMwL e$QBmHSBhY.r7.V $er"3beȳ͑&)ljKTaۧq~b/ FY12uO$I##8T%,Dq;n@ۻ 9ZIn~d SzYD޶GpJTc]A'=A(ib`Djhg6]P%ZI4vtb iatn G=.t7P?UHZ3I"O%$|>GŮX3kQ8m/#"c և#I<TF0 CO8G=IgLq'AUhtή?"+23P$UzifazM~9}bJsO"-" ӈr GɸL#+%pb+hj% AVL2O,:N!"B4a׀R(νfL~^4oK]0$a&0YK14`m^Xaf.i2 -Kf63.0 muH*1}V %$glC !PԘ869B_~ /#R*S&Mf-e4J95&pnb&~n-i(ˈ3kV3j;bbpĤ,󎪪躞joȯBEoZpncx<1|bj$F;}G=Z65*7_.zI}h #S e dϿw e{wZM\t`2ٮOn~@<:,HwdjV%-绻7?\qx3q{V$+A-LhƞnGۜH`H$k޼3iq*sLɫ%ib!y z#)A3oW3Զ# UI:z%[T4}=_h(=mQ>7@}yAiI^rh]b\svBEBhT}C]`'bhcB Hfuh, 3_\aR*bC<-F | D;셔8+Qch9'&B̲v^DB&?A1$}GQ07ÄF<#"yfw'J1Vx;OIA4 RT d)͛c669QPnoSjwno.R69s68&9JIO~g*s.Hpfv|}G<)E7uH9}"M21n ∛'*f&5)(ku|e =>3 77816reӧ웞70t7kN Zf߬HD vKV1:"^a 65.S >~,7ۜ秚0 Ypwmj!*.qp<|z`wԴI eMzhuRfzryE#+.~¶ 8{.|HI'ofhe$ctDќόnF]`Dd dFzF4%"e݌fRUE?z>}4hڞYdHAk@8, ƶ'KfR4Cd|&5JB^1DOg4gT&@x@'K-BA7-($6-BGJ7#ϋv`Z͇ ]M+QrcGo-:Ee8g^]<ŷwGOd˙Ucb3؁rH*Ooy@4>2aQ^ۼm!f 8Q)59ن:軞G|0+YΒB't}<2[MבHQ_^h씡Rm7٥a;dI2Cam{N} ☚Ip~IMd=hc!r<a.+}R1zsR1:E"Ğ:1Qk,B֊TGEF~ @ 83N琂R]6֒W,%\k]51$yM~0q#p~,ψq !|~+ow(1zf5&{WVw*ϿrbNsc?Ί}byb ߒ\;D"y观¹@ Uf 9:4F45h%]at+%G)k1 ,1Hnb*Zꕿ&c?&g1z>,HmXU `RNk0?,26orw u,3 T&5˨_oɥ䯇㑮|aDܬ9*a-vA%ni@2,VKzDkE?"{t[_D*fQqiRwNu/soh ˻fI'u݆Hm95K|}i0D޿%4y1@jrbLJ+բB\=CA g=?}2{+uR)Kb,rYn/ψ,'Q3Hu| :D9Uv羪Ht2 zRΰοNge圚 F'ڐ9cӑJ`I 3M8uZ׋v4`Km'JB0)`[`B):P:7[~M|?3or:LJf+~u<&;t5o߳?h.М/V%/E%jz~{d͹\j3Mt=C$mwO `9;V*E,raK>?Yau)ǯ_Ï׷GҠ%JgeBL .DX7LQl~>Z D{J礠 z\ _.yz>Q-֠$J-:-ǖ$SŚhz0\On ҞQ@nOY;~FBF"+2ψifot 8 EFYV@qu Wo [B3 uIǟzl?1xIJ<"?=!3Gݶ_mOG!_{|[?}>HM0%Icd"HsCrk'|}wKݜY-688]ZHrj3[>Pn)W+(rv?O_YVD/H! ]T%[VnW;LcO"2g]՚OJIkݵ劫-7 *z7lx?_eBylȍ(Mǟ!@u(iXਮw2AHAi#]בeUGtdX.MC;,Dȹ[o2-P!\~FOr,|=ϧ~sӡ%7Ki.-=h Y?|3PҔYT4dEv-o߿'Gv5hj$#*žiʂ`kCK]fhښzITȇr8R.p<, cQ*Ox:щAryr1xtƎB'4ǚf,r>09Ǣڂp<QfQ9Qa@d6`GDq>NbN[G#Ҵ-rR3jS۰T傇gR)1 edEFeX/#EQq:iږZ,˶;O's[< #b"s4{EzKequuLѳ+Wђ*Vt&IR\sr"#41,vgIIjItmR!^4!aX2Ro[&%Z|o5M; J6VZ+mxR!LGu^PÎa4fC%<_BM6 R9ˉX_ʫ 咺p9y?q[|{^^l̂o'N+yJ7B+ZB$gL."IwD7VV۶su!H ;*mK8H)y-q}e7۝֯I^i9ofm~#j'k $Ivr3'$Y.N~7 ! 2_^1y.fΛ2jF_-i 3"18xdbD;Mbv*KN#bQҴP3MHxMVҔK}*!ɷ{(A*DRN j/_~%NL9D?p<<nd](؎kC;}"-yqt0<3gE~zbQ$I\o9 U2WzlU"]ӐhIs<^VOۻ\.m9<>ss#O l[ofA^ftm;'] /gb/4'tc 7 h/gu=8 Uo5% WEFȉeçeNpɸ~Ԋ??!-OQ,󜾱,߮؟OlSV N| UקgZ3:h/DҨ4ݛ[ƶЄb#Ǝ#B TU rzyNYQ~$6#ь}G6, \aiŏ7Wa$ (&4M52 Mt< W_O#&-x>֜]n:ٰ}O%_ܮȵm<5<{plk BȘ?~̶؂L(Yg%_>s}a]i"t)w-vb)ѥBXx'?"hA@ !|7 r;x?>p'n2C`'KRn"cp:,,h) Y |Ga.Da$Q=ނd&!M$F(j30u-$cl=3R5*YrI.x[(y 4fSfqĪZg9Lgc "OgF(' 3IX( >CdG\$  B'$(F,/xITZ!R%9K=dZN#8I@E =in"4TeS0ɱoC"}x W,cɜ3%TL? 388tfRᕱ^^{,Kf&yXv-1A(k3i B1 퇿cʫo>w7&άi!F!÷m6;:2. 4="-  x?ߒbM0#|D)EQ^Նi,Kv^ w(uHELӈ4sUSv~*9 c?D@昤Tio|[x_E2!x<-%N4EU'4y5wM;yN?s"TS! R??1^N!*NI1>uMt# FN {!8kY4X%:ruEXہ\iLf,=b^4ϹmÇ efd&% +WD?^puq8]xY#oZn~t<OR,"8nmI )fYruݛRxD\Wf{uÙ_~4tYnuMlyPX6>PVSװLJ{KL~j̣jyt}K!,>70z\tl ʢQ ] ZiBU`4`$2H$dixdt<+Xd9avdơ0E~ PjŢ*R Y"*[L>ȥ$9ԝS"I*3H{MdjbakoXOT9k8Nmj*P-9 2hO/$z2B EL2rZ7!Ee7oɋ*/giD )sn}KJ( 7#XsLä$XG Nxt ]_S/mt$jJl q~-v"Ӂ\::xk.ݙ>߿g()rcG}L_kH3a{ԏ{rqޒg*h'G'#/7oӵ 4'iP_F1DER7L9Yt=I^VWloޱmY.K@ lwefK]p 6&ŎL[L٬eDoBz;2=F/!Kxy{{EFv+dŒ4,Kx7_?%Q)L*&4@(T!uK!ĺ,ȋ_' f{=x'j (NuO7ZNaEd^Lq]ݒC)8i)5'P*( نi (^gE ʔ,O9rvQR0:L0EPyC}LCTTq(R="r8͚M>b3XԳ3Mz*mVn焈,U3+ISTjX%mJsbh{Dl{)ɂ Ā6gjX\@s8Ӟ/~ *Fh "YUj|v\TSM&Y0Y7[4*V bc\Ԛ9T S!8[0\TɾC22a;3Y ) È''ilE2hT 1R}0As%+r$3tѲzH U`Ԉa`$0'gc~$Ltc.=~Y5jh&3 wØT*kw޷ᒟ.0Bt{;zehamS^ |k̫90#kը7?qVϼk9_P1Gƙo^|ߩ_SImR0!IC1HR}{~O\ua@JI|:C$r֛-&I6kPZ =Juk&K!h-f>eY[6ɢ_9cixH(P +6IEKE%,JçL,1DiO2jU_޼媭a7 6(_4ILyP@ d*")[ Y{G x[LR`C"Dtat.ִ"R H8û Md2 cp?) h/g޿f+~a))3t|bt#2D~LT)]*g^_1d+uTº_n@W6D4 :/( j}ρďD3s4QHs93M i^ F%&_7%JLKB Dw\C :ZD9!*n@2HJ{u8 R)|\! mM "Q`G12O i (!1*+$Ox@;AHHuabo\qׄۼ*S L Ȳ%I9"I:G *&麁rG\R)FC[7OܽGDa e$@4y֫|r=ZT+EB .mO; 4_P$fN)౾cSi Wipp>O{F'oNLb[-9ZXn8^˯t#A,ʜB<e{&F×3OIwkbrS-ɕ$PFCB!E0LcG"g'СD20 vJRb |}`tP dVL&lv TMS۳ڕX$ǦaXIE!5YΕj#0ѹسeR)D4CmUqW1D4}I]:! j&) ] s -_Tsl GľV^2i1C@xM*{i^C! 9-1!ǡ~h -5msaz%MBDH='û0T3T! Y}o=Am㜦H~fywǯZ(ƯOdLig6|D! ||? _~cMVp~1%o[# ,oo9Lo0 s U'[%N td2Q#{ђUBV,&g-"W-ӈ\g$+SȪ__Ahn6}GniI>y @}},?#섐Rc9MUͦ ?(`cjJs$Q{rg!x q"sO?3 /2Fd.JW\U;_JYkVՒpO\bMLH)]azo]:Kx~nQ:x<%ͩP_?r Tw(Xn+^^&N{Bpo(w[~4PiR'¡;֜_86%f͢$ /#0sJ· ]rC=ɓGGEk'\I3I5<| YNnR!>2r>SeA?\5B?DcApi?޽6/?yVO#I$Ќ#Yw3#k" c7dhO? ʶZQ*I8nբ$ՆN<RJhf\? Ei_>}FIE3nn6B2 - b6GjCVͦzꧧ@x&MEcGs>|p#&ֻ@}X$"!H[ڭvNt#JegI $2P-2N٪uIq8՚D92aUAQ5JH$Z* S0 >(":Q2e +y)"zICSHCH*s<וxsEpji/,QhںC>($m; .hO BjL3Ti.mC? :=i4JF!iT Sn8:ĉ9MV9c2HIㅐ%n@4 ƔĈPYnkN]@ hO',9-RipH ef~ @dGv5כ%EɥkbJMb8C0x7sG>5_npB/X7Qș'T F)rap 1Js<*Z<#+KO3YkL6yFLyz1q 7!W IfLdG|oɴFyO#EYn'B Lr8fu,Fheh-פ-eRG2/?rh9Tl%}K樮pzkg6"2d{bIg38+*zviR ^77 03A9=z6[b`"f| HrVBxM ya"ƼYI־rJ13G*4ex`E;?iWcZ)}[#^i3EI9 __sk/*%a69Jh1 C7^Y_RJ&ks=pܳo/dF%Ւզ؟zBر*l>|qp, a$Ikf0/vK [TډMA=L3nwdZ# EXЩn֬ $i{N0RўLb&s2t:[cO-+Od5E hal Qa}wg$yzXUWd(є%8e&eҊ/ WhAqAߏOhyܰxI;Պ $.,Xn)O$Tv9 q,J6=#jt'}O'dXT%*~۟gY[zӴk;Znf4h-C7ѶDQ& o'chQAu@Q 36+Y鄔 e x /fO|3\?̶7H2H$[ayCVU8Q_Hr[h-Ӊh.-B9I$/:+ɋ%$9YQY3ShҜcpQ^mfqp77LmCߵYBS,򂲬f&_ILk MOUӛ#.LLn?=u^Ri:qmW>T MS$%2'ס R)]M̵@!hn& ~ ?[ļVѵ\A+?+95!,,fI\'d:A1BI^M4")T}cy?ʜYu!α^o(Joz,]}ibD^mX֯ +kB*c$MS|TՂ(^X2u0uNmβ+dž|~&$14$d:8+jjWp+lsǷWeǯ{.ǎlXw`.ĪB p>9<|!HB&/ x $#Z!dooyxG9?[h7%[厓Lj`U%퐕 55*&&/ %K֐,LEz'E mM{ov"T-jU(W7ܽ}s͚E].$qbmy73S-I&`Xo`Ԭ4y~svrvJR ڤqѓra]@Jb3!  \ҵT3t59dZ"_f1AVqi#jd#C;C * Sl ڶk87 />OB M;v#>LL@B$ @h`:70$ÑHEN$)A(026Xs_^R#EBP)6lW D*Y^fL:˶F&7 v˪,IIZm/ik0Flk^f h5 ]}A r\AA)Mpu=˙vj ѢӔvz?Rs:Xo#$5o\%&Lْv`#R%*\ް2W_??7ʌvKQU43c;C݁0# ɳ]Ur>`3J>s[tg3,3^T,u?0NUJe,ٮJh^x" Kr Zzz! noo^ n}Sy V):g>?>+>y͛;H(Kk`y93 ^J+\Ѷ "#fYdaO?͹Wr]p3_Yn(%ͩfQܮWcױ?Y\mPeű臁x+ud˒$deeI7LH) %E*vDgӉId` u~`b,b ??q9dmӒC7]n)Sy~h"tlhEdlGv(3i4$Ơt #I ([PҴYd @_8400 #eY!Eckbx4, Gߝ兗Lvw8NLD\p 1$dٿX,*cj:DtCs"T. ГiYņxrD&%)2@4Uc݄e4iҼd2؉ $6x$S ); ,rc{&;Xs#_'2Jz`MISK3D]JG%L+$y&ps+3{fvY`NXnt̫ ?x[=d%8f?=>n =,CRAT~&"QX R@)1ת/"&Mq7 zEss_PMYfaP9ZkNhpXXDuɍ$CcgE I=t)}:YKH48OgMr2q\q3~F˩}]K{m[R G ֑2x?'bq4Z*~/ELJ)fS?*SBrIU.P?^ _ xK`bN?͟q]hn|d9~5&I(4wMi({#x&C3A)〿$W ?xaZ?iùH&/잎(2D-;>|YS>Z!& jzpEIFM 2 MZ^q|GNՖ{tw BJ~.w{/F#ʜh`HPo,}'?//_>1=ܰzBk|8n\3לY}OBh)%}\#ίMEَ"Qb$!F4rEeEf0 D!%\bs ǚCv!^(|UMBr(Ť .o7 J @* v0FR)Ȫ,9%̉Lx?7'dL݁D:lw`]H<9=7Ȭ *L@/7"`- ?=$+ "_~fE0iƤ'v<"~^O7HZ'+;MKʤh-gڪ2B+ f(lEtmGO#8rU.{OjCU.X-|$Lbt 3{uͻ׷n,+<> 7V%]#{t`?J2b6kwoQ iDO|2T;2x? ,7ez,9=_xy>Ph?Hsrxfs}oX_]mh>?[iF,Re%׫<0zt;BL~No^ͦjE$h95x]gؓiTk,j(gd2+I p$IB3MPw#yZ]r {:kB+5> dzHI1"łv8L6eңu-d%zUEJj|m{꺡k-m;2 -MFslzS͗//h8!jL^̈"81'V)_?~%9f}˗O,h( -5FY,fa61:47tNH߷̶d0y(Pڠ^σ1\ߑ*"tb >O4gp:\( S@ R^\ UrelTdIZ#u diF|^Wq`U3XH6[f`VhiAOg~q(+TlKՂL{<ΎI09h_GsO3ƙa }4  a$:%#}ȋ(LI5@Mwyvpgn(.R4MvdCe}:H)IScf1ُ4Yq^z&;=ƙ%aIlpN)ek$9tels0fP|Ok%P*j5VT(ssY6#,1SJ(߃39u;D\ҹ9 3h%v\]I8N#ʑS08Ďm2G7,5$4G6Ŗ!n*tQT7LRRm ?~"tg( *^q<02PY'v]GJC:IuǛJa 5yn|=ùHS IBfdQc7wءc]|%SZ$a@ϼJ4 r6WNAj&@6lMח'k3A*~ό3PYIb7kqw#b2RDo$Vs5؉< J"E&b7#!ySܭ .1'D%PqNR%!cOUH}W϶p"w{CDNSB Y\p~zk@%! 3,^%$Fz𓻘H%Ȳ~${D$U1)!ËYotRTir 뒺>]T6kjf.JcK{~+iBs&%idbkt_$ꩧX,y;.apd 2cûi0Og~"^'j e"*Ii`BtiJ3Ljb81bZA|W6ϻ޽y=&+O3_e͖||`|V Wtf({lk_DR&rS)M?`~)E }j=GbNBhQ5}{bģUʘ6p<"($#5~z !Y,W ady_XnY-~r&Ns5 zzG?% bt7,hg1DG7[V+<|O_Ge>h Iw`mCdZ?-ּL=m=QVT|#` O]\mh[ _Fv S?=<߿zБĄ+Msnxt+6_w5K$$7D7 t5w+t>aj!xB|=ctMDYdarij^UY1 uɒ9a95]\.\oatdJѷ=VyaX'yKc'IZ#XB9 F+i :U·NjNq,& Dq>~'\&]J$Ⱡ RiV Iɑ Hbҳ}&Z1] ICa߷?:i:{󔿷3~fR?(Cb野`a/5钸^Q\hcGfkM? zf .8sq>M,,s;o>^ݼ/.m.$Q֣xe=#yff\ 8[kB fNemi6yv-!z$aZi$nI usZKU.,#y1FaҜ ft0y#o7kL8iyEIscј5J9n u#ټ42I$HAOZKh~yuwWT3Q8G%y~~Z^D+c÷g eVpܭ<)O^6x}K& "Ji}f\{xP=R-D9Cnu~OH blW+u*cDz1p='Mu4NX-&GNxQ+&.]7(!)Lp&M2rI,ל;0+pg{BBM@h'$EA۶sH̕bCI&TE݅EYF?&\Pdy@8. y3 ϋ&KПB$qP(3Z4Ӈ_#$JsN jAӜ# 1^,i1@ ZҼ"IH%J #pԑfPט@+i¼y۷gLPCqlG >`;`=*7/hT=R+s͔{2\3Uw ^~DSpqb?6gՊj"/˛[1M\-rl6KGd?^m?o>3HZesv\_p>ҝ?'<5*㾄7WKdy3WG$ի /{,fˇ_?՞Y///Ym ~¨C%I,y2oG󄱟+#* cŠ)%ỉǑLU;X4/i¼*! "o1F#B+v//<#A%d_< #Orԗ{_vy{d枴(hS-wH?L$- e"Zw[ R24?X/'␳ٰXyGrSO'nfJYs8`f`3WҟZ]=y gdD*{b>9\\34 $<|F*;>720-ˁخ]jm1ד O2p9;p5 żNaY%L<<2$TY,4/OO'TQ?I Hʌr >pzRS>М4[<:ao Ӊ$WHmh,#2xqo:ÞvE35*5 r%a49M?D؎m|7!gi׿%7Wk|lT EUW| ',aLv@lJՆΎLa{o_aʔEQ 'KaA<"7eƤ5H"l*|t p0fYLĈ=idY.@dYe 704'.ps}G$ӚR?R.sdh'&-'6%o6&BTJwR<<:p=2|ݻ[#/V4d_$E3V)4b /#ua(e ӑ//(=%*Y0ڑy϶L 8]On M~>Y,rME$dwzđж=\MdD+N B n7?D?ckB/Ȋ$-^`i>}ƪ,0Y98$hDIHlÌCe{ BGͧ36ViTӝ&(6kDn_-ZaOL4szLft$%j m4{s(/&ϰ6 O N3dp`;ymnex':ah-RT1iLD2R'x,K?RX1FR |N<OeR'nf5%fyAS0]D"/MEY,I CuC={UEt]RR/26j! W"FDb@9<½ ?s>RAse5BbLF]1Ɛ$)I27\/&aD9Ԝ +-4M( D܆{q$Jc%%@p ; y6WeJ10 /DK{v=h9b(bW->fŦ a5zI%WXoNh,JiH2ZU`}R^cCL*Q_)C:=޼bGVoq1IVkUh-Xo*N'p6aYOu(R+^=HaI=Mq;^߽fZb; jfG"H4bx{#R&窀+У=yX/ tߓ S@UEFb ʍӂnRghq\aKҜ$F'X@% E16G1R9"hQ"݄FxDHnWV(R /K[)y^^L9,|,Z#$L@&<՝xRD m&DGc` HSV6x8e(/]˹郞7zuxxŸ{O>hzv?n}ql8Q)GӠQH,EUR-*z3bڲ.ټBAzB:Zb}G}j iiin'uې7X+TQr}ѻX,0yNR>~Jk'Î\ 1J rDz-r[,Ec}C}$HE"4B킍9EIoa $&*/愲V~;q_~iG;Kxvr(g~l&7+"h('8NDKi"˯1dI?IYНZThSG' >czvy{ru*֫%pv=ESo9i$>~! gbޜwk= (MF\bseI[)ӄh)G"geDXT+^q'^ Ep8#zŪ*ٮmZ` c3`eV/V\'F6\ܒRT,VKtt ÈMCD'$Mi ~ ՊrjBleA=Mɓ@@&YI YU$ؑ{Qx2!jKA^U0)HҌ563hdY-yVb/ JJ46g&0f  c,y*c^v'bHK@\bzb^lG|{0f hNX}sI$RlLI4RBk~Fˉ EA\uʱm\]PZ^r'X9F'kOēS2z"p _OZyu@cـ6 tWz{^͹),b$J'uJJ2cb= >l c 苙I`YE>WV\u^*˒#֎LceٜJ4[,s3f[HYX :dUO7k*DDMU]M=u$iJ56b3WDi&/Z)YV" A3Z#S&8iLn&@.+jh95mP<7ł(14`>&è#\#̵h1r\ERA*Gs&c*,#MSaX^KB"!ss>MS MB@^*q$%\GTR$ ɺn>3|O}wȶmhy[k/\Cfz DDDi gad8$ʙU$K4'ssr, /Jnnn~N0bX, PJя&MIM~G'@0׶nΌv+J zyw$NGvbFY-HS}ՌcΣ}>!vi$ӂE#[WQqƦvsKۯO<54AplF?&c/bQ=)eO. Gr7-*g8Z%nR0y YH3O68 S&)fc-1P L؟Y"|i{T&wt8YhFpza<:*W~\я xnޑ)*˙&K( ڡ%8˺`~b */I f_qN 0y9RĀst>Q7'Ca' !a㺳#Ev- UUD{lv"Kk&ODb퀈aްhCp`>[#*d"afXCD$7N0 (q>FD$bݼыa7m=B! P? 8vE<H5H1`as}׆oJv-I;sÀz!?x 3Z;˫5y1MDbz^nUO#NOgGR!ɓ /O{lRkV-&W8|ylO,߾bW+X[N'Kc͹T%~xۛ 4q]ÑtknJ~ǟqlO/,=ص#w xaYe9l'":F;d)hu|<6d)Ji8y|AKU WWUr`X'/LvefǏ8E#ض?0"*6%ɤ 9T,^,V(`ĹFBPz{DE&M pR"a 4crTQ (MLOAu5fHssXE2EK4/^vt]C4c)4*7*??c23X\USLԌcәz6xtehZX/6vߘj%LJGNZ͑CRϤj']ϷS9D(rD&89O#O/{`"%EFA4\_y|/_cPW<%3w_hOSڦZqz:C{/tbе="lW'ۛ[Ha=8;5ب?eρBoa`P.I,O)lD}wW9k}ǿ>3:䂩?p)ʊO(51Ł15sa8W/t㈳&O蛎Yv}ϩ؟3T۶^hrҝ>WRk]-[챣gh77,0tݜJ) 9H'OCU&͙f;PS9G^SfZEZ/8 G,}nD_>{d" 2c߼ U N0t"%1V I#{BJKZd,&e)^n1y$<ՈiĎ(wdqB!.cmV2/4u mz|ñ&a nJ3zQe$FO~t&{|>1"|>#M&Ǚla(5.Xj-9$nZh[z+Tm@ yE25^u}$ XQEFgһǗG$뎸 R{o'>{@&?ۅADdZC Z؜xx|(*jP0m`1L3YСn -4ί@91J-H}8ПjVYmzs|$$i$44dRr>Q1kRd?}czq+ܐ*F#FC0afDaDSv3]?SCf :empn$5ޏÜ aMB `X7 Q{W7WV+&3]7P)+Nh'&8t4YNo'#_rj~…HtH"3b$Jr:9'g궙vdTDdiJ7 #!1L:h#vGd#0xs?;7nK~p$:ep^g ^$8xn@7дWպ!)pRȄaٷ=VRj%RM|3ZI` H4Q5 _<~r1nPyLDx!)N$pl!0:>l=! 2ITjN @ }\L^[֎\ UsJYgq^'"m# 0\gxy~ƹۛ5v$?KGLwl9N tFc'TQ!%!fЍ|:IBQmx9!1u7qS SѳJ79j<~Ēb7n?ݫ+Z[hbvX2D>{!]fXY ? $rc#D_fp?4g:[vsR HGO9*\Lv 8$4Efӱ%JX-S tLAD cRo_9tW#8Or&' 9dCǛwtÄK~ДiEdT+Ҽ$@BR E+yAc)ʒ$K&;@!uN/m{E9=Ԝx?c,N!PbH8?N2/y0/$UDY:/F'c{H *^hn)}$ ܥNȊ(xt5H =. 5D9I@"flGnHM)1T]Msxdj쟞;J@uJӹ#ϗ,VW.(-xybds}M}6Ʈhg0uYZ ^cvf<3ҒみWd[Ik^nVx&iȵ Q|c9֖_wX'}ٔPfng}.%e&(\e3?]+^1if3D[(|H0b"[Ĵ ) "2I~DQlA 20:H[Ln(k(5]#D~d]fxT(fcY,PBэeR4l@5$zG]Cdsڇ*Ϩ7 c;&09N<>\ӂ(56)H% Ԕy±S^oX+dHb%A(elk{nxBk_R?X\ێ"W57 3MJ4uEY,k,#Wo ȢXq{{ sDU#cO$3HP#! L2Wg  ^R%1VW7(-hƞ8zY^Aʜ|00??jk,kŘ)|bIP\&=~ׯ傗r"O#"ZK{| N-(=߿͆Us8iLՆޝ)f9ό1[tO$\7R2Ƕ59l"EkW|<ͫ{tbHiha$kΨe(:7Yb[~ຎ$5xsE"QH6Wbr eSsfXjw*Iɋ|Z}B?z_٬<{;LƬ8d0:Px@iB%O4ӧ<)X70|D^-!xRי!*ĐCoP~l~=7ZdIJѓ伾{KH Q,2O~}:#Ӓۊ4mD!yYr+$LtbFUwT0Ǐ׷dizuEJҏ:0^]26=~*+-e\rX{K{Ĭ*r.S}Jܥrv51L,6 FDgQK2g%I"/J՜c\=r*r!y/S?Dh4!Va"NKRYBH| G)AY(FQ5&)3g-!%v؝O,+iA%NۖnȮEjzɢ,i]q\]m7[L\A᜝Z#frust:".FaϢ*їY5&ϑ&A'3acJ7 ihAg{akVF#fQۣB SV̤ f*,\-܄R0u=yTUPx>O|HsIDّ*zTs_N=/;Ύ<5GFq^ݲ0#LUU,H楯 R%霼ɲ9)s9$*@yj Fə $JS2{:7D$J' 5A+|")ڎx**88〈9v\ݼx+9N#qRR-,uYbtBH%n|#d(Bxe ȒIqvs^2HSpn}i B"4mzy"ȲXsڐ1D$S 54|/UJ",<;4%9t.6a s8?O9ỳ8cf%5[hC#u]=Z+=R4Mї?Egj6pII! (>rnn}OEy4͐s-21#| /C6桪RV2W ,9]/p H9}|n 4 d;y(9I\];bf\zb͇G"%6IN dr^ #N t8k.+!rH\YϓȄ}DLJ}wEr&#߾_rMz`\[_*uwfh' cXd W+^Jh[H>%)ՊtSR *f(▮WH4& 9HdkqvW[uO;V(SD{zy=Jel1sBǀ kc\| _@91" 0IRFa^ql&b{FGVx'HS=04AF[Ӝ(uDBs4h#L'DDtZQ'dIF砋<0gj#B ZcR#$EFW i#$$IfXipt]KP :L,ˊHMǦX,nѶ{^KQg$ē);ެy0 ~N WWK?=緼,݆hRN1Ma=j`c:_痿1O%u=~fZ&4q>fYVr*_3 *r~zx"ijÞn]AY?ǟO h70vgno8ַyjC*(M&+Kv]Z~u˷zOBc9=/d(6?P~EbzYc¬0iEd`tN֌S,*g-_>ج1E¹I%)z)iIK-Q^Q2A&"ͱrP 4փdM@3 W;7y&7wrn,҂GHRe|ͦE#^-42ɱM5ݿcg6 ?~a4%$_m[ "I3)Vv;y1È@ӵ! +NʄDl*M  H)V '[nl6zSV0NwWW1R#biw Qps?#\ ]jg}݉zMhe۾f*vXXeA3y$)`D"$\'H+JI1%g@|"qWzOH HQ1A ;;Pa^:[R,G^+dnʒӉ)991x0YҢ KS͙Ǝ4=Y# nD9H&71QZ&La2~0V1JA5il{($ C3KC)XNM,M)P^%O 4eB Dk͖yg.F'3dbWj@sBg'B?Pb16ac3%014G D'(h.gE;I,fq0y#D%!{<ʲF!'GYŇHUpZEM!Ĝvwwn.^j2 7M×~( G>/h/H _54c͊@7h]ok٬bQISHڍT~!+pD^i z(赢\'+K-1I9Eɱhj 'qRU ޽ܠL/ˊ eddyVٜ(!% Hլq~3 g? H?ݥҧٚ@i@&!By3'w&\ L 2ҿ+;j2MqQg6LJ'\ !NJ.0{UJ8?AM:LT=2q̏"KI9Ø)s:iIJ mۣay{rzb"w*a2Ilk3nn6w .-;f&=_H])P;H # G` 36g\Sf)mn?kT&YmnWg Ia#y"?fN}ftn9sO$S;jU=4 v^@hC}BB;a٢!pQ4-S,H-?bLA TԤ2ō$%/+,wܿoτɲ, #Smmm9tԵ#_QLVefxpݛ^_n L{~seUH9<>#[֫m\뫜Eeȿ7LyGo-4Y(3߾ \TL݉7 'N ̢cp߽?Oq|̯F$/}ϫ(%(_'֑%k 1cq)i"EI׷Jϳn"QW upasi!p&B\Ga6/{tf1+ 5i&HBRgLuZ {=;7ldRp]X,p|脧%C7lj*̀MbZ12QN t %Ҙ 8~!E+.ę&)8 D b'Ssn9 UD!%\hk@eHS; nvuy~踺/[:%"!Ӽzɘ) wsc,qљl7wLÀıYU(aZ9XVrl+TnD2H{>o>~G67Ŋ_ 2_m( 6&j 2 zToܢC60^ [||>x|tz|vMtiSˁn&Գ-k%bflo%{E]^Ԕ$O+UUv ]KdJ!2-j4l'4ua(Y}R5Zq8O2?Pmq9?9Ra(dFV#2%XnWL)U "y2# )1Oġ% ?2ה92$ %Q+8!wO_vW6 +tr iۉW?|<nM^ouKVkL$`0НGX25v*М∛Z傻o~Gv>#}߲y$=ya8, DTUAQg!?|K۞qmaF~j&ȪĬ*^b!A% EtC(D@W2c"9+xz1k͛q\ -e`Ԓzb?> Ɯ{|ՒdG{" 4I H֋#fI8/~AV,ǁg7o|:Hf<|~!̈"M^fkVd6f HԋBDrEq{dUm/gȑ=2ӏV k_RuU$oe.2V t<}Ӏލk$anlrYZ. F TY赶D$Eܿ–%I-6+(tκސ˰vR+%it'yd%Xl^"fz 4lVko xi9NR<_ dyusKZХ cIc$),<7a8-Jf'¶@(ȔXe 4R@2km1O/Mu{rm0)EؑƁ.jT x8\.±뙦 e @Yrw{CVƲ-**I!,j"PB!WEiYiUckpYa.2c?czfKЦ,+nooR2 W@:㩯,g׵VB/Vu4M cYfV(B z@HDfFG[Lkhږi_[_^/UknJ} q$@5(%(qIaH I\K)&,m 49_KقqcE"HC3CC-K0(RP={̀wMf;O sC\cݜRHڶE 9jyҜNI ̄'з#Daܻ6-i!b:؟{͘FOkQ, UM{cZ`d8Ohk'l# ɪłqD]|~z!5fhՊ}CYx7~ް<[Lןa7^M 暶9qcQܲ;>򞧾fjC2OY #|:2@؏_Ϝ,cF4Jѷd:Pq\P0GUnq|KynMkHm8p8,#Qb.r}~X㬆i$E(#4DifDNh570y9 \1qm3U'n*vML0ņrSм@Rɷ5iuILEɱsx# V_?}b') $0GXplO\o, O/T J^ޓ2arHPZѝNmGYpÈFΨIMCvu0Ա )eUrءT!9Wsp& S Wv/s&[ƾA4/%qH"@nfX2cYLǎwyb^|c7=fuŹÄ@r޿Sv9ap, ?+͉PT-|HUj-}ќՊ9*\Ȕ0Y`{:!s DpqĦZb?i' :(9 #/du$eYdCϡ`y1.<4˿;yY[z] Ҥ(+@ rjO83p.4<8GCDfp )lf7Ico]?Rؒ @eP&Rq{^-s 9 ˻{>{Ǜ73TNgzp -j]i |$#EVR9VKDr{B.3͆r#Dq.qݶ&*ũG%AsnfW}Ka,SJEE86#yG`f3 @-y1H8Tt!f 1ϦhSCcʋU 4g3]~ac]\`B|.qsm0֢bEhyf0gY!$y1NW-M"`ٰ S3mGБnZHgm xB?1q1HUf=I$ 0񒕾XJ/)J9fHxGtt <)_he1$I;0 $Ge 7jņ9v3S8T i>x4UE$ d1I\Fa|K2QmO;\ oTLZ0%χ=dy= k򑧇'^.*8zG^jJD8F>|>s?p5{oKUt>q4ˎ3;:/_\LX( Nc\a԰)N"ƑnXmgñ%z&k9';6 (rGz 5rxGVW#[V,[4qY 'K)x#+ 67Ȳ&DI $rznQBRD9YMJB|nDV̶\ A[ozʼnj̪fV+6wBtڣ#Ӟ/-\ܰ{ 3ef@@/ohˑE^dGJ{G? LgHQi|46⧟~BF |"+ƎoZn(r E .[hԲ"ezĖ"Tgg6HacUc"(A_gj Z10U)RXCD|d? a& 0yU*hbvr*w>r8DV6K" 23hx;ɁyW?<:yף)C P 5~E$I;\;鈬o馞Á1XHEWEFeT5Gϴ_]>d*K S,f L:}Y Q ՚%(E@Q^!rI$4Ahr7uF)^լUNUjB.'$nr>p\b#Zh5z. ŜF:SH Lbi馉?$ aF"JIi:]eQ|m4\vl ȋCHe?.#( )KjZ~)2Ύ\L_qmۢfǯ%Q{Ձq%} !!p:"6+&9N4V_:3 9|R!)j{RXELs3.Z %W.%"e1Ɣ}CJTyE dY 2Y!3EYaLS9> 'jR_?46j&L212L$+s:s\oorbUH6W3ׯK/fUL=0R_m^S=d"gx9\m򙵹'59u=QxT7[| r^e}$p%^ Y!c8OQ(B&NG8G!:Y-|zBtUa7 8Y< a-JkVoow'1dAd?-8zYUnX #{ꢧ#!TAیXmn937K?7b˿%d뫊#7y~zfUQrfF_vD6Ւ흦ȘW/ӑө' CM?_߰zhîc]\JUqa }7[Jc0r\nশs]QRg!mqcKpcp3BM$3un )QV+=MN(x~yUVqLUP#*L㯴 Md7lMo{ %4(r|T4>"[ԋ5 1KvgF3iLH1EA?v3:ъ+G Cu$&#%_%y:|z&͉[B44mjM݉t>zXz@$G]U3{|Y)@Weaږ5Jrk>}xa # S Ŋ=sJErvDiwL\6~Ø[Dʲ#2YaYNpЅW*S 8ELXiz2&Ll53~ xLV,Q)QH&̃Qrx$(EG\p$.ydHՒ 4Μ^!*a2bp>B)F#Xz8;N`&p-MBs`xDm(B+lefx>7,]EJьv!Igh|d$"#&~"%lЉa$'͒.0(L)BDBSRqiLnsbYFa} 25yv H"(m6!8")9Ҍ߉eFbwUbFΌ@UUc04LG s)8ffx?uXi=_iAk+=\J5 ɓs+:.REQ2 4SHQs2)Be8!%S%s_Z3ym2@L a."@L EU!y]1/0( kd!xʠ+]x7Kxz~@gusՊ<陏szo#>v|>jXsĨԲ@LU^f4O^^1ݼ!'Sd8R*e(\ήG6zM](O`h"i:Ϲ~Lw Nм< \/7EuwTbI{j@jrI4#~l!7f8Đx<2HqszbzJ+XdzLnqO9ΈJ 7k"Ci B-* 0 f fC pQgHEm1sAIIͱ=B)4(eJ\sBL< /ΙhEsM) 1 A5%nChK ROD#f=i (]6yYV`!z#M cۢ%ȗEUWd2DǷ~ej9s!鼣ϐfJ<>2 =GʼbZDPxUK]4CZOn"Ssb}}ŢHw|-KSQ*4M9v[\gHW:cX*KlHH+٬'8WM_8|,%iE!׿BLpDy(F9׽Œ1ar}sC" dy$5 'R,;޽~ vqL!01?=3bYԴeRI0DK;LQkt cGV\+>}zϿ Fͷw<21L=CߢQz]lWd!; JƘ0R"„,4̋84di !$̭l+fēo}<($rETÁ58{O[^rTUC:OR۠UUP1ϼ|~ "gY1L;7k45-"IhgLss}% #vt1?08ϛׯv2fEQn&~yQ D~ၗv-򴛰`%*a$adXljKv͞n6]j21u Z3Fy0|z/ٮ)t!`YpsdwݹEP4Dڋti{^mڲXXoΟRw-ZjsXkB%5#0qM˼BD7nb?r:p3~=9=>%YƩPE2>ţۗqrDW;\Ԙ$f4{ WKٟNd˒HL;˒|$7!\Yn*[TpYTW4cG^W\m*VJl5 S<|sH>qn"/?3el) n9 X-L!c",d8?cp' ƞ$? df9 ^$&駑(Z~i$_. R$^$v'(VqCE ه @+W&ˑpޑW]ױw,P̥q=& ;*qB\S .8FR $4G,svS񅇮e{rcRbB& IF-X%yS\xT3 ( .-\"3~ 5 R޻ j{qP13dS( , P}昣s 4kfn_ŭR0ʖ]D?@qvv1A+R3dv <Ͽ._Ǘ_| nb P+ɳ},4J|߱ŒgB]8(-)db{q@?k"킮91t 3ْ& ~ Lo't?>'çg^~;X}1[nb0|~:k$woozFl.sC\Y,~H| ˌEI"@lYV\WOra?K 0?~OVU-԰cq;^!mb-;Fwщh ;BqV%.dUԼfX,oqnbA,s23Db}sGHH iVv,S$F|0,kfZfBDdqy]k) 9cB!5YZmU4GkC1-m{|y¹unE@]TłZRVrQ%5ysDZigqH~D эxL#>Ʀe#?=Bb 88;3{S(?2_plF/;Vy= w'c=C9N#sUo_#LG8?p]-X7|"O/]+-:ʲ$ KR0ENQv/q}{Ibc2a`T6y47gzlJ\]}@* UY0x˟sn*CK$6\> V"#lVԬ)㾣ܲk&@$B[P@k# (-@p+Q#cq UcIJtM(P:C׊=dAe9YQTM;MQ,5ti2UnWdP-VlnnyAKˌYo,%ee@7M 5SnFwS9Q((HsIVhF~_> U\S5– QB'#YU]A*y>yuf>ȷ6 ͩe&.٬Y- wL+Ȍ&Ɩ~{_a$!"7+ )akc@Ֆ 9lu 1H+C膎sѻaPDe Ww,;kuE~h<0:nofrpUϏie%7oP~4$-Y. ]$}K).C"8t,Bpl)ĮX~CYY,1B*5 Af(^.9='4#V+W+b`J,cp=}b˫56$F2m9 #|z~fw:cMv#7|Cn5o!*λwe1Zx~" 1yPCȖ &//X]fA=pBp]xxX,jbIeŪZs=j2ۊ܀&H/)L|,KQQ y!h[3Ef$gQ3(~؁EEVdĿ#yb#$*cr UQa{QUM۶D%%ְXoRB0%Vff?^SMU*+$&)#1G{8^{[\u 1"Z_Xjn("U'dƯPx{f1(ȗbJ|e2x|_ 𵾸f)GDP\Qe՗ͤKI^};~qy !f&0=>9$4ꯏTa(] &4_7D%Dd:K++H70:ƙ )D['!J šc𤭞c)psFǾ!:'(:Iq_[[`,ϩ)H%m!D>8v,ݙOiU Ξ>#댭|E;oOꎫEo ɷ܇ Rx;b)Xf ϟ,Ƕa Og81nVD捶(m M=RzfUGlȲqRh5K}RΐUu΍h)q~7[=^ls9b;#H G՚ ~b i@2:.PEyǞrq01̭T1mQvt-fRd;4VkUEל-KqԷG9*Doiuߘ-Vi:_Z5aZGPͫ k H1\qjEO1 S-V4qo_~%`yz~[eٖ+i|,sL>&"777O*ǍE x|8:6Պ˯־()ʜ"( qd\Bg&L|O޿ƪ>)pcvϿQZCn y^2 Hc gnx>o<{,kvכ?JZ=ޢ Br@5kB⺑#/|[4v`:@=pF9,hk(7}}Erd|f.1udj:ʺbb3 is&1/A0$p@tc؜i=9NgDZ3zGTE=Q(=ʂ}$7I8HeC8Sj֓% 3LcG]4CG7X!3LXy]y؝X,LJGJCͬ@ ӮZrprĄ$#eUy[L(zgU.97g"gs۱\hݣÉr=tv3ZPyJ2#1: Yŷoߒ% RDJHLK=yd:֜1|>*\o74&0^ ti O !u a &8 ]33 q}Otd"beK}rp&䥅97lkbYW$0k=CT*9"mZDn0ULJGQ}csF8+q.2qV⦉;qb 7 H ׎ >ugr"GڒC4XI3-g|uδ'S<f(y[Vޡ/(Enت˙4|Y]pY旟?c]D:^XM2\LmC,SJ( HJ 44TSbna>DfLcD E@b &ߏ-hh->xliӀEzqg%rl;~,/XM{h96z2=u`G0`&7:%>#!s\;\eL1\9f2(!L`~TSC&$gdJ4Q-je,~Ȳ`&M!/ b4*H.ss#Js$`/,4Eڶ̥YȚq3JEK)1\N]OycfйcfS6/_m"DHBHk:f1nfA#qёgBt]0 LӈgY6 a˂4:T$R$iE@|VdEjľ+W!͖_e1%r#uD.fZokpՂMTN3 A?Xe)P"l&aQ۷dra8sO #M9"drG8vS_+^ aҢh#Ww[ĠP*|Sݾ_%qR,u Mm^aα $3uͮo85#ϟ XXRLo4YfQs:#&ϫosjKB#ڐkCi8XQD-CJHӟ)܎*K041`* t\%il;f1]3 $8!C"hՂ8D *HqZ9wȲ|]Ab 9W 1[Ds :c3R4 > &EiHB⢧*ki'i m56g 2hł;#C՚ܜV z)5H#&ϸzSst ztj1ѓg܈d ͖i8vwJ V-cb -Mߣ$y(9,1Lh]q{sg+cJUHhԋ>$BJ^ZHBnğ:k18d099lO|LnG$L2/Q`Fvw??DwJ/~ɫLJ3}BUx8`yW%\p>$ SOB"47@f5E٥ #>g2Ș B[BPڢaUָShA+L]CОqc`&0O09Hi)%)WQHEYNEE-4[5L&ofpn8w-[fdzư~x b/ܬJ>͚yoZ{# /-Q|F£4칿wwnoЊtDCt}sbX1RA Ef g]s|,+ikSq *G iwq7fĺ"9:hm EI0 [(i"YbbtAYY$Gn$S;Pe)dsCZCqfxOQdcR41F8;L} MP2z3pf9$0䦠5* >}L{aj1qt>4٬<;S8,Gpf윣 NUPc\Dn^"M.~'$t]A;54~?Qf!M*!$75Tu0E;.8YZW}GӶ6E(&4'`SO 6G x1$12"aU(#/R%υY  +AA2a_\F2)@)#0ĉs7^Fp-Igh*!;nX1L  M71"`%43D3'QK(Lڜ8yVP/]&y!'ך"ϐQn$ʙjRvϑ0 ]&;sw3K)ė8`/mifXq泌aSMu Zv4O .JjdD0-ja.S$ vJ*lD0H,$,uIF-ptw;=ařǜc k><;8b/ cM0gՇ؈lKR")c( )gcMBlE"|LR&p"B3)޻3sA*$KiEf89]R %kNlsymCߣ(%J JӄBԞ:fsN1|SJ&y#w/eW@;XZ;|4]˩i RcT%M nxn ﹟4 aœ ޞFT6 Ij\ h7q1%XM40w[0pYhn/WC7- Bp򄐱{l/.Nrx_3*f7^cOu.3 ;;GJ'M22aRtPs> u|4EJ1F!ۉv ꂡ: óOF |$x3T aBMz3sJɍ#2x W ڤt]TBi¤n911!DTjQbuu8MJvƊN[H4Ne *#=4"I5Ȅ$!MFdHbs(*@"D{NPJlYŸ]5 U $b<5>@āsd@s$F+ڶ& H&Ot 92 ,>lI(m!FwcUpR9C;0MOia@چ%9c\RTF|>䆶ʂ=˂3sTc 9U n@Sq;n/]ͫ7 I`Em7ٳ;R>Ť 'hŢDo<4C&9Vi47iďٜ,I㈜ziH9Zi,U⪚/PE,&izz4XS[\1Mu!)rz˷ov}&euixq7۞h۞=]xq30>fZD;tyǩmSSS7=lIn ƲR !t2}|E+2nHFM#7E0{.hIi|iPz!9췴^PYԆ06~Y mIJ5~+ >-E78"Ļ7 {؃q&, ǹӗ;T.g%ad@,`n2&UI(>H2IdB!c#$@X$R'S#4iQON\"@\I C"\`控D?'9XdžC1 ΒHLQ` M1n4f'% U q ĹzpdHikH\o)CɃe@z4ЉkmtM`C0쇞4K1J!D=:8 .x\0B"ȳ{$Tät8\"E F%4L+\7C݁} xJx}Ufw$Hq^~wBF1lRadٌ~&0 E3l9)\1RbvyM&fFRjrN)ce#OiќB%S :I[EA SK؁c;,hDŨT;0xΑkM6wTB"<$;hԞk:WJ'?Q*ZE8 A8;+D"Bر;"He*E) wxi xi6 ڤEB[3@sh5s1 J)5y1mOxVQƮg1 ZLI"nFLa\1Y|~ I} +l%ǮeFB"fSM?0X 4:C Uub=_p:UL"pcJrD)Ea!\蜐<<5̦%q'/ *0du#9wLBliۆCu$Y^^Y4dO՗9U-s nC+L1/v@@2K]}b:Lbqh#BTnH&[?g,Og'P#8)]2d&ڄtUE54ᔠ0 M'Ik 5JzA)xƐW(hiuKv%S{w{X04cΎdI`sqLCkXn6 zNj_lE5'GF =IFw ڎۻk0/툐<9j.OOqrm{P=VV% ضdZ!Ch./RoAH<9uOiE;2PZ$85ПNܿ}7?5!E ,x?xx@#6lO:iUQ٪OqOm톗wܿ9wtd8:< ,SҢxЏ^{d^y' {Y+/"@I~"5͌gKv,҄jLiv_>0&:?A,JJ|ur`3Lyx/xx8 fsKUΒ9-mד-Ҏ#>h4Wi$=)n/LJJM*p9/ٽm.>G-욆xQr߲X~zyYt2\)f<y\3)`mwZ./q>@i%RT2z:#]> LȾHK{4c\ &&&7C㦉}U1[];ID sIskpx<![. ylFN E83v*tzsubXmrʲx+ %m'6 ,Ao ݑoƗUлXS^$Ba0 DmIt $%~gRH*Гg {H16b#bQ92 |4'hP@2KZY~{mGt! y ckCյ,KC" c9FJ Yд5BcDbj*xГHY̙-(>&TFbkpx@ϱSCݝ0ZP%:+8N%#˧;Z0Ӂ~Ȫ̢$D{$ٌR(T)]dyNwmbb`\yʬ$H[v{KVvm#VK l%Oǖ3_<-_\GEu4Utr2 mJx& b}}[s|:,;K5x>{V020@{ͳk^>F'muSr} LgFY|_S8)tΒ?9817&ok)Ec0P$Xj0X7F1ІF1[R ݀͐g샒 hAppOH%-X{rPeZ0+ l08;p[&?p[4tJrD`'RэOO.vuT19"j ֡c 3c(B4nB `8GjCT, ;;}t7Yk?Fg#ߋi#;+D#*t#K!Sy3MP~*1M5 M,}^A `{m5M9ICU]#UZ`5k-r4yfXR=05-Yzx0~G`a,&˩;G) D YorT4}T#QuQnIRX]YbY1LŒxGvA9:(nW{f t#2>6X+|ӱjɱL4J㚖㰳l9'43no6xye6 AS94nrYI(Y]ۯu ź@aGliHwВRg}b~:˸Ud&F>_蛆%pܖ W!O\3f9tlq9/~B&/nI9 H(w/ L¡oQQx9۟Q\p<]f!lNVF`'8Gdy0'K(4M jEe(!(,fD3LO?w Q)Ln`i$E9gXѽJ@#O(e5@8cPZ2=M?/ !g3ˤ%RH1٘kGL6Zڬב}G;G0p'?<4 rz$7rN$xBnVK4g=[r=YL D 銺]AkXR Zk֒e9fѽ+ɜapgO}d~IM`)Å."RY:6Bm?g A!bUkqBFFX"cLKA zB݇{{q`'$@ Itl{reJTo~8!Fb 5ۧ8 F?0- f/S3/6 u:2iӔŬDkɡoh5д\_߱=;fY߾cV.y`G%/oaTz<+ځ MbjR#->!)F0 8T E>_q%?G~ O~&CjLVMrV=@;8+LHp޻BM4PJgٟĻdBMB؄#m$JA&H%QJ2-u}mFqcǿG?R%B;ı ]24'N:тkIqRU7GHDsӄ񀔒jOx?'~yRF[RZb@-(҄o?QԻ-<$fIr8xn9ٞDi~(C|FWWG`rM]x|UR6'7<dF[[t00 @sx8j#Yk? :f}'(˒@8UiR$pf(p.0 t;dZG\O373-兤w>Q9 tU4!S"⽣NۏXyJj~'7RAHfwb&Ӊ>1=:͙_`OW+Њ|qD69>/b #^Ls~oOw?zAujr\t%m?"TBy<~te.2FN8;dž;Nѹ/~~%!hNsK_|B?LDx",-ȵ!1/j+[N!r]ج09)TC~h9$YJq_3L ߿"MYeBZj9ʴ̖Đx#BZLXs K\1[WKqX.}vq_q<Xr&6I'vjV=/7c{ܭ缼(H2MH3],N^|j%S` =Y^ T]]Y R`T홭2n.q4 ~`-8oUG>< ޤY,R`$0 1LibzEz@,Qjv=y+f:# xgr7Ќ,.06~pD$igW+7 <'RRNiDo߼s=]H -X;M:ޑ SGIˌ, 32BDOl|o{})&2HGu59RRhTN߶(鹸\0_崶!-KHW-*Q&csqIli9#d֖#u1RI9[|CTY~>eS:^{>'4mM7X71ف7WW\Ȥ&oA~O_= @ejCMSU mKpqi[C !UEյ%FkeQWGp%COF떐([T]C1+a4}ձ8EFsQŜat9lFun??GGAPUMYf1B`ZȞ"rcTuEw>n³ /.QRs#K~~8JĂbIVY.ZM IM+Oc}s,z6#utm ;9̀)&CHA%[f\X?(]㨫brLua8 ԓgВI4{ՎZQuCߎ|zwI*";z8[~Ֆ$e?򓿅$T]0q%S>[cS"uCyU uXVo+&k!K8"K58FRa{0R9V`bU_βH 4gt`8<`Ĥ7M?Z#IBkLxFPAB8#MirГG@uq؊+ FDcq{)$Qs8C1Z{vVgWf! +gQIIwr^ !+^9tbH#/{Ox,ˢ7MLg^"],ۆPhpcG`*qFj(y=Ox|$nrp}sM׵i܄9~6?rL'/JbshTBH&SD*9(s"s#./X lW!?v̳z?[S- >@ㆼkو-//{A"V˔zY-nHK\_Wf3vgClRDe| m#:+1-5bV Uɒ'T2?o_ok,%/QY-DR袈ܮ"t-*)fx|<#!W0P5 BH$-rM\) *(a$-HJ=#> &Q􊦟pboB=}T(.K꾥GB0j&泜iGbTNR$g7(RkFHaf~ǿÇ@]1Z?85 |Nj-Fs״mScZ90%c註ޗŚ|p~BJ B;M=UlFhVR9WY. %RZ^0Zvu"̤bzR|z{bAK6W i'w?/ļa 2JKa0*-.\^#B$v̒IjTx| pnzq{ر\ bE=ӌΡ˒Ӟ逑)=UiBl+5iR';b~8NWh^(Gb?BD[d0ɂ"=ǡrc8[ʴ%*5̲I,*щF&{a%3ӈ@mn0E Jю#HHRp K|JsYBRsM( D^i0X`ar(?{ox!2FW Ha\#uю=!54' ,خoZ;0Yu(gqǍiοW;E}&q9UHQqct[撌c{D޾~2 %g1yE2+s9ݐ.Jv= <1hwM?c@Ib"Z fE&iJOWdx釉 $Zr8p.Ƒ!2`qf9K@%$IR4R ץFNLW%F+R^=|mH$nXkƠyg̔{ Kaƫ:^糗 OEp 2^^^0/P @Ę1IRšFҚ\ i(A@E¹Kh@c&%XqObg6hlG7Qt.r38 g,\isTq'FG kU7q;qB)M2XȔLgmLdj GR̤dTO=i`&O2$#A4S;ۚIA;;3/ :"D8;B舔BF)8Mp; ,MR3 1.ÿ$IHR{?ukX/7߉,(ghm膁ll6ƀ}eYe)?ÿHҔ-@xlf8> B,֗,hp)"AIX2_.8=bNK߳ϙi*6 !`|%XKXJ\"Ɓi(LgiI#qibP|./6Tf@k[6E3ijw\O|vqi)%>X: ¾拷[ƱG͊P!LPaw4]|sZ!inB1 6"ۑ= &ϗX;t4+8kX.l:~J%%_.hwOhw`&$I8ɌƎIbh"+~%Cb*>:Ub!&QkG%HCJ)&F+ L> SOxB%cSaW*zA `l #:7&JF?ĹhEA `r#B($*B" }W_09 $S˯uuokA5 eQ ul>"ƞFBIR\.0Ў4IઐW $uYb'FWuiˋn))h N|e`En !0/S&!˔ntTC;ehY2xw:b'2ev>"E9]#}`X2 ~5/"Պ̩NJ53@8:ik5 fEFw<IG]n輻֏e^20ѼS95\^]Rz5]uwW/?iNV0es9WoHg i`Y&,OW ]7G3l;x,C7fn197m][KVIj="'YAH㞾i4Fדk( U}M2S4= \L#;9BKu Ww~Yo. ӑL'b $R35= NՁX!ю8)(// CGeغFc,D sZP%+Kr{"a=fs[Ko-2Ig&&4˙/  %ѵekX͗H19pCbb9_ dJ0 dmNA&ȯ.`=Fą-|xvCcu#E|Vb1+ F稪4Mj1.z;&;(2rt-K a"fH8XW<< ȱf<[ ɀ' l6w ~"_Œ#2N`í/2_҂z_SUf+~s&Wo{e0_60'fi cTa#2nLjD$`YF+BSCfR2+W4Cqv7w̌aI2BKN36(&1t]њn@y90|h*0c J:cVH!O{p#X9yGT ]aJGc"@gWEJ]܈"`!bJR49簶G `("48ZiBgP@ʄCEmCě]~ aGNbPqiڞ~蘕9kqn4d-5?e=Fh&!۞INh , [bN]EV ]>4YXH%f:72<D˜>LǖӞqEypd9޿TU p:Q7y'3^7_C3y?l5sTuK?{sL~^2K4mSYƮLF$ 5(pH? ǑQ^v#ZaK{:ѵ58G"n&Ag"8ݰY0;1%]7"sNՁW+2'[3)A%E So$$<&Vo>bA6diC\ چdq\<{ЊUR& m~T 㖧 %f_/Wl3SE״Α-lӱq|ځ\j(c(PʼnbSLdnŒ$h=G^gzx}/at.3t9LP;ٞ|='/rOғoOO5I@ލds OM[q:> Y͗{ˤ$= c6Tq{}1~Y. |R\SdD=L25ҳ`Vf MSt')fb:v=oImg'cl-~_3Wx^\QEg{fKLSY}bP@Sh LMM%LM^5]gAi<:X̊!YýČk'dcB qa,aLTM8 `'N#N 7\\n(/gCy; 3tb%I|q4MHsI?9Rok0[8^Z\g3 $&2b| mߑf9}1-W n\")OH˔QLM#Yan:,2+I%;RJt]u Ee?Kd;&M TZ-G e>XY;p!Ӝqh}m9 9o@R n:m#؋/:" E` S5d[64aih)&&Nh6j#Hkٜ1 Yr m0BP <<8?b| ѱ+NaDjŮiGK; L~:pcA0⺁TD1-ӚY12B@Mq$F)C0 HrͰ cj09y3+SR)[bJbD~ȓTuS`c0OPA7 h+ v߃ -P/@#nl6& ѝ$*3PD51}lR"G{]U QƘ,!!G$ƹ飑C|o'MQY&'Mȥ"|dC}p22Q$LLV(\?F29CxSgr |`%)x=&KD7lpWiˈ0 >r>*:husq(Ղ40Sm ؜O[&͞= gyǁUzyQnHf: aW@Yd:JSȤyOz~L+crd}Oo^rqyW;$iv<^~ajb|r}s4Y X^]@0A ȣvs Jj.q IцPY`u; c ̊le *2BtO!·We%f)vnBJSRc(ӜL&hE#SQicj(%8vq1,(MO|&cYtI:K_|P yN5$J񵗟j,Ks)OYObBA,Ø,TT`u4A0 3FeRq LU ,(&,ϸ[!M2Z.B5B=fJ *^آH8zH NvTdKNP2o眂C$&H,C (L 2!Ȕ)PAh8)I䙉B@%:5 ѹ/`XFzǶsŞ[ֳ%4K}Lad wٜhcEλa]1 hqa)Dpcf 0amA&8"p^Y16bCx6hz;psw 2/wUՑa֒)Y}OJSEcp|jT隊%C!g'$q !ɐi }C}"L"BhDG N l& u rlH^}Ghb{+2폸~3o{0rJ, z2+%M! ]$I-#Lqs`IwΝ,/0w3q*YPgF bՓ@ #f*<9YNuQ"ҍHxޤS+#C۲^4r%yusK?{yf7af Kܖ9bƅjwt>aVt?u~ L>M8|zD 0e˄_P:KB;L] (%Aj2#Ɖł |A( .;S1/kIZy :ODIK; ݙyRg#@.%x!%4Rk9IV2,DYi=HN|{) 0۫)%ː2V,D-ctZ(1_^6E&M pio:;tfRa<%AjY\;2bSKNXb f8u'ԟ9X/qL61-R ʪ"F@GPaD$SJK???/][=?Wh6:G#UN8O=fK{kd#ʚi1DO}ϗ~!Wu-/&'j3?,#_5%|aQAW2SX0Z Jg}2H|b'dyF^(BGcFV-jXaQ7+KqNIJ)q:ܑQOz#3Nqpxk:r9?x/ dĬOyJ*Eid:F_F#eIK&g9iBTHDV%L< :xk,( y^GALbjҡjՒqZT?+Coq uNןA^'?}Yf=gT&G^˟~@qpaZI~ꎟlW ZļP0,~-^;ap>Q)9L׷\ƙivBe-0$㛷ڜ~޳nrvFM6&ڃ]ȕhxUb8!8̩(8l*CSU e0#U9_ǁqZx9^PyΤ3NQ sex8áW mmXV\yj|gy9?q"릥-Dƞۜ0 C^^̞|XxP;eb3~Yȳ<ݐ8,io7,q!D$jUPݴlo%W`.C]XnW56aap z%U\Nv=Y&a-?,\ӴP7uce 0&GD2.($y.]OUWD!FIl<7#1e4˲p&^{p!mm "PlP:l7[2=3EY8}ī^|| ;bn,&|||(3ϫ]"J0OǎXܠLFЊZ0ȄYPUV"@ ]i__k{x?3N_Z!5{{1ez<[=۠+_+8=Jra{j"ug  (7wHb ɲ̌cOcoɯU˔ȒĘiR*V5z*!ygX ]a?P〚"2aYSifũY h[zP]rDcʜh-pHܳ* T sGKd8QS~g͚ e`o|?!ӯ<yD];\߽fBEL3|?2q扺Y3\zyѥa;|:.Ai,#7dze Tfc>~29=e̴-~{yRdN|, 28#?=oǗoo9fmI]n#~"e@emycAI%Վȥ?rXRa[:O Bf%1%ww5]20 #_|y "cJ 2" f]'kYU<0=Jj/XJ~r`=, Hi#"`BHn^(-<1uC%GHzph=;d[ԨxS5.0QKszTS")iҞMY(=0Joi#H!48IP%YB$VWLi*3󜪇$vE@iE(!.|+Kv7EQkbUdh*$Reٷa[o߫>NY%%Z) ?_MʔCȔBH%ȲX% 9;) c 9pI[UMMzNv!:"NDDh궤mK\^8/:3"œjVՊy^_ǹm TfuwK^#)TRqbtgU_{ gVeX5L'H;A޼!S9L="ɕgvg^5'T7?޿"[{ʚ !' G{[;m[ q\Țn DX Mb9_z⒳)2 *ݻFWZ5 1A욜.FO[n+=ۢ {eBe3Ge]wdV >N ;TS@dݶ`S2ڪ0TB)֘ʳL' "uhuY#)q>ѽ|obL RӐ7FU!|]H2dZQ%e^L1, BdY _Q10U6F&G _,UQ TUMa>hV!`l 9o7;m2U*NˌP\)iA@ ~ Ng|@C;ֻ;|˙LK j\|&:gdTkAV39b7w9^ñO@pnG.4ꆺ0*4Ǘ~7xJ(MvK]xjǺGܾpj~b/{|w󊛪<ÁÉ0P,m&g˄3<ЄӉ(ix3Og~e:gY7-f<_z ܎s~veeJy`Gxyxr>{vAHMZ0̇8 zrq mCfbӻ.lW "o*ZF7CTǧg~?_ ͜(fȔV >}tF\.ZW,Bi~CM‡SO79nV;ryy<#Ϭr\H1iUCT!K~ avUVrDSn_p9|fu<(DҒfrfnVujhW%R{6 e}Q5 .x8'Q& !MdY9ybY %T=@v-EB*EӮ7d&cXTK2\Xbn68H*W_(LEѬ|b'4gw@9%Q dlqNU!mR4aZ19q˅hG*mXB?L#&Ox5͖ SKc%V(Pi/#nNއT)^dE}?0Rn_LeE1JkuͥYb'`RDA/^.oX!xzy![5xpEɾ)eKPh&8#;)*RF#Uy|3-#U]J]Q: 6@"K&j?qtYYUضiXmkJ9=ǎWZgn6RkXmihՄ GMN%- J>|yxtÉx)؏Hc{GZhn5gqm@9RJUD`ʌydGT^+(< n0JdBd+!SGȄF4(pDp'FKwLcTD_"Ri4/|8ؠxj[ϸag*K(ʒKLjd AhDMLˀDHC h"ef[lt2OBUNJf|WS.8| RY"eD]kyi`Fb }ժ)0j2g;[X7"d\AȬ.@i2šНObq/Oe~M2.9bE|qZۊYnh%VrB K M k2`tyOoM- LіxgyDU|B dq3vIkVp. Gy>`xag.#;R*djV謤nלO{Ngx73tgT #QB?݈t6/:o8GSJʭ,<_tӉ_ro8(fҝ&7pY((2>L*>y>VVEffКmQk;{M` V\}I+ɧ}O|̱`#0qbPWs>v<-YM7LLvbؐt@fMmXfH^Lӄq¢g{{ ק} d9w=YNhr:qQLÇ/Byˮ;ӁsmKd^WFKTH].tDL/`M""/uPVtN tz(V7p^MJ[bx<}. Ak ψ*mqB\fVUCYD=fLu3qY`q4\ -;w(1EU`2H & byAdnDj!mh!R[&g0д \mY$!:OkwzBtib2[M3e4Blvt'PՆ͆@(4RD%ʒ`!"ŪE+tVڬYwm1he^& =&v#˱G4083>$ˏJAۇ=^,y7pg z~W)0 "(@W펞E.Rf*)F!UKB/{6ErxA{~`q$ YMFFljlt̋Ď ! >4FbR2ͮ6:/D?-|SiJ2gƹOoe!؅pNOܖ%HƐ]!0GdS Di#%-MfSj5 f:1-Y.Xt<=)C_Zʢ?t-2fPF-y/{m4nuCV7{{ͺf` _+n$l0 e*bV2/)4)?QoK5_Ա;r؟8w#Kwށetiԝ >djF/# OOxg9$w}K{Sϸ/cj#J< +LYyt&l`|>`B3Å=cG ߿~r8!45Rk޼assz{Czܵd;raLj$цU24( n_c9][I+%~$3:3zs探`""嘠 )mvYp<0<$Z뤒\NG>Y sY-jՒk][Y#"JE̚/Bմ/'Z_" Ǒ1F*H)J͖Ń, e`]67+\dE@I5Me_: >`&/+bgw]BSMY{C#G-=?/R*A@)j&Z|@+. ^N&,%&1Lw bܶЖmfMd~v#~(+˂*b4;[!4ီJP,>EQ"ʜ{X&X<sHcXWe ݀+%YYa/GeKe$ƎR !ݯjlamd4YF.khBKɶ]=UßG,R ,EUUu;lvEN[֜/=iD)xqXbnnD߽cn)tE5`*)kđضM̋typÑfGf 4>!d: ubcB`̜'6mCY*g sUjUc2EDmw5Zk//n2o_SVT5äq-θ&R+֥oo%7uAt>aP4UM 䥦.5h E Шu*iWW9HCi2 XK"F3u]CHv֒)X1&ZGxRRZВ*Z qY0KҏȢ$7.Kf"+)~89ACp3~:Bn&:k`,a6XQEhfkiF(7ktkͺq\45F0OueZ(oZc!Mwqq"~lꚎ! &TR@q>B0WB0 S1dZFbpD-AWx!1"# (4v$XT&5*:NP@ާ11ږe$$[й-31@Lլ0ZѼyc L*ؘ:T"GJ%JK12sv!DE?3qwxvá3͆(N ㅪjY<~ $%ZOWV <%8[mƑ, ?(ږOۢ hy)aVY1ۙt^JivyO~:UQU-yfx>R-)[T,Ct u 4oc Ja 2%ɵ #ON2YU`2CX,zb+daO}P(> ۖ# tDjx:YCvc&`# WdJ,O~?V9/ `zSw5֔%ӄGo6;- Ll\Y6m2BU0O Rfӄj'ܜcADʺ`{K1Nl9Qf>}FU9mS0_}ĨŲ٠XbXQKâ/w Ua8tO=Kx<$wq<.ݷ^:D,ٴ{m9"8~^ VlւˡpZx;] AIRe^S ^Ǘds6R9Y,K ޼2?d[sOf|q:Ѭ<}|Xxum1(raaBUmx|>.[x~ƙ;>}\.YE|9bzpS:()w?pxf8LQԧAƻ#A+/{l˜, [2s:(̪1BԺA&1SG.O*1v/7ɲ+j|>zT&9< =٪AJż 9`v.[*YE Iy-G6^t"|zRG/Ѣ#d gg-s]?F ۻ;tǯ2b_)^gvۖǗ#MENkэ ?s- \ey!"KІp#Zab|—d{жRlwknM!\=?|pdu.ݙYe4Z}Jy8XfgAdt}JojtyyzQ5ϗ4O/i+9][v=s/ i=:b!Do}#gRj6|dKOYnȴ+ 3 +#"Kri Udi(|X{ͼLHLh@{*⮇Pe]#dmPל_CS%]ޥtX0T5,B)l)cׁ6832TMN?\Xaf!7]7! 7s<X-w7hed#=2qRmZ T V u\PCkM QL=Y.v(k04R_Z]0ti9Vq wo|Wowii2SFܵkc5^x _<< 9NNEY6D7/X„4f %($kJOO(1&/LSg_P&#,%C7=]ӌBc1`< /$"Qv!V"3QiR",.E2!ZF0z R*` ,3?2~ĨD=BhV-3uܰ̎y8S"NNf͘)[Ӟ ׆\+¼ bd,:+DI)ڂȤ?ꬠ2:n,0DlU|45k##JbRE1Z_BAw<3JoveYL)d@b˅"qz}9p. 4r"1e!hq_S,3M}3o,T.ִ~Me̷4ۺbmbHuBJ[1*iiZpv!:y"ocYN_XE2ͶRY^s^f0ypѺLi8dVr$Q ~&抰xbEYZsܟņiv(X%eKd<N?==JYBa qk~c=֮DSxU)ޔl>ۉL4˞0#0r:te6`r͗H$;f F8邙',1**S訙O>䔻58;Kno?&HŧC˛3/|ۂ2w7Thoq ncgˇ/477wo;Y/TܮV*ܽ{ב~CYSe :#%FV8QW;P"}.F %H`c81J-i?BD(%qnIiN7"H'=t"- Eѐ-UfDJ2BFR} E#M (#vIua i4̐W-LS]f6ENiLo䡵&̕$JB]Z( 7LJbBuVat# _lj^!-F"SY6kiڊU[ˇ(UoP5~(bd\Hy11RT1v!4YN#y%(x9xKUw7+tU $iqN}wfMf'R/zU!ڌjW0`d1.=EQ MV\iO#9JE0wZiB 6ZV T?e$upvyO si0D'^>=o͊D]~ ʺfs=jLNu,֒yV%u;U_~!96<ۛ{P.2ܱޑg~r!9ׇ3ϖUvibSXeʜ4Y~$؁zwjB/'|Fsy>H(`S-EQ<>YPm"uXn]4uwO#|YmȋfEI F Ӷ q8m F~pJGA>b޲i7ܮ"raW7=;˗/LH݊Wȼc(W0++m t ĺϼmwPDV-7pJyGʪF <.yo?sg>=qg8tH^׈`3傜J+(mRj%&vbݶ`$C\8}z32@eج .0}:2'&"±c)0: ĥ1D)MI,%V.V!2tg,?ȳapDrGEiɪ-xmȄ41CϪ./Gw<~zet&XZnH Ib?/o%m/3[LR)4 lږ]2_&j]yy/_cS> &?~}GVW$Ӛ'2Yswr[*GI 頷h·&/)F.Bi,KCqidhպ{|&-Fin` fwsx)˚2!$M􁶬ˌ 6uHUi&E]eg(hQ~368T "nus.(XW%Un Bet| `bΧO__m(7w5smTircpӌQI$f^G7QZE(2‡@[ZS [K3M (YdΗnb0Pf*|ap+x1f+8:NÅǏۊ_܊k L:WM2ە75qN%ɄgE[h)8g33_z~a(7.UVBPi4Ӵ Ju`"1z'7( >1X]+^,|bǪQTA65.B3|DG[ff̤,b"y>1F2^L.r(Y2 TZE!!ӊf%x91@^)a;ѧ&%˼@&R˒GY "- LS21y0cu=Б_ݮtbwe)Gi+Q ,'І(ӞeQeN)9eٕe1% "W `LӔiR bLWNQD*jKy%B+x-?k֧q0 QA~Ye`2UXOFa&iP!$ȵa8Lu8YCO&e7R%LUt#eQ+[TS#E]Ke>@Ꜭr"}yi*a5랩^2ibEY*+(2NS?ԏnhTt3e@n˗/ /x q"m 4=&g J*RgE92%:~,O<(ȪS!འ4L,@&=3b}GSft\Wņ?wD-/g/>}d?8 Ķ̓Y_0E _p6r 5vp.[Χ|u-N 6 ى'|LU!Y'V▉P9qq**n1Z0[KQ֔&&L89wçxv[嗟>/=5^dtwyM=}¸DN~ز^+.3l~~ 3YEydr{j3&@d߽cg ĔN2;g\ɳFf2Cx=OT 6Fmn<>pӌ Ug d[ #g)C/`rEּ Ȍ*gŢHzr%Png8T:78pNgswr09vkdOyvX~|fW7 (ho 0 3Yڭ& v`iu0t  R=ed$ny3&h C"2fްz=sRe97;na5 @>R9Y[dՔMIVUdGEîPT%w|LxzŲX&Ǵ-R HyZPUMVeagf;cjV-;aN y r!dyGԆ*h߽&,bЈ -vKT* yH`e FHܲp>BM=釞_ gU_U^S5Q(uÙv~)[ˑi4㞲)Yn'aLQBpuiJF2-w6< eI ]񅿽İD=) К Bˈ_,1V()5RhS0@HfղGO'bJ)< fې\IJdBJ5OYB^k Z˪\b>)m@hW!i-HƯɬ霐.W6WψeJ]]UR][3Wp{OIW:x9cdzf;dJi4!|ڃg983]dz@źH!A Oܻ<7uцݠT:ڮo{ ?UEU`"Cz,_sOnZe2/ k֯^HS3(xV7-.d|*Ԅa iÁ/̚ /,۲M-E" -;?f\>`1FĘR[DGp3FEG^tGP_BhX*DSHBLS,dA >* (5d:ȋb@F2MCJfJh]hwȐ"#7%.h꺽NS}T źtkEaܡK'q"L"K'$11Ƒ\G$ٖf˄+5{ VՃPBeV>ĉq.Q0s03U|#!Ebt E(R[>o>q~ !Q5-1';VWՆ41:vo7#!L%pvb*Kl/dp[8vy =9G Sp<P"2x.?s%~v(!ٽ1 A(YmoQe6OF'uS1 SvhDdDH8ID\~"Tp`:2{?UY&n6p>fGSu$gR4x-Tu~N;d9zk+&*ѦT3EN x<{|\hnw@ƙ]*=a$kᥡ?_i:( O/̧Xs8[OD-'taOOL֑7k^j?cn8g#ǽ#$Aݕ8O4Mv`whG^q%~Ǻ,UdU*x/qiU4q:MeiN$"Ennw^X&xVȿ7ڰTx"jI\vK~\oYVbXi?1G6׷ IׇGВÎ1X(.xlƑǷNa$r`ZQIy:, TAce~řnFJ0p~!}Jj)ے)FRaPٞT&E5X!qx|l<#؉8G$iO3OYm7s:#ݺF(SejN3mV+J,oq_oޣ<<%nV9oOT $'vo#^k Ly.0t8d9DnV tx00Bpu}VF_zV˖t$lN"O$yG`eYFLaj:x939O-!D+\LPvK2HexzL&ʶ!(. R_wƞtlHA&#6wE I}sp"/Ob24Ơ/?}dGqd{R\1D*zB)3>Ffeb8RlQer9LaX߮ K2q'؟OL:b}H sĪƄr7;e8a<i ȈP!&)' ARP)v|:q}u!5rC"*A|pyM$4Yt4BQ^xA!$|JX  A!m].LC-at3k FKa'F;q89 =V|>'C 6*S0#PEBb@&Jr*E]HZHbfvDyX&ZkcYBW즁}`.ff̀y.e3gy&\p5\@_߻!FR $B@=>Kk'=zF y~ss:KHqqR$f1D wxW(ѿNBgׄTTԥ \kJll 1 t]fq$_ (}Mf:0CZ)D{BY2/-撀KBNGaƯt}9/E-€a-"JSHt["mfHY6=Jly;^Q^-܀qY>eXP/HS 9g䲞.fR ` m ^E R:+BE  0A`X!D6$ruBp!䁩 %Iʌ!E/J IlSYV(u@@ Ơʒ $Ij.摮.Te@1ow$)(*{$fg{PU @p]T%Q i<1'DQF3{JSY!- 9P (ZmGYXJl0EI6M貢:C?Z/4T@,T;Dt+IH>/ Fx:".1f! BҰ]ov,}F&OQFQE"󹧮KvMuiEQQhCrUWbx;3=9gzG!\ Jbt8;r?E(GJhMQ5eR5r۬V4mM1c#"FH"B7 V)*AcV5!FF;FV5͜;im)7Kie&2BjE.iebm"@y}G*Zvc$nUl nA686a}}ş {y}{e{}ikt+?}n"G<UR2M=zu4p>?)[d3KDm9H1}Jl!pxف*w(DI/|~tJTSHqfgk T54vKWܯ#Ǟw7lkv'fRc|Dzkqû%׊o<7g-xٟ83/OtRdZR*BP bzb?wT@ Y6&̎(5՚8N<<|'AZr[ YAWb u?r~;PnnQI 29i57B2 ;ݖ)WRBr:l6Wb mQ颟6ZԦ}=B\}wi^SZKM\Qoֈ`*Ö6h@G̞ERVSx)"cuE5ƔL3n80ލ8xW lp=8F7gLSH:y#KSrZrUJJnEj݊}SyqbQs(5 =djE[*ɲ h'6kJywY(~yeys Ǐ^)Jv#UBʒOp>Pteiq&h!?L6y\Ȫ%%lsx(i.1xzETJsuiKOh %EQ|, $>@L$//# ,Wt)i*?|m!X, 6[2N_>szxB E"2׫")v$0 cʢ@2K` i6ޣ ȸi P4D((RX5fsٵY. FW%m!dh( u62?ITy1 ``&HY0נʲ$lR.`sm'#SВa  2ۖ'%R ʪBi'nyzÔ8ҟFvzm3u㷷<H~,+W[LmH2t:=ԳY-,\-7]`ꆓѱ$B)Kȼr<.`r2!2 _1]}3&8D4q<3MfH t@$j{Y02 ^I?=ܳ\m₣|FR{˦MA[ 0O"RK@jq?X6d84MK:q[o'^'7S#V{|į g- P:i-j T6os D'!`4eOQTgf&;߳sq@̈H.J7i3(EU0ZJ#˦DQҟ,늀=[tf@JrP"W=ئlfRE5Hlg|O()3uU [ɸ.9OtZa ]i{GNXh?\UƠ6+B "hLQRj*) 8)?:}(5;a ۊ"9G,{O?ip%wFRz[>?!"i/R HB#yp8Qe@ˀ??u/^̼._O?daf{L)Y,k0 Sd!<_>s{wy?RCL̩`yD) ˦pĦa\v-LiL${>T_2&i'n;CE8?pusqaCDkeg~+v§@Z,9dNn><Ƒ-ؿs# (|Bq10<+&i, =90q:SEa8]5s?= BD]N&t]Mw<="xʷ#]SswsuiriU$Yd99pZХ3Ak6_~~_I@U!xٿp\-jm)b<{|@zH- }3o#7`t$ݻ+سˁn?O?1G&Rȧj͊zmx~}|f-FES۽r>noV^m8 )e<c4z P*^v>bJCpz8g:eS3`~l#aXn _hQ`ʒi쩋HZ<N_];LI*<w; 3~")l!亚SJ4-oE]SbD$y)5AFŧ,t,JDg9w.+yFUN$SOtĘ9RL8O;A6ڶe dGTYBb8Jlg.8t l 'Kնvd;snh1#Uy^m8lņ0TXMNk Ea#z2"S?"=]r//$ x/+CO 8'<#81_U)Џ^`ypgARtm6fD?d!u$J10 #NVwszDQldG`Of$~Jq'((=<=Y5 >|&vEm4#.>q3uWbDۉ9e0[n-R j)I2q|{f8\#Eb4qbXϩ[IhޣKͱ?! M 7ԝ\իaH>'dsn#"&|C"O.𗔋-"I>VLSt)zΓ|u9mchE)iPg.I3K%xɜV+}v0!bE?Z^@Q6!9 . %1b^ǐ1D$BDeQ#-{w9U*CB]BHm !ekBloσHO2Jmӌsmf9$"_.uA)%Up> !|:?͞.itGB͑0|E "ס@2#eMُIA&2qB_`>%i,JӉD#]`1D)Be-9 0,eG uUX,^u>TLA'*)i?Z5-EB8QJ€n閔uG@'NC=M] ݶC(RvL_Ϝ<]l.g) 6hV|swźHSxHH62z,1u@՞mW t>߮DY?Gۆ_>-Y,o3Gd}U,5ϗeMASkS\Xu5UIWq'LGk*\5,6 Wz;;k?= Ù/_P tI^'Oy}8ҕ nnB=|?ǟyٮo %",,^2O_ϔW7\R ~Xm ՂdjWUײ^NΞDH풺,dRu#F -UW?a@hĈ8O(]P.Y$񩤮KD`+j-X-2*j@8f<&F&d4D5UWӬJF?k&. vK!Kvp/AIq`QV4P΁<\P(2xFiR,tf In wiԩBu'7 MY<>?#9%$PTB,Y7lkB 7KpzcS][pa+kdm4/O ]dNTa4MN͖RU lojF7+ʜ|BbS")eJeE{i)8M=g7^X5޹BI -839we MK.pj)ե_"IB2r)qݫ\-*_,.mc )1 0 C$ &$!e$a( )%Oɮga۶/&_9^B8xP߳DZc<0jBH{ǺP؍i(iC^j|sն3)Ui |Zu4Z\ʮ%7uGn_/;˹wB# ]͕ĞGפ̗lղ#T,S<7$h0Ydq$57Md+}#Wt jKUꇟ9)B@Ⱥn2Kl]cD&0kna@Rud۴lU$^G윫U)ZRSw*Fv!E)_RR -**E-V$")E+PB!Sj>0KR*R# h| 7pS#v6:$Rt(R*b)mEjQ&3[A#UA$,)"ퟘƁs($ r.J,1X)q6wyFq, +ӱgRiKXHN9Z/_B4MR<κ $$!B/^=/<,LEv1\䭉_ ZL]մeQu#)X6] xNcD40˛ܣL\ f^G(y= sˎ4 <(Yu @"i"=M40 9*3NfOQX{32|0ɦ!5u~D+4Q5J6PF"%v<3 g$RQV5Mf(}J-$g)mRLesy~09$*\<|bl Y73pӎ2đݖ|mGWTؗ.˯8NlmPzIZؾg٭x~qxޡ4LP0I#mYpw~ nGx:F<:Դ&% ~?8;x+W4mk~}fƙ͕8L}_>q2] ؟ln1uꊛ;>M_O44J ƙUq=ly{s{*%ejR"ˊc·=}jyŦû ]!H`st}BҁPBہ[t#0TGˠ w+ nϷ?, T+)$"gG<aJB xFPBzaMF 41ETztݒ~#DS4ip V Rgٳg˕TY{7kojަK0Q dyFV]I2L= L$TQ~(P.qT}'?dޔD7{d-xm4+SRo!G__yw{E-5ua8IiN%QyJ0w!5>#4j'A+dӰՂX'v[oqsU&KlЪ*дaοǘxGQ*ҏc.c\ 88O5ZPfR-qo`\ X7kz;Hƫ@Ԣ<iY(Hh1&ogț%]h]RJ +B+p[wqV FW^m_)@5n""g˄e^{n #:ݴi|HEGp޿O=Wa1BݏdmߐazevcMUY3Z+_~2zWsTe'ˆp"Q%*AY#U^Wa޿8wY;%R,kڮ'*iHj*lPp89zzݎQ%a? '׼>==n7̼ɝ$/biLD4\-*AÎ^J#p_/{!,Yd4%6|mqF_>F(ϟ)Kg*̪3ݞ|wGYix92=MhfY __٬W(`s,+~o4W=.9wD,.x a,-ZJo %]pv!hAT0ф3e<U]BUԕf3!vd8{$0Hwutz;0O)xo/Ղ>b'^O#W efpgLH<^5Ofb}Yt(Yݚޝ޽”;q:aeӁo>g_݀|ٿl ܣ >XP1&u;qsâx|H-($<>=QHï};j[E⥦l fY,؟-qkZbDmGF㩚nBjt&H ]I%te(5Ѧ8ߨ*6܀maV x{Q5hw|~:z‡@\m8~CH[RӬ;^HJFIb,E0Md4mY%Hqh'Je=|:i$'Ufg3;@dt%.߃ɕRH -^PTG<,7,zBy )45)98P5rx !Q2x)˖i@EAC8bƉvUzA-/#Wev-~ضgiJ69L)OH/ik<t͒.w,5>ÊHUEڶ͎d<b憘=*BJ*8OB B{4uHPHBO Hb6S>j!qg*@&|xoI)P5  Y ]r$ȔHv 1'Dk4:Fv^GԚy<D@֘bԟ82-IJr3JǘyIgK!$IBcJ$nkI).a &;I紓CB.\b_V _N'^2a29kwNRTLj3϶?AK:0Jf4l,?;߻QϵW I1.1y Sj,^1ʧ{y6S?Ph i14 ZV[OĔ!2E]P/*b\!B"DIf=/i@) g7ʰݮ#@]v4k}%TUElW %>n>𺠬 Ţx⿽4_vE aSD|x 8Ҹm85%JJQb2p/O?s/,V^9Ix-_3So9'tfufwwƙdx6FEQGAr[K a&4AYMBj~հ,j0ι&R7q޽SpQhn>SIuI?n#!8^SqÁΪ\eZf(kHtM6XK i(W+Q`t{QR r\( R'H U։PihWSrhBw38`͢CC38/Oc0/uL&R<%Jx.`(h^o21NFe4Ȕd-0肮ږjIqf1FG"e Gho7H"R4D9߾)3Gf;!dDIeG,0EI""4"DVUF|Ԛ*DZ\ѺdLpHHT4"$C HĊ&K<ԥ.4uQՌӌJ -*r5)łj6c]U4s?r!ڊ+*wwi G݁w ʮxęDXn~h4ŲmlX6lnVVaH6]H3:z{%Frê[Q(MUWe|myƔfYn6x7 =>0 }FK'IJ]4%ZlaӯJpw姟~ T^=og^Oز i-F* (x:FNCl:|(^clj6kn7%7Z]?eIS8sNdTXHn+ƾ'5b)4Q#)겤R5a,A-EYSٮ,ˊק,Hd\y+jLE.}Ƿ7w_ʗÑiٴ ~=*Zmݚfհa\aLE<X.:,kQ@G&8{\o)k4 DU2CU8(8OF0 j$H-鄒[u,9R,WMl+ 3<0=W mG3ժ DLL5 28]dx7#gikw8-_Qcffeb=z{?ȗZ2}aǙRt(节:io7b@`Ae?vgF% #8 ٿ!#l-6MY.J~G9ovru_Ю/O,itZԉFt"[vI#tv657NG}D;PBSi/~6̳'3u#ʆݳ.tfpTZ-(a,XMva.(5DQD$)_Q\S!IEǧd(U>(8[RLtjMY!C@i%JtZѵk~;0NcҜbmjeɋ=Չ ۮ \t]C Ԣc&aʒܔ ?sz}K2/땺4$.6&1Mâ]P-5Qk| ,R"F"kڢB()!a$E -W-1R)|ir9tDh)KeMסY,)y+p6#i{nru?j> RZwU2E~w!I~Tv n7rK"aZa 6&lL59_uM)o&SKjI1.àe :*)H1)]c;ÆQ4~*)5BH_TBV_MeYps'iK0!W|I`5kw`UUNVrΒREƅ,%SbYLW{b i=ݕA`{z2UOeP'sZ,.A,,ˢ=&ڶ(}νꪣ) ,%Д1CJlAfK1Q|?qPHPBTU-Za@hE;fpYэbgbI6M}O>\WY`e]IR!fQ\StsoDؓRO>(_e5Sp9Bͻ[>~D%TuHi?1H}"y862^~MQঙ'pG>#yj`4r )rf͟?>C ?,,(ӑ(>EoO3U{pO\w@( \_0S)y8O2#JKa'~Xe4 AӬ9._uH%0 ndDrGY(OCpߧy1Ji))%QHDJ#ΒB Uȋ4_Ȕǔe" 5Clg!뻍s=%J(>PHY-{1[6Hٲ@ C}7JCdխa(",K6g]{G4Z&lJP eL1zhѲx:p>Q-Ɣ|ypDhM.q!1j0@!MS52Iyl"ZB$b| Ϥ㷿n{5QpP#OPք0u Sem 8I 02d/&IM 0負K|zi :*#MB0g:lM0!5N Q' x<EU&ѢFj|1:T٬I3|0;XQ{*]a qmcp|;>}|: 8G.>~g)3ND + n߽c<暚,g֍y@*AR;pBUgRzp:lIm lu9H6d؝Yo{bUҡBRw(خk'[_98g? L&#߼_wGsOo c&KYJp8'bT<ʇێgf1 7~/o` ,8t(%I߯>"<bmش+zv۹zOV\crr4H|zf#/v˂ʺ?r#kq-j <c1jM?8 :3Y4 N8BA+I RL2;(@h!BO9暘"v"yDl"'Sh~OӤ\Y!f֊ψQ!̈́9I!2 .fNRB༣)Jq)IڀLDL$]0ډeLU!gKW,ˆt磋az 9( l.PEL?hd> >|i9A F+fɦ,~OMuRi&ʲ:>ߔBIE z dagCbLK+1b)_Ϥs)b]/5$ $/)-% ̔rPd(=gUIBʃq3F`Bns{R ,VKw>7:NnG?y=ĂWlǑ(MauuT]G<(1u6{YG.%Τ(¹2-ICJ_Y,ˊ)whk-hҿ(JR'ŧ72)%G Y1д-y5>Y.%kv/, %I'ۊ~1TE|3Y4ks~=Nȓl?'ϜvgfmiO,( IM-y9Lsdo|as]a@.yؿ6V]]Ն_"JV͊Z@rIiS ӭ _~^.hBBqB]PUq.7(O'>Bbs|Ё]PT-JK8%R(YdntDKM]7TUV!&/"!DhWFˀv{RqrZ@DuH \l9uOp'꺺%$&J"&}B W4UMr._8U!sUH4UƨSuR$0x#UP3"Z+Iơgsd2fHg4-8| UwFSiT͆0P/V, 6BĞCi }4ƄmEr$fQ ~b^Q;-^ (Y'K;BcTd 5 \ymVhSDir$^ K+bA Uu ]l$$U^UmM=O4R)ܟp\gQko%$%pzd~ #Mסjܼ8U"iDJ<|.xnwnk,nJ| oϴe鴣24 c;H}x;ӐQ OO 4 g+AQ)aSo' vپ{H? Hp!D o:s,;^àY-GgMN}zy2#o[E֌4Nī/ugI5|+͖ѝv-DHV'0ReS-ϑjjVW,7-'vB+J%Xt+E[?%SIM?r5Z3K5:idf{ ,Wvç(7QEv-u(Qjd!~-e\,˲4˕è{&-023SRKG"Mgַج(]=qb&xxz>3FOx.xwOTbxxe^n/i! OG'm29kMpxx]#X˦A}ݑ\nz iZѽ s`^2خ/EAti~'6uT$Z’0 5) n3ku1Mݭ8ma'nKM Gt0 @]{}y-'Q1Ҭ `y{斺0+y{A4\\+R|쎯h$wu0]E`[J"uU/Fv% #?}EIV*rCجY9y.W 5။;]ASayzsԏ6 )+jղN#Y R^A#ÜۿJUb-HLOܿB 6kQQ(q☨7 '*WrX^i7+7hi5)hp(m"`-{` u\gxS&JJҏ#'Ey2 xX慲pYVD3RdLPP55qEcJ)bLAa4),K#=E\*&HE2Ya]2sNPjr L/R9뢠fHi*#)%>cnW)Rw5F ӉBJVj\?=Rztsɛ~`f#L"˂$ ",iKyfB!/ ݺG7Bm4@UҚZ?-'SQG EiYB1u~JnBњ KkkQFQbV,:PVk"(-3H!W`-$gh4)1aMRlR$0m *ʐɱ;(uxn̜IJDH u'rIpI$Dж-z"3.v-)) $dW$uR2A@ [aGm=K`S$sLaL;S< H!rGdv~uqΓ@)[ipuu; wշ)<]KBi1YXoE;V]N>q?qvWI<,j _H?*m;NSkyvk牪*3UYa"&8"pxt8/=92-%Rlo,.0eMQN-4c"ƀs<=140q a:QWXb"JMݮ8eFordyyF|LUͿ,󢩋 __x=YdQnf~b _~?3@ t$Q,>Lŏ]WmZ]4^8^G^F/,s"ͧ݉^zlUӼΑv2am*.׊IvݖmGV-^,iȍ/ϬxwO^{xvepQ03~׿B?pڏuśw7N3˄P%kenu2_^ES=٢fihʒ#772W'b*Y E5F?Vy 75+vKvTeApykL[X{ N^8 yFBY^2- Eg0M/_Ҫv"tZrռr巧)d>'Rgܳȅ߾0n ;+\--?٬;^vXF2vHQ#V2h9# E?NĴAW-QFNXwLכ+ۂu xFfA 'Y?񟘤淯;葕ڶã1H p駅zͪemM/ OptQRbDžn8PʒV=j,]Wm"Q-7 ݊PWqZܲ fLʦ%x@?\bjͱ?Q8;6W+f)dK|SOvmn2.e&EOJ WW9j!$TU׿xr_#ceSq,(P>SkEَTbG0%>ʔlmYux)d/H>P(( a8,<3ٙ7~bnZnZ$jw\_D|~^8EXh+aaULB ź~.yg</?h(*f]WN97GS4N:u[P5 $h̹Xj]qy0sϺqeV x^^]4ӑ}4{݊-nYT %"&O,8Yyaq qʚjqc`En^XKQ$lZIc<uEYȐ1C* FcGrF0Ni"IVqG? luS$-p)``Y.7@$Т,~9 ]VlSxjKMEi6U:BdFMJa[K!ag-翱);μ>|~hRnB{?+;*ahˆ98~}}/v5\̶^ml>e0R<{\7uyhN>D֛%D) Hi#E-%"6y6]qfo=ox{un7ӧ/0QUtmgk4]lvcLMb8*1BB#Qc^,> c tQf0wAjQ(02ü#Vp0E+p>PJEtMPBf~Te9G %DSDpZΥkF䦩@JеRI ! seRfݬ/X55rV,Sr>H$!xg "G0AdFh͜>8ze"0˶iiJEgTRy.\X EYKHZ8F SQj" IgCn!OēR h'%7 )2##5-SN@"S^MŚT"!})2AY߱5R8Z~RY@H]gS}  L@ @*V;Rio'wz!$SքRH!v!8o9wp#!Sᰧ,*Hy^m:8&/FG@Ĉ[v NX8FibvLY5̋ŞϫB=n)4Zӂ?)"ӂ~~bM-7 WLi5[3HT]yL}n'$YjBV6WrktYqwQrYI:m+[7r8IVuٱ[+Cˎ8Qƀ24R(42H٣WUK( ~;L|#Na>ʂ?f晇_iߞzK\4vaD) EKf.?P7[2ļ.؟^Y-(;x b1$HRI0sDӜ7 Rd'G2ÒrU7ce0V4B*Y!Ē2NauP55.fNO(T붥L(JBfdiv{~Q(%(EY^_:gl 9GBdEY72QinuM]aW*сR2oGseXu+F(u3R[,;;4D"E3gƗbxqs1%!&,œx'7Ppa(ՊōHz-#<,)oYĥ[^{ ]PHvsI_QlXo_ ˎwhy鯬D Dw,~c()˖y\uGyQR2_i)BWe8 7kw:MM~xsK0E1 ?Aq1JҖ?_mV7V/+\ XB%Bdm?e : _ncħ* >0L-Q|'^^_BRMS\u5[nh ~㉯_IO{xd&Rde#_>}=uH3dYZHC a6oߠ,3147WT-4,,.XJAp[ 臑gW pϯt?LH;؟X]oѵjA.yZUL@ܶl@"uE mP5)2ؔ%eé_>?>r$gR[1{BkU+\l;nn6T*]XQo+e|i`}OК)Zc ~ŎD8/{d llo֜Li蟞~ժ{aW[BS3,EKO?ʗ׉g/g۞s0|D~P)^Ƒ0 |lv6û{ 3ArbbvS<15F+Lex򅯯8Sp :,s9v8;p:,V2rqðPvU8sC]t٬J^hIZN/qbkn cq e4dX[Fc݈ e$wyQ4`]͒7ީ|nDJpwwV 5UUӭVm X Kp,ӂbǰLN'y,J6 U0͖qBu?;2eAjz+]8lW qyy<(%anx{ê.Qߑf-WuCg4v4%7 A( qdPjzR)]Q!NPÑιzq"z/B˚O7k(ۖ?031DO#Q7Ee+yf40sѹe V+1rO$Qe["4?cc.AkQT4%qgaw<2{WeQ*"H*IYJpr3SOnS Kds6MӜۯ +,W i8N@b0\X?De^x,3Z,>f%4/3epća$w’"2^k"3Bϋ0ٝ-2F |ӐLpW[ެ+@6Ӏ_,2 H,d7h>(yX,:-8) ./o)L67wjהM4 ؐ7G!& 0\d` .Xm/^biwDSS;640<>)M+*m1oɤbjf[qUH|LC@DA5O;\LK@XQj͆,quIՖ.e&*4bY eY(Ʝ[eh嘇8\scD83_;wyjFkT |JV cuxК4lW?ܰt݊&8zڶ(*aO\o4xO`1I6QZB\x||onOgK߼!@HvBd^yXFitT"#n69on) e:,ŐW(*^3eaʂ,]P,D~|ۋ _#r!"qFUb֔B2}}@9GԙFqDRKI9v=.%U9GiٮVH+cXC,ۚ*( zf(I4}k삵^iCs>96RdtAhMZRB%(J";UY`yZcUR`S9mCuuSgwn$Gt:z^";. 5Ápv;ʢJ* WWwwo0U"^;UGH("ͺ% E>hGKP%^ƙMa !DjSSU3 c 8=)0RBIU7tq8,y9cdv *ddg\th#_iT;__ idYbT uXq-;"IҜ 'F;s<ޢFkMJ‹K*qK݊sR$ؖ5Zd;#]2hCYW_"EQ":JLQ/-$)0F#Cvc9SEpyeb^2#P&(D(ѽjE 3+(yF|]![$oB S\a ӲĘM $E\1Ҷ%QeY~wɼ+"C:bgbh#3/D"HJ .9R6)!xz|$]?|m)̩y7sYJ\wa[-JٶyP\x#469m6JbbF6()Dϸy>jϏ1=nEQXX?xbG(?X帖\WǑ"I(L y[f"!qOJڐ-2]J(hW,ӎ!j짉iUa/3 $R̬Tfa8H""M;N\Z7-l(uB3,r♙v "kﮈqn `Y!. $2gYphZH6,1 J |ʕFd !$%LJL .:T]t"%|d>($cGW/huvB_%ʂ~QyX /M7vMw"F):0 obl.BRV fpv{MR?8V-_?0@H%_77W4/+2J)X6՚\_"hx}J]IeaW\??QmjJ8 (hS߶c!JEhWkiD,t+]+׫5ji< o N1'J!Ed =el.:_^^0ea\ڊvx|fUN6 wU`9)][2 #//\\^riӟ~gw$ˍD+XM#͖%_jsv[2'\\⧿?M?4]$a#齧:fY8ʻ[~DJA,ArmuIBoyxx6%W[3>~金r#UPU5QGO?$: _~nAH^Oi01Wʦ̈B[xrTuq:=>r}$D.Еr1D+I a4]U2O ݿAw 鴧y[I1~y$J\APnOsʢ`tH6-6,Xa^0M5 a;KWxs{/_dBH/Ⱥe8Tݼz\X[ش[À,3/_ ˟iB%Á" B[(ZtaLG^yzzEC/qX7W_X]fakEyϺTUeЭ[mG5*;z"[ _i׷G˴l5$ , beU~*5a )S2\/#` a*Mu rZ9f'QevH]d- м? fC]o_UdLn9=yq$Y Ք: vv*MdS%! o.=M\m8RYt~ZXoרZyD(C׳@䜣moӈK!ܔBqw`&ʲ/K{8Oh)M|<S<yZD#kgN٩.ΙY@y N ]!cTB(8#@iIHaNI%nQqgLÈZ~ uDQ}=U%Q}?PKfк %IX@iZ䨫n^dժ)u ;.%wyđ8 nƇ"ycFbȉj1%U?,vcpc(-unO]i5Ȼw0iw_H$"`g޽}p~"7Q+;C9>܈9ĔgriPhGAH: w'[eY(ˊ]ÁumxaIB@\_]cDD OUyjMQ3tqsѡc:@kJnʦh)+6WP]]3l3CCfG]NjKAIJdWҼyݏu"f};Fb`YϿ]Ss7dq=qW<7MQSb-2jtoX]%xC5 -%aYXoNb}u5mɛw?bҀ #R-nCz:ADn0,5MQ1#޲Jbp@#RR,4!+ ;2ӻ#)DSU(=R"g HbX*-䆎[-;3i+B CU(;e*4e6ٵ-nf-Z*p:r( .3V]K[לv8к@HA0O3j;2_H lFQeɴ̘" IJ10Iah% $3c>HAT -Έe_(Fr; 1#O@+ 7Yƞq87S_8jnNyYh]f n< N݊$$RdF[fgsqIUHz>xy#S5ϻGɂwQ}+ Y0 =ݐ'T)BiP5 xVUDw+}[jE.)EMWkRs`=UQ0˄\uOv̯>MN*%ƀ2/4 aJ0]RvrYZQ7+VWB!1Ds?b`JNȪ) }BW%̈uvO(jsX\lVeېeCŢ:?<??N Y~#~fgn."v|?]mX:V놘|y ex7 /\7%Գ* e豕qLca._>9 w'.Sm׬Jp $\ZxxΒfT)y\&s0qGt7[.oJC.5~ZզOn #t5e1,3Ͽt:3.91,dss)*ʺ89#eY7DQsE4:rUd9N="E 3Ib8)7U%jX)JH*SD"v^rd-zP"L#~Q) Utn!"2!l,4R*$YH(i(t b8[! 3)L)u~(2eXz[7Œ6%uݢM- "H!ɟg˨DJa 'ƜAAUHe!Df= !4A4!(UO BH ̌YjPܴk%%߼. n> ydYQE*.<4Z'!P\K;#e8;cO{0P 0e1yRHiD[]TA,ećq>D RWPJ xRH-hI۪e!8t2He`sHJ<-2|3z`LH׶ xQVS5$0Foh.:^>/|C5%I:.V%wx.9TD(?e=1Bhl=zNO{ݴlkAraikF?ڎC,+y8Zp{wK-/_w#~" 0M?}#e_$e#Di) h+ e+ "jC4,#k#iq)#ZK㉢hkiZc=o߱DTtEͺYSh1,at#4"e°-򺇢d0_r|Yu5PUuutUӲ6iPJ恧(7H$9 #BK9<|ANje+ uiV%L,c{9ؽI!%Ƿ"yTvLtIQ%v?xgp %hD C.g!͞4̔J"sG\.Xf*ePZEGypSܢ̈́J ۖTuZȘX;tah:Jg{\MǪ\`S5 Z=$$eiMelnjVnŖGUL<<|8RR6ěk.Vk~ʱ39 Jm${ b6e >`  X;P(VY\`\flgR &ٳZA0Et\80̖FtxabzaswEL jC#wTeKgc^I6쇁pSkD~ąU $DtAg\F)Y_ܱ.BPWwK:cqRRW(Py_k H ʂb0IyM,:weݞz$H誆uRiR(jSRVcOY4E&n6h!IVςVP* 2%)RDG7!dWTg;2-CfaĄseZ8فṅ PECr lYe2KUJVD)-Xo1ࣧN8帳B$@ dTZ٭ @YEе본#1QUv!ΘHTt !XU=Ŵ.2\DƂ-v[]Tl@[ʂ8g'B!| ~s3[KgWp!DNeB%B4WLhmRuuqh BE,~o-D$;^^!`aF#8I@ ̩i *pȔ $ۋ-E]ЬjlXWt5b9>" ÞT8 sAt-ew1%i OGL,Mƀ ^LU˳q@yyIǟ{fy ]g?WyeaZ= +U ;d:>R;VJ;>{?̶T4"`G/;sU\a(VHxVmd&ެ5|FfZljbu,uU p3.puv5WmfMYIu!Wz-(W5ּyO3H޳N(7H) I?#SbVtV͊z;"ftv38%;LS.Pd-ѱ'ڶnՊ[$!F%T⭔FKYV!9:'%m"DqghJ*-1Jw ^:4H]\C" e ζR/d޻~JE b3@Qse1U_dn 1dgpzIfJXfU 4IY~bwr2covy De )JG01_( hXbS/К0=H!,38BbS8;gǎv.#vv4I¹._ex16K R4\6"P.d[R6.y$Th]%JjbL(R$ae$Er޺I)B /JC|`ʚ(EL-EYC@)HB &4ҭVhe2 qYm44D@)2 ISt hI ,1owʢ0 Dݲ{~&GYBQx2[.hS{٣(L>/?}a۫[j,WZ8|įW~K?n9 G\򨺀 ,mVWZi`)°.r8P87\xdT|XHSiw`0(aq#Ny> h/_ԓ= ˎ V7Nyr:,w~BQFisEP~_y(tigDۧ~Oci/yI՚U{A˯_*1uR O<~޽)[%"̊Yqӭ7>rѕl ~_te.=s4#$~}xF}١`z"CYj>D4tW6N[!U]pTLK!M41dlDٟi 4/vKVw\\XU7-ooEDpsYng4EIeqC˂>hxt`g2bew˂/0"e~m%=Oh"o(!Yi#ir()M5?ᇫ+\]R0 GU8.Ļ×BݶwOlGՆ( @ |׹LIpLW7tM%#恟/ŸSWtR~~hK2Yje 5ѕF]vRv "|vg<"HǗ={;)fK]P))mH0$%I2y7$n|;;ĐHs$P lXD <1KXSaKpDƱG-O7)iۖe .`{DK)eXuet5?;y!)Ctl#ۋ D)#i+@Q١l wW{nO2i1;ڶfŦcUgx8n[VuYLs<I0 feH3T:.q-)Yy:*ܼ&QTZljk/*4F 'VUkh T m tMݛ+^8/?A{մEWYfyy'[bJ<Ek .Ij7^XWfhP$}&PLF L 0 tIL`Rj"D ߶deYj !7I)I/ C}Nxڹ,5߀̬xn݄h~&ʲMΕYXsBs3"ژQeŢ,C/R@ Jk #d'+TxAc0Uػy[ܑ[RR(aجpRd֜Dj%vqʖ^֔Js{U e(hrJBF[}4b3$$yF%ifK< W]4Mƹf.PVnQy !$>7L/' MN#)&7 B$ZtQriC0` dsqzHƬ$;jkD2ڮ0IDڰ JSp1 amQ{d* ހ*$f;ab9.RM21Y˂XCKPaj}2P'j[f[OTWW4>SI >|_댘YՑz}hw ˊ~o~.Oj} O8_{{qʻ{<|=?Ls3UuڵٶkXv3~?$UF Iw(G.o=]Q3#Hj.r?|$\GКm#UUDX%f}<.w$Js4npDNJ~vf$Qy4H_~-WmП~#ᄼؐ&<>rysGC<0TD.jǡZ ^~o-} $I67'1L0 \U}SªٲjV4=$pGO]|zJ2";No13eYp:)✧%K*8#EK x c`"q@H F9 ˁ`,y54+p"pv{[ʮ?{ӗgQxbc?3}8#g_+iFocT usyIS& kQ ʂe0EPe"i *J懏Yuڋ5/{\Q14HUP H{Pv /v4ebfͳ ]K%.%Lah֚O=Kh+ ̋{F℧B3BU4QP SʢxX#J49haPb}LHgٮ; IZƻE*Qڐ`G)ج.au}噲BUה"\u!@iږvUAP7/cv-h?NeŔ<JA27I!]]QI8ǜ

RV XcqnpUF*z: TՊaW˒]EYbzKXme@^ӭ:g?-ܽa9a۟LMYuj?:ڪĴ#fJ)$?ٶÞf^a}}Cn,a p[HMhiC/pI"K .HBHcl˪$m 7J3ϑX˭U޽{֜c| BDFGH%di<1*tfb|H:# O)hAiu6PHYKsBhO5c= FS]{@9[蝝1~%zy¿5~o+$*STnJ)A0UǓC}1 uҁ99VeN1BY։)mg a^8oi;l/vBR9ZB1tsx|dwo[مȳ;䘬f;J (dtAb$.Lqrdr{)Fn=q^(e#@8qb-y NM`;NTOa 7-3 #)|ZxvX"*[PF\4+nn&2b:[mL޾-8>n/ xMXW'XS-ͮ#%w^F,bb#401Yh4+2'p,MF ̘l>"Ymah>Ťe6:1'ԀRIC9oƮeq蘧8kKGw>CtE@"2Bi Z,^ 7-T0,Dx>ؙ,yLv=d,'"Cp8Y}שѻŎD:'z./$h釉iY w=,ց¢c`Cwhܴ"mpIj@:UYNux`\HqHD}a ;0MyanUCKѬBedw;tY'ϸXzMY]! yre)xk'PC۱@( Zx;79d:軞LdVi]Pd [觞[_Wz[H7͸Qou8YLW|Qlf8cwˆ#h$]ost=uFOx||M^d,..K>|BJ!T^quxcSlWz<qbi69É#yTu/]F3w?rqUxc{WKK^\lOٷ=ewYmL`G}|d3t={f+Ȅ&藙CJ~)aff$Xo=I4eC$gop݄#?4eSW"#jVKqg1~ t=ƞ选 :wm۔N# NH}z!\}a$bXm{7өj*ibh{ Nf_dp 4y;N#(ۑ4j6Rg9ө wL-#=vtTUaaݎWYOeæX+yLJéJ#9j8|mlwdo-ϿybbE'ʦGOɰ< fR QŚ)X ?:hV[v^S6_}K#e"hVq0<~C%/]mJL{ۋ &B`,c4 <{ƴ c=|p:g-Q\z~kӬ2:QG\wc:GY膉eXT > g~g.Yp:o6#:Meq6I6s:Q$IMԊiʲx)F0. Q("U8 #0`.KbpMbFAV6Lew8 e!)/8\ -yڠU"dv!BYb%=8?0i4 c;` 8-2'3K:(me 6ztQmֈ"cZ'ڬ3NX|6yd Dw5ň`wM ,|Yq,p1}qq1B 1 I\G452cdX_eəe))p3^xy˂Ƕf0?/)rMP+"s-Lޅ4c09,(bHE+%ГK<: r. Vx8|pD(MBGqs 5PB|@IA4h8]7ǟ-]p%yUeJ>yj}g @8QRcmCN>M="3/pϟ("}3,`9)6 $M8Vu/]ݾKk=#;X\}w})sZZYA`Y|o@}(JY = yv60,#Y1!+AtSwdxGYd f0Ad% %¨Te4!T9Z~%˂3v-'P$+4 vO) )CH$K^8N͊}qE7O ޼g4_ἣqQNuζɍ#ג,X MYHeuO*jJ$S0YwGJ;sI{)<viԥ&/K5ۦ&W0 8o߶CĶ=CۇWUwn?űPHfX5{TFZsuqdyq<Ҟaa3\XiT')"4=nqH=v%<νoq_O?0[FkYͥ)8B$S\T˲M.**W;HZ/$ж놟\d \23|S=Bg)y^MFe! []S>;Wu)46xO*n³qQb JtXT k~/bȚɄD (iO^SH3nB˂ x"(oqv՟e$-)6k6:R/;-0rp"S,9Fv'v;~rt^5|/Sd5{ƑnhړNr<9ZP/-_z ,ϟ03..xn>ZS]\nfͺx~e^vb˦*͑ŗ<QK8-x"LCI+iLΏ/A+uCeMҬ6 aq}a}Q3v4ڲ}."UU^"!5/W/mS).78;<S|B^]x$Ӓ* QAT,B|{..%hnY)b՚O:)X\sf 1m a 0L"Ƭj ]o (;1u Ƕvx)shbUd4UMU'_(4ef xtCY :1ev+r!RJ'ŷC^xaL~뚾m9Q*2Grd.ӴD+dMڬȂcYE|Źʪ@٢qhɔ$@X=e=~e!y< uN TY$r'ES:/PyNWt>2!>6L~C+*)~uR1x{CEO mG)ʋSp8,Bx^>+ 0G2/9L#kᑢ)x_[~%\uU暥T5Kr\VMLP -zSDȍ9+ҁ/>J9Rf~O(A F&@tjN#d j4 FW\䚧9JcqtRpYMY1#K?57\~'~(RR$Ξ,jΩ&yg[L!L3(T)LG|FiHY!A)N ֟X[&OC wNh PǘRm+42R'PD$(r6!HP7'~( BLikyyx lMF*r]l{Me 9% 30HQ`dTYAqY8o1B"|uqZC2"Shh(uF` ʬlo0YR&H@PKdtNűn҂WKBXD$ <>o8qbIe3ŪL6;H+$t$y]S4+<a4?8 3L1{R={GON^}?#%$qMQQh яpyv{n6/}XcMsu'wߟm)DAGi:)6(0 ?C ?۫ :=\se.rKzEu}e;O^1Eœ O<)Ja\?ɣn( 4)v;,݉w=> /V7OQ7 4 Shۖ"^xa8ܵ{i/y3?kna=Z؞@?2뙺ig< GX2◑EY2OK/d-t^ Fi~g~;-MBӡ>J*АbZ4jMȔ:Oyf!DEq?ƠJ}otRt!*)5I) ALq.d͚j}MxēN։{uzѝa7֗HLbv ae4LZ`Te3*,0XeQ;Yb('_of2vOҀHAd%Fgi; . D\1O,q,~a[,1uN3O(?sotHj4R+z~-VhQKd3|ULKs#ÀgO69dzW\_-| :gd^P^4<g^llV5 :D>;POO*}/^@U)r _ !FFkE$+'0͓(́ǙoaxUr-u8.}3ω`->{h3MQl.X5^<'vMs),?Cg>^a@?Q5}rfjKy_ӾG:7EJN&z}͎W 7/Ggy Q7DufȽcZxAm)[dUIh'ԫ7 \xJrLV;_AkWW,vp|`>N|[1FzEM?!2ϨjE,ӏ>;'_^ .7|oE8pv'LfwȅMFQ 'L l6%RWT .5F@1Y>7;:ΧN>zV : RzLTNknj}#|OaG(K6|O("/yW/ssҊyԳ\S12oUipn4Uk%-ن2ܠu^ۖZi6y/O^H얏^w{TeN'<,rKpJb#@EC^/5"*WTE,Jſ &^,kQ01- 4+LQ ڎe1uswRdJ2Х<%qFеGL]~ۿ M 4*/[io6MJH}dԻֻ0$2!Kr3* 4m"U v(D 89iL/L!s) ZU,H&N{8ö:):C%Jٱ8ȸXmT9u3:B71O8)#ѝ _6]~NLw|D ?ܿCFlfQe8-D{<&xQW2?=tG67*Lnb|]R~@n{>k?DTrNǙ?Q>!/1<3~At>OlJtxDF44"/sfkOIb 55z}&ʢbsy5Y"7iî$YӻӑW{7 (x?2O\(Μ+qvf&;w%>z\${FX!EOUx~!ЦLnݿ'3NyZp6-Ā0qF+$z#FF!{P:$RHU O-kYX"*EM]7Wa!,رG7L(]@g&ψ* rFeDوY0 (60J.QJ_Fz*4kZ!34ugOٿCsqM}q.!uJoX)M D"Uc|bycZfkʰ8Lvpn!pB ˒e2#~݌4gy!dBpB41d\Z"!]u}ϋ%,#%S?ÿTl[DLyQh'JQ_\@VT)}4TeI zrC^3%jffv;v;n7h]`d?q[^SWl\gtg5~ZE7 !$vdky:ϟ7I{رE*cO{xBGAY={C@4=;ɳ "F{`Go?+~GH^~ w=u8>)]|SN{gYKB|_"{ǞG~?y5/^ladguLŅo矼F źjc[o8<{сk*Smttۯ޷[dŋl ?Oe1|fÎ]zKwl$T 8/6xk44O9N1E-4ߠ&/ZK"4q: L ~? a "㲬y$;Nqfo9v @(#%&m_qDYҎdaDެ;Pt8&풪؛ZpO):DEo?d ((1ڰ-4Xc&o޼[g9\_m(rf]5Ӟhh _'v~+V)nB'Gn_Ϩ79esK3͆_~O/ɷ91䅤(%KY׼}]2&ɰw\fdfq:ơ'.oqwYڙW}חn*6]&bWe$ K%Q=I-xWZݬ U;dJ㗙LԲL[f;Acwo[y8tB LҞ|a|83&X!,F33F&udBb"bJtaLfмxF^Q(t81N˂0v_?Lnެht<, Rҵ'ʢH)iBZi tW,!Y˟t+ Q+)um0:%!"`4w ]Of2d{{xkS:FDӑO߾o?J)qeDSW Ә"be6<)ɋ<4!E.K:aN >\l O+]l煾(2M%umXcf_VîyIןx"Rt$KCYVO4y͵br(d;͂JE0K^q6S t, Y#qg )7hc^p`X!4Z+yœ>Dcb\ʔd$ӁeJ[E^0 =JAWeU2Q-*Z&kɳ"UCkX2yA?}$3c9uƻ4`[e0 ,GMZeYZA-8f@QUd"A0H2Hfp=uw=O+{;n.nPD9 nnqӄGwL]OUW0xyWZ1d-h’r€- ׆qq温*a(+Dx~FPkņZY|_pY=\_{g{~/|xQoXk q|rprd*RDvs2$=0:?d nf{aw;Ў3mr)xl]N.xiq|プ״iJ<D7x_DB4|/|/ӷ'bF2/_dg_|Jڳ/1- I+>yuvGTT;+V )*,m>zfgh9@"(XUtjx^s:M ,eµ]Jٔ%."c=d &KF>О=.F.//ӆ ʬ\5`jj>|q 1gN1΁y]P+Z]\RkٛHS-HS тTmgFJld6r҇~\o ?_=EꜥeVB϶k'wEUP@.o>?" =t ,y4aO_?2\ x{b /bgǙO|4 HrYU+cG5F2ef;(Skŧ6*OU滟^W˧|LHBN{|pMM,KSG]yb׊vxd ̸~YmY#/rhyUtK1QyNfӀ /` 0^qR%FRH*~H9DYF71OϾ3 4MC^:? PdW%iŖ-ηЬ Jxd$pUx'J@1U3Sz5Ę1vۦdLɧHYn=,~Ǻ.nme]m8w GgKj)Tӎ#%9<(X5[1, |VAp ) ,FC!A5p r8PESi4ockgx;Kj x*_-IPS/:/0yCw=Kg@Kρ}:1K0B667DnJ8LZe1Bp,+ZXl@"AFi^؏3V`{&OhvFT,3.v ~=C{DUubbt,oϦ4 R V~o~Kʲf-A:iOnrifq ^>OO?iQ xq3[. +}s߾_AZG-ܿ?Ùmw?y|Us)$CǷ摢^ū[a*i%U2Ny j,cӑO -ex`S*Ky1iPaK\듽YI%5FXTzè+[6E}pXO_d;dj^swk֫oZ<<HCq|_GruADw\\\.j[Ǵt^GV&񎬮Mz{kwe]ci`d]d^FʺJւyTA.ZZ~^U4D!8t'kEkcޣd)Z&CPzZ!D83B` .H" H!B54Ǒ)$xza6#avqp'Ƭ<$xwI8pP+DHi\. C0 ӘBNPDC*~@{ JRϚ Qdo"/( f(:~0&$2($ɲԣ}@%!S$<`TFST(h F E&$":gߵ r]dQħAE;c2L'"zk{Y B!y ˲ {IxM0 >B# YT,98gqN&(CiJ0RYBڞLsYklνOUs\-XVнQxRRч ! ><ށ@ 4x %4}FQ+tVrCAJL̸̰9nej.PPT AT勂<)%tD,#xJE%$yL=3 nQl4Z<:KDGa34'R*HԠK3)EV\&86R!N-uPf5 /SqO;T)V"+ S"L㌔*eJx!$E2zʉAi)%&/ۙfveϜ#ަѩ7gXp~[8t\n.)CLԔzN? 1W,g1yR^e|tǖ+xEμ$.Q=ޟ_g1CZiނLv!j^L#)1eTEJH"Fܴ#iI'&!ɳ+[z65MV@Ę47\^?7JMJ>>d.Ȋ4K8= N}lVk^<[e.x,sso}s\ڗhw#AD79e&%:z}7!T3TF0G|]BwxȫO/QL 16&˫Ml׸xa$@VWyaJ4Vl6y& %x?|(S$=e (Lβ-'_|ԒU&E+DnX7 CCŎ^baH~KpusC]O,4&C$fY AT\>{/Ζ![$i0G22|ۇ#()$ݞ76Wew =ʪZQVkaЏ#v7{ً' EʌWC?1|x< ܏=?ۦrMVh.l^PKF٫WY2Y$ dFx>r֙\gxbcGaX&/~vaRd͚\HYS ]юv9M3'yێtqq,?&FQ "!JE1ח[׍f%Qk#X&HDx#Ǻ̐."yƢbD e*`%zKO?>)rƔE yȋ2I_4o\ t}R2/1`EDJBiPEs)zTq(٬eVyNY` E,89ˡ%[J\PUarl^6TUui1R纟NU1).YOֹLBBBH*A2=7=IM:Za8Q*E^8 6ɑ!$` JbڷTg]TY$܀Q$]i/FTHM$lVP |`t<U#5s  qa23gaUDO%2P2ϙZp^M2(zG)YzF!3X(Nv:(ԹL&z\H[i,N륢-)j49˴! FdHL!CW%^UƵ#[SP ,&X:{ٗRi^Rz }K^ j7_[_}ctKc LCpˀz..MEz`/8's^[ԳwumB2^}tiq0 @ICٗNXXΪ(4²tੋ 6BU-9ˆ:02|vw`#Ff°ëGYj:Gͩ;QdO1y&gy8L,Egv#n=R傢̹y }7#)kf\|>SeZ1 ^xr |Op?玗O pg~DHm2Ñ- ~zrCץZDQȗx4ytī˛kK>c${֫ 7v(*r}>X LTif8L}Km4_hi{uS3uf(b(5զa&qD5/?y=튼*(r]@ndwj( |~CHd!y-r82Fk野,\m)/L;'=U1B0/þg<8[8Zn#{L!p'LYӶ&_|rV(ݽAx:d%‡OqﰋHi%0! {~ B^pbW"xrQc6 S|+SffNof]srM?-ah{8NvzA뜪Ь/!p !x?DSѹ2lqY+%!=R*J,خeAP %/ $s0b@ ALKqD DVR6 ‡ Ӳ5'7r釁y\:ᖾ#?otDl뚱;D!<%W)>(m ^j < 4ᗙi"7+L I rSe%Z*ÑLikiYMлm-"(sL@MUee^Д%En6<1ZRtpw'Ecjbm8E4N'G^)E;8Sz"D>g2-gLi}b]b9T*B45.(^Fi(e>Ƅg3MnA-i΀n%;W B$ )@ `$F!N w̰n3/@kiȧ&18tfQs~o/LF^dYS< itvat17tT[n.^BV0HU^0,3QU =:JfJC(=SUH`TP(,ÑnY q'Ӏq)91ؖюtʳ2擇Ikz @.:@z%ܱ؞=`eOgi͝yU FZ|\yd32xw`tXnrUe[/n\]_rZBL}O?,m)fЎUB. ~o0릡Be]3CwD"(uAT jCFD-FqLURRgK.#m( 4M)2eB4/ HVdMd՚j})k J<( 1wɤ%24z~SƤqD[eʳ!Gt?W$GY0j XD\YU=U5"}j]scc@"$pT}k KɈ(RjPdAr!C*I.ϔLǑi?TZ;}RE+L>FOQ;RDbt7T!iNvTe4&%Cfg gwd_{\MC#^AEbu{QK"CH ā2ek%2 =z8EDe g1;I;%& B$,*p9qfI|MUB$*ˆ ܟisMF*p].M1% "%YTIIH][*2H%-GĹXcLDN3)Eׯ_GXџNriL&V~x22O3Jߟw[Urxya<]m8<=S5%o}SRr^]*EY) #p翱Ppx VY.#Pl~uբh"h%.Kl vh,?YߠtAVp)=< = 56?/18A,OWcG5rO~`UHֹfG57x +7-O/s-b IxP߭ &2xǿ7~7 <>LdQqcS)+,G80ZL5tf۔ϼ=Pe~^nryEKa|}w=2<><9_<7E BC5.󌖊i}Xtex9))iZ#byft4-uzB ͗gn5(y{9RT+M"sLʳؙ_|'du b$W A^xyy;z^f %$5 ]cHY}t^e-UCT) JQ$2 & Y͡xfj'4LDc?0;`$x{2 fŦlG-05Yzp9c R+ڔG[9-BF&7¥ϖ&6٪eGL;bn2U.@Ω@;`&@ ZȫY]m{.yK.x|D`B󂍂@Ĺiq> NώRa2D)EI2">BZlɢ #4GB\@s2mǑi薙kEa8 <2kv! 2z;c3aP AkGf'D8vI7Ϩ<=) Nsz֍ΒKEDKIV/ +J{<8 meZFO2"TU @"O~YF50D)R9e`tL^,GiUӆ:RF Q牨dHYH @qMz3Mӵf]k #cJc YW%eBE1}½\,TRhE RP .ɐ*acbWq"LxmhmX-1:|`na&Oɣ|H6oi4EY~_PKFQ "/Q iR$T6xPJrc D,wJ]+EQ{~cD}k@J[iTMM ʦ l1ߗ9 ι)oi.ur}Khc Fmx)̪,*]CyqI=Q& m]dBဳ MHjhW4!j^Dc42T()Mط7Z-0Xx?}d?Q+.CWDgء iF#dF #8#Qzϲ_ 5mm|b\-iӉzUnDYQKfX[v̙@vJR97ޯ6K ~x]W;X#J4%1 JrWp9=y>^aUӸP6o F;LS춄zE0 N#?oe*eV)cq ~)ATƷ7;nw-LҐ]X8%Y^ D X$)T5Q)UCYT(.< 3FgȴW(\eW8bLj! CkQB}7NcP׸p^le.BdYqAhv L(ynRRb&EҔZB(k⵻A*Q10Y MYCtC88؉cy}}@[G+v4\ȲTEY^m!+9^zʢN?qq:X%m!"?"3&F]eLܤj"E2ݕQIqg2~h!iˊX-͎? ]f@iCp~pxi;q||#\.L]51:MC?OLlr, G0 1.\h2F|9/ A)r*8j!+K^p]7%L[5>ptݙ=MxYU ֳ%jɑEr]ZH!J݌*ʂ˅5Uw<i_} tqnMU|퉛,.37*#?p,EUQJ]y"9mfܴx jAkśs*UF2noVpBg9ecl(ՂU #-%0 nr6cnj!Ļw;?LDUAQ7SeEIdUDu3!Xbp(#q3=ZVT,vI ŢOC F&g|9^:)M&2ϑ:CT!DuMvfΦugF\,-+n)&UԆJ yBVU:KW+ʦI`r5,<-,+P&c7fhSp8u?r Xʪ“iyOɌ!S)I6NJ>?>L^S5ed9,;ɕ Yz\qJCVQGlVM{]~{ʪ"+ y^˔bFXEd2#I5HKbwm,SEA.52)FĀ54JIi+tRFd|PeW n93BGh2MUr("ɖB$Gd%&B4(#b \bJ$ʰ**[*"3 yNeA@tj7ɢi&3̑ ?c@Tm2ɘTUw inOC$z!U*ߕ. ZK9U•{---$xUUEQ|ZK)MBI}Z(t&W7._Y*9^}{]^Yߒ\1&{&ѤVqUEyhEʼB)ֆiH /etj+a[Mtb7 )MX~d6b`M 2YGQD$(1UA7y{L {`f( YSEp〔"YAR9ecwFd%KRs||;20ܖz| d2!9zo_i?|3*p3Fe5H+cdۻ:?~偵q/ Y(_hHw|b< U"bS8;%mBqhrV-e AswBU->~B75etÖI6[ƼFamOvqrv9ҝ Zg}v VES?B>[nFgެ9MS;2 Ss M3)Â'AެA0=Cw&W:A '[a0F@H,cJ(]U MIHQe], 懴U˒B~C}2cKI^,.HupEyB< ĜOA3E^mb*LBR!fT9HyAJabG2SB`|ReD*R {MV.BJ3;Vg1$q8w)ݰ+@t3ٺd|yF3Ĉp;-J*Χ#J2at",}p5#Q)NkZYՄa` >*Դ1j3EI7\hj^)'7LɍhS#=6x ȨU`=0Q˅ōdy =`癢]!,S?y*Y-]9KVL'<8)͎'A2FaB&,H`eqƾ{0EA۬.,s֥mԆ&8,Ù g.mM?%1J'zev49ɑR%g2QF TC= sx A' LbSvQ,x7펾~aqk/&EQod=U[?ru^i-*3MT-!yz|~+_߯lK9=_"/O ЮY|~yfQ7w=vm7lo22gvox<՚mU~~Zq,9nFRޠ}rx˙;ty‡Hai`ZUEX&l9>>`ly)[tn@my;"zKpҡ&/s0 t4hEZ}[cLp4uxBaYb9:dvbfe8r-2~HmjRV%ہy}m_YmW,cW<""ŪdgM*sM3v#}jwBuO~"30Rxu<+HwtY#uv Si˖01= ,釞,4ΰH^3Ku\4Вq׮fG.4_~}bۮQ"vQ~"x8]Xob|a.սyJ`x«iܵO~4J^xOuJ|򈊠a t볓Fc+OGw(c.ɭḌD&54!mX'>A SwAIa#aq;4qx"x$z <;:ޑ/Zuu I0ɳ4Hud%܂p6aB` tDxURC+0/0!wQd ^NJ8E3M\\hk;MȐjCl` 4,qi/Uy92Gw ʂPq;ərtȢ`\ˊyjљA Ԛ`#yG1 {OR'*ɞbƙ\jXMkR`,=SO3K%u‘]$Se #]#)a,c'Hđ G$<9D(KAdPG}Z,O9N))%:9ٞ*B͊Kn*+@$8z{ W8B%(@cQ'ĉ{^Apvqf]TKA%!,|wǙ 4ZaRxg a9G+VۏbAL20ҮKvۆmYdn6/rOa\oB~.@4|r1?grML Jrazg:"F|A+jsKaKKFEF,`nv ZJ"{hqxGg %Ul0OdHt2c\k=>esxHhq6BuCR,i`uB)lpO+N|'VEߖJg"vx5 $ӚIo|Vx"R*"2ifF 'ϳ6 BH_328_?,hWk#=<ƒ{tVPh>&p]lk S+iaIŘ*mwɳdU,EQ$,S_BgDL3A k-$aH!$фw:~Lny8tb d/Iu=ODh|H^X {~_ۉJk| &[L483Ύ5ˈMdODeJyrf{5>xA޴ ΡL(./'Ty2MvƑY~U)s1P?xD~ß+zCIzq¾] ?0,3o8<#L6'v;~LUB +߿c'?奧*VMb'|Rmxx: J*џ#/&TmKOçx$#Ṁi~p 7w_(68<YsBuCZZƮ#xmd18n0z^On>Kːiڙ>wP5ـЂ[|ei7iҖ\N'4) HnKC*p<#UǗ7d 4ǗG^O<2J L.U1|}x #/-?~޺ 2Ѝ ݮ'6`̴C'v?Uq]y( S_LdQ2T_^4[ -%yG__y;P99OwlkdpgF F dux CWۆ0$>#̉B_:zD"Y7mͼ̈k&:OX{ڪ&|=4v1YR" 9]2۳"; N7r#Ylvux>ME1 4)[G^$yaqhTZIE?, }N3q^'h*^Ξqtx# h.=O_~|Dٮyz~i\dYo( _e$F*\+bfq: y4"`htTd jRPWkbyZK*S2Di)/tW+bth4.h",Jy(E];Tﶄq} LNǁz`("i@{V(Bx\ њ&+l%.6{o˚yF!4LUSbDF?<R(Ajq 9]z6w͚ef3e8,e^S6"gB QOά+aAUqX<%#U)lOwy#=Y"zKJ3Eo'c]t%g__P Jsi tg_NQȗ_/,3ep\TybEnz#Raą?>!M=nJF7/gy.tj)zUcc n[%yΊn! = &ˀ _yh x =,K@!TFi0wiRN)rBC& QLU/% 5D c*\oseN@"QBQq*]w;8~D NF)q@T 1f t7!8qC)ET9A*g>`Db3/ûk'Ld2޸:K85 kIiiE $݌HyT tR1&M,hC-Yw8Ùt}Bfb F( pF >+> bړ[DLi*u w'3L莸LQwC6Ts<\h HʓK"0AJ(F)XqHq(CDY!M0)S:˹e(e놲m0@=d!wD;GiA(6#YӉ &Dˉhw2Q@jʛg|dѠI_ۏ0 n aL{ u A,/F=pZXr Βcb A޿GyZ+/ۗ,/욊.'2y,*CRp:UԻx|&~uf~CF/Ͽ̎ĎUe%1#Cs.,y7u"sGw8>P yw[SK^Tw$IO,b|g](StI^O3?ypsO. m]Y춷b3eSO_)Yr~;3Q~`#}0@[0eAY?8\x>\K[ s@9=E[uSKZS4r&05colv xyx)aɅ"wnY-ĴD#C MTe* oWdQq3/hy{~a<8=qq=/dž@[).O#BEY!gP{ eR"vVG>mxaKSE /oy[n߷4Sx<8iV ݱ4v>$!ι\f[*'H~Kux ӑݰzwÈ_?cO?H.=h!۳ߔ>=Q4X.įo\gRl/_gDs΀`X$Ym0cn_/#w+o~#۴fbn3uçY8a,.'×+S{p@``$,KrPTHvMT O?P[Wi!Ib$LQ S)UjRRSd%W5 @ZIp$VR!ngdH\qY&-yH?&9)eNJ)*6PT+LQ3M=/,aǞTa(dhx;0=[8ډEIf1~Fi򊵂Z%QI`}sK0[&uX]B>Ĉ88[\_rLJO_<t)4Φ*l9.P=ESu1 #B]zΝ'g)}- Y‚%r{^g^J^/3qY3ۺ 8]r FE#Zڔ,PZctR,CxΕ] :&`$B$ˊ.󂢪Peg4dr!0RREBrh5yƒ4dk >$ huIYP*Uꊼj3M1Z Ū,"8/X7馥$yQ-Q)Fw}N〒<:v)pޣ \Ⓚ<1E A Ѝ#Iq (!taYgZvL )ɥ5\`; )d: R=l\R-jM(_9鼶'BjRRc xiP=bmZKooCoy?R\L1yNY(B` PBD*tƒp)e|9MW>-IwyNn̵n PJ%`6)A_ yƺsOo - Aӭ(kyYnyx{tb{m0u[,[JQ9NXayq&v֜(>ԛtŠ멷kBnpZ"B@e g;pBug&#D`{̰*5ëy:3O숿(x>Mf_;_~y=y3U:(LE||zp0FFW`G. OH֌/i* oSpGg/)f32c8n)L5&q6bBr9v.3Y(LS^n*~(w[g1NENTX'N5^Rij'fg󼼼@^_񓣮^nG@29^IdQ&-(S.@'pp^#`p0F1DBwFTD U- eKTQg bA~]E"k8^Yi8DBHkҖ^.IuE/>e6+Sp(˜ѥhrjk- H`?/b%ɐQNȻܑ{^1NvFc- WHF9uӢ#$],1v 9FZk7eA !*1 C)2-djszDő)i"tSLRKG0]%UB+u(ty$dʠ:Z(tm0#.Cb~ `w, 1="&1@tIyZ⽻vbRSB"3YzIw[c*Hq/t@U4ep:_8_~52+8~O|fYmVf*x8De enڊP|%918E3m|;޿s`9M ,Ew\f_%W5ہ+nYXUqiO=vy;wrVՊ34ޖa8hx8nfWSd\l7{8^.eA[։Gr\ȋm?M0g uYq!}aur$~G։_(hk\7R=eaʜ%ep|W+2dT:=y"h}2oc78$ 0.22/#EDGG5[yfz" S%vNbղnKs8urmYXozӧ8Nԫi8h[z8))LgВx"|~Xky5[9b ?l* Lz6MIVx & g`҇ Ȁ-Њqo/BQwf7kL6;6Cxǯ/M+/i|?8Ix6[q/ a*"?y)3d: hS":7OD똇%1rEЂ) ts:1CX4ɸ#ҥWc`.ie\ΗV O^LӔ8 H#ek&,-~ @ rp;(AfTi˂e ^I SD""U]1c5 MkO%OO8ky{}" ?QU<{qfE*c_猗#<|z)[7;g_! EA1{?&%:'R20T1H epy!4bE!S4;we[*~jߘߪh<;0T7ަcgK| mסYSG^y^b"0QvCa2Ⲱtf9( NLg>ht0Z5>#8Cyw,J\X*b)n+2]1u&+j"gwra"R%ESD/s/h]"D/gվET?8˙!/"sFYH?{dX롸4f9u ŦxN p%p88_poPdst/#iӒ)۔.Rﶷ첖J>1hÌg.Âטjx%^fu]U}zAV\Tƻ͊,JPo[>Y-9*x=1UU1 T/D\|p4s97& p$Db!4U !DR}ׇHCN9NofL]@Mo4떲ɵO紑b^yH^~}@K 2Wl5֜9`DjKBf4ԳL2DR%)8>0^`hMeQ u#ꜯOL%5v=qY__ s$e(*~o8"?ІHQ{~}ɪa&wg{^gv{`-, VnYWuͱ;2#&8>ܮhcjX˯|;r]P R#fjsq/og yyo|~{\@C?yfWpԿdE[=^xۉGy?~U扇~kQR5JTi9o7B?p,]DUvO6#(!ʐ5o<vfXdĺh| Gbq@UE =mӲB2Ɖ 4ZָZjLnXoZ"( vwX/BmFt~EGQlʆy)yVu=H3ohe#.BTU2 b/gixxzir0a/# /_yz~e:<1TE#!gθӏ{޿Z5Q(nne:M&zr:s7T({֌Dx<4ۮGV*co8XǛ><c h_8D6?H ti!YFe/2׿F7MHӰٯh7OOx]ˆel6id o ǿCYE0mj{ʶ$lq@z6 G+,MȨɒdDi8=.X꒲jXFjP5e#K~d^sJ8("a駉vO{xdɴBRM^Q!Bk@2qB"@]0%aW5|z~6kV~*%eVbI-֛M/)U0y A3Oz(Wַ-HRh zh1s8_ME]5#!xkw&+KsD1dg62ݵlnvDS{XƎY@&ȹV=_RcA Qr='{q,}OjPJ4OH )5>-Фd'K1YJLKTVbTN? I^T-쫖u}HgyVmK&$E9yYUݠdZ'L/$0A &;#(JbB%PijKr&+=%u-]T: F(8Q j% }])EYˣլ*-l,#d{X6%,+5 Lg7Rf5-̊(U]a~$Cb-<#HG+Nhcjq B L*οsж+LKn>4[ L]v~oI)QBHKo &T89BtCϹ;_ߑyӹOH,Ӝ1|x}9:Ʀm1Et h ;g %Z09p ii<3mg IV{M eB iD.zt9O?M @?(xzL.3ޞٹ;qG YoX!,E3yr=RcE;z#mY0zS ;y-e)dd 6Dn){y.}8p[u%E\E0d&q}L77߶A^X%/37aqIS<;4(ƴßi삏z"7kK4?JI[_M(iDFwǫEE&SaHqDF /&(XW8,E],#8|d.12.$LT"u^穧Zhw;^KNj͏{/okdS@۶v^"W<%(Ykd( CW$ө7rs,Aǁi0uv߸?[U*T"UIYHm(-v,vƻ?̼q>xNl5:s;DCW92ɏtd p;$=X =/l~Y)/SDQ`,5ϟq>VFÄ56uFo'DbpFF(ud-1<,<Hռ(Dı98@49/W2v D%3c!/ .WvTVfo|BEɊk10t6k^^vϖ55Ɉ>p:Go'#Op:i6k˄wAƀ3#i,qwqD e4v^^\ody ͨp@N=pfO8 }jb'g|8QJvBoa6.(/UEծXgN-L nZ꒟8[ [~}|dЮt?}|Zÿۿǟ~KwU9UM7 ʔۊ#00u ~Mio[gzKaQFQjMt;Nep0@4ms!5<<>y("^JN=x"~N.,g)LKIu<^qqY"1Ob&QԺYDž(3Ƥּ4$ʀw,M,SfP ȈyU2C:-SHo,,'$ǾB5{1 ;jyFeYJxV @iHH}焀6& Cxu]3MSOMj]Y;{L)TUlgJ)A8ssʒw=@R0,gRxoYmVI, f6DJV*Uf̳#2ߤͺ(xF5*F1.,"E4ݼs.s`-O_c@ 3B0XYT^b>\'J2)j?}]xkKCX@MVi+v`_6 uU˜5g"뚶)˜7ȶ8c&۬Hq,dEѱ}lVz] " 2)i1x1M͸,!cU%^az 3z!ŵ/&D~@!2áAxDTtA^]:)ѣt.HB >M5:PF<)eP^'1\/ :@CfO޴%UA]+xdQ&ųao=$X`r~aG"`gKF]hT ډ @ZQ([В2hfRas2F:%-\ƑfGY()p"C$:g_lw'eb ,eIӴ-**k dZc-Q 'ˉLj L%Ź몤mӟݯe 䪦*4@#0JQV6z:Y& JD pӈ[+@JRYW]&J[l=E3#ΥY^d):,924*J2]7EZu%J8$ 6m:h۔jqǑ~mY# E IU6̓EI19|mK[VI?mC?͎ժ%Cr{{bgӉy`'4 5̉ōYn ( EUyucw,32m]d`ՖFM OGz0r91LTQ"F4B ,('DS!灿Wr X|yw~ww6UɗϏ̝vu8͜L/PF2b*VYKӬ__g

9|˗na~~϶{b_N]m[ٴ@ѥm_% {YWm2l]{M"ePu0Qg1X cL@n"E#t m#-Ma tolG%o!r[Lk ]Pljf-=a z>[17Xәzêد+2eQas/BPOM]T8х$PK>9AMK ~yy=|}|j6VݦC5o˄STwEAIĨF(ڢ8tѲZ7[,' Iw<̎TeMןɄBme "BĔ>.=˼` TT` 4Mis( J5*xPi5*d>_.LcEDW%^L'[pv&TXiazuQYY]h U773{2+YDx81̈́Ȟ'؀a Q{}kU>Ĝ9MM4_\hleI?1JEv]- er,ز&*1-\߾XMSr. .V/ vAk+N#r|ϙ__.V|jw<ӌɂ-ZXe8Jy PjF+UeUe p\6ޗ4G44mD)) t',rYO}rOC_Z$5lWK(Cpq`{Y֙HV? Tj$AKŪT 2(ɠe|YTYbdj(J%PXVF1a*5([V*cpPJ+KV\-V!$&IUQ -&6eYQJ*TTRD&Ih<'1)bUjS隕m.{3cI $r" "JfeZSJ)Ͷ!‰Dbzft,u!(ܨQL1(mp=KHiѦb? EIZLRYeYc§H#H-TdLqI!g |EsR)Up@~)_IC+K%(ee3RXkR_PXDʴms dެ1FsS%1)Jp5%mu^(pH@+]jK)Pz__q2Rp:\.̋ۡF~FY1xNNDNfL DFIY/2ㆢN'g6[rÉfi-@iI9OfHS)Q:`BW$XlqCϸ?ꚤ4Q-ȲxDgE M0E>0i/I'xZ?]/Q#ҟ /5/O^~ێ'ߓEasB\EX,o[Tz^#Nլ*L!I:= ꊇ#WU[<{lX }$nX~&jY,ZNa|ȷonP#p*yB1UbD7wئm(-e- ղJj&mHYR J֗TY-K_HfG"&aQ꒎fH erQ"|OguETr\ [&!!*QnUNgb*@qIbjRUh[xCYPA\;$#ENPl' J^ 4jC)&Qe %"203mXca&ȆfsW~$=9BF%Q E# / ] )t&đ,2FYr,#_ R~pqJƞi39MEJ[ZÈRp-I~`Nt\V5I(nӟ_q_p. XuKctџcZ 籀#ɤB"\6"Ie4RU sĚ"H &ax:p-O !k〲zfd&_ݠm#94 hTKB- jՐTBN=JP@bFsUE@]&t(^,v;-$"L%=F*hVm5A nENaBV".r$@]ww8K cauH*UlUuǨRKDW~PMƁ!%V-4O)qpP(m@+y$J$xx)Lp&Fo_cb?LZ_IRC9}ei`V !/P$C]( ^GKM@Q{0w #ե}"=jĻneyv2A$l Y.6r 9( MBX$D*6dUHʥ%nBkRJR]B4(qbW>I]}#yR=L$ 0+Hpӥ)$~QƩrǔвTesyA&eP%e)Bӥ}i$PRpJ"(&B}^KKksB[0bAEagG&h-q[WXA-5XV1ԕ 7734&5~cD8GxH$M0y$NM Jxj:`,ydbI%77+ ruI1g|FNy<ϳׇoܠxa6|4c4Be d7z8rzVW+vtd\PWؐHD?LN49IyB\ʄ&` v8NRW2*DI L&Hb  !E>ry#ӗLZpFn߾DSI)iwD55-DVhei% 6 6hj[] [`hUTڝVwqk֯S)ЅɬW([X-i-\2 iKTY̺zvg D *RBlfS7SӖ l #zIօ-P|<{)$~yx.4EiL/ig^%iv#}{$pY=oox}e{ݰ^&:X4>yM><~N(%OZ[|OtYJ\u<^yݮyy>LmL#mY:<3M,*[ip JǗg^5x2A2s"dpBm^ ù/Iv2QJ*P{Z3;pD4q!s 3錟'|>3ep>湘)C>bdv%ڠ2lBL$!J\x9m#r͢?̮0$j0UMUK0, \pFم'A &,>M=TŇF !BF[ޑC)s>_ZbXZ!ݔ(QR4Jk'9ٱ{<ρi4d,7Vk 5hEҒ9H ed"Dg/Ym*CL4]o9_oGW~􁾟4/ݘif5,QGe+JV57-AYL#WZaG\]fw׷hTpHno,+|y{G'o- ~||z7ٗӧ> rM>4b}v^Wȶcu}^nר2p[ji_y"r++< %JiW#'#/J-4EǪnA ir.jY- hkv;tQk dpzvӥJX!ujX^ZAE(-Ѳ$E{*L/1e*fY٣u]jYn.qISتԖ,J\)IU[)"Jf9cBfW̡F/㥎Y>;W "#GbEPF(t<3n1E`i{gAob+C-0u R~Z-HQŅKT]-A5M$?!gXJx<T%eˠDzm[zqw-]e>Xx|(QQM?Mh2glm92(㯽yFa Q(Ӡm#BkWhA[YH[TJLBc/.WU>?eᤌ_8d)8*+*#yY晪2H2$FX:BLnBHt@ܟ)`Fln9ӞRٕZi 3)Bw{0rTi8pxy xo $]<9nqwXvQlZqcpDyL$X"~z{-ՒiJ=ŖwoSRbf]t,wH?k̪1&ںnJVW ׷KU y5o^_?XtŎ7w/` 'B?}fojg2~y!%8y)KMH-JHX bΨVc:,s`^B;DJji0"я\)VX޽_ae`:O3vo=fSxgs`XX4=y~tbѴ5Ja\d%^DMё+Z-k[WaxusvF\8E$ɰ[lض xbum%6\^ln֨"(](,0EdYjk%͊Gټ#y} 7{Xwk֫ 8EY~MYtT[) 'kdF#)PD-$X@ P2b6t`v__T 2 2?#n>ŽXFrŒHmm0C4<<=QGI"SfAR ߽}0!I C1:緼yя9s5IǙϿBFڊ<j^.hv24rּz}ǫ%Jj4M$o߾j$#Y؞rZnZ²P]u|~ ]EjY/nIgӯ *y]NN@mŧQ i";;,K>TSt]]^v+2h!ꢋol]S]`E0CT&2V+eS_UAKT+KY^!k)ϢmȳGi-Bn54E>KzbcC $U]!dƲA 7CkQWrIX\З[, `\#QBEd\#5޼;|=.^xA.VT&Z/yf$u4]i(rV}E%vI-s*J䔈+-m"bZ6 9g&.37X]$<ƮHdIJ0DŽpc.U/m Cd{ei]GS5~e|{vYN0I۔Rtuˢm R' qd%ѦcbL}K&UsLTJ#rR kLHEt9zq`[U Rdֶ ( ?O .eI'm &Wn]Ť^1v%h %JӚ Kv}Cgj*]j^QJ|sjrLq)dRA3ikdJuǢiѢȾLբEja8HHO nhft>86#Gh.àҊUE%Xa떢.p8X!$TM}~K$IbreO /"2rW_X1i ;hR_2dUb/AK2Kjr ڶ .( _Beoڿ /Ck B_!_?/$Jw( h^,ܱޱ~B}Zq<)Ԗzvardج̃O3<բDgTI j[ 8#%\6Bp<-h!L%?J*%N%9ϥ3OX/xcd[|*! ZUF(JH645ϟ \ai#UaUO?X^QiDY^_c-g*#y~~QJ8>GTB,w/Bcou/gnKdUS pHإTH]j*8 !%D,Y(b,S3RIfsNXiIң$FD2\PXty"]4Jgrq,?;[L d:tIfn_}uKO|~i%i*STAW#а%K?3g\W}>oӧg)?`\mUqGp1Ȭx9޳+ ߽y/?F# ScdZi:ψ݁nviO$Ρ ']G"q.z s#"֖A"UTȈj?S5o^LsuMZ 1qް?1Wk) HrvMv/; '3MQ^@a@'0x>!G =g4 $FXVXy/Qd?F7m 0O{ ^{lZy9|zy(P݁yy$55y١FF-lˑn0)%nbJjkY/?TQZs=Jd* n\@ư:0" +EvGdh 8a!`&8X <⎎0ǒ"\Z|9`SB@Eױ==yD{g aBGXl<8\fΉ?jtdΞ"CJ.iaGq`f`GimD68xj4mDUJD|J=˗ĐPPTIHfLpςpI߅ /'l]ŬW 7{il!aK zj%1^1unp_A:8(,6aBOF,/;ݒaAhuI8SBHY1t'^RLϸ ՖJy&Que3xd4Xk!Q7 +4yƞp {'FWrr%Dz*efh IJzQE 3J״,4Hr1Ma#٣2ZkjI?2_L!UE6eb)2OrZF_jA)RHHU#luK2EQnښiѳ^n8Η@hYm.S:ʌ<;MY L'thߐgWݢç4JjՂ4Ӛ xtl7K-apzÑIh0_O(-YnV,h ׷x|ݫ*_8R- [K>35OwHMSoj%ݑ'gv )\mk~v31EW'n ~fyѫs鄧uՠdhda4lȜ7tME4l7?S,9Bnܽ}k-IH|hͫTYcMT~θ0`uCShY SBʚfM'-i݂kIi5vܴOOtc]M^,PrRFR0;U(b01CW7ᄵ9Jv3zqvdW|ϟYo< =g&myOGO[_1͉?|"zG%o6kޮTm1r| FkAϼy[WW4)kDLRnXVL.UMf>2w٬HuMbƞ@j,25ي@5O/#R:y]]/O#P9OZnA^Dz^]w!$#gAܿ XHA3o\_kP y`]ؼMIeRJ xOvʕ4MGeK=N RLR: )Tq}uW|f͜8rsiSd΁AOt@yñ .V(Ų"^5`X-ץByo۬ZcmCej1JavŢiM^)R&@Xo֠atI@E|f (mhLuIV{3bk5V G)e-4`LV"s eO3 [s0֖?ObN ݔT[P~A$CL ڊ XR$Zii* (4j"UD$,\u Me>Ҡ0j.b "LHŌZ1R0{/ MvGQL" D k4srv K^fA- APVvѵ--? u]ZCtL/m/)$4M* @e=C`璌Sn/ud_ABHR1U)"iLIU,qiȯæi&_D)})`\T<}HIju{N$8_epkM$ jcY l+֤bN_X4ӿeYiFi=4r4k>a0r{ M?l9џ1xrq+]P/n+Z,+b D]ӽ} q9{w߰m4/H#oXTYk<^S+8~g8xt &%8֫;[v{,u˳ׄ$ɳgX7^_RVZdf tsf!Fnj6Ѷ!K"\]f3vnoc298DN(MZ@n2LDyKYPLS%YJ0Ihepg),&ԗ :rTvXB*cyjKeh'Deb,T<>$m C#r| L"M,'!4e=qFV-^[|7NAQV!s$8 Ib`t%Ϋ+{E6ޒD\aB,nC?;@Z[@b^߾ anUaԤPr.&909 )$7s|/ +[tt*Q)r>?rhi681CQ(f"V v3y1 M(UHmP/8DO/Hʾ$t݊]+ ֘3Rb}fFJlfOm;a{PJSW9) x7܀$=y*c^O=nOUk4`U'nF_G~W~g3gUyw?|],,í,8O1T2 ,Y74{~EdrYHӬu3L?2><`>pf*-*.+T%hW]Q4O~C$ ٬SyiyLw Mϐ597Z-yJejc7V5)H~qw1L T|~O~1'9mǶ0*MF8&㎪YYl+b?f7n:ˆjI:޼} ^]?ݟ_/]O=fÛ77Zq&Ftk曛;;y=H\MS O#Á;[մ-E#~J[ǟYP[p|:1 gTn"«8>.Vgڽp5a>1e>`r޼"w MՑJS7tVW`o#y:ǁ W5ZV͊-p[XC|Tz;tdq|i$7[ BpJɏ11MfC?Em1vg>? t\3fT?Ǟg:Eb~#!z$Iz!Cr% _Rg)L&˙9tW [iNせ*~UsYw5yڟpc5ok8q"4Ų#MSdǏS`ʂyr`a$wY ղ0TUůhwH/{~w&O=][\v$)hb'55t"ۚ{O€`PH Зh .Hrb' JٯC K+RJki$ g |@ ,VkTxiBő^]CXh|{ujBADĹ^ea)AZC .8OrzJ`OV`ȑ<"M@3(IH6ŸkB}ObpO @,[%x?@Ə*k25ZJ4 Az[8dZ2K-҃ @@GE) 'z֏vK,2 A1$ `C>溇K V yqȽמkGV__K^?{^?{^?{^?{ڿ L I2D@HR+Ən0$TA Y2@DQd&B' SG L `1"3`<tB`"f&T("&&pWE hH; #` Q@h"@& 3zI&f&DuzhHA=_4"rD5LwO fQaFݣߣ)&3x^ʁ^צ΀W9'9"d]Q*sB@O}_'W?ZD 6RXdAT1!sZ05qbo _O[G <'MXcr Ma{z& G@{@;b:|L D8Op\{_<,w)tO @dBH49.1QEYϑ H3 |Lwo.\>'Y^o*o0kd[ @$z'qLlf8OXkq)|5q"爄szyE ݡAc q#ffk?Sd3d}x"Cq̏fkp{D!0 h3O.$5{W '㉽HUXkA6;#,kf ?;<]HG:~?]H3ؚB5s"8F"sbڶL"<p$: G&"os`6 w޿<9 u/{" fh}NqBUTs0k>7/~?@ fLXC;?Ol*@D7 }>d|+_C"1P$)&_m78Ɖkh[|´Z sLgm7/;%~0q*9}BĔrDVqwH&TL^=U=/-̅ YC?5E Gzωw$9&*"r_}Ǐ|>(w`kvŽ7 yy(>8ᎄ@T0Ô_?g?_A`k&{ߐ<7k8 ۆHGcOA0am743灮A/?cL M #T$4*{~X~KjbF@p` pDkM_qon@>5Hc8P`qYAD9E0glj N!V?77@D82Q2!#`".R 4Q8xQ?ހ,D% (z3D OQ%`V%svw]ZR<+}f_1Vyu󪯚1vDD@dJ7p=ρf N~1ƉLq \i7Q{G59!fL?sV_}~UU6`CDطyb3CD1'*۾ڙo2~8׵<+>v `3$63gUm "= F0 Q`y֔ zV;ӝ[]W V,'cpOHohߞ, 󄵆~ hq 2m,bD CdRHSzgQ\FBsbw6f09~L BŴ{55{VϮgy< s*[/@͹ǩzc$:}B{öH]M 8n),B` &)rNq̀*ȀHhDN`xw;Ękg4xG8pYo7? _mc q5=zߐW൷2g`)p}Gzp]t/ گZc䜈I`mL%'ێ~灜mh"1jm0>A. >S<9|ض97!":Lھ}R _{^&%bWq%{o ]f Z PXf'@\*l=XhmJ0#j=F@`j@"Z4/Qϭud:~g1p7_}<Iykbg& NceqTЫ#f&oUh |[0Tޝ73<+@DЕ@Ր2Sp5&*UހdJ*\ [335OHœĈDQ / pVZ Vt57vkD1afdG!"0p@md5_2@pűpgnI &83WdA ۅ> O̜pa1(XRA<^g1ODTQynTcrOW &62>du'zݣR`;Յf1 I6X~Y{hD x<D;ziÜ H& 8Op<'Ff=\|}THQLQ \9YU>62q]E1W9tкm Mrg&_" b17̓DS% /0K`s] W+#Cdw@*k_:Yl cNp.; @' [?#ahL(ʓL6hNZtt/G<'+9X Ҹ`ࡀ44a~:0zLՠhX]qe"~dJ(fY9fM"9;JzjŌ]RkJ $B`+wan\9f0yŸ\5]t~Av`*Y ֊5=XeuT/u"UW d]Uh߹'"@Ptѵ?27Ms9V#[o@54+˨ 8Z[,`A޷RK;Ƶ֝Hdž/kqG[MY?o8+1S?|Ou[kx{Ǿm8g`z w8% BiWLLoyu3:4 >1@(HJDf=Z(D X01 .@ z!T %uU T`/ɤ=E0 smX)4V{6p!ŽuB[ % J< _W+ܯ$ңpI9GCGT ,UѝfWI1%}XfDLjCYX 7YEKfYmg!> VI/b4E%, sLf)\ Ά%6*Yqt(;pEmbPv%>/0q |x?`bD<VI ע}uCfض7A+t1q<əDyRvۡ[ w$(s'W[WR* bijq"h[b՟ J:h1 gf DŽ~ h&eW(/FqӘF*_TmVU&(;liJvRӝ] Ai<`*dW=<A>4t ൙ln| j9Ϋ8YysćWaZYvs d )DA/s" جo 7(cf46ɕtd8 XP%m;s DkapOX8ڦ{?:JZ6JQxopN&cۉL<M}kp,?1еa/mVkWRn֮XFmߙgŶ''  V|lFɎfd?Z,Ŏ dJD' 7XR |Z ǘ۾ 1y}90g` wǬ:DD~Rqc'TOσ5BG%U*+WXP4u9 pZ՗L8$1ȵgDxέvZmۆ{a<L ,VW,)T^f~N&%i̕՚HJZU{@!!bsE-q S/Vg(\c#㜔{Z% }wzo@󭣋r_KLjy1!^ H9 KP lzpJg֞/Lړ s/v̕^~"p"KI Y>YW=B l`XQb C&n $k8S<)/>X Y<)1LOUϙPWgo(ac@feUbWLaY5f$sO/ /DzH [Y?ӄ{`+6=l&^ 0:^@H 0.F<֋LdV|_Ws|qw(\ Pfq*@{-U֙5sxO@@uCĭ7ܷ݀$ x9TД U;|DOk_H{o@Dmo0ӫ+Fi mdTsk]X?R ߽?I^V5"Ph_߷-hpOZH'3'WXkP3,zIhv=hԳ- y3^Yu:-oN*??ܯ3/z7*`!I.W,df^]Ť&JpQR҂:D" w%1TU,yA1㼛DT~_kqڴ8BJ:^:^ eZBTIDJǭ_^\ scYyFV>\ˮ{3*xUS#/PpV7(x#Xw`#0CkռZ?d%@^Pv61YR+,~G1}E^]m@+YWHck3C&% [J"PEsCvSb.L+Pӕǒ̐řdRWO_ @q`͌tGKn97,0#OzM5 d?|<&EsBɏ1IɤH2Y&fX*(h%K bGPԍJR 0&ߧ[ Q^]y -bRү@`ohεQ 0'ç!N5@C(gZ<Ѳ'˃ZXgDħ<>s 9N,! ҿ ]51Q~bθf@_,""|(~R IY\^\ҹI(J-%[EcRm‡D`GX <6k)ʥͲt6n 0/NZu(LTαY+^f(E\V@+zhk:ƒ 2G* XYg^tq+PI•Pk6:xdźu?If\>ydꎁό,рk T_aR:6dD z.PCE@$APfV`Ɏ'jC/% c8`s@=0ΓtdW|00 K&ԝ"}ORZwHbĤ\:b,pH> '1`cxUrU/p?FvqRe ?:bN1*?yNcbfr@pcZ,+.WT. %;%3FL?$|зʋu X3vmQq\U)zA8`0CdMY9 [̝LLS`K'DŽ5n!~;H`ΠwH ֋XQ ڤ %s %5qėo2 mQ/pǶ049 @zn4K94!dBƉ]IFZ8ھC]bQmP><<h&q8L1IO5ULlÅd>Jڃ!a,Ge?|~+y9g'1Jj/T;b)Ϝ ]}kMUch%P3}' fn;ϣ ]1qcEq7UT1ʮ߽yUg1Bfx{( zshhmG+IVE##ףI E+W>2š$'cKSL^OV`OO&Y9 opw<O#V{%[3JAż"2h qГb5}}UA%@m8ϒ R{ohցSx[w8Wu1's?zGoƦO}pT1y?~ N6 /"=,%L!I_,U/J`+^)<璵yNOh L2|VO&E1XK]d`<+g>Oib|pFQ1&2'u`U"p~[(b%2^P!kCE/$/t<]lr\ $IVGP[t2JftlܙqʧZ1*!b{8dVTYGbPrmw?=!ڠ<8JRQ9yMfbecQ¥1&wX^Ip0 cַ#ʺ!9=LP9'Gǁqb7n 1YvB{) ȰZ65l6PSlpUW[T@D4gTsڴw#(z:pNcp]<IC5M 9EIk|w߿;n7 1i_?gXoMQDuߗe@/R2J/(v iUPCjlb0]H 0,E>7TAYVmC@0ڐ%Z,dpGY %wKF1Sp /-Pc=Tx%;4-]t[jvoִOȾ`8"Vn;qm{<򧡺z::qC1'C/hmCLB=1guo>6߽zx>wzW4Qj2PA sR!]C6-&';>f1&L$,.ILJ焵0Th(N 8n{ӆq4 S{Yz pC(w;M4#"?1_F`xMOu+@LĮ¦YOXex[Vb&T&14{1x 8`M;aNyZ%pu`ϟ7AٙKJHY 18Ah[7@)!i!{9W lP<'4!^Ix{Oh.ڗ\/D(%j(ׁ8Su1+i`@v 'rP xY Nr

@Q "28vb9~pXjḓoɮɑ,^Wr\-T 9 Nkw 0ti߶Bs@d9q3 )ǁ+9jx?1367`8FY#t<unXXQ5,+Rjg,"ApUn%?Fȗ,OFiX~[?ďƘxzbr(f;-D 9&Z5%'A{1.^#a3uTq2T_ :!O˴JEY^ى$dT4n7sflVOtm )˷Uj]X ^0Ѷm;|>O~UJ@dgE,ihE7^؋WBc.q`2n"03",w]7#P.UE\z^ km~ `(D ;qªX@ҐsiO'Ȓ%Eh%yY;%â^&+!_pvM;'i'TIĔYkD+!Ta+F£ZDNHl[6*Ul. pO,&,:#5x4Kx/&@qac[gb{J\4ٵ("IX)/| .CҼ8~~.1 b2" zW__b@ 9pjoo8c3 jQL1~4vo v9'˵yFjMnth a|v]3m1`[9؅ $tf1)RbFuuJo3 1.ikdO@1:po5%|ɼWhITC߷svŕEW/"=mAܶۥNɓHI 7u܎5^g9ȼ94]8uL'5?iOwľʳ G72A5?O $&wqe"| bǬ8c:laquWU D"05!*daKX-1p4ʴz7.l%>˺N6;'"I+IKJ9Y{59'2cқ(#Sr*U{[jӬɅ74qkds"V94(*ȪYo RLJ$CƖ,Y%Ǵb%$QIRT/Ϫ1F1l%/noΚl*#FXSQ?q5"Qex<a-mJs<ǁf/oܶ ?!n219m _ [ gy%b2} ~=C9O+`O}~%vHQQǠDZ狉e(ʫ0 I0<9}h^AU{bmr/ݖvdM .au1M "A?dQB!.죀\,_*Y+o,iͬ,M7 d.Gƕ 'V!Z4y$՚b&@b?㤉U zuhЄ*!a`ubf_ -_bk*9D^$JbYmf_u'F:@ rDju.,Ԯ{^ٵ7u`3E+^4px&,6-qk=,Ӆq@)q8u+;hW 1OZIlxiE$12`ph{i;HAp:Uq;!}qV\|vǃlbH zT@K:7N Y "@S$qz+e(@Xj^F`]e(|μ:|ށP:Vl`Ձ] jBQc ;6(^^cHy 8 g͌y22Y9f3JX> ^Ş]Eu[#}34 Us]u'OZyp;O>Ӹ6Nɠ_I&uÜLz:i%Ls~ @tN U /W?-gI(3 s@,ʊ(uD+VM&%.@o9l IE~0QxLض&axڑN#W@c3NLE& NHl['@7ZBc4!nsm;;}+ߖħ'YŒcn[#bQυ]K/x_+)cgK{s1./b^-ɬas#ōXI@2ZLRq51PX5cHU(8"Rk홦KUI_|AkaBp[?sN߶~#P >uw<O o_Ii wqc Z'iyc6`k5獬Ujm8KF2,Şiմ|0.) ެ Э/~cC$8pc,_߅S*r5+nYbx5WWnb.W*6\璃-r*3AԭBޱLSܷ#a}F5mLjy.0ςNN|V5tW5 s @Z=VYLAؓ+PѮu) e]` DH2oٰT.K Կf:/BϢ2. XuC88G i̳$ǀ:s_J Lj`9 :8'ցJ\雔8.ou~c]pǶ/2Oeڒ1ܷ[ \iT$Af2U5&x)`d5JGչp~x"/%I(%չ,$)z^D"Rd,BJ3 w%I 6߭j2}G?F"re&UO[|7߿<-Oi?}?%x# pR)l.ȫIO3p7$A".?cn[,-1Lp32ܤ]K(ƇNICn*aD.0 ^CAl8W).X`[u58XL}4XHGz5>hRV/̣8Ѹץȟȭs{yTzG%󜗤q]\ȋ%*\ɵaR62yD0g.s׹/qZ̝& \,O:W+GT=~P@0ECʏ ĚlR,X AnlkΟ PW>Iia?w2$:@@9[dnQ,s.Sa`5}wB5wĘ&Iy3IcL'aeFn$7ۆ8~")o[`zŵ#G`$UҀT.䄜"%StASND0e}Rŝ3JO'}#%]ry}wtDŽ(E,yPbߋ5O&N ILQNWkJV;cs:ДLel1NGMGʳJiNO1+Y20n,4c8Ft4U8g`1ljO7 (^Q8 Ei8|mۀTАٱodĭ){~\T;, ֪O݋}]ΉK"T׃W*J/=,3o.YU2$Pw+#54K%~}W$JRƍjVL[ Ы\1".*E*rřGv@$є^9* ٷĘ678xHh-(- )dj W$3ZB,y f l&ثP%55l5dN;ށ"2/Vmh વ)t({N>ݸ>-gVNz>Y~IωyY Yy 8pLǦi'%ӄbo󜔜fB&#+\@ *ÒCKݧWҍugUc$*}@ >u!bE&YkdGl'9m&\h[g11A DY΋ ؤ; ֯)x5*uł!Xo+FɔT^rֱⰖ-r/6;*|T5o/z7Dp̉e@Q/bwreGzx}}ۀ)|}yCѿi2S"@6JZ,JӧOxǁmvh/N(BFk3ZXK 4|1za 轡o;ޟ<_w'L%ϓCPL^bs6ERS,Ӓ,T,ۜ vQa 1!$qRCgO;oaIſ;_z>~?xP*@+̰ .tJ\z!+X";IvIvѪ فh‰fBY?M_е .JeVQ#}|hMFHkr`C9蝵Z-+r i%H HYHhE60^ L2F&o|_= p]Gms%6qD+^R:Nv"iN^e,l5EL j]pACIPH:@!^$omڇVtu>E\XZU5vI0,,*kZJZ4pZ/UPˍ+|:Q$IoWpovv :RmhAvߠ> vg*g2K Ʌ]dkfR7^bE,cHkϟ=! hs"VfƇ LXr9LbbAU(/Q%"*p:* "ts:|+v,U9MqN1$@FTr.Nv Nwk\t7 ?/3Shk0b:B c7zy&Y'h4bdQF)@HߓrD4zOI=suށ8q8^^OFK$ yD&qt5X& A43jIyƱ)suxo:?5NwlFوJ   UFa놽)&2Dyc n{M(\L&u$:ciENs6CWx>I_@'Uy0TÓqgLZ=!YD, e &<163ryr/O;xy-`S˟ZϝJ̽[.6jkbV3VfYH_U!F^_Qb6kX.)A2I9&#]i߄L7Sܚ2D 4.0ꐗ7_5ET$xhaH]MG kg~q R)8"(%P]A/#`:S!k5IE!Y>ٚ 4aHh݁ %`87&Uyw;WN(h1+f t ,i!\l>a^7 Wz-@r򂾮oZ-`=XlK/}TnY93`;Xw`k]\`:1sݒXW7W. PEPK:Li%mt2ϲt^D}J0k|xB*56}|9y~Ƨ;8$n[#{x>OJLɋC+`\Q`kdJY寫^ _8 ;"lxdyM 5Ү=wڒs- 媷n7N Q|6w̓`t|@Cn #@.uH:Z`\ [?[k'H/IXvA]?͗!r.(ڋ&CdZy-3|ɸ/KJep]e^6!lVሟ(rru4qx_ R .4oUW%Jع УK>'|攷i& @(fdkZZEEVfEsX cTx 5 U`ReW"1ppu/`UNqڐnMh7E[GΓɋ*N7kuٛ#(kX&" XM1jLA mր)>KTq' *dY~3 խh凔uqL uԀNSuMd>ޫ gQɸ\Ҷ5 @ȘHz\hԈHs i0N$SA(5A ;AN )/821pz<&JEOh*>)!КWJgeްo@$j`X]}d]:ehfѴdtdL~#ZfrQ,O8?L0F81&>?{,])=8 lI Gy=89{ 2.y\HA3 gsWi49hkf{&Oд 4 (_ lT0s(I|lePߥ2#/9ȹ;biZcSJ yuw8q'x' xk +9*lH}W+y5r+&ֆjឞ?%p jxK/J{ƽ^Tu i:Kf$ JD dbMdk0ڪ\=VPk?Z_?E%ex qr?Zj5[þ7I$O)vǶ5|w^m|hZ'ˮ@JȦȲxɁI w8f"D́^5!HtQvf( ϲx^&W6ܻf;qlL"\-AF Ks >[SØ{ [ZEUU(P#kvEve-Cʓ<62Ȓ65RTc"Pd]3 ]< MEմ-^k8g%sT"Z+#K 9M,Y%]y Ѐ%Z@+CŇ?0pY@>Y$dLjpb%KNF0ӏW&JQ3_'Go#ɞ''=u2'bKZ&(uƫZ,c Ԯg|:cA"yƬC& j^VRٌ6_|SωǓ$X*o2p&xmpی~* wP4ͳXZ1z\FSdU Ũ& QLGwe1p4cΖ"F*ffp^Tq} if&?oxylj}k9Nxy("%)ⰖEdhG1 qg)(s]IZ<|Lρ1& El_\ܟï7oXօKzDi=W, "û&, *Ѯ Ԣ1w&YШ i"h;,FU1x8638"Jµ']f"a$p-0`f+)\h2%k\]ϔ'7F6 d๭ [ Z]h'j.\Z_dVrd-/Y k>2xqu3x׏USAW_/[SY ZU@JZ3b` eyI$K'PGVՈյ-CI k<jʇѨW͝w&Ruyf\z`[^).LJ$+ mpPmni 7<t3jUv2pNRʟ1Yxn>(:7> IMv$զ}*9#8g&Y z%ھ󺔗o@uCH?}"͠;ef|v o^E`QzI @y8PWfU HՕYd2MȾFMoͮ@RfB//>BߘHV 3J}2V򔐒BRkR![g*@gۤO"p'l*tpGNNNOgf8}#2#0gD&v+F Dbh9JyP:3O8Dh)ʤ=5$&𽀠u- v\XFh&x8pL`79&n`*d:P,`[uz?@ޒ"W Zb۷ԄfڬZwun Q x5ߚ"İorfv86ݗ7v@OwѬBN&W{y8Aϻ1&mW̩9YH^J_%HS|'&pp'")>aµg!MrqHLTp-L2TF5Lȸe-0T8OmX+'%*s0ϟop cpO'f1oz U@j |!,55y~<IhNX]gTH1+_kc\>*.@jYwE%Zyw^ rmv!!~=|?;;?g!K2x0`0mXvnpR?VB+_EP/+PpY@Ln:;E p(CQh/Zq &^]Q/ٗpo[QChu +H#g\l)\}$e vr% [ .Јx],#d<S `ayuk.o*5&kC{7%+aֆY iz^ O+dm0Ox ):cR!`qBAi`:8'YfVA2u[m{W J^UjJM[k8 34*n@N ?I*Wگ'V8NKI]"Q K>VPsԾ )HE8|y^>w5Z&lp<1Ήm ;5==NP& dcЬ&Wꫯ(sSfLJd=x>+i;;e&Z1$yH}I Yy fXM%OzE=;-OӫM2iOy& /`<9b^G؇֞N+X8hM[3ZNm1kMYo=IĜrʻEk$1b ܚ[/W^ 1Z `&fI9܈IVו,ctP+wi)V^ 4fYaާi,#e% {ujjP.`Z^y"s\N< *ؒF @|D+g~Ϩ0ITAD(v>p}uzgZB&(e~JѪtè_朸~,)nx'D [Ed܂\~w|ꓯ{zۼկUW_NTDWfƩ"E+g_S QQ x33D8& 2beʺYH_&Z\\ 5e(bEU/łWgm#X7 <CcQCpƈn}).W\L&9G@8 cgz2>lOk7:eFfHb3C6'eHzۆd}Kn8ω'zc 3&ǁ۶5(-K~s~Y?ma|:}YY̷q8x6N* z0vhW}ƕW>TZ xP6=2!Hd'f%eH'֩E/ ;a*8Ϊ:z nl"1γ:5%jJ6p^ qcndcONs纍?O ֶF0 1'-Hl)Ɉ*6  )?O@IIʴzyϗdcC4 #wm7A&q6nyغk;Ax7[`B5c1<*x{{B(\c)qdLtgo9>Nq< k1GE7(5YVYl EdH|}Wd2٣rk$Bߑn&O PxcY^Q{q2B|£TgbN 8YRAKbΘb>1%]GkZUk_9@T򑉨5s}[&'sB#J% Ne6˼"h[p(4Ō]@IUp(:#1'A~U ƳXZ5 (|T㚛6i¿L8&&䉹 zJ̩Epf„fŐFyJY@jɓ\X<&@o,1Y9OTɾ`p)d_q2#C+ñü֤j 2dY9Dүi|^x͗2}ݏ/. ,W*S],z-E Xv=+}5>Z—Y AMT/p}y4-`IuT-bǟV-W܍ pe`^5t] UT݃MN@JilM87kLXRfh7ǓNfQk >Fj aσFVx@I$q"b`=հ}դ('A]><Кӝ1=i10O)Y5H^VO' zIl LU眲x/3ڸ+yFm./Y:¡:P/)KbXT\ckKW"_͚9$g\;pQQTq DYGAUwuuQV5+aXS1f .6JqE$CԒxTbs (ڃD))63kȅ,wJ欄Z.3 B"(?C6T4bB닝ի3LT%\9T,*|W2^"V|=ޯblj8.DP1''2_Y܍9*Lxy?5Aa` ,c1XWC c^ Yi&6 Y$TV޲˗lgI|OM4eZs]?bg3GY@1? qW-!++e[A9Q %k 285'45D slM#TaS<'e ?'=$o_9u=} 1[ǭo5Tޏ}J2W{g ʩdk{s 4Sw ,ϟ|~ZǏqT6 |Ƨ{aŘ^ m59Dϟ7^c }㿟H  jpz-/Ņ_ LEG9fX} |*Kۊh\ݐ!_H@Xv䔘y4ЫE2l%o\D*1>`F73m,,b56\@.[Huk-IJ/n}|z[@eZ^,~ڠ`چ?!\pK@YSԬ!U.Vb}ZiWq% QDqm j,u}J*V4R|Ԗׁ\5,5|2!X+/FR.;'њOvӸ(h>869W)ej qB3/{D!Q-yrZcr$9~G3B-ja|y+P9Um,x@a'Z'[!]c>iV-Y{+uԼ|Jaց亇N9&Lž`>ɉ?0gauxE h 5sd$7%!(3}š] >5;.h*@B>ϳyb)<8"i + pL7I{IH5a;c( ki/oĈgJ2[T9[<~v/9&/@IB%AƋ崘}iHOR OCb`ˤ!gY@^ׂ;^k'^5]1?ǬAȒدFG&)"kZ @ "| tb|M\k֤{>|j5b85xd5ᔤS%1WMO/oOX9qo}群d5Yy`c]MҎ"9g15Pl6>M1F1WyM6  e3A`1V|c*!?זeFdfU͵e ,0,/ ,H$쾏fIKIÔ~ٔHP/Ba a{^kVef?Ysw`ZsΪʌ1ĝd 5a^=9(t+:h1,;&Vc"taM#3G;S)-`30 A=}kB?T3juj@)T\O5peJ;XXRZl^1])80H3A 6&>D&,\h V*N t@9:7aٿ1S& s˯d "I I _HQ9`e[ g񈸷:xmmdX~Ԝ&3JO(YNFlZ[J<JHO*%ȮPP\NzXyͷFE=cd`?h r #B [23Gjݙ>ONyϳC-p pJD҅ <SBiŒ8ڦu( (Wwݷ)ǎx;Ddg~gRD\ׅF*Uq8Y%M*d}iص52ׂ ׷b]rɧu+|}IyTCgiڪA@PZ]ctJSRv%^G^3QVuN}g&́%qFvxP8p NG0Nsprd5ԖZ7{ƻ4\Φ@N4%; f[PXk]q s/c8'atԷo?z8KGk> 츣m;J8?>΁}4 \qMNV'J d%{SRY>',8$a85-vmρm.ssRb-V)3tJk[${*Z c2B֛s§Fx Pzx~_Cb>`p'<ȂC7.5F#YMޜoa@o9N*F5<^XP2Fw99ʧj6Lk 4҉Š }o@bimOs)\C?OlC@Ьq XdUN1uGUt*&ĥ('dlTHݩ(1ړcNqr}9Q*cskl7!< qO'?2Nʚ!VZ"c1ן"w{ kЬAqlet/fǎvR`E1u\vv7bb}7MnVM@kiL$3R%V@&&e^+P"̱YKLN4y h%Tq߶m)31˃h S0S$ϩZ4S`AʸK#d &Ɍ[FRRU$dF^4!L`^GǶkgԝGC}khlGBc篾KށZŪ,(N;76 Q иՁ8Ʒ'+q*oHi,|@sO B%B6QLݔ$)(D:Y5 ִRȎω逹7d7UM*(SJ28I󪦲4[aRlQk,pMxIޞEPH{Jp7&֚$JJ/LS d6_AFo1ek۾A<2؏ bkxa^ Ǽ.B O svf`oxE_R-&93m&ioYQn0{s*ު-lpꆏ+bs& s36vk|=KvZh04$oJ޷<Ֆ8bGNbE/\TNpWcʲHa, l:>,`OMR P+lڰoqjZ IA>XxZ/گ?|y'6[kx;6 R6t+x{,6%@r =)bd&/g{V:ωx<u!U쎯WpE 9 O:RMCdRA*L45/qnL'RWṗFo2hLT3l X]ZcPhЏ!2O&\F Xub!6B {os-XC&e'xy∉lcCW_<`DZmRyu tOAiJT); Պ5A̧ÇJ 8/%(󂟜eg 'YY!Z(c'Mϫֽ4bNʗUPZkk x IRU:62'ל_γƀkU:_+wɔ7ec壅)p5pҶ1`,d|'$Sr所*20hTΤ/ =BZOǓ|1n}21ԞR m3Fy6FjՀN`dۆ3pdr`+[ppm#}^3NY]',b ur &e}NX(Lu8G9.X_4&wr3"`68vzm[ akSƢ:jVy^0yiX)@nPQd\3bLR?qda^zA݀OOIk%&v >p]'scgVues.^#G6~%? 3+P=وRdkq[|y|.%;bxw #,ћVǁst9ڱaLMs1IM0ۊ4jCCˁia@ %1&*'9}g,r??DUSȒM/Zq' t\cwk`FXF szp#^>O5q9ν ay+]5p` &izN7" ט8'}rsW~3чc8v UXp8cVFOitw<{G—tNI$ ?xbb|֞ g SҞ5^C{V\@dqbmKk빷חK6H5FČ5KA-cffΞ>fwke ?'\ #^{SVM@x^22Ę["ﴂbٜX* I;*D+h<|> 1UDc,6Ž ps灐,~R]]Y-0TRQJ@&4y%*f) +VW!]ߥG\CG3^voJlM-;P3YD4Mc{ 5ִ ǡL " Qjpv?u^`-FL$ Wr*% nr <()ZU+ KI * X2f(˘\hf5~W^ ",>Ý)uC:(ioAAsPxLjulP17z]SK@u_Gu1Q'pԺ*] b`aF tgSIw(}7uCżB\Ϥ-p2,AƺX7{)E`LDea}b{1u|b>/(&%XZA٘lW7(mDZְ]؅R-rdْkp|76>,Q B*2S7%BbΫsٍXk|\cy+XڋjYXvbb؏ktL`xVqNSr^T)hx< aFO1ɓ,^Y6nt(FA/>!ﺨ[[9Iܯp }"8wVFX&(]79 !@ZCԊ/^*J?o oGGP#flN?v8@V`t>g ?yPV&5BrQcF,F3U 3|yC*pYqh?%& L2H&A2`0}ƽ~2&b末PԱSyayN NW:9ъnU#Yr, 8K2O$Bf bq'ݛdϘzv7bL%唵7K`1T;0rI&T X6y5eyVnkd'?h`-I+Ȓz*0kWb%ؗ-i75޿22ß2'c o/R8m?$<@}Amld Ԙ67ׅk8,.8ώbyyj`|?; 1 > _?Lb$itP@1%@8pOq3 ,p f4@T0iȔ@ꇭ`a$O0קj- nf>s "c@7I?qw92G5lJSITZ41\ׄ!3kM92YJL|<Xt\m8;|^8[?҃@ 2p(DҼ/TM5&$eha&^EL\UDzqxg<) X2{,j(Jprwii{ڗa1&0sl闍{C+ eNSs'5WoN&Qf-7'E]Ԋħm@%(v7vC9_0=_Os@k .l80K1AV;)O +?b{#ɖOM}j-U{ޣ@^f_i@&:$*o8 } \ׅ8t/h^-xx{p@CmglpN9 (fTJD =5c]p+pO|,1ASxǁ}o7o?Ie-BZ]4f_?A,n፠ cU 3a%0Q/s&Q&:z]egbD-JheJ=IUE p0=i f4 9!Džǐ(fKkL}"1DKJPr$*jXkt1;ZӁ9׊ ڏc+@ &&'`DZDžZ7Mst]7D8Թ5CJw1k!S͌>E%}}WQ9걩+];bы"a\sϋQ)WƄ&2NLvY)*klxX`Au@Cm=hzZ|!d,N, :P*}'{k 7"+(X8軤}<1{`1b{2d1)7)e+bV;iM{j#%dӕ 'JegpJ^cıOmsޠ¥k oOZՍMQ̉/294[ǜVZ ,!*=4CkEN^UNzPxf#|;tP ÒOrT5$> BHB4yn,ywm'0 гUiFr,/,~.O [F梯3/_A@nJ6¼M{ʳRNE,Ē4b|Z85IӄH3$ Ȏ5f!j{ςqOob L)j6tt ĺA%MuR^/Y^=+ɲ@Ik_[kx xNY G3z_C 6e0Y`tw5yNwW~h |+7ԗ\RTkrW'̀d}OeӌFl]UgC_J!E~T&8kQ -/b(i";YmXCT~kp eju`+sU}.chb&ۅr9:`CXϣw9Uh)`fçXfHkRa9@s-x_MkLĹםe fd;IU |ZXt]u؜JeDz& `jۊHb&^H2ӌ.?As@mk!I)w|BHY6z=3Ffs8V ^v܏"Sy1a'R,ǻNMKggxcY  SC]u!n<yR~^*s6w Xu7|g 綽'dbp7L|?*:_?wʅj-`"y}oqUh=}=Ch 嫗~l5dZ- 0}y߬9SqY [-?A4V -C!œ#5f**8=z *`=&`2Jap !tDiW%;JQ|Τ?OT L:'D/+A`w;b(}&^S@2H@ vz6 }2#nԞ?L,RQjqq+/tmJg <{ (#} ߑT`[:"%0͘NJrJL[%m6 hXk:(kЁy?}ɖ*&@nxLoU:Lkއޭm5'= Q\ GZ*0I#7%Fo&I\+j2%U+ 0n+/LkQk?vxڢ&(SPUaTxxuNWCpzQOl6p\+9;jk胴& Ym*0n mdl̴ 4 `o(:x7;a{z0J'b]LN- qDwƥְ=V111R+PYlh9AW[YF5q=/JF25At=K&BO}'îloeMMJ /ELr9 zwwh[Ak|-Պ^M!ZŦ J ʎC"85Ijti :܁;ap4s=6 #XLRVK̴R0os$<Kd2?Pq3]@#wr P|agbT5:!qt_߯Џ~2\ns:fMyj:m=<&A# s^|4b *YM(a-~ʣm~ʘ#ewR)C~; 6Ja f<-Wz<#;9&}Uh6R<̦r6R$+d~_*|@nP̧Ę>${M@׶m8JX Vɤ43tG6aC1IS4eNB 1()!KCǶd٭ ,< ǣD$`{XlhՑMJ޹r5K  R*EK%2YA $7S|,9Y/M ^9ʡU㖂8/T'eQ (41{쒵A?0l6'O*lp >imvԲ˛=Φ{ܛiMFeľRbR0~p;0&^w Ƕ-9:a=x'}|8vϏ Jl*Ʃ۶큏'nxR;mv̰P+k.1n[CPU:܉y0qA"\JJњ7ƸJeKyu}`I`NeVms|^/ ,Bߐ |M2B/ f9(25G(@KGPc 15c(S{>W@/a7Ҙ"%O0ЄI`GfŮϱ=Ez\Sf2&f."]c!ޓd|Fǁ M@N Q :PȤ+ M 6WzOɟ%<ħ;mL#J .0i .M&nّd9p8Y 9G]bB|`6V=r6yg,F)X0kJ`ĸ 53QJl7py"(NqH(C(J2&vYJ*Bkx/#dX{9ܱs+u *k(L>imP`/* 0YLXi<\0GNR jC[#l'~c̀NV` ǒfS >;ROvcxIa C. c֎d| \ URY qrV{8uE9_ao;!3X,(I&Wyu<9@SZY$m14S&d5Q&Яx^0Mx72ݚ<_!`µk%éJ}b{01P2AVʴ|f*Fm/bZ9&P c˘]Yӈ1QQp~~f蒷R%2Jg@rF{ 1z~Lʦ-֌yRhpMv㮋:;dwto!*ba?pI@V9j},0,]N#VI nqn = .a}&1Fz%+UR钏tĸ@~b Fv_s5E@ $>1>PkCNlۆ9AMO"3\d$w(qEq7F?a2n/_SS^tްк[!KFI^rXkO)]mEPga!]`]̺~ӌ-DdSck! X+H@. 9fD`{', F1)x?.Cw8t oǃ@F*5ZXt$1L֭- cU2'|tzEElw^ Rpy;ՍC,$6xZrm0>aSà%;gJPA H4gbb}UAU|9 TPdW $W ޫ9xX䤖LBrK/7 ൘ JF!X#f|e׷@,u X˰Ωu)wTHdr̳v%\47=_@svHA*O !iJG'O6Rι~dCX7y+u{d jNvg3,k1() ]"&>'<6C'$y2(ێjC S#0?;sBYVmq,[\,ZPU2q۾>>U, ] 7:a(^܂,CD˜S&q~ D1KSZj!#n?b+(lێqvdIU𸧜8}(t +- РHV=U  h7q;FgEa(LG~Xhoeh{ TEnkd& Uѯ Y C}شMrцNB 0'%kibmDžrlb[ʓ ϋ~9aӱX`Hvbc\q"am_cIǛq~y@) 7 )6UA"#یOSWD FGF֘&WPlw)䯐d,@\E(X7V[{٠߹oM2Va?jA`U> ]3(w(%IWƀꒊ':ˀ4ΩH|Z}ˤ:Ēz_iydf؏δFnzՄLg^/X@|ByKJOլg0#;"Ym}uIXsoE 56l`@i8㇟mG_ t9q+-(3iuꍃ}gǐ2 [V]>0 A0-XKARU0b08*VZ``TZE16#;pVXɛ3:L \#Ә3˖#kdڷ2FUJbnY00" ZF+8(J b Aq#8vH@35Y| j\害.rZfطMqw .Ii1 - B|?o{er8A^lg*çVwߵ5 Vl UlT愔 r7\bfj^{9/4%] Q{ Cr]=1EMmIņ$10qW;B/TQxǘ.U= xSP놏ìb ̬fxlҋ~"dEv,fxd;F|zv55R.|~^|=?j 'Owmۈ-Lg: ot>/2 [ǯ_|vzr5:gUk #,f3aniBN'Cf񥮏s;@bۘ11&uڱ5:Nob.o i׃}vk-#Z7T8Jy"s0Σ$Ѓp7I[vfc FmFdڤ3]DAJ斛̰W~+t N=|!hz2xr0jjc001<%9&drshQN{6p Xc&H\&s׊(QO&L.@=_z`luצεHk "G`sٺ90i *)kw"3'Wڣ#|fPн4!@4DZC2xpߧg}4kZHŮ [Zp4`(ZUy P~E@V%'wL3Q C|WHF~ux~$P"D3FM=1[iOTPNm5u٘C](|v !w0Ctf*e?ql9ndZT3q?McvTMRPL.w8 5%)J4irjaz Lqw pMph<:tP $9$'9mksԊ@Qj%p&)}%'3w+&*sivЊu`aonqEy<6v(9 +x3SpbKr ÝSϟ_9Д2nfvϟM`Ecِ`l_y-NʙTeMuju'Fg;JJ_@5+,@{KRjdӿ|/gkzpBV*'o-& %=d zPFL 8>`pƵ&y0S Yj,;X'eln YWldɩM+"sHCx/+[ Y#AZo765Śh00]"E$B@A. .Ed?Lw #0{Ѭes6 H \Skmh]SUt`rO^3KO/͟r-|zu+:S{Ń9.k賤/J쫆e)jBP~ĪcU)f3Er013%5?(" Kj5&]wD{`|kp0k^b0VT,]4[y5C-E4C@Df@ژ5+[+'V~"oGnRmVd eXWQ3}΁b7Y4%M[=(']g?=E3 %%}Θ~uMP[vҀ>Ln蟟؎Q2aaOR' zi@ׂdx&e;<ؕ٦}G 8j NgCd!5OGs}IYIELe!dk$ض!b }0iV]l}m;;kR~%V1bŠkM#>P 3ɰpuFׯ<]tݎ2@mhB(p`b+Pp^ň͎j[\ׅ@ਛ΅ή,r^Ef ByT&f"V Tc?BwDק_.v5 p>ӏbcgǮ&YCg&6z*ގ >zl9}b'_v@$zp-gt`OKH&AZ+Gz)Itv߾prQ'!Aj,sPs&cm3Uݧ4^Θ3|vNI- BT-M0:c6 <cseFC p_A/jpra6a3_jt6<H)S<`1ə/ `\v g\}K2_r;?R[brn,+aZYAm:20V[,\>q$x%E?[ub 5Di:h!wDZn|_<=4_%֕Los,|;\2i*oMuC} dҟǦaCVRzAy?>M⋐U7ո2DžG6(pO(G)mdP8͝23c>@1+QZ˩Xb`Zf[1F8觊ώDZck0y 6tlɽ5ox4&'Mz D}_c)Ch.D9 u k}lF<˰mi.1 w@D]iϯl'Ҕ:  2ጋ;䓢▼ (qQb3*R!LAmIs$CU ews:vM 즮WSQV񩲸G#e%xM1cvO(Ҷ-a1 1&FSJ!'Av}uh;yVLxOoc Kc8< oX1 Q@?;܁?Vy]s<*o-%4x20Ϗ !1;m.!)5x?p;c!X\oJ8qd+~B G=A َ$T%kˊs6(wd-GK}dV1@E+U1]oy(Ohk2< >u7Ơ ;l?N/G)iT&`M5yo|{S8Qѣ_ }63N-| =`CfNfF*7Avճ/&s=#;}δgլANx75=C@1{ {)$\g>:J~> dTd[D/927"1h#4Ax4p7;%A?CAϰfCmyJ7->*5T}{dPWlރdcq3^ݱ"LVd=P=u1ǺZy&fݵܢWCyJYr[*+'25XdY[9&' g&d@$ԂwXa3ϝ`YM#[W#}G+}`-p>x*2yc۰/?gԀ1虵jmL51BKUBpq~mgNKXӧOkiRTR@Jwga$iٜL@վ$x{A2;mxۏUW;15^Յ`* isN[Լ“VNHFSXV:I/AQcJ#`{$wr_)oi` :l'S'ZA}?о<]!xr}pU~_B2-,WR]kt;͒>RZ+Aw-xZx3@fWvGtzѹLKfV lS iϷ'% S6ẀqZžxmhQ+n3nTʽy^`\w48 > pv2Jiρ^m!p 5|`B9iF?VW?biK8+$K2@Ii:?\ 2^X=%WN 3Ƒ~y^x^k >'ͮ!b% 5̆~v́˿ZIe&OOTk[>ѕߘщ$,{[ᒯ7pe73""d *4ep3&~?[O[#fY vo+g؋ -矫 K[@U9+͙ 66-zn#?+{/3#tόu+z}l 6{bkqB! =@*c`DkLw`Ό\H!rmh*eCʲTߺ8}RoAV P7&fp!aר:%8#j}lL`BEI_ (s?@W;9[uN/ω .8 ;!h dXo_sC4's4pe0f *6au~K/9I0؝N3dDy]EE=qV(40d&𰂷ʃ/ /?W/ (!6919^|I2BYcP8k_lː5.Y'dU[9wM~S+K7~O)t\JrUқ=YD&w)bW74]r;ɼ$/DL2wN LZ_?%):(;l! it(Y(bv`NxEwu_?x[t'@a)Gc^g`CIrPc:n[Tس[O'o;¿obLBN.?5`SsM:kWh蕌Mf'B_w؏s^4nkm8CEJfgSΖ- m_o| a1eg_.`T7=0'Lڿg_j"&A%d>ԝ`\r%A!h./K?F=6ԭaz~t8T*d`]ON&)2[-XsYo_qkR3! r60$@Aε;c N0,h̴bdh!Lm?gGm0 Y{3Ll @Rc{&vׂ8I:G?PcGݐS΁CQ wmJxQŜy촺| ~~gVR/+d 3a(6 4xa6-6_@N~KӒ],٠tesjR$P$S8P9N:Mso8v[Y"O$E Mlm#h:2O> &{(`uu/_hUsgÀяl|ښao!(o[0Ջ19V mP~'X:+{- 425 7kGV@"HS[ `. @S&gȐ8,gz0+~XOCPev8*AI)>ǒI8DS۶Yed*2Ni Sk&yNYHXDdNa5Xr:=Vc#S r-]LIǢCJDj,?? ǴPjb:B@P+{ܬj4uM^˿5=YG&t!χI5uKGbB6'*&=ĝ|MdgY 2 D>=1 _?|W)r:Y PuߕS_t# e1&YyRvNzy,yw@OFȌRkE{lCOO]{yGO`rc:(޶,DwL++fPx^;8?y^)ٞ d%dUm߰?`ø;}]J)f&~>vqV wiZ=0rZA.3>U)0b+\q'Zގc1O f&'E0$V|yM< B 7m¬!ǕemvKiP.`Σ &c6?)~ IKІ̲1:ǀ;>B3%&q`[r/ESvAnZ)5_ >qVNkc|mۆ5>j0JuAY-Ƀ%Y?E|;»y3}??GR3&wu=4 _+4!?`.a>Ƞ{a9C1FiF-m$U͑2~1<_k<j:9we `C9hO̘[U<7@$?&܅;ܫ,^5]?KҁRvWĽBˁf?C?7$˳@2s׹&3>'.O{F*{? G3'?LZ$T2@,)A 3>eB(RQA`v =x5s pU'q*54|Us?du^i&Ӂ`-s*~n 1 ݊aH&7لlsh.`h26/2L"m`EJu &2c/ Vܵf|?^Ͻ|ejr,Y8KhIp ;\Ekc"_|srHPMm37 g?9mu]=KˇypVJDj{\8~3yiW\:zws\l_}JGT8_O/ox?6} 8o(VY>0}80#5M^(VT?+@Oi*\J@%@^4X|nu3Tx Z;;U3Jڳ25/Ip ^l B mNw*&ќ@29aSF wP*^9/x>d\\HmNDP*fN9W$Hm؏j )$xW! ṴL9J`w1 0kjo0W ϳ{dmCM7LJ@Ӵ)犠O&Y]83Bk³rDZq8OЛ!JՖ㩋e1p؏2OzcG){a`oNjfwʍ"(:)Ĝ6Y%|+0}aF1h;Ozn@D`| .$egEײ^3#e̮ˢpsE$ضmG)]L+: yO੏!Y@h{RuH%OQl"dp׳ubye,q4,8 pK ~BNL2}A2_VsަY&X"LIbƘ(T,#-ftCOL_ԔXtuy;m]K-u;CCT×wVpMyes4SYt(xqNƯYE}o<}15شVj9ůҦ#=Ɓ+Ylu 5Y׊1&Nb@RKA}ǥ f} ev $]sO+8'Vx 0PtNIgk:PfE4@kR㱵rV >h0wL\?Ya8Q 6i>7gH1`6 ph^QvL@J$Q/1H9:htdOgQ>ҰmшS"ݎ2,y,# h&"FwW⬧Qg)]QfeRQrm^ !0njr*r D(:38vȲ$z[ q(LMo kJ-+h;(.:{dnYpɲq{[Ic?Qc5nvJUQODAeY!X'O.Va-{ݾ:3q'^|G|f >eJ)ԈώmU|2AZޜ]Q=l4r X&^Nn`@ݰVD16rB՚5Q깱Pd N|bFV30';ubmG;o'ʾmH%ԭ86j4cd]iahu?/J厍St}0Iٶ mf}H~UB(9}3ρcE&y!OyDLEqmwg}".Yn#yX~T4v&ü&O zOܾz~ 5$')ohz1$~7)6iOv9*9%l/"w7[3<;`ً(=pap* `MU.酀:##F}Ig]P(}gaYI4I_pb:נuR`{[WpTDZ"%IL%}U `ǗyeMMy&iv=BsKgle,X~bFd{B_jі) K>:NFQvqؒW{Rֹ}%1mەKUD5hɮ`l.WIYo\;? 5S17q]>Eju+Y-T8v|>;6<iMq-ӟp֐R|*LMs.[>{Sq]j]Mzb35+`3v<+` CC[A ЃS%d>,A%#PpAu&ʝh`L19#mb&2&CRb"[D6)_[ ,aƒ, r@C]K{Esw=VΘ NX+i~A}bbE)h 5pXG3yvtNV"G >E/uzPV39w3DRH,NHL{PKd7BDxHޖA/O$[c2>D-f/(U:(9`U"pJ%)5ydX9yu*tdg"j JAJ\?*ڳ(9>4!b0%}MDn0Ì(r/?FO,,^BcJyxhZ'~}5&Ӂ}/x1ۏd1o#^=AEgbgʔZ rI+@*v3f}Cɺa@ykBe^]It1^KtMfҴW8)mkᨘ i< nYHlˉX5\V=nŕ^+}P<,y` XC1'BF-uӱo x.yJ *x"4/v'orSЧo\%oI'ysbNkkCμj0?#kɄ9 .||>/o=\?چk ~eyu6Z0z*k$+:4ǶѨX18)1hs>Rq]^ yNɎ4͔!v'Gz,cxvAϺULzL$h)PoEZ&e" h2_7#ҷMB89u&9[+\̫gus{~Kγ)D~ek1ɸϬkoi4<\IDAT>!p_E[$ :ze \A*t3T=yX4:j9PBEgﹸ b$;#YfF1ʭSb9~u\5ŵg"`[8hcg'T/oz>o=VPu(KlV1T81QñՊsLYʺdģT~mu f ql(Y!=@J@#^'7Hl1dzw~}^P2J[KwE9pMa Q'ٝR4XA) ƙ,|n 6SPWMjRBZX˄kc)|ψD=Vͧnd7&1KQ>(/"( !rV\%x'C銌ٷf{r ( # ڏ &7 bʔ=kb֌9 DYي٫Q!= H@@0 IjYs|||cⱧ͍MjT\] *Dk_䀏bWucq <ѳ~]cZf%1BJGT&q48bh / gDvt@I]N(J$#DR+afB 7~9u(`^":9:LM cU'@G k4AL$,d; o4h!)lz 0,3σo3XQجAYb GAD_?>8Uܛa^ bб9qy]#"X4G!P}ώ4qqz50 6<"jpc'%fj] Ʌ~Jž?V±8(cRK& ?/O+ Š- ׻N?"+@}<&/3y"8%wƩ&Y:vlOig![zX~YP4&'\Ml MId1qJ$7}:ԡI!T6l;VP ':ъLJAYa0;~x%y fC_fLVcρkL5ox?pl*Ls`xKBZ0gGCSQ f)gJ0V+c0No/`ICQdp㽍151L ]Ǯsz茧l9l$ |o&bn ERe[%0۟'3c<HgNs)JmRKޛ֚^#D سPUL*N NI%G,sb_~Z%f'dZ]N3Ym*ت:iX:/s"s~Y ,Ibe$?M{ssr-fOװbTv Yd5* 99}*!CD3X i47d iPqxOzxQ,pѮ@ g#QSeHN < |f37݌r9)#*I"?RplbGj 6Ŏ\%Ù73<((aM6l[AibLZ+ZF"d˳T9y~iYP I4W3^'+E9!Sr$5+3,d/&&N4qZY/X8] "Wmqw$=OLWZda/;;* 8|$e dêyR bR<8Vy AWkISG(A%4덎=O6h=uX ǀ(>x7`-x۶<\l- \rI%eY@+rҌ{BBGBrtsfq-bdM<(a*m pK?LjJY)uқ Cf!V| 4L_ u`Wu'"b^%kH+b~u;*@utʵ6c%}db%'C@1'Z= MhZmpc]SfE>vnFē$1(<3dp\.!ns^yR1> Gс~Ef@ :YGE?;; S}[A}l4tWǃ^IBRV `M1uoZ0XXXsMڪNѸ1a^ lP#=7;ۛ|&jPb[`ӊ&fC-\rj[eUcIdQF0*հ;QmM{!VX ex-I:;EM GNMz}:;6"`r^c?Hz9 |M\,B(S\w81; Z yn\6>')tŋ%S0>ʥEDq`c8}^Bg80)3S^^۶@R)+2+@8]URF8ـBH6C)8/! ɵ4`SF.Su9U2CCw1NsM> Lo&wPeSCH,d54ЛǁR ׉dO8!H j`_jV3y)`U,3[{.ϱ@w)jdW~&^ `uywe3&R3]/!,p0xTRtߣ*:nEhx1ڔIW*`2LӖx!q!0jTMS^'ļUٴ0\5/\1ɂ5a3&%sSrAɾ@3: IJhgV,|Y'`I/@JiIZLP*HփC*s3S۬:/9M$ALsIUo-cE`FN+76H}9`V+cҋQ4#T.[m$a{);e΁RoUnh GcФٔ&elܕQ<@vs1g3@ a΁=~>8j nL<:r~ ^繚P9۱ig=ƟW:sJ8cJ!Ơ\=["W+܍vw'V%s$gxr/lֱ'qq1:oVP,qb zxy'Qk>uq F/ hzYHZ$$8B17M$o< [ Ԙh،Wz',D%|ƅx 6 \XnCIXhyq-dCVڋ718ɤS~ꔡ)5qWaGf̾˜=]aK"rz̈-Q$XEq \ eoLr|zҗbwRX+!ڴ`nO֜) 0N)Jzp;s]xIFJ)~Yk܈lIZ'Z-4?7,@Ů; }'fB5l sQtzJ;֩{7}Zs`Qf9z0L8| wEFL1Ti0@9"RJm恣6x5Xekr=p|( bql 8ˈPx(@քAf^KRW28Ig,eQrvī^ّ /o18^fV4j"~}30`\QՙNFZ9.T$Yl7B cCR$닀j zT q@o4#;/)pXSVfY)hp#J +((=x/\<#cpyRd9B[#?M2>XdX[τ\Nޥ߃;$Rژc< t3d)'9\)B)(JTr3|&V=^2Cx4 X<6|ou0 `E3TEm-{}<֑߯:<"L2,RiǷϒ0#HC^n|ǹ)U/ד@t37OPrY)Hn1ط=1<gwjtk'N=55&J7+3s.֗+|-h@Kkd/\rB?K_aZ6|4|qOج?| 5€Ӛ9qɬ:}a:s򊢉bxk4ΠNj{L;kFY!;ve:Ofp ͫv&e+W G-ٖruɕx4'Bh6|Gs4;j/sEC`D79'<4%!%V6[A6SRFUuĒ%PמP6i n+8UeS+Gk.r%&|\UX4 %h8sz>S1-787odRPf4$H%/_:RKΗ3@mbZ?7`kvS?G^"D5$/]JKViFYh仡 V`ibz;=aT'Z})Ma0J̀jP c%ISggtu|BMt|JfgXB8Po5Ցi0I3=yߔ4KcFâhJk7N\)` vpP YX3=8\kNnLvF7'Ӡ5%K|J<=4'ܿߨIɜbn1|ȇ)vd4xmH&'0QUx`o NkcFl,Ȧ2Ƈk`X֚@/CtZ@%u-~((4> SRxT+}|2Z;P1T5,*hbojbk&yQZi?<^X 91tk~_*~rR zGn^r׍WmI9}] 7'kh&'y8t6SiGΦZrt:!<hR`%A2>r4箭8^ j0_ǡRgrqMګb5ƼXNr3Ss5Y,bP&)ow_>X`>fT-1pc=_Fi^|z ~c,)lkKwY3@\SsOfS)iE s }CthgSƏ}?sMr#^\ 7 #;G;#4M ] +#| ??^ǁ?G؟ E܇gza3žlP5 ;j1*#Ԣv\>:Wj@i19ci7cԊô&RVDHi9w̹5/=/zrpI9s{mb|VLyrYg(.EP\U9cB޷a^L+\w~0o-wM"&b̯T˹SkO@2U㠨Y ߩ9*ɜY{m< rw%9l%l7~ibzwO|)_}=?{y -)@vc}]*n'#ۼu2\i&}#wL׵׽s'+geS%nl?1lnX^qve, | ῾QKDr*1o|'=C/6iUɂcI@', k Fj{@ĄGAk:@`ѕbZos]F*k |W2zbLI"dD1S y8T qv_V\ ,!y ъUTʯJٙ4Go( ;sbuyXO|Ղ"5 ЭRJ`L+&ҸۋbLл|4k$R,BCb2`uT*CCHɝ7I:(_OwDEaYX-Q=b wP hf(cr# B 40c`j3` ӑABҬ5y*lNQia$B& hs-Mc`/EpHfJEجe9}jC=hc ˃XD]p~ƶ) fݯztϕd}::,ZŸ1¡bV ccC\o'ƸS4s )A fF;Yw>[E{V`oRI@$DJg 41~[A6-9Lp\FFC/qOp;1* \'_ /uR&*jdGoH Q j0-pyvNlk-4nd2mYwElјX;egcH1 vn.jc^,q`׸x{iV V#=լ>/B4Zo֖9ЀA<~vPzΓ̱5<&vuqɩWt.}а <$9P2pv0QiV1RCUYSdρ؞j֒/ K! uOM&b&L@O0̼Ɖ*X&P11W`7ziXs`C AJ֘ucjdΣ~* t4v~'l80e3Q $zk>+>YgYȁxעn|gɕ@?0ezTfé rjUH)|Ĺb{~ RA;{ ?$elsܱR=1|W J $e<\҄KX;溚Q$[(٪yhˋ5W5M~X܏@ЗU,lx+=SMT6!e@9eBڻǙScz|al3לS{o7,p5~{ 3hkQlE`1ŒIϾb@?b,LcCG:{ߺu]XZul+^R!blB7P :l'cׂ^(ίD`+IɠxxE<4j敾7^OgWkq l%ԃw;*N&ѩ5Xm"H*@,(٥W~qgPrhmeb[% ĖXXsL8c#__/ 5 X Y׊8NR#3٢weI+ 9 l&mўvK&`X&ؙ'gfqMsP@%梜lϨ׊w2T Y1)VbJ*&#*=_߯:iyIgW'ouu90&c*bJkhGn }_0׉vS:ؑFi,ЯYz0lfHvJ`o`BumU < ]^Rq;|E7+5Qf0e?ߣwN%YM3=&8p~JI~GdVs{w^}BޞB<8F*`Zhu3|-p؅INIIco]2_[Ih;ORz*|SNTОpZ 3_cޛ}J1ĩ s}!P!26uT1 e= C폔 ~,\Mb@7:WyJ:+oEI*?5񙌆bs^DDBX#tͮ|:jiJXEUmdi \LS]n> ؁WZgbO% }yY\f^0$C Yd߿{?o@1Jd7u[ d7}cf9,5YG6z5HոxsyjG- 4&%xL3j)8OqNcg<ڱrvzg}0B "g^- 81ȚnRB5ʑFxc Ӛ/{ρiȞSP$ٲHgTX(XFi{\D1?D$jO8V0Yue0 >{-[P#ҿ @!^wଝ e&ޢggQ/}{L W)VpgR)sPn5$ 2!tU-yX%() X!V=r,+SU2\0Zĥ%[dA<;UKO'hcpd Br::}1}Z? ,/M5E(' n2N)Z~m,l.Q~@Tu)RఁRa^ A@hipOWG#pi*<, f.$ō5JC`pv.Tw|8Ju]E?5n}9o{1P0+}%Q#u11.vd|.|~HBD;|i[E!zZs>+1n^wKjY.ĠN=jd] <*[hz^YĬY:~z^\7FsqmRIn4N2!9@F?yE͆{`^7 ƗωuKBr3|%.?9׊ <zxd>N hBmmC2VԆ&N94AC ^oM9֛h!CSί/u5\ |w?(PC df{8.Ud{TNW16ƚ 汁ZCJeb%D J>nYnyNN .FiL<%'=21qIPD}>žƋAS (ZEccAҔSDe6xKMUQ*Ұ|wuR6> ^Nv\BP(w1풹3s";ca=}S{n7Y1j 4!Ai#=?}ǜLİeU6܈k6pawJ7JmKyl[17!4NFc/k1V\1'n9dp8?ZRdѶu ׫)jvɪ$ 3W2b4͌o@?Qʵb$Y$vH=Ų_T38J06[6 yC񽌬W!Ep^{߱&1G* q4ʍ"T\=M^T'O@Y?ž`؃fX $kĆ9D3I^nKw1ٴ7TH~=.96 IM;6vͽWMg*d9C疠?fϵl.kȐll4|&k_YPdZaPcNSIM͘;] ldmѷ5 \div }QNY)1058 3Q MjE -R 󄊱pE>B褬-"PSM*B"CɆ,.U(Z+`"0sWIp= cޜd.Y?XZܙ84vՆfgqQ"46ǭsJЀ7ea-qpۋ|: xMNeMȧXçh& }=Yf(`KQ")wb^vRWjM ^Dj09e1ljU^[@`fA9,poeՆ)7 G92{V1S(F9;}7&ke\01RWlh&Ł?,W8` ~ȱڀai< P̅9&jAfJ+5$SⰑ+dX.iȅMCb@8F gjfZp)9AÃg.Y d魕/e#>&Rna-RNr8H(}(k ,gy7qh*ogpES\24Ifl#c̜SƸ9쑵_ Ov>XH_;|ZB3~{%)w͹_LZƜlL:e8RQe 3D6 C0m,Mgu3>}Np˒;Tv3f0ԫjiXdR+c@Ԉ3IVrb@L9pZȊzp.k-[6 6q7v?fn~WC^c 3K}iKQSrjWCwX*ήKt1&m> HeuAˁR3Q9$h9s]k[cQQaEIVZ7gp#58 Dej@5Vah(n8`8ZAp=Ύ.ʛ ƅ+9A4&ЁeAA=:~ം|cZ9*:2x:9)+=W-E:lWm.mOf0L\pX4'IґEGE CG` ucR8I 4NI&hɄ8߿[hw(5d&(f$F%!IfJrV҈rn\CJӉ_ dXgLUrR@KpY Τ:e`h>`NLN1Uhz>H}"k̉Pj NzGm E8j+w*BXϩCiX=tg.UM ;Q@6ʉ+IACů Ht?X"TN_[g54넵KmR˜9=P50zmܝt0\km 0E l)~v,V,Ќ5Ҍq!AШ]A:ᚂ| >6"IssqJJ 188" 1dSx] ]CYU^(!S2hfG2G;ʼnoaNw>L 8_/y[Ra(@Z;^_]@2〯<оP?yoEo_ 8zWK?8)jew0vtx2R +<]37gx5oVq^JUaqN9qm51>׉<ܠb'k9\kbyPz*UGi|V1o|F})h=( R(m:O{hJ{ [iEP2lt;+RR:DŽpjI&&^Kƨd௢bLSs~SE=y _j [)O6)c=)Io'I9o.fL]hZ2^bՕow噳ڟ) ,AIk?-XDh=tK*">}p3x^ $# ;, 6iLtk]nb\i 4| z kF]psNV 1Ϻda~ δ*|&nHZES`{ބ FvcպsdГ~jQ^9Dž{\@^gx) y},9DZQTneys@Y ǜ.1!ԀIw҇™A AfW%Z3WƲ;>Jbhk7=iN)_Z1d:6BZ ߯quԊqTPpr=7E&&RZ= (1P!z.90=EKmm5%{wʸ=k][mggEÐ#A"LW ^kf.I=hR?sz`7)gAPTjD0f8k0 S {地dqQ/hƨ%'_?InG3.ʯ]Bi{9P;%{5NC*U*JW=[JnͫUM9 2mlނ);CzqY"g7IxgrPPvj>Q5㮕oe`!A2DF `sJ"/vϮSfRJ@4pyH׊&? wہ+UgcnܗFӦjg21o2))J<f{ARY# 3Oi:H/KZJ9l]Xk e؉'A IeEk%aL#+HR4>~VI%7sSac1DQ% O~HSu2gdH{'AI ɿׄonL~7|8  lˀWk41q/A]'W( AeFǥ/} 9P7$Z =m%]zvIFy@esa hC2Pm.!Q^ޔ !^<6i( { 7y31 #hSCP>|QS즗=\?\0w=xR:g# 7&1,%loB;\8z':ހN$_:|N1ka/IV@^DА r ,ţq M \l&gWR_8iВڰSQq/v+F8=4lG`ڰG8xqzp/uY3l;sed!ڗ)wQWANJ S"ryBV)\Yv;8뾷I\Pbءv́}o2ς $Α-HD-Y{#%gcŚD{*cYx %SwZDI㵑O6y5f2,ǛJ58F=eHٿ)- ɲ^Ư &8b3|1}-L]5uY QbqʷʽAyMNsʠ$VLu :6l̢--Dt ΃jqv`\k-pO~'R%`+jl-w&30Ĉ@(!O#0^ .8qyĢfvN%DJs:\> 6.:96-@&"'-.D\AD#*]}\SX)*FH  n]rlNu%9ip8BR#,OgHZJ4IFOJr>;O'?>0@ 5RmƄ\DgͅB)@r2E y]\x@F < @qGgmiWԳa81yf-lOV[Gi2e}!zN5d[0JRP{rJ@;\1 W=f%eN}ߥCDQس&A/sGZ嗒Oǘ׵QQ*fY`Aas[ x{K`nڛ|΁ZiVv}XT=lA6(s1T0%u3'ARq"i^H@jm썕BddU+F05}ᨁƩg$]4_ʑv6N%2J@" 1k#^=B6!pMhjh(.s?i2|Hg_xFg|BrP~)gFHlU~0j"($M|?Om3Z>oR)΃W/)Ndi%8ܦ'frrϵC%|1~v7P[='z?߯=LF8߯gs%>&]`8k ?4H)0)j̀F'+~͉<`ZNY-U.u5Z}gZMMЋIx|M\7JQ5c3.1{{j^x lEq&l )m}1YU4՟?܇.CFRi Vp 8P@ a{IaD ~vRf UV8zd,M1 +H~K|dpp,0kRB.N+̲TN ͑3[yFä$}ph@Ȍ4'-d+&m)UpPK7SbxtX4iPH1]墟T83@R:uqh}2C/&'dqή O=k~~)1i)<.zvp7y۸|nJC6PFId&)۴dJ1a gzɜcq=S]xьnw">dLJň_m/Z?NV,(b1UjY|H EeYVE,X)O2I4T$0A*-,ӆ{iPzVV1%iYFu/8_kimB{9M?}eiadFe3Bz𜋓Utֹ 9=K uIM汔=Ev wW(kl,AidjC`)Pk*j) %ŀI(uqb`d$׉uyOksdG2{r=a&J|j<0[C+8U ^"X ȩx+hNdS vTda0q,mʼnC,J`u_~c:녨?fJkRs_X%pޓsJ@ciBظWq]7V1[ R 4=OЀ cr9X vjM>Τd44y7=LM7r6D?9)eMu5a"b_0^__jih˔_ 1n:&p'P @+{`z KVMq>St| HzI v3THm r,*>3cAzZ)g612PJ.y <# & >1،R.y r:ZCp%3[4dfI,G>9k|-N賽7[Д0 KtdOB)Mf4( /҇я(3הl'lOw {ӗijt)?+@XLu۞y؜VTK ;W=V^kD3GIԀB1&jj[1*=#iV! % |Խr{6pa _\p=^a|O1)͹6z:Ixphb&>j}joj6o]ׅdDn Y-;Y/kzh2%{# t9(τdD|?l!<ǔQy+O4w1Ev%]#V46@ ULJƟs|wQ2Z,^Sg{vP nehvՁG]B |g^b50G7; ̟?h6%Q(va50d3/X~_()Arɲhy3:ɄD/~4`^^w8k w'{GiX#Qą ?@Naɴ*| ,'fpύB͊>q^5'4t4|d!]4ؓ$$maӱn1e^kAL{4_ ~˔:tpX .6mf;^|L?oc ;W~`#e1JXdѿgORsJДg& i_X385!ǜ7J=+LPd~܅WtC)dL`.89+G(p7}ʌ~a搏מ\j7Qhbu-'Nfכʀϸix&JF6{L#'Ll=w a?>!Uf^e,5A9İyPw1o`ZD 퇀UK2ם+c)W^fEN(&Sj 5x^'s{٦%7KN֛؈ J3CZiIIu\TְPs2ŁyBJ6 $gZ : e8uO#=0Pq*YDp\n!˫5ڇ,>*Pg)iB|zU:NTjȲQZg#`RR[1 q: #VQK2A:촊 ՌޕH#]k iR5}w AfZ=w]dza +هZ ]8MBq(Ѡeճ 0, ({K(nJ,׉=N^BIv>Mo0piHgVKp۬"1XHLC^2&ݽ5r"yZ 8~ .^IWG_kN1 8Q$ Xt|H潐  i* QV_'D5C=*'&h0w3J) u 8vcboed\;_ 4&V :#ǩu.NK]3ZlEZ YۘEab%0Lp~6P0M4}KYD#h)t#㓙Ry+)Hfdd&(ZxZ[csh̽+ObA68ľ hQ(fcfsƘ,G^ &bs7%Wa{be~8@'+49W\Kς:oK)۷x^l \J$g ]d2}v4u2f>͌H@o?b z9qo !`ZEl.l5pXjP$lC3{صW6ux;LMv^b nFَ3ij^-@  R)?tH $X_KD Y{Lw{ &nhJ GT?$׻u9Xz1 oYJqhd(Ƀ/~)JB wPL74sN'A\uGqr=n<t` ec896bD8l}A #QUV f XX~op}[N& ka]١@Em%\Hy}V(38px`ĵF; F ʈ: /F2ULtv;diKbLl׃k&Ĭ )f'e0pJW;}#)Hd>$ Z7q/rvEi?ZǜNCFCpOc 䤢veGgRE7ȸ4L^P_'Hpʎ^(-5\i︗}N}_@gSW]עoP;'.J/F#89FS\r>i4V %LgVȨ ʹ[j5Za=1C_'AMY SA,j0eaYfwO;^| vW<4!*5_?Wr߻) w7@\*u]O$׶ɬ!^aǚ:VN̻Ie(Xd 45B ]d{;fcZ- O_鎟z*}ݸz 'bUk)YAQD`\Ys,C/!1 %X̀ : j`n@@ֹNdqp8'M)undNld幜hSHSF4u:'?ZMA`.`V ~}wB45a`{V ]3&^GG=.vkAs M~4\ lu^ ҧѱ\'u fUax{q8<Ѝ^BE0@c t LT\pLcgq\MwgV)()eE{FG1(5#z,?sqtpn  k+dIE$1hDJ xiXh@Jg\S5@" w4K4uloqdVa=i#{vBtIUb}";#ɦrd;b-4!wfX4wuX?'ay_Qq@Sf4:.QqLO) A}1i kK3ˑEXS yUa9g(0.^Z`QxHde>ΉkbvӧC$5TZhc6NJmdjJJAK!Sr MvZXϪs/lES< ѧ x_clHk3AE3ixXK#Eij;M2r{ٳFPd C40XkXch ?_H9a/#Z8\h 27 sΤR(sas҈:uۮ1}* vF+G> ŵp;YY6C{P8c/~=Su4jPb2Ax^"n 'C7NNT3Hz׍J񃋇B:zC"]øi?'fK0$WncMG5FVh|Y^(g1R*OOZX dL4łV ؾ3RvL`biN 4 ^ Put `c`T0$RF) ZˮNY@y7,:&Xx $39gye(ԑ %ޫ9OxWjrj$S6سB_W8S4]^%߳`z &h-ŀj!(`^򰸞>Jm}o0k͹ yXL uAiα*0M`Ww1~}Xz<żV]]kg2Wf965`[0t6lZ.e~fTkU^g#rwZn6ݥ`LQ3D  'UU\Pe.~ւ  gkxOnfdMVmo/06nnǂ;Ze0L.}mCHXϸhb̵ s@( ba@BfK(]M WUt@5n%s<6F#W v>0Nf:LFv:i[jvB&I 0#N94 KIus LFx7*\Ѐ1MÙTj |-0T 2haN9Zl?_8CcӊLv|5e`3'PXLb>u9~w)Owy w>sNbXgwWe'ƸPpup@8kV`I&YE*2v`.v V.V ,jaK((=5{yu> 0rJ/} Qs?^X(m{Od=Ά>n൒v1^5Ϛ$S4<p1Yuz󣱹dX5E 4m TZ H6DIyyrB_`WHPD;ڞTqj_1 v ZY X"(ew*2^>&lkPIJ{kL-{䯵1ny0Ty`N2ZJN~{R3 Y5'֝@{` r9Y G-Q$s os%*e䳵^lj?8G,/W )_M7Ex2\4 FdTB?@V-jT D0\*+@ Tx&JCR>/l._Μ:hXBo#kj@b {u9b8٫ֲ=<\F@f!WkMd~)'kPX]wZYMwa_k%0pehsJx0<%ˆ=''>=E)1JQdLSG`U ` s޺j8(rXK^74|9!imS@AX6gVPf&- ۫vE>B*r-;W 2k(u5鑘/-m,N=B;.T8o@G ?cTynƚpfg Wj_kr(?r^jKw+(rؼ $ePxyhx-8d#wQ8azzh)XNE11] W:W[Ta7 uN2U˿ͦo& SLYIk.3?ǚc:U=2KvH~N'>~"3_T;+{o+?QqT_JR(G1{:;.AEL#kUuǀdɘU&Fy> E|?J\na$18ak e3*Ì 5jZ)=$u46ܔ1}P/XT.?k밵__ӭ!eƦ9H8u1*Vz!S G~W_DLM1w2lGk hX洦~(*gt\Қg]D.+rAGgW ?`B'Y5Xܓ?"|c u5{DE`.GȨg!`B.aRKiJ9:f+`׼H vBXU*ޒ$>ELIpj58g55P \,tm8r$|] k' {i(iˏ_dgB1fϐoLDK&z]_>e*p%DMy*ؓS*Y1WjQs3 4uDLf@[ Cs[f7;ox&2Š -&hT&OACH @7vVG)XƢ<J*=&fH*bKA-LX*#xÄt(IF[dMr$ojBɬ뽢{,¡T?PP0'P|U=Uyh}dN ,PZ d YXLoq[2yݰĶxK [k=8u< 2~.vʛ 7''势z*G+Q$axL$@Z@(2Mmص/Y7JaFPVj1i칶μnT9.b\;agG1̘$-cD >tj 7bZ{hu r|-A <}IHyϹ1MRߎ øn](CqB(Qw?189))l|V,@ǛYSǛ1k Nڒa:_clTh;JO1Rȧ&R*2,| ǩUDӓ5)GkdZE"t.2OggyjOFLޏu,H@@Ezd6(r<" 5%}YR)(}g,6iQjK|TQ"5' +DЛp.1 U.O}Jiv2ל*B'J= .umսΣPu=fwT13.yGP15%q6^g(|ǟ 6zuA 4-#\M'C<,^-INX̆Gj Ma2Z-Vd[[Ki %+{uYɁ[gjpoZ6C>J2j/ߔsD`.2R hbfb 0 W+j%=;RJ46 ^2ͪ/Vv`?^{mP*僱Ȳa:flHpN,T~99;i'̹?@}"e0'L}<`} w~4Y!ɖϯ4lgs4*BHwCp56`LV58zk``kV9uy㖿XD M i4 }}¢lPVE8.MײE_8Neiq&.dpSAʸ.s?{ ٥ qT_F02NBe <O]fZs)Gͯr o\ˁ^.Lg"]e4kfuTl.Q;@8NZX ing8Z8_75:*ώ.:2{6Z@+_,Gsg (0t=]z-ua.ҙaO2[P2WQASZdhV tzLNQ!c8{!} 7㴯;B_#9!`8'J{G)8J#Zٵ2yb1Zl>8VmjI@)ESG<C7f1`AjyJ|tEYŮ@:Gi⚇DN 2y&6!L{xrRNL63 hIƨ];ޓx`ˢ! 50ǔ T2q,[ܱ8xhV%VZG+ '*j@fK f)30N93C(Jh); U،R#/*D؉ܞRf=5`<~V5[A/yZ襢ׂ8. :I<"Pi19J/c,pp._kOXuAAh^*(ha.& p"@WZ^h<4h߀Fg{'xq ָ d1q+WAq(/1+%Ɏ~|!Ms냓|2Z1|}XɏUL;^CҸPZca\h[ *Ox }!B\M}+9`{,6E2<j -@]@:8c,t4`.{M36~ׂ___gl?a1>;O !  y9*ebK[-x#|+tSQn]ʞȰL 0M+#4tɯ4V_;NMCU[Cm'zyy0c 4nQJjF/gz@ w t1R:g P,}LŜK5&6"[C1F9:_84 7 ZPN1ߋ3~M~mI bY*[vmydh߆yOef{~Od⒁ʈ{bx,yC,l}ck6>1M๏G!D ~{!y/סBAzx@1~6ǡX1 } ѣs yX?(*zko :CJ(AƤы c3 Jew!eʅ׊(d64Zpgsb=U9|~/HqmSUcVp/Xs\7.[gV/I^]*u#z}o&q?h;99ӵ?"(djdmI~|>?ڨUqYs8^jhvHZ潃Xa U":$_xX(FZ-'j ,H0L q] coe8:&:j;Xzߐ> JF-#&XǤ.W]KLhs Ղ53&z."yB~wbwBIş|)'qL2 )f9A 8- sxaMia^h-ČP1b+4&*=g2TH&w|raL -Å`GCj4'CKH,2 ]'spK]nk3f2L܊fWX;rM{=`ݦ05b|E L3u!0gV%)k!<_((FUY8H 1|LJX}+vHnnT`Iu_gkA J][Ѡx7L8L`sCqd_rz-_k/ikylB2?Ϸ)JZV@X>A$3Y 3{-XxA '~uLCAOoЁq"5Qlm6ۓyb/gN{Þ$WlSJ0ZܓD48yAV::u/A9X¸YZ-A?%?gz+KgY7@+yeZ3hsQj^KTJ2<\ m/]1?@3o`\;<|1Q2sd@FA{ӮH ԁ& bP)`qM&gS$ A]pO^H}WvA)!Gt aޞSǜƍ6k1s4NtcH^M|6YWbD=ckCq="pkOq^>o>ZBF:(k>b~pTm hZ 8*6DXA, .K}]ȶެC*٨Iv6,#ZU`ϚpS} 3P83Lk2g/X+VUpTs9p_2r,@~ F~EP(jKZqyŏDixOvV{ ^<\XuSs,6YAERHڙ[Ӱ'J&H CNá0 ?pZ./5#Kb[K*AM^:~ۙmno+8a*T w91:{ gߙFĝ]) 6$.IQ. [I&r0Ƣ6;; (qwƼ >3I ̵rP4nu)NъcEB!f?rYey \())@}qŤ?>@O&ՏK|is[ufz֜Xs66J@iz}뙉^x/׎A{NQ@ԊV;|VL~4hM|٧TR~35|D9T;4pI!sץ*O1֤/1Z9ţׄÀo[E]piւ݃A9&=QkB&zŰb ;VHAbzLjC{}SŬQXIMXӵ ~݅bf]ݔh:wԪo M^_:j[OT=RpN_/nEVi* <;_c/d2<0Γ%ZA`!';zȄ|/ksv 0pB*ZLݲ|BZbh^Ntmg%L[qGkᾜӶLd8\T|,'%]xX1(^{:'Tp߭׉~@ z0/lX uP25mS0;@3]L} )1OHbMS1~73T]zo8 E)rgc 5,~;TD8 fɳ5[-@̳ )kɐ{VKf"?#1}v7kظt1r:1p :gh;vmuXJo^i`Ia2'=rHQI2T{ ,φ= o),|5q' 1zy6Vz5yhjn^TMvԊ }>bO<Ni>W,ۿF5.'rN>\|p/wN 61wW8ʜ?AꎜRCI~Nz*M/]Y>o߷EEPTOO dK9֤u+sx`SDuS"X>N-Ǒ+CPug z7Oyo?وvt ;VgGt& 7M_Yg_ 녯iDZؤ:}YɅ,y@)szƫ^[c(w؏mXp\?NEy4Ґ'9_ `GlW7 :HP b3:)EĜ7 ý@@TKxN| _Ge$ou}f'zY::GFtt;$1v%qWĖI ea3d |H

3:d5d(^MsG$7׉9nt=GJ]dȵ}ΊPl$k]r?upkcB`.f%W()<,J;Bf^ZX?*(YKm2LMI'LrEsa]7l.kyal-}~x-:"vsͱ -k:x4̔Ɂq$`Q+IV֟7w:B;uߚ 1a-2NDwCm1e eXթ* 1yvt޿R3jcJf 1*c/'Nyޓ2bzu_X24<8PqPv}bkŸf-8 1;y2@Z :ﵻ`52Cb3!@cЬXi} s ]<ٱ':Y[ՄT-,pbd\1cwi2KLox֪ͲS<ӀR?dyPY\Ke\0ycDb+tc[Zb{˭3`J&evV.#a>:89BŤbfuW,ŢRMYyPly,$Oߥ2wȘbmV(c E edN%CAڴ$ThP58i3߃կuMkZ13P=T҃ Ls- DP'X2sphn8`br! [|RV sV[pIfή[\ObY4jmѿo!7ANqO&!>>2˵}mZo7ίZj9t!֔'b\y.̋V >l7"¸ F;6ׅ~@qGZu#qKD[Ѣ }wkRJY*P] zi:Ox fl'I2ee,`w}_V?>AUفo2I_v&/~0,õ?\fT 嚌8t{<{ N=M,=@ Te>@I*M~fZEu !R%)" Pnȟ{vZ9aѕ8CԮuN2x$Z0̶oO`O! <#Avf~rk ׸̂*4+zz)[Ðtp s(9Znl8M̽Mu>CPq}~JRwkEd$źlLc*d/@yj{ijF_l[AOk1Z=Vr(C@S*q-dl6lKG˖M}sKk|xZcm9:ujwe{oiE p/Az2$HAB5ѴkZ'Vl&Y|kޔf& MY(OwP H.R2TBݪ4·rM&k".UV,r $W9Gȸxܱk~oGaU$F"{N@h;_^؝{^9`׋wwkGovf*;Ifh&Jq?,3ʶoW١ z2Ko3>^ɳ:8$=%eJB.7Wny+X5$i/ں?o`6xCS˽`8zbRƸ e 8NZ !T'G4=xsn\㊫0?\cu+N:Z=m0У_woa&lF2>h 7bf12 gߑ,&n\; oBnЯ 6'r?kZ|<_8,JM,f\WJQ5a+¼>5 Ԛr[Y 4ڗ$65PU WE ڸ97o9A7a Y Z T$͍Xhkq{G(f0&o V2oWA}?VcA"!6UuMl'>س!0IiZZ[  4ٷ=bcqejnf9[He,dW RǁZ k=q 2i2W (O/<'+X2Ra1phj|*v*d .s [ Efe _;*E)wz%"$#K{Kqnf YHAg4dCUTB#Ei93xwQ黀Oi7#S,*H@X2B4f@JeR sC.j/Kߠ4_`m(>>nrܓ9 s86LT ho&dax3I-Ӗm)OlΌ 7 ֚𸯷Qu@2W/И 5+7clRقe$d( 4W!*C U%e6iW54E%qvwX@A0fBKL9D8c@|vBª&γM-c"YF=)>'FHm2];%FnjLV\c8Z[Pkz,.{4)e kN# `#6F6htHޱ=m݅|g}~O{k"x![MvR2s}n| qb|3ҧlcN0 RgI0,һhr%܀2EoOEL[U+_byc9IQ֓}ɽ%]pbtU!Fr3__+bz> L+%Ӌ/ʜ~u|p+YhQ|dPz>_(E yb,SIܷ-o-FC 5G mkW13$Z&G4Bm}xf.} [M4 f00]4beV"Fpڄ  5oApV0Qea Ü4@ \sZn$3/T Ԫ 'f8,$! (2j&X14µ ϵ& !}:p{e dL#jPcS$BcBia7sQ}(3|8Vcëk bd>^nQp(EӏD/=TƁF,:Ӵi4Ki?ܲ{$$͔Ss%@0D2EqKclp际(x$K4$"V[ C~6# (TW42F0zpˊCh XVQV(}e  >JFJSnFI>9QԸX(C[$`Ѳ0qMW@pG"<|!"v`\-=,֮>c,%cBF F ,K|}}h(ʴRGsX嚐il>:A->ljg4!^46 h32H;(7r i$#[E=NL}`'25aQ ޏ?[7>Ub_O7k{oe? qkޣu)E 4V*49'u^-7q!ƅk 裣= /4UFػkQzi|zwMb!hk=9tfuC<3=h oя; : @Lz>Y{<ǖ5Sc%yV(ikc**6Ik$Ppt[WckfAtaEYW'BÈmhW S jJbq<> u Zz`Za6iުF_,k[` TJiӜ8}sT=L%dUo2*AօW* "P_a~fQ$/@DFSɃJIA%YO.,u ^jdPEz)ӄcc 4D $]"fe00Zc>QiE°Ȣ!S7wz x |.%&yp Fl5M<>Luҽys>A$Fîz=<(Scu]xߏM9d4O4Q5 qWQJE%V6Gۺ[b2urE0:/ h `T& jB"DwoT8 4Oi.[x#qIE1 q(ӵLq4VԂrV\_?"/BZXoljX׷0i @[A塚kPN^מ\1hPz.$L q@Z@Li(1-ѧx{`: zD>b|BYqڲ0^k3hE3m.vD1cʀFjd0>Yx&L78^2&0x <l@iQcÄQH1娨dN/%h5!}_Q%@9т5#qpX SFk+ Pg9p=}%l\ymPIN.d^Hz`T5G)}VKI }4+R,( KݱYyn̙RD]{dD`<lAq3+_Ͽ!y-a=KH;ef- #*e|~HlWT[KA s{F::n8ۉ` ~mBQPqO9j ߷gC OR;1K:VG)>^9D8@Oj/߽@@c;H?{2+/fN :˜?T郻Iنk"kXZ&WlL qw7C|7nOd{B"Eq]44.Zq FJ<: k9Q0ǂV )gbeU E&d=|}^]0 dƈUe B@0W|pџ_e8h@HB@~Gj<6J#uqv7UϪ4, }ѨʔEJ`Zؔ(3BS-7E$!+?%OJ;_g oNg GABF #Zap5`d9(?s?@%&QPT\mRCd@tw4D8ꁵ s f_k: н&Ia6``9QG~Xw.zПͤ19' "p}*_KbHG ދE>'dsZaFQ3d/" |~/hMX _7ϔ zI ?Sf𔮏%@!;%&ԦW^N*r(XIOI\8 qxXssr@v&I>`aq n _FX>yR ҟ(ƙhFÍ>jsQv9XJ`quG +Aiڿ M 4мSז;{M$d'C`Ӄ5^Bu];HD>F$bB&bLbY'c-iZlZRd} /{0g;AmstZ{4pwcKar3##Y"EOfmR9 p=hۣն _jk۸Ժ xN%uO[Il$3d}5)|jܣ22;U鍈hcӺ:i؛L+^`ws >g\^?y[(QGC kb+@LLpgw-ﴱ|M5!,.Nچa/@F kQ96;C8NikЦBc&YpMQ5lτι&Ͻv #0 ͺOn/L:iQkbØ~YX/2l-|hW2dqfڢGH\CgUɎ:JA {$U'#A%0F& @ =k0 VJJ͇z!eO*gQş i <5̥=q-kjEqY@kt𼰌qB~\/7yZ20icI؁C6YK+|0_/yRɮ7ȭn/;~oaK3f9BB}V<_OޙmkP%1SuoE t=17% ENrٖ}ぢɐgNV(1!3r> E}Qφ?_ğ Oh\AqO|~pp#܏ -U?|@gTApϸf)d]48(Q s@'I)-`k /]nϞMq@|P!xOp&AUlx 62όS6&q+?n2$l%%5.lfMb6wo|z`rTy8p+BoYWwK!Zy}~uv1zZ%ٳ Tx!!{O{Gupנ"e~)aQ$ov?wۤl1L(y lN,cbb>gQ _[i07ɷ'(~/?R!&iq' Hu9ΣZ - 0T}i[E`KH͗ dK'cWۇOn޿؛ ݐD}*?l @Q_?$92[piM ٧^ N "S@_Yp Zz1|NoidOV\Z ZqQ('ДE='7ៀ>l6P;l~ 8e#)>X4YRЂq~珅5`6 <}& Voi}4/(r).!)}s`Iv x<Ź-6 Z+W=ߦHn@Yyd"pIQL2zӈN# T(y7g"`FY'}{inA*7?~wG6@y_LVu2~'&S fQ:fčLŒ_"}CJ_-}&{Wu:Ze(Td8 h8(5`W+0SQT? f\jGwz҃ KRJ[NEvDPJL;?_;ʀ32ZkQHy|M4k{S<\"0voufZa8ĵ#lګJ^,r?~bחZU(~w'k $b&{=@ݽZceƢ\׏??7'fV?ٔbo~ ImxrJ'oIo#\w \۞%[( ّϗNjxgL^ 9~>xDwc~MShgZs0 -^[: Brpչg~p U2[nkQ[j)HkN/ g;z>y:Y_o׊E#5}+]j{W[hA{wWs?9r3?Wmhr ؔR`>5}Z "`1.Nm8h6daZ y@ExrIh7>y'PւWjs<'stdǀȡ ,pE u) _IȨ* -Ę Θ+"賓S)e8OMchl 5= W+ْ;6E*Nq}@J5u1`AgxY*8}&q]^ճ#HFjECx !UG05JK۟n+$B8K,o)E_A`jY2N/#d~ߚÜԸeӯa>[]:IsuǫFSkNp/鶴ᇯ_#8?7L{~5t[FϴXNҚ#r%epT!oYJ3wL Cjp&~0:;ώ iLk{fڝbDY|`jC}+'&ˀ+}N sνIX+8IVFڸ|`AMwz%+;g$P=~3x3u7HM7@%ҭA{Hrޝ%N_^L99P?)*NlOx `կ woo`K{gϟA(iE*]9,$;O'h2xEH=_3XOQKL?5 (1:"9w-<q>/J>-ãQr]qD!?M+6#PQ!x&~ -\3$|v(s6YdZ+^{V˾ov,b(s"ypkC9; >rl8 gu.q3Aɨs CY0N~ &D G.;ָ+=qj>xUY(.f X"pHAm'c[Qh  g) 2 0f0@i@s6gTCrxf~a PpHO`$<} r<R5wWD!a_F#q[}IМ[?y2!PJAGE /BQU;mč^[)Ls:s5m- P Sfuܮ֊>2)MrW_)GNt/dɭq@D_15+&IF_lC c樭zA7"<חiQȗL1$R*cobtf']lNXGD+&o͐/<66%}V`JP=S' \zt}ALaA.A)kd=F+6OnìCZ o( 7:,*RpnRU`DSa VĴJj#E6-ט(ֱ^/Ty)򐲸O"NWGE0L)QEv(h,Fr](9pa "(߽a7QB?ہ I'i()ww̢,,GL $MN)?$N}iUi$K/kM`Nԓe'SZMAi 6J%g<,%+E)tq]#(܀p}`J@89Z6PiLq  ehBJ }9MqD d00rel E!w]HfM~' Q H=r}1evIL)^L2x9(֢n\"[4R!5񢨕M!&Όt$kud FxJf)1J"_N4]D5fvza5EdG'so7 %z2aE^ <w&&p\"?{o|Ff:CI~^o9Od+u<=)E!NI#>- T4L~u|1}C6?#A6]!y<6m3!} ދ߬z2 C/oQ-wJm:R:ΊHEqk 8X_pp Q,B{tLP-ʺy G32kc.)jXeTD_Mִe>,aQZ1}a`VI3w_^MO0.=shxIvP܀̸ {o,<`#rO7 am{Pɶ^ ^,wfP=*^[{1E_7psϑ/_-Pszl3[ڀ$zR?@<YepHr'ӛC^}l0Ycx$:CES~״Ճ4sa|#eV{M+_c+ndj6e9Z gwp@C&-$YFB'9^ S&hVTmj\ ΃if,Ka: dahXXFAC [ "}M$bL;gUTBDJ bMIC[਎5&JakvJC8ZaXdAg!SH Qlq7Q1Xp `s}yU#kf`+eGBȆSag!g @*CK2 ąn+ * 5kvHh^(1]Hu~EőJp`a0MEy3WJS|C7-xHO=m^"dUHV6,*| ll. )q53d49䉠qM >/H۫-@腉` JZ=Pٯ(ZQj%ÊJlb@%kf/ SUX"NvHkZm8 UүN|GīTh$PPU՛x,g31N|-+$LAq/,'&z< %?ZJB&aHG 0VVA_qH!ڃ1AUwi!)QD  a3;zr|auJ  lVNu[i=Am' j jL)l̆-hm,QH)wxip0@xF!D@^ %~Eqk< __.^Oؘ8v1% E-@!Ȳ +|ڴ(V,TBggH{`E溁>!9ek`urr4*Ӂi ^JJdqBabu'k>1cfQ2a̢ ݺSM~f3LР[|bﯹXs0}%h\x򾍆MX)hh*r#{lr(p%ʹZlՄ*xgBɰ8*?7F"%d$?$;JVj%Di]JfqkX|1Pɸx]/Hz)[u ckgqF&aX3=@Z[06 '9nFsH&`k v8%̸VOoZ m5A 6DLo+uv+쨐|,u&@03fȳ#ȷ^[L. E×ɚ'kSo_ġtLF/6-bi9U kM`ʝF JƖ+ek˅#z`%]*-x4=jA+1t8kSiQPdz)ExղԯדO|)Us[czgS25<Ű0 zTQ:cZ$^M2%xJւbDM렅D)#v9LU`Mm֮,>z&End^0x,Xc]JH!>KͶ}?F Yΰ'O>o1#`($M(P,Y[|f,JĨykZ{s.Al$W/> }]}/Vܷ{۲NkncD5pLgBֆE/nLf:72mQj Z0 Yq$j%3'lVX[`J"gq8X[g_밵&{ vTI0mZcRx.,ED>p1aoØͦBiRb-8`θ3o܏{hoGbMf  GMP.w7 } RT!fT2aMZԉQgbJDYsl)kNԊc*Gu8Zţ*pTEDd6@+SU>'ZutH4EoXku(AP(I 6kb!/PL&kwІbDИ31o,T<&hHK(sQ nPxBenZ~^E@ia"lRf&k8DqzlB:{Yd' 6EIWۣCLXD8l@uOnJ8 DL8tdB^\o1I\z< iNT 7BȞjhiDMk\ax ^kM0׏WDp)0:cIPBC8$Tǖ5`RkvB>Q+ o9]ԐP{Cd]hXE$4W#,+p܍X)פg eNTϴ)8S fQg1LGayQEicN:1PXxQXUl G ='h񡬌#^|A*t&mSRNOa4uL$=+T ;3Q*Y Idh>џ/UGR"`^Ic1&aMioS[C>'t}EcN8R|q~\sk2 *TsƢ8IԎ M{  *p$md+B4 ʺ:#])4@ӂe8Zqxx—j_¥'L+V) a!Rqzd-4\X`}A6 J0]RR݂.TmiĽK?87rτHx],L)q=W$v92v46~msbI:-{=RB&=|~'F&pzѿe#A#q@h֊#+&,5=i4W 6 .^R+zynח}-߲I9܃>8dֺ=¶WM9–X :C.$O Bd|1QaDJ;c 廩|]ddeSJ-3vPZY!AGsN9(ˆ&F\F E6[w` n^QA 7H$-V'L.\s^ ·}Z9xM ]V]kX=΀D2#= QGe]G!pvQu-L;&@ u]Q߰I;!<4^QO*&"hD{@mˋ.z~"k씎-{?4y u8FXn}>Y7 ?{A?_W6iÁ;x4񉊅$-[NPӑCkh+rK90߃FX{Lǐ]C v1ĶGl? F1ܟE̒Y*=̽AMa/:k>טp)0sH?'i5Tu}ES=CE:Tf hnפ,HM  HID\"I <{42ploˍ8;R!f #&5%}pUѐkAF%=|%䤼asIT7~)+Cz,?sB%L(%~n̎˂4eĭ>ͯU&i;'}Ҕ lPrc3(5 <<o8CUJCPJ#}A+*h#(52` c5[ @NP l0i,)(4FbRy$U˦sTY ) 9X@wPR^2^By4tq\b>>cE }} Y ,R Ѷ.$,"p-wj{Ch+8 M9+69=srb`}>:*IPKCm5EwBdaX13Ɩ fs\?>Y{DëOLwe Oۜ0lg]Jr4jkV%;(+4j->85}Jw<;;'ǜclwrt^'BM_bRPtO"*2 sh0b]"Ti"Uҥ?3PoDŽ;cyM8mb)z JTRY8M/5 290+hi[fY;o(7i۫c"VHU6f+ $y}\ r:NiNRQ;^~5=eNE(Mu@U70h!pQ*7Q4У-لQX :>a}"c eQN EVG8)O&9h/ݚ-,O.46zỉ fEu=#(Bz%b (q E@l )|^LǢ`LKYkt(>1s/il8HJUj1`sF)z} =,@4R_k}#8R( J)Cf[2>c Z\Wxi+$}f}tH:^/$; E 8|ldvp* QG1 ѣ @15U}z ް%@ـݐDџFR`gɂa#[K\> 2Z8 '>잕LA$Z68Cn}3oKbFv{4s fmY\yvY,m%*)L~4{m ݦ3ײ$d|!g67?gGT{TqH\HπMQȟ>ʟIyeI-`eRY%Llrf$d5~>>p)ׁ{ z$6h~/rː(-1cB0VxcߑL8=p1_ƀ @p͉hQ9;YSi(xlm@1XKL~=/Jnc]s\(0Rj-(@l%/G7Z 'ƜxoJȁe@W }ybZCt('8Q88,P¸쐼͙K0dF;߼~P Ĺ)5g7c ykӆ-zK5 K[Jg4}} rLGkx<%' %NKW0 >{=I 1ωWs{I0h۽s_tא2y ~<ρ@wH =eShƠ<[ljâ&jOAˆadC] BtRRRr]=V2&ZQy#u ќx@~PyX fGm! #dGa?d~R蹁jM籗gT@# LN}#ǣA~iEY@0#V)3OMQZOi^AގטXq`ΎYXS*r EC=WT i,p]56,Բ0hG>V2Vw<}F7`x;pE1Mb4^QE ܠ- whٙ5ꢂӸ!zL Uww,ZcGNss<56$'S |S Yi N" pptpsj&w tc-&4 MX*swX$L[۴zu6-ܠh> s#(4\a\UGE`sCk*`TPC.ZfaN&'"lCߞ q9#?ث9B*- EM0i7dt_c;?YZÂBq->ۉPP'. QiFtgqg$*,9K+(kzLN8uX׊<1c4FX'"5D Tlk1F3kq;Y)byȴL*\̕H]a&Yeb1Ae$v@k`hZ\2Jμ10) _h_qhi-u Q]kD3-iS+0L+KpF,z'οpcbix00B\8ZA]h1o Qes /Սq=Ozԃ*v &fk 9]28Ѓ%R5iiT#D}T̏ !x}v' 8ecÓ EG(d \jce5CwNDPK | fl6kykECj ̮TGؠ$OūȠԂ/x;H/ASBT]8jW7aQ0"-%o'* ?:Ih vVʠG*~Yp7Nn9 ,:wzPU^0w灹H&FO=(q]ƁX11=ܢOIDATnMJ1B0m?U+ s0*)]9+2=0ϭ98`dJgWkL|"ׅyB4@7,5ax# 0%^2U[ZBI_IN qo.,$=hH@Lޣ aflx-`q^_wĹ+T1TprǖmPc¯*(P!T5J3*ɨ V*d`Nc>?_G-O Y04/@T1`̉3Xqa*|+qjM'wK4}IC;Zxׂ 5qH @1A7ea4Gx ؋ǁd nf_Q̰9 k 3,`F*^ÿ0|d-py{}BYOׁeV{#8#~|V,zG,J9Xޣg1 Hl%SJ9Puw.]g$YrȷE&~${rqp0>cZKsx |ByZ>ٷe{4jVmCzw( WOפ $G2I#>et`j\k84GJ7 ToނCB抾$2"չz_?{F>О^s@\gsOxGzd*T؏ܽ2#wOΊz|o`x%N1Mfnall$\MqT+ܤũ& ,ERWsR'*PAiś*>*3k0yk|tRq4@c\e框"} ju(Z!14 n8JCw‪m RFPΊ~?R0Qi&8?U`PA7J|lnXZЩfB %nc ʈn's'9@@SA`nDB 9-6޲ h,hOq0"-uobG );srڈEKz\1nH$7VXh OaSJ&5,,U%^BΉC OKCzʧ8DUJyYc Ċ& =O\ k8 47_hP+U _~\.4xNB3h9BP@PNJ9UG UbON][9` @} jg66Gc.4`NQ'Wj4 sG_s *1ZB$-YUq^ϋb18o QJz3/Y4CD ĄHUlK_~){zb'Z, Ɉ\Q @[!{uR9?(1w_p-11+(U_5;J~!FR`]^Y.0=̴0sqhFɤISJxQӓ$Km-_x"oPlLk"h4S'[ F朅̜ T'΄;G,Gzk6 묓a<_allM _dnL}=N+=b«ٙD7b3 R_?x^%wH1t8>8|<*z+֙&Q Rr؊>@/>@& ! hXv.!Yl3 TȓG;p - >7ffa@p0[‘U 'GP sK 0T$`ȜL.ʯLٱRhq.L,mO"Ck 5:RrP Rv]kD'">owlž{L1X4:cx `c' dn ҨVD&F6ċnԲ6x!K g;l7[z "[* 똔ʽj_w<{x [+4֐eNmE c5Y"e{cM S !JfsN 2bmͽh$~9BwD"$OE4eo e^v1<ΆB,g~:3{1Ɋ-tE!H=Q3 ȟtŭ%}O~qhjzhq茸hR%sh}s 6zܤo6'>1;/9d)}en ^ucr@?Q,IfZ3^Vp3!}sȧ7r zZc0aލ5AJ񹖐`~P|K#YI)mcr#\g03&s.Rbih E+d5Z=F V L [Qb;5J4\ahll<5q}`tt4}a ,.PT<·e<ge#8(U oUxX wZ #O)PkREe-W0#JCGEXIF}¬\@&ӆ)k.<Yűf PkѢ pA/I8m96?C015̘Mx9; ;~;>$y iLVL%6_~wT=#ؐD Lsy10},;d.zOM͢/mxd ʾ 0INe[jmF~Zez.0ND<.´hx'lۗcXqE8rXƈf1+꺅tH!cӖOF.9T~nĨ\xIsB6fc?Np0MLZĐ<^g[.M42f [YЭhhm < 3%Q+f-R&<\u&>nİ)B)B0WT4Slđvdz?&tx{#u tW^@U|=beLҪ}烬3CΐS>&E0`/?_`V`u*]QSIe9[@jUj竣L{-)q6{|;w+0uј[ s>G :2E0gL+(Ę+@yX)BְƌR` wsztvf,@J,LRi ̀5h bxJa**%sBzx{<^Gm(}՟8`xqqLByZ=> qD&=؅s6:tǵNSaf㾛k_,"sJeC>SlS s\H>5&'$d(oIHLnf"B%oȁ^}JHNU6}{ OKx<IK9}aa*9`2S"g| ~qF'*%gA֕3^ a^2_@:op LѿL:ѓe1 %yc ldKWʲ0}g"cNUD|m8Z,X^s`J[j.qlZӆohCB3~h[뎿,JIM_S 0OQ ?{o7葐ϗtxϪZ? d3:*2ZBV^xg<7佫dle ֆT80gnkjqu@"ꨧzWJ]Aq, g|8!bjx>ܒ@$^c 9P aP5~K.LB y@; "T+7[>p >]p,( U&ZJ0@S\y-\c8|.| V@-RIGA(׫q-6uG× Pe3nx>)P2qC+qVu2'jjDT0"8X׏US /1pm&rJ-~BӵULG8 5%nup 5mH@oT797"daM8L2CcTEQ@f8qJ1KLy>=˝`R" g\?馹Q[LG ᔦԂG< p1&h}*[k["0|G%1LZA wkFNEJY Ia\ֳ461WKep)So8k/fp`B.ׂԂ~ǃ^Cc,jGg#h"x+dTRp/oHpQ Kx۱ƢPBteQ$z4YVO@j _f7mY*y]rʝVkAF#EȬCBD1Cc⬊uPR ηc0bYDP$&jü&|eM/队!ʃYh8xOA cczȞNuVo@]`SR'J`T/HXАsx-%DJhfxl(a-o>Z?ҫjL>^d:85ydŸhpbK RQcbIxń|PږrOW'E=} x0lqPv /2ukn7hhĐfM_6XMaxтRel{)w^7qnZ6NmKkǁW0 yU\__*8kL8Kpji-@ *qHx3xдni>qrC!f"~ VLZY ;pTATwogg]{]}"%,AϿ(iF`ՔplM@`ޓxzlSa3>Аe`?C6t_3Ѹ2@lHR'Ec^e,=(i;?WNF5 fS%|wǡ0hYh&yMٸA,as$#_s&EbV{II%2Coz$cJRQ@Në2-HM9Q48׬s=NZA7|q?&+1GF%{| J Ўol`  5BYXO11໷/Ƞ 3zQ)qVnע9[-XLaMe-=nd}(H @'Y/PBs2gou@Eb U0ߢJ& nB$C)BV 3bMBۧ0vz]|y٧|y߮{Z|b[r.4diy}(k ɱFА:*/T=^U:g܀ >/2?<A|5)NV&bݟnc'?g+}l0OpmvСQĔaЗpeP(~ZoI 7e(6{{}>!(~JNo-%:'55hZc 1Ԃ +xn$Z}X0:}oVcBXhXF#Lbr' &XlAvP5ivQEa}ah_ Aq9G` f O03/7< ]RQ Fc-0nwmONNktv6ZQ&g_xhás 90l3*H9(P4J|3H"`RA)&+uR(!$Dz V2p,C  )-v_J;/4|H d35oahr C9!c+)kXzAEah3QXƆ)8_re`vhb㥾9pOi]l?ZfoL{Ej;jDM]p-_rTPN]9QeME3AB<Z-0qѡRv{$0t9Jk8'pkqG P3;"@aM@~Wo6ԍECGSZ<hQ-~^xx ۵ÚzJY&rmp~^(HB./_"Toa2EWQFIMEM 8@9k9e3υ"ɃX sa;=EQ%(R\ UFuWb{G9qڦGTh h ]9]ŃI`cXʄ'w`Nߜ֣OqFj=_hwEHxSٺPGi cqq y]ɖ} 9P{>y]P3>6#Ƣr!%jUE=&By{,nDLlaRL/gA 0aXvzX+/ۉdZ+^G~Fora}\p,Ibـs*$,%%_Bc4k*E yi i/8AdXFz"ozPzi7А{zq <[SDRut-Y %/S`,C\ݍqɪf#/%J鱒MGNŬ|12e,6ɖ!1)mo|~Zz%CHiCo+rh)vdX73*/lvk.խnvn֛o fHEtIpDQ$%HJkH-ASgsG Wd`a R^Ϗ ;4h!FF9 T+}Gko F-T% @B QYiO'*)2aU6 q`N;|`B-Hhq8k{G$'C:T ^cAe20ؐRpJuuږU+s)XLǔ]k;>ן4F.s} d] O@VY$ Ʌϩ'ĺ̰́0 PVDm^j sO~YsP[4>ź":ONd,}}}73mK9Ynyhp@=Pȳ]Y*M8N8}"ಇd2V+$qbA}}y> p4\h9raآr|RMG?1/N{s8U ct>._ംFKgb$f1<2~^FQ<}-Τ.`M\pG+wr(uDCN >uLo)4h(QGE"vvmMB(|4Jsx^v>0\"׋5-@˜ER6K DWP;dQ ŀ*ÔwU<ZN* 5$BlSHy^QTZìM?~  1|9zCS`CBm*'QlţAL $1m-V F$+tЅ)âh)%cj7OǹCp>#J̚lG%a̢mqoE*sr`UvS!I$3-X~x88V p<Y\*k oZh уفY7EMJ KՀJZDr)Tq'?2p1{1踮kK}k}!(JLZ6m)R*1f.T) j~,/zJUTǃX%#vrF:< kR0ɦ ̃ 6~6 eg@- wC/MX+a8) M[xߤ<RjKW] U'-7Vџd8<{YT4;f _FeHs-% ]!po2|(c2ɱ6fCqVJ}gap7m5МAAR A0x^o6d\_+Ax F"C)-Q{u tɟR;yp'韾ٿ#/n l/__&zso5l \ Q>=C}5j ޼߀^(gbq[Tݯ[M_),-ħ̏`0{n%G0JJCmy/? lL3, 4p_{xsG B[!q5 a5u]K02I ܓ/Ca`FmTl^s+(4L-]DQY`4-+<=bEKʞDKE{=R ,!ԓ)Xܻ-e8}t@l&@] H^[ 4¦I#0_ @\#%4<.FԣZ2ա Sw (tOjB-f/Fnl|Xn8JsZ_AiA3QEPAV "D 9͵{ZxU' gPK2+|4 a(΃ 'UGwe R8`XZ)NʅABv1tF-kHn}(}u_40[Y$Q%Q(QXX+Xp s ZCnLa1pC^kP V$"9V+:|-yȢ=A 3~$rDo9BQLp}\T5(c;O<eQD46u%V43iƑzcwBQ Ќl͹ GcBNSŢ|4\}R8T `ik\Dvb-,lNTDFxLҍ}^("pwD5\qx 0u8^qZ4B%6C.go1 0 YH(J&>Vc0 b@j'Y fXVw1nTIN2eQJz]@٧ lz~Mk( <րauz cT#.t"La5jxq m)dQh"K}0F³NV_:aasHd32ޣdae[:Xk𧣝-+!̪(ȴPvf! MfziL`(_]xTφ>Vq:\G~uz &pa8p #QUŲ<G&P!dIE1AEIV2Q쒲'?*aU8ߚm7rt. s c>NJRZ +gND}]/)T)4Aq lFC04(WL1:o[c˲la#"?fR -)RHEQ//aؖ,WY~9{/sΪ̈) 4 QNg)$ | ĵָb*'̦1,i`:,f%9u,Da\?δeN/KZlY .P峌Eco!bi4GKxnYQ4әj bvx_`CJhcrXYJZ!@u R+zMߢ_h񷙣js.?;G|&;XEq:/&[@8{.Z4YP]1&w5'V0PrB^~}Wk,$ 5 Lt8Ehy-Gɘ{͉uTq&/CZy^$&eIx!{- efAql~nX7c ߠ'<9L7#m_-zğHك,pIH`Z0!ɻd= ZMLqG`c gP#oJ`oҾ?m5GϳzĄL:[淋%o@vYFI9q.D%{ gwB-9/z^X?7m23~GS:}!W z9#!TJ ^g%$~$ I#tu9דk%ޙx^=c0ԡ=VEXL!{\g4_OG\6 SAoaMIJzoX$uh0I\򑡩`Zzg,)8k+>3Z1=$Y82(q}ox@pH 5fzL" cJ? I5>I!C?qdc2yqZx0D$S5whזg-CLɁB{J_N[8wa}<` u{giyQQ?O$ZGw\}@kEo_5a: Nl}*nZ*e^6 w,%4}]ZJOq}Z4]]'OL)Hk9S}#O(=aÚ =azINYD$(~FWn^!ćnGjƀg$#=|>'e-s=)鈄> QD0[>BkL;T: yUBcLZKQ ۤ8>gQγjhq@A9iVHu^LpOF.(pC%&%# Li B)0N^6pKFZYwX#P0v7'Ȏ SaM:v< 垽$'c|iIS~h9*j#|n_"._٠/=/J`̞R5 Af>`h$Z0gL-&J c5XC='['dB|.Z- 1K&ra/.u_/J±}[bY5 */!7 c_ߍ:=iJ;8e@y )AZy6.cX6$ }tQ %]YRxUsA2hT1čV8P7>%5hhcbNHdNDoÎ1y2q8L!`͠H%ʺ`aȉC>;4}*z&s ViBA7B#K ہǙCP c *hÑ$ct2f0 FPdzqQn0wHsPZțt:Ցu8ox 29z']}t4tӘ(Q'.Boi֭p$y7$gLp;.)$|f '8*̌tC̒ AA1C'颜@,<5"FWuM %Q(0wg.r!O 9RALFQIXR;}֖)E\F&Twy吱yŦBcPij[r%4#Y_2?~Ik\`Yb& =El9>;AElf4ԋM8b"̩qlR07^ }sri=Jx";zyR5QuE/1:'~84S@6pxcHr/L}נME1PEJArF:Ntn(HG=qThH7´4s#ͷw 4S0ׄ>s w H n(xݏdz (aB@=_(Xi>bҐiJ1ب9)N!_ nW!e\y72ƍ]9)fŇ~5`:>AY"tkD9 pI1,g )Y՜`(컭?peQpd4mf @`$0P,ӣI}dB 6 ?~Ƶ 빁»ߔG3D4x08Y AlJecDQͥL/UVNk)0gjXE ,S0r7{jk\\uߘޫC eM|upool"شh}-*uY;^cIY={3e=-6kpkw8{jq=e@Hư^7ӊb)>¿ I,7fh.<\F (ש "@J$E@ {C9c^#DgM׌{8>#ϵ}"z  kpcF~gW=`q?[G%e}H`PpZ[Y0mbk/b3 A~&yg <^_Oi28~^&2Bn'WT?m1&YՋʽ~>)E1 IN>iJ-gȕM\6(Fhw" d5d5$5 z? Y) ixM=KIF7U(%/GFI޿}2JVN,xu8&,4n.G=&'Ca&k"`=fb8#("t4=2YԒp8"(@RkrwPQ'QEz. GюC"MLXhӌ+r!4MhHʤnJ4Vt,FqPƖ2,tAhߚŔJ@@r"M'NKp^w gxP֠NCg@ ;ҕpr0鵼~QEËRH`RyRH<}fxp48-T VRU=<&@Yct==216!AM+L_ >&p2sX82R=xPi4F 0y0}\s0ֶd6,1Zg s03"<>8TF4(g1Ôj4hOQ S9lO6csb>/h/q>)} 9hp[/.xȥXHH1`\R)wl2iNM W{rB>HNHGP-xlTr+d鷃 (eCn!AB_>i68<]Q8~ldSPAǁ hB@Pr*8ylLCe7'h`jp 2h(`L `QB"Y XPz 5NxKJ8 R rQםt|)q22٠ч J.6 !ߘf0c Zjn .6jE)ZBRE2%?d.6Y[J@ˠLhXަ.+3Ma7YqG}?mk k`k|Fn4YcpA)5l~M/F3:'AJ9$5Z1ހ%.u=cғil%bn8̇u~ c3L`sNZ RF* $$zZ03J>`_ I&]07vjbL [)n#XZɀ"hEQ{5cRΏY𨙀y<5œ@%>#5Rv:SgѮ$ @S~@9'( YB1!)Ry޺{b}DQr2p{G -\@ ;n=U@/a3)& 'Ryr-w} ~[軼;e7IX"Yn>-q-PjҀ7-9//~Ͻ86 ^yORoZ?VE DP51M ]eԣ05ʥ$0-ܯ[Q+\$/&H5vsrld_^eqf"9uXs@"sL`TdԒwR9}Jf;NkQ}=Y/6`VSJ 4g^D/m*+&Had]I0{H I\1IF`$ҖK47@ φR@q gFTrO6:%D{`eRd\.* SÞL/99nX`[ c8D3HIWNXjBC3$uodۅ ff?/ט(9Oh(!~~.i80bpu4dt7LJ^ vJ8!ZAJls,qOBJ0O s6vC  3(*L\ 22zLcB 톍Ht>(3`BGh?PԌti*}`gXDR׵p=/31pwnG`UX4cyɛ-*&q%m&#~b:9 kdb1}5 p1rA^oYz#W׍L^$Wq$JoQs.a(GG7g"e2.BA?s"ۋ4dy\cϦja*q`)=q*8XbL0s0 mt{7$7zcqE^` ?lV"j$4ot{KPe} &qi %].2uޟ_063dr\3}K6.^?+E*s {'obIvB&  fneb,_v>k$} T5V7`K@@ L/~nlޱ$$ freƘ\"nwg/B{r8&n(Ap` yV#($ spxrVA=H z]zݬ'$E&ϯvy651,H`Ҷ-q>jaDz]q-^epǤGUzk85NSy r.ua'FxR ﮋxnNgoSD6y=O=N$OeߠA=A@Ġ.0c qnó'шUibr͑ eVƔ9Q HF1M,焏#I*\8:X_)rCҁ$x̎2z !`7ʒ8dbŚe>XpfL As ƦĦJt6I #<=y?cC3ar@h9&VQo#xwB 3o }Rz64WRQ|N||<}6h-aD\_X"S:S8TzvsXB-g)lOYFi$+ GǴY`RpH1 ӂkGc_DFWIJ{dܪ 91|QwI6W z% | WX{0O!0 ]?&oHx >SHK̫8j*LА;,YL>qpZX|zT<#0AVR8͆ GAy>(R!M:FNH[~IyNf㺑hZKasM3 S5.{4U(%zHӾ:Yi,mMsBaM 5qUQe6BƆBBpNu8 >>Nʘ^ @~ƀ@2g13#L 6%$0 rbPYq(>WsҡJ\qrj֭/ؘя=8[{ߚ9<(95Vtq01*|ӂD ;Y8lWs@0vlf쾼,WåȌ.'S1co_rcOPYPͅV1Y&~e-fҵ?YKd ՠjZ2}P @.]s}4LsEf3u|)",vn!!+}lR})*atq P6QxT|=o|~ȉ!OcP0A2p$(!<*ޑM Tr] Hk U~.΍}]w$ |E閞Z1HJ`2S%& $_' Y3zLɚ߾=;ñtV . /Y^P߁*R`.lυЯФ %`8}]Kt}g@48] _4{$=9w<ZoG[Ayi_3@g: O` <]+Cy RYj`L3nĔJ5Qtc}BS4EIy)o.%)"S : ECzG=jS0Z1bT0p @J C&YSl)<_xLD PxT=̄fEHtȮ"9G spb:ly4i#2809jx>01h~f QF(&PcsvLtɉNkDG CE.hini0Ɩz@1m h=hB<( ;G[ xqC=7+&v=’S`$f Bl\6Zpp)p.M*R+}BMN ;+( Fmer,/Ri56VD#:A$tğ\.snƿYhi]r\PkwQN.j=(̾/ :zMxp̩>p|=dy( \y$6# :rIʃΟS M1u30$( u I\r4,\{ 2coSŃ%9\81o$c;% p6ri bZ2l.M4vQA;O̙"~r$T2B`Dcf>hw;ڜ}Ti> uhWp`J)ѯ q/(Yh3%Bz}4m V%V`8yGxvj-轇z&I/\1lay ΉrVL'ǀHD:m/SzG-u¿{3ggR@/64SeAW]RV(ucO@INL;̤~7qg7>(7c Պ={Ha*°9|msb__dA>NmOUȜ>``-i- ;tX _'h^pωÅ(k-8S 0CFED;ܡ2rAwgmQTkRlB#كGjA@S[=&!( P0l@Dl H .9y(()]N$c͢Q.jXҫ'=Wj^׾|< &ߚ%Oo͎lv  RRLumV$Plp|$& |{[;/`jT} <\&4Z[d`J_;cl r!z6:)Sn%2r !yϲ*;Ad΂՘7;mj@G@kdɅLcNuqdn2"$>w m ŐlLU+JbѧOciosdE(jIFPi0!1[K3z*%g|0FsNd=ԐS]%) Y BSqwHC9r A^u+ o:т`yծalek;9|/=o`em`ziK4ѳx2:AyȳϨ f5p3̜ޥ e|XJN12ꐸG&6l a0LH8aX,eZ|6NB;\o]Mg#!V%Qu"N8`DG&󊠺`:0 k&lr%i:j;d'i&^2g7F,DH;PEwkȳuȸifN >9 Xh@QDCXQ"S{EiȊ9 r0Ctd(Uiq u xzRhF-Mg@N)Pq nXCG~5ʧfVq`'6g;fAg=qfN9+ I)]İ-PUb(ߔ k7iv4aSBʂ#gT)|` rJbrfqTɂ|5hBфؔ(fd6yT$-0v˩0bn7 8;jKTA@WӪ(+dHB9Dn%VjD7S(.&%6o˴m65\h^RFYXВɥb AmhK#JFɄ8fLVT#~{1ca4oy󷏘Pd )AM]&ǥwt*)uzxrϟO(hއh 3J&@9FI鰯c r@lGLUIw"1 FQ4C@€zG GBC8GV &Ճ49G'g0MDzzip8YB$ 6p:`,")mp*#Ք̘z7dfNiW bލ2ϏGF+u*LZ\L-rNRQ>L4t@Hiyj1--wLH[jXrix,Y^?JJF='%QdސZW J!ԭ ܀Z*(mIa^ q."A; j3Y2EJ<>> @L9 b>4LSw(qb7滟DR+nL{3kĽID.d}|gg M$ྟ^750&Ӳ,L \%U +2s16 9'Y4b߀?˷W {V1 )z%,"kNǫL͸=8:)˯'3>pӽd98s,Y*,'ǴRbM6`%@Mب)4c$8\U*H*?ʗ:8X |ԫqе&K6>TbzUG)F`S)^ j`5z=> 9jxϽ%Kjh^?KF|$jH^ s\7XXa8xv 4 T|9%lѶID€8Ex@A>?>`ngG t]Jdy1h0yp (K {׍gc,LrT@=YWp@Ni(䔠*mq4JlXj1O!),lI,e#\gzg1N[\iaZ.OI߇ O!FkO1tyק[9mi"=%81=l ,2LaL>Yx!]ijz[lR1'}(?~i>cq2@jHWV癓 0 >n@Ԉ1|~tϘǵC{IN٨To VJ03:PN($@ov N8sȜ~1ZNaɊ|t[l~ r2 1gE''*obH!b<F ϋFcAaԂj48J‘#(3I xHI!bʇd}kE Q OlIkfl`ȉDlzx `%؀LngYD'}v*y>gCwGsA$L]-$<XX6F)È &8HQePR4 n\o$@C(&*GhcA=\JtG8  #D`>Y >RL}3v3d-5@ $A)QmO?1ۇی+NJȻ 0ܽԊr(a"BSi_'D#YQ)ϭ㎓’ p& ajq6uZ@|^} 3%1C W> UxV)2$qR'S:;kš&> [*Jё{מH蜨Z È\a8fusz6Ш|ZPH*́4WLJ# ކ1qLP{ǸZ1` 92%(?4})`oJy I}_dځ9[x4F2HI.Jg뵥)e(ufk8J('u8*WUf-dH}`ܝi~kl. -ׄ""kfh'J%HvU0 Qh׍'֐B①8FZ y]l 7hɞHV@=zkRD2a,ʿx2 }uw|}5\WG-5'@ /ݿ[(?~|]ڜ:zOE>JFaNRԐjb0G5՘C'4JorQ*/)*ܓ1>w8*`AOBCs u J bMc<@+NmG @泳rlcm=[9oi'{Xd-k7Sz:?U4[}#.JߏDESؒ=u2k`MA # L ˶?džeE . -O5c"ԤQ7m߫}VY,eTx<B1lfBKz 9񺸇H@6i%:zkGbsj 2くL.; o<kj>rhaBlwXJRɓZk1@:vȤr37 @,UGBՁ(zk3c8 Y@S)&Σ }D m'3 ԄM2Jfq>4gKztnqO$YPSz8 cm4GDu}4y0q 8ۀu#$gGH9pA {S=J ϯ'̈>"QPMBs϶97huNÝ]\Ze4؀G FM .Ihq'I{~NT8UQlo)S̔$)Trg*It{]bS9 @|&XHE)0&Ǹs29OTAv 7Iyi!AlN2k@ ds{Qxol9j z.e^46H!^ҁ $#ɝuH2뾡9!eP gx>@P W߸lw4l9 fQk޾t=??PJ4A,! Ճ=L=YAz+ѺugJ:d}G^8k8pߐ)0fLY讎nL6;b{4.='71-dJ Ь }{b80s4u4۳Yu N(GHLyH`*B`kpj 3xM@JsF7$@J  @ЮniI֋7S^ ss.19q|<{sy;?}BJ{C=2SkF {v" đ~<`&i(gf5Y$q9K⺖RPJf PVa>' `;J Eg"f TZ/(f>MvL"Z95`+2tȊHS Pe)X]lRZgsߓlw cjjPl/HnmHLޣA18z+c͜pDHqf; V n,uY5=೮/uJ)QS`KAY.f}FÒ*qxg}a ĽYXQ{Z> )!'?,,hFy|csCxJdG4ϟ/Xߏi1G6n ZDɊ8(q@bǖRp]7O̤<|p 60!wHaQ"d|[RwF }5ӄ{H7'fݞ 1i`摮F&g<1:kg`KmZ磏IZ }'UPxId%Q:z$U3Zdex93v2Bd uߥ}"\# X_CWYCkAwYk 7Kv523X]Fﭟ#h=jϾ^c闸q+|gilU,P,E,O[6Aǵ@Ʌ&[cCvx:at6g?>9oMl2U  43yR Cp0h#AF0Kk'Oi&\Ehܯ5%eY<$kt 9s~>4e@ѻXL 5sL>xy(~ϰ~9i)UaMETQ6qӑDQt!a(,,I2'JOHi]7RLL*f8,zcld Ia:[<9Af"ՄՑ p><<`d@B5 _ ǁT\'0 !i%N_`X]dWUDv#b%ы\UCw0hT8\?mjN@`2>RAq^Io"dX<jR= 5ȦCo_&K@7XGnZgyX'ԜGQ5@LR L4L%Hs8(ӈSɪٱ8!iHOy4+h;NGlx2vQ\DɎǣ9t'܍n&x T@K&#'n3'yМɪ1D) U3 >'rTLFpߝ-c0&9&Zh `ĉ)phG=*ph& &C1`s3dJӗ1*ǜ*oۼ^Hnr㬈b!ωOĴh\0'3J &̋ރ,X6^l6CxjҧHrB7%C(/ ,FFhqjIВ0:#njLIhϋ>z`Y)L\#j__g0Y -ZL~#tp0AsS\}]J.{0&P$*HgQҮһ9'fk;Y(YSfd U㽮G%u%|>뤬^fz1H!{^ ]ʐd(!J/5v/y]@EOGr.&f nfZ/6s H`gF?3&\-(V'9Жω!Z|QQs[ sSa(fuA2%( 2SR !f%,i*sB9mSL8» !\`tMK/ }&NzSbLcΣAI0m줤1Fly IX~gRY!bzJ:d1 C3> 0 |o<ȤJG#s3VH)N?$ s}b$ H$5h΂s}z-P7]GKB 'zq ?)!۞4o9CJf}ށƦ8jF;Σ#]ڑS @'DmxE/ȓ >hՔi&||z1(d_=/ry @,އsf߶:} J3,IT>xKHXM,Ҳ䘿#L`'W%C5/m<30*Ѫ`@3 uh,Yۙizg`x7Òkojx.q\C BkoXhn^{%UKƹx?.s{Oa2/%GzX6_r( To kIsk3k8bwȲ>#LɖV/F\~^*+lO5!nHY ɃbS n]G*M] EQ_S˹'=&q&&VIqJ[qܯoo@RY1mSq ZSF7H7Ndn!]JiS"/+)nN:tW$lQNQ9,N&A 9;21zh*6z>/@CoUXR"D%!Ǟ?W juϯ'TZD@CYWQʳyAp?1G= ӳ`jRX~)b$fVh$}B,X_Э>y7Cwj@RǂУG-s dxwCu|bڍ&RikH,x.ӓL4G^D %HHϻUS ƵdF6UޒEUDl2Tf/~ ǚm 4䬋=A% Rx KKZ 6Hm(z~=@ۀt` @^M}v| )3c2 'ɲ'!I:o_S,dƲ_~ o0g$y0~?/{؆X׀{طWw@8[kf˹ {-\ZԵ,HP/ f~m7VZ%~.Y~/$k{$Yo)'YHf[SVxILM)d_k ^+h%kph'ֶcLfo~ 2{gȗqpz!gE-5 ^$MTN\ћP\u[< %_9!-T@|hRz5E$J̈ZH(HZs"'A x)Y99rȊ0]U8&Rr8ԡ0&hRևg¸ilȊ$Z3m1I#LƹA8~x|dhoBE><'QzL'^&oO82$tvQ7 M "Pj8+)dAVb820dLD;ypu%p0~}8eGV`Mڳ 4ɨE"hIXlZȒZ W&=:XM݇7 vBD&zM(\ׄ)28#;SJ\Z ![# i-b2[/)$H]i.0Vu`d3@4Aal +x,J}Hd$t"`s,5D)+f6i49) )eOi3Z)'xԃϚ(2LVz h^ݶqJmRZh*HnϻaJ_^_W"`PTqY=>t@0qķeH7$ EC1w&Ӗ"fixg! 1lĞL?+-yINVW1iv#J`(bTz\1z"rOrIAK >ůX& ߳՗"7f}o :Z^rDߡe?7@~.Ox^I<`K&x߹9֗%LvV^F`>=K*[j- ~Bw'>ΰ\[m1T)G@0Z&~IR ϻYN{zo牳T<[#1&B_{eu2{V^P(j&nM@i0)[',`~V!UBʙsiƜ\34G⦠3Ɉ*Џ"9 Z G|fh7us&r i;js"yA$dÈHx4k+た?hwM3 -}w{@§:sHUwl;c4,;i|~phĴv7LQqL 'Hx8u@qæ01%\aSCzM||y* pͶ֜M<Y> k 3 U1 Iq&z?KOvux('puLL|L'VrJ+y tvR:4)V(b躊ط3F}Z ̷Oqs=nS=/zD!88y B'sU3ګ_T  }k |ApYS&zpY P. !h!Ebe#RGc6Ħ+A%,Q,?wQ+ 2䂶[LD+PLFÈdP e?ksgU;i7D,WK#6;n% i2=kb jj=&lcт05v*e]ǘZB(h dʱ'}m+77 (y7j+_  .@l^I2ǦsS;~- w3]jȦ0EnZo@@/Fū^L%;ZL3M cs@~4/+%;0|OZ LMu!eA)hNL`?s#@5<&(m%Mַ|QSS; Eq3p_)eFgkO|:ЃP|]7Lֹ(IZ; mpjgK(^%C -2I0܄}Q2JpDRf1SqP%ҎE1!!%dFJ5=pMBo*Eh0Y{M`x$|b|o2wlcHoZk}nWX3RH!1ڀ ߡ~J-A\cG#,RXJ*{v^Xw-<f+}˿so@X F&+|5IhTރYv]ͷ'T*jɡ+Ը.lA^-o88lUb'f8sB.0Uo%Y< cbLi\3,p)( n1Xi9N43^8d!1NB-%9(&=;_TA|OH1j4Qڗ"EԆcZnGC=0HǁruitSJhpZ4M\g@JMxP|= ^|P \r)\fdž&IN3T22($Ĕ:T*7TpJ#I&Hx] Bظ;,p'}&}8#0'>nwY;~R`c I(r~zD4ܮIZ4Xgr !&xMX'M~:}{A_/h9**'%Ebx]_h)I`9%p$-(']0ңo gL83)tA'DwV"gɻ1m7L)iNkDɉuuž/mJx2)B~Gw9PeVK@V0ݘMĀH)Iج&cd8ޓH?[$;} X+À`'Zfaǃr \l 29 q V9Tsc@, A'qJd &[AI"ٰ́v?jPkϫw\}JDa`q2^ gsaPw%xUʾ*<_N6ܾ3Jy/d[n!`s`eyl>q 6C Vm?c/Y/၈eacGw\kgksgec`>mLܝq29ֽRBIfJ9WPIT#?Zvjo 6GB;yg;P`XN9T,F&YYL_lP.JC@YlNDWdI9Tz$`]ww~w$h8, }q),; "ȉQQrFp~Q#i7 Gڐ§7j威 m3$(6ޙt09q%5CDg-WhIvg~{J%}1UcG0Qu$8 ?O REFjs0y="ʴIE@ #% q:,]{b?AǦ:@<D'X\4K$k,tfş>grȩ|+Ϳ3 Q$ NW^9Ŀg?asE2jt Tr޾1"y Ϊ&J&HL{oP,ᎳZPR 덼zIqq2Gi5&.L*HE1G? lV3F@r ׌R֐mtXJd0)}}1c֤]s=Μ &o'7Y DyT|'a|ӟ>R5&D&> k| &KCisQBgcԄOu>HtϪaﲟRq_!@DgB.T|7PQ=s4H; cjR FӘ^*9xQu]d 媆_Y; 5g,CIusǿo8lY")#*8NJQh4H![.'rDWo?>9լ _ayL8m$I~cL}ǸoH2Z Y ;e`I9f/Fᵒ2}`**iXG8Μvx<ȼ1KFi˛^W19@}]5m}}ݰ9o<@)%qdG?_cLACktOU#0%HM%' @+d1Ș[?*1RoGrǙ)aFǀ'ȕ"u^/E)j9K?㨙}<8Y;7bPY1X<9Sț??`EfWoVr<^ A4%_KzS5n!٪x9ѥoYDi_ލOj lIr?1e}dVپX!߿xz` N"ئ AlL!ӴǖPN3_9wׯm;a5$Ͽ7yjhD%: -&u8_LRQ9>> Ղ r[yLɠ Z)O}yh7$QQ ;@ Ӂ*8*#xLpAvTI$a~.~( d nx;%ۨ?8 gI8s-ޛ`\&zu=`QQ}Z7cw4i k ;Q^ >L&}Kn_Dv*_gōɅ5ȅo#w+`a?krCwL RR %39-6{"Έ34d0D# Go` 9B Ɯ;#^ur&duɘ鋬脜<`2ՙ$LF_{o `s0mz$uS Ϲ]XCȌ.d_ X|=-uf;6{%`cQCxbYs-ɒ.zW W`>dݠkHSj{{N *01BԮOID]3 4㮕r#z\6׉#&4<dBA6k`h= +UaЪ!%DQ en8+l̎rVL(0Qb/X__9P@|]O<Ό9fg[=h46{_.4 /UȜIgM8 2 ڙoq~T )Ỷ1 2\fMtxNK:(j~"$4'Om8^zQ 31a)SS=LK/E `E L,<@xHRT&d pv@p9˟/@fi4o}BHf~]|/RaO0@9 se%(?[??pI)GJ4 |ņj[ctF=Q=|"q"'ş1?C#96a6-qw4vQX&5HB(s4{s tܭu1;^'\0; ϫA@w>) )b x=2*$@=6'\W!"!iE*4} OHg$Ci1a%Ï K+qw?/MHLV,f{Q2&zxlE䒀;d2 겙_q[ &H 㒕 T, yf\Ӳ1OֿuaP}|e'$)(A bر ? H\e5AFF| V쵞9u>>Ne::{2cz m˾(ca-?3-%?c`,yМx?C@BFVjĺS8jEm,Hں7wלuVDRI B14 ctZ8v%''!rs F7ɁuA;ٻdO/ߑ+sbVHsXm]~?qD^Z@$b!vI%? XUmh+XM 6˫}5e^/ K끻iYCy 5tdoP*MoU4oP^;l #8[;ٚ 4"_ ES1?/ doٗutFjdA ݰ;b|n+P+= U?Ǟ:JE jJc 55[TEX̚?=@0f8iݷ֙bL+[Ig;6XZ"JN8dMFK)}_]RK&I^)E%)7z+ Y~7< n|`(Wv.5*~}s_.ϒTg_A gB?~X 0Ul1u1PDݗeәm} L ~/5_lX)_?ދ%ei'x4A[`z/At5 _,mfl^Y{3O B_\<8mwp0o[j}B=@hnq?1?ǟ?n.}D )]׭Tj++*PNo BWܿϟ߱Xu`7wCʂR)~T԰ iUa59eH94π{K?B%_#:@ oԢY!IDnAo Q{QDyI2;_7 `@O-E!& zj(E1x2G٠!ĶE,;R Xѱ6}4bv {(%Q )$D `cT= h O7?`˅t \JAT/* /|!]1Q2.67{6 N4V^ T>,n;\Go59^;ŵ-ŋNC\%y} YPB 4p1M!8Cw. ݇#%%)A)e5~<;6<^KT Jh5e;ZCe -}Dـv{RZh}7DQnDێ !N2&ɿ L^ >0L 1q }hFHbj(2L)k~k  ʄݘ_4{D֊y\?>Q;(a#:Yzr)1w;߁jDan^%V+ |[|LZR dg>p~?oq XaƟɥ@SdQ¬ %EJ&MgՀ6DޢB6j1o)rB'@.X'?B&J@Ḁ)slH[ێA;;LQqe쾼Ue#X.F'hH[vТg0Co HoB %gN'A`gFVoora7Y0(:'o167zŏ Cy 1A#Te- ;),z&cѨZaU7~oq7a5Y4!&;2tgit֚/ "\ rLx+9qSDN ?տUP~dژ N R __6AV,>oހT a1'KJOB!y8V/gwHRdðBUovj~w~ `RYLKPҶ蕨 Z닙Bՠ9^qgu{y,cu܍rM.}Qa +onG}|_O) M=@ty?B*ЛU }Ġ M9 [y`N>Padl_~~LPM  )Q'BPgO!!فk*j7B֒(Pwx섄nL6a1(TI/C\6-V h/_*wW0y5{r=ĄcvL1Zқ1 73Ho;p_s"e./~}f֟'W"/@/׾_ß)l#oX3uO78|ߝݲN@//x7^ [wS+|_2_Yu^[>@^9شuViCY}XL} ň-%2mڏ;zJqNH}8 ^Kʋ{/fD>dX$?[Vϥ7bCtznd4"c JxH>_s*vOb0ӣOe476F1C)@cs"(O\ԿmP煔"DI-KNNS 0RKGs° ֘8X yt$8>gh"u`H5[QXo, 'P1Eh{G'&S4^X j3I$󺼩l'F%(d6 kJj]!td-B1D1L֙&l0%^8{MA2UěS @ :1ƽiBmi0(M7" =c>krƂcvDcL'Zȉs3_m4Fmlrm>GKe8HGհqK$Ƥ!%9Q# 8gm@ߋRـNfaB;f@y):Y!eHRBRO}NˠKطq>ɲFa}fU N#s]XcbHDƐO;I!5^2@Hx옳# ?~| GJ˶(i!ƈ8/g6QF)ETgioP\2EH9^bӊ82Amd<3j8KId{r7N!4{^k:p4b],_Jsj?uј'x3,) k&xv{s s8nVi}}%9_?)7bM5f%x&-O&fn~Ƶ>V#qϘ]__1z{o;SqpqD>>>%য়۶T޼I$ry]x'lR>nA'Bc@Gkbİm |~&7:%(AqOhAZ1D08J].ʴ@.Z} WQ>ny|Ow(Kߋ>'4&W*J?R)x97h<1Un^%]idjX1(MAk𙂿x֒kU9,hݯֵ|zK@F^{p/n:_?lrs"|(Ez,i젃.,\WErmWyɅDB\qC0Fږ{꿾CvV_mek0'Ù>g|1tͼ1l} 11 4MƠx Gr8ńkUz`~XLs|6N3 ? OU Ӯ9'V9^i^IL/7r(e/521B@0 (E@aܬASaBl@@'E^ƶe+Fl~"W(LӍW*DLNݣVo[(J,h|m*i 7DdڰᛰY1'Z#@w}8?>.@h|"o1Ǐb9hJ<fi,E  qFUSO?lT3ׅ :jHZd0\LQΔ tC&,=LAY_A6XWf`KbLAl}VH^(0\ }`^*CqXe'}P\Y>3)or&JH~9qGj%KpoB ӊm)!IϨ) iN7N }HXaxV|b@Fs<! me+!!qyȥ;23B4i~|"fbtARdr-%`t&.\>\MM'cn O_Y02]᫱Q`[q"}V/札Qgo/$%s\Q0 hDqW#;}붕bu"[~'_- L^0\>DX RK SVsb[ki#(/2C*4!~[ WVݱZVG8175 Iۛxp,gB쨽;ӪAy0Y5϶m 9%F .Iecw tsRǀSAq )Wl~s]cOzH@` si$>f>1B@;AIP0"GENsvؤ(%Z;neit;.(cf7ZiLWk2, `M7#dW+|^HWj~/`[4nX)5o/H~ėgׁiY M>~k? j/=Eq֧TUT%!iv3gE)s0k%`>˒a/j7xh)R%2` >'gu^Tw-}dM,mT jBOQᅣOOCǟOsb3c,,]n5'l4"Ys s_& 71\oa޸aeI6 hPl ? A{1t"8V d6PXP:",@G`8arB#rd&uFFhDԛJDjEA;.Jr!zPX?OԣØϓF$piueƴMomF_TB|#XTf$&&σW k }yJO߾a:2)[a4&mßS}߸.$ nWyP*ln0_ةd2ČDxy(@Aћ`7wSDo'^p8!ܞ^ iy?MmpoU/CFvnyl-fCЛpF,O𦖒Շy#r?k.FhIH|)p]p3˘}zi>("AL1rĜ ^L5?8%"3̫.i^ 8B+2lL煘+ˇA Ⱦ}hǝńx0C~W5Ard{{,^{BPk,|Dwz q@oa05}D)p9zta8x%ShbNdx~z(r wPCrw}r ^L܈㉒Q0@ ݨŽeL6ӈb$9D'v/$>䌒)aP ) P6z Ezej7͉6 c7J )lLE0<# 9` FpF]84Bg<0YhlZa)SN| NAhPdfbJ4썩 cA<|Ai[͍^0hC2-FžG8>+z([ %B?2́.`G#>n cF.2f݇P`x  |ړ8@,sBA rOR\c0g $V΁蔝y5t}zGP@ՐJSw! c7,qL4lj}LO|lOcy)/ЧK}8p42ia}5} n.FyجX$)v5{F֚'4hV̺m69)q *DŽָ.XlzjL(֋@SS.8I߾cXUb4:+zs/>Uc@p6|M(y(}tN}CTFV鬥ɖfd5[fLvZ#O$ `*Usl/cJ8+̗2+~rQ*oyhΠXxsqϪKE\Rnwb\A€y([sZ $2Fl?lօl%UʅE黤JiÛhqIh dYQۅ}o͖39˜0q^ vX"CА0 8T  *8/折+"b*uX"B$C:޶>*֠Ms*P*6Jp4{|σ_ִ1fP 8)+/{؟b}~\~1xN_.mș:gǏ BQC%"cdFC!y%$ޚ }WAuU̺Ȧ!\tRo 91|½dl"ǁZH)#'JQe"A\fm` j%%&@!@y8@0JTwDhB"!7utkPbx5Ba>pi+No%Zbo#Osxډ}4ްdGĮỏ )F6!HUC c0:%60/*}.DQ Ӄ ?W )BsɦՊ' !{x{(ħU\dcl[fs:1oN=H)]Wh7؜]!%Ĩ(9y"b龿1_R&+ᬮ+${N/M,;޹mG,ߨs1L铹Av*@.,? Eo fc4XT쏂(L (R"֯ٙo:Ee "EM72#g@5chq5>'΀1c y`CT#r&j_HUOd$65L2&RCu]. "/M Q@Rs$Rv N @wꓻ~R ۾s"A%^Gg9>1J9:5LSߝ#@!sz6ܳ XSǠdĔ0~Ҽ$ ,-Nbwc`:lˌ5yNzƘWb k1EZ噑Tl;%esT/9#eI@NtrqO߿D%|r0' jY"JRّ@gNl[B ޾}L4SN{NhV)"L2[1&ঔUBt?("'e5{4;6P';Pr^" D#V}"n /I\XO'f$I] wӹd G/փ a7/,@@r8/6^p9j5YӁ%p\`g-f@~zq aR}z}n'{S-)K}7~-eju=`(BĒs n5 [m1cD_!q6_,'%%O ||>l*yX 訊X+3Y0E h  >eQQ;ZEKRl{B.1m@QR 鶁gOUqՊj8+Z΄eKjKlzlL^+! Å9 :ެvLg1 RG)P;k6_T05|h_ ?n "Wݬ/zn^`fEp2uIVL2o,@{ KV+o5 /;gQ/Yfd.>J& i {ezr3YgALyAdeݱ^UXgR}AK7(RUWbJo^~h@P]fFy$&qǃʁf! =y_s)ÇB@v#:O~װdq k^g/SWc3P_6=΁ryJŪV-+&^*DLn FT3rHPPs`JI_R,øO0Q;'>+vXV` ~']zgLP e826p^ ΎƆNuP $ R_) 44"#M%hbVG`Ɯ"oB0ix<0rQ4i Xw{ 1"Tv0L9ɻZEVh5&6)Zٜ;Ls^.O4GcDN[I C6QpKDbm@0`>Y4#8&T}MV%%𲉍?%)PJ; M~j OWB^7R!2YV+)ffd h̀&J„,*͋\C>O}!( yl ?ijwͩ%e˨ lO ܣW\=E@A*sP.Zcy0yARyBCw4Dmۨˏ!Sh8)gh 5Of*0ah]2^߉eW3f|0Q7܅QNOMS2x*U&t8PoYo 4|3 -19`"VQuA{G< *H{Tc;l~' =Pޙ;wv !LM!qxC~  g-h[oHJ,MhTMlyL<-w7J4ESm&115`L Nˤkl),/b]f=x_7ZD$ygsD~C*lcdU؜wa+7XΔ3mPi)< y˯S~kUije#g՚K bK)0grg *HuߛZl4߾=\^ ˀSYd]ˋe&%w`N6aRBhfg{K}uD"`<_ Mr#7KkGDP },y%5_Qv\ %_W]3>ŦUN㠌g?_je|@,@886oWjnS[Ǡm!@_7f|*ƂXɏc6Z^ D"-g2.fD tsPVX{py/.5t[Y)9&R %c\`m.nwbs+Vgt{̖Wbե79@2G02|Sn_bεG,UUp-*8 .ܣ~X\יlp,s?GO{2 ,qL>>#HQۅ.z@Q+dn > AL:E<JYrjjt/ƄlUnؗe*?D6>Z5,~t c|~!FʀH1Zܸ{Ep3>bFސebĔ'PLcԇ BBLLj}LL L }2l džNyKLhPtEcU (%,秧&b;J )RTaV1SDžZ#x1̊M8 y V;A9p0H,McC|AEI wʑCD-̘!!bZǦ33P&C >B0I6e=G#p2i"$HY1z^V訟:XjJX17q}UqfhVVHx{{#b=A 3TOޘQ~}t\{Su^' \U<޿B@0ǏO]4RN>:wE.a1pEpLD喜>?OOJ"+N'A/*b!'$H6 ;}|^-`bLMo 'zhPoꀣVa8kBT|~~ՊOI~΁ǣ y!ńR -T$>uh\bf f.F6f)j)Ճ,\԰Qu̗׈.YI*i?DI fr}RS^/Θ~o%Z%s,&,aS5W#ҧ WbLowtruWNL} U yPgْYZe AWBJ>wszŔX5Ϝ\O+ELϔM+/3Z+> a ǁ81yuK;Jgyb~n$}q 3=J } eHI``9Ã>_>ϑG '%ˊ5n:uD57_ԳbL Q<߲dOPUukft(V,aG'CtFW2J7"qxd0< %ߜ39F{:hAO  h}B$^SD]qw!^- 7x+{DWUE?%,/^˟-Ƙܟ+;|(/hQHC(:=躧PnϠ !T}I'g_2q\|, .>f3^| vK!W^7eHVt=EȖycL/@Y<`F'<'^ [qZm("(AǾA\s>)(mDV0zFkP?+RTg/#9&ol 1a 6?"<(0FjA?&?k)!à +ߪ{g!j> ¦|8Rq#慘BZ2$ʃ FǸ.N> ƹ\;}ذv)8aA!-sSD粁7ơDɪQO:&l"4 XrOESJL2RbQ*tL7y!%ht2bn@O/L^e\; )ss #+@4ʧSE x+yq[s)('B}2SFjxwʋ̶1!!Gى`0&I7>}Ze)%0.suM&t5A\4G@( &A`ztxYN{3ɰQ5qz#s$'gW 0ih T`*b7=1^.^4v5 !'炙"F%P!eXwAd6B31l y @m6UЊ蕩Y\0uD:+ʦh,x:h?_akEk>U)eW߾hgbJ1y23[tN_#~"YkE0@qPLe 3*(NHuUG\m5{? X9E&6;aOjE!$pa0` 3F֘(e Yc BFb Y>CB)" $"8fI Z,eqf3BJ|mI4k{u  -)5knn.ѻ6@F Yc3X06_̋!@%}q d@_԰q@peK!(rBHp7꫌t[ýa}y 1@fm\2GI<HR*AEoK\a%$)'F:+4u`tMDsՄ sgљW/_U Fo6߶dt P":&Xk<~ J{ r6{]г/?#[_+!o}H Ê d AY;Z"8GE!gj8 &~`>|ppKv T ޓ3s\"5h?;Y`~ MagyVq+xs>IT{D4 T1ϊMWvbJBaҧ1Ҷ!ĦIS: !eE@hnCNTY(u^!>v pdAp0SCқ1T,X^~E67C )g7Lk!yB11S83ѕn3cm Pj@S+9I 1m2Z =J'e}qgqÏ21 ?,- &y-W^)䜠 6+"Lgf*[fSu1)6ѱ;Dhy<~^L `L13'&N*Mfu U+%ӧ8&}vYLx|{ zCNO\0dTl8XǩlRk>qƩPmсN3aA\y#h!R誨s" h1Do k9gX*1΁`jd5[|l *fk,8B@7i46e+dAֽ@׆2u'ӕFI`Te/hnW[k{ %i~Z!|l BD)Azy@aoYxx[I:kyc^+cz9;l vDLk DoARǝ,IDR܋Nv=4b K~bੰ  H_&/4,[UfLWH[i!Y;>É@ >~@ ϓ jؼ'!D{0O00\e=76=Wije:J1v{xݺ:܉~~]ҕl&+-$!pR%%bF/C7nQLx6;zU-9IDAT]1$z]o^Cˣ$WW}T]No2.Yr"(.[Lu J5}B"zu !Sjϟ $ZJ8ccҀ8:K_ 8z3Cy@D ( j4&^gyaiC&bȨuqB,,}H)<*`\'Bb%YbB-T6Z&\crpޱ(pZEmS &1aRºkm\;_Cݕ=lVh7 q j>K_~kYx-pKn9|ƭ__^ݾ]}R^ɩ7H1VP ([@μ@ /Қn=ٷbw7[o)<}9$999*$|}cV w%c|}./ނGK2ܧɥ`YlL_^PnEz b\v]7*[[TB^\ad0\ل{2'&>!TtY8&£  @~ H7\zz6d^8u+7^u43ضSk%Y`4״2*sZ3%fArf )qEt~A/8R ug6,)>؀bD $yF2ܠv)AQQ Q҆ 9uEX=/ؠa79n'LD8iMǫbSRR9c `76K EOV9q292d6՘\CI!1fD  3T#El); ܺNMA~iUSs DAT 4hu3`-$g ?/<o-Ϙ6a2ѕd5zhǑ(v״`IգlwD%2ȴscۖ21qcj_s6V?ͥknN  F|P=?ڰ ж@.(-~b \M$}"Sjwƌ % tG5PUcN<'4d.яΘu.3MPQhԎ&8yD+V01BQ+ijد@^DžjJZ=( >YDI I#ҙ~B*0W<N6"BP)aB͜ݵe/_(^M!pi¤ qhMhI#tU$ND c -tU?dO 4(ڄ ]Ίy DuA ߨ (F&d)Y|椌v3E_ VbT5Aшu\Xylgz}bBJ:,j(rbI="c!~ImM1$>  V/8;Oԓuwoc:trGe,&ҕ*@,|e7D=aBO(E2+4&L1 Dh{l)RJD7vr" 8' I. 61 !y I|`;XpY PzrM3cp,6%W!b46ͽR^x{ ǀ ;)W߿A+YޠnfVL:2ömwVCR Y}{1oۋը ? u U'/CY ntM1D'VҤ 7ؔ(\bgג(X9ZCl%sٜ8Z^%)Zd<ر.ʋb ??6r-7:W3S/ռ΀X,bp?5Y.~/WZký &1 -)<،() x=4m3)a6|>lThC0 Ges"1> s48םaLs>?H)w` pdl ]2XHb@mٙ? *sL1!ƀRul9c2 99%(c,f^^.[n" L& @@I'M:;{7}a+K%+DyKrnϑ H^]zHjK/?+9U>/RO* ,J]BN3Y| nW7@ŋ ~̹,_ 1Qs.OOp,%8uI_a(^cA{5g)p^8 ;`-P᫜u9`lA wKAXsYc2wNێʤihL=xcD^>(AK~JADq*)Q2J$kitA AsQ׌tgt+a=\`M e]p]S=OVP4ngc va^T[CI~]Q#ێ^;V\xn&lGoPmNS!aXI0J :l\*@C$AM4(3~A@y*A1&2V)&Da!Qz]Nyc8}r^6+7ѯ vy>?)]:*708σF#@يVUQ< cB'(at2!aO.\@^);llc׽(rl[@N,{Pẹ̏?G4dIRG0m21c;NaC9 ; YfAƣqY,di:h! ) lP؀3MzSe MX,cJ n;,[`{C. E0;l tPkG7ʖ[rٴo6`;`IT ~r.mɐɨ+'p ާkv>ՆZ_ɚd_q͒/U2My5ua /¦ң17 XX˼mTkzcaNc| pQ. ^'/>׆B;(j=XfF4q_j(Tʐc^d)'29qO L(LT V1aOr9edyRx{ zcߣvf 0'oNy^NX  fP1O-i59t5_>pG%[6W{DŽ\L<`;ѯ΄óa\cE s[Mg4z2q@#_foD^ LZ`Ij`ŗ;Lbjލ('Ⱥ+7G_䱛e֞no#'1pb ]jT=Љ` +GW`rЛe>dYRKf)xwg J[ɐc CumAs7l/!(qm}4}aZUώEh1)J<6$xWg5ځ=iq}2МĖ#rLLg~RL9 &o MEܫIem-z /1ͤ'a*EPH‡}SFJHBiE\rJFFݕTXة"ļ$O܃JVhWP@o2tЌ^y,js,?1{b 0@4h*?7c ex'+tg{LS8q3bb|12f/lDIȉ+=rniτ0iFҊ[Ɋ oo5v(MT~P>΋f}BSAb } 1ێ>QD~

1jE;/),hQAM|9Y Lz uJ9q32-124tּc`KK@iVf@"D as ϫқ^ꐘ`3] +" ©A ~\6 Ev؂B8B$)u(#9`L"~ʦM?@?N7GI۶b O?!֮ .S-ZV%!`][rM?o#̝GCl  .|Y*8h9$S[G᪘twLp{RTYm?td>|[r7Hhb6ctO hd.:9k&n8+|LW" W1Jȩt#H_ jfGfSy^t|S-w9 O\c+noЊ?`@,qw3fwcP7z[:4ҷ7}@1φa@V7A"b IiPn a^DCus!ۆ36Ї`C J`Lv_x0Q >1@QټfVNCJʡc\ :*{ǁ}+>2k? {fHNɊbAM Oo2wl b̨}͸/*S܏v ɜL*>2>%0l_Cp? ZL.jP?sg__W?3ϵ {`{_7]~Dyf<^9(jY{:_%/@{s@Á`[%ς}=<`́ו.[IL'p1آ;{j{oW džaV"SS1a/S0p|>ȋi8' !)dtcVHqp Wìi^0؝ Zxc)\9b)D)dkH M~ 01oXB5AT'B2f6GJ:P'0@j{)@S oM$$RhDNŤ %+R2rA"$Y} anJ e)F7\2 >9yAb ؘYakO˭uNߤJE|Hy@Aor/ۛ0:T&-!9'@Y džsV6'4[("6/ DHvI{L)k(6SV(E}<@OY7ͻ5Faʙ"T1g(}o1ģɚna{>Wy+sB$vgMzZgz'i=h;1F&r>T/l}3`w'Zx^a3i^'&AcH!^s9p9yiq@*^ c&}}x(n"x|Nh=vP@pF͉52ro wG3Z;3AR~1:ѯIqF*um#cߠG5'jx]mE|I(bz77Pʻd|Z*<5ON\.fD|_1|a,A[U`SCG@jCpcb@!Dkㄆ{Iطo!BvSu5߯~⺚āZ+j([2!P@ԁJTbpiV!!%&t6Q}zlY sPhQrLїk۽g-)j^+p 2%eL^>TkWG͘ +̽Ir!~a)0^i?a?=쓃lCz|] `ko_; M_lk^ȡOA0ϴ@a( nV"M5|-]4f$ޟ{",F oIJ~[n !_q c_ "p6 !{}+q9On33xSD69_k]'8h>: Zך?rhWU/4XV0UG1>'bJ]L`q2.BM\GC]Ha?:0ԳBrsDUs*Uzhӛ3}S zh J5q 0F|j" Rʀ#[%$EB pG B9$P=}۶vNXQF!aLg%<6h';L '] KB$PT Q(>8{Xߓ^QFcrSԒwu] 8ڜJ D#oV)ql8/FN*ՁWDܼm#>iܧe1Ҡlz4##ʲ8O'9ltnZɈT̎GfBu6aZue˰8z5vՊ^'>?.̾o&]56胕#q6̏ \j(N#|QԟW܀DZDCˊͩ#ZQne]]1qz!bꉉK{OZV!*PL5.c-6 7,4p"MWrMG}2`>JWy)lΊPJG;;QuB@ 9S+rA.$y!Ak;r)8gC`?49RZU1dĽ4xK"SFI#g4z &a8d2yЛ@Pu7WmH Q&ba-ωJ.t\sos[.(ϩ%>]B{wƇc\hwk9&VT‧  yCfcB-`L&\0.iX{m<%k1F2`w" /i7},cx7q] K %_@C lq{y4ֵ_`ϰQXjxy&Ag]W#ޚ鵚H7s}I{Jx6\g郃T ew!ŀ8o/9rsDyR&%c ;uޯ}v۫<{ (nk"hg灣^8[ok R `=nÁńXwܷ9&??l}_Y9A+ 1E L#L2]~6J\"P֜!@1:_=,&-c8 $ϥjؚxEbbD?Jfb\ x5P|ez7A"BX/`k wdӭQJǼ 9fs*KJ`i|3`5A*,ځCu݀5J55PXrZe}! ;a_=edw.#\oA[Ҩ HC`R=8J@ީ Jpzub٫Kr\Y/߫1\NȘb5gD9YC.{Y[k>&1avOC9,Ά҆ZD. QDsWP8BW 4UސB#E"`"Ѱm#4za". jʄ;H(f7ip%gHt$ 'RɑVŠqs} [ ۾a :b2Yj.CP\A>haYSdzA,HA0kMlo~)`߁Q'LVPD#G@e]v8J1e"hGo ^Ȁ > %0a) L&uҟvO%Dh^k4 Lә, orL8[͖Ik `\0asJo߬(cӴ7o;~|VX=&_..gPq *G qmܬ=P7ϳ! յ6dh@}@I, 򮳒! U$qQRTwN|>PMh}`L}3durcrBv ɟ9 OiȚ\))@dzL4Tؤ\m. B0=D6^jI٠[Jw2W)FPVdj PL6 CҼ GJM2+{05KDL98&!mșPD@CLz`cǏJu &)FZ1:ϰ%iRĽXH RM猫m {yp󶑑U+dtzdf! % hak}1Ramz;Sr&kC)ft"`|v2-zFĀm=J녔 D2 pB]żٰvJPf8vZ J<`Lu>=E dIohb>\`%|DXŧ$/^p'zS0_]& |^ (b7ⵆ! 38eJp>2_R,ׯ_0U7EwZ̗7 g'|JUutxY&w|~~{XI[Hukw Zol&ԺVg) {D_Q&FHNX;.ѓ@۾q0Um.J\0 >df]ryU9!m3JW"29M5iy|>Q/Pt-/+.%uOIB_u+fR_U:zݏtr8ȆپgN_˲c= zz~؆AV]2@;=e *;/$/ﮉ'J!ڻt f*@ bU ed%$̈́@Uey`͘ /&P+Aߟk2AsL~n #>%c99}$s%_BMyKCu1la#Ȅl$e*74YMVC)]^ku5ph屧o{5tO0An\H[\ 6&q} >Rh $()B&Ю Ou] M!BDΎQ3j,Me#$&\mbNyK&8.L7aӋRH0 hs9/ Q' =O郆k<;p6(c5fCJ7r{H-"V"0;R41zV< ^/< Ms(VHd?:m/eۣ!n)D"D Cxؕk ӄ)n=w Q I&Q& |BǴ!kN4[%|r <7 >!1cJ Z [Pų;+ִ|]&Mx  (>}l/ëHsb{g+zQ P([qi7e gwtQ j4Oٴ` ƿD)XZRƖwʉbu8>l[!HưIވ}\eMUPd`G ϣR]T?}%˲F̪&&4mQ@w$h ῗF@$6*_Ľgԇ+Ia/_L9gPyGr^!{Mu{g˛4A> 5SN19 b(x;rd)}ω/L9"[yt+p%-jY  B,L{')?$ߠb( ?;>`܇lx5aIY5.+m֏k}>9sny6Irx{h51W}c&9i ɳov ^Ћe'֩vH.5L\ DGGljtZv:66y`A1'jm2?ߔrmݛ=۾k 9%=Km6|| U^LH9B <]vt%GATk Α#N])S0cl%+ tNO6zRŊ!F\ W1ϏOKƭ :9F7*!ykk3r.f>EN-rΖr^IuRZĘW<4ykbƇ vF , g)u׀QkWjob"v7YU1M:~A;yFi/ɛ3s \2&m,R H;b5awkplT!yYy' gt)͊|X`vMbZC$`n5hըvMczbzsKnoʴ|X.+{MˀxI}ցL.4>畂]5x-%GZ@T<7I޲%2z3)%X0R@ǞfW`lv}o1~g:o7//Ί[J |10% ^m0\,U|x{Ӱ]> o11ڎ}3dbn؀4>_XCdKٔ1:UWv׳uޘo͈ np/m9l8~r ;+%^o|}845gk1 FkwaS2mbe 3B@ z Y`\+`I~!MJmWYLƨV-Dc"|'c DwCW㋑F7z:\ZGka7J(0-95 STmtJozZ(1{G7:W-7!Jpzzo3O1c'qЅZ \t>YmBnO1n+Te=˒mMU]g ݱer$›!גS9I^j lOP&\e0,R'I6bnLeMCrⓇq=927Lf[K)Д.l}Jx1niL?N:躊 &I2!E49֟CƙTb1̏>3&&UT!pNRD>jLR|P$]K*Ӿ3Rgf"y3 !Ni^EDKNb[^F694${~~k:.5x _}w 8B3戟 ޘ(q1:ݘ#d86׫1f{f#Y$DWRoIĖuYUjƨ 1m˚!?VRjV%Hۮ|pZ1%e%BJ|i:DbLx}>|WNadO rcdrfX̰t w.Hyh岆C sN\kg9$DL 28e#B~7JSf0ZА)];g9IĨg(S ^d q08Z)fS9N_㲤4?6~4is$np!fXxĜ9QEkML~|IJ8q<}UI>&DxloLd<_JjRL||DUmZ>cHdrR( @a[F%8֫=ϽOb0x2TMlY;jH mpfr> 84x^ayKU4ٝא0eIwѻ3œB6j)lFHMj2ie]WׄךheoͿeDn;-)f=IߦMa3Ҵ&5j&T#t7eQdGJkJZnM7, Y (oV:>ݩfxbx1:0LXJa z5<G9ț1|[7ּXHpW!@k؎=);&jg+Oӊ] s]6W42kJ6'1[eWDS=(`A=sY/b4̋IRK-SC%ӻԵ-e!f8&RCPs2ݽ u|upeҬne=_\[(6Ü^߉nr;i<к3w<$! N:62ń#[DSrGiӼu0=ʨYff\8&[2 repѼƭJgB"yG SlCA#E(3=58GSZ3IΉin11 |5*_2 l/t_ p]hBVٶc˄HL>U)8 }f'%o6?JY#L=DJ.knyJx"&Ki`~8z:4 6 ^ yx%Q% `yћ"wfH*ƆsX^M݁# pA)a<fjg()QෝdpJsC9 ,/1sXs!h]q ;~D`%{2'u1^'<牻*uRO::{mRǁA@z{5>M1r}`v1O95%J2c]Erp1yU#X.sc$L>(!Lq6;gqpUI} lM9?wopfg^*Ǿ+f9k~f)<9efLn`Akƚ1H~k Eр"@$D6 (3sܯ;&ٚmSJg>!HH:``x:Γ5vxZr5&3*)P獐d t|Xn"آ,XkPϱxhE)OF)h if-;  1BR,CL[j`08`>GmM|y DƹL Z/ ]P}w\v{v7 O@5{^*q0?{@Zsi`bI֭=1~bs֭ ݆SL/a_c1ܾc_v2۳k1u̮~4|~W0m ~|iB%9mc?tݟmy^F|^[rSldJwGWH>&d Nh]9o3KmaIfgźu6crc\h-(] DDSќ}PsL<  hmMWzAkE!maI%@ɖ!yW!)L1'iN+S}L36ݟɋI, DJ)(M(󒌲 cfg  3|ȶ%J6h(1KL!q'#KpuJRhslzg4wI4*Jf R*}Xybjg*_|{|ʑ7z+<~ ~V9`&o \2~OQDq(fFbt>j<8H9"O2ۏȃ^+\7(s$F]o0"ѤID,|"FR0)WFr4}vi 8Gĕӳ'č;/p^qxR#M9N3#t4'bN}N\@9Lڔ*;iTI%4G΁Mj+(1`ˉm\}7ljF5ڮKOF93&d?кu(In 1PWbRm1A3- |Wo}J &IXt8vZ4;m0̩4)$O6_Ҳf2Q|jR8Cwndb0Tu7r8MάbnF7cjՎ7ή$@$7K!q~>L 7Lٻ1HT솤(6\$=t\&H.<'aţ@1TVĺ(O@ŮZ+/9r!c09GgnU.@h.69:qѮJ0۾Qf80鵳!GlCEo )'7}լ(9ٓmvCYɇ[`jy~yOI5Wib^j1ɒOd'ut9^/gg*bf~5zh{f,Mni 3IrZ#ؾL5Kvǵn5@J[ bLKzb4KZMjZI~hәMSJXdOY|64API2Pdq ‰"١9ݵjѭdy]Pd |-X)k/&\nob(=_7ASY}e^jbk{OALg)8 8Βk-毓Jct8ns).m;cޚ^Ӡ!D`?6`*PqL:#fZgy]\o a wZyh2K7gL&4Gb 6M=' ,9[ 9sd* 6Dm: ErJfцr ňk~p%H6 9o{_| W%fI~ҿdQ!_>y?TnAާɭ8! ,~%-kjq4d`Y8o) 8x>}hBs,#_L4#m,7Pe|Ts)u]A/c>I[eF=?`pبf}jk&" ۷ܺ]djٴ磚|aHa:'{k"{tNGt6嘬ʆAsʗuX:cB$h8;@Ö#F|c@2F +,o:@p#4[guC|p&kge@D̛L ɶm1;)Dv=K67-3'##_-2QGE(C,7d;~ 6M:fWBUBQ&Z O޲&Uyw܇& >یB&6MgfwIDbJ\ jz6hA,r-ə#{b"MOo2..Pf纪Mc;FWeqt 7'cQ'9{~>6 :)Ӏ}x\pMgν]w;CVavT<:<$pI a?L3v>p-LσЙ˙^I^I_Q5aȖhcT8<)E~2ƢKڑ\QoL2 c7Eg?x=?ɛx1Ef\dzOm<.e"KU&3&ԋ}IOo|$ T97j;rJL?i=D*>r7~WU.򖹮}7}3gM2㌆cxMT4mWc@>އJ)pLh+bAbrӑ,Y<`]\8;iH8'j؎9 @2Q7&%iE1A ?:yפs:U/ش=jNUbi) r񈭿HdyOZ0tm9v)b8{ͺQ! n |E9"":1&U@zPAJ2-uŵ27Z-O,>DOض5.x( w*^ɿ9|&歈 lɋ 'tLB? jmO0Ę+W>??I!]Y1!ɛOp}R|۶=wW)8YnΦLM^=F &SOzqTY|щ9(ƌQys,n+L+yf,ϗY(ð=?2k p;,[Pmhw1VK&N[^(\̤fkm @ ç<~W9߯zbMK5lk]f:^ߞ᾿E5SzfcL2x%AfpΈV۵UX&-@kf JsJ9Xцm3A;WJJO=}}`Oc=G/dƐҥAJ3[e{b$uazgiIT> cxh!ƘB 4yCr1:}M'GH.8ɘqhb4`W2ٔc31OB 9_V!h4Azzif.7|> a/nH2ANOMFs)U6ۭwjm=S{'C_ԼV\UA5$cs]!S)jzc |?s`zm09*Y`ry52Ihx ԻNp#!;zAZ3flZ_xI -i2ndsrSuU"9$A`J[֘KڅTMx\`{w[3Q;`<+)i\[:p2Ys`Imp^`\vw|,¨ ^ Ԙh+WdNW!Vyx~|GGcK;E/J)vR J;r<=g'(JWnPZS\Y/&JL[-'rvgjmwU cgz2qV&=YgM}J*B$fM%mf:J`|9z cT67xD)IU+Ykڠ.L=4^ƌ'oI=i߿˥;Z &bm~{ŵRi!Rb!V^ʌ>(:J4Z~i#'㡡g`PKfr/-QtKӾ ?9nO-ѬC {~#ao qeLs6"Л19+vξoJvrN:۶ګ@c )v2;sƙD;%E؝P [ӿ,y^Lז$'ϏO|}SU|~x<||~pcN=|Vq"*plP'>"y, Q֘/^H:Ƿo05$hSy!8h"90xn^ 7<>guVFfB>䴪D|5P!bXeA}IGd,"%5քW˒H nH )E|Jgpn_9 h1S]=BH)10\wJ<쫙EiKߣa -ݦGe9c+nߒ98k'Ռ=M[oׯFMݍZ˟u[S*3wXKɔ2mLjSXR=x')hN MrJsmlIb݁ҟ$ ꝃT:weÅqIK^5yN&һ m۔*9xp{sajcb^98I|_Oh~VLOG}Ib^nHi#vG&KjP+ *ql9C R:wqå4pvu`!ʔ{ڧ|&{!UA$@r^L *hndu1_zI SwIay|LSx?DJ* Ⱦ%6՜|1%M\5hlfOAw>xrag%7D1 B$DK~N,i沤y*>s@&J0Iov7s,f *Vcz#NySs0jϪ^o x';[ 7;#'&\mrKmx"YI1F}5%)G ?^_klu󅋁pH.dٳ#ɜe(!xG)hd4F"G%1x~z9ǃ뺨W*\)* L(W!% $upNy{ž&fҜ䜙SN&}>y-11n x9=yi4}ʯ%*i7[Sm8'8︍>,As9s:לسK1E\b$s|VY+ ž?i.uI2Zgޱa!lVhؤMh`K] ]I;>ܓ଀i+evԥ!.2kLҶݘ-0mfj\9X Ut}R(zou>&7/grΜu?] )$gr^ekN zIcsNbJ7кmB9-B<) u^j)0CoFwvK>_U6͓#&1Cr=d7!]o9 7ov]RV CxSaL'U'vp_}ߘ}5t9ZdK^ c0PSä1cآTk~b^beU>ÇZ7@ϴ{{c݌G;Uu^)3uuG@}כ<{}S}10V6"xR< a774,$Y:8{u ƄZI?2˾M}]sw-_2 mgh]ń[ ;ž^c;Ma#q 6fS݌1)xcKMu]*pk^g o=j;||d2۾i 2w_- >m}V X*dh9)Z|t4ũ߲+rԃc`^V5^5j\3gb)V#ǫpHșҪia:'4`9 [7/Kp&!r5xu׃ԡNbuF[&h|^1qq7UMN@۽ m Q!tj:Şǐ%K ,O^2?:KvQC&ôYqj#29G.=3Mz|SEӢ8xv(]U0|rJ)OZ#]p}"ш!|UZʭ7,9'JKƣ)Gu[qrU~ | ᨣ{cz[t*g|~AoS_m"iɸ{^g֧$.H=4OR!@Kbt:޹J%U om*7˥$Π~3|X3~H @VhbJ g jFXt\UYdǠyIm qu1di ,9k?8Fh^9BI@:^IZc3IgpW!fzq0W!g|*w5jer^u]>:yNCS;IkG-x)s'7ZUw^gs5b3gE^"1ݾIQ[բFO- ()V'o$ȶLo~ERp:){j-WRĻ paQyX~æ4%y;^S$4,ˬ̟kU(ZhΙ޼9qjJIjd:ih楸M>4g@G[VL ~w[`Yj ak>YX8XI:Ũ0UQw#pfU9fl5MwXi;/u] 1zr޹KǠg1;yxu$K&M~yELale@XKŰ,QigI`8'/yЎ>=[ ƶ\pхVڪ{_v(){/}pg ;ƽw9g)ż]U˅a/n0sޒjVqH['5jjnI$yޭabAmћ&_ [2 62wΛV!;U e z;f/ \ A] )ۤ9$i|wp3تeh寭:kx;H9r$Y M0'%+։eLC&m'n|Uq'g% Z*G+Қe>9Zڣ+='xGL;CųE/Tt3iBJȺ"Dv+` SZaE1@>fr&kp= cȬCϏBk[ktwRH2NA/+m&lG&'+&{"άMT0؏̖!A>Ws 7;!:ґ[dˑmDB۶&.ȗy(`w@z=$&0ʧ'ot]e NO{dlKѦl 2pfk=2?ƫ. n9ZRӤ]AJr]\MIV:\UL';b @H&*jt̂c뷿6RN:Yj)8G.cDty;61.|P314/$[ajZ~/tlN^%gFPMc\4Fi+'3iNiz0\\EP%HjR mYŞ=?=25\!d8w&љ1B{"%Mf/EScYIʛ$k8ywfkxMÖ(l)d?BwǶ OF0/yrx3E̳j㕬"FPQj&sHڝY!9cl؊B| H65uQ5:Đh7Pdz]b'\ENY1QkEyxѵ_=vc:!ADʹxjhdJcR% n0fJRPk$IZG'@:y>?II<ŌJGzؕnZ:^/&Imb:G+/=Mh!,1uczoik[ui2ֹrKɺy1(=2ZÔ9:/t5*mJh~=~ 6HȄ^!h$c,/TKꓜ R7m𸌖bGɋ [ 2fmEF 7^c z; \"4+u1&9K`Hi9eq `:^g˿ þ  < X~ݻ{YzP#st5 = niŠbL1n{+ {mwFp Xy,hďL7 5ٛzLs{5x [TLc뽮d-WaoK`,7kY,N̳n@.L [5p c:LBU bk JHg^<o`=\_R:2Ҙ t)󘚖,)wf`fF)-99\6~@JkX;q^F?6\ ~J&ւXHM#wVZoe:k JXT9$+M)8Z9Q6)') X0z?xuIc4iĖ*WԢga8uF,dޞ#$[ ILLⷌp1'ǁO7O(c&3EuL*?xgxIJVLwVMq:8= v=|{Kl. p>s,kp]>&߿cLx qޙV4JجdjpM3δZrC#f4gE' j*Gb1t3!jJfƂ/)B!},ZGBW$4&mbQ DI;.SHmٶC s:ZjmZgIz<8k|rd>%FpdzI;)Er$ȟ|"y&d,[*v'DRmKĜؒ5;`NIOvbMZlIR✓Yy虵jOʉm$yfo\*.O` T=UC&al'd<ٲ@9%Mr4OǑAOxʠn nm%M0:^/zC)U^yL|ʏ zNRzUz,/֨n&1ttU: wUOo<)zѰ5r Z2LL*9hj2;-* AGVq^bǁR+.|}D󼨥PZ#naLRj lQgw7s=d\cAi:7R{1͓P.D>zu&j`,aο_$ 9dj-eF֙1*|`8I$6+p/zI1/_251+ lvbɶ$n5G.^MGzY&is,'1+`#rdY F_ޮjVsz dV5@f~7vjfb-&P(I ш$λ[@3MopiykMT}]_:~hWVOkuqɼ3Iy'Yfť\flµL)m_[ΤQz6`UyJJ.|HwQZKiSp=k``?0۪S>m߼XҸu^ 7%!~vb*/O%Gyx-s󘑵sMd=>=T_;!enXI֝ɭZS6ZoVxN9y]bOT3T_on0lu}~!,7(ۓ"Y>6]s/ wY @a wJq0k@f܏Bw31}Z6,7>0Cx[!x`R쿨2f'x'+o jIܢ Ӭ.a{Z7ƒ=G9Z8չw6l_ا#!p? d 4:A !BDgj#9gCf)M E.SAaUpG"/H n9KvmX?,S+}W)eEuTfz 6S_>m2,nsk*3yVf/vU@GcrMmn'ʀgƜMr3g'i;M!k2Hdp>;Uࢅj1y]EiT! hlL'L:@9yIꥤ9&[κ7JJעm{ Qs'@Ss+xhkӄ?&4y%L ;7 qWp1l|~p8%tڹJ%Ķ2.v|M,A8آj}{@/1xRԧyX!Hzp]2:97Ft-,Zӕ̤73)f_Wꨕg|5 UR7^7}cg}݇`"CO%+^ į窷F nX%OÍ! >z --M':F] up@2f$@zbBJUI|WtaKc2Oolo69I<բ=[TNQzN6Wͽ/'|SsTgנb:^͊k fapPQV4죀r#pķ庙 g^lZw= 3`eJ j} ވCw$vcV/{@3V3Lk:OVjMQrop!I/tHgiIv禛d'9jAq AJ)ݱg9io5);1^1?WR&'NXg G .#Txy{<̓ Fg8yY&z+eI%rxmo_;^߾}c CeGO`I!mlM^a; P&@I*d8>ds5wdaR45nYc%m^JYl.Н>͚XhX[LjvVdR^{Mg4e,9E'zLkTc齳B]hvLΕH؊R9:u~Ect!d֙/,WJe\b^_3?~bp ̒;mlN:ze0GE|1gm ݀MSd$=Ojyl13=|p|1x'=A}&h)k1CPZ-0~NTs^J58?) ^pgiwOj纚xKcxnd+W6XS}(ۛbRxtf?G-&c{~>(l--0Nx#i>@2nqVE5 SBk'87L1q.F3}S`x>OllA=+a F [K i'!P5]&6 h ߘd*3itzwlF^NГI)8(ЫޟZKD9dxAJgkX\2c4cl{99vlBSҕQ`PsO08? y)L! ;ϓ>tsP邌m0r!41ڜȬN w>yv>.5 M׭XڷP`~r}'*BUFCh=Crɓ}85}U轊={lҜ3n KO|͘ 7u`4/qgq8zKg Db8.lic &ym̦gu-bdd\ 46rTZ<4дPKh#è*"C|>_b́nѴW#eo;.Z^t=D{%;#L|'I8}^3)fB yuVhљN>[1eb,̴;zhEQa"o?"R"n2~]'K%kNyKR駟MZx{p^E4l}V)SHy~~lNZtc4T'߾}ƈAÜCge`T 3J @b[ד??|=6UEzǶa4Q&܆Z?x>2apwm0`S23o0ݠ :336H圧um +Y3hB-Lთ$]_ /{M ›T@h0V쬄՘9bt|yIm%Ę>S- ?\Uvmg-Umv7_$YBkcrfaT^oRMz>W|;M ?A%~b2AJ6=J½o +DWy/ UQsXّx?}nV{`&%@nׯ0 R--h)z_`hla: Bm׽Q%Sy%J, TMGװh ?N~S cycs;,wJkn!5-4V͛ r(Z2 k10j@bWb=Oki *b@WzaJv~_X]$2Y<_/ؗ/Z0`PyM6K,\e7lّZP'hȘBiE^:D Ѧ$'8I1Ѫ9е|2vDw&)>| ׋;it#SЮl狰eV*e$[B]%JR!vE+fVH9ʩĵvUsbD<)'Ɲpf[S aEG FΠ|>OZ1 a~[< io!'zyf`s>0,J@f9OFK<3F@ggPDu~Ч'FLP5ZfZ8~5{^GmK?hg3W=y~'<[w2D+v˜SF_='Q2Zρ-GvuBC ."ĔH9&uSc`jDTW_>$Y=LN.^W5B~YZ+Êp]fj&sqcC l|z+˧x4 Jc|ǃ1:zFXĊ'8gX9$l oGr <Jv/_ϢXa܉%ᣘU: i[oAxW]xܪWZ&/_cx|~oFpɳ`T!yђ1X tHZg^wv D eNJ')ewa c}yOR? [:<̇F&b>%#uN>gRjд+u1^1H!|FճrYA})qm de5@]_Y@J+E̺l@Z (t/pNcJ~["G2ILB B'!ķ7 ̼ҹ(Z|7[еO114/ tYPL"n RIaM_i?Aå*yB>=iu͂'||(vJ5*qN9$g!3yT`y}(ʗ"9P}Va F=iU 8[GM{"ɔ&k<[mJYebX,$Z޼BfZd5Zc2m6C ssyMYSy')`x&˔^E9l@G0b0z]޵b~MCj"罓Warbi5ecIO]ѻn[&zTbNcjQ]RqwIz,1ԝ[*8*P9I>pKvCy Z= Dw#zƿd|u-PךZg4AI{=~ *9_l׳RY{/{g`=),]o'],KF=]XCD]{zK̒+b^:3[1!ip.&zgĜː}t_GBEvl/]?wݣ9%Ky<~(.ג6. 0{9of ۍ[$hJk=ϓ_qƶm/3fX)^g잆ܳ:w%zBhnP Lt^ 1MڠNOC[Pjw_ĐyI$ q"0.L0YWk91/Pz^O&ͦ3T"W ucX 2(JSWZZs50<#0;0_V79ζgr $YϩR0Yng@:D֔8_ :Vg%z:Zfx{t-ُLLЮ9;DK=N נHER'#zd3:/ƽaAEoA# KДa b,_'<90KevQ9[{51@:d@sd;쬛\00&[H@:at"j8pX}hu )@qzn^6S??|ӹ^'dGH ?48#3( jm1]$\?ʿ"uLZW*sc?g1͚r^?3uU11ЫXޏɆTo9k\/`DrN"c+PpD'V B؏CV5ɒnۆ!10&fpǾohs!i@)VL~(PÕj%vjmܒ6f,t䗘tuy~;9y!\Lf(-6 =@69[b *ۗȗLCD)$P{|Vf?{c`N4|U5ZӋ&V oXR~a:)7w RyLp 8z`[4yJQ_xjX yHSkq> 5tض䇫 Q²oNɿ2R_S P2[', Ȳ $e˧*%k/d?yi;+Pd7H?7qf㒓Z鳱?!8}J2uut<_=Ȍ12ͭu8c;t&_$?Q@FmWnFNy!9kNPjx-fK4q @G &S[W^t_q,(ZR@XIkfѽ/",lk7@#pX/ zypz헟s(<~՟_7p6o[j]"|PpX.㖙{bj_5XԌԲd`~aSLc|,y70}|J)JRkO O^L>3'\>f3ė%wKg~s!Kj1&c({3lp0,޾oǾ)x75a t Nנ gFV._GF<YAf{H/rUWlfD/=%r N̞t$3IqdOv5$o)y9WUӑ!FŪe%Y9"Ugw~ )2,'zJ)+'۾Y3Q-!ynm?(EN[3#iҶ'djE7i5[0zMq~=?Ϩ'~Vrtl6YJ ќ<1Ԣ.8:s@c)PB<-??ߘo:OڈHFؼe4Us6rMASڔ)_Ôwᠠ OQ`vraȜbĹ9*57wм4m;>&b笝'c4/gUd; >}Qp=vxr;uqoo,~o:ADZL-]D(^9C5!y'Q0n`cϖꖸld/d;7g[SE.Tzo<~mHD =pY^+gԡճ9 _몸O%ã|KQϋZ' ;Ƿ8)UlJ+H7T'aj 2B`Ė3|G#ey NėJ27|.Oiy@3 +Ry7S̰q5t|o:Ru _qJj$xv9A}#;Sc?>ч?JtGI\$|?OZh?4L^I9'[p$/ٳ}K~xHcw]?K͇[N缆͒`B1K|,fA7fJlI1$5jb3cژS[e{"3jKz+E\;)nU6&SGobx4_T8e-M hlm@lI֐4x'cGHu|E<iuMI4Vp6Qo7xW8wfCHOkx$[44CByFf5o/i@B˸ݛb ^Z[#FeL= @i݀+/v7kONLSB3l%bPq]u\ﮛ8w׋_u{aMt땔<99vYs(f qPZA&f%-B58?GǾt3o~T&a֔7dž<ϧnm(?=︽@>ig /?{߳O1[fT}p>?.i{p[+18Dԋm>~_{m~]ow@v]glbV[b|3ٟҝ}'bD񊻿@4w/̕V ]ImXIkv_o֠<~jy@f!_wlٶ<׈3U( - ~%>R⭊"EMR")DX C앙3"?Z<>{gKD1zo]#Z~J[W׾1Ī?eK}8'.y& o@!s7㫙d<Or]b;@qbV9o[!0)cr49I0sfcM ^V{gc%+9hƼ !pfI_8-=ou?؈Ř,G-9:krB^dƆEWdQEOє1??Ŕl za]'I~d_=O4 gfs9->14u/I,n0;1MlԓR^4q^Tˉ&F \rWӿ_К^F5%PΓ*:ay( I yKMoBZ(</Ъ<6z=R  &G,d`,֥@8 g7xc>UwOMּ<| C/VUWLu9j)LŔ붨"mw忧Ww&9" bX NoAN8;@ID)eR_ġQOx,ZV5΁a$s3j%Gϒ$ˉ_2˚p/wsȷl I=LES*Xc;kB:cYI;U=[10s/h?'C^enN&a%.VoTɿg?$L2˒e<%X%ω:oϏά$vbД{?ߒ#0"d%uN?>YOfΌ`vNT mA0FzV1b8t٦nV%+f8SL"qb|7_I@mͽ7c:ZqH)[7JC^/UZHKV[? M.*0/ %䔬hwĐ$@&9Ż I9 LdPbF^yK(\L:uV 0?˼>݊z[w?G6iUXWlxYH0JMϏw( zϣȨjə> _{tCARc5kFa/C2Gh5Vm>9ar% z/M+Ro=`w=7B,r,K/eCU2Zu4 :0/~eeɲ$O%DB˫OJwD-0ùaLhFM10aE]H'<:r?NeQcқ.XYsz^ѪNFyId? y+;ZmY#.gWcINoYs1:i) /xPJc<1;j6=|C|M%})'} Bt 7X65cylǁƋi>::{f6Q(Z|szhy$_ct5)UyvJ`>O%GJNCI9~VJ;ÓTh7ĺ+1]`LM,γ9fULxF$ (}}^vW6>i Jz'q7&>)|(fN>>1du7)CdvMsVXr'#iY8_Ɗ)9/χ-=ӏ7T/oF;iIx/'66+,XSVa+qOA]%f2Գ5sZk^1W_{/S&:4}hܦ)$vQF&γъdy8z'^rRN NuN7h_K>ZĩCkQUX{$[ǶћǶ)l^Gc$(`/m6t05 ._2ޱhQ!1F%A)>ΪU|4LQ@b(2QqnuM,kb*Ҙ4G|2~ Y$(B8ĴN^-g̹Ve블Fb:D}W Qf (;oIq1xlvI9s~sJ='jLzoC5D|ipkZǞ)39P81P8M\ Oi bdxO4IU^`.*E:Ye]5$^ } @hBDKQ X*g&Ջ)r%/AL ut|np$E$ T=MS3b&ImO d|*m+T))xr;We#)BzEpZh\<=+I&)u뷿2Ae"gL$EEΫ+1NR"!_~l4׷B 72mN{cAlap2]buTRYU5&A)ތ9Uk4.[[QCkj [5pv1'W@B;|3% :翚bL)K6]c{4urqWY7&݉)6&}W{L]ыP[ {-a.v5-`SvkRXWB%,<d,^uKt:n"~2Lzղbe^WF7_F2^^. & * %䠃s㠔qx1x }c0NsTc {1avIWKՐf,3&c7ͲSd]V9 p_mZ|W,xέޕ]dzޏӱ6ܴnioGX^379!eG^Sqe,&OpԮdQ{6[|1B.;Ezg9e]81h>iLƔ,o[2y. }9T 0^ \}zskހ^ .p}/5{r?k\2EoLr3> =ך]}ff>1&(s%g{qd] f~w X1̼k>$ ^{-e9g} Pu=B /ۃ1$Kyy/u./mܬk( O! ;4źnuUye:tdnVL8-J? 7k޿۹D.?뙽/4õv}vIjBqVA:z%Rb8YG5yY7|0`8O7 db hEoZ|L>؆RZa7"Ne\;cI}0ùDZoGU:JL^:,OfnyR48jH|>_,pT!*'%ˇA\ #Gp51Fe[nO: 83$s^q:x9%S?3g3yE=,o2@Vg%UN0Ge Nv5Bx>A ֶ8~6!ɌhE)u\0D"d)H;o? I.}^os>'Rsza1zN9?;v+V=.3)hC9:a4|91qB GVmM1FoJt Hl>1Gm:%ٳ2o?IJZǓu cd:G5i2ʾ8L z-F-1e+//~~~@hYLϝ)^9D0%wuA 2g>{ɰ>iSzmD;bHhr0h~=yl6k:%Eϲfy֡h̜uMIRV9O51gȘϓWaF1d(~O#̎{9)Kb] $} % NGci&3/f{cE50Ud_G)/PxgE̛C Ip/1StC2.[)Gք{sh^1Ĉk u;8<OƐb$n+ؤ.e6yֆ_(,)lMr#.J_*g!HK^J;e?LKJ97:+1 HC`f 'W'D/!.'՚TsCbuzc(r&YIKGZHqA)~J[_3_'9?\%2v\ h|n{ᵟY)#?D'dYVPy bD' Ⱊo0Zr^U|]iG|`?RTΓ=tӳgβdMLgU٪Bt%;X\ wOlW0^, f;0L^ݜZZk77M>jd?'oˢT(7 =i=!oZ!ښWB4F̈́[XDg-5:`1U^}9|tMB~cMRZcrvOg^ʘf~}^ܝ 3)}1&`&!1ĚVOڪ}`X> cTm%@s;f29xu{^ZӹƾLB&nYc:&njsJ,bPH!` !LIC0=9Zw IK%:Y7jL! bʚvB Zص,KDw SSsxqL̺H8+s=eaXɰ1{pMm˹7t|~5 QLc(βF'cpb9IkC9dS فiZdC(!E$Ct̔" DqO`gt瓰mdˁ5xffinRKgKDck8&.J8d},%OQWe/)T%Dʉ;aY&ǜk9Hz{.d5  oxL(m?Jh#uN&H"|4i%/Ἴ"j9~rҽf$R(%"qVPB 5ЬvR9=a 'nl+iB 3ɲ$] 8$*|bVgAZWɝf7X݈tifڟӰ`}>x6̵-#+Y?IFG;NɄYO8NٞdcyDiFQ2k"Jr|W3G7_ ME<#q9y =Dp Eo]]>g-<g$1ܜM^hhc?GfdܵO9ĀΑC"(yZI1n oe]Xe]|}!gɫ6rLlB157yHbL4%P@c m|:] oI1řϑ_^W syO9 T}T7 }sQ{ ˌN_O)chqR)Ĺy7|Fig+ш>+1}I5-XI_`}5XִFS&f=hCqd~ ֵ ,Yc}_KTGweqr U}y1i%?7SK=pJՀ;<ǡau%Ǡ.sE`~T͵6Md>%*JʑyQBTs.W|?Q9Őu yWk8+CƦv/jYoJUe]x$%-uy쳸i1}b)mSlSpT;sx jgJߏIlBR\lޞѥM0o!xo,] 9.H(|êѡ{k]Y3Uܷpt0 (TU޾|,+ oη (s7u n6 qySuqJ/6wl @ Թͻt15}JԻIgN03OR Cr-Qw'W^%&bS(sYdxmWEl!Gԡ 95K;ضUQ`8TN0#5'S@ +} +{kc8`?'g/HkBo<ʀ7j5s~ i:iQh,~I-E8ϓ1@0^ds&fjPX:~NjmYsޙfX2!*vAiBַc 13hz^2s 9o=<併ʟh7J\GyT6rbG_B t5DG;6Nݒ:Z`6v@`FIR;q$F9 >~H޳fGb>/~y{S\%8%Iq'@̧(GcV׷u+ɤy_ :mW zbU_3WV!41gk*HI]ΓjJhއBDa/NX&9-F5w}99Ҹ>C:7ˆW _0n&hX[3{0b1ּ[gRs&&3hM4_,k \w]@˖ i;fo,kbY3۪-<N;!1jĨ],L_sLBhMF'5 VCG/Tmo뤍AL{:~$ZamrTF p%$3hHQx3&)ߕoSe|U f/ n;b89`8Pqu]YE|$xj(!X,$!Y1k&Q2~v%o: a 65 &u7, Rr-Gyp;45FQ*  3<֍Azۂ79yJp# |n\A1ac IC򴘯R}vpT>DWoꂱS!MŇ7Y %,¹ CBG bQ]I$'jo GZSx7*B3 Q $R>h}2wAҴA?j$:5xҺB-FkLc^c%I⏍9.&PȲl~])=c8g稢_6%iޕ\_;c81xwGbqBD)JV<Ơa{c#FѱClKYյE,>|EU%KZğUypS rWbXԘߋkNm+uG${@9,5G\)wq%&c* 7 H\R=ȋjC1dΉ.@RJlqV$cݔ|^*ćҊSF;Kš0ϙ$8 0&Rsury=YI#ۘBLb _3`|X؞B`σ9'mQ*'6pUԮ&5%R!`tz=c4ڜ>;hb~SkͤW9WqoJKsNrRN΋sc4])_ ]&Ss{3 o)@5!c .vL-Z+ujܷyK0JXeWI|QW:uј5{ 1q_U^JA5x|֚o?ְ]^<_ XVZ9Uo1t1򴪭+*XH/#p8O| ڢ(ohu!NX @A^Vp||H7!Le{Pc?8/%9ϢU+/#2c.1 @^YA.m]rV+#Ft|iIu z.)֐h~~Z $o7[J^5˯Bk_BV8 p?|>/@h(Rj'5gd8dl!6 [k=@GXOsӀi3;K_LfpR}|#cXB٥zagvQj!p3lu|_Ol%0ι"k2il =%zIѯAUǘbcy3'w/̯{ ٰ ^/hkp xKJ9[x]>V8i甼t.[w=9:7ykeG\ ( R,?T+3On~]TGs{]Ut[f9 dE7_LA7usa4!L؞?;z [6. rd1>?\%_2 ӄV([2Oǹ%Qs5/ g/tM|~֔L1$穡Bʘ*zUޱlQl8I2}p~zZ*Ƅv6BuÈ9蝊VC!%VTV_hMwG# VV^D`[믙s!F\%{\GL)5RvZo8"! qÓIo`joi1FZiNO'ah8=.dZt`05m-TŒ^co xQȝL+C,618I^JujM)*$@=c:\l^ ;ǃ4yc}*q!XMI^2Yy3c.EmcdFw,)RG~QJg M[mLKL[t䬧M)&g?ض+L2*1g L3mмwl[f$+l^H7 VZk2%'X32hlc嵐üւ["nLu Qg4Zp,1kzl6p7~]n\T7Yb l#GN 7hJsq0= >H7 gmg8L}~Ч=Sə!P>Ŗ*b)i+&y,)L%=ʤsa| lB!o8˦%n ~s'YJpj[d1e47hc=8* g;kKwp`KnŖ|zWIKdJi[E4wkeY8ϝ%+ky<$6&yzYW[5:Çq<=`K& >FZ)hLmI@PhMHw50sP ۃ%|~~Һ$@ޔjU#"CrHc2 yIc]&>O%1\Br7 e[=LE" ѕzH qsJe]݈kƒK~ Cn᫃f^ٻyoboٚjɳaL 0&ZƳAFS?`џ+mzK:ȼAg\_;ˌ\7fS{ڐslp۴wI!7KZ%tSXC{gM9ki 8| yv0/uM|v}y*^r<'| R׀^R1&rD 0$1{0sZ]4 JxMaY6~yG^LZż~,^I]´4 ._#1S"@)6]z7:S6\RO=w}mܲq _Ӧ 2n09NQƽ|<)hx}LRsZ% #N'WDf5/!dj휥APieIpWXIozϊsI&crcpLF~(86??vfYfx1Y@Q 1HgYU9'h|<34 $)dVQ% ѳzI6I $HK(*UhrXNJe2`mG# ÜJk*szi{)-%2 kI7(H mёOy @fN^"^fJ&t/3Сi>^ibV?mMIEu9>]V~vZd{:`h8䏃<hxQeZÖ:ؗ>{x*8fJAp;TA?^8KIQ;+amxG?5+2)9ɔD]w%(Uƺ&aS ٶmr@q9oJ j!hM,NJ:_E>*qua]VœQ$ 6T%0)}dʖ#8ƨR}|網兘 f>^MVmk*^[S*֜r`@LmU*N|l5&8hǩb)0iU* /Zs 9˺H:شGX{^_[X< #nIᮧZm[rFǚLJM"M~e՘UۺiVNCǨv(>maI&Ok%>fSb+)8KwEx_O*cIʲfkW#} 1ѓBIu3uQ.&cch%]kMr~2~wB)qP⭩RȚ;5ُA{֬9iny]5 zrZis_9x︗9 LO2@󔓦ߦWp2 G5GU}_ͬڳ+3&)Mfq_?g)xUp%^DMhjӭw%7q%h&dUD`Ro5?_ep7E|ɏy\qR+!5@ɇwCL9Xׅ"3xwK&GO}z,|ZYYVyԝIo3Z+3MvxlƖQ5`q ]MᘶtBL.p'g!ETؖ`&uJZ]C$YyVyGñR,kƠ G;^;FTxc?im}C9bc[9Biw1.]sBD/4 xѵБy=FnV;Wb'{-z/z[wn ⅌_ڵp=&b2@-[gG؎&B+ۖ+y7.%tCR}i%գi\f2o C\ cZ]2{\a2}9clpױ6TcW"iN7v7K]!0~lI_2ċaek۳ԘS5n$*ŘtrNu;M6%*3oW}w1_>ku* 'czJ2N* uR1ɴ -lsrkwwc!sR=Ӈå@ )hR'y](8NMiQnX<9:K*c@nFcI,9!S.C)tb6$QT*WZ>+>4YޙcLd {ece Pr'=E0kaVNl :ϴJ2o}0${;/Zzק1bsH#Afp87꺩K"rL7%7OUM^` ct"?iYN$gUbㄶ1'y F3,8' `$y"Q*ѓDbN&Y_c{Owhkk,ۊO=,t{Dik!&Ф%F\} F PgIU51xbTu?Vr7v9šR:NDغ9g}=)b&c82Ѡ9~4&)˫ٽ1:;?~cRYk6N%vQ)$vrR?p|Q ~[B4#Z) NgiSz<F9 'װ49[15Ze]dZ=,=<~|e9:{k\ w1$f\)+s 9G'GK¤OG)'T|o0db[K|08AWj21 =ٖ%FB9f;իl T1tqHଠO 4|Jin UO)3cfk29ӷuC&!G]= G sJ[v9.V٭`FjY$ӱ=nS a䍓>c!bҞK=̲eUl$s9xnG Eix_5=gϷĶzrVr, 9GҒ}W^yy,,HMvQ1h8獄sp؁t΋}q!ZX!yo[Fg3Ge8`⾘T ᅳPo!2HF$/-WB@9%5V.6|Ѹ:إO^\va{]7cClxz]z[ ҆4`r0LWo;gp͈79XZ;mńvņ6DcŠ7Yb {]cR'9ISi`ݨsJkL!} GCՌccEɌ^J(s^`QYW~A &W:>Հ|L'mxS5A1þE@Mme26-e%_lޚa{&94xةmx=b;}r3@2*GEm_e?C&yr~~@u &,ħmXYϷ7R:LBR H@rȼؗ!ӽ[ĔiM=#'!;z$iM<~:Di@ |ZN9Jf植7DZ3GZO4sj$iB bNnϕ:}C=8bZw:xϲIԞrrh0ux^gcîCK6N9R wY4ϑR ql(P"i,A4?ċ P@U9'.QYM3!.fΖ3F%o5 :cHq`^I38\N&LzCh^&uWss=[ٚfNiHo9ä/6Y8ɓ1ToFxgЙn?~219ϙ΀WLXbxib_R)H낋6 o)#+wsrTQ,d˔̧DŽYO F5q 0;Yш TZ-t3F/s^ҲV"q4ANcߍeėt9Dچe?Oy ǫ,dN; @hsIBOK\ αȒ8˿[INsWͿc'). )stz5Pp03RÃ"azV/ -cL]^/۽&/=]׷ҸnE 40 8xܷuGNﬠ3YBa*I\Rs;cX ٤ kCu}`t^1mv4IDATmnۘ^/}˄_A㾎vӾIvv9=M1uctuX{XȥV/f/6s KWBMZo׍.3q}NPN;GB" |n`0af0o^m tthJ:n³h*5~}LJ9Yi C;1H0o ("%ucNj9 X |2Z}Ъ&GstcLB)yl>%Ke:\Ζ&w'@@޳G1֘1G-'IGdD:J!5$3zP]Be,_p| {؏R·ƸMgo++ ԯy!py]زLt%.+OjĜa 9eYu5Vm9M>@ VD$4=}6BW'Rx}:^PsB/0kRrLE<7wN2* ȹ!?`˼*AZWZzR9~O=o Z8)lQIZ%\<z,#f}hRDMχ|r#?29H;ޚM`ZhK !`푈a(g#o{K^tE/$)0c A)Z2`QӬWkxd 0 Q25 AˬT%9*?%nPܬ28_ )CwQSy! dt$ڝ'lvY#(). YIZʒQϛу<+ök ^ikHBZp YXĥɦ51'Ɛ){6 DRy:ŔRKa5ƝC2a~bZ/|24ӒaK~$ )ț@;+J;62xK3nj+@S>bkEcTZ9^|~~X0ĺm:/UU9qSleݘcw%x65&)FqCCsZc>z,KbsRSڏ]YVp_&1%a k>\p 1>FɗoS DPCs45|9wJ5ݍXJ ԳQ9cɀfsܕ 5B\ɷ+ܹ:\L pw#θ (4&|?ZCYs/&wT_q! b{36!e pSNzOH cN$eXضj $[lC`]סT"H) a/ZhT+I(D/:(yVl5Vڰ&|]eMzՁqލ؅D)$s4rj9SX򢐚aIsn+1B-L>0qAiM#^mZ^ylk8/Jk/eJ1o{眔l1,sΩPٹ7e%r*q=߿<]`%yq61_//:p9_3d"$^//}_̥oO@lgD'ۯzZ`'_L7iӖsXŎKH'1pMV^1`z/ɜ>P:` ɍAS=쥐5jtSh lsX Kʣgrx2mj^> s.e&9O"IG'EVU$ X;V&^6nmى}Q $xH4?D=wuCINwҶc۩2 $p}S5I!WF4<3I|XaB\`nt7:iMf+C̼$C)ᩥ<#g_sVaQH BW+BApߏ$h[81}J|)k|V^yh-H+Gm8%E"*z$/0VGZ!;9%SU!n'VTh.zKyH! m(G8<7mhTLp IaN3Q㟿\$ `Mȋ'UD'1Hr9-6)t穵5'1FJ9)+u*8]i>AUpV ʒ3_n$-$&;1Fmbf Uix}RR#2'~ʫ55~2V5v8=MEM54}3PmܕzbɆ@LhBShJK%D/bL&1)u!3Zc>Hs (ލɺDR28΃'*VKR̒8^/R I24TJʒ9Y/+9&yN,Ě1Q13nPbe!q1x_͈_S=0V&W|y^ f<7SniW<\򄺼m^jҩF>kxy4j&4mo " gUy9,;-zK.fߒ mr~b/9u:}bk%ːI3@k~|1n\9oL+ކ?קҐ!~yXdİH_a͞n< )+&FO)ZM3'YV%ꝧ?>.yל-j b& 10('1*R'KJc.fNYe A_y㱬xW)SjwgR~TRHvIk=0?fut&.f`@^39[&DϾriC yw&>yRZݤCE)$QĈ /y,t7٧@&1Zd&aG˴}V.i2~QkQwyrq& (I;qYɏ̺xWÝY8KUbrf1=YNRT#nʻ<:EHvLg{l&03Pn5Q ۖuyǹk?F3^2@=!.'F{?cr\V~iX8󩉳sf hH{e9ߙpV!`nBm.LI>}R7%%c>OyjTd08{wY0]CީpXWI <8Rx'J&._Iߔ/NqL`0.65Y ofT%b\ ^ /tdb$jشOޞoĨ$ޛNITkaAJ?J#fXx>|~8]LI9S{~2xujm,|}9ZRlK_۽_ rc Hqjy{1؏]uۭˊs+4|Zb/2%K)kĶ׫wk_kI /e'qeyiSz1g=|p8^1xuw;4+|'qlZd}}B>_2b~%9 mВ,CuC{g) rINػB^%S/% QG $1)R#.&Hv;RdX獇1 i]O m]I)[H=9`8!ufԜohq]Xi;%() . N >5E'me88Za Gi kzXIqZg_ZcN" lqIN(U>ama]3#*:3I9ZHn0#nh2g61OXJL gb\׌ S 8zz9 {;ٶr2&c]TÌpl&fN.aj 1p; agt|k$]2G̙5 މ 뜼Rdyn%Q/1qI48(a+xȎXt0.iF /,Ytz{89?>q&GB yMg*G<:X~8Q iRu]H*=|g|<<`NRp}򇋉G$c"z  `WQ2m4K9^u\<# ,BqQmcdFwuaޡ4s?dF?@t32V̟6qh*m"vS 9Ok)Nj幊Yu6zp6IRw*ZOCTO6 ('x1<~$9ip7dB GΫ̣SP#2҅КCMNke ȗ3&hY%&ȸ@& .wB +1gRNbϢ|mCBW`H5I}V| MCcx Ys^[b@ΰ&,tk r2o 3#5Fr֐; 9[LL,(E;dompcyDzb:ٜZ "H5^8nƕ3h^JUus3v1W߀)y\-J{kV/u7b]BWW#BsyNy z$pw};k?]) P ]㵳.+6RNeƺZ\A9gf鲬WNf@ Cjw k1F )J4As^wPP`Eb6 {~xZ㬄89J`Ş2oχ^Ktfׁhu,nxyBirRHUύsqBHfg3(Thgs:XmoQN BKՊ= rpnƒ޼.l%ɳ?ÒGm;e&{|(z)fƼ뽯 b{/@_Xy@{9~{I<-ٞo>j?q'0KR~K%Ե1 7^~D`K~=TƘ V}^ʔކ럲Bdװ(\p8 yHZRu ͋e8P#뺙Z"ZRL?$oou݇ 5pIU MVP<mY_svR^9ϊJRtLSk#$GD05i3]TS(1j8l֥pT@x/>*1;¶ W)If1Ų8_sBCNJ 㜘Z.y^'5ch<^ b$: 99p!)~9Ipm ׋6`LϲxG%=VJ'-5BCtR*ɻJ*n=#ˑmYE}~$ >JçؕS)]KLtMG^LqA`d1g>>w5&obJ("ƒnB=svF/wN^i]PzY^{c*H )CWP!7:P{ɋ\L2D&y(/>yl 7rZ T=͂:9Qxv8:l̐i]Ib/ Kx˲ʟw5ze?*y^-N|:J)')GJĔIE,,t֮u]؏ʯ;ur 9Qg'EjU5=G K>y1Q-bmӶryDa c0@N5'ј0^L( LOإq„ hk;!DmAQUhΡc?qLvHqCSRWM[Β"dF3!dKeI`Ȝ?3vhJEjX"f$ĨЄ阽|n;sxHw1K21LĨE@"PR9J#w8>_/ąUjs0KM2cH^gaI;1cU+lS hj3K] zl+TYUњk)BKGm5sV!te$'&⒈i~!f bo䠄}g{G!\2>:'~GH&l!I풾+*I~j^;fo:x=hUuhssǻcM)vb\ֿ.m,]g H1wKdU&(m(Q"2@u6'$ء\Ó(%|V x?͸nƏUF.)%7C﹥h` Åo/+c1/AidRԋE$f$9tdoftw\~N\ W;NL Qiݬ#sۧf%eca_1`Fo1F%|YIX_N]rkw500 /3h}|K›{oJcCį"7uY.swSNk:Sb壪1>-y/Yد[H.:C${sTɢSTVNv-cȴ%SMg׭'hsA)G̉e;Qܸ\ m:8҉I(w6ripi;8ض$IפN(rg<4~&C[|x:ҹƘH130J&/KFccVg΅ˁ".fj?atAG51XR^l5ٲc<Ă@SڦI1 pŇZ)}7q@ZS^X-η(> })X*}8츸X1@m*X6[s9ᚥxdŨ:g@`[aA IshK^ zUr5!1Ŋs159Xx)n8lֈi<+u6cOL,!WqWÏr-GM૫ q) i5aY=e|< c+$u>:*m3=1g>^8Qb3t]68OpԦ{dӾ='%>rL x xP1Ob<>J=< [d.1'a+xʮ%]*t~sǣ b`_*XJNtvR0N= \Ϯ@k[*(9eysQVnLΣB̻x3`Y^@߿?y>v*(ߣ>ErQII-m64$;'~K"O)ԊwN UkP66P (U,x3-)6)| vjk'8xB?ϙ*/OVjϓqsm.?&į?1I"zš!T91Hu-L6RefG5eTN}0oZe8sib-Ƙ 47Qɺ|M9L()wNɇL6<<{ @IyM롤\)I["o ^)ϊ~bXyIP7bj/p]Ͷ_[@u7+Fd Ō26tea9kJ`+!kEx:A>]@e'. Dy>X&f>|);w|kLM줤rLI.[؄LףR9/eNə&up-yZM(W{P ;R H]&93~# iR< OL^)=Lk;g@Gq55c8:%w[^SͼƦq1zk_14zXϞ뽿x&罵cUC78պϤ=EoksyT9(]R297Sq-_P@5.dte{`K $s u gkkzF^/ƈGa .8[CWZW`̭.#s cY>Pׯkn|34K>Nvj.6\Hl2~:mxɃC>n=9 PG:@ q:t.4M(k,jf9b0 <KaoOuPH Wwf@r&i9¹ENt𦏿 B<1¢wb8XQDtT\wa\:9ٳŞ{IϺ '٫0t^rF\}oT2 ɋ-+.8H>y>Fp=\,[G=!tGG҄3h#:Ϻ8I)J (Fm'.)ZY&2,j8 ~)beR=zvZ_Ǔ¨ܣjCSD鎓Va:iDfY`z; Ì/J\4 vJw و)T\o r*nuJ kcNbS#kx /ȶt,X$@\h65cQ %y/!b}`I3;5H1SmKy/p>z`{FNHP/'IqTVP^6!,DRxӇ%W8NةA:mNbDv4fu2, bN6X}GMLѱsThK-%7:+FyWy5[||(+c.\tl~` VqQҁ8()O9ec @S:y[Ł.f}$a]΋i:k4d]@%6 ,򐴵Xk(i.%2EvmK|O >2gå؂d-C̅m ZI5CS'h)W,N݊r0~Ja,5: :QO&E=DCOӘ].LXTNSLb dMK g_J@Tpx硳TKJ0 a*w, x}hS25}rPo_/Ujcʣxz=,i*,cO>@#cEE;O:% lԨ EI!:^g]3:9;%1jd(wK6-KMCm}\Y5 w=d$)ig 0caw pƀp s<$s9'"@CźصMKC@*+Go1aixFwD`HIrzmt3iZ,kykuw1]cM0Ʊ7cguj`HbÙQp5\S1&Δ!Fr5(l=y8Yl֮j@u_"{_ ,|dCYºz >HJz}g09lTz51ZUo}֝J {}?:\Ǖ ZOF`غ|@ mJdn`F0)?Akq.}݋K%p+Jk\RgKJu\})\!FŃ֞B{<C).Zyt `y[ʬ~3p m˘en,(u<~L$Q7Ky&19,v~#_@g404$٭]}u^kc-tK6]rvӨ-^G M|dr>X^uH:'js.8R#)_Ij:\pϷ$eγE:vG y`t1gil}7Rl9ލtZ@2GcdRсK=E1h%;]k iZJi!~UuN_{0p|~uw%'sMNr~,c9"6NHY2®z1'|;ޛٛq^r )Rr$3˩00}ZC)QS] boMIX=_ʛ%'e%j;l\?,ֵ8;UsCw|(A 6ޚ91G'O YD~d5h2;AJNS$>[is}+x3 /8Ip!Ffjh}n̺h')9(3RA? ']!9oC>(%x~fcNFCiSl0{V$ |DI> 6a g'ψ5HIrd)<)Qע=Ό&1z98~W:D蓒g5g Ǔۯb¥D؊::'JLD7 ,avV'^7e~OWdXp6Xl,?&2be7y(Yw@`E`N 5&}tM\]𖭐rxhnueH=&%}ydp _U kJ.o5;ޤ&Ӛ˧l<\{LB&pfl6ş'9$Zl_~ :qAC%ޘ 83^%KJ>bXckapS49J!tZOH-._+o0f=g@qႤ8k>&G4J{eZmb-Oqk>- ]?0zodIPrje6۾38M;MRgiI4Ƅ߿~SvKo)9g+YF^~ ȓo^y4)`\B^~Lٓ\#b^_C([󉋑vR.JQLB<_zpYeMЩslYު{$ˆ>R9dz(ߝšF$gSa&fp1oPl-y 0dֿ^r7/#OC` 9וhzɾnPoB"3lLUg\@ֵ'_ / z|/c;ǜ`!u&\eo`gSu?l}KWqV8l~q8v6*hĘ>.FYxYFNV7(OQ5<.p)rIqV?j[FGwјjZ5fֳ6+5UbxƨlYSxBYósLSFl}#k^<?vwJ{6@tV2a8B^ (.)GQE_5cŁX0J@Oԓٚ̕(bKdk֐uԮ5u!fZ$ 6m9^_|5P&)VXMIbvԷT~!sQ-0m{mFm&c؆:& ZYeH̒DJ9B)u45, Ww^_P!9p)2XםRD$<5Es]PD[%{etvkc(:=G)Gke<67E:b,٘3[b0)$~4R`7cPk` ׳ڤlOƜ5fd4p.>̚IU)MD؟:< 6)&A`T}Qthވ{h]>j)3ƄTJ"?t"ƶ]g *{)$6ϓ3rY>f]M :ۧM/ ޟ_8d֨x< wl)|8{IPv,k4 Uoiq8-w1v?>R.qJe#buDdWm d3_ڼy^,Гڪˮ!IVRx>>W>'׋m\`AQ]싼sY AI U9s㼋)wg,c >o瓔6F1ln錷z&yD (}'fa@Rl{AE֣$9M[M}WZFRTnp?HI &NXIA+%E cWwk FNO, B0p/A|u%9 Y&[:hvyc]ze|˖t}l]P u 4tC(}t1Fh0ـ|S,כ_NК䕶ZHQE=^6|fM^ we Cէ䵵,ЧAL ST2}wle<bc h=bUlvc >4lxڪk*k~SG稝$1tjm+0 `8^O\R{ 6I$yOšC2 z@ ڃT9EKZKQ]<&5.6"Igkzb>3m?߯Hֿ{/SlW1'o0Ўs=-.|]g8׳y3պg.v;H)[] {<mKs^!31ݠ1@~zf^u7֭i)b9o02wa6?uTu\=.-.y1 1= AuX|ߠ@5 hl5I^y1 s -8 #>u._=8o3whK9z 8<,ʜ`9F17":8f!:exM_rL7IS8Gm 9)(; HrK9˸{\_}˜$zO?}LKzhm6yEɊsfxZ[)-qhCJ ]9꼾JIk Gl~_'D5~ʫ/wxuH6aRb! 1j#Gݟ$9䴙~#dVTi __$R*\}vrG 8)ir?̈́1ڔ/VbՓħN6Ҧ>sB H."Q) /\RJM&z'eŬYNE^=+AO]yoTyT~N ez!0̑ɇ[UcqZӃO1 L|xv&$V˹Q%XG9y^pd>(t-1&?~PC"xk $sx1V8e\vK!/5u(UH, їyk| Ί| y)#wؠƵ?@#hBؠ06 8^Xl1Ҍj`ycYg>yrzͲY>p|eC)1R KɽWa15㦃?Ɣ\8YC۾ZYNè\iU!E3yϔx))o|Ml!=e]ז#1:UTnyr֍:}J={3I?5-?~Ճ!}')r6&%3kw'1egUwϫɈ5] `Md jfYs憙&_2S\jlo_H sN09kpA-;8@( n.ևn.Ϭ&YK`: ϳ9);9)IM} Ж)Ly@973N^4i͚ 9Jۺ* naJݬ<5r[KJ{Qkܿa=\ z$y[N0[j`Ind9 G(\3s$%yk2'1ߧ˦tKJa_~ˣܪbLKet=漁4К&3_R.ɹT-24D;9 Gc) KADMz=^qCa0zoDDSbNJ歇c-xB*qH!qj,7FK9QՇWR_IɆcYsدo׺ڋIq&'ly1Tꋕs^|׾EߌoO{3OFeL gݑ-1kY   Խ茝$iSz Cbg]l 󿃑"T"ȇ$: gִXlzJY`׺h#ozhEȺ n'k%' VtN͵dsuSG@]]yp ^^#;"x1l8ܾCJwwԮ?%,Soa:}]k6vI6;=!¤g %SI^txQӒ3 @v5Qn=J)|_77im:*.9\,Pl~58y4:9۵q>7nNQC JyΊ"7>wz,g{{F FȺwxK#&# ]z2Vp_y(.4%/6:_W_:NEƷ`TYfLGKLLwS%dSr8̷-x7mN씢e }Дj;H۲Șo`eC KAr&qU[I0 9:)Z#lZ׏J~s.r}}`'s =:Ǵm-n;h>Fӧp>`N3v.];hH<mQF1]^pK339O=ߒYy71j7-bqOJ 3 ʨB=N/dA)doVr)n2v5)F0M앣5NF>A_iCñP04yNur!#s~%{98<$m9s֓\)cW=Q"G0͙mNy.hZ&8dkۗoY D8{'m S~I~uKnjeM nԴo&TLwzglPk:u_b%oV#/qBh@;[伃1;ڔR-&*u^"&zYsoc)TtƼ1Ip ۈKz{y^Jͅ7I7{ ezkUQ;k9^9׼>ލ\/oo/֭Рኔ7Y22'WIO`ʒTPi3/_Ic3{II#%0Al~s'$Rp<*9'>X}s&P 5s!Z ^ϵO]%%¦|/\kUW~G%'#-վد *)%ѪdC {fX ޻GK4jk4]YkPRU_?A_̝0r/unPaRݛX>/]]UkS.s gewyć9-u7@uHg,Fc?Ơyʚ^eN AaA+5m1d>#?a%K]=,uЛl< v}oץ]7~] f.Y Y֛92bkx,ClȀ[lسNhּ+AVMY-XLsEfn(sNc,1J"J莔?˳ju<uʋqh\2bV֐1$k>JӧO%f=&xSl\r$%o18!mfӁ+f8a I ޤ8sΑ%tR=S |pAm9 ~>NK%cǓc7q#tԽw$*Ɩi6\ Q/5-ٌA's+N7ŀ E`t5\)s&u >Y!Rn8[+1[罼h4SŎ|+?0&HnI[!@ u鶝'B{+Pu,m"܇`S +ٙ .M|ohq ˓`MɒwZ&)svN6Ig_x$Oy$LI|<BNCnbԦ?g HLr;+2dԁzï.IOcI) 젿̶g%O%URX$Stsx>e>^_or2}ߘMV5)󮓳M$?FO<^xز?~~sѠ`~ <&d{>I{kMiw5uq%*2YFA4wmĨY¾1G*1+/=K !>~dc+'F~r@Ƙ2ep: eymq6HP8Þk}}`U]p*v.6Z jdCp|IʚgȚMl 2I. W]zDu Mωȁpr)Հ΍F:Â5e1t 㚬r wȷ$Pt%ݚl;%g\KIlʫfil! bs`bX}cJR #D1z6`I&;06xܣ6m5$󾚼?fjw>7>/)hX ؆p7K{ 9wkm&йu})bq>&q NmJV߬ sܲ(5́>2w(l{xrFY }VIkc&6%bŁ*QcWZ!JјAd^m4ig@> ^GB I ^&3\#8<>6b)A~4Ci]:?)A耱a%yޜY9)vH°&k@4&n.l!6GN$o1tX"g؞?z8ʿ_bxK,8)73>x".DjtV k]`do>߿sVx9Z#$s5˛/L9ϳYCrKb)ڐL쎭vuP9XMVcoB(ĭ=^EC s{^gU9]d'/&aN>|!f/Ws,!0Hz{$1H&5SeOkBl'$\S(hښ=̡ .%)/l*%dq)|LWQXXFm}BdtgzsYHAlr˜Uݳ 1fe>5 a"[1lsJ^a}Rւd#$j`''J|Λ艢N[&x}v\Xs9;XޜsJ<_Un^_<{f6VNp-ܙk&>>T0Pa$mh|yco>;)IS!:Ikk ~.D:opeTn s@q6<:^TqTqp%^YuWH)i|RޫZ&aӵ)eZM{\[L7Yxzr (yMy,<=;[?/rN6u6#9IJ9 89lx'T +8RRҠݕz߿F'?= ;.pU)kk;#L2AN) }QRW!SNbfacє3ulx2OG 9wWk-naڿy:֤Ĩ A~1q$Gmpq7/x'1aL,s+w}au{6$\.]CQBs?0s5?yI,xY0mxY 2y  C@MNsÝn0b^6w# |.}e'51D֊eۇ|{Ǐcz_EmNy -c/alM97̱XKw}F)m+Գkc7V8kvSΚ\5VZ_/5R2Oq")I,Cy1KQ,Q-D钁xzV )sƜzO~^AI%}Tqɫ}IU@>9>6/  &>s@?f ɲˌ뉻9u/ocp- `N|dgi2Xd:bF'WyyڋMu%ޞ{v 7IS2ǀwַwkRW":&սr/ !y7of羙qpe2KY[0t?]sh'xGrCJ,<ef9 G.Xƴ*[Q|1Ƣ8{hmz9Z3~]*BH{sKV?bB/YYSKwvx+ILex8n45x|{ 5yzf"Ig1qaS!PsAJ.Ƙly's<$7Z0;19.~Iכ\Ax>I[ɊT9S3|v-/k+}y~< Qr&ox &`^q ľm,O9۠#Օ@Sf/;?A_.$|pzrg.oP|R`$sħES΃iho9IE &~xy%(")Z,0. \I"Esv>&9Ԏ$>TB¯[HoIYzS>pwOjrΒh,W=h$)u؄,|M</PʉdC%JY hʑ`y#A\6`J~ز &ZJE3K=%)Jˑs"~d*%!8B)1'χ<hRq|<_i~P3IiB$v v=C/% 6dՒpmGgbrӽڶ&*}kK<.yMU1e,2=IKi3pNL֧Zk:ЪsG=H[_hm8NJ ||gɻMF]W%̡pzl?_8~쒴_/R<LRm˾\$ NXI{oN^oZS4uNd9(_VhzLh>(N>5G 8s+bs6ޯ/ܣh1Cė㙤UOQfl—:I6}j_)jwTaәiMַ~QuP{qRih\,maݐ6t1j9y;)`.9,Q'tq_'KiHCXV_ pB;=$Ǐ>bi/[$ @ݼ[9`uG}OZ sFccȣOd^lg=!`.''Ʃ)-!_3:.ii:6\cKTCV'dX1|`'jĦMniyVyxl2d0p9G2[J3 g`7a̰?ei F-꾄E1m L}[!V5m<;7t3^$Nj2eߘ1&=wX.,J=6ZWJZtA}PFəqvzSd,GQR\D@;+}u ̮FcpbN^1\5N+zhl[&n>A I.}W9Er1|HyXFi{:JyġzV'\X]WhZ@oznuziE~8D1hVpx31Ih:>`&Lr-U SLfXKkNz=Ȩ2p?8Xv˷oo#"H;1$\ qs*lň "EY^~sa&yPc lCӱZ?_WU-s>HQm~ܒ58[2Cc/D{> 1z{a7&:|#'_vE $9ڤIǮ&yuʓ-Tl) bs?%OVX7ŜR4W؀r9Ds!I4Kׄj: X60.YƄHA2?@h4g͹X]:%s $\&.p[%CwIiX>@Y ԝN35_7kBr"xcԡg((/b @Xi)du2 \NinML2ߓza}FZ/wcc f%q2.p0VpjY6L֐kݜr@{ex2 HISX&FmwS|;k9>?G:+g!gY 'ߟh8#dr)Z^yE-1B@k@^J m,KJUrkJQJ10G>}9yN[2%%F`k bĘ9!ΜbǏ2>C`ƶ%rR2cI3&zC81 ,qy2FkJILnˎKZ1%'7^k^=;`*u MGu?/3 ;ȃӖg-}s|ہw _Rt{o?EşCS*{t-h[x]XW_, ™X;}*'XI^z^z7w45Uos2:1ֿuVM_R4Ƙ[y]] >.0iC9vo]C]C]Lm7ӆϚ׾)?E 7 {(CKXR&_ǁsn㤶k@p]jjieV/-B;kgfг i8Ѫc&kuE׎;!w~xUR~K =l{ 91Cl6#G(T[h1L{6mr)OzMKF8X14=h!G؋#D7X%UE]F_x 0ǥyTM(wm{ye⚊1NB= mT%c|6gCQUBNc`!{pQ+[.82ԚmKM>?218%s>l/1qsq|}){y)ŤTxdf "#G#NI>O^,Hbf78-m嘣G%yI5큟J,i}r<ډ1ߊ$Iޟn^?%D%y67".~ui *0`@t_2, &IYC4qSjU.1Bj2v\6b/N%MAX:ɻvyRVĕ@(jx;8;EB |bEf9&z3}zᇓWy%xlmSRxmc.p>|I9LMx\`wm=yCǓ࡝'uxWcWB9:bA(`j1Or:_2aKL7({fJs)g.󬜭!94sJF$xQe!DRdyDyȓ i"C|m }@{s2.e FLH%Dg8;?1p;f;pSzT͌e(IL|;cF1FMܜ7n9,pı۾s98[% 0`KY7m»vM;_G5ɷpZ)XL?~eSayO yf7n)5%Omb>;w\ '}c|rmI]F09xI[) 1B[a?}9k~3pٸ=\lw)E*6Vl AHD* "8GafDc_{7Zew ]g!{7g^Vօ[# \!lk? Ư=bIv?]+C$*sz].\0j@|u<OuraKfj1sAƶJ)[+a_Ͱ>?|EYo9l{,/*3jWPõWb}/*޼D\yLLMbv9o |s%!d܆}EL{:Vl!φ 9bZi:Cc TsX|44Ӗw\m#XD!.r*E<}JCAcH[ uz~UŘ"ldHTpC`1>賭Vq{l\9e_ PïI0~LcJBTbūH2`1i狰'BqQr9xuX ǻL[Ep=$җ{ٶĜj0j_m\|A & .Z ؏YIa|e&<dLx{iE J`vJBs&O38HZtFJ^$oϔ?½wwݦ-wcu}ߨ!${3? 7Hfv5<}.jSYr;طdžԿu?8kb S{7x;dܺ9ZkNo&n0m2]`DX7 SH2zgTG/o>$c~J' FBp&<ex<2 Y}pSV(eSͳ "J)fHtKM'x]AU]s&Ⱦ=.R:ˊ9f|,aF#zIiW=|dL$_.83n1x~|c b]m2#8-aS I|>9:PdQ||R-u1Ttwc#~k<zoΉ=¿QXZJ$|Wsɠ[ry==S:oIaQ0ts!Tw1Rb@@);"D@if߀L7>\25{8>]jҹϺXמu][I+`tà JZ]]VL ZwN.9G[!$HgFmV-xJ~pԗ6%i_mVRt[0w.r$Ho]ZI)3\K9ps٦At$9)4~ە(|+Iƚ|~|T9&_8L I(g`6٣c7sv/1H:;svJVypkLm} !fY2N Y1,)Y+wpLs>I1ᓧqtVvQƾerŲKw* O~*8Άg<;G=O|õIsN:Voϓ~ƭ=8^y@yfUm&}<6!Iq48E>{z'_hkjb:X<ǯ_t+?_phVdD37M:gkl93k' \V%l\αBwt|Fet pcI'Kx&In3'B4$U}=zMYYbc%S ̚_s=2mb >Hev"ިsP2Y_q.zSc j~d{ Q`5dzo^XMSSM:D)UYO&4UǷdhy~<^Lb?R 'c4m<ׯOj:?YFPo4}n r09`y})bbfQљ[̆P ݌#[ٜbyŨ-[!$RuT FnXXۮ]QOj$3۾bFf%8KEokkb͋dSyOLo@Y".83.{L/I 'K$7i6ғT*[4$#)!|{ XX7-ޭfR cbq1ݤa5r=vɂW1zU2`w]@5>3A)Q[K!;k)dߧqc#_?5|8N%WΡZ5ؚSC x( }J!hkl \R&t}'zc+]av^}h}[C^dg@*gξJc{+JAJJ8K>nf|h%V10{3$DE sϫzsZ{Y831rWބߝ.x-BMӔ/03LNID8̺A x@ a/sH[3֐# 3f*Tzq+cj8k[;4)aR'c~wHI# %9z5Fw$.qg*$H -O 'QX[)]fڔh!`5yj5k|V}Y=7|i{p^S=g\4*ΩP*EVkT)_r8pnd{lϝT2cL6[K\p\B FOʞT۶giǬE':u.NsSg6Yb gG&~0g L"$ ?M$}hsoNo'ϿԔ3}- z|.ݱ!_/3yb୘yO^]N&sD~X} 79&!| ~@fEaoR O='nN_~F'{NV+Goec!cown b)3q#>_NӘ%GJL~,K,@cMVQ%1J܋5ḆKf@2>v15@!$\U:HngL__Ԯˉ̥'INzzW"ݤ@X٢]d =E, 9hˮidjy>p+M/x=6헌ɓJ gS϶J t^AӦۘ o9rJb ϖBjC)C^K:c Z6^Vn뭋ҺV'nӔ.VsɜĜRLJ0,V=2"9QF R{ǚRv})1w08Fꃔ)2.8SuC2>d3aQR5&NpX~὚9;M!rE񃜋 If$^`#wQ2w 0ƯXaׇ;)oXǶׄ!錋)Rc1G3<`s!HZ,XtĠ&s'b.ڒLtN,|Ĺ@7N^o%8pnF;zVX w8N<Q0RӢnsphZSG7cnc]H7SeN *L\cA H2V4..c yLIcMX j^ּv5-1N$["ٍq;cAp ;HE:vYƮr XZT0%O 9$a]ALʶjWc$еo[)T)A ƼzXSg {z< ۖɰoi/e^sL`QCޣ˙/q6cOily^ "uf4h-{C0uoXfn%e-1=38Xv=hݤ4>L ]^X2|UC{_ *fra Q KvFqOgzsw7ݽ?)]b8ku{iۦ\nv@?٫߲+eut%^Q]}˓dk}6XDZ;\:ߒEoEc^ПŀS7ӭsxsZ"qƺҰ 5aIvh58v~KAEBb})u*AX*1-!==[;d=|8sɚ6iKm ϯA GmCyP(g8sÐ|QYД ZzR"fM\JL*3KLJ*PXEn/p^fː5Q;'o3Ǐ>?Gm ^(uOrȾ^'~9` 2\2>k#Y<[M7cO&OfU:k65޳vڼ<$B)1d3)I{'dQsɌ`:-)z;t HZ1В6),!9bwFUrR-\_B, !{Oox Z䌡3N^X jQSPa*eW%1j}D;9 b3_g f!Nf7)EI~RZ.9NRɋC`X%sAK!:bNGCkoY!`NgoցHz~}Vߴtcs.%XʟK`/=__?~朜guԛz{SɜK|zJ"dQלlŬ6]cR?!)AS{ȼ S'=,{a+]#2Sͩw2ڬ5|qIkcY3z6ZIȊMsʆkB|s ]! gmD9:d~ KA oYbLs%?4GůF m5ǁDZmuf}QG >R| 1:lFO YYt|ptj_lY6ўIp5;}vrʌzēbs.5lV DRvq*u0۶i4Ukو>qF "*a,Nb.WlΎwqs0f<n['yG!zWP`"a+Qa(+/F뒄8pK@rXjʖ8X%YɒU KnCPs<ŖbF5&9%j7id|Yr̰b}r'٦Ng}*eο>'}JR2?|>޼_oK7/S2*닒2> /Y `Lm[]ܤ F&nm<~hhDgft`6BksѬzoyc؞ju&D0 Vh>bSI摢gNdSΈ J~r7ng5~|J$jCyTd#gL;.oy֍cx2 ӛD5~'2v0l-۞~3bι973QP-Q$AGf(TKM*Z%} R iA޳^sFxͪi}^s9#FѿD0"Kv6~"S>~P8~l=tjkN,nG*9+OÄ't$mm4:,&c\8aƏi|emKOUb:+0q=e*PmyJn*`2f't\Oǻ@Zv%ls0sjŇr֢HyokՇSk_"`a?睆 ו7Q .CD)2ןߧ81L>M_bZ:ݎ9x4Υ7=훶ؾ7iP9r.Mn;terVKUSʤ + qv[5OA8~)H;]`3䠫͜Uti8O)7>WtO˶ eZ;k*Y8Q5e/8)Դ>'~MiW5elcr O(BfYn0+1!P:쥰q^S+UYH3*~kHOic0{%8/ΫELxA.8nB },ҡy寧"?~PZ|vqY,àj;hcj6Af=9kcE/ʶﻦ[ߵ(,i{%xxKr Ei{&` | 9)gu/E KdզUF\V&urQ;)(iJt &| ix|^?0XDQvRr/!>'-}ʭ8A5=iOon&t4 Up 2Z8q%`.UOwj鸘>І &Xd,:6-)Mkغƫ\p8^Ղt{U5jZ`6h#r@=*G=(}P7eJyi}%j1əhQ:m bjt'&o $Iڤ]5k^OkU YօX$fkWҺf/tόR3ַmL%o1;~6IWU Anj.a fž uks[;*'aϟ؍4unDR1DG\Z^Ey}9Mm>jKױ3");wOzoY 狣u޷z$*-czhsum B觾vvrg%O;fǍOy{_CV%M@}bN_ſrQ>S(mϡ5M6bgk8:<s^MC{J#:Łί}_S/:âu' >L5<qcʵ='8vIK&9Yу1)}H_/kN|0>#jЎ$89HJ#EcvIKEQp T|l .rϿws9Sy5鏚SјX]@dǔ-Nr)ɄV9g?-9iE/?ƻa)ɄS嶩 g{;`K Wlb?o~vZ,慽E֧s/)U;8C/o@mR4LQ0t| ݮۣ8hr Lvs{syqNҿ'_W(U Ls!={*%c.>)~rq;KӚORַzCJi)^k\S8s_ON)D|fb*<i{ٯ4Ny\W 3zjݴJ#A鬾/L?.S#OlL'Q09s#xD9'6z#H@d >=}{iT'VSH*ȧ7[m (H-\H&>yc!p}rzx_* jX8zmZx'mtƴpJ.u5eW|1OK;vgg~?sKوک]O.S'- Ae}J+.$\7ޙ ۜ o+woHQ[PTZ^kUYsj\>9u({\o6-w(,S̪9lH+%zaM˂s JDž~*$:~V:)"1ּ޴O59 œ-^ o!AC71q(>_Pw}ӺkZ5s#@@gox?X}&Ir͇kJ ,DRvTKĪb'<>}O5GF5RRQr[Xn7_ 뢩ݨ8s!|Fpe5rMc}9EBՐʜ>nU#6}{g{XȜvU3k堾6A`(r/MXUǡj۪] ~zM/ ?=5 ۬5 Ĩ]qZUA#{xmsfA9^1R~w}Y+8%kz=n6gLzH}`jt\[ &?֤냺xJ2BCؤp>C1ED)87S`0*pE;CLH@9=>/Ę0s0PtV˝Oo 1:o@3Okv_w^H락VEvt[v0; z.ת)e e7 K2VD#$Vdas)|, 4tPNp :?hn /0`IvPT|ɫ܊1'Eike45RJ!W9fooX-yNSXo7B#9xCdI 9+<\L 7~C1֩]رo(V oowtƞ1"Dc\\6M~h]S>LWZ?(ƧjSj3W_|:0y>78z{Je]_H9ٷjm$἗c;k:Ls`k?;m_sj}LsJNkxbYAw?2ӧvs6Cb B1F=8)F{2:c4C蕒8 !x؟*S tлD! $O soT,IބEb8نWH>}>}nwU@xsr:d:}1-jOnWs0)PkQT~֜֘(hc7fq-ra:K GCr0}b6;׋RtMDr{:x/p|>l{/P<; n9pA\ jcս$p1Q'PGOq[uU QLnow/ɩׯsƻIRC*ҳpSs~RJc{=YȒu^#??B"(`o|z<.g昃.'zEn oN6Ŏ+1!8 GlLB>Z+rwv_0^ć09_PY C7֩|gs^)^aoDWbp"Oǣ/iL>@ ~ilW fXAYֿާ@Qy&&$Ɨn`" &(9أi\1u~rڟB(7 X03doԧ|9s+]_hZUiw5`^0!@9m8K3ti%M,CĘb8t#K;[`LVɳ9^EfS.y}+hԲQ ։7w095(MD4jm&C8Sujgw_k#Z-U ck,pcQP7] n NzW_)ǪUpe>}dCbLQc~I2赫}ִ"7J=l a,q [N)V4 T-&wMĿR^9~66w)Zhw¤5 C}T]S`ϭqkcqa%?M9@hݑ7eaՌ6nc%vܠ;%Wt>?~';y+E~B%'(g` 4n$m޷'t^aYw9a~_(Q\_P lJM0%IR __ URpx:G=1Pgo~79xq0 HڤMۜ<7j5.z؇bKh³k?=;ޟ/B ^U??v \TƄhAX755_R7mCl4;V[{ЄY+9i>FM8  1-t![a?vb|ko/")f+:M.pܯ EəQ7v﷛6%U7%mM|<䨊~ynvpÓHREN$աXuІsd˩PA_;$:8q"!euH75O8/CKpb~rݎ$.|׵7?qH$Ul>|wϡ:Nyĥ1`лT$ß1MϿi͆/ASE]}x=x/ P4]u%qqM8c _Oq2+MTKqCmYrı}r_q9'ׯ/R%7ƿ79+0QL!sds:)21p<_,|8~lSRX4԰jnֲF?đ(wqx \TlbnM7d=tMZK~8@]Z݅Qd|<21؎mqZAʖPdI|UZ*۝Uf/ H`M<&KvT[>z %OH*Mƫ@*Kdͨ`i]w )sWQǜ,]ڶfhhܖ 8%PMPĴ 7$12_< ؾ=8hp!PJa.OP|UbdݠA4}.jIԘ MqUmr^.̗&+sjULZXj8ď(LmYS1iJY=Į{uWs%80w<|z{hﯗ)ћlc]N}U,#۶c`1/ħlnkgY]"QArGteҡ59i nR ?DMt\E,{ .w3Cb+`(SQѭ`0 n%QGb Jq[Q4 []d=h@U[=E}gz1 m+n ش@hUnaN93 "S1ãQ&VHJtT6R ,DC tjS1Pצae. n8e+EΣGo:@<g-Amwu§O **ʲfbﴽ 6Ĕ+m%_%sU1Xvj%:- Le4t鄀{N3;齀1YẔs>o<tL]axv9NhS~<ٺû8OK`Ѫy|ס{j+i$9.9H0!5ݧKmzza]q4 طTnŞm0#3=<wƺݶJ5{-RY)n?4[nzӽmdCF1E}rxC3vPVJ5aPnYV c~k# ʧOw^z_ӱ]xWוd~C3+hኈzW ;gEX5'S{Q^2a^G&g4 C؟n? vg-NϓYC_bk+`%gJW\]N1 V5o8g-C̾ǵXB7sr h]dႧXg.֨R̳p\c R~ ҊZ)]/??{v٘bVVq /og!s>[1kg) 14H ikDclsBoWvYgdIxS[99m[0ïܳWi{Rl .&{aYvn79.樬YBD-1NrT]|An>>mVWKĒ" FbT4A1]V_XU'm,)RZt&C-2^)u@Lh-|8k涮X/[5G@'0:N.@D!Leee<+Kn:q}@?DwK4zGԶwj{x˞c:F)9$(?tx{Mƾʴemhۍ9DqV=$n+O6)aW܃o;Gzp[̳I@s͋e{Xr't" 4zS#_|Xo#LF<:ȷFh[^Yg]`FҨAH|+c`yY0 ^mΙ?%&RJm#!F$<8^2dAim;vF?B z=&!m%F=5{pYZW=)uhYW_rx~!0.G$'|J`LgDI;*m }evY˚%mMYLH>L,Y J4$G[͢K&z8ٱp[ĭA@.2&SUtn@7}4ۤuOS^EAj+P{ƏV4mnNHG.q)@ڰ?P)&s`tcOkmKk ΋f"=_/ w`rx鹭7:FmhÂuM@x?uCfM1d (N՚1_IQMO.o:Z(U1AΌ0Cd{̳l :mV%492e*~sϟ?)'kov5by&:ebrOv5-&t)6S?+{Ⱦ,ٓSM<ث(m6}U{2ɺ$|y*?xVA1:MO<ߟJ0nMZxIB9#5O5S*+x=|M E6/ޱPL)zG*!ɩ8kWlٙoiqC9'׾ySې G\1&Rys0Tr ]}:қgH|?ch3<ŧ9Oa9u@&UMe\cKvR9 (AJި`{zR^8y9yuPvM(Klk"L "Mx65tE"`k;_&b:qf)%n|~{ݣ]_Yz äp,)Z3u?oK8[.aI:]VL.͹6>p.6O\R-bNN9Gm*PenHj:9_ĭx$ρEʇ)yb– rΡa:*Lm \v|D "SĜ'۫٦؍I~!5nc(5V= q\b[q>Ttkmܣ:§c[?t'ڄ\bkFkwv̍, ?9qҔ]!3")&ޏGjhǠAepA*mg/&Wf+05x:*[`$֍w.)y5);-m2__y!-2&3$1W%p[J`?."eѪ 8|u!w\ꡬ/wEfuD/D)Fc+0tîX!sv z]Mq9{ͦ,妩H$?Vf1U9M^C̢V+=:L-Nqާ9xK X%p%67z~.xi8GJ@yOhz=dAr9>9_2˒Xcn<yn~N^vT}UzpZ{Qq J_UasyH1*DZk{j8Lxֱ&CXI Wǀ3W2 _VN !{AO0egc˗MN*K`;ޟ`I.Py8{3&xə蹿QlPkxvZTjI96)/x{Ή$? Q2k<}hzW1Mo+NfԽ@ScQ-c+99Y2rù$P8 )ej)FHrv$L9z&}a8jɷ$nͮO MpMB- a-r1pJŕF-|[1'Gfy[A2'ҒJ=S~^PpYc *Wz:9sAyIYZ4V4l)06wEzC +ܤ5['m/^9^'Ͻr KCќhT mکTmJ5pXZ~[rmfksCkOv5c*=\ W^@rhA1u!#w>Brt vL3zg~=`:&HM>8s)u6xL?)_ڳ#+t)t]gəЧx@nyWF?ve*JZQ˳__!GsRN<S`II>x=C'׿r1(dV#08r(Vmӫdm튓nxtMȇwOsT1T{y/y<!e},zޟpxkɲZ:]ݲ$l!k,y% 9zj^6lʔH,K~qݔ`XS^FoĜXUJdHR̝YH 0pcM|C y#ok93@rCSQ}V!kWTFOo)!%m%yEV;h: *d-A^kj "c9D2ok^X;9e{B9lևqs]~LOHDFɸMڛ٤1]i3k^3BvFVw0:[&ǧO,ˍ9YbbVm &^n*=)>lX"aN52Ms0)EZk1M Yq6aan7:UH 9d%=|za&6B.}|Q[_~aD:Z`4z@o2-KL()K8/jX2buWSq >e5!!0JID%&ܜ!%ۍ C*H&~YJӧ7b7)%\8cP{ϫTʜjt^ywlt݉C 'Vُ@Q6x 1/ܗEn `5՜xw#A+U/Fm,yUl5YC_ImB.ۺq@)EJ?4l2r5௷ög={!!,9w6q_S^k{Yr`/EN)L\*9,=y[vmB3qɳʶWམuѽ%|S?ӚtˠZ:9ڤ#Xpv( u3.&mYjR4Cx=bamUGΎ,+Zm}nC|Ú'{kz pr_,Ѹ$1%>ڛhS2nչ!wYr~J}8pWEEE;xӝ?gU7T%Fs\_Ƽ3۶\۾۰7EQ <.[7GboZtŃ:BMQ\9I'W-|=뜽Hvr4ݳNwl:3ヷu 8>?;rqV%^˳rװg9Jļ^]w<@[GT׾Fu=u4zg m\R 6̐xr"932Xh.iS-XQtrE 'p|}q_Zʫ jMA W#S?gJRg=굇 Pt]4] /$P,!Eq5uIwEs̴c0_L7c}>5s<wTBPև%:K.7CptkfNymYo\FsY +|e9G-jޓ$usN-GRK1E$Z<n!wBZn*{ݸ6Rc*ՆqG\W_`{9dF}:0(\e52ٷj. 7'1g .>-H0.-_OQeU-Tqj{9J5Tܤ6rXxjË:<_q]ub@G܆f]6IR'Vl{Ovяd/m߉{tm^[Sfv^œ,J[`pO!, b{n^?[SĀV'Ufv[pNql B)HK1Zx)כwJ"f&ܘ= 'kN @1WkWvIA5; B˓Tp;uiQK˂g0k%`3G=*(x k >FMz+x'V`šhN9Q,GO1ﱽ9Gt.Gwk1mHQD,yGTz҆\e+>I- 1j/ 5Am47WtM Vf;G$m_ZuVضR+d&˥` BlO>ygi X[֜Y;͘2栗Z⨔ \lajp2k'mRcėU*.F:mc? m{/sVsNcںdn3q>fT!MoM"DZ{*wl$9|06aMnĝT^j|cwS c??o'&c =lœ)/"KLZ3Fxr:Ǩ9Ou89l#%ث:3}4jW1F9Φe0O9'׎sO}~O 95mΘz8vZkg 1fi;5{o h$VΟξH $~ W͍SG eO s9K,7wg}ע7QR!@uNjޯFģb99mNWCBxE2(` &dU=sK97 Z{b 9\Pm=q}8<&۳f1)Hh49t:z~dB8qͧTE,[cOQOڼxl&n+vʩI1r<7š|kKNƏVx>^ 9Cլ w{gڈlGwj8a't]mCaݱ~N"B",uM3AH.M]@Ϻ<8g(H88Hsm{e;vEV{gɫea;);⚭ݮ3Ӫ`0 JkzxI4]PrAm1`8BrZx>IK&s +_J(jU$Ryk6օnaYHOU/v#,Q/w1,d}i)%s޵!Qi`1bNX$ۂK+_+1IC=$gm=1ñL̉/v E"Ό.F,IUW-ˍI{1egYo}" wn2!(wOQȊ9C!7;0#iIHI|[IQ<!'9 RB Nk׮W d9 r<؏ݝ2_>F)5Ds!ގnQiQ0}U`N 1˗w«Bw[վA \h[Q~0jgR*jsF=(ujf?'bB܁9=h{#ƌODnyz(] wu!00jH &qYi}~BT.no+(,qÙ֩ۆkm&Y4% u%ά7ڐQ`?6w#iC)>%r>H~2Z!GGΎ0!mQ >Nk&.IziLhgO'n8pMQ+sLʶl*lG QvjHR&6i {!F]#s$ygmZ qNR zFmݘӵy؛'rj$K10z*.QÎuYoI\:;!x\0.zMR9MM*#9A87t.@-K&F1b nmb P0v)s|M~<7hO.+ELUS<ڈH'w;>Ot.Gc])ƯRKSm1e]% WnۍOm+x?9h3ijWX +Y|N>h߅WprXz\e5rm Y }ѧPOrN˩kc)xҕσB4\L:P9E %k^^u=,%e}ЮSس{阬9tޡ1H!2۠l98Z{3V/311a>D{ㄩw8 :yg ן58͸o-ݫ:a ݫar9e䋊Ɇu<㶘x.p[26~@*DJ) zԘRP$=9_|$&>_uO=x{{Ss9SJn7+^W|n]2u< ”ฤtiS><BF9yY(WBVb6 J -fk͞m2]}8j%to*xmn 1\)$e)w&eI=FԺX\a"u"8%(钳wQ҅e%~ogaFWCBm97ߊΙ7)JGXjil9US(91m< [G?E+fn09!$&VoS<[{OLD 9pj*(y&bd]kBL^;^™p|5t@<̙Ik?Gs: s^[mri~yh]NO@fp!>#ϗJ0gL;k/r9]ߋsbH8ysZTI8q2Oɉ`wZqJ%J5jdѐ:$o-묥n9wOoVE|0|:BZr+>Q;Dg̦ ZPwx5%'kֆuEl H/uR9Φ1J]vjK|}׈_}zrfٔHKx9fJ%c$ ˁ^M΋&O|z%N|LĐC̑%aX7M^ZgAޣX sL$wx1)O&gUmԣT*-+m]QhDBZ8(8>ݙnrOnt]c]NZWZ-w9AvRr JZI}"GCaH+Ol|z[(JsA7Xb?)5[ d no+M?km%E~]" uvht/œ"$3kcqjib^X@6rYo{!^%|y*bڥx=w[tdϜσnxo2OѴ?Dv*>rǍ3~vvl~}G@|=PDdJ9gSeqTDc8R"赒+1fZ+fNR%c.szn9SQ׍}~ p(Ƥ eg yYEt7 QHKA4Pt5ۦUpW R 8Ts80vB 1{a x΁)7(՘ѳĕ׶ڐz=912S[sXE1fR䤶 $D작&L9> fdc]wsM5!_o|vc(AyE9Xrhb?a5cEx=nbLm2Q6,UNŪ-& ȹCdC8E1sz\?ɮ́y7^d-H]._/kQ<὆Osk!z=gz䘬vORJlG~,NL _5~̻éءl//bp4MQߟW`Єػoww$r,ғz8δiL7܎ / 5э U(ptN!&nhպA#` 0wh_n+f׻"~zyC|eΚ{o&Gt' 8q?1wFU(sRbK oQ 4>,A﯃IX< xNYSysuIn}<:q >``);;+1y圱*?)KϺCmiW~"ؘAM|nyCmqwjZ-Ee1Ġ@a0*589h%k,Y>щ)t;Xu)%KtZ- S7\޳Ak<}'ڊ])1VO&R &A5 DL!t:r朮'LZob _B380õ>\$Hf <~Z({x}&fk \ԋv!Ei!ꃃU9/߬7nJc AbG)*/~N^6~~6|u!MR8>ZhX,{ >\o܃u8_V8fG<ߛ@[4.ZdN cOn|yP5:c0NLXݣiNwҡkiAd+*{:,)&1>@ X{a9^v|`6f| YS7ُ^:?~U7ơ蓭6 YI;ڠu5EdAQ:xFH 6ld7q#1Nm/bǡq[3r~нz41iG%0RԂ5x!0;|w^5zi:`WmaRC3I՗M2AѫѲ,iC$zV2Ahzþi1ZdW>lUJi&T\7z/* NBHS{%Eľ~([&{Z~NXVUt06zJY@O %[SD(__@W+Wn1{{#.j/f=?x޾#Jzi2:iQKYŚS1WRe*^9C$`""uj rbtK>XV85)\>$ JQ9,B&Ir##ܖD3`{Xo%i l*M);&M|ߍZ)n7^s{A-CѨqk K"_N)MF^³ <>5֚ a9qi[wqX]"'>d7MnDGfhEm6!% S\\lfkB1Ym;#=s6kOw?/wsJSD ,veFE`vTZ;Q >+ZsnCxkHjDӄ[r;l mvmz8ctK+z3r1K6?c),VsՎ_#\sϘmd2@uѬ,._b㈌5Dr: VݧZ Dћa0@1Ѹ%W|Z"T%롵|Lxځ􊣓ܔ =GHz"c[O o *>0R w9G "+>t׏y3L:U3y5O@1Q;S͸:E>BS;q*V)Z+9G 9Eç`4wCL|<;MvB 1RK趮{cTp%.ﵮRx1SM(׺G稇NDJUß1ïGs6PMGmb|yx/r;V>}:c{^N17uv[q+]w&ZK浽s$oJ؞1pvu3S:뺝cӥ,}:a6bI3ϿcWp \x|.\?4Ģ|88]}DZka+h?aqL8Sk~:D j} z /zVx>J1z|(akQb,a(tIbU6q3+05 WNڷN5Ӱ5c K?۫$}i8WJk4/W9w~鳹ON൩X,A9',ߣg~9fmx7NNsh4\ iqMI`b\bjv[d Ng\eDAtMkp̡X${^8:ܗ0 }ڝLD67C"mJT*_\} 12*h\zsgydMv}fzT&!γD1%ҴxnI 53`y,>Rˁs&{q~rj$]ysŽ4^WR|,Yk8ft[셜#uwUƲ$O } J1H,*{_/0Gκrژ<#dAo}!Υ$wq.@8eh]#u mƜfs+#Dmk`6=|u'.8౳=>vU^ D{,v0+c{vt!0FhS:uwx] qNBNNSܔyneeFtAq8z' EjJ,Uu6*ӡnHF6}u:ީbkvП^y/r m4f)r*0# &J: Eʶ>'ڴ&E!@}:8,!HnihPQ D3c:b^pI-AHY&bb2( OMEmK4= }w=\ $OXCnDRv>I;!Ez7WMRX>Bm;N%wӘSLylPM K-o7Qc8Q&&FLM sEQ: kcN5:( &tͦDXԾ؋8)Bfɞ>U) 9Z #仢m* *D5tC`ATL2i8]։RiDRݙs.g #gk֪WkYZ1N> cz, ˲|>'E26grͨ628l\&"q;\|5)ѷ]16U"3z=noawhsrۍ}*sct:O (ĩq$UqzJёgΖa%.}f:>xsUB>&},|v1m8Ĩ5Rt(4v,sΰWwγȰ5Ļ t:Ch{rr=vhVY.h/Z:kr5Roɠ;msdNG{Uq:3ãb19T#8֜%M wp{s:>&dbutdLg>R b9E1eon-;f9?B6P)-C 9TVg޿~%,':`Ptpc̓]C^V}!Rg<˂ln9PVNJ;|œuK^N60tBRdj,yTʬ_ǔ+*"9ڨӢm3Flk$n݁}mYVH@޸+cȡYo&,JQ¥bT Ufljo x:Or8Y0<\fCu4O2N.&cȕ8cs[ѹ{>aƕ딒aiĜs<, ?mkooswt[{xg訸e<ܰ߮}xsqmמd=ٶ(pF.+||xYNm`]L8WtxWJ=|08%SM4g⵸:wg 6ذS;ש9:cag~w2Hsm2%)5|x1ԐGeAV mzW~FqF vSMvs_tJ%8GB\e ʐ"Z"P.$!w9\,'E,3 ssa @YƊ^IIa %1v5+Wjܗ@ba19>eN b r*%YHԂ_2fߴFXPensfefg D_= OLMGk0ݡ\x=w(N-evNvN: Ĵ<po !9{, `:;,Y ܾkbD Xl= ApSmr ˒h]7h?*S`{=O=ד-%Mnl['-m t=y97b}(Ǯh )e(V7~pűc\\ͱ*9C J$Ǥ睺r̒3{)ģh:7);n@\2G[Bu,V&k84iMN%'\ԡcAa9ԾSw)j9I%>;WǤ[dNZi\cNFk'L9 ^j|"䑌*>XdA+wAzjhD$dŭrdfؔM6LGL <]1D|QpA^U g|RJ5A/ar!c$O ='-SdnSٙUq1e)فVXj kep^.ճNÛkbϴwD#&*c9'S1N>${zĜ̈́s WdzWsbiζbΝ+ooo}zPJ8xm߃Z¾7lNEE^xpnv@m5V_TW |bI 0Ҧq}LjpK 'y:&j=fN+rΉ>b]f7ϼ8k? otcN/wwuuxI=;ڵ<3~#Nq}Q&kb!AU( ?1C C\1,Ύ"/)2jǭ~gćLq^HΙRS넵qq?.9ɹ89N3;od wwptgsW5Mx{iqOwM=cDA)MRTъεTq|Nmؽr8M赚$J6X3QE YGeegüJ/ <$pM1M;*WlsGP0H靯s?XbVkipǎy!/3KrZ~[ +rD白$h^:+JVq_o<ئ9mt̕թ݆t錸.+;N\TqOl j).>h*FH1K|SI)}<Ws+5'|<]Cr7rN.|a9;;A-#dvϵǐe.4khx'gb":q64ahDY$:qjoQf`/>6B-)ҦZ|CaIL;HL:'%h:V*?~v&1 B}>[Jo ((bQ$lstnLVhC7[ hs 8Ñm[x=7|&2؛g}kZ/QjSI^5LZ8?!mp2>v!Mpm޼4]뚙sU|b:F18NZ˚Ư] -ym1?b;)U%&m HyCB۲**7bQ1 |L\gBJblƓȌPF.BoN\J ȈV1;k dIBPh{O ܖQ"⬕k^Z6RggIrᘣ1><[j+ 7e!~켶uɡ\t郶+ҧ69-  nbAJ0Q@j9Oʳ0\_5VI8S} II&t]򢢂R@8pt/EHgb19l_Qr΂Qv0މ59q\Ma!M>Y =1f .`tЁ0w>PhSI1~*cGl }` E2NOE$"lu &VjJJh9R)57IνNlWӵ%7GSr׽xO w#8z!.:c},ѳlj \rnѸ/;˜}%8 9'J9ꜢA ="!ΜLvͫLN6}z)[םNNԲ3Gyd6rYN銛&$_c?1l1>O&[;]N&,05z}*j^9oZ۰b{"MeZvU#^x< srԲǴ9 ~}Ph9N)bt$UU'4|ٶ]pp 5r{t9FRM@o%KLv_4 (jznY̧ $>8Z#~#/a(~". @[Sc3Ür\唯Z+a}XKIgգVg.`y=zrĢ$ևcE=YGK"g0[WvEN;Y{itݳé"9{sZ?x(`1̜A͒` ϗʃ֕ǃlgxg3~@v?rgrƆ\ktC ̼;/ޓ 1Z{)逎f9N7ޞJ,NL+{^[4dk?"Q+q1J|MM6&Q־+F8OZ"ouS$fjq^SjT&hMXTb6~ \`t >%YfCi4>OIic ^˜"L8JI0IgH}Ȥ9Wr^ ݈Iiٴ3Ey \:'Hb IdضE{FlΓp|bNGω׀"3$R`!QCVԫHM9ָ"Mc:GM1fNy?> ^!PHjqr 0SC'F5%|@[Z쨍95rǛ<F*կPK=yYN"}>,b@Rd1c>iR|&%'h!sJL|09]}'z=[1֫Cߋ9-e!lScOJ`?Cţjz L1Cb!Qjf~:ZWRɯuשX?ì|ܬsKӒƀU|$'Uh-Z:益U?zGL\kfyY,ŵQNa9RyY9PL5Ou6A^ `z$`voi8vE[w) (jaduW$X኱CCk~]*J_A3G`ع} 'kR,}PJw1=ןe qdX#<ɣAePBYAʩ64v &T%\ E _2ux{=iCZ9Sv]qv}cjrWA&uO_+;صTq~1$߲ڸ@p[>8Φj<[V;DJplC-,yjW`u75&U(m틁u[~yg:yൟI)Q -j"9e0qt{R,kE+y-YkqRLE ׋^X,9Hh}N4^( ˵G:ԮڛES:m%H5V s"زb2[j[:&zb|Ykݬ²Z7g+SLx^jeSyCrF5nOSgn8s%Լ}퓢3Rg#ɞe%Yjvkz]ϪVY.ksLjc]7](ELќ'WZ3"c !PgsVSkƘu5rJwbݬA5#R7~l+vr?3рFc,pOqse?֪.Fo%5Ucή%.)kvh էy%k!$ΎG66;cJ\ *yqP )|A=d$a'}Bw*8{g@^-ἒ7|afIi<&{lT/x2&&@jswQ>yºD5ᆚ-{yc۫4Y 絿uF.A?*~ uU(WL&R ][>.,qhN1q} {PJ~ g&fٓ˴҈8Y8FUβυɲ.*ptKT\@iM#X\uo6['(td;0~eԆ&gƴ0#.9:uN 1 n,Qa1"کfI-iTK3#EN9ML0Ĩ91F^=&c;AAjx9R:G뜥0yzĔ+۶H%,)R>k_1HSõ%˜*rNxg`N)p|8߻dNA/L|􁽕f*D_R F({L QAy K,~:+dC'&şS됮tW HN.?!~ܖKvqAPho0ey^WKp뺰 1)T{@ɘ^pSxgVx n+M]KhjطRՠ[M\kRN[_/^oJxz [eם"xWSz(91.fRJS37ѻw%UBօ8-hG-ͅa! 6Ske=ji *連m_k4p˘2'GUgdWH-[#HNJKTnY 䠴6oh!6U2>C<٫Ô2kNL̾$צO8]p?ig_x;oem_%nuU,Xޚy彷{Pڪ55vz>sؖlErJrRT.b\|0~w@J^$8rJ|+n6OҬ4"d<(8$MKySUrѢmrW:;:jNR|4cx){jm/AgE\$ȫbd 2V8K RsN_d TY3 bxSp>Rȼ; XҪM, \iGU˃2+ _؏9ש&cz(/紀:Ti7#UEB%Zt݂!vOfƷP\/c2*>]^>``NZ2"UQl^YؼgōȺi_ӱAەT<i]y<<[°ܘZ~bN푈>*,DS/Ǔ$'RfzM$3s4rM񱒁3x+|,eOܟ˖uVec} Yr"p6nnZxy1YׅZtp^ʘuUgmLJi尩RhtS|$(`E 9Α;O+#.:^^b`MdVŀ]F^Mɡ}RJ/M.+9]vf5s|]"x}SVŇkV|a*AP7?8tE>')/qAKphφ)IL7ϝ9=G\iSH>; w)yZ휥Bd 1)wcz2WFcc@63=p.JaM8&#t*)'aSܸ!Y g\/1qnJW~yqtS@6 &g⊍Y ؖ9&'QSr} @^:)k2xjUsLKȷ1ޯ/ R=18ZJ5%t{>E }Vt'KϏM60pMɝJ*Ɠs欍:t C̉& IMK"]W;5!2FVV5$:\]1FN|4὇q<8#HMLSf]7KLB]׿)}M!-/5?Kx*)5FJ^$,p>뺑VZ[mg58Oxkpe1o(Qf#UGWg#!1u6qÆ2l޵ǔٿ/uAJ,v?u57 /ӜTĐ2 ժkjШ!? !2SVyqE9t1lX(^Q geԽKTܜf*E-D1GLKx+??xJ94,TjByTk;;yYg_eOmM'`ZV' Gj/ ~9e"FQsV:鈳V~x'ǡԘ.9gJ91,_F~ pc| {x.!]]~*AQc~dQX 2<&!⼓U4/˼hk5_]jooS\϶0ƹÞM6 CE뤖g;X~Ν Gqٳ(E%3M'r@qHL>JIByiMD)R[y05)EJŪ{v]9`z(tz3I/8%xX@s>GCiA{XjF9p]gԌԳ:4hrMqW v 050t`<K/HO|aNs8yPy0өA-o*[,0>YMVXw18APףOγKų׻-< OK)o-[h!Ս`E ֛q 28FGy=j %Ju/TV^0}w|u DɄrĔhC:e7Sk98OFZ{1 D)iH'!/A9FĤHnrk' }FC~Dgrw!$$ XZ݈oj΋~r .8ȤMҢpR92;^*6(e9D-g0m8"vCBDhGǹG"z)2~p+kz .Lד#I4Y_?2m6@<;T>>6I`ST* ٚ%GF{<6K4º>$f@ihiY牏S5dhKEιyY[Ko1['oq,&om yǠI]pQ f+cʴ%nzid'C97RT赛l;=1z9CiUI K~sAgWꌀ*K9鵲n+7^&2LBLL!8"W3OJ;bK@}?huB4tĹ>8|t6&qTz9Qn).γj`a T ܩ 7;4ݫ!œqh8'"#V.;tV8e>7pqYq1Ъg9ر%FGYÜcyJu([͐S)-d3K܇Xu_l9'w a*4]Z1x>Sq紞\jeeLkC n9ԇ Zߟ = } eeeE)脬fO\}IMシ. m?غyIZei)ӘM,;q>h -2^NVrj}U\tMGbL`MfvUj6^z㺗W4_fњptL ѓsd5C<#z/qCy/O7xo*)yYr%I zW *RT.GÐav%aT;Y0-u^^S$ny)]]!.iȋoRdn]K11 !eJ&G98yfb.pƯ_rXO 8qtγ~|N)?C2usЀpv xln_~FJo-ݔRe=7H>xd8-q0+q̐4mI#ME1g֜y๭u?78"dP{z9UHȩ!j6DžԜkTPDHJ!]pv8y<6Z}is&KU+H)qy50½ok?FM9wNo~~Kx?^(k*C q=19isPpYv{y.{j9>TY{5u1E'xǶm<p\dٜEﺮJ:6uƤnM[ԤUYt1˺O,G.Ǽgwռu͔R6Z=c" yt3(?ʫ nݝ4WCY-"yFuznqMdFae]6Ť[%%$XY5ԮgXskz:Gz!l:ąxQ#_mf'L5Z ک}JN`=erZNb|>5utp^r_礢1F)~ƒ>3;>c)>8`?g|*P}]<Ġ%N3olm}8-Ť&Wy[%0i̹ X}oD?I JE>72q'wzW1JU9o"3D% qO|_ :WȓiF@o_/Z!"lIHhcj 硨%Oz=Nme˃m0"8'l@0XZMy|vRF'owff ay(4!Fj/ͳ.Ha 6O; /j4Y.G~| Ii#qH ĴN}3Rbppc@J+[XeYHi5){^T>6]I9S"E0)8$JU߶,zuh4*ٳVkzQ} R`:y9kIlЦKEM7ۡ>a6̵VMԨ4jXѻ.Yi>Clh6͘ A.whzgojc$h$ D;2|W*zkGuXMDjot;DX4K]KAֱU9| Rq .1KĬ .u8Ύ@QAyQQ?]H,V !eXH,J)m %)+^oJ%!(bo|~|1~6rǟHK"cAdqJuN? `.FjE벰Ƃ?>H @Z3g1~3qV^YJSS,j ảl3nk]4 ֬`iMYT[Ѱu^StԼ~}yہYLJ~ sLF-ĤAN??c9:<>hRx4hm?|* z'F8'Cl"ޢWD6jìt)Rt,K¾Б9D㹑ru1jJU+A_k<;98cɋ~n2VYCR'x~ u:- ѹu8ptuvl_jpvxQ78&YZN8zP@P6+Ggx 7)Ȃ8;5[}aT2H&KT{]9W>Mach@ qq7uU(ibsýi+l?̋-t}kS+ӒGYP' RU`ٽT؏I!\_+Ҏ&8e)AbNƶ&{נ{nԐfFֺ=s6A`)zKCNH)W̰:LI1-$"R`29Y,fNxeM\.T6i0Â( iޯ7_x> TJmǪId{Od.]s C;q=zVb9:O㔺ڙ`[3릠%'Y,q 0@^^cg@ Yo6>T|{aג踙pi#ݼxR˒I1л|J$9)MQtRp&H. n\0T娍 O}/BfI.`ڵ!1xN:lC*X:E0Zg͋|^X]>eۆ|EFXs^%thr`Y7pb_9i)Q_Cœ7(8+J9q́Ye%,h1ygtMn6KY攋'$(v_d nj*[%.<%ٕd)EB }GXTll9r!NWXȑƹPύ@pA4>RGՓ`<>,4dU)FX7|tǍκͯoZsG'>626Kk⏏GqڸaKI j.jKd 8:fe%Z{YaZzWϝ*m8! Kh85@k'qwTUHS GNCgi,ΡtγL~ڸj1pYAjbFIJQ 1lҒ ,')d5jb`'/'q]M~dN*9]QI~g<YOU.BX/j"ά:kJ:' vE',dXkVM6R . $ FOLR+PKYɤk$n2CDo*6hp1zO8#;>c !"SPˬ hj}w AZ"2)xO8bw}n,NTl08S>kXt(^|`g:{FJ,'a;pxxjNs $\0Դכҙ@\䐩G_߼Ά;z>)q+ؖUʹqH1ڵ<= oAXt^9+}e5_L;;wÃGoq?:hc2 @!{rzūufhR"YG,J_'ƶ$_=:kM2r[`[}QVGB`]ʱc94uCg-ⵟ /Rz% ,KHfoOl93.5 \{8{#;L9_`/ Rʺ7/pMokJi$Tݪ;@2ա4:&uLϩbm9=åѪjaOeH]*^73vXa6}F4\qs 1pәޔ})fR`8MH/p6.+]J{'7*ߪieV55MtM&iM.sskwjDD{/LҚeOxFb# ߇b[les>K15=cj̲&mյrڅk9:~Л.ΚQhS=M hgNȶRge+Ge5dYct֬s[Yr㹚;FhǶZg}Y*g)$օthӽԐg)xߜ7V1"r  ԅ3dm"Uw y m"u۵PrZ>EWXs"Z[k!@TrIxZi$嶭tO@J\Mp5#@L3b,zŖG gO' Ղ:lg8to֣gjhM[+翽WF9 Q&(-b֮!~ 1˲B"ŘQ#'$c-c9c9XRn_<֣ڛ'RΛ@a?R^j/%r3ќ bR^ʨqxן9¥iaͪk"gm͞7LAOIi_RqxPw,zG TBĥ$pxYhmHd8Ѩ׎ 7|cp&;6'98E7}ps]RkXvN~&5>Hˢ :t=,^ј1Q̀Kqš2qBmTQG%$O6Pf ^);ANKWd97o\>Ҫ}Cř_L;p)Hztx84MׄO%tL, jc O{TH5)tnpopT1ؓ69S 7{Xъ^WZ1*$xYx>2cvq$јҩgcJJ.ּu0{׃ǟ!O7fr eh&Jt8: g1.Bދy~< jDqpFYqR+]@1=9szOs#lKP*'fߪ'i]!s,ѩdIᣣ}R8Dtn9n0ոO$ehHҝiMcin]߿(8N/7TsprƠ'aWlKWfk0̡%D EPjӻ='.ix k#c7 }䂸vb)Ơi Rm+'*ߺ x>8OFhk;P<x8^N=wz- /:07֖މK&lNZ(5 t;OSì9޽'$,[ZL>I6%'tNИb?{́&5W2]+PT6sn%ƥS{}k/ܼ?Ò\˖r&8.7?nq>txckje8_tEɞҚ,U)ft"tJMKbBJM9,9ڭ$Uo T^x[JŽa烕{W"r"pI(›0`I)Uj׋/RR@S5y'~0l_}vbtyyzzSxxk}RKJ7?rdh/C*$%51Z7ojnOGvxvfsugT)REL1~iC3'9{^Z pw9~(*V\)%IsXŽ_sι_W[3i8_&kjB`]q] $g\LZ)8ǭ>,M>@ʳ &H{ԕӻb߼ـ Ç bwz}}uOcY=˦Ⱥ>|/4~@5,&7w;h- ZK}6Ŷ1. 4 2lY=# 3pS7y֨IQERU*o&GԦhCSP+6Iwt\&腸cl23?` l&H9>ˀ8~}.&+y9\IJn0|f"Q>CǬ o$F^S*weuslA`fiY.R 89E)GbJsMۅ:> |k&X$A5cLx?IY ߍmӝ!P픜}.&=s="}L9Ưh,R:̮шY ۚqt~_߸وu0x D?,UW-3ƲeXOm# D]-Cٚ&> S'C2UR%O9?AS2'ǟ"E%t@p6k,-IbЯ4}ujpi@Mym*s"|S T)UjvLּHg?|؆18mx<sb{?iNiLGJ+pA^*q΋g n6RSqн#?7P\FNGӧDm5D+ VBt/&[`+Xc#"9\hf뽑8jJk!$=AhTȋ>e(ipz1YL>\[qkG't1q%]\$? ơґ*qOS^e{Xm[ٞS̥H5`?\R/A s: PkSĶԜ˺1- D7q&Y'&:5忦ûƐa\]쥫Si/C3ˎAi/[A~ q c.ٻdQ:8&9YnWb#&vTfnPa[naɡm؇qga$FCG4pN 7CѫdNg)R`M* Y5KIw5.7ۓOŌFZV@_ͽ |5{]ifɥ DN kfqZ ?aN3^RAkK&n؆HRe,O!1RlvY^Ü5{<}j)J"H%c:/}]jST5`_;e/iR(8<>?>K/kc|IɑgYRf+PےI_WM ,nP45gfV +q2/RL|3(J;8N07~jCl:]J'oFgܽ1=~*o/tSf#W:]D5@gՋ7y5]AZLnڌ1E׼Mct Y̦`ۄdR4Ef9EǖYǿx>9(Z`@WSJ4ݯoqFcLA-f׿X.!Uՠ2;vLUù*E—Nq;ZmuyKF5!rһԚs:Y؏6d|TU^3ai2Kl5Y֍Iæ߿뛘OJ^QƹT@q1] m;\zJGs|lҞ゗)v]j,9$YvRσ`}.9S)VqL{%bZRT}mAإ!֕RceIL ? ?p;E%9, ;RF)ܼ1V:.\pO8unU״BlMHbVۃdكl)jx^{S&/ξRXA!kTYRE9̖R4 6ƇН)T#*uguM;^Aq:C] {5?5r& cŚSMev 'ۼ>&uoPbkmf~mCt;Ό;hmPyg! (݇ɲFj(=<Eiޞ/ VO+~}/~oNZ>邮yܔeG;S4dLD^;à}B f/LʺʩK"^^8Op1*1~>kZ~(:%C|X0j?tHWZscYVQ{I 9)dNt>G&hn4krʜ%^M^[L'cM뿙鷆ѥVFeryY,+a(+޸+Ra倸$S^ 1 {S}TӷЯu%K+Ai?ѳn 9+XRHRmzs_ufK8_+ʜ't"sBdڽ>)XqzhWtGxg&8OnܼU,yu] Yz-vM4$EN.z@oO+!_D떶:ES$)O+92C E7FᦊgW:O䴙W 짚EKN);Y9L`ɋ&m|DrfV^QM(-Hݔ0Df'nW58sw Tl FL687J0Rq6k2GO!+>- d 74!R 9?$%\ے Bu [)JHFp3q>`hʹ>V7|$ s=ԐcjjCvH.q3@jD"Mʥdpn,'ֻ'YyhΦ>fϷ&mQBp>٦I=Ȝ,])2_7#X m LaŬ) "n֒Am8onRL% FX6IWe_~pQgBȑeYTCo!Ȳ w>>!IʁRtty<7%C͝6:>jJmT"axLF,)gkGdk݋ܔ IbA;;X[²@I*ˢջH+R&|iM#lz08C7j=1S"X4)A:REg=ѭ;je¨!2~>:s8E1x x 7\zɲkm7v{>>yᏏS iM#MRfsR]A/<_he5Ն7=ACjzvjuj8*h $ۦ`ǘmhoȫ}3j 8$iY13ywĔ q%㠂4Z#:8{MC{Tf}ԟ1Ք1tvXW)!Z9S)-+'߯/PI}Н==μmKlBX> !z}5s{gB*w.)` 83:G'繛H[}5mS~>`4@ GyL|541WhZ' JS.O Y`˒q5İ~1\8JJb6(}{$.zJQg!77жs΁/Ɠ=[]e!; ٖ,˔rq`gW^ʶ9`v:Ǔd֍pÄ)ɺ.,y1S)v|/u,:Ɍ#?Sk, .+ŷֶ"]ͱy]kwqz}ajFJUÚ;rZn?/0o_ؘ6pn4dzQ/sHRI~],BlU\L1dmL[L6d7Az?9ޕLzu-̊Y^I_`r~6YA ŠXօ'jf sEf)fg},m|lIP=/#>?&8WtJy}zB 7I;'axt{4mR%e91spXn*!2D^CBy-lar)9rB Lm]y7n t<ׅ0spB|ZIfI ^uXBom۸CH 1'bb<֕r*}&J^Q-3W]cYcJA)=-t:''ɰCX@%c]#h||>)r*tSCmMQ/ <5U :TY|ҕG؛MG1oGm;R1YS1qYҎ:[e=G%^GH .*j0ுu n.ލv%s '.,yhۇZq:kcW~X%FO%Iu5OY&.p=9D^2,T}>zb艋R_ojmJ3{Ϟ/g{KU?uƚ"~Ъ`#cYm2okb4 ^5%WR 9w5) e>`-)ݙ_ݙٔXO<Ӭ" k)M9U\͖!t mt_:+簦N?,);d9Cgf#y3k1JВ*YmVap++UT>=O'WZU_l1Ɗ^΍ڧ87)8&&\j3Ǖ~5е5/ ʫqSBCP*HXOʧϣ ~R'׮p,,xR1ތ+emYVzBp4,zoyjJ:&4^9Y;r!Q{n(0K֣rRk?;XҢ{_p.NHOamz)U+-}0E Z;vGV`U6Ku-|d/fb%07=uba-p(w5>;7c^$x=_0x=nPb9f:n(QkAE>WSn^jKί'xj\^8m@jtsD7HEJbw[FgOnn*βH-juHA5!X&Ň/S' E!܍*7/+D.eUAu ^kM{u1ڜw?)߯m$>WaM16O>/}f,LekD ;-PQ+WO wp5n[8 5f\ӗHpQ LIu~8`T3肋O7x7LC8m쒩z>H>(.cDpfހCpN<`bE>m ~퇊RHk"-da]Ȼ= eHa ~Sf'dt'bL\*b*"~ͨZOpu͖@c?oGљlV͸*x3'mm0b lqL=|zr=u@T,qiUd)#ZNSq!Bt'806XctYxp՜T-!`!AJڛ~CK *~/@b_O&)r@0|&D2gfSu٥T>TN6\wO7N`D!k{)4!(aX"ʾzG\d_f,pdugI\17Lf=.+W|U҄vs7jȺ9aDi8թH5; 4|^iAZŨʑ:).mvR5z_oG%.qI j<7V^q1ݤ/P6óH_M)LG= klkJ Chܥ3jQܺ%+aj*K{xR5YМ L9S2ؒ,d8霆J)/\MsY_R_7l:Z,19(8ITOS75|&YOSa1FM)VZoD'5~TE7dK^S!'Y6~M!']T Ǧ}>x,ˢfY{ GJӀ8;^fm]n7r^9$F=;^e~Oa8 zİHlXj2RfgHի|ۺXιu]AlkYR N&1Eb6UO+tZy^Ms%v= ql1YJ)B/VяBZ=pr{w{SW6EzC.4Lƣ0C{i)ł?Zq^9xl,%N3קBq]/>ΚQbl+wg TM[%H% ^kެ;SaRoos:uj_j[il_7L6wVƁ؏ߗ* V[L J0F *ѦnyP˅pEŶʨꐖ98_)~V&J^|ҡ4)dQϿ_!n9v%Eh*#)z38??UԔ]M Nk $BjfHGUMGۀ`mИݤwFwg'j ٹYC?H1:p}z+9GJ&5yJJEIqX^|+uHi1W&+9H9zKl,1;, E?UHM6"x,>hTz'm#8}Z9/q*,ffZU BVP-)DA9hES!ɛ5RCk^v}7p7q 儋Yk<>>S]}06mW0E|uw$IMl5 ϋWeysHcΛz7뻻Y}vtVs"%sQ)|n@ 1ӽ^G5}rIfԯNBS U&%S@ SJAv6~@DB}*05.ֵSZO_1WRb]D_}0W>߮ݼKquRy)c}q9 y1~,aD΢cLb6rr5RxVx>0> r~c͇HmJw^M2#ŤFәRIz/^%VG؍ tsZ'1IӔbuoM'Un6,]y^f-xgiAəKࣉ,}Jh&=1j(L?oq0 6xPO5 =5|{<6ǨZކ}NnH%5f"?jM)RnZnaQsb\?#!\joG*+Pq?1 ̾{54/do" lYUk'F%}(!9+c6 PAƤ{GWGk?D:@>Cg1&L7hcbI0%(赞CM>)Si;u\4f G *=;ԥ]֟5aZ)mOϢҔm2w 6@ RBފMnO9j }N^g4Ϣ3*D>s^4|,@;?~~iؔ%z2h牛@ʓޥhsOueY~J>S A<u/tv.]ӟ}f?U J-B]Ɣf gU-i6azRvҚ?xALC֦g:gb˖lXdk;INGR* iñ¯a:&DX oSnY :dYf &8{?Ա{NӀp&eYx<^mPM5IIbJBgwVOKX#xϲ=H>NY.{&1IpCf/s^lהy֘U)% !5S[vv' +NS _y,RNJ;H!KWY qsJ)800.jo.{@dN9/s'u45SMbVsp:؏J^2`0hʶ4Y,(c)FMjcߥ>kǽ+M!Ƹ'3C/9Z48W5W;LIvF=*+9*æL}zvbM[ӜaN' 4 av5+ULZ@WcæN>X{ AwTy\';Jz)4 pZϻ(xHJgX|n 0yC\,1XWB%8;>~pnJc S{?w&O)Z1"P) YTIA\Z˲YSGXӚ)IdWMqרEGrk<0F6?Tl?M?κ_ow^2oCz;&?V` V"}ByQyy\4{S>`j5[~MlU?ߓ w Ƿ&>2/)^3 R/5(jZZfCZ4l,nJeZ+qYpu%& ς:,a[Hq0aN}^W'u4i fk7`ޚ3JZ<|`&Bi">VPuNJo̩t6k 7]a\^~dV=Յ1+8ϖĽ!唥 '_o=TcKC`){la0HR(* 99[%m p9g]6P^VgaXb&B@!AM% kOpSR*iY̲bІ=O-rbYV5xFWSl id[R9H^y㰈6E!Z:9d|ÇsUc%:Pq)E[CZZ7茢}j\wRZH1=Un -v>𐖕,ߤ1ZF=|Z!h9d9CvT&yͬB'):fiptyhGL<*TlGbx&)kms۩iSb8 pz*w4U⶙ǾJ+'a5jɲ-u4rEޙmzIiwt.|d.#@HIEwoyj e@ X{v-!Im&>)ՎcR' S%>v1a1G 13ZǥL$i|Bf>چ^U AKl=xf\\ؖ7;)N%IGkZ%FlC˲B"L]j9B'FčNpQ ;ŕo"a:Zj[uPo7A 9gEzPsm9y-kLiX_u}Q1}[:ySM6#=?  AӼ,R9o<zR[[kb}s{~M۷[oD]ʹOJB=G "m$s s4j!TAc]탂6|~Ĉɯ_߲5,;:xl j2S9 U|] qQ _eAlR?8SScF-l63yۃe_>jLoμb5Kaj\ tZMOnϴӄ~0oVHU Opr/,1I͌ 9e_薀?j^]aZS[ /5<)Hau5ѮBbxV—$x@/~br5VK,Vhjb oJV`WQJr3W#d.ť2 #UfiZ_ ``#]= ‘l֬k7|.f~JdGr^o[Qi9FRV!1_R-t-JIޘ)I9xKa,*$BoV #8(gϯ_RV?V^y<6~wD7ip;n 1bO}n)؇xcz_(nOtLx<cS`Ym]bΈc]tuWl]9U-9﮽$_KGon+"s] ow nFv?801"6ϧI)߬i!aKdc/+-p;BYy{7o9p+bp73(d>rCI\3~]&g9o'uqKr tXx%zoC#}7?O>]B11)`VѐjO!&If "z'TpquI"R" g\YuL@R`ro@bW;2KഅX*FBňbBB& qa:I|28eܺbϮX yd L;`(O3&?6 cP`v,shdٌ'Hzhs|~{ʴ4`erL1 c^K7d ID~ o_˛؟9t(Ex=]r5"o1*^Ϗl*ff[r*u9[!GF|SNrTy{l9q1gI>j[#e-;`2Vya1(J')èK6`]6zm'GPSS18dAlጩ$빗\KٛR'>Y'ϯ:T#yYNhCqVQëe$TtY;{BDP!(L)Zė?^4e"@-|j9!Pj+~M&nxAw&}0<^>(]IbJGKbd_I>a.#>hm}}DV3XJG'Ű8hC9^`MWG>ixYl'i2=!fڜΌ. 0OG7+UҚA/jlٴ'|ؕ(u)آJfWAj }\ 4Ami zۙS` ߦ.uR|\̼7> Up@JSB핳./赯h{l 4g?] O6wd' r]%gi3ֺ[ʖsbrr N`G .-kc \n&K1'"J mSN,ceo߾䘈[Bv!?d(qʋ~8KM0~WTv1;0u>Zu:o?|!`ͶA <3'2Ol-!(4Dր]!$Xs6g7IheE|T1']ߍ s&1mnfqqeshO0pQn=s8fNf 78~ds*)rMm}G6VZ'6xp=5}vCS[ ZS]1ϚN_T2koO6Z?U#ne@ؘssB ~TM Yp~mx,~ƶj>CiG zUނ&:G! 1: <ص49:{4W؍G緃}W c("(+10'kJ`[2Gٖ%e}}rVo)'y]RzdH1Ay^I흔WRB+c]L۶r'>!- K(?xDžQߞ/gsłwz)=9/N~]h>zK8 1G*@(=V>br*P] oJ|P? z]{Lyi3_(A3L{sV .` l4F<L^}9֮6)9_;< ^O%J#Y9KOswg]"Y<6{r6 v=7˲K#?m/ ICҦk&!:M.2;_ w',Gq6\t&UQ؆cv_rT$Hec'%"[@FXcLW.j`V)h hݩ F;M#P4%Z )S.0SHȘΦ}Nٶ'@"͟g@YSdd9%Ũ@ W$L[&/2ioaj€m -|/闟Oz?~¼@Oaadjnj쓽J؃&gn@\Hh#j8}i;UJ|$E3Eu>i]'鳢{G2v>mJJY&$U~yWN=8{-jK+X|:U-ERXU)p%% Jk'oo5¼GW?n h>[ ?le%hnDw[*RROS_^prbFU_ANQstԪ5,9&ϓ~RGDN.u Fm'7Hzf9l .)1kV*~޶,ƉqFi68>>(-fy{8ޑ"OMe%=VIhTId 9ҪeԱcg4,k*pB%/6z\rV)bK_ڇ"S ̬S,K1)^{i9mX $ h@.1vΣZ{.BXWâv3(,2<_Et8 &WVeN"uFjLn9x|\Xr,Vц $pgi \u| E9n2TrԄo/Q989q8fWS%-Jzzk.fFQTY)>PTi9? S^wS^WJokl lz{lTQ)+<%t|ϟ]ɭ.zA:kΓR*s@t2}+Q2'/ga,q7[ml12Ge{3yG\{s G?qZKL6lLRXWWR&YNLBu7b&-9%[S1xkݓRX>&bz 1؎}ׯbI%p:cvⲪ1WYlm(y,y`|f6V< p81+j7AiX&Ώ/o%ӧKΜd8c/K]f)$y|x& ^f&AX#?l 1VN QVcQz<Ĕ݌ݝ=7U0j(t7Fί㬹mMiK&@i2=I`TZLq{8kC˜7(#Ku^+{ʘ& e;1=тK{iOyΧ9ߣuz7X&￘){{e[Vlﮏ:.O_벸-6:lE I]vw,{݇qr> {Clfۤ8hv(XU*~bHlyv)b9EorV CpfF-6%9y9%"lĐ|L⧁7_r[Pލ:YOZKLI{!9:Olaz[tOm̀#00Ε(Dd?S*1|҅9s?//EIS*9%Fk4)3*x5 }j<_Y[Ő(QGg8d'h}%K Ly1/zb1Sc Iu˒uv!C^Z˗Ws{(躘X5Ź7alfٕt)1xa뺲=6Z,m3>/yEG 3l:.VtkR]\[Zc29zy(xp*z{QZ Hs̙sJ 7ɂlx?$.Pa1*f]<:b  /Q>Gt13[c?`2fRŦsvCaI*WC`ٳVR\X05M6-N<.Ӝ#@ *䄾GJ,F289i>k?qa8&3 %k7xIٙDsZ8ڠ2ϏRbDQHp!'\밟ĔIJH] 8>8֜UMÑ@MI~Nzd~fIVs6^N֍@u#$ѭYwKP|q73F;EpQ; _/?+N9@ǃiz1+<$H ߾pr90SqK$XtQV~r%d&zk naK^FM $gvr25˃NorsFsJft7ǾC-i8 (y"IݗK >{I@0F7a[x}4T^Kδ0<۶2|ieJ :(StLY?Gt$o{It˪hd&of x-KfaXM)o*r睰. ےȫB LgYRpCB3g=IQuY9gc?>$Re_CdC!yb=n ')!d8C|q9Tf:8M3AtVb:D"zt))Hx<KҺ1Y_5rSC>4)Q_E1!e'BE)+qIqUL^x~n vN^CLe>~eؤя',/$*Ė9[Yb1Fs*D-*ך٤|}vw%f]̙1/v~;艈 [#כsLp9~*`Lct`}{1C*gA֕; d*iJ3R]lA7UPYL)8d1܃Q{I2a;;|`YV7!'{jf,J,}J)3d`"dd|8yNWYH$70^ ,S,%ҽ,M>n<@@I/HW] }bw}*aҜ>ˮ&2|y )-H<kEmb6;~Xz,NԙeKPkPZ+%?mUeg5 j}7f˳JO$ 4p1Z'ꪔKUzcJ쯃^!joaq1ys?C>KJ|Ffp 9b y߈щd1۶jn̵"۶l}pʇ+b5C{ACfe$]_7Eo{-j+ 6t{4ۜ|m |(q?wt?9{mא^.֐f߭g'B._ڔ4!e_ %5-9I?T {GHQAOQ[>1I`+W4֕+§a<~ίC~wRa=0h%5^6Q΅{AH0砎Fi /rpPFo$oFDpT2Zs!ޏ}݇ ͛6:~h*s콗d]DGPzg"vtb)͡^Ч(XDl[n7Q&yAQ\}YքnδܕHZ(Süvin?rh#2W{kEGRѩS&9)Vֆ& 9쯝Eƹ^!rXH eDz'wt9N'mP>HskqruCkWRcxRF/7mE8NUy|yP. GZ:Q(bƌ/(n2mDo?D]cv"ur>w tIM[,) y{GGz?=q}-AO Z6%-Q3'M 1ۇ`Ep'`Zy5Q7?7O72XHJ }>h8Fd=5my1\Ps5eH`IFq#.mIe1P[a~z5 J\5Mדwf 9[w3"yIa~/R~$f3vB7JuȣኮN *w|r J)ja{l|R#wrb%9Iɐ`NQxچ?*(<~*p׉U6VыGGف^q/FS"hE(d3p9x1tO+fB -;:dZ~8^ͤuARex*Kۮ)Y TL+ϟ>ؿ>$]u?qrt5x>l4fҸq-P^4] dB 俦ԩhg' 쁽M^^xp=6Fb+B$a]Y6QוOy>_|轑rmc{_%rnR×/>vswb߶8_ c&99JtW+oA@G&2-z,w+; q4 sR§@fSxgg Aw/ zoΝ7olW &X*ܵb R>&1CM-k}OFr-]1IndnkRP8` \6j󫤼XO^ϣc%mbu)JJsjhl>6bw4&=cy))ׇ`Bg.8 Zؖ5'y ˛U I4֔WdtIüS$ۮ=j>abA}񾗰] I1U7 j̀SL/d%55 Dm9΂njD:PBNIy~/_@ RчѽPf6*a>_` %;&K$9La^)a7BIOnfȑSA_4%I,9~}o %_ߙpbD =m8͠PA=R^]],m]XEludq|#Y^-k$shWGb=Y˴g|ަ_|a}l 6I'OXUɗщPǷ’ R&. Z8_dɕ:ﲭ}^OY~ 87_zW6&h,kPfks~] Ǿ~߂Gs?,d#Ҫ%}ceK _@ ;g,{1mqD?+;_aN洗 y}~L)_n%d&_2)oڣm80fW#̛sI|/ /i"ݠOJՏ],OLKJ]c =ۖȋ|D~$EcHLBLFJH"8O in:$t?VfitZ7V0&]S 32 ^f2ZPj{y 2Ij{>Γo'Ϋw>[ﶮ4/E&?=Ms?W aaF6&>$tJ ڇShy%o4ԹdHv~ӿQx;X%e<&˲\RDpq`Yؖ9G~??)Qgng,ym %k1J(rkx8CX.r?MZb͙m[yyD%a:yj qg캟uІ#D:|1!~1y~L6SJ9r p~;RF;ZVe__;$cՠIQNKS,ɦ&m'TR,c$~59Y d՗Oּ(2RpC.p 6|cdKR!ioeU%霻 sT8 js%5-ͻǧX{& 1\:KÂ5dlKCr_]H9fGt2'B&J૆8}I^fvXbO .s?GŜ7Xwh @ >L 'vlKpJ'X_ duQU_'>xX*ibW'۶ܞ6W`#Ai귪G{.14TzT;'b)oƸ${Uk+qqbE/yO_,!N_eI'yy)̯~7X :F zKN270__6tw|X$k֕, +ؘ`Sz&֟=f2އ NGqbqy 7/wׇMʮEuc4}dچcus}vSұ+r?<.cP$mM79]y щ1w_YU$;aU NyLJ?m/#>$AL+ݙw27-GC%_Fx>e^z @KkÃ$YI&^ߞ$7ج!lY@~[K$@ PI3x`voJlbSk9cǷuoz2G#/Q2nr2[S0k'N쯃(bL bo/5LǬ2w}/ḄwI4ۚ3, ٶ1g@/_yIGǗa\x.IJ|`wecA5t{R˿ALX9(8zk|t^r9`Ckx>VL~蕈VlnM?}A~ۘ!X$&^*n4m#dƤ7Dg,M7@,X/z;S2y\Zȱô:JII4/+o7N*iI8׺h* Yuˤ7PڀiS??-= $ W ٘CJ41WC wD2*yWz:y~;q x#˶pS ? آ#Aq4 8HQumą$.|r'9"PU_7DǨ'DZӷXk Lm3~U3cm!=.3xV\ih~׏ JA2a{ ӿ?Z:p.Pm[sR$6(?xgyʟA^º$0{!h?~zc*މ_w H0;X>1E%NNmR]i&/ٿK,Y?i[MYhS^u!JiPϢx:K(TkJmJ+_PI$Dy fHQg4߲R9#L1urg?HXE,؏S}:, _VodYWmeȼ=hSa>EvԐ"Ak'0Њ ~nC\gɐ0iU1// 'Ru_69Xv?3r[Г~YfS}g2 w~{3@˟y.6.6O?zOs:@Һ맷0Z <4X9G`Ңy/`P[Ng)|{TTِ'ؐ~ab(]Wroܮ0^YV=vn0 E"z?GW(|˂R/ ߞFr3vΦ,Z!fE'I6 99y \>ΐ+W]Tt5Q(8yZ8ddFMk]o?`ǹSY4t.a )JRQH1O@gUHbM-S[eKIҴU,~zҺ61:M~ isߧ"Dk'mD*  `gfsD?ASMGVAfgDuiҏ^;7֐Hs7I|X&J=˦S`>&@I5_y=˺؂cBl%W8""bgs x#JaT*yV.?Lo2>%5u s ALF/F7/;ceժb7sf-^b^e2!y1m 11oiFVbL)+$%Is y'Ph+}bZ'H5۞-e2gL!+d y~ʥ&)@fZX>GS7HHQ 3Sx&OnI eq7#$msR[g >`/:u944]TWG^j/).;[t{|w&/sIrnޏs19˧&欚 WCF^)_6{Py1D ErcNR8$l|m]AkPk#Eqtc+C ry6S(&$w=xxЇj-l8D䒓cbLGΉr*dJѱl)d}͘$),b>tXxXVܽOK~}gz;[^ۓZ{qH#/1d-Ο7P4P..Vj-iQbybѱiFcL1Kki@Ut||6>i.55O>6uureג{syO{(|`Dn$!#SC5bmW^Æ+]!?qb!oRb0 ,I4GC{pj5Pnuӿ{s]K6h̩9̛z}Z%91'^EgS)OlqGo^T?'&>5Pb=.pr4o"el} RXh,x%IiB$1k3tmȐs[mDSo#Oa3TCL&C,lc6lL($h p>9>6?n" 9pae`28u]ѫfk˃*k},a~˗4yb'y;y2e]qQו5޿<^SM 5UaI9m}|v|T<; 3.TO_!F,>z#^OdN .x$&ĬkΜeUV΁|˺X,#9 Lr9R\;qRdE1~㤝7R״Ydhdis! x l8. g{j(UtVJ5'Ft:^Egs)$~ttyzL|$~*ɥCI/8Y_6T 1x87'4uMRv:04 s0 RgQ+Ƙ6rVc dd9$&Y{s06$ 4 >'b}vjyYJS`z+ipl%3 QE:ې~@+ K+f}I=1OlK1Hk".>a?N3eW ^yů'>'wyY{3mYhA&5+ɉ-b09eS7WيU)BFVRTDw$)(yq v .k- e[7e1ySLŽvP%dSGh'/%1ʚ3_޿B9cH93ZMGATYdY9]H%X༻+4;gGbsgu&])yZH-żE<{;ʔ_% ^^1g =D>?\ esHdvaaozMf n:z{c8ϥBoCl!t` p#@T&צkhcz3G*OwaȰbmk`M`ތ$$LhdN ?!G3YD'\y'D99F*9KFcLǸ)|{EbkM԰ynHJ )$bGiGR`)d<&&(2l1@ `KAFS —(QgQqv BvE̦ ~cFE6 N$-YEhK"Iݰ@ yX#,kQE=+)%y-؇II Wt0;ݚz'Xa@'hyGBz9I^Ӑ:6Qme"F9R"SvIWKB7\ \f:QՀDq6&o^{`lNy?~ c8k$B-sWmis?&hu0!@S@Ob%fX1ϝ3S¦wqӛXy9Ib[89!XL!(q׋geMٚ:53g1}V%{κ[PgoSC2~rFp燽[2ØYO;H.Eѧko\@KUG&qN5g!< .{#0=yZZ)l F=ʱ)c06-3Ej6&09 DOtsX9a&/P*ze 0f{<6ɏuF=ވ)Cr%,,9.x0Z5`8OӚT-x.x+εWh wZ$-pgm Q}yI9 v=Gqp)`?VQ;57Z,bZwyZVg;JL'6𞨎\z]2e2ot`8ɕ.xbsqPS.vi@~^G!@'rVϝu[u3²d%g ,c?^bx6`<1y~BaMA,g^~[+)(.w,S˼s<#d9~ɶ'CُV~\rW b~k)8k!HLױ.GEpN~]G%v^x;7뺰纀h+Z]s ɖ2X7?}|К\ry,KօUjoJv FeZ󒇍7qE0Xw^z|'f=T|m8=>%Q qسiTcLB~Q;D:[y J!NfSf8y`y7LI!zX8`кw1bR6c-FP4qwO@+ꚝ!Z"Ct6r<5[>bmol0c=V^pmкL)]RԻRZgc5bavz; iѡX18EH|e]9vJzC)"˪xu[)F%;%pq1M|VQdz2$S\f:߾?_Z ye0JH{}t  6mncrmCc_x~` Q1lR6mlO̞){Y"ۚ~5fW רs(i;UIF$%It_7>xL.) 0g#LIt_MB8K`iF8p8kNNeYƤ3p Jo*"L'mh6A\PSiCޅ{ 0&,yzVRN|yo|`]VJ/Xjz=SZV,7$ TZ4QÉ1-\" /`,QgUhDef fJDkg "ۃ?" æ^ip!U 7Wx&3WRl+YXH2t_^Q0fxkn,U%vIogdsFl%HJBL^#}ThGK952`FK4@Y i]89nta @U0$WKdt_/ qK0= 畣ynBϲl]2[Z{'/juC79sg{5ILd*Vmb+ֆ:j7cZ.hXo䤔aC^"^L?, 5N3Ld=6}Ssv.6l4: 4FqM^ל.sN=!:c|&]P0ymFd0d־-0ʞil>w`3Gq5Jw4nxXժ]9.`r~~]0&5nlsq%3_կ؏6AZ:vshxZnKVb~y⋣6is u&g=u!?u:N y[m) lN%y$`5xKT%I: 3X:5D76&47VZ2]Zx8F'ʹN!W3ΜTZ+wڛ t2 Uf|1d]R۷=zFڔ=×/RƚJ_5uXNz.*Û䄜4uI1q9F^Kc4.@ 5sc[v+W=!LO/ݟOx>X߳vadsy5xIq{$}30P5D6ja= Y2!HC FGk0$^qb %@+,Pqތ- F\иby+3QPwI=ݝ$x}]r$fgi8k}eg*-b]^lj}1^SJQc -^lQ2d4 Nfh]D l| .Ⳇ'fK}f?L3 :.2@kF!OQ f>/0`;K!J#F|}j$OGfi蝳[g'Ԥӹ m,AM d ֐`qtxO{k6>AɄ}b.6:G='C`L1&}>>N ,Q(xC^&i1GRX^96F^; q.} Д{9uU2/^ X/dY\8l(g{~ cǒG=)_ވsgLpKʚ5:N;+Yme}O`4Ik;d?Ŵ^ѾڀO i_Vd(0x{QX$RTIİ )FׯSіu_r\BRT۶҆,:}dz0)ٚ"ҽ:(y1wR^x[V`vkN1sJ,9e0VYqFu}HǼ4p%:6 f+Hm,,)hlKy af Gt|9rҒ0;6o-3G|σUK??ǮFX-RPael|F֓ [mbG8U}3&Y6:FrJm6!)v*'cK9 J9q5EOd>c xZךN~Sl]#Re:;Lv>γpvHV0ճҫ5d ȧdE쓏CpwOx}ѓNɾ^iQ:Cwb`w/n{'{M4ifۦ`IZl4PF/V*dBƃOwp4BgtJ _Qcjfދj"lkgya x[U~[/E^WBJVTe%pՙ@L X阴R]XߝfLqRaU{buW3&`&ޱ=L'Y exMR8[MS>Ey[qN kJʓc9뒨gQ 8q2j#z"ݢp:gJ'Kl9wA^9QUd9kᒂV};qү gC*q?0(欩4]5Kn.)ww٧Rݦ߃Ӛh>kf7潞< K2`NwZoOK\F+aGr|A!=ݼü ?{nwXʗaگ1ny]=`wL>=%ϴ|t$z6,K sw4}{7״h0积OJ0$Hm]&+\ĹkFv˖֜JaN]5'(8)9ڙSu71n1yLme?w݃.ULi`ɛHyk?}}LceգF8+Q:JQ2-m>pp1n-m&3?w)~q~G>U/-^LaK9<DŽoyrZs{wn`nUJVmg)xų,DȋH)&IfޫwF כ 1_n灳0UմekK>lZ_ |>՟{ v$dySƒSѥ hqs:1M5>:4*KHz Ƽٴ9\6oCͅ 9cp/+2ٍHZHwh9pxK7*|iW>8[TG7lMIBzǸ w^l2'}UPjF j:yĄd3ڶ詽7{V0Ab@ tq$\ͱ䡔=&+kgKdʒ"uD09>vh%:GAkNx1 0 i^0p]&1gbބ.y:9^rI+:8B^%bIÏA#FywZ.JtQ'[ug3L7lS(σ' o_i71: x, 9/*y-8[57z*-MĘ2%koh7-)M̰u}܍so!.l Q{I y%^I+6VSV o'S, 7yGV0-xhrd LsrM39Ik!yFzM'#Zxl $a1$3` i1U |;>y0)R(e̹MO&XvD䨃q{pV1jBV%<ž_uP/z*6Ƕe^ǁbMdؐNɥ}eˬ+˖ Qg'dR̴hEXZ| _͜%Er"iy4 O5au|+0UXiU48}4'j.P;!E˂&nDAXeB<+ 3=ż$߶-ƠĤS*{9 >Z̳0k%2ǀ~br9YG^H&aH!4IW͉ uY$+xL!j=$5{c YV9ޑ.g33bH)q1]0,̜b Nw,)=gfηo_i-]{Nɼ{:z(7MHkWoߘjgc ;ѳQGLi5$Ǥ?#ib' N$x5nFJ% ; rhtzeT}zq;)Mzy<]`u7Ihp&M60㒆~}Q{YjF,p_% (z: =1Ye%O~Ѯ0wX ղׯ\}qԚP$qK%]*68^l@znǯ2kos5\ML|gmkA9e'`3Ui߬yJ_o`1;6]JG=_,yeY57 hol%n?'^q۰ EekgXirI Vuc[%\R|XUX9b?;O?;(}5Y*dl6XbdK=5eoosJ|_՟hUWΛ_\\S[. )b IIf5g8b5f,dZD9VSj=˜ȭS{O&e ML;dcM4y'{?cDOX9-IZ,/C論P[퍜6tyz9.#F iވݖR u])'AN7yt4lWP+òzy3^[LJ{gdh>^~ns7)TTb}\?.vڵ? ]c8[f_p?_!j 14~X1 9=O<s#kBI;+M¼$HA7_AsJ j`5;"a|PpvQaEIpb-ѩw,I S t3UC.P;"U{VX\FV7-=әd2dNFL zD=D7D^{aZ'gA@ŤG>dQt;dcw NũC8AȞ#8h,;{9/ G ʍ4'iu%/bTC1yۺ<,B.vɾFtK8n5B^5qA&nY6%]ȫ&?ljҺ!jQHpc{܅q-b(voMyוlw&05L%$yY#bJk)9hyyhYQj ,iXER9òE R$@Lq? / g2YU9VBeܯPb{T_2`>X:d~8JcŴ€!C-] '@\biO/4h}NF`: `UG_~R[j` !hC뽌puVK>iri,8'ֳ3ٽ\k=[ =~W a׵],gNBp.~zbu|_X}%}${fV c9|V0J-2X-h&5X1pCFw<$%~2jZ [#@0pNEjh]o0:nX,vN!Őo_Y65J2{gY22N69)pJױX#MR ?|a>Z;rrRwx?)0{2WFJMA,&1SZ 1Q53씈Fy1oR>w|or2ɺ&k$*h੽„ZĔҲZİcGtqU$U'0*Umzk'4 6Q &A'LXP;V`Lcg]W|JT&}b>??N>~:U ޢȷu-}|zR1hdlJФ1̝u y;mo̬w>2˚U'M8غuCCNdH>^xn1Mc k+m;χhŪyu!⧟L|>a Kn`[Ww4śs^RzTlZjI/fV.Kɺ-z9+(I>B9%j|k'1^tp(a; T؛PR FIH6i+ Y_Ӵ{ˏYKr_*?M>$㖁9*?cXc89i[͚Ŵr1%>`|xa9`;Op rs2[g6cȆa]͛}7Ч6k]M_'^UA.fՅ"~6RT5xwm{]^lX>^;SZ笲8KyVy'F󬌁dG1 qjddLXrd:!}%R IDATwWaΣk7F t#,ؤ4(ymrh}^R HB`dN[L I1LZ8UbTt,ۊ Sb{l^;YnQ{ߍ1|8 .d;` Ť1Ǿa&K' cR$\iՀ}d[K3؇$qkcM)ϗmc5f)+ta0?UN} Ϯ=R)Y8 Diq j[{3팅{)[ҺybV)p=lpj66LQ}(d%`NCޛj7:Z裑g'R,A%E9%c܃=k^$ $ 7%{].{է'Q\wNݷ+Jx> 2Y:ϝ;5Bwb}ez%* SL)!G F4v~0ߺPxA`䜓&c ^%!)K_r1d!d")6p9.Ӈ1< *!e6NOGg{cWBZku p=aMiI$MoԡEۀjĘqvBN2y>p] b'U[Uv׉O6兒cMYea:>#wQHLk:G|g*;ȷ_JkWKMV\t#˺qXc23u* a[)54]ՕmhJUY9]Wx}/cs&$1?S P)5ŀˉ21.Tl9(A2³VcY׌C6Q&OFmFzٴ3x{z!N9#`R0yn9)/$c>'踡S7 Z1E7KA-El9r)z\WOy}yU # o`` B-cV"t̩Ex2?qo :mg \$IL$uYe9U4 lCW﷜nNXjx2 XacXC{`rω)6,"`Qx Gx C*4F/D?)2)BuYYw^1E?x3J Ӫ+1D%O*K#c#{w's",x|YY<4RLjo9 4r#fѧ/˼bD[^&4)zSdsXWs~.Di^ܧ$Q5 W7/'~8DsT z.KquoH B ̨XRΧfrkfTzju#Ov F)eEd硱>M/gC!⧻?~= WYXl)$B_Lg@טXv̀aydmYOΦw%>_~:V͓rfX}3:G%>r{_E3]2ɜ,dŘlbVYR+DUh+崽Nɏ,2wk DJj!h02ZV*){%%cZiLs|8<ۺs+"/oYYyNuWjU3,V1kNþnItϯHieV>~{weD1 jȱ"Ipwib!'guݒRږܜBχҲ6m}wٓ|}eĿiX1QՇD(OZ9SMi` U?dr? ٙ@ߢYq!g֓{f~@x/qڔ0}&_cޛ}ݯT٘h_D00~yQΙ\s)=Vv@΀hm]y~~\ub_ WĘ ,7;ʇK\ҽ `wʆܻs/)cU[ t<>/ Tf sàa#7z]7ْ&RRl|IiCzwGPz(5d>mc)$P5':d jJh8C'^g+ sc.=yEp(1LA )f-Ȗ-y#AqA1Dxٺ@.AUf 8K%97쒊 8Xz,8_<b`ARxFU|uj#E)heڷ@iUKu3nD?a) &5>Sl19 ' XG\">,&F #>"fݟ*PO1M&`rifn!(H`f DRO>XUqoFua!$N8Ġ1ЎڊezSJe}TI~aY J2Ob8Kev%<o^L]Ĩ&6@k%/4h9u;B߲fP2?`Id I elBw.px۠2x>N`w(E3q]-K5^- iZ:Ke͑}45 MoX9eFڈ!b8 Â5P}z DkU,45@S1A>z&=7y*>8Oư1ׇ{j~ jĚ|gԡW=; X&{3pM4)S%@9=+;) nXuS=mǼeGC=%!y9 <^> d939ݠu(Xl5ں{u^Gt3mI)A_(zɉ8jZC,viUgJĘ93,z8/vӲeZ1uK~anb16!9*P ^{"f9l& Ɇ,k69pKZMFNJ{iu:]&wKnƆ1UtڼBZj{2'+FPXT}얻~ )X3,aܬ_0)/J)f-HBVs(Sa)Vcb4^,)>()]Y>O+JԼ-f~uoG@ŕRb?I, 1NUСU8&`cI6itg91nĘ4K76݋6Yu@0pC4%wI SpVel].9HS,SviܣwI[#GbzuRĹ@Ka?fO4^H"ȬBm~LzԲ8[d@ ћ fR L UQXMɲDNtBpeу>,ex>3u=_I$y⑷ nzN&uН6c?J@1q?&Ѱmw=13PwQuT79t94yOA%Syu[p~3l:dLy$yY__I ʹ_GocͶ ),2Tg<º0qѸ;/jV*:C/F^3LS0ez 9x<[|B=2.(>9y6Tu㨭 +;cSsvQ!f098N%@5e'!M%r!ƩZ!{Ft)k쥓rsvd۟| k(/ ƌ4r)Pl1 `#`3or؉9q i8|x~"EΑo&*Zռ ||!G RMWFJzfoKNcIIt:[MOw.$CRFƶnV[A<<@ep!x!MU\9JQs0 ^ qe#4iMZ<{>Y{+)sOcIfxrd;wyjqSқ)X:b sS8|5Y`bc6J)c4©]i~%軚Oa3,ފ*c3)xԣ~lsZ&nG?fϛ:/`<>%3zFtJ{/i,Qib1uJ޳<MҢg3@Np,J m͸imxL53]Y6ʔlw-9Ѧd{_ 2ktzPuX ݳ]3$;}N]F"Z%k:Ey kkr⮏cxle>N 5 <;]̎@4y{E>d0mTMBArbͷbc$Pü7Zfb.hzh0p'yJsJgH~1s8 TKTew5UK~cj}qn0\8]d:QM|bRI>HrƐ^^}B5KVbdEpc Lr^Liܾ2.bGfĦxV% iVϩ2'^pWE1Qw& Л}5?1AA 9NuL ָA=۽ky7|W+rKr _e`wIw\l_IgE%}9-}|k$BF7&m OOR 7"c[9P5n@iN/cŇI۬S~f4P1vSulC`]7R`tۃls.pwƀ_gkk\XRދ)4[ aZ"YfbC XzhO![ed`GPpyZ 'u[+>$f %J?!$3)yCJ ޚh&oPw~1ZcÒk yyT]p%z`﹯nkPvݞg8x1r^fج`$>?2%uzpSe@8/:M wʦ41;mTP!L3-!0>iM-JK)&oEM1ڢ꿜-b>fl#W/IDO5 8)qؕF4Ǡyn1y;V-j.AfC :8=7ըLkG=Ǻa9[d3]f!]LY]&ǩe'zUBxp^+ By6&wY|ɲ.Zm 81[MsH^hġ޻6`&QpZb(٤aN!3I,9eǃ=º+mNz-hzp>aotj|,ٲmhwN JN,Y$U7٘1K&1)!o49&ѣk"KS߂k-euﯗR 4Zԣ:Cis>'nY<60\1XsS)h'xfC9s$hګ ZHJ4B+2IRر< g^auEϹQsd4 ˢfvIDvIQdJzz鵋1|~~r;O/jQ.\G-LR&/Z'MR\q$.V (xp 5"'@ZIY 7n:N&̳T0eQeLm.5QZD i8+~1iw=Umz=kD y '&t/gd{,`I#{LL?YE(F6i)z37{k$О3H_` b V'izIK 1Ꮯ,ejCcKKX`6zj*yI.ȣfJ9)>N|}1^)Pb8 >{@2-c9_G~1")%U e̸L^9&yKYohxZۺ҂8p9jFk9Ϊ,֒ջM^!F>X2yyC&BE{jRPgT נ-",x9՟I20)ϱ>u Ak*WSe5P<{@cNZ%iG`?٣Q5'FZjJf\p!謝~b&Gh,&^|dzwݫ?bH`f;SmUi[p%Py뻹vwSv3~ [?+0"J47[~FTHjOMS[7VsI}cf=kljcy˂kr3,تfv*o5 Aa'Β+亇!=9/?`=Ε 㽣_J^3h ^u%/AA&-)ЫQ;\9w ubB$-yyոDaM4Ap#zpX.ٛ<\n Z)9FA6 赛6&_kZm2(R2A\YG7M}<>Ot1(UIR}wXKJ9֡~|2-_JǠg-~x>˖ Pjq1EӤ8p u]8;X)ChbAכ<6{ѓB`䨧duL-dm1dl`2c,/ ;F߾dLy%2'ȲDoEL.jQR<[Ӥ*)9KK"ݐy2%KNufMH.8<6Nt.;Ǩ{<yJ r)x j1.FeⵓQFcں h|_oJw(~,،A8isuQA+[ wA%g{K|BbJ̦sblrCgeO`ð^ Kp3D@ϽXW 0'eX8.37IyMqErԼ4ЛdB-EggnˏfF|IL141MXi' J^1k$/eF8/V/f`[M~Q=j%LQ[?B0ţ7VnV$Q$Z8>fi]>5[v'/>lw' N.I@5mbQ9UcIjAsހxG~e_YRnm]̸;BG6$ueUjߔwwYndNmkur&u~ksҎS?BUBTqHidwbL W(F:if {S \x@{yx+nvJ9xw1E\PCU<,K|,YCx~Z:.{ɉ>9Żw뽒c< EggLA+MʃuI@ޝIL=g\X; eBFk4}z}!fȆ B㜒eC}X ۶(˛ЙY/{6 ;=UCYŰo_f׽{ ]C!GY4{˳Kfb<U$mq^6R*5 9^߻5BseaFʒlM4m@' Tr(k RsYrͫ;sTxlL`YĎ)i镏(cOy.(<1(2FK&y&s R$לmBxO(iaSMdx8od*wI 埥ю/5Hje{E͜C5R?xMrS,I>Ӽ~|R\ X Ikp 'Ex< .Q&݂^8qG4luγQ󘒉Z{i䐤 hl&oYx.NN {n\1XM >ڴTIG`gQ"!-GTIpǛaе~YLrNk)-qG*1+A*ZӘX<{琏՜JtM[pت}kHzs^d5C)b||_?̑90y&äM,oRsGC.VH0pd,,c/LJ-?>7u+8H^yij XR /˂AhRy9ynfaD KT9^~1@aRI!uE*Uyջ0qCWs{5c0j,[tV_8uPdXOɌjŜ@%܍SZ}9 Fjz=jg!K !L>s 9Y5DzSLٹh.KLwcb1'W9~1Bq2%1URg>Ϗ&__)> 8C3|v?|К̺=)-)p~͕؞X[F+ȧ6ƴ4: jT@@NJ}m= wM(~~$e VG1J)VYs2Y$XL%5{'CFY,sdO9M. T;c Z1Z MJkəifCgy:'toI#.Es\y#`p7ǝ.i T3:8~Uw61"xUd^uc`?. ;8\9kϬeOw 'O,|R^x&/a,1gf>$gVj)Ʋ$,e< nqݻAڋ%ut`FHQ̆:dZn .}R/Y~D 3.f]{azjo^+$!6͊ svi $3JA E5Fwu$LWcQtš1Agz?Tng$k@rf8'F)$IDsvӢ/]NEj}JԕI zp%7O6Ɖބj|M~6*;.zJ7V)1 ",&HbN9O|\hS)VgLWC;|.Mdl,8Ңwa}fFJ*7>RଚZ>#+t FZH.XH9M˞W5,g]_Q_'Mc^l^S>e%ETô;'JikjQi^%&]E3@DQreVÈڠ `r2Ѩ4c,+%ECA9 \b)3P~gF<Yn9eX&&tO_/o)')k^qjK8]ƱwNE-^,$no-d4X(Ix>>'щq&)cip΂ rxbGKBm v <[إm@U*6YNvP 3s5R(yucZm]~ӎ7.%|JV 8 1b:/Q<U\^~'1(.E\i5F}28wKDnfJ{*$25{?q>JWkRdW8ճUھm @9Nf<¹zb$NWyQ%Np>5y_NJ56I,?PWp y|vUuRfhբ,s%pE8g!DonoÒ3eFW?0ϮIbIMwH ; SL$;%[qc. )@ | r LacMT^7W{rջ{nt9~}5 %:j$<0k]aJK޵aJXW%c}NyR^u]ضF=Ak9jr6^of]6BHGOٶ"y>vRbYDKbI%4Y|l3Z!W4z϶ylR|yT7KWH9vvc_AeqE 5zC!{ꔁx "M"%s0Js).kk=ܒ_^-xkn eK>~Zs?5/$,]~kpRk8N!8eѥB8P(o4u]4|we UEcJ'5<MyIԞyӞS MA8mu܏ik~+ks1eIpqfZ}~|c]F6q@B];_kw!э{GySDV$9nfoUA> ދ4 >7>ퟧO, jK 0Y[ s( *оhk7 L1 ɪ0/¯Eh~iZICҟ*= Fk5NDN%[2iYdqs1>?9sS^+uBL s:[= p{$Tb10$i:Dz-`Ynڠ>蓣M]o{2>bRbEюB)"5gE³Ltّ3FfיSk<:mz))qr1c(jy9KIJ'/Ubfɉ>S lkN:k-x1mL2L{gz]I1p{Uy7QC1|xsJ9@@ lfauP7FݱCgLeWz&ȿ[^ix/ُA}t<׎79(b$lfϏOrVhјX1y![3`MnR:K>, |Bu||<l?j,:akw[-,v- <UQ:5'^^4/ ת9s|cm )7h0ۚ|L'PX9&Kr@'˦1)$y`k2b&׳ᣦJJTLw5:I); BNIHѳ MV'º@.36I[7G kH2b>pNL8[B^%1V;1Qįs6 ǓG((w9`a̙Q/ uurĮ#{m9Ų1PH0!y}ӝ'Ķ./QKi f"zmȽ+ +8,1:; ɓR޾ouŏyM%t QΓmYɓViqM>.;MJ{0S|iRFe&Ff~H &IG06J 8늏@77Xf< 5Z9H 5ɈJF輧1{&(G%E)mxx (|RN)GK2~ yq|>ri7 ;/%kd 1sL}t?. [ZqR8JX{1oqbr~>s׆b#/rV*& f\7 ma"t;ׂ*{oďs4KlJ){-GìT T9^*b@ )0݂ezqk3gQĬVt"3 lhȽidy??N4ͅwC喰9xlm,w&s&QB d/7j`V,Ԅ [{;W_9Xgǧ8pnOؿ4V[׽LM88NyayOՂ=kkM\2 N(Q֌1Ȅ,*]S9o3f5\d6e`蘝^XϒsGpe/u'@Z?iVAv=ksG((&֒9yo{jj>.\7b&+@7K1%Q!v C $F.yᬕ^c֚nocJ>8mO8Νe]ٶ_[Lm>?6Cxy7uQ",Z)'%on4 qeyXQ?19i}m n}=9%kfɋLCOxBr+nTRpf')ŚW33:%sY5:A? 䅳^W$xkbJ+^6%[z}K-sHya͉qso^̓ICw ~x~UT[#$oT@q#>D`Am ,(2O\PY@JMc Ij5`Jņ2t|H%RtM iÓ֕exXl.|<Dɱ.TAsr:a .PBș< BJ> up~t))pLr,)B/H)Vy/c0zCI!c&,Y랟CծΛѲC^؞Ott'= XSbһKN)2k#:M"po+|>76SJc[Db9&<TM1I/CޔY1'}{f\̜b\EbpDz{1-d&fk-  -u*aZrJLz c zs5r,XX @ ./ȮUjޏc䒃+} ,Lsa9gq!a7~q#TǸˢdIb9%;xlbS$k sVr #8Xğ?Jgjl%}tS꩚ȉSaϜUbRz/Ng}/%d[4@ {mo9zRo6sA2GSpL"9sXYW%ω1H$JI7kI9+c&E=ݏ|N=,Ę|n|~l,YZ;߇z d 9φ%꫉,8h'm19SLwXR|h))<뙼]wK{ !;Y9w33o w`b[Ta?s1L~KHp-ü2y,7kU=&)&JQkir^nfR)'dth9dų 9Kt!|Ι;+#"LR' Q6A*89K$,Y &x{ S,$m@-jfgjI:LwD7SImiB✷eNLգ.''J NmrDMJk{MCpG^Z>&KmigD^uFݙ$uP ,I1/{5S'4qILEF)8-yB.'eLJ G$>'ZTF%zz`,k2Sߢ?+ina | #gKt_lg{CR뽳iD ) wr q@q!D8Cdz{/ *)k'gozS{DWb&脔HQ+R.yf^XRv&k.e:zol1:kN^ is>isZ9Q>mz0\wwg!o6KnJ |s[SlD!W)3 '7pC3ԭމkAoe(nܓ9x)Q=qN^Mכ%(s'kB}S 5+]Ny1p";J}2|GiMs[-a ^,CnscY>SQYjΙ (hJPGz8')? 3FW:Ӵb UJ):2{ AKq ֕,&TA;gL o5:z쬍]pPhC0?)soyu0ހ,ύ2oVȻii]WOe 5nH,k~@u75ȷb8rWcn%_Mz͋u9c/#3X iLsޘ(g!*`/9ɬmɪSB$OacҞ|z]2(xYVX=i|~~Xf͑5ERjxX_߼BJ ;3o0ff->㖼j$0*USuZ|>U)%_pVIkޯa\`Y2)&twYBO\GT?;& b!…&RUD=L4vܠ$y!r  M'%5s}?.@Llq3z< ئx۷Uπ#@CPOmoWgg 2˚?,K~9h`oq6:[V?Mu T!d9A+}D IxO8;uo}I(cJ6=<' ti}@Z6I) Eɣz- 8[U Ni3]Ur5JȜj:M8H-(E Ҳ$.9S%k,CtZ&ch4/PBkbx4K4$^ F]6vXGTK;tzwYs`~ v(QVZE6͹";PC$6\#Fy~ȟ“Ӫb gWxIQ^9FrJ 1NʈjӑW\-e\))#sbLMW{)fMD%S/K'\zg_1yo79~vH7"Z:(R4)Ng퍯4~sޤjdwHI8<8YsESd$53ϝrtISSMg,9&|}ἒc93!/ >UEp0CM*A/K S*ǂwQNh8K `1QQjqs<F4H bǤJ3ٻɲ*~3,8(АQZNxMp<,\[:A9%A~R^_|,rv^e1M{Gγ3QxyLT1GںΨ+Wx u!6Բ5&5٘|>_".I4s^~soLF9q!oZ ˒ TК qOM:܅u|Dت5m\ xt3Td lis>Es$_fRʖ P,i)jV%c))%ߔ7g3 k:ؒHHbTߦ JG`js BiXG2N >ˢF_;%!d򾻮g)J{wInc,9*u}f:y9uc\6*V1]_oUNQi ;N1e#ެ<,y-xz ɦPFJӔ=oIؒ#98Iυt &ۜJO)3zcE}TJS bǭK8k;ZB]ȶ%z%[ %wRT:]4f0*6 [Ǽ-q4[kߦBD@2#׻dw`¸UGm`D$o\ xb"&1tn, ~~1D0H=9G)nD̉(V ma~Y|?chPR2%/65? ΗdÆj,#4(ܞeW$Ͻο+b7_>D!yOv-~촲ۄCf}Hp^`h$"P3 e6$lW0, "Bn z t83ә٥eAət71kNE9,ELd7ƼMҋ69q"JjR`.(Mc`dKLl)i*8lE^`BKB38²qIQΌ<+~&jT gH N ֈA)i~9ju@'zǖhI+:[zc.ӊ|¦ġ`6kvcV̷rt? C18Ƭ,Bِt93)=~:LSL8<}6zCyGQi6]9E)Ie%k9mVxlҌ L㬤i-LAF2]Dk)1xZc/EI5TM7E>)9΃vv9NVk Y0LWZ-x E)eOiСYbӭ,"mYI)̍IK=6'pf`l'X \0K|<%Mc>v%wqSDŽ>:\Bx^*iE9J9؄⒨4Oՠx·'ޚ}{j_[SGo2,Ea f~hArT,$30? 2Iyq" (N²zΓvT_|pG ,@gs v0i16^}@C!B )偃̈NSr*;Gd@ppbd )r =88' _?Pa|ƀ< qsT?L2O3&x~|Z55rdf@\j'@:R29WM{o$GN5FAn ^_2OK&FXĺNt- T\ea{!Q"?,J`ն*۲f?l% wsl 2) .u !4wHNMVnbgp*4} k :sL [ }-3;31$@!-(o6^穴>hu0,y{?p^CǶYx,C`ĘYtefcY%$p1>OKԤ0(q ?VaH) MN-sWC.vѕIv"5L >װ:L0lSA?J$vwv2oC\~5NKyOԄMX_` j>|wZyO\2 "hv#?py89:I+v5؀?(/o3s?/5d?>^Jˀ*rk|$h~u"-|+Ur_o+y~|ͮ$f)5-qyITWZ**1&p%.º.Md`Fs '{eI[²wj^8b̠ac[ْ Fx>1 J)&H쇬(5*-*rTb+ |}H>??8}cƒ=cCZm2VtsM $`}^tp8aivfN f8;5ֿ9{%?dZCw7dhĶW8{.u @j9~}.Һ!9Zgz6ǐ5 gƺ.,]=Gβ J*lWYYօ5l~bLF!esBP,y];_J0c6>5um~ݿedQLllf~ US49']0>m^798d.yݹz䐘C!F36kmC혘WOdq8I2c]( |B]2=ʬ/?bɶf|K1lJO;z9.y9bMq qBX"d8uų{dZU.I*G9t]r:d.RŨ3_mɤ8y$i_|Cb֖7Z8nQmN5F:DM̙D|j`Y8ύ vZd=ҙXjES {bNqib!1B[a^J(gQ1L2: SHL'bMXQv'K kAM7Co[ELL?*#F"iQ'_k!/ (MZ;)>C2DZ)k`3i 6"7:1(xIoE6hN ˕Yi{GDhZsMF-xσE%m <L:lڑCoġtXbOyM zKGlӉqΝQ=jJ*ߡ1> 5&{\J1Nu4BZSqE3R ~W<:H69ncֺ, !fk9Ǻ>d.kE~ZPNƔN(mB? IR؂{Y sQQ)l ] ' эYъ h&17Ղ ]gWbTWJᇙwJ < Aؾ,BPA][S#]6py_gz6L1ٳ,^g9~HA]b{rZOK,TԼĽCj|a{"__uCĪ}0;Gw %s+g/N D&H> dIF'ƽ=Հ2bXT`)X)m򴒤 eO9_Е` ⚸`h~zr|zdXtEjxs'5wK5 ?3@x1ݯoǮӃacNP!sm}gPANT-it 9z"/|jm<>6/+[ϋl04ˆam[E)xg VJ1SF){yoGGo71B.fNRL~[Bsؐ[Z RI 24j .L9&˔l{Ǵ([g^ -U?dool* zoL{{Κ<)({լ3MeX&r_c+s_a7\{ky@>-y(,Ȩ{m BݨZDkEB$ES˔\I>f k6Mvm r«-YTϏƺA.pv~I)g~zH%\WL<z'R;׋oBH>5>sGI;ޯ¬ <.⢘rti)fi{ϏKS!ӎBPכ9eL_:d '.c>X74m%]fAVEл^I"SSٔb'Rv%ׅfB9I,L6 4>ӑօ+(4!Rwt1lŘNi_/~QK~*;GXńg>RpFRXs3;c Mf|juM?G(j yOOyL~HXDC -˩Ȍ)XeatL 7qɫ#ܥmomAoU o1 !nҲfv{e ך%.M>>?4qY+hvӌ>>8{g45s &g!Ҷr֢ɨQ;(v8RjoJ3`3Z2眴= ?Ե5bJo7>F.G+?)`rFZ¶ r e8O"ޕػRθ>I/29(AO٘6iM>AnG.?w ' Pkez1hm?6Lj`d 㚆%fQ;9Hfuy}jJNCS>\1c|Or2R`bd*>F^A^Ifq (ܶ583F,mqlNLǓr9DZ+lv &1'KsXtۖO30Rm0ed) Hy%DJɕ!|V]X} |&}` sy^{/q|-2m*We])7J2 P)'m4S;+mZB"Zp01IUJ:띻̹uN I&V/fI\4oc$ >]2>.*ZvIdp]~Rp>{.1 #R׿_ksjySA̘$՘%O1Z0de,~5r) ,NKv1){z kMl odd- xL8{H]-ws8w$ѹ3Pn5?rk], r~ߟn/0ğ[C/CgZ/LAjKL>)[^_o <;c!,J+?O?䅜Wk҇&kJWYWK&%'5uz4߄,Bd5 6 bS`J gi|}L򺲬eއ|k[VH1#s&FϤːۣX~}}IϊctrLS&1:1Юp Z}8.m2?/b$HIn}zpf6OޣucୃqyԸk闾Ck`^\o?kbSa ۄ[lP7LÃa Bջ/Q|T>h}2$l^, 8^%1&/1!Hb.y9ݻNmIOeJ]v_\a%@YN R&/꾗9&An#DCp>B7bHi\Vsvzzj܅\i5)?CzEVLۿ&`R h7 Ӊ1Ql9Q mlL&8 azGJӼɍr^+OuiJD`{!ĵ{: 9sܔ:X|l,.tP{y'] 21\.({VIs #"ǩCKyD^"Oz$7ꜰK9%74_՘`+|ϟ',gZa#0>H96HK `6<*!eAp;QKWaf) h4Җ- #-)e$M;˪i.ۺ- sEL!-T$5$ yAA (HXP*-42yX2nnj}h#b5coigfl`x״<5ko7e8>op2 Z=u܀1c[WMjCԊV9}8&g=8rA^C^{ueǵ;_,QYntn1r5 `/rz*כp'RnZqQRk34`bHF)+IDwb W ڒ0:F VLfԽj~fl f”Sgdޛٵ4Z PYj /oO5]D1`QkrXx,Gd? bWg[fLT(Kd; e#F!yyyc%-~=5|/lcLj¹o3#Zv U`wj"8(#[zx)8pSAMNZkUM`dtS%oLaB=E >X}<`tCddšjIcana6ߛ@ҡ\8ʶ ~ϓQ,2u+K޴QEY|gobu\4/ L>}4|l/ Zb΋6Tx9@͛uV7]mypVѲm^*51פ"Co*f )UcC$ȶ-ƬjV}1H\p!޺zB謫}}Ϟ=W}|bX$+qFzrA_&,b k&Ry1:)ɄH|%F(<cLSZ;)YX`i$ =qRZK)q>Oy&ϝH&\>Y9<+JkSSGI[Z-ָv-3)1Sς3R’YǺd,9!ɘdQ.W# x]"3?Nr5*bl+/4I`+d19p:Yiʟa]#K&EGiMViWc YJs&;g]J׹]8Tzw(ԮR h),N=v;O2t[7?D{ ?3z6)EIjYvB.3T Y1.$C;bU%F&fTi?Fgy!_Qi:SP/kfI~|uS1J3ʱElr:?cSM lģAүN]lzwP|P5N>bpL7o꼛5ٮ6헏AM7l#e"Pz nhq{k@55viccsk] ~0FhUpCC&nݞ*T{ '!:)m::K69)SDg~̓1j')')MS1y7`Loվrxp3NJ4>y' 9rNl[ƦC\S,X n@c=]?Sj"n;_\b }I|IJG )?=avc0IA"ZYTDct $p&/gyx?X?Wɿ\Hj\~1²,|};؏֕%g~yӰ*+GI֝u=A\pƔt4rTw\t|y (7x&O묖!:6VH{ߤ0;i.DB'b۷_-!?O'kWjzYZ5 @[=ޙkZG)b^ke^ֆO|@[ [}c["}򲰬II?xy1RBW.QBRNv~LpyhL*#l$14 yYS1v#݌.߷L izd~=T8HIO64!*#`myna8!{!C|3궏M i*2h ِ?7ޟP6)gh|,Zv [0fUμ!Xvk8/iDMk&2b4%C[D4Whx{{j4j9c& qΚQ;!ۢak*6Rx}HWD )I^]08 38Z寂#{CI E"/nb_60(2~jL`Q.ue $l)sšWZ\A)vnH9Lѡf51i |&vWjXlݺs'21XbK ! &qNRh=\JΒN6ӱ`wRfVy^/B^}9q[2Ewtr\/1F=4qcPHrYv \;>kcXS"h􍗗㼨=S"\m\g%/m =!T6J*HG`ƺ#7Xۄ: HZi㢕Ji?D[Rs4kZ8_x{{Xy^'hJO0BǢHJs "xyl)SiI R.bL,σ9YYJEYKxԤ{"M+bڈxwеI.-ځINI'Nӯx_xV|֠|{'aAhS11q]R <}],љ%}B=U)%7}}Q)}MkU\G GZ]j H Zaz~g蜧L{wb*$ݮҍq4A}bm3җeisc?>}}7pAAv-4t y1$*D7g֬|*yP䡣1i0?*t Hf󰬙V+aYدC킘Xb2b&["5$ÌCb S*('2:oP;SbJ pF7OFƸR]1E=gRۂ F3`mc1?T[7&`q{`:x@~3 zOeuw07'Q7 xՌMwHHqqNPS=%z!KPϠlᆄ}ޭݮCj 8FD 6StN$s'3c6_S xWMlƚ_m:O` $mW#l5dih6!׷/28^}]<^^8 JK8s\ k/ jeݧiZRl\8Ob :x(%FO/1fޞ/^AAV`l_wxK6rJ|zyJz.R1C8TYR&M=5ʖhU։ GӫqPbE^A#{5_P%9/y]~8 &hm'I%˺ct:l IQ+1WC; {1ҠJ+̔s)l:n:nȩ˝ͤ&!3f24ù>>ŌqNtԦysw| nYU)~(>Vd3(y+V 3F}Q J-DxS8O+?;,s5*٢+ W*qIy'HkpT 3ǥ2Jc\bYyUΝ<dZa[xjiTE#l5sִ:o"F:EZoUNKf6I?+umf)[Up;tn(DLɿA^VnIzbJ?( Ѩ (\IdBEZvGAtA~s[X8pSS8 A{(./)-ULg^s~]jR뼁eɷKbzje[Ws^')gN8fPs{l,b ?pDJ k%@Q<9HbBx>EϠ];LcTЇ*OF #lBU b GAб)r)E.I g1%DW6dq@fY7g'_vjol唬q]WB0Ƒ%R:wOq%+O拮dq )ʀ|J\WA>0²ͣ/T/X:O(jԦ1H)p=/9-8oRquyZF;er^ ci6 x0e!)#6^"I&ZolV1%T 2oB&Cβq0屬!󝐣T*|Kh0ȅ]n/~bt6cǀ|0Ć\]WLNK[L>< DqЋ`^9&,xN 1َjD$GCaH@8f Qʜl뾆C$mcuE|b(߬aMiޛ|a} Lw;󭬏!KזiXjт#wU~Rp1 #|0R Tn4%j(z_VG@Mm%%tzWDDh"6LKf*6 C5kJNwJh&ӳN;;E,aoޙ/= ^LDqζ㐹wm7TDC3i9o]th֚DηS(hׯodz^YR$ߌ8 E2/J\Dk֗K:hyPنj)bENұfw? C!zԢmIZ)q6h}Gx'bZuۦc&s4WMn5R)+uykb?OrlgYŁ"{Z!]%5Yb9y(&,[Ob^S%,5tQMS%DrrUNRv>bO<#X.d CfA NX1;9OZeW"@9M7SZnƣ[z')G34o1"yimVz(Uy>=8K2eU hkVLk9><";3Zjjm2圀Aތ[<z5k g+RC2gSM3Yj@ٶMrYmc^t1s}_RRU2#>Ee]1!pS fE 4 6t48 ;vT$EEq)iHjڔ*ixE ,B058[zҔkI{k3?5VPIN Cr1zcs7Ly NvgwϮlbѾa:_){|%]ҵ`[JT:90#RJbX9Ms6yzC{kva9g4 :InbQ;>iX 3G1ϼWse [N˷Q'OSc'9-7R+/'`Tц3 )Z~ǶR/hvj&547rR湋;/[|}QwNr]6μ?YV3xFȳ=>OJ\g< B#KΔQ{MJo5-5|U&yVeS Kf?8YEޟq4 4I. 3T`>mw8H]Ͻ7ylZ73? v;^!YS(8s}2@ip/ow>>q} 1m KVMi #>v $:.Dyz?hy@))u]n|V~`<1[Z7ՕnJ,zہd9{źZ1 Pp4š"67/HYPwFp2me`3:{wS2'1 P4}z,$396&850/T1ggm1ІDDnD'[86gzj憥kRZO.=OyRo$j ?4 TMf.K9MLvz>w[ؠro_j.,uִH7΁ |6~|<J7<׋fŬU9e ;*Wg!W^nQ'_9 |zKF^YSǶ(a?"]8$g(næ>Re6Cw>k&.cQ򽺮񦃫u7M4I֦ks*SM-jkI+P%K3o1[dy4ގ{uHY)&wh^qC/3$GJqek sȁ%tyM\ǵBT&J"CQd񎄳hrG~I~[%ݬ_ $f<9>Buʜd"˧,gc]*@zYh'frRq%|ziP/&>0Fi|Y{@\c1cƺ-l//l~hQfJsbcG )D3V|~}%:k`xrӷ&flksZea}٬~P dʙG_i]JϷk?>_"x;j#.RIL]%?[qt(u[HtѪ j ^wF6쬯-l>H&:p1)Qp1eҚY8>m w=R|~X9%9=^Xr"ͼ>㍈v|Ey+lqaZ"$1iu$̉Q]8no ۶@0/N 0gC Ku39ʂ`@uQ/C̋ҙ;u4>HcS.^,ymx9QJ/1x۟|t[:k#u۵Qd>}~U\9jl0\9s?"2._|3+ i4cȢ@y6\SLsjȌiL.y/XȚ{^@h{e [fw6]7GVu)Gہ_YéѼ7a]'1D*?:03/ ˅Hw[LJcwlXY{͑0ݚb91z~dIp0H:wg5Y$MO;8gQ MP|}ew[?as|?`xFJ?%rmyxgߠSIvJ0)3~~RTc7ۗpd~\k&I|уee,9RJ2/Q/?J1,{[֨y9yi0J謓D?:tr5c++E`oPIO nu?e=މJ !37}3@I:~06R솆( c{ժ'MO>`|u8ATk$\&NXr8eӾ!/5NkF("~%! ҩ`)AQ1P,yis 7~ږ_,<=R"IBWy6\7N+OZd|{'2p ~Sz\4vjex g&Ț.x"EAZ׹Ka?g}Y9BhNz3ow~|9Ny?^`>xic -Xz<<^LS%y3r9EA&KJˉeqhU_qbOъp!KʾS.fxfrAݒU²,>25P`PN DH@sI:Ѫ1TIDS?}Ibb 8K5٤w=H2&~HP7^?ɲd; 㴐 yq{mm YWMj?^wH7y<ju?pFoa^!B+D"-T1gdOg^_aQyd af' ٛ5ww &KR{l<;?Z>n@z|܀6{X)C})Ƈ׷ۋ[߮_c4GfBZ 'y#68f~:/ o8GPZ kg֔8K!؜ٲAiPMib_]aucΉ~?q&{priCzy_di΋k?Cf1r$3mX _蘊oo:**| uiV6/^k})h*]t : !kg?J-3/~'9D]7SD04Re׃ѺMf^VOȞ)$aMz7~?H K\puvѮMu(bmV,OXs4B{%:1U?k|~h%.&k ౲FL^MGN*ֶOOхl90u#_ͿH (?!cPEJүbQ4mmS(xeˢ/]`L_/$ML g1qK!we>1Wx%i^Nsy]Y8JUcotߚg|6cr7sg%ٟ9i 0swXBybJn,Eo\y?_9fSuen,94`L!>:upBRo_߉!gbqKooȊbh>[#̶mD06?[1(5SbY Yi#D)c O^Q`I#JF1C>6>YMmkw_%|}E|Hs ({Y$u9DBِ`2SןM,Qs+^?1ll,} lMd~jsU1?GoojXSv3CzKضփz_?XնzשtWea|ね19r|adҟwcl6_7cgk+)κmX|3La4<GGi6zs:w_?>NFLцuܟ3f7ic 0cht;tUǐhI5)geOfNj;B,pL̎GN.=ƈ6Ab;fΌZ Du>tJ67x7؂btzo$~פA&Z32!u o |M ?O ;?6~;U2Pp)Kܘ'x@!8 & R~S{ᱮq/ \xcpr0B# Fл@gi|BNjL |:wwP-!)H/owpQ`Dx+7/C=c\>$Kr4nUq9ks? <\W%k@b` '5q mZ+FUugjEW>^Tp,K)u8*pM렗ʶn=w <+@2ˬ hZrǥT(&%r',$7Z8S8OYpV"uuK <51:y=pQʐDwR r]ļP$5F?xj,*Loy{ߕn7\ )s").aBڣ[ aH6%IFen֎{5& n&kj>Vޛ%%cOh@36t;dDmN1S^i4'em â Se{LTC;Gp^ 1ɠ\;NWSNb\gaIIVx\ץ>,\W#~WB߈*j|~}UuU/^ zc?N*`ϟX.)&ofM"W-Kf,nN~>힇p3ݧQgeFc9y}pN{%gH׮޷V\ׇn0Z7FA"7̓ }Z+a/8\pQZ7O'ʹY?υ2{ƷfƔZa)m1H#v~&`5gf?D@huYQ Wj hMdr3M=ywN5V)Rf_b ܥ'yn#܉Q˺rξVqE׿y-uԳՃ-3 Ji)2|u!;cu?b»q,K>>armDL+f2 <ϊ c1;SU۟E`pW̔Z3_cub=w&iEk% ).h)$c ]II`P5k'<rNVjPhCÕZw4vB)Ťg!XU > ƝμEs.vIm&R~{>=T{.47XhԷ{d~ٔu~{ #EIZ%:O  c[+7|/MM \0 *#*t#|Qig]W+h w(=ݨvḦ́jQA& 9X05z"F61U, g`% T74i9@wLw1w#> }cBwAa`lǽ00yQ} p.!X%kڏ&v S|=NFKNLx^U~3 Z)kx}}2yMpD~l{ctު8ƻ 1O9rѕHpɲF>3-*865q$ŜjgN 6JnsVqwexMDǑC2ߋNz^XzY/U,Z]8蔧S >eA*H$)xFo]tn+#ِζ.dZ񣳽}D x~ʺeFN ,wY:!J㰸(dJN+U r/QV" ]T$,VzZ%*|z3O-J sǸFwӻ,HլM%jzՊGPPB ?:[L)]a s, x,1r5^tUb;A,* $:HIX0*3H)ُј\ǁɃ6Lu'涮YR&mxl4ČMZun_cY-Uu ح˺,RSkm<2~cV:/cs1KWc[.p'Llɻ3eM}pcJ. {e]G&e ^r>s짱XRYy_lyiR 4ԹS}`H퉖'8TR#BL׹yL0>![M;mM ڝb_>\{o }_׼~f>J4)ab y^VSmf8՝JUM]Cf]0jwofp4siiw{i @/ vm %"E/JusÇ_3z[уʽ+(~фW>zњj6LZupH)s}W;߆Co KL)3Q9GW6fyUё7yi&2'ѩGC4fN=qLڊ-5p|$״I(uݭ9.lhz5jZ4:8I @d_I%rxV9[,fӂw]ly!4iu#ApٹͨŬ{TpF@Ivyhn,~\b8D-'=hz_)_B%+Y;:M L,hx/Z;E|xɮQFǹı+Mhp KF\͙TVzQ}1@JTMsۓ%|Cf[ tTJQuD\1_$Sq\Z$H1_#P .G/ob8U Üw/}ؔ2]$avs@J.I3,C,YYE!ǠF^ޛ@($u3o pC Gb8/qWpzR{gedγ(l9:~b"AۛVH1$9aP jt(2G5GT98x}R.}7vC>ϋRCt?6yDj8ig;XBa h7sƈ us>`]704t& CZh;yYav_ꉙ\nYcc&{1avJε)w-Yme7MVoզ*sZmpKیĢi *{+}Y7U67+ȵir8 l N v8pi"gbƩC1 $ ZL L I/srM;&x HIL04@ 9jN0 x`|3OXoBd(EkNhzYx xE! c4)'JmҍID.땫9*KHz2,pFt>K zR>"Q.1ڨt^+wF,9zx3ĉ oO-OcWL;c(?+_4єBƫ&qQ:|x49Ox<\]wؠuR$[\K2zk*kG+m)9'mo(|mI,F#,o< >-"ʯEca)N`PvwJ%ۓOs 4uܯu[Y羓RdVu\ǹ@^"{OG%\b<_iy@ӽІo1_04Ҷͽϙz^eI ^߶7բ[J1FC7!gF=oyb8oG1Pwmt`.PqCk<^_)Qxanæ\`=ʠe%oﴒˋX eP)$\b-b[2 LU@W8I%Tnf1'뜵Γ$J[_~=nu֪x yApO(KJrXg btYb:ucT(ɺFc/43zޑו%gV(wkd2sU:9¨漘hQG#;>_taRS$8 JI4OR޶<&pV^& O%^.IzdzU&yTZEs:svgqr= MǸm{PUA2^ 13hMo)VkP9k1.y`>,[ 0K!Q,:fՒfj\6N&?κ:MR {%;j݄C)o\G ˺d"e`{s[J&HMEpf Z-ɀ2HjUKaJ(cjbp㶩l9 SWD&Pj<hp\i2w o@3f29:a`x{q@ P뽣IO$ u=߇aؚz_27TFotO6h^ý!IkooB>uKn!4Sd  5ձgr{aεՎu|VgL7Sn{7$vN|xyyh*W9u[KVX D-ђ歗xj73w:'Hn9uSyJכֿCI:vX)vn+>}KIJ[iƽo n~pˣ;I2.{=e#c4w&UJQ} wSνs|"wNH:9DrL&!0ƭ>\ݦ^3Xєp2ZYI՚WhLǐ-1nӍaEo+fzPP^dxR1{\F-7&]EXh?6+Y^{M0M;%1em+/k 4P\Gy\WYRd[4R9ű{A>)j=GtuK$xmӆ{;n4W8ߞQHIW:WĔ)h.t'/~-NBe C!Mo_Z1p(߅5|YU| '*-Jhu'o?{Z824q=pb+9x,lK[\tí~trV_+Oi0:ì1uj^i C<<5ci|&u=8vIRu;\GTz ]&9c#Ƥ1pN]E!j[n?-fI)ek|~wQd[%}$8G-'rO`]l!ݫ }$:.˪k07݇n L)9F]fniĆY؈ C3e+ OkS[R&!Id&mYL٘VΘ^81y` VAZjwoGDy:j#FJL7;SJx^z"0x,*| - +l.1|S2x/9tO%;d}f] &098$j*2p&w=>B=6M犤I6RΤXsҾr^^y}YI`]~}cY5`V+^iJZ)I8pu^睒Z[WZy5&F[%'}`3}ЭUj=y؁@ ^ʡpHb>J֘R I"O@ חW%*YLŘg#6$=" YyG=)@Jb.WJ9Z/Bl[wcD镲0o$bǡmYz|ua}X6iX<Вje|ȵA#%tXsFnX3p 30 б888۫.gYrbDXA!1bT/'Xsܩc0ȀnA8Gs:5 w2MSjBcpkaGָɚT~Li&Ef7~[F4dSC_d ^M9[U4јbΗ'J|:PWeMZ(8Ԡ 1ȸ+9M)|'y$)Gc94F48j4ORSEVdz\hl(CQv5+NvzAȧ/ $1YHEX$,$v'Irݯe?94e!ɧJ)B)obb.!Fdʑq  nՠbJ6uݠrbh@|SZ{]КrZꉳ"ȸ, ttF7Mb ji_gt3"KÏs:op1plǪC?xܟvS^Vji/RlK`.t% NL5/k* )Cq1|ָp1(MxhAy[hb?)~rE> 6kC UI*#mYwS쟫қ3 U.Qyk6@r9 J!fQ*EM &),ěN)vyuyt+y)8/w鑉NaV?uY] Foݞɜ}!=z7O({k >D)-ix$#1Z1 m?PPp&1 lÂDp(9u]ǩ0(5y>8K1,Q_jjbÅ ɷD7wi0?YJ@1(p7 &=qhO_O\e Ҩ^ -n Q*&CotOCZC!a.(xvˁg`jެ6ȷFqߛi?ke𧴆n&0qc`;7l;pPo6ĨkWTAʏ%/xa).ۑ\ 1ܩ^dN<;sʳ::gc%'':f^g;[ eo[bX-JUHUxc{Z>kd&04;8>3Ft|{>jЮO`zjR=tkc6 U,* tD|@(0FIìVo5Dz/ˢm5G5Rder0@Fk)sp{>ze`)7c;(mnA1Ӵa!W90r2CTn|WÊouڦ=4uF9-9owCٻ n8`i~:?ղZ2z݇hi 5C'RYo.]}o ͉hp37zlGߪaPÖ E<ftfgY>x^ZWhבSR+O9VGq2WV,Q$,UqQOCd=.o2% ,KĜ)E)j{#ۡ(J\2JiGlx>/\(g 1=#mhN2'0xgYq)gyt%HM6yĴZ<%-E=5ϺлQȋ˶d;G )aJQxY<֕Ve|f/JGC&?~7Q;.Rplkk5 DIU)fI9.z!y_A~~E§@ٟlF[&vCzäyޟOM{:O#n%l$jm 9Bt;wڸ*fCX,iW"c\@}dq'x0_u-I4 Uu((qU/UV"0~Y$:L]o&6Hkٿ|aza{}ejt|hו%3sZ3 D@[>=y*p9FP*.(qeI1P<+;F5 &SJ1JQѴ, |$u>>JfZ/ s/:$o*O+ XSu5ޟAwZe8%nY1ۻcm D3t]:I'4Un@R Dy ,CS)uu]̌i/I=%Z1j,;Ɉαj(z:KpD:5b &}fLZV-i\<:;c 5RfHqZ9EpGQP\|8.$uK<`[Q룱}u#ܒcf;EMve.G (lmzy :VM~7*V?'hSiM l fll*iX 4zcMO414嶽Hj_ \y9MST="uJK{WJ,hF!zR_ 9x]6T M߰nSiZGWa=8CAAĢ[¼pf?lP9 i$>zg %wh̿G74hV$hա~ gyCGLm׭n{K.6߳3&w+_Ms 1pb4MYz';”5_[okh7>MjԘ,|aG~#wr*>DiQ_;hM fCoܸ\%o\g*o;87ge]6y^Lf>;&c[W|ۓ >RG_IU8uL82z9SϜJZ7znFXJ\15SA^2d ض,Ȱ3'TQz=)-*NLV)'>mtGe%&p$֞s$f/r?u^Е ]r^2ۖWϟ7b{JIBMh8bڴsTM{ڹJdt-g1)B8 8Գ?Ykg:r';c5YX/.uMSmVn#'4{/j4uWͶZ)${me 0@_X:F̙>qD2v&Z7Ts;񰐗q5L?I-=m*cWrx~XXiCĻ{O:J)҈=d.,tg1DTjO.XRҟڐcv@)LTzLӱ|&vmqq7'/ 3֡.j !C'&W&b@ouEkn3S9x: |ebK6=ągH$+P ½{&FQ" ܛ+Y5%}1GGo=[ƶE83 ؐߒ!7lKb0CӇÙ=Ĝ9:}`1}pLa1!oϫCIf6N>#DLٟyqY}Lg7/ 8&za.fbP=4l`@ ۶$-F|f赡,YjI0w3=zǜ 1cxads 묓M_ EQxd^A#v 8\BCk(d3ZLO[<ʎ:{18XC€~10(n9 @L;} YxvOLg׫B" F6NbwG{X7f<}M,zbɧrfGja!$+ߓ|n+]>` 3\%bNR BK׫"n0Z;38PNv1aa2o'kȾ~ׂ׹ #/k7sx́_Q.Q6 FBPk7ct!ޅcq).XBX6Hy %ObπKBo#H'BbSsn4Cf shӧ[GG!2! H7aKno&{agX1>YD"8 -!0FYk,Lt fuxA5&)1x?&@ZojMF=3s(/BaI_@ջH~X0B{[P  D . m%LJ3E@Ok挰 OJ2|lM%l}:{2H]M&aNz (hy]*]P 3' 03D׉uAbeVJǎsAȊ2"}s`]]o&?OX{B^?F3 ʾ*LRecII%ANƔC Ă3'BɟyubqK<ZczcQbuh%`uvИPE.!Q%F2 <bNy6k@ u1zxl~y!f&: x;0`MJ٥QlSHO _'Ł3c"p91lHB{a9 2LY`)*eeI|'A{Ɉas e3"˶s g#=S\H ({&`,G ʾMLx!DM0H)oGe!bULkxJf`;ȤT'"GJ@%=mNt$3&(QG"d9 :N[A.&P,_9.ʆvlHBwf'ЪSopN.8^ 1'@TIq$̳Z|Z0@W;+DHnNzK-N YC!1i\WOxS8މP,9KF)%#bN<凔_m|(8bRYFy),ɫd1\L |V>~p?vbJO{v/VIa! Č1^6&L6c4 ~:0'j)r:"zy@thp_[ִy 5 װoc;WrƄwnv?AKnN6VsѽhF|N9.|; %{}P;3$@T)p sƅNgTZ= c76g]j hSf@=;\3ZM\8\^<Ɏba]X}}ߓe+ӥ<'|i3N+"څ>|!oƷDc6}z("ltPAbMm#iZoxo˃ǥK -_އ$d=X۶A~i^A>&ZkH19#7 p>$R~#Wן'F7מ"DXژz]cLŎ!Tl FazyE$(ť&l> RZ1eC}tR (%ߞ-2`SuyU*[tQX 79S3VGʙӁ/C=%9zH2Tlǁ)@‹yuxOVə`686Y+ UЫVEo>(iR eS}/%ǬPE0&HF Qt( sp9'Y"Fep &,HH ؎(K9a}]^`PC|wtc*Fq<mj)r0#Žb]]cǾJjnJ?15{=,%!Re1$rcpt$tXHG& " 8bFc* 䉜PBif\OZSx~&q/(NI9ҹf2/]K6I崁JSa*(HΊ˸#UB=O,9-uܣ;Ab]4rɷ%j~9rx`^1D|>F譒>7>??ow-g\ _1& dKJxJN%(^SΎQ:?>Rx]mWa7E(O״8@۳Ň xVDnz/Z0\nVק%h̻ 25`LLy[Єĸ \1/f`51#: ߯ S9-0ЁH_wMdedBO2c .K9?V9R>]~]ȏWo$J|z[&ѴxjuO\ڟU;t ;YBk7]1xֿӯ1>dPATf){AxK-JQ H^U 4=L{z8438p hc@uuk^7$J%Tr+Ѣ`NC:mg;Th9q]ŶÌtY$ P/AǾ'FށAW|RY`8 _,^iw1z4S'1";mGM#Խ3$WSxM=q3?J 5UR|V=pYۭb2d\^}[!q7 !3rn)cx+ yc?ADuc8ieDu+0!b.zQrJ9/+9u/z +Maz=*AnvܵF`Lte(hZLht`",f:"H9V5kMk B8e*ʲ?7)Bm{MAT:,I+fb,pz-8^і,]yLKhMމS}znQ7 7Zqi SH ~OW5Nq(Uj66M-[& pĒύϢSCH*Q"SiW"A)o`Hhp$fB`^JjYUt xBI!c^>b̆F86S)S_߈^q0|lJ7BBB)6^+A_)m*}Ð`߿~V5z& xж!! nj6Kޤ<u0g!h&1gƽљ\)~E%:y19'vjL# ~ȩ`(=kuD 4LI l\+Wgw @7R)0!`0 T0cE'j4)-1Bt@hk~M!@1fCFєiϿ@x Z+ f=]jf520L;ML: \PHo1qBBtcKܤSVӆlZm(@n0Lɘ9."D04ĀuD.Pb)p6Q}$50\QBl18zPɸ@S^'D  ΐ|&Sz1EW'0gTEq?Iš͉ (N51o_ 3RU>fbضƨgb`+ M9A6 Θ%ވĜwb:zMh?{cߑsƟo^}@@?_ E9)(f J`QݦFIu |6<>?fu"8vN11J8O~8>=y, ("nKvցTqI! ݼ=HA>:"2IAo<Ͻ)ݑ9J4?LqJ3xE6u$`i|&j 8[t (~QCMBSͧ~kq뭍'#@}s'̵2ޛJ6xŏ{[7Su p.1`xGsoaS$N˱>KPn3@@J^z'ژ"8>spyGj\6<(?CFD޸>mM^ cuN1#x8N>јzm`c D`̭ՊvUD {B9 \oEc %3NAPh4<4tt(I߶d:h]"{$ qP =̉>[&(Jw}Re1~# *Fe&Gׁ<>v(~}~ !Л+ $iDN, ~GAɑrϣujOFf OyV6|/ƈuR9ƛB\Vp]yBDZ#$66$()3#D{"fplLՔ1<:ϩ @J\:a6 9.Г! p6)}^d D認 R&;@I4um#X @AhܮvK-fA@ .FwfU'  &!&:@22R.eC,ӻV!os.H^n9ǯw!1 ́Cq─n‰\S nYCƶed6Pؠ A0l~&8. 1'*u0<ŀɲF<Dч(H?3WŞDnd:ϸ5pɥ $zdb&OlWad0ŰJ'y+P68LoS14D.5Sg.}yuʛ)#E_@;f;L*%oH1ܤ;E-g!m90:t_-z1QB+ p5:H(LÍEkX1&̘$~e01~ 6j} 8N zhO1CA^uvDCF:nIN֨!~r[ŜXk*k1NBm!YAK )fsg1? f%hl8@0d y ieQ|*E:x/!By5o/6)C ܋RA(H4WY fw3iBCo$׺ƲkdMۢ}-_*x{lKvo"VN>X?WB@~5DxƁc0f0eTOvˉZ{ )%Ԧ}`t2޲IR7O))LkkDJ@p^ Xz!=#q|^S |ЉBtC$U+Ls{s S3xL:ra)$r7hx! cϟ'tw&cD˖111wh"oy7;}^Ezq~pV_dW8(%0J}d-(J%J6ضÏg~uE`NA?8 ԟ~߅K-0%?u({rݽ5Ⳬ)g 5X ڒ>4J媴\`*}Y+e7y}MMhg=uy*}^'ҞuR-)~3yVP*~q{X6s:tsO`(>} u ID݄0p&d,y" QOnψ` %҇Ctoi! ]džGXMYx&)"(#$eX䅦/DA`1@'Gôa,d)tw_k%,n0EQ\'|Vm k0Fux0yERj7s 0@-b"R!3GF >g 1q.5 >p)%R:zG7ĀlgBhvqz!irJ F;ܰݥ :^H1u l*=h$~UȜP\'^ nt"z>1bF7މc AGJ8Iy~`?O>41 Q&b1%@=f}$fgcl SKXV!ƸuD#`vros:п'&`qǿB=و^4/7sAr>Y0~u0jћCu3l"N]|wMDm!??&"<! gNy0ِ (Pb~IaSQr61 B

h 2 {uV)y 8gZl]]W::ׅjȏ)( (%A"EC %'PBAo4Aj=`i\"^El11_V2''Xql!8+z[[ o( R֐D0->`\/9Abr=>!%h=%L^ׅim#PFVLX,'{NJ$<>Pv<_Oq_(Q@˧0=ft.l9"t~"fw) ܸsI(֐J@J4Gٶb ר4T6Cx>gm.tirdr l҈ށ߿c q9@v}]g%n۷ MmﻧYYLݽL6t)NNy].6 UJȰJ?#Js|B 8to.!:*`R}c\Fp͂AKC hb]?'t 샀ΎY0$#' "3SCU+f:"gJwJJHA .%¢[:#3d\:т#`whR#b(V@vFTʦpa #dR7X sK~zd$,_TiB?0幵7F:#'90"JW*o\%ߩź@}0ɥ%Y4:;,>Y}EP򚕀 oU Q篽@ @e>( %dO׃!$t51>VhD ŇRVBa4&Ams{a(%C"}O@1@AcF' :].Sa֐к8n(#G煸orA \}u|~l" smg2dN):P<>JtIV!Hh Ta>.N()uwa?`_?:as`/);S2sF @As0Ez ya;>r휊Zc)$Rk wSޘ(p|M2Li;5B98$XD  -Da7ĀOl +;9:ȑQO+Jf9݃|Ȱ(dž bY'LV+DePȾ#Hy^P__(!1!^P%2 )$FO6 L||DHIF K2VפsJ#'\ovqY˔2/bbU ʾ#NC. I3-g4 -j>II80ǎa ј#y?j54!#izNf7M`Q`cLOǔZ@`& %?lin6A8, Kf$|IEXC54\wYkE %j:d:[2lE( M ä8Fãп&fq4TSXP+:Lhs`^tw8;} jX}~~|8r뺸d5 32L3# o6bLSdod~EsJ\Oa|{kb{Dv3nZ;C ̧"$p8֎=LıePBpqKQ [SlN(\>noI2P֛kː2t=, l<شХ&.x@h!jn~|wOz=pi $S<^<0Sa ݱ8Ͽ$b+b j_'ܻU Q( oe` $$-@s?D. 1,iѧ!&T+Eʶ{" gϏ~Dnc5ú(>P)ϟ/M q .d[ @#uy׉ hx<Q]YI Ӧ”)&x] :nY40%Тƺk/ސ"< r!9eLa y7X&k%;S<'cy_9D xbS7+oWܡ]k >O?UsI*&|p۠x:[dqL,6kdg!p/Otљ\K+{~s(<5F _?|}陋kQdVHt+0dd @|Ɯеk$9++Āj,TI#$6(Q("`*X.PO$Pt4b%:'1A[7>&Ӕ@4XL0T) ztsAbLˬF4K[Zo8=VR;bi٦ ^p-7{kOlŧ|w}(1X_>u蘵 UH,L.o' ,Hx1: >$-*: Lڈ! 5ˍ"c=`0D0x<:#e0d#&@;+I C~yX쉓q5Ij;1j aD. y!  ):HKԐ#5i/04z P't ޡsbH/fl40Q66:;q"d!Be2L<>]HHx^rPruV!AL"-BpNŀ6&=\" dz^MsJIEh Rx `"U1NT0t #`!{L|~(Tձ?61p|>j,U#JYNƊ6 }$t`ԉc+156109xsV MiHSi܅xtI%dlj, czR]Pec='1Q_(\GGS}A$ș -8 k q V+T$/7ZY4{0mÖg d#MD~F"$D#HA{CvR0 4fj0H"kE[Cw$D ej@yq^/ۃ`@(hꃟ̧C)l uNt`O09鮩@_K;UB@dL`4\ݰuR[M?ͧss8hCC#^xDVv4Qmc{FƄqv^˽t?s &d'7ƍ̕5 \ nV@ C!+F1%'!kVwdz~y3p(Q*-ܼ_]JMe}+ZB]dIduA'j[|5Yo j? i:~ ZKJ~ZƿR#+iLesq`NuU/9d?8 ZL [" V|2Jd\muY}a39 1uߙRBHo3`ՠsׯ@KUŨ}߰mϳ_ Vqt@^r(gBΞ,pG6l{+MZ}:AcbhNؤ|ls6݃Ҍ_>juaZ|M6qՊmKL^'S~\) )lx16D^ӊgYD^" DCO8V!͵n^{0ѓ>k;HV1~DmTJN>oaw Y?G}o9}Ec Hаcp]߰ ('=&1!h0LPc,=IЮPpSY|Pdҿg<;ʑm&P04RFyuY@w 3$h B,E\4 Bt0ΔFszU<FSy" 6\i#v6u)| ۮE/'}@uxb'HD))'Om x\zV$!0OեE8 Xio^&m-ۃM%&:&, A"jc6K{Gt0b\s3%ӇC)THs#Գ#A!94pI^\hAP2}Ľ?/4(>~\P)uxMöhbAwV%SﭿphNbdPŬpAK4H&bg#;Ԙ 2ߛkS1oN(z]w y~|VLrfRV4ī/ZhSڌ`DzAފ@': %!DAC4"Ō?ZQR–;`^= :)Eu5EͺYDa@ \Odm[;(+| "۽;ym pD 7cy > ҲI 46J߯@?mh3 UW$qFN8X1ﰣ%Y v,F@ 1%D)S2&ČK- u5eOKs9;~R¿[~k7Y?y%Wx]<7[mHz`}/H1P V?CIw!ctB4cF.ۿ_#'0{@/qS'QA~*Br8șS=ئ~;ůu^H 7909 ާͥuC\#}l:Ӝ!jCϋCp`_ӡӘ}̇{FuL:67II**I ^ǖQ2 B 3́`׮ǁ)-ߋJ}-]c x}9?p/ҍE~55Yl.G$n;|֚Ra]w)-BrV`Y냔"b (%1dR=Ts'=Zw::a\NO3} % 6WUj9?u`6=Jo@q6<k y9QJƶ0_ރ+ݛTq"\9c A&_q=:U ɍiI ц-X][D^-J0l-:ԂBc9oBp.ጐ3τi:|Xa!ta候*2aP!@0 C230EH/ ~,bBt l|爱Av!zOxDw}y&4* PNI LthFN$rYtv6NF2i9+5(0z?!ĆXTсdڽ(u"&c5H DXbJJbt B6aeJCy\cI3N{PMЮ%4L1z "se? ub 0L|J\d19'B&1Y@Ą1_PU`tGρuMYr3ȡK`s/<@߇w,'Zwj:\` `3>8 K y l)Ub>$h\RƳu$aMp<6t> 9ѐ2?Dtxޟj5 Bc0 Iifu0mw//%$#<,.,&5$3I[q5 E.~eHc{[}%!#@1zEți T3(f6!`fbj"&1. xսĥDv37N:)p2\fr˅C*: t́(4OѨ|fߜ41&o@I˜z4zRvwM'R-0IK׋>'-S>' z~*Ki3 m郪 沯 Ɂ OfXSPB ޼`V6 ]PDd1 t&!F̲'k9Ln A%@u1q: v6e%2 ql0_؎@28ׅ}MF8@)>?:Y6{:{q \@*gzJoR̨=qNmbn& .6b^.= A0Y3@bpm2)\ݫ5!ݭ,Ztei1nJ8HkAY3[X+!YF ~ CLr41be̒/ 9[M_9p>9$LJg$eL\^,` (Y}2F-Dm,6J'ݷGVϰv2x1V j,WRAܴ~4eƮf:[tNF 3g WW4a50HG\)POGHDyBOƻżE9r~&}b,*s/?L'+ }Z?ou _AE{@{°,6_ʋ"."-X|.ܣaZG5K *cLi&B8 „ҽW61㴈DvDIvNkzh/Da Jhjn*O EyV 2rqs- [GH1!ԣ x~J򄘎0gw"avKx?Q$>ط;_.WÐG ȑ'HtTDf,F3#&6fܟ!+ )5[@뿻9{2&d*zzmA뉔$yͷ"&mMCBׅ1h# 1)NbR,0zq"|}dn)/moTHӭCb="&Þ#JY Oƪ{{R? q'/S0u~z𐍡#C>fd9iֱu<_WJ!k&vV1k)SmLs!U'1 G'K\Fe}N(ctl%ֽcLeǞ0pb WPgof8k% Gq^kk'}>p.^77wfϯ'χs(7"o ޿/hK=Y)R*ހ|w{;2!dIW#h}vl((>5dN<ܖadƂ:(UBI*:L3=CR9j )nJd*=b;9&#{d}Gxq8P6뚘 Цy,L@x`̀1h Ĵ] AFl,[H=.)qH)ps1JLL3f7q"Dc4' Q ?>2(J Z9^R#Fu]2 SQ儰]99!Lj8pR%13>2׶6 $}||AccSx`?6z|e ?Zq9= <ͩF4PH %#J:APNԀ8(vfDRsJ.f,c3GUsvƠ\;eJ~r( o.Ү wɬKΘơ!i\km4T hgC}UatF c tl^8 AP'Z)_$C]-peό!;J)x|82%r¿>sX (&^)aֻsim@DG:PbDvuNhP؞ qQ;JdpLQ ڑp|뀨׆VJ J)}J[^łf#(SpA"<0'APRKL";DxoXZ%wҔrk5#vjH:)&0% ^cyQCDǾ ~PZqJ |?_!Vޠ;EMUg4^!f,N\g?T?UV j`ƚ2ė{y־3 oNDeV8=ܧG~qrlW>@d4p߷0-}w9zo{+X07;H>F) GI(zٸk85ltޣ}-\v @Fњ|+|}p CNA2T4xe  #c@6z,:'MrY"W6!2q )3%l29pʣQ_Sž7N[߂{0gر=2X q>WE֠GѸ.(Qv JD_ MrP44EL>S.rhg&W2lLԳajDL;zĺGư$PA+"r>p^0< 1s u]dw=>5>}6$HLQc}s9TyS]Cwg8YC7VrYq//<g>Kπw=ׄ:ĕ!JlsaempU9^LɃS|Sfrt1El= h'zF?>?D?|ψMĔ=` 8 iq10G&_)2k13%'=~34ȏ>$2iOX*4jn6Xݍ\ ,v$;[aiewΉd80G<͘NIwSz%A0:os.!6ՉV\Wf,)k1$@r^ fR v$y{8"Dc3&ھ|R ֭)y񖤏אl I v{ZY)!I)~Zu}7j ˳ vK1`V%l)?ԽUJki&leHHB,Zs&偫cYgUqNΦ yK`Q(upQ|M7jYDhXo^Zu{X}Ļ-ARʨ߲;k:$F||>p]'k7TΞV2ϿbcU8<LKTSl[aBZWP<Mq O@)ٓ%GN*o 9CS%>K)"@OV3ԋ-Q9KJߞdۏ8Bt%޲pwm,ԂÁ9 3 `s}ukan#G'ȓr&&6}0;,fW_L%5HG]1H1"Gίs<> 頑b ?%.sk %:Mouq>пn)F֏pxB&1LtyzIc`!R„`{< ye!pFYUhmpYGRdQ !e.PED]0؟RCQƾ1v|77?50\B6AH̏y-5 .q1=1 !¢/ƖS״f@iQp~a&&KߟGuޅd1=`C Wp`28PtUUmx0 B2#cBktCrT!@C  d @wX.hS1LpuAZY0 h/c" DWǶ@4>b9$/$J-At}}C"ldžHH;~Ud^;>OB6.CH>6CȂևOb2O9lz(S #Ӌd #tc{> M(F4$6sLfx2q+p͎7UfZ>!0Fʮ)(}YQMn$°#>Mqh}b(2iIp |lLNg%߿s:Ohg4p~Q "~`(Ndl[V Rd9ѮǶCL1I@`jMO*jd($inHZG 4#NW T)<>V;_,8μ@r'#b3rY>:UV b b.Q76*Lmc |S‡*b!ҁHǎ1otè@h\SuHH^?<+ǎ_G @(?{F;dr3J H ۹7?`J6r2<~Oiv\(9@J@ v`,d&A?6_;bIϒ(VXz]>^0sfgt]}H@b,C4$ϼcN82ERE I 9,l`:yz0D bf녫qVr}:@'pPx`j'.1r10U8 ڪNHY+ٍ^|#7n>eVXu -$(oVp07{B:olCȂ ^0>Ϭ}N9DU0A aA ⵆEvm2K svӳ#t>U(æV.œ]c,ϥ(.\83u5>A O3\n7}Hi)9zD7\&m=Q"C_aix6WU}`$g$h @I(Ipl1ξ oԒA0XuoÏ&K!:O^}k޵bY33u~q@.\W%#F؇RvJ#Qer7йPv_!`׸ =~"f'?P}/Љe|`KLmc!q"xN>PR߿(~DSqpnx3EC_r>8O2 %&mǑK:?q D)fٮ=Й1oF80:+Խ\m#skQ9~yc` [qܴpC 8[A E cñASZ(.|kr3O+ ܶS6_^Kfg ę@g0{WgY9 ~ }NmH2O9*t ɤƔa'nD&#˻Otd$!(8?{U+@.)`7hȾRrG!$SVz'$DܢDbʎvG7 y)c1mHB\cDSM &RL"wJ0h:RX쎃9l=OD9]8t)48uh5RotwTx**,3UUbBIyQ)XP-9o5]*XHxDt-,U]%(6Ţg<>>?#L" mm Nкž!6ĶP hjG3g!j͎TLޠ)zD.>&F OacC ~, i|: jdΔǾj N I|䃖^O|~~y0UleC.[ŷA3qd-Bİ>cBkS=n9pN||<φ)ZSNÇ©Oo"x^[ $h! w"i =!t:#SDŜi՚?g`1a3TOP YUnIY>Zyӛ0َBX# f93)@ $GҖQU†ꘃJa6J^ujU1|~"MCJm(Fe8BNLImaO4. !3m(0Q z5@cv@R&J>T(2 6 m B<=n( %/f|<$bw 4)!@dR[Cə~N,N@:oc8#%A1EͥGoB"ȩR(6,^8C@荱C`AL9AĐɏ1X|N5p[NR&4DwXb|'L]^͸|4zBH=򾢜GML6efy NrJf9$laeIS).}$o&N^1MqJtST541ܟl{HU=}:@gLy;L ,2ܓa kڮC(m!O;1PRϦLJI++Jtip/[J]>#.qVTDϟګc(>F"Djrs.hJ)M6)%gxbqfZY%x= -#ݻm0Wb{ z៽Uy2`kե,@X".{qau2"~~~7"Ʉ71,()",o@Ö,oѧOcOO׫q鉎@Uٮ?5J-[RJ/8%8QdɠY~#{˘ENKguH֊_u-u-d /Exu.@]4zsyLNbeNJ@]몍{(W,sӍ0͘X],ǀc/JV>dкl1=7U m2& @^t~F)%s@ a={O N쐋Hމ FGǃH LB H@ŸldDRR!a'H 3 :y#c.ۛB2C2$ R`C|8ʹnBmЋBt%v&̭xzM-ݼ< w B&UL)8'=ǘgswA国iϽxQϟ0 5.t/)? Z,0  Qrܑm CS.sL&ҁnuF`zDnT* SM"9 sNDzu6q*TyD4Y!>`"bY;tڠ30N"iۀ():ACf0u3|*lL<d1'%z},7xρ^0ό{Jo^?ѧ'Jg1l;5?]R>樈P'f "cDbqG?ŀύ6PEhj02%F\W?7 )׋T^%N >OZWEW0Y$3'yJl+gZD?YQ{(DH(2Ąv v<˟ Et3tݤt?l݀қ fxm!!8_/NsF)dI7PP/d) L(tci+`@a )$e1A53nt Ȑ9L$&0g``!`zUTU+4 vDI::J١!jw)PV+tC=rwAv϶*׉~]hp 3}tL#WA}mbA\c\}2>” G)h{rK{(!dxANR1VBCQ+UO",Oݝܿff01%vJ344g.MLF"7t$<JD;\ y. 7^7Ȟ [p XrMx; ,oj i1fg') 9.9bY2nۊZ; 3`?w 9@2MA,b36J\l~ųsI, yvVT@7edNi">\Ի#.&,s60+DD `P֝vg9pf? ~'p,J5R؟4Gg2i4F 0Oiy_ֱm72R(sF}WAh3,˂ΤYc`) )9(3ަD@AGңG'z~6M1b[X!~ւaɪˉ>kILpV6D1,K!ZH!!SYCXcǔ5 0zĀ~К[Pј߻߰D9h.)ICuleTP/Xr}RNϳzL!gGʓ޾ �QWI4p?ݼ Һw %,b pnq&oo(낡ZI bؖgkΦɊ_ߢDlˊb IJ1P?wSg [a 9} 9% jѣKyY ytũīb<>z.(e]HS?g¡(= *$A|hFŴK$ D⦚yAP"N:RJ%AR~. 1;u\`Zѵb-X![HP&, 3 o% )f0!@ySd4>}K`Hi[QR/Qv[P 1ظ-V9#uq`d[ͳQ߂z}uSg eY1԰bac?FsHm"%!" ̥ @֘7rX ^}ؗC[)Nc;r%?MEpNW.5A<ƍ/ƀ>[9<)Z[~V<2!o0C" SRW6;P4Q.UjqȆvV4𽑀KIVuO_4=\yĘ.$Jp6k: H`(u!=@?HebUpq4bgt O]|A躮l1ӫMBBY6Ĕp[{gRVs^p/ӯ``t~?YW /Ư3*gyDYWNNh HLt]ñx+ te>vc]VLfTr8 r% Z3#li>/dO]kޔbLzsɗk8OX˲u\גr92CRvfE H%ᬞlzcm~cɈQZ3BJdt$}/5 >}F\ZCv~|y4W.SNx]}8˗Cf9Am c9|=zn߶ ))I99RdN *hKPOd],Wb(Sv8ǎjDhZHR)BpyV'M C}oٵcCbcrpo!kfdR 2J2\"E3~&>y2qHH131yq=;KZHO)/!Ӄ h"^Tݬ2AkJaf>h0 4S`*W^`0)WHw`6il(x8P2BL,꽱!0dIy0^|/5?NHi|+/8 e~y1O在fx=,'g!h|!Ҫ=ň (LJ T#("ȡТM; K&u1En84 TcY[$Ep`"bl(4<ώ '&hb@j~ oؚJaV0Bz^ַ8Op OYN|>(`6֑K@]eC Mϼi%gH9xGbF/>z` @:9sghTh= ެOeyN~ mT(6.^{)B*D<4A ϼ`OnЮ%83's ӳ.96Зs0;R潟^R\bN\v+rp0`H;S T8|Y8M9vu l> ![ HwL/@eZoX ٰ 01pZ=1(+ C0d>μ;JxO@,IK3un0¥aѵ$B(ES"B Mf@,LB8'w9Qb& fǴ'L+9PFtUbBWE39Kǖ'wE{i}!{4:Z/-$wzËR8ś&xcH.?^Ǣ9< t9л2r`k`.3e97kd >XtvNxDiha0Ɉ)a(P 9MsT6ccraMr(hq#7JYYJv8dgţ2Sb (ؖ %m8@L([Bq)28Ͳ(zA-0؟'I)$aV'Jj(ZH#ìwhQ;Ly6`UQ̂;rD^wdܶZ3|C)л)"}6-sJ28 ]9e,ۆ`\P GS+$dAJ9*)Ѡ4R\;Xrp[W6e,hܱq݆RC $Qaұ-|{7,Y0O }|y{EyZxд}x>Kĺp~ ?SP}7c-붡p:v.4 6}w8"F(W@HT8B9@_ ˺il }Yn7oP„rܕZ{N3'rN+!*5m:8k8khxP@rCL7yAY|*ٟ4x9!&BSo0/^ =* ysbb=yb!8cnVBu+)"J( I%ЬY6a! Em?Q;а8+/yvgCsq#b& `6! РהޏgԺdlK@Q"TȜ65Bp@^!>!0`6 $"-׆VY)q# [gE ^. Mx2F\W,>)ڶ508 ·Ţ'e>ӈY>j0!p?SNYW#(ͯym3gr"ţggQfp?Wutq+FbI%4u% 92\"&:0- 빔q)%1D}xɲ%FaN9 '8!|߃m]Qr/Y6)}\Bͻ;}g{@h *x UC ~t%)a\6$X`=BS 5~c ųFX&3TG^5uS|x#~ۓˀyZQKY`&pO7i*3IU+8x1%3 7ct;mW 4)Ukq^)E~˺:@.12ٯ.`| 9"e {ʂuY+$ a`JWR۲) > ^Ġ郾'NkzgEk}k;]B$@pI˲".lkm]q+>@((%9{|UbJض ۆ23ZW fb=] .,f;kd&FQ_&_!dphuV 4}όC0LܤI'KJdfH%3!-9x}CKt ߉@"rGmDrY.0}pA>Rֈ3{^J)EkF*{ {3/#Uu= PEN +nh&$YτC2Hi:JħM3ipӑ"MA~:jDtBԎL.cqA+٭x~ؿF8:1$Pe;(RF .3EcBB4FIM }r smw6 ?o]2%~3^<tM/ 3Oup R09C p׵!3I@@ʆ !DIDTqiY `XaJ ‰S(z"gCwq*4i1`b^0Jao˖}$}_wmԡz %Qٺ,n[JiL1jx'elCѪz (do쀷O7Pw2y"e,сFܨ l1#CޯKBD* ]23FȄbo{kMzX"p"jzXKvo:!D^+5/:kñhiXgk8A(e @Ni)8mA$Yb.n"}ga(ӬMyk-~&(j@nM>;RJvw6~P qyA)݊\8u~/j^ Buߏ'6@9SuhwyW,+kc0yyvC߻{b7d:bBJ+2`)7ЗsJNI >WOYҾ DŽ#R28 hy8Qʶ$ɵ6ó3|lTϝ oҵANnpY3n΅qK x6JUρ2L@'Kw',!TJǢ3I(F 8e}?}ZNkFcp[~K/G}no!)O&tS(SasfQǥ&4ϥ rp@bh+'.7w |NRY]iJ)v&,rʌfBL+L>1ug 7Y@VkLz@4UL! :( ֱ ;D8⧛úPFLL1a#! mTjه9 vM<8 L~#$! JY:Q1~d)cje-%3@ʈX9 b椱}|v<b`[  C"XB*8OEOĆ##};kڰdV$e\*:_"x 7)ߏ!,kv4J0B]!@LYKDZR2`j'=,@X2EgћJQmh $Y=y#m+|Y$)R! bN4 v9S^FQ#|o3 7a}^iGL$C,sA5CLٽrWSlK!7:B [G||uFD,/bp/@Cj;hH"֒ɀpM ? |=ӿsq\q#y*n8)8̓dMΤh=e.ʢm#EK'8jzq g8 b@"E& JM ~~Օ3vGI 1ԳasouwLa=;jmض y"xʳ$ .W"Z;eYʞ̈́Zeź,># :b?;|yD6S_eY<캦.Qx֎VBy AN1Sz{f2铥")Aeb!@{㠹7OJNٟ؏7ՔΤia1o$0}$D tzr֋mzIԇY1AaHqlJkg8%N^KJî_kTW}u&s 0q`Ƥk>RBBBM/9N:۶79hH;v{FD8 Wυ bn 9g|z{s>^|pL,$ov6&)pgHqڹ3ͽ=榪@ Zty8 ?}uop ɲM&aq1EMXԙ&:FO# c *n :?S =g_:M3Xua{ ~:Dg4#›MXu(?ш(xĮ}8`}U˿~W1.+.Mog\ 1dxP™$"%F6:`ڠbx%9F IJ JO,-aX2֭`+pTZ"n"K;p}i'ϣ_8C148F7mEe Pd|WbC ArFZoʃܢKG3qE0e8޿<{ Ău ώ8݄!}uk xA7AJZ;ЕrO3O8 /P#ul5D|yö$To4364D<*n ϯzV, 3wR:ǜLf!&,ۊ`Ę׎6:Zv~篣"?S` =7=)PxYV16 %/ԝ焲.)T2ۂ} ')\K. yBySۍS&5ҵ(_$θI?.O Ĉ?Goo|Oq3Go8%JHs3Z5I %&l)3#M*u!62~`]6;Z놢F)+F\o7A9h:1SjCYx=NĨ(S2Wza5Sۧ6m״2>@B*a=lMD{|F? 5zj) ám[}`-+?6GP+kQsǟ ҹiBLWEF-&@{ukL𰆹NFe=^z U;7\&wvCaMTTPCy]{f $`? ({?܃o(mR/`Rޣho_za5IJ :lDϓz~&Ƽn H^0U1L36H_7)!$m"!j_ S!+>aګ wh赡ok9`бȄ1ν~=agǏhǎ*֌ [F!eqѠMyl U[cZV2QԔL~#=!qzy^SAF:7bsڡ!?OPRFqz\kyTpiZ8%L")b>(6͉i[Rq6ǁ ?%#5"c2_sʙٌ>#9y0gE$5jy40;,nZ[67 X" 1KOCi6;FX3Eg 1P1]% : ~6FC~/ hgPP4'qLq'nowl;~?w!?1je@Z\5A. Eq sI F&p½GRDY, 3| `vg$+! u t1bDB< esB߱|_bUBD)Lbhh0eyTXp1,6-JdA+R_C"?Z 3H، {ELZYrCD?~?/ׅtut,o+ۊ;Zo j8ϊ LZG'*j㒽ցAĈwg|/Ț Q/9Y "ɮaY=Ieo{In(zUş?y)Hjcg-N֋H3̘E󹻗 cv1ew?|g"~;kuk`)']_1:"}Nfk4I"?~ D[G&ðDV 8 )+#U2:)_::M5̉l ܟ܎1ȘSVN@iLɓYFVqr>Yz)uO<'k[/%֕|F^7siyOXO@H\ %g29 t˩fbd޽f೑rv3,(~o~on>ੌ5oɚ //,9/7 QOp]L*~ͽ}j'!'֥?C`oCo-eml $bza?(:,J łۺa]bF=O?GcL>:}*{qzңlI)fqO> F+t-HpfO?RѸݖl=tkP %, dP ϔ~k?xPFS E}/6~s"|(?G S\^ZaWd;@_̑MA@pZKL_FR` $XK٤X(Oi"_%Ҋ//𠛔6SuS9/rZ*88ty|ߛE/_Z{/RGbz)TIOvh>@$:{!7h^2"Y4E%=(bS\f ^;hxMCHtc>%|TI-$v h *0IJ?{EPP  UAE&#ĕw7ڑy¹d-O_0] ,GH0f(iqS܂wl9"6`S'joi BC`_!oLtD4 Q<߉h.YHighX nHx"(QuWrl'{~h&T._ ;M-/O&%&NΣB?pߘ'jXSRϯNpBE)7\SB w?yF` =O$ 0By, )N9F4ˣAD,U7k?b[7a\W)qgqN`J 6:v3{c%뗯x;$z$] $F̉t@_2gW^uI/Ew~Sh7rN%=dȔIz`;zc,}t9l_Z7yB1(uVw3{('e-ڼ0D u]Z/ _w:R$8F7tcϊ 7LANXK!fh'aW0`+%ED4od: p(|d"/A/VC'SbXr@WyWXI.64@3@쎦 ~SdcNe}x=OCmJt.@Pĺ?:uO/x I ?6"siǒ n9aM*'>oP_\׼* l׿?`Ro`p {U,FLJ}>P3lʁQYpOKƒ*8)Dto1TJנKFڛ|xϭO`7I,;A t72qb- R`co?no`jG7KƔޑ`+} DÌ)U4Zh0l9GQJaB|r!ܿ.k ۺ$1B{GR2ㅳ!d̚${_}W\I@W ? :d6?\sAbc$ uz?=M׽B3<Õ gѮN['k _^??A7C^XpIσoӆ5&;}7*Ù8$o{mZw'_KϿ0)̨e !nÁ HBCtD"Ҳ`Hꔽ Bf`"in68QuߕQ:!PX(7Bg6y co· ?HxI@FUsO9jAc!sb,dLP)焋fl/9CWa:fGcN:x8:]8a']&{Oib7[IPSH=6 `2 H8} W4A$@. 9)Ԁ9BrA ,"%l)`rH9$GC0pŴ`Fah:J,"fqVD< k@) '"Vu$ LZ,z ϶6HDgtK[NHB9q͢hp؂QU ۶C$#LV  ]KNWXuƒ + 9sdޘ|_"@ZQ,1 8[瞠ZX7?}o(`n mc0R8&E>۵+n+Ї R2VߺЎ )Ar@bƩli|[2q;ITԷސT=ł{_fBe9ZK8 9iI`j^> [ŽdVSƌ(D7޷zsJ<ڱ.DZ#䅁&mP:#K.hf}@ 9f. t තx<leCSJ. #: };zswtdR9\MP2yY3:yk$, 6S99p%1$|msb#bnL l+!g֜N1^u-rW( =uSφ<{$ _Oj =^"=UrLJ\!r$ L,*`2S1#g:7t\uzw/6S625d._35 R0.W9]s &5eLTp=Dי,у)u14w3 }lF{ WO9DM/6%fR >'#dO|z޲!1 %{X)dΎ8 1b A +S0۶y!Faey(n f@K&p<;o.8k%ȕ3W<msvnlX֍1`[T Aݨe,tpgC/6Y+`,SpGI3&%8GA`xLifò$dMGn؟;̸&zO.[tˊpkMZ&뒞Y!r6>y ╲ɇ!-LܾRa#%6HD}~1Fx{0LzY f!Q2YQܯ99׿7lFuYz({x>| Us! @fL|q>ɦ..73591Ft!i儾X X1u82C9/>MCY|qBzP0S} 6/S釂 F0-֒ $&T芦BC0P`f41P& 8ro:$=γw~&C 1gܱܶ{k*vMQ}ڢ-@|<{# ^O61ۊ'={aE!)khܾ72׀]:tMfh&H8a z)<D $T CE7@\210,XBDO,)lpҤݴAmtye|xd];+LQqߘjHiqT J.\ $Disqv<ʴ6P^_<'# Xfn RI4mAZNIW~s EN{G%0$'QGV٬ :eRp tͥ٩0+J*ݭhR!m "1$!v_/ϗK#vI )*b5 I<0d v na8ͮ')%>1_QRL]Ydnεzzo{ϔ|˺\L˷Hl/z<8zO&DlJ0EizEOp&v[x8m[paz 3'|XJѭNwܫ{qHFr=+Z%15Dԣ1}Һ3ZE!CiOo>s`YW@N"[%, 13ZRxΙB%%V0 \!GݡX }Kc0qeVAWe3u^fͥɦ/tJWK>?pv먷l@#P5HU|#׉) >Թ|CpyQkHz;?45?&8$d$tydCiq]Z0gnd% Nu] AR ` z딂,6tS0-ުwA[R@ y8 GkDώh/L:d(L# ь@q`3˂0:1=2k01r~rR'rHс uJFU%*hmP{Ƕ8$&<'@Ίtvc()֑Ɖ$ ō !ІӠت @TPdeY(X#ޱnJb18˲r Ƅau&G9͠f)`X0ES ^eY;fFc`ЕR?iͨ Pۉ6}g""  Lz`(.ڨG*4A?<q4e8L}SRN\2Kv7l#R (5x>qqR,p4z-kA Rqo=ғHz%r #(˂c!1]%4%Kf9E@TA^Vlۊ @/ Ԫ˖ 5a0~P2⊴py^J%cX|oE$@$,Loy<)AGg%`n qܑC NZb+ Ўt -rVD3 *zhtpJ1a]3w(/`''ߦe]?OʵR@ %>U3`% ytleAS&%GcYΑ!3m >yED{8X ?GRLX҂b@\2XvR@pLSQ#+~C0;+k6h!P0%3j,R gb(d.WOܨͫ)Ds.W}4 ͡!990yk)fO+s64Fg$B ea]qB O6T@0D` a,U}eg xt\C[7lӦq~pFҼg3Sc0Y֤ # 5C 7slcVU/SxMBʿSʞh6CB>.,{4oȪ* ={U6$ L*s/\D/e-Vgvd9@eu}ͼf]~0Q>Яz-xe>YcYOeCh8X:@x߆˷.d007O;ˀM<ϐWo`jx5P>q~}/А`YħOA!6@ z?(m[8 !DuIm|}cCHhct PeXʊnB8Am R'LzZp06#~5H@()쒩T3Ty!{q4W #H. .s}3LZzbСq`~Aͪ!I I^6FoF9^57nL]Qn1lꞟa~{D?'(qa8qjzn㔳=E*18p ""pF=u(ۛTOsAĈXVNӝaÑR7Gi 6a0Ȩ]qQ8M4B=*? B'8C.bNVP,6sUuu%^kzfQO61s.^;nhAN=(l.pP|)cgCuF]SejTL'?“7O.Pe¨4σc!09SDZ40 ӟ+$[cC; MRA#$O-ɰa8OEIy8Osa@XTc ]3ڈڎ^O@գwcq@@@oWif*$f)br a%&X,q2 / ˊOaJK8Xcy d|=*ei60p/DKpJ2lphWހD62~7P vtSԡ>Uք|Ä > ǰ܄h ENwq[7@AYɜւR2 eU)yWmAiﺭx󎆡P )O|7л~"ĺXec dJgeD]`P% +S.XR(zp=~zb6 Ho\>!/}#fyE"X6J\.Xvd}&3<Ya p811R(kFp)%kb69 4:׻U9 \'fxY5 5ϓmL4PEmN"{kP}%~-Cbg"TUo@0Mui54&H1MS1.ѥe4 's@Hxӻ2ugBk,0ۈ4GF_?L&؛)}Zc#BrTZpC.Yu֓KJ! r1G%kh"g\ӆ)!*r2peEr̚x:AdG3oҼY3<՚:"_G ?RK4T\5ik2=t04„j Hz|ST0`B{Lk1I8͔U-h\Wk|p =BHP^_W;6Ɣ1 QJ!b] 0%{*A*Zώ1ZY x9'&ٵ^ɼ#D_vVV Sj%Ur@joاN|!x*cm=>03':^"ޡ] ghz#]0SV1$?&;ډ 12=dZ13n . B586e)Yxkމص_sm R ;r_\zyikN? R!,e~w3:sX q U=QO`ƒLj^ OK@.FOtM뤥:/Ԝ"AJ%qbPt,$lifDD@" s7'm(рhLH"P ]a5kĄGJZ~MBNo zXF`aPHh u@,b䈜#:5@(13u0A 8cCh 0PJ$;=-/olŔ蘂 17gL|x84n}Y1C'0FCUwMf;̛!u(%}\8ݐrZn#=" ~@#Rg3T5T@k6 4(:ԛ@@az$Tj`dV4 6Ⱦk ycJX*s6A\S!dEŘ\V@򛗘{kL >pDdMp< wjpf-| Dpd^\NP%'x [ NgL-Ϧ2{6|zޜMFfL2-`d D 9P^{^G(ïe)HIP@ `mP|yBB򀨈<*bL1˗rIض}Q)Aرo>B;7j㼤γ^,O6ׁu1ٖsp8N_ud O0JtfʍWvY8 N`a`cf|!Jta,gZ 6oj/Rza ̬~ N7>#4sxc?= {e3җUTd ^ 1ñmFz39 1;LMzAO7k}DtX0LнHI 븕$<ʺ$HȈ2%H-c] nۂ- B)a9"O "k+eYP#Föe;õDAIsB!p;t@0*5

Mu[k˒p+c'F0|2E<1wDÃC^7U?O1Aq􎨽DatELZ HLx|wx28@1̐o7?F ؇₼H6im%?HDbbY =xK69D|F~/B*Fm`$&=6` !uq$/DǮp!NR207hgCj^PZga? E`pgy)fL?@a #'}(޼ncvv )\5ŲT./6PGAѕW %,b2g&Scx;./%!ݐcy91$(hFl( 0w y|osƌ1<Ň)hJ`l~ Ä.O=C)Q H" B=tFsx.ˉ`~7WNL{`B92uǚ}!f u&+!:A 誁 Af`@pB7WuߋuaP{I e[n+A}z$.0V`ĔzE&PzALx _Q*&p:b. yy!d:xO@yM ׯ!FNYv.Ũ & y} \k4FGq͛btj"N }tgònHy8[%c({}pwt ZCm}v@˒!}EpO A @ķKfUr Gc]WԦ8u!1 !bY]Xrri'x0sO5rr.5~`]_VZ^T|ՊeJMSJMuP5Q܏WOfz  a8KKw!-g2*8 j^`LP=2] "r) =0j{ӑ;J!1C@EOanJ"> 5ⵅc+3HfA &v7UuH0|mC^ؙio7Hry g.y !l``771E~PIίSuDn@B^ꀴ z9PRFz_|gbgS`.!͉EäR7ğamj4La,!/R ) "0S 3gXdB 8h,(kC`+o26)67?x;m>~gOz ^ & M}*`<׊/ sJ4$P~"%4(1Lh)OGI""jdOä@҆vqGS` )lw"W*cT˂,5`?*N+ޡ1!JD,COA ѩ ' ڃF9@ys FP*qUoBNX6҈@lp_"l\Bvv Μ@ AyR"HIGwqvz礀!CS eMw/_Л!J}h'6$; #(knюRt] B0-c?wDŽ5]Q7@gmN%0$QQı.e{ցJ^>OZLw=1e[Q+T]63/4Wlj d߶p QѪɩT$zP5"BI&|1p'ʺ  Tϓ2wr:OyH088B!%RRWlo7m[`c&,ٰq d$ѭӜt]1w0C|#+ހh20!:PS UNL AH0OW~_Q<rKDH7 4<3a6bFPcJqFpzt2͇)wEkį܅~Ŗuˀ@e asq4B%fvcrsl@P6:~%}>l@`#O0z@/c lǔ/\Ӂ/Ųf6)2뛡淪8'gOO\lo40`t ܣR(y,|Jh1]2Akg3@3t˪Bѥ3sϜাL?z=yB&q B)՛t/`&B6NVTyy@ Y %(ݏ/dki`!C,ÜQjqmH1xHKnNW!$1Tr3\d28<=|Mťn./h ^`aO VF= sk,C90~9nX {=PY">̈.O (}GOZq8ŀCA{3PLpF6 .AyU 6A*?&y1-|RqYxR\mM j02B>1\)Yr5xvtT,1)&]7ditP}"sԆn:Pݼp'x&3r\ڳYPP޹6h7!(Y)X,bL)V4 7$Dk AB^2B}@$ G gk@06eM/9e! [^p?ֈ{$""K"}Xy`"0i pP7\Kh@$Nx?QkI冡^GoJ%AY eF=!fLp+5lj5G\?v~[m0 )P"-SVSbD1BD,!qR ,XrB &ƀc?pr YQbB ۶ &6eq˰l7/_<958O Lm[H`YqxzX ϴJ"xd@. e8>m. 'd?dZFaI VTJu|hjyКxSs| `,rc *l~сlpF|y @/u#܀ @v![K /j~];`H5dI52Ukͼ 3$8 SW$Dt %'G7(9_$c6HRmAD9 $l1a镲Ԁ-x Z/:aaOj8L\ h4WE4'  MP_GnS6(N9QPeA9bȲK`% }Gc3Jj:!.#BVt98LlAs\0P?Օ,VVX7D,$tuH៷dwysPsFk Ƙx< աv ct,k@ZNDLT.JJ {HSAc}knR2p9oeYVJ3Tn pB5jp/LZn l 7˓k5l$M&^9cD%u&PCbSrXzWOZ)^ے=Hᨹ|TTgk,gQzުIS;^o[xLFVX\)8p}੻;ߺz[o3- \ ,j%GO@o`ύNp)^6Kp)~9__o_t xҞ݀tWHL}oșl>&37]ׅf $eZo7Rrqpx]'~}}_0z@J~-U8!qoAy ꯯'rmՑ|[$W!e\gu(!x(\ `}PJF v1#Zm.8O,}x/g@z) y4O iȎRqmQ!!p'hU|5/}ۑkcI OWr]3KcqCJ %>1}˳Ҧ\ j((o^JRB*3rIDAT'@J ~ޝfV7lǎe@+eÒ]g-c\p{S)0(/hU hpz406B VM " K8".!cd$Y^*$IvDFٰ;: t<\O xCiRB scJᡆ[,?,Bt/9ִa3)g?g"ɠ/,6~g34{PP6N=q<[e??NVIM;5BO J&x+PЂ|s3tx EFY DM\x1bj!ώ+l%G@Y MW>H'Rb&S;6 w ɂ7;@_)ޘ!M[4 Ou(#uO%P2NRd}Pk%%s^}as "B@Qq*:&޳G&&oNVĜ DZC 1#__)ĭOE[zsq ň문^ =U~!灭|R(^۔2TӒ&1SNJUžV|=OF(3"rI>qtOV <ЇK0 )xl2| jx1J^b!䀁a +*ޥj2*:D&36o{ZblO)͜T*N9lQBb$0l9a$ͽ|TE >s&' !xicѺ !eN( 0Fm2BY|FT䜁Kj=)G&)C ;N6=)!mpO99l ݧ 3C,'̔a*I>P\c%Am!(j?ډ$,%bJ> QENcr2^x瘆ן7Y(k׉M;:,!x_ڇ޵ֆ2꒪D"a~7FjAH§nhc`g1=Ĉ}+P\}`w(Θ W1gS(?%69E/XrI, Ç Br!ȼYSZ6.oQ'ҽ 7ٌu+av ЋmܛΆ7oWzb̅  B C,Tl(ّ*jPVH6z?هu,t:3` ָh|XS7-p7S칽`fOY A"̍s ZCϕxA^/Cϟ4]B%Ձ6`z\[$ۏt Pl娲jC1㪬uJ\'(CzQ?nf+n7!tkv?0@mJB~~/W׉k{/H9cߘ,,|qr˅ nolh[//1wB(> ?#=@;bns92)9S@δ΂ <Fhaߊӳp|ܗL*A^vWZ)ggş +7{\L(*ޯ7/]J U0nA^TʼnZy&E0ʫ ̎v,K i@oR L0=@"d۝&? #څ?WE:L^V0;Ӊ~{$(RDlHr"<6HϞep31~H<2tx6[Kr$x[CkyxR"z1Ez`(dG9Qj@]׶p s:"cK(Yq^'%[j zYeJ+}+m&.M 6L05*唋M[s DJ jH`UgdrsofBRr/G.U^ׅm\]ޏ0)?hxM_.C;PYЉ]Ѫ A:̸5?`NĸJ셌 `660|54bbO %$TD5a:U@1B'?(eQLqp'`hHN(dɦ_S)@x|=#EΉGlh~#МK<i@ *nQr$/C3=Q|x̊G{v45U|M7C1:jo+1?cMbQ̥)1Q eRވ݉_΀ZȦaŇJ"J?lkLS%X,#XC8 9Goɘۏd!x%V-e8-!`(db.F&   tL0%P)Y6zdu],/$0G8FdZvY$?n:M٨qXyt\L2oN@,+%7)rGA gy >c}^PDU0utLj_~ g(9$&^bO }|iuQRrPxd?9Y.r(&![${qr5]qDtp8D)ޛrF.;$fmU,r'4n#ǀ$ ča*9;pɉ""qvzbɗ$n$F u Zpm{ F٨pHb@Wu탸4Aכ>|!dZx 9.-]{ڏ$LJK)&tD yKx:'-:|XEcNO=7ikcyJK <@ZP@se$xLtTh/6 )c|@LYi #8mSưlƤt2.d10VgIo tY(QTG1poAnFRgJI}rL;oWbxɕ) V!aΏu>>E{xM:58)Öd 1~LpsdC  =4&M c PR s4t()"IBP6^Ծys݆i; ,K#2U}mhhuB`6 u8U&8XsAoQ&J ,B&&6L ]vL"xZ]FgH%9P~0KXh`M(m0:KƨH4A{7p zC{>9S~='Iƈ뺠Ӱ|j@ cFaA9!}~=7~dWUH/#%*+ egT)= P Cl 3./6I7$!9ߔ0 / WDoSq6mq« Sfv;a6л˓oכ7cVt Ie! \!r7њ3Ym/G !sx~L!Ȟyc3&BP_'THPAFՙ5R61 (kQ)<'3^3jW 1bTE EHm?)KMcǻ^Qyr0Ik{*'f[mZTU @D@M騟-@HFps`/;R.#t !aX wo$O8Xz}0s9Yϗ73`" ;Ukۤrޡ9yMn06\|׿>:}BXxN|@o-˟oo}\2G xՆ_h}@6c0h wqlwmp2d<'FNUlI2])@vAR슐OPؼbxR2@"~=̆;JiIw]9}g(9~"Jqa'F֬YŐ0TJZɎ%ژ%# JvJxte[~U]MSl\31!` 0 )0k< 0 fL薀{ؓr) 󬐜P@}!VIQA o4hP[^ ~[]F}j}%|#DŽd֋85|C"dž1zzxWHA*Fo\ܸ7?^, L )$\S>pqG}B¶c8'QIJ! !LdKd\qA%!eX0;5 3 MT8Nitz3bрpS3X7 7K}XKKpMxp p?-qS OlR(CSM}q7%>_,'`5e` ӄOd~}ԑ%9 Q'728џk /q2p)S[ ԙqK!m3D $6#v@?b{h+7XSH2)) # LucO8} 5` a8cNn\PVlY`6cFlU,^;_?o CfWmKA6ޣ0y\oT|YɁl ض sҌIӁeL7y%p . 8S(&NwhrAg`0s.VˋfIOVhLÿfޒ2=xSU]ݤI W7ީR%J1BEe~ѻk?j"Oc ^a,6Q,Coz zW2b[o;M.{!`CVTf4$RwB7#:hly3 VE~:$,v7Tb1˜Jr\|X$Cg+B7L =M Wc}^ddeh[7u]L+@i$<^Jz UJS9OЉhE(&,w@Yokppr 0w|@mpSPƯZH.T  Z=@Q꽏-x +T`=c?88Kk3L)Vo!˾pכlX'^mKh__S{(xx~ԳduVNuE>~8Qʠc' <턿zل@'ڤmpQ˯uDPpBxv\Pk$+'pQrB)Ϋ!炜t#)j's k.91!1`s;jcw %;ΌFQ> l^Ĉ9F|H wZ>KʻP_s7n1$cvF.ouzM!x?I$@p̉vUrP2gnd@4HI`~)gLA`؀v0ˇ*%)!|}f;-Ƣ|BМmSv'rwqgЫrd )o$GF`b3PȥAQ{7v[)4\^Z 2y\w8$d(F5́QR ,P BƢ. Gi"d,pG‡Vh^YAN+Gą&s00 pqŚXo$gE:vU}ԯ4gEliOݹD"z!hFG>O'5krȀ2c3Px;ˆZ2DvO7m0l>MHxaȆ60Tǁ7.yq!FA:+0> PِP\ADW*LZYѳp?מ?Dml^#h}/0^ b'DdK"טbGIBy/F́$dQDOd) o覈 o4Z7 eBD 臍!BFm7qF{ِbınWf~_k8vz=6A*,{ؿMiQPϯcLc[ȏ'B~] HQIUP%Dk9dBoR= 0 FH:D0\]QDz-&>eb)'䝆Dm)'\pI~l<R3 [)%,t¦m%ÙQRRrf@gmq#gaa(ongkef 1ys1d@Na9;pN†wElohis`q/dSD؛ "T2 ~',Ȇ} ~d81cC7t"$2o8|5a3PNih@JВa"!,Q)JT, (q ıe$ {D/7%I1 W&^te ȥ X &<\R9Am/AL ͅf0@@ifpRRvO>'DXe @.N`f]|SFED0zGK)” /< AXD W`#'\L=]+z\_rFI8\_܆1&{)XF.?S7B>UcMO5u W<CZ4kFo~d=.{)̉d8TJrhL! e)G{[@c5M "'jo͐nҖx=ȼ:׳VId鑉K axqpItR^;F,{K}b:܊ecsz L1yT} GIrDػfQSO),0',RY#Z,}3jXϦ⬱#m@ Lfnfg|@qtY'4̟-zDwY,`sI ^mC%E< ^62N~S @Ry1lW&\;㞬R[=3L1`bs,}ioo<_q| =uh}y{"_'D{Pڏv9dשȥ3r?ύ^z=e[u'5 ROpR UܟP<ߜד~% ~6_raڬ*`=OsFq>Ml LF7?;sjIwM8v0DHbٴ3+a;&15"Ğח*k| 8V {ذ}F/D[Zo)HcXϜ 6SCq}U |vN4ӫa(c M'"޼&N3ϔYZfNPkߨod%fHTALZDžӬ?9inE kq/eԙeorZ .R-xo7;Vg$?b<|=p/@ +tDqb!2&Y!`<ᄙQ}]#X#&z ߪĞ#eB ~N 6U$D(}~_'@DC,a: u 2Ԍf )0lSXhF|.4 ^՗?-< X1i 9B 6|F( o?hj)fx$ ̎ځڀLSә>0P=M`1d4Q2i˸ށD"""6؜֠Ap9 chzWq]lS)hlFCOO m{W@">;1VvA}p \z69Thj9o9ͽ]}Ncdn{AHC 7uB\#d}U_M#J]]rޝZcܯ!D 0ŶztVFXOqR+{"uldb eKr;6tOaC7йW!-# כ;KeM/'DgB"[)ts4MqpRL4h'@8æ6%] %w[hj48:Lp C!Jnu0zLU/76$  l)a H H& 4|1Pbƶ HkbN99qd5\ÒU{ϝKKq%i0x>,\DHMݱH!Fob )LˋGb0~'Vلȧ27N<zO  4%!ރ2ЙɵIuz͟%}t:( >LjNg΋'pf uu|yETԩECZoG^;f8AYC\ B7v;kbD6j1{](Nz }pf:xB *T^ $-c"Ⱥv(f'=842eRxjX~ZC4yg-s:*\u?UjwglG 2݀4ƽ5gߖf$PH $,2iV$1NGRXS6\xn 6,zL [d(CN"P@ʐ\ 1z}kMy!b!@bҀ6Jł"(joqR1qt@,:4oK7Eqȧ,q=V!'6A|y%A| e.sQ&7?dS:}<>C󙱶qJ-SC?%dx) 4lk%ӆVD:'?`K`*L; 2"2AJ#J 8$oS$^^4By*do AgE=DiZacbZ@Ӏ r􇈀(1Ȱ=ov3q4\2Pl.9)%g,#ZX@gx~}a Cxj\ijzW(A9qL~{M5& :&-QuGbH)V[. ^o-nLDZɓX;,O)7n%;O,_׋l``) lsRA˝'}1.`Q7н*MaX >4YcBW$G=y7F4U~eS>g N/ &j*rLi?5G![6s^Tb^ܮ Md5MÙjL\T3L<ȇJD:A*!1IlFftx@fNEyƠ|9^SDS _ԕHcGZ)ˮh7Վ*r$p (Ȥ` Qnչ74O4ǟ/ ݍ_- ,d!\C>uj(WeCn Q௿&5FE9طIH (|~jC mv ( B?V-8 S?:_'ŹLξ}N  68 ___?:lZS3ϙd`q`&KRf6U!futY<f q߱o()z &y5}'kf0؏>%OJ?x'1mbJCpEzR ȽiUUzdrXqy]\Igx,f9=%;ρ{ IB`9iesI)S7FS2  U)C.A#1|Sjao{$iq&&RT'8rsC2RG))s17T zR<!1iK@ :: 7.0' (|zLBeV(D-#3O%T I>f oz (/`U-?S>ᙽ&z|sc>S?`|bSʵdΉ&Zs,|s n,P5b7]ْ" !q>|Y޿e>!@HNe|!Q.'":0#%ڤɿɄYaMK(O4؎>Mh]3PF3yd'xQ!W}J"0y&ר&ZHk4ZkȅN X8;47,%(~ 9n aAl9"@l E>SLSTRBJYay@` d\0tc[vJR"Z?:˻6a8(L4  1TZrAd[==+ ۆKp_BY71zGg?ȉJ6 ^{8j01E:H _NZ`z~sm ox肱dܜ> mC 9l%}1: XkGd~r_(e2%R0?z XN(!D2bTփ'BFЛ`L@Bto>wW r+79'iÛE1Fϊvݐ0.ns0-ƒg g]A JAUȵ\V\ ~.h|s4u@þe^SFAot WDлA8) Yy3UD1-cv 83" (٥ahu0}VF0LAP"uufEgsaNA@1!F-@#"Y"A`P@ΔF6WְY3VxL%%7ЧtwN0?+ZC.9օQR6e)&<vn 2 lw#.5%xET z^@ zE9)UKn&AáMAK{_jsdHu0Ki"E2ۖO%GM9PbF*7]oA?~0تo_BD?33w\|o%ѼN TMxOpp^{ӄFbd.Iu= 5`v^(yLb3pױ(R6F]FJln1Cy.a*KH/ʜYB=UQblj咃H)/Cf.Ng.%BV BݒāŒ =D\Uހ-9XU§~Aoϯ[`-kJv|[=VO`st1=݌)h@ãd[cX[~!Bv sX}(%.Or >3m?cPcTߌ@LYxg]Ílv>o/̭qP$BUO- &_)QLcCMqds :_O@瀄Dp&RΜ΀YQib> S>"{hn8~1<ɛoȅ~O T缯7E`M. K1s< Ȍjz0 l!ܮOސa֊ `׳zkλoYT>p2is4ܖAlE>A${Zwx-drAp YiQC&Ľ5DPn`N PLuJV^WA&pL[u!SB7Ɇ{BSY)*zaCŵV _Ɯk"p7 6#A ƌIX6G , ,ݩ9HIU6E"* 54B,b*b3)#ΰAbt~`y bS BK:*⯤bIo$Lp2n''A>1A'41fL"ͪ O7ݦ닊gMz^^Iޥ ^GOZ~{{VO#IG/u$#$^QRs0m 1;5ip-oqO ɧ\ڜH`Z5Q~#PD6^"~eG涭V(81!%!9d6(yĐ< $6T'gĽb,62,Lʙm`A۞=VЇЉ8H gM<4?2 ȶaJA+Y  DT"k5=m;T6Q @`ɲَ%E Jx+/ LjWRA/}cr#iq/U{`@ ma'xlY+nˢ6 5\3|:xQDJI$Jubs荠I8|Jw$Mg­l]TSxzxó}(sZP#aVlnCS0[{'sNH?>0bp<T4}GۖW.\:=|^Z̩Fcv VaJ)Afu^x۶!o;")%ws *_>#{tzi %e]\%VZ#Bu0X(C^w < X π(2B2gyudԍ^L"%ŻOS< O> =wO[>wl6%[) cG A>1 d%: C\ekk&fj3rZ [TA k'^;$߭`4f2lq˼R(p]N|z7P:K՚wdIL̏}*0:&ޭ 4,1u}+"5)K=,OxB"#+8@m)0b*p}}@Qǂ+0>h__wQ;pwˎciycݯa",@wz 5s}sYu}V 7K1%U"agbZox܇B&:X` % {O,/% ~C'{5D z:Xەܿ/Yo篯{Vǎ#Rȶ$jm'hݜeUad1&J,mm~=A>x?9_[r 0 8Aθن*IZ-P.7$8܌ژ6z}٤{L "HZ!%gg$M>n.X{Oq0%eda*egJTH+=F}?ZGvZ?˔ !ay FrL>Bpy:p֊?HpqɊkUJ'RJcм?qI7ՓV7%>qqeưҍN;a^(HYPR#sbsq1CXF^1ՋB8EӢNO-l$ΎLTx'=%YL'/h "ESΆ$}Ŕ3$B/C0t2tT/,0Xnz˜= D,7SGukݧl}:g' o~X}qQvN"Y%ff '7M,P%"W)m, z6@^ał RFRjsL%m)ïߘ)w ih/l@bu6ΉhN'̉ 3D&VO6CΊz7p ˆWkRƖtƔ:/6CƟ5$oaHiF}@'bu v !M6`Wq1.779Ex$ v5hO mI^669*8k9|ώ1 l1&j96\ׅm?@ 1Ѩ9D3( #eGL>dl iq}^%`R4eZr A8z$k34P76dq2HU@9zCPk3bf(NYDzSOJ (;6S6 POJ>| 1~`فjCİ6کX.dR,F97瀔vۙ7xKTsBjűg6!sbj@k$BnRF?+3%ʨQ2 ⦰cvҼNU ly9xlѡaXRׅPa*yg>P szPro"%AWDpP64)yӡHn "j Q3^8xX7u*.gIGm {)ȹ989mΎA7 Ah`23 g=:9&|:f40^"ጇHh\ÍBjy&?g}:9 ǜu6y=J7$H%Ӈ1? wep W,6dmQAx܌(BSoۖ!uN̰G%2𠚠{BBbх`eA"3bk*7 0e#+Y[P̱2ξKF3gz%)o'Ys:rm"ód€`T ^: a/) ﻟy{yol[׆?o;ã^'ǎmxN' .a;vș<{3c?@yX$ "m"LX羕ˎ9yQr8a*^ ~?[B/չ:>E\I'̵< %dFĒ]ᐽKX {zTJ-p >8D$ \k3g`I\ܷx \=( 1?bDyhkx~dŒ>.uKb~+$!rb4'F0TMӏQy6Ō,,>s7>s"09Fdt?xYB! JɉAZ砐ucIFbw2E'Slz h04"aKZ'@0sNK҅5 F&d]x3=50лRꭄuH;~nnnX'fӓ`dĄ`5.d*\+<4:j8 +TRx-i1آAm366^$Ŭr;a6/<dj`pY U´A8 3Z#hzqlx7qN| `ٿ>*#ڈx+_2}p%PgC4 N7t1[ 3{>*d8"? 5DfV ^ỶY@? .隌 E,47() `}0$hmL&RD &LgN@ /'_dt zo6u>լcۃBS-P'sV#$1\81!N-&\' )$,.0 %;VĜb"X9 fP=vwMA0£%e6lDŒgjT6Лw) y5>:G˯I"{Qkٮfzik;Ȅ^?k}M '7m{b6p5'6m{IuݾZQgQ2l:tK%i`Cs *y~r@9Oۄfhc;Z@"P37r?d%㵮c (I>9&2͒3pӧ{L]oO& 6i?x_ag'Bc hȂ:=H":HL9&f>L y Zа}v5>cG:adr-nnF~-ZYe6Ř{ ^ ]J /xeTpd\o> > !n l~yf[W7[ӟyo[#&p21͋5K#=e"7$;'&o0 Dx# kilb$>D0m` YF/(!n._Ɵ?0b?^=[ *& Բ͎ߞF7%O^x2||fkL{ U]jd-frd0o@m~b5:Nz F s:7,%ť]XҧŜ0{"pa1q;bN Q:?@msVIh4@JbUeЮ mv8 YrJP[m?(t 5<=1A/n g?O©z@xkD$`pG\m0[["wʽǸ9k1x3YXD8ȹ G ?6a-@B N^i7 |8闄E+7yIHs HĴH؀4i؍񝁇o cHωn@IDCL8';.&z苲X ܬd'jn?1"r?07_f+ +^1%fj];?nie¾;l]p'-k ̅khNl:1g'+ IqHX< )ٰa0T7DX>2&7()ՆUp Ab!O!C-J#zQ]цbL|R 8R3Fl[v\sB2.2&k z`ٽ" ǎ&*nOZRA\2tvl0d\b9ɼDlQ`!`v5}@Deia^HsbˉQ q|IeÖwME?߀ӿv|ND Նg0΍%6{dCg@(\7%G(Ytc c$ b&} EBYڠ3̙7XkŹV+_G<7Y<^Z;$}S= zr庌!;нBJ1J$Z1"猒R 85员ZM9ߍYϜ-s 1Ņ-PrbO G 4P1E4{RA4`l.Ʉ !A%"1E{hle96-k"u=ߌqzOşo&߆W~6@1@CrF EFmKy"(+\t1  [GD. _' ?,l Z(SE? ^c" 0R=v#SHj!?׎bLErư ض`$lr 2Z}#(D9% ![FguU l2N В ( Øߦ)?Z:IT ЀX@)2E1b(zbp m 71?ͽ`pip}L别 |,x}Oy xd(oToW ubNu~27wU sNAcD 36d5C޽"ĈWds;+F L6[8 so4|1*F `tA IpT/%sm9 ,&~^`z"XH5!C9AǠxk4o 4嬏 2ޏP:g>9ZMWTwqCH+BvG0.Զ' G^l/*SR|/I5;'i [( "Ō#c;}@Z'`6EGdш"!2Z4vtӠvD4^D. Ss֘t iwL@qdc" <M }u @{}10ߎ FDps{9YiG.L$!z sD5u*cX6x<#zN7l|e GȢ;9To):CU+9KFذu^ 2ú$l(I6`x<6lcǻvhH|_a/dž 9J :ޭv{dq͎kr1#3fo9=啲T <")0@/H(=Btp5:ρ8 QbQ6~i+ ׇE` D&R&1(ƶ-1SjxL()@`f[@#RH2_pVʾ8a{,1䩡_'M%b@Έ. ЬWb¨ p^  ;<-e‘ ~=Dsg)1e;} >A6oʻ^I^dͼ.e#fq'EϮcK<;y[c3h%9zFX hI) DH.8uߒ7W grA``ݘDfgR.vRH?dk<,-mF)fΉS#r\+GD( d'U$5j/cJF 3tx&Av]ϛ"t-b7EshLOn,,%p*,6&d׻f81ALS߹[МjP~1&d-0p0D7'1S: h)K 039ݯ>2[NdhA9vo8} 489C11meB@N' \Z@K͛k3q_]{;|ݏGlr?ǟe^|1DGDpՆ?oJjv߶=s#L`߭S&~CA*P"x>15c2JdK!yӛpOA\%j!׉1|e<ٶCo920j+&{> p b)H 1B*jW18#^Жg~з(m jˮGH}O hGnpdhjQ+fTtI<\piJd]6>S֐18L0{pj%cgHLsWg^MRno4语{]7VDPqO_N cc*aeC7卌9l%Sv{p?B-)ĸ 7[2f1. 3=]Bd33ȚX* #̢[ta1chd1b9J*#d^ጨse:&"vWp)"a~|13$P1J Ʌ7l@{+AXg1y:X~0X(:o:utI>~7ep1lъWXSԣk >qf f0#e%Dҟt]o !:: Ϟ6Lj  i9~|?wYݤb1ǧZ $usr0*lY;t b$3LCS/J6 P%?& 0wf .y~>%{O?g%.ЏH{' c a'.Ō>*`N08 uq`_~^:+/\gu!σ߻*gƾ=m?5wu6H ]4vgp &@~=0>FGz.ͽ{1;rI~6l{c>ㄖC6" %#ޯBL:@DO2輟FK]XYfOE2:lCq<^lk0s,c:okH]f)PVk 1>b ߾cK}UOE.4 3i;DƸd?:Srj1(dž"eJj'\"Úh>mh'V1hөLTrt@JyGY~HQR"w)Asm4WN>l`(8,jpOz?7}W5$da_^suhj>)!*'iM! H0ੑJ(D8s6"`85D@SR pd&ۤoǁ6H&pNC}9PJ@.}}!wp z7m۰{S-: A. ϯՀ̸֑9֡BhEȅQ ,WyIl( ^>oq7S;TSAS@"M0w̻”%4^ce8YO>(B.LiܟB2'~PF`iGzDHH޸j w2[\zq%!RJռQ\@P<'v5JXLd))qh/Agy,\h#QJ8Jx3A6x37^>Yh 0 &v'KXDK0c\| S<o!J]2座,PR9 Lh/ss}TЮS?lۑ}n/vð+q,,c__O[Dh%cdpۊAqd:-?z?׬WmX|]$fāH4螓Xi.ϙ>Ik8PrPX,paKWϔb: }YrTKʈ ~vo99+ÝmXniZ\#Fip6TB yMq] 5$k`qC,ӴwʔD7@osHH $;d?=2`Of^ob=;B8NQǾJޚ[z[6qW,˭$[L鴫8 j QsC2p@Y;PșS+q?47FGA Ut<@FqG,ΘZNn &l0Mڤo|A"%$Il0 Nt.%RYt;  @,0k׆o7Gq "}k KHk"̧qbM>:l]] ;8f<˿~mΔg;GJ8ŘYk%<է3dB{ElDSđltvC+߬E<9jgY7(AȒ .=dHtvL%T[A9%` tjÁ?zC`PqڢzHWǶ1tzl9pyچ7ҖpVC`MHt^'\$B0H=&7!Sg=H)QޒbġidLN9ŚւH Eߍ' :Ϝ@7$0 x}wcq!`Q$˝wO=ՐK AcN })g Pze.߿Av;'=|_JAod^ ,/SPbAG"*P(BwѨBl9ӓ1Ht(L ̧OHA 9&`hޘ<kF𻑼 )ai5½g1pX>8es=l;>[1를ՃزOx|:psNj.̭径)3ur"%bnO}=a\k Ӳ5` {zl#ndb8 XA~!&\ y!D0/gL3ǃkUrA 0Ѐm8iprAc'%[!x3Dsy?;1&^^G\g%DAS`vE/x ꅯ'VdzzQUke=5֟[mua~cε9E%JQHQUA??H "&5""i4A{^sѯ1[dv皗1y l9A0IblM&Sug2Lcfv)j]:0Zj L)Q +=dgN^e5W,`05k dtRR@1K֪% ovk=.K޲<&SJ-n"緯|ycOJ,tSGQ{h b6$ڰud 0vN͒gG!oznNZVvÛB<5'K&܇j/yI r:4Q[9wm!$]TlZΜϓDV\.F^(ޠ 3m|i_kx4ILaix'ّ2>ȳs1V̱ z6:`4b4dxN$ˊqM}[T|ԄI擀4D%l覻ycJ2ӡ&2LѶc_puоXgkZ|>XgCk|1:7N; E viC4Y3 ՊuM}/v !1j ~fN./ٙ3QIA7x U 6EoCq6;yBL!񬓯M#;{J6@kNF4,G+@d,3;Σ(q'n{d#h IN=w_ĞŴtL}AvQ}OdVнąId ԧ@mNͫIݷMeA29&8)[rp3x>ț Go hZ٬<>~70نkW֧yVmF̉dz<񏿩A /o79vOI/VO|SM``{V{Rr3sFi6ojJ]yrv|~~_M(ڸ6+ d 1їOJQwR*?|SR%b5ZR1Ru.*XmؾtNE{Vz瘎1#@<;!*TL]`98κ/c@kDo~G}`ԃx\^M[G]`c '~.qwy-=*c읳4^^;MyLM&L'鿧̏ߘޕ vf< xMCW*qĘ,ANK&JqSmTʖ6`Un7sycL%]fװ'`-cجݗL;9ZLF=u,l{ VÇ(f vsSRD> [&~#oڔ&xErQ'3j)&ӻOyZ֠JbrR]8nY Jrpa^ ~z!o/$_( /ܫ &84t2l!KzW1$%_L1(@g^w߼`d 8"YemN|N16'ʀ nN%LJ-  ;< ҨZ0Ɨ[:jEr2o]B);ZWKL7ȣHZɻ^^h.L#^f-0ش*o>˞VpWkk#{jUuGO[F1RV޻rJdciEgb(~$sߒ|||0ԲOaQ7?,g/wV|lQ!qJ'i =d& m~WPKL ^}uBw1Ky#xG9d+$6T;^Z燁X^-5 09ȟLFw }!ĠY\$?%i]ח4;q+3Ê_;;sBIFӒZcULKA8hNmv:h.CR I۵! `iS x{Y1/_ tri7@2> s*dѧ1o1y:Lj:[oҼᬰ/0 VWGZ s2M2 ]x/˗am "Eq< ^KzЭyb9Ӛ!* iO݊1*`o6 7EKLC6Q<޳OHCRс0h3]OM}4ܨa{o&RH3ܠZXN̅'GQc Jq!fKqy˄gskKDGV l2w6Q{f x=I=v F&N&fmLs S&6'1ʀs%}yX˖yS7;Qk`1vS?Ų~8G`g jاZ.K/l||(|ħL7Jt#?8eod If!sdNy<1f&'iJ0ϻy% bN af;c{k4Z&˿om-0>cuqSg53;IAv:*1-EuÜboA=9y' ^*?|{(0>l*Ei &k)ixwO}gyLϲJll.1G9xacj)&bl8f㤖f{.A`THV<4>TRx}f&mL4|G!FϱJf#!FK>,` аaɚ֊):̎kOB <{ [pjV ^de΀T &Cc^E1$'5FNŰb^`^n cfAf4hEuT:7S l1cX**vt5=ܵr{%hXw}YjYR=g =M[&A' fɁךd0m A#qҕSA5qG[bd<{۷ 0~gm}'L]>Pwji8γP:i9yo$K 41썁,'YRKd}SIڽysc@3_A$NcNI+cR2<1k.QuQ@V_\oM5кY ޭ6 )?@7‰>gտՀv%L-O b-Fs#}|྿3:o7jG]I}ϼ}y'YPt kcn7ookXJ6M1oӦ&[j y|` a~ۄë j,/!(6%wj 6'@B 8~b.0'X";_JUlA|ׁXlLgTgo߼n Mw0,vNca6- 4xM4:)],ZgRX3G!8/)gb6m u/[ <(==Lxae;эH\>Lǟs,w.A#!Q 18rrr„Z x<5~pLt̸] OjF=:Ϗ;9z۝-*_$6ڄ#q(uf?6m89S浥{<j9ӦM7>'dm7VRݚ`7 50jnM2C 9sѮd%5CWH25ߧ֔f;꡴K;s.7#37F–2 ϙS|X#4=p2:7 BSxft-iMrUbkwM1@cՂCECš{m7 1 \3+uY1Ϝ yJ+WswwWIzI]K͢%Fڙ8`?XiJ-LY4'oԳ!`5o_2ț@zϚ(L,F1ޫZq礕QOb[rm[$+ ̯3EU^7^ƻ_~@'X7?{7Xχ3;6#=hi,9m{{b?YY:)ch}4  ^X0RUؽqseL=ڋ 4|7$bgQQkr5ܜl9zdݵgxdY/6d^JF-ɯo2(Fx|ༀlIЛMIol-YCqhi徼m۾;윭1o(MjTqJnIbg}x|:[mX;9xLl2g+]m4֪99J1|.6wnvHX[~%^rZGK: 0-|Gl=0oy.'ZkXlQl\Z\~NM>pL@߅^UyE%Bo:׶.ook!xPk3V?tOIÅ/dɗsj σ?&jM U7s{;( ?4M]Zpv$Ɉa5.2}A'N \4ݔȦnul!6}s.5߸o7EJ/-&Mlq׆}MQs] dqf#kj\I V.nxGQ$4q{AI6XB5[sP30eϓ b^ $cu r Dô9kqW IVWyfR:JmĐl7 +ƄW , !cp1jrL6 JZ$ ܐWTxTs{bNg˙mpRJF-bk2;:9ʠ9$<:>qlkc: {vSڐ=)zJpp:7Q5r45GDszК11JcF}ǷI &1e{T樌OJyǻA@{5^w1vy!Ru"uGgUC?| " G--i;Z vK0Pr^|"s+%GE@8l.Y+ {N+@Yo zJƉviRI %{gTp~ΆA6[ROUVGmZ7)+e &y}-p|Hh +%h{cNqc xMʍ_%Skhrcr6k䜥2oت>o25p]R*kMhSϔΘ+{P(Y3ӝl 9 :۝g2ћ<{n2ٳݵٶt'9;ʋY<)aVC&ĝhiؖ>"04#3f:bcQ6sCU]U vpJ8–,w4YvOBr˘mw0ܿ (]f[& 3 Y9W.-ep9%%6`aZ_+bڇ` F:<|*EM^޸/ jeJb:C<R)dZ㢘 cN+^Wk`E"嫚Mgj?.. 2 fpY{STADooGx \H94Kz=Gh n7'9G3lc N1@t˄ܚt8t+ɚZ*Ktyj\Moy63@m[3zլNf<'' iϐJfIbVFFYZӞmL?Fp7|GwVط>Yl)/#5fһw||-Mó\`MtKe=~i Ɩ6VX4|Vsw5 oO@k CZr6ȶ>{z?jWS,c̡{8j WHM|S(絆e#^ܫ7rRJy1ќ P[Xwm(4鴠9:d+Istۖ7rno |TL} cNc@q;PoFg2dE̦Us,%LB? ;'C c=FN2㤴 gguis:gšZl˙}#1x-'Iͼ ${Sya. _lwFECօTK4ˊa0u}=圓I>k_Z"L}PS'\yeR0IDN֧[LhUqTMM/:?4DC.g|ڠ7Y܌a8MZ H ^a,ooXI/YQ)uLA&ۼ=l1S%3CR拽&"@i?Y2>U1+JPFR?2ލN9ћExkOhBiY*Du.3m$tS$uc^%7d.o)JeyM,4*mQ_ (YAw)ܐl 4CYٛ_ӊf1: }>icP9Ѐ) 4Zi+i ri[nyObڧgN D[M\f&$] :i@ ah gRǓ0к IJ9 |"g)svj伃S@z6Σ}ߨnlyk aQ]WG; ;C,Vǥ-@oQÌ]N چ6&TfYu?0:8zxOaj%} X|y *l"۾C{@@Di*x2c$6bKF)dsg1&95 FQ~cAeԹ$cW/> /wE̮6gmH^y}<AB6prF5/ώ*)2yl7%1]L+zSNUƔH)+NMR+N&]c<9vrź뀭:o7[M LĦgŵS R7LjR&谴<FW1ar-Ioyhq2~S;n}W2C`߂b Z Y8P]ynQ6tmJ+ yHLCblxB*/GNNe_ms')f4%, ,r'DEm0PȘU*GyVE;x>EzonwALy`8Gi̊oOFEH=T>>PV4"Z-\uz9Du&C5~d* d6s0Amk::.8dA&ZtMT.㾘nYetfHf<;TM0UK>̝{oR7^>$Epg5/ttUh:@.7 .b.l4vV-ۥpч- A!\ek/ZNt+Plpg$Sf뒹h}JyJ 549˻55ɺa.f]k9i7[+Z 1#(MeW~ß~",%}媽/Fg_%fksW/gd0 6|rD:ց~XbR0JQA4yhL+ZDZ%ktk뚮+깮'&6VYS”B/eS#]lb^~[ݤu%~< |Bm?Ŋu?=Y,Ps;~lX[8^!D2$ӹkBBР Ϸo[￐ Sٙ]An ;~*c mQzS-KJ״N!^S9_3kFƜtSig#KYv?'-Fy̫LcMOmz/ݺ(ĝӍ-1m9.v{~totoMbkiMf= H"딯dZ4aZMVg>l2^Kv/=)_2h*N,c*db}8+ent :j?cELo7}6q0cb)pw)ii2.]I(s&\pxzUD*FJQEJxrv9IN"8BH66Fk!gzB'̘p'-d9 qfi:vbyqǝz\ܿ|gyfh-R-mJBdvxݿݨc1(O鯄r Po?|(U,ggTku)sQhSېA9 ķRRrt1n[]p9R`6`bt>vI8e $2. U9 ד91N+ُwoo$1k|>+9}ĭ새}Jk]u sJ\fnꜴmYڦqeIy"hGLJdk/y<Ŕ6;mY[V͘JL9˯c~1'~ WcVIP֚<,qn5 J %4X@cL殚9c|{|0qPkd N΋T[#/W’3%^́| k@+gk\jIgFciflD~2u '6Z4]dL5<1mG1ioM"lQ0+X@)KRi^SX|G$րp>1|HŽØ&$[hkL6Ϡ1̫ :sl Nn p*yj|$RqX|Uؽ﯑WpUz1/K-bc yxmN0P3uyP< |KPZqc2^dewSJ@GCy]?N ηB{t~z[ڌ-HΉƶ%JZ6khs^K}}߸s4A-}'oQF<Wn/_hpnR|6,(b:)Y^;s Ptl}H7= oC}T+yѧSx'HjLIea(T9*a }?b1S_C:.*xo3])XjB[@@/vwSA3kKI1XcNsN"{!p忳uz7TKǐ,5HӔoݬKR(nb f>ᄐ=坼DHƲhX//Л O'V2\5rF]eG-_ ǿlFԤ#WVޚ~\B FQɌ2"p+}6iDt.!8g) &so %c^A |&ZȋK`D+t7PLPQn_,ݽ{7~Ϋp`bw|^ӟN?'5R﫯 '@ <lSFaLW^49|ԄttD~˿^jlu)qdL15 w*ڄrD.?M)?H!czϊh¹2ČLDoi 9)]0GGoO'o}!vy}d:;i Y`fXHF 1$1v*C?aQo|ѵBT&WDg·ЂL]8B4O)Y}oOSIbɨCEo9G搑Q;}#w5 =:PZw?'"Q %~~Zex|W<iq<&ËU;ǩFJox6ʐ<$ϞRG~ NIaτyy.4+ œo2iͦjNs ~ڿ}cћ΀ zl.*nM[*5/˿XƂ/0tJ%ꗏaF޳3–wG=q th1^Q~<,r~߈ўb}7E *2^cN|ļ1?b g>̓nd; 3]Sjvl;{R|?+$[?c {JouJ,g=8tK򞷷wncQIKb)yz+Rdw?k#gy3q|ш1x JXm7ϟ@@ߔ:Ȝpbep1TVx0~Ѐ`wyHS/ݼ8ؤ,"bPiU5 b m5q%m ViC {zqya2K6U{Pr!ʅ ͚FK!cknwM/~+(vzu |Re0\&s^z"Ă˦$̯𯩦2Pyɶz; ,]vJ5w2sX ǀc:dzt)p!&~?]88OHfߦ@"({qIqTa#S߽װa=*!p?_VcX!Ys/iAqYA3i=t4j¿n/Hk`T[sx}v]gz@2$Xcy[[ =0n}VI_?jbN`y-ut[}\6L %ۃ+R?'~??\3.`+P3%-)y#þ[B%Bp-s8G~ |SVI9˗׾n2Po?9*"&R ߃ /ȷZS8m3h&Ϥ./>IwbmcRN~!(P;Z9ob#yX?Ϫ^J&ؗí^li])c2?-.x/~5\ʤ bPd cTKWA*{!ذ#H52o T{DL9EҸpk==hHګ$-XdBLl9%{&X53~?|p yHASM}bi{XeņZ|^QgOoC3j9Q~ oeN٭`J1|OOq0&kޟ]_b-Ci!.kc_QJLt<(2(ݜʯJ+6 lR=n5ȶ:us-t$&Q_U}Ͽ]oҜ(J4uM.\C.㍡4 hifto7/_ ⻞Ovpx4u=QYɐz|gŸonL}ݬ)@q~ڬT3^t޻b Ti)dbĘx~K=_"ICZs j|{H(2`[g ;^h)kr1 gT? /#:Bk|l9'3[y> >F\q)ⓗ)}v3yQZ8Ѱq&#ˣ \LmlyWɜ6%o&xȷ`A*0]^)DZ ֿ#eyJ~ר}8d2bE!sS&Ĥ Г7w݋>DQ|@9OAtW(7e)ޱ`KhkC@O}l1ng渚锢X_П :̟% ޒ.^d5ʡFds*l@Rk~- ܒXd?g\2PN,64l==8<2[/2^/?#_a: mXK:EhǓq]mH 0֋~< mgE/W0a)hd7q*9l3jeFd}r<˦bg/gӲzH<7R  A\H9%"d9pJ)lտwfGKpKP kq}@'DM dCVsxFe=b}k*i3wC.>7_Hb~,GTun)D#gS%ҢG55uD^Dr`/l"Ujpž6ԈN+O[$V8/ɔa}Ϝۗ7ڔOQ=j8tv 8#\N[*8Y>kw9Ƴ Ric4g4a)lJFL49L~p۬1L'8|}8;||2"t$+R2 'Yq.$ǭu->;r/ƨD3鮄r6n9xjBħY'X#c<஁D9RL6Dz/o9R-'y$[i1Ȑqm>kpq`m٘;͉i F H/7ĜYd)FaLkmS2^>QqHmiHη P}\&7iK$/nyJ3ɀrV QniV6 1xpRm³t|a~ yJkz^ZٯW؟-9?Ly`! mo; xfz7?&lmy<8F/v0l[}b4»w4k+yVQNyrx&`I{kzR6;f~y>[68蝳I;w6 r:'9GA;/fާjh8ێ Zs.jIޝ+D tPR0Ԋ7 w^i|Y<4|czֈ]$svA{bd 1)ɚ "HK'd7/9;SlQs`yE7_?Ag) ?_M Z}+Fp=0 ][ܢ 2fM1n6Hޔi2E;04 }̎+b2(ޫ.TV:Mw< k[~.1͠2<Yja0NS$&g2)zyK]ff,0gZN@]igCka}0o Ͽ[&ft}Vqk/#@:+N4}^~b~:Hknt'( X2'Yl٘mrpk=>٨ zPj'=i-^Ip#o/k@Ƿ29&Bh2&nvRPameYɤ8N:Ji}}>&Yhe-6%ْsFt7ࠃx$L2zSo2H8(pauޔAJQ&!y^q~r w>LzpՎoCT .onb&=Ӛϴ8=K*qj|m|+G2f}>;I 5ҹgx>MA~*sO7rt|yO$?v Zٶ^$A1|6g/xL5 y>@m= vyO6z)>ht2Ş$.< qLxk:Gy gzQ0,.L3MF s2)vi8qn "Ũu9Oh)]RǷ2qǩDm 0(&b2Q0C-@bbIvLia&)pEQ3:Bg:@MC ӆv9UVDTe;=!X6'!*#&*I װn %>*U!gٷ4V?jO i:JFg%FlJ[Իwowy<.f-' SFM)tkfcy*1I8\ :=†r;Ow&(\Cq7B)p4%uֹ61ƺWVyfu9sRž9Ҋ $vZmjܪof^eZT\u|^3a ,Il~1O1mPO$YH9b*'2w lPYXݒ4KsNZ:Lei}s7^*^Y1V~¾m|1N?/Pw_H6s\jYnĔx>}ț˗7)d6)Fs-EfV ),LVd126ab&PȒI[AAUNnm8 >AVdKuo9Q[A 6p>g[%um7|<l+{F)DJ6Z>YXiujNp>Zʯzq:$}਽]*TGܜPtjGabC-ik}hmsiƐ̒~W4Q&!.Pѫу:CtVNL ȴٍi6ad;ͱ$s@s,,v6 eMo; 81E)f :A,zN}h6u8wYngL0iGf:=|B/ 渒fԽڢ+Ѯ~L8>%-0ǮsBϛdomL A54 Dgj Rڤ& .`= @C/r1^Oا.= _n- ;[aWaM N>]I[`ے}Jw ӘmR5G|J#!bO>j9CdI<;g9yi<`N/Y {涉mKg8GܳOY1„= .0I!<ى]$5K6#MgFۜ BLV,R F zVqçLHO4%o-joFW<<. O7F=I!3xTZ+};t߱ǠDpvg [Q<6SO}ycjpZƶHk/=mzĚ5޶1S6洔 a/='P)Znۦ&wg%Lz{'c*5M1[VPݿA12,bwՖZNKZ.b܍;Vc8t.N|[gf^{wEA 0sZP; yxީLY;9x|*6l 1mpy|ܔtVOFk6f$HG.0I@1xqy€rTJi ü-m׹9A`NUY=ࢣ|< 9 Xj}x|ό)F  `S[gz1m[RCt<ˡ5 @2UⳞtĎ8fܷltA:;r8X$'rگIvbVVx˙ A 5 218>9.WҔfX-U7[!M>U!Sr^C%qJZ^JcC%?SݱXAm/j"6)Fj=2d{04ݼ4yzO1DVc,iԜS8{ 8xE95}eCˊy J!D2>|ZKtwId~X_L`2^j|mm+ )nl~W =764w`U?Fhl"{v}L_ZZ-Vٺ|&>zpSÃ[c\9jr WkG%>Tك?maɵ@+e|jlpiހwܫwX>7c^nR4߯`װ38 q&׭ZR_r=>]规Ͻ1^2G3j'PdX5ޞA)`LrvFm&|~gic;(VbMpγm_()Uno%57SQUoײz*EXly>ymۍݤ!5!tE tVX$hRyh[|5̓If_}h=躬?Q N>sv\EsM(R[º|:l\0}^JٿpؙയѮ7BKfuN~@JD͘1&[عS6پ?6H;j.>TH)۶mWoભ} n}Dv do7ɳ ˼c \{ځsF k&2^׍*BrR]Z>_ \V|W= ΘWPϮ41X7{mӾym L 2#[w$YUxL<ܼ,5^G(v3-Gs'Iv;ѬLHq<޾icp.Rz~cU9tw`zZ갆i<: M6fc>(C񤕓qp䛼z=r5c)z^gH ,\hSEE"e }ffR()￀Rsy ^EQH;)E%hUoyS,dğ,2[||0jjH])bF0j vΉ &`g^/fbNw.)dLZM?d>k1?CQӳ-f:|<JzF'sRMBLsMߴ(MB5L] >DXIr&N!8lZWc*jc0s(ih 1$Bx @op5pL׹pI/0;>lyl *Zz֌^3yZx0Z+U_D, gݼ%O.iˋ1'9&r+Y>I֚ZOk0.w xE9)c(gDN`*WZs\5s)MyN9!}0S^պ;@g`UǹUv}KzՊ9e .Mat)˨u5Nu~o8rIMjR8ՐvR$Nmq|ZSbol~WcM1(-=19Bd˙m=&ouf8hCloa \bW=ly вtppYRـuOb!}{b:'%=4) X2pɀ![tZi'>3fi>c>>s/OnLD]/wP>÷5J8bH>Ͷ@=Mrmi߾=cO}G~Z [N `8N)k!vkְB8$e^uOPN%osS/&d 4D@07aTw6߾=I rd  b,V ow̧L&E fD[68W>oǩAV*A߷AgO 6\ ?Y.52@ȶ&{%t0ciG gKi6H#y)Rcs)81 S,@m BYJ-t^b cRQdʳmIcy"aCsfO`D@1H.U_Ɗ1\'y-,ZTL#!M49^z3>kz !P}^ {)EČ/n zZ#*X9h{Mi~lsM `h%u}y;`Yɵ;:J Wj 6݋W7'-K+CMNxMo1BGy}뒙: yd-:l>g8 3_vKZ ٤~N>ߪ["XecOTmR9e0%"|o_nQhՆ=(-6sAwItq)F78[i9i}R I*1G%gerM FI9JMQ+n0=/Ϣ}<9;p1kg4%io2uI])%5vS^xy.2Й<\˯zNZ3V5 J<3f7W'1$X`N na]P f7@R`ْ&/& 8lGKlubMK> }61^ ]߾IL956UO\ GfȾjDgdjoS tbĨںpF{OE\=+yLƄr1.bF{}Nqc"Vqjb7UC$i@岿`N<\ G 7?-iO0YX&+n~N-ZlY5y hb+@ۮAb8y~9' *MC!#8*}]⃘,)z5w]+LN)s-0f}OqaX*?Xx T!_kR`kXE?{B?!T5Hd0XNb}:QK<0Cuݻh;cu?n`n;@8;OγFE!F>{AĚwV4ZꔺsH|~q $i\)F9$>NK(b~wbs3IVχCAJu^>RGkb@1Tc_o|< {|8EOFP<y 7x>o <\4! X[%jt9EIo#{oKd3YìCt>3LA:&cPS/iS^ r3 ct}wx~URqZu 4 Qt0k f"fHčA?9pw'KP9rAoTbQw*TOFZ0&yGwNTK/zbmο&WeC`%rнoL(g^Takz'֟ɛ 犃WVJ1{xQ{MD.~>l6:\ʭLڦ׿8^y6|9(kj_:WcyMVP}Q?O^0" DͥF ~Ʌ>S_blz: hh``SDÌKrE;FʏGsrւwv 3mWGqgaD~"ϏxR 7=41tF)o;[s 죑}` I7KfR:1WΓ:5>zڄ4qD1C5\/1 H Ig}{4-Jyœlm7?ۍ-gfSO2oKEɍY rVIa1=gV2Uh [$4'۞2)8n["DeiGkL.ve4Vp<54vifj oY1[JifU$,/q?M,!Uk*%?Z?kZuTw-qym2nOAkqHvV7̏mC$'tL 9gwF4"3Y恘a1}j7 3!ӥJ)I}>ihSJt#S$9g,Љ;D Ke6bPAcmOZ[2$EvS f;c 3E%& !p5![5_R~1bA C»`)L)]RTj:JuҲ7Y՚kacu 0yrxMځ]ǜ|<ɾe7TLUmRj<'7 Y)SAG??qr*zdJ""o,fęC>ofAԪISa փnjR-L̈́GcЌQFu > ګE/_7פU쥉 ߜsЫ|?'ה/Y+7|Xlh|Brׯn!F6մ{M'LosY3{Ma7CGp](6/?&GuM6, *Z (K0 PkCt.zyΘV?n|>[_gڂp24F4 Z/W&kZ% o8|<&a`) ox4"EU(eདྷ*md>%Vj_c&UC&!xYH1gw:M:>ΣsWtp2bピ6b.QdlNqCQ8ZE5)%NkxmR뜧8}ҶM)Ch'M~]/m=wv5,z_װ;Nb,̠)gQW?Ŕ^B9r̬wQc`f'9im)R|䐈]`Ռڷq>%+rz1އ*Ѻ&mCgQy1 3ِN^ǡ"o'3llM]-'9(σz<׿$8xov/i[ZxѵZs{IVd@(ݧA Q1 wliSZ5q:M)mbLC0[PΝZ;4la =Y&wM9Pϓ~OowL>}z6=7냯_'*F/Rn][Nز'イq1WL1]5YI; #iF[Dݡ5%)4Wr/U 40p(\ /o8)g\bw,B V:ue<OR[&eF)YP,`kY?*~ƤOǾIR5$:Ka2>8RW :BƇ uϋ,"ˋT8TjN-7*IUq1 Azo%O0\LԙRR }aNyH75^y=N6O\TڡsRI|&c,3E7e4?1X/`SjgڻeWIR1ǰ`:M]ÌҝrRז 5dP.EIUxji}uXMZknS 0Yv)9r-Fz7e0ǃ/𤴦mKmSwM5DJ`$0 5Wc\.&[kMkGSMnf͓@n'0*Śa>&|L1g<(d;#}k2&9sGSn>VL:&F{9Ya3Y30/`cHXMD&3ꂴG<äm46ÊA $4l:2 ‹㔈71E˞ O7-o9?Z'ј EKcߍsuKହ{b 'ht]Oz68xNR#ѺyDfn <2HyE(ک`RSmY [b2[Ӕ!/P՚gxt+7YER+4L?$)1]`KlFJ3Vˌ_̯}`r#{8tq~2̘?D3 hc:R+xnEWFJZmٚ>f|~#F$Ŭ)ЄFjV9ɟ5cR5H.+jbZ1Di޳?uq$Y/Ȭo WfNwefC͝Q|+--U ^v3e`wر={ 뽹F66 Fs(/y!P*1A/-C\F_+eEyeC^ H[i) Ch L 1Ձ 1ş?'!ґai i`~]&~_nQR*]7GSaRQ@탒@JA+7 to~;im`Pz5tUx` 7- ˑy֐r\e H[5)b<#]9)F!GH ,UXLPTLZ#dziµB#k RX1|_/Ęp7F I7Huz=2} FĒ>OC}ĕpٟ+W|Jhǐ\>.f;K*X?%<͓ɜl[= F>{5"BN 0} D//Sbe>{)y A׾`D}(IDATW ._+ f:zpOg::%Ͽ~^ T Fs7fb[ Y{@K9,J)W(#Pa#ei9o }5*)ǞwYB2l%}^=ilZ)clLm!?ztq3sgdЧ̄ ĮS'. }ԜU0G5it"4c|Āz-|`]!ָ7;4Ҷa>GAIPZCf:{udd Qm,6C&]HP }!'u5/OfAf/:y`em @H̼HNLl,ݳ::ӈrJ!J& @qOHknb:]xG KB!HI&V1Ay&!myOߦ38a[@'YdWlIa H0~;^ɐ2caa쩧Jx7rDV<GN[ラF}}=v@%}؏iRp0` U,Xxel0PVGǟD~nހ^< 8v œy7)'M)4FqpL'!aLy$b#w&tJ{ATtwf k!P3_o؏#@<ժ~j])72?oP) Jla f_Jژ&B }C4x<z!q֎!>0='Z_'dۑZ+Y9ϯ'rFS!MA Ƴx67@McSɐȦ *jnp_7Dg6ipߝrl9u޸Nz-,eTgݾ'R)S6aи{ (o"\7]4B@/})s6ny3}ňW'#~Qtr_8Rđ3'g_Ang2j}|ILic]Xv51^/׽$ndN5ZDžV80Ob5 ~>:(0XM !SIɩ^|̱Y ooIiz貣*'þ2h5UjlL/֝ JU*|jPJzz=(&_^ʲh3Yi~LEm+jw))"r_hή܄t[%_ yXL1];`*%-! ApOCLFk )'S\>*g=r85F>PM9'S =P}~X_f)˷9@чeؓtp/;pp]*G_5SRNY 0,+G@!sw}`> uԶT`~a1 \O3Z E_z"e^'7JBt@h 76cT^PkCir!DŽ}_cdjz ߶wQ*ShRP+u&{73zn>8cGL}H݇͌ϠZ)$0[~d^zd/IJG]@.rZ}9&Ξ. $1Ўv ޵ERnЎ: 6_0}g"wBͳpղ|n*g۱o;U\]5H1"}?< Y j(3)! R a>"NjLJks1&-׀!/\S` B*z!ň#ol:44ETt:`*~aK{ސ!hb) : A q{@`AFȇ!!4 rEtǸ^AÀL;AJ;P="v!&Th P<2qC("AsضmncqHҷfLi/8Wme,0)3zܰZIQ4u!}BҀ0=B&',*]H?;qsמh*bg^Hye?C/[7sM3}^O<ݠyl| =tm'ꅤ֘4}_ZKLlag A] [ڠ3ߓ!%xys!IFh4p;,XCt YaFA <lssr6I 2dF0ϊmhtiLU 񄙡]FMkEI#%)`ma0*:H )CӆA)M7^qiې}cAOQ~@R  4mU,ڻ>~F踁r GTBZGol9l'hgn]IJ3<@W~ՁJS!1U+YW45XPh+DVLЛ9P5Ocy6Tz[S={7ϓ0'!"<#繪AM=mߕ(>L"u| pw!r\YO{l,Q@̃9'Z0ze=b8cN!p.8)!BBG{˰LaZTV}OLBZ@Vkl!jE76ȨeM( r2=&-Bض'~:pP}=dP/R0)˲{j-aA xZe_iT={NKle<&96c1Z3MvU9J@ΔcRr>87v!B4f8RueVY{ڑS|EK^;CPʴbi0T:; qX'.fmӗ ugK0e~(lZ&+IYM Xa #@Pԁ1> } \V YkfK;eZ0G-|fxaX`hc뼐BB ;w+l# d2f_9k D !xm9ELߪr>t *r͚I+;FЏ) ב5 _mS:Ss182[$c?S Qw!XGeA WiRkv!%M^AW*~3gg_b`kD-RDq0Ƨ<ڎuhּ&+IJ_>p>PL2z~a XC\_W$n!6.~&CN aib9(bR)HDE0qw|~/ƨB< ?OQѻ!~/wP#;J4.\mLu6Rލ@7b΀yb5>1g.fLUT #bd 2<tb:tݶM]7C7tg3ф #FC+)SCl;e1o;e{6'C|^P!dXJm_2kց 5Rjş?/tQ/% ,LWOu:D 9FDMJAx<i.x$נ6jq:Qky]TxM!!iBP [LM?9ѻ/z7PZaj`/5e)bPM7G& ֊RIf}gRL:z7Hk]9Aty"n㏕9c|SQIh.iwsX0z]sFG)@޸_/t S`DE3CI;]N[1?q׆~|_s֎_'(]פyU+t}Pyc[ H$v݈0i@<cT *<2A 2JA ini0m99/ DŽV;'/A9u(Rh8 c)mo106lTX`⒁4 NT\ ֻ>' k27 jg 43A3LD*{Fc GDƩ^l0G7jqdMXRT4e(Mrm}]Mm {6qdL0aFBNϲŐ#욅 `>6h}a}|һp CT|3sD~^qL5u0*h5#CCDLy̪ TW[:6 *u񀆀^{h怨 }>5k 8{FkU)xp~^il$x1I .N(`Gi;$ӊ|r΀VMz1n2M{*ntR{ n޶5:ϋ9c9T;,B"& 2,z"~ -g;^R G^L1X]:j u ,~qI}d5)d~LeYl^s21{pD1f dT) 񤴆1 1EW@pxwm}-S]ҚABku9'@Rٍ|K̵=+v\'a֕Xs/,bm^OaZ".8hmk@N|66dBW1^nXܲtxyxE/F NtW G=Ϝ5!0/Lm nD&Ɖ~5lAP}lyϿ ̩k/I_T =L ]^U hV_"8ON`p cP*Э392RkPΊ zUޥ{{HbX2nQzs?ypS_OI׻šl@G}0M(615.y*J8ٗ= >l+ lCk@@.:J%hdb zoȚe\?b( 1z`$EHQ ԨIr4xKd~ r8ωJx84g  ьQH`^y7 V!?4Camm޽Hnږq8 y%0iA.*^ua2ɞQL3N\il 8 u ݙڌq11R)5Sbdra~MjD@q ] 1py,? &:Py )ћ ]}vynPt^]b^U:Z7&)R};-?$QX-0kٌM`߫9r6Zmwt1Sg3ГA"Μ96SDe{uٱ0!Xϲ`jz13tcb1=U)%r&zxA DZ½?_~<84 R (WǞ1} 81d303 L+.1닽iٸ@c *TZ0s slO3u]䬢m[FJݤ4VP cZnaL-lBsygH2 R P'}0ITT?g>( Ǩs_<쏕-&g%a ([N,>r y 5jejk@)wA mF@st\U缚uݯ_ wg޴刜#e;ZP5:<T!p<( %6LpiȋAؘ=ob $u|R|!BLDH'}5@;r'Fvh$9]'\VMQYSᅨ)rXsPg!2}iƉY +{a]ыȇ L'VA ~Mb]s lT0r*80x,&u~2Oï*,?y]|She!Ŝ$*MztO0h$@ƒ Y" z)C 9;ZWlI! A2d`Xv!ADSG?*5 (4,F}^(} qlJ^C*t4d(b {J=u 4e7CE lB%A30^(F` Z PJ؇!DWN Rd $&c-# 2 wm84@buu^؏ 1w) '"VN >Y!J!&?B,i%hLu)͋r.y^CA)qۆV'+VurJj}_L̩ Y}9u w.뉎J2puQʅ 9l9}!S 2؜Fĸߔw5=jF0Kh=2Co)q|@<ցs4~ pZzhޗA(ܛ2 ӎNC஁#fgLx(܃A:_qA kY]/-x};CadA3d #9> :xҶcA(Tєc B>t9G M͓qvERnD#ڠ9"tNF52zyYPcK-1͔<#[cyBejt IdIP,{&-:AJE:V[< @9o[ƨd.=I[ D#rCI3I?e[Z cgA߭Co@w33Z)r jXa<6CQ5"'{yTpD5lzL/MQJ9 2Ne&6y`c?o`5v" =DmGkޔ0g}%AN i^D0r"ޏ6ڧAz,dJCеub{_ D@j\Wdu9h\${y/2Gzk*n( )\lmj \z ɸ2esk R0mzn#c֭c*k<FςfoAjƴ#xmL>k!CM$,V_SU~= `_ܴg| E?+%S:YD|O~؆"]c6NF&Ҕd0L16}>2 L_ *P%^'Dy֔V@}ݘ@yC[^iB sN9Jw\204OQGq(wuF؟ǎjowJ<KC->LH}O1! f Άr=(23)?<O}֩fˍ663D c?hOr`3eSNL h[rRs uzhTV5u]5"$(+ qcJpýxyndpe_qzr=}I'% 2,@ψ {, >"mudfʋsn?MTg0xZg!9)aՂG (Z,Qn7a"1 K&Pr!2+!.oTd 5tCp2Pn* (@JgW* R~nRd<!gmV{ǿrFuPP2Z*L`6mrP7mL!bK$ c (Am8{u ZF ,(jDlNfnq^ |* 22d5Hqߔꥼ9cFT]2i41Y^!1wg[/'Fh My DZ'bE!nuA}DVnDQS'9x<U^?7 4(q_rDJz4'-JΎw(c}ܝ5Im3ʇ{HY p qߦ^(PJHx~BXQ~(W4G޷wgadSmp)#Ҟi)'Ckbv`@9 'RS'EU2藤Rt dL&ބO?^+Zusx[ܽ858qDVp^TuOk=5) a4b8)p\R8zkZA6qO0=븗M[-^8>i\2U @$OS)+?Px=j8X 4 I ѼQЁ,]Ek TEQ&%FݟY\9գ[u.L^788̚תL9>-R{0:BN^`pS C DYkd pG"?FNi0sg x]Ioݔ,AO*kLG6)?'Lܓo%(TU=CŞfoz}pӏf`D>Z ire \3%dqWw D)ŁQiTkƃ)Y0= <+N[|Lֱ=uXk?ѩi@KAA.: ]3%nMu j:T_mj{km{w 9eB\ [N ?8j5-'T( DdR+bLlj =0'[Ci'C$.Z7h̰u@Aid.@LyQjG`tC {:/ ѹVPZ#A L%g,P0`xGe1!;λAdC9qU0*}x##ǁ$L\ܾ"RL۶% 3ʹI@O". Ԗ3;}lcnwNLjQzltP[5:Җ1[G $lZm(wĥq1"mBH8.bfψRHؾF:Lv_FFz QZUnD*Z/;"TT;#s⮓e^kN eg<.\H@@T.+c_hM7uh)Ns_ ³̔= L &d']x~؎ [LO%VʅL'$5=byx~lat@t)FN-DEA!44KHk4˭`AӆFh7$QrrD10l1i: i߽4ޔ+bX'#D+}|u6,v-dVLӪ.Ęq]>,QƲQz5j3?o! CȢu} {nDkGV%UUl>zb.=Ap:ĘYk답ML1GspҴ"t R﯑y6 Z`PSq]Lk(G6d.qA*_Kq9ʔCq]gLyX9t=Q4HΌ F0eUW= VS]S C^O[ްm۾4 =Hgc"(lV6ҡv)!mhHhvpe}5HtMAy݈1_To6z7>Ç&C~ 7P[ǶOߗ~Z+~f?%+/?xkf>Tۯa-XM??UqiPn~K.)eKhgv"㱡|@5?#H}ůǺe,cRҕs wޏ7 CpȸBOkx1IH!GD(i}xط,.HL31(7O9.(^$,(sU K8#Wlo8F HDLܯ@`})>/zGL ۾_qLJL)"%E !F4y++m+1[̞=O8pcb\ "8fAW0y!hYKh5:OxE*5($+*h A/XX-ᰴ04ki} ;wܶ3;_Ny.}9mnpo8![Ld {#4k$?$N2biQpGw9Nj2nd `MFZC !e@<ӯI'FQS۹t8/g9*[OBtmT9o`qcDPפ ?'PhlFf,]D٦ws]Ʉ.')|fo\I<\9Z 87Iώ}MF@Y:x|}ȇb`wo d*c:7_G%w]7΂:B^˅#%߿7 aĈvJW X8ۉ[޽YhA C7܃TjlxiSyO@$0j e{q[B}?FHlhހ5r=4 m04tz &ϊacFɧ.|j6AmQK`aM4v֒Lk=x1(;}lg]5ZaMo&3n~1 yяz [vB+#.u1T6TÓZA+8cp)ԣW/2.QKGj3UP%0τcOYM>=a3jGOdJ)5g0cͧ ;r-9( zY~ LbMTfn=Q6Du?ݨ5 !.BDo$*O+^M4 H 4X(l73lҟ2p,v0DXP:h6t-,rS1E~諗ٺR?I~ e%lT4 Laԉ)_t=^} ~-D~΄NT+R^'5A5wNϫN@wpq8Ϥ}wi0oF>nx\2 2a6Wuu )A&HTZ: 1gĔZarC>Q9Q>uF4ئf)PfxF%f0X#  4q s{@) 0hȉ h9)ul4] cCX1ŠMSV:|?,nu~/5;}bQ|`C p_Hǎh 4>X6a"lԎrHo;6e&/p0Ɩ"IyM)CBIo!7 A]q7fc(pD0Ds ehwt34 !mط!%NQ}0'\ ̾Sp@O"!i^s^sY@q8Q^ƞncv9,nr5ʵ)E5(JrFsbF- `4԰^qTQKnd*ޥЫ LYʡ@)n׍PrEՀ& > 7gh> UMllvPOCA\>x}V? E߷ijn'MeU4%F$uCqIޛӺX? ?OL$ DW'vQsd۶ףU"Oud |הg5{G; &(ΡP o%L_!y[ {%}`։s(Z3(*p&^ qkk Qi`FyNE9tJl2aHan"bn4S_5>S7ƺve5fيK5`B`&,3x`>i Hg r T]YL7psd 7i^IK&c+a/(=33}y (ųsMAEdA=y`6i{J L Y$5sӀL=k`@ g%IްkkIg&3Ðu|>Ow ?u} !P0Ea`UNQU@ YYe{!HQoh9tD7@g+aAP\FY Uűoaфfq^q{ ;T ) GC蒯k}\^ y^@YRZYo_Q~)B1DL##=@ n!g:3$^)LRRRŸד֑ nP|2cQkG;aQWiY{oNw)fk~)\ZAmq;Av3޹:K2izYo&**zQ{0:G7[N]ΛR+_| `. ~bǵ}X},D7ޜ"牙PR»u 1}(Mb7I+o4{g!3%R HiUlGׁࡂ {A.c `.9 {& @&.O9mU9SkH!ha?vc#([(InQ}Oʖޱ=I@ȉ#1*g@06 ȑ{,DvpӢsOv bd17 &3)uZLn|ϵI֗Uҭu69~O 7}zR"O$3W+">e~ .hPjd}ch~ UT=γ5mɽug,0ƒ:E_v_x/v>e?_"ƬӁ4n;멳O#qlLR/˯XU+Vcu^ YCXA'K7e +D }Z j,^&epP8 gRY59%?!|FcT<;mß?/?PFEf/e^81z*J)*<3n#: yr7qxmK f0Zq]dPH֏#!F*p> }wfjDy߫sdR˪E:܍! ~FeL)ԍV [ 1 >_I M=,0m>ClQ*#tp_ȃ *7.u,Ydfz+1$S%n$~ɶ3л˃LbURSEJ`zAn?ysd}SePh Lm40>Zb'~Q Wkܝ9A Tؚ#V11z0d !>ܼwa!y4Եܰ ȑ"XX4fVlf\匵I;OM}"3Aւ182o0ݧ q"43X~':(bL^條EMNhS8aMN7\b~}k>Y chs&^X0DZ pz?cN{ɴB0OhXj(hP=޼ւ% &F;(p^}CD  {i^̸~dBㆂ~u(u&Ðn07-!Ap^E@,"GGفv hQ<3k.'*LP!@: gLb+L+Y csk^c)r`b;'B`zӌP'4 h cnrh>G&4*-b NZ41|˄~KJ3j 3)РRuGf6xQ3VoH{m?iV !PڧP%֤1aB!΀#݀VW\ax y1 !L׾sU|o<=x=-" 'InL钪b&mr^ ()?lʆ18ܳE)#(qo/9jU7٤(:)Vş-Et [G&sJ3ߣGk JC JM/%\{a"(y^;eItYYY򿷍!TT T^e5/4k/[}sY_d[gh4Cb^j'+QJg41x#8wٽ'Bn} ܏ȆLPAh؏ !oTJg#$f5'(?Zx/aS^0.:qGc'Lk8+7b.Os9kg|i&}A6~z֚=i bH+,}Z:zy1Uk CODpՆ^b13ܡ_.o] _6{#hsR񄆈c?FE{Āǁ 8tc7F +2mÕ}5a ڐ8Ddo)7n!Р.dH;PmLytZ^ti!`vpHStR 2玨﵀HXSu%FhܻDHvɞO}@u!+MI!5764 P!yL9> Is>KQ@1 ZGLi4R9Y 1<Џ 8. W5\@ )GJd+M~[C=DO k 3xdttn0? !!+V (1\'I[;!jeJVk bf|{7¯'Po>*R@LЍ .A]+}])roҫǁ"~=#e)E7D/ܟ m4h Imvb:.Lg, G}()[m#71CR-$6ְ AjN .ؙ.R/8/ \Ԭ hA[ Naz)kgN)m@󱅄_GAH6 bqF4d5K !@D 2:ϵmИ`YO'0`OI֠g{1͂/bs- !~N8t?GbhFq+HDP@,rL4dR7gcCNE rPmG86АoP6Ղa]g)T 5S<Va"q#Y~b@ A[sE ʺu*bJYJE_wM7g"c ,'I) ?ŐSzgn*޸9K*gƦ`޼AU]N%?}`j-h`J>&͇u44x eS旷 8}4}<+ԟNH/\W%]%AiǺ::7{Ĺ'I1Sr03n2 l% [IM 48xF)fpM:џ_"Io8xBZ 2;c-Q=O AAJE|VwV^j~V+ { 1Eʖ ߳`^Oy0%2*=!H_?Nж~ji"xՊmׁ߰e]qߕ(X@ q_GcD԰R?t41L9sx wUҶ!f/dh}Ǿmu1e"Lf%3x<y~aY?@ɰL 3dYO)_c>d10R~!1yߑ2i<m!+D7ZQizMa+ >_arx)z%4"W 1p=P#{9{Dcf9bbS> Pd0t9fsiM͑jci\ӥ?,~̑O"ei4<@@0^,MvHLSýXTk&? IҟqNC~\5%ɇ Q@<湲/KhGa$gLh/dω28ʑ1yM |4|g|yV|\ yšocycF3\A-x 3B SVDQKG-/9A:G5RTU:J _)ǯ'fk,(RTwt7#m@w1.x;RQj"ó1pjڔ[bOg; XNXjڦ,PVx2||'f&,TկT2B1cv0f7dqMVkOCk!K1׵lV!:pu9g\y;ձQ6(ZiwH1)-ϟP'=tT22l[dhO81^ a-i. s;R?U:8U+}ZkhÐRtc #smY47>ͭ!aԂm0l1N6v$ֺvhJ2J3NJ м{q"Jz13X'@.#p dePzJ`5J0B0i\6֨_2b!f#.O`k=+Җ~HGU3*1&3I8fH3{~1F&KɎ <a)bo\u$xC1=yʍ)f,}I?g \s&P9bq-7 Fy:¤&;XOd.z>YN?Nߒٜ"q܇Jds2>;L8]u#Z-aO~s&K?F$$C q<(ttco:0/I a[JlKĖ nv2T9 EE>32~4X):',Ks}/Qc}~Ӱq%!p>覇SL џ532~2נ2|lv냃P[s@.b'Paׄ8{fONTaI9A78xF]n6zVMIe *ٴ+KL>ͅs&cze}M bN dVXIݽƮٛƑ3vBpS}52T_oxZ0E@Sΰnϓ5Uw ͡ktRƺo9a1{a1ªW" ^~? |;琞F ~m D@{X_>="g}L{W?Kf]0'cq~>~d`q&d#wqSs @kVQڍ>*1:p\!Rp6 ?dx.7=)FC9cvdh15ۈ2x4x"'d,"ye )&J*~N–ɻ>^K$ 2}׀QZV;J)ܛf@w[ȟ@ RŻ6f:p7f -kS qG^7Qu`Fo0%= ΍7&BMN3 I`|# 4 PoE봁BϝȁNB`d=ĠiOP3Q~2?ƄOj=_@F5_c= __hFOhł0Ngp mƲ!6Ц!kac˟g8EYQ|!fjt PnŦ5X)SBԄQTxMvЌF︆wfZ] cXGL9(D&ug,LQ[7;LւQ ¥\)yne15{[G4]Ut|{8" Yx6 1't# "BLq?h&}luNYA6ۣw)7U}:b9:ч1QLqʚBP*۞q;(]}ua~{>(a|b.K d7fwE/ 1*Hp2EKR74";4T|f;8ߣ"" $iؔ{m =vlIw2 (r)B cZK07pϤv3:s0ͼ u~QܫGP{tG1zw3zJ̴9@:s:%dUQݯywP5"%E?/4c@ 4 z!$U6E*6>ubo00DvDhڑ"ٟ2 %"ӽb] ;&{R<RiF z)n9#-+k7 諸КqRl׉Q,U{Xz]he` jh!oI 7c4Urö'vC}pLؐG< qfWtC "G}gm(_yVa|a 6u7 k>ZRBg ik1}5cmZl>nR&&>=|A}i\NLH)M{y^_ׯ/0}lJa:psVQg]:p=86#~x< '2W *=_>Dcztǁ< xlYQϑ[%>xk\?0u\A.C:}ñm>{0<~xwyT{ y]d釵MP{ި= o۶ظէuIx$2@^dLh53UT*ym fLv ?34:]y SANR M@ebe-X$Z1Lp׶ B׀cz__e}?7rط1`6@PDoNh@HL^S$Л IxQ FkJN6|Q#6 SjL D$ \̩@M^H>>c Xk qꤧ,oNS5]SBg ƒV jyzL-8Ӄͩ?u"^" 2yR2~U8;憭:cN~Ntl8? kzP 6d&j'NGh|VDaX˼P pE$;O:5ŁU*^MsaIjaZN1`M*$l BF8D 8ܕ-BY9+gǻ\} l`hH~Jhț)toшzؒ E% j`P{ Fc2E91d`!6 }{s1am{ccB/d& b. D`YQ52C]^b&;@Pu{Ǟ7o$JsɍBp"4)la2Z\m56/6ť!wHq+6cUUA&yz4N䪠[Ǐzg6b c#'@=*ͼdϺJv$xA;6)񳙱dvg.͚o%ɇ)VZ[!0=`X2xbr+=w͊z6vcD =kԭB9CGýԀZN61&<60V%|]1AZcѿM2u`<&Ym|Vl[ƶ%rq0š*KуuԻ2ZaD<\Yñ%o)z); 2k>x~?ʔ7L'57!mv?cҳZ~ Ö7UbVps>7驷؏ӓ,}kxl MP{H,yo}0JEȈ!}}hc`4@CkJVlLalRmGJ }`x(ya*Hчm`vS*ACl}? "8{݇ setZ1&>X;Ęﻳnm LB#Emu!}ǝ<0vʦgGPqIǟlɹWÜHb-\ecT6hA900-Ն^Ih=%T3UWrDu?47=gz#(mc;ZgsY'ݭ196G ,}Pm{x24pӐz_Aq;B~@CC9慙 X$@n @t"DdRmܦpI#vFn@K h⑊̣B I*oйh d"fJkc8~Z`V)~RqF<@}eP(qixMo 0 lR灸ާq2X aQqs>Okˏ+2y] k1:DlsQ{!紊}ˈAq"V!(2B_~C#k7u0yHix>PP?6U쒐XBBO˟ϝMҤ/xaL*@$b ߯H wox;FC#mc 9'KRQPۍ6&\*7g@EshHDg&x!AFNcXE r# vxt6 &H dZh}q^'};oKڭ*T7{a,l9.zrr&s=1F}2RB`c=f$gCuˌ~O2|Pu ׊^:y\uC5! Dπ}<9)3]l]Z[]Dy}@FHHLO5Th߈o}W`@l: 0QdXx抝 ozOn94k$ /[?K)y=q(KÑ<qtG:e# v#.[G^zNO &?Z@)$zi h<[Zp]yf[9zΐ,/m۔$jF1#/2/Cr޺HۦF%5h$GC'%.+B;oݼ[xJR qJ#{SPu"~8ǻbŤ^ ~RL 22)Bt:Ɋ} c`H51JMljβ.ÊRFY? Yg%#'YmH qZ&ؽ[XAfM͇HLЭ^˓gr99ӀfP';^|ök!?Z Ud$)xbka EA :1cuRJ9,Ta"Lޗ)Y ه,,ƙF 1=YZ9r&lJL4ۏ1kzBwZ8OAtN]!䌽]nns9~ʐǺ;z2%mt{hUL,& C/]<)%kʝ ^1$\= $Gn]=Æ$dCnJlOvjUx/xOZ^?Y߱3Ɛ"b? >-&tޭbjV֕uh.^ P^Yuc/!\/?㐷_Wq\/>/4[R)u[2?% ֕mی6ks O &?`=|Pؽ-pk>m7ϣ~x۶qnf `A V$+j-uyp|}\H˶]lZ*q20f4ԵXVKJJRhqk~β,uy} A/a2ષJ.h#i42j 馆 oemd<i.n6c9|ffI\=QJGO*F -$|Num(E::tI#CI˶VyX#%n9SC)tIe㣔f ik|>@679tx/jFg4jHzRN4ׄPT9&Ϫޚi%QF&? Z\&Ƽr>覙SIGy78-i$>t25C, lK2uqQeMC_@(fѽ6ɀC9s ]9ߩw=禦iXM1`h.sك+_61p=:5V AM_3H9>ޮQMvp:9gE,HQ86~j^VZȵ-_dnB6${ٖESjUtӛ{MN{$xo5!+*m[u\nX2>^^:ڔ=i[cHrĤ&z1&ܣkWdF?^8df6FT" yhg eVI25~pK'm=kg6CR ߼e,:7rS:lKQɒlOje[3p RװP(9dQ!d`|>/9N>az"8و8JaqΑσ2sJ.Z}`޾7w߲xI<0WL' KCvWӃH3WH!osbc 7YSVyp8qNeQ#׻ Lkc [ {TG8K>3 i6HJ u>8Z@! DG* qYwcAC?|PaGc?֨ lqVZ惤V1$0aKskツF_k-Swwַn. qx3RNĴUײNZ M>luN^U^Y1-O3p}kNs8JcTQ{H1d\w:D]]|m%e*؀ĀAtjMzMS5?r .%{_¦4[KsQb 1%-s`l-c̚ ,T O6>Oߟ ꬋ&h'[ 5)*XhZ1V\c11ŀנŶ33+f7R'LQᵮ6ËRtm\qyf>`^9sCw WS%gz3t1pb坬WZΗkYOpG/hfNJhn?>|d]MW/AÜR_yt1N2A|ΛD_M&֔ٹT0OZd=D~PӮ'`|?Rza],# r'*3sˀR XcM+,M 9[IϲO9Γ<?o%-F>OrEmK g>qNJf,ؒ3ӂB0 ԋ4к m aC3pݛ3quƂ|%3eXU{՗>E7$U>Sاaw]4pylsɀ{ǧxjJ_@ IqӊjBo\j8&JMX; M4T&*HlnNRly FbHCbn60J/z}p?=iwa. ?iy⢆ר{wGY*T1ƽqMbu/y&VNf30;;&ӀIkInj:~(טnZVs'8u&֐}]fI8̶)<sz<6J1M|y,}L&yc~ߔbM1/mn}nI/'djJl%B@Ze0k9wmAEʔfR"pJO֞-;8Z"_,c93PN.P A\)MjKzBm9+aW5҃#6X6 y/3bE 89ƗOp[ar!7cRzw,~,ĀG;1REG,1c}Q"[ _;Q)c$za]}pF&Z3yן>>?r. K%;kJ,fMd `+E>LvٰIP$j ֱL)NњymPzcΑwくb$^%5ga]ܠ W!nZVe@ D69l=3.hXֲJ:ygqO )'6޶*7Tt/֚d50fd,Ms2g4:X蚒R(~љ12kr~Iq*  b4YjκnC̯^Hƿޛ4LYr{wquPhQ#g^Ku"~= V#DL QG Z3y-!`Y:Fs/g1-P~kx{7y0LGZۧOq~}[dQ0˲JnLD5nITG۶qn)l9_,^+;|d/>n0Rmm@eYض풵{gPk!w JR+ӎϧ80V yFŎ֕`{K)wI}Ū+s8g+IE Θb`L G0ir J(D^?(ټ^5,b҇i-jφ`Ӌ-:$I;3p&ąe__dY,w$Ez|)FS2-M5pW*aF֏xY$XȚb& fz]~=}Jf3XEZ8'lw˻:zHgrd&*a|Zs}H 25RzLm%.:m%Fz6-IGHaQm=ﴲ['NLyO0;5J6}ƅj4F bP1)gT4Z2Ifkҁ5OLJޞk `OyS KQ WZeL=bxS Semn2 Ǹtݘ8lbhr+p lלLkR ̝Qȟ, $IWAZPX<}u> .MGpS?Kb&5zy3m0Inxͦ@ tR2g9 d<_̓AsMǑCN:ڙ9sf73Y5# 4Qgn1h5&瞹EOr73j 51zg2\해Fe]D/C6E׽YҢ4:<zfU@ IQ4-+>.¨gݧ@b+8!~.+xv#sP>]R\V[*WB?$m(":zy6RJGyi;*ga 1%.E0Il۝lبyd$j$Wi9%6)QZ' dU̕9Kc[c28<7" T"c|j̇` @m SmݮlU?vhnj}c8qIu >(0gB7LITkؙ)[rVr->$29 onO br'G4<;fu\z!]9Rg?TkAJ|nt qujwbhO&~wV;x-]dl LVj6䪨%Kz&gO(Es匵d;GJ srNb/$;^"zWarBMI^ya{%Rk_J;Ss@oxNAKv_]`]{73|V̓d5)}5D`dLYCsW@dr5J4 d}j tR)[o u| L@WcLF:n큻͇mmx`s&hއyW|rۈ>X[˗7<6FN<.or^؏mS mQ+ $F=v[\o7<%G mU,l8}߭OlV4oе=(;ެRFɅ^$m 3x6K@ldǎܲ@M2xZ$U]. ۆsCsb$ҡmf".p7ZZ_exw0qd7cf6>0t 5泬Ŀ7rvk.)fbdNϝcY)SlO9]46uAR80>ډykq ՙլ Yi0JC, CG5sQ7V7uV y $p>YSڠ~ǿa?c1x5UueT{ F6 ;$)~5:J,c 3]$JL'Zěu<:@>^NShwbtEr FǻI#k|uȵqV"zJ:yU1QͭpGf[o3k;؎\[R#U>! ,% KVF|΢Ě# WZCO|4:Kpo 䓴H}>y|$Z3,(2,Ch5|DH~~ۯg2O^/McqBydr=q F=5;{:ӋY˸<J.NJ+i%!HP4>Zؤ~ۮgydؙ6Bj~yK&K)ReLU~j!/Y56ŢԛRH{^o0 } _"3 ydćAZ4qK4މ 2P] 0{Əwu%+qY?7$[*ɬк9.ߡ̴*>Zn7SXF3;Nr̴ޔ8#,j0(e@p^vjgL&(g< 9ƀyH2|ۺSdtK/I =OBƘnF (\Z#Z1o mpd0>%0maz1z%u`%+BTzh6֐-Gsb՜-ݤjA,r4VDN^{s&2Ĭ?ck_A-a{Nеxtr-ܗ@\upEi9 >Ы|F$?5}ĮㅢpY-x϶ݔ4evrN`L1pߙj k='ހqɻy9M3hj=//"hy$fŘ9W}><І1iWZMDk\ bϯZ(ݬzC?L `r g~)vzhV ̞Os- UN;+ =J-)<+%Uf7wIRؒ0cfiɴR5?mGv~Oޯg*<׽q_?Z/@6ɚ 6V;$EV7J$ ;I~{´+OP2&7N{"^ !Ü4sPHOΒJX1Jq i/ DkYaA.fUC|pߔH}4c?mр!/~'@cc̴64zקu:?u1Ҽïf1g`_,I64]Xj(۵h5,ɹ:cfd.ȷج"=l=_ޯ>7&wtKi ڲ&9Q>mDbq!\0*?_2d%@5҅iVH=`;4y׌!]؍)A'׆L$]E5Z\}TBp l0'FyO*t7]ũ6M=HӪOkJS~M*'x?u\]IW:~tz{\ F|s#p.@a~N]c?MI!(̰_#s$݇g ҳIx7Pxy(ѐ21:}&"i5=™IAq O ٟxmuyМ'Q73 LK7O/w'N[~I]2qFʤ"~qTI}Z04=CJH c/!~~Q~!CyB5T<; JyI#!-%vi Wm*kb]R'~Mq//H7m}2)pq{}_y/:pCO]h'_9~ e5n ۚ6Ғ)1lÏ˂̜ɶnPN5]kJܷ4~׿7'5Svl3Pj2Cjq ҢAH>Q= 7_Y7~/IKnxpºrm8$K D25:^_Vn^ח )3n 붲U4:Hrf1sR$Dm xnaQ_)Z#^51cTUZk 1|-ƌ &tR\8EF?NYUwIF% ע²9m9=1J^H^))0FӧefzoM_kAQ&-Kryh7y7%9Is~H 6:5b+,ۺjHy_s x,\bYP!nGdˊm{fu4Ɩz5q?g~oYX?("- De|P0Hlwj䝃MC+˘:s?NL*r6IGfIټ!B~ʀe!0ÖPs!,߮'׿fuE0ӓgjU@^MҰ)U0P.'q ۾b2\W;;zyf8TN9ÌL,+v#h׆5ʃio@i?b&:%E(,ctyZu¦ڀWJ171)6k*t\'Մ`L>4:oX,8g㲫&O<^h>, %P-k3]tĔ8O~1ZZŜ@1F48֨0c6K(ywe]e"mZѯ_U)vsTv]jk8 D91p,.k9 ?siy.dž?^uyгVgY?w!igdKgTzX0\@c?-i p_hM p{~nw ;?SY0i22FOع̜gv_a؇;Fp$|Ư_Zx<8Kl :&Ks]^cZ.&quc ߷Ei_bLo^uzRSk2yU/)~oUNZ+? ]tI$zKznb2 SM H_q}߬jzk1?wx/֒s.wQP.P{ކk1<$)?[W/qq_e[k*kPEQ~A{ydUC`?pt?c>IOex'hf4C1#r>Q.;9K=¹!mſM/W 53DԀ}/VK>$.5-S` p 8E2U/7'+Α{Ԋ3qp̒Ձc# -sJl1BRJ֘TQZ%=hÛN2puxΜlTB͊ͣP_{!tqY՝$K6] )m c$)h `[cBzΣ|tOuĸry,`2y[zaws&ےptJW|~| ;_Z!8ɾrua{3'A߀wMhh ~5?R2/.muG /+8;:ǾB\De2?{QP!`k 7S{!,啎'㽐#IB>=Kx{ne5ّ U~JJd_%kL"yR[azt?ߩEˉw7d?HoIFy5b|QJ&)@s R;V;4?{ȴZNNo8l (Qw\-c'&dD6T 볦Q VVuu'dYmi'Hn.)YBU\ih@5>{85ύ]M͐D(x;=C̪ɵ*>ok2O0WMkVgzkb> ObQ!7Ɛ3rM&ɺ`ֺ,9l jlY9r.l'l`2f#a̘|Buluٿ=;?{dvJ1mnn+y]] 30Ax_?c6>[X<cz뼽=Ulִf-T,Z ǟޯK{ Kss=h+&{ct"&ȥkxS\ ϭu _;?jCMr[3;K%}kɦE_i^wU}i\) U# FɌ8>qQ{[n%_?Õ*VWkJM[ȌJRuׅ@Z,VkË<~SoL3_Li1A^r7[pO_G)%iGNx=z!BTdFtFN44^G`|HfxBiXjq^fvAFɔYXBbx.D]xKS"5C_ m^TB|yxCQvt *BEx6+=\uB`XD'n\Mb46C?Θ;=Y}sLysE?[TB6}T1w7wW1s_xRpD|wnA& z $4;LZ{Y҉% >{%@ZPA|'y^ZC3eT̋-%,|g?1Ҕc%֦94mU;%]Dh]֦EǿĈJf<840faYS5yd z;-ApLKq'O>ִPɲl6prYsûJma ,ܽ&WJƖ"*y35ゃI1;<)&wmlJfjg}:FgYV)o)'w~.Y!`da[XRqmI#:.&ñqy7(3mjh/uK0w>H s?m |' aȵgԤM&|/Y- :G- /HpHY2 D֍ڋԴ{/y|; GntinJ+@M~뚔Sc](7) Pp*bJdms`>iwʬ>P-nk18k;/ϥ<ݙ}sN>& 0RucT0Jbx)k Plqmr èZǷF'Wއi7<%7Ke5gN_}<&uj9y\z8Z#d06r땘5bЙ)XqJbMv[YW9;qIܝ15_ɝ1FZ8oR=i|Ţ$vĤݓ\ K\ *}JJxN9`aݖ$aqI^Bg9R5VI?m&T!=YÛ|sfP=-ѤH5wXS8R^>tv/84dM}OpתaoZX{}J /"vâV $AvVBEb q,K<䢵Ĩv8=wA.؏޼ٳeOy=kUR+Ui?${.ƀEÏ[]l\X$1&b&-5^lsyB}og*#<-z;,t -@^{WjElo/ ۺXQYk44>w];#7 怭cu\yeQeр0g۟ZÏG1[oW;ڇk$JB&饅h PwgHj !kX} }9SYx z3p]^ gasΧ\uMSڹaךi^M}F'mFmz ,ja *4#cIgwۍrb?.X_^BԢMs˃-+Xƺ(#ë ؏[h@ɬ.olMl: 78;mXI/urcMI:x?2*9zxG F}˗wr.\NFDq\ hzoq@=(ӧ wY(o8.d&&&mCL@%,kG6 <.i!.olvQSSOL ޫCXLSk[z'=7g;:o3r?.'E+9|0ZB d (]Qx:˶@olҞ&C{wd-|qpuD{|p Cf޲⬽ػ4^Mk- gocY(.*M~5+U Y ~.U 8r5(D(];I\  $?xھV2OX|^uYl1c5k a&%}!I|?WG@Je3ƅGYOlg/2[Z|ؚ3_gBaWjР!}0Ky>a1'`I`Ci[LD$WgK <~m <(w7<{QiA,mTOOݗ7~1H_@824J3BhJt^^(v(.DOF]8-/j;1:9Z.*KѪL߳6)9gt@7wN#El,c&1%of rO$@F?JhRyq}"C'\F ܗ'pGeuMb{KٽvP + E<ɹ >hC3Ju2_ qJD>.nUfnN; 9,+>@*j&sQq΅6:q]/so pQcI-}4TJORTY~V4VyNA Zוv8·&08%g7n0_{vpjIҷQd>VA~Tc@r52JapJ̋SZ.۶qXBOzxDd C>NuPuMYk~1%JkjAK0Sm?sVzJwm:mo^j-3RA_n gbVZf<⡌շ\|UϚۘ1\2ZB7lcL)3`~6:͚totk'5Za3v? |AmL{ OoX_/&׽s3`M|ϟkP\O7n#Idձm#D`oqJ:kQJa]f:(|N5K3|z:Y2+(6AaF:[n[)=% >Q:CP^"TY)r5yQoH6Y@+c?QȘ|swY,k&5q}82Rc f(r_S㊘mF4!P_~MNzL !EQ91{=a> % 13K|.4MpP|i%=-M}0C.D;9E4y"Ӝ I]gf172R PΘgn-dnrM!_O>Wz@;IT瞔E6|/2ul B!cM^|-;ayks v|&aXt_Dßۯ& */ P?|RmZZ6ύQ̝(:&5 ծ\vKWZԪw^"^ 9 !y2P[$݀۲QkmqpFwԆYcR]S*<^ʛ>~Yo;UΝ<ͫ8\㠅 ")}\ضUS:HA EHiD?ib ф¼gIj}˵m[h :~HZDF/eD*ٞP:(8 =wa)Ij8w3_6E4DI)YI>Ө<!-vXR4F>v|XAÄr~DM+۲Q|g?Uz0q1_,~_)$M)вcyyњ+/Sr&{}gY$Q]Ѵ8uPwZm|붲3sO _V-@>^tqߡJZFmo_pNIo1VSĕ) GɊyD۩Xw1m4HC%~|却,3kc]o% lZX/l[F2&n.rgY"qN Y.BZyإ;=JH09w3UόU7ZiDb8-4# ɾk9'aI({(t'ҽj$N.pu1a1%pA:ϓ: GI.")$IRu2~@΢a]3jirچqhB܇F>J!DsnPzTd0ݝ%VJ(vtbz=OOWw_qy}_'8,<[zV 8o&+g*sL'YbO 3  &r~tw! ڨ\sjF~e p >(/VPKzno|(n]\`]W͆$>d"|΂)7Mgy=w%I> 6Tp:`5c %uLM ے33P`~א_KzJ@; "Hnz\HH}dj9H)b!bHfZ5T)paNpWZS 3]G\W#I `gUyM5|qЍ!P(5psze 1^rw+kfNƽvܩn9S}p?lh1@Չl3zFv<-L}5QB 2}L˙L߬|ۛFд~B˲Q;%Bpmxm@+-E.i+{w,nmls*6\m&p9RԴ1,=|ɂ< )tK*0L:c/۶D͍1*'4Gk*DJUؐx')p"}d>سP*^>)y"g-ZNͅ3ۺ(~XdR)C$D0~{W)y"FLaz41 GEQuXRީI^9ogzOZ{$ w#RT򣰥XVG&b/6W:+e>Cͅx*]~;))"F]L⚽Z= u}N5qB$F.!˻j! $脻R5b_Dj[H29DJό!SU{eT2Y2Y=R1|Je2e@hKaJ+ ~e\݆1bZ=:;tCO>") u4ti ⺮@ExZ*///~8?U |-VX|dgr?g fB{fLs]v3Н> LY "AM108`( 358asyOvpAf ZgI0Jmz̀sNPPz#1>x0a.bӘ;N45`O_W \UKᐥ /p~\r)R2/"@, Z~P˗ !₆sOfc龩3ӗ9o<$US*Fz}>f???v^F/]7Cf9yb?lJvmJzZ3g6 ?CόsP xh t)]p˗wFREx<e5IÆb޼@E5.bPg.| og7ݷs{}@yV|zq;!_p=n+~`75K;chc y] ^6L5Sy=*U1?u]ۍ8Q7nhF%l˷Kl:лT,T{ᴭ?_#FgV^v6sv[seOӌI J/3E7'vʹ^!I>XBP_Ss61厜Od4 a" eFL쿚(V/M :r1<@1:.J 9t؆,ːYHmeUJx/i~n7 >]JM2`^-BKiOI>-z(Jq$щ01#UL-6̰"Y XP PڮiKjà{.ʃa]PPhঋ.DF|mj< zLE/C+TSő(s go |I.Py][;_pA1?N5gbnКԊc}ѵdj*!:֔o8r!+xE^^_xyyeIkl)ZCc$ ~z )ލΚţ10(( 73uwRPTZc{r<4YBuOٵ=@\ĎdzJ/ < tDzi%D / ,Z>$+[(oJHA޴зF+v}2pKCI@5Վ5qVFw)S$o;ǾC,+;y +|uJkY }7HK`IR 8hj:g>wHJ\6ɾYMKbY95֬'i- RYS֍d@v7q>xԪr5-cC t۶po{6Ǒg',GXG5i<,!O+_6j%me,Ow|P~n+ɹouh-x4jgsY#qK"-ap8\,!H ǨMLg52pŁslM_/c[WƤN>,Ae]uҙ3gb{ۍ>qNZVm8y{PiR}IGewCr=IwOP$ JɝN` yn^1܆$5f-EEJ%y~ࢧ%QIJ]}}ᷕ^^+4"bcRAٰ XRbYm!&y :M{!1j:.qm' @ KwpJ e+0EI|.xɎK>K-wJs"MS샡B'KLlQ9՗u)jQe.jND.%gS1 =sϬzΆ.ZL4lu]֨MOJ9O%dCMqT?kUIj4jY7%"IrSV{D$T! Wܳ5b-Q8YU18 z? nk]6 6@$c$/yv3fLOsҴIv;]C"LۊՙP=K\]f l[rN2.$ pfnuWFw[to޸[2a4%#7V%mz|7Av/³nv<;~?Wߧ _y#π.G0qhpݧ&~x.?hcYyc}~3m~\~U ԏʏYbdj9|F2mǩac/[ "y8vҢuV5`/7o[וu[MQ(%s.D!M*E^93A I%.l (Ɏ|fj,@H`(V~ѤASoRJ :s!*KDhf6LǓ!~>/fA>ȅ}@06|H/LFT^BLc{{X+mzhUG.B Pj 1iyQ.I;>F>c>)"0™\,8YN3+8.c.ZzЇ1iϥW9'L!3x/Z7$v]a b9w%+ШB0M8HC6q>Ҫ<> Al VZ:dg4HLbDwc7b˿ܥ&a/s Qttܜ}$f<86&7D_v ^ӑR Lߵy?^sb;yԃ5=懸 6>`&ef}hBf7FP*2+Z3`3%hHL;=@7UcbEk(e.= +KNb7 /P@ *Uǩ3GGmO9[{Xhd‚w6)MGB`xOiON9JwɳA~1CKỲJLQ:Bdyy洸p>2Ȕ;q!)uD9΃7b}'tmMi[6aqqV5gm468*<ɫ7Ɍqfk]%%;)87%NXjUÒԔ֕ο?im9OjYŴ2"6>gng7.pqp*!c $Mٴ˚1f-b,. 2d?igmLssN+ LKVRbx+u(+.Et۸RqDoB%^$Q$VuqF @U F*^ o`m- /C ^*YFϧuP#wnrh= V!b4&Ⱥݮ#cb0Fp1 jjF}W^ImФ5y9mLe50vʻ$- kW\z0B[]B}) I 6S.`(=תћLXݻ$4K)f*+6ת\/<.i`cZ7U[X 3K^kN%:yXT=3_Ωp h D Y|NC}o}?S IVvknf>5+-ڇ@zT1%r۬ǘ-\د+9\eg",j,8΃dL, q 1U Jp@a\C|yZ ;LXp ^}-z9mbyKwsև$*lJ䝳daD[neZ*Y㸆R:n̮ tämLfYRyɅzz z<{wI:$!A{|ĄE/+ hBGw 1`xUBu whRk!Yg;'tVF%$#aʀ#iԯkQ8xZEVBx;ӽ{!_ׂiI&p2#AqQ*+|i6?3,gppt3r܈?0u=S9~@M[N`syMD&)/9 k~~0q]pLFSZڈ'[ƺn2kF (&@x4K=穣.cZbg@ռ{55-p!ѺJGqxz\SԀfdEn4ō+5V=}ٴΑ3 bPOPG%ƕ6O8ȭNuvdj/MMM\: 10òR2)%)mϊw*JYݚO|0cPYZ#+o5^M%띲W(1%œw?`>Z%zppgk%lĤ{V:m\| =fۃݎF|s"i۠FwNt#޴.~"ľ(дr#ՌUכDb?M)s.X ͳƁޠdy%?K* Ԗz?.630D*Ow" Ȭ#x^,t\+c$ʶ&%9/`=}H,Fwӏ|KM$kǥĞ Nݕ_m3LY* g::Lj$qvLur^a?}ε^K aQ){y6 {l.~1,B/7RTٔzsV(Q+B2wj1ݙd5|\9/Yu&piWQ̧RΓYpC\ua<כT}x\Yu!˶0ρn7l3~ ĸQJ8!r{EHDa4@g[Zed˵ɦ(91$X>LcpJsaJ8qBTz bIS>C'6˴T`g|O X-.ZYcT qGsα($k|1,n///j>(?g>(EKRO%yϯy:.DҚx{;XVcn o7|Sz`?,CLy'-5zyLpK e嶮,1Ώ|~e[Jp6TtIneP9)$yЎLt?!E+0%WJjz[1$@{{!=߰xl磵F4C`d^u~i kJ1]Qw&3~.)zҝ8"k54u4pR*ƶmz6/B$< I $FU]Tn^ӳ&xc#8JCɮGF+ q^z^ #B6#ջ<{=XurL &N^_npھX{o~Y)օ75!zjli|e߰$h|lHAmG{XVT;E,./*-Z+{kC2X(4nt.b˪!O\&*U{pmMނúD84ڛY8Z`]+ƦWA|oSv$կCu+Uժ59&lAm$O_1) qFCʖ1hqN*C:'}\rF3Vvٵ|օ,&BbA/f] @1PO o\Mhõu W>4wαi%>-$1r5h$*C&%H^^ %'{c1G WVkT$eaI{?~ZG%=?s831&V~#Y )Xl~B냒c 51U+__|U{@/wa8L%İϿ|>~ 2{w=Wy1ӥ ρ{Q, `9| HbGmuyS:,~'oMF篴ݤWR3J"hI;PJ'g@Rהd}֗`5$R/ `L6]OFGL8cciz>kqK. SRprfખJ;mo+3 5+W hsWp.M_֧Y0 ŽpB.';bl71=6LCTx3K7꣓V_izʧ)߀!mVgޜh"ZyOk"뤍v MTc\R/dIxbMblя)_bMO= 05=Ҹkbt`Dsl!xҩ ͽjOen.sI?|[R~7gB|(?7ùxɐo~ EavWה\{{~ V@}Gip:6s"^E-6i&JIC&U8EI 'SEI۝&w20lՒ5^1J=u C_Q}t噔"wF0rT^;iќjт!b9'g-OMJ=wFʹr2tͦ8ej^񣳙{v0o,[ EAҔZc űV-%+ͱ78V޿)oQmjf %{nNrμ|z/ApY)&Z}pkL_x{X97ۗ5%.BiJ(}Xө rp(kY-GBeY%MkՃx'N4:vY,5ȅ_V)YxBT^$NBm2n~/FLsf{aC"-LCX!%wl=ۦ)G7jo&3Yq^1dCOvw>FRZ[ql<.Z7?޸6rRlXs=I b])cS#5dL,RdѵO?,RhSCq^I'9f;be k~KP4C1.un_t兓d NF@%\(U[ZYRZugjѿL3hg7p5Zmo@(r> #S6̶g]0ZUKy50xՓM2vz0Ag_:v쾪_Wc(>."\6j3r)U)ϓb{ 1!0juI^X$3yK(ٳUr21)۷WRJ=9+ [ʪ;̤]dg]s1)Eԗ/- ͼ*kmeF:oǕaP>IIO"9RM?g(:yGkqMZfЌa_Zgf0J';gk(WuuYigڀZc`J#?" @xr6 iBT*I[vweC1zg #@y'(ʾo8b q1L+6,o&0W 0}}Ӈ(r\`ir9A̩G XiJ?[Hn.Co=%};'L(g$X%t'1V)sv.0 ~l@IUP~ݗsCs2A H~Ϗ5.F5HRL鍼. k\8jSðHyJ[,9C ZIDAT%e?,aVT5ݼ>‚]1Ju!kcp,۲P`ˤm:Hޓb"y)EЦ9:tq$IDEm@ȪpLWE8 !jFfu22N3UQY't쾡=kǞ4Z(}F죓*}NMaY`aiFySҗue@p)hpm,)?ϓ,q,ڏ>TU|@:R~};*oٸcwNbP6wQ']R 9킐 Gʸ:ltF V 9XBSʻ|Q[׆s P __L-kx GD"pWo"Y?Zo>bTkz <ڇ4ܜu4l%8CYvy 7OP)牄F$RqɎ$RpQcO׵ eq=O*=$$2Gn@AAGVx_FH6-@3E Moyti1q*9 8 joЗLcD,Z:fA )kt3@+), u# 'D"+P'Yn-))ؽWJbmgd>U'U4tu }Dh77Y|gt= !!3pڀGFis'_׉1ױyD6z"x-5/ySa%;1f4XQflRV=I(ez2>{*C[]Sg2ٓlb8;5pi^ex #6$? ֈbE,ںQ2MYѺ,g9=IF0)2VF~x5M)J ~on2H) ȉ`}&99 &2ϑր`ú9 \Cѯy!)G*!2??Mh]B@J .Z*#$=j }] *$-#δԲv\Z }{ =A+,0Y𖟊xͽz jH =qnʯf[1%3#%;&tS$3lfʵovPlÕ?v/;۔g5g*z<2#)7Op8/M0];8{z*j+ 0>|2pht7Vj_lN )E0a Ѓ*RzNǘ'iPc= *}9֦yŽi4O_5[D<'.g:>}FE{D|˟{Wuexqb2>%fڎ_ w0qǡU Nƛ%6X$4^H_?y)3Aɜh4 xoNyD(YN|(mG~oTS^۽vA.OOeRgYFS74OKPBA>uI/IŘHGG ?W"b4=?7D*"].,(i}Bv_2)7]HgFvNsF:$.눐s" 2R(@md'6] Q"9@o<5% oDxwD(HT1#X2dAYiE #Jz1SΉoO( c5۶ɶVGdH[Ay m?eہK¶ohU2::}/Ƙ QRGhqW3<'ܳ{DUȊ|+d <}ETTBx8L|}bF~g d}`R9MNB  oX;j;+RP%[`?8(5:]KYv4F^9}]hIj: ъT fDh7{&cRr "s:|6ߎ[JhWkhS.:D@ fLA誼yu2 wV?o d>8D}R2 &>Ю͌ |{cGSňMd?/c??' ^<(K@9c(7!/.9|2Grr*040 ܽ i1k$᠑&Ƭ㦨EPrL1*()mpyh}51=kg*Ɔ6YE}V|]n_;O TRy]TJA`/z!^p=MT9wޙ&ʾz>!s" LW4UN$rTi8FFhʢȤZbsmes^LXrJqyΰXV̑FOA6p͋Y[ץ{QcB9U<ϓSݻbqvܣjL6̀m(y#P3ٟYxUJ@}_du7>͌:p7QGHH*0BƟBMV:hOkbMt. Ƹo10acPRmJL1ecba5)jo\߹S@tV7@h_eCyʛ%S.\``@vCu(z-%&T@="{> .q &xNFߠ<Yrz{d i&+cEzƺnfOY{"ۤ_kUJgXR]g.Q.s{h+ؔΔ.3|e,  찚Dy:*A%p1U[[kS0}0a/ Za6r2A.m`凲ˑNWsy ^VՆ^7k'e:`(ƟaҸ}wĘp.,icEm Ɛ!iwdĮw(ysyHI/$"\6J. (? u_^^OwW"f}M0!5QsgMV)[D&{c|cS|C} gKS_&^=<:,- 1f7J3y{:Pk P6gsO[u^L2-Cf<챱}ԀK 69iru}t6GAkсX2}#+%[F.ф*5Hɖuޔ ^{9PQC۾Ө pM2fjSAiiOD?/L <[>"ܩdNDCL H=sӍdIt$uo :4,^}S+QU_t2g6M:<:jaa)C3̸妆uţ=dFQPA!Wu"єAf 0eKi~Zcr)M J>P|wz27䈲 Dku(BH[BS5v21{>JxDQۥ|?傡LڏCR6? qUp_QJ+B8S*k50F|O[M._DD8m*aBuNHC׍ wm83ʖ%d)sb8 cAmߧz_6^1? |K8-cU+xpxZ1t %!5 4ـ0u?d1\Fe "?x)FG_ 6th1#dnLB.wBZJ2{;e#}$8B$^IRfJB"1:G#˷%M?+ec3 ,q!q1V̛ 0}yOٌ|=alnY[p_M]ht..+ uO /0PmQ~,od֐EV }ŎȠnL ӌ bӰ:oLYܡJSZ?JžȨ|m}p;c~_MF_^Sfgy!$|=PRDo6X*OmY 1 jޠWHzgwf~ =*k2]}O#Yg.9R*}}'P7\/ag}_>jSN yǴp@{Xװq~<@cc\UJ{<o;)uܞlR vؒ`(|7^CZ/d{,QRr؝Fm<=ocOnt*&$~dXG\{˰?uU9$;-ȟg,{X_="s_0?o|sZ>foϿ;}UaWuϰ˪׎T2$2U+L5sL-Auu-2yz#Х7!8Tp =eeۖa>T2z B$sb3 ⶡNHr7U>gQN_78NÝ7Ln<.g>46 T*%dm=1fH,FÜH,bDN^+s$H*x*Ӈ?XќN E&%A0ebk tlDt PXz*9g )й0”aMxfOZX 0Ou=$]BviizB_55O׋}g|Cgͼkzu0,k6|ͫ8{ZSF ÿ?#2P$ Ői.[ۤs2aΩIJAteܲ*eƌG\mJ=ĕ7mGahCBN^<ؓ<k0zEYbL@C.mȞcbBWH@nCA`"{>NeÖYB6NP D:/Q;qv#f\HdU@-[T$-rJLJTL p[.FArk`Sۍ<:ATyW֢SJ'>ld* ᢳ rՙPH8@DON]`LbUt?*֔}P"%(S6Ͷ* <} Jt.ls(Y›r[_u%"& Y4k8SK/gQk|uc<T Y^jH(ičϧi (222YH%-; 7 lێτ!ē+@h3 Q#@ȑÀ?O{z(Γl +-,rH)xEU$2adN@Ph-VBzON% ˆ.=A3T<9a+e\VD{4{an"T Rrq]6 Ye)1ߩ|?AH=A)}ߜf<cܐ~I"Yquu mPڴ?u6guSL8}(֡2UOu7@"_ H!]7SbEX,Aon)jC1^*Jxxfh7J5J@pCB7%Шzv(&().yNwT""rij}is=-LKB"cDcA#fS4x~U'3nZk&;j~&371ZþooF_)@(*P$E/70w #φ& H::D1&fJL `KV%-!F#dy;AQy2Q~kG9vFmtEh^;`ʴR7~~NgǁY@6eۖMZ0Rc|P ࢺCOPa=g ny+.7oܘxg^/ Cz"L-B7d0h#RWqɛg2R 8r! LC]vO%?L&49d?-h>T(AxsNrB[ΫaRDF*&A RL1L:1v7vgȑ^A1&WPCȊmgrŎ_V_ed A)œRxK?1$[bJG=Y%{ yѓ)VY0[JmE3pt)3TyKɼn-6\ ?Lskj2^;3F:')`AZ2߇=ʧ0z7V,rV9m4N/[(\\;/K7pQ (9:%9TԌj)qQx>dvy@ n2xV)Y3{2fO']i~9e`dɁdc,Δ}X9}1V7W-LV'|ڳDsJ 1gX5}v.{>f|ez"M`Ku}5ǵ;j0ɥsGi .)zDtQ YX:w&__ɾښأ!hQoR,g40@(+R2zx; [~a*x1Dzm<@034o`~^(;imɜs nωIxs􍑠l`pes%x LPb^W :(jϺTT=;X gPfjQfߔ &"SOg5fgw_yM&;f(k M4L;fk~3ԙwY)e FX)bs/N$~ k.e&.nӺA>IL6&CWP*hASLdۇQrB@rNx|=0}6úB)mS~hn+{.>lgaxlk#5z bAU:sgLeo/`.e=H^7Y*"y`4Ǭ }_y_ڱ9R@lt0g5xnHc=kBkS!J2ek^K`ՇȴNopl&.0ޯUO\`>nQ{7m{b vӇ¿eA)bۆZ/"Ϧ}ې-B}:X3xܫ,(˝9ts+؃ǽTT|A9ɘPˋL4ϳx'#/}(XN`F"LZ3T8gD8X$:c]+p148N-&o:0c 0:|:^)D@ ĥ kc@QUpkåuP0u>19sfG)XfjT>ï)Fziڡ L,oXMlmue 뿾P!TJy vvE9%\ׅ6:`@þoLlM+` "Fky]8N'M$SlsN.;ۋq}hjC p]=pz_! 17P$0׊d@my^ Ӈx^8_j$0{\bjc i'x@ܴq^o 1`W%ICR]TQE60ύ"\醔wtl G$W|Q+Qڽdԭw 9iuFxg1 -:Sd@xsf-( o }I|2 1$x|Fd{T`ё uh`$QUa/ tXp߮u 1/PfB/7F6PL"`haڑxT6v|o7 d=/@+Mx(t$(|Ln3yl{D C ˶}'9%rb5vU0 ΋ɋ>8k3z3Vz,AR= I}0ӧGa!gժP^'S怑~%Fj>Qm5H6'I 0?<7ɶpQ/VP2A%@iI>"Qհ3^9)[}1ud/s=?C0Z͜a ,b&`6s L#|Y} 3&Q"YgMGh ]xDXҮ|Zy_0|uKKvz{a 6Ж9P AѡPaj#S5$ F|qCCד@z^ 5&>`кbP9 $yx]7j)__@01p`z v:|"W">*s?O^`+OO4)˪W]l#ZNvř{bkzzW[guSz8 "+>:DhE[) 3xs{NE%`j@yuFEO~gm+QaLL1.&e{~!:*Z3Sc(MADΔ{h)w/\JA`IXAI,A؝!h>TD}C\ɋ\%j1=M -2@Ko LEgtsG>!4xpOi1un')F2 QsD> Է (%a1Xa!n|,|g@Lq"쫹]֛wY4A4v.7;LuP8mǨl}o"{o4,OEHb0c7qJvo9&{ NLb|. )Tͦ(me`A85])P >gqd?8k}# sYǩY?S>=wAĚ :/U&TzHכ㢦lkX|L֑^ppG0A (ɸDJM[P]p+;I }Bg55|kΡX|jؒ]CF*ie("x'ݘ&sv}jRS\n@/IY.bT6,thٙѺ̆MUEӊ ڨ0KضY R P!@쐔q]L@,׆${zchDɂ_~e8oJCJ}:1zbyi }AC퉙hF\bBnT*:_0 )_4gߏjBzAᄫzc)9GF? d%hjR0jŶ'p5%~}?Q\wDZm `71%X,q`އpXPDvtDgK4l%#ngŰA<42MLwʶSޕÎ^;bZ3/&eNֵ)!i@pՊc Ş0b4~ qp WW,\Ic%2弣Fqx^Lvfc›0_#X39 "G &N6HxK'y֣O^*`?,?O? DHVL_ ӫkBVd|Y`.2(hɫ;Ocמ{з'.2Uaݫ[s`N\cJcX7uW{&V#z9[&k!)eբDJ\FLXZuYF`4!RBvm ]ڐA !hHlܲ%:0 e=};z]Qr q0닩A(C {} G &`=_G4e{/U\o?.C'3mUfD*_& m?12cw/^ۯ7>bSZ.xR_Fy,q?)"Ÿd"!B|x naT{klww׹qdxNzYV$F%>so!$nbE,Ϫg,3.|ҝao>pR@J&r:ɉ ]0eu9!#Ī['ZKmIj36@wxv( Ib` C:y(y!Lޑw?~| AJDd[.4Hl(FOC_kS)xP&NmM %: ?M9e}IuPSojNl&ʆ>f\ M\vHHn,9YI"ٸ*O9Bb+<Y DW2V@(0 ^49ߗP.0+}5MMO:ET~Z.{4r*+n꧀3anBq*4exi|m^lƧs'%(8,jqXc#LjD$(5#C(Ttt{΃5[ͷgLty O\"ަXcZ"[8a(A-1CYeUb=xyҕ˶nRd t&amj4mJk8t8,:D"SEkRAݾV( Niǘ'{OC;P1%\Pd%'l[~ YMh rA?T~q'Q#~lLFf$â =|JAy@*%^iWLj mې%cyA{~Ⱦ~~~JFv\&= B(Qș\?'ρB (p_mP#n+q'b 'GFz:#z# Yw^l@C9T(MFE@1 7= !`\otLu*p&]oF ,tjsYx7f llQL 1Im "@|-yl$:}+F\f%./33k;@&5W51^_H?L# == =xyW65)dB &3 2(<ɕjc}Sv0$ JNJue()68 K,Ȓl6VTrUj%{m_D.<1(s*&2s/]q]J}@`}!SuPϢ2׭cwzrZsxMA>'F؂sp1b 3Oל) FFHG& MŢPtg2"e"nͺzpWJ#2.6]zgzX &n1m@J64U^i>'urdhĉEnZu%`kQxOցY~V1|&^ME0&e&* K&0 wf)Ȕ%~T/o)A.--7]x#%묕7ic֘6xܤ|Q[ǿo1\SF;Pa,*rHhM-4fL@{U,?y82Eٓ.1 H" ){ [L$ ޔ5nO L6 Y3&$Bah /FsRBzEwv@x(43hdS0d@x`ږDC{h52HT/ypw}DID}`υ??7j[Cyۡ \nbkJA_RpH8&\Iӣr7uq@.6!:p BSL{z˛)Ŵ"-FN/lUWEBb`0x0)  1s-ڑ f 9 pƫ,`?o HN(__>(xч]fl_;GƑQR#E$5AЍ3FFdR)(‰1Nc:M`Ja uB??y (4`OA:D Fv' 1)Gqt`vmLU ϳ{;zWXc4rcq]7@yUB6ݿFy K4ÕA?ms׉P(= Z;Lqxp-c%EAeBg1 2`')fF3_q]'⼔`C>{9vppÓ,o}k.Uw #>0=*x>M)8YmAfdǃ aT=M+zW\#c9x *;JL$ H@Lsx5DFzרm;Ygx'%Ȅ7~@9Oahzsme=Z5d.k=քRJ)٥1.+젒2q6{ Ń HN4.26 \/ӰLQ2r<OŎ^[cjIg}8k#7,,Xѿ裣l;rf+L]3TQ+=$8fd@ދ-&DPzW\6; k*&LWN)sXs^@os X@k?7F%XހV1Slp!hJBmu}a K 9874]`߱&]P>{\f=~8  ){[;`Y}J8T0D-sdo#mW&wIB<@s)M!TʐSB);V "e+cu>ZCkެ}0]{8`Na5{m86!ɠ&4 n΁ 934C&S\WWZ>ݳW?|/"=z-R\g=n3r g3ڭg|d Ĕ~>gzduvp`&>߹߯{ R' '>LSqO ˺!1Pa\"$bi*,L"_v4YXp/ɒBMӬ7v;A/(,e#& D9#BVn~'p-cT&=UFƊb5s` 5ؾ}LJVbao&;k#B)_impd-!p'1D̋Ա< 0<:8w6$cj Av I Kƅ:7R@SnʼAR޽H6W$wgT{[,w6A^hƤKJ 90Su?oQ1f|Gd@d~濝kJZ"$fGiP#c`:\ PD<+2F )Mo9 (e[Y#[HEĄ{tW0O0@%n!c uoN2-\Mٵ7$@9DD3y \#/zFrJnO^P /TRBbA7c^jjuy"7J2Y3.%zo}d%ÿ2},*Ǚ|mkיxSR:.ruk=Sf8{P= :z+@Adw6S7'`Ty-_Ìf!w&65! @.{<8誵LBG`U']_0~7ѯ{p7悦^x<3lv1}?smԀp]3ZT8{0N)-T W^E&+*5'0TY>a1IUW$b$naޟK^@Q3YTDi1U>:0*\$5i d-Ò0dQvJ[x.Hٕs!HiDێ$0Fö3@ aDM+9C@}荓z!Gi~8!]]5s1Bxߨ9Mb ݎD>ԭF7oV7l&rJPSr0jFZQwJX EDS$jl@hHArxa6+ 4} w\᠒cHQӷ%`^I存@IYŸaTDI^-%ޓ&jPHP0ÁFu8S]]]uZI,B /$Rg*J|>q(C nDbĒ9/ TG7x'HjJl*%d\wEC89ڑAH@h 0DN9".! 覓?!B!H"@h :% " $bkH!zͩpISDYd9 P5bWș'F3r\ GJbuAp[XV)q@)E:Aa(K@}5rkׯ/q!"D@Q6}/eGk 1d 숫7|>:~FDlOoR= Sqc|aw)S0hjCt\OLu,9XdyXPaz SnՎ__ z0n08 \_ mtrYtJAܤI8 %c@.SbRQL^2$ug`f%^gp[E'GSbr)8]BҀY\c*}Wc0~raZhg_5TlێVPhs6fmry]5u.kik1'ћ!Y]\Z3,0 7:к'$$Q=k4&G[jczsi`گ QC/ J aju4'<Z)FjA |!>*hط֝ugSmWHL> Ȥ̀ 3l_݈)ah2L溩SGCx{0H`8La!Bƭs=<ĖMO"v8S }@Lj?)u)Tv_Β&LO`0tFo:[˛@۟O}- xyů *r19nn\\Pïk7Ywh|_g<Cd]ɼ#+tfcwBY3QhAX\>l̅Ƈf,Z M9SFpaz&`Qлly%@<"c$EA!m;4ɄRǀt/0B{]wD$z7mv(bV;eg]PG)KC "An7!d׎Ț?" @L(;:S.@Vjǯ__H!ɦt3i !:;`%5!!zoN%;I~Y 'ބ $ll!lAɰq娰6`t]/l1q?cJgiG IL3!Ќ?/`(nz=/D5U)x(>T`hȉi'AGT78(3;>B(o ܫ(|`Ԗ}N h D[E͐2Y#uBL(@DZWtʿBLn>xBtkd VR6ׅ#jS(_x^7)?'qKƇM] C UT3vl"52Q z8lA#9JPɰ&WA?%ʉXx.Ħ*AiA"9aŰe<.dEW̄35ss$̊^!"(Q>[7 Q.m,4e|VsE&Etfx]/NӝQSa7,'l=g~^Qf%#@:2e,~;uk.O%aLucEdlLk6ŬyݴL/ଧ4Ӻg]0'k&M!C+) dVɄW$Р j@g"0<DJL"{xu;ib` t]Ycz7.)F+P[צ NS6^&Ic*Yj !Eq.iu6< )w gE[NrLl'0k ,IӬ`41dP`ZSʪ?ʼo&~  LyVw ^}cz!Gl#^%DfH81T=w~߿A-3<+tq@;/iȄz|-@m}/ _}ltj ^?L}0ji&i?6-UA"þ Ϟ*2rI.Vbnl!v7r^WyAL&^V}ߡÜ1`| I+}#s@Wsv+ ue3,3 0U^H&pU!)9(Ϛa8וn1~]T}hJqc`&׉rdV@Q vwJEҫ aFqͣ*q,9*>8EZn74!ybYΔ>@[ObL.5}j m@LVOH'SheL׉^Qr%,$ba ?k@\Ot*dpɔ qC!>E]h| N wmu]@(&8 &oS+'=@Q߃A}܁¸ C֟M)/@ri5QcDuO3;e>?nۼ,]ɂK*i X?dßzEJָ@ͩcH4S 7 ^i(H3kn:5Guas9!RBڻ s'AEpҪ"؎NO*dє:IA73 hH͈@/(+ZJr Ȇښo&^<FQ%F@l=\"(Hy_zؘmm %%6]AG]+/ׯb1H )V@q&P ?_a4v2wpUJdͭKyzox<R3C1#ypAw&+p^O5v}K0hCquzׇ~CU[~ bͅ+qP7D ߼γOyj<ݶ }1q6< @!KTq 1H3ʣkK4R9ѣ*K j ]2YN 6*8 {Z3o Wg!-2F73B xy^LuXgzG:OH~R4>|hN!ॎHDzb2"[\DƳ? -*vֿp u@Ahj8 h aTʰ kẁ:AzTYDӎmm`1Ą>TG_8;2;uHQFs& mVl׶C4?hئAANO'♹B̓d!@<@*1#E8}:KMK01^+-ƅ1 .Y1ftA s zzi3zY|Lɥ֪oכֿrU^ "k}7@oWxogfВu?7]3eʌSw{֧>?'>>l> D׫<*QpvS 30e7zϾ36$<ݧ71sC([v7 LSF1}m_pߧ3EfXz80AЇ7 "} '"OIv>Jg!Q<2Yȍq􊻝4 Ѿlm P62 FJǁ#4RT"e)'d!:OeCWՁ6  ut2 d@q0zطݥZ='8|ׅ:BJ_a"r__0DL/[@ Z8k郐b^6{P2\-:0k8P~džǎ׆m~h{ f}|Dva>8!S5jx 0$4D1/؏"jk^_L4#8BRp^7e)! MU< Aa%(/9 CQk#Kgz&pQSj@IO88l pz ` z܀t u" ^2\31 5/LƔ>7Y6%КlyN~mUX[-jV"J)\ AYD\h=[r9<" l8ٙ",EovR@ 13`ZgTr #Y[A,|'o I?s aqlǃb2^RJȑfzK^p%m q%LCmл,"ϭ^RZ+/z^'D@+!0Й4i ~㬧y~?N ~?~Y/E "`M?`*w嘘,5Kԅ"}Y)`뽛 PV͞z *2}]=Wd7r8Dcj ۶qpW+LfLn~>%`PkGk~fP.F[m+}L,ru]Ӕ"V θTNv"/^CUV8Y6Y)'";˯灸|wrjOSLF8!ǟ6hk@Fq7p؃ E}m߼F}1b`h>! ,gz <C\[V:y2ozcj8: :rȅ',o0CzddqA3 赲io4> HeG#i1jq1i347o]洼9~ V|"4HI" l]~ ͼgA~x!ؠ\G\ m\R9"% ̄( h$|ӛ5XX #̐$w4p/Og֢ObS2ý - 1WK\ `p=4|305 K0Wo9"ޮ\2ތ.d~ANz7=[䝾cJI)ml(! $eܜ&%XʼOlHhZ|ʔʁwt>/!ǀ8t,^ I-%$H,`@(ՊL P%ov2S V$Q0 62D(_)[BBGi+Tϳ"x\"Grb3J2(ϊ6lhb EHDZc VE3dc8S%}(I 1eQ B2bhBC(%D&*4a;z#,e2`V"fB86%jm^T5s5eZ_Ć&snL*9#``/!PvZ7a JIx 1㮊1xPZ$dHQloܟx,Fsb2^pJDw*4׍$w(aLK7! z_ׁP ҖP@s8`(AP@7-dT a;>g>QC^OG )}bLPvJ);,4cC6#d֨╟a_5-ȔL.9/Y+4J`zR^7vqAIeEnrF߿8c"LߑZȜn}V*B7U$@S-)U$@!" 9f&z݊' WwS@;6(NUPRBIazZm2ynw7(R&Z)k- K>dX_]!ow38XbLP(J@ia'3`J1p[mm}>OsVl2EZɴruUgB=Mz*Zp)e}>X)2(o0ώ(>sX_U=9pkՁR䵛",3qǘzBvc04,]@gm[6w9ezY:vt~~c~M!cz~HwO6)804TF|꿉.00Mfb' yjpFe)DDP',bm-9RF 蜬&?4_?k&.cx0Mʫߧy=~ fnZ'?;u"OVU Z@>z!ѨykoyycJ\*6%ZwܵAGË6 V;**J*dj,"C9}}yx|t BH<@=$$ $(( CLAͣL*񈇟\:f8)_{GD$ѭ#CYBNH C(AH83ez)нhhNǠM%[liB6]fA;V;ڠ7 ]) wԓhRH9úAŠ3y^aژYbbANoPJt9#3 ?ρsSka g۶, Z1\{{oPN"!y ?  $TINmdĽw5Z~Zc#s>k5c{k_D,8s$W3QUi![ %BK6e4ʤ6zUKlMqE@7<'TSY*Pz5[$4f.vQx~Bi+ޯBև7K灮g8Kv㠾2Id|P" ֈ|PQ2'xh9_ӓtOJozmKk[?#Qw2ׯ޻y @RWZa$d!WRpsx-b,K_^+ɸ'bnI:`!OlmMc?N ̦VT+E;m#H1XR5RTE?{svx5ǓAGiL QFogo{:UY.FZP~RjUKs8cS ϲ!Qa@܀)lɥ'%TxX}7+yLug^Tg]>fp+SҬݸ}$"qY (Qaq*3T7ܠd~4>L$EB 9;2;0Qe9In2`IoĵsT3:ǫhw#%/aC`eb*L jO0/S3$SHH30o>m su\2{LU܂ơgF&c2 m7#J^Kf弉t/}_=2|I]%qGmuo`S $Fmg2h<Cz !NOn~>{$3 1ѣ٨ Ԍ#Xd $N/V´f"A+KN  HQA "zH@`CGMg*Haއw|􉆴!bDp֔pj*7l\ҺZBXbYzduD9JcRN& }yAA)l} qHPV R fzBĺm"5Krҷۆ'ge"3U7 `%aK<9P|+>'FgfN @x,qzyUJh-%Y*z4up!" ]1 {Wa[Բlsw1Q@DgQO8"&-c/-wNރ r%DB{6%"8AEX|LB؀bBĶ, \W#to =4UxiXƒ4 b4kԆZ#Cېz9e)'0,!)`xOOD!ݪt ^lW2)ou Dh{%T>'JE2YS?FQ ne[M&RD>Lē%L:b 4+[b@0~$ %C YMB V|`3iM~ p B:[${upIg26ѤbN)-Sy^4hI _} >u 8u}]}l|뺖˲ba؛Bj>q6)MEy!y7:!eok" dFpk `YV$kEJvϫ1e`)K) 3 9HB_ 3Mπ#[c lhںd/[]}Q#zRq-%-uV0%ޕc lu&gviY&! Yfbta߭o!:ntM5P;OP5c >F&Yn5Ϡb5xiYLv o7hnh{F w 75WhhCRG60øe%tH B7zT7]=ţ/+nmXâ}hVC5`%}N,ה/=R2~]=lFӾtQ\onz]_@^='yLEc k_XSfWw|",R`}'Tmk6GhwRIg9QK?W5 1^$0sL.pN>4D_ȈZhJEE*tFZ8 jST:#sޡZѕLf j3d/Ŀ{\$J@QF^pXՊsG<Ӛq|PÆI91AC׆b SB g #1+)}< ZcD'S||{C-&|PJÏg>6$kTUj3 dRڐ֒?؟ORQʨEe])O|LG#L̓ ˝*4qD2KW ۂMΓ^dpO:e@ip;t@R \\-m&PD3tbKz_C[lۊΚG5$dR6XWN*ۂn+VJKSExx4h]? ҖT+1r(ϲ|h&dCiY?qUӞs#e]#}7%Hh!?O#ί ~Bb_#僕S_'q]ٿđw^8ߟ8:oͿ+> }BU<*F{dO;l Ir9ٳaLGt pije⨵xFIgEPCǎd{Vq'z'fHaÃ\*LV3Y]m{>8Oث5F4=&O|hDw"TȬ/Fs x3F$06Ԋ_wzYzA|d,zy=Wc}k?-Aӟ\ O`TƜQ ?195eZs֕f`\<\e՚)cup7/dЪYA$8#[H7X5y^CaGG!=7;E.dՒpFFwnd@oӆ'st 5* z(}8{k?iV+S(m 1ַFogwΌM@,z Yҥs@bė sx ؖM-ui=H7w:k;Ge@+ւ8|$?F>J|8/Bn8rF g=Xpzz'&2i]D"Q>"z =: BOM!EdzsO_'Y&01u UX"DIg/F봆+ߞѦF%Y_/7~L5SN5iLt\^dN~SPe ZC*P)`F<]"ĊMa?j΋;;߮Wy ŘZq|)p\k'|&U{-yFy%(ry5MKlr z%a)&?d /g+I Q%.i"M@^٘;{\;)CkOmӛyb>pв=2}'j(J@7ɟ%ݐՊj`_%)uo!eN#oE'3)%N_}%!^hdr . b|తegK PwYğnO}Sc–x?+SAeIF<ƦDk4SПnp1u~(f ZqV'`pX:DSq,1ÇXEk_?lD"{/d荅)T ^bmځV3 uγP"<?| H뜥vCH$<̔@VQ\|Z-bL?3gbDZo xc'GT<*Ԁv4 e)?\~O|"K2F͆C AU4 8UcyDQ"g&tցy>~'Ӛx@PamXSO4.op@dgN(_r`/%zz%J T[Ķ,=˒PPbgg=&u_+\R%/GcT@\|Mբޭ4?KAL>E5l/RKt^L!yVQ/f _G nK1YՕDP+'[W~_3Fn:$ɼ/B\(=MI9b GLmk[>{agrm~b-I~gX;5ga>2qcR?SH+Uw\ CS3+4S@sHaUܟ?'%zm8;Ĥހc?f-Plۆm`͏2xD0IB>?0<(kD녠 f)ׯWDuB`0iw\@擣@H64~dޘ|c¯l!:͸s$J0#gJ f(P=?fA_;@>hn hF :q`ޗy]aӎ=4&N+9*o.пqnc<C:^lJ83Ms>?4L4:. V J ̼Cr#PqVm5gNл E< e0P˂~\nCiP1R(N0 ro}x{zqpRϟ(G:~_YP+ϕRrCX. 6ŎU :ׁ Pt3)&㔦a _uc ;BӏÊv6 !Jv6}ޣ27nk-蛼~ٸO 05CDk[7RDPZiݘbZZz)譢YP@C?g;. 61W|Æ hrG=n_" 1 ȀM!nYp<1h+Q+4sG*;϶P*Fi]n7(П'bDk/CL<|֠Jiw+ؙ 6Ux!sBrM9; *R2eL $'4kb(Q"Bb$]U 8O5Ǔ <pr8aR+528`),*Kqd //Lg-koĺ,Np| .i[Y^Y/<ʉ1 kb֮5T2XHHPϐNֿ\-¡O)LzJ7<8? ,F|_{dqslzs/,blqVyﰆd;BFӭO|DP]0L-Z8R+ͬΆzXw ~냁-qb{x?L, p5A D=_A%`]uAXYp3`~:aU FZ\ʝ#215g1zUo~dGx'zfP h13G0qlr+ѻ~4[5W}`BA%ۿ-}G'b쿋qd?+p}<3ޟ3z[Ԓ X‚5F#h8| m#{t2%3!{&`NR9?cx[@1`'khT=0Lku_qx1|8OʰPjFJ)w)mu w`7M;M-HL0xm;i XoT+*}9^hL7N8s6S8'jk_rVDdKx@Ȅ !TZήءD`JFo1@@Oѐp1)||Q vYiK.t_FFT-^- Pu5fMљ tM2FΘ9h5&}LƹԳ,ej@q9Ίqx'qDɮ/,aH0H}Bq]K Ac;?U9i^76V{cmO_J)ȤĎ2K.9=m~.p~ AZ%'ms?LKZI򤴋1iLj@7F (&" jc x4 `o#)RDR-);L#^$"hԏC=ٔq<n7-9%7<!&(#9R'Vj%K AȵW7D6k)i0)!\~7@ymDF?lLV2XӲ๟h oAcso;cŧh n8sa5zrL l2('e1q\Rm1 W2 #+$.F)C }f\w;DCB?I>X ܌Qϊ\ > ׈ȝ4l16Q(Ƙ+DTє^ip.183c}Y| (qg ep0YLlsЧ׊,xh mA-)j>¹Z+q}1ߴbTrTHzh,=G.p]L[̃E.-x#'H#@,dSDO`LUt'` FUͮV@\ƈHό>vޯ1>DϪ%&<\ Z'š#Dz|`Y34LL:..6Q (mb (ntH'0z}qm >6c)tR {%33x;v?6|;Y{sp=WPEPuLѾ^JiLgZm_^P7eYB==D9w;co R@3?=@7!9&xL:_|{&> w }a ;hx>w&ōdj&OL>hnȹAhSK8d\?m33pF\+j}kba s?q񁩪 ֹ֪%zQ 8"*7=*R|"/&WzWá_Xt\Yj/N5k1f ǪnWc@2\H62D{[{)xy/uP@5>Du,~ǂүzhe nFb Λ?! P8Kg|4Sb4OY#;TPO8ǁ^hh\%͗5q>DR;M cZPX7eхY-h5)DNա)rj&p_}{Dq6Z, '!kt6( #dx+| x;D`Ӵ5yC18<vG)˺u w5 5R࠸o2e! u^::<ҺADӟ!1.8KC.`&K X3*ZTzC𑦾uW|B1Og`v[ѝCi[Jx [@N)y@zR w^3\~>sGm ݼg S$-=.n7%"{A1Oܬ1ak͹y/ րo|h7o:1%aMir>AEScJ)AF:+ors^ޫB#?ڌCmu^4ߦd޵|f3Dk1RN`U2Ct k C &6O^OJ={J!6!FV'RBk7Y..Eh@ fU:0wQ-+7|Z cݐ3w3 y QT3ޑT(1PUI`04Պ^B\<Yiűh-C:.B½CLlbe77p bYz늠&dSWc*1(:7y\SޯãDeL7T/7>7y /`[h|^u0:^x=vXnP»5ml̬ 4BmFws8ǩ\kY2DDKW8A`3#+J`=&:*:"Jo,@%Wky\ KTaPp׊ZONTkxG9% ˺lPU.fBv4Q3~hvl4YlGƲD3&NBQ I]'P2\ Jx66SJ?D"~GFӀ4̵B|$ڒDրM1Hi I;|2g Z`(1F" 9Ʌ륉C-zIgcGKKN`ӲnL-L 1vPj1"}%Y>Ɛ5-xg;OHZ8+ДU;n[B `wև4దu ƒ.ـj>L3]ҝM tKvC ooos= tH H1DuCkO̸?G0Btz)Dh j&k*[Z|" \e6ymC!a^ Uaw~B` 2p d@ڱֱ8Q{Hc[Jɫb,j"q~eX1YHoX"Jz_)rFfd) y5<̟˔8cߑϓ`}K6#=Ϟ'W]+\\ 7/ϮگBk c2ΐRgC!p0h50TVNPO9Z1rr+ VN|"O 󉷏%D.>1ҽ8΂\:⑖HDyߑbk0y3sz+N+}A[=PKC jx'# ~Z/`:%wZ!yHi ilwPT=}ƣ>pg60J!PqyDZ5ZAEHZ YL`̉1")-F|0)8(d8_,hU'ipL9w z{ 155p@[ ;oCLj (#Fֱ+ s'O x(gq k>A T]>-ɖyM*|Hӻ' z8֊rG'n^j˨4Q1o|QwZLAdb*% Šs?"SGh3j?K9jF$ aG8Xʉ4Kmm40!/Vc\E(xєқ:imvy&,>m(ɷXӬsST N3OǾ'O x °.`I2dm7t!EJt^|m\9(ZE mdڵpp= jcR›1 L!{b$n&V-ȃiLrocB6tn_] sx'u2K=k$t9WjB H7Y?t bvCcud]Ω'7=/VG/LfNiLָ$.B-利׵q#œi(+Z Si ~YOp\x؋!rg#!##s9LŦZ3i >7>~0djxŠ*4}Z9UL22@Tv6d1 jNe,"qυR}74GC'zd} M-ŀj!t~iYa1#qnN/kr6m(@D *a=5H0/ C:׭5mI9̌v.v8F1L N`xr%;5@"9'we^7F_&$㠾^ɼ#z ~X삱2P &8OCƆ6ÜҖ'M;`kcs R.!đڪm2G 4dACrsڒ1Q8FáA0 #+dI_4U pFcm jk1Wa*76\b/vT+\'  2ji3PTt-N5y 8*>-(M|ɒ](n<;ZC92eAL G>>h N`ZYoX|o[G;{<z Ni#sw_όrp,kB ޑ ڱ?A%PuILtN;Z> :+%B.]qB{Ek꽠7r6eYn[B/PcK{;2{d4Ȱj0پsP8,ҲLvA&>DFڗ‚Tc~j`nּZZ1̝]1.)y ZNy?w6# :[E#ec‹7ՆJksg5`' ǁ2Y8TlJZg}oģ,TXjG ֔\c~9ʆrPj&l }?:mљMC ?2"d"TUǬal1y5z$WQڱ}~c.z~O`gx'XomVlۊ/T-c ޏj'ShVyDPs؟j`Әu̞\D:qIgiЛJT*asmCOu}4u eNv ig)luRbR53K |_*z@ t8o^. `6gά-)<V;2MF}3:u^,nuQZsxxhKwk klvN3z78k'mՆ۶+;gGӂRrsLuuwjF (b)JfS)w6_Ք +Zf+S gJ,sYgK{ )TDiL p_>mC$Z=_nI^vR;QSTx>7y5$,_уF5T>̓0 2P9cJyezeǶPV l .E}uE>OGC s/f `/0&u B1x,L[{̨VGr /v hƱO427=fLG:{4Lf$+[eS֙1Y%,PIk C^%6נD ѻvmS;3= .@, ,|qv1aW[xt!9jEZ:'f3 , igu}[&E7^x!ądJ13|'Dt}ωu@^p`$M_U/m4G)Dkܠz!ұBւwb@+Ll "BN/#y29& L^b216K#O\@{^t@.> xZp%s% >@#"V3ʮ{SA 8ԞMћ)w8{Nj9y󎌫}xB@nM軒 +y 'm:5 MĻ 5a]-FH-p !88v63s~|~t74lɠ<Ն"طJ]K0h64-G&\ضkJ&,7sox<8 # `ݶ@9gl5E#2á En GTqx i )yzAyO6V+;bf# <)3QΣ"l+"8sh dayeJ5skm48ұpRN,/fbs!FcWs(@rnLUya5p΄ P?zs4|2m,N`&9z9,~Gw@o> ?ﱽ9U2bN=к*J+&3 _N^Ў)I3Rt+~"a1!ڙ*9Q#X/ۋ(LQK-L8ަ,3tz3#xE 6C>Gr]'hGi5KT ՗fG-b5Zȝ,`ruφ{S~vaK@Fp a}:6%<ɘM{yp5X;}2˱6 c| h3Շ"%tXuB\HH6kR{zO'sBmY8y-c gCl5=ߟGf>=9 jas3yBvXEGNre nui9_+gׁWk h|e)1yyexr R {.۪݀􌻀K9..{a@>=?'ZmxDU:BWg9g%ـkd7z'S8w ˑ (=u9D0>^ 0sȝ@CLЋh``3@\wHӐ؀BdlLyI:7yځ8p8|SER2}s8 6@&k㜛k{*a @;y. ui^g )-e5|}vd)όm)w !އ|ӊV 4t{Xyu,x3!ۄمpΡ8䃁b#A xF1y5/ : 0Utƴw5U5o0#-<;6x7ڽ03tOp ܁^ѼMj=2ƝRcpp छ0tB~KɄb>%Еܐm> }A<62^\d,9@?"}Tzf?oѼ.`P:t) a:'5A0ءTQ #G2T˒^smv#つ'cSڴe!B<UخeY`d3leZ4?3X6D8 Pχq2|}RǙCAOFxfJ p[n82ON"I=j4caj 1ԇJYҔH_w] Bia⺡PNbJ8'mی- =;ΕF7Y 'm?}bS|\q'ܰl >L붡wʩJ)6]!gz9cWT/7'!F)z94oP).D+'}A eQ۲AP[gp2Oc|~,("JU8HNhCCHl?[X"- ;ʳm Ey,8KZC6iJrf``xW? h>KM;<:@Ò <\g8O9jQA{4 L9NpOd8,MWL+P+miL)!d:zK;%w.Wj-};||~Gk)i(@D6jyRN kv8Fb_e褮d>}!П.ElĜfF뺢)-f8`Xe)51FaJ A.u7"ε - 9{ qB\}@>nNlhSe[_ \3HN  \y2HyVt(@*[ײ׆/Ym]כ4/bK8L)9I] uAwNDX ueAi'1P4pL s]1z2tNXx <y*%x10(8?7h2~PLw4B09D'n)3 67a\FW*|Th6u_;[4A=@qm>bz5S/)f :v-h ٌ=ZKj4nltTǾ?i )2P[AƉ \Wjk״ d֊NVA5CbݮmM)C>[C ykCe(bE ^vZCww$[穇(@2E=զ&QE>vKɨD>h Aj>OϧLD Gx=M36J0}Ǐ0x >ߥI8PjA Pk<|~<8ʵg;>` h!ȩ#@SEQcVcгKMzj23U9)WJzC UhRZ;jkxRY@e?I1=/!҂a\21)8DiL tRi*rkZSG t2J~fZE={ƾ315!qZGf 9wlus#hՀ8u|?I^pl&Ru 'J!ϾMCDZHp۴< +\S8QrazXm@3eg$mK @G!JRHƽ5xi Ep- h30fLi‹.L?1-e*ϵ9hibk1OXq RBdí3cM KJvjYYMٽ, Qi5V[qw\Yٮl etSHP5C\4Ls(B!+c\a 6 9@{7rxRZ3lIch{,J֬2~\u \au!RnSZRN8jJ`hYC4RuذZWpmIC5`(u=}{W%vmidL5OO(0/,U6X 5Z8\ /&0҉[fNz-pi$%-@(NG1Q)&ɚbBbBTohr b4~OЊamVK0Ga11hQ <45u{#8`{W`jZ-tp̟`@Yakj2:ÌS> y%pqIy22c0i)"0ǟXDFhȁ> ېh,prtH sPS8ǹҀ"cBpJ"F+}3w1&zqX;+jS@RO8QDjZLj(|C \m}H3 y. )K @Q:%ĜS= p`}/%S܍5.ȾWTxGpyhx۶ -`?IiA)"ۺ⹟p!>6gAH ?}88S9QNl)>q67RlTWȨ MU&<it6w My` DAژ`IW">j9q>O81o"BX $;VB^ h1«" ?X{ IRL̫G?+$zRpV'9灴-\),ϜɇxxPjA3i:9@k)4XZ!nCPrss4\b]AiW:s5߰/7IhFBX8 yhÓvydN߮n2P'eq[%Lv]`WAJR=+r |pQԚ-d8OUhAIgo=P*?gg2vG-eE:.)\٘ifa숯+6}&j. Z6 yfU3MǕÞh^jA22S! &[Q. hUm!@k5}G&zV5/ 8H[Gܳ:ZHiqPxE"r `8hT팔(u36Q{"j'kV>f ۺ DSXa!L @ X͔;z'Az9Nomh@)~=T'MWJ*'jYRzS3ɋy&H[nاW&h-b):od4K|8P( sf1V8a1bDCHh)Y*\}4f* ϣuN!Vq z@(+xXr[j4r5Y+oT>(R p1a> (ʆ%m,!:=OO`]嗀{ƚy L,v] myd,AZ"> (%6˶KH#)Qަ@=BHpOBJ, I},ƀ Oް;D;|pX-tdsE\"2qPq>gMtk/qA>+b\+%zKJx/>~(+bԊ@wA!幣 ,i 8@:meܱɻ8A6o<e/YѦҥd"ĢOkB!)14t~sG 4~!.,ʧ1rRA wh4F`] ] o~].9Ԝю  \xVQ2Y;ЄQ49"b@BDlD@sFMb@Zziƚ#2|A$뭑u3 )!xsMj# Fx׎mfj!g'8Ai(BZq@PA`)|0ͨ,4,Վ౤O'8S9gVL > f6@q'G' Qױ (r*ŵĒѭq GgV_١xJ)&#ۮ qC Qp_#襔@,UZLeM5Z/~X^<#`S;ev6TGF|%&m ?|aC4/TE< AQ2 X%hd iA;`L<:w6`b] |͙lހ|Bɔ{z 4=qYpl]Yg )@ҭaQ^W:_X2kkj ^M>y( 5e|8{V:́HJG4LC^ߐӶ LAtg`e(^a?O| 6o * %18D">YʭQM=5PGyF9TVB۶Վ}?=dv%Q&`Fn "Bw=R2b*Ѩ=7%t('!&"`}^7r\,ݳpޣױf)EFDú8s&`Ek=LeU^6@z3fv-$ 칔kLo'@9ODi<:BIN1Pn4Ez (ZP`OHp{t}i#r(!nG!bfdhIk -V JyV~B{LW/&kSk׼ǎZ47؇7 {3{0+` 6irB@_;xm,=Ni0fY ,vqL&2X4S:2439bT@V6@2h)ȉ]I@{ЃsE`>m_=,^M&< ^?|ݎ0THnoxy6d8t/_Mk}}sRx_x^k *`lV~, 1o*N+jiҡu], "Ƅuݰ-+u(fzT٠9[j%մRS>jFS?2ҚTɉ" J]+ZtE kŦE򕤦 /Ħ#Johi1gApBV#9FZas Q5S!RIҰm+>"- i]R pfPt&ALLn&)':8+3N;D>ml~D>ڱ- fRBU%ьϹtP҂~@%Rg}Uw<pp ȵ=Ox 44$%(G-opKQ Z[u&Ph 1 @|~#`Po@sx!w 5scJGG3K@# x tSTQsC-eY15$Q_I v4}L;xИ~? JQw&y YLöDD9JapGy/  D62kḱZ LmP]4Q`I5pj T$L^Պ;\kCȜiq]df&G Is Z2:pLj>Mֳ5>2X (dR"Gh"oƔ!epm'J Κ :̊+jhJ4Ε{8:sC6Ͼ&T0S$ Ѐ o,|5lDŽ|q-~cB E|V.ӐCI𤭑uCpy?.ds iRcU?.Ģ]!Z|.Н@PXBЊ/"z\dڼMkнn6VhhLejoUz0qlنK0b C{7`S-5؈ݨq$c=u{c6T|b8{ N^֯=e?9`u]oI1^NFA{P[nƞ̅qvp+Q"'-HO V۫okx\ ha[Y;%1)[֠pV;BP(AKsp䊰$ģoސ+}M4gp;" |JXŌ)#FRɀmb9m]ω=QP9=kEypb }2hqB4 RBRhpV. 5;ȸWGHb  $bTTC ؖyz˸m Z;8%⨌AvZQ JpcJg,؀! & . :-Np$EF~nDNς.]K3CMZy0ttdXNX&ۡp1NX!KBnZћb<2Ay"m+14 #:'b)Jd3T)9jg` Lb8K`y|Q8>0|7ɼ]@2($&+1=HS=I81^; V?QTBk87,m4m()XB)ҧrF`Z**=D:&\xN1rR2!NԚ!>Hpf炇 ;ԚƦ`jEIɓxzzJmn V_N i::#h.0&#ۇ蜇4',FS7yHO +oQM[MqSEɤh]aAؼ ӄYHy fHMo)1ןG1a8<^~ 6u^ rx0L| P3yV<(qǑ9?_'_duh>C.q=8aD ~dY+JhkS@b2$!xc) OK-(%3%ck?=PTNƤ(Gz.f*yң%a!,8K,8-mkJFwgbBņxp|o1tؖM&ұ%#Zd'z/RDTֆsGLu#ElDZAo3Σȵ!RN+|ę;9hAòyz;kp7 s\. e%<γ!-4s<R (0o3%ŬUVZ]8t%xR 8_m^i@2A8VL64.ZuH l5uv^QcR*1 `U!ͼZힰn\z(zm+/;g׏|rPݰ܅lZIަx<2֖PwZ8l@Lf[}OPԱyCRYly|yS>`:#j uH;1>J"!O[V ;Sݥw2c-It巅*bL=;ċ~\D^j@Q{z]}bMwl)[gO²3f4!u͒%[vO眈Yh4A  tcנ@>&@# {2oD>~"y˲*+ވ8kA3AfkV2f&!3Ԏ 4@ 8(ҹҕr֠@@)d.)T"t c!A|ŝLU`ccn2ȒSmri t6\Q4%Tj"H?nDלN9CB߈9 %ymJs_̽̔ z!F?0y_O? Zdpgr j\LV8H4.<,[ A 1L!g/F):l{p:@ B]Mzc7ţ{+",Zu^PUl8o Pt1ujIiY3>`?vׯ }&0zqmKz=kjJX?!v޻,OgsA)mR?Ngxjpp p!(ouv:ۖp;(߷9)%ΓƎ͹PvXēMq ,0n ۾[-Cb˒)ajnorV7-~@3/ư7vIGR%y {%cdH38`\5ts2v>pNW3qza/&Bt)o;34OVN@v+7%m]7fumQNpOs*x}Jv@%GK\O:x2y\Ao0MmiB5kNzcsxɴ@I!wbWc4]f3:V[TvpQ CBЛ%=Y[h$i|LVij\e2HS3N 5nsseWyřC |2L;Ք^;=CNf2,|SȭҶ6 pQL_:a8!:_ko\ lI&S)gpR7tIFgs-Q*mS4qjk2_+01ZU pk_NFK9`Md Vԑa(ԑ a3W+ŀHaKq}i7P彏8\{g\ ZxX4K?Dc,6H0/,D~,V6N:8P #PZ*dc.1(Udbd0z-j< Y1F~+!Zҕ%?qn?z2y/ƀ<5my THx8o>|=:cOדmLj{B-)ø۾Sb t"rH<|kM.a{v]BXQ/C)n ZIaMuVW. m= !v0e dL Gjk6&7~ @a'ou/P mV7ڈ51 yГ* ԙ7YbZ3AT2Oz5lV v|ܾ[QF @cu<^'_ңy?l$˲,L7ݷ\ }(RQGѵwod|wȖ )xD7hH G, +f0 N0`}bƬ=tJȻU }z49еs2;.FLV}i e0n`9ğGL7Ra)dލ5CS_>W$7p%4Dz f7.xcvx>Niv yokr3/+}@1@C)Nj~c8LF&o|s$΀9XYw0c@[Jx;k(0@)oЁV '9V(PvZ?X5P5&1Q9(CjGJFYSQvlܷ *Ly_7ZUg^`}Jq&KҿL1S385\,{@;SUZ>s!4`o!蝁0\p5tz.\J{Vڔk9Qa_ J6lU^1lʬP˕\5$I:E[1yH_sP-c > b *ZEq9 .Ol[D'i`mAM, ہO0 )M<0`#UĄѶtiߑ-~ R'r1^/`.uE)⍦1jeqobžhTKF-mJ?\ V tX8ny"qQJ~|ҟBx]( DnA\D)2LM¡vCbTE Lx9#WaGt#!A:zC *+g)dv`T4lFY~)3qNU^/ѥ4gžE|"=g_+%֚_T!h-)ET‒Zś4~K1e}Dhk%"4kאQ$uy63q5}uP- cc5CgDȵ)7 < J!Ɩ級I{SwuϤ./b4 +rH VY\ha-<uܣ3+x0q3mtCD52Fə:18vѝ*:+U|ۇg;7>+jqE4ꇱj%H>ŃBoP lsTD_>>Ȍ<3YxfpGJigwfS k'W׀m|w|U60J-t~=f.G_ˠu\6L&"=A0d*jdITZr t1R1M22 kMg; &o {snYhg~DZXLEkK"Pj4ZfvEBtgc-"FP7[/mMàHEDg2d&!2継)tڪ-b콻˷ذ2.p*n$0 l9SM9{Msf2Pmmgjk0\cYsfFy\pPtSgdv+ԘUe9{harԎgw{B0VZm20=o8ssh>ppێc03A"@xA6 ySM(յ]< "s^W#MKOaA5b,"'by2ּqՅ ~'V) %xxnukQg: R1؆>,l0ovmcpd *>#lC(?%5+[v'j@*[LO4-l?Lig7&b:n̔umk3]ח}NLV}rmnJ[ާ'|fQ;?|6$ Zj=zc\JhSk3](9QPs5i0_QO)w (q\}"itA|4`Y񲩧w%4Qow@tYl!~w~CGAXSflMCMi|9nG (NAo=O x؏zh#ģԎxc 8z EBWQ[ضqHۆ'u;v4| j4p1/@vE{bOYێ΂-%$o؝GvE|A:F^r"x2TT"'҅xEa)="6M5|6L .L$sp$Y v3,(t˼JAhiTЇgkx֊B }ИѾV*}\@zf(ֆ ӿY='SJT!}9;v6tQCJ;4ءw ȯsWHcN捭dLsU)N"OEV):Z(8G? q69\R(P "v hڇ^ g?%-O#g./Q2߸O)?_o=)%۶ݘ8)n|@1l#BJ8KF)v4ocvQV͆w9EWjm1`p jp1"$ޙKb$:_ 8jq}kP ]V3"5Yd6-m2DXu ]j'p{nNRɚ4;j{Yy[[}1 Z2x>}$mye4d^'4Km4[,0Xkc_bxoV .k17#1h݋jEojb#s |FS2}#CŇ3qW/dK(}8Iq0ްy[X:XxOb*x^ĵK f0QՎc3>@!cv:i@`dzn8: "} IxFU|Ќml睙6QsFo[O6xَNyEY`N'&3 ۭ@va0ı dYMP( 9&%s p㱋l11 lM\Q^VἙaCPONxx0iѶasB '`7ژT60t=͛{a`۔SbpXl#eUي\y)_C0؂byMZf>MKw;'h:UtUUv<JV5 lnNIާAFxS*ApP>LepIl%V-) DxL(rTJždoBǍ蝚h4>g&B$-R1/uI` Έ. @kHWd8ԦՌ$q2,Bv|ݣr":[| SɢJ)rWƉc ()k ];lhRJ#𧔮j,/8:{p*cvY" KR^# %v TLr1|<(!G19UfmjI`kGEn~ D+'6/x~o ǀ\`ltN{PkpE ד ^g Nmzϊр^9 ֦(Ihm$(#2+C\@|V</h;@Hg.P!!xezLXu i+7L~,{x4{56SV({fzGWs8BwIvB\@"mbx/| 3qgMlrduSc6))94f<GӁGi(DS5/WYo0v01+d >FuGW L)L&CD 1j %,T@%WPЪ]9יyu9C_ܘa܀n0yיɮJc/Nݸ1rer`vzZli~;6UaūT""M f%kXK~1 O`wE &=JyH!!XǑ6Qxt8otqp1Bm #< ^|c3CRE5#V[Ǚ9S~Q΂V:Hp|RTgB6%`?6/(t‚wO7ӆbHaKo_yn[|:mc _1uФ m Įxσq~#m̩֜(n;<:hbߺv:-@A@#}xiۀ5pE1pKd?p]"?3SzW2@W ;Uac"}@Gbd1Pn@d P:O z!P=ʓ2/#o9C/?q;6hoطDFY52,x◃3 `N0T #Cqd}<|>$aALѼqlF?} X F3;8ư|u|a cGRB شC[Y~y|e  <أBҺj$@P#ZNKn(y6y^%@.ش_|.IXl> JbL3ykfj+ /HO-a6@wAV$Лq2Ҟo;na,F'::2H1̮ c(s K^RXBdVZ(b=@_3-/4KR :3T9j;=*'`MiPM] aFc!LԒRx 6?'~8|DtrvZ5l^R xQx;k^?\-ғm3^f]I@'1,2\!Cn3 Gk (ϾH[\=d(Aڛ[dxNY XlepBp1=)F܎ ~x<x#Ch}Cp߼G!||hܼhg{|4$ɖ^lD%{wI ~?kwlgG9ͯ)gp3P\YNb^Z'If2+bĀ(1"cNp)X\ fL| k3Eg P8,l)4y0YNqLJЮA3۲R--"R޼ۖ09:Gd̵si;qK60N~lR㿖ߙRzsXbe6Vda\6Vl+A8^}f>L p%o w6ߏQ[]%XOsʱy UA=y74= y_r!9q GkV_`oP%ŅVN`NM$Q[dD3!\k-8Tѕ ~2*;_N^^ D{?2B3Pv\8{ J y'8c4a$cP0ի>8I zݖ3>n;x\M8qQsgFzu }cvGȥ< ^gC O>'tn~{vJz4Ri(_KvUC4E83%y!'?6:1DoD DT^d,QNm$x~<;Ox(RXJZ1:QzBkFt*Mf ڑs7ZÃR:+%L Og5zԂ!Ayp*.>dz4A#n;iJw6N;l#/CV pכZby| ) Dk >>v項r@:\+\2AA6p{:myE ߞi=*v A 42Τ+5Dm`4Rt0bFrq :|`읓KgŸhGbcx>וKHzMߗF f5#Ms8Bsx̺@v0}Gxd*d#iZMY)Z ;Anb$vCQ-qXgM)dR,y# H@pgFW!jFR=DiMsuP9g cxOENoaWLikݔhl~z o 3]-Óy=f3j:kν5Wh^'po 9</ xlێVN@BSzw 췍4A22^ 8P7VgF}l)~5ׁp28J{~TB~gݧhbȕ\.{SL655Pίoﵡ7rG֊Gl^P7¼bWoc|'@cL\ o ؑ`88@@p~: Z>)mmDZo!xTjkP!9܆ĭ[1X+{ Hm?;]o P=j-J_&L5)Lxyx=#)EJɝv:٥0 ,2]&U}WX;VsF֛310}m }Ik) U2kС@2g@%|0 <EPחP/b֋\1d C}D5){qRZ0) lЇ{s!)mƲ2dm4P!"P" 6ipPZۅPt@:Zh ]{MҝÚ]M ܑ~_jE09t½qkr.2{FތeqX.B!NɘzGcXbش#;:%߈s(U꺟342h; v]bZ.kAdQ ʊB  Cza.hzH-8Qܰ]LmzUGFmFpY)k9~(Bh\3Ti3IhO܎|Am Ǎ2au~>Q S[Ti|AFg*KV<xmP>C{>OQP욦lӃƊf Dm uQs[^2IT&b:U+'>¢FpGq:7uz4桷 aq880@8t EZ =9D4!8î#bc|DX)+JL|= 6oN#9J!B׉>,_hX.mP蛑k΂:+&#-wQ:۞U1mfF!a ІC 3BpfzgfucL S1V1n 7s&cu߷5Nii&sc$v`I6@({~s @Ҹƽy3'CzI)Z's0D{#ŀc7;k ru-I'׹U N/94gUuI'3{nV, TMr)цYL{Jc&󚜽6tcTR5g`VQE"'"KB cIǤ C+gXLQC._͕ 8Ԙe 0zG/ vhir $4lG{Ap0L/^֛mn2mG~e1!|LR5.mߌzKm2< /YZ0ik$.FV@%Smyd[ 9oDHys*Qco6_1TȫPeL~ftՍ %.^!n cmҕ& $,頱`(3KbHldL$dˈNYpP'˅0ػPe>gkqGȅ2]ƍn-XO01Ŀ2BB͗}/7Yچ* QBF/4u-j?1|q;Ǧqc7bp@Pal|ANVξ_47ʹ4Xw (xÅEQfqm*ù+9ɂ%3F 8f@\8Ɗ+O?pPt<Č0Y@dZMQ Tk{Iu+]c?> 'G̖"E3.8 n >Ʋn;jOPqsz bKmtl{DJx-9M;|C{U7,pdÀؓm߿? N!ua YQd G xx'ІZ ń$g XPŀzJҖ(l4tmOjΡ(QP[A/!%M!'f&1< mc|v4S=Fe(H8(o7SL_F굔UHaLtdxm-2~1`֥Hߧ9wV[(p=iK1,Ks0Z+]˙CıWs@E2dpMpZ"3/of ޅcP[G һMVW30+|fqhmD;wk!z8Tziɜ0Qj𸌂 fYxCpveȒwnU+sȻ1,L3x:2L䪛DVcnCvdw# }xjcMve!ϜO_(kPs osmwVcJu\2A{&Vp4to2>ofKf@ǵ^RQ&pIaʔn],Y}b8*ZE_D{ٓ9yaKܶ>pε83,|Z£($MfU?> Vq;%}ېBXC)16`{ ?axg[#p*Ā>o9>wؔ1PpX.ʂR5 $wE^ dcH4WO|! À=K`@y@, ;5 9}0#=X֠B#VuS'dpZ0l 32Uf\Jvz|'=sS vwqYNԳзDPsz>_0Aźj>MM3{~qdɐdQhu3ujh}f>t>DE BpџAY^ <D _21fshc8d)9~ %FK8' #>d5yCҶarf# nɠztJ?lJF2x}  fbqWnx+jAfcU>~ ȺyjowBupGgN6UzغaЯs /kwn$g̟S\{@\ĒkY}OO,7lێZ+^ϓ,oGLGfx\V7GSIN9,dzh1e>}aX .dwyjki~al<Es}'/?h6 I'g\7zp|q\L1ر3aЭ_2̵n#ߙlxub'H7N'0g& Hpo Ein޲fhbʤ;<¶Y!g`&qOe^`ۍ0tl|vdQgC!mU+U50cc$dMbD$HM =m6e0(ӛdgi7?ЁV 0Ko7ɀ%Y1S2B< ?iX b2(o(]sdn͊~ >˜ze*w̩ɥPb.턃,_.̠Mh8=1fQP։uMs6Ɠ×ϵbvo?'~|I)*tc \6^zE-P8 }>fL@ZkQj%:f)Z!3L0] 2iC!JL@sV)Pe&ހM &PԖT0 жs9oa ;ʫ +>ޑ (B6&=!2LN;J&%>3MZ)`:y1*YXJ^4cp7 %؝b+ xf^ORcߙ:bDR5ZW|wi;$ɯ!2K]cA{ +h z}-FƐ1u>O&Q>5E9P6/ض9 0jpZdYլ4!-0+oN8qƦQ%<.;ipW 觔B))30rJ]X7C%A|ɛLOv x='GfJhNUP YMY@NNr~*)A8Dj֍]~jRb`So6ǍΜCQP{cMRS9ZF 4;|>y(c!Zqۣ'ۖXGE)`Fv`pߑC/{R aK }?Q'QRzf!-=YG69Ԍ~ " Li\[a,t^yX`eqɜKN[!`dUۧy>:bG²:] }^gٔ]J:'X n*o~Y*)J9qSb-o`k@yTjLBؔXG+v EiMCs)}k2T`b6^rY/cb:7i<)lT!FvIa}XLfub#@DpH< V:1.G{7 tJ'c`)bLTGLX)w_1b߿#_(ˇ(6o RytʢkM[sqL}䂋p.‡ _bLt3BLyмE,:lX7R?,Fsz|bZZNcn8=a;%: i&oC'ZiU5結T8wlԦElcb7LF!>b:c Ng1tTM߂I&~-D Ӑ^-D{N&yb>-S0dFms6XJ}&50d-Tw/8ae>R׳KϽjQ%Úa(dsw]?F_׬un2 "m4Z]Bcbi}$›?gj&CD HB0 Q+V0Q eL Ni*w{>?qQ뉡mnwydN3〃m\դl$}uV `¥T",GEvHbϓӵZ2=HؒL A`S%Ą ^uZhf"ہELsJ )Ef'rC hF+<ƴo ~)P*Mn(W>{ip)B% ?GϔZnHBTЮ|@=T^M1vߐ |E)8RiwF q oQk;y"z~6k8,P*&㾁 -ٍ_,!J}=qW:׉3roZm|QhgJC×Zšֆyou4Hpⱅȉ%{\q#@y2x\p1stt} Qq@t6uHo -!8D@`뵂"q>wXq13ylfDŽQ<-Z q qL$_cP*6M5D3RJ.vzbVl4"h~o;ȥ|H@6*[KJ ~kkx^?T9d݆:ҙYZԺތqIdՂ4ig K1Jƣjdͻwd\dc 9Kk27ҫ1;Ydz|/,N6H akX`m o M<d6c>73 +񳆔PSzwhUmPTE{eH# 'Dp,`%&{FEQ@]_$9`jwޡCvpdNOoHp5drdG#s<0Zǫp@RXoآ5鲶ds?X@PcmTCՃt]/0J ŖyLI0{̆!z,+ ޿jtnLiR& kϋ}oȪz}(zNT/%\ +u"yFDqX;YBקA먝^rU&)l Y,6LޤE0(v9')$1 vLJ<嚃&fZeb T'͵ aŪ$6OxaA q cke~fMŚ3ZF'k8OZ(S&hIJgl9̚uGìm Ip7gE{%c ܎%˞މMT}7!}܀9[ӭԒt0 as~1c0$Zh;ཉ;4W&Pw! ?o*ith)ԣNbۑ[17Ґ{~^BATh3c:vktx҃M(hj^] Dyb<eLa2B+%pakqjv.f"cXqoRk0Z4aO+ XDf<cLǀ ?@ژpmhvcb~g6 kMtnz: ȻdY u~Ӽ4\^LE21bFo`s}|0U{LAځZbKMqGjGnlPrz%Nkʀ:MGTQ{*atkxvFsLE,A@9}-k,4fArqn 1ogNT) C 6%@;QJq$=ACuby:z@;7"$xI AHYdzҷu2Qk;q?4*Ҿ#,wϕ~:w)b)0JFI`A' vc@@wAu@kG7y4 @c!^GGAVIb{\kT؏u cJTYm6T@ nF} I}5nzxY2nBrfV-|w~ k=R %B~lZklbd> }/1V>65/.&huZFsmvU@ eY(ԊQ+3ǵ"NhL֙tssKcBp7@v& fAC$߰}.mU#G!1Wӌb*8Kǐ*J&Ym@[GZ R}jzN[a5[~MeJ \ ͬ'G?&e]o9fMy! 7f@V$4{'ryA$zUV2OXC4"x5LAai<_Om^uSĭ0"䉠LF1A_jV3C)m\Gq[& 5>WjY0%;w4w3P=؛-$ԙ; أ?c9 [˭ }eu@.ԚV{Of$)sƉyl#t:b ĒjkĞ^~K6lf.(/&1ײ,,y9s,n|y砽= am&3E?q7)d3 3>XPV-J:7'Z4g %Ƹd|;.a,HfR|؈OuYb?9[y"jqM\#_|`D9V כSG̋7ksDM mJi^i4l@S@o~=Zmh-Lqd(&>˴.3yLP>{(+j`@PL;'p.\e d n!o7OI \j80s9U5`;(448n¤Nkǀgl|AiOMgyQ_p j$%9=3Jgòo;'SG@+*Ёt~mfc O*=WA͕\Ɖ?_PEY:HێpPaP5DGYybPz>43zhMm !.I9dfmjGWg.}O n̩157@,N&u1 8`ޑ%44HlGdO||ܸu>w@'CA|B>Oe,Ąoct}G/9Nk3Cxc ; v'T\ >>*<Ӈ]ςѷh(4Q{b&(> 8הyѰ' #=2"ưXv[}GPu<4 H@͙ҰK+Bi~E1(r%WHiլ5||JI Ҟ@p!}p8"6>a;F=H zs(&[Q*6[zsV7 |4s/3qʇ` ' pV;|ӧ@6J[Jd+@,.JG4Vp N%s"r Gˍnpd‰{^<\+rvDQu\k~["cA/ɺ1z[Z p!Ko\V/@l6e1m=h >X&Di=$Rg32hl HX85d[ڤ߽5ݳqJ@QК@f4蓱#zmկ|hת6>h;.< :ς-:v 4'{GCm[*S>*`[mB@^`@Kql{V 2=q4Ͽ%[cqo;FӒ1 80Vi.g1І;<uKv^f te5dFCcb{`ػ`bfn,*jIw J{;!槚_]o0bfC&59o>q;fa|MbD#S}G1$g{IPjaH&M CL cX cZ2FG)^jV)tV^͠7!`ے'X$Lb{%spd\@9'so*fL.cKڼtM^~"MI@0XgAQ󡼮0 ykmmB`7v3y՚*O&Y3XSz,uGhL/6nᚄ8z騱gm:ZZC3X2Ŧ u2_{¶ևLi*:ro&m읾J!0!T̡eh40M2'yP4Ffv!"ġVeP3|# sGGIM -UG%WmpAkPBd7R*γФ5lfx P^RbJs k1:9qLFY:vJcԊ|>0n ^Y6s'E-Aid |RT7Dqoh\1M2YO0Ds|'VdPkCۚHsSZVvs12_)wV{XOpQe3"0M][6S&̦hX44/3%$sVOT

q4RW};Y_`oJ-xU -8O@l5-}ېb/\H2(o ;0=| īN>2U Jom6l6̛@&pZd+ǯO[{k޾Be6SU0zu".ZV1&Şd:CQ-xn8Y5xFV! nMrAizkմ]!nDq'06M-g.\Qbp&T >!ƄlSNչ?w!X#H94f­)b -P+Rɹ3=_8l ;,fk,3eùrlF+`.7ں.%X+sk},::ts&cԷcW.<3=t/lm(~1 (t։kæ 㹹EKE@'A@ fԞ IU,FEO62 t 8c c3JU!~%]K^ q*' i0@7|}Q3ipmP;L), _,(u %6 @H;t>`3OFUN4M!Wjc+PD̐4BBq46 niCμo>Fܿ|8Я"y _n;m \Ig)1_@pl1ClFlfZ >9Zzq( u]O_,EI($h R"os TM"轧/VHG2-؜M> ).+j@yFy -1%qsr=G}3:蟧 \۔9،9[ -%?`I)2OC%5yݔtw4wc2 PYW= ybܑφ1GO0F#3˭ { $bCh<YP(Wsmv'm,fKs`NGKti͐UǼ pS:MAuLkH,6X] JYCRqBK?}WȽU6}%?ܔª6AЛb x=ndžhBǰծFi gm1bʂ 8P:&2N]bȖfX qDs!)!ytp|d2G6\Gm8[CuRWܷh{XInM*=~wua^u_mذ}KVБ7wיִA{K#CІBLe3-_61uyr`)t?W oA.-*_=ܫgZTL`$FZ$3=.ZRKڋud ~;f9#`MXr?|4ݒѱm (3W^x:…d 1:w$*ivC܎}DP5v`|/?}8녒bӈ9 roukPnmk4q@6Z(|xpNY7TNȶĄ2\JA ҆9|0nr}?7KgaLt$B1Hx^KG\m| YPh)(Yp`@pa0N+>$PYN8 6cM ,L5%vJ)`ԜbR1ŵ(#Jsf14'l2Q@;vg+gt}Q*ߦbWBXxR&? p< Ն--%FyI0R e&C;Z=:跀|7+\Z L^2Ŏ_P+ ч37VЦ9j-qk |A̍!*H~e)%|` ޣA S=bN#wDZ!F|[wOPSU1Ȏ(8ێx}>i9*瓌cMokxQD/| mxq)YQZijCi8uRX2mbct(nePP/B6y`=?ҤeD;0(-8_n_Y)Ӽm'Y&_]9.bSCtT|>tumB+?_]"\L\{%uR*#;Ǒpߓ@8KqܖLaYw]H1‹g6 Qۀv ౥ ^E[ ͗o|~~c 7 (^8{By P)ؐClbrD6uNpIY'c2 CZlĉ.IFI KF|{n[{v:c)W/YU7^{d7>\o4 bD5Vq,n)ku~Yq#cxغgtW?;MRJ ydBsX:Z,:@/sW6^|OZ9l2f%0p]Nd%o8aRRiOoPZۃ87ZeX+2Bez,o+/~UȠxg "`Šoi;B0Yh6P{8r%({߷ꑙ8} e+%׀URh?=Wpdo58@6l 6Y5> ϓ:6Y=:ëWKlU܏dO^d{Y\,U\UQ z31#\kW@ ۰\l^O)/8G f_`?U;().w VIsklU?S'c6~s!Qqotc-&/U]UoǠj+N?|69 8b{[/'?A(oyO՟CĤ׫W;sC&lr "3YDdnfG?O)%z|TRB-Պ>'[Mkf<* XcЗ/aU5V rDܜgbrmF > #'ydU@8I:ӌBdcDڨ8 u*z})xG׮'q{/,Խ/?@t %7gCk\o#3c_'||Lo;r !,&f* $4-'b "6 _Q˜3^+C;+W_!(` =b&y b󫽢/ntlj?7-i".Fٶ'vI,%#z#C |~fayi7G/(JYOO%m„7'|,T6&4zJn1ygſw|m3P:vЦ Od4$/hmؓH|!llPpMi_L2F|.ŀ (!Dv{+@י!O_C<\z (c~&x[\895o$V@M7Oî?z@G@HǑ_"H4ß~`XxLo흒2 &3WaM4UNz5 UCSETLo=cM&I&LoY" 'W^mBڌf#Wim4@d6_rY#̊GtطGu 9^ p4`uBvl;2 {_jڹg_WR;KJd9[%ͦiK&k0DyG?ma67h4 39-8RYܭYş)쟞6d"[]YuF3c5J}fCiEY;^}X q!u":Qr)Q`=S [ye$MqN *zw(e`wM~_ \}!LZO`_Y>߮×w\/]u-Qn@3>`x TS{36)CY.ΞA sLUi+b?4eko_B 7_Fx^Eʼ*sO "F{,FzwZXJxuQPYl=}uL9=h{vOt~v:'䷈3׀$`HZ#ê6oE35hY);I0@յ/Nv+E:_dϞfJ'n@@^+zc\K./97&0a<Go?ECE   r3Pcf3 H`&yHvoD90 ہ 3oL-gGx@-E|RT4o"4]4M pӗ 8kGnch q*e&r yD4jq_D")nl#fV9Yg\-EN}n6 k( :2B#GlP~o%QIUs(m\G G€)Dӌ5UKfܐd 2Mᜭ-_|o8,BajDv k5%^Ȁ>7g.ǤFm.Sju݆wJy~͟cS j;7j6f*o с{:_Z G`%<畍V00 ehD ;ƦCNV\WWǿ/ dm g q`.;MB&!D}þ2 x@UQ1~K8K8=aOq J/lq _ws 1̙mCNO.0$?+=r(='n>۞b`4C Bwπo u:x?78#ql(mP bľo̳ >>?(LK^/ x4:,ax8xJiɆư#~溟JwqZ]~qaoAoK 덦G|1rΘ^ŵٵ6 |J͟P/l2nA>\ہڊ!"6EXחR}D єD~ɾgVM_(Y[j:}$ -%?34ֽGlHd01'"^1~tip*~)V}ַ,lcq{Y*1P, NW˞8X[]H|$`utS @_+W֎`l$i?L5;c jb|A?V"GZm;{l b'վ"jFpP +”$/5H+hԭkeҜc3~|='Jű%^ӆpчus/e(rx}2-iO ^CJVR" )F+ E4Ow;F]P ߎD )/!dx |v4i*AR RHLjQ_ m:-goӋXDV.=H^y`$SR1jG|lGOb)x^)k 8 )u!K)(gcc.Wc; 8'Ti9:1cpB?1gnpV rnZU+ZzQ+yoQN̟[f ڹ^R8\PJGE-,ER  `caGz.$KGG|QR"{(6 4H [1$Ca3$!% 44:)yy-ʚEoN`_ϑ`%8<}2'׵j=F-T +DJow3HFқbd9)j<K)>'{&, ܽUEc&ɪh1dz1k}p`i0 $_T+ d̵6?00O!H *|Qs6NRP<6H@Gs|rmpa`({Hν-REyu(-]7cy#8xoiG 1y>LȨc ((ݜ*nE}OH)t{oJYMR%2Y\%c>mNlDOC ypE@nB|\``w4l! A[Tfz{#dyt"b[ri2hoF nW }IJ?̀Cg2O i} D&5M',\2@0AL.VYV7'nK3VbDΗ%z㐡u>{ ͯLm#!DgV9`["ʿ6t o< :͗Jmrs육n~IX`c&LgIB1nF3ķL G60tSZ!-!ƀ_]DSv7\1ѯf۹Gw *,zO402Gf{r:GYp&wP F%E5N'ݟG{&h9nX3\ZuM@&(lQN+U-J/k>;""޾WSwLx5A7d``?:Xށ[rjy4`:/G ]@];jӎQ-KmR}@\"On{2\gB0:}7K '_c2GxK@f Lq5l4IoD Gʢgn1|P"=|N /8mfyy! Cݱ(hJV+G"+7Rbj@ 10h|mbDAx@ {D[p8RVCޡ^ m,!Q 6c,|:QrA9/Now@<>?WkGh>@L{:>48\McQl <Ŝ P8ru<D[^Zhy>%^/Ho-JyuVx/ v9p}g*WJl4N q-A> ? gdx۾C;` 52n%`=x3{ nt~2AnɊUv'[6fT%ơR# Q63ʾQkuֱR "|3WzW}WCh ̽^B|zzSac Fwx0 o;{mEIF!җ\[̓uyQlB`l՜c{b/LFUZ<Sb % }eN!!\]1-p dE[Dy"O1„(Ef£֜*X苧R i隢j[L/g{i(k& u"ʽf߯BX;o |5D˴7&%&dy71^C4&,6l&:K%ჱ94r2C[XPK6` XIbb>pj+:δ1 b9RM/cHH gZlJ9bM~pP)Ota[bouM%*>ѽc;FcW-`?\侁i56ƒpx$%-zD/b{$5LG𯰅x*/YY YoAal&iux5?w:Yr(Ș_Rm>S&BlRj=`onrQL -X` pg[} #>8x硍Q ,ZIVLf$jrE5 }T󯘉s6A^FW^_m2niGFLBLh N45&EV:bMu V^I*<<⪝4Hm![NaS*i_4 )Ô 8}b_X5 ŹMJ1i0=nc#A2 Σ}/U2.=\PBׯ&dpkM[cˌ SCeV8)DyM&6X=!FQ};zkh2#h5( Y&l(iLt LFA!cN.,b4\ \h:ҧg :ron_;_1陣 !!n LRD,Uo@EujF N9DZ'/F)%B 3mm8xlۚ*T_UW8øTms- h Y~;6/x=_hT/3ͬͦ#2jh*4:!6M}8g>.墄{*ib۞煫6|] gABE=$vC)q z=< c4(:=L&Tm(yfU ^W_(eՎy]pl;JsAf1 8_'8GA>?HAP`fӎUy^95_@p1ޣ%h;ϓQb 4dT}gF׽ #9̉d)ue&1#$oUp[ɦ̤zȴKL@ r' ?Nv4K牞Oc¥sbs!!98v3W@1GKZ]1@S/*X,~qPVsCAؔd!*f6yS;u a=S@uUZ!.RMkEWJm7l~u`'fr[k=Ճy9b:A%K(^T{֏Iޛ޾vaIPcp*DІcpPr.d>4gs*}P?Z0njz]<.RzE4jCHp1ZǖV3gvc\p(vϚx 7Ք/,a bXz@p3}o@A9Y;b0=Ȗ {ľ) v>9[Ws*|zfVny7Y,v_wO'J5N-c@K0O9JC\J@sWw ˬhSupMvZ"@υgv؈rC4lD2ɌN*Vg݌R9w}|߃!31x['H"QQ{!~V6Кizicz"ڡ29褼΍aj87-0 xo΢cj1ߗ}Y?ń18K㻊֝N<+K8P[NjMxo4^{ԃ[~Ǻ֋qAqn$U-"k 7V[#KϘ>2|aoH{@k':y "UQjCIO"M`[)j][.Ig;>ƧQŹygx^(m(EжoPK+a^Oy4Ѝ+')1x#e~?spTť[ <齓At0b U2sP'S)$xP8:o;| ;sO y"hAΨR)3TIb"cڐ/<t[ i^ZFg5L̥)r}_oհLE9 +R U]̓8]U0@ !$ZV2@v֞s{,Oؙ67kwY# fbSCIA}$1zL<tKbW c |cC)b֥a ecZJ=OndMkk8!:3b@, 8wܒarwǜ*,` y1@uK6 t[̬aɱ@)AvnNb0)T@щcb)`ɖwT%iڧ"֠]A 6_S@^I90<ʔMaK=[H)Y=)PP c<F&٦YPBF7AĐLvarbg, q'L-4F'hE*tƋm܄ H<C\79юָtn"FOuV"$q]*}6L-DQm?\)Tv&=R ]8r P ~ _fK7Gd C)[lY@Fg>H#ϊ*dCҎZ.\『 24Cr58>> q;iiooOp^/ϯ'Z)hm">us2fS6f|8#x|Pq$*eRה lr{8/wӆFph#m r>RBud\Isy oe֕~^hxl^ QZ5Y?k +^!1 ׉)kV ۛK \Qqؿ/^oz*lP)-Y ѼOx=XV> {bAwb\|(leDr3gR4X[fzv3ƚ0zD#9Όy}Ķr1.SxMЯy)g|$! ۖ,\m:={Sl,I6غ.ma'9sQۧ9vχٞ֌ƯqK}k}NׂM X|8!"h¤b}gPyBm[ Г *FLc (oi1m&$ADjǨ"9O0-k up300NEw jp[f)u2ZΐYe %8kfqLXrE{(>>?QJa:|.`hZz8p8+dE;lRܜƔgr46) x7+b9{n]+B8e0*u`qoWaU!D^/Y}&fMXf4X/ځROi~n=a?wv_ác}[zaCǦM8*ZSEl@k 牴m1Ԃ^'ઌnc-rT.8{cת5^O0\;L#qd%_4@[dsrx[%N(EUxo'g P&LFg̾nN ب;!@XZ/6Їu5̬lZ <w Bq4xJE6׉mK8Od6;ǀp]FLᒃt=>pՂ~25M[J޿#EcIP!cg7dNxOi+'r?҇b_/&W>Q|Qnf1:mxN=@(q?<_8"I1/\wT(T]MN TkFT }8-Զ1)3#SzsGq Nlk6je;^I)2J?)AUΩB{5HJ2P(#4UE DKewA>AhW෍bhgOpx0d@MX¡'+f{!< !!!%ĶUP+?uZy>,&ЁcKȵo| T)ueSP$}ىGf.yxuv-`8q#yFVmZ I)mߟ'."EbG-d {LWNCy`٩BdsPkiCѦ3Dv_toCSp^} hXGklN<bB=>׎}GyAgB+q^'zax1lz#$rS:/BR0\_ }5MP_qNCl#L,OѴθ϶a󶧽Q]}A2 0)zͺ5MĚy/|ux 8jÌZu}7(QxVk~7klI o3(N}S J)3 0)ن'?ia}Ƙ.F 8 `lrBYf=tdg-[6fs,`I!JXZr%S {֏b\ VtLVo{cBKa pgCo5>A@mNsfZJ.=t! 8EI龜 ~`%4Q1,aMV.f,Q=QS}n!b`O~1}=PjE!JO⢗O١%2ϘTG'd0 (}ޟ̥U;f/ߺSOT3|nzqk љ#6Ur!ͻ aV tL;sKo1dW`pJ'F SW"Kr9C$1ed7h6iӹ-f^}M&9umn]˩ņZ̯,tDV5C1wEe)#E-~"[#9{Hǝ9,;hæ颔[(@ I=PWe;r%hyWy^WF#;"Ʃ#K;Wl@h.3M}v=v66Fp2$C ˤզS;c@m W 9c XԫZzl^gd,s;#XK U}(_/mrՆTMWMUqYsiW༬Z+-׉;ZZ11V78GfHph]yȹ-yG <j}t3Jlߩ]SDHž7 zA;W%'6% ق3Gp# [1l{&ցitUw !2ٶ\dlbHƢ#F: q@HyzfAG^H!d ǖ@aȖ"*7'@kG d/`4Y1xd_)%!yǠN qa Z'` 14yWqmՁ ĤRU*rm~V DqX\RnÈsTd=`N >D *ig2*|]vmuCHq=,{f;'`эuJ\5 έtXl[ ~'h0#9xB.{,m|KLt9,1 Ƹz3`cc ژ`k,IX~pk'1mXbLo?bvj?1Lm*[ Nֻޠ\ v.3=c|W,rޛ6>)L^2" R6RȩE1g0:F)Za(*Aɦ1ڛic)2;LzVdIO3ap1_a,ߗi-h5]K0CyFoOpҤIOwpطd) 8@X6iꧩڒ&LG_b-w2j[ s Nz?ΝLucIt0m~6m4hcƶR hj|fX3,M;Y6:wմ#*N+n X? D1@pSuJ{ܑ5udh ;tJxN\94 k*wJq& :v{ǖ@iޒ,?v!I^TǾXbNa3hp6R*u-{jۣ<^00څ_PPF Y`>j->2mKlF6tN7:  J!O9q(=xi65arjd J (+d)4+690:mR1!q 1D\PKEqXla 8ox;RH5DL qB69ž<=Q<iuV8 ]}߹8|@N_/]@cGHdžZ S8QIs@+镓RB'6ױ;>u @yDk~cWoUuAi}'LYP ȟ٠_7zl 9<jjE-g@jM;+Zkd@+5!5 f f2-%2:}&NzdZ ݴ$y.ɨ`yf2.= ebSK〆<Ҷa 8}Bc$J "=R>K;l^Ӽ QĖ6%^/=caߐ`ik9/Sy4ix abdsLp $RQ&ͺT1_kavUP1M[,gexm!э5,@u _t~W"q?Jk"$ b1!!A/3Zj 0}sAʅnaDS(/`@Gr[Bv2_1lϘ ݦK!4&6GM( !fj !nLbPo[r* dAwbjB$ h7%@!27n|jTiϜ9' ۿ`rF>)Z?Q卩vs}y8Ή}Zf\&=j1v0X~4"%-2 rza&D!ςp5J`oNܽ89uЛ52Ӧw}WkΔ̚۾Syl(V+; };ko(}JhWEӃ sUF Z(9fAnml?S31*BW 0FXGP f|=Bw ]vHSx8=۠WyV2=EǑDi|֣Iѣ">>v$o@/酽lW2"[UԘҎaE~$u&zEJ78 OLX=Hk9_sطm۶$68ԹY9 " /KȰhV/bs62ꔾB:(DZr(A*meÔ΂ .$^"9FQ49m0㶄-pӬF$*w͸6i=ZȝQW0,B1S'Ul؎ve2(]s%Ց Rb@:Od$8> ;q3ޑL}I'vW{:/'WyU|=Гˋ4'\8jd- 1Z#zo;} gMojd_rbw=~/m/S 0*|#αZsAgzJ-yPou{ ,S瞀ZƆ٦rz3N\s>9N_AZU+[O<0zgHmkԌ @ZWƕiy! ?N]yO6J(3J-nN)|/ᘬ7@^?7^] d3% =VڷtolB<:L 5{K^erٙ*ODPm-SJl&Oj'##\d mԬb⳩|u6tDu,FI8Js<8"AbZLC5tݞI6e-{``s!*"M;= ~J3ӋS G=u;}IyqaeiF=&9oSZvNBD6oS|1Cj/B N`)ī N6H䜇 N4=3d܋M/@rc5uo L> 5sB6s/. {n. ;/~ɤ'myy8enb}Ȱdw:k({:4_tO19AxXo -5hKے΍NŔ~6Pa-](&3Ig$kh6 ޢK`%uZJҘE}!1|Y^pdIgxF RB d-@Q,U[J*9[/^bS {E 4F}>/2:/ĘXh @,)R Ǟ@'%=Dh.62hd=ʦ@UށvCű1bWQn[[EM3%yT@;0WlC %80qcO'9?(A;F-ci3*==![k84'!4=R6(ҿ8FGpWɔ iOx<9Zx|;.F׀za NCIӔ\0%8>>i-d}Yo앻b Z"^hwHgx:M06UMt`7-+v+piJIE :DFLJsH r% W3&EHۆ1V*pk8/z(q0f9x8ĴD0:3]k9bS ض3E,yŀA#c%#y<= Mŏmul#%@Gndg6Ps E-%s8s^)DO\ 'a=Rj#,NX]3Eo4aҼl3Gmj*!L鍲$YFѼ#gzg"5,Qe= ~@1lìo&朶3? a_1`h&pgy`tab33 ؿ Yu sBtmL#h;i7ULNa '@))x>c dAGoGSv5 5Sŀ=1'ggu]pћܨcKǾNI[86Z7<0p慳ozp }\>o !h@n56-mC`kikc_-@Afda@o[)X[*R}y ,ޙKLz^A(7?-ic2bO(r-Yeq j;3z9/VhI 6`gH7Y]S,v5{h2c͏؟0|彟Z=k ^7domiy@PL1p?в9w~ŧ7?xcõь6C<(9U CEX 3x  p|HĢDӯlaJHv0aƮ4fP(J>-W_O=JB3'W1 8@JZ: ̢I DzfeݓK;D'#58X,fWbt 2B&bܤǚx/J¦6m6sN)JYPż9LO;UBϬ6p]i53MA'(bΜ&AXDO7/&kmko=7t'qY"u|.*\cA-sV+vH ʭb d.>kq`OȨSuŎ$9g 2=f:_XN6f?[5wٜCd6 |DL;!?UxUZE@ul眎yƦTa-Ť Sr-ȕLȵqr+cV;M0/U-7l)_ u(: 19q}=Z;y0t`?4dž1*j~7 | 6Gxor:%yj=q (kȽ!l 1%3vZaOYAbQ^O6hmh{Д2W-hN9c:/daFu6+'P J2 J.|Ü,yA!DcK(Jx~G*Zf\ ί$[*KcVց{>z]j章uO4ӿ\ՆIuv7cD<3zUׅ3E9@P2r} ׎9e">Ё<녜/ƼCP 0 jռ/Sе 2''b%+p zkbDAs;z1.\&Zq2FFLή@<Ҏ&@ Q+jh:y!^v'؝(}(ƜҨհЁ6  +Zli锋yv9۶?,jq3iz^6c3NNrc3FI ^!5yCIМ"zNy _߿cK>W2l{xD"z"Zox^xI躝a*A-AXm덙}uy= ϜB.1vnbszV\ 72 1RJi%t݀>cSi)m1bq3=}àfy7qg^ @aX59XYV'$bRLS4`gQ>j@7ˬXNҝ $ znYZOdh!dXqyZ3V8Hz9E}ݛ̬sʖ"=%+$n4[ ҾOs'z'7<-2) O:՗ځ#Fطmc 2;-!\<_de{|^FmuEJ ~NbjCQKsߋn1ުw`kM P9z{Nx`Y8Vڰ }³o 10 ^vwTլ_s)2ck L23zc܉W8 {tW)ݍEׅV ,|7 MNUuKӫp?*}t-)Qm 7,~b\Z3j@VMYb0[@m,iF\ L;BJeI}.=0GlGg0$z5!獥5PX NWw^;miңarswnB4<15LVdqͿ66b$jkK7iwZg ~cLm>VL3#-Ylo4 ]1hQUԌ@$G :^ aztK7v:ݓxψ .0xGSIc 27u94%4I{4 ݛ3M&~'N7v1o7>4ƴB+p$fLuy8 oD!F>wx1jdL6:c:~J2jA̓^f>9Ţ9;L/SZPz݊@z(vV+hM-f:8e@ͤ\ZsK1YڞG>R;!2֑;=ȮvF#o<))&a}xbFGm7N҆3BAj<#ҰTD:D1}@L`A9 ެK E9" \9>l)ֆu I -g8~dl='U{E:48+U;ⶡuN%=9\l½Nlۆ|-Ŷ?"w9lID(L V=k>f<_[n kYwmQ{ނYlu/:J- `bRKDm2: ԚT81lA?YT, >_'Rt S}{mpRe(CqpΌ:Ԃ0vim7~ޏ\:JXS<#t(Ou {{A¶'D}gJjm RpBطd{r461}qv&-bJ0/`΂ !DQު蹈r׳uï;k;G}3d\~ju^m#1aT'o5~&krPg}cM!P CF,-=Zq77Id0@% wzH=q쨥~GxluTAPC/﫜$>oLbͤn{#Z C@5 2g MF۔9͒iަo}c>cu9%zX^*Y,m5ń[0zj[SZz9 jN5@)C)LD-%[c 6 }$CC0uh(A&Q#:tlFLzK/ v@.zg =L.ɫ8!ǀSDaShAƝ"*82* >҄Ռ; ĕ3waŸ2!:ʜ$ ` *<>>Lj: V4UF_:1 6^_cXȃ2ϝre1iأC2cz#8ä^j~. W8/ _wQm?}->|؁~!z3ax3I+J.P7SBXPJ x ;±)4;qL B2Rz+@o %J7(UGgkA\Dn v1kA[T.--sT >b5(t`jS}Z3PСւ)ɮab`?e&L]@bDJkBXFUR^k `](}O-8 #bHGǁ8sFѩD6h a50bpZ+ 0xb"̆:k>fZsa8s̱:pS{3/U] ̦&{1pY46{"d4oXM }+pPz]tD"& i5Ob]Qu`1FASXuWWȔMυ1Y Xiգz -j/+MdV=wlq'}bՈlxJ׋R NVl1`e2ۍ}fH+=ހyAL%&=ך<͞}*d@h=3iR᨟^vm[CI&O=!-mR2Wz'&a@fRb=_ Ɔ kJf4|O婢, mw3;4br 挵JpH ̰edOcm-[V2qq&*/\pI2XHO 0|EVqχrao SĀLُC@ˊ&r 'gQ}F7Tg? zY$~NZf6{aQG7G%C5t<ީ22vjcH3}qoc9dWgpvxӪbLRU`nEk45 iJNbYzLޚ*>[<8t&{ HxQpqaBrkSWK9s ]l0O&Ɂ5rGE;7fǜV̍Cu={FI`OX=PUSS0Mp馷n\;r%[ wD.b qddDdSNqjl5Z) 8otpL\'Y肥be f@|^&3oz5(u -$˳|ToK&t8~۾ic#$<~|4*ɹb`~&|!cbjG9Q;Sj'# 'c(q)(`"Zi&^\U\ ; pƤ49$BJ+Wt 1r:mxʴ+zΊvP U\#f@ӟׁ(@1*U?1d1 s@-eֳ".L'w\|"zj=_'ȜC W2S[{l҇J|#<Z8?2^׋@Sɋc`2'F>ё2* 3 .ǯD"PT!ʅA|< CQ{d#u؊qc!5Σ뺘pweYr#J@+l$~4J˙Qsa'd(su矿cysxQJeRbru~l\Ny.9^Ʉӣ:H~ xgl-wPE. ʫW* 6{V9aR|XhIu4QV}lDmdVL;q~b{mGIDAT֬;c30PA4kiZ_لN&µBΘP{XZGn m(RAƬCJcE  h}Hm3 M:ίC!7bSk1IǞ(ȵ\%j@( mۑv8i~}B8K;C*ozK>kk) = 炜3R8-@|YP A3WN<b:!N" ~X]ǖVXd4M`bAI-͚d5Vsom|MYA3`?ka^GjkVf=B~z~L ka5~m/>;Hg޵E?-l͏ߟ {41?V 7Iݣɴ 3wד64cy}">@OC:}LBV4< pKzE.!`n\ז6ȋ}Rx~Tb\ 4NMѼqy\Y9>8֠`ġ|,ށf1C i*{Z.@+ m4;H k&Z4 gV6SFEtZy9h$ l@F<z6I,`n Y3cRfbQvBfܦoppRfm&P!n/7"=ƺǓc]{I`38;xeT S~DP3o6X^#C&՘YD%MϜ6rɘ:,u=`ŒDt]YP.D :ウRܞ^s ΐmz;\LA^1B@)۶[XzSi} | ٛM f!ޓj(Ŕu{!(L ޛd:~ !%h> PЇ;%olǰay kc# a81Fhh53Ma Tcw@L61Ba;_$N\d Ҿ!_ \ ldMOÑP䃇/\ " A|}x ]Ҹso_H!8vxcqxh#kASB'Z-6{&kuzϤ4)"ח'x.\#C?7ׅ+gVP'6'(:C)Z B! =I$S4p;pPsz ɈK EUP[pwuG`OߡC^ăMB6ޥgsdmq '-%4 &!k R_udޜ/ĸ!WRpdCQx}*d+>ɰX>|$Pm^>x4K2w 8xDgTC@ ='*pMX]8C@kFD¾o x Qj/ d"N\$*e] YFcij5hAtR Ȗ6ze!k@h{B IP3~ou3\2@ϔ>҆ 9e W)4|yAŌ+҆o0LƢG -`>jy2L۾cƚC`l@] xV1RNhR,A- eZvDbc~R T'@kPGVX۬+bJha6&$[P, ki5^A9YWw\uVEtc/_s+)̚"j5)C" (>%,Zކ!ۓ )%5c&*7 ?7?g~-J <'~"Hȕ3Fg?Juv!ddA9h1GLCR|P-2W<QKFs;)^/rdk#߯PZC!cj.x<@ӆ\XK1X (Ƹ%UT}X_忨'pub},yyrr'OATx7VoϏ*e{ۆ7Ue3Pi4lX mub_]* كtK#l~vg#(v_n0PWEg98<"Bk>&MqOG_@fJ`ű뎡H).Z0 ڐbzn)B`D^kJmٳp{]fkA׍qc:k"["lLkc4zg7VOx[L!x.Z(X[:Cl-Z f?>p̨.Ԝq] 'c|a !DoMH xjaTxs|R"퓬NZѹ&6hW$/7€qdM!O(/sׅ*jS1!ń6CBf= %:΋y%_':ZiuMQKESzBzaN^k N֎٨mCׁ\*`*x~ ZSl;ϣZ;jStu(8ό[9"x$!;{Cut#EA #p9 !oihy< )2%5d <}m dn;8wzkpC:bggmpm[g̨qڀZ{Z#dlfbƀ%$1@} htl&'= u~alU::K r03q04WhT;՘ LM4ÞLnU4{?}TbJ)A~LC H2$%*fn;An^P<NUljCk.$ۖfq+D \2'z˄eY\߿`)U Jμ@%c<_ qdF>:6h\fTϤ[ʵ)"m46L۶?k#&xN\ȹT RbjfU5]U 0Zz'K5opB6V dM摃 gSa|388:/xFO:d/Gi}3@\(][Cd~ZWxOC{@P^'S-q '<ǶÁY˴b`7?A00|^"5J+;jk `RORGLNۏDޡPOcp4 x|8xl|lsxi[ Hogb d|]rxOyP:Vi:_ $lS 9RWac t$2dkD=R"8;}Wo=ڋ|wțO|kv<> |bw\Ё|~h*w6Iub>r+=.vƨ dsB"}M$1B}KZeQ'`4ȦkL ˜Tk"/\$cMJ3Rmw\>xo^.cs\ܤGQAH!Mh 鍑75DNAWJˢ|N}Y;CҎih$=n;Dޮ[1`)X!tXl\q4x 1GD8ȀӀaϰN+Px)'N6½yNvaM1Ps lKT,!n/~ZH=0r敱@ZR fۚ2_eٳCwF_'aNq&5}9e߰I'vj`bdғ ɘyBA/&* 'ێSjP5ٯPb] k4A@GEӦ=+וZrE[ݤ6OCbTb `$u_#*>w' +E{L06o!wOS\(Z|:Op^+ ,9%! D2GyO0M 1bT=<-Ǟ<>?>L.cڑLq93_mØC 3+Q{L<E8?hm(w JB=[oKaϘת9M M !I t%rBF|#07cjc08 I=gUU63\9^{Ys$:e{ՀGi2mCj-h#M}.l)"7ptߑ77ۆ_/ĐC@~h{"}}pѣ Q*@^Pj8 ;q(gGx<#ǠoS[泬@AF =!vAW8ɰU!m–oU &e;L 1 8珆kp#ET}@>1lSH)ZаpmLo![}C& Q6 :T+,c']+y.,=҂c8.*^ rbi!Efsm8&#\!f:X28a ze|g_`qϕ ϔ{\-Aˤj| 8%˧E-fssQ{q8+%q>djub o/o3@ow+))x$ `a doL2tǁ9oJTќ r pvl&3'?9 !Z+RqCзuvlےxJu&r9g|z̐RC,0YwГã.j<3`Wk M2%Es@`_屆~L!d$Z d4׽r+PrN,{"NIdoUġ " [agy"5Cor=*jifLHn9"}ط|tkSVxM P왲򖘦;'F;ZE?ɢj㠇U1^.bo{:,N^Pc ͼ/_1~# bSM۩"*wd/;3{Zك!اn#zncPgέdz5Moi5'x5sq{x\1_tګAvyCJp{TVXJZ[+ŀ iwx'g*Es@L>''3}u{`PdNZɴYr˨~znTb4H h7 6϶d+V <'+5dZXwx0 aʌ;X1Ι}Ҕ2ߔvSUè}ĬE7aXi6sV(d9y_N@# VVLɩ.&b>&/P3ԬX,I׋bCի`&:D0Z5bJrʬԅrbJuLYTaFl r&iT:&Ax }i\{VN6"PG4A,)f۟uX9OP4KQS3=z8yWL H[ $umdQR/i@F xm&0.`nJ\?#쁢yW+T V :^\( v1mD~a1#NݻGl6DGmذֆaT*ObR j'G~(Τ.mM|^kyX 1G@IHy3OAH]zԄXzdY Ai)f$a󚓩|B"zXrʵ-y\WhzV=k|p ~@|@4v0ѕ,eX$z)pCQ'b y0mP`?*W%cs}9<G_AP 2f6ZQRC[q3*EooKZu82"jW\g뀋jp",|wU=.gY|ig"bp&L(n pp=OǸ/_Dxl|4Ir+Qw =P.Dy]y]8=z)eW|nh8hWliXge MKWuu| RzL=4XJ6OdՁvz|7!*(#}u@ CCyWlJەu +&?6BL4hw@ _!S*L(^*z³_GZ0)g[o;iC,_cTAj.VF^ ԎYit~j+߷wcCـ0=LkkLerX ZЋTɀa7P/2[+go@p+n+48!W@EEk C É"m9E3VĴ EorvۍKFK/1TZOdd8fc똦 9ct߰m;eIzZ} +cp󺐷,iŐ_51%$3@g&ZjWDRaܼ l" ˭ىXe@fJdAyjb-)Os 4'v)fً2M y Luvªv\ `Q2?A2Befx낏\(CL%pyGy&c ܶ qՁqqiaEdJ:fFsWeE~K^|Om@r8|]5\pq`odX7d|`E|DidaҞfM@Cէڑfc-Y%+lw^yW/u\M2)GoS5l8ftM0gF AyH :5ΘBFhWP$Srm (%Df^Cgkv0oRiBC8Z*}ϣL1@rcӜ7*\= .Ju_&!~UmCL*j@׎"+ΣR]-Ee\;1Z3qyKY;-A9땃!FFf>쓧2/RB%G5MT_`Yጔ$]aɏ PH`o'dx5˰3/GhTN)E3=pb7MD5aOohhRpX'/yxQ!@ܤ 0 |m+Ix[L|L ݧJeVͿCa Mfq$6D֤6tBF)wL-A\IǍHll/?=puMʛ cĿZ+j8sRk*KZ{O==)BZu b(ʔ:Œ CTel5JFvڦU9802|t5'g Val|Dp۞Jaavf@zxY+; 0AzU<>I`45G;P{ ǀ-g8ImG#b$\'r (׉{YM;B@iv+D7\ d@YY ;g ۖ1W^WA3v=Mޟ'ib͗19idׅ9V)v@rfPdƎ){ ESLΗRxx6&D1J<޿` L60zc8gx?;|"s `D3pWc(&nРuXoV'켨"K!y-#o^޹UxN)hL@t9j'1)%p% wO&kQ`r׊Lo,vZ}08x'SZ 4>d#g&gƀmۀtc'@iVdp{cI+QFG9OD,rPz5N1:NhL+Y:aɌ`B_,p#ei~M[Fi 9'Y:ՔuqւjdJyjh2_˴0 usOc Y-笧)bʕSjVY7ZYo}ֹ՚y`='ǣ8+T(ecphزöy3gc?*jQЇC1J{tP [ a`@2Joc6$o)<5; rMPJU;< WQ}Sˑ)yxUJyo [ eM{!MVU=ͱ~Os3_cj]ž}g !{{P% sJ W+RJ_8#ubµ qZd3xm~ؓ$[? /Ҵ6y1ȲeliGLs53!ؿ|FKq1R䵽}i"Yp1J)- s"2"{oczZ#LrΘםX c]ͽ-8H!?R*/US//?a?E Եa6xB5;_7]ӊFPk'Zjtzl6k-[gh9><4Ś١@Q5dsҕm;2RV*s.V|T ;aǎ,k3k&sP8cPI:ZSo#unS'?WU%n`۶anSuwsCٰ!ֆ-oX!8, S2`T(#S@Q< )3]M/!JPH p/N`C{7ɣ!0_Ey=Dο<#O {-N` ^:fÏo-.*^?Ce"g`&Ἶ1f=2\`Z3 Uؙ.ׅ}mj!MVZ5N3.\'&Һ5Τv*=x9!o(PlA]qQ~wIbR<،M~pm;y07^88z}10DQW-_8O$c芷ێR ݦvww4Ut 3F1l#PV8FGD۾CZ{>Jmd* m<RDݘ*/gJOB^_ksPρ9췌joCq]2 PQ 䜑BU\2Vۆ!A:ςmqpc;z0Ȕ=뷄Us4 6VR= #qybq=Y4 џhR:ʿU1~UQ*`^73z?3Bf8kΆg2t< i2/dxE6=l)` |W$KjkƧĐ߫V#7mzV8oQ繶F7̃i^I=)pˬ[)h"nXܽy~Xӷٽcp^=Cάj_J }Ox a8OO [fKT1X뺞t H ҆v?/F=e![b۽F7ך;K_.L[~EIeF790TcZoҬy.Z}d>}e:— l~.cHM52ސrspmN>:x""|@@pb֮d~ҳcBf=b9!azHaJabY^^cہ,>5t0E ޞdc0+p!`gBK] .F{߶Ak֟χy=S7UqP.PcTz)65enm"uMKFtF 6>}2VINdazT;a`8du4@k1+6F!$ -o2B$ZC.V 0H'xvzM@<gCN_g p)(pp zmTN}u4?d@ HR3d~ y%8 OP~I>N-xY@ SO?4g/Xup΍4o}5zsٿ.dф&|I(nk4!2< {6 a~E&UHxَaMG:U/q}6_sS%8֍ٰCYHDmuzU J9*QEcL3WFUgDq6>hr|=0b:4<<e2cFa `"r<r&xE8T2vF:D4(h]QGw7tq8m7үBm>+bYP@Mۛ%ɺq*HӢGPOҠ+g5N=^.IޑC `<ǘ<*jU+J{}}:2-Cm2v C،9vW>$q<,b@Ei9U 7kWi8vaCdQm}!L?o!{SIEH&y%:J\+㉯':F1_R*D8u} a'JȻ>Ccߔ~tE:Tz4\vvKHv]Юcm!8A|,ڻ5<d1@&]$AOkt,t8(1U7|H^SNw@fTS:86:>ߐsZ@j"rHd0VLl3̳\\?ضS-E|We ChԁlLshf0~1wh E yfnq"uVj-} ::ArvKtvy%ir2](5Wb* OV1a/Kf<`M<4L1/M=V{m#jQ29؀q8~dp}_< dƀpx';KY:D{ 8.q!E6_1:Rd%UDߎo 1rd茟1U-W%Ӗp յ1ͫr8]SHk+a쵀%;Xu3[Cx)&J$^[a>UdebWeO@@a,^}9>^5z%UN]AġO s7jtdLL-38(cwۏ*:E"I'}`wqZ]3v:>Zfn 1YHY{>j<V7DZk=wU5'!G_"Ҍ匩=Xf7/dR"F]'kzycK`j~RM}0 xcZ.GR:7Mv;H4Ha̼RmJf4_2C{GÂ_l5P>Ы5^T.3s2sDgbkIL2]֘`idI H9a` ou fn:X8CJ: Y &9Hp>78T,4& Xf''ڪp4|K{.Aj4@bJ`nn\Ê%jkZ3 McoЅGa13 gOfd?ץKX_N=89tBjfL6r#h{X2:R Qɔim@CpzUxW:?'')9g鰚^Lk\DLP \o*߻8]1j/=%yVLǸ;fJGWn $vуȚC8Qi7ߠ9aEA'2eD-Ru(G[Լ0Ϗ3;|$Q;>G3N7<"j)xHL儳G} [6+dOQyU tjh,8p0N;zkx g'@yBdx(RxQWUzfcK:)&@!x\!> p] t[ D8ɻ6yu'eĘ/yu3蕒~Ubp :&q9к"XT> 8\mЈ%! o$F DzPJmC3`ԉSbA,ka3A=C7"68-@µ Ț>dO#\ &!ǀ!&Iڔ18J¤5|ʨ|>PpGE46H 8 aȎw<6iE4̊+2[BѾ֯3މ_ gU;C~H[G^9#O{PQ-aO2i`o'T}HCEp ~))ropUzQo rb/ wȁRpjų@δ9TUԉ$k5zg0EqdMKiR>Rr;ҥRwq\WfYqjiQ|Jƪuf3k!9aXny4ub :=bfMֹ52~?E (W6( `6PZG Un-X'N2BpƤ1dhG #VZC5=WD7c0j8+ً0q-GlCcK;o1`oVۙu2l=T82){4'wX b(7l[Vz?ѰpY9z.'zoT,0aVȳ'({ mi||=W:Kߒ'[M<{Z=kC4|yyh+aYܨ*`:_`zv)- l)3Q΋n獃71@fC(wQ*&iߺȼCYX!?AN(ZZl$웼1SJk`Ӵ᝱J&˜K,@хUCM_!9ѰqB gM9 =je`]i_=nP[Tk9Z>{-Mǃ=2Wg^L*D" mq|%"\܌iM1aB=;e2+wAHB/b N ivvl2mL$3pE&NԟjgBL)Z=U; ,V34:,N^&3eJCBف}8 u}pzQ BGC@jE]f 1/B 1)ؔo:K¦h n;WWLF:J%BhdW(o ^,yxl8Mv cd,pMB‴Gl 8KA"\N1zGRRtf` <s192{A©hx)v3w>ҿ)Z.Aeq^y~(y\&Rr!4%LZRQ;LUr|}ʴV/u!ohׅjy:`)cm: SDs<<\R@tϫC G#8yv <)e[S}("2SPV}YoL+rʈ6C} bfϪP7db&|mpX`٘bEzibU xtc)̟VsRf=PZY+ z" ӌGCi V%owA&|t1H{k8 y)Y<#x6WQe70!:qG Gmxvu x_ m7Hxp&vvBC VYhpu3 CW|k(d D)+osp5 :Kq SR(1a s+ [XfXA!e@vфՎ6jB- BaM ?q^_LUP€0 r!Aczuy#2A0ޟϟg !Xal9_E3^!8 @ZPkU5)b 9 /y׆oy@0vN4fk^4S^RKc1YYM7X@97b;F1[} :,ج+8zWG3uy%mczXѳLa.t\ +^ 5К_M@=YsBkrWaBx&}ZX15_:ZX ~~C{tz|sd0ct, uuN_ qá7gPA_yG-!o u<gC+[)'| 9{Q/k[Ʒik9xDǴЙ{Tpn2{5iXezNa^TpLBl0K@wf0o1ͼD,Ά~ }W˗z^8AS>=G٫8y/\a^iSblHR1x"Fo;wxYSezͳd~ˆ%0]OEa{X+/}`y\!ޣJxQ1!CYo^Tfa l@(da7={/5<@z3:FfG`}bn6 Ũ=)(GJ\.S>SzFi5@w@Υŏt2zW1*;%DF5(z`b`@39a~8g03m(!"Ze^X9Hc@'=Qw?<Z[[A4iwJ+x1D1Y|:D]X wN)훆69iF: LXTdcM3Ea&(`X̀yƿJ &S(s6ڥCח'7_ C@kEՎ1ߢsXiMp2j|L>)nRh|^| ̿Z߆ ïs W~ɪt\X8G`7w?mTk+:zQEX9P'\qrPoiD\dJY:&LF@- g05j>pRb +U< C<Ԇ@o3 Nģ[ #vpVAw  #&Rp u<~'z 93mmCzG O9J<8N[&*Y}׊d )z@d@)Hrq)03ݭ: c 1xljmˈS i#[@612:=78yј<Y^eY9u-#urC+Z_Wi 4:4lT:^iԚhE!]B{AJi[N,.T0TP;TKoRwdL ):N4 䍩{~=1jEyD;.S>B`Qb?'Fö[2h«2eOqnԡЧcN\ky8z.q %MM~]&\JkB9u]@Rߒ hl^ ,A2EG4im~ !K-R(pG0؅lқĉ3|zOiL*` Z%Qķ>j)temm&1qUpEl6[)&77gՓ$ɣ9e *75Mi߮ 8?|YOy7jlUCj)4I}tsMaLd gu5@cɫ#LVb`+(#ca{qT\GvVɂ)n myh,TwIk#Yq^l|u09Eb0.u|Je2Ӎ)gp WZ>ߑk3DƇ!d >ƻ6{])zbB}C翛2WiXk=j)g){R M&GzoCzy]-QwG>m.د}l.]\*`༳#=AH( H)Zi)݆2)g3"_ \TF?ؽ2:\B ho<WOۿXe%$[L#cLa>*6DR.Mra}t0U8:q Z / 쩆eU3EVbB WG$*:_5(7% V鯈MBVXkQ3`{1*'0ٽ+`!~jTmZL0 >i hO;6n5$7ZMNpNMY8V&Dh& UĜb;)xRpR;KL`w‚Y",90o04Dcjk}q$@(q B^^AXg*d62 ִF@3-|umkk#}m3fSKn<nz)>uL-vnrέk8n=_zdh zJ|CH(~1q4st'"ؽHe%'71L:G @JH(:V('zCXZj9.N;&8wWdnAUãuUh0_pւ=RЛ@p!QZy2ݨZ pط\x*/_hҳ=Bb:UNԤas o·|px<`!U6[f|wH!Z!x姷 "GǃFA-ʩ53 zDrqT+!yHC>-e`8+*n9Q<M] L00Ϩ&_NOѕq12 X pYOijطJ<:p^^0>a)匼d Fd lJ)"&4H?GGGLg(qA@g)8 '6oqxvl?aH%zI+ 4e`pX v>E ΡAq'IinxG/)9a;G`[^SME`rGncBkM{ņT(j!@3F_o{lK{/1l93ԧڸ?pU4tl[ľg@I j*yC GOAq6:3Bm&`,'z D>ޟ(Zg胃_9Qf2#c0TlJ8պ̼=p+\&{o+Q ZP"d7CW⠈ŶjT52a9"k ЦMZc<9Pkx,İjYzE3+micO}Z Jx r k$3A6PY9y/$2FC1wz q۷K% "ph-'ܶ hd|.^/ H γ 9Q{dRBSN8B"M% 8xZG@ /@5X9a^V#p&c}Bg\>{Cj`ZFOAt5S?l 8my5{Bz΀z̹Ddj Vk ',&Hhw ,ig۲W*3)8,:K"δq71䏊/{J!,ОٳC !IIdLp .rX]3ͤU> ,JC4DSm4 `0^b@ e>D 36KN显byCQNMԸ! V[tDZԐxwJvpMYegDIt8ⶑl^oG7`/g5UcF|X`WuʱT[A }LY,hLͺ5L\Ri3G0ub& V9%PP2;;͗LM CBv&mMY65.~3F'-1]zcEjG>?͢sb=Hq4ju2L$њz L@=3z"8A)I jHQۍv)RqTco1x4Ь973$F\yR{+dx t\L:;":sPG)9p8nEv4)㛯3`n-w>/ Z+&8J~{>{;W<6m`ExON#(QGg|+Au| Oƀx2:+vqu0y|ex[?8v=OAA8yϩע).7*FS>EG78"*ߖcDaÉ\ Su EVl)da4lZPq=B 2F=&1 [M}n7`r(y@, pUc@OCyUԫ;#H/3u@oأ/Fh5U-ua u4D{[ m ,ڠw aG ݀xz$岵[a 1g\wS]a'^`L|Y*bRK\ľȉdhhcrp]ێV JYqU[5T! '@ 6 7bc tܺ.6ZOt]M9t*1 dۆrF:׵^k뉁"3dVðdMcJ|N?~nWcݮ5d^1P纭Y=)rf(FJ 3ଫy9NeJ%@ 9oRǎ12&wmM&fMt(7Ts^ F'*\=XIʱ i#e HW4(>8ډOQcYGrFP&QdJN46H%~\ U0Z,y u12!jNg'QImnQR,rij\XqQZ7)wN61PΓ &F &Zצ ^D"=@\O@6Vm`ӰVd1 /)a; (%]`yp>Z 0haq~/GC`6jWg:cqbyD̓k=YvXMyJe3Y #!gzTNʃ 4L$WJpnl1mN&UMLsFWihrXڔI]g)PGY8IPxjFKΣ,ЮV¡AD RRHvql%6A[nd Ckó{DqmB1~8 :ψǚwY PE .9l!CN `P p3s8 ]`f@Lyy4no;ఛSdr mNH~=y*ng˔\9RHWn^@UP@ Q8hPK)S5zX>ZSRsMGAt,{(G#G ѬIJ̎yvDvxBKC~\!˪wC^9-t G uQ3޹~ IRc_ZER:pcwDYAEc>UYCA7n~lv<+(9|JyVն*r̋8{N\3m(Q67R6@rn^*LY{ֆkT8iy3$|#/_QȌPOcy7_ȼv=9g6 .D 68:'C$`gVAl9 1-ccʹ.:_-#D)%>gLbFxj5KmPI.nMjHo%Yܠ a~Q@ :WP;gBV7OɨaL!jW eukNŀFrM.۶ ym`eJp\Gk(Ў햰q6t8؅u"m- WKx4)ov)<3PzCp5rWgӱ76Q.:x_@y˔z+(W4MA1w|MC(=d:8u)0s=T(yZS-2%s_&vr1va9(&xQw7 [뇬o+,eWdxM)/#^jz6p 9tBp֚pM1do;J)8=}']=ȖgعJTd[)lOrŗo7߼TM릎@kLUQтmh0-aֆ7#v2@)b`b^zZ~!wvBvtՉ,b\l(5-0N])8Ք&QWQQ[Y`a.JhGk'j=tTOAkŔ)6>x03.3u8zPy] 3Z;Bd!l+ $cL+g"&Th)N(!cIۄm jlaqAB[A+Fi8_(%dxL/|,B#hKsa)W.<i=b~б6Mk}457 cg:?Nc5eQB 2t4xgx (ݭт9 xhP~b뗯6=Hޣ^ 7l1 /AX h7`6a2:/>A2 ;FgJ(x| LR裡^DLn+5|gC#QGI>ڐ,(ӟl{fS5qyh<V <}pq'.k9!LʁW)2+{`(DgP/HL5 KhxUdk"4FUNV8.": " 2?5+|-oH&e) O\L*j 8D[Lv>˙>x㛯TldN^qo TDӔPj`[(C;FkXe!2uOc-YA/Jeʢ\[F&X,{XĀ.lB@C!Fl)AZC*v=A=>3y,) ,pBhH4+7䴙sku52oPYP[Nfj炳ۚ18{7@`V2 `Q(ɓw8hS3utʅޙCSԧVJxc VQ˅VʲvvF^b tRT8ۄkX KD/+&^leRۢgb>xTϸ]H"ĚVs+Rm9&2W4H's:$URQ. Сw~c| 2;=8ϨCN.Z"o[͆Jh(ς@ n'li[Fa3 d ,v ˄*Ǔe h1Ba |z;8سGJLP2mE?}&J~ ߲\WXfL/o1[aNf$*Ro$ ~n27ck@Z3P5ߗ} ggbmEzJ[6+ M1DLv7)ŇaqWm#@_mu%S hbR= >Ug5{ P{zh(Akw1&c~znEj ¤zcX8e)&s˚_Ը!Dl),ez=72L%]k5%Gj {hd΁joy`oGc \0qpf>2lf}-N$27NSh [WC&.L)QZ)KO)04sI79 Q2Ζ +uzrI[Ǽk/C2l" )ոukކүl(nh\&8I*=t2=R3P<\L7ǠliXrҤο4d3+q{a$`Ȱ"HVŧH$,pfp?Mu)%DD&G ]'喟m̢]QTM8}nz<]B Ūy0> čA`_+0BLDO=4,Q5/M֚)!::'jɦHޞ'1ʹ mIE6Eϋ;E^c0}zSꝠU&. 8Xgí?*DZ褴/l@;eDԊmN761's@@ax @*zNP)6^،_/2 d@#b8u U&LR,EΜ:#p;'iNm 1Gl>pZA=s0 V:{/B):ON6D:nѡ|‹6L,8j]\`bʨ=#FcSbh n$`LNPpN ]G/Z x8DwK *U3#xcTtPr^x<"%A9f_4/oB"ƈI|\ΡtJxŘW4}4(*t0ѧ4zʩ"&A bEMwtp. =ī+ R<.em\&}v}2eMztӁ*\(j>y%4u"<)r(2B ]ǯ_:NhiB@.C@bbYTcv2\L9?V+.*cdb\kbPj !gI>RZ&íbxzo|^IsTp\ g1넡WAbF &TjǾg=#ǓWw|78 Q;%"==g>q0WHui2SсI=Q 6T:M*ژr5޳WC\d,,`ޚy<)&^ׅ)YyAUsBdƔp~Y&#! fa T5K%Cl/2OLV1~H,/ZL5yn߼ dTME e1&07٬vi,uo}]E*Ą1qUPk_Lz/{Yތa޺*\!0(#E)!u!{z-Д%g=.eE}Hę8?K>,dUoʥ14ck,| _f컝gXˮGV;Z+%XwqЂ7dY]3=5%na–Bza:P852+"*7wR @?@ y9nYli@@TXQ\;L~Ħ^o2Թ!*^/Im!3qafC+??$ J@K+6iF9+,ku |A,Z >YPܼL$JLȘ?#nޛ#JvAGʭ\펡L+Vi4x)Y2wS+ l=#&X?D+"|X5 5, KzCٯ @~#e 8%k1t` $AOhWE'{)R~Y"<WU1JI8bp)d{ɵ $8p4饞g|5Y199'> 8i^=M>pwK%1>8TZ1F(-zlaA/9{ [ڰ%%j5fD8%̜`_d!Q:o? eXyiP'oP[Y.Ƅd~|=e e_O;pGJɃi0BȈ1av8U ڐ>}"!64Sp$^iMaj?/Xz@וeERL480!Y`iWi5X+|gc|l+i~Us63EXh9o8f_W*}5ٽ{zF #G0O %J5(DJ~g˪!&z9g̴7(0ya3.^L4ju9Rd pݏ5G)mwMP 1L'$r(`Bnk9蔀wK!޿ϗy:x<|cy"zoHo7/'~y716}u5k2@ؚ)(n9c>︿m N[bw3؉% u#]ǷƳ| $N=<Θs6$"1}`⇘^h9/ ֙0C` $qB9b޴RϡƂ8O|j'$ԓK7 +eO/ 2Yk\|{bVgo?+}$<ļ6nx34#?WLg6_$Ӳq+?K#ycbHAtϹ5sT,Etd#r.ҟx|On1;'}&:GZ!V}şOP[rR37g),i5B^4 Sr4a??~UL)&VIՌdG(bpp~CӼv?'~ PZ ןèn{^; L4n4Ug??W^%10 Z acVKL>`3z@kY~=d.Ŕ.,$?xEPKH),)76i|Lm/e#|>G($7Y /l@1/e2\W{8g/-ڰ.3 |v.A/T|&c~`L߳ᰶx}ǛJP~?\LŠ-L5TPUdrOX.V=ڌ%O?KƑ7+Wľ{ږOp>*ij??>:Zqh S[É)RVVоSg [sX?'3s~ZR{?[>C.t"B ւ}Ko XKmTx|zqez428AN~|?'Dz06& %@;}E]F*6d)P[G Ü5*>q#`@@SVڵa60ͭ3}@?~?q^.;8'| 8R'utE uί >DN1:SCNDVC_MC='24m@|Bϣcl+&vY04"[ޙ$tn;w?@Ǫ dt )9q>"cd ljk k3_4W?J՘“,IsF!LQ}u|B"%? Ev߹߱ 'Zm^: 7S + oo77涳a<.pyp=aKy%^0,e~EwT*Ar!m#(kgtk7?49:0SzqA Mq^8K $r9@&EoSX džD [Fq S˜n7Z)w4?]Q1eh9td3`V2%V chF% 7ADp)BPr=2׮P-alߙg 68 U / blIóww`=oOY;>Zk/κj!=],=^1#wؿ/ˆIo~߸Esd,0_(_śG/ufiUܧ[mo|ui$mN%Ra޼m9*?i^2뿾Y,>mPW̰PDp] u!۾tlcՆyμ͌ɾ?O(4Lښ%SRFX+[F9z9Ӱ!є?l1pX!o<d$L8ˉZ/ߌx~@]*Й8_oGBZyC4yt=/*޿K:Xd~o aM?Z2.;"c_o- ˼5 `6mv-g~_ּ,<8t8Γ` "w#{qwcBqLo<=jphGŧO7䜐b2pYTt3 dh>ȉa0jD/8@)3uQl"HI`G;(1FTY)'\ǁ:b0oJ8q@ň*W[r6i}<,5%Y&/ M2yyCr7,"cmSD&k٭\ƃWBjkR1 &m, o&6p|Yk_m)QaeTG$}<=V+}Ìם?uvc.$d_S&k!pFlv>=$V!:H?S(nMUZv򶛟@A.H^z$xtH,uZ$oE)ԚXj@-GZS}CD=#@?\ P&ESBA D0#KEWw-KuH)uU8xsmy]P>Rr|J$16p^L982h<0Vx8LܶՁ3zP M>*-RNc  zo~~W-hu7 98M"&+~'h9ou@G̜FYΓ Y*} ayr=@Q2`n[Q.|^.1Jv#A*\gY,hye\91Y:9s*ޏCKUC#miEPobw8 @qԆp00Ls]|wNK[E iR=څm)W%u8^3F^v ü}*̌~зk NL*L4>6еC<xNɵ2b 1]BhJ@98cwZ,d N= :m;y7ѳ,VRLzoPrBBA0 X}1,%hَ c#(TPO`1gZZd-ÚL聸u]TKv؊8SbRD; E;Br8Pbn;Kƚ!DLc̉"~ali77&[\Zҗb@~%A)^4M4Y8q1nc"ȸR` 9JU8P?8 S= ΝIt&3d fcaɟ69Lһ *&l6ƄC)n fw4٦k ZLA)J1~cP6H0Wzz\fSZ{Յa6kqO^~C)cmZ#34FǕ)!Hzb12O~\)8$ c}zvߠKRkG--攘>1eՁO8.VMɞct/ì͆H!`bɸd D郓5c73HjֈgAdMuzz^fY- \Rse}ߏ ;}}%7jLz\~ žɬ)z1}Ǿgga# @ojҰ3kJ^|*o){y}֊%#ц؛S6J_kVP9薿Ւ gvB3Vq7sOp ClI%}h-6A'6!2=a2lkh3X=?'<ښ*{hĚhn. VTx4g FP/NZgav&ѷSw5PyF-@Q˅ KA:P5fR3IX م3b 8l}*2 %55 8˾ oĵ)k39 2✏fN-3 uk @ GJ5 睡/bMQ+bL/K'S+iX> ~ysѯHdg6e0^hg"$`>їf,v܄h-6~ `6AX>Pcaz1Qar.KuRIQmyRJJxz; N۶mR 8M ] y]igIPYsPX*3i>EhH9)ja6tj/syKэ;Z^jUk#GXzA9=/1xhx?Q u P<uR/f.p}>1 m;juTp!A0.{/cx:@ņB1ͬ;;5wܶ:e ="ƕ(!% 4[É|,q◤0zΌgP}:R qA0PLKFR-T@B3aZ"cn |buZd6R. „^d)uq߬ZҒSB l;bTwH,UQ'uq^gz5??"%Y }oӇe7czV8ﱥ톷Op*ˈױ;r{ʖj>p\ Wx G1ˡ !$ j'g|澨R;=jc$iq2SB\,U2٢}R+OA٬l zkfR1Y 95l8l[, ћl&3CIl,q6z3+o @t`jNH@v]sIQQ #k;g2 n?Dw: TEUkRs5 6mdOYU)**YsFFᴟddB _ie.5K ɽkλ6y`q}x\03Ô{nYbW&(W]Fbv̿t pQ ҁ-1uՂ!5O?Fþe-)XFxVJ$h aLY> ?/ x~ ~#x/k}߳NeGf1>C~x7Pκlu=ؼOf83SE0mW:x#Ŀ! f__~xM48nJ?d .ط W0 q^e iyBC jo8,H)o̖%ofؠkސS^XĆHp(l[YU6죧xLĴ= $dw{ӯʉ#Ӗ66hw^#^o.2%Dֵn.4&Xv]/$BF44k͋GBp?){_lV:MU$@$2&L7TEH1f@\osFiEnpbꖩA>˶ Dڃ.ԃN ?چQ^M'"a)FO?ypz1RFLXMB}W%ChE\JJFD(>,3Ω=-HԙLiҿE6 ͑y7sT*2hlܜ䣰 <(֐bB9%!+(A4&]?/Q{@3넺yIHk˩z:AO_h xL1FVXD#əJ)+Չ۷,cLA#r$@Q%n!Rީ 6*zw3M\>8yJ18A"?¦@V#/t0U]4JTH1 PԐ#z>`$1ָM hB(8dMECHyC6l!&Tc05a-R-?|~-Q4Pjq`7@ZC66^s_xq:HBc4AC6ܑH){N>P b##;Lݰ{!U1 ٠Mu(Dʉg|70ۆ,9&ێ-i#!@rޠwL>}0s4 P~ԟ0tiH 5; )b>RrA>wZT2LnepEш3:h,;.zΓX a#wRӎZsoJh,"( [ 4|@"=E#o8  `uCL\ސ5 Fe]):eK fwd&u{U53GuAh`ER$.d)*dK}M=(fͅ-  F6Խ1au^*?O{\-O{8 yDIYꪕ J):뷜wlyGyoU#cǾ'烽*ͪyfˬ+=RrgF Z*JidO]\#x04kW zKA:' a~y=j@s˾`c>0RGJqg U?<{[>4~'-0!Ucm95CX?нێ1i!ׂ3pА3FsJfl&(pS2 sKtzb̀E;bȔUuLxnB7wSM%BAMQ B GK39F׃r7e4 aj2(^?7)(&_K8v2{ 6R@e}mG@6W}WU 44vFɳ D# ^gAriByC/kr^ G.-:Pb)PZ"yca?.Lkԁ68\9; J+dYƌv]FyaH`th'J~o^ְ[HUm`(^GNȪy* 0ᤏu,) d4$-y:* Ơ'Mm'|v%V5@KF6Vu^l%{!p]^d;3.g)1 Kp^RJ g,8]aCiwZ8e`FVzB5Ŕ`04FfPc078 l bP7 I8_'P3Q;jpN0@3{oh:f#Zӌ~}C*Ҿ Z!9s8h9 52HDΝNUaԩ 5CL„? c V1 _j}E^Q:Aspcbz߈Z).lbq` FU(u}~ Ul 9%XXVYöL2k铬8ЉAQn2u4U Ry'i2}Fkۛb+w@YMZR>a2dE{1{IpFAˍL)7kIaWeGUvj51Rٴz )x` 2YSJ>b(ǙaIno0k ^VeA@.7Fڝ D:Rؒ@Fh,@z!Po!`tDZ7 S\2#Y0`:tCkqcɟ?L 7ϨRx6ȴ ,.U,y^7N@ &[iW!4tPqI&c%VHb{M,I-j!7Ya %R|ߜk'>#6%.\4)"'z&gxK*mJr'I{8uoptuk˘OP4z&~}!F&qB^=!zTWKt 19Z,uh &hRZ>Qѽ/`Ӄo1Nn*x &pe^,R?7̯%.7 i[h{3˚|?=܃g5k~_C2 -uƃ6gx5Xc_c0ciP+ KrfQD&[4n /8u-}-FgD24`/lH OK褰 >i. TT$@C^bsiaxW"@6)d3bw]R񺜍XB\\ /#GE,z ,0C@Y:p)2SB67bB)ŔwQ! >EZل0*"Dpz8x.+?OH1dՎ,:L*> c/4j9 iě"ci7ȉn)`oo;~`x?QAR¥ n Ǔyy&ïصbsZzCЀ`rP Q}v@<0MchgFݖijlt_Ĝ?)E,mmO@PiP1 `1x<;zu,g1AjGҀǾshex ]DYMTv\)3 pugKDO@~9$" ?!#f-% IJ{f‚j]6@4+Sa2o6˶ =KIű_jݧYdé<kb@ sIuQ+18S=>|SEάCA P[_¶%f(7_14'e 6l0W>ڏ t1@}ߑrįqWpeҀQCwȂ'2:{ށ*Vً@ʎ1c 'dМ2ӖYa83tהND$6|– >dŋKTu%{_)a\4IoJ "Vocs_S2 $Mi\\ǝg_^#|XǬuf0\,m,-(qeٴvY1u?gt'~{GuڠJ&)0,p?9CcOh=2Qr3c\!̳6B&*[fs+6J/1p'}*7ƨ.~ps&zaۑ"]6V6N_Ad7@< px`! ziW7N~p/7˧sHNFȻZf}KRJhz>qz}T`ݥha4Twn>Y$}7!&Y}e"!&>ujqpN8C φx5a1}tx:}S % ^)?:l`:{__;lT2f 2J-{Ce8nP%E+RHBC@H;1΄x.;i)l-`x,a]B A}"RVDa @ WX 1hP@6FVP (oBH0`0,P:@FIu_ 0h&kϯ @Lh#SLӈx$=@rwǁem,XȾ0(O8>g~8FF_} x<}3* )Ac] eʅځ=OU:_L\;`Ԏ6\iaGU+rX-*]Pu!R;%K9vωrw@AoߍJ+:<DpՊ!Ítga4Sɟ9"LAu|1 dB]Z $H|d\)@9(wC*˗^hjx³ *B_zS"jmy]x];z(g}< u#ʅg"H1l~'pݕJ|}= 2ŴpUhLɔmC2:Xp"$6r_!B44hRȢ,fJ;J)ZQb٘ =`2L؄$! X`rcSydd5-g =Ue)~gz'(*4l]fS0ǀvkCM̀&H89 2[Aw&cJe`CDB\)5|>s0H8codDٶ3]* 뤛!ڥz`ɔG67.^2 , 9 Ystb03Om%^<5$ґRa'eo!C5+)96ßl ڝA+ATZQCJaK03=^ʹQq=GtYg TWτr:^ (p'p_LV!"?vhHx=6#1t%pa0 [87A*_a~w>.lRkof:ވW8qW~(҇N PcJxL 7Or!$v UmG;6A|q*#s17,B?&"%fp͍o{l1>B 'l] z[d-ĂE;%;d^l9rtiN*&2 Naؓ dm^%60669Sn&@8|]P6Q^ X8= u Vc ( c߅'0RNwm,paR⌆:<@7܀,yd 쇼!p2'dCnή2>r>p?f@T 8ǹoM? zi02\pa{qi [)|VH)K)%`3(4S3 Zd~m 9x 1Z/ x* AP[ 2A. ۞Bccl Xw ;=(L0ǖ Z͍ x4;{k@bV"*e,Rd t !F6La əZ{80.dDZq _H[F-7X>qAG Rِ{襳lmGT&v. ,P8D`*Hq> }s~h4z|zj䄫`MC!:=n:Q]+wA1FNi+x֊t|a&)c?2qTa每.3]@.ƽ^}*i^kyĔ)Q(<1y ־h%P\.B[cC,gtDmBc5هw>{p5'~1/_gX}$S0e}{5(68ko&mt%ku$rٵfܧľ7'^f]/:T\X~M%|?oi|̇5vQӻt Ho?4=Dh iULd%LyoL3Ů{uB @ґZ GYŖy0i8^4BL霄)$Pù/4s*1u6ye{(Sۚ>g &H@i MQRLl<:+It˾z ` 1hĈe-hcM'1VPi3M!SSɤܚAI߾gy(x'=zdDUEz7i?~?7exy1gů[r8 M{M0#%yJ_k2Fp,0^r<dP Ծ=%6^6$79e3DxOsJ҄LiGܼAdITRL0\DH t&ĽMaٿ/a?6p¤8р@"WڀGZDL;$cΆd2(sQ!@.lѱdPR(Ajg2a'eؖK~I TJhCQ;N1m2GL)T{C3$MhK>a!Y{\0*~t[;ڽX62p Zflr8@y(!]݁ߌEif ZGD?Dd`!!eE~_e=9yoAchJc&qU>ts@8vLg0mY F~xmcxH)d$_~6`c ~ gg 'AFaKFJ)c A#U 6 h} EEGlrLLJttdrPXg #2MIjEܟ2H|T7SO9y#rwr˧`4Tc;ufM%e-ÔdfQR1*8VbnoiNF3mw0b ߓ_u]lCVOŧmy#a\{+sH`!ͥnb{~! Xg=CTC@aP) ''7n4No%v:Zd& .jĖ2SKض},&08(EwW){;m[(ܟx<2Ɇ&m51&̤B32{n,P ͽ\i0WU:saׂ3hބ\h(?*af 8{>d{j #3Ջp ! @els~#ty w a [끯߿@Ҫ&z?竣nA֍ۑ@i04Џ}@B^uu32ANGLp+0VD%=Uñz71YcsPKE P)c ׁr9c 1*d?"FJكGQ9 3VR_Ol[d'*\0kjY Aᬔ{39KZ`Yٛ>oAM6|1wl,5,{'4?}\)L!3v?!os&Lv_7}[ku@*gZZ0L~|a!DZm Γ$.^I0x>lUro1:rJ ,kRɒ.aɂc=u޽9h;k,owao}_ռPJMp~ooZFwpm8):2ב;w8!a,>S4M5k2?8V B*56e9~,{Oz5e ֝#i妉APa_`"^kYd|* %QjNdoNH}N DUin.o-\a!Fcf3eYc̤ٖrc&0Vl-@4AQ뽀T"Arvq~{)ͺQ$b2f:Qb )ٟkrb<~0gӤ0pM\c= 6nИl>o+K>s??[~v3a ϊ^SYU7/QÐ72t竣#ٔr#&o{TP!rZaÛ'D'|~54 Tq^:poAըeLBEg*=oeQ22δQ[ã ZjDqIMWJb^ĜJw l|*p4p mSD/hXӨc?p]'F'kG6} @q^8PKAD:`"rPQ8?"Ĉ{Lp ©u#ňڅ pB5^#dSZo$K*a C 7$&n& zH4LfNz3<tn}z,$ F#aah֌n>x3Y:/tbƈ"bxa^D"Ө%$́hNGU{@kXzwܲb 6PN d s !*(]6C3YQu`=I ׅ=ox]7Ҟi:OۆvW4[9L^q3Nig36k Z;ϗN^b/ !e&kM] 0@puO>1n\:nk7R< 2B;B7 ?z-hnq8O_O|W`6*nϦ#RbG/Iׅ2LY92)mz'pV؋9޷6f_56?d8YUSeaaq'oE7.ϯ?،u;.j Wһ{CTlyoNzP׿: s~uVЅgbd] VBo@ Cu.X:Cߋ=V6pe#v y=XAA2Gy3Dxߪ0KV?e >sޏ&}Dfgnrkiu1:[$c $>5:d3<\|6'*6Hucݨ:#h )0tt );E] F0$HZG^4ɤof֘JVP5;rZUS-SB& fs`'7fNڦsZQ9 rbĻP~fk#_1(#!FRߦ1gp郇unzٺu!\SY; K)~eqi}7B:k7ӥI`M=VCF9n9RPghHf8B@/lA"JՀ}9 I7T@܋)@:oh}j|O`8#B h}UV9D[DJ, nSa۶AUCu=dv71ww0-< QA@h!pEcbD3g P1(~\xd"=6^p(loZ"'NQj6Zc$y@\ʸga@H$=H{T,t&oKeg,.<̧0?6Cg3eܐؐٔL&S-@ʉ Vܕ}J/ H{6q|}A4y@7}OrF5][ֶC2)5 ^=C͐FpHAw?(u| "iLhu, aq(0 m:Zr*EDP>́1!e02b&F#I+;)tF7N(5ո!'zh"0> y3Ātl.M,Q%DEoܧi6M'eOQWHy}΁ VqPt)ͰiSYӣj2{ecb`cX/;%@JQ:^ro`P0 ATgw3A3C3Mr]M^R*R} 0c0J#=SJ.RZ׫-yO^Cu bys8HInOUt\4A41 __O<_{¯'ua\9ȁ:7r``nAڧ{gTeڣI@H #ٺ"TX*htƔ.lrck{ߩmz?+jK[3jcTҠ̓1g?""ضo'gχ?֟ϲ'4=Y?8=N"ph^.i =Vl͓$̩*vWMioÁ`6ޛy?p8D`m|ɀ[IܵV2R{uv̔%-bǧq\3cLWHͼ_ok:"ub<1m\pgHݱ7h&` 7RV?C>dRL8KҐn soԐ^0"\x|<GVhL|Aqۙ>?QL&~QG0SXAS8 p?~ Ƙ1şF?#_X(8O"V2`pýHf':h~oB1@ܐ3 a&V(lFT>?6ʽ<$}h>uk,Ms\/n!5pMʭFr|tZ3CT6|!S$`I9R?(θ;P NTu]<7D982@oȪ__MdcRE0t_ϰ:+ue:_b뾁vvO S׃F/@VSuJ:j-H {ëH4uR~~E6& TDA.~t@ (XZXkGHk !nPܱ'zB c| :ql -у#e7ΊѱyM1($m( ##Ao$Myqoˀ 03k ;>H|/рF%e~}LՂr伡7L瀉 1tH)5<|~`&?ppLZc)f*pqX\'%(Հr|U! mZxeFc{OF_p1CHiv^x7R¶'D !tVM 1aKOo`&UZ'8ePA`EU,)ǁυ~u]i#*47 x<Pe$u^8N>LkJOgi1b1fmqU(BίWB!۪u@p |ݣB/X12o`F"% kZʤ^9\I#7kC>3̴c6qdFpwy{&u&ꠘ =BÆປd j7$:1{(c´H`/fU(7)y 1!]AdDֻ `V[ů/TOɅA]҆rV*k1cc}ș@]^7R 0Ay.GEspӏwQ=ZK67~؜i,߽Lp`[ 0=d?c ˷N<[,?7&^~d-,:~KϡMfugF?y\u'T#r>p^'D9pW(AHqfL6}E6uuaۏNfyNuN^O!inO-:{{J:0}U~Q˱ձz(bT7b=NlA\n>m,ꁍ^71?uodjvܫ&ּ~b+ f1~nO )@mg}, ܊ov9hT1c 7M_&ƃ ۣO1H7|o!Ffi Zd8% 2>Ӄ&KqN}q <cMA+t.gm_n#2c@Z%.{qsOQ|ٌv N7mc,ƿ7u?`d1y:% <1A3`y?C fi8ڛdzMl9:_K~{ʼn݀ j4JtPC_Dp7#!9x=AiPld-ot kI"+<2 |}= 01VԴz!d")uܵH wﳣ*Ȫ@=-YHY4e37ܢ˚0.W-nؑ5pJk(BBDj6m }?L^ڸ6 .8ΫxJ \S~˅*wz(q)(Dz(%յW@S" W!: \K\E6:-#(PKE}ɂ"$,)S #/J”C_7F#g%=ooRҿZi|nCQ1pt$h\si6`bBF KK}.%F3uO~bB)7Z/-zc  yۜRcUY]Aau_#wR|4{ƖO2#4rdǻq/DFǞ5%^ec dHضD@((hB0B?ڒR+ w@%¾rO8N4Ksp?v&5a7JA [Tdv- 8"-!'FEct wLR\u鑣`r@k7hO~[&)6ӆW FP c'7ZC5A}4)YQFC}]U_M@:NLoy\7}qql<Bˬ]Zcq]Z+x>24ɨ7 z6Jdׁu\ FmħvYOW0p_-gT ;˅brTcD!1tn+|@l!jt$H4X3A{҈S6Jx;녁?#@JQ 1=KnIf6͠J-oJ^t^g´АT/fAy >E2&)h`s}p ׽+İ L-!E8 GS P` Ipq{zS`9yw Vԋ-,vHLfV6U3uFC:Ĕp͸507ϦT z% 'uz\ږϯ r6} Z}r鋔bD.YT̀~1(xam{C|bmӖ-3\8gJcޓ[?O3 &WbT{u'˔ŇV}m[1cڱ;cG{j/%V`6o}Q&i?tB颳x׺L?hS`.fNƒAg6ǁQ7ܘp4q V`l[9Nx&o`/hK6EZ~}@uz}aq騭!rD \R(\Qcm qtwUt^NZTgp9Zm}Ёo,S<88M Ȝ$qѤtB0Cr7S֭1!LJ]`diҒ{඘q:UXsa&^ī{()? Sw6#VyU(CwlaⒶ'!wǦ=hUGS* 8'sRUO) sNO?jmah܀Cx3+my:, eNmqnn/ǎ1(;f0`' RN[ˋYBKM͆ =2ІuҔNQ)8:1kXciѓ+#; @Կ&ZULQ-,`D]ulmxl?'0)9#1@.̀W1!("r5ZcuVl[\b?')#R|2+c yY63z>!htl[=2c\H9 V1!HCntu#Ƅ󂍙jG%< aQlc_/N :R2%T_752rwfeV@&6lց۰avQ!RQ{}pcxMcY2.}'L `WKy'Kۧ`QmL$kA91HB <&OaX9?pLz(~J*Ʀ?Q?Edb}cC[ZGL~BvJfA׾% zS|N3fNh9oUu7b0&   '4Ѯdh́y(UhT Ӱ'&<"3翞MsҖ&ohP>_4w|>Xֻ{L jQ [w]9Y}L_ijBFV{.|_}ypb`a-oV,4oJ@s-Y}0W[⿟3PF(]^]sٽ^Xz?qbnV>C&GpAqp!cz B{3q 'M9uap1>*lIꀕg⃙;b$v_7BTOkl.e[cgjlD6|s 6sM/=4Z\m4./+iɟuA} ƨck@pzoP^G >q Z#+l?]AYyOAƤNn&xfޜ# gTI>-%uF 'K\'c_3DrR aQjUJu N3>kC"t  T@1sM* s +B$F}J){ Vx*A%r"T Pq!n(#Ōs ׫>/~sxVO0u?OEDolg)H)_A; 8j ,=tztV)c MR%$X`gV?LoA@~<)I^A҆2NP"f&MFL\~PByFhfHE-1%XP XLcr5cpن1q0idsB: 9gc@[GR4}_]8W9rU7F`05hdy]jKܓdw wBCZ7 _~Pn~ׯ/H1*ΓoΰX唙zw2:9d91jDNe7[ިDATžo1\:Ƥ2%İd x{@4h8+pܧw8Թmz /6ΰY:[(-0C@1xɶ|' ꒪޹.k]+ ԆڙJ;}AlPUJsUWKJ53g)39 EJ ɨn[D25^B@۲rDJlPK'3$ U2bfO̳[k_ 0A`M_uWqQ7OYf]vlLwUsLTc^APY 3["=@{9`:u!o˞)j1Pݍ9Ct6! e\ 3~^GdΖd8SO HPGi'38XaJ~FO0K lzʤacBUX9s>5ZwNpK<%XlSr^{X~Wzw`o1#6֧oZxXKsX0̙ Tqhbz'Nu}/Og3$wtM3X׉}04k@p@-Fb18 H*1{>5U2*8r7/N!0=ѷ@CPLM$g댅r7ð@? u,s%TqM7 XTڐ͓->[ X)~{(Q{3x@ɔy/R"t'n`r_lSZ(DQ9E0؄ DmW}*`=9g )gǁc?X =%|Bn&@zI6yHBx$?;+LLTaY FM~)  s( ?wmR& YZns׬M~a z`L3=Y5:(5׽Gxc.+:UTZAQE}) $5iHQ`6;3O3N9SdJe |C #}Z03ɦI244%>pOqJos֡` i{Đc^^>s:+urOAkMZ9<`9T/@^D4gջBČ!i*:6)'4ogSRD.L:zݠiݾӤ. lEĶon76I07M퇓7>D&?ifsBP8x"U (1x[DIBvz M ö#[\ Tޔ3F $?"A>0L( r.]f`ۆuBcBMM8KA/FȢ$k bXmQ6xL|Ͽ~Bp@Y\el-Z{J1is/n66}s(C !#:DZ#H8VCF"dHP&{ ?v>pWA)!*~pl9#Z5gGgL(hU#TAkRuI* Ë`@Ndm,gHыFZwWXpoLS&zµ:J`!F眡wt5r͂83 8AGڌplrX `vD9l򾹍ksV@}xz%.EsH,ƌ0Fc2ܭtD[xr_ cc߰m`}#oG[nnx|0p -! h5QL~m`c1@t6PKC ja4U&^L&Lp]({۔oTB:7{ ~yfއ1w/UG~_ɼ @n>s׵Cy xM߯?{RjȱoA0FE< 4xޓCfjX惪{C{hB"F4%sAdk,k [Df,5l1Af8CM&`˫kLc9?{i"ʚf&RWm0*0 JZ1o8 Q&œ*857l$+.)g~0.sHy_4>}I42hF$ 䞓`24bE4䚜&(5,o0Ԋ/}h&淠5s+"9&THѡaj $$P'::aRA\24kgѠt:dqC xEwLPn?zVW\|L9}/13#sx)5v1 Fׅ :82~=yE Ŀ6F} hsY=Q #$ x]#@|0A- C#3<.T"Ĉа`Sgv{Be7F.r C)À"A\c4)h5Zv 4xSVkA7b !XN6as?|OT ./d(l q1:Ō0ͤHqx`F"' 7.)u3s <{cLPB V(lM`Osf}ׯ9w4ߋ$8 hDc\<sľA9k _}P(1b w@y*lp {y}M@}] & ²ckJ)H):O)7e妲lbj)EҍC ejogS8Ɣja Q˽f56<6[Nª#ěnc=YfW ( V nFg{i]?JHGi|P~ rRՍ+`g!:T#$R D1S͹7> cRs=PGï}&Λ*,[uʢU1q5- ñqE6&R#3q/y߰%J'LwfxlTJ ܼ|<ک Y>f;ug5YsػWiġ=V>k$kO@", : cXܜG^1c"<hq43}?cg3yA% ti1X Bۖj[̰3ϟ֐SDk. Վ6X}۶ꍆ.Od]pyOH- ]V3^gxN씠ɻ{rb~?gΐ{Lo>~9Ξ]J .>gA̿W9uUL}b8TN2Ч>6ץam\[s;Hz׽@&,1Ha>Q@)J)cxtp 8A,95@ cB<9,BD1ؘXpoDY]Y[ƇyEԣc}Unpf03]v>$Dؤ*:M}TXWu1fgBC];ޚ{Ur0kQ<3OZc<!%~0o2mG }#ňx [+8))Z}oR|=>QFGOŃυ}J2PT/21zuM@oMٷV1MltD3ǩ 6\uP[5-scWb)@TYO.']]4@x7T"<2j@A(F1qp1dX=~s֛~>u`X⧢F!('`SXҵfL#! Nz[BVw6;SJ AI + \ƶ)9G VomGNѱ+71Y ^!p>s1Ԋz"1j% rѐ< Ĵ:/o#e$xc8! ض=ᶎ~WiY*ZxGDVB^΄f,/Ĕh7pꯣ{R)Rkz!JVJT Xk821FbԊ0 J8[7Bɦ9 J*WǗ`Z@SB;Og HW+OGF"x|s ;%OǾvN4 -Dmڠ9%K6zr}P0DQʁo_w &%7߿py~Y:?] +~d;p`lMDW|<ј>V4Og~@׆Turv`T޵o:[7!|=vu?/,Ř3ABu?'a.R|/I!"1 >uz8_},Z*Wg7?bIෲ?.Ł0di(>ż}R}(}\p:f`aiwUW%kA, ?Ȳ~2! N[~q>lD^Ԥm_ݍ`CHRU#Z9N3fp12?#\1Øְm2B S>S lDXd'm*@dLSh#8jzS%'b!?R,>5=orTb0=-&47MIy:KSj)GD>LQ /$b)eQN#7c /4{ŧ˃A֛;8OT4ԩ -:)J aƥ$j`OΧu~F=4zb~'5`\Zݓ1 ??l w]V:8!g~ݶT VP? <*$ 2yC(aIIPO$!MC`p[LZ å5Šͧ3VC)Av7F<%]]J+#BgH@>@LK޻> )J J֩~сi}quXZhF__Oj_'z~3,:-͏:YW_mA4kJw-k (#DNp*bw<u&*Z:‚"Bv'zNl._LI,PRڠl!)^ˍ6nLo8~!fŶgZ@Nut9}6H܀x`;~ 8aBx|}!5MltU#n( {D@yW-QjpߕlYCcEU ή}T3xO>Qo>1'̵N? fq !")SNLk &]j Ԋ`*e'9!fʠO2ݺ 5CN<, RR{y_`ԿFvM`zWCBG܀! Hǖy a/H ֩}zr*6ǔ 905yFSXTі\kJ1XAFXʙ>Ⱥg2eԆ战3Ҷq0vIC\hQ)3[q0TRB:ε /"@Hǁ^*dY+$6ތt)NUJԃ얡<*`͐ [L?žapUCe%N𢡄YuD 8`AP )1"=s%F3a2F8Ƴzxb1J%a??1}H2@,|U2aٯ8R&P=]T9\=퍡(#}_:{JaxC$ZUL )&7Rc^)UO21DOSDU@ rhL?x{SF 2 &Dqd`vߥf=e!A^2͕ZCn沺n4ڦvq*zu֎ G1(낯m'H 39g)>$ 1 BDlwcC`pWCTl)Z@R[NN؀6yoJFH<\wG)~`h"B{B]s8R+A;k#J) C f?y>,yCV0p'K\݊fyxΖz e*BW1ƪN >=ey ξ񡝯5 ^ԯbQ>~kӎ^׽.޽;<^i`:bDJͮjq3p3k)f#CZ_%޸ӻz'Lֵ&`1Ų󞑽v0`Ӡ p&1n_ĵ.+t"%|7a #! 4 P;6rfUOsڼaib]4x]b>!0az#}e`2N'H[Ẉ01ao_ yQ͟ɔNH:ǖ:mk6X^3uyԤ64 ͑a0kԥ⋇EṄhQmDyDoJf)#6X-V,pR}p-,)#Mnr {Lߓ27.l3BP:uDd2hYa+'S4(Ku=Osg5A6W}{c5{b30/ĥK7Իb V~~ eˏj !DhwyKK%f03 ^˹\LꟷAyŚ;azd[L6h\W[2-]×FL`ڤ]}P:8T{U.n0|03D3w=Ɋ_;}˫+Κe~*rY4L&W>4הi/09/g-ٌPٵwB\?i4i8x3Xwu0K{ D'јBi#A_ْo ǜ둙{{%maa DFz!<h;Z1BM6`68yޙ^s>R\Ng̵V9x{qJ9= FoB,DZq9v?[́ ɇsPͧ)* Q Eba%u [؅!F}65Ƴ#GvJ2/V܇g|-ڃ_OL)=Бk_ש\c>!n_t3=i˂k[z"/k%*>m*x1Harۗ'RLސhFa6Ņ,%!9VT6u*9$ -v` !GE 6]YXvG[XMvrFCMذA)1ݟ3"pG#|[9vqc(bjx|yĕf#$Ed񴳠')yiUzu\[^6wxaWc*RdrY ِ@N4:D5ԥlBN` hh0+a vVDjgT`nV;1`qF^ $ b"s/`m[h)GCz2ТuWU ctKVϓ":TvaY2BTrUrB\ sӲKkn᠈R 8pOu!,x2q+lQN )ГSnD{ꂗ(qlʣxie)x9e3p[726u19UE ˒$ZVo(~];6g6HK~Rv0| T)h)BT6v c`og?(νx{#ǁ)^cŤL^L֕u'+F'4U 3%_؟P!txsl 6ܶսA=WR x 77̵;cЛ*S^p)C}}w;23|@L2k={IƘ t.Pځ-̞b|Oe^0j|ud*O }a~uvqp>#b\(g09|u`Px{xY71ȥUuyfv "#!Km4zϬ-yM4+pڙcܺmNqCjcn|?&}# UDO.N '05] `d=vmtc"B7Ot2[ tɍDBHaEchDȉ!`B#ԫwW&𠛴__ $fbf| GIx6=/߰fT_S $.ЃLpА5ȹRSium'4!ׯÈ.ͨҕŔ).:r6uΓBDЈNm2'>g%8xUPq dCk\?<0iИ[aN44+3&y}7ffl&Ο |_zt ߄ٸًc 7_ɏ^fA;z$E(Ӌ9({)`ln0Zp<XRIJ6׌2RJx'ڐV<1`hX2 :AÓ0*`}T _/8qo k~ }M I"1:$9xZbFcp`hA!@ 0t1 ޒ ń}ez?֊p:0tq O@h\^C*KRH) 7TBSuHg 5Gܷz:-3S@ˆv2ȆT m[ΊsAe˚.4<)ψ@KE4},tĜRB5OԳ; ;ngXLXo7l[š#HFߟRmIx4J-XS &֭Q lјˉDuI! Sz%M?"W}'}-mZwvCZ2aXfJ PAmYM9`sZCyfnap7gk4eĺgA`.3 KډۍgGbpHXPcbڞĀF&'jqUV$TYA%@GG0TQZǨwhl@ΰ0%^B 2p~nM 3ŐaZȇtto8& GD܃] lUxW?c z;Kq"phdW2-@B>A1f}Zeup\ ~5Eu6L"Wp޼$\^KS04lrf`ݫO^ئ̯ d륍_PQ:}JH|^H5-;< zz0)ɸR%fXs!r-^Xk۸|~ef3<#'c:\xmJ1̠6P hޯ`l/&!eĴ #6#;B5oW#G[q^$9|d.2~v᪸qNb pI '< ,9M4dzv,aDɶR1jn`]WO0:Z4`ڳ눑1 FΌcBˆt5A`BB OٮTݹ̺~(;@sLi&ZO/CVk c^& E^ c6?})W~>tbSjqF ęP.;^Up3}{sG n'lf@2`P3up1YO7 KFI+]ʨlQ3qSH1cqIWU8fd/Z |zdRζq7ԯ%8)5QЁ2d n^40,07(1hBS@\2ԄF6 AB*no4<MP 2j˴@XuSSpAnRBb ๟d{,8ΊVZ@xx/pX)e2{jqE=L &lۂeYeݗwČf:&z<¡w}qP0e[X-5lqp/GCibΤe 3JD] L*iw`I0#;s,M5 ePFBc^JR' #Ms$2a4OcǾ?: eGT6 pV J3(gų4R|[yOdy. ޶+z,EOK9r YgbEA֋,}:{M^3a_wYG-"`,w5Y @Sk q{UWYknQ@@2)6-vְň4kbJA::dP3 M4 /ހRn-!,{JSBdq:Y nSD+ be:])_e]=Ѕud@b>N+0T6U.UV؟O,KD;Y4T{J  k[4ҐBpSA#7 7Pt!DiVp'&ȴTקsJ[7;'d) [%i#3Κ򲰮Rq=6{j*@s ҋk`A&^g(B#QɚS!àA}1E;̀e͐DXOOVۇHf|p~0R F@n1AphY3v ϳ00+,=֢!'1zڶ7}͓>APW% eERA;O׎m7- rQq6aYǁuʍ |%Y$3+mcp*b?+NSNîehgԫ&4UxOʮ.ɇ^_Uܠ3T_5ge̜M n!P4ߗrhD'0 Pl{7wS{. Ϙs{Lەkkɯ[JY>3_+?Ov[@67%9}y_R;ѺyNɔkޔ{1?]o?~1eQr] B S͞ 漗0o@&':z809r{G!ǰq|/τ9}.ϗ L|'M&B# -zR=8&|"p{zyY h]f7t4V *B.9f>P@I "leZ ?IO톸$ ~ҔViYQ[Gp֕X2Oc?N0d7FXbF&˕bXƷp5B!ۥ:h9}a1QaŹ 8(j-kZ+w l)bM1=F'd($uξ2 E9vSg)'2w zfHqYG162?5Evlh R| 9?mXI`<׷ s[]6m!E(ۺ0v!: qY:~} <o*8c({RDIPlYYg6YEL%8&(n(bͼ8Y yxotv[p[Y]k GT.d^ Qj_?S`Н4_{wxleʵE3Z5d5;r QZN}x ]gf}Oຎ..go䄵TFCǃ?L8kqVKqB < #|^fNɯ9;)gMl.@,|vRu$^ yOJqn7Ճ]I7h/? Ģz-kL{wZYh׃ Χ#9!x(dLSx\cV;?CyQ 'lt=@^v Ơ? f^^ `TxaRߋpaT0VU7:ɲ0UDїO2\c9)Y2` (N!imnyֆy@NZAbgg),\Xf9wJ̋00z4>{k-*+AbXy _YQ0B QBy"4> #Dʘv("QD@˳D4, 6&Q)tޚ,XĀr"Ȫ!z| 0 ɨYs҃ R+ʾWFY?Zxq ǽ!ew<Y]ޝSÀH r^`ր̡ A TOOap6pd=䩃 U V9@&/!k5Լ5Q?{AJ%:/9~Dzܑ`əJfaAҺX%9@RL (ذVg!Fo0ӳ&o å܆s$ֿ>pan͝[«\r}FVW`_͐-4(5AP]irK~pNq[G+ S)Y^5`?6xbm2(`SIxcIJ8&ˉakgeP~()QRƔ^;Oß岐ɉRTw hF8+lzjg=;DɐAh|Af0W<-FM,[~b|^d4Mp}_պ~Woh{ysTܴV?:цF;0? ^,W8pN#F_Vw c|/y V灳)bq|.1^|P7-q?o2F'ҙѥeS7ٔ3C+4 $ll_q%}ͳ% A<ẞS^uWBsN<亾?/υثo+ bh^ϙiO/-b9P]QABAqrL̆W3ܫJVm_V acE5pfi`6S?M0zHF @P@-ׄژո64z?\Q@ w=}So ek=/a~4_ ]zr?&ѱOH8 ,a[WHWujtIЈeH*TlyE0A]vbT> ]> wZN^oԧK^bq nV/^A1^@\ &6Թ/hpZ8,9D45̤+S5dRgwɵ/1) wGԲ_ES"U!t c?Lx6pqm%[؟hĶpr3h]l֜!OKkq97K0$נ3]ҹ޻˚pdwRE1-.[E0֋PFƮN/uݠOfY (@GE(T!2pM$6_F^NIo^)1էN߈̉Eiݞ\7-cC41۶"ѽclw'L.!,T5ѭÔijIn!) .|Ms 7toP 1gHuC麟8'*r k ^J)f)?Uo75L}zAMˍg%w{{C1, YQKLFǖ)P "{l59`[Wh@ j@ B ,@>Ӛ,@wv,1pMŀEi4]`+',`qĘ8 1A/ zu燎JOdm!c`ָpAaP|yup$21agҺ.̂W Q !&1au3Әxf|b,yxV=vAT} .Q Jix(GAo.Xn+p~xBFEfM^&60^K^8@5,(|J~b@-#,bPz.~mΞ"uۮ@붺 x@Zy?| 2p[Gt[ .>0`eurrrIQ: >Do>ˊuɔϴax~yF3}g2i`O;ЎH)yHy"+TY/"H}[QΝ>d1`V&k@BrR{[#\T.X%^3_³@N/zo~L+}|Ϡ^̲ #A[r[v}nnoz9\'^~8VL/'QL;9;J7[^S&"G[p_p+%N(*kMLvXJØ*[k7Ei ~Ox1`SK>]B#,LF$ʇ^{c .RH_d/K?TӀD\'|o!0gB;{懮 P^ׂv|y/e[)_zDb hUI]J,hJzh:Sy4f0^=vH0+ 0Osoju^FD1znDzch@jbuue7pa2z5:eh2\kc&/ÙadQ r"eH)O:DldyĜfZjA>:}l2U+e֬Kr*xQ RxȠbLSm)O~=GUG|a@%9LԜwJ}B;f~t}qza>ORf<_ 0K`RfC)玼&hJEW܃7v{?Ն=%rzs JJGjS _xꌚa VѮk26Bu=Vch q 4sF^&;@\mQ!JDp1:ر?qJqF$\54.6{ȊPIkl%Ew,)zQ I# 8 L*i z:Bh,x~.BFof LXRF?l̆81؄ 'rL9RF ~lHAyv,ѱ32(5ȑ0EkO艐r"|@kF )&7m 693 y:ˆCsFkI<J#]ۓS`$vq5Cx,ٿ9 m!`+7IVfH);kv2%Lv[:T0aJ9->)y^d&|zSEA5ӏC{2 s:ӾJ:-xCӂQh2RzmK#)LL0$tt8ѪH6ZVZkPe:`[7t{Ɋ8 QNQc[rpy1fP)f~,_ '65aA# `N"L^vy}!bɁrCoYDZ#.0ʋnfqW׍!e J+Neȓqa2Zw%Ph*, TZ]9w]wu'-Odi;$y]砮 6*QT}.QAe1kdIOZ oZ8 0|8DLy2I4 Mh@`2xH4@ӆZi":|-a'6XuI0^0'' v䔿 @%霵#GE0qեiX G8(DuqE^E"~ M H6GXG?)AO&֘Zq(@f@,vsF@u% 1AsE6YA`aq& B]y3׌huଃ~tåbR8qI_(%'rKZcdz xx8ƺ@Pb7:61r5S*fB08ede=ڍa2^;6 1'ۍlM@1ghJR-@tggmHyEf>gax;Q[Xz8݇L{x<'0u=< zʆf]L/M3JC(8vl9Zpd9̹Z؛:8hkol&wFV^!e,ۍcL_Ouvv!2{:JރuЧ D|1eh>1zC xN>LF J۵W;pW_d|KM!J G\~.lqAIK $`S:^CnL@^̘7')\{l*b9}5L{q(W?;E#xtu`?b2mr^v!L>V1~oH~c)2c MeKLc2B>$\c?TK76qN˹Bp q \FV%w_ս7] 0WaL dovl&eH\sK]|W)g~ +uܪnQU9c~KJKSL41E fK3;&B F76 Z .Ϛry)w7҈C}OL"I^ ^]7xLJie]\eNcy-u1 R'>BIh6zq ൙Yp|l(и0*Lqw'F? .ԁẼ+8 d~>}kߗ\%PsEŪ455w@lҏks885?.Gi@\y*t8DA,x^qr?49'z }zc4KQ|'Ĵ@@~V!hbBIrL9GHzwы.e F&@bF wiJ&S7T0gy 喂*B/z u[Pfŋ2#$Y $X[ƺ$g?UL9YxbA\B@erZ^`PJɗ %2KJXOq=OL~1B@)'4pB|>@eû. jG2U.*uX-hghLtWYL[^PjavL4Y05$1Fq4ӋÜvqM$ˊZ:*n >̃,d!㱓 ::R(3#ST܋0kE{#a>'ܶ>Rg1DaPUL Rfl6@mQTVxkV 4W_zJѳ{&>!4xIA#ν Q89V+rlŔ`S`κXD=4GDk֘& \f}1jQ2yK@B8`عlX泔V#+Ys8搨U\Aa(ZREҶH+ :~z2T#$e885PmźyzLdgp6=%6X,5J1%SYK^eJUPO{kQP`?޿H!#K iF; #k@Kd.O6Kx݅RY*TrB yD4g# gK6Al /( @ KZ=HnL J{1 &t$$.,CTp,oPa">JZt~V|@ / %ΐ)g#fCFL੊vUL1aPJ.f3%9 8LW~D$ \=04s{Ep ~zkו.;&8}۶ϋ!\1!~Hvy'0OiYCqOmuLbu8 6!<^k^RV}yM% $P14Y:A6Yp߬%V2KwU!Prlu)ܓן0zZxM 3iIu0}b3y&rL܌rMx^2{ĉN='TK^Hc d#R`Qi[h c<'tGR( e`4lYgs7nN~u Yh1j`>"a0:mmr3t ؋C@k/~ݮµ7 ̚} :hNi>TCG$2 'ͧ(@zpGuBkȑL{i<9׃F/? i$AAlQn l/+H ~@Mi|4n>PNu:(iaX@Hi 4Q;N4-h|BDЊ?x1@YXhoPdR'mc]eSX[άaI鑀{N hM ~@ȉ,V;G jSNH8鮵~'ժ5cZ˒ A'eaޒwI,jHު?{տּrpP/TC f쵡ׂ^ * 1C:^ t=C@U,J t)VTtXC02ykhQ"yy]x)i x'[s? Bg2{4PjG}\Ỳ8Я!N?7_AqF.Bb\]ޛ귊#w1f/pZX܎2aݾdWzޓ/"^0+u[ -y#sep%p~Oi)"pm8 :o/)ma y`N48=kJhAfXJа$; C?%u}zb ?oo+фunB;ڹSN8PҺyt,+M^"I  V`}nmEv)65CH4L  e`&Tɛ jsz]S쟑&%$FYǔyZ,C?^H)"KA}Ocp[ Jazdh9a]J/%AC,\! PۧP YƔrFW6- B?_ݐoof֕l%z_uۘtvqn>Bs?/0ZiRE)cxb^i޽q018Xh}\pN^Ũ{.lk?/, zXcƚ4vam)r^ãӓYwBdȷ|qC`B7@ӊҁuY Jm1ے]M. yA>+XG ^g2,q xb]h~r:{DU,9IͲ 0 ?S 2 p۸,WAeIڠsjftk>3`jd̑,)@{.3/J_@,a4D@יN*4.PB)cGqV h&B0@&Y R.1AJ羣Czcmiok¶(T|^)ܥWKJ jO+z qY)m>H<0RrߢG1ӧ`tLŲ׀>Ă.AMNM"iڔZR6N?CKm4^Ye1aF9D沮S(Y0jǖW?g LϺ$E̐qR{6Ρuok¦Q3-~č YK1}ҝU`p\REajn 12fSA 9E :AJ4WRQ 1~}<+`ANܓ8FmeeYTt 3ҰϟX7zu z5& 鮆;(r`2~6|`W?kcd_WGxE &ĵ?]è 9Hr_'NO !\f=DٗZ09Aj_kᲗ1_EOAy\/|K~' sm]WZ m<,4S7JJeN L x!HT3 )aVP*ZT 6nJs'{i5Mk / P95D|-*Py6T3e3ڌ*1 7.S}ZO.bHy#;ns8B0W_E|Oe2B̓|C͢To*ѦdKlLϝZ[%6CJ` ̸a^G'׮zFSnϾ~!".]<:fNp6Ӱ)#t!ԖW`t_N`ʮ=,b}Dy ތ?Xhe3_KpM52lfj)'rB`% 3(_?H 82~JND\|3Dᬢ1DQ;h8Fܐ /;:a9bhuG@5-ܹ -p~/'>7(ʙ"E>\57KJ +F hŔ W~?W~q;0L6P{s9 /-ӧo7HiM%.^m3??ۺ!pSPz0 (UC 1M\ ~Y=& @WS 뚘b1TQ+V9A X@ 1 BPԁ T@ [/qiИ1VMA2j8O$!CqVtQ&EŒQq%%.r?{?A|2` Ak`jVTg[ fն%3Etؕa?*U6{'?4@PnP֠Q&mPkQ:wen 9 _ =K::iß?c~A |Ķ݀1Zg**|;ڈ0I08Oӷ&9bf݁{sS@d^O,)1uxo;͐|x5dƞMCl\WPK!B xE˺bM   QF<})Y jL A}^ֈ(Iے6kĒ( #$Le4,`ʗ@kN?O%nmrm[eqP0 dvЀ<=8d,|Mk4k ', b&SHv10{(Ao,BM@2>`T j`:íW_,t5Ar2^1d z"Vf({!(>p9~ns7NAgc%9řnmt4/RaF/3;Ow7l)"A(s`:f { $֊Ͻ?DeypV ` GyB= >0 3c5 5ib ~V@J(glN2]x>ށΆ?.C3,Iv_Z'0?vOeߑSQ>CLvz?/{ /Y4|֘Ɖ{jÙ/iG\_bo+4A,?==L?pzVb?a-Nb/}z}pW%s&g:.{|  ZG,?b . ۄ[+WLkob7ZTŸy"$U$CP|8)', 8'C?+)?/ { [8ļ_\N pS^"$Q/Ob?Oٓ5'=k}L.UWz(@5_o$Dp 9Ak ! &;BI/ϵ3)B5 j9i ;AZ<׬7r2ňXoi@ S 81I)b{^o#5chd>TaAH\2,WL2@McL u[oyүFux-2PȼQ6j-.>AdZ[ޮΠ0odN4Dv8 ^ϧQɺ@Ӝ~2(3Q[ovv'T,('A |.:ĈSt~C-cw6cݸ_?!lap HdQ8:=[=8'bz_~<93&.}iϟ~(:>-H "$L]"{ӈs7V/dDu۠*8O|ݯ=?gマc+b)s6!.} m^o4񡹍 ȫ?Ϻ#D;a_In>kpM[e?~o&6_ h~ݞcq z^"$ocϑBc$`c׼=Jkl%n&'^㹳wq9tT6/Oj'Ϳ}z\F u˗a{kz^ W֯7 ?9ꊉמp|M 鮾~/W-Hs=a }t2s?ÿW\_:WU! fB|2{Igu<(4qS֩T ?M4o&34x}*(ѐ7w .ͧќ =&8@+ ䷞c˜"1YAHDP1*lj ˂!3&>pz/.Fΰ sD@2Ć V;Z-W&){ L8kCkJz>d~iL)\I#j1ׯ0 ?ݠx>dG[}()C۶˗w eI{zȝ牷))%Z㽳.X<x-(v֫@ð. !HoXV~p߉6G1+UX^џ򶢝1E|偸ܰ~gi$ (GE!LŪ 1କxjo)͛Z .6P'ąe]QŦ4.[h M1CUd)\ctzŀ{NѪv6hu5cou)Â!9 9늳|1@*ttm9֊m#P4 [bI+~1A ŁU)+@ skjN(Gvtd1ܳBc'4o#!/;`(H4Fg2X geb)h1pfJNoiFc L־U]V,>!l+qBƠqyP4<Hm1r@REREL|>(~p=Vٕ R`2=v|ǁ69[׌mCOuwH)cwr2N;0U#M`q/ sĶe8+ݘY?f+^2>a!l[r~` m M\^=pK̗8S}P 4YnQn3fB |}xofHQq_Wab";nVַu0"|.1s)&ƳTwYyuPDO%/l;γ8.1CRJ rb>rE}t A~/A1?|0v5^dXQڙ9/ gƴqޮ5_#ח#ÎnlK7ѯ_3K|dv$n 63EXQ1~2M3JOqI`龩&E=_uss^/-)|D Oih{?g / ˡb"4FtT<b`dt* S&tyOCvi!swal"\\ʽ&yk0Nș|ź+Rۆ f10& c+γWPG5&1ctq9蠴Г ~Ɔ9D7P&$#I!P}Փ~] Ռu]?)O !Tz| ,rCmd=1h|$utyC)Uz*(j)`x4^L9-9s߷  ʲ톳pF֧!*Rztoo7D|}95٢FD@*d(#oJPfBy>"UQ{ HcC"~ҏ1Z.KjL SZǾ(!ݶ1<;'DnPm ̓T{)=Z50ZpRO60W??.fM`+ׄH{CnR΁E#g*(;zCqzC A+5E%E450D@ ;wyZ< +Kf xNDBrz UiY*FD,x}1 s+ <:<z]DlFԂ#R"{=*ع9E9x u a7 F0N%/aAMuSpٔ>RJo6.|hiF& 3}`@.MpvgilQ3@:[nt?*J#]=1:́fj㿉;@F"ehGE^1{?@rPѡ>dPM(L@Z1i0&z!Ԇ)RH B V1x`mp۶`DZk ;'c߱n gi/o(CD{P[V<(DP{A 4X^`8@Ed}3߿z9 s>GJZY \l^{llO^ssa v׏ޫ5 ޻VL? ;^`$aY6 (Oanon}Ηǔ*Z.+Õ+О~'L+ A*G+\c`gZ|^xu/be}) 18qE~ޟS*mZdRq^u/!J YuEVun~a~MF;/'iHp1R>&2zI<0h]nj 8+t2iy\:zwO4OHŲޜ :up`Ei~tQ hp/:=bJL2qp^ǔ]ɑvO^AG,=7 E ?CV&f*%'7$uvGb'Ac쩒ӯ; c#Ze_|` y$\ׄW3hlK*?>8M`q'UlcQZaeC[K8=zPp:_C v2 oJqÃƀu4n@p<. 6 kaIΜ}[@ψJH`ԊO;r>)zzMuc 4d`v K<31]z0`٥q2ǤӀOH[r@hJd̕NDmF6XQLrFm =X5bj Pܷ~!MR;JEkL(}3YG&9%+ͦ\ R+TZ?1 /@Գ Pl+ Jߟ;Qg#/9C#:e!Qv|fL'Z)Da!A5aԊH'bS P>L-kܶۖ%GXDy ]28'T 01v)VLT ݋)SЫ 3uA@Z"Ėhʁ@1i/(%7KD YbQFx?vaI60yY9d>ǘІ౟!1)ӯO04~ΊυMx r>8bZ"f@[uZ.F<֊R 3;}LR|IqL6B]Z 0*hc4NKc}k)b]2ּ8NzluiDv#pU+'zt2 ,XSWcH37 f.OL=!fĴO=惗3 Ț"aC.ܿ523q+)]K mQ:.iօm0^? \!%bDBg 愘 >A,Xf S hd)›ׁsF6̵wOIsGkh(O$dmCN]$$h`0 Mɴ)1.dBbhºLԭ3荀O,mbT'SN)!aPng0A^7| doДQ[C̉k=Qݻ7 捩B0hva{Nk%_lŏ ͺ|ӷA]{gff|'Á==#ӛkrI.4|JW 'pLj]{Z {ZCDܨ?tz#`bSu"m]}tpÛD9Fj-Яl%zOɽ5P=xUK3pJ&Neftuou{턁 Gu\D ZNIDzgaOnFL` | 3l0IE0 Ɏ6]% mRܚ tQe6> 3BX^H"KCj)'N BFptQaWjGkA@!)I8e\nW D 9?D > Z%( cBI SǟBef1bS;ޭ >Zw PwkxO_N8ϳ_h 1cok rBp„l1*I1#S&E#ޑ$ J',*l S@#MNt; %JLsiw4C;&Ul @aPYᬵl@LC\hsKRO0^]*@vAeɬC?5iC]Ň^&Ƕ"  L±p%O8kׯ;ZlP%fG A'KI|"&1o[;8ؼC^V1mh!6Te<BLdhL5z؍"0=4tc H"F( hR\ȳ-)aBbB P+{; iH(IfrTm9ۀ AՁ5Ί >YT*'#PSrvܷ_gۊ/dhoxP%-fV<ON[W灜})]ADЌ A󉷷Œ6Ҙu ] `] P n5,Z1*n9 `(xT%3}9uCH]}jnGCg82439 ĈZ*4EHTܗ^;~y@R&̧ Qb$E"R0P0h S@CD)4ݝ~1ppOɸvi*f_{” F4u@-Rr? 6 ~PS c겵%{ZGAJG(n.dڡȦ #chLX )B40NɧgSo(g}Peʥ0}4_ls<$\m$u<-ܲdIA2{)2"+X.)KD0&&d'fj7pЖ=|3Dkf yAr#dY3}v+ O0mFP}0Kr#IE G=s_.2=T烨3ɓUdF;`0S{7WZ+3?p"tA#GBhؽֽ)zCu{ʡKJ?g xc\.^`Bp\V/+'-P˙Z8 ᳯbJ]!߷Y&~zT=?_HB=+-XBӻ!gMMI3)j(B-"a~$<. ~95aC01E麓fCGݣ(e SnM%꼌C0 .p: ;DxXva9o3oD7D?ѧN\*jJZ8}F}!` v{[ݴπeZ| @ŘXEH_c|S4 ܈8 GG+h=IRDqy 2djx>U?n8Z'7}Po"S0;06500GE,<_w̥m-©KfOD!Q]Ɠ^V`B@vQޑܵc.Jm3sLxTwt ctWA}G.31 6$ΈͶOÄRŀxe#&AH!ֽcD9TVeR(̰|$ԥL)['D"@B " ] (1D60ډ }]D4DOch3X :N $AO6o0Lg̮~h  }Q"p!xo E/|m; ϯ']Be4j-PN5G6^u0@fhs0MF&L/}Co긎o\}@rD0zCI9Px"fTp(& gPDk W jLH \S! 7b_ zG.>s@d.YGͱJӜ92lnT> EKW:BuÑ}1%3D@ i+ {V+mivԭ~a>11#:ڽ'F\EFCWGD佋7dV4?bx6repJJa= gLQBEIׁk \((Bg`Y|֚ɰxPj"րkv*r([D9 sbω)s })"'O0iJ)RG:S0'۠t+u2"븰׊}!J @ɘ К"GScLA@Ah)3Y]-Yue/P?m)aWCD}\P2D3JZoscSdbd8u]Juu4Hn @s::թ1"{Mp8f7ki$^6NvT:C%%&T [3a}crII!Eм7Xp;0YSf3)}L\qQ"{ݞ׀}\$Mrjp6$eO]R8`3怐a@)g<;3x82;ه"61{1C %Vo(szX w +_12TЕdYb&p;'=D@c3A0!\1'Rz@f{h/ϯ/ԭpʅxzUa Mǯ_;:zw鯳M61 |+?>|XŠ>=}sg~m[,p+R޻_ zf*W&y?e]!٧7WE^>[܀G[>缱y2ō {CR¾כ#QÃBvPq7i~mEBc M,{0}t8krkH?A룯$p҅e;!}z~HEQKUX@oAj*'`1/33>%?+pլCGi%SA|FswZB0x|ǗFH'=,y?t6"\:.c=uA.0G˰hul6!=8"O:S^RD< ihs쮵u)Hg9UD|Mv1#R:2ayrHct? !d@)sexTMٴ9ׂ ,׊~OFmG2,XouYܪ~F@^|de a$&O,0=ܧf7󖩢|7PG`߇pr9lnR$}\RhH1^.KSb̍"ky]j+'C)M.O F@6Prg93@K}B ChM0nA b0L3ŠLUTtw< >Et̄Dȩ6hYq"VAH(duX(v]TW1m+N 1Dg-W6#܇Zp5\iJ%h@[4mߐ#2;5\Y.&"P ![sB}5[ n 4fAp'j- ɥ@@y寯'=/\B _)S1͙ 6 `ڑ:b¯?~ydv|JqQE/Sxs[hTp\,*(J;z/XZx;Riqs1BƄMmHdDA l1e `b^:+l2}t!x$9KJ;&yЮv71&t!(CלrH&\8ZG7RX*ϡX6|ZB&ߝ\<"+}/י$^]48~Lߟ]ķv!f^˓; lRN%u -=WC'BS=`N9PjF*Gާ) 8A36`%˥@BAV<;j.P㹒Uy^#γsxfR}>gS-cNC 9 J-vfL D [!K!juS Nb~~(dJ k֍\q9ݞ>0 `jU96ɽCps@4CŒL2kk>?'P3Xh'(1*oM P&j~{)$"Hue Ba$#.s}|i0"QnBdvƎ;K 8EZuPK2>|kL'.JƱ{O< hG։NfF̻SEmmOL+liI}bv1Xw)! }O}y!cEަ$3,l(v.~BP'vΆ`1 J3 .zq)'%fhA 6%gPlmElY%x:-Q7XȧLOua e&!e~w|z0E @X$fY,= \N 1(W_oTOEwI;so:91uljzkHPsP^'u&){yژ%G3lbq@8 X!@R|c\0YQEo[S@ Mp4<RMbh!D2}91|xr!vu념#JHk8dSf2IY\OA?j)ܭ21&"F;{ǿs<>Ok%\xHoQKFT@zcjI i 3ijVЮoJtu`[OJg#p+tp|~ ޥs܀kX{=s? ŧ ^I`̹xdl,{I88᠆ -VP'c8f sY#ݽ(a* >CD+IR(=)&gA}u%Z>F5rf Au},RםD KRxa rjeZ%xp'3A2L4dmH"ޡm\!M>䚟2N|Sv98 5p+8;K'فAK: ?@Xf!?H "PQ$⎽_u]Z1ų;x"O8ﰦ+'98X@Iʲ1x.ܰ κ^,0>Ho8K\#F98yosLİ$"/ؗfA҃pA;dAU) }:$@[ 獑"rۉy," j׋X](75>tH2}3V&l} N$l)~h(kJ38/&фh<@9ogPgAρyv׺`MJ3|>>to)U4>L>ݬb}}tI"a+ُd"*tr*2A$eAdBAh Ԣ8X"L:SL\֯zoSz <(9 )h6hVn {RO?K} O<GĂ6D~=D:rޘ(7m-9$;4-txO 6&\`w)3-)4}jqTR ) v& T~R8zDDF6x}r/[D]1:P#kF3Rv.2 vx;O ڃnIL5s__qFC")BѮ 5*D@1?'"IDK{}P2rѯ!mo5djMH. fB'#bLu'E;vBBY+7Ple 6ya[jNE.LvP}C[ @ZOR/NKXs $9QAl5:O~3% „])ӓfN&$~&l4$ (dJ@$+~L%! Gŀ ɀ5@(}-SS pہʼnZ{F3{dol˛rM ՐcB){͓{E&ttXv(A0Z::wZ R>l:g4ϥ `UT< 1btz@Hyb y@ueDnER)}!ԲPz) o8Ά$&\G.{7ucsҜrSy JPZ 懔846=V0b467*%)&7l2rrl=J?9a d⵳ѼmVC;nsB=V}U/ }a:x>3JL`@a !9j XR,{ٳ[Y^h}rDY e$p袉C;Y! xR RDrb !| bG+CDo9 @Ѹn"8v=̂R1φ`'_Ü2MzxkTJR\A /-1)?T"L[u!Ą`=9(%#VO$HۀZ"RT0S)1)kā ^ٷ8Y?N75ٰ5d}b7%\a*Y?/{>m3Ɯ> `ro;}싖 lJQbo9,WeYrd!sފ1Ё9&SyMtbxjzTz&1%n ?w8}bk}ٓu[vc|]rLhqyA=-6\K.\+^p߃`cuC^Ŝo>ֺR~s%wS_q׍t]D!"i僵X`d,_I8DB{F ~zSxP>rEdPgCT%7.>/ )V)zf,SwL@ N:= ?d7yBpEVՉTO?)dQo412I_1U2to @YɎufO;F)Ɂ%:,K@qV$P)!r)dP{`>; h'm6=3͋4_ս)^57Xf=rO7mS' y G P "d!:a7.![ .0{TP2Cz-e>w(>VvOcZjEh~B7ggןB)́ Íin^8H欲`ˎAm`s)U1fLmx>&=~}tĐYMJBKMzB@0y7 ̯ h4ɨIsO`D_G$F:r+ apw@>/6C7b7[Ixք,lo&)`+dau /JcigҜ'H LKDs6p\d"Cf6 "VSl[m*n QT$L&IG8a׻G10S%`PcrF91sJ!a+9l9W"!ʥCp% _Ԃh6l D3SJ62={TEW4>g s*9S !D\awǗ)[lUK8Oį}0L@ lD9AGF;"䇏"R(eC}>2n#b[A1 mNh4H eQX|1KB 1 CcE5Z}BCy%k3gVb )2DsdF[uR&|JF[5MH0DXr$EӶR+z7zaAdM%ag΀Ol'Y9wz)Sԁ- :z 5\xsS ɸJ~>9o{PRD@(Whks`xlqM)Ca8hv:zE6ok(0{љB(m < [&vN@PT>)"½Ȧ$siۆH)b+Q(}5gK6n+efS?9|:w+|ra@OI՗2Ѕm O2$>#UBLlݛ~rjpk2' }TN943\+J]M4oG^k zd3cW{dY)|!8Ƈ8RC ^\xDQsQrL}^HpKl jT7ڒ!lY)$p{%A!d@ ]Q#dD_pf4"+DrkI Occi& ?#Ywϯ'd@6 IIg}?Qma K:"V~17É69Po?'w!ȍoc !p ? >F~BaV2~OC 8ΓP A[q)E0fC1sQj!BLX\D9-AbcfL;B|%zįOx x8~Cܣe g%ѠOe2S|@L՗s+0)MٜN9'F#Sh{p4E7j&؊` <~_@)uQ yEV)ʩ>AC\q0e gN ?S^tU\!F2dƤu8@ xzkcl'z 9a\9Qѯ-'1tOTldz!Ά6JVp@SeM(MQ,ѷpQbį >kpsh %~~79fʝlw>#:&7qZw4};AʏAj[hB|] 7J̀hʔmSǠF8_oS΋@o3%/3[u4n,[le8 xk58dBR nl>nԁvl /JGL2(/ 9#ʺP )Gf9Dy /@15<-קnçߪ ̚/6Я ~U0~pv7nGkZC d p?NYH$9rZHY)! eEȡP* -O\5RV^1'I'i0aX$ԸRn%dI'~n!Rs]^q^OBva7tu6p*x" |1 X_3C;M7VY"ZWs:BR& fh9)Q*dhu +k}8MI7[lbt=׆ǣ`83ťV}NtGXߤ7y-5L(`]Xyy( Hץ@Vt5]ÝqO\Ŕ>]&K87 uv0)GlϊRY630zC9 %s 5%>Ғ~\Ci_S>2,Ia^.DF>x__["2 dS{%[g{! >2U_%~Zu&ɾ0I,?7`RD-S #:,qЪv?|oufTF`mWk8#?Ӝ9UB9yP9 Wbak6ܟ꺧+#~$Nj򑘚_ϵ Yyn9?h|~-  )[/?+qv%rܺ|zN HZjj*})~9JN'k+TP*7B1ÂK@o:]P L<=WR}U~ ddLs n0K4(R$_SL>sH !i@*el雵6g#!`){8σ0h] ҕixXm!$TyLlpY{=)SRv6~BR$4SDLdD991 %saJN!mF)c<;Re 'vql{uu6*~Tq/j y s4t=CHׯ?腴^%C'M1Dc EӟWUuGC6-w4W @#Ƽ0BDB%D)~oȾW X>/O0 B! ^@NT>!%2b!pSm'7&~}}aH h&0m9 H\,1:=Z(ldacR<9eL@H8{TD&;PX [Ry67(FolYd1x$;"￾CBJ x!JD͔1PΆgto亡a3ut8{ 3:&_7y} y2LuXe3Ou#}~jIݷ1ز0s ߃C?Xqz}HXX7 \o?1oq3C~>K05&8%b:aRD\H/(Vf@%Đk‡IP܆if_SI.~CiF:7h$I{[b{7CT.,/aniN[s`(!>hHnHʙ r.N'%]@0e)}u`Hi&%$e,߱&aI.%up $zj.p6A R`QY@X{|bě@6L̦}~"FR/׆z$5V ČնM|=6<C6J&є~&! :nNTU p,K76Y7y,)mP|` :fw Sf|:g%8돞"~RJ(P9L&e3wj ꆾR 3LDS Jjup 6hsE:qM7DLIPpD{ͯ!VKq { e`Vo!:\so,[7tx h(LnD ޯڅ6jАa׉U]p{v-/&!TZ~l|iyhiX?~ e+s2Fl`S>6@o,1$BbBLgu=qNIUpi7F%X>?n/hB[L ^ ,"'Z iʷu+>.[.TQq)yqg8&Т"ϜE6j= Dx`:ЯKocp+lEBw\UP 4\ i, LUNEb@ mǯǃ)J"1V)DOlBר+7jIi6se L L# aΥϦ27bHQw}C k'Avc asrb3]}p|9N!Y %oc˜:H1Ԃ^&q։no!:K7g\H( F҉=VcHjEF"ӌ\2ltN&$E\cALQQ4+1H b+ -&)py̷'є="JQ'd^Ku,.2׌(lRȥ_ȥNYSjƤyIs4q0UD@u6ϯ͝Pr$6D9Gm~16$7nPUnh0JQzrt7hPڄZBVbQ\'!~Ę}%1`6d2:u6Kwc sI{n#~'^-(l7 Mﭏ۷O!ϯKQ놔3''(q]1Ǘ)0uqZ %a$gbbKΆ1f b$0) RB1 &fǪYg /(~"%A$sY}۾3blcC}Q"gR,9GF'F`daJbY5b*V9!)5TL! LF+R5ZowSf!>(;}v?Ǔ#mu6Fsa dVb8"@9#i 6L}>1f$ᆾjUj1D^~_Rˀ 46%4{k-e x0l 5E9;> ~ϭoTĈLDm 'he> dﭐHp;@!c:ؼo_'b N 52d|% zlN0<y_dvl9bv|'ǟ5Akn~> T\TG f 4ݤ|I^L%%dz-"/^[?@ߒ베Ѻ3s1UAjE@XwceO62IB. 'Lgi@oL&7=QJˍsAӃ@x-rf?>#yp"{3ǭPc7ܯjz Q_!Ѿgn"@!Ӈ|u{Br ߴxoe5lgkc} 8_h/Ѷ { h~sq(x'd+On\6#߭붖z HZ׉N t#o:a!,l8PZ9= JO LhܞO~/0|^&A5J:{a!ϧ+}OBL$S԰G$t(PxS(<=q)s%-P1#؄/?DIJ! S1|J欶RwH(eÄKaj(~RkP`:C쓓޼Sr{tN`NgT;䂎8QK#bK*F"$V)7s>פ}v)7'yY#S$` U90å!sOOBFڠ3ͼɸ$ D/Yh:/ 4e9߯I큐2hcu0a*W@hS0a5 8/NA ˜{xX7awi )rl@'נ$hvԭpqKfƔ!)8=\QJU6WsS|f?a*Pr,F'Pv61ЃLBAɯ)e6pĀ7g&͉ƈ_+戺HO[rnm ĀTӀR?>*3QV :P c/lf\ л!ÐD @mfꒂ0> cDHB`hќa!hG`~<6t`6F&NHp ́{ WUh1!@5jnz)Pǁ"CfD"Q܎],lIp7&uRѧGf7J1vb @W1)bm(/d*nNxG^J{ʨ:pW?0* N3{ٶh(LyHQ &)&,o ¯łd'/vn4~~&{3ifj7-WR-j>Oc?dlq"!0id؇þU,UOd}T~CRb} Tb?.8hPzHd!7fg fDFyO 10DA[`a{h2@/U}Tk 4 @CU}\<$$at$h5֫=-" nWAfstbo`a.G5Ͼb|ߔ, 0N`>@b$ - H\J@=4(YuJB^nv_@~eL (?x,MX\bytVq?OZR4R_4<jV!x"u]d (A\ N@?OITvN%%%T5'A"RO G~F`!IjɪI# 2Ujl $@pt> t7PuMlIׇ)h``p60Btf^@|>OOD5!ϴBlD{<)(<f/3F/k O崉ϕPʎ缡Or0Mؗx SO,9c'M^M7X1ِ srm,ŋI1" v /,8phBGmfb^#p w ]  כ)30P2[u{Jz5: v5Z},m#" bݓR sb>AɁ3 5 ã$];FW`"ʉx-Soz%afpv]ϜU3RbJz#F3"te&gD&UPB0|1eQ g1RrIT1dt׈N evsFGk91 fHF[z;3Fu %e~4Kxl۽ $~b,IOX)7 bx-& zlct*hlCcfLh5 %@8]u:1EWnr"&nF Wk(x_" &kb@}nèV7&3e>}rxԌ"1څd;5z/Ԉݥ AG Ά [tI)WGoYa @ HPXoPcBl00] ȡ D mhEFFpo1)"&A5Kzs0=s6ZMn|F 3\킁^8A b"b~>dEAi~8_r u4z@q^'42r;A?.LhTrXw9|(3sYNE-"1jܿcH΂θ p3%< WtV$jN.ԺKU0MEN0}HnNDc/V|l>pr0}^^L95'`CM r*hWqv\^[1 ꬵ sNjÜ׉,d_ڲac7s7rh q9$DiH됣Ohs+k4dSN$hgGb*(yH9j C/TRZ"- ]͋? }y\9^y>g?sFLcDӿZu,]׀>=J[ |@y_dw~(~y<:{_u Zxp>%q%.[Hޏ=d2u7dրiO23Yv#Ȃ_tOJ3?f [׋`Xĺ__~du0OZ`\\㽲dn5fN E]bٲRwh# {Uy>:ToO)K$8ɈSsSKN@J`Hntz'X~d|BoV<̞%;D#)"`Dr/}XZrr^Cࣙ^ў&]Bco()BudͬB"eRyN<1xL%x5=u(LC~@ҁa)MLf]D}$ &XӴ^S8GB'RQJ`;gbpoCiM4HV'BJCjWLf^qB vM9  nspP_F ?P}cqIn. $8OX76f5D2e9۽Wɾ36HNSIW?9$vOHLJD>w""RӤ'2 ׾/IH& _$ 2J-npoвMhǔ#EN)SidCosxZR0앯sF̙`i따Cb3rNzTDO_^aۀADZg(JbL<ﳂ `RFbc e!SлA5"R 7l)D>K"k?~k+3}:m{v"q$\vg'TEN0NK+6AϑLO'J*_v6%;$F)eSC}>` nPJDm~|Rf48[^Ǐ1 \ׅm잘R6l5!\p~ϻL`; gSz}ra7m*4%'Jb 2}B2h.Ѥ[F 80CTPj) (B<<l!9ܸF÷k1^ (d 9"511l`y(x)\׉`Fpa)M$DlC1#XIqӟtXH N)Ɩ21u<Ս%ƻ&[E?+Ä'˲.Md{q 8wd oIɈ!`K)D!F%%[E^qo,zDUOk)wP  @WEuaX1 &^k\DVdF#d+LEa%xԺLq:3 Mz-q%: qy^gz=q-)%Z{ &k0|./OAZ4%$A}X R bO6jd˾nU`1ĶeԽB sdzl9܀0A6Ю t9RZ9'" [KiARk 5C)?+0 탖 lLhW*%Ou9ul%f'mKr-[׎/0T &>quE'SяPrFf1bAJB)E<$0LYrfE'@?i{ xtP`J&{GBp)m[&T,%SA]=r'ȇͿP&VVWnb2Ml v[#yi/lrz+ay7mΏSᾇ4'@>q{ѝ!^:0?'qIN z1I*=?te+$Y=1ty(;f :Ύuf-= +Qf5x<)^. Kk>?&.1? J/zׅ[TIE?Ь7 m%W1)h0z:<߀STnzl̅abB݅ު78` J o7kԽRb̹fjetby UZ,ʟȤnC}ntu9LݥbI_tI6d9PrIo:Zlp砱c1' @oA&@ҍl lu~ji\8 W݈s\OYXKkrCI,mn:TVb%$P껠@ :[8tnsVm'X]vzk7Dԓ7-Flkt:>.?QK¯_zsd g9 cМځyAA;0HCœ?}C$O"ηz2!lM > Y̆Bd~?_LJgO)`_P 0d1lσ{YД(vt6fh/|}eUVL)d e]2*! 18JC}s`׉-@q>(jr̄_CDs_}`ϖ11yO\!ll@:3dqaܿE>H᷉Gр(Y  {A|gT'Jf٘)b'q`^(1 iMb0bd=䚐lb4~~O\3c)39ﴷ_DgfXS<sA'rXbqo5@Yr {OH ͙L]nghvLpF l T\h|TooeP-28FG7 2 SF~ 9 hi9^/sT=|n9u }e NUp .0MsLfА Lq}(%o1W=i.q<0ASFm Pb 2'[SuO7b^y߽IDAT`&x8^{1Kւ;B΃{_L0HʷMC ̀P*Ӈu"l)w~zX 0? HԜjdZk 9샒ZԌT4# a>.6]B-MN) c76zp8>#AS2A&*4x ~~N~nRh?U+xTG;b8pjݡFA67Jpq %K~DoL2QSiZlRKf 0q.6A9hLV8 ٽtz.CVp(9xםdV J>'4D fD׿@dQ g'3U G0xLĄ+φaSTA&$GAP(@[0(&3|=7C j :īLpۮ|Vd]' !b{lNa}e >Y>hzz0ݲ&ɡpm TB {ȉLs Cq5 rp%|6fv{/Th]a:~qbWd=cvB$P02_[cތVg`-o\,|}X}>-~ ym \kSCzGȸ:׭ٰU,&@Ơ\uataq)>\'PtgZep"n107yh/,FtҲYmۏ}o"O HbYuf(Hf9Mfmʶnq:qvri'vCrOKrX$75,y!K\W2`t tes1MN,JSZhbgE2`P~P[EϢP54gԈ.cz̟ SʐceB)N!]Ryu )|rq8׆ٮk11{vZRfy^oBnAPAݾ <ʚɊw{]!>BwY} !Pb#trp1fP'B@l>dmڲ ۇj RXL߼vG>r^ll)͒ B׷?uȒ.*hvqnscj&p /qmۆ]~橠((c6_:ط6}dOP浦L* 7+ڢ A$^\Oئf%ɓbHr rugI$ɻ+;Ȃ>%OF9Afv<_h*0У.9.zr^ u"ex<7D(ط_IO$4\cDx #BI_H5 51!+* L{Vo ˼ޠQjөGO@-" jx_`L'ǀx~"b͸Ti 3t`q0gxY@B 4/Ug}zF3tu+l 6Scȅ&1GzЊTQ=<`fض0'"뵂Ix 1"BO1o-5cAvJf2ds<<@pΎK'RhS!5 1D#@e΋juCDk16S| 6~߫_`ާ"VZrCza*Ϲ__OzcC.:\JW\T>h }9@&)1 glAµMipP ,=R ]B'O I s4F3THm@Ex _ 2;_;͉pHwQ4dsF.eDagg~9''. & hѕ>V3,/ Yí"k%I6c_rBR-5b>_{O[+%NN& "j%#8{wjjg*RLCH .wd/t]ݻD'HRof&(K-3ި7%?.vZK[Bte QolTKSErCi>?\]-=kaƅh?#;P([JvM^ eh vѧ~ö0}`*SkRo,~b%-i=sT[zR6 BrݛN Equ1&xSuε4NCb sߴ3$x|9h"(Lۊxi<Ȫ"-t?`x~IE4o nN|XX-cQRY./׼Zbnz7e϶Xdvs$;x' uF*8X da[gGNp /)<(7\@24^&}t6ȟx 9\)eJ5F ёSt_ͽSoJk\5Y*EϽsthoA>k/R}"' aJoXw A4j7[~8C,&S)GdI`l6z6 "$ݶ?bx'3t^ ,R#AaQ F`jdBk`1t]i+jطPhhELe53}QhЍz0(y8D~m«S.9ϗNe Sd_<a~Yr٦` T$g_$!'8wH 4mƽT*\zAbc t=; 6i:|}}5 cm EWcD0!g̘NtgC:iB5 O @:J(% j|3hH)cNE[ лa; OA(_:9rG @[60"՛$e{*G&4u\RA0JJϥ-'D32^|>h<d2>cWPsG#@ *7eh ^wd={X`nHݥŸ"dN~ѿ,gMJ>0ڄXy\ WQ2J(1*[oad{g<߬A6ZM,(9RsFL !&gN8\z?"[s5ḳL@ BMA(ێX*ҾaI0w Ж$44*70y+kq$DļĚ U)9sG4OfxԂyMBʂѽ!a&G̦{YsLY!@"0smc9F@ ŃA~ i Z&n9ihNi8` I`DJ^Đ$< z6Um2-ƈaa%V~8 gGA-jP A )SK71JR%jk=xjxKsPc³$<I̩ K&X  ) 1_+k!O2^woTХv!g>P(^{T7 ׬w/.XU*uPkER|^V?v: ZM)&؋ޓ9Hμe=b\5%g%^ag X{i=@M6h3\%x+bܐ~ל}8Qk` @t]?dNAbNp 9:&96Y Y/MK.?\+7(kJ…L֯ i7S-Bq1換t0e&N+( I`AMHѹ|on:'94,`IF~t@'փ6i>k#>/-Nbv# [1X&㟭͜ENFa",;~uyAŒ#?"h^q[l/Aɨnu5N7C/c~&m)%\y?TI ƟK1'9nqH7od#5'DxݕƷ.,:klGHܰ], ϻMPO)e!`wY9d?@1@]|՜,z%XGȈQ}>=rGO EyyhE`C)ǘc'  SE .m?;]%bsng9`-; diC>0ٚ+?ć3lDd2o)66# @vA<m5b$dڀk>T'tzJFl4ڀ2wR.,0 ]l&F I =7Jx ) B~$V#ׂ)g(_>v6:Yщ#a` D&qꌕGxYcE0\0MAd,K)41Z &}G4LĈyujt2t ́}+H%sQoT!& m_1{bQURCoP\ct7{ H%?s`qOsCD ^Yh lx~5&A go1Qb4RNp ԌeD($0Hfo*ƫ_i1."\yy vbH6 F,lvw <b[^"l^ɽbB]я00gΉLT[읬c3Xp6FJӐ[]T1.7 . c5. o&I[n0jgKĚɦ d@NɲS)}0 S\\#;^PY e'_ׅj$-b##I 1U>D^ԇiMHpCc|Ųp^ a}pUf )7xwybj}}zhYpuW[k Hӥ51 *1jdt" Nlwސz$ _٩:=M1Q BќI?~m ؒeaHS5N3|;cuyz'S ЯyLJM<bV7fk=)>z7*Jiiq3ezrۆaLnzV/)-T! 2|!)duI-V|7c~` D~UzIi5] cҝ=?`c+ SJ-OuYj?\vGQ)$F@1'xAqk=Q\f|/?JzSOZ+QL,)*gO4D Đ~.A{7/Kt>/SQ t6 "&ϹxS>qrIaPq~쭇d\ļvӴ{1p'0-c\@H պ&_t5r:͓lc xx8@yaZ= yxqo+Sy=t62K)y"@|Vzƺ ]4 D 2bEQE}3A#/ep Ok{^XX{d}^@C^2vY% I8U5e*)- (ezý 덭.Smq DU 0Ћh1rObť,dZ VAXΈp1'?{`}rD۟DBD 1ˇvK(9`{t>Đ!Dk̽x&pCϲpS 1U?" I6/fJ4L[O1c/,&mg2ݐt>21'PRQ 2rT""(K@mb@rq!sGLV3MsBd>>NQ$uESg[3R)xEP"S'wEI5'V9R- D6$o@RspBc0GG?$8.tY1\p^,nr!!uH9̺VsAq͉+@sT*<(; ry^?7|@MR _ϯ'r)h~"ʽ͖gkcREI 1"`#͢P*#SBV"umG븰 }'a /_c+uhc"(78t!b( H!Lyͤ}ǟ<6r*hr{׊e Alj 3$k() 46S%#uT($T ׿N6.+4]p3iE-^쉅V+)l6Ժ3+r 0/Nb3逋)fhP׎`XtOҼU?cRȾc`PBrP2rwt8ڇ?] o9 B9[j@pS_E`H>k`}>j 5s L: rP|ުvI EX,p@f^\RRpLFǩ. X*.4AM9F h ݈wqYC7Ym֥uqs}7D[iy,jEd&d"$ȏdT&"EV,D"3#:O;ZsΈcϹB5OڃdM| Hyε.*dR4M$j$9M%גeŴl[Zνȕ4gT\EaJX 4ztPXSe0'ƓJ-Z(yscvssXQ~! 7[dHu-Ika =0ыg=xa5{AB P]ť[K 465CfM\Cc(M֭4SKݘ?nqbzĸLKjQ zڳ:m*{3YMƒ γo5sBbB&)?mG^/v/ |pb jRmo~z9ϫ)ElgޫtcDNNZ+G9q!FJIM:I‡ {a7(Xxy]Iv1pi~VMb0yۗ7no.!~:Z]1؊bw#st%@& [CGZ,tn p&&N7yFõSaQ =َjLƍID>Z%|w*˓LjS5z\WӦVx|>{Y}(c`VC 3TOA %2:ܵ66ei1S%vk2J>@~bVn<3V*A>&!y[ %Kd2cC>Ÿ 1^d³ >&}3VE}lx n9\g }{r jeMvzWj䜺&C yA;Хp4 ]GdCik/v~IuBCa _D>= kE'Ȁe峬OVsg^5݂ԏZž$Q+~}~Փ> EXD,޷,eőa!c9~%^w}ǯ21MwL#W9Wc6O2hok\p[ jpH.İ|`oH^j1(r⮫3xJePg/m(}R @W?y1Ok:$|BI hZ'7OC2w')89O .l%|~GX˸͉匑JPntX/|| ƒ AQ>.[S:P $S9l7I[pB/sn X -D[EP#,T_Ŭ5c&[JJov8.Z{G] Q~-3 UVbmυЂlhQ[ ofz<0^)E M*LALmf a yQ"gvj-&mkG_CdҬ̌0 =4J;j<̉f ѲEf33&.㜧;΂ b.drt*ޢD~P:KʛI-Ov+J2\0ƫI}|L]lpY>&m~/~HV @ QszEuLpN+9mbr7p1 aNI%` 5iTƘf$>'ۖ؈%&D{ VWI \[&6g0Uv HЯK`C@kfxjw(yyH>8ڠpJZU<6 ҩY:*5Գr< yL}b4Sc2NB0Wxqbs9rβp!ݗ;IN@x{UZހH? >= 1Zd-ŋnF,+}@<dད>IӇtV_< Yd^Ҁi̯>n ]bfX%%Xmjض|y:̋BTiy wjJQ`>>n7[ +l/n['_}zewaIVԻ.& @]pp|b:=Ű\f ޘ79_J;S2q /cDLC?:* iN4}6c\FLwy^5&uƫlSs0ibn9._(ס0ٻ"(ې.~ܭB>eUF26j@ŤxnSnO8M6pg.r:=a-l['[5C$sAi62^`]k5f M9^ 4ؼŘ&60E^9oȫJ~< ز 1q1ӍXjqкޘh1ʰbcͭIJK>0iC M W>pnca!֜ =+99V!5u4 VrJ]> iSƟ>RH&#aqux!oooL y:4KB7`޺h'_iZ0F'Mo,ʌ]υ7G/2SP/߀Y59æJs]07Ĥ!b"m9mv^Abƹm\& $CvJS$wP4oLi52U2GLJDL;Ѽ}츔iքh@c\NՓV::5 jKeA4ֺ̙-aK%MSDLn:M'wywޙ.)-_E9V)#Tзq={10C-zțL=gܔKd}^*7[;(o NfkzJ eӪ' MR-q.nqTK۞n͹bzb󥎼 St(u, ɀV'ON=LT?`@%I[+CQzCD0KM;= ahrAM& 1a}#7}fq4#.hc38Sxh夜3֍ἎwRrkfhL%ok gk[;+GG=;BNb9%֧B2;V% ζ fqmANIlc/nٷIkD0?K0gZig%9sC>yd.5il;۶s\5}.ԸS dk԰Z߃C3Sy.Y1 @9Amfg!%FpY~C?l{A߳6Nɶ2SuObt6&Qs6FRݓ5}.%&_:!w_wRVL /{&$&t&M+y>E)[$8J9*K]Cgww_wם[O;A&ź̤s1i 8TiÌ=mKY2~E\w<_eJ S=GRr&Nv[bķ!rV9fx2Q( ;?/Y% T_\zFp'[Snj-4,j| \(XCe>ͧH-<9.uXF+t9خ,T꒭U't@ka'Z $[{zǒ&±f~֘竞. fI %1xvӽXv D'͂Jm&[!m]z MFG@gٕX8+5'B;̓[=`Ҋ4}ǠՓ fG }4!_ wΏ2K 4ρZL}(`iBc]r1O.C=3X\1&-hg`0 SK4:?=:(t]J%dmJ9齊hM?@  czByM%+8Lj[9Ziv4j.zΫ>Xgo&hz1BFJ+5F_ES7p"ȧM$kaky2al輷1rRO}O`Xڅz?ϫ Ɔ쫸2IZNq صo7M yVv3龃&sj/1Қ hJ,g֚n,6gz0{fwN⇕x:hԾ,Iz#Wg cvhC"&w(Ȍ2Ck@9e?$uk"lp12L7%tdFLZ񳒝ҦBH3Z;>QNx<ݛۄhCE&܉&xMbUH9jIoCqc0'Eٶ:*DGiE=d^8vHG) \ܖ j'o|{ڴOE|Vd$^Kyho(6l`Yi6jb1NG-ԳBI6U6 BdI-M  Mx>9,ݘT[8 G䃘5γFj:xo~\$ȣ /@yNIem0ƥ9γZS; q:1=7*u'|x*8|)R 4ONԸӇXBuNf98zl< p!Qnt3)}MhPq2m*;}~|{0bV޶6! dpd!UaøV0ҨM9DѸ)U4^t(ʖ2) PBm[Gui0ff] i8⾁/˃t|l"4?vV>q:q0$0Z1ImR1 JK=ny+KCpĴdfq>}<> i<RuyǙen;Ϗ5^k՚ء]9a$t0sIq@^*9ϓRMg+kX~UVB&AS1Ű6,AԛV6tpVDKj{5gRH[uvF@)C.1;ξ%% ;8{{'_) iUǃZ ѺJch1#&G^~).h8Ĩ,_?>NFi:X.;JPիKQ@f(5Y_꩎[NlEF Z'?A9o>~r 0p(H9NeKg[))~|q]pd {mSsn@aN ,yy{#}lb5a}oi5?|< dx̗ Άˤ|T?݀%!<5ڭ_Ukfo[hS{간Srg/lKJ.؀| zl/yz-K]4ZWr}]`3R%a1J)XU/LL-nk %=C}~,mŠ[!{6 J3^di?ulYtfֲ v#pQrt1=$6nrƽP$i?Y3ùYNgtMb좳Zҷu!ۅ{bw)!O]5(…Khl k\\ bڴTڗO^%Wy6u{O6;x'dG M>vMõ@hbk .Vp ~{^ùn7\6nk3l0^PE DSmԴbuhO1gQ\jB~Ew.i=NRu'z1NdդtysδVx~bb)JVL"jE{s9+@z'ýXu^F!k0Lq ~Ejګ2-ژ1S獏\F1)e ~fB`8`-xۦvb v{tv,|GJui&Hy$n1wS:c!P}gc65Aѡ̀ b+Ojox+wĦloζ6)Gƶap>䗔N71ggsyS!SVftb4vY|qrri8#>S9T\X~:`mC*-EF-g.VUoׯ|<卣Uz-|M ۖ홳ua7}B+ ΨVH$/ZyQEy&^l_n17R| {\L6`[ܶ:-꽰ľĨw"6.x2&컌wGatYÕ~#x=s{R0jǛt.hИ: EU4QCQbeW^ѼhTۍX᜔BI!~H)GB$?^R1p^u5ӱ5^ɔkҙ;lȣh ~;J3Mk'瓘 ~Y]J-fVʩט.\Z]nm獁pJ3S{iMfFn7,$ߪ<; h/CX[@ .E1K0Mz~5QG )eoPdbNHC"+ɛu>5I㛔&1m8jcX!woԳ\۞x%jM&{nא]C$7u?+g0HRMك7PB|mYs&5\/lHN,0ϔ2G~ I sP]0݇y՛kWCVC!f5Yĸ}"lN-EQQϦP+?oF(T]}`| P`߲@|:fR,ϡlzld@_Dp¨FX7}>,VL%ji 8 }<.ͧwD&>뜫ś1;̥X1z{iO6}pivaJnyq܏ߛ|ľ+|6y:(΁k"d?8^w " be` ǘt!-[opuQOZ ۸=wh!p Zb`a^lɅ ):Z`XmLMMǔQy!Dwd?H4D'&qdov[X|k/’Caʊdtd,z5U+UBcJwv}ȿMp,ABJ|5 Ƽxɹn=ٙ>̬):RL6mc.6sN3! :7PS¤~0~1  VԱh>G9g&slüj2^Sϡ&~!)Q}aEQA 8 +zy>kG7 VEv̋LQ74A3v+{iqM%] 1(3O`ס%XS1j^ݧDVvEJ* zyMW\ˇkۡbwKxB'%K&*њHClE`Q(sxч;D[-GLh~XOH=K % w1&w t89&mi@R9jmtdsSJ!FO3OʙȠ'ޟvpr㤟`ONJo=r%$u~R[y(XAO{a7m88*&a1t.VUk ܷ}KܷD`0s2P 0i!*ۗ1HMsg-]}[v01xQ54ĖΙgxhɇ3aҕ^zCj }<ۍsqyO8S n:?" fz(( cdb~'8Tљ> dL_S7]f>)u@p(2%!~>(,Gط;>!Y5cvR3GIij堖ZcpS]v(I[g~4?O8=2jWTI 39y)ɛ砙Z1q>"v%}~Dk:ϳjX 1/&sM{RozN < *8zŖ:M0xemٛ2*1iмo{ |lib¿UìFREl7;•̈́zԀa5r.Q ![ξ֮hxqpy}WW[1۠=OZE,C\&szK&X9jgT^iσ'OSZq>Pz|\Y `}B+lj"V(&]%Jx`j.֣Aԙ &Hd .ٽ &0Ak֍{ '%!Fݜ<>|vč=GΏgL@jp}| M1$׭ !j)p6FPӘ\IfR^{Yl~%u?_~3|r֏^iI 46`ll\Iş ,-qyD9 -F]R?}g6zt\f"o/`g[kB"{s/?1U˴1x>&S+51Z-OP"!շUw{qZS/zZ,EK>~LԵWHHu%m9`V2Ƽu]x/kCj 'oڅK9^]MѺM.2l@B% )bMmvCڴӋTQ2-?#_&vʋX>F$hZ B 5,t>s:|"pM 1"OMC0Ѵݰ&WjkBTO\&:3 &RBbXrNiފ=.!9<AB; 5yl|}F^lS}h 86Qʩ gjI+. ]R9FQ~l9D1Ta P{ &.R c\{K31m^dI̛"׮(m'>2_F`Y_BԱMA̖kÙhP['mM> bi"h3;M)~ 7m"K&)%RofiҺ>4qff?mq.0e,v' e"vjQA<™'){G2$7y+} 6b I40L2цج!;! '2Uf=P(!xk`ʮ)m6 rIZz?)<g,bLNHirkҐ,bzԣmڊzD㠜!IZ ^͐ <(m](YBN!ĔT޾$@6l,4x<'o_jXJŧȶy2Y-1yMw|B0% ـOg`p-& [bp~/(syyqxmO' a ԞB\kM)>$r$9GsՆ#?o}IC砶A-<>: z哲m<+G~r`˙(_MWyvyǕ.7ƉmϤtI9q,_ yNR5)G.vPhI+Z7c4\xH9Ek&KCNڛ|tY>~˔\[jUc0Jv*8N6)QJ/}9σXU m6cRb +Y~F[#8;w#8d-f)fmFXOMfy_AGjrz lmX̒猱~}o:i{Sgvbq9rOQ)^,j{[g~"gksx]c9VOnfsN٩y'6rvY')LpS5Ęk]{G*v윓_l699t15`>ьT{g8yi12@R+dE}P",8aay(ae/w|w y0['ǝ1ĺrso7w:\T5R;MGY?-,gt1ʦ4S[lb] pBeo/kn@|ӘXB$㚪K629K e0,'ho@ 5Db{Grv 䅟AQ8w>-Ȓ E06se,[pӌ/I޺k@l9'^﵆X@NYJi7Q@ e94|ZI9qf"¼ X] %#ls3Y ,.7/ϚRd̈꽖Lpf6ǀؽ$NӗF`́M2{T4[)ZR Ydx^`&ۓ>%ݛ}0Wf:DM#UOwf M18iY+Rr-2J>[~L. Ϯym"LO%l"ƴ Wzl.\a3ߣ!Ɠq~,/\S ]A'DW>R9ːS̿]8,9q =G+RI$HZˠϩ3 8UbFi2x!Jc2N)0]'?!yӒzd$g5/8qnp|6ߜ3 Z(IB3l~#pu[$dx$ b,ysV D!9o r\1<`{S[7f=qCIx'h[}8f;ʄ()#vwwQ^R(yP1z [1it8*MRz%TF92?{Nq)+<};|#Dk ,5T-%fol{F/~6Ye,t0.-hl8sԳ]$(yErg~ۉA_ by}gٿbԥ7K,UIe>IR]=P+Nj~)@,=ԓZ1LSw}0bOܜx9۞1'g۲II=dY}Gy-) q |v9}d FYy<$ @縿5h+)] .Df|9_r˖走E CxKAoUu}8=zcֻ)o)qiv6<%IO/o75%0 ]ih|pS[BDLz 㖮܏՞jP=Wc-H*սހf-"Ecėwܔ֞o3ǜr[?nf qkP >8رA gl%'&OXH2)wtkLo칡+ZgU/C fp\MeUE21JTcpa:F9;g/Pzib,&AH1ۏx__;/h/r{}75Xc+ {}a޹ 'j.{=z vW-*F)܋z{"[Lz/",p >S,?ۿXVyX{ ȁsƞ^p^f!0-t{YJ%V\fyVKdc,$^o΃vmFL-2\^ z`$&MlLD؂pig~T,xrL4Kx=DCcmHޙ D'Ȱx_#?ѻ5+1ɓ eZbMlz\zx_. B4h_Lϛa[gg%6w<+&Zw-kYC^F뽉%Bl,ɋU"=LzK^)%2֐ǘq8Ks>krvۘH4cf%==C[Hk`5̓V g9(B`6Mi_|$:e:4p֦6ۦ&A-_:iƮZ̦nƃ)"MR h8mdSY=gi<΃~?w!%w_߸}c29J~cy)FvFxwn[iS{W"/=X^sIy~)0o.MZD𞼿N.bhUcWb_M퇣Pjќ"zmf½lګՊ 7K:(C@W/Lӽࣣ'Ϗ'>i>R43mk(bb xf#lϧd)-osr+mNyQ:O[gܷmlè-M}5Rp~UY?"vԄ{LG|T1Z%FQ&|γVw/;1mgesx䘵;*<>Ry4g!:rTp4h:e j;6h1Q ctz9UЅ @1Βڠt:-36Og8G=Ouǁ~\U09D-]Ϸ2,B^ƣ5Iy2[h}t5mA!M- !EFTtC*ۍo]=%I蟷dݒ`1xl cN 89Ƴt9Q1iT\Jݕg"dәi4gˍ&{VmLmrࣃ q:g@C_>~Oz*ﰼ=3|>ĖvܠY;vWi(e"\Rxr(͂z Ү&Vwi0g \Uy<*Ŝ:*66I`V{jrq5>'@mOe2詳C|5Q.H.w=פd7K'Sb ;~o bi%g!|5+Ck|Q3şMΪT9 G^H/Sw 2jWl0YuL,'+WqMiQKJݜ}6P;e 9jcz3%E)$)zMY'>,wc6c yhMY$1q3jc.EG|?c} É֤{]$-O`զ~',Y8ϧ o/٧u=zGi1c^r-] bMw$q:8GQIfG~CS@g -/IU/y=v(MjnR!4goӃ:-{z-Qq!^7f=)Kbޏ_(W|3J>3?=/,+ !m,7x+UΌn&R µ㗎k,C?ok&)R] ]b"ĺA+s=D8=\1E~~K񼤔ɻ֓xBC0H{OarVQbi;ٷ#'#}AXD'$Q-Si'I$e?0*/L.L(CüO2mE^.q]zx߷]SOqM b_V3ϒۍ|HI+|4K q7̥R26t>c|5o۴Z =L3ZaK}v&Dṃ4ҩ3Bc ֨~AW~'dIZ )N=n6hn ybJ=RdH xց靁N{ߐ+ҍ%VҦuG \}Sy >i<'1B;Sgz$VɸX9K'sN[GMr)6OY~mo wc=[~Nx

Pk?fσ{R* $!6޿GN|aq֦.zoO;bF9ޏ|qE{{:w_нvc{=!gҾp(g!ooC+; / 1 |MNeМde?CHYr9dgĔd 7FgĘ0{?ҙ5䧵`G2UiMvӄ묯cc$D/=m=0^9Dz-D?{~=(S~us8tnZÂ\&gmᝋow;_$sm nrYa]XgUŅ$9GY]mL8J|$rVo^.F 5P@pc'qD藙<_wΫa1oKL:oN'VLVh C.30z/_?]~X˷/e.E8dVfL6k:Y5_ÿse yNkSJdN QjV-Sd)A9~?HNe_~_%. V5j}7T'cyی͖ q.C{Oe_Y]Ol!H;閹wr l)F[Oln*"D6w|0}Ol7'Ͼ9~I0Pc%fC&Z@D}qoŴYҌϿ0y Oa ۾㍉rA¶ƘO9JCf_tyo٢O)S&9`цNV:56DRua C@-GvJ ^Q1Qc ,>aVǒ_R~E 9 pܫSLۦ0} fH,ÒH^V>cJ#\ Y@eWo&+LW^O>`L5P5.h~gI9M٦99m_5׾{0QS ̈́GoF5'顿wR!id9I: ~;tZ0 vk"oYqJ\|O;{ P*/8Bo҉xg_GOPy!Գ\S_!cL\@/1ߘb2XcYC?w$ZOI0fPNmzPS&|HVj*+(nwl ;bs]"M ߏ7{70fh¥MLZgtrF--o˿pN͠n+Uy+BMMQ띳3rfy>pbطM dγ'yX+vq<~[1x|HJ֛n  pE%7O~oܷ Ơ@Ey?x;>,ɖZJF=G~? t1+ bI7;۞<t0$mRQxȽ?N&gn9㍑YZҧ23J7Y1jM(y^Ev~q h+De<}Оɗ{& F C9S\I{f_u?~~2^愔3RؽcVwCTlN56$yۛ*@P}7qĹA֜n[4_##Zmt[JTR$VAVJ8Iԇc-1dzߜ 㯫WY7RL8c]@Y/%Ѳ0T[-"qI^@| ǡ^ԕp~^R0w$2 2\t 4?[iᢟ־mֿkꚠ!$I% !3x/W6p_}Uoduu $ٙ4⏮ Jm^S'ճ\Xs,~}mb.pm}@~j[ER/o닐Z;{#\~foοWxeHlG':>LUMN\됻yܤvy8e/⺉:"u l}08.fE /Sa3f.YD#SKmU7.%J+̩H,pOlVU|#%&.-|B 8ad>J8epykk12SϮ3m ;`xV0{o)m-χ6cCڹpHЩ&c\&/ /1܀/}yj=aE.}~A)&h)T_}ۈfڇhݤxbəIw$Iv'*kOYhKíBٛ9#ROUUƖR„+ ZC罼ji>Y 48wyTQͽS{9ɜ2M伓s|j13 )9w娃١y[dnp[5%:Ŕ_#QS=U6rNR̰YÌĤ0"UXu }Ow Kbf:4b$%Crlщ1Z5 @L璤̋o䘈5Q߹ sțk_ o m^F"SOB6EǗa77-J9)mPAmN~+8}ע0hcIi/_ޘ&1l!v~[%Yq;:9ϧqQN l lpy'-Tkxj9}Bm'qA)0?[y>$bI!sZtS۾V ɖԎOѤZ虞*Vsp CѦ|p|mbC-,l8ze嬙ZA)m˙ہ JuDۍx&)8t8a7JCEpg[lI5q|Eh&VΞ!9fw.G6Z+Vx3geg3`2t=)epn$F%9kAmBy۞[$},^x> GiRQWb)ZN s}gNEy&GU[= |˳5mqO[iA;^/B[_ ms?xzHI/ke! ހlu-_?6zߙ, \ѫ|]S׶F}d={RS3f0k ۓu/^Pn,a)z 1nM04pfc5\1aĒাAs^td,L7 sk[WWc{π1%[|Ƶֈ^ br"&* RZKs%8%~%^lMsh ^\^S^0z;<<2l{2cgNyQԵ)XbUIj!BWJF@#G!(j9bϻ;zd49EJ;sfMܽˈ8m6꒒j@ULuB[N<!`360M{@dg MQKrJC.Kw%=Kƀ%Htiǐl 8:_LXi#09)Lj*qbAN@vxrʔSնxx1M=Ny?57~'?v9'K9Th0#E+yj",b5cìVыB$Hb6p6+J+?M܌żtT ģXxmz3m;G1O夠+xM3L+7&QzBЅYqNiv1p|19bd2R ce~ Locѹ}}#ᩇV(%Myf~HQf}I8Γ[uz^c-ESl*DZS{g綳%Ap˷Uژ!'f6y f%a޲w>d:bֈiTR owIRT$I˔3ȏ~#ڨUkzH%!\t(GQȊR]寁-1eDqI?`vR:9k#Fχ;1nʛQTj>1,6q[p85)gԔ2>xRx';nFAJӘե^ )otNΞ1JL)ñI26n)S>sln47?<;=1dw#Wj*^Ui}⇣˜2}EZ=+p `?3_M'Īr>`L)=M s-ä6G"<fL17FD4WK%,ǩ:U`:O"r#o9 .Zq(f⼫A9^]kYpF)x{Z7&>\G w%Fj-U[/tlf[@a5ф˗/x9jvQKEVxҾk7&gȻiCώj@=PMħ;>o&c|l>i]> 8p9*KfZ0< | CaN:-r )xԐ.oIQ 5vBWo5Ja*a7V#Ii!dmnʣ,lw AvK-.OsKpbyZ:+t^9' pgKI>/01d"G A9+ؐr<:OҦͼ'σ 8zisdvՍAΑVUp<}]ʘ0 *]C"!L4*yx 㰐2bd $RƂ^bE-snK~{y hVc4#L_ۖMe}PYO_/)v.z|k50{)HENΈEX Za<9xU,*C@x貈#=ѾuyVX!J9/Rr}MpL5ğm^I0Ru9$wJ_` nuOb^Co8/>`Pii0cȄaiـ6dWC2g 3rwͦ(0d֣2$-[8x O՝wk= ВY3y+c@HфŶI7&P)j EBL67ҦNK {qh/» ,b ot=`tMO-:ٸpMl`3p 22{M,ubi|zZ?*2i$ZfLf&?NUS@^/Vy1BF8VU@^iFPK;.輍Y m+ U,M1YԸd^Xrm{SFcZa(`) wZghѦ|S*$LAf"o{랸%aRbA2ynz= }P:Z. Ol:زׯqU4zQJ9upZ1I7|ivGd*Mg0 =`_pA.$'Vl:u9&@<>>LQs !^'¢S}OrLSXmZϧ⪿7-qen])gϛdm,|Jl6nR*۞YFIS ln χ g+T3NYiy)x$_s ي,pA yc2lhU5,ϓ:qxq6npo x'Gmm0|KKl0=tNc(IW3u<Գ0PKe۾3f54ON1t&ޞ)<'i6'='>s ~J:#nO( uG 51(s<1T|;1=FzGk\ډc_{}m7ΪA@]!<EV(L(89KcNOq>B<YyEBKnnNA=כR9Dk^[k XN,X5:sy 97Ld˛0M@t2}@>&u(s')𣶪`5ѫ^*@h+'Kx6%lRٗR'OÌZ+~Qd!P+g0Fg˞[ yr$eϐn9Nʡ'9Nч%54iMZKGǠo SPޒ1plRJ<ԳڞYc3:Rsk xy_-y|/՛*Mkk!5f>Vm9=w.` 8zh |x<lo/}͸)y]%`bLԯv]o0_7\;.B G7ηojY,Z4Y *^eu_ m#lŖZri}ZJ!Kɣ Z{$>ϡAP4mDjHދmӦU`I+0Dr0LxCFvNJ+Zp!Gt[~"*2&gb9Hy=t8|7OMѽ "j| x3-st)ʝ>,o7!Cn+\@FM#U5XhLfmĤ䶕L6RK'$3Ǥ}7fOdNox{QYF)to;Ipb8(b)6ܐ=yf99LWgf/9hܶi]bP.1V, xe`[J AkFxIqs^ xzL(EyZ :!qp|!GLZRrw}NQ1XrZMh)zkx8LV5'G),`@Fnasԩ:[mWp!DA2#绯_,D"}0q}cPaRx>?a#&,5ް|PS}`McTYG&c蟒unwC_\[xq 庀䔓 6rYs-zf)A:%ڜs)~KCCN$T}F9 s{Ҿt 4/I1QwyhSM!tu*mİd` HZbJBz7 m7䘩wԀB>~ې : 6TA)^ȣTwli#9p[s}E#}>U XY`͋񉸰s$lkEHu|Y 5ޫceu?H~ӭ3n7kGx#_ZLO_x!R}굚47 u?[Շ@Cޮn?',žK~ծ5ijs]dU!!r*Z9)6eyVr=v ]i["g9q11OM位QO94IFdpx2轁^O#1fZțҍj JM}N~Xf{wn=5Qh9>]L060P6vO\᧌i}6lb&fQT|1>_NhmwZqSY3O8~SWU2ް3`0={8 vM@Ҕ i7vvȈ gکCd}'8 PF6'Cig>g9Ry$vѯ-jR\X,AlQ7 lZļAvςj 烤1?Qym{-3&A8HqY`W-&T'y̡vT]~Nn(PɌV3!6HN1;- I!D||S\ly=G\ެ~KY 6FdyV1v݄e{䘉é1NbN{b_SieZ;%j }L8O{|p c}g9 K!DSUw9F$jfj"`N8J6>%uT~I·wBLJNэ ִӧWݻD^ig9bO-lM%1gxuN >Jڋb4{AݸŨ,6&)kbIH90NmGkMlP9mx^r=o9!8%wfyӧ*{&46Z|]~V dS`tGJz:݋|0b)^m9Nq3ؠ@]XjE Zu 1 P(~60y~1a>>8րTi$Q)lx>Xz3}?B;ΰ\&v ǿ4o@1\{Bh{K:ꩇ}^%9B˵ʾC0I.Bcppy?x^+}}l[.WZg@k )|-\b4浞X0=9=g]*2dO{ɔi'vyT^֧h9$l}aPE#[4E_ܣi-< W>>Nzh:Ϙ:5 n[ɗCd#@40h' y?IMa) Z(9yn bm|StA>shgN3cqmTHcȯ9d?%LiR,3ܭæiiNyXni_7E `NN*ھ1ط>BI'׆3AY+|JkׄpibuFB&JA08ĢXH09(8xﹿ) @28yGMЃmg>Ёdćyߔ6/jlZ/)%3fi}PZe7s#y[]P.x"AfƮzm_~a743)Wom]l~'kh7갱OzO)4dNVNGIpWRiopdiwHfqduϮ3Ud<d&p7A |"c̞bb!#1gl@g@@$F-A&R\o(eM+&pw1į_A`} +7T '-|~ și@*i{!SgO6Os=ٳqrq]L)S!RTgyV0qyKCJLs |'$!aHY2'@'>?w;Fdh@LM:Qi>zz!Lj-&2cnNlgkD (|AGNU1IVf^ɽ8Da0Sp9QYQ5rň||>PvJ%%= Y/[hidx w:>ryoXGy Kk sl9!8[,~M8 kN 1OUcBPF0QGC z HCFМ+̉2fдa )ŚP uiTݨ{ b\_\'Kn*FsјHAvLÐ]Uv3O~%[ >WeI1%@ AXM1{ Bzw)KKayP"C>T1)"S OWd J3mۡ1tξ0U᪔5a[A|/nos4\b&;X>n~? UڼN\~SM7rCYv@' ;AȤ>)cD?;r*/l{leT =ƺ[R6=y ޿S|Hs q3NbsNʓ[9#f/vKoh,a"p'R"i@t sAB ń CLѺ`J$R ()I2z5C!r5䒰Vm]OMjERJf|V-qcL1 E `21 d @ddž-'tWKY!qwQoR’֟zǟ}rJ7;2Ϧt(ٟ-o&9(dz5Q5=K|pu(stw/b pQnl<7"{S L~ACzɖCH9"wP"Iofk?3/EB&+v1$~mA$?-+^Cl#> h^icT]!9Bo&M m<f.H&i`(İoRJ!4^L'_ORPOKR[S怚NF) T6ʬ΃h=SBy<xޑ?&B~s},?&Mi.R,aTR7pvLN9SNAdJS_8%AnUXTĒ<5 + Qp)!`5;bPleC I& V).0ggDwH 4%PBAHo+T zL,BCl4~DMvBSBL6jzE~L_;uGhq 4SIǤx:0ɌǶahYrN?guy$-y p$7 >ǎozz{r)=vH{(Y0`u۠B9d'b̉>_ׇ`5A'ya֊"JR$aqVl}aD< X(C_)& D4<&1IteϤfl!˳UVitN z s'J EGb83 ;ٞ+J;_ިs1t=y:0L.%^6!zd/F/c0͘4ijTT)>: SxrX9Pjd]xL:a\op9 ^Lv|| YKNϽ>%U7p+E;CtÁJL8;= PzD^mBRBhqV! @}+- 35-qT$(%baK%su>; dL*ݓf*$101:~jc􊭽# *JPin~H r{x{bgo A̞̽Lqn|j^# `sgM-oe?:aT#pٶ%}vyn7`uO~}DKz1 N$ʇDHCq3%3n^tՀa @3 Lrz> RTȰI1l9r؂#O&oS$hb14O) WsO.ul\{%@  Hc9o韦qYyoIS.M^LN5]F4א7ce[ᦛzTka0hcp_8㽐x#;Ҝi)#a S>3e`m^Hv_'v $5Lٟ/] ' !z={Dl{ SQR6:&b8 a⯭\2lC7 g} FOBJ OYf|EP77!<}P6bh3q2/-#}7Z"i ` SX>&an N&y|ܺ/lRi2lYϦK*^6B17}\蘘2I `Zӧ [SB띞,d"pO g :`'vX,l No:ꝩ: &J 4#o^fёBTZqmay!@z Ƹ"] qФ)sd &|"\&Q 3D& g]Cwi K` qYEl3l ħuWG–Ȩ~B@&&(_'hz8v''B6 PBBފ__l{!&~Bba>Wk715I9zcѝK!3Xs0Q0g2/@ (;dj|up#esvϛ3bLyi>'K2Jݜ1sF X4xD$,r>|@Wza(^6JJ4GL+1_k9"6 ݔ,9q 9Ԑ1t? hs6PCG"r >SкZ2QrOĤL}@εKFA)L((Ao-#K }R Lj^+Gm QO.A 1 )'xfh`OK=`ӟ1@ᩆ=:CR!wݜO7OX@05tʥU ,Q1zܛst}l|E 18%xnS[i]s w#)^J!0uᨬhW8 *PXzǍ{k} g Π؂"?i̅1'^Ń""`ݧư8N=/A&qQ/ë)I%'2b`UE1Qex|gZ nSy5XA44ͦXyS8GaJ CtB6磓&h.t S\28@TǎmdM11=DZl)͎s >"dlA?,z'(2'bx~~AIY̜R" v$l9l (e5Tvp.6rxlåld[OLʜR(SvJk)R2!_=C cj†F+%UCUğ%%tM̸m#ovOLzаĒ;B8rA(ƌ^OgEX`+ P@w Սy i1o|b١)ÌiJQ˄'n&#r59> 2\>oց2Ƅy7! Qꔾ>#xwؑRDlr.x>+ `}B >)U|}L՜c|UXS@ SR x<&H[*fQՀavzm)Xv"c Bu1sFNiƈ S3&!D] Mu]`~U`t(C7}Rj)"{22ɿTv!ZGtOJL t1! zd+߲,h 8 A)'zQɤ_8;dltf&8fz`^qLL}CP;V0!8_ >9.q6*fg=vLLxɆ#DŽLL8 잾*pKA0 FO=\Nf[ʙu)Z8J<tph0 n^N vJReneH`||VR<?xA&6pࣰ֓0?c`2B([96Vss#)%\`R@abO9BͩP#Vh/;FFUC%`  (ᶑYIpcp T%d,YV.9Q˗, .-_Ub/euKa[ZQ![BfX yy-\?YXۄEX&p`n$?M`Ji] p:[ג#!fwzJ_b-KN]3EH\Ld DXYU~N MVz!l@qOrH>a4.NK#ȎxO!:3'4#7͜t¼#STA{tWD # tzߘ|_um(0B"ʃ= cC$aO )P~?rl0rIkNôIڢBHH9! m4F4{~czw>kw (MXřGl^M }y9.a:kH[N(FFIPF˗WݴHBT~sv--ȜA97q/(C2K&8tIMsqv:HD LR%۪'JLwԮֻ0ASKj퀑uECktl|` 70)=uVi/e^Ǜ: %q|"XL(^gv^ QFl%;!{P ;f(^,^6{SӁJ? ط'bֆuA@O< y ![)u 1|E3~A90LyJ4]`^xxŊ3\"h.Q\H%9!}3OW=ۄ@cpϠ'ϊs ear4b:Qϊ퐐?)G t4.yC7oѰ>)0ᯯ9 ڡ8 L:^a_I^*Gl :w\jbl e0[)ou0jCoL|6 oiW `&́4 \-Swsc;//>dVVH$nsEbv^{~7>/ſeF|Lx_} s@ִ;HMXpWje qz f-uod*6oV/sP>n?[x=%U2?ݽg;3^735ڜnŰt?XUᣃOabn?vޜX3Tџ,.78XDCВz3S%'[WJ}s4J!hF'p̺ jAmhRt%aDdž>+zD<Il y4>U5: h8lc]9ťFF@H{᧘@԰'hڸf]`sn4q|z orM^9݊fyJ Au:(.i1gg`Br\NH@n%>u rZϡ*qK!HbGBsR@.d-5u`Ƹp }uDׅYlT?ZvR[i L^HЇybŨ'HzIEUbAZb}zJC)T/BCbPPЍ 2湻|@Pƴ*4 )t/\gIscy^jCL篝 npZJFF F3Rc'ς~,s!cK0 >[ր>1[؃{{R'8 o6n&?i> 4as;3gf@8 7}wvZ=MfX8 {W`Nhu>0-C Mw/?u:h8 Sqs$fRv$)<x]C}|]$FU?+I*)$>=1 t}L8!@qb%ILĥw3yw]Q Z%xwD40;<jZy a";D?>IR 3GI9:ʾᑘ"){g@ ̋%YA%cx nB~]ۆɈᴎ ׽~ಝt#)|} L}6,o<Ǵ[*Yp{x!윫7gl}bq4(.6SI zІ%LQ2ꤔW2:p&%1(4FzMc |[ɨ}u]!u6i(80ab/G&^:}0hRs>?Nm`HfA}@sfm%lj(%cWL ^2^e||>`lJǛL dr&Le -#d*61ǖ6ÙW>P* S5<]O3Φd!|K|||0tA,Ď8u]<ӍY-Y''uR8{u{ސb0{.ބ1ѬOܳV5W )ƻ,Bx|=wd 8`t=7W T f㼰|zCʔϽ`Ύ8S+P&9DHŀ^P%aw@ġY!) ql9':x~$UDbP)%dYLzȕ+Tt !xrC q P!K!(2.ss by55sb@M𤹂jT;cxP=f` 1DŽ}\5Hi)ڻTkqJ1s躂;X.79H6v! :A֎.@ ۷3ѥf:8nVawI"q^/bo/|ntgne(:[V!ȉ$zܸĭ~f9(roʢUx?gP8ϖ ޛr+JT;VjĻ |ڤ|v$"7ؾXY X|1A;̈́zZos]9XL5@i5$WC ;d1]~b@@/d(p4gȔI"Jd8-0j{1( ^UzDzx<{ih*p >U-bLM2YFG%v Pp{NQfHsDCS禴4XHրmd{凘o5KȿT0z! n^ȩo37yTGq&لe&o10m1Q`/'8ctiνЈX ylܐ (l'pΖ0E LeH+7ѻl;g4}X香o9I޸~tu0E%iT)ABJgN`Au7rЧu!iB N 7e@8X"xO (%H1u\x[ŸA ,N(ģ  ]CT<mk',䦈OK‛T:Q\1 POT;(zm4b4Pc6WT3zA=v eG~E  2Kk24sHih[%M>fF.Z,R?V0OܿH&A:sDPkEEW|l! @BqE+&z=%Qa/@ xyG@3EҀ*Y9:bp2&x"|qJ=0 Qdh:`6DZGTs/8ϊ|KZxPJ+0cM 8;*z5 &NVhW((> Ff clf0?'$#uz<.8^v3@^0.z]!'Ɛ;yQB@4C7ԓ^e)#ΉB<ِ,0Gׅ* 8[t!E t}l8.$9&ELcW!! =tq#s2PZ61:M4?OMz qA 6 )ٰHoQ;0%"xրD߭e68HSqgN{7DN@ .U6A"4Q~Axҙ5_c0iYQ,kվAڻI$A;mCsN@jBR,Zc6zMSk+Lmafw+FuUѮ{T4SrJՀ=rn.Ɉͧ떜"D2 8O"3Ϋ:EII]2f 0&L|K",8Hdlqx)8^"x*n~(ZPj) cRBrD0 :Q/F9u 4"tJd}AdUTAI2[#bm$u@"&Pz'M 8=9:kΦx$^Z#[+D&PD@n.Tf7(^/>mB#%L%pδ`@οWuB häo*mEؗ5g90<Ce@܋_!DӪ[[}TċU:适x܃hJ 2[6o˕18XA\k[穷0%/ S6pb ߼]}Z%x_&|$S&"uuEA_ ?w>խw~Y{xc!#Éb)RLndwaPCİ&iK˜T<S}o!9ϼVm.KRV_S/oo&NL l~(rQw*R&5{w`@ 79011a`bls&dFG%e\#!)>9)l#c9 gW*:h7LЁxmh7ph誜rb}Dd뛒e8x:*MB J 9Y#A6z|"? y?ezjynJE.z98#gִ`yTK&!kG3n&?E/mGPp:v pDB@zpc`4b27j.B/%w9`yNqgRihF\ 1ۨz} eOLMJ.AuDNX0ƾA q WHeH0|az:K#刜#"dPSaぐ Z#s'DU/q! i.P|;gp/>2GeBOWSDB#X6hB 922Z_.O*f& `%Ngdk+a8z>+ѫ'D v^Ȟ5 +]k"gE!Qݜ {>0@ ">z  a 9/@"uϟ/}Zp^ u4p!99(gRI qZ6E[xI_֊>'f41.t8I,($?3zD}G5ϩLC+:p]gq]Y0-"='TMӽh^MůpKGJMR`riBSLFvcAP&$GBvTD+=mux'SRNb;='S}28z{D1kƼeL{">>*8o:*.ȉV9%mt[/Qa怦kJ%B$_Xq\u6-\{uhu4l\v?2)dP\g i u2$B2\FQA+_ak(Nm09&0Ȝ x(hvVQ1[@uJdRJɢ'UX#qpk7SL{>4"tZpƀ_m# Psϸ`Aop5hތ2V{oJ}~'ڠ?8Î(ZuQQiμ.+M,^f"Pp_Rø)tۈ5)!l\5P[Ǿx^Œ_%Z,֨8S~1,h". > r%R .W"R;)5Ӯ:9S1zlΎxrA#twf b̮I !g\:.k=W{+vV1f !^~NOh5dp0Zu3{*>NF! "Zo}$ۖ| &80|h:fDӀ>}6nHP??ZS k0lTL >@˚UBZ >G-|0 4X_we[kXؚy'z_u]~c?@dş77Iey/9]Op׽_??$_{L~]=g5× W{r?[cq? cNC )$b ʳks޺^CB ,Z ඕ 6m3R<+m1pbX bd_b8J(Y pξQo\c0V\a ˜xq37q4GFAIw|]gWD&WyJJvL1@m.zvP&`Ia{)9 `4XXLYʞץ?_&TD(gΛe6nʳyi4pŇ177z}Zm."%8@͜5c 9MFЕc Has`:I77nRب_nyQsw.]"DnNZ#x|bw?dH1s2zk ?ܡ Y$e}{hw5[gEo7XUԀL dslpC/׉^%q &^ǁ72]48e6=8NgE -CXeUO@+QF0!Ąoc/Q\S3ET*14Qu"B_)0Zg6lÙVM2$P,iHdSgÇ<; C@Le2(zGTE s/ grh_Z р:'}TqAPpu9 iPr> BXLQ{Dli L[AHz|5l/gF}^hcb+;@&|$LL"n%4f0 ULoփNSnBJb>pr.2x'z&Œ~GP\b6!&\WLSPixbAۖI_?/|°*a_Wb@ ҖKƈ'HBVk f`W> ӓ9`  mD(i0b)DQ‘Jȏ XOKd`JIJ$`ijm1oJ^Uu&ȹ8t_a\MVsJD",>bb y!j@0Þ3Əd!% FBdm$ט84m @k^esa>RC#ͦǤW|^@ƀX2$FL1T3l2 w !eaя|x<[`#z$>G`D||<a!Gko2v)D0jwRnuvH>QjĄ*R)[޽5E]dZ28_M">vWE@Ԁ~V" c"6UXsb`s6Rp+D?wݳr__ՙɮa1ٰzG %sHcrߛ9Bģ LEks__bͻk={z c̡2dM u\~- R'Cm" Mq,6ҟf8i-Ġq]l"F!Dy8 jx< RPDU|U3 :akNwIk@|r#y/r`i˰ 6!"Hi9# ө8N{ҖE7վSp*Z(D.hP IQ#%̄{ACg,pvk1&n4kܛ FB7O#"?CPlvNb-hL}GLL9ÍsʈOi乄ŧ(5N8scV\!%)\m"h{sK*fEBi!;AFBH*/HT2&[^#^/8!ΊY+'b;rpZ뤢׊"Vpg &jf0N=;Kv7NH@v|}8M8AMbΉ^d:׀{28u 4g~Z\t@Ά> @c/|zp/s6."yFir0q^/}Oİ)0h L;>ܡ3mi6;joh.E|PQl yՉځɯ9 &xdΉ2%?h)R0 yZ ܡ ޻Eϟ?8%30ex ~w h`;zGHX0PryKnO:`fVL11FNɂb#$( tR) iM2J0 W){rsn΋阭LK7c` s(_ }'5 ( KhiJ^+te<\ڭWkq^h_Ku_WI/ÓR"v:$@NLcXNd9qjd qC19/ gpU2^߇inTY|/ BOh|AofC Hfq.x}]]ǔ"_~V90Uad'+&rT-@ٲ#{##O(:Oho27}b6ӯ Nby+è:sc'ȣ6,`%}ײlZϺu15jw 2,u8[x_p d [ƝAw3`v֟.YM8}Gu\NL;_/nq_'8l 3z&l>*z-xJS]⽕B4V-<"ĜL'9Uue 1JrW\RL*PX2UP(`8ttu0q,`2m,»]2>:iK/K8zQ."M)`Bڛ _ 8@\d ^8u] btCn['QF 8pN &dsvLց@ Jߢ1dߊrL\ o-?,[7;r >N;Vv PEAf&L,뛟, sPq  {{X=lfAsY,z.'c pLx{@#Lk^k9Tm{pk3^1|2$.{:^\Wß7 r.|0 Z{5ƺ|3|`0?XZ؂?s` zRaF)!CJn4!1^7R`tc'LIP0UЇoX^Iz d=mN3?$Ad`6n'6cJ"=RӀ7?,r`~^7'z0ø*MٱG2sY7PTKV.,p'ˉo.Odn:sq.'&o>|tFa fmo 䞞(^OpzAx4יRr/ r9 T9ωP= i%tlq{,z)xP@eҴvx|ܽw 5&6Ȑ"b4~n3֑1`Q208錣P__o|~|"xn_?CˣL0l0T?C*۶ OB3ޜee  s ZQvů?P{ǟ/;@m7%%_tF fVhѢ w()"Eqs{_tްPѽHU&Lc򓈠˧D3 p H&M CLFJi3bX Xp 1Z8ul9d0mLEKDoPd}YaS3ed:jL IB` 0(%#DcuǔApt-p¯q$=qB~52y,P$K$F,NMGJxds*OCD0Cf|N;@gSqH?WEi!9;[Ȕ3&ȒRz!Z4K)n'4gJx0iqN$g9EFDžF6'25$&!E}#cdK@L;);Y#@ i<l(9ugb4@AIvw〡SCq6YfX u 0SYDdlxIjkhš9b#$s,<({h(JR d!X ud{fzb3%=)l1m R()b0Qto-#Ey@=ಿi4~ImrjǸcGD5F0$߰gkxi:QvJ 9a6@Von1۶!njH9KTRfLULDN_D9pP254 dO2 /𯿟(;ׁzP@#a3蝉q L,L9մx* 'j`Řp0JiV=FY4oRMwd6hL%LI 16flT]UJv#f? __JЉs3U[BWN+积/Uf h @ 񩃆O 6R HC7!mtq -fGɊH)L JHs`/M|3e6K@LlBD4YO)#ndUL"n9")u, U{)yʡD'պxzus *rJ1@)뢩t̙MllH!!d 21B&zJePr¿"(! z^ȹz 6}ب1n`wb^+z8ןo` ߿&H.1}8\ÛLMC)k*>1=/ v^ǁoX(N$6)vD7O2&_m>vHlvnh#( 1Gh)ғ>YR@N sҜ0XkSgģZ"+Б @?S#jM+* 6*@4R=x2N624&H̰aM[V9dbb 3) h-f\߸я O'kD8 PX9#PI2a&"p 3l}MC䵸l%]^'l k~5sF<ƠOTpxZ{+rɷfzC) 7w`'9]6FhLyMevMu-fΎ1:~>w T]n/+36la@ S6Kv``D/Ij轨!Cv5$Sd"ftwc!:J% 'zwD3Mewgj^B`LN[ae ͢gMv+J͓4598oKoyb%!\GJd\?7Bkqd1pv׵Ik n!P>T$_[8hwup:oV6_Yw[{R8}6e1Q9\co-F Yo5O_ T1nh%`ٌ^gor})`Zv IX$ @P-0EE!;2D2[U ]1qC0QTumQX8K_^1X(FH` άE QpDCh#*RC2|3/syPFoQ\N7¼6j:8"hzȧLjHДtSvD˂͔gB0kE=O2(܇by\EFnFןo2jڷ[J"&ƀ+MS@NA4D*;S 7DR2^_Ʉ1R)~%E|Cd⯿x~2-I#c,ľ?x:0b1P+ʔ!z78˶mH^uODN3&UET~:r-kzAO Ĵb f c2R kXTH D/#IDATt;GP+^*pq@o|~vuO|o4G EN@y JN꽒9z!t|>dB/hchs$gtz2!o64%Y 3oLk}8;N M96 U!q MJe'p#z'([׺^/DPSĞل^u6Գ6}r2_OqR6]?uM ԭyjDY a`Be)(ݫI0w z>j7X76>'ljbUxQ(L[Aʅ AMS&%Ek~l8^]wZ+IqTPK))!(M/s+SߦͽDQ1:bqsmRΔ83Ӑc"oT:xǼ.p[ h:zG^( 3o7CϐR]7<;jmֆw /fi)(ldf$#z5'k3 13~UqNt-R+wגdDCw[~6ٺܒdf8\D%_}a:` `zRl &"4AJm(7ܔ@ʨ* '@!"&!. .Fĉi47Bœ QFvJ1Bl~}< 1ETPkOeh(%#wJn!oE/:F0:55^ިN!܆(et('KDq >t;8뿖#47w6M`e7GŽILkQ~-cPh^&xzj&-z218k%67m^8k ЈWZ&SFm4|S3JC@2J0Q^"kAh? !Re\Їu5\_>xn5!n}Qg=>0)A'Ofc!(>>>)72i7Ę8dSqbNA.; =sbz- H Ru7 u[LIIlv09GC$1#aߑd9D_cR%I zn j(0z݀B$BL 3'MzVdhv.>SL.4veC<>dV#mHU -wnW4L7NMDA)Ζ]'H1(Bp]۫dyb/Eo"#[DŽjx.C=.i΂RU)4>6)ơG֘psKvs\vLT\4N\^6!g 3l9DaF;1=O`pޟ,fLwIyNRr"( n762{I9EH 8l2Unm. eiޥ?cGLyH 3zHĂ1C4@#3$e@"4$1ilL6:1g@hlh([} 2h"@Fߗz=B (h0؟~!cgCxJkȹĄ$GN`FIY Bf™MȂ`yMh95N*Xs*-oTNSsQ l5fZlQ)1!gOL1m@$.&)kSn|=zN6(jbcSYrF*H"{Yg[4=mlHl5TRWɮYȏMƴ1`Ol\ 9=fSZENրͤstI9;-Tg͑3M6g.^0eR _D9ür0L~tNHW*!20%@, ,@^G!z3zGHbʘhpf 0IlN64vT7Ĝ}V\:{l VAZWoNgS-%|/8>ٝRk^o(\V)(~8'x-#%GbskXߛjo.k=dOFjoFV})'W|#o*M^nԜS;nu?`tWsBP@f6e+Uo봌_ǁ뺰;߀%)$A}_a<:6\xz3` r)n:ŋ,5 hC{Ö)q"{CH ci@^ \gE,Vkp]jcdxkR\˂z7hzKJDHuZG79nԽp>qYKM#mmDMJ+=F<1`hS%4Jl\@ݙ/{'9oLhS2 m@$:8Vç4Wz 8;ĥ}6L @dL6=E ݖ;1 ^7'bT+8)A )௿>豒K@W}za> Ψalr|^xm7b׿a@Ԅ cFׁ$2dz#H @ qTv7> 1mrf@H ) n8^K,+Z%#iIzLT WÞ3JUƢO(h8:;_^u)U1:c61+4p\2|]r @BlY;fJ_;>>6iψISaTNz $U)$`b50YNZ^P1jG I7 E%HR'辿%,bfGm:DhĴymLq.ԫT6%Zr:p8>y|1=A~dC1V*.&L|/_AP"%BP|LSiXI^RcׅJ32OƒqynJ0J߮Z%SC DQPϓD@-H)@uz`6d p+0&U\ɳ: +c BCpcy@@i=: kܪnLӆ:Di4FmʙIHn0jG*o(4z p ]Y[8 b>ek͉k3?oӥ-5"U+D๪B)9 Ö"091/ {X009~Hi GencfSO@^@sfӹVmP?~o1tŀ`AU#y߫TR #{&vW &g| RLLl9"䀼30*[2o8'1栗sn6W>8Sī f6u6 p$!ԫ$󲞴 {w4yN(#'bF7+q@ yl6( pDQDic~Xl H.%O T~L[nŞZ_^--Y"8;Ov27h^nusk3XUf7 Nͷ[ʇ{)_khg~+%rɹ~כ]zw ?Zԁ Ϸ՜LȍKǤ@߯L\}_~/m?Ͽ}ߣiTddRRf~:}~~9Dwz Kû~K$S| 8E?Z0G*0Ea5bS+uc Ğk [$*܍I9Z֋*hPE`9*xUN&b! [R|>`Ȣ9&xjM+FNA]:w9rtsR N(QN{b< tZ .v7:Ft/%\@ f~#^]RUFew#"J{@3y'ڡqM:Rxl)=-!Hx* A)> J`-UON1 9(P@o<7 )e%h=%o|]ὡZ0msT$]#K:/ F=`t]y{80[%EؽցɧN! S=I-f@#@Lic^mÜ4e$7 j%C <*# Q2œ?}8TPD7V$0{P_dG`(l뤷 >;"vV+6>7D7Bjxh6JAc']ʆ-ede5*4){1w}d? !cEpDx@mb6x6F U Hwdž^Ӓ@q6( A&p]H"؊:x@RLƴGњ{)Y;JNx?0@`LLl+%Tcv/̂{xY}bNLt +حZR+Rqvo"(Jɰ(1Ō?_/x01!ތQb08:O i79ˬAHLGpT,4hYy{pxހY 4w{5N<$$Ӱ!N)2$&R#1ÛW&&GD~DJ6̉Qt04$#FTA4"m_Y7x5p2)|B8 0SC>{+DF͛ ==wzA 2¶T(aFa\ kC1DPXhfN[&"_/ Q9V x.A9~7 V. c0qP"%|># t\'Jx7gѷ;'R?Gʒ,92W&yf)pKug3N3W{]sz2h1H%aˠ-&yq"k|@-k)>10ЄeV^w#1 6&RHﹻ2jbږ`l2KqwFo7C=2y_gp3Zhʎ×R@XHuoJkEokRP2T+NRR\ c F@oKUZOz~Xޖ1&4P⾂a/3B`~ 6ۣ[@Xͦ"7q{a-c?R -lBuj̜զp? Z}󒆛S9$zk oպ^wol ?>]ƞb2MCy{q5 {_(m(A~I"$uŒc-vt5y}`/d`Z dc]ګmĝUo`R'm6xM &XS xP"נɡ:!z:fQ'GH0t`$셦_u!1$| _hRW@Sed{1iS&L)~@dⱱmm >0<'}T'zL]e1څ;dܤ8kȚpB7TJŋ(`1!U=Do,d!0~-hBDH+a8'}Tԃ{ 5Z|wSi}q.g }|}P5BP:s@Q&<ﶆS>O)ׁ1㚘= B.hm7&5m.{罎rAzI6PHhF-b/$׉z]L߶C1Ҧ22FIfH"9Ocp[V~_>>x R 9=tMZ2Or̡DޟҋjftHK&ȶ]TM8r_Y8eݠעW ﷅu%aÀ3YCkPuN'aݤ];g#@X"#z0 Q2UHYc6hԬ!/Eě}mK!x6M{Ey_^p0פp2 )YjZSէadV?CARZVW욽,,66LBW7ąq(;g!#Q{gzr6lC}?[ԙ625^g3?. 6'9Ғ|mO).+}:ʘ)p؜VZ8qZe]2{J謹+=H*jՐ^arɓ.(Ēirw fx3VE7?Re.z7gJ` nrr{(&qQX[CgԑRyI,)1[IXrd͑5+>8\sH >) 䨍6yM}Ճ150eYi( vb5vnŬ|%51D]}mp2u1{7w4-s& iU7&ڔ; ED7Y$:I@$)ႻҲi GMK\%3ȧ!,Z D2FcЫR >*`kކh_uzm6Rt]ұ9>õ=1=I|.3I4d:&4I4@XPp~2;Ll^ՆNc]_ᢗrtR{kw!72tv$Tn/Dm*བྷ!F3œeJof/R10Wաt0I`DBۦr?eIY˝1˂z'Gt(;Ǿ,ekff]>n!xRrK GOJM,Co_.&19kNRd%kB']^^J6A)K8a@9D=b#5UOCU<۾чR9&l8c Ĝث&)ÞaTfc&0{3+a+Njd5zmJqCA-;9h9)dJ?'Bb96 {uyT{}ʼ@p]'ج S mrLMsJ\<;!8r%gZyLC)K >fJijG#LCY;7rH3L\UdXLX||=X?}:Ġh;X97bZ3#o+*1w`Y L10MP:y_ G9,y{,7bTn@̺yf!F\PZO^H}LtT=k@ P)48KsH.ZzS;(zcP jocAV.:FciHoؚ ck! (8 E`kj @G띦ZjƠY}R JiA~zE?vIk)cgJyl1k%mrV9ĩ"z4kQ1eq)IRpS⾮-ζ,BcWbJ,&nM01 x}^=bn4Z,Sb]`&),~c;>`os |{-xdWJJ@e]XLobĠv%L#3HGLVN gZf T Cպيu,^8Cot_sJ:Sއ~.aᳬ0+ >]LKg69*eFparjhSj8h6X 4pϾ=pNg)7I,c$,\ky;uVQS;G985&T0δه@D O}V߮^dXo܍xK d'ʣZJ(B$&-F<)'j)>ӯʀ8g^Rͫ?=g9Xo9͛v^K 8eOzhQ= W"T9'@;(9$vV 0U(ViMly+ 7Ώ7z:yb0spscʙ讗&\/#bOlV#:h'Fwٍ}6|"G aLZwf&pNSi5qxI"ZoI'(kDýC%W[ʾ/FWB[v*&{1mUÄiM?P"糦Ss^(hJLN>&y3ΜMndxzY9Sz. {};Z@i6(Q'tKaF;<#JO&YxӼ팝,h=*[S'oD6a| ?g!<4y&@!B hL;G0лQk҇(bxOfR!I^J׎j&\vm~ǃRƱoLy|l:p>RBeYY+WU,V Jmnu0)صrfI9)/M)'EKcrxę2vW 7HG,k⨕o<>68²D5KF1,nv4^I{aYP2,t'):i*DYgtѫ`@si9M9'x#D1'{~2j:hy>aTF6ԟӦUl\vMO0[qwJ3s3)ܨ{Q.@eJ}켼 گj)=@9 kXjSB r :JotKb8XZu,HbU/6J?:mo;i}$@s`/\%cyI|,! u<'ҊSWIõF<7Ni5c_Դϡf"fG8 dm}hP#5jzB-qrJXXcS:v(S@);Y)J"m_c < !9%"փ=.H10d_kǃWb|Z9Sɮh"}B΋)o;X a b*iӜ3sN*eYx|\ s+MΤ9XBI ^K!0wNzwG YײfJNvmsJkT (Qލ>O  ;13ՂM!Fc=aAL޼ {/+ty- p 48,CsL[jgVAs"o60cڜOꂆGYaEѾӌ,dferz:?5Ξӟˡd L=, !⃦9f ?'mF* )C&Am1r[ieg6EHAd&੥r_eXkFDvQP|zS@zf ^'q2\48q>h,*}5bxpQZR3dvN[-s1eP;ej XKhR{ɇ5[/A"KoϜ!'eaZ_- 4W}n7O 64fs´qCOeM: K@\ݘ^$`SZpcȨVTqnT6M!L^R csαe "/tZZsw jN9voCE:Fc˼lۻiu*s f^u%QuY4u냏N I(YYs3SHax{O-@DovMDZ5lJ=:o_n{1ϑH-!zum%ŅԲ](F[ŀ6:mB7C>;OwDsۮq:).Lh]Igih`kc'IkMr;ƀњ3|H]qI&ܨXѯ}3[g8(cY4PFg:/gVrŨ0}}/rc;hw/(C ЧoZ$aF6V/fB?6nqH 5g}0B1/DaA;0y}y%dkpQ"V~;'Wَ<3 `U%:V?EGm6鍁ےZ {޿3xɨS<=7y}{a+coFC%9rWr`{L$E,R\4=_BiMbGOk;9 y >Ⲇu{A^VMˋB1')g}x]x<f@b@%f;ig𜴣mbg7"vK*Ɓ k1^Sٟ 7bRbqa7Ssv}d c noocg]2a yyy ̒wkyzt.'QhyDϠVw"f+^;}pՃUx|{\Mλ|/9MZbc]ä;ΨuIzΜ-ʶ8>ׅ9>f9~aqHJz hdrvD'Gϴ&/EBl5 G9jcI@CJ阢 }0տI1K'-*C%2JUc@&?Eo`^-ļm5ga^vzwFU3QG#Y`,H9vl-?.Dbz}WjlRpP3R }ly$1v%-Qgs(۶kU 9s0D!@Άa. dEk2,#wG=i5: Т7ƱbO~ c" p~)Iv9u8/pkicbI(XCjfӈU$Yo&c]o6jj:QIԵӧ>R<fA`=KPI4/Yk {N)}}N۞1>] j{.xIP,r"?>7lChyM*.i_$4+8'OnHK)}qɰ!Ÿ|>M}yN\ܓ埸&' tìl=ȧ wp` 4tԤ%E~Ctf褡!JҪty %4yZ̨(S1 ?=<[S[d '(2HjT{ OVӓkQ'>+Vs**)Z i1XfWRfIe<9:j&E%E7dHVU-MY 1f yj1Mj@+j] Hͅf>8/yfN3^wɞ<|jrr~::>w|SӼRlqPd~"8/8}L/YҰ,` /wMK|"ͶNJ=,F 2)E3;w}^q~ЪF||:BH}bk|sRRE }]\bTS@dmnhYW<˚9ˋe,}6IّJ@{B0sWSsL]F{{pD~a\mNȲ{x&6~DHvA.gNGr7#H 5zIz1zy,wf+jCl>&1D^ UUy'9'7DIwo^E886JQyajMJӺИ2%Z*0>Уp,v[3j"[),RueɑJ+& =}jCV7IZ,/oMsj6KFsza j|72m%'> ĸ\S g8OG/F u.7~7Fl5H2o}ĬvSmC꾒!M{%'~*eOtty\wXs3U!cS 9Hsby!,p92LxJΨxtɫgSUхYcJm> 1S޼L B49뺐r6a!NSjZ<{g||I6"~Q9_^&Ў|1[Fv+)( )i1ARV>j ˋ5z&no%y!.::J#1ߵT3UwQajrU Sm+I30'B|P@Y`A,uA9//S_QYkɀ1i]Q |XJlv`T9PIA)֪3Kw|Rpy6m  fRdA Wv'Yb!I|T Pw񃳘tSa5Qs,fnh]yB7Vncpzr9Fo_F9/BFJߍ"ݘؘ KOu|~HiC$%>$F*^2Z%+j(\Pbt"//7{"fg *gmb,މ=pZf6E&w >{/7zc'gϢgC?Ǽvk㒸]!4nNڀ ˢ]g>DȹV ^[p?ƺ ʍS]ͩ= O4;m|%`L00k,wt t8-/I3-c7i9Ay֘3,9>ӌNcvQ}Gݯw}l NFs*m'DM k4>5hڠ55 n{"t@`Å,Q91e#?{fΓm*>mJviep4:^Q, Ш1KJf93W?Ff:f̓ikэ99m64@|2W9-Q>`2uP=7 ysg_5!}d9>Y;^/jo)?IoFI}l0g9RKZ&:UKy|l>//K덟2`ߎ ;xxW򲐒1g,VȘ>=$aN `tM>)Tg;ϦW9e5TDG^!:K$EhuM}ےm diSS  o N00:muHzp:+a\$iI*C.Ek-hӗ`B4s t+nʶA9$L'YIQk՞;xk<3 1b9Ey&otʏ̱r(֦gio4`NFQ p*O$!ZM㼤Y5r-$%F=6;.I*5!Rq4AոvJ)'1Btt1cVdN)kj9sv.5A 1>%GK  ȲyHT#~_Y+jpN̡nQa9}{Ȇp52u^`$z^5sJ9S41%@2ӏB =S04WJQ.?67@uaTOp(0# P-YԜ]5?eg,;v Tc~(bc`N$-5x"'az_{K:Oz7[~&).E)o5.c5FY1:9;CcR*8ax5{iPo{-GmJ+5v 8P g3oWϘWwuX q~;f΃b7 Vz 3xb΄[霥Å<_=4ҰӀܞy}N<\7:Oe.PL?h{lh 욘Ua>g7&-]3s_:]g8Γu~kq~ 5;{`s>>Xrm]!E 1}stfvsej}!|!tkihcamUg8>r9,)5>{D%㽀?44QG#FL =JQQSkm8p7u9xߡ%I1*_~ ?$C7dSE^GR8Eq#nNȑyB}SFjKf][aJe !cP=oq{Qa|TBNKo,i_mմT גUC;IĴ\dD8gz85olg=1z탘zI:L\!$56QݘVNU>NlG1hE%A~<;K_8x ɯeAJvvWsQKQHtmRb4Kt[&Z'JG !=/mҮмើ(jPv+!?fk͋ *z_YH[N,!hP1Z1YmSkFA9fRHkjͧRNI謾2Sѵz/ kEqkRvG ffu©u{(mPk)1c?`:IK̸ǮIx"}sXEaa;Ohv@;=tu?$Z uyd x>WDkISy&F941\צFd<3?o^>!yٝ;ńGs67 s<>X9U 9~<>v#+[)H1*&Ctf"ЯNJJ1bR6LD^RHZ3dIk`] Jo9mv@hDo Q̀kCgYVM,PG#PbjE#Dصt?4pqS:Fg]own7JSSbBQ H\ݗU0DlpcHp?'cwNlE1)DR8$7 :HM4ƨ]EUkqm֚575YqxcIc–dJrNNX,9rR6b=BI{rZ#0˲.Ò2.Ǡ<>b\g%`k맜Ŗ6&cf۱q,=[ʸ|PR4BP{(a6A'nTOc˒iU>+1s{]jF7b1Ġ5lN6A]M%۹10ΑR NZ9\j9|^fB4Y46GMȘMvpgc GO# ^إ1ŗ9ѕĄk]^`}O@'ptGafCmU6 Kv}&.,1sA/gN ~)Nk.hu:/U3WQ}pKY5kLWR^8ٚ->'d,{|uf΀2.J>[tOT;2cl9q~ϤL8]wT=O?/I8]}gC>%}O~|~&S`TW|E~k h(ej7U#%c}hay}1¸3 =gOwfF<; ;N Pw'O>1:PBd:2szYXϻG@&yi7Y4my`2L|7Q4uLRKgta-JcУUJXt>-x9Q:w:bx?SEE9I`"%ai)0C*GGܟZ*ĥџ1~mWJ$VsIy`]^39zM~LlJPϓ)w۔lkӟmpɟt}^_^n9KѴ뾮|;xNxli'8q >>>pw a0g%D+QxyyfK}Y%[IA~@Qwd< W5wbBA2vN`@:P1E ~\ғ̟h A~>I71ߙȜ6z)Z+4ccJ=v荟;e03݅(m#3ٿ}$Y] սԣp<z;}<ܖ?[1# sBκdR쥲/JʙZȫ=G|<DXBʉ7. p>B$UR]k/vl_?[bx(WG”oRzUhUbBt>>a>H:۾@=] ³>~S)2zn;~X;u6sXU௝?VQ}P] Qўz[pG-bu4\|Z+/j &_6L"4'u59Uiƥ̱yM0`6ڮg馑Cx;G%^a )ǃ$^1'1E;) [ ˜Đ9ZRn}!cxi|TsD'?ѝ$ZCCӏy7JB5.cPF7EȈ4<*//bOIߝTIS6@Ԫ@S93^4}Rџ}@ښ)F`kUH4nsNzj^D/0c'~Ij l:=~}ba9 p0"7e\wg{Ou3PLS"O1-=lOqO|1h^ V1Yq~jk~LM=%'~\&X5F<4wTC^CҐTz(H8"y*0rzb*J9hd~2ʛ9y T4i(_Vb ;4aUԹsJh"i@ȉDb*No=7BڪqB[r ^s>p">QdM%)z2RݵY3P.Y$'2ʹsZ`X4 OXb_?t^f}whuUӺf\&b(*cb%m߸Pk__fY1[v)u+o͉%rK G?!|d͙YU @ ,C˺rN7տO4Bf:BsΌ!^@`׷Wͦw 0`Dvx~?ź$RH<gGiGc߫SOs:qo&1^S%?~ʧO_GZs25 cfMyL$>AHL:>$*?.]CLl̩Cfݚ@yL+Ok9椗QQ\ ?>O3gc;iAcN"aYQF9~+>vrz7sRtt1o͋&>m )i#MbpZ֣.FpX =SEwH}~o{c7+Ĝǃ9ϧi^_$9/syrg2mYR:{<׏ q~Qض3o1ʎ;ZMGm:$KJn#xm-V&9L{"Gۋ!:}5 FϺfR<2]~UhS>I25ŎX'qackǺd$ŤdGXClEqnռA*~"a #{tϿz[YRbfC Ɇ%u,FBmY 1PJ G)WۗW]>UGioG~cI5D_>mY!Ȥ71Zw㧘vۇ@=oz1-=qcƅHLw?xW[vxs yex5uv1㝇ASH^Cϡ!K-JbC &]LOX!&M!Go`!(4 9x8lIMѡ?^ו;_b6- Qytcku@HQL!D33jvS^Z(9=؂Ē/ TN[c"(//w{$ubz?/sq5gׇ'VOs@ X4>\MTk>1p\23%C>$љTy>_gyoN_ӛgF}-9%AeD4 x1)M~y.OKy7W?dYEJw:OC!> ؤ 3읺Od]V^R26jfaa)'~/48;nv3K޷.Sk ThsF3T#ܫ8fyٿwf.z6Nadg \0NG/ǧ2|Vh?/Jڍ &Mfe`SNjJe ':/ݯv]4Rk9$kof+Z9 _Zf'x,I I>D}ݤJCkMw)Sh)Ōc s:k1&՗HDOB1idvNef,M5^S1Pb9A7rʣvʀ6Ғ$jR6*٤!U <No^li_z[尉c;ޘ_fvH6: >xsOH1IS{H0^NI0CѪ]\RF۽0Wk?958c%3b‡H̋-(|`FB V~<h8_/׿^JVZLꐿLx'T$8eԔ6:^Jg螿7~M)T^h]~0 yyi`4w&]?ֱwe])o7Ғ9$e )OS~1E%Hdk}b}{N^VtE,D<9Y̱c7 /&؄Ⱦos1-s[9Y m/ߟ1YB띿KZ DX=V/emcUz\2DpOGD>Is*/{Fih$G.FCq3sx7SƏQ⒉I0dCḃ}}8 ){Jku3oYTZiZx/sʜ:u9cAm_%=1X7 x|Ƽ1$3Gx~[5jJ\%{Uީmڦoy<6u7ά%`~BRwV&>8Z<>vuaJ9M#T;zc%CҕR(ڬGqxxW>?gzJрQ5 ITωZN{t{9)k}jP8azt#:M,QHb+Kv7I2hR`Jb.ِ< y|y{ި`nXoq{}DZޝ}rd.<:bqc,;iζUyBjqM GTZF賠By=S 1 (ALn-'@2qYhcdw)qxnˢTI)B*v3&*"d8}u3B[`!F5nl g*'y1&ƜOٖәScS] :3l!/wݫ\OGeBf4|Ekq|H;'Vvy5k{3jjM1,%oEG/ovG퍭XK!']۫q3棕3uľm2ut<o WLQ.iuQј8#H+o/wL>$e6ڜ)nA[ӪO\[ p:Ɯ4'!?Q㩈v&jgd> ;P30&=ЋYsjItza9!sO/9]T=Aq8SD=YI'ר_Riad챭o>/ ֝Dg8>ȤQ5")ZL&ϋ{mJ ;A)!'kE`: պ,&2M<[^.!zP0-kӐHW6ax- \!'<ٽhi c0G9Xw%Iۙn,kT1V+3{ŹGf8 9c8L޾y}{#w0RqxU1ysᄐr_o!W NZ >񘸁&,u<[GqC6\25^yy5ۺZ:kx׸Wk}eYt#8({Li4)ZǶ bx)F =*r8G&cd*$q͑bgSTj}*AF biI;y x7XrC(ߎ95-CaNI5M˺**-H;̄ .fr`y?̡&/$jR| z=9xlîaU pArc$>nL*˗(J+_N`dbGhTRoAhwk<|mJ.ۇ%M)40ڋV뺲G9>]1a*ӇpKn*]Ju{g Wyu}N6/Ǔ}voYAN^s™:>XɎ@$c3:3x1{xˉmYSft {َ v#yxKžNѵGV%TtN*]:$Ǯ7槭ckѾ- VAu5^|JXqJSzLks^)F\Z3φ_`LGj" z-~TQXD;!DR٧3\}pn VQf'ue4$h;MH(-Fgil$SnLPk/ 1Ɛ&aySbN򞽪uևz = x#>\O̕i¥K:;1&_ l86KM7x7E@ gy |9Sgyd?CCvl?Oz?y6h֗H}^|ϞܶOF-K8V۟m|m}NB!Fϐs>ZL43IA^>ȓl[9({O1԰S#G־7;Z(JQ9yLJ}NT>@-hw ȻaY48ŎA(n 4f@fֽKOF^ԓh3.J2 O ׍F!(\l-@IJYҏZIz%+e{/86@fE~z޷0͠i6h{%%O o/<޿2Ӈwl,J޼tPK __cƱMd9%Z0,bQ-sC2ҞnҜc(=7FSq8?+!*Ce[7Iٳm;)+5Z}*)kX_}pR`FŨ1:6@kUELo Dv( T+Cű7ddF0fRRx:O.f^b݃Q=).x>ʆ7` U@ T$RhDuyNVвJ粷FS=.%AZ6|%sl>9vKeNnYTamH90s149L%.΋#s|>vJ9d΀(XTd:뺲ʷT:?;0\<[eQ*s]4v~>x99_^9N/7}{TmB*ɦj1ˢiM8XaVjߘ.1k%@^e; )z!;O;$aͰYa (UR Xd8:f` <28OHsgcuuE]%&Zg(yO%ӶC26Ǝ6>F0tC1)A>pX,+O@LzU)pUwe؊p<兏džsJ>sVIp$o,I9L5V֋1խ9*ђq90ʘJ#K'YHNA&+f Ot;'c9^:odnV! px=XS`|`4v|R3 |&g.5bY4nRp:= i}|{!FJ9ILQu09D)aÀ㋹]""ݻ4( { f_<z|  ͤ Φ߬ݝZ٫Av } {+Xymtz&GZk2X^~,aЊ'\%+ɜRx0R,#Lyvbbde4WxV*!}nruՓ8w1V^׹g:9o&Vͻ^;g_ Mcd=C!RBfogf;s'OK^&20R3aa7F֝g\">| * Ʋ\vq](q m{-2-x3g4%&%H+I2E~V9Ѻ+!8-oօ1KfeG,Y$zJ /9kXVmP}@1wes,܃WO,Y4 !2њ775gh0֏$,*7-2i07(ZIlʝY,)%<)8g<4Q<6'Lt¤"< 0mZ O=m ƮĨ30 R癮Bʫ1nv!  G/9Hˢb?Q+\")F_V+7R$ ,9gJ3hBg&pM Rl^߽r]Ъ}{QeĊCVvb iz!o 5+H W򒹥ľo&۪=Z˲|zFɎ4V͐r^X̒/RvqPʡU'kR5U؃6d@9 %9C|ajdB qb)f16:;6MO9(L*}6ѻyG5/Y2a &Q0zy֑3Z̋Z/ʺ*qbM=enf+I䶮J~e Wwxe$ކ1Jj͇OBsJht[(YISCdº,̴P cTT'9O OhLYS"@!$ƨ,K~s[Y$撁PL8^3w188cǼ1Ӥ7\ ,몔ޯfvc~!e53[qo>H)ҫ@Ӽ^7jm|F;3RvciOQ9m)ч`` d\Q%cvu~l*[҃m n IG QǚSQΙz5p2%]c~_ONخZtB(q;nx 5xb\ }9;O(Oɜ$*pT*O}vvʾS¬ zَJzro w[w5RU$SO52`t%Lzy hSbxQ(O0' Ct$3-Q>,5iޛOLubt{uK.bbɫݜ^Off=?8xЌ%b DZBǫrC<l'V@Aqm=qض!xs˖gΜ~C ))~bbe>fL)!bd讍4$kN%FܗŐ< ɘP识d{8Ǽrl #[.ZJ"o9ٿyYW|,;`^WIJ .p9-|gbJmn5T%|JX|dY2Akc+ E2VkmfZ4-.' G=LtPhbQ| h]pP{U!dq>83!a&sjh({1<[lGqt|X]3I>WYD4%xGNR8|O is荭Vb#h3kFZg͞ےI!1~Kd$j7;zFOs.мN0ttO)E6G,+ˇcO~']3sr7M^J0o%.l{蒟J%#gMb|*a+pF\ jE_Ƣ=X||TћXGo <-1.>9vg.f=`h}%1^oJMyZ c?=I5'y!p6Gβn92jANSR>'iĜH9#qr&H5"><պ1Cb Nxnz1eHdzɥy s~H4O9E1 yGOrGI}d;l>"pJ!",+d(SQu{Me?h '4ڼ'6F+kbI%NP +jfev Z:j0+2՘4$ctQɆ9D”mdñUo<g/J1AԐAm^'3zsF3Ό}yT}3 V$Q˜2}Wwc,))K9}0*g'stՃ|Ҧ,y`\ ?^֚;+lF g:{:x1}XK~d-›OJ h Ҋ@S<%HT%v=&D@3+iZ;#gPSC6,K?|1.<>az]8 00ĩ~kSzܔj30,@{~I6Vxl)'ء{=s[#%cTbj晪.5$HwG9Kr#ɲ+IVy'{ 5Gΰj.ne^A )+H})v`j=| *0f螯2=o$Ni f Lc>iLSOfvv-#gR\ǩ}1 >wf6 Q rY'87l~GWqLB оΦA6 QN{uW7ě9&e DމB [ic(쾯6w2mX0S!e$C)0fC~>wb`y̕wƶm6JQ:GA&A74\|}Ot8K*){! AS*! *F34ō1X5vVcebRJ2EFVzoT7wҶ݌*tI3`#o.RطOs|OJm9H9͘)}L> {IDszyuyOQw%17_ʔ*I/fL|~)39S`]gTe2-eM*G:z5TG()N߿q^4h=$SRt2#&ǠAumjz)%n 9jx>mw,SSCi =MgLmDq]:ݘի@wp =?_i4֦8xJ5nxTE7 JkX)!Y1'ݧwl:sʄG^ J~$u\W51Ӫ%V4&NSbam5<{^ /`>dviuB)v2Ea/J\Y;6yd$^'&rc8 #f(6 `~1Q <%yZ#nvQM qbhXR nU5ZO)F Q͊5uWݟՆ Vs^813!H;LY΃_baD76 N5VM4cR v&ir]7qcdNFN~[ dtt/6c|z7˲V pX,WY;Sa"dLg'`qk97u62Y~(|%=9CQMa*v)* !g)]p֞0&0bW4 1[v,F~~Usξ_WO]IڜK'fpB4q_|uP?{6)pk XM,RLXf& i}DsPyni R,k݌Y`ikpհ)~ۺ{ hP\Č?V` Nñh}o7X]9#_|s _5L,@-uYknk=OfnzVՂ9gm ]s ])t[1Gtw7d737mY2NSQun0m})vF)&'J+QF6)M0^hz%}?S&xu6pC9[f&'5̫v%' B++QaTp~/,j)Ýv4J#)qYʍ/u脕Ӫke,4ཷ@v#o ),?B)Wz/p(p3{yQY"yVxRǠAJt1q$5P[%>xm7daB%x&R $ǩS*֖"mǿ~xrMS;ϖ7QA }Ǩ( %rQ1W͊dW(['d 0iyZx>vY^G,%qr7<}!xBRJRj[mn(1D;:xIw8[(!clݨu? ^ tQRڙXI}t+Y5NkUǰj`l+![bfDӚuLB`c+ Mk]yȟZ gZՄgch-ϓ|1eZn^';zQ ogpv)M k^$FcL25?AljkB )9ֆ%;ӷp)}y"(9x||H=Ia҆Cbd"NI iĶgtLCGMsk 4NFe14Lbs1ڦ,\rSoL{ΓnNSv`uXObWGY*&9J+k!t(z㋤w1}ЬfbF^_ 0Ũ牻h^v9IDȃ?4V|Nϟͦar` ^4Nrj>]&%&sBoSti5^Q7 dq_=vfdy`sr=ޮK-Y=Gp8ü?YeZa*6|Nl1ku @m6oUI,1-=1I׳Ak1%M͢> bmi1iOi#*:;#$^JCFDZ++p]^Biʳ_$ߨ,2Ne0{!zG0|AL;Tq&IUJ8zmD/MZ%L0PCZG3ńnK2.73RSkIipW6 mosqaJ/tk1. ~+U~r[Q[r>CCm+hсW2vZXk0]}FoDp_eUTw`8cj弑fI c\0i(s_[7VVr}|}MGUby|MEߊo<< ۶3ћHHѓbErژir}Z oǞ8ϓR}W# HRp\._YNί/R)g}r67^*`F2X6dL)'~xy%W''x+fj%FţIo*D8ʥZ;fOy9n6u =u'_)ɰf}K AL7drxs^Nj9%u!j"x79eg &sI+qJ rU܄vMѧj9JQ. Q'ȾmD$=\Q˥}Le2$uQhOIOR9핏]`V̶>o>%/r'-Qy-W4L&Z 7ǮB *g ^2,sr:㤎 2R Yh#RɲkoȺOFAɯ0-f{y DOi1* b =Biм`4 &]0P) aͻ-9Zޠޛ}ώ%&Ei!k2yʣy~|dd>W(HRhET㭴diVyg̀3M;u5[*:wL= 1:a!WNƩj&ziHi)V}k &d6zm0Ǝ<\f hCa:y(=(!&ϺVy*3gpx$mXwպLc/Of-UT (Et e4vqQ D.u\69'~s(!6(Gwógow?W@U[s&:F3ۛ4ѥi]=a2ٺSkMwWj`5=ȀEjl$Zor1 :i콼ao.z{0֕9oi fv|?@ok1. )S:_՞cCrK-o'`7 F;;O|olxB-S}n.HZaO=:O;tF 7q]ɰWi̔k߇8ɉ9IcSՎ3i$?%>$gRZg%x;Kp?:d877j`NE.:NԋS2f7ҷ.b1: 3IL,p4k%551r/J!BRZL)?34C |љm[f$K46:^4cT0uwj>VRbN-.r]:1\MMc$0)ׅ3z^\_oK M,ҍZZrz>vǻut)ϙϛsZƹo9%M S TZsmț(g} ^༼T{ c$qU1T=Q~h<1F%SMݔŭjɘ|4Cfǭ;u#凭 H~\d,Iylk!IfvZ<]x>w!R<#ffT^NJJdҜr(ԫѮFN+#;u>q5)cI68y8˜jZz{=PPZ@!ƿdwǓ3!A{1]Ťi8JmC*Y2$}kz>1:MP ׏)Ǔ}*xM ݘt_Mr}>df^(w\ӆ$9͏ǻSv*2{9_ް4K& r^*$ys!0E y{iƥk-&s#|t7m-Ft=ی`8I*bwɶmfkԂY{NH7I,;D%]Ma;} uNRt~b`ms:ؾ)#ph9f܈ίO:ŀuJS+Lj.n&irk>xQη$qFmd7"I`O|dz4W8@)OB@3L'uxrڴyCf wX[`!** mW s|Z3/L9&?DIY(ܲXO,D ̙D>GS͡f]{:>J?u)}Cg&Ӛm?X>B714wh;N)7il xBJۃ6`Lw 7K}DSC <VwK7oaߠ)HnҮq)\_ ra1Ԭ}a bHd`QSA1mEucL*?IoxIg\=3?%bZybX-f}O7yuQ0/|݈*4{еܻ_Wd\} 'ޏesKYMXD-d79݉!eXIf;gzxxJP6!${!$Z .H/ TY W:jmڢˤsMP][G6%)\ZKWе;Opbآ"?KF 6&ݚ!es2n@WRd Nhv^E0ԹVɣX4191S{d*xK+l'_? |$^ϝ[t~OԦ9L-79YJ5-6ۼecv~r毟/Z9YO ќ?C!@ddLaƊ[߶#c$ȾeJQp.3aOM&ԫӫ5%4΋n*~{1>r^yI+Bϋf&#9:b f&\6c 6nؔ2m$"!9X&9"l<U<X\K $ 2۴Xi-ČQMs΋V&?y<3S)ccrY=KѴu%Z5SR?tD-%11gx5[1(9&(65 Iv yߚ*]2a>a{2D\ )1x^G׏l&ak[Y2H!J.8!ǃZՠ='M[x}^'qt>牛+wh]1´5.8rH<=~ӼN pZ-T}LL)|bp) ^̾J ,ǩKN#V&vuc#v8xȏCTL޳䘢y d,Xs5aKI7>-k21s=tot14–)$P1:g9cx<ٟOR4䛓 7gP7!O R. Cq,@2%0,뇥d3WR>Yu^HrYm ?6(҆& M|XEb7,WQg\K;GwHdJd-Ml2Hw y=v෍Iz*9/vo ܜTsvt >yc*|LɶkbݕytKLJhs$8ZM4>^7@&y ˜}LIf[S򡳊s3PPCҤrd0 ]㱉-W+kh\Z.9jC2/Hx@ol e"F Z𮱭rNxJPMkYny)\ﻉQMdDnsm>z \crA-Gf=I%cȶ'W !Y 3|LLz%(gNܕWM2gM!XCɆ+ӘM 0/w%DNFQ+?~M`Ci"/,nWk T*jp f=z)QUJ"cܖ$VNekvN^[6z5$cID/K,-{F,3wg |<60_0̴cO,C>Yc"uON i ;r>VRpBia- l&6Xm}a YWͰcg퉝Xsqk]nji~go 2h o9Y+ݟ`E{ԅw9 I!EY|y}kؾ0ҳ?^l[µA7Ƭ=qg򛊎]p.QƔDxBkGO鎑vmb8;Uez٤D_M )'qT `m:&"Nt)ӭuA%cэ]0{L ɴee*r`N<6"x(-0e T"bnxsR͘Kŀ[ x!5CCFnaG[jHS[.I֖^uBJ+{J5߾N(wΨײ 4[s=7Ƽyov_@郿_G&}Tb6ja 4qz}Hz#Num21'qӯh_qr]|ض5l]2 Z!y⊧?=+%lٶDu\OKm[zZ[vi<:[L'~9Ot?{-ƔJqQ9E[bu۟}{(ǃ,nԽN-NjZ09MAHv 3ˤ8*}vSc8G NjL;.iMQƳymFGɜB$C<}҈.l OKp)Ѫ15IR~0{WS"mTzM5uB s9mXrF3d7=A Eq?\S@R>OƄm˄|3@6"me@/z])V=o>~}hk?ފhr7ۣT3lO0<ϓuR[ẾydYm01.bLqGdL޴oŖ7C^̐V&t9%6,yUcA(iΊ!y\) vb <]RGޓDWƶ8/1?P+~OQmr T6^ ;~K$^ØcUܽj$}&0 &*چ1)Lt-#ϴ(]wq9&MC5QCne='Z딳RBvmW:Iv}8<}ߩDwdQ"HO8LWvc7k~vP=`fZәbSE"Sh@2qVNX4pСO$g ]P 'Sn7AJb`{>(bN'L`Bߧ 9U;nY5eD-_5AބQ 1$sNAwwdk\$Թ!hJ!V^'sN*-{4PCD (F6Yz1&\6S X/Dm-@l d9!U3q`-Y(>td5ל [D ֻy> ԧɋb#mߘ뇧u_&{\S,+i#p6or-J]v&7ӴXV2NOx(5ЋX):]n,?95!V{ ?{h62<`*<&}ՊM1Wu$gU9/1CJJ=eA5hϴzn}U 7 ҽouRuTKS 05ԉ>Kca| rf/ϟ~ iWz6Y>o l?_†XSs}5$0i";`2?M7|n; ݲې`9^/OE*H)o >h]< pl[ "K7iDBXXk;L= N3l9EjyjLy|̸mG^hRb+#8d?ӆQ΁Ŕ6IbJ1,⨕04U*[>!6F 1Te.:n޶[|>QY6R51yur?vz"fPƍHZjaȬ<؆L ZoN<1h2cu36RBi_i }HR%cX} | )4Wl7{oR&,pkۆ &`Gڬؤua ݻle{cH%,"9kZj3jz}Ay`~+y@SMĆE5u]xUZ e٬B KqAyF ^d`t_O-o1Ҫʒ9'ש?۳@6fWr(vdȈ ;fj~ 贗^XDjtzwsܩSC&!]4=1{p&sTp;ɥM.͠'NMOD&8,/Ih=? zW FxLI[:+tyj* y`}c4_?| gپX<%42񯟜_KRREaǧ'}P HYҷI=PINb]W!H1E.zwiԓ^+{50{Y+~su >Q V\.H*ir4.6u3A~(q?6g 8ˢ̅ؒ^9S[ǹu{Uź*ɓjy^$@-ͼv}%1ZCU {D#c,oXoTǯ[ke- ynCԦZ/@qOǚS}I`9Y{6 о>3~˟cv^}mO7Z/ d=ipx3'7*uzqY^3ļ1WZ5 :W,ԧL 7zTkt q6%q} 虣 &( -nGK嬕wiT1Knc2@ |tLc{༓HXGN{q}r\§ĞmB61bGκ 9y2tt;kNKӛu[3cVI냾>/`亊MU/SLƜpT9n2k_0)JTgk;f\ʊ}=cj?SMouMŭcQ%%s:SZg6MJe jZml9R7ӋAIed*BmLrDcT,]R/!9B6 09BՊFLںR&\Pfirj>?='No߿(EkV$f1M<^;2ʯ__xiƄ1VavZm9&}Ov@ d U˝81&'}2Ƿvو-@u(AaOv+ 'IfmJz:<;)9j|XR/IP_&xćUq!Q#l;IBlt@µfﯿ%s~ȸG&=v=; $)#9aXq]CڣȞ.P@À4g*Vy ;6Z{$ju<Ż]WX9& {hU,{_GCZxܝl%ٰ $iR:/˂=G^}*ɱM%g)g.܉\)OOptG}kyg |)_ƤfNg$c4y)ٞUߖKet} NV嵸 ѓ4?dx|6G4ۋ-Jؖ \FAuyHSsR `jx;PωOSI9 ݸS瘼a'v-91jcЫ\T 1PT7qA .W}$$냷 }f1 a8L[R&K d#}c{ջt֎]ͺ˟jxŀVP7 d\j!+:(ש/3%#WK-D,C>}3BwP:;Zf۷J'}m% By R, :A?zk;]f-pO PCO\5KTNݩӋ9l!l<If0{#2NjRaNC^A^S]"gΫ3H\u2_Ԗ`dZVdx Ie4釙O)5VeZ{N a& FHjN\Yl攼dwdept':s/X+a7^+ ?iWaTmn z9tGb9>++|ai~18w/s--/hnC'j$F~6sF ciuOҹLL 2dhn"LQiECRd*C 閏> ;|~_|oj)E114+n5xi7QA.j>]ӂgs-D8ҡx>1%O`JI[i$VDSaQ$'W8zroB?~כjDTr[s/kV Ļϟ;!MRRP[B Φ8c6z,Y $3]d49sЌ- r8!iO'DOpaPeʝS6ouH/ijRڵƨI׻=p>0Ҙ;^cju^21-p{> Fgib !x|v04_g~~<EmI \W_'sJx6^ @L!xuf6z*#VnYV^W!n:;#ϫTfZ7]\S yɴ w,6`x).;%Z|}K=[%y '6Ɩ#)z>~ \ץ-Q*@wJyY$ˑ_/|boƘ-a{]>$r󪚨䙶[5k MB>s#R˝<^;Q/SgBZtc3-\oCiRXo9q1\|;bLx Ƞm#__2өaH靫\L9d06:r&bXrW| 8 >iT("Aܼ|l䕹Z7=q $vjsNJP݉Հ֧d6NɐI:|,HRb\E9s'?/kMI@Sɚ)۬xMm'#EH~k IJ,-wbbb @2ǔ6{Jz>k &=FVfÌ۱PڳyYS$nfvbi1n/i{K1ea0= RST,_A.9s/{g2#rNaH$F_EI} 1=S83af0X+s%cXGs&Zg akJ8 ێKetFm L|5'|q:>dvR)?UO87xm8c,/9)zs ‹y?7ǦwYBJ<[M2{o]窋!b sdk̻#GӞ#lQ<ie#R 0 N1⻼RW"\pO9A!bIct Ť9:L6ho0}{(FHv14?#I#RL7Ybj}}=?,o|jԓi0L6?_bu-'zYS' ft(˜s ^׵I[~zĜӻ` :3%)? ZD8DJ꯵7I7$p:8оս /F}{)绿ekH>O9~3v .MIf3֩3[;-頕S&s0}i=afq;H!hQbXV7dBlz9ݞu}$b+(/Ҧt)0[#9M\P*Z *} L:hۉNγIvӇW%,"ec:i-g/FXNoL(&dr;w'n0{u%B7?|ksIWr&%!b_ ֍&& X#ל*jCiv283qyijn{ x$r~^uZ16>O:|NΜZ*waZ➲E_VR-y{<㦼v2#/U׻hw:hɵ4ur`6쏝\"K+879}8UE=w!u\\l5Zq.3}Y1Z᪕y|zЕjQJx/R2-S?:${kFoP-e%~m5\Lm;ULmc"!'uqѠvB?s#zhh Z+_!y&:M2{fkW3ډ^>y˚^_gMM)'ِT?Qڬ郜 kӝRԦ2wS%[:HI^1yݫH #рN^M 8/>p$eKQm% &IjsԹ3 砘Roz{Sy+cʓ'k'<>5!+vcLlycA%/[0y 4٥*p̻x sr|& O~<_G Gć0uuŰ_>#d'SBنJU!U5ϯǶN k%Ro٤$\Vhfg1owסFC@T,D%–1.^LJI=J 08[+26H MX@ղяe#Ȟait [740DΏd+mH0 x! PZRU~^Ĉ{[ V#{s&J PeH йu_n6ײD{확(|s06&7R]0ߟgB{ʦƌXo$"0{4H9Zyq 37O5QקG3.% w7Ŕw I^_(܄-&zmnQKhGޡ J b!vȰ9J1}PLw&u1 TQm=08H92&˳)ӎK=0hDVv'Q!B7`{<g;u0,y:dOI YPL,]YӜKlzr5qO?x*Ho@lj"zR t>м7]Ȼoӵ-s'5N+QUի⶝~ރǾ[BS;&1^3w͕bM`J3 _އ|Bl{z_S<;Up>TXlAN^/wy>{~}~|>x_'vR Drxq^|H*5hd AEsI^@ǘ8!m(&SsXHҕ|Ǣ Q՜Z0yVu 2%CVn\LqW\K1nNbx9΋e,f>$1m8;iVG)fgN,&uj1sXX*ъ͐n~8O ҖN=OrJ\i-!bd"A6X|#GQ*[ !-c/8zZ49ȏ$ٕO`p'1D%%+s{ZG{&NJ'r~dD5uJGG-grrU:kLBη,MxlZ yrWCÏ$&$CS(C{Oo͔9L͓9&¹Nd K[*^x爱B)FcgUcǙo y(Ũ]^;9YUJxI=, ws݆,sE]ަ!EI0"h'kuJ`@3pu?u>t!FZiVLc3|y-1{} щѿb<6 J=/&^gK M6lmPTMȁ2ɜ~me}7KɑB ;Fu=pPړ` HTfa$ ly1T8>SPM :??k4j)ڲI+lm{8с'oiby,h/;78໼^3$Z[#!qA u5W{@;}|=6+7R'1] gAEb +n-[3jK U2I ԝ`Ҧ ߍ!ByFBа~hn:,Տ4 hc5XL& v%:co#LեBԹ棂|31ro 3P,J#LI򝓇W\T%J[rUGHVfZS$c@1O4LZg:Zldz1̩^$F5IM#@bfue|:7Dq{10}:5İR L a1޽l3sfC"\|C]O2Igb0 ŭFX_-vwX9`;Y4I1 '40De{oߘwYؑfcv,LRF镞"8 *{:h0?sw z3j.ŃIs%qڼR'_FD5M)d1FMsM/`Ld愣6ڀǶd LDK *}dLϟarL6 3P*]6N0Mx9q6N 쩣2S$&6uF# ~}ҿڀWܷZrRK㍾pCMz'ӨzV˃ \ ^ Z"%yo mF{[0!pMD J rҺ/Ι1mLRk3qtN4#[7^'io9kc -&7mWbS@L}zCT:UJ6ռPLB$?4j9zmM)%}#Wm{ Tɇj$&w&nC~.&RUj65;HjWoғ{(؀.~&WSq`*"FxH=s۟O_ۇiJɘ}c0;m`i~=lkĜٶ]o[fl pktO9uo&,F)g;}S]8:Ķ $z=􌜦9E9[j=ǃ|Gs$,}mt>UI>")۞ >'͚611Y}̛Y6DޞO O'ϙ$W/2'ˇ;Fzx$`HV˃nKy 8 SZ/`]F y_eb6Vt ?o}U1ך_Ɉzϛc~*1IQ4 u7ML$+SMՃW.Ť?1E}W#]9ru E 3_bZs85K>轀#UF:̃R9sO~Snпa='DwY ,o78B1 aA5wpwa~fg5&]zo x<61כE9bŴ1V\=U,.-m(X@Rngj3N?0}i$Ū>5%]$/ {)<@m4wcAOVDD1$^¾ffvƨAeC7wV€oxBTS0T71iM;Y cx^@oO'eˉI4 QljbǑwFv. !O@רּ79j-[T9lqfpPVsy@-I=_7%ПJK!խ߶Ws-'^z%o_N9Wzo73kAaຮ՟yI(ˮ3>+̘QC;k;g_bTX}3_l}a[5%m=Ǿ%fo@,߾ `vv^s} јTc!q| ]P<ǎ Or8pQyIGޘ(e Zx{M&1_vMv5y K)ވG u'TLy*9IOIe"G̉j0fA 0ټifo: .kd1Sd68;tއ(Sh(MfZXvHMp(nP㚗~ -hk`_-&lƆ'٨팚Jf,-L<O}3-rYTo-gZSB!dM25 73S*? C)~F?LMM,dP|m>@")*93x=7hJq3\3dv_a2_7=bC,1k4R>um(Ͱ Jk~3C/L5H1kgU.kr['E/IkTl`a2f/q6fkIrZj}6v;Mư8@\U:%,?:{l9Sj},~sddbb8Uk{ ~S:.ΫS.9׎$]e\Z ~ҦAz}$.x\773.Zǭ8|?2 TjhZAw\\7%OF=Ćkޚ@j[m05 悇9w'@. j5*j4KPnzXn>(Q5o}cX0Չk8]n쏳n@S;f T̜թxPK Hic::ެNxƨZa4 4xw.jlKd(+ pZ c|2+{ ns@~{sm۱@1.ЬA֕R'Gz7 >f=$cy! h_bX:V]Zu;M_KI(6X7y9gbMnwsއ~|).TKLcjH=oi S4NMz ]z6A$TH9,\EQjLIripu]6 W3(o TN/?Ռ6;WTpSݎj6pR{k \ $`yF~{ϛP0o(6p,26n0O'-chfBHߓ[N,۟d Z s8}_۟o05\SC;{?[|,Bv@k5{{ve߳d'[e T[p/a`~h1fϒc0?~y|o`o$ZGMt*fwbH 98C+2ZeF9&"ϜmK\=Eu(mIGGya0>ݨ}˄*tk19["L"p#Gpqŵ4ggNl.S䤥'^&qJ;4t~Z,*Y`E$|? I_>{׾뜊i5l%S\_u}u9ͬEyP4^6~X1EcGN;Z1(igy]JML)EJF8ISb%\I91J9:% F.ɖ^ϧ;Jϝ($}2C$!'aIHMh9ըn$mzl9'gAkFK!V:)xFgqƘyx0ədMQxnK9Y9K֓})DbNv9 ꄓeW|ڗ 8fxx[Ӓt*01P¾%팅6FnN[f":s^cYކbb#ف8|OG$$)K%lasNcJ)r= jBZĴŶXب81PFWSB`.wh-FwP 3(%^oԱ o {϶)|fXc8a@*)a3N`Ғ gUFJfW5jNXhL["_! Dch͖ {sl1­ʗ3H/*}阖ݾj`Jr#k gu\N I12{ai&ju^iCջ^ U$-1 jVs)~⍹]cNGP(Ϻi^MG'cL/p.RNd5)Yy`z DGY,|$ou2gFͨKR͇k`i1}:5w BbR: ؠ|-v ¡{:3'2NV-n|jtǾ!|v  G| Գ@LI sPz18Z21 fm(xzO1{GusԢa]5h[6O@>86wm|`,3  e>I^-&2lZ5p+Qw]ò7漁-fϷ>#G"o_xI1y'#0̻R;Ū~N9癭v]z{ݷmwXfJsp+}ws[kޟc(g% aLHpA qC-f1NaHZdTqL6z+!BNzègI O(ޗ%L? `|5Wdŕ2s|f|3 (f$ UKEX4</NBrňDZyIo6y3Yd4L9:'s)BfϥMcܞV7m,'lA.~;.UnbM3mȖpX3jEGFi_^Tfbu1H bzڄ @EI 7D5 .󪼏B;0VDiq;GZ_w){R3ZI dT~ J02/_>>SϕAEwߌ1,r>MDe,t`db;Hyߥx|*|tOiӼ03`I+bbRs:[3f:w!d~%=Nޫ:NPz9uNm}>MCtӧgĴQp&fu5c҆I/SQn 'no>5V蝙[9hTVu ,vv^J' FIM8o57S4dyj>yH(WUyɞ )dU~S̔qQ;ih]mѵ қfg*dat%*[sߴ_LG/]HG'd^.PBbd)cv}{5k-gKٔ |9>y0OǓmW(yrNJ*Ԅ~dJgL18;Io?OyR:O1|`Ԋs} {_$$c^LKJv &i˔V);㉋QSUQMOb 5%\y,Ěh ^y߈[fzU*̩0䳓W@4K_H2 X#VR;F m{ڈR:|-g}\@eF 59~}޵ W|g&ִsrSpș>GFPͰF1p>O\W%i i/䤭vr$/Hɖ39zzkXG )6wlKJm(Bk4()f5υrVI>R*Ռ1BctTGNh'I͗'㷝o,F2NWPdx4AFsԀ5ALĜ )FT}Oo!yJƬf61hˑμ%T~bqat0<8cTG]MgD3sI[һT} KSVْJbgcxn~|r@69R&8g30pb˛ eV7ykӐz}^|7_Lg Qf}7s5͞s2}U?Nժj$-+H6l ,f!.Q)SMG ]ΉT8J܇Dʁ>`8Un(mfNKIS!F Ts9c^IOsZnF> zgoSzN]I n1tHg=_LiFz6{Juul .N 6Rjyzh|O3YR\P 8R  æTXr yRn1Ъ6L^6a7FLz4qC+osZ^K&v~>n_uAkMv Z˻k KBB:4(^ɼ{%Cl_p7hn3Zu,+H]!k:ý,-(j.Y*&e1 ?ƜK2g׷4{0nY{`+^$JpSEz)-g~>^Aٝ0Nu09mJ e07 =1yu8.>I6ME󶱥 ӋE-˯Ȟ?_OBMddy 4cv`R.4^, 6]JrYNrrq6Yq5$c& (3> U62&f؂xwW -5o"[(a!۴v-7UroCo nQrYO[oxc{oPҼOc 5C41G3^$&WIedY %hm yzx 76ɜOźۡRϫ>NJk|o%]RBOIjBో6Z1Fhg7:/M'z:4MsʷA)j%i㞐|_ڹק=yΫB$ʎra:%Nͤ5Ql}y><'9=-{ũtAޱHvGJ1v=UTZbZzcLz̩bfyDФB UA7oN*ߴ1p]Qcy |Q70E\RM<dIP)r^D&up/&0;O j(M.$(&ňlIȓc!Yg6)F ΀z嗆MT5 !DeU/%C\} >3LޗR$3#M1,]$Ym۶a^1Z{+ Q(l D47+" BeCl0[c{kQ*S,b dP=繦ۛǬ296؏`G웘^Ŏh]9}!^޺ y5͙'i1eYtxIɊ$Ƥ9Γ/_h0(cӸ['% ^v07"9yM:8d'x1f=<+O"j8Zo.pt~vC+8SB봦ٹYU>rLVd '0𴩶'9JY1횬hjӞhI7ALGovvnռd#*`%Cnb3$g!,>l@eߚ24> J hrnt0g wΆ& b}㜱R8ZC}֦JEZwZ!-n{h<=6uĚ)y1F)bR$ES c S6f?}3{n^ȘWc~?{FW,m>Ŗ@N4{aʰ:c?:.fB^T)3{ tv_f&44s u\sb4yTS"qN=krcRDkWeos!pPi[jb>]Y\41!B%u|7pXKNdц.,GP}`D\Vi^ odJ 0 'H^ҒKf@%&F@2αDl;v5S΃z^B>.2| D6K5qu嗀jrc yO\lme;FCIKSS aQQ}k:m<ࢤ "5>ϭq83ai.Q}Vu,;l.MY\Z6)IH9ŚW:IB?m:`"O4EcY 0;k/Pz4yF¹A=SjfMJJ8CGDs&cL{gy' r3_ĹE6M!Eu󢃳AM^?8m&ua]3W5H~=޾~X٨mB9ii)i#gl.`d!'B iq<)r'Xo!y>}e]@ ĐL1>> 8Wq"C!) 5c|L4,_gƝy!Eϰ~Ժ6\Is@,G )gt3 H_Uądr]$ (39'Fr'O^TH9:) MYoo2 # yP53AJ &HY<ÀRt<ٷi0ycL^rXXl{:.ϗ|~aI<|Ihn$ъ)Y7~>Vvy.&r?iA~yP:۝0BZ;G~˃2)QR",znkOT"o8{;enE>1u<bճj'UA07xIP1L=c/q c@_Q6RY~]+>7BeY uQ'3E@yTd~cd]Wuo>88*laY֋i1#9) g׽_2︒OR^ IgbʋힳQ:1$UVg;OAdj[@rdy\U}W{#(LZl_̟;G )(ļ`%Zm>95Qxe, i)RlZ㪿&f-ˢ$&JzfXl}0d>G@9@S{^+d~wݐ|̤ٛMRC'zG9AgkSo20@] n8uƕlkp]۝O$_OVV[`Ҵ^qdc?n~O&ݜp5=T L쉧bmSBsMP "{z>i2}kt%WN/7Me 3Q\i~,[Sڇv?^xfo?a `XKs U NR%n6J ƘfG5C8E׈EGod^kb*$H6VX֌! pQ֏kFQIk>ZBHQ靼ʇ8/ ybRiN{,<(/oѰ=pkԮHSe MA J;yax=ۻW14IG7(:y>^)*+m9ryS~E5d`) Ar74j3#o/x^ϯÆgozLjܘlІ1ߏz~ub2EP4DΎ]Bp8Y;ooleQr0KqM,NLA^^>}6jc{l9)fIeeYi.g!zO^2wgMT=>ȼO93J6͞8ehvM/_^olo|~YȞ99މ!`ԓYsf{Bԁ[{s/Gde49~yPZW1}m yMRlmv5zJhhƸIΒ>HnԪ۱_@uiW6e~1bc ,"vXvx؏}Ֆ 78h}(I̚S c; Ɲ),7 gWIt!z;ض;˒UtzGC靳;Yi}9v\E0:K n=-ˀr"|{G%5os49zbH;|+^VJe; I1"RO"?%JАʙLC& щD YB9uUƘdO }xNǮCb8oA%j/p|'2$mzx~Il Hp*)Y8xoCgG]Lb*xv1uOf36H-Vk 6,2suK2'V UɚmXCl!&3 JMk,Y./Ø2bYZcwLO6YTS᧜s%yR9b 5@<NCrĤmMV/ Y |{ID'eR-`e~byq,!pve !up6KRW;ey҈59 ?{i ]?g}|s}1ql ڛ=΢n gl霒/fχu]c\nt-{ 56x{xS29Mh`zvyj03ܓ}8 Lc4瘿6pB!*Zx)eeYTc&.u(PjL<FKu>=bΓq!V?4}vg҄ں& ?L|kdͭ7Dɥ'2E!`6!IWjԀ|̴$װdZ@\b.E p|`XSC˚1F: h'^R3'p:cx@ yF_dӕ2s\[dvn| r%y9Sl.,|c$3^vV9 qi%7֗W|ccF` 7^{Fco~qk&Bo{75>N^}] DU_\V qYi w1A T1Dִ@uPYo mcdhbK1]dg^ZIb'ܸ&A4\V4l0Dw'sҟ[ k2Lzp쉋άdm?̲!0΃I^|&)+(PÑ]42벲7=/EK M׽IKSl*s%A<φ1k@3[L#U$-] bch&|[{=ɘU5QR8~ 뺈AfLpF#xyNCdgg!H!!<_#+$i1ٱjT_Yl1KGMj͚x޻}?U|9d8ly2;J6OPJy\^r6}{n0sXB-,:yA(96ԮNM\v$6hXk6J^? 7'io`τ ~e6îb x‚2R\Q? X>Ym Xowz )fpQ.%d~mhrS/]k}9ԁ$ +™NnFI0?WZ6>|Ciăi9wnKc29܇#VY0Fk'l$ L>F•7gA-[z]R7^+ϡ̷v1$$D ”&#kΩWQІsߘĖ{f=I"Ւ8e^6Zl\cc,{y ^Cyo`j(8m[Z})A&>b10ɈwnM`y@JT\ƺ. :y y'(N vX_^_VƜ)Pu²Ptb$ؐ»≴Xhޱ taInkUpP!%RR#YISC'-Yqm䘨Aa.ybSr_d"e{&DZW=n+P1Qz/D/Ip9+1a<W:'2蒮(?U1"7:>&i̷XZ%bW;.zj6FG^@AuJdT"LfsDu8%6t] eC"AѕۻXუ%Kc:?F%R:#yXJ@vڳܩyn~2lҴFuKkR &XWox5mIuIટ椛}?9L*Szʮt[lfz  72/\izApv&]kqR%<wdIt.vyi  p[s Q#/{f2xa'+A%iP`c[y!1m9LnU}y Shޖ&I& )LC1cP 8;4/gLNC:`T}~"+$`mye2NV,E)GZ/8/ƪGC82Vw1K]@`slηR^ig-&1 lITy3G2p]÷ʉm> G / Qk683gdڙ@dRCut4o)9P<9FRJǩZ&$q@1讀hX %} bX!Ԫ7{YVziURϕއ{zQ9#N/-aRC`xN~esҭVP 0Y &JxIP=L'> yZ9܂)RBRj!(HZ8h +?>B؀\Wp͑g 5lG~M*DUAt!BbVm3 9s2|]Le;x;n% 4z;?9:M_`:e !1&joSJ)%Ʃ)znfw.@bCTjFП)AvSoӣyÌ:,mٟQ,@Eʰ \Bls"4.6__>9um@ӸA%\ s3!ύGa& ]kDAbLNZс>xF0٧oCyjB$qF ) &&yr>h&MXכآ*exxvrl;uh}ijٸJ5:^/7|E X)ߝV bޣZSs_^\v2 K1p'_ 繿܈~'UP~,bV7)!FnK·9|;֔}@LTC1pwA'8pc}Qj::YTp1Bs(g#ȱ.` %' )vMx?NO6V,v쪵|4؎vk2[<d^ps,YW'ɞrg1٦ YyʘNHӼ޼^mj뎬)%@w]kϫ~)R.%wڰ/u6i­:L;R~JC1\%S N$bw q]>^)&Lfyy= 0l_vZ^~^@Ǿ1b:GIB%@ ё%'r|ڡzt?']bT05/ ݺ\'4.%T7o}NwOov; [9?&4KwW1 4{Y۪~d9tgqy=1>̆}>XR6K!!{ז%f,a#8%q8?^gd:y st[8~b hqҲ=լKR4%D~pͬKUI*+<7z8k{.qbDs2DO1;۠@dQJ7);el(1ҝ"*,@5 h_3G/++5H>{01yCDӂl >ѕjzD/-,&LIӣL"8R.Pqr>w3s2=tphSĔ;[uq'ϴE A3 ߈CHĸ/2Y 6e`Z&-M^+aC?C4/̱D1(96^_n%PύŃ5u I1fjU~*QJC#Y|Hb=Z. 5JsE̾8K,ie+Jքɚ$^s$:tݒ#g+i_LPFEY%pq!i/cΚf*̬:ecn6]%k,sn,ӜQYS. vǥQ;#<늏21U>!$y>u ] F'3>(~y)49%z'_ Ku:}bAwjb5Ǿp''OWJklO?|u!'dGڹ1%[`5#fD*YP^Sz#Hu]R1!:ו*q>ϟxgY$Cd(|}rՠ&Zr(Jm )/F&:Gk͚y,;.pĨX=5rWw0DN΋YYYL׀KZ+} N}Ə`( ,_5@{gɋxd?=}4:rʋ4mjrJb䶣AY򇛠]Zb&^B q\^\}v^ ]Go')={5ƱoWJ8OV ;KGc{?gc'8pd`CPǠ9^{xb2N@gY"J6x"2c8JHPX9^^n&&t9ůǜPU{4$qޛGXMg=)hJ&Ы2U1P*lAI:iBvnc#FxF77V+hۈd5c\s 1>W'S'mx_vk3?p1J15ҜEngQѯ106H&ɧvw2Ĝ$]l F>)ࢵ{ʱ3Z,W`CF)b}˙VԨ$= ̜yh_oim˷`@[+b þo(i]m̊|Vz|}e4^؏ևicȤ,8+ jJZOIz!so>g<0"K$aJ)R*pN 'Z*.<5&AfJ99ZN g AM֘L{=3[ګ1}0lJ}p}pt;,KV"k<maNUg pf<i=;T#3& j$eQ#mb5cѬvՀ./M!{e^gݙN}Hn2zVu|@rB* 8u[XBah$shEggQmt[oPvԸ %&oŪ~6pOS x%.9q}a H$G9(&99Bй{Qmj#)}S7oV8w&Λ> zHjc =,,25 bb|{5@x>ۯaD~O? ^& GsmBvx4.q,^h%pkf eZDiFN\='&!y:4<*}yX3NSmRŝo1q{xmhuzqĮF9Em*g,f⺒cIIPlj8BcVKnS1CPZ{Z],p)'3քTMx1.+pci?l]lg| Ѷ#v.KěGg5ҹ"}yͭf 5p0&Mſt$;D3"QSX1:.DW;Az.c薔)+ mHɨo ;G01-/#Deuf+EI|x<Ȁv yO2>4=9G˷_QiJimbHr=.h9g ٓ2I1֕ pz' ARNc'H`21&('iۡ^[ >$(8]QҒ.If$/XavN|Fz@༪q’TpFCM|UQOag+ %!i a /C.L.mexg>g*c>{'vg&AJ3ʱos':o%@owKsѦ7w)z.xx5d+2dRoYK!뺰DG)'>&bE 8eͬ9-s8*Z5zJݤGeM! brL8Nzuq ŀ`WBlvȺK.pjDJ8d^75>z("BO/Jqص^lޝRfhDa`zQOYge7CA"5`RM:%kn+1/j|F{YW(mEÉؙۭSMJSBΊΈ%E"rD/v(M8})'^n7n/7$ig=Y$6n;/eGe6ʩ7b61d%xo~r8O&g6=cSb U;:HBFWqZAhv&H+S׸;| ,t=fD4Hdu(:-%z$ĊAm"q(/xyzyYSh CT 8zkVWbN0PKͯ~cLjm!\IW4$Kt5j -/ljR}Џܰt֊q=nTm([a&R@&w1Fkv}v2,9i8{!0Sϝ S8xYk\5s74M1C3^l%O::x+,2i쑣4C5Zgx? ZsH;qV 5)=׆xnȏޡZ1&]as@$eLP0ϢAuea3`]Q'P>`ic}xcGd4]#k^ PG)`cߞz5=#KJvg`ZQtGM}bC ">iڎrb Fm7BbyLjx_/w=d[~yh9ۉkHΌfv1.t_uP$MglJ8!xE&r4 2αKfT5RN\#gF4y>?ouŌK7Z-%`ic\4⁥sY4E)%6Yi?Τ yLᬸt%)xj]/L.z[q&13ک:t|C-Lt}^o(forD#o71#k&~*Yoގ6{~'~r+R~ G-ѩ &!uң QKQtob Z9z[r^zx~KrJj$l}:ey>s+G2>U* KJg[Q|=O}cƏ/oɒ|zT 5PkJfb֔:|rW|6,ѫD>O &R\HˍDΓC'Cf3K?nީLe\tZ }=G?S_t5ygx r8+"+ma[!xߘ1$'jzrli/7j2R!vV fڪnu! RV;oofh2>~.@)EBwIUH2,p޼B%gbGaB&ԶF6cW% yc |j{UHO;NZ͏JL 28K컥4D'}Uzw?/I@ \!yng}qr&/߰6ۯY'BB^05\.I$/;dZEK/M"UK;k.p)YC?$O-'T`U2վ襲P]荗5)ZŚ)(ݢmyƤ,O%Fԏ 2`r(6I .UfuI&ibMe {lfSҾ /ZOؿ ;ZwFt*?jYMJ,¶҆֗EgAC`TL5x߉A^z#E ǩ:Y Ss[; ,6 }p05b}- sGom.P5)9xyY RsRxr§D^VxUlҦ3e> NIr'>N ~jpvF8twp`߳ Vʋ'36V[72LW㇀C!DO2vhW)\权%TSe啜k`1Ĩ 1-MNן~yϱvF4ECڪVۜͷ{D<8x ij5kn̤Z#OAO '5m}]u]U_e2lpZ+- Ϗp{M"EJ'771P&J4E Zi4r&&=7UG̜= &Ns׋Ud#O={>N=@w/i cKp]`6?00VqQDj ihjas 11v'x2l(̮ngGL2O=ȉ#L?0'~W[|Dٙ@ +] rCrR1M>+Oؿ?]@eLK#_% *GoդB,/eY|ɸκU/?oj΢d[e&{ فC#38Ԫ:]@Z~˲k21$N` >q?hj^9 M?ޓ.]X 84Կq?ZO|bDSZy_YԶm9gh'&9k |L, Ih^71RJP??%܈_9kʹdJm2ur%Ԣb8c8cf-qqjC{'ǎCkw9?3uqM=ph^U \pH0Գ=6??omўjh0ZByvz|b A'N(N Q g)Cu!O _;G^Zk.zɽcĶo(] k򧌒^~}{ΗorJRk~s=3ɏ*ΡęCg!DwCc O$#߼H)M2ZĶ`Cc?(6`㠴c`ZՋ5'm(țrqIPuU/?/9@b4SAwmUEͺlr2=VzkbW:efђQ,Bo_/B~۹$0@b9zg~y#=)g{켿2_W5n8޿GpP\e?Na%{?j8Z㏷m9ڐ[a̙%:^z7xrZGٔr!?9S2)MGwrMɃa79E+1y'/.. ?)yrVBb3oPL?$)__xFw,i<&=>:L2}m u3ynҬ ?^R$E Z2mRK!igUSfYYh{)@Aj;/ɯMPrd/I.H\}ѽ#uw*1$y%G8ݤsŸ ?]Rj}-뺲IDzw|[֜g+q~P3?kӇ&=ΔZUc ?pjdVROb58~d#L:o_ެG-ͧ?ss1* [m(Qߩǿ*A9H2},qx:%M?wի]JAjO?Ṉ̀Cn؈%~|l^m=34*9`o ?;ۮ(:KC*1.LlmN (07 :h88kMgǿ-cR. &B%A{2W=k0{~mϫ?W쳛eo>%i}]14uf۪~?~`0 1%ﻘKb4qbsϗt~Ǐ,qlֳSnĻԫM;=+]?s1feBf;`x뮺|~:)>Fߟe8ϝn4=n ߺ6oߍEOʴT4&V gτ>d\M3;de}6YQ4*_Ә^{1:<7øQ04!\7挊x7@Sz9SR pÙчb핰cfF Al43ȫm' 7s#C?߾}VYJYL&g& ^7~7 o>t~^v^X;!&?z2j'5^>f}y4#z=Z}Mߺb#9Bi'9:yI/ o|Qgb'u <՞a-I"q>X2y>uo~˯LE̊˿Tn>cbar#܍Y2?@@XVL/!LΉtm%LjO#Eo1ܸd8pE쵼,ʸiۮdԬd+)g,+9%͚ۍPV ۶8gQ{u5ṣSJ2SN?ǿdJ;1#_Us& u%{yMd%gs#- )m:$'0.F JN4ȿrt^^Ryq6| }I,@,UC Ͽ+?O~'q'z#/+ y΍mp9U”;b` \pH_'['UѫbWF8< CqflxYG+n%@!p_vCԸugIRd{6ߺ Oll18b|nNRg%X0? Ͽg_aqP 'jNPZ-lgK&F0 =PQM8~dZjooɧ {u%.jCuA%}^Ai/QA$p%Cf u?:%{nˢsՔ3o¿u߈A] y9x]"WnK0l$0ϳl c_qWӥc@eh6$X'2ilP͛XS1yO5 ͞S>  7 + _{_OV ڦ$\.QtNSNAݘP{Km1e>yk^L'>A bH~/ =oLմa+"櫹/0~݄(`M2T>nXGt&U>eP{$G[JqIRtkiK"*\:1zc#{M#Yn?C"hhx%$o,Hm;XSPzqTE#$sY%I ({% fНbkGmDURI u]]!I<:M>ӽ(,1ةçӛ"dorZũd>=rlFr: \bkL$W✇F1.M2'+Nv\Eˇ,U p4[ mDvzi7!sgmMbdd&ƚW޾~o{@|Avuq=g{N3wV=y5SCȻ` =ki=d܊X;!'or{Gϟ^z$(`;vp[^ s R2 L H5&6y*trL!&g &քEh tnQiE9\-Ęp0}PC"Y{CV$;E l^*.J 1P)-UO0Dm1K!. =;)z% yO^NBp|Oy+9e}9`5i̢=}wuivH؍<%Eo6'nj06F*ZI%%rL ksar,J1$NyN^n {SP) jc NMrRǃ Γue?v )iC͔^1J9!ߩkS~:NƿKʺ9RdG1"YRo BH^ye ˏrJ'HZ)F|tJ#9r}|1OlTʲQ.0'/3u|} o()KQ~X1e1cnуMmM |1eBֹobўp@qS9MDp$/9KםcMl!כ Мz>hͼB5yG%SAg5H6 kJrw^ )J!s' ;N^̠?-ԦBY,ƈ3D*5ϲ$zԢ$`KCA %Ep+)99,plvW;!AILg qoJ Nfv6I>&R  ̲ҰgxZ 9)i#?.,jJB%SkH] O7p#i9ѧɚtV㌪TL5TZ1#P2/x~ƍ^2mL 8ke0^v~X*)VNLER)^"B !KAKk/y䧜wo5ɡ51Ez)A%FV8O%9 Jª\羈^4NN[<}p4,kR"/ޞkmk9{Fp޵(p}3Ų]Vj}YBHGu#~^gaJ?l.p_V{#uL>MBp=R_lXՕ%7hH1lL8 kuB )9zH9. ήZҤ]UfJ[(fa3\? NKٯξqރ 0 5Kj [Owng]5&cv3vXnzZq}oeXqI qy>g♐h^xilx1 iА4Q/>[w{?}Υ>U+Kn>{05\z%&s?+[XW5Ѽg+=>JNp;|x^eB&s 5=Q"3QG~(Ժd Tt#%O+{mtpsN\|!?JsЇ&؍!J)&FNat'-x290B EjJCe*Qg'`EyF >ZD6f`S۝BLQlߝ5aPB{1x,sݓ9=ٝ ɘ}m/w-2L?8񰋲a^!ͰIRk/t{.I-o0CNQ2!ph}Xr@[ZwZ6Gi:#/Htmy4rJ%)$w?l$ N Ajf;t]rԳ{V\ӆ׾ڕ&,\tlGw?pRRQԳuIJ57 YAtl*zJ*ҒI9bޥ?JZxhGaa1'9˲*'Vn)q @6 j :iep^鼗8cV v Lbf ̟༼:Rd50)k>wκS`TFl"p>I>|HèJJ9G 3NN7@yTI]ėĦ8 [曗RBP1 C2Ul&:β ky QitkCfIReL*L?:K^M))}u1jz[Ν"RR7ʨ45RVջ16mF'?ӚI&Y nizׇ(Z*b`~_ Q/;uY ~Ĉ88X7wZjJb]s~r& hdv3l |ڡcHmge$ǧ.n+ yP4vF'cc&9֊3$xDU̩֔R8ZǥLfv6~B>@ePNhMKR¡˝aP5aT$jRҢrtq4,CIlM~`9f W| VfX'uXR}db_)s;y Aוzt d jG\@Vs&ꘞLh5\ ƹW㤜<ʌ7$^8ZmC-TweAK$]``9֜X'BZyo@pц}έ|&{f'F-`A7w4(zue;ἤ3=#DŽ(y1q84cМ8@|w)bu"cLfL/E矪a` i/$ =C/\lW^゚8q =| DR88f{{' $Fbrlm\rGQrb[2fOwn)q;9"N4Ҍ[5,?K^i ;V5oguAʋE9Mɚ|ꝓtPQ#MS=kJWÕRNN;y€^ԀqiCr֖e@80Qb">衴ҙy*C"LJ;]@}Pb߷@6O-I#:x\Bz2tgGM^ޫm֚l[&j(&iAJ;ﻢLm%wdx+nt݊ g۶j[X މ=g!L΁}Y&o_+.ٮ}虯Z9XdCďN6C)B1'|y?؊ O/ H^so+99pjbbplR})%]8sZ'{h(%QdidD8\PZVc;8:QWvXY._l+k^,D+=^xz)rΪg6SZ|zMA/@l_f Ka|+QMqۗ/y)Uq?ΤQL6OH9ѥߦ )Lx.҈)8iIɱ,1d 5ANuJ{aT=vgtf֪\bV襰GN{|SAQAzY7&`{c(zt~ jn+˚ wɃ -!01#84 z1',Pi cq 5?3Y΁zlq9D.$~2[.&Jު)$* АVS׹l@lnaE]bjRl6ԟ12[XJ a~y=htŌ^NzaͰ.6wF|>S#4i3?ʩ!(񘠛w̽s9@)~x'@~NnKE4 ¤w]I6%J'3~ ^oE{I)dηj(m/DV5ɧLJƅDcF3q]LNk<"JHƼPb޳o-x T 0`x8M_ qTF?VBN491x)Y,L"x OiؔR~J" XL!ѻTyCBXӥAwM,6p;U Gbv}}װaY2x 7XWI !RJ%- 1xyiB;yX6> S3H_M~s1#U іEu01RSrz,'|gi~t1]1hkb94lkv:fŒ0 hi'yVzmhC:s{#s `rl SWt7]R*j+Yt(p0FA%'+QLqY ;۶ `X38O c!Ұ4S 4ʲ Вtjk$eޣXq,7+>Y1Izڔdsg4ن4!M{;sAuwCI|ϞDuBpdo>xd%c7^s߯P 1rAv6$ݴ;rViɵJݸ?o`M^tՁI&4Ʌ@:I dN] dfͩ\5΀-?)f11I>5iÆ~mt.&07uȏ@L5|p-*oZiW<܉11'jfZj w*j1Xwm7JOHH2Ӽ6 b Q9 C($IqlnP#vSI%] V=i!qsJ:^$lɌs4|p8%mjBڒq)1g6a(Joi# VZ\4- Tj}G1D1FeIa.[WX\s=Fg Y猀@ M- i@{:&D7Ќ,)d4  =;3idQTLG 6_5s1=qpG̨X{Ed%!/~17;]Y'.0lV XߩI;[ |diz>(xߔ~@kAl-&=GȽs5{r-|E쀳ykO^r;-n|z&OLmчnǾb TDnwRwzCkk^3x䶤~_ /8u/z4BՋ쁼 (}^1TPTCwQ [:`.*ۘBB?믿GC%cM UJ&#bd1:Q8ӭ\ĉHѲ szc0`!#`?Z(WE [F#AzXX!m0nVQ'-3%]78u DE ;nbil<7maNqvM8sH.{MlOVzT8A n=Bp1`A01Gnb? uY/9lroVK.?(zϴ`pԽvހSEwU7񝓌"SO5Ԏ3ԄXim L2.\>aL4Tû\ێzQR׫ {Alnzrx3?`cGi4p"tߧ'ױ4JZgA? '&Z rJ2gJxZ%;9 9~r)d}`F6ĄAr CfgS)k ~xT3}D1=e, DŽ,9_b\>is |otq7``pUjIK.ɩqq4 R!`@4(бx#m\?fBN,mc(X}z)szb)r> WAj@Nк'z2$'鵑Sްz 84?7xc9d0 x~dqd@sk煼oq<}oe2NonJqDd1< pA]b|=ĜQJbE CɎ"a=ƂDo mյsJL>r ș6;$%\WgRZǶm.Q{ 6XvY" ~Ǡ7FF<3;x9bB6hD.JS&CВa*q`ւ:!,AnJt9Ly`N*8Tc@&֦Ts^c y}H:+|UJmtVQR1D ʍR87-#cJƗK5W.u,{[2oewi6\ر}drտI:1)A[d9ghl8F h9 3"@ ?g!3F<BwXhzYgfp |d`+؏ ́N=Ҿ\%jW<Y1q25-It6Z+zk9YOlo=6zb>pØn!*eP(I\.ggv`L>Dov=FƝ{-*덕&y% 8;d44Oſ I1:,3m`3pe VKa:\z_H[fí A*+ כ‘Z~.о~ж4H4hBm㹡 `ܧ* ZgXuYU wqKD*jHfT9ޥ" ;p6\ls nU9br6Ər1j ^O+Od٪Æ+D4T̟ډ!?r8;SW_&f.vId9xtOl%aW]~*`BPgޏ!>@Ъ{/m3G^XY}ϵ=Tw-i?'~tQ耗DObE\E7+yM8pm<%V2M}!GkVЁ ;_ X5昬7fF\J!O@"*2ѐ05 挘vn TDZAf8Ց!Ơ72jC0gX@dmBSž7Lo )! iP&("|B"$Rx옽!ҋ*Ҕ r O41"i'\9ql;d"{vEҫMi4<^ёb xt74Q 8<ܢ*`\o@k~qS RnXnفUE ёU&os_͌{81:h77*k]K~kM+72es'bV h+~w6c槞,(‚N +-0ĘcRmlR`srfzgNnj_Ժ,ZE]z-g|==@ZE3Ҷ1o6&;_@kWLm14۞qLE.9m>Lx :LH[y`R'Vh0 a;vJ- 2E12o_(٩~t)g ep.s*lHLfu@@^8"Җ%/psb/$;6X O Ae7 FP2$L'3gn1eԳT6 *)l| D+i(ZYIibX)QF&`)VΔIe՘uULc'A1mkƢhkg7 j70z,s@ 9x(0T; A.吠}?idj)vcZ ?gGW/2*bPQDJ;jJqՈTK41Ţh Rzp#&65z4PDybDZ!E&!1bvgw5'͟'Fԋ|ח21}J )t lSސ y#Ҟ2_AF4.?{ +ϟ7?s@<dKid9coEA<&Bx-(, cByLf ˊԆSP40r9J3Ęd*: [޼5L W!|zvʼ1p9$ a3y@0mQAeF {L}{14r\]@q_{bЁ n?4XN026 弨\a]OY6Ly`}rgdoκ/ox'mS:8B[CF2]1B%`ϻkzzo{]Pl@%e+b"{Ǚ7{cB}`x/xBj'eK1%S&FӔmNLZ&ǧׯ)7H>װ Sp@n 7P8#I]}?Z%Pl@0oy>0&}snjݎ;uk~/'&PbXM|^u_ } uܚ7)HRM tr63BJJZ?Xn@hiL~m^Se.bݸAym> Bě'ym{lf|F/Ͽ]"J^gA4Wܓ(Yԟ %{,Fo( SlvZz)*!aLxҬu}$!Qkϛ`Fo k%`֑!oy˘*su}q:2 [Bpl9&u䴣v6s0a lmh )EL`pzv q6 w6-]'&7N_ IpQJыLE9a`A #Ė'ڜ{RZJF5!hnf%(x pϰoai@voTߏz9n'2P4Я<Mz sTTpsc)F&yB)x~!$3:_rk԰7V0g=MZ-zL ziz6D9S.h 4`s d 99'j>YgwuWmؠ).4!Qs¶QQ6σG/41$PL{n?Ơg bb?([bcʂxzZ}(8AQNS>G"(5N&znzDHuf}Pjrb686|  pa$Wg6uoи^( @ۏ MH)s͜$#dZș`6&)ߒ+cO M: cSEwFpG9{L~P.sJ6zfL])!$mو|%x @B\>tڱP PYR7d.#-cKʼ'0``t1b fJD-@LP5>+Skcݒ snN)>r=upk{]!PT\EYac~Vz1=%tB `V:,\<`{[$h9qun ~ӓ\3_L8*5x8oA9@!{vы@BuZCyB4!~g#Gd#Wk6(jOdnR׎5b4lx׊Ga3<:YA+S"`A''gL('0S1CDބb0 ɥ˷TV 7mM (Y>b*C,ދ 6+Z-S6'Կ3ɡAILkA;6FEH|a^^1A&a7&EHD"Ѫ:o$:ora:YY/kͦOŽ<L! HNO\\I.@u)ֺ`ј6gU Ad`ϊcϷ]r"GP۶N J` Nڑ9W4o??'Ϋ"kD V/r2 w< 9& :J%T8* щN\fD֚f|Wk\`e!a@&@{PAq]'} \pI{ "(n}lfk^>x J:a )gWjpxIM}a&~];LdNJQ\.:[H6rc o; TnԟϘȂԾg8Bit.gm(6'JLKWeL=&Dj3BfSoT*u) 9|[M .o<-Hz@:hnk!5ߥVgF$&XL!0m03l0҆a1Nt S,*=@759dcHh1zm DL垥`Gy51æ=R@s39?^>6Zz ԧy5t!dv,*XGS-Pac0\=T OAlbKMVڙ) ZQz$ӵ0G'ӥAsvaBhL U6]a_[S{K)wol{:Ll>E E0D5WhЇPsF^!ܯbD @9_l%֎Zr)4V;jiL@}(ޯb$^`B0mpAPJC-iL.=)(6H 3u?9HPB{Q];Ohy10V:$_ʰ% wz͉e`yYA?gTB!$f|P֐yO Ðy{~5 cA I $y R"<<J]ѳ ۉԿ{/v7upy[C-s g8C F o M aϨ0-tCuU4͘:;z8 DQ!AByh? SP @J hQI6I!q("|VwCNٛ#Cm5^bRȵc+"ĥ*'jc$J*ԏ#pSB-1B\c!n þ0"0sB7X)x}ːm?8!Eϯ$Q{~s2YZ4K'ezR| ΔrG9Z5] 9+J#b ,3\h060<|cJCZl(7p\52?xUlN|>-YE p*o!(TIUt] 。IxLSQLVէ~0$2}UHm2dQlPǀ]{JHذ%#pRytum Ŷx<ghӘ(=L7 lr3^Z&9I5"Ge3u8 Ei@뉸E 0 &)P qLRgsٟ"qZ x׆!6 W,96DMxOVqU*%>y?L>J5?Ӑ4]c@uhr y?dy`Lx;2B#m\?*$[Jl9K}ٔce`ӄ84'=! )'@I`mD!+Ҿ#LUvFL;> !}Bt#MKH1QZ:^^L,(jH~{)A|}?S ڻYУ \ &@s5bJd і6Tz,vRr)-=^dFI16AN>qf9%OwSa}&J"l5=`.;KY Lh-V)L@`8H!K"`%8utt–?~2uľmd4>{Gt5Hb}dm[m" Y qWKBaliCȢ]{pd$Fa1 l*"r&]dv }pXg9zP[a 匷AH~`-g6E cY0:-|19gKmz rڕ AT JXK"D@`b <&Yre7tYC_ݕ Ƕqr] *8JSJ؎>?VJlp_5~>M"o둏,K,Gny'uz'xx<`҈p 9fhNEIq升}\L9S3 fMəY( eI2cR䕶)?R^ % !TвW3ǥY[w(;;s_gAŦ\=YTge,b0/ZZV"&&˒R?y:OE b o 9;ʙvDno-3bN^O){>LW=hAkxhD<@iPeOZ փbކ&t6M< ##%'-$6`pタ :}DjE3NC*3qG6WoB6K D_O20 >{bJ*TNQ5Ht0 [FLN4l h&HAQ*W91zC u.o記Na7ӆ*:o^&6gPB§qz:8 B#>MYL,'6:5^͞Yo4 (Fuz0հHGouIo3T>k}|}iz;h|9vs]ǁX&~B҉9;BNgrsrC;q+=e ; d~ް2^s6]@7 8ç9?~|rCI}85m؏+'PU$RN-!RQ>I@!Nч! a C>;(3BO撍KR4>SwhpV n)\~ Ő齑zMShHUi>9,*FsDgtuGh o'gBnp\f4B;D* s |ĿLі3 e#1Rb;8%!٫S.NG'۸{-g.^VRN%">a#6!(騀MĶm@˶cH{?r8 HZ$E<Ĥ*qJ8G'bqu촁`^- z08q;u);SzmaFg4J#Ȫ rǴE 9# yW KNmVSb( dX4l^0NFg *`3+nHLd^煼m>~a诂Q-ۆ\/=|\筣\}a^Ecdd| ʐQx>y}N>hs@s$09ATk@i <6IS#O(Ŵ@݇7sO%CPög/vmr|auPUl{vYd:9&元(f 8ϊiJ騱1xXQ~)-Q\vm5v ƐЏ;e C#q@kf\u1=h\Lg-B`Y[USX)8$2s):؄bq2?I{LH2!uI`UsF#JBˍ߇WkcrׁsNOF ?} oϒaڽ,@ﵶ?zx%s־ ܥi"߲0[kYt~3ֵ䉹XSirz (8)|^ (? Em>N76bPkiJx7goۆ?c\ ZL(lvE '"*@xdgr308SKAM@ ޔ@\N̰ǀ61rPOi@vVbcAQ' `'ĭn(#&zۘ >1Yԟlc#bLH$%&dXhdLv2;ttX uWEu_ωZ  h2ˋ"ČwqD<=Ja.1"fNj܍37܏7 }Evks|@ip A'HS@=aM)kCd7ӇeXG&b(g6qߟbp&p>}#< ~!n:T=~Z'%&-N|3 7=e^Āzcǖ"^o=xl_9"PkB@ I*>??y87YfAQ/Jfm(۱qS #ESODJFA.B @Z#2% bLx~}[DCt}JC^*1l02c:tL挑9:Lc49R07WW^LV Mb+R$]lx'Fc Z;isBP 6ɮA~8HgFDz8P-5}A0蓉}/yKv0$PNMy1ZcUjEH1$Th%ƀQ DZՆ-'(P%+cyFJ:ziBȑ~x~?pL|@,N_:?6 e4c;>wY*J,&֐q -ebRh{^95)A>hbUA" P9PJRtz( VQt@oj "@tʰJu=A> u *̌:J;Dh7 6[r^ *%`.)SNha&ѭUPq]Z-u4{cOEV'E ñ%Z $mrX))"n;:7ΉFLjLfc})K>~FjyMC?%2[uf93,k7tJ̘bp˂a@aB!`LeљsgC3ɴ1jPu_ ؏W"r8;0Ok!dzlTBv?fYATpD=0*0[8|q*ž [BO)>A( H@[f@-"i1FW>HJ_W7fGJ|J~ C9f@d`kš9HpOz(aya52Jş5+z>O0bә7 ay/ @i|Zl29y޸頧| \- '}L\Ғ^'m}:8PXK6e@cyYM~ܒdݷŞ[ RKz⾧ׯd`шxt>7z,̀7H!9puA3D4oLm!_Z+M2 j^M<3'LQ ZC79ǀ'`ضĤ>Å}8 Fx;BA:+4v %6hsoB܃c3chF3ؽ~зaA);YlKؕ Nz07t&f0AQqnd:Hh&aKZ jPs+F:(/psYI~֛ZToɯ<ދ~z/0 l:Z(o6Hs b[(8o?X* YL(2oo}ŧdtBH녜Oa??2j'萠bи5ꭢwO먭"  “耔qҪG@|Ftʪ~4ͧѡy>( c ktׁ,eꅽ6yV\6Ŕ-MiǘH( D^~ 2!? Lx5ϝaSVJ^.D0NA ra 9*6 \bzՆ0Q\gEo S2f&;JIas0\|/`$̈́}P.J{5'2Jk.}R؝ya\eS A &12<*f)` ];Fip@ zޘ7)%< N(G 0B"GJľxn qNDjxI NIiJ: )Q6fASDEJ)Ѩ_Ci3D#`"wӻbrT X;> C1%2PՁhCw->ꌨ%GfhgA{5 A6|Pڅ zd[U7 (w)XNYg }^'y<@EK1ٔ)݌C#StSSi+&Yl]^u 5AVxS5Ŷm>L. r7ÈjWϟy6ay~B1D=j"ZzמO2'> M6E{ksշ,wsoo6NXf7NN92)#Ʉ '75*1P}AK;%?$oQ>rgqB$w(M?΅0O4ʁl!}㒏smwks cY_g%c̆J凼ҏԎrsh*b& lu~3z|Cگ@U?,-Ɯh/p.oG3fXTYrߝ:cY@oQד#SB0e#={y L,3;.1BW-A$h@+Ϩآxj@5[6*4(moD[(ꮂ]ޑzѠlFZ\ވ~2(k"l 5_.㏧1>{3!_&LB]_r#n;ȈJq9OsV7tg.W?sИyCmϜOWM 6Ucƈء( ??'f4Ny15x^LA3/y >'tqC|~#h7ޑbiTz'ZvxrPݱ ) gxSZ8-Myקj&&T;;kgL >)ŨǘG_4s]ɅۖQr!n: )1IМFȟ0i*d@P48p 4yO;HSdҽIdy` 60 -ͤ_ iHpyS\}\B Vtk7=bǁKbpxmͼZ{Ƅz;?/0MK'r" y&{7gc Ŗq4o>!~ܫS$X}@=UsB0 1[ ½<X؏'DEֆd~fI2(Tg%6b ٗc0 (2V]{lgREaL XZw:dR"$?@P( JRXU@Y>c* . ׻N9㪗qDRgsY+P)*N3jHa" ٱE}8~7YsRe HvR闳3PAU"sgiMZ.ۆ,L`\* ʰ\vf6׶8]`Gā }ze|'I]haA:aNnez# >f z^aߕrbȯ={N gl1 {*Ml(}.}ϲ%VTο/q`5!|w[ _2\eĮ^ytp6 O6!7[) 8ٯu%k\[OSמ %[S3XZ>@c gmlx%G_$ ,8j8AApbϙ(zhl-' +DkFhÙ*DӹڃrE @֐0EQyb'L Hi@EB0R9eⲂjA zЮUzfhț?( +x"'2cS;C8v^9/ 8 I}˩f-CM3^fAI )PF6O ,2f!60? S}1I$+cA%tQuσu> 8b ?(tGp-ͼl#TC>| s> c'hpjG͂;|cy"|#?e7K-o%Ib pbbmds]rbLh2Xɖ3TOcu`|w JՆJ'HuD{sqUG%vDZc+`t`Ӱo|9;ZamՎ62'|JJ]|LracRF[9-*f=:zV㳝ܙ>.)c ;ęK>4#+=bgC ⍡OZυ152hBX7Efm2@ 11\k}0rz^%5]襑]x?UhXG lF!% "x>dN Mš|B ۶!#V?kTk7`~H7\EykltSzzEkE j\Mpqh_ZCo68}pB&'ǃEZg3ZQ΋`e-<|P^`N`ah;%b4A⌓G<zb3-r&}x)u``*TRL8OuR5_?ozՆwʋ=MVO?_ `zL1j!,_LAM!1` 5h a<pu^LdS x<6Gcp]kU~OyHt͘67LSf#T3ٕhP2I釷@(Ðӎ\+z%әdaI~˓mɬ +Azl#u 9qNJ >H^/+3$&e+sm0Mc$#m2_rQ`YBڣUr&E\E%^,*X;/ =R]jI2g9~vJ@Yul RI㥶Son4(84)A!{|Jٟ'Eo B\~ #rǟ{, ždF& zJ)Mɇ*w-4ޙ9Ձ(kSEk`6=v`;ǃ}'[z[u`FSh~˙o\S&T ݙ(^! @L1g."nΈF$ 3HQ}B j@ bt ~ơzQ3|ۯӽ"D\=@OaG*rH70uۻmD,>@>ß?/Jg/*Nk,)z ckmM>|-Ç^Gc 7}+^u-%0ܟcު)0GϦ_Wd۷k#ӍCHhfz`-y 0AqZިqB`4z}T{]t||-u0&JuY(P@7PňZ TЃ`@ǾCS[ISpy ض mɲh.iavn$s 6cvƔ̉y~S2⦳Yt&{3 7684 !7M׽_*OJ X*6_z*#s*C.~k  0O xE lY2.QgaP`r8=69E;?B qUi1؎S.TPT$\Ҩ+|oV 0}dV8$)uN!dZk4cG6$ ;Dmc f>\c"wAhUOcUͦO YH"dj.n'Ze՘W4XHe:IzL=:Ʒ \y3(I`3,IƸ%ANĥn.]ͧT( 6=ši 83g,Q-3I{ɞfZ襐2xo$[B"ͤm 06}L9ρ=PkC)\Ҟ\'^`k$!j@ u^lD1L r/W+H`Gqu)GU*gpy20&b y8J8 󱣖X>ńv]SfE/'|epDmwcY3bT1?f{Us b`"vxlZc` y 4<+`9Xc J?{ {r KQ2fiPGx(Ain6l@fdtALiWa}(5jΈ]cSD19pxDhJ0%h\{q6 Q~Ro1G#čFljݢ=SN) ! I` lF[l Jޥ| p1P3fͿυtܦ 4sR8˧E6Ys8)8KAԒK ęK=;-C8$&uΎaW FNهԟ.k$kfK#S kJ(ʇf .tZ3>徇ӯk;`5D>o.;ħ'ؑBX O"3Tjz4FnDWz׫A5K6j|֔~|p0.44dxwOcf . 9 O5mm4WV8U zw\ wTեꀽ aV4LvHp`4 q"z.p|^{]mZop~w2o8{1>j$n zȟRuo}XS;%}g"$oR_ɀ"wיfS1Z@l|y՟RPkEB_6$>8Ü{m> [p6_߱ kJ $1${d' S   mLɪ}MRg#_[̎@CiPhڇv86< czz&BByTBtYjC}@{BjV~9dl,gӐ2cG6jFMآo)$ /ðu5O <(AM mMeR—Ro 2tfL }cS"l _Q兵J2iNs[>[H*,H@j'܌C,/ޚɑn`O.n- (q]`T(_2ĔX H!~] ]G{>h24e@Ϣ@oql θ_Q8-vwJI#UuQ #opsRҁolޯZ^> ~Mwb"?,"B[GfrWFRq9A8jaybNQjt?'Jg "i?|8 И} EęX+mctSQ SNNcDX8|AG*Sl{7(؆ (\^8pAzE2RHL2u=bK6[q zMkn.G瓆۾O(b}JPVc¶ ^bH􍅞FZ+'Dl؜5B`Q%}-Nc2w󵿱ʹC <ߏ 1OL<8Hb #'z9>|?xlL+j o4ُV%tizu(O[ih(yllmxA(UJ2a 1Kt'J4V; !6!e6C¾0__/2^bFy?Xx'B ؾ`pJ` Ԅ'1]q8SpV .}4(G064} Stkι^?/\IIf8ݥ 'Cs "rTeȔOcS[JAdc?+4g lVJ{6w)O7zDqד뺋 jЀR$0ulJۤh,-JPa-z 2'$0h 性7GJ؂LL "{6ә*mߝ X!;vy2R-yd-&6y?޴)F,{n~=`41v k_-۝Fo!0éM^0Lۯt5\l y!0ܔZṌޭU2y D_}1&ڍ H(9glۧ1$5m޶!Yy}TqՁ*B &.&e0OLOfL*:"iM_?NE0J wAoj„Bbp=m7 20-{5Z(0 9K_on>* X/绾_cZY+kI9{5=37&-b.M7e_Cw&}?W~wb}7yAo9/&t Fae}x ]ޒ<r|o5~EYƴ^p,^%bBRl9Dx^V3Aegt f4IkQG/2 Fv]za 68hXj8_'Ry|ȣ&l)ze9 J4sY.li膸yC;')_~?&tqHI J_Ȃsc 4gN"8"2;LLC}@cD))FBq"isk6xC0 }40`@#gnHԨ4lJDZeM(=}bG nIܯ r=p%|8g($8Aʍ+@*Y*%,KKn^1:hsp='|xz|zovlr"5I>6<vWsZin !3PQJɖ3$˼ɫ}e4dhIV.h3.NpR{J!&t7<}`Oa ]rlF[r`j*؞;b GF=5%Z Bc,cx'@HְhF0ovtU[a2?!(=F$MVT#lsm` 6}svKG4.D*K:#_z86 '>v/6qlj{#&&8" T̢AQ$}:LsWApS1 c07J~ɉ1ur_mߑ+cUOa#.hsr)t 烍OP c9* 5~y`RB}Q9 !b{< !a΁M.|pHyaIma C_2Jc MK9:&P1/* t;(Ҿj'C)J ?1$$o۶C5i~61; M4Lj^ LPsg0Wggg/lE맀 ׷HFtpbm;^Acw2(R hxzX=m(u,Z0< 9a~{DyCp|? ׅ"i8 DuHK}8LJdP QL ̐7O#zycV( Җ%&g o~s#{@I  u!mۖ*ٌI Ndž6d:Evǎ4 Q61xm˽JLnɪD,[|@N^t}CwLQ怮~c7} IDATרQ;{ b8L}gScNzaK 1g}$Ǽ3&Nc4uץ7]*~WU;-&k{62n >=@ri7Ch!ß;Vq=g +`@ Z7[>uuwX^V!0z}ws4g#?NabpPJa@BJ P''?D7-5*(m#OTc2QFBQk':SKZc0*"H} Am4^l9_)Lzl[Cij}:/8⩨hȤ : hȱ oעƽ,*oDxdA 1O,2[ ZLע,M7*x_p},lBXzOG N Z>om*@ $N'c!&lkQ)!(3H( ,(]k9|R+d7&9c i۰=R)O+W904>1!uQ)&Fxn8n *줹_) CmMb}xpyP2ՂR>4XY4C \0i԰h&kB2GeTGEi,br'a 3Onc"ѯaINvfNԺ1(s|θbQ̔1#OgJczEo Jxlihd?6|è߈.:'6=[]oqK3 5Q)v3V4Dm)*ZT#4`< ҄ =؏Üy]~.qneI$f: jmx-`PU\Wqd<2R>ʅScg!9 Fƞ"ctm0Z:#G xy:W7ech @$^*7VbDJ`c8Ky](W!,aW 9Ż9/н j֋LnY2Q$FꬰUQ$ 5x<<`=&EJNْKc瞣kLotL{mqB wqz 7_'Lc(gzؚcpz5!4ncba I T@>2R4 K5(+ 8fZD 9gMlNJF p/ >죁1Aѻr13+4 XuAx(!F0@L9p6;o75F-qFE:YBs: 䵬l(\,1)@}6ʒRoK-gJl1xǔPZ%4r ;A` R}eN}7'T5RtVN?3q<'[coAwW*J*h ,R5] :ݨ)i@ЈzVwU W)R֊uj#W!e@&Pr|<1<_{L̉=C1@EB)aNd q{SƽNuGPS6,}[G}ڠrj)B$zupSg /DR9s^`nZT\RLށA-"Rsm}~>n:k޳zez97Y~{] ~oۛLEX̯EĭZM[QEwm *vOs&xׯֳXyQDeǒ8W?mY {PNk=*ܟ1}f׾HF1DMۏ>e0aMFAjI?& WHR;(L#f~ D |c$ <`_lAԽzCLƱD'#HyMKK1xl-#BHa24!0KlkS0L&meoeNln'9cNP z-b΁|PD1~6fh] F̧p/%% ^g, a*$//^O|&_6E; |ν(˽DiQlX)?0mMv;҇8X1]C<d~{ÒI:Ҩ)܄8c9AA`bSB2Y1)>!S}r#9:X$^|8o<^z'駱-zs*b`0Nz }ؠFjL@:A6V|nxؤh- V,*GuFje;[_W="6h[n1]Ǐ9ɆTͽ䝆Bʌp5B9MYV ,%gUL2~#fkѱt!E^Go=(Iv^@\]27JqSu![9?.7`6b$jP<0|M!F-pv[L ]xpJZZQ˭zƘΘn7 ($#D mыHi}/)hiA>Q4p }:5ss8;%El|uj\c5!&i4sX,0)mx}@v%zof`3*lLUዙRA=xۈj>I(^[i굖96iײ_Yص,j1V2" (u#t76bƾ.΢4+t]y[}x\k)=.fغ~y  rZ `w,b~{M*L+sq?<pquQpE@p a/s𦀦lcc 6+zxeZF @+hxyL96( 8 ω}!AХ!Xhǎ#'\WdTB=ηՆA@ޛj1[WNNtJ!DEAu0Z*bfIlq筯z xƀ:cB3CJaCTc#&7`BT<0QXdbq0֛`އMQbN/ !hݱUK &/,}*NctYh|뵦 kӱ> VÇ8{لM?_Ɓ.miʟn7Mbɞ?yf,$sMZd%h0!/w fdh 0sFpb?SmJy4'sBrU* )^#DV 9"6 iq^4( yACD}Alز"|x]Llc U۶|QFǖ);F(.12 &Z\1f7Ę:5mBnsqFUXI'Q˸i<˜BH;YOmE X`pg>+MYQ6IB$Z,>:0gc 0RN-u<yx9G\7r Їtc43N ^ qhDmE9}PEyh8F쀌ff A):7gqɕ =&\@ɢ=8RYJG-;DPžg&/ڤjO7ԲTV:ܻٓ9Ǩ;P)J171b:`!k^!LfLqXĀ0 AU9t0vcct7/aQH2'Mዘm`Eo -|_6净sx6gM(0 g <_H)'>SklFymQLhzL EV V)!z_lL&pE컿 Y„@`y6 -Z 0I?D߇3vGk_}n?an6 q0:IOF[P!nk[7 4ܔ\dLXEdn*|* 6Ȱ΋\3׋,&r7IגWiL73z5fd=2GUNZI@<{}J9-@,{yĠBJ(L)b(1LBczOP2M pHeAKs@^{6'F4>_+1<:72 1FcuXI`@o(P}~3z/ hmMs7b PU4IBfJBڐG#PH/%XeW*Irr5hs\qbk9c<܍Xhb_ H1+޾~!Ha]ErhiΆ(O˴3QzCOE}&׺mRzj[y,wy>V3py >4@21źήLIɬ89"s\5x_@O:m0y1b&$5 ,d ejih|\m`Ch$ByXz)FmvJu<;+{Wsמ $ 1^>Zf.0M0;o(z1~L3i%tXB+^}ij"N S ˱wb Lڝ@xKd4 a/≮O]0f>9~C}e0d:$ly.r @k'.Eb8XhfKȄ3.lLp1GꄑwJz[bg5%ugIH-_mKRHrv|h-h޾9۠Mצ,6|ڨ sݿرSS Ԍ(Si=zg<$SX~Xb45J/ S5Φ[/yܴμE|aF4jMV6õi2^(a,xhk1n-haE̬S@yHfAzg!vXBňR` lZѮY<ı.\j[9|i~B3.DgezZm]F^`F , &{t_'G4 <Ml7rJjp0<{޾~ewV$hR Q ,r>OBޘ>cLyT^ )EgXY !p_Ifs wI3qgyy5-Cυ|9\V"߅ĞO?aV%/V`~1mvω֣1 V,jCP -a 8孩aЧIJg5s'4G#dl.x|J}ggWTEG1'3q]ХJ&U"w n 'sV/1ŠTY>d~x?FKr1y>|/;?7y[Jxc`_-Zifb#`~ ~=avM^Wc c78 ?t[Ѫdyn18R}b8a9uLJYQL۠٦UKԹ}?yN}.)%tsR*;U(i#D0J 1T)ϲ-g&` \x|{'['C'pKZ i &,GIElZGmx>g" ͤȢ}-s=A-&F-x`8jGUtWWMQw<B1XSXg8IyU5|>omPRS>%jS ֜#Milc݌.8BNIYiΓaɳyI9ɋ6JK+oa}N޳EwbIx`N&`J7Fo;.¾'n_nk#nvF ѻX6^m$Um =Y^'!^ 50S@V W]| 0 O>?] ~ޚh:Ow0`,\| apbaڲ3NLtµ}NFJC8jJ@ՆVT5_SAMa ^psҊWbqy)X7.șOꍥ:vjWrÌFA61h-y1%j$mUNxBJI+qInmI+O`tPx<|&biH)JxgMZSVXpnRddc5C`ND=XΑ'!v 5ƤT*!guI"|œض[7o!o43鹷uR/8{^W,|0[LR1,AY3eSb'9ӊR_'Oe]?MI&ktU}})J t_egj/^kjqXW ؔ"xÈ }u˸|=ѻWoFui]"Z':n=ŢrkowWϬ%\Xy1qOj} sWz30(_A;^}NVrP!y0f1szK ڈS7)T6&Sv7is2'Lz4wrSgwp&m&䤂xx?at&C9ҰyI*o٦yV>._wZ=ȮgI}i b)XèRkXpbINX`-'yx4*|X(M5p8h `hnF5yK b)F7t}nӖ6}^m圣ymJEo7Mbl^,Zzv˒95{۞ǏɈ7nٻ<H gI|ה}%.mJ2.&C)nW}'o3(L$+ d3mxYM6.3j%ݷф֠܂WBLoƞa6M׽mbgG*||tx?mz8$gB)63J7MŌ$CM\JH-g Z'zu;nYuII罗yc2S"Z3s_MC bIklm#99K#I7jRPi:}!&QK)YI^ (`IR6f1i.r>a4IJ+uSV#`ƯӘDJ}Dm=ߦ3!wy'$Hۥ2n灿m4RX0l-R-Yn:kw6*[P JƘ UAIZK,k6PA>~cW)p4,cݒ8тOƤ[C{4GɨH-y\Զm&Y SNkjXI5TҦsx=dbp6, OA&lr$DY9VIlD4$wԪ}ހ/ N60f-D!xrSf/OՔ.)\2a^i@Eji6eNL)(88Rbp{]n+|dĮm4aGaKoߞ8Ar=$ޤ}*!Ύ|b3OD0(w(qW?.RbT+]kzYvvLytc s(p<2Sv<ôr6-z4ۑ þ`@>I?l0,XO5Xm-X=f{^@* ֠ds*[@A Ǹ?O\DFbߟk/jkd1a%3ƪAKs^CV8_`fk @՟ejø>Oϗ<6Y@չ^ U8-(u6[Ob mrZZ#׽t?;pІN=t>ڤ=*LqɃ+Q!av8y~ˀsǓyq6ixޟ9J+)d@;O[upnJߛA4f!%Hw?zvhli^/1'bp:<]0hC8Uoσ`KYQ}~KD7r7Sb"-ǰ+7vנԢ[hXav(w+rA/되=xcnAvNQ`[2{gz FO}dǻ5_qR6>%&6Ki! UMluNk`Et6{g ZJ.XrgnW*_}lPjIu!>ӳfHpa=TDibbLynK`{wre@QNAiơr5w0ɻ|FZ;,㩦1Jcd8cqz*M#Q&g-')WJ2Ky\ 8/5쭙}Oc\l{61mP0Z4 3_n%E$-:`tK1PB]>J~xu;;at(}笧Ō%˯r>yIyu4ɨ $x5s_X1AVowܖL߃MZl,Ղ^7$=.sG'Ey)O4zlE`~r Nwz 1e)2yKxN}2'q1ѧvq (;\եg2(U/_8Whx7#k֗%/o2+IB|x!y\Ķ%$:4FЯ&A{t1RR(u<[ Oi@fg9Yɍ1ʷHwۖޚ pg^,md!2ms@岍Y2ֵ{.̈́+,9ϠTѫd۞9g =V,¬}9%8oeW< e`=c쬙Igc_ w) ! u lD$}]|ך^?G\I9O82S?!)_ka_~{uo ^`>NY/ B`_> @]8e._{~J_\@+\/ވ3Ն!VkaR]Xv~})GCXn}\ Xy:6Q9똢[y%b=N63gS›W^ a-9I>P|%!|:O}PM [ķ'a:ɾXy^ yw/SRpn]Ɓa6!H~7#HdROQ" S2(r 1ˏg OA/o2@mDdrӃ1o;u8\c*$&[8|no&CMmQ2I4մ:T%z'HLML*šJK#=p@(gD /)k3g yஶZ>!!F!Yj 38_$ᠻ|d:VftvL F; -serOMC-AL0C Rl2"#aC!9IA%.S1Ey[PlՈ_rFr13VB2cKɢеNzd8`1| d+] Jc#擧 QN` x qoNG+|y#5Z_o;/&eB7#cy$m T+r,')^jLJHѓ9<3^^( ܜ"?;-+l$y%YҦ8x< xMC9dnin7LZ!x}aLPɹ<1*=oo7ضq6 FovOTg hkP1%C-}ϫxLR-ZtnҚk*fmH)#}↘њ,&O X@2R(Zj)f݁3f:xm04n)u^5[UFSb9v3ioVK5Lkb* c-]rp51^RU3_Ř vrqZ@gRx%p:'gv'?~1S<$)R${kD3mNN)|J m$JsN1(3/d!'kq\"Ak-C}^\5f~9^wyau 8[ɧlųX>M鼑8>˰}bpmC#pY8^@ BAV߭+<…r8+9XVB3IW Ğk'u< c$ѥ?g=(`gR|||@oJ2 ^/?՘ +^WKъF!i11rJ+vpgI{eBZR`L"4L6ƀ>MIj?]12xKc7DIqNnNyx'";řqɌ잲;i/?L4m:ڧyPMcf?..̉^xmR!ڂtuZ›-r0MŗOB'0f r83U>FdObxk6Qp%1]ksXzY6" Q՗yф眴RhMr9D< Z,1x>Ckȉ>i,&nNn/wN%cX2yO(8OJi}:\ڨ1<'G*|q j ׯ|mowg8(dtyLMP}mkpi%JC sfn懒J+&1T< }%V3,n^z.{`C뢳&L ^% ըl~ǧlicu&t1H`Ogo2>|Zr_w2',A9_xô)o;G g)@*v[XKw~zSy#bY{O>麎Am3ϣCy.*pNIP e|ա41iQu*|xkG~~iܔ;+c@7:5a΋}Yؒ[Y{9m뒐lIFӞI6iCrx78g;z/v%5&yw,mOQm8y xz2ke![bdq< @2+({7O)gy}2@9Nl> >hp6^"(UfTd5.Fp+CwdNڋe,"q SQ+9Z`2"~NRpI; xM(Ɯ 9sF3]>O1p:ދ,;*Pj'g|w(lƇ K{1pFmjjR+۾뽷^At" ʸ{z}5O߭s' *:fZpA8e0CyOA#&Z严Ivz&a8|S'TܴI[?km4l>ʉewFU{RyPo.J1'K"b7Ud3o_8zlD<'n;)%߿?g>,VG$}HҺ\3Ncwm7Jw|8tk՗e8ow+5Iglʞ$ica|vsE5+.t1fk1]I.Dj򸱚4L5G{ }'9#'oYFL0 lL Vc blc93m^o@P2큟dlgaA9 I2s¥U:S1,&7f@)oU $c#{)!{# (F/!^~IVdLV)O۲WX+Uut]յ[#Ȟ3 [xw&>'svSsb& ٌ G7[w-"S|˭6S,Θ>Qtc,qAatLF'6=QJ,7LmK9w0rl)I>$d!b\z21)QIaޒ 2ۅ9)_+b^dsMYka: rJ]6R띀T8/F ZɲsNV2bh@O{Gv~^Rw?Zo׋e's]IA /fr\=ozz[>L9/ / ƵĘPa ɿdί≯󞭸Vhj/Nh@ijCqhp9MG%q΍6*zkoBfl6TBejw]qʨhF'Ǿ%輿ZO3d@9h!6WLg9(B}y#I1T1{O/ؾtd`Qg|3[  u޻)3Z̃c\v<cw;|԰rh„y2]aɛɓKrI8I Z~Sz^t^NM܋4 6X;>-SѸ#It;8o&[ZpB_@ټnqxj̩$6+WM*fhъ(ggP]cr hK{*WJ=U[D/94 :˩u=X^6 oco4"OaFUIq܉v*by  !pW9dHZ rkcMlZkZطDf~n@PJ7_n%"-)>Y8z05U9M̚Þ9I*eT4fC/X_If Z%ci:2lօM2/n7h LNĪ1>n$>qNkvgm8RLm6ܿۘ bJhr(o0,ļIrfA9=礘4um޻6sC&HBm_ 75^=zI̧|x89Ozg.J-dρy7y ݼZ[9K~}GIb̄[1}~qwn=r{k,堆9C~/>Fٶ$AD'INcHb1Xa4pgtضNs2s&mS/w$J|+%XhElsc14CR5t2vC;i'<9 H2 jbiỈ{<ɷuy3X},Ph!D/[[c}ʯv15ȩHZ`LO@X`]@aA& %q"%[S@Z+zD!¾{]ߝyIhK%4։zWqznWg>ɭzTGv V[eX[VB@6f惿|=0ڜBwY &3zw]S1$-(Q㘝6;gω)Pʖ=;F)1cP&9xR譓F2Lѩѝgjl_n| yxʋg֮"6W6&yJVpjhK=K4<9tQ9`O|<ȑ.|TRg!k"2&{Anvirk*Y(t8iZLP!,iEi ݅܇FmPhS ky39wYY+ߊƯE>/x 9Onz'=TL=:j'-dV‰|jǔtIbRELQ;ok61Ds2A 8m&:M*Et0+̕%:~v3)KI/v[GVKȌ;As Fz}蓳(oIAN MJl֨6ULRIP*zcB<5S16!j}Ū{v!g+*fF邆 p1>WѫVw5y)$omMZ]`-%~"Z8NsY Bvqg}Ol,)"!PFWyir 7A+)AN~8J-266~$vK;Px:1F9i牛vJ)LHU$)iYNÈu!%1 f,s\r  mb:ؿn 3i]Qս6=)H삧J+1J:g'E ${|僓QĬٌ%Cir`vԦ?F1|C9oW$aLH;+1uFx-Xjzѽǁaa zR['Ca2VdMěw%&~oxK^zaK5&}R,}#tIl2^Ō$+YO|+8 n.eBVmz`O;˕عdmL.Ϫrf0֞<LM=kLIY%{j5 [QK3lp[aicE N˜뽓p|cd$Ȱzލ=. X*)묧ކRkob8_Ny@)xhάf/z XqoO:|e0 0NHimwQ1`i/F%/K^kT3R%￀%0  l]w;1_VCfoDׯ+LC08en}LjH>d+B cZXv؉wV;1=OrN?+a`Ms=uʳR$yN-ja`29K8O4v7g~d5^7iSxp!)M2tEJG'zN[$(;6<[V;:dyݿz<y9!ngL"SFWB 5&Ӵ9L}xQ_k^&&0(1Ulf"nx$ bD2[ lE1&1l\4qez[ŰHv Oba u!y^[T͟J_w.lrXռʃ վ䝵@^ >5LNqCP`<gyS.u|Ό(5]E&Z鿣bUM M|%l=*&SbăQTNLT:7|Q}84e?5WQjcIM,lfh|@&8?Xߓ/ZmZIiwM=L=N:H~gUEpf89FkScL57^o|)~)gyQ:oNRW!f 1vz}qbBΦb|Ŧ37J2)n9rdAԜ>x]_]-e59͘Ί!1m|2XśIԄ>({2".R'Wi1>'2`yr8Re%)sO^+J2 Aҋy$pG[lw\: >?h^KLq.RMooo|->>ŏy&F^,"3KjĔwĒ)ijf75ۋ6WUwr"e ܓYN8ˣkX4GcXVN8yb Cʔa9sV8JQ&e&f!Q`fj']rh-k. /yZxAo9&mu1dU^(ϩ ĐWnҴ~J};^@&l`grp=e~?Xq[[bZ}1$cL R54x>u "S1,71GAɇP/;,*4N %-k?~ҁ }#M `Yo)bເXA ^.fz_?G5`ZL|\~%;J|t_/X`K5L^vIi,qXiNJ]دI [{w`yC;j5rai ߋ2T_Cz> U_"Xom7:k_e3Ջ2uLb栗Ge sX:Kٚ=b'˿wyx FaAZ)gƠҕyF[lԳX(4|4_E;o9fU2JU J+Y%Cj'Nm^;~5;7~ˤi袇o&|0HklRA9\O4(ŔRgg~a| Qp}v%-3EД 1~ĦCj8Bl_o_*W3>}V~%%ZP$P;Z F# 00kP}o秱 v Wf0^|_?52㬋e4_OfذE+Ec4:wBhQP^}`5:69k$o73my_@kf2$D=N|H?|{0& _-0ӗ*_zkbq0X)3t0/2k-wZ)zf]/~3@kMʹnr:>m-cMb(Vq1t0 PDtz3Y;!nj,e[ΜMr-7g:SmH98u}dF55 uK:yFv/__U/`c~TK}b*9N,9qLλ⵫bο?}P|M Ѿ3V.C'(t|BenQ[8׈_bw}~y7#fM۔W~-r4ɦsȧ=Gf<omcw{|bj<1q4`S`%N~8y<)ş_u*sP[Qc]t K'ԤwMCLjG)Ry~8f[^nSewoͭ"y82?6?_g"N|T&gm||<:_n?injVӿoif:X8`L_h$b:1m h/A&2ĜL['tݿo4drګl92+EM_3<,SlL> StzQisP7l+`*@dz#o}}#D+q p|F2o|BL՘;US50Wr@Y- ,C8צ4&1˖1f'0?jaw=3|Zk}aQKI)AC%5bY1_|o‡>(:.7 X*-c 5ݷmv1%]/v7C[ā$ye?Pg )KV-@K<=lG%Ku$Pˎc8(˘=OzW8]iYmNH|Aoj#eCp:{!~b] CF}#TOm88gg7_% N5Z jL qF̴d}8-kM??~Rsz(cO^Nষ%cSdy+KP׿|}FENeܰ)0j@ 8kg^DbOy*ˇ~g>?9p%'^b9_7׀߿Շ?/ zkKC/z}6K >{/s@P|ܫ\Ų]ӯ/&z7嗊]E`Csa5 M`)uNrN/ߧ HbnYVě91GKok~wnfޮ/)yI_f{kSSͱɈUMn1 Tdpo Nig@X)o~3[Ur=qT;|rȁ$HO`ۗ P>s`eRNݿ<'G霥_4z>;k%H2so"<ɦrp8Χ9ӉyT%1򬝿7.F}o8 }OBf6yjD3n|8zۤVɓg@Ih!ZOkLV㞲pHҴլM{DJ-]W1ey-_Td woMdk Jtk.}5Q# _R%I`SO _6'IJΌ=Yx6lH(+g0mb$Ly$o;տ[7&GF1|9U47]~okhQJ!zɷ0Sj㬇C .qIyRJ߮F1hUm\ҬuLcZ(Ӻ65 ZO6+{;o ;#hbhth&B{Q[(Ey /Fhzy9/>Su֒YlD޵I-cCO(Xs11(sy08S9:)x/s30fby=>>=%bJ:&8d:Sb~%ЇA'o S,?-QY9kpg瓷-Q"g&}8Q~i[-u+ erLcpoyF 2gIe$6fSƽ)-C83C9(FT=Kd7/ۢ/fL`LK2#Gi*u{/w=ozgh1166x׆``E>g6=Z^ $\X fhV\W͵E4jy4ⵥyCKi1[Ҋ>T&L ^I! dnyE=SX{@k(sRe+ iibdDtwZ|yaA/o5ɡ?p]ǘF2 CGdڧb.߰gjĴ-ƕ@Œ赾p;ޛkM-j9BN cM@cZu5LD%,:U{QMx| `闤@l2 yUZyOGز?[>;nq7Bsrj U_I yO;KS[yM S8]0?ѹoj}<ORdwv4OMRs[3S_Kct1tX76DZ/lE1JbdnBN:o_||j#q>PK'x<wIQ] qoMIqA;g-=-(}*vYzl කNd(}'!#pS 1xܕFYk%(v^ (Z+bMG)Q{~dL>HL5ޥ5ly|ovx9ňTIΎ9&!m&Z9J%{pI{B11 L%{msX̻SVIIgݾ7[gJuF9RÚˁ2x< !syIo,UkYv`ZPʹכk g1,$*8 5n7K Ƙ/YpΉI$#CDདྷˬM6ռC6F@~IsA ՛M9Ҋ!а,%c>., J))-)gL}rLW%#0T5>pJ:lb]iVjCeկJ&ll]b@@`NaB iXuC nY6Y92Գ;>m<ʖYa.),Wg#Ig0=8,pGr+F{TxR7 ؉1i8NpaM؅:CyǜWxÞ^# 1_U{Qr`1KWpFkEP|z9@^1je R??s}[t}%[ w.ޮq w= ?'WV01i^CX \{}a{Xd~}_ΆZؾ _1L>1<wK܇%ĈRy~{;JcЀ<Њ>~49~F.#C}}ciP-vk^!IF#`)f&y4\mqjѦ#߽e4Ql? x0ND{Npjbp`S;Dat伥 iҼGs ~T=J=j J:0lgOmk\Eek橳.}F`Y*K#Z 0[ѮK7d 6Q`̍٦^Qdr4BuSw04q 4b8N[2hV'篃rT2ᮍ2$ 9ӑyp V-&i)|k2Y<4yGhpOJ|G4Sݚ<}*rѧE%rjsb{mꝳX2NIW훟SSsNS>(!xVpY0{m!jb?8< yqOrN:@pW4bY:(Uu;'f~0͊o(*X;2qH{I9Ot?Ci3 wZwE~s[V2b~o1;J딳#^u3. R8:x5۶iiE{JwKS-q3~x~>{glKjC}7ز'zbDYp`Mb9e ߢm :mL&{ڈY-آmRUV\dp SCkU.Vo#t7dpA>nU@l-UFV*X'5T bM'/r 2[]JcE@l-栗j&RtjJcX'FfҿVc\5]X~brtVooLPj}y)1U-G6m;G YtI9_,8&!{ lңW`l, һIJumPG}z:ǧg){EGHyrM'G?`tK>Jpt%o:sV *'k&JlJl1a{SQ( |q98>%ۄIрëچ𪍍81fWj 抑A7og:I)_B]=O3Ob55ɣpUAe\?\b 1v_C-mq^/@3@tY,`j\p1־rN؜cc7&Օ4hw/l3\ VW9l(X귯ޚYr/Ns(loӆDqJ.7OU9g)a$ OlʔOVBd1 #i=bD'piı zm@,RYt5bx>;zL9y8n. ـ!:<󔉰<Ӕ"?9 -f1+} fb,i9Գ)t6iLZ*~F~ |lQϪ3O1eRB$|I-Z-*~qĨ BLC)odI uygyVgeog+n￿[ʕ1(RR501prgmԆ FJ::iy;yoSy> h)YR:;cvz'>8&98'Eжm鍱4i۾nWI[6Kg)G;m%sABQ!V4S}b"&{>C$@m647ڋ0yS_|ôDtQYYpd?D틼rLz6cox:gbӵrFTxFfUL}цR?O=;!Ȼқ:'8Ln7Pt @RKV`^P4i :ub|IW?`:؊cp 5ʤ 5j~gX%#s^uimOr?¯PM)F$j_yNNLꈻܖ_s{ΉEKy? -lijk6&+bp9]$M7gVo0ΫGr2Qc՟+kWdd#0x}Nl,sWR9xxK1<7%-lx$q1Jd92~ճ| 1iX.Ϳ=>K q^)&\LĴ],*#V:y [Bb|lF-)-/?8*}ʷa>[[)'qtbt~ 'G`rT1o꨸Ypdf=%-?&ی iwa6p^MjUͲ1I~$EU\qo[LBY@QfۧgmbJ8O5Q$TöGI[lN)vkfcߔ{cOAjyv qݭ6y^D k5XkNͪ%ʛYKv!Yz}Jbxw2_@Î8X:~L$^R%%sc\}7V/}@@0"QNIj],M::,A=Y>>g-E.6ŴuFw̙x$%vJq73cQx>+G7Y`P 6+g&0qg'ɾy-]CX$=kccFc1 LOcf:H> kKup`̭mC4a79Þ)y5lKmtU[Ao RgNJQz<8md"O2.ǧ Ye^c//UGL>.a wqUCi/첝TAz`26 MM&^@c}ޮoL ߸,P@g9V}Ivkg}@/lɵ@+Ԯ^=?.cIZwN>osti'˕h̿˿雱p_'EsM6bTcvmxM!i\͝JPSJਅ^IRL }1>Rtǣy~~H $&{ aL螅 ϑ-%ɇ̐HRRn,/L44+1,H2>o$&3b90D}} cC>ڝ %[^*XRHO3| q2^[27Ϭ^ޮiWmD5)oSPssX:W6 гMnچ_WbZOv_ `Ym Kr P9/Xb9^T5pR&15-:p C25O)]RQi*ZJᴦ^~[eߝ@e9WΏwy,$αt6ol[jsֵ o Dīw2V*$}LlWr%_Қ,<)kr&Bc^~_S*]&sl(;[ f;WቓIo4i;3` xg9oU oϓoB9T SqjO/wϓᄐQ΃m(&} ל}hAލ!ʷ#H ^IPǀx+E~/Z?~R2fk̦gRj>y K-}rlpp)e)+Ybi =WVKt IkP:5Z(R"rY}8_3-6pkmc7I0aB0d9WF'z~k45%A bjXݤ~َhx|< O M2\)"(lt691<.J널d>'-'O)#[WRdtZ/be?n>KSD&U%%[MB!|Jf^,mXvxр??ȿ{t.A=]D Hdz8-eu.v1y:r<9DRH/ph횜䁭;dws%p܄1ٶM*t1MӠ1^_WMjRhenākbg]ko=3ޮřX֞xg ^qe3^] YB/zw ey.gpNufLUf.)u bk{gH)]k_'_n@N!?pI%2zH1b Mk;4PpH;3lgSi _P&^9J8rnGe=6~ʠsILGfK%BPw'uc}O0usR9C)1shym8SDK`)SO󧨚m[o@0DH6f+Dpgg1O!xzRi†sn2F5*[&Zi0@k4c\LS[Òd֚Z\?3Ԗw1Ioj@ B{ؤ8V"5*lË`(MJ>&噵@R+N jc' @iɇχ4Y} vj l&-mҙ1FjsXSmېa$f>OCF)˘7($ {T)&/zC~NKTI 75bh&c֊;gyxJ /Pw ssTn.j~hsZRhpJHTR}&DjC銤_![fFVmYy}&D~:"~(1@1vI:mE}d@(\bq ZeM[m6} 17{Uu8<+Zlg}fL3h K[)rމ qϼ݈!xgч>[$ DjӐ"xGt*pRy  RCI뗍-yB[j\tn[fL%^N'_iybrA2~~)npI2$]! öe$"\2գ5URlA!fq $e!8V ~ o4܉mϴ.Pk1(&vuSRҔXb &åC`&̙Z7;]{7 &$&|x< sz ǻE5jZjYTmDkE ,뮺qy8JX˅"F^=DqBDGl*^ob}VGyS Fſ] - '_|wJEd1g zY ٺECY܀^K1s@H4&K$[k;{oNL(`S3PK $W*,zTfcD8 Pf)* ݀x#gE3LX,LiŃ;' XY4ɰ &%%u^CIP|1" \4MHU*?OnOMU$eW??oRl@m`$}$`*E&zA٭ ?6&~D)a؀DDL61Zc*F'Z -,/%c/EyD35b[JGBf>1.2?o03 A1N)*; Bʠ@@-9g\AؘʙAN@/x_ALIEĀsjk}^D9<)E  6&zkh<( (4|T&p?,ȉfAfCFU0( 玼UaG⦋lq44*LO4!`2iNlV#M%CdmyA9D9g>Ѯq2G#) GY7~IrH;=$'7$jclۆdYûLh3`Ä譽*gxr(h%<2N:Wж3S %ˣ&&+@Zl1QSN)?id_. ; H]r%uVJX$ k)ndŒq  l[(1@zbyQ1nv5 (kJW85څmg**{)'\I4➺ʐg^ ]b}Mq: FLf@^̎6A*Tnj*@)tVyG 쎏$1iA =X/P._ްYt1$EsXcD0G \a) 59AJƿ́89:14G'κ.=051+kZ #| iI?H덍{<Kp@fygIxonaeI0"\ 7#Pd}jki~Kׯ)e0ZZrޜs{ |%bF.oo8/ ?ߦ&~}cՋʯ;ݯ{p5  7+SLA2? um{aYk< @h&+49R%ED"Z?qGFL bpd<܇ &P* U}*`>0Jy$]%He:x 9їf RMm,B4 I5. )`@|:© d3yߘq64̀fjBqNzLhjzDY`tK>Fh%i^H<;ISIIș2._F2o3C2hD9]Z0))<_yS(Z$`#|֒vyǍ9Vm A餲6ش(\?(} $Y$-J;y!Q9qp|"$qWCD $inj,'E ȲXhtTJeha@u]7CMJ'fL+$%9AklOiav4ĜhQ2Eϋl >3lrto v)lbԠ2W-~yɉ-LzǠ7kEGL]iJ{x֭IH" πAf"(9a :sgLlgG Pk'669S JZDp!~6Jmb҈g%qMi%Xqʋڅc9bgp9zyx}@y 2v9W;raPH*;4S!-[œ'_l Pɸ.s'4)zH%}lِ\V7.Gh'd qVdU>( IǾZ24+< MzD-<- }:J*ONK6t2s|φkx9\'{c ΋̝.(\+5<~(k>`iKr ncp2Rxfk0/d!h{*61Z>ǎR QɾjrWY&Hk mͺ@Ӹ4dJSR7T}[8~KD! QS_@ J\MDp9߷Cny%)J Lo9=c.I3ɍg0? J(ZLS|͕ u$:y뽘aRAi Rͷc -i.NB")r* qXUzC)Z, \YSH'R0rp;/H1pb`8:"\K9< !/,*nSt,% L*a>rI>Fo`$J.g>Z\o 9랭__ pa=:3fj=_H*z7 j3}iqU35iqdAwzGƔ PMFD"̆9fRJRWNQLy S#xp:eq!}+7;Ӣd>qOu>L7\{Z*|O$M(:1 ~<h"c'49mv@4Ŧ5(ʨ mRJ2% 2 0#X1.Ns41;t:jts`'*hZVցXhR*-7\m@ R;YC@84I=j̉d|p퉬 f eY N91/ r0u)Wss&yl4w1 ?ȥ2$$7}s>F gei{(솘/t`7'͡Yp,2 :k:Q2ƘvבudM&S <au~Q#d~O4Jcis-.JJoAwZҡ°|bd /I9 hJ.ď`aѝ"! pr`wfz5r9$mzw|rX`"<RbҢD@bA3@-ϺMXQUzx^7V&1 ^0b%$N7zE ^q{<7pVdk11"O|@*1\m+w(J԰ Y4#ތ5UX߻@%?V>>}BWC?A`"{^NfJ]OfF/f2Yh}җY[5T?Jv\o|%u, 0PEf,9%4/3E/N i`a[Ѽܸ, cr6X EgҖPc'3Eϓ1 `{Ŀ#FGţ&TMx/@{w\Ð\`җi@QK p)8D7c=`Xq!+66ChLR(+R-\Ѯ} Z{^O<zmll#o\da\P")B%dЀ0\UZn 8F2T)oșENCVôJ(KRp#'|iBI_gЇfZΔ÷ dOzRI45&899_E*, tm\kc\kӘؒT^6^*q5ziڜH!ޕMSG~yƢ Nׄln3*hAv 3JuD4ҍf  >Zg2 r3p N_Ad1%0̧$?XspHF!?ە)!-#Tc`*sBb4p`W$Ar)Y_4k>k u@K)C -! Z]0ߘljnȑv'Ju\_R29-Ԗ` L&z8)sJbTs&>cNj#IOJ A%r'H!л9dc\0'0\"j5B#Hutۣ5([:~(QUC̳-B$y9 QGN"mN(%1X[bK˂?}ݲS<{g"}D!Oo%BFބ@2DI`auJRI!t x=wh- kR*j:oŒu>N_ 6HcR$ҍM"Z Tzk! JW`Џ+Ix,ZO{-XO#dӄk|667Q(*pWy^h1)Y̟CpDF4J&so1<(o~' Fi,U)3j*9|hhѯ7 9; dӓ|O$%φ 6ćm/xv'09ldJyF ..m0lH5pbfpWk%)PǶ)*lAy/8Q| . 6)^[-5TUz{n$UdIs9q,f牲oj P`#B|Ҫ-LcҬj(=@37،D3Aۻu\@Mx8Jނ܃qKd9_<{kڅŖ[%%!cr0 ^H+(츎 &N̜ $wS0X: ?9 53 AҘ,˘[0K̏X+(`hsPpk|I@4C(BVDi}u I~YĀPCIfB&SaZCLJ-Wp@7Q$QJÀ^o&,$ȴ7>ay&l2' jxB4uX#[_I![!\k_" ${R}]ďKҺ<$v3KBU\yHR$ pdf>`bl>9ݫRn Y*@6JIE܇ )\Ӎ{*<,t˙=kBMkov6ZY4ch}TE=.Tvh. p)_o>1A@e@& 6Fg!-#[X8%bsR󄍁$ 8xP@?<1.{ϝs.{Gw|qФA|! 01+ ؟\úZGZ7u@q/\RNt ڷ džd\-ް )l09K^BNX70IH`L7>["o;A G9N)SyM}g4!;\n&ARVp˂w$H8>@Ҋ,V,~`}AqN08^z^9J&nXk Vkq:]0EH/eI?ժ>~/~]D(ܬH[BBnFM"3T*(^ipZ@R߀EC/6 p'p53h5> z* צ :8J5kI 0IJ͞y&umJ8LdA080U6&6WS)@8sMط]iRad %[$"EfȽqZG;'}Чa@Rlh'-k<'9˟I/TϞc\cm *[4"2.HyTHkARZoD{mkk%65g !Mtnsx,2]@73Ɣ2Ŧ%>cKD>(cJ)3Tl|o3cqo6i CN%o-W^Y'4^l'mENsRtwR` 6id dyAiLޡ ٢C@yGNyo%,}Da.(u ]NMxp{Èg,-D#TF٣߇;YI>(e#HpH697l6FD Yebh)c):ɺJcs 7Y26[G7swSl0*gĮ-(\oJ% bPWl#ؒ=@6iu^'vPm )ll8%1b4s)(5ya({ 9>MG3i + e` %1(/|'r6Bź\Fۆv5U$wH9PDQ Yp) -X"C,tLm !4)F3F,$FQ#Ap~4b[`EsʵI 4_lGI :C>JA 9d&%{͉'A~#kH525c5y9p 9gWC.hVO&>J :jDAq]0VFs[ (Kyhܐ#y4[Q<6YPWЯO W6VO ZޣYSd`}q*Mˉ8V} V34Gl)}Qia%!t h0+$.6@˝`{F =[j :`_04겳d" )w] Y5hvuA`:?!.90u>$2$Wy!$ -6ba9FU{̰0XH(ӯw(Du޷_Yp'$Pu`T!Y3W R,jƣݜb0ѯbSy+ >m:9I +'u/ tCSȲ7 ~ !sk6q(8fˀɴP`7@ 1#ЬW5fkH˲DAFErcx춽XǤmFYl7{@N92(WCv00y}>KoZ>[{@ Yg~W\{_,Z{_t1O]^j׿T@~%.00IK) [bOYmzwPj$=.N\xښjEٟu'2 rA(ӛ4 IC ?M)Ha"KR $|wGKd4ؒQ?UЎ  :hl8NO2<L D?>1'CwԔ >[gҐ*剙~)CMM1b%8;ؐl%Mc` yU@s_ _UYTx50:VԐ ZI/ up9>=Ҕ .4[c3f zFQmqlV0N3! )עwsW[ ~-e fH4E2Y_LGee!K3Nm+50}i[ l~F7kGRf(`=)C@>;6L*6skJb%"Rs +!m s5eRKLδ B22(cvzOA JcI^˜}mEWq) mm̛;=D<2QeA21dJƨ)3RJ_NY B Ue#&xg8nƂ.ehfr'-B8~5#TJ}ot8M쵆;O+0R) kJ/ cm4N/\f,1.\q@ظ\=Ѣ,1'N,3w]'ɗ`_qiLGmCCX ĭQ<)e[T jٱv[6FP/là )d,(sCWsD'hJM3?^ܗ.̓l&$%?%2&t89JMߠMcjVZg`s3m #iH 3Y y~<00TEq(Jf{ x@LNICVWit3ʁo,i 98P &M$-$rm"\[v=1'P2Y8# MLA?b(Žh&pbM(h55G)@ %_%+oL8 :Hl5_|)LAo *O?Gvu4fLNzI*JHW!sxi<hX";1K(\ n ,G߃9ǖln:9ZQܚ>Rd3rbɟJQV1sA0Dzn7ͅF_kNoZ2Jr).K@fs xoFQ {{8W&л*)8D4 Z7\p pд?Nl)G֪'VakC{J9i:r4 eqq$3?ΉCSW@O|[_:ca< y/lHc 'b/}IM$ ~#6+@%glҽ&H y9_ >F$dqՏv!]?El4 &P:F#m{PrqR76L!n@ wxr\Ω(&+ {/d7T2"ߝ]%1V>ff(~EnDĺ9W9p}R9\c@Ô@QЁ/s:}@`V%f;y"`w8TB8Eo5QC?b!bz~wްqXiZ(r^278QJ?_9oӏ vۏMH)sbHDY#bȃIl3|L|y =,+>0aj _ () X{kd|^m*`8[#C=D)C0BlA36U%(/&K^L|4C}6SV6xFȌd.Ř YI6N 00Ut~`R}%gEF;ez7kAo!CL"Q䵎EoZp2miOpL:Ll}1t$"ħqѴ5a ԅɞ1K3=gI0 #ѯD}) _`%_:#_4koȗ i,̔Sx-'a߭^ NL# _KyXS|T%l.XIS' ]z NNO`*ۖXu@S?>1.J.4fPv`̎Ę<8KϕS, vu'04s{Tө[5TQs( `H؛am c`1lIoY }A Θyp9Hy5!eG"b~7-%' 쐤8[^+<{>M,whЯ:ڷǃĎq\ sN 8Fe\DɬŇtise Sdh Cvi%YpE]lV<5֒ Vo반Uv7 97szxnc_:Z(sfmgQ4梹RٜĴB!f v_o#AĚ^xۃ =^GI%?fǹ׻6TJHR ^k~7\8EzM1Y|_~oMPϛDS@?cB`7x#M 9#OC>+ 2L9f翃9/]c4wM%qLyv4kGg(l,V2& &i57Gx#͞cD6ǎ>;rIf6\>/9>"&sR@#yK)lc"%aN Q\&(:SR[HNSahWC"? 2 řpLќq)lr^ w2gHצs/GuWrU}VU $ʆ@Z̥/Q?>hgy]zC VBKֈ&㸘͵t;A"IIo R5zǣVt\q0R*̙~^0 YQMQ#1A=d8 5 3<;Jϳ8>zd ,`Nud-3ׁ}?/眨ec8fԎ%)m mgLa7DU*R0_m($)8 OF M f$us +P`}2!VSxVpD`6'!eG^C`XlZ"L@ҫ~(7HTXhB y1ZS"i_sbV ^ T Di)0[!H|fWbIuʫ A%`wכZ9ZNv&LrܲB@,ߛ&rVim0С o֌ZRb*ht'ѐgt!ih1h}0r 7YWѫ`kY 9e[?o@L^x&&Mx֍E2FS5&Es.9ߠT5|y&[fb6^X)bs YvpR3T x`CW1Cz0X}ȝl5e1*'%3[2k-z#A士OI~% 9U[Bv=g]25Q\>Or|M 5zrH T!ë(v1!G*?eK!2%)Cyu.U$U4ϲւxL 3Y'6luk~K9XR\Vv?'S`;ȎG=S) &A?Ŷu4|6叺h 45}# p3~}l}F xCAߢ4]@v[k)Ni.#EBb$ߴL3ʼ<'z䘤A~BPĆ. V: ax+Ӡ4,CNM2L)WvE⠯B>cDfɜrP2&1h}2 g:'l"B덟՚-;hbj #Xi<Ac4183{!(k攣IlE:0=71 UFa:[`Kt]b|:R l'[.dXeZP*M앒0W&2~i; ޾Xah[uC ׮ m;H"O F 4y5'j웆gЮ}[бJ0dr6H" [}<ʵH6 Ցrь }")Pj+RbAw]=*䄯Re4[Am/{ IbAQpRSh6 M_kҨ1}m֌-s0QT"R+>瀦8 Din&zqI\<Ղ|ܠ"|Rf-4"E9ht?l*%Quq9BF~6'~o9u Fl}sa_|a3 d9'Bv^8NzdRDy5Ꜯ6`x>:z 8 iRXvp/L-E1L[VcKEbȟ_D&zgv] 9$ ŰPNJ&:Yg^V>:j5!!,!(OA |JȩSH96sfBJ7~[h~;L.z6pC"ILca.ВtAi30|tۃЦjv pָ AA䨿?UCIN /û!@- gUx>B2PW(zoky7ZJ<Z[4#D;4!Xћ-c{ /إngo|Nzw_d1z&׌92@LQE oZKP)}~{^a ǜO$3|BpO8۠--gN~%c;殺s. "u V ~~{E҄f sNh^aNB~+518 i(z~љDueL"Pu^]ʂވԻ8@ok: ZH}ȕ9а9Dlum2͕CR$л 8u79ThO?9m`@ހ&u~C#T~|(7\jI,z"7tKƢK- ?/?[B<;>A40!H`惶ߛf܅9(Kk# G,sHsR{[:ERef>tcCmY4M4'EcE<1Kh{L‡E0pBe>hfF8RMX0RJ ORP Og=1Ƣ5CuP8I}`AI6sNNMtT:k$aҞd!L>[۾֊jdF_(1HA{M1Z6&~Z`Z3ϿlbϠ`Oˈ&$]VIc"5x<6|!ޅ~29g\~%D I})lguvzbN`3 )a+L%S}h >VЮ Lndea6'1չqް=P 2zmixzxjfmp YYi%@_4y~GNiΛ%sT3rV\W0.s& &^.O7|?*$ A-Q*zΎs)](pmx}e$ut7 OGöS|]C (cmBV>f66EqV[ Od (C6jقM޸?#)'nR);jZj$)O%4m8 ȄhFD~ldPL&N3"0VKƫ{-tـYʇq9)%zל w,SCV@{v$FGEXK seJ6dvTдdqPXW! 9sɉ{}-Nɩ!$Nr+QfFǖy@-5U)CRf\>zP\bs6LgWv\OwЍi69lƍ,9fطHwo=8;)y^Px L˵#wEgof4g͈K7HBwapS VEa~1M)bL%@EXJDQYg˺S3KwM~bZS^_Y0-.#x֍Ynۆj쓔? 2R@o:٭t!dug|ֽ()i#fk/@70vc̯vL7JȜ]*4G7]@t8/=1_+|&%S_/KTòFsֳ-֬)߻9s>@H2d3GyOyc}dP2V.TC@YF`IHjS`R|hHIQk9+Wk!16Z [ĆqNyNTߍMe rz'`éoZUd0VL59Qxm0}CbR* fx>6-AWI(cQuDFUtv"H9}pXly]X'%p b:JFעoA>GrjaR:_>{c. )LH!@?z?:{#ߛZk-$|mT|H{Z`QB޻l$yu^L)s ZM Lz'35P Ɂi+J YFLjjqzn 0nSvAT asɆ}-CPFt"xa,J`@To:wl 7$d*=S;VA,RHw%p3)yzey44e!\#r5dT1k-o!/!Uה.Y` @ Zk%XczYN5*ob]NlTN X'i9Q7k׍ټ7-)#IN(bSpzYq7kM8sf~ƴGj4KҴ|;mNowPRJs:] 月^&N}w+h(eB`^ 0+ (׎jy_l@JG6x0!U8_Ḿb+5 t|mkTL%cE@_3S!Aogbgv) B;~h0EZ^VkB'[_/uJN_aCIׄ'l!\-#03xQ S]>?ϾlQ<́gd:U_/%xV@u!hDft1(׉5h)dq/Q7'S飜2Z2ʶ} Blec0]B-WlD1-fȚ,؉ ?^Y)3ndl6`^s}}ÐME\y{AoWML qFV RNLpTYV1&Yd%QBǃγ sp:@$4g d&U<"z|Hۆ;YH!{KMd fpPrGE58;_ig?LY3Cw@u Ǯ Vp28.2 bZutTiGX1`}DF7n}`9\P dLgg+P7r\u ‘IQHy@`X} )3{~F.j&-NcdPQ_<Ϋ$Ă)KI oKHJ jSUC& Y_C;޿BI); h%1 u/80NÂRXQ׭9'\Gk~^=&6E3{kkRtZѨ)fb/}oPʦ}ݫxYAyY[ױjXg㱐 ~*u,bO-|GA=.*I /*p [1kA @.(HFT[kJјMz1 dN}P a1&dSJ8 㛆%8%Ɓ֐* } V_]H`f?ORlyh0ݑnD4aZ7Byݱ[%}tySڠ84 ̉R;) |^ƅR*r;lI3R6[ƞ0Q\p E,vaOшR }Դ f,8~w&z `VhV~w3N͸7cwP.lu"kxEN5_e!K n>m `1?PyH1{ՕWk^x?K׻Aѷ QdOc/IDAT[~ɜ@҇SS~\&υR*SfDŽ(#$I60[4 0j)(%3hυ ^{0cAYV$cv@8AWypZqSZnPGJoktL&TwGy Q}[ d[k*WoГEr\lDd%dfӒsIx:VJnZ=(u)%9q]cv 9HaN YHLG$c@bhFYEqz#\X6>caJ~~.Lr(NTx UrH2+$䴐kcYKOp$1%M]}WH&=Fawz/"+8FW3ta-i]Ggd BM42G6#ty V>9a\2v3 _tBqa@ 94**B$uQkuLm^&@w FaϽbR 6<sox^ghaqi0R g y>}$L^ ǣfsq'P9 9`la!}xc)@q gFs-$;` .10c4_*M1p/@'! GHU?8~.$j%bU 0=_ Ҝ@Nhxsz {XWf:`QaZWzX B(qhbG&Ρ4,cbz""g`_ë}KEaJ:_[j I q12>9avLe~)LVinzG`\.s]ڱusλZlr<7Vf;jE<{#½t˹_Ir5 i4IMkQ3`KNiE* VHЈ]V7VM!!8Goc >{x𡥤lHfS݌@gC}R-, }ϖ@C|7@ )z-QbQ͑XMW\Ģ) Y@}䲑16n 蝓3挦 "VJbTc1pGI &ie~~88]N3\ȍ{.裡 f9B ѬŵᥘA4[sz*.a9'stkɤTʚhZ75#7@4ɓj#3}BP9F&t4#SƢ8͢;v]žO6fy(4oj$)eƢ?h[ e('w7h8aU8ş;y" cԜvRp\ `v}aNgo,ZQJfCe4 Aȝ$5j_6<[]EP;\";;c(EQ A &b1] ~Q\+`Bq4ܗ&]L"m>"J -- rFWlI:=jimhE~zf1H;4gxN,6OJ)X 6'$S.2s6&[& 3[6 $QY 716nff!>D,wh=d⨏ߒ?qĆaN~5LHѬM(bxldaA[F}>8'dždՒU~3&pY+`I${W?o,ex0ڈ[& t))rI( Do U:0 b"c"5P^zl >t'}J݁T|.p^4y7HI2z@jx2c` WTW M8 )> L#%[Zya-E)āR3S4^{f iN]eye5f|v6\DžѺ]ƀr3cX4`g?o 3$x̍ALDhV{o0B˯kL%iZFc A L324B@䌣O\cag$^mPm89ڝ"hc F cX>-Dϰhg.Fib01pF旘0ٰ R [e/&`loX6&dUE 9@R}1tR_5{ ߉5y=rYa~9! K9_aN^6.*ra?KCdir\#My?#?;ж,ef޷{BS@%[B'{IӏB#UBA? N;C 亦EXsy|gL{O˘1YxVq{ 3'T<Lsr$" |Y '{(ɂn.LH ׊ H&4UrHhM" DR,ȩBEMl{$(ŀ2L֐<;f-*J:nIdKIpU'JRѼ/ `N6}ƒ%yH`I&jQ|B`oj핇w %e(Ȏwz}WeED5yv$Df'd3eDsBRbfH敃hn0H8\:_o i`/x aq{ < lU)סb x0<v6ϭ{[{aNb'y>yB0F5~h7AuaCiQ l0|<4LcFԓ`e.E:ǘ lRb#JYwd*>" eN +dyp0ѥcdLl`ڸSږ E +⹔ 7oBPhy$q'?Fۆm 7ZcHE~ad}iʰA s¢t%[grfe97` hF>\1E=_͹=+^gN2zk8u@)!4>1\P+`|O،Hp%!s5L?gco >: 4>N/Hb؋((5ZǾpwԚGH3rp(6=vH󇲞P` )21}ahո1=hw~Ƥ<95\&'qrVE*| G CJ>`RrGChna^ jψ] I5(ީKt0=:II#fdx%^sgqyO2'i^ mTrA}\\:gh8Eƕ;;h?кa\5&u_Ozm£5Jo27_FIyǒ,Jg7у9| )o Ľ<e3\ 5%kĶ@-{jQ !`m5=,H C "!R"A_lA1̜q]r3S ɗ=ELJj~ 8 1l1!d췔;@_+Pvgto&VUq6>S SZb>g'09Pl8޷|B#d1)݇(cr68bS+A1Ŷ\lCc}lc`voΘRm\J'5sJ)U%LKHV)㈉/˜ Ez gtlH!7οS)yqƤLImE_@1 r=HZMCb+?ύFuR&8>R)P6U4! u:;PMp&cܖ??i4`1;mșU(E<uJ-x8 bxyC+uMm!At>1b# =F:rs4C`W4c^dNH됱Ga))3EE~[Ia3v.ׅg|?=DŽ֮i'A>RaoPuNC X0ʠޥT"],M100wh(Œ Ro^̶1'8+fډהьX~XXC _gЭ~{yX+=Q~]#}'~<`Pڮ@kWl4·jyˀ-Z2>놉$S 1:zP{PLSaD%`}`7Ʌ>q -pOAAze$?дl(Up3?'eFnH[ޙԳ",^[khѯv tY2Zs)wl*Ѝ'l D*(8q/ISEްBˁ\wnD|Ȍ)(ɚFRD~))IIr48g BJ,7up](ja]_dYV6~Eݛ%قFmaTc4 0 !AXBѢ~9k8oq"b\V!=H @'O^ԟ^`t'A̼>[+4Tt]w_:zkbhDȆ35C'&us)̬V^O$}'P)6H!^UA{c 2O,wq"fk O#NF6֢1Ei()> ۍNv^ &{n'N Oi\j=!4S|%>2;7 !7VJϳ"D1(]tKR0ɛ7tKM|pLl3H)#on σZfDvs~>=ukvPHّnqԓ2PD߰u[wRĻdgmѷݙ4Wg_ 2]Aw>Z3L;nێ`d/ߞ8qń`|h]<+RB혰Pk=eij\OѰd@?ʙb<C3QjǏdMb<(?q1ExlёSF挰AdxI# HP .Qh{:F[IM)|dQKZaJR(0 :=WJ.H~n sa_Nd d P!+0gaȺ%6,UPE#=&;ٙF,\C @>fcZ,1LVLc`P1&m,ՀĀPFofLurY+qp a=:^s;;vsz ΈlX->ߗ3qVQm{ zL;oP?9dp'Z>>>>`6p2h88k8+t[0 &D"kP+1\Q-I|haRy=96=8N ZcP6ijx|!\sA1S:S£Ut%{0&1d=T :pj'>)1bAy}?Uo pY+Yf1dgsX1mXjZ^1|zuLP!zNip0  JHPE 0S)2I)&քn5>ꇖ(S:i<%;׳oݬMmyvX%$,iv_N|kt>0^J߫\e^F3X~{i^ҹ݁C톩$O>]wb~k)^w"3'!H %l-eI+k6߾bxr# x*s\gtWEZ:g%!jD}{-0%@=!Bq}<8O$Df&Vi " [ȉ þ B4MAh7P8# ۖҌ`[B ΏX޹ɋVӀ A6ι !"{ n]ͧOc?1.#QIg`u8)apv1'aatM ngs_2;wC#Ivj*'EJL,40`1f!0QkØ2.'rk!&<'˄})8ol&uV?_.k h2J}PSft FToF&P9vI Pu2[DӖRƶ}zc* a7=. Lc6dJ7{I(1< +>ݶv7`HĶ & y#0 VPnH'͡ ;%iq h:pjg%Y~%g4y U$8 )u)PR=+^^9`1Tub;F"T*@딼 %%A0"d[N2rzwPbqKi@d}c)w'Br*p]d3B?'́7\@Cyƣ<Ї)RE}C52WluM)#D}Ö3Y*A] xZv xú~c=ݙ (S,\"[@ |0`x M~P J.C1LpAfo>%"tU0As0pQd)vR&J+ \`Zok) ~ W9Zzm9@Z 8dpm pG a&oEmj@hcn @, ΁\SAd `Rq:Mu]t8~`Mb~4Z/X8# 'qW7WP%$y.ϩ H/_&<ߓ+%}>jt5n,q},Gk|U+7ϽDbk ER̫lDsqaSPϺߢlՔS!w<\ϊ֪)>= eoq9.x3AA 5A̽+vs<+" gPہYgQlq'$dΊ8v߱3F ֡QpV՜?dXAL5rB΂yx 68 '8 i#ڠ,+ƈOoظ  {D D=AUN?e-07$0$"ݥ}Ek/ 47 &g2Rd]dQ.aÿXؘt쒱p{7Vppq-?i ̤@~O :9u;dzݽ%TI"B&A4ʂ&D7~U`M^LC?# &R$<;]%6RR& ^f \\aa83F~yjVdLPzri&߈~Nay"eǐ`b5YEB% BS/2)֮I OBM&׌LT1UoZ ,&{=||l%dpRFå;%C8}gA(%T< ٬g&lreN/b"Z1bvy0ZC=hE\bM;b!c*RRD`} Ύ}0_Pa3VJF ȷ[A. ZOl tmv $ Fzt!0'P([F_޿PnL7s/gp+8=ϓ&ctpD6ܷQYuFO;@ΣW&M>۳q?h?Sęd:8Saq6[rby}wSw4oul-NYlC=s< W` ̢Cq~67NwxGxwL& .UJA7trX(=Ҷ,K @DJL0|ʳ8B$Bx<;9#ឥ; (ѱ%gtyX8)5Y]lr x=fC`hijvAjv9  >cb,߹YWrPgm@[ [H2!3@o8ve?1rh=9Pkfҁv>90㾳Av`:ưR~ z0z6X>7 ~Qu:iB`/{Q9sD`֓d3LvE_&ǁ9Y"un91}Y"^ pqﯘV])!}(^V'+bI!)A\t{o&o89Cn;iOB@d=W0=Ȣ7z. \b?́T:sPZPM a7]9JB&pӃKHWQ}ߛytX#]+Ę7h ޟLaufKa ;.adTkn; 9 S:گ_9ȇΔW” X3F[ ruJVJ߻t^9bBЍ*\bs*_gQj60_ה2x=B^ p9;9YAdi\eZSxX={yl}xyM˕k?Q׷٤j vqWRJ|lYw3L5@ZK$pJO'1W3in<ShT35HOa7L_#>܂yItAT !T9pAPh ܶ;<h!dA= 1tb$A8j?Ύ@ 1P`P$ GAIe= Iy4NVXiC׈gL*LjePnlD/$Ii|L8GЁ?=X jA酿@VA fݹ`E&/MƐ" zĔɴ 6'iN&ӵ^Ek/okMu\M5z̯.?u!oRԂ_wg&XqTyEF{a~.Z43gp/olq3%{; GK3vY(rNFt 9F>} ;-IX@\uNzx8uz姥Xs xjX]z7zemĘ'^3\ħ,ؠmank. KJu~RN]g2RPϓ[dg%EÀoԀ,t@[E4E{>xx36CrvۜROFZۚ~rz2!B5/ a8[C3z[ED}II\=;e_|8pVh\9x{A@c);M )%"!x޿[|툑5QF'І#_Uw{ GR%RbRk!Spg.\fz'}BP_ Zay qbT TЫgOf/&D0t0=ky.o2LsrF.6M.U޸xg6%B"Il :'غPN b3 h'Sr"u' dzFS)덀b웒owZݠjen.-d'G&};?lp!PjW<;)k➫U [JnPQ;SԅgЁjF{\ɢc8PLdI_7^++H g;;<KA;> wL TBDs\B@*~׊[H6&0;7es z dMFj*<ʁ 3 {2/Efmo2#7}߿yH l54ȼ)L>,o}L#|Zā[{ARBlY%[? Rmng1_\L\}"}q/f;oK!e(%u n|1 )avN9g;f~CbD"Ÿ|C(i7DD!^CDZe/"XT (HHBS"{~JBҎ?R2h3X !c )$<~bɨ3URp"xL38tֱ, p`a!aHz?BDSH:ǔRrQI8FɶDCZk1 my;N>PQkEvNaSbA P[r}k^O /ԇ+amF/2vpߚ.\5'陔&77ɉsӳi|79Qc,f{̉ѱ788!2%JU|S|f]%HWg>G =4!n$2qD.".橯WPtjnu`Jq%KT_~7׮"mv(H,gz gy! 5l|v݃׻J }p!RB9X|]:UL_#L),@ljP(qq" 7x`@.g< @; Ĝg V#[Ld# UA̔8($m@VVD@*#Jϓiu4mD)Wupt2Bs3`,]JQ7 C'3`(* hm>s@,ڞ0{/_Uq"E CMe c pxO%^$;'"hg%XqpI۝@@R1p'r2Y;9ĨƈtI lm[TbBOH k\;LƘ<\0zcS"YVV̵!L>B)duvP*̐KY&A$tLY,"n2WFW0l9O68qf‰ ?vOryは~+|k͌@İ?r݇ $;Q)2zmowoxƒ1 E^8F:чR&_\>c(7Y>'1nC lj1qp=UJ/Ѓ`@6ӈC@8[G(qtv{,}hg%@=ˉfeCp-5Emi+h'%a6 <\C=oDv&C"#āEs4SVcZx-)KEw\sQf H1DUa-漚[Jd(Eo4>TT$)Wk"QIPF&;yܿXp) Mξc}L77RY1- &.cS5p* >tM v?"$G@$F|?"d)3`1o ;*u,rFDVfM-`꘦ ^җpпKB-rfשnL2\~xV*׳bƚda!J )vrkeI-ei"\{c  X8I$gJnőkaRgT- J|0̈jz }ִPz)dxW\y6fqe({ | $] ]1,l\1t$̾uwh ko6 ac3pd\{꥝əD]z@!pjyfS0Z_;ӚlL|Rjmve6G٬Lj?p^2bdPfdCu@9$hh2D~m0~0-" ' Z7$DU.Q)c3$q(RFЁПѿuhX휆'M"lH`agdzvX8D0 V2 !-cXGvcŔ}6?H}7YYY! 6B^0650EQߐ<>$Louĸ<R1(M kͭq 7Y*sM`Nhxꟾն&Xƙ:Fv~s25Tu}I*սaJFMtcðupsяR6)/i@p & )(b+B֡PvG0!;Ry}yL 5~$M,] 眨hk01$([O`a2s}d|H7 +dAkP FNUe 30Ntpt6:'v~yN ګ?)A,k=AK|X,~t'eI> d[@}P֎rʚ]m9Ɂ' d 7N5Qbs/:3E;c)D4{@ 5>z>|0L)1H2>H3aρ/ SEit8OC4{`׆z>%g5lI`P@@;+r [³vw9qde2Þ6_sD85e@=NOoW;jx<){̙ 7_iY)/3u) Bz8ZEWE=Oّpnf%C"O&̥̩>XslP񧗚=zd^a'Yˉf unN>О'Qy^t9!gLtܞX>*1\p Y|V}@ TJdtD\b}yG?[0 =t,^Pf] +Hu ԓ̘m1n>|KJ0|w $g~e7͍!`۷y::(3?X??Lo\z,ޡ2Ŗr3n5)3 9T%ߕ l1c1Wy{&WqZ#j$9vCiY{}uku*+h5r=0{m t|kQv'ay@im6@VPZDpbwz2zАkFo}q/l5,3b,j$ ٍnN=6 Cr0g|~aJ5}gn-Ψ >@F|p׈wfL?ֿLM$9UQpz!>:}V}pYpɯfM?;V⑘qXkNEYOZ0߯Vr^K@ۚ=L:yNws b ]5 `7osD}>j]r)嫭- $YIް GXS:/` k M`窿vSY!swysXp1)=zo5g~|/8u J9_ (}߱oM԰ts4&gL8sO*r!̏.P[8 '8"%-Cz\2Z,msM~_r{ ȑ2 `,p$QQB[[OjCTE Q Yч!jڷBp>OX!BlOA 1&  &#%Oq6υ5zb/KGAЬC #fP 8@kE[IL8L@Y#ĈwH,@퐣H9Q9Qc4=3LFSsuSšK;aL2YlN!Ol`&8sQ ŔļbUF1%T1򟄔K?` ib@I  vX}8V1Ze3R$6''s~O1 ?M?D?"ܼ6x:l;uMwK!~w!2H%$Y<:Db01"SA9oLczT]tZYu@s2CtfNH+ KLuqg>sDgC.])BLxe~ :rŀ 9 euV_\8%?anMMm?I/ټ1,4J1*RNNND6s3S*J4kX!C,vډl%gWSAoPہ_noo!8"9zCI<+R8,c ?[Z3n!c%@RNMNk Mc(Ք#r-vCo}"6sTZv<;(%#dzA-ߠi4&q*6tiN!Я}rϔ SqM[ȅ^}9g1 Q69AY=O%DPGvߥc_"$ּ Y)\FFN0Ce"od ]F?+=I}cW0ŏ?o8'|ShavbKe"Hm,c;1fl8rHL0xVC|<цvVlۆ9g3OC9j0|<(>0AFeDoV(Úka"V6axፅ".2R)M<<:`V`L\[1>C 3[I*R n"n)E5i#Ąnʍ3aLVP{{ ᾚs/ ~: 5[)#gHdz#;q:Vf͑KD8wl6䅑 Du,ldOV JOܴ;R3]?O軃 ~&O9ڒJhcF}Vp ^^!Fl /ߢ"mO"J.HQp]Fh^d@Su3|Y]dqm>6)`B p0" SBp @ Ӹ=88ýTl(~{< \bZ;~I.aliq KN~#6yA.{zG P ?_J+ FbO tv-{^kQ ?k~΁sՃ:naJAJWlD\f;CæOn\2<\je2Vcs~?,e]NF sD x>Ix ?;YLx*,/4f_x]W /ڪK~kWAַ?s.IINkqMO8?g籐3238@At0Ĕ\/݈|C/?G%Kˆt "A`n|ʆNjZE'\qco4~~4]͋@*}l&J ְez1 " gm*iBP27K]J\"ʖ)D'e2 (ɰmLVmSRňh`gW[>Hoad  ?CݟYMk(jF 52SLՔcnL~ 2\I`D|CLba]ʈy;h`~0&br)od WЄO'a&BŔL< M B mus2|J7=9F;1}3F0o{0U!B6\E&iiySyy^+Ҷ=ǔѭ?{ ~ёr7Gl{F{<џr`#v$a4 7)!JD;N\Pvz(д??o?]F@սF9|:"*`T&pvM84 ~(eiK=;M wXmK n}+ IH8ș$ o;'Ѱ7#&fb:*Yd3r$S#VZZU<&G??q6 o?  xww%) F!El DŽv#8$!E9&'~wAAi)?gQ'u:"t@ QC?{6]>P QdI8 @ Ms/IZïb5s=:߳?g?[ lP?0P@bCێbp~jP[T?;1?ALGSԳYy{ɨgmː^AQ2}Fo ޘ3 Y(9 ;~ .Zs,etoV ] n%cr?>qVra lwEض~~ D"Z3c;Am*@qS#`c6_v\}#h'$_# ֛n'b%X@׊ 6`N!3z0X ?8C8.SWNFƏM߶ T YϕĄ??H 3,EAB2Dx³a. 5` =|}>pw}I6d!$8a-,L;O&aqC[* ~ }<zƚ;e]\ɛ}tp pV"$b͔ߡq᧟<NE40 U&i4$J)!ވ0Ѕ"rɋ!O?t&x?/8 ,|c3,WMX7` ge1ס rH?셹L' J6zt_>ٓ u ؊^r З: !6:n&}I/;(>~l:`41E h/.uyrI:qצMPg/p%7?18 P %og_R|q2d?{϶^9g >ŘVo6,2\MLp 3/~~]6YdxaF] <`p|]^gV=ًH W0/xT02afRJ ''Gyn֠z/͟_I_fR8&{agG8֊o $CʔH< B/n, GAq>*ZuaQ[0\ېqs?;~T'Z5|<+Eϊǩ!1JaK7GǗ >:'LVNwDdgC\"%8_~#RStPe?8JAa) 5c?k7, آh_GcAf P|fMꤎ)Cޘ$>y33_!*}y~g/lC!@58I%ܼ'p g29WԺ90rԫKZ{ {#@DLy"hPd}?+Mg! Q%c'=uSp9K-ZL@2?NFL?ʄsHY)tv7-KBU Tkg,N1TRfGzqZeRJu) E?+;oÁ,p0tJi5?:fXj jy pfNy~vJF0M|b=|ZRonC.Hnx68eC!1˗/ |Gp"^ _/譢ZO6߭0ZgA#νEZ_KM2{_/546-qL oBD$޿|y]b5Ȏl.ŧO; fOzT|g0p104^~I)x݉ d5] G.Ӑk[y88cݼ .wT <gR(z ퟘfr^SĔ Rќf~o&7?fRt`fힵzrAI8 ,*%_ /~bO&z]Rgka$G01O8;9&?^Eg=*zQD=>x8p˻-#DC (AG8M@ooοq RHeJg g}]Pn9Ǿ DlxRxЫ Yt @i$ AaI,uY",E|4@Q U$8o.#Y_ E£ 5umgqĈ D؄?#T[d*!BCDɁ]&@ li4'D{@@p6%[MyѩA%B+||@~ ibzZQ"u@c?&4L߮a6JsѦ&zfY&7Df hK? 9>UQ t9),`SHͅk>~DqDEf.d ⒹQQL0q~t'E,yh^{s]3#%:Fp1IScdBfFp/ mЛ&:ٝ+)߹8 عqH҅nhCfe`g XN5o+sjTN .}To$ f9տnfq0 I^L7,K`j\P[WNP|_3G N ̼ɚL^TGO3ϟ!&~3lvzYǓێeFĮUʜ>ߑts@0< LKO ax/ @E@|qLPZF~C#\o7 ij%c#>zGN<'jx?7$* D#Γr72ߒ8O@Vϟ .[F= UrľӀ ?~+x>;na`L}wޟOov+5|1K *7|>qdPt;> >~)mm* azǩyG00俟C(3$8bE fxKݖ 6pGbKd}Ûo~ S@ ˫ / k81xmED˘}ZeCr0DKoa%kg啾wg'3e>YOHA |8RLO)w+v(>-&\6!_uhxemo!8f&L߯\/{)~W?~W ߛWafjsW0O }_bD3x杌0k>iTp6:f7|5`q]zOt2+^&:f݁MxsɄ2b=Llp(`%/jp'8zdqRd\ؔ%O  :[i5)[Mlۆv0u& !Nv` vJc ۆ~X+b4__/2b,r)~2ǐе#Oe磸tE mC=ix'srpMGggk@L}/胓E% mjG y%9!ՁZ&q(*7;|| ԣFʒ9>+;㉷OQPض[N?n~^P+ӏj=Ș 'A6d#l;mcZ0~J<ϓ ("0^vaJc"/´ȘD!s΅1Yg6cϙ]8 *@ibPRBg: 0X%0bJiϟ|1σ!:CHd1M1DSw a?E z~!$zA6Pq0gC1z=}DSKFo. _(ՠA0/4߫xߠ߫Z)Qxvs,?jGaJE~s A|9/JF4%hi"ED>cY+] Ox>+!dԳS29hBzV:% |>OtO.)q8IS@ӧmxꁳ7gR{s0ϩ1S%D4-3-d,?{ RNhf:8 ]^a1GЂ7rv?#%^`3.Og!wqIsJ0q )p\!&T3|uJI 댈qBn"at݀T׈tw,/Q5`Lp[H)8> %ak o?m1`F.1t<%CJi)'UPCbu>ք3E\֡K[GALdd]8LrP b琸wD83+10!9tI'Ar9hj7zW"`CtGc/fT6Kk `1 Y &OV?t%L:mF@"9qTL\)1;i`   sq"-!ٛR8ɵ`cp_DlKdf:e/k(_X9uG_= s48 x Nxmj~m"bYL(.20Iz\_ ޯw/qZ_yp-϶&q FXD3' Ĥ;>lRS&|0CI4紤7&j(g#tZNqhV2 RL93 ĴmД`[ B ?xl9 0{{˜^_p_ 67%EWo74BtL@gXƲq58!pVzFtU)%gň 81 !~C=Ezĕ0mwv)x|7h?vcK"0_̢Ɖܤ*|Ӆ{/ݜ4ݯ.ՅN{ +iMB(%7t\HS`y%sl@B?({vo* H(}覆>YdB GPtCBߕ Yh)$ĐPr|1FMs,T !Qa$8ʮ;<\9Iw 4?zHug! @7s^AR;Y >!&eg}5&٫ꓶ/|w]bv~ *Ϣ@T]~txy/,a!m.9'2bl< 1;R2x_iU @]w߀؜ի.ŎK0N;1!t9 F0W2<{ ) 0=Dm}%t(=`r&iBا)YZCi{[f<|koYl'JMHic`<dӧ;r(ōhbDN,grJ q/%'8ϳL z҃mq C BhkH[8/CRp&j<>>`ϳb;rJl YMA dMrg HnƴU7Psf\+1telf}51DFimҷէJm "ZmBI7m % 04?Pae6tp-̆`*n7gYDB۷%=Rs(aZj=va8"ސ (L"Jɔm$H}}GH @dː= h:Pno-$8Daod J/էێ"׶1 8@7kzjS4l`7go`9bxvyVtwg@*`6 A)b qpT3 *" hÀ;n.$0^<,">N〢\Y1`X,,Y@iRO/XZa>H9Rh05<,0>9=7^@0_=Zq< 뿘<JwlNsFQ+b(i[ @7JH`O޺:cڃx)kuTk=: ьr$2Ž,0*(PkXR,1e1|o^"V};Q+R2"ōms&uR%eO PD<!WN*cxgNM0A\c$u7:`9cH =/:Qwat@}1я =Ǿyþ3Gx[ș܈xB[w42Z^eH 'p,C4`Hbpz{F6[8b9+)!%Fz= ZUPbbKSAny2򞱼ڑ Ն%CDfB₺T]笽T0P$~^8`5^N.͸Y硜paZ`6aP㓽(30& ~܏j6wp .#0Ƣ.s΀82xp+Cd1T!A@iL| <&2SÒU3:6> 餿4}ψ@(S(Lr=~~R V0M ?l hM4'2(4N%/hh9T%S3 QE˄u,p)/V> #zbJ'NL)U:K# k`\4'W608K7/[nܛGxe'ʧ o|tdNJ |I)[WJ$@|T1:yzr@HyCUBڕs&PJԔI~rڙ)h`F=+ZUrcL }0T38C #"y66|},Ȇb3bsrImL4߽v{<>> (`Zn;6rBֆvf%Wo%!ާizІ;$Dydbmn)&3 u3v"|1k(o6y:^[-#k 0b.o)vtE. 1۶ e`F@V`bTSPP3xm:Z6+.,H4RJhY!$dӇ3"GkcQgu{8c7f"cI \z+祪hm`4hٶqalu%pu?zqz,N6np4`/|@CB;kĈ`x~\fG|w'V1- ^6I  k*}_Y.Öa89?7$n>o4ߧudk.|fJ:אݸM:'SC:U7ܣ'j `M`m*;,{^?YzTN_M5L$VKF)FNLZpxA_) IQ6N8 )Dp@+B}c3ny!Q+,C.zHxu6|d XA%hEJSAJ0& Bn(IhPbؤԳAЪ [@,}pj}v:q)$l9!b@ xqN< aI+[}xu-g{ ,FӔ}_SfhH'BQ̜]I']^*EȌG* }Kt3[~bۭRNh%}mx!i`~oliz3 ڐ/@y|fi z!Sx_swJ p\lݷWuL&]r\/:ZccJJȲ3 7!8[Rv:Cs#-YhVlj$B"4wzri<:Z+d(FnE[PlY,R dB %/8vp Q mǣ62{5Niҁx h(Oowfj1 l8O&U|9V6%fow:VQ66L3`LHl8QpZ~-Rxm E=Op $A2,S!,%$cԊ`,o.m)D76sL:J@D=+w}~ `RG'qzz=t  y D3v+>!(A H"d(=8H Nb@ƵHĖ2l91'mCy1tf)Rz=` 3́6U2[Y+aP@ǁ~RW!6!v >D`Ih۾/kJŸ)=UX4G? #Ϯ83pPg05 |kHģ6(x6nGEPQZWP'b`sX Zqo %%ǵ V)7 Gj(%-X:bו͓yJ]Fx ƯC r(00A`8k!/"zm^,Jtм6#WҕT&o'^P8~<[Y_9`:h70)5^[)`2^[<6$ڸAY9A x@ ,C\f{I4FQ;Ҷ">$ Qg MrgYxy\qb299ٌ^ #3[8R*rAvIw_}KK5a)0kiL8ř'n^OM^։;Xv3%zUN.KÓ?n4Ñ֙7ʳ?‡W*%=П`~]zuqu`yJH^O4)-9 L5ONx5Չ! dMQ# *@4@}hr۾@QbGmDLuINr5DŀΎIR`ZFVܖ Pϗ @)Fh ~.<Rl|fJh7D`o;J&&PxMp1悺 83Ր͑40UcY~g1Ӝn􌚫И0x)}pц͍BvM&UVAh]]ҚL@\i8NdGMЁz A1~CpRƞ4dIJNN3f-o͔tNy,Fp}R_OSz'o:q<LR a]pAb:0~c'JjKwѯ y/qdNM!dN9E!'/kBRx,PHVA) ƆCʜ^+yWөFʠf J1caڽZ'EDa,<(1S&`_0Bltw"%c`2pOi!3Y>sʔzƤ V pIV@̑0^aIA/_q&mGJS)@WI}tsnqx ]!2 )A`-FQrLR9p#udi0gELlCߟ(%9Bt9@ kc~{mh!)%Ӵ6F%ӌ=H$@~)Kp0'k%eܶ KX5OI{HȢ59XL̙@k, 5aL;V(%'.TqT`n50AiV( <11Fn3k(JFHrʰaa67yömOv_L2(@P " La3Яn6NX"h q3Rx>Oy0AdH- m)yHYDЭ;stpg^5)V;A쀂k8D$([栨wd$^O7 i(nm3l;%b-D@xy%6;NLD"1mrID1#.qO%cCq/dxޔͦ%P^fquNkU&b@ؔyN+x@TQbp "yN1PErYLT#"B(0 ž߱{wt申́J\6:*qp]))}w߱3߹p˾l@nZ,\gb܂BMQJY~bs@6H X9C*h2>L/7C! 0ܠ;`^R1`RJcbwh{ J'~ȰvBp {ayycy8t,9].㲂u 1%ߣa93UW. !c< # $8*!\E+b[C@wdLi~c2R %Y~o7?`@.VbB^9<\9O_^d2"_C|irC|}zhGqwr9㬭oP#@S?_wLEӺf"W므euɶCֺvvgi!.@)|\fFzqC7 Lz4g)-9s$lr)Nӷ 2f(n&]{^^LK RMkfx+}+u#-6`>!4敖\yCS4WJcR4J_e8donJG6E ~98}mx4.%4hOFq80BmQ\m1c+7V2av@T9uZkzR@0[ Γ0o}$4=%`swCi\ ^6ׅ}6jl&c.Dh;2op֛7ǰ$θ6/vB YM7h4Z>/RB35ʋ$y+hL ^SL 92)X@IBk~6}]z,OL|_D)I;Y譄A$7Ї E?+%pFgB+=f4^TN0R E%)'g ZkkB]85㹱m=4*́'D?P?>bm%:#NӧLPO_72 lʲzCkzx< P,c ֊mF.$S?ϐɮ' Byw2'V8Q1qhpz\1r}R~}(Γ$V@(4!IFWq 瀷A[9gv vTRb,V0=쉈><$h:ͦ`-b 3xB]6S3 ԁ9 o4MrpW)\7͓3lՠnMZ#j4cnl `}bd %e?^UsFc4ŝT< hddd%lh fI]g0(R$0)DA ͓* ܴGx7},?#%!F*o^m6EJIhznu61eLu&2||xy T;Ì\Y ٿ25^Q>Xc ږggX@8[L_R]Kt&1e,id>+B~oQTU^1Cqy=-t"X?ɰ,,>| <+)2dCX'U3Te`HCXq Nj0 ڼzFW:& ?oc!4t1Q¬>&e;gwG\=i]+WOlT k;sP">.@+xͿ6G`m<,2A!u8:s؍Ir,%,}_+Pe;= '> 3~*)^*)|/'AϞ^'&9lJX}v@{v1 _ߧOp9^1bg?Y6}!^O 2R&pJ'Dj$E9zr)C,iQM)3c%aKl>D=i&G >M$:]1"wHXhƀs{/q +$ФjC*Ԛmș ytFĦHvE߷ [ J@. [H  <9 w* rBQOV9շY eHϷ>5ELX2"hy۶5e`0RS$ykR ezqDs"GCNŌqr&p4LvW%i_bl_bBXsǘh,rW_f}kK.LzїeX2_uHl8[ܿ!d~!%7b2,D|}ʸ?їw)]U1 Bn;OvJʖ}\PϺ1??*\W Qlv+,v6?@ 7_}+d}Nc)fo%3a~<ɨ(ڶ oo7@֌gxJa 1"mlb)7eB7(Cp<,޷ Ё=g&ܧlSq"h Ѫ'o:$Et01phCG11i.:N@s(dF>([uE&.+YT|`/f&pfp}֞LFb6᪱ [+ ދOgNZZaAgm9#9DA ˳T U?gẁ-F5]>CEYdե:et{Sh;#V?!4'wg!2 )7uJ}*ClSCdS̾'+ X60y ȃayq{pЌր6Â{{.RA"33ZV"nx+@NU ȉG|K0LSjN&Qp4oG( 6x0@6?ҐyO18řӞ\?}v/:'Q6n2 dL60J0)t@wE甒LТսb?$xyij7E*#j86oF6C.\^Sྃ\$rn&rj'jsrd \@CdOI :Q /ag1i ƺǧT`! A|&sHj.7%3ͭ{nSux_hR1d'6YO$</cEçB[In7CD:|C HioQRA%0ȔcvX$T"?q j̏y`6lݶ)%{Sq9_M=페naspdV75n=A&ir,S|V Ut)lg:';[}+Md .V8)9TC(S;zKP2/~J"{zNoo A;ɸ jl?:~þs x|w~{7q:0T ~fp7ALsf ]^1AGC}}K%pl_jW]~1`1'd`dQlhߧ^N^!fr@C[żA> SB$+yu%/gLf/=EJh}qTa6p%u[!Xb.\isfE|>\>]+"5 }#3C.jLЇ`7}nC3{)/^K'j/!e !׿`\ߓ3 }@@Un1룳Hh Sjn/#icLA61)J@L; # aw=" %'%Kvh†U]*䪊[H! ޻-m$ۂ Rc6i7HyP(L |] W( {a\hu4(hÒo=l} d7C[ƾg+MhSc 4`4Vq062Dlj> Hľc$b^[@r@&ԥ L}W& *–TYYrHh,DX7\||26>kf@C`mt]# CuF|&ACszXdE򼋵yĊ6ԛx#{oYƀC\3@n6brYS*,ЮzVĜ+U#%[6 AL?=?Ǭp+Mi}bMѰC,_IFX()@@DLXM{t_X O;)eL:YT^p[eh~zIo?SBs@}:&M&6ȴ617ғ}8-|$V_?#pQrD:w愲o"g(z/\<$2 h3@.cr Cn"5DʞTqߖE;Av獳 ['Ƕf#cB$e֊2iF@r>q΁ _Q2Adbm i%:/cLSq7TJd!Uo8RI>(="mѧ 3zZیSH)`ˉg œ5z enhUJ\Ql =/e3u.}ὃ V8Uֹ؋UEw@S)W&#C!@dǎ|? sf` 9U :<mҪ&TCX6L4!ʾ-f4@[ &(pߍ}}8v@R!s_oqP[CC ]zāII_[Do@R8ic&7:JVM&w?0%@)B}c["\?sX'(c͝?1d{ٝw,H{a¶*γ["~#8suW1ʾM)> ͉-G%9f4 lFWt !RzFuHk(d`+凘OҥIסٽRu/76lAVcX mȨZIÇpK[LX͡Ƅ yFhgŘ,_ɴ1oMj'b*w& z N_['ژH~O9l)b1V^Xh/ C͟-SL~gJ2{ =F`h,јl EE,eG(Iw_ߙs1w4Rw ^,\d6FLS9L:r (#HNF:ch 0]EX/͂]39=WҗSzMj::"H'udՉZʢYj[z`!Inz_hqLjwoJ!u3zG gL) a?0㎻bVw+j.E lk+A*Al(!!MA ݙZ.HI0)SDH6lۆ.]ᖋ{J8lIjklhqf`$:Zb{\D>-˗xr"<\㠌*#d&czgl C>8_`5k2Cm"sM5Vo4v(MXȂ3Co1S`cf$xԦ缑0Z%#씌 WL@jKPC?`>OH v 91+^ =uهw'Y1eHk䛹[aSĵÀڛ݃f6م2Θ^,A Bpq+l$'ٶr~Ċ^g~ƹ|pj/7BG/_[C4( ҨoҴriCLhtIߔh" $!D"qp~ 䍌&m; "dIPd]I_%m{,+m9͆$X9MsMAqp6cr! ҮZ4*^rd1&-1-㜊4wNzW lk5|Iy\V)2 v2@0d@}W3Q YCɤZu`2,!QI ADmQdOcB3D(9>@=7%$륗T7&G{6$&71-%c۶%ָ UʁZB̨|ub\~[d,L2}C1א|P"eI˶1ƽwcKY7ΰlb(ʻ}FQ5| dK ::v @tjha ^>/\7Vs,nOQ{' 7el탺8xf Q%_n^r^(o*<}GG nNo^VV_.O!%OMz?p2 3Zvf ;^hn'aέoV9B9Sa`O$+)X iC d4Xvl{De"äN*%O'&Dc̩ժLڝ:Ƈk^Qz$7[k)"gђC @&KA +>ɹn4? b5sK4pգU/Ƅ !`֠gXcu0+z}bX 1叜z?hB4Y5z+K]/y.Ybr*:sb=N†f{M)0>Ծ`Ҿ1<ߔb!a"&@2D ZN=5v><πa T ]DSY~R+<%kh!ێ%PU0 Ay,='Gı#}CDlێv;(Qp)dW%U^Ё}q]+8X?r`X;Y4OBSՆ@m,2Mo3ZkX1gA ܣla}1ub+;\9ZuJu# =fx `TkoY3mc .%s̜zn+6)]bYm4~ޠ5d|}1) WhWG6 3q|L(I qC֊Zdc؆͊% hJ36EmS 1|@fZPu%P2@ [I'Ic@άt HcN+TzJ"k:j JTҐ97$ Q<D^4Ҩ}_Y( RzX]t,{.ˀYB݂{R5%%'Dמ7aͷy:ǀj3oY9&hCVU/f=`$q` j*U\K c.0lqUTJ+1:RP=Ǘ gׁK#re䑾Q- |XSzL@b=VPTcJ% ؾjj}g~'֧`r]P[Z򬣱zOc+᳷`)(Vu?e ֪}uvrM?y}eolJq iK6O0hȪj=!`HJz;e2uXNl1 >(/)BcbCۚI 1au]},q *'  !sLsk u&iQ 'E81-APR91b3r)~E3>0Yb-#f$1IOWU$o,Z&A)oHB@yP qYOZDɑ~.%!YZX BԂޛeNܣYcN9EFowkv<Om>5Y(-2byLANA7q'?1DAvoݓ:7>M*v}yhT!b ^=`Nи\:?5б<=\F[3S -{ QN&4+E0 i5H)"(24E Dy" cM%%~j"d({bz>>as&'d^zB6zk3J8{/lz:V^_xZASKɹG:{pXz_6glQv]k& }qA \I1̃)ra1cصɫq&&"=RICJ AO7G1z>7qY;y[&*dh~O#d@SRePE:Jf`) 7|"_// mB žPBA=o>Bk/(QWC_H6&,f@xȂA$9)q'R _gIh7Ϩyö4_d LS ܟhƖdy4Qz;AC*ZaLhEaS 0'SJY|`M4+僀&%e+vrmMcT.%ۙ렷1kkz,v f4pi+6Qg9DIL(@4p`*z3A"|[~PJZ"@ 6P&EoT( {H@ȘxrYm]+oj ̅T QJ>1))윏9b?6#wj81%=J@P 3ĄD&1 t\ v0ÁX?gbe0MӜf,FLq@Ig̈` }Ȍ= uo|LӋ5S}YY/#nƮ}<*jA#x.f a O[N>ddR!!aSGY}3 د9);\Rf'6K} @_{=y|K m7(&ջY?c5bKT{CLSq6;xi'n3_EխޖzIPZ?k"{(,pN2T:BC񟿿e&˳ *Gƶgs&RА0j+G1(HE1&K!nl;-4 @ [ X2!Q &O1d3eIJAM=NdljբO쌱@P(5`5yaw>Ҟ @۩ MR>$5%`P|{DҵAx|f@ Q0{5)/5? ho[7)Jw1oyC_<\FGHژb4Gec#E_](#CjV={EIf`2X ie'eLb͔1oN6À`0a7pD"HLm %7:{iNEp 'jŋ3`A {`ײjXqolLC„g$3W}_ )n7i f^@FNRغ*'TkF %>V: L%PB3P7޸wI;B*43lB0?\PrCz8L- jb`AlhP\wEN' >/z_8!jP#(R6ƾlGFI4z/)`+ e+}؎}}!'f?Q l _;yi}8AJ7 *WC,;^Tp / NW6uS KdJ;kEI S'Q @a4ńW̨0:(9P{`+vwCșpg&0l;V0JYM%"e>1ΤŘ3zi[5yfg#uyYD$SB=57Ufh^V蹧}2<7lF,LEjC>hK ?Ƙ @Nwm{a@/@'~^7$)d`ͳ fcG8pOׁ<ѿ1F@wzD4xΔ}PH̗S >cLL{6&:I柩{ 1pZH!sM6&]w}R}}G706R 5"G^6pcTdU&Y[J9C!IMf5ش{yS7B5t}Lz3[Ifyz#:|`: uXS9ASkMmg1 !J7A}œx 1&s<,(?{'X5@@YZΆn}9jEPEN-O@~/[ConJx; (ZWrl=^W$ۦl%vD\Vؑu~<:x dN޷%e*BVV}Ymk!bx .ŭ_[j=VUʰ=Xp!: ^rp|IX?tQ`=Kb]S뻏Pu]>ڪg} ޡwA{LHj%A%tkj]}0b+Xle$ 5ȟs.6#79%*`ޖ=Y%YnK  *p{rH NїɆW" z>ZaWXR;{oPsO^_{=G ֟k_YV_ _h_7F>m[fj117l(k&mt3"Ae{h9+k4iӚ&cV%4?Cg}n&tDsQ3$g $cu B[m\McgSM@0;O7.1:rI_AbtݘD6G\!%^=_;zkDzetbUaԎ7Rѯ"#fq8AcX9"ʃf 1\h2RO/oʔ5%y%[WĪmPuZy 4ĩ>d5m0u])s&Yo FWgPH_goMeTfaУw$5pY21u3 C2chY< wـ} \|vpPW:exN[7f͜tWCP\7ORJ+r80純ӥ ل4UPz#aE4dƵR}~fgj-b $z0?Җ>''p{\WB3S>!oݒ4YEW)+A!E0L{E=O<„^>FJxa`'L3$hH@^ZmBFIq'Usf&fToǜ%8}1%NkK1̉`zd{4GE!Pd,LnC;kv#}іBzLAim>>o$kl`(%?h0~,d GIa>K*jM#Zk&-;ϟ+G–7]92=8%$ŵ(QۅQ+'xm;ӲtN(R 4v% }wLz߸׏2I~ 绢v!&(fWaٙ&l9!FXRs Nޕk;P`Ղjq[6Jɴsy,snY/X@Kjo{ oZLk c瓟ɞٳ>Q+;P=JLzOx@$tAӘlsbM.9jC R ώ׉Z  [b~ g8ũq\Ó1, ^kOX\1A}LU.r1˧yڀhY}B0v(++}>*L:2nT@!4H!b̾Uh Բ^ᬃ'|Ͻ7[hOYtLT%P';,2!|1צ?pk,C &,UԮcX@U 0¬>!욒!ߝPa{ذ<~#p y 8z<%ZK`Fz wã\9~I=)nzn\F~Uh^lcW'D_t1J)hn JهQimڢ`C^f0 &&__/R%1aYIp>H QkPR({r#R_; T"1B^6Whu t ʎuu`Έ)l77rH"QRZӜPe1D?3}Hc ٰ)b42\-#Gz[ ='_cN}%ѯ 8/TDzϐ [,xbBe!' Q1SMNijUL/? &#tJl#=.E3>Q5)x57Ot/pk2 G<-8d`ѳ=4'w"9ibD񞰊Y%MӔғ6X|xd"W-fc)IR(0!!Dg M.mdFߘxGO2EJ"F65 ܣq, b.Wv']-=ɧbEg!`rb7f:-&v1s}>ŰfDN%Dᤌ6N>I]J-6Z )'EqBdKs?@0c]p$1'+9at>ݜGV6_ޖ.Y"uQ۪ 6Z8Ȕ`3@%%jc@5>`~"ے SD&!nSj&T'yZJMϓY#!3y09'?+0*}49*;PKSLYIϫ"JDgǯo;W. KS|B~l;{Js(@tƢu m2ٺq8 =9sv8x΂w![1O(`i@"ThTɳ&J" %qG5DmKVvcM3d ,{*(zd4 PRDdF}4O0&_0,A+k& a*0?*#RYR^uh"lQubI T^o)QZ$'m[@ڣOgK bL;v~rCt4@d ͅ"lEV4KŦ1l846` :LɞV$4;m*()!kc:ˇ35 -Ԝ[)`/OgR3^ck90lXcT,%DTcGِt1avlrͬn>{ku]Y38%Z@b2u3vkLup1FG [%<'&zuā[G'} A]ږ0 ){+!pe!r2ĴLmNXp2iz?ֽ\a.\:D {NԇRU ^9x`G=-]ԥ,I )vxE85};{{Kdz߾07H aڜ 1',RltW$l:{Eɿ(@cVS8&,r"8sE5Vd7QИQ6@. 9q oନ*/^Cwlwo@}C$]4foFfWĘ9Qm j2>0ILd2ey>ܵ|sJ]j:^(tO(0`FsﻢFsќ/l cKGakmåbo qhe1phѭrTR<ap`eaumU1ܲ 'y m4F]@Q @V)1B̳a,8R+@|rCY,\\Uwݏ&/?(Z:Cg_$ krȢf3ňfb@dQҔd8GyөLm+c*pWʠ((`)ejMaMNx#oMðh,LL9DibZ _˦<MjEwCsl3k 0\'^[!493J*{SR+l<ܩ1PE(ߓT 'oGFI8OL5Ť4( < LM5_o|_'r7O7Ϋ⯿ߘ*8 _/@MZY;['Xc/&SMY8bBw P&If )W"GPЯ2e8;rpzs cI{[MoegDN\*1`rn@~ ?sW@͇=Q+{yԻq셢*$f hHJӞA2Cc `z]T0!D|U+b,ʨS̚dcG:4cF>Pٞ :.0›m;}W'gz3cdC$<E>fa؜ ,eT9b+zi{m74޵0YB Ѧ4nc͇,bK 4)) }_'pOf6["" ˯3-%l'DP9PLE!W*l޽lX{nL@BA+8[kS1I^áHW3,eb4ϵI{Y 7`s5dSY#C*Zﭺe??-^lL]ln`+zҚ3Wr6>'&砱vY1V=.꭮zeɌV@qdAX7vPe-'bb5=ьymŰaMu۞!6},FeT%_{zk{5`9^d?whyY=7ݫסԒ2m>5X@?V6z!v6v9B^ 11 qЇ`Em! ʖlI%S~(_/ R8y ͥM:텘7a*'MӶQ62f7Aޠ6^ŕ`t 3DМ!9BCDӀ$,td"$1 b6(ȅ 4mOJwIh]dOR)Z!9YllƌwT6]^Tyt[JhmieD<eH`c _M1;2JD]5S~:5q(BV.cp]*Or3ƾ$EvAOƉUpKԭw3>^r?<?׶q~~4,x BLmo{@0uO1Yt#+v 8;bc,>U̿+XVC?-/^%a0<яC5O.X#>2 }x*bYF)fcj%c F{Lv|- F ¢L1%,m%f/v́i`2=e"FQu[ .|Xs l uR935$i&`1Z_K{D)1ϦDX2YLO'eU|)8剕"w!FX=c?mAD [ss޸ΟrcPǟk##>'49 u;poH<!J8d[I<k(e=}u,3(ApPLldž l2hz!"J"h:Hd>akh:P2אll"EDЉ%(Jd='͊2p>b+Lr<*Țl;7NAQ㴵?V+Ⱥ yF`3S'S1%`Lb9MMYlȪ^C%V1ezٳ>H ;!0f/5C aK@eq^7B.wz2>O&7ts"`{J(cnj ؑ )DkZo+F{YL֝,8?}l?-] ak~|u? Eӕ΋ZE73rWEkLAjl֌l' 9rԻk]M5;dو Z;P[XSoAAt=žAGSI󥡣F>~hGtyqp^7Yʔ9Ο';d9g{wl=DŖU̫BD bFè|v]הjE㔈΁>'@z@I&%Đ n}a!fpJwĜ!lՌpuE!2>@EA=(36tUheЉ^P׏8h61:t" ?9峦XŮp3p?#R0u`LN3^۰~+"8[(1ZbpN]ǕTbW=nՀ n0qy@|uj$XԤcr*j@;s_YvJ9a ,n1v!Ɇ9"G[6#iiH q)6j 6 #mK%3tkMٝ&<}MyB0fOdTÄrpL4>BxZpy쨱g|?sg5=%mXiF^9g Bv Vy~Dsn_x' Љ|/= ʬ/&7N$gJ&Ìݒr^r1fo8d!㒵r:Y N0椇 Q2^ǘq ~ o 'lt0ǎ?xa<Q.P҆ %eeb/ӧudLNoMȂ~:֔ q*im0&cL)Z_PrQiOD " h[87v o!sg&wCBlz!L6sWQQL%Yhe uBhIl'}﾿߶'=t9Wt/ր$01jEG0g6cyLp,F@S hTY%0@7e0j>>Rb1nyW`+CzgcMxBϛQ@+A1zgJl!s@&C@f, bx߃::~zcԊD67Byd0bϥ1MfȔd a #GlnqV V3T# #F.ћI٤"` @CD*mepyAkŏBFkG2GɈƔG8kPc -VLz=e"Ģ 'h.>'Rm 14fᰁw!8t2!꾀UCؑM`5\tU|03 M e5J Al cfq{/|}}Ac秱gdmXehµB$I:8+h f?ƠR9Lyqw>C+H@m=\b2/^da=sظ.Xcɋo}Vd^VbdrD^4ZZŔXøn"$`I5٨wxXcӼ`ý]`Gl)Ȑ7X_.>wp)@V]/tU|x_Q3anu!uDtLuD@1/-Fv1D8!|jcL=Gk9i }n8(8`@x ;o~=r0YOX}d$,OE "+K>&>): Xdv}dH>5̪d)K#`._u-Xr;8 )uH'?_|?_|?_|?_|?_+$IENDB`mkdocs-material-9.6.4/docs/assets/screenshots/social-cards-layer-icon-circles.png000066400000000000000000000547201475306445600301620ustar00rootroot00000000000000PNG  IHDRvO@{\YIDATxy]2Fio^dK̈́I6\&_ބ[6mC@Y" l R \JZ MX’@RH,lYXdќYΜCŖef>gy>?FVFgy͛UL]`&<[z[vɗ/_|wc~tOC-u˗/_~g[+R>vz 5mSD%.SWڌ 9UTGd̑|pw;XhQ8q"O$&&&n+fs6:&ĢSċ'o6>X|~cFZ6kŊh4b׮]QTK_RlذBn1gcsk1>˹ǣ?[?fs6::& XMx"T,#˲lzy={6>яc^&/̋,E.']EV^|f]uVjO c^\/ƼJ*@x-R)^(h4n9fs6:Z:1/Ξ=f3^G___oVs`` |:Թy+mEVeO~27}P_m\1WXx;nrnKɓ'_tzǼŋ7tn̋KV/~)+He'/Sg>$6q~^,,W`x'BHf;7؎R Mu\@2K}QRZ d,b\@3`T` @3`/π@Rr^ ʣQ:>IeYWag ig 9/ǀ@r%2 X$7=թb@J>`mzp|˗/ˤf鹹 +R˗/_#=+_|˗/_~s'˗/_[xlC3&]͕/_|˗/l#k>5˗/_->͛TO`46=5ـ_J]h1ٖz3 "6]Ѿ5debesce=??uhQg,(qp--skh)c\ˀ@K)=BZ,ZJmSZ sy_e8Z,ZΘ+a/Fe7u EhI!p T:6B2- €@K Xѣ,F,e[s̀@ۨ1qn^3`VF 2zt(u`h+cFi,t?h+F..0 X#n#nb8  35K}ksĀ@[xdA 1`ЖF]À@[= \0`Ж|\:1?u `h[#F@ۺh`mMGy/u `hk\π@[st>mѨzZ OzZѣNf]80u`h{ ERf W-tj^,1`.r!t֦ʗ/_|L_~g9Xٖ(˗/_G{s5W|˗/_5y?ʣ}/9W@1`UF.d1u &$6=U|˗eR;}*OwV,[|o|D'Ws˗/_|˟O'ɿ=Ջ˗/]xhfݤ˗/_|uHߜ)^Q|˗y, MnM6 @XqΤlK=X™g ]<c楮]ũ+7@:w8\+0`еj90u jF-π@W94b0`՚\}UX Xt3SW^ 7~n^LH]Dęn#Ve8wq45`M⡅k/W޵$u%CQM]:,""N]:,w,M]:,Kq5asz۷0jӅ5+ Xu|}vI,x w,N]€/a@N  @+0`uۻ8s Xpz.<,,H̀/+@3`˘c;RJ>`mzp|˗/ˤ˿Y3yV>c%_|wK~>"ݓ˗/_|r}Q*v'^Dȗ/_|횟xlC3&]͕/_|˗/\})^qɗ/_|횟ۼys Ʀ&] ,ƛgOr@wɶӟ|7F ]ɀ73RWd4rx(ʣ}k@1` ʲS;]ǀ7%Ѩy sO^ B;tܤsɀ7i@t ܂O  nFe7u ,Y3?4u ,Ev.fSjm~-M̞56|zy Xp&/k@G3`m:Բ6^S}k@2`mʲ[ŀ3̞Q+SdШ%k@G2` 9h=+̐TO;t̠sg4y?.J]: f`f`[gSaYpe+@0`,88ʣ}k@GH>`mzp|˗/ˤ˟ YqmIȗ/_|혟H$j|˗/_|zNWz!_|k~>"Lt5W|˗/_No6/}5|˗߮͛7g@ilzpkMO#Qmm)ROtt!NXʟ\ fىˣȥmˀ2gv/N]ږ 'VFt ́8QЖ X0G}yedY~ X0G&/Ń Sc9tKRWc94~v FmŀsVmŀslt|~6 X/L]چ = N n 9%Wa0`@"#G]7€ 9 ^ 9*,x%,HW-̀SRepRWe0rd(ƞL]Z Zđuc bw$g*,x1cPR XbkŌ[ #2,u h Mn/_|w_|?ya >;<ٖ?|˗?t?įʗ/_|˗/Ŏh6r3C1˗/_GD<㡙itʗ/_|˗/Ŧz%3{xǹ&_|cl޼9KHcӃ[nNZ{BO3uH"ROp}85 )Ot!u Hƀ-^)'V |jiT{S$ X|Ҋ5 ӻ5`Md\Uk3`@ppQ),8k2`@)-J] WE̥s€mhj?Nm_ _\J!u u,hSr1?"u u,hc'.Ro0 Xƚ|թk2`@;w8ƞL]f \E5k1`@;5/J]f :D)>O7Kqek3`@9QI]f :H*u Q,0gv/5`dYϯI]f :ة8w8u ,P_??CMz+Rۖ|V˗/_~I˗MǟXѾ>R'_|ߊ|DWs˗/_|˗?;\|luD|C1˗/_GD<㡙itʗ/_|˗/\xnQ\<<G/|k˗/_-?͛T?46=5 x yÕxF7%RO0FR[b.q􋫢2ѓ4tF-&u i," ǥc Rb./f#ܰ4HK*DY#FD3e,z\ļf=W>}Y=zB.Y# ьyY#'IhDBn1׌>󚗳nG3rQ^\>W|>ϛ_+~:WFj>(D#"ʹB4#SbdYD9Wz.b:Q~qʹB4“E 8ԲRWbY#z fկuY#gh6?׈f#Ϛ5MRz3#+ jD.sG%Wr.SbTQ|!&s+ԕ_O1+UG*?p)VSWWdjb~Vf=dcAY=db0f3G+h+K k7cʠ5/Dc2_\O 1\1&r]x'2@׻zkёUfI.Z,jba j,1ԬPV}aZbA ns̠#CYoUc\O狗?zK˿7뉱|Ozc,0x@:ܢxha,w,uxYXܬƢfǬÍZ gXUcqCY=6}~̖CZ+~n3rQĥBor=1|O\HBoT/6txz^|&) bQKX|eZڬĢf56/SK(E+:7(qwse?+\zb/Fr}1R荋B_z_hӥ8啱J]k8uj,kVbqs:64Ģf-!!Fi_ʮFR'c$yܺ˿E)3[WU%uĀ,XޜeJ,oVbYKf%z3DC+(DKhj.}q!q.篌\g q)`48;@*fFhLNJ反J,.zY=aNћ5cmk/}%W-qgq.g 8[r1K'ű5#ԀYU+#Us:V7˱>˛zX}뉳83@G)DC&Sy!2X]/f9V6cus:V57~@:j1TņcV/T_1kM\\8 \cV^fhVbmS9S9J* h=1篌Y q0' \/|0Y+_=w/k kĚf9hLŚ+mLŊw+6FoD.D~ޕQk `L0YqswCߵ/EnhcmPY;QelHWHdaqxMű/uT*_7`fXۜSqgc*hLF9^Ҳf%5+5!'Da^׉b 6qlh_osTlNGޭmiVkft?x~^-`%l /-kb;فR#"R@GkX([r8Vc8ZGDa^TZU:5'-;p>uHl^ֈRlfT?Ha0Ǒ(|`nձR ;VthAbmkx[\x/.Zq0 c$ߛ)Qǁ\P*t1@Yڬf%{q$?? ơ|3nPٽ8Vf?f -jV͑x}QPa~,‚8T|O–&+E`=u -jV ͑x\u.ġx -h'r1x~4u K,oVbyo]>S8^|8г ͋[p NJ..@InJ{N|wkmuxz&Ǟq+,oƂlnY{l//_[w/F}֯ͶQ|g~nYDH/˗/_~gq0 bP(,ۿJk_<={0˗?+_3q׾x=27ȗ/_϶/X)^<]$/˗/_O抱 8X[wӃ[x/_|3t8n?m'y$_|7%,[#rq8?P/,m h-ƛ{_-up{ }>#"@-.g(`U{x*t3nMkx8DDh7b_qA-ő`dݙKbKR*t8nYT/[""b,Wš[\;{TE~0{ X̹Y=P7F"R'bOqQY+p*=qߕn 5kx[bD\pwq(vŮhqw-{J0`r wrx.;{Ʈ+V)]Z;?3VBf <+plD\zΞEL(G!qC*=_zU@,l:g6(v,C9 {c}bRWhk=ь5鈉(ƮE(, ʁ#Z*te~- +g=_ѳ(,J7lbrGN]bicM﬜Z.b{p ux]m,3ę|lm=cwq(ic']o> m΀/aes:1}:1}:*B(.{ḔM]mUd])//@3`+xSa'˷+.,rf#b3uڔ nTwO ?;{%L^Ï|*)܆Y%g3[{1 pmcxx, m3k!ш.j3O,=b/u=,b}׾@1`,(D»8xwI, De'o#^#f X0r>da YO.Å̩ũKb.@1`[('Wwq<ճ$ E;]Ƣ;&bp%uڄ ZU=K+=KٞhըOo|uh,hj1+ƓK=Kc1 @g߬{7= m-haV_9r&JxgI|טt[ݥX|x*8W31xoq|gI<3,eY?+;XK]f62?ʹx{\犱wq<޳kS316=U|qQ:=8ٖgȗ/_G{5W|˗?sV6==4==}26+/W_|z];E-=@DD,nVK1}{MsyGW`/roc"-OwĶxwE<;p!0wN^I] Xu"j#Pm$&垥x߲[J] Xj*L@Bn!n`VgCƶr:ZZ@kTE @7Siw7'7u8~}H"K] PS#˝k[[V,To]|o<޳<п,Uzbϧf# ̀Սr|,~}x;/c85k06WÕq >׿"wYT7<̲X^{1ufg@˻1<qxX([gS`1/k3cG'7F"nf#dЉ X@"6?27~uxr;tRo۷:]p%tO˱U!,

3lQRfqq7= X@WZٜ:>5|$6++qf5 ڼxWTl]46̰[y+1Yx(Xn/_|w_KroϔvƇwśwN֦˗/|um'ɿJ|ߚ|D'Ws˗/_|[)c?07~uxgTEcxO"^n˽#"݋˗/#">Xufݤ˗/_|<:qik|nc;\/_~ij)^Q|cl޼9KHMvVq*?p{⮿s6u n@wՓ5ʙڻ$>5ƁЦ\2K7 H~;@"ToD.fw`VdYijvwLs5%@;0`܆R/c❕SQfJ jFe'u^ `l^>+CLs!0{*=FK#V4 ZڬwM^z*3}4+XI]ޥcgJ]p;@X/ƉR(.?_O,N] ٽ1ot3t5W`{;ukҪ8g8u fhq'_,툷V/F.ԕdYāuW] @2`u}+`5u1y?udh3't;̡z;~}LzRW:,6Y?S_J]Be'vQRW*,6wc<~r|O|h|W>tEK]k:z)~r|wĞO]:ڥ bg{*̉b̬kڥٳ0~g8\t{T*XuҎQN]:ұ'Vĉ\rxsb<޻,`8O] :ʡ/jxR*X] Y|S\ʥmϧŢf5u%Y3wt,@)3cOb~VO] :B=ZRWH,.xձMhm^)Ď]S#}t@.=>RWV-c'Gu'ub Z|,~ex{\ YpʗzcB*#^˗/_~I˿~f%wxm}lV7=uVWVʟ8?;?yo4j׾ʶ=wN|5?I\˗/_|>?9;~bbwOX Ո!_\揝gȚꋷT/"˗/x,(_͕/_|˗ߚ/vN=˚lC|kuƾuWdYDbD|\/_vm޼9K HMW=c}+wF)jw\ShKٖz3h\WįmwM?hmVж XܔQ,_o^p8mYmɀ-Yެ'LJK;cc_w.I]-]F9uhiYswV ẌJwOYv5sRWh,fL!xGt<:t{:\Ժtr~*mH:В|{bUZ YY?5+'RׁSb﯏4RBiGCYM]ZJR\S},s"ʙҶxoxdǂ Q6b$s/k{O)mWϥ-2}T{SWh9,XڬN>w]u%L3!*F,e ƶN=CZ:\y7NSWh,"^9-Y9RWFOg€@]SG#gh:H_Q+ X5rYI]8?ψ`ez!~el[|#Н XUrijC{c Bbn+.dj Pm$w+, bG\L]`w+ϥX:0'͋@3`Q4G&\>kʕX@2`БP#ӑR5qn Q4bɀ@=Swx:0&/3Uf wOc"~f|W|gHgysMOlxo*3*覴X˗/_nO-/; ŻOsI:DDlzpklݑ?5(˶g=ȗ/_G{q5W|˗/_=t,~dbo,CޯFݓ?]m_/S/_GD|4IWs˗/_|˟7FK;+"ssc;\]ɞ{c@DD)^qɗ/_6oޜzdyha0uq=x{ЪUnI ,Hm}}"~#7u,!tt!v1vr~*̀qwWNGƞ룩W C|g{'YwlԨc,J]%z.˥U`4uqjגUn c~G&f%uYqۖp X P_{&\dm˲rmz|M*7Ā7` =S?vǪf9uǟX?oZ nF)>R-bL]nۉY3 u&dx1ܶ3{cE%"К|w[1?;3;}X -o+U^Ā ;^Wc.?>Uapgc*~3iXXsb?ʣ}3Y>ܲ 1qv u0`Qj,Zu'}= ŭXF-;8oQ*@3`,Q-o>RׁlbO.O]b,e= qhCYq5qթ]ʀsT|3W>XcOݟZͺ]P!x]QN]nbj!u Ss4mf؂;Ee7uK ެY>'vŲf%u)cSW {u{&M]nt71rd(u D#?y0~pb_ euիG=é̀-McH*pÚ\q5ʀ-faV;\guby]lRW: Z+JUٽ8Ā-les:>4+W>Rׁ2`lEy/uC#wO.Ur:pCF߹/. Xn/_|w_|횿1=Y9uˏggʯ{/Ca>_O|훟HCj|˗/_|oLo֌:?8/{1puH5f#{^z-_GD|4IWs˗/_|˗sT)mFo5ݛe_;%̀{xGW~nY@nMYYDU?'+Z=GGw &-~@[E;*å]wZ_`<ĹU6b18~{\.Ķ[ & X!&<Z=.="u X//+"?:|hԼ<w@K(fue7?>*iޡh},P'cĞXڬ/tf0E`*@ 2`@{^./2|b}3 b Xe([ i]F>};#kRZ D."1}:>\ө:}I{V.tuwSW5zlA<[bA3`@&N=}H]k8oQ*@B,bo_(툻Su5x뜋]̀]nM?[T= SۗO:  hƿ|-*v.tWϏ팵MҺKU9b9PWΦըbg3 bA3`/қ5SRL]%'6De7u`z{\tiWlSW*uY 0K XZט_,툷.U*ƎO_\Y 0 X+#QRHkʲ#_\ORf !x]YI]oUbnD|iG<#XI]^Q#_\wCLɀ?8/5|*pC.'?1N<,u8,e#,N폞F-?6v=QI]: hyo\capwC 1N]: h 7J;T*pCBB: X@X֬όN9w8~lc\<4 -VFi3ƞOs5v'Fs@q5 жz6~rbO eUU{c n hk񝱲YN]n Wcv5V7sc;R*pS*㽱uWcu0?Uঝٽ8W}é@K2`ŷOD.uT'wǞOT1uh),"=&Dw( ۷(Wۗ-ÀtT/OLޡ6TpoLzSׁ X@z^vjPH92O8Ȳ\: h+c;cw(M5jx kߺ/ I7?{⭵ -?7/Ά8׫Yrx+dxox*p˚\ʊxccȂu`$ݔ0:˗/SK˗/{uSowD`"MnL_;>>~殨Mod[Ҿ|#\˗/_|˟+g?L싾hY"Ո",̞onӻ^Rn~>"UgM+_|˗/_|sPm$~j|W e9lC|k;7V.ƾugl<{xǹ&_6oޜd/ Z͙|WKv/dqCηB]a)RO@J+Ҏx^J]n[q'8`Q:0c X@כɉ=U`FT{c.K=mKs#@ɚ18ܢ96w3qC"_w߄ ,+'"^|ձccP:pK X_'Lbl:h_{cϧʄ i/n!x gcAV̿?*?ܾxhaӱVH[]:P*튡f-uQZ>=mVH3`Obi ̸Ѿ{ch_:p],WQw4ʩܢxcYJYU`V48o*^\Àpzh*0k*=wŶy_L]"€pS?<7z6uUcӿ}_Ժ.C+.nſ<tu`dYĹᡸg7|]X Q>>},rQW1[]ȀpqdCQ0bzO{XmT=??z2VJ3/ӻcԛ]0T? $ը+8Ѩ%1I}ьo+8׫˿8h<̑?8/^9 T1=&8g8,-ʀ0ſ:\= cSסX>WTN-eb6ƹRס$ݔ-4˗/_nO-/_|kp',Ӄ[,Kɟ{>.}1zlg[38#}+_|˗/_|ݚf=xjĐ/VN [||C\:9'Fcՙitʗ/_|˗/_~7{dY5|xb7r8~~nYo@nMһ*;Yv"ocΉUٖz3#nmb﯏۸1^3,~}`}d.Ă5rtA]wo;ֺ"SZÕ1yEF-c bډbɽc+1 X-m Y2x nXz2~X|O)u%f3Z۪NB8 nة{z .Xڞ+Z۪"Y?z5p3Į?YK7\ޚՎ|hqo^hmiB]UqeѬCڍ7F'6LzƗUqQRW7F]:__W^I',:@y}}$b^)ı/qswDy/u%ÀffJ/'bEԕ:,6 aeY߾?}|Cۿ(,ah['D13bL;9?|j]lqj\7.'X0[&/-wƗ?8ŕQr{ ,6S`w5թ8U_{urGL^O]:ߩ^;?F,UF>NXO qԕ:۪#+F8xf7\x>Vbz; Xm Q,į[< h_8ŕVG1`tMճQE{#s%̙t1="?"nk|,s"u`@WF RȲbr~X@zr6*Q6o]*е&ā_^{1ּB WRj;,ʩRWVScѝ.IJ c{ap|2jY>`UeY1zlAͯŊWo<} r X]ۦG=?_ pEe'?,w)VB,Zb^>\!oU*h6rqvp;Kc.\b#uaS˾/aB<5qWDzGc7\k&SJ΀Er/tۻ4u:\ٳ8YKcՃcFgZ,.,w@LTuW0y?~~M~lu,RzkWΤt3_L7.t3*Yqc`=W|˗eR˗/?]wLV/&$˿|DobWs˗/_|˗/_~w7Nss˿|DLt5W|˗/_|wO~O֌6V5s؎8˗{͛7gi<7 t~ ~tu1+MnMiU?87L]hq,X/N\d-̀@Ro^O0sk-ʀ@rS5Ud%"+Uce,{c~VO]h!,ZF9~h|o3!p Q1y(u EhI\=煮J]h,ZwL7FR3`вr7y jL$d dgcYK]HĀ@[ެLb4SW0`6Kék h3!t%m;&3!tm%F9u`6oޜ. BS"̇IENDB`mkdocs-material-9.6.4/docs/assets/screenshots/social-cards-layer-icon.png000066400000000000000000000307541475306445600265410ustar00rootroot00000000000000PNG  IHDRvO@{\1IDATx{|uZI4M+߹[@D(Œ3^3u(3nqaeq LE6"X%\ -Pz-6mӤ6i.kx^Z Űhi}nC]S~_wws,P: uMI;=f̘]vY=:֬YwygرO^g`9X|>C=7tSl۶-.¾EzxRkĉO?tٳ'~_GݧHOY3004`92UUUQYyOvKOY300UVVFP}?ֶCu]w7nzkP":}޽<5,XЭHwPۣv׵k׮hoou,6n틓O>9 gyf,_Oή9|>}zsЀU(b…qgĵ^q)5'N^zikll,iq)Ĝ9sb…}΢E:)ik:Xiɱx,@-2;p X$2MHw`4I3`4I3`4I3`4I3`4I3`&}}}}}}}}}}}}}}}}}Nqw&hi}qNC]}}}}}}}}}}}}}}}}} YJC]SH H H H H H H H H H H H H HZVC]~rEKrxCz?)Pƀ|}}}}}}}}}}}}}@#}g/$, XGt_Tꚲtŀ@*> VǏ;.;{cʕ}\pATUU3<?O#"N<8scȑnݺ뮻b˖-]vΝg}v7.nᆃ|ҤI< /X|墪*r\WSS~㮻}k1a„x['N/8W[lK/α\rI<qM79]vYݻϯ " X[n%|hmm-f͚k׮+WΝ;yuxDDUUU,Z(֭[dɒ7n\qwySN9%n7o.|>Ba[nQFuxDĪUg3gΌ_~Fuuu?>N=g?W_}uL4i><>OZW`XCu]w7n[oVZ|;c֬YaÆ8|M4);=OmmmTTTĪU⮻O?= GD=Xر/bƂ m۶={-VX;w7*hnnb۶m/QFŴi C0`@yꩧ⩧mz.6lX|?^z.m۶1bDTTT-틷1a„>~q}C=Tc2S]]sL̟??owx>+2-[˖-;:Çǚ5k?k֬;/|͛7Ν;c…p? %}?iӦŇ>Xvm~iӦ.?#c1{uGkkk\tEo|ø+k70ZA) g}(k uMYN9唘3gN*{D55 WC]S>ɓ'ŋ>!ph~ ,f i>Bdބ;H H H HZeJN]m=nCKr{)+ 7ϙӦ++QQq͟?X/-xMT{SzgSk⼷M?J?,(3\UW+㽗͊w_<3}`]|+b]%'>cRϓ;_='|{z.=t~ʡX8'ꡎ~qT3'_?kتߜQ;rhϔgEت\3&EUUE/~ _w=%O*u7;WƓ6ڥtZÊ~o|2|xCѯ{(󓢆Xƍ\z|ʣ#}[>1??__*"%.[Lr8%<:;ft?.{Kꋑ5CמTEDi'\.P(iH1{FM[|fL2䭞9&g|;zXLRs'g,(3Z&[n83No9-k_S'W[󄹣5L{~퍬7~8w~Ϛ_1_= XP&f!CO`z;kO!C=烑@151U'sfX9,(Օ1?>f\'?z\\uŜ~k{t=jX Z#Ve}͍_>䝫3'-yprqce}g2P;2w_O|%{.;lTЬP XPs\.>~B)ELk>vBѯ#ޗ+aҺS.qʉv.r](50|jNDTV?sj̙9:jvm4~䨬Hu革xBG8?_#k*c!1fhFTFo{{yg[4FνѼ-y>&f/'izuo{GԄUѫ>󆍭qc@E{Or#Pve}AkNR3`@غmOG5f}g2fV B} im-[ )m=ֶ/c=5Z~a2r0\ݜ/m} įoy0`@xy͎ܚ1[ XP& B`55}?຃[`A')|GoŸHoutG6DKK;ƛFr7=l?#"-/Ήz_*gUcQ㮟*Z7|GGpho,(Cq1a]_s@[Yg-SOczQvr[Ÿ+5 Ȱqȿ|7"ļϿqq02rsbʤ_w?wȢjd|iG.]rh,(jUW)ɵ?wj{F#kȀe⽗͊U%̌YxӜ#f 2s̒\ ޸͆Ǘ?wz̞_~7T*sñ@͛;&ƍVƄUqgɪWqڸ) gS8τUq1緔3 z~ kv]iBe#Ge}A#k>B3`@>744|Kπ\.1~\iEW^ZD͈!1eRuLX'VǬ51kZMLZÆVd}A"~cxeX%Vn׷ t81}6eD̘ZG Xt2;,?mu[k^#־3֬O,y-VܞI&$cF_ܬQtGc3ܓ捋%>Q54F'?6""n [>BI|쏎s?r%NSGĴ#bɳgs΀znxYҶ&"/{գysi'Ǘv㧝4>o|#⍛}[۾XvGZg(we`K_֨ڡ}}ޡsU{_6f>_p{?`"675f?ܖ>_c7 L ۻ""y|Rho/&D.w{,]_5'FEEiWGUvx}lq3{y˞X#-12=jtw85'W8?][`ffĐώoxV]C_k m7o{> }x#ٷt3'GeG掉oxV\gG͈!L2˾_,\M~x拾"@`?prtV|kM;cY ~魎=6n<1Fz[M1F93GMMx&~5-Οg1i_toG6̌j/ѣqѳk/~>"b✨:Q]O[o<+N 믿:.mmT|~wt?鿍~?=S'Wǧ>'V?,n֯eW[gٽ=ٵ|Ab3 sĭ7u$"_ \ccc!EC]SQC[zxe&9rT\uŜ^w_X~ƌcZqʄ5&F {cxWͭ?iiu[W_۵9j%g61fϨOn߷&n5M gĸU%}߻xa/=]mO.:=՗)2u[k,>W;Yߺ}yœOow]8#FT[7i~MKeowj=q^~a~ c:9ƎnZn×~xb՟tD_E7whޱ7}jS|+.he+;px߿kel~܊qq7>nm{k|{ktи3Ę0~x΄U?~ƫV3ګ.Iu.W+yވhiiӋ[zVL;`hiib|#EmǏ~c†qڒ+₆Ư5[5ol]ۣ"LG']\.pF\⦍ ╍-{w{T㸣Gř\X-gAX=>ه]N?1fHDQÎa3`q=9;<9ۿcim텸eq gƐ!VeE.:}buĤ{ 7/CP(]?]>!>r X0@zW^X=nsqǎ/[ױruau[k|/ڑCu~8Ys,@;^u֕4==;=oE XPnX欏1`=쵸g>Ơf2w8oɣk>%>w检Y2` }cod}cٯ_}SݞQ= ;[ _>!$7g-ڲ> aAeOk{\Sx! OB+OƞVJEeWP}y<ܖ5'Ƙò>R^ߺ'եײ> ;`zMXx}GW4^%;`ۺ5OO~6cǴ#>RZθ[ǞڔQ GO,e\~ьG H%eG?]mn:mm⎻_&uxbY6n rձg,{\?xfo\.JP'mlu,~lc{ՀcGͮsGͮSGDeeghk_n^<5^|y{Ȁھ}XXⶈX<:NS&VDŽ#bܘ3zhԎ5ՕQ3bHTTzVKK[+Ď{cGK[lon-[[wǦvǺ ;c݆XŽPTmXngY3P&J~>#I3`4I3`4I|jk/~ֲ~}/Ezߙ|DĢ9Qut;kll,d`hkl@`?? uM b i,f i,f i,f i,f i,f i,V`hk0 ,ZZ`Bf i,f i,f i,f i,f i,f i,Pפߩ|1.[]}}}}}}}}}}}}}}}}}#"-/Ήzߙ\ccc!]ikXI3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I|jkT魎~gD=L 45e, H H H H H H H H H H H H H e>`55w*_VGW_________________3EKsw&X@Wꚲtŀ@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@2;/Ezߙ|DĢ9Qut;kll,d+ uM b i,f i,f i,f i,f i,f i,f i,f i,f i,f i,f i,f i,f i,f iX uM"L>"b✨:566zЕ]1`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`&}}}}}}}}}}}}}}}}}Nqw&hi}qNC]}}}}}}}}}}}}}}}}} YJC]SH H H H H H H H H H H H H HZVC]~ŸHout;X8'ꡎ~gr^t){`@W X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$-I_________________Sb\:GD,ZZ_PGW_________________3BV/Pה=+,f i,f i,f i,f i,f i,f i,f i,f i,f i,f i,f i,f i,f i,Pפߩ|1.[]}}}}}}}}}}}}}}}}}#"-/Ήzߙ\ccc!]ikXI3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I|jkT魎~gD=L 45e, H H H H H H H H H H H H H e>`55w*_VGW_________________3EKsw&X@Wꚲtŀ@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@2;/Ezߙ|DĢ9Qut;kll,d+ uM b i,f i,f i,f i,f i,f i,f i,f i,f i,f i,f i,f i,f i,f iX uM"L>"b✨:566zЕ]1`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`ʈ;q! CIENDB`mkdocs-material-9.6.4/docs/assets/screenshots/social-cards-layer-size.png000066400000000000000000000140331475306445600265530ustar00rootroot00000000000000PNG  IHDRvO@{\IDATx=rkO" !a,)$H]7j_]i'b9٧vc] j1Ɲ[]os'|k1z!` '뭷Z>__~嫯Z~[xpX>o]>_]>Ex1޽<|p?s~Vgy|^L7^{m߿+Sy;gtcZu}GK/|7.w_u繿?׍/f믿>"O{繿?׍Bo-׏^ÇgGx1ݻç}}7^~[OwY~嗧}}n|7X'~믿0Xp eY1Ɲ7H3`f ̀@ 4i, XH3`f m5X.qɹ]}}}}}}}}}}}}}}}}}̢{v1:Xǀ@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ 4i1ƪpKu럼d}}}}}}}}}}}}}}}}}ݳ1=, XH3`f ̀@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ 4i, XH>`1V}}}}}}}}}}}}}}}}}-K\rcW_________________%eN1`f ̀@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ko9\s'/E_________________-cu;` 4i, XH3`f ̀@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ 4i,ҦXcU_________________?y,gg?lc߁{ XH3`f ̀@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ 4i, XH3`6}c[\ǮKf=;`c,c ̀@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ cr%:vO^2[w`i, XH3`f ̀@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ 4i, XM%.9ױYw~2X H3`f ̀@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ 4i, XH3`f m5X.qɹ]}}}}}}}}}}}}}}}}}̢{v1:Xǀ@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ 4i1ƪpKu럼d}}}}}}}}}}}}}}}}}ݳ1=, XH3`f ̀@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ 4i, XH>`1V}}}}}}}}}}}}}}}}}-K\rcW_________________%eN1`f ̀@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ko9\s'/E_________________-cu;` 4i, XH3`f ̀@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ 4i,ҦXcU_________________?y,gg?lc߁{ XH3`f ̀@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ 4i, XH3`6}c[\ǮKf=;`c,c ̀@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ cr%:vO^2[w`i, XH3`f ̀@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ 4i, XM%.9ױYw~2X H3`f ̀@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ 4i, XH3`f m5X.qɹ]}}}}}}}}}}}}}}}}}̢{v1:Xǀ@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ 4i1ƪpKu럼d}}}}}}}}}}}}}}}}}ݳ1=, XH3`f ̀@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ 4i, XH>`1V}}}}}}}}}}}}}}}}}-K\rcW_________________%eN1`f ̀@ 4i, XH3`f ̀@ 4i, XH3`vg?7 XuIENDB`mkdocs-material-9.6.4/docs/assets/screenshots/social-cards-layer-typography-align.png000066400000000000000000000371031475306445600311020ustar00rootroot00000000000000PNG  IHDRvO@{\> IDATxyu}l%3 HB M*(ںm֭ueҺҖۺы(բbX6$@}ߗ̹A ΜxhM9ߙF\@ʋ}0ܼҧ~- g`@ijlbĀ@{ ;.^WGCCC^:nسgOBY?3JKKꫯ{7nعsg\ve}d|8CqEGGGf`:-v}}}}߿?:::d}8C7Fggg̞=;*++΋%K)cVWWDZp9drq-g>~_)c7.^OIsss7s̉?>n>=s tD3҄ b<wȧoyGb i.@@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@Ҋ>`55w~wJ#"/[#ʨߝ\H H H H H H H H H H H H H HZ}}}}}}}}}}}}}}}}}nANiDs sDuuSܜ+45XI3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I+آ߭BoW^yevFDDiii\}q 7;w. `^_j}VǼ[o%KF׈xn({,Z[[3g o!G5551z83o|cر#nXre\M2%VXQƆ .vmwUUUQ^^}}z€Ѱa!qƸ_gQVV+Wn-:x__Wcܹo~3Q^^\vvvFDAŀQ[[[̛7W-));wFKKKDD,X ޽;MozSz/:S*QZwv̫P ՏvÇygggTVV[;cٲeصkW?gȻ0 Xh߾}zK2^֭[c71-Z-z}csc޽qٳgGeeewydɒB?M~-G?Q~|7-ӧOiӦŴiK/}-.׿ާFDD.[n%ꪸ+b?477/[pM->Ú3gNϏPh9ASc ZM-B &Ă }~>8 HQB1H3H H H H H HZ}}}}}}}}}}}}}}}}}nANiDs sDuuSܜ+(Ɩ}?`Rk`@O X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$VSc~J w4"b¹9)inn SScKѾq`0kjl)5',f i,f i,f i,f i,f i,f i,f i,f i,f i,f i,f i,f i,f i,VE_________________[x|uuS1QF]]}}}}}}}}}}}}}}}}}477h8055XI3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I+/0flT\p>.jWā֎X~o<%~`}w^Āp82>cOhW^4)xbɎ?@nx !QvxEg>xBT >;flg`k.?.]0z]o(aۯ=!T۫V+':;s|dG ,!4|L26Zŀ0͘VeY#h3` qyoD @~ XC}yoPhE[y/Oϋ_^?^^45 Hs]yȟSȻ|A=Z]/5b"b`#~`Hl;-oT쯿FD_80GQWh_wu/__h_s"b>[>{ֶ~;bW9W'PLM-|^sqW:HG;Hub )_8鄆^wˣ9erm|ψc' 6t?|eQ[v?EScK +w|qѹcƴ^Z;b#֟m;Z`ȀG>9~RϮ5`-`9x3~zǪ}(fOo[~؇0d',f i,"Gf6Ĭ 1}j]?.F5QSS\h]cԳ;'^vg<}ȟVEMgSb(//{{.7S٧nz2/?}j}9mT|BCL0<ƌ(--c箶XfO,Y3xS<&L 㪣<*س=6oWOmvꋱYĬ#b?&F ʲ,\=3eہXvo,]+.Ws/~r}"q 'v?cUpEiv}zJqxӻ~}3מ}Ǟ~ؿ*3GN:&RĈz?h[c݆}3;G\(Ɠ3NOc'ڊ*ݹeہXq_&>ӻ=#W_zlLZP{ϏY_7,dzULcNYYI\~8/x<~ywV#]g`]pP\ XC)F+i,Бj_@N>&麳{vםuÔɵq+T_ED|BC=gLA;W\<9^qNկv ά ϝ}絁WL?2pb `YYIugOMuyED뭳b;ېu> ujކk)/+O0g >uT}U3W\015BV3a\M٘`b?>pyUb֌_l8_o~q;}(/b^yyiq; #Έ%KwƂ6ƲUc墡2N1".:o|^gS8vXva߿$ng?vf̜V=n/}n~5Gˣ{}xϟ#e"F6T[}[퍭DeeY>*^vȸ/QRRS=YPJg?3C?{|^gtgm饻b(--1}j]=gL\xyf^ XW\29**Ĺkw[| G?*-k^;-gezhIs]rؿ߻=k?ߵ}("Z[;cG]1Mθ#cݱgiSb,)s2~eO[Qw_K-[Ψӎ3O;h׊΀Go~{?~<o֫giQYY+6EOl`i\~'N ژK\G6?} 6싧?8k^uٺ5>GE[,?sMLZ3c̨l>đ]1#j~(Yuv?Ze%ηd{[9gv"=w߿!űu{!."zvgWkb1#s2VǨ}*)ez.v 7>wݿᐿ۸y^W]X#̭IGxUiiIf\#s\ՙSRRrc~q^W]no[~7t^ c]wǟs9c2瘆33KVo|cei}pv3y{g~[騑=,w9̱ۖ?O믚}h A"Nͦ.7}̟xvVvjLqƫG/z#_X o2"۴˦-ٿ.;f}kw[L jbLcW[|?a72^vAљo{{״1_Fo}wI^#GmqkT[g}3ǧ mvd*pʉ ֻ 4^/;ro6u+)y|~S(c|[y./2 2Y)/?DO7C?q?U*1er/[+xؓٯM4cjs=p.~3 ѫ3T=x3q}6 .>e}jނtkM[ѽn̤40/[ESRW[f4Či1yBMLW #ňaQUYÆEy}~ nc2Xno^π5ĘQ^x\`dHdp26^q8̱1sHב>u {蝢QePk׼yx]]]z?[}yd{+bÈC/>ؿ}5o޼߸NP凉/~ܸ]=?Y կt ;9+_}}}}}}}}}+-ă䫫;O=3nUyk׆DDĮ ?v}\MU'g~PE׋b-t|Y/;i*:a"h_S1QF]]xwS_YH_^sǷn 8mtQ(kCb.>;}_}}}}}}}}}*5 \dp]_e/}!dy8/ċ+/=6>e b/e}Ϣ"mmGKsVw^#yxw1x)hE.U9pG)X5p>nm-Y GFa5FI~xmjݞؼ@?qȰa񹏝YÅn4JNh[ {ez+weB'o#d# [ƒ;x*gv>cFgt@\.[Uqj ֟0&7o9P6U;"trtv_},~v~:*1fTN\׏Gk` r6ti7:}6l_*߷gп}o$miT 4 ]n(遇s #3_)뱒3Ggq@߬X'G6Th1` rO?{PsZp9sLG 3t{>4-[}\p$@w X#m|W\ط^_Y7ls $b¸lo]bw? cOn|.41` r[}U<62~oʻGZ*ˢ4 hbuyض5Vf| 5ˏ˻Y^ YoCY%wV;|byR{YY_e.gV|trn?A٤{ ژ>o{ 1~lڙyV!^^ ~{^>#*םk3e;㩌"]G%.>oBOQv\]|0hv93tWdj+?97벝zeŵ0=sf!`k3K&cGWg6:zy1iB3i|ё|=)[۟7w\|D]mE5#9gL|]猉xQ jض5Kc81#8;e+w{`3cFy|?y92KbCǛ8cNsUUe϶3ǯ5Ɓ֎64jk*bܘb1/|qcygǣƯ^KWZ3#*bqu1qt\|Ĩ  ?^oy}TWeMⲦI=\. \fn~x+&Ǣ'{b.'6dpéc X4:kd:ka_qL*FxfΘy-)}ꨘ݋3켅pgbl՟~xXĶb:ﰊ8qtGWψ7\5-Λ; UDuE9-Fr=it?&vqSx؇1ˆ㖟ym|>nζxv~8٢'o_Q^€5Ĭ^7G`Ffvoeʾånþb!&A'?ɑ}?-@0` A,ښ[b=O<;sn(S"IQQW۝쌏~ذRa^%bӖ{x۳ӳw~֮LVQ'ljgh Ilb?~y\ XCS?uimo~<v;hǶ_|X 3;}?w}5{L^Om/'gIlش?coZ-/|>& u!n '(cwvWF+~U[_h]-|e::r-~⹳Wbr'w}0b4;nz2kcu>MOF> . ز<##N>&|81&ob}'wӻ7q5drTVvƯ[߾Xworq/Vۮ=׏52N9!.ޖ9ty7m'yEuUGso 8Irۖ~oZcaİ^ރ;Vo]Yuc>'Gs}%ݥ4N>!N9qd̘VUQ]]Ueљhm={ƆMcҝSc>|8u8Qq qLCeٙlXx[$@^g6*^v11k82jWhu{k۰/O,p]b48cFc1nXTUE{G.=7g,>Lxaᑸ |*E? U{{g,zb[,z"3TH與?؇'{w?pA1^{GjX'А>C9 5ln9 z0kƈ>ބq5q93g=" XЍ7\5-weM*㕔DNlBo6 c֌񮷞ee%5_!_pVqw}`WE_____?gGycu/E玏l'PE]mEx͛7W]rw^K믯߿ݣ~ScKb)7̜V_(;`g b>TUux񵛞4^J㿥@v⧷0""/[؇0`@DrE;8n>UcԔ //gw};ak[G|gE E,xx}zJ=}L~7NJ{ c}OD)ě_7=Κ]!;?뙸eS`mpz[H H H HZ}}}}}}}}}}}}}}}}}nANiDs sDuuSܜ+45XI3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I+آ߭BO|'>O|-z`y,NAnXi9r?|%$$(??_jkk] dMOG ]r%ZbyUUUsq-6= CM۶mSSSVZlnmUMMgF u%DzdBBBd?{kkg;SO8Mg@jmmUP:wKK 577kҥXݦ pBX]]\\tmz O=Xjook޽.k1b0H`v⋚;w~*..NKAСCh"`-Yx1Ϙ1cƌ_|ѥ,2M-/Y0u]X)--M+WfzB8x oj,Xi!EF >| ,4Xi$H`O#F >|X #>O|'>O|'>䎍83.O|'>O|'>ߗ IZe{Zd3.O|'>O|'>ے%K@L]X@H`O#F >| ,4Xi$H`O#F >| ,4Xi$H`O#F >| ,4Xi$H`O#ւO|'>O|'>O>c#K|'>O|'>O|%HoK|'>O|'>O|Ŷd>ПSyXi$H`O#F >| ,4Xi$H`O#F >| ,4Xi$H`O#F >| ,4Xi$H`y=`:'>O|'>O|OA؈:'>O|'>O|} [fE:'>O|'>O|}-Yguޯ| ,4Xi$H`O#F >| ,4Xi$H`O#F >| ,4Xi$H`O#F >| ,4Xi^O`-'>O|'>O|S;6θ'>O|'>O|'~_$iiθ'>O|'>O|'~_lK,{Y0uk`!F >| ,4Xi$H`O#F >| ,4Xi$H`O#F >| ,4Xi$H`O#F >|X #>O|'>O|'>d[d]oe= H`y]/; '>O|FO|w|H`y ~ ~pW,5O v|IrrƏݲqSOURRxIҔ)St+66VzTQQtz!I#G矯W^Qmm[>@V^zl6"""dܲ\wy裏#Hs=W/~aUTThѢENK.D+V#<*s9n\V?>c577mgq^yݻFDDh*,,Tss6oެ$[ #Q֦m۶IVRvv>@`EEE)99Y3ge]J+:|>rFҡCرcUMMg(""B!!!jmmu Xtwb='[\\uak3g.blaÆiT{"ٲD XtRKl6UUUiݺu+W~VFqqq+SD1Z[[(T,oUUU)::Z'{{{uWjٲe:pGbTWW+..SCCڜ0H`yP}}ug*<<\'|Р.L[n֭[OX'22R#Fp9F]]ޮӧ+<<\޽{1/MFĸ}\V A= /HLN[^٤w>,֝**W}}BChssk ,/:qS|?_N55]mO ecYXq5l(unW` eCÍ?RXBj[-O 6^O`-nP1ZխO|'>ږOj|o~'>1~;6θ=ҥK-cwc+_'>O|O|A|lPg^O|'>?">O|߿ۖ,YbSI9#u/kߞ#b,/·z[oMԗey]~Çly}=?X0uB݈џe[_8#C_8#eו7/wK, 6oon,5sޙ).sAWMܱ񖗿֏u(֩X(;3NYqEGnWcSUTR:m];UV6xʷF]r2S4vttz铓3&NG*9)\ VhM-v55Y+_XkmWG;%GS4ne+}XF)!>LV[]MmiF)Sޡjm[YӒ=sYHKR 0Z\WY^/1:}~NOѱJWHM5-*.mЎ=z⟻ڮ_tNj>9~hrh} Fk7-w)٤ c5fTꚎ8hvԶ]*,H$K߼"jmU"#5sj&1bPEDt<46IGkJ}kbhhNS5ftF VlL"#Bxyg6n+ӎ=(=-R?k}) ,8e2VxXs8\fXjFHYb)$ئ1#c-/_YUB|_8Bg%ئ Ƅ*cxfOKW-ݮm*Q&8/6&TO0jS~њ>)鳿UT6w 2Gku)iؠ#&:TÇEiʄ_RoUT왇KglVfņY^gdl6/ΞlUǜ'~u-ZHH~X]zEF81!\ >GҲE 9SdS{<Ø"1: vP% {.izZfLI҅-p(V8=ʪjyOWr 3u {PDjTFJյW䨰^/z@oҾHjrL{FbcB{]&92VgյWHez#zêmԑLIy{Y{9u i9SXcF)4Dw}tctѢQ Fͦ)hʄ!z{Y{ 6Y{}4/7J_>o6m/ӓO}7쏟_)I?0_8I>c0~=|͟UW6} ӵݸ;e4T2Ң6PN9YDё a/YN^IJCcl0E'z,:|ͽs!6t9#įN6Nsߜ쿦;DGߟ$MTe;cC?[׉@ݯBHuۺ ZqlW+ά;z_Έ яn?D#1K'3N=Q!zg-וqz=Ū#眞{n>G N0BVXhY0iOye QwvXt]=sN,} `bTF`FG͝G;3p3u&h:HHM{o ::2D7]3^cFY(Ivk֗h#c54,i$'zD;d'%ᮝM6o~{IJ^瞑Dg?7#-Z^2GC^-H`iH2LÄ Luz9>y`Ãf?sN azx\%; q =0l;J-l G>Ze%$ئik4m>g2|0Q1u[ڵS\O8noKL_/hKxjx@: wV%A N;RXkT87+s;vVf0>xۍ4qwOED;fzf9PE7LjR#tw:.c-Vӛm #4U3!'x(@߯Ãrˌm>1L,g )I>8 e7W: 7LrDwKLz&r({zZvs2 &uԍEtFwQچ@r5~nVqijj[\l¸쏟ZBo_)>kyd uzaqUט%-ON2>9kÕ9|0$ئ{2鞳4}Rz[(|gYDxO1䡍}%sj,_UeYS$ć)59B%].(t3R.gRIG oHM W͢F csSè1?{z>9{+ٿDjD]x(W]2VKs añ$io^V~ZGjT]"ݮpfÜMuʜaSW邳T1!.L͆[c%)rƓx׾2F9=yUnuͮlM:XuOSSJO $I;6A%LRs[L`3evz}>^sL{TQլ %&kD-SHl5e~T{^mvZGں^_KhFÄ++3N:rs瞙狄T4ݢ{Pd1L}~Gc{.ԃ=-Yoi٘P;d_{V%UVXsf ,miiڍZHGTVި`%:N_lt+] lUsK>ZUKuHjZPei):aF:͘b=9~. ;Twjj/kTKkbÔ9"F%yüVS#XpIn͊w{dt^)OJRhhZZ\&2"X#3lf-5.+rouoho4hJ:eP)F5WfMKVvfYHvw>Wݽ~R#=̝0-f׏|갭v=tfOV0B^XXN`͜dTsAkz1yG*h}6!v WW_e\Mvߪ=3֝z?yk厍C҉&>^}LUzTUzeEk3rR#٤KiN5zhu{;Pw?*K7}c܀̈́ 5;8pgUu  ϖ=&-X_`~t8VׇܹV--wV}tMl6F~cҮWrg_So3qeg:>t|eQBٗXjiXEEz=i`$NӄჃ}iգOn׏~~RnJ7z]יQJRƎv|4۰YgB-DE8Xiw^Wݽancq]3'=<-~h߶Ni#be&鉹5"xeVꮪY~{܃\fx^B|->̐=+=&hG:9 a6lo^~>&Nw޿޸鄜:VQu*Dz235_?~8 C2=$).6LR#,:gzSӆ)z߄yb~<)5ZGxW4 h|\rDցfH'{.INuoz[_0کu֐ UZ֨$urը~g`y[V5yoKo2Z.AnfufNM&&pMdT_>L?zV{W%fMM2c4 uUu~s$:-[qhلDžz[;5ƄjLk6h}y}:FHq{x8|zU4+.zOYGjӆF%jI^x:]5S ![Fͦن>}+pUW;Q)nubo$iaO^g\MmjZֹ{S4"{l_٫LNMtX(_۲Guٖ ^F=:b샒~z-q[UrAk>SG)߅$30H`m6o/Ȱl؄X qagVWחh `Szl[^Q;_Zd; I +_Ԧ'G?eJLs9C%uĵ'J6jR btΨup4+Uٙ3Lg#D՝ӾFY=3$+`hgccV/?lJI2K#F ,bɝsBd0{"i[Zڵ~KG+7s I CLG116p\h76MI7.Uk6x@jrx{ iSKV ѯ_9Ъކ Μ OVJמlEQݡ1=f-(f0`RcL'E7!fϝseu>c76ߢ&,4=oרA2.҉Vo1ÉZZu=+8ئNt}l쏎:wȩ9p@n'3p͘c4e2|Pb ڹh=3pҲF=Vߣkor&(>.оX5ڹa`W0Fӄ;?-zkYZV):u0͝FwwfZV2쏽lKCd1O|gc#Z0ug={"Ͽy{_8r>x$ǟYD_o1ZtiEu:^nV{m.G"#BKy}Go@Z%y󷶶kǞ SvP4fTHY_$ϟSbmq?v~O>P zg;zX]K̮|#>O|gIZ3`70,`܎>o;8\llAVt(h0HSPt]s/ڎM|`uH6nrx**«=ڦθJgMKvjAl_}zO [߿\g~tB0D):{dCKLWO|z/7oj|O|Fwk]6̚ g#j򭫾7gљ=Լy2]Ȉo^o~}oجwmuYiZ[=_4ܛGaVdEcv}w<o}_cE}9׸}{[xbDj ྜ4d8m?帮Pގ3OX?}'^ i2ڶ\u]D;XywWMMm @fٗTETj>[dd""3#>oM^߯TQqqw>,ИQK鯮l6)m5wȬOio5/XFhu3vb6Pܺݣ iӆS/dx)8j^.lUa97d0p əLoܒ8RX&Zi[`?G/ZOxC&2ӊ ⎌/7̦ٗ>0+ `'VPf>*gf~y>qon25/oT?->0L'4,5R}lz3X~Ӥ$]{y:w?+Z` ,xDye.NEjim&n뷔铤/7/?OIᒤ0Qϳ>C]sШu>=]}-8#5w<%Mqfo;0n[U654:P3#cuMaR]NמҮNxswVjr5;͜4ޢa՗8\]{+'>R̘P}ۓtۍh!E1wsfaҫIT)Jk].h(e1ozڹRחhr6YRdDR"42#F'j }wYy{ӺcOϝ҆F鯏?,OuNu RRb2GjdzP;ޠvx?__Dii鏧Ol4fqilV8JO_ozseJߟoi4m]zaNt"=jΎa ,]5د=k㪪nVaM ajy}:5HS;]9VYѤ߄yp͘\A- DꑥsyG>UIvdžjX͞3N=@!qGSm]2z} ,Wv͓;9UB&$hADEwZֆbۺǝk/3uf^y.b 1{kcZ',RGkawݮ-bM:eP.sٖoh՚Qo\Vn:W6yT} >moq:yPZߑ$+)ɖ_i1àBtmW=zN7L6T 1nˁ5wx=옅` .k z_IYW1)J߇ҒPAQPk6(Pv{emNPTsROϩ`#0H䎍W] "#B4,5RY:eP% 0VaQ6l9sѢQ:m^E3Ңurtrئ:UV5]Q! ՈhED6po^V=6`"0Hي s˶^}z8FDF+;3miniqNTT6v3~EDkf(47y.Uo/+j;^|nX #>O|'ZtS55nQ[kE|?xⷷc[TKK$SMmc[:O|䎍83.O|'>FûC|[]ڨ#.'қt?vz7i{nJխ`O|$iiθ'>O|/>῭hjjӽlڍ.'_XTYtGbɫO^?gL'>]o[d[L]^BņsVzU{UwdEkiu֩Õ1<+iК %z|? ?قFo Ыv i>4ZqVPMmjhlUM]SAQhˎr=V ,A_o֔ a)Q UtTT[ע¢z_O7j2[a(9ިw?*Իz)>$6l= [{Ƃ?$H`O#F >| ,4Xi$H`O#F >| ,4Xi!nU⢱?^ިK_}1%%k--{&獲]~Ç4}rN;LcG*&:TMm*,Ӻ"oH`PCui 9 :t]Mڹr9 !0`bC5yДH=r\N| ,WhdzeÂuw((V| ,"44H0ZgTFQ/@`"`@de)<ACjmm?ߖ.]p+=Ԣ'>O|'?rF'~ohlӇ+>ɫXnqg}'>O|'>$iiθ'>G'ޣ&IŋOvyb<Җ'>O|'Ʒ-YM ;U⢱?^ިK_扦z\͘dy[tے[FYvqi.Cˏʈ2S#ң\MV-c du v# . ju?)+3NѡjljSAQ>XW:&o7#H`p--z#z#n x}B?$H`O#,S4kZ3㕞P]յ-*9ޠC5ڱBk6k(;3NYqEGnWcSUTR:m];UV6KRjr&qJaQJSDx"ƒfWSskZtQG wZ[v{͞ 9 !ኌ-Ȧ6mVUJT[}nD}Q/.m7|p.7ȱto95YјQJKR|\"":N*hcڽRn>=+e[vz ? ڍq;3C2e4۽y⡓;6:;Fj!hF).6T ] *-kTQqҎڱR9qs%59R'')gLFUrRZZjjjSeUW4*Nhۮ߁[/H`QlL.p?{z]&""XyLԅT[]9gCք0p89McG`MA Uh͞?Zv]vUezjmmvg SS42=e:â4eVrQ\WQq Y,1}?xņ).6Lc32Ү>*?_%<".;6^^ UxXpD*&:T2b4oV"GEzz{ c؛6m/3J`厍w*5gzeFjdz%Bm32U.'z բFӆ+;DIȈ`%%k\V89MTSۢ嫊G.٧ؔjSњ>)鳿UT6w[H`ɹgfk+6&x`89MS^wo\.wl_ͮþl6I&Ąpee&F$zwE<ɺ{SrvsN azx\Cs ,ft 7,8IyNDDcbͺYGEh鏧Tnz28Im7N@.-c)5*8`y9SP͝jy٬8!&z:t]1^iF3~W]o?X>nn/Z4JgY64J7~luWxƈUaչ|^64J,HםgI,ოӢ4|3 id_)mhOsdǑ_?}+owN'%v*U\ڠ&;#xG?{ 1 8Y^>59B7\Eg[hǞ &ćgt*޼*XԨEv] q͊9w&y'WǶ_?}3ow5"Fg5^;Gco DjD]x(W]2V=fiY?{ Prf-[QTpNu- R\l3tT43թzH1J`p8oW/kio^*ĄpM4>'h{6[GAe=3øhmuM~-ZOߞ۫K/Է>٤sNO_ki_<**'G~q5E1ѡ1e*zE:*i*A2ҢUF*)1ƟaQpNe卖Af;u0wyoN'%)44H-]EFkd09N`kOVV5Olӊ=VVި}қti;Sa8$ئ빗\Ɵ󷻙noɫ|?_iWb̝0o?2j`ͮ=A{noɫU{?푨p$8ئ1LmKZr^/ݭX[[ZVx68m._Ydt!t5vt"y zz}r}E>C36Zz8)(~f8&31O6^/M vv{-[Qd<&)1r| +=:ņiXj49S6fNjZO6]aUwoKfw߽o\?>8_/ wlYqk΋;.\ߪ39KWno;>il옭{c۟{|O?wY|o*:fRj25oNV_QJ2\Dzg%'g9w.w>ۿ>Uk68^Т>jrx{ ij6V~@]]}'+$iiθ5ŋOoWDFrg|BB>H?u0S5s{;>cU[{oގ+o9]>_7٬j6M:>?uMZmYt}s]WJ?+ݵj8$5-;Y~zo]w?A/y-6upezr@]]}'+>[_w;i}Po#&f8tC?ok'o=] |s)*2D#wx wM`ٵnsgc&6ﰖ׼}9ߺvsQn.&Oo>O-} ]sYZN Xk=Ե8L,vCi 5ezkYDԹ4wF&OHt{o9StޙzkYAOxyLHQq^/߃-^=&:Tfmݮ͔Reu-!n2K 8͝0QUݬ{*{ %Xsd4xIkikYC˭4~½Kܱ񚘛I5)7Qv_iO7|XeNHa+a_tb:g~DƎӗe?VfE[! ǖ[0 VsFo׎76 ӆ:W7LYZU inlȢO3^ygM}~ṣt" ;c8PW6Hkӓ֩V]&;Ι4&=`uQ/^@~'ZLg0b06]UP9?{ Б v+Z+rNl6͝~9O?y""OO?M';~+f7^F՗fY^~'95lUd>G7MֵW(8QQ!oO4pW߽nnD;7{sl0'l(1N>tl@Q?0_;VjmYU4RJRFfhD͟=bA=kUn7\pfi!L43h]E;\E}T {t%Y:zgy6n=MohUltFfhdupkf1獲TYk7?S7lQ u~؆I&;Pկ9_J?}Sz~~YF ң??Ik7hcڽRMjniW|l25v6\a)ݽA=vx?__Dii鏧Ol7fqifԶM'@F+v˄M0x{ԟ=]Upa5k7ꔹC#uYں\kUЪ`  JsK}W]߆WܳF(ĉ=mh,[\m.æMkѶ]f=V/q:Ne_3fC6m/tYऎI3S]JfZOGt3n< _Wjm=q0͞?Z v}hF[Bvߞf|&!.L/+:=#WXhfMMUddjT|KRtReU;WMjk3`\厢a_sÏoSSD]Osw=7o^lL.p|9z3ߞ;]

^SlƟ[H`^v3>SPT շ`iyٿ>W%< v X=)ʾ@ kI -;\)5g=VG6HE\?v@;vW8~HHR#5zD2G+ޅGCc.u@D+@ۢ5=p~P詢I?gۥGܡ׾ꍿ[hpmvw[?v(io/+Uu^V_MxaQ})h N0ZwOO_YW7ڡ*Sl1l/!n#OݪN[帚[~3|@\aKٽϾ~?7'z:z^ܹZv9?mMzmג~n@ !5HU3S5gnЃmUSme:\\!W[^efnuV~#o6nZ[?VpJy'gzQujjj3*nVWÿ^ܯ/]nm]~-zmN?$=W6ֻ/1Nx;c͆]'ZҹWs AdjtJ[~s+uts]˵b$)PnJazרIדXtVBBw>,MҮvU[ע~U~b;c$:i0Wp**wzN& hU kaq}{ۯVmͮW># S 'zz?y;t(VwܷNw޿^Eo?;7dv齏 G55Y,H׼Yuj{-ڰZVƛ6=A]LwfÃ-ҮW_/W~8v]{Em%&kbnS~j7]D~ke7ow-MMms{tY#tiÕ;6ީm GT^!rDJ7Ƿչgf5jD۫mѲEzgy/ܬsmɒ%[f{nu7!6f'hBv)-5JCS"`: 44xE HA=֓"""X%j$MMАpdž)&&TvյXIіZ' ^L)8.Q2bnW]}JwZ %j𱢼=r Iveowm6}+/IMԔ ã5lhc`Tت:_;G {/rDߒDh$匍Wh ؘPEF+44HmoQm]jj[tHUiO^z}v;?KyL]G cF꯿9Ҳ~kJ˼?5<?ق먁p̑i&y ,[N@p8H`bDK˭\J̐l(X]׻>k S'>< ܲGUS >O|'>?ܱgu%>O|o`aiٗ< >O|'>_$ym:θ'>O|)Õ64rk7jO^;'>O|'ŷ-YM fQ#b]nЁ52?ق_ ࿾pF$|WF ]{yKT$N4>Qa.f/E *)[> nue(4$N+.mЃm7>Y{섿=R^{爗Z xwV| ,4Xi$H`O#F >| ,4Xi$B_ruEc-/Q\̃-铓ta;:V1ѡjljSaQm>Wx~k|(6>o#0 I?铒zmBN>=]}-Gzvt! #>?H/]ԫO|bC5eԊ^W] M#ո?O|7䎍83.O[1'>VIv  ߝ s'>O|[fE:|/^|4o~F qݒGehƔ{kO|'>a[d[L]wGi38wI7^ާ?Ҳq|S' ~ , P֋ ssK̐$[Zι% ?0_s,/Gu=7VkkBBa_XD,AM,2Zxym:XC `y=*hn#OlWSs[?XFݶx ]M>Yח PF ,ApA':}0ee)6:TMm*(ӧK[U^iZZGGBF >| ,4XiB!!A9%I%+;3^iQ UXXU]ۢ ;T{*fCjj[VMqY ;:VcF*>.LQ! ݮƦ6U״AG{*WaQڱ3tڼauZ8ygf[̱]qۖ':Yc-/P~Stݲ ӆ{D<-OVњ<~3㔕! ኎ QtWUuJ_X+ug*|ozߟ[LIc/:--XIq=Džy^߹7\cNt&獲]~smpXn.>""M 6>^sL'Oycuޙ:J6)6&TiQ1%Ij$P~>\qT{DU.g2ܱN=\̙pa#f`ƌ|eUGWğ-IJ G茓4vt\ v92Gk}ѲڶBo/+{Ukk=oso>hBCtru}YɫO7:uN\c ,79 |xƄl'yқ븬x}l43mk׿7?(SUesˌͲSPM3&[Zv㇋1j}TfycKtctѢQ vz;6MS& є Ct9{nllɧwԹCr֩j߁* K6j[[].u G ,LOnvWAA6}L=z\EG7[5QnI^u g_pjkzq 4!'o4wݙjcӂizuEc\Jtۿ3E$$[ߢQϾ|hM\u}8$$adH` ""X3Ggj}X%VH{~1b_bTQQ!͓3zh4y[4$BIF7y`2qgg~r9$),4Hw|whˉL0DO>|&OX  PFufNIi]rtiFۯi?h5rRpM?}NOMM׌s};NRh7ʚ o;ZE} M3mMS^٤YrlI/9铒$?ߢMO>8 Wf׌7ߞ FI 5Z g]t(1t2a~xb=/cskmfILWVw9adu78a3G'l2)<v03vtvPy4qYCGg\c ,ft9NP>wΌ ks)Uys,/;gz4wZaYq ʱ'' %""X1+i_oci\+smo_eޫT{k #HQF`L%ě 铒MD[cMOaQg#uLrtѢQ:t7L( g[_>*4,.Z4Ӫuڰ:k t\p3OٽLb'kiO7o/יX+ܝEleqjHovIm&s=^j3,egY'kیmǖ$&G'zx¢F cِ4gϿœڣNdx U1YFmmmmO;EMklE6n+S:ֵ(,,HqaΌI3SuT!R ՇĄp]}LvX嫊Ne VM3OTͦ8I7ݾӷƹcTrXˌ7ڼ9->\$uoo-FjjjWi j+VKcڛWf)1!\%j4I0ڞ&]sY~|NǔO[7ꙗt׬P Օ7.6>!w_݉k "vOO{I.,׮z#{2SF1r+<)IAj-2"X#3E۴ +|ؒ:{z->VҠ]{+ꔹC[_%+;3NV˟oW#4,5r,8 JO҅獲$UV5H/j`ͮ=A{noɫ~f76eq\TdSSȯX߻{Mɫ@7߱J5qۼzٜ8SSxxN1񖦸yڱ 2/Iku˝-qMņ;ƙ{luj/[t2}9OG k۴lQʷ^|\rX/xodwT ͦ]?(FGFqւ2~kPҥK-ccB5>- %Jhz~ Ro{ ꍊwsͶTFc2y]ǖNsg oKow~]z|x3[Xߢ3Uz{yGiKsc5?=y['>O|s wlYq[vJ~l&.23&!z?JrԶ8,]8Dž&7} l=I￯ e6o$=D|Vu[&wneÂ5AV~ZLn߿{^V{T|w&EyfO| [fE:u-Zx$} 뿳mv?_kO-oI^o2 "wlB>>;^q}ocpoyH^W* &\p 9 5h2Gaak4vTN>[Nwoa=[t_^٤ggǪ{4y;~dEt*YwטLs Vy{#>O|Bo}yގVoނʰ>$8Tں?]f=^Xo-,QVfw߯p܌)I׃Moz+[j0ŋ[,M>ݎ=ojn3;|Xq/Lowoa5~-' *h3o)@f-\ƔW6ySט`O|^O`=LXG U%/EE*.ݘP]T;.*2D4`v([L&UvחFCʂlJX˟oҮ?cz* +/l6$]7 g#JM?ⲛ gdXZ6wl S'ą)]^_u*(SFZtΝcho; Iׇ/-Pkr7$k|Y94mRmؽJ./py;k V 6ƻ,Z9o vɟ==vR*!Ñ3(Dž;sTW&o{bbBK"# Kv}y;,1Vr0Cao9t,M&wJm;><\!}?C;$ z}zN}QS6B+D?(5sq4bm3Q){Lgl6fMuz_dU1 ﷞}+ƞ|ѻN}h8ww쏇).~i13㤱uGٷ56sn:!ۋ'm^l4xԏMұ@:dB]Se/_{{hWUUo9ϟ=3j^߮M3}T Ř2;kU8ؕz>r?nxt c( ?%bz uu5qo'@-J&w}*.8ͶMqq/|ck3zXLèxy[*;`⒋O/Y־?Zߧ2i]_ by]Lx|nA[l|vw(#qbz06ťy]LqqqǜscXxK,[Bl޺7v<]]jbܘ8qq1nL!񵯼5g,~< beg#_u[/[@?U5lhM|S_x~De?oC Z|Z*5#>uc=*s[{?+"j†S†P[s}yĊl/\Ŏo::8uaݐ r) ;[{7sw{3 bzOeڸu̸꺅6@?}1u qaCcx}0~:χo?=6Fj4cB{`]<"ہ+ymoGe;_S&O z*= akSnˣݿ.-?vl?(Q2RXbuGyߌ:~h|ƿ|FR4X_1=Ӂ#"ӱc?qgogQW]1=*ye`r X+nƒص;vɕ:f(]bԚ}/W(D"cwBr/WbKicؙxl38'zӶyO{`]?so7d~bʤwgm?oC9{"#ɀU6l7Xkv9Kt]]x/W(D,*rk;DZI;Ps{K,prYaW4xOCt_ V{ݫ\U;~"u1bxo cgqo0lSJz2`UǖmnY⚯.*ni}!ZWud>{bU_:xgcֽyߌAP!fY6e?gX_$>mitR?;iA[~yh^m=jXÇ 7ZWe;\dp[kf/-܋[ /mVu$wtGo.^zbH qwFg:뷷~4_?1^<O'R;~"}SN c(bl_]Զ@Oc?oY_\ljPUEuwy2,P|lKpc{gH* mYlݶ/fߺ$n\>]y$y?R/>i1lhMoZЖ 6!ejkONtr7R*mw6DWů8}0۲76UOo'Wǚَ[?_ 5&ΜvbLrB8jX;ٸ+XOj/D߿ӷuKuKx:¦ŕR7bH VU1E=>o]xtK~?W{P=vy{}}}}}}}}}}}hy^ BwW_________________70/yt`x f/} Re i,f i,f i,f i,f i,f i,f i,f i,f i,V SC}s7#8fyWH H H HZVC}~Kq%:"efinQF]}}}}}}}}}}}}}}}}}T566/  b i,f i,f i,f i,f i,f i,f i,f i,f i,f i,f i,f i,f i,f iX .ŕߛꈈEuw{SX47 , H H H H H H H H H H H H H >`57WR~o#"ZfeMUccc!_Pߜ1/,f i,f i,f i,f i,f i,f i,f i,f i,f i,f i,f i,f i,f i,P߬߫R\IhjY[QwW_________________7U~KC}sH H H H H H H H H H H H H HZVC}~Kq%:"efinQF]}}}}}}}}}}}}}}}}}T566/  b i,f i,f i,f i,f i,f i,f i,f i,f i y8 CD&IENDB`mkdocs-material-9.6.4/docs/assets/screenshots/social-cards-layer-typography-shrink.png000066400000000000000000001142211475306445600313030ustar00rootroot00000000000000PNG  IHDRvO@{\XIDATxgxߪwj,[e["``zh!-jMh $H @ -P-*"*YGvwfW+h\W:;ٙٙ{Ϲmܹu}~mA^a^]'>O|'>O|Z[0 @)+TH;xB VVV?|%%%XmDt/\-3<͞={AfO}Se۵a577kɒ%=ztx͞. x:EEE),lCSfO}SPXXDZooo?ڎ=]6XVV_|ѧmKM!!ǵkiiѼyL1M_ xuBX[[cFvx͞. 2kʔ)ԬYm۶nqh :t{?]XCofΜK O6;t{?s:S*;;[oV3t?VRWuVoŋX\U{Ӈ~: 0B &Q,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,XZXy'>O|'>O|'[!؈qO|'>O|'>O|wB$i鑗qO|'>O|'>O|wlsu  ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,XZXy'>O|'>O|'[!؈qO|'>O|'>O|wB$i鑗qO|'>O|'>O|wlsu  ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,XZXy'>O|'>O|'[!؈qO|'>O|'>O|wB$i鑗qO|'>O|'>O|wlsu  ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,XZXy'>O|'>O|'[!؈qO|'>O|'>O|wB$i鑗qO|'>O|'>O|wlsu  ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,X ,XZXy'>O|'>O|'[s:$i~7:v@?};~A^V :߱y8*Pǡ?'>O|'~ O|oǷD+PH`u?+tGA^ak`V\O?ݻݱcSNQJJz)IҤIti)>>^￯**$eeeWRR{奄/ 70o۲lf6njs=W_}yIu9w/KUUUobHRHH.r-ZHU hnkÆ jnn֒%K4zh7TM6MwT]]{O{޽{6lW]]ݱuuuRXXںz ,/EDD/{׌3te^8fРA>}?O1p8moo$XO!奖͛7T[ͦJ/^|p{]]tW;n7BVuMj]Uu~-[U={H`c 8҃OTю@D if͆ WAmvT|G0X=(22԰͑^ @El@Gwq9I95M5|hbv7A;iJ-]UFÙjSdMc4(=Z኏ W[C oՁmZRv,:c`LL$ ͌hņ)*2T-oU]}kcQm}uv`s$e@?+K'LMS֐8EEHoIr|#4ԦiR5eBFHА ;zUMekO6Uirշz?uڬ *;+^)ɑUݑV9%+UUC)o|2㔔54QE;jxE>$Flsu_7=uynjLԋOd?UovmЇw{;6يr?]]_H2М{ezUuߏ&o fޯhSۓ]8;Kߺ`2Ƙ~]kk>[pPCKLcWn|BF`vC7Wj4mC4bX2aa;S'*,,Dmm3a} 6N'&*=ջt{y`N~it׭hA(]{(}zE} c})U $i\d]t0=:lRɍwƔ4XS&&$%V=G%I?8]zpmۏlS {:1?T4@٤/Qm ӯ路lVrcG%jS50-k##Cu壔+ydƫ(g)3#FO<."7?P02Pَ> aCor}S}N^unWx`9!z<=|n%:;@/?s'e{T״hݦJvSt훛Zc#q+IZL? 8\BX{ /V|\~9g~p]Oɫl6ivA^~deSJ ה )zJ^u*%}_w:A\3:}lq>W$5L$LL_5l6󃉺l͟95MO=\]~zi^%X}ti~vLtx _F$}}ibZoVfW 铍KW{6ΑI:G`i55-c` ÀSDxN4յsO7@JJгj鍁izM}?517Y=0I1#u^榫Y݊+I?\{0讀?8wꈋ51ASojǎJ5&Fz#x?yBns= )~ ]~WN3qMvy{X;}c%y{g.9`Y'I)g10QeTsěsdҸdE|}lw\4YM:)UO=aA_>_'%nؘ0=4o̺኉GsKՕ<ݍݽ*V#>O|֌⏍wלIm142d6m2֕ԐX]ilp!}Y/)Qj.v,'>O|w|@/ m]_:ݰW|mOp5bQڲ'֭r9%M|zؘ0euS_;օ#Lks/ov;n6 iz`uu~߬W]D{{^Vw^[sQCCC߱)jt>zXK]<:7UGwyTT+CwL6|hMLPnN6Umӝ߂ee  ADžk̨Dmv?$ĦXn~Lu%?G:9bۏ?>_xаvZHM3ӯm3rxS PquzZC"f߾@cF&&we#g.{[Շ$"ru1#bs;7,ԦKxsumz=]ͥF;gɌ`#>O|?5{v5\rS:3uR<؎hf;a6}}oOZvMhHG,>Tqo%AЛئ]|u0kXl2dyG_8o_٬d3\ u-Z08.'ɰOc]ݬ>ؗϑZZ'Nw>\]t뽋ГT~+VMʬFL3lowh_4:;Ԫ*t=hyQD[wZ]3!>/v{k٪r}nYn+22TYn~JJ0fw=Bob 凛ۗ7gך&opHk7U蔙ܶuql6i 0MMv9jf ۞yiYvC?~|@W:)Eq?iVpm*M@X WoKKRLμclEk7VcZ+CLWL%?_xP9#XF`3k=laCb].=jDH[hj=>nbzێݵTU7+!!6M٭*DEF/fw߮îp;X`̨X԰߸$uV%o_46]Xdئ*ӫ;rf\-)k{1'IZHD1-eٔiޯnt>l6M5Q#Ira:wŨml]{(S{㝝zmb ڳfp GuW]}V<)4涮T\lnhl 79ڮTvZ芻i'ommׂe֟>h"A|T3h;Ti">|h:{}^t $=u6L/:ȊWzjq-)!B驞y=,pz$-_en6r_Gd{_*Uԃ癪 uy*/fF6&8mRK NHm]f8җGGK`8xՇR'M3MKkV7NFvfTo&]ԣ]l?(O@ ~8:`V6ox•mKklp;jƔ4}imwІ-WM6MJD-4[0DG>Ly`ZWŅeZBo;6Mr4jDF ׈x%G(&&Lq1aleVuM4SWq|asQ6CjHFgLS!kq}u;hGa/-wLuoU>#@65}rQk6T%XSO`o[wԨ/C=/>ϰ{|~]qqh9h%rbuڴJ6Uj ]SBaCtޙCuJI2~iժؒ4xP2ƨ]Fɔ# m*\~T9G:۾F>yScbǾP(31)8}XS53*.r<=.]YvpI6)Ua1p75 V7]̓p0-]\;VIg+TOXņ'7ן~}}2yiSiYqOyG'fFIuEd4H::̨$:zD0Wk-SLnInN3U?Vx|Rk](i_ݢ+!91!\S&xN+֫42fTm,ı F 1)8o|D~ol23]LE*L.kLJc#&:nNW*ץ w~4ݽWT`&ja;oK$'յ-z㝝z㝝TM|z95MO'_`;1a,v鎟.S]6XsH'M45}uZA)olUMB|fNM1kUT6i& |XIU:NfVs%Ă T[g\=F7H`ck6Vhin~eNX\k{/-JWNVkkB2Ŕ۵NVHMF$h4c&5W]tVs\%XcG%*>.\ݏ씾>h9ۮ=+_,. ÆƯn-$نt5S_-ZQ֭>_XvCK 9.Ԉ,s5"Ct U׶hÖQVHNYjbvgn$9:XxeUSb{GMMsbX: яȏtCwTC%eƣBCm7GK9Lq2RUJ-66r˓t)LקvYE񔙃t˵cꟷ6o2Ku#\P>-S<{2}*%Ԩ;o`j׈xn(`:KIJ]NpP=p{{HS1srw.+z`:GnЖmՆ23b/NRdףdy3tꉃ ڮ˞uM]0;Ka.VH-׎գo% CM:PҠ ӒԒ2t<_1uIVN;nu*U~IMm qw.}>iFiy**b0}fsFhݦJԶ(.6\"5aEEgzݧ._EŧOK-Jl:儁ISHX/]Y+.60L ͈=j;405ZS'3*)ja~:'te^O5,HwXsHuW{u>8}?U>:Ӱݠh= ,mƭUnVlLFdi\Ӣn4NY?߭ސk6**Tw:A7^u*UQլ0 J1 dI$5+L'^%e hͦ&zQʩExa`ņ$WZubA5(?.57&59Jg2G!)% .9)R$O8^[w֨Y%%F(gdL.{= cJn6hf#LOL05" 71ZkrTeu%i*s7U\KdIa^ycO ң>[_/uqbb4ebptg^Nbo#ެW6k&_54៯Rݡg~EVd!e+ewi֚ [v6ƶ.T~Qoo(+Mv=JSuS|UWߪZiz`8_,:ˍWaCb{5ӲUd~ez2::r8*\{Xot}ȾOi |6\!jiiב67joqmʵL׏ 9-M&*7'I#[ul֒Zt}2+o|LLEEޮ# m:rMuGl{q_?y5}r&OVZj%K*j}-/y9b&=vL={8>%Uy5jxQB\"#CБ6jԞ}uXT+q1*5|h"bSumW6kJ-^Q [*}Ϝq`=|du831 @_VWV.θ'>/S&y3=3kŢA;ov8cf]v=O}9~A^Xy~7 >O|q7x{S] ˂l҉ ~h_~'>O|?pC$,K|'>'59J257ۃߜp}w34lhaV'>O|?S%Cͦ' FZ>#TT=D=}XMzɕjp֮_QGC?MS|?=Xá|y@kk[X̪u tҌY6)U!!6QR֠>߯O5c(;Ԩ[4x`#TWעZR/<@wpHi2%%F(?/Uy5<+^c55MAvhڽN\^F >E˖@wAE-8 tW<;,,,,,,,,,,,,-,3O͂^zKO_VlԳ/mS9|H`7>YyJv%%:ЫH`9wOQ.ڱzk| `1ݑ2y%Iq}4rxB/ !XHD0-c]}^G ckk B_ 7 Gj'>O0o޼'>O|/F|c@:֛zGz$~o">O|?ɫ/?y) O|C$i鑗qo h@['~*?dڏ>/'>O@3g$ٷ$~?O|}5mܹ@@*+<cI9#=lq^ؘ0xz<?v~tŸ_/q3[]u| PMEUElM(4۵}w>}`@"XPIY~@wK*'$`iL!̌q`M!qJPM]*JueLq9I95M5|hbv7A;iJ-]UGM9Iiъ STd[UWߪ)Ƣ*TޏPNO̩NPDMUڳN j٪r56/ i2x$G*2"TuGZUS{9%+UU#} c:(=Z'LKׄ5$N)Q>5Z[עV7j P{j؂UFp=EhMy5alƏIҠhdž+>.\mm7UJTZUkZ-v6M)R4jD UlL}֮#m*;Ԩ]{jJKWXPޯT3(=Z~/W0H6q%G7%$YÕ10Z[قz:X~DhvA.e+UE%rt)fCuG+e@aںᵭb9Z۹:̡_݋cw$)6&Lh},EFz|$57wwwI@=-4Ԧ6[Qqkkλj3PT0+CsoWV}?s1cyZ^\N^6R%;)oЗK5.ھv=UB|.>'K(^[Q٤?߯WUIY3d"t%:CauvCWwwhG#UeBSO~8I1 dꑻh>9M6Q`KGo@=c4N9YW]:Rs~ZKx +]kݱWnDIRtſOuk>CVOO佝&]~]E<$ ӯ路lVϟ}>g {xu7=?km6k?MdG!=P_;у;'w끪3'+o|ׯMMo?ѫUGS93տr q2!E>zW$93ŐY|mfnlҌ)B51wv"#C5lH6{U]bOtLǏ>UG'i_ck'tm(&&Lw:AݟpoZzJ 93r}J^udI 23'+{Xa`>/X&$[';sNa!F::=Ld{5}̩iz|; Bmzi:Luk1az|`5z| ۭm1#u^*s `Q ze)';A!!>1?v3C#yodծFy=ۮΚUj!.)!B>:SS';Ӣ'~ YHK Ono%э1ARtMMwǘ ULL~vh?>']0XQ5:wAA&~4]iTCcG%YcW`:Ӣ<ֆUXM!"9)R?.prha+ρdf Qn'~9%ClL2yf`:!ۣL[2 R?80w.vҵ[y=ol܇S/m˿;P{ O2au QkجZzKov]aeu}i(y32Q6T-/>+v9]0S0I~R78TZިXm;q8uXMߺ`v[]o"7>BW2gwa L!jnnk!;ktI^IRs]~V?TUͦlv{k٪7ћ'~V+6Vdd<·h;vI|tp ^L:)H1 lp?]#؎2jbKxacXQլGFbvMJ2jZoFg{~o;;=imm_s(&&m#}֟қvMzIܳXZ+߯+.6!MONU׫5շj*TU+cwO -}֟`dfa}K:)3?}о}_H`YЀ̙?.6\7\r{SbME9Ta0z@1ZҾ lRȄc#@\Y\5-ڼ;/_㢞IGF vL##{{@_k݊5oיZUΓaz'jbq#z!'Ǎ>^gMPpsG51;,! _͝+gyfo[e%V=h1#$I9ىscwʿ~U˗Fy  153 Lµ?lArmKgsOԽMTARj!'I(wf2G)0%>.\7M&WiƢ*?xD =͜)vW~r/ vc8eۿ;x!aIanzv3饿{qh{uf7Nzj}V6Uw.ԕdseY{L=5_g|miOt} H`YPG]s(>PҠ߿EKW͍RbBUf6a*F8.Haٱ^%e صXxDdf`;fOoʵ?o^۪k;sfaCW$7'Is+tw}֟`dbuA__L^[ɁhruJSeuv*tU.=o3i cjro$ƭt폪k[;;;;=,^y:)Us(DfNM2Wj!'UU1[14:Rmk]_>/$,q=}Dvui馆?ܺp4R=V;f >-߯li%Vs ꥅҕmݎ4~?ң{Vwi: iԈMf Ԅ Kҕtgj F&V6ķƯn6 E-h߁z6!ǭғܬюݵ=ޗ{ d~5"͞b}пDe{מ]Wl :ۺư+vnQe.el=?goYaMpkwKkV?忷pm.u-DgvQV}u%;+^11-FwOߓZW[z/9?^Ofc]LڲbߛBo׹GIGMh\h]>zG=郁>O| F|c@o{~8U״hNtˮYf|qMz}9o޼4;J:NDD~ݝϝw目q9άf,Piyׯ_LK=,_g`?QfoRi8&4ԦS/lDsٹ;ze{$.Â㒊O>oz{~uCsxŒO];zٟ@_O^굘E۫t!^m`V"MìZD_Z+Gf>=Y=O|!4tKθ7$М+GG>4Ԧoiuk.9sH౭& JGO! γz?+V[LD=v4Ś[y/<>UO| x UU7OM͟?$q` .ԟ}jaN9H\;1CRBuQQzd_-]Y+LL}ZfhZRtCh>\=:UV7kR0i\^@Vk`ZƌJT x} CM:PҠ "ޒ%ej<0XvGKk^knLM#t,^_JOҔ )$.j` {;0-Z/>}^kXTeTf)' 77LԶx eϐV=Lvң#3tAVY1q9LOu}߻us}H`YXm]~=4ӯ I3EpTZިAsspdwdTWtb~¥6,Qc,1~fc&F)WIY2oɮ>kȿOg>p$EF}ʶ5|aשV%G% .9)R$O8^[w֨Y%%F(g@xgj Fk7VOuYCM<(Hr3w15p8g֨Hkhn߬ˊ`׋Tۘ0M3O1%t@I.vV Y?W6k븯WŇZR}H`CsGxm.7^ȟ 7٩+=1kz+frVBs k6tsWKSzIzkwɮXiX;[S+MGV Y?Ů_ZЭ7Sd}n$?MOn[Pbӿ۠2Q}왵ڰ1NS7<%{{ݡ|6^ܓOsl6+Fz;UYݬ}6)vSG7H_8fT{]j7ɮ9O֢mv F%e K7ꎟ.3=j!'TV7뎟.q{PїVgź~r_B޻X}fnաv;o>bqcv~ zo[{_aLS[ע;LKL{S]F^|6,ڮU^[[ zn淩,V?ذJ7߽HW6U{k dkm0*?ܨ_Kv_xBk]gj 65-{rT./w/Ҧ' 8QĽٻ^w=\Su#q5V9w?ӃYs]x~o ^We˱_>X?a׌NԐXå4V2rj\p-\vtNs]5-W|5sHeYBk6TɻK <&(oT{uFӡ&XfLIӕd+o|长$h{n_R>+^kQkk^zH^}luZbc5?ҪK{u>CVOi;l'늋1Aáµ滻L׮2#6w\uݏ^WW`xI 9-]$);+^ӣHcJ^6WjCj[ɚ>9M'+-5Z CMZBkBBl:aZN5(=Z1ajmkס&mQE˴pyǕy>~x]|n{QL/o}i:1?]а!qJORLtl6TUݢ=yk*+VȈPO֔)9<^C2bPuMG`Y֖5ZOͲgj 6>%Uy5jxQB\"#CБ6jԞ}uXT+ٿ0-XOy$O?vC^_Ley?owՐ !<(F)QnJG @ boFH`Wl6.te`iC/`~jX$6M~{ۿT[U^o.Txoo_=A @1tp]!TQ^oᎅZۮKKݼ haWk$1ڼJ@w  ,Rj=wy0)4X4X4X4X4X4X' O|'>O|'>O|B_9'>O|'>O|Hu#/9'>O|'>O|Ν€8M< _ ,,,-,f1Yg:cKK5ս#Vl/mףK8cÕM/zy铔32c[˖^?!7>YyJv%%:@@ ל(rjrX=ZPzE ,spi9<{G , gdNMxxld/X1̵5 5:a۬^_.,]b_xg=} OB`MwHX@*?dϋ{7`-$Z[3k_ߋkXĦ*x"]uIOISJrZھVd>_x0] RR֠_1Ka !,,)3NR5$NkQeU6UiպZvGa\NfNMD pƄ] m*-o=uZRKW{,<WuDFjƔ42sFOPHdžٮCMڵVWhRi~p]MʀHVN!q UV_qv t{D|\NTeg+%9R;Ҫ)WCZ\U~?(=Z'LKׄ5$N)Q>zX[עV7j P{jGM9Iiъ STd[UWߪbcQm}}|5",Ԧ5sjr10F1ajhlSEUӂeZ\MvW:;yR\n2=ԪngPzn^N=al&GF+=5ZcG' GhmrqI:YÕ10ePEF*e@Əov}^{6/̻wN=qׯ}u-ͳ Ŧ - ߯VtT6:D`V3߼}?s1cyZ>>[1/ϾQw~7 2uc5 )bcC'7٧sY\Cwy{fk(2sbB&KVʀX1Yg:,-՜W{l~W\;?Ms˿{DwPEڱV{o}KRRB"4lHN;qƻ;䇤ie#5i\r($G){XfMO$)oЗK{&+".v"G-k"#Bu7GY4ke[u57kۏ?N?c$JǎJ{j`ZFFG)?/U=Vzߒi)Q :aZO>4N9YW]:Rs~ZKx3N|oR8IҸɺazu*)pHJМJ=MT =se5TsUo{~0l-׌:ݧCt9z|$uW5-z 2 Rfa[UX;+/fAfJ64cVtT&0Ndd fOqkZ caa!z|WFy35uvO|\.`aJAJ ה )zJ^uPyg KOsaz铼E𝓻hbUQ'z(r~9g8$,7'Iw:A6wcM:̡:iwp6M`$_̜WXX^W}W{n늋]Nr4.Y'4>G>_xP YŚ &X8r:EGFz9d'($Ib0')!ByFdd~iPωθv_$|XSmed=4EylƘb.:?v3wbb4M5 2X?5"Uz| ۭmcKKv'77|p )&ϵO@+ݡp;Q;]f~x}6zEdZ1(n;,OfN50vTa5L0I^=dr InV-m]0XQuEy諰PS }cL૘0i 7yN4\#n2G-W_Fin gNMӕ\pQ-VWki٪rPeevEr֩ :흝:TdJZcYf g8h!"0ƎN&6p]oe ?EF+hfOK|\ǢYqE#f]}kZL-4(=ZӬr6$]~=}OӲRDnjPc^`i׫YQ#$9s-)ѝL0=pemTMm4jxFH05rG7ӊ5 Zpc;+E<ְ k2RdDnzaF{߾ZX4rDBqd*֌%vUmzJc]wըpctcW~A+]|>ӮU4i:hRDD2hD8eʤ5T6C6UQ ɈդqLg4M&/=s~N\wX _ i$]{( 8[xqNÏngӮuڻ^v L֨ үX߾`۪u~Kj=-ڴkAѺ n&5Aօ#Lks/ov)蝕;n)=׼28VK ?ot:vVW;ѷf <PZq_ݢ֮+)ycG%M`ON5$9%m+6&L<a`hn׷/=:%%Dko 1NB|fMOחYV./|]ۍWKJ˛|.ɇH\y1#bs[#,<}~-]V7L} fen;eL`Ml|JwBW2gLf}l7zݭ-ij úMjia;ڹp9yOObI)n3*5>oGt#$$Ex~^k.p_`ڊׅ`bWKKoG{?^knwzr͞-.ֲU.GTV7߬u ,OT] ]^K+?_7δI)]jPl2y]W9GW4BičY18i/I[w/钼~.?X?~pMmVA^a?o<v^35|hۿ4cq͛7eg^hϟ_ox#9uRb]?r;꯼հO9I*Xw޼yr8+ ui&#Ƹ(^W(MnbtSLt&^ݨ8ndof7:ӛێ!o4Sfy]8eŠn_C#ǿ_BW:_s^O:+@֝5ZRX# ?ҪOִKu鮓z5-?lRE$Fdd&uF:ҙ/?;O#}mKRMmn4!`h؞:z0y5k\h:=}!>O|!؈qk|1L_:( tN?73v5=]Y_-o&u,m0l`3)'fnzWx?]pP%eS::c(fF?'>O?D毛yƟ3gW솿|Jodm6v_|i]zm^8_n?N\,9B5;}9TOn_ԛo6~ݡJr].`w8Zx[덧5(upg~s͛qO1{Hzq05b$tdS}pjn6i|O|֋)yV[jE}b]%m*z @5"+wվrw:ZRtsUSyשt5tbӈ."˚ ?X-uagw+u5;}̙ںU ; 78afxNvyWoXCF55=k\컧ʣ=ߛk7}Fx:d{S_'>D3?R[Mm6(=UL%I3x^|H'+2}+O{Vp*Y WnN˶-ZhSnY{CA+>pDy <:/\?le->ZQ٤sW1b4.'IF$hxȊWB|bbH߾zf}u`5$V)roɉkQXQ_Weڭk/7XZnQO6$N9Tg}:+]#L3s-JH`#W~=u+wvo QZw7KWpw53*.6X!uw)IZjMP۱D B9`)!B|k^rV_vc8eۿ;`y>1iL7]=eS_%)^/f⡾ㅾn0p=z4EY1m,GTz\m4MS] M5ɋXH W ք~ݷ.>ۧ%WhޘTS\e *݈xD@fL=# ]up2sV}k.e^げ-Z\G%&[2ekkXgfX ~DCMzUqwjU}a_EFk#,,D]\@IU4}Puj`eu9-]UK̩i;W}I|qq}tT]bئ71a,v鎟.S]g͊t03Q+!Տj2lnFL0 껗zfMɩZ{e k6Vhin~e^\NtiVr'Z[G`$0S/\Wң{'LKWDٓϭ+Z׈:同F~d߁z6!ǭ_Y}_ Lw.v~t^қL;T5\m_R >1?RUzJVb桭Z_̜03սhGv$+]#v3l=,?1ٲT 2 Wr vVW?.W?w>NYє=wZZ۵j}imm*\{X8ߌLܜ$6~]oZ[ rU8+ؾ8!0f]IOtm>@O>ؿܵ`g[w:+]#H&GiDVv3Nv`ήi=74gaC|scVWy]&R:e3Z ^JUZlpZR#n=',,īƏS]%|]O5KM}u0ذRmSBCm12>kjgSWoӝ a.e@3EzmrF&껗4lwA:mVa [jd :_?fç n7&&L9zaCtM|wj`v雮g _WU7OM͟?$q`76!]?.2snvLwlJO;Xs#7>us#gX;vת\xgp= `v"]Lo U}?dj{~j 6o2n$Ku#\P>-S<{2sd%j6l7*j!l=r)E;jq󿻒nn3hN/6/8vafyzљd?B=u쬴\?^tܪw٫Ku'髥gPE4(3øxd.9L7]m>@DE['hÖ*nTS]Ң5uRidGڴpπ >ӝ7I)Sl6n>W߾hmTMmbÕ< R PM0iimo7y=c=*)kPݡ(Mbzߖ,&)>-SC3b{sO L=>JJ4_U"`wnւe*01jnҸdB6mR#jmkh H`uq_s%))1B`02jZ6~M\l7\}|S*jؐ)Qv2ۮNT| ~/WKW`[_Xa:}+=*)kP@m65ٵW.>.\?Mn ;YO}3Uu`٧15.2"T'ڶwƢ*7jPz6rspdwdp|;HҋtS;٤ ch>*M K z% ң^R;+ސkjeQںV톯|V.S^YݬnvwtiW[>k W>ӝ?LM~՛XWv=u.[{,+Q#/A5oo~H`u}VCsGxm=>ũ'] լ>x󯖖v)ѿ>ޫ\uHSAܗ,7$-5QhJsDkfs]x~WW~Qo㿇`^t`i~jULzkw6_,:ˍӰ!mޡ7٩z=SC/5zs݆j&Cs]On^go:c}ۮ3.֮Z乍ݡ߿깍tЭkخ/|V**'oTF0V7OolӿikkϞYkzq_o6m5?̝+vGֵnS}tU6}dלWkri؏=-f흦~t4.ٰM0;tfw?_k+ V'=5ڽ.]5}V[Y+t뽋gV8vupS5pJ -),35*SkA Y1 ڮU^[[ znЦm>$CMzǭX0~vkh`;o>6>P*pD|:udh꾟j SW_яZjjkG?*F=XN|qftvdO# {O4V֩DTF=7pٮ~9Xmܹ Pfwzjq`Kְ!qJPTdꏴUeyk6Up!o*)!B3k$egk`zcvilSiykJ\{HUzCo`W_?+fMO3j$E+*2DMl:^_Kz4Y ׅii6)U9IT_ߪGe{(M'oh chؐ8F)&:L6MMmnўuڼZKWky5}r&OVZj%)*j}-/ծ32;t´4?PcG%jPzb֮CMںFiRP2}+*+$}YA^!S`m$`i$`i$`iO`'>O|'>O|nc#r%>O|'>O|'> TqO|'>O|'>O|wlsu RA^a&eyxB F F F F F F F F F F F F F F F F F F F F F F F F F F VA^!O|'>O|'>V?6+g\'>O|'>O|ߝInz%g\'>O|'>O|ܹszTW}YA^ak`O|'>O|⏍'>O|'>O|w'D毛y'>O|'>O|w6w\G@ @o@_VWX'$`i$`i$`i$`i$`i$`i$`i$`i$`i$`i$`i$`i$`i$`i$`i$`i$`i$`ia@  0oXMt`S`i$`i$`i$`i$۹cWaJh*UtDH|+f ̀@2o+?21F_ڻG~zY? 4i, XH3`f ̀@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ 4i,ny?4]qȯi1^57?Xs2og XH3`f ̀@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ 4i, XH3`v̛C~wLcz?їǺgy,8c ̀@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ 4i, XH3`f ̀@ eMW򫽫dcy͍w`-󦯯h_]}}}}}}}}}}}}}}}}}#ckn䱮e H3`f ̀@ 4i, XH3`f ̀@ 4i, XHce?h%IENDB`mkdocs-material-9.6.4/docs/assets/screenshots/social-cards-layer-typography.png000066400000000000000000000367351475306445600300240ustar00rootroot00000000000000PNG  IHDRvO@{\=IDATxy`uwh>-=(%G8DVwUPuuWxEUuYoXoeQErA.Hd~AMd}ݿ{opV1Ɩ(-A@O X$m:#5yM444o;v)1|94.Ҹ뮋[\зHc`pg3fLtttc=qq N Xuuu}zQUU}ad}8}r/ugg ¯2$}pڵq>V{{{Ĭwޗܮ-^Ez>o!ܶm[׿{;1֮]1k֬O?=,XЧHwY]]~xog+M7rJ\yQ__o1nj_|qo9wٳgǑG7tSg9:"RزXiܸqq=H>B8nbz G:rI3`4I3`4I3`4I3`4I3`4I+آ߭Bbx^ϟ~1$b1`P9CA_EScK=1`b@JFG}t}&/^\ǝ9sfy1bĈk#"㏏>;bʕq-͛>5""8xk^ |cǎy^X/reEIIITUUEIIIA󨣎Wqwu]cƌ.(~ؼys\|yq饗w]w]lݺ5.h1"c_##{hmm{7O^0ȑ#O7Me˖cҥtn7iҤXdIAk֬ؾ} ݾ}{TUUEyyy VFC j__vm\/(++K-'|r o/fر1gΜw(//\.m;;;#" Xbʨ-^ݶ$n---q=p۷G}}}oo%gJeS=JK.Ѯw޼ZXh֭1t(++{ɯwvvFeeeoo=-Z/m۶E}} V__w{̀Տv˗/s=7*++㕯|elܸ1vozӛb1ܧ:?>7vk׮Θ5kVTVV駟 ,(WB~ӟƟƕW^k׮n)NSL)SmE[[[\xo}O\.7tS\r%qE?i#@*inn͝71[}5{8#_ҡs ZM-Bq=SH&[o-!Yg26Nڡ#V-n߳:;}/a8DPu܈}~ ';2#>/ē t[C+_?}~ǫ3:)1sz@/g`"wW~8oMdq8bBmn[9,w|3rqy3gژ}|gk Anڔ,|WG W_[)ǀp۹=ؙ 퐾;@D7==U/=:h l(/,~nK^=BsAn=3gæ=Ȇ~:"l Xo3qsknֶ~>*1`6lXrg۽#>uݣqC5KWw^yW\x81mJ} =bxqƦ-;S `聇Cub[mZgm-+xfs> VѯآH暢{}9"7bgQ1wޜQF]]}}}C(b?}}}}}}}}}}},Jszز2=~ 㿞+מGh{̗tMе?EScJJ"35uq䤺V?$֔GMME:s#mkvmǞ+Wcz+9׷/}~">}\2kTL\ÇUFyyIlsy-q{:; ONǏcf4qCcԈ.Ғؽ=nk+vĂ[㾇ųɆ!1g֨8b7:jˣ,cݱxxqCbӖּZ}1zdU79}XL[cGDð!QUYUeёֶ6lVKż'6ewodrߟHD8o[]xQy_I];v~x3z}S{UeqbxчőbV_UUjϞظ5VO?%|tC<ܖz/h<8q8|Ш?;7lg?1xfKszSLWӫwL' t`P0`b9,^}811ⰪoXVQW[G∈X|GUqmbֶ:} yoyyi SUe~xCe o~L_;b_(K^uxI1n[W[u1qxcgĢ0n{U'7"x8}())m*+ˢ,F y܉⁇oZO9c\1GDDi?sC+bؚ8^uo\XTF}ݐ}~MW<&*nڡQ;"&MNW\>#V7lQٿKU?31j?"EvN9.N3&?fDɳFW?sZ|X~K~o WYDc5Ǝ{uC=13^}>?ąL3N_;{w:S?/bڔ_ԃ-ÿqcjϊG+ q+F-^VC{;rR]|_jjCq͇gGee~g'ۭ*\uR泞: 2`UDeeY\9LWĜ3ǵ? Ջ͜6,IQ^ַSfN3mz5犣 r".{?.xehMy|sz}M:> 6^gOO~pVVԱ3ǗԘ8~5:ml|N}qV{8rR]r\yXóGcw@cZsηO=*O|]~pLձڤo.:gB/ǯZrVׅ뭉ƿ45T5 X9,{vaOaڸU|*""UEL} 6^uSx96P_IgY@GM9?3֔ǵh̀u5jrӧǧ~\*+zX!>8PJJ">' XVVoySS]|xVQ""1qmHy>`oC Àu)/+OÉ0g :nD>*X[|댼?u*_=@r7&Nj猉GO!<)1sZ/6ȸ5­>0`u4^y+xۆaCOx gDĂ[Ƣec墡26,>}l^gSq8|Xr~ n٢g>zRLR]~n5Fˣ{}x_#e:H o_:-<>޻:7ʲyXUq3_(="$={?rOA.^(θ5qe;b(//!q8㔱yҝyOl߳*Y-6oiҒZS')GYm'5Հuѹ"I۶g7{"Ư~"&|dv!}1rr%%ɔLe{kgmX_13.<' ʀu.=O~^?_O._iQ_[oymo?)Vv썶R1bxeT]_if>>Wkæ=7x_۰]d[4ϝbcGWGuUߒosY}~Eq9cޟ3ur]TǮ?twLnbȧѐ'^׫أǤó M{o/֮?ߓ[ŵ_-3P" &DuU,X5>}ݣN|θ3e13za{_x\3_z4~eм `X|G5؛V&(.k(M[|Mk㌹|[C2~`ٹkoۦ-<{TCծ(W- \}fJJ"߽[ !a&V/ \"FDy8*41-;v}!}9"7b_e6}S1wޜQF]]-ޖ3G/cf |M%;'6t[ZƟ-~ɯ_e?"qɊ;2&Z~-,g;u^vhE>CSO>`U^?}ʰL޾_`J]EKs羯~}o~lcwV^xUTf~bذik`1D l泥{͙s2}7Anæ=09%W ?}#-UeQZ=t4QQ1tyش5f|q5 ȻY^ Y7Z%wcGW;rT~ | eccܘlXYߪ\.GV9(tfocGg;;.Pe:+#ۋz+2gxCe|SbhMy=hks\G69 qÍyg|]Sfrvu5lش5Kc8fFC{}_Ϣ۽}@f3mQ#<|_iz Vu۾MIIIpaqĩ'ت*2gӖWOiSvƞ֎24jk*b̨/D}?yMzvEggߘQq5ģOlݹ*.7Fgg.U#bN8Q]0`4֬7lq ߖR]U4M &r/o7#}<>8eL#MOnwĮQ]] cjS@`a~oq=n8nޭ]T&=좭1a[R11gby A%˳}VɭKb}߽*C*JƑK&ǟ_:-xɔ8}肌WuMzk{ 2`D;_Cؙ7bA%7F7"kp[sѤ?)~rb2;~8mD+VO\hoV~0VU1?h "~>\1ط A㣟}(Z[{W_,]#>c~.Mt VDWy>6**v]bpDi59{;<k@* Xm|Xa^<>c쟮m=o#ջ?Y>C*J [>wb4M[Z?yX_g^/ +A_}Uim|O?۶;Pco?z_,]Qx-߽:}O5*Oo 'gIY;#m,-y ;Anu'l)cwvww+W' #x*I-/pɶxzi::r.}-671-~0b4-[7ox*vjcuy|\k@eyosX\|8㔱1&o굻b-kӻ7_qe>wbTV{v]߿Xorqoc ocjyOluq^7%.yQ][;3yh;\.qܕ?9h6߱soepj}]Eر 97wޜbǀkjlCyw)//cf4ıG iSb=*ˣ,:scXnw\3Y5zs,Z؇ PUU';"9!kauC":;s-=.3jVĉǏW}X̜>,kڡ1<;r{w{lEKœ '7>\Mz$?818nh UUeޑ;굻E7Ikㆯ/<wݿOCȡܚ[ujoOnOw Ȟ=УG7Pdνq}kn8(FkY_ ~?RX0dΜ_83 +Sg:6}m.!̀x%Sk;=.8{BA$o8:˲} X_> V,؏ӆŻ~TUo{1Q9$ۧC_mf1w=΀/3<>YQ^L5{_:3>mld;*j+ώ7ّe좭B/9>ƍǏώw~euprܶ$M97l^ ^.gE'|ˌx[f=bز5Z[;<*qCoo9\pk>= XOљS]UӧXvƵ_9 9QUUWhvTToT,^؇IHZ[;g60""Ɵ-؇0`@Dr+z7bq\.1@j>`55'6?'c~_s5/ֶ׿TvNi!$_]]}}}}}?咸wFˣ5^u#o|__________J#"ΛS#ʨZ]O>qP\bmd0|_9W'PLM-E0L74?k|w8~hޏf.o+@Ɩ(/A`bθg#cGQӆ1C"ʢ${cXfgX+,*SAǀ۰'ncevb )I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I+آ߭B`55w~wJ#"ΛS#ʨߝ\@1550Ɩ_ zb i,f i,f i,f i,f i,f i,f i,f i,f i,f i,f i,f i,f i,f iE[UZWWW_________________;s)eNIsssXO[H^YScK=1`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`XM-*-ă䫫ߝ҈2w9W'PLM-E $H H H H H H H H H H H H H HZ}}}}}}}}}}}}}}}}}nANiDys sDuuSܜ+(Ɩ}?`Rk`@O X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ X$̀@ʋ}RCk9>z[H H H HZ}}}}}}}}}}}}}}}}}nANiDys sDuuSܜ+45XI3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I3`4I+آ߭B^qTNUT6yˡJ57V0͵7*$Īb!ֿ C {u(E=Ly«v< 3Q:V:.WyTYդ@UMjhp9- ~ DžOִn <~џJ401x\55*m,O !F_ %ls]S2ErV> s{l_?xZXdYa)s3t܌Utaa!PiycZ foUc}1c@rj+Rsc"l v%*zȡT]wžJMNRr' vG(-kίѮxQ=ur|sBZ t6k 09Wc}\.* * ] u%#ucFI]]Qֶ LƏIЮ]>NWmn4>QJITLL/Ӧmz<)8>U= iQɫK:<.jCh~ƎWB\*hԦepY(Hߟwxy⒑9,Vu v7[vcK5sfu+]e|1 w֓?<oqP(K NNרq WSCeڱBVjպcYk_"Xǀ'(~|Q7JmzMzY?}{ڛmIbB?#['OOUhņcڼLo~pXj]GTd:-KgkXņrYrvC>X?{s1?+eoSTtBB{~ %\0;]fi:stή}:L|)CxZCt꼌ZWdx봔H}ɚ7+o1a?:^GGݯqOrwt lVeօg Պ5z-Whluض"#Ce!f۴ziJL5*[Uٙ:{QOڤ9u{}} tb;WMN>W۷i[i,3/oKȎU1aӨqZrp\=N_gMKosf+Gm}rDM&>@ 8ͪSxT#50f#)2"Tv;}aBB<32^M׌ܙݢ{*zQR WmOt :X%wLszنnƄMӅgqYlV]M %KW"xH"JX^٤;Т+*2T>/0}RBfrNCV5~擔.vKMŪnr{Ԙq-PrDW-W]Ӭ?9?9w[|\clQ+uƎMDa(oC?;T֗|ZWe1ۓ9eգR|\ʹu#+SEC6,;\mpNtWm=m^]ﰰ}Y;i*!as[ϭMPj* NGꪏp fMժɗջ8 !?nZQc /5DuvPSu)CܪJlQV>א_gXVHXm]s&6&LO>xƶXsNރ;Z 6^f׾iO۴~sbtʜ q&az]UY]]MY=?ƟV9kI\*gv+=NQXr١;ekw8&"G7{/'}u teDud?@/gh{cXնI݆E7_>Y5K{TPXh]ձZ8'2W]:3`%uQ$txI߻m*QcCUMzzݞ=V^ǀ'i)Q=3ev|]{+3:Yccc;1)ѱpJ=Fը٩ΌnJ>wպnnvշ{ ?ٛkU_s AXT)uW֡'MHSȈP^_涹}lJC4IҕGtü6.]Pn%~:ofPki w>>^?G=3uuv/<3*X}o fϧUQfC(P-S݂V1ЙjCߟ:֫_zv>W[{Μq}NgdteG³!6Sm/:{V+Rm݉-,[U6doQ}1Ir9TW/[lBBz~X>hJe( Fjnv;^XO wmX|eJ\<؆mnvp9W7$P}ocFWm⹯%yꮿ82m06c :}zת]UՅy~<]s۱eõJܪǦLLik.97GGu9>}e -ˡ|9\X>jJx{7Z^rnZ6ppY..\PtVZη0I0ccWKpw|.*8VXFsIF_],ns[IRm&oXIݻ :αe K{i:}Auv^_}Ѥ^q:=*[L,JX[wXqҏ_yz#:ӝaj ׎%xu0ڶD*$6߂7AS(p?VyXC-)ees!a`ǡu5''COlTQIǿs\.t _O_ql{/v-D|:)x]tPW)å1#4}ƏP\ٛkd ^kj(5XV=dj:$ZI  Ysns>Xo(|Ng  %EeђMzַt^uXDvNJ#>#E]흏rRٺdb57`!kXL1(0+nDϽ/wJOacrTV('7'5.{*ށ|ӎ TXo':un"C{ݮr ٵRk&dп45V%p42V!_AJ>:W63rShj /`uA?JPB+`jn 0 ANGwF` /\&MNsS1~0"A?XW>Ʀ088r8 ؛ Ͳhԝe%KF*6&嗭*ԡýߩwԮrUPTOh  ejj( v3tbR5*hrI)o$},_G b&ڪ\9c: S--BF%X|-K5l&La v4*,_$hRUUsw`0jnTC}q q9 y!x+ JHpU}m܁0H[݌x JG|j*MY*Җf HX}si(!O&Vv3tb UL`7c@Idﯿd֩Ap[N' ٹ\\Y,nʀCVDS2UR֨-;ʺ{!45,[lBC#݌ mQ gN'?xL!ngN8 , sr pn€D&rq-x ,09&050   s b ks,,.\ ȭT^BL?]i)Qn z;a0H`@;C'f|zmOTݩ7?8ǭ븳NҽO v3;n0h]ո.ëhy}*ܘ hTCF۬699-HX&6&LᡆOK `kz\.@W}yuZ4olrhρJ.ugu|GWZ:V\$,`ŚB=%ܸTOq[5 9@'xe6n+e IVO#r:, +X>ض\ť Ywڀw*]qf@WE2m:,͜a1EYU`ױz-]Y^|,_z1a?;]3NJֈa1JO-0^Vi"P,kIRJRNӴɎQjrjjrYڹR뷔hÖ78 Gi$!6eF)*ʪȈP548T]۬fڱ\;Tz}oܮp]}(]pPl?*R##x\5z?{u Zt۷&j814+Z^7Q_tҞnhvҤ.*HbO_:/G7}c""BZGjr4gfզa"}c·oc9=[?Z"0٬Wꢳuo|e˿? ݋ $ ɰN$9)Rw4YfǏW]WmZ4?Sw4-"27C dŗUZJTs`KPnfzxN«"<:lQVYC-z3 ];U(Ą)$Ģooux)s2=3۪۬3ͯ:joyJOdSu{^oc\%'Fe^\LONXSx##}߯X=^WY,7.`w>0x`3zGt%#.sfwvZoD۬ʱ:)>W o>I睑 :3#U_]2RtۆVZJu;!zY'ꙟSR!V~N̙j8{z_ާf}I7v rs))Ӕo,;2KI'Iݢcu>~L$z;X&gXO{ ߯UzنBjdNVnQUMZP6Qer8\ URB=px7[']/.#JM7:z+uVuyߺؠ4CØq}Cm˯2jruYC5fD+I%zmpiah[J/뙟3q=L䞘W_}Y&\]˻V?{ ܙJO5V}Gy݆WRuvؿws\o}_a*]*8Vzm= ՝w>6jwse/UuM]ghq኶u)'%FZώ=冖6<+ u6/1jug6n-5lO04TVg6w^jlr葧6}1W&wʜ C56:j{/W3L YsڼL=EՓب[KW^Ys5nTs =X3% -m r~k@e=DnW˯R'<45&:ۿϞb5]jn6V4kRe708Qer ^`\{L^tշZ6-%Rò39;<ž+$rm5Pժ @|xsB֑):iB<\/6@ 2tR# -r.4| `7Q}ʧު7>-o,o$.&yjf i)Q>j CM,'x֝e>FeUcب}W1#sH-w.j^I1HSW7K ؛7( LlhVj^l@n |C2l;2^#hDN2Rd S*ͪ.q0$)$ `Klf%,lVcVyy]`+Fdl8#VfMfj!9?I /UM^͕@e? yz;wStz~&2TPq1a 5Io_+EEo+k!&wﬡM P5175{1F/dia r M׌j0@o/Ԙ ǨFąl-^8 ~d7v%XZQw5JU^al 5=,bS/4\g 5\yE0_jrkxXߧy(F>} Xw{C^?j QrRd+a6.2 'ݪ;Q>N &Fa^PezŦ X[Q?Y.n5 fZm^)-k_C@`2.Kj+Mna,FNKz퀯M 5ۿ< `3 zY]ݟp~M@֏/V~e 5>|복|mZ?!~ 6o/Ӳ z"VԯM?| -OT]]ϾS߿Ze ~Y@)ȭַXuK|^KOqDFj\v\ңެ5}mfP?X!Zejl26 Xؚ źezڵ§u+_GW~A\卺zM{X.E-Cl(RqCjg]]?:~m.oYO5͆{F?~|f55;e2v:`p,Z6n̩)46AC0R}]%e /}ڴ 2~LfNI֔IaS\LblwQki{}^BpNMN҄1 JLPlL$I:V\{*}W.WSҜ@ռYi95EGiHzl~m:SӦ21x-0 8ۻ]l`7a!7~"#C{\/ҿn` 1w'OO1^IҾUn &6&L=CI >#$ĢkchYݩ]{`p"Hj揾;U@cF^?sm.QM-@t%#5oV$)-%R|beR" =?!>\?g.9w|o `p1vs6i\ڸY,wFZK"WFW6)0Su)CfwZoD\lLkBC-n h͜tgS.  :UZJT+o-%}/,B}z}{qW& &~ھO^oպ"= ;;8,䪪7 Lt}Ss3 `bwv}a4_7\=Nsfm_l*_إNeђ`İX]xP-^0D ^?ήkaW]M~؄n€CRHEGkdC![U548T`WqYաjmV]*`+ _!.9.S{*`jX05,L FS#``jX05,5 PBBfKG\.gH" `XED&R]M`7BL FS#``jX05,L FS#i\N,WScr fXBSk$0+ &ӾJ"ɴ`"$,H+ &J"Ix`]U_IX0$,YwW+ ASD J"@$F$,+ A`J"@J"@J"@J"@J"@J"@J"@J"@J"@J"@J"@J"@J"@J"@J"@J"@J"J"J"J"J"J"J"J"J"@/J"@/J"@/J"@/J"J"J"J"J"J"J"J"J"A`P0$,+ J"@Y}%`Ѝ`W_IXF$,t W`+ J"fЉ$,tb+ 혭J"@;fp$,g+ 2oDJ"\}%` z #^}D0*,< `W `W JJ"KD0+ `OWߪ$,AU_IXFX}%` J"kD0+ `W߫$,W_IX@P}%` HJ"JD0 + `HW2Ъ$,eU_IX@X}%` J"jD + W@6Ы$,~mW_IX`P}%`KJ"K$Y&@@Z0: c v W_9ͪQϘ*W_@?2ت$,~c0V_IX`Z}%` J"0\}%``LmW_IX6ث$,ӢIQ}Ղ : : d d DrG`"T_#0 <#0 <#0F`T_u Ȩ@Q}=k0*"2I!Ƞ \}DI#0*<2I$,1{UXxL! (2 2 Q},>FwW#CT_y P},>BoW#T_ ,w# z @,?+! Ϩ/,?ʿ+## O ,?*0! ,,^*z# GT_ ,Q}7|@U!W} KT_-,/Q}շ@U#W} T_@ .,nP}|Xݠ*@9`t+s + + +s!+s!h+!h+!8+s"8+s"WfF ̌ zT_27,0Q}e~X`PEU@-,0(Q}`A :T_/XAbXtl2'#M4:-Kz`7`cmk'TbхgsO.8[L<=5R=OO^=_z~ffliZ͏TQiُfAWܸz$]xP}Y_wd}IoY#x|LEBC-$INKJz|ް7-fξ= sMuYC%IuuvN9 kf L̸&AU3+rԨ%<>2D*'s n~AJu8Fev ɫ&Z`VؗZgwTuBB,lC^xH]pf˹/ԅ_@_~o) r˺fϐ`|g.A_%I[w锹<>Q+s{R{ߣmVdGK6o/5tٷ>Egc*mଡzrx ѹ CcdHuvC2q;MziW`I-US*fE+3ݦ_\fOOq[fҸDY,UU7[J93o SqiC 5An Q}?Q%iaF+<,DM'v9$IKWչ5uR2_[vӲtSeG~nnn&Ke_hİXS$I_$+%)m_:/G_:/G wlj9:,eGѡ+Ж=c ڵB7/>gd4o/m{_1aZr~N_4[+}G:*mr{;o_i{=]OƌӵWIGjyjjttoW{IEõ`vRS"Ԏ=k; '/]{nUќJWYE._^ڣNJWı cuz|r:߀}u{^_QW_6Zg*-%RU5ZHϽ[U'f_7*^]4B&')!>Buuc;zZc7ؗݕheGu咑aZ.:{$O/r9ۨ{qQmw[q-޹BasbͪvN.ƇjjF ӃOlUۮl_k_{bپ=;|<^o?m[wZ ?w+hƄXq>^yT/wS=Jӣj{^zjT?|Sfs4fd""BU\R58731/f,~wvGUE%iߡjmjxmY 5eh$|b㺞*59R~dbc$|ue"ņk8 ɰhar™QSSG 딜y4wfxvHeGuم#4~LStN$}ى/eC2l'++&å#5EY5uRNJ҂zM~՛k5kZw9.6({Hi y|kܨx=v,%&Dѡ#Gk93RuT=םz- \ؘ07nw)-%R]8BcFGuǷ'JqJOm>_HF78 #tݟeF/_8\|s,A{W*3ݦ34gFyj<:=;_#4wfR#=VX IUвU]Xlɛ+URSS=Cxq-yݿX,K7:^6Uuu̝PBC-=-P0̉vv '#w|9w-ՔIIoph2XX!!/P2m:rVOn6ZBo/;Z);k},_OiXK7Ln [JB ˊi2:Q'%K,r?]Y6mZGڤaS&&ghтL)՟_}MI-U>MVkV+/~EM ӳ'}EEPbB]zD<] Y,l|s6o/WٙZPOq*d'}^PVU4+4Ԣw g^|yo0X_Q㔗_$-1#uԶj#ar3[|\-Ư7LՅ۝Io]o޷5l1:/C9T/g2hyvn9~] ӥ/Ҿג۽I{TjܨxMUNYim=vzkĖ!w]%of;x_ړޜ#w|9w_G,os8\z]jlr(.6\cGyz}{ 2{HHPuZ$WYowwN"=mlmir\KmJ铓ۖ hΌTίQuMLr?NjY=mlok_{қsdW/@g95_lhr#z/v>@|&Hvp6緫٩qe.ߝ@._ͭ+?AcC+5L[}%I u|_cC=`zzm2gF˯ė5@nF**8$V%eբa+a|a`M2|} Z^O; i|u)<,]{۾9eXik}O=n7?ӛ֑ZNiYao^wu:ZX푗c֝-;?l?~Qp.b{v߯ [KtexܙihA;Th.f9~'MwMWHEa2גo۽G'LLRLtV>닔/~$i$I'¯]{i}IoΑ];qp VY7IÕ>,>g/ڶb5fd|wWs|_߻w7}9 П엾js+~ D?x !p]}e֡j۵Bz^?~kxcΌTP0 @}߁|\[ks/NT6]tv/o|pmbF[=35<.q-wPuMF S\l.>R#uiY?;Mwe՘q*hX_?6מٛs?@%QUM WfzT9/j]6o/II cOm*-%ھ-vz:jgU[~h Vå{*4cJ&OҐ l;Hl,֕KFX]DZרV&OԢz孃21I1a:xG:QSkeg $w|}_1'm-aOݷLygd咶*ͥn%e_Y-.=o]5V'OOiYȜXMf}r|;khVQr7 ˊ%v[ΗZm;.\dj$-_UU^Ѩ{+q8TMN͟?c&OTHEk7wyRc׾$H_];Cb*h "3O_pїI5i\bJЫou@vgH K_?)} q'wiƔdM/'ݶLuv͚eww[cSKͿw/w-8.Q)Imx:bû(&˅/5+!.\W3CZ4?S睑&C?KwUu*ԙg_GOۆuxgkirtx}eG[e/ǵv_X/:|FC2lz<\-N6h4eچzʟX= 9җsW _оڮYދ O_p長ꕷ*#-J3h4͛[Cs}^+}/,~,߷` avZghƔ9PVxabwaKbõ!++\j9]Ƿ)hw1$F9Fw됛bct҄Ķ}>䫶,}'_@*ar6'ܨ~@)<,D5ǃVג۽jIɚ|'~XP`vNJj :V|kO=G˹+}sh_mWS[,O_/=5JY6ED Gyzɖ^|0vgH K_?)O} _MȎ۝&$ce՚㿶_pN'<|uCYD-VJ!8},_t%#4$æ]*>t[8~ &[/iOJЬh57;ʖCmCjgOԲ]=#"X=/K:1a󹋳=n/g~6O_pbJwrk{ꏬL"^'nbΖݩYy{\_u9~-*)k1 帖|ewJ91:oqZ."9.0SF'h瞊J C{'ޞ#Ρخ1a sOϖҲ2FKs-z]\mp:ӗ!>}3|`GNSSU*6&LqZ&RRvy*,WDDLe%*6&Lw2E|]pfϷnE+-%JR[},_GjvCLƏ}O$m۶BvS1a1mÔbu 4ݭGUZ֠pimm 袳KG}I{KAٙѺ./+4R.ʥ;؇ݾd1T3bh4=ܶ;O0:=u$o};|Fުj#OmEg)s3q-n㳇Dkw䫬jҶ]86APKJ}|kO=G˹+C]St-S:-sg[W$!&ӗkFkĤǭ}ѲXZ* |_AW}/f,9şG_g9:ټ΂jUTRܼ QsS;T  WՄ z3ew>RCC=Nƍ?=MriXVB@*4zM\sLg/ʒ%}ir^O>8Gsf?-֡jEFX54WO>+Ћ$VUݤW<+՗֥WM]ɉ X]ުgOos5oVJP?TQzZ__l<[NRZ$F(9)RNKO?]{W/}+˯NRNv|de(<,De*-oTrbۯ]+nOu&-_ml|y{^|ewN}**i鸖zn,׾ִ{ck]}պ9G˹~bV4Թ:m^(&:eˎ2 K ӗ[5uRJӯ¢zUU7)3ݦؘ09.d;}Z+>}3|`GV' ;\yMZW?q(F?EG jf q@nc:_!Lj=N}燫p;T\qZ] UPT Ӧm6駿6sإgSk6|量|>FlVs}EJJБZ}I=+wsUYդQ9 ѲUG~N !OۗUzC**iPDx{u]+khO슯xUV4Зrm䫿g(SlL޴[r\KoU[gubH{+ִ\lTT5ir;מx{4sW38b릻?ʵǔԔ(_ާmخ7q{l~-ڴT6F SSCKWw!v`'>}|#`0,Zja7~}d~n^/7uZ}w vsZcC;4+<2IWT`Aaa!:l9.-} @01 gYuuQEU%}k /h,+ v` bvS mYgSE%'o&&qA$$@`jX05,L FS#``j`7 ^a FFHHX@%IE瞞ZV) vs FpiYJ߹T3bX)/}'`m3Ţ h55;3vcqWWBBL$͜o"I-t6-29˸;o *IppU؏KR~AJU[׬`703&K6ǢYArR.8% ;"2 c TpN}`7k'Yƌ#E8c.HXXGsMms[Xzb bW/ÿܨ/E3fZW^ܭ_ٺ)ZHOqq͙pU4i=oph$}u(MȈP=V?^? 8soOֶ]UnɺamÓ^~~RN%KK娡zsmQV-9?Gg(56:}wڲc27C1#zPwJz@}Q69I k֎=ki[v&jҸmQ{~ErIEõ`vRS"<ڼs;Zeh~R{i{{i)ʱ:yzcT\ڠ+ +ym{h?z{\gt3z,Di9:}A2l;Zo}xX86D/Y|vdغWwxlgf{g;=5Jz$yG٦F{k̈8]{X4!Q!:|Fo| &vy~PM-#78z@,R#kdN*UPRB.8sƎMw";Cܓ .D Gḧx}$\RIY"#B>NQzmAiwg).6\GiHMG `:^PDCc:%'Fhެ4͝'ݪw?>97_;A_Qr:,6_fMKcΒ"r, ]7MV.gt,]Y\;A%*91BZ8']"7nz{~Beq˯ՍL{TJwMט:yzV/2h-[UMUMXZ*&{ e oUuMBC-qrH]tP^/}~։n,vX,>4F.ڮ:,sst 'kÖR+Gnwַ2>59R3SGoO?XWm/}0bXn\.=}<_.jэ_/o ewLZ={5*2T`"#zjhpb.>xm^vex?Mۓ"sO{궻z͙Iuեv}|oovX OWVMꑧ62eb{-ԑZ=ns?_/1#T]Ӭg񁺟_VUQդ\oiW{#f}OUmQEeBC-:l}IٰTh ^nu-!IhE᜷燁 H́e@}CɚwIqD*-oԣOoj&pZ~~MiFp8\zݪjRHE- NN:[_vZէ(<,D-n{΄ +۾KRqiy~7:mm|ؘ0a=`Y~0 å^ܥ&b5vd[5ZPE-K9g+#-Jj[p^/W~'ŢNo޴Y?zt][үP&\r^BC-6K_G} ,1#UVѨ|}[!I[v?`_2R qnsV{%+HV5fvuNo7Yp6'OnTEeSQ^|ey}>>N:7z2mJna ~FX-p*/V̡bTiY)j4i\6o/sR:Dž+>kݾX4?SRŁï_l.Ѣ4n;F ՘B{*tzHߟnr޶ϗ>زyO**X!͟&I|F0OE}+o޴Xq*z<|x%ąkX?ue/Q:ZO>$ uNC2l:yz>X}yjP^V)7۴sDwz߽1sj$G݆KrgBɚ:)Iqmr|U*˼=?3?"/!!ZoD &ks]>4Ftt\.1EϪuEڼLS'%O,Ў=ZD뷔h sv57;mW58x>_՜:?&^n[|i-dʫ]{+koȟmIɉL6XM~_@aY-}kv\-sP ɰiİX 9뮛'+=5JWw:@zmY'ͶSWgתuE:m^NӻK[j>=?3?"B]9_Z*Vq8\CksiҸDMk۹rueZ'UM([޶ϗ>oȖ%mUKUY$˥Kɑݡs|.IJN-FE?hZUMTum³jL569/7v9@zmITT$/:m^NwQB|&OPYE6n5vEo菂;ݸ^y^y2Ң4cJNӼY:$ZO?7ygdIw=Fr;x/J W||`*BZ҉;wQ}ΨGuvņw[ r:t*Xrctu%INNj}?I_o@wO[ٺYX5͚9%E(Nb'+ Aޞg$@0'$NTha$cG~Nzj2mh彰^|[l k|_}A<*.}:DuHNg1a:iBb(S$u=M+_/Ǖ#-!ȜmkJa!z銈ՊՅz].;6 Dqx[L۝ZPaa!7+M5~Vޞg$@ `AT^r!6Y=܁khkoaU$I-VJR?{Eanˮ^W$\oKVxY6%&Dx;h8㶺zg {z(ӲbQEeٗq1ձb1I҅g k>M?)YC_|42'VE%z٭.;6 9Ɉ/6?VDx߳\u|%:,8)YG 뼚@$,HTlLbLdqI69JZ.ǎsygi G~4S'~ ݷL>_9OVHlLLj{j.-eHL-oK<~tC5sJ],NSUjp/z[zD%e Ό7Lp1x]r\z^Mcgw;3MxIkU4uŗ3#U^7n}9|=:?\#5 wMW|XGۧJ~6t]rnNyjko@z4$#>Z~Te J ׏>CC-aQMTR֠R?? H@b,Hjʛt咑Ѻ᪩+91Bժutc5al^{L.}t}/qgO5r\=Pe ߷j$͛_?2WEnRfM1ar8\y x>_wsuiYɎѓzQ-M{SPWoؠx.97GgJIPrRN~nyeMk9U ZCٶ\zmKO/_8\Q䳂nm?r\z tu,67;uhΌT:WfT|Y^|y_(w4YЍ_r>N5~?I_o@gOos5oVJP?TQܞ$˥+ t#$`zs~D6c*uC5$ݦhYy{0&A\19j3[G+5)Re=[X/sҕ=$Zf+wr;|Ѷ;\u:l(K)59RZX~K탺:nwbPrb+"^rc$\m߹BߺctHըXڵlU^ Jo~p~N}1==U1a*8V?_ݯ.Fי~J`q1ݱ_\+.S+ghڴTo~O>;`޴uq[U'v\g0g=ms;?\߼rNJRRbk*=>eJ]D;ޞg$@ Y-y{-\M^+-;́`7*^S'%P^MۄʀBVtUVgOoqnWg@1BL FS#`ر i(5`M`&XX ,k 5`M`&XX ,k 5`M`&XX ,k 5`M`&XX ,k 5`M`&XX ,k 5`M`&XX ,k 5`-#IENDB`mkdocs-material-9.6.4/docs/assets/screenshots/social-cards.png000066400000000000000000001006321475306445600244720ustar00rootroot00000000000000PNG  IHDRvO@{\aIDATxw|uest){U@PLAPP) T@DAQA tA^i;iҤwI{}|>q}gX_UIyy@g`jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,LB}UYU/սi@rp.q kIu4fD"%_P7OgKuk}]lt^̪~C%jX8]PTRU^kljRȘyeNlZr7+0>֝z칭}Sڽ`v^{@Ys 퉌yghX$+,O55 :_mђ:Y6uּd͚aC&Ue:Q dEV x+mDFw";|C(:_qRq BNEՁʪ<\n`3&ug&{m< OoSlQ5jX.0Uo^k˚{_3&LRPRZ>WO]U l餐`]}0x+ȉ0ÓujF&(2¿>> QJbOցC[u ʺnX,=p𪮾IzbSUmYn+E:{cxyu#`_j0]|` 54ض2!F}o-.Nk^ݥVfwZ&Ң]IXAWӁo}yCނ9619V!'Eim+6:@z݀T^^tF9Le^3wz}t\Q{%KW;wa~hMa!zw5rhx˺OՓ@gnffL=v_%uxxH16թ,WwNrX=~TnNE\[KWё6 5wz<] =JN &r5ԁo&Gm5פRv)]Vo8.̀4%Ʒhն]Evklֹ!ּb1\k\yEX~L_,?%+-ez#xQ׏Vl*k8\ᯱ"{t r];㥪ۜOv:cnM@KRRB`b۽VYՠ~2Ny⫧mZrX, RtnmpT?lۮpS٩M ꫹tG;TUU *-SpOqEݸǵzqIsa oоR{81e[;[f&kF "ˇ:^k{zQ6/_>vOkX,%gkbѭj}~V)91XoLoU gKINQ)3[[륧֮+IjЋtU+t%t? v։o}}+g$9۵(*զ :f{p.?9hܨ]w/HtT2jկؤoSm] kާG[ۢ+Gt/[E|ehPqOՍԨ^++OX[ T[ۨ:}[8nݭ5`O\L~}drc{DOͥc5 BNvt161FI [K/OmQFfthzj͘c)mݘMz#*.m_Td `~F[\CWBŕZ)Oc54iES^:[MMVt1M˲VwPFka?Μkj:pȶѧK'76&UU v+Tݸ쩶)}Qv\9_wk-Im5p*D|ײ̞|Nmmc8y\55O暚rEMxUQEvc*NNbmMVniqeOKWBf%t Z\V'UX\~Ia~6--VQ689,; .[_ߤ%ĝ6dPh/,槮W>Ķ5Z6lo~HQκ5d3YMMF}תM,WaCl[;hg2ml6ϼakڵT7&JBߜmk_eۄc\\EW#rNtrEVʪ͟hVh@͟iQ0?zblp4qcC뇆v dݸZ쌻"xk Ώ%=} t׫wfl+I<ٺ0vz'FCn-׌]I stsnEOOWmѕCv"÷*}XLg@yr,ZHE/' hTPTb6ᬫ8Bn䩺qc8uU%׀F  qZ- Ԝ x\} O{G[W1Z̛'ٝ5!-fu=Xh,ߥC[=al.0C=E;j#0]8'I&ƶ{^nZQp()|O3:WW7wB\P[Rm {ǫ'5Б5kv]{pސ̬J{'ۼnS]} m_ Xeu;w*&*@Ӣ4!-Jsg$(<} c5gzVc`wWЕcN=32+tp6lXty-)-THe.fJu)3yYy\4!j\yމS?5i熆&&M~-Zn+(|G?$0ESY\Y7.>o݁Ǎ҄Fmmv[O\έҫ'Iz]-ZdoUC&/~Kҕi7zI]nvA:wa"ԺݣY7MABop^xl~|-^4t+Ɠ.ҁe^׳NׄRPΚ~1flOfLkT'WPo̍7Rv槄@%jȠP͛?2&׋ن-9~1#"],//ucpNS9ǫS%ժ]#)66)3%]qW-,=-Wg LMWLVwmv5#6(t4ofr(-%NDA5n=ler͏WhVs_ߣFGkE+/+/xnNSQqMjO_wG0=N+,ضw\]Gtּ֮RT?4. ct\CC~j jݕj#?o.hl[o5D|tOj_x.X4@ѪC4qmƥ+.@_u$-[mGD+ad)Msg$虗w~\O1**nSS{v/`_ K 0PvӒtY9Uzw ʭҾ%qƓ.ЇRUUzz=@Wz6c^M}W_Mm p1\6WopP9K{Öm% /1oGXFt1:՟Οמ3<]ˠUrU[۾k䪾ɩW++< EC۽;~rٺPܻFxZ%_guiLsGt}kmG=X}v[N̮45YdEJR՟G5v˞Z7Kn7]vwt4rYbdR-EF{&顟M`+Ĥkzq14ݝ/#B?kUk!B:[>֝u5M7*I:}F|A߷V_8DψWJb-*-#*3NVfVn7<.Ff%QW`Jꔗ_o59:|v4wreݘʵڰ%_gOьɱ:8La~jlVh\Zk&tv-|t-cuo7:&rmQkr cLJtu?sNQJRB|UQՠjmؒ%+U6>[vL7ׂى=-^///*u8\hɊ,7E}˳Ο;oNSX(Y_I/~fkp~s(l:dG_fE##ui;ϼS.%8V]0s; `.XĢyɲ8jJ[EF{Ǻ`BI1+w#DJZ0FS-] <+ᄴ(efWrV¨ѻ +sJks0):.*_w2c]QX:՜-܇ +ahu``rt%Eż.ĬmEEΛ\3+!3,zڕ0*_3,z8+Yz5{3,zҕm_L_JH+ʼ-J᯻nKpk] iu`Kёu`KY Jk ]#] #_ #M] [Z]͚J+8μ-pHoyZ|O-zCW’Z54Z=]BXfJhҕY.z!,0+an^e{eCޕP8] a} ] `Е} }] ї`Gѕ}}] W`Їѕ}}] `ѕ] ћ`OЕ] [`ЏЕ ] `Е ] ћ`Oѕ] [`Џѕ] avXst%`殄t%9`IҢt%9`It%y`Vt%`vJ!ЕfClЕfB+!̂ EWB] aXSt%`NѕFDWBxp] )X!t%`!*=]æOU ] ܿV?{xz(MWB0,X*55_3-] k^ };#:RB4i\] swJᯱ"=] t aazS8@ թ@'|<]{:^xKdmy˺N*LՕN;PF rejXUV9<_,9 O6ŬW~'fije~^#ejhh^{8?MZzjVBދ F-_%;NAQRRn剮W@?TX\вVUϼSun.z SiJ?RFxՋ`@?PPTZ̬Niԣlڍy=T2vY !*ûV)73AR쫚F˩Ԇg**qЖѮJHWoƭ=7N#e=/}O}}>^rT/92djVBv+ֻt10GJHp`*r+!UCܮ ѮW1\ S,{] ЂX#4jXՐA Sp|emQe:_J=X{S26:R/fz_l^ ռY>1VC*2_>>W4]J?[=χ?tp&֘JI Vlt}eQuuJqBKvcvnɈ0?Mqc4(%D QTQՠjάЮZ1OE%N;b4vTF WrBo{ѪںsFG*~LvnŃF$yz<=ÿ䨞yyGّ;nLwWʛw;LokcOݿxk6:JC*1.Ha hiPaqs@6l-о%ݞ(__/b4dp$+4W>j:q,(Q*;X; k_/\|%'9߿s|/oYW~gv/Vq)#g ׹ StxEGtE^ Urb&E(I:Y嫳ᒣ*)롒 jxK(0fEFk}jp||@B}m^³i UhR5{Z(׿eѺl`͚'bwo{+:}0EVU7k>A$̹IZ0'Q;Ij>B}qcZWPVf/3s=*zFXk#R5{Zl! ՠ͜7BY9UzCL55M\L. U,HQh/ImC5kjTXT8?PyEbc:3h%)xUP s#'F 5W ׌q!{#tecz*) +Mr9nccX'7Q\LS2(T5Ag/HخZI'7iNbh8MOfVm]Sҡ9%^dkKꊋ諕Yz}iE k No/91Hw2V=P>EY(f;>>^wR; :7B.W-;pz*e5l`q޺ ur.:g:=I/G|}t&8M 0FHp}-4-^4۔icv:!V5FX,ga#TQYmkF܅)ޖ= Es'Wv꫕Vy;=AvAtw K KO=n%.٦$%鑟O!]/쀰P?s8M8-Z~~%~Æ ի𪭠 G鑟Oso`~)[=5$򕿿x`«ɉAzB.'~5%U[ǻ{MF ߞ  u] ='4W_GEp|`cJue0. Z4/Y=*>*mTlR{lLPD7[!B gZ]җ:|TqcZs΂dzhm?$W5q?&6:ǻjxj~n\>=b~u -! #?Mn($\kCU u֝7uY7DAՇx[轓VFt1rU 茹IpzEWM?p $ Mo{﬩:cnJ;tqF s`κ!Z.WK=]v:c]. )IKfq:ZzYVEkp͛Tk94 9XYv[7M0j}^]}|kGDEGDFԺMZ9__J[1Q:mtI2M7V__e<_oU j&w$I5].}6uMZMo媨onB|:(TS'4N̒9 t+j2-:KF M SMg&xl8#7]~rZS2?0ߵXOaضZέEu~hÏYSfqesw~s~Cvn(մzNŵ[y{ݿ8Tϗaz)66hvH354Z7NkjˢX: `>+Wwoْ,gK)%1X3pH?"]~A(+3/Ԋ6;_JdEz( qh͆zwjcڽXLcKXUV^ [ sorTVQFy+0Gё tiWz:lÖ|==xDUPT~Vy].~L?Y||e4#$59]Wm! E)I:8TA> shc9 zٹ083Xi##5hY8 jt/x~diYv<\ۮmx_@ } 0-ez~VC2*l4<ԘN=Q^QgS߽a~V}QmV:Y}ںPKWe%G]]{̟ Z,_ Zz-W-v/ц-E7*//BC {ZjꓥֱX,],ëŵzÆl Q>ѡw?>~|X}Y VmAw/_dZӓ ?:HfytG˿95(ucc}2[;vޕԞUr5}Ru";{SU /pYھ: :p\ऺ&=]Nlunё-fN3\?<#*l7ŃZh˅jpc3۔TlQeuמ $u8@wW2ҮV/Z.yƏk` dY}}M*ZǑAJ 4ݒ:?3L: @GMch|#IZ*[,7<հan E^}sS!t=&ϩh1 ..UaX62p9V|Xk@2S*fѪu_!" bloG=PmgCO5sv||>!n(I+8}zS*$IR ~H**c|la]`VM={j`^`RK$Z7iprFfUdU +V\$'863ULBC|5jX)%1HASx-лIRfvS7pV/fXm+XhC"zA)!:cnfLTZuTp V7}q1:Se@on c]#1]K(MwN 5|n{2!ꦽKG=㇯ƹ1:Yf{$%[jO0p V/𧪮qݴF,=NO/$I>>^[VW`= uFG{fz0J#zMbz:a3:bK+3ô٭c k54Z gX~4z-zZ'@rj;;drWi"ͮP~Akm??/)(.СFCTP@O[x/V^QFy.|48|Y an^1\ag\>W|7]K\1G'ދYV*.&u&lqA/qپY!:C45Y;ٲcn*ZF;~1zܼ*C˧t̓Wpc _}Wvs ')7 L4^2Cˏ&8fD15y|KjT{0|dRT`rv=P[!4X`ό)qd#S -zq540 %9In( `rw^ӻeXv /XxcGӏ4@SlxE M{zl=pܤn08ڍyN-//c5 n*g/Jjaarb.<{xF X*^^1NH ixe 2Fb+[Lh3VCD}ck67uWPBֈ-p+>haxh ᯧ C8TyU4` Ϣ:0Tw0UaZ.^4P߻xVP\R+ w=񫩊 rbh% -V \>gM _3IRIi|to}c2ʵg&蕧gk. OooD >3&WeXѹ?8>zzںPKWf+HjdUx 1Z0'IOX}Fn^RRh~OviV2 ~KL7E Թgh"edVAJ֘''`s]\ǎQvWI':rq8TC kHFk-G>HOh"On|ujjZKSŃeS5kjK+IN'YVo{"C6so^^OO1OBA~lα͜N4'}w䈧X}LfVzj=؍XNxbԗteVy6O4 I|'NwX}텺U[\8VjJ ҍn2S,I55zNw%t!5~k[*[P"s]o/Qy, )ݚܿNgWCtp{|B*^u|4zx}54Zg@>ᘢZ:˩t?[ UX}ރ5Z:ۭk_OziylQ[c@`Z:&:]{BϜ}1y}keGK·_vt@_GǕl%.vSUKWe;Ve ܭ,&BV25nV!Wͭe+6;#E>>>ZrTvcN}1%u z=jֶZ/G ؆oڼHќ r%9nAuz]zúT0E__ߤTfn[VU|yT}oۊWmUd=X)OݱJ_g T`Cjd0>ժ|xXKe3("+*ђz[[.GE'/?ቧҘJaJ R\L}&T[ۨzU++RKsoe{5vT&EkEE+Zb`oxXmmv+t1$IopH,L IVeףĕ18ɪ']kFhwںF=.} 0#f! qcNu, ٥#n`ЉiQ꒡6A־R?ͷy.6ЗЅNlUm3OOsrnS>*S@E , ЄhJVXeQMMkT^٠J˩ґrmU*Ou`j=7,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,L FS#``jXbXt͝gKӫtQf\pNw^{tlP0bhz䟋kgjXOC>:0T;O;Eq 33 +O.+,3kj~)+7-o=Mkrtu$I߿mTv]05ewΕ$55YuMUXTzC?4뛴]^6]HؤFK13'f<f,WVƱ 5VcGE]ø J L˺v9߬*hVJkӴtǍim 0+wmkzl^^FC.^4ͥz>':*@|oy=Z% ˴i{K13xZ,;;Go%I;vimbq߃|4(%XmWC9^~Ж)OwevK,p,G"UV5?tqbϐČe߷m[Mk5 9XA*,neeFFb&VXT@Mx3f%*4W]w5G6pI@_B ,IOt94\~^ojqeuOY&D}wZ;5/Y1^wWv(md.ҽVCJ\$W*&*u9ws 4ܫhW@]| yzU[ۨ]Ji1vh]8U{{gԝ7U^AyY ҂ىJ RCcҏ/jlmѲ{[E2_vUuexjrN)??/=Vdu kxI立Nl]0E>Nk7?.b:\_5]?ȹ-J綺lV#ubʄ=~xѪ$[*xu}_#(2_:]Mick{Ǯ:1 9X<=G!*,QCUq1lqklysVV?Rz9?>>KCV5gЈ!aoZ2GKm׍"@z4crOcnӲنiOw]#YǗ+ S5crb춰4 DTuMV02rN}OF^.&v3׵d%_V4rX|TUкmES'Ĵj!Bhզmqqq0Rgg;ܻqqѲ9b0 Q~aj뚔|w&Z8GuTX\ks鯱"U[ۨ%Iunv.0UtpD /Wd鹿RUU,sӛjBP:U!73ޚtZ$iI3=JN Җz٭**iV9nLgNԱJWԝJ;&Kk7wڮ:y{[t΂&6}_zϖ RMM,³Ïm }iwVJbVsީ:Y,Ϳ䆴/+/PyE-᪑'Z h94tp2*uRIYz>$\&ƶq\Nۮ-ժ'^خ/Wfjm>&7}.0Uw8F+媡ɡmsvQQY5 :z6\xW+`@+?Fm~Y[&vH;s]KƏ{IY*ȡ?&Jk7SZvָ1]w+ReKrqq0Rgڞ#;:ww>׎$kݦ<=Nbɺ4vTwP:7zO/COmnmURV94\_{ÖP,6:@;Y뮛_sjt3=D[FL'넖Sm0mjhh҆"Npr\Bk}̚FzZܼn53{ZƎԡr[[ X^#?_/끙ZkؼY^61V^ʩ_ WQI~/o}ws QD_c uwE)F[)Ţsp oŵs[[g̴Z?Ю}akAQ~VWԷWܧҲ:yyY4fsQ?{d}pIm|]t4gGBC|ۿkɊ֖~V^5*,O#{}}z/Jj~:k^$/Ws#G&Ez;fC4%{KKc[hXͪPyEfNr>ǧ5/Ԗkw28[tѹ̽W}lE5zw[?YV}$; H׹;>#"$IK]k5z]oa2w;u`EWKO+wqwv@3Zf;*B-&'5K|AQekȠPE2ՎvdVθ Κ"lZ*[ vZ4|{eXȮZ#si6Q_0yKgZb\eV׫ݬa&o`lMuq}͚|n,:qL}䨎T:\qDmlhm}a;{eV*xdf5P_uf"=N뿶ōև=w]q>yG4w19n}<\#G1#"ekޯ̴YƙZrH1ָ1Q ժuǵnS"4Ï$Ot2jUǵ;Hk{sq>QҲ:~tDA)!6L-u` o%Zt:/T]3ݩw.^z-\`+х饪ih`r2UhXY'j2(TS'eZ=3:phy#u#;\.2/ 9ǫkoFEzh扇ݶ=Xbw[Vt(\I AJq IA;-:Jkבr=PoӕZ\:t/Lmqw9>>)V1@+2&L8V:wݹ?_/YK2u5tͷ'[6]m]38F>zѬ 㝃vs準;{^C),OeuM|{\1:k^fMӮ} 0mg+28[ٝ{+Pw%Veu Sb|`1:3vc*(ڽXhWbh]3:'\Y/=Ur@ժѪK4i\ƎTcUI Aڟ^:v$ߒ+/`jS4O?UJ_[:ؗ˕JLJ5nLBC|uhykd NYXVPgN@oIRUue<+@-M{WCqmt)Z{i[JdZuك\r.s||>[vL?jMiaȠPTyEǻ](MCt9Gms準;MMVmV5alVլ)*.՞%?ꭺ&͚sƎE6w8Sĵl]{.Wם+=q\[4XoOg꯱Ѫ=^9w.<{FF*mdb jO2d=q!]3=s•Sen{Tf}ExZsm4i\FE߯SMH%5O_\[;YK?1##`3TV5(,ԯ_B\UU]ݠ0?_\}9kD{FJJtu( $Koo8w]:X3OOg_}Y:eh͆ڱX\3J?n.iu-97lׂى86ZGU()!H~)i͚ƿrVk{qt厺s=k3 VqtzzJ Ԥq1=5N3h@R{ew'?CzpUd%S\]%FK+)!4y ?44Zy{Bpn$i׾}!;y wVYyݒ/E:}ffOmjvekn5dP[ʔ<@,FQN췥#y_mͩBC|u=]q9,Vd|u%gq_ vwŝ(F~n̓{b-%{KkEk։oOzC$ixOjmN=u8[G:™{;UО:Rs}F7z42;_|l|֧ͫ_e7᧛g9 =Jw*s WSQ%6Ф`6:R%uv[V?k'f:-}-vE (Ŵ֨,I*)!H{~Xubg TP/iOր`7{ť]/m^$*gW|\9#!XRϙ%)vԥK;Ρtv.ԷHN Rdm1+vin~2^A>ڶHG*\cʪ1ܞvhvv9s]KZ1è#$珑Qeuz٭Z`@͝7gk{ǽM WZV{5fD|-n>(qp1zt3.wg\uuq =k̘^5B'G P32^՗ Ӹ1Qx[ ܢawz>#Af&hVB}[?[.><$?~|XӢ4sJlrUV^ Ѫg^ީ&:舻ug 宼v5wlhN5iF`3HfxaTfPCu4R)IJ ҡz=/p&;)2YUӕWABꫭ; gl ՋѬ yv_cjY-; _|oSMm"u,RϼSOeK/\}Ҳ: *oo/X~WθsA?o j筲:}Qt1:6;1+*Z[V~,ӡ/Y.Rh)杹%}Ūjz H[7?li!gqp1zt{3T{h㊍TlLrW=~mw?_CU?QOq,TpS]]֭i]u`ug,宺wv,/>a7}wP=.}ytּdwx) wtq܂XYFV|c} я}Jʺn Г)// bQqI^{k`khhRuMv)֋Q^Nk7?.b:\_5]o<=Y񁪭mԮ}%z}w;#A7HÇ[Z9_o jow3Z>g`p]vA&RD{:-|"=.~жE߶.^0X+6&@uuM'm엣W_6Tg%*6Hۊ еWд U~aTmmc+6z4z]9쫋&)_U6]z+)!:߶H?}`]y6sJ~{ߔxn1rLGta:mttX>\.#Ńuc:FQm].+U4vx0z틟@Y2(TE%iTT?sF -|!3s54Xjxj֝7j jA)!#^rj0MIٹU)q19VOC-=n[/L$ϯV~aRsx`22+*+-3up1XH/Ub|fLIzmZ:ۦlz `bp=~EFQDz+b5mb^|mضRpLtHwPM\.3mhs̑k1)!H{`hUƱ h|ZƧEix=V=PFF/IJ}<+,ʵQm-1g뻻LMBRerWugJHjxIoT]ui?#܅C)3R7l*$͟C5mbmsh[)Z6WyJd4 i+/PyE-᪑!`/=QSҖ7lɷi`X]5x@\KUU X;nLOo uqN=:9յm? mQǞݪ{ȸ1QzI?;Qr*7۔'Y<ݶLO$}p/~Fc`9Q?{d}û$}M6nk8vT*,oښj4CKjemUyEskF^}sJeј˕viq;*R2?nWUU2z܅)!Iڗ^\ k«T_ߤ[LjiFL/3גY݀z卽kTXF )_MM|pVUn^/t%Hf~qjN$Z>gK3eXtliHC%\5x苟D ,dV{xjUPqTaQ)G2+62RvѪU Sxre1V懃;@g'*m܂cw !B=Kwltw9Swu8IcU%u TXmؐ[ZƶfM$-:nяTcC} #Qw~ݘm4>-J~jv/ƭڴ@8)V1@+2u×<@r{D{8Au~UU **St; SߎpG=U@urYcP%%)u`u=[*>6P:xzu]Ǵ+oG$`'ǧAk7i͞ϖ59}pc{?x37"۴t]9UJV-rیh^;X=Pi##62R\1\E5z':e)J(]FLH=ӹgjv-֦m*-jEgRPK7Ā5 B].$*:_Al};'U@PGaqsg->kJTm]TYWq|2Kf& l1EijfX4zg$@oYuoٸzzJ Ԥq1=5N3h@R{eWr#sJԹgNw?^2pNE)<=-BZəҪ;hsQ=U*ikS2(%D_?FёfRYWzRU|gϺMq1 X,Z:0~F |BZgrٹ㓌:JN /yL&=tl\=u f|A8*+lEKΩBC|unw7rGك}(1oZ8SFGg+W_ǚC!:>-hWZw҃wOVGKvl_?Ϻc'eQ&X+__/͜3}C_p',HKgJ$]e On̓$0E1Qv5<ݿg6ˮۘ'y_nnsZZ;ɉA7\YbX]~a^L]xm՝=gKE%u:|ggu5ѵjqI&o72(Tyz.ϳ1u=n=q"?otY9:{A&*Cc?Hw"$i544)4W\1u0ްP?qc&^AQ!a67.Tn^/'+1ҡ!qzY:/_#Ia7&uoaXw2]1Z>g`ωgX,55N>:C~'Zhc*(QJbqLstwj/:n=$WOjj3&$YFk8S'Ǵu5ѵ,ePh{t5,\1^UQYeiAjjgr+=}LqOrW+UXT0? ۢ  U 3G*RAQNh}%?Hwb ,HjGGtCtetyUQՠHy{[sݗk7׍Wz3hե/USU55S5rh<>Z!ժ!ҁCZ6u{ƧEi8= UNA UcUϼӡ)h?Y5(%DO?'9Ayn|`L)q+VD~LC٬$ժest}myg$;`+ܫZ-^4@IA *><#tm9Y'^خ_>LQ**ir]j]~aLWJRthfho Rtd j|!8llJuWr|F렪A?obLOPtKkfCxn;ъcܘ( ˾g~x*]uPMBUQ٠ks*ӑr]wpM`_W+Ult2Z~'ZI;Rh=:3*u]tEC4wF Uuu,GK2|M<9iYˀA>;*|}[+=yLuOrĖ/uW(EEhV>.KOβYT)SFt}Feş02~_(=&>1jg@0~kpOґ̊W<.`<\<ˁgqGB]`jX05,L FS#``jX05,L FS#``jX05,L FS#``jX05,;v,0z; #5`M`&XX ,k 5`M`&XX ,k 5`M`&XX ,k 5`M`&XXNIENDB`mkdocs-material-9.6.4/docs/assets/screenshots/tags-index.png000066400000000000000000002402431475306445600241740ustar00rootroot00000000000000PNG  IHDR XlXPLTEGpLGGG333?R/>>GZz襥dtﳳhxeeeK]Rk^o‡~EW\\\BBBuRRR攟טaaa򂂂ꦯފ@Shhh뛦ڐ֑Ѡ[k@SkzΘمXh{{{lllįRcwwwaqN_Ufooom}᎚rrrjjj9HT_`l{FT͂lv4BᚫƖác{}gtRNS  $/! "#()'%+&,-.0*2=14@365789CQ\ad>E:;BGFHIJKNLMPOXWRSUTV_[YZ^]b`c]pHT9 IDATxMrannCIH`sI[0`*{!lʒu=X*o}_h Hza!,@X a!,@X @X W,a!,BX a!,BLO#2 aBXa!,>,|kCX  a!,bI˰!,BX Ǎ %5<+T_xBBX ,4`1L{ea")?XfZca!,BX [}BRϨ-#TEeRLxFe^< a1~V4EpqEa|âwV6`IQZ--&q?xe1Ϭj`vRq1Ǵ ,?`^yQ3%,bkP(* QsŬC 1HWEiPr`YȴE|"Y@UQCyaYo ܣ#_Ь( 3uguE*j 萒Őe1yET"+jȵE4-R6iE4*JbS;Jiꢨ-2ipX 7E]N&hd"kZWE")SoHE-iQWWd(+z&/gH-i1|Y7xݯ+U%Weۢ_YbyE*"QO7rh"dfWV"I2/mqHZ6+ʲ"٢,X1C#^(LeVX"4TQQ$lТ,fs*+UkSb⍘HEQZ6]ϊ@U$B!~$"Ѵ,U;f~UĚb8`X]ۢ=mje~T$B$v$b?.JbXn^Ɋ"7NhD">(L,zWwnVģ""vc$EUYYL%]ۮ(ʊ@Tb3"um+}ʢ(銊دhRZh^Dۢ&-*b`[P*"#4yэݹE(-:(cEqW+㊝*M #ݺ-iZ,ZLYtEx\͊DE()ZAQe"E"-ʇ-E=(̊H&ŁG 2ui()e`X$$ثXRZKX^D"8)-&DWDb*vg{MPb-CbԶTdm;[Ê`mP`t"0-"g[gu]<|&3͇iqpY{P]7ao7E,bZ ]W{-+ &ÔE;a슽kP׎^\Ŕa`Q7,;y󊽬8px@nfq԰x5XWX@Ukaѷ+†y,& ]48;;F((uaQ4(3gʝՔE¢+"נ~<r]:,&®Wjb -eqЂE޼b-,6,E6ԟ%ejwڮ8Pnӳ,jaQ` &vϚEka슝qfsh@DzZ=pS@*NY,f":x,3ʲ=,V ݋PyůH׻*(Yl]zeQE+Ow{>}9hU,z\:,^ ,NCa+ap*Ӣi"aQ[󊫫ѿ绀*owq.MS$N8kBBȊ?*=68AiP-ETdzX!nd%*Ug<1_4F}h!,'2S6X(Pe>k8ntS)f(ۯ8X\+mر9 s@ئJj" |ł#X<5G<|X,`1!5C O)XdBN`qdG<xj,JUF(^PE?O?KR͢gl B*XPz+ P&X4,PJɢ`eWt> ճd;YhP}-@(YBes۝`Q C'"MjJ ^ -WL'bn-%b8YK%佲`1r[Fl"W,YCXjf(a3[da#X',F(W~bwMInO?m'YXY"`jVo2 {81 \s@•,P}޲dTmB;,>G>v4fo,jv¯`!䊸^ Mgv5k}9}6_3.Yd5 !Y,%X$ F(^4l.>Ry9 \f*KPśo.aa.XȍPSbb(X|x"\=y3bb *Yx߲(0^Zp5Bbs;9~zt9 `aOfE ^T6Bɹ^ z6CME[a sm`!4Bi` d5C% K  [B:a\E+fy5dzᘅda;eQYstBT P&X°*6,Ч,i)*X-X(P-^ _,f(1 d1"%JŸ|R,f[ Lh cΒi|{`Q`alj-j[f%`@`ahW,cˆkַ`!KKJ(WCCU,PE3k"XE t,P=Xhf i XeE,J, ƷnX0wBW PVx5+f(ق^2b! sBՊ + LXK-i3d1,!ň1Xd8XH|r;nZͭPmd^(eb'`!5B,r e/Y{l g,ĝPiF`,Pv'W\]Kt1TVH< Sb i´jR6OXčP \,\SB(ts9W'T~"-X҂(,ҒE++Yd,\PdbpoX\ۈ0eaea?ef mP>XtŬ\`QTV&bWqENCK,: dr{` d )X:ޑXVV XeEVhJ)wz ህ8R̫l(YX6ΚBP E,PYub.o״) q㬫J b"` *Xtr*o,% ^Ÿi'Ԅo"n"XE W0텲.XQ yt[X%XeŪ2e!o;NYJ%PJ^vB-Go[^B-PZ>b1Z*-XG P.XHSKB 5Y Eot{%/XjŊ<Ї,IGk#mmt{u` ;m^|Ȣ&o,2XXgu,XP OȦ,^#J'T:JTzkj`*z=,*X#ueat; #Sv ߎB7!qX#q`8,!)F2dq,'X8XvBeW`E,@j p Y\oo, P`,Z;y5 ,q/Ժj9 KKy m q'@(,P,a jG,m6@(,S2d ,&m˲Ya'U^  yi/y0=L|,#ڲ٤` X`qoF}Yguޡ {3Xd{ąECY8g b&Xn#d'<@OGw iE'O>/[W<BdBiCE,)X, ,bDox[6XGw, }5qȢB R El5^ g7X|EyQ/ՃͿ4`U,Jv5_8kpрE,I<^,d@3/7~7`utwh?Xle g! izZIٚ|"/`a/)PN(`a O0`q/,G?,>&X`!Pz۶퐃R,XhfW#vνG~c F&[<%No?x؎oɿ_>jOS/QMv;KÛOo=@_syQ$0L1MSгL74/šW . 0ka+>r(H,T 7$.41QsY3$UCW#B2X}HVs9Fޔ)~l]MO1 ahñQ/b3!UBo0h>j B+V)لH3Is4b|_)5rhJU]i;3J5Ūt8XlJ8kfiX|E4Xǣ``A[rrP\\\\,>!Xlts9Hx 0M/Л5i|n]dZ58$䓚 *(:p@R'84}!5xOPg"+6Ȝgf b%&BZ ̞tޡ5ۂsj y`z`/cA6 `98XPfHKe\\\\#Xܾ d`魎ڮA٬p(f2DI]LU+m0 e&RZ!u5AftHm&pc};Xhj ک9Ù:It, LcUi{ P^] r ,\ gIf۞B ,:,B}KbCX|1C j*vdah` 7 ᗡm65ׅ\/,o XSE` ^f̹0<-S űBLB0': J(2qXF,2Jg}-Xleۀ!`'zi`D``J /GcdffUEX3U!..oDp 9X`8Y{!Hq;YcCBY۲2x{,hubbTgmP"U֨,r O4Pj|LHkM5jP$`!!(4x)\ .(΁ja`ZqE6KX\Ar, gmD;-S'-/>d ݶ5.J{,vk6؁^zf<UN9mWŽM (IH`b`n|* y"onlg܇m) Y2AXYH"..u`AAMB䧡,1-k[E 3jX̹3 B [{,Pc)mʹx, -27]֋":2C# /áh. <`QdVv,9Ԯ‚Ŗ`d⻐|O,X|,SbBwE[>ӷcArGE䤾t~mu ,:P#..HxM<7Q[FpgW˗vfکl`#H{l/`C<POqjWǙB"o=9Oey1WKZ=`h.^(SE7.8XlJ`lX|o""",`v9X0,uWGX,7%.G7k]-?!`!_\\g읝P\\\`>MoVb.8 us˗or\E6!lKbvLYnmX ",.ϙa~hE>ipV.t.lwXWa(Xdlt`~ ,pY|`M8"(f]Ih /,Ciyv;(qw3a?"6=AcK[ 'l3EMl#IBvV05b(B#ƭp,~f XD$nB#WC{Ů=g G$*X]lJR+76Jta3,нRN2nujk ,+%MXegpqX`[BF>S֯.`-=|S/nzƂO-{ ~]Et  ')b޶%1_ kd`m=JJWL%cQ5iwyyOʼnaѽ0}bg7)bX睪uq&f`E.`AX><:+ӊ2vҬ6DcеE6 k.{X37K:2N\{O< lN+l{}8K}Ǫғq4Wp>%I"9XB/ e|+yGM?ji`?Y`ia6(|Mq +Di萣>t=t?wQO#DCbk hC'JBdrtVJ`1&X4//{ V\ \tn%4:v; K=Ml3[?XX,|,IѲΖ͞x= -Cg?:s 6*M7cq?5.`E~,W X.~o 3*bL)yF O-1Jf=^ ~fq =+0X_#)lUo3Xw,ts1w(^s3J]<17bot X$K-kA13EF\fsXT?IdUW13``kVN v,i%jC 8KSOoc6C7"w=ǰchܧ`* ;Wd[5ϓw,b4X6m M+`O5cQo.lFp_O `Fa5I FGELv]`Ԑe9If@bq ,,2#fJ?m2Y6ēO ˖\D.؋!xr 0^p`n>+X }|.oV40w ۏ,f wEvE\9 NPwG0r mm3( ,H*`2,k?Gbo,jWh0`QpDi4V~Eh 1C` .H`auE_h35]- ӗ B+X+n0$2YHNbLdf~Ϭ,=X| ]=';͌EYjSR6zQTv#= qQ ;G1 V+cgX"jTC4gD QJ5 bFd'j&E}%l3Djے2+DT7Qv[1`𕂸sN޶5{ bXlU~9a3~z_7"g,3X),IMG1 !V TCmuq&aRQ  R<,Wln郅66Xx;,PX`P+O 1M[\rX }2Xl})aǂzKTۍeߨ~4d~Q*Q򌂀x`D]],!MNmf h,X0¶ʼn+^ޙ… F-y` 7oو3b)e,H{- c)"۽U` (R" .0`EBɶrHER׳?*5kA@@ ``a" r׊J{,Bbn(eH8`E>~j9ʽW/_ZYGjd!uS7O,^ YwAq%eD6X%?{GPQK"H[ :svi`a>) \m x6؎)E.wr: 94PbY,ߕ}j-[ۉTQgo+8]-}ƀE.Mʉ GGe X(g ,2oXvvvH; -"NB5^[ȢFȶM4nkEwͅB)^ChMMJxqA+PVZ۲6dJL6B &qLRo8nHM6wי}VqQR[g`yrΜ4-9 ,)N^<=}, z^i?[i4,}/O~5aB+ 'o[ DYVO,x9`QJe?xpWd(bW)0šT}^_b֐nrnXĶ_|Er27bQ ey9(mgOoa.q/0v'=4,Z`sxV[V]i|X)5{{-,ԸI ۟ϋbSW^v}-OOœ?&ۿ ;(Tfxe_x$2>R-Wkmmu4jaa6nT )"C.F8yܰ6{[#j7 !iQâc Z8CY ?H7f_XX *5+^K%\}pGVCj|tq?iʁ^]Xd<+OOBB; VOv6yo9XYo+",a1i U0Qf%,ܲ8~b}a6eQu抂,5,VeWK튈}4vX]wDyhJ}w e',~\\\J]+b" Uy̟TX۰blW۱!_{h]/a*W6 cP_(JjG|tN%'RѮXRY'u uhC;Cwd٢ γj՝GUF5@Y36,Un$,[o/[oaa "F8i߹>oK嬮FW|#[޹n,f6ky,WXrX dX -6!#!,PdUec󧓁;=q>WX@,X@,X@, =?_᧟bcB+-WDbӯ?ł{߅W@,8U,Y."2BϿ}OX2)jqkbbXXXXX@,X@,X@,X@,X@, @, @, @, \GeV+<\>岙lhZseK{)F=c٣,33kGcKC7S%?l/ ) ?Z4Lq8bY6YEp|=&6e o",kq3ϳ01k/LG᝗y6ʵgi5j-t7T>E,<, r'SzUހ&7š~_ bb1e(Qܽr8a;eu=rR~MƢ1ߗe$J{u IDATR粸]&d;|$iF|Jui]2,?nA'em$ؔuEū\{b*c0QOF(+os\Ҹ>/./ 9^ʧŊ@򮺕J0k*c%N"}Ţ␿Zy,g̤XдNj6ٶߜ &м]9{v]جԝͺ%vh3-1ud#%ܷ{ijcg?JĢŘmk\:kVDJCiZvTknGvq+{v Cc%;!ǂGL<;)?0hakrpbA5 yIN[fbS^iÐn.@vnkUłGI!ףvd`UDFmR2 "++1<æGߜ P??C|- )H<0E$YxnPtnȅ=/c昿]gOsZw'b#hw"1dĢ.+Emc1Tݳ;-XKw=\譒W|whh]paOɯO'o5A\cꁈ q /\W{#;E!&1 =v+(NEK4W:Ov$nӓbq$HժX@,H,2DQ"4-@\7ݠ/cXd$@?"f7_,P䊬S{UkyX%W6X^>^@3sLf~BF qJ/殶b=3*7cMѝ۴p}H&ZX ^:W=\,KscFQo;O 9^rc)įْ9NB"Jt|- %Hšƚ)&C-#՚x~ZD,sONmmw"kR}=Mg,Ԙ ljELcvu=9M^XՍ'|\DrNycNb>G~_n1!i3)N"jeX@,^,vr,ƛ";2D,Xyp#qR ']^LJ,lX Fa](ˋ\X㸎BxBTFLŽ4xq=Gl2lk-2T>Sb;dy#J:* SKo))?.i0y6%NB{DZ+X@,[,֛'"<$c ZTXY2ȈfNyC9_ʒXaE H,"Ixu 3xQb!D`7OuĢ-p7v 2zF,u]J,-N_ bb"gq1w?/mdyǁ=< QKDm%ĖM[CΛU&-$fDuf{_02.+X $>VVaQ+^$O 5 79nb N0݅Wx xq~>?KOߟ xmlK/b,?ya\\aq0=`RŪ7gkBX8N@>u*ԨrYXݳߏEt!|Bs$O_c1q 'k|t$߫ӏ_X\1Q5+~9~Х5bիs}"4=]cq4De* ,hO=ɇhb6+۩ Ο͏a_-a\X| &y2,fN#ӭUUW.-REje9,Ξ^lهb5ʰ͠8&_jx E&|qԧAUoQMy95a!,6~ˇ~=t_CymXE=(~W|ZՍ称PL]u\EyFS|6қO?Eam+rb;qϜ:1|_]8?)y #O[#,in'ߜ8UX\tfhVKO`XUg=]IQ8)fxr 7E+y6饭8[^Z?%51nde#v^U%bQ/0x<,$W㭅1ݯ)|qywgm~1,͌^onR|>f_~ .kk=:a-|Raӳd0y(Ϊulώl< 9Y/ c35\Ӱih+F/Ebܿ Eҋkj'P.kmwq7⣫d4|i<wE 4iWE2H[i_cΝ7H[)]LCn>h8Mԇws7Vc|<ۭ"عmh7^/Wbݾ c~2YzYg8S4.o5Ba׭|_ǙZb,]Wa/e-g϶pHZyaq׋/{z=cgxxX8ױ+9,8iNz^:,Q\Z .kাV([*o VEhepF:6V$+ElۓY ^2fj]YqRq`y[8x>VdzE;;z@IzO"{?gh"iűcOdX$ݯ隁fNե#D?f@X?at5Z882Kr՞\^o?νig/L.W>sڛX{8Y~w8w1;n7პL_ngXzѧNqO>Օŷ@X V|}.4Oy{: {?G @X ?jOWBXe Ga ,>;}X[sBX , aBXBX , a aBX , , aBX , aBXBX , a aBX , , aiBX , a aBX , , aBX , aBXBX , a aBX , , aBX , aBXBX , a aBX ,?Kiw;J$ $=ȪxЃD)lٓ yf&qY춾~>5I3̏a!,@X a!,@X @X a!,a!,@X a!,@X a!,@X @X a!,a!,@X a!,@X a!,@X @X a!,BX , a!,@X a!, aBX ,a!,@X  , aBXa!,@X BX , aBX x`W]?7j?=x_ 'l3 Jw+gW>HO_6ҡѯ-*8NwwZ)<ƸWSa>gG+P3 |KoekM+Yc2maʲ;m~~keq^b:LϽm_񸌯Ϳ8V5ϾBeVxa[<~"ٍ~m_vU,.pcaqh¢&,қqiI?ܧ锗,[SGϏEMX adtҡ5ZMz8||vɍwQ)߫L~br{OӰ&hXLeRX\LKo.Y-(ŗ|؁Q ţ4K'X[ f|! nmtUYYvz2ؤԬ+Qxv&X1'V+,ƞXzXS_KclѹlrX뗍I?̛i),?\QP'};[c֌_/3yX MMȖF6G W{;P;Fav~n F~a3}~ p }q|qmg!ua8@Vkn;ܞ磷0|]*4xja1iޜ: [7ҹ>&}N-]$:l0Ֆxyv|0%ƌ?6VXpեpjTûۼNpzה;b}6lN*T),¡%ᰪsc,,nZ<;; W>ԍ|l.WFjx QթbIńy3|*/$Lb.vFD_퓷7򠈦-V^'*TSa"~vkƿ6#?`Ti5oUxazhL=Vx6.|:aWe]Үau ]JX<0on QXT 0?!,BdLϭfѶA.q̍|!1/Gfa!,⫅RX4VOR|;,^Uj<,Ͱ2igr_{aOl#pAoΦ5 ;4Řf  b\\A#4/ WA8xTuݚI2,h[VBRO:VM?(R]y(޼b5o 5uEO,da?(IbG4`HF=S]\E+MƢT/RZQ9Pb7,A,$18 Q Cb] bh* Cb1Y˧mծ>{VbXL*]̮:xXlX7otx#s ʳ^I(a i[ԶoŢ:|Y,;K@,QnD,>|A,C"ba"wic ydo )3 L,ROu{l|ӂhMXVhqQ1[؋" NشnNꉅl8sٟX,bq?{8~b1= MϺ(zUubHȵ'Gu sX=h3y{X4^ߏ"B,c-GON#R5}}hxahzxd%;^1^K:kvcb1S˅Ba^;.byeUA,-,{x5Oe.y}O=Lvy襠fR"-9XvC[zdU&+"3х`|!7 N,֭־λ١$m˻s~{b!ue3lA8q1O|ޠXe\,E"Rav"VZVpTJ8ޚy^I,rT`r&\Q? YLJ~KS,^TT'o~J4.%;=-SXT7P ɘC,֬ZE? Jxg俹U:vXE.b~·ܾU 5El_n&q})I;I(:X [FyCe͟"uo`{b><U=L, b˙QFC15'8tz/w(UXww].M\%~DBb1q!V]vlۋ-C, e-܋o5tsp85sBhym}+)pbX+b1VfnKIB|55"龮EܕJ :bX sNj/Y,S1G$1;ޤa|f@,|Fc Ţj{Y,Tz X FR^ɉ ƶD/"R־3boٚ}5H~S{? vP mHJYb67|N̫% X ;*W/=xNL,,˩{;A@,vO,{;/EºxZ_6bXX܌ [(ŢpIǢHbCb1pl02ELޠ#%լxv@, ]xE;rDv5|X;rohG>EN$zT1@, {2VMyXJ ʘ Nd$b㮧tb IDAT ^,$1xX/ :bXX&°}C u۞%_>F :bXXb)q2JJ,kcO{@,nҰ 诫$.ᾙ #MD&|(K:K>X "Va5ͺljzU/:OKIT[F9p,jVm{+ `wJlҽ$~aV&j*z@^zM@,vH,,ku`\9؝رkSo'"`~eE =F$^}q\5SrWeQW00 bX/a@, R?a@, x5ˇ蕔T*22g~^Y(4d.Zn[@Xb7R(o9O{3^ǹwx>pMR-b>6m :y.Z3~V!&GQ)@RO_=G> caȞG;a[Tߙ:yےsz̟b}l"n}aD~c5a{"  ,p]E. J97%el2=-qvpӰ<]#ApEq*G+_GRвWjRzuG^N-\UV5T_!OPJ6CVE;ZRdwUz%P^fS0Sv;(PCzJVZJLg,HrIX$kVuJr| ◅E]a2onZԮ{,jiP\¢RDW^z3H7}U7$G"2u>y"VnLR嗜 /*(=3[T6*AX(,\{?870kkT*CJk8P*(s]WO ҆ųYܶ1а/\8<qZεytWw{T˄.ީ `@X ,>أ&,d\ 3 o҄옰҆'KmIy),;ei/2=)ܱ{R>RV'#x̞aAX|fX4#lX}emXBrxV\iBذk%!>%[Ba!DzCOl2da!Ddy{, 1 géؿ ,O G_ Oc$,"^-~t򰨋BmA]aCoL+f"z͆ Qc ,>#,% "| s$,|1šS:G}!,xGX/M'raѲ(U ,fq8_0gt^sa |]Sذ I7ixԔ9 s>qbt&3wM̴LX8"=Eь`aAX|FXl*;0;rm WӦ+zX w7g!7òp =aۻpOEOl6nP 2˙9`!%'s ‚p*J!֛8&)$wn,D~1,}XydaNv4IzQ OJQ  N+ذpn#ʝlXmaAX|NX8Qrq{7#*n ] gdVLX8ξ>#,aχs2lH!wv2dod4,|'ɇ ?We\2EaAX||bzeynNKڥZff1[*-\޳}~JDϼ=_|baAXa@X@XaAXaa@XaAXaAXa@XaAXaAXa@X@XaAXw~3mSz-DB=[KZ؃Dd[* "lSէtwA̘%s@, @,         bb}tu}f159 V\zD*.{ɲ?u]ϣEߘb+.Iם'b;9[$XģIFsޥdQMlS/Qa9.'G7[&!9 .,}"%t2yb`S ,"cdbL_woÉgnaSr0iģd8cLrh:6y.tҲlgؿ'3{ǎ̎s.;Ӓ;Ebq>[J{iFE,a%+gг?f88w8 /Uz~"Y3g";r,6a,ޓmV5:'OfR9Q4YR_\ĂWKJ1G*'i4Xp5 4: J7o|Y,h5=cѽƅ|K]łͩKn0ZdP`Ș(5ƹO< XɢW*4J~nSc^ʿTe&"`RX X)[H]盇@(8GD4E58(7yYX, Yˎ=%3Q,̕aMʶ/,ǡE= ;= dY̬:曚ljt4/62*X׳Ds,dKվe)2x?-bؑxOEC:L=]^ݨkba%Lo\| b hmYJɞ%(BD4`Ģ;P:aM!,IXF̪2.sD#X@,~Xm_|wĥjX WTWT]ٰţhtѭૻzB)ŢR2^E.bQ=%z/ 7jK[MtOXM"S 2K{=KR,a BlD|?@, >!!/D!sNsa[EJ)!$Ls~ IU8 P>+>zD =\"8qEX-4`#K"2˸XTYM90( ɧ/ X t2}P%MD,b&gACGuH}O,]Z _p R\eֿ6jJi,CaxQ^(a9)䐥*d|`bBX.tObbd 쁇K6ФX$̉:YCt_`E@, ?eic)Ÿ͚AOcēə Vr߾+F n ;uMԒ#@u,Y,~  ",[;KKbVqTe ٠qGʚ&"DI+JU Xo=D"`!?Վ܅s'0,곦):V#,k/37M̱`%3Z6\ܡ|7?ہ<7ce'H,7SքbzA>Z×Ц|zU,!X`kn1B'A,bkɦS J1FAïBo+V$qw5>͘ҰMpAEMH$\bK3dV&_ǿ➞S/Y Pi]4w}Zޔ!@ X|iO%tY;M)~##FEs+2VgM+juu|9N>u_Ru Uzg X,`,`, `A `A@ X @ X  X, X,,`,``Akz!uH-~>ْDd> 6X[  mDV"+"san!w}?E)8R\! P ,Ǽ2Jͫ7WbvwIXW7XTDޒ`i Y ?Տ^5- X,qQ[;"'/Lƭl,J sQ?Ł_gN)z^;,[Yd@` ކD>:X_ wYQr`q'hw ܟ[kK }Wϒ``,? _u%j"wFx`7K ["`,,@ XET_(X|.,ẩ9B{aɗ t?,|HMJ o8ɾpPν&XE7Ys߀v Ϗ"*&7;lHZf↹;Ax9 o/: C[/" gǒ7QtTޢs]mvز|?oÍѼ0.a3>?'[a\} v$3B)[Ӹ0E[iz~p͐ʵ'Rۇ? )/yZPx/N)s]эRvy1NJ|_Uj;9XEGkN 8]o,7 gYzStJ?H4n|E3K5h8쟻Uzmw2Xԯ QckfSj7~X}XZ*jKf{3[MO3lݞn^;*Z_+`"ٻMfW\W$Z(jd,x7,#X<÷vu'7dT&MM_7,vCf'lv*{Q`S~;qЋENӾóGJJi?sԕƖG3ϘVk{bbљYM>mUd"K*Xv&n7( '~&3XD3ygN Q.ajЪo(,/XLa8,D}xקť/awVp Yܮ};v,xqVbT>7E6ը{j>.Os[Rة]q0 gէzQQQSL}~S2;`Qjӕ^uAGbrY[8!v~KT(HоhGB<ؾiEsfh n76N tG炅KIoU'LV}lVO7գFIVӛyV;L5Hz}H^e7Gx׈ h^76'M 7D ӻ<_ZJI[wXU)e85Z_kG&z{S.N=Duhxovkǟǻ)`AeHL {R0h:X܊c_ꪨd*w]d-'[ 8SGc2r4 ݎoܥ93:2c9Fsg/LG&ͅoVkE gRa6Vwq(Eg;2@$4RL-xԅs.7炅\WV}G1ILιT{ L W.y]%oNϫӭߐx5l_m4x$ݨǙ=ZfWv1Wg>m7;"ڻ'A7nBD?@ X`p԰t+&W` wj [Ed?PssaT\?cSUyt=vFXM;V{h7#ȂQQ<3 `1=~&ٗdPK IDATne=3?K!ư,˂$oZls fQ({+~_5unđÑH /R}U B>/"Ze?3&?.? 5LgOf~d#O[Di%XIrt<ߓ,N/TZsv/!_ck1:_5X2EKl/t(X5{uMcSs!Z1j"`dyU mĹQYOS#NXI_a;M )8cNB6^Ēy2ޫ עiqEIUHyۥ>8X(J]!eO ;Գ0Xg9?O2PLGx:ưk2XR1QM$Ej"Xpr][DF~}c?|A9-K ǂ9s3أ@ B-ɚ̪4y7*H7/5@ ,r`1'X`aٵ ,n腟W78G``l+bPFUf/2 /!3fQ<_QBg`!k-{; `Nmө#H |7x,sBei`vO?wOlRg nŬӹdl E5`^ nqk= ێ{#'``al܍w`$+TP [_ 6gүG`u/In kP&Bc,>X(J`'(EkY;좉`:E XLG&vۥ%`XdIć9|$E/mF_~nsD _ .2i} ,"um3 EJ{@CQкEYg!^G9,@,">zڌE+d;l3m%X#3a=dU Mw`w -T,wS5!3KzFV*Xi$вyF O*F:Xhk; `Qⷑ?^>i)jxV*N\>:~`^ [51b,K*S Wś,V]o,2C^`,&jYωWAg1 īl" Vo `Id?.BQutA(,U~2X` Yۭi8~+`;.ݎ,y GYOUwac U5qNOEudQHh/t`-bvU`I',@_ +VDR:[!hl~`QFł ,PXc)|IBbTEḱ %3b`Ӫh1P̷賝cox9,}/:, wSﲐS#] Nlr^_ Ugr's`sϟk @ С(bFČU#`D*w7XX|%Xt9=]e)`3u>~`N> ir# 9nk[ n܇þ-7>dc67M7/ASغ9&ŕUzX>@6p tn6ԝ,5.o: B`A ".HMI +BFEczoA&Ԅw}\>sZp' IdG%ُQ=Lw|n9Bx9dwvi M@dF(4/XwF Ai4xf7DSy*/A}I1SE4Bλ>e{-лARغEٚdk&}F!.:9tX,,,c0Z7tƂY\Ee Y22v?w v|Ip;ɑS۾'o?̛c-psyхd,* 40ڙM Frdx o:(ީm'1# ǃ;%6㇇3gApmnnx' [%N m;vᶱ> ȹxT|5 1QE7wU 7mB*,bWнARȺEYLH:qwV!hqFWdX,,VYdjocuu=7R>FVޥޔozeg<$~bG[M :|BwS2Xt(Xn]oqoo7F6_n5eF`M~,wyѯEDev]߳ Xf 9cerq~3D3JxD<!zyzN+fV/ƴ29>M W,HCSdaAXKfwc;t[nV , `:Waoz8;~@XaAX , ,‚ aAXa@X  , ,‚@XaAXa‚  , ,@XaAX;~k?ˋaXaAX_b?ȫ;͟‚aAXs,>$ @X ,Z)~}aa_z(m/FfX}ۼo< ,Ó8;DّTy|[u6z"0̫nuڧ[f0_ynѲnNA6&apbEo7{Da+9[I ;f= mX$C~|vN>)۾[ }f\hܕ^V'f3ێݩUSzPoU7A;7‚XHIdwzg$;-kz:;HB.%/}y|ꋜ E("IɄ: Zێy%_k_vV8Ll4+z7#lUR}aAX,$9ptf6̈́E/6Ź~ԆV(X5# ~o688a,An&ZQ~5:uijZ.Z? {_N-?C )U_ qk& Ŀ>:T#soj{^wK8;%/^-:;ٍ$l{PzlS/zNwA< *bτw#¼Ñͱ(ޗ$,buG4Dv¼Rk Ċ>mͱHw>yT{m{&,ُ\ ]'&,)@P[K0x>aaά~iY%ә(xR<t˰8vdʾa6 ,AX}16Cph.e8na2>YτApm=S,_-v>= ‚X,, ŁyW6uXmzbBSaa^ٳ^ţy/Ŕĵ7[Q t6Pöwڙ]Q~fEjW'$/WIQOj_.*)FR aAX,f7/j gZ :@M¢#:,NnwVv`nXl>9$ 2E aa7˰鰨+ @5-WAmKplgZ ,ղuXX5WM NE]Ja4)'tUA$*{aOދ W}qsX\"Ay%g,NX\ȔemʃAX Zu 'Ha?MŊ"k$^d'dK"tǪ6`b](}R;c=yGﭰV2*D֒ỬuRaAX,,^v΢Lzz6,OWf,,Zmx7,'X:3١MX9,Ji@t$03 E6Ͱ w"-?Ţ:[>Ss/ l䌦EwjE"j9afwt偰,kX 0k'ռ*dӲ 'cU Z5ﳋ‚Xq, s)6)^ .Pμ9@r/b' ޤv)Ts'W7 a޲Gu)4Lga1Z?L9VQ NDDNX")6 [}䞆.} OIX#n,aXʰoܳGesI@$#xuIFjuX R>Cy+,nd,>VGgm;-~ ,PGP|'6s,v\Ⱦ@'Ktq@χx',N֞X׷LIr\tJ֦~>_7WF%X`iâ{󓸛p}L?d)GFD@z؈ !:@f`bHu.sl}"?vuB!}Zҕ1 MT |s>|WG.,K8ɲ+,‚XQ CS=W~Ȟ?N=ݪ̙y֋ )}PS)Gcj_Wv*o<3Iqtơ7L3a+A3\o>c wxTV_ ,Widžx=g4Ϻ֫\/Ƈv5Ghϻ]궞ޗ1< ,‚  ,  , ,‚ ‚  , ,‚ ,‚  , , ,‚  ,  , ,‚@XaAXa‚  , ,@Xq^>Kdu/6HEt]9 DaYI@(D*,6Ϛ9 "]-!9sÎTXI<+BEeaѧeX ,qDž>,ܽ`ۓa1zΜOE|b@XQk[=A>vz@h{^ׄȔ¢}H~z7_E&ጉF.# +H%^M3nj?l~-Պ ,""1Iݒ= 쉘33}aQxX,'oz1q7MXxfekvԱHI͝5M^EBcyqW2 In_6*"caMH[X7hd*}u$qB2d5vfƅR,R9舻JX ,vERzkQl_RXvyI}^ZjNk¢׺S*8*o(S486Ie}X݈LXm^X M4|G CzTϓL0΋ZeK5R]韆WTEz7uZ ME*zZNFPbSa>tv?FXZBE‚ajI\ߺ+RE5YnŠC?k_Gan=⯳nŸw|x2,VSA%FXRh"D@X1,ToK:n NLdWo&°Pj[h#G$=* #i sA=jF2\4؀‚\vsjZo-(ޛ~~z\hZϾ^_5)XL`3- , DM`~}(X;(rY - 64 P"U̗}GOcQ{E , DJzE4gba_a?uSY| XhX? , :ֻZz?GYAX@X@ċ߾aaAX԰ū?aDGzwyf_ w7?i{iG&m0F;( ] qcz5]41X[m7gќyf@Dh~?9OHgg gb쉇, ,eܻa VkWi޻,~D,  iKBR(;N:HaK CCX@X@TMEs: IDAT]/nj v0b gAž]3S0*W [CabX؝O&,ԋaXtGi ~u02 o‚"xv=w*a91bQaҢEf},  ¢sa$^s,|0,ob `YmnܬaaAXӿCX\$GlY"*jk M=q`Gr:,u{ofUDb8.qW|>uѴ5\ aAXD<,͚ܵHfaRבߴE\e8wf‚vX'T3,]$ŪPŬ/#")a1;a/~9v<gɮ ‚j㯗jnRҫ:~Z\{I^ GDfc^F|Ӌ]#7رwo9'Vx( ,f$,Ek&sKzݲSȋ[8i;q,^G^N,/ر SKdlH<ދM(ysW ,f#,"'N/n˒__+F`Wk"K7Bڝ݄$>P+NjgaXXpm(uԃcڅ>7xf+e>KE=a|ŒE_߈+s,à8ȘN c;"璿}쪈t~|1>CYȘE ,~~~mTGh<)F+ܜa Oa`4Ug׷HGLP"|\AYz ,?,2MShX KrRX񂰰.~to;ojC)-7BH,3 , 1O\MnE'Sh|g"GU2y1vl;xg$w#or" @XDXtEyL$*aɈ2 Ʉ[a˨2n@t\;|Zu:@XFXD6|KI^멷S.RJj'E]2f,W yIJ{|X b¢"5%#~Cq[{=׳E|$za!۟-LlBҚt$?ppD/!L‚/-gD nmuˊnM$;*)2AL KE)Ψy¹pWŬEnZz ]OW0mmTˣ99UZH>%Ťƒ).^&qsi|‚=G/ gΛ/U\HBi ( {dP₲בEutsz I [Cr:)ӽ{umNp&o7mu 6 aQT >+Oy5%:;,S۳׋ltTw=\) ݫ*?{aAXqXDw{ofPڭQIL~s5/z/_k}-(6EEEDa[k3VX:+dB|p%taAXkXK}{Gqz™[a Wӛ)'3˜{aAXqX]Ʋ"Jd\XCrYvOYxaQaeے|XoA}O}R3Wn@X< ێT.OXLKg@d5=CZ+ ¢xbP3"YۋJjz ,3aQb2o ")ys,ڃ"Z m1=Le , xJ!KT @XU(pǛGta\>,6sA{ @X)|uTlaAX?RKJg2W j>6r/9nGao>s7 ‚X:q]ќR}ӌ*u`yW~lҋM:^4ae^QRQm2>fcέI?Ls+q}Jk#1ZWկ^|4ܪh}y./> ugm]wr0 (J H$pGJ .;&X{'nYS1Z>Qꦷzw[T)z_tVnPj[!+,::4^e]4 uǕJg5wo6oN,[)y6 ‚F (Y}P>`q=jb2ŇɓdrI'YaѯvgkƬ@۝xh(,z>^3l=INXD_wzRK_>_z?9#yS͓N?xavi٣9؜T{MzN278 a+th7 ‚҂.?;3',woYX֕sk'/ ւZ usK?~lT%VsΛGa_em&;,:_SQyaP1iMw , 8Ž_+HѦoɑsBH7>01> h6J?W HpFĮwd(#OS|a?,̩XͱMa@XbX:,ťXߛLBJ<"^1tv#]uK HbF&Æ@XKBiaGkneWܰѯ%}<ޕ o O\aHCX 'z`Xxц*\‚ ,WoooDojaڹ;9a@Xd6p2 C%¢>qXuk(/E~{zY@X;슿&Av%97,"¢HC'~6 $a\/إPݹ*L@Xy?:y´camNM۰X0`xK,own‚ ,3Eޓi09kšxnaQX;cqͽ(,vƞGaQI>~8T‚ ,/ëTjNt{1Qן:;xx~X? qtywÁ0i4-[NZ]aa-qgVaV",aAXEnU-, wh]>BrVrѰGj؛y;ūjۙU.\NEzlNx^xȣՋ -.X]lP:W:Y@Xp+ϷVG+lUtEW%/h { ݋w*,~Q0yʹ5Bej9o5Kמd;E~kU^4{FRKmP:0 aAX9e[&.ir?c"f!yx:2,Be:,|<E! i9z(7<A(( ^X kDu+|`ڠm",aAXs0VX%-Y*,&OB3~~m</.+¸ Vt;* m{iTN˧՞׉7huZ Hj6‚ ,3٣W4ShlCdzLVXԋ~Xƭ)oeCQmҚ2ԨJJ+NA?Km3a`n_4;X7"+~ {*D_Hn<{O l~c ,ߑ9IyѴaGdlAy= EpO) ֵ_^0n8 , w-etٙ/6+wun70 , 76{hֽOW3..~J9@XaAXaşKLw‚8WI҆;aAXMWy ?~ ,r冝‚&= , tXjV!-l^ (ue;mx3‚ ,ŝvGafY$dF5N , XXDrwUӑj0Ce â {x) ‚87aPh");`^ZT 5‚ ,E/R=JY(ܫJ@Xő q.øm‚ ,> Cnj*,lTX\/*7xFzZ  ;'t> Dɛ!`iDZYVtNo[eyzx6hJ}6͆7͋Ľ*<^mI5RKj'Ptͮ auHMp X,!"X/ S s;v >, iEzG ʡ`q#c׵Hds٩q5 GH[_LS^P_qb>4ʋT$ޚs|6XDN&XO1;n7E)MnK]0IQ"Tǿ})@ X,,YMF9``Qޙ͚^?u8Xb͌ 3d;"ԕbX`Q ~, D⇗+~|6Ni _Sj=쭡`iI-lfII݆3ԹReXI/תCgT(o `Ab=  nj(xՏL*ϭ0dܤPU>|tlbo { X\ķ%X nH$%ȐO &`q,XfѾm;ʏ`qyuECԶlD=8m|?X܇'[ʊ` X,|s \poaJ;9;XGyl=3=Lq|䤣~DYMܺecͣ_vT*|6iH,>`{#,z7-/QS[_&A`2W\T)Z wMMݘJ"zlD^ݛ}o\H x%:ꔽg]k]ICy[apkyc8vI9`AvMaT7kCZ.7V$ܟVzN(e k S3 ibv +ղ~ڲ7VhO䘘*?ԧNjeG=< F51* `AdbmzMB[tzթ/XRŢ/'f;~ w^VPO-L&8=ԯDfH TtrOًf, #nCkRy[Sp3?,Cv(t31);g¼J4+zsg46mI\g]3{G7}ңsNslv؍D4zb`ApTq:YyN# 9;/^ܻh,Y y`z]p䙦Źgww@ze^濼" ݾvG4Dϱ JShwE`ApPfْfHL""$ gOoD`Ad6&Zv.ڽw{X,``A `A  @ X ?#W X,~ƿ޽?5qs!I X% B /ૈrHP[m\^$ lb9|?Է ,sE_ ¢q25MX ,e3f0ݥ΍ ,tl5[g _`~XLVy *|٦+5 gPf# ,;,Gy_Ka=|ž^j̝a^F'p{F{ԙw@X 2GBٰһ+̛lG138snD尙ag~aQaq}LoEk09ؐ~lφńdZuI) Ztu¨QֻJ՚Hϕ2C!iO@Xώm0Q/͐E&,":(|OawmnK^L&s󢲈fcJ? ,3,2n=ȄgPns.hZZ=R fw\Ta6F=1$O , aqxe0* s=/,Z4 J}^p>9_{WV\emW}q-B‚(ڰ'jos0|{B5~oτw7!T{~_݉wE}6.95?0?D‚(ⰈԸc.zz%jK>/"=)s]V-uOgL{Eu;j@XEOa3F12۽%f/jOhWM~-wfiP3l͕d؝~7ie^8ge԰,aAXuX;fk%j[Sȹjgb{PNoaWJ'?aAXiX} }ɒc"#ciji\-U|fvwFyӄ{{C%*; |eA nd@X&.ZRf;FIޓ9K9{nԆ @X  , ,‚@X @X6vboJ JUv‚]mW~/ӯZabut`?!r9]"3 "VY+(/‚D쭖a]g WBq7ފaaAXߑ]̊EQo;RHX󯋊0\oZXR-Sө㯉Pa#LAap0'b UaY175" jև,˴ĂeS= }̿bkQ{8[է,kTW^ȍ˲DVi;LLfNX枎[3֟8+ , 7_͟vƁcCw=[4*p2S1D~Q#*He.wNnNnn /U/\VCwi)}|p>:XϱKfEɅ͘ n{~<(R"!@x/_5ZX<vϼQH<#Ɗߖј8/73m4-~X81O%E_>8j\f*a3uSkcGoh1Cs oOjCv^ytiϘ^xg}n,4Mzvj'v{S?猻vw*u ,6gO/7m]mpWb}6[5:mK}ucnsca\SRWE.fF˩c|c\m<կv2t|R=Ҷ9xpb~?:6x‚AY<ٞ[߹.iޠn58w?|8,Zܽ? Hܬ|_V;f^=Ը\z{5?cY Jgnh>Qz+\ƴ_>fjugtr,훷CԩW]eWȴʄ՗< vOfinBMA , iZ4Zy QhbنX'`<~`u|s;+TkpW7|U͠H@Xɿ'cr7-ΧϳOT:_"|h% ,=3.%"^@[{Fşx0,֟)w. y~ 7Køݴaf{`5,?vG?wvO e/K|ŞI˂PR' |ҊgRAG"qov`E nwѡ7+K3ʉT *,KH2d8%,  I/H %*˦9-Ӽ"g;~X$SiFqBXwo͹a>[V*,, "saqX#.y?,**%'#OX+'~JJbqI va SOM׋ ,z}AkkmgXUS9\yXlHY?$rz=7a@XAVb a}RuXŚ]"ݰK`{uE ,ozrΚUa1#CnaUhoEU=lH~ֲ?&, Mɐ%?TaFd^EvB}*ݲ眲x_Qp~𲆰 ,Hj -% vZ|1"- ހzB]" ;DQȝcf^\b[j|Wdy|1 , `JMUaۏF "aavq$0䄅~n<+eU^XLn؇mrΎc aq0=GNNNXvYdtvEx!I}`u0!;8knݵ+#rx|R*mj.ۻf7i]64?Y~܃Z֢O ,pNS~ׂH!aAXVRىX#e{Տ!IMӒ۵Bw-HpH|{ ŏlή|?T)>@Xut-g/37 o5||aa@XaAXaAXa@XaAXaAXa@X@XaAXaa@XaAXaAXaiM0u^2jtL:/ɸh> ,o laoȋ#ړq.G + /ITG^e%VoTl/|ӑHb IDAT[ @XMXr^B?S[/mX ,フ{OY|{k1>@X@XaAXaa@XaAXaAXa@XaAXaAXa@X@X0'^mMob@XC3>W ,O79@X@RaZ, , m#% ‚23R , 7Tirad6R͹g , k]aeaAX2x `NcX5aUy;PN;rȶM#|2EFHN? l3R ,Q_՜nʟ-~Z\‚jXT%LJRNoX7aP8\9\xx??HaP}A/ί5q_7% -$&D6A=(ғRXDxOm<>o$Ʋ08FNnu҅l\wwX]>|S[KLK㷻>yMvXE?Ξe\@?DҠbF3UMeY(ʢ˔D{ohVq'ϩVVZFZfEv%~@}}2)'.ۜ[9HSbb1"~J6[ݗbAƴSqEUF+<(M5wjҚV0|3dtxN)Ă[HNM*XPpMʉD~X'ᗻq~s?Fk Cbb1鑟d(X8tǦD s4d5m%P{ɔSDr"BE֣,?{Dt>G&VerNry7oz` < ͦMKR/.ŢgDR,d3$RYMjV$:bu፲A{PEKKxbeTU6;L4E!n`/ bq0Xf(/X6/)Yqz 2kr?2*Ys#yT4~́U{;G،>X @, XdL1P!rsXL:O9*,gSI"_\8[ [ !J,ݿgy>: X@,Z,FD?4F |zNE=f%M{+XXq-*,E.~|>(>kv;izE5^EKuWj__DR> (j xdW>;?=%Ї?bq^ m'$bbD"Eԇ }5D})T EbSMN ~:# ,o^"]2fxȱQD2["{X\d"eAX|Oȑє9ɀX(HX=$7UY*l]thcX[/Ad>!+XX$b̕B, bv#lNeE'ŪPl&BQ7I,xT;mZco "!VLX5<~ 1_O;K/OF=1mbqo X@,ldX$VC1~b  &FN]7MXL62TZBm`#Szuz47&,`Y b`;|]@I(b`k}UoMKkϢ.AE1Tݸ_F RTjK9PlvQDxf23yԚӇZg=y1]  aH.xP ,<(Q XY9rYp aO?612C ,IgILV̤OO&I6KVvRsU.w.}f,_U(xu- ӷk,wcm=_hoyI=͢$+b&.Y=M♝Mbixtb-(y7wm#bsmZkwʛFos)3'#zoܹj3x:bxf/,"&OLt^u~{9FSWgfvyr@{}eﳔQnQܴv@X x>'O|cՈ⍿邏խz;t*l^6oi}98ޙa}yyq^Me;h,N"fT9i$a1?=XϲG.}Jh2vJg=atL%Q/ZPod53a!,qz^;6Ծ>1]>#v;,+21}݉xoI4;ӟ1]ɈA֊k kbv~~9bL[a|QRBX gwn66?o5ۙG7EFT}9×o¢XP9ٍaQd&?!unE{XqEX,F=]=âQDa4bmPX|:UXh˭HR<-j;ȯ-Z^ÆE:G'aa1l˳E雌 F緁aU m!a:xkv%bVܰaÄEOb,kssgEXTI1^(b:eXTos~SG=!,BX@+>o|;d/v $,{>|PXl6>wEX֧ްI',W(WBm~VE#5a~yG;;jyջ[cQ{w`瞀!@]%hn"7 Z Q).Bgܙ$Q/>Ϣqt2y͜s ,'FaKk6l!lOE/7񰨍Mt] a!,nB?NFraD@X4TXf^Xl'$ iXkt?QԳ<懏MX ,]KM$kZn&jkτpeaO_aqMy|aQN+* ݵ,EQ ZsWvإG&]{%a^bpzzo ">wh'ߋLKG"OF[.ﭼ=]'iV^Kr {OE|lovge+opXJ% !^&c۴ʎs aMDTBX xv3v鰚ZQ o,V'fk7Ff"J:/ά{aQ*t{s7:faq墽~4, u=_ү"YXDaW֪iX̅p~g+pU88я4u a!,%eq9[v}x_z>ы/ɇo=]MEa>[b1M'OE;((b8/mV: Xn؋J{2qBlsg%,BXK 6gb?߶}oϛey[φE|/}53{cuw1GK/>N:xn3Iu4UWOWSlOvBciAZKYX ,wMػ v1[eخ<F,d ~~>4?0YKɨHNmb9~54xЌc C{@X x?/>U¢? kwApYׇZ| ao,9ǫbׇE'}t|UrVbs.AW¢[j[x1@X xzovݭ43*7+Պ;߽ , aBX~5@X a!, aBX ,a!,@X  , aBXa!,@X BX , aBX a!,@X aBX , a!,@X a!, aBX ,a!,@X  , aBXBX , a aBX , , aBX , aBXBX , a aBX , , aBX , aBXBX , a aBX , , aBXRt`gBX@tjEE3@X r(ܲQa!, .; BX@\c¢lna!,Ƅı$9+; a1MX z-#BX@DBo½P ,Dҫ{㥫Wntfw |gBhl./ESwwht_bq6Ty7;iFzBz2~PN3HvXL-䧟ZdBX@>ϦLdmp%=M:np#+<3a߿<,:=Ϣj@X F[XOpz:I5i",/Ͱ~i4i?:a1=N2wIrb ݦ,jht*톱eqwww;1ƒ$9.?b<,FC(kg[ғ)BЯaq5F~8$w6RS`a9M\!ng!L_|+ a}[˝j7;k(aqL? ,uXNVX[XFlbx69WX3'la!, "gl h9G"< a =1j@X Io¸^tŲqa!, *;BX@\MXBX!BX@lFm  a/UlW8 a1U BX@v \fQ# as[ IDAT BX@eQМEMWBYTBX@Z6zȷC<>0|]y ,CKe+@X #֢&(NeU[ԪU; , aBXBX , a aBX , , aBX , aBXBX , a aBX ,a!,@X  , aBXa!,@X BX , aBX a!,@X aBX , a!,@X a!,sPoq7#V a~o{Joo~$,@X xY ~qsZ[ |J a/Ң^t\ɵR/6?9aBX"|Z~·ia<,T)}a!,%uTsR鵃E dn^WssVgrwqc?s@e!J\ \u!VF\T[[ Xj'ɓW\BŴM6ɓ? Ɋ3´NE︞..\IE]M Jɝ6enwk ,gqzH~(bvH4 [[YifE->0Mg=2NqVJ 1j7ӌgx٦tyQ+OO;SRn'i^G]xv+bɪ8Q˥ZҹΚAjRR'k ŝxjW%wnX4'aAXo_~"e=MT~'G1j"soܝWxH!V+[$Ww.ȱ8c|{er-_w:lҷܟr¾ӿ+7 @X/ w#x56k e|DzWu&r`YXXe1(@O "'Ŏ8v OcS "<hYiYZEtGMN Zְ-^ j,GGwZ侳Ibގ' ,k/6DhErtו!;xKX C&qRvoESgc[WjtDo5ߜ9[8GOLTl ܕ{a @Xo/tދdTz%ɽ Cc]/{й*RsiVI3?^ U10%`7C^^3)Ӭ6U"xV;:_ꛊĽLްH-}ԣ~^D2oD&HtD,4)t?g , yӭP^Z2x,KTa9Hb~ܠu<qn"j]]tP‚ ,<D&3&2+{¢Ki7fXb̐C yAoqd'֍ź Za , +~m{ЩHH7,3թw_X%4T \[a6J5Ū"Nzc9S?wnR}$,aAX1 f04j(zՏzOX)=calw*?Mڽ&ҋ'ys>$X Ե ,C8 R*vXF.9DX067ȫ",a 8sGE8bfwâJX<x%Ѱ8ma1ӗ)vtMۑruӉvB|҈7^JWj}mW`lX /+oNqv;.lL7J'"7Dz=yr7r)-dQ-ScdZǕ6Ļo+ ~-]E"gE{c ֊\W~Z'ei;Q0м}6$YU1i3P B*}֯VU׬ղ1VDz'Bſp ?r˂ðp?P]>}w',_tW$٤7{ypնlYUbY P?"0nK ؛.M覄&dۍctfΙ3hF69>߮yy , a aBX , , aBX , aBXBX ,*w|ؽ), aBX ,a!,@X E]bUXa!,@X @X ,,aq3qXl%alZGG{0Ϗ[fs' 8,6aqa!,@XT$,&ŭ|X BEaIBy0KXKvðuE>,nM 9aBX Wze{H4 aŽ~X,bmiiaqְ2[XD,_X= + ,b!!|Xl$k< %,bX] łPX":d 0,>byRXBX5+YNo葰 GðH^a|a8 OoϜ><4`zs1,f G󡰸 QX /5vBy0KX `z.,nb^X5 (, yF2iah gxqX .a1W kcb#',a1&,b\aq!w Gf[f hlbX\ ,>XEvrbjz0V?c>JlX$ff7}+񐅧qXlnf.eHn3,i1!,n"3-,a\ 9c11,Kg Ecְ\Xmag v0,+WBaMo/Ek6k[L^ -Zn +UX$᰸ tXDkvP?Yxޓ7PѰuE* _b5&E}Y""˩B5|ųntU FzlE3 ܅!xlbX42ff  ײ,PAm==ST1,EKg,ֆۙXDXNo//䥦waֳv)BT+,ð؝ש2Ev>,웝0 }OK Ÿaa1wZXBECmOZzw.cP.ngBM҆ť1ƭ4''R9{ûۧ.ǻTŰHZhz;9iPǮhE|oj9-DXLoVP{MOywR8m(^v~)jq)Txlbov1ovAKU #m͞[XΦbnN7 Rd2a7=yAX̅"\B.,$,! Oy.),:ǎXDaI ,Bbt"ٵP䒅A<=)kX  tXDӗ*,O ۩MoaiP3/ۥҧ>naq@X$kgBE߅ ]4w *+Rv m-KX\ ŴۅK2_}L--,W,.ta.VzᬧA_?>S |o?؟,|>P~e[oBMse cbvr"/{ӠV;,,jxG, aq|aqZhᬧAt]T ,f#-:Hڢ}Gaq8]ByJaPP-͍XijGaqp"8X"p"/piP'OO|FPv²y(,*|>,R! ,Byɛa?t_t~͋W^'D;tX_?{?z?t~x3E72#ܶ% },,zIwRXx;+3fB"-$6TѹQ1c*/Ɗ\hf!HBd6Y])XeMI}9ys~Й;gx51!Q8y˷^_e~S]gX<*oK׋E#('kE%J lCQxb zoXԊnw{;(Y^}[tU<򛇷Xo5X_w[KhQN{OI]dzPa=<^V,z:O,YAgzJvB&>[^>)%ֺ+/x//hJ6n_/?@,n>~jS\)^(Q_K{|G@狅 e'XW,lw;1 eĢdo MB|on=x{3w/yS?@,___[(X~xEqk-,n'U,XP"poj~k „g:̫+TQۿ[i{h(T}kߖ<)-*n?T5ت^K.+[B,ddag> gP:84002<:zȉ'''gfg=sfyyesN>u.\X-i4.}Tr'_z7i8UoFCWgsΞ]YY^>sťٙɓǏk6壸bđã#C8턢eI|bjQ!;X ŢO2R,JVbqb_ESEiSS3YjhhX[#d8v0bgԿONzThPTO+r^13=5bll988H^bX .+;B,` HK,,^/811aBE^f1¨ŲU Z0v.^H z_錂E*\ZAZlByżW5+Wp`˻fE`r ~oXԖ,X,oXEfDZ,fX0E`n ʘEogICPW(X2yż+XYA(,ImvEbYbƉ,n׳0EZ@T[H8F iV@SjoL~x ;~^!/X ytkX6OBlg*P'obfd!nYY0, -<" idW|cÓ"aVq+`1lNX涻aV`۝# ,a(:'WC"-@TZ.|JF5zLtJPUZ _a .XWDP/rjS bG,«YPEi9PnrEF0 H T eA`}XXH, HsPv60ilYآ-t©-<`rnKbIDAT jJ\ B[\鼂7B^ݮ&^'gkYPb5Yآ6H-dla܂څd>˒B**(b W~/ R XdĢjC"w",mJ^,&h2 ״jAn!r 02@{/K~rJBd*9&A"mgCQ+*8 ѮPpP~s;,mXxr ,gb(,.pfqfZZBNEc&`yԿw r UpVi/rcPto ] /+rfEn'TV bQ= ,0TdYr(q҂Ԃ" 0 w;RWC{b"+&I)2R_PһPj~[@#W[xtT_ )PnIyȷm {j`<8X>8B]۽"xf? U7 ۏe(Ro[^hac]| YB:UB"+ʳmWm``qչ afP_ʗGgf!Ezŭf|VBӿ?5s' KPqgwE+E|ap\ߜGpE}p!ӅeJDDDD£9nPa4Vb|8),-o,d'zʢn߳HOpZ/"e.GG爷vKAVdV_N϶W{PE(5P'EٯƓ 'ɢ<ɢwY [raF/]|7dH.ex-nAչ""?W.Bo͞]d~yŏ^:Тjph """"VX֊  ݃7_nߚ_qao'@&Z4(-pM~MDDDDDB +KP7+ܖ󀅿 L,ɧ,BZhfԚ#!"""G*<+qEoWStMדlYe1B^q[ݢݻX+HDDDD(* **Ċ+"ԬEo8wX8Y©BXqYQ\=({acb$կ,9;YLgghaW4[([X\X^041 """"Z_{ҔSh9 ),**Xa 7W̺W~j,`1[e(e(YV(ʏZB"B|a*hqSC' 3V(Wwf_\GXWN,~-o}ZdZݢ""#ړ:EH1Bbz*3 ',f_X/,PPnp( hg E FGDDDDDOr-SУECbI FE""""o)BȤHhPQTe\+RlE2jY;Z\;ZLиȺ_4+Z8,))*4+%(azW.B3,z:,0EY-"[\]/0Ph%#PTRS$TPkEf+?XpİMGf?;kFL {!B"7ƘDDDDDkϜHjIL!02+\?3W>XIWBFFT 7FDDDDD:աT+SpcE +?aqDX4?n' -BZQ  Clm/:uSi=*R(TU;P!+5+?wX"-PV}h_{TzXզpЪphnAb{|i4}a$ U sADDDDOOg+[E 5WXWX 0E=[\]/0"e,? """"xtR9UtYXe1-BZQ-.. /00Bg,)]|D؃BbBcVDs8",}j,BB {!h%&<)Y2UxVb+6~D"zCE """"ڷiϨtSEBE+נָ`YBZȸ^x` ADDDDt:~gMQѨÊ`q"--lmpx}C """CVcAER\qw{)aB󣅧-.D1Ah[ӞQySHX1+Wu0*wFtߒ3/Y(ߵ !uJXEhIZ[|Ž.6yF2``nTT"ˊ]qY|b<-QY`T"cGs2_w۪ϊmW|tebOY|"LZ[dq񨋴/X0qNliTT"̊mW|YezYG"-^I_ X'\}GQ"+ZJW`]i=.6uE51Fy(84(y)>"~VkEf 5^H#zDh4*Uy j0+A5̰6HY"ipqG]l"(%5.ֿTjVâ]Ee[l"ϋja PppRu_TEs@W\?,'M{[l"2/Tk )6Mq̊" b,OiEE()MFEZ(>۾Se1q"=[dmE<1EyU$NJ0+}:[-hE~xţ. c84`&ͦʦVfE\q+n2Ce1A[lȋFaLH`V[udVb*+fa1TXZbI]3`gIA6=*U1sŮBX4^/,-mERy^ cG\?æ(*}`E?"ꋥB".mSlG*Yq+nŗմi]y.  ,r3nV͊u]q]#,ZY-bi]D}3`IE4#*ʪ(b*vX-FZDmE^Ęy`ѴV8*gʮxnXL U)bi]Tcif"mGTU1{|{omEĘi`ٸ klw*YQ9W\=oCGfZ"/և JQMEpVWb_ZmEĘi`ἌPV|\VL,Ҳ"lZ\duQ BDYSQVE5+a1~)4-ʶhƅ-Q*Y1/ C7nYEy1ʃҁN'℮ݮoCmӢI\yQ SBD%(ҤHRx{ҴEY]yM< ޘۨVgE/,ʲhE-Ҹ,ZPMDE*zYW"+բA[tBhph%EQh]+vxX)4-b.y.X2*ҬXWix!*.qZgEȫMAYLEQ]Ctx )x6+z]a)|[N)UQdŷfVtŻE?-FzP^U9W\'+FblQEYq_4nNu ᯽uVW xPQ[qE=0/ X("*]U |j0.j}1ppF5gi/Ȋӻaq -E/oVoųҢq]Tb42 z+CxV xb[T㢚xfjFR FTaԶhE/#c z>;39kU@X a!,o+ZP=1oW s;ءCyfqޗ@X a!,oVci5dVuWD_ >[I*_!* ab_d+} a!,BX ŧ\!>GP a!,BXOw {,g%,BX , a!,BX ,gj PZTa!,@X a!,@X t0  a@X ,@X , aa@X , a@X , NYH[vIENDB`mkdocs-material-9.6.4/docs/assets/screenshots/tags-search.png000066400000000000000000004536151475306445600243430ustar00rootroot00000000000000PNG  IHDR XSgAMA asRGBPLTEGpLGGG333uuu&Spppmmmtttooo%R%Qsssnnnlll iii%Prrrjjj6FNgggkkk___qqqXXXdddbbb)))eeefffJJJRkSTS$$$GGGZ]k/00"""}}}[[[yyy222NON<<<---vvvINe#L898DDD_am˔566???29[7>^!*U(/WQRR©?RAAAUUUSWhCIb͆ɺNSfYgnFU\U^i=C`-5Zy:;:3[@OW #ܽ:JRt~fhobenoz:%M\cjkp`lrnorC~eqwljv{Rcbzܴ㕟bsuUnl|\uXqvR^WISf!(NOLtRNS   "&)-135$/=HBa(%+@,0:JM7ORVTX8Z^9bQ\dEFL]]Z IDATx1Va?gd?فg/f5cȝz gԪjU :B9mxќaBX , , aBXP5ZX:Fd a!,BXT>7,|kCX  a!,bIKa!,FXL\Tϊ)>W,^u a!,b&MQ-&wi a!, ILE55BX  aQ*`I2/Q[ G¤8#`&N¼xm!,b(i10H)q!,m !B#.[ZL~`&JbY1<*Մ%/rbi!,@XLq ?* b%wȋ}(aS\ꋊ<8ꋾuÊtU(7W=m1dl1߰HwE߬RU`KآbaqXV7x`_ЬȎ3uguE*j !9qOe1yET"+JkhZ.DmfQӊhTES;Ji"-zҢᰨ7EYNK*ɋH\biq@WD"\?$NXC#mM弢+b`R` k޴_+ tUh UVo72HWE$*I8`Fx]"Uf+eE*IO$"Ek3 ]-jga EfZ ."qEaUB0"IEa[ - b6"P1%6,ވD[d+΅"ZkE"A]|杖EeEVWm a%a,VeQfHXBWlw+ǙEP#¢oq;/8fXjiv+vgW\\non~{S@aqq,κe6c͢蝳I"`!=4ϲ8E|ba1+Aɰvsw}#|;x(w3²=,V ݋PyϮHGw?*9h:,"gfuUkV#EQX,z2+v}wkǷO?-/WYPX Rhca(ٲ"`1#XwE[ܔ,UP33拡,'EWl4 @`UQpVγP#=XhwV*,@`їYT,JƷ 5`a> ej6X a|lY2b!9sa!Ռ P-Xc* i"`1e ya (n^MMX+(XaAY= 55S P%Xĕf;]YLF; eX!XՂJv,\gB PO%‚`T Ie4T*'eg,\# r<7TgMBg,-Ep* CF 0}uBquJ bgDp *,/*o +$ jYejbֲwt'Ԝoa +D ZߏWe1gʲ{{v|(,]K,meb`rdT ,bZ,B PRX +*"Y`NY, `,x`B, ے62Ayŋ#gc^<;f`˵LO))*з+[4 *I`' 1S T4eyсETj H*1WQF!U`"m7ZYS kߡ 4oQbKW(9YDlfM&1j1 gЋo D$Xy,2SF} y֬ѱ"`q Xxۋ^,Q"- ݹzَE%ȌℳACZ1 LP#h48X ُQ+T)>x;Y9XQ6 jЦ%? 9UA%`AeӉ++HCSawJPޭ ;B,+JZ6S'B`ѡŁO$XhId37*⮃Šx MqI:LŚϠEhls Ǝ,]"Kŋ/7)Hi$م,Əwy^G$VPfP`"--me,B@%݌bnR5TzW1 2$XF6"UY?dB_Yf,PzW(ţ 8bh,L01ni ˃;XZ&#xN`q0z/VuFŋ}V[M{z9kn[,bDf`v0jٷ_ݩލ"隯<-(X$ XV 8@U\xn`xX &Zp w,KfKd7HDUkIKmX+Y 7xb1d!ⳑ|,>_tͤP"⮃E;CRM[ZH=,e7^؍o ~X';rcȥ8XRߜbxi>g˱3#~l+.Y9l, [c-iھ5GJXtŢX4,J脷E!^Fg[vciZU<* DGC';Y,AfZ_iFO>l}mX| ` g '@iD,VqJ4WLte XpߧK#Bwˑչ;6}j>V. .dA ;:3s&7XzIT *}i;hhgHt[{S`!-Ve ^h70X}[D&X`,X<-fL8PٟndB}%-,Ɯbo`obF,{Y+fWm\,M%Pof/ˆZŋz IDAT}阓b"b`կkeB 8<;m5u,ru'łV 4BxBY8h!FT}lձLl:{-H  N ăn -BO fZ| vY-®B,猔9, 1~R* [`aXvh -st[HF8'U 5B7]ʈϯ"t,+2иs9I`X =7 Xͭ\QX(z <(ݚf`1!Jcdس'P,C@B.k hNm&Ier+4ښb"XY-: %4omV,Y };TZLxqm(aӀE@l? b5^ӓ~:5s=W|?u WE}:?dB;E(,:Y$l, dqŞ,^{m8XQ,T8EC ,OIEl;LT+ϺG"q*g/ߑYT",)|=]BIV,,|2& v{#&ENDPbbSm dYS 2>v[i\XZ@ s,n tZ!tR!g^hOw:"l NCN 1A~7,? uXطX80Ũb sJi E,;d / [h_㮶!$S҅P,R|R}")zpo'fz[_As>E#4YEHo'TbR!lOF, 0x\XB˛U# `QXhBX(,b {"Xnl .FA Q 3ZJ6xbIᐴ`b!4j"f CTnxy0GfX^[ckcX(`G/^&`+Eڶ! ,=, <bŌ~,jd!ۯ X0B3 MAP U X`hӳ;b= zy IҁE,.TP,!>= GXDX9pED,WnP9X\Bp#H *Zz=mRx X_{\ d X5`TB  QP5EH=|}*)B>s|>S>E3 ,x6/̟V `yF ߺu9Eϗ/i!\b 'A@B sd!o XB}x ,CaGk^ٮV%"XqffEŢ/!EXx`k NX֊-s"{k/Zc@18h٠~o,_EHbM,_\{A&Qd*E' 6pK XhB`N,ة`E0hnR|m6m)\ڎXa4ǢX.ܥmB7Ufjs.xCF@iC챐قSX'5 k}L6-`o.ghOȄ &A5,0] ]XPkdE1mX|l,B }1TM`Z!C !ւ [,T SEL1He";P"Xs\5S( p TR5iPZߣccy^DbO tKW-dwʕGhv 8.4KWVV+\pJ Q,j ,ȆBE\,\+bic\ڒS ?.Xd*}γ,ȡ"$;2NB 0R[\Až}Co`złoCѣEQ "rG]NOi:PB)ъ262(+>-_ frID;/I|hd7l]&p~=Y9{̛3!묎`D5, {8Q&ȶbl3ȶcq 1P"tYDZ!H0Ћ'-;Bpn-PJ-*6v4X(4!Eʚ VHye(x Kh6t|O>F)ԍR, łJ X╞Jz<{>/Jg)X4CWW#)~mOq!b{v+@QolvܣyQ,j,bC\6*,b;Hټq[|N6Yr >?RJ _RRCL r icgvF|X\tޯyKh3pV.f=_vu0}HQX::d3u!-ZXa$n pw֋WX,f1Wȝڡ&qNb!#]{'QحɞJXt'M#5o0VEhQd^bq-azEXXP,hbx p*XhU',YEH ɿ;7Lcb6LH1b3A) u }-a>pb9n?bboc,rc,.oȿ8D+',8fEe^q.XT!,RBeهx`/VΘ\Gix@E]?$QL,@s`kih!6 s/FoAF,OX1b6B,JߊhbPP{ݭ!,8γf'1! 낟m2_czhA>ث&GNA9Ť bM^kz-}#\fbы˫+gT,DX@C~&2WIap Gn M8^,P33[,BǣXbu a[rE"}ZG` XX pBE^Q%- 9xu3x;U,޸DE Z,Z+(1CeRXGoR,^K hb`W(hX(H bABEXT%j `bA,b[,^(勅X xb 2  X$k8@BXm2⽉b S,.4)X h#ՋEXbqŢbABmXT' g9łbPS0G;*xP,(u+z2 <@X*bq!)fSWjOmVBvnܸq=7`&{Y ns܁QzvX$[,bjX+Œ@,zEoGEZѹ~]Hœ^'1 4A, S,.:΋-_X-)c\d @mBPbBz0Sܸa 3ʂcP,(ދm-`['OXtd @ŢwX,Yh@/V ΞN/z^Ѳ"Q[]<'sWkiR հ*;}bZOmJT,*LΥVt'DUWdȧ+uZgޞ){3}>VIf( "u @bgŖ79b1h-wT~Dk'7IŮ'n;ҥ4HQt<(lG{RBbX sB1>0}bQx;{k(ڭ` ex9|b1$?*P4"c'&.=(̦5VH,XybZ JlwXs&Ek/ brHe"|u#I7ņ.Auo'.$ @bebHQQh{qؕK*zF,2rR(XiMT,N!O1,e~Ê=E0*׭Rbb1bQHm(r $ @bgE\<{eP(Jo,sK5Ms?+~X֮8Q-$$H,^=M6p4OcMk.t9MopstB?\M$$H,^3x&^K,ZYVcfq!o5Z>SaR2o07`Ģ}[@Z =n?LzH,H,XhbaX0hN7bb $v&:"0^X_k}ֳX X 9brb1%kwρj[GH,H,X:hlM;:8Vޘq9MGӜrY>9׺{ő6mdÇ#fc5g27w ȑHo=`3~!ZR,i_&>5v=j9ћOPcF H,@bbUEvv{{F7--نwŞ;9GoJQhӔY?G3 y6 kMI;:vrM[lb/rcp_(H,X(h٬nyMwmwMmTvs;`ދF iݡKװUf1)FaEȥPE4 47H%RyPԤD)90ws=~Qn,h;N9lEx** zVe4qz2:4xzܫD:MO@~2Ur3^a^8EX67^_n4mx~[#X`,0];VNu~! "e* - 5H"~{`su/]daFhlԶ,V`.+HEn9VrC b&"T܎z*aTRvM. *b#)H_1U6(ؽ^:Xؖ=)O[rsO-dJxj)Ft/uBtvu(X`,032~ddItɮUf,T,Ъ#hca]g?3+,3ìWolpu8iqK~ж+EJDzTq:6X8#V;5\yq]`X`,fc,Vue{TTPrCoP:b Dv͎=,UZ+"僅LY#XT #X 7{]Zs ]c1c14+ "QQ]TJFq@V8EqxW%ew6XQW? irב:U#9cFTpꡬ7o`,0YCL = tCdxzTRPBf-z`aFE$(c2QbԂyj,(AQu0 ŜE'=2k,J~}@Pcc)$)(IɄ5Xq -i,$w,5],-SXlRcX`,d,d`W>tJep},-i,DML\4  9T(Xt'(7FNõ»ݡZ c1'c1VF`$SNttȷ8PNP'Ip6E*F /-,Ec7 #.TF_'XLlbO;FX3,X: ZEcXXoCsTK˩J O7epx \~=x8XbWd.pL zґڶ\?<$IH/}+WcaƎ갽U?L5|XLVޑ'FB)ۖpU;)X`,0s3jm7w,5R#N' 5i-Z6Fen8“v)CbT/^",\_d(װX j4ǻ|<؝X,{ჍRpҡﺇVyDX`,02QaգEVo.{zKG sPAmыSA1"XTlOn5l%pÕp()AYW17O#E\aB-5ޑ+t vç~_Kۓߤc+3^Z{C'ʴhNnc3PwW:M۱Asfސ>  |pZY Y^^^YY=sgϞpq`a}k h!7X-X\pϝ;c1XO',n f*@h7+B sG&j3£Q7/mKWmSa kfNv_ |Z`{'݈>x^WEt|o)cEq`!6fx~uW,f;~CD>̰ ԙ!a!lnϊ˥],N]/j .Y uz5BV7``&\U=rweEJ7_cwƝ'"IHBf;boGe!FnOs*>y}S]*p:~qr]P%@X,,b7:!:+{^gdаeQ˪ȿ;Oʼn? &BK%,n',ޙ oMTr.(p+aas$RQǡa޵坬"%VЩ{}'hͪ_u 8s+y*``B d>kr|Miw "ߝH3aa|/ /.rM2Tn{EŶ/*UzXIJϕ:^us]-,""WY,b_ɹjۥ`XJ2O@X,,@a|d?dI1uHcVEo;ER_G^7ŢJ]ң ł1,g,G3~Y;l /,<#,NE¢UBҹU.j`qX,X,bM߳FޭAb.xdözvaBlgVX[9BEf^X$Ndo<Bf0$s"?HSޫW }qYO],yQ%RX+,>x h; uR$eVX̴bupXtJeu,jq?i7EV>aH׽zn],*CkpͰ8 z`@o/G"b#Xiȵ.ٰ^9WގK툘%J|9ߔlwU(V;U * ,  oGh{{~Y~J]{"og9yO[{b^3G;0EfovJwXwmvhsd>BSO"~o{.(, n7bChEQ5wUr-]X,X,J'o{^,9>,yr9J#!~|w e%hX-/J^,y ZvϜPpo)G{8/j7 !cjiEW ,  f'()2pvX,X,htýٟsu¢傷X aXXxN1+,_9զ]Rsi0ղyB$qlJe~ ,  ܰbk77_ {k0B CJÿl"bbk]{HʟZ>nxY[d^]+U-^X,X,"g+(RwY ,  0rk]Trebb@X,, ,, ,@XXX łŏaXX@XaXXX,X,@X@X,,abb@X,,a ,  @XaXX@X łabb@X,,abb``aAXaXX@XaXXX,X,@X@X,,abb@X,,a ,  @XaXX@X łabb@X,,abb``aAXaXX@X\D^N'<3}ٟ7Dw};tX*_sC~Q?׋tx$:~~;,,, ,B5}4sGPV.ai&GLOXɚٹ/q}ioX IDAT}:B=*_1(s&_~o4s_d쨟k||s< ӜP:y_Θ97JX,,eXl[Η}pd>N[񱾓(sțf;Ĺ.9(K(n$DJU$U4E\KōyfRfVܛ&y{3ƛsW:s,'tE#$X`;dx e,_8ʔ 5cLٟ jYsD:q =$vױ<# `Ix O,er(+q\fC'/ ݙ oO ߫y`br,xCAv;B25cf,);-z4zm%ّ,O$&) ŠM݉E:qrBj'aXѝy`>,l}Xp9'oB{}*XhrOA2ejBX(SE?A`q>}3T &7DiK=Ѯ .Y^07 7s}0z}y&\ XXtWё7V]6E1AnB>4,ve8ەQjdx0D54)n{lHΞ}YRd98\8Kz,fx]pv?0s(R=@%:={,^-lce_c+oGmA; m-%iY/8d*[ - tBYWܦ'Xhs;B|FW*x9,< Ms̀E„(챐H2ejBX(Sv`5ܾ&''/5hi;*Q |ثD~Z DXiCs>TduPaD/'#߼M0yۧBT5 E+;6? `BtJrWdOYLȑÉ[g) X_W )We4y>X\Lqdjښ{VX ,~¶272]I;U~x- AãM &6m PȀŌg+q*WA^Z^ }$UQ{g 6Z:x 5 !@[̉aExkz,XB;W._*DH @A@> 'Bw XQB25cf,);Ah5–u)>nvx]("@!>&VEa4O.XqshkBԲebIE/c%Kޟ71.HM'D`1שc23/ JA+t:H},Wp; *S't*O>X\:HlntJKRGsB|:z$X<&N3KS4 Z.2iUI!C X35B/ѬLrOC(xq;2eGDnI7?5>DlRS&aaKA [KBTQu4QBrʃgqJ9swfv)f77:>333b64X bz*-ĈK ,h@ ?K?,`E l;v6۾ X Є#Yʰ,c?g,}DZ wbɓdIk^Kδ2D\VRXNs#ED33phj| ;%'bYS Km/#:L3yMP]Yct4&,io,&4,t";U}"7;\F>oPJ^3w`gfw=F;Eyy]}3@fg%RYYafx]v] mZc ,Ȕ  ΀XhQd6쎅ݱͶ/ .[39 =o-t,튜(t`qL:;]ޟH)l!O.}]8^!vϱV~SpN8i-6wS Smaǿ/Y,NF3t%`R ͳVM$i_6p.8b 3,/@6(8EjI h>o;vۗ_tbm|˯ߺ2|~ay Xd e6Bc5>0C7 |"Xh@k`ɳ`$K0,(`amvXfćyY<~BQ(??p`qМ.z&` 9__xbEJ{ޛɛV_Pl$~^:cbz]6dMa,bp3kf؈pʻCjY6caw,l틂/XM\rڏU}@Ug:`@pzY\%\z p돩N`=}nHeHRK@s{|q"&#Hyc춹j>)}|& s&34 a J7"_$ҧBL5I,x䋟US#+cL6x3莅$węu JGE+yWTO޶gY\_Ѭ{" 2(a}(`z,LJ ,TϖD%uOO$o`7< 4KJB댃E(BZs HD|jl6YN#Xyޟ<߾nʻ6M*= &PȘFi8pX}D iYy8h`1N̴ 9x9,z6%`187I)Qd6쎅ݱͶ HyKSCDeog~c.IQVBsJ9j,4K"vݯA~ hd+X>hmV^)"e8rVλӂ<j3R*]şVr'FC/كTJVMX)|+Y>^j;q~f!bQ~L,Gɑ]ٲ8#A{ֻiƙg3"Wzg%N^0JZ[E`Kspz\ i lR/Ldwሏg^}?kr௤W?ĕ{\n 9`FYy:aA Z0`@Li 2V+ѪQd6쎅ݱͶ/eVN#:_$eZnc&GUөn'5ѭRnDMT>U{Іij=6OC6+ݻjNVmSro|4i[#BlYtMd%W. f}~}|>$ލ\sJ=o~W0(NGl<ơpl-E;PZ  a@h瓙/FJ&GV1U6l%<%571JsԷm$j aXc ,x9]?uklXk Ñ+ Ua *(6p,Xa ,yҭAlcC-u,| 8q㧱x\; ,b(6El߇ a 8@XW${lXowA-|?}9 ,1Τ^kL 8AMQ*okMozz}7RBhWu , 8p,Ɋ  a8p, X ,c  8p,Xac@X , 8p, X ,c  ,@X8p,X c@X+TWHyS+)ނ_tZz⭕ZVp=eK=3Y c@X(YJZtR)89-j]zy>%s‚DsuPVPGʞ1ߙ-   aa 37i"KXlOoAX<=YP|¢E&Tc Eh}*QX©7jc}z 7gY"',Ԃp,Xߴ,M'ya .5!* , 8p,HV юch쳦mEȮcA<'J&74%u~ZZtiM;L+ˏ]jDQM& =e{ެS--#nU^#Nyʌ|aP >xֵ;C넔 &jI/,ε*uﱪ=䍀(iZm ,4 Z\զ>x'Xkv78g%wV:;ܕtGCg+X`=[JF N+gÞPzk4'4b+5Ђ~M\WI%]X!ëħx;s7d_FhfkB$;:bߝǀh=1;1M{?WXhItp4[j0a 8@XA6 A3*<} F$sx4C8rrZn̗E>)g#Eſtu_V#)D-Љ{KhGte@|OVՔIkmEZv,(S^^QQ[gWE'u*'FwE/,z!Rz_4/'Ұd\Ӓ$WlPΥ|qgEj=yZЕ+},_ R ꆁIcȋ2i}N,Wץh˲1@t&"ю/ .8ڲTV懄ˉ10ߏ1Cg\'wQ41EJY. IDATyWX*f ?B=:WXfPOB_ dRq?.ŗO>u?b ,^J\IR‚A/3)k,t7:G/,+[DEMr"ŦY$po{v )"IrLj/,X.Z$myi[`̴mwC2/cd}k$ KO k8t)oĚwahfznSB<}D>!-;*=feo.&]smH#Ht32+aR0<0NfJ6a! W?Ǯ* 8ka-q7NRX-SlbFX苔OX+K9̉D*K߮tŒfDX l0(,D';pXT]v/NW2%I]g2eĺʅtI܆Ղ¢#/m,G$lgl-8g,ʪp ²Zz=ڢ&OLbr9Ԣ(B;"s|'_qM7^x"_Jf8|d[gݲH`Kv ?.xׯ%ZI^ ͎s?X&L<8W+ee>73A Y~5ńs%5"nUr4#,jbSAVa9?_%cb}|a4MEٕ¢ey %w`۾<ܻ,dNרK4)7x3gŎ̫hۓ"PYfhٜ[ %F֣#\yvj+۶:$g|~H8vɎ Y]"`8XHND;C i8#D>rE8%W?ecFLUkS~`ݏN{Ϧ`AOjB=X݅ZIFssB^[]EsRᴈl^X(\)&d _xp+A'7.a61AʧÆ#: mWI>`{8/o]Hg"9.cՄֽOI4q., =w \^ׁ &oM cPW,z?,#Sb til"&bw9OVggWshˎwsؕ:),[igŚĕ;!\嘊fPk7ҁEY;# Rfnved+Q[xme'B qW{"4  /`U(~vZ ظ K,l(V\5Ρ"2Hyr\ҌQϋ51Kau+ '4(Kce)d>r[aɎ|#] Ti]HgmYZ,к7 hW) ;msqήT2Xt`!;PNezZ]bPq:( t+n?Cu0Ro9LD,8o2`a+VlVE `RZkm,|7LyR5Ι ̬ BD;d*p=XO{a|sP. z'Y:feCX)THcre.`!V'UxJ2\S̈CAGWnyjHz}@ 6CZdB.7{u`ւE?X+T_U*D}&VV6+zcL˕,n˪7 X ,…j%!=$=˹5w:a0^ 1Ie`!U' "4h0kZ;m2 C͠-we;B,.KNiv {3XX6 ˿yuSHÊ^!XE.h,ZK2`qysE,ڵg_W4O mWuH`nDXŃ>ƃ;}:xs?𫕚 ^Rh>J=ї X򳺡P5 7N%RbrPs XTYEzl։rO`x u懴e Qȭ.5q"/ qo e Ykt}fQT)g2QKI_N`%}#kA5{Mm34\9,dBB:VNj/ńֽG,o9Է X\޲0' q_MOwt1 l)r$ġ8]S'ۦSS]XM$2Xq[$éNXRz|x mӉGx縬$"FLᄿO_~*~_%̌ 0{@")O]pt mx 4pok$%3w ZcɥHK!>K[ U({(QB9hcXGyG>aMRf1ȵ̌, l,JVOnTMqRSP. zZXKV P]qHgϱ'7\ʣpҠA%:$gi9}ebH`! Z٥$l| c {3X-QŅs5 _]yE,d'hlGҩ`7Ł|ĕ7e %d;:,JЀݷ<[ (cq^2Xy4pX(=vg5[RgkfٮA:BP:|zPb5$gd1Aʧܲ> dк.%a3?pyӪ {3X\85"!X8t9g"X %:,fG (X> ,^_`k!! 2X Yߟxbw @wța6Ib/XL. .ܢ XBbCXUuRk$QrC|XĝXd^!QMTEKJ(Y\D10[ Me<؅>@^Q9% {!=fVΠ]9W? / Ϟ s۵O)XK[GYr]Y mMف,%1 X,OۇA0~z8XHqHwà }K}tA/ )ZNL΅ӤA$??1X|;񎈅^"}lGP?D,LlGv/nLҀ1ޛo='[P&sٮw=X,UNDEnaCŁz=rT4 (SRk'?(?pfy>M )Z7yM)~zBq)3wv?M<];)ZEHŖZTJ[)tK0_[YK`.$!vѫgvݖ@~۝t|9C)֖8 hVHr=ُ A(/E>CfS* ۝e%CKXE f䖄)B(IqE$; `gǻhq+B\\c Ur0_HsYn:r55OqkmfBXJvvravxwIfwxP">/\{"TEHԎ cj\hI*MKb;8B] ,y[{4!Q,x1ʪ)s@Z'd1>,}$'r=`yq6aӏ iACd9N#6 x,W?Ceb<,$E_ j,0jxgp>QRαcZ5ѕ,\nj6]oW:b~/ȱ2Y*N߶} XZ}aXӂx7wt1K`baeL$ղs>LzfU(ڰI#XxZsry1fтii+J쁰 ߳RԜ%/zN1a~G&LZc8~j=6`EhdLCMxK6CylV(sBBXj gͲۗ醎{u/.`w@{$B gKPL`Zc9 *Fvb(3烅1Hԁ5km`q!^JO7J,В`DC&byrOiX43kCZ2!:XC fx,hxNn1IMB`on0gߐX&'2ן*{`W_$aJ+Zmܒ >)f9 >xS̷jes4WWMUiq7ٞi6YgX宜w8gUp.`NfLW^-}d9r?.'}fVSMS.U=>=q1:U ~(+jx,?E,.: zX`yz,`Xil@,IPzc3<X4Mij"`s X,i >%mߗ ˘p_yT @*ե@[-IeF߄r1,Xq\._B0JP_~W)  $"24|3<X4ݙj">02,"Bek7d2k,)t@StYg`Q`΃KxiXXqC"= %`@E ,Ϙ6w0BXcѐ ]!>װiId X'9x.Qj8eذ%X2b,OO!i[c,½ b6YOmuA.,n&/,X˅ )[XcѠ :)q<\7큶="rNfmX f*̅."Kxd lV:ň߿.5B7KTc6 l`aDž5Ą`Z<[F<</_R@emvQGeoM? <)MuH,䙮~ҜMF =!>`rVW\}t<5a ]{:vUx~j3|  q\f,X^e1";nL /ˏR`|=f-I}$cEcib=ue!pbqm܄X@,j |Ȱ vyq0h8,x9.> Xց `_`QOీǢQ;'s}ŭz̏[#ťPLk|AEvX ,FTRG`ѾYl2dq*uЭJx,V,ݬ X~zq\S}9X|K/<O'(ZdBb|rWV$cEcc;ų!39P!A`aR/vt ϞNϽ '{S=Wo x, ;f!AT x,X@  cX@A  `A x,౸z8Z`A, x,ీX@A  X@,  x, `A x,ీ Aీ `A,  x, `A x,ీF6wڛgp]Ԁmvk#_u9B  `%_.wl9-e̒1eY)w-! ];I6KVEk-WmW:P}X* x,ీ E}qZ$pQl] IfJ9l;dAg-~R]wn)4˔殝ʎ]2YU؋TF4!s3t̫`gUN]SIC,1 0b@,lvXM 2rZWc u^Ͼ3:; E .ka1C~#XeC'8.Ѓ.ov [OQwF s6qTRuKF7~9\7HRx{CǏw~4p%>&4'!-LU rVN3Z.},K'b!Q9^h-1cEE?|dSRu|4 6H[0# IDATtf[xDEѨzFb osJ3מ6@ _pxAnmڹ8d )7 VFg"Ś{|f #FLd, PâH,'Kk!D^9t*^6^%S, atVXBPQU.4=tZ5c^Ks 0L8sJbXyUX̠s#VGtP3=r`ΉTjN#.TBjBތXQ~gDsMb` %Gd5wBFUE.AZ 2 +Z:LbR!AW:u-#:9އ)=yXo6C)h@1I >aJF*gF 0bd,LˆO,y&XHPGv Ŷ;0" p iuQs1הB\w0)Ld.tpi2q_BtHć#mE=xLl &s}_yyCl6Y-TCP -8>hTŴu+@xE,D9VZ $RWO>DU6eG& #D~SJ\WzuhU+ ՏA?CtcXC$)-]k^xag69A'çA1~'Y0?$Δ3#X1b2&ca'#YKĂACϿ6 N},q:r(O|qXӈEN$<IΘd?9j(u(Q ceO9Sb~~yy}'y3bˤRi7bˆ7w0z-y;LW'Eքp0 M_66hAغ$nXgj +"a͐XA;J^p5;32ϒ|Sۖb?t-5]$0/Ytb#ԟI;jpR(2mXgj.3#X1b2&ca'M,b,w_h,9ؾX2+kS+6)XXs6,:5\pXdIgtOν_҇x8^=6jzX5C9baqzʬJ,xk}x]91O L||7gOg"AZYy/yw+O,rJE,8Ģ"ϔ$#a._w}f #FLd,Ģ+!,yE5T##d70'">ba,9LüU7Ifh#zzFH=?'Ooǯ͹Gyw5B6^+i!!k8g7 iv*O|L(ɢn̯#Fb:1[J}nw >_uܐex'9 ztb?^_'^R%I2 G̈!FX1EUn#8bQZ3'BiXK,xd0i9R 7rhpC݊wW< ^&e=o^oq^J :?Ɉ?X5Ke?͛eN,Õ|S5FPc!,mU  ^{ az=O,rJA,8b"^\ uz ?놎C,1 0b dE(SԓG^җB;EEXM,cjmpBG5;DpC?`3; %E+~n x^VCBW'[X$i*٧ \yYؔ Dbq](7PFň'9 z= /Xć8. |;{`όbaȿOBq4R).;x&VEc[@Dz%b5! ]y9"\*zq̜D,@>X|eWM=(k셯FO pLo9XLqnYZw7;"Nrqhi_<`/F=`Yv{`qdx>K>c Y7|uVsznjݎHŔ,+t4udgo~AheH9l=Ā`J%C(S>gzȅپF0?L/sXn &9X.."NkbEĵ>2I!Śd~T|ɵuלgM3WHYi$,J7^Aن>{ ^scRUƙkiU[Jp""?Jk[N$窂dcn\I$qykEX|A Z._&X4"4 k#L+_2F X@/,:L&XNj/7{ETd]ZwL$)8 RC>!g9+$Re2T-Nhn%UA5*¹s=Ar ٤{IH3/tJ['<w?.n?{>@c4:cN~7H"睶m1W:<;4jf=y{s&~禾]bYz9)_Jv p\Ϭ|1{PkSP̈́hOR,!YSԃz<wLAaX*ȝ&RLM.Pg_; D, b ,0l)%]6gXasJ ŕ)+hk39vK+WteY.3,;{GhY+VE6 hY+աz=T6|Rgܶ(m߬b~AJGK].o;lblR_9ʻnϏm]n|yuXԯP t X@⏩}Q[9G}v ehihӶ k(EXtvS[xe'XuzD=Hs;t X@!z5M?8z?_`stJ ʖ'faM|}_}qGk{]X@9NN<~L=]b\5/A"xjhQ.-#Ix"}= ``$6Q$CDžwuy~F[`qU vRt,?k0?>ct})"5=a10f< p0ؓ+`I# O&TGFY-_?'3z`я%j< JR]$mcB !A"uUPطv]v7S]<,T7 ``TDϫc 4,qƨ$ F b({k > [JNkޣJ_jStE{5C^ڋ z`QS%)Vlrvg\v[,ګ^ X@ĂIW%N7h~1Ni~VS5lxߡl32t[HlV@ܶ>jGǖ$AJfG~]پT7MwyM\tWJU괊*5[5 j {BDcݚ_XcnIz$[&)P#XUb1ꬩK!Kw   3YU3 ( hdZY,:uKbc%%{]R)_,i2.ݰ-cXc ,[qWM2R#~t^|ԑfu5f[?ui"݅uTG!m%eѲZr5yW *̼#OuL`,vbQZJ}d1r.T5[(0&'Rv;eGWMvU^`X'(38p\R,JBx{b}LF]ĂĂZBy"o{b3gWjXLMN`^}HԁYC;7N%c(T@tŢ[ zLE_'mX3R,/5} Xlz4z $$$Eb3_jS sfWjX O>,S5,][fbmBD@,j?8ZWŞ-WőZ*XtƂ4H,H,HU ~4dj \ e%bA&Z:"J[>LZrܹ&w'BաnIm/i)A aVaݹ,s;-j⊑ XxE0[,4W&=a'd )4u4JAbj-&ݱ b.MoPljugSƁ0N95.f>  b7m; ;#@bAb[4F1-+Y\H!dE)jx[Jׯ x[^zbL[wLzHXXƩuxKbX,} _B7-bAĂ"۹tX @bAb6rWRX KH,H, Ă@,H,H, @,ĂĂ @,H,H, Ă@,H,H, @,ĂĂ @,H,H, Ă@,H,H,9=[%7T:9OB X2p2T/8?2/WZt~z ό{6T_5$f& /l]4mE_\ޝX zj_XN\|q~~BѿGxy~t}?~5my8W F Ny~%}|p_·ng IDAT/ۻ}rŧ~y6~x+2.=XY!3^gb1lo4duƴXC%J+ˈMbAbq?(TX+bj. %)yVt򨳯4 _ϟ RX,GC^_sϟ+ i̵jX| w0*zV@A/b~5|3 }~k~?eJtfĂ}}a#A sM뽣b_ȍ匡ES#6 )q.;ןĕ6C@+" p@TĠB4r51~$s+TQϪ, \ {,gec|Xd< ~oT]W20o `_,fJLqKERz|ls_}gSiou&U#֟.`b|)YoԊPg`ܰX(`!<ȇHOM O' ,,uF1B*I?8 XГ / ۀ4y42nb_mEvj~>aΊWZ Z}HC۾Z{-8nm쵈L:у]$U9 xǚOӊoLǂy,>9?yOBQ  |i/X\+)yk{4ݦ``&`.X>PP,~E.lڣcs~8{,h`W `ɩge( SsFO$ Ez@sTWX`Y]/҅⫼ XPL>*X(d` .'?,N'Ąy,)?ao#L2-Z7ͬ@!IXBZT9!w6ETYj]f}mh D,A&s2l|J&J*PG5`-iҎQ/b&?Uoϰ$ & ,dDEmVŤB7PGy lG2F1cSPZ0L8<(kQ^Ck!Ȭv`w)'?TmErmߥbgԹ mtGr `3Z iea^Xrty4/ݠJk 󯴑+TL7#Zn 31d2%  -ܺX$#}dXWI wMW[gGǕJe~Cr;t59}8`aɉ.ۆqp=>8-NݏWGX6%nYU{+IbnX{=dqolvId&Yqrl&L>X4 >y>`hVBz:^C< :uciRpcj0=PUv99:fv`(asvCPF6EU-)@ bkb,@n ]1²GFA] \ :m/99EX0&A.X/ IoR`a;gY=,|@Цܷ l5[^c?#LK8hM?wQԲ>[ʳxA^J4,9̒[(Tה6Nb_hMqp6+?k0,K:P}@./#eo3\`Qh EPW.CрEc2pK , C`@2$af;X0{HY3X􂀝Q@6X'{PBoK"A^T49AFq/c -s 1 d)0зLUFV7M޴;׺V`SmϦu2sSXbbXGd?:s'uӶM`/?ޞ4 ,ڽ.\>zԸ{?X4}5*>Rcب/q4+7GŢnO$jy罥q掎  ]1`2X`WषA{CTW XX^q`?5XEK1y,= ԃN<),l0&y!XحdQeJNwg'))V]$Y),K̈́ E`W0W5XRB &/g<cbW.Y?3t +`4 (w$  ޱ n?8qX4 ADKU!2{WV`1ۓQ1ۮX!XKfU8AUe EuMaOc..NZkXlҬhdk_X̢>XPlך#)嶇-6O6+?[sU(osY5}0(L>$XPvC-,ZX+OXoDjhR$` j+x<ce*jWs@;Q ,T0^b \Hb{Xv6ۂEd!6t".sds[j˩-XP~PTX4-ͱPq=]jbVm}˭[J Hb$XF5VBE,6QʇBA 2ɬRqn&<*͸˱@S Bw;fR,co ơX0X|+L"[G~#T k4XFfH/i .Z>b$}쪐Hg&os3{<_Q`<{IU(|CG܀LL YޞG,8naTdǃuӼX4kA$KD"1,{z"8IM>, ,|V@)XRu zBhbc~ŷɲ Pc<cQdZ+fσ].N㱈=,n+ȼ,p'X NyKU[h1*zqrǼg#]%dJ$XU;ן&76^P@A` U 9M@99m΋5Q/yk~3ҽvPa̮gggc!g¢gzzZKM#|Zʌ\ȉ!X3_Y{{{yon~ u"K$[fN`ڗe^=C)~!F6JyMSC}u,M N:}91o؉b}7~EmW  Nax:9łeYα~p Ɍşz,Roj`d>0)¢9%ط^翩멻NBB3O; [XE]ɭIu,ca;u #V4V7 cf3RCXڙ r4a!=EUdj~Ù,2}ly`+75*jZZ͋'ձ?NǾO3~V.(a̤np j*,\SlOc!-,]XXXt MjK=KX2ցA*XXT RU~"adhu ,MoЮ `\X' {i]2ic~2^;ZBGŅuP),v Fȋ.RdH}+1YnKXŘOQSHո7ct+weLbt_%[EM<7KGWŋ+o?7B{*ϰ+^l8:Mk՞kc@F뺡g.,5)S-j_Of]XXXt^9(9eTq/FXf ssvvf :lvo,,Z{}Tг~QNa eձ8֊V}j0lvegH&8Oԕ_.@F<G .sX̿>l@[sGԧ~cT"7IRjo8|huq򭲳b#^\RP\3<SE7~ZCQ[՗l0BNXYB c{mNrt jNCaav}s.Q)V0=4Ι+  _]}OƦGCXD߳Y]|=skɁe=HX8[䲞s\4_S2.7Bqg'ɭWIݘ%>U|(,ftEk{fd +a\q,B\7̜ lG꣝c#%,̯ܬ\iܬVxb" ;ORws,T|< fBݚeWƎN,Kܨ6t)>旼K$b'ZCxݿa[3t;G>9[Z?17wP-3] h`:WoW/3WzrmyfyĜ!u],9/aa͊ᄅ1*ٜZxN ANF%jstcccI,SȨ_RtL|'Cb|  G+!,bR6h;QwD]Xx>_B̊a[r?\S!VRS+VFEq<@XXXDMXDaKQ9۸nܵQ 88EځFZ:VFEm<@XXXDQX{B) "2*,accMaRSYE0*t ,p,p,*,y}^*uQ+acc]aѾ Y]hʑy**΃@Ž6TTj]Q_   {ʇ>,G5f.ʨ+acc ¢-2'-\D[88#,{+wwleT7n@ w[j[d>[`+j88+,88 @XXX ,88 accacc@XXX ,Cccacc@XXX , @X??4U& ׷S M88kNҳf քD-N88=fuƅErV_ߺ;- -Ud^XD%XXBѺ;o$IzHwS_64t:~$qS.jN=u\U XSd,!`v?- ;D+ /I'\h@(E_uXh0@bD Xmճ^Z*#UlCex]U+ |A(]  cE )H3J!w=fuebw#/ja!3 XP,5Q°\X,v KIEaYqFO`,6UGa?ܹyo,B!+οaEӘ -?=)JbA,ېmSmfhTyޗWZF +ף`/<&GV l2X-zΜwKr#$)CRYt\䉙{F82bAFA)I阹J wZ" Oڥ6YQsfOQX?w*R,lvуX hȷ,&+B]XJgA$-Z2n1UyVg,6N27XikHe+j%׍ ORyd_JY4w aWUU p`w-X"evX,+BGM1HuI_d,vѫPñ6Ø1V$\bqOa`(D{b!;'i& Ē IDATû~Q F717 ݭx"0rjl~Z,#WZIdŢcf,Rx'<'_i{ xìF6c!!WMdŢ!{BK Xdƨn7̋-wvC,"a*XDWCBfJTs(.S@,TU?a`xbqDIX2}#_\UXrzPTztS;g9y[x{b׃~fޥXTݩ5sX@X1 Qhlנoы'hykͷ?A,?axbщ(Vz d,$bUgRc M>٤Y^}PSN,|Hhd,.j;_ԫ`G ,=:7yی?y믧 sR,j{>ugc,X cŧ߿% xb2Xpb^Vm ;`XT,IBB,sD"P@Xٱ'ƖĒ%{qqOoqNg&]HH գ8ϒxl E+?ԝcΩ¨ȣQy^n+*Q+h޺ꢤ 8Lq Ye k oœ)06M1 AB\ ŷ벩)ZzPE3#dȜ41L sL̷Ă$I6I94.|O0`F(Ӊ8TI P1Wk#[\-JՈөLc1#RU8"XSYn}BUB)JU00J@,H,H,xkHfk3Qx,f0_ްЃ9nOE h*1 ky[;XOh$8+nj@m=aV^ޅ*wp:JQUXWBX*GizR䛞e?y    @,#a:{jAXD܅]FwwQX.rb8zܲNebaAȤjԫ^YX   @,*ڻPJHs J,fQAP 7^XoҪPiJPpE~ ʭb1: XXXbV~(q*TV0fAƌ|iWmBwhVVJ9fփNrĂ"-j:~*-^3P-TVfi?Xxp$@M s]OLN   @,֓Xd<[MpO,*ROи<ΦDz)ڕ4Db!3B2p|3tvyZ@l5ML , b]#ux³Ϧ&G^iw\67*[N,<׾jE"/tK},.\URnOY2 y2fĂ̱PUߟg^YȢ*c >]j @J,TÓ|XD5gJyy6ͱ94Ps9~ZE* |+U6  k O͑d6o,cᕫ<%^h.PU z /|ko /OLv~4OOͱP'\7ㅙJj7ogYUP_ż  [jN]cI>Opꮨaū֥eܰQbBt1]1j¡,0]e aXņj.un0ZĂcv^oL?G( @,'ÍQY&OĂ"5yϿ1]   i0?;NaĂx,@,H,H, Ă@,H,H, @, ĂG?b@bAbX $$/{Mq;Um5Bԭă b$$$y !!H,~ kf_=Ʋ@bAb9bg//r=xU(1cY x^fcSO,o_^%N,~ b$$.?}nΧ݋=b@bAbnlN!97{+wÝvbguYY/޻?C:X|A ;/bXX|~G[q&-gkBQ4oi+G};rs:G{E~R;(m\,5zZ,+8V=[){W]ӾX8gw_zx/{TwݝAuS{x"=?˫mv:Nz@,^[,wi~hnMimN|XXI,f6y%jNw3slnZf+XˁkU~tuWM͢k?<8δ>6Ǣ;w{KS90F:Ss#n~QG_E4׿miC,[iU>J芫'$$o9,vn[7fG=yhm^kKuu} :jOpNZbXMLp(o'[Kn M]'M]}~'Z,;lIh]GtNZbq[{?vJWu?:ڏ{σWO>MH,H,ވofy N]9c}3΂Xw=RJhXD .TմM]?9XA\+o*% ?:6.o46Xb}#jj'cbQ.'hi3CGbbqE 5QMٽI#" |g؛co7&X.WϺ2 K-yEXʗ*} ZXC:XX,|ҥPD]:f4$b2K,&Z !X04%qWxAnX 'I, 6X[|&} J,Rz,,k=Yrk[yYĂbAxe\Uڔ$( X,&ZPE1L$4xGyؾ7/L cQ+`Hb{):t1;ޔĢ8XX,LtҜ'b* =RA0A((!{B +1p Зv GZa0zn agXtɎia خ8o"u"\\-IVW*pM=4qq5 X(0:CEM{,Db2Gh"xbq,LU}yo0D/FliXGN YY]AX sRZxL.=L"|_<XX,h]1osb %fha=x%⍷,d9v#60I~ Tng|KysĢ=S@,nXetMKժG?rmpΪ$$ ; bbSV)I,ԑ{Ζ5C,&ZwA;Wmqpۖ>ަ-FkFn$ p+X3aLE'Xj8@,8,9mv WS Y~L,BZIc ʴbX[lW"-d*&nDa-J7+gu'BWT.dbBEѢŭc=<[]|I/7j vϺXDu$$3SNC;uVWc(F-_nFO '[}@,ŭᗖ{yVWln?b '+H,H,n%knVW#sB,m0\m;5   @, H,H, @,H,H, Ă@,H,H,       @,   @,ĂpyxaXXXb1XM@,H,H,G,b@bAbpM fXXXb1X$fXXXbqm,   @,/b@bAbb8}=o-޿YS))L   oW,.g}m9C.wo^Ă`1bq S>;oqs&{R~@, XX\lQT^x]EiMy>Htj([7if.ۯ @,H,H,%ŁE\9e7kjb˜]R7|5ˊ-Ă/!})Ec×sOVe:=:'wCǻ@,&--{+{۞^l˽ӉjH,T}bbe gw+2QC5=Yj&Rܦei>-כ/xz_e۶ۆ߇!ro'k~pg0+/SESkXķ[:jGZ,loX)Lq%1Ă"ص+l"9abEb8#59`CƫY)<88wpXQE;y_ƒw?i,]!UGhR~TW DklES>/hyf.˲&726q3c,lJO>5碳ʇe1"պ Z\[Z<`Qa#[X[`,n|M4_"XHOL2E1wku`񧨴&@ꌼ1ש؜fDE,SГ9r/co:?}ؤU,޽Z&;c 뇂~h3*<,*q!*  E?E~jTś*ۗv~.h XC=m  :yc$(`Ll;AD Xي6fXG$fVr*+\rMGB5j`9B0[Zkץ#8g ΙPw.,^_Z b9sKYwM7F"Xc,DL[ JHVJ IDATE,Fv_ ϋՍBKz[tTu1!"4/ʄZ#;*j/X?i`; ڼY7 x"?S6D`ʌ@0kMzvvb7w íE,(b^aivCFCLEyq,>Ȇ)h\L3V9!ۿlŁfZѤM5xXW;d2*cr-TZfXŵ7H!4δ?X̳.Uёƌ5:d Ŕ]J<,vXY3[3/Vĸ*#!uQ]\%*8mt7|noɃ%n\?0y`!ݿ8?{F/h+@a?4b7Jz m!qM4hX9D6X ȯ>ݸĄĜ0ӗ"ԿNZ^ቅѾu|d󣞳WWM+eMoV?;S;H[zzZ7yWaZ/2}?"r)֯zzޙR{h hWSb1pT_}bhʲFKCl  pbB0]nFhrty{W,ZfQӂbn5:>xb_hD,bey@YMvtum| :X\[,"'r|ow|ޮk8ibr4b"|4Qw~V-5a8Gt<j{^Amy%]QE^مx\t` CTHCpĢ!&X$KVjZ>o˂ĂĂ"XXcƾ5,7I,1=֚.1S6B'&OJXX-Y?S/| KySR?URQbD,S.;gz~'G ggkxmJ.(XDvfg_ AN^fo֕M ly䮼ke_^.De!2܎wፊ_bE]Һi?#mwJ)X "*eŢ3 sX,mǽP_˷M! I,H,H,BU.jF鱜XE=#G&G"'͞jY]ϡ"Qyl"W 7.vF{___ڑ'KW]7/g;g]θk O=<=x{_Ov`$X\Ȫ-bjP=H+7XL8|=0  bXWݎ* Z,2Z2_TwqĢ.(^/]Tba5RTфZ^fR50ܵŷnմ`"V׵bgIiZib1L{bM:uU ,XXS,:?M"Qmpw; ('lp'q:{ODf@, uݾܐT%m{piPK躻 A륥WG߷F?]sF@,EfhbR0mxXb,J1O eZmU#UXbyWcMbAbAba%5:$zt+S Y}Jh4E(]$zZcuwfk9k:;o[vӉ@nۭ^K'FFb#dC Ţ-QVaMP;1],ӏ>[ <'(XX8_fES ݊F_0"8e=e|aje"+vd Wxِ B͐Iv`o]%' #r0iYV}թ:E-8C$7²^14^X,!V-22 Ci$^0xb <F1Y u]=}dw8/71FK/ŊP{(^@ P■+bEDZ_Ł{ W(E!DFhȾEDfh10ÇJM`ݽ5Dܝm61FK/<{kl jX(RϞp/b#,<󷕾jN~T)hod<#^#|;,h_ >ϒ #-䊊G!cF UBOnF[}aB~8 }G(ZNrfl..5wdP mң߸&od% ަhO1`Qhrk)5MVAA:vS =YE(jm(x=F.}sd, cѤQ]dhrX(xaN.Y55VAC Ots&ŌE~A&W,@ `QQSAL/b5r'g`qӯ3#/2š^$ʹcX ܍ Fd,Gf h*?$c|Xf2XЇwc] DH `QnRX Nr`@eI k.e,*}w?AЩ] eS =UwP`aY閲I4V`qXېESuu mRBHu2ж,lRQ'{,L8kRX5`@TGQ]ߝ"+JՀ{,e`'Dhq,@`q_CYX@Ƣ1Z!;Y(a` D80,,SX:w02f AQn?=g}X17ࠆT;k&1,A4T킵fMUb)V=".G c?89af9yT; cO\,UoW,Y+L(⁔zyC9Ʋ/涨W#)AV[o }m}xNjYbq7mliyp $$ޤtve."rH,C\b#X-cb6iYݵ%]ߧo*r_H,H,E\sJ+|~C}L^M4X|TbϚQM)_ƌXS[vR>zy辥_bVBt{F%:=[t-cnw M:TYbq'̦+j%F% @,pbdWʿXֿlXh^T6h~te=QwBu;Nu̪koXHC{\b@bAb0bzC_)rF,~ѽ{?> հXx ۮ;vu'u6m'bm $$,6P#qy3랿q gϱ]m흉knĂ`rOR>xigQ2b/xk͋MOvb+tD_= po>   I?d"j!aⱔ/$u%ӼmmzE_p3kĂ`UYD rX<5aEL5"AbvyZEwp^)PҼ C-Ek  RSe7oJJ45XlmJ3Y({^(@,H,H,&X,%W_,hTbU)˫֪~3lK뫘~Bx=   Io²bcAȋ`y^pXعyzb/& "m ^mgs%굹Jˍyb@,kE((^ SWXx5Yz&3b}:bqW bq]x"@bAbqsAubf2z:s%bqcVg.1Y; O,"E-5{L,f.ޣb1seg, ρE!rb<1 ҉-!8vz qRڙ`tu.4RꍀG)Q:\CڙX?TET=Vu' U)Dq$s{Y{=P(vҩ՘d! l%5U1*$/bm}R<3D.L&ʾX5u07Z"uW*pWRbƟ+'#Dɟ/ꊢzql TlPzib8R׌LkN{c BEںi9ޛo?qAmzLjDŽު鷤%O JStZS#)EFy #H,H,&o mިuox8cq& =`Fٮ^ WE֌*;Bc)e=j3_%ˎQQ$f}h}^/o)3jX,XEup$wsC{UFq!z,ƋnM 6XXLP`&*Z,l/3ł"qX{K y#l ID)oxgBD̀xM|`NXLX0$z]bީ^Lj}Xsi[Y H ZCCI(I@P B"tQCA\ RqPo^"nvUs&@KHk3=3߼͌nma04iSpy<M_Аd^x s+:ڌ֥2lum$Վ-iz81lwV6z/X[7$Ĉ ! HBX>lbPl!.nV⦎K\X8<j'3T'z iD9b8ç%E*H1[s\t+.rԢqhÙa.F:u]S}K 0?FXx(z ԗ0ĒnQ XcqfDz3 iKAX]HJ]bFQ#΀f郡PBaE@X2aa X0{CB5 x,{=mX/%,8f6SW*,fsC[>;P Fx_CTvǼ!,T"c1taa۪=yB1 x,tޝ ȔE[Ih̿gL/֖-aAn @ {E!]cf-a0Q<eF[N91ѧ%bp'1- q9Ec[z~xg탎t@ jwXL6۠[+py<{a?@ã9X4ax,T谔EKw,,S焔4.q XcQ6E5ద/=%M W܅k^ֆ p5>j@oX@X6ZZ|e`) ykɽԐ%Z x,c5Mnh]6[R"6ax,W}dz CCxP(ګwAXH'Wo&tV x,Oe x,B6*xx,6 Cr<©?oa>Y-ϩRn2LVk?!, ,<Xaq\Lc @f(mְgBF]FwU>F ~)F^YE^ɷ_1|6 ీVh֏lv؅yDH2b_Xڌ}ꪷ`E-{ Yٯp㩪Ya>A wa x,03 MF(e-+,bHXTP0oVXl9 (lcwOXL.o庭Hnaw]oGN{ H c#xbf泱EH[uC@MiW4tt!wK7#:O򧹅QjM#e4 vetJ"%z``)/β0u2Odf^jOW.Y|Dh>Lh4$bTqeNvdxF˼±OZΜc60I3YbQo ٝ aq^=|k )%7ud 1=l̉sGF¢q~/ٗo֭}=r5+sz~}'yщf+fY?6D=yg F|K~OldU#œLX(EUJl#ϡRB:Uc"Ma«b(u' gPZ@ $@LЦ􉉵MQbyeX:TSgvc!NUv%B^IXEI*<9Ǣ a9<#è, ڴiXhW6\a$d+ 9XDT5r72k}D(@Qt@S^p۠ &>%3*h Õ┩^0[Y`QAk ",sJ,hMXǡe1 I$|XMGqz"h>, e'[PZ!<.~^ ͛l^[Eym^7 7{M&X<<|cQ Z- )(Xܑr 80,$< /}boWI+,>kfc\JB.]~4o~zLX⏻_X܋ \zĩP@6BS`?F>1] `vR"RB] e%`f̹3`,=x0C6mc=ڴlE5y1ʌc-Sēl"ӏȦm56`၊M y ,r>ĶWW]\ X] 'W/ Q8O+o,akk,vuj;X3&ԮcP Xm!>cqc~vz,Wfz,_{<CBI 0rbԏPXYqXl :11{X-_GPr2X(+I XCU_]oF0L6u:ӵЁB6 m^2XTmDKX4 DX;; .ɯ햽'"GҋbO>|~!' +`e\c}V"g͉Q<3VhmA;F`!π:߁>r!./lɧz,^OEJ oUB1EP|C`q_!x,.e),,~د.*M!H򛮟N0>9Jr,"yXh֡- e(`3 oQT mڴB{,i{`bPF',fq4]<`Q@hY`1A.:~E6C6GlNXsyˣ. ώY ;*),W"HK!l6\# ,OY&ۤJ,p]IuWu B D.-I =Y`!\}}6q4ERov숨L-,>c11_7ŌW,$j}Xi"[?ؓG0[s-fGA;tjhlah4@%hbݰ}ٻMnb* ^}uϯΙm]B:39s|>} >0#Wl5>Mݍ>]c]B92'5_lQ]P6ʊ1نtW,BbOݬ$wUٺkW(y$IBIl8 k`Ǝ{ 1dPsx D, bmgQq!k,:|wtz| Bw|,[Vҍd"0k3C 睤qדv`Ir )%>h׬|E9X,G,!oQH_=,dCUd,u.!i>}EJ&lb䷎#c_~(.zxr(C^psHmBh +ѧe`>4`N~Ewl e']U y$I`dX==,\cG~av t  "4XW|`y" s[<#gtQϚyX t.{JM>}\`uEYEhmp7$*Q,TU+ë֊8zf`sV,\[_JMҚϓs<*#N R4aLm7JH%&)ϲQ,^n$F.\S:*광`=# zK K}rqmͫW?~Xڎx>Ap3X*9ƒn8!7BB`$1UDƆ9bc$&G,{$ =9efDJ]`!$ ,\m,P@Kρ!kʷ$e* "*Xbqҍw&]Cmk=`qg5-g龙94OXX@1>M@Iô#TE݋yi+j-p__I[+eȺKljiS}%O}9$0w2w(w|4Y$±Ԑbm\;{H;5,8yvwWz$I E!M#OxT̤ $mAnŕh`@ D, bQE \_O!`Z?_ _h F'+pXƘsIMf9Gy).J 'L,ϏkJ€)E,"8'q{qwѲ8 ͋ߍ Dg_  b; B򵶾vp8wX` F0^=">z2+y+B8qZx=MgaG-}m׈i箰h|~Qh:;$5٫QK0X|%ğ WclN:,@ X@dXydSWx,[cQ`'?4@`>B7k,Ұcþ',R/(x[V q<3hW1 br`qMuc.cߠs0@  XT 5ADG,~7 V OLzk5"Υڹ2'&F^Bٳ^ ;eNB[2ZBbf옘?{֓F/ 6``FDTQbxizk}}aW>^0X{AP(  X^3am };XD;p>'`AY"+Q"I@%(v4&>H$YeSd|Ohht{Y >_E@P(  3xBlOu ?!ĕ$?o X>" XPB/=kk0!J gQ!X՜~S⽳Z&NM..,P(X`tLz'-m= }OImhO#IWX`%&&ㄸRH!zyG'bA8 $uDը-XIܣ>B$܂,fl1TEsȒFoZR@=Jptwͳ֡`Ba3Cloiws'3 >!`|b̥y ;Ŗ[ Byf >zoZ 5M#i)$Ʉdؗ x(QYb=g'?,zO{`( :6z6f$/p G /,2ybs> Œf,^FءKR6>n~OZeDE On \"Ѹ, 2;I $0*Rp%Eߧ/{m$DDX%~ +X|c1dH^#ˬ>X!%/}s-`Gɋ^ LZ]:*UFy>]gr,rlT,[nKwc_;  XX+"`A"f\k}h뮇f`q6`Qܿ K6<``Ba3Oo/ 䛙m?T7J= 32=&jfrs~,,8EEY_;  XDi|Lc]цY=1X|^|eX}u4ר;.Y,`KႨ|)D:RR_I,.^8ҐK2s{hY2E8ٰ*{OubdA<,bΝ7EZ:ݭtóNIj:b,wJsf/JOzֽ'NY@IG:L(ҠZ'tymfaYRĔ,!5}ƮZ۽eN] EZ3u]e4*:N֝eM,j㻘< WAFh>*T!7}ƮZ۽EbTѶ@-\ "Ihz^ 6WeM,EC +kK[BG<[5љ#XP 'V$nkF^?O Y|3 vpPi;yEYgZN`ae ;J8=*C:(?A=1DӼ+ N4xp9\٦L>^CT 53G<ZOsq4QVcS&EYMCIEBV9Ȍ^63Si8*8i-GMQPU P+mMdR쩰N:V]|`acX8jm~G#V?:u-x9?+Իw)o6a.ܛXj(ERK'f/o`0 ڽEx,  XNgBg l?̫*O 57lævZֆXQPϺE宽Wo4dV6)P,Xh޿earWl()[Wa<5?a+֚"yt54m@2{8e?6A^3`q:^ P.QZ C2ӧ`Qa?sGtJ=`ac >SW`~EE\Pa:Kba &b{K=p[ Xo?1EЗ#XPJߥ;}+HuXmcO\^@6cq̝%)XDϽрXPcXh[XPX P@ ]<\֔uʚ#1IO<+EcHQ!s{̥x˭ oqZO6'Hb{+|Ϛ!{wL ү&BQPg/4³cAv*cn,j|K^74"XT6_JI^LZXcX5jiӧwuLqca 73jJtk@%~щj+8s"/)kLso4`7Ic* 8cc*XcPbA;+%BˍE/*B5{lo#!12L5f;مsMN6t4ócAx)f5ΝOH|z'5grRcXnvb]]Ivca 2cA/:9/ɧM}*c1m#sohXb".\c8]*H#;YBb"!ϗ |6G 8L?b0N{R3BߏYJ =B>.fx6}7XI7-0=h(.$TGxsiӧwu$ cЗ_VHX-t c>oOrЄ T,Xăv`ܬ2eO#8EˌE7z-[ō5W5DG$Z =B>vj-&`#hj Ƃ-T_4{X4Hw& =yӦo;a ca Rc#[ ; IDAT['kS חmƢ,%cXLCL>+H mЗ jbnyWݳܧ2. ?YSᓷc=o00b0K*$/XJK]\5}O”"<-.3]oN'-:BiB= aBR!.Op'd\]6cGh4XX#<-! Ba)lzBE|W4&3Yub,cXLCL>8& sT ďz9d+5d1w՞3Oz5w8c,0b}ł &+J,wR&Pm斅D{1QY qv;+v(OI{N|ˁ8@׷$8&za8׈،][ OO%eTO̴.y<g{qb*ަ9ejT6$G9:ucXLCL>I\Lj;g>k,qEa(vfʍ4JiHвУ{O;&aΉJ-Œ8|v087lT,PƂ rT[=^d`jZÓQ79~z`Ƃ^.rΘ6_'֤eO 8շ)!~^6=u"Ey|Xh$|'Ė2ڻ یE CK~׫?Ԕ}X #{ovy>?B˱a,!LU$HX `>t+jYNZ٘QnF0Iߎ'U7a}cW`,@ >ocz}e2 9aBwQ"T heƢ5VY[#ZŹsN3 6Z_v|UVcE8G FxFB,)s9n畅4viRe6/1΀jS,C͍ij[.-džPBL>+I\. J3 ƍAntl5|0M/Iaȧ bycb;3J]oea,@ `,ێ3=OY'~~*m)%5s]Y-=w #mzxFBft76ݥM ](I^?oZ4/sCLՕ$Ztw_{~fMi϶Sڞ7y=r9Xb!zv]`?E>NAXbŧGt܏n&?}? P@Oi'0ϳ8!~0b0 5 *BD@ `,AnN"`,`,*XcT,P`,@ `,T,P`,`,*XcT,P`,@ `,T,P`,`,*XcT,P`,@ `,T,P`,`,*X? 'ʶ)Xb!U>w_cc0bœz+/xҪ^cc0bS_ ?3>ϯXXXb5 <ȿ&`,@ǷdzZct7]K?Z_ܒX9U놱Xc*XV^ǿ~ٯ/o| O>㫭_Mfoa¿mqmt5mfCR fm &M$*dI #EPj7H65 E^F"ҙXZl^R"#ޝόv?u7ueݪ(\8U;MۭA"øcypZjF7[|ϴ,N<\te2bD2t%  ChHo~rLaHb?Q;+NCdgJĒ \&/ zOvB֗k ъ=bQ73kB&b L xͮZH$u  CHo BΏ}WN Dlkb!Dn!f.D4RȵtΛD YV]Fi(JPTO-9oUZ|co bM}0R_Oz3+ JZk] Nͤ^ę-}['ĂbP#='?Db!)PKs_j7Eql{@?j@@(ŒG}sy(*%"EA饿h gJ\o[c|Ă@sSՅg7E>qzX((J3)z"_#;緮iG{E,lzT}zlaYX\ V?b@bAby5=ǹb1*F{ţ͝#tE<)A{5/6;tRʫbQ+ΗAq972"XXX(5OLÊŠXM+YeD\l5Ra(Dͮ>DxXb@bAbuR9$Abg+S,|^TWߞhXRkBՅXV=|V:NqZ~ҜjǙ#XXX (VgjQEn sxcRjRnX?@e߯wu^KqbvE,  $$/e,=lQŪzC,FlE/*eeCլu\ԏߓz{Le.oW]u`prg{yW3F^~x6Q ШQ=TOŢ/"/>MUwe>,#Y!fQM}^viE"}U(6ԳK8m1FOoe`^/o-izBQy]64[moWN3~3FBVbǪS.Xn  W-fccXN^d:[+ʴw{ޝ}mJM߲OOtwUZim aG4H,H,H,<~hU7>#b@bAb7=o:X L[= !G'bX @bAbJ}87v  Ă   @, @,    @, @,H,H, Ă@,H,H, @,H,H,@,    @,      @, Ă@,H,H,>x&3V@,H,H,8D,j@,H,H,8D,;b@bAbbqM+b@bAbabK50 Ă  @,H,H,x}x>@,H,H,>0,֊fO1XXX|`br]?s׌c f"-WoWE\ b@bAbefĢ~Z[0Ă=Cƪ*{%臿iOǣׄX-w[/XwO>ټO yH/2Ă#zmoyƿR,{zss{Owz>Mډ`;́v;y+ux{$ߤiLHӮiz~_Ϛ4RWQnn֗cz8LJ4wGrA1* MbD4 jz qe%ƱKp 3㙿GG!~lpNS7* Qjt!0Q,5N?2'.HLCŒ+?Fo~^Ժ篒rs%>('NBʋd={6¦_DWIXb@bAb1|>ZWEf< bw;__zXHCj[҆wTpN.oZڼxrQ]_~5%SYZ:-]KKBf6nm3)}; $$3#D)jEoD_, Ȅߠb{5_G$S\R,<ܻ?JY@N.zOKu̯(eAoMߚM1ǢO, otKD^f͉ $$-D3j_7 ꉠ;A /JI#fJm|b%pkFFP j:AsZw: DW6UMPnC]::X 1V'Vžu*/bq~bQTjhO. #X@=g+fb]Y/mk*s ŗє$|Xb@bAbqt#Jf]Ý\,P,Th7kۦFuͪQ~lĢO7]F,I4ndbqC.X8e~Ă(I 73MbM%푉E?d(Ԩzv,b?Й4b(mgeI"7s=>b"= Xb@bAb1+ZduPӽ}9g w$HX*zŪP3Biٕ*䴔_8'|e6ܳTE>*'r>;ob@bAb1+jՙ"pbYb EkV,fZ׳ }< {X8'^zΪz\,֥̟YZNq^pUDA6_l '%e||Q"XXX̊zoC݌'?d̡5V,vsk`XT3QSn-;bzkAbq&h_Hތz䊌n's=w ĂbVϪUwBxWʤ27 n 0,u켭s}O Xˇj[ XBM'j^9X&ƲvdN奔#EaH,\f,\LXuvkDyFXdtP/:gEXɱ`npѦ0m|WD,=ʝ}ۑ$,Vf;z:XXX GYe@ugװbN,TCB30n=!|̱pM3li{ІЍd MoU43>D,[noGQ3t al;wݵU1Ut+f'on̈́آሻ3EAۦU>ڗ³űǷN;9bbqeq)rEqIx $$ 3Sӭiٟ&(,rRf2KG  cFCZmB4R&}j~=>,Pjb@bAbqhD#}xb1QQ8jY`UM,|hga%zϹpfœ<bXXX XXXbX $$b@bAbX $$ $$X bXXX [s|w/ǔ90  3("`r+[݆_QgPN  4ĴMj\agF*@,H,H,>8u%n; E6\oV8>ڻ 6X !aXJ XbXXXR$žHja'XNcus*w[sQ XXXdi&JLJr%]*GQKTǹE?Q*TTgrPR0.ԢH܍"o쪰cI)cﴡZA͞ҷ̼aZ0#셪NdW54oa#M(*taeE[ $$ˁhZj݆qZIX}7 CGr4y?EZ:YTxs1PȰ2]NFIaXaX߸Y5^~dF, xOz_Z>Q59-R-:J%RBkZ bS؝Y[BO}XZtJ^4+䤅 IDATwuK-qm#%n~!]}kqw6 + zO GtMo6Ă"rET$} HOQ-9XE`0=?62C,lm1HB'sRTTޢIʿgva['GbH ٵq~ĂbG<>xXxJ~jӵ"ZY(_kƏImYN]hX-g+߶,"XXX\ihDf_5ߪz&rbQyJHeQ-Xv|c2-'"$ÈwUigufX YF.bqkTzb?K'2@Tbq;F)\cQYKX43F# $$DԱ2bћDHQLK4wiNliiܴ'2EMXb@bAbAٷϓXT%n|nv%@yU,r}O0toU%kb#XXX\ };SL*~MkJFhbNcjjh5VBSd7כeJ; Ă_,tXbE,6xJfJ(o`k$J]Dme_Xb@bAbq1|mvl/~88-%O&'N(4tղXԒ}!Z{ _Si$VCu()P˙B.U#7C  x"COOKrgNj&j9˅ba"lV6h1xBW0~b!8:f2!B, |' E-0:*8nKBf( n [Tl#*f+T\bg+6lu-5$.4̉ՕAulDeXM,Mjr~.davp* @,H,H,.5Z5d:3o/ 355Զ]Ţ9 mg':d㬽nc,nV7W[9‰GQNXb@bAbW9X>vZx%߬Nm4-||RmMϯfXGҺK(/^8P3} $ծLtҷ"ͧzi\^ݾ^~}ZG{;?W|ll XXX\ZU|.bטZ<bEZ]Xف_B"91p&w.^;d^sqsvoLR\iFNJqͻfY|0(@,ĂĂ?Y,)Omv][/b" 6Eޙ.b~O=Z([bp ޿^E7=$[..EyMMvl쏺@GYybQ:xBVZ~3bn4қz   6x*9٭PڧVb1*D/xX‹Iy\(޾]LGChTo򸥻uS،/?XM kvG~Z5nll  bb1k5 /bZ5o~X7Xdz^b.~CChCTQhT>MX<@LXizZ_xĂG?Ţbv/B/]bP-oMrC,[CChv95υX,/ۣZbqfJMj*1"#ĂĂ[洣xĶĢ[,MEp14FeG;U]j{cy06([VzH,H,H,XxpBUH|WbBY?D,N=X{]ݞX gK~U;   @,!ſw%!4w񙙙Q]SK,ZvBN[`=|MVjoH,H,H,Xu¡k_R(7zEDwbB_]+Tx㪹ec=lY]]WS1nY RR>vmϲ6˶cXXXb1TP`7}UbV*zvX=J՞EhGgy£zb!$zK9#)5j}e_%.~PH,H,H,Xg7xebYaZv }{gb_ukj}b1J&v[JY4+(@,ĂĂEIE_J,dXXorlVCH,݆LĢs +2    F,]=}ؿuam q5R~WJĂ k5}UýSyay$@,H,H,~$ó=ĕH6 $$?X $$ $$X bXXX b b@bAb1$/:uk pe ! ѷ'=5"c>bLuĢ"DX&\ն[R]tGu瞙gu٥f, $$'?Df!) \,‰^C,t>UsXt8tgGs*hĂFwDm;JbQnĀ#QX'3uXt͸."m=υ`g $$7ˉZyu̵"^}XȏdbExrf< 5mfEK   ΔT c0Xb(D?.uO9$G[EAE],]"XXX5O=|b>H :ĢڪEuS~bXf,}t]"XXX^n0KOom.mbb2X| Y$d,6'oչKNY(u"/+Ăd7ǂm?~ŋYx YrXЏg b?o^~e旍5yΆpb}i_`[zsEO  d,6{ZTT.7?ݖGGŠ\X  cşͿZz; I}gs+xG5U X cҎFc! bX2-o͇OyvvF,d߆(?qxkt@gfdYodXI<>|,& ]*{S0~&oFDjÖi܊uTd#{uc , :WnNV 3Q}պ^C1a0hGԤd9Zb2Xdi;ӗTNg2C").+ĔL|*Ģ^`kFz".7>\6Wxho2t%ÓU xp"5J⫗Ń[EKNIcJZ7]^Ȳ(F(Fǔx.L d,XOu Ȧsbqv=d04:gQ;D(4MӢY ;;'2 qGDaZ4$Ţ,mE^m*έڲȭ#*Ugil]u49 z78M;0Syyw}rް$e53FŐEb2X=_ʏ"Wњ {,"y%[$5DnC24 ,JQahţ+ĢjSQ$'!qryJGY|TBιy65rt5)Lwjx2"͗W]UĨu );HxBX cB.1-"AwrzQ,"Au9 y.-"umo͋RMb'[p`ucD1a:ɝi4"VrsykR&ӽxIBeI'r!w @&3q,TEwE`֚ڹS忷["J4] )XDA t"5"mӞRD[ӇTƑK n *El*4!d,b;J\ڨfKtVdzR.hlŢXj;ܳĢ?G+ZAHKH5L9bq/sbѲfM d,X.ɪ(*{kjCd}XhAvSa0SR,\0JElXevb!_iutP,"~NdX6yTD,FTke3b2XPa|1TuDYc;7q+#;$kDbq/PR =C4';P}?pW"aҥhB)}\%CT7M޺PWb#*_XTթZ'Fn  u߉ދZĪwenCi=VBQBY3   c ?APfY{".bX E0/ɻ L,6YTv iݐ; 4ZZ֑\>ټh\$t8tc1DVPV3 {cL֜<śZ{h6/RdX yA^Bu6&X2@,$<9G"S튜,JҖZnAEbܝz\hzX%{b3et<gQ=m6 ,<YK.k{Xhƥ{G߿R_'? ÊЍ$xe'oO^,  I>ܝڽ{ksl!҄kmwV\_{w=$w{{}3xEnl݇3\WaZ_ 2X,  `m{7~1~{ X44y㮬t[ 'Fk߼}ϽU'c!30`XX泽'?1ާ~3}㓱W/<}b30`XXnß{1X}s2dW;R>r'`XX?߉-}~\X< X44@h,h,@ X@h,h,,  ` X44 X,`XX X44Xi@@cAcq%~o]ئ IDATu4E**o X44Gԫۋ~Qo,9+1M,`XX\-%9poLn"U_Cy0Z"XDe%X,`XX\\8D8ޑƪ/!DZ_j\rLd,io-,. WQ9 6"".AFI'8, `XX|!Sl-km4uVɶۢl 0۶揖7zGY&QQ[u@S|ֿ޲8Nl=Ǧm["]>K(REVҶw1Gwl?6{k{]{WĞJ 8:>k_뎤{6XPD.NSGgI!E+8'|?;[] NfZMl?6aaP.@h,h,Vd,2*&?*^02rUry3ڈ =}ozHz tyb(Qћfe}W.z3~*; VQ>(ؘrْj=XTZLQb?6aedf*#^۴@h,h,V$QFzn}6j-Sk,΂Ey_׿9^k0Lp@QʏXXOXsb?5TZ3qo;+Kކ` X440PS @`@z畢Etښ,WqahF81~4nK$z, ƂbeǖvOUrğu#ݧ)|a`1) fMoVT  }Up{z?Ȉ-|W[`XX,e箩\|CVt_0X E{Di0'Xac,足h\K8U% OD(7\1Owg-ogͩ+̼Q^Iߏ27Y, `>yD` ,  L+սͦ* ,9i9 X\`Q{Wλ*m5,`Qcj, 8طn)uE}Y,  + *@cAc,`XX X44@ X@h,h,,  ` Ƃ X,`XX X44@@ X@h,յ8_(6z\ɪ 1 + #ǹ 40«z @ӄ&@BC.r7?b_LF}13T[o>O=Ut,@ @@a@  @a@c@ PX Xc@@ :X (, :X (,Ų_u^܊,3lGIXլ(}V\"܉LjB4]#v8*|Jf(Ns[aÀ.pp#+HnEtMapa{Da@ ֤9Õ-:m(h5g.Xdtiy#ڰDHXHג>] ka'(,PX Xc@t‚FC !XP fXdti.-,zhÅg(,t,б@ ~baA7-SY~4]J~Z㚷͕,ғ?HAKղ lM^Ny@5cK$NE XE)4EU-T& *Gc83ǖ9I jZ:;Bp6;:1'bf=o簢#֏a-GOA#0g̃4`X*5aPu@rjTIX45,2o4POLҫY=T6TkVKҔUcAcZR~V6PAPX@c:9P.(T8W{-ݾKn}8?Xl1$u(IbkԌlE:8 .u1h1g;_> >5 n;syf Y88:9emv,Rjx^8,Vӛ ޘ)ńT RNy F$ X<"R =guuܸ]! V SmG7(T7&2EXHIY J¢Wu5먉#=bcYPcIU\YHqKC핸dpC2 t,бy߮w>~v_3$9_NT8'Jpqi9|$dهƗʃgpp:uA:!sjgڲI bh/6G(`PXsLbG9ˡCXLWk,g}?CBL:B_|`J(US=Ƒt<=ppC39=%fIG$6-Y@gBg0e0%:*'2YXHIY JZ)‚n=|fZ;z *&{l,l <$mjȉc*mG @a@ t,P(+, 77.0~߁Xw'h uPV9ڒ4)o*8,o6[Bz0 38cG֒9 6G 2r֩ЧU> $Ia03$ \p.`[Lr,)` 9'!Q[[x:lMHgA/jW̞\g6mTDG(ڰO! g)䀤Jt`ϑBz2E[s'5RX";,0 1D:Mv, `kǒ4{nHPX@c: '9ō?>$ysixM(,.,,Ll_uf|.:KXo'Ҭtk8sc_mxozN:bJmDyx$P@y^Cv?C0úlCSBR M#5=]` ¢jB -,t/MATN}P"SK9 )R!=]AmHas7okK~E1o'XA͢܉  t,б@"oǼbw)Ga):ygnxTgMfq ,,^/" +*ҵ&$M‚$ -}_^K)CB:Mv,::TQ  t,б@?~7U|ᄚvz\ϟRaU*}W<>}=Y|Yy/1ۗo__|$ᓟU*qXrz{?O^xb_o>{rًqw~W\>}/_T93O(,v',% >2aQ;MF|‚%QF#eXNִTãIGfybϰ# $,^ܛ )ϊ؇ڮ>[O<cRwv=$]dt#F[{ jH$D<7f/ӛG'yJ/4&D4!Hb0xn>SoTu7 _}(9>Uu` > nnA`tme@W/v׽2P]־_(,,Pf,@vXnU6)ڑ2fcn^u`X]5/>2v ]I obk=UrҺ^su:p!"X<ΕGAtX >w{Ź5t%խzYuԧYo: 7 L7{W(&(`AP n߂^PƙX\nߩrh! K|-MuSMq7X(R4BXܴ2v7ڷًeN0WΝبn$!  f,0c [o.d`&`A"}Jb{, %\9"bDpQ1pyu~V4ܙ:ϵ!1Yմ '^j;'vi^znb3DK|nddE? ~5RjG}X(7A ivdPPao2ub|RﰮJ,pnRB,.H3fW?Z<ԮCb)#^Hg$@GW 3ʬ2,RwvNk(`Q0^s_bۆvwCU}5%+XyF4VW,jU`$\TsW׆=CUnw"MεfZSC~^;FH>cZzӸwm&`1NRc@BCEӺ9UUХ]Uh 5ߡ7  eNhrctfkXr yw Gg: ūJ]en[Ґּyd,ˮt2tsd~s*+O>ͧ)(yV#?o90U9ZkqR=``Œf,0cak2!+͚651{fP,>$T+ ,&NNtӸ/XA1WKlW aLPM 2om]`᲎XKҗ\Ya`X`17t5M&MniSc-ZO\6?X(iw h 8B66kZ'[pk8z9 yFf/Y!M,IާBCEu5Qq ּNAtCc Z9J 3y?ϳE lXzEŠ afP(f,0cBu,*br0XQX}\%XG!X$=(XvbZkG `Ზ0^{,~B§˳>#+,,PůPWJ`qp2,zkQ`4䏠Yv/x{I[[A.pZ`Aױn_ ,P( Œf,bRq0XiXaXa}LXI`' c;c[{DTqz^x9 z3!*Ka-=$ B!XPyQ,:H.Y J z46_5*6+M<<]ɕ1xXsd=A+`&4+aչZ<0( `Ba3C.|ҪN"wc`l,,+##E(Ig"'V콦.c;cG `.3i!Fg,2Ii{3i D4KlX`aw" X XP(  X Hϋ'$#ek1369{W'AU1FTiG0p>_}ԍ ݰXpU޾ٍa 1h,X *t [TAc,V$\h,ލz+, 5Aa,~c,ދt}X@ 0b 7e,﹅]iO\3Jq{S"]'{c*?43^Ŧs{~GH'X8*]B 8wR~r(ykܣ Ń$Ν̋q7Fx/)ڶ#%2pn5 Tg]oAx Qv]#6ăuSHXGI |m%t$RXܴŋ́Ic׽dj46i_ E §xx]Ş%r{V3%.`繭E1L%b&ƗF,[2 p&P/?Nm?\^m"U6TJZB *mhaVd잲 oP`NXa?6mHn;޲-O︑MA?We^sSxֶY'qŐAo 3K (+1`U rn7hNY\k,"H.2qKʏF}_YZ( qIr(Jh/m?Fj,$ߡ|Rޒ*4#K6*| h,X`!cq@+ƷnWn,a 1YSd ?[,XPBWZ\tVMc+k!(,boLJ2Hjk5fuS o ̏Rh&#0K.lm%0]kAm0da,&A;فx*E:!6G$IIj+^]~/~(3A >r1#Ye 8(x"N%ejL3FnsMYӇbV`isHGAghX'd05%%D@ 0b ↌.w֑ b'O%$=i;1|uUvb믖( ʛ zV ){e Е-K(7Qu4UcqZrcKjpBL{SMycQϖl40+)SX@`#h,h,>Xذ>vc>e|ԌxngK&&NƢFm5C~g ~iԃ"fǷOs]!v| AQ?DU@ixAp7ݲUH1NMc`ǻ`ˍ4EH)yCN~?9*;SGPN2<)aTXTRj4Nkb _"r(XhqmIc2 d"X qC"2䮸 /ƢЖX4˕XBxJ HR1χ P֊4+R-l.8nH ܜo{" }$ΐT ͺ9;?]tRtbcZYY6Ƣ=bqܾX)עmA;x)CGf!} } aī_B #@ nXXpw:I \ƢTjƂ[R$dg;bQ̆QhB>x\?(B+x hC!gE4'ED-J؛7֢Mc6hC0^5'4T٩ƢNCzb/6V㫊vEyYXKioo;44yBU8%D@ 0b ↌}F -#ԯBHBd% r.b)wB2GO[_F6OZPHpXÈ͚y4Ž漳Nʴ% d SXΛ35vBR:k:ZD!1B= AۥۍqZ##5{Zl4gDݖU-FUډSD.[%DˀF,[2LV:(DT쮵F" yE,OKB#ulMÉXGhm&-W KD^Ʌmll66$\`ffw]YZi_R3P߇gfj8p,+a %[/՞[J-&Qx}~p#֢MvPҙlĿb>@ Sٗ~gЇF_dgD P7s_{}`x(cQrp 7:g<4VlyTdwgs'  XQ Ws~ [fdZɴˣf? S6#tFoEky=˺N/ {~'c ,Ƈy UO÷g<a!e֭ovJ۵jm[ Ȕ,Yo%i(ՃL;ì/H!,cSY(GL䞪Sw00c6>]#-*}k>iЇގzB8p,-DXV:ٟ~lLgE(҈K%%SK M"? ,`a16k?;  Xa 8@Xp,Xac8p,@Xa 8@Xp,X|%d^^%)@X@X , , 8p,YJAŋtl#abd+}[Hu3wHWg}><)>AXNa .,4%]0ckx#'l)Flx/,o>~_߼J=[8Ƕ|Qm2l6w%Rjl|UZ]݊LL첊Tj;ez^5F 0~TTjڦ>_,YO {;oO6|G7wƒ7Gr+:_3Ө7:…LFU33^i5jBL iyi U5Q5}Sϰl0W6$vj6Ԝ,pJXM+vEMnBʨ\ͺrp4􁢪ʁWA6:1wPsWްKVՋGafd]p,XD6I>Y*KjOX|r8,ʆ/&&b[f|o/2qh$\Zf%[w$&L$}~]$jr)*l.-]^O2yîxx'&K_$8r$vw"8@X mĥIl6"xZ(o/{_Mm=6}h-- b^I/jH[x{U/+dnv be#ޙ3d&ɮx1IL3cSѮupW9q:X{>SiUk7 W+Z݅p> Fܧi~QP %Qm _OB2 Ur(tv5TAm]!Ky!mg&0<.=M,.) X8˼lKB:o8-n敽줩n'`_Lih<ՋYh~`)իL2e*c2^NtsUهz Xl<pb8P<2-AViN#'҉01*D3= h;HBb3=QdT/z)PLe,TW}c{biRܼR+e(,,V$= 'ƪ^eݭRO`-LߋF=xc7<]*k`Lr]CW_Μƥ\4±(n-A-},9v y(Xq_kjKE_ 9Lr= x5h8=#@o!~`,Q: +I4\O! r9ҁ{ٰ3`e:z`]ܼ%Gǜ1X2kRv vjKQr ze{)PLe,TV;\S/'Ŧ)8D_M X$YΞn/)ɜ'GmD`i,-0 * LU՝[t|aBMS|NrOid\ ,&XXowpZ G9ca Wԣ5p";0 dZj{aچ8Gn`0,He"hO>4IvЁbb>ViSlE`w|mҴ{QyyK4.yڌJ*S`LXŭ0"_&L +dbnokjIbex\8<mcׁmN|^nyYr,`a%"ҁm-"V*ŧD9zԃfo\~'lf>F΁6,|0G!& MdЬa.W?r  fy^ѥB^|9&T:u.wxx MeM&xsÌo8BX 1iĺY4oɑ:EZV9eX(S2*cq+nls"8׃f!ŦnR2XzT&xs.Ǻ,谄V~ MMeC =BWEH'6jv`8mLOsѣ<*E#XXr*eGM]`сsBQ,.p`Qh֧4,bc IDATftdN(IBr+,`!8mˆ"ii}_g,:cqwk) L2e*c25W|Q!\:XJ$H꨾`#m@V6v]XͲ־ّwgӄ? ռ&ۀ[Wf.'CE ]D2a=D{$Фxd$ֲBCX&^ !սum̉` Ʌj=!+/Z ;L_s 3]׀=m"A j]zgIqZ ygv/~bS(@,H,H, dI,ͺ@p믂=c[ubZK6?U|',$5Wc4\XOjpeM Ub"W; sG{sJJ5ZV~'lx^UUܚ Y fP|@,H,H,1ziPTK 'zuUúb]dg]rT[Y%p@,  o(HNbQ:P][}D\s1>˛zEY Z, $$OX,DEW8~y-,.][^Kxp)׋g:UMZS<3;9Շ[3wyZnzR֤PKʼn7]|^vQ>mF^lWvk]Ņ]Clw_bXbXXXA0?<̍"ez'X " EhX߷ck}" w;1{Xtej+5QϺM,σQbq)2Y^t%@4JWUOdc "ZdQ{݃ŧW.ŋ֖wE,Ă⩉E±ݻE,*~X[e/'\fY,:qNb8ZL8<Q|b`J), +.җVEenw  ex? b$$E4ȟ"N<:_+TX̗@.l"R, T m-k1b1N]ڲ78z;냄76m>ufE3X $$O^,rk:KnwKb[+xTd*bquMB[A8-\£bKN> 5K:P䊍-{Yfa4Gvϖ9'> >U+Xb$$EeݲbzXkXDSLܩx`^;*N{~x]Fb Qm}B*ػĵBmq!".j[EAj/)w#¬Kbdpsw jd4>9'bxXRT aSDPV&\   PpU1ksk"dUNhkv"^+u$N,Nl8 5su_*",t,^>$8yXsEXX,@cAcA`fN[ )dVzVEɌۿ 9Yd"ugXc^+~׍U\W_kzŞ>G ,}٭';<,ab.fΠ XXX&O3Y=orEenLm ٖ횭 uk'E"_[7T\V8؊ +2J=\Qj*SS7oqoEPQ7upm'=,d1-(X!s` R0h _cAH,`5>Y,­ OD!6h^]HUjr5~H]۾*YrmW2Xdiz_7\[/eDkbX($_4lNfc1w1I*[/`NKr44{,jW-Rrݨԗxu^,V7 & ܶd}H]lSOm,Rū\I{^C0^y$ۖz97X걡m}9UYɷ}g"LA¤ :SQ+f`  D_Wᕋj* rZyRP*=+bj}sW/!2VP*Yh i4vY鴓eZMNڝWXBf .ɫT!bE8 XX,Wb ,N XX,Wql9T`' h,h,{ `8D2,>a@cAcA^,z X`()>a@cAcA^ v   @cAc,`XX X44@ @h,h,,  ` XƂƂ mN: Ƃ X: Ƃ XgP@OMv44 , Ƃ Xł Ƃ8X8SG`>kC iz{M  ׆:,  ``ѓ|^}3:``m(5 Ƃ0Xx5 Hv!Oh,h,̓"[k @cAc,(1@h,h, {m:;KŰ\t94Ͻӡ5iN_3H_#q4J?3v%XZ7^,?_~j>j斑oS}(2!nˌg,  `gAW,l,`lS_0L{2*`a}E zaNְ>g,  `7DD_i,&Ac!{%~508zkby?* Ƃ؝Ƣ; r}hj ˋ-#%|*X#^bxQ_0b6sbog /h,fs.&XēHe2 X446zDXXL-f$pY  Ƃ`1y1EV4fiU4;/]֗@h,h,]o,ƾgbl1zc`XX,fs,f092L&c @cAc%gT25$9AnE'C^ʋN@cAc`VTz;۶O\R0 vNp4αx2GE<XWَϿX׋k-'."έ_K_g_Mp/ys;k,dx)g<7-vŝxfV\-rj@s~In!^䭵Qθ=IVn X44 uNHKrc{V+6M `&S4EO>cկknNMʶī'5w^gM=Π7q$"!V"2n[K}}[i&VFE*WdLwh\VI=F^/Z2j͆\9^m~o^ӯ_=oT b(5BQҋHilc՝3.GR6`cۋuk62cbR1ӯ-h?E sj=ٯh; !:S4!:'IdbQ۫QŠEaޞBkb>vOMpљpYŷ?Xd LN)xn~b "vu]lѶ&ޅ !WGB,E֓ Qd_}h_÷}?|j(pWΜb@bAbR\¼'n莆Y&\CBLbPHbߏyinBHÒO{ X5(H,H,Ild=WYaĨH,z؍FىԈWx*eђB,B3;<+Ă5b1|ܕEsH,nh_S.:w/<b@bAbqZb\ˉsXFBq73 =u"9 nY@,   =,fayB,(71+(75{J,WcƊ@,H,H,NI,&f<#bP>b1SbeX}FbX,Z!'bXXXb1tu# Nuq(>(GӛjWJc,N{ 6X $$?X8f MFY3jXf2@uw;owX\1E/ 8 hi54)ѳb!C;ƻ}bƻBTy|,tbXXXXfV,+чŝxx{# ="iS1Gե>-O'bXXX6ƴUΧ疅uqo=薟嶻$F,        8MhI $$"IRY $$[8OH, @,Bq4SM׎iw72mSF@,H,H,z.M1}ӎgfb?I|X=M q!2t桽>aLM @,4~QcVs8/UBE;{J:SNXjf   Ģd3EM\8jD"3X$Ce\Y@,H,H,N^,9br]S]OC $\b@bAb!b:<#~Mͭ"vŢօݬ GnsĢD=tUfQ3@,H,H,>X5+i–ZdEEgjzXXX O&np},Ա/:27Ă0eaVm:I$iA_ IDATib@bAb/~R&pR4E7 @,H,H,[-BƽmveWҙb@bAbXX ?(JYtud@]la{&XXX vYSmDb4U.#.f8nb@bAbXQ4ځc7Үj(pw7wB/R} @,SM$MT   u‘4zu(6ĂxW"e[ @,H,H,W&W[S0Ăx5iYb̢^r]i $$ @bAbAb $$b@bAbX $$\_ʈ xGh6.B75  85e(>>]B}zἪQh:f.Q47׋x Ă WʹXc)C[3pf6Rxf< 'Yk?ή|&V,{k/Won Kџ+%+roTq,2 GՍ5G,  \,JD˓۬ʡhu-g9yAZOz28'kr 3Oau0_  A)PDHa r۱%HQS!9{< 8ćd 񲷶i3}.XI'QD~Mxy#}+u"*Fى901g]`!c9|/$Ϟ` Ƃ⫃6즎`k]nU!gAœHos`L߮tTb">[/N6vb&RcUkE&/.m JF.`lyϞ` ƂKY,Vo,XSXF7aOj~*ϱӣnn*νfrs,em*")Xs@h,h,*XsPJbnf<ܬgСn#O W )#.7VѻySn lyՆ\ئ#h&U)}VP?{, / ^<-thX; Q33}pP>OO uXofjs`ov=Bş,x^`*vT( sy"4gٛDb!P&27G:H$!,N~a@cAcAP)D`k&>T 3Iz`QT일cC*ť,omu^umbB~44RYC?`t.5"v ,,dstҷI% ]wxO XLt rh,h,{yv/w sק ,xdsY~8,IP&LK=_ $qϿV>FfbƂ?DԹ~7Fg&"=%D !׹: ,5f=Lͽsms w%g7w"=t`\DʍOğQ\n62H"Wfa˫Iq{)r4Boޅ`%Ƃ3¼$mw6Ʒ:5w;'`AcAco.`n\ ,h,h,N7)ײ,7XXXIxcƂh,h,h,Ƃh,h,h,Ƃh,h,h,Ƃh,h,h,Ƃh,h,h,Ƃh,h,h,Ƃh,h,h,Ƃh,h,h,Ƃh,h,h,Ƃh,h,h,Ƃh,h,h,Ƃh,h,h,Ƃh,h,h,Ƃge%ߔ_4XXX|̝`&zOW,|y 7G׻?u"X[A[L6"Lo  ݡRyXe֋|gFxe'e 7пRt~CP[O.XƂp=`ǧwwd,uě`~3"Xmun[1UƂHy YQMY_$ͲODͨ{XR3Xfyb~^^M`q*m־3c׷y`=*$IAeesHX=o,xAp6uLmVzW7>{[1 ):C5ƂH8y lk=~Ǖ[TЧ"unp;Xӷr?b7j*X<1pf#<YM8,zDD_C54n6sRxP*F~׍%]xkjmnj,z([K"vQM&X<1zrW>끻 /WQ]ҫ 7N19JI{!I`7^fPIR_]O5/*[\.^5h4E9wmő`1cXr3h(y X&x\S|ݠibJG,&clvTǕ|ftWW92a2,FA$&,"!aXBruy+هiڑ@{I ,"NGx#,;A@vmYb*5y}*)c0bĈ Y(/Ȃşϟ! XX(ן hEPܑ!J?"q'\ ,DB }aِ 4oso(hoѐ' eB8iS }XB ffI[D6)L<ցW+Sl%e9 Aa| I}zwy8dF˟%,1bXF, ??,p/e8U>,DX`D,,!0;@L] &k+U`ٮRZ 'teG߁,L호V;䮓Ui&⇄VpkQRk9P@rh=PB|S>]`Tm2n%j߳ 11 %EÀ#F|_P X@s`a""p.vSL }۲O; v)"bLJ t*XI `F:R[J=;{("<+NX3P,DF i\.zR55#]HXX/D,aˆ#F/XXT".iSaa9u 3(^ *@(Y "ܫpbĐ (vEBÛ Q,& Jڵc >Bv 7NR~="$$i O %X|=1`aĈ#,LD,.&׻ʞ.BJt[Ś,l,3gy!$pAn@zTf b 5gE]ōpcI qZw X4G*s݃aTJn^Oz %^9^1\r/w(u`a ?gΰEOߢ?<> Bb=k9\9{P"t_9ZQGCmaO0dV|T*ԫ*GV"( j:j}v(]U6Þ l_a,B6o16SQx^ζ QcLy9"-N%2cg ܈#F,LD,n 06wҵ=J%֗K ,aԁhDǿ2 &},l $-;\H.7E!zd(=5c6mTRt)tGCUYcXŏ^z{0!U(q#Dv=X+PuI]v/ R!,)">> B 3ŻT7 Ήq:$N -^tEszGyGEݺT9^r,@4V[ zTx"n[Nu1o#8mߌA xASQ'( {-Ei56bĈ#w 0[{ [H4k~ݴ,;|*Xl7Kٹ  G~¿[Clze#=+`q+ =xY+4'y։AL<|ґek#WL<[/Â̛1L %(;vM_8Na _^,F=TۈWH؛o2mN%Qii;?Fxy#qd^էٟN^\ =Ƙ?K+n=+ ؅ڠ(vJbTF9,Xl+t7F}%amȂ\b"? ۦ7/-G{~bOڧEEWeb4N&%oU M^qE80yCkDg/N-h$g]*EMnǶI0¼M橸`ĂĂbYaoN,Y̩c9XdbKA,ƕ94CYDk1&<Ģ]b.h/[,7>E,c[,C$.&[XD5I6q _nxه],K ݾgiw(\`su*n=+ xfo}ͳ&_Փ\uwq bqdڏ(K,n*Ţcʋ5_Xٜ]Ģ'x>u6JlG{Y%UMΦo>@ > ܶ"A܃qQ,/=zv]*EZ;|^"F?w.`ĂĂ1Nk5.&Fb^XAP@5 ҥZBRp79Uo%٘׶q˂xzK,Fom:fuGn/2XTzWbAb@ub!U2i:űF IDATB,_:iS>K~K[Ž慓q⇣Fr̡ݞ _,K88Z@w>+u)ͫiqXܐ%mJ?ztgA.X>qk;V=zXX'?)GE2n+NBT/'op} bO,y?$cwxy^.3-8ܶDE2rkEwA6en"WR~p׋G9 mў 'ͨ3;!mDѵ>)/1FE5 }[1m\1OZc^^MzT/G1:S1&QЧf8kb7>|ݻ#Q$a趴F7-ig/?}(5źX EbXbzssN]9‹& =wG'ubqpޡ?+E^ %!fu@XMZ3X# SCtνjp6Y0V!.d Dvnٺ}Zu2XxHw7q;- Qk׃䐽P`lGpg) XXXTllN6-ld%4ji%BE`n5H e\,'}/nǿrs*1F.VғR[CXXXA':&괪8g6;M 'g?R0*evTXS|uawfl(׭n':ޭ;>%|zA1D'_-~}[K xMF:bAbAb-W?怃z?)!ebAbAb8jyb}\UdZ` xY /яm0jq3b/D,`bePmY?1Mǽ}.b/D,I,>V xɴΏ{/7^w/: GO$XXX<[,H,H,-$$   gI,~b;3M,"6 n ݑ+_7!&AzE>{b!4ӝX> bAbAbl xXJXB&}NxXM>K Fb{X2B' $x9=Ȃ[)bHB$B, ū  '$$7X,>ȣsq6S";x;K,ȼORPs0$$*X|5כX"9Ȃ["K,%XXm o,S )?X($&w7?Qli#ĻP/ۀFDpyu$` %1EG! a]uYIظrQԩsꜪS ŐPE?w mr9y=XA**2YܹXL 'XFbtZU,%*w\qX\S 5*X,¬XL+*YD"z{hnhq,&]`r7խPvbRq G,Tblr2ZcT,F`1<| ؂X pbah9EbXLΊ X+X(GB-ы,XG Pb13s+ ,d(}**QEb!Ex3XES۳T, cEX0XLBكz[V,fXG qb6Xܲ*e ~XP 3+Wep,.sHT,X9Ȃ`bq_ B%+e `qGBG,\^cqM/6eW,qY\Y`$ 'X-*Xk,,yf" 55Yp4<"9X=6{Ez1 z(d8ʪX3X Ōň]P,U,.@GpN޾U, @`1J.v/N3 z> hb<^coMWŢb,z-b cc5mG*UѼEX(#X^==mnǻln3XѢGlXJp/ g[,*ΡPB].X,ҋ,**EbQq K,dW,Rc@` X\)] {y1j|^Pbz*XD`q1,Xd@_|?esVB Iڏ (",EX(}+Te.(Yp4WbH?XBX5QX.X$Vo,X(d@?y[`?AŤ eH+kJ ս=Zd5Yp4O拏?  {`1T`Z}%!/9jt6ڽ` =jvtPFﶵxڽ fcnBq4@ Xb, eXD-iB_l8(X 4Yp4@ Xh ;X 6Xؐ5ڽ`r sCx,̱PѽPX({6GcTnr k5j*=f c,d16nR{-qA%V ژw;9^z({lE8oJrlvG'n͋_-+=͞X0b 7kU :XlԷ7W| ^C/kT,8 5sApDřD,~Y$wo& 6X xŮ}g2z,([,{CnBELE,PSPaG,^S>AS,EbqsvN5/T< XpRMss gXv;B4z[;|xz|`j7m ![ J5q,vo*XCPPh,%{,* d@_%!փgը:xQXs"76+ɂ9r FbR D1m7iE gm=*ɂ ;v_}]N؍frCrKKvO. ~`@EzHbѣw;,(X .XX,͹P e#7B8 ~hˏºؓϿDY}!G;mXlʟg7 JC抬"WvP*& 3X$Bվ~tCz ɍ^KU, X۪h\R2]x'ge!XP`alHXN r7Y,®XT +kUP^GU,VخNUX gz_% 9l6,X- uB"`aϛ=KT @ύ^%!!IJ;!TFņՎXECFSG< ݻ})Sk,',P:XX+&M kH uRb.lmVsȮXx{)A0n-x*XD-e`ato',F&h6G,`K b1y吨cXz}n6U TvbxǼ^MFQh`ԂV 5!6슅Mu, ,L[X?`Áv{;ɢ@U!Î( B]BW,66ע;jQewG*h&k=^fx"}/Dō^(˜ E@ "7*6y5]6ޞX_=bV,ٖMJD" 5 bqbn;*M8*Yp4з*'ᓾj|uC6Q5!Z57oV,aT,۸kϏ Bt%]hռz`@i=*wE邅n޼r*YG},V6e'v]V !'\5 ucՑ6wE:E:*k  udXP`1΄3pجbQ`,{5YBE"9jnnll|||b/^xݻw>|ɓ'Ϟ=Gߟ*ϟcp'p,q ]k5Wg>"ѣW^;$ GaGLd}]{ihHkۼL,]UWӏ)?ξOOO'I'bXg sţ$K8(ɢ셚]N^bOsf+WByŷsj?0`IjX)#"VgPN^!&fbkw1XtY,EYhfnXHLⓍV\ =`nޮه ĢJT,đ7rB$ gB%Zj"E c"ťJ meUa0&d"hej;zEj#T¢J,G)PY,dYf11fUЎ s˪V\!A^,F%h ոev,W1t"Y䥳aТR[\zi%*^JVajEԊeVW âsbSb e,gb,̘n-RpERiinX\VQ 9^zkhjj݋E-T3Y18fQ72hCjab0WcȓVWPj+^1_CjxF,F -Ԏn%EnGY4Ev[ 3Z,iZ+lm,"N%Tkbd!6C1 YhCnq|줋P7ʸQ(8" +սbWz`1^,PSx,l-j!G-|1~I&va>E_0B抪WP&Xh,6*-,YBYsEWCpE5}[@UqTD Ԁjv`q^ 17O1TE':ZLU?Xpc*V\" 5_,LuMEjE;Y<'p[YPEhf"OZj!ϦX2nTP" 9^Qj"n{vzŽoE Zh!E.],4 ;|KTb/n}o +;,*IDATE!XɢJ5jBE}RKEǬ;Ÿ+W_܎]7XK"lkz*}v֌z8z_UE ADDDDׄų*N[2V3}EfoYėf~[jaY-llZ.'DDDDDSٳ@Iz8$+❳W/BU.B .,^Y-_W"=8BS| """"g3SKSŗ;gHs|^apDžj4,,NřlqG=]H^4ADDDD4|UK*NVLQԲW_/Bda6uEf []Q """} OrH? g_r,߲pbPpFZ.NH=虈h\I"*Vb0U?,*ϷeXCF ZB|&*O/]2v)TC9Vȵ4W,נx}1Xm^*nC--u{oH, 9]TyDDDDJ&. 3VB\ZW{P.B,.Cɢ-jfRwODDDDD;f_Lwj( !buEEaq׵,“~CeZBz0z? """";A0;X*7;V"B<ﶛ =/,6b +eVH >]-4/pau{}뉈%+ 9TBB[P˫m㊷}{EE"]2,fqE;=Z™-r("""")ZXX*PȱBrx'Xm { b2Ti-4-γŲ[$`H,Uy?5rj/RExjXí-2+rgE;h=E} """"[I Skřj"ԕaQ,^xfa?;F3-̅;rE1f%&T^ԙj5+,> /,Nypiaf ;\(bXg<:9wd! ;VsWtaQLޏFypi!nDe[墀oDD9Sإ"B܁rYAU]!XXi#' 1Z --pq{o wBѬ*V Ê+ZۓOwA yvQ6}*DDDDDש$ŃREF.B] uYPh!iQ.ƯG5U>K 5TXTXUHVT抾{Pc/,. 2xe-BZX[h\8Ec """"ڭ F5V E" 5$ oPmqCADDDD%n$*ېBN'T8X^q`Z+(mqEEFEDDDDDs6*VV#bfb8BB"B """}aBtU8"\^qMX Ȣ=ZXZ"B#F4?5*!Y -lalB"B """衂 #VjpY1>W\:B.-nqux DDDDDsΤ4ł UMT-[\c $h±<ʓPCqőa%hEą҅ y """"Z)  I]U8,*eahlB& """5EEc8:,dѢEaW-.<_L:HxɊͮ,mKnuayQ@Iќeyborhb+nn;Ѣc sADDDD^()2*JUX9Web,*lpau P=Ѥwj}QE̊,,nC衅g SADDDD()2*Ub+n.-2-:muQJk """iKOۥ̊`8=ѢJF/Ch $QhSxfzW\c:Z0(x"`5wz90Mxy8V nZ>-\[D046B1 W!+\qHXo#д(mQ """["FVdň+6WŦ͢)>Z8Eoa{ +vp1a1pJ"E@h;$PhR(TYSiBE+/f1݃)$*BU|ìhE-4.."`& """" @aMPŊ+ "^-jpl """c@FB1+jkŰ+nn-дqѭ """{PUY1GvZT.DY\3I"Ea**QV4ab.<]:xEi|<ʊ+aX4dCC-׮GQeO;4914U.^-fE+v zZD-*m|`- #AxUEs:Y)г).uHc4 mlmbԢb a1wT["_psGHVg ,f\_+3;t8^e9-`BVtU⋴HE.J}!48$El\UlŨE.}o9} O{T,a!,E6.yQ)3FU!,@X mB\"p[\Ϫ aBX ,6kZ^ cFkD<) abB]ZdȽ0c}KX ,"kYuW\ }3x[I4BX ,v΋.m[  a!,\mj  , aBX kX[  a!,BX  aU5@E @X a!,a!,@X BCaa@X , a@X ,  a@X ,@X , axi4IENDB`mkdocs-material-9.6.4/docs/assets/screenshots/tags.png000066400000000000000000004374451475306445600231030ustar00rootroot00000000000000PNG  IHDR XSgAMA asRGBPLTEGpLAAA?R!!!/EJKNSVbc] IDATx]rQ.n ~aP2B&@d s`KWhg=Uj-?{֜ aBX , , aBXP5VZ/X=m!,BX  a!,BX >:Fd a!,BX-|Xֆ a!,BX Œ?q#CX  ,NJj:c5q1zV`@X a!, ibyx}!,bea1FR4Szʹy!,BX *`M2/P[ 'ʤ9#`fNʼx m!,bi1Hq!,(m !B.ZZ~`fJbY1<*Մ/Jbi!,@Xq *A1ه;yiEY[,>@X9A墢(DO%N"5ư"]A1/wE--*F fH-FZ,#,ˊ|S8.-fEqT'ީ:#]xi1YW⨦)xZYKW/A%6)lZ\[D"u!ji3ʮ(VD$(>XF." hYxSoVI&/"qk]ɊpU$b8`D^d"ueyE+b`Rb0{"fyWú"]ZeUF-ū,FW"$zF.qjQf+eE*IXN$"ǤEk3,+Q-՛24u´\mE+BʪH>`Eʶ -*b1"P0%vބD[2nCMTE)H.RmMˢ{PnV"S7Ug"ݴ8h#,6wE.+QH @1ȋ~\heYܼ"YE) KVoЈE|nQY گ(ìGE")DH"/qL(߳?,J"]QH 7IgD%ig4-EsaQYѯhRZh^Dۢ&-*b`[P*M}#"Pc)ڢ+RqAVgĄs@Sn] - -,c"ބ݆j),tEd\98eNXw jBW@YYZDCEbΰ ^(܌VfyE/+>د2~8 x3Ѻ?9,^C/Wذb`d3b@W<+݄b?0qhqDYE8w6yMY Y,,j"r ϓo (=Oub(슃qv+,&,"Y'_-XtA[aa ,()ӿsv/XvreQk =NX@MXvPC,Z dWW+v G](qϢnb(Uo]!,&,nHỲ7BAu"5x^TEw`[܎uq^qqh@ˋǙ6_ U[' E+eť<ZDˢtb^:+8P(e u(^늃]!,&,~ w,, "BP9*?h+,rۑr4U,'aM]*_~{xO?կ5wnf Ăxw>TsЬS5EŰq ߮Hׇ=_y9h8,~ś̢,&ͦ',"Tz^+Raʟ,Jf{^$~&o3AYTE~`]סO?-ΗŀPsŋY(,~vE<,)p?x,~X,^ Ү؛W\__>|Tsдwbof'x:[JMb Oɽp- +Bܹ!](0-6]͙t=:sM~6-ͱI3'2S7X(Pe>9kyhS f(۟9X|\+&mخ9 vs@&ŧJj, |Ŝ#X<2GG<|,`1&5C N)XdBێ`g{<xj,J} fPJC><Z,EA3@TV\+j5P&Xj,PJɢk%ZPV(@W͒d5Cud"_m_5X0 E5iWCuUm:.Xhb2 un!N\(y$Qg'+6BeYb,8łTHP_j4`aP\b=1%'=)da9f!$`ǪYʐ+b0pSa Wp4Cuyˢ S"%-^ {us@b,jҘEVہ +zU;>]Y]ω]&0Q"Y¿d1(".XX6Bz}=}Sᚯדf,YX6CJ=_~Ytr膅`!7BM`ӎ0sd:XL% W3d}ˢ\dmgÇ{vw>)P=YX7,\1lsd!lOE[a sk`!4Bi` d5C% K#t"`QME+y5ӝdjrpT[qtBT P&X°*6,Ч,i**X|)X(P ^ _*YhPcjbHJ}  K"n,21-Y8K[Ѿ c#TcWp4C-Y,tլE C3rd@F,] 9WQEEjdļ e/XԳF(P.XdPuw `q㈅k֫` P&XdɢTɢ`|ff s'qլugWtGl2- /X(#B3,čP`Ddѐ6CKcZB.X EVT'F^ R oK%(XܶB90X,; ` f({ e[8ۣ`!J4-`!R&r=^ ߽JNCe%4XJ0,z,F,L;mEEdᚲ0lEv+n:&i,@`,Y"e1ꅺ%s׬|Bk(YS[Sa!N(`1Ln,,咅o/@j6+{v]` NXēk \X% W/TH tB/X4(,EPOY|S `X)ei/ ՗`^ȃ*5NX6e!nuBiBY,\;\\̫[$ G½brw۴j̷`5B,r"n+YBYno/Xa yt[X&XeŲ2e!o;NY K%PJݞtB-GoSHo/vzm^`E%. ,(,)d·,* ㈅t"^ ռd$ok,!~ 8Xە 6Eek/T>dQǷGG[7{,:^,N&XdSy/T,dvLo,|F,N(8^jW.B% ^(Ő銅|v %no,rbuK߶BǷKC!a-X|+/E!%X]|lrB.Rpbb!vBUNh'L>yql3^*B}BO+XT*`!/\X'X5Ӹfb])Y(b:dLoW >#J'T:L jeE 59d1P"ȯ-. Q'&Ndi/T2oIC,\q[ȯeG,@(,WS*`qON(,Ev# YX KfN8bB,@wR~~{PxCrEbEPmC,>b/#`f,/L)0XioN0!Xx~p6d !Xdy,XH# `fxY4"X\`-U,:kƍf+򉼐mĢtB ;%XN.}|xފV`{zˋ/ZirՊu~ѻهC!XozlGurxO_^^U+Y"O/.^&oo߶LTE??{8`ͽ swf7CE/D%/$+,d[t ŭTzrH&N&X!y66n|MÈ 6 dC:}n0fnO8X , )/Կ PiSIR(%נBi9VI%JX(yN8,fݒNjw#) a'LGtA}C.<86t#zA)X Ƣlbju`181[ f\Xq.X-0VoܡC-oPE ]>>pYXc=/ca("GibyKBJ8K,Eo Y<X|}XT&4vYQ.Qz=J(Q=rv9ճ{#Z9{K`\Tq'`= p2e`fIlhnPi)Ӷs`1MMe+VБԁja3Z4A*h ?׀/mI -N,BJ U,bE)V`bW I/U%JN ,>AN>)]`%%Bv,QeX\Pn`1H-XH_P,jE)"9̈e X1q)X x#g X,\X3"+bH%5 F(hr,z;+'z:]*\m޿ժ+I3Tr @|VwϣQd啗|E84Tk%J K(_=X` xla-K"p`Xc6%-c1{C5ԟ6I z4pGЀZ0EX̥_Y W ]e%b? |߾ Bۥ*, q}T]=Wd~ X|> ,<6b;k^ Xs[)QXÇKugDO$7pAA`K"aRwZsn(tC]q١u˻u XLqy,VX=+8,,8XToǓJȪXz0ds<XDf-̓u`2h!t`!9XQԊDڸ%#"/o ?z|R ,N,X6ke麈otLtZ ] Wlw51FԃŊtN-RFB q ,mp},6Ԃ+(U(C` ?=fi68X*|`P\T`!8``R:b1]f!b]@%JXT }Zޕb.;C]~rS`uřSCd1y%ShSڌՇ+ |keSH, }5iXhI b(Z;PCLf1æT X,Y(`ap] r; ,˟,DoGo7[ Uf^6+%b,޿zjg(T`ŜxiGAqӲT,௵"-(y hW Fɯ(0OP#FS%&OW7/)"39ϞoC+lcz;V9tL`{# C]Xp#<> ]>H+;65jav o!5ye iK-X`t2, Z X4r<-z[N Uom6 XwS`Q O]`Ob=,1 XЕo6aP*B-{7U T IDAT{z{5~ rpx+ ~PI 2Zw:˥2tk9:D2X l!,11z`F0sT9*[8&YHzlԀEy[ bCDZC?^ *#jP`q Xۿ棷}!`') 睡L\d`zag,LsBLMG(Uڳnm!xy< ՃBtKό}'f_ӯ [HJx [BVgAopDӐ.xB]}0M\OWnҕ=d1FC?qAwP/e-S[ =-o˅cP[Y׀Ź8f/Б9)%IQ,f D#.u;-Zsh Et@Sעoj1SpE}`Vy=e3px'yEr}Wt*].YݝB +x%$=|>e >~Uuer4#KKw.=[YW)(LFmLHuԑJ-kE/_g"d,%B($%B{}x"ƮPw9S֖ԙG%mAk3Trֽ+`9_oO*Xmi`.*kU D: z[iZ`Q?f,2D^eE/=J˖%~f?9 *6`\|`Q񖴂+uxn8a`:8'*96֨X+`1X,Ri#gcͅ&͒2a{, W;X_1:̄d o9nǺ9Xod.yE?^(bU`Q%&X Iv,ڥ Ȳ6NWݳ,,v$=eރ;w!4PE %5k9FZ8a`8+L="ߏ9XR,׉bo|D6: ҚGbtHG0rm)oߗw//""B*!/?ƃk ọ`. bʀ\7a7 }אBյ!u^id9m3@NXP,  EtM=`":5Q s PЍ S(cA6;%E\aѷ#it83BmǖBiX(j3Y. ^S}@cXDTy d1S` dLu#X`,{ׯǿ X|/X`!z1yEU̎]:79XdxiC En =H긙k|yc*d)icI܇ X 4υimW*OO)D<"H_-h\-Of8UuXH!mW{X|l6IYS5乆%Z֐ ,XӴ}X,@?zp\s DݤZ,b;XD1 6`.iPÂEN|2:,L&L, YٌeQE15W١@3vEKvc9XˎMH=xyq ,*FXܤD==8e{Rku̎P sWR"Nn6T9vF'HaR{Xp' )L+41Z]*,`]ӵ:(a$XhzBw `!E^q_TY+x{`W;⊡U:a7>ya@EYI^((ˍauawXZJh4u7%ƒ9vw9-:;%=zPa <Jh,> ?렘!`4XXa"ʧ1ff.^@bĂŭ|Jvv``,.,/\oU"zh6?,C, t f!~7AXМ@JMjVu`ST\<_)Op%@xz'F$X=Qq.dkkRQ`ٔm י00>}ىu إz?\.C`B, 3,TEtvB,>-:XA!! `QMk V<өt*XXDko(٬IT XdXEex%A)~\8y OW{Nsi5! Ec ,&oX,ʱ`9bJɷc` X<, Ꮷſݖj;-O*ɂ6zb^G`a G130.fW?^!,< iv!O,؂6z``8ۼÆ bz?\ k(s3nŁzl Ub,ެֽodE!ŗ_E~{`bC C%,h R+lj2`A(},oB]* y kdHٕ`A?8Ni;5K].#2.~㜆Η*&,~9ys?k<-&T-6=njy"}qzx[,T,~WQ+],&z]Ѝlަz"ÉGK QbM[\iL ōy!j2Pz,l14Cڧ`$YL'^5LL3*?mVcqNy8q6\n`񉂅T}27o~G.EC,9,苾 4PM K9ӽ .NkaYfnJgŶvհ ~_KdHya,)Y&̢łvlRʆX(hz3FqE^fQ;߅i6^|ZYQ4Yo쯺- XtNZ3IK|R&9Yl'p3+>|ٲc/B<;:L^ʶ48]R;cÓ<ƟË$ &`M`Kʮ6Aͥd:0cqZпmawqm(eR^?%Jo/m$ #7Q`XCǓ6o߾{`@`Up Z_DCˀ)"R^!,h-SG+, =y[h*/ 7O,Q,:|rz2k  ̴ڻ qmZ:9(8ΤAf}y>LY{!/>e߽}4bd8E7 X? bCE[*o `%hA?tB>jxwÀt5`y(~nZ IP_Z)$f{nb500N oVx;W{Z'IsMLW)qp"XO3@7tA%g`Aj:1cqrP6tWeA],9Ak<fm{GP7f5i5naM8aч &{VjW܍qۂq:XHO , 7f/ZP,/!˩J5#MGHv"1P`Oal#,*W"tHeG7KMr{d6gg23#f$9 ]ZlQZ,X6]bjVSE;5f,N  YIdU4%s@1Kj?nk¢?hL ,]iw7m\ m.EJz n ٸޔxa8ۭ40T4#aIz"ACts33pzEdWwΜs¶1lb8"s7T_",~u:,J[oab=Ңz3T{#/j o9"[P&=faHxrbFXXLf/ 8͖7[°P)4C"wfv$_l]PaJ>k*spp{caGMRF?ij0.XB} Y*ֹ1)!:2N}$AKDeyF+?eq"-cOҮX",[a6gazTBX a6]eۄŬ 5(aFͿuQ ]u~`1H_Uoq0,P=8]rpUVn.,L}/g]z[vNߨ[s: Aá/,pET{_8ry9okK b"-;[f8,USb8j4<:O?N̫v{7*8'Whª#p8^V D/`;Wlc)]qDX|~YzuX< ,'-7C8Ӆ܆7)7vvelw%.տpSѬ)j7:>nkW} ll+tXDAGËe1ɝO0WIX8*D K,K,=}((DYȓm=Yw_z4ώ]]1r nBvŜx"]mv{zίswYEZKW bY pEX\5*I¢?KV_%D.Y'$/8?S#Vk ;AJxG_=J'F}g$, >yt^X֛%,!- 7C U ] YeX,/^1,nz;o,p5ǕI.,CCQh%^?<.#ql\G6G/8feƇzIECmfŗa+2,JZo%PXȲ+4,e+7eD(BQ~mXqXEf,cY0@ViZ&-r&Wɢâ旷Ş vaEmX|IXaZ4 XѰ8X۰ȗ®+/yղHu°5;җ,e^+zi6k2m,zX , ,(vVGS5S22C7"qD~0:-'Ώ'$Nڰ7 g[x~aLC_>u4; W/V7,\-,^n?,tY"ba(D;{]e2#Bq4Ἱ a7tX< , , Y=Q3& ;onP , ,([4 ojxd,,vvv ac3;;YX$[ooMX@X@X@X@X=⳹aQW$a?pWvPaxnX|FX@XaAX , p8g , 1 +b+a$giX$B̯[oxœbX|~E:,W]AX U밐e,TX|G2,f?PiQh`^7aAX;Fu. &>|KA; a 8 #OJLD}|6LfNwg4%Mi= bbbbbbbbbX0ǍcQb՞okE9t'y318FMubwj X|vcIi*m<4Y[~dO@$OW vip %r|C^GNRE ͷYuX8UX bmŢ$]bXt% A 5zb Ob@, b@7Y}hYSv½<b^{ݼwbJ3–Ϳ/' n8I{>?ȻO|zU 7o'b&= XOs xop}:\7~diUׅvc OlB0:%uJ6V(򨩇E2&sVyeLY|2ѐ_+WY,4FSc? eD^Eo+xxp}um|)zjکL {rhtaJ#OٹYJFٙײ&XL67ufCFqǻkX"G3X@,&bwb5:? 7Y,K^UPRnTe逷Q%Ѭ7UozWEnK]s_Hɤe_wY'{rVd-,O gJO${\,&ܳ ?b1"v찋+84qӯ2T3ԗ/ɕX̺D}/Q IDATfC h=] ]ԙ͏vX@, J,BF۰O;2~ZUMK~'D^:\5O_Ǧ-EQӼ(<`"Yz;aUkĂ ~ A~3/k|쯉I@Hz*y.i-4A1dz|;|4+Jy#łU䍼Ʋ}d^łA{,Rg=o;Vi8ѦaaB6z~@,@, X[ʴQiwWln2yJ'%&Z\XbQ6CX"Pi ?ؙXD1_X9Σ 8Erو3H3ǘ+yĪf/lj^K2"f?+EE>E~K,zJ֬4qeXLhN`Zc&n3.\űdQ4:> "S޼"BFϒ'# 9\qj}G +BJ,:"xXagkX2.zSA5V9 Ud"_:ngvHJ(b1xxjŪN-VTCnhNL̗W̓F,|bbah$x~Ճ`f͎b8qˬH{牅4XSd^E N~V*z_fDxde /,͑K>&6˴<q{خw<]n]ExQMCB(-o7w>^!,:3x|l_VfN>o+ΏU3?BXCX$wa(v/>m^i?udOO\ou/tzp",·)QXdqW7ÊEVqva+,{u,Zy 7ᏛNyinNw%ZޏE7Oq0H8Xӣ=#r<aOu1aϏHVHVaUUxYfѪ[=AkIѬnq7a~',BX")qcl]nr:,lMȲ6-C]Hyxyֽj]lt>vI6b;ǭj|UVhx0—Us4G,~jڟcQ~zd~M@UE}X?8d[ZgIbu`/Tcګ> 8/,_92{ò?BX|>٬|[-e_hryp!}}deE6:[9~g$L9xlƇ=y;n];|B.#Rrav,\x>\K` ,l?/c%,O3a!,Mdtp?O>a\~^vc‚,iOm +*kd,‚+WMOvA5^|<\N BXBX , a aBX ,a!,@X  , aBXa!,@X BX , aBX a!,@X aBX ,>WX7a!,@X @X a!,a!,@X a!,@X a!,@X @X a!,a!,@X a!,@X a!,@X @X a!,a!,@X a!,@X a!,@X @X a!,a!,@X a!,@X a!,@X @X a!,a!,@X ;5N$֣bQDGՈqj@Dt:QxU/Uo1g$ hn0ynX+ބZ+ bX  bX bX@, @, @, @, @, @, @, @, @, 0 . s!OG8=u\h, ˔mwKqz(X n Oy=?驣Zc@,ܦnw{=?驣༱X nSj{#C: aD kϔ; 5 k|~SG! X F" {>?驣@, 4^qz(`bW&+=NO@,^|~SGybӔrqz(l(ݔq<Q, 7 aG8=ufTb2qԥ*)Yib;r)9tZ׎|S{X~`D>"8dGbX)[J$1O*'S_1KrWioֵ"CopU,ԿI bӊɶUgq{jd\*N|.hPl,MbpLUiU2rr{2X8SahZg&C00_ y[q>޶_DE%bX!תՔ(t"6ٷLT-jd) pZ4^LvRGvSR]3׎jyyCgXulaDq*I1fjUa6Nk g  Iu^ZwS,TQ{A,@,2&>e_Fvաү~up6ii*QUOQ`On'ޘK I|"p.舣Y:?DβagqP>?IM>*GckY.*K2^^뭛в̸||-W჆GbQb7EܰvM~zQoGG'ZEhX ~fHέ0呑KYJ-OyMxv̼lT8<͔ۛ'i-~ӺXǢbgr.z;o~cƜN6\U+U}AD)پۭۯ=ϦԺXtq%S=qtCf?/5ȝ}H*Z.GRX4\|]:gFjvAf*t~-$L8]\Vr_q Sǣ@cUUoDUT\ۜKF\wڒҴa٪wǑupX Pv61 Vk;w+^~-kl,gZ=3Fd{[AR 3Ԕ,$/ 7وHqtlĐuXweն}fӵN6et`Z&#沢e)3 ikq\qu6a$ [uP{jq/.* XzE 8]n7b4X4^@vyo44nJӬRiƊ5eZoETT ¯{fm֧X8Npzyx9i9wLl5)YyKɽXmTvkQZ)[!}KD¯*ݪZ/ UKS5t+!Z3"X\(2|nEXCXԘiCśyK(>) ],^6ŇCXlJA #X ~e_\֮vHXT V<g'ӂZ nת,⸦NGQR̭ԑduߚ9x+h^}[9 7:phH%Adӟ2qChT1:>ҥZ ^$fIJDᬜ:9=\p*cO7ϯ2L &z^,BS;ٳP1Ţͪy&M̀XG r|d<+Ȝ?E3Z^cfX;(;# )?ab9' x_oݏP`X*g@,ʺ;[yG 9Yb+{=`CBD^.r[SHd#kfFJ,]KO --c"BjVUf͊תoQ4v)]^ПU,eF15UՊx};X)E} D 'hk(E"SuE1z(@Tl1ŦXQidZŬCtoa/ 8 MJرB48 J5n~nP>أ/X|?Mx|薚IO'oϚo(J_ :ˁΪ "%'5B=d]YڃXȻ]0y;mP`>ND, ߒȘ*rB^z^, g̚h;Q-ap84\`B$JDP*W"W-?sga\Bgaa<}6<8/[ݢ<,rWYفE ŝu,0 d $C0{ݶ1wk^+Ǫ`z{Cb~:UIbJ{JO40o7]$snEB -&  5ƼPFDbT2xn>L͂P 8$GW:@ X8f  뒨D?㛰 ,`G+RI `0_S9*`\,`B~=2Nr#`_F;L:{;hhci@qz&NCLi~(XDZc&&Ã8x^YxAsJ`q\4Pp90m``mČ݅)BśRMB|F y/MzJ(o:A"^!jX5 l 6 ,f3\#8(;|l6!" AXhځ.B#XktgQzPoW5)9B78] S>VL/C7C6D|](1KQݮ(1+D#F/=5ؒHyg.AF ]SU,}`ɟS`!⍊WQ;|bF kt_h:obJ$cYf๡yT1J_ͨ;,:BYBIߓ]6n'?ß)-[`Q֓B9ϳݖh] :X@/=%>Nu(PN 8$FT-W6`ƿz}?w[-XlLH+`l6]3)B d IDAT!-) @ezM 4wQ{+":EI ky5' m׀,j.ԢXVh3귭 c,ho X01kT tyWuGm^/Q&z^r+!{n8X YB (;y\۵J+' gR)3w`#5$؞*/ədE9=j#^Sȫ]5]vzO9 !O,X*APa:h7,`QeeIiV Zgj)o1cp~p $ y`zض3cRGv:KMEJ $ [!e%,D^|z=XGEb2 ,D !}[`S8Vy[t}@iW Hk AxpD Rc M;@U xo3X+wX;p_IgXxrӒ9HKzl a[ ,$VCZW$|WiHC:`%td`AgBaB}WH8.Wf`gyrcb$_`CV W'>!eU wbJفEi%KF?[smjb2״AژVY_^eNgU? sQҝ^\yff}F! p:4<8&>2,Dm!o,B\4iZ[[L_S+ еЃFX,(,|[ > oXKZ)-K,;EHty*7=x+Qku$BU^.8XK*|~5`؀E!X4HЀxP 7d_Jfo1ZDF 2 / t7zPN4j c[ qzRtǟX"+w"@'m`RjZ%)z{pBYb) cX`}nXx&>ItTb@d1B 8J"rD s_\^_%䏊g1I,t܃E-`1ٔxpZY^XxRHCa$»jKBM'D+FVTFPpmL(c8 u|%腛@K XB.{$y MmX^eЃ}vg]7i |fl)tsbľ_[s.IZS M/|EW, -H$!EL~D'-;"nx˃z[Eh6aM;U[M0wR!#`!Bhf2Ã" ~negm@A`yTOkTP| 5+?)mgd'J%"VʩcL*jqJGLڋ^[75`+ BO6{#|=pSU׻+J~u/&Y+a[]OƢhEAqyh'r:Y=s3ٱ#gpcŏsGK-]5n(V$L.ͦ>O}uyNT'S3M9LKS +M7n)ww4(j>j>t~۳tz_M,@,AخLN5URi~)z}i-GNY{Gq,~'n8ej VsiP+ZO(x bX .7t:TwԐzEP/gD"GgOn G"ANXqir>_U?~X6+@,yqtY%fKgvYuU"k}X;)uzglnBdmbX  2_v{n{z"yN ^.O @,)L:ͥ~W0şA4wR,'c@, "!N_-,C1rs[ wC{-fbXvCZnýE@9qNr@, P^>~WxQ ǥ-p7bq K,bX 0x##8} 4ob-EꔢŹ&Yos@, ,|Z 8} xxH۝܌mi ¿>0ގWW'1TloWk.nqh'U=I" bN϶R>~W@E;~ @, ֌{,#8} wp0hbqZs!/ PV:n6uM, @җ^0x /l @,,Ju56}i|f+@, A'zRxbXKةHW+ @, @,@, ׄgT Žnq|Y'O4#pKԲYt7Nq@,V,]_VeWw/mO_npy}'{O#@,<\5!=Wz(ƊІ!dZE(tur+JFU7ZYH\ShdMN+B<"@,nόiz*#z P>,n~\&#\j&3u ׭ڲO Bɩ BbXܚbFȩ?+j细1!/\ѽX<0@L!qԲH\b!P, Dq3'VbI4,}m vk5/K$visQq*^&5-S/1%_ow!)7޲)6a[T۽bX ]Q {_SJA&X*dXb/Źb mRe+_(,b 86f0ɋsFiM-b1ܣdoX&?Z{,uϪ(3|,bB[VPybYvwe}t.{1+ӏ,kRݲi+5kN{9Se(rIF ^@, ra=qxN8[sշn,Fr%ݮ>ddB\.;%S(u9ߘm$n0luuS7XF(%stl>OH3,RS.{D䕬eug81_mk.rFfAD%!RrSg5EI #'u,5꼅|^@, Y4vLS?ϿO|4M%6~s[853Q|)BcNUV J$^>2Ϳ^,6mT1O_K1yy`PwPь9SON^D~ ytl&XI=~U6# ee4Nq=ZʵYŷS?>qb4=.Ē}ckbqas 6b!FcOgV8= o=LNz.ó={ҼW@, eMӮ53(hNeKMKJ70=G,4,"IMsztZ\8h MR 4-b*m_hɚ 5]bX3N鉡W˾jW3ڑRs:m)FHeyJPw{(ɛZL/ B[NĨ{5ډ;Ԟa!iEU,GS^- bXK-5EueC[w޽nJh (SDRTU-aA+zWaq>6T;'ȖA:ɐ \JXTZ;g+u#«)q>m[♢ٓx||{Ww@`yP^9_]9G3śO%ՆE(-AXL9KZRUm}aQsFlпUaa BTY_+^"vt(^TR&, !JKya++J%'e=eFN[Uއ=.Ɯjb뾲/T}XDAX )>,B򁉬tlaAX؎hw>ftPXTjYX )uTUjx֘R| ΫvsE-x_OrܡG̦+aq־X/EvKgS''aTY , –SsK(Ndb@aQTSUc~jj7 jrĄ򮠑4Z%,QL6`h9}_qm_ɑa1D*p`X\p:fʆaAX鉛wW?âC?68bQjuK5u/ 5T%\Po[Rʧk²B/" m0G+Ѻ ;<}u#;ŚȌBݺg^X6a‚h`KӣRN%t1aQ>1J{;,Dܰ9 X{/EJi9]{}~)&bΖ ]@7U{b!'l]a~uXEtԽaFpXDiW2a‚hԼ7+L bELIIX-<,*G;rNcᅴf/ۜ-U'%YY2pT-֕ {E Cw:o:bF3 , XN3ZypFn"o>oɛɭ&aQkId (,Xە7Üd%zwe,Dw]eD拯&h9zUgH<2,oNX ms;?" ¢!=Z$6Vqo?B"~h}$vsYXFLB؊֭%ek߽cL\>6ޔ~S2h>AlٚƬ\FFޓδ̏ŬtBtJDꌸ= [ܒ̮|^|X$$~z{{ùKG專KZMX ,m q_9.q)̟J5 RW"6SM  ޘoO^%:|aZѿIJN +XLd:Sz?Œ}&uO:Td0gW_X)3׫JVޗeO, E3 = ލ|EhD66ڰǷԜB·gKOZկtyG6@nV^3=(czS:e7`h9ڲ :`),=fNصEtD{wwX Y ¢UwK{͞y٥CɆwJzGP:nAgM'dy7qWٵ?hMyEѥ],,Xv7` c)Q{ ,ζѷR hmN7m\-3RT10l+5vKvqxx?)]n<^tniBEA&0z; t({ )ϑ 'c^ EQ>k7 ־HމyY`I*RB BuQHgۻW*Nė͸f>uEb-uw8.O45ƺ]0}f=1ſq:@ht8 @)HcK[ p?_ހI8bnJp)J6W\"n Wga'^^n9R\܇H_f5sY 9I Ԥ_1O&B55<]y Y4 VJxRДeCQ|I`1N0(S10~Mga ]Xx !Ra șyu9sgİӺ5z xh`Qf=%^ESxbY%åʃŚ.䁑TP(T؉[ v`c,\:O[Nig0PX8ev9`!ja,_W[S;7߿gQOgmFiqgWL`V^qJdbA,HUqE +X$X: G#1^)/ɘH;<s- `!r" 8ſSo#Ka,"v`1CB* h`#w,[&HyVXsQ_=ki,(#Xȼͨ+`qXq%ڌ P`!jG$V,i!}B3~Z&BS%aꝽV~ɡEIY ?"ʼ," , >c%xַCP/đf;eL`)lPؖ=L,DSoD!5/"2t5O`!jVk0("HZL.8ZdlnMK[UrC X9]'_ ,=+L >iN}D=P( 6gh :a*۲9C X$,,,ޤaI0@$'^ = R`QIµZ=]>i fIQtf $ag$Wx%bai>gZnŞY<`YYyEP=:,*b[6#E5X,,,ފj4gqA 9*"r&}lR`њJ %QAǞE0e#4Rn{ {Z;ߟ45[&lhEBo\awe'O,Ҏ_]&_ٚvw~T_oɄGUA, _.!˵X }] MU.~%^b,eZv R)y~& -e)B5㨾!޽@HTW$[# :kV"洼⓼k* b1觶:bi=^a`Vبj E:N7B sT'fiO{UoWjbiw #!I sVX@,~j? }C9BS{9!ްc]  /p2yKOJw\Mq(X {W=|ZKX SJ J,nOtmٷBu%1.f1_}E_ڿ<0GEbavB }bl,XNm_-a7`9X@,  =ylpY.$}CȋH L G)SBWZݕ M^ڳ"OBh҄E+L<1Io[ MSq)ĽE b,N>"n;NYĢdQ!tHf],^k|7*ɨG,ƥ HF+Kg*9X@, k+gRKzu81TMM-Nӟw&$D-C^,٫F,.g9n6H8.B$NCq`N:cTøk'eB0ee%]sT  @o?Ƅ);I{R ^O^q=ջtw/Şhqc\i1 5 Yɀ$iE>OaQX@,~Ibu)g.a+4ַYt>ĂF@&n(qUaZF9ĂvNf  Sߓ9OUb $wKsX41;{mm"=;MO%z(葧Ae2S,T ߑE=+@;Ny.3O s򢨄giCVhMbɔޅӷŁ|wxBj󊅟b[{mcМd!kqEڹY,~Xxŀmnъޭr2yBDD,Tf<<`;/GȷoџTX@,x K?&'Ăֽ@q֋ QW bA=qLз*k +)‰鵜E|\,| = bACw$xG>(MEtp~^ '{vbEsסN rmK,Ԝ[K,r \yaKp7\:^DZX+qĨ%džJ,.>۾O},kSq^lIqOAKĂ.Y(=K,-:@Zqdc_Wgh(Gv="#=s$Գ%ObVI*Or߻!bE.};T3_Nߣ3u7}Pý*4X(\R' Uҝ6HXh,+:W=wml2ĕKIDb rS8޳DX*oGV= ѥ!dXc[ijq"^)iXcZ+w>R制.G\Qq 3 ".=; vfXjb!cMW>K3wlab?lGо k쬨\Ԯ27U24 w(`X(Q9}.*/TH߂l]V[Xظ8MdY+ۊ [.Rie9)҅R$քYj)kk]V\W`[ng=牅TJ?:үع#E)wn5bKN-ׄ}+o+Q۟?W'&# qpb!vN  9d~qEfn_e`bq. ѓeb(l*sN΃aӉp+JT#'s#{RPb!ehzE2kX@,fxƦJ͕H.P3L6RbUbQQOR{ no+OXfeq }ҷ6]<>( ert:om汨Ǎ 11b_NI[ d֢$ ʨDYPETbӡq^m/叹mnF$)K~~۫TGT+@, X/ce|r Z~RX@,^ԦFDZ&}X`??X@,^I #I  8~'/K@, jw{HLTmW%X/d$ AX5 wev~[,^5t@, s FN\ o;3e F]W,wА~:h`‘?ƨ' bxacr0"NrbM8/t=W]z:p:Ӻn,u/z/+g-Ζ^&뺏EuYO=6*IJjyiS,~j2<'ޱ~%%ݽ;%K ɯY_'t]v OT_K bJ/>3"AJҌpgO_W[Ӕ?d)E8h E D溘&D ^":?,/8sDyykګa1mTd-Ʋ"pE)Row/z&Yq4q&:I, /XsEYD0"b1X߱%uh~ܪn5q?n*PyY:P aL]9>b1DY~ga߷QCWaK>3pMW)i館u^!t*y|)֙HQ)Ar%tZ%,Nn?b3].c֤X4B\,n2X$j_&1eAN % ?Df?eY/Ă8!es:r!:/ !ݡ]d\h]ShM//ŵ<)9xtƕ`(QˢgE_9UL y #h}GwKs_ ٰ+Yb ]`Xn%~ό'@C,*)=!~I hmiʰ1gK)v ɺ'1&ãHgfFjSC8A>>li,E?}CFJ˖ deX̼Dww"W%9>)q#E4b7bq2寻b=EyERb,;#s׼XjK40ɋsbJ4I|?!x\V5\25sX 㖫[,zoٻM9Ģ,ѡk즼Bͅ9::u##g.6SDez&aqXeSG^O$ubEMHSr?5X@,Ǒ{2Aϕ5>݄wXLspzR,xxsF4RLR.0`;IR^hP^BwFC,*xb Xdh>RsDbqd)y ݍAbՈRr&OnHm WbG=ԝb)tFCI v#Xͺ%? 1(%4U^b[߉xcY)Re-u  0&PRɘnW,Ԝ?) iFum5DM$5¤U阵OX0s>"4k*t̄bJھSXTT;RGX8G7j}MzTܠZ1z 4I쌷Q0&G=w^"unB/((u?!U/T{><|B9ԓ,îqqn*QV{>8@ʎH g-ThfFӔ>PIlwPbW s5 _l}!T(bb!d XQxnSN13;Dz-Szˬ }Ɗ锵kEeDeTj`0X@,×5EZSJ}lŢi'@3Yw G-0c܍Vwt8f\MaKm7Y&1U4/{w֔`sRsD *.ԥt[]㨭V;:U{ѫs9Sw} $y sjxRnqm0W.}gcxaZ7K_Hl, ,‚x#Va1?Իφ+Mr(k[ۉ\?I=}Crk׶hX N 4^).Jj %5y_peD[=YxwQ:39_Z}`15ty#-aAX<ȫ9}bmA_ͭ^.~km>kȍɄnF)|#LozgZSJx,uW=֕zZ6 XECXQuW:I!Dj|E۫lu IksvV =Г m7 ≤ENm_2o9\]- TtUIRŠul^a-oz1go,;p.v|Xxۥ /37yTXj+gǀ ,EMn8Ε%M-aAX<]}~YO0d ƶjHvǨafz+Q>ma R਄a{ps4m+bP&3{ΰ0?<16X)NjZ1ux#abo o˼/,baL8SGH<QņԩvFB@ aW}XjoXհ-ifaiӕHpXrVVѰp>0h^`Y\̨^Sabo 4_U;"bx3caN䦷*b O-$\)s [a\۬}c5l ht[nkwQ I̲Sǽ{s̒؂rwQTZzZAYjSOU46}c <4eag>\8=I܏W#I=kbqn إUsAh-g$3=ł_w WbG4t$cQHӑbZ1m.pdA_,ZVb$Uvm7X>z[G>beRSob!TuhnHщyqf4-e^޴g/;) AU$Mk&joΙpPJj|*XP\If#j3ACh3D:@, Kf:cܨtzwp2dk,q{2?쟣&YKT=1[8 W _o.;<~:xsv/MY QTdYTrJߧ7bx^mqL9PriE4zi9X@,<֑vsюU6)rκg)@mb蘑)qN?HZ Y^wZz}GTX 7BeΧcGZ֒'p5`&Fv~ u $^Z=H--$]Rx4f73l    bbbbX@,X@,X@,X@, Cr~E86 OQs6CDV\$/9ͯћam-%Utf*>du B@, <VJ҆=j 2W, bLy}tC<⬤qK?8x+zkO݌Wm91us XX0||c\WGH2A O,N7#L9sCbE&ɫϣ/\,zlOwq9933 ߺXX0bAik7e3w*Qj ثbK@(I,VV#ĂWEbGxRcxb bb,-y6b!XCF\AG ^|:%/$o7Ϋ]BF !}8be -f1wHwOw<>U\ۛ|B)x\ ]ݷΈ^kBj^ڀ~b.Q):W \֜WR+]og2حA]"^>?f\=;J+yL33x7:g,*yr ]>0~aryS9%\@*z>Fh)e՛5k,XXf/XF9z|*YiӑY">UYȾc_*+#XLosԤY*PP9\VdEj'&;R [#J1V -%+Ӱ#BHuՃ&Ee~RV bW&oKz9K.HJh/iTǀs~h1 tAU|O'.m6GKH$87YSÙ9f}\@ @̴O ,kxz%vh#H鈧я#>5'̠K(h.C'{nL'DU)잇I/W #2 O!h11rf͚ ֬ocXPskū2r>N-X<:+z:<ՀqJJ8dL,.=< KW7GX;jXpBoT) ,v H]YcjTdnqwzמ<#`N;Z7&?@IeyQҒ!XG(գlrPbvHe-!*珋D῍Pm r-sݔۯ̮ 8m9ͻP  v`(,κ;8/U!gHxhD|By:Mws gb"9%pv:bJ)`1h`"S<~@# Cn!GQFX4P,Q5-=U#3jJ=e[5bAʄF3j@Gp*h #SʨB^*,6`Qݞb* w"E=Y{*u-c(\q-/s?4v@qv]!| ,,h`j=1>XgN@? XO*L2ͼӠ*wi-@,PSF )}x`Ri>h NB`q$>F ]bXp+GeT=fAw@D!g)Z6MN ܩ,4_vK`1-LL@7|qe{ ʴ`M4,p->P9 -#w4&0,{:PW='RݬnAV_e}XD 5k,XXf/XL8Ibm7e (l6b IăvIc),Ic Sp5D |,{ȃT>EJN6kސ5J2[q٠XirsDw^n%W01,te2,$@1F2!*A U?APX`4z&c뙣=բөBM}<ڒ6?%D6N)[Cxe, ,~ދ0`qȖZ.`U.75(X.ܬsE9Qv vadQs8[Mր4XL$ $*D)3LŘ%Z0?0b^^W8ؚƁn`ѥǖ'uk Xx!Wi)6W$,ң+t`1A׼{⥠1 y\=o XۅI| BX^x5uBNM_"ePO_L d%A"7ș9y=bp?,,T}7K<qF  `#gRn~xstizSUA _ۂ戓aQ/}P>`!^$U:G<:1"TuƠ+kBYG"XcGĚ$*rg_/&dLܤ4qP!l3o,^M_`! Xl'n1}z1<5:*QRtͻ'Ɠ7T}Ýz);~07Arɘ3Zᨉ#9fj0!Xe,!} 1NXEB77YӨPj\T]74cqUŚ' xqŲXL$9ӉCCJMLS| Ss+HU;X'.3e/t+KUm-j!Ha-kp+ܨKܴ_bA,t$/[8/+=1kJv;<{?1`VS?X 8lk ,N"y ` 3a.΍( Nϯ;;d\-8s$m`Jfŵǽ_Bh a{n ݜQ+ ِ9]|m8O6|,,\ߧb!KNpɔ2J~࣌[RFiw+6GC3Uious83Lc˷'^V'?p},pk$9#P]3R%\?~D2܌8 r`,6t9e g0`! o>Eǂ[KQ /I3!Y[Y[8Vq2;бU[idNf[vu.Rlt0xnjhO0^hXPk|ۉI<#JXdJVx7ݥ 6$Wv?:#K kQ,7-|>c/&̞Nb/+O$X.Obٴ7n }l3I=⣱W?p>WP)^Y"XnSѱȽR$,LD~U+V Xݰ]njZo47ڋ']XnCI_^T#ZojW)gst|['ZZaGht_Upެ-WcnX ,ͥqI;͝Ӽc򺻙u6N~7'<]%o'_:g8Ѿ^# wk@PgY2qW OG8{ʢV3oUTbu|s`k%/#z䶢̏ol=H}'g] +N/>foIUmo9X8> uBUS(WS|Uvɽyu=qx 4i#˧LT7ZcbTI#!łei3Bn69w2߾` X@,$:ʬ<,b7a>u ~I8 #_ثh˕)Ԕ~/W*7J%*OݮnRi> }[p?9SHNjd:nJ*?X7QUNG^ɮ쿅7'~zNx (Ch߫,t1 V;ItXп~-+֦&}>G>9~w.(,H'Yk9>fiIŖH߫?fWv}{8 <Nn@&qYpv5kԻbbqb:u6Mggݳs~aXV߃X@, \,bg/|.K+]Q/,BL1B,zN׼=Ә+msO&\f˖U,-|XHce䁚? ica:>O*Xn]X&?7y|ú X֯iE 9o|`a,2.S2,a%;m$;, IT=gK}^#Ҧӧլ$>~'h3m~>`ܽMY И:gMbQ&w$ogdb{Ԯ~̯;X@, Ă]#^b'dգʉpC,(Op%;&>bqn⚨%>Yɉ.\,8`L%Sy4L(+_{@9Qݴq7p7 HYlTf6ͤE.f~bMh凹X쾺#Rb"912:$yXd.hAE(9%j[,ie'fH>M2c7 3S^)l6MJW+ QU"⭡}'Lb˜uN|X@, }Ģhd;>eYz'gaAcM2Ž2I3Dx-a-sQwX݋Yvv$q2ᮢ7v.&ɠw9eqDUosD=I >biRlsaȫbGE{*+{QJ|S>AJf* k}#l+]$I`N&_CӻeUYd1\.Nbót^Z0EJ'$E}:. q+"WbX I.J]hbL,$eC-96E|H:NO>e`:յE~$ES K~b񾗏}@ͨI‹zwY?5OG|+pQ.meC 0}JݨQ?uUyav'+iŁX@, A gj.I<{M4ݶoeve~FtV\}[Mzx/H0g@(vdž$?RDy@, N"[L0:p ?!.ͪi[$L%"'ObQw/Έu e*˲cQ,zӪa|K(fuy}uqZj!SEuXX@,X@,X@,X@,X@, @, @, @, @,   ;JH?$ dV6s8@ ǜM/D3 FmYMc_s2z?XW];j=jݻE$pS=[;W/Kr=0Y@r9I.nޥ@r1'l)R$B+']3%I,$bb!5^XH"$Rly p9SO $WK,D=fX\9C )R$B-s7i[#olHHD%2b!5^8g|[6f.L,>[y "E I,HA煹KOyBB+&X\8gHb!E$XH%ޘ#$W"JE )R$B sV^}h-uHyqbsK'N{gU&o;?_vO 45xX~զm }98(=FꄣoṽXfq*v' yVYUό nlZjVjԫ" Sk~;̷ |bG>vh6[eځͳ;ֳYXJ\[il‘6Z"mpzj3bi)XHb!EU!I()Ul,`hHhUv HHN`h!?R1!]ɠ6B^(ㄴp@ϲ=BzǑ$>ph-9ğ.#d6DHjKjIYGqt”N]OcXN@Qn C%dAa}tl?CkpXt b[@ƣy(܎~VbāBp"RUUT+OC?2vb1LFx X>S^PÔy(6E1P,gĢ4۵mHH PDz:\愱wĢ'VMw`I 0konmޞhfZ>) rflpiop?Q%!skz"2͎t;@~ YO^RS? {>}E ^^!{(BǚbFq{A3?B-9\[yP1YxEQ۷'qgVFݯ@=[wU]Bw){֖ p'ʠdEm8= ΓpỦE]^YrĀZjCf\ \ŴsG:ך2=lt6m`-50;h‚COV IDAT  Na :-28Kih6i-XM'1K iv`!hIORxO L5k!D5Zk9cRl.P75m=*EJ{]1 KbemPb(va,tgӧ_6|I? i_'>_^gX/<_CI,$"I,) ks&Ģ_]CأV3M .E…(^=bz~\D,jX8҂ޑ .6i$Īolmt+e|J^`[6ޱPnS/JY2o'C< )A#@.o ba7j?}|$ cu :"$Vy (C,1q Bʧ 4iZrÜEzQZu!w, {K_hPXᕕ3xޠQʜ 5sW#Kc[>d>y3t4G264d0ٲKi+#]Q5Ii~C2IQfIxUfGݭⵌk1\nkzYJC9#z5YZޱp38r&|#=x=~{OC'}z՟~W)R$B' S>hLQ0g!é4DvJX o9 )ku%N{L0e Xwn#tR(+g Vi( @͕J"?^Ģxk"L'1 8 d"qdNOtXFϹb,'@5O$ؒxy )1Ĩc#vb^:fpbJ,ZvG \EF {0cDJʬ\QIXG4="cܟJ8oKB%&&<DdÄ Jc傠q)uFWZvk?ߏ{\™Ac=$>}WqNm#DcYqEfF{w7F:+e{r'ɏD\(*tiAj,mteUܗ0(FA3ob|:m+ì*7YN+80x `0OH٫q;f`#+8p`+&Xn@u-.9&fLW,Ҫ$`2bvH#fey:{VU<bk큙OF%@[fe N}U|6 (()JÙp3-Lw֙F-˩T6kOqĥvU.Bʙu~A< pg}{X (fwtQ%h] vQ6d)Cѷ|,KP8e-ehR[Nkl_5cպY,TO \(၎nbՎ6=o8 &Ƨ#<X{I0bV~z `;IYd!vR|K +,XJ$X-~>weгLeEpqW5,F*h{__Jq? ,G`qKΜ侦|҉juǤSJN΍|z]‚jT;yT`BrE7-Lsֆ Xbx_7`*fc՜sMn!4Ӯ#J7"u(oݭV[ X 0O5{K|jwѺ޻BѲݪY6Jg8t*3% [8e$XaxX߸wz_Lֈ(m bхS=QU4O7S54&d^r_"f@IT"t5Oo@AKqHGo$Wb! }hŘxH7zw51cU= &ƧԖ F K`%-R2,J cL s2m]mEvl8*SCS3dvw1X`2wjT5rU,P F[X$y}g5JX|X X !Tf{A$xIW,F#Kyě;Ԣg+/gwۇ_k oz?ܬZ!8*Pw4l9ƪyzVF"h71>i}Lj^/1W+헑`mV-E)/,W,n0w0WX8HRR'ؓ'| o XRBEm3խͤ7b9'D^h{,5IO77cgtq^i \%gTyi6 - T_qFg )W4(/ 0 noAȂ8d{,&cؼgmZ1~=X 'O>Zȿjm6PtLԬލhrU}L1`ob|:nx ½$DHvS< { R>ຟ%?ˬ#Oٍ4VhT,~eq?+{n%ޚ[=EkOxjmj}#0)]-R*)4R?5`K#ʠ,sI ribiLJX/8=_Y^aY W-,FXׂ*ïo]F⥭Yc0sAgKL(Eo#bGF$ 0?yQ >\XS;S`;ߤZT`)z> EvS6=?,zZߑ![U'0KMPJ!ܓ2Nׇf́-[<@./U$X$h,C**Kɟl|-95PJ~`lz[+X|p}}boCf|5S}:6EV,X\mzP9EfMxyam󡋅E?}e_EhkLxEcq]+-g4`'v(F HPxWO L{d҉f7[`A @5w#O>$P "$+tktћHyI9}y#Ekhde (8"of쉭sk(qt]r9Tl";ͻ7ZO^L aDϖm} {M5Tc.OsMb!=t,mp]d}"=*U13#%dV1~b#g\%r5CpK?t?b He$álB0vngb"DtA5c*KceLINo-n9K:Ռ&לVx3{ ?Wx@ػ4-o:2dLu@OA`@vm*jKߚn۾fڮݾdw?oW뜤f=sssϩYR[NN+6ć.|v4BCʢӼ7 ^lq 8+Ė5@.U* hO_\G MFVhD-0 I/2k ŽNÀ0A3ԛE?l<<:D/k>Zm:Yr)?Kxbӱ}t,Š7 awm/J$Pp`3! 1`ad*1z+MwT,% 󨱔mP F>caj 7dH{3@U̅7P&`a.{I/oyϠ*Xs"_-$ [ثQbc)dG*3𔻑^ռ1RX<І-bsm-μk*qXt1ocd*&NinQf |0wP[Z( )Mߖ`BS{sS ,_? ޴oy ~Sꬶg,%` ,l`]Ф .15 K/eC[vkعc 1o5#ߐgLe]lWSUC5[Ǖ=?LVJcMΥ/U+KØkc9]g!&yZdBoHji u=cndly-JTkS203 yUf,K6d)݆ /F ?\7Z˺Fsc-khCV\i7޶b;fۦYbq*|n&MGakz}^@aq飱 y /K7:bTj}Ω# ,NV1Өou7笪z2/jhipg<)[BHr|]h1ˀ$D&$67j@oA˹S#PNF?4MO6`.X(4k "uu h6<"uF;<{'u:{"]G42`+ؿNSe EӨQ EJj/l跞^/8(n +IC[TyY˻ӳ"0 ݜ$g§}:LxJqō'ky[{k,Db"Z`diOTϩ20 vwOak&X\ԡq'9O3*u^MkhW{sE)E>!.2).&6N5=rKE@g ucJ]N(pxMEEsI"88lZ \M<{S)#5 6}3(V߶) (jdg,4 Oq[v)wRyD,(9!) 2:l_i X#G(f@P`,h0l4訂C ,C( # {Ka#XTYFs;Ĕ R^M6>w);XwvOi$k7-aLQ(ԍrV7c^9u\jraV! d~fa,xPP,dCК}@FsYqn.f-b O1Ve=Ģ5oX8pOi>I#ïfV.@/O ?/7esܑ=i6iXXmm2#nIdX\G1*F5.HP 5_LޮꃰyS RA, }vT{3i8ob1L>8WM*bLEI:/%VTvջ\XTEj.@,XHם40,& g}3bkCdObd1fu%/i~bݜ%~|mNfx0Q.\ȿZb*ł c^>Lj|hXV! 뭋Ų2b͚. =IKXМ)ϚťX؋TUOn˜mh.ElܻAo]yv^l.w~.j'9n:2,]ġ{uAS ub7 xj7DNFD5fbOFid IDAT(W3(7;XTA0~%bч @`mܱ%cUboz|ɼd-c͊Մs,;t=zNԭ/i5Ђrm{R,EφX'ZybO-*vRB%7mrm=*?QXԉgD/8ے+i,&+W Rzbmo2.L6 C̹X όtyhb ]5b=8aFA`Z:mjr\YzCX`/;m\˻ttJ,X6O:Eޚ KB# x2jGDgWwl꥜`=Xԉݎ2ov]LlH:ŏ2n|uBsϤSne3ȍ1 b#R 8ǼWO\Em*y>ji⟅9M[Lv5nc'`Ͱg+RH,k9EVFՋ5"&6m'-I痭F\Έ0,!oٚ9j^D6jl>Pt*v& qF! |5nҴ~E1=k4dNfL{SGUxXO'/m.EC& ͘R(|JpJ! |5n(q|C x6ˌM9oBX@,nLhIM\o&X>NnlB,        _5lzcbmķ-swĢb1r:砣mbt]~9cZX~ο:&z'eE<y'b$9,(Xh_,| Ij oQ9sr5 =/w~h* aǗyzxNlt8#cG oO.o5C̭̾s.B4~U\,>Zut0z^,m]}B,kYvT,|=X⯉QbXm2[}B,z7Y\uTbsSϿb֯bZ_ w>eY\l5nٲYmT*/Rz}|٬SWHXBާte=EiK-9jf&viZaKX}R,j|olG9y~=k~x8o,7לf0Չ.. q+bO5 pҍctw?['S0FFkC!w=2+Cw #}9xiǸ0+O$Ptge!/;N_ 7VqQ˽MY6]Ô>0䅱`Ө@d] ^#īx4!_ܨΠ4oi} !Qp@Oĝ$9 oIn+3W\'Jy!vۄX,x<4'A O=TJMm@^_Ð6A,v1f}hK-}]0Vu`2Mb;vU/P`FO}(jT u{q ' )cOR:qscml":d BU10KݶYuZTy+Bΐ+VXba+w_ cp/*o97 ?;:nubфȯ9EqR?ϣ,Bon+UA,mBcOŝreB= ⏜W>[ϋ{#\ a*su&O8"xh J!i,EAEe_Vh) {,6`ʪTuWEX?rm!E> hKcUp;DRF+XQ? ˀ_Oh⟽M>L[Jlw:q CAuv$ГTIp/dC R 9i5ЗijicOR:`v68 Wi]|XqUn$B10h :CXb%V|+b}x`Ғ_@˛ׄIPbiq>g`'2u8/kahy,}'B  ׽о8QUbue*"6b`2I~@I@FdPZZrk"=~X[AK㠰@I$kKZEw U#IF/=Ե|a `6}*_ ӨF8'Pi/hP>An]q<*BĸΣ7sDB>ǽ] ueժ.Q7Y.BsSɇ$ NaL) XA*^ޭ,kJr69R|&<@%U=ǻ8שĦJb2d *'LuYS"&jƔPX6h "$-wƞt@BwOoA5am%0!/<2Ģ5{  ]4(c=d&3dq5S2"8@*q~^- k >Z4X.Ac8L]S5?J$/xsa:ÞqKtgdB4+VfYBj34; t$$N^Šm/"3Ez\XVIpw{D<2h(Ib،+,ZAZEEZ8} Fz%Q5Q3ԇêPE$ ')f rd+Ӫl|B  %j.Æ{,5`ŊK,,bXprbMCf7ʯOT5=Q>Ă|S Bfgӕ5Äd6`n6%A!#h37baj̢,lXUD6SA}7<[&tDjjfLZmzOR:  ^I$'ZtbgCf鼙XKk~3$+XXbaʷ"l~8;|c cyqM b7S;{.ǮD׫yPsU 7;,}&beȋKԭ".ݤTCUۅ2a 83xj!EX<^g(uGz}: JE%~5.Va0!Ɲ||5baԠ1B"T0"ucl]^4XHAP%9U/.ߓC`,h mQM Oq ԑO3EjB5`n   r?^UhӦM mڮ ,>mc>Bx9`1U2$虴sZ!3"X Bcs*n`eרX(z, nK>N!_>RG>`){! ! 迎VP`,GY{DzZ5QC@zBrS)܆٪ H7v%1'!XdVq@^90l-Jn"zKTrU7t1GA_E.4kdKlYgWwApK >J9tŢ`HV l|%[vj*"\XG;R1b5gncPK8#5lsY&Ľ.U_[l ,') I5;"d ]w&ͽ񖄝ly3"8SE2B e,ivPel$ѤH[`q`8a' /Y l~ 97Dd7:wegf<OϘ]bΟt+e&U& nHnW$mNW 9U"fwwлk=R*W#<@o22dsN?b j >;p`1/Nܵ̀;cG&to ^yzKq/C0ڼ]eAyl{as./7 5o ]31XHOR@K%S }BIϗ,&S ,BYk ,4X8+LRP/TgUQGoϡכLOQ]U{xpx|̷1ž~ozַ|}Hićz&%%ͭ^\/ןTޟ\-@M^`ᔥ M4׭W`a/XO;l=G]qmӎB1:By)e>[kG΄ }P n`a;]y ,Z=]V"X X7R`rGKl(HLjhu2[9_Ȟ>hݧRUSFXD⏋95V޷_D.M.![Z iiܟ1pGBR6ϥ~KȌsZuh1e־4 ttmԱ-z%K`{?;&C@ X\i$i#}z'AvHjw-m"Am8X=enF6]Bjn1iF!X X QH8nekzbp|#şf$x\ȼ5{l/3Lu[]6.|62 OT27o\ͭo2.sA$Ҁ)2uyh ofù$6`Ue*&QKQ ,PwI \ _;`1*(KP_݊tv )X|z?n%âCq6 bpEͼ] ԥJ$1*o`X47,`pzWLʹTiD7Xj_-tL2 _ߋlV|$H{>1K.xrT%5`uh/ܿy#i z=qڦD!s>ǼV*< 5X,XZLX=X/n}BwX ˰QlW痳Q^4Ã+Ǣ lCb#JNh\x,bmF説G/eqX,Cg^B{ίO|Y^8D˙IQ$뿰C%#*4cxm 9ŷzB<-T?,PGC6 iKA{ n㽍̱p'PykðQdFV9E@^  q''"1'XȠ \ c`} H kG/yrzZD}:ˎITL 5p`BP sfpO]>FltSMXM``[z1"cYk2_qE3 ;S, B,rfa#W #6;my`a3yઞ_Y X<,̰ʚ8+"~g`ֲwXww`BPys^`qe^9Flt};b( [/\~ڤ=ǂ;~=\BP$^`QQ0u, wx3煨[gKRMnsp6 bp/leƉI@m2 b0( o`f }˶@^% #`AOWN7{tʐ%2s,ik8YNӽ/5b IdiPCCijU.0?mD ,HhBPdkR/ !*Ž]cQ n%dY}r0l`k%S}ۇ2ÐKxZNEeL̤ۡk٧*Oy^2g}6BP*zCUE!JMVeeB,Q(_IzBշM* BPij/{G2~Ai^ZC4`BP(;zM"/~:HjQ(  3ujygk"XP( T 0|ػ/D&&@vĢB-*Fjz1W}ā@Ӆ9H8N2~~meY/I(5aAXggKn>#,_,bB!~K_&, X쾧t>m{x)3~0 O<ٜ,n-‚  , ,@XaAXa ,‚  , a@XaAX , ,‚ aAXa@X  , ,ulDr%ЫK{C mǥěgwvbݿ,-]@X8+pjĶkTT2LAâ\*-} ,_$ݞPVV[<>\DbaW))7gЃG鹙X\@X"ZWa{a‚-dIi7,v*i˧U*N%ݼmpaV;Q~8 r.gAfə orugG yO%gd.[$ׯ şE;6zuXjny5:{sd_c8kMRͯϥT8|lf%,NdyG]'[aѕq!}yDgU|,a .t@XёTƮM;{`0>&}.3sHqk Nςyʧ[⫦ "qփwذZWEd|P:swp;$}ϛӁ(o|#)aAX|ǸTlrWlb>>\>z> K08j+ӛ^lZxTsnR5Q Ueo?Skb~"tV،ҝ=`_@Y ;9y>^o\ߨ;y-W myb:ڋON}32`_‚Ԍ=3԰91FXlܕhN)炿ްHS;ie"4bR)Dk1ٰHN:#E4TX_驼;H#Nh lNc%5è4aN}EG {`+KNE0cK/zwowks=\6,&lvyE+dWu hvX6 Ǹ^-âP+?Q;FXxbOTUY:tz{_@Xwha驙2'jZR>\h>]o.ѓŖ05 *c1|S)l|kmֿJ1)"/pX<|(,ұ\CvwڱܝE6@XwLJk/9cҤn%/{ q4hVshyINWޞmï'fuq>Om , tfE'^q^EoŒ}d8,Ck;Mx*a7fک@XwOWsr)[fͅ)D &wo=il}?'̐!-@bUXBkխ&^m?^kf@ؾSE1qN[yS2ְzٍH39T2H&ͰЗq^DPtq=,ݧUPͰP8+iEHEGD%&ɴavfε^/ܳK>tGjx>2a0XگIeNԷ3R}f>vL~wJfUy}j+z} α[}2k %ZUY7"`|UqczwRWk+~wŭ*-> E'^աX]mi/liP{s[Ւoڞ`dw-\ĵkGZgl%N6aAX'o&+, v, Aqnxg/xa1qa ‚xĜ.)2,c J3E6, >*‚xjSӛ^>9y-܋DK|Pa@X  , ,‚@XaAXa‚  , ,@XaAXa ,‚  , a@XaAX ,֌ۿ؎vcL$/rTd‚LDp^d?rs ,:ʊk{j}bSd}aAXsSTV$axl|&Kܔ3,X噚)R,~'ԸX|:*.Fcf/}x8\qqҝHj-?grfl~}3Bk>*XRL,֯^t15,+f{2XNVਸf.:y+2yn,G9i k‚x,$XwGUg'cş%uh9bag@yl:'D6$yyYS*w.`}XZa;<В)ww''=9YƗՃ@y/,Ҧ7"=xrƓ}KikϬnտOzc/K~@XjFdmBt/'@T:j'ZBdVbBXML"# M${^ E^Ksy^Y_ ßja1!ioգ"gަ&ңBgtᢨf}cID})TWψ^eDԙ8/٪^aAXܫ7jp=dD ɄqE3,6I^}1rN"D?qv~4yze{I2啿XH#,?w6f >Sw ok wb:N$OL._$H w_f-a1b"k ,ג o^ âwO=(0{sXxgtlHy"'? ʈwbƥВwGOr%XP%ᾉb{v_"SΦ'[$%=Ŋ408Ŧ/qAJT!-ߓw~Z-w[W>aqjU☚:hD7EƝQD%¡@#n 7/nJy8֏թʲāw`Rb'yvN;¢*Dxg'ܜwnρFX}$"}GoVD&ǥY˻.uڏކ ,0.9ձOԬ.2ttx>bߝKښ`5ֺ~BD?n3fgX\T=,^/,ND*#cEڮ[o4?;‚x }Cb.,޻G%51u| y'dN/-,. |3,DvںiE-=bۿlQrƗsqQyBPw\lU7|  8mV _cj` IDAT#^S097DŞ%k0 UvSzr}y?U冂꿩˝7o ,zl9%6NO73fYj%`޹}q2j *wEUԀ `A 1 SCΫo4硅sgu"ŢLZb&0 [E\bx@^%oE?tb14e:1̸Xbqhfވb2)#j&)m!EBm/}/KZ5\^*ʝ3J}vǸ1i-'b1nܪ&',$)L$4|w9<;=R|q͇)&;zN*%>_mkLR}L`MRzMP)cw:wi[7GNT/-vS)[sM 9'#@lш pfu kƋŢ"EJ15bO PC#^Q%a6BEv#a}M5zL%&Ta0oݨ:PRɓTZƫe,B'*@ėzȵɶ?T혽:ZR$Y܍ţU=w>U4+yK뻮]0/릔v]Nҩbx9%e&%bug"tIh]X-‹ł7RpjkGia۫גoCv.؈U$y'a I#Y li'Rcw](myEԊKxYoj}IVH?77cn4v _v{q1ovZ|n@^w ,:Ţswgy3X\vqif_K++ n%bb)oN-ƴBmjc ^&*^ .W(Ŭl+3"7Q`Q]:zx':*0QI\RO6k4nGw6;I)h+jo֥"ӠH hbQAlf> »0B4vOTT "u=B TmyB!bhK#]z=\%}Iőc!ϩbx)ކ @>7|=uG7객u,ɇc1ʍx8=+V(S>pPT1 ,#!~t UX8yN{?/Ob`'FWw+ZVw3 ī-J,)Wb>֖ߩSuHXTO74c?҄X  |,ښ3cBn {hk!ւm3w=)h@ۻ@~3}WbLXj{D{V4dm1|[,Ќ// %D))ٻd,~7oA:rKSDOLjڼ iy0ϕS=ŢMT ?bg | dr؁b{*X@,~iON8?NO-6U^2^,Ci{;ѬmL>Ţ-t*µ^c1fS,O lPľ :'D;;Ŀ@kad1kE^v;2@,&9)+1pB'TX ӈ-.FhL#>XcTߗXJLdQZ Cq{MS޶񖽋=%oDf@?QQrHPɟXJL7,0'膌onhōU ~!X:Z ~ݹEZh㔸8 .B߉]4ȼ_"Ă7Fa9,x;;o3]ffĤXߍ2}Xhbw*X@,0 mN+kE:/  (\;BJ孡ůŢ6X;c!ŔI]X  `~EKKGJU.|6\)sܬHMDT#  IN~bŧ@EYrb`h홻vNfpv8?xL@MM¦B: 6)h j34:dr"xc%*1NM.&|N,Wwݙ2$S~?}ڗW<Ƌo^=˻|BX _@X ?ruNH>{BXRndzë&Qx7T@X aQ7G>,oP@X Wŷnr­k7ͲNNv{ٽ/a!,__'> xJ[o߾>ܪħ85 a!,kdw{ѾobAr+qOϯ.C:Y] au/{Rg1ϯވ:BXxB+31 +I@X a aq5CIb>gN/G>2h-6;q-WZ,4+!j6?\HRټG2`+ZKk8S?hwEBXLJ֏!rWwBv#One/[hn棱j/lvAWՆ,鏝n+vЌ}Rv:gP_4ChO[!*&,! Zs%,, W| bJUB0dgĄa F/IJYϮu^BXL,ֽS 5x8aL08jܠjs~_BXLë35ҽRFV|ذbA#s, :W9?â֟&, k b{f,,}bPjv5Z!]Eld5{Xي}1(B3+h8,&:JYX,fku4X_#_}AkWnbzCXk'qwT zMHo0S^i,ƅ (mwo7 "% h嗜 a\+5GMV[/u; @Xi2^g$Ho]OvIyC v|Oo8,ttAX$IKpd#VM6seI_}*3zv ץze+us DŽE^*v1cQ(/dɲ4n|mK"=in3udн`Fo ,ԙkǯ ?č}xm|v9re9nWN4j8')=zڑu u ,ŹWnxWQbA amyofbAXJgim.,&a!,ΑxOYꮭ͜ aBXa!,@X BX , aBX a!,@X aBX , a!,@X a!, aBXnX [j}xgF  aqj>;^Tũ 7~}Zr'|F7>,~p.NY' ,|ɞx_|/`'܌/Ήkr}t׎%%k ~nEo;a!,N[_;k.*_͞l3ʗ?(ϥONZ#o&K׎yxm@zD)Kŗa!,N+o^ø_.` {o}džŅߞI|x_^,, DwN9,YUDTVG@R)X 1ƢU16UUo1ٙe/׶o<2;;8g]b<Ă  H,H,F*AQW ]p!K,+babXAAbAbDmF̡[8t=EÞLJXAA$$WY\M&EMχ+<;6 (ƙU`l0^⥶Qdo7z˙tt0ftoidŒa #Û>7jT3, 1q d%?'a}~n[IJH׾ۭ/F ZC>QɕY<{E)RFThѵjzyժWz}+lw]WKw?=گVsOQwh!Cno:G‹׭^TS^4|2^OasԨ_  '=Ҟ܅,1;VAqr. v~#b0Ld˥W ,8/EZT+}V(@YY>c_<>\TɳMv+'>7m͊Fz%qg.yQJ*LvmIl̅jQ_4sGm9/nSƩ?J ZU/{Gsq'YLdFs퀨ۧ?#AAbAb13gP0 TVWM,0]iʹT ʿaT?R,r~uеUB &!ybXޤ霿f"o0W~ ?yPkݲbICZh Ʈuʔ) Um<5-Ot6=bZ. m[WM.:"Ttڂ  H,H,_˂ AJD{_XtŢôzxx8XcVTi%EPNBQp#; w;Ac"UĂ1-gb)7X2uvX7f>_펬ynOf~~n` klK;h-%Ymg3j_,~#%Ewbq!ԧ7`ť !!  a 6/d?y m[-rEG v_klW*$-ɞҏydW,4*vnu8R< ,~lX.6ͽXp,޶FbO4T/byE| ^ HՃ{&bx__ 3~:ʍXlqEPb/unS AAXX zɣ40TÖJU`jXg"B;(e))L,*Q~X_ulM|] ݘ6&LyVW,8w6wᵞX,A3HXK&/Zj!:pGbVTBgb%4ރ?)bVYGAդmVՄZqn@}\,vuPCt(AAbAb1϶ gٽXA]G`kYٛ0kxlFɫS"˛+Z > n_n֓}b+Dɻ222]z}bdѫ;`Ĉ_O_~UAc\\KE=a"$eC b9gw9X g͐9Fv*kƕuݎX\={|b >bq>)*xs)YSTα abC %B( Ăb ikz\:*SȊCO\ !{lX X!Qf\: x0}U]he͉R,A/o:QQrbUB#   '-5$*B|ϴbql4b{C0?r8# Z0ubU\=E٧ #/łΙuh`b3  }>wo"zKɩjZtFE=,obFFXLtJ Í(!i϶],VjYݨdB"u%D8U!`ʆ_[/EVK'kka)\ ĂgT*b1ԺbW$AAXX5vq] u pvZ$Q߸ ł7̻H<7,~,tWL\B|+{{QVfDmXp5bQsĂ  H,H,~xrVd E ŷ C_!Ou i~o%10?\ q9}J,5肾I٤}fT-J|>e%, ,y;8_cg#j -ofn q;z"ual =9:adYMw[onE%Yu޶) ޻vV?r쀰 ,EjbиwVfc#Iׇ˿#>4Q?iaQGn䬩J}U(g=֓B}{?T Qz, 3'i)‚Q/lt1d2S T'.:Y鰭nU4t䳑v/7Sv\dneǧp?‚{uT|x) ,H{~k뇅>+н[7 , a(ɺ{>Z|OX  ⪺?^‚V%,m=ʶ]L[X 7R:p=@X:Y5?.r~=l2Q ,*]8ǢUO<a<,{AIw*ԗ}*:a<߰i>:5|hp/伿038)>1͟3¨iZ;!ev5"asZ_28<{HޖX3n5XYY00;韩zaѴsşF ,CoDb-/s [8FW}^ ~p}[Y "nekjζ:,Ns1d),m#L{>&Ȓ͛\ i8T‚LqŨCI܅lrBCX]Fs&xPbưw핈D>)rs"orET)DHʁ] d$l4 /e:bPJ&T1V̤/M]_7i=͍n ,_֮u|;(F_ mE=,Ԏ{9)j=)Q[rp_4̱J$d}Y̝m ȂZxoih><@MZ?  ⻭ _b?<@ʸ1,(߬گ9,$1,,1i 9ws/,F$?sJk&4@Xx&Sα\kw1{[^n2Εb:]U}䇡KR7R;EY_ M.k~50jNutCϤk'"݇ŐDۄE=69,uXmՎ=Hhoyv>:>aaѺI ,SJPl]Xs ˰ذOT9,N&,ZGl ':,D7E& ‚_gj5[x%^ KKo0;ׄE눭4&ۧB ۣ¢uwOMcm7Oϴn3ŖJ bi)"UnSDVDP^EFtXFV+;'9I }3;璜|x[Ԇ"῵  NLN`bXSX@,in%TbX2!<(bbb@y~I%o% U'bf5@F#o@, T=={aDBE*9XşX Iw={QUEE)Y  ybQ%fQbSJ$u|~  b!e5 Y.ڥ^52^8*+~?OT_ߓg}=:bx8fbч[o7]_+S@*J`rɣ^uXXEl- X}E5 vn1{k?[FϗD{FvUu_dN?%X\l~# X]k$5\)67?pKxy,\/Jq?wNX_Ԩ{q$xqb!&3?a/ؚ[W~䒰of y]Ew}X􈒺">it<#+K,z*+]W+1 b5Ț&cDc{N3qc?[:6b!I ̿Ģ2@,@, X;7.fq`j="Q~~5ލS-j_uf($@XMtX*iƓ, TN,^g{?@o.jEMb@BC$ Y|%1e02 9{i?2vPb*=d= G\tܩ(FGtMˊ]ར\Қה&7KԺ6T;aYb1U᪢FQgls9 eU .(ZEB3ޚHz-7zk Hץ(B+QJQn4'<@,@, TT,Zxئ(m_rk{f9(ȣd2iE=(5|T4v Ft#cH 7z@/Qp&$Fg{bnYJ% F!֠_wRu IZtժ Ѥ]O<'y(Uqw-d͋5@,@, XZ{w3 7S,oc!eBOߟbiXb0t'ʝT- d`FHWE~On\RsDYHۉފ ^mE"'6Ih`xn|8Fԫ_:i~|?6m")#b}}=wzҽ&C,@, TB,>*f׻hDfm8ܴ؞˕ Bm#|X.h/WξJr3MPJ*ǎPX&5-4Y}A h3 "D OE ~3..qϲr,P@,Y(k:/=E7)JpW(BBsEcX=-'D#N5a+;5N|nEu尦.첻%ł5C"} 9?$M N@,@, ,^~~6KHf?Xx-5X&᷾@ pۉ5BHlo!vQ,b2=X,lt@,@, ,^Uzor!dTrXn_e** 5ȑXq@6T&5ʇQJآS4O^8KFRAz+&9wm;0]|},oWN,B,w& رg+reX33H=[p*BO_i+-Q,5 B@, ,,^!5ljm b],Bj":Xإjs?F!md,b1EttPlRbѩX# ]. 56 WȎw{q,팤ٌjoDl[Εkg<_z ¾uv\i ѫBD EO*F{bQePəcI_/7=KV[ $=sK ^Xv8nZzcQV!"7Hj C,J=l3DݤCIםS?e4;TXt: DUNXX@,`Q$74[MKX,%x=隚WȎE?8-HtQi{tG]B$bgqRB+4hvޮX,scK?Fef8J0tkԩIK;J0ӀݱXdq^@zXHomXԃ-elv 54o,:5#>00@,zN+CGگ%RCZio%vKo[PAq&+D%*m4^YI9Ģ{0v6NnuKGn/CIץk9kpk2ۡXiGю`+DbM9w XXX@,.ezo)9>Na֓$;U ʚE`+T]9,BuV}o'B ; A牪X=GSm, Y"w Y ݎ]WkT+E-/=(S1V,fQO+̐@,@, uGfNQlŢ%[Y ?Ǵ/Ƨ6b '/LW0Y g~Ur?e`iTRT HⴤXcz %_qJn&ѯRfS4  5ZܵNe#*場$XX@,jN/ь9`_T,M{.)#Zæbf (2'?Ţe1l[\y9[#*--_IQ [ЖaYYrMj#7tD{X@,̈aa)l%D!NDQsK>OY}~?ֽ1?hȪNQV7͢q: +#QX6=Uak;"?*_}Ms}d7+Qlk tOA52^?bQv(R=IEIV'bqQiRSy5;7F!WyBM0΂ͅm%ߘ:H>ecHZܹ(a9Z9-z;PCK0v jq0._VxfYD*LO556&QQE@XX@,.8Ds:3t~m;Q*55dFTZ,(]vN&"c+~ >&WJJݶ9)JNfvd7/DqGYLlj1)(f}gp Œ o3bq9JԽsC5zGS[r,b0K8c-~ʈ}|O`ȱPFMi^%2r,z(u5QnjnN;f7+j q]YZ$vNL[##9վYfluU.W+8}ބXt1XlGLU,}}Ŕq= bXԍ fb1Db1kjvVD,iW'ڴ& @, :-W4xw,BĢXYEY)MB, Z3h6UM'T(=D7QX{"YB{!b|bQ[i]`Q T#9XӺ`+q Rbq@m$nZqP7{w۔6`sd`Vt+hSŇ֭ IDATtYm=L_}շ~;9I P[mVk! ,9rz='27#uwoiդQqo ?bO?i>+4yP9;#mb; )ٮϛ ,,RQ?ye; (Wc2’HaiMȳW֕+NhDFְ\U[qy&,cʛXɔn۟׹_9 ٸ", ¢" b??O*E~Z2Q;Ցs{L2`X8Ж3iLg&jɘ##"R=ݺͫ̊s4{+㜴AXE>++wInv|;+,a/t ex&oWםdI_ϱO;k^ڄ^3!kWUPjѩlyö7sCھ!', ¢(4]8:10Ш;?jY}_?M=yۜx#)ìWkd y;0od4aAX=R4VX췻"oȘ$#:fO]x/ 5 {s2Blszxgm9w8jԟ? il7w ~g aEdٟq|ԅQB}ۙ7d-b[m|x@X!%S}nwj9_aJ-2kz*//Fxpǰ_ q7 RJGBYߗ7^)-R-}7$B@X][I/紥h2 0چEI"7Ŷ]1E9qso"o?w"SmXnP#z>dZG7Z_?l{k|5o1Q̼BCwy< ^-KTɆ'a&[EY]X"xq*'7ņ4|K7q޽Wժ*m¢et#, :X[vX<:{CX&>,t',n{ߙ%S¢? ,N`ѮW*|EXMa1bU |SXĥw =7\{ms(23-ae㏟;QN.,*>AŝEJ$ ro_;b,RLXؿTw k@X$=cʚؕԸF3&Y`VbC9Uy <s5#9!0`I#-iiNu_uX}bq>C,8֦cRp%Z;:5@jT(D,0Z"6hN1_&]&o]jd2+ ɏK, h9Yp?FB{OH<aeeGBPB %$!N%G 03A^Ius/bn¥ +2G,.եoY s f(Qd2*O+_Z&{=K ~x3ū0cƓ'-,ysx~?b!ϑ5xNĢiC#BSOH,B %$!x"ow'enB26Zśd˯A,R;-XPmg,X%i݄g_h'+xͮRoǏJ<$?K,"})'D,r~Cb? bBŋ'.PB EH,~`ESPxς͎S7ol T ms`IO|W r%r0OxĈ|*4<Fd> wV(QL,y"xQ^,Fc@m}χ7~pDjD$7~O#gkٗX8AOY4n7Ou#3ϑ=J+TK6?oZcjS1y){8N@]ԫ'"w_b&zQSiV#zuAr `0}:wD4/ufH,B %$!2b1f]Oc@v g^ĢyJL,9jc"0ƚ2‚XC m -B E\m3{%'([(tV+- 3|F"LBx\+1 *Y-ZQ,b 4B;WJ!4`䧈IdXDќy|r3736dCahĸ@dZxͣ-$^Of-(eֽB;,@qBSPq;ܺk/"8եjʏ nUqL)t݊3-QW񃍹|s2͒̒Gh.B6HV;̨+$f#>_ibIU"fJ';lu1$>D //.#+y:w݌jb&cW&G1 ^s ; $d§ya?YK8JZ'>[Z9 Xwm'9U26BaCgeΊ#Bu.΅T BBlefęhʱ~$N(6\6$V<[US!]%VLCW=wjg!)cMo|Lr=w ђKwJ(!ůh;3n>੭4FE_X%gi±|L8̵3lz*ZR**v.¶ގ%6hb`rr/b(9 W#8^>XQL %-(-6$HN<~-'̂륣 SX')h F_wR__ &N7uvf9'Z% iEdc%Pq1\Ϗaaj2d, GF5V{lo'i57Xft"j+}6ƭh̀>鏸7cjxͯB$9 W`nemA6YX+a达{0iB:7u12)f GK0| }/e(W.kG"0rwlRM 6BC)hHU$nYjW;\r>]a\c1ar=wDٯ}YkI) %PBb')D  E^xd>Ղγ%;9-1NX⚢c ?0*0ȁ i﵉p@ tsD=(X~jJ:=k|I!Jݠ}qmCkvKA#{0^m2Q;I{G+|?z0rGTil=\j9!%)`GLې7G`HImtͯB:Z br i&F=KFՂMYMªҹ{^ԥqy )Zu"$}Q& \m $2R}&30% 1Sѫb2\C,3Rc\e3{/ 7* `tD&.#Z'(P-yƢ/@-v hN+˸KZ=q3S' u.ŷx,554qs. Ԧ !@ !` $@y/ ū@DTSTK <3;31֙9uٝovjzi s$ZBV$1QP<kWezw-hc' G`3M[_6 ҽ1gz̓?n!\WS obq !`68)W*\yCqͩ?ɉǘf󂝃8Mo-WJBͬZ`$ӜEkaN"h~RYeVމ {6@VSrkG> Q0v:lЀ '  :[O6M]tWhSSǕ: qjm= 'F;`l:KZ+c.%v`Q>X3&XD/(k9t8OY<,,,Xl$ ,Ssv o3#XH{ 蓯J1Y9X7+`uʳwo&b``a MZ6CGʇ;`AGKx?`͛ ޼`1OK;Wɩ5QzUh}X j\*,0,6e9|EXz6VP is\ <- "'j pA5/*2'4ϸA>QA)P:jNkC꜂|Z 7]&9r8qгpރz"[6mE,sdMnYЬ XV7-qгp¬i`bDݍ2L͊OC,p̻Uރz"_esv3(hTrqw8X= 'L3v,2I愳PXtwݎOJa`0:iUMw9y GK(` Wb^| o` VvgW]`A;or}!7i78@NrL_x"C >ϲmTn oٱD{$UUd7i nȅϤu)?zv>+w1XeI(_se870]xfŸ# u9Ohɧ,ySW4:,`+B5O)36PƕvH*d#g_E޼y`›GU8T\&1l8oʹqrN0-V@(rAPc)V騏ձ3T?d7!@ieC6d7}&JbE,L Dz,Gkw/0HK>#x+<Ţ=\@V VJub=uWy[>=)XN,6fS7N^,ؽ1HvtZ //L9.,"k\Q㡓`^[: ?Y,X3 jS5T?=#m*pYD[1Ty2Xڈ5r6^9=O.UK9׮>ұ %"}2EEJlꤵ6bX#@yҝǝb`V=c G誖quEUj;1^=Iz[aI63ɻKY,{NͤIdgK=2ױXe`xxSkeS ? F߃q?.<:W9|bk\ϔmzz0:|W) +{K,kcJ;0ژm84z{POYQҪ׊iz*@, d}7+ܝލvTCznΥ, b&>Ts*v=wlBJo*Mh<lҬl)nݺm6dTxb`OXvpk'}l&ö{a&*7svUhlpñ.˦7~U籩s8VU]0[po6dsq~0i =T)&~*@,  %c{:_;DWö'=&_cßpH^JIi[_F^NöK/,&_=3G6i0 gίҀX  )։~g"֨~0Zhl kŐQOk8`(e.޽eMb wRՄe\? 7DzW="@ |3@ L-wtڧEB, a|zN&l1 )Z<,- vMMg6j0i}dm@,  C檭<%R“aۗrd45BٵOo8`6sg}|$N3XXXX     `bh3]k  ;٫X1ba!D4իX^ 7;'b1|(" (Uum^hoX@,:ObX@]q UbHYZZ휤Bq}feþ{aNjλCQs*Roa kfbLi3&r4b:I.jb1;WTYHU\۫oŮKr2L r*{qZJ]N&v1V8ʍu7fw'֧ elH_-nEvrcǭ)[%f8MɁ=F=P2Ꮞܛs.T0bb\Pli'C߲HO%X3bI\\yX{4ֻVNhSAgʉ&9jt~u]pǃ uH&*;myZ*&(z逇젱rOU&v(ݪҾ*<ڶI;xD,=\\T ŋfHd%hg8|CUM!* j-j֏tsͨaX)݅HH%u_mPYfC#qp yrL䥏sqU3rZ<~˯1`uS\,8n ?:涖3J~bq%`hY!ĢS_F!.E }q) iQ;c&yXuUiܒ3#PF;{(/"]G[ELc:^X?;E\EX(fNNb1O9j-.1b23IdZ`3b`@DqTP˰q!4Ӽz}MښhYrj;tWK3I@!\& `qGm,TDDBZPG 4iTv)G!ȴ,ߕC7BiŞ!"ߏ^N ,މW+&_&~ BLNM`a-6X`+eΈD kb +h"8PTϦP縯91pכ]5`իEz`zlZK 6XVTK~ ~ ذTX GEXlkk [l_M$L, ϕy-Xx%[P|8GbXFA}X(;%5ZHBv*)4lx E,~SJXX;bxQ千3?6Xb 6XZ Zz,ιvo ,Q(/zU@X, $!C MY٢TݱPj X<)0>Zw RNlfequC@']v_ fzmMs|uر |?}Qo6%K/ Z1^1?X$ fU/hzê<1h0b+^=x⚂E/Q^ صcXh,6m-6X`5Eb"pȯBS*\UeK  aϷCR,v|X4<xO*!ڋo,O!$ދ 1vxrGL%_$(B)I7sB v)IwPTgqVD(rf=CJsq,% Hg3Zĩ(n 2EBbIp~DT+pּ#tb,IRWX !A΀;COsU,*9Qŷet׀:ȋʀL$K06(?i"0)F![Q_` BA.Ogמ8g$]5խ((I_S_ zmO[bx"0>'<_:õ@B%Ilܴ%]FIOoӺv 3flMx# I򙀅UP@pGN&ڱ Xfl}[l'ɑJxH(N;DMZ OOǎ,2U lY}bXs{tᖷ|. pQO 2; %*6BVMSB>Qj.U%<}@hj+Qf(>I.۹G@\M]tf~-5m"|M&ɪ>ɲ<}e\ ȃklH!N,v:I}PL4Î2?if$-VPkr6^QTJq'$Q*[nFOqnO*hUr,CEJP%F4wm\~ƏMhvhIs.jɽ35c0L8 .52ƈ98ԭȵRYm fY/iK@3sWc OY!-r83s]r6u h"B (AU #C ^G0AG76DAs05Xt +q{_kC35az8j*]JsMfE—K*iTJzISe8qfslGWesѭXXm,l= Ry+hR_I e҂tk',F6EB9c&;L(Y|:dLAf#xPׄA1-ZEjf+%7 w,)T&ټ8EtWynuFXY=7c!1cΰ0NMd)}c3 }wc57 a}[l'ɩF*EWc&\0}Go.|SǻdG^姕 ~gchڨ7*,Ҟ$,v Fq?=0.Sp/;6r.aZ,$n;MKЖ U@H='Wm'^k^X"wV>Xp«{DJt5Zp>jz@Ԍ9a7"XHmCMͬmfgG/X ` s)6 1C8,roQzo?}6oz; _6x-b `;gM|ԁvXQf+3C]YfE^juTmw>P{ i'CnXDmn@)0$f/^!]?k;+aoO~kGmxG;$Qۣ#4 Am $I OD`Ѫ_ ?C@RX1bĀ_#ޫ˛?__Cބ[uʞ'^|wW ,:Kh̓`@g D<F$\w!Zx l]̹t'#+14X+^1}جߢGӀ>5FGӁWij(/C?fe̦9א4Fv.S> D53hWv]S²m',g,i9 !.A{)+PmE{g|$+1 MDUS_&&emu9ݶmJ,*ʲV!<@h`1αj6+ ,v!4͵6X1b€Ca,=zmT}[BXӎ"U CZkmV ->X%PL<'^8C&> ^ p-Qtj>Vmz?  ~ ԖTr'6Xh& Ѻ_؋aUE%<6.BNӓhI>$DDeX7q7&v%t{9c1^lb`gXuLCa ,nqv{#, XdC{냞󿙦^SK/L~7˞,֛ f'> ̔{J0*"’BK',Rwa\XI^ Z/hzRSmʐ,4 tw {VDTx9X KY ъ|nHEA*TF?eW+z,ݭF"/XtC1Xϰ\vJMH%JYHqvx,1`aˆ_,jQ8X:.GŲ8IzIchd018Z|HR/^xB`(FŹd3?TgPuA˱R/h"#4FoXR"?X$u4; X(Xb.l麧B"`i "+\`1 3SMW hNž ^(X$@1¿* ] hn/{B뱸y~oiDE\:Gq a+x4te2 #F X0bt [=: ",Rxd `R9,؁~FnZšd9nQ;.p(b75cri:=:Q`Q$ENꤏG;jڒSH+O=+7G`dik&qt)\*2ſ;Kږ8`. />jz ehaPzFP$lCo4C_' D޳*Z Yad΍3vz{*zomV'x,1`aˆ_,4(.K cݍz4#Zw^ vT XT AyM,Dͧa/Xm̲5O؉yPGcUkVGKKuP [E:$V(I?Xq5z:qݬζڒIӀ-GK+oӟE6gml/ZK815gp ]DosIr#Ў:Zn2¾[g[mQD lϯSt:3g+o4Q#CA#VDVގVN?H]=X)+$gl’¶Hu1\VƽВ@m"-#?bxUX-Hu豰w#, X1oO-̮M//Hyfצvw76M^{J[i+"Xj j5ZQFu3\Ez+^3޾g|Dwzs!}Hv7&ίN`_^J5'X${kz"1IGX|%k"S۰M,¯D:l&q!\ƞ=իQcC,^i+vo;tЗ Oʛ=R=r)_$ffFC%qEmfP>b'^ tZVb=֞ &FKb&w' a0L#m*%\%^Hxñ|M /g5WXV0xh,!F͝Su)b펽LMkb375w+\k`sZ™g\ʪ u:6:SI*>ភhbhкC "S%<fbg2&o޲MFOj auS,^i*v;tҗA/|#sչ4ZUѶ+p\uWO7H8w7;wmouYmլ13~6]ײESmEߕr|Yui]1u4L*T-nGfxɜ g(71M1'M&1M,Ţ;?  !rq+֌;|B̙|a}7hffAU.7빖 }O1RqxЙ}VGn5p+Mzj TƭXg}…Cx=f;$䊲2VĀzzѷbQ_5룵}OBXm oX(JXX~XI=i /v}n?>+/lwnKm-+ 8Z>ʖ!}Z lR\7{(UEw8w  @bˉNh?[,Зf6`.=>_:db8؝;ƋWG^m(ϟ 5K7G__ ozwϢY>M^bbbX@,X@,X@,X@,    bbb^lʕ/""hHBF9B"!5 tWGH!0Sϲ?=? c د11ݐ=G[bq, k*}M1xB7H6bNLA/GHȰXLhs$) )2AKBX)2 bxb)98.O]E"8ŹyR)+Mw,Vu\ ţ7/|쩾Xt0[xX)͔ mb G&!!rGbxCR:oM^P)[_9}'\m:#m_MX@,ڊWBDRcD#.W!g$qa.V"&CMIXg!IT$m%O8EI &I[BDPv .y?,ޖaL IzMwىy3ү`)4a{q-$=BP8/X@,ab7fɐ~2 S,2D[],' `_~%-*$VXs"Al~|i̞X9b1JvN7Rglw` ѧT5o2пo'txjKSFއ YX%Bł7$G>Xwb"/,˪vnV /~jEUߓ4AȠ-l*I,6"p["%`LJ V@v iY4;L$. ɜG>-b?l9/5mڬ-(2"#JY\JD6&,. o?3r Ү/gΙаSe>0,.\cOX&OEnꗁ fF OK=[ŐyH?9Ά{WâOKǻy_B*4,nJ|LD\LP7N &,&n?a‚ ,B"؜2,20s/ ֈ9)#BWXX"2oGϩ+g /_ sL0!aqC.賚]]*,M0\piK"f8E}JaAX!a{˿ aŐٜ9TpdLHXddߢ9fFf)K6=>(aabȍLr{NޟIΫ)S>ѱ~ɸn{Y;*bNϨ/ ,x}>|!ÞO54an^G ¾m{ g:Ɇ#1`* Q , Jx<_}mpbT|Ézt_- a]IݮrMWp1'GcD2@X~W  ,щ g&F9caAX?|  ‚ 2caAX ~€ ,  ,  ,  ,  ,   ,  ,  , ‚a ,‚ ,‚ ,‚ a‚ ,@X , , ,@X ,  ,  ,  , )ُ  ,r , v aAX\.s*@XagXf|aAX ,XaAX|v׆'  ‚aRl66|C#kC ,Ůko^[ob8#kC@XQbS+[1Y*]aAXG Qokŏ#G'EP@XQvXpG, ,NaaIf0bpbbYZڌ5x_1s3ti}Q*b%cnkoַ?Zcǭ~> 8)a|@U6BG,1سblW\WGC2RxgXcS<>> F,‚NLX^vCG,źτES jSw k.Hs< ,?]wɈzCXlg P8W_"(Su]HP ` , E%pÌX|t];?,A?GJU! F,‚NtX|rݵު  a8;z F,‚NvXԏRp M;7w{= buWG,XTOlpG,LXإYFe?ά, (QJ,@.`Utس"X3h 3i(P3%),!{n-H8[w)GB~:u bX {@,޴-k;ba[`D, BΟ:bѰ2EXJDm0@@,`k.~X}EbI,nh+beO"bdzI~=H$fЩם2QWIw/WBEb!ƢJ,j8vdbXlD=>Ω:ŢjvqPxbY|NVRhy7EQ(zYg`- >bqE IdxvXVş6 uȀ#+* @8|Ck?o;_6-#D, bb1q,>baW'x]wc|qz>X Er1.<Rӣ]z?zX+'0tpPbbjyglL^;t-w{c_y:wX( `7V*ԃ"bѩbT&ѓ7"KGԋ#jڅӥrZjD ggToJ]Я{~IH8}isElolJ*>#"&҈bX+)տa ^UN,̫qgjvT@Q&'UwB 0"꽫ŢX(ӛьmE @,?р/"{b@2/&b1hxV j1.7_"ID~+7WS\ixsخ8Av~t ֟/7 b Um<^=(/cyIŐdFޅz(eGXO@,0pA,Nvf 0))XQ̜Ws[bᔤb@, b1sc?8*%JЕro39,xdF6=ʲ'(N$?tũ+<bX \,jջ|}Lފ~' #٫OVZ  m6EZ!ͯ<bX #k=ϲw c`( chg5be, \+蹥V0nEX b)bq;<,[לUAXp- c[Oe/:'; 8;*Y?;-۩G%1y@, Ģ^{/ۋ_* ~qmuL/}i;<_b@,  @,  @, @, 3bl2@, ωmvX bgłM bX|;r^YQy^ifFx9Z8@, ?]/VTN5)@, ДSMɑ5rIEEM5{%m~Sv5@, 0-ɱpa{Sd{P0T#~ڶ-%kM@, "1y';庥0`"SAb@, `/¡mmv(GaSq0ځWbX {C,N"ڋXU-yJ%ȡ]d׋2oAbX {H,8ѦXBQ"kd$f^'r;@, `E4Eu+d*n Eԛ@,-"Ω.l?n Ӷr {@, Hn)NîE(BèR)b͍@, 뎺u)X@,2y؈ bXP0gVp9^m Ud23{e9jV @, ;]K]Oiy?-" em*.uV%T몱G݃b6s BTZڙ{ ,Ӣ@Xap (@Xa ,@X a@Xa@XaҬ,fr2)IG@Xa v/0Do , ]b_kEX4LgK‚ ,aHFi"oBX@Xa8â|7YB'E|%‚ ,GjLd蚰^P J!ۨ-,IE}0CL|=,N||ɛrkyձQ7zXwP㺷\'IWnʀА[M?y$ eb\( ,/,iÌI̽;3\e3f+I+Qh87[{P8D&dF\lVT&,F%u~!oOԏY[f{3WiFaFKA8 @Xaqa︂Ps\`B_c{~[4؊%{ÅEne6]F"Oj i[i t)Yz?oow‚ ,{ tWfX˫" VnXmRlڼzu>,sLSXC'kA.a0IpWtg::r , _ g֊::! 1vMX0÷K2a֧BIjBpF񎆰调(#f~f{?ɱraAX< O JCvaѹ GbT|:,/YzN"a+|7BOˇ93b>/+{):=0 , S'"_%2,NeaPڗ(qZyΆIYKaq4d$5gqmʑn !oaѴY;H"b븽atוEBbvőABf$+ՓJ WmXY!Ԟ}aL2R",nT?^AW ,PĎ0E*!n sב $7}mX1ك aQyjB& Uy1_qEEOvhpkH/a@X(,^,DGE2hmMk7ܾ&,t!b¢NHl/jNz5ވRݞo_/4lEý ,PX;Zѻ",F~_f̭3:"v9,"e)oLEVjܮuzg5eލ 7a@XDxq;n'̷ҿv# ,oH| ,`‚=[d @X?Oc>-| , ,‚ aAXa@X  , ,‚@XaAXa‚  , ,@XaAXa ,‚ LNF[==%ɇ{ ‚:bV"9?}aMu+aqkϮ"wv=m#];^m/J9&Ł7% 8Q "zE/[>3/DŽ( g|<3eΙAP(  R>|X0--;v&24 BP(   kiI,4Hh-y#- BP(   ̣\2;dh釂awXP( B!X X X*[%o `V۸,60MZgr ~P( B@x*`q0K&pWu=b`']-N!S>i]]L^剟wPuu_4mEH7뛱L2-`uEբ!?;O eQ4z4} գ<\*pK7 瓚Îݶ[AYk d2> P( B!X X<./DVd~(!Q(pPrv3};3&X\{z&n22bQh @I(jv*r?HK7@Tr[q*+.C1ai  BPO,^4ȅ oyib(D]\``R,frZ R!v|2ź.Y7K` b8ڪyuiY9G_[Ϊ "^xGa CcQW J-@,?Fk7-H4ܶ(}$.CA\|iۺ߻ ( B!X XX (,f+qX,{HF P/x آ9b_`C2 %I qPym,NX{K8 FAv7g6ܶ@MbDEBOUAC۟4{[!W7gZRbf CO<|"uBP( S'+&ACB`af9 r~tP07uʌO7)ҷ5'/XDވ(Sz&SND9K K )ɀcY^눅jBl> ,*a805[?jE# '^l A@vn,{ ^l3m{e2k0,P( >­x&Y҉,(Xg=.şcd⯿9Y XX`brI ,oreй=h~"+xfa=(f*Hzdc̐X!Z`t=Dv֞ -mj!(LQE B"!Z!?5{#DekXtQC 9v Þ[ >m7'nšwSuK` XP(+K W={ ,:p/&WSEGu`c”qH/̰X(pX|bp_9wD9C,|V]`[H+Xa[ Y$lz 0lf)՜kҕ?V|yx݆b5=O<7&Qf 0ȭق^_'Xv 6}'Mg   B@xJ`03Kl` 䑫B5S 4`QH"Ň ,ID,܀9) 5M%xXH`us|ۖtJiR Xt sDra}^^g4E 4ީ  y4,` XP(SBۙJzʽfE'Xf.`1ҷK'6XlXIJYѹ,zyW? TKxIcWr_,*^j  +KKmvwT,1Z(9"`Xܓ|,JMx|B@P(  ԟxq%XUe\+?$MM`aY|J`  w/F6gXEQ2_``ɔX6֑cnօ.2X\s(N b i_w)X=pNݴqF(s2=tl~}]chid ,*G{*WW#o7sFq W; i;c"\~Qk/S,Z+GDZ _^ޒ( ``X T`j2S]BlMXQ1w6)VpAxPR+X,َGÌƙQMfS XDTFĚnzm|.- 2PH cEdSr( (Xg(ck"aV&D O\Qb p+ ? yz}۝ gEq`sڎ)c{{J'V~-+5*m>S, ؞hC{¸rHQwbJJQyӇoHԔ0h𱱞u:JxsԪ rw59J&+b$2ttpە^/܌6s̺)]bS*)}Є/g.fi6C&h3a~`4i{D" ;X=zY>Q( Q5VD;+ӵ ,Vk&SW=)֕" X9YOB:6ABwnMi,[)|׹u9w%t4^KaBX<*AEx 4#k .cDVVx=tbT,V_*" ZRQQRZS2坮O,fEtd߯,dB  `&N,]>laq#qQ{P8Xg\K27ſLg͠m6p<ڹńc{ 󘜖9WǠ\2dvD@όh"ífehͯ##_b`տG6_FROAV3)dNo,KoFP(,hUjwG'B,hZ0+P  ==bԀрjϐ7hiSdI=2Fr㢴ڥ, I6S m0{EF AKct+mE^(OT0U(`DֳvՇybW^HY:E`=L1L9A雺 ,ݷUNyf ([.X\BvP"KDp9;1 &?NQjU/*'9Q,e_ 2 GI2-+2 I&K rAc>o%2Ji<ᗗIAl0m,ĥ^ǡxr!iX( 8|<^BR6U^BP,"'ſTQ_|9,fci'"O+`alA\ƦVR.YJ.qCs}XJSG(^$gsW&k$hF3,Lyr_"bˣ9?Bkş\3ˍx$' 5`awH,Y\jbvvή֘, Ʀ1G\t.fɼmq1,lr7y?ld%nw-QIݍ'v+߼ϋ#"XFN!We[|#މ`AWt$yhhmOl w*fZ Ј4`Q@_ʰW!>!!L}.~PqMĜS7!P(3 #) ㈚ "5{ܮkEaNt/ʑ#[X*䀹C)w+낵2 yrMް*ÂE{b8J9[Wwl:;e[OԲp|k= XR@"u ^C^8̔FG,F6LHm_Tdˣ3ΚoYz( B@xnaM:&݉`q80g,<ԝCCsE SNXOV4,RP`ތi9ЂwK4 ]%X|^$ -X؏,i㓲1>c}T~z{Rpأl]^,!`hwi$Yz( B@xV 89Xd|;-Xk}v>OƘEtXE;lM:,Nut*a`1>&8E.SX~ĹD Q*?MUlv: X7XJ6GL~OSPx)hgP( Yig~19Xz*s|WA9mAx )7;=X<?CE,{x0WyO}(X2Mo|4H, c`lzAW(C?Q&-\e՟",q,= B!X X<+E8 =XLx'ۛK*XTH%M-clw`a]?Xj3XI}(s OOI^#,vXg NOa`Ad%ng)`Ayæ4clda`6sϻ?O B@@)`Aqen12>3pRd&nFQ-XNR''-m7VXŁ7R,i/ #2Wo9(MAqLuw/yHe SEAB"utnVEQ7^F4P( ``B=;+i:}`Pjodv6 ή}9ioEͱ3'r>S`lAӟ!3, GXyQψT,8E^G.,]zh: >uT2<[7wcb2ta;4,j X̸y \[˰e,"2|IyXYz( B_<Ǘڤ,hsQ7'`Ascc~gk4EςM9imaXԟ&,  wܙΡYxNr9֥۾2Yxm:qYrۨa!7gV6g@XLsm|ucHv>|<_a!wckߺ`X2͞K7Ko(M{؊iug[9iח*yNaAXyΎCӆ>,֠Sڰ0&z[wSLw$?SE셺0^-dƿՀ*,G| ܒ,|-/#}XhyJM1A)?(H:m¯[e#Q{_ް0&Z.I8Xo_bS‚ݚGgt‚gVs?,"`XԖBqjلZbQVS($,n Rra|LXD2,JӅ !ڰ,*B!, ',<+ۚ8JX8amEq(,3M@暚}oaQ,B3x EC#ad 0,x ,*aLȋԩBqjلE]?OEe ,awYrBz;HY-㩰6KX8,aQc)¢1aQaq,iB;zThvr(adnۧaa;, a86sjkFXxok¢0Op-7[-S,85lBEu|㞵۹vZ 㚰ޮ%,ZP1iB^\X|mXD C"mX|aQ:,B C¿v[EyGua!WomB5F95EBUMJźx9m}X E7,Pj[(# N *K\v)[@jS(Ey , y}+ad ROXm"aWre@~EĻ۬v1y yAjYȂSɥKICXE|͞V͆kXBޮB95pro5rS( g/, ",t<띰h ,@X hp¢>P ΅EfӬ޶¢Sa2EfSaQ[X跅,mN &,mߦPâ gRm 国ͩ‚Y3w{M>ǰn UEr;"Sj?Ǎ?]q Tl a~'ܰ{gUqmJw݌`D60ctb51X2( W2Bc 9nTDq%qCĀ?XZVb`p{zǽUvIT9P\bQ?fJ,zaeE)b45=mw(^(Txlc7;o6dK@,[^yBD b4X$W,i_N]7 gXb٠XtA,@KRzc+|6"_di{  SvͱXBXlpXbޖ% \e!c+wtw]XXx*B,vsG,64XMaBmhU_,Y%W5ӀXX-Y*➾bcA´Xt-)gj^_^xiʘǵgw7< ;XeWO tw[Ŏ*b BfgPM4@K3XuKV/"=cϢ#q_(_sfJ< }n nœcb4 t~$T-bHb)A,RzEhMpB׍X8JϔX,1P|Yt5x-$Y,fl9lb4X_\bSEPnb8K@,d 3vU$Pb+8cKⷼZ )B W,j Nb {#Wspiꇿ\,06kwib?*XdA$6T,dw{-XPXo" %""8۵hUpX:qyg-e“l]dA,fAͺXE3FW,H{-Y|J,. Ъba'V\y!A%-Y-yX^Y94bAnONBY L]0,6ͦ,3phU͋iP\,^1 >ifʹ:$VS8 4XaHbOEX,MzE{UvJz..\U"dWX\dlܜAl=Z]yh&vF,R:ˬ$ @ NB KXv$TӈEՒ5 hY*!dE\e*}U Yvk: 5 b+I?aIF}Oh&03~WŢB,BgĥZV,ZJ\PXa!XEt  UD^1<{ +X Fbq'MgBubbAͮXHvKY(YgwzE,ňp ZԂ\8q*XW֙ٙ U~Y?/k O{ba2q+z,vY$fB__Zb!B^Yb1D"^B -lH O_mi+bX:bqJT,TuZbX4X԰"OMK[qdq؉,,dBvjA '|a0$PqW~] aXІ6gBPk8P%-d7YbUgTdʼnP,Lh!*0E@. ƐȏTҴB+H\1 ԉ+T`Eg͚>$vyKX$H? Eo@C,I-F=tS4U'&?40ilWH`?EGB@nW9 k)]PY#> ECۑYE8СZ8ru:R1j$H+OBuv`جA5XKRB_Yղ23*YЂґTHr2 W qJCaqP.dz$TM gYoY}Y(2qjY6YY8H-Ԁ@n Hbd:Nav^C+ԨYڰ0f=t;6뜄ڜŢ"d̅2,dBYZĩ[y~vAN5Q0k"Wx^#Bt`!X$̈́Jn7X6Y$ ׷. Μb{:PL-Hl i O4̝ Vȸ+ & '-'-b~j}J׷^YXfd-"2vm(*hXAq+l+,maA$ZNBb2jĢ# BoPvς&pc \P8 @ !AլaȤjWxqWIC+5X5XHE\; %9faC"N-tlArs `9eiWy(XHB%kmE,>K YlMZeGnda,\#ENjab \)`@]U&Y +©Wx^a n`)^`g!vY(};1Y?jAR f $O&2n,TZ!n\zҬ ,픓P^wŸ E,YX- 0 e,BŤ[܂EUF3CdbH6(NDF3"K50y g.]{sXΖjj[&HiEҊW z XtbԄ:S=e"y%ole„7eB:ЖAÉŝ +$h㊑Wԣ\by*Gd"=⻎dIDAT޳PI-[Ip ]$tLal7&qW'^Q~.' ubޅ,ٲeіYfQB ir]_,2UbQV* WDE(a5Pn7S,Ń)PЙ-Lj!Ň*6;"6a^aBmn"5`68܅OY|Q,#yE,5 17b:ԕ2 -n\]~pu+YEM+j\q%qUB5Egq?z{bxdb[lԅɖETsJơTa1w>BVq3;ްh pub1 u_ޘcy$/oY1bMfѨ>c50NG `'"QԨBe:u+W',lݰ1Y WmW~`~ ;6{jXYP BB [u kR7޸1#1**ZԠW伢텁ȢS7g,\j-b|$]QB3^<8XT|ⱍ,jE,6Y Q Z.xnJ4uzh Vd(m~EAUhP$"880eN3½1Z-H-$Zs}6s%VL-W$q\`SEӅ'bя,"3Y֡͢D-TjQœ{>RBY+| xEzsozsXѼb׷E~~;̢7e%nQ".:a:EVL%(Vwlnˣ"Z>]&p'g[x.YZ4jf!$*)ڨh,W mB퓋(,8Ťmܢ AF,(T%*vҊWyEpjֈE/8wpfmoY(TjȅыF0vS a, Q**D+.VveP8X c(0k,6b^4fQ QF-r1|$g_CpZ1W6be7,aʬYچ P%0naBEd;FD>QBKRZԠJWqM,ȢS2#ӆ2UkݢdI/_ `4U)&(RᬢVXqEA=yŠ-k"\j,6m(c5x3ZnQ aJ)~#V^J ϧ-X؋PK(EYMj Q-\LvE1AQLJ19 mS J\}֬!soY̛fۘEZh"E 1 B$M(JK"0^w_oXL,'g/,B.z(Eu ]~ mh'Mg:Y 1:  PKN^,eq!b1gq*סZnQr 9PU 9S_+:E*UZQ+=W #E؅Grʟ6Y4Cmª\z:nu %崢zŋmڃX"T M#v/,Y<4fCMfц&n1EiEYP!!`Le.I*U$pqEAsP+bY`ܓٹbjCճ.E-[Xz!i'MB\*JaBYE +LZzfWtbY[aJ]ry[ECG-llaBE e7Z&_Th0aEy{&E-ް8X3: n-;ܥUS%r"E*1"ؒvTc/(RLNbc ՂzBW.nݰ8_P4,YPZBܢ #?q,ZS'*rXjE9弢+ "žer*T [BE 2z :Q:E*L* {ӈE- mV *0fCZNr.^y:ҀhEWPy[vds{#f۳(u:na"Eҋ0dD+~Y/E)jTQZM+R\QjP^buhb99;[jPeY`9j!na"ԋX2}ON)TTpZҊzAmUZaqyMnciSSTpV1 ^gbX,ٰ+։ŖfٳEN}(*ܢ./aD1?giOKˤ*N!QE@hEjAm_-+T,jʭY"EUolhaR [(0v!~qݡ /QhpaI+t\Ҋ,n _:X be{]СE-HvBC EOSBB"9E#*ZjP9ZS:Rl'2j0xbr -.^_4#Zq1V)STLVi-AVQŢWY „J-JjEbN0֨J*Eq$U"k+^1^XP:X"{QJe -ZBu %.1V -igN3ZHN!Ra–VŸu +NBV,mgZjQ\d(z!Mj()paEW+ZiQEuqϋ/;cr+,)ޚ*Ҭ+Aaz |Ѣe[q1EQcH Xʈ&Ң"*zY;W]|!âjUYDG,-x.(S>uϼ)ޣ",+-]raѩ/?ȿhEu-"Vc-QVAVUWW#buXEvhE-YaD1OSR뿪hTE3+{Ŧ,ˢw"K[EVH#)3FqJePܓ"m_bXϊ\+CjSYW$-Ž-Hʋ]+cL)Q^̊Z+6E'ŖC5"j4.u1EEc,|HTAU4 jMW\.,6Ŝ_;iQ{\Lu1Es4?MUU4k aq"8Zi-ۢ$/ҾhE~hD^?N36EV e|("[q1EQbl|l *ު"ʊ{)aqwETI^ѩ 8^0Gӵ)ޣQEV a,"k2.($1'e?QVxV]y+.[⛲,´hEs]}$!DZSSQѨ0+Үx~Xe-ڢ. c38bEEZUVXbsY ES\$uE31FQkPVuSܣ" ͢| 5Ƀ-b΋,089U͖ȃbN{SQVEj0+Au ԙa5HY"kp1\i^1pxOUSܣ";UŮva/"L-(Y(9)Ue¹b+'M-΋c*DISLQq-eQ|½y[q1Ey_+ "*lX*G(-Ea]}ъ cEQMQVEvb]6"?ZiQ-渘"ˋ0Cڤtn{T0+]]q{Ѱ*5iEU^t c? VMfUʊ5]q*b,-H"00 XAPM1ETCY>Wl+E1xYi1EY]y+$8bWkkuTܫȊu]q,a,Ңj("CCD\iS$U]*bwW<.,YT_Z4"[uQE0VeY/?MQ*⸮ݮ,FUZmE^Q_$¢Țb*xʽ[ˢQ[dqQBbA2ZQTE;+džŪPI-ҸfL (򦘣"zsZ E^u_tc%p͗mybΊƹv ݴhEQa_'$E7EY+n"n.XJ8p^FbWV|\VYeE(' 8("fVKbMYiQE7.TOovTUfŚqxZXY,XZm108t`7+℮ݮ+^Cih,.h)CyRdQѨvV̽дhEE]y%p HY/KaQE/-mEY84hEYTb)+afQEjK-Bhp%EU]+VwvSyZmp]HTUgš]q؟Qe\Tu :+FPTMы*^4+"(UiQETK!:xr< E}6+b,>-E#-ַb^UV|fHWJX,b-hƹuD;([RUl9W\'+FblQE]q_4f~66[6ŸbӱZ]!,iϡ"̋v`_ppGN(*ªrU!,@X<=`\b1vsgs膳x4*^pXU'0.WpA!,@X  aqZd<r}Ta!,BX aa!,BX|U5@E @X u@kC X X 0c@c,0`,0 cXX`,0 ccX`,0  cX`,0G*tLi =IENDB`mkdocs-material-9.6.4/docs/assets/screenshots/toc-integrate.png000066400000000000000000004630511475306445600247020ustar00rootroot00000000000000PNG  IHDR XlXPLTEGpLAAA?R!!!/>>RRR111"""eee{{{UUUݞCCCNNO񍍍666888pppbbb}Mnnn333@@@IIIxxxhhhkkk;;;?nvvv}~~֚ƢZZZ5GN]]]o~\\\GZCV永𤤤L]Pb___޵|Zj@SץiyƏrrrbrxUftʙm|ȎˁATggg^oꊘfvŗ2Y;IcnɷepQ]߶FgYuNyʗđP^e^jq֢kw|c] UtRNS  ,16$/9BP\a! "#()'%+&.0*4@3GI5LRU8Y_=d;>EFKNOXWT[^c]W IDATxAva!v' 'YEo!c([`KU*dkn]ŋl a!,a!,@X Ҫx i a!,BX ,@X a!,BX ,Ą1"CX , a!,¢BP`[BX ,@X a!,KN  \F a!,@X6*tjzV`@X a!, ij1L{^_ aXYXHf*V֨BX ,@XU1(tk*1}BX8AU&'7sjsh agEIS GGJI_ a!,7,FgEnS ub ՛)-.efW? ̾ȍ%a1-(>K##/baBXq j(*B\$/bסj +UXSP] Řr"CJUE2⸬n ңc.K%űYyAQꝪ3uguE*j 萜EͲX"~ *I`rh E4-R6(iE4*r)x Ꝥ4RuipXTˊHUě,'|hJ"XjZWE")3VoH`[DӢ,9슬̞!Cm1byśq] -*#fU骈DpPT< ġ`\ڢ̢yŨVE2))d^☴hmfQ+"EQ,lX)C#^LeVX"4(TQQ$(lEAY,TQV"՛03buhXm "H4BIE-iQ,U:fE*bM1UI\zSuF.mMC6bS+ #EnZT+YUDb` H]iŨ8̊xT$B$n$"(*="+bYYtPT8XI:#RݶI?i1, (Ȋ~UDB$jD"%iQP3ŨXWނ eEgVodO WPE7.܇QhHWYUěb &sjp_t"8Eghh1gYqE4+jpYʋ`\Z̬GE2)<^E-",ޔEa슗dE*bI!h-Ebyi@ZenY4,X$"Uq85E'>PAagsH-ŤmQ>v2+QE)BAQmP`t"0-"g[ge]7~enXA;Q"UP-ň+>:$0cjhQ, `WA/W +UuhY ]q|@jeql*+zYq|tNz3j]a`nΪblW*9h:,"gfwUg6EQX ,:'Tsвqjx58 ŏC?=Oeūybp"+_=4؛YEɖŴaѹ Uz?'#0dbb# y0Ih%, Aʉ %sHDDXG!hgsȫ=]ccˣV2>Ec{S)f(9X\+M؁> sߦŻJj" |Ţ%X (jf+{(4Cjb"_mE,44Y䫡*Y 6X8dz, b:˦u@r,˓dQH{ NBD Xdec@ R"i6C}M^q?~BiY'Fsf]ᘅ, fP\a{ýr;Xؒ[  5X F(i!T+(ߧܟQhIcf(Sɢo{, B`Ѷ|fNLn`ÒEV{bXE\0l˳C{,/>~ܟn'PY0lҕ,,>v }Bn e=a=uKSf([E΂+J>'>9{ܟ| dah?XܰHrŤJ_j.& a3d,*ݲ#X  +@`aHY3TZdQ0,f,\1ǫE,5 1 ]tʢ`1f鄒 Y#` P%XB*֗,>*NYx,\1RV**X(Pss^ ], PcjbDJqm`Xu@`љ,% - xBBYܭt,PUK {"]5[l"XՂrdAF,] 9WSEEjlL`a2,Y#,fdappĢk֩` P%XdɢRɢd|vf }'vլuoWpzOlү-/X(#B,čP`Jհdё6CiK4d]` `OnPմ*ߖJakꅲ,`(Y6+vB R#,4P撅ʴpv@B  it[ aBZ Lnr}^ 0.JiǷ`Y 0X|$XvBM `T I6e8+A 1WܲuBM7,҂E'-X,*"-YtEvb u,| ] a¢+x5w[a, ,̧, #ΝPRb.&XՃE,䒅k/Pj6v^` NXē[ Zؒ% [/O tĢXd P%Xd%d!`aXh)5^ ݚda8 U셪%XW,`awͪkm,č^Bk^ N([+y5wQ,{jㆻۺP`T q3[bBp{{`,FmG,mib`T ʔ4m9e1*,| N(et{)ZIn^ NTHoDPKC/7XJ t‚`T ҔE|~{PPBC vB:bnM^ f^XǷ ,CuqG#,v۶PEC/޲=`aݎng`wB7,@?"{`&ez`2bvBIN^ ݌ ,{4Ƿ #+m]'0Iu| ߖ.Y,F sy٬,:i,#XgSJ/I/,F}c& )tB;yqÂL>=zR/j/DX]Ѱ y٬, PhxqÂŌRPŢqBnx,\F,Ntt{`Ϗָqb]>eBM;Y UG,x++v/Xloj,aB%^(F4d1"w #uEX X XUv o)Cwd1n%XH"EʟOӃT%X乢Ylf j Ҷ=`\mi͕rϱ}hL1 RX>ZX9s u`1W*RH[AX7z¥3ȁҶ"TghtXke۾ƓP : H`3@]Lteh":XB j۹B ,XL 7b!˜5*Rg(ß%XH"Eʟw =l&(JW@WD yurn_A )ZX5BJ7,0Rg\`mت@*m^Y%d+ t(r3a XV*d yB Lc 瀅XBsX-?*;x%`BRby<sbq`.TX񥂅3\HREDGK U>4>aDgP[p,]&eiyFH F`h( ŠnFFDh@(84 AVbM,@ E#Z"6 )"X Y<1-,-e}6[V&!g(X"~ZaD3D.7RHC`qBA[_~8XɢBv>o,ĤP*.,k,8Cya`2ur X; ,6H|38kIwZRH.]~{OGT"Kz=,fv< AGb9O>X̯Pb.X|,nXLŬyӖK)RN#Y/]`%7ԅ V2=Z[@TO/ `;p,49`!]a="2pLh`/=3-P#{`#,δXYp$W ߜEV-ʝ<ӳr__WUkJU.8X&C.FRH9 wE'"o?}P&5q2Y`-|0 O>P/:VjwL`askWB==Pb`g"Xlr `aиqX9b%}X| ől4vſ9Xf?z`f31WXrF'ܑW׳~oWšE{4Mgbu?)REBVb9PO'Qi>6iX1iO܆|-Eµx,vz,>:xn#/F f(NHwڶ+(UH8 03i% $z J/g:Vt%W#)R;TƄ?qy`EEg̭阍GU#UM)uoZyp7 BFb@KJ|UauEf;#C6l e`2wU5 q1O5oJ8,R߳m1-i}`Q6XTJEj3WXyuu, EذqRH`q:dŸ(,ȸ؍,9h@ GàNE $TtEX c IDAT(z`1&*z `l8B3 G?T;:!`J oѺ{T^u1B p4|ET]&"X|BS>zd7GBuh`EsŋE X q cX-7 =Ic%͝,, e;2o.z3`Ɂq 0Bl8X7*&EEh$D3nbx`B ^~ASNV{dGt]T7{jAYm¸$AIBHB!+ J`BҼiDGEe,[Wn7kY9f$ƽ!!%iX}XcBZ,(Xg(M2sŋ>$oܬ+xE`n Ĭ {|`'MjhrD G( u2oMZ ']Nt@ f#$Itdusbwԗj-1)R.,ƇVSo1MT>=Hx`qh¶"R^yzDpΥZ)ʄP 0?Υq,t7~,jS3@U5vd[6+c qbA!`A Y /q1+ʖgeS8zܫۉsEYǂ:!:$ :3{8*RM>58KZU͛◺-6Jր-04:jlJQkc`cA+Ydog ,^X|ZM -nXh<O %+v@t-+SD7Y X \>C`qY؅D`4@MUXo{ңJڋ G^8,ʉIy9X8Py&X+@+`u‰Oq4ͯ/`Fkȷ[rG~IC^y47ZUVbXf{J<XjomP `/ >` ʤ݂E/'?#Ѣ,x¼m\ ?״y{5,}'E+\YÇ3e2Ytb5jhnٹ#`auv"`Nč.SCꭕC49V)0Fw&0L`VXx d\H:Q$V^.s,%N[<=X܄H=X)ܦ={˷1XoǓ`xY(E ,~wBP$5굨,͒(X4]p"M7$U2[wh>c`莌 xOSA/cJo+ [\82[7Twe}RIDn/I,BC V$Em.\+ ` W`;rmPa`vl`!ϻw`W?n ocWi݂ y&^S,˚hC^yKcp^rd0is!,j`a Z&;Cp}=XBow76\BYz{'5Xe,"P'',Pp0EL4Hs㻑i-]XܢOc86ݰrFŔ5ա5#-nͯ:.RuѸ.@.رNMO\Ƃlӄ l- ƺ0) sqY恻^ `"%+D- .d!O \ " '[Ef>8'<+|)Vz,ڎF1+.Kv B5M3bb/r:U\:f10 ,N+tw$тF8Rx 7H``ał]fm@9B% ŷ `Q"* `P8KMe`Ѽ}{Z-E<jƂȖlVJ@*),֌?[5,F⺔$T?SԺ!?0cO C[єu:lMpk:Q[B']IāqF=9XY`?YE,8X|_`],~((c`!j7`QΒxKL`KG]J`+=d8 n$!!Y!o44j-XČEE˼c]nX|"3~60LuR6Hn i܎5$c jX\=b`r8{W5 W { X ,c!W,D0n5qWP#UEϗJU͟b ,bFO):~2rԌrȱ1doX8,t_MNj헺nryԇtTPاy :|,N,|ٷAY ߿Xpe(3 #"v4i ,-品E[$Q+B=&e4 Xq]6BVac}Y00  %LOϝd\bHb2Xxc`!ȑ8( -f%w L%ZZc-sxAٷkJo X$` X(v$"1J<9Г`e*|1qo@(3E#Z to'⊪!,zx\Gcb─T`XU痱8==`P[|YKY*l JhPU9,j7-U,pdK m 8X],V%;vDБ,;p@Pִł: I\e| p ~ YV'WYW]-[,,+ CcR5IiſBR<XpP`!D,JZ8O,iV(_R/b@>NPOkr XLP5/u(#Xtq7wkm,#`A,.h8'T֠F``GaODRX.+o#KZL{%kBD1nLlIߜma, 'iy~h r▐biˬ}30Ths9еz?#M_E,xv,x(#hBP*L?J1;e9юMrJ\N4/2`IU*:;Law9u6}5'MeX(G Y\2AQh%!]ɫ.cu<܃U-Dl ,<K?E-ns9# uDr iA-Hf. `!@JYdDxLбԸ>jŵn$ˢa\/7řq[Q7i 4I'351X<XY<{;TzE6enZ۸/ fQ(bMJz ]KAv[tkx/%M "!YG^xzE7;ۙь${W4em\{~f xHZ_ EnP0N/߆"?*6ZeFp|1 45,b9}y(~֛so=eaaﵮya_Xx6Γw^~vd@ngmlZ.<[0Яs>,kaY@U֙5b~fM.>yTΤv"ezZ) iaѐAS8*}Ò˖H+q),BmNXXv߾G`ð;}ԟJ_[zս*簸}n>Kˆ"yEP+WYg a9,b>fX yt\zZzWL][?TEy,RZ]r;aaXE[oa`‚EjZHp!w1\vg0Gtꇇ7Ρzp0yY7a<,*^]]_ǷԻs{WzE8jaKJbEZ̉wAH}}UHc@\E/ $Eݽ,ptC)"# 8nXX![5,܉a `٭&)ilb4PEX>xwyNyKŋERY4zxm1pM)Mن B7l7l:G~WՉra1֠c)D,,谰FR 5يldEaYov‚EbZD.jX%,ܙ_1,V/`1Wgr;U9( >uT׸x"eS8bXcwWq1l0}/=,~:9,xѰy& 0ɛFafp ϰŲ]I.IpHһk{hbF]+Y- FFΫl:58;m닎8 TraXM,·SaŖGEbZ XӰx;]۰0biWc#xхY aaT4̲̅( @X`-02W8, [6wF-MG*w~kLEC^\+yZ{ o#  +oomb)VUkxG"Gv1þ*] O_ (z:|4ӰuVVU]jQtʵaa[ĆO{UYlxX=@X3 1"r:RW7!UX*K㔛fvZ1s}veඉϙ~B}ꝼaQ_DžOщEÂEX\gt+ɉtb&lA% 4-ԛT5yi]V?rQDzċ?8K/]fN,yXbb ,"9O˻aT~K.uE] tⲩZC7luWUXX @^N >3ㆅu.-L,^<,Z߰xpbb ,pblb:(^R8TR/Yr]g5B<({o`7E)V˜XxY6,,vX ,TYuŭ͝wְ(RMbœX<,X ",TY|t! ǮXqb7xۜXfb ,aQ8-Z<,pbov>bK a ?xmN,L, aĂad X|0, b͛1 ,XQbގӅaņVL, fanÂouy &L,kqL,X3 "7oTX<3/,^ QYX:,^xa,OTX|a&6p7' & sX0`bd &L,aĂ9,8fbmX,Xl&,Xem& &@`bL,X sX0`bd &L,a /_12Edb aX:,X &L,aĂ9,X02 &@`bL,X sX0`bd &L,aĂ9,X02 &@`bL,X sX |e<*ªY)]'~_nX;',p?z`?{(aiv^f1^v4obm)jO[|z $/ H0ip,<7ՙYU+);1q9Qǁ¢q,e_!,?ke?~ SoRYpio [ pa9¢q,ep,/,X`c  8p,X,,X`c  8p,X,,X`c  8p,)Mp,X+-gkAM|a)݉:Gv/9 8m{p|X7ާ+,6#!<fF^LȸS {{W-SAAX$,XS9(}=|*1ӺD&s[TA'"x>yLjiXg6]HXcq³)MsMm+u^ٙ};~chED9+^1 ),}zW'YEU+hcCaE - M^KX,' G"7W2)wm&3_ -YM= n 8&,c EgnqqjNaw?X+ w #0D:Ym(m@ A] ,*B*_^D|>G?7 IDAT秧iIꮸ,xY=Շ WC,жϧ3%Rj?9ؚ[wʹg'`qؔX4 OAUXp7_m'nvy1G(+Z9 N7 aєm{$ 랪 nj<3 Z9򼻞SxIG"Xdz8J2xL?3H3<5\5$ImuOBX6CcbKcwjlJX0rзcʤwϳIC\6aaN>w|m>0 EoxIBaUb?=+GX9aZ}P"b&&t`^o ;v#{AW17laa6ۄI }-Ʌcb0;,e\XD˚vS Qg]aSq)aU,|ySɊ( !‚⩷( 4Gg 0 >!/,6uq1a5ZG~.cǢϘc6e9 (ʐr,er,|8ꦱJ}Mmz+TީyG:1&dϞ5R#,sf V3-[Y{/mǢn,VQ8,k,n|!y:xi!tF`?ݑ #\o6x̾i&+bmeW\,WE׫v]M覞7I"6G>X[fEuvGmۿ5 0^"-Ml·`drM}8k:?}"GBc:Xq/Ym/fiM._\&׻4N$qZN$qE^^_~Ƣ|r(ώL.b5Ӈi})Tqli^їaAh79m Xy{W%4(o47u"PO8-^Y$\>Ib;M/i>4Sv{?IDBcΩ`ϲb>7hW1>,u9-E<)ܔ\׿.}ɲ|M5/'xx4gx4A`ZPV=7-߻5"4\/0DBc`&՜|ӗrV:BX37,/5HU`\"ծ/_KOdj?sk?i_n{x*h<<=j5UZ|5EĦYonhyc*M} 1/ W'oy?we,Nƛr .6L8/|.XL=}Uqݵ mK ]?|ku]p3:?7o[[:o,co8ظ8>`ۋ]žo-@OG#nզbϊ<⃇٧tN<6Xh,4Y /oO2\^N'|XXh,>ẚKiMvr]yvo}" K{b6 XփdzxzɚG'|XXh,>uK*OwhŅFHBcn6|62_d|=yyLHBc`X@pXh, 8Xh,4,4   BcBc`X@pXh, 8Xh,4,4   BcBc`X@pXh, 8Xh,4,4   BcBc`X@pXh, 8Xh,4,4   BcBcq8X85WBcBc`X@pXh, 8Xh,4,4   BcBc`X@pXh, 8Xh,4,4   BcBc`X@pXh, 8Xh,4,4   BcBc`X@pXh, 8Xh,4,4   BcBc`X@pXh, 8Xh,4,4   BcBc`X@pXh, 8Xh,4,4   Bcczڸ0JW82! PcѴ k6UBPnh*C!wrޠ9c]" 3'H;BcBc`X@rXh, 9Xh,4,4 H $ BcBc`X@rXh, 9Xh,4,4 H $ BcBc`X@rXh, 9Xh,4,4 H $ BcBc`X@rXh, 9Xh,4,4 H $ BcBc`X@rXh, 9Xh,4,4 H $ BcBc`X@rXh, 9Xh,4,4 H $ BcBc`X@rXh, 9Xh,4,4 H $ BcBcһBc@H @rXh,,Bc`,4  `X X$ =W6X ~_cpr˟(\`X䅊;8kӏ+,֪S˕fج4g/,\7D7U)=LF ƢƷ\]YY1),4^?dPVo`q૚?, r;4B ƢO+ 3ovv;+~ rǰFZ#Z,߭m^+X bqnW,#Bc7oK__8{Xx`q3~Lꎏ\b'L?sLI ,4[h4~^=,TgXxwz*bץ +a&eE,#Bc5k ' /5Pg ܗ+X<Ϸ13~m֫O,ʫəwt'~jnAGN>1O>Z?ug'w`;Bc8Xi:䃿 _vyr`cX3xb~n+环Z|EQ35ۈRԸW(*a]sհxtyb~{صl^^ȹ=C۰> n1w{ xhe{SpZ60پGyr}hxT^ -tp6?6^9app;I}'8Wr8w;&& r{9ͮ{,z_mtq5q%l ,GFͩr:L6^0pՃBc+2P\/cb /X 5_*X< SgN,0WKmxĎz)oūB(*Σ),~+]GH/zV?٩J^X]˟YS۱[>xga6;X?@Xh,z}s#ggFVv`Q oBh2Pah|i/t}U|t=~E4Xn`M7[eY6}x,Wd7bY=+eLaZ<|ߞ,F/bDzC_-qvCi楷&8|9G]>,N/2%ң,L[sBc?fi~#wa4zk/g_|V.̅U[t}śwvkWGS9Mʄ#Ni RJE2Q垄 BJ q=R.&zmyߋk퉴ş &)3gV?[t XMmtB,E |lϰ, L20c]]8{%.LE~[~qDmɻR I_!{~"^"(|5ߤ8A!bu/&Ǝ?пԦOW?wi30F??te'2>PyNQzh]~ _^^*):DU&AAX b01YxG /?~W_k +og9!9`{ `J{xp} b0 1d Ncֽ5պwb^8f|WCA"XO #>-VfgdK:TV׃?MuwR4Bk+;E=Xkfg$-X  "CN3!LmQ[ .WS΀D{){uW  D,Et**=/q 0=mf? !]NJXW hO~qWJ09֦`1aCBTn ewk24.&]]+@"]ęނۺSxHyW3ԙ۩Tq11ۜάu֑S+DT,pvX9mo?vjq`2[M2(q9mÕm]RkWmh9;%]JVv!ݠxż SSdeֶiBhNlA"X bXX i03~ Rdes|##vܲv+.XG5g&,ln}n1=j hܙޗE 2&`qә;Qu,MB(/ҷV,K!E{\tg:xϔ-{!  D, E;?Dk8v(\Q,DCAM`af܅uf2dۼ`a5ᢳsc#0懎p?d5&h`a4ZCT'X3m W8A@ `O]u [+vI3 _~[Zܵ>Xmw!Yҍ۔n҅T0w 0czh8)fy)o%4XEV Voڤg63OIٙݕShA̜u[i畎̗|`!)wW)b}bS3"ֻHgooyz@b@,wfyw\l/4yhٽX }!b_7'|*''&_^*ݏ-֬/v/XwK}D퍿(O$K4mgz?OU}iDxX @b #~ݼv70bX(嫿M,J+#H,Xh=tGT,ʃgO,X Ѥa/g2 `X [&W6UϕI,hӆ=:IjRzʟ|3E䍍'_  _Y[,X 0ag"+fsGfꓻZ9(&]!}DY~>ũZF%(}}կb^܁j—WÒIL&:5~s3@bLts|gi">ϐ61>#[ՆXZrNQt+Z'Xxpw2iY.PfwKWMQ64>ܤ=NPRwRxq+Sdo$KqbuV{<Ì^#C!2k"-NX\S+6b+[+Z:9}6e\diWE/ÔHs7$ee X @baaFR*Z峥w K-<; VW{·k SM$;L^]cO&.)$ +DHA Ez'rTWh@ba"<#y-*$oHCy{heMR`ؓkl(G $6l'zJ&PUO6;t#F)?(0(Z = Q)4/SPlwzZ;qbediPM=Yf#= p$H,Xqw!I[fyy>'@I,}baD06.x1 YWKUXʰ";;ID#{W:Ybm߳3_,X x}J0h{R.gW֓Jj(\:VٶʨV ~@bѷNѼZb $H,2>XZb $H,d2CX`4=G7Zb $H,|c~88kEVVC8YEǀU#4&k{is3;P=h碲0;l|ݗ;=9 a| aaX , b( pXX,, aaX , b( pXX,, aaX , b( pXX,, aaX , b( pXX,, aaX , b( pXX,, aaX , b( pXX,, aaX , b( ŗn縰 bqw+ENuO͏ʊ bՈX}TEX>_X_XX,,y;娭ݚ^+3?ୈ"?꼏bYX|XX,rn_Mx$Q8XX,r6Z;Eb7br谉;{G]X>iwU|Lbb bay hͰxb޷Ѻrz/Mol4vgkÍݞܝ)/?>h4YJc1OƹgQ+F|{\6\Gq?ʍFcytfyZ.iZ7=%,z E8.N|-^͝=%j֋5o% 1Ξtv81w5\rs&~L;z.~mQy'p褥aϵ|ԺW1!ɛrSaлXX,:MFlw|/b'DԼ=oF==m|r/hs;Gmmjjm%@`mkr\+u9*j;i(?_zx9jkz7KwfcsQ{L1S&*GݫxX= Ţ`Umt̨_GE|99j,6onv,iQ-^cq褻lY5~\t}5>k-bJX,,,NcYPX̶ .ӛ#qx۱X,nx}o-7_qdXS,̮ bi]bz%+ ^,aeX063=RqaLkwaaXD_|XlGN벾KX$ip6EâRޗS;,6Ps˶ FDUX,,,?5RGX_-,Εo{b;Tb} R谸ߟBcwaЃXX,r7c9{qsZ vke}Egݙ9fղ[X܌Ȯ.<x8AlVXIo4(gaгXX,^GMh]}wś;O#]. ge8fղHi w(&&g}dv;,J#f[]~g;>x>ULn}PIXX,,] &W هGtErÍ. Z,<8n݊bNm%gcvir?#f[BtȺ| ;[1svʔ=vR Cj~رvhUamk!AO[D4-O(S%/ϼ8Q}F:{XvAhi}C`7qa߫n;ձ]G^,\ʬ=Y?ҙE*ZP2_)ҎkOH߄톽vAwvUW?{>I4R9Gu#Zuc13Hu*yĨ?S+#̉RA:jׇuXq.D,T7OY\vҍؖQeh?Mv/=hm,jo]!F!ow6Gb!8=cLҢD5p1!da!X!sA&Q$x-3V6b휱lc2iÑ\umQR̯#ʟpt>U`z jC"ko^hws'.,wu=.ؼT0Iݵin&Î㊦} J}ň,Xʋk(fJyȭ=ٙ]py@\ͿcNOV?"D{;?p὜Cj_PE7ڃ.;-n`[ :YOʺND]v Vr71*j^NgKqמrEY vsv Xp8#-L_qUY|kbڿ/׃!E!W1fl㙖!^˴w6f8X5H ō<899ΦIw+T,ƅuӮ`Pllg{i<m˓cvI~|`LK҅7u9OҶOƝrxK/g,Bv<\؂ ,RMj\ɐlx:3,rj⩇ ,Bp .n<.["WS3M)_%"b^W­.G\JB GAE\ C󱀅%g̕U#Y(,ԭ63H}t{'*8$bjoLQWa,SbyEݖ>X-_nKN40@L XBI1Ez»j jN&lS: =U7rfFIٰޜn҃H"Jꀪzy/{ꏧg3XaD[P<ª>w\}9$X ,%ROOeK!_s5M{^\ ,"-Vʂr&G&Y:9.g,"hs(:+,|0h(ObX;fu <9VmH'~W,?2rd?e` c9:#[X؝򠵜R)p|bl˽?IypfsdP\<‰83ժ*Bw)y;A7x]j|i,U`4Rb%UV4" $SQNb}'+`tZ,My{\v)pN uփÉxBS484!٤Yɖ߹2K+=NŦy`uIދ6U% Kv!$TÈ*2:k,3?ې^l p'f7D!_\1Ek§(Y!؅Z0H,,HםK!$a>!E~(Ob l,g}; U1Ijq+ X|AVa=xbv*E[X؝ ynT8Nq=0JI`|!9k?Ũ^iRxEI&c١ .3O1wG]/&d߂Ycfcb\2 i61pQ47sc%h:^F V)j`s$Nc >S("L7 ׍F+`tqCs`W7Qjl0le*r)W$Sw=#5Zٌ4^꒓ӆh)H<X È*KQ΀ W,3L7QTyj#Fb?oEb[&0'}2Z9$Yhv*,&%@oE )˲q_2EeuP(9M/FlEeϾaPnR^kb/;cNg %v$Ivr,,Z<ȕNã,Ex>&H͚;C?}]0n N% X| EP}12,0Sz,҃Sf"t,B5v4&-IV ɰ`G`]-wy'd9SHrI #<!y ,RmU[t⤧o%yWj3HY[tbpf3l O.i}v%9*7 u[8~4LV"lv @P\QULjBJ7o6Kg-GI0O ֚57nXtW,!TIIe2 rkԊ i`a;1`q=X'>_m`99S(J,_)r;v(pRh1]`qE; 9++A.ռʁR2)3'X|.~a}$Xpۮ,`t&2Ლ~H5gn3D~8E<-jЏ`>CJ+o^Ү,S=5g4_jbq" `щq6@5lS,qEt Svr^8yb -vtXn>K }ꌅڠ!nXtW,!Tkk0ᩋKymd&nbb!KbfS>UXX}nKW!?%)˨!鯋xs d \zHĔ_$@&x,F+cC胺?H(uܒ]ۨV7We5ՋE>ݲ8bX6qvpQRe# Y$79L{| "ooXXHl &!gJ"/g[U!xXRˠ߹3,:?yS,W4! h(ЏgLCJe<^)'9X<~*57Tt'6{3Ŋ K?v`b`Dd%(? h@", 84z5֊R$ŴӠXû L]Eːa IكL{ sz y >5`xvOr'ذ9 @? XxA!/ z h;0|ix1b5fn`;X1C7U,6dF eP K/>b`1ocf[EHh+3{P. xc ig]]?h]k$(y ΂rl $4sbT^2&}_l᥈o1◼Q`qr#y1n΋2`M}ZK,2V.%&!gtl&oy~H5̡;[ )j/l8#h-|4C/ID|!Fn*P6}R+$N`G_у{X,ޱsE?k\8w\B)YxzDr6 ɢޫZ"Rt5{Rb$j Q8@S?KkSj,_ư/T`![S@޽5\\o/pcƊ'y |7}7 Y"y b? IDATX@ݫX#,MI xLە5Z GѱK%nvai XŲC5c;Le&tr@#XԔӻUy&n=c HXD mj . fNNN^#Rt]twt8܎)"Tm!nXtW,-ߗo7ը_ftXe5qp&u~=y/~+/'jsPArYɲz*XܤU D[ШCF}5: _[o6F+GZcq* N\"oC#5>{ _ Gt->N{m %b#6*Oq+/)uH7"&/| /%->}~_c(l*fd]& bF /HO_+ulOJD(*[RY\p%J%(y X@ݫp76 ~X<~/DC EύOU1D0eo@9kNasMH ڊ! +@e{0)Mr4ӄ82iLaĝ M!1VV )H{Q5Jhh{Is968S 'ι}oN MѥB 7g\:i Ӵ12jxI-th:^'<^ 8>~3cdNJA$X+dp{PFm衺Q`q3/tV=ao.,~}_kE/ȻLs #d2ia3Eb3L YY #yJX9%˦ӑtB=s60RXj^LsZ,]2>2Oi겚`Զȉ V+Q ,PX~Ke FՄnُÊNĩ~3q]N.EXFoՍ7d=;U=ha[֦{[s_9QR[un:K/g=ȳTTa=Onk.G~]/^'$>]eƑڱc3Ҁaak|KsmHk\%&X O qUɴ!,hN!eG¢Mia!)K` .,bsO 9ku8]Zi^6v$ccZ 8cxiJ+r9׹t9-& {]xEG [[NWnBGyW:N$X1SGED{Phk+}z."}]О/]'7[5{}8ŋtenlJ_NMZvEAx T=hI^0;^IdHjf%fu;TPOO 欪%bb9CEvǯV92+U-s,J)qm%&wTu{^@چхwԷPtt:L.jmsGcq<#jӋ 7OCdlpKG0 *Uv=7m w gKAGֵ) yguaᏠr(,^_s0 8p,9:|( w{%W9|͢ qA#cH[k{q!lG _/~@HֽEne68ݐꐥoEXl.{hE୰c@Xp jhca!hn+]$1|A긚i_>x߿ 9 a-, XXd ']w}*FȞpуi< 2R])y,Lݨy@Xpv Ȼ_@X8CBvI R' v_ߑ3x+,X] %~QqxdW7E3oEFIU2Ϋ:EȇO;d|{Bk/EHNZrH4ooaj B255aќ?/n~RUBwkOI.m=8}?! 8p,2 2nE. F{',d2"z_3b%3rwG=Le1<5?/-@RHȐBQBζXRXcaU_ysd7!dsC}O(n5w_X8ʼCN@La % ͝,m=휞UUXHXt} ,p,X,*'-!,λ9sVX&.^ ƺr`,,Qv>iI]P7mtPJv:YkhR0Ҧ1z6`>(棝,F?ʆ(,"V>TO W&_ԋJ ۺKH䢴оUZLw =~Sèy0EkOұ%SQ%Ls3oos[ f|ZA($!,N?L"(-SNƈCsiLO?̿0~m~~>5i{ nV3 !?0 CqUdj64] ,V>b-l{As2L‚1-h 8p,XW"sPYkzFXd吐~ryYļ,W!,dY)?"jl,rYȲLHXߗ寵OdGLS$>29~Hr>K_j9,+!Sl<; XRLf{$wY^Ss"o٘RٓOU7z4&v'gս_w޴C[g(1jU 'Ee~hwcNf=rF].d}Vok!{a;R4) 71T$\~( mc9 {֎7b] duDżl*<{c<"r"[>㵭/)q+O7ȏ{#Y%!X-i `>琔 \p sQj?"}iYH3bY;`q?7oF,vN?$8P)Db~ L2a%ǐQڐy6) ״۬cK,ٶ:(:'+V3\(}Fl9 pWE֜ ]AyBr.Aܛ= c?@5D3lB$m.2at;rH:ȝYgtg y{& Ѯd!m"bXd{Fӫ r2bbXteӻ16W֏Xla9C z[_eu,[S "w$2yb06b7jӅzj>JbQX<ֲ1[/q%rC Z'*ÐK等176ZLU%HhO!߬>' @2 cPWW5 m Z Ģj(^FGzX\YyݾھD=Jb=SlP+ʤ%b*QVg, k-QJ yD(otnbO6e޾vp@eW̝'E>b婵_Sr&X<aKqt";/oS@/7ժTP;&,CI $0 YVBtQJaY,r"Z%-t=,jy{[f2Cty^$cZrڪ@*L_TjC&{$9I T8KD'nV]`9sE /?! ps>\%,5gP(Da)s&9F0Iȵes]44_.zEXkNy$6д$ucc!w5T$#>>?wp^mE{D# OʥLp|tj,U`O X ;q &L`QB`}3K1e(72zj<E#bs/,^=V`sJ7ɲM՜YBz a `qg)8µ4=F (raV;v B+X<ǔ;E#bsDʜCyb(:Xtl @Q6њOj R/Z9^o%y (C -aIt<? ݐ|l7_q"r/tR[R[j}[B<)3X5. Xt_.q,4K`F]WA`a`1) ,{nE#bшX؏f+bי4G`[)O7kD,f=pZA/}jP"Exȵg{6"J U ]yoۘ,zyi2QFRD(Sf:9Omo 4\>e :J~`8iOoo]ؓn Cѯ Y }$ m[-YE@cb!~>8I$G6.-0b8oJ3k0.%:8:F]8łI`FD!+,|laS,shD,/̺FLJQ#W nKXftj0֟Ʉ5Ȼ-޿ٔ*݇Bo ,Fᆵf VXD& jX=eŢ *M e=I5mX@ɴ6J|*v&iv^X9X`|𐀉}Lla-֢˻,%IIv󠰃+  bN(9{5u|X xF3X,BNzۮʛ84n7?^zL}i'S*t}cYiōќA] IjU[QHEZL𱄩d-?/(Xx# l{LÂIw $ЫBd(IKu_I,rl'?  ^,Z+!Pr@]o,Pl i4@kphNsOB;&nc ?z "7WԯpXtǮ4vs4WA"2"%*k B<[X/bg7"E#b9GWXrwU jmv`*?Xّ]kSMc҅2$.C K" PX^]D}W,y~ǞLwO֪' 3om3CH6L ,negS'^OX(=HnX[%VgrU%Er0b9ҕݬ;B,fLH΍e9Bzy8 9/y5 N L%Cɣ}A0r(~/qk'qag1={=+;]^QX<iuҭ ?b]\11e0ptRSG,_~fF&8[QW[h{fM8w&HLt"5CpEJلī#gPs*sIK@CvģX`H>, l kVAJ]K<?2c}ߛI{w"p/ؚ۹YeZc^B^''FXC%NT \a0|0nlwt˘1Gޫ|tW}*A70qvAź#-zxjրs8O0b P^ZeƇ]<AbęҤAKsm4CK]I ';"E%)Vg6C=vMWEu 7=9S \#j׋gu]Y7SGEO"=gy!X[c!bv0pH6m~"rfv CȐqhBifp|۠QžL . YFX*'Sf!6gx #/$C,:sIx \㣾6I_X<y&DL []P= _9@fRc`A)/2kP֒>Ota7;J1_71u} Ei-"y=j# xĚ{(^ c~*>n P~y,2}Z/|sE]4fCy81Y 4ZB5 LNjG ΁wwG]$NL>b̓ 8vE ߙz/BZSNQ Yv"eꇑb`rۻo:RU oJ_?V]pP{ތ]6jH>k{,<վojM F;9:yn'f'ڮyȂZITucZ%Ԙr2PxWq첢bjf3F5?41VٓTwּ5}p_\ܸ S{zvFI ӁJ]&> 7<ƵpǴi]E2!ĂĢ oúY0k${ۣIh[ VuĢT`K;4?:e1{)/Oά>3,ַj[hR?H,|o _Xu^o꓇V;q*=,?wCgyZ}mc0xJig+]=T}95q{Um h-£-|p רTp7]59}hƇ-~z o-J, N\!'n˘kK +o~F.ɍiQ]O2xC"оXXXtV4|JyƃvE׉EvW[>(_$2˨П*/Z:w_|rRD,zM,H,H,:{V c:3G/q@,G6rjy a}||?!q͹+^{sԍٓ5 8忳5s'/g^׳=q r(.)g{ʫ_8zhn>͎xEE)Y{+ bC5Es{~}~of}տz4CkK_XXX/K3)u2}z{o:bg/$$Xx   @,< łĂ bAbAbg XXXbY,H,H,,$$Xx   @,< łĂ bAbAbg XXXbY,H,H,,$$Xx   @,< u!ԁ5p   @,Y$XXXbM,B8 .$$XxpVsz^,H,H,q   @,>  ubʤyRR7#T,B`iAzA,H,H,pEx(V!8"Q\XE(7gpbbyշDtXXXbQ.ldΠ9bL^<mH Q+Yݔe1pt."69Q]-$$ J }u=CaĢXB$\DwWDDj~.bl7ןN,+vdXRnuXbbAbAb JEsZ{WKZΉo)A".RVߧ5!"BX.5XMyaĂYP_"XtXXXY,K-ډlOmn\e!Vbh̞m(iN.]bk\ )1 X+@(n6jd턲?mn\XX,;@D1T !XlW\L7bBd噉!.$$."kweE<؆XEv@Ѷ6_m1p:w%TU a~/T,4!Uy   zbV­ImhoMխK9z4m=%BTz$|ڻPi;S6*łĂĢDePEK&WaqC3&u}IDu}2a4,ulP.>u-nGiZ[~P].g늵l"vPLej(z:QL2rߌDys1{{ۺ+oXW~0u]_Q~sk#"&]Gic)!RG-PRrXtXXX:Wz{պ mQF"9g k=MR]S]ׁ9!QoG[bAζc!"`Fj-Zy_9sGm=n^} jߓb+DYL+Y]dWBuebiW,bbAbAbh.i"ҥ|iMYM2r!B/j9i5rFsX\&1v( IDATڡ=6QItb="ZB(j*7o>mN+/⨭)ἑHkmkߓbs}3ȊK2Đbi#jYp    !ݮܷW-%7?]XTb/`w쏸$]9B,Rlgkh|8cl0ey GHU|{ov׬8Cn~S,eV݋ԋŞX?{Dq}xTNt뭞WfoOF7ƕP^oX# ;J{ʵZLg<>7;yERަ8 VL^+fŌ~[/Bw:B]+?Xtgh!b;m״m؝xZٜ.̤Rfs)M`_F`ѰK X8%XLu7\%6Z\S{*  B֧reL)O+EKXQ89',, `?%^wBd [-,4xVpzL0Vo襠Rzlf/Q,,g;+R@W  !;H,up)TYd:  W0 L:VA&3fjca^o,4t-L'Q$VPauΫҎqR޻]T=FiE*UQXt`qc'|`AcAc?\QcH*js,MEyxSw`caxcZ?%Db$'M`g`aTeQ` ϥor\+n?;EІH%냅Xϧ`1X!t}(4X,b!XQ 6`k;lm*Ԟ]BUyd]aOqF`AcAc4[DY֞Ո9 wT}33,6L0X8L"'Ro)SsޥT~gl;ocv80e/MD׫ . 44Ake;BL^+[6?̓O;Vi6S<۩UlKjVwWr^ 7"+RNtQ-D3[`\wk,eKZɩmŁsCےe/ 44{Dܱx1r'!Rqԗګe2-E2_3ن{YgՄ^?XZbUWDX]ѯSb՛D{Vf⟭XXήBʻ60 jkp`AcAcZG"뤺A +ϟfdoovݭΙu/RSVs,s}  "?#]zv,j9[z#[g2o͹9{ExvY;:s,7;7uDƂƢp^)׫{u*Tǧ'UxE*.](z`AcAcqhϘUD%:|,03BR=7O ƂeQO VgY7dEM9%2&XO,h,h,\JOܭ?0 +'sv |`AcAcq|lC:\}lmzs!s,44ݦg ,44 X44 X44 X44 X44 X44 X44 X44 X44 X44 X44 X44 X44 X44 X44 X44 X44 X44 X44 X44B Xt,h,h, ƂƂ`A,h,h, ƂƂ`A,h,h, ƂЃg,@w  ū_:x9#|l (  ΂o&ܜ0p͗;.=> pEGƾin]9~Գ׏RsKG0XXXt, Rn+HyN꡼?{5B,Q 44[ʸ~4/Oi~ , 44{⹔򟶓H G"#-JƂƢ`@:_'<›(c(~bB%'Wz_}Dϲ&ESw&|?6:vZY"1,G{g0,> ,h,h,$ss7_=*  y)|'&>{ f/J7a CC?X/N~+[ yڍi=ſ^;)#։Z/H`E⸔OR/$wMN!kgcXx⦼dU{[Tp(? _^֚:'.69*c  =@{42f>n{!,9my{e[?7Ǣ {-^7MHO"d>m= ܃``h$,Δ\ՖrKJQVaa$Qn̈́*J骰x~z,,wnݿ=FX>ECaa(OK^k} } gavnX6չXIx6*շkdwYaCXXX4^JG*h~Z]3oX {8a| 9VyB~ pO‚łŢcj?<``heXNmsaÂłŢa1Vd{C#,  VuݬZǏ),X,X,ZaB?|xXabbڰadXXX@`` , abbAXÂłł ,BaAX   ‚,,a:,X,X,  tXXX@`` , abbAXÂłł ,BaAX   ‚,,a:,X,X,  tXXX@`` , abbAXÂłł ,BaAX   ‚,,a:,X,X,  tXXXCJ6pKi!,Z,,MgzYX,梿OYÂłŢ aq"|~wg]W  EbCu]-a1oFX  }XXX4=,*wEXU]c%RGXDV*R,Vy+b%R}aܰ``h^X嗭Bn}p{C|4+,)9遯ZybN:&2N"_.Z7k"إg1՟qad.a4Psm>~_>h^XXX4/,>htޖioײOǻウzŨڲ_VG+WKǴ97x՚k{15! E3B9N^yܫ4dœ/M&3J v7OxyڟRN&SzLƫ"\wϽy)}vgGB1n|x9)pm,>& &ESߘ~8}5>qcVO|}oIh/Ǣ#wQFG7~P!i|hUXT\=ĜU",,, g+9 VwŰ)'_?0]Εa1Ђ|ꟶY4$e3z_({T>hbXXX43,R JpVN*?lf+b33\Ze7_)}_VEŵN   ͔4:֦.ڟX/.,߸ ]PKכ"~vHX47,X,X,n5,\cŰQz|HX HQeܫ&gE"KڰRw ,,,C'ሲ aqBš ޳Ƌ"ap abbqka? kY/ikb]ʿb]N[m_2A) ཥE,-.G݁ŭaZC3Voj}g#{}[; sI_oj U H@ƪH%g%<L;wR6w1_00a)֜&Y A,Q.V!} tp 5=P'p m(]Qzw0 VK!bĂţ:2@*da&.bh 1S)3(Y >iKdu Q {-R,82ZnVCfhT?Bc &'xvU֒]mWbL.g_"i v# Jyu´!bĂEjnNeBAjǎ)q[o-{MBp ő鴦W w>~ԣ#, ! &L,W,x$(-䴇Rn_Kһ~HB!ł$ͨdBSbaPlnN1ן B!Rƒj:_ !Bł Bk3@3sckcĹʼn ̵}~X9Қ@sq u#htnM3u]@_Ld:>VTK$s RfաB!],X0XP,+:4W秌NjZs?ꤵ?Vϵ/fw],tj uV;_l<_ibGDžj^+hk_3sn%?/B!bĂłb!Dn+{LY}ں_K5(֟9eE_lf*eݾb0{S`xXц?D>7jy*B!G`bĂbAcdXIJC(m69&Ȝ#ƆZDGe6TmoGnt],B!bĂłb!>{ iyjVā/Q'>iW @],B!bĂłb!DQ%dm(5츊EN:A *W?0oqw C!BX0`bAX#/-fjlQ*Xȃ[כX\4;^~oXx !Bł U,jA$MPjܾ0"<~"sud޸B!Q,X0XP,\Zۮ@V9[Otx3FEi[>B!8 & X|0i0׹߳XܷK,B!bĂłb!2á{!sγX|v'j<.އB!G`bĂbA]33|/b6bim&އB!G`bĂbAuyv-+f Yb!~֋u ],B!bĂłb!JۣI6MIbqA,F/S, =c}(Bq &L,( !o"FoJE,}yJ{W =B!Q,X0XP,o:4+ڿCik_ޘ^ɋXɃ'X^a[D>B!8 & udڛɢN־]`ͳX+M,G܋_ C!BX0`bAXH^OYPjrtkg8,m ɡ.{@ZU>B!8 & ^+m%]7[iMeE,۶.bQf7Uv C!BX0`bAXh\>$0sh~Q,Z`δQBlXYb/²ŵ]OL>B!8 & B =C߀d9E$r-eWHݞ'%X4aHď++oK]pr<0` IDAT1u.Ť<~cY\.:i C!BX0`bAXܮm9'}ʜOED_ 7Rw.w-^B\/ZղЊ U,t !&,j+Yg|{֓FqUj< U'R.&f{z{7JvT~?Il6o0ӷnI;Âł¯!b{n䉗aafJ|lPL6*1~屓JavWA{%8/o~nw(Z.   " R^a럍bSs%_``),;#a"OIf},,>ŰۏOS }|MÂł§͜>51,6=1,#Z>a ,6'?)``',~U%a~snrqN n/ORHou }'ʤ^9Ǯt]O{5+ZSΝ#񹣽zEQ3~R]CߊILo7#ueqJ(ʗdz9,X,X, 5 UM\i; G^[Lpzi>< BaZ ڦsMr]XD+}qN9!KU ꮩFX<PP)9AAWsXQFܰ(PƱp*X$,V'ZB @o/aNV2;@- s<] QJO%YEE[I؝aOKZX,X77d$[n%꼡m/zXXXՐyo e?nGڹ~hqȒXLw &E6fݥ$XaBWv8܆ E>yu6ZaHDk1O ,X,X,!jH yozݛV1UX,MgCc"^s4EJFLaT6`I =@tCD»eM*ZcwŒoabbCXJ6pmXWr9t>] L"GX,,>QGaSp*gwřfBaưX*ۆv!,X,X,\ڐ9hMELuрēubq 5o/ҹs׳v =aCXXXx}eWzޔsΫZƝnXReGiX~"{V۹sx{ e%%|ǰ˾u-cXXXxRȷU\L I5;׊ ŠnHVUQ-fc})7"jaaFcXV%Ӧw6abb9,_+֥([a<- SmUnH(il 5"ju|lIr$ܶrʞU:rbjT2a=,X,X,<ņ[հ9mx5MX(Jd٨Ο,Vyԇr3bEaM+ʬ]7_"ZXYjl{)c?|   aѭw[9p_khODWbUW2JXx   /N$',<3 Xu})KXXX<Ӱp"p,,4,.ɞÂł⹆{9^ a?,X,X,mX<x`` , abbAXÂłł ,<aAXx   ‚,,a9,X,X, sXXX`` , abbAXÂłł ,<aAXx   ‚,,a9,X,X, sXXX`` , abbAXÂłł ,<aAXx   ‚,,a9,X,X, sXXX`` , abbAXÂł1"wok\$GX|``!,fNnuxOϻ,,>ż`mTylu}fHdx``',=bX?; D, X\dB@YJðM&&Bz<%Qfb9ebGjz(~?,X bXJVv׋2Hp;M"3/xb(*۸XX`?KF D,\ qĄ5O,rSemXŝ&b1C2mX)!8ŢATk>$=8'Iܘ?a@ 7@J,D5!.%*-olme ~C;M°v7hXK[bQWGD|ֹSn9_b,Ă]MZ,@M`I'TDZTZLU(&Mb#-Nɮbj-[u]PARzrM.p2\Iz^y9A,@U`;Z, :,&" |&aIm 0_4-3a*1K.3D O5F"T'o{% wG3XX/X bX gX%>S.*>Mb1m]M>fM~bQvd..KXL')5CblYXeb*Ѳ)]&\m՚+V/ꕼY8H:~\ re)"'>5:+y,rEpC,@b"IFd(c"3KQᆪj)"e^3"6gtXDxmrYu%qͮ19/O pK,@Ă}WY)EU uH?}sVzDXL[NzEJEDDN7Ţ2Rj Iu`Fx?!y X bb[,Β" zWb[mgj!bqJֱ%։sj9Ab!T;p],@b-lMcu,#/9϶O8nw }B9 b" =Ă [^S&A,FR B5J=(basYi8P)z\ D,X@,#?o9wdo|PMc1i }I,#e}X"X@, wn=m+mFjI4Ŗw)E@)ljM)RU\#ݾs"T_%X؎vxQĢj:{Q,s'POztB,H,H, aD/:V(W @,K@_,g"]bX<0ڕu2f|   xp|ԫz>1 SbAbAbX DXXX łĂ@,,$$bpg @, ;Ebѵ\?49$˝ql8ӛ2$)$$' tbqw:bP'$$aR,CuQ7lXYinH #U Q,y鉎9tVR׾)t2llgpSNt[5*$$!EA~-E,+5bќXG bP/$$ER"x~ĹQ,Ģ płĂ"cD,Exbqnx?M!{eнe}P#"-X~y*GɾuBL/P]eI> O޶w-&#VO?Z=R||n3EqoGբo O,,K\5HI6Ŵؗ_3ťV`ՕһXH\̘AV,ߞ-Eg:W-2R1g{p+X5K$d+UO_Rb\y䋅䯢;ϲ"OHxW/>ڸ/G?y6B6|Uv^=n3XXX(^<3j,X KŁȖƥދ֊űBI,伟"z4{%SH\j)ihhR0lkB/ywF /V2/X \y/"_bE݈y Q,jRj\,'bzv 3S u% NXO%z++~3q]lh00.9Hա&b2 Dzd恵,"_H|0ENUo{-$$ae^fUl&Y? X[fse=.QUEvP|E.I“Mb &Q?MműgU/uRnvEd߲ҷ ?/$$ኅeE~~ٛ."_j,|\d9g(xX/RI4íBLYX5i I=<"uX˥RvXyW{ [,<ΟR\rXp# TVk8s=ׯmD>ՉECoghA$S5ETWg`쒃X  X詞ŮݮwSR%Uk" _`\gCUSUX\kR/REv['P۲.&"˳k O,3]/N,TY@T|֤^,FsP[@2~r(!\[ O,$ km&9:1\2VX|ӻK~gb#n0/ךԋʼn*;gb| } ʐcL8W6ͯm$B@P\D xQ2Z;ch֣Qt=FY]]Y}}hC$ϧ ~uNZy!PbAbAbQ9'C<è Š;T76tf,px; +v;bQ|+Re^.-~Jbv_%Jj.eL̺2%';C35HV>k jW,H,H,*'FJd5Ita{-n8InC1TP<үbL3"uFۨ*rO6 JYQtܥ߰WMCHM9 F,fłĂĢrbՍm"~[- wYІDBtrbMJ=[zlԾ a}&S LXQ? o#%9͵7YjKE*l.X)ؓ $ذ1 i Xhڶg>)~ݹI;&sb>ԮX4,fvb0[ HvnNuҮؓz̍t牅vb2lpb6GUUOE~ĢuBn*;2[>   ⯭sf3vPTfX@K쪗07j.Z%(,_.XŶ&Xߐՙ]a_ 36_,H,H,*-e(76@l X36_,H,H,W,ZB"seMn% mɊN̄X  *+SoNsB:I  JEE6Pbk{XEEOb`yCZe${uvb/$$U*X$$$bPXXX @bAbAbX ebX-$$bPXXX @bAbAbX ebX-$$bPXXX @bAbAbX ebX-$$bPXXX @bAbAbX {8XbP%bAbAbX  TIEj/@UbX(T-1iJN<XXX E)(e o2^?Y$DHde|} e%l5 @,bQ,oFrS>a L\ ;,rN[۶? ؂bAbAbX 4瞢oQ<}|}#ۛ #CE,#kj7*2^օZo ؂bAbAbX E^&cYe706xE+_4XXXlX4E+Y+0f%>x⑮]x뛱>wy}lY hH f7U,u_G,$+y"s/Wҭj|Y8'*C,N4{,u\:_R b*"pZ h5'$$ {D|Cߩ9f#)D|sEe#yb'G,v2\rǙeW/hh:{8;^Twh"ۧepw׵ݣk]r2uL K,>i'i{Ѿ/,GңpgҨ mۊ nG->ۂ}KO,>:{dR=[ y_Y$B='_, HyB)gG`ufDn؇MӝGEA,;WmX8Xo"b5&$$#Q¸m%S~G;²%BV^&o\u;&%!&11DAٔÎ"0(Ge5q@ſݭnp}=֧Vhq#p޼m!N}5J*%n4,)ߔ b ncF '/ |6--#:TcAPeiȦ+wW:.}X %=-{"SLK%W!XP(g` X,HW.&hM3㙞JqW&PXO",,CH" H(O¨벉nr;0~J6`mgZg hy"l^܅t$4(n j(nG/n8/ D`X>5( )X=y 9tWjcU%2BfoVÔsP܅`lMhr@[ -Ds`0gFC3wD$zv솢{Pd , z_Ή±;,P( 7@z,Y&5XԵfhv4 &-`ab~ݰ#< ,Hp2}2JHJ3\b[J6 " X"`kg!NijEuA >!1 Fij H?dUEQcC,>mX0 0X`TCJzNbk^dgkx(k{F$Qb8fzc͟hEZ17X8\-3( X=y .퍯F S5-b3X8X"0+ q,wn] jS)dV]V7`abq $Y/$hKZ = 崅 7"XP(W` X,!/ݖU-i-i !j"21Ni!'5+xIj^tZbE$22=4Nt8G_`Qi1W \XP 佱p˩PTTn67AXp m lS6lX˷yP5.\3pؙG8hwc"OpYb՘BP X"`A$X4 [ٞdV)ORK51B$ٷjR U^*Y*`1 0 jWʣ 8w6_Ľqe R=ȉ`\xbC1! K#}'\1'X8 c .+CP(7` X,XxbFYZ]s SjsQkD eCW1MV ,if{f)ֱASsJOᾓ.˜dZS,w1Ku,sVPն^9k>W]H9R7̷mx.u|DGt/Aw B@E~q>C-𑙥ga&,H{;rN!2& 0HwWvgmކJQ^FNz(*\7fP7- JGY?w]bygCiw4EP('` X,/DTI౓L2WV'&̳,MhE$Ku3BBd*z+kx_(!w{cZz?_] oL,X\ZX|?wт\au?~1yi|?KX0`bqua10AJ~4}6X,R‚ ݴk_b6n‚ q\\6ovO+"?[X0`bqaNzƖ)G &L,2,@X$,X0 , aĂaAXD &L,  rX0`bAX ‚L,X@`bĂ ," &a9,X0 , aĂaAXD &L,  rX0`bAX ‚L,X@`bĂ ," &a9,X0 , aĂaAXD &L,  rX0`bAX ‚L,X@`bĂ ," &a9,X0 , aĂaAXD &L,",Ce$,. &L,bхhK'~qVn &1ŔH"*|i%8Hl~ &CX &Ͼ -_ޞaĂELaa}}X|FX}X0`bKXXE+ CTx騟=춭G;#F:,X0%,2g"KIXE}{t'e[s+˙X8Myk'kWo^抉wx{;Ρ~rq&]|ic3v8\z6`+ilwfef'էKBXkL,XC W>(]Wjc#}/":~-&ûo|z<扩W4Ozgk2LU2v6?Mm/s CqyLgkG"}E\߰`b"P-b;{.z-wER(J~1aѲK!ɣl6ln/Kq);x/&ɭqM/X Id]g7E_d]U]<5;a6. )~0a!ݏ7sAXkL,X@2{*fڑ-)yOtXv9_cove2{]lđe&7I_[BʨM:%fa"Ȩ42nXXk^\۰`b"oI;2NzFM)te"K8,~46(` )ljk5/oAu*˳Ulg3x'GǸ,a^agX0`bWX?Z}{}-]WA)[t.=$d]믭x_g7+"kC_; i?ckek ijKw_m%aĂElayGJ|h޳?PIS ;Oh%D5g˦[bŰ5,_Taa9CG\-﵄źI9,C\Ӱ`b"I51]3=`WߩYӖ w;zIDǰ/Mz1aBUAێx8c_$皓 &L, j1ɼίk:ܤȶئ]LjYabU,il`b"8YM"ԩ_ j[ڦҖ~X'VcYv $:g@NtMfU}{]uԄ:jҼtN?ob%XCOI &q6ř8X%XŤEXet1م+&5lbѴitb| 3~je,Gc k[Z OV 8;}uzžѸ9@#j?18X,xƂg,.,s`%֢9XK #3Ș8,6ؠ#iz3#G5ntZ^?@Qsudx6,XM_XDgug|Qߖw^VB,˷__36\ 9X%pۍx-k%6r CVeV U/XݞQ`뇹1s~L"L˵7BBQ+&h5ޱ r 5,XMVm^%YnH\[ !ޜ8.pҪ`r Vj }ƢYkF c(<9g,2z(hX aRhOcph1XXp`q<#JIb1\6ZGnJ'ZJk9- Yqt]`Q_[X4 G}EsoU=O,e_7 m`]B,ZcSˏߙ. S^SX {b34{cqqp=<5cfo`3S0=j-f\]\k6\,Lb3.==};c6А݀rlj7;*h\€Ύf_fgC1]-`w(~&Ap ]('l6[ـEaYX?{03v Yzg,xƂ H)O1 k0t`GqVx BW%)Bl90T23(Nt=Ff٤!5_RkIWZuMKdmn"=}N(BA?B{{ɢ< VOcjOo]=} C%[Vfv[{},7C>6-~O t8Z֞(:eH9gA X͍^@j8E 5%h"zǏq"ZT_?HÓ,98y"8Iĵ!reZa; #K8v}AHX8 ооiT X.PiMAf`RSB]B Ns!u94vĖzxcgF_§8Q.+ˣ6mb7d%k 2N;6mg*`9#~%T28I[l gc'ʹ|0[iO: BPBXY /n:eO"3+sQ(iфz$.@sS$ OfLyOfs a9kۈu"t|f!3V3@>B{gr,̾`3xԍW;G&6.l4XزEX _if2ahFM)q,ßeXDӏqfw忢AaTp%pc14ȶc N_Bٓ6y,P^p*1QQcbM[#gx.C7@-N嬦N8i 1l>~j2.]`NxbJ@Rc}smJH e ++!-,(A8=n U<$=^]*y '#Z'k;Zb6܍IfܷFb}*<^\8@ E Fq)х mbUwqTmx{)3&GIgrcXUw`Y1G.>$[+JfGE c',"X",rvBlQgG׈elQΡ졦}:/7k@yOqP35X^N|#iY}}0!}D'Y{(,v>-?-`_a?0e8N'Rx5abQ 7sR &_&4IN3MT7[੷ qSjt)'dHBd F`>6- ѳHR[?U_%N%1_ԊԄXXzcc3rUޜdۜXXonU ]jX`*c1 rbTkݺ<1WA垜$7-n7Iy$L(D[\2"%v*eO-E)8Mi:V$6D@{ bF7<_]3R7gS|=?ѿm蘱si+-hF,ˍ-?m H²qH1K9L,):FNXBEEX.X Dxf(}E f""vvVf$ݮP2-(2YRGi4+ǡ|oi*xeq)`HJtvO%4Gc)B:?r"פ/ldQسJR~$̒1x %bbѥh#qs3*c̃9XR{::URj~L@O;{%_*A8͉g L\}baBc',"X",B,|M|MYγkAV<./8isb>v)L,*@PByחlK䅅ׯ*wa|1!EεeF* @P(},cˇW^ }kC\TwP?"BVanq2+2^\<+469Uk@Z[2ȂAtPJ_h.}0!Sj&4rd_@4x-pwN>yW氚wEҢ[݆=UkX\v{Kd'800̥&̶Hqt) Y|Ce  d+_g>wmb!,5Sc3XXԕmܪ@=΀GW;Q.G<*eE,߭oFh}F@AZ\2"kSY$$s)n?t,HHUIL7^J{,Xy 6C+]pĂQxf;8hq(|H+ՈX@_b K=!˅ j tOHs6*``-,Fb֐w>[heQPG7.T.ܣPTE&f>D$mD2ԝj8.:Am@yEpj;5r ĭ,bN$'8G =X?W2UawO uڄXURd__A,R n7%lX${GئmSqwO12*/oFhUr_"~$d.47__QyZY&:bT4uk:R$6HnFXJ|j2X<߂f[ӱy_} b!&/  qLGlQfL/A, K=! cc$4V717"5EDb 4=~7ؖs:gͳnI*76Na&mj3% 4}~ $\y#OhHXn[f/X"N8IޝHdֹ$qK7-˻)Ёuq6Y,/>}}b13K ૉń)Z3baKEKap {0S+,fkXF1( ތtePsc+Ģsb"QC,Wv\ѵs<OĢ"bWcMGʂ^Q8u9 ,oG_BP1/FlDD`AXlWpbCvA8hq(?V!@c',"X",C,̾K͐섛X,ҕQֈX,%XJyuqu\7BCP9.; UƔ{;hH}^XhAK @**&qp u ؿxF9ߣѿX5^W튩‰c{HpOX㠙٢ x-bNXBEEX.XPU]&yiWdKL؎jW)uyܹ7 bRv+)ԊxϮ&,*>x rZV^ qЉdƌM u79h;F`ʟȱ_*v/i 0B@%\LBjf'f+akv6[ف&?du>8/!nKzz^c1">உ]h%H:8ĢDw'@+k0fs u[k/b;Bz;@i.#@{q◦zXFĢ~eI&/j7Snpu#q¥ĉX#AX?'dEɟbh$bB6aAI,H䇷ؿg3qG<旖 }}d4Ŝ5 e^7cn@,cz,Bb!Ю[cwe%kZ]E I|56dISSMUzLtQBG8*g@Z7MB~MM(dXW,^ifkM6`S>wFsL,:>u?Q ^D6swš3ociP24"ia[McĢcvbCF @p/O٘sm\RaTW9ubA,$]𚼱smKܠJ,+Oh퇦I,6-^YфK"q,RXh@X}Ju-s J1®,i bg &!0w,9AebP£Ģ]z܀XHs',"X",D,AvUW 2Ҧ0h\< 5@^S{Z"@ÓPؔHhp%Ey@[|{AÜ y{]a\*׳?"A^$m~SI,vU$>0s/DV9_DӐedVAzgIĢ߅ 1#2$Ik 5& lVͩ@ĂhƊN]PN:wH oiIМrb1F,+Ohi`$ҵRфK"`qV?*EFV7Q\D"7y,li/4nIџo|:(Env :W Y㨘p2g)C,Pf$I,NXBEEXXq_ؚ .- IDAT1Jb<$(b?Y0fGvC5AWc ӘqXeB YDCfr$e@asEz&I( 6BU˜x n'0_/5g!PαUݜC5f@;NucD\eEWuMWJ, S'CԤ9`y1>  @H/dF1IRdbar62Ac}2o [zsW,u&{ƨ7' *'̰$k,RS2 %MUJa}o'Xv3_YxC$'S0Oqn*9J{巛`^qZd:(+ K]S,PwL,hpċ) a&$ exQJV@GoR H큐s%XX垈4v4 ZKxw Ă]ҠPh,:'.-41 k+uXe);Sqbr?Z *fWSw3;bX"9Ce' hIUR/*OQZqU&Y$G 0R|2|nzZ|ҷ8%q]>G/JE>u}X|2&(l\ ۮ|`(:0xG (ދ3tv~s.^,D1;&yCYOX;vYM *WK7"̴?G匽;.&/ims-8+{,BbVzc^ĚGTV4NMW:lgebla~tƒ&Ӯn"5Oc#B~5hTo- {7&ŝ 'XlB7|bs!y!J,$p2'p5>{& HB I! K=!= mP6S$ q̓X\Cy&"q%,+6v粴CPMa+k;[='[h7N\i{:^q8byB[Z@g+ԫ2 J?3l;֢]n5 c 3<jGk,fz5pP!{P<Й)f nbx,dloM,4َ\\ -(X d4Ⱦ# >,N"]cFi+t9A?kD}UIZYzky.|iShVPW q1) dH/X X Hv ~Ey<յFc[cĂW v\? '\LI86]~B;I7 /s',"X",E,vބX"߀,F]";dDPc;|Ն\ƪ!"tB,Lُվ6vy{ ]*+Wh,9O84*$ZAցZ+_Hᆫ+ӫtjYL,2R0ӔB>C tu?lv4d%kNv!FL8 US!>^瑱[ m DwՋG,$loO,^WT3"ZGu/Ȭ9ed/|IuA9yߕq?n[=e7NnЉWᬾY^ODL j4tQ4vMWTڔ6'P7Z~D"}-OX|"Xspӌ٬WH3^5 UB+];h1 1%d(cWl,BG{xㅐ}%XX很F,˻tfk9kF./#ûeL=[[˭7rA\`oJWi%Zϧkrk@p-ۢr59FVIyV7\jM#/F^k8%w,z.6r#bceX$]vD d6K#C} $ "ps\ @,sSKNh\o'+X @bX~kj½> X+!ǝіZX`F*H,X@, ?>9oV \D\ج;5cJJoXF,H,X K,n zāXܧX @b1-ܴ,N*b $RBFMN͍ʤ~1Rg+h $H, rML7^}D4#_'o_G݊@, pX @b1X|)ھq"`[, bQ $wk$фu'`\+[z_x==bE:Hv E|?ʞL\7h{_\DB!tzYJ= l(+ bf^}L6̾8 f?^aa6.mq ^~,jֶgm'ZWL IsavT7=ثeJI[C,0z@bbh'pA_euq07#?mv.NGa :b<7m7&fXki'M? ?OILZy-WxvT*sh  $w ƻ~gNrgEZGy.D~)z#d2M }Ă2&SDhjԫ+Xt׼ :ۦʖ],(8&cdbn8O@H(T.be5ȋJb*:-H,X A,^~b~=:TSaC ML2TdW=B@C0)k~kBO %ʒbSsE-5ݓyrۺ(fsBRfC^ίNm`2?xW&.x]54L.)^6'oQP;XDP0CƲ'~8GshKG߰F3^bk"_S:ݺԁ@5OOb`bĂ\bO497L hҜKQ;+ 'n r!æ^VsEF\i %*vM^Mèv56laF,ahlK{@p 2(!XP(ԓ X`­RzzߨC,ig Ώ e]#H2Uu`BPO,0b  `b+_P}v⠍abb1) ~:qO_u99 E֦6&66c ޢ(=00>p v J9cy&5kqEmR Sy\PW.]`//BW\AP(S X`⹁E/ܹh:R2՟(HɦѝsuF1օR降KfalQ/I3/_oȣ`0 ]|Êz&8y{[ji9dKLE^3p]PYy]̯ y( #@@`/$C|YP_&{5D&F̧`84/%6?0[(xS)Mqo"`0p jh_rNu;4q0H' 28F'8]d[\=sXr#xb lCljb06nެ>GW U C=& _P76 %$\0v2X&kSN~5j]WGOW#U"ѡFAugudXN>!P(ԓ X`y|P|Ae_$X ArBM2%0tE2'}h}[K M\>,J(uQ+Bu-4``bD`fP2$},zL.Gg @%/>QLg%!ˬHw =S}9itbNYt_7Qԏ,5kv@-R`+|L PgBX`#,xrlLc`C!х:,r ?qInZ1mF %ɔmf5E'ŇkT,8z(RK[Q,Ę bp`\$Y ^Ay;| %(-wY`P/\rHU'<D==^Y?b ]B>~<@Rq#!W2AȪ_ܯ!o[ BX`#b@u,?&ndK`dy~r߫m3Z$S+EIV (o?X;,w^]u{h ^YܠXX&.$`)!+|TZ*XzM U_K\4Y(Z;6E&XP HnV+B83BHe@&0 Ğf25:S/dqO".L =U&_U뤀`BP,0b   .VBQwr ;B]!S8lW33,1,[~'g< ] zQu_⑐-C>),BhD̒W 1kBǒ%(%!g!Qu3bAb*cU=*rD`N#X)G,j-/`΍`BPO,0b   'XLYh^QJ&Xy3St7Fx[!'1kIYXe 5_[T^D1Òb`5΋Zu 539 `q٠bEΪP Y AHZ'#B"ۢ7}e,fS!$ Zd3Ի@\L@@Pg ECـ|1.BO,F/eX a_jEV䝛 Ցp /5oM7)(-⳽D`Ԅ"sEQkj Xdl쬌Bb:Nr2pԝ5UcUlD@Pg mKm'&R.qrq%祎X']7Fx[Zşk)=`AȁVr Y" jI`1a2OYv,=sYT ;b1U&[O?:2-REDc(jJZ 䒘лޘ׼ߠl8x,痦̬9-1MIwE1ΈZ\y(/n ɖ)#WrZ R@bb`=-^NXkGCB,6 K=:P5Ä:~Ct$Јwwz8pMm,>3{9aEX83p [65mvktbQ{ OQy{NBTu'*nԌ IDATmI.p4ׇ>ǨtU}Fo,Hͱ{"E{:g͓W*H,X@, {uNG|NdKgu97La1u17TO|TUT-'`|$ZZl"vP'le>SSXpe45>aa 0meV;(7!KbQ{ u[N6NZ6p %fL= NL,5)}va)S7%B"U>UzXtO^X @bX//i^4|FפּXq&{_6b,}~%&F:ѦݪxHRSyf,oP)Ql$El;2mØXDT\Ze5bFl\DsgZ!92JNŭv(;ڷF[m- Rox{Ξ{6ЫĢpggڽy[7w1M@3wzb{ݟg%H*ߛ2wsU_G_.In _7c(D8_`x1bbz:+Ja9ŵo2bx;(Sӏl񦔹8(-?XsX(5*G,}cPP,5ĒuP*VV޷VRbbQ{ })}Yi|'ﰵbǝbQr%L~{a_ Yq^v4 㚍1˓ d%|mѼfԋra% 5/B,X X@,xϷcŴlWs@vD'8zJ K 9[d d7zXͼuVŃJǴ-ֻX],>6P:?^h8bvT'fAϽbLm`':5[hފ>/ame}'D#36(ĢB}(;K_$De><^xv붋W|ٮ)[ cT[~ň $ v\캻Z&]_~W>v0R(~?߹U $H,  <7‬i(?~چ*EcW^X @bX,@,,H,X4E,&,"Nw@nXlPfbd@bĢ)b $ ^X @bLP戜2F#{ĢvjC)uX/H,X4U,D|#uW_]qZZvY+Қa|f+h/.5,Ѻ.6hhZG0cjۧXMIuV0s%g! Ʋ7 L($%XQ7f@bĢbN!ݘ,zeYwoh'fEP4'b9{\+䖒+|*حa[o_%(]tO"-v@, $H,)i\ne)֋ ڼbC MM3+F]qio_մDږ݊JUEbACo3D[,H$ĢC)iQ{Aq.7X='ĻX!H,X4E,&xX)Q%Z0_&CZbh3PuYc3O"&VEwyiE#\r7BiPcњ|ԈIZX-H,X4E,,&L -{ ('謦,ZE?ќhX&4 yFR( 'Nn+E#wh!w $M1Jk3U[Ī[hHyX,exO${CL|G,ah'?i-2ŽbQO:NXl@, $H," F!1$la-'X uJmuXI+M0)v%GQ PV?%-t߹5w1k${̴rL`Lꕛg;)Ŝv y9_bpa3K<4ap``hgX85{吩nlL2a+WB 5bWc!Ʋ5p4⽴",8zI5*abbְp̫XTdb}Rͱ{oI5-ꨑ1]X,[E?7â[ _, E{"gN#,viah!}q!,O^‹TE9 n]ec*W  ŃFpuS[Z[< nq^tX>I{a)thpj~o6 qt!,?,X,X,1ۢOeN-E)_ kiX? uU׿rL-3QޠS#a1+wA%X0wj)t@{Jabbў~kgu];?ڿÑCNA?: L, ;^IlImTVw_c}YF_ a8,:Ϥ/[†w = 97 +E[\ܼ-S]Jq)IIgp^:S1)z\Y&qzBf۽"z{N,HN 6s.ap``h_X$",^߰dNpW^ila|%3! O(ͥY=rKxs~SZ*IO3-zw)AX|XXX!,ZMM7z , ,X,X,~Y_[SFUPjaq&[r`m#q{mkXTƟےpEzZa'}%,   N ׽njyЭϥK_wGZO밸l=n",abb#p!<3'Ca^,w?^8fEyCX9.UBe'\Mp;V&͕rd!(/{׾QU-ScѶfT.=M\J&*7xabbqa1q6,Sx8,+։{KGi$![7_ڄ)ګSs7;νb_hɽ4 }q$ݗ~,,7[B,kx뙴 YLF5:3*l׾F5'y*M&)uU[T%R*_EmX(pJ~'LzT2GEo*5aQy饳LNJI8SHviC#,\^F\FXXXtXlڠp^K5gIǍWu2S}`܊X)8K:.&lXD͒q ϱ7DS»sjXFe^7gGXЩaN?``by~* fJF6,jK\sW{iW)EXT^x㌜&Qj65K;gRgmI7wԞ%Pze /?OB 5;#,hbAXXXa13sF;ƙq&iEA)ҹzv=k;5X$G&#D'\G|m4&CXlagÏOϱ)l(1&GO8D4Ί%GisHΉ C8A,£?v;6:ūTWB<?3}w׉z_xhݐXP,(qx:7>N?y{1(?Ebd0꠹!#$J8FdgEB?|ϋzM,Ń8k"b-.07Ҕ8=`dΝ[] Ţdo;Rk!9Vo*V\׎ܣb[Bɴw\}@ykg=SP,( ĢX|P*?bqgZjݕ[10n!3WCͣ8pTYX30!ΆR=U$T6XQ?:sZHsj߹tba>btIyF rMĢIU6EbQ _1?Xv'kz;Ы*w܌ N]@XP,.baoD}\W>~X11=>㜛S0uY,3̮GjQ|xE\, Oba\TqmNs, .~ژUઁX4*Q/n% O7jM0^iPCMZA8ułbA@,36nYq~z#]&Ϭ7Ǻ1PRaS=;/W˲9~Ů JzMY9\u0P(0]NRk^KQIh .XP,(Xh⓷BK̡hžC%m9)kr(łbX@EPNQɃ2 ԇg LW /x bAX Xba,MPbaƊK=#bAX X'obanngg ?@XP, @,9A۠Su XP,(  fXxrq#( b(Ns,Ţ="rbJ*@+bAX b+]'P;Rjb_ "g7s  k3-ms,]_˴-ڋJyPTϱũ D2łbX(RHOթX_J_m^ba󋜺K )V!gWP,״E.ERWm/=ɷoq/X,( b],Lk_^oVMOTwKDZ&O8U.W3!  d1U( błbAX X@z BbAX XZ,-_t XP, @,X ȚłbXbLfkD,(  O łbA@, @,(  ĂbA@,@,(  XP,(błbXbXP,( łbXbłbX XP,(|)bTl9 xR$ ?XCv+A Ro;!n]e+:b|"g5@,((1cߚ55ځXOn~hr¶RR$fX|ϓA^JWpDSv-JTbłbq"1%Fbqpeyhj?<͍ϕ3-\qXXYlP%_,nPU>8U^G0²Hu,+[) %Wn8fѫYu  7BţS#p񬾸~Jb.7[wyl"#>X-mCv'A`Q*pv!fn}oyL)D;3L8ILJ\KMas1nu5 E.B7\R D3Y٢t&{Ƕp!kL Ԩ)#{ sa:HZT!zljݞ$nk[,TF%< _]S]5pÖ6#>X"T5@,X uhop[,|Ipq%DHl IDAT@Ҩ>ңrB\ ?jauYtc}i`~JO#kTMdQM$YSVO6" &FLy׃X8"o .YvXL,v7rGARn K xX @bQbLsEsZt11T$A ۢvvfHK$ `4R4<2C Jl~*bx%~o%c a;MW-WMpApmPH|vXd;oxL n^tUרXXvvQ\y/L,+@r wTa$86VX @bQ'bFb1JL@/P8bQѥ\c'8e /qCT9BXx.:5ݴ`?_PMcY]GɌۍk8\}G3X]>D  ҲowTu@bĢĢ0MG,q,-qQ.bq6`7&y&3='jXx/b('W1Y SE<W)*bqj[ BޟKkSb˽ݳS^Z'wb 9X HTT{ : kvr.%3gT.b1GlYڊzW,m18CIe세bhX\w?-Ÿ˭Lu'$NQ!b[j9VKN98@bĢBL8UpM~<'zS!.bI| ;ܓhA#E 'ab)'E/Ѡn6HdՕXx . "p$ڳ'NbxsF,80.btR犅^J-> "? 33jb]NOkb!@mg<_r%^~XW,&iH,W9:Xqb!`5m_5FDlCU˰lq2& ]o(+9^;<8 $*bm.%CۖHɶe]eXsŁ.^ 2ctQ{'b ;d 1&PJTTYS}-UdY[/U YAu'-_þ8Qbexxxo5 $H,jV,4QDz-മVAŁ.^;ӽ\sĢEYYhXͦafe_.W]%Wl((I(ڜ-٢(E-Av\9[  "jĖq=i2(]ON)B T$[Sܒre+YEXpRD?ԗXH)9VC#q<>Y, 7 v`=+.Kb2S[ğy:ȔzXbZ,4^'ձXi 6>-ڜӣ.IK,lH4>],9n #} pW2ffIp8m`$_@bb֑`i/T.}v}w붾^ S9 әWW9^#(&uKc4kY//f[5@,X Ehנ'&gY(c@,@bEW/VZg⾯gSz,- XbQ -9 $H,X|r N_fO1 H,XQ b@, $H, $H, b@,X X@bb  $  H,X@,X @b~ ކ( $ pŢػ/ƾHMwcc5 bؿ?oJ:!Q 8\!n")J|8 Q*/+y>}N!s[ "#nZ{~&cۄ U_cutDyD}cQ?'YTQU٦jM]@ty|cuSчaمNV;,V%JK "JDG@bb G17 $1QX1?֤X.#nqX$Yt8 Չuwi:Lеe8l>d` ku"eaO_@,X X1PŎ&iAX܉T 27RD ,/^ɑ!RxD^3qUM˦L(jK}ve J+n"ZqtfR覲 >V J:R)sb@bb I,7cXU@[cs!KEi!v6<,by֡oSd]J,<0c]6 lXE(jKrW\.ךq0ٛJ|0B5HL@bb I,ӄ9縫-364AD恗ϲ3z/6yxfbDH,DžS.SN,<^YQ&n*.TE|CbT$ H,X@,Ģ`!wG$q>FAivf #<CI,\Rn!5/a\+<@MACm"Hhyd=W#cOR b/WH,^&wbQD%R^?QAEu]z_bWyg) Rv"lj'Ȫb X X,\^!I.`P}XP*8QbQ0taK'N,XP{AbA4mRJ9fĢ $ -c<yba YTJ!c Oeb !D4&2EL\PXt4;…9, 2Tš.b@,fJ,lqz zr!t6!mq8K(ox-߇A/@G)h$&H}bYYR<  NC֝gPWk:YcQ-b@,fJ,lYSPzvN,ӗf# rsUARJ8XWqwK0*AbG:"JdDViVTBXs(&LCn]*@,X Ţ[=%\膾"?QÞ(Z%/ߓ%\mIl'_m٩5։u wK6|.T\ %4[ b--oq>U)G\oGzܢGvI#=;Pf}Fn^yat8R,a !߉R,\,.]TCR,eٲ=^uqW)8Vf űbX8Ɇ gH,fK#"AX @bqb_M,&X|bэX @,X 8btaB,V#+3jNʄX,[_mbg處  $H,ΐXlh۫o# k[͹=+JwgIw_o~<}NPk6r{|<|Ź77VfҰuzKwneE+[?C,>7Fna $gJ,H1;xż>8jN޳ՋBƃhۈuE]-[WZo?F79ӛWO-ݘ $gL,pWh4_mj/+k/'-bcۄ(mG[7-ed:i=+Z#ۭN(k=>! ]۟7|-F^{D $H,NY,Zk*bѹF҅Z,^75)[U1ƂKɣZ/Rd?'BԨ= -͑Cy\_Ewk*:ɕKߐOD KuΛ<& @,X 8ePz.FZ,6ɶ7vIBX9OIKR͏#k᷄kyC2X!}"O S[}5Uu !tzTD%K X @bqb\̩&3(XY4'dX'fNB_?7KǰOKkuCw1oth ԤbG(BĽrm(`cxfQDWRj%Zak|ziMݻ6zsכfyj=lMSy``xX4 )ioaa1{bQ:Got;qt"]1{C{b>E+%嗞 ,X,X,NXu oL끣=_)0;'W+,2aD֟/KRjY o^TqW,,%,kzaQ~eo m~uƭ/e^Ū=^,%zPUiBX‚ł⁄zm0s^cMOJX )G>޵b~Q @XXX谈+ #AbLj]=x3Txʹ=ц 7J{lNo ް_R4 @XXX<8(ogmia\vh&Nƪua\W՝,ZGw:9hS8a1ӈ{xu(;{ߍVJlz[k$//UW42ue0,>HOfU(@XXX<6X)',dTU3Ru* ԋaaU~aar?wh'BF/yǿ>Xݟs2^/z݆t^6pao ,X,X,5,7bvݑx췈y~e2'ùZN5p۔S?  aabbAXa‚łłaabbAX`` ,@X‚łłͦwałłłC`XXX?yYY~łła,,BaabbAX tXXX,,BaabbAX tXXX,,BaabbAX tXXX,,BaabbAX tXXX,,BaabbAX tXXX,,BŭН}|]"RTOews04,X,X,n\dV'oH7^‚ł6aqS8&o~iV'O/o}U?,,֜ϦJL}x8abbqeb9p'Y)9a^=%UMxOXLU]?im9w]:ZwT*pabb=bGw^me MSz|@X9:hIc_Ο޵Wh‚łb8 MX%j+'=aLbTzzMXĥ,L߰G}a{0Ξ$f0,P@al,IfoXlJށK*?&,X,X,s!Y0/儴K9, ,Ho헌PR;:ac‚łb0z.C,/Ŧb;%qcX8/{6ӄ#xqIB M#p*prwT7KY{K;3x(_IL,2gdDl@ BĂ2X4Yc N/,b2/I,3N&; !ÞȭX\檲UY@ BĂ2XL4`ZߏBR+f[mC}"<S j$.$u67P&HDFAK0]XHz IDATr@ B0Ă2X}*҇Lw p#EA'Mt_6.|Ka}M}Ix Ģ7cwTvI>\VOXE27tϳD,@  E7BRe#u@.Dub!K*;\Kaׄ{M y|v B{˝"g f {f"/XPƂ2D,D,XXt-#>e,(cAĂXkoP|3_%r{X9b={5~^=l"P h)|tU#H}\3 <|\ںꚓ=Š_>+ O;QbᫎsOK.zx҃>cҍetYA^'uu3:\yzʇnEK=pN㾉 bc(M[Vjy$] 6E~߳xa+1l<>ۭyx2 bAX4k!9>U!+p\_h1qQSq`D;n\7#iel^4[46TΊaȹ4 rȋN14yY0?Ti7^}4:aŰ_nm8^E 15ͧ֋ G($ǵ^ܣfr߲_X8wp"2T +_77p Co%fyy;8ԑC\;ݣkR2납9Q5zɋD nb2SMe1sNKt7UtY" e:>丨CHJ#EznQ$gM)8n;KO)%+Cž],A,>ip]^IJz#;Myl{Ĕ1gΦͣF`ě Le4jxmn.Ua"qf,73NcѤ'ul:Qtڦӹ=&;e,(cAĂ(lsv)#CYe q$l%G1T,O>$ ֈ?B,v[EI:Eq^VG,p C˧8{ša Wݝ@ :s܉rglf'3XZjHWΈ}!c%ԚAq %l5QnPic\K%p/QxsX8Fpӑ@vyP|VV캢(Od8GNwqpu~d{pѭrZWB,=eL#NTc(=,7zL~fZ2,d1DOXQSPO}.}ϥia(4;|VF,4BCet꫱phn eS>;;RSV~:hĩqK dBD,ܲ6]FQS5EQ@YDgoN,/Y-N:c#PƂ2D, M_O?>.bQ1bdk 7S}nS[ e?b!~6k#ǤVx |Ӗ콀XW2K"mag3QN,vNO9A ! iBH()FTE[e{HJm_/|v&'- (s}=g,q'27Dj;<x)? gG\nZ]Z ^`/P'mY8Lh`AhÖMayIyjl= ::Rg`kvq2߼S.e4V=Mːkfa@ou3b++b|#,Pde T8eܣr8Y ̩#Ϥ MX䤬KEvyW &| e.cj-+X[c=m[ 0ksDKS=Ptk>مV,ŠEPS(j^DŽSL,DƿMȼBll,x$Yc3A`!ޖm5 d,W,bo, T^;;3 <fydJX+,B `񍹰DMؾX|Ҕ,9KTh}Ǣhj&!%Iz5],w㭭9O2 _M4NCUmY{"mzLI<>`{*Tgc˄ÁErDKS(sOvb"[Ԕ# ˣZQ1274X*ŘNȝOU\b'7Xj5}׿5dݤ@'ƷZ'(ETg }q_ .65Id + 0@6uDwYp`1&38VtdZ(BhBQ^͂Bم H OTUutE4}'j!>`1m!t“xihRX[⢎>':,X- X{L>مV,ŠEPnXъ(8∗^jRD| ^04Be^2;c^>^\<%jrSSV⟲[ -E4Af#dz⾸/X܉s%W'@X2ָPу\ :ΣT`q,eQ@tkK }! Z"01 ,P|M3{n+[Oyaω'qE/LmytJ4D[lyWPLwCYzW>1 !:*՜-kU8,H_ 0 `)9+}](a"Xz *gss~],"p e$FuVfqhŚX+wXZ}CnE8^=[4 qDsĿ)C', <܀;\@l|y\c|AucXG۟l7W8p鞷B m.l{'? q}{݉uc]5JdUq0>mX8]5)ӞE&P]mt>8^hďzwj-UM5:E,,5{no4VU[.~['lkl{bR/GĂ8׵N@e@535"$,<^)zLH$7`kZlp}wb FeĂj'ik h+Z,wݰ%\68Igxb&UÉ1N7h/ƛ؈!W(}94' Y_y{!J݉(ҙ~ Yak?Eb3Omf yzIp}H_F~ W|% DZ/G,8sp \K*t{ϝ2YlfK?۠'~tsuM 4ڜ3f r3VBbJk(; 4/5j},w& eF`Ff  zR2k3_{' s*|ͳIh-Kk{ ~D C,B> @X bbMB:NWҹL3貓aмelD,L,G,VƝV*uF VX:cO,-|353N:6PbNE,T>nB  !)x7v(Vonp4:ABTUkр=*ڽ ،ӃfRQmsV=\},ÆB%+lYr6:Tԅbiܑx*fH{zkv}٫^B9:0>[œ U֯l^p{!J݉ߐcDVgl~a sTq>_F8X2"ݻ2N_Tw$ ؜;%Jë>b7OD -W LAG&sւBw珉:y4~kyl0],b**cGyQ9Xi ՛uoEjɂDmֱ'Jlb-bA`lWnZ ;c䕘iwQն\Wh8 { ~D A,8{ p[Av"XX^e J";mC ՝Gk$j1[R)rgUZ4璽})Jտ9nݭ_P  IDATMی4ˎ4%ߋ FXh+űJ'HXQJܠxCcWuu.;neߣ!!2ކWբp04ekNŧ6WZcλ6ңw} U(juYѽl3:VQnGƹJTV|X>[8a=/aa]4wyYۈ"XX}.S{{ࣄXX.w'~ D,@,ǂk>&x]Š&zjOXfšAb" cA?Oؼ/`b1Jȷ2.ٚX<(^{@m D,@,ǂ [zg E/w%I[E=d*2+@$g2Y&_$X bp"'+EҁXz3߱s]1HEwyb") bb"F,fHns z׍¹ •A,v#rY:,3ruP#PXJw4}"9ZhsK+7Ks!SQN MKE Mj 2) /g3dfO D,x(bHxyc+2 ?1bQZ1Υ̲Y6?fܘ zD̹X,E,bjnV]?DI⣮&PTY۹ɞHYS*GL7eh INSXfJ˒􉦝0V2ۮ?[fW+5ͣ1VyiZnr$ ]OIO,t=TUJRV)!:KNl#G,@aE꜐u&503P( B#,y0,Oq@ B$>V |QY DmN؎ %)h|0!¬` &axk[q@( BP` Xx9/@@7PD)$ ` $棚>2XȖ{y#X|S8YE+ja,mQ~aj@P( F,0b X,<߾SH`XP׾Χp+)%22kP| XҊ vV0XܳTUng( nBP('`yac0kyЃ9tLs.b٪r,*[[`,s` q烵`Ly`V( BP( X`#ށIg@:i`p#&*0ƦwKiyHKl>FIdfB6`1!` qd{XLB#'сBP( e X`C .<(׈@+Ŏ!)!b8АvD ՜>kSf:( `->˯}E&|EP( B` Xx ̟g#"Ht#S q, p*Jl``aw`\:O־Vܣ 黔nڀ>l>EP⏜$`!X#x ^6z`bɊL}yBՠ[Y67`qRS  58Bкu^j_ 4gG](FaLb`mE6@[w^t,HZ~ X؃F,0b1pHn.C֏^l> XA@,`QV/ELS1gV֫ -f㞍0۩Ga'~.Ҧ ]^=wK{"` շA X`b`V^=XH5E2Vuy|4f钎8E'4Ū,4c+X8"d@.R΄17%=1 -ٺJΆ\mgPh6͢ژ0Q[a8cK_wFm[:][;VrJßoq8KJF4^.߱ ޜi?;yۺN8 TWNT3V8*ԋ̍ӊUS7Y`a)&^H[z[q ;;rRƾl(\Ujk MjymǚNo%&E ,\t:+XXНj4nf:~b)C1b\~m,F{!n,*CÔ4)h,üLgJ49ⴜIP5NpF쳼zr6P.yv s&3-_+N}?xz 2+Ǭ[ޥm+)}‘ @ [d&19[bZ΍-,mVBAkR} +6.Y}iA_K;1ewf{EvqkW?Qs$͑vMO@V:WWߣ{ivP,[v9Cb*Nbu=bPat<5':*+1LӝVO.QgdN)p6x,_?ɨxx:i "Uqi>bm9zpmqJ.{8e]]O9n&4L!)LHҔ"%D@ A Z#w{K^a'bU㋖̇}||y[Bucˊ͸֨rÏSY?o]s{݂Xhŋ"]IݚV]W/wFuvlH WUI*.ǒWssŠhVo~&z $y,јs#4+Q1퓬G,^D@O^j+:wĥ2BЁqUu/mui]Im%=j Ocū}&H;úʛ_1:|6*c :庴iOOZT5F t >Bg0Q6T=ؙz,XLX-b7'ߐdį恘ʸX#y|۳b8,2}5 wgF O< -zbizG-x*p ,ƮPm;^QEWx^R PG@჌64w!28Nj{pO5@hr1asQPkk~}'KeO _.sS-f,z#6.!1Hxa-ջ]_>6L3ןVOXt!~|5±_X4/㈅"~He\вhq'e=`:_m|6G)uΣ*'H~5.Mǚ刾hV+hsF͒0G}hh'R-D+}kف6;8 f]NCԲhZR[OjN@^ab+mނ~Ʋ~R5ZVWO= R0p9[dZLZ"Z_2UM]ݫG:Em2Oܾ,5j`1v$r6b걘z,%lP$6q 82l PfVT`}J,D`@sx;YizU{#@,Z:Ab ;0MGV\lw1vp&|HyMU͵9 feoϡЈĢt[D4AX uDBM2 4Xjn<ب(vdtsH#(5B,*>_Yh¶"Zx}d4=# ?wb^ۤUJY+ Ȁ͵7VX?Ǜ|I5TN,*h^`r &1zq'~@kWfx;`we\C," b?A0<;c klÈEu{>FXL1XpYB p{rGkC Ġ2 o7aC'KX¼0`P.obN'+"RFPibTo4L^0  t|r4ŶXx^zy\8x"r6Ƅ]筘B,rcM^*#HQ]'N0Ӡ,gQ7hsn4!bC\`[8r"gǵ{ʷֈJIL%|yI4XXH,GD(x[@>XW"*IePbPi`{0m՘#i5s9s$3x+FZbqI7KfIv_GsށIȮJ,j )OL/SdPy+ʞ6"Fi}$#xn,}B N&bJ, >CX88;; 0ʺ3lǸ0ig[0w ^ m7[Jn04y{Z$bᯱ,")`a]0-ȕzL!,d ܆#+z:QӉ(ƶ"^W$3XۑFm+abYhlɋ4#J'{H3ѼpA| aѵ.KAb(x#?Ƈv.(=tH #_[ % $-2]lh6}ńE1bYn1XW\%v_S=,I zeݠ^YJMffUn{r\s5Q+ab1^M"Go 惪=%NK,FiX(jT5 ?*o(ŚCbz;6,|SV݇FUllt0q_b 80B4\UHg$~:uS]aR_@w>u:eJH2I",AQx rIm5w\KEJx{:j=dw:k]`1+*EVzl0e.וQPKbHF唂}l^Qǯ`Q13,J]`Ȧ$ z-;ѩReEQ tF`W[UPd#6sHfsD+>wi>6SK'`q[lN`є12(&{ IDATot;>)`<O=r ,@^)%Z"gH@,QB`vSMC漌CPE|9Bhy·{Z5Ay:ǃ"=uEURNX#/L`dCY`1,7B )$c #^dT-(j+lZ@XdbMn X%x&"EK cyVB"rnA߂ }ފNPbVwÄ \cNLI~,Xa{4LBc4, Uܥ쫷Xdo]$+`1_;,fYT#r""0a6TWLy'y&KJ&X]5Ln/hb»!rS9EIF,x`M{]E3<=L؆k3`0m` 8.^ +.e`a1QeS?5T~"0%n7`A;F;Q`tEo:a FiXH{bh7cAB",W я?WTio%,k՜8XW=ReMW,vޫ]`&3dTZFs\",>`16B瞷|8$Pt<Ŷ,kRU2{L`h{` - rO3&,,`" hE:<\/1c&فE ivxȱba,`Iϗ#, '䝭t@SoQaf7M 4v~E.*֟F XQB`vS͌qڕvAX4?r(@nĞv'6v3$a]EH;#:wK'}B" & І]/ǃEVj~v(إe:`1Δ)|cX*g|t @NtGc-z R[`x2 ,:<Y\ Vsu#,zX`aTI ,?͜hc¯X3eYj,XxKj >Y  rY``є[$]tX|Kٝ՜P('Rk4{l dԴ ,Ψo37N+Uky]p4Wߚy;X(wYs՞~ߦiߪhxG-`At`bHXDp*Ǧ+5%YjOK-$YG`q,e`q;# Y{XϊUX+ٹgH:>yK1|KfҶ l/;@M  (%9:w'P Ѱ3uk5$š ,n> &X)ݸ2豁-XN\OdԱE]z#BK‘p<%Pu>tm#ۅFpgmRuiX}c)Ru%74oc:]thV_यpV%0Ƿ,僈bPJou;..dR|S.xoF Z_.i3j@*W\c@qZT̄ Rj3ڰ3yO=(4ot;uK]sl8,PlawVz%=XXV$5W>$ucM8Pb8S~V`q$ڳ} *u Mڟ :yY*zY0jrq,413Z< Q`A;'1;X X:)T,X9I1(,fU &XdR 35!T'c(6e>ϰKM33,'1JosN7`! 3Uj3ϴA;X]`51݈= qO  X$$cEr8"u70 A%h'M3namMz/Gk s =1`Hܠw`~o "3|fE^vqPߋU [כc)&iCq7/F>w$ g#Z귀vBlЯMӤ|)wzR(als,0˫` X\9 hZ7o0oG[gZLN t7a wt:q&b1jXdLrq(Z,DOZ"X,`wZv=jkv϶L iQB,N ,7XY 9]NgZ͚a_z(:0f`yׇ`!iCV/QFX E.º㦫YvOEaX)vQR ѷ- >9GmS[mg孓GbJqXk)GQ 3ܜjd`A 41XͻPyyHȫe$Վ9>~g3 ۙy=Zչ}) EQXhf,ܨέCapaq0,RUǤv~Bն_OmZE,gmu;UO~'`]b"vbfJa۱Zzzdb\]]"a:įhfS0pS~`An {u">=:s:J>;5kʼn,"QZ[_L58}y4>Btg;]0hi?<kazݝFu`" X| ^sK$g*#Ƙe[6EeY^SNևp`i]>;XmQ=Anx63``8:3F=odWV(Jm ]e|-' X;v7 W}e SH7:څ^PqoōE,hN'6Y3Lrnbi孓G,r}v`2K f ce ÀFݔ{T4LY'<3 cDz̙,"jBRFS:\1tm3)ހclXU45g^t/_1e6pS`A"u,VY1 ,«pA)ot\&si|eZ izQ/XZjQ-"X, oк% +J h=.GFOre=˽~6s c/XR~U#,zj,*}ZqѱkyV45j]#uUSڡgH0Ilxx`$*C%vN,;v74[xL|d۵|!TBCd B猐-peO𭴢Sʻ@ɖ3TOqnc,TUɑ.o?"X20ϻqXri*Iw`A_CԕռkLog=yrJEK:jgeHt|D=X챕$+)ZW\YgRLO T]m ,lHŻ.Ϣos߹]a9A*rE͗rCjiOu\&n,Cp; !DV,LBVW\}w`}tAX:K8pg^i KO`" Gug7E:f/mf^.8X~}IrUf&tqTlsOiQUFpL%i6ͲN9#(f.-?郈ּ6Cgz.t ]KG-z٦WUng{;iM+./Օ㊣6$sG-iOCnT|+wdVP}wm7:.9ݡIV̜UL3meI{)ۄfaCVȠ硒<"ٍu ?E}̜IT(xhi&w{z8@`AЏh]'}{iʻΥXnezr%{K\W* ^kCd"X, I#4!Au$M,Ya# =[E ]%ЭA/=@ A(V٤w4}cq\κT6o;T}2P_  cuJ1! JY o46.|U8AA,:E, b4]2ܔO)#GTdy;Y /\˔)0R?{Fqi¼2f=w4,es|m581p,G!- K(9R vlIn/]T*w_j䞾qOҚu]](}*4-BAy)/f`R 2<ڲٿI i *5pyfsX$t=1BP( U ,0c}L l;-N3T"c1/ (-ES#>xYa"3i $m9nQ( BPU389X<=!_D6#DNXDjx7@<@x, 2 ZgWV'|Nyvd `[>pBP( YŢ$iX 9$2 ^n6!RVa&faiAl8!3ZEDJQ( BPU389XlT0BjO Ub6g|7mBRHacE+٣,(̊Z˯>#rT ȮL!(e,r$`! GP( BUfX'7X)o;cq_ű;2X\!?B`a@E]":-f`1ꨅ3Φ`N C0@4[nj!MlX+@!XP( B}޽;w(W%XXx +RT?,rPoi>X c{Be($YT 5C/ieS>BbvDBŔ\tBP(%,$X` 6a/%wϵIgEuB\ Xb&KЦ?XR Q`Dzn~]oP!rf.lxyx~V(% X`4 @+(f,N,@V8# (^%>9X Ž-V=Dk(o]|Dv7!oc ߒ!u"318H?!"B8]5K]znt?KYq~8s.`qW+ 0cÑ`,P"cq붽,1 ?Afb%m3*)NEz `U0bC Ƀ&>D cWhi.o- Ah{-j|佤 ,`qB%y5`RAVc\E Տk 8fm$= W,|;v  kQ۷ /X|$XpME @JO S#r׌ZXxXvc IDAT35vT9֌^ojOdSY@6{[svT X{?zTv/X[%vTi=;ѫR/5qgC8X4c?nP͛ ,rf,~njʼnu;foLܻL397@oI| w۱bo7iPT6^lLnzV}BPtD'n9-"lY*D6n&3lKсB۰9~#n^L I{btﴙf#D`i(  G;ek-іyn+Q,V6rj~xg]S5:P^FnngGަiQ;ۨb}Ӥ j`mxg'4тi~m:OCe߶sJu۰=ϴarqݽʎ9Ka%謅=p'}bc=3@[jk޸jq; u}m,b`qnf ,f,,T֛Ym=)ˤ=3<y V-EqG""6J1 5ȳ:Ҳ܊l{rǚx&l*QReʾ {_MYQg޲DLKAl-רkӾB#!z}"~s3.AVpߐ1K2Ӊ\^TڻHzV۫2@8[ 䎇79(܍ SXnuÑݸlBLT_-*G.trDD`F)cȞt#N/c5x ̐ȑGB:뒇w1}||V9ݦ m.SK.t |?aGo:za]Ͷ}r=iw yTXKԿi3&Lk6",^;騝mF]^PˣKfϢ a⛔cqřiZQY5d"PLaTuӦ2Mmf *8J$X Kb[*~>8`㈭hKrA% C64R%gj |x(po">" u)ܵE)5BXZfxD6{*bj2= khgCNhʱ8{h[{l]k _x"i?]|MH=ZDZYd( `)oY涜@~yAN32\*1N\DK*")O1Hh'%MA~̗a'ȳ.@2Y ݸtB, f|ЁYV9<>[X(Nv.*Jgwn(,vxav}00<sw01f_eAM 9p?Fځ_fJ%F", :uZEg cx-رG+$,XXĦ1J՟ '\( W=Xc<077<wn.4Ur%zWi Έ>ekg5 ͋)>jCVAPY+x)  M) \NHlCa7&Fa!qs,:_P$a8:$ɮW t hs@X tX*L\!W5Zg9ڍ#gvRZ)S*\]~\ 9-^", :uZEFu[+Xw,bav2^/ڄ.闑zz} gB IdK;Pʓ|`x9x! 7X#{7L ,mQ y?Pq˪g!aHXp7. ]XX2jEgHQjFDmq% Y?|KSBؙ ,i,,|haqɼ$EGg%;i8q_azGN9SST3zOr1FB5@@[h"ˆ0b¢v,uK3a/w,bk]+\da1IEY(#坩8Q$~3Nz:5!leyVkSɼyX9s~ar޼(IUՈȪDUX}5ĘPHYl¢9q8;G"q &UJІXW(aQz~q/ji&Ŧx8b^" a$m9_p*,IIS  mڢEFmUboewEXܺEtUE,,bk9/#?]J&sMm2ɢ^`ȿ+\u(ǤzJ: SȤ5A-Az9{ʛ!,Q7OH~IaqYW#@($f SnVXEr蠳(^2i~Qy1b#ZXZO3aoCXܛ6, McdqDFd8  5 'HbSFBHBhф#ƀm[KX\MaQXWo߼ylYܸq#Z㔟'jg_Cnp>"}x\%VF: Oخ<rj,ge 3)ʃr6i@N/`Ǣ"e~%`$:&ťhBR5jf1~!BaTf98ԆXaYcG{<<5A:#B[&gCrMGz[w, ' COBhBhф#ƀm4dMLXЋo‚銫*,A?ca[ }H3M/BNrAï\xE8 K?ѭVopN;|"(ƛ;Ιcʼz!~# +0 ,.F9 @&_-%Z PD98  a:nГ:ˬ‘ Fy!,H\XBxlMn6$,>,C2^H w=XBn&{Q<-Ѣ #F6c TX\kyaXֲ 4!,:D".,y^:+g>Ήo%$d|pj|V$6EH,nP7~u+k#8o_(^GPY  61!C M d}z15E(ąEbyʭcUVh.EX`e|,|fCo߂~BA!J# " D&,"cx-+,,_‚$YMdFl-ei@I&,݇t*= !|QƊ_;0mYWr6;U̪yu 7]i?䍫GDszy?ZoEĢz͠'K{'WSA~ng\px #?0ҷLCA{UD$z!U,J7VQG;Ce?Kx =߮+s tgdQ1f+XXB9b 9BXtsڔ'E#z,Bj {a4|̱ +`2 拈ű7 |uh<_+Sguŀ8cbMܟ~=[W'3h|ܬ72n*b4>Rrۛ}P}eTq /XXG+t3Н-EQpƘ1mEߔbXh= 5~YG|Q4߬U@~@,,%öOJX;aS韛8X,}gL޸*ehLA(L8ba|Xؑ5cr"xs79@bfb AahŢPA.ꔪxrC!?4.fje Q PThI.;c~_Y٣Gj+gY78sr [ߦaBXL<~~>RcꅏOTT>y2yB8~(J3}=w,uE zXAۢx;ж O! e»kG ߌzʥ?.hc{_ X<~X|yBr gŅj&͌XL[^ҕVG=(4,h=pX ͊}A}0xA%Y#&ޞ+2X8W+@d{7,᫢䣩n? TXf0_H,m\-R} FOѢtfxV'RmS/j>-LC^܌bQ<"kLXacw+wfu5<~P:A,̣ :̖Ţ1cl۹ 6c[v X@;snul T.-/$^gԅg%.**~4ucXm QpYȦd_cZ#@i|4saڦ.-Os{)>Qrd#.Z:܇LoE }NU- Ss.J(e8c'XP[K,}x 5z탈4FI6@7ۡX,1xBޱC,A2X;$]b=XmzT{FM"aӝ-b![\bĢ3.f7bm+}XtXJP@>JnxJ,n!ܱh@,ZM,:lؔ"{cEr)bUpe~+dыX[]۶Xjw, bXXlt9z;6Ȣ ]]mXl\Qb!)am~ Ȃ# 5x{߾dmx[b)Z-HVowPmH \b!J,vtB%X o:XO,öP@.p5+VXlM -bO,\MbuʼnzXm-^w[^R ;+\MʦPtˮxM%a[,6bZ\,d[-Tp˂'=)?5C,6 o0Y8b{L,TEOPdAj._,eSXlO'Ƅ=A-T* 5,u}]uThޝd?&ܱ)P1uvB,6p꜐>&5ryvSWcۉ ۦXMmH uP)nb+J> %go9"-K,ҚB)B%fo9"^bQ)Tr>ڕ(PXDmR X$nGMm)Ԋ fE*1{NWr5)ls77^dAjd٭5.XĢ#u:BY 9žjkw]EK,E*C,68bg(NqbC,6b"dd[(z[O@,򊅞bZ6 o*X]G,^ET-,zz XK,,X|bQ-Yd_6E@%lMI,B"ov]$mB"5rEl(Pۛ#XgpE[,6mX8F%ΊP@vt<٬9OEXbb)mϺ"Mj lؓP v6bMX7[bWmp;9ŢS5};Vb~[,"9⥺bj4{(BuvzBJ,v&㥊K'Pe\ʎ0ZcᙊPƉ3&N%;H 2$D:rt5k=BUyRS3 Ka*_B P.XW,Bw0 %   jw,|ɢpVnНu}lV,`KJaWplllmnd2ϧg|qyy8˗ќ ן#o __˨{^;ex IDATd2{ƳG֌Q||<{omP~2 UXR44bb7*\1}\y1 ^nP;i9B-`E9XvZ0PZY4׷_e9^YE"-Ekg͛``~ +.a+\ DXd;bw">6X,,Y`gB}۝hEP^Yb4: #-R"F7w *\8]1S+XaiQX _6gW, NYꒅԷcBWfEYiahm/R ZR V(]|EWmB AaƝPjy d,% ,ޙiY4`Xhz0"D+]_aD*tR+`q9aa]vJu]6 OB="nPXY(u}z1TAYEta9TZxm1b;nmc*\PB j+lBNX`n/ &]`-Y}#oBPVY,0BH{ mD)b)YmEE_aB}Ez%ڱ*fuwl6hpbABvڲ8ea6C8 #-Zhma %nTT"ڊ,H6Baqq BiYq3=,Ri]QOKw*+\"W >m'^tʃEB `QY[~3A|Ϫ] UYXBUbO ".M -T"!],)J1{*"+NcSP\a bpB=횲(,j,^:gQ'-Ƌ.۩D *t wo[ )n.,\xZ-}`qe6Ca(t6: ZH-lcLo BgvVlv_O+ /QXn,*P~.pGg!E(-k6[tQcSncVWz  Twa"f')WVYa,-: {WW-0b+|?ӱLD*\жaT\eb̪ٛ'J 即?+ 3 %"Υ[weޑ[T"Ay[uŠ^W$}ADXpCljME]Yh$d/,lB)kE.Z8UjY"5U8Yl5d*%W횰xdn׏XoHueoۅd/5nZ4j -.Jꢢ0b8(v+]B4vUX۫,YLY$+gd#BI e-D[Ed]~YS$»pB+*BrER6BjuEQ+ r,jmҢ磅J[ĀqRLHǩB ~2W\QU&XԄŪ$Y]S6C*X/AMsEp *݃z=E"_ dQ e66-4-4[n KDDDDDORq ULc~^ؽq,#|xfq"h!=-->v""""Z˄~r)P\+UWuE++ ~w8/X̴_mMUY}iF Z<׸¼􅈈PӨ +kP`5+oY,E@-nrCYI\/JWv0Eb7,N'g/z.CgjB<;2["tq 4((ΫvcZ+uEW.z>5{xXŅbIm:TIyUE^/ """"ڿzwwJoR =VLkcE~^QrE^aqXw꓅|j{E1ZPjq%B~?OYSN1{a¬܂*|E1XPGw+' #FP;YY-b u+7DDDD!$9jLbgX׊rAAiW9x Z d1b Q """UtFUȪppkEv+ރZuj`wjL1-բE۫}zGDDDD4TE3))JUZupXW)BI1@EREZhZux}:_o9ҟEڐb2CWfEc5ذ]R,F*--,../"cA """"%FТȦШph5W8W/BPCF C3../<0 """"ڳO73*"UVT5>,v}gQE1ZDlp!:bRE\Q¾|`1L1 ^Y͢J- ..F2:OV%݁TN@EEUV{ŪŰ,ZEH {#jg F J3z{MDDDD_}+Dƒ"Bb QE+ڬ]qDXt}j,BB {!hbY2UxVb+V~DX#|BI """"ڷiϨrSń@VTA`ZB-J[̸Ⱥ^x`4ADDDD}qTVQQŠKÊ]qhF G 5[̶pPо!qaPÄkP1B NJ`8^qJX byлÅB""F4?7EI+sŖ{A`qwBѢf 2/83**pGF XIJxeO c хF'ADDDD{'TZЪgvW-,"E 닀`1'(),**Y]q+N2T]hQ"ƒ3+<㪜bB`EkbaZpȸP7(heq<4EBU2+wyYP]P-..264QMUKXP)),**%NV,ރj|ꐰXsG5Z["BtyDDDDDF)*TUQe֮xpaіE{iQB* """=U_TTbapbyE/--..J^l """"uHLQTɊ.WuBXt=^DžB """"PDȦXfEl X b`hag gP5d`"""":p(MUaƊsi]UY"- ËH """"ڦڙ]Hp[EȊ\+^Xtb-. ^41DDDD:Fd a!,BX -|oXֆ a!,BX Ŝ?a#CX  ,Jj:c1q1xVL`񚭋@X a!,3ibyp}!,baa1DR4Sxʹy!,BX *`Iҧ/^P[ Gʤ8#`&Nʼx m!,bi10Hq!,E(m !B.^ZZL~пxe1Ϭj`vRq1Ǵ ,?`^yQ3%,bkP(* QKŬC 1HWEiPr~`YȴE|"Y@UQCyaYo ܣ#_Ь(3uuE*j 萒Őe1yET"+jȵE4-R6iE4*JbS;Jiꢨ-2ipX 7E]N&hd"kZWE")SoHE-iQWWd(+z&/gH-i1|Y7xۯ+U%Weۢ_YbyE*"QO7rh"dfWV"I2/mqHZ6+ʲ"٢,X1C#^(LeVX"4TQQ$lТ,fs*+UkSb⍘HEQZ6]ϊ@U$B!~$"Ѵ,U;f~UĚb8`X]ۢ=mje~T$B$v$b?.JbXn^Ɋ"7NhD">(L,zWwnVģ""vc$EUYYL%]ۮ(ʊ@Tb3"um3}ʢ(銊دhRZh^Dۢ&-*b`[P*"#4yэݹE(-:(cEqW+㊝*M #ݺ-iZ,ZLYtEx\͊DE()ZAQe"E"-ʇ-E=(̊H&ŁG 2ui()e`X$$ثXRZKX^D"8)-&DWDb*vg{MPb-CbԶTdm;[Ê`mP`t"0-"g[gu]?sZ\E~Wt_qT uxh*m¢GWD7 ݤÔE;a슽kPb{"r*ZSŪEyW\;Pz8V+e>: p3ś]VoZ ]6,6(,ztӸ̛f?48,EYW9P,,]׎[mE:e1qXvθbPunh,E/X,:kaa,()7s/XvreQk =FX@MXl6P},Z dWW+6sGʝ?iϢnb(U]!,&,ŦOYLU7BAu"58)*¢;[܎ui^q~h@:_; U[G E+gŅZDˢtb^:+;P e u(^ꊝ]!,&,bk[UkE``|!b+T^YYD^ YHW\:P2_'8fXxvWv̅nzS@aqy,λe`͢ꝳI"`!ɷÞ*WY\t"f1נdXU;x؎jw,JK  Vv6B50ϸ˫w0ld,4CH Fv+ ,5F6C5JKE+PzG`ZmJ?t'V3ԝCCYBUsۣ`  ,b,Pw*Yo(:]hi8`@4Yl/NE#y-XltvBrWFjWeyGQb l*,P F#TWb?w{Um$YdYb0`l*+61pnEWh- `*X6BE G",~Ԏ ;XMa4fQoʕ,֛ e W`qZNdߘ;,E,K%XL Pahe׏)_*d U%fTşE4,X- ?3?W`b/,YU," 5`,Wl56BŹG,P[d0E`uXZB>",fy%\":a1`? \qrd1 kcE҂ZG'T\RI,OEb3T=.Y|ўD犕E&F#OʝE*q̢YXRFv|"S,N ,N1ΒEEj|{cG"uzrǧP}K v#`ErvQbb-w͖,\ʧ^5EEjm-j" /XTP U3Iwɢꞃ#]Ey,OEł 7C[HwB%WP|PU ^9jx1bt"u:.X 'XKfdbU,,V*XET'ǍPg|Pټj6,\/T{  ͆PJ~" /Y{r g)X;"Ÿ`jLnr{l ՚ߞ/J`o7Efqh"j+NOX ,J]SAX0}":7,yB>b^8J-]PZbsl|"K'`"s"bb**X& ,& .YB<``> (M0=_ ]x9a1ܾ,_%^!No#iU,OJExEP]#qFܧ%^v/REE,:;] nMYgzZ"Y "Xt*XrŅO]LEGɢ{/ԒFvj'fib%X@`1m*+YlBenoo,/Xծ#v4aq!X@`qјƷ;NYF%L'Tctx~t{\i@Ibv~x 9] 5`^X. 5/XG є^d ZY8X$G,#`!X@`Q,)2 iGXDW[ۣ\!X@`s UY[3XdggxU;L; C,^:Xv0EɈŸ*:7i@jZJ^XI]n:Q,Oio{%!Vx/ ikJzhEY/T3X!X-GGOzݫj8 Y<`1߶F,xQP{< o5,$,:X$vBUW/&Bz؝,.P/Y )X,>tB͂qs'`}`ng;i@ϣP酳`Eu,E{"lvW~" .]4dQG`fEt's ,P֐Evz{Pb=,ZU'I8bzvv{W+!y/|JMo'jYhXLwB}r ,ꀂz"XT[y*XD#P ӍӅ!hzZDސEnb u,_J^vnz{`)T,ei@߽/YTP`QjHbe;XMy0b!X@`߮ED^gB X4XnOG,. zz/lȢlz;:d` ɥPME5}+%0XDۣwE-,f"X <7ݞX/X op-ԓz-pţԶ'Ѷv5b!X@`}Eszvo RjvuBub>] יmaȌX=gyZ__Kr??:S{ogem Wt:t$&^+ )  ia ë%JTMΟU(|x[=HQ( z`d`ύz-XV"buŁ!zJB_]%omzw&.w՞{X(cF@P( ",]W,X\6ks X|kPԴ"-r=_-T~YOog=o,X={nEk$p]\SӢ7yGѽǃ>j BPM=Mw`aWͮE^pkfߔfPb3E{J)XEztܬ(`ze|?}N ,ڋ`n,P( z2Xş{oozI`:"v) Yh/ Y]2qz"JŔ}!>n7Td_r)IE 烟!y9Gk :o0; aLBFQэ|Fc.ZI9:hRL!͐]W$%܏3|у]MlWUuGz*1‹NN^i-,x<EY_D, sTXd&mwt6j"m&ӟ*5]^Rrb>C폦CBڇ﴾ԯE31pw 1ϩIcy*sS6CP( uX`vX- X~N`,>RQqu/i}dCKTG &viɽ گ_\}laj#Ёuv:;wm2>7pQab8)Q4f, t9L:lbf4qх;!|}^F{N,BX!enLŽ' !yh4h L[S'G6Es\n ~?5+`I>i!ϩ?@C} BP(ԝ`Q$Y@_7X.B}Y|v#*7J{u2JyAFTO\|hFi+]Qqڷ6f[ ,}-*k58! fd_;0.Ttԥ6TI:\)eՌ}r`EFe]n}$t1?fO̎ mG m'Vqˠe X4h#0H ̆%zS8 I%I9X8O@(>@t`O )Fä>@=d50 'X]Ի,?w0X'8 PpjӀ7~4#}=0.b|Kn[Mk,8Hs/ N΄9'T~FD BP(`ӧmxǀ-6 ! o#b6XhmS/]=o+YzVA1QT}T품n͑>\:X@(jUl5 \__10 O!{N?={sU9X(nXsv9X31\|ޏfL H'ok' P=p,B$`F bNnv1+ۜnQdX40yBP/۷,2XX"a~+[N7~浈+LRd98v:KzcY5IXs}pY.OXh; x"! urS(=P$@g^4bbq4yb>Iy[F*XpY15%>G흽AeJx:,+]`̭>Dad<*T{zbL `BP(E,\Y(76wȻ,~"WW X5_q\-1`_Kg'XB쿪_Lwz C2)P? }Iic_oE:bbq4yەiΟQR@ ;vaXBxu !"& IDATj,$IL`P G.A\BP/>^nd"nc, ?5 Y X>`I"nt}%XįaOi8X-)Czg15/&Fb+jnXlL/6x,$svOlZt~Ē}>ܝ`7b#b`Q(ֿN >t q0bɁtyBfXC8/F]h%yJ}oX+`.ژBH!9l$FVӳ˝\ 5:<7)dŎXfISr,_ PDuT7 `Bl*U9Tj*B@P(`X| Y?r<>/xu(~g,ٻ߶;[(VrI,ss0OL: e˶b2bCA It0/yQ$vL_%-V<}H~u@'3_P,ńZ-ӰU\:}$77{k,T,"w jy+{,L`!UR.u+M]d(/X4bN`?`6=b=듦^ 㖝̭s,H^(Lz2/Tel6PG'Ž&XXx"_3c?ꡩY^qU0X$"٪Fsyz0 0=tԢ4R1Ru#cIY(?" S%4T_eVJryV}sBV7TM}0>[s,ķ,z#q0XAQ3鵺,f\52uN&gLXL,"zjv:toZ3SPtBD7=sE l'I3jwMq3jY F4G',j,fw}mVs||E&Vr:431$X4z:=yBίΗ@@~!OKz]E=Τ8e %iܬH<8kΟ U~j/S_|>3Ұv*Ýd\^||}3E B3y s"}Q uuN`ΚBh5>NL~Zaq|Pmf^EmoBŕsySGPKYU~R-Xt p7l 9xƢ$X4{ 4N,Xx8],=yIԄl gaq,v#F36^p yr`!a0Xދk:ыm9Y&n(Jڕؚ^||},7rͲ`x+u/^;΢~.X-,4"*n ]0$9Ul|#rugP̏ɏq"j_b XAu ˂/`5o6 D,&f%B GQ0 X.G9]/X ^(bak&Hojb-n7]c!6wӅ 592^ȕz܉|u[{ ۷{`qws`o~dP`AӮ# abf_f q X,~e &5  I;j\Q;YqԎn9"odt]% wt!CHYs!v| ǖ=Y]̒P@6{ON&IQ;Jx%ȹt\_]f"F¾-T~0n{ ޶XV}l֊=hh5w;3έAPm,:X|\`ጱ XKla+W7>ܱ`17Ȣ>b4X>OcQW5-,vXnpEX̍~V>z[ yS(jMSދ-LM`Q4QbIxE1ƂƢx2wx#Rֹތ>v0AO?_,$X<4ƢkWiOʃ5GGG/i,˗E,J' x) vx$|c[,jX&X1cg|4}>FoA&X̏ޮOo,5lz4dQ`a7 ``a7,h, P!XTk,oo[T} ``^9X*Xx4fh,<jX_۳,Xn,/]86 (Foj   r]cqoixqPcA ji,v5XXP9XXXP9XXX54,7;,Vv{cq ``AcAcT44@`AcAcT44@`AcAcT44@`Acq,ŋ '4@`4/h,h, P9XXXA',h,h,ۀx    Yw=XXXpp׃`P9XXX X`P9XXX X`P9XXX X`b.n<7K^oK5Z-XXX Xoh'͇7Gz#W#Z-XXX XXh|(Yꫯ_,j|E_߮~5`}SW㷷|wܢ`GNX3XlQc%>T!cOdX+Dxg= <yPB4 R;wG4 Km~MN$.X81 ,"ll,yEa'Mwu6Lsfgus.,N j nYC'7Cd7E-:l0,б@P(/Y-X1E ůʱP/ XRh^6P(`յPI:~%(T҉K^bJMqiMbb@ߡ h'HZQgnXx+/r!6to2asj¢U9)正KA2(kC+͞dih"ߨ\$ )͡Tl&-:^ m`:'٥97 B,P ג1!E†]E*v1} rFdN*+K"fȈ=I`4n" Q>\Q!_.dN,1,1 JT^{S-= aِ(k;$"ҖIyu,zl#XXcqBea"0M  `^_0dGrud,), H,߷ '9`Qߏmhlk'*Ht_Y9' WI/Ot;#S5=D\p.vNL: D_V3-DR-7 YV`q Xc1VkCh   ~`\ɛ>lA;E+@?Cc ׃rرHrxYc RABx9fT LMY '>_H "~, peHXebNVƂ'bI+1JQRe#XXcS.SddXb i>(7AJaԎ`-d1HϦ諭ן:b#)ʉX́4'WPU\LD̅b`&˳!8yʤd)F׳X$}5K[`5+h MxL$`:]vFKq-9-7ݳqGRoP(7S A ,X;[hw$GvXB t\;=z>k,-(ԏ |S]sqdׯo_gZ,D]M0uE>>Ձ +ŷ¬X(9,`7 'Am+ϨPn{ w.E` ­+`: nZiawOs~z78`Ql܂Pݙ$:z|& Ԡ%PI/8z,^x&={?v5&2`SaYiWOԨ'x` c1yPjjb6]RY92!±0ob~ۮ< Xh8YWycO{g:nuG{-vm\gX[X~ն;Ev͎gaq>3< 8+rq3^`m ,`T4#`K`3Huclvqzl˰6iFCwYS2Ζ((f,ME`Ev,Ve[YGJyftۏYE+\TG8pW "J_ ߖ^)wCW-hx,,=~?,6*Q=Ϥ#Cr"w,>PM04EbȪ>#qfTea2_!ەuI8oLv,o)cޤs?YK&ETѭ'/"(=Ow{vB%Yn8ey~q9+ <猑>X#c_K`Sϝn#  X`A6`17اj'o΍ ,$Z2 p 5~#X,oV:1者K}4<w53/aCO\Ÿ n6xFY">|3)ܰ?3l8(@#/O7۫ #( XŢ,Xf G(x*X;\U3m),\XmU*6nXc`Z ޖEU !cO{EnrsP) c ` ;w}np##iٙf8c+o*׫ %g,b0T%[̟ 7?qǐP+PXuhʷ ̮E,eU`AvղB]lV (&EAAi2Wnxs?X0o(%YdC״8xRO [ c#.qN 5~hBeM7/t7r]'(("_ʲXv @]!,S@¹EV?Y#X,mJVW4!i oKwZ,b"35Yl3ԳbIy[`@OnhՁtlmE~]`1 mg]BZ(>@U$X՝)J0NJX.0Ff3 J{jj~q0Z,2"8eeUd L7 k֨m "L5y}QH+Ŋ$M|V`)Kʥ1,*)rn8UBcf Ce,N?,h ǒsÃP i5sϕwy;ac'x8'6;Z`Q9O,Bcx;Z¢l7 y,2X\/nhE/4+ʵ{k^ 6V\\KBX^sֆ1D'ʐYf~(y`1 nXh,ގa*Ǟ i+4X&rHM~ܩ unE*:$&dU<Χ!Euթǡbr>XTΓeHF^Y,4 p3ˢ`nE5Y+W!>Lq<^u Յ*Gnnۂq{ W(ƫsgَ~ϝl?Wy+ hb 8X"d]2O,Vaz#ޢbVNʉͼ؎y냆וk hԜ7c@ং&Y$ Y4svA,l{~Z5[O*_VHϳ~(ѹ  %fC@E, 7,^΢EX_1䓱[ŢܷG^'6,[zih'`Q=O7Əe,ԕBcq@Ectd+Fhgi$*)/q8=htn:<8h{gBazlU/vɻvXh,,Tnh,Hb}F~X3NL6w՛:%ZY&oO'ّң0?5;s"{|db: /-W  w,d+^bl!Q^U6NjeX5/'m!NaXN֣,PYXX6 ;>:j3x|Mr`X Xp/b,rE]~X̀BHU'LVNIV,ަ١^V[r&sGŦ(_l'_?}{*υ{cyp)m!"ui_3`I_[%@aYzX^fi7l`\s3:CƊO ~, b GgFkPX;APg,'ڄ`hL"_M]]=rS`@ ЏD, b5βøov~P\\oU],+xGԃJx,`@ ЏD, b$^dX,E] ӷY5&k;+ ~, bGb;7W%299kOi6Yo^LXpY9,`塹šO4_Y9X<{z@ X@A5&U͋(-jQ;= λW~{ sB 臔bz9R*JЋ|FиaOXy-MIzƿ(cJ9f4R_hu5h^oErQ yGG,U$*7ƃ54ewUs&OJϙs~i&⏨Ơ7xV9a~Wk`ՈGwG@#` X<NK텶Z]/ww}/5:;OL)3}p0s_w[/WCQd3q`K"%bŪ,zud.ɗA )^+BʇUwy@r ,SC3;;gbk90 @…X6r] [ ~@ :`QԘE}99w!(3EhC9&if,Ӕ.M3{0 Iڑ 'U bX(_lҔBV &@CTMqW1e(jL3?;yF8)b,&Fe.eY`X@6N'tڿNrY5>Sc?3?Cڙ_3@fe?o>8Sa޵X(^+lDI0 `B@"X 4XP$U-]7/Bû [&9#XW~Iuz\˳"(cQxX3/i^c?Xdz"]{zCD;t2b&?GBcz\ɱ[0k&qF+Xԅ6mMFUu1h '@ }, bX$\tRYa>WX[3ifӀ^G/ ѫMB;Hzz&`qKbNM1݈qˇ#XdLtHN mVZF,4COWe/˴LVJM 7o[8 6!õcta yQ6Ta'z-g@` X,Z)kaYgK3tZMU6S`q{@"X"ǢO1A[`!Ϫ1걹 <ԾHe]-"Nƃ`!@z_NHTn"A(1ˆD5gt'8w-37@6uoa/Ma4,-~@ :}YAur:j4zffp# fkˮ"ݚEP-Xdb giH$FF܍Xga"o, X,6UW. [OG (@ t, b`ztE#ĨY> SEf}l}"bq^ ޮEc 4=fQ}0iun,xN/H#x$b{YMuAkx] PM6[KbfSuu0*f4 vD, bq,F9MjNI̱`!]R6_ʺXL7VXWQd2aP\%X1dސ1bZ4"^` T_%fpkh) @ !D,EbH:g[`gU!)nMc*^ ʮ.jl yU6/&Gf۴EZENQFf-9Xߵc$]-u`T_,adŠb5@ } , b`z[. .Wzݿq;:cq669Xx,I 31_/Xb5~NȬD%:'/YV J!+3`O>!-X*eV\Hane&+f:pl:Z6ѵYFc#rm@C` X .dzEC1 )+s˛פވ"r|D{̔hh^w捈**CLjAV8mye B8~n#҈25z1Enx 6)=/qN-q`LEzBHBN[`cC۠wu`T_mjLWvڢ[~Q>L@ X@"M\sș2`-yX =|5ÅG]rGrr" 17ZXq۫,lyNbuۘ#[wH>YCqoo'==w{dc&XG,$q Pb-bnw̸G:XmjLٿ36_!@ , bG+{s;I0vme| ;$|* $r'~py}aq2<-Jo-Oo/- /76>3,N&kͻgOWw}sugk˛Ao Fq=Jwc1~|~?~jŘXbZ0[jzu bx~{D{a l>gh8Ϯ}s|u0W;f B80OxO_m>6w=y~2;l> i&qd4zdx}t4'z!yNuqFf~t{bX7:Z> 5bX'7/GvhՆbXltq&jbqtͰڰP,c6zbz|6=?fnbq?cX!{/X IDAT(aX(bX@byX(aX(bX@byX(aX(bX@byX(aX(bX@byX(aX(bX@byX(aX(bX@byX(aX(bX@byX(aX(bX@Ŏbp0bO7, P, BP,  B<, P, BP,  B<, P, BP,  B<, P, BP,  B<, P, BP,  B<, P, BP,  B<, P, BP,  B<, P, BP,  B<, P, BP,  B<, P, BP,  B<, P, BP,  B<, P, BP,  B<, P, BP,  B<, P, BP,  B<, P, BP,  B<, P, BP,  B<, P, BP,  B<, P, BP,  B<, P, BP,  B<, P, BP,  B<, P, BP,  B<, P, BP,  B<, P, BP,  B<, P, BP,  B<, P, BP,  B<, ;ę0 FPA\!@6񃏊ka}X 11z d؃Xr~^7!X_O[{eiq cԽK)|:Ԏ;6|fD!rb}S'k Ed۽}2򳶿*Or5:`qw)~)#k c2Fb,]U}pez  8p,获*¦˹>3"#E>_]FYBBX_),\ZMhbke!,r@HoMÔ;"iK{>~.Cq'@ZmlClu=_AA=[a9䒦@0bLBXq{2MpX $ϥs" aS7 K;nzg&E8#P5vYiYGO YXl -,Xϟu}|$uv XRg1[v\@~* R!($oޕ$LPyŅ& O#:PO$6za}$Ԑ<:::į( nڨ(Mҥ1~\XS'-jX<Ž<}B sB +#22-7K!,HZu%-W\47[C\X.9Mbբw"6 :p0{.c5MfBhjVtASuB h"Dq/.,]:12K$x/v78 ",B)ǝӾӷ&n{3UR*K[*k:|'EmWTULydiw-)N.WHxY)V6RՑ|RU>Mz(BU{N1MVZc!;I@Ǻ+8] kEiZ(o_TLny3mZ64d;|H3*e5MUnaO6 -e {;.#Qai B*}F^w.c‚\bDȎWwը?ձ}+2.;xC&Ǩ]A,hE#SDh[蛎'Ykx=a2IMİx{ O9+%nL6V6[:^1%Q_lX0u`rMc:CתD:{!SvШ7CCEhkޚkJ `)m‚4CXqhԆ],Lolܫ7+>ibqlGj 8p, ӷNm9cvL=SZx 8p,ϟƾ۽?F#BYօERDP3 _lByp~H[kT<GF, Uc#7(םHS]yJ<\ϛ,ܗșEz͟c8ǘ8~ql.Va%50ZC!ϫ|h7GI]Si+]Ιi4{BEÏ |A٠WtrHN;qJ[J@XP [l,,,>v\&]s⛃(kQ{ήml ?2"5MRd84E(ə! xБP^ k2lBiabDZK{;:e F4,>_󻻻b*詃 8wrޮb|*]g.n*9_q֗sQcoDk]{9$fg_Ry-D%ok`qPhP8ZtEmO hs9&g EeM{DW {5$AQо*/;걽gwҕ+`QUh wNdpo cV9z4`YUjīV,9vO "?÷w ,KWmP㾊}\9[oy*X6*+\nH) {o|EKvbT^eǩ,mW;< Y._gTQPsޠdae'h/;ooM8%'#Y[GOӯoI} wϨM+ K,u%6EPvwK{v(C[ F m 2,#Y!T;L B4EYzbfxv XL N,P9Nu1)kWA,x7<20S6SDm3w.TċmC"9+ڷy'_Q[9 8j{TaOK=}"Hc_y˨׻X}3yNOV9X"ES@-JfrO2.Bdwd?4k-Rl@{qh "{BH8SX"&A+Je~ m_p@`?_ByQIS#XTh XAkFap,8Py9pUgp,XhyO6 kM{" UqKݧ75 s8qd_B}ă%qڑBS6A Ε\ ),ZWxu}K(kj~4ŁrW%|T6 [j, \6{ `'.Byj~`7d_3=vOph`Go|o# ,Aկn/3 8p, yrfՏLܝxɄ_Y=MAMcs}̨eEˆ yZ;,-,_e>Ӓ*˒hQ< ,kz6o*Ś~Bus^  Yr(Z,D#*R~a`A?Uu:4A45=~'hXbl;MF#O5|V`C)*7 =Uuڧָ}ixP{dZ[,4Rϵ Wzl:jv9>^x2pXx٥GjT*UMuj5R h Q/]:fqr  H 8p,P*7.jp_wFB)#͂`Ƕ,)Z{o,kfzhIg*n KYzw= K1XNJ[ ݥZeɁb4zQa,  ,XX@b,| {ϧj]>u E4Og\]!:CDV0:EUpjсB/&.X@As 8 H BkƛF'L?X́5g{=UF@ ]>I ԝ ,V!S u @خg$&Ad 8p,J?Fᙨxb=7[ LBGdje!~4;XI ϖr b^^<'#X  (,X c7ZnLLb(E2䭊[86H3 e3,r{&]`G;,   `\r(B(SfDc?XPkia]1I4a:vfǦ]  p,X@P\Z&NXx{,X/H%W/`s:a%ɰYIVb(O)'EB`A JE̓0wjd Gljv)2Zj08n:XkV-:sk~aT X,  Jۍ”#X<X]'dISЧwM &{e+(իq'g `Ap,X@PMBw s7r,^=Iuܰ{> -uk1ԵB&ۧ  h>cRD=X$c~Th?g^uunm/ 4~4P1oL&f/A|`WR0Fڵzyo|X$_yqE#^#XKL0 -V ,X@AFcMi7Z{sF &ԥy ?M@]YBsEI{  ( ,XvY>i`Aʎ D΅pr2I`Q4P]yU%vF373sA4XcA7 \Ohb:;e[+/^Zw@ݨlݹXv,(Zvg`q1ny4X@A:XcAN\x)Xq;`xU {UyT ʔ)'^ XL Y#v] Ӫ,M~LvarqpLKeFqsy*#RlvP*A 8|kx6V/_){TO䂂Ը,x%}ۡA`t2XX] .Ӈ}n tlB XI(ZSKi?# 2 8ЄHw#-)qzAٶnD/%k";Zi`s獵UyEl@g]Na۪%EWl]zB|)oYmaVa!Iǽq|.씐f2cPҧwn&Y0LXY644nMмR;LJO#~|^a<Rc&ۧ|/簭a Jgv>=6G ."m{] *{t;o jwsîzRx]y`xop,zVz&a Iuꈤpg7xI͂>c 9Ohl 6gН=q'p,XYwCX%< ,X`XLPg=f.`#,XS;\g~eMv8 S7 88'+_c”X3DMSؑZ8N }Ct?N{DmV+՛d^+QcB{n(-W #i0bEmٔ }.x '$[jI1vvx|]ZʫmhZ"mS,r. c_DMmk&jؘɌL|6aI5UXDV~$,Lp(paa)5UXJU #FDfnR|6c+O*Y~鉰`:%,``QctL{~gv؆o+,ڧ*^cŽĤ&,9"I}=m',£>j-,cܧ:tͼ[6ʾ DXH 2=: [c^G0[XTay!ַmpC|{qlЪujZT M%aK̜^/΋sg'zޯi>~xoXбzV_\NR}iPA`58XD&e:´wFK>\s}89 ɷ ϱFwIAّ2Dp`Qdy%T}=,@ǂE4ˣ|NR_|6_ȨBU*\It] Ź۟ܡgT*ԃE'ZB-˟(ʌ `$$L.ϸ`1  Qr.@M-o̞xy|&ؐXϑ|{: sљ -Pmpߕ#PVwVP vvoOE :e{ŶwtiXrg%vr"2st:Kߍޑ}"܄s *:;uL}G*x~5¸!uo_/`o܎,şb*'Y (t,Xijg^F-M"+9" `դ}6L,£SKFFvNvް߱' fKQ;9ٶg#S n='JQ =]]SWA$ߙ ϲFdQU2#eP͵ŸQ(v۳w.]KGj7XdO7_( t :{14^ M{eRݽx:.`X+o;{VK"L F^wSU`Z'Jpk,}h0eVM!EAE ]]CbMj&ζ\ x5:=hS~Sw3㽛WV\a/Xбc3>(Nj4`Aǂߟs?6/# :OlJΦH]M: " <2Xбc.l/ :O.3~ukIF?^G :t, qcAH,Xб :t, qcAH,Xб :t, qcAH,Xб :t, qcAH,Xб :t, qcAH,Xб :t, qcAH,Xб :t, qcAyY7|`AǂEQ);IvuYf\.߫љ,) ,XбcYDʛS[9ű}y~cӆna=mT Y``AǂEۂxɃZGv:Ú;^&wu,Fikh&XбcI|Qkt erboD,ETPuiZ)0\~}{ :!ce1GTy`AeD"? t,X|ާ `U۬W,wY /=`LQKȵPi.v7`cp~X4Xбc2!`P npOIf[Qwc4subg%YKm1lR;i^G5֊1"yhd}bI 'IAbXZ=~ѥ6sAj.fwE_iV"?['N X?[OXiQ)S %@R4rhzTJJ.+r]wvNpk!IB1$'ަcfZ`ط0ByMZEj+ַg_HȻQ9=]I$瑹XUUW9 R۴6p}ZչU;e_)ȵ:/ٝ`S[gncAǢוӖ uc}׵\}fRMG DMr=b .!»Ql)bMƾڼ`^귕1!/Mozk#-5ڬrfe/聚 =. ncA"Bp4Z_dQ -7yj,="!»ќ.}lR  "Υ{NՊ{wŌȓ6qF-5Y/w0,]띅j n詭bz :t,Bw"wvj0Ҿ`aXuPXST`T`6)E`X.;[ Cǥ Ad^Ӟ9UJhͼE_k:ٲfm  :E^,+"Ű`198XF M7Xh s:M[8i@Ӷ$wAF;Av"|^{5WLEDvZF|ӱ8=XF u9*uR^I506VL43-f;u3 uЮVTTZڱX"X,Xб]TV>'1BYgz, ݰWs+I;kS D]uf}/z5cHB+`Aǂ'{,״N`1v,Tsuy`ўXO&T`oc\2 V8΋R htk֕eM_r.xH͛p˔%T&ݲ諃Ε*;Yy>9X*RJ˫\y`AǂEt#iJ/X{͟"3CjA?ʵ%bT75FYdsv7XhT91C kYg3X߉w+E霄mY޲諃NHUтbn&mA,Xб:?εsqjrÜJ~IF;6Âw^$ (ĔXGZ782cCm}R Zn>(i_/xknUh+2̋Kܖ}~k'oA'XhڕAs7֪wZ\=9`AǂE_K?͵AN:J?_gڻA7?m;9|ŷo"XDs3ۿ!,CYit,X 3[d/(0&/laȜ,^)>$\6cAcAR_:qG4̜!XбYQJGTە|w :C>:ZQ`$r;?^ t :@`Aǂ;Xбct,X :@`Aǂ;Xбct,X :@`Aǂ;Xбct,X :@`Aǂ;Xбct,X :@`Aǂ;Xбct,X :@`Aǂ;Xбct,XM?_oiLO,Xб>%\ȓr]<1>rfE$c >6_4soo`  :׻6ΦN>"Kz/Y^{ӥyS3N~[=R,sj>L--Cw?)fOY`z=jXpXnkȫjgyC8XбcYr8$X.dOMclrY$"b7&"n:D꡻eMHU=`%pbhѾ8+R/oQlz;]aĂ :wg ~Ы2} }KYBf7H` 2s6rqo[{duPg׊I,Uɪh[^]Ey6v=Xt^5lgUُ6!`1O'[gũLS0bPZ7FxW*vЦ|>xө{so,R'ʖqoTwuʠ`A4Ej\ccݺwD<7vԷ]r^;3gLā;X,?t,XLV$k\ؕj&v-`u, fO,Xܾgq!'e H#[V,.bH`pq11;$ff&}rVݚ1's IDAT|$C{'4>=x&'+ɊvDXtuGbcȈラdf5T!> t͘`l"1f/'u}#C,og.MXv0.*"n22dh3ϲ7; >Zi+p7T- 4A s&ԙ=Z Z;3A}&|1Rkq4dc ˠm#u<Pnȑ8}c3ialQ}S0B1ơcB'Ó)wrPAC,$EςՔ`uuI7v~uPұwj⩞*%FNwzѓ ΒZ|iӡLi~JeY\8#p/CDɭY4nnZ]9rh)"Kkn9R5BQe< O ]bBQ\ )B\g5#4LTm-2[*6!fۂ9_QR6 JP`wqXin6NGk>}v5Ł5{&f'wj2rsD跄Wh:0Mvs&.hژѴ*{LM(v̄%I^8| 4 bq#ެtg#:WcjBNYp&mlSÇXl,ͯ bQgǷ7(QX\4ꯛmWNòg"}":J+DiMٚ7%rʽv4^Crih%M^pd3(^)>ʑBKC軯Hɹ/]3;*!w\IW tbQ\9B\g%#ΑwA@oA,q.y|M`"XCeE4[~\NZ,q]jcelbغ/ϑB,PҮlWk1aPat9Xx{cq\.G둻Tb!dBJ,zeJXL6Bgl5mϒmmRI| ~%3-ťm۶ Hbz P!З9 X_|74bQH`qZ}s/gNcu6jO&=ZsO$!W,%訊 ojU-f|OcG:boqhQk _-$mȩ г{ BY$:9\?qP"ؖuZeJ]@,$̉`jihS|Q:{ܱ̣^y\jgME!|hλ4]oy 槞f&%H6T8Ɩ:&Z*7b+(PT.!~HLO-Mmb͆h5#pz'gӠ%XV,PӉM*$ExfbCԤceF!:FO-^nzzԳ~%Ǟ{@Pn#ѡ4lKMy![.邺>`n ǘZI @LA e_uQ 0 0`:(ŊuÙQx` smISiIKH# Ga^z"f NP ɚ`QO>tjA0-r>G07`w‡34_xo#o,oO2j\7.TnSIQ.I]ӄgS0 D7VmE6Jo;3?#[lŅuqyi?g+¡رRUîHё!iqMpK)zh&;Z\z6X3XX rI F/褴}>EX nlhIB}XH[w7@!@=+V6&c,NϘ!X|LS߈6ǿ G8I LA 8ĀEUYD$`tFQoy$.%-i"Xa|- ,z ,֘sjłk=V*_wF`Wo k4&X\"Pv6 `1\Y)^E, GlƁE)r jǃ"ObxXP_VK ,ycF.buaywvv#u{H"ֶkc@q: پ'w@ŵЬuh+ |{[x^Hsrθ& -ueIQN$hZaB"qz$b)`x{'Bџ M 34}$Vg;u0Q/>[A,&)վϩ4W C,1iZҒF,҈ŘʢX":%jX|gJ]bY,P)/4Q`afUTEosb =d%(W"Z#S-⏂Eㅼ&,fB#2҉b"g5.3gDEӺz6?qc*7/ gnoZv`l5Md7YEqFG<~J[߰N{^H˅Zuθ,~PXWNũ,P|%+V6&'3&y=7/{}*Rџ M 34ؾwq~,,H wI,|N^'*uIq2Y:K`j4b1 x\/9m/ HoT(8)bq{DYr# W GM ,!}MN# P`NtU}ZmwE;r*jXdMI XL2xbG#ÖJ eXp'?Dxl/, +;R7]KZ,);b̍o&z1!.)K9/ `Q0ҟa^ Jzoa:w5; Tqt:^()>?GК03&",$Ak63T,6EI@pF1 8 `:)W$P+7UQcУ}@vy .1iZҒF,҈Ÿʅ:@YF%!O@TuK P+,P^os6+3$pF#X?йGy?Τt1ΚKX<Zi4n٪l*TY`A5C;nE]]0GĮl9rWxh9>0ӛhi]}x?XR &ڨzhf**$k8X,T7F_ J~gMx^Xۑ3c*y]\{Xئ1KКp3&", *oձgO^ \8I@pF",,H 8C錪DFivjk8=<|3%-i"X|{zuO}]zmXd7V2X蛞iq`q.`qӯ%X8i-HWXP5~>SETr"{UσEհ `nzt ߅`Õ-/[t܋|총$Mt&Я9Zcb=\=T1s3 ,:c=5JXJ ,.šRRi&?* 1g>b_1h51!`Y5x8!l`?A` g v1}*I`g0(Ѱ%yy({,J^(~`lM\NiIKH#*&Yb3 Ϡ.h\iUeU֝ Y,@-5ŲL6ť i1a`A p4R' # lR V(h`aWWl#I`<錢D,%[ zr})*'sWl#I%QY4-iI#ib^f8nxA]Z"lexUn-Oƛyviޑ l^1FB*^yvfW&MU6uWOsW/ " W  .-&=I,DYR㓗Qi(_`1%5ÈU%}fm|`8R7ƱI ppUÑXכ̟ɴy#ChASP Ls5%JDQLRf7XOvFOA8wW7,TA=DB5A4NϘ0&=O:hvl`2L G8ԂMJp f h`N* L7σ8Xp@`tFQyza^жrt\nbk>Ml~ }~Kt,j4b12[B:|Uu]:&gX;[5O4Xiƻk3 lAqBM1)t4?]ΰ 3‚ݡu‚)}F_>}:6!ѹʼ}\ҫӎw1Q1hEFs+T@$Cm^t[c&֮c] l3^E7p'/Ri^FZ Ӱ7GZI?ײVh߲TN7n~"k^zA].¶M sjS kEHoڋdV^\t]L*,X,9IHV/N\;{N7-H.,$w-E_VՇVw3JX8w}Bj ' rxzHi%grZDuCM 3nh&J ]ko 2X.dgw[4X|`Tbo^]x2(2"N{2G+ndӨlٵntm ֟V_5u|:22i,1nMS((v/h' J =+,XsEw#k|doFPW ^c`IQ ^fRUСe&qwp/{q O_"ͦŎ@d:I{1nfס!>?D* 68iG}giofʖj򳋉\;3ھmh6m~p",8X%,DwK-H8p+|Jsx' z-D:h %~8/8;v?e!]d,4 4C𪑌?X=B3]w %xՕ#7P{l-Gwa$WXؓ 8Äl =O57a$,5(U[ݬzP>IW.WA%9b70TZuurևI,*aEi5dlƜt>0l9 h~hI徖C> sfMMP/Oz_E?;49K6y96T{[٣(d{1ZK[VFhVۖXlڣsTelcFق^4جjlA~ly&b+\9t[#',vk)oŏ*x˴܂`o7z!aCn!nl+ӂ IDATʃޢ&uX c1bcZ h~IT\!ۯ ocJI(m B͹(qnM }8a +,@byլFZ1~齷:\ {iU~1)chy>ASX c \5v׎_=RwG_6G0-bj!,8.1NhZI),@0K^lW[?3"~Ķ8]x#+cuS$,@0f&AX]H߿ގS*,ټq8j HX c`jY<~ZKW*˯WZBG?2c5j g`2X[X c2X[X c2X[X c2X[X c2X[X c2X[X c2X[X c2X[X c2X[X c2X[X cگcbY||GH@ h/4d<6 >!^͛v4UB<^*)A d,o~t[U;i .,ҾH@Xo:MchD'‚]h6tta1i4Fmh d,=UB[![#*k/-,18N9W :M#Es|rI[@n:~_oz\Lդ B:,,Fj<NX cjlwMm#I?ZwQq,aKXü`c.Glܑ]jlUjrь6Ȫ?$Xt7X5vMa&7Tj a/8qD7]2A+Wp0j<ŅZsӤCXz Xz1U$ǢZ2g.rD gݵO,p#*z]v}9NN띉Eˤv]23ޒnYBRVyy8OH،>Al$i:rQB6hM9kۦb36#>S*VYi}Gj*lIM8ޝƄ(5fO 4!ABv)Bx@' }MCdnAe,"3jooo ԝ&Phg_B/&ߚ_N:X?<)"`=dQIN',̧q,ײ O]Ef#@&x057h0]*!_{ߴiuO,u$3DnԤd}0@WD,EpKYѢ}к4ofX57FBxSS(OGl31>H,˒8@Ĝŗ7X1W%џS `B X?3GK>tj(""Z32Uw_=+EV"0y^X c180X2\:I#+ElG;P8/Jl!8f 9<߯2iCwzq+k0+h:&Ǫ)=r@I2,gz4 r2nbj/:c1+c!ETc w~I!-d7W//C!;0G& GlmmADɜ_=3cJ8vafTiWEF7 y9EiԐֆjXXbdu&Fp&Xk"E /@)vibq.۔6Pz+PӴMKoέka0&j5"eRP9*̹*j ^>VsmFoq` W)!JhZ(Z/ y'k-MӢ&RsyW , QST,r b!2Xhel­S8^,j;1h^p(j%rfr@W3f%q [=xUZ)51p6$ [#V)G"o:M,+ ` c0b"-R}AfknF';.bQ6a7;z;051`gq`7b }ɍ>PgmL[l}~@AW&^? x&{Ň}{W翰`R8f{ΎQ4'y6{e1-a2A]V6q+ {00HrΈƫ )ɳenP5rWK,&>A,) Ll/uJ\}d,E$E b8H |Xm95qӣznJ-@k*x:mxic KO} )# X:Fwk%eӦR ZkL^M?is:?{g۔Xr-4pA*"A(S > >:ꬩI0;lTRJk^Yn?KvԸNSn4I?,Cv PyEw$r*VyT??Mt^j~YTJm2UXw;xzMyH\#,@Z7q2J298"#X*~nU.Ow}"w2†NT' ͦ3Zq&E3"6Rg`Qk46C 渿_1'm粏oA0Qqɒ$%#f$ntLò>,s{usZi"<^ @n3r*XKr.xb:rCXnZ(!9a`Q|mul}K` Op"PoBsN5gCe-j8|N0,Xnm]KMjOckz2%7QZ;OΥ5H_z4nɾi,ږo⯿bnեNiW,FfBqB *sR?uG C.En^53,|Oo?Gi eb#NAEA!=9xR`V_l( 425{,PQɺ~,=ѡ% Cy5O&; n:=iRȹWC e*I-S KOI\e2 a:U&N./XtV*~}jl'ȣ`qpo,?Rr xB@%88q]޷yhWÂ}LH@&B[`] Bn?`mFuBj\BaGJV8Ud/x#$*k5rTU!aMڻ|!G%m::mFA<sCacOw-5398b1X<}Y3r,oX[Tw S'l)fa:Up0XT]{q~>=Ԣr3L9 ,N'snOыuL}4V^d9j5  w:χpW ҫGL]j>u#ݥƜRzwvXLt,08&6$%"yxc3̙`OOi?3D\}\uL #X\)gYV/ jBi:SuXo-4ٺ+#WDWn@ǮMy&KEHYt {#F ݲ=1Iӽe|`qbp|_d]`kas^C Ej٣N, "Fgk5O؊ûf<|N0,X"ݫ,Nj&{ ;78`ėg,Hvi%U%8\:N"C`q,xy]a?ɩL?jhI/4yGN&aHs12YMul>F*dO#y\q ]nbo0'U<*uKgoq=/%Vg`4.N"E9! y8Qj$>e, 'F3`q̎'um S,J,([9 D)d\tҴ3 &*z}\,4[  H;N${1Beqw_J*R K1 #-d̕`1?e`1GS| b7bT.3-dz38X`?<\Ǽ%</谹nZ' {yFI]l@ 6 , g,vEsQ?X*_s33!`q *{#G݁Bbc¸6b&|pيg RZ,YTE\qCkb(Bۛ=eG, ,P]HAyKfk*]/B.55ûtPtIł\OR!3/hH Tgk1EHւ,"!Z$YY fPb`,5guh(J:A`d2˼b90qxBK+~ANI᾵y,^}n+Murf`~)z^y1BeXFUkn% b\J,uL`a,һ=)@-PPo*xX ԃk-/X4*nbvIf%UB\yftQSI >Ou,:^*$4!ώkW넁`ёAIC'u MLuuҺcLH?K(6/ص9 Z 2#f xw1ɷ-[wuv2b2H/3i7vޯޫ|" E3 >`1χD ( EnIuC`ݘ"['=])7lxrZ#D갉W#O6ݸ5|sblxҐ"#XG3EuprovY~4_ eDz}ʺ8%ʠ\8{I>T0&yOS.&JtمRV ]8" 2&0 Wê`v\PLuz`5\( `G0b׉js:;,8w,VeП O&(VkCxVN>hRc4d`bdʎ 5{(NH&<^K \I"<`13#`QcHNLKAI|GZ,ІGOf(cHXTƾ8 eD9|_ XGqXd.nC!ȽQ{"gX ~'Qb8}HLt0Xhc|3g(' GF pVҫ=ugCbVҝ:C9jXu?ʍ׳v[ _<I ;UFL;C,9m>چZ qk;څEřԇZj\~6;RB ` +2Xə )`aP 1+mh=2L`\w>qٟ< >K3 [ ?XqocaZb:zL3\K_v^6 sX,M`!P(=-'xm *|V2Y7WS k+)'Wresblx㩗.Xb4#Xp[`a"{$ΙXs0 cv^iR ,n<^`\HfOvqg%E~(٤JC~`+Em X  %"bEN,NT #$ zYϩ3Tb2( * C9\׆ G Y:]@B ,{ɮ&iǺqHCq]ob(Bڦ 7PY*7@#&+ud; 1,q'sy!G9`!},(y3N[8:&$) ,BmbD@͛zp1Fb&xGgMaovq{"y+ϫW?#_F~O/nY>` ?X@YRoQgȷX&@,VsWW۵u2cVpnx{(j4]'[DZsCYN"4z 5|)]Gd堫:`vJdqP||*toʧ6Qɾs>dṇdh0" j[A$$*"ˎ!%`QP-8u) |5Ϛ|' 9tǾ{WH$* ٜel[,ҩEQڇ$"hl*aSJbJ};Hac: H74vHQߓҐK @iZUPRV/Ę='uEvͲcUO,$)slAcߗ5xW?2cE`125!:a,Nq.X X(˩KCt(i? 9kX+DTL ɬdX8R'+S|qC̴R!9a8c5f>Zf+rZ4}^k9\HN2 -ͮB2 އjۭ{z2E!V(C~:-<[y~V؉{(#h1A ~-Xwdf2|)BELR(}jHâ BXpY)G°/k|Ȏ?XX{Mֿ=X>"ݻ:/Y,T¾40Xp!jLcv.:EI$!*Prݹo%nmܐy\)(qu7l"7n#: |N; B}(VDR{8X7'ͼ!YYBf 2t+E^n'A]O"Kd*'Cl؀6à8 :":dv'r G.7nd.flUAڍz#j( hW\O>&bk%u'R5:ڐG#sK#,"CXВҎ픎SnYXD޳v3kF‚NXwi)\r>bexm/݃eaa6PBF4&nqjTa+}vfM",'CXp{6aae6|gQ@#ް)ȓ68dSy 2zoDk+}43$Nkv2/zvi{ĒzEE1p?O(rA4LxϖJW% F ,_VB6\92 M׍|ңߚg `&ٺS+؈u"R%Qf\xk3%,F,WUZ7UI\m,lvr;њ 7Y]rq'm.2YNò{m"qM\;m}ERVaAKirMX$I&$v'ooK89MOal.}MH>3A&,4CN-n S}$IƸ*NXҬՃڸ^d{YA2~Rj7V\?0\!6}=6"?fj.2cѣ'ڵCPjmr)RpsLK@^D}3SN$rW3D w,Npp)LAXb&‰)ʼ/5{R iШٖirhZW$h/w7,.uH-GiTzt~djǏft洏),O*W~w[f#{G# z W1e1 #'R U6- x %ݒ IPu˹9Cޠ~y:Jn69(iviӧ4 haEb}|ŠI-߈MdPyqD[+BLQz܍%@"I>tyxNT%vyp,X=@rQ_8vSF;D!?FMMv)Z^`kcJCɱ>e{iXa\)GN-[[w!:G˃-,X57woZ ~z_Iݍo؏>,eB>~@'@Xlڭ WLkIQ!,Xz%׶'Oȍ*| XXDʂ&^w0;fs~ff}yZ来CzQic"p"n W= >|Y>Q4h0&,Xc | 8p,-,Xc | 8p,-,Xc | 8p,-,Xc | 8p,-,Xc նd0 zCB6m_RXnJlnHHՔ [c՗!,X`Agw~}ULWyWBX[Xcb#D -KTq!ob],!ܲ 5us,vmTukğ+OHګTԅg|l3l'E 8p,XPv`z5>o\B/.]=D&8,h-na>TE)5ZWq~KL83Y2=&]Ob# VΑ%BHpPY uG1ķy|[{t= *߯\:x&:q0>/N&ж&PctԳ@O~z7 jfhm%(.q"GaXm_/S@=}y5hѢ-X茅-k>t949Hlw`=3x⾕`śxBLgn&(W6CX_PS֑Gr] vW~EÝ%" ȼE>0bJ߆|0lyaߝlQrqf{9fK-8a)aCHd{j#W3hp}Nߣ Q3O ,-&FF’ eAGSr8`ĩ:p:;.>Sy0ʁWk#B8/۱,,,oiu=3B-}xC,*%A#NٯXLD;jYXeUޡ UB8t2,tg56 |?N֌Q>@':c3,taﳗ=yGm_|[| < wgFW)|:WL3qEF*KՖԔ=ë D+`@4}.-SR QQH0{[h56VgZ@.x'dhP s$k<=rw}i>t5MQւ8@n"8G' sGxIq${bTxc!SE.=8MgY XLDc!{< Se/6SEVmM-:vM@,V_:7w$X茅X(d$9[A`ټvEr}Vm1x\b0,3gs`[&"Pi<[\# [ 2>dMphhc Xe8v'zBFX8oi:jb'*3~{ByLbVpQ\JCeYeM-:vQVT٫pT|sD XE@:o6h< E?⓷΋=y^ 5Yq#2Qw [ M xk"6P'Xvsf&GXxv@2!@J ddKbu7.lS\GLiEF"Z=t-!~r;N(<{ A6ĂTBi-{5Qk[I,!zE r.i%w?2q"HBSEKΣ~#NYV%$K^zX.MԢcn5X b@  9~=$U.Jbc`]z,+0pd 4i>Ģ I>((!PݙX9pq.wJba0]>C3Hd(;2YdH"ޓ/^:S1@1B04t6tE F,p]'(XD~vIBSE8Eg2x4b ;1-OzJ j5ٚZt~h&-7 -O,tBg,/;y%S8QќRmSDmkNEgL%yJP Jd!F>- TY d+_ tWM#xr VkP'J% ZSI"+D~we샲]=%ФU6{<2PlUZM*Y3ҲyŦx rO^E,XXq$C,$#N'A5~+Px4 tbqHeM-:vG["HX_Ԅ^C  tG2\Q"7g%`j("i7ldoGJ@ǭLv!ڭW=/,ɗu|w.Ջ6Ah:]3`_$ IDATKm h/j3Hq(!kGa\ж bAAgv '((kqQBQB,2M$XUĂQFf))dfgr=Rb0Ոа HMe)lc<➢Z/_0^O,X, vzPtb!q*BҘ.{p۾.E3v~˙u۳b!6CY}6w+A f. rngÇN#S$kw9ȝP uBg,G$lv8D gMv{ҏPx=]q"Tl=J; Mk ZLufo+l>.I¿  ifz-Q `.ڟ&B/F-~n p-7!I,%9r!hCM,޵D?r ,ȂlVn!^Q% >ɳI|o[w^Zg7g9p`vP_+Ļ- 䵼D3;?([> f8[,v(* ;#X-X,`a^O\zXȓG,fݧPǴ &ν%m6?M0lROX2دͦĕMX-@`5\fe9CJ 21Ҋ?#R"X%FfUY(/p:O=67긏 ݷЦ6bJlS#߇:\3A%-NT\< #1E .U2br|HﶝXi p)=Ol&<+`8+9H,& d .5 F, BŜ\/!0U4E[|{ T߅ P[G3*Vk)ԣ+$49AbLnm(>>-q| tT5 A_Z8XB؉Ԉ/Ģ9..2 uiq@Ov"Mà͖AaM@[^@r& ;quq=G6X,QT,\ B!,X$.= C,Ik܌@b!WXDwTr<"އMT&<'U蝘,;D/mQ8a.l (8 Rc8j\ ɉZ-+i<!1I7KVxгc=zkorn>Ad.:&*c>޺5h" L42W]O 1WM x>UOb@33r^v@A`bDbpib!M_f i݉5;CS;@R]g3*Cm\ybƈC LN,9x!n WP z^g䟊T|d,G1:Ҩ U*pQܿa=}yXpf!$4%uk`3ϬX4+U=>q.F0eAJ_Ar/ L/- iWyj CW8,%r yZB3o#\ ;J=Ō==d8,+o 4LU"#=t5ktӜeRL,а$YG&+dhMuYQýua4~mH,vi:1-vAص(<9fڏl*ӘHw]w/xHL,$PFG,7pg.n|*R"XX!QK!53XXobbb{P23r&L&8Uqeͭy|5+}NPmY?Ax$%6z@_m X@FI^fw۠IDbPeFjΝM-R -uvXX( H/F~,E,m4|Y3G%նbhvFݯe xlTg2/Vq+8B~+$c.&hE1;'YWY!l5Ý@b* Ef[p)-`3;5;u=h6bl0a4~mH,v!K FÅhGL]{yOgP@IuF .o݊~{/g2=XTVB) FG,#l`z2l>H,"Y,";,g ] S1b*^u;E7RK&RԇxȭX8؉B9c:Ot_O[MmfCȍwJnh,@f$Js =V}"R [s٫lyZ,b/T ImQG wb%+v~?CR>Ģ #fuJI?8&N >huna!^A,_eS]E[9s[T|d,ﲌБ7,+շzD,Zbp '߰wMIˤXmYN,,QOڬ'*<4wԌ-W` C;|ATǼYsX·H5u.rO(Ģ#l`H PV=DAh{}IhG3tQ [fww= f<6SLFJP$^B!~ keNuK+9Iy=T5qXx/k'D2w zx%kXH= G,fg3s[f¹:1Eyҫ|OyxjRKyfM\E-o;8.S.}Lj$ FI,u98M0ۈ<^Pn|D>bY,Oir,mdƁ_¿LX܋O1"٦ʛdv6'b!Uɝ{@o:@?D|R뮟NLwto5ii/oxWQ{AbE5Ţ47<)%UbXJrr܏%@>o4O Gsԗ֥&=ߓ(jxk_żV˘&⍠j5II#8GNF+ BHPԗ&Kzmһ^o93X)~?ɮ9<>3gޥ40w?~nDJ lvۦ,3CŚd%g;ž"[1?gjYmr|T뮠~:Ҹ,Y7rp"7VYS{E F[-|ͶbR]tOв`q!Ɵ`ѷM/Xgd[X g@gPv}+g 44Zx2WΔVB{s<8eNŴDBE$e g_E]3su)UͧRMx{)o;s`%Ms9U{!w?ȑE+p6`eNAF X,iƴXENrZ9~޻Ss  Ԇ4--aOd쟚e ̉Lo ']- NZ /QSb:Bv>hZTd}h4S|Z]43)_Rx{Zӝ5u~kJyB⎋#ƚR7|[kq& mvϱU@?.ygKX &q0Jw)[ڗtߊ)EHLNϨvo[eGer׾C̵~CG%SS{{"+RQP?Ū:[-A{7"FA=gဗx{]/#nu[Qv#ؚJ sϟqӬwJ:Δ>s6"4#ӬU+`ŮVջZyڔZ#Xhj-Zﭘ/XXXm+d3Z#Fr{c%H^Xla/[K{b^nR'Xh1sxûނ7hKjԙ6%v/ėgaoN]GX0wb!b좻mlj=|k nwЌnm^Eo^H/h,.YW1Nc{j-'g 44-[Njzwnoކ'^jR᝱v %xKl`d//2Ya~j`+)z|8͡x<`w2 44֗=d[1.x7b00$ňr*M Xd6hX2BE*s704XXXȅ4vkiS=AHvzrjڐ\>ƂbT,mz`I{=#ƂbT^_vg\fw p   r"   r"   r"   r"   r"   r"   r"   r"   r"   r"   r"   r"   r"   r$O=ɩwޝDr> 44}G"ի{#|;1Dɂ`/E؍!A~}9.2==jP 2N5EdCTVʇ#hwtr,L,~`AcAcRsة̴,  44A"KICE&pg=J,̰Ͷ"btxdZwo35y_ۛilo74OT\^T' ͢avZisfӹ6ͤ3f]w#1]7s՝miMQJM}jN̽W'0`n%6+ kr7XrF-QƂ"(R7\ܤ]bް; OkXe̎#[ DS&z)Ɯ,EʁJ9 29M;uX8nFk;wyu/5Ɯq5k9t?9\pߚ1Ƃ"dSX|)-nb.v_I6{,D}X)+a]Xa`a;]t궱̬gŇ|>ҴD].C_\Yp{ZksWjVjs4&?|m_㛓wYUFG  1õq0A֝cE3y9`Q?ˬUr,*v*ewņ[l1>5[9H>J [wքqßY`AcAcR%wj;lK9yo(;&͍ bt+ {/` o}IQZʾ4gk\roAf1qUda~G0bТ"/T (3lbĬ+Ǔx6;g}Z^\f3~]nH/-  A=ݿy~5Xd"*"캣!0NP\w9V_&o|C n{GͫEkfBkJqb 0A&ti6ؐ9p"[%1IœNoӊbVLjmZ*dܢE8.`?7Ƃbobf'A,ẓ>$XT}Gkwc,.[߉-}B&X=XXXU%Q&ם& %6{8DlhJiwKn:'}60c6jǫ7U{Xʝ?YQE:i=Asn)۝"'")<^b ;_g]J$  im%pf#whn\db ּQ?,,h,h,TjZL@b<ִֶ,âWEÃ!Zt1x@^ðb--K'XHJ֛"J"jRJ!Q-TUJX3:6syIӵ\?c J,%RHnGfݭo 44}f.wy\y5<¾MT71"X+R jiw'XdD )*2HV^o(W2s*#TɗղnJs/R9o44J{}[o!ҵKJ{*ݣ},ؑ K>p>#Kw1\ ]璧N̋;DBV{)/FVj6a91#vr~l"ׁ`]qv,,h,h,oY5筋Lfo=>!Poǻuo5WeeMdw|Üۯ \&OW,ݻBM,o?,h,h,u.7XF)XXXLɝTk)r,~`AcAc1-I{qR#XƂbZb֟߿N^o 44@`AcAc44@`AcAc44@`AcAc44@`AcAc44@`AcAc44@`AcAc44@`AcAc44@`AcAc44@`AcAc44@`AcAc44@`AcAc44@`AcAc44@`AcAc1LDebڇ=Ή$_y3 L,h,h,D/EW~qVvx=X;& 44= {{YUň ՊL5XXV~Ջ2DƂƢBEnWŌ? y.Dln$, IDAT~ݲ_ދ,N5X<'& 44} qLě,5^Ƃb؛l,t ܘC"=֞ұo,j0"kޤU.دۏEcP2ͬM;iϦiGsSۨ*먷B50OjIcN$MS_a(]*'̵{7󇦝{"tn4{zޔ;gFy(_sFnE|FܚDMy?k9It`=4+;EЌ!}?qrgWw3βB܉#Ggn }(wbUD"g9g|*S\KJӚO\Q ")w"?59Sӝwҗ;gB*EJ:f3,>՝$~<,h,h,TgI1VѝWeKƲNKJ~ZT Ƈu6jPy7C mg mX))F:2eshYʥhcv[Gֶ{YJ4/H=^3y+mYꘞH/X,Vmͺh󷕍?,h,h,D}6 Oќٯc,z}­e})}j(8) "w],|c,RHQY޻s79έ' rOuT"97TTJE[KbMۻYk9y~׬KޟZ]:= b|s,,2!#Qݮ9~{B! 3X ӔI[kG500l xT,0 "߶r1*g`L''ְ+-IDGNCex.ZcG"syÊEY łB!dX,`b𡚏逄7:_E:B*H_sa.^u[C7kH,~f_ho-8򟮪JgYߐX޾Q 6!BƋ3X#CwTWbC45gbգ,|N|.dM Ha7e5Xq3i<;!Bƈ3XO8XR,>_|OXɁ>F,e[rfK^xA?1b]ʱPj)0-QOmB!dD,`gZ\tX~#c-()nc2P"znz؝ ތJKBIoZvM!(s} !Bqł f,g(Z溉ϱ3g9Ƙ_aZV0^,XfBϜCbqh!B!X0c1:̦S."ڿXA͛^}K;*#1V,wʕ>=g6w S,!.X0cRDn?Z՚}.6Kn2YgEu^bA!ł f,vFr,)BR,`ƂjLBnQrEs]<>X迨ɺ%Əd` yѮBAY}k Cf,ְbXkuڮghd{8y?vo"7 l:OzB!L#X0cAH@yT"Ӏqxy8UOz5`vEQ#ΎSvNvo[ꢈρ^lV5yz=VT*BF,`Ƃe`aܵxUmZŴ^#y[% ,02tWUqqkA/ KAP. xrmݺ,ɨXB!d`Ƃ Bn+JY m^n6 b/\E5(1}ѻ-8/"nޓ KN) sֵ-'5&* z+ ͱ_B!Ă f,T"+w@֋Qv#L&Bz)b7_q u1 6Y,*B X0cAHy7yuM@X @b'qhw{ &vQ}̵S4:۫4E;?[EH7"T^%mypEԦ @,X @vo~/<)~*]qZ~62tYd= 䥡?!wBlXGG_{;^ vyz_p1Ys~w7`bkXDm  ^9ڋ,6D eO.Pkcc]b{n؞4j>M,"6bE'M5ṨsjnW?OJ_.MBqk#w1U5eWP>L;mW|Y%O"ZS H,X/1OiT=Y,1\Y'㋟x7ofL odUI&gbE 3(;3ރ2c{᪡晎_s 8B $>23 cL5V9wjdS?̹t $H,|XΘPͱR"Xpj= -H,Xxi0{fA^Z ZYl6XVmkKZj g+bT O_XKa5~ǎ!kJ;v#uPaE6k\kZjbZf?BmVX^.ׅl@,D`_z7$_0 bjJv^*LA:,;@ͱp"-:jQQvXȸAŁyUQLaìPqK%20(ca޾j9bQjy2?bQВr{;{zH7\t@bOB vd|̲j@^=V,Z,s5Nj}Us2Bdwi VŇ~,/sĢn OqZX3F]':f!gF]c{m_,X h9#D⠵yqX}u`0d`f_<̲*gNE(nWc~/nUԥ2c}3G[MΏ/vJxǼX1-э, P,o*I"eefiNĞbT ]sKu|z!'5 jB^dE *H,Xt9UC&XYR,֢N֧C E͌+`'֏ Wb% @t@bĢ+c{;0CT+(D,Բk7>E_ {Jv."7+zOf5r5&O5A,N#H,XxY۴=uUYuRGp2uMcb,h*xłܔZ`V#\*0FMA, $^B,y"0>k-'X챖Q,)چ>TX9{3¹P.ũܡ*PA, $^v %v+"zؖ;M'JX: h9mܰ%[j%r a/j N>5a)q EЖXq *+2+ pβf-'M҂m#2|?/4Ivʝl3ͯoB]d7O6up~7a,44u0Mk{\||2SOi]54YʍD{/ȳ&5{W֟?Q 8^Q4-ko,v cwǴ֟/RoZ_f*g]..mEȶ '?(U{'m^*7f|^m7k5V ‰kk;'Mxޣl,ROX{/3΁uQ]c>a,44ewq]}MHn"=O3+6X+:4(αhR٫(* 8?ÝzWX,h,h,*^Id7R+{*B9Çc=|#lW~@ 3HPS8*^ִ߯Jޱ`jPK8"_Y?HxN?J8nƂ0}h,4^iz5oO->::Qy&Vn`C_\Ӄ5'XXXWο9l'M?`۽dO `AcAcD44@`AcAcD44@`AcAcD44@`AcAcD44@`AcAcD44@`AcAcD44@`AcAcD44@`AcAcD44@`AcAcD44@`AcAcD44@`AcAcD44@`AcAcD44@`AcAcD44@`AcAcD44sdX͝~ؽ"S(0~O~u߹\ X`AcAcWV˜=  ]7%{I=" (XXX$Ι8P΍T,  f[Hkau` r x"tx`Hl?X`AcAc4VL>?~Z gmwHֶ..kVc3{'s4zoNS#x!wݶ pǶ/4ɱ>mH=Ss_2T,,Fv-߈l2?ĽbϞh%2j 44A ~ʝѪK ?q;{HFB˝'Uː5.9wKҙ`[m+;%mdݖRlĎ~y*1!Ge.5  qvItM7^K|ɬH:\\ ggkڜqf)'l,SuwKA2UaĞ"72lErڃE%9:6ojȥYIk [JK:X,;iLڭOB"Eوl2EcIqE'0Xdzzz“;upzfj}ho8XXX gBrlIk E,6s@{@#}>53`>  НѝRS/"Z|nX  MjN,t545K,ڝ?8"<["]j{)kw`>IjE]Qڞz$p][u _:q=UX̨x2ϱ8]KXP)[HoC"4x7›cfzXϨO^8ӏ\Sx yT䤟pEА$G }T 7])IZ)x`Qa"4b'tEKa8n$XHu7b|)pEPȿ%}5LOaRBlI?qO EbIhBgN$O齚zg ¼-IlXIc[8GNI#aF4HH8BQUk1;!;1҄>Izo9k3$;{X3,fcY?Yk],w7X'ql˝.>*3 D~E *T,-ij>y'shnA B?3 ,m>+~Ήa,uE6Cw*`"S܄iLBSW;9yݛlW"a.-{;ouGxˣ7$UbAbHFV.wPert\  })+G`ЖJN5܄jY9 Ɣ)冥b~/wU}vGu3 R&צL&7:k^VOw_k^&rb@Rfy:yiMSO& @̂ *#z,^8]wDȱoy Fҁ%Ia[GB}z7Ц j_,b4Cw\?=+wnZ ('Xf ʽ`rno^,FO<*+ ,XPx,^.8d߳AվH6xI?Y eGB?a*M,j޼a(X[P|QIbV]yo>*,FO{pl]o"ήuꃩz V?ɮϼkdL$X^ Sg^k-H"V~4X޳D6  *T,˴c,O -/sd^|V?wY%c #;9eq,mY $q T,XxnB# 9XPb8Ȳ%"K#T|g2YMכ ,XP\AK[O0ۉu};^OTܳԝՌ8InEvT,X,B-vA5lͫ3_\/ g]U})ÿ; cARU̩- *T,!^dREuEoPX>phL]8u{ 㿺5.8e,RΊ+['*1XPbxR>Ҕ#127 Vpjmf,+魔q`a\};1y *T,O4^/:eV;77"\Ps5, s%漅k@ *ϙsͫ/I󩵗T}pgvs f YWℯ *T,kPIMb,XP 56q T,XmEdcU/K8Dr),XPgAbg6+CRx *T,`z&[ ~ I8n:UB/ *T,r>k    R ~_bAb0=ibGOd&]^w~n-XPb1"}$if?~s7Tm4o T,X gmJǝOE6E^==̝۷"s,XP2Ք޼yYiDw .o,Jݪ_ݙ?dk|dD2v7]Bi$8Is&>l$g=|۾q/tUQd2-Wg3R8i(3d0_ZzUb(xTh5-黆zFőU7$ucݓN 3X̉Lr >Ui,~_Ov 3k}ko9Yc5T=c~̊cN,h,h, UhTpZlvMW/Xls.U0Nݙ4`a[bxWmfW?dԌ_қ]:!%O[Z6K]ݽͦe-kIp!}*lGs24>de}LU~)4XXXԌ$4x4s[elAxfp_-˫ *<o=D%b7EpX6˚{ڶmoܹ1Ig[!XXXAr,ܗ\`R۷sXdSw gE3IBŰz^NZ^Yfd($XCY&͉mo6ϕ0?_QE cͽb?ȞWͺ;)|,dC}jŻNյKRbP%ʷqD|U[T 44aS" S*6ǔHу51 n"ZDRKv8V^"r3`L>;O,h,h,J I>E~md;;ɢL=˪Xִ7|8Ƃ0E>,,0.3C:8Ƃ &D/:mkqE~kqDZG} BƒEB럾"JܳNRwoY.,nS@`AcAc"ڽnTp涭BaU OocWӊo%MOтP)XXE?/>>9]wWf^_,^hU^Ih[~8YʂŒn&ҢfOחqdBcio?XT N,h,h,n\A5{xTS8/ Ń94k9z8`+J,8yM,&_̵Vv{񂅾ɽS^ X͹hxSNҴ} SP,idƂ"5G "N7EZ_{g2 | X_W:5wN],Z˿+;Eߖsi*xv`؞((ʣE,Q`HU#P@$<眾LЛa7 uI>]ko,fg>4ܘ;$s,:Ǣ1Xle2LLLKkt]y\ʋ2 BPM:XTQF `㆟; /]nwUto9`]ҕPIZVBɪ9(X*zKD[Ẁ)'mv`^:XVY֏BP( XcQE]&;XF>(zZ5ajvTIՙ7-^"k) (2H)7F¼N([N5"JT*e'ֵxz BP̀:XT$a!XjE6U꬯?T.M3uoD b~ҷySyKU"S0MgF&^:0:w iUXE3`dXT 5og"3ڽ=;nٔ~o;~ilØꅼŌZ~sGtwh|b` pmg[tD""MUХajž=cOA o1MO| Rnر`@jp( B t,бp!@lxdd} XPX MkoUA4J)ώx6i.f,#4G">b>!bxv8v-f D)tS WnNLN BX/a㖿=4GXxa= ф>XN'֞eZ/; N` 7ǂ-$g BPM:X-qU{? p%a wO:b/hC9ܴEDE$:9XW4/OYW?tٸe F[70ʝ z;)XJ^ u.\!z-9Ȣ:XXd8%,4ǂݰľf( B5XcԦ}s@,@,z ͅΡ@3X@s!?:*`f+x+ 5 01^,\xk.q[+4X kI.UͤD%U8rX gMŚ~Wkoq,̌;6"~TP( XcSa(;$ 7c0J(@`)ywH gp#AE`oe(_ ۯ* X,۫c{SF&X\ڄDJe^,H(:O^Z ,:X>}{evL)W{gB6Uܤ<-Ow~DŽ{gʣϯ'h0vN)բ,j.9t ;tk􇼼-}V*{^,(LF“aN BP͂:XX; GC꾬p) yzg@?kc@ ,`*XIxKKZ;zj\ ց :²v*Zl!V&K7=.&u(=1uM.+Js`a=;yYR*TЗp\ك&M 44 is5m䟗CYD5U.5zfGU;]Wf]R zWz<x"_}44WrߑK\ɸ\j>GMzR߳--k @Ƃ⊌'mZQd/w 7kF]uVЍ/\ g  +є%Rb,Z_-,h,h,J-2wكPȫ -slN 44W%=\[uϤUd߀ϱIƂ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,Ƃ,h,h,$2W|[& @  zұX`qoh`AcAcQOH_bAzwvwC_zKoX-/%7,h,h,HB _  :$}!"^,sEܷdڰoqܭ⟹vn<;[vch`AcAcqqDzѭHb,6&3N97XR]L*u6_RR+sԢ(=Zܒ؇j^3Yȥxvχ$ҁCvƙXiݽHa^ߖJþޔez'Dz.2FÅ-ԼH"_f;s#mDʻbd'Z/қw vnd23p"M,h,h,:ܜ5)ۥh^S0}y,:DvDcf3fQY?#v,N{֢<9ML!rLFKIs|&وYn-o?VmIɨu߻8]-'$Ƃ⬼\xdw824>7Xճ:s]$tFd]oգWgVԨ`1!lltRm\wŏCxhFoݣ13y鋦orLtu{SSRD%r}m*/C&X|je>!2NWc*JayOdDzvELi_կ]M/$2<*Gh",h,h,QԹ?It&Xu 5bؔS/X@Qbe%^ٰ rݬH f*(_vL6`ٯd(\F"22t,uPs27ѭƢ5DjQe>Y f-ܙY#ϝ@  3~a}~MN),`1k[և`1eyGY3u:Xtll'=-_𞱗Ч#mK =#&X$뺯tow"yF_!q[T3 `1t\`o z_GseS[dSNՖvFںh`AcAcQ5#1Q{H[)2#q˚-_İ;P2nx'&edzA5LǪd&G"!s2ck@ $,8HKɥ= ̜^t꛺YSmЊ4xCVLs.n*K>8[A-}Udj"C5On<\F,+lz+CU+uᯞ/PX|d ~=Eƨ2;ܻђC'5ɊSK{}0 X`Ģ_]Ι$LJ 0¢XHÅE(Ow&?e-aNfS^rwhIr*ZZ@4/]՞q wjbV%oPpwiN8u-߱|-G1BXtgsQwuw%6Ëg:GkӤu=ƦtXNVNY2=LOHcgcG,RyזpI2",Z ma X 7;;/^;?qAe#ڇ_‚rxy?h|1^H7>'DˣaqLOT(ȼX@m>!!tqs*LN֖t0+ۑsТUcs-j%EȺMGʭ{F+ 9h` VNh!$5j Y)Bֆ#iS"$ ƾU(W Ujq OՏABm7yv6Fߤ^k4w疞*`=,jRoƎb]]Ρ)'5ۙLRm7rSiajRn!BhA4iݝ :Qf" {?jG􄴛:hfYZ%̚_/*UB$pAMYCqrh@4#U X`8/;>kv8)MіzkYQ?տAfjB` 4 {͟eQAf´UGk1)59lLtGGXfhy8>j-w^!eGtk3gi;b6 s{h9}C0!_ $Yhx~c &mJ ԭFѢbQJ]ZU*]ǹ62:)VK_YP}A0Ρ)ZL톛AKMywiϹKjJ~ u&*E?YknvOaF6Xōi=yW36nѾ#dnCLP2 \p8GNU s!k>y_|DƋ/faР?sx]ChZX.թAX4Q7Laū.wT Pnz"A߸a+/6-ZP[͊">s3 3 Ի[09Rni΢_uLweW&gweaskjwԔ`5@ H"ǂ"ֵ*{)BL"e?mU7k_9g?\XV/kNHj,CnLkNNLXf6"c43|[;5hϯ/.”t)352[|>p,n,㞉y {z-I[|Ea`ϙ}Ce2lGo"40DoTՉ< 'PĶ8Dvbu&'X|';o*yCw4G{gN24tԖJ_?{ 1WtA]=N(c)XTqO;N¥]Dú∉c;^˝HX {sce4'Qmj Gvsny 6 G PԧVQU7wiUur pKgWX<*N)2c11uR?ȾptwGjF)yG4*+<r5< q+;1!cqXf{rh?#X`{AۖՈQg,|› _<:TŻLmj_dAxeh`$Bj6SZ )Bt(!T(mX?/.⌭Z[G5#]54)^\y򔯚6Q} K*Q5e@-] *.`ξ-Pꓫ#XM kP1:}Kꁃ82Ϯ(.Pk{s `a_ 8\rݍCgq+4IAwEuUT|D'X\!.D*{ E98l}(>$۠8R+C7o7 >c3##]yx C)د<8% ̋amR ,ܚ: C'U':"H ;DY="S% F$XGdctg  o,Rw.~]jA,[xndm1</ӂEAiq+ JAۉ[;' r ,r1*vHJUMk&X)ո֦mg, T| IDAT16e4}Kh'4`qN뒫 z艼V;X',w!`a+8hKI`fAwg:: i3,JFnV drpksԧ+yy "XP,~M '  )4c$ a@>BPpzzRȦE?CB|e!ZT!ɎW q۾:iSkg^x)Yr`ArjN֤~vFEn{I+6{ ᒃCҾ8hq-;XY, NNtEp]X3ې%vApDzcRƝ͛X7oxw*w==Aګ`7kD j`q6"7߼F#Mٻd,re4\tg}*Yu /BCetdcmQ  gFk3J6^&=YbTu^69P %fX~NskRW?Bx6=쿋mj,xpKk ;ca ѸoWX8f=tRw"kg,DhEkCH"p ,#j yY "X GO٭P_i`l9r~[}bgZ[F} FZ݈mED &Xj#3FXٲǍF`EER.#ԟ: \KU61XM%cX #wVtѤ]!rI1p!yG=q`" AXq+1CK'`\,.Yj&m`INwyg,|›tzfT,^ lxCOqqqbx+lj fn;_ZƂy<0&_&YGU\&\d r#< eA5j{5CS`*Qn4ib?B < KZ ᒃؠngP֠gUnoQ X:): X`esҤx,`ԭPR MۍX7ogjKyS r4?l)8W4!uW]<WĒ?Sp"%CmI.{? tޕ&6jyiR_R8 kP~ySSN84\oaŰ-že>^^se VQ+%J&+D.KƷ ;iMn񠖤M +8J:\r]@24Fv 迨w]fBSlT4֯ 0 `!`ឥbX /ulmP`a;Q)&rכ7oXXx`,O=2gK?CN`5Ac8X4FHbɩDsOwbX+ v( B2i).iY%@C$ @B0@ˡ|TVpf{BJ+uՋzޝ?7+wUk̘{25szwB$Ζ*aѬRZsa#,_fxz;ooԚŢWR)J);ȓ ,ܸʸ R7t$ޅg.ZHBJ;9AUS o~5i`?OX;ke /Zb ef!w;His0#?&?4r Ƒ5c+4 |dxH# щP|GiaMlf24;o cc=L؛{YZ5ܠc@X|߿#|/fYu& Uw3VF9_'H+T`%ȼ9lo4jg9g5g1e@ŷ0H̱Y?2 1)[|pX(O>{Y?)lq7ISXгLl"kW~aiL*J=gBNn\eMR;%-{ڊwN}GlRZثDyqՙ/?_gٍ&Dzva2?U),丄bwseYdzyF>}ejT*]T6YW8p,VXmocmJKXW^i9{UȪQ1(2ީj:FHؑcOvq˺ T[JbadX_x4&΋ˏyͬ#a J¢h]daU[kGy|b;m1s`I/Eb}g k{z/a!$ǽKbw3`o"1iVK>WFu eZ6l!GiȏNNdƺc!¢Vdf@oY/Ј7L n_maHBLPˊV4^,&na[Zxft9J|yNT3^V.ϻ;ŗ5*S־5FVrm/SCv 7]/tqqJb-I]wW*` bw)xv$cM+)Ϸc5iP?WXؕX{ᔍ'<:륗ϾbHGXko,7߇yhKV\fwW an iHNNܛ;(!,mKcM.3ꑹQ>"/b#G tp,Xp_Z+˞6;ReX{E$LIV]fy,%}@dž+۪*V/=.+010RvPpZNC*v`?f]g1Ͻ 7\W$G 6O/X՚۹pɬafBi :Q?Tz#ZI4}?\)+ܮx/@ʕ (?Ǎ U==$},°#m|c ;zDlRk - 8p, w%,Z,O/DEa!txCcާRX 12kve{#7v(',V42\SXc@?RaJk 9|p"/#J*Q#ۭDٕxd~bv zz 8p,Q~DapMaᄟ" #, ~`] z( ',‚< a0a_חʬA@XD(,VS浄E&iD :K ] 8p,GXP_;<Ja>ȂAEl; ',> nIau@^ņ m5YPXĊk W?{4bIpW !tu8"Mt=p"IXC{~Ӻ'`9رذ7ngaa;;p,X`r-u-ٯr7),܎)zWΈBV]Q(j`a!q)7 [D){zc9!:R{%%Gі@9{ `aF&?su.B!Bm)~Wane4{wBBӛ,.y0Q{~w}.GiqWs7; % |˰5k 6(ƵP}jS2X@I!G,2^mwe-];M68O'gy!5 #e/WE#Ř5{yG%*c6Einef$AɐJ0O? p9mڴ  Ц_σA*~Y<Ʀm[$lE@WU 3ƶ}8Ni"<2M5=`۰m- OsEM(X46Ra`Fݒ,ym)oᶚ}iWO|eJ͵  ӶTn_W#Р_w##GK </A/;_.̛O+M@1Q$ܭpS _x샶έw %`C8ƗrBœi/ ޳KTDm_i$dh {Q$}a?, `"Rf$h' `̏+?< .yr81yl6#y3gGԯ"C) M?:b#4X$n;KSo:ȺZ,x5 "U3WB'&n[h;n/Ѹ-]IJjy 4C,F=6Ahzg1a ߜf5[ Vb; nWjL79]PK>z%rCV!Р/I[9E"XXW{#T'yXE1|fU=/\9 *w(X!Ea=/Ad%*> h=1Qgç<;Tf~Q>kglC~2X\뎛x[c9tE|L6͑=>Kguz넁EbmFN:m\,͖3M?:b#4Xxu}cܱ<',p Bq/#rh?'U7MFMI %":`ql<y  ,N4ߌ1 X,V:ː9`u2XPđG*'ų;M ZkݤD~}F:aه>զWeZ {w_}i[pz꘨ͳSFpYnHf~iq }a? *죰m0Ab#og+ןyؐm. rJ՘Ⱦ;bvڴiBG,tB 5yJQMO&oqW4U]z4zJ &`EC~%7͊R:10,,5O(R s )Y.dHPMv)dS\mLYL/%,Oߧarz.'tΥŢE^9WQ8wǷba=Yoմ]b:e8g)٥nܶjvWr͵MX^({jv,W@yAvO˵#mWO +,$wXMS ~C'7̢-bJO cxb2b f|0`a_Ǚ&ُƅ&'ky¨ BƂU$c9X'Pƿnj=X E EVk2#&'|WoO>*,SQ/(wcS,|~ ;caUlĢn[,{gE:挆y2X_,.ɡo'݅53Jw6߳`, `5Dp+"i1>[bX+%#"i+.z-xֱ~4oYłFܼԳY~rYizg:"TbA=bN'jAM;X1sj KTD9ܢ܍;wEZ{WsW`X́Їc{%1 )nn oMeHbtgATC< d,/Lg.H+0/Gd\տw?c.{$ HiI E,f"xF/Ģc;baj|tBb6X, HHVH^ATaX]2r^hNݝωiPճdI\;1AHU8͇'{oU.Kmڡb!w}j{yKTD9+gǖ+-G,Ţi-{Z#{X% {;FcG9^ j'S}N2g(X c ~A]KH KV+";cGƏTƻΘ l=Io+ɱ1ck:t(4nYyy] J߇[7\WE,|nXDNX~l!g&ߒ"Ǽii^ST%>TbڷI,Ԧ*~k1fNi{>Q/^,~Aݕb 6g+93D-;qo4f皏V˸B,!VXd +x@ E# _Ͽ=d: 4硝u&˥6!m4.iEGP)o%%;!j LbbXaX(0yX(LbbXaX(0yX(LbbXaX(0yX(LbbXaX(0yX(LbbXaX(0yX(LbbXpynX(׾+,  °_Y bX\ aP,        °BBBBP,0,0,@P,0,@P,0,@P,@P, P, 0, P, 0, P, 0,0,P,       ){ΰB%f7X(`X͛ X(`XhX8   0(aa°B X(`XX\7[  7X(E^=],.mabqXQ9^yx~o7(χ6u|]ٰP,@P,E"=|}<̲m,:/!Iy/tg~t(X(p=bDVB1,eDގ,ݏNai/'C_,pP,@P,jš*_eQG=t byEٌâQUH"}@BkU@5/ ir"Mƫ&ʈ(}t?vKQ?;+bb2,!P$j|pX̦'oq ؔxUP,@P,:E`qȆ ,>6, xp(X(p"-8XG X|lX6W(\Dx*Tէ:|n (X(p"'ĻQD1aq1fvX(\H f[_kyrEͩs(bb9,V/NWl>V}{9/^(\ͰH=j<~z;2yD$ U~NNnkpwwXbXaETE2NqעJƆ䒋PE~uX,pںbb?{X$i^u3f9]f>]iˋbwm/v+(LIn6^gM߾s(X(pUP,@P,P,@P,(wOXbXabq̰BnΌ6BNј!7 nmX, ,ba5㐷߅67zJE4˪lt0,fͥdɅ ,baQQD7ߔ%(H ^wMwu+[a XX,EH'6 El(T ©P^LX)pu/w?m@X MWE5*^DX\bi]#1 8mE7k aez0 _9pX,,bz2X ϗ_6'MM$Qˬ&ek\, ~r XX,ŦoeYeB8XDqQ>\9"lo`Xs E;NHho'dy>hy|9Q*" ~|`Xs }}/F?8zۯ{'[a ˿X,,h|.{j+}m߯~P@XX,,piwQQqYsTGW"kMv[E:?aW9UgAݕЌat[baX ,>qX_l/ȻZB e\?"ohHk5$8" +'@X ,, b1CYĦ7aQeRk߸MX]q]^]lQX,, űbģ alha|0,nvstO({Em|G  aEӽV[ YhY,nHO~ݝTj}@XX,,Tiw(mX_dMt0,/E{G >q>_wBU9Gq,+a 5,NQX]2,Bj4ePݤn>~X{U{[l>Q ,baE}Swaw;2#fϱl.,Ţ ]|EyO8y0YaaXq¢l{ a1K7/eOFm̦4d/C$%eYmr3LOץU6,&jX*_ws,a +,rXVwlmâEl?{bTd{iioXDPO/? Maz , 8B`aXX,/W7  Dq7sb65qf;"푧E|GvBGű#;)iN,R':=CjSx8VMNK ޷*"s6vKwTŖnq]}Z(EEx"vɷYS2>ĝKxݲz-K]Az}š9>1(bTrǬCIj F }P=N^Al)uJ_C u =ezNhͤ|#Ysu}qeDnܮ6E7zWdT?O/ X;5XбbRs?#jl-{އGurkV`ze-=SC_ +; wT|"+1'Nǡi]uc3X-'t%籗A#Quwd]U0[)Y _c f&ɍz\w3[[Ca\!=’,矰"}[N?wB!NX3wj碹bŻ +ǬCIn'G=QҦA>}EO[U7ԏNuZSzdpD?of'U|C1&3Ͽ |O(t,X`a#UgU)'&bU}yU؍5ȻS UdSG"OC 2v˵ ?x"6U˕]'zv Ent,X`~=2^mHǹzِmKQш/|"Xoor@?(g)|UETsKb{XY>Tx7"m"[źy ^촽zc1tZleeqA=Q!-zEtE<|lUu&tDw,"ĦIWعҬinmVK73FQ&,1B2B%8BBYFB5RwY4-8Ν9wqE$f3ws33=U!w:=ܽgtƺIi4&k,mzC&ܤW54`OCܱ_!bB=@Q4H(,"/Kl p/}`A"oPI0gz-ԙ3_RD6 b[(]PB́GQktЉ|)'`#Xb&X|"2Rp 9N=#r8Oc Py?-ʆR*{2x&b4i66+W"jGuq$u^?ەc”+l 1FMly`!uw%,"א0c; S(_0qs I.jEO{y t1J%,,9jA]34`AF8,K#t6kYl/xh#,/˜Q.8 `A"\vrn b" &W_X,\pB$:Ɏ\_OVi[HB >zu1m\*K s!x{ |\ߜ%TՖ(ZR=eЫckXSLJttJ#J)zX~Z"| 30x?ۆN?i%ԯ({? nko,bv ؑ*4`a XKzX`VO^<{A^āE x{rP6 pXD#g^S(RrΜ9S`!*w,\™8(O .6,\^ Ĥ&]Y!6 C(nX az[O +1I(,2co\K 4gW7 .Ƈr@zI CVvo@ӣ|B=Qi''T,,9KYC I"ЮJH,>_Wx-COB(yySOj ,G;p̙ Wp gΆ Ogu3!ō3+YO#0"'O,{Zq`q~F]b~NaF긤H{.1l_NEx),`AÌ$Хbd:l0XP)>wOp!baY C Z$/j#ǃ,k[5_,H;9p̙ wb/?0{,~ *ۮk8s` -.1sauu*,yCrH[` Z ,vAz+)i6~Ϙ\ l\ǡNI uc89",`AÌ$[,YWWW%X:3u,s.W9mRE|R=`5,``ג)Xb 9w-y$X5,9sf>x;X/? \™`y ~Xe=3b)i\GRG˾EN, z-@/VLEIQx}[AqaEWB$E%$B> X0:I5iIJr"Q9GLݧ ܙpj+`O``a E XeR4k-(}-ך:X,HMX8s,bn Wpl*)JH1Q 3L3|jB0X\z5&`,P%@߳ol.L K\K'LdRg fl'n&tEYK(5aS}r[tF H``a Xbrh7,xwJkX|֍} ") Hd#-Μ93⋭X|3\Bd*X&2Eؿ]Bgr8(EIrD:LnQ\,; yk̤`q$xH9=;˚"914N"at)]`Aݧ LwT,X!ͮP%eK1.Fr<%1. yEXlс3gLCV,ןr[(Wp6(SR̔DH >(7z"Mϱx,μ멁@uP#`q.Li6~h uK«`GƤ< }4ޗŋ55>1b4NR6V׋/4X`Q|Ӏy|"T){QY σ,FCӀt5* f;"O,x;yY)B(gA1.@ ;^]:s΃X/,\™t`VB щ|ۜpWpA`ґ߲,Sb16'C͒KI93?ynTmlL(+X9[zϫ\ :q.YL%"׌bJՔ/e~ot8mU],z3gw,ŝ Wp,XL7LSM]8` Ij&'yɢ1@ uv7{U),z#Z~FݶUD:=l=F+ˏ+劚 4u,ٝFi9M{1}Yڇ}楴а^ 3 QM`$,hrmAr ԭ38gc{xd&f|'JuL7 #|O~MndB,Fݖ3m},ܤөCvTm7Yc ]M嬃ZxUoŋ5XȷՕ-y5AgΜ%=T?{w[uq\" ^\R|`'צ:` jfs^˜VR!qD@(J̦Yw]9gͽsL^u\O3+ů`;qh`W, Xԛ Ϳ?|a?Ř}q5,jcՓS92Xj3l~ܧj_>=24+\~<~ XxOKg7Yj~wOzl⮺$vOuE$Z|rEM#Njttс{B/BJeg`Q癥&_ y!CSS`T!ԏӾo7f=Wa7KFv7>~9nd5&؝Nu_㭇z:g8[<5瞝]f3|t=[[yL[ S¿ɫs3ϭ!3s&_%ճ'bdN~77b利࿎LX EHoY5ERE7P2S9 CyJY J,76XP?!?OfM"+`7Y m,GP?~Oͣ,ҡP]j?8WZ+]T,e3+/> vŢ*o,m,5>x,VXBQ,,<` r>k6G(.}4Xgv+ bG ,*Uh` k`џtvU,8@@j"VX -,PUdhZ[5XfEX޴ɂ xW dͶvؠ 0XPj(T 67Xt=fŢ`ᬱbONtE[2Oޠ-hA^c-_e-,  `aNY$ɂ,5mOh` ٍٽj,Yp4`!5{ixkr$Z k= եBq4`ѭo(Ƣn!b@ *@`-]5beu Bw(7Xk`,DF1jOX(,*P{Pw{o?^EھVح-F")Yp4`,P(,b,: q/KYxf-XȱPդdE\ -Xl  ֆ~m %,8@@-b^mEg?^+X>sdjoBk,T,:"XVonB P,Pok2 c,rzUŢRh9Cm`!/K, X(}6G YEPbEΆPm,Cx+1XcTH 0X{PE5)EyLE6ؽ=HBŠbaO-wPff,8@Ho0ͮ;mvɂ6pV mIXpެ,mٻ]$XEz_` =bg,۲ɂ bhb'XŲl?Xc~##NZrE9uua,E,Pի+&bM0vŢ:8kÃ33 u~nַdk Z-`M0BZE֊:W,z+t0'#f*<6wc+B5ئXX0Pi}](ٲ8i$faE.T0 |`rYcc +܂Oq<=NBMZApgY,ԋa=W,b j.Zd->}p7Y*UZasݯ цܚ,ج:hbKb\pw)eCdQ70Z r.tb_i7Q\*YŢ+A(sJ#P%,T޲d1Y,Xf!"X5~p%VZ1 +Aqb6uhn7&+w'-B=Pe}lY1 mE-jᲅ*>%勧 U+tzŸ_ `W$ԃ)PXtBmO,9,[xq6?=޳"mZl^Ӆ1%C3NT>^{i V\+ Ua1)XX;b"]fHeYfaZ^naҌO+C5Ţ *W^Q,ތ> gXA;HSC8¯Yt&[hpmPBcbjB, ,R X [PdQsTrV1$";_+\T8Y^OX~u3 UnXw gL0[2= eũx-\(btE_+6-kXU#W^aBPц MBXpb|~[(koig!Pe"fzNj !bXPaJ׊FH,m #ٲ.ofT-0g7|6REiAT+$W +^9(y?y*Z,I.$0E *^kе"劷U'8R/XE`s^ۮXB%Yu$ f_EjaX)>Z*(?"Wmk|ukZh݄jjE,02 ,q(EU-ucL UP" ^1[++ `QXXΦYJEz;ZeF}cHS,N]("'im[ Y^X4&ZfZ,I2T2GgshQEZ„ g|XW&:XEP+$W^/+ #=1XXLLatsV/pf!%ZBwr1A56A*VajUЋgy,T,[ܿ^xjE*faŸh^"&iW0_I:>kZrE~m;Tjʜ]'XܯOBݙXg' 3 3{9Zfql˓g-nQk-q"Ei9s?gh B`[w-,ԾE;Y<3fEEh1D U-l#_-D%9VZQ+z*ӛۭ`qϼ~bb׷"=ofQ7-]lE.&Ɖ¦+V'C(m^ܖG"Z PUp'gk8P,hEK.j$PQR< U+B-nЧf}bKBEd,(ҲE[257k.UX! ^a"Y#`b C~(faEVC^l&$TRaZEV\sPvmE0޲8Yb)4Gqd-M1l6JKб$ Aչ"ZE(,ް؈OlN,Pfbl/4ThE٢|nE[-nˊ)E*T(CP*WTcPyEf?&uh CfLChQ6-Ztp %-[8E*UXQA ZsEzd{Eg -$4 UY,Yyy[ɉ-n k`e” *rr񊳡W {jj-Hja/E,fa7-BD㊮j\ym%TXP"VFh{E'X[~7b[bm"Rs-[:ʅ69-EJjuTVqtj mX ;ٽ)PzB5g-ȗgUHBw J1jeQPJPB+jx{^07,D,VE< ơ8"wW,NTuՈ&N !U (+j(9Wdػ[p,2? 5lp'Yȋ.f35U2l7 HR[Ċs=U2ȃP"Ԅ`',-f0f1 uj0:ZjEgh`t86ʥMB׊:W1rJ{},^ŢurvUY-l(Bu B1nZ)JBZ+Lpu Xyjv'b[0 嚅y[EʏZH$.Q`t".,f,үC'Qiqɬ.,4_"""" NjUN\V_r]q,eao?-p]ZDH7QOhf$̞Bl* κBB+mP;۝YPwZȭEZ\dQn?Z'劯Zz[q_WgP^Wt<~,CePC/,EOvEDDDD. &"°l+6W|+!T O>-En g}Q[b)(3Eph<:_W, n}"B¾&OA*L¨ Bۮhya}b[Zp-B""`tDDDDDGi.]'dXOeb j}m\m_xuQXlP晅Ye^ZY[\(]$_`5Qcj4EBYVm\W|mg {u, < *h!-V[8bEFF(TC4(RMbUE s+9:ceZ -m!qbEEf DDDDDppS5)S$TZXgf:ſ7&pi!/<\,XyaRhO)mPEAYVdH hEg~=6HK "JBBC """"SNۨ*H!PT!n\V3+  h{fB,-{(C e MDDDDDgO1nê4ATaEv%5Ws`Q}' ;E[H[lHQoH3ՒT* """"9Rf#_?XQYW4,dJJ9/(h))6ThdE+FNE,*--,..$// """":>g@b3FVEٳ >E£^[[о91z(`ˆ"7UZV_W늱_ e.-""BF34ͤft}bEU\q{ThE-[\d(#> """"0V泪d߅bE+ &YDK6ZlPp1DDDDDp@MbSE+uŐ+1T, -6[8P( #> """"1W;9*VUVr,ʰE-:0|1DDDDDcE!M!T6PE]8XYd/-BZ8{ ˋ0: """9e>7Eb+nk΢ei±ąօ狹 """"+ e\+WWa1*-<[(\X]TM- G1+fⱰ躆 dB Z02h'%PhS$T8hcŨ+notg---muHhp z3o*+uuv^CK"-"\] """"=DMᡢ8};1Z0xQ#Fg| DDDD4qUo.NJΝO ..` """"AaLUEȊ>W\;YhZ(e閈QU!Y`kgQE-[5> """":`#:Yq+nk¢J"EƋ@h?$PhR(TYbSiB"E%dM!Q\%Zиq4&8"5BE+*8; #xkQc*/]%RdYQVtv8,BE. """S-ЪЬ+b?- Q.B` """"y@ ʊ*,Yt"Å0@FPxm^V\aQū,Z!bWEƊEVNE.b`+ """"yA*jYW\-hZ[du af4:*r """"`,N;lE ADDDD4%PP͋S """"gC5"E1v?"""":v ]w,nE jQ8DDDDD'pW\;h0A~v;taXiQU .E/C^MQY!,@XDE1./ v^o(GY!,"-qQ̋FaD<$EgT$ a"-*qQȸ>7z? aBX ,E+/څ15 ":{?)Ua1.}17wfЮ<򸏼BX aHV}i1.`̊]1}3ح$.BX ,2ŵx/ a!,BX \mj GP a!,BX<ؕ@X aBX ,@X a; *BXBX , a aBX ,:8  a@X qIDAT, , a@X@X , aa@X , ~uAiIENDB`mkdocs-material-9.6.4/docs/assets/screenshots/versioning.png000066400000000000000000003703461475306445600243240ustar00rootroot00000000000000PNG  IHDR XlXPLTEGpL?R!!!/GHINXRS_[b`e]ݜ? IDATxArHal^숾,eS%e2URVT:?^>իlW a!,a!,@X Ҫx i a!,BX ,@X a!,BX ,ĄcDa!,@X BX ,EhW}-6@X aBX ,pBX ,aqڨPPY1ǯk.VRa!,@X,)ń z}!,beaQ#)XfZF^ aa!,VŘT j aUQ3g̩Q/-BXL%M1>&})%}1>.@XܰM!$XShKKٺb?Li1uY,3+GŸpX\dEn\,1-9nA GEAPL`N^y %,bkPCQU'Y}1UcXܠꝲ4b-ƌ-UT yi[TZ,#,ˊ,=:⸴XBXQOީ:#]xi1YW⨦w@YKW/A%4)lZEBf]9FENP>XF.b -jYxS儿E-GtE$+UHC ՛>4y1Ѵ(+E+"++F&? fϐLeY޼ݸHW`Ynqeny3*tUDb8(*sVoЈE0.BmQefbTV"I2/mqLZ6yYvޔ@\dh+,R]WVE((T_Т,s(+Uk SbMHEVZ,6]ϊ@U$B!~$"ѴXރ*Wt_$.X:#VȡEaCYяDRڎD^"7-fq󊁬*"M1MH\zӄF.s̴Xb~EvWfE<*I!h7Fy`ZEa튬DE:(*$n[ѴSͅENWdE*I!h5Fym((bԂE+oA37E'+`DhsPZtC(SEvW+㊃*M19M5G/u[Ӣ3X,"UщPRdG8E0.cDZ-Z wEfV"GkVveyiSˢHvtWW "E -be:,c,]Ɋ8U"?'3Byщ^[bҶ(Tdm;{Ê[zu# .cY4yEYW<͗s74?ӇۧSET+?o8*6|?Tx⸙Im0lmka1+\a`d3bDW<+Ͻi}e1Xd ,|%e1ndq(5?Ou4 |?-Bס."+ۭnɲ8yX~"`ѹ՛Wl68ކ=,Nّ_(튝v#ˢk =NX@IXvPc,Z dWW+v G]VgY\t}ƚE;g7Ebbm+>Cݳo=4ϲE|ba1+.A+axᘧ,>ge1yXl68ËPyϮH׻șY]zLf( @W\z>z,F\;,d ,Ba+aqOqO?msY,kdfްܰ튽yطo{Z,ˢdbڰ܄*w/=qwDž!+aJ~59vѕ}%,c&+ @H#YHEc5HbΙs{9cglbGDZ<:r,vs@baJo,>P Ӷl{y9 l rC%pE5 ub,^>X,sI'X,\m'ik82G^zO?, ~(aIe#+}' a3d,*ݲ#X  J J$*+Y|ZZ|0,z,\1˫&$XkcŘJ.XPE7W,*BLPd>eDrHYnBimjZd5CY%)Y 4X{n7,,bbE֬0f,YoYƷ,*,Pe^ r Ud^p,Uz#, PٲEbLw,\qWwOIJb1b k'`@`7C5% g/Tm#ڮYE+@`'J%ۥ,̝PUB#Խ^ =ʼr*`Xb\7B ,VEK e,YLh% i"`1b y"R܎Vx5s+Y3T:-,`q X8`QlVr,F(P-X% {/ml* ,₅JsI36-KYǷ`aY1X|$XvBM `T si5ea8+~ 1WruBM7,E++X,*"+YE~b uKK! Y0a8YS[SaN(`1Nn,,f咅o/Pj6kv]` NX$ Zؐ% W/TH tB/X,EPOY|V 5`X)ei/ 5`^(5NXkڔq  fDpr,:bWM{/ԀŸi'Ԅo"n"XՂE W0텲\( #4aJUeBvJ K'2ZΎn^ Nd^B-PZ1b1Z*+XG P-XHSKB 5Z Y E:R,y5EbENYCI(Fk#mmt{u`T ;m^bȢ&o,n3XXguRXԗN a'@'XDQ,,nFBm(Pmvc)T,e;8({ d>7!߾~՛v_wvO|(nQ;K7B8~~_?vp~ϫwO.`qΥq, kW0 MAfw3LCE[8[?E;mAFȎ-#˻T(H>-8W(d]'ut^ahgaQW7tayn$OX*ˋ\\5Zxf,Mi0 %>팶GshJwۣߌ rVoEq{< qm}UE "D !+ƕ.+d$ #Ԧ7f\SMM[/@YOsf>S(:ڒ6 n, J X!O;NC:b钟y%z t5MsN z{c"ځEE^BXdXTݦ)& j[Aw\UX"Dg ?]E+ێ EָE zMfj*i :Q˂ه ~S`LW0V:uͬ> 9fR,l͘E?3 r ,$O6Pon-]HdR9Wt!tXةCp5 m\|(H%IղS, ,, B.wIZ֖Bd B.- ]E+@@-j뒄l3n9Xl V:"m`nX:yBs:JU`EZ; @9ǔ@PDKžȰ!7ҪT92UfM,Br ,6T1`S XFfPiءřX$Bem^l(\JLGUb׳&!BX<4 !a Vq+&W_˶ }?(%clv,h, ͸RˆؠObX hRZ >U%Gj0ʬ\p3Rn,X؀2=A=kh:D϶;g,wo ;YdNכ dQ]v  {`(,k)6Q`{u|Dd8LEa-!BT F@!=vK>6umv {+Hˮ7.&ɪƒ&$#P0[֔#LJBkG̫ K /4`nIqc"ɂgo"UI`QbI3k Wu3';eYfPSab)"D!x녷KÆTCDCpcGƾU4 J GR.HD「>oXOF&2%u"FX2)3̀  `Qdǒz,;o "bBVʃl\`y뛛^Π,22b$D`qWdd~\ܷWW4<;X}>{|G`-4]z>I`1#™J"r \Jxמc+Q޼r!A1X :|2j#bJIƑfGEE,,~aX6Kr1Xb@,&Z]D`pzn;#}%`vݩ5Y&rJnĢ(Dș}n9C޿z8MZ 4T! m&־#aO 7I53`w2:_,3\7OzNΜOD[ٷ _\K,9X>Po,g,=[m6Qnsx,vM ,JXl:'A XL݊ZA( r`͸'ʘp, Ry;ٮ, ;"\BX mp[]^iJ5+pdl@wZG,aChhyMCFԉ} WtHvC,8o"`N+~}`=!Xߤ.a Bt cWP` `pL9Y̷D!2}W7Monߊ`a=7M,p 7$X&n%`>=0^S^N)h2J= ߆hDA@/7v{oU,^EQ dbwœEWJHuVwnl%;&b.ZxAhYeMw#3JI1z> `1Bur`5ʩ$q9p n^k~߻ހX9SE=(yxu z! $WhDyww6iW)(lrVnHMd)Fh?uc? YC,#ahj [U]nlpuS ~H +wOaM=Ɂғ"[8cF>-'J;?QDmZV "1XeoX|{H`ױ`I ,Pb'`Q]Ɏvm(ڸ)X%x, `Յ: 0ER`qCI݂EG5D2֪c \grt%:EhXUWs!Qjݝ),E9"$`OV r;ɰ$Xw,rlD j׷qi[q/#[YS^8p̖``;XHp Zx"{)1s E+HEWs6o雘(/7F02(}d`c4Xd`!u,PMYg'tt~q϶P, om -y3EʗMVZm,ԡP7UU0R3YO y&|VL򵗃I9I#'Q , B| !ҵXa doq ڣ+,>O`ۿ| ?~`ݦ`3 0p`# ێZfO<ǖ$#:H1h`Q/KrEZ`1TX0K>7elKbe@e 1p06p^/ -Ub22YKόZ9~",Y ϛw _|&}<.c!Xh`Aʴ4T0j`1"" #6̥S@D%>(dI u(P,X*gw EC19啌U}Jp[M 2LiyF l`Un%-7K W-xB+.~0M5xa`q"? s1y+vWoV Yb"}8`7?XP/D_j+8:0C,Zt !63y_ }M9aK֫B (X yl;`ؑ9E 4qjvKN~^+ah Sj0,HSf+RlšVj! =qVsГg.uYdZB,:` 5OG:G$ QoQoEP(}`,E8wO`L~nżUvgkJ^ΐQA$Xz*,΄_@XD x Ãiu0UJctSLnd [މo?$a ƺh& s>婓WnvXd`؜{,"+Cm,tӜ9g{)o5 ̮U iX4~ǂg`s,]!.E}&[&S(;A0,=q? pr7Yi*6&־-`B?Xx +, *O `,>,%e,D6 `*vUSpN-⊌ٟv:~,IEy,H4 X |XsqmQ`QF}ԐZf[F!<2jFWR0%'A¥\HZr5j)`1~X}Pf_rW~ Z*C,Fx]jXאRX0EX=m) ,H[ncH az!3j 6(պ{Nxv雝Z$ID\fdRJ- "((,nb-n:FͶF%),~7"Fz3 c0Ԏ3*X;J3NU`QHku<-7E^ thP6 X@(o釦,q=!uF:_Wk=ފAq<ђPCШ;xKO"@}IbGB %SWQUc3]X<;X9mR7D\Jn^o+5zlYX,1?`MOX~`a *`]5^ybY'*'RE m*Ի*0{,l%a%oz,w h,I1zH Q\ꓫ-b-O8dT/ ? b mg!xĜIS X+"x c= >O^8Vm+tpF. +AaE]>yUтZ7Bф,4<X| ,~(evwVXIȢؠY)ȷI˜M`>rX;d5^;վ&tͷEux,hEƜV̐v]1n+cYw'~ _A5J/0WXlgD mBhޭW<4| :Yq KyZA薅i~Vy~u~pYε4s5f{#PQfU0Tjq,>XzX|  !6:x JZjYNQ_86+46G>zU4?l E+>C' 0mX >cx ,dN6aJQ*f۷Vw8m]rہǫ3xG& v`gAhb9KBl|p;礁,WJήq?vKP(w1II7@HKB9a:w Us$!0%FK6dLCXe~}FXʢ^$u7,9mEtE39xzWxkXNWOSԥb|~nylamaq="[_ YϟgO~(B쵺Z>{xNUX72|Ţ ZWܛ|Jkjy)9"~8J9L~8s1a{cӊlYtB=׍ʅqj(b "+ hzPfX, d6k/i:WϕwlE\YLe0U>2]?%,ڒ^Yld' <aqaqcaXī~_x#¢*-Zŕ/0+԰|'6*[;7  {ՈVMM15jW74;oճj?al"eVVŲ 5o2SVV;{ow9?+y_ u'񃋡5 ,i,Cŕ߅. ޫ~dU ,ބ?oVYg6SYg'ٯ|WT~;.#)!S¢XqL,?{=ofaaaaioaq}"1ԁ ˊncͣd7g~w/K'=vƽO_~gǏK:>dϽ'/I5 l?VۿBE]b]+Jvt]*|] Z˸%MiX[?n$Enʥ8OQW, :,fmi&5{0XXw[ŰXT}ivhNN3o̤QscQ,tTsƣqHV1 N,y8&Z2xk4hU1~UyTXaqaPbks(, RZHEMVETt5 |Y+vW҅C‘ ~N6v$< 0eDĒ@͝a1/bq(,f2K (,~*EX k0 +`;چYvE0GCSsEa18њ*BQk-iOVa ]ފO.87#N,{ԉW¢ݲ14z$VzVZH>V <  ⓄE77Joa2Em_ɹwE3rK( 'z?KZ>DUe+\+=T/j=WZaZT0 .yraQz{#zfT,,(|WfHj Va{;'fnzS[S7o][Ic1WTO-mO,,3ϣv @X8_Y±fj Vs3 UWGEUEavEPщ} }QFg.kHb$,gG{n[{ aqaaE+j͉7hOp{EPv4#Wt3Plt$9TP*A4@tO4,g'ߏ,>[X<8{X|aqlaa ,pBxz NHh {pC5XbZt||ΰכ]9,nӅETe];oO.cKM , ,u+O==aa6.x; DŽZ>UX<"zxmW(,‚ ,‚ ,_, Ű" Ǐ,nEa a ,‚  , apaAX , ,‚ aAXa@X\a\TX< ,‚  , , ,‚  ,  , ,‚ ‚  , ,‚ ,]/QUʊ(,n޼" ? ,*ȉqXg4{9*_ґ $u)j֦6U5ՙtv~Oۼ>OR,ZϿY_/bfPf!b9oXXX@,X@,X@,X@,X@, @, @, @, @,     Sbb*YWʷwRj;a>Ψv7fb7SP4 J?-O+qLȟ yRqNνߗx5T2Xk\Zy%} X@rk\i^] #|9-EI݃xBDiWJ'X@, 2vrXL؋V݁u6g欝)%1ngR*gńKچV݅{ga[-SX#A1uą],qrmt'rbCw$DBL1ґ}'ὑXv31@{r6ݞ|? N faFWMY i2ej/[A! IDATYjNX.bHX@,^+VN bBķl3bq4-;Y~Fk~i.MuHi gÌ` %ĞI"n\,Hg*V-nllĭ.vfڡLpP0vL#ۘb&͋緽y{/b 8W=Bk#.yJ=@6442]fVb1*sb7쪉:6:~'ѱV:  b1[c_mf&^dcˋ I/@6!WE,pM{.~iŤyFhYmz";^#'B"I9 Mi"/Sb142XְK'ob}&E8 l=&bZ'B>gt$@,  Yd^kbP5/LRE9}Xz8 .Uu!)^Iz#],ڍ3 ɮZcqi  bidƝ` cy:ˊ%`udu|#bxXSԱu[/L|iW:WXk`u̺Mc;?p4=ػ3S&͓dJ,x }&_Hw׍Xl~Bx;CZD@q{ 'oFjyЭfbʈE4id{s-3  kĢJmagXx7 K^c+}ab]Ģx W'.E)|6U@+52k,FeOtO]Z0>*3RY-8id{ q#~#bZ,M>"ZNJamnq>V@,̦U4߿J>#ȟlI,"I\,jr!i JN_$:Lukb׵aBOe-V/^-bZ'ޣ8X}ܑXZ,\(; V"ە7\ݵH_T)cb~qmw,KzI Ah:FYX{M 0H; [{gY")B2F FjA\Q}&//฿97\Ұ݆bXۼѯs}'MI_7agUaQWɬYu؍kd~xxc3?K䡙O͵ys09Mc7\8 뛪a!,20ʆɤ$,,oTtEzI˼SdaӾ,Lq~}lpxX[r<$Y'47‹o*6OogRTalYw.>w:iˇnsJ;m9iv_'흷X_6d\*kT8F5!HkEPi^}.Mr4Ia2;}@똚7ac2' a d5tXĥ\dz0Agy\Wo&L,C |DX`Y|X}+q2^s$$ۧ/ի#/xx7_6a}{ ]L"dUpJVXn[#sldkk/e1msZdX1qDs15\`ą aj]tXt1qz~ Yof'¢6ƙs,7[M5S^Ė Ҥ6,k:nazժPշ ϛm< 1n>11&V[(W-"h/@OzrN۰88>ۧGBY?A8fcٺ"telv-܃cڮx[߼ aq,ϫt_lo%+}dYѾS[2+ϬWLOSv~vfuvu[Č,3T>_'[)򧃒Q-|V_HB33\N_vBq%W~*\H ,gUkYة ^u)ݻ>BXp$rLy,/$‚s&qqϟxaqjɱ l~xy'#{QmzEBa!,@X a!,@X @X a!,a!,@X a!,@X a!,@X @X a!,a!,@X aE8 , aBXBX , a aBX , , aBX , aBXBX , a aBX , , aBX , aBXBX , a aBX , , aBX , aBXBX , a aBX , , aBX , aBXBX , a aN{ KڊB.6Eh6`lzP1G&Mo`>;330>\N 8Xyf  , ,@XaAXa ,‚  , ka@XaAXaAXa@X@XaAXaa@XaAXaAXa@XaAXaAXa@X@XaAXaa@XOEe6 ,,>5y !D)c<ӡLz93*/L1k¢lV,ּg$,?D8IIn?dSOik{8$moNNN滆e0羯cyaFycjWZ`05ĺZ.a5vb‚ , _?XNԭP{-,Ej_~gXؖ6b(~fDN׳h]?rܮղ]wε^0:_ę1nD5mIviyUٯ%{ bh,q,gT}<:vi$[SߐdzI,Aso%7„a<0ʋq3,'Jn¾HC#1MYSZr0ؐ(Q7}0$ky#S7¬xjQq*2 ,ԘlsHV !4_EG5oO4v_;Ť zFXtdmaX[вkXZ'nͺP|FXta-]#+@XCD.QbU 䟉7Z<^aO>jw@ ;߄V 3,W%s _',TJ9 M[r1xIRFHV?֖^.ʏa"+;#4Xjm̰Nʈ_ܫի_ ,ե=5k*rS,ͱNr Ј8`r\SGwaTV$Gu8 AGHfޓ̩}AXg UX6abk@\3~o<.[_ǰe6U‚Z7IE9l>ilYyXDm7p}= , jW ٵ]nVv^>;m E"Gj刜_!*n]a weG[X<͌71=+{> ]{Лg5*qN}B6B܃\r}dN.B=;_=,7V!~bf.sߘY~q}Luo+q\7J' J_~iN ,"+,q=,Ͱ^rNZ`Jþuȶ)VXCLT@z~$>^Л9|V;908)q_?%C+ksbSИ~Wm^6ϩWY}rpTE"JgٴՅOo˴g dۙϚCu 5xgjɮͨ%F[ޞ?Z<2g9sFםoH=`?ͦqD'v<5M+7~֮~J|}7&_ aQX h{X塬^d!n|>)ްnߘLwU;, ;,'Ő+ևHԯ`w_;X䲲w`dľ1 *u? t)A+5A#g)ۈtϪmd{҇=5$TX${bԓýՋ̼wtY,`?,sF*K3~oZ>ciWꎬXݳbIezj*\x Vb+,Xaѽ׬eqjÂg',ϽJ IkwŶ\&l 6\a1֮O_Tȓ#,Fc#Z_<{g6j@qBKJP^%pdCP(Iht,7(q@Gˌ=6`Z ~~gG^\?W+}3Z%Jm̖616XjM~RXrPPv.UpsQ`N*?7b-z`rv9g\g9޲=E(G..zIZGܽ`HYR%XשSSV7bE\_9`vd,UhJ_JyS¯4ʪmfp\|Ou 8 s-ߙZ;Z2qĬCɠfmbҋ-Z? uT:Ѧ+72:q&_>CJXhrA9l{90qgPm", FG̥0=dV`W,1(]"erymN9l{Ngm^ViBn X@odoW,qm;y >*lSSMhouGuJ mgu? WCkvvvXG.X,^fDT,^bm=(mC>\@ɦn39XXy,Rz^yWd=yX v-%(1ArnI\R`qi[d'% _st'@Pb˺vS2<%_Go&,# fVocGEÚĒdy,,$afT=f)VHDy7¢#KIJޣR4Mn^^WH? Ѡ3h'Ko r`=78y vw㶶<~`>WE </bS k0g- Vq:y~kҰ,`b-On1raAdyt`Q{Q/[B>9$7S0.XyfqKڒG-f]ށFH5۲t\,mRHr?4H):`OWN]ARSe[Lҝ]  &1Kht+jr)`AXmp8 _u,|q~mo}t|=s!Ngẗ >,/XhM_B/l'FJkVO]&j>Gx^i3tHJJ.%O3n'o>Xђp&T c!&)uQSA5Q=)N/3*K, _^IU{(6i, m}zV)"bOL;l9 {QewzobD,_;vՏj*Y/}Zy |h7-amP`xJOTroarR U*9Sy 9ꂝjJqB q@fF,6LReY҉0Cu#WS5d d~DaЊ ?6$ĨiR=hY/Շosޝ~fX}+(kXh7M72&`)䖛UC&oNu}\J0uZ06XleRDW<a`ٺZޮ&52Sb:B`O IDATZ '4[?RS  .3G!؛2 AۖVٝӋ&c;5p,`т%/PZu4tQ\3,&i;{ay'I [^[>$&AXĩ,M_9[^ю--$5d />XGd%S+ Tl&,s-XPꊌTA+Xl,  ~^ xk)6,(!D`Q&CؔX3`ߜDbn(|%,:ַYC2M  `{+qi6J+XPwibK\ausnƮ$ZIii_ 3Q`A'.xᕫzt[A`AQfKs`F`nRPɪ`uXڎHSW%:QF)O)٘j!  z@%uj ƓllZ: >΄^ hώj3Nfb`A,42}]IC XP VLwUeJ#g& ,,v)^U=QK/=PAX@"[mK[E-,9?]kIxi{Т\*T>& I6  `xuDZs`q-,HD[f._Bꪉ*]l,f  `{i/dYڱѹA{zZW,SOB%jer't݇ZBϾ&*d4->:X ,  h7 Zf{4c J >~XE!`Q/vB #`(5 /twL`A,t/Yfb),c$ ɛ,r~X XP;.0i k q{[7X:RLRJp?Jl`q{  `0}H(e xx3 ##%xJrhn{ ,]&j G_9-F,  ud1kZv묻Ws! UTI`d:Buߍ t n'gK5QC *1C.  `%˔*?٭.(skJk>DܱU) :HHKa%B,@, 8e/%{Ōd*%S =sm'k&M[Ă7GdXw $]`Lp޲7Hbjװ0psf`Koz 2b3+lԲX7W'ds󌚱7މP;ݒ#ӓłjKjvqb1beXO 15y$RٲsW9 ɈẐXJ,xxྫྷz^qX"gmE,j>|݋h8-w+z6L.n(R'sU=b6+]--%X<0-M-VꟀ|Y@, ^ūuȓl]7Zֺ IukEc|(q&On#b!,*e TNJK˨XK6x{6X<ݬ'կ3|$!+'YaXMR|lg Bi% eL_D,!Nf{W~f@, f)+Zj.dJQ$cj axUW/%W-Xc ĖGdMƐQ 戗.- zٝ`+knayr553XbXwz=rZ{)[~plJ_, oT6e!T!kh;,TUDQzօ;IXvnM2S簀Gaa9a]BXbU _@, fWh'n+c~vˣeT')ۖsիDty['U}ǽ&\Cξ˰-;0U*&?RyuX؜,=0K'0fZzyظwgX_ip\LFLtpb-:dC, @,  "RXL  osn{ +Olû@,  s>/b8rY\ b X&gu)!r+f-qe+yK{D@, ep&}Tc"D43t/ARiOn ovJ -JG鐆,WoE>|b 6 }sjG =/g(F_(XL\*&mmN-ObFхBC*Nbf؋ SF?F9bb.@Z^ ǔkb>XO*8u9wjY+NA,/7Vkk*9nk:,#QeW95^,G^@,  G(yL,_fObq:\WJWdKvˏ͔Y++%ߖ6wSq+MmE qPO 6X4v0'ƃ[uX׮{5'npJV8 V[D$<ӷ# ൕт7#O>LS%NM-,ۋ_Z&E)ۡxHK(J"r!nbXUu28Z,j#ŴGXh8Äo.ƕDACtu̷GRN8q1vRBM1fvU??+P$瞠D Q_YF ˿,[tcXf p\2V$j?Ca_$OTb?Aoˬد  Fn٤ֿ?nNK[Bu[ Nz+)klqeB},bA۽ Rq|{U$iB¥R EbÌ~|y&cmZ{͔2Bvx]vp#S< 2ڳCz:Z%e/ @XX_XPx D_*}t+mӫC3SM@,  ƍ>.ں %i}^4kN)\es%RXN j=ICy S^߷EQAp+$rzv<}]g:ZoTr_ 7ZF׈.ge`.A, wa,QpUX@,GF&/h=5~)|%Ļ-y"E,?)lba<55qgڲHGH ?Rg(tof7žMI6 D]nI<59T~+v8"z &:96vAo=.  .鹤`Q1\Q;  `֯F̰;X`bZEEN-?B S] NaכODG>931$L7o몶SۃEFE#ycd;\)`AA [獭e,+NbJHbT:lLOPې2c#gO7`^Z|n"ˆ*,C1S,+6X7T\)`A XjMAJ>N"ҪsXAz!rքQUaB#f0J 1+k'w'mEU"\~/ ɕHX>,NEyG}a,@ X˵̾zzƳr6V]XݫEU`1//j͝W P*>8rAvE?AYoVZ7tcvJ=ow,v,vDV? 5\oR`"VQɬԢԶ_Fbs>tu,R7KEǢ F[5hXGm ՝.'-+tE5z9bBί {YH"aeyLr  X,.Ϛ%E;)s9BN"ҪshN7i0 뿝[pc{Oy,XbCZ+H%Aw}??;Ssv{D ~9vgP N)뀓*M`k Wk0]޷XBiC̋LIofdlw:3)6U)#Zzpd23y&2I+bg6,],巤?A4ҵ`1(ztëj X|=# E<(|驚1Ep:H.S[)X[y2F2Ԅ9oCLrxC]C͹7tUV^yHץ{c+תNhnZo6s+;ka<]pFqڸVߏn%o/ױ8P_OZѿFe X`AM:;3] SO/m?bԶykRO>OGY 5^Ǣ}E}uIL>#` OB?s:KṊ[_^NxQLGq+ˋ4@ X Mp rm+ˋ4@ X80[_^⎸lsfvH @ X @ X, X, X,`,`, `A `A @ X @ X  X, X,`,`,G),wӃ4nGd:>X"&.~^$I`ANv "RX(`1+/~^uγ^of?7v[/r$ ,g9/s`[ݻAtvk'~O9?Fϊy2h>0mOd8=~%7"CTjb>_5M?c,㯂dի=ɏ:X ŘX ȴ~" X,O} d,f۞H&lWF%.=`ϓɃz/Su)_N`3u7 X, )D",ks酂SH#ptw1W}?:eR {mK'R NN3u1mXύĜӁmWIJO U?+qjQH9:3,p5qzHp~kb˲Yh1,1ƥeoچͭzWԖŖ]ِ]_q{޽a^^Ahm6lK83P. TUoP*^UB\XόfҥwQgb=D>rg.֛V+n]kUZa׼eN,M-Lۉ(_5{UYFJ]MYVew_MvY('VHDX/WL/x`-z'|*''+I,Ӗjw?e"u`R vx6GkhH`ւ$7UI7-jn}Iom+XVݖѼ-/">1}c,#ETi.bUYt#:3G⇧I> `V/EַB`BC0Xza@{ d:[獿DuIn_H.4eEJl3;^-k:#Kٜzs[Iú mSW_sG7ˢX `V[_z{ipSa`Q27^?L?w 59A3o%k zsݕZEJ7RzDg(,n|ҫ?,%3~S)oDE>zWQ!R3+ Zauo"f:HkE*@; m$5;M`/śFsк|=YZgUF}`a俈 ֕:fH/XlxC<`Rdx>ߜɠ8&Pyֲ諃F_5'ru9PoE[m4p;(,Xǖ`u s ,&EmOd.,vnͨ%gevo?-t90u3ߔE_45:OmVHjvx"X`A*4?XԳ"v݋ޝu4 Y݃EU`%-.bf; k㥻d?ykYEͧmF =rW ,$ab9, WFw8bq"Ъ{p{ `֣=,Tttb~;i_7hkhFgUuZ, Ew9l JJ0XU [,"y¯,Iһ_L-,\W1b-璜wLg#4꠩+va= ")M/ͼ`I dcBn"Ъ{*l8W"鐝3Gnߪ/eT`au\4t5TeɲTP}:@_ٓ lS˝[kFZˢz⑻44.[*fT  X,:.eEs]?o/Iƺιέ},|zZԙV&^:BUr7JNXUгtso] ̶N/ijV`aY*;/}< `PGƺ=;>7kGhܳv[]du+\a7&ËuxZ׿VZ_͛A X܍ ch17-Z71%C^ ,wa1VX:ko4Z(uۜk `ݽtz$r5xV~'$z2eK%ͫn|IVL߾W`qW~[(V~]{U,̟3 @ X @ X X, X,`,`, `A `A@ X @ X  X, X,܅Hty)/[]>|`A0aHr6#"÷" ޻w3+cq;ܐǧ?߷O߆{߼7@ XGсw6/=.2ϭ%;= E3T7^ދq;M-KCw RjᏟ)XF~|?>X{4V߆N> G`,ѓnER{ ?gvbK_Mnʺ#nsm[.)ʯK^_,XE6~xT$y?,:tskif) Æ8)-NH! p.A7ՏP p^q<'M[huxyffox->7LXhѢ6 ڻxN4fCx0 ЊEGpl4hL>2o{lb;tbH ϒ~쫉ŋ$ oE,t4z$"C7X`]B]XhZxۀjZ[b1<޿|O?X\bH  嫃ŴosLjtC|爅TyXxՍF7sw忑X2"\\")u8ڗXHְOa`tgTXyYbAWBz)J^~uˌl?Ne/D@c/ =T>m=eb1:1#G2#'Eղ_&Wo/1Kh&j^\49фzс,h |Kp?xRJLA,ԠQGLAT(Y R PVҋX!o E@,ޏ,@JtђM)(VJzdr WlfbjѴO4F{v٤inh6cCF5[ʖf f3n TwF jO͡n-,ѼTʴrYmIJgfDi ]M=49 Fo9lʵ}{րmXL]Yfn%}p4`^!ES<#~ĢC@arVE}kWX[m$ X$WYiXnrjY|iEne\#ZR#u&``R6 hBl[o;Y5 DYVq}HIuܫ& uGQٳٹrXq^GӬKXxѫ|NQUϨig _`n; ɡ5<)M.J+fuVi:cYKQ{YÍ]mAY2Z|#W%} n9SGעƫ_5EQ#7ռY1:r@NA'렷 ¹Wy~~ChH /eϩ"4 `uj[|bV;!!q~Yg-eDɛL&(ղ`ew6L*ݝq"MN\J 5:uŋ# mbQ7!_RVlO};' ַ9 g-@K.&t~z|)}f`Bv!#XdlFgLJX'x%HP|H"w[-@KXjYL,>#QX, ado_n-ή~է% ӈD,S . TTMjr tX%D} [Nwh|GfTngt0 Db6I ڥ%/׫6ZN#)1H«QuiHx0 m1-9BM1#N)7i#腡9Ŭ]j4Sl.)gDٰs 0^^c&z ӡonb1;[ΔD oo(in5IzQdRxx2/trbXMf砷 ط5.g7aav$ք?H@,bZ%N(bpf#r=&˺]0!$>c!)~. U>)C,< z3b1CVu:"m̼=QKrbL3+澻{,Є v`%̊ˆ:XaXhc|]f_THV"D,BH+ K≿BvQ㔣 I1a-ВęᑡS[#f"2{ގXh~/+//=Y; OnU LԹx$}3KvLOe8fƵ&^Vqn@ m\ĢzUV1<5e QrDPC&b jbH},POY4knXUϾX+8RU b[u4P {2=ʠ/J(&wځ)3Ă9ڂ:MER , zGƒ?;6v.?+ eB22¡H 4 eCऊ@U%oy|kMB?l8ײ`E4#)Y`d&3.vr;rFC+%ߥ i"OA3uZBHY?i@&6 ݑ\ ,l%%f"]6h-Qm qR8Ңbφˤebs || o 4fwjS`A4zz`~J@"`AL" QAϊNrgj%WDYB,ڥ.$^1BEHS ,.w&O1(62WȩډdE[%bQ'hwv,%ft'5َ¿Z=6"7ʽ= ^3B'`Ѫ~ʱlV7M3j h"팴<<=#Zg[PW$:L(X\ѺR0SNU[s(XDz5p^ZV6X#`QAPkfxcِn@<)N1X``q$:m7út5}mr 9G`g:BU.~V 6j;SKrPU},͓^[uT ,VÙ o6|F|1b?NVͅil(""uD?3 `1IHR'JP:5vxHr+ hMl C\ SŔ&Em5<یuj/F`%5,㮘FZ#ބR7Um74 $*[Ԣy`!}oςiK(s9tYeЛ4e3,ievZM(`a5N$K AOA8 ?v\n,,OrӋ5?ٽ&-M,bS: 4fM,2j 9&.SJµ%j˥<6XYXFm M.%O̾NĴ0l M# \{ɹO}6t$Xwvvk`AB;/_g&KĺTŵTۅi By!َ^}kY2XQNP䰛U ѤvZy+w{E6>,xㄿA` { 40];X=NOF` puVಶB`D4SbO/}*y 1ՆXbq {D"Dwy W,Ul/>y`qƧi؉Xi},y kv)eʉQL~X`* \0ya_Xz Vib\Jo`cdqiU+Y&D,0`Q8!7fp#u0EP^XAMU>g#%UzIq;cM4[U;wEڶd)i`o []+X\7#pzVĪqСߖKZ| 3 4Nq"~2yoR?$O8Q]7Ou^>(g jC[K?`s7LT7 Y=+N8)Eʓ[<&߅ 2ޛ,40pr$N:̗<-DKث5JI=li9@r=-`9j xJ:n9,fVO>WM#^2b HlOskSa^~w'1qeL3UzI1;cM[Y>{S{fn`' `nS*X/ t CjD ,RaHuq2}F0B`D4Sb_0kq@9`n`MOXsx:EAl0χSWW-ͦ KQw l.;@{S̓&dx,jyl >Q'6 N*WjrmIB d˚nJ`1e >L_ HجP7AMeg0rp&l l"_PSPHV(ܠBNyu5gaWF2aB=iD,2E^ RcuE$]җH.-Bg$4Nq"~ҿc܆PRz˷"!^2J76S"1$A;e"j:?FkX4~:<>λxy5j3ZЈIo5ńO:9qWōP`4yE%E>G;r$X\>w{F:dDBCiBmfC&@HH pyA Q~qx.3 *jwx?_CMkhPXhi;tֹ2y܈SYjzBhO*:6ED;۩T U.{xKnD8j\IpMwBy)ݶK3h,,&Daq줕 ]M(H٬Nrmc~~VH%,;ziGޤ߽p@:",%ry?l;'?.,V/0DqOX,xÆc8KE$g͟ZjliOr!}LBMt10zU!RO'zns IDATaE ]oH? b* g涜iU oUqƂ*+l$]tm3ytwOh4y&,2Dz7?cA8"c8{63NGF$glH7ۙTX;S[|sa}e#b53 aAkz: ,bÍnIbo `nfƅK4^!ZXzR4 k[{$:``7Q۷A-FQDI7RƷBu|xfd3u3:#?1]q" 7clHotğosF'JsGkHM^W$RMՒħ,7՞3*ۢ!q !% uAXxEI.hG>ՅtۢYݼ$Ǥ0RXh-!uLg^q÷|hZb-6Y4r.7{N`Q 2r N$'zbylP:h8qq<6SzX]Mta)31_POL3np3Duw=.UZGfN*V5$F bԸ;U9`[T=+ 3K(,z ⩜8;h@ , ,F7ԏ>Kgaqy|mÏenzwES;!,3u[f A#aaJDz|P?AX ]/ l ~a 8]KP>܉/TXЛa眮CggrpzըcLzݕF:TLh8u  , ,aa@X@X , ,  @X@Xaa wOm#Y?-xec d rH96Ԃ 8Gf K%YR[S!ٝdye؀;"R;ܸ5y[fּzFo;Q -8ޛq j4SMv*ty-#wyWƍ ܸ~mnXNu5(2`A»%Z-E;co5VRCSJSBm<@]*%"CˬX>*|3EcǍ ܸ}eX{du0` ~cրy=]cʦBVlaػUSDGCK43X44xܸq`fR|f`!f ; . [0XaNM_x-R.Qz~E#j5 vjw 7#P,H!O>,鹸oBNC%BH$hM! `q7n_ה  !hS4UQ1gh4Tk׸*X!a^ٶFw. GD @v`q}l׏w`*Y.D5}]W,M u5XU}W뙫utڐ0X, GG v 0$zt`a~>T,:Ń|GfSݶЗs۝@ /_rC } gLw ƒ'Z}{ v&Xx|l|g'.EWx/;.WG"b |GЙ䴱N- Pݣf :}4pj+J$ "D|U> b2,(2\`0(ښ,.VCB)0.~en B?HZgbmо]k|(R_6e4G5s p Ěڄ0NH5YBUwH!%5ETrB^Qm`͕I5p>5,=>o"6Ȭpo )wFЁޔJ't  !(!,!,'TQ)7Jʡ8ҽ#6F[Tꪽ䃱*FSTM]&z&2tOHC~jc )/Ȥ*%S1兢6mjVZ ]ɳ\=6Jcж*m`A۷9820]5 aq ٵ+Ņ*XD@Q`*./+J$UmxFZ, ~e/$$QWQ%*XD,|^a2Lѹٸ:WZ&YՕ@.8ђ+3.pxχa0,.οQt!eaB>"r8D6:uS0`Q pVЁ}RpS9J0-J(w|5H72KNc\R: '+ʓ̔s U㝀cQ g1$ Ģ Q)p"IyW0U;cAsp饉l3A XD>Mltb;,VcM/ka)/WV#s"q!'q <l^APY) , &*%&Җ`jPQH%YY3X JGi[W7-2--F=ބ]CTD{*2d9p ,bilƴ];)=I $iwPK2ΩTl9!8f&͒ ;<|%F"F0NJUM#X*yFU>JE :uemf$eK !XdM`Պҁ5x%wOm$G?x IaPiI JXc*!R+W}KGf{wgvF_۩|AݞWwzzF*RkW&d)`E;3 ,T|^(YF~ *s(3PʄŅ5HitJ'h;.[ ݤx,2P6`E(\[e_,X0fX XX }D7v2XJ2X̣T pֽv~q`?kO:xs:3:^|Ez,o>_NGZKfrҋq^f؝ o R\`C*.0%Ԇ=R"%WwIos匙bGl26 tOT) otz s~z5bc" 1Ia}ꒉ`a4H)¿b5I ,wuKP~._Ht!cg>'eTV,:ɜ`wI*Xx!N#t ~@O40N5uxBG LX >BM7ԁ.hd- 7W[t *%b  X(^=6T -@l) -Hk3R"XLe|_ϳ= {PB9s1gz5|UſhA ?P?~֪ybv}/Q_M :|N(, 5դ~(ĜDq'. A˂X;N b2zdeʳ"X9$ 3=Xqéh¼9hROL/괴j\ȎQ/W-e؁}feOȻVwq*_a:cU\˝-|,UIu9G+=ţhprbQw󘀺QnrN$ڳxq|S/ś2{35`QT 6œiqk(`E,cnnuyY+T W\m[?睲Feh6bV!,܁{g)1tn) _4 3%f*&56'f湔S2QQVyɖ|?F.'E-Z`(è%EVU#%0%11ϳ"*#:sNi:0L<`֖iww頸8J,z`eֳ> Fn$}Vo/CRt lzVc L }xsUQs17Qnj,kk٫Ubf81շ]"0ZL|Ƹ V#(  8GߌG5RtvrI=Xn5wݼz;7g~X} N7=t'"?? :5R3X4͏Lq8΍XdՇ10* IDATE,pI^戀'݀[!dQ@Z %e6R`ڲc.S,TK,P|Vo7Os&<[) 륚l6gh5x$v&[?) ,R݁;߆NI>;2TogKU:%Xh;M4u,co Yc_X也,?1O4_ D,$Ìnb"*ʀ#"ÖQ?˻42H_(.;_3bμ ԝm*u0νX| cjdd AT͖?y,knJ Tc`QQk,o_y? ꣿ'W# S{Eb*+PJTXZ 82Trc#ɇ[ؒ #h"Ī5v`Qu`A)Rγ'"?h,N!_.%O:E 6|w˰{d[9/{gF&%FNF ƞ&#A`ĂѮE6muWuUudfR>د~^g8cQoFD%Έ x A,Іr_Gp|ru2jNQUX@V: 韡 ,4CIuV (6[{0ebVSɫ:Xa7Eދn&U}Hކ_&ܡI800_Ȕ,|%8XFHiɠ]q$q2XKZ?O Bt[,:v_ёx]d]̰( wmjt,_jH+OL5gyV,*"m \C ./XX\Sb*,FIb>_:M<ĨWll6cߺ(` X*sհ$,h'ҸƹwMT@V]=zEՔ  `ؔw/X8K! '%yx- ,,z9Z7Eg`1z9a~5x- 7X3Иbty7vOJ<( l\[gRez4x~*G.qnP^t_8 e(WYs''}).|$ My ` qץRk³H9d7u,|Thzk}eFCKS3,d`aرG:+V>ÛM_m|,_5EDdX2/Xą{m" u+Y=kN^Tkϻ8d`΢kCpJ~yE;X<5`KNeMؼcqՎ=bWJX $ f4Cp/C"IZ|m+rz>!X@XB,PY[,y$|UEXxp*G`/!ΰs}2X&?N:?M`(ᐷ: ψ|b 8+I^;`NLb=|֛]5,tY"G UUxVDG:vІ-{O 㓭m$k">Cۡ*IqOj#=Pyg!`2]R@a,"{d1kmh=8KG(Kǝ_;(~{ nE*Od@VL ,,HEֱ0b:>'*L|,;>͢Fg(o;X"ܨ`K{eL>lYBȓN[UJGQ_zE7ƹw}e58&>W%\T0X,c= XlSȻ-戼4CpXTP9\$_HYYy `r%bl, ,Fmz}"_xm*WNzs&dm+. r ]W > Jb}pe:"Z%XM\XX4qHCtYIsa9$obuVg[#}]E2zPjlXk^Gl,AIJؓEQ%+@Jbc(T׀ ,u X$9X}FMm8ӦjE..|"zs`vl#_c*~,b 'jRj@_ R,-(]{X:D["/X . M u#꫃Rw]Eʶ=`I&7I+y(IڨE“Wp~e~rWUGץq]=Ń^; KKb S:T0X|#D@My*i*O3Lc2Mo}):Ij䑁(x&Hn.inaZXFx`E`sz~ ,_zcwS ߥ2ȚЋjIi۩qA`1 .nhmggsx0:C 8e2l଻m鲊f͏=\ [1-e S#8ΠbïXDU[Kwֆ uźs~QJ@ .u80^,9.  1@U8I/s@f_jZ9~0BZcg ֆ(rmr~&d B CUQm=߰0H e\8)'@E(!vMcelA<^ ժc64OML}yc ,H8~)q‚yboGTFDSH~# lfBV^]słbZ,xgP-Zs1eHmIe.zx]7'΂P-,GW'/,dca+m Q6W,F `q1Z)C*NXmT:A9mښ$`*/\q]5Mk]@X@Xl=Cb%s/l+޸P=)ljd. +ϐ2gHoӰvj7]{K /Hfntl, +MMG`CntF Ltd I`]]]%),T:k5yOߕo"}ZXagv aåf푉3VF e@aaB ;T6CE_J-*3m `ӓҪ6 Xf >1‚nr‚6n̊Ȍ kϣ1'{NŲ潎.II:XQ;x!)Ћ/KA#,%5p. UVQ +ziȇ,qaK\-˲UPK[.,XT_4P,/t򁨕g kvpEX|"]})Hw+1?_g&7G5T꛵,wg NA3>1[ne-QoN7[}9'iu5]7),bڼ$,o PKaD[mg0a/^(:[.b1DOaMHDޥE}θM2)b!̭ZBUl"9 3"2 gڃfrV.i.\fa[aEz{hU8̚_m‚)6K4/"ɶ"%Qse#+z57a1wNږ `λm*iԁ^qrj5v#?Tbw +o||igj C2Rsd.K|$neH--HgӟY-|enI RO12ʼnvUNX$:eQTsp&I\Ϥ xa-846ZutbWE>ֳL*^"9 !M#f[A%;}'9Ub0@!,,Y",HPdS;&SX}m̚!,)T["nA gٔ X`.~R~"mWDonזя!ٷ`A{ca+HSXs4hVվO/u#M! (,̖vQ˚>NXZ,3sv]kvYG/mE.s7ŕ5FLO:S6JUVZ~{~oVZ vu ShF4>}Tt&/-r*"3cFK4篍 /{@X\'YN(0+O3c⫋ݜP;Ϗ$s[gu׊U!.[KK9 _cYmYBqT`[><6Y Gߥ$a1:/RQb]My#]g*j;_Si{诮V^ -('=E0)Ʈ/!r ip]aYLӄ|eg X>$b\V8Z¯z1  taooz<#-ʈ6y_]em MR)ƅŭ{HKOחZϡH q5Fu=^^p1VBw}GS|CWNg :mu+Rswhy\909ɡ9MSZ4gVڙXI)݅@X@XO62&xƢ g //,H:9l@X@XncaNU#gl'䅟*Jq^ I8r8';cn/l"*ya ǹ0ʳl#KR9.)䫡qGJqgb9#)?l~YlPp)_n]bD0ۂ1LIoNXdG#}|,ӍtPncYldFD/[˭DXi(#Ohma%QtC{g)?{׶F҄tB %&"MƆ dl H,_p JѾ@.iNct]=㮮*OVU|mVm6 -& )iۚX{UF~+)< E]{Y4ć&-)NS,P4{B|K8b+xMK(8ZWqw&VoiTeQ%,Y/K؋4R@ȵhZ5mtāA(yW<_97N Y-=- ✆/))ɲ*!6v _7Z%<步x =6šJk#m(.jvۥGZ}biD̬nbMr41b C,yHYB˗SzA1؋<\FJ=ZšmWX[f '8DCWĥ G$͂lyN(OS(%=E5qfZش|b!nrҤ{˜^qHGyI)^T?z(1ɤ6 ͆GW } )w*+#33~ o*Lh"=)?][MHڱpamYbSNTBǂ8AX3Qix?Ku١eK˻YM#F~tR 0w?ԛG'|j%r N?F,CZ Q)-0B\T0j%аëeiO[;_K tfI)Zֵ ý.ʆ E*R @v qˈź p=P,#b~}3 x IDAT\5bW s1L,> *,ߴJ ?Ip7濷!Y>UXx~2\pU08@=x"kXWq$͌W*\u: wIխm,Ώ]T'COHmrBs-[mwC.`i66z%_#]n@Mp Y(SeTl$# 䫌!%[F;.<}MGH lfPUv/N蘿̲.φ7 O|!ڨ˖P @[fȱIa8PNG9]J$N=CAWF>^ZyIz<@,s:PdϳR e%LFoX I,TO5b!X̌T ag6bS]MXdd+hvx'D,>( f.aH1Ŷ%ixFJJh7瓀*P=h \ U3&dX 5;6[M#3"h1}zb!@7C, usr.V/B_Vf!fg/Zd'9ё9މ{|9)F .tOբ-<`1Q#33"F60==& q#1ePSsB-!R[A]I5O )#PpP&Ct?ɀhE 'OOV%9-Jy}`SE"v|^PACrk BocmNef%EPSA6f"!u"X١)pqZ`+j4n=XKb!X:)@wEhL ߐ!ׯ;bX`2]@cinj D}k%)vakh$3@N$5K=rXDMPZ&p`HU͡@~3"9_ n%޾@q|?({=E EUW4#E " 0}#=XD,fPvcuV%ӥl%ϴ`F/"";=F,ؖ1~2Fh ,9b2,EH,^Lh5. xfFKZ ?|o-9-lP|X ׂ69UbZRGTz *tU*HRtsx`e&sJXD"2&  m:PB}FDJ,X5`혆/l |x [&F,PlB NUfK|R&0PKm+k#|Gs| tDc0XH,3DG,9 tɟE>ՓE pp^UXTY8|\DjO!$YmDbW0NCPtvhi<(y=H,Tkw(r!#}g tbLbPfL$h{ HQK;1Eݶ5^~S(X#\MuCnM[iĢ_L,pY y,YN]C={_IX&>$!xei@]1x1)E,y(4/ӯ>"_F]B&w.{lC7XzLllN>K`t"4 y?LfBX(5g' C69<?yjelYԛXhV}%g+b1^j:yJ`ǟXhu:pL*l~FBtgnfTEb/GbbBS A8Q]\CQӦөć"$/ВMV2O?X }bA>̯ɷuRX]B&+*,|Im +"L,P Q}k 4mwčPa%hm h?ps!d XR Y_j~Ȉ(U9]~mpƈBL)\ǰ&q=@/GDnّe s$&3sGMA,U2{%Piӎϛ"1$bt:b!MbpfL&h{wʈ꘢pX^Γ{i8~.K$ GL:ܐM@ %(lPЂ9AEHUB}|_NF0Np6»rb_sSORۨݿ^u9pvvt#e~U.VZS8;րtfwvER,΂bVǍ/]NjcPPMK ъ|]q5c1,Zf ޤ[M1Ψ ]?yp!Nk({gͦ7ruW_HSh%jJ>GUG FmŻ(_?),&%)X ኼc#X˨Z/xNNN ( ųi9__ mLǜEcN@FΒ^*22"ذ| 7 197lKvwWJ;eok`:/ZdOJ v#^;# Vפ9X X uz"\ⴚk`>2n\Rk9~:WjQxو΋sZ$6+26 n6ަ!旴r!p>K}B^b`!EkZ9cc4616[&j%q݌HCInVw+og WwYNF,Iyk\Tv?JJFulZI{d~*Xcm}ZDl s5Χft{uI_-j#YIRxTh^襤+nP(6MtC҉@ }n Y+"T$x&j8X4uk2F5 igmfֻ^Fltu%8a k URY KKB~(Z,B9j=Ͱ :&7?>Z˨؝{,EZnRpִ(J<`_c@=5>|ɚt': N'k6s,زn+s^ #^%XhgQE>xCڄ]oF4sڞʗ[_ohSUʨ0PuݏQ_CLolZANں{c/ΛX*pѰױ73nn箭ӫj`Ma%`AxVsxx͍:8I]{iM;(yv̶nm"6 3׫q^Hj)= ! cZtǖEfoF'X,[&Oq 2txx3X X,JZuibh^]v`Ԧ(ά\jO,̄d'-ORHX X,ܜ.6}w)vV'G9^zv ӋX(z}bqV7= v @ X @ X X, X,`,`, `A `A@ X @ X  X, X,,`,`;vޜx~#9@ X["߼ C[V:h`1<[i`2:,-ŝ4K%BZ?:Y$ M^wF1g+爛WszDՉK#SnF|>uZ}UG"z=ğQeMr'w{ܛ+}GzzjFI|'XWSI=S,bn [,0uh®:ى'}sֳf%;NΌ9qpnefYǒQE`8OKۼjZ->2铄}yMyuҴoE7ȇ ?X7~ZzMݿ.`Ac|916$SژiJ4'ss{,ղ0/5vqkHy{Mi=I̘哄c^?EfTӆKRZ^ty"R8O ⴪ݴ2z}+Ȩ!ܒmqR;[cݽ[y-+` X,ևk`;Hk2cgs,nػ۟>u NRT & GnP1wf1#P)7 IDAT٫%`/q_}Z/ 9 wmP#!=5,l"Ϝeya:Ǣ$keИ拜r¢>{[]>ma`AbA X[ Y?OpkXgtx[{Ā2qmL e)5y/2ą˽OỎv/Q ,GHsi/>ju~\ͭaR* %C붰ȫ`^ޘJ] bNO!ֻLUk"*tY\pBC @XSmW<-} 1b ".M17ER J ;ZβmYF4,?w(,Z) ,{;w~=â" {^솰(hqfO)5u!b6:v4, "DŽaAXϯHyzXHE994%ɞ\)T{a@XOig9ٝpF,;"/28u+K_;onwJXOwIXœ+5Lnz{ %=,,˼^G xI1w#W+aq91BO˛~ZO>aDKJK3y9oB}7 [ZY.xEb;buLTaQH g}o}*ljfȻ]wٜ``{a@XO$Q)FT O9]9C'dulH9 rPF%Ӂ_Ľ1\U+Vݣmܽ_?[j[v,1* ,Qǽnk?r7S JwЫaw0$Gv% .ӞnÇRVf_PX?EB.܊3xRU=k8m073GZ3% 5u:y ‚xbÅdx~0՟I/6Yl{라xXfbsv+=r‚\ij#һ* ׭g;G$v$, dAj~gKdWa?^I!, *5q޸mt:(‚ ‚  , ,@XaAXa ,‚  , a@XaAX , ,‚ aAXa@X nCWNL=LğWDn{C#v2"V~OeݠKs(a({?nzyy-*1Lg b9>&2aAX<[S&VrbԢwϻIɦ!ayM'@XaK?g"=_ {dS伻xa1KM_ܴ05,Fo|K_o~a2q8 n" &rrғǎ*|M(quX ;9?/7ODO)KѧgscfL #cީ+|9wl~FĖ4Nƽʇ[V+ݮ7m"}g:DȼSU{m*xli- ,;2]\s co$O^MoU }$?q bB]['Y-IR2O|zA#-Roʗ-9Θ녅KWYV+蜞'oe\+{Ţۢ-8&B}G,L԰D`* #?\=o^AB!BX@}5|!  IX.'v /4"ANxGX:~GB!ŢأfM͏-bq#{zi^"OSEz] ]Ţ~H΄.XAU/T5R߿4ekdB!BX+-ͩhmV|^_,Fh mr9' |E>J!eđG,NJϦڬLL}c,"#Ƶ۸O,jiyPrO;I6Ȁ<;7ţ^&_!BX5D@!3jc+@>",lcUqz |BF1 /k`\FG,P]uw WF^d{dwokP-=&%=MOgٶjS+KR{*P$ D^X}p ߚBXP,~Otzay.*+lx%9"i's`B!bA=L4:/,k 0Xy |#G<<._bA!e V)K?{I#|_(N-'!łBXP,}ș* ebCsV ΀dWʮ ;MB B(?j֜SC8^,.~gEX@ B!bA H,eA!B( B%g0@̷;T*_|mux,'Eqy"/U (:Fs-}t- N6[==/,KCfjG^@\UHz䞏B!łA7 S^;S/y/p2֋:Ï x%BiQbDɺ(z^Vq:7<ہթ(BXP, `w-^>~C@"{XU}dL0vE%˳WKxѠbXڮDU֎yW,(BXP,k~*x&7'I__rg)L XҮ\6pb:"` zNT$ V花7> !B( B`鮔qQwКjg^o n<\N+.Dok%$ߏXDZ齘8#M, .Q SD}-w!k׉"'bX  \x5Dbhb'w+O&i=?@, 8xlcE=8?q*XX\>X\p^0F}Xܻh~h5xEbLWE5FGePX*cW:{z5ct/_)I Bz[گuRf%:jm|;q'oX8=GXSvO;^ߡbﮐsp؊eb!M؞<` 鷨[U,ΞX> }jz iM,"X  l+WE=vcw0nuTD҂]O؊ ꞲCV=i $' w|{F313>bΤKNz,^{FWUܭmqDfbpݤ%wq{{lp{?N^ɩMG3bXT0^o ΋Uv,ruo_c0[| bqXb,~ʲyVp^ȹ/coXZ1$n  I Ų2,K{ }_X M3,B^"P՜JcqyHP{ACZ7bqXelV.Oy{:Sk/)J~BvE)kRZe׍}\Gej~Zk+3Z0+IyEK~T- dzS?/Kb4 ʻ5(B&6e*y Ǘa@, ' ({IPY7/9aYmwJM~/a)]bؗZ-ɪتa9Bv*l^eF|z'Rynw|W\w+ִ:jOZHkc\g bq|i|"—@, 'f?26U`is{{ew X06]O񬾦XĿڟa롡4Kx+\Zֶٝ}ِTmg=Ô%=iRZS-S,X6WZX˰a\K1]h %I"X06 e'd_ϊ5X0PPEB.YLr:pI0XgYIQ8N6R?K[2[FL9Jf7I6cU-K,R;$1!~E\,dpE|bq ,vYrMHkc9hm5jeռ=*Hj_bL{Mj3#\1ϫXן37gEx Vt MN'U82㯟·@, ':B%lNvjEҞ2V܏X|ӧTR?Kj{rpEL`Xp),@Ɔ4ޭ%%tK6wX)D@ b8=bMX쨊ENXFޏXsz4ĴzKFhR+X3bbz%ʺU&& P i9vJҷX.kAx]Ɩj"&1([$y 7lh+A8;jbX, _ >f,Ui|6Yn䷘ؒdX{һeƩ%UUX gn.0F;^B`}#*( ]vGKysݽ^pp{ܜsҐ\7i2v򘜄 ,*g/vvj>̰ 1nKf5+CvqX¦lxxmkZx_j ‚nޅ_vuvțKKm Q!g=(}~b.7xkҚ-sub*@EXE%~C=nYo꼞O(,XV߶N߰.=wBXy']'k嬵hZK;"a=ƿFePs,a@X鳬*;Z.2f^VUKXևGao͞}y;{Nͺ=ʬ)v+`LݨbuU"c&cͺ~Sύ ȆU5x ‚'k6Rf/?|(Alu5Rj}ro38@X _6kxy3@XBݐldʭl?K]ΝW%t Z޲^YV~#/rҵ m‚M^Ֆ6ͮ9rV֚z ,v]Zx+SSw`^^@XaAXaAXa@XaAXaAXa@X@XaAXaa@XaAXaAXa@XaAXaAXa@X&FqLjOH}[?i‚Rj{4^n+ǎ:#aAXE1K==3YpKdǐ9LXD 4.^JJϷKGBJY_aAX|4s&&pa%aU(#2YX]SnX=M>FJEUtD6|`X7YaAX|["OTGGimtԺ33_#9>՟Nb>-];u gZL cf_s$Iδ8w'3N͝=8iN XAZNG!іi?,6y/3|7\ ,>~Gބ˝1>q}9I6i߉z~^?"׷@f'ns]ek{Nx=F?WjIEiɆ.5z{jg# Mȅ| ,@6wx}0d*u_ȣG޹T86xǍ-푫~tiU*-,UBݵv_5tCi9ncj=6#g$n:ȱeX$>?|9f+7EԔaqdA`X8jᣙ=^&xÃwMX6l ,vXdx7tDG ?&it;{S% ㄞ*Gâdo0z&ңyJMț( aQI5 s]KY{of/"{t4Va])HdX*yN%7ȝ#.2f0IsTXlt!uX󏤘o; Tssкw]N7v}wǿ< ۳zIDgM(3,̉J[Ep06 7Eɳ3eWE &ðtCv2SjvEqvaAX|E~V;M' mHo+,ƷiXLL$,#vS nNÌ&S:E wg'Rt^[y‚f-,^U;1'e?l',FT|*, nr(,B#4z*9qo=/,NEk}ߑmXBo aAX|3Z$^-^;Һ{wדFpNbYC"5rBo$;^}ϙ'fxhY~?0#Kw̜sO ޽a1*Ÿ{a` g$UNXt>HV$;rjή Hu_ǧ0jh?\J$+x]wKa!'{%Mfh@^KƩd#}""edy:}r.q{9+ԨQ"&"aAX .V)ƍhbMSy2m Bsj` =/nۡVLy7g<]/,F3O+r0TbFk:pkqgXt|z6*7$8ٯ+ow^E]rߋa3FJg_[)Z"z>a/dKhKE_E^$WhDmɦ¸Qٱ8xoXt|z"ޑ:U nÇaU]y~>/I-Y_?jN$[z2{t}Xh%غYPjOfvOOv^S^l-$3 ,yKwǜ*5vFS>aa 62kd{a<-?KUaa,U1Xt|t̜DW% t7O/3B D$/=o僻p>QZT8e\{Ei?_^+ۢ˜ڱgݭ{2S?D_ ,?JfT!~jcV5nl[}:W?A &8ؖߛl?QJ{?ۣ~_ivEJi}•m3xr,aaAX*);략O6_!b'r5wޏj/ot_b?kaQ]QՋWd:B߱#AQ#bUR^*7QwXt65ZRGg.  jbn] ս*\Fjog-3_u" 髦>ӯ/aٵT'Ʃ>@CwsltEnClwŎ(aqO,U^|,}0ɴ灺PC=wV1T#{ycs2UkWjy"DxwXt޲D޻Taq;ߛ F,1 z{B{翵U20'1>yŞXqx?,ݻۉ$‚76ʍ{I\4Ų_GM&Ҷ LiKRгw=u.'P9P[a XˉfvQ=7Wљf84b,|,/,^W7W3'{ܒa y˾CRaOJYC=WzŅ N+‚D=Fùz ЕT90,^zsR0] J3,;,gU{-93O ", , `x-;0*ȋ위 HN-wNh⦽О3{ܤq˰(x/#, , `}Q^(ȩHua-|daXuOD=]0,f   rZ Eۅa S9f:r`f ‚>Kcˡrxh4R0,T1zBG#, , `oԬZ2 &]aoou?6kWA3aaAXCk;L4I69T/_z;ȋV%2 j ,U4Eԣ^HH7ÊPX驢ib7;1PXoOԑm  Rx*zV^ҢEkeP0^魕ҹ7ag,‚וxh\:ޫ=0fV0eŔaa$o06ۯG]՜v0_%-3񠜳w_6cO;{& ,?Jl? w“_IRsg."aAX)H&7aAX)]u-"|#ziR["_ a왧˫UB , XWu@Xjg-Z|VwW , ,@XKŐ ۿ8}m^7FDs ,ᑨEŃ۽ilaoH4aAX ]wÛ +wea{eBly^2_{/NAdmWU w7bt\sD2/[pǰ8˻a[mux xYv?taqЮ<;/,?w7>Myϙ/AQ PRX(zHP( rbG;u/ k'٥Og:Đtf ,R^0566F w[Vm<0Ϳegт=k.eV5?w j1K=ݱOf\;Eljx.=-lxe%5dlm٘&El./vW5/‚)9\̆> cZפ=;٦sd5GiI$Eȵ^-{NOzY˰lk\Iou}0<m4[q}xy>g߯K ,dE$ ?1(۩37$eRғJ]™H >>Ku)ޑ {yX8=2+xTTT="rG2/f2r%ޒJDJn>OțNӌ:*kηMO{;_ aQ%'Xwo5Z_}m5P8jڒΗ-Iv3_>cn喈:|U,}2H932t{]qb+^^7aAXTyuAqwxWHD E=n7ELo~hXxgtLubXqYݔcXH\|l_g<aAXTWtG`϶â}'=E;IU r/yp΢KRaF,^8R>;/(rWaAXK::9xEouXtxx:,ݝqE,^tlGrv ,9c\u}GY #"3_ \* ?b^.MGXE , e_y#c@n| Μ*x,N)ۍDE ,mvpR,Y-ZaLO',RX<Y~XL5 !9ï', ¢ҒhNY=x\(,s#J/~1,o^nId8خaAX/ޮBO\WE)z̟ ]nvЛw%Eu)L4]YZBXw%1Ά aMxMY2[alw:.ށaAXT]ӐHzŌD 59O\kyj`X[Ai4T 51odnUBNL';Nh"[â#!&? aEq)'W*}"?-ItaQu ig&m D1g).Ɇjy\cPЖߘ="IDљ 3ݱ07NIŝigg}]6kRo:i ,k]يfw|z.LNxg%,Xi:/Fα0WUaE<[79BX]Y',{ɬ9Ú9`m[e ‚q@m>fwlɷ'o_cK[jGwmO6<m!4aAX9"O׫- P , 7kk , |>g_̙͋aAX ZXs-aAXkE{o gW'[-m ,‚ ,‚  , a@XaAX , ,‚ aAXa‚l>UbwݶalaAXcw(wxdaaԋwVoܯ}4M? , >LkE1~bʩ5}bt0O ,: BiXZ;NL'Ws"c , ^вh:b*)uŇnu54aT=,*Oe}DS^|B!8-6pX[G@X@M¢bYD׍* ׁU*:h_30_aŦay%aa.Ʒ?a)6KYEubťoDk`0ww+ aSϟ|.'?>6-9ӑbBEz԰ȋtVDZu`lT{&nW( c;${f ($;`# yDFA^F-1  0ϐl4t{bt9{,6XahnkEe4!c"qL%Uuekx_޵¼Ni{L6DL']J$>coh2]?}F&}w:f[TM-e8;=D6{<1{Na#X(exISj5UY\JKfHEJ"QKE'|˚64f%7Pv BPkHԸ7 L> o|A8lVxD܁(bus#@3yrl0J/ zƅoO1 ɭ^ʩf*z;'^_<(R`zEG'hڞ*״mR8c'|G` IDAT<|I-G8i,H$c]rƂE5[nBP(ŅetCPd?CX- o|4be3n9zY³'`I9XT57ACs,`6EDV PHY[+ ` kćil0>}zZ&wzOR^j$ rg|pչ")2 䑪*6xRYK4'3,(6kN,3Q3CE|WP( B@ffU<9.IfƠ,"wykMYŃ <4NgcA;ݮwäyf?ga&G.^cr7 g*Z)]qȋY J 9M5=(G쒢0YV]?EEBO@P( bkF(^+`Ig`˭wNku51NS"M*0='acV W= _DL)jnI +YdJ񮦥yPhbÞYXtA`n-  B,,.aQ2xeE/, ( X |{^}0R^qst>,a1NH(bZa~[F9= ry ³4G3g m*ӎO+;>PCP1CM͢P( ``q1q6YY,A,)#Pp: O+XJ 9Z*.o,˘Q*_a!Sbs?oE}B-6X|u)q\ވzy«kO BPV;qCJw`F,"ɖ8tFs){V1R*dP<k<M + EOղ)FA#= ,hmyO{Y@ɲ ,Ǩa>z`S1mUNs BPg-K#n+h3E6[ kIsE@2osp c$eUNq:X2>>;#u?)P( B@<G` [i6Zm`a ,Υ^ o %j>? ,X{dnWYlRˆf>}@_>} '7LJ4g+gjXɥTS߫9;Xm\r:7酚Fz'W,(L,bUZ( B!X X XrrG?GqC~n๊|-n aQ#yn7 !S!kYŰQue8 | Mo _+P;`A _{8 ow/D@ž2 eXuEq{]eK\iHQ#J/yɑu8IvD"YEP( ``q.Qi _jFm}$EyK/ X0{u 1gC^,=LĿػ&MkhQN`&t]Z}WK ,ϯOL޲OΈ/YE{ ,ÖhRYO:;߱>8_aAX|½s͙s\]%s9OC  , ,‚@XaAXa‚  , ,@XaAXa ,‚  ,  , ,‚ ‚  , ,‚ ,N)Ȩɯ ,O%#ӆ͈o ,Ot 6,Dwws~^ ,OSND PfD&.zM‚?;beea!, "LU̻dޒ;J!Iۏw(s׼EK`Zy-%'x.ѝ5GN#aQvQ k,>Ws{α~EXHUK6Zά3wΏV~)ήLHU;B쾩`{l`kn3jXnx|7"Qsצa%f%cBderYRE&ie~8г7(T>5OlF$\˞ #aQDJJ}Hlsb&m"&zkWEˀά]o8_I/(lɔrvmgwhv9ʗ5}!F "7,"54R{"/EK3m.AwbZgDh׽n5m/N(u9*ztfEh) bf #aQ$JnUjMαv;ި )ͬwֈ?,ۯzK}^BiZrmfԑ١{]wȋ҃x: xz(Ѡu/Tb5¢ǜ Yu8xaBo{˷f(W(רcw ,V[=_Pot /^|ofy1LrzsAU%}CĜxsHϛ *^eJDKhs?WjWbє, nٲ.?WZs[Ļ:[aAXԯ^}A iGd}U'ŀ n5âr.}j蔈Γ˾pO(*X{<%1E|avXDC^ۄ"PE].<|TcܟȲTAy U!&y /AE]eGq,)=owӏP"t߾n9_}/Ѫ(!V   KiP$uU,rl@,LWE) "dwړOK;,Xث/SWSSʭm>UrkEk H,  p"Wb!O'QSlcpbi `FLiqR D b $]2 F{r`2@,!@bAAt*IX,}M1bCm&w D' l_EJMi\cn9LbAA#Nh1i X|X_,Wmb:b5$Ð R+b!i5*;F{OO!>-&b,<3dHbAAAbAbQIK}(kJvRZ{n*m X|uKRhF1ƖeǷRpZeTK]_Ă     k@<.kHQ׷-aܝ CqXr"UYŸƽ2fڜk㽃L :|v^,wr:rK,?%.cjP^zd:)QWwXAAbAbAb.`)YR_zɶM4f+q?UU73x۾'7?U2    C!]?Ǩ H,H,. 8=Cρ\j+sqY/xޞA_xu 4H'@U)qVc4-yxEl   swO|&4:?ltJ?hw»bqfc=,p/ݗ@,_: 40i Wכ-_9R'ΎĂ H,H,{_F| 4$?WjuBŢCu,2Sz0hB?C,BUsƈ].GRY,B5ZpH,n+Nxt7oS56.p~Jկި9Fw9>kSq]uغqyʗN#EbqUR?9.U!kbF!$AbAbAΏo?~}l{P#^c66~ߴI~y--f+k2(|A"@|>6/d7bqXV01Q!`iA܊ǡ+X<ԜQGWf/Xr2m$0P[13<1~7ǰ10̗OJ 2)l;am7o6ԩ-ɒlX}UH#;Ĵꎨ.pv[s]=*Z 1֧o.1֩lĸ.V(lCX%tw/.Y14ܼ)SXEHL󷓣aǃTq7Xy(ۃ1DSj[vTtĊbQ.\Py]-3KhaXXsma ;XfƸ;3-Y:2?AXX)o>m-m2(I"<֛6k+(^dP6xeqFY6M%~hL)MR}F$ɋw4j F6g2ڟв1 \n#[B?z;8d+ Va[vpu@NLd*æP44uUZX+wj:2dka媞Hq%v.O"!b=P.ՕZi%bL]}Ѹ򗮥=;_X􃺷.pvq!.XTK-WцZRQcN܊}a!{bF>bܝFo  ԃw3=/?z< ;ש1Bx.w3? {[{;qMAYS'1:L"*H'eq*.͔>/`rE>(G"7-2XlV؝:;V)}NDũFȿ!DV%Gcty&8k#CG[#nu,Q̑`5ˠ9jmUߛ7,yh4) ,S,>J|d>[Bu+Ͷ`}G" ,^s0)Ә6 >Ïd}ڥD"cBl'Xlii8Zgͬ냣`H\5VU\$^n5%SA[D!-7QX7}5X[!I<yWPNZފ"~.~p `>?M1qn4UA07;"U^C: {h:*|`!DN{D=$iuʠ9#ݽ7o,]7767Wmj^R-?ګ (ևO8';XyRj5p{G'+A,<ŁVc/E9q:xXwqQvc*"aP]N 4O= ~p `n4?ufT,p@'5 ,#1{ƒ7o33 RSɘ>5X<.ɓ,+Cill1Ƿg[lK %ٖv™ Ox,vbȆC߱]nWbK/,Y8JE<+IٙxXDNMPc_-~:/#4"^-!Y hxcl ,P/NJXZE(eyu"^dvpWɈ̓ o.,3ۯ,x,:,njѩ$a`aBYI `Ȕer+ #|-4 `mKJ>:nkS`+wmZ(~__2XTR+9_vl+ȼ/V}],PR[:y a"qۄF^8\Xī cu7Иh,p/ ěNJHX6%* ?:oe2?.uG7R)P .XPFxa=hg˼U0(~(3HRN-q!Y$z-hĊNBB!!ypT`*ކ(R ʤxRH&ֳ+D )ʪ0=$W u*T%]uLlP՚PF)Zm6 ݌RGIQ 줃Kr T+j@CmV”iĻY 4pNPNih`~ UPWjB q2=Eqt'E7\i@a08"MXϮ,'-R $0VMXplu@]ѻ(FI%͓hgnGIQb _LdcŪcҒN ({FH@ ш7JsPN?We>L39[h.iC=s=0PbJdq?# b 'Y|IďjS+TTHZ"_ǓS5ĺ|;3<#k %YwAs%weM4{+{;bWcǩ涬[_n%ejyȊlcK=RR1W'jK9)yYn7[v)zQ{x&|bpۏYۨM{g]bX 맊_(>^lOakzk,KW\byYTOdثB!,)蝪f x~K*qD>!m?ףv;%P_קŽ[ѝ5VNi(]E`XUc #C '72joĻ0k~kv.gg<\vjEޞshMylbP&Zrܻ$Bb7w$io"qi |:ցl'~GAXoNF|q7JEC{clsJtkXæ@>eX šfa[7?{86ޫG_B=o=H* vbUHNsQtضSwU/bɉU^Ω*)=씢j/1PƊ|'sfy{176.5Ȇ cXHs5gX8qq}u;z}oّ{{U(-%u%a3ҡ&A) \{47-S6nY/N&dz Ui\)^>i}E@_rlwYY,rt3aB[8C7B|]'L#Q(lov U#c{J3a|ȶhu"^X ӧxLo:rP|X>ުgTզ$'VO Tc+WգG.b*_ ~=f{YD2arӬÒՓp@Oum1mRΊcv x78#"=dٽ6Tw_p¬-\iK ;{ĩ>pFA!AF=( qj;"eik[ =d^f"eNTX $DAJ+vcCŞ^krPG_޽ j?|@RڔޜJɐb!+Td=GF+ ,욈E穷bXމ?|@yUG9.^N,B[C!#+y.?$+MjE_Ţܽ!bpN[0oBpo:X<ъuaM?XN,)xSb!p#-rNB߉EZ,^̝"E!V>Ew:c^,>~Zʣ-r"E9'ۏ |Xp}AѮb8nX, Ql0JEdSXO3b+6^[#*E. ~{w >w4\G~ O ,X)`1S(QB%BfA"Dvx*MpbKwa{ޓ"W.XDq'?n.7E!s:؞nүx,6 K,fҫe؜Gndw6$Ȼ~ *nS} Ȋ,'1@ػ2^7yee,~"ĸsvMyB,ͮLVn X4lv hbY]d`3I0&ЪeajY4(JG:1i~FNTs¸Ӳ" 6ҍ+rZ@,*n%<,0ߢȱC%!vZC?(X|e SoZ,WH}ߦh}?S_8gWVcC,l07;اgxnjP +!(DV/| lpuV#x䏼O@b:nk\=KlwYx.{bm=1v}ijv{N z}Ul[R$^;϶V;Ōi D ,(E`awO?j~'bpk,80D0NA!wXro!qf]N@ޒ5Oi m%E^{p˷CʼnؽD"x~6PƊ<7`#7!5. *OSqŀBX4 |=#yդXڍ,&dVDm3 HNQ|k:Sq 6MEQvfQ21ȝvxt ,^H|Od}tBf|D=؇f!??X;//f2LmX\:d|t[\Ǜ?};w*a`QAU|38Ș|w#? m4)QD %J~XƄ0fYv'" X _a[t XC4ط~VI2nP!0m->&-5|*uk ^=> DQi QXu*n״ $?Yds$—^쑞F|G`U16__}F u"%08UUS<os8A<I<P4 1I9"GE"2J(Q`B,#vQ$E`i~!U'aĘ"Y %G{1iB,``qOL虗4~EbY`}`7YV~ X9w $,4Fe$q| _L݊ ?XzjMu;SjuS f!Z(Xc>=b^l+zI#=Ւ͞*0W%?~>Ht$)p:_ﰨy)n Ңde  ;RD<8 ,(QB%)X\.'C`A"yC'.Dk&O3ND IƙIE^m p IU Ų>0R{P& X _ќ`qcy%&I,q~8,^6NVWn*?M~7a6]s` $/ul{.ҁ0}"{1fXR3 ʻO8 :cQ~g7rgUq)mDZxX (:H"#H* J(Q`BX ΀ IDAT55[  )nX ʰ/+O ͅZO`(nvH !,45Zh ipQA8]p"#%ӵZ`QX AO 3)ZWyb(X | 23+HVVMO!,F} K`-\!n|"{6!`1@RT???XX43sw"H"48qϋ"9lsJ4+.EX(QD %J`\~  m]OC;6"@ &|H!ZH4iC@(7R"J1ܜ33;9kCҞ&}H ]g}<Ϋ*Plezˢ>0:.[TjĄZvTf"'Eҷ_Y{b!mcbfl*A,TFzcŰ/z[&<15?S/LaotXP8S(m(Ӫ⍻}[~)w!z[+;Xl'EADc9Imovnuzo4.GZb)wܛe9# +BYP~_ǎS\Z*Rb1ǙD,@,&c%佻;eZI [W ފ^ESG&5b1&1$E+E,LE8;Y,T*Hc ŲG[XsīT򍭭W߇W],1"hwJb%D- >Nmf$H-9E"#w߶}}hzSXTOZDf~w;:d?玞񔀒IO,Z ?[,+b1͉W Ph̪Ei HUjcB4g7bqOp+d cb1/ŲTwA9R oĢ:aA?.ywˮ&>r:EDMcTA$4mW0ӻd>Ij{þEOӇO㤿4o'ZԯG"#牫B)h&DӢ\&ctOơJV Ԟd"+d3͈ "2RK)RgdG k"̌|^3ߕgMyj%Ug3ٴ77 b1NFF, %Q殩_=<#Xoʍ׆%Uw-ykE,z'TbE򐹞Wo{^.lRS_9NeFn4_z1Xmg­@Zo7mW(<1#V{wطh}zӘYR%y#~NtPf)}[/uqJ.̞wdny '~u:jaIxj?J,Cee\Z1bxvq% o┗c1//heȀgr9vt"BR/qX'K]BݡXM x=ԜZueUzm-dVIQ>!۩dq磇lɀto[B9-Vv QnWO@}b;[>QgRX8焏@D,s,Ĺh5碑p61vڍt=-zSR=Sv4xd|{bEbŮ1rf~HJ Pئ@^Z Ӿ[9~V;ՆI3uԢ9"7b3b K ]@,>X*-쨉$-X1?Eff{S1s68 G+/k._],B~*2V VҌ[yOu-uJ,JE*mI]*bbE,U @, 'j >Wvf?~"=@bX|-|G_ZC'^Y ( @, @, @, @, @, @, @, @, @, @, @, @, wgҁ܀0>CmI ý%JXrE8f- ABn,0b~uf4_k{Xyxh\ aBXa!,@X BX , aBX a!,@X aBX , a!,8l_|̾ BX +|| a!,ż,| ,4| ,@X ,@X a ,@X    a@X , aaaa!,@X a!,@X ,BX , , aBX , BX a ,@X a2N , 8?@X ,GX ,; aİ@X aL, aY&HX ,3xP a JXaQefz?= ,<_XUԖ˞XŽ YQ]n:17O$NGeӕt$QU=YU\Wo?-W ',eYquED%4vF]|\EU톛+}RG YuU\5۲H'({qQUeUw\G鈲{*|;߆?r0a!,PbQdqeȊȧ:E^40XX& ,bXyL1]o%XܹmQLJaXpaqwӧ('8-X_Ľl , 1,&,[W-X,ȋ| a:QdIͿͶqu䃏X6 aInQGD/ayRe", ;,7< &XT/קDEL-W $,tu2IoZ\vw:]f"fXX{+bw_X ^ILɕrwd ^HX$emO8k8yT۰rI65&Yrpdǿ:܅Esr0nϺϛiW7 ,E(v&IEUXl(ʺlK¢hϑ¢oyym8>>$ALeɡxO̡ I(66 蠓~H 3d!-Yɡ}@Xa[X̌){a FR. I6L2lyӄ;TT~@XEKrSƭ(6,փQ*܄E8W@XaeX'ʻCuK$w޻[Dh&ST@XawXBiP $J] "W-]\gaapa&xlH WmB(9K6'TQ,n @X_!,d#ڞoE~sS>.hZc17eb +U֏56jPGjkbqi3/N,~ywʉ  , bjLt]k̈́|JQ[ah}c#"}jgO͑ zRȨZ{b@Xx: qSekb!fh=ýn#U\5-vpsnWF ,c vYQZDBu%|x{XlOod+,L"HqT/aGVd[ 7z ,@XN,nhO:n₧rpW~" ʗf":)"D:Rab;,Ģ8haAXػf萶bm?P@nCZcSF_ UX tEO/Xaq9V+URYiUaAX8BM6,gDi=^_ٳTZ [ aFg_qb,Ũ% a‚ ,@X[cQwEϯv;wb_Ik= $ܿhh1'V6Rbd' ‚aqE} b\-nbRXTe}W=Xk)dJ$aaAX ,Ycѩ7&^=1nn4όn?j†D0ٜmgbq.^ ˢaAXa&NWĢˬ [rj,.':::UN _ޝbbq.e|>OYaAX;" 'ͳ7&&P"64>Y3EM/y!21s,nϝX-[wE0&ga? fs,aAXXrfbBLR]퇂ҧF1~XMRA83'MV~ba/v7n 9@X , X6'xFz,,Sl?Ua!ĝ{CeWXS'&o[aqa!nWn| > ,?Pa!,= ]a!,@X BX , aBX a!,@X aBX , a!,@X a!, aBX ,a!,@X  , aBXa!,@X BX , a aBX ,|}~ja!,•CcUrw! Cla7\ a/pk_CwBX<ߞqߩX>a#,p\3wůNvn aG>g8T q) aq',Z a+^o7OtfB(# ,iq“K+3r) Nh3,# |śaTZ3f!9,>=icr~a?.?i- ,!ܞq^8a#,xkE—R= =RXBX ]X~o(,$,z8ppXZwՙG1 3җ./_فͅKC j83viwc] 3ED..I3+ /ѹEipܚ9}}NG ~7,z::,N|+\űPtc ^<*zf~LU I /,m{i.'Ij/P$I7m;If3Isd3a_|;?8HV/'HaJR(]x>㵷W[8Kl;:INzkה;VsC!-µםKi7ֳtKssa=Ɩo/oee6$g7`IqbܹN/Rz%o:wIR'4,tOsMWڭ@mwc=| ]}qDzv 0I~ʎ>`͚%I\RpZ_(X*|fx{9;Qk鯴k7tII|`ki,~:xGxBb ^ոtǛOs?kFVi{}(w>MH BX 70(\/&!i}F)> 򀰈1|:rˏ>Y/z~$=bs% 09/p'^oSz~}Xiگ㥽tJ,d~}d=;rP#fwT9t}>] {ңuLl<U1iI OyεmӈK["?| ~#_\i섶!X0uzR=~ݨm{:<~㢦Zzfm"gөwéy7xaz%aZ4հwRk>aQ*ͽY[vX<;^TCx?inqcpPa^la}ˉGqosuh5MV͒ xKkn_[_={?1^K۵PZ~{ʝfyPNO.hd7__=};9f U^WKO'~A)ŋZVjW*M >¢?7[+!W*7ǔr9&Y󻍉;Y4~roifq;>G1ncοϝí7Jc&+5]T0IRj^R8סI\p[\✶?1{>$D)!)7tqcv7.̥aGh,s|9^& olכyc0@Xwn=m+]%~-ݥ8jC7')SJ9 \P@7ԫJ`_c1k]&I>s$@`>ʄ޴,\مNlVt-O3r83~}1kR$n{CY =Δ TzP`:+eJfya4@3x۝ =¨ax2x={T2<3O M q{PQ.`e$9ZUWX$A2SIBWVx7P`qK@Y끚, cMg& Ѧ[Zcɮ)&p~E:`!vTalCvH X ="i+NkIi`ZLҴC ;6r`єQ 5qN[$X0]~r+St?dŊ /v~BUFVWymS礔qލ> EBj CI xXԤd kF¬`Z=>iDߥ;aor];%kX?n ;]*`aə,#53yXМ6xd dg`#"CgTX+ )?-5H =7DM](((,,((Bu^+>սo&&\*vBӎѣ3.m!*ze5KtگUK%U[=6K3 N]JOt?󸒓THud۸I`Y~Z¼Lm$IB`4&m>~{fyg4YB5HCf Gg>), #))T4 cyݏQ.ʥLdře#{1ilאcsOX5m+|ԋ`1 9e87훽 N{jfgԥㇶ $g 2B^e6ȃrɡޖ,,>3B1üpi0XXrm9`ac'VԴ`/\%` p_<,x獼ߓޅvQ H9c`   ? OМJΐbq9R\= ,!G;َ[`3xyo\bW,9zv>`,x^3* YR+-&9SHR1yg~)4} =" ,X!XXvwEܽ1`k_:+f$X 7b ·>^sټ]!7V5ayX<b'ob+%Xp61C?/Rs(Uv[ 4G,L yns%g9"=9*ǜ@ǮZnr(P|ߋgby턇Vw) } ,(((,,((,Cx$MOŮ;pznI.$85b:2tT5 Q*%U[= Ӭ3,eU+rx$d\7ə,Fa㊆^0X̚`;@`aYHC 9:O ^iu8WIk,c4,F H9E`AAAA`A`AA `’: a63ڀ#F H#N2' `7,V6p`i>ܡ4Kv+ԗX6"YFGU(҈Zr< X-67HL]Z&Xm{ EvPɜ<"8B+9si`qwr 51gIE XyW~-RzO ބvnl@͕fR8[#7Xlzі>Cv;|oAEcя`S7zUb sC~NX$(˘x$dr4LOe;X`[]/F"$c1M<`޻iX,Xˆt,XȢ.m`QB>Eb6?QB517 ,t ٱ^EZD)̎ZE+yN)sE<yEsKRf'iꊽ?|eOk:oSb_HߍƇ+,U;|0ǕF9 8uLnn&?NEI!b^Lߝ%rf'+nb&)33l;՛c6 ~{!Oѫƪ47vU9Y|@q|C@4 35g:6HCtNNc Zyd/.^]}eeC~'W3,Źv]T}1ث__aU`ZFmK] s     pjr^uMw^Gj gcXtmn'߬,*(n$x_Rԯb9_U jL`SWF !3/neޯ͜ h4XILo$Ν>0dC4ƙE ud">'5(2fl3;I+X!MogmFi(%e!!R*Я%Xh*ZBKiQPV]Vj'~=XfO#~Ğ?D+/Zj{UW‘/CNxv5/,RLc%,#?3|W//|:+ԵO.Ɨpsz~Ǎ Eia$gNf7ݟg~Em0/r)cM0/ vsoڕ$^vߙ=Jm"eu7/:`,b=p'9g¢Ḭ́3',JN>Y NyaezʖIFܺ¢}N\tdxX䬳/˙aOjpu6eCm^9ndf˽6 [Stpi:I^ZuËW;&FS0g_6ka!,lҭ볽YG|_]'Qhm)9o_t?̗=u}ƣ:g忴s@ga&}^jœu{k~}ޅ~-VB3|R61 2skO jŶ1֭9J/<غj|:WĄEBXzxYIw㰸 @X _LO_EX5CsL=yo]/@X[{`BX?}>ޏ|Κa!,@X BX , aBX a!,@X aBX , a!,@X a!, aBX ,a!,@X  , aBXaIyozYUx{`xCwjY 2,81Z JWTbZX:t`xx ,2zWī"3)~)aBX , aBXBX , a aBX , , abűv*,Na!,@X BX , abaa/7, @X a!,a!,@XXX@kX(,'&Μ9;5M:3g&&ƣ8^a1śa!,/)ܰ8mja16ʦ'< M°tE<,a!, aBXΉ ,zo>X) ,oE6 xYaa eS:Sx?JX9x[vc GbMd!,@XBX@waqDžaqZX3aqxX *9=BX@B/Z EZXe1< jaQ" Iaf/t-a1zbx8 a¢]W_BX¢VQXԧ ޮE8AYLNN4}UM {4vq[&'`( 㵰N=Rx+bYEO\. #?-|/ ,a!,@X7""B4 7+Rbpg y!-MX/: wvWl 5nJ>lPX4*%,kaQ"1a"Q=HBa1P BX̣YQa-ݑvC=Sâ6ő'NPpEFV.Ozp_K -}X âi#)a_X Z`4\衂Z'D ca2v%,aQz{e6 는Uvv[uEjZ( H3yeQX a2v?ćr"*+)53ul eaDž},,Faΐ76^?ʦIvETM)b-1"@ϴ UF-e1, %,޹Dq8b셎^F{c1vl Q@Ҷv;xAgIORI lj);jgL Y6|v ~9;۩*géa%U{+{/=8݈^aUe~ᇟ?=p-0 "*v߬ y!Ooo6@+ gʓ (z:'DTiYbTһ> mup &Ȝ"C-Zb bEXvbkEoX( yễ5,P K,]8#XK,vE"zzDpz;E,V(b&f C\(pՂXfmۡXB,[,gmob1Xb+^eyk[,^/,P CŰKvE /9}Mx^0X@Ez+/7@, Z,vmb^wV,ZEJ.Y<X2^ܖyn a5g՝ޯ^hV  W?o~Ԧ5|bBYz| exĹB Km 7{_"XB(%b>Oi^%)w_ }b:D,Yng,D|@E6{i쎉U8kE-fbQB,p*Y`bGF$ⰑjC~UƦ:b"E,dd6C!Xvb ҿ#b8n¿,x4XXP邅yK,u@1^EcS(I(5:E,YԌYdP+<gBXbW"d *6,x4nXBB+>'^;G|QP+ssf64:@,VEx˂uW,rwmXwBbql{[XA+-;:X >PI>fVE6 s%YFxfw[űbBtk,],B BĢ5u{XHјYjO"K+uej4ȂaXR?f"{"bvpɂG [,^hWw,6G;Dm4@2lJ   E[ۡX)X',YpGzZ*i#\^7m|\.ooom7>(X̬a,T3T^.=MB#}E=9bt{ۜs/Yhbuͪ\+\Eh bS1k@(~XbxbѪ_8hbuͺ+Xtln,b*llb^)qP,ܾ}X % ţ enXd|^_Z ]NCFy/x)^(l[P3;-D-ȉhxP2xD:vP6ǓbaV,:A,vbamoKKfGz[,~'ޤjmV+"@,F";gX̪+yXp$ $bn{m;/%]fK'%sY, f\p ,e^:BCyK8XȲs֊ʼn+qP/;)ߴޒ,hbaE0 %OnWe r›B,4:W,;rE8 -YPjBB^( @,N(qt;۰tX,[ ZڢQ:$ hdBhbaX,fb/:,p"V,:N,ԒEpqG߭Y!T,d`1oòٲБEUDb 0B_Njͺ+!jbw% = u*uzFGG]q.\x޽{ccc/_t\r'&&~ ?%6ZE&XjWjHrlVnBI)N,ʒWd!/YdȭoÒ,.f!bi/l(jZHrͧ>V`sSTbE+B++J8fuuQ5 u'OBKwg$=2oP0T~BE9[Zx+y>uR*YZJ9io[zŢ'̫+&:bMpvaŢ:8뷷gy~zEZk&Zjq~jN0*^;85֊!W+A(,ؓP~96kwfW4`bbB拳eX%YPYhf N +,Lb8% icaC~ϭnII+3ppv= uW`3f톅ޚ,lb1'.YPE޲ȇ05 s*FZZna׹~ i|qj; ъR+\QBU^c,`݄ݞX^B׷[~;ܜ]d͢DV8V`Wi .VZs7WȂ6uV;Pݛ gd}mY3 ,blat->%'*J  ۰02 ug$T-#'XLL- 12 ,|(BEqXXN6@$lVqklW\{E4{D¿a1)Xx5jѻPdQ CgY$B$t^8_ ?8_X\V!A\߯^RgXA#b7,dq[f1g!ulrЮܡ(RTXakE<Uy.X`qEo`QyEk{7 owEz;ߜ.ZTB\r`lJ*ޗZsEWȥY6^,#PĢ ,Kn"CPvB-."6[$rqT1 #]o%W^^! TkXMBT,zOYdv䍛MR-r0s_&O]pB"kZ9Ẉ`jjVb1}*'{e߶f]z[Yh❝*¤ 0 ،Hx8Q(R >WTw+ʣzjU'+ͻP8[,a(c,J♩>[ړ/atD`?u *r("nW,zű TذXޚkV7)bwqvHfcYh"f ga{+ )'JPZQf^a6shݚ_, #wS HCeQEffR͢\<-LxqVv6A*T"Ŋb)W<\aAP T}ΥWG,FoBݘXַEkjXPzuF j!jgm= 9U wgv[P :X4&]ޢX݅o/>,YE1YTj.dfY ĊV,*h =5+^]ޙtb)cB,0Y-JB]C+ֆ Lt|Qa=XkVحn"BoXhbwbћ/Κd*ky*7mE[8U\)Y٤UZr9%b``ѿ5[MBV,ڳP,t[/ChEz.oanϖn]jV0kTmV\\x+tonbx 'Paɢ{qd,no?f!©S9?BZx6>`}B‰E_D1޶aq{.XP[ՊE&TW >XBuⰘtbam9cW wI*U)(wJWAZXY=K5|JYᮣE_JE5U9>`⧣| b!"jem ]܎^I,:Pc7-$ s*C٣,4ZB-m/Z);ͳM$\T*UZ^{ Bݳ|bb C図v{,B0j! .cY (_DbW탲`QBM7*,d!Pb,Y S V.ʵӣ>Q _+V׶v~B+A(wjv`q> ucbѾ8xpP`e{i-wK-\Ѩ3χST4b\")^ 땷foZ,Y]~3$v0?[4 R0բEkHZ,BhIE S+V10%?^^?b]dno7B^R2n!rH1a +jDM)THVZ!5nwEku{bgdNfqY4ZTjQd:#OO`V+t++ {j,7.c+,v7A-t۹E%/c +E5F*UvҊqhƩY'`1wfƧ0jqh" `\O5FDG(T)D*UVZ(^9(?_yŶb0޲k% fb)iǕY( r1##|GoџVb^3E(,ް؈OlN,FܚEjd1jQs '.Zq-X-(Na"XEZ*sPrp PkbQ'0k4^-ʮEt .^D1 R}*J18E`ekE2uA*X[,IyZXNC9hq3Z4ܢE8l&R?QU,G+W ",XPSż"8;,fl~R-@Tv ']$~w b>AQ J18 k<} ֬~C,Ve,,jq¹E-.^a8@4sE)SDV⨥+d+^7&;S욅izfgZn!naE/p/`6TUVBovvb ΔS_,eb,PyV[]dB 8FW5'~gOccRSV YAyEkahB^ lUpPKjCQ^.]Xh:_)Tei XArjBP[ _^1Y8̢ZdLEy0 /M -ߥ24HE!W1(9eWL _zr{b;9Y Prv6D _-R0n UjO_TK+q> bȀĆ|2pWrffvwR=Y0Y"pESE,c(e(P-dҟZ赅Ů E WDDDDDGRCdATZVHWP+m_jB-`і7Fo, nNPyk"-2.6]lHADDDDX=i1)ϦUjV++ a}aq]XPPfgad>b_[[Ը(PADDDDt$;qY4MYfEqE`B]g,ס\Z蓨HPʈADDDDR=i14MWeE8E_n[,,"Eu!y k tYW(W}ymU^n/9m`x=)E:h! .6^$_da(dx """":8,OyUPUۺ"AE+f]1tn>9=C,E… }h'OC Ȯ(W;C1Ԝ,|Z[Z2LDDDD/ Ҍ4))jUmu!aW“~ϡ|ZX[\(]d_a_""""zMfciS)2**++ \1EYS,b{ýC)Zų-BBcFыorgKӤZLQVj_V(VlWPնqŻ}!Ea3 di^/-¬-../0*c}"""""CBE!MQPaj[!+|`a/&OC-ҢEM;/ 00*e ?""""zOjN**BV3}]jVXEx 5- WZ|0xŮ̋n$""""DIYTaż+ZPWEt ҶuQM """"S) ** {O IDAT5+,&> u[X4%oMeiB^DyuxQaRH)<(L,+*Vu  ;¢{,¥Ҷ0hbh=oSiU)** }t|`ug,Ң2PкĈADDDDtziV) ** ++(fnOz+ZEEo^6h~4c,)~HlQEUx oW=ܾ,_Y ТB~""""iF2*RHTUYW4]!`і-,.v]$^d_HaG""""z̑v-S) **$+늱;Et %pkYt!--4../x}SLbTjg"EEI(i2c@!+}GbZK }l JB3F^|HdAH!M񌊢h[Wwa1e%Y[ A H(xqDDDDD(HUQVj[/B=+P-<[H\$]d^_ctADDDDt43 )bCԌ+.eYZmТŎ 2GŰ6ŎJ+*Vw`qYZZn nZ1VbSEYVV8+ YroapQt!xc DDDDDkQ[S8Tᱢ8s_qXE{i!h""B """"sQ9՘bGE ÊS]qgT,—++qZ([X\]`'d*?gtū+. Y|ae"EхCSADDDD4R*\VHW|q+ *hlapu|Q """"rQ5)***V+X<˲EƅЅEHQѡOR"Bϊ㮸,❅8R0Ⱥ(Pq9"=Р(HШGPA5>uKX\C"^\d\]H^8r)ӨXP"B**BV튧[7,K -.,/Ba ǏՈ*w*,+Y"BB9 """"ZC aAV bꁰyݥEхE[DDDDDPyȦШЪ賢z}SXZxk c W20G LQԦP Ǻb,¥[\](^x9E3]MPav.+u!W<ݫQX b-.*^41? """":agU9ɾ U1ŊW\CcȶPpq3%B""bbWEj\..,/Z˜1W[5** +\qmXɢGo[]x8DDDDDkE!M!T&PE]q?X^ZpZmaLOΙ,w)]EhYZTpl!qu\gK2EAE늫+ڰXE-..:Ę4ZzS*bVb*-<[H\h]8DDDDD)BQ+V]tVwҢbZ/Ę_6\:l;Š`]q;PҢIF/·HЦP1̊uW<s;5Z0x#dқ^ L+^_; - -"\]4B1 W!+\qIX,fdiQۢ ADDDDD ɊWW< v]Y±(/FADDDDIVOOׄ5E` 0n """"@IP"fg8-..j^t"""":{t/cSHTYуE--B[h\X]D4NpD k X=Vt\hXL,,E-DDDDt HHQ"fEk[1튧,4--|\ b<~DDDDt**4+Nu`q(J!0n """"$2E V)+pd1E .zDDDD`< 6+;ϲY|ՑE@y[""""UQU#\`ѧҢc Gon$(HG0xsb(weѷ4ྎE⭢V-dE,B8E/"'@[!WNJBX ,ŴߡRmqd^iQ cR"YBX?T0.r}jK?}gv&gq4*6 *ʢsZŅHE.J}!48$El\UlŨE.}>fgif=* a"ټQBRb ,E!.}[zƭ .NgU@X a!,E-/15`@E{"Ua1.}q.2nCCKX ,"kYuW}3x[I4BX ,v΋.m[ԟ a!,BX cA!,@X  a-2p\?o%,BX , a!,BX ,śT!,a!,@X a!,@X  ya@X ,  a@X ,@X , aa@X , ~ r;IENDB`mkdocs-material-9.6.4/docs/blog/000077500000000000000000000000001475306445600164775ustar00rootroot00000000000000mkdocs-material-9.6.4/docs/blog/.authors.yml000066400000000000000000000007751475306445600207760ustar00rootroot00000000000000authors: squidfunk: name: Martin Donath description: Creator avatar: https://avatars.githubusercontent.com/u/932156 url: https://github.com/squidfunk alexvoss: name: Alex Voss description: Solutions Architect avatar: https://avatars.githubusercontent.com/u/4134224 url: https://github.com/alexvoss katharinalisalin: name: Kathi description: Communications avatar: https://avatars.githubusercontent.com/u/105352741 url: https://github.com/katharinalisalin mkdocs-material-9.6.4/docs/blog/.meta.yml000066400000000000000000000000421475306445600202220ustar00rootroot00000000000000comments: true hide: - feedback mkdocs-material-9.6.4/docs/blog/index.md000066400000000000000000000000071475306445600201250ustar00rootroot00000000000000# Blog mkdocs-material-9.6.4/docs/blog/posts/000077500000000000000000000000001475306445600176475ustar00rootroot00000000000000mkdocs-material-9.6.4/docs/blog/posts/adding-a-badge-to-your-project.md000066400000000000000000000024001475306445600257510ustar00rootroot00000000000000--- title: Adding a badge to your project date: 2023-11-30 authors: [squidfunk] slug: adding-a-badge-to-your-project description: > Share the love – you can now add a badge to your README, showing that your project is built with Material for MkDocs categories: - General --- # Adding a :simple-materialformkdocs: badge to your project __You enjoy working with Material for MkDocs? Share the love! You can now add a badge to your project's README, showing that your project is built with Material for MkDocs.__ Material for MkDocs' logo was just added to [Simple Icons], which is used by [Shields.io] to include logos in badges. We generated a badge for you, which you can add to your project's README: [![Material for MkDocs][badge]](#usage) ## Usage Just copy the following snippet and paste it into your project's `README.md`: ``` markdown [![Built with Material for MkDocs](https://img.shields.io/badge/Material_for_MkDocs-526CFE?style=for-the-badge&logo=MaterialForMkDocs&logoColor=white)](https://squidfunk.github.io/mkdocs-material/) ``` [Simple Icons]: https://simpleicons.org/ [Shields.io]: https://shields.io/ [badge]: https://img.shields.io/badge/Material_for_MkDocs-526CFE?style=for-the-badge&logo=MaterialForMkDocs&logoColor=white mkdocs-material-9.6.4/docs/blog/posts/blog-support-just-landed.md000066400000000000000000000177131475306445600250470ustar00rootroot00000000000000--- date: 2022-09-12 authors: [squidfunk] description: > Our new blog is built with the brand new built-in blog plugin. You can build a blog alongside your documentation or standalone categories: - Blog links: - setup/setting-up-a-blog.md - plugins/blog.md --- # Blog support just landed __Hey there! You're looking at our new blog, built with the brand new [built-in blog plugin]. With this plugin, you can easily build a blog alongside your documentation or standalone.__ Proper support for blogging, as requested by many users over the past few years, was something that was desperately missing from Material for MkDocs' feature set. While everybody agreed that blogging support was a blind spot, it was not obvious whether MkDocs could be extended in a way to allow for blogging as we know it from [Jekyll] and friends. The [built-in blog plugin] proves that it is, after all, possible to build a blogging engine on top of MkDocs, in order to create a technical blog alongside your documentation, or as the main thing. _This article explains how to build a standalone blog with Material for MkDocs. If you want to build a blog alongside your documentation, please refer to [the plugin's documentation][built-in blog plugin]._ [built-in blog plugin]: ../../plugins/blog.md [Jekyll]: https://jekyllrb.com/ ## Quick start ### Creating a standalone blog You can bootstrap a new project using the `mkdocs` executable: ``` mkdocs new . ``` This will create the following structure: ``` { .sh .no-copy } . ├─ docs/ │ └─ index.md └─ mkdocs.yml ``` #### Configuration In this article, we're going to build a standalone blog, which means that the blog lives at the root of your project. For this reason, open `mkdocs.yml`, and replace its contents with: ``` yaml site_name: My Blog theme: name: material features: - navigation.sections plugins: - blog: blog_dir: . # (1)! - search - tags nav: - index.md ``` 1. This is the important part – we're hosting the blog at the root of the project, and not in a subdirectory. For more information, see the [`blog_dir`][blog_dir] configuration option. [blog_dir]: ../../plugins/blog.md#config.blog_dir #### Blog setup The blog index page lives in `docs/index.md`. This page was pre-filled by MkDocs with some content, so we're going to replace it with what we need to bootstrap the blog: ``` markdown # Blog ``` That's it. ### Writing your first post Now that we have set up the [built-in blog plugin], we can start writing our first post. All blog posts are written with the [exact same Markdown flavor] as already included with Material for MkDocs. First, create a folder called `posts` with a file called `hello-world.md`: ``` { .sh .no-copy } . ├─ docs/ │ ├─ posts/ │ │ └─ hello-world.md # (1)! │ └─ index.md └─ mkdocs.yml ``` 1. If you'd like to arrange posts differently, you're free to do so. The URLs are built from the format specified in [`post_url_format`][post slugs] and the titles and dates of posts, no matter how they are organized inside the `posts` directory. Then, open up `hello-world.md`, and add the following lines: ``` yaml --- draft: true # (1)! date: 2022-01-31 categories: - Hello - World --- # Hello world! Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque nec maximus ex. Sed consequat, nulla quis malesuada dapibus, elit metus vehicula erat, ut egestas tellus eros at risus. In hac habitasse platea dictumst. Phasellus id lacus pulvinar erat consequat pretium. Morbi malesuada arcu mauris Nam vel justo sem. Nam placerat purus non varius luctus. Integer pretium leo in sem rhoncus, quis gravida orci mollis. Proin id aliquam est. Vivamus in nunc ac metus tristique pellentesque. Suspendisse viverra urna in accumsan aliquet. Donec volutpat, elit ac volutpat laoreet, turpis dolor semper nibh, et dictum massa ex pulvinar elit. Curabitur commodo sit amet dolor sed mattis. Etiam tempor odio eu nisi gravida cursus. Maecenas ante enim, fermentum sit amet molestie nec, mollis ac libero. Vivamus sagittis suscipit eros ut luctus. Nunc vehicula sagittis condimentum. Cras facilisis bibendum lorem et feugiat. In auctor accumsan ligula, at consectetur erat commodo quis. Morbi ac nunc pharetra, pellentesque risus in, consectetur urna. Nulla id enim facilisis arcu tincidunt pulvinar. Vestibulum laoreet risus scelerisque porta congue. In velit purus, dictum quis neque nec, molestie viverra risus. Nam pellentesque tellus id elit ultricies, vel finibus erat cursus. ``` 1. If you mark a post as a [draft], a red marker appears next to the post date on index pages. When the site is built, drafts are not included in the output. [This behavior can be changed], e.g. for rendering drafts when building deploy previews. When you spin up the [live preview server], you should be greeted by your first post! You'll also realize, that [archive] and [category] indexes have been automatically generated for you: ![Blog] However, this is just the start. The [built-in blog plugin] packs a lot of functionality needed in day-to-day blogging. Visit the documentation of the plugin to learn about the following topics:

Additionally, the [built-in blog plugin] has dozens of [configuration options] which allow for fine-tuning the output. You can configure post slugs, general behavior and much more. [exact same Markdown flavor]: ../../reference/index.md [post slugs]: ../../plugins/blog.md#config.post_url_format [draft]: ../../plugins/blog.md#meta.draft [This behavior can be changed]: ../../plugins/blog.md#config.draft [live preview server]: ../../creating-your-site.md#previewing-as-you-write [archive]: ../../plugins/blog.md#config.archive [category]: ../../plugins/blog.md#config.categories [Blog]: blog-support-just-landed/blog.png [Blog post]: blog-support-just-landed/blog-post.png [Adding an excerpt]: ../../setup/setting-up-a-blog.md#adding-an-excerpt [Adding authors]: ../../setup/setting-up-a-blog.md#adding-authors [Adding categories]: ../../setup/setting-up-a-blog.md#adding-categories [Adding tags]: ../../setup/setting-up-a-blog.md#adding-tags [Adding related links]: ../../setup/setting-up-a-blog.md#adding-related-links [Linking from and to posts]: ../../setup/setting-up-a-blog.md#linking-from-and-to-posts [Setting the reading time]: ../../setup/setting-up-a-blog.md#setting-the-reading-time [Setting defaults]: ../../setup/setting-up-a-blog.md#setting-defaults [configuration options]: ../../setup/setting-up-a-blog.md#configuration ## What's next? Getting basic blogging support out the door was quite a challenge – the [built-in blog plugin] is probably the biggest release this year and already packs a lot of functionality. However, Material for MkDocs is used in many different contexts, which is why we'd expect to iterate, as always. Some ideas already proposed by users: - __Blog series__: Authors should be able to create so called blog series and assign posts to a blog series using simple identifiers. For each post that is part of a series, a list with links to all other posts should be included in the post's content. - __Author indexes__: Besides [archive] and [category] indexes, authors should be able to create per-author indexes, which list all posts linked to an author. Additionally, a profile should be created for each author and linked from posts. - __Social share buttons__: It should be easy to share blog posts via social media or other ways. For this reason, it should be possible to automatically include social sharing buttons with each post. What's still missing from the brand new [built-in blog plugin]? Feel free to share your ideas in the comments. Together, we can build one of the best modern engines for technical blogging! mkdocs-material-9.6.4/docs/blog/posts/blog-support-just-landed/000077500000000000000000000000001475306445600245145ustar00rootroot00000000000000mkdocs-material-9.6.4/docs/blog/posts/blog-support-just-landed/blog.png000066400000000000000000012116551475306445600261600ustar00rootroot00000000000000PNG  IHDR XzasRGB IDATx^ og]}r8!! &(rSQۀ 123uYuUzigMKSvڪviukHW[SV!3rA) y @.@<2k}}yY]{.<3s @ @ @ @ @ @ [(ޖK^KR? @ @ @ @ @ X䊩?OG6\\!@ @ @ @ @ @ W@"WLy>) @ @ @ @ @bQM14~ @ @ @ @ @Sm쥹$C @ @ @ @ @@E|oS%`/% @ @ @ @ @r,rԟ'xb.{i.I @ @ @ @ @ + `+<s KsI @ @ @ @ @\\1 (xo  @ @ @ @ @ p1>?~ o͏ߚۗJH @ @ @ @Qz//vwr&MښOx!r!X @ @ @ @ @!-1}yGh՚5߅'/wȃ @ @ @ @,+Ce}^&`_d+5M5ħBB%@ @ @ @ @;$CZc4U-b<5?~k Ol_*# @ @ @ @XVL,sV>je4ik>O˅`uK @ @ @ @vH;Xh1Zl5b[֐gO@ @ @ @ @ {Bۿf^[֐gO@ @ @ @ @ {Bۿf^[֐gO@ @ @ @ @ {Bۿf^[֐gO@ @ @ @ @ {Bۿf^[֐gO@ @ @ @ @ {Bۿf/Q]\Q뜡u1+ @ @ @ @ IoR{cpTk;*0C5\rT>זo?ҙ8 @ @ @ @MQ~8u$6׿GusGs:Ŭ @ @ @ @ @&|xIuTQ} }@rQ]\[.;;Kg @ @ @ @ @`6Fy$::>בt>j^2Zz @ @ @ @ @?w՟'%0=  @ @ @ @ @qPvf}?aZ*I @ @ @ @ @(Ϳh5j G񻼚h9}~_͝ @ @ @ @ @ k_.yog w}]㜶ƨh @ @ @ @ @S|P>Eo}m׸k|׷ 3gLw}]fDzy,C @ @ @ @ @C>&?Zb9wwqNMGcTy4S @ @ @ @ @)>&k\5ilvmۅ3Qs&XAo{?0s!@ @ @ @ @8^;rW}U`|msGv.1j @ @ @ @ @.|9n{ܕyFgUu>_f9캍mcfe92hjz* @ @ @ @ #ns16ƌ}UyX6涍1쮣٫u: @ @ @ @ @@sWu3k[VUecͮۘ6lVvc/fh"@ @ @ @ @9>^6icocyngXU[Znj^GmgϙZ @ @ @ @ @'756Nk}>rrS:jM={Μ @ @ @ @ @?5~d9qrw咽?w^;Ui˵FdKݷқon;ڭ^_OG @ @ @ @">(mfkxK]Toik[zNKd}+Zt @ @ @ @ @ "fj6Kdj,ɊqN%ϱ6>j.#_ےsY%lVqɾswʚ;w @ @ @ @ @XGKe1K+4ܹoGekr[r.KD*.wNY\r箞 @ @ @ @ @`kx~ɹ,}6;fɾsw;<}M^Ke~Y%'o&@ @ @ @ @ 0>_b9,oi.%XQky}5D1v~Օ\ @ @ @ @ @ .cUrI9ǶS[nwz5ݶǜO}if%~e:^⌎3dz9-]n ;F%ve[{E3e @ @ @ @ 0{&%Y6,givqK:kQ{qKmd}_q^9}i1f @ @ @ @ @LƇsYGnz單ovG8}j>Jv-,mx9,#MNj!ggJۡp>gyW / @ @ @ @ @ gp]lJmsP[/Y<%.is1fg?n5oy69h]sjKꛗ'wn~|89O_ @ @ @ @ @ #TOnhmO9%m{=ws+w9ncoyvK.gsm^6i>/gs @ @ @ @ @`;`}JiD};&+m7w~y玹M0l c>rDkUW/_tfs맶ץ{YmCݘ @ @ @ @ @`]#*/]N}v[u2Fn/yImr6kqy9u̒9msE7y6Z~qJ>%: @ @ @ @ @,#էW>&ZWD6R+.YĩKv6,gqsx%mQ3RSoh]ROm2ΡvpL @ @ @ @,p?ޞkNҾrE#usKk6ahLm%7=^&7SmS][M#sʩk^hC/xSD磎 @ @ @ @ @L`SO'}~κH_ivDdɭsv&ʙlGm<1sG#uSoH]yYrj{9K0˾ج|L @ @ @ @l@=pnrDj#55Y.u?ǜ5Ѿ! cgj1K(Լg:^nh}.U_oTM~hMN]D7rMinj9%@ @ @ @ @H lc)䶍GYKņsr뻻nj.>\rWT?M+m>R7GM덝#ZӼ$/TIr~^715 @ @ @ @ !# vs&R;GM%KɩkJdm5mVXs+?5o6ZKH=Gɭo6%XsSO @ @ @ @ H.)綍֧v~vgh7ZWZGcM݃o|Gŏ7LSmOmԱ͜#ZS~"G^ڹ 5Ԟj.~m"usԌGwַOiu79VܲG͛z䴏֦ꖼ?wzCh۹J..HMv߽)m&ƈerQH{1eTMi@XCmK,ol{ˑ2~"}^9HyD檆 @ @ @ @ |0>{=Limrܹ՛|ұrEkK(i6Kk^9|^hsξ"!@ @ @ @ @؎~WMivKxݝ7sƘ&lrs=Q{SP:NNHm$Qo&r۔̭MSVcE+i/\ @ @ @ @ @O7jT{NHm$x0g9׫fSV%_+m_75NBGM @ @ @ @ @@RmK\kzUskR]k,mobdٛwX9RS IDAT/|?ȥ'ULj^T->os)֖ @ @ @ @ 6?:vNHmTC_}{h~j~O5~+y69VkWobSƈ2+ON9ƝۡyAzy#5g^ @ @ @ @ض}=ϜG6U+ۢԨR5ȭ۪1lM1e~Տ711"us 5+^ _p%ԩS_y\3.ٱ8}tuԩc @ @ @ @ @_ɓryW7MTozkYl"1f}E":Lmb%cIn"\19pƧ<)?.T1  @ @ @ @ @~%/yM=sO#QOcJ"'S]M;G6cgKϻ69CUUK_ʯy~+ @ @ @ @ @ <#? S=飞qYX伆B^oWm+ W, V4n֟ʹ'@ @ @ @ @ @`n:dqu}A@Dv1NR1G.]/`XY:N]n'o/ R3 @ @ @ @ @,*[^Ah]Q Y=kEAJ/xKϳhTN+5uz;[w @ @ @ @ @,"9ŢcJx"ڶkBcsk},fLSMn-n֟ u* @ @ @ @ @XRG뮻{ݏh]hX:tS?Z[C7HYs5~;/kfZW @ @ @ @ @ @`G}kyKB@Enb,l "7+]?>0@ 711mr ]$ So4LQUy?:Z @ @ @ @ @ =yPE$i3n3Bu(i#gm;ggk'4XrN9}GjS5TءoRmGO5%@ @ @ @ @ @`sf,ƂY&R#R6c/X|=,1>SmJGC,69Ʀ0& @ @ @ @ @r:rP&z[;ZW SQ]+krTH`,1>#c5Eó0E=\-`Q5!@ @ @ @ @ @`+zOY  LG|>#Dŝ6\bN}KG5[dTXE:] @ @ @ @ @h,걧,BEws նSzG{>#֤OhĜrLuz\I=Ք @ @ @ @ @ۻ<'u3. ]]%KYRA H5ђ'Ut(ڜk̀ӧzzᇫO~ՙ3g'Oj㫋.⋫SN|%kWk|+' @ @ @ @ @c,)D.}Qr(i=w.@AC.=vI6s,"Wc#j?s<K/.ŃkWS @ @ @ @ @ {{{OMDO;pQ?M*W3tmz^#[f(iK;H !rjT׭y`Ʀ>`u=="?W^yeu%4 ׮u^}~ah @ @ @ @ @&,RA9Jk3tmz^~ ,X] L؊M71n܀P)jإNHzɀ_{sW\Q]ve6^뼚y}~. @ @ @ @ @uU*d1gM9n/|0Hu}ϲ>̙,G d Wԏ&r-莑 Ht]?-I w}wzꫯ$ΫXfYP @ @ @ @ @ ]`E$ j' SL Yrju^&84h$XP0c61nڒ8" Rn"`q;Μ93;ydu5TNZ<7 _c @ @ @ @ @eH QwcjB~N_u^1^ t$X2SmrOX{8pϔʼn>P=pͥ^Z]uUµΫ7 _c @ @ @ @ @{{{W+r9,HRVMt%w`AtuKw>h#ע'R$s8[t>}o~ ?9)>bj| -" @ @ @ @ @3 ,^s91s͹6T;vjȭY%G$\%;R{\}.rI_{%Mm.Ku^\>"t @ @ @ @ @L{z"\ Q3Ԍusmvz[:'ؐSK;H !"KwvI)YXu]?C5]tQg>3]`jf+B׈ @ @ @ @ @DN-zE*41t={B_`({-lȩ]%K$`%;UpE =tk=suK,n̙3=]sknW7X뼚Y5"@ @ @ @ @ 0Q `2 LBu}}Gwι6T;v_2d߽ϖ D@Jj7Ԛ)]8'<;ksJ<~w}nQΫyϯ]# @ @ @ @ @j ޺Tbj=f4/Rmk"ᅹjJW12~i߽"AYBb74LEbE% @ @ @ @ @ ,爄+T03Rӭk},2wp$he|qsRQ?t*,) Qtn wVnΜ9Szɓ'kΫyϯ]# @ @ @ @ @` CDS}tj;v-{Dn}ju/5yd "rKՏ/9yE},*r/뮻~8gõ]tQg>3\.\뼚9}~E @ @ @ @ @(p{Y%C)uj*]_j#H%Rm,"!X1䮚PpW{^qe]VZk#~wͽ}xYKjRkWPk$|  @ @ @ @ @=3 Rt8bkCH!ᜠCNmjE+5A9+U=yH#H$4hzrEW6Oc;3gdlғ'OV\sMMk׮o  @ @ @ @ @ E"uŜ! *rB}cts9XgN 7TmN"Z+:7>E=>X}[&W_}uu%Z<7" @ @ @ @ @@P[쏝>1h[rݦ;^_F&ĊT!u9UXgN 7Tm441dsZEғ,"ѓ/,X&um]qe]6nΫ7b @ @ @ @ @޳ Cs1EN鶏W3tmz#tȩM9Ju~*pꤠhqsJn2`1 Z' M =\~z7Od{3gdq+kW3ϵ/k1 @ @ @ @ @(,JNiSt,Ѿ?T;T(t* C~{urjS:g_OBt;1RcEfPE{ݣ,ɞ>}?\=x饗V_~yuԩP}iZYHJ&Dy䎑t"'PQ?\'UWԍ7}E{C=T='?sZԧU<./^ X &}*8 XDc'U蓼~"hآr @ @ @ @ @kۻ.;y"r*E;9׾V$,F6fIp!ϷgdTx~ڹB~Kቃm;N"'@ @ @ @ @ @`-E=+BEw߹6pGEةe;#v}Fv%'W4Ϙ-BCWD3׵C?  @ @ @ @ @ 9$hQOdk7}wWw}wC5b 8Fˬ}n; }y,JO( XItv. XD: @ @ @ @ @- XS!Z4c;V۾=V,P(!zwr8l>s moϹ,r*j ؽM\-`}  @ @ @ @ @ mE=pEMm__چhפjA_!z;VwIs9ѭ3kCD:g X(K]h14C'U4o`袩#@ @ @ @ @ @6{ф,rN A #^oXf9,z6fNp!RncBecmۧZ(>,o: @ @ @ @ @*0 YDѺcG~wEin씈$rjf>>t<;vrJPP5h @ @ @ @ @ MNҜb;Uܟ߾>Rn w_C}4'S6\Np}n"`1>RB?!`}  @ @ @ @ @ mVJI"zbE_]3fο}kcu{2 `1a#XY*`1vE*(ўW]szEv,& @ @ @ @ @ QE=f*\Q UDݹ5-mSwVv,d"7DQ/E F։ݠO @ @ @ @ @ @`c{{{WI0jƮ5׶}mw^レk/S#0Ds L4[ Oc*sM6HNƛ,V @ @ @ @ @[E=E$M}ctEi_ ݬPhzN!6of3't"'TQ" %m8xA @ @ @ @ @)pM7< X NDj7k{n{%׻mnJbMEjI {ݰCIk;7!`1㛢+ @ @ @ @ @h,qN("5M}tݮk7tqm%R'ZiO괈KBj̬>Sgj)h~PE_H"ĊfЉc(y%!@ @ @ @ @ @`z&\ Ktk=v7o^_]C UToh)Sa-2k`BgjM,N"VRڡvSƸƛKɦІ @ @ @ @ @>?xrP"z}mcv%ڴ&7xѝ28d>S>ScF}uC'XDO;"rJE0E3)%6 @ @ @ @ @lCoNh;bj"owP}M$ݐŌ5v(*gD3)ԩ%6{cu{'d!@ @ @ @ @ @n/h+ahb~np׭}-rO`BgnH}$HQ?kDmn+>!vy %6 @ @ @ @ @lCo'Yۦ~kw=j,IĊFjwQx0NSm/ Xl:v Dt5 E_} @ @ @ @ @ -E=HТ}zEЩ}6׺vk_ Xt,Wdr[ijCE {yj#K,VԖC`E3V7d=բ$oB= @ @ @ @ @!pM7`+Ca\m_, 6x&}$`j3%TQ?D}o`NX @ @ @ @ @x͉+S]k[rݦq9"fhrOȭ;"܍;TXyơD}?^_}XM,r,Ύ/`:'@ @ @ @ @ @`[#zJ{M]{-u{}ZX6a$P>sՏi3 UX+kS-}}1FO8s  @ @ @ @`|'`uO}ta @ (pĉg]R=ᢧW'`+elBnD:բ}P(׮ݭ oֶk"j5Q@GQr A>;r&yX FG_5+ @ @ @ uo%4sآ@,&h,[pD7X18kݚ ]k_;Z X_܀DXDC'S8vX"zodD3K @ @ @ }}էy`Wo @`'}a|F`$`Q \tݾ׭m2zrE; Ako; X_܀DG5`1Gmdq7ap(#@ @ @ @A}菜^f '= 3!3!pnn |h~w&k־f^Sm.J )uS/;B" !@ @ @ @GswW  @`-OX@'`QO{jX0H6=TЎj[w/U]N'X7xn@mnM,~ P}M}*(Ѯ+9\[ @ @ @ ;pMXr1h,jn{mkS+JOhnhb(DnS/7y~ETv S,[w E'jso~Gd!@ @ @ @M\7&@u Xk=x r / +R'UtOs7m"մEw"7,Vn@mnEvJbXc촊2( @ @ @ @;* ` g *U-sE-{E_O禮M^{kC]=/L!`|rnsGC8Hb&'`ѭ+g J Rq Cu@ @ @ @ @`G,vtLV% `0c. X`E䤊nM}5Cjʶ^@ENh"vlݹS'7>sGCܣK,hѽwlo&PC @ @ @ nfMXz^h5N;t;urE4lZ}(aS/) XDN]RቱTi;hߏ&R[XD^5 @ @ @ @ݵ3sXzL ,jiav}Ǯ5Ml-ڌ]n<#Aܷjj5K,vPbz*t1vrE3f.N8} @ @ @ @vK@bl  @`\:E  JDWtO螢/o_Mfs G sՌm *;;(g}iM_Ե cȽ5ohb,g} @ @ @ @vK@bl  @`\:j}k}F m_n6H4L 6U3y#c7$pj50E}^ғ,q#T+U7ֽ7tz{ tCEwENԌmϩ *+S/T/ TCڜX< z @ @ @ @n Xz-S@bbVSB}!nC7Ǯukiߋno_HalHҚCd1=l"Fqvxf+"@ |˞U}W>ٗ}nzoIx\ @ @ @W@bkcf ;Vfzn醗+E _t. \=v7o^fՈƆ/I,;yD}S'W4cEݓ2BA ]8F?TwՋ>)Or_C?ꡏ>F* @ @ @X纘얀nmD~}"vn}5c׺o?ꧻڕԌmM *;;(g}iMn"uREc Quni LDC"uPO@-KP޿{ @ @ @ @`k X<+}V_gUW_OYchpgݷ޳e1 @, X+BpEwZ߿cT}{c ?DjސB©}Fڏ \dQ? {CafC{S(j{O} ʗ?!׾|gV @ @ @,#K_rM]˫/~5|Q;~G^؄&A &+ Xto47ݞkwM6X@"Ԍ-b;ﱪ}F( TrB*5cZ =4}Zn} ? {~)!,E @ @ @XH`+cKoGޯ-[ ' `祚E=}D_ؿ{ݺ%HlH@bHM,c'S6:bԐE3vo/0} p~S{} *")/y/:4m?P}MM8 @ @ @6*%\XO}SkiP=#јL*=n`E7Ю'm֮Ԗצ};^_ X$k$ 1EQX \Q` \  c]?!`1Yq艱?]s_. 7t]>/xVs_'Vxv裏VpǪG1C @|YTEЩCwk֍w/u!m#!eHlH@bHM,uO'rtn۱)jBM];wmtCs֞1x˟U~Ck_o*-c|ߪ>?'aj߫=rS @ @ @dHO~!ԊzGB@\ra_M,{~9 .?g>']d}z;w4,&iL`VVw(T\׽6wzws?o_е{}H"c#."sCCz~}S4 S X݋-ZVQ񂃇+_p7uB r+ czZ~(4/>4Xn߭>OzFPD @ @ p6ٟ_|9o*h,wTݿ9q^/^g>N|7#/[C.49`uKlQd[nያAGcVͻmn=vZ߉c'Q`ѬC_B"K#." ^ 'gM'5PEGԊڱƹ>,&wKx_J|۪>~X,Щś5Ѻ5,~r?.T=iO}wVy螀Er{( @ @ @8b X<+_:7ԉ0E[Y W~aU/{~}w~.質= u}wj}?x>O651MIRR9/p(=P_۾k}Ʈ5m_+m^- HuiK@F7 Q{DOhj@ѭ:"8!`QFhB9WY|3k}k`oB?/7?=}ft˟[}xh_MqމC ZzQK/OT񮏜K=ӯxBUO y%<2}o[~g׿zUOi'NN^pTsDO/'O3~zѱ\ӟz Xԅ_Ϩ~^xM=~>O>%`q'xbuON^PUwP{>~]pϺz/zڿs}MA @ @ @fT;w&=ϟ/~7cƤ 4~7Y/xيo߻m{_Q=IW=.5Wb'$ kc~ez>jIۦ/P \\kjm+m^Q HuiEw}9כk0E_]}5*ЉN(x#4!pEc=rE=?S/`}?~oy>g=^x7|?/9ozߝw)OzwՉd?JW]闝7o]vcaEϮ+E?陳/u_!_G9S^/Uo~^u >oU'Cc("@ @ @ wTe?&0L& 3C QAAvbXEXQT pM.A1A$gE0df!OfwV=}{R}yU9U9:ܾ>Uuƌ?cm݈6=>y8蟴j|)WyE̦:䠭mmQG+kZ?p`Xc1s֜:wf9jx̙3/Nߑʫ3b {ƪCcμګ3Y";͏)ZRPh* `aX~,Z]huVX\ +>ߗ)fݦo7`Ѩ}~{O{h)tQ"EfKiӭF3B+@ER{jj\tqՍ϶$pо{ߵA{ӈv͙cj8oނx1Ŵs ;;-㽇,Ҋ%_&VYޅwƕw~|S[f+HEFHy&`a˳G]Sj}o#sh~k#1}f}~֊/f:qhSc&R"e!@ @ @XZ{o9r3T*dozXr ־{ Aywn]q曏ylњ]ϘN|=.x)M/% C}-b GzugO?j≧^.o:uҾ\p{dmcuWŝw?o5mkqv.p3wxf񧫊Wp5o*_w<9=xgq@`,jhDQ)z\o'`QG+Ef5}Z~y X1RW_a")HYҫXԯ`qWB=+@jzǽbֈ/~jV9RͥYwu5=W\LΊ\x;vh15ՀEGoɅ2m=w;i_1etknz.~f/7߬''NOf[+yRoŧO3|KvocTG, @ @ @X,q'7, .}q-u} q]OdU|䃻 z}ܤk}$C[j EǻS>`qm{eR3㿿uyc^[ @ U@"UJ%/pm"f!V^Wk[yk~{4ZYMj]v ”0C>Sگ(`FoDFohu' rͳMÆ /Mkا2 X4* X{qԄ{8Kwvlm֌~%LJ>}K|b֪ٞXloQ? dRLhu,qWPS{wb0V#y7uX;?WsԀ[gka⥗߈3 +__]x={&,X08=X}>CH! @ @ @@N`i,|ѧb#|1 ۺm2:~{1]}8?i%x=7޵ml\rO'ْNv=v-!\b_$j 4 6V禑0?)&<^#3: VTv/?CnNq8PwIϛ ~xi;˟f3Oz}㙉>WV8`ͺVиP,oΜ/{֬k/ Gy ShWP{O 1`oo>}m͞ߞX C1% 0)׀E+Y,j0haWXb1L]d,kVo={rj`܆#y?棩(`q)wj}W,pnɯΪ 6ޱ:]?15>~ҭ۽K#ȶCjjqqMݨΗv:mN#%[QbKj~8|؀:{ ay<7|C,~b״7?3=;)o{\Nɖȉ3ϕǞ?C?z s~AɆ#/kJZ @ @ @ /io\nơ&N=>v3q/l%8?>Olɢzvq?7fM>t,{_|qZbڴ55O>jvYnx}\_˟5?>`qOW=s>{mR<̫_3yZO5<sLyv>`1sNƫ̨9OWi[<9˒] @v%xzXdZ,k!fm_ob)fIiE%ίQm5CQlhejEAft!`f.t@;A|ḭhNX8鴻w@?0p`j gßs|5Xo[썷_e[Oțܠl)@ʣQ"^y#>ջk v) ?/䪏R:x5۳owV'/U{iŶ[ֆXFwvƚįٷ X5 @ @ @K+`cOrG/ ;g]n>!CV}Ih'L1lq'7\dwƏn'xCG;VsoG[G3T<GywN?,Ӧώ:6X8V[}>㚘b\ۻ{*YO>ratPf >KcJ[RcE.~9HX&X/gW}~_궔}v;JMJi6m_wJ!n)EJ=.+OԿoU*rVZB頞'8SEfQK߾'n o}{jj[ؚU._9x}{ǛVsF(CJ1s8vNcF9JKäEvǿѸlK XM՜]?8puiZoUG\S_߾'n }s}<卖, @ @ @XZlEߞL GNU{uvaGִ=cɽoi6rqȁ[:k-;d\{x⑫SO>. )daFmY/n⁸GZS>{PVqX!wL,Vw@i /kJ+˫O_7o>;g^'uk@V,ZSO` A*#Y}EѾm.n?m ӊEafCJMnS vLi),zZբE*8aWK@gQϸ?rz˿8>>| ~n{]KˁhXkUj,h/֪vWs˥F?^~uvc+QZx4 XcnkJ* ٟmWEӢE F) @ @ @@SN⼳>;mhG{1>z1m3?[}&-nj*#~&}VxwU9ۭ]K~mxكJo%4䁃Ǫ#aJ+\6 _fuԀncnhJ#w-wCMk⬟>G߬f/{2~[Fnx3gu_v"vڦDnq'ni3tmK Xquko-{?_<^ۃϿ836\oxi6ekh#`р @ @ @ X:q?OCrȢ(\]Z;a,}kۮ;mA د.Gfi?99n{nmn \p}qomY76hLRw8M,VȔ-VX)% )tf+QdREf͂E0jVX3F:L@nXQ?{$~WYY#6o㮋za87;[/p]۳».fϙ_Xȶ,Ǝ>g^G~8cP?[|Jȭ,dD}br&/w)|ظn~-XsGK<=iZ͚ݯRg1EF @ @ @K3`©l[wκ6~MS8oY"kpEwwθv#Gw]lͺY0┯_3*|[r f3)=oQmّ̝ScFĀGo&>~ƽ=r55-i@RXG@%`rE~?5_~_fUZ T̈v IDATl%RjvfhuµgJhhH \յo[EE5ި]頞' `Y(`<?}L_{X⬽k.S4vzW]?)J[);A,{jUqgyڮIψwS{t'V^] nJ⿿S󢥆?xz*"Guō ??v_~#XjhD @ @ P )g6-۞fqٕƣM&vMFǦFǡ*v~{;F' OOlW{*"=ht<ċI4sƜuFqa;޿̸gͭ'=ƎYۀE~Ս]rOvI/hLRw8MYDiZ"oSG~[Oy.j[UjEqBJ!o}M)aV'\}(QWQHjtEgo.y2ι 9o7.+{r ]FׄN]q  ,{ǛcKV>9%6p1ߌpo+xdӧu)Жq>' g5~_;W^um+W 㭇_ )xXjhD @ @ P ,Ç`aȢ+bkqg8޻S>[y(+ﱯӿth 6(f17c Y9_sl,Z&Ӏ, `@ҪEfhuµgJ1`=i*IA +X:X,:,.8gu]HQ"/pCr\vhX}䠸kEGK<=iZ{8b'ŷ*ud;R^|KrҷʿЬzO+qWUs5VTį_?,z5t4"@ @ @(Xiz!qAܤ3fk\v}q˟Oi<,-m\:+y(=^曷X;>ᷔzOo)Tz=c_>4w6?qomX="N>1sq/nkxǖ[]3g^-h6k@RXG@eO+WT U+7W7EmJMKJ n),,Z XL r)u9|P\{_ՀEv.k6ǞǞt=q&`VkwKG)ǭ|0]]0c 3jR936hD|eiZ{9N:ncG _o=xy=O @ @ @F`Y,q ?3vn;sUwμ&M][B;l~uĮ|~7C*޶}8CYWO>$F _>bþF:8OW0bF /G^Wda~Ү/|xcܮwkwMJrq ϣ~/3V98.8;_l0,ɯv!`4= ,!CE+"%JYm}_Vq^W[4^jE+TTlUf+\ku*`%+X:X,:랦,+);n;UxqG-䳋VM_8̜q᥏Q7roͫǁS*9;Gx=RYqcZ/͊S$cOm{>ZgΚW c0ۍ|in&W0)ރ# kl8;ƨ5˿,?k5 @ @ @}J`Y,؛m2:kibUb׊lG&LM^ kϡ&N=nly Yd]rAJy‹9o+klF}cԇ(vv8r`W9?0z'3^zyFcʔY6œ9g]/sf5 ߯>cEs,˟f^p{̝[24x`cZ/Ĥ^vYHKyzԑۮWOxvXsUb7=,Z  @ @ @2%`脐ź}l fΚDiK2/^fc-W}uп{0% )Jj @ @ @VEvMXwvnjL?1~;#RС+unuP?0nA#Ұ}jȠě6XTs/n9Ehl<9_rqkj,"2whu7]|n=$Z]Z5׭noW_~[]ѾE5;~Hi6m_wJIn),`(tQoJNV<κ쪾m >zC\ Xxƹ%W=l;,PqOǯ.}"LQoO=)^B頞' `Y[YZ-hSv X<\U2a>^:-ԀEjx܋3㙉3kizVم9rQ[G .B>cn<{9ǎ'|lzb萁]mf̜ß}`kcڌ*"@ @ @+R"Aǜ9fԩ"G3zD JL6+^zuz̝=?Ũ5ǰ /ӦnA#Jc=vdK{^]w @`I X,iaHh1`u\*EOT׷ϿouQmu[F}}7&_)5nxkN 3re}y`EY=, /.>o>lB=nK'/2ק5_{x=vHo߻q-yN @ @ @` LTbَ+G'@@_kw.T f[okuQmu[h[QB"q*kϔ+Xiv,Z qуc FĘǶ[6DT{zj‹bScYK3ȱtdyK 6s.=溘1s9 멟1}t'G<׮fcK6_yϻѸVA @ @ 4VԀEfX_$v,}&Ď(*fH쪫>SwB"=VUWHySm*~R-Y頞@ȾiNa,Tqu&tߑiMVw6[Æ. WdtMϼ#mi!o[?>7}x)1ᱩ1dȀd㑱&#ά7)LNq @ @ @V 9`ݦ|Bb.˙rvCN,2l*ms),ou̟S~,)aVoϔ@F( [X:j m8"wq~7L_d<Ԗ)^{Ǜc,SV-ZѶm}Vzd{:&N>n:d` Ȍsg?P+@Q"[_=j /}q׏Zx)S;!^|%w2z&@ @ @}6HXKXZw&YР7?YF5[E}տ6v4k)5xkN 30J^S >,Q?+hu6'@F [ⴓwq(mocՊtlg1Θ!1gxq͓)W+^cܛ *KfWf^ 8 @ @ @r+ `'F$ `A7˩[lđfH쪫>Sگ(,Z!&z0aVzN>no}  @ @ @X,t @#,:9TͪPBZn/幨&uoɏoNi6:m_wJթn),`QEJ(#iU Vz @ @ @ @@g Xtr | X,YM}EO 3$vUn),,Z  @ @ @ @, @, ˏE^X$ɔ0CbW]e~Y,,z_9"Hy_TSEF+SWW(ڶXVEA= @ @ @ @,:~9[X>,@ , &4)i[~f۪R5E{M~`JMnS ΤvLi, Z,ˀE+apEA= @ @ @ @,:~9[X>,@/TOڞnsѾUG}X~XJ!m}M)aVgR}(ʪ+XX: @ @ @ @E.'v]T B>SY)ᇔf5}_>S XX:. @ @ @ @$X$ )!@=X"{!`0,S ԔgJ(Z"ϯHQVWjJ9;Z  @ @ @ @:G@s3%@W@b7ά $,2,ok}6ߦ~[UFO+VaUJ@Y),,b @ @ @ @RX A+ ]` Xt,+X$۔0CB75%^Bq @ @ @ @ A@"I A@!Xt afH覦>S XX:. @ @ @ @$X$ )!@=X"{!`0,S ԔgJum}͞e_QWFs>]qGB= @ @ @ @@Xtνr X,ƙ=\"Q d۲l{O?=oѾVjIy_TdUf/fI;%,jϔ=`Qh1,Z  @ @ @ @+ ĥ @VZi9j[)'@`I Xt_EVX=/j)aRlx۾0Cc>S XX:. @ @ @ @$Ld̛=5R  P$0`Ј6rC8,']7B"aL)iϔK @ @ @ @ ͊ME P/^1lMpXN,nE˜L 3$tSSn),,Z  @ @ @ @Ŭ/9-͔ @@ȂWC/]7E"a|)iϔ9u}]Ѷ꾔چ9[  @ @ @ @ @ ,n="" ~`| IDAT>o˿ufEIy_TPG۟Rl۾0C>S XԮ`cRYEA= @ @ @ @ @J@K  0%̐MMI}hu\'@ @ @ @ @ @ XtpfH覦>S XX:. @ @ @ @ @ ,nEO 3$tSSn),,Z  @ @ @ @ @c]7\"a진)iϔK @ @ @ @ @1.`0S ԔgJ{ Vǥz @ @ @ @ @E H)anjJ3}_ XT7{l[u_6I9[  @ @ @ @ @ ,EvYȡ_ٶ꾢瞶5ڟ^UPFF/hu۾x)aVO>S XXq @ @ @ @ @>& `uí`0S ԔgJ{ Vǥz @ @ @ @ @E H)anjJ3ER= @ @ @ @ @}L@ X$0CB75%^Bq @ @ @ @ @>& `u,~J!vLi/`'N}޼y1X`A9Ypa'V}]}FG: SO @ @ @ @ @+J2^}=d۲ĺ뮻G̋'nOUWmWVQQ۬}o}1R )'iϔ(`1iҤ۫s, +[T  @ @ @ @ @{`EvAj" Tdl:#`Q6VH>)anjJ32 X<5Y"e +W: @ @ @ @ @,b)a رc,G"a)iϔ(`1y䮀E5\^J3EVz @ @ @ @ @@J"ɇ++Y=ZS X,kVZpE5S X,ԩSo~JoayEAVz @ @ @ @ @@>lQ}^71bEyX$L0CB75%^b,O^ Xd+XfYAآ:*+.ZZ  @ @ @ @ @EWdW(hQj+Æ (fH覦>S X,Ō3 W(͸U+^QO @ @ @ @ @@@OXdmV:tET"aj)iϔ(`1s̮EiUV.zΏV: @ @ @ @ @EYT=e "`Q> (%̐MMI}XFYf^]u+5= '@ @ @ @ @ wWh5pEne@ifH覦>S X,o(ͲyۀEK= @ @ @ @ @}[Q"S_bUV(ifH覦>S X,ٳ W [Կ@VhuJ'@ @ @ @ @ fQȄ ()fH覦>S X,Ŝ9sjhu'@ @ @ @ @ @*(lSbW(# X$L0CB75%^b,Ν4`Q N @ @ @ @ @ .( X$ 0CB75%^b,͛(" @ @ @ @ @(he5X,SJ!vLi/`;,H!dQO @ @ @ @ @@#FኬhEE´J 3$tSSn),Qb,GJx" @ @ @ @ @),`Q e)fH覦>S X,!LTQO @ @ @ @ @@B] -%̐MMI}XF EG= @ @ @ @ @.g2E R ]&rjf[#ͶUwF݇ |gqmo'f @ @ @ @j,o EJ`QXsL#PI/Bγ;w)RX[2g 7뮻n2>1tBѢEO;h֬YmM"@ " hF;!@ @ @ @j,o EJ`QXsL#PImڴ#FD֭kH\\z饳S ,p=W;^E%]Ε#0v9rdOiӦѪUWZSNѤKU,Ζ @ @ @ @@ EC`QX T@mE2cmO>Xkd2eʔOѣGW;{7V^y9E%]Ε#_ 'ܲeڵk3V[mHَ @ @ @B`QX%E;4$0bM7j/bN}, )y|z?}i?bɑl:7#KfS @ X͚5Z+j9rUہ , & @ @ @ @X, ^.2!(xFj]tW}H!cqueϼMz\XC`Q-s  @ @ @ @ EkE`QX T@"}Y;W}8cvFu]7 i^q 7sS'Mb_>dZj+B@wZ%]Ε@bu֩uٽ}Zq)W 6KtBq}" | @ @ @m (C ,Jwi*If`(VxG2HvmHz,7|s"=qߟvG!RmO<1Fŵ^[GP$x饗/H"oU$ڷo○"qUWyyWMX2 0E]O2%FO}QГO>y8Xzq 'hݺus1kfJZbԨQmРAvixy䑑5}4s!7 4t`Qcǎ.j+RJ`Q$ @ @ @ @ EF`QX T@bmrń 2T|ٟӪ o&{TWf,N?~|zӦMcO"4Zl#Gm ,AV⦛nޫS`7˪gi*\rl 6 >|[̼GKUC`QGo_Ez7|3[mj\ [l: u@ @ @ @̅B`QX%E;4$P3dMꫯ;.nb嗏|0sju"O?~iN9́Ezco=OSc?V[şB ,ӪguV,_[`Vh]tz* Df뮻. .>+r|*RD2mݪb׿5V]uB& @g`{gy&%nu~ :L @ @ @ @B@`!(x,PcJXq7gL72dHt=7zB_Æ 2C[ne 80rK5WP3c="{c/ϵh" {Ο-??ϫ:ךǔ"T+N9׿=[oϳ9m۶>[!bsڵ#F̲CmEbb㤓Nn)fP[`C9$nw;o?qAoqEO<o|) 9t9Wp;/sO}Y8YX%u @ @ @ @`n׍ %(A, 9$r-Pqf+Mѵk8ci&["~}G , vZ\{>;;ǟEm 믿M6͞-xcvʷ-HRs18 ?x"U0?r  @;H!f'OUf3ό&Mf_Yx~|M㫯ʂp. g!ƴib̘11~W7G"E(:u͛= @ @ @ @@E ,/xEJ`QXsL#PI5%X";[;wWH+W,Ҩ.x饗"Q5R1qu]Qt , iԘ/7X7.V_}|W\1<%K/4>}o߾*W[mnݺ?>y PXcId F;x`~^<[oԩSg˔oVZ)cǎ,4>VzWg[jJ_ZK+cU?2  @ @ @ @n$!(C ,Jwi*If`VH_Rm]E믏*Cv[wq>}ć~8˾O?뢣h`qeU[{1dȐmj ,҄^;|=zO>=;?8.&kf8>vo9]wjB_~9kE#@߁E i%4*'xbFC)|'=\DdH7̦niey}]ag 뮻+k<-EAs @ @ @ @" XVe(E B`Q1@% X 4(N?j$i%% h`Qsѿz ,oݻw7x#yH_gz1}11+6w/8V^y/cNEH?;_On]tQ+W_wqwW[^(& @,>裸Kr\C)pL!°afyREZ%+дi@n9otn_)9y_Xڵk|lWh۶mf+]=TlG @ @ @( Xe(E B`Q1@% XҪ ӦMY8E~;~_{gA}Fȶ)pH?aSN9}l喑:hժ,_L_{j7. K3-ZD߳"9 P,EUcu։vکÊy ,R,qM7ſj"Z+z왯Q5o> d;}eYc9!BʙWJsҾұJѲe|t)xgɓ'g9rHb?X# @ @ @TB`QX%E;4$PW`,*WjC=E[oof/O>dCQK/t%Xcjo1"M|뭷wyCK?SN#}Q#ON?eu^X#@9 "EiѣG'IXlP%H㥗^~i>)Nj4G]#k?|j㠃RUёVJqF 0~Xs5ͤIW -Pf${eY&~f? _~q 'QEա:*?&Mfk'r"@Ci5z(>!kՆ ,RTqEe_T>}[o=Oɗ_~P9#c~zH+NUe]6[b^FZm$}f3żږ @ @ @*M@`!(x ,Pc +Vex7{.G) IDATrHþOlok/v1vqXuUiӦ~Z_6mZ~K駀 @`^jkf VWqdqm6w֭[un5\O ;=hӦM{v#<ԫWu] /ZhrJUoVK"R5 @ @ @TB`QrX%E;4Vw~t{iioǶnSLęg͚5s  @.E]󋾞hb֋Xf ,n9rd-"6lz6:uj}1a„pZu]vѣ_[tEF5/"T żhږ @ @ @*M@`!(x ,Pc +P3Xp{ F?/JlbGAJ`~M478 ,JOzjU5HG &xS9lذVHB|4ĸ[_w%hU @ @ @ @JX, ^2!(xF@ x/na/߰oɓ/nٯI&+J3u>zFQ`~UM6=zd/o`u]m]޳)ꪫi/cwfwyg ><_uEL"@ @ @ @X, 2!(xF @1 ,V_}r- RZ9⫯/2WZi>Rh.D^ ﷾Ő!C;zWLLVHd;w>z^tE'䯝|٪ 1 h @ @ @ P Ek_`QX  @4f:;<ҿhݺX1zliE38#5k=::w\&O$U#pVh!h(I!@ @ @ @JX, ^2!(xF @1 Pc=C ɩvqXwuko`q%G}Om6G3px?ZjU}f̘{lСCp v,# @ @ @@e/(C ,Jwi @XqT뭷^74hP~Gn9b„ ~[hgql#&M^kڴiy 1 h @ @ @ P Ek_`QX  @4f*HKU&ƪ{t ,xꩧ7XchL٩S8cf\pAsiEC EC( @ @ @TB`QX%E;4 @Y ,FwqGN+XqM7lb-hЏfqѣG>}t霫ơK-TA @ @ @*T@`!(x ,Pc @,C5WHC j]bq[r%kЏGz(Vxg{nv7,N @ @ @ @B %(A, 9 @h?T`qWĨQr;VZiZX%*UcW^A>I&g47o'tRjjO /_ԩS&Mf_ι;4ܹي @ @ @$ (C ,Jwi Pd3 W_}w^L:5{f͚ũ ,@Ç;3gΝC4mt?|0IqHD493&>D=XM\pA|~;ر< @ @ @ @R׺ %(A, 9 @h;>}z 80>ÜiW}wlsX|qg7|{]w^zGV2eJt<4xee:h%E)y, @ @ @ Pa EK^`QX  @4fXM:kVEB^~xGPjm~Xwu TMꫯbՎYfs^"5G 3^{xꩧ_h믿^z)N`Q @ @ @ P E_`QX  @4fECK 6dl""رc㪫cE]4ڷob4?7$曘0aBL6-:v /p{ %){/ƍj֬Yo>\pX|c.lqgDB  @ @ @ @n$!(C ,Jwi @!N9唘8qb)HA @ @ @X,])*'EIB`Q1 @?@Zuu)9 @ @ @h E e(E B`Q1@o @?uQhN\y+vuy2 @ @ @ EN`QX  @ C 1tR\"  @ @ @(& XRJN1Of~vTٽ>7'ܪs* k=_[DQx3:j <5bL\~[Nwi _+GEǎ]vty\p1mڴl?-Z?>ڶm;O1 @ @ @$.(C'HԌ'fUh?}ˮ3^xY&Ѯ-K6ņ>17}/kp @9 |gqG+wy'[/va @ @ @ P"(C ,JnQy+XL#_$p_}^5i$B?<6&.쩋et]O] @ L<9 &LȎ}}7Zhz˓O>w_]Z裏V0 @ @ @ @ EE`QX T|hղytjϘ1a”dĘ/&e˲ma_͞xֺJ/<xt[jlMڅƍwuW7XcB0 @ @ @B`Q~X%E;4&—mq<-8ѢyӸMYѧ?ˁgKvmWiΗ O}%@ @ @ @R@`!(x,PcJ8ّcmqMk=G,T(Vc|O}X{+XL} ~xx'I1}ֵm,mKe|7q[oϿ/&_C)1׳9ĵUf1:_ @G?~|oW^yޥKfm{ @ @ @ @ %(A, 94}19:ڵiC`qōoŝߋ6ǝWn-ZgX nyXL<-iw͖=Wm7_r?ܿK^I}?-믳hmdԱupѪU|yWN~y'2VpG}0>^s}}W:7,{=Wn)~Gi wnW} ,,N @ @ @ @[ײ %(A, 94~͚/\O2-|]|ٷ1cƌءe~c⬋J'qi#+6Xg>G<|2!6`wĪK>TX-6`~<75*X ahӦ :_ @ @ @ @ P) Ek]`QX T@ZE-78⅛.Z дŋ/0_޿\JU.ݾV~<OݗW;Ԉ1q9eugwAy+{m [,*"v @ @ @ @ P E_`QX T@"wGVmew{tϩj ,ncT >͢2j:wkq?۵{+37_'fҮZK @ @ @ @J E{A`QXQ$1c3/0/(X⫯UW\>_獣ˢkU:En_q6o,bt @ @ @ @mA IDAT @ EKF`QX `Q1@ pѮm}M,q՟zR`qE/fohDϯuRuީ5WT?XBqYe`|Ҫg+z4NwM}zrV71*Ү]K @ @ @ @w %(A, 94ş}#VZ*-Ht+1bͲ-,z/z9q4k$A,di4NxOK7E:_OC=1{~G6-*ct @ @ @ @ @" %(A, 94MqՀNҔiɧG>/;{2bYFfMs ,7%vj wl'abhҤI.|1䱏}s誱&]{}VܩujJbʛ_7o;.F`QiW%@ @ @ @ @JX, ^2!(xF"/:ĩGwiSm4qK_OζK1B O|g^Yfq۽7Ei,ϘSN&M"_]|25EO @ @ @ @ ! Xe(E B`Q1@ )hٲY,hڥmYKlYPsX_~=9.x/oHͶ?6G'˯3>(#mo5.[޼Enռ>FK @ @ @ @*R@`!(x ,Pc_`IŢ?k?[lڎbɘom]ٴ|-}оeM x @ @ @ @ @'! Xe(E B`Q1@Z*yt3fDQ+uw @ @ @ @/ E K`QX i |wq/}.a\xիA_KN @ @ @ @ @M@`!(xq ,Pc?-Ǟg^b|?mzؽcrEbدƳC}gMֹ8 @ @ @ @ @aW %(A, 9 xͱqҟ_OkÁ+"Z @ @ @ @ @M@`!(xq ,Pc?M L_o=6^g\m,-.V[eXw?̓vT @ @ @ @ @|X, ^`2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xF @ @ @ @ @@X, ^2!(xFOS`رkKСCu?|<[omڴ& @ @ @ @ @?-)(C ,JwiD#rH>?*ͼnlf9~ѯ_9 @ @ @ @ 0o E+H`QX T7|kv|w9r-=ЏJ3ŭ'pB~=zG='oN @ @ @ @̛B`Q X%E;4.pmq7 =={x5HoF4N}̖`g}6X`z}Ѽy9n7uhѢEs ,MM6&Mf~62e\Y5 @ @ @ @e.(C ,Jwi*Y //8'Xwucذa?ϱV[͖O_|1n!n׿[viӧO^O+J1zXdEbe}ƶn[}j , ^{-8[n8蠃b- /rJ:w\{)$g9?1jԨO<1z?4iRu]/o~|+r @ @ @ @ @`,/,EJ`QXsL#P3f̈6(> wyglf9o\slsx>)28sǟ}YuQي޽{W\mڴɦ ,:wz{wx-Ȏ/l~i,ƍbJFF[?~o]OG6z9o @ @ @ @ А EI`QX T@*Uc]voJtfgV9j5_83HamzNw=_f`QƭZ袋fSk ,kgyf\}._C=4j'feT)s:1Sס{ @ @ @ @(( XTe(E B`Q1@ V >}ĕW^g}vqPsXt!joy}q-D F׮]㏏.]Ľ~{L4)}Ȑ!ѽ{YVHVZi8##7tS&I'OpN/;C]:tU#mݖ?WUqu寥sM1IZ#qwǴ ?K.d^fΛ @ @ @ @4B`QX%E;4(VaX{#F"F͛7Vfp s;X,٪+B뭷^=:[.|WRܱ뮻X,BGmO9唸ox9tUPn:^xHAD믿~|ٟ۶m#G-[Ɣ)Sb֊ &5\3|UWYg?N+auQx9g @ @ @ @  EJ`QX Twߝ.Q5ve0`@8VyiW^UoVqy?>V[m}Wm;gqFܖ[nog ,Xb:thmylE[_=+8s+ȷ:QFeoT..az2<Վ)$aƌ\rI%^fΙ @ @ @ @4B`QX%E;4(ǰaS4hP'\s+j3E6f)iXj@>vj+C.>|x7o\sMW_OTj{quE篼lͲǷrK/m[lSy"))P1 @ @ @ @ @yX, ^E2!(xF>` I&qG-r CJɎ;Ƴ>[mNbȐ!q!u].D>t)*Zb<{]v1rX`]tQ>cE\ @ @ @ @ @!(C ,Jwi*Mswy>Ɩ[noW$xc]vɷzK/-?D`?).xҪiI&eլnj+ym6\p9OZ/t& @ @ @ @ @sX, #2!(xF6dx}ڛni\uUvE*zoZkmVMy\6mCCzl6{q]w可H^U#n{sO-m@ @ @ @ @̝B`QX%E;4$PsE͛GZa1sЬY6lXg?˦ ,ҼV[-Əm/SN[:*|I'>MS8{eߴiӘ>}zLj#EՌ>  >}B8dȐ|# @ @ @ @ @@,$EDq` IDATJ`QXsL#PI'pBz).1`Z vixh`q}{."OGw_ǣ[n?X`qǥ^:Am6Gydow5N;ݻw[o^{mpo߾qgV%\  @ @ @ @ @|X, ^`2!(xFR&OkvL0!?V_^?/|<㢁ĉcM6WH/1eʔjzu]s5WXb%bС><o\sM';m-/|;[m,fWU|նI+U0NZK.$~_We<  @ @ @ @ @|X, ^`2!(xFR8#m߾}927o^+g}iʼn3cq+\8Hۤ"1cj}_qWD:4~"W/yZhkyw'`6ǿ}JliA$%ZІJ*Y6)VJE IHBȚ%K%{s?̜9<ssg{>z!믿⽞L2Y׮]3 @@@@@@@@@R.@ϻEAȡ@ヒo tM`~۷z*I mk.Ʒ~jZB ְaC{-[l1IˀM7l?|6!CɦMb*Tj֬im۶&M$K@@@@@@@@@/@ϻEAȡmlÆ VbE˛7oڟ@*qn… [2eRy@@@@@@@@@,X ,P,<>G@@@@@@@@@@@ :Xy@ X9tC@@@@@@@@@@ `AJ"Eƒ `s @@@@@@@@@@C w* ϑC7@@@@@@@@@@,|ީ,P,<>G@@@@@@@@@@@ :Xy@ X9tC@@@@@@@@@@ `AJ"Eƒ `s @@@@@@@@@@C w* ϑC7@@@@@@@@@@,|ީ,P,<>G@@@@@@@@@@@ :Xy@ X9tC@@@@@@@@@@ `AJ"Eƒ `s @@@@@@@@@@C w* ϑC7@@@@@@@@@@,|ީ,P,<>G@@@@@@@@@@@ :Xy@ X9tC@@@@@@@@@@ `AJ"Eƒ `s @@@@@@@@@@C w* ϑC7@@@@@@@@@@,|ީ,P,<>G@@@@@@@@@@@ :Xy@ X9tC@@@@@@@@@@ `AJ"Eƒ `s @@@@@@@@@@C w* ϑC7@@@@@@@@@@,|ީ,P,<>G@@@@@@@@@@@ :Xy@ X9tC@@@@@@@@@@ `AJ"Eƒ `s @@@@@@@@@@C w* ϑC7@@@@@ M>b6cצaO*kֱYOK@@@@@,@EAȡ     f Wrٛ= Yp#     H 3 ϑC7@@@@@ i8V<<@@@@@N >o-( #n     @ hf@![     AXy+@ X9tC@@@@LEQ9SQ@@@@@ @ۊEAȡ     f,1Pl߿f+6s8@@@@H#,|j,P,<>G@@}YB,S_2եk_>p'ԭ[7+UT9Sp&{Ǐ[;x8p ,h3gNvwImڵrasNvQ۽{;vlْ}jnСC+WmTk?{gsqOubYlE7J獊kJ'RӑW +%Nwe˖q}Nֹco5( #n  D̙3] k*W|ٲe%@UŊ>;][b'Q7nt eW\ >3MY  Z/b|inL={vB{-K,'s6jԨ8 3oժժUmZ{gk֬yM&KkΪW~2=ztLC~-_|$N2y]vh" ['k~lydI$#G[6S\Xj$ؽ爵84ڵ,on֭gwv^;T>=䲈Ϯ}G8T0هk L2WX%\[R۾}lǎnHEqO3 TOh D%K>pElҤ Q\W * [Zj~iAݺu]q{4hX6okwvwm7n9+Jwg ?''`};?+V1Z"%~ioVPB58Vжj;vtO=Tޯ'|҅5"Nܱ *=1+j -Z#c… 3B'_}֯_?[fMRL;b +S=Bj7p]r%J Sr"`qAPm~vձ+ɱ-SM xmЁZ .(3P; ?cOފ'c~O|הmßY2Dbt{^աS]rnf{aD[fM[f=m}=lNF"ѷ     -?Xr9bH YR월7g~zKYbwFɼ Xt Xx,NpcDf*l߾u]vgT$g+P^ mǏEnvm6Sk^k۶ivжj*k]B]8Ea9ry1+v裏b.r(_8̭YTP:pe: q֯_oW4h G^Wz:uUiGZbŬTRvUWn4sLn~Gwmb3<+6m-[J}Uب5 *~ mZY@W0T+,hz6sD&M"_+)\pne.$cG-UTK/Jǘ={[K#*THTنN=lܸѭ*"?Dɟ?Mr@_6qDVbС ~~: ʪyR+Ej:9s,@38{7H~WPI$Yl2Ǩ WmѢETp#UbFZMԺ4N"5Z ~߻2bkԨV(]vZcPcCף]+4oNJ;YKw؞DV|vCVƉ,8j)߮[gk6ןc۶:yull'مz |}˛>e7Aq˽3m?첺%-ڇ_9sضZ왭|VR!uywOw\ъa#iKaǎgrj~Qw;g>[rG5}wΝ;}kڏ%J(ᾳHBM+͛7y%LQbẸE.]$-y}K4Iv[=ά[؟D Xծ-z?ov ƮbѩYkc_fY,41YbfJ{!fjVYRMيf2-R=[#    `f$`"`A9r$¸o]}›"T/Jő_|[e"|-gΜX3X4}vmYUlb.Txu׹k{~,jT1f Et„ '쩰Q*VlԨQ˵"& 1h5(P]ubҤI6k֬r.sCxU4P,/^q{ o"l4,XﻤpfhÆ kFܦxn* m/ ~j3RSnݺ\HMpy)4`"Pj&)0"kfTk jժ%k XݱVPjɒ%G~7Kv/ PCa`ѿp{PxAEzvU֭[WT8G ؤ4| IDAT,Nco*8+gǷV75> rz Zso;9?o>/Y.\tO֪ծbSLIСcֽÛ5Ƙ"6 v*xw>;o¿vႢXBr ]6פZ( By Bay9C2`'OVrSoϽͬ˝ܬu3ٽm;?_Wlcfڜfm4;⭒jGuf{#fN߯̚tMx?J"1!^G@@@@F 7+ ϑC7N'6h PD|*ΐ-'۪U+G*"+t}TٔTq~:E}Ь|UB5PW&Z"RS8D!745 @(0n8j hv~D')$bj!kuZjH]f~G,Kl_AL"I5j,55k֌) U3X1cƸ~Y3y(]E^](>t`BQqMA ] S|O3?|lcA` -"t23s4;B+/Lr W׬Yum:fV%9-*>֊dzsOv1~Kȑ#ݏ|A~$}nwO>[#-yh9ʋ>w'Rߖ?Vn}Bu/*ao`eJ u+)wjj2:t*ZS}fkBt͑Bk\ZVsuJcz"yBDiJ.v0L!}̚z6|ٓyL!,7|sٱa?H'3"     > ϑC7N' Q3)+_k\aG*~+T ԡSK}%]=svG< f|G1s0x3Fj*S.TZpy:\+ @8t )h55\Afq8+W; UܨЦ^xTY-4`PCB5+|GN;]f>]}.]\dh[jGᅔ* m*2dH קrUAM Y[h ;vzBhU+v}gnJ>4`iг }/̛ N u([{:J~ouL flݺՅ\W:IU\ꫯӓ^Ya#}(pkEםUJ9XKȎ k޸F6vͶE\A>5~}-{ xk6~jwcuj 4{=o-[ӊiFC˙3ea/`S+U2Vܟʔk|U\|7F.XcyrgI8ٽ~o+Vv኷_Ԋ"B.a>vQ~C3gr&j9}z֦qvV1}^Mz;ןĪW]yCV׺>9?IjBhB?  Ҋ0M+-R` {Fh`;cÐBMU27,^׬}O34c/`qiv]/z y{SG{Z=tw,fZz?Yfu5<ɞzlz`ͻ̊7˜G^nvv`2?F@@@@ґ >oG( #n W@E#رcn BliR}Z]5@A>rZv{.;64zKiUes1leԴfWrxZ{}R+Y<}[)fŚMa#[<Xb]raqr޿-e]*s"wyb}\+ Xu#M| Y^~[g؀Gۈt?NjB he2~.LZ!ChW1ݨG-tŠo|3=B?W ^RJ$ 6bw?+\TMpjuH޲5kd܀Efu1kMqBQG}ٿGcլ@ؿ?>oo˖l"!Ao7[9fBV#}ل9'0k;{Mw)n,RL@@@@@"@{EAȡl*TSy.BVK|5f yӏfV )Fg>*$Q11{챘HN @ @\F+4ڴfq ,{RӚ9_E*6}09s4_ ۡ-VPRM箙#5=cho+K0`>u> hHmرpB7x޽c*xF6qD~ uJ}0`Px$9oJ֭s+螊~'F+tW$<p2kuivt=OkV}kZKۏ=u*2ZMoS|VJ,5[1'x^9qf f*Xxz-m;;x% lF x饗p(ZÆ ]*R۳g[M61]Nݨk  9 U:rߛۼy~-3[͓[ &WȰ+Xtc/{BfO&cd5˚lt+Oű$` 6F@@@@+@1A"Eƒ `s b4[fԬ*f3fL}VlY1cFt?O4lXE_2c7J3PnJ~%u   V@*tW(@*BW=3þf8p{hѢ?Bg qF/0o"8tBń ?W+5DZTʹƬ'` Q7΅VЬ=]MA>=,nV+Q᱂ `ׯ_Bz>zDh"u>+XYycY^zֲe$]VpX0sRvl4NjIyJ{)S&'`&n9rܚhymv agヨ,ޫ{ڝk.%'`1qz{%nw^oΎ? -V|6D/) XG@ V@d!G.Hq9Qf`%'`ZV\17h J[x饗ܾh Gέ(BMx BPa믿$Е$,[BN(`1sL֯_ K"4(i%Rl9}С.8Rpa to_Ύ9Qmr^|xӹ_uwC;vL[!w}׭UD4.2g?~*Vh!`Ѵ.`෵j~uXuONWٻ㖻'llE^Ao6i_/o6bTAĮ)kL>-[ۭ3gbd8+:L xm(ƿ}t2ˑ#M~e{-+{V>jU@v[Y}vgXG.t?Ni/ِwwpؕVHΈ) X$f X/'`*iLBmذ}]MA FosG M(QHJsO5m{#ƛ=w<>kvF     ,,|8,P,<>G@PCnFv*ʻ쯿r n7vKKk4q͓\4= @F:uM>]^3ϴm۶Bj?!PB+=(7`1|pS2@RH(`1o<ݱTk*vWZz X`ѧO,P,<>G@lҤIL8~{C}eڌ3 `QtiSqaBM3L*̱xbW3~ժUv7kԨa*S! @*E}+V}&BgoѢ]veUz 7nlW]uU,֭[Zjvw9FBիWBv{ʗ/K/ =_9([lϺkH}z X=zy{;w4'iUnYo&UV8p+ՋWAqƹ}0;ޱc[C )zl25j{k׮T<[vY _7I X|uyw]lU?Ltsl՚=VRA{k`$[gv]wat[:k)t2'lr?زG65J q~j{gnLM4PB]) Xju~{AOձ:5F"`q |*H?DrMo( #n?oގ9fUAc|Xh1R3@4)Sγ>,~*{\\9lȑv~Klb7xmܸ4fV) @,]3<,#駟NXw!75>Ye؀u^|ܬ`1wb'`| h͙o_4؟Vf{$o!    D >b( #nK.6mؾ}N:@AoUЩvwnVaÆŻ?FhI:z-o š[" +T$JC@ ,\Ǝ.nݺ֪Ux/YE*NWS"]9{l/o袐ن{SAW_}e^z+,`BE*X ׊T0V*UT>wԬYӭds92VBڲg XhխN:N?lĈSP$Rb .$B*U"E8*gZEEW\q5kU\5O*ĝu:t6lh͛7Çp-~VpQ8C+i%ӧe{/]Y}༈c>]c勳:Bro-[lYlvF\'s_m %K&evvgO?~{k2˚5=zʗo\?⮖{˖-9rm3&#{8wc7rg糷_m:f6ngŋ䲱o]M- ˋl,g,6˭pn IDATuxGۼ;qMj}c pݯzt_?  ݻ /t۩H:7}ju+&m޽{D>M=h!z88lZR߻zvJy].)9HA7ȤP&'|ӯDdmg'ڙuyF}b%Yf+5o\.fn'`qIފa-`#Yf={M1raF6kLd3=i>fvm}>ͬ2{(en,R     @: `AH"Eƒ `s U@bZAVZj2a!E*@QP|*lڵ) 8h ZB*vйm*vSA߼y\d=7! p?nÇ7;+t!o0SYfVRSqVjZv?SHAEZ@+Lmذ0}^dISdp`BUAs=miӦw}玫w6w`Cs=g~Ryy^U2ڧsPh8QСCݱUH|w'd־4"q*u}_ži͓&NX&m8Xj!흥Wk]VʭP@v"_Ik]`VHnb֮L;p.Ӟ~|;J!wh5)36c<@MkvelL>  -Op^cn( Vg={j^0mGwU\ti%Kv~"[jΝ^+VX^lQ,^ӪV,hGߖrkĜ;oc,t7=h=g)ɓMcnsbw}𥉉+WOԿg(g}iL>q&_Դ-pZH)t>P6mvדf OB! Vw:30}:֣٘Y,ƒ#=kV)`qb^'`ዉN     @4 `>%`"`A9r(B/֬Ycg}[A5͘ݺukMEfVpC*ӧu2b*V{gzfTh)S=ժUC@ C>pB@ n֬bжe7fWSQ*VA-X^`M ͛D*N߾}+T]"3gڗ_~O_uUqf3JQ:=gU^:C2`QF W,"|_sS#%T,gFp?I&ZDMaf>Ez+'|tJEѪ^3fWP'=B۷w݃+}VZkРAR6IVߌPС[bJm{BܹڀkمbWInBi?k nZ|9lӖ1бMeq}.7`Qw}v5~     p:  `'`"`A9r&[o(Q&L-ԬY37Cd:uN@~8aI&YUp}Ŭ}x]1 9UwWݔ~ d8Kj`@xDf -Zdq")۶lٲnu6B[0`D矻s2vК:|~W *r*M _ ZYms50QRA V\l)X"xk×%ؾ^MyX˫:}WPLǨʟW66˟/}6B}wO_d__~<ԲmȻKm.l5;ohz=ל[쭑mf;S&%Z{}G X}5`Xn[)kƍn"5}g{vWHmΜ91AR, PNM6v3jZKM^,Z}K!0ܾll˺?,lV9$Hs٠af}ֹ6oub7`-_d֯YoiV+`G>     @T `F%`"`A9r$$Y5C{g+WN@E3^8GuۨpPThG ?iI6hР8V!TT٢E Ex@#dT, UpCj}-[&xڷ΍ Y7of/Ti4P!Tt}BTmUpA|}*Աc˟?[B5ɫ dɒqVH5̾  H4)ͯ}RN6~^})tSrB4UwF@@@@N `A `"`A9r$žnݺ%xm1+RVșYc7nl5)-ضm]|IX$  `ዉN!-1cƸUJwgu4Z}_4:wlg}vFd}X){D@@@@N >o=( #n 2{ʕ+3t3@@ c ɸݻwlM42eʜCOҭVJ @ X1xp,N;GE@@@@N >o+( #n   _+z" Xũq     I `AmE"Eƒ `s @@ ̝;ז/_nٳgmߐ  Ss'85@@@@8 ,XXXx,|!    i&@"ͨũq     I `AmE"Eƒ `s @@@@H36ǁ̬VYá@@@@@ ,X XXx,|!    i&_Nq 3{Y뫡@@@@@ ,X XXx,|!    i*ňYdk劎 Wlg     >o9( #n           ,XS XXx,|!          @t `N%`"`A9r          !@;EAȡ          D >T( #n           ,XS XXx,|!          @t `N%`"`A9r          !@;EAȡ          D >T( #n           ,XS XXx,|!          @t `N%`"`A9r          !@;EAȡ          D >T( #n           ,XS XXx,|!          @t `N%`"`A9r          !@;EAȡ          D >T( #n           ,XS XXx,|!          @t `N%`"`A9r          !@;EAȡ          D >T( #n           ,XS XXx,|!          @t `N%`"`A9r          !@;EAȡ          D >T( #n           ,XS XXx,|!          @t `N%`"`A9r          !@;EAȡ          D >T( #n           ,XS XXx,|!          @t `N%`"`A9r          !@;EAȡ          D >T( #n           ,XS XXx,|!          @t `N%`"`A9r          !@;EAȡ  D3lɒ%dXb'>zh۹s{SN+WH2U8`Çw,Rvm͝;͛~ܨQ#^I=;G@@@@@@NG,|,P,<>G@@@ :zmcǎu';tPk֬Y'5kָ,X` ,SU`֭Vn]OrTlOgm۞s@@@@@@@t `A}O"Eƒ `s @@h5k͙3ǝ~ ~v)[lw}Xbv=ھ#ɕ;}Kdž ޘ… [ΝO7+G@@@@@@(@[EAȡ  *kِ!Cwݺvj[-b?'N}Bk?MS-WM>7@@@@@@@ >o( #n  Dfu55kָ,X` ַN@z X\Ү*we˗iӦ*@@@@@@8Xy@ X9tC@@ ZX{7;,V^m7v ezO8       R,|C,P,<>G@@V,MN UV*UdSLI+      D >ob( #n  D zy׀źu+p +W*H8       ,X XXx,|!  ,XD뽛V^]~厡J*6y"8  n IDAT     @  `&&`"`A9r޽{mVdIˑ#,i$/5s5\csN#s@ @EFO5׀aÆҫUf_|d`       @ `A M"Eƒ `s YQFԩSmϞ="s.dB|/^7n;ړO>yr^@2 NŋJ 6X ܕV^&NWͮ@@@@@@@-@;EAȡg ^[}Z\RJ .5keGcǎ޽{ǜnժUmҤIr' @:H'|b]6mdbŊYڵI&VR%ߒСCYXr[U`ݺuT_@w5jpLB}) v3gR_-[6I;c/^߱cǬhѢVT)ZW\ fΜi #h"f{=Ξ=;=ڲe/^ڶmkZ9DJ:w'VMWeDD!%#S%$STd.9sT k 2)H櫹Y 뜳{_HY{8{/ק~j~;N;d7on}zn=ɚg4nܸlX      k,<q(1G(%gvڙaÆyG5Ntٳ孩Qņ˗/~ 7?1 yրm#G3e-]4*Dݺu3JD⣏>2#F0QְaC{>C3n{6Fe dҥKӯ_?˾Yffզrfڴif-~֫Q3lk =:π" m]tM^{eիg~3w\r <#NwB{i=PJF$,XlsKE4D˖-t0aj֍`pUp ¤Ia& $o?8 z]5f8{5/т       1,<q(sObz0!@Sޜ}fqȐ!~>}k֬1l-:K XZTR%Ocڵv3m[NE,CFZF>-W PvJ[bΜ9^EjᄏjgB of_L[t_\ mW_m^y6I*_?g͚e~3qDCaU}guQ6̡'kq_~QN: >0f:ujM>݆4#B2C2ԬY*X+dqݶ`BI.C [N>dV,t\6`gakQ *䡙;{1ؙC?=}-b:묤DK/ @@@@@@@1,<q(1f 3-=X?T(bС6ET짟z: R5-OA`+l *S5lnE7`@ .qkO[n0zhsG&}kq,t5Sf{lЀ-3pSur$U;SN'4ڙgJg\,EIW{q: ^zͳE6^I.Hl^y睍 !lԽ$ hv 7D{d).]BW٩i֋>*x@@@@@@@ .@@30f `yx 2"pW Dg>{z2qըQL0>8ۀe]f|͌~Oڵy뭷2u,4ӆ֯bL-\XYge X(ҪU+pL`gAŸ FT$z4 @JKB2kh$]uz뭽AzԽfv[q,TU|E¨;p7h^!|fPTE2O3Ψ֭Y+^{5sGY ʸI vӧMi1aׯqL3pId,^z%۲ X5*)l~9s/ Xh+3&C@@@@@@ ] 1L"MBo Ng`9 [ P m*}UD6ۘ'xϚ5)̙X_o_"gy>5= /q G($ᚂv9S̙3ͳ>ki&ȡugz ?.P!lܹsM۶m ]x≶POY4iRⵝvAܓS,j+e љbMLU8yfĉ6l2*T1f66i$Qefp5=[O!@0`sƍ#ۉ%K{6 Ղl6F'Oovo:`1|ӲeKt}e]lWc=hV5ըQ~LbD@f9C6Yt_ؠ6H gמ|IsM7%`+}Q3x*w}7޽{nݺ%W_SN9%w)p+xN2Ç/}Y/\ ,;"FS$i״Opf͚vD`KPjD >2$HI*t7*btMcnKAFOC(<`8>]BE]b-lRalšoS08[V PCEO~]](ALLm óm=m4sg+Ȫ`?lji!w&f GAY} sV\ټ;v9`֬Ycg++nnC4߀f1q (w ?5߀fgMC@@@@@@ `AopNل*fatCPfgp-׀E* YTX#\4)`RJ?30Gm~'5j> `~W7pWivE%n]w- ۷O 5B t{t93&LPd]C *5EӦM}Ux5Ѕh eG REQ5 lN*j:(3jԨ6ANԤ*uB36hqƙ}7mכO[j9Z^m…Ev1]cM7a7,X~&jNA7 fsW݇i|BRK5cD0`+4E67`1vXsWE3obҥfl-       '@H!`X$RnQ`yx 2"p)S$&Su}vY>]ŋ p6`1|ӲebT(X~ ?;s*l&~>o޼ NS,֮]kgПjUT)2[*,tm=4ok8`,~ S +L="ٳg6m X EkI#F`Q,t,N ) Zzl7;_Gm 5Ǘ_~iV]D3fD悧s95Wq"Y™ ӄ[>!]v,J*`wiW߯_?ӥK>;߀fp`ݛi        ~#s"` `y $p7v='~hL-ۀE ֙|}ҤIVZfJx뭷OT`qޣP|yoojQ,=qo4/R"^zu JC"zlIuaT( jmoS ESeLkv7#Ep[ӪU+aÆ%f5]we_8qbn%X{B[o5N~H~y}p駛ǾVBsǛ>X3P 80l"A-DOlQFCi.qf嶿f;w`Kӧgb }O )p EBO1VkZji 4믿^f zb… 7x[niƏoԩї O4,."3yHqt/6Xf -_EjM41cƌ{.P7noʷ}Ǧcǎv1;wps/hO?F\ofP۷ڵ=s栃JKff9ro/EM3r!JoBqGѣG>ބ      G,<=8T6 %H3n P4\*S!4hڴ믿/_3D :<Ék>-5p-ۀ\{'XUZռ{^! ?mµԬY. XS֭mĵ3gիy~h9N>d"W(bJ-Sc52eyG횞RU@ O4,N=T_Z+njEu7/^xݼN: >}`ړO>i7o2u?£ᄏ,bYf=wqǙ>e3ΰ3x~G*iV7մڞ|ڿopZf̋/J*`ጴ ֫W/] Xh8t4++4@@@@@@@?,FJ̉,Rd ^0HB*={vb'soS BOvM ,>lG%^S}vv 2,Tܯ"`ӓe׺tbv~'fv3o}nݺ7x#/ի{5sLj#?꫍ zQd&믿ֻw"Oߵ^(-4 TO~7]1<`#]0`]v'UAct(?-`, iV6S8_MR|pˌjaE?ܾvM78nwqdKN;%(PڵkmH{M.\OS(Dj1B3G[I,45Eԭ[7] Xh&8͚v1, @@@@@@@O B9e R_0Elfp /,σ}r~=@($.ߏ?x뮻ڙ z-cUV%: P bĉ(mD|E GPE 4*TԨY&T=Zk3dcpX(i^>n3֭o営҅<Xh 7. h?Ӱ͛gFm:t0}Ns}%|M? -[ n B4,tݟm„ {v>­ ?>qXbM{|FE@@@@@@(@g8DE<@욞EŊmw8/ضfV[C5hРȌ3f̰dM3OZ8WZ詿B6>+G "\p"b0`/RW\>+܋. Xh j> =MO֓c=߉wygt_hP Px!`q 7~⅋2`?#8n” \t+WhyZnMvunݺH,4XvG xD73нfQFeVU&CaÆEhYZf(W? IDATTBaZFՌ4߀ )֝:y       PX,P,b,<!PG4l4Q]wevď:'k*?/)x1mڴD@C,  X( 3>0d; `Ο?\pfIQA8`l2ӧO;3E'Ek ,p-7}tsW{¯PWoL.]ҾO³[}F Y4,4kfOR;բ X~d3˗/p*,`v}f/sYLh&.6UK.5x e RG5KeժU]4Cw}g4ibgJ~7cVǎ͠AGVYU X($n߾}M׮]s7߀1馛i       ~,XSp2\we\~M"Y_l pa8B"PuʶkFi̙c,YY'`_O;N4; *5 w]k/9> 3=9Y=أ*5#)n[3suWR瞶QO(Z+ͫj-ZX T |nG}~(2rAUPF P6JCBAs9k7EqG)!5Ӥٗɓ''ft( bѽ+b!SPI&v-*ٮ];ƍPHϞ=KfΜiڶmkؤB#z_vVRSp_6lM@@@@@@@ 8T6 {y_6 ,PE? QN7(>pBSV-;zݯYƆ4BmYV.~']v(^چ,֯_oCY#ҭTe׫Wφ1P!k*kӦMŬ\| *^]wVlS5H:u<믿4!@iXh&7EpFfSe5;׌3[3W`@W^/7^z8q/z뭷.VO͛7S֭mX_6Amܸqf}M I!Nz*1kG`.j?K5kXI,~gӢE {Y>#;IEbG@@@@@@ `AsCAݢϙ0O;"3ghG4 p-S F(!`![oՌ1zk1cx5Xh+F2GuT6d*6#3*Ȣpßi5kf|I[nw'ۦ0fRb3|gzg=v، wPSN1fͲ/),HVR [{_", C[n3@@@@@@@ `AsDCA}j0aŢ8 E{vڵk{kuk׮5|YdԩBMjիW73gϞ>3<3K2` ͔)S(x2df8 #QC@@@@@@ `AsCA8 8蠃׫.:w-}Y+V^nYfKUP|?4yb=);AtѿfifM\s̱v}Y۶m8wM:7nG!      d `A"(=XġX Xx9tC@@PJ[9>;4WހVEnv۷31l)? Xh*zRz%~LPQO jCggȥ] 6̌=:1Gh &4B1&, bL"b̘1v X(fqСCU:       +T8,^<L,S'yg͟n A,dI5NX'`W$` `a2@@(5`!W^oL{G(~0 ~;Y= j|皚5kzoc,ɓ6tS;*BM3f?71YSh       X0EQb{CA;1c       /@h!`"` `y @@@@@@@@@@ C ϑJ"E"Aȡ           #EE C7@@@@@@@@@@( ,qDS~@@@@@@@@@J EE C7ʛUW]eNjUfy睌zDSN1]w]t `D@@@@@@@@@  `yDCAq@@@@@@@@@#@h&`"` `y &PիWʕ+]xi޼3p@sg'3}ĉ~?UV*UdG@@@@@@@@@(\,c;'-آw}>|R2ekw1]t1ׯ7]v5}`+V4cǎ55ʸt@@@@@@@@@@/@(%`"` `y &w8`1gsI'Eu]SN`LӦMիW_m~\:u2fm Ga-[f>h3r\v          @) `AsHCAh/5kf^|E#         ^,f@@@@@@@@@2)@&`"` `y &eBvo֭eg}mf6lhf2dѬwiݺ}-׀Mv̌3LJ̀E IDATn+W4=4h] 6}/         eV M"E"AȡM ꀅnvCuYmlf… ~E2`ӽ{w3k,ʕ+:u؟YEfȑfM6)o1         @ `AspCAC3 x%}%\b_ԩ߿>|VE-lʕ+ͦn[=%bV   ÊEE C7@@ M7C=ѣvlɓu]gUf^ӠA2oeiGJ <6^zcnFӦM4t@`L7}Lj#LƍѣM*UJݧUXhJW\a~ה<*U2j2W ga* -Pεe[tܹsӷ~k~'tR曛w}N3{W؉}FY6@@R !C"E"Aȡ  &0n8ӫW/*f{ m^tEFj*2ꪫ̾)Leˣ>jlڴiS/d@@EI_+o]=iѢE aK,}BiRq N}.% O~ NkJ^`ɒ%f^3$UP9sW_m36>n@@@ W,<8 #n  =o6zȑ#MKƱ% *H(tXiח_~#O73f̰?N;B`ժUaÆ첋2eJk {sv7ڷoo RlX({oǏov[3i$[@ *m,A>!WIscM61s_QYx7oѬva6ȪlVRXz@@@|X?,P,b,<!  Ph,J'/آի ck%Up~$ҥKM͚5">y+wd!.cod Xh)%uo?:ulԢLj!}y :u[nR˗{׌5ʬ]zQdA"Qr@@\8G;Gy`zxj]v5}hh%@@C C"E"Aȡ  &@>1wc TAOƶ'`:EK7Z|~KWy>$ ޚMMc=<ʧ}(oG D/ЬY3O8\͜9hV&rK;~1u"    `9XġX Xx9tC@@+`n:5˫(JBigvXrQ[om~>n;v9?=YZOtMZgo^zMZ6j׬Yc\]rlimGd"^&lvha .qKAfe6lcn;̥p2,[̎+zmsSq XhWSv휎%%9=mכ~,YĞcbS\;]Wt5#_EҶnm]? 2R@cc.ٶm:szkX.L>پ]5u\\%mƬfmzrŘ>"[O_cLݵK߽r1\}ڒ霥:t߹Z=xe:Oڦ7nU*`1m4G5sLDqG;G@@@ `9 XġX Xx9tC@@X̝;׌9Ҍ?#i=4~ٳl͒2k_ ͙git?W|2u ޫ=CO?5*@PSξkgםuY￷kz뭷wSN9\wu駟6?0GOM<e]Qns_i?T@x',&+_u7x`X8kGuuMK㏛ڨDۢ3W_}uXN{hQ>._cPJMY%k/y'˜\z栃J9s1|ݎ?،3ƌ1n;Ӝz꩙؊ 4@ iŅ?ҍt'c/-9ut%ibcl{*~<餓Ƶ`G}S_*o^^{5Bjvyg;wnVvlEuMի9_ǤBR:kBO:麓.L\W^I}Nz6tP{P1G+Fr!l%uo=QBgs=guNv\ KǙ隖K/1k:4jȎ_]ϓt~DqkFDmmР6}|tt+A6Ë,8_:ߪ~m۶E=}N:sp֭M׮]^ע Xd{t;n3ӧO7{=߸!*~\FssnG;̿/pk M * |kرcGy4i$}q3\pv}m;3Y}RaTӹz2]tQqɓu{Ȑ!{s`hvmGSc.l#|}c}S멚-M6\z!o݇j3]?|{/i\Zй\{'{jڵkg'63wF1z̟?^[5O2s~נc$Y7c#{L'[xQSGvsչkG#:EӹKQq;iҤgZngnQQ>#@@(,Xxkq(1G@@(4(*R߿TME *Jz;Zh,S)SzT\bTM*AZx)r-*QaB"zU ó BWXԢE [P£Te˖N~h0]SA )]꯰Ԟz꩔Ŕ*`vE Sh54kUlIQALʔ 'TUW_H?HVYǍZT1i[UXq'-T8Fϙ3n tYLŽx31Xjҍd>>ö@09KOVg)k r*SѳT\\Q@U'kQ^Stej*XS_tǴdGcFEɵL\%P}P-xO*T$r\Zmw2"tqEt1dM3\r%6`cǎ6l,`QRA?, ukw@e,uBTM#`t~{WZl[ y*c3ۙr9%}B2\i?ts X~Da45ݟ>fϞm uj ~8<#]\Αn;͛7Y O6YS[n\?|ǜM wRk <*y7lQ}UhװaC*WkgxA!=V^(&,T@C=i dVM=[Ŕ*{/^l>RO#4"Jzic)A'I ?SP' *ZŰt\}rU4h9\SO{ն< nƼfL= YA@4lm+uM32i?ܓU F溽()ڟ(e 0*,&KVtոQa>/a$twt54T8U:>EAݧ(4{T fr?+{L W=^MVANe뚻~jf  %gkLQ-Co{.c,Xn9|wKB:kƂtӽ_|\gd^rߗKB wRѶƛk.]3 ڭY-%; Xzt Xs]+u5QNJ ,j~9+}sS=^2)댚q]a-]4Skw}Q0YPQ/5\/EfQ\8 eC]Q'umO:wir=z wk]+ܬtd`ƁK hCnnU\xP~VQ=kx ߀[ecSX^05GCǚ5&}5`E7ӸXpM+UAHI5jmM̠;fʴ(~i[y@@(,Xxoq(1G@@(4(\}߶@DE**Q!]zZ sT $էSNpORAO*E)*Rі{2ޯѣnTBeӲ)lڴ-TJIzbWO֔ Mf} z 6=UU&6~x2p-bpqLT<~z~Z_ZE/*~QOT̗M *jǮ%+SU<&kVTl* SUHbS~3NF`QE3Vh'{Jl&|VG_3f̰1ik:7Kp6GO(WAm1yO 3gGn:Oanʹm۶~ 7$r*8p`Oq^St q3nw}EW=u'Jqu蜡G?S[9]\})歧j;`hE_nAܹkpWT;֢h:Sa q)*SK(Xu!,UB.H<߀E> DUZMOgֽM3 IDATH~OEzBw0w]Դ*l\(I*Vk gc9 6Ulc:hRP®e|>!Sh|PdsK }*udžR{u5]Cumͦknt]9t6sz0`mw݋(tlHNjB9F1u") S 6kܸlzM}2 <iU5EA2 =xܶI.SOٙM37hv*sťay8t~zrUxb9=x-4놚5@Yz: } q^mX⚢Eu.S1m׮] %kӦMtnÇOtƿj )ɚ i XsoӾzjC<^5gO͔kZ8t 1tUѫk|wTݽ *OւA0m"y@,lTѽfPӹOEǺd￷AI"gt6sd0`E}GIU;h6"w]ps^W(Ɯc*WWOOV< rg ^`q<*2{ gI:B? :t%ۂ(\BmŘ>">3zƻ7jK LzMǮy*WEߵ-y<= B3)BYUpU}:_):_7 *;j:!f:68k)\L -]3m ^]{t{A٧ [DqG }   PX,P,b,<!  Ph,T0Upψ4 >];\-G:;~Hfo$ O,ժUKOM *OւR*tO=ӆ k o~(\T9HwljF:.*S&駟|BJw?ާ{] +th"[ ..߀E{@|Rn"x~RSw-c#{LFq7h ֹE5XxVLۗZf*ӹAp5Lߑ4k-cLچ X_*T n,Q|}>d}4fP={ZjVmfL*Sq]͛7>}VM<'* pԙ)Ͳ1+"t!d)čb{c-k,eA|b$pP0x=+)ݽA:?L+LdKc g5Ә4ÊKSNFT-,pSӵ\Q 5`I&EftT7s7QtQ# X h}Q 0~ Ex,fk Yn3,w"8{Uwz{X6)\炼 ec.twS7;Cxu uhZje~>0lRs&[y -W>@FZ{fw#ע X{؈<\ O}v_ާ4;>!5kb"13Jʊ   U ϱI"E"Aȡ  &oBI*4ӓ2ƍD=O̮e*vri]O].`fa 7艜nVau~bcŰ-`,: c,]B׮ S-$]S+r=_>ZceBOiU0B"d6p E#7;C¼(Q|}>p5hROζmk1]B;h+W&viL _p֊~_|wɖxUMliri>QlwEqM<9[ߺW k/3~ďed"ݽA&?(Q51Ѭ:ԩt7ULj*U"Vg1cƤ\QZB<54cm0Ll6}6F:(Α%jY>6u-1?S\KwYn}Ќ& d4Nu>mέn9Q# Xs?0k%„e1`7y<}臘Oq)5פIwMB}KxTψځ!  󀖪:FĆ DTTPh%`Ŗcl-!bo "H#X{){{[˅w)̼5,dl2X =G@(kGc?"6bʔ)fy_$vr2_^tvC>+,n'QUViԥ^j:5 LF 1lg3X#a~2Wbv2r+Gy=V2w/qB_L b,Njk/3mڴʥ!& .h_#:`k o;D~:bNE yygȠDRva }٪"b"PĠڝ,b/b)/XX &L k",bC\7$s{HE lyILd^r%ۼk 2K )jڈlεVEY Pf}(0j WFcd ڜNEcǚ_~ݭ|8bĈJU9&kI}3j c֌!2d_`  n喳oqBD@D@@Y?#&f+)Za ^~1W " jH;[oy孮le]ɓ  ( tҤIA bO>@*,|8,0!'M ȋ+œyv~xeR k^r~|{wM [ϚPVEY >Yzkjy9sW*!h6hE6dLg?~Yp$[ WS"&g֔Xci^ ?ck"FchE|zSctT.Ɋlp\7c`>袋Buݷ#oo0TGlF㱾Ϩ;@D@D@D@D@D@:9,dl2X =G@w!l6b$u7_IǢo~c o^S`AD@D@:1 4:'2/H$1UEbwq5 ]6T4c s .s>hr.ba-N/j dm]G %0M˚9/|!Y"O8¯"E1 Ѭe Й >2^~f磌`c!5s W"y=O?Jv\r%}ꫯ6Tq6n$ v?! X/b)/XoZke0Ky~gGμU4X {oƍgO>Y1i;0sQGUt6X׀W_}eky`k< 0ϐ<3ylc6Xjsy~s%ُ>nLd:gUc*ek=̑|][ 1\uDF,b0о ]`oQ_rʌ14rew>IR3f]sB梣>y3?\}<`}@3B*E+(,Z@`st'NȏQ ?9?"tq2X`eh%E ,{6DM8Ï'ONL:k;LQQ‰SFP1D@D@:3 .:Uo'nagwQ$vrlPEV *u-~4QYR9׿Tx^aa[lE*6?'klFZ3Ldi$:on'LN q6me@t7pDl_H_~G/qB_EX2 ]T©69S7cફ /&#.m5wDH>hr 2Ĝ}ٙ"F}FlNڟ4,dl2X =G@w"0ew饗ZS 4Nr}mJ,Zb,#n!skiDN̉@w*dN>B-xZvͯ~}5sǴq~`^` +T6Qa+bphh1c$0Y͜93}w!ςr3M|y۶F ok Vzɱs6Y$uPWm+d 'r c - e]Vy|EGj1M44^{w8#z-kjcl"E2|eQG)Y Dm329z:K }O=TKEۈ=3_&)6#/(C_4͈Sڠo YA_"H%Y#0O&*80X gM06^}1dZ]*Oic{-x^N(cyז^Lq=T3NrMveE{.Elˎ1 l_|6?8e1)!&@h?XV\q\dC #dw5X9_྄wS;е4?`Af !: cC= T\~煑J"Yb%u(v \3?#_gǔ3?nE{`։ Ͻr'|2{{ヲW^ݰ"}Dpb)S֬0ܸh&$d'{QMZJ(A;Y4NP,(:Nh\ѶB,.m`@G0_~iCAg0Xpܲ > tYO&/P"&e] ^f\H1w ΏF)Y q.ϼJD!CE{c,uccA}|뮉1q2 O;~neDؿB U θO'軌Q쟪3#2C85\Ӳ癖ysM7&Kboh[18A}gvَ9?JmA7iĉs 6?++1S- ۵ )k` *;#~g-X;0Ý`LeoBaa@`]gYF,8_̘y?諬bQWkseuB:9ꨣ1ڈi7qΉdM\6p@;? @t>MFs&Elˎ1 1F\فl3eWq 32]Xc`7:"c%{1d?e Hh3@=:|}]#<Xؙol)YV> kOy/"E61:"zm<ʮo0Ɋj: pk`oXqv]Юb[..dfeϗqŘSG챌jcƌ \ _~w apfTHBN:v=+Y0p_,ʮ B϶fo@\¼6lذ܊7=1k>@| T|2XplΓIUuDߘoTM`,~2>䭻ƹZuB= 0`̂ 2) N)b׿{w_M<ȥhQĶ`rVks;_ _d#̝uY%~{ュX_\S@sw 7~ 0`?,N H!GDg]@2Zj6A1Ȋ%qF3OEFh0ӧOէ@YDՈ,QA?Cp'Ӊ>@fLV֒]f#z](Cz~eVq>s2Mք+c?* Ȭ쿞۔}g%gPXh*+eQ $?d1P!bܬMAmQƌG509v]|Zv9199*Em1 \r/6(:>c0{뮤hG{mE>deߌ`M&L(}2yكq׵?i۸'eXYtljԃYy=1c$wΤ`ᮇq5[•k3?rM#F+lLy=_/1Fou6zci6[k>'l}Fѽ" " " " " "U`!E`[ - d9L. Yb? $(Kv(2Yd/C TǗ݇r9c!vٱ!lE} ly 5b+6y]4@5nwV:@W$@}g|ws]:uM"6;e5\q'#@$P ^.ID@D@D@D@D@D@D@D`!E` - d9L# d} 2R G9wJ&Sqg[}6~,BdmfrlO'@7% E7l@2X`dh%E ,{6Hշo_#X&!i~'=<&֫5f 6`Ȋ淿Ylĉ+9o&O}\g=@$ EjH2X`dh%E ,{6Hc⩧2={4CFo7{Yfe?l+j3gc9ƐśoirK'я~ꫯ6z}矯dX-kn+b6tS1Bu" " "XQ6&ݙULb]wA.o7|cQ *~߶es5kzDGd @/" " " " " " " @@ , dh!E`f" kfm>vX5\|뭷^߯cO>n 47}em6=cG/kXkǙgy|,c5@c HDX:tvZaE]d>ԃ`@E~sګts2Xt NVP2X"h3[k׿en .ysoo^~e[qb֬Yy=MD@D@DSڠw1>o94/Ya 9" #p۪o\rL{DҳͶ1dBsdmZ5ﶭߴmBߵ!k>HDk>N6F[ - dѭ9M6\fvY/7;ѣ\A濛nͦd 8p5a1Œ5* f L6ya(k8 *rqǗ 7n]@% *X6n,ZA`BDp$1)S . <'Ccz2<9#ȑ#mK列^z{@lf e T׸ksm&L`E ݵE@D@D@D@D@D@D@D@D@D@D@D@D@D@D@D@D@D@ 2X_,ZA`BDx;lc-U~iB CW_ي}5.|o4O?RjTH-b?x駟nk&e n5?6'xbSl= t" " " " " " " " " " " " " " " " " " "Td"` J2Xm&ݕU$Xc k $\0"<9pmJe ,1cfڴi?*Xtkh:2X`heh%E ,{6L`رsαJ+exwFmd?蠃~\t_~q= .0:#0;o}0XS*sp 桇2q8ގ;hN>d.^{Mt" " " " " " " " " " " " " " " " " " MG@ , dh!E`f" ''z9?hk[ɢGo߾fgoرu d"E` J2Xm&" " " " " " " " " " " " " " " " " " " " "d"` J2Xm&" " " " " " " " " " " " " " " " " " " " "d"` J2Xm&" " " " " " " " " " " " " " " " " " " " "d"` J2Xm&" " " " " " " " " " " " " " " " " " " " "d"` J2Xm&" " " " " " " " " " " " " " " " " " " " "d"` J2Xm&" " " " " " " " " " " " " " " " " " " " "d"` J2Xm&" " " " " " " " " " " " " " " " " " " " "d"` J2Xm&" " " " " " " " " " " " " " " " " " " " "d"` J2Xm&" " " " " " " " " " " " " " " " " " " " "d"` J2Xm&" " " " " " " " " " " " " " " " " " " " "d"` J2Xm&" " " " " " " " " " " " " " " " " " " " "d"` J2Xm&" " " " " " " " " " " " " " " " " " " " "d"` J2Xm&" " " " " " " " " " " " " " " " " " " " "d"` J2Xm&" " " " " "54tlsazk]vvmƅo>%ҽ>;)S؋~gB -ԽjM7}u57tSg믿>}ٛoguKV_/;xJ]r!.y;E\4CX隠NH\^z-ӧOkhYu_ywr-ziN"niƲOG{k;Sc%sB7`zG]Y[" " " " " "Ld"` J2Xm&" " " " " ]@wj b rѵ(PA[cE1gռG-;>ty;yeۺGcYmmD[3@(F,B#4 2X5,ZA`BD@D@D@D@D+ͻkZ6hv>Zh!ӳgϰlf饗6s1GU#3W_ls5WUgco֞C-L>SeYk>7ߘ~,AԑB2m GMu g͚e3/袶o#8rC7|ē=X?e|wZy۵gּc+wjjus\-^k;GO,H[ցi;k㙄sw}ygvn&ao=E4gL~Ueϥ5c6PvmSL[g5Xԃig\ЎF3Aھ؎Zׂ¹W'"(vEYΣ<@`!E`k - d9LD@D@D@D@o\_\UVYg?3kVmfWE+>|Ǿk^}U+8| 38o kmN9rc=f." /XsQhcBkf.r3~xVZ >l6瀘k0aoFe6xc馛ͯ~63f7n}K/5묳N^z%оTb.<_%VciwO;4?n3} lhlOk+2O#okVXaʶEºPCs=g۷kb-GmzUꪫ]we/BH樣:s. .0o}kR։vcG}dwG_ y+Q'({19In]X漼god>䙋 q3z뭗zJeϥ5c6PƿcoR+>e͙|fL5(aNV 449Y9'/z҄! Q׬1c#FNd0F |! qVpn=ܳ&;E_ egUu0oZA#-0 : U 7}AJ'J`Q=}I1eeŖ[niS%c' Gy #Glg@bЍ(c0"D ϶$ڈ&3`.T#k,!fyua,f; W^yev1C(ּH 7O}k9[0G%s?Lo!B2 v&D{wS,3s'ly>*!kh!]U |fȐ!mގ5v9h#SXQ_ 0WZhS3sW[nfSf1󞹲>So}neɚV[m5+G>Բf ]8v{km+e5Xt?sD=-aI>>xȜ %]o-Z;x]v!m?X}>7V8y XWpe#tv" " " " " K@ ,[ dh!E`f" " " " "l60 {m+!1q U-nW)]+Uh  f x@q2(a!Dq[Q!MOs=fk%SˬJ6PsOdPa3B2 ICٷ̎La+Y]`A&G2NkEld qވ:"'<ٖ@4*pm HXW$?ӏ"ҁ9(1˴NN2F _ O?mū]t"F,؎Jm.ci.s1BU*ІyMŜIݙ,~Pc'Ȱxýf@xz%TƊ#8 ɓQ$HA6nf%\ҊK{̽wUDqN WDFP73bQ>X UlV_pȼ/gOvmWَȼ3Zy;޹HRf\"&=AZ0y +nIEqhWr=Ѿ1YTf}{0PM.ÔѺaMsT*I1&7v׫m1 sFь+&+Yb=o wTd賴qs=vxcd&t,v%g⾲^#\e 4E09hoβsa,OіSi3mگpùX#nu&M;1g1vPsXcG:QsHgcsռZ; Ds46 3j5gjز69@~k(۷8NKߢpU eϥ5c-m {ki+ewE} S.GZky lv~/kִzUd<*~و |Žs$nROƸj=ϖe`Q<}' XVP2X"h3h6smb'A!A-X10$TTdhGYa?o@ Y%A\(pjĝF!Yc FlJuJ>o>? b8 ^z6.#}= dFhOܮ"#0cWY!%<(bXb"a]@8"<R!}!8U` U'8 $3""ㄯi(7 6px @u'c[ Sy@l2C28ca Otf"-#8b_W )y.%!b"0bG sOa@45!dgH 13ur~ҝQ@ڙR żv ;ӯ_Wo?k0m-i`PA/ΙX׏ |1CO9[>XVD/e=&%DVe93N3~C\xG.bv`UQ~t@C?LcM`ؚ5b`UP2r^ Q wkw+J梴q<\곮GX<#8cۮ`Au"keJ3XcG:sHg}zՁxIs4k]373b_iw7&M;jV[XTd.(-*>av4X8kF- XpzuH[h^/a>),<yJ&`gp9c XOaBO>gѿvuW]r;z<=I\Ի}hle~ e2X="fz_D@D@D@D@D `!E`+ - d9LD@D@D@D@I-γ?Rd 'K BL"7ΐ ('?I*N?!'p3lA1v\j|[ _Hu;,<QFGyn.K>24+4X VsI;ZQ 2'#P3hE< Qs9s_|qUC_3$wȜLv:`o GeZPM5Q]R"t ]#r2"g~]& &>؆ >-#dIV~V%ee>')U99NJէN9y=͌|w3 07Q#-0~f5.K?8^Y.gI,b5_O[LVKp*DaKh[f&}Zpo][c~X"Z*: v -DpIOYǰf`n 7WvYK |b۾quDZz!i cZ0g95 t]# fg=N o%ssa<)Px13s[?Q_;-|#}ؙcEF!eIF|4v.~b {X} #ڑGi9řdž-ύn=4X8kj@M^wBJ `0 4l<9;o<ϺGy`pI H&_uدFp'E[(c^."y1" " " " " O@ ,[ dh!E`f" " " " "LgP>YqY 30}c{dТwn_dA Bq0hm @C vdO 0@d P:yJe]O3݃?$W&F,'On.P3|bXb"a]QTD`nqYC>6rOnrzQ 1f`A5dy?8^?z~t̮ZtNu0kfgkmƐ6 a$a&U.-V a6/)E( Y")[*ʐ(ɸ'kkE=́M2V 02+qv]v\ђ:G"]e, i&{+;+dՖfH̻k8YC>\ϡ ihYnDRhk!nW1!\aD0~2wLgqp-zh 1EhmڙlH/R[s)fGB 1Պƥ,͔gWǬ1W^ye *djXg2Wf&F3`@Qggzs ٮ28ʘs6ߋ8jhN2X`reh%E ,{6f"@@ky裏E"/Sۇ/BaJ=4"Y 7M|Er2+`N,< D'~gD|!;  R]LG,0 EDd-u7{v:"  Xj͘12_D%z]!+OR:`9!ck⥗^dU'S676{{*7`#뮫i&k(ZC9$3 zb#7Ǻ?D4_4[TRtI1+ 1Υ욱lvmӈ7_V+b,ʹ*_gc?f̘# f#/Hꫯg)S*.=ϧW-}"8`M0X89A< X IDAT4?,dl2X =G@3 c"Lvj^`Ae 2N8o~ Gd%\}SOϺ[ =z_|~J1Œ5*sWE"X?$xW]u gmŞme?b'xqG=~f N䴝tE \[o xa) [y+o[uUmEj}q2d~5kVeW._?^l |GYAGqAbR !2mH<7_x|bU6eV<ED웪WI#/o>bDrE8C=T.1:bq 5`Q969*Ք藘ڷ3\Nv%׎b%랢m~x.`DV(]m;5x&C2s4%ͺ/aѷ\+ A<̓ 1΅Y3ʬm8^#ސZh\e'S8Ӫw8|>r`fI'+ @J_~c֓l5~?ǹm[]ʞG Wh:2X`heh%E ,{6f"M$3&^N;T15K.dGlyvdՌeݎ lK/g2&cj{ %B;7$M$bq \fqDp@ ecEG` ڏ6a2`›,~h.w d%; 2}3Ov6Z#~O>5 "`ll|7wb>*B`p{/bԩݺLq^G1GIE5k"ƸuEmHÇI`YeU*2Xõ^D 1E쓌cǎ5/r[و~쪣璟m h~;,bk{V3FeH2Ǩ Hc%Ew Ekۼ8 +1aXcGcsL97-;GXެ{|^ۋշX/-RA0/ 5cmƝoޢZh\e|'lfl?!h}6Zjf &vw5ibXps ٶ ߋ9jڬhN2X`reh%E ,{6f"gl{W}~f̋+œyv~xee8`vʏ1 84i9O>6JG@APcСLveO?|(!RKfm nW_"A*X"KLȒNqAA?W^ye3nܸWdMegO,j!`m **`J_ <Ѭ輲>L43gδ%JE<ȆKnC-"$L gc, 2"G 9z8sI'U_[d5.f &}&`Ĝ6yd2wޕMb,Y7PÓO>Y9FLm8h ȔW}2=E]aÆs9dGD;,bE=8G[Ϯeo?3zh kNڛ撢u;f6o?~*,!ݦ6Ǝ"!s$ o1hK؛uc__$/j|k,<#`eu.Uf X$Ϸg{/j+ՊƥzgFനG['bál[ Xߋ(l@@D@D@D@D@D `!E`# - d9LD@D@D@D@'A8QGUc4A[n_h|Yg=أ},'3c sڊh_nJ5X?Bc*nT6x@ {̘1(!a@UiDP$`f}ֲW$o m`Qm EF"s  hIGQ171[lEiW#9ل;&NhN?tC6\rI0 Tr&x≩gp,EXbbCEG 1Zh/yTg,8n+SDu+kc=IU 9t?`]G,1ǹ}Rه-5 r-N2b%Bm~nYڈ5v=x&]}1GsXެ"|Hۋѷgk#YY2X^s)5c5m ڦ|>i+1Պƥz,bg5]#j|0aWa0!-|1Z>ke?3ҮǏo.,y5_l_1X'zߩry17:b}>‰NFg=+o*=cKl! 2'&:X`k*qc)_5Q#- ih|3X{#h"F[+1}t[qsm1 d'c=!bh+NeUPD_V*P)K셰+Q4O?2rHhXB oO03VŕW^ihf1.1ǹc}݆6E0/\zȚuZKgPhmoHe.VcXyF!eIo1hK؛5^ƺ?D4_4n[T~_WLi3X=kj@MސR?jEϧ0sϲj|Bˊ?Ю1I/=5"O޶1"y1" " " " " O@ ,[ dh!E`f" " " " "L̏)cVGyĐq]L6fmǀA6@^s 7`DI^~s"kϭsEMe6L:վFFnYɪH %[\sͦM`dqBNsGۗf~=몫J=z˞ 瞳/8+F;Q|6 Q8mrҤIaY _pc1n+W!B=#+UVzhG G(O_w6Wh2F,Rddpa@xqt3eL$11Dp.bS!bڼ`AH¯anV 2Ċ /xe}LՀUW]5T.;7LJ.#7u]0w9._4y1T ``.e>!)|my݉ƒCE*ns=& 5DӂyHVi܅6A_L,B3Yf.ꫯ?Ǽl?S P1 y$7V`s4T&Fs9V";`A4uZ`76s;wuYǎ?Y]euK_# On;ok5NqQ_">̍C>Tsb7X\IrNh YY?F7n\ń\j<Ixsf i6{CJYӲfh| \5wU={4s9gC7xXJ[ow{>POCs̼mc}E9i_" " " " "  2XL,ZA`BD@D@D@D@D7܊ݒZ 'Ĉ@LHQ#LÆ 37DQN 7`) ds5WBb2IQ'"G*{̜9^-2&џw9GV[m5Ia%Zݎ3@k`JA!w}[mUE5<~fy[qf₌.hj+#p '>Pq-BЈ8FF~ `(D\kEQ蠃(jD[zh__}w"F;Eli\vi'/f3L<ʩ_tEs~{DHTApL`&l1CFmd6ad */snq/WvAPEqEq1]"8}@dϹ Ps#<|1o| d["#o +f1FqOa\<ꨣܴb*ځ*Zy}'v}QL]n2 1޽{e9? W 7`Ȫ|&*t0' )Y*uշ,B6{6Xpxg0;3+ս&#痬NՈ9οO iTP0aYb%Rogٹ6`q|# sx85{~1vpu`$- ;n֜TLg!bN}^Kḵ/f<}yϦ|&kb5V`,o*؊Y(-u aߡ[no׸ό1|9F}]S8\4U8ob|_<`3>o&S+E@D@D@D@D@ 2XT,ZA`BD@D@D@D@D :D| /SGdG(A "Q3kGhNJg} *裏G*5zy 2fôu .wL{.~jثW6lj\#&/"|"`*|7bR@@qĊm:G'}͵g#4!b4Ev'74`q2pel>#!A|ǘ1c*ý^i~ th0z11Cܜg62V>0^1}@HH0 c\Pew!`c\9 C+ ވ5.W_ pg}׮L`% 7p͜ {| s9{ĽvUJ&)VwTYqXNUM,Y]by \  }̑.|iZS.k RM0QN[f e !vQE v5\ӎ9[anͰOwA{bLqG]paaleM6ۈ9οOdo*/Si\*gr}(m_dEtX.cǎ~WT cMGhۨ93Io-sX 1&|s-X1 -xY=1}X3fkD['uEjm]+b}C_M{N-bE@D@D@D@D@:?,dl2X =G@3@ďȾ;y-?6&S#GZc^ l#34?'#<ND爛Qu]g%aܥ U$dGşm9ɬ aƐf@ЊeM?C?H {~`YLke&iX'#N<>m Y ί&"Hk_g'`b<66XX:qPڹךȜO` 3!c#1+"d|>O@^l檫jW)'Fa*79ƏnsPLֿ0JEiXbQWI~]"F[E{\k`n ,Pf;Ƶ_~9}`Bb<6 1IE'&+c`TSa 27Saj!EBL2o0X`>0 #bu0渹6T9?7{;묳lE(3e gҤIӮ1*mc(2X4j)Lzbѷ~{곑_"zܔ\Ugrfb\qyvY4e֌# XpFմ2q 2a^:o4jԨvb>X4Uøh4beïYNZ"z_D@D@D@D@DB)E+(,Z@`s4+~̽+lg NAgLdS"$FC ",F&dE?ʺc,؎!-_zJ6nX뮻,LX&#GЅ[V|NG1(O=DVe@_?21s4#b@s7q.?J{>zvH.{< Ö8lЈf͚eh| nL"\solᆶF"F; imh[1>_Iة@0&)b:߿v+zSaApLf2rfe;\e^'3-zhCdk&?ZOd0"rFWb"c1!,bE}&sG19p3OIE19",bc.eZ,BvW&yׁhc=f]Ȕyv10ۤ,ܾX?} h8+@jq11C>šAS2V`EvtµZٹ>P7!,nT}lZ5[dU]Ogy]Sq2ͼvokKBx7~`Ιcr>ʥ 2gK^fEٱ#Dkm]yg!֥O ,03n3Rխ({ |G{sQڷk"gqss]x`Lcw06ߋ9$`_X@" -ZVP2X"h3 0mGM IDATV ڠ~ݻAQxRKYnh4EAB -dÿ Xq+-?7j'ԇ_|aM4 8DL1X2+s1Kmqa+tBύXZ,ܶ1Y!i65}]k.c|@Tvƽd\CXKDpZMpsTNէ͸(q]/+3lŋ4zb10Za6jmky=2nKi6Oo΁ypz'+0Ri{8l>BceUy/Sn0Z?1>=PS s\ٹQm3U'l5s:n#琲$bѬ5XЇwnf[eUQ. kJS#_X?Zv\.۷0bL1aȜ]\ʬ@~׺Ik7{ki+e7m>/m?dxųTV.s!U,Q϶O<|Yv<[q>Z>^D@D@D@D@D`!E` - d9LD@D@D@D@D@!P}wԶ첋q㩧q1X@#P]q+BEv3gڊ4TRP#@U8 E|5#}ѣͦn*d" " " " " " " " u JVP2X"h3/sۏ,f]wV \y>3>1bD紡@ _cڋٳg}ƅ*D@D@D ͳ>k&Mdf̘ag_~yky晧 ].ED@D@D@D@D@D@D@:,dl2X =Gg\n?B\rW"n\TTt$(Q*Q"$ݕN'K$"rIJ3ws5Xkdze7\C$  H@x`jbža$  H@$  H@$  H@$  H@$  H@x`jbža$  H@$  H@$  H@$  H@$  H@x`jbža$  H@$  H@$  H@$  H@$  H@x`jbža$  H@$  H@$  H@$  H@$  H@x`jbža$  H@$  H@$  H@$  H@$  H@x`jbža$  H@$  H@$  H@$  H@$  H@x`jbža$  H@$  H@$  H@$  H@$  H@x`jbža$  H@$  H@$  H@$  H@$  H@x`jbža$  H@$  H@$  H@$  H@$  H@x`jbža$  H@$  H@$  H@$  H@$  H@x`jbža$  H@$  H@$  H@$  H@$  H@x`jbža$  H@$  H@$  H@$  H@$  H@x`jbža$  H@$  H@$  H@$  H@$  H@x`jbža$  H@$  H@$  H@$  H@$  H@x`jbža$  H@$  H@$  H@$  H@$  H@x`jbža$  H@$  H@$  H@$  H@$  H@x`jbža$  H@$  H@$  H@$  H@$  H@x`jbža$  H@$  H@$  H@$  H@$  H@x`jbža$  H@$  H@$  H@$  H@$  H@x`jbža$  H@p>N;-|']hLp 7^uUawYGy$,3,x8:O^uUy7܅k(>Oo[b-"??%\^W:^+K/g\/:]37X,BS/oQzTG><4XD]{3ֻ,f&g(kÎ;~{y`9餓>Nݼ&fh}o,8)vy灺9 m ̃%  H@$  4Xh(l,&Aix$  H@ƍ$,LJ[l.B,?OYagZ ԙ0X`r/?pECȯ{n4`176Qx^Iۚcmqݶ4j)׿/,2^󧐀)筃7GnBu zַUcmFs9y^3XLM@ H@$  H@ , IP,&@h(9& H@$ q#bfjl6;,EfV߻jEUgZ hH~[?6,viGR>w§k+iwQo6ԕ/Mݝl"b6Sy{h<7X<1 u]汏}l`0b^4X H@$  H@  , IP,&@h(9& H@$ q#0UG&׃>뮰ˇ=qG կ /Gze?~߆~8JG&q=򗿄VX!<я6\iq喋E_ wqGSԶ˴~>P$繆O+7 ;N:\tE[nhK:蠸wS#'~믿>#ew~vk9~3 _~y@@@ xӟv}c˫?G~GQ<}n8(BOsw ozӛ-eA~0\wu8q/OK}}K_C!O?0|߯Z|+__{c\ {gx+^qp)DsLZkoйߛo9|c w{cQ{GXl(+|UV\z饱-vXx __ELx_9BDr%!}O-xI'CGpaUWmdU.hIOguVc>-Wxի^"[ory}3Gu4'Fi>A NbN8!<'<.@;dbko~iz[ynȓ|}c s4`[{ik3X0佟g8`{3׾}iv6 ݓ$  H@$  #4Xh(l,&Aix$  H@ƍ@"^oGa @,AW\؎H誫Z9("x.1 抦xsQm5#F&~5u}Sd+/#i$/ b=DbY(/"jԉr!qGEϟ{q 3'`yk^EMѴ%/Z[KĞgVm_=?"„.{L)%a${~DgyA> .g4BN׾P&$,J0`i=f,Wϧ/ L|ʪu ),I Zw,f77L}χ5X;o5X#&1f L*b~_;j`Q*1Gy*ssF}!Nfź0~Q~y߽KsQS[[/1XtoFCV\BYTcrW{ k8󶋩!o;@!ϻz~} 7~c@^ wM k]vF<>BĜo.5se1-v)3X`]|e>fS7unNٮ)rdݹ414X:?9Cjt~E=gZ}f͙G$3"T@ D[YiU!xK6U1OD/zыP 6$>ArZA*^肱FlAUSo2=u* &ᱢ%A20L;!&hܰb4+>.@=]<8O;HDdfm6W@ZY>0OF#joZ gmqdDO}'դshGoqҎUCS 4&NXUx-ACxLЏy `L"qv4Ŋmw a+eVh3ʪiׁta $zZm@+DWdHL.aW:u‰L횱dgĺ-os\;R̊)X圹(0e~C _~hW* k8}1n喋}ne׮/%!4ՠ0$kahk;9'cl+?NPmu|3F2ɛwy W܀yq<"0dP}Qm-8w(;MRǁAS^v0H^-cdc|$&<9iXFe^u旜(]Q{ Ji^u@"WFLL# 96NN>1d^.[ĠֶջR57s_0N ܖG6X$<|\xF|{'c&( +R^^> A{eַñȽཅg{v"Gbr*y$xcv6s H@$  H@2 , ۷IP,&@h(9& H@$ q#0gChZ]vYoG LIdDt@iWVOt+qsݞUYɐ@~,O"(n>0TWBFH@Y?GNJ#@Cr}DJS/I$C99&ؠ*TNbuQ<4|y%U١CLbgsGc !*BBV\'X 7<8.I` x^6NJˈ. G]W`*I<{Q խM91@Ȃ)g&Nw'+ (='Ixά /.rA[= "XCꨣ6dc\%EW\4oY:vϜTDOD8yR[ۙseꅾKTMmyF^߻t`AcFkǠueb@N^('C*3vpsZ{͉yջR v̮y9ǔ7ѩ0X`j❵wy_?sz1B2 ]L^> ݂]>`9.0|1]ǧw:;<<09iGy Φ;6~. H@$  H`^#BEa`1 J =$  H@$0n1X PGJu- Y~E)Ƒ0O-~Nt#;sOowt Gh;xX݉,n!F@r??u~ dXVsFM`6QtM80p\X&h-{챽]/koV1qIz3+ײr*Q]Poɰi V bܪr up1xL(na\.#F]۩_E5h0&tb'Ļ"b%mB.{,0_`LYf[rm:ABj]Kn ,I%BDȹw!f V'0jw]f'V&X90U}5Xh_w_t<VGdѱ$O0Uvq].rom< jլp2쵵!>o]姶;ňiD&c!m3aA+C>Cx^ xmܟ0P0St˛+'Ql"=e}fɶ3[/1EàeWwqG4#Vz>\_Vѩl]?Յga{%[>7b0f7Dqi>Wz/QoG]v&äO.@쏁jO!'*Ż0%ֶ~ջR gW ,]cJߛh ꮍ<;FGS txJO1Eg5gyf<`!`g>nr<;1v,igN$  H@$   , ۩IP,&@h(9& H@$ q#0bUW~ kF161dP.|CLs3"GO<@XtEh~?v5` VG^MrJ8#?խrXr?"_gJ)- ʏE1E[ EJcrT|ӟ5"N;=P8섑 erq;`s]BaFnA,JCI~1IQ¡MT_{Z{DP,mu% RC {"~߶_.h;)'B eYiy6bE9D֕(77X .W+m^Z;3j-m%`9r\ G ,"Zj݃vcBI}P/Tޮx4 v I~;j1@lWmyVA_ӵr1!zin5tmre¨Ŝ5 m]&mm7?77VwyʃHոysiԌc1vJ秳mTmF\Ɔdwkm}P\PfR螌눰1V2Up0@a~;j=4L7 1~ic?:'^2om_[obٖ uǔ7=_uʮIim{7cg?!V)/w~},[b /ߡv$o0/}wjzϹ+9HF0Un"49kvcyC `P3 m{1[y[)ζrSs̿J2pD-/] 񒼟3 (\@[{c  /0B{cA- 0J=嫚߫lJb7񿮾x?9sdֆL~~ӻR[.LjS|],r/`I2MP,qwhɔdS5X`c' ,d`;c{ͰqBɱ|\$  H@F@6b , {I@$  H`̋ ~F`'=IqS9+w'cn@t؅(Y.AM&BjxLj?>xwq5mR׻+:n D<",gN;T,8c\N~->C馛FAӞUJ'A(K9 \3hAÎ%&^YzV8F%b.DJcZi䂶{Ƈ8a ]ZW6X$tnIlk%%\2s9s=ڮ9Hh3XtGɽ]h kw{T_hHN7.S[yJ(b2Mڹ\ϻm]䚦\qv"}SN}?`ş5熇~8l=sn^3s~& d\ m5=٭-= ;%;qDk .Cn\M$um 1>E1/:Q17?- ]$r~W(6p>b!VWbxZ(^sϚkC4݇3^zv&/2O=#ư.s`H霒.J>υUu(1Hh2Xtg4vƣ4X$L]{ߋOhg/הOmmuӎPˇ {kvsy]/߻zޒL dɄN`ZvJ秳mTk-)Fݒ`d4jq. n GMm@c"O~z:~B`HsA,]|_úۗt,oy׏kƊ%yk[#h3MJ%ku5)}on{> !T  6vQGf#0\r%ȕ`yAr!}ckb1?(mg_:Fr(1?$  H@$0`Mkbža$  H@7~]tр ysW)ě0_z}V =蠃jڥ b-OoqmR>[ӟtO^}A s_ŕ,O}S~EI!vǠ~x`&+kD&3'lh?)ڄf]I=ꡃ5݋yYqG %k2'պuV_9}g~Ġ-vƣ0XT`8#{+o+iB񘦼e~j+P8E.z1ݤX }*5ݷ44]}7ЇSt%a~G=cZjI Sj.Nelk;:W.|GAsۜ-Vua>x@8ϴ]sI0=A ɰh8㭏?V[:[ngzgg/}K9{6,ޕJr!໚ǔ7Q s,-2|́Ę1~ad@iԙ ٱn1j̿n.g)JǗ;w8i$  H@$04Xh(l,&Aix$  H@ƍd;{EO[M_V7{Ó( #}/| &!L.;{T ѥ/yO zVZw6A@P$ AiX`ZM VG sW=ف:&r{ #d\[&Q&!ۄf] -zDRʯ\v?āo{l`I%;,|.TX74Xt_Kg[(|,.?u65~x[UY_ctӟc^^>}O|Ï9G~U~jkMPWo}kַrFs[ qc&sc\ĴbEL ~{w%})07.-T~>rf\M뫦>o鸮`*-~*TlʡU=!;])C`E=F=#^/ 301~) D.:w3~Ʈiuf]47w5)}onˣ]iI] ^pM;;¦X|ATwYydT{i2X~[o@h||&'2N(mg_:Fr(tQ^C$  H@8`jbža$  H@7G?Qxk^éZ[v[q ,xb>*X/3 EMB DkV"|IԭD`@hXzw9m\( X v*OxuJ&vms,b%m]&yЇ>^WFԋ.(⊽cxޒn5u}-~o|#ڵ& s嫮񶭿; sSoL\ Pՠ6gQދ^n`u攃/𲗽,>;m /k(?Ŏwh|zg-F^fޙJrl?Ey EpŨ߮y,>@^!wk~827W tG6#yf~K][aWJmT1%ܳ-vQ+Dx}EŒK.Pu&}N&c}]e0vs|Wθt}\$  H@F@6b , {I@$  H`K 2뮻n#,A?}*A k v0Xb%zgQ4Aݲ.;Wվo1`[;B43!F#c呗屏}l\ y :V{A"/Q@믏GX2oo|c`Uc>Mo p\l \gTgG %VEdT0Tn8{챽p}DIlA{AT5p$pJ#pm kPD^z6YuBydis9:$0J1}gis*]傶z bJ"h]gu8N N1D_@Ho>#b|J *2B Ϊ%&dȯ| .y1K.8CP4ϯ;snv+s6iꪫƹNg*Ϗ(w^F Is+2ܭ?拴dw˼-p.yZS_Ao(_(îޕy9p0عHftAt~\$  H@D@b , {I@$  H`K q|a%Dv<@q<;Y6+Cz7tS!T!SB4 "P+ò (+ ]wEbuEyeYq4PL"a#VN*CD*bޝv)@椓N+XB~Gw93vaQ$W׽. YS b*&v1r"ʹ2.=3Yi >`<9-`C!ϼk*i)G!Tvk[U+a1iL"6^u:cofUZQ]v%7A_XV+f̰WsSt O@ F9oѰǠ "'yXA ,dU[K,LJ vcG VD&ؑgbEn!OL,(g}bcg5׿mdg~E֨mx$y ͺPyԭ\=^YLAyt C={i5Һ7d}dE9 jP/=̳`U-i. `U?5r69j#UDu1~9qxSjۜE~jkm.s1 LM<1N En*㚷]̒U!r~sϣ:* 뢋mK}o8Ƥ[Tt&t9Wz,fmrŦ; BWy;v%CX*sxm9X3D|lA!Ԙ{5q"cKgqM (/%,0Q:omjs]+ )ϨQܖGΨu: />D ;%#z^% \Q K^gv̏Mw8X H@$  H@N@6b , {I@$  H`k #@/yav-!X͟B=*_rw%㚬zGVOeD Yo[,++RhTʢH6 cs=L'\[% '|`YՔ[,a믏C \胈́8_=w}q ^lV,N#e Dj BK/4<ý"aHavϨYWuBDTY` Έn&YX?g~bR@P0;SLa+1"]sԜOO݅V 4Vj'};*+1 גyDC=4l5X̶KymQL=x1u0v5bw$Vg?s1q灻k@:>m5?5qgɜ vc&0Qs[W_mw喋:s4`%;7]smK{;Q.MvJ)o3XpLWseՅ"[NA63̵nhҾw00L;qa Gߥm1{3 Ǧ\n O>ɚ?bm$  H@$  H`zh`Q4XL`1BEa0 H@$  H@tP44]$  H` hzA+ C=t~~[$  H@$ ,4X4`1 J =$  H@$  H@E@t>$ 'b{ ̯4Xh_۾- H@$  H@(%BEa[`1 J =$  H@$  H@E@t>$ 'b{ ̯4Xh_۾- H@$  H@(%BEa[`1 J =$  H@$  H@E@t>$ 'b{ ̯4Xh_۾- H@$  H@(%BEa[`1 J =$  H@$  H@E[o g}v:6l麵$  Hc]vYUz*t|/' ̯pE ^(|W$  H@$  tJ@b , {I@$  H@$  H@$  H@$  H@$  H@A@–b , {I@$  H@$  H@$  H@$  H@$  H@A@–b , {I@$  H@$  H@$  H@$  H@$  H@A@–b , {I@$  H@$  H@$  H@$  H@$  H@A@–b , {I@$  H@$  H@$  H@$  H@$  H@A@–b , {I@$  H@$  H@$  H@$  H@$  H@A@–b , {I@$  H@$  H@$  H@$  H@$  H@A@–b , {I@$  H@$  H@$  H@$  H@$  H@A@–b , {I@$  H@$  H@$  H@$  H@$  H@A@–b , {I@$  H@$  H@$  H@$  H@$  H@A@–b , {I@$  H@$  H@$  H@$  H@$  H@A@–b , {I@$  H@$  H@$  H@$  H@$  H@A@–b , {I@$  H@$  H@$  H@$  H@$  H@A@–b , {I@$  H@$  H@$  H@$  H@$  H@A@–b , {I@$  H@$  H@$  H@$  H@$  H@A@–b , {I@$  H@$  H@$  H@$  H@$  H@A@–b , {I@$  H@$  H@$  H@$  H@$  H@A@–b , {I@$  H@$  H@$  H@$  H@$  H@A@–b , {I@$  H@$  H@$  H@$  H@$  H@A@–b , {I@$  H@$  H@$  H@$  H@$  H@A@–b , {I@$  H@SOsXguV]upyMM;yO-gH` <#aǢ[i&| vi'xbxK_:p lo# 7pC,UW]_|*||;UR$  H@$0 h`Q.5XL`1BEa0 H@$  H` h:,WwqGc=w>6Lύ}v-lEe 'tMsSO`~7)u]}ox+^15Tߙ]% r_|q8蠃¢.;j<4΢ʨy~u s-%$  H@$  A@fb , {I@$  H@SO@1`1ul8S‘Goz녳:kzn/|a, .O|[??=;>򑏴`}.r!kV L%Tm3ݻJ@0b 0]*?yiEQ)ʯf]q%\2{ k$  H@$  H@C`hbža$  H@`1u5XL[<=ڰ;~8{==7 RixQ 7xcxի^׿}'vN:X>:lefߩnn:^y"pg;,,SO nX|W2\}ՑW\^zd^Z4X86֊I@$  H@@4Xh(lO,&Aix$  H@$04XLc S+Ow_Xfeٝh>g?6dh`Aioӟ².;3PxWjfa旙q jngJJw]x[U5o IDATl3NV`0]؂K@$  H@k,4X6` 4XL`Qs;6Jeu>ʶ4|Q볭,w}w܁gzvxO}jy^=XEB?RXdEq׆G?ѭLrү'=)楶GE_hELs.H] Lt1֧kNg^mkAh?6䰒lo%c;\``\yg|".xY`J?1'q1g~5/5̜wi<޿aHR3vֆɷ]<s4杪$_δw6̯7lx؊+.`_Ϙ(c c|;Mr}WVϻ(KOᦛn  Fx;^4@q'k뮻nA /I'=(&= [k9ap 'Q7tw#>s5glyO>// _oV{W^?c1q=3h5 ^BL|UWDߘE=r!;N8\~_袋-"ae;F.؆7կ~ux{⊞g̓g׾8Ɵg=Y~wmwQG~/}KQF]?~zg~ ^vO_ aP›hj )mkUvqx:jWlWUvP}o9|c w{c c=6O|>0Η= a9m-|Ç>}O?wUW]5!}/Ƽ3r5cWpq.xFMyB|.n=#bi%W'C$姽W*:{Ǵa:ľ5j皃>Sa̫u`K9999A2'sWLUVY%lq.O^*v̟&szij)7h}NHWz\V?x5̜p/7yy~B⋣ 1q{\Xs5k'tr59|zEQw9Ώ+2w|`AY|`Ϡ@%+Uq})DsE ZhX~=iLɘǜ 9spᇇ?鍷`>ʼ-Xc8.={S=QL*.,~O}*>؏ ޝioq[|՜;uC9_ewf 5YākzH[;νN=h 7|q'>񉍏HR+I߷n<'|q@k [a:s H@$  H@ -F$(  4X$  H@xK_@5љ, њAE@NcX![.bN?1Z~(Q5 a~qk^9AhCh_`@D`+|f!@k!GĸcL@ؕ 8ue=!tƄ2LF7 ǘRV]qg"4[%]:˺nbA{@Ċu|x39 F։J!ÈGuAt *> .D~5!iz&*\3h /0|| +h[ߪ`1j>@hK믿~S1;/~yӟtoUf?O;ARD #s\bjN`ӟ4l/{ˢ"d2>U x򗿼>Ƶ`@\XTַ5m Ʃd'"5ĵ#azQȫòJ_ M6$>F>/zы0fuLeliݐR>eؔgR7xu]^nȫu|9{=1꽿z0X#cAy{y{߯ف'#6m3c8#mEl0aj M?_y(_kc#1 AL=1Gw}q*7Γi>՜rMW[^;$vG6 D7yj ͈8|eDhߴEɳ|o9_(}-Űc7[i/cwޗ9 M|<e1\$  H@'BEa`1 J =$  H@$0n"a?oQH AAZ&pQT9ץ>s!(`\Ua"XCG9kWEVE@`A6ҽio 17q b$c Ds"ci9nc 9*efNNZQ1+nv臘oL?<;Pp*0/~c}s?|=AsQYWl6Q!j!&sraW[=yUr|X!Jdj,"ݟ~q 9.Vfj+f'UisI 1qKoguf1b`+*/#$;aq]kÒ(``~kL|W4i49B`p~]wݵ28!9 3+Me+rG..a)ǨcLAk~ۏi>_L0F>d| FimQKyyO }{Fgr3;A9 t=-A1qմ2~ (sarSSߩ+7cyy߭1P+!t^0oѨ+sSv"cBfNy3BA"&yUscI Gۤ]FOe1heeG-"7듣wi?k2Ӯ0iN}>ʕQҿ.׾2XLg[JxnjGdvgɍ' 5f%.Y#3]xi ,h!;X]A>b`I 3696JW Wɂgʘv#a'5`1jY%  H@$  H`8,4X 4XL`Qs߯puFʉN(AX š<!`"\rI+]u[ȅ_ #~I10A`qVڹ$C'? $hH, 18& F. fsF+xA?b DD*muU@W_#?6Ej@D߯敼}|qI Bt/ v??W\CL}h'定8:- (1 ЌWmDbv4n7$Di~vm[1a7Y\9L]ӝWKEqR5X0cU1h:y4,/;M fY͹h2Mq9~x Ҙ@M^GtrNXNu;X`XJ` $w医BI]n. S1:kfc`$9٩#^iT c<( ǿ qkXl9qfA;uUbJ/;qcoW}j.Vc: ֦`v1s0$5<^W9>A~¿wW- bZ̻1PTyjz;/>'/{o FGK|y+ɲ`1jYJzs H@$  H@ G$(  4X$  H@ 2VS>fs9'3Bu1 VLB!KbD]uL!e< 춰^{V ϛ {woz?#Īj$A6u%,?cwX.ƬZXC( b'oE\T5X M+r:,axA6 |귓ӦIDɩcXtYmr!0m6[X0rh5gM! q*x"t,&x~x\8EW`l3X ذiUCs~̛N]#h ]` qn]>@JRuAg`1>`dWGj`ɳy_F#F1>LDJzab`ve"0H7B?Q5CԆn?kZE~_2{P qZռi,X3u1Ow^-c~F/|P]:݉`Zm)&E%gᙕ1`rf[bcPetrNXN^n Sca%$EWB輽4p. *r0F巿Ș3O'hU#Q0$[C]JanN.`als,_7uQvnoiGvjșK;誏sG F֪*s: ֦`IN4o>K>l`10m}bf`QՅ a"'-Б߿dlC~{k WE|qjEcEK駟?,(KVO~. H@$  H@`hbža$  H@7]tGWGoRϚ+䦶R`I/T,ta~eLuXA`'ԯ;kZz`N0E;V)/s1So(O["Nn]U32kz_lO[d2nk]Q -cb^o5aewv̛t,O bI(>縉FؐT}^T2.bN,c 2ՕK@$  H@p4Xh(l9,&Aix$  H@ƍ@QkZI@zMje]֊Y#0If 0HTM|56-^ nvyUKb*EBX`%Tkcc'DiUے:(9h)' agL阩Bo1lԪ \6>:K?39`( ;;[Ay'sV'URܦ9b|0;\(|g"0K$sZ)|ו;~9oJXvHAL[OAċg,'ꪫƿo}MuKjmQ8A3HsIVyM(X?j)/e|Ӝ#KJܩ/1%C$xDvfh3sL< 0^:Wa% r;B͵i/],xpGa!۩g/~g8 }=]}p`8v-xw"W}M麃A(aE4Xgur iw6],sH (sڌFjxKcӎΧ_4,( cY[]$  H@$  G@–b , {I@$  H`̔ة;＀)C4 X_!esV-MKXX7/W~rע{!,Bă5Qꞓ7rGh*N_j@$jˈо,|3(iS$s".V4~)!0+#Dԃ(|\WNVVe])Ov,&0VVwBUVY%k9 `r;h R(`6,("+"N8^J&VY'仉0qv(\WDXt,`6CLM |V&ryݵ1]x#;W(X?SyQq旉JbPE.-䒽۔G/#ՠ;ۦL%oPRI駁FQ2DDq+QiB~TR*(B\Mzu~뜳sW/笳Zヲ &XY[rw饗J;8mOzxjm`M ă)18gG6?8`1h' FM'Y|u!]wHD{1f?bb 1>Or<1R1bV^edyuKEew2X :8MbZo9sdH#!cfыx|a,/s+k'F9N- ĴU$b_-\q7bwSIVu~Z?j#Ԇ/Sg`f%0><&1%`DQ"rWDm 榜RodzeaO6\mj`5|cX07 |af}s2-綩`馛v ?f*gk>9} !jH(>ze2,t6hj)g5ia,}fr- f~Cʾ 8EnK@$  H@@3 ,{I(b ,2G$  H@$0nm83Xvek^Q W݉]w]ЁTԷُd7‰0[R15,R%qL0q qYU';1v6,{0yhNOO"பC}$Wl/`[Ϻ3ζz`v"0Z0R)?=;ΐm6ϓR򴏱i\#V[`\7 )|eY _1{#:MGPs9'dK E3JUs,.袐 4w##XP?fW"^,_kxoL ܗ~Kgs\i1s=cյ^ш!MmÞWaS,^9{eYNz| &5\30٤җe mkO375zc<os\?e4XĆ! 3}9S4^6,ҬGO.:Pd})sϬ1^>M*~ 3~_{D2"Te5lcGbZc4͂N ET45~$dpM͂l 3M3XQ^ֲvZF$  H@z'BEf`1 J #b$  H@76XxXxᅃ ,8M?1>pT#8sSTVm}sū^ԉD`nL 78|uu-N?E]U6H8n؋@Ƚ]zM7S@#XYq7Xb2p3qauN(nzF4e 9 қN2*12>iMq>0_t3ɦO"^,_: :̞=D_\̜9s9"T`e|`Anɱ@vcN=蠃A<řelxJ?EXnC |SNzry.p XOeT9O~\#bNOۦn:3?Q,A- Tmiе: {^_v+25{7awWm_W:w]=d4cY).޶'̙Nn{XUww=|-d)'S{Pg=Yd| ]w]?,!DʅZ4fiönN+&>v2M;3戶ʮ~, иNz#]v٥ mx{>[c5:tH8V" K~edr .}9l-`@&ZkUV_eE:[,d$*sG c`sj乊"^,_`/|!dA!s9oB"7s &X791h-k'k(]H|ۙ3NhӠk=æK LuL@r-s=:1w%׽udV#<2d5#lI@,⮻*Fz0gnjiy [C`݂Q(Ͽ#'Ucc9"53R#O`a潄:U b6s92L 16toz J8 F*BH8,KOdebwᲜi ^u]@h"NH<OtNi@79=1]1SW< >^!gCv m{ܹn{hNΧ;bcM(z6\x4l{)QGuuoN9KQjZcnЇ>4.;;ofKۦ  0'#^l>O;m]9*#Qʶ2}1e;+F憪wQy KewmԹw\k̙]3c֍a,r׆ k*Y=2( ;]ِ΀rUYxK;oYN$  H@z'BEf`1 Jn-,2$  H@$0Biو1CSLTd&80< To7M0CGrāN@b#\֖Zj Jd " L\#԰50,}j$q53L?(#Lw!q衇nIzpR'2nN{_(,7B?AF]0 G?+(= us}}q/~PE !c'jLn3l!0F0ryc"c52u(?kc<":#N}{Cegf{w2t{O d_`F|h b*ğPwuϾ`pg{wp3˒K.YtMa-@̝{eU0LGMh„H;p2(^z鹪?7#$ Zq,}GX3(݄ujӠkU,T͗9K rz>k _0bb'>KLmB^G]9A~rB>{4sv!0!_s5 C朸7cam&54ޫ=aT7> o1X#;b̸ŵ9bw粩хyBdc2g/jຬќgzó](>SY6X>oo/ S!{ {| &Ӫx8ehfzd콨#fx Tw2̻ ݍsIU5Fz٣4mcO> }13Kypp­[m ~<JMD >4Fu}scH4厃a,rG|04cW Ḅ{O&4b{[J^yT,K,' H@$  H@`"hb̑c1 H@$  a, ED-#AD Bx#`!N^'"2. z(b}ݷ#tVߗũ:ϩ;OMIFtQ6Xp Q<\U_>J8= s Nzt(>+,s̩#<9% *n0F}WqQ -1ӔggB`x+b*v D\p\`l*@Ӓv# N9L` V7&鳢M*\{{i4 f"`C UC$ gfNG] >ӊ%cF<b@UBZYS0"ҍmMÞW1`fFR_3X`*bU1fܐiE&1w%7%^{1WՓQϪqNyLdZ ӓzm {'712!յ{:v@:Q6|0a@;qy4fи |WU.eLNeæ1єr<y|v6(d3#p; #X9e6F"Eɒ| aG`-9'p w=WVZ)"idG}4zF]i,ɬe{|^*rj C0ȉ(-׉SG)Gq'b4] QezI Nrϙ3gc<~Y+'B~ N>݀Ip~ ^NF-xu-u?s??4PND JqJ(KM/3E]r?Osw 6Yhc?я0]qU6Q7XF'0gsZYg8Y1tE<ɶMĺ ,>"RNFB}r6 QeQ̉7|s}>XA{ )! Qe3Jc"~N9!/$hwSBKK5_3X=VK,2?b,UE{Ta9<ސww=d;lAH/{c{ :F\{|?]c~WB_3Ұddv`ڪs01}2ڐ%i^ SN~+S0YOag{H A%|*Kkp/β$  H@$G@2 KtU^UezoZ6G3D|esDw3QdO]\$  H@xH7!Zwyg/bŲ.K 6[(FXSO{=! Bh{Fl/r'{=A "Aŵi' µ0HZ8<\@Xuqzu,pSaMZwQe\iΌ-G!BJEP\9U4`:B! wd,!v,F1w1X3f4ӈ89/ Ҧx6[:"u2rh3X/c}0J0#u'5ڎ6MDewV[q~~B/ msd~{;WV\q칽\Gy$`@a=vljԕ~~6HLܓOg_ks"]xUƊnxμӇ?Y~a؋̸9 "VXaJد3G#J 3[o8,K ,  H@$  H@`"CiՋU?` -& H@$  H@$ Q%ЫbTa$0?%Sm_h_ds;4X43$  T3gNn;s񲗽Ѝ7v! IDATXl5Zhꫯ;A$  H@F S$(  4XdI@$  H@$  {}{_q~ ,C ,F9 ,A{H@? ?묳'=Ia?[K,D]vY{;b?a* H@$  H@s,4Xd 4XL`9r,& H@$  H@$0@u%_}Gh'>1-V]uLcF@Ř=bx~U^[NVXx3Q7)zpqiOxB*x$  H@#,4Xdvg 4XL`9r,& H@$  H@$08O>Op~Mw!3_^_Ӟb})L$  H@$  ̟4Xh,&Ai"sXL$  H@$  H`%@~ٳW\xk_[կl$0C9zӖX&0~yb묳NF5}%  H@ 7P\wuob+V^ybu { C$  H@o,4Xdp 4XL`9r,& H@$  H@$  H@$  H@$  H@$   ,2{IP,&@h9$  H@$  H@$  H@$  H@$  H@ƃ =U$(  4XdI@$  H@$  H@$  H@$  H@$  H@A@̞b ,2G$  H@$  H@$  H@$  H@$  H@$ BEfO`1 J #b$  H@$  H@$  H@$  H@$  H@x`"jb̑c1 H@$  H@$  H@$  H@$  H@$  H`<h`S5XL`1BEȱ$  H@$  H@$  H@$  H@$  H@$04Xh,&Ai"sXL$  H@$  H@$  H@$  H@$  H@,4XdT 4XL`9r,& H@$  H@$  H@$  H@$  H@$   ,2{IP,&@h9$  H@$  H@$  H@$  H@$  H@ƃ =U$(  4XdI@$  H@$  H@$  H@$  H@$  H@A@̞b ,2G$  H@$  H@$  H@$  H@$  H@$ BEfO`1 J #b$  H@$  H@$  H@$  H@$  H@x`"jb̑c1 H@$  H@$  H@$  H@$  H@$  H`<h`S5XL`1BEȱ$  H@$  H@$  H@$  H@$  H@$04Xh,&Ai"sXL$  H@$  H@$  H@$  H@$  H@,4XdT 4XL`9r,& H@$  H@$  H@$  H@$  H@$   ,2{IP,&@h9$  H@$  H@$  H@$  H@$  H@ƃ =U$(  4XdI@$  H@$  H@$  H@$  H@$  H@A@̞b ,2G$  H@$  H@$  H@$  H@$  H@$ BEfO`1 J #b$  H@]k֬ⵯ}\xXtMg\sMb#a?Qa;k. H@$  H@4Xh ,&Ai;rL=Ub$  H@BK/-OP;7 wygnw_qAnt}qi"8_ C|ç b@?aַ8y-^+,N:+./_ źL79i?V[GY$c{1{P׿]v٥xGWwb O>X{/|  ,{YM#i%  H@$  HU,4Xdv( 4XL0Eȱ$  H@$0ZvyPhUp j3?,N9#g}SII8ڏ/m1`{Z,}UzUqwlA|0EL K.dsmVxӞV|,LQ/; }s~Sm5 [rT /V[mP=\veWk-zp]L?O<)Y3<3G}t{]p/^|-c>FP$  H@h`S&8u3d^cb齛.T~~֋٢lY/Mhϰln&=UM%  H@$  A `q둿dOSK<{+8/&A$&6i] ,Xw+xa׿U-VZiOѷSo^wq]8_ o}[ ,0E˿(eOkQ%0 m+^Qb֬Yk_F$?EٳCY`/{~{1cƌp@1>YYS H@$  H@N@bT/ R6OTLEf/$  H@$ nz1X<(oڛ#l{$ h荗7X:^ iЇwݣ̱(QƦL{Eeԧ>U|}^WtImK]v%[ve+xk$  H@$  H@@+4XhH,&Ai-\?7E$  H@ƀc=V &zӟ^,}c8r+'v 4o\ ?NŕW^~կ~xs)r17¿ ?@h?x׻Ulg_?,~<Hw#< ^~3 u9ZUVYDs bcW|ַ6^[| |7cߥ^GydSzaVJ}gQr)\y-{γI̷n׿uK_|q_8/u]??~[o5<#N`Uk8믿32?7 viy0֖_~bu Zz+żDa_)Ȳ`DBEnV:gpYfux?VU .*?p)klt~Cn6a=K~˜¬18l`]f G_׊?>|뮻ecXq,A}XcbϖX W\&}Jk0bg37|sqꩧ\pAgmf-aM|^D="e'mꪫ:?8ynāuݖ[nw7M`7`ޏ}5\3׼ɚ˜o2!a/})>K`E/ڄA :+w囱p"9٧R=Ǿҩ~ MyegT7b-nU樦0dȝ7+g1٪/|L9'8WXX _f3mo q=Ua4_XY3o{Q{K_2cG~;7{xzة<?ԬRlUǻ?Uey_Z(h~ b~3fgXS~!p Cק 2cb LBEڅ+_JjT/xA2T}/`3F/}K~O}0uXF]#b_X7GatÀUy AԆp2ʟf`Jc<̹1D-a,Ui0$z90W1s~v^;LK(~ؘb0ѿ YăFڄx*Hd,1gA/L 99̙1TFBqf K[n`~0?cʪ2!Lt#RK.TmyhPǀĎ;L+nb /kV%`-c}ot tJG}R?/~Ryz^3Ϩ͵0稦=osʞ=Ty,FG,p[$|30fZŐ}/SNr~wn{8Ĩ]Ů~g^nԇ>/' uk~@t{6wcPCt &`$Jߥǭϵ9ަr4 㝽u-mݺwz2r!}/s 9:M$  H@$/ ,2IP,&@h9$  H@HE r65#`EOD0Y|șO/"x)#k osDI,"f(Di荧*#Ec ZaoDƜXbEĪq*cL^I099%_y*K)2uAzyfY7Tx1*5#GS[~@:#y_r7B(FbZ50)p"=sR$fNF'#-Ạ̇̄"^Pg<83f(qwȘp?¥x&^"w̧b<# &8" 2Y\rr9rrfdtMSyɠ$ݴ>E}0;0RDdc 01a3p;42Xp-g<#lo<ɘ6bh:}4/`3!f(?] 2p2} v3O,Gs7$e0)'#\{,b*'0cV!@ *f [oG1a`]%/:R+^0vC\=Ne-f]BM6Ms4y^ש< eČY\7]}8q &N2q50ϖa) 1ػ0]vdcD)sjs AA&A]M L+d@dϜ͠ee,E3?g\MrFœǸlKs*uc37VxqŜu im&l14𻃸>T 2^}Uns748}8(fiOi;{[J[j3{~  IDAT>=4$y{c= 0f8~7E嘓x?}"[0cI@$  H@ }H$(  4XdI@$  H`Eh,R!툏}c0FzxЕ/mݶ#P$qNO?"p^7m@@tNFQQt <8"^IWLϚKi"=W4e?–x6RDS[!94*!O#70i` \sp <48)5D9/<5X _SԌ!ŦuN 2B0c>p}wElӀ-Q#s By KEmՇzP|9"U(GіA:Hډ1xd@8E,<<3h90uĘ.E82'ü0*fI5~\s!d`$&4 *W4胔f7Ttu '࿈ˁx#G9CBa!G8_6$`$aU 2@HΞ`Ώ'oB,ĩg!ڐm~V6XRʬ3LGH\zm0O =7~5FU'ү6lPc&&2}g炡 [M*bΉAwgQ\Ug}vkn b c;cd9#mHW ~Nk#R2X0arc:yƄ!1@\|:}@YO<1\͊IxaY7Y0#UYV9f&2oPԐW7G#fDh4٩xU eU NLp𥎈7{?c`(g` S&ecnHѠAj Z/ؓźu,k=AScYK8 le݃,? <ʆiO[FcV/}l/ $BdOH)yeXϨ樦z1 b`~L U{h*&e1X'?ɹʥQxKWuÌhl.gmkc";Ug@N`^򃯛S\a0 71Mv:}-TG᝽u-m;X &Y"580&̫1 n;=eie$  H@$  A@~b ,2G$  H@$0nD i[yNx&0p<"0{"nQ?UE]p*,$FNy"&άou{7A9|5񫮃(%eSc9=V\q &-`^/57wqo=Lzk f SrL[2 WYJc \35Xpj /\YDzHE($ɘ'w7 qb9q-}4FzjS?óBQ4µڨE|?9<N]p#SJ uũd/@\u"0}>Jpr9BsO˥&,DѰSu!\NOƨМ319s'0l16h/Q|4?G`wc2=K[f=jR:Ǔuzu>N_! 3K4Ty>U}TsN'S` &&62_3w3ʙ`'o6YZb4Xyd,F+{@LCA f\+UV~>Eֽ_W򾳩݃,>G}to)|\A= 6#5X0_Fsrz3nƔ9&W,7gZûn',sobx?=yU.>qg AM5lƄf*I5G}1[b]Fϵ5ަzܴ}o䝽iL{;g[h3f8u->}*N7][U&=|`(ճ= H@$  H@ A$(  4XdI@$  H`vrꛄ'!\|;x`q7oxBiAxH (,Lvת8:1%7K;Cq衇:'֝+ 8˧65-b(*n'h1C=>BqU_~̹ftזM{Aٛt{/iym,3ekZoz0Y_ AsU6]]$  H@$C@~R 21PMj*[y??lQU6es4CgX6Gty7Ev{쪦$  H@h/N馛v{Z+k `b8;:éZ~+sID7xcO8:7FAA]i/D_18!ՆnN1cFe`΅ Dvj8Eq/n'LJf~D u̚5+KU-bo͐I#5S"Ο}UKQaA`7_>2ٔ0 σrw#裈E Bst Ɯ@N|nѣn&[Uu~Z\_TԻ.pUC#&~Mk/&7wMy$W8_Ua,0*`!8i;u,M`0c< sc_M}K.LG=U+~gXϨ8稦: 251kkbMSK]v%|;?{ι"51J2`ѝb!50 #Rޱ[l{ 6 Qkq*'"49J6sdz3Qb+.O`zgTܕfwiT@[ .p a<NQ.t^Z.SߔUEYe>Or-袡 d@T,9G[ /B[3gNfd(G.f(1X`죏=l6_A|/ Xc1.Ei݊okWa,0F!qSfP)r=p 2~9b” #^拦?fK\{&^zFmM |sTS}Úa,0L16ƜN)LmbƜQ7X\qa'0g ?aݼὈys饗8̌3UjfPe#"h;#C֡rck`YLi\c`o0@33tΥ^q`"}Oz1g`1zf% H@$  H ,2GIP,&@tn1`9,& H@$ "n|QG'|r1SlV\qښkĚ|vN_j:E4XtU'p:[l镯|e^z\mo_}曇2-847FAQ+c2p 7!1!F \ls"k;Ύ83i(f HO)FJF~ME?bD列-^wuAH Vdcj_`y]"֓8¼lG ,@{8cިцL=o}k>w:2dqEuD^dDV9:fudHapZ?5yMG;OfZM~!O4[m#=2`AUDDN+WL3 ѿ0~{N>S瞝Mn`ov}yu:QN=Tݪ2MwXsX kjKsXܶ6ebOF&];ѓ Xc5?.ԣV|7&;qn0ƻ`f\=2nEsh;F__þl(UƱϵm7}r+u`1l-r +N+x{{<ˇFͷègv,( H@$  H`@,4Xdv! 4XL`9r,& H@$ q#nڵ^{uD^u{X!"'sO;:C/p%R''rtnXwqG>F"Rl/s+FiD}Vt̜Fğus4bw1ԉr!]\\8E_¹d"ʢ1TK]hku+kkW'oaH'^WrN|MMn`Q$^2SxRM.0]a=6ÚĬ wiPͦ[0X׿.6xPu]8 Wc ̓+2LE?eӟdf}s%c~F-2\fLҬYA?}n )6M{J4XmH:8tx=UzU- ègz$  H@`"sthb̑c1 H@$  ?vs$BD7B^"۲Ivm,s()ʜ-vyK/ _pꫯ):JR:C*zK^R 5~x+wg^C o⠃*gr(V[mʺ9\DD̹Npx~5Xҟ0't?k%Û5Ldx衇~U~LqP}t@Uq)1/xGkc2.'?PST4IeƊԱwSdA-!dbviS 0Jc֦Ndif~hw0XHrEp@cŜ]uSDZQg_lY$wj {キXpCGrƋu+wHѠ ц3,Pv-B̖qε7_}>u3f̨"{H ^dEɬ.kM.ŰQ[kqaQMuhkkbVV1]|dHda4K&l2@gݞd s{P z2XVs'/xW;D~{2z60M{: 6hsX[λK/E?V*~5z2ZV$  H@ 4Xh?,&Ai"sXL$  H@F oz{iĩ;k?r+bκ뮻 W`Ɯl\M(4뮻R裏ozӛ_l{N>Bc SbSN/GwvmG莐|EL}{\@|[tfA9cIiZk6B&@lF`(3Yp_җ^C 1P#&0z꩕A道v{5Xf{@ +1p" σX)UA_fmšC)MVf1g.O~-oyKO>yXc5:{ɝ*~#jK,),_M}Ͽd#6l;؇0o~3'?+kkc cܴ}`h96׽u{_`|u3s) Dn [-B!K$f|#h|5$  H@$  `"hb̑c1 H@$  ~,v{vکs:bxwlo |{<ȥP9ƍ7XlGu&"L At~$N>CD'ƨ{1^7q)s'%ꪫv!|e̙iV<Ϟ(EvbqԖ~7X## e4F w,sJ8id)}h#s)ք3f IDAT$PLWg Y}0~/-2ԇ9:QrQGu2$ lGSXIϩh }v d s8cmۮUc#tnNjØI& ?-f.ud j ЧQ7_ a a Žcb~Y?_GDOZ+N#$MVUng2k֬εYK6# plV bn4G[jښIZ`_n য়~z疌Y̐ԏ{nWwyg0` I|3s](!LFHʀgnt$PHn1lu8ž@4ȿS~9) h',XɘB_BdH?' 1s/zҟz2X 7qmmQMuhkkbV<0T5M"ڸbƳt^y,x{œ9s/1wHEO*]vY뮻}Q;k=h7aZޱgN:餎g̺ʳ!F7>eZLٷAHMnfd{Wb\\m{'4G ܫ6F{+i{0fOXf͠Q0~w; ']\T׳is H@$  H@m`"/ib̑c1 H@$  ԝ1#d8? .Zjp  ,0WSs̗H#C,I Dk#"5:QH(QFz@FmTpb _Nݚg}v| #W^ye1 ڂa" ?<_D<3<3gء|xz>B!CNF|,j/ @;ޱ;_ ⥿~adAk(_Te=iqQ}5JҖ }1/G?Q qcj~dfQ<1bdĹ ycb`= L'\;ovKw_j\Tw6!ik`a-べ:@NL'c& (njױP޻szxU9H 1cƌGYg&?ojw 8foސ?#1o1 %Fz3`G%`1gZ\ǵi<5G5=6&fMm?Ldd)!Dzg~3EV,س0D́[\r⦛n k6sK:' |GY07ag^gG #Q3XP/PRsf c1ǰo%;Cb1p-:=D޵/,co똳b 1#ӿҌݮ鼻H1}7?u m1oLp]27{;'`=rn{6?w1/E3}&c<6m$  H@$  J@>b ,2G$  H@$0n?"A-z'#{O,_?"r:."4ʧ6  /^'L# _p] q/&-D`hue] fʧb@iu}u/fv2X Ei[0!GߏrZ~j ƪ 9s>1`!Kѯ" ș Xu>ƠOUe87єCDJVh*3d".V Gua.}ĽDi0FnU/L:4st,]2\gխg"M`ا"ڌ2 L@Le/89?#J3UDu 'r:n%X~S1T/cdHqBTFVu/s GəW]uUˋ' '~1;8`ڈI (w3 2)׫yw ԁ5b=2A$2<9l\',s:Y0CSo2'EsLq'0QŬBq Sb-b;ۘsXܶ`+ԝ-<- 1Hq*>\ dk}s)fΜĻܟw NV1X7LXGRCA%]g'_2i0F`qa|Kn{ {DlD/S݌{w߽>op=p\G`v#cx}u9<0ޤ@.}Yjv'8&2Ӣ|g?m;$  H@z%BEf`1 J #b$  H@7a&UVYA4x1(( Doj 5]\ wQ >N¬E\s\ LA G-=Uk ZA~݄=]x .3ff6 W~ǩ~%CLS] =7zimGOr*!"&&:?ufAw9 :^罦#Rg}BXIQ %#71)G5cd|1p*/x*H#Sa5uG-r-ܕ^hQ}9ÜÚc L̥Gވ:E6cyc~X/lXc}>O`c:N?aOȞ}HyO!~[nGܸ6[|SOdü/)msNquz^# H@$  H #C$(  4XdI@$  H`䞬7n$LSPwdU@?ыb*?JD0tp Qju$ &Ыb[k%  H@$  H@$4Xh,&Ai"sXL$  H@F@Ÿ=1+ Hf?3=ܾ2 b}C15+iVr!F~9-# H@r,7$  H@$  H@Q,4XdvM 4XL`9r,& H@$ q#bܞ${キr-ٳgsNꪫsካ< ?M6٤dbGyd񲗽xӞ_*/w\1gΜO~r0jS K@z!Z$  H@$  H@h`ٟ5XL`1BEȱ$  H@ƍq{bW@{?7tSwъ+= 4;N'z ho[ξ[S݋K@z!Z$  H@$  H@h`ٟ5XL`1BEȱ$  H@ƍq{bWx,x2?~7\f̘Qr!Fm4~K@|M@|xm$  H@$  H@@  ,2IP,&@h9$  H@׾Vڻkԧ>uܚ`}%  H` |.nPm٦x=5z>`ٳg+r1sbsW$ ) ?җr[lKJ@$  H@$  H`h`+5XL`1BEȱ$  H@$  H@$  H@$  H@$  H@$04Xh,&Ai"sXL$  H@$  H@$  H@$  H@$  H@,4XdT 4XL`9r,& H@$  H@$  H@$  H@$  H@$   ,2{IP,&@h9$  H@$  H@$  H@$  H@$  H@ƃ =U$(  4XdI@$  H@$  H@$  H@$  H@$  H@A@̞b ,2G$  H@$  H@$  H@$  H@$  H@$ BEfO`1 J #b$  H@$  H@$  H@$  H@$  H@x`"jb̑c1 H@$  H@$  H@$  H@$  H@$  H`<h`S5XL`1BEȱ$  H@$  H@$  H@$  H@$  H@$04Xh,&Ai"sXL$  H@$  H@$  H@$  H@$  H@,4XdT 4XL`9r,& H@$  H@$  H@$  H@$  H@$   ,2{IP,&@h9$  H@$  H@$  H@$  H@$ٻ() HT Y1#5ׄET̊kV0D?3bDTň(QAyjޡgfwف+==տt! !@H%`"` `9s @@@@@@@@@@C ϑJ" E"As           #EE a3@@@@@@@@@@(,l 矶;/ Z G   KV H" E"As   P]gwumFvZڵHT(t 'ػkv]xK|i FFu:u}駟ڏ?h'N_ޚ5kf[n>'/ݧEuGUcخ 6."kذɳCaJ`*EOI&%\sh    U+@#`"` `9s @@-rYfw}v-}Y}gVn%tq$@mf ٳgZNo߾֪Ut%-/`QQ|za Y0s-áe -D@\B=\s{ǎ'A@@@@Y M" E"As  To5j#FX-+[ns!b})N=T{I&kYFJg|üylw &6lc>`` ,M X 뮻Wm馶&X˖-q믿nsu4oܞ~鲿TmUG Uqc2d]qnu[Ν |2(]O:\@\bv衇384ϖƳp9F@@@G J" E"As  TVQ ~]ŗ|m?m۶2>K `QMT`СvI'}jD믿oov6<ѾUq*(~7Wտp˥A -fZ?pe-xp    dX,P,R,ju @>DLvߒer&   ˈ CEE a3@@&_~ŭ|мy󼇥Auֶ +L0o<駟QF*x}~IcL4~w[}խ~^}ηQ eԨQ̝;ƏE^ QN'3FEРAkڴi1BZɓ'7{ IDATVVCZ`[E]Z)>3GfSNun5k֌;J&LV[͍nl۱op;p.i556u}*e|k͙3]iA_t>[.,l̙3~{??/$Hb%q.ZQؙ^[zBY\RvϢ .qƹoR\ B_ `zֱ|8qD̪NT+^h?jO6]yq*kVADm{懮qr݃ϟ ?vc+{ɺVFbi{g$@@@@,Xxi()3@@(7nݺw}犗_ysb_5lvVS΀죏>cǚTدBs9v}X7|NLMj**p ϷW؇ 0ThpFI&0mb ޮ {x9;ٳaÆGnߚ zz-mTi+bqM\r_j Plu]}q_{O߫o2馛k׮mun e裏ڠAmpT̨pgíݝvbֲGy$g2M6vqgg}+VgĈ '?87*{'?t/pEjk:u?n\ƵbTBňs;*Uyj׮vI'Eߺfi㏛uR+lQ1Xl}3ϣ%}qZE5Cc[^ai쫅_G~:t--j*VXj\aV^]skg}uߵ_/ŻロP[o}βC=4Nc2hn\tAq7gy:OW}Ǧb5]u l׎oܽ^pj*^wu]$72l0{+4b7ܭ Ҷmۼ}gt9rM2mɥ^jo񆻗~­QٝN]" R+\j~_޽{j;/ͅ^j]vjZ[nq>56{}f ?'|ќ BW*^߿Z{gpPAI=Ӓso]ѯ_?O3*׹Ե.@.}g.f͚\Ϟ=[䛻 =_IE{9| ڪꞫO94G^w?3cu-}B+Q$Whvsߩ揮+{YJw^&{_t/ѵ|u{;}lС6zh4 wV9~׸EXL<GRR׷p G^5@@@@BX/,P,R,:_S ̓{ۘ1c?U`"3[PK- `7n\f̘|< ؅"}TGGEzT $wc缇ύi抜s-;`TdJk [oTt"q^}UWԫl]_Tx\ŷA+t<+G'|\*dT S!"u 7ߞx /{ *T~vS0F"WkٲvmE.#)l뛎ئ`JP(\3u5׸_)Խ{6SKa|Mg=痎I*֏j >hEQۨ -(yvE[pOSKͻ\sV`ܪP=i(Tfod.]\ZTQ$q.Z<:B|cOQ_ Tr]U{ZK6)`PcJ>RSap ,6~]vwy'rI]W9Ν;8\\LtVW3B8 {fXzꩧZ#-s~m> >ާf3szW"_l<;Jo_m뭷v?r˅5Qcv̨VQ5k)0GaU5r׸rQGp\vK磻o[b >-    P ㆀEE a3@@M XVh|.TXb*"UV[P t_T;]/+n*2Uᦚ0U$7Ni; [euV)h S-{7MO*:yݱ zû 䤦79dƅfa5}^oWSFpw-ا&7`Udh.X\zn1!H hxJ}SAI/ AEcwgG+;5X!kNJo׼Jj>)5`y k>]ZN4{pA U7lL+XW*h `Ȫϔg':zviZ+Ԩxə̀ yU,TǨkV* 1TkD+Y8U+'i+qs-U}7p:VbuUfy7|jE[+8.mꫯVPh"*[zz |j<!1q5Aگ]+O^Uc r5FƮG8ן`s,{w׊\cUKrS?ЪP wwPg9jd7dt]VFmX{3K9!GkjN){V$93~=j.=h|k>)W#b?|:cSpKF:z꩑!]Kt/u]>@V~(^*F XsO~m8j>M+Ԫ|t-QJN gj;A@t V 3IܯX^Eh g)\V<Ҫ&K h5-͡`U֭[y+{|kqni58 CgHD_ X$RR7{(ozv    @,Xx!i()3@@(7pBţz۴B,M/X c%REj*Wa~)kS*TFoTƪU3 F~~qxcR{Q;*S}]\oA76nsDoqWVT  N+VD+S!j_}c 6w Fpᰶ9qE JSn]WpSF*ÙERc4ੈ9Z*4iյ^4IϧR* V*/84 |bW-\Pi+@]ȧPUž{i~{Qׅ$4A4731Tܭ Tf⦛nʘj|ف]oT쨦`\޽ sz]{oT|_Ds\T쬀Bs p+huZo 5;ܲWMNj[ޙD/*}%˾(QqTܿkW&\m5&5o.4`+ޝĵ"nva{eW/;L45w}Y;*T~vI^̒иUVATSVRnZG#5`>R_;[YQ*7=k h*P}`;k`=kՐBoB,垞OIYYX2A(NRs#~t3^Bߣg kf>*;`+>ޡQk \AwRz SܤW}MaCoI5ER/%u}K!s% >-    P ㇀EE a3@@M PwAq(LRѣ[T`bl}V}3tac$Њ*0RA@D@rKACbz'|pzc>":+r?*d_7|C\AQm*~Kj**3`7Fo֛悚쵒Cx%R PsMQs*~+~L*UhvS \$\ Ǐﺯ뤮QM/TVBsKo*99M\UVA 4hPе.nc/_M U! M`U+3i\[a@a`"QsɬD_\ ]ߴbM8>p(ܣZZ#i[SE \MZ+poAW+4`QwzNZ7AK/MsN (l-[o ޚ(D7kxÁ$/1o܆K«wNp`u94tPO@w>'U\Z^]sHjZ-| sZ>Գhv1؟WAKa>(?I=\)8WaS4|72躮7njVP=]٠%q ,t׊QfF,w#c׳IֳуnX*k+t|$' o%׸I-{}6    P cEE a3@@M [As߄>\<MoU{[oL`#LEAx@ŢZ #|1 X~p|…7~+UolPuV}WO>$^s=*Tӛc,s T4}гe˖9VV"1|;7ϩHTGEjZk) mjzpǢ_][sCo|Z\AYxz+Nz|c}.u ۴icZd`M~T%B9UTvǚ s5Ab|{T 7~?T[=%QAǎm֬Y.xCTDH]+7_W`AXQ(W\~*Eo 4QXИV:?$ K8T^"k&PoJE\AY1v>1>:~mSZMU,+e VћҵDeڽ\ah\E9%Q}tI6tPۻk4ͯpö{^z_Wo+zt/^w~L&{Ձn)|w׮]sR1u{w F^xQYfi9[׍UW].ƗU֯_?k2jAUف/c.8Q'Qʔ). PJPqԾ(@.drgP+GE5$qBǁVr8qۍ|Q}7nmƦwiIܯ Xxn \qN# u]WJ?FY)s Qf   PUI,[owAkκtb*LFꀅ_d={tEwAۭUۺKV/󐯠(z{wWv"1ηTPA۝wvdgI5@7__7pCvBUdqxLϥΟp!rAV z]gUT4ﻰnkpK`USѪVSқɃt?c9!n~?t-sԊ/ T,^/`qgس>뺢}(j,Jc|qMs/XKa#<}DWQcP`WYwqGA*nwGڨ~j5gQV\qŸS}YeOBh*d4vJdQv!_VH"`Q8=Cn)< m7ZGMO߿]퓸_-EKD &dBRQzm2J׸\cI$oI#dsn@@@HB qD" E"ku ?g f  T# X !P jͧ#E*0`}WuUV1Joz-X{Nj^{{{v`!rۻ"fsTwm奫Ec4߁]j r /z;y#4fi$cR}q=\+~9"`q m* Xֺ.=n_ <(Ѵi̾(X v\TId7^ve>ͯ ފo. E>yNロkVήЎcNsNZ|)spmӧOJ->K!(]gA_dܹsm3`nI_|\\qVOќ jZQF +}7,,~gWBUd6c 駟sqpP^GE统$WK"`+6Da( 8B`Ž%(q׹|ID"{oܳS}ۨ󨣎+$ VT;Frťj y\z饋W;x ;cݏt/ `w;0oʮ]^w,oDա$~ cQ)]Y׊\'N!C+O<{Pqm >dE6 IDATK+<}B Z⥗^r+龫o%usq=.lꫛ)}:'I 2 9|+Xh?vp ZzT85/W|Jb4k֬*EPV*cŴ$WK*`o11cR0Jc[Pwp}w 8vu sU$7}W($oI#t"},f^@@@@,< 4 ϙf  o u|*ћ`T‘={_4O1Fe,֛V2eUzI,4n8ӛ7īwZyWP4| Y} \$h[t}qϺݩp-tT_ t5ѣ3o/db'Y3s+X=c;C!&{;[n.מx w?RS#hI}o=xW]vͯw 5O;4km~M6qF3<׵^w,nFWLcq@>VTpG+ɨBym1֢G}V !KXհaCSP [ϷQI kqZe';wqvEE!`8P(/p϶ZVZq 9s&mf$WK:`}>Gタ3ny#C"]='R׷:>EM,>   !@!`"` `9s @@r-@K"`.ԩS1tP;餓W}mй7 *t 'MVӈj*P<ݯve̊W uW:U`1}C\AƂZ}W[ X$qνoѥ΁ԫ~0e˖k\n =q:`DK?*Vъ jq+i=ߴnP.rKVE=3ϴSO=5vÆ =z Q8$h{+U㏭QF4h]s5wC3~֬Y:tȹ2-bZACMoVпWS*&j7pC^}uֵ#GZ:ub}7 Xs+A%3,JcIܻVrT\?g}[@-߼_ZAzXtƶVKfR1t_~m3Y6%q]~>~3_"\8k,r⋎^p\Mפǻ_k%56m4kҤ{+g};]wq̯_Uu"csZ'UE}='R׷:>Kr/e[@@@@,<4 ϙf  oZ nѹsL`AŴ*~7v_~M*z_~֬BG~O? F쀅ۀo]s5Mp⠃r+bD5b=}6߶Ṳ\믿wx}-WPtYge޻woիW_-z+ ؾ %qֺܼuX[;(@Kqу>)չQo?Rv>1>:ttMVbtM#>3ڵZ! .?͵o>opa,?žN3*5j ZkC\Aw}޺B J*R"8Q$wc4߹_҆۔)S쨣ʼ+̬l|+74FbRN>Ŋ䴝 :U䯷keM>ׅ$JZ@M)e0>m6p p4?f7h+DuG}5'H1 )PU8 6|]*Pڵ+G}]eUr:/XcW˨ufs)p]wߩO>F+^h-{p b<Ъ?M+`>=OAnƇs͢! 6:s~n AvS (q;| }_8df9ʢc ZRX${J,1Jw>gu?um۶Sw='vl{&IJ:p\ќVuɷ%u]M|xuS ݏA%HjRUrw&}6WAX鞥{gt߈;!\ $WUH{e w1"[o5~3dD_sqǒKI]ߒG]ie;x+ XIh>7NoUƕފVcZQI5@7n}GUj*UQo*|Xvj*D;3c),_}NbhEy{„ 54u1c SOQ ujE ]Դ՚5kfcƌqcIgТZF׭Sڴi2ZANo J =Vм B氊/um.* }+z4fi+WC.Q~5u, gh :43nMvB_UBu]SHD+>tLZBs]Ÿ R]cZCMi?:g |n)Ĥs5xTlX8wꫯܵZ6,cIܻKV2V ~y晦k>9焠*Lת_jzPѻFw띶\_{OGR8| ݏ,g7t 5\6y=)\H[ 5qjz<餓lmu@=i*X(S~nykaLUƎ XzIܯ:`Qς!*NHzUA}^{~В|7kuX{)뛼JGh># ȰkV!7E@@@e[ @" E"As  &$*[_xᅼ\*՛vB  8MMc}>.?;ZG,T8~M75Ur)qE^dž[}m[;+pGulUWu^ED"GA*WS {H|Aܨ_U=xȂ$W7[+k*S)2OAYϸx UJ$FܣGsP+'Q E EQ@:f~Bг>35BvZyE-¨_TӴH+(ZYAfR8 d,9]t,MNo?WPSN.<ℊlGv2_QM;݇T k'ps 7F'i.hk<9Խk8 -*6wo~4V {a99!VOy^0SSqW$q:~r5 \XxC"q_/s5d*lU(Fq@٭UU,RzfQP&G٭nպwVD Zϐ]}KR/%q}W=bIzVZQk<"   Q,Xx i()3@@(7%Ţ*VWϫ;XAXg* 7߬rYV6zޘK// Z ئ"7 y+3`~*[p`EoU!䒫ŝ`na[o9 [oxPVH|k_\fʼn*VV(XBm[l$1t-InbuZr9Fm)V@ *$U4Yz++`Z]C`eNbh^*n u]ִiS{3+=čZU Vҩ8U}_> gUf+ 5dyi~J|ذa_ܹs3_}D_eϯW_}#qz".l՚Mg}V F.ࡰJv> [L5_6T񰊉[jEBr|+S;h>IRh*NT Tħ1V8}QWF*W!VAVx,ϥ(Ƞ u548S|Udk:U^-s7k<W:]r]_}@AEݨz/ؤIܼkS`믿bcڴiV(Qc[گo_ sGf/1{KE M1Vgt, }hkV[Kc:$ݥ^+uƞtN4u2kz}EdUe$ǁ*)qMr3,Q+Vڧ?U.uBk: W&R׷Rq .B#   @  `9z XX Xx6C@@|5^{eڵ[&8h@索[@@@@X,P,R,` X\gDog=h       R(@&`"` `9s @@r$Q6o6ekd5:kϿʹFMiuQc9NAFkzˮoݱ}d~?N]?o~H;꠵Og-r-l E| @@@@@@@Z  `9@ XX Xx6C@@~8ێ9-7/i3ϙXzW89s]}mO8*lM~Z}:3XTcs ,)YjX{|&@@@@@@@e[ @" E"As  (pϦvn msTiG?h6vruaB X$e@@@@@@@  `98 XX Xx6C@@a k`+BU@b[+C6y5jX7}Sgsf/-Ya`U(?qV.\d'ϱ ͹~8VmQjתsfe̵+]l5N9/:m5oV֩>f9ߴIjTf_g[5ls˯I0l      Tg,<'4 ϙf  }m={i^!hǾngs>yִ⡌m/=/fۤqfE;䀵lu3/իSc;5luY=7VK̿#W1VZǓw hd3ݞ;o_o'ѰY_w[;l69Io ~ZC,?i> 1&QS }v[=Q7k?_]qΦVvMm6.ܓ6 ڋ~>L;eZR6ٰ:jkؠV|:f=O66a f]Z[mN}@!;k|<~-}]븠a'~M˷ЧkCffϞ?M-;6 N> y[?ϙ]޶fU;ub|:|;?lܿYm͛Y#:f?guMoR9C       X,P,R,3r{i'ժU##~i?QCڻ9&{ ,R}?/{5kho6 <6葱rԱ;l+Gzم׎kְ}vomO8>*`>{ofwjٗVWݿ7hey즁s+׳{oQǹDcЮv#{T&t.@@@@@@@ Z ϹA" E"As  &5[Nɇ7wۙVkQݽ׾9/?~p e 6Xuټn<{{2-p&ʭk [FnҨc1nusZo_d⵷~B6٨իSӾf=ķЃ1ciWй <۾ZuX[++L_6xw-׵1_ad0y#`Q0fc@@@@@@@  SEE a3@@I@A>uYIjҞz!ׯ>5lPn~?.#\W$uC+lXh+ԺlJSvFj*Зݾx#EI*`>.@QVMVN+9;X'<:`[a\g,ڻD{}m#؃O|~cvBv#ؐ6Gz>k(=si 0mJzoog bc&:ѹ-lUUǘoYg_0F X q م"OعW|~Ҋ+ݻskŊN{~59\&~3F.{3NX@@@@@@(L C" E"As  $ۤ9vIs]nڸ=9hl mk Vi*ư7~S+S~Uj'ڵMdn=Jj僫.ܭpn(?I,au#\+~|~k\'=bUڋ6wA6gujHVnv@>U.8u6iթSӞ{gWoy#'7vךzl#c칁{v #(0~B*-l뎫Dgk?r+e /6\qyL^|`jWޜ`ܖZ 힛܇k_7E@@@@@@@X5,P,R,UoOy*1g% = Kg]82' w+h% aZgeun͚[ 7>7;U\=$Qxrqrus~-3/sZ"sP΁S~8ۺJV-ؐ۶Dx᱿M˷}l#Sknh/3hvЍ]ݚ69~v-mˍW       ,Xx mB" E"As  $.Hor={l`k}f*Mm-:x=b˷6h7`+t#j5XO̳sZ͊6.y1̦>he;!Y-pޛڎrE̦Mgεsvivc_s=ξ}pOU,S/O_6J=t4nV[^sC{ز!       P EE a3@@I`_݆ WX }xبϦﻍv|qv}c6g۽uf{؜ AZ]3._0z~sU9 X\w0JC!#ֵn VxqO{6vjh_o7ܙZ=[CluX6yǡn+Ԯ, Yl        `9ZXX Xx6C@@E޷ذvIУ3>r{ vmmu]N8Cf{?l]aQv:urw8ܟCkk'NsMc]MJ QaZrf~4}&;`qͬn\uXvPSȩ~Zh X<       %@@Sp>J,q;6EԶ !s\! -Z4"d{@@^_}TשA7vvk_~eg]EL0㢾#jܼm0}/6=w IDAT, R|@@@@@@ `AkEE"~ Ӌ@@Fl_Q]`Ҕv g4cO )sDϿ03og=hh;mn B+^,LK{i; }ٴ? +ԴgV]3QxvSznWp_obkXI%_׉[7wke}:GuX\z*tY-/@@@@@@@X(,2L,R,;W.m57}mӏ]ӟ`oixw.gwܣ6niA䓎hW~`Ͻ.u~ÿvƩGU]r} ;mt5kz{A{0 @ @ @[@`!ocdnqAkl}':>X>v0žfw~`w;cG"x;XhU} @MoYM_ܬY3~,&~{vhm{^[r{`y_=zȞp=.VsՃӹʗ<A'/3gLa-xўj״7L_i{HuoJ{mSs=ws{ׯ=q꾃}mfXLw?sk~v_2#@ @ @ @X,•Xt*&_xb_X[h @'O`w|חg=CG-[Uk6/}vͷ.~s~^k{<3KO_6<Սkەw1|^Do7_ko]7 U?m۾yڂ]ǓXL{.NU+e¹v;nim7+&3 ,&gomM1cKy,j'0ݾj} _^V8=?^/.|Wwzۅ~z;mّm׶oW׻9,^4];zimw\3 O&I>=}ӟݳx鋞gl^Š*Z|zڵ׮]s2 ,&{ d_Ol/|qEs7m|{m"^a @ @ @8B`q%EXb{ @;*gW&ģ=͛^Ϟ1=V.پ{G}sEn| ,>ˮ{.8l'+nn~Öڜ̧6LC`Y|۶&k~bY{ÅL`1y;Ck~G>/:7מds[XȾnѓg>wN>}5:yw;+xcӯ:Qd`1ymm^؅s ,j  @ @ @ @QDJ`Qr @]+ַ+>}Ku5q^pX{ k?ϟumv+۪7'8b9s}"IO.oozwA{}7Ϛ=\&')g/ݾb~R˿]v_巬k6o8cƌ3eg.<XL~zom_v=ٞrc/9]emKoin+WMq!3Zc.?mo6}׎z#+avm5mh/ڋ]pƍ[`5ەMogh1gά/n³ڇ~/׻>A// @ @ @ @"\sEX"c @xpvsg%]&ҟw㦭ccŧxxvۊ Y3ډN-UڦM[%?3Vܽuġc#8ps9o:MW%Y3/kfb2T&iG7xLOE׹F{?-|wOI @ @ @ E%(Ex9 @ @)cǎ?vaj_MC% @ @ @x EE%(Ex9 @ @@* Rh ӧ| un @ @ @ @ Ex$%(Ex9 @ @@"u7\umoVyW%@ 0O|ɍS*"ȟ^#s=3}7{V3?{wW/kvM_ٱX̎ce  @ @ @ @ @;X7X1F @ @ @ @ @@w,*%"xr @ @ @ @ @  Ep ,*(E !c @ @ @ @ @tB`ܩ J`QB,' @ @ @ @ @! XwX1F @ @ @ @ @@w,*%"xr @ @ @ @ @  Ep ,*(E !c @ @ @ @ @tB`ܩ J`QB,' @ @ @ @ @! XwX1F @ @ @ @ @@w,*%"xr @ @ @ @ @  Ep ,*(E !c @ @ @ @ @tB`ܩ J`QB,' @ @ @ @ @! XwX1F @ @ @ @ @@w,*%"xr @ @ @ @ @  Ep ,*(E !c @ @ @ @ @tB`ܩ J`QB,' @ @ @ @ @! XwX1F @ @ @ @ @@w,*%"xr @ @ @ @ @  Ep ,*(E !c @ @ @ @ @tB`ܩ J`QB,' @ @ @ @ @! XwX1F @ @ @ @ @@w,*%"xr @ @ @ @ @  Ep ,*(E !c @ @ @ @ @tB`ܩ J`QB,' @ @ @ @ @! XwX1F @ @ @ @ @@w,*%"xr @ @ @ @ @  Ep ,*(E !c @ @ @ @ @tB`ܩ J`QB,' @ @ @ @ @! XwX1F @ @ @ @ @@w,*%"xr @ @ @ @ @  Ep ,*(E !c @ @ @ @ @tB`ܩ J`QB,' @ @ @ @ @! XwX1F @ @ @ @ @@w,*%"xr @ @ @ @ @  Ep ,*(E !c @ @ @ @ @tB`ܩ J`QB,' @ @ @ @ @! XwX1F1 IDAT @ @ @ @ @@w,*%"xr @ @ @ @ @  Ep ,*(E !c @ @ @ @ @tB`ܩ J`QB,' @ @ @ @ @! XwX1F @ @ @ @ @@w,*%"xr @ @ @ @ @  Ep ,*(E !c @ @ @ @ @tB`ܩ J`QB,' @ @ @ @ @! XwX1F @ @ @ @ @@w,*%"xr @ @ @ @ @  Ep ,*(E !c @ @ @ @ @tB`ܩ J`QB,' @ @ @ @ @! XwX1F @ @ @ @ @@w,*%"xr @ @ @ @ @  Ep ,*(E !c @ @ @ @ @tB`ܩ J`QB,' @ @ @ @ @! XwX1F @ @ @ @ @@w,*%"xr @ @ @ @ @  Ep ,*(E !c @ @ @ @ @tB`ܩ J`QB,' @ @ @ @ @! XwX1F @ @ @ @ @@w,*%"xr @ @ @ @ @  Ep ,*(E !c @ @ @ @ @tB`ܩ J`QB,' @ @ @ @ @! XwX1F @ @ @ @ 92-iԩ^wZ(J+L/u j"xXO1 @ @ @ @hO`=HmQ9sf:餓c=B,H:묳;twK]EZ@`!E%(!c @ @ @ @ ,Փ'ONsLq7f%WZk+*g Ep ,*(E !c @ @ @ @ О@}`WӤI.6{w?nt]EL@`!n>E%(!c @ @ @ @X̘1#}OO?, ,3v4 ,3!%"xr @ @ @ @ @@{=3<]tѴ˧{.wqi FZ(ziرieIJzgM|>}s>`zGf[ne>|tws~|_<6;!檀B`p J`QB,' @ @ @ @'X<E:CR$tW7,:P`1tд~ۿͼsI9yӟtz7G>kz~yEL#L/b{"@* X7X1F @ @ @ @ 'pBe]oM= /(m&l^_sŲ./W^9CÇ/~GK_&MTaÆϏ1sW[mꫯ~t@䣏>jU 0WXTPB`<9 @ @ @ @ @=ށEƏF|ɔ3fXlivJ^q7wy]tt)[,򗿬Ey` 7L{g>}z{](va2);_~o晀B`| J`QB,' @ @ @ @';ȫ|SJ|pW\{whwOg?>7_#_^CMg}v{f`kW @`~X,{Q`QA ,JE#@ @ @ @ @yv-m&飏>*W^y"~zwȳ9Xgu>ô~5RKc9&-7LK/tt94PkW @`~X,{Q`QA ,JE#@ @ @ @ @ ,r쐣?<#SNI /p:묳_ty;SJ+Tu"wxw-].wIGuTfETO"3XO1 @ @ @ @hO"6vo}X?i[wgb?HZѣbJO?t:̙ſ!k"AXO1 @ @ @ @hO"^{ 6 ~:c_,ݝbw6t}/ʵI&믿DN[@`!PE%(!c @ @ @ @(>|x:cҒK.y䑴k>6lX:3OL81=-:m6wIկҸqԩS;yYXkB`ܔ J`QB,' @ @ @ @'0P`Wp Ӟ{ B*{4a„of5(^9cO /p:ߞ8:'x"p ju]sm晀B`| J`QB,' @ @ @ @' ,_Zojw`+;-ܒ.G9җjtm .x~СEN9e]{",&M曧]v%k>}z{U 0OXTPB`<9 @ @ @ @ @=h`1bĈ4~w`r-vm L~"3fLDL81Mi]vYfT Ep ,*(E !c @ @ @ @XPYg}.iVKK/tzgғO>:*0ꫯ>i=믧o~crq7޸|犼^$gEHtPofq׊eY& I~o;ÀƂ/gY+y+ XwX1F @ @ @ @IK[lE4qtES>[o]aĈsoF^yY(rp-^xO9hxgst馛w>|x=ܓ?oc=aV{+H'pB%^{t'F~̜93oe[/M4}>hmvȑK[ne3<3r) W?~|xcR@`!n\E%(!c @ @ @ @ tꩧ>;㎦oرE(}x`㡇J;SzwgY3GyaÆmk[yu]W9Rﲑs'NN?rܑ[uUo﶑f . }-^wXgu||Y_7GXTPB`<9 @ @ @ @ }ٵ4\y_b1s7w߽a>ߵ"5'rwSD}=:NqWŒ|:1|裏\/"|)S >wks0POޘ1c 7P{=)sG@d1w B` J`QB,' @ @ @ @I.YmґGYL<9m mQK6`{dry.iw,~Zko~lMXϯ{RK-Uߟ߇Y=k* XX1F @ @ @ @A`KwqG2dHq?Ѷ~tI'3/BtMvt)w})cĈﮍw߭|%\~z /wѣGn6fg}o?}wC'>Q tG3ЖȢ-6 P , %"xr @ @ @ @ @` p _js뮻6Pkw[C{\ؾȢ};W E ,*(E !c @ @ @ @V\qq)aqᇧw߽x.KzTN;P xq &7M[]a~K'|rK/TܱcD۹`X,_`QA ,JE#@ @ @ @ @`g>S *}ݴF ˳ IDAT)S4Pq~< oV]ub,+蒦/2w]Zz饋witwVhJ?҆nX1qt駷 gb8Z`X,]`QA ,JE#@ @ @ @ @`Xb%5\VZi⣟tIϞ/.<7KkF16~xK^w`at׾=bW_}5?cz뭷:YҵI@d1 -C`,.%"xr @ @ @ @ @`0 ;9y _B~/})M>}⬳J'|TG>vmtGjsϵLm~K]vY6lXܷt׶`'NKz衇 XTPB`<9 @ @ @ @ 0<|"dME]Z?<]zmE-\+ӨQ5o{Ax,2bn6 E,*(E !c @ @ @ @,90aBqgΜt5v`O~2]~i%,O~tQG >Xo*xҎ;X% ̫wI;SXu&@ , .%"xr @ @ @ @ @`0lsϭbĉO_xi6+f~.kQ|MW\qED4iRN7|s4}]tNmQɓӶn^z饶͋B\1wOB`< J`QB,' @ @ @ @t_??M/xQ/t衇O<Ĵ;s?a657tS=zt1oqkFQcƌ)f?]v%^l`Ȑ!3H[mU[ovi#@Uz~bΚ[@7 ,+%"xr @ @ @ @ @`AXeUH!?&Н!<_g?|zC=59Kرc'|:^W_G}t7n\￟o{\8sT"XO1 @ @ @ @,-\qg;Jz]%>GΡCE~}ݵYuRK-nazW]CMw^g?[L<?|5w}ӷiӦ+t WMBZ@`!E%(!c @ @ @ @ _Zki]vISL M74]|or01}>_wuӯXTPB`<9 @ @ @ @ 2$qi*>֋/X%"'n뮻.M-ܒ]v?7i:뮻D~L:2nv^qرc%\_|N;1 +;"m Ep ,*(E !c @ @ @ @X>4nܸ#;V;W;XX{W_]J9,bNmY/6t4mڴY~??O?=dƌ3ĈUVY%]qiĈ_' @7 ,}+%"xr @ @ @ @ @`AaE}\CWwqW^i 9[lQ{Jv[zꩧR0rXj^?cӅ^8 :S.hZ1㎖/wK,4zts}}E1gsB` J`QB,' @ @ @ @ &;y?CN?Yd4~N;ԩS^Do}:餓:y{CM9ȏVtMwUW:5\ܿ!@`v ,$%"xr @ @ @ @ @`ASE׾;5\3;|0M81y}r ,⊸Ib ElN}5:-4lyآls~6;G|_Ex~̘1ey @ @ @ @ ,iWO+B_}4sf=6sB@`!+EJT/O4{N`܅ @ @ @ @ @Yw`t;zX,G`QA ,Jn;X1 @ @ @ @ @eB\2 C@`!E%(!c @ @ @ @s9wp9gleI@`!wE%(!c @ @ @ @ @X,;U`QA ,JE#@ @ @ @ @ @;NXTPB`<9 @ @ @ @ @"SXO1 @ @ @ @ @C@`!TE%(!c @ @ @ @ @X,;U`QA ,JE#@ @ @ @ @ @;NXTPB`<9 @ @ @ @ @"SXO1 @ @ @ @ @C@`!TE%(!c @ @ @ @ @X,;U`QA ,JE#@ @ @ @ @ @;NXTPB`<9 @ @ @ @ @"SXO1 @ @ @ @ @C@`!TE%(!c @ @ @ @ @X,;U`QA ,JE#@ @ @ @ @ @;NXTPB`<9 @ @ @ @ @"SXO1 @ @ @ @ @C@`!TE%(!c @ @ @ @ @X,;U`QA ,JE#@ @ @ @ @ @;NXTPB`<9 @ @ @ @ @"SXO1 @ @ @ @ @C@`!TE%(!c @ @ @ @ @X,;U`QA ,JE#@ @ @ @ @ @;NXTPB`<9 @ @ @ @ @"SXO1 @ @ @ @ @C@`!TE%(!c @ @ @ @ @X,;U`QA ,JE#@ @ @ @ @ @;NXTPB`<9 @ @ @ @ @"SXO1 @ @ @ @ @C@`!TE%(!c @ @ @ @ @X,;U`QA ,JE#@ @ @ @ @ @;NXTPB`<9 @ @ @ @ @"SXO1 @ @ @ @ @C@`!TE%(!c @ @ @ @ @X,;U`QA ,JE#@ @ @ @ @ @;NXTPB`<9 @ @ @ @ @"SXO1 @ @ @ @ @C@`!TE%(!c @ @ @ @ @X,;U`QA ,JE#@ @ @ @ @ @;NXTPB`<9 @ @ @ @ @"SXO1 @ @ @ @ @C@`!TE%(!c @ @ @ @ @X,;u"x݀c€M"7E(hzsk@5oLd!y(^3vT @ @ @ @ @ @`n Xd_'{Z^zsgnZ3E0#2^߰v$f~5# ,fD&m @ @ @ @ @XԾV΋8DL{֎ N׌\/X/ @ @ @ @ @ 0/\`!LHkFX,Zݗ  @ @ @ @ @d.HXa5# ,K @ @ @ @ @ 2E X~$f,0隑Vy @ @ @ @ @ ,{?3it E< @ @ @ @ @L@`Q4tfz}i @ @ @ @ @A& }ޏ eF:]3rB`4O @ @ @ @ @ XԾpE`Gb2 #^`!hu_'@ @ @ @ @ @` ,j_"#1C`N׌\/X/ @ @ @ @ @ 0/\`!LHkFX,Zݗ  @ @ @ @ @d.HXa5# ,K @ @ @ @ @ 2E X~$f,0隑Vy @ @ @ @ @ ,{?3it E< @ @ @ @ @L@`Q4tfz< ,Fuk< @ @ @ @ @/qJ)oyF>}|{灞{(}=Ͷ@6Z}^`!hu_'@ @ @ @ @ @` ,j_;X~$f,0隑Vy @ @ @ @ @ ,{?3it%e5V7y @ @ @ @ @ %oozs_뵞盽f?\_?UG^빾ozVI7Ht E< @ @ @ @ @L@`Q"#1C`N׌\/X/ @ @ @ @ @ 0/\`!LHkFX,Zݗ  @ @ @ @ @d.HXa5# ,K @ @ @ @ @ 2E X~$f,0隑Vy @ @ @ @ @ ,Ҹ~ IDAT{?3it E< @ @ @ @ @L@`Q4tfz}i @ @ @ @ @A& }ޏ eF:]3rB`4O @ @ @ @ @ XԾpE`Gb2 #~8?f7QF0O @ @ @ @ @y!0=Colskzf?2#1C5# ,}i @ @ @ @ @A& }`!LHkFX,Zݗ  @ @ @ @ @d.HXa5# ,K @ @ @ @ @ 2E X~$f,0隑Vy @ @ @ @ @ ,{?3it E< @ @ @ @ @L@`Q4tfz}i @ @ @ @ @A& }ޏ eF:]3r},QZ{hVkHm7^QnkuC'@ @ @ @ @ @x?R f{~K3hk6{D~n6S5G}}N7Zǝ^`x Nz}!huǛ'@ @ @ @ @ @`XԾwHXa5# ,K @ @ @ @ @ 2E X~$f,0隑Vy @ @ @ @ @ ,{?3it E< @ @ @ @ @L@`Q4tfXg3~zLf\s5jmn @ @ @ @ @uE ڌ7WZ=V~s \WSa_f5N7Zǝ^`1,o,QzX @ @ @ @ @ 0_ ,j_OON=C9#D6rB`1%  @ @ @ @ @XoS`ؑ!LHkFX,Zݗ  @ @ @ @ @d.HXa5#"{sf5jmn @ @ @ @ @"=۬7כz^^蹞'ˆ\nzu"#"1Cxj5# ,Z.d @ @ @ @ @tE`'Gb2 #^`!hu_'@ @ @ @ @ @` ,j_"#1C`N׌\?v{)zC*=Yz1jԨZ  @ @ @ @ @ 0/,rP##~~_oy-f_of=}9y}ڑ}隑E`z͞k%WE%>c ,Z=  @ @ @ @ @W"n,#Y꿪C@"ODf>^߰v$fhu/wfzE{Eϵz`-袋[,͘1#s߷K^8}W W-\|ɖ",V[m +S|0-3_77iJ/R2ev$F>#ovzfӪ!@ @ @ @ a jc^`!hu_'@MÇ9??v6mZxk{4}3&{]f^}]vGz߽#F~:=#-]+XD /nJiСm];[l\dȐ!i+'xǎo7UVY%>E\8sM7]bͩ}rli+{S{o`Al|g^<:93rHq~ߧ .`^} @ @ @ @`X_"#1CpXkF_P.=5EךLMZQE<lҰaÊ"%\2mƵ;Ssэ/]w4s?aN9&M~_O"Ը_y5'񪫮yˏC=4=3sv'gF`1O2 @ @ @ 0(7V}]f7o5v~nvM;oj7Z=8^`,W(k=VOy @}`r{Zk z(G,|{e9X}7Җ[nY{+Xn!?~v: w{^{Sߏ^t"9 ȏc9&=uq}`1;I'Er|N*/xs߭"6:K`əX̍w @ @ @ @"#1CpXkF"i灞룉_1&gjύ5V7y[>ȟ{MJwu'Q&[M)a6 k (%Ke6Jv 0b%%! D@_e'`!¯>ӗ̜s{R93==>GnkaN9qs?sc? !WHEx;߹_#K,t'?g]}|p\d\__'WM*"|ހ]zc睂r9ɔſ'pOOA [[[x7x@:6%`!9C@<         Y׋ZDZwP\ڹBC5\xGܮ%`nl_mZH^i=,@!`8Cb]r>.JW⠃X u,oŇ:k9v] ~ ,ZVoXR)Oyʜ]VX=N XxG{xooÓ*oRׅE@@@@@@@@Z,F!vh }-acS;ŦiOw\R:B3p+^qя~4]u;\T xp衇 /p ?3|_/*EǿL]l~0|[/*W~wx{ޓ: |wEP++c@a-.O-v>OcBG1X~?:>O{vظy7^N72|d/|X;eN;mmo;xVx#9\WTַe/{׼z6='>}<:q&7xO?}8}s]Q:׹pGԥ~vW Moz+^#SN;QpD+_x3_jWEx |cۏ3?4F<̱O}SÇ>]Q'!=M2KAm,5Nj rk_{޿ޓ??="W|8wK^r \a&n@z׻pk\cM|Qݷ5>9nEGڅFLWp+\a^nv~{m;ޱ.9y #1߼}ßٟcmo{p'spYe@@@@@@@@6ONX%`lj6-BB ܵt'Pv>2`;Tv:; ({[ ,>򑏌~ ܡ7 KZ0:r;XhLklzh'~vH-1p\Bd 0hQ-/=mW8>ŽZ.ZXE:򖷌 {/Z?A^H~bZ`%?YnۏWé'< c1qbso=wo^\RQzԠp@zhAqq}|X 7wrqR X(Ѓ/x v|^a>yJ ux-zbb^Z~-:_u_"], " hѯ eܮ(!ҕ4|_s9gu-3/﹀G@<ӆ:;vkvXpk#,7z{챣.=y{խưS/|X$ Xhg -֮ZD!CxqEzFtYϽu/)T{c3ڑB}x1 `8\6|vPЦX\@ hw *R/׿~ހvvQG ٵͯ_׍6mn3G7ޠa1I.`w=l/<?րv`PER84wF/8Vws|Zq9)??ߵ6 JSaǟvsFۏ}cǹ ̢$smN[KBNi=ͭ_nanЗ+D>7@3)Txx_vQw]c9f,>^QH;,/        )@b|-,f06Slj@mNJ;X;WXd t<{_ ,V]@W Ca]W8B 7X$ Xh+dA|!-^W GuԠEZ{YgZdѺiBu_ ߵ@;+k6zB{[;9䐝 X!ph+UfO܇\"vP0@ #XhNSp@-GX8'ډA;EO~~mhqkk<o,PN;mWWS]rkp2oW>z CA;CJ"q/^׎pƠkw|kaUcxOzW>z 7`sOyS{Zk]k Ox-|cSbP/K4` h|iſ a( 'P iʆskrAl{\ IHSﺟ%6- Xwl=Z"`G` Z~v59ZagûAU_GТ^thn]puAC@z>Ur:k~IϦ# ubRhUwZ_svۈE!x exv: r_aK^o~k7P7э|E|3"qBvD8Z ^o|~v7q@QZ,gTPD ֵDz({<        f8!Pڽ;Ei !v˄ϵsi?Oz.f+x24-aȞڦ>zo)\K  t<{_ ,: 7x~/r +:r ]8\28`Z{ ~sG)`ЮE͖C 'jG诺k !ġ8(:Xx Ԁk>㻊υqbtE>(`;< VN Gg}%o~oYg5{9|K3P@@@@@@@@`X,f06SljXa>`hd_` OlmmG-aW =/jvK}CCЅ>C=t\0ꩽc]#XhA]BL\BozӛŵWpK_RũBm+Pgw^_Bl-Wx;1|iSykWUc?Pr{-֗;}bp"x0~N3yCF9_h'`FjuOkpA-` v zz tBou[ dž=qǿ?\z곞Šsн:A[րť/})OySԝ*K]S:"x64{{]b{Q;z]}ox _8vXBQ NwBnvΕvP8N;hgܑ X,9CMK},jRA `A;#(,@^W׾6~y-803z|h-oyT-B,_Wvk]ke/;.z}NC}]A-Rk~H|/,.p Bи@P_aW =P%?ӆSN9e_טzv:g k /5ya{xj逅. h_|tW_Šf XL'_X(0w{;y\#_~ݲ,BPHNK$_᧓N:) VI'a3r7Ю@ECA,t<4 qcG[G>r8+͙??ߡ~ H,߹>"(        IΰH{eڹL{|9-g+KR6ն%S۴_WBs=;Z;Uv[;XJ;\w t<{_ S]Wp+;hq\G)`]UNvS!`qa^Bk7(,n_wvPB;"8+ ^Ío|qŧ>]  uX_;3(I{BeJ -עt9>w+ހkA?O>򑏘^%\PZ,v{_OU,}k(0E~- ,{cA 3:NT?,g{c[M,wҹo Xw.yK=i;wm1 @cX׽Fs&t;6TFniԥC9dmַN<1q:Xh>[vI~3^׎eKs.wˠy_drG.`}{:        f D\PBVB'Hk\Ͽ:Ł4'7,KZWۖ0wOmROvIwȝ5rXxG<8J uEr-w;\" G)`Jiu+ָPWGvP`AjqCꩾw-VBwg `׬ډ?ҿ ~HVzFy(o|cWsEصC;d_ׂx猸// @|iΫ=qsj]rë^5yN]t<>˯~s!C=ϓaK_UW!-`!'pBeX=ǿ ̓qL~6xJ l*|zЮۿ=|E]нFe.3𖷼e+(z:㱖 hgJۭНv RZs        )@b P#}jbBι&JKRE|+B;((,dGuԸ[]K -բcZ@|j-t֡b|-$Z,я~t\g~g+]JcBGP7 ǿ8o~s8s0xAڍB8v(Iġ_اPx[v ,bCFԿXeB YQhy),a-*עmS@@ϠzG:^ ~czp(ǣK_ұƽΗSƉ:0B:g gyNr 'ĝtEG)0PpFc544p;GBI/{ˆ7%ʢߔ~cJCtqcXH ' vzc@,oK,~w~gq O|;Ka"Zcpk\cHCxMGXj~<_=p@@@@@@@@`3x'Nz.\\s>\XT%S۴'`QB+ݙ{t#S"P Xhg?|PPޥR XwkGpÅ/|q⿂|y {N9->#wZخZ 4`;qaf-VA ùX8@Ojg;th煏|#5] Xvg-LU,p?O),T(0h ("~;T B _j>zڭCrn6.jX?=jS F.("Ԯv@лסEe/{B?ZدC>rұTB^>qhI3h~7q\<,RB}QXAI[;(|+_a'p>~[ޫQWK<묳c]:s1y5O=i VhL+CN' %!p/~hR{c~կPSV6V|)LMCv@y@-`]#t] Xcey-fV;:V us16ͪvaSko.`{( [/kW -"_ϡ2_\  -WBኰ? Xh7<3uU,Vx39> $>j 6BtbC+hqWF'>Xw72)D! ahK7.-y:(qiDh x׾vRq]Z }.!oy[>h~ŇŠ6j)=B4=quk_z{޷kM|;3*lqꩧ&Ү5a犴G=hބ1\zZIK,tOI+j\ oصNk+@qwU:I'4t[:P_=z\G@@@@@@@Lc""KEXe&\|9\O˥ksse^X~G{Z IHSﺟ%6-X{>YC'`i١"E^8w:PZZZl|gEk' vM?Yբ}{.M{6EƝ%E.  ℿU9&KzIϳɒ}n'Zo{ (i>_@/(18C'DGzg-S=M;. 2jXBK9cAY@@@@@@@@,BR@">NYEΈ} `q|o\Z6mN~O HLO0wNmRO !#`G@@@@@@@@@@ `kW8 &vԉ߽%`)SOSjfmZrTSv(DI@F8x 8hkk_           :oG ^;Y;JLݭ"W0kϹ\o\.@Q UXEڟ[23-a8ڦ,dV VE/H bN#          E.Hn Fnz.ʥksizZ K(#~ՖLmLmK;i?w"gϽ+3`K@vK%`!PEWڙ" aA\lbkk_f#4          ,.` XXkHվZuϿq\|NX0B-m,7-`\Q*kCEhho/v c&@@@@@@@@@@@}_0BR2Z|8o0'=~ F% QԀENTнЃ\+lQ K;Sa          D X (0Ҷjk\Z=N Xݕ}Z}Z=,aK2S۴߄9(,K,=!Z]mN#          *S.hKӺgϹPo|sZ'~u0$jMX tWL.15\Qclź~ڹ/          x Psޝ,Juz9F|.^*o= Xx`CG]B鹿\BR("/wA@@@@@@@@@@u4l".]k] sz>uFc[v5k΀&r>iVúEnڹ^JF\`3*           }ymZUOjkϵsZo\~@DLn{xw,:F% QkRKվi;ZiZ"WE+\Q" Z`ǘ            r_нKNq`!n#m=>[͕)>r ]k2qcyY ڦz4o" Z=K". XN#          E-aGcpoL\x,$`ܖD KM X9D\o"Uբuۏw(gus_@@@@@@@@@@p +tV"FZ/\;Y͕ϥ=ru@1*-ZrB6P|nw O2@@@@@@@@@@@`]E-h.[Bis(oN|.칖Nm HԚ_EB}\ڱ"n3 QXy\)`qֺ~ܸ/           >r_PB\;Ym> Bo\~xZLhu>-gi HԚk =o.t6&z(rea =Bk7P&-ϕIR"n9-gRn HԚ-^gݹB_ \s,B?C؂,ν@@@@@@@@@@@% XxG)_k}]r֮a4J>G-|QFxe[ IDAT MmR7PgOwHDZO"]"R)K;(          k(,jYnE\/m#|ϕK[rxvL" $LDz\;Eh#е\"w(rQڝ"q۵;Xd           ZRB}NCsqpoL0`JV"w) XhXBq9K"n F픂iVb,qs@@@@@@@@@@@(ۙ²;5#|[Υerkekϱ( @QkR\;XE|=EVTŜale P@@@@@@@@@@6A X u-ȝOyeڹR|=wtv>~],fCverZrA uzvj%lb |q          ,*PXvf>p.Z\94\֯Ke21byY ڦ~oV"箇sJuzX,WJ8Yo%S.=?5` UrA 6>lC@@@@@@@@@@*}ľ]),;[m>[rses=;JC!XG7 6뭿ꀅ _Ԃ~;E|)\QR^ewG8 (          k;Wv0ܵ]1|p۲\kO% $fjBϝ Ik@Ev0!          Ūv(2aMW?ey Nm[@ X:e"]-Za;α            ޾v&PB ai0=N\|=x׉.s=VQ=aK魿;Ozt|^mw\R"N+Ls=Wz.^= ?Bܮi۵ ZksJ;2u, k[R>~i{l\iLyB"mz4mZ*rmԂ*6rK kآ'\ayVZp&W.qCq{Kfa"B<2i鄶ROۭ         lwQ|uzxRB' 5,eZF+a a3W?|Üs5$d2o|;2X@=Mo}KjZ~m i['Pn LX}hߚQqkR :^kme7@@@@@@@@@@&])?wBQ \x \) 4Z6,ay\;{lH侇c s3WjyWmwSַ.Xo>`]o5 -JeZ8n4JmS'=6u@@@@@@@@@@Y\@2s,,ZK7zD^ihS6ʥ,2R\ZtN{kAvOf X/]ܟ;)/Aܥ FO6SSY?,kݚW6(         lԅ޵=ZAM Y蝦9k! `ڙz.󡝚OZ=W&>~.ϕMnkL[Ѻ%P=.P*: ]X/p(eiV0uvZ8^;|˖>J~n7Dњ[s@@@@@@@@@XE=! =k^|iw\;LNqZA.@ JZKk!ڬZYqmxc|ǭyպ{0kK,^G{"`Y N0Ehh]OC`D K0{ϸ|SkiL|Zz!7~[c>6)         lEٖD`)k \g-a ].JaZ"̈S SKһ, 6reZt= hnwhu) at7l (³zݸ\NLj߭׬"{n:[sajy󏋳)         {@`օKL'hQkgQOBi0">g VK,B˿q\0xxƧ^/讪gP;2ةaɠExhHU)a7(UJ'tS,uK? KWPTpSw          <.%o?, ֭-! oآuRp!0Jz6Qr%0[2~|'JPmYwzD|Uȿvzmj"= 1[Rҳ|=R0I[]}g          p ̺PzSzEk1~35,` WՂqO@SԮ'Rzϭ{oa8)_τiSshvp_O?keዴ{k~zOB4"ks+BޠE^|v=wT;}7`'{Y\z>׽i@@@@@@@@@6C`օ:gag~v^O0 mgJ"7 [tqkµ L:V<&7=c:7=s1kזNU, YXwEJRTx r~yخ*Z8ɕXX_\ܗ2          Se[,Jo*b]4_ Q-;7xv2ZA=N6r JZaZ{N=c97-;gmsa{ٳ(=WPN) (Swh%6óZ\,A ;(?Xȕ-o] 3orsqj}          j-{/s?wHZBK+BjV0" iֱ|ϕ g,ex fmsns^Tiڵ֮A|ZyK`"m+ ;xڨ-(=su&U eN{\|ZQ:Q@@@@@@@@@XEٖ=ҽ yvh(B[<{va \XKV>w9fkk|om.zm+` Se,\\![:he o>ﻍ'u:s4f{r%沷G@@@@@@@@@(RU xq\!VP"ܿU#E)[^ cdzGw]+o[˼Y\bYY^ QEzq Ss.`h-k\{תLS{(         J`lK2I۪}-jЅlK(ZZ[mN_=9l7߀Y\b X`]`jB Tz/Za`D(Z˵[;LR n18;1@@@@@@@@@@U ̵0Ҏw'P!ڵ4  X rސEx.K\ԥտy-byaNȍ]oՍ糧w`6XD6-Y$_+[ F{{vl; Qx|9z|sϭNPӖ^qZ*)h          'tsj?z[[zbڢ5Dx*k-o HXxiǬV6w>=ҲaƬe.Xʴ3a˔vOj$B6{[·"j0J5 fx\:iz{Z\woxƮeXX5o-o-mR@@@@@@@@@gO퇥|{uoBjeAR"voYKKeJϘ箕[χ97i{ exm.yS\*` OuZ!k9b\PX\ ˹%T~63         f](=3o== Kx"<~\6zH[B2SCrkD,^|ND\~Nmyu 7͞Eօր^jk\ (0r=Ju.YR_ GZ{$ύ5+X̽:+OM釧ϔE@@@@@@@@@yf](=k=֙T E7`4Z&Whc-WzZxek.{6i8N7a|MiLz2Jପ9V'         u]RTz>-W^VZD9%02֠D>6(W/>WCkܤӆ ?$X(mǔ2ELOBr(M[۳ X+s.FS5frm禧e3ô܄9&ߌ@@@@@@@@@@`#,uu7KYk"M_{횙$w;d˜n^\<<̕K,j^{G+dQn _xCЅ%(qbg+/rs{o8ɕsoӔ=3~E@@@@@@@@@ȕӷZV{=!RyKhT'Dח KWK||w+ߣtu>׆Nnʵt{,y6S8=j\yKp"@@@@@@@@@@` ue=}[:`NB֝j;2)rs,mO)Y=-! ;s.)68=;ugh3EޣUh,0F+Q XsVYZ!{JH%}ow{s26Z?0S:          .ضoi-e1}iZh0J/K@"~oTw6J=Aةs5nӹ-[1=X\D)򞀅R[|n SB qVٞ=uS'FZd}{֘ꩳ}y          _`օWkRgVsJ+ ঄"r9ڨL˳T65^:oN":Ugh3EޣUv=wrκB+`gP ?m-OsekKi9\0Z}[i@@@@@@@@@~"0Ba{.յPTB}kL_2T۞ɕ-O{εƝz:zwz%5/fGz%qY{ cX8QzAZ'}xm^=Xz0<5nKm[S2SoζL\ע9iZv. ^'d* Rn*9=L8X'eZ~,֟凈F@@@@@@@@@@ RJU,,A\9z0,[X޲fճ\/kOez۴Ly}-5ˬkqiUv=wЋhi%6j'8c);Z5˻ 2Vr5>s}hNB˽zۦ          ZmiLoBgK 7d:C̭"m#̫VTT?9GD'kq*?5`Z\Tj ?;Ojw9B)wUj7Lֻz-Z>@@@@@@@@@@&0uQ~Z|\m'Tw\ "-gab`Pj3=zaY3s0u{?~F ̽۞|e~-d1Gx++".zg05< G4Jl廵L\1W[6=s׼\/y_KSXϷ-^e k9kPc\?9ZTv>LVشӜ Xgmr          ^kQV9k"vYbW k83 KHV/w\\9-WWz6Jjms56[[`{쪿K2], QИZdude5yW:ayH<)-cv_~v)         Uu[i{h.RnPƜ!s:V]ꄹWWk7ۖvz l;ۧu-^򾞶[e[;V ]i!kUT:xZQN\tRc\Sz.!         @BoOVYB\B5(14gHV?륲2wϹR0[1߉%gr嗼mKu,.Xʵ=k;bԮi,Xr񹩟=suXV%e1i@@@@@@@@@+s-*],Z;Ox˴ HX4I۩yzΕ5{z<-KӶwһXEB26ASڱ<[LZz=sT6qhi`O#         ?mSz[y=XN  =Ze%fV5ĻHz0=cF:[0.)Xl_ֵzz۶i YhФ;N,y.nuR0KVz\?Xge@@@@@@@@@@.0עnO;20KkQZ7 ({JPZsQO8罄9pEs˼~vBFcK.iUvݺcHҲSNZwZԿy5ɕ) S;vrS5>Kӭ*           z~[ypR '|:֫=g}:>ֱXΖ[UsVٞ]/ЀXU8(Gkݴ\\0;7[u돀>(         L]mo)7Ǯ,<-6x ={h|ejuZe-Üi9_랶mg;XbrKٞ[xBSvaVSOg~z-ZTv3>-C0,?2FR_D1@@@@@@@@@p |1q}o,_No^5Z[wϹR0n[U?.&L*ZԼza- YXw5,EP|\.wt|N<113)j<3u@@@@@@@@@@`SRVfjB*F+QkUw)xL%*yNUcWֹy{ߪ X{],rN (Mi'ԝ-mz\ kQiݿiz{K>         ?M+_L=~[L YXB " !9Z.2sk빩SgEK߻}K5dQlGfܥ:i{2~0,0W9         /K&ZVл.Z;Lʕvg+lnq s~h=[sחhcM\pdy۶),;TX˵!s$msiX-Ky׭k։?w{R@@@@@@@@@s/g)߳л[v]/rf rZ<mӳg% Ln hXi-Һ2saM#ĵgsce@@@@@@@@@@&{ڱ]Nzߞa%{VϹRֵ0?-(=uKmNM\dzڶYubЅ'C[R'Lg:Zcuvod޺(ϱ.?         Q 'NykV]BԽans-ZռU>wn\:)d>Eͫ2+, {xC OLST6LwNV; =bY@@@@@@@@@@ب3NykV'TY Oaش-m^ݳ4[kiʜ IDATmvW'=[Y{ :=eϕ+ NkROjYC@@@@@@@@@@XbU:M}kVjVk/aYv7ǭ1j4/NWy}깇N' 6hPx{}\{Sϕ·6بMZk\P@@@@@@@@@X {۶k+]<%ݶ2al[ k-yS;Wqs6qq*{KV)dV ZxCrח8&]5oMt[q@@@@@@@@@@s/ g)߳sE٬KV!ׇZV{s_6F,Fy N,־O=@@@@@@@@@@U`ve[弁RyKPARCE9Xڵ>CVuof/W`/ϞuZ6!d5Wavr},|tXgkZnT=}          p ,P]KVoS'TSR'voR?{zr񼴶;n_;۾^ܦ,4PzvճcgW={n򞲭=g[{q@@@@@@@@@@/0brO[]+O U&zo˰VR71ѽc(+WϞXJuz (s֝-OJeD豎'Q]ZcX):          E` ZRn]a kXRRFbJo]\9S2uuU>zr= =!;31g[1:s3ēNikMmwoK8@72sScW"W׶Hw @ @ @ @ @-]WEG߳q\G~ϧȺϣwؽ_),l"So[1+X @ @ @ @ @2\%O1?|0⣉=Gj-鷒i|绩YS6?RKQ쮏{]?)#5|(ݫ%.Zo-ݗo?/]4>{}EZ92 @ @ @ @ @cOR$o]5fȚ̏,*Sl$G^[󩟿]▵?$ @ @ @ @ -D>f05kZ-GoOkޙ~c5kwuњ~k(]W7#k@".D}QJo4w_, @ @ @ @ @z<*Y)nl?ۿvOS_q?ii=bv#n٣tmI\)ߞO5.sd?}'rۚ @ @ @ @,)cŌ3Gr>8}>uzpǖƽՖ?bZv}<ڽ"b[~|p Mܿ[1%{el]gR @ @ @ @ @^3Y_A#H5+ϟ]WsFUS֜zj{m=a5(5kj?/MIwvEi_ @ @ @ @ @6o麒G `tM~[sOIݻ){n֮{D Ş8{j{o?|x2ƿ.&|MZL @ @ @ @ ]`ٍ:g(X\Ľ?>=-F)ߧq]{D Şyj+} 5h55լ/ogxwJ\W&r{" @ @ @ @ @GY65#kJbbj>T\[MOVOMIwV.:Ug+4ׇя&A\[ r-JC @ @ @ @ 0G 1z4Wi|I\jլemISYҋw\Vܫ_ל{9Z-}FmΚ0'=]O5#%RGIb @ @ @ @ @#Vy QG4GI|kO~P3:؟wem+Z[QGeڒاk?n]w m-{wZ֖\KjC @ @ @ @ Yckz}Pv'KrNUIOSزnأi8S%O1O_TaCuOdzyJ|Z?]~,n @ @ @ @ @ j7eYDDb{^DgykKf޺5O9Jc"qdKdbx%5 @ @ @ @ @G=NS$.#f'JwCi=:בkYݑ{Ek ǟyZ-/{2<祉ƿoY#& @ @ @ @ @ Ŭ{tmiS_z:Ҹى2w}?ȳ][_"<(/UIfͻKgpm+ @ @ @ @ 2,<5%1O9Z4&w7dO۲6zF:Gֺͣ_t}i|IS><^4&w_>];jHMb  @ @ @ @ @F=Fo'4$.#f4:9S׺y1zh}U'?؞q=KKFŔs sI\I}1"-k~55T] ٰiJ&@ @ @ @ @G>N2ʶYS[s==^#34hQj]_333[52#ԕ-GukfĕYs ~i}I].m$% @ @ @ @ @?N4]W_s$W1(贮5ˣlݳf}dMilf\ikKcK^/K͚ыZot? @ @ @ @ @}F?Poݯf}Ҹ%%1"q{J4k&|ƞ5uVۣϛ_MȚYqp}_h|O BV7O @ @ @ @ @ IINWl|uYq}(qEjKG3ΛgmȺ=r^ 05k~^ .gV˿bM瓋 @ @ @ @ ϳj]/-)[_G̺+ͪ8Ϸ>ƞq=krDDW=RѲE둳Rol) @ @ @ @$ |#Z]_!j]5k~IF3Zcj>ju}ksDDyw2rD/=5'@ @ @ @ @h=cuHչtDy7U9ju־5ܳΟomu5zaZ~x=r\MۤQ$@ @ @ @ @1we5kkz_-qvXdYԚ5<޵yF٧fu1jTYyu־: @ @ @ @ @ zОomu53&sWtmSv5e"g닜E, @ @ @ @ @`'%gڕܳZS9C-ރtڻ%Oښ5-ֵݗuK+oKhb6FY @ @ @ @ @`?Nؚvu{]kY<54szxoҙY{]?zչ=]\uƞ#@ @ @ @ @'0{-j׎^wOG?++Oܻnk<7l[sծ]wwbOn83+ @ @ @ @ &p^gh;k} ek->{{pokY?kі.XO{;S;\ @ @ @ @ @\#rȞ[rZ{ٷwJ㎛n5]%\-9Z|K:{h  @ @ @ @ @ ~F-kg葫v23S[R<܎Ulךuk2s0ƓmK @ @ @ @ػ3zgoպFV^j&\u,ΣX&|yZ׿v.3׻? a< ޶ @ @ @ @ @`!7qf\nd镯vjU[RuHMb  @ @ @ @ @O`Ňj:m:= kת:md:{& @ @ @ @ @'#Q5OtzG?ZViʮ3jٙ{3ә}u* @ @ @ @ @<5/vff=c\[O;VvQی=ܻtUS @ @ @ @ @y34c{vwJϰTG}ڱfywv}̬tf_ @ @ @ @D<h͋٧{س+Vz*3?{q*KJ8˺ ˮ @ @ @ @ @-%оG1K`{ @ @ @ @ @_,/n~=ϒ, @ @ @ @ @f bAzP3',Mn  @ @ @ @ @|,YG(>KRd @ @ @ @ @%YQA͜|4'@ @ @ @ @ >gݣ,Iy̒ @ @ @ @ @ @`,fG5Ql,oS: @ @ @ @H@> RH:ܬ"@ Wߢ\O @ @ @ @ @>رkj&pG5Ql,oS: @ @ @ @HE4 x\fzF @ @ @ @vŎ]S3B`c6n  @ @ @ @ @@, !@N:7(S6 @ @ @ @ ,v욚 $QAt [qN @ @ @ @|`) u5׹YE@E @ @ @ @ @|`cL jXߢt @ @ @ @ $$Hi*r- @ @ @ @(f x|P3m< @ @ @ @ @$X$AJC@GunV +oQl @ @ @ @ @`GX558H惚(6h) @ @ @ @$ " Rs @ @ @ @ @8H5Q @ @ @ @ @ @:XԹYE @ @ @ @ @$( @ @ @ @ @ @@,ܬ"@ @ @ @ @ @At @ @ @ @ @ @NunV @ @ @ @ @ @ f:  @ @ @ @ @ P':7 @ @ @ @ @ @|`qP3 @ @ @ @ @EU @ @ @ @ @ @A>8B @ @ @ @ @ * @ @ @ @ @ @ m]IENDB`mkdocs-material-9.6.4/docs/blog/posts/chinese-search-support.md000066400000000000000000000055631475306445600245750ustar00rootroot00000000000000--- date: 2022-05-05 authors: [squidfunk] title: Chinese search support description: > Insiders adds Chinese language support for the built-in search plugin – a feature that has been requested many times categories: - Search links: - blog/posts/search-better-faster-smaller.md - plugins/search.md#segmentation - insiders/how-to-sponsor.md --- # Chinese search support – 中文搜索​支持 __Insiders adds experimental Chinese language support for the [built-in search plugin] – a feature that has been requested for a long time given the large number of Chinese users.__ After the United States and Germany, the third-largest country of origin of Material for MkDocs users is China. For a long time, the [built-in search plugin] didn't allow for proper segmentation of Chinese characters, mainly due to missing support in [lunr-languages] which is used for search tokenization and stemming. The latest Insiders release adds long-awaited Chinese language support for the built-in search plugin, something that has been requested by many users. _Material for MkDocs終於​支持​中文​了!文本​被​正確​分割​並且​更​容易​找到。_ { style="display: inline" } _This article explains how to set up Chinese language support for the built-in search plugin in a few minutes._ { style="display: inline" } [built-in search plugin]: ../../plugins/search.md [lunr-languages]: https://github.com/MihaiValentin/lunr-languages ## Configuration Chinese language support for Material for MkDocs is provided by [jieba], an excellent Chinese text segmentation library. If [jieba] is installed, the built-in search plugin automatically detects Chinese characters and runs them through the segmenter. You can install [jieba] with: ``` pip install jieba ``` The next step is only required if you specified the [`separator`][separator] configuration in `mkdocs.yml`. Text is segmented with [zero-width whitespace] characters, so it renders exactly the same in the search modal. Adjust `mkdocs.yml` so that the [`separator`][separator] includes the `\u200b` character: ``` yaml plugins: - search: separator: '[\s\u200b\-]' ``` That's all that is necessary. ## Usage If you followed the instructions in the configuration guide, Chinese words will now be tokenized using [jieba]. Try searching for [:octicons-search-24: 支持][q=支持] to see how it integrates with the built-in search plugin. --- Note that this is an experimental feature, and I, @squidfunk, am not proficient in Chinese (yet?). If you find a bug or think something can be improved, please [open an issue]. [jieba]: https://pypi.org/project/jieba/ [zero-width whitespace]: https://en.wikipedia.org/wiki/Zero-width_space [separator]: ../../plugins/search.md#config.separator [q=支持]: ?q=支持 [open an issue]: https://github.com/squidfunk/mkdocs-material/issues/new/choose mkdocs-material-9.6.4/docs/blog/posts/excluding-content-from-search.md000066400000000000000000000152351475306445600260350ustar00rootroot00000000000000--- date: 2021-09-26 authors: [squidfunk] description: > Three new simple ways to exclude dedicated parts of a document from the search index, allowing for more fine-grained control categories: - Search links: - blog/posts/search-better-faster-smaller.md - setup/setting-up-site-search.md#search-exclusion - insiders/how-to-sponsor.md --- # Excluding content from search __The latest Insiders release brings three new simple ways to exclude dedicated parts of a document from the search index, allowing for more fine-grained control.__ Two weeks ago, Material for MkDocs Insiders shipped a [brand new search plugin], yielding [massive improvements in usability], but also in [speed and size] of the search index. Interestingly, as discussed in the previous blog article, we only scratched the surface of what's now possible. This release brings some useful features that enhance the writing experience, allowing for more fine-grained control of what pages, sections and blocks of a Markdown file should be indexed by the built-in search functionality. _The following section discusses existing solutions for excluding pages and sections from the search index. If you immediately want to learn what's new, skip to the [section just after that][what's new]._ [brand new search plugin]: search-better-faster-smaller.md [massive improvements in usability]: search-better-faster-smaller.md#whats-new [speed and size]: search-better-faster-smaller.md#benchmarks [what's new]: #whats-new ## Prior art MkDocs has a rich and thriving ecosystem of [plugins], and it comes as no surprise that there's already a fantastic plugin by @chrieke to exclude specific sections of a Markdown file – the [mkdocs-exclude-search] plugin. It can be installed with: ``` pip install mkdocs-exclude-search ``` __How it works__: the plugin post-processes the `search_index.json` file that is generated by the built-in search plugin, giving the author the ability to exclude certain pages and sections by adding a few lines of configuration to `mkdocs.yml`. An example: ``` yaml plugins: - search - exclude-search: exclude: - page.md - page.md#section - directory/* - /*/page.md ``` It's easy to see that the plugin follows a configuration-centric approach, which adds support for advanced filtering techniques like infix- and suffix-filtering using wildcards. While this is a very powerful idea, it comes with some downsides: 1. __Exclusion patterns and content are not co-located__: exclusion patterns need to be defined in `mkdocs.yml`, and not as part of the respective document or section to be excluded. This might result in stale exclusion patterns, leading to unintended behavior: - When a headline is changed, its slug (permalink) also changes, which might suddenly match (or unmatch) a pattern, e.g., when an author fixes a typo in a headline. - As exclusion patterns support the use of wildcards, different authors might overwrite each other's patterns without any immediate feedback since the plugin does only report the number of excluded documents – not _what_ has been excluded.[^1] [^1]: When the log level is set to `DEBUG`, the plugin will report exactly which pages and sections have been excluded from the search index, but MkDocs will now flood the terminal with debug output from its core and other plugins. 2. __Exclusion control might be too coarse__: The [mkdocs-exclude-search] plugin only allows for the exclusion of pages and sections. It's not possible to exclude parts of a section, e.g., content that is irrelevant to search but must be included as part of the documentation. [plugins]: https://github.com/mkdocs/mkdocs/wiki/MkDocs-Plugins [mkdocs-exclude-search]: https://github.com/chrieke/mkdocs-exclude-search ## What's new? The latest Insiders release brings fine-grained control for [__excluding pages, sections, and blocks__][search exclusion] from the search index, implemented through front matter, as well as the [Attribute Lists]. Note that it doesn't replace the [mkdocs-exclude-search] plugin but __complements__ it. [search exclusion]: ../../setup/setting-up-site-search.md#search-exclusion [Attribute Lists]: ../../setup/extensions/python-markdown.md#attribute-lists ### Excluding pages An entire page can be excluded from the search index by adding a simple directive to the front matter of the respective Markdown file. The good thing is that the author now only has to check the top of the document to learn whether it is excluded or not: ``` yaml --- search: exclude: true --- # Page title ... ``` ### Excluding sections If a section should be excluded, the author can use the [Attribute Lists] extension to add a __pragma__ called `data-search-exclude` at the end of a heading. The pragma is not included in the final HTML, as search pragmas are filtered by the search plugin before the page is rendered: === ":octicons-file-code-16: `docs/page.md`" ``` markdown # Page title ## Section 1 The content of this section is included ## Section 2 { data-search-exclude } The content of this section is excluded ``` === ":octicons-codescan-16: `search_index.json`" ``` json { ... "docs": [ { "location":"page/", "text":"", "title":"Document title" }, { "location":"page/#section-1", "text":"

The content of this section is included

", "title":"Section 1" } ] } ``` ### Excluding blocks If even more fine-grained control is desired, the __pragma__ can be added to any [block-level element] or [inline-level element] that is officially supported by the [Attribute Lists] extension: === ":octicons-file-code-16: `docs/page.md`" ``` markdown # Page title The content of this block is included The content of this block is excluded { data-search-exclude } ``` === ":octicons-codescan-16: `search_index.json`" ``` json { ... "docs": [ { "location":"page/", "text":"

The content of this block is included

", "title":"Document title" }, ] } ``` [block-level element]: https://python-markdown.github.io/extensions/attr_list/#block-level [inline-level element]: https://python-markdown.github.io/extensions/attr_list/#inline ## Conclusion The latest release brings three simple ways to control more precisely what goes into the search index and what doesn't. It complements the already very powerful [mkdocs-exclude-search] plugin, allowing for new methods of shaping the structure, size and content of the search index. mkdocs-material-9.6.4/docs/blog/posts/git-sparse-checkout.md000066400000000000000000000070301475306445600240520ustar00rootroot00000000000000--- date: 2023-09-22 authors: [squidfunk] categories: - Build - Performance links: - publishing-your-site.md#with-github-actions - creating-your-site.md#building-your-site --- # Using `git sparse-checkout` for faster documentation builds __Leveraging `git sparse-checkout` in GitHub Actions enabled us to speed up documentation builds in our repository, cutting checkout times from 20 to 30 seconds to just 2 seconds.__ Developing an efficient approach to build documentation in CI workflows is essential, especially when working in large repositories with thousands of commits, like ours. Of course, we want to build documentation quickly and efficiently, ensuring fast and productive workflows. When using both the wonderful [`git-committers`][git-committers] and [`git-revision-date-localized`] [git-revision-date-localized] plugins to display [document contributors] and [dates] at the bottom of each page, we are required to set `fetch-depth: 0`, which resulted in checkout times of 20 to 30 seconds on our repository. By leveraging [`git sparse-checkout`][git sparse-checkout] within [GitHub Actions], check out time was brought down to 2 seconds. [git sparse-checkout]: https://git-scm.com/docs/git-sparse-checkout [GitHub Actions]: ../../publishing-your-site.md#with-github-actions [git-revision-date-localized]: https://github.com/timvink/mkdocs-git-revision-date-localized-plugin [git-committers]: https://github.com/ojacques/mkdocs-git-committers-plugin-2 [document contributors]: ../../setup/adding-a-git-repository.md#document-contributors [dates]: ../../setup/adding-a-git-repository.md#document-dates ## A Primer [`git sparse-checkout`][git sparse-checkout] allows you to check out only a subset of the files in a repository, making it incredibly useful for large repositories where a full checkout takes long and includes many files that are not relevant when building documentation. ## GitHub Actions To enable [`git sparse-checkout`][git sparse-checkout] within [GitHub Actions] and ensure that you are only building the documentation that you need, add the following lines to your workflow file: ``` yaml - uses: actions/checkout@v4 with: fetch-depth: 0 sparse-checkout: | docs includes ``` [`git sparse-checkout`][git sparse-checkout] always checks out all files residing in the repository’s root. This means that regardless of the specified paths or directories for sparse checkout, the files located in the root of the repository will always be included in the checkout process. Thus, you only need to specify the directories that are necessary for building documentation. In our case, we only need the `docs` and `includes` folders, but if you need additional directories, you can just add them to the end of the list. A complete example workflow for [GitHub Actions]: ``` yaml hl_lines="13-18" name: documentation on: push: branches: - master - main permissions: contents: write jobs: deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 with: fetch-depth: 0 sparse-checkout: | docs includes - uses: actions/setup-python@v4 with: python-version: 3.x - run: pip install mkdocs-material - run: mkdocs gh-deploy --force ``` ## Conclusion That's all there is! We're super happy with the results and hope that this will help you to speed up your documentation builds in [GitHub Actions] as well. As always, feel free to share your thoughts and experiences in the comments below. mkdocs-material-9.6.4/docs/blog/posts/search-better-faster-smaller.md000066400000000000000000000625311475306445600256470ustar00rootroot00000000000000--- date: 2021-09-13 authors: [squidfunk] readtime: 15 description: > How we rebuilt client-side search, delivering a better user experience while making it faster and smaller at the same time categories: - Search - Performance links: - plugins/search.md - insiders/how-to-sponsor.md --- # Search: better, faster, smaller __This is the story of how we managed to completely rebuild client-side search, delivering a significantly better user experience while making it faster and smaller at the same time.__ The [search] of Material for MkDocs is by far one of its best and most-loved assets: [multilingual], [offline-capable], and most importantly: _all client-side_. It provides a solution to empower the users of your documentation to find what they're searching for instantly without the headache of managing additional servers. However, even though several iterations have been made, there's still some room for improvement, which is why we rebuilt the search plugin and integration from the ground up. This article shines some light on the internals of the new search, why it's much more powerful than the previous version, and what's about to come. _The next section discusses the architecture and issues of the current search implementation. If you immediately want to learn what's new, skip to the [section just after that][what's new]._ [search]: ../../setup/setting-up-site-search.md [multilingual]: ../../plugins/search.md#config.lang [offline-capable]: ../../setup/building-for-offline-usage.md [what's new]: #whats-new ## Architecture Material for MkDocs uses [lunr] together with [lunr-languages] to implement its client-side search capabilities. When a documentation page is loaded and JavaScript is available, the search index as generated by the [built-in search plugin] during the build process is requested from the server: ``` ts const index$ = document.forms.namedItem("search") ? __search?.index || requestJSON( new URL("search/search_index.json", config.base) ) : NEVER ``` [lunr]: https://lunrjs.com [lunr-languages]: https://github.com/MihaiValentin/lunr-languages [built-in search plugin]: ../../plugins/search.md ### Search index The search index includes a stripped-down version of all pages. Let's take a look at an example to understand precisely what the search index contains from the original Markdown file: ??? example "Expand to inspect example" === ":octicons-file-code-16: `docs/page.md`" ```` markdown # Example ## Text It's very easy to make some words **bold** and other words *italic* with Markdown. You can even add [links](#), or even `code`: ``` if (isAwesome) { return true } ``` ## Lists Sometimes you want numbered lists: 1. One 2. Two 3. Three Sometimes you want bullet points: * Start a line with a star * Profit! ```` === ":octicons-codescan-16: `search_index.json`" ``` json { "config": { "indexing": "full", "lang": [ "en" ], "min_search_length": 3, "prebuild_index": false, "separator": "[\\s\\-]+" }, "docs": [ { "location": "page/", "title": "Example", "text": "Example Text It's very easy to make some words bold and other words italic with Markdown. You can even add links , or even code : if (isAwesome) { return true } Lists Sometimes you want numbered lists: One Two Three Sometimes you want bullet points: Start a line with a star Profit!" }, { "location": "page/#example", "title": "Example", "text": "" }, { "location": "page/#text", "title": "Text", "text": "It's very easy to make some words bold and other words italic with Markdown. You can even add links , or even code : if (isAwesome) { return true }" }, { "location": "page/#lists", "title": "Lists", "text": "Sometimes you want numbered lists: One Two Three Sometimes you want bullet points: Start a line with a star Profit!" } ] } ``` If we inspect the search index, we immediately see several problems: 1. __All content is included twice__: the search index contains one entry with the entire contents of the page, and one entry for each section of the page, i.e., each block preceded by a headline or subheadline. This significantly contributes to the size of the search index. 2. __All structure is lost__: when the search index is built, all structural information like HTML tags and attributes are stripped from the content. While this approach works well for paragraphs and inline formatting, it might be problematic for lists and code blocks. An excerpt: ``` … links , or even code : if (isAwesome) { … } Lists Sometimes you want … ``` - __Context__: for an untrained eye, the result can look like gibberish, as it's not immediately apparent what classifies as text and what as code. Furthermore, it's not clear that `Lists` is a headline as it's merged with the code block before and the paragraph after it. - __Punctuation__: inline elements like links that are immediately followed by punctuation are separated by whitespace (see `,` and `:` in the excerpt). This is because all extracted text is joined with a whitespace character during the construction of the search index. It's not difficult to see that it can be quite challenging to implement a good search experience for theme authors, which is why Material for MkDocs (up to now) did some [monkey patching] to be able to render slightly more meaningful search previews. [monkey patching]: https://github.com/squidfunk/mkdocs-material/blob/ec7ccd2b2d15dd033740f388912f7be7738feec2/src/assets/javascripts/integrations/search/document/index.ts#L68-L71 ### Search worker The actual search functionality is implemented as part of a web worker[^1], which creates and manages the [lunr] search index. When search is initialized, the following steps are taken: [^1]: Prior to , search was carried out in the main thread which locked up the browser, rendering it unusable. This problem was first reported in #904 and, after some back and forth, fixed and released in . 1. __Linking sections with pages__: The search index is parsed, and each section is linked to its parent page. The parent page itself is _not indexed_, as it would lead to duplicate results, so only the sections remain. Linking is necessary, as search results are grouped by page. 2. __Tokenization__: The `title` and `text` values of each section are split into tokens by using the [`separator`][separator] as configured in `mkdocs.yml`. Tokenization itself is carried out by [lunr's default tokenizer][default tokenizer], which doesn't allow for lookahead or separators spanning multiple characters. > Why is this important and a big deal? We will see later how much more we > can achieve with a tokenizer that is capable of separating strings with > lookahead. 3. __Indexing__: As a final step, each section is indexed. When querying the index, if a search query includes one of the tokens as returned by step 2., the section is considered to be part of the search result and passed to the main thread. Now, that's basically how the search worker operates. Sure, there's a little more magic involved, e.g., search results are [post-processed] and [rescored] to account for some shortcomings of [lunr], but in general, this is how data gets into and out of the index. [separator]: ../../plugins/search.md#config.separator [default tokenizer]: https://github.com/olivernn/lunr.js/blob/aa5a878f62a6bba1e8e5b95714899e17e8150b38/lunr.js#L413-L456 [post-processed]: https://github.com/squidfunk/mkdocs-material/blob/ec7ccd2b2d15dd033740f388912f7be7738feec2/src/assets/javascripts/integrations/search/_/index.ts#L249-L272 [rescored]: https://github.com/squidfunk/mkdocs-material/blob/ec7ccd2b2d15dd033740f388912f7be7738feec2/src/assets/javascripts/integrations/search/_/index.ts#L274-L275 ### Search previews Users should be able to quickly scan and evaluate the relevance of a search result in the given context, which is why a concise summary with highlighted occurrences of the search terms found is an essential part of a great search experience. This is where the current search preview generation falls short, as some of the search previews appear not to include any occurrence of any of the search terms. This was due to the fact that search previews were [truncated after a maximum of 320 characters][truncated], as can be seen here:
![search preview]
The first two results look like they're not relevant, as they don't seem to include the query string the user just searched for. Yet, they are.
A better solution to this problem has been on the roadmap for a very, very long time, but in order to solve this once and for all, several factors need to be carefully considered: 1. __Word boundaries__: some themes[^2] for static site generators generate search previews by expanding the text left and right next to an occurrence, stopping at a whitespace character when enough words have been consumed. A preview might look like this: ``` … channels, e.g., or which can be configured via mkdocs.yml … ``` While this may work for languages that use whitespace as a separator between words, it breaks down for languages like Japanese or Chinese[^3], as they have non-whitespace word boundaries and use dedicated segmenters to split strings into tokens. [^2]: At the time of writing, [Just the Docs] and [Docusaurus] use this method for generating search previews. Note that the latter also integrates with Algolia, which is a fully managed server-based solution. [^3]: China and Japan are both within the top 5 countries of origin of users of Material for MkDocs. [truncated]: https://github.com/squidfunk/mkdocs-material/blob/master/src/templates/assets/javascripts/templates/search/index.tsx#L90 [search preview]: search-better-faster-smaller/search-preview.png [Just the Docs]: https://pmarsceill.github.io/just-the-docs/ [Docusaurus]: https://github.com/lelouch77/docusaurus-lunr-search 1. __Context-awareness__: Although whitespace doesn't work for all languages, one could argue that it could be a good enough solution. Unfortunately, this is not necessarily true for code blocks, as the removal of whitespace might change meaning in some languages. 3. __Structure__: Preserving structural information is not a must, but apparently beneficial to build more meaningful search previews which allow for a quick evaluation of relevance. If a word occurrence is part of a code block, it should be rendered as a code block. ## What's new? After we built a solid understanding of the problem space and before we dive into the internals of our new search implementation to see which of the problems it already solves, a quick overview of what features and improvements it brings: - __Better__: support for [rich search previews], preserving the structural information of code blocks, inline code, and lists, so they are rendered as-is, as well as [lookahead tokenization], [more accurate highlighting], and improved stability of typeahead. Also, a [slightly better UX]. - __Faster__ and __smaller__: significant decrease in search index size of up to 48% due to improved extraction and construction techniques, resulting in a search experience that is up to 95% faster, which is particularly helpful for large documentation projects. [rich search previews]: #rich-search-previews [lookahead tokenization]: #tokenizer-lookahead [more accurate highlighting]: #accurate-highlighting [slightly better UX]: #user-interface ### Rich search previews As we rebuilt the search plugin from scratch, we reworked the construction of the search index to preserve the structural information of code blocks, inline code, as well as unordered and ordered lists. Using the example from the [search index] section, here's how it looks: === "Now" ![search preview now] === "Before" ![search preview before] Now, __code blocks are first-class citizens of search previews__, and even inline code formatting is preserved. Let's take a look at the new structure of the search index to understand why: ??? example "Expand to inspect search index" === "Now" ``` json { ... "docs": [ { "location": "page/", "title": "Example", "text": "" }, { "location": "page/#text", "title": "Text", "text": "

It's very easy to make some words bold and other words italic with Markdown. You can even add links, or even code:

if (isAwesome){\n  return true\n}\n
" }, { "location": "page/#lists", "title": "Lists", "text": "

Sometimes you want numbered lists:

  1. One
  2. Two
  3. Three

Sometimes you want bullet points:

  • Start a line with a star
  • Profit!
" } ] } ``` === "Before" ``` json { ... "docs": [ { "location": "page/", "title": "Example", "text": "Example Text It's very easy to make some words bold and other words italic with Markdown. You can even add links , or even code : if (isAwesome) { return true } Lists Sometimes you want numbered lists: One Two Three Sometimes you want bullet points: Start a line with a star Profit!" }, { "location": "page/#example", "title": "Example", "text": "" }, { "location": "page/#text", "title": "Text", "text": "It's very easy to make some words bold and other words italic with Markdown. You can even add links , or even code : if (isAwesome) { return true }" }, { "location": "page/#lists", "title": "Lists", "text": "Sometimes you want numbered lists: One Two Three Sometimes you want bullet points: Start a line with a star Profit!" } ] } ``` If we inspect the search index again, we can see how the situation improved: 1. __Content is included only once__: the search index does not include the content of the page twice, as only the sections of a page are part of the search index. This leads to a significant reduction in size, fewer bytes to transfer, and a smaller search index. 2. __Some structure is preserved__: each section of the search index includes a small subset of HTML to provide the necessary structure to allow for more sophisticated search previews. Revisiting our example from before, let's look at an excerpt: === "Now" ``` html … links, or even code:

if (isAwesome){ … }\n
``` === "Before" ``` … links , or even code : if (isAwesome) { … } ``` The punctuation issue is gone, as no additional whitespace is inserted, and the preserved markup yields additional context to make scanning search results more effective. On to the next step in the process: __tokenization__. [search index]: #search-index [search preview now]: search-better-faster-smaller/search-preview-now.png [search preview before]: search-better-faster-smaller/search-preview-before.png ### Tokenizer lookahead The [default tokenizer] of [lunr] uses a regular expression to split a given string by matching each character against the [`separator`][separator] as defined in `mkdocs.yml`. This doesn't allow for more complex separators based on lookahead or multiple characters. Fortunately, __our new search implementation provides an advanced tokenizer__ that doesn't have these shortcomings and supports more complex regular expressions. As a result, Material for MkDocs just changed its own separator configuration to the following value: ``` [\s\-,:!=\[\]()"/]+|(?!\b)(?=[A-Z][a-z])|\.(?!\d)|&[lg]t; ``` While the first part up to the first `|` contains a list of single control characters at which the string should be split, the following three sections explain the remainder of the regular expression.[^4] [^4]: As a fun fact: the [`separator`][separator] [default value] of the search plugin being `[\s\-]+` always has been kind of irritating, as it suggests that multiple characters can be considered being a separator. However, the `+` is completely irrelevant, as regular expression groups involving multiple characters were never supported by [lunr's default tokenizer][default tokenizer]. [default value]: https://www.mkdocs.org/user-guide/configuration/#separator #### Case changes Many programming languages use `PascalCase` or `camelCase` naming conventions. When a user searches for the term `case`, it's quite natural to expect for `PascalCase` and `camelCase` to show up. By adding the following match group to the separator, this can now be achieved with ease: ``` (?!\b)(?=[A-Z][a-z]) ``` This regular expression is a combination of a negative lookahead (`\b`, i.e., not a word boundary) and a positive lookahead (`[A-Z][a-z]`, i.e., an uppercase character followed by a lowercase character), and has the following behavior: - `PascalCase` :octicons-arrow-right-24: `Pascal`, `Case` - `camelCase` :octicons-arrow-right-24: `camel`, `Case` - `UPPERCASE` :octicons-arrow-right-24: `UPPERCASE` Searching for [:octicons-search-24: searchHighlight][q=searchHighlight] now brings up the section discussing the `search.highlight` feature flag, which also demonstrates that this now even works properly for search queries.[^5] [^5]: Previously, the search query was not correctly tokenized due to the way [lunr] treats wildcards, as it disables the pipeline for search terms that contain wildcards. In order to provide a good typeahead experience, Material for MkDocs adds wildcards to the end of each search term not explicitly preceded with `+` or `-`, effectively disabling tokenization. [q=searchHighlight]: ?q=searchHighlight #### Version numbers Indexing version numbers is another problem that can be solved with a small lookahead. Usually, `.` should be considered a separator to split words like `search.highlight`. However, splitting version numbers at `.` will make them undiscoverable. Thus, the following expression: ``` \.(?!\d) ``` This regular expression matches a `.` only if not immediately followed by a digit `\d`, which leaves version numbers discoverable. Searching for [:octicons-search-24: 7.2.6][q=7.2.6] brings up the [7.2.6] release notes. [q=7.2.6]: ?q=7.2.6 [7.2.6]: ../../changelog/index.md#7.2.6 #### HTML/XML tags If your documentation includes HTML/XML code examples, you may want to allow users to find specific tag names. Unfortunately, the `<` and `>` control characters are encoded in code blocks as `<` and `>`. Now, adding the following expression to the separator allows for just that: ``` &[lg]t; ``` --- _We've only just begun to scratch the surface of the new possibilities tokenizer lookahead brings. If you found other useful expressions, you're invited to share them in the comment section._ ### Accurate highlighting Highlighting is the last step in the process of search and involves the highlighting of all search term occurrences in a given search result. For a long time, highlighting was implemented through dynamically generated [regular expressions].[^6] This approach has some problems with non-whitespace languages like Japanese or Chinese[^3] since it only works if the highlighted term is at a word boundary. However, Asian languages are tokenized using a [dedicated segmenter], which cannot be modeled with regular expressions. [^6]: Using the separator as defined in `mkdocs.yml`, a regular expression was constructed that was trying to mimic the tokenizer. As an example, the search query `search highlight` was transformed into the rather cumbersome regular expression `(^|)(search|highlight)`, which only matches at word boundaries. Now, as a direct result of the [new tokenization approach], __our new search implementation uses token positions for highlighting__, making it exactly as powerful as tokenization: 1. __Word boundaries__: as the new highlighter uses token positions, word boundaries are equal to token boundaries. This means that more complex cases of tokenization (e.g., [case changes], [version numbers], [HTML/XML tags]), are now all highlighted accurately. 2. __Context-awareness__: as the new search index preserves some of the structural information of the original document, the content of a section is now divided into separate content blocks – paragraphs, code blocks, and lists. Now, only the content blocks that actually contain occurrences of one of the search terms are considered for inclusion into the search preview. If a term only occurs in a code block, it's the code block that gets rendered, see, for example, the results of [:octicons-search-24: twitter][q=twitter]. [regular expressions]: https://github.com/squidfunk/mkdocs-material/blob/ec7ccd2b2d15dd033740f388912f7be7738feec2/src/assets/javascripts/integrations/search/highlighter/index.ts#L61-L91 [dedicated segmenter]: http://chasen.org/~taku/software/TinySegmenter/ [new tokenization approach]: #tokenizer-lookahead [case changes]: #case-changes [version numbers]: #version-numbers [HTML/XML tags]: #htmlxml-tags [q=twitter]: ?q=twitter ### Benchmarks We conducted two benchmarks – one with the documentation of Material for MkDocs itself, and one with a very massive corpus of Markdown files with more than 800,000 words – a size most documentation projects will likely never reach:
| | Before | Now | Relative | | ----------------------- | -------: | -------------: | -----------: | | __Material for MkDocs__ | | | | | Index size | 573 kB | __335 kB__ | __–42%__ | | Index size (`gzip`) | 105 kB | __78 kB__ | __–27%__ | | Indexing time[^7] | 265 ms | __177 ms__ | __–34%__ | | __KJV Markdown[^8]__ | | | | | Index size | 8.2 MB | __4.4 MB__ | __–47%__ | | Index size (`gzip`) | 2.3 MB | __1.2 MB__ | __–48%__ | | Indexing time | 2,700 ms | __1,390 ms__ | __–48%__ |

Benchmark results

[^7]: Smallest value of ten distinct runs. [^8]: We agnostically use [KJV Markdown] as a tool for testing to learn how Material for MkDocs behaves on large corpora, as it's a very large set of Markdown files with over 800k words. The results show that indexing time, which is the time that it takes to set up the search when the page is loaded, has dropped by up to 48%, which means __the new search is up to 95% faster__. This is a significant improvement, particularly relevant for large documentation projects. While 1,3s still may sound like a long time, using the new client-side search together with [instant loading] only creates the search index on the initial page load. When navigating, the search index is preserved across pages, so the cost does only have to be paid once. [KJV Markdown]: https://github.com/arleym/kjv-markdown [instant loading]: ../../setup/setting-up-navigation.md#instant-loading ### User interface Additionally, some small improvements have been made, most prominently the __more results on this page__ button, which now sticks to the top of the search result list when open. This enables the user to jump out of the list more quickly. ## What's next? Our new search implementation is a big improvement to Material for MkDocs. It solves some long-standing issues which needed to be tackled for years. Yet, it's only the start of a search experience that is going to get better and better. Next up: - __Context-aware search summarization__: currently, the first two matching content blocks are rendered as a search preview. With the new tokenization technique, we laid the groundwork for more sophisticated shortening and summarization methods, which we're tackling next. - __User interface improvements__: as we now gained full control over the search plugin, we can now add meaningful metadata to provide more context and a better experience. We'll explore some of those paths in the future. If you've made it this far, thank you for your time and interest in Material for MkDocs! This is the first blog article that I decided to write after a short [Twitter survey] made me to. You're invited to leave a comment to share your experiences with the new search implementation. [X survey]: https://x.com/squidfunk/status/1434477478823743488 mkdocs-material-9.6.4/docs/blog/posts/search-better-faster-smaller/000077500000000000000000000000001475306445600253165ustar00rootroot00000000000000mkdocs-material-9.6.4/docs/blog/posts/search-better-faster-smaller/search-preview-before.png000066400000000000000000007021521475306445600322170ustar00rootroot00000000000000PNG  IHDR\0( diCCPICC ProfileH\G$@dDŠ SF Aō*X*8*ZhR"Yu*ZB廐~ws=ϓ@/塺K !ɩi,R7 "_ '..2U{Ee E H:LBX @ rY2!ȡ8[ͫTC:\i|<v(g 퇐]Bȁ1_9*^ fgGXP!J<35)簃&Gƫ9;#J4Ƚ̘XU!yIj}T&dW!?4 )pi^LF% A-)%j.)467gsьmˇU+s87"ްET0j$96dEnBZ*scux6"iD>%bb /FUHu~:#ȍ")'i؎H19z8(4L;!&i B5cdyq},ʋPɭ ( 4cpqѲDxFBD.,59@ {A6dxDP>@(Fƅ @!. kphD.x9D<[94J:2[2x%.%r.KgXF %FÉ  ;}OxD$'\%tnN˿e"5g~1nmz!x-LpgRoUH\GqQ`×#F2y~Ծfd;,mԗRv ;cMÚCkhx!r?kTeRZ^ D T;C6G.8+ b񤂱cXn) зa$+@@Onm~]K^+P 2\ QX;  $T0 Y ׳bP *l[v|&p?s" n > BB1F,[qGH D#H*d#RDC Hن"? Czw(P CǡlFT4% AqzB0&f`lbiX&`eX%V5`-🾌ua[3pp$ |9ߍ7eއ$ gGL&"* ;  'n&"L=Tbq.q9q3q/I|@'H$gR)'JIH{HHHݤ7d-ٝNN#KJr(1yKQb)BJJ 2@գSbjzzBKKJWkDkV>ZiN4.-n^t;z0=^@_Aߥfhi jWk7j_~CѱL)ҩ9sAWk.Э={]_\N}~PD  a2%n Ǡ{>C}COdنՆG ӎc1W231ߍ2%lTèK^6 65jΘefkڸ nd2d& F.i\M"dfN3̓sך5`XZH,ZeXUvVere倕UU^;TkuZ6> 6lm~زmŶmOپKڮ=ϾȾ!aCG#1qE'ITtuv8ovC;F:fu ǥХXc>g3.mq}trszMm[[_Nj+tp==E[K ]{_~?]s/c~@V`Fශ]AA9γy\?|nk(Z1nUxvx}x_W܈HBdT<3W3a(ZTBƨN薉 Lc#i5wf48)nRGnO%0'%J I\x+!IԖ\:%4"k'K5I6ҒvO nJwWziSgO=3dZ޴#u ddekM}`0XV# UgdUd=^#W{%\FȜ9scsw'gKs3g̞)sʺf\7O%ߩ@S~^Jy0ͬYf͖>?iβ9‹mg9o{9-@d.h[hdaES.ص咔%-%f%J|U}v_o]/,Xlòe² 훪oWdXr**kVЫ(xfƵek_Lg]UUl6~x꽛L7-zp-[m-[ɷ7ElkN^юcWdgvn3[Y+{} . 2~!k`hM9}M⦮CiO[>bxdQђNJZ{g6։'Oj8u?89utg:>t\y`wG }/tT<|]'O\}OeOzKc3g?}ZŮ/5ooOKyx`{Z>F}=?8(CG V4+ v@Oq|CQS'V 7 Q׹V:zb0@=F(iNx\0ASCIIScreenshotb pHYs%%IR$iTXtXML:com.adobe.xmp 1372 Screenshot 1072 h4'iDOT(rrC@IDATxUچoD@P#1!戺ń*f( FbĀ  JNiggz{\tS}sƚ@@@@@J,GZbC6    8Wn@@@@@ Mid3     +     &4A@@@@@{@@@@Hk      @=    I5Ml@@@@ p@@@@@$@&H6    r     i pM$A@@@@\@@@@QѣG_m;ƍ[]v9zƙ?-_@@@@ ,]lKv7onvU^=t9__ にɓm޼y6|w6uֵM6Ě5kf-[44@@@@(ZN{#iXt/ p^i     .! ߞp nXicB7 @@@@0`{|%;M4p*gcr    _)47+}" iڷoаUI*W5NUV&6ƘH3    fzPZ5馛"Og!CC <1SOɗY6@FK.E˪^jӧO/`8    (GS'/#SC (l=z;t#6SaJ t1uf*[T'CWͤDZQW /^xwsuڵ|G   _=yvF=`IqVLe*lU*[5o԰կ2ɭWܺ    {g|Iq[d5,1$t-mzT_K=p85JRV-۳gد kǑ#   @6|@vHO#Ks^^s[8R\oH5@p"#<{o ^s@5."   "Y5Nkr#eox`|N#Gttj,MX'-Ai:nR\ђOLGkvfu(@@@@ {4ܦ7S!H51DKOizڧOa k p͝kə    @FmC U{W%ҳY'=G[VJ=pիW; |.nq'~w5khj׮ʪӦMٳgێ;hUVʛ9sԩSqԪU+U 8qr- |vZ1Ϙ1öv"ϻu…nH mF@@@(W RP*,ЙUMI8nݺ65a*\K[;nFѲe{S~vW[z߇ s+h"ץbŊ֤I;蠃믷J*nذacل l̙y1ؕW^iaС믐^K.ĕϝ;}_XӦMԛ1c}g|-_F(,hԨ]|řLv^:iO=u1ϨQOy.ח[vajX*Lo&{ =oz;}2W~l뮻V\Vnj>z \/2{7]H\`K/y   d2I ;HӪW !@U[^)ϥnfֽ{wrVR;wv(w 6,p;C㕱:u>~OدQjgBKoAgM}LCySoW;S[/#6optjZ磏>M6$?8V|u{+2d3Jm)mРA|A@@@Q YXرjMUzºIJT|-l(UgNS[#<ҥ%h)|I'ه~~w)R`OVrqzL+QeoǏw߅Urj:ʾ[G2M+նz*8/djlY_~}}׍7xD|?j[ᄏi=s]ܱ}믻uo Y}.` k l9Bl҆jS kvG$}^{[*W߂*N5\z!76nٰ~i,X\}謾uvW_}@ŭ?n{v?xW   dQ[&lWX蚭aJ=pNS{ 5h݈ ֬Y3;Ǭ{ՄX94ƄOlTVrVuY*Py.Yk߾@y(Mih_]^W=W_%ݼkK\BdM秉T W?$A0pDa]v WB`   dނu mkXU*\O;ȡkX*Tˮ͝wiwu۰W jMccFim۶?U~wnd/of/vF&҇\K&KE \erV   @bqbaѐ xaeUеL*\>G=ܫ*]U Y Nc}+[ \`YAc^xm֡C1TJN4f ˗Ⓧk{M>}U7*2ª)\U_+p k7xct(Mluq>iӭ:{c=6wҤI9sĿj2jtxj \.\hnۆW]4⨱   T\9)lUʹdaU5 ٙز-t-UBDT>+詬cƌ>c:4 ƨU5^+FI' ;m[: 7j\ٳ>ۍy\駟67p|UJ."'pLEG@@@( d'O=z_ĸ:0Ԣq3W<Æ {U_-S[Ac=fJj{/ww~W7O?T`Bx"zi-Mj*c4yWժUvWw@@@rD@io)h0>`ԓ^h0UTTf%#N% ]vnV?NE^mԩSU-Z w߶ݻe X_{5^'z']j|a7wqm#+pUu#.4n;2K.@5) @@@@`P8tOK{(jkqSV \ *?~ TJTɪ\u 5Bר-Mկ~تU+Wպ6Xqƹ^~es= ,9x[!4Vm6 TX4VŊMǮ\=   l4L*^VhhƁag+W_ŗ%P :tp RƍMs ^dٳg@r'/\ilX7۬Y3|jHUjH)VUMp6aSݤI7쀎v_A #    (wѤZ> vW髂,I!,Ԙ'xR&9J+ UgKcQ8qO[ j֬ MfcǎueߪF՟M)Uٶm[RJUO:g-A+"    6@l]ʺCt`&VGN: >m?.^@@@@H\[m;/J״Q誹ۥ)T\֕r.pՉJ=4    @y \"UЕ5D@@@Ȅ@qOnVPs6pEˇS    @8?i#4+ҁN9¡#    Pl(UT \ a!    SЕ)kٲe@@@@2*4qԭ[ڷoo͛7q \srn     Pe@@@@@ \srn     Pe@@@@@ \srn     Pe@@@@@ \srn     Pe@@@@@ \srn     Pe@@@@@ \srn     Pe@@@@@ \srn     Pe@@@@@ \srn     Pe@@@@@ f̘V'v{koJ~ @@@@HY ///u+92_&~xE@@@@641fΜTU&@@@@E@՟װe.pհ|+     ajq>upM2Y    䊀Y4p5kV,G]/su&>a/q=>#    "}-y \‚–yE@@@@rQ 1 eWjj^@@@@@lEװkpcA #    ,C`вٳgGR_ b     k>XMv^5ط@\@5{@@@@@`#}KkP     ! +YAHkp"|F@@@@( T:9s5kQ;d9     S=     N uݪ®    laC |G'R _"     p-@@@@@ŷcM@@@@@@uܹY@@@@@azS\5{@@@@@`}&N^*l@@@@@`C\ \W3     nw    i pM%v?bzjժ~i=%K… rV~n!    p]gfΜi +UX/tMS^wCXnpyI'oTN:նvr~{{뢋.|tD@@@HM55Rqٷ~k \/UV}M0ƏoӧOy@ /֩<`s̱vّGY.\e@@@@ f袭^&MBVoQUVٰa쫯Y5Yfvƿ+o d˗/}'jηmɶ~)lٺ5{o}yڵkG   i pM c߿͚5˭XbEl?p \W\i=jպ:uFmd~-]Ժtbm۶MQ7p]v-^6xG&6B }~[o*v@@@@ \3t=ҝwZnmϷ)*pUuܻ?30:Rm6vea2.bWE@@@r.@ `SN|nUa}=e˖m}oU?g+T`M4֭6h"_lʔ)n.M;ZӦMO5kZÆ ]UnժUi?>54l6l{QJ*V~}iB' V6oܾ;WUk&z 4k&?M[ĉU5V[me첋U 4vieҢE 1=ڝoF W[OSjܺ믋4K;Ν&mSյΡkcyha] 9u.Vl>C'-OlZ_j(T?[G~e˖{i-p?cP&w}y@Nש\o U\V_wm7Xi_qnj1mS\    Y5p/߶ƍ9_o~WxCu'jlXU*,zMj)X;w~+\{MAmb'pBڅ񅅼QX*`_a_tEme6bĈ|.\L{T,qQG{L.=؂?^zi|ҾO}1Uhr*Qu)ݻ]k\Uκ [YN 'LxHJ]Mts5U'^?ZOv}   '@%$jS!zՌ: BU}]@KUkZVCA<6J:7YT+y&G!'PUjTl| :]GuC(02d 36mjݺu/:^SSEPzw~>YMC8W "1\}Yjg)t:G@@@ p-[{}UMJFzzSL#pcH&? W^3ӯ "s1~QWkP՜bPǥX__~nGU՘TŬ:QVxj>p9\\WӪ`4YU $}o_}[nqQWUbCl,MIT{Yg!^kP>XԘ]v:k:SUB*h֘j@va<_qz ""1T.Phq˔`Pxl@@@@ \zD \UUQ|x W_}=v* \*rb[oɂJ*YRXJpi= a4FhK.zLz]__b0G%~{ɂ5Tpu?Zy_xz\0% \U*NU6<šVh+jv3]`r( ݯ  8k:S_iX A>5,zdQOw^￿if   (@%W%JJjzD]-X#ׯإ\5Ϋ&z=*SGö.W uls*Y0UEoX \ؿ ~LUo{1UZjOv=O%p\,Iٳ]X駟! ; \?TT^J\x`Q3k`ՑNaB@~i.LqڞfWVF w?uxa) }7$g YtZh,&kS '+@uꯦkժU+Ӱ:w \b)?͛?S% \&ᯇָm۶-    p5(:OUx [UM `*UZ=*?}z2UdP}N6}VEBQd>}!qrPt*z#sUvTU?mҥI6ʂ '+}@@@@@ drxG'oV׫M6K/˛kyb/   @yW]l ]5A؀J۶mm]vƍ~>-[4l^ylͱkcƌqϒgĈֽ{wO>}E]dom&[:uBe |wvI'{gϞkآ/9;\:p   'A] fWn=Phӭw6rH׷]v /+j5p믮*WC$ʗ,X~vQu.   @n l.g&C .ywW|ֵkפw_ez)|U{glwOڿ h=~KɆyu@@@J_`\ū3c1c'|wm>xYgUW]._ܦN_~h/hZU긋3 `ФO[mUkʕn76hKSϫW?dq+W\mF_v4{lW=۴iӴK>,]ks篵:Vͼő>Ɯk~<^xۈ]V1g86.q`-^kKb#4l;3c1nGSa n;7*xUB*Ul%nx Pkh &Xnܲ}ݷ@xboܲ:ʮj{mȐ!6qDZbEkѢ~*h BwK9ϙkm*ogb ^@IDAT*3o<5zgڧsClK%wWG_v藺#fZeo|󣀳&y֪EE;VR!VSkbblT=vݱtde۴Nq?k on#Ze}ʦZy6)UlP'WقǬ l\#v޶u=Js ? n\Ɏ\а77#   @Q/e^ tT&ꫯܱ(<=3 W0*|'p7۷Ν;۔)SקzT`!vG?>=֭{g{̙x7|6kQ^{-l㎳iӦ٨QgUVM?q_|}-U(5]tq:-Zvygl}q`}-v륗^;-a瞳7޸@9npˣ/>Ǐ7UfϜ9~:tWå&V5YW; ,}EK./UcW8*֩CL,Y/\+egF {@@@6$ T{Mc[o5UB[VUG*SUg}f\էǀU%ҥK[n%ZQq2g~xkdUe4]b5hԩ|`Cu_رcsW*Q}Vwm7dd ><>_'Ӂ?bxϟ7x oowu[M UcǺZ!UQ݃ҽITύ5I&W]5MhkYn5b^[mJב_Hr[U[ocUf `WEmfܣwdޫiKn_w}O,mE[3"vÿ\Jg5k;/߂kNN*6J؏oօ7j-Y?(@@@6Ua/2UmmvrgVZ"_?S;S]͛JZ*vڹ^A1c i7l.s1\ڨIjc> pc<{pzL_X M_5u6mڴqɉcR@+lڴiأQpdm[mVS\Q{7],p~vI'ū5C݃qa=6x`k ){G^v^bigBJ{1ZXzY+5[@m]*EVٻׁ׍Ͼn-j]B rll~zZv~붡U{;m*>guyk9hXZ|q0p՗:{T a7V+sEv @@@Uy*Wz7ZcH+`c剏{'@z<}a]Zo \UastLɆϣsݿ6j VŪvUU5內ۍZ7Vȍ]3GbdDQyRxUXi͏=c *]}É *jx`  t솵YcqS~e&]R^0pCuUcZc Zdmo+ m>xE@@@ulຎ >#SG6UN5}b1c TI;'vJo-RI-SkpZr+x*l *YSq\4Vb5m}pevKu7U6_?‚YqlX'_{U]W-j3b&k^)_ {@@@6d,?K u֬Y,l+uPŧ&R[5YS:4& l \z^o~]U?0<4ê ZyjoÆ s곆^(Zo7]Bɓ'u5qZ^W`C+_N_c2U#YMe+|~E|+bBMTXKcթǪT kKbg͍ _֖Pj% \">V]B&*츴,U%UݳQQf9   @Nz{& n'{(JA@@@ u \2 4(&Pq1M)P}7ܡ*4SgN*ʹ(_YNUԐ*\[׿_Zy \:,7LIihT*|A7+vmg7pC|t˗//0WpE/:w\T'ƞ}s:6CEV%{%;K \]u24eM|ҹzԺi>,qV)V[f Ɛ}$pe6yZvccHJL@@@(@jjhWE-3H#8½0`)tU;B30/U`+okpr;`1x>[zG۸qi92t s G~j|3 à z7DptV˖-Zj> { 4LDqڂVŪ?ٷ[VϨj3qerTc26JkҨ5kR!'W؈wlQюٿڮ{ wZdqup VwuukT?1+kP   O 'W ƨaT誙'NO4/&nJg`sα޽{Wy \5p$QQ&*oBdU8+$_zMG[p=ăw}Zh|JV~/~7w}&Ċ奈jJ%Vgl՞W} {sZSwsϭn״pQ5SukbKW:1]PZdžNH*F@@@ DરU֬Y37#`U(I[]k~qX~i/."w9|p#jsu>H-J(V1bumO>}MkL]U%} )X*Ur% \5BJz>`>޺t>蠃LȾ-Z(>.&zw^g̘ZUܤI K,q5l& k}uZ4oQO%8s=gEZ^.[kgW֬g 6 U=n^fKc+Sާ[=v zx&ݏbwja#W٣/caФ]?6oF/@@@(@\&ݩ<')Hҟ`;sMkY5ٳgO;o Hնۍǩ> GMkf Wk oM7ueb`5j}~"p ARŋEMD&Ϗ?|nѕW^ig}vX7e]n&Z5N]w/8paLt-;餓[oK5pMvp2d,l=WU+]۵kg,TUSLqxyU&>7߸P5fZD^ W-?c\W0c LfmJCAgy&6QV]g5]vuW5rO?}%X=yw{~:fVfDic=n\jsc㴊YUmˊ뭪q\/u-8/8}~ ,]cV->*V _Jv ),jϭbczsnly\obAiWmXEXeIUcZOMuMe0?pMu7!p @@@ Uϟ??.Z5*VJƵT_=QSN9vqGʕ+믻@JG'6tIf͚.m߾xhر_Uv*K &;|)8lӦqw {h+l]wZYY^Lcܪ)DUPg}foM4-jXUon~4h(Uت`_Ou**pUU*pjlU=:(ܺuk lvp/ܽJMA[o害"W5__hh-N:_ hB-ޔMI FqgW *+[6^lb,U~?iMf5snܷvta4,i+[*bͳYm&䧥 cC(Tgl寿il߻Ɗ%6iX ƒaNV -j֙<d76m*YX| _`i {I,Dmua4kP   O ۂo,|Mك;~,Sǯۣ4U *KԺ To6UUr!SKՆ֯_xE^'<.WVBdUNjdMHΧj:7UO+hN4aW U-ih[ڵuIBq šƾ4hzPD \S_drWۼy ;7 Wsآan~(VduUkWnnTW3)6DBmfldMc^~zkͺU} \=   %Hbh43qOK/WabةͽMN;)EtUUo 4ɰ|?`̏uW^zi@/SQ!hUjZT9 /UVjX'N ֯U{9EۓvUW+,pؽ {q.X z깰ZAhqL4&\Sf=mWC!JD_wܹnɽT凞^oɿٱMJWJɲ{wWȯV٬k]լ_V'H*ٿdի Irj<_Yi VlVSZo[n|py6eݫZX%oZObj vfC*Y'6D>#   r{6}FqP(,M!&xo{d8$P(8g jEM_ZWdzV[*)}^`&æM\|˭:>l  _(8Hh|(1\1z4քQM4_U _Uj2(IpMKJz[š֟`RФXIQ$=cj4MU֍    P>pf4JWQe=f5X٪Z~W}9\˗/VZ1B'[pǞywVz\_m!@nQ   d@NGTkpRTO8k߾}*7K41UUTת4FmVZϘ;mlڴi?7xFaM6 . &E7˗ۄ luїbin&Ol p馛R:򴟏>z-//}k W^pk-bQ;蠃eU}=zp;v=ӖgW]uծ]DgPVE͝w~Kcfml66mo^c*ʥu'pU7߄*[je;v-2_f]w~ߡC;c#kdHZ%M>5s-$݁kyϋ߉|NQlM7^zoJg4]V, \U<֯_?SVHva)l N>,M.@ܦT4=(+ :>xtsu6ܭ[,8p{$w%McqCZe2d;ZUj5UleC+$UjJ=5Ý;wvUpQg~&M䮑*6רRׯ<7Mänٲe_dk7$'o/n[S~lϋR)'\X^ZF(;o9i,٦e"$H-Q*i$lE![ 0֊M Q#%b"Jg_s?>9ܟu߿u=|9_zՁ8~K_R*i4Ŷzh鿳SGNC O}Sᢋ. 믿~pw +䔚lIXSwLvjZ4~ ^P[0O8pM7M\6]+KO>:WUa7xƸ߰ [K,QC /~k_Z{ȸ(+dt|{+_J~PCgBž}0PZrc %ys¶n;cDF)G?p%m&^$^N0EMRj'&>.|'uYu0k^,T7xc'ꡋ/XJW|qS;6i6%\wgmi%vJ-Ϳ|p:ơEl8=(pQlPG@6C |3 /Io"j'IX}߮ể:(lV~?0:+oĬpmpm{fhrBg&ݞb] Q:J~fޡvLq5.FVys :0kj&ͦoy[O{p nN"6gπLJE}@as}DmrU ѯ_|q]7[o]/n;4N:r-kݓ>G#w뺡]P7v7$ҥP].Ը5lCWKO~zohHt o~u`k,$vaRV# >WAwԗQ>xAɻ!mwA.@Y.`;Oª mR޳`.c\~~Ibz|U}vCA~6#}=K皮 |Epٕ+µ\Tyϻ/O~IeXZβpկ*ދ[Ek;WՊ޺!㮋[6g{? =Ϫ|O[{UFn͵+.X~S.sMmVxȖkM)/^"+Fw\T ^R)f(slk]UxNOq&Ppm}F.HE}@ƖD'/#T؉}$}+[bSFOH^{]gA_>ɏlLqר!tơ!:ê<@y&+xOc` u,;r.rm'gOByc[ۍ:ڮal#'\_l~s+$ 鰥1oYiy9ڎS[G}훾F]?6=}oG=~vt:4Nb0 t7]~OoW ^t-ut>`D){!;S16>7͓* i/?.tDx{[wzPzֳ@=O|yا?鵁+gfp%c9$j'%SN Z5S6j+8i1?¾鉳8CL0~)HOI77nL0 ) c6^g}v#]WȲ?DkYe SIL-yM3?\wqz8A">)[Lїy^,`?PI# 8`G"C|i+kP/KNw}'Ƨh sNy}cG_`_qRDc=&=/ɨg} tXhK=XƸc9&Sx6яRA7R$O 1tY`C(V$%y+_YO,~CtiݐL#}}E[5֭%m˖7t0OX;Uk%oXv->NxN%b*_U7b|}[>3rv]+ﺁH׿p^u2kC`o0gvHu0;;DT/+=Od[ى}䗿ڎgG'@$Ye0_<)c6$:E!}#[™qsܔaa1}| ٰqy;)O]+9~% t[If}̓}>0X{~kߐJ/| '\_l_Cqc_06yŖbl\a,C?Ѷk;V^7g1E4}> o*c.Psh>eE]Ţ`&}دm~΁&'ILS4.t@_A i_]mIi;}uyOpǾ% 6M ))A 'HJB`\A@A`lqN;<&Aizm̴qe RA.iBr!*yGQiNf_X)3N) L{O;(#/C 8VfH:2&8(vE-!*:& wu$/F$V|G Ipف`2m6 JqW߆H$& -8`YG#W_]#g*ZCNj}VhKpl 0^C}wC/|#5dKҾ07ex^65a׾3ߗH\&=PWU3Ēp@zaK8F*ꉈEt @|u:D>S m~DWN72̨.:C~JdgX!賓N:vĘǸ@Zp(/t2 "1H/}$Bm/&'ys4^PALh UoUdG>u!¤ :ƴsk;ΑMcܐ~#gF`A{M#҅DЯнμPQ7DLBQNG]Ejb<±^x}WWWQGp+.U$S5dy8쥕gT;j<֥!zMO^"awvIyY}wyϗW%_^r1JK*Rv귭6_+l!]E~z[>pK]qIض"XoW}ޫW AL%^+Ѯ<v|dS)s1݄]Jz]IB3ی='٤ HD&v"1rH;qH6ʅ @_1} 0@VA?02IG-+.3un`DCD)q;)O~ÆCh}G{`BS7xń+bO/B=i P;D("1q\_ll.`.m9-%۞t?M['Fvmq^iSDjvKuNuŮ .[?c]F?{_>2 ]EWE]W[~'jқO [ 9 RpE2.gd\g}]˫pzFT(㏯Y ":,  cs88=Qt (7r9"h:4 njF"LTD2*sF;LtN?F9j]dt.&op@-A@łLw 5+g^ +~\DíȇCh)͠ "@"HڶYN8H=(oNT!ԉ$E)Zˉ!m"0 cdT$n]zs u84xG| #n6e5J:g|ei;~Qx[v%lX-O6=nZR>;O Th,D;7[VqY x'WE[ 1ᚦ[5OnWc8pΎ/peғ(X4>1: e4m1\\r!LXBޱ'l٥^N'E'Xd+wN' 7Ddh~ds,37'XtPЬdz>7򍽈]I2(ס WH,VD;dĞV&bO'K}{,=ԖH~ӛT~|V65Ʀ+cbc873vYM},nؘSl𮄫ߴ+~;a|1>ƅg76ْCl.oʧ_ȗLs*2.Da|2|ӟgrb󨣎g:!`X3 A!"6/(("␔ldePGzrQe%b@Ϟ{Y+W_+ 88(LT(dc,1ԑ!ޟ~n#\vT+B܋3Hަq'rRo8.Do"Rg %k5%aH&Мa5* S׸j,uxGBTrl8UN bB60}@4eJS׿5;p9G^:B0nq>AbU5N/hlqm gT\MLr=Bq fc27T_unM;r$ 1>1s^\~N I& 7Cl-~]X1n 6Cz%'ys4^*9W&sbi2cC sP\JXƸF3QDDƢ|%\\ ]c*}ݻ*5^o8o5po W{;+[Hz]VEREBG:䶨Xsi{>S}ߧn _^ÉGWjk\IbR:#tR"T4>V}!GԐimo퉘+ىCrL~Ola d"]NMmMNt(>FWҟLb3pa)<(ɔ?ԖL[łKWh ERV-M ώP[vG3 %_jyeĖVQg fQ~r3>~<$-8dqy;:w: Wv (kj ѸЧ!:|F,՟4-uèd@MaY"߇Ab5W 9H@" xFҶ WlQ'DVoҌ3 ,E[2rxhp `+԰ͥ~7vJ=j_yQ=~`3xԀC$EI=ѱrܛ0rh'D(ݹH@IDATE|Eݨ_^NL=jqw[}ѿB@#Fsp ˘XŨ$NU.^x\%o8tHW}V7JA-EJߨXoSR/1kɋSuIGpyWmtKN納MNTz"%QU gzBJX(=)oLHg!'$~L`j4$DB"CtĭQyW_sS~՞ϯxkUvXzg4|KU+ ՁXSgA{CEո{B>ÛXMJ}㗄5- zK<6[/鈴LhKUҟy{mPƯlCD!%'Juhb56Q'-QꋤVMmKi4A<'Pdv<4lm?NpVyze[L3iSyyUll0>$& MM: YqVi"2͟E;; ~8̆!GW~g֐=~0rzצ< XmOisX.6Jb*'_2sߕ z {x.IKƈD(gݟ{W;ʬ!I+!Ɍ$qRQa^;lqkdL^qT7 .AĐ}(gjy`L2w\H89\J2W?>Gq ꅨV0+}Ed|UR Qȉ;~Cװ7!F%#Ҩ8=E Q6^49Q}I^mMr7ߴ9Mu ?EJ}Lѥv3&-W+W?xK*o$=(gj鍌>QLh{HxS|᪈dt􌞕Btf,,B?HįCE[ݐ~?K+%=یDLis.]$G}x̜O];V5m1U3!X)Y|"8GbH}-9T~ YSVPqgK13\IlW;M|fJf.е<%g"YAy& b)-S+M16Mh`.9}7vB"\!3Ψ %\+᪉ 07?BCmǽ@r'G`);I60J♔=A Q9$>D*"9^%_}x^Yk4n#ćꋶ MWZ8&^~.'$6 .(fKIi/Ȁ>DK(.*q%,Jc~L4Me.͵kj.[>Y9*%:EN|-?Yզ4Y>KÆ[/㮓'n:h3Ձ[} WEBp;𨒝8Op6[%9R{IGc4%GIJ>D80{FOVh1=h\"\+Qچ_PO |g:C2oq(vmPsE;l\Zwӹ-P]7&\grDY@B4aZu^M|fj/C&'mO2ӟIǒhEzIKc-!(88 G~5 ~8]t!\qdNfh:4?mJߤ#F1?uB:A$L>DFOr}74M#{~M \WgѮ8c~1.c.Sf&s~8W0GW Q>\V7M:&\gJDR4>6bg;&)r9>"Q,KKr CbSEb| mSrFde̪IͪDB0q!])•۴o9))urA[9pQ<%qG%`A$@"жm+#s3cDnO{|VT܉RF ~E\\ ȐW`z}1i;^UN  ,[\

ȶع/=[r@ᎃ/KSɑ \##tx&|pXUVl]VsE@,%ș+pl ]|gn;'9`mY8Csz]It@eV`_H?T.z.&ՏR)9C6^49Qe)&]>s (Tʉ' KXƸ!R?n~.-a&tMS?o#YK`Ƌ»^(p-unxH5@*7ie-+=zzdbj}sa{/oyj"QT;ZJlbK)\[˯HV1Җ|:4t`#WћgJv>9.uh~d õIGc(R.r+7%)2_ %|/VcVG1(IC7[k[=l-% a݈]Ve%YƯMxh^c XK{$8Mf:C2We]mߚZOw^40KEFȽo%P]˟pz+idG4! cr/&\E:qn}8Ja HLa@aO"c@=餓D ʍ 5Ƚa˩DGj3xJ뮻ևwQAZxʒ!kKm+F{`$m>" (!F0%"F(R~ts+CCuI99J#\iO%Tdn*^xa!igP(0dgp}BA &FNY=rF ǚ(,t-9ʗ^iiI_%"]/WN'Dd[qE;3Y{$&\ );&l -WD2 mx>3hO$ޓ"oˌ'+mٮvLوy#Qs(30iE4*&Bmc{qBZD%0uCx͔i/d` co9sΩInV`"}L8䍈r7{JX80ߴ9M~ct"P]Zj7q ]S*?]Ud{͒CxCUo9c=\_jT} jUDZ7uexCwXE[ת֪>"R~]3ѯNwX*rm((zv{-xÊ}4>eV}3-DRw&re{wo?.~=Sg~HJfGµIGc~ ']AUҟo6אX]mK<$ 소'ae!NlU74ӳqhV[=,}m)#3x6"Hl3ebWMxj!NvaIf:C2';> ]ä2+į HhW6syBX it]ɖΆRC,YYyޥfLrQ`ӟ;OQ;܇rP‰>VtA&q )-_|fo I'rX,Ci2 Wn.%o| w(|=]3וd\DN<3d#?ڇH1%V{D}{2Pbz8Ҭ$$uL}bdeϒ+6O3^iW/=%{d/F{ 38Zw ҄%A^{mC.AR•z>S"Yh@Ҁ\i3.uӗp%KLM@ "J.c̪;X\>wOD "xO%G!Km$}Nx!C8GƤ;mA=hx ?I4=3+Q ǣ6gBf.믟8d |sG]Zj7$8T.uk7՗vZׯ vոVozzKjGM(ثY~_^mwu#O9UOEqE׭z`iFroO~nX)UluWٕ+15d_n>_iKw>XlP^V>/:VWP&;qH':$?Um:bH9g,C01 XhdtlE2dkS;%~0ALv+~ ѿ{-E 7$JS+iV}B[9kIlQl.oʧ_pj" nen&D` 7@DZliUDJEɡ:iW3DfzhSy>d&^HH92&CN ʭ(~ʯ0'X(IJDR<a.# .m﹧MpޙSi L;b ,J Rhb:S6۬ޮC[N lq@؀I@6з}d)47J^ BzfEڱ]DD. 9GL׽cJ' Odq%Aвa~-Z]؞[ (?lu =>V6ql3#eO =o~-[yB椯/&'}NxDB0~іt%y XفОIy 146gpy7>WڍҞI]g^ϫ"@!]MV ]_xa Mei5=J*"k/ 5G- Oڡѯ؃K*:L>Jתmvb>9N•vv>%c+0I\qu[mUN}2`;vMµ(k/XF_1M8sp[\+QJ0[v:"m2[kQtYџ۵a 1!2݄+@ȯ}W`+HdKZg}uy)~!`uY3`1FfPn"DL  s=J+)K;3!~ bPnU( yKypG")NiߴSԙ*6K;OPgt}}Ή )ٞ\h_L\Kd`׾XQ}pڹ/TmoUnzˤ̔ L!D"+=@C܏őˆ)t0~qQuiř5*juu(]3׷"\qeW &pV9XWm_WE|kjيZc%Xb>T욧Oc`31N|Gc Qwq}W?]Oh_wt}[=`tK-7{v'ܵ0ʥ3wCJ]wDbz`&; _e69[r:9S|:촆#`u8v@p]@wQDrJsx^ yYXg, r*:Xβkwi1AJ%#00:ky3F` `uT3b:#R7;fY U4d z jO}=i{:KM 0Kw: L$d jC[s6 2#(nI_#` &\LU8#FeLqތ@l[pLw?.z?qn3Po9s}:!_Y~lo8蠃èƛn&\ǃS5F` CV.0F[:o7 ġY\馛w߽>t `GpG#0{PuY>nr'#`XpX p#v[p ϕ8ȑP5% Vcί0F#`0F#`0ssj1#`0F#`0F#`&\[9F#`0F#`0FYL٪qƌ0F#`0F#`opo5#`0F#`0F#0g0:g3F#`0F#`0F`!`u՘k0F#`0F#`E뜭g#`0F#`0F Vcί0F#`0F#`0ssj1#`0F#`0F#`&\[9F#`0F#`0FYL٪qƌ0F#`0F#`opo5#`0F#`0F#0g0:g3F#`0F#`0F`!`u՘k"?k&mQxp-;NwSp_p 7^;wX3].wKXofPzk~W?gXxc:u0Ϝ-|Xڅ\SK?]wp׻ufdf7tSo6pÑp:կ~Ud !7 ە+Wַ;կ~H W\qEqӟiX"g?>ry/G_ ~UWՓE7_wtb_"z;Y#~~zkhtoxf)/~τOӰ馛c(?N9:c=6l$7/NE^ z=wBFl¡:q8ƥ雡~l~?G?:<Ϟ/Cr|9rF`p?Sp77 5Q{?SX(~; guV x5À<,Z(uQku*7o#%mv¡tb=q譡uн^9ϜQ*Д": ]xsD7g%uE)Qh&\˭m,_G,ozӛ/| }{ߑs/覹|e?_Ga'=ivȇ7́rpvnk'CH}Q:Qmkچi^s" ku"aNh2!otb=q譡u@p7O(Ϝf9 W/})~ OuT<|:ӳl.]&uĸ깩.Lk&\g-[_l_8ҼU o,lG?.䒰6ۄk)/(k^:Bz= |#;稭bo 묳NXdItpM"\B2؛nK7oӉ|"\Au: /,{'?ys¶nWdgvz@!~Q0#ΊQd.ӁG_ ?=uu6nx~ZK+qihٵ ْ_ggpi=1z.8鴍l#`uk`6LcD2 /FlI/ KN̆q2%&\@ |#\ Pz:T-8 Fz#y\mQ2mA 4sHsp-ggp-Ֆ7 P˗/_W'G~_a.pW믿!yHNя~TR׿5\xm]}=q=LNrE]8[N&8{.i xD}\P?~6Rw݀)OyS& ["]Iݖl/Zu7d>q{\n/Y?\yuLJ>ut^YOe]'7#v0oOi}|L V"]a$5Ns" 7|i{߫'?y"2?y,|6 zԣv\~Xk&6'?q^a?f鹴Sv\wwutӁuҡsp\NSPe]V?>=ދO!9ٔrS >;vEaY>6L;E/4K.uuO`FҺo+; 8LsB8(AzP} m!,9ݨ#} tv<;ţ{t'j;a朐}Ø~"IMfBc.eANG׶eIW8q=N?q<$ic:w/}6S iwMB5co~2u"]svۙx}@/?׉DcNt6;#:>$K`Jp2./!t6vBn:궯#{=<1ux۴L|V*WrM,-c0Ggs~dSn98|8OOTj|Cj<4Ac 0>8'>ߺՇP_nL@,3G]?=PL9NO}z% 7F-՞'k)Fz=Os9g`0}ݳxOݗ^o;,yJ.AH9gwV]ӵ MA oO?}8"ݙ/ztx]T Cb]k ױ`G0i{Z۟u__ۙ/s=&$%E(M^y1>U{~k_۵~IH.զq 90lخӘLtaqV{ֳ~{}JG5Fvm^o󏟌Y>ͤL%h |F;DxW&9o +v[lQgsj/ ދ?{=%?Wili*꿐?>x^ YQ64p<00@(BZ 0coO8sȌ63w8k*F$:i#8C ^XHHrAJ+_a4 ap@L R䓈"C9q@ɒE>PeV{!3 m0!~y??O@Ϧ,[,4ƈbl  } ;5IND0BIvc XDBdeP%}$%䔠k^MDjBtb~ǹ/c•S'ꈺǩē%Hn["Q,-WE#1&=z=\<ȸ}^|1:hNMu%•k]#7eC6e17c?A(agѣFaR,^V'V׷?ۙDM]FG76=H菴Z&Г[I񓸏}Uc;lRdh6K:S3Il7I<&0N"dxc b=WʋmuQ5f~i2 pHίg4 hXGXEG{o+)KпE;| {?uy}B& _2N_vAy&m6G[`oDzDjbcPoe<^Si!b<7S>0: < 89I'T|3Y/oBMf819R( b&a\ITIAD2ȡ<a ;HCdȄXaș῭* *&l! _Mz& Y{ʊRʖ{H$̔#Druh^Hqᚫ7 9K}3&)r#ceBRf1lbcI]h>[E:)~ DSf"pc78+FIA"D܃I# |0q`'y].o)BAIJ$g& p1L%Dƒ!F0P'~OW,^H.B5^x4%r$mrJ3/~':~L'm W눸]{];ATodxIoA00YAW,m׾c8g!C>c\PSO=zI,an"u]T.A`!IF8( '`D#lb)Fpͧ?1F?bt&eC$7XeѴ2(#vH, 4M2?PY+z6&qHWHFVA6l]'&aL `bեZ5yڭl-iPH9sF iJ1NN*?'~.r pc! {!@$•qr{&{fMiz ^$oFM_[?lp@|`$L yeFS,,ŨE% aD}CBAlu);D/T$gĔH@gi'҉ CATQ{,=~:3퇠N4e1Xa:eL01BD2P$uD$ŸݧL0b3c: }QL&P %S{2X"!49":R[ +!iSޏӁt@r473Lw&<4"mt HK {m4崓&&k)Af*-Pt%5 2!B$%Vp=828PE'Ɠ^oA#^QlgO *%?.V%軐fcLT`(cFI~J(Hr'3v'cбKh_Gm}VO Եl1|LʂG1&işVk^hqP]Nxv+%u FYb}I'̇9ć.L8u!`u꼤pJ]2||1GbX1x:i))1=9HęAb;^VJ{ [  %!J,%|:"Ji05z%/1kJW@BN Q9(&\c֞Qi`Nm'aY"i맚8TG?pmN qODUyޣv*\w);R`QO{@D7GH9ĤC c~Ep, x%H" 'PGPF8K74~1Xwi}eL}.ƾD~9)-M,5=3uy탋k3ig8DF+Iqצ2t%Bm) }UQL2QAyn.I5tH҂ dRh*MkþiljrzcӲ3:? @hki:]pi`˸ڇ"z4Zݓ|D}˶OvZҤ9U[{į* D cAב6veS !{o1dȽgy=m-} K& '8-u<{[{[>M60ωmO O[biWxOK{aƅhû.Gپ _~k<jqAOxD~&+R2UZz: >p\yI=NՎF+IS A?$ڑ \D)bHr5nAnQ׾c8m`˸G!" FD*-0KgًCx99&\c33SjKrc\]C}99>FaNDymBTGiަs$D܇1,@J["Esύ+!8DKHu.a465\C 4cd QYCpلfy>ʧ8U;6'VYmm?ۄ@I6ZڬXa뮫&\Ƀ+ ]jH{TkE^bRtJ~5Y~okﲿn3'J-D21yьB?'`j?QiJ.= 了$j#ڶ0ɕ!xJ!<)M.LB]7)s EcfGCѫowJDpi24ȵtɴFdA7bi0L1J^HkM"\L[RĘ+os.OVLBPBL@!> vKO63)@@,Hh"/rLH>d,ˊBvײ<` -$07³s$`Lt#!R!2xPGBCNi|nDeg\p3L C:~L']C}Ig:U9#_9W0dvާ/צK$Đ>}ݷ>}cbDـ0/D&4)&%ڰڐM6qm XIQNCp߄L8/>pЄSFdX[*w!y۹ɧ pe:}׫>_IX49wsp O9v-AȞC7+Y:~I%\5QڣgWJy8=7.6(zelDnKZ%<p:djsoF^,k>&\gPmѬQӬ\ EzqzfmJW2Ji2DB0EY\(Hl>we)9UJ;~%/&:*5&\EćhJ ӥP~2kI3ÃSc I FP.*lmBۥ_Ȁ*]i]}z.'bpts$`ܿKn\cW2D:@3^ uZȾ4ǘb/tdCǏĺK{/K}NeU}@-y/?C4홬0D_(B 2Meh#HDB;{t=V^Xb!E rQJX_I=͈ ]Zƒ>L?L*]KMJa465\C z;C1r:t & f}gE&&7tzQdHvn)(8 8x5OWm u0WDo8 Lމ΂DmCU ᢦ>m/ÓJ<3Gүgx;pş&tyJt5> oV~|p|{`o$C_۹&!\C}3ׅ Yç q**$pBxFBII%} W-O,)M$NCpmgg梏J2kʒ@9dIEoJ8u|JNU >pmk'm0Jߔ 6'ACrPBSDpvc"3&r^fR.m{O?&أ|bt]10(]ҏ s-9xT {7Mҵ\/ǃ-D~E4/NȌ!~{AgCh{r pRbGtԿʃ0*4tN>z#\Eڀ}~V)ds 7DhSO2u}c83_>d1@81~?mx c17A_!yy&WmגU͌e"J}U=`IIc'ǕvW,{FX>5ʘUhM+ܫm)mr~@ɯ>Gks52G9(5F#N%/\k82?qs~c"eL'!nKED\T(x!7V!C,yi2$ɪȧt9= Rx&QT̎d({ٟ*as9'ыrE E1>DZ!At{HC33+6:erøp%,ew"u/8s u~h^µ ~Wʣ6Fq!+@NᘩMvi5Ǡ,BN;Èk0qDh?HLti#ӆ? CH?>" + Qd!Mڣ>^DI-ҵJGSD[ 7 鋜׿Q!O"6gO 'ѐD)¶_LsHpK}::tN>r6Wdҏzl#hWBT¡u@ZK \=ߘLa²N =tAz  q}'=ICeA5# 9)NCa!L`p9 'sl&SxLVCFz}s8˴qtZ @3ޅ.׆}q?gsQ!V"oG:Ȟ{9^S{Cp6>tG4KG͡r,l"2$A ^(KϤ1v }D;^Yt"WK&I{]w ylZ Q8v19 ;P#{r0˞S9gާp%J}m6\HjĄ+﮿C }v8O~rbEUE*CTC俫oF?F2-LLEuLpmq^A,Ui2$ɪnJ.}rX(>V\C b}0X1PDâx!qp>B:<_6:#  X(Zs- [ff(<A"|p= Mm5+meZAt!\1Fi DYǢe|<m 2F M^1X ^ #@j9e'Ln>:}NM*ޣ{+u ALm-AoVhtЦ&VRds!1Faq?mJчևp%!c8!mL3C6mǘI_D,D$z@'Ɋj,m*gj;+-.bDE„`:q%KŗN\lV" 28ֿZ"\DW@>aH7A1Q:&yU -W'[X@Dͩ4u\gsޒOo%i pI[]]0A` K82??CBEP?aچw[].v4_r2 C|塋of zہ&lIV2uXOd~p:lR8s3dpaYO.zA}t Pf8cDdŸ ʏIa` >b~oS\à 2#$l20PJtM#J !{H@0`%|pU}}MJI@ls>mHk1.hc n=gqFMાIɈ\{ǨeobRЄ%.8qFT&u C*-i{qD8TYlKm0sE9H,SvM,ӦhH@٢d.{v`Ooȕ / \akAĕ@˥w}sF_y&Wï[_"cDYJ}dOsddB1 ME:&564zӮhG!,DA&J{juM}V=GOP'l^lld1hSz;$)}) v m(׸k!'Y* _Ytmxե6-uP<X WI m`t. ;Do^ `u^TSLe<13B tX;fl1g a iRdJt0<(yR8] "q-tm'3u,P9 Yоp0EW(B'z@v%oi`FDn+Q4]Џw]8D_[J"2ə2V:CNsUn-X>%M9Tڴ7}&[.})>맫 MF?G:O :tCCjs 7H`"(7d7 Ccx񙼨fy>]芒ϐ=:]ym\y ;mѿK1&g#쟡p\g ؟~>CeOώ W/퍼RsM2>&wf֯_GG)@K(4ʟ2N]r9ue!C8lh44)}ܝYw0!r pkG dY7EabhPylet ,HRuAB15p#ľو.M.Rt6bgn|8 t X ̱;re_/ :S N'XTZ9N3`2{p< TG aQAqS"Zy̏rM:Ow"Z9}w(e"+B080b*&\j8_C0ZF;YҌ f|888,gY˽H+ D0G•%hʞP8:Ge~ >Zʘ9w.SVf?Wa59?!h<蠃C{y"71;tneL(({p3^qr}_!y ׹Z3LNF;d`<Q`?W*B =j<ޙA޽l#g)ؕ6N4+4AA#7/(*;V,-?špN#`0F#`0F ׅV.0F#`0F#`0cCؠuF#`0F#`0F,4L.wy0F#`0F#`&\6F#`0F#`0F`!`uոk0F#`0F#`0:6h0F#`0F#`0  ]^#`0F#`0F#`Ɔ ױA넍0F#`0F#`Xhp]h5#`0F#`0F#06L Z'l0F#`0F#`BCBq#`0F#`0F!`ul:a#`0F#`0F#`&\ZF#`0F#`0F c #`0F#`0F#0j5F#`0F#`0F`lpN#`0F#`0F ׅV.0F#`0F#`0cCH+T'l0F#`0F#`XڹgfKȄki0F#`0F#`("`µ0F#`0F#`0FCk?|0F#`0F#`0F "4#`0F#`0F#F#`0F#`0F"&\#`0F#`0F#`@?LW#`0F#`0F#`p-B0F#`0F#`00/_m0F#`0F#`("`µ0F#`0F#`0FCk?|0F#`0F#`0F "4#`0F#`0F#F#`0F#`0F"&\#`0F#`0F#`@?LW#`0F#`0F#`p-B0F#`0F#`00/_m0F#`0F#`("`µ0F#`0F#`0FCk?|0F#`0F#`0F "4#`0F#`0F#F#`0F#`0F"&\#`0F#`0F#`@?LW#`0F#`0F#`p-BxVnYtEab0F#`0F#00:]~aB>Ḿ:,CˮZvnI)kw~ͷ ?يpMd3p#`0F#`03 ˮ\>e߭tɖ wd$`ְC O|ni8e- ǿl5 #`0F#`0;+wv!Y[Ւ{uqxnᇗ/ieظyw4:k_2S:S"_pX+|u/F#`0F#`03 <[p;o7ܸ2E \4Ӧp niD:2z_g˥ﻺN{SUU^6}F.#\|] a=N,SVϾ4(!~fmEKr!{b?'+y^uǭùWt8ޑn5q2v3'Dv\3!D}ټ%|#]#P~>N^?hd}yyIn KĽ˩om o6?mX=D۰ŪMN"n3;t|݈@]'g'po" " " " " " " "P\낱DxaG"E6[w&jQ~se3wk [Mk McVwmJy =wjLm LΰOD3kTh-bۿn/\}Z6Y:=ۈDͦ}^򵱉n.boLFYe-]{yszؾaapEX"moGSnQlb-a<=ak&"aT72+zz4*XMķW$mN/VD~+9"{ZtW-m>qꈰ=9ɦGGxYi_~sr?XL5?m.O cMM۵w/HE1-U~EEDQaRu3]\ܑL .<Ȧq &tkͦXm#]p?نybdyľQa +&"j6]ywzJM&&&}0|k˓3귭M/b3ߌHVԉ:6_=i/W"Gl/^/G}ѷoy\˙ <}U͏. GydgɎh~.?le2&}eςX"fZ0sy"Xeet\\dZylH"# lmoķ/0 XOUnR 1!͙˧mjooAgzfd NO\O7;MwXzZdEDdJt]OV&VkLJYr}J =L. ,5  1ntu;^" " " " " " " "P/\Etx&!ig GW#~6iھ`bobщ3Po)aDLdXWlR?6(22/]aﳗg]hxiם{,ZmM@&Wbh;Mdv֟uW%dXqc{BSsSDwaN(W',2/le ^D(ɇl>ܓyce" " " " " " " "0\BAfowU߶yP9k/[1ѕMϴyX;iX +'b^m/y䩒ռyN{}mw\ήpEdߙ 6zs M$>צ#aM 3߼덅$_Պ^@:d :M8]Z;{X]#f?.~;l*e4}ێF!>~Ҧ?xM6djs{{Źry->@h/bA2Y`ETb=D˴}^P έ]ǔ]pKvcf1Kx9MKxI}@ >2@,G4m?92WܟRw ԉY~ScTcܦpQme" " " " " " " "\A4_]ܣ =2)r(|Og?:w\{`c]W綇v{щ]WN$ q'pH[8  d}^Gx.ۦ (g{G0ަa`.ЍmP _.#Y2G7Hk-+dj%ԏYo#=|43~IMC&J=yWx}aUS;:r.^uQnl7`?be-nM=b't4$R9?pJ[cbsEZ/z͠fq\YLcϛPO5}ɽ$" " " " " " " "PG\ڤ˕wO0q]S[#WCo1 d/_bK_w"fgk8оQDLeID޻-TH^ž0^ı.}^䑳gӿKȺS-,9k&5~wުod"G9.D[p]j/cs S MHgbĈm}O?YMa=8Ns|+,+32,)&0b)s}"fbetݔ +-J5pM l%a^ߦ7dynS1ARD@D@D@D@D@D@D@DN$ d-y_LK o oޡ%5aZkyK-J !^+r"f-Zw:vl͛qZ {4tQr7iS"LGV. ϙSD0ĶhϏ}W/Vhre̍z>-aQ/e.&\kj+LF)mk8"[9v$s1&MhJf]C!6ji̶Z_.(oN=-|'+J?;xfrzѹ{ۭ'" " " " " " " u& @5,r9fy\^rOfJR&=>/49SlDtD`iA1]p=ݢw`pXiޤʝ-hֵMl7:L@T,ѪR7+l=#K4Ll'YpszZi?҂`.XGdoNBdl*5Z2XHp]JDՄ` $[ZD: "yiSNuKx+ՑձT'X  າ#=HW-^2ͻM ]hgB|C#qG@k?$Z "\9&^usGKX{?`_&" " " " " " " E@`qD Fm_f'6zguպ8K/ \)" " " " " " " " "0, HpŪ \)" " " " " " " " "0, HpŪ \)" " " " " " " " "0, HpŪ \)" " " " " " " " "0, HpŪ \)" " " " " " " " "0, HpŪ \)" " " " " " " " "0, HpŪ \)" " " " " " " " "0, HpŪ \)" " " " " " " " "0, HpŪ \)" " " " " " " " "0, HpŪ \)" " " " " " " " "0, HpŪ kPdHFIp+RP:Tu\aG@+RP:Tu\aG@+RP:Tu\aG@+RP:Tu\aG@+RP:Tu\aG@+RP:Tu\aG@+RP:Tu\aG@+RP:Tu\aG@+RP:Tu\aG@+RP:Tu\h  {BOwF656`JZD@D@D@D@D@D@D@DH@k|Y`Ax饗¢Ešk&MYg68Q-Q8-5g[NRD@D@D@D@D@D@D@A*'|2\~ϴ3&|aƌ%ZEj\FD@D@D@D@D@D@D@D.$cDnpUxl뇏aȑ9[4~^z@D~3iAuZwJPD@D@D@D@D@D@D@*" "LoDDOSLiL/_}yc@IDATbŊӧSO={ w}wr#F~$HpZo~3̟??٥9xa=,&t6̞=`jݸcIpm[," " " " " " " Hp-Egx$Փc=)?DF9W\:;;DW_][#6n-aaܸqKvu0yx¬Y¼yoy[KnI$SO=U|S"lϴ=I4/'LgO~8<ɲM6$.l #SE['<1w7-cڲK{¾u&=x}yk䵛֛?,]am2lqKs=I% 5Wwyo,&O|"l/qCX'?|gՕ+W&wypi%-Z([O?W%B_ܿ¾ ^mo{[hjj guVM|n_~8pl*8 z衁9`>$?fJv- &Ep=餓Ds}MK}0l_ۑYۍa3zl^|־d[6L mmt}c#{-6Uxy+\ySW12&E6Z9=w[ ]lq&wk<&k=+-aLMԅ׺`N'?I`W|;UV/&Zk^}UNy#8b^ ?яk)#N(n Ņ9_Ǝ[6ԧ>6pìUe3`dbe˖%D>:"T8;SX`4D^|tYGŦ 6 tAa5wyg;إhmQ2/[yb"h>Y_^]T q}{ 7+ΰh"O{;\wG~S&7j ݦ>xwR!Jqj*eƇ_;M$5.&Ǝx+dQnaie;j{c>5jT^1Z`џq1N7 g 6RU:DPOo}R` bWNA0zT9~D2+X~}nG1juGb߽%5bf{҂d#QѦ74w>+ؾVwZ?#,]1`,\c._Jh]F@km*K_RqSWR~F ӟ]wULjwL^HV[֠ʋ~$uu-o~󛀠?>|_MW%9agϞ,\_I:JlM7 GOX$;wXӓP51tm2N9cN-ؘ 'sotYV]]=1x|<*[p=ަЦk; Ѹ /Kvm -5g[L>΄^ Hp8~9s$y4ny+j\c{^2U@vkkk6mZ>}z,zEkWLo}-0A9g?Y`Y,KpgHG3r6}@hݷo3wWYFy;HWxq_,#\vH[n<,tjV;(Una# 5LLK4kʕ}^pcX+"^pa֬Ygoy8SW\?'m|e+ғK"St L0_)/ZY̘}!"t/`"Y'^_:zd? ^gMb\ۦ!( {^EdjS8Btlt̯\3h4"W\Q<駟ro\gFF#ŋC=蠃‘G_EDG>v|%V CE}׋S|6+ /SO=*{}k@tᴔz~{{nocZ`Alԩӟt}W5]j #{z΍PZL--&D-ҸpJ lϤp]I-{554#Ú% Dp0BFZ0{O}fRR A" " " " " " " "Pw\뎴o}W\x>⪧~:0 ?)y`O^R/ũ\pETE,D]r!Oߵ^.oI*:p*TŖ.]jq[lϟnD?iM0zTSxٮ slb+S`L7VޗW57 &7Mp}'X o2U&i><+\us:Ǝ|W$RxaU,6%Bo~Y)4 ==<ְz 9 > (?a…%(ziDU7̯}k}UO@EbA7M`ZTe;YfXO {w"3@kS q;pWg 5϶ظ9ail< zolo M]iMcem|*Ŋ2\p}eQOȢj[tm1~,MЧ . ěH֋.(}z`[aֿaɒ^O{oLgKtvzq|a(W="Co.>z möDд-}'p7:if^moޡ%rVX4umU1vCu6۱&/4•;,?wu6O֝heiSlfѻIpi  Ǻx+W&ƍ Ǐ7F_d}W71K/5X#F JyevҤIŗj%X &W6ѷt&\B+JR__&Nh󲬬y%=)TXYI.#?lىR(:w{<\$" " " " " " " " "0 Hp<\$" " " " " " " " "0 Hp<\$" " " " " " " " "0 Hp<\$" " " " " " " " "0 Hp<\$" " " " " " " " "0 Hp<\$" " " " " " " " "0 Hp<\$" " " " " " " " "0 Hp<\$" " " " " " " " "0 Hp<\$" " " " " " " " "0 Hp<\$" " " " " " " " "0 Hp<\$" " " " " " " " "0 Hp<\$" " " " " " " " "0 Hp<\$" " " " " " " " "0 Hp<\$" " " " " " " " "0 Hp<\$" " " " " " " " "0 Hp<\$" " " " " " " " "0 Hp|jXxq kv JXdI1bDXgu˜1c|} &7n\hkkZQqGGGRrw[);FJզnOε>XaKp-7y'q!ɸrZK&~رcÔ)SjJ獼6\%ՔſO:^Mжod\-[ M819rs{(ODд!z" Ẁ^HD5X+Vn-Wna=H~>3{ 8Oq|YŃao[r̷-au7`\sMx饗V[mOވCIsܹOr)0 [g7 8~^[_r$[ ɾ͈fodwy]qvmvaєk+N6_ /br-îZQ'm?z[onѧrC v|u櫼'?o n(<7{ox1G}:+{ƌaԩH鍷k->rS3fATD{:%wѸk9Y_tE`P;~f%yw'x"ַ_Z7xcx&LHT"7x/$ڕA'*_ ^ uy~I^xaRwk0mڴ9pG[O? nTb8~i6lSɮ6(ZRmPkT=ep4{pg_o@s8܄a1aux#0l;/-)wuW76p7s3|Hpܲz?2S .Ip~xv]_ݗJpX Ip{1N#G̙x!ZkFe>bK(ؖ(7<}@cKO>,gPGβH1{RxiNx$Ux<#Sv3X:6+/i 1pz\[D"! Q9~Ĕ|IU1\^Y+ǤI/?.N-uxAz՘祒zpeuA.dž7Y9 #z5U_y\ا\Ku1EI䑲_O'9׏|\m'3Xd..@Ȅzq8y1Dt=OVuA%r}NԦşB8WA{JMeׄ'Jyp|zo3eB6]t攅 \eڗRǥ&d]^?DR`~"_o٨zRJp\n8/m-gJB~'egen'~ʆ  kk9pWk+{¬'Â!,[{L'ݢ9xzƒjeDe˔P-_,ki'kroWr:m;szKtm7o [N9a;5r֚Ӎ׍4Ǟ/^}'yz}ӯ+׼m\ |Oӯ_Gڷ~?Z\k\q}GU7W~QkO3:_i3t?ox*2ʥ?o6(녆fJ<+_\SQUĂ+>p +1ou-u,mސX$|Vf>s_a,?@9P{kx~2s{qty> +}l`D'ȣnY\|_-vI'%HNGmѨ %Bmc11&̅f&7kg mbbڼhG}X_msQKkv|ͱ 3r ?\Z8cӥ#2e|'pu6w}wqbߟk?}67pCy1``?ʖU78 Shs(8tƠ;Hve:~"Fw8^E/:C \YN}HS!1x:lF,y3+גX8\3 F>^?}~u9@pwe̛ӊ7\sᴓ=7RJpet$mls%ZߟS6Y`v=0Sf\ LHkS;mdHuJu)#C|F^So|tE&3iWێ qFq]@HEfǯJاcƟ\R?%ˏ2F<?3[h G[u<ھ9 ~ş6q2=b=.dS|fh=Жϱ%~ߤx;+#'8-I?XYK-uѕrcR>ipMsYbnŷ>9-sN?&o.c=vu8Rxt_6r\-Qs{x&ކeh>>Vc}-PV2 ,_~ydҸ);R6jt8t\th8 thPC#@G₡ O TG4:B7 tYPSPL'v!` yN7+„@B A c@) ehÉ胸ŀ q >)7($ )9DGMD}N󄳌C9rzBq> erVKkڴi~9 ӱsb:X1bi"hw-؈8F\ 8q+y@Axus8+d"Y(O\' Lܪ\ 7nI`A mΛN OQn ;7@' x&KZpܹ kΑf#玃l 8y#qta ]t >䝺 ;"mr)ovB ia|La~,/',&R-ܒ7Hu l0͍r Xqk ެ׏t8ᛶ5ع?]OssO8nRC曓hh7#۴ԅe7=/Czs򉿈/qܪ} /p-qUR=O|}}/w\Ζ1#Fk)J}6KeO -Sh{_xvpۖ~|< \׻zDdVx&>_~3_Z 1Fwk( Ok FqU: t_悘378 Vn8 n6C1<3N b+B]w5yu0@;SjD=K{%VpJDZ;}[)~448<p( 2cRշwGi'$JGpg;\Q]`[Ɇ9jw9SG?nqxLowݹS.\=6S^8SI% 8XVG9jma|a3'DxE!}jWߧT6q;ywAzOSkIb9%tYU#rMp #Fpy=O}>P_C?<nR8eYD5q3,gymc,",X1[ !y@}Lf%ٞ('42Zk; _~(6O,#Љ-X ~{dbBFlsBMZmҟDpWWaFAa_&HbDĂ޼C o+z_WcG$i_uLm G<|i=(o?bD2݁ʳ'r0yb9ʛ#{O4R.|‚X4sVBmaU븠8dYVa-q6Hԕt;Ukm@oTKH>FZxi?qOm{$h<C %m(ϺQu^^gm'Ouͣv0q<.*)"z_0% ϕ%٩y IZ'}B7I)\8O|Pc)dq_ZzWsc6ιxyz]w%~pKj򎷺.:%EMeÉN& ;K:-! D[ Ed4Zt4v <捽fY@F遾o0ca0foXwO>( }=WoPӡOop\IυQ>?Uj;w6$ ̪DRgq.*4 ۀb;GܕMsA$,cZ jtuEXs=7 vr|}ӏgڷ*f=k_yиϓ9Be|uN?߁7c,$]0!=n="hWS=aUcZ[*)+=:ql/VƲ?!rP?KR>*7?ƙa_,SZx}\Y<gz9߹T'x8YKr eku^&uJƛA)) $?>N3Sukm(9>("E^|yQRq$_혾,O5'eBVk)qw8#7Bt8gޠρz 4o_t~gݍFp%D=bjXY"F[KN!{!wx*_2Xt1 nd":N}A c@erKs\2- NZu-u /c-T;Qq FT+_^]QeD؟՞ {쁭a)u 5Bpan~aU(8x$٠Ŀrv o.zvKMs}@Z9o x~Íq)XB۟Xi1Pby^f.^?%8ϓkoIZ%-g&bJR.zg%v{?Lジ/GU;@:qOcz Ǚ ޑV˵^w.5Bp5T/uˊ ΟAL, \h񲬬ݞd E9Tdg10YRoFpyzQkW/l+5x>/bނ+r'#笚!-mVK<琎GO}g0Ag9r\ǰscvWsI㴘;ZJŔHzS~+G3EyS93\i6(+"x #G/i1/U^gĀbO"xch,]G-zp=O$c). JFw9  ,Fp&8bZo*}U΋ylL^Ƹ _WXm;(үx:/}yJ7>s 'ap{36U}w0)isVo=ܬv\3w/D.ξ0M\M;h%]+VkFI&SPނkg6~ҍ3륏-g4ޏ־oHX%emj{s+ I<=;n,2fb=7r\oC} .db?~?ޅ-ޒ~>ܵOEa%ٰ..:xׁq|Wʛ:傸?͒/LlOQj>~3uyVzG^|Rm{yyg=Mu6}/Bt3"]y\D'|X$(x;x8qV~0W*Ҙ5PJqwTagTUޠ0ޯ; ,8Z]9گt'с)(["uwrQ<8Gc"} Vd});Sz gЈ+sg"nKY#Q|3g,x _XZif9(κvBQ%E1>;x׸E9\IwG)GN9YʍW4.ojjmz0nG=HymxI(׬9Z+Ǽ~s*iKEVB^K X6PIo_%!̙{T5^FuDM5PU*Z. t1, {EG;'T#/+{ RZ/<6 -ols1N*FD7{[H?j5oUHsߠ$ q_q`lCݫ$ >/Ai&=b4s%xү֧v^I^O5fW'DŽW@IDATJOo)놧(sm?Zzջ\,i L̯X}]->lV\X2.p gH?%tܩh8E]|^ta^CQyKbY~ I7bYQR pX4ɛm(KCXqtqr*s;#wo\N-w 牍 z8•m@.\;J^}**.cW^ 9\c'7=os+lD=8nQxB??RE=p@J=B[8 c sS8&G+k~l8&9Z~Tf ~q띺uQH| iMTX=oP"R{;vۮ05M6]6+/:2!j-=[0jޣ >kU-~ vuuױhUYmV5 ~>2<ߕunl8W@rarW^6ρm vǛ\ߌuy |yJ&+ТQS~a9d}w#|t|T3Dyz˵ïJ} 1yӟ%Oߍ\#f79w7 c5_ϧẆ(qYQt.^-yGxL-ؔsWoghZ\7Snyvr fά,qǷOo{' cӖr3 =LĂ+uXj\o $.o+U}ρm ߳q og w&ѷq9f.ܼsʺ!4\{K>)Rn?L~[%ym+ko6x3+Zq!`?q4b,˗#: KY=@rȊp-5)uyS@R\Ipm`0bĩA9088'Rš_tp {Fg3s0@ NZ.TLɛ['8F4%#+ icB (lPMdtfrȸEA!4 G QP4D,%m:Uw(cw#0Hms aQd9e0@LS@ R5N3=OZ/?,y*ކ8pѡQjwj0ӂ 283gLPSO߰h ~X<[v Tp% wu$JRvfy+\Kmg}b9y;̹aBsP9ND6"?>cu%+}cr &jROq-DypǓWo3[)Voo_Q@g"Eh 10Ҧ0?u7aoRh/[q0WF^swi0/SK;BcZSk/Ň㦺G .tj??m:zms/z޲Gk~^%_Uiiz-X.3O]gBADD&*,|aAON[Wd/:lF+/HaÐkn /t"jWo :2 YCE=5kVR8 Y/? } yd|~kׅ-oUpH}K)0?smo7Pta_'^F=Iyq6iQڟc} wkoI&.K&m0L׍v݀sEH۬&=тُO6@[,nhw'qT5:Yz7kc,egΗ1K'jaKwu['%JJƀ$ F#~aH 'gΜ}YuWm; QD πA*.=J~~Da2D5c8>΄ Q\9v,Po(GN"cie$2nq90 Ny" i`ieGtرQγB0eE4Z]99G-7X1D\^3.FYpayٟ4ęGw!/gw4"-\ٗ6Z% ǢsάkJ^%qU28Hys!$q&v'R\< e+q ji9Le7m!.Ñ`Kg0pf_9lgޖe 'y#2h& ٍΛp]p3tӃM7ɏyCYxY^Jʵ'O޹yu\k@/v?Dhs!ԑG=}h]hK#&ыs̨&{),x;,-/ S&9W{]p6 `hmd[ eZ.}Kkޝf?ksFD*L3f!9:k7wtVHTқ\wƎF aMʢyqʜ[t\kucBySv7e=Ƃ >ץ?:|C_z}ڷq]D,XX~e#r,m;3'ƃGQWQ_I_ o,KҾ]ok)cm ~kYPxY]z99:.73oɍ|k(}A(!ı"g@솓B#FO81bb `N' !}8ySqH #m:D@Lg]SBgy헕V9G}>xC!rl:-S{4hic7 輮B8<\v5,19'&-#PdWbֻrNuJ^-\n\P8)ŏN {9)#)%돨DR7h6GK x yN6-y:mґ,˲RBtq-lO+Ope=+ 3 ͱh)3&!P׽1X8}uYmXy#`LClK_ߍ\@ȵ'uv"m7q|?.}Z'ynqS~Y-~iRpމrb0?˺i~đ,ϳq0Was޴˫[x#WTm~گLG7 _>ɯsxi̠R˟\WXl>W};٣lkw[ JS(;ɂެ%eyAtΰ[֟DTjKxp]ɣ}+UNu[gg CtjAG0f]t\I_)s XNFKEXpE4Z:B[JWK\7Q^ۦҷ DpO;}J-78~)-rZ| #-~)c67rvUqAPztxBaeۍ\ɃGڗ{s1VV!P ߦZ%+zԻZrs)L\7ׇߨgY:e^CF2 \Z4|g(TI6EJn*٧6}!p_ ɮw9QܡF93O-I| n^zx8 N/}-Ώ]' vjҪd[In"<Z^ X/4 #d q{uZOʆ2q`4osw=mW޾P\ob}'8e{w%uzAQfK~[m@6x%y,CI{XߘwoV^FʬG_C[EUqq{կUN#kݯr㙬sŷDC` <5u.,Z 5#"Џwq.i0~Ђ(#,1+~iE2*~Z&" \+Oۈԟ@Z(ED5FN:E._ G&2җ_ҢYU;/޲ ( *6fx13D̿2?rƝ 4" (4&[w2y߮]{sTדUw囙wd Ҹ[(4NB~,la^o- N#l8<8Ouyb({ *m Ksµ#p ?p>9eBf󨏧B9G=xY,L$}u>jӶo&A /{^RIΞDJf֭V*ʾJJOlOy#8 G`| #0)Jׯ/ݖlu[82[t9My##;gR e>+{ ڨbAcDW8ۧ؃NG`ЋTOݸ_qF^i#[ǹnpu$~pGpGpGpGpv87pGpGpGpGpE8?8#8#8#8#8@;pm8#8#8#8#8"p]pGpGpGpGpGNrGpGpGpGpG`N.8#8#8#8#8#'\w9#8#8#8#8#'\AGpGpGpGpGhpGpGpGpGpGX #8#8#8#8#C v]#8#8#8#8#,B EGpGpGpGpGp!k;.GpGpGpGpGp!"H lڴ)LOO>㎃d7xv]v SSS.w'abbb[kbe{4vyf͚kWIaJ˩[l NQ=s9U8} &''îǝ~r@`4WTu='ju\Iz '\񒖀x{vin J8ꨣºu^|-9382DZW_}5zE.G>{ sssOt8vQum7k9\ŃQ /;S(ꫯ^q JƻIy~xM|vO p|ˤFmKw\Wµ7G5\5[XuW&D{|G`x8:L_Zԓ2wm%DܗFo|uצߔ=c +64=Hbڵ !p鉀JGsR!p_ɓ1dib集i azz9oE犢^6RD1!5MMG}x6^rXh.og~;O%> G}GQ\ xyi9Sd?ɛ3icX)uE>z)i^z8AQ_a:ish͚53ͦ%SAp#,>?O+늛Ϳ4g>8d<2/+uժUEg{xs= c0A"X!C`h3i<棰dRpc3E k_dxf1{xc^0$dl <4S=/Mx3 N6ՍelkӦ+rl|,ʷI9ٵ–u4yr&)-sa]'\=hUq膧 O=7y/v a=&QkKQs/͆W^ 3emz7)8fSφ߉/'=i2|eo Ͻ<ދ9a>)ez͆M\49|d| />ʗO n@O!sD. y7TO?"wct QNP]܋=| 'P~O6ch{Pg?2Rv|O2k8c,5e2~GYqd1]ԧ0Ik$7}}Yuר* pu!) f? 9O~SN98,2.EęVQ[xy믷.}m$eqD=iWꀃODd*uypO{CP,ȓWZ J7@iP8S89p]n]w/ &|9G:)+}m3I'vy̍U_E@0=4P8$ |+2'O^0PvbE!EfMk'{a?/~lc/&s3ӟޫ%i9ydN;x5v\ )Ds.QWƱ/Ȕs"wqGaXcH7ՍHތ4O!ӒW^x,_?2湈ǐ멬{[P?rcSrv1I/#tD]p)(66U;D2{.nk{n3MG㓾nӝ8+.l)-FDm=rWs馛1H~wP f 1HW֕8FzaMoE"{sIEC\S5>8|±^Wd#d5o>ԖN>43:2 zSa]Ֆ̋uMx̩Ϟʇ2/_eMgDOo-L? ?i:߹_Z]Ǻ{p @ _[?!(7XAW7 ׯl^zZ$|E|~?>fet]:{kFFGxg9ߍy*=3.Wk06D_5I{_wT;.U9[q&pc4FaW8:EߘL/ #eEg p0^`6iCk{Y HDJ`2LQ4 V"8P88J,0bar/)y$HٸqcQȄ*KS eBjx&I(](q?$ g](OyC!H1:"P!a%⨰IV{DY]w]qIJ-RtPqlJ[o->=qoJ^+ӗSb#\){k//Dg p|[>xXaxQjR]k?8A&c8ԃr!?ufCN+G-)nNq(Z]Ld~TЧ?hs,0{.W*C*'rv21"paʸ#02.`o|ck]T֥✈ ]ǼbNhX/I0a҇`,vKy F>7Q80EJRY]<Id2YD'qK2gQ9V }˟,ӝ|`,1pN(I~0fs%me|t*)s+Kh:a?Ќ/E +֦׺|obHa07 ZXi•9B,HlG0&Ejd݀=<. y@)%ɣl|(:•1|<0/ĖV{7Ά#19|U8,Fijsᱧfe.|wOLjӽcobgct?^&xt&3au/ѣ*lf"ʞV(׹GbDKsy ce\%|'&¾#v]$}#hz6|wTgmK9'El19Ggd.$BKW]٘$UHŖ! GT_ja7 ݯlr+(W? @ϣ#3h7ky62\ ;6iG7lP 2y O $ 66eʤ,J1|1ڊ?.~GU[Ё`OF1_ѵ|O}|)FɖC'1׉BGW JaU*?#bL:;ك#aH\cIK VP8bJL"tJJAG~JFSV8LjXd:%FנeK) Jmf! $UՓe@@bP |Q a\r¼8auo",q0j%klj.'0{iƢD]bЦ›*ul61L_`(lʘcN0>pRո5)J!wqЙ{%6yb"EyOM; %جN9l\hGYe*zG<%éS9cۣԏhtpT49Vk_ N݇:kk4[kN6ܲO c&Ere̐d2X"(7,C\478Fr9lsڀsTb2^RWV׶X+}ްqVR7 [-1-2+:_֧JcZ|i!.N9hma8;ƗABv7GV5=/6=AϱAW){ߩ.X[71txNWmE4LP'Nz.•R1|0l%M%S9o}%l߉p zv6pG\v?>6Q;D ; u珝wu[›1u^=<6<{?\fkD%F7l56U:M?? [_D3z{@$?=>nQo_<`~zNPt@8guyYt6/RBbdKb'tONh#[>eՏ&koX=>'(ꫯުKmeRul+"/oc2m-w\9"%~2,0"QxZI >4F3p R7rp-f39QFpR dص^[8(9(VPL()z+mD)) zPOljñ!%I)"t9/1":cVK%PF?̒gyD*J[' UV-Wi*s[gm0Q7pCA)+ u2fYL2PY|ʘİ[ʡ+ c8jyzD'!r?HP]wEM\u_P97o)cv%Es|^qtwޛ l+p~|-1Maӿ^%\8p\MӃ q"o o|?n}?>nvxgMzmܧ5<ֵ] L44a {S(ؕ X"'C6x^6}|x6ՏLqxR|y]fow[9,&r6]z#ڭT&CmtAdA(kt+ ]o|'|k"IeƴM,̓i0*['\cHI!8 qgV eDĒ2r7QKOFK6[g9 &V˜X 攀Y/eX~>#[0ȭ^~C✡sD={ 9gkD0ڱ(*R-D2PƖAb[c9CQuER L=QJDR4i5Юʦ 4K~ dh=mָm}J՜"\U_}21B$FӾ*$-0|iil?WG]i@b/ںKɥA*'X DG!9`ȍ{pZ}J8a-319^whS =T!N{߾(j~5]Ӽ><ލ/-Fp͍KΙ[ NK~窅ѫǖ1o&n^K$Vik]\Ol+p)R̉N=zNuLw<)1T?=!C1:·dq#7tB[DK$oF-7J+#cb1 ,%]1 ɖkQXk LI9ȘTu(kVdy:d czgeadl2T,G rl:9*y@*D2BE% HVәdLj*"D"TJ)댏6Ƌi[NwH6k72rǴbDZ4ҕ毱PP;ei=a<-sS}Լn\qWH+RYHdWԥ,?V'Qbeb:4_仈Zk#lechE]€2ir<ڶ>urmb,M Q \p&~K֤~}J]gYJU]SVFzq]]3#CV (ز,2$o y{lTf;U" 4L֖M?Id*^{͹ny:Vﯘ[S{ٸlo+di.C>l[q؅;/p֜1ؚfH;\&j\1sWʫSuW#W#AU|-r1_"\Q>l>,t`SW퇬25ƕ٧V1|+vjlBb9FPj wŹ*m U%Hr #qL&¾u2jNk>Wh+&dMU}]U&yAKVVۮmkY~޷ u%8%\6\{yJmy B* ƪrLnUnϗ_Lx/q__xݟOW]W|GC¬ O k<S?>&\5' q֯_e:k=1^U]>kmt*V6md 6 M re{&^ MmN i[Վ5IթsDB3 7~0MנvUY;<Nc7S&+iI0#N*3x 7 ϦtIH[#Q%* J1+kchQC*g0FxZ¡NM iFD2ނkp-C|;:>ЛAh{P鼜KV <0~qE>k 7eum;˜aգ-ڶ>urmâvb1ׄγC[ISurDr*աmai]TA Wi_U~3Jk6!K2ln.6 U97e+o2y_8`=aeGב9FU{ͅ1{wTkwr/Y1:+G ^z-/gBOg˶2^==91_l\8U&7V豧f0"Ǥa7"RNa`{rݰ W-aG"\ C+ xF{C2 aSNh#[o ^t{2][UǵkZDvڎ4&=cu 0Y4Mucy39FOXlpHՅ]UJpµO(JT1Ɋ@Z|Ve$ʁc£SGLx`,QsE[HR]=GF}!+v J F4<z#MRWXAl : 8yMVriVBߐګFd5i6@7SƸA!(*&(oqu9•`~Jz`Hhu8wygaEdI] +܋y甐xAh @vB9CU.}^(zX殜HSzC6>\8A.A2gI]8sԗq q|9ӹ"%8fI ~3rǻ1d5q60?ƈ 9ΖH|Y]9gDy9:G~7•{ԧNHp9DrO&&=ڈd#9V'G~W)>V^m+YdOyB-:qE$0 uN>BJG $sevJ GGID cd>㝧УvO/"_lXl]-Ck܇O$ڌXDm4L5-]T<6_ {#Icq&_zոn$u"{Īp'<'=̈́}G* z/LvD>/3x>yu8ۄUlpIsGZ싳ᦻ<;9OlN ޻WQ j_t`>KYsh1C@ES\F>r7kh1M[tBDՏ9֯__V9N[$d vRkg[9,l9W߁2Or+ݍ\f9cR1-sȴ8%U.Hǣ5/cdctIR:sQ_ap Gڒ&c.?)Jccº~+C$. Jr9F'bYVWo3IO\"\-[ cd, LCzŐJ9hfHq?~&u_9m 5Ѕ1l A.}Υ+ 92PYdeq?NRuo2$ccJ4J\˓P줽`wd(2GI[ k\<0)U7zxbv/ S'.)d&lL!EۅaJ$o!]y)֥Γs}3Ua&›fcŋ>0$ G$ns•u9.!ɓtW]V&Dn+zN؈3g2VY+c{ %WŸAR62c蜜Lcl*@]M~[?HLmTeodd3 lK3sk"2Y̘VGǑ@;&GOm5Ϲ6U IM!pfS" ѹ_8:~?лo2WE7S;$+$è2)ZqbsuggI"E2QX``2sI~V9UF"MDݔGQRLpJ8&IQReUxPH: @ǰ'uo*"u8'p%T~F<07"j~6_e,8dUB3RukW 8WT2X-II&u]YYN۫;*]fx#?àsʒ"i)7f?=D.q=Y%( F2&\)rY$csm| |a9koJ><][&q6 <@^Y!ҏ~Wk$\S+U+ !!pr%k0ح(.H0pR%O3MW27s>M%ld$+*!{p 569$OTpFfLr }E#-orkP[x΅eEcWǨЅrPY@hqtxiwO}Tψ;eu==h;z.~p'm /:9`U^dlbTo|a6F$q {*p64ɷ s8'1Y`ozj'E8GYQ4BbtWikOS!nom$t Ū2D.tzzU:A#[A#vX9K0 y[gogI]e녎 .`:}mXǏʥcRj2?SץwL%6ϼ$A0K`t O&t0(╧?X0@UF?`{ SgdO;>+>])nNp 0 ;V![ R.U q*Fi=ۖQHE0cXç(EXc̍[B83P0Nԇo_LR׭MW0żgjMqq8UAݽszj>2u[+uXwu>u6{yy<4C  MtP92"yoR+aêrUg#mI Mocs ,C+y#E5;;\p#e?U [{GulPݸK|/َ/$LVo=#]' µ:]~ g NӖ[(4kCX'Q trN>t\^`]Դ:AQ'[[25lFFq«ecw7aXY JYd,W|o&>>׃}ѕ\m>\屨ǗZc;=;# _Ǔfz3@ %\ou |.BwTAh#=yBhTFvGf/pGeeQ'p8#`/*9" "e4zG8McDڈQADd#{c6B ?؏%t<^>—ְ}Eq&~e/q:˶{^#k9?f~#`]}^Uuw ?78:urG` P] <!k?F"mKMk '֭[[ tGpZ"~GK%C % vG`#>lRVyi'G  eR?/\(ˏ;[ ѬU/Ǻ{GpqFq['\s1GpGpGpGpGpZ k GpGpGpGpGpr8Cŏ9#8#8#8#8#'\[8#8#8#8#8#C *~pGpGpGpGp84pGpGpGpGp_z@IDAT]yIH!Dޅ iNlcN[^++n).ɊVlKl'67E1.E B TnG߹s}>\sZsv=ͻS@ך*HHpUA:Z'FD@D@D@D@D@D@D@D@D@$ @HpHE#" " " " " " " " " \UD@D@D@D@D@D@D@D@D@DN$  *" " " " " " " " " "P'\RшW uhD@D@D@D@D@D@D@D@D@D@ʀԉ:T4" " " " " " " " " " Ue@D@D@D@D@D@D@D@D@D@D@k@*2 " " " " " " " " " u" N HpU:Z'FD@D@D@D@D@D@D@D@D@$ @HpHE#" " " " " " " " " \UD@D@D@D@D@D@D@D@D@DN$  *" " " " " " " " " "P'\RшW uhD@D@D@D@D@D@D@D@D@D@ʀԉ:T4" " " " " " " " " " Ue@D@D@D@D@D@D@D@D@D@D@k@*2 " " " " " " " " " u" N HpUh8eeU%ׯ_.]Zd̘1nԨ#-V>ZxIܰaÊK}YxgS3rH7~R׼oWs aj>uW ]MƎnsmmMp\ޭPS)Gw֔7|?(q#<ԗ~vmcu3g,uxEnwuW]+ _ݚ5kCg̘>O뮻ܓO>vygwꩧ-ܲ/q֭KN?ܧ?Q 8l\DD@D@D@D@D@D@D@D Hp Zƻr Glggqb;ՖCSym&g?{g+Fh^{eNo\IxdIN:m9SwZ-뷾Z{キK"CD@D@D@D@D@D@D@Zf3/;R&{–nn˽qpG( _IpmF Hk#FWq@]g3tLިnzooF)mܹ'|_q^@쏝<|_εxIkQmnI׌:܈Bo ZZGƏ]:/qu[g3{O̾.Mp]j[ǽקMR^,]|ҬYf~-ZmذmvwǏOu?{뭷m,%p)goFL/&sĉ!W&7q_=LqÇOαY/^sεӦM+ 5^{5bŊw_7y`v0/;vl3\?O{̽+K8vuW;?w}nM01vОw{o1>3rH裏&|W^2v;8+W'~ H?4ؔ$6o[p=dw~WWxaB_j`˹^{7x[;N/C:o~t?ɹ[hs;6O}nw};ݽuz9't)g)vk>&>v.} SoX[_ O&lw^?  ,H!~3q{Gq/DcuRwmppBs{|O?=Y10 gƌSܜ%kuY+j*<,DGy7_:uj;\OL}";(e]x_^}{łkߞDWzկZ6\K|衇/xHG(~w%:k_Z!\ouo$+uE\h``t4v\Oˋ# O>Ϲ}*۶phOTOыN&8ѥu'ƞt0ԋ;`vw%Ă+ۈw( ks'ږ,^fK S/$g'-W{kSǒ>;!e\c/SO=5>/_d$//4cI3{qJѣG;\h}sQ{^Q#ƍsgqF9/[nn)tk֬qK/T/W^t~ۿ[tvs'cm,+u '$ e%K/}?/Oe;V/\` \>E@D@D@D@D@D@D@6% @=ZWk;ʿ(+^FQuAgT%[~v冢{Lj} v^4+]>:m\/6\9Ӎ ce)k4ءn/V qI^4 p 9+u bGyrLbO..a[Fω=QY7[裏cJ oxL#?,U{nK%!Kpe:E;,YoR 1R֔K3m,"Ι3x.o.va_Wx<̒xZ ;WOMI@ ߿g zR׭t$EJ` џ\1 7A z d,#zM[8{{^$OY8'\m $O<דj.9d헟_`aRf^zS?jCq=X։eR!\yi/bڠOd?oS[4KݕW^Y<_r%K xjZrd3xu%M/zIn>UN{^WlYK,;RkֻWb=`-'緿65 Y^Lٍ9~&X{px:c }.VKX±x Uj\Zc)f׳>xkg̙3"h\7a&z_j`ي>Qv8Dinrbs }=ӔsFc_S|Wmt'k뷲d@%W `)냲a=CqS L'l*kVdWw>%4]D@D@D@D@D@D@DHpmP.Ω7PavwS=;]&3bi;tgϘޑx^}{_|;/M[z;^\=շ>y`9ͬV\uO7ٍ5˫/5Qӧ??$&CEp]h⽝r)0Hp i@3ڠ\U?o VS|ϯ^W\Z`$"y/JO(n r|-낅 鶛'//owz//J[õ)O:$Rah>-XBoܡ",kZ6mc90Hp i@3\]n}Sݣu@AvϾw̬^+ث/Pزngkvw>ٻ묾wŧsץ~邫o[8Z˷~uS'9v&빲6uwnpo.),0~s|FaɁVpEaC+yܸqرcXOnfeJ:e T??^`?ML@k3`[N.ڧ~ẽ}SI qv]IuvXqy–[9)pso5ʿ/ϿNM{iq>d{xe҉8|W-~qֈ#ܔ)Sb,L緰)W|ǭ_Q98q=z{7ڵk-gW z&Lp'3_HVOkv)M$1&$ Zn^k>*}!DHa |qQ.o9pw}m4/ޖW޶ }`xE/^z nW\G'vO|;{6Og}5z;<+O3f :DY{.w;L P:GJ׿֬Y|1c>|w;:,wqOXlYq֬Ynw7pC/ˉ.jYRߛoqY5$XRn;ps-.0|Z{'}Nѧl\7vW<^G#[+ K—e Xvm_UuK:9ֿd %K[lXǕi;0wEM`:xxiKDz%Qzw)K /5YbE"b~o&7S]D@D@D@D@D@D@D@A m&&e /ƒ/b+ ~.dTK?яGְ@,7*T}I>ϟz/V޶,3??Txd񷾈 uSP53<~%in.쒈d}kĿo^{bӧ'S_~墷suslOIМٝnNj) n"pwK=͚5V#ګwI>h7yXF5 ij9>oY*Թ?{'{lΜ9m}Cn *n+.Dp=ꨣN;TCu7=Tvl=@52Ys  } }O={7čߌ3ܴiӆ@*3HV|L%p7x#ه!wIcs&MJ=7^{w`%is=Pɡ-q믿x$guVU^h-q Ld5UW]{MvlvKM/y?-"8hEp3pᇻS&kWoU^F5 ij9>oY/%}vP+=X~ Ϭ\BP*5s/\"^r4oD`ox11>3g&B/rSekf+Z}$77x[fM25|j2嚋n{:_%pmf_t=XgYo{'O?_WoKa}7TeɈ[n%ASOORLZ><^rƍs'|C G+q1|("5:EpI\Ic۫"i 9C/;"ӏVHcnl4yB}Aل9`(CdSK.UVHpmEleV $6$>I'4d:':G9眺ujɨ%~5/ar$44jSX  "RN[\s5 AV*LkkC^X _N oY`(Cꑗ`e ͖C#=\TLk:l]p{衇gMcgK (!mC)+\ %;f7eʔT^Zlٲd:c7Q޻.DW^y%پ~9<y/TaIi<޹|g}N]v٥` xY m#C+ ÂuxGzI;Op!/_xy>pqLXi/uO㖮(nqnnljm޸ezݒw{ܻzlsǴ}vkw#<;g_q 8wĬB>VqϽVq=mn?fd+\wq۽}u;ݿHr]+[*(S53v?ڰ(.ԁ4$neW!1X>v%,Sl^x!iǙG[A}Қ- 3hףnnD&Նj|⮵I²beg<8djW;zFOy4ۈ{/KaRڈ{N7iwYŇO{Ø~{v0+TS?qe]96侱hfdrmE)%`y'enƤ76n3N}N~/Y;=n=ot{j6ToÌhyw2Ɵ3<{O65s^a/L/M_z-_nw3vm/SKzܺ nα|>՞ֲ]迏ۦM,}-\}=ކ0gc_?5㫩vZڬ^3F `P|6 QRoR1'05:2WDH ;4+4Js-)<F3K0w#D8~tAr랒Nwr%Z*)v0\888 aY;\@{?qZT8 )|g}FjW 4i x6z뭉(A~-oy`:ATC ޡZk)‵[ DPEM.NOHzsl~BVY.Vpn\hwkq-dc=q֯aFP֯DŽY77ەumvwap?ޞz͋qu6v|V{riaܩHc$o?!辰/}bxFZc{mhM>exǎgoƮǻan-í߭_GqfuΩ͊uy`1C}0 ka`4>:,wi $/Fb"qx++B|JWAūQA aqht/T@eekzR.$/l \I7#y^gExF2K-k;Y,UC;ڭxDjtsne~s!.+g`V =僲Eh/a>¼-mioo瘓7' xTaܫ޳tuAt9ڊQ z^~kἙ3u~-bű^3]zqhw{$z;{ok=J{Dy;xcm_z67s{/4ň6=՝'kk[ܥM޹xQxBz=}ދ/yB6o:~P_ ?l'}P>k#[)k2d!neW7V\Y&t)Ng5O[\wFBlaPhm%ٲf(Kkim_5vMLWcH;My_f~ype̱Y}yW{6m6" yRVq ;;'Kpix؎mAfC:'@<Ƴ>ߴQgf``n3¾ΰU s4񙽈V;禅P$Ʀ~z]Ccwh_Ie~=:'j?kE{}3s܃w<ؕxn#fuxۨݭ^/Kh  ž~6ҴmՋ^D]gY>Gg0j&xlڼiXE`?Yc {ΛVgJ?P/ƛ6 }=aϰ_HGqNus-ϵYqf?!`3i0@"Pq3'AEcj` 1d ԓ@:COpA)mfp[ { v<ٹXS倲aYFt(2) a0 \ 1<<:,ީZS̓R/Ͳ5c朋AB9$`ӥ˵I?@̛7/)x`Vk~0@!P3nB-c9C2NP-mK+(&ݏ]/zܽu%sUHiaw2:؂$\}o;|>cs~=dw_`u\ve=^-9N7-!?o? uOct{0 Bܟ/w/- 0Qg a`؏@[(5>#~Ώ?]}^ޭ[m#/^2C& svO.NbX`]>yh|} qbuyq} ^sGW2 i;3LX8 2 :/3z!n= VxnwGاpu%޴ؘawQyv^5Ac٦A(4~8 .h5ZL%1 EGiXK4(nhHe>Ѕ_i£ JW 0T0~75ܖ)b]lP1Y5\N<O/zo[1? __\>YcvbMp=/&{8 ^= B޲eNYM{e`q[`x݃=젽DಐUګZXKYUp-kD3lC1BB68M^$^qmgkh;̻}Ŧ$6Sa?*\26jCv=|Z>XqvEx h9`i9!;#c`$l`x} fFO)nQ Y sIhq3##CBdhƸ:,< CPM &xUSxצLQ_X"HB'3[DAtkh@VzϤW 4c ,i}(¦q|Zv ј` R]K[ÕqgFݘϔs4ddW K9&p xo Bvێ? KNr`!8D}b/W5k^~K{b\.Gn~I\M ޼+{9 N>XE؂ xrY;;,ǻv;r ˵xj8bxA5uNHؠ^<|˅e!2QԌ&ba\?f7@IDAT4R(+V9}fVK!")ޖi4Q*m󉳖 TMR.$ŇY5OjJ٨ ! ^ eu0rUn~fw1֮+-_y 8 p\u췕pOG {f"cV[aW{\Y,96Xbjyixc8eC[m!oflwaKL&HoO. {0e暈L"-`tiӜj)宗eD$yKg5T2?F>xPBWo┭=ϺLU%Χ=\c= `>>=Y/5Γ4E_A`,Fz/"=\m{ӿTE]elvV^ÄrXVeeW(+y۲FYi$ؼثDJmm>׬%oI*X^i5ojc׶WpI޲{c3rPWZXkTKg[5vb˶Zõ1MȾ+ϵYYkSks7 d!؋Oaf̀8m Y [cXP3΂$ŃgSQ,z|\ĪJbO< JOW.,IBS[kDmr5EcGp``bU%dI Μ93v@ʚUn@lž-wYk{)֑~3p|Բ6ނ+K2ƲbaJ;ɚfWp֗+Wp{oUa mF \g _\{%vr=ד,7P3Nww?8\m Rz\^56ef\lzpk4ncYg %6|Jk޶}fV^eɥp%`^̞s>/e`cnğysqqNx.O]7 ><YrV[:&3)yH{sZ0.6Hqj6*creen+YZIQEϜK*./.}{'O9M%;yRdSY]^OxoUB5k_^_헕=n_z]W{?؂+n-y,ҘUgcR8ns \ faO^)K:p U<6yD0zGO,rb[w4VxL n:t )-H'ż̭\{Gd e5K1{R(DŽxPJ^ Q_HG>P.98ǿk8 {c6l=#,Scq\®Lk{d%QɛZlA0lv"}; .`}|96dF yԣj-І>ǶA QrbN)7v7a섑T?L8<~ة&g嬶\'Mp%.G^97-,D`\GEF;8N*#ZZ:Vﲽn}Weg;tf_ /ܛlHt_f\ےfҝ-$xn3n# K7z{gR#Kpz9wxSO'9)o  m9SJ0vLghO>9 F1Wp%YVkNShN`=kܐx«71Al=N7q|_; +?X{yYu+"󦱖{`u9+e3҈D0"|@;hyN}Wm3oIzɴfbapBk?gWӾψXج69}B+qaRkY=j ysles!N!et]:P ;퓱'c/ۇt0@"w Ye9<\&Oq6&/wL g1>;쿬6.o5l?j.?6u3mX[ Mwc{w1='vK-n=8['S۬OBO߸k9aP]{ uGfxiuX"s<\\nusmVV&lSh/pzGk? b,Ck8 .''&ұ F ,*O,?OdZ0x`&`H"tiR0 Ҍ32KmLw! >ޛEIi¸`ЀwBWH.*( 4~7c0 Ũ@#I5q` Q~9\>Õ8B› i`:"aki;K'%~bi!iM[vXrN xXA٤N}!g-Ֆk^ p^*x\i1AD\]u.M w)+hy yO;S"rjrZ40N}nn%5߳ÿUݍ>d}d)NBE0{:}f!FE_u_njmw'x:޺K T"rzƺc'AA}^X WK'uK0 s3LVA?̓Z2hWL JkmY=̬4Zajv+v)}4_M'޼y&18*gqU^M+3OQI#j-Pnyω}j6۱ȣ1K5u\T`l):qf<*ڊjSJp'K "3K{rr?`c4B>c,g9SkaFmDPfe ,p~f>>܇+l8Dd(`M/$t@iBkFB-ש8Ri 6 J\4a=UM;.FGm7n`Ǖ7}YyrR)'ˠ.'pEt t&rGڊjU[`݋]:B^PCմ̷5K[ϔ8Se[_#W":w_>`,ۦwQmX ck3ih L1Bc7u4ZAf0&f0}+X[YֲFym.}y[MlƟVVJmig8 4(6NN/9FZSJm=3cb3}>=>tc}[ވoͭ/))Wy)/(x}2N?Ө~yqc]wY>͛S9U03́%Xb+S6c-$\=ԋk`["_Lqf0=f"KakX^)<[!xڼ9U" "2Pl뗞DVegmGao0ӔonA_3Xge"kbCm!Zu[Hp` _N`*4k{ڥLCٳu6VHcX6>Vf:_D@6\i ټx{xL5KfZ{$V~)" %^ /E,!2'O.qvzyċѕa[@|EBi/cAX+ͭϬjHph  Yo)<*yYKXHw c/WOdX+v ^2X/[!OڱKv&" " " " QdfG@faF(WD@D@D@D@D@D@D@D@D`# urݰ@HpmY+" " " " " " " " "enXD@D@D@D@D@D@D@D@DQ$6Hp\7," " " " " " " " "(\EVlv$nvYh "xE@D@D@D@D@D@D@D@D@6;\7, 4FU" " " " " " " " "  ]E@D@D@D@D@D@D@D@D@E@k*ކu^r 6uww˗>uttI&-ܲ8Z`oÆ n- yuuu#G&v\vƎCFƍMcC5.#~[vtlM,K`ŊnժUxIռ-vC);&7;VJ1=f{L5j>|xoeP[z[~}-}'̱G]47KY oFUH[OR("PrjܿrJӓrs+`[o%Z"W\D},L+wu>`Q;.FQjRu]nɒ%nvstPE^f[n]cQpĈGy7 vء!:̘1ň,]y֏U=|J[tҳ{YfU|ŋݽޛE,ifx`VYx'܂ ܄ ܉'X+**h,‡zȽ 7shPʎɪjٲeIVfUӟ՞n&ݗ^zi"uQnv>r!"Ν+O9䐊{ݓO>p֘3gN:YʒQ핑(|B{{oc%"$6823gtOEWo.ˠƶU믿x$guVޖ*oLnsvmƌNI=lUNы-JtzB\?<)gv{YUv;/+J[|Jtd ͔J󸬲5@4x$j^`)S4ruQvC);&M7ݔ̬VåEn QV{^omJ{I88\Kګ\Zjy/@B""H\I iLY?3+22q /SW/)8&|}5 (tw'0#@TR.\xp 'vRھFZWUmA{Zfo(~dO={v?O,*k{ke],ȽSH^ɓ'O.Ye!k^4^F]w]rGq:_?wRvLVOKߦ؆=;$6@Z>n4,g;=L:7}q1Ǹwܑ` Rj`j*gSO=9T6gIc=vܖCR HpMRF<<&P/rKgQi=rk&Wk(5P)s=L@mШrROWfz k j*hփ3ziYUt\/+mY*=6Kpm4*igWCVY7:=_j!2xcIbkPʎɪe:hXof ݼUT{^Oto*D#>,q% *e jVhJBJ./{ǒ>i"Cg i}ɺޝ&d# ;c8+l6Yu;s;3e$X=ɪ +-`Rf~餾a2uXpe;ܨG|'x"&RikI]&ȽuCyg^{e'/"=,9* ^UIkfPnEHsrXp OK#혭9I{L e5i+m hVYeN]'oFqX:侩0%Xq.T])+'~J>8}Oh3hiǔ =I!Nڞx)597}2饜2Փjg;$ݤRf6m'l}Cofaﰮ&Geʕ$v^vC]);&[2Q Pȗ^q!,Թ.۱q\jװO⤝!M1k)[̮!js/gVX<0_K,t $}R6]eC^hI`J?6k& 9`BGRÀg18K 6Ow,MH\X44bOMD7בGo3ִRyey4YRkN>g`W V(A=;i@L^.mcs K.yi> OWg}}WcP%i/-a7vin~ꫯNȔG{P>cF?M9ai})OO@]ciFc?am=w-WW΋?~v'KpEaKqLiC=F˴K٣eD74+B<0Ex Iy8T92_Z;+ .xcNb:acvN,}m>J/}(F+'GZ<(,0p$d $݄Fq"WЀ`e* Y{xNQ1ܩ/kpG i/iPCa3lSxQw^;I{B\9ƴ]Q>S:>0~NzG_Im|x.WRH'1.G_MҜW)t#>u#y{~)+mKxWZxEE^~卸b{!"GȔ yRe>QlQY ?TI !^[$<\tV5< &g/OAcZki%J>yax~==kiwW6lE4 a:|'N[yG}vc)(G󔩸phKVژ~DpTm2 W^mC^M-g{efY u?ങxw=\/O`/ݶ:&c,|`wqvKؒi:I]%YS/" HpmpwFn˳#< bXό 7xcqz<%;h یgdž5hh ! a0/nTMpd@7 Y#bC Y2~^Ϗ#6#btx 6<:,C? 21,+ *'_tm3 *ΫJW/Os,@[0s( aE,` ʃ x2(x4iajx}#!1=f#ݤ?`/UN햎\3o;SQn׸#뜇Q0#}Jchܓc,%VFλd:,XYI{(ˎܿ:̌rei$r$ B{cq p6ذ^ x,e?$$ PN8iN]s{O;'Tj׮vUp3]AEeMF {ƔܹsG'| &\cu3)8|\Y ᚖ)ֵ1RB ? I)eu]r%r2z~ /k?wZ?2 |Чnơ)gI3t84Õ:B~y=[C@OՏ⡊uvC~SHw&*25e.ҭrº0Fo6͋hoHjٻMڤZ>->c;)ክ}>!/Ko;lm҈\fBQ*gCJ_F(D;oBZݪK־w,M:}TH_fm*S-T?xz`I}&p&M9G \?vKU,jױجi<-&"\\ F٠A&M0،=#phśAEq!$fJ x0h)K'spMI*KSpDقz: иꩧUYYgX?Ą'`p=j:`]t:U# .GBſ*a,]N\۷I(c7ƒI&SaKGaӯ`YF?HDrmy{ϓ<4MڡKJ_sʌN;aۥ!OCҞ&y~bz5'FРG7Ҷl}<>>.YWzG~ڮ]aԕcvuՈ }e咶~0ʤtlcԗ~m2}'׭. DlRef;}ώf-Kׄx# µ%`D̾1R:A?xkY1T!ZQz I9 P(#Ԗy?#\=&9'ihf@ʠ #H*2D{)Iio-}7[ e73b!xݖ)zo#Ij70˄zN=1#-q.ecu,k~O A8A<wOI=oZ^S*w=V^QKedLrFPp-:彜4ڠ='#pplU_Bϥ Գ?n'd8qO&ISh_MG ;6+H_}[*Ssԁ17o3Y @IM/,oڬ>DC@kKĈ4OHRB+F3&RfrYCz, +r bem&Ho{i%@xWbD" pn#\11lkFVtU•rg2fb3Ġˉ-O%e;'s22% 1 A&mʼаFBY,l@%9{eJ+|fyMTxf0dO gȗ*# Gg&:Wrx.~+7k129aۧalv3W;V&\mUm)RXNG҈pVE`4Η(g1 FJ%kLQ,}ܯúL#ys}ciLr >,M>e𬾥Up,gX{yD!\}~'w߮W+k<8Gjp햾Ԝ~0;u,~gV7^~_Yf)&"\\"Fy/ K{gz3@M*=gZfD|/wf)C6bg9 M 2oM{r^5Cf}#5Py:+lYrFioe{F6Knΐ2p>\]4^1ї&Tertk:{9W>V+Ӻ6b$&{NOu~Y1Y塝c3auJ?2``zA#^,/UgexVxl~2ՏwaenGUuzڮB|ی`5B< mVDbU>@;'-^ylNu<$\ImȜ5>4}M~'k/#cbka+-ƕ@IDATVpSLշv`Md8裋\WqPȄG6Fv*v:eI|><@H ^LL+ײ,K_<xi@]`<\}ˑlMYEX`,5!L3ՅKM`>g8CUypҿMKer{(ArAV^|]g9mlgR.i+3FFT$t +?&Ҹ' ;Nw镾NmN?A|]wx_=6 Nr{NlERVjSL4DvDrD)Bf/%tWle)q-$0% SY& -c9%Ì,# ~YUǟ2Dx 2LԊ9F=!.#\GUu+#^_ Iiϧu餁?H {eŘJxڦxswk 53;M1`TS3zR*w݇뿷RH\ڸ~y$v,^""i2&2F3xFk~(^u7T_սtK$~:PwltpLǴnYC72aChė~l~~eW1ϡ} --͐eR|:#AijՏ4w0.߈?('֯ٶ8vtkI\갶mK6"?%-]r8* v΁}ٻMڤu+TXYL W dۊDoشng6}Տ\ut+e6[_׎kR~0}V+iC<\*Ss)Daa!vEc?m&s^n,6kY\&].F6;8 POy(,"`NgCl/> .`xi 1kw܂pë́7%\mNx&3ߞ/3D0PW O50T1X7=1\kݨ'SFr95W=< J;|qJ5XCRXo /[0xd1O6hn" 4HB( BuꖦO^J,r͓~.#Ӫiθ]'2i>Uix ).MeUnxQ(s rcao,:Wrx֮+ vvEu75Y&VuۍFxo"fp H ވrB-t?i3=j^Q\GZ:xxH7WA"?{Ár>5m{Vw@Wn΃ H?wZ?L ^LR't0b^Z!\ژ#&Íx#7LOc:iWrmb\K'! a#\-Z"NUzI>#<_e6M+شgy_1WO,|OIR[6`mrb[0!$6JU+ t +ZO_OڭԤhUS"}5BvC_tjN?4%\/KΌlRAZioX,f襩Jz s0,.E }ؚ#B@k]npbI!>9^y•g'Q| Q0 l1H^ xi€ A4 0xbm0~M W҈с˛}K7:̿:C_F!R”8b\NUOJIU lo|['3GM'f!!g!GegYV7yi!#t?\c O| Wv-,gD<2 DcJU=5eyHꎵK0`1+4h;+Oqqee!=?AĤq]'Mu tØ0LHRaXyDp2gaNNu^j2PA\})S 2Mueڪ~f"ҶM?yޓ9qhndy#\&ͽ*k?wR?bg=@SIõPp-Rx`~:iפ Ml:IܴI&S \KQs9Tu~5kpU•gݱI;$=e竒p%]Ljr +ļsx[7<#<>>6&Hj/X;+t.*vϙHoCFW4 }ө9Дp%M},~YhgfTdK}GgI4YJm NA6bc " µ`UE1>}3%\1dFNAa1sg9`,{˷P> D˾4%\ A;{12ae ~yPUoa}ZYe+FPij%<>/ nՓ*•4 lHh;uo#YyOwܱc4 d {Q :v^AYHO=6-,h<}heyb.;řU4g\^RH2`FA=L4uiPRO(/:NLO}MH N# iǸU)Mu. DěR&B0fM 6h# K܈.1g Z&xjR`P?3W.}zHV1@_ L[i#t<|}[ Y\Yq<ŒNhgi?k?^'#P]@B JCX=6ܨwY=lnhooilF4/ܖ1@ ZEHWuJY32+rRe5MaY:s /xltgwiO? J߄J7R;NW9W Wp菉Ԝ~ Jڛ/F#ڣ!-uę }&q>جL%.@]p;"\* 傲bܪC FGEyd<@1`&t %S'㜊aAP0xzD=]OtTa;#ʎZ!{OH62+d0A3ނP6b{2bSb:A"zk%|m[ g0`U1{;m'r]| i'p[oVm#7vg~ PCN嫕6F=P&JܴkөfP|6|z-`j~$uzlf&(ce: }B@)?`0{x0@Klѕ[&B@!0~0:T$}H㉀xB@*/V!uX2&HBB-z\uXZ ^6,ep׼D! &&l 8bL»}Z|bFB`*# }5KWyG@k1UB@Id%%%ٿfh>Q;Y&ʾ, bo)gCω{cGD! &.,elVV0A>g ~%[䖜N)eB@L%Ri*/Bp>ƊA!0cɄA0^FU,ٳՄPFj);d"x.7JS髩PʃX5p]58+! D"/#xY)3-OAV)JB@06VSp8jUB`"D-K?"\ǿ ! B@! B@! "\HA*B@! B@! B@?"\ǿ ! B@! B@! "\HA*B@! B@! B@?"\ǿ ! B@! B@! "\HA*B@! B@! B@?"\ǿ ! B@! B@! "\HA*B@! B@! B@?"\ǿ ! B@! B@! "\HA*B@! B@! B@?"\ǿ ! B@! B@! "\HA*B@! B@! B@?"\ǿ ! B@! B@! "\HA*B@! B@! B@?"\ǿ ! B@! B@! "\HA*B@! B@! B@?"\ǿ ! B@! B@! "\HA*B@! B@! B@?"\ǿ ! B@! B@! "\HA*B@! B@! B@?"\ǿ ! B@! B@! "\HA*B@! B@! B@?"\ǿ ! B@! B@! "\HA*B@! B@! B@?"\ǿ ! B@! B@! "\HA*B@! B@! B@?"\ǿ ! B@! B@! "\HA*B@! B@! B@?"\ǿ ! B@! B@! "\HA*B@! B@! B@?"\ǿ ! B@! B@! "\HA*B@! B@! B@?"\ǿ ! B@! B@! "\HA*B@! B@! B@?"\ǿ ! B@! B@! "\HA*B@! B@! B@?"\ǿ ! B@! B@! "\HA*B@! B@! B@?"\ǿ | <ZS>ʠB@! B@! !_}}0`X,Mf ==0w~$,Y:N{!r,<3. z8#{1B@! B@! ,"\WA.dU7. &-}؃škLMU"kFWM6y3 ! B@! BKp/ ^^{Ӯz'=-l#]EDz{キHR˿Qp\s͂p9B@! B@! hDƣ/ ?:wiXx$)pMzB_Oxx~a5*u'zkӧo|hѢpW[ vaa]vu_?B@! B@! ŚpʸɬH|̴;te.aY=߭/oE/:u@)B@! B@! @@k[!SO^}#@o|v^s=@ Zg03ҵ}aF<02+={8x޾N|q/:֎Όwۮ7sWF.xd <@xްVytw_X`Ax`d{O<f̘jpx <3oq8GǏ7|3tMŻoFhfmoq/o1O}Svǎ;> ߇@$|_ 80'Rv g}vrt!MW[mpѝw9V|r;NLRDaF݂h/~1WB~ =v)G? ׿{÷hkIG0ycлkK |#{6) ! B@! B[p1e#.w-ao޻/X2!B Yw5ׄ;n}CaΜ9濾+Ԅm N8ᄂ}衇_&V &lp'ς0&mw.d?'\٦,ط=sRxO! B@! B@tDׅZ<7,?:PJyΙ6^}~%{{4y5$(ި'3QZ\Xmxs0a//G9q蝔p-VS|v@])#!kBqxւ#[\p)stx?Xe*a:$ d^AVv=lJBg(>gGg9|<\pYg _P5|!~ddXeRҀǪ o&y'r-9ԋõve0}ztsHSOTX/}KaM6ŧ'V]w|e_|^ ߴGB@! B@! "\l.XЇaZ><<@\?Dī]{e@+ •QopE7XֺyL5iB} )j%GqEy%Gkˇt?T BdP?O"?7\D1.+c!\pE! B@! ]D@k]S/zCuz{" _\1Bn3'x䴐zneO:.I_\v}9=x0zިg\4<];wEę4y \-"j}G r=_z%U|y0& S?4~[?ð;kgp~L3'nmlF݆,{pvm?ߔpKC, bg BZ픿O! B@! B@t]B=XYͷB9I<}"96>{"G':yӓ=='M=||,낅å׎v@tx F{p{F=\RGSu/jH{!PȎ;>߿|9[o-*^㎳gpMB?Oz9XtpZglLȣNW'kv[8-|&ÿ!oѢE5oHp)ڴHO! B@! ]F@kea##Kܩ7w!h/ ey硑gݵ7СQxkr}a]CW^}=- l}{>N "\[sz:%[̞?ϕiϻrix6X/>ahˁN~+L@BZިxq0!{*cۿ۰߄'`!v / {6%\pBE! B@! ]D@k%_ E/7߮}X<:q|ϾoYO8.3Y-g=cq%y$]~A~#QðZ!\q<瘟9zsȐ+;M&)Cw(R(?]xr_(a=d(O¶,>[x~O?4M Wg!%Q{wq-B6'v g~lZq)C=pūOo^[铭( 90iJ~x)B@! B@n" µS|]tz2t-{ÁqKxd[GO Wx;,,~{p ÑG:蠸m D$=馛e]V)ʵ/G ѺU _¨}e=3 [HTd bY>vu~o[oue^ /,KZһ>c=6TzܫbviU,2OkQx~.B~=B@! B@! n ׵rز.̌h%\Japu▚ijR` Cq[x0d,_,Nd}饗<ݗ_~9l&tۀoAsU}O/?A TA`2=_.Iے),uB8M>Av,*,:I(6kDctL`E⡲x p ']pҨJ"[Aŋ燧zj{zz!_O -% 0؞~bгBn , {l%,^U*37-+}E;wneZtsb!YR$9a-CnLOԼo#%B ;,̚5kb\sMqNz>_veE|Ї:F\+?vi{ 0m I@稣 l0R^zi`bcv {|93㞭z8(lE~;(tKALJg 7l])7ȵ%]UPxy'\)6fPnJts@r-x '3-KkOVpM7 GydYPᡇ 7|syt)x-M.V"0 ͢ߠ@>0{ :5mZE2J /,npG9y\Ffx&\sm h pm<_^hK]6l3Xdw{G]:'\⪛Ac FvrXҳo˖_|qk'=%\߄|0#W<]S'E&UȃO'AGń7S*,7oSwZpH)M"peYq1^%Yx[wN5G\>ބ+i+k\_b+bY &"\Xx}!!9Y9cƌp'w}O.fy-u ^sxqKLݧvµ]&uipe@Bя~t%£_a/+0_IQxm>}7 y4۱Q[G@k<ЉW8}}OXdUTdbԃ(6kᚃm""\W%S, o2v!e!pf,}nV^Z,g~p?z邔|ᇋ{WC3I& ΅T;sB(o61[,ApXDm7e+`>GzI;31r%? /,-pb-VZ*60'iԜe`4 gLf9y\r6'ݔic{ {0@Y!,pjU["L^7YBG,,K E 7 6Z'C_˿[/ ~ްfa{/`x܋Zk fL_\^{}0ڼ7l硁 auB8dߡr^ze `xՁ00fgfϊiڴޭc/\`XxVOز2_LR!lA9=ѧnt ]A],}]v킶J!|{0KA_RRiڻzN$K?ڏe~es6gKH[㉣{c ҂k-WDGXՋr}MϿ~o't,f濾SU9>i,}ν5V jzúk܇Xٶ\c?ly Y.fSv <@x%Uӧ03!;oɾD6'zb;n{ _{=h/}K#:݋džFϔDjηϷlX t~ݸjEQV۴2i\6kYZӯU}{ 8)չ1FmN<^+uPgh/_\TyvQߊT$AQ05#(# €m R",ר}eDhA X DŽD0 ϡSa 7%H?m;t/|OoVM6mqba9d:QЎ9=lVЉ ,(< ^,kz'5Ws6\y3Qf*a]z!G\Y4.:r7VjìMFteKS ݶ-QHZd zǎ#rU7QqlUOx{"m;p¢V~{T0+)T 3oC&9=` f*4FUy1ctvÓzoaZ ?1I$>tڤ D#\I LÄǃvE3Aٳ Ȭ幬m5>>҉~ =%\mt)^P z{'6r&M#gFt +?z&qrC}ϵ, ;"ʄ>G&Nvvy²p;X8jҋ;X&ڐ\ҹU$7 =]nnJXئM: w#`ϙ3ο*,8q9Sɸ‹/*jLo^XxIy@J>u '=\C% % &/VfQ'g^I3yp>B}3wp,tzOp:ʧy<9yO &|X|vr'\eFۋ/WtIqhO:#,"T~cTe{r.I=3vR u/93laz'7od,ImvhTW+*tbrŁ5qg:94y3:yKb|E2vȘcrIx=?0xkw] //nCsFcBٗ/ O>;X'34{C}M7=l01[|棬jgW_>4[{}(k>&xwjK&թ_Z\ uV &80~3cԪɸ̼әD7xn~khENUaۤ+c@%%?mFJm47Y4v0EcP2g* gU$ :3PMxw,FeB;@BTC:( T4zJ򛽲𜤳e,^xµYWB,#x:O$1IDX*FDrSOEjwpM6#W=<ubu yl:W';8=kڤb'e-ECo4F,}^t7-@ՠ17=hn[:;t"_ܧߥ^0S'M\Ӵrm]6V\DSϵM+vl@33,-oߵ ߈iZn٤a" m 第:=N ڴ>Cîۍ#nGwvo{a%;/d\aZ{󶲍(G*NGec#bi(Ws:,\/UD=wgcV W3q@wBK_ٶat\F0Q-wƒLg՗-1p]: 8*zAdا@5*{'gy=k))ip9<3rI<(m%eQ!iK {BB'&e"¡caPJa!x~zD[ƹΰh?^'syul+;&}Rh/Xwb% -$vY`U•(k5ϤW:2  ƧM(P<.=o;HcĶK4ϸy!5xn2~ByѦyu'g x K=FD_:3eb W˛߿z`!eàWbCμxo<{_fOLlw?VkM;W=bY`9q^qTZ{g.㇞@V`e;=u}sG9k }``8ؿ⑺p{Lwy&p`bk:-})_""#}NyZ%\mb8Ce^U\M-gk/˰ͳo+qHE68M{UYN۬I=3•=q b'6aDW#4>g'pRC ]-3u(H*znʒm3jx1Fr@6P2Zn}W[Qv?֪$ 8' Mפβф='ReO9w[ m0.jKҘ^3={,+DU>l{|jS3i Z!3o#Z5Ce%HN Ecu:n# HOZ繆4!\Nבq3x A̠L:E~#lg>H0-͗ PM 2 ƢUC쮸C4聺V}a~\0oi\JO iAܩ7y N$>Aw=EyqM}Y\F:`xP׾#q%Ӄ^Sei.a쁔vKyn}4e[F΂}V^ \+b6i˖TlL^|jYxMbnKYX«J'qTNby`sm{l@J¯9ױc'=sIXyiƭiw[4{"O+(N>?ncPN%*\opøVX +:G}q9KX%4 #~grq5gt>ي??1_;.#-i׼։3IƸ^i7gFB xƇwߦgN.MiRgI_U."\ǹQ`aʠeVTm kTubP ai3bf偒DP&u:3҄pK[*]x@!6@;!x2bb[nOE4޶2~&+ܼJxD_0bDT}_Fo$*?xhW fVoX'|X޷/X^}#MZz#hU:=xP( {eO[ ^Kd1c&t;wb8+lҖ-|'!MlH HV^ (?WNnby2WfceQ}oX[,s;&y̶Ky˾x0C1* :U $vf衦}OUs UX+$&u V80xJ1iO:9Kzs$(Rso;ejW ve"l[VOlTuy.hM19hM]1F.M㱴Sgy'GZxSkKG: f+0ŽF)CD5ۿ/y5* #gՑTWjaV}je:y ;{*m/ yNNB A#p5Oi?VV5!\1Z ,tS D!Hm 2,'eznWf6Y_㮪󖗱zFtiweOR#' Tۼ[&_FmAbB] OLdDLx{Mu}]!4ڧ;,{F6|Zsy&8RZgYVjg+mMeEwl+Y.FMc{쳪sNt7gFRq`_Y&9/Mt547ǧYܛ "µ%x9eʢLgq'^ =lh)3Hk(YyWbɮP!~@z~;}n| D #/uRߛD*igDxLsd \!-{TM[^R7$M5_]{6K#9.g}Ni^ x0I/#mbI_N6kS]_W1"W(uP?^A?ttz۞oJ,digpx ZCOtrKݢ?GXc皾qOxeOwUVN$|ГCM,z[)#wYlNgN=hęgxcco;yҷritCAեLu? Ml@x?\=wM7{Έ{?og=u}Z8800X';cEwYnd9 xehl\\Fۃl;_G\\M:O|֏qsX4Ym7 lS8 =WYw9?;O4gF/aCMt5ضK6i%}e}$קpbIOJhPxul ,!*i3xrN˖'څ$F%Ǵ.6ׄkH ԫÕwNnθ^=Fb<( zK!Չn%윇~ KS=a45^zծ!vK /!$F}o8!2¹WtuqMW&O/>%!7<θdIx;4o,Q0;' ̒C~tΒڛ dmNz L^m`zō0p61?wx=}/[YO67M?V?B@Dg+mԶxIC"p=ش-!o?^ Mc~o^]:tX'ppCw6ٖ9pU.Z:R7Iۖfr#O8-{s:q2;q,}O]q x:izÌkqbIS᳧LtFb3 [߹1SYwZ۝XtoRόp+?ltiS]c$_F6FZTV/&5],) #t:w/UZ8pȀƄ9$\ *u':.P+$yoaM6)!y'"Ǡ O5-H^|ϧCd^1}:Xs?7Pt/KLuTӋe. wqGqoXͷ w,<4Hg>ŭP7nȼ i96o @Bҿs,f3&a>{sW h݊1wM ƙle&"}YҒ7eʏm(GR^ M/IϦե}م}ba:o6(vRzbz&&6KY9;ߢ-E^U[gE:L~6{yN?oIq~"=}M_v}tvX7|m͊.iSG,^2ӳ(e۾pA}~;(6wՅncI=~zk6.;Q\CrJ皎opeB{f̟M7/n7rqvtba7W˸4 >2bҎ-s,nMY .==΍1ri&&4e:1:G0&pr0⩆L(1 Vmg c.\X<{ > rm_n6 /LY3/(yN%"W6!\o@Rrϐ_ҁG]Cn'w Q,AGyN^|O?gΜ03Vf12 c/¢ L(~.qL2J=`|dcޫM-1~^ą5R܇EQGllNѓ^}ej$cʳvL"> CdB+ct#?%u$;O0qcW~iu#^d_)״ /eC&a# SV0śr eb-@e/+e⫕4V/jtAt$[O6w Eyo\ YtB5y\9_-سruoR)xБ/d! ]xw:eٱAގ3mn[]/=1^>9mJxVoZ5S9MGHkY2 Gy yIDCfdFḗVqd Y8dsu XYܾ05>N+38[a.L;K3?qCR.k9FZIL:e,i1va 16`ON!:pc@CDY@AgUI_)|"3#xLa1+yGs!,?^Ug/Y Wa"f<0t"A  LPqC;fH!fd0ޠf VK%i q؄yڨ~O9c1r?d Li_Z[;!(?G?xM۽p]r:)_޴ %lbm>i;+< &[kKjW)KYep -2FA(O1꒶M&Ӕ!V+ OۂqV?Gy%VJ3VX>#1xǽǭ"Dq-ټF%‚#/IZArcxajc}t T e۬5\0KK $z-.C}0+Z.s9o3bK'_Z: ӦY).-~TX<@ޟg )]f8>==cOY̱'<9w:JOJȵ6?n*8d|dN-K`6O,K-!-o?;YW\Y]&efohcXh/eۊgZZPD@B#+00JD,>!v( "R0 eUL12M ^ " C2G+*A :%wQm1S"l26;q/ysKX5+}w}q\\]A@jԃr!"P'&Lș{#{^JE_3KM]צ#V-D@U%+8v}G{fϏK#hSbG̈́d5.B/q!̧ !ڿepͨU1}~fyI@P0Lyto',Ϧӧۡ-Qx˶x5 Qyo~N ^x!~A Y x+/gQO" " "PEU1Hb3Xre; @#j5,\[qj5,\[qj5,\[qj5,\[qj5,\[qj5,\[qj5,\[qj5fٶm۰aC\I&YS[?mܸэ?~178۷DZ^)䋮}g&Lpcƌwj8͛7/uuu'6<~EU黍)bi%ͯVe_:ycR "ڞ Q}2>>HyGKgdpm:t VZ}8]w݈>hV /0L[nf?+G|0׾Q3t2,\0WUVΔ_ݽK%K.iˢ??{Wo_[+:~^}UxxA梋.jVDW^qK,q,^p ,!"ڵkc=Ut]JsF/X>֭[7 ?6qƹ]v%ӾP?_gq>}w9_<@W_ƎۜvXepI*z9WVns3gL?ws[(ٳ+:pH\αsϹ~U黣JhhUch2+v2(+~Cq'|rKPkj+ӭ4Ge'y:;;YA4ZyZz5NZ:j6CG}UV~_9 rϯO?pe֪x ⋎c=vHxHv5=&ݎ W3fIGuUCV[J߭*;yH{fvUWe̺iŸW\ꬳV~ح^wq]!?UWV> wؐ|/~'}+z??߲e۴i!90Zbn,kpe'x"N]w5Wpͅ)E2F hov{ʪ:aQ~{:vꩧߏ?{b`PM ڣϯ W &Uަ$-VcP cg0flJmUU`G~7xt+V@b.W9dG*\e9lCuΜ9C1rQe Yj-gu˖-&tȐը #Tot^: b7t#SNM+ȼ%xWM4M6-mo ?c˛pu}X`?7g|^z3c 7eʔay"^?_(<=3. C+`D{3iuIx7J6#M# x&`[bE<+P$5kďNÞzauX?|#qRʌ.yL<9>vyony睘y'\O]$ w//ނu{ y!pR^ 0FzXvX"8˔HthixA@IDAT<W,m )0cr[P!ꅾg!o{OGT:(T?ӧ6Fhُh6A|,,, O'|pwҬ<-OoЖ9MG'Ag6t衇Zq"ee}YD9L@> _KȘ`Y}7N˧?<$yȸ/Edy[;NP+MО ȟ:{D~ye$]Fnۘ8E}wc~/C,0H1#L3}fgduI6d>rq0p>]<(o,Ү`s{6=pM!^ >_kqMtӖiI': O E#4)綠>)'eAǚ i XM1 sGIy~DYOGA 7y'4/=L~̫#+{zY;?dnBɏG˯,}1vß?]So8x9"!m(+K,=sD.fP;.(׬߆̚9߳孟F"2~ҿl$WjѢEO!s>9<iz}Ƙ\!'3n2נgZ=LjL_Oujr?|bJ(0vڰAN  '0d5\(('xb8΋;#<6@fz5 tBg8Ɵ,1?]wݐsd %a>9GD| VeꪫS q&G 冺'b6Tbo~O/X (&4駟>d~%ɵkfX[ ?i/ц`P1&0ß0p=>kZLP?p-٤{I'jI0S_~gw[n a[)ӶﲟmcDE]?ked3}IK}})kw^uWV[>k wM7 3c_)w J^E+*w^PN_g '~@Aѯ ~,o[iv9'^Ӷ12.+LcLCb !OIEiƦepE9JѾv9'kkAe + Q$^ 4X 2Ƶ?Q8t@"iW#!+ F2f2˄t < ,oVI. aC<Vx,w&ktx? B(f$LQd0eû%ߔEcP1Iz6 uDf7St }ƔVm0|o^b2K@=`P|p2 ;+ PmI}V0f&(+ 9)^kqѿ2u}w;&+ʄeҔ'kedMXKioLx2gpǿm1"}=kL }д5&ryiC&-;VGjך'u 2!}ƢXl0Tǐ] e;N;e|!=}}6ec>gmY?7)$4pǏ$c Hҧaa/݉q{81~`L)gPDyUYY>Y6vOgȄ񐱗 ] ݌B{oqvazEO em9B?{ F~'){H_0shl)#}oG @ ~<>fs.}`W9}q~J1sDsO.oCiv؆G i7C; _x~Orf!qGQW7E s{)1킺gIm "r& Κ;֎`؈9{!."C!EP[ ב??cied~pN lQ0d_VΙG\Zzz'֐> 8JA X$%R ͌ 4q+&N1Ie?|Ϫ,+⠮`+*k`ecYѿnd.S&0mV}? ciΏ&eַ9D<1_m5ǔ(<}lz&M &w1"׾@d̛5Y@j O2SII-raIt,+7iW>)#^6Iwr-t,o2 >,5 yA~mc1+I"+}6,+}Mma<阜'4ˌds>_9 3}>Eo{{0˚“ǒd\O;BFo4Ms!*4Dh/8G>ߢL32%eeov`:F5ڃxh{G 'j[۬93YOI㘯%q>Ez\=|Z{ñmǡx MQ(, >A? 0| 0Sd3ؘXpWo>_) vh2%*i>?n_KS ,2{E=,d /_qX/|k)Fj_&_%qӱYWI o 1 ahd/jk_?3H6mҌ6 ڼ9hy@/\&:Lg8H`rGe:O,=#%}gE8bBɌGMm+Ȗ_OdeI[=2ֵ/[6lp⟦`M[6C]'l8jt߸k$CtxdT!{}}'Gdiszd_vdOB9:#F :q鯜39ܛ,˲22-MZsz iӐ,.QҘ#qS\GLiq\X&%t\ C | 4&p_&i/35D2?^R?╦C*դ` o\,a63@+l@ ZeY ,M>Y7&ؽiowN3.'16,X ^x9Z - 3m$eFxXRy\ڧ@0VS6lQS=.ˆzڶP%է-&ap%޲j<̨oʝZj'}™fLOq7fѮMQ,>d>,Z. P?N!&&(/4OZv&?)aՉ}/+`vU,261|ʲ1g-&\kX/GmB4I%?y4$ y:"F|r?ʇW71ۢr68٨6WHw4Z|okI13ODƬsaIR }8Vd a}q'\_mey}޲g~9?Fx̓/<~KJic?ܛ#dYO_H,;\$Ic^+ǥ1*l,QN>I>A w\X&0}iQT>1r}KhЋdbj|/Lv<~ʲ,+#-O'QE?+qIr,,ooJ1-~L/S f0@ | mp5{)ƆAw\F) Y:m0=8} D e?ޤYjSk9*h&?֌39g:+ ݗVϜ,BAaƤ8Bhp /*~[`/GB7=ڽI60=fktY6/vtkl˴ZW{DG?/)bHh}INJ/[*Ml%cĹZ}-IA)/~ڠYɢ2 5iW)cqߧFQS^-ͤf\˶:2{ȳ`ǻ8l2kǐ,1Er_2@7+d=m+ݶGұ8ƃZkY>)g6ZL]&}Jaތ W8L bܡ}Ҽ{]Vakz߫5kI:='<'IxTOF䥅9eMnop5}x^^eL N;X.#{˴#xek{1yy-b/٦hzÅH_9׌f)˲L˧op SM3֏׫-QV' 7 ]9zX^o_n26Vzhf%wɁBU|@ WS}Ҕ$-Ƹe ԔGNZGm iiq$yXɚԢ` /_K?{5-_z C)8,c;ĽyjuwK*VS9fdBE>d@ ]OۮepnY䗥W?Zkcl+@šjĵ/}E&wPk=$C UYW: H;5㫿^VԪW?f\ieufʳ1IH0G_. qoHW8Ӿcg @~2.dD:->;^KuYAvU,IVVƮ?k1ڬklͶ,NیL k Eu{*wOY͸Bojm14}7Õ8GcL'm.S-' 3FO?xT)j*6X}IWir&KWih}'Aqai8$W= YSOi2r{X̧?r>iݿ&gV O>epU)=J ˊ F9'1З8^s/#& 䘯_<زƃZY>RacZLt$%їxli/ӵeI:͢SU YO1.pyؚq-df2ƘXOmuXd8k'L!x賧7s,㨕9kڄJ> 7/O zL ѰkLӶHkG>.#?x*= ؾ82/řrd̙3}9>k&5B=eYIX-+(sxgEz\Y=l Mf*m~`gFU=|Ƅ6"H<59O`4P|QlemDCЍ}Ü-ӗx!l&Yԥ26. 5OKႄ-ۖ}|:̠&#L 1&2CpMZKy>Cn ﶟO{ʯ"-0Xbi!=7rB9 U҃޲ȸ}op ҿ?22t!4s͘oVȪ,ȴ|2r߲ebGO;y=r%E~op]!66=\,/׉gg26mb@`$`\abƋZǢ$y lJ02"|19(,+y`ɟ h8 ؀}8Gaw}9&'{]{'iU)m0%R(((/'?ŝiؤ- J|h;L %K(dZ_.b&(7gY i#xG@ہ?H(;VϾJ[;wneF?ӌ5 /t$zS0X,s (@6frz)-21CeeH11? 9:묁7ӟ qcQ丯׆WƜ4Mݡ۳ݏUʄ{g0C22gb-zEc2>9]职~hu4D}Mb$!h1`Eg\qpоwm]}W!YˎC,QͯX@G/%7mE^Я1\Gd`CЙ-ێLd#d6gIZ|7фo:M|{vgVòL|#eN: Ҙ#qe#,3oBbyN|`Fѷa< \kr2>Y26L ae`А 1ͲC1f-0:! @oepEdUOAД<YW&ɰ~Ӳ29`lmzb/YL#,$ IZgJWJ}3@f+c$OZMa* lQҴz6gE1# T &)|*U]N{$ i•a]cܦ}p@;kgG&xQ(Oo++~evDA@cK ‘vH }2_-]_G})OZڄx)/QwߴMd+bpjy:ZVVӔ|;BEblӮ 0Pr&?+1uWTԪWM 2^^VQ2R7W"3LAE:ӝ<&CEіaK~'yuieqe<튲SFqY6I uC0i.:ž03pdyD@)}{.mp%NH'Mq@ǡ‡8/PX`c,b&؜|eQ\]16&ShpZ{҄[hG%op2hɳeeo=6Y OSa}J͚e12OiD^ Bsr.g1/+l{:B^?? }aOm2mETv%\uN Ocb# E)vQŅ?ʃvM} Y 3^Ʉ/)&H(I3 ۀgr?m1 YѮUYjoE u.ڶ'Osø0CĴro򯧮-mTf iS> }dqO=X1e3},@/Y}a0ht&<ڽYTq_V,Үf\q? !5ek,9nׇe 7X2}y̾a1烗Vj7<8V i\tMdq9'>&8aiCB3mٜqvf47:i-UFd`)Õ<zQ [@y!Osl4ծk|?^Ee/{^+Gf@żGÎ4!ie\ X^#O鱉\r dv2_ep`Cۊb(q(dIXx&IbRF䉁N'>:(,Z|(ppW:s|(3y@ل@#F?%4T$Q6gƠ[$K{𮕿FFhVۦ &LYYf\ٺ*H e)> q)oXDVg囼Z!#k70Y!/͖;Ym9[QV&㽿G{cz yl3[$ƃfeLE$M=3 x`t(2qۯL'#Dciז<28x^5ӆr=ڑԓ<&RƱϸ[GV|~-;5 4Y/v#~5פ /il*sDk?e>= dm9|g; ߍsn;N;oˉkk§[ cjŴtF EM2X]"`+LҘ1PG=&h)zƕyٳU(_#`{qyUJ2VTGv0X`Kd'wIf9$33r(k * I6 I{$2ɪ6#߳ ͢~7;/3#:)5<}R 5miwek6ljyS!0ZM)X"m%Tx(XbOs o{! XqJx5Gt5ɹG' FB" Tvݙў^ {'. <go&BLZx Hl2<:eLiWm=&ydW78,Zp ePc+kZa@+\5&[~Ϥã7ݍGuG/#dG?@XcQC\j}r4\V?^\_Gȡ eBDM`$e+PB<4vb(iҬ'^ċ,L^Оx W!bh@+\a1qZ ^FTd`8)%g-xQ/FE"0p&;\wZn@aQ+ ة 0q%ב~$x-al6mZYxh,l _$@]$!7D x#ZИ82 \Y#6Ej3yO?'V#OG@r.vJvEAD@D@D@D@D@D@D@D@DdpD5(" " " " " " " " " @@vEAD@D@D@D@D@D@D@D@DdpD5(" " " " " " " " " @@vEAD@D@D@D@D@D@D@D@DdpD5(" " " " " " " " " @@vEAD@D@D@D@D@D@D@D@DdpD5(" " " " " " " " " @@vEAD@D@D@D@D@D@D@D@DdpD5(" " " " " " " " " @@vEAD@D@D@D@D@D@D@D@DdpD5(" " " " " " " " " @@vEAD@D@D@D@D@D@D@D@DdpD5(" " " " " " " " " @@vEAD@D@D@D@D@D@D@D@DdpD5(" " " " " " " " " @@vEAD@D@D@D@D@D@D@D@DdpD5(" " " " " " " " " @@vEAD@D@D@D@D@D@D@D@DdpD5(" " " " " " " " " @@vEAD@D@D@D@D@D@D@D@DdpD5(" " " " " " " " " @@vEAD@D@D@D@D@D@D@D@DdpD5(" " " " " " " " " @@vEAD@D@D@D@D@D@D@D@DdpD5(" " " " " " " " " @@vEAD@D@D@D@D@D@D@D@DdpD5(" " " " " " " " " @@vEAD@D@D@D@D@D@D@D@DdpD5(" " " " " " " " " @@vEAD@D@D@D@D@D@D@D@DdpD5(" " " " " " " " " @@vEAD@D@D@D@D@D@D@D@DdpD5(" " " " " " " " " @@vEAD@D@D@D@D@D@D@D@DdpD5(" " " " " " " " " @@vEAD@D@D@D@D@D@D@D@DdpD5(" " " " " " " " " @@vŊag}?v=v Z*GFve7yɈRh[2`b[}y۶ݹ}'u&v($ßou['|Nwݣ mٲ%N{Μ9[֨Otv˗/wgvsZE@D@D@D@D@D@D@D@Z #Pa["cOowW->.w.ۮiyj{#}෾\X_[޶-z}0c`+ޮ߼l[{]ep֭[}o)pǻ3<3DE@D@D@D@D@D@D@D@Z M%o,L W.:;8wS{7.w ] P*@2T'=1AwX[wĹ>w;(;`j 6uou6:m=GNwh|mD/Zב/c7)zIчuqA\#r|`miqb+yXl]?;):!n.^^~c_NwȌX_-]}Ǯ/z+٤I=PO85p4{ܲeg}L;8w衇ĿF}7ܪUM<uQv?6mK⠃rr{'oo?w%+V%K {g'ƿ^m[ۘ5kV|/{~GqGy;cq> e {nذ!Ƨ" " " " " " " " dpSٷߋo]4zq]nC$idm50qrѹ[<1uvnsϼye{tP'Wzj;lƠwz}O \}aa/rA1zBy"Nt,op1#p+!]lN:v>|Cc;B1/ ;#W^{mQ/"w9fӟԭ^zq;vr?bC00rb]|y|w]coy׿˿t_~e|Ow֭bϟ﮸ D7t{gٳݛo  ND@D@D@D@D@D@D@D@8wl/Awtƞy"z(ڒhkp-lcv~˜h/<^ (^ Wyv#[ǐkgvEvk.vS&h}tFa;q dw[o ecQ0%'LOt5>)MOO^vG\wꩧ뮻q rɷ] K$??sӦM8pBO "kbdp-ƫ//qƍ/`|stgFޱ1❸sctb@툷?`/`q6]s~r{sd\L9 "r'rI&w b棏>nv;{~J r;y7J{'DW~[ _f v~ܸql)p2Ι3'6n޼=SV .'+ۋ/8]w֯_ (ED@D@D@D@D@D@D@& kkG^wZnꋌ]+ыB{vUw\5JزV;ӝ}rwW+a3;|ucW?M|}_{i޺\ŋ'~qoN1 GΝ q]?oD x~]w՝s9wꭷ:UW /k/-Rr|{&.77 7N:餁lkep@/" " " " " " " "P7\F/Kǽ7:aW.?y[.Ǟw=2~ǏssKK=MwKtM/*jpxWcV apӔ}Lnqk-s38ZG˿ĞYggI"^0fΜ(ndp5LDΩw?2衺>Ș[44]vz|@;0z>-tEO}HW5{_;+z1֞{tި{[뵨{3"׮Ef\-j}wܒ%K{^v{>}z4C+FUhǏ^u\% ?o穻;~ؘ1M:P]"" " " " " " "  ' kÑG {/-[o"D^x+2~Ae|os߾|c\.q>>hpn7uA#_//<n+V xN0͘1p_~?`ӕe x_EJ˴]E… }?/c 2 }@ x1vG;}eNls^}{tg(<_p]nΑ]GmpEܑuw5}h71nʤ~Gܿ-Jo۷lI0szx?Wm5#Lӹo\ڿ@ wq{Be77Cz" 4/VN:p 2W~}wwlkp7{n|'?@:[z-G}t^5B_D@D@D@D@D@D@D@Dn2֍0=zɕ}?}g`/cܾ 7}VmjggoJ3< vXuE^ plS'kF?o}AԤfS/g_}5}gH>1ϛonuʕCwqnww[tr'|rSuD>`7uTl2zꁴru׹SO=5>+a$_!gqc=ܴi[n8_dpC?D@D@D@D@D@D@D@D.2օ|P7}}-FsuW=vup;Xt}ƴwQdp7#6m4832׏%ipU;}> \/" " " " " " " "  ZܢEy;̘1#r}7~w~PD@D@D@D@D@D@D@Dj5@7t{'33g\7 +4 HDz/^Tl^xN:΋_U+G" " " " " " " "кdpmݺSE ^jժ?z(,Wnu6\[{ B6\[{ B6\[{ B6\[{ B6\[{ B6\[{ B6\[{ B6\[{ B6\[{ B6\[{ B6\[{ B6\[{ B6\[{ B6\[{ B6\[{h [nۼye]&N躺Z"ʤ4_|n{4;K_QFOcwwn؎aGk/1:* (K'֋=te}̐L&ֶظqۺu?~u][RO&Lƌ](26dxP3 A(!T{o7vwz md C5[lq<[jհ#O;4Ǥ]\iu+,d__bqi /K¹瞛qs<˒Ufjg۶ms6lӳ^ydɒ_^pyjokKwCG}|8_*طlj<6#֮]oJf1)O>w}+"^NQE # <#|!O>yD}krB~_gӧWG@Ͼŋx}vNG#wܑ;K/4}.L$㏻{/>qE իWǿկ}7Vk,7gΜ<5+WtO/vL:՝}ى׼瞋ǟ>yN&epMVMd뮻bgV78 kQbw ݘ0o<7s9.v)G;I\Gvepm2>GI:mڴnc9{wk<W-WO?}TEL^Cj<oZpa|] lne?yM+dRǏ_ve5Y+,12čz}qGN875FY[w\}Չ[xi <޹:L1[,p/˒l5 %xldmO@=|OVv{mPgFJ{Ԝ`4J-$f9rX J%yc{uEz}7ywan-yǭD׽v[q{N;,O?u>]z:ܤ蚙ӣM~R!lA8AտtgiK-TDF{#S>~H>לlJ98OGa93iM虖Wtn!}2 a7~]3Oa@~aD'i l@@e}|O?$>SgЬvav#+:c^''ks㤗fiyBcY$^ϲ{#ҞEXYA=ȸgv}Ipe{KІeیugR7¡0x 8Pm BCX;+I cDx  2b8['p  PlO:x7;4ʓ+w0܅[a&e6#]xΝ]kӴFe@](2Ȕ8(s01<)]@ &1(:3Eu"?=t" -\s5@M{3 lqA] &'K/ 3̕@RxJ|K. ڥ~< jsq=^6gO-N>qGs,|Qȿ@?a'kn-80? FNu䗑ȉ$kӴ=PS*gc32/;gqMC4MFѧ4]L ޙg^(((a}Ŗ/ިPt0 Ovl)J8AcJ?  ÀxXؐGxL,бe6Ƞ𚢔SHE #u=$<h vp0Q& oBVD0g/- 8(aFj\ MXu}b#yfH}kq<['^#jVY̐OcG+ E ([MʇvF| J}+ڟjs;nm~Ss*iPF[.hyC^ŒsԅyA[ޒ>E7޵m1GޜGɼȋtxF߸dL^@=oc;$ڋ3*|=d{TwƉqm'}natOOFu:0XhIe}\6f\I+Nۧ#tvpF;n4^rGީu"3{a]0op1kGGeKuPy箎K3*ӷ.0X8w'uBО52|.EȦZ˒.:vr_^&{+F⤟SF@15"Kd21C :0]&\ȱeeȉB?DC S6.{G  R{H Ŷb838|"Swf(1vًkE=R>䛅z PDgOd{1Gސ6ؽe  Xad|BXۦR,f,LQqـN%pO_Npllha ޴Iۏ?4iy AYA10/ iԱ3‘?:<@ Boѓ>utC 74#Pnڅ t":O0"vC<8SeoN2ޤP2zgB\'ql߬'MӵAͣkm3a^w26h84+آ2YQ0S311DU HV?|7k,cper$}]wūI^(1, Z&L"{҆hKV<LMl2ǵh(E ;O8ӂy~ȧ N1CFȒ_xP?I )/#PX=Tiהңؤ/_Q7P^3J@fB! FA(u,X>G.ײe/[k%}>=:$$ @3  rr! 03n]]S~yսCU=Կ#8+P(M:#," mYFĘ>AˌvR +Wn@Jjz򃱏)B}cc0幘mV hCR]_W DMa?:ۓ4YuM9<!OumaC'HU޽#7wT^vBa尻o[sL֋/2 J3Ns?5b,އwGȤ?._޵@^['쯝5m eW?~G}<ثJut3_a] xߠo&xAXfh}wW˖-_i;E@43R/ޭ8Q}d<%x15Ax^Rm҃1[m/HZiyGmm0g20>DX> +!y$u *0pb*vLH0p K30iL@W. #\?eC/83<2ChaDa?L.a=MٶWn/ȕY)v&w;ƪk_|~i᧎uq|]RgRD@ө1 D < {^ziu)66pM6+3!ABXc&DJgb-|m cMu2Ӌkb`)glqHH! H_yla}>vr,.&573B ,1CpCb)|vCb|Q?0p@p@nˌڶ+mCN:5ύp Y"evCK=ʣ_7k많dЍW^Gz$O6FS7 #}a|)ۅ2bRIJuܒJ_g3&fƺnuyDecu4_2 ;"Η;g6R.l#bw Ami4vq'3o)Ԙ E1kaϡ>t2?쎗}"6e Dϑmqmj[ uu lWj8;o9e M唚PƁGr㝮zav[WM bZjgwc,k%u^6Sqٵ8y.3&;p<:y Bo73b"{ǎa<茐{ u8l0Px0.4ybΔ<aPL 3yHL\@N  ea" J# c ~[R 3^qsόaa)61z!¦M^,<rKgm e *_39y&F2"-_ kmB:@vzYyƤݧA#@/)>kėÕqB[^H7$?-K#=NʻPoc|@Mz; 3pAw!Cnm7$Cywxۼ~~K\MɅ?_?5᳾k< q>P_Q&55G|w#:A{4Z-\tge~HA,?y=hًo: (EXZʖz}qϤm&njn*F8ԭ̱8GZX>K#}i@?үᵗ,nmt˜l"'tg!صkELL Ny6&_ʸsU 򻱏݌ڰmH7)y=a$ smOjy2#!4fXcove8p\tny.)ܜM[yxQ/n _=?u&4SM[֏2P {5KS/0;ėMmMYG ϥg-REB_:*G,cSR[nD(rʖ6_T=ӕh Ry6\]gڞwk3ՅK;gBRk){ϰ{*{(X%\m+8pZ>艰_ s.tT92m6"ך ucޏnnɀ %tuj)ܰ )+ps'Bµ4M4|y `ڋiqw3궞[=ómquql]Zg"\7r HbS::#4%J*CJyb{MjiΞ4(`>yj)!\ý[.]a9" ؖdSr3XIu\o2SYԒ0bfIJ Wv,O6KM7ϗ׭Juw(M'@< {MpyO Z&4mҥR/Kgΰrj5Reh?)Ȃm~|m#CeIcLFdv.$*>5ԞRꕵܒ߳a41ɹ"3Or;,?WwfW^C~T*^u>A_w?4|{s߆A[•!B5؋&N>}m6 uq;돧p%Lګ}to͋ejse2nRylH/ɗ#Uv>2}K9zVw$\'80Qa6"ϙ~BucT1_wϿqmzp q?ePM9unRW0=\3;$|6m73McJی_=L.1JMTKESH_@JJTOK-G*vR;fm=88{0.N-KL[4BzH}f0cd3ɖ3>bJ~kR6`ap`p'ب=}K@0M C;1`b ۯNC\tEUpx3<;{Iבl309lR).e'B"نlimn|`n p?Ք-IH=0F2>?|W۫29#6k3ԍU<<{q4J9&VHuNcS=,M6e`DH[lRL8wcnyW]\ [iENc /3s򒔡L$d3|͚AtnGS19e~#o,c)v&ivU׾Ry {0.N-KL[40uQ:vfY2rxQ> a:pMBu[N 3#n$45ϛ \޼H6&$$"Ǡ ŽNl&tŇA1TK)zG=>" : %xYgĵ 1B1b  MRHL4OAie=e젳 ~J̐"lP' ؐ +F u@=FMYЁ^HgG9qAfPZ=X58x680XI1CBo #m,%8-~"\KFץH0O( .](mwXɀ3!'Фն{Rp ]l8¥^٠=inV|3oIz/o|cC'[ƿHWW+ Y~Qc\IϷ=ȫ>.e]{˰{,k} KG:AwiVW{"ksgب#nM9j} i96(-ҾM|SM6d޿LYd1>.dh&d I]E XGL߾ٝ77 ػ,71b&n"\C0Cojc]19 K죰^tx38 mq:z6uҋ͔ " d' ~-3lR\hCӜU +%xEՆ&+&(YaY};'3۫03tlSn1ApmMc#{qRtQ;i`mpMReh %wESa9[ >GgxfJ%^i>x7%ڙ%c\ScT욵\W6-Ա)R[Τ8WpC O5ΉGgD0{ eF4x2vժUàȵe~)quD8,k!X` %?CLKq!ޮA>THh_!Q< 0X+3TI-[6nr "!;n(swP]#Beީ'Kt(z.p]q/W^~ު"^^xuGS湝3S Q&Nѫc$1l_N7y7 kfOWY.cν҈~`ЃG kʅ-賛TGyqnN2 MLѝ|9ODV/ ~0$- #/ {xL-MOp?R)~Ӷ!#5LxFiA0pM[B{e n;Gi{;NLOPHj 9lt]!4pNIwS$κ12c6lK;qS\Ә^ W+_H+iO@mՅ̿Mcp''q[Iz <9µ$\+捻L3QuHw]Jˮ5{mO,KL*s(y:[ t1b{2&D,itFBIu:l:v0v,/xɚ>^UgY 6hxbĠIK#b|(  P:W {~/G , [•w04I;t z9ǐ  %3TB[Ԡ 3}#Yy@LP|_o?xY`Xm̀/S~g̭b塕ivu&|g_ x19a2Ubqs+^{Q^Ovi`,ɗ+H.d­>"Mv-5m1jv q=RۼgB@C@kR$@ n2eԋ=ln$cF_:p+>G@k$µ{ &a2 >,coٲe^B|Z ! -L.`/>fL30>e}׾*%F9}|4chntB@! [p[ 9_sϣ68{@l(B@j#yu\iUB@! 3יY! B@! B@!0: YYB@! B@! B`f:38+! B@! B@! "\@!+B@! B@! B@ "\gg"B@! B@! @@(deQ! B@! B@A@XB@! B@! p, ! B@! B@!03pB@! B@! ssE! B@! B@! f3bB@! B@! B` u(B@! B@!  ufpV,B@! B@! B@D΁BVB@! B@! D s2z 6ms~{7ofm6ZR_޽m8cccnﭷ͟?Nfʀj܂ f.ii&u:>믿^4VZQx]ys-(iP5!ǚ{7䡡!۶NȈ{7-Z{ob ЇWۻŋǏtoτr<6ҳ)XjJB@B~_ҽpGu O?u! Uvy^ +#w{WAJ]zת>K~_^z~裏%}G?QO<}N%Lt{F܊{G܎5-~k*=Tާ#]>˗/oTlkz$u у̔\b{?=%'/$%Ka6~;Cvvi Yo-dMJGé#NT?&M6d )`1Xjp=[o}g~'96W㜍\.s{w.µghphogcjkzo*AJgqFW^tXx"\7D[nqZ]>+|H+ifs_|Dc,׵k׎ a=FZئߔ -_u]6l'e7.Fp#,>VC>V([P!rH`G~9JøaOjgzwٗ)q5:7*N;96O&^T9oG 0I7_O,#=zG R'y&%LºX,|p=~.QfZE> 3u:CyW"Gц9]4:NB}qkC,:Ѕ:r=TatA>O=TU(m3.s+8PH\_- Mi/8>VG:ݒF_ lg >7uugኮ.l# ymqN>DSv)=n:Jk‡/+]U:}[g}6JCۺXc,Gݪgܼ1Nզ{Y{1ȿâwG|?0܋/^uG"ߍǠc zƧ}[QKn1<&}11ƟòyAw>xp}uo=3^iZxq`}>&82|с ,hKYҧ"帿:vbך[!}v;XΞtYvD`gK(Kt65ic,JII_I:Al֕=f60ئ]9yOZSTeětI`Ҟ({# Y؎֟S(;lHm?Vǖai{vnm{}Z{89{!\(1M˓xƭvcϖlͰǰOl%uIrknhav\(t"IY m*M`f<؄DNcY G HzM7Uݷ#~MC)&O,(YyuUdFJ-Сgy$gFpbDJ q/rCHSBr 'ߢ #%s9g-bҎ 9\xm^Fx[ki+>h9%O~I҂84׿N iP> 0cIa36}c^7n,cgp$70w!Ru >|_ڠd}x.4)mmb:G|^w<t؅Fݥ׮w#fՇg;Çxۉ{.;rװP>n-« ن)֝ Q)3 Vb(g Aa?1-aVb?X;4{=.}!vnV?>DjmI@!]|y5!V,';Qq{–Ʊ&P/b;[rDo#OI[k[ {^XpMB=S&o >s3J qlll5t6,c&ɥ1v qrOtvzD iًi,[S.KH>lXrbFKF' ljx;!B.s4/4c҆(X$r}ؐ̂RF3;ǣph"Sy 08'l9%N8Hp%}8 fFyan# g[+#xBa@z|e BxBB 0pI?U5([ !`k8! 9Pp!`ΔpG\@L9PMzB' 0" 7F(CʊNNHcEg x<@Uon !䟸E`Ą+ Fzx(OK abgi7 n 1#2{ォ:.lb_n*ء=zW vgunpDohʖ:D]E W[l;mTkz )grC GsC pC8^ԓs6K{h[1xއW9{A{c'GcOǹr:y3\ynr;y7{G˯-=Qk=j5>蒉tx{pi^b{!*f:/{Oו 7<3ypz}t}z{j}"`= 1 {)mGfR#U͆r)UuD'?l?Jh Mm)-R9lv4G~O[o`>ݍMoePZWºyyU6[Ο / .H~sʖ8ýH"샘pdϴ?t7i"\Xn7 [<~L Ұ cԫ2GrSƚ&u$.c{Mu9<"; =4m ɥʭD; ecO7JH?u8D_QJK{1u |HWJhPݎSD@4kHa9 H)`E5k R噘(3 "Oø@t^DYAz3tB;% ݹe0{=ILU<Үh>/1 cbNE/h>ޏH|ؑ6|=дoĵn"(/| \$es1!}< Cߤ#&,#%pz{)0` gy!FcCD2N<6l1E$lk  LWDWPf LB~Y] ÁJoυ᠙QBL=Rhd M{FNƃG#^X޴OFM\Yxcn=!(K/"- OaE AnA}1kbx'PrJh7p9G#iaYƦY:;{hcy*Pf)WH"!gDqтYH xp!`dU35#3 afyψyGm [ XX*-# hSuX ;LxO!ֱ8=(KAIPC:Έ1N=˵sEUu($\-{]8pnan djF\p8Z:FxV:ZBԣ1a7 [ oT[wSG+D)C2]㐼gc]<[M/}c>~c)\-v66Db_08a.TۺHt S_sˎr{P?oz9{xo>'~o\wu=dcu4;L&[y!/{nËﵺV} z{KrDn; zp#\'n,l]_w lnNhGM@$9Dֳ\/9# ɔ<(p/>㹘pe<ǣ߳Xr +ŌCS3`fQ(F'̨ZKR w!& RϚglpX[g?|:p鎥#h:S;WI1,Cy~$0ī6c#9N-ʭn`J 54)q 9cyWlx# pf ~]ʋw";b8by܆KAw]]va~Ybޠ}Mb$anS2ָn Ltac^ `zq#\c su+wwҐ!J: _ap٭!-u^`L=CRՍ_]"V' 6l&\nU tJ,^=5sTiߗK/כl~q*mbUy\nyӣڙ&$Pֶ*t gJ9B8V3Fhk;]]plR.FMˡ [t  RLn BGMuAYSGZgSWDC 7bu ބz;2h*kޯ3~-!f$1/We-q=W =c+³tה6gc.1k.ⴁ6XN]/7I77#Rp-70SuY|to1wՍE*gvp5{p/*K|ߏNlp#,)p]qHo;/!! kSMZ/o>)u_bMg=#MfL` 5tPRRb?4ÔKߗJ]kJM&Ybab 'I,%u08)VfPO/ԛPl*9X{ۊ#g+Ok9ӱvʥH/6g_M^5 e}Eٲ}N4;pJ{f6vگkM_ax/%)nY/Z:nDNc6pGRx=\-#2\2+WFڽHZ Ա':(:!uG9W0 N̝l8Nl*kެ3~!T!!XFDهl1H1Wq!lap4i>x w<^ Jƨfۅ^ WkSxkNl;vefږV>v߈9Ս>ȥծjH{J[{M{x!a " 3"3R:I:A@fy`@D6uK!MvS#Vs ) V̨xp7a@֩n6kV.ʅTp&tYx.N`co$X,.~&L{Ng{+/k'65O>3ns#*AWyJxg7uu/p}fՓ:N6MjՖN-Ju:ءX>:RYҍ+M|l^dS~ Û }|$nmBK_@BVЦ=!Nr{~_N#uc8:[R_{ia:5zk\ƩLPjEu<؜yN[Iؒc+nW܄piM+_ޏ rJǃ&g/"\lH ,^-IF&$dLAxMFϧu4~d)^gx4*zy o:}}! Z!Ïb&=5(I[YH$lʇODZLg97lX.}UN7'OsgmPpb:p򁡆7yz>{{uu. [ 4"3-ĄW#sYzqΛh ?G^SrWʂ|}/$-mM\gg^S!mjkO8ACխPӹo}ԍy8u:0]yʳ3ׯe/qV8P' INI脻k0\JU7ݯT+p8`qxȳt8ϙN*qC@4i <$?U5H&GxFFIOaJ/g)̐;0nmlU={`^Q#3w/S1k*zV҂v9C ubtLHS=i*Ӊ;gV> ~JgáW:Eǘˈwx3C{ڇN>k *}:%ސðz<(FJׅ"\뾥˷suM!);Mik#\CVG sJ.޷IaRJ{HmL|^'ϖ`KߦiRb@ƇL ­GK ֹդy Nu{+:CSw{t71~hڋOw*ruxYFޭy]̆h)j{_1N;~ۄo8lEp 07gz<>[mg!ys: Fڳcsn\dSI-$EN+Jӣ8&$&2trA]MT9/ԝmVIRK0椉p+GlێE8XPIVRZʭX)< \Jp-W UIŘ`eְܳt!yʻz/w cm?sSrRVER}14o+c! Muu,tՙj;'t@n  RmY }2D/Fή K퇦vڎ!QWiϛl~ؾa#l\1lt=7GLڱ]4p+ّy:[Z_Kp.\o"\{9m,{Ͷ޽E^ޚM8oKjb6r3YlЮ%ݡ^Nri4 x/,)'+u-xNŭ{>"\ (#Fm 91?Pyp\w0@3\H3ex;1K/rD0͈7˦|M~M lhb,CfA1AҒN$6>wIk{,s^(j#2!1O',kS)•r2:  놽fx2 LK=Sq:S5D7Hqb$70{wA~ ň圽{#gI._uAx&Oa£~m9 r\/fhX,/0V)g#,1:3i8{xZ8X}h %ZzQ =qP&c G| t Svݘ/YuЀ;AC=6vT%Ҙka=%&}"5Nz2X ;!3`xEXc=.o)g-?qZ:eF=0/@Kπvٲe4#6F`hB>08B88 ;PL-Q҇:1PA7݅bʕk I2f` !2M3Mxe1gqAȰŏ&ͤˤMY:‹$6,f+ {ォ|ViǝL x|W^.Z=*•̤B}.aVY6#/ ( uzʕW#iqp8rPM=Gxv+Du,T:d{b|9HloO^tNN|^ Ґc,x!b=Wq7”\{Jh)՞ў+~x$= (G'{#$icL| غPO/rMg:^',ޅD8p E@X`AܡqKZ0=ԱT{ ñ\]=KC$WJJe$V7=q~ބe!muqbcqn|mJ1:O-g0AokN"6z'&\x)mEjcx.%9ұji=Ö>eCg^MWwYm o%pGU'Lo݈{qeMYPmn*O}Rv-)qtO NFx;y=gϷ9kn'01f t>՘=I!smmʅDEYG}cS~=ߪڙoMAv}`-HEl% e))ʿI]#L˩Fs葉[;HnTڻVo^J*?uv>7l,DVcNU6Vc*MqJ3LƕKt\ X^zUT|~}E]UjS ,J]CbGu6Ml.]孯@&3S,E &\gi6-! @+µ`z駫bXaWD! ~›Pp5& ujpT(BklIjϫ B@L;"\bE ՝T$v{Ԟ7'~pxz1ͲX.~eZ)B@L/x ++ޚ7~xMBss>C*Qϒ!j 6"\}.|=#%lv)OPB@M"{0Y7zEoL^|R# u1UB@!0 : UYB *'lٲjdtQ!0ɇ1A>q6>=S{Uq\D΅RVBg^*9B Ha>>(|WyW7ClׂR b`Օ7k݇"Jp,! B@! B@!prP*B@! B@! p,! B@! B@!prP*B@! B@! p,! B@! B@!prP*B@! B@! p,! B@! B@!prP*B@! B@! p,! B@! B@!prP*B@! B@! p,! B@! B@!prP*B@! B@! p,! B@! B@!prP*B@! B@! p,! B@! B@!prP*B@! B@! p,! B@! B@!prP*B@! B@! p,! B@! B@!prP*B@! B@! p,! B@! B@!prP*B@! B@! p,! B@! B@!prP*B@! B@! p,! B@! B@!prP*B@! B@! p,! B@! B@!prP*B@! B@! p,! B@! B@!prP*B@! B@! p,! B@! B@!prP*B@! B@! p,! B@! B@!prP*B@! B@! p,! B@! B@!prP*B@! B@! p,! B@! B@!prP*B@! B@! p,! B@! B@!prP*B@! B@! pm{9766V曻߾ | 0zA~v Yd71~oN⟪8s/>~Ptvo! B@! B@,"\o?a-tr;S.Rl77ze-pwݙ \&zB@! B@! fӈxբp_WҥKROww}w.yue]x9˿ˢt_^J" 5 . ! B@! B`! u mֱg*ﻷzˍn6~W^q_}': .u]ճ ,p.nѳpGwB@! B@!0pFcϟ>x>83i6{:Nfpt+ !&"B@! B@iDp%z?x*8O/²eV[mU3<'p[xq/:sO.E/X=;88>OT{ah:ŏW7<:i{+ܝws1]{xgq/6|-ܢ޻ =v3>GqϾ8Z3bmȹ}vr̋>Q.{k[̀y;g"&cOg_x3o?'FϏ1wI{\^s=ܨ{1λJǎhaϥ3<:^i[7>7䶙:D! B@! B`j:xN znn]~AFX]x}[rO؅ ~ϥGnʕ'g8rw.{}vz{ǯqIկ~y䑓~I֟ݴ޽&n; 'sm6 }}.f{ Ip'9T!vݘ3Ao/v&3<$>{ xꂊHsw~7 cΓyn :~Ȩz_'O+ayРaCnxxrװ{hD\˗s٣CԆ Q'AaZ'uUX<A혻S,1 mLHn~ ;硑I޻_|,B@! B@! DNU1Z{L .*`}nUGзNwwqGVϵ%\-x1s['71~Cto|a[C*@ 2UwaKµg=AjjX=ynr:s:4׫ʻ~ ;aƄO.[ jOj;HΚ7i[гv]i7 \;|-}~/_ǧNֵtB@! B@! DN Pb0ٳN=:Y?u{~K_r| iK~ _p'x(8ꫯ}gV_H?byd!ѫ@UJ^xop{5n){Jcv՚ǯ" iOO"1|mAnճ/Vj6 '^xs7p=e;dWL1 %B@! B@! Ӄ 5&\/NԪU*{w<l+p9T"zj|g38}S:/ֻbaрndD{#wNwgxz\<]-FrQ'[s-`ͅm-bw}8`uwl'{'w_L|Ǿ-/]`K߽wN  T]FB@! B@!:!\?nѢE}I62ӄ IgFώg.tO਻[ dAdۭqw'5`I.{};õu'V[ǹƓȨ|]Lx}<߫GO \o}Ζ'|\-u!)hkYpV| a?pQ{'d¹G@ ! B@! B`! uOG}tgXiz=bvsQ~ݿ˿T;00}OO?kQۿuoxmOfp~hGt%?|d{I]>BܧOcp#U6v۩CWwyg͜,'dwuӣg7M1[ks6tˎڶ>9! B@! B@"\pm;zު> 9kxbݛ wW]u/tᄏc^~$\rׄ^CY~_1Г %8"I[fQQP!2 <"]"sO:=JQPҡ~VIBsw4Fำ%bb /FUHu~:#ȍ")'i؎H19z8(4L;!&i B5cdyq},ʋPɭ ( 4cpqѲDxFBD.,59@ {A6dxDP>@(Fƅ @!. kphD.x9D<[94J:2[2x%.%r.KgXF %FÉ  ;}OxD$'\%tnN˿e"5g~1nmz!x-LpgRoUH\GqQ`×#F2y~Ծfd;,mԗRv ;cMÚCkhx!r?kTeRZ^ D T;C6G.8+ b񤂱cXn) зa$+@@Onm~]K^+P 2\ QX;  $T0 Y ׳bP *l[v|&p?s" n > BB1F,[qGH D#H*d#RDC Hن"? Czw(P CǡlFT4% AqzB0&f`lbiX&`eX%V5`-🾌ua[3pp$ |9ߍ7eއ$ gGL&"* ;  'n&"L=Tbq.q9q3q/I|@'H$gR)'JIH{HHHݤ7d-ٝNN#KJr(1yKQb)BJJ 2@գSbjzzBKKJWkDkV>ZiN4.-n^t;z0=^@_Aߥfhi jWk7j_~CѱL)ҩ9sAWk.Э={]_\N}~PD  a2%n Ǡ{>C}COdنՆG ӎc1W231ߍ2%lTèK^6 65jΘefkڸ nd2d& F.i\M"dfN3̓sך5`XZH,ZeXUvVere倕UU^;TkuZ6> 6lm~زmŶmOپKڮ=ϾȾ!aCG#1qE'ITtuv8ovC;F:fu ǥХXc>g3.mq}trszMm[[_Nj+tp==E[K ]{_~?]s/c~@V`Fශ]AA9γy\?|nk(Z1nUxvx}x_W܈HBdT<3W3a(ZTBƨN薉 Lc#i5wf48)nRGnO%0'%J I\x+!IԖ\:%4"k'K5I6ҒvO nJwWziSgO=3dZ޴#u ddekM}`0XV# UgdUd=^#W{%\FȜ9scsw'gKs3g̞)sʺf\7O%ߩ@S~^Jy0ͬYf͖>?iβ9‹mg9o{9-@d.h[hdaES.ص咔%-%f%J|U}v_o]/,Xlòe² 훪oWdXr**kVЫ(xfƵek_Lg]UUl6~x꽛L7-zp-[m-[ɷ7ElkN^юcWdgvn3[Y+{} . 2~!k`hM9}M⦮CiO[>bxdQђNJZ{g6։'Oj8u?89utg:>t\y`wG }/tT<|]'O\}OeOzKc3g?}ZŮ/5ooOKyx`{Z>F}=?8(CG V4+ v@Oq|CQS'V 7 Q׹V:zb0@= Screenshot 1372 1110 1 2 @IDATx U9*%*I HQd(אY]Ek7{ k.cʘRH%QhQ3 N[g=s>gx{5k>+gK0     Pbo     8W.@@@@@ Mid3     +     &4A@@@@@k@@@@Hk      @5    I5Ml@@@@ p@@@@@$@&H6    r     i pM$A@@@@*C    S`ҤI6qDn֮];;C*gQl F    iXn ?{i]tըQ#|&_WӦMі/_n+VpGN;YzEֶm[S@@@@@O>dܰկ+yM@JGpqǙ^     [@- {f=zQX2_V?1     iYm j*gMzsvc@@@@.p”(˦|R \ㅭӪ$]}Z}VQJW5DX    1ձe˖TMrtC]aIJKWlmԨu=f_V \!C,kYVpi     %Pf'ۜ/~L\+l4iѶ*l -07X U+f^N,-6*8ٳըQDl5zۉ<@@@@*#{-rh|+GICx᪎GWBUEhж[@@@@(\o߾5o!Rn񰁂HDPUm[ [eQӦM+pt2cJAji*~ vY    ]@-NF9ꋔMa1cܳW24eD!8b϶U5ħ O6BN:ټ"    PT:vXW}p SugxtӢ-~|l [\5zׯ3    F`ҤI6dȐBth=#³|CV?l ["p-o=\ϟoK,ԩ㯓".X.]j쳏UVH-[fs;E~1cnڴiulbEY˖-}UV gmf͚q    @ (HUx|K*4ԝ5O>lij3zuvw~uֵN:;i…؛oik֬qVTɚ4ib]vo*WN|Jn/^>b[nbTn߾[^!믿n_] /ּy6櫯~>C۰aCdO;jժվ=~'Ϸ\Э=޺LG@@@M@ /P(HU:p@wUG*sY֟}CV?a;q:珬mtD(+Z5jTM ^ۼys]rKoۋ/h:t(&?.[|y9s쩧>̅*MUaz]wٓO>s?tj?BWe*k/"+v&ꃶ)0` :wn\HސBWU˾{ӧOx6@@@@wVyHt>~U 8|CV~gV"pQFY&> VZ]tt+~~k׮.U6lذ6[W+c:(;LԩS瞳ٳg7|c^zi O{n ;wl\Gy@AcذaXc֬Y]v8)'^s~}:nкCEW\q5ի/Xǫc?#8j:Kzw\E&o&G_^{f@)/ʱcǺ~Ճ1aS ?9sݻ6z~^Z"]Ox   /KkR .2Z Ƒfu˿n?4iR@TM@˪5:l=#2zsuܹs]?5kָ[u;n۷;N>db NPlt{Xi =[lذ}Yvk?6C}UWZ6>@4@@@@(Smдr,da?AZA[~zYJઃ<]`T F`_󴬀^ݪVVT ̙ɮTjp-E?~+vզ^=lٲe~Zk׮xGVJFP&Y    v%LWp [}?WZ*^zBp Tㅪo~n@=zez%\bꫯlȑV~= K\6yd@!X Unܸj֬jh*s=7tIvehzUt{c~W    @a=矏[FWea/=%QT}/k t HD*[NFǃ:x.H}gp᫏?lNNUg6UwyU%;|*~dh@(HVjժh{   T4d*NT<*:urY9Bp5o3UyjCU|?,^K5p/zUfu޼yS~(WլY3a5*jB]ઇ\?޺v+?TUBLgU&zpg}n-Na    @% Gא!C\(Ew(ՀB8R [y/輪k:H(W ] *VUkOGGӳ-t}7EKTYڥKWͪR Wj{Û(1_ObM.;ѣz>hn0=RJ?     QT;vx *`5]l6e}QV>Tg?/_ejQz4跗MQGe{:t U=}]jժk^ySԩSn7md_~}v^{md9evGD7Z mIdbo*SL}cX~S @@@@ շTp2j;.UE6g[.7l{/y/Jw,ߣ D=*T! t)/ˡ7U[o^ˑ{T=[~T-_tmgƌ]q,??mKڞ*|Mj_^=]c駟6]fxzVp7PjzL!v(/Y-}/;4uSO=e׏l߷o}֭y7ڮ] ^{@@@@ (_QآE |\wqEqiiڴURůZ% [u 5GNxm)/M;AAZ馛SB̻;b/ UW^sx B[_~~BEUٹ&Dc=p=c˗/6mڸe0aUA VZUDxb~xv7|FtÇ     =1c$`b9+KP>,VGtL6l˟ 42OU?^@@@@( D,*Dh8UVg@@@@2-N;EY6n V W>}]~_xE@@@@ɾghɖc~kΒ    TLC!wǓ) Rd$    @PTakd2+     PQqƚ*\ ZOt}#+     Pc<P8@4?<]/    T䟅Z o :`ӣg@@@@@ o9MRo bP5_W@@@@@$@ 4(    d@ 4~Z@W /J^oW@@@@@ ,ԿO\W?1VkE-kY^@@@@@,/uLe Tg$ T!    U ^>Z p |xdkx=#    Q ;kxD" K@@@@ʫ@4cJ5نұɾ     @y(PO\-}D@@@@l(w,鄰^W@@@@^be=nkl8LC@@@@*@nE>8 @@@@(M@@@@@B &B_@@@@JI@Y]y0V)5     P٪C -@@@@@4 ԿFoP@3     Ь @@@@@ mI+\MlR7VZR_VZeUTgN    v$@kŋۦM7ne˖kaz3{"o6lPi᯿Mž    ۍxU}8eS()mڴipB[|zw)B 0هrr)R    \Cxyf]ȪW}.Pm„ j֬i5|.oyWQڹsgkݺuoUשSL/SNqƙ~_?qP   $ pMJT|I[dHJqO?Ѽ<{g\U=ꨣ]v;~yXhѢEn:|w/B[vծ](O8*   H5ׁnv~g+V~jU ӟ\Vdb K@@@@_lu֍l]k*Cխ~[N*qت_~{z*eUuw߹@777ך4ibZv}5k~sի>ּy󸻯Yf>mVZְaCW[Zzogzj\Nܴ?~GVj׷vebkzW\i3{Qh/k-L?~MֲeKkڴ͘1ùa5kfx)5B{,X/äI\߶m"w鸪W=c}}i 'OlU\vuWw έ6Pa ]:vzjC3tz孡ҸNuM9slZ}M z9G[r_Sչ+?{m]#Gj ꫯ5mj[l=   dkK8l-W)CT cժU6vXSk:th~ ƌ*iKnW[ZҥKQkGVm/ᡀN?ڷpe{M0CQk(`-|s[O׫B8d ÁRsMaexh=\P( 9|WmUJkߏ8w ܥڗW?dȐO "_>F]`,5=P֭  ,|5Ot,z <} cN5о}HTAC㇮ O?@?:  Tb̙sα=mGABT\?O~~_E~״z֨Q#27    Yz|@IU)QPj9smڴqE}=wuRբ [U-pPҫB:M ϴO e7h ?HUyG UIr{キӭ0rÆ TA`+j=lw~r霄W 5T+g?KAgQ!_]Cvڦ*zՕ~ Uլqgؾg*T' u]jM-{޼yn:އ~صkLHu0UOTUn㗝 ׺"D2Һ j y_t^95]a{e3pH    Y/P0wwA )U>7p]s5 JC#VK~(!TPړO>9<ٽWHU[OC;* 5T+ztڵq}_ej?]]=Lrx(SeF&N7nܸ@&8c]Uz8:'VYYAcUņVhUMk5ʽZ P6#ש*LPujW yU>lt(Ca!uGm5    P~psjVv0FxmꇪScU<tA lW)7_^FQbE~-Un @$pexyU^wu. eUVAmQFt~hDoχ>ˇ_ytbULF/Xa_N03Co[,h~X)uJUj=]~7n֍ϱο~?5]mm)TU*U:V @@@(YxO<1„wU՝ \oUu%,YTq1+cm#ѼX˗4?_8᫞z{*[U]_Uו?Cx߫D GY;3np4Tdjɡ ~ ^e   ?,H\rygC6mԭywy@es   d=\:OwAweS(p,[n6p@S5c=XX UpIaki-[t!7|cz.Vؽ{w{mʔ)߻IFT}ޗ8'x ?]wTCTAd5x`vW)0UjI]O Vu==TJ^xa>2>#]eR 4pn.r!ChذvnyUjZh?]7bߴoUjj u>)ުn۶mZBF~/xO>ٝUժUs+eː@@@@3*\+`G*;ukK/4+`ώT*`Rť^zI I+9U+|E+š7oBA=HHQgϞl: \Q%/?y}W{;SIUN<ǕW^i쳏 zUUkJJd=qgz z*,9s LX*O1=u]}J:^r%v3cӵN_~d7c *o%١c9Ɲc{zp5r:jra[aSN1_]@@@_ 'uK&{*HU)XO\FXT`8V!(~:XC5[:PEJUַo_w }qkBբkNu5pkTUE@@@@R pM@@@@@}    ,@2 "    \0@@@@HY5e*D@@@@ &a.     kT,    $ pM\@@@@@ eהX@@@@H,@؇     @)S      X5s@@@@@\SbA@@@@@ kb"    ) Lł     @b>E@@@@R pM@@@@@}    ,@2 "    *׫W/E@@@@HI הX@@@@H.@܈%@@@@@\Sbb!@@@@@ kr#@@@@@R pM@@@@@ɍX@@@@HI5%&B@@@@ &7b @@@@@ %הX@@@@H.@܈%@@@@@\Sbb!@@@@@ kr#@@@@@R pM@@@@@ɍX@@@@HI5%&B@@@@ &7b @@@@@ %הX@@@@H.@܈%@@@@@\Sbb!@@@@@ kr#@@@@@R pM@@@@@ɍX@@@@HI5%&B@@@@ TNH6m;~g[n]6ܮ];ѣG     @:J-pUϧm'NE6R6    %(cƌ)^]A `      P9    $( d;VuƍVJ)f:[aqp2[my:M7U/@@@@ T,+]{sϵ;Z6mu֩S'mԨQe˖rsi*l_f?tI־}{{wg @@@Ȉ@ \mvQGSO=e-ZȅyyyO?ٛoi^z]pPCguVؕ}^q6}tSsm 7    1 J+B~aLj>`zvUWշgY=\ e=-Z~;GY[n{m5j\#ϓX}хvLm.ѥKB    XBp>l骊'x:wpBm̘1xbm˦ ժUO>ΝBl7%~g&L+WFK2@@@@8cuko[̰UڨQ#^yҤI6~xQR%֬>Cwnv l-@@@@ ->ptMX7_GHv;h~zd>(>ޛ5k،3lڵK.ٳg͛ׯt{yz75cw3aw^tn31~]orA+e[[lK?x{~^o,6kcHX|-Xok9@ky @@@ȼ@n)yߠMaUTo㾪zja[vO? -zr6i=}^uԉ|p?< =yi?qBc9Fom=W^yŽfΜij2K,}\ ӐIvNZ)3ϸ)\TP[rekժs9v}6lرcjժ}v]wЫW k׮1 yxݭȳQ7үXz:9Ku|{k&&۴u̚kݏbP*9"ϦlʷկsfvIU6ؼ[UFOdok.jcxwQl[RکT·U~1 G@IDAT{96hX͚orEUj؛f*   $( ̖YzS*O>,emowyTU*a]~@x; w͛~>S. F-[^ܽWu~4"B1r(Տ>?~zɑW-)SW\F(U_vnxkߴi 3^N<~oqXkZ&Vu?^S8p9WAkf_~?f({ӦNj was{{>l?˽j߼ѯ) kcMhIWU5ʵŸ Gdo~o ,U=֭b~OYgUՎ1Aث U*41;3{pd jUblB=C'1mV*vV=Vٺɞ{cpK77{OC|W6˫Yq >|k{M]"   @bD i*p {5 83\Ejd(T%*<5w_ٳ T7d.U*]5z-/8R ՚5kc=*S;vt׭[W/E zq*bG:.Z (XhwqG$lu~C֪zV!f  ;wi';c]E*y^W_u /?Uꦺ 2UFUVK9(lhUK=wkku֯_j 5TzWqƹ lr5k? ߯BײTٳk)0* ?D{m55P駓6/mm;Sjεjrl|{}D ac7َr ?-n0(mW%k׶*7;Qy֦Eg[[_ ^w!yjݞonot./ tc xrFSݾ\51I^3Mv 16$@@@(@ \lUEnWm}[>@_~v 7`Vᬆ*MP8ucvs`%?t|r~^:܎?* O=TWѫ &?~$LV=Cֵk6Nn[{ZEW)s'DSh;>#   mGe6w8ޢE23PP7tzve~m]CՄۇe{zjs=^,+h~t,:W~R*[Ukj{V^xUie3QO?BZ'>_6Z~a_[68ȹ4iFF\՘14ZUƙ][r;ɱs~TUC;:UezBa_#*GZ̊=*a k=#8pׯdW-xVXr`'~ ~ZW     ^ z&^nW5z}[tX&ZQUUh[u*G5fKէ*P͛GfmxRC'znC˗c=~*]s)6vuTjatUN8mM6/}GYgSo;5n5칾5gٸ/ hqXPƠb_U{)5r?A@Zw/n O xhZFV']`o Pm"B[ w@@@t t}ۉ(ՃcS 4Ӄj@U~e5hݺudnn_n]V|Æ ]P?JZ#OخdkEksp7&9bzLᇋ[    P tw$ٷ~㏷^z~5j0( 4 Xg{W(, ꫯ"8{=Ls=FfxòP0R].MyN:uTxC}PW\ovM6Wohƍ==Qp'DSSO=\uUvԩcXj]) ñFfU $oTzulZrl߫Yu+H>{l]QOַFnT!-UIWV&X d7u~7S6I+6   l})9+[C U mX!N:$S8jnTof#;{bU[ 7t[짯<؎9^( e]"ۜ>}z}.MO\zd_ڗ_~Y+dz饗Zk#f -x3&۾[agP;2YLypV裏b.>}sĪU駟\lh{q뭷F&:TSNqnkKPQИS}9msouSα~_G˜jHU[_cocMpz6sh(= Kۚ/yɶyduR5mq9'W kg7g^3Ujt<\ݠu'   ہ@?p XJ˨ .oKUԣ>jw zl^p>[\RAPۃ͛CZCSa܃F,U:J &LhvrB;? ?x{SoX?T Pխ z!;]gUkk9?.r>(~ޅvN?tz۠A5&#}kLڗɓ'_|at_#l NUAܭ 6SϷ16 `;Reѵ^bv*ۡV s]lqj̜o-UZUU{찶lMPM;%u_X|V;q;*؟_X?T1=nn@zc&Yn.*#   Pgxi D^6S֧OWuH#h~{]ҭ_o~͞=p &(0ׯ_yHT%5 s{Ԯ]=7pWjXaoi;Å|mذ!8F_'_WT׉>G2_gܥK*4Otm> FMT0\fMw (T_(R!xΝoOJE]W-կ_? ]?L2T]u >;c͎9s+6} .TU~b[WoKiVq}]_ rGor?~ Sb'w)aڍA늠V}e? ^wZKmKU]>78v#Ys_Ē    QrR B{:vE>޷j-sW EޚM]!{c{Qh^*ֲ Ϫwh]{K/Ww,ڮuѦ-뮳W^y5-MWjbXƾ\&Fyݺu_ ZG_nQ*9Y/꺬\``c޽v 'hE_խ~~݂׹6ԸA]}^Uj12vf*6xVŹ}Я-jv)U")֭cBW˃Ojf[9%NDUKNj Uk".Z%\sQ"=і   e)ܚ\ *<#2<=|-*k==(+\[nhNS5nV7nBSjU۵7o4(vu5@#vM4qmb}*>}ie9t ncWhXբAǣv U 'H5dm<֘4iRX\k{ AzճUU x֭hiVAfrRJj=.]CU^ vαZC2'.ZokX^SyAae2xWF06CU?c[gg\BL}@@@(;c%iȒi nkOF:4=H)PW[)ӓXOF~C?XeWt jG GU [U"oPhXeܹsvէUVY߾}mns{    ] UgEy'$rѕ7 b'N[C_4 O&/M:=I_ʕ+]/M>9^dec6Mf@@@@ʡ@i) [ӫW^,AеX+R{}CM>l=](^er|)    @>}kzim۶->p ,?h/ӣG*]=F9{U[T\=K*΃}/-]m+(_ {    @x㍘-UWcM5j0Wnj%JGmW!:urh*[k@@@@@ U2\Mf?|[`Dk| td@@@@(@(R \5klݺuޛlF}:'Olچ~:TWϚz6@@@@@#+GޕbZ _뾢]v5V{@@@@*@n>GU[@@@@!PnWj;%.#    ]SNʅ    خZ dm"    ^K    P    xW/+     PB:     \     @ r`u@@@@@@ W.@@@@@ Mid3     +     &4A@@@@@k@@@@Hk      @5    I5Ml@@@@ p@@@@@$@&H6    r     i pM$A@@@@\@@@@@4      \     @\f@@@@@W@@@@@ Mid3     +     &4A@@@@@k@@@@Hk      @5    I5Ml@@@@ p@@@@@$P9Ma3-[짟~rY~}VZӦM6w\[tURsO[nQ^l_jժU!x[Zt[αzus-V!+$ v"hnKYINڵkmʕ6lXMo6o<[|լYڴicUV-vJcP޾ؾtvѢEիW[Ջ^,\?wYt2]WN+$YBַo_mz%Yc[mnMe!u/СCmֺuoŊ/Nמ~~W+/ǔl;[Haw߹rnwCEˌ팹BO?m#FpA^{Emȑ6h ӵq衇FooYqɖ?klF{<-f)_$g|ن lԩ+jԨQ>viGu-۹sg+>7n)g͚eGqDv}ҤI0aoڷoogNN/ 1),?`jtՎ; Ř |02窫f͚E>7^f]c0` / kwuWSklNn_~eCS%k 6ms&fRA93c *@;,x,;l+ַ{6~xe]O>Jh2m2_W*>#|vi~^H뻩~ *ڜdȖDN 4(")lγDП']lsk1J&w1yH]Nڙӻ}'kVOQ ]JT-HrUU?{oIQD$spɲ YE@PrCQ1?!A y($#9UrϷپ}gΙ3'{>{9:lVh6Ut6ԧV .#]+ӢO؂ayq;찃׿`OzEhX @{]C0+q5OǾ@>^NdQ/2kn)8l "XkZ~UW4q {fR75A.GLɯ*=Ndĉ/DzB+r,xsˡR+ws0~G$S&TQlI5~xu!KF_|8¿Y҆(޸̼D4'|=C_hʹSe3}M7NH%-آ4?#{$-/"iNX,etژ'ofRKey^xm vъ+pgyƱزbOʜw}x[xHONz?`3XQ"yƸ"F1rhE]ԏ; ! А"{&k|SMmNqO0ͽtd ?}u3vt7SƒJK qK/Sx|{_/Ns#fI  w^79Žt v75,8Űyi滧WI> /0ȭ’źѩ禹:= _ Yds"<;l0Vp|c=J_PAy\q)|MRdmXoGcJ^|%?t@$ "B E}ϡ=[mYOt!ҡ6ݛz/SҶ+Z*G~)pEl SBDʡlEڊ.S>yǓ0ߋ}VC qB`DHS[UZ_lؗyl)K3c˕W^٫g 'c+YTIzȜFz CE~\cj3or >K{hJ}^AB] k&ZXYi\`aLEet2STg׮zj|^]W3 6 T rTCȁ^ۜEY_|wdmLb RA.$.Vfq @eG #ƎOdFG@wyޱEYPPD('3lK8U>LQ  q. a8ᠤ, :G17`_`ӏHpfN =mG~#x 1 &(VBBiEϊ4G99S}d'`B1EG_ c8^E_M0}p<"kP3>:kA\s~A4GCwm(+2Jрb?|=lFL>Zx@C.މA=\?uhYI z01 ?R~SQc#~p0v-g!_ݲ&JQgIt s~q{-MQ %Ѯ,>{$ &ygFI엿4 O~c'+G휉3yaLHbI$QCywSܫ&%0-̼T&,\Rk$?llnT`}A%7Lqw=<~$=cZN=V[n{'ڽ)>'Gz7o БI#qR&{ +0#DƸal pء'j<$Ld'qgU sf<tHW8_p7Ca3A00n0)ĸCl6dx1zwq)'(+8DӢ  (m@qFbe8 0Q' -xYN~ y!V8PpoCe0?N +Ř>#ޓӋg8d(lgRIݸvgQuQި{dfO$ǿf._m7裏7cD14Q ni25Yuqzhז/`$c'ngJp1VMoN>0maۛt^"܅Mv4G:bQ\r#Q6]xnU~3K.:#ܰwŭ8EC"js&z1Ѹaȅ{Nr8lV1.=%wؽ8_IU8\ɓqxeϘ# eDwx~GHY,ap bih49ln8ad212r!5^c \- 6̧?8n`-"# up=qjB 38Ob܎)xw>cbYv;tTV`'VIip9\:V[P,KH:+g}^>VZPh5p<2ኞ uh3&H;/4˔^l{)cPgԼ/y n4Ҥ7MPnUmHJ#,Kfey\^譑uUMLQ4kHְ8S>I8v(mWX1bB0/B((o Fґ"ƒ37&"B%:FLu\ᤆP6(WI+?CL8PXp:0I#&9s׻V%6Nf q1i8=~ 2%™Uĉ8fDY( fA }'&;Mq(% P{D6I#&x,O##BMX7w/C [E~>Q11zגmڑw+PZ۠h6i*\?wR$Cj UQNE{=T,A٤oCUq>*(Qr\4l6 ED-*HmCc,7ʏ10tr2óPU)K;!k< )ppT hHan筆}YEs{+qr~jAnf:[uf+|tS3[b`w!#/轴ӵTh3>7:2bىIp<^$ѭ1};'>|7H&lF}}=?* 'fD5]}2ƅV#1iV,4f$Ɇ0*S =a-itu*KVYnS2M9) zHV'U]AN,gh1jǐg~'?RD\B7VQW+HJX.Ls߅ϥ}oG9e8iC)ɬ (pA=<Q#4H5+˛)$Q;@C89 $L!D=BϟPAh*#J}J. 4C/v4@ɂ0,R WV;\[j93ɑBӨ(aj*$L̔4a)<)8tiGp#"]#B(iw?OjmŒ,"NDk(D@Ϣg,\4_;URn8~5"d /qNV%:VHe0AJ4ftHGm#V>L|ń6 'g{(e8` Dχ;ж2aҍjwY'-Kmy"lKE;Ll-%aT(?~ F 0#RRvBsdi"PO`{<+?m^udhanyœHW荷g:8{[2q.lOMMn8n_H"h9g9Rlr\RD=ECkp;uVl3{Hy }8PP8JMzDAeM-Gl8fdV94Qa1!ﴊ#c״2IFP"6F~ ,ݛt/\lxREڈkZ42M;jǐgzw{YClO*O)~"eE$ɕ(_=.~>ݎrWjdI|Qw//ﱡg>"m)]R)@IDATZ:9>YN@gL\QreՙOPi%'Jֳyc䄈Hz6GD$q6w ?8 PGEZ' '"fHaz/NB^( Mc8QXFǤ,Kqb3]!J^>RڑOv"(OuWTyaz}J_!lwaM,CW"u.tZ^{lpb좼/lV1!˴ x=koW>q}^?leMJfυT%KCjpFlYoϜp\nYU\y[e!~Ӱ< ݙ,ޫygH iJ{n sE?>~gnƜI4@%d A!eaQ5ev=mdyʨkUJ7D<Dz9tF{۪8?nWxCe럚Q4o7G6 zۏ~EU>TfrT,=dqb%4A0<ЭPXpiOlыUg)h0 O"k'3@&P<̞jSUĩ"m#Y^)Gj?0V|Wd0JOڌ$V^gUʄ u(ao}[]F (hQ8jh>8oȟ ġ@9N98KҢ>=]/pe7`y\`,z&T4o'Th8wn򀲳܉(]3Yx4䅔Sq:\Pioc.9ޮ|T?5oyRu>eM =NU%K;!kKq@ձpw<0ȌânGrXTG~ "CĞ{߽. Dr@׃ATs$Z\琪'hP%OԫW7ImL1H7h3M`fE.3n'Ҥ9Vvw讱5^˔^]le5 wԍHe3kZcPzŒ@.F'X+OH8 z*s<.88$^.l©Y3}h,[|>*g?{MK5g~m  cOWf_(Hi,8 E.e $D|e7JT9`F("=%Ӣ12%اhlC[EJy 2n*+kn읭zā#܂䥏3Õ- (;WF(2&wS&VV[mԎiJgdWTsU_U]VmeWYC=$KQe2%hx YyH[N˿ȵnEn϶76K=B롇 !6oD,Mт- Bgkwa%Zf(v6v*@Xd?D4n+Y> ƾvZv["Ǝ *A^$b͚!r5H]JZLl;(m<Ϭ3o۵ʼnTmfD CRR, 'WK՞y@y(9EHN]wFm;Op./C E^±{"cqsz4 1߫?p?1'RloW>W9%0LemgݲVo&K_~}Z}J9 kՆ>p7s3T[WBޫEgf*i#rpSeŁf|GY[u2z%-f?j8=: e` ?( ^z&*>YÛp$aqdp`DD隆r;3k 7ws|/~'opE}oiemen=@d:v0Fl D 4DN0{BwqGcYO\4"z!tso9pS&Hsx?봼`2D.Y'&Sv&b ;gY| 'F4p1piyZ-ەŧư4>;H)'( -%aTߔKŨJYnY}^>v;7ϫ/?c||͙嗜+=5~{$qb{I+o|g`C4LKNJRZVϕQ5JzM2'MtEejxyFڣ'\&YuOfS'#46cc9|'h/_/^h[NQm^6e;~UB7 M&~?~|ڭʮ-[΃:kø"YA\! 4Xڲ3ew};2uwڏ 94C CC DCyWKFtGIS(^wuo(h 6I*KqBXFb^C,κ+{LO7t} ,'0hK}W_}u=Y"ep_S N,(t=\hdoxBȡ>f̘Q$/VEK.'ԉ˜EOEd)z~.{Ą@Jʇ:PAFDŽ#iDO< GAlQy=a奪ei;eM:ZqCGqwOq8>E7]7G?=LO4&3Y*ZliܓS~:KMsG1.5IyVLű'rM:I$ _rOјEq@Ƨ矿aU;''#1F髊6kUF뭷#Gm.3;i5~XNW,y5jF`<<+gJG$ ts=6FyFfG7xmR9tbXA ,y_vPY>W6ԓHU"K{?P h?΋- 3N ,oWړ]']X_pA$)r,^pQaoV/QLq蓾旿e-=fxQ>e?Eg6JK/ } lʣ'k eJ*MV)uxC<}CG8hk[o%yBF!_)ϡfȰFMdlDl#܅ODmᆵj`fa/[x|_iѶu;.r g"r=.D.9ޮ|T/>!Ʀ:?_%O!{s"Oiϔ7iFW\q0կ~ t5YQٗnN`;InŇwޝ^LLa˙\=ٻ7'g]8f`d//Oso~CDl:T_:ѧ;,༃ܫoMw8;u{&9 $-8w9yG,֟9K2iO"p2\ĩD &zԺ}Q]z2qIs&9LLSowXԞ{Y IK'5&QX݈]FitQ;4_>O?늿Gjcyww=>+}u6 zD+(/6 +VZiIzL9eЫ0:+vT=۠P ye^FWItfi,onjYl&W\чsB@$B( HN0m\ 96 ǙE<7( Q-z7Nhpxl%gThl! ж wx{_RL$&|B>R~ˣl8QFkq~Y) " tu_&<qo/O[`E{lܠm0A]q1S o B:|L4.[ڔ|)ZȳUWV;aRRNڶT/SO=GвRU,HM']i$#LSf:XYxoU)0(|E˓|v@oc f_ttq'Qp,5"i= NytVU:Oǹwmu\@V,e 6id<.Y,L0k簷 C Hsva1H! @I'䍷'$!`t!i.,!vV:#p7D]k CrwC1 !`!`#kDpIhjA$u_|_Ӗz|3ٓ;6 m21ڄKqi#@$!g3MU"E B1pƲu!` sִ!`co`B02 C0`(dVn@d(gp)◶?[F:-vq6z@0k簷 C0 CkC# !0ל%M?0 @CO ll믿޽ꫵcIhcf`-#C0kkQ!`4ubȩMej/!`@/8b8@.@K`?ח_~oZ%j@0k7 C0 C0 C0 C0 S!`!`!`!`!`Er7 C0 C0 C0 C0 ~9\QcZU C0 C0 C0 C0 Cõ[!`!`!`!`!Џ0k?jL!`!`!`!`!`tsv0 C0 C0 C0 C0pGiU1 C0 C0 C0 C0 "`o!`!`!`!`@?B1*!`!`!`!`!YY-wC0 C0 C0 C0 CGõ5U0 C0 C0 C0 C0:9\;n!`!`!`!`sƴ!`!`!`!`@g-wCȃ;^~e-y^|7t'Ntԧܧ?y㣏>r6lۙe)^z%_y׍1#e4i{7|ޟkmЉ<;\3X.{| Ѝ:=ge7|>cCo?1nj!`kwB܋/e34hPKӿN>]s5 .p={'zTcwyOcʝִiO<&LP\>[gurdQX9<_}g?LXt'x/ǗnVȭmRD)Ũ~> 1묳6& 'yquvM%^>P]+bAxs ]|W^q_җjob\%G:^xk~.lEu.ۖ+ltn[|f;찃[eUZJz`{wn7s_~yک~G'?ʝ98 )ko}[+ybmrCrDivaW./ d3 `RO]׳elWUyZo*rHeUKpxAKvxaPYls7|^BlW+s=fUMJ%́u-?q,k5[ 7Э]Q%Q,U||'vG7oe@7KE[<ӡ]׉> >/r^[vW4pmq 'K;(@lG-DUM^9[Ӱk["X/Vg ޘC/!`Rv]_֖}v0k1 ==uTw 7wF88Kp xݿ/s+? #bX .#2&N72s4H{3 V[͟!-^{K=(+{n|ro馵qA\Dm1.DP/^ /g}]=lK?62 /#82⊩tA$6h#ɢl AkY?)A"b2T"LӨ m{1]tQ}g&㠫gy=P N;!Py_}Ucy\᱅ZAz.ϧOCV]uպҡis9rs9>y]mC吏zIb-x^?7nO^Ǝ\z}[Ϥ[oy#&@FJ3}#aE{ ɞDm _2o;2d%,wxD!;,*#x ]0L,7c#F 6 8|v咱2,}_M?R&f%K:ȏ{ԋvd\Z MC3V|3}U }Y(wIƄ{6CE!"a|#] qYԨ'σehDy^yiDdc=[ztľ8 SH\+Rg8S^rp7:/_=C~)3Fmpe@HE^uU~P?PIxOWk?B7l3z+8}eb`UQE |;4b&F ey %y睽ҩt}-q#,kQ>Ai͘'{y`(ܿa8s~D(T ᬽK{wQWSZr9pEО-}5${we#lkƽ-8h5kTw wx9X뮵W<餓#'_Pvۚ6_FkHFPlw38%{@J~G rHCZ5i#[/첦%uN̸}35n2:~e-ʚ!w'c5mBSrG+7e.n}=AH=:,>N4&ƒ;cg~歃rMp.AM1yHN#/0AjIhEd[nef6y X\[L4x^O#Kѧ2 eQ^K*:nG}9?tpDЖ}gWpU1 X3'k1<򵳿gz/$'2~kڪ38!`0X=Y?՝ɛz7RT.xqݎ'GywZ${@rq ܯ⊚I؈݇uъ05gqG<Χr0"o|?g(ouE,iix' &CB;G=}GsJhz [J@E*=>/X Dq]udnHldQƁ0haElm0kyࢋ.^0SD{KnfZϬ>3R8 "D{ųO 8[1db`@ m K1D(JH1(,G]=j P:ȁ.:PO Fʉs!ϠM}P DR~EQFŰaáͻ83Mf SNqp@ .駟^{I}=Cs)eBE/Nr WOH >E3ҊR F+\J9Zky>Lj* ii׻Ff%<< ^@!=0ʋAJyP/bh wxzp4}HDAgLDq>; !CebR80nfUVwڜqqaDL[jjie}Yt-"PQV BR:e "r^OG;<^&'$tQGx"쨫DЇhט_]#~/]k@{SfcL ʞp0>F=⎱lGEYc%]5#?b Gyۀh2m{YuMH'c\p3[;d,B!1d{ǙyUƃlwE& 2mB_&@VV 01!DF7YHgEy@Sߴr9Mp3<^g L⨾!jm)s7p 1u*Nڈ(+c3ua N;գ_Z#xY5۴r*cA3.Ñ=aE6,ӟa9ʈOt?^@R?#c0N@"1!ЩG&cx4~7;uDUduaEw D.\hWM2#fDic+QE,ViӠي@ٹwzY!E;l {tWHfq?`G0NP^tJO{'?IneevFi7r '-⩼Uf*} {$1\ڊv93#>h?ӄ/vPD(qu '9Nq=C ( $DP%MB+wq' 0-.*Td&uկA2cXAkʯ'NO-O+ iwe`(b$}~72e'o8r_#'a:(Way޹6(Qp7|r͡ IֹWu.L@1N3F7Zb#"eD E6耿#zQ?y J|r$jOV y!8bPB+?[;= x>ma(.e՝/+vKmcoD0ҘpS~QFQG dPYN!/d 3Pճ>Qg:\ 'x@ۇ(ra>GyƏeӁG¾PV^*M mEDưaz(`l8\qʠ%"=gAbR<<0T1dH '/iGq1,[:daw du e6|qdWߑ/Wp fRy>AT<%9&q8of y3D" jtBAѹʌrEc!Z'܋yvVݜL,oNp+QE΄HzlmMgϲ-1qq{!d,}I=MR${9'pi5Y= 5. e :vu@~( ĘwL?ҧp8SMh=ta=0֣}6L & 1, ˆP}7m.]eO7yR{q/NqxOȊp U4_O7L"co"x? ퟢx*zm`/pLJ$N",R 8M!p$ADH!f[VKE] DC@©*'G> 6K*  ')DJeH:$4bNSރmDUQ>uPQp < e g/GcL,%Uug mv7q0:xO#q:iW\"&TyZ}>eO|R>8̫/(=>L>߳.pbDސOBٍ>32wQ4 Q?a.OF Jy!)2Rt_}]gUGU>az8b_DcZbR,(m:7Ʈ W cc^eӤ N^?r_VEzgxP/E|@ t#qV;V9Wd˟cO8C_5eJ}':rg_D d*M?=ݫYvܐS,̇>Xcx~?pVyhzFܒ'zO jx?g*tg"OCg%^%_y*+Ew*"d8SedΩ4yU=&g_IlKSiPcXmq/z*>dB!LI=/ ɡN}1I_Py)84R/,RD.@OP10Jb99$L#_0:T&1P^qy#Y;YG9˜0Jz'M/˨Bc ѼSy H9v00~/LI1J*b?Eex5ivpL7{!%"0V&՝*ړkUQl+]1%sPVh%el'&}"&7jP>JFlWDO 3EHYl32K'iq-gŗ_7ˎci/Aԧ3mb WgK#KV%+Ac(z|:&BdCτ*t,^R)c#U,y7<=I o,kڸ̘Q0 8{xbH-ߩآ2S% җ+R4,I3ǰ1i?}wēs *gYVy7k(7f"{4yϾ1sG8SP>0g z4B"7ph$,6r!Pj+MeiE)]"hP e}/0Ƅb E}t-',<-"uX%E  h_xG?JKvMV )Vˠ5ѭyd r yƳY,3~jk_C?qEJiaruBI@WY)3x( -z(qD*"P$cE)^8\q$L |D7vcSeN D=-5+*K' j˒QÕ8\e($-*|! }ʹk7#,6wXF6 a~U~g^"9\4}H3P&qzd@VpESȤW2J@$kى{"WMBlzq;K'#YѮF}cl&d4Q&͖ {BDE1)3.:]_=9qjJQLE͗tx;N%_6K.~Lz"{q4}C9[{iʢ>wƦ*85i&w~XSh Wms#>@9o}+r8E!Ԫ&(>GU:\StOV}t_xY5sL=xW<&E:o!iivY3R,ٮhAmQ&V#>*2n ʶgVZ5ێIPHVPg 3k;Ce0R;:6blkD2K=&JyQpQ.V"DŽlyÞ ][~@;)%\eck_*pm=M{qEN2x6Vi5 ZۀrA &΍* U~` W JQlvOvߵ\gV\ӐD4Q6ڨ ) y> /X=(+rLNOi&b4E*+\ZbKQ xt!Zn/H;s7>'"a1JpeeY0b`!?wɇ9Oa9$[1䴠}ău!`S.)<̚#3LK}=[,J#&p "JifA7Nҧ=2MU-;n:;x?xVf W=I3/t촉Un1'/\,ӟ;;uMUS=*D+ ~&o gMӈO!~.7Q8U/o&HJڬꂊQxLy=}!,݀giv/:&:4zQ|n#{:-Zɪ|f>(e]uRc٬^۬m 0{gx 0Z|/YXg0 q'L,,CÄg8)>V(-#r, "86>@1إ)iDT3J&6|Jg{ddYI\Vf n0qc"( %](z-p Kl$!tO|G8J"H+$ F_0Zx}8O*$&jpf|^>ŒaQ"ľDd5\/ɹˏ2H/cƌ rD{}qE^lIWF\kD22SڿUa"7pB@r~>`ݪ3] {9.BV÷{nmOê [Fs hHa"QCIYSIrf'_8!+#BFP=_Udg=Qyh5.m8Ġ_=<_Ҵ7jK"id$c=4pLq80Gz.ϧ&t4y~ Ilh?BF0r +Dbа%Q^zȱ\eH5F%&(z_,{+jʗgÔ0l YTqSei'UԭhJ*| ObT ا*Y=אo'>1U!,_6۸ .E ʊ3T~ͻ$Yϸs Y=q qÃeڌA1d4!: ! ;Et2I#c *7MN׼uof o4>?!thO`&A 1^< dRLzlܨ>vAN]G&P'ɓ^ hY:r d7m ]hK`,9cBB޺PNH,K><ߨφV}0An@yC':!DV!l`gƑf0{S/J=-ȗelFm6+=>8 8EpV1pp`8`Сp<{gh}{"hyaa3zhEQcAgpt_{PbRFDٿr ي2NNWɲ4fV}J<Ц8fJQ\̘lEAkjapfo.e`tA1_i9YQzypg"PPZ(;S/ wʞٿIzőyڇrp -B&_.!|#E%8[ 1"XYm-f%-+˟8;qïwR)|Li{E`3-7% 9leD}DL\I&AX^8nqzo#(+}vA'](wB&r /)2>|m\d<8{1*+d6[/Gp||Uv`,c=|¹L1ע}1*gD#ɑ{ib_~^~#xg-z|\OV$.p/X5~YD =C+9a]9Ҧ/:dFCzzىF}6γ +188+]-· c+=B7t})bOy}GPnD8qx5E>cweQ3x6Jݬ2uC޳7zw(h1ʥƅy< ш4`Pad&"3d2rbRX"?u,8C!,3w "YTj{˒OWcIUرc8PB!|&0~/MY/LUGYL*F?4Cw # `Qc 'yeu__;H e*u%EdrEP/o3>/}e!3z?i1 / m#Uf m&pQoϿ/|Lcx񙲨__`BVd ihEΨҞ{lnV;_e]/S"7-kI't9dE J}U!ݠ&D&Pq=O` [ A豌 QVڿۨ C66Ss"`[ ѶG˳$$DɊB.@kJۍgseAKI3 1 Sڃz+Z;X#C/ K/bv}G+cw ( άd@nr0 C0 C0 C0 C0  l4 C0 C0 C0 C0 `l!`!`!`!`@!`!`!`!`!-C0 C0 C0 C0 Cu4U0 C0 C0 C0 C0ڃ9\ۃb!`!`!`!`sF*!`!`!`!`@{0k{p\ C0 C0 C0 C0 C` `VEC0 C0 C0 C0 ChpmΖ!`!`!`!`!` :٪h!`!`!`!`Ar1 C0 C0 C0 C0 9\@#[ C0 C0 C0 C0 C= mO6K_Gw~eY|׫c7o8qԧ>>O K_w'Ov,[hzU!3^ ]{Ow|02ܹ淹I&7x÷>97xaQ htC xn_uEEmվK?q׿;f}v2˸rLsN7~a0{0 C_!`~՜mnV7rH. _|;y^zG啿Br Pñf(/ƌ{9z-ܲOjG.=SnLaҕsݢ vሮ,c; )<#܈I^_{5w6m{'${キ[>Nҥ*t+M0O~p81 :?n}.oC0 C/!`׾Z|; ;VYeQ믿=/g}rC㤓Nrmn 6=wP%kVՖXb yn@GGq4h;m%G ꫯK.ġ[ѺI\N;ZT?yD Ѯ8V(9.B> C0ph-E=Wr(KfuVHgD޽[~V<5gkg~E^xIve36`3{}!cLNտ CȃzNqmן!g+z8OMma;{g?~o}]}!`sV#uzWx-r8m[;c}n7oX3@G^`٤M2Wv@{XR<ϴzy[!`!b>"eF RZve{8[&g+~kyߞ1 C0*v*A_mPnlc9| w}=e5;>3@Nå^ŒLty0 C` h[ Ĥ XmHoC0 M9ĈE=598,b-ʊhF=c%3UW]'ph| _Q>ov+n}ԨQy#&DP'S?xW"ػiذa~)|dGv+<=TʛD3Y`nUɞ8ɹqwOqO<7}ܒ_\yH^%xi秺^&%rV[&z6\s)g ;tY|>h9K &.n/ MdҾ=Ǧ8̹ v7:NEJ1#Ss N GƳp!?QC'}&{ǏD9b~lF|_t zAV7_}1]w]?Is(%Xr%C nԝ23#KfZ|'## z+ag!>A^cv|T~dM2'}>N„ؠGzHUYDOI{?VtXёC݂uROx1Mw$7[I AgU{> C0 0kՈ86kjw'gYgp P[o^=>yCwyw bQ:\U 4'C=䝐y(ӟ6~ P̡UϥEO\f7xwː@I$MÙrW{ǦR8y8 oy}7mVk~Ӟ)YG80! cEYFE |R+y|hs9G90 g1qKŶn믇{9Grjb[o[~f:"=B: !xL8}:Femr_8 C\8 {c܆j~Q&UuT'88!q^-D!Syxl~{KEғlRa;,}w[i<\OֽSsU=s7q6q݆}dϻ7ܛɧ'6ŭ|wЎݜs|93/8Ec)nQ]fsv&/~~{왩,Ԅpa'8G!;w-Sw>^D kMqj#=}FY=ɘD1!Le1$xÆ&똼i8$[*]z<ѻi8a­Qk/}7\3)w,%`$ϙgYE c=+5g"&?O!/8'9>䣲̠c,'}檫ꡇpSOӨ kEYF~JZ6zVu&zHoq攡q;׾!`U `*Pֹ̑; p.;[O$,J(^(?Tʊp@#J;|;84"ڂ9fqap`]{>(Ws?{Fu}l .ظbۘPӉ^&!@!!@h^!\.[Ύv%ֲӁv>`(Wr k֝nuP0jԨ *Wevj=]s5vy%}e )xC9A[uGmQu*аnAwPu`uh _m/ *1ݢ]E 3ٞ'pzW窹.m;QpPYfq:xH y+(9T\+m# __}){W~nrh;Wƞ ZOߗ(W;s>6w}I''i1tbL^֏8/m^V+`29ٱ6ݠ/ޫ7?\2Pڭ!H|E]r غ:vЮeAPR١?VeL_쮸5ѽv]j#Gآ%u <^Ɔ4WPl?^2>~::صG\خ4hW3J:.zn {שijև+mبMJsEkO}-UG%tq ԉXe;KAC}6?߸~*}n׾N+d.;scQOݭ> /NDĊ2˕Ѯ>6m\pAL?oy5\.\;V2w3N{Ɵ 6\ߵGN"[kCH˩yĴ>^{RSTZGj_TO''(tOuh~fg33Lv޴ oAz/?}|ɱeVR?5)z:)\3 %4GU=8bڴi_}) !N>͵@T3)?#!C駟ԅ'TvuP, ю^xaQfvBTϕwx4@zM rO"4vd`LI:p袋 PH*>B\].m\UpL> 0*82tPQ/ ^tPIttAzs]¯:8 T2Wm2N Ej` *-$~ӟEډ-+./۰2R֜Hꋂj^PL'"T|\A;H_tQE;(h b5+`tCI" }6uhE賠cm *LEzZNS۔/>ꃶ~xQoz_MNtc9./ .m-l?*kIem 뒛n)0wS>d]m (*k EzZm:Q $u](YmK%ӟpUN5,q4^.>멶~w}WKd.?b@֛\6Tޙb^bqCFAWjXcM$ʈ} SԊF]l ]O]ݚ؀;ev m0{e$L9=\~ڠ=r tw+A6g"C}DV8wNAIiVQPI '\+$wZ&9{iupx6':G諸vwOdyӵkvZd2ÿ74}4pZY .soN.fײU:뮻Y~[#_;C5|ndf>͵>1t{ڵϡђ޿n~?f;wW떇~Sqyw#>o:IH%_{_? B q$Yep,2hQQEK_t\;z_;Ѣ~ڢ(>4o/Gt(p,<& 1Z{:Sю|\ϣgu/;>CiGh+8j>@G?]eImXFz?hڤ m*ڦ|v7?}{:xS]֑?XVv}>{趨vi/ +TOk2%էϋ7vNsϯG~h.ユ~}'`eόTwOpx\;vOѻ>T]ѕ]v*] r\n]'Xsx [K_uY(yZu". *cklU6A;0fES嗀oٲ 8Z2E'Q|\[h I?d2Utҗ|~΄f/lmk:u@ۚ$T&j\De&{9@c pm3Ѣ=]* wI>;c4~/u&Z;ʰS2i_˥3~9E%y:g*3e(k-Z~gh@|2|2yEYqʌ/~xk.:V{WoΏG  ڨJ܏3S=܆u T۰o>pA:@ ߝq:+} .C紐[n^:>`*IczWer@9tjT㷡𶟪 sogW g3-}W) /ksE_>_o:3LTY*?Sei}w)M2uC*uZMwaћ's4*WRd;$1K\t_.Oq)@ptY.Tw݊l`{c.~N>5P),?qm`  $JZ%KN_l] Ά~gY4;a`.WfvTP>fwJYy[uq}U]jV>شc@[osiYEIэ`AH+ ~:=usn:RE ݆/rrm__+H; S@ZN*P=k9tχNg[ۮN@Tә!fXY6mFh@ U|~[y#'%啷Rh'^wd~>-\m#s]ߪ6m5V_`ʚk4HTc Q~&hѶnԧ&(uU~OZ:|u7_Md/˸QIy^&~ONjKWvuDǏV׹Oi"UO  |NT `Re"G}r4`tv^gNef \n}AKyV9眓UwVSf| g cI{c^տF/t?Eo6a`TxZ߮\7ۚp7:j Շ%n~l]}Ib.s$ ̮\+ h}yIŶbZU͞_kOyA *g._L[uGڎߦӭ3_ㅿwo[>jZ'}iۏ~UM]h]T7[mv>-?}]y>pۯ:拏beSTz?=I5=}S-@:U}ԯ}T?vWuQ PUV%.2asſwps5USg:UpL7+Q \TADGS?zT;qfʢ63/ I}?^&۰ڤXꖧUmR \[;,dA9dq0eA:S\b-XRiھ T泭֝oͭw߿o۰ڦ;亾L}YϤ[DYUx:U/>XyYi6-uS3/P79sݨ*z|p-yw[sm{/k|Oy+}pykVZ3LL~{li6j[S@*sy0 @\w8EΝ.J \eR6i>lE:c4ܝ_F?/ߵޖkV-nU;|:8nfum[٣Gl˶W6 .~x>}7ge2iC>?뙴#qՇ wyK%v1s¯}P~Lskn Ǐj:~ܣt)O>|h'WE"Q˿t;$ws?o]v=qK= v,*R˭aedSY~'*uf^|Q-LLn 6 R~6LY.*ն->ώvu~40i_W4mO*ါ^ke7p$3LY}Ѳ\oG;X^x)/yqYУZ}䂐g_~uŊ As]UgUTC-V\q&MnhIb Gө00!NGm|. ytJ{y//k}]Lzx~}%quet8qboF0T lbuY6^>mŒ@ V*^5K'r3frq_ow_ Z{'пn|]ѝDiI߸Hj[7u=t)kRw~q7:thP.N(0{+8oO<g}rcʢH˥dhR+lbGG*d#@AY?Cu@u_g J}hguh}駃Ku~EI0o̘1eauӼ&L`^{mЏaxF V[TPgM٬>3ڿ~\Uf͚.+m/++L"٣[$m=bOîq/7rfZ߸~;f{&vwKM* G챗]XM1L; n<ԾMԽ㨦'}N뮻r^}<N]쯘M/}~r 7$ORͩW[['}eU|;Zzl/UtRT7~N.G =}&#F}W_}uֿؚ=՗ovkaDE?d'liïs|so@ڟ@({be`A`U0[G0 BtMAW\d:*qڹ7c)WQC+|ݨKCK#rQtТ~5u@)`{k} XLTh緵E7R@H˧lWG-Zp@p`,!lJ &~e)Gg|Y]۰ʬQU7m:TM}j{T{Ԯq8P=Ã'mg߃lSmo:!R^{핼qXkmZ[mUp}Apxd ѲBydRdysNhݨ|l>jG[~Y.N#<qg\9ҽ1^Kg8y4-/e-.Ǯo[i^P]eMپ6D3/oT^;Qеmٵn}m~my.v[8wS/]OWYoĝ9/f͚x>cv H4h^s} ~?^+f`YcVAns:a}9脮a}x e-%tV_~yp2H :鄗g[nd*tچuV z@y>[^ Uy Z+uѦn]Wt賦 }Ihuqu"D_]v%ߛ]fv>QTu_:q)KwXVS%)m;jYjx6|웷2@)߽iVggyfS ) ^qe)8-AWC.SOMfh:[~)$/Os;6yɛtp:;GwXtRm?d%##<2X^_Ad\c=ryeF)8Xf?le Vq7WNt,g tI-ހ+Ul]v ڳ;ۺֿ.SQ;.j>UۑJܸ H RMW-2g".WLX0-rWW%n^ڮp n~s0}3WP(Uݹ/|R g]lJ:elbTQd[}:%lpX Yߵϭ.)۫,w\ Sl\j0+uA_^ac. OA!e*۟δ~i5O\h',E:hQFS>lZ7Њv-ù*La[)FP|N(tpIѴ_ /0v#ոZ.GTRZ[t?Ѷ7:j sݘڜj:k3Uõ72kwϢ/_Q禫~.KUY-evQ 溨[LWzWUo:iN4{X1}ߩt˪Xk?Kh}?^mRUVlk~ #m5y]c3ݏv[MhgUNs/B7_~@ ?\ZgZx:`KGe(͢|}e=R@ !Kׯ~Vt0E@@ڳ@ڳB;k}M-Pwb(@7Yzc%li.), Hٻ2 4 6x饗;uRs3tfސbٝ M4@@R pMmS2+hG2ԏ.:C ad(˲'6uS-    БR}穧YfyE.}dQ@@@@@u\uGrelnz *-FXf. &N/Z빠ߚŶ[GRfWۗ_oo"ԯF$v9|z0nd6>s[Qiv룶$WݯWm[i6kbڜM`Q7cv2ط؆Ud-YD~k:JmLg56ef _dlS&q?gՙnnu1Om0|iq̭5\@uE[|Zu-nV+͖6rЀ"ލ[?֘=l"-wKLoXm_4lo3gVJR6W3lڬZp*vٹ%?TոyM_7n=rn"[hI\ ۖmpv;nn~*8Sl77   Ci'suNu(5`SK!)P+U\-\^o{5* 9{UVIՏVcϿUegVn?XiT%7.'ϞxN9IPsT@g}:՗ZWՍ/H<A\b ^{O4.\FݐT=6mpX-[Ym?Ye D߭Oh2?~8ppMTFr4`[d>0{Z;FAO\`׫l]D\7?Xe˖7X3vusA߱A=t] 7Re§fa'Wf[h^o j)Cv/]];ZJ24Ojve{*kpe]}WeNpA_2c2;`R+ih<"   yh ,; :THkD4RΧS]V ]i!E_~uY_Ef\7+Kl `=悦 ]S؋)˘ تL=/z7Xk~g/8vhQFT&Mb2=}%v*ت`^;Z4 Kn}GG}K[GnXⲃK^k>qݸ.Y 2Zg\f|tCV<ߟT]>DܱFo^lMn{4<2i7-/L2罣d⠻?rٮ.`=e*傷Zn&]7>P f UYo|Pc` [Kv^|2qf``{y꠾nn; qLڵ]h6Vl:xZ6SU69,yz͝n p Lo Y=Z2 ^woUl6V_v]vs     *ZV}O湶͎ͦf5,.ȩicO>ܶp{fW_eHTUnlE2kR[wv]x":@MWA'U$k5,1>qمT6zTݛnVu{sNlԥo^iBAF׿XnBvkK<Ԏ޷!6 ^]삭?wKvMۣXeRj,ov6Uxk7{[׵meKy.vPf2Wϻ|EЭĄOj]4:EFl#l*W}rE4 bsv8Ć {:y. h$`bMl沈sAzfl/lЉFנ lUA۷Ar?rӠJ7;7w2 s<_2|k߭G@@@@-)\;<WU)Z^~:2jx&k|wj5=]~AG[l%1ZW}Q*4lOH3ˠU&mF`˹]J gӾJq^.(㳥2e*Ct~eiK?tAs<7^ln^jGZĠ%&Z 7Ytc[jD..˵w)ytK.]4~]悄+\PVvr}תw܍8|-t}\P|QAFr\]7 he^KTpklWݴ-'nnDm}N~kH/B89Y[rO@@@@6 ]\Hyof9b L`\@@@@ 6ʗ+~&ѹv.;ү>X6Re*6k^"H6t~=[jw56gAm Z>~5׳S@+v`fe._f`}M~uwr_Ψcgz=qrb[V?~ܣ~UR8qׯwKA@@@ U*Tz@U[i's7"zQpsg߈Խnu ݜ+"&k\]^d^A~,6>J/Sk r'LJ\SE]7qݷ/ \Ξs(75ԎrE[zvUٴZ[Zn{YTU6(pkDۦtjeΨ5uU;2+M&\p'*~3}έwVuͷAsn,#"   y G\FIYtc˃\?29 Kl~_<"   .@C{&s r7I]pŊi7kM]w]]ѮX     5F{h.#ת560K*`MK=Ku3#   @Yhe LvUdY<.Ϫ]Vk_w,n~՜!   @iBYC@@@@ڍ@kRݐP@@@@@ 3y16     RkJ@@@@@2 c#    ) @@@@@ 3y16     RkJ@@@@@2 c#    ) @@@@@ 3y16     RkJ@@@@@2 c#    ) @@@@@ 3y16     RkJ@@@@@2 c#    ) @@@@@ 3y16     RkJ@@@@@2(s%I@@@@@ N 8!    YpI@@@@@8q* C@@@@      q\T    d!@5 4&A@@@@Ʃ0 @@@@BkhL     pSa     ,И@@@@ 0@@@@@ Y1      '@5Na     @\@c@@@@@ Nk @@@@@,f$     @8!    YpI@@@@@8q* C@@@@(b&A -f&Fu[('    |3ΦNUu6l` [lEuV?z {*2eJE%zg^x=cfG}^     pw?ilUwgvbWWSWg1T@{鏂    2sAVKY2تj{]JW ߯> 묧up"q  Okl`Z+rUd[lTbkCE?jJ\;ŷnv٪Զۢaش6{k]_qu]==~vŷji5VnۖZO}=W_3Zk->|va֣G?͙3nv-4M7_ooGN֓ٳg70a-_Far-[y`ܒR W\i>}6c [wum=ks16`k=Yp=,X`C_֭[qo5_|w6x`;mذahK,n/^' _~e{j3|g]v-2ZOjkkM=쳦. :u,V[me;CqB?2$XW6q`)VA^yFK:    @[ չ3({uev^MW]k~-Y5Ko\W5]M宪c/=/ uZ*m7la{R]*?.Opg_n*VfGhJ[i{VRd'Rf;L"CpT8,fm ْ? }W7KTҗ.(( e4O~|=~fQ zKmmq駟~EO?tép)..r[lEy'ye]$(|}](- ^y3gΌ iG=_vꩧ&_XNTTav:پ;mU4MU(){Cʭ_;YkϦq;3rn;{72 =pE٧_WxpK/Ԟ{{{u]y8[O> #O5V:U`;\dK&˧uOA@@@V@$qU69=wHOz핦LN_ԯSolQvQV C+1pDMӌQbg碜l٠EmpqYw=j]\աkۘmJ?i3luT6[}QWj/PnNl>-..nTm\ꡮwKmŦmhYPkkT 2mһtq =DZe3QՇ4--M,zUjل (/U#G??evX_: KTzk/믿>x[OӞ={ڗ_~' z+o.~ 5Hg&+y[ni4o6&WPEZ{媾nU4,u&+     ІQΰ#j ,e>\Up,u T2n}sU}b0N[Zxu.6}ꃸ+ZbPLU;Ѫclj~X5\ApUfn<67ou?=tì+: i\U_LAI@@{c@@sUt(er'~Xɓ(A>*HWpE]%UM+{\zԩAU7Ӛ4i{gcǎ8vq&]QWn~o}9C@WW;Ù^QQ$0Λ7O-ϓG@@@@ [\50]Z}z釗ۉ;w>ߩ ֹ])tlZC6f[CQژ9ΙMŷk٘IR*nj35G]tO)#n@5khS* ¥уQ?EЍM?]nJK[[AEե t 2t_#Owa2qڴiͶ~١+zon}э1p„ Z{֋2eрk7͟a    @&Y&2nu%W^ɆK}QYsUNˏ`UٯE.ڳGg˵6ήU\LulM?pYtip; d\pԩSeiW(3 4YE<3$ ھΎ:FFE8Th)/wy_ն\Py   d%@kVl-OR] 7߳qBD_ ٫_$_@v23uS*ݵҖ~*(z m#g/|._B jnѣG۸q~Bu&es~Go,O=LFWKu~KE7R-σկ~[iԨQɪ馛~eyS?yA /n4\`` 4[}ٍŽͣu}Nzd^M?MfrʠT ](lV)SNw}7C7Rn\Vj0lذF曶뮻6o4zћ-hk9   (1kqTFD@٥[oϞ.Ug\UW 6( >M^x^TEc/\n vXQg5]&2]5Dٖ)iUyt7'37v^SZI'd2/GXKSA}Q槂*uEYqw޶& tEz g=\7 + jFX>p\ZZi]vwO֯[߿l>,9^sOzemYr{*裏&ju2|e8FG@@@r&YTԅ{٩ʻ5EΨچ{QY<pҹN9uKnJ|57|b>.NvJ/:-H ob6}삲34Ტ21^xX\\f>brM"|6teԈdooݺu%K9g}l 60] /Qh2KTҤI ol 2.X 9M2ZO?`.??Azĉ.!7<gasO2{W}7 ϫVcJ}ԪL:? cVYV=PM^|`\O,l` 0|n,Ye˪.տZk- KOxAXdqM6 FWwc,?񏩪Ik,_Z3    2\nTunV.&~Z* GGۺ.˶.ݠJ] |iM2تqw]jw=J4֞~:Gz$X(sЮe`n򥶄ۏ,"}j\e;x㍦,K9s_Ag*׿ur/DAKe*تLTevktIz+?[P+7>a]*yjީS]UpQU`kΝMA]__5˃o7pC2U\uUjն}7ZO ћ V?l-s Ize5#&B@@@r AeTT`}w^َ޷F.o n?q~'-֟d-ntI ?w7:֍㯚<~uj F[bWvt[a. 2)\aPfkP<؎ܧ~vlEIT]^{Y~Mױc_ٳg=Nuyk`}lVK>tw^2ȫT1|~9U qzAcxZn.i5\ƌc:L֓O>YgF^M?l[lEr=QPx=h4Lti8p3w- Evr1o@@@@2(rY9f:o".h612@kj.K[n泤kgw\A;Mim̙AU٪>PkS׸- P+:~2MA}hN^Nj ?ύ.W߰౯C+;V7R7e˖_|Ս@8h7O.] RW^i@@@@ pmRunҥ~YGtU3ٳe<@Ue|vaAZuV᪛m{;Ãx    Ўvڎ#KyS\Νk?xo_ jŋ'//btnE )@@@@v-@k^}4>T} X}M6d lurWꋺ%p \_@@@@di(fP@7J(P'no    оEk@@@@8X@IDAT@ m4 @@@@hW\ꢱ     P\ y6@@@@hW\ꢱ     P\ y6@@@@hW\ꢱ     P\ y6@@@@hW\ꢱ     P\ y6@@@@hW\ꢱ     P\ y6@@@@hW\ꢱ     P\ y6@@@@hW\ꢱ     P\ y6@@@@hW\ꢱ     P\ y6@@@@hW\ꢱ     P\ y6@@@@hW\ꢱ     P\ y6@@@@hW\ꢱ     P\ y6@@@@hW\ꢱ     P\ y6@@@@hW\ꢱ     P\ y6@@@@hW\ꢱ     P\ y6@@@@hW\ꢱ     P\ y6@@@@hW\ꢱ     P\ y6@@@@hW\ꢱ     P\ y6@@@@hW\ꢱ     P\ y6@@@@hW\ꢱ     P\ y6@@@@hW46)d_yy'9'/׵A#Yd]:~i!d,0}`5\:u+V80̙L޿+))ɶf7o\Һvjݻwov\̏@{3f {$ܹsҺu%hKիuܹ5~,r?X(|6xb[tik[|]1iӦluֱ=z" D,1-D䏮d2'YfAQ:՗#\gҥ/lw}M:նfX!p۳oTzCJl$Jɠ_uyQ :Ԩ޲gtR?n!v̘1yfΜiW_}u0ѣG7 hrqOU(ߞZOLp@^R\rI}ֳggy&8@>|xrxk\zo؀_~ɪ-Zd&M &W9dC I6/7| d}͛>kw;yԨQl$GI 㻪.~Oo98o|;PKϤ(TsR;|_ߡ֭Uغ6cXR;8xcCĉmֳSO=5v|ANE];@ ҹkQGeoyg@G}dwygp׿uk!,RzC)&ц o{6r*GJʷ~)@TӉɮP BߡVI /Dՙpe* 5.ZSSc_|EPǔ)SK*2'42Re#Z-p7YV.1bDt92֕uX) X`A0ӫN8fPWڿwlۀBinp-\WUsm-Ϳ ۗ_~il-~&L`/v'7S{``ر6dȐ&˲**T仡NnV(CYk͇ fAczOgtٽhQ6*Æ kȱ.[l}wMjAos;x;OzItB % EB"ART,K"E H/"4;s3w9{{'=ggaRE""0m[~l(BqOx.V3ekj-n3v)|unDY+azJ}$2󶍲3YT7b[?K;Sj&)H2^𷘡D2?!ܛ." @e^^jԫl:]lvm۹l\3cS+3l=3)}ڡ- 꾉+l +LMʞ`cǎu/b7m;ڱ@0f\9GQsi'=TH rm[ɒ'|ҽ?^C+>l39@굷>& tšOww<8Ž4sV9O3=dק7ߞ晻[r~nul]?wK/ߍ}x{inE=7ޙ=<ս47eKXq[u'~OJ?>iEYm[y"16,qX)@Y{7z0wꫯ8<6GkO7pC7IECh#Y{ u}Ĵcy߿}~VN~ϺҠ^qr ANqpu՞cw.鸞s9G'l]btqh\nNUhc33j(xNX8&L{@> 1~3eE PV&CuY+ł̀BoBd)2r/{~oGCJXw~d0#lD)̅ygS.PW1~GE; Olsշu^2tS܁;rkLs]3H9iG>0Z*3k3/x< aIC~EzRECnB#6ֿ0b;y 0M (R蓙p_>OLيM3(~(?6iS~G}KWhnF? ߡ/H}ߘt:1mr[\fйNR_+ֶCyQVze4ꕍ2ͳI Ť)_w+eF 7瞩oݷm7WȺ&}򗅗 JFNBwEuϠ ,?lKUn{э`y:e# ת|k~qՔwx01AW$+\k/M 0µ>o6:&:nWgSJ'wBj|֪>ţh{Vjc,\yyIk&a;:?S6S`gΰzF[\PQwӾ6LY8왞vJ2SJ& ;fQ^XjA .V>&^afY"fB!A N;d+ Ct1SI% F3` *?0>T̄`QQOIq~s$?\)Db9@Lq%vD us~ak'ye%5gX>\2sn9&Q=h't*ܺ_辘X݉w?}_݉5ĨKp $V&?Pn@7|ލgkoN,mn]5_77O?W{k}VSJ2:^#fıDYH|#16w4fB 7:\t@҄ /4%&J901cƤɳ3K5 g"<0lރ갞et`V18CS2 et){W:4?1+ |U wG}te8NP`˻uL^4^:Q.(VI:(XQ3KX/m5DV|>e4uq;E1ܑX0y@D)FMlDYr_{ީvORcAC W_^(?DBi$Cw\]BʋWT|t7G$m$Ȃݲ_5qhs'k%ְĒvf}Mɼ]Ww_/iC$XFRECڡpE_ƄH&;vH3Phhd iXlu5+܍GYFy ZC2uu0Hҗ6#c/ mX$ 5& ;IVe:#|`џdW4~;~GѰ{+жV`8qFߏ&) hk,U[” (gST3{7ַUXi﹇YPH ~=闠xEA_|T,;[>"um8}`&# c`2:td1Khxqe+lQbC 1)ʷLHz[^I3<ӧ+zh16>}|7ieЌ>DuFqL}c^ʤ5uz(j;cjVVXaܓeʾB~[kOĬMAg$ uLJc+~Hր740SeBG rp̽>ttyƈe4tݍ$ENjg'df*:nl'p; ` 0Nܯ.1-,dH·NNc8b62.QlJb$J u2ůg>/x`懤w?탏3Y `F8w$o _1Cj%º_RNΏ% a&̄E sr`bEF=C$bAiF)A,.l/0p̣TaʠɀM7ݴ)Ѥ9zrݖ!bF#}?SrG&;t jy')ڬj4q?2m?9͝匉cV Yidó$ەIg1==x%i?\mÇ:?>O{OυREC ‰VS'PSXJ 0|LhBM)"Eۙm19*4Dq`)&AQ0Yh€>kJ3ADp4 f[j;[g Zg&XYB]L%?EW֟yA(3v/O(GRѷ o3~)m-n:ʠо Ku_(rc!3nW軜{^i"xwﴢ:qrEi *-V\)l6오EqL‡"iA!17NGыv~C,5c^L6%,ţŒ>VmYLZQS(m,}5 '/Pʺ>DuF8}+7ʤM֟/*"ESأ_0Nqg0볳z.St0g $/UT<m,hܭ?1%y&:&"SָYû|Pap`3 ȧfq.Yny4AvvPb9+_2|;n6Kj1D/-L|@M|[NMEl?؎g~h]Wn~W(bg࿽F%{ֲľ{%{!?+FtQGQ0{lr8 ߋ^4O':ߘ FaHJyָህp„?+o3Eв2@( \E˲ŏpqdgK+iqc`"-Eb hohLZ3e/v߾7^Z8kara2,NmSAG=a:nY0)BM+PUIxY"dC%qhzv-dl͕tR|-YS'hhۓFɶ:Ⱥl7Fm2=8i ǿ׵IshۃbV?y Qzل"WY{)7T?EḌFvDH2,e]|MK8ߔE}VʘPoB^m. ?0K+bJdQe/5^:Q.qgey(o&A$n0x4K84+wa9ŝfKV>jC,Y^ǧL̶dd+kM?4i{v}ifxX&K%)lY`Ym=[UcJpAu! P*&װߚ}5 4+Zigb:yi=V&aMaʧpEcih7z-U] ?mm9+w sLH-NPϬdN{[j_puEvZMч -]kH4Is犖[k1}30ָ }:SMGO|Z=80;^Ux-\U|rPȢN~3aO~M< PZY7o}*ꌬlF!n/6K,;vb%3Zn0}u;vi|'~OQ[hwQNl+,BГᰂ:sGJi?AT_j9GoZϕðe(sĂ=VQ&NR+‰;m0maTc(y9h5K zX`+fCHt*Lcaxzym$ϢlBB(YRF.LpT%S2Fg0̶,cP>4v+ m,e{䱺F/K#^\sǠp=+5]y^ެ`7،.$ͦ{yf~ݶgw_fYVLIߚj{. ]cTƺ +iE;cUY,XXfʽm{f֮qYy(sY팕[T k+PUuFiiPfcyf"IpSȦ{ ͨcnHZ% P•GXB*Qr W̫2@PV! mƖbT5*?ozZS9\ꍷXdTNe61%*{&?Ё~zo&f ]h~p+7ٽXOf| KQwMs~n@^ӔYFmτJWd3&dQ`0r;az3p%ZJگ"mP=jg($T2@4aP•`J,+4wqYlXm+ kݤƨL]]&LeiVMmMf D3fB iM=8s#pei#V4SkfxuСQ>LaJE4h%PPСhR{?|gAKľU/+%JwےAn||{'ߛ~(I'90d{$}-Xu?,I,`ו~|dO>ԔR W0 <$ vl%5{0񙍧ِQN6@ UD=]UYf`)Xq@x1Ǥ.+w U*af`?EEI4jW_-?ٖQ]J;ܲߪH?skng}nd\Բ6pu4ivװўk&?63=~$}I& W3gS3Q t'}>p5%xy̸0WpU m,vEL%` g’)[gϕZdY`AhT^~34t̢9a 9ԗCXԋΩڽZo&"Vj&KD+ke6~.P^6mόr _11\_,U6/S1ꞪÔ)* lgS7P'nfe>C|ߖJ~' lb?~39To .r+SWۻEeifM )1&()?¶޳=G޳Qz[;\+)! ťa%y_NiǪmY2AouhnTՇhfQu^//DG?kvo} Oq]pmA i͊%5఍9 ʺ;Ǭ Y?rP7v[ EK[AiҗgRR0ih"π"z=}WYE"gH-L.cr5~\-M԰Z0B_ڴV+*# ;{ag }ܖI -{RooUzfw zj$nmBZ6 $W,U!YgX`qeI_pbNJ*Wa~L&x}µEe^tlV{UaYFBf[:dze9KUcUf(c{i߳\f[%e8+rZhu$;+]_MNp?e)ž{ $[ 7ir}Ͻ4ǡ&HѭVK³JrJ4a?cD0.zUbeyg{TPY2 P<|:vxũY]Ӏ wt\ڠ ŢuJoEYK.Cg{Kop8+MY)5QHB7n\UJmynbn@rȖ{2#ayby:4z66f+:e4dVZ&jY{ (2g` W]u/G(:묎w,QA+VnF{yA0~VMq#홪ӻL۳f|!T~6+1K&>1 ǿ&MK3۞,Od䀮s?))hid;f {,RǠPadFG#qk5ʶ+ r5jH;[XfI)kfmm)p~\X_0(.vn߫.ecd[0X:ؤl]m罖-ܔw; m"JS3D >` 51u c.rC^ 6RU%!Ƅپ( *_?|wWwMj1VLSuz8[wL]wuPg[+eU6nAq =t(H؟ouWUuFپuh%eI0}M>ӌό`@Ʉz"g WO } uT2m0aVw{UD rj:~ꩧ  T @o喝Wwƶɀקz%JҹK%V2Kᝳ~;vߛrtEET_}s{?٧>:`Eg)jv;~_cNJ.?&ɞ|9? QάAtZK'x8s7lޢWf(QS˕~9rOK*;h8pƀxM7JN:'|ϗ;: 6l.B?X<3u%)y)a!/~QAe{ѩcvϲyvvGs{C82.Dae@~ +p8s" / _4Q Te0{[X БGY+)jaأ>P*| J:0fIU?}wfAnMV,rvlɁCܠV7bet1CݨMy 7KGtܰ]=Ao(k6`!nD1l#I HONxRw|JEd$`$;Qb;G2 9rhE-, 8ӈcI# [ϡLHS8ke H{T oVNܣS'[2KuY^<%ɳt@9(lUW˶\`凿 P-,]6^WW¼뮻A,c%•nF(ĕl2h4=P<~! ``Lgס'>"R&j_{j ytCK]\hbiMӌe0(& a# QĒG,r+L&FܦFsUwٶgd?ꆯ: HzN(^QtRXӃv848۳6+[Lڹ6~qP?iai4L̐V0h6e=?ӪԋqPHҡݣnʖyS}ډ;OTbaM/r)*eGl'ad)\i'MZf;.vn-o(_ mȁ'V],C eCV[6I:4/f} [҂zL">] i^w,z\ʦw=wi8PGMhu`a~A}fe֏d^O/aX̪/mJ V7@oAB?#G:VJ%b#*}[NGB'25ݱss%V*hnwQΦ9%;)q?9+o=:P(zi<`X1[+,CcMo3gyWYAٛ%IG+=GGO<1Ua[e,9 @YD[w߰ ~рf ,Qh6x.'3(IpJ)~Yaڽ,(ǚUEPr$erWn`z2{_^-A(;tӻLC}R'O81O]̶-rػ|d$ s9O;sw:gra`F}30 E&$O9oOZ~̊.2uu'φaI?V;gyXXۄy>_rkaHzB(گ0HUՃ]VQiɛK>':ǨA_6nǫͬ3aO>Y ?HZ [Uϣ3@_@#P۾io;RI3|"}iAB֌z@IDAT _ ܖ6f֘òel>K8|;St@x}^@""}Ǻo,; r#S9S~qҲl,4xl* " " "؎A株;9e†-<pkWV5ش-gםHڝ0 Ș)e3vNNb:YP9Pef8,/c2Kb,2 gj1—_Nލ1>nwb%" "Seзm?ŒYҕ:V7n6l7ƢO6GVﭽ=\[[@ &~?~H1=+!p P/%0ak{ŢN QUD@DH ;xq񛃩NSzfhrیM/2dH?阐c³_~.s+By]|?g}jų,,7#-nsSNu_򗳂" " " mB@m %3ϸ/+o~򓟴lx[nO?Wg}_a~6UF EO>oo:='p@HdO=ӟMM΋Tc"S \pނ_[i:E% VX \?ѡip*\WhVs{dX5\YU+~6t-"N`+?#>ַ+L-–W" " "Ѝpm2O?ԱUO^dDr^J@exx [^@K_;.mw#BԻׯzu&l\sM/i5~&M ٪>w}EurH'^{5?k%Y߻.@" " "A a/C4Xz˴//4V{1K-w?[.yHCE@D@D@ZA@#&Q{>;ݕSEa)(d2ydO86a [veG;s_WsϹ>ȿb5X/-xcqÇ{7{1pKYyZ8NPj [n9Z(xG >;qXkcǏw|2{μ4Z~;҄tx+-%w^K{Yq7޸;h ~tY<yW7l07~xW_ܭsw:e_ xX~hB駟_7hwK/fmfּR8hV|?w%pkn/zeH"N97e!E ƱeaN'i‘%^q}fureJb_S,`8\0|gJ=F|L=4)RlF?H]~@mwP7!01XmaP?7o|uI~vtuIscpN׾8CMYA>C;mn9ʴCB IC̰> |Dܭ6Q' |ͦIsͮsҢl=hwe ??Fu6HM[O+! Rfi<^qS+\{Sop[8싅_^|ŎX!{s=njcacdȠP܉뮻 (B!ēk,9xcǺvءAFwː\ M:.; 9oR/EeEK/|{ޮV[m6` Aaa{o% %gi Ysw~zp4EA2eJS 4H7.({J#:'O|PW\)"IC+[yˠzok~B]w]6.krF)w 7&vqG@~3ҺL",7H| iE~.tMyLuLr-}'ggp cS A)hJSj(ΰÆA$'gp7+X%(L.+8QXEj (838`YD8apE naÀ'5:gylaqU*M(#JU$XłndbJ8P`B‚  =,hK!ߠp&^y;)< ofFA G|(_X~kc]+(H#&/`XAGydGy+Rk+6h&nJ҈x;eJWrhg]3H誫un\aFb c2D:QPZ"ċ|u>ڔq+wXJ8NVe`oB9Jx /?qIDxe; p8)(aEYDiwG|mnRZK'PVjL;{|f,ED~;(h)ozؿ>{2J xѮ)Sy6!Dm#ߘ1c2]"uVs1yD{E~,I^ͮp̤!.(hH3xR}"}+{׮5W&Ŧأ m2Ȓ}FyUYLo:2+S>!q9F빼iQ sx۔[Iev~}(P~6(tCE@D@D܊X ('y"tXjm n(SO=[Cai E(aF aͻA[AB|wi"(DRalx!c8,X+6H3jHXau1K/4aŠd*\x2b EAP~'pW)V,P0:L18F{ Σ4;χ4aRe >X (cx4C ΀dPZ:3!0bmhnG{)xfle`ZB92 c=|ZHCb&Kʔì0)|p'E,,A)(dFLXp9$iEEI2n։|9Tk>)nPvl7iƝP9C>:J4 C<2֛QV:蠎A2y8br:&P S<45)D,(L~6qFX4d:v̸GчAيτP•2]PB:0zIX}V`&3H*~ﴻgn6FP<ϡ^ K7S{h{y_Edu3rIXu*X#,(J,BskZyj,CPX|Ub6,C(7ɷ6^Cl/OX (#mҶɠ F1KY^V4im)PQ.{iR$oLaa(g!O |7!oZFEeehiW)<:,}FyV?UQuGZrv L@c")3KC%7#@mRӲ_Y 0Ac3Ytb9Ftxmi~2PB?rv0%aR~@wgK%֊fEg\йc Bژ.4Ɋ;cŃquQ2y8a!Ub1VhUw:t#_?ÔcōZby 5\㭍aC^# HVZXk~C&dƦH9L g|/-ٔtUure BiBO~aq.aH:/ U Okga?n+tYq+=-V7$e2"m"qCDAbӄڶFf"JŇYg,/ͪðFDկ|&Yx@R\|6ip"40Kdޱτ|=ϔ+i#~",# w6>\fiYn}+CsݑUߖ~-d9Z> 㩫@gR3 Yߜ~5r#t! :鰲9Ă=QbPP )FzFalJf|/Ӂd2e,lXr@Yb҉FiV  K̒AaSX?*=FmX]V05b|5eO_MAY8A[7qr"c2IUi{Eϛ%౰57ose@˟I3` \8/Y}IUn"я~TyW͇Q &Q}*],*"nY^MQDL7bgG‘-hQnYKD'l mm'PB7YGR~iAl$ O 4bmS,[Q5}&Y A{oeq]D@D@)\{`*[hj•A(+hAHN1XMG?{X(,(^X_:R%fYU<<`0eX4b`V\E@5δY2ʧ4 Mx = m¬܉7,\(p?_R䏁7J`bYV,.&ʘf3.ZceF&Uur`P9ja˺ڠ5˚7fRZxqϬjf[MKA.[/V΢ai&뼅+Un//jUb-ɲwKOWpBr@@J@ʖ66LoԌ𵛛WTm:E}XVi[tza+CE^[GE|PR,EFQھL."@O"P[Փb҇Zى}bo?:i恲vs҉3C[>/ȀhtV [e!Wf"6^a5t=j~걣"@ !iz1.P3Weu=7~'G:^iϚ'7)o9^Q!YUi]\u'~f\f{6O\|XKqJ;裋ZY&C1f]? L86"v܀u܆r-F^Y^eU jl$FC•_+X>t%1 GOxamE?u6rGd1hJsWJ|鳱4}*_>yٶ 2d#D@D@DhvJaa@fX:6*6K;D&ş bY:$a-G (MQȽ*X (!-^͎ vؘYg:tvqR.onLr %dޥ -{)1[7U m?4 j+sd\+lQЙ5-WVv )$|hqN 3vޱtZ Jڬ[ҕuz;M{X? 3q1e(vuWzyĬ[yyW}Fö?=z2-E5L +8aePOx3qM=;LkFn`m(]xl_UD@D@)\6"*ciZ3(0H-QJXX2*UwiڹepjP[λ,|衇2(6¥g]mc%XDHތ8VҐ44#(i8pIV(\r(B>}!7 5F ơxMt:oXR 3Nfl~aY4rzلzV=@HҐ-Fs2 ;[.X1Ay)ۘpi!u Yn掺wl*~IS^y啝]~%Vx//ju(k+A݋.ڧV)PQ{6Iv_[m0h֑EBb-kem»;ͪjoUփār&)0V'˖u ܖ5ΕjlIey>ME@D@DMĒ%~k5ˀV[m(@X= XpߴA{ VY2 3 72~S0 :S B8A& C`: E,J$%q\Ӿof~ ;qo=,WFxU 2MTTyǡV ٫kye"P|oXĚʫss;bP㿑#G%X51 " )_4Zq@I'Î"ҕjeaV;>Ѵ.[P5W\nEY^I 0usQ"r@=H(i&ߜ|~L3VV7((ԝԙ~E+ʙf D9m ' 6%{^wZv%{ҮBtGJL>Qh Q.w>DQd bLty%=l6 /y3m-u"Ymw^)o9dy6th{{lBA=fsqU׃, 1/S-McP8՟LS~{߳WuHµـw(AQ(ک؍zu!Xݰ'3:E*:kGg geסo i3HC˲#}P.ďA"W_ _7Ai25XLNw'dm{2dۡ31}ojJVVլLD:h1K-:t{H@QB&EQ&ž\=pE6e[$XᄅAGu@rrJ䬰ݯqrUbeDee+KQj|"u#劲@eI>C}D٣nc`vP$!o1 m(+y:E)zEFJ0|eV()+^&y(kJkpH=hJƽ9|g^{'?M(PaN@<V4ay¶0eiDy!/Q~(Ge]e$fMM^O~#'u$y O(exuG̤ΡPV L\>u~*?IkwIoְEo*7F2?8S\=?QR"oLYk%c>Y]" " "З K\2Vŝ?!^tO@! l?ֲn2"bXY!q@ALǭ' (AĽxb5nuhE5V0L~+o)w(P囪ʠWGSr"͍2ͺqW*ӺrdXz'=X~1!G(9}x*zXDg%˰TL:S.z巈<1i_9ib2¹XE_ ~v5O<1aM? !e5y`QbOUJ"TU[_0t(Sݬ+J*ӺrL^c(*[^0P6 AJ`1(!"0al2>y"EmY+LLʠ6ܚ [Fex.[,MzҵHg;_z]_36-;vViuOD@D@:k: _zX6򮢇rtG,$#\zJv3 j;&|ۗ% Ӷ[guO~}_6}d7gX~–eŸ2UJ@O!z.;oI-: ~C@}'Nл˽܄5BXp=a[%gX2K9ӮX֍kǷCƍ%{=4Ybp0chUَh0aN!=߯4;aOx [xy*H/e҃v(9HE@W:3<Ų+yM7ݴC&" " "0!~,eVZV#Xgq 2٬Cj8zuIE3f?gx |q1([9n0a^!XPx/bowǏ3bAV" 3G|I 7Ϭ%IgMD@D@D,#9eHmsY*5KZWXa^}I;C+¦OId~]'0&˻o̡YX^y K,CT빤rL@󇿾 Xnrߙ@@ Wͪ)\D@D@D@D@D@D@D@D@D@D"RVRΈ" " " " " " " " " "P)\+)gD@D@D@D@D@D@D@D@D@D@ W3" " " " " " " " " " TD@ ׊@Uy@D@D@D@D@D@D@D@D@D@*" kE H< " " " " " " " " " µ"rFD@D@D@D@D@D@D@D@D@pUHZH9#" " " " " " " " " R*@Ep)\D@D@D@D@D@D@D@D@D@D"RVRΈ" " " " " " " " " "P)\+)gD@D@D@D@D@D@D@D@D@D@ W3" " " " " " " " " " TD@ ׊@Uy@D@D@D@D@D@D@D@D@D@*" kE H< " " " " " " " " " µ"rFD@D@D@D@D@D@D@D@D@pUHZH9#" " " " " " " " " yML\A`׎DFr6(['LZOCm[k{xU"" " " " " " " " "P=vֽIZ}z{9ћe9+" " " " " " " " -!κ7)\[@_ k_HeQD@D@D@D@D@D@D@D@D%pm fy"" " " " " " " " "HRYqh )\[YRTVE@D@D@D@D@D@D@D@D@ZB@ ז`'" " " " " " " " " }}!Gµ%@_ k_HeQD@D@D@D@D@D@D@D@D%pm fy"" " " " " " " " "HRYqh )\[YRTVE@D@D@D@D@D@D@D@D@ZB@ ז`'" " " " " " " " " }}!Gµ%@_ k_H8{q/zʯ%" " " " " " " " "Pew{iOw;FQ k{CexgܣO@kn,J(9WWdUVr%_?h0=l/n.aKyE,JMwأ֮W~ye\s~oQ2_lp?Q_Y:|˝{Inu?4Ms]*5;ɒ>{_6~oy*>cojYښ-V[ Tᏹh%א!}h'Lfm6W_n{w{ \"VS(PzXD@D@D@D@D@D@D@D@r5$=2-p5e.Xo>[4"0]H# kK%;$9,k>SVSEX3E ] 0d'L<<<ȣ:*B?YD@D@D@D@D@D@D@D@ kȍ%_ԇ瞯#3Ϲl䆮_qUG.ġsN=@mA@ z#n{u[} tJ빥Xܝuh𣏻z 8-2t;fpmP㚄QIK.{7*+~G_b8C8>K1aD7w]" . \3bZ`o.YלUD@D@D@D@D@D@D@D}2&R6)Y[ڤhYh pաYm=@@ ސ@[µ-A p 8)\"@@ ސ@[µ-A p 8)\"@@ ސ@[µ-A H(Gw7NoO?-np#G}" " " " " " " " "Mp&ۇ{po܄݀=ӥp 8& |A@IDATٻ)zG@zDPlHwc%$Xo-Kl  RH=wowoػۻ-|_=vwvfw>3;3CdL 6<[xY6Ck^^umR.Zl.6vmZ',d    m Ї붵ͰV}w>"jk׶5OX>Ѱkn>rDe&g@@@@*-@ts vmCo޼9 JI@@@@KX5_7f̞5auꌙ˯Zrܐ7&L1wl޽oGxn ~1f2~]ֶorSᧉ? ˦ְ~;#Bnظ^}=Ga=C7q'?`=[Aߵc癳Xח e]:uF-Xh_sm5kf=w.50qTfh[x'u;h_^#=W7ޱ~j7^{Uw|@@@@Hěf{˯"OAGԠ~RW6xSS^ݺň{zgYnnNwcjuqu앷޵k/eeeу/~EuUML(6) i=@'~AJ\_{}{ꅗMj1w\.͚?cwP\n4+? `n k^_`wPknu␣BP߶jw'Κ3n|׶kHԧߝtc/=+vI'Gg^zնnSO8zwيֽK`~s&ݺ`{O>3Aޛn2IηfG{ΡIǎ/"[Z*=u s:ni@ @@@@f֌6ww чT*ټiS~];I-ѶmZ,\$xM?Tc^)fتkl{u3]_S"ڶ F:lc>[or? ^@@@@RHk L,ٿG +. AZ>Qc4+H]<9 aZ4y]|J_aYN=7A?Bw}l]w@@@@ uκȒ,]싥#ޮ [}>|=Wl܄I~pu㦢`r&MBbQ7zI    /@oMдIcs{vժ+\_?h3fͶClPo@{7moÍVYmsq UWƏ~=\U6ytꆛl}lS^2oAPM&asypQpx+ӏ娺C`ahʾr w`]{lϓn{ZNpT*8,8/;h Ynq)ܣ{WۻWz-0uӰ}N    U Z%>&GԾ3AKR=u >Nr D\[nGt)2{]֖XiK/wڮT깇k/;}(xԸE-D7kjkj}4!W}6wCO>kߌbs9C3N5;<ﷇug}yeZ{av)'ZE'O^-kpU@W'@@@@W r]=՛}lUY0upbkբ)k]Ζ.[a-[4 7ji/[VҶvKׅ[F .xU-Yjճ&ŕZ.\lrdgȲ+] H    @ ԯ_-eV!ZM@@@@'ɱ@@@@@ Z._"     pߊ1@@@@@r×     @\bL@@@@@\%     @@@@(Wk<|    /@5~+D@@@@ Z._"     pߊ1@@@@@r×dfc&d    @u pna@ <ٽ/mڜx    @pMD@ L1~qv-     \StP,@ Z_knf%+>#   @pMA1@@@@@ rX.0}ُ͖.7_Ϭ]+A{խS-sd6wYFf]ۛ,[}f+V5ml֭^e127ވ1fۘ?lܢr޻tW2ƛ*(4k6(=nnaߛ-v4q۵YǨ 6/ Zi[ڴnevvݫ̿M>쵧u9'Æ[mA"Ӈy ߍ3g[# o;tbuhoBLMdcƍ[eۭ2RM2Ŗ.[a-[4wwBƠeԲ*-tWAOΝlG^@@@@ \OPW;[TX7i[_]zY.Wf~j=hNi4VfmQ2|k|g]L֮soq\wYN ʺ@SړojAX.NW* ?Z++,M0?`[q&=NѸACGIYw?Ofz^XZrmvK,[.N0۾e˘g_zcRב`@0oJ|þ5ukeQxaAխk_ph. 9Pܳ,77'Ѳ_m9ndYaC iwx5kď?1Yo4,<` G@@@ \Oۢ`?Ѭ `*@kC1,)ZaQQMӹٯ.xQfϼevٙ%#.`9݃H{B-+nk׵:UKUMߦUsBQy}ƛ=ʥr|[fӫ_ԒV1.fڶ,=MEu+:ء j{ =w="-5ﳼ<;S숃F W|oU-KmJT]Pug`⊗^z^RkP YC3Ck3iuԡ}ژVxO٪37    \se|Je: !W?59Bt=:hJe_`7Eyi@kJ}ݜ_z>C6REjōG#FjANQUN\$?]dw>]yAk]wm{vKgU3ZTaZL3s\zφYti1:zEp}d?}zn=݃ZE2@@@j^k͛c/V\0`6t䢇IΚWtƑWlFfW-qi'^s-yf>S߼ԧ5#9n#] aIRZruТzh?~"RYm+37͚370l$ճ}`ƵdouM]ڨ(> @@@RRkJ UjDɽuf32էnzv6|u;ix3-z^뀙V?O}i_v.?G ,\[ίƨhkJмˋn5ުk7ߵ^|ٵXuM҆E!4m8lYN%5uOySٗxxr!^yV) /7u01Re9QÆo8:課>S Y֮]+0xlŪU~p9m޼7jU$@@@HMHBjHc.H:ų6ƃ?M52ڹk(Xyf7?jk8u.=I3p- ͳ[ nl^E.%+7jgY-jXal0u_ٮ;}?a]{L2oG|gzr)9`}0 v[}, :[OrTĴjզNiWpcajG~Wfw{{UߠW\k0vA_΋Pis{v g/۩5*Dg̚m?8"x+ +sUAc<,֗-Ӿ;tʿ]kW_rQG@@@$ ӥ$٪)Z4յXuۏlܔfs] jtTlk< wY.p#g \'i]S݃.]SN) *(oxUM9ͺs4>8(NuLu8޴]h6ox2JYY_bVLl߶M,';wá~SЬnjӦ[ ϷAV炧3fϱq&-;̝k w}h\~ vM{~.֭SϰI>WUWOe OKAwηq.:{ꌙAs?fwgkݪMt]+|;jt0~Ϧ֯gr XXͿoެi: )x=G:2   @& g2e[_ZҶ<׻)Tڮf/Tjүg3aB0_dWu y ]ܭΤ.M@q D9׬Sn-s}/tӴuD'\ׂ[9͛6 Zy#v ^x1gQi4#uYpbkբ7uǰx2kִEwpe` UĽ   $P~X*xn TƵxHRܯeYA]?̩"UT3\œPkȵN]⤮uT<2ӔLmc[{@sNisyh^̂@@@@\+ d+G?%-Z&F{7tw1#wvB O&|z#   ^.D_R cCUK{/d <Գ{ԅ1[Vfy@@@jV U ZMje)`5wkܨa]z*R&0   $XkAS}v\S} Q>@@@@tHՀkaOgvʎ    Ԝך&'@@@@pY<@@@@95gMN     \3|x     Ps\kΚ@@@@@ f f@@@@@֜59!    @ p!    @ p9krB@@@@  +C@@@@ Zs    .@5W0    5'@ @@@@2\k`@@@@jNkY    d _,    Ԝjͭ93[@@@@mTpm3Wz5-2E@@@@FR9ťQ3),,o\|@@@@ (ЪmGJ5!    ,my     \rQh@@@@HEV(    ״\m@@@@RQk*ʄ    i)@5-WF@@@@T k2!    @Z pMF@@@@@ ZL     \rQh@@@@HEV(    ״\m@@@@RQk*ʄ    i)@5-WF@@@@T k2!    @Z pMF@@@@@ ZL     \rQh@@@@HEV(    ״\m@@@@RQk*ʄ    i)@5-WF@@@@T k2!    @Z pMF@@@@@ ZL     \rQh@@@@HEV(    ״\m@@@@RQk*ʄ    i)@5-WF@@@@T k2!    @Z pMF@@@@@ ZL     \rQh@@@@HEV(    ״\m@@@@RQk*ʄ    i)@5-WF@@@@T k2!    @Z pMF@@@@@ ZL     \rQh@@@@HEV(    ״\m@@@@RQk*ʄ    i)i!)lPY[6˲ B+fҤIVXX4&MX*3LSٲ/f͚ ٶN;% _M0!c=f|׮ SP*'[o54CZC>zʚ6mj\rU"   !PWFTB۰5FO,"S۬W֬IZFΙOwu}ɓ'nݺ$ĉ_WP~ڴic^xa7obŊk~X2 @@@ئVV+?ɖn;g:AX1jj @/RxU5][n> [uC>eeeYnn#W@@@@`[(lK_˼޵lMn}I^,=rsU[m{V϶kJKD4h`Rଳβڵ]K=zo{=u]SNIj ,Ybf XVV͛7OٖI$s@@@&Vj9 "ت@ ׵ƕl{<1:?(Z~U~LIkj,65.]wܑ|駛! 8GB@@@( Zbw 9V(تt16uA Foڲ[c,sm5, noec;pkÒZYQWq̲aL7{ڀKu-qq-r۵βx.N)<pn:7Z5/:?}kaaۂ k׮v{1;cSL ue]>!Pk׮]0!C}e~w'޲_Gx?p-Z(ܸqaݻp 䠔|֩S'{2h`n뭷lڴiΝ;I'dFaÆ٤Il*kTuk C@@@jBk5*wO_ mޑԵ-ŽԪx\u5hiIȯ|NRTy lޢnrsإn E?S+#m[kl`EVg֔.۟۹'ԲA{ެ~YXh{sIJ0>oW]iS\2_֬Yc~#}WڕW^i_|HTR`1<`u]gZh|g9V^|ekEI= i֬YDu˗/=3ڇ~ W߯W\qEh7Z塇\K/n:5ڢ T}'*8r`6x`(*Cwe ~}mdQpX7{D \"   &gߞ9A+V>満hxZyvlSצEIU[ N-Dz=ϾU:uBZQ.pM`Ho  jv룛b[5ZW/+)+pa{ҕ df SpU&{_~*g`#*郭~XD%ּ5LwO;4 qU>lz#~CSN0Lkxިu?AiDLy   ԰@T}AEb˵3܃+Z'[+pQNvaa,ŵ6UZzq5ǚ]=(u9.}r鰖slӠ~]a>+٧3m/|zvm],P(XUO<HQvmjy%A Wג<}^e6atkOpU t7nm݂>aR"RVW_ }v"=j6bĈ8eQ 9sӺ_}ĪZugP^l\_+}M6 &Z%+4wU$j]f@@@@ E$d-e~[r-Lls,u T6CqSr Ci=sV\f )cPv-cm+ jXjV (r}voʵI6n_h>\]Y`x"uҥ`f͚QFv1DŽ>M#>!e)k͋ U>꧉~O?\U[+p[_ZF@u.g@@@@&Js56W삓kٮ;QmبiJA+]mnu꜒֤(m JKWlwma1&)sPvF`iIy5@iV##f%eY?zYO%eâ_[Xo[7B\ѲEtK]pMT /YU.˸:EU    @\Jxu{U_An_X?S`UZݳ~]WT-]WwW/Ax\$5LHk׮ -oMŴnݺbj9# Y.*XL   ۘjZz >m'zRB"pIj2ղVˎrC/n [:wǢmr._Bg;qD۸qZ@Se Ocƌʈ.2@@@@j ZM]?(<TR'Z˲#~젵[U&2"?<ٵ`~{>AZHmZFgBS?>MQh/^X7S]S4H;v 2//ԃR)u!8#G/5Ͳceo|RԊU7E:t_ĴC=zmN@iذa=zӧŋ3\pA0~β>}'MZ:.{[1\Gyd`ugG+u/S    $@ j\ۭ[dٵԱ.X铺 i_xU-bpJmS}_X+U ގR j܃Z];vh|j<І~[kGH|UWsl%T=Ke #NVӦjr7x5m4TĥK_[srJ74Br!6dȐP.?nܸO(aZ5l4ׯQFي+BHtY\f   'P˼eK%uwGײ=\ϦK*ȵZp}F'=TZ.׭cAXqURל_Zzcqhܰ$K$?ֱ3e-G6~{T-:vm7{뭷l=\CE,Jvt'V?vWvmʨ^zv5טZk׮]wD~#7vk.'#   @ dmq)s/5L],w-]RP,Zi6lVMJbm]{W]'O}+^?ST7z3o<۰a)(1ARJjM;w\[vu5jY;tY._"   6'@ $fM:I*ꦠ[j.n[llu_yD-tVnݠoTu1[[wzMV裏L}~waS[}Ъlj%ȤnΝ˺H/B@@@{3ˉ`;#1"V.A+ב#GZwxLFZ`Au5ko~YO>E>W=t{"L)/   Ԭך&PQBѣG<ꨣ\c K,Tލ7GyvyRߥˀtXbI9@@@@ 9wrM1?^6mZUnm~]r%K[UV7l_|\24ZU^7EIu@@@j@k EAM&M z tMYfͲnݺY۶mSU.S*/(3@@@@ QA@@@@d d'3sF@@@@2Ik&M@@@@*@5d    $@5&˂    I T~2G@@@@L IkeA@@@@ pM*?#    @& pͤɲ     @R&@@@@@ fdY@@@@@ \O     I\3im,     TI's@@@@$6Y@@@@Hפ9    dLZ,   =@IDAT  $UkR@@@@2Ik&M@@@@*@5d    $@5&˂    I T~2G@@@@L IkeA@@@@ pM*?#    @& pͤɲ     @R&@@@@@ fdY@@@@@ \O     I\3im,     TI's@@@@$6Y@@@@Hפ9    dLZ,     $UkR@@@@2Ik&M@@@@*@5d    $@5&˂    I T~2G@@@@L IkeA@@@@ pM*?#    @& flK˲f_ڵUVҢΘ[,CYV^V'KڦMQF֤Im믿Z:ue˖qOW͛L֢E [nef4"Pm&WQ]VZejղ>-3a~+myen^z[)_#[l-VYiCjw5U]+V0wUn޼㎉/deS:׍LXmٗnܸі-[۾}l]=W`<[dI0E۶m-;;c>-*WՕR)&eL6}?]Jv!21͛7… N.rrrb.66xc,+֢Eyկ_?>ٳm}9o`~o=:X Te[;wnpIpVVՃ?}G|Ϟ=^~+`ׯ_hBMpC3o:vЋQůҠt(cWv[(k{`q>rHok6`K3aR3Qe)k[N[oo:t萶 e|'ΰ|<2@/[ŋ4h Y[.^(@@o9ɓiӦ[mP^p8nܸL:W4hPxk;1b6k,߿\˗ky1D+m`iӦ٣>tAq{V}҄ g".Ι3|wmn a ~(_ת*WUO6RղTU?"Tw tqA 3ΰw9撼6i$ѣ17~7tSq@ETxmSOvۭǏo/Bp@ku<ʚeu<@b+*l fk 7y3J3T'{キp I+7|c_}UƍO>]gI+85tbr"k1fp`lBh_kKedPVԕZ2UWc\ K*[^I-j)?T@@ ]@UR1km*k*T|{챠;,QPXfԬ&7jJ@A3fz VuɱcT]̨IuZUwavcpMfR 7%=ܔk*ۉt.6nt;93uT@l58J~j_ZÆ }Gm2)ո6t f̙m4N-btUS&J]vTZ@믿>o6[LĺQ酯@FVje.>Cca P+j֛)'buEـA wV\s]wM`KDe9c{XA/<ȼ Ra/kUx{&wYTӹ ¯־mM%A˫%iPNSL J|(GWܖ/_| TE@AT7KK`k'j*k*ɴCGHe[ߞ9֫k~]~q/bMdY6YvhtWzgٷx#ۺͶϾСu[\h_|W` Zhn,}ۥG쇥%sqcmڜB[bneͱ>;?>kۂˡCPX]۔n=-6SNA_zxXer1:7t{ѣ~1Ju!D}$Vey~G !} RYeUk \(h|!OT駟Ä,tvu{XF>g:Q͘[hl]sxWS ssW86n2: ?W5g+5f6-G''׵+/;e^UG -w9C:aN#hQEۧOmi}WwVQ%ǔ/S^3G](;|طo5uڇ.dQ鸬u]g9ji)%t toWk_[U8ch?eуƼ|(%uB3~KΰaÂ߰ykZ󨣎ztQDCh:tUݹAۑփkVC:koRDۚ+Wi8TZ@w߈J[KeR,бZڟG't^tNuiYEgk~U-C|R*B?6h*/<çVp5v:Yҁ92p *Aa6|w D,Ut9,R'Tc6 ד|O (E?@/FӉ?J?*- JxӘIvykx]~vuGҵ럦ؿdKC7ېj٩.5N Mj;y9 l;!X6מ~s[XjQpu=j^ll{z.xzizN02wbs ?8vʑCKߗZmA;F^uֶ꓾{ʨWuƯ*/zU/VUė^z)'|zup;xaELS2rۅT OZFeU}x:O>ZVY[@sEtIT_QG'Upp=-O>Cwf UFW]褃!CbVXUާ~:B*Jڇ~AƏW\ VN4?Kây޵|R?~!犤_5ok=qWvXQn^Wz-o :i۷w/D?o_;?*WM߭o~$GU7zҴO.KZ_'䫜j$*hT޾B&*Ս|. —-s4%=c e+ ڇk</gնv"ˣ2V;4?[\ԿҺּi^~Bsnt@V+=k|__xɴs|o*WUC{X,[ J;(D w NCy6hР૊.7w:k]z}cgMI]΍4WxRG9^tRDW?GgkÏ~\'93ZIt>,o\ 'KA:zUjYtZ?UN&b%m'mhqtVJkZSj|Q^ұ؍u\+du!!y>U;Bٔ݇FJЛx|v22)@p~gMj{_IP W|.z\_UX3Inx_|WռբO'.:O5!늡Z6+@һu2ʋNЎO>O<.xɂŝ*PV >+m:D_~9+c*šFAՕ˷ͳ Xrl~9޵Uvب|[꾿˝<}u]k԰<=z:/ VjŠ o||5qtqWƠw˵eR+Kؽm{Z/OkZ_( ۣKpp}RO^tfV{C9^8߾W` E-q}ͼฃk6uv ]T>l ZZmy2+ jO':[z5NJ}d*Ƶ`_T2wֶeUSY]$>ߪ+c7U&tz=sJ]Cu6[eCkWUjyE:R5sB^ziP~Mo$ݪ>ਯ+gUTU=1~:*邂bO*:fj3mkꢁX g2^u}x6ZF-K!еQ[|P=:]N}:<2}j^:(A pM{Y*ફg]Y'N6u'^u'WB;UN_9G'X.`U; ޫ¢%`N:5,tvwv \rˆun=Se\ӝpX-%y.]|;؝[pAUxI clANT]V;7έL݊U[wbUvqJ~Njezyw/<)|ku.eȭ.8vaqMʚv*)>)Ȩmg)uՏ_۷b{-WԫpMDu@g[VE^JŃn _.bJԪҢt^>*Ӫ<**|0lE9*x:8+wq jHxj}=4Be>o * j`*U0' jmUcP / ~uZ h0ZWe.n(WV}_Un^-'J ߶UjmRJگ:I-vkU:WVѪUuRǵDonGUES_jQYAq#Wqa9olǻ JB5׉@u.:݅;b\5=cHI5L'7 ᤺ӽc] u|Ⱥ u==lU/UG+:Yvx(তǫNUQk/u=VUI(ߜ߷F@W*iuon  n)ȥ`;|ppg[t.O_֫Y7:ht뎱]Riݨs%fUGzWV!3j0a?:>@\))7F O"ʠ-)󶭕MO˪ӟj(:j◷yi^G\Y)kxUX֩AtRcCEA&?mlkbq}pB Y;2|];h% ׏DI':8ig a?(lppK`P'(1t¡i|ꇿlu^]s-'"&m_[8kYNS`m TpH "TI}RrOZI|y]I#ч]z_~ %{DT_+P J7:N |[n_̋Ə뵢ByhR *IkF? m?L۱;x?mk"ʘm9l}։d+\.ʺ7V~A?2'g߫eP>rDkE֍NdN>d/ʵX=7UUw1]IZ*MQzZST/\뺮Z!lg^X!Zv2:WQRU|_(UZV0Ct]hV?~|`c7UZ~?㻌E}/{Gzc%VZNߊ+ K~2\N|nyW0Q)܉濫̫^ш֭oE>m[VO⭯5/Rp'_GU9Aѯ_):e ~z?&_c+!|P/"gk"u+U-cb=碚H:/A]?dtu]UkW]YQ+9CI>Q[uHYWt5z-+8*?zCkGv:(5 OO-W7(BԻ{;1caA}//ҽ_(:β]8><+-&zؕtU8zGs8em~w;ND-2+OAC_F pSq:w~I-t]$5VY<A5J4^ʨ}xRT\+>p>G o}ke~=o@;:ω0&r _Z}eO .*i{'ߟ.[8KI6J?AIo}#U%5rnW棋j=URqogeç~>>;ݢ[GS:q-۶?еX'' @TIwTJ}{F֑xvͱAOEiٹ$.rpS3E?KT?LTݨoXCa{XSkwRg(bG ^Pb%Dc5IѨ.`o`WTTTĊ@@+?\ܽ{;zSHx}LΡ=ϳAprOilMD{ύ?ҏwd#_r\@2_پWΖ^KiKQyF` 6!ѢAc`?JKL/W@ dY|!{vS֞ |kq@.OANJM sr 垭\ qҏ xүk.gFdJ>K4z{A4]?X[~T',Le}?}/:|F\XtzqcS^xQN՟MԜ^^H,.W}.C1EU9{po/Tb Ŋyb/fd_/^|9OB8IYvA|i>eDSzh׻\(\+wC-_z߆ `PueNZuB?U& !M Atō"2'qј~0Wo5%_w-!D{FK- W $ճB'L!v WrK<<2Mr~*,zBѿK}g?J8)Me.ϣF Uf=Fw uiB}6EX%KQ-_5r k]Ry3Yٔw&e {6,x\i0b_6N6VE7_~yA >2{|='^dr(!U%)Q \\6s/!ؖO`QIFKX|;n~ .Dh%vzp'|Wi yLRu2]k 4ܼM4d@Fh2u??yl1i}4TL\:7{m6!Aa&b "Odr5Hx k=#<e_W +zh4;?IrۛąNbRբ  %Rl "OV>7\-NX-Uq((Vp\,,_l꼼'RC%d[%ʀ ,,> AZ+ef0a^H &.)Dj5 wnKME't^;3i2\pL{?Q.2bGɖLRu{Уxv 0hj;u GIUߞq3G:ںu J0ns(.G}g>6gh? r)zlU u"‡aISZmNiRy?+'mAmdhc\t_NXYr-Si#Rө&o1O;CJZBJ}d)JAqbk<4Kћ;˽'b:Y!վȓm:\KܗQP_IX#E~nOϷtW9++u[7*ɉ~FЇWjx6cVT0Њa,_weekَؚσ}c?UH~(wv162|WɌ5֭A! s5~{^1sߗ,Tecf;AXj=rR.-Uw98z£FC D/(M$<$#{!=cyFxe}<>n6qX3]fq>~sү߀q"+{_X".lW,P'YCY0r3/MNaE'B]-O_5LUr[v16Wev[|6c9rL}D o3ձ\g43 ]$HVo\!Leac:=O]O e*8jgwq[?6O_1 gƃ[?3?8/wUR\}\t5in7^yoX4GwGDžW\qEbuz4 XQwz <`άk ɰHqgijhaYJ'5" v,_HyԸ u Z*˵KO/q}߫o o%]ȫ,ؚ5F jb3V Hu`2uvQZ_4JS 7ܛ,>VJ^J>o]LvsT=ڹqaFꫯ6bݻ` O-s|OfЩĒxZߟ鳘7/lIv3B Mfa/<'c/䳜`zyrV1,@$#mN^Q\]1?7a+psy؂E>ڽCh- 4N wqT_ťor@gv.}gH.nNmSg+Y W$ޏ LcĞ[o5{yqkVM&f3Z%7qLm~y2TiSxicX %F?=1cz-XDdSyDVGl~K.|yǙkZcp XX!`@[R8(6tI"(H~IK8|""\" )vFyImP4ifZXB6tx/7`YlJPSh`9L'#`O:c],TǔT}rm3n ij;\W*S*A5 jsyA]CL7+%ApO3~!z-CGiVxQLtt34@0H7jgX϶a;Ә5+`C!]_S?ŴYswvדּΊHx#:3tlx,֚;Y 4M&.JzϳqKr\#nos6K{Q(Vb@_|qdB6qzʕB2ROb2`۠d~be!+~!,dE Xd{? /<pO$4[|v!lsog!o!-}|O0&>7DY7p}-=Pv,Q. ,تN#mlĴUԋ^;UR\}-Lj5i5ZnJOoA 'fѰ`3灃€#Lq`y;َatп +Ծ!2iv4H3?qO%Ko-ӫ+&zh Z$N e y!gAA{a>ymcܹtN)E\ヱ#<2v+#8"gE:2ZWH0W%\hǨ0!,Zm@C:El%.:/S1_g:3"䇎6y+4ʤ]MtP\!k`&[owqq`B>]m.ϴyJ!ggx]yydzp@|ϳ>F g| άVys1cjMxOt'x+$.n3~Rk 88z6Vy͘{&W^׊mmʷ.˛?Z5,Za[η}ٔSl6g3ApwllaeO!ĂGRg'CKꝏK/45aiv5=HC3tA)"SO=;M ۫Nܓ<kd^M~|x-,TyOO[?NyQ=gxvs~0 ^C1v16+7DL'pB)4c_=ǼFH幘oTL" 1txKL֡^Zs(5}o+/(QOF ηmADl ^?^>DYU3/2*.7zOz+ӄzxkŔh^icD37Zg~ϯ 򦋷,"**3t%4p恗싚:YL^~:ɼ7w|aDRb\j< A?\S^Nu$E]Pt垭ܛ*e{%v#-4 jyd*B-ŶY!^&LxijngT I7|-lb<^dZb/gԏmA2;"/>9K_lBˠb\8^׊qҕZ-J'{N!ɏ.K[w-D1iɅxs"HXw1N:VH%<^e #ȏӧ@%p >[o [^= BS[g& " SY {G#d]ԂAKc-4%+|@ƛ7[,XJsEb#LA!U)Q-! {{Ǽ "pUEH'>a„}(_ϖBʓX| <8:/-8 ]SLj@SC 1,Zq7?M?"jZBkɧ%-%]-Uj@_~iGZ-.-!>_ c,_g4u&,HŬA_~[qm y̖wmkz_a=SR nRsE@D@D@D@D@D@D@D@D@DHp 숀\\[SE@D@D@D@D@D@D@D@D@ꌀ: ʎ@% ^;\D@D@D@D@D@D@D@D@DHp 숀\\[SE@D@D@D@D@D@D@D@D@ꌀ: ʎ@% ^;\D@D@D@D@D@D@D@D@DHp 숀\\[SE@D@D@D@D@D@D@D@D@@:ˏ#" " " " " ̜9f̘ZxQ*h߾׶쁪[IT@_BB:JBD@D@D@D@D`6 :u٠*b tIk*>kM+Q O>&NhӧO_zQ*1~Mr|\ X WR(/WMyJmmk-"}ÏîM?}Hpfj'EX :~4+S{=#\kc,X |嗏~0ӋƸY$?aر\senij /`L<2"qa!vmq<@$~Wb4X꩸X7ߌ :1js5̸ǻFE}G_sWYeTi__;~ږXb^۶mӎ'#b7HZ7[`qƊ8KًYkh yaQN}Hu}epsCpYr%S$#Hq dQ ehOH~ ˞={6УXޣGX߻u(?5•CNl7o?0zɍs\) lq>&L 5\3C1Q'gÔjL]ez>mV~|‰':}Mŕ?qs2eJ\{x-m&e~6E{vxoq/rv<[Z3!}Y,^6 dX`{{LC]ZmՒ4غDgesZS{F{E^/9D_WW]uXlYӆϡBű\|ۯB.},#K_ّ]s|4oK:ujJ<>k2}= la0dQ0r " " -*\1:ɹ_ZX%.x_yQpo&{9cd`z* \N8Bc&Aã\O(X:4%1yD ҧO@TqoLd?+>MN/-AD<)(V[eWʱW_}u92 u>hJ{1mݚE鬳:q|Kmm&] ɏFB~u?t`emm6^S?<䧟=tA0q޽VčhLۻ=0Dc*p3'_ =َǃp-hQ Oﴭ6)g%O "PNx:3_ʙJZ 8|Qš kaEN:o#D-eE"%Vct1-#IE&yhiE~(GswFEDBASNi|뭷FF,nak"+9 n!-G/z(Z">5)J#4pƵ`@I[nX-{@@8@Œ,"r8 ~~AK/3ZR7SbF@‹pq_u:CoLybz&|{ >o6lذ85=S? 1e2!%ןȴic iR?K#\p.X #Ҹ1FlE+Īсk5ڕF;Czpy@0ׯ_t9~A%wOka)줁XA@}(̽3ڌ=أQ܇"(DNQf\^pËkF{ '4z)Y6"m-ߗ/KnCLz#z1ڍd[<˶ޢR Ѥ6G[iemWM/`όx / 3_{ ߕ󫯿g_xzwl8[R:kEzyyQ6w/ӅjkFvKᜧa˃ɟOn]nxf%Y32k;G˼M>ld{xֱCGݮ;F7v-ܭ-)_ndv='R=w 3)*Ww%gȧl$f#SF.!뮩X5[n(b O Pt6?,cp΋?1^ e_Rd"=b7& |s/t)T2<Q.̐7D3<3`(+{pDA"63yyMpÆ` tEPZH7 1 e"|W7BE0% Q޳:+ ."疋 Py|Q>0}z &Zǃ?0\`+HɐOHVIΏ''=aGo{##!:OشBb`\/b7iuE{?^D:c=`Q.AGuT\E,G^ioiyBF#d\M]lE~S١.7"}/ޒuzO(.' Ϡ\uI핥ڈJW߈x9@}`5_>Gy`l{p? tOm"%ZJ5FZ?/ }=O ҫo's-=%]{ -kiNoe;؏fY/{xďW_mg_Sm {VSߥ]zEigw !ugT͓oƎ0I/; -0|~x÷qwUP02HCnrme߸ ~|?Zb5{ !L,yч*@K$РĜna ,Ip5-<nwK0DeB<ՑGiX U}_9>a:5Bd>Uƭ6 G!.=WbRBi!REKEV?n ~ooQ7^@\XNRpK+wK&ʽĵP}CjqooSXXR>D߿IU=`1hK}޾O^ddji}/]\lsyV꾭Z%^z n^ǸooklX1 m}z~#+)}ζ{}d^r Ϫ>yw.~lr_(.Rv駆>sckK]xi[wvۍW7^c {ͷ2=18;_ٷx7]ow|}ZOs.gzغkY+.{^{WL?.(V! F톫 _~g)uM6,N< xܼ /1]pl_'2XESϏ(K4?%oD@klVkXT/, x{$zjJ6V;,ҧmyXE+d+[2tј}X` ![9=L1nܺ Ѓ[ :cA)瞑:f#"vA"ׁ%GRPg_R4?]=߰C;x)O/eJL'L 2:^Ƨn"' (ZHǮ6^= yw#ZË_<˯oCx8?N:ϙ~HdtպcCZ;l;tφol`Eq<ݲϦvAkkt[-vq)܅O:w{x䉯k_aS(N,s ۝=<˶Ѿ膡5qW]yŸo5V<(ehWhJ@s42)fD2e`h.tM :X)2]O_3JDhͥ\|D\aG[\p]&5c5*t\YbɔdDjW4'|r$ 9O*b'B3<'b0GLjLe:5."PQ'Ӹa80G\0*0ydz3yETJ8+JpV![2 7l2x(>$\c2Z}E]* )S)is{u3u eS}"~A 㥔>k)i&ύ"yzp7+3׹S /_ L_M=*xŗ˰LlvMWc?v ny%'X{_DXzXǢ==jn܏Xɖ#,sC[vepÏƯX :BYv ۪͕?z$ WQܠڭYIgٓa3tD>(,DK\O!e\ \殇^&bX膯5h”jTtfY,)tC"t\qϧGљίUeX,GV~q0\pe;k ,Vee,4J_}X</m`{饗}Bi'p @?}:cEMt%-B\#kjQJmC aVjZ^!Sh,_-9V fwbZpq\?3ryi..\'?}bP=w!XΛ&F|CC9p> ,Oylb<2%p^L >\ϲn`W^Xu jo5Sls L :9'~#" " "ДצLʶXq2;[`Ow7|xWU'|li.JS)s-Hv}|&*a͋oX"30 O>dTY}yS)n+.dM?g+pg6<{L 3"ozO`^aUsJ+B% f;^ /x^hs'׳{wJEýv!m$'''"/K~}^_ h3ӅS-ߙ>G)23#x_~v'6WYsY} u-F/?.Id-SDR\J+<γ\|ݯn N 3a;֧7]OĆ?ltQSPwrߚ}|ȌEhv [<'}Na.Hk/e̔ {>8lSdrrg?eJ4$KZLUb|JÀ-iL_IǯH;etc.+1IwdR򉛗 ^w/ӊ1@k5B;'+#Xp KXDyIU20 "d'V 3CRmH!&]t_Ys3}bI۝wK=:;3, 𧞵}~Sچ50 ϝODW U(? gh#$ ,SY CPwFK) ie]$?r}㢞{\OB Ke X&El5}%Y9|m9G+|= ^X!9(p,,/B2Wb'/nyقn~,Bׯb9S6=n>wVG8J W;/&gLǭ~ņr +GH_ Y^IkgɘT1%"T2&Fk!aVE۷>Daq{)9Mcƌb޽mf8^>y_gs6.}NեYhCZ걽Np yXۯB< .ؗwY\ٽ}6gm.J+,Bu>{ŵ%go-X_4+Nc}Elʗ};7>IXjy~k1/k1uR2ˮoÏ߀ؓO`!;m/ߌƼMyj)_lu]=,i|l}7V}SbR׹" " "  Hpṃy|A_"1oۓҎ;6 aУF$v:L{'t]EIhʴ</DE}ݗq5kOLQG7n~KX}!P]}vmTtYxXƧnKOC߾}u?QMZšktWi}>c!C 5lذ<̓s'σOg!K ,t X\L+oF8A.G\uGO\gBxe|RRBi [=Oܷȅ%_O6{6{X6Qw XI{^+s+J7E/yH^'˃ݸ@59dիWV@4E% I|x:_^7WNy>ksVj?=(L>H0&IqMi_b^7_u :dz^}M}k׆c|g6"FcSo\ɠ+rDD|"rc€-NZ V\_ iO S"|lLy裏NemwS'b>]@ V0/sqPjZXe!εD@'QJ9|q1"Zۿ :S׊aMBC$"{:ߺ-܇⪗뮻nl{h+W^npp3q6eNv\'Rmni_~_] !/\[ky&q/buu}Dx[S]* q&|VWuL1v-4^z5lVahiŦEF*ǥW_o_]5E;~HO^3s駟^r_.kB!" " " h`<#O>Q@JcVk$<0ZLpb^Y8?@㎋ht`UwQG,&ar!Dr"h ,#GzN eyX|M#,CE@H] >b+y4e"έ\EɀȂõ Q*<_'1K|'ߥEqlևnJ]w-|z B(;2:۾zM6/VR}XD2U=_Pa˔9['g=d:ַ,oyBE'K^O'$ɺD{'yl[S]rjM~tAQxYJݧ?E3o4o)9 z1+I^bEN{BJ[GN,顔>Qe{/ez`!x"r&Ùd;mu胏=<}$K}rO?}Xۣ@.;Eg#RD֋>pcؓO}Q[~?eذ!m'}X' \}IS\uN! "2!]#XRi#s5֥j!L+u,>~s+8/q{y".W~!}-ĕM. [/ׁ6 ݺt0,N.7~8);wZ,5qR߬ !Og[nq|Ω1h(h=$k@tB&S`1'wgrg:DD@Djx)u8qgqF|q[)&Qpmp'KxN?^ZSD@D@D shNw3ɀ p/ " $E+>įʔr/|a6Kq2Z'}Et؊ M6h8*?S(" -bLg{𓆻|vsTZ,;~0nXD iV=ȫ}f1(Rz{n-K%IV%T%E@D@D \ ooȐ!qQ>| z@۷o\(-_~>E@DO؈#`OX=~}NU=Z_y u߰oX8kUd+\VD@D@D t"-" )bq7Oٴ""b`Ѫ2umhYDtU2pXGِ*"Z E@D@D@D@D@D@D@D@D@Z-zJ"" " " " " " " " "Pc\k|@! \KDD@D@D@D@D@D@D@D@D$(yC@k빖*@ HpP" " " " " " " " " s-UZ E@D@D@D@D@D@D@D@D@Z Z$" " " " " " " " " 5& @ɋ\[ϵTID@D@D@D@D@D@D@D@D@jL@k/h=$kԘ_%/" " " " " " " " "zHpm=R%1 5J^D@D@D@D@D@D@D@D@DzJ"" " " " " " " " "Pc\k|@! \KDD@D@D@D@D@D@D@D@D$(yC@k빖*@ HpP" " " " " " " " " s-UZ E@D@D@D@D@D@D@D@D@Z Z$" " " " " " " " " 5& @ɋ\[ϵTID@D@D@D@D@D@D@D@D@jL@k/h=$kԘ@ߪ9s͘1#ꂪp" " " " " " " " "P۷7ڶ_;6P]SNʭ@ tԩnE+}U*? " " " " " " " " " 'Pڛ_c=_ Yъ@UԳ&*U@$WYe  UDD@D@D@D@D@D@D@D@D@f\g2Tת`V"" " " " " " " " "  UVE@D@D@D@D@D@D@D@D@B@kU0+ف*" " " " " " " " " U! *@@pUFZJDD@D@D@D@D@D@D@D@D`v uv*@UHp f%"" " " " " " " " "0;:;\eQD@D@D@D@D@D@D@D@D*$VHp(" " " " " " " " "P\Y$WYe  UDD@D@D@D@D@D@D@D@D@f\gMlO? {ID@D@D@D@D@D@D@D@D\ kvyۃ oQD@D@D@D@D@D@D@D@D>HpP\ʨŧD@D@D@D@D@D@D@D@D@'>CudK gg̰G<@" Vu9UtӧOOߤ" " " " " " " " "P1pE|mw/y9;e`u׶Kj >s6rkOmɞKNlisi97`gm{ت+`b&Ldg6m;ngs1 omW6,kAO:/{c۶o֧T׊^7 Ma@ؖ wQp:u3cmCc^V_e%;l1㎊q cy}Q[W("j8`X<.Lowe{/dum`^c{_O)6Tv&믛KE@D@D@D@D@D@D@D@D"$Vkˉg,0-0|uÏ?vrV}Sn|gUׯ&ZOu[^ Pt<.}@5 ȥ@5i:vs;u4`mgSkӦdL+Ŕ/ .-S:[D@D@D@D@D@D@D@D@ 5H-鐝&Nlwy1ڵ~EYZzeۈ^ڷogmcZrZj:yO>UV\,eW$" " " " " " " " "6 T3Nf>dm۵Eu;1p0aD[k׊.66ַ vYҧ@+!йs, ]Z * PͪL\[UTD@D@D@D@D@D@D@D@D@ꂀ׺ ʄ@k 5\EAD@D@D@D@D@D@D@D@D.HpˠL\[UTD@D@D@D@D@D@D@D@D@ꂀ׺ ʄ@k 5\EAD@D@D@D@D@D@D@D@D.HpˠL\[UTD@D@D@D@D@D@D@D@D@ꂀ׺ ʄ@k о5BeI?>b}}֭낶:kZ6]Ԉo ɎuiӬ]v6\7/"5\`AD@D@D@D@D@D@D@D`\ F Ï?E_#vv(Oͷ҄&ڧ>EYz,HME@D@D@D@D@D@D@D@f/:{]ﲕw߷)_}eköQl%:X-b"z3ϵǞxuM@kf?`^=go-ӧOoTE@D@D@D@D@D@D@DuKqRgFh0ƛowkn#~`]wJN~ƛm|=lՕVVZ1yH-xx6ᄈu ‚\B1gy\ێۦqT}Ƚxh61, }m. 9jF^W]j=mv%{.~|2~=3q-K٦nrB0wGڄܹ}X9txmon?7d&CjL,6F俟xuY`;+S6-v>/'Dڏ3`?D18q&" " " " " " " "P\qc:,ֻڍA<{]폿#g?0KNǟ/ʆ>u[8l= -m~W?c;Klؓ+hSn;ǟ5nmow?Rn_fb}g[ae ϧL(=oz-qK1_@=96X|aq0D;?gwֱcF%P~_?Xcy " " " " " " " "PY\+˷U޶m[ n[& =އ5|cR.ޣlÏAu9戧~6qRt>m) ldpM\k׶d۶m%򖊸/3iYMYQb{uez-P{y?~ #lzN} {K[فe,">8p:'K66D@D@D@D@D@D@D@D@C@ku8϶U&gUF I v_tx̄&ZMWk2_o}7FVߏ[Dw|Hp}xÏ?i+.l#?8B" " " " " " " " uD@k]֘>źoRĉ'm,+S/s)_F_AmG-7/)/yqiMo&5~.-. +ʶą8} s-ZeN&E,V3~I%,H%*`]~uD\j׵nkhԗ_~e︫I I!" " " " " " " "PS\k'#xwvDX,k5Wϫ/j[W_e%5rE'Mpu3~W=hѰ(aM7CݻhM&ƿ3~~[ߍ {r9vݥDQHu@46+X2xv%?V³/7oŲ5}ѫӧ7O1,V+`AUqa8zb3giӂ%@abb'}mFw˯گ/" " " " " " " " ' נU`-y&+nnx]y-)n=Wco~!\.֣{<+,s 9:ˍ{1Lm+NJa*+`X&Ͽ`yQ4:uhÞ|rzMߜ:ALR2}Ϲ D@D@D@D@D@D@D@D@*O@.*xNactwvVS/W^m0ζ쳩F'}ގ;eo H>Ne尸Bݺ[g',[smO?Gy2Smg9\fA~/`9;OOH[6p'y{?!c޲uBGy;XD?o&t8_y]z)[mrfoiѢ7 )" " " " " " " "P %<}=a-Idz{۟i .uA;k_뭽f;S)_/i-$ sŵqK M`!eo~k;?Уe\b.Ю~=%|'eu]-RXֶ'$K~DzA " " " " " " " " %&L=纲V[R 'B]ZYVsϧX]luh}TϧLְ`&|Nl;o'ld<6߼&N2VѶm@>bJβ$" " " " " " " uFsu-Z+"B`*o&(" " " " " " " " " "לxSD@D@D@D@D@D@D@D@D@' 5V:RD@D@D@D@D@D@D@D@D@rv@$JG@N\sNȟYHI@kN<)" " " " " " " " " ?+)" " " " " " " " " 9 Hp͉G;E@D@D@D@D@D@D@D@D@D \g#E@D@D@D@D@D@D@D@D@D '9j@';fӧYv+o?V\nYKmW6ޕqߐs 1 Eg -8vBV]r/8$&UFੲ}^6N@@|˸u1@ äk%k^9w4+Z.m*>cm{NYWk4 aJ땼4< {$8xk6Mu JJM[Zna 1o[=tr؜:_|F.Z0ʿflٲ\j*V߈© Z]L/E9khpE~xkmx!Z}􂏏wZ!Q/9j bwʏ] Qj8 Dx9^*SK|1h}]m+z'0k9VAΛmGx8 S& T:Q?e]ؙ 6Gw 3&a[oh[SvNfR.32.`A[ 'ӸEN@RY.brSF ?_7vkc1ex[fֆZ(aHHHHHH JU[<}uHD][U'PA;jEhjsש%RN5SU{$eƫo&@r8`ĥqD}VWs%*nR;dis\{D0w{o#tמ{ST@-ڵj#k4C:@'OF$">2`xwtۡ=v?S a87׫"~Tl֩Fɞ0q4CK83L;xfNRd*;`scȴ lz9.mɈÄ7e᪙4       HJ/]ͽazwunR/_E($ bs̳"تVUБw :&3OH:)bZ*"p`}f_N`uZj.33Su*нC+zeÁ2N}T`v+.|e# a'5 Ip͛Fӫhk*P6 kl Ub G ??a^=ucF8t'6O~ˋm}Zi6WcFacsuײ}(YA"Ծ̓+TmMƧƏRnZ-%l&      0 0Õ$0}W9}u/ jEҒ{^K+[kjfDU8QD?dYb Oݗ5m˻dJy͐U1v}qElgZ;E,sjmW{SUKj=WgVIE=zʙk} 3Ujw")fje>p;fGaǖòv[jj{3?Q}}qi?/5go Hkhx( ,Zi*S }nU_O+ЋNaYm ̫)Ƈwvj}̉@b0PA٬rǾǯ}Y"ko}>]{s`ޗ *fjтZJO sglērVP|ib.Pp5HHHHHHHGXr&7G*d+QNگ٠< h]֍@^`#*sTMLëN,%>SuV9k~;9m3lL,n귖P_-ZT6+/o( NMgc x< Jg cF)5QUDݗ~2go> U3# a~wCn[t9cPMj2k.Ÿ#_jgΙߥSkC:+ibnA&{8qT1 '      Af]:!%b,^uS_1H;K]TYjnO0!U&R"ZKB&;LkJ#RZ[Qyɫ] uEo:vsδ@.iva+ٴ(PqN      d\=0B%e,7&7'q)˙]j@DpXjΑzWo̓,>ޙKV˜zO}g.lyGyfruϵ1]_S_2}&&~?;qٷO/c/Ǚ5 篿.L1^ݻAhr:$Qes-) bM#      ..iF$"iV@L=@C9(a֮@=}m3k꜡fW?Z758Y㨼%^AYgTgAtl,:^LZ5*WúȵNpu -]nL_  wa%gv&Ln~pUY#>sl UrX~`Ԏ iR*޾GO]ҜGlK\?õq@' ms8.uK\;KJ9X{[O>_a29LYp<L1 e.^46Umcn\Ϻ+>ʔ)~AJC c{BK@#      pJMs:''z)2=.El.P鿞%3U|\;cR_[JdV8uFjJ5 :S32 rʭw\ĤdpA ??,_Lށ"GKkaZ)Ga1@Ѥݾ}*l_qY=}ÜHHHHHHXm<И!  ,&Wϻ_70 :u5F!K]٪W(_ I]Le&ڰX|oCzu_&jgZhHrr2wHHHHHHHZR,#Iïx7r!ЫRֳ_'>T,X !qBJ,ZM[!~0Kb䤵7'"k}6-##mڂ.@%//zwq$      O% @!uô\]XWB9kW"-<ʲ"Ч.k3vg<&}q'x}HHHHHHHԒ\ HrZ#["pU=Ergg=. ^}տJxZ9g? Ww(zbx$@$@$@$@$@$@$@$@Ś e5UO$@$@$@$@$@$@$@$@$@D= B$@$@$@$@$@$@$@$@$P vIENDB`mkdocs-material-9.6.4/docs/blog/posts/search-better-faster-smaller/search-preview.png000066400000000000000000001552501475306445600307600ustar00rootroot00000000000000PNG  IHDR^,YIIgAMA asRGBtiTXtXML:com.adobe.xmp Screenshot 1380 818 1 2 ?t pHYs%%IR$PLTE!!!uuu?RvvvRlxxx׺www|||ԏĸȲΧ񫫫zzz銊􌌌~~~yyy}}}إ䚚憆◗͓ܔ󒒒￿ՙǍѻӷᯯKKK{{{彽GGGAT###ޖ%%%333o~guXXX555csĹQQQSbVeCU>>>:::yꮶZi///***666MMMu,,,nnn@@@l{kkk888\\\(((qqq}M]jxԐՂUUUhhhBBB\l`pDDD؇```FYN_I[TceeeXqccc槮ޔ[tݥHZUnr]]]fھ獠zazmmmkwqȡZ IDATxs}mcOi F$#Hxh`1 uG@\L]͌_`Ɯp1wW+dJj-iwdׯ^9 e}} Ug:JwuϦRg]c6!^]u_WЧ0"C!~#ֈl?zgwQ@]e{Gufg,]9 t{*Nd9 &\GV ur Wqr6$QCn_%!ly_"7֟KVG&pӬ̵}yu>xT*p&ъ CUw@[ FƼe_!tUjyygWg13:+1MXWBX]vk,Iꜭ4`f +TNvHP]V*6[{OVᖲv okާ#'IN"Tw) 8OήJna\y(遲l1'E\uY _{w|y1~"XޥSbZ]ZjHm/t KsvK#y=.ܳc\\{>f塿gtv[`7Dީ~"XEX;YG]56o#%nly5[ztz-_ f4}xA엛hu{RG>{Wܾ^'|HK/ܮZ@K!ڟ5YIzJ!H׾0KW-lg~3y=J\,Ƈ^^t3zzl*J~{}v3!cw[ảW` ]le]0 tռA=ӥDIZdW/OEQfpC"?RBg9 yhe\ÚwG?^u6ڭ߉nm}ڥk[i̽{Z'z!*Q=:iG?e6D+^y,koU/G$x:?ڻ; {3,r'z"{T89;;pT$w"XW.I׉.HfHqwoDFA!sY\ 4+ &6Ģ;;P%ykkhU崽 5[L^oyg"Ѽ>t'+u(4- SgܧWhU2{"XWTo5,r qy}+'׋"':%rqvE߿grٻO^8^_Grc@Tg}˶Eu@O02ɮr SD*5~ԡeNTǂH?y`ژ=1j?k fqku|%kT4á.Y29|#=p0;*ȑ9+R&OKƺ撈73cטgYެ{`1dj>Ƶ(Es5'"=ݥUVDXd4@^3}+zAª5u#s[3!28yۛt.fY pWd>.-p?KeIs-+y3t'~*NW&=|!/]s@W5q9}׼)>g"SSYEXX#޻'0 Uޗ y_gƿ &i_kɫYPޅy=ܿ>Uo`Spt}Uo~(+Q *ä})fn,(s!g˫|\%X)7=5Wq2SZT;+%tFEUEܹX&+k:.ӚddGOҍ಄mw@kbs8v.V\*Wq ky5j\\/ׂk@a\K.U/}fjuYfu1fƷm29^]1@}P\6cfVV$N7Nkhc5jנhtNlJݺ6z]**J u괴 Xv?n^m_YX~XKqmj1y*,`9:-RYHU?&^_,f栰DՍkha تJanm5ymkk.ëj(m+z5W u*kꄼy(4V JvRer]Hjw IeS РV .}䕾@cژ6/R{~?XyB!؞Bѳ~ `5+5Do?R+uؾTj{pRyanTww?u+YQuO#= `5hRIFjRj |׶T#mU;;k8zoUjn}v-xrJqF&'xݏ3̾][ŴKzB^{exGILWu֦ hQ]/][T zuk>ΫCV {:7> fgz]7[\m0BՏh*UGFZ@ለ"[D=߯'jSuݘwD0QM _Ϗ sЀlkDkӑEҧ7lM Ȝ!^[cڟ`Y&CDh@@u\ m:igq'/>kʘ(Q)T9LU|1h3Jрlky e+qpLDoU^kz{h3\^}/UhhQ-'_ ƙa5v jipl쥃oDc)ϼU͏kR=hBr~x,kQt#ƒz}@͔ogP "z vK{R3tC-W.|AGzP{8FSDvǐ<39h<@6u0VnmH-< ^2AQ ^0@ul2t`' N5#9`)~ +2_`kT0¯U$\k_ WQ~]Gv[-"岘ݺ9<&KYNR\p9Swpu2Cnڛ*󡥝2'No&2zyU^cd kܥu}4c̝`%,fKdڍպ{\5c'Z{Ej[KQ,;_IrS-gl[}VmruGw~Ch`l:Vݬ sU>.z51Vj:jcI&:5rXiVjV kgv8zu36F`M/{5VS~6WX>˰^VU5)60]=iJzeUn׫ҕ8M'Kk؎^ ;:$M&++i֒,uUSll|{՚Oh`լ?>:t`5Yخk 1~w)OO:پ굛 AcU;W5}W\pOu]s׾s޲{F#zjlcK(\ Ͷ#^c.N6rMzpmroPi\NCS zV {se,\xDͫhlkG~~#Q#YU.3oe{\~Ǐb= |q)x]bMvuh\xvn QWNJx cvAI*t4W.4tyOS47i+Pױ-5.vIƟhĕvoRoW!j y6#]-jUz+Px,~弜sEm}XѺeŠc;8w=Rv$p-=MKܕWZG\w1E1.l|#4>8P@Oۺ^e'Ie;|*ު=<Ê]89XewQ\EjBkbv3N-1uTÌR h)(u9GDFpYƎ߄1Rn &yEDȫ=-'Uo"Py)k9Mu(yb m雓c}bI17r8d0TRF}-/,&6O:TsLz.yuϷ:Y"0TeveȥOD$,ò jKUYzz۰K OsTԅ4LM\\-To &LXggzxeFlC,3.I<^{`i9^K=8Y a#3 Kakٿ?(sWjH jzpֳZR{! h{(nx@,g9HɁ<;Zn jK Uhf,8exX_{G^ac6i2;% "}i{x[=vHWT:%WzyPIpYϐ9薐v/!j.inP1 m S,5gm6 k;؎j. t$[4-RοWd=J͚f&ͯLIo :;zrrd;Xu {V D;bEOPE}|I$Yx Xt0up`44}*^es? Kш% ,~ e(ne ^:pV_ݶ$ZiqҀ{/'4[4 ͷ r·P|}7ٹB5zvaxU%}xx4ϊ[.3rݳaVEK-if'І뜤?Zj/dg6؅-jaC#^ Iޣqe',\2O-A$uUzTH 1 :n'*%bF6l0zQQVK8"ZNUkj-HZTY)W]9NM$nHrZ-f(\*r2=3EzxXXP^_\ָDz % Y@qڌ %r&v(#4*UKz)eXFJャ|m ^6=N'(/Jx, i#E,.>Qɹܫ„ 9w}l=`9Z# Zaƫ*kzUlr{{jc㱨9An;)@byTVK[MRQ1,KA@F&HE9J>0xquxu63a?dDh9')h}m6^UI<^OMVzCƒ&'x.rY xWi^xjb7*9I86v R~y@$y'?x$7!L(/lh+g㟡jc|C(-?95%}D"(xL(E5o.R^'w䙨 H,Zay"efHK hTapϊ`';ũD !gwVkCRW*z㘞a0;pu4/㵱l} rVx*z[0{x|[/IɮyU㵋5dV2sרv#5_D6Ujr/*^U^PخB?x]xS[rBʦʯk gWz!4uu}pegH<(;1&rq+xU [7U 5p6E +i ^x@j*W7&^~$ocX14ë^" }Cup#KNcƫ*z#ayU}9J%:(㵱gakލIo{u_UuG"A)^(n.Pϕ 2mDԯ;?UzQ&λ ^[Y9^OޗUnQ U<4>*mYIT4s^~ ) ?*:ǯUcN$Z& 5n@xtLU7^5y&* Jx&!yGx!u02ë.jMYB0^w0t2,ojWL˦j^kcS+$+̢b6jū*`jëOB>KRzEd}t0ڋ Z 3h!Z.*ʳCShf%5zuۥ17XI{Yk[BǯU# E2$m~(4W}*^/id+\J~/VYg)~d⸣8 ë^pc#U ||'U^Ջ2zѫ!}srYJռaW`cAreOë?@ cxU%J+=x=5 $ SJĴ d!0B-:oߨx}0T i,d^0K V71^a VP:]% IDAT$B4h4pQ6sc܇yp㵛UcW=@[s91OQu@& 7TxUSQ$NL5׳uf]uWyA%a*ry-lz^WMk27 RAռ[B@ƣUo^Q&VWU1h?s15*FJϡ dy7׼QcxNػ4r/ANOZ"jyT>*߯/jݞv9o& ፏ]a I;I&t`RSM@Cx=ٯVC^J^`=z6~'(~?;^(S9{,f1 T'#αtdHqN1{̃$vk_邏FY )xH>78"bN:!aYXnW{g_BURʔxiRqV3ŽJQ^ej^:ӡu=32X4wyx:΁k8HOSTz6 i:.U e4*kz'GG~_][.H^8W%sl9JawnK|DL̉bsg땠+9A *KlY.Sys*/=+sJlr\*"ǃC UY%%o)z{QVȻc,B9~ܾ77.3I+ g$鞂 /̲˄^u^$b4P^yMb)ZTz&}!K2H *]|$7+6'_9Ҋ׮==L#T0;8e쩡QHxz A:3/(%"ϱN%8Esq|#mol vⲤx|QvruՅ[ `H_26!< p56`QDFi,buAbK+FBLx*bzzuJW\*F0I|S" W>eX4N^yKy3s,Eh:rl*#GoX~|#y}rp陸!, $ψYvyԦW^ӻA4bj*{>`992Dcyigi`R© ^-72Ft'fZY$JeaW 8ʭ t?0?iZ*c7qeuk{ͽZc5 _1&8.(mFz&`'m,`dA;y tV/cqFӸytOqKM,U}(U7Q/VƧםb%jORWs#] >f7_~[5שZd1X+ּۚ#93u,EX:zUY^wK]Ən8oļve q[c_Xνb _z--rv_}^ѵu] B)8 N~wiyњkM}oWdl9ar5ջAY`8 ~W rLhL:czO5TUlҫo4pQ/θ{apݦwS\XU-}~-7ba{a?BtKQK5Oc! `'/1;vE}>B:'kঀbe[@@Ыunk:6n%^RO:\Y6 תÍk!zڽ^cC17 `Dkv?9&w7|`jwvK]^ok;+ñ+y9ou4s{]εlH.!AQ9?ɮmN-߳1g;Ct0D/f}:w NIQ/eSzj|E:Z5.AJ7a3pѫkH4*Vk}:D/7EKH'A,Ǔׁ<4Թ| fStO^7+W zؗ ߘ^{}5nVWGuVIZi8֔"?b4CY%U;Mu^&kcν~`ه7-[+7AVhT+bJ;^-5ݵMڤAm'ͫ+WZKdXifu[6f$Aa(VA߭[7Kz赽׺ tlzWK< !'I҆h$'Ata_gW8] "_hvzc ?ȏ?+-{R8 b} DJX_ͮ_.9p= s]Թ?u"dyy?#Qs4F1&1:'ML_?Ed;NstI )fF!4םRaZ*@2#X ~h z26B_%ΞFQmTQb[{CcT~8̦L?{#4=VdJgnu?mN.04C5gX/+`z˥a -)Y&:@#|jݵb=u$VÈ[!{kMyn"b!WꌄE(IhM2ym/|'^UؑCaqNmq m @ nmh=JPH_jϢq A.Kxg;ק&%oA*V*Bx&y^CD[LLvzvC~,;=ݿ鞨XuzXdÊkomN΁7儹y:QgW^㢏Laq, X"zE{߯ˤ7.q>I^35Qu̔0"% /T2…Ovv $T켓ɁN+7~%^و3Ą7kC8|, 3pN ?lɧxpbhwfNtf-btuMxrdt*a,6f &x5q+=fі%ke;68r.VFZ S JBf?- \鳪H5H¿UnOHHsexjC,Sk@?EoJא"Xuz/"Ю+Xm&SXknjfcyJ; $՝ڹp DmmG\Ư_ )Ȱ-6fϯ@ /tPaF|mfvlTovl{G]XI| 0۹al8 sK#͟VJ G^,~^x"ԍz+=j2[ψMEw:`*XtH vkzұMng2tfvq~3 z6p ^%ڶ 0lߚz!='8& q=R >x{6 (* sMSmFBM(vujUuq^NX%bQr_V$|+ic:=ۨ"d N^5,872 r9x!ݯ;a,^h'zUK{8 G̢x݄5^R<F+kx Eܛ{e+? qKif@-LAQknR"^uJx#U/57F  o:Gof0mcFCZFjU{RlxVkT;.%TZ!<쎤}oG0'69Hpـ?^ M߅-?vskɋ u~lރK ^%HsGX>2WTT,iCK B'lMFB׊P⺕#VUrXT~ܕ+.zJ+}qQ=`b[.q۲6ŢRۥ]e'.o!~O !/Y1 1JYrЋFB,m}v)z؂hC:K(xͳ0fE,581I} jܢl›\=[>dKuUړes"~N)^$ҮݵHp[Й;Aps, m2n1Z7~95xa#7eLx},)`}t܂Z=)\r䦤ujX QWsz#ՠ.bRur<65cUZ\mj-XTVd^I?co3!.*8 XK=3!F)iN-Æw?ʢa%t,?yզ\v:hU$G^$E!ú⓮j%dCDZŭO,,}̪;J ۓ"yT p~Wֹ@*}N%}1+JM7'A$Stf<>T18*XJ=f*_>ၟx&GxaV8]!aQ ea_R J2JB{V%va~sEH5Bp+:߱sJͽx*N-_J;P99 "W>JASpmy B35*QVz7'\ ^oTtPkr-=Mbxe۫FI"x3J[ b8^;T,؎a> p$fň:vzDqCشO#DSAxzȳW(ކE_7pZI5܅-pn(^J"xz=+#ՠ.bQ $2=WҼ ^ lU_RWRz0o.mʫ6^QJ jmG{DmJJugL_5zܓyY |d |ǫ|ރW(@ V1'\p'4vlKϢ\5IviM#ZV_+Ԋ7O.;aͪ&~jD"ͽZ,L50 maTF۵ WAXsi-m҇}sw;+|?s|sνFOC^YB}y*9ZDR;̘3"S__2cyFu"B#JȣO7#3׍T6s?׷IkI!#gQކL eȖi'Pl5d\iJg*%W YE^g˫ K.KSUd-Ԕ\4K.6|d@f$ p𚧗WnGnAk5ܲ 5K-'W[ħ>Xr-4(XzbL<"+=O[&X] y kViFD'\Jr&g2yh[qo]z sm%J_*;#ʸeL.!?-Eȫ WUJe8yUR}ںTM  1rWETؾWL},u@E^0[d\ФN/cv pϺʩ]xn&[(we$NrQ>Adץ$WO.^\zxjZ; wGF4-. sU.xy5udj@bycg&S#ʹ,Kq7xoDk2#lJj^^YQ!qw@4ZO&V#尼Q*w[Vu- m ӿSv]\I6g*(dqcmd jCq3wԽ!K*%\wg8?F2G 3ScN.5O;& /Z3E 9 zl/znv@`1:n6WO]u&=}m>W,yʻ%7UMMn*jqCs@^3=|} $a6 4v| dU0z:@e0(o: ]1焼WÄs'7 ΂W\7W猼e&}<79$Tw/Ga,ꈎ;WFG䗝0~ i(˱{z왔׿y4?1?ܵT867g_3[v#zodW%:6`}x;p-`VPzVSڿO&{u:BGT:qIw,^uG&ƈ[쿩~?jT?my&^s}+5:m>g; E#]^'7'#Ջ܉7+ʇgyzj@LUxg2tQ=;q~Gux'GTՋ^RoO2zIgsQ\W[v!AHQ jE HSJh!Rܴ(X@D4$Lhqͮd뵍Z!8RϽwf5~vs޹gfG?D]̔zt׼.u5{g2* Iy*7V^V^5Oe qn#/V-2C$%VNRG˕Y- JWC d:LwφU=M5NBc" [7K@Tv(Zz+Jw/cRUz˥r:F WK}d|Y.E`[JUԡhPNVUwkڮW3}EgO՗zAYjuET&0 W^3#>~*(|=Tv)ԓZBU&*XPU˨Qz4qKD{%*RvEuvv <袛R=Vyncpz1%)ņ3oMur{Uye܆Sz iK͖P+APD }bϏLѷ뵁匿 M2 ;i~Sv uk<(l9~\X^ˊz^)jzșCI kQ$zWN :BRYD FZkMɾ^ ,g.?XD׊^u+$~ 5k5#78`2|^"ԅYEwh}3skҤszRk^uY+UPWܼzl^ل0 jQ@* lg7( W\WqYmԗ^;^[SNkЯyf[2zˉ_CYg^+ ?73qF^[I֫Qna3Qyh2< gW^lF^ϥu^o鵆 r&kpFX|@F.ըը` sI^bl3TD0媬OezY^}Lmɞazsz^;],(h=oZG[:9٭-i4kfw^[M\5P0yn_z}w8v{F.8eϷ4䉴s-a[%Vk-K>Z\7T|/brr~-?1nxsn&E߆^9s˩z1nwů YYYeb!f1(1[/U٦7SU) ,,k{w^ %ָ?͒7uݑb}jGƩDx٢tÕbuw<?r= /kvUџ8{vyl,RUe>eɋ9Z%R/N!pZ2{·_!KJ$%%ūVV}/Ij䂹Nzʱd`W|:we]XAI5σ/NKq,?a%zbk,OvqiV܎z¦<_8{f#yqA2Wj"nyF^wl@ ,1^Erm8R Bq"HU \ ΊWԮ4\FkT'I{rЫS˙jnWV*C\fu&Nr^vOx_o^_owcLWn q0Jj+W)~7Mc3TRrNxJ%U>kzm<2Mskd*hL,kcϜ-{V?ʳwuRu"՜SÞ ;Ȇ2Ncz;n'.{.aѾS=?*z' Ivw+ۊ@zu ͱ']:q2{FtJ{Щq`<[c!i{}g ^$hbkā.EmWu_j'+z5dobL򖗶I1oG :^n5I7>$WyWba[@jj܍qk%[|nڟ&uAWl&ݑu?Z0*tN-҂1k1@Qv95#1jZױ0}4٥UdcJ9^m7Vզ|^E\͖ٛ3"Rw'4s?)$񳏴gUYpHWa\ NԫN[Q1cIg7^[gbJ9g"}:A ]aUUVr?'z>=W X^=hID3{xOrիW.?a|WAkfj^yKCaSrk.=;:PByL{}I_:/!݇wjqKz;BW_,L4ĜU HKeW4=iAo}󺙢Vs=lg5We⛑x6k: tvL8ktU4j6Z0&Z6]Uṟ` ߐHsiƬóYƐ$9Woe4SUIs›'#;? I}XԺvJ|.ϓU }aG*w@ڞzIto吝~۱f}ĿCGGUvUԻfC>>P >X/‰Isg&5v z'q~#.I^5Tdm&T^=qcGk)$kpZH `:x?w%r%D]6ZѝJ\m>Y)1m5 CzMc֪qQev>és sٸ%B w'Ҍ17nf\!Ze)1  Oo@+w'TBx ~%F—ϻ2&6EAn_ˍ~SCI HOxVV<D6ս{Ğә^;O>/^:z^<~HYL2ApcSJ`] ?^+K6! +ӫRz~ЫB¯+^ kW+@^z +@W^z +W^z^zW@ zW]!m]ֿMnYFήhK?IUU!HCv|YzO)[U5C*SN͞&cYJ,oڮQc=!W6cۢcW\6S-z&u*l0k=KJGb61JONP큦6;˶4O3GGnp+kJ+IG*!@UkzÑ^GuPڍ&eGU!4p n*w@UP4fKPr/!Xxָ0.a^PD=ȥpHPjpψ r(NxS:"?[$؞}';.]rE:re1P}Y1K6qЕ{bx݃׸MT3$&T7, x et: ~}XuxO(|]?g0!/<q /+f)qO aX%:<7V _/0L~C IDAT *B2 !|ǁAu ) Ux8!l xUP,;Z5/S: z ɣqZ +R6^:ên|}S Ckt$p31 Ѧqy޳>N i< .M^л$8)&0U2ܱ7)7ygP--*a"]Q:tKۻsUG3b:~2iS}w+Hu0MmNgaQ{H5"yQ%#v:XQ+ST0CC`WWeZP(c񊡧ʡJF8<}7I^{9N `2pB+XYūˊY!z9Dk'N#A<f儇e[r=fcExjyгXDg̓*7_ੀ_k|Vx<]f;^Hxmn;˝`-{k  x'7.$kʄk 4x{Mڟ78?KڔI7Do0W|=k vgV*2'>6 E<0<6ƭ׵-HA ad[~mT4y[>1z#,wb}O;+^5A4 #s`a+$:TY e6^N9TbmdS^~se+Ѻ,Ǹ*^U_VR #П&^3Den|L>&d>Y!ktxxÿx?ת>7B?cJ[WS7bez xMa\m-βk[=Iu~J-lj.mCwbW{_ᕵkW 4{ž;N7@cfڅ^5Ƚ̄!VEk 0 okgxt#xVASY\\{M(\25fS<‰r6N#K+yQ6e2Ǟ?Vē'tyKwJgʢqί]0yF̱%~(qUWdMhL fj/b!c_p'cQ)L6H5SǪUC^j.#jkN?^e_V Q#П(^NE'U.5l_WÕ~%0NBl,GxnwOM$K|+$ HR'B`I`0 IbCA;8(=,77_7ӳgU^PKNO?33y@uBXuFלCL8 D(!;cKkzGJZ2ϒsS_G:9DFrrkF*AZyWP&&t)RVxze-dn:_lH૰~qfsxna80dƱp$˼_`^?F2VKWo4zҫ])4bu7*x~dA+YW`N+dY^ɢbҫ|9k# K3 YWxH~b;N֌>&{nvk&CB{<{As#|:Mr*^װnHAzks G4Fi޲~W{H8 .˱GdJp@P  VKCFP^s".6hCF{UfUW /ٞ+\E >9<'JQN|+[^ID݇/>Xr7믐eO;+qQkyDC@kucpiN>KKuc0ƈϟ^sq"Ӽ+ї^i4!z*Y0z#dƳb F=pejM6Z'b6C7!]`o2\^s:RM3$]z2wbuGئ}tڐQpDI U@!)L|2|ߡ̖,,=d>aFӐegt@ PtQ1z  9ЯBq<ŕEv2PYb5b^sM5kvcVtcS9+i);=[iB"y i|zdId}Cμ(Jk;פW+pX)=jd׮9P&j/~,~:#\'-Ն{}G4 ^TPN^ a[ aI2;K ;ĥꭷ1X u^ .or,t%dc k 3Bu-]K%$5/0z٦CooERkJ\uc8m!gFDZ@j;iwz+uk!l VC|G58H^M ~Jcuq|cd$M7ٳv(B_$npl= DvZHݹ5A2jĈ#F 1bĈW#F1jĈ#F 1bĈW#F1jĈ#F 1bĈW#F1jĈ#F 1bĈW#F1jĈ#F 1bĈȫ[YC#ß:e+v&Q֣Lm]ߙ55x~O+@)^W͎Yqڝ n"]kSI(ZtQDA%55>0QhQ0>RSro?g0ٸ!8͝{vrGR90pZk'Qs? L?iZ6$"nE<1'?"`xZ:lL'?n׻qsw{:p4uVY^-5s_Wuyn/w+!TMwW^XmTC _TܶZCs|/﹛md2tn#TTO^ 0\ey 2~@y-_oWquՒׅiuⷘ+f9o:tz$IJ @WM)`` Wy%,1k@y-_yq; z4oܕ/.".6 h5{?c7*zG`UdDj+,uڗ32;7=.EgxGh%]6t%zM:: ёHkJR5qΞ D39bX<˻f6l7Wj$5C-jͻO5eO[Ľlv7ww: 7k tfݓq>r#Q-KVf]!d{Ꮆ܈JQVw}95/BBQ3yzGwWV~DP,OE6{qr%jq6%y'] ,2¶N5žJt 4Vx Lbڞ6@fxF'τ><F2Bltڬ֊؂G MӝVK+7/0u*@v[ɯ݉76epob7>YXJPSC8uv[&[1T$=D=@$!YʫPr=yz,5fh魷.ȪӴv(Kc fA.߷iRib_>aN}KyFn l280<:}kvJٕ^ 7Ǚq;mD_=^zu\ ϭq4 9qm 5.( g^/+#?@1q(Ct@?(KFLN`Fo(>%89KEI20}W)c\}P ? 3LXvО;z1zh,thYk@; `dS8(Ц. #}iIz66-UD+xr8L4#s0ŕ~mt}_Áầ+Wm/iu = i1@56Dnlړ\GR0]t \{0'm!sR;? ymŎsXb+dB:> +ŋ6Af yʰ}?by?lE;rKW溗_ԩm)uRX{:C qkyTmD 45tRy (A%ds7UW`W94zd#Yygl|kC~n:q0[p ye XJԧXQ­qyGrӞwLF4lJIJc?IO^V i)qSWd"E}02Ocݩ,-B$Rޗ]{s7MDHy\ȌW5_a%j*s|k!!X>c[{vXٴU8)6c 2gL&U~My} y e"ymwݙ ^ foNJ8P+m[9Tu@8{ !%R(w|y?)?YB2D^à~3uZ%y}M yԃZ{M 'gXc5rЎIO8AyltOAi{ⒼVYܷH^xeo`eibWp[W("&>dya5}{.-* B^،j 0I*P;wuM y#tRk^ mga y!`>HiJ6PT8Qmf^@&(H9v:lBgM=|>x<@.#2lYRqikmXpQ$y!p5r֘7N%n<统~gQOUYO^)f u:V~*+lcglm51`0G=D hu;@ɫ%X&#T#W_m[w6~ %QT;TLyuCQ-9v=dgW xCb]l5@[XB_:KW2Lymʉ؆XiyU}$$'dx*x&lokG$9+6B(QۘɉjsF4[[i.˖pAn8(aP%ooiȯa $ȫvAս4!~IpQ$ [v/8ޜ:p-C^S}d!)5jӵQ<Dž1-xz;~s}j"xWHrƢ"wI%B%" weT,$=u|PNOyq;sQPJ| yYxxUZunHcvwY7^1EOYfcCՏ(xg}gʼxCu}C)5}Y~/ᕑlȇ_}4KWY! ^E/;]jJ^GO~u^C#e&RV-%X{zTPNq}JySdmJp' 8+_\^Ձ#:~߰4}Łf+]ֱ4Ѧڢ)^Hƕ~έ皇N;6דxUp%Ǧأ9^S %AuNs8925޷+šګvRw}$͊=0[WնsubM߁\6ϺAu"|ӞLJY> @ݸ}9+@?[nVח({xYt>Q[^N5^'%I2:u:)frmk*^`n()<\d}0D$^7!zak 1O+!%MB-z!=:* ^ ,W-^`F|5Lrp./īu š^fjf6U M"DY/Qf>Q('/}r9YVqë0^/-" +bbD8M> ' sM^4 lUDS8&r@uQDЪWeT Ӑՠ:3>2̲SGhid(|ךPN] fޅ`+@:/; +T/$ `|tAr^lُ!ONM{} G|'7" ^;"[|*(-QV488  6EBB ?a 4z@Zu'!AZ/KmW|^ٰOpo}- L罕x#et62z}-;xI `I^8DcfAd*^ E>^Qu-*_{H`*+VCW(t7|ti ^ED$AqDR~SW+=#{ $fJaG 3A !Fwk7Q"g)儑VLǽ'fC?>8aHULxJmz6WqX"-z0;NgO짨M:ƀZټ2oEԵ׭;' 5|sCa{&l.#DWI!Nh~m~K`"P-W) k/KFW.^y Q/+7KxTtFЖpm8 1Hi,N';g'DcNz <0^mxu%C2ty^+ 4EX;Ec""ptc69܀+`@b“8d؆T5( $xڒ4٬ ;}xř ١0¡cBVC&tѰ~CeٟNZ";3Ks 6Z[eu+&6=X *7Q0ˍxK?ǟJ)~8(llR|U.³:r*?5--MH*^V]ycKz@|h&8pD7G7=xC ky%BNzՊdrXU(LW}uwcs -WUdvOx%Q$_mHfzUc"w=/_TnJRx%8 w``mᕜFDuC9a46zE"ȅս #H_wIZC|RO;^Y\lu?v"fn\kUʺ5_\B!iu ^cкL}C*Vg/ZZ[F"EQDz+:WF s,#*62Ԥ9rlijD*MTi}e5mxˡD|v]3_exy"󟧱NdވWW#WgW|:BˆWW#WY6t*}1x5x5W-Ior>v-*841bץVT o+N3v5bjĈ#F1bjĈ#F ^1bՈ#F ^1bĈ#F m8~ٵ7Ư^ 6?1jf蛍ml"J]IKdWEeː5NXາ"[alcZ 6o vsw9V?~Hw>ߝGw'yW @^+Wy @^yJ^y+W +y @^+W  \浰9Z+ UTb8'y-:l$ 8y-<y} G+{8y z}eaѣy528yݳH+n,IC6[3WFjih۹duA*y|bYd=^N_=8< Ճ>w#2,Hul:VqgvyoeR̔CawtٔULWV%n=s]^=4[%XT׻ƔPsc[C*v31=;=[_-΢{z=c)>IqC^vC˖/szpKk֫8:Y2|ytJdIgVLbSjD [w$o$%X o6$^C.ڎ^4.{˖rX5P/YA⚓uی dc—W 答jn!jO57_֭r^b>2 =j~$)S{" jHyMKHr*h絪IP-w缵oHV|e0\+۲@dDONt$7TswZɾڕF#@US?rF"Yӳ,fuwNƜRw7.ZTWZe:!+z7:{C /զ{A-9gei~z׉rn.Ɍ?!-z}5\m@yi8gHT cEvڋzE}(WZy])7M1gw[kHwuAvYwT^w8;y1yu#v3u6ݺj]ΐWÊJyG*[jId{JAzWuh${,I< ,*Yj4):Vy--duf;v/LuIֽ="zW#ؼ`N}k[;36: 摼Dj과:4zzbCE|d^$?(̪ f$p+0V%~yl6*3uߐ˫S߮V ]л$/L݊1yMD fNu}UmUy]ԙqLc[*|ijWd#bB6wZUMk\}v ̮Hg4"Q{*1+A{dp$KJt~I sQ^큟l$Q n}D^WDRqzk_N$\IOdBNzkWPs^"T/fR13ZE5 }dN9 >NYŔqX O"4&C Omu),B]ӊtzvN +y @^+W +y x|^ x+t3νy @^+W +y @^+W ȫ7~2_/ח:E ]}.Sp+t%}Wȁy=M_<=?L;'ߩ?2Ms@Wz¾~n}ۧJo?OM{8ד+҅ؠ=J|닦˯.}^x?1͛_cu?o:}^e>F#1)y?j\7_iH^<ܧ?4tvj~ 7M7L^|4y}3_x^_y}O'߼χ7_ףGA-WL nE/m|={;&5ű`Q[fEDrQwWx V(| c:Ip{{N/_^-%i$٨'%г$]GE $l*^:/Ir\%в q򁹟5IDPzm祁BÒ-<Ò$0:?K[|M t$/?'IUv\5Vk5F9A>IXຨDZiK:2:Nh[xǔ "U Z<>sϺ.SGڢ6&7l UȠWzg ^xzSQi=s^߈>+ˤ˓{K?}GYOvz%<~PyԴ{y3tM_~-{t'5iDn1)|!Jf&x ~*ETծy ZaNs,ԛ~!6̪5WZWZV偬x:d9_ k{eKD D_n DþMhZQe}$Vf=Yml@?YBr ^pNZ|^gD{9O IZ*i'OycuȪȉiPr=K-$@-d'HZ9O^䑉ϰ~5}jVeH$莽^+iN~HtY+6z>S jG5j}z-z5d-%zPǻ0FUi &ΣLY5\I+? V̴k CUâ-fP,tAh8LQUB@1fneIw.z#ޫ^$WkKX%zL^ب\9h'$ר*WWKzzWx܋J$7!Wv+7H|z R|6QmXE_ר*WW+v_D^A$b &6DH^y кu8?@@a%>5JBaݯB  Dc0FLBU}1קj' A 5)mkazzzk\ٝ׭ yy);H>~^[N4 ~ aijCN̯o.z8zwhOk^]!x: \Ǚ.2Nfqv:Dž+~V2 WHLBegX[kS% CvB ~]U(] z +W^@ zW+@^zWW^zzW^@ c_;fzXsc*aޘu'mw-ՠ^؅w^]}W*V Ɔ^@^k^ٯ[kh7x(s]Qǥ֔k}ޏB'))S;,}d $7N=6[8wZ߮܊c݉ RoAQ?ơׇlо"FZ>+MzH @΢[O}fr#~zM`իМ@oҚ;ӫ#r߂^EdrZ˘׃!ѫoڷzͮ;]6jLyPAA(((3]ȩ3ն~hByuAc9zL9&k*?V۔Ʋl$ŲE  %4jT0|?cJ!h*wfzffל|͹|]~giX/+30aiw9k!-aքkTu!MȨe3 G 5S)Opwز2;%czjGl~r[yW[ҙ_VZ4s0F Z,Y(goe-e-FҪc+y6 go^%;ɃpLׅüDz**G0$D8CU^[.h0Q·>#V7 B^1r}y,ט5Jy)^(1hZ{e deuh,'2YO/ECqTA7Ć?$VSoE^䖜IV}j$Y,|nܐɖgbÑ=k"qQ-Դtq-WϬQ뇆-_^ l ;|viewgKv IDAThco7>¶)Xb4dpUk0yn>1~5'x,hB˭qHa8)Ȯ,)0}^⟧B d@(j'UbC)չϠ}uOp?B\,GG5zn1sl cFdo!޽AmLpFw:0.3!mH ɢV6d]my\`"d51❳1vtQB.2%*B\^ 1h,fzULV=8C> <-vt`AbCBiʤp ɹdRf.&#txrdx恚N90T<_XӰHkb va'ֵi@-/un=M̝p$5ٳjKᩙ4M>ypuP*xoirWB{F;ECs)PЖWտWp7+; _z^ô-Uy`!Po&E$`wBwõKk,B֤y`m*g4iz'Cf,4uyf3dBÛ̵)t; rHix)x^H+$y;k˫!L!-6wV.'Fo$2B(n}H$Fb bpA ! bVg9`){k%dؐ}i$)L"^RyV>MR ̞K+c9NVQ^K\%QɷG&h/iZ^$ol^3pB#Q?ۏ82C< s aLu?4"i`rר4h̐Dӡ_~ Ŗy7+|۫%(j LElzduP؎תy9 #D啔ҘV|NOl3@ nޟRD@W'C4$iCOe?HDniOyeE.\Uӹ YN]W hXcqf6y5aUb!wE@e fW}.AAWN!L'o8[f]]^ E^a$:PUaߠ->:,` 2ԸCO)[NsF]kz\]j' o醬a@)Sdb}"1uA'yhO]P`rB ]^5Ή_.YfW !"!Nɾp0M768UU^U ёО;~r!H"L y52SiqGI^K\g{`X5B]lzϫDZ;(SxT YjqCH"K#Ze~U^Y扼<=a;>;SF[3| -WھqqygVjD^@e Ln 4yDȫ7ςwNVߋ/X=嵯]ґ.: :2d8P*[PUn#n;I䖖Iz ɫ{j;P>-UDUcޟ: !? u6E|VawkFiCtz#k]2takΑK%)-+ fM^4hk_I_+HO?*'A^5o~&Ƨwtoz]Z5Q(HJOU%+WBJ!򪸠@0׼s+I& f_W(BB57%z|ѥ  *4o68*耍ukogO]P'j]{D0ZƀscV*kRG})9\}C(nRRsyS)[MI-j9*Ae ^c|ݓ-HVmItJU=O*IJTָ !bc-ѵ+MNf]x% $ơwR6T|^CZWzWp?Mgx*;$(r5ߐ+[ @QWInX酙܅_43r6ePc%۾*-r<4xͭ(WGtt6:V>VhT |ޔ S}D̰VG{* 0y_^W,hlܼˠ& )C4'rc\Ni;H%df鈣΀W60z}!K̽fzh4j^0FH' >yDزAO|˸zM>Exmz=GZyZ?}k2-R6x)kN?pz;&-M Jlr}~w6)C~͆&P:>cNm'O=N #óUkJmm]f/_7@JjlԄ};g@c,3G-`vT1.}@n8\H*鴥-ES,x/b2ZRu޾Utlg :55Z?NʼwқxrEi?:qΗKz\{ :Cw 2m#Q"oK oNQҖ+&EЃI/Q["ÓE,2 `2S+}XtA @>TswޜpsܓYi1KHzg(-t!ڙ6pՔIUIgϞUB˲TXOظc]^}xDr^˕ RLu^ +iu*|*xUА=[V.07G^ k tCciDZ1Z;wtU7,\f!\~Z3*: n秅(1DU`'d!^E?^\kkdxV]%NA<]HWڗ@ >]kХFm Ic}=KLt%܏ڏKcSV@r#xP( BPW B!^Q( BPW B"^Q( BPW B"^Q( BPW BP( BPWRa5 _ Jr]  mO9N*/.gzlgWio]9<9ӓTqrxzT0«s Ajcg2Eur!1[/?l9 L`Y :]Ϋ@~ˌ=/Q(ݹ *M;wD^9 ^ݳxr6TuXGWms3Q)WUSrM |=uU+=TJ7WdCUu<Ѯ<^7_ȅN(xE^xezVU:U+#B^}_ dbkwZǙ٩ ~c=ZG|GC9Cϵgt1y;Asv+|^qM>]fMn'\bX\uZ әa #0( 2⋇x% ĄdݺsoY,0L$(~žꮮ:u_nbrܥjeCEz| Cj}k~Lm8YFb>k*^@&9ٮ`ѣ U53l(8zJ:3^%Y~}XPoS@ȳކt,_x|~r M!9+^%sMӘ}JgT1:qg6h uͪMx$S4"ʭ>cǧ:g :h CBvyw0>eSy6FZs2V Y'ˇiev)'ÂP0gD2~LN.䛕V*cݝLOml%u>w{ck'M+$v^'Tq;dW_6vox#?GB's -SJ~qvϋ˅Z!4WU,x'KD0 .ctoQ|bgYZfڈZs&YЁ5j#dfKX ]GM4nކ<>ۏCW!Pڜ&o#Nb1(Pqra5tආיNIg2i&+ IYR8LFK bkf/$4hƖfugq09=6FA߃tQ9fˠ5F5uTqOkDY:BW-rLf)*][?W`0c jXV'Z:9E zfiLL8~^q!DЃ/~&XjG;wIΑA,$^\;0`xv&ߘ+6kK}`8|7jiQWyw$z.{yi#y:^y(u?=,TwYUc+Y>rAgBCA(` @zt۝0Z+4/R>eӪ1uW`4'2Ѵ`9ᆱ,Nx}vW[+6 vXl}w^݁QoEGe8+XT ]Ҝ W iV:ENB]f4r Ԋs1<u/&˥lO2HCU&0tJ!+ݺ‘Xp' e/I_r *y(沌뚖zaQLJ-?+xeÉ3gڋW?fin=-†2lM꼬2} Y4I'5 &{`^w1Yʍ5)i:v+R4HqhkpzNj2z~Hǫl@>BKE# ;NqTrY '0q,Isv6 ljK[@!=>+4ME@IN ;"cFl"l'79 Ue o3N#w8Ș YtC& n(O/HxŎp',n&{ܦ:d1Nm 5^{ Cőq š͐ ݬ6[{dZ0v Hڇ'-@F4[ޢ ]KGp>tK-ڝTZUOx_4.Kkë9;/(u1(x{#C)kC:l+ߦ ᵥya kq*+TTcagN-RzZc0/tmM*^-ar^0g2\3d(Yk5^ ))Mn5"QKW3.dխ.D <]ev/4"K{UjrGၢX^YoZ|[@=!,Цɢa!6*6_C][pu^Q0I6^)Kk+ 7 -<'R⼂o{g kV;Tgm 8D:K%5(x}~D"{E.̎c,ŧY#Tchcs/QV Cۼ rqkM2hnlF@.84zX}W4Gfn0 .M H9{!D Ln! ^إT'G!a7 Adv/WԃDZ: ~ʻ!/ë0"*C}+)Z^w0^ybFby 72x5I6^i+VHj)E2hƦ/W Җ"Z"#:g{mM=G.C17HR, ;ѷH:5:=;2PoP)f8ms70R)ωhGQf]JA M?:KΓ0 XtOU p߭Q%!MHm"ƐWyW?aD7o6Ne84y8JqVma&=Z?լo«t@ I [F FxqJM?!'ɵM3DwF?L߇]Pj+it_H2 QxfuhU,^E U, >SsK&MѢl3@Gq^ ^..G3I9,ɘI%IWZ ; ~]&VD۷OЗ8aJ{|Z[U, 49s7Ƕ,^ |Js>H:F ^O {I4K 4v`0JBi?iJ40Aݙj?t xQ9!k 3!O0@̎o+Z @GuAC^FQ?z6^Ѓt Ԯ8Qށf4",cFWAHA u8飙8hkðQJPbpFKR-u=WQC$8N 0xii,f-djG;b٬xoQy)u>KiUmmuᅦ^c'Feb=E)p#lh_k1PX F"ulIWB'(vxm=Nx2Pẇ43z_3`/;a7EQEG*)ETnOCS#}, :Q#^*F-y$s#L) M>YsSC$/ԌWws.֠tRȷQvEќq^brHBs-\hBeTa8A=SIj{ xXG/ū⹂T5 m_*Ե@@Rw8meWI6T3DjjpBGa^~5jRxW8G ֌SW(+x+I53qʍWWGi.?*GVBE}< q3å8o68OCѪG]DY, ݐ婧˶oϳk16Jpek+Ldl,a|6 u[5!eU5P7݅<^NEqQcY>h~A׶ :qȓH@FO._q@╟е˹~r֖Wmc#@?VOZAym8.hR˗!}K?؃.v bPb"7 $^4of$;/Ro:7?s7mO-W[z%?t(qUϪ >&ۑa XO'}k]Zt WR$PXnA”K/7Ydi:kp -gw:\'yǭmhw67NOΒӰ魆}xؙ_-躑\Y7/xwOGݦߞVt<4Dp~-6Ö95`8dPmߖ^W5e2=ؕXMw=T>_i[ox^\ks_fK_'?oKCk?pW$[>5<]Q䪯rᷥKXW(u~7t,EkJۈīkJ[JNZ{jDْI"k۷FfMbĨ/ ɞNJU]Ԓ}ÒZX`r∬$Tڦx(a.*9YՔw4yYﵩy~^kb RrՒ:흕m&{z#RC;b֕ =WG](1Ukߗz0mF6JᲱ~PQސp6 &Ty[*~j7BJO|4^- UVf?LǞmRgpIlvVD0VzV4Lԏu;H4^D)7w:J~SH&k-ީxǙ-Jx!Yf^t֝nīX"zieNz#ThML'tڳZ VMg.Z3.V*7௔8_䶭,kY]+9rUS=m-"^,\QE'uksW=Ӌ[īgc%ɓxtճYS<(sjYm$3+擟\8ug2ї"C0^F@ `q Siz!^3)fu?gg"Ah:&^[Ac xϝJzYMjE7u,:7U`R2/jRο#ڧSi\/F=aJx]w#}Օ_ǫsLbv+2ey#IfK{ξKe,2ݔ-ʩHnx]*;$\ë΍W\l6?^b"}{ʍk٫&Sl ^5jb+1m;-X7ƋXKxQ(vemF.Q3{~^{>jfHz'uL,< v?ߡ{݊CX$7<9O?}D mzik~ދ:luӛTk.f1բXkI?_qr`R-+|ճGU%/+tz?C!IENDB`mkdocs-material-9.6.4/docs/blog/posts/sunsetting-gitter.md000066400000000000000000000100371475306445600236710ustar00rootroot00000000000000--- date: 2023-10-02 authors: [squidfunk, alexvoss] categories: - General --- # Sunsetting Gitter: Towards Efficient Community Engagement __As we're starting to build a team around Material for MkDocs, we've decided to sunset and archive our [Gitter] channel on October 13, 2023 in favor of [GitHub Discussions].__ As part of our efforts to improve the processes for maintaining Material for MkDocs and for supporting the community, we have reviewed the use of different communication channels. At the moment, both [Gitter] and [GitHub Discussions] allow to ask the community for support and to discuss ideas and issues. In the past weeks, we have begun to question whether this duplication is in the best interest of our project. This post explains the rationale behind our decision. [Gitter]: https://gitter.im/squidfunk/mkdocs-material [GitHub discussions]: https://github.com/squidfunk/mkdocs-material/discussions ## The Constraints of Gitter In the first years of Material for MkDocs, [Gitter] served as a helpful platform for quick community interactions and questions. However, there are some inherent constraints that necessitated a shift. Here's a breakdown of the challenges we encountered: 1. __Thread utilization__ – Even with the introduction of threads, many Gitter users were reticent to use them, leading to cluttered and disconnected conversations, making it difficult to follow. 2. __Search and discovery__ – Gitter's structure and interface makes it cumbersome to search for and retrieve past messages, resulting in lost insights and repeated conversations. 1. __User interface__ – After the acquisition by [Element], the user interface of Gitter has experienced a severe decline, becoming more complicated, less intuitive and user-friendly. 1. __Access mandate__ – The necessity for users to grant access to their GitHub accounts to use Gitter posed an unnecessary access barrier and potential security concerns. [Element]: https://element.io/blog/gitter-is-joining-element/ ## GitHub Discussions Thankfully, [GitHub Discussions] emerged and continues to evolve to be a much better alternative, eliminating many of Gitter's constraints and offering enhanced functionality: 1. __Threaded conversations__ – GitHub Discussions supports structured, threaded conversations, ensuring discussions are coherent, contextual, and easy to follow for everyone. 2. __Integration and linking__ – the platform facilitates seamless linking to other discussions, issues, code, and much more, enriching conversations and providing comprehensive context. 3. __A unified platform__ – GitHub acts as a one-stop shop for support, allowing users to access varied resources and support channels in one place, greatly improving user experience. 4. __Discoverability__ – GitHub Discussions are easily searchable and allow for categorization, preventing loss of valuable insights and fostering knowledge sharing. ## Conclusion Sunsetting [Gitter] is a leap towards creating more efficient, user-friendly, and enriched community interactions. By consolidating communication to [GitHub Discussions], we seek to mitigate the fragmentation of information, ease the user journey, and fortify the bonds within our community. This concentrated approach enables us to provide consistent, fast and quality support to our users. In the past, the nature of queries raised on Gitter typically necessitated supplementary information or reproductions, prompting us to advise users to initiate a discussion subsequently. The shift to a centralized discussion forum is designed to simplify and accelerate this procedure, ensuring swift and efficient resolutions for our community. It is a testament to our ongoing commitment to support the community that helps Material for MkDocs flourish. We are confident that this streamlined approach will spur more fruitful discussions, innovative ideas, and collective growth, and we are excited to continue our journey with the unwavering support and active participation of our community. mkdocs-material-9.6.4/docs/blog/posts/the-past-present-and-future.md000066400000000000000000000306411475306445600254500ustar00rootroot00000000000000--- date: 2021-12-27 authors: [squidfunk] description: > 2021 was a fantastic year for this project as we shipped many new awesome features and made this project sustainable categories: - General --- # The past, present and future __2021 was a fantastic year for this project as we shipped many new awesome features, saw significant user growth and leveraged GitHub Sponsors to make the project sustainable.__ Today, together, [MkDocs] and Material for MkDocs are among the most popular options when it comes to choosing a static site generator and theme for your technical documentation project. Material for MkDocs ensures that your content is always perfectly presented to your audience, regardless of screen resolution or device capabilities. It has evolved to a framework for technical writing, offering many features, some of which are yet to be found in other static site generators. However, we're far from the end, as 2022 is going to bring some interesting new capabilities. _This article showcases all features that were added in 2021 and gives an outlook on what's going to drop in 2022. Additionally, it provides some context on the history of the project._ [MkDocs]: https://www.mkdocs.org ## A little history In 2015, albeit 10 years in the industry, I was still quite new in Open Source. I wanted to release my latest Open Source project [protobluff], a zero-copy Protocol Buffers implementation for C, which I've created as part of my former startup. As the project has a significant degree of complexity, I quickly realized that I was in need of good user documentation. After evaluating static site generators in general and Hugo, Sphinx and MkDocs in particular, I quickly decided that MkDocs seemed a good choice, as it was specifically aimed at technical project documentation and easy to use. Unfortunately, all of the available themes looked dated and given that I'm a very visual person, I just couldn't convince myself to call it a day. I _had_ to build a theme. Months later, in February 2016, I released [the first version] of Material for MkDocs (and with it, [protobluff], the project I wanted to release in the first place), and it looked like this: ![Material for MkDocs 0.1.0][Material for MkDocs 0.1.0] It was already fully responsive and overall, well, quite okayish, but barely customizable, as only the logo could be changed. Beyond that, it had no options: No color or navigation options, no instant loading, etc. The search was very rudimentary and only supported section titles: ![Material for MkDocs 0.1.0 Search][Material for MkDocs 0.1.0 Search] It's important to know that at this point in time I've built Material for MkDocs for [protobluff], the project I was really caring about. Almost 6 years later, nobody knows protobluff, but this little side project has taken off. If back in those days, you would've told me big organizations like AWS, Microsoft and CERN, as well as extremely popular Open Source projects like FastAPI and Kubernetes will be using this project in the future – I would've declared you insane. I still find the success of this project quite surprising, as I thought that themes exist in abundance and are very much a solved problem. There's no glory in themes, no stars to earn (remember that I was new in Open Source, so this was the metric I was optimizing for), as there are thousands and thousands of options. However, as the years progressed, I learned that _execution matters_: although Material for MkDocs solves a problem for which thousands of solutions exist, it excels in a specific niche, and that niche is to be known as _technical project documentation_. Today, this project is not only popular but funded by almost 300 individuals and organizations, resulting in a yearly budget of more than $50,000. This allows me to set aside enough time for the development of new features, bug fixing, stability improvement, issue triage and general support and still feels like a dream to me, as there are many failed stories of Open Source funding and people telling you: _don't do Open Source, you'll be working for free._ Making Open Source sustainable is, after all, possible in 2021. [the first version]: https://github.com/squidfunk/mkdocs-material/releases/tag/0.1.0 [Material for MkDocs 0.1.0]: the-past-present-and-future/mkdocs-material-0.1.0.png [Material for MkDocs 0.1.0 Search]: the-past-present-and-future/mkdocs-material-0.1.0-search.png [protobluff]: https://github.com/squidfunk/protobluff ## 2021 in numbers 2021 was an exciting year, as the project has seen significant growth. __166k people__ visited the official documentation in 2021, totalling in __1,6m page views__ which is an increase of 83% when compared to 2020. The average visitor spends __1,5min__ on the site. While mobile phones make up 12% of visits, tablets only account for 0.6%. Visitors come from as many as __213 countries__, which covers almost the whole world. ### Features It's absolutely mind-blowing that __38 new features__ were added to Material for MkDocs throughout 2021 – __that's a new feature every 9,6 days__ – which was only possible because of the constantly improving funding situation. Following is a list of all features shipped in alphabetical order, some of which are still exclusively available to sponsors as part of [Insiders]:

- [Admonition inline blocks] - [Advanced search highlighting] - [Anchor tracking] - [Back-to-top button] - [Boosting pages in search] - [Brand new search plugin] - [Code annotations] - Code annotations: anchor links - [Code annotations: strip comments] - [Code block titles] - [Code block line anchors] - [Color palette toggle] - [Content tabs: improved support] - [Content tabs: auto-linking] - Content tabs: animated indicator - [Cookie consent] - [Custom admonition icons] - [Dark mode support for images] - [Dismissable announcement bar] - [Excluding content from search] - Latest release tag - [Mermaid.js integration] - [Navigation icons] - [Remove generator notice] - [Rich search previews] - Stay on page when switching versions - [Search highlighting] - [Search sharing] - [Search suggestions] - [Section index pages] - [Site language selection] - [Social cards] - [Sticky navigation tabs] - [Tags with search integration] - [Tokenizer with lookahead] - [Versioning] - [Version warning] - [Was this page helpful?]
Additionally, a lot of bugs were fixed in the __1,000 commits__ that were pushed to the repository this year. The [changelog] includes a list of all fixes. Furthermore, a large amount of time was invested into refactoring the code base to keep it in good shape. While the `mkdocs-material` package was released __55__ times, `mkdocs-material-insiders` was shipped __72__ times. [Insiders]: ../../insiders/index.md [Admonition inline blocks]: ../../reference/admonitions.md#inline-blocks [Advanced search highlighting]: search-better-faster-smaller.md#accurate-highlighting [Anchor tracking]: ../../setup/setting-up-navigation.md#anchor-tracking [Back-to-top button]: ../../setup/setting-up-navigation.md#back-to-top-button [Boosting pages in search]: ../../setup/setting-up-site-search.md#search-boosting [Brand new search plugin]: search-better-faster-smaller.md [Code annotations]: ../../reference/code-blocks.md#adding-annotations [Code annotations: strip comments]: ../../reference/code-blocks.md#stripping-comments [Code block titles]: ../../reference/code-blocks.md#adding-a-title [Code block line anchors]: ../../setup/extensions/python-markdown-extensions.md#+pymdownx.highlight.anchor_linenums [Color palette toggle]: ../../setup/changing-the-colors.md#color-palette-toggle [Content tabs: improved support]: ../../reference/content-tabs.md [Content tabs: auto-linking]: ../../reference/content-tabs.md#linked-content-tabs [Cookie consent]: ../../setup/ensuring-data-privacy.md#cookie-consent [Custom admonition icons]: ../../reference/admonitions.md#admonition-icons [Dark mode support for images]: ../../reference/images.md#light-and-dark-mode [Dismissable announcement bar]: ../../setup/setting-up-the-header.md#mark-as-read [Excluding content from search]: ../../setup/setting-up-site-search.md#search-exclusion [Mermaid.js integration]: ../../reference/diagrams.md [Navigation icons]: ../../reference/index.md#setting-the-page-icon [Remove generator notice]: ../../setup/setting-up-the-footer.md#generator-notice [Rich search previews]: search-better-faster-smaller.md#rich-search-previews [Search highlighting]: ../../setup/setting-up-site-search.md#search-highlighting [Search sharing]: ../../setup/setting-up-site-search.md#search-sharing [Search suggestions]: ../../setup/setting-up-site-search.md#search-suggestions [Section index pages]: ../../setup/setting-up-navigation.md#section-index-pages [Site language selection]: ../../setup/changing-the-language.md#site-language-selector [Social cards]: ../../setup/setting-up-social-cards.md [Sticky navigation tabs]: ../../setup/setting-up-navigation.md#sticky-navigation-tabs [Tags with search integration]: ../../setup/setting-up-tags.md [Tokenizer with lookahead]: search-better-faster-smaller.md#tokenizer-lookahead [Versioning]: ../../setup/setting-up-versioning.md#versioning [Version warning]: ../../setup/setting-up-versioning.md#version-warning [Was this page helpful?]: ../../setup/setting-up-site-analytics.md#was-this-page-helpful [changelog]: ../../changelog/index.md ### Funding In 2021, monthly funding increased from $1,050 in the beginning of January to more than $4,300 (Dec 27, 2021), totaling in a yearly budget of more than $50,000. Compared to last year, __revenue from funding has increased by 617%__ – which is absolutely unbelievable: ![Funding] [Funding]: the-past-present-and-future/funding.png I'm solely providing these numbers to fulfill the transparency pledge I'm giving to my [awesome sponsors], and to show that it's possible to make existing Open Source projects sustainable by following a well-designed release strategy. You can learn about the strategy in the [Insiders] guide. [awesome sponsors]: ../../insiders/how-to-sponsor.md ## 2022 Standing at the verge of the next year, it's safe to say that the project will continue to prosper and evolve, yielding many awesome features that will make technical writing more comfortable and flexible. Here's an excerpt of the features that will see the light of day in 2022: - __Instant previews__: [instant previews] will render a specific page section inside a tooltip when hovering an internal link, which will allow to implement things like glossaries. Further support for improving glossary functionality will also be investigated. - __Text annotations__: as a logical progression of [code annotations] which were added in 2021, authors will be able to add annotations to plain text, yielding excellent opportunities for side content. Of course, text annotations will be as easy to use as code annotations. - __Navigation pruning__: to optimize large documentation projects, Material for MkDocs will introduce a new feature flag called `navigation.prune` that will lead to significantly smaller HTML files for documentation projects with huge navigation hierarchies. - __Navigation status badge__: as an addition to the recently added [navigation icon][Navigation icons] support, a status will be attributable to each page, allowing to mark a page in the navigation tree with an icon as :material-alert-decagram: __new__ or :material-trash-can: __deprecated__. Custom status types will also be supported. - __Card grids__: as a further component in the toolkit of technical writing, [card grids] will allow arranging content in grids, which is especially useful for overview pages. They will allow to arrange arbitrary content, including code blocks, admonitions, etc. - __Blog support__: blogging support is still [under investigation] and expected to be one of the major additions in 2022. Blogging will perfectly integrate with writing documentation, allowing to use all components available in Material for MkDocs. This list is incomplete. Additionally, many new smaller features will be added next year, just as in 2021. You can follow [@squidfunk on X] to stay updated. __Happy new year!__ :tada: [Instant previews]: https://x.com/squidfunk/status/1466794654213492743 [card grids]: https://github.com/squidfunk/mkdocs-material/issues/3018 [under investigation]: https://github.com/squidfunk/mkdocs-material/issues/3353 [@squidfunk on X]: https://x.com/squidfunk mkdocs-material-9.6.4/docs/blog/posts/the-past-present-and-future/000077500000000000000000000000001475306445600251225ustar00rootroot00000000000000mkdocs-material-9.6.4/docs/blog/posts/the-past-present-and-future/funding.png000066400000000000000000002747141475306445600273010ustar00rootroot00000000000000PNG  IHDRN4 O diCCPICC ProfileH\G$@dDŠ SF Aō*X*8*ZhR"Yu*ZB廐~ws=ϓ@/塺K !ɩi,R7 "_ '..2U{Ee E H:LBX @ rY2!ȡ8[ͫTC:\i|<v(g 퇐]Bȁ1_9*^ fgGXP!J<35)簃&Gƫ9;#J4Ƚ̘XU!yIj}T&dW!?4 )pi^LF% A-)%j.)467gsьmˇU+s87"ްET0j$96dEnBZ*scux6"iD>%bb /FUHu~:#ȍ")'i؎H19z8(4L;!&i B5cdyq},ʋPɭ ( 4cpqѲDxFBD.,59@ {A6dxDP>@(Fƅ @!. kphD.x9D<[94J:2[2x%.%r.KgXF %FÉ  ;}OxD$'\%tnN˿e"5g~1nmz!x-LpgRoUH\GqQ`×#F2y~Ծfd;,mԗRv ;cMÚCkhx!r?kTeRZ^ D T;C6G.8+ b񤂱cXn) зa$+@@Onm~]K^+P 2\ QX;  $T0 Y ׳bP *l[v|&p?s" n > BB1F,[qGH D#H*d#RDC Hن"? Czw(P CǡlFT4% AqzB0&f`lbiX&`eX%V5`-🾌ua[3pp$ |9ߍ7eއ$ gGL&"* ;  'n&"L=Tbq.q9q3q/I|@'H$gR)'JIH{HHHݤ7d-ٝNN#KJr(1yKQb)BJJ 2@գSbjzzBKKJWkDkV>ZiN4.-n^t;z0=^@_Aߥfhi jWk7j_~CѱL)ҩ9sAWk.Э={]_\N}~PD  a2%n Ǡ{>C}COdنՆG ӎc1W231ߍ2%lTèK^6 65jΘefkڸ nd2d& F.i\M"dfN3̓sך5`XZH,ZeXUvVere倕UU^;TkuZ6> 6lm~زmŶmOپKڮ=ϾȾ!aCG#1qE'ITtuv8ovC;F:fu ǥХXc>g3.mq}trszMm[[_Nj+tp==E[K ]{_~?]s/c~@V`Fශ]AA9γy\?|nk(Z1nUxvx}x_W܈HBdT<3W3a(ZTBƨN薉 Lc#i5wf48)nRGnO%0'%J I\x+!IԖ\:%4"k'K5I6ҒvO nJwWziSgO=3dZ޴#u ddekM}`0XV# UgdUd=^#W{%\FȜ9scsw'gKs3g̞)sʺf\7O%ߩ@S~^Jy0ͬYf͖>?iβ9‹mg9o{9-@d.h[hdaES.ص咔%-%f%J|U}v_o]/,Xlòe² 훪oWdXr**kVЫ(xfƵek_Lg]UUl6~x꽛L7-zp-[m-[ɷ7ElkN^юcWdgvn3[Y+{} . 2~!k`hM9}M⦮CiO[>bxdQђNJZ{g6։'Oj8u?89utg:>t\y`wG }/tT<|]'O\}OeOzKc3g?}ZŮ/5ooOKyx`{Z>F}=?8(CG V4+ v@Oq|CQS'V 7 Q׹V:zb0@=F(iNxN4ASCIIScreenshot4B pHYs%%IR$iTXtXML:com.adobe.xmp 2126 Screenshot 564 v:iDOT(A14@IDATxTU?˲twA#*" !"" ݍH*% * l{Źb6`}vsϭ<7ք       C'-#       .@p       [@@@@@@@@@@@@@@@'[ύ#       >        oN۷G@@@@@@@|@@@@@@@@ o=7       '        @ 8ozn@@@@@@@N@@@@@@@@x+@p"޾8       3       VD}q@@@@@@@ 8g@@@@@@@xs        @p       [@@@@@@@@@@@@@@@'[ύ#       >        oN۷G@@@@@@@|@@@@@@@@ o=7       '        @ 8ozn@@@@@@@N@@@@@@@@x+@p"޾8       3       V N<{L$HoHn@@@@@@@"/'^)+ls.Ibn*8OȽ;qww^:       qW@}Q80(HC$H Q?D T0I(.J")~'&ծ*U*cǧN3'W6ض      @P$AAq@%\\<\ktCn2_Wc_g@@\Үucc=>-O6     z4P Z"ps6ʦ{ G mo W}͛ԗR iD|zW@@@@@xT`?5#ST nq*@'|eϾrE)]/Z0Np'AN8@@@@@e5%\+ E%X$NĪ$H'zp3͕=BoH"-yY::     q]i=gϞK@H $pצpڟ,փyrem_Q 84vA@@@@@Q_Tp X@'&Ix@4oy=/c,YRm>wMMk'M!IՂԙ rm9DHZIo$<2]]]%~qjL[ҧK#iRHSA7nɽɘ!dx#xheJj'߸-WݐO|%eJ/Sy;U:s_y뮶Hi%S7$ ރWo5ɒzH;WXjSt'RIJٳe5NX{6aijKW9JL韁4b'^Cer$vq)3?f#:}{͙2I¸LJOzD&bDd}(G<%Iri/$LrY}{r     @\P%k4r} @puuOyrD;_ĴًБIK vʵ[Z+GO%cceREzmm"&̴bƭwezBi6M*Mƺ )?pXا )j2RL)ncQpBKX{kYȚ9|֨Ic2^e/KX34nP[ ȭ0{eCץ)>)?ks ;GBC SAJUVC=է Ysʑ㧴X֣E PxQ0. vgy`z9J}\ofGd!Kt27w希5_|ڌ͝:n+IĦ߲2n"tO}JL,xE@@@@@ N />־'B⪀Ҽg$0a 8>ep@\2fҬ0~)So~YU2r Q GMU0UsQA(͓.o2]X|XzYp˖d٢}Eɕ3{m#6z@ֶUc-K\ Gv4Lm^A܅Ze<*dT6-='#3,Yc÷&!aQi2 l".ԝZ`a\{SO}#Asɕ/~SzPSo bbMơЁ     @\P&i6MĥwkAWI@=N,IVwR% DUaURN>Qf} s1g=[&CPThSXoTh$LDl)) ?i=\Y2ת@x 6zvicu{ժ:w*tV"vviSطK*2dTQ8f%V6}i+Uѣ7mDpn ޖl+/X,{WIQF{ >\O $o,^ڔ^=)[/4.-Grޒi/[%D[6ksʯ5jheLf jz;e+"5u*~<mykw]Mq(M8x{a\      #B0م v꙯ OTw lⅤt"C 37`iJĐD=ܷ40?[R[[ڠ^tE,_/Vfض>ewI!-GukVXBuj׷dacJ}c` άʽSBr*nnnr5YPSm|ޤ\,ѽ)W*hgͤ}*?fjb +_ҦM%nݕUʱg1j×TPGO%.^1ƥE^t{vFf&\Q;RvUc?`lL*5U 55ǵdŚ͡~i]./i"kb S/ZAw峢mZYrlף|ącmJ6-CF}pGe_) T4Tc/߬'5/wZ=Z.޿/[I}zM/> @@@@@C>4 ]ݴcb=8"uD *fًБF_K/Wذi\خT(izxn#2{r^]H>0A7Jm7޽D!o\6Û]{2s&V|X,c0h˪ ڶj,2X/LesUQq,4c^eg [ZVM+N|ӱ^dhZپOGݧ_K3׮[J-C=܅uUc=Eڷ7[v睷hF zunaЈV1ڵn,x?fU),nu@-[gY5I_Q]lpح )ڔ#55Q"i"_D ͡o]z|K'PH 5s珩jQT>/ĽKRɔz=er} )):&0E/@@@@@+@&^=k!8O@=O<~;~xx#]_Gi3E} 0p*+6leXҪzdC>%e.a¾K0b`/I&TxҲf : Ĉ=jU"%];4ecp̟[baw8)N },Y#;QzE^BMRxvHCf=$Jˑ N,;Mf8Ww[J4dͲas_zH7rHt9JFNO$^&8`t\1R>~^C%.ÇcTg}ol8_K X>t"     WI@uq *I=Vb=8KJ3mJLްlʼnZŊZ GMMpicDX}p3 es-~ m!0(H_-7nj?tO6S󗛷˖} N#|qHDUPa K˒9tڲ*8vADXU5 UUҬ*٥ mz`fɜ1} G/0)_|aMc}ztiSۭ\!CGlt%тCc!81YzlqJF'73 .Un*~9"z'IPWiQgl:qGnU&wz |*5BZ剾D.6+Q NI߇-"[mԱkמT*IMyh*P1NWI@@@@@HPЋ/k@WU@͎5FpN6A2jLQ55_GĢƪԢŗ#*XXWeuс!F kBN,Y۸){u*4dn\yt[~8Mn>31\丂KTO풩VSM]k-NyMѱ):zjStoڴ$[/+nӎLQ*()4G     )@  OSL'~[RǸ Rliɝ3N-jZѧPU",u NHpM3-%н0yCnZI,ꄟȩ3mcpB\߁}j7^-00dۯ-X,مN\~xS~]pd~E Tԗ-R'LXVץ1Y Jomr)g*\0/ @rP#S~ө&&_*N?C4QV8;iU(5u=Mӧ=pqyK4@@@@@bZ=Z!}RGj?aȎXlC ,??9s>EQsXaxGbwGOpŽ.&>~һHQ'TSɘ?tէ簻,YvlشӦu N<}^&N͸DJV%_FeAU\|KڵT y_#/ѻ*(.]4j9($X>\p_ߦ ׫}3me/D6812F0K} +gg廍?),qHs)]Gj-ozp=C$U/c@@@@@)}$(()SSr̘@?OaE8:V.WH9=&~rE  2KUTmf!2cی;ĔdTe-jK-u^ޗ1yjMq%o޴$ ~!      jOv9Vv틶۷U)ɭ[/Di3𿕰ƫc̙=lHVpbğd|՗vxԯl|eOc+@pzH x&7WH'tbDH3YtݕXUSxiPN:/v76 uچz?^ɸq4SJuDUojpBGe6ǿoߖͺWV_hpciPz\qv7ϴRHzjn~<]^;mIzTh"e1F'     )T|: -[<)$89a$$]<;'8c:8a9m{e_[1Feɘ!,^>^'ly@v;(>*P:UJ)\0Ԫ^ITEצԸ_^fR2C>K5 gH`\i\rE3\!N2զt2 jN7):'Ѧ*)>1ղ_,D䭍mQT^z(     Ęc?ӪQx=y"^)-W+Nh}IC?00@DRH! &̮wozy%6Uܜ@ul I=z1pտS\!N:foII޻/<D<#}Wt -4qM9直IRH$kW"~^|W%QmH@@@@@xM)deǰ{k| N;{^_${vOWp՞fiiԸ˗jryyPPՃt㪾ԫ/u~}Q=ri?n˙3r)%G&ۮ{dr }_-yrOT|':ujݻwe_r!ڳ.ɒ5~ժU׍^b!" ~,ZT;8'O.9sfKjđ+G,YR)U6JPA-cUŊH_˂erY-t% u^:bG`r]UH|||eęV{S8N\\gRg8 @@@@@@;׈C=ҥjZbQC$o.{z(}#iӦy)|JGCm5k"͚*>=f5KEkYd1cA S[aqP=X`o\|N@^pbm2x0?ǵkא!uaΝk﫯)ShA6(v-~oRRH!6m 08bu֭e5dϞY= re}& v?JW2OS99      .pcyZ/oJ]%J~Sc_Si;jL2W̹sr5/c ;gN}2oI[e_nݖһ$H C%ku~/ڴ骊-&z>E|]WPwzp]HAsl۶C~m5i!7nҷ+WFTu Ww79zVa6 =ztjիZ.%ʯa'n޼%M?ke&-,ŋ+k89|֧OOBjJ UiG *(R#Gʕ+W-_nP-XT(AMa߿/ >LJ&̝?zLpb jZxjj^[D'N_}VP}:cZՉѻP+E߾?^^_Gx}( +8'˖-L>>81l@QDVjR=N0RgkHx"&CDpY      CSu 5OՠwC2!}ے%sEMaiQ NY^F&}t2iP$ƈ'k!&KMQFu}׽{dazW֬YdwYV_Y`E%$t:Gdjڙhfz}1iMoȯsC:8Tb$IIJYUS|soY6m}:8,*bB+<ӡ S .@@@@@@ > DT%g98~F>|t/K4JpĉM^zX]Ə!9s0iİaeֻZXب|J4i&GR|Y[`G'r1,զ?ٵk\tYbvr&aFzFosgJtiu}5 c⬀YxB]w? .]RԡeރNeOT/+      Jc v= J IxHTumKy7q N?~Y޽gojU/D$8-ɒv!;q:PaT~~FeAw%Gl(uthET KSO4𔄉+M',BZ?&C|..3ZtZ#84J      Izg98q ԱNU`~;nD" n]{ѣ|Pt|G'Hpb܅2}l6DZlpk&a„ҷR;6cv#]ʕCI_VoyK֭m8ѱCW/c 2{6V׆M*4wK׮Kf_Ҩ6U^O_ ֯_xGu%gϜ׷@`q0"z=y[8ȞDd      {;U Nx{{K <<C7IժER$Nˊ+;>ihisܵk㌾"E ˛oJb'OK.=s.]RhST9˛oԸQ3}K*V,'3u-ifcTՌ>#Ŋ ǎ%K~@-ڠA?Pߵ/TM? okSc$sOSf˗5n [/keȐU]C dϞiA3& @XڷoVjPK#_UʥKϯE 8aQ5. L) $p%p*'C@@@@@hrbp"O4b1lǎ2` 1B6>|$Z[,T@ "jԨ.]=a/Js,ƫ6ŔS&,,7-;Կ پ}MJBz&~ZWcFO5k֛m6hB6|^myaF KzUSlL~:S&8ar\pqI$^I~)'N@@@@@@^w?m_Fgp"I/{ݻ=">8ٹs̙3ϘB%ҽN>ԭWϟW~79|<҂G& Ef02dٸq/Dpp,*_^NnܸUC+W-ҫ6X;o"YbܹJڦ*Id˞UЦ(Qe6ɯsˍ7ּlQJEe XQa5bú !߭hm,*};IBR"6ȗ_)uX qD xXM"8,I      oBBΙc Ůr2ҩrH޽{rmqIHdlS!"Qa<{bh~]0OU|y-)=2d`La6޺OMYrU x ٲe/X9._"'Oү!K̒5[$U2YF N x{yjΝC(8vsQ      q]_2AK_8S=)~/}<ThUF?@W]E'N@@@@@@ V8/+7I@WD3iDG#8@@@@@@ ^<|#AA^I@ \\gh;=h      U'^wC & 2׀      <񓀀Wp@ . gRhD@@@@@@^wgy~  $ɓI„ '#     n{DbL iĒ-Gp"ډ9      @|P ! LDL419@@@@@@'/DKE'K]u\H@@@@@@@ jϞ=  ..D bLDQs"@@@@@@ L5P ϤI$a˜ M; 8!      c?ೀDP@MCb҄NX$xE@@@@@@>4Gp %M&Ik7Ep"91      @|P _zp# QU]"Dl6Ϲ@@@@@@@H3󗀀xq$ $H, &oho'8Ĝ@@@@@@ AA R%x$v7W8s'[      (A喹O.ڔq*0ayKNX$xE@@@@@@ O$@ PP"9D.&Ĕn#@@@@@@AgϞI`PH~W?4@ . $H@O„'$J(W?.^5a@@@@@@@@ Nj9\qKn޼-oI6IJ-Y2g7#r={$IHޒ*ɓCr-Aoݺ#Oѽ_%>^UJɓ;(^XTס$#'KWݹ{_+PRjMT)$]4Rd=3gu%s\~\TW:o)(QH2fx#Xq!       @lę=ʲdͺ-P{V+\(Ԭ4nTWRJp=xH]*7BGGaBV.+֕B54ڶ?uȢ%kd}z&G'L&*-l&E w4̦M6}\LT-Cع_.[+[M睷JHj'u-ѵ1>~Ϭ_Ɍ aޢLz_bc{-/\Wok7ڵz'mZ#dɒQ[^ҧO]tp9ج)c ʿSBʗ)ivHIӮUC-8ܦϲg!ٲce5B|S^ڿ!)<%ix,Y @@@@@@^XN7X lY ao;#6 e5̎h~ ٽdHlHP\r=RW׫K׻g_ҠQH?2Uđ-rY0pl۱7ܱfT5^=zu9yVy6t$e5#qؗ&uJճ|qU]f2wr=,alY}K/$T&S@IDATL<9q|dv wlIC?Wjf E;fKBY۰yXߝپ>5'U9Nw%!      :jpb}USb f+˔C$Q:OϿGh|X'~'ŋ kKoS=ӯVd[ D\Nrtv"M\F!ŸdPl}ե_![1wծUU&O>2 @%,{#{8/f/>WԩYY*K XzyE@@@@@@ĉgGE}kqz2|=ƠqpVK4:{.UY u?~ 1vpbђUҵ ػ@q-<[gu*ԬrC& tȞzСtt#uP D„ "2=ٹg#[PW*N^K3-M VS3@@@@@@xb%8q}ygrp7#Zu`ԈTa>C 5D`\@Q?WݐC˽{'Km"quu s\T6) ]fذnV?e1P*$O.JKqH 9{>ω ֨[l~ս4j^v:s}`*ѺMwQvlM|$~nx" f]z٩:r̢=]'ni)]vSo%w;Mi.؇@@@@@@^5X N 1YMЪ@R^ yt1mJ|r[{pblcTZxA}ڬ;QTk i|=\wqq9V A}KQ߷l(pI $00 M? K4)֭;׬ 2>rBzpl'ΘJ.m2Ic鲵TgѢiY2gJo3FMU>W?Okoidea~z|DcoҦ]O;uhWCɕ3լʭ7RJ'ʱѓb?j*s9}DW좢\1/VXVI|9mXA@@@@@@UrjDN}L}ThaNwIv{ϟSk͗۾lKV1tN˖6gYyUaSǶ9|wjUlNߊ  j OiK6nav)[,;t[T;UeUCB=޶id͚)Զӧ˻~ڦ%oΖew'ieSmQ3epNU_Yx<% .^%tg:&V?{4Agx,3Ȭc¬t"GaFF~u0 \P.:Y<5nTyOc@@@@@@Q ƃLQc~6IIn2u8hu*0LnPN39|u>c;Zw+U][v o6>m;JM;- 34aQ}[50֯M cүa=o9{s*Yː>߳lS~!3g-կ:Ԕ&8t0:c\Gr%ӫ[l}ZӍVK]V/njA.'XR!kÇL7gKt}玝ӦD݃Y۲qêf0:Wl'=NH;mn,{:       J1M_YtM(#U_+6CKu5 #fmo\flT``*~VU3w|]J玭B]nҹtb^t0:tꁾK$KG8sT7K7;0/^^wEdbs1M/A}6֯-BE޲j~ݥEsStͲ]ʵ[eS%L&v2      R1Xl=i"miҬX&P6n 6b&i߮|۳6ο>"u?lie,,QX~_:XمAC'ȤɳMaRʦ: a8sbP=TeGMM;y}z1...r&=b~]UP:̚AM[gUQCU0kF0}m5k7^C]Mye~#mʎPêWp 3#K&#bA,       Gb<8 gM5~JΝ(U7UΕ]6M\]]7٬?RϘogYcOiǖ՗~c_8IJI桅$I<-2MM ܼy;aj[b$֥k?Y|JG kw}瞼UELeE8{LjQ<ּlݶR޿VҦMmWΞW\\%ctt;U%/ $qxξu 3]kt+6VmM[_2O+vC@@@@@@ r ??R\tw7LΑcn)R~3:|L4t i&rYMUPU2̚1x`/M}꺇 3֯M coD;Ú"qú2|hpuXcannn2jwR5G_˥L2s[P*P.]=`,YU'N+Wo,[ZRmz*IOKwJ9mu|Ur?6Uq¬ϗ[֬4b6^UQaif0:Wl'L_ GO5nHsƌ      @ r)SҔ.UT-6EXv/MwZl^d(Eȕ+CǴd?mZV>sfٳX:orkr*6/6fYns9t&ePq˔+*`ԃ[[m²ߖWEӬիS]|+ZP{&CGN?ӫsfSң[;Mϳ CdJF]jZ^'Xq\ nQLrpLd6,ZE> 1.Y8Uz٦EW\x8lif,-"      J R={FMKppH(d tUD¡wh',߈ޔV1aMKb}̅W7YwZ;~ 9ž[_h O t.YwGz#ԩ^y}/m^uCU:[3n[U9;]K(_6o/OQ5'~X=ejD߷%E Mb@@@@@@$'Է?lFUһWbQS;_B/Y-wݏ𾪂BjI/;mޕ4s/qqI$ Z5nW~Y$nZz'5퇚#*MUx\]FYغT2gJC?} km2L kLiI:&uH;wxɓgM/mH~>R^K(,;Y5/6nڡM[S-"e˔T oo7hf0[C[YԬV!27'|iV";ms=e*&6e       +8}|Ҹܹ{Զ;dޜFg̗uFxW5%Gvͥ~< gG:uOB7Tɢ*ܿPlܴSt*t'QiCM fڸQ=>"ҩXdL8*DM?~w> *aTpb?6N6lXNI_-OoZ?_i-: /{W18=kFi0o#u\y[v9jOϤҽS IA0/      D@NY=_pxz&0Z1oe9D`ɒʇkHfH#KJ:WUȐ>\r=T@B=4oբL18*Z62V )_O|}B {j<$jkmPǎhGb&ʇWW׈my^6iE7ktwwU%5W,McSHn޼#{%{,6!,_7Xi&M;ʶ{M߲q=?': N8xst##@@@@@@q:8qIiҬf-[̲lHM4ԪW>rQHW(UHo''Ti7Ngo 5=Ą^MCQ6'Gek7}C?ºլL08JUI;vD;{ϟzn2uPIt[WDvF:x`MwrM~p*ӭ*߈fȚ%d˜!ʗf¢aW0ֈeLV7'H]      @ Uq@W!̚ M,7Ek"A}:ܥXт%hR@v>|\iA9|Ȝaf$+SΑQc? tonsy-)WMXUmb綥)czKW^7]ڴz_J9)V-Z@k*ޟ;əqú2|hۣs3?ǎ5yjV~>ظChF׫u G ϫY0_\*HիhSI^ Meeݲbj^3eH'5"VĆ      k!'۵t??SٳȢS$]988DZ~U6mizL5E_h?OUH&tdyokoJN}dflK04զ+}*}7Tfn~oRP Dv>݉>M>/C}kaߞiNș#̜>JoԔz(b־m3WGGٟg5;8VUapem.cM&},xW*tT0NoiPP*AC@@@@@@usuCp'wvY0wBddڤ Nm6/]*u?j%o5>׺˩*unwٸiidIpһWRX!_%l2ܻ֭FވDH* L*;.tk}&G,cd묱*{ /b:Lbvm_mFOp*U?'ϒC'n]L8t[xj*@}9/lR*yU# f珮slʼn9HvM.:k>oUj<1@@@@@@^uwqǏջd˖U,˽U nS $M'Ͻ!MHBB^)$I p L\6J.ܛ$ے-BeVʲ#vwwf>#Hg:O'^}-y+vڦa)-% r=fm[*ygOXחvIppI{[BCCl >%ȹ"I/ǏN$,gΜOޝh W#=!zeT06n\qz߯MDDf,g/=,_y?vK;$Vؽ'KVk`Ex:Ξ='WlL4hg¿3Ta_ۿdOM]o wLßz}M?oJpBy0B˒W͞.ySg       Lp"_~3g$pkJmC:o>*zli[mol~o2uDg/vm3r=Q~ۨ__sݶJ+kwm/߷ݯ4dg[>Iٵ;v xJƃKWvn,n7u-;m|[ß6j…w qF9>yĿVw7h9)SXo͖_}}}?|ܴjMw \-lݲVmy%!.eo@@@@@@}"8?<'{NΙi}* 2j7}z̬VK n =<}9It}Wl"/Ԕi! [υEŒ:fpu~~СC:۰mwo|KvtBE5trDn}+ Dց?_x葉m?{ִw|҄vLw׼'oz.='@@@@@@.pقwYkv s2ex]ڦ 8t~"]Uoaۥ $;Ϳ"_IʖK%>>Nz       }['~‹9չ?/>dWvΏ}VJK;VGn|\ώ #ߔVudEWϱ9Z ɟ+]菿akzACpֲFJbb5ȩ9Kϓ/;RޏoZ|ӂ7Ȝ^kŦ̟䘊5̗ὧF'l@@@@@@@'^{m—?Iʬ_F~_R*#F iS'ˤc%| ǴH_&^_V/Z8qzw.:/88HFEJY@DjBۓӮ?)w9۩Vp,U',96پHrD>m/n32w5~{>b;FN\h_ߪJ~}k)/eVo(7W 7tjO7jb$zEV=14lo.q{lwD Z3K_;q&?lUi\ڶbWr>;.tr_J¡'F ?hqzb=gkh~RXTl[gH6׿mhȈtw$ 񝷪Wޒ[쫶 7#%*2\CMm`Lbٷԙ7Gxxrأ}p˓0o:mt|{hAۦx2bDbt^]qNZcYUۍw6      @`˗_Y-?$/ÿvi]C'~9~So<_EP;N+[ح_^VܷRWvy-dOU'_0k놯 t.yQv?v'ZN8)_UQE| 4?͡W䭷͌BM˖/<69p\cVIIic˯>e٢9%]hhO't_y9t$ey/?$L      @"T[['_w%}W¶ѱ#/5\%%erqx⛏vZm1z9o,ls]9X`|3;:f{إ6Dqm9((PΙ)r|#78m'Sӟ_lY~ovЗ gX!!vW j5!=mo'r%/l7m!||}eA2dHH&˖.yWθ F:pTveZ;t̞,3ۑ_'ǿ 5}xqcFȗ>sx      @?D_u8o8z,[L"H()-`(X8$/n=|Њ G%Tٹr=dt9kB?T'HbbL4_㼅vJپ}"Ӓ<7'J>)[ O;] Sƌr}#ǥn;W,q\P ~Z 2miΜ- )-('L &4@@@@@@@ 8O^w>|k cwl       gɝx -N\(55mVY~by?n       #@p{%w⁀9 O|QCt@@@@@@@ 8ϑP -=Cn~o2uـ       '9r ңjJhhۻA|l       gɝx _>+?۬plyṧl       w tS`r6GO?FRfMm       %@p»'w       np        ]'yr7        7       %@p»'w       np        ]'yr7        7       %@p»'w       np        ]'yr7        7       %@p»'w       np        ]'yr7        7       %@p»'w       np        ]'yr7        7       %@p»'w       np        ]'yr7        7       %@p»'w       np        ]'yr7        7       %@p»'w       np        ]'yr7        7       %@p»'w       np        ]'yr7        7       %@p»'w       np        ]'yr7        7       %@p»'w       np        ]'yr7        7       %@p»'w       np        ]'yr7        7       %@p»'w       np        ]'yr7        7       %@p»'w       np        ]^pႜ? pi546JUU[VU׈;$8H ֱvkꥮNBCn6OvA6"       }"8QW k.uu12vT[w9W`` NL7BƏI4|H2̱E%e-猊Ą-ڿ3}ˑ'#$yh lH5p)whC0bce20*ܿE͎L;{X*WFHI">@@@@@@@@Nlٙ!ٹVH@3cGV\R.7z4aA&`PW_/]׋"W_5Ä':VPsHDxXQ%D1mXkUX쪖 Kd6E[B efV+q2,.ƱU+e2 xL5A6Gcca*jd$9uBnOevoZJF$ɼSh ٓu2EVv"@@@@@@@58Tf8W Ǎdi! Naժ"u$kS@IYj1/5YF E}Cszb̳*GFUV`I4dMٝqHp1δY2z0Scd]VՊMC[92Ve+wohkLǧ8ӊEU'Ǝ+       B'N֝V`SAw Njho^ҦEkYGdߡ2y(6yLް:Mo={G0@+RD[m:pg]&D-]M4`7eNjwvMKowݦF^]ѪmFHgCdTcZ%g       }I'E/+FX&'uŪ5OuSc'N]$1a,;ݚw"72%!n,7[vfHvn@ø^7m5WV|8_%~{b劥w-=Kg6-8ƛV#k5hn^Wߟ4-Iw _j1CV`        .Kp}r"״4~L2DBS!] &Ll=W,7픈PV:dN1I2kgJuDہ466KŇYy2 0FSZ>jaλEq\} l۸C KQ“o =}Fͱ*x~a7BeTRss2IDATlC@@@@@@@zp"9Vb ڢ1 N=~Rv/Cd|U#+* ~riss2_f$F:.ksح᠋^y=KJHgy9;;לE$ӂdiE@@@@@@@@z58$o}jsTjZ>'! mm3Sqb]3ˁ'"4&2MՉ1e8Р'Yӵ= ZW/ViMaY-CuU3zS%)1N<(-SyrTvO44sxXu~۝lD@@@@@@@ jpbw1<^&w`r78qZ^kK;p       u~8t4GveIGʴc;3YU ;mǸQebbEǾ֯'rZ1ڷpW H:b:aݞh ӧ+c,z=S'MmFig 9x$ |8v$ք3 OٚԴ9|,ת2QeB">>JZMC[h        UO'Blll Ct6V7%4۱ʄ| V А`(h=n*V8v?ϦT^UB[8Z}B׫3mH=hwu}!       M*8W$uur2rC@@@@@@@.@pVx$!n,7i@@@@@@@@3> N9'20*Wf)@@@@@@@q       K+dgF+I 2<$I,AtE 8=ϒ;A@@@@@@//5aRٕY&wΆl Q4+$6&ȥc*@pJ}7      9#+i&,qLM\_$ sTn VSGY @@@@@@@,+˴[*Rvne SB}hm?R'3-8qlqAB@@@@@@@iUuJ .zH$ C$>_I^A䛟3g>ֻ  oZ}HHC؎%H:蒞%eq@@@@@@@@ބ%eߡ*9z e JOL%r9Tqք) ꤰ㺚00 Rę E Vě0]_OWW683@@@@@@DzdgFe|&Gʬj~"='5Ij6?g~kuMG:ňa!2<>ȴ}$KDGr0-p*Nr>@@@@@@@R W.i&, *=IJrL2?c 1 k% Q\ VTəs::*@L0E z<N\qF@@@@@@Ъ es%ʤKKDZ%RMXb0Iu)"E)Sbu*SH5)Fz^Q7\8w !      @ h2I7A.>&)TЪQh[QX\g{T#GkT TNlU:337eE@@@@@@29܆CC#di%BCS„)G*k\Y*<Ѻ:p2$g# T@@@@@@@+/onÑQ*e.cPLiQ&0%~W^Nh>z:Ed#TfZ}ha 8@@@@@@GT(4ӂcohrJ)JL1Wڤ kB٦GiS"ƴU Shbx|kVQc+hWV@@@@@@@VGH3%ҳ%`y۝|i*hX"%9RF$t2] &@a8Uc+NE}X"Ѵp*N6]@@@@@@tUVE29qe"diÑbZpPe6'6ju GB_/TTz^"ѴHJ0>ͭ>b}]'yr7       `#yB4(T(4U\D4SY„%VڥS\Zo*>rLS0,OF&6f&PaZz6 9q       @}I,5m8uM.=0_R$մ:)¥ctc1UCV2En^dN04HF,Zb)Ol ).Ӿtg&8qlY@@@@@@zQ@+ZYbρrϜd 2%R#dtR1 5W|`EN)B}wfXNaZ"4}+#8ѵ3@@@@@@@ *~#=\V|džˬHD` ׏'^ VӦB9j|wo*QHiSh*M F 8?W      0a2ӊL j]r-8LuH 1@iyCvtJid q>%<ӥ9N0(!      @ 46^0-8.V(FNiN1-8REɌ.$TQ"7ڪNRQV1P쐋)dN`3`K@7Nt@@@@@@@ h4ӂ#mo>P (I1m8Ǝ u8&"@0٦݇Z0}@<>VuZku`UuURC@@@@@@K*p*ƪ*9U.k H'.&㘈@O (N5)OUIiT:8PLUaa m _SԳuN&k!      [;M+.2%RRL  K|-r@EiR/4yvShH\bPTg _G>      @o 45]2(ZqTV7t a!~&$eB{ܘNCR8%e_hLtNaZ}h mV/KW'b?      x$P^Q/i咶TVܐ aU0&㘈@8 9͇:8]%MVoN1,ք)QG@@@@@@8}Ƅ%J>QcGJJrпg p% 65-?L V@u N$]lq:0`ڀ\ĕԹg@@@@@@.%- G~Ag9)RfMkKD|W6XalSB[}X>ki ILTS* 'fp'c NE"      72J%-ô, +#8WR$ej_-<*/Ve GT(*lQsttT 7m>4DU)ZEPT 8       p_(tӄ%\1сV 2y\1<hNa|\La}huFϪS &P*4X;V 8/"      p%ԚD,λ|ˣCLE͗ y:EH}bS oêNaB!}Ɲ\ '0lF@@@@@@J8rҪ(f1mii aC,PU(9LE N +XQ%V1)V͇*];'>      W,~cogKz,}$uj̚j5|f mNsG*),e Th"3A .@p]1#      %iνefBMM\hSI"edSaW#tNa~.V1<0@$1)LE +Ta|hBr      @8{ִ(tW7"!ت(b#C\> p)SBCB+ j=fRܰx\3k-@pNm      x*iir2;2.9,!C]> CT0U)4Da).+jݬN1tpۓ+d1@@@@@@}m8L``oDDJ _c S&ׄ)OU] Tt^bȠw{pI      mtӂcRS]L.tQ~VU LL1LB.@Mm Q0Jy݇y']+F_ Kʢ      \zZI*t:\ $%9ʪ.1zD1FT'@@@@@@8S)im8rL{WǤ1aVe m;$Øx        @ػ GFջt;>>di2DhK1 N\iOE@@@@@MD;O}CKgoDJ K̜1LBtWo      ' LPTҳ%`dZp(7*㘈 ,@p@@@@@@.@*Dzf8UU&#$59Jc\> Nt4a       L `hPb.QXRyfMiTs8&"t.@ps"      @}I,5m8uM.+)DŰĀ.$@7.{pN.\@7/~zm]IhHOz\j7uVlhl ?҂U5$_OglG@@@@@.@qi JZ%(w\CJ(:5R& s8&"t_'kjeW!),*ʪj58=0RN+Q8% @lLL7 R;" q#d$ Oiw-ldk)*)kɓHbЖmԙȾChQI -ҳK ܲO߼.;sN"Me hPBF6n-AQrݒ9vWqZW u`qUc ?'Z;"1N͞ʲA@@@@@@cN%v^lQU\  ZphX"Ŵm]~@K'ЫsZ˗]4<An0;kkU&ӖVoiR#&̩Zvg#     ^!PZ`Tv(w d0U%Lw8&"@'v hU\͛) qCm_* 7h?rNmxk9,:c!5X-0&ˈ>Oٲx7V{gUxhz[YUm@؝qHɶ*f̟3a睦dad97h ",yȾeر[{@@@@@@ʯJh`hN˗=*1DfD(Y\^ \W]ݍVs邬\C;Zf=\ROl&^|uLkLkpK։%mZx^do :.'iZ<9gJ ۬Mwl< MH)t8thhA v#lkڎ 6:wݮMSm՞D۔t64qjT!     }^VXbiq:>\fDi=0㘈 7LpBCMK Hln$kaǵ-=Kg6-8ƛV#X^[j="íl??eN;vlߵO¹ӭy=ɓiVu llٙ!ٹb"LPDMj퉶?ooB(F5Vx΄VZwѪ+rc;      @?M,3a2GeuKc$REɬ)t}]:I }S'k$cQKEhی@Hj tEλ Cq\} t;j'* 2Є(n0a gC[ߴS"CV :tv=Ye2~L̚64Tڊh{FyɴЖ"+oY&~kky55;5 ))3u}I@5} -v@@@@@Y.i{K%}_W<(2 KhiŘ Ч.[pB֬҂3@'ZZw7ߓS-sM٣HS?ؑ!9'eF88n=~Rv/Cd|U+*w?__Ӵs:l^k6gǺzZc4+\!       ԘDsU'*]`ѠDjrJ q8&"/ЖfBGiQZ~^m-74Z͛%la3Z5BG̟=U4U`h{ˮrvcֵ8s:;rT{V#r4&2MՉ1lSqA+Nkm;b7"ŋ^8qbGyZqɼn u,+5!Q*i GfTT6tMFSMUiQVuXBLB}*8BH~Na:.{XA ؍26|M ݦ0 Fe*=L?ROgM9mE{ۭ@;uwHAa,Y0TlM{4?[$c{VЊEuKiQ%Z D_h       ЗJ#5_XZ`^ϙ7JD&,a38oߗkAt8zU`adS@oS [/OȦ%*"Ln0U #lY/]BCnYoͺ-RRV! Lb[~ 6MI6}]ڎuM˯7mI|d u9vj+, =H{j1ִH5;ƞò s >MiM(~UNwPe𰐖`I     tC|1<7>\D}Ån(049,aZpڭ58@;z58s~9rL2V&e+0@ 2zhe& QfZ_q !|S§s2_>ؑa4hmNn2+AcǮ}PZ hpD$VxIuDZS]S+o@E~\s6:RM*,y1Xz-#     jj+FX"+FhՈ:v͆'SY"59JbcyE@@'m#5ƜYSdx6slK˴ZhnI(dzOKdd 昽L%0_]< 8&8Zmh5_kږB?&jMXQYU-k!U52npI>ѱs3ᇢ2F|쐖5Ɇisq}Z1CC kMUs*hL vD$1P ˮr8B#IM8ZGG hh3ljRYU#&qj-     \Mwb GX#Lň3uVK"!i2˴o~IN̢ VWm#4xA]/K˭^n*RL7RTXb:vj5[v[ H 6%Biši! =^ۂlܲ˪Ƞp@]]I2ZU,4,tA:NgvojgPc$sQ룆Cz*WMthcִ ºۭ?ms9NEJZge h1||_ 0Za      +p|bZigΙZ9„%8Gb$np^!>HEE  pzpBMJcRZZ! m10*BL%1>rUZh?">8x$ތqRtCZ>ڻ3YUZƍ.SLa7=^ZZ[m'rDdh  }~}ՀĞ#V{ 8F1}8  qlrƴBʩ9oI9293HF wk=&#     @(-X9´V KԊV1x`ě0"F H 0۫X@, ~_^QiU1 봕Dccpk JCif:puhH@7%4h`l[skmCɲS햲!DHpwz!m;k@@@@@p&PUhB&qT0 Hh}_]ajgǻ=2Th#j~~@^^>s9e[ZUbې B@@@@@@oZ1B[khP|CX"FlD$ұBw_ " Ѕ.zjwރrh,_z S˲      `+pF+F`Ұ_"QXRg;ߓ>*V#δЊq5P"=Yc@'.9q Ξ+jӂ#)1ti@@@@@@ AX5 jh@"jQsI(&:ThFh}1&$@@ OF@@@@@+B´@-50Lۍ#ЊU$L jǧz \~p      p 6@ Fyg[lhH"lnq`_vC$6&@? " З?*@IDAT݇WT)9 %c;}>{yϿx{x;콻nTDrwΧF],\|1*V^BZ5:      0cyH7J>-tt b0/AVI>:5%f@XN,׷F@@@@@(j}B-4(mCs~Vr)FD^dg  (hwM9!     iGkۘ>k0¾,1#3-Frb%'3Vrc Fk .&?k^Oļq@@@@@X@DK$:F4 1*s~ZђɱX`Y5c , N,7D@@@"Q`Li[;WnK][Se4Y[9! )022.Ɛk1ltx3R/s]kBm:7:)1z6f]@S`*Ny    0 ~UWÞ[Έ=س-Uv3q< ̓bMCJ{8ӋZ%(KpyqR uZfzl6ͺ  0'M"   KMUJnJTE攥vj Sm D$[5 1( ->|Zn^ek Dj0BV9ByZM Gy8R@@@@`wʕmrkz`ŭnFa9Yq^1 @yu#,Ѡ"^ݘ둙n+FXk IXh,@@/@pb    ka-9^}4oYJu]Tѱ]:AZbkؒ"1Qwk@Z1BEX8b뾁lPDa~֪ZM"!ۂ1@H 8 "   @s۰\VW40Ѥ}2&LlO5pQX5a[S]bݚęʲ +L`\CXhҶCZ9"fkd5b&ZihK Fh[Bk#RSb|l@^q    @j`v;tFjr KDц$E>644.UmZQ{l9 鱁jZª[pQO @d 4k/(4@WQhk}3:ԢɮU(ٔ,11f> #(`"j^*?<ßX+Ή Eو,@@q    Q]#rn L~7{ndȉCYrH#ih =|zqQŮm$U֬Ny]D@WϨ$3 HXplN'91FFh0BCD% J$/ޜ!@Xrb    hH&i^ ڊ#S[rd┥~J>qyVգ(*2x] {j)1!˂ R 0z-(Ѣ{f;bZU(ПF|z>s L2{8\@@@XO UmqEC~#/;^rBvak+=_i! {7 9v. Rjփ,uFV~'*r.bDn a5 rFdgƆ:  +BĊx9I@@@X 7vypJ7&q KXhVg/GmVw>:|Sbej[6HnvbLCLmHj^k"(aϯpUv>=P IoHr)R1E@@C @@@@s8%]ve Gg-O,4eTj;0'r$m(*E)⣂.L@`6cRmU$z&W:{4 YHD$% Ŏe@@ON|*    or+Za˻}\L<%'dҔ9ބ^3UK)Vߋ=\Eذ6k1!! | ZAOCjx<Һ^ EGR FY5 LT>I@@`nN̍#[A@@@^%.jp5r2L9\2RܪQh[HR3)$h5鱳=$Ghht JX`A ƺk?m76j  ?[   +HN%Ut!|`DZjr̘{aжծ^lNv. Rl+JqWh}F*dHw$`(֊%zC_:(lOVD@ 8    *084K\*ߞ.'eq0XUYVx+/'􋞩1.FQ( W',(@`GƥFFXj}[nEIЀD9Y2h3oD@f(@pb`, ผ,=nrHpVLA@ fhf8~&VkDE:-'NTX;]~ׇ)>+imFX` x]? UD~yiO~>[ KXPb`  ,=K=@e%J44 ~vw٣rhog  r640qVoL-n3ex+][JoFwD٭UFJ7.xPXy&Qv$zF>ڼCښɂT @@ 8 ehZxl,ؠwZ0@@Xn+v250%`DSZ[zhp3Cc!]H ŎT) E^N| ̝@_Vпjn FrbT mU%R?w[B@Vz7@` <~-50YwXb&*gdKB.f   DFF]u+xQ{{ɉDV`D@wϨvzNxؽ5M/&I0!XY=vE FlvB DC dXH @@ 8/gZ}Ӡ|յ؟Oʹ3fu"ݽb[BT#]KYZ*Qp!/@@XM L\*C{Z`Lٴ iH+x)#O*J R؝ k]5Mb ZJr+HkT+IJVx6PIK7nIOu! Gk%m8  +Kz9[@ d+? LH_SGe7ZetsrXtUx-(NΖhb   9gEvf\e  @0 ^mN\g ᄅt XhBO+E].zַC=[6. $L<XZB5ZM^VIk$6jXnhE"}O-lPVD@Vs } /X`N|-[\זkN;/ܽ5UC9r@lw  +Hmà&Z6?Y{ڟҪg'fJ@`!,Ej1 ɉ1Z"UQXKILjҊ%޼j,crW{*XH6J_Rc>  @0tD {^[rz>8>w&&]ct(:ѭ(w1ѫU(M@@@K]K^ݴ9qdIn6|YV y ̔؝zQXp{_2rchX{96MjZEB{z`   0'Rm!DVuąGlsZe"?wq6j+ sN`9}4GNΒ@@VBVaB y-ԶZ}Pȇj*Wb[Q)h_2 `m6ƛw=wl#/;z Ll<@@@`>Ņ.F@{ Lm9F8w}K Qt'j;v٣rpO1 @@ zڽvMZٛ!'eɁ1"jKy+UiE 3^ٙq{K]w_jF~ě3 |Qt9jxcDZj짋5  .@pbމ V+-&}ߑm9re?`#rk! } _h{A(@@hhxU{rNҰVРpfZE[i)nm=E 3تWJǦHL"yY,Zn["Q?khˑQſa6J6$6$KATq2@@` Xy9g+L><Єw7ge%N?V*ūޠǾy]*Ą2@@`<ꕫw-t9'40z-Q4[\5Z_ڴB@~_3EM|~9dR$V+Imޑϫ /ܘ KiX  R 8T rJ<' 9;=-zw(ʞtIk{i@Vؽ}VX|Q@Xx@_ KneFo^{5 x)-iM-CrO+H NhM#=%օ$,Q$J&$@@@`X.lj(DZ`➶i)1„U[zF5@%en`FZ Py}0 @XZcrMKv-h+C3%GڛNA` i[n R} M3:[ӴBHqƓ0>#EZoL\%ʷj*JXˍhzt*ڥHnkI}  ,g@iVR|m_8w&W3~^}DaFmE)ljY*آC@X`+q\t%b8sx&`˵U> V:2d.U)ج/`amRN6  F$Dlv @@"M`уCjΉm|AK%*nctlL%11^bcbB]->v24<"Ò}$Cλo@bcc$!>/1&`k-0ߚ}OZSXhbDe"ymq*QwIgp=-[}҄g@@`1/l '+&Nj`puBLE#HW}!g uDQY4hɘR7ՖVM%on-7X[m{ZC|rϘ=   0?g5!=R$?7K,ջ}gVoXO+_Iի2:HGGG kd׶"IH/MʟVI[%3Xvm/uk}gOZ衺^x%İayjR"i^i=ګRϡمFl'n-f TiSK{w#]py +?Zrt+Sl&.-ѽuv&4@?7_ˌZ<󁟗@@(+˷m;( y'i'dJJn~(3@#Qmz<!+'G hTCv>ZEN?߅z1, V-d2(MecB.r#,Ysss[2@@(ή} Q";dg˙_/S'ݪ3\rWuNmUmC-p3$'IZjVl "سDvl^Oc6UV!uo޻IYNC{g U8s| QL3lnݓQM/7i2<2oJI5bFvPVRXhS(TȻ@PcUB^H P`[m1P//;޵Oq!ꬿFGƪP2  D'޾kk\Vd߽ujpxZ *˚7.xa ]kY2@urY=?GO^}7]TnxsٙqrNߜO& =- @PTz39/@@^+w.:!+=VO̒u$c,@sP׷בf"FaUts~&dLꑮD &a7ɉS6հX[o~9af=@@V'iڷob 1rćU[8S➶ⰶEjEnՑQ?_tot?V? ccb@p'~E|*e}ɧu}ܸX&nrGGkӅɱdU}Jr3On6!~*vuU()Z@`UZY^Gja Mpޓ(/{P44{ 9}$K3@@_T&ww.imVȖH X~x!rmQA k'am$J=/v==#-(aU%y`pl&,-k)Z#I6Ba   48Cw\?֙lam=x&i L]G[G| L˟{M"l7-}dM,5} zi*𿿿 ُ֮ZxL'UغY(>8kmb-N 1X`I噇 4hS L|w?ȑoI! .o۵q#KIҖKGrܝ  %wmU/r`"G`Lknx#֢'Z[ RLTH Ku}rC+HXE JX`k$C.Kp$&E@@@XR*m-aU)rs2zKmq7ZiXK /k)a?lԾn[e WNﵚv^Խy/4P:QQ!}'آ86-&i`PBFVtEbcb˝Oeݚ|9ydrBn IG, QrR {ql;ʗzg o(*Al]?f25\t? vC@f#=*W50i֖h^c?A .k[^3 @V\x)k? :sTCc>6_A$&*H;};Sb]H;/p5Y@@ ,Do_*##.6ccc݆ONUb[he Y[緘\rW[;dVqߵ3&~].^MZxyQ*_ U)ɲy×[~x4R,0iPyTWabt 1g*^tOhS8s8[vo-A#@@`޼p8.h ƺ*]R)%,P!GϻBz 3.DA-m+rfm 1FvJJ5Qm74  ,N ŰNt>/%&:Zm_l,ֆ8"ٙrn~^*m|W~V>|es2}c[c֛1?ՠȋj' X˷弆&j=whX Xz}crOP/cL{~#;#N[yu󁘟@@`y <ыnʍ'0QN $3#w9f  (4LQ^-ݽ!CLFAMIzUTO_p`pLY &1PXV w+ظnqe{  @ ,zpbdtT.]+`Zʼn nQkUa-+U_NT3/+^󗵮5ZmBNo^'l鷏F[GkbCU E.x ֢?[Mu _8# B+N z.^Ԕ$ϙLD v2D{z +AzL Mxgx6+:wf򨷗iBq\/Ƭ3  numLK][R]Zaf ߫kAxmkj *h%RFQ/ipoX HъYVᎬtkh)R!"}^#c`=@@'oh v%_N#4ݏW`PV޽PJ/maܹѽ]V!^7~m籵x[.}ֽ } 2d>ss9czWN J\\ൊ;]ĵv ^M}{\0[E5I$SEUtEn?/%)f"0#<=VZ‚݁PיDkq`l/k=! )7*om<{('4$j8e/3@ $X[zk5 S4lrM1ѫmX^-012:q|P|m;r#7:QQS'F@@` ,Zpb||\| ڤ ?U\P en} -\Ԫ4X nֶNDPG=c[,}i+y3,5WomKIlUw :xrD+gl߲I,Zdjd&X f@d,0qQs䛳yt#Э\>Vx+NV٣ZLͦGP,f"  oɅүFjr.aMv̇@',@QaA H14^aǶimV*Zm@@@/( #"_+9߅fy %J㠶gy9r`[dxdT]E/8V}4m>*~.(>ͦYJFZ^77jeX&OnJ8qx_zrGϿ\#9r`~4 WjeLewʦ_z<#;F40,ؤ'?u0۵ج0"WM**]V˩YrLC @@`kմKzPhYS8y([3 0//](5L։@ڧB+jZ  ' M߾;354D%;(,|0}X;r]q l.)ID^O!BkԽyc VX$%ٿOLC`% ?.6K2w7gd6Z4xD{ZK?󷲯gd a%e B 4jo}R]/Uu"D|l0?AV/R{0@ n?vz!hX"В#VF0@ (4HX~wޞؒ'Zn$K@UTB`~^LG@@ <8qyUε8{+n11`P^7:mǑؿjE!KD "XU d[KUOhlnKnN+OY -|: g(Zmc+8+>s؅5&fՆ1404C>WoVcKJQfm}bOkߺ6!śʡ;B4!b~*?^jesX[TX1~'1Zy<E 5IrH EF2Հ$^[H}7]o.Ha QX¼x.1(0-8Ѷx0{Gfhlٿ+wf KA,߷?rA ;&$Q1Ņ$6$KA{1   X xF\ザ()Z'K7ejUOp=[Tp}[hVm|\bxUh S͘o3 i~lOߔ{=66&O+kEU ,v nlL DGG*!@o+ZQ̱1Q%9'YVyE֤w~-x^]dTvsw $QEfWU}chĿrNWRh@N^ZLCsrYCHm?]`=@@@t [Kz\>.@`f& Cy_Ķ: &xtc|Er2U8.0. Xo51nCܰ6xSN?1Zۇ!@EO.[ޭ E~[CD[mrFXe^Ni 3eK2b   Dx_-8"i{d 0f;yw ܕ7lO{)t;黶qDUƮ (@` wHV~&QWFFRyvE'I[lՇ< h s5, b))Z+츹A`I Ґś.0wyrJ[q'9 @@@@` Xi83~]qލڊ3yrh ̥@n[h}'/:jDLQJo.@ZŨVCoFG_ڏ&a7r~hbp R1W#6zՊVBkV: U4 izŅ+U''I~1@@@xs CRs&Νɕh@`j5@a(v=5Z۟)y9a̡@DkVkEQj$Q>z#/@(:nЇnkO] U$QluX0qkpv\t9ٗ@@@@%@pbEݜ,"`w[|xb||}:W9'iMDbx]? wuȃ'ݾUS&v%~)V֟s#Ъm'Fu%;36^ˍ [@B+HZMɜ]b"Pa ThlFVzRFTXk0Q,@`1:ԥ[m6?^~~X;{ls @@@@Nn+XVYK̕s( % Ng(*^HLL*%ir,*Ѐ :ma6&-fLG]Z*Uؿ-#k4HaU|JkW 2WlOnXV@VVF>‘֖    M+L{T_i~mq;7ږ+#BOCD[)e]ڊ;YnZz*z5>}c! $! KpGVz$Q1)zCW @)5Pa]>,d1WkVOT U3<~w-(='„VJI*@@@@XĻv@`Q>ȵۭn~X%ETFFk@IDATV@L\oꇤ_엦Vޓ'gk|+Ev3(1"ynHY%˺Y_'Iz6aSˈ4鳾niF} Ŋd8ˎX)ȍXWnӟC~c[qzNF1@@@y=h@` y+rD.b<>t4"MTTH>yV5 z'HMاd-t฼p$4,Qֆ#ܱv$dxP/b5*-*5\a|R Vj Th"%)Ez=rAi(*J9'EJ6Qˈi    "68=-gMU)΍sڒӹJhiwLy< z[6% -~@$sQ/3@Ms-7*Fs_:8)6E]b{b-+;Z|VX돖9;餄艶 R?$j &6gKlCBVzT;HSڎ>֯I\bg    G`*N,""Af){y:ߜ͓DDbx;4DQaZ_HǾJ+Ҋ^>CRm! KԐD0](gd'%(ZLˍPV2Z]c Ha-L:mFL*aYaZd*tcy <ѰDz{$Ƀ3 6P@@@@B 8"!xn@~Y~yQzSZe"Wr=a" |:. Qt_\ԡlX˅;_'f,UӐk I_oP>%JĆ$wœ {4U}chĿUL 6k\ªS`>k_ƒ~UVi4Waª=͒{9 @@@X'{Ǒ#@r]rza"B;}Bawj"P"> u7{q\]BUYW:Gްo*HXU }p2lNV QU{ WXo4-|yWPC4faYbN6׎ſIme-9voO1@@@@ @ f&.0k|Z:9 0o4D*Q{ܣU1 QaRqw JXK N;A HX Il VdNa] }Ѿ6s4s0OêS`>Ӟi:m.QQ=}GwI LR@@@@`N,5{B9(-$*kdj`"WD\{1 x[<ꐲ.2~#91](:=K: ce mԐDTkX^y;;Scdc$D` Å(&9ڡJO paz+RVN a X+ڒ#ϵcZ qۙ.K!   ̹9'e 05޹5bc%G;+Y72b -Х\+.y`cq?~ SYlQ-C Hh $VMb|CXgb?-QMDN?d%TGn.Da ma*G-j$Gkex RZ} V"7;r m!wF{Q\`p b    ,g 0Ɩ!fjZ<$. X\W]3vGfš{=,qR+IXHb6w/Hv)RQ+IOa eCC0E>l\UZlM~X@L+j󽝪W}.,qN U8u([z21@@@Xp N@`c&Q|J>U>#JRgyGES>{c`pH2|?Ul 挥)P_*P+m$7Q5;#.PMBC%ax.-7Z.P Na] }6s5rZk>:: Vs|hfYGA**m-JSs߲L]=WA@@@"AD$*`_nqϳYm9 LD!1U(.>= zۊR(#59&̜?V-_!* J;,Q)Y'kE &16-bKD~FDBMՙOO-=%V+S$L)RUpEZ`aދxMzhS_[V8;}j/@@@@pD 4߸6& "Lॖ:k(:&PPi@j݆$jm7T6M ZIB݅/| QWµжVZhbibDZ*Ufza [Kk$G)d-9J6'{-4@@@@%&@pb!+].B<^Nʹys&"@d}6蒲NѯF~N?haw3f'P&jeM`{%ZAH%fXf<V TX^p R1WcժUV}˺pŗukqVy.,ax嘁    N,#B`E TŹ\lzqk$&Dgr%=5k!@ 4 em1 QϔxۢYzX a5w$'ƸV%DZxYp SسkC#svVՇUXg }~&?Wv2@@@@qD@vyVDA>w"1$`,@qKڴd߈2]%`I$4|U!;Q67L% 9.%!@Å(&GOw 0vt2,97#rD@@@X'{"]#fb*Kֶ%b+Z``pLw*QTtɇ<4D?WVRj HhPJIΑg r4$-7FXU z@@O飼LZ}hka?Z4h1*KX;)#   ,K0X)䟿5˷e`hnK ywG|&" cw yv}G(2];hB[Yˍ;|rC%@X"E1@,0v&[~p R񥑓'vT@@@@'@pbg1V6}]L?lϑG(-wuʽNһFJRkq|lYfw UZMZmX k1:_q[xdD.jy9qVa q.P Na] }޸.QHN"@qo<'   L[]Fy﹯չZa"Wryg" @oߘ(:䞆(>"`ƬEUL$ܰXZ[nk5 Jl @@@@@Vs̳ӗ=ïM炥 L$ @`Vwɛ[Xٓm<2ũ~S߅$*H TبA k$"?I0     40xs#_~,=7JKjh"O֝ݞD(]rWPX51sʈcU(6k`>Up-7DF|Di0"I&x&     @d A`QZۇ+;qp Ml43@`a:F&PtJEeOНnݜ"GHM T5=}Al5ZE"%Ćv C@@@@@ ND»9 zǶ&IF= 9U&vnMD@`14D%wuHcːXŜZZyߙxn@FUm-Όb lJ%D\,-7D@@@@@ D!Bx $Znkl+NDޗ5i ׽NU/'d1BZmX@RnT ƦI.(X@@@@@ \Q.(o{A0Qr*W|"g LF@K۰y!ŋy;66HXS0ob      MAʟu˷4ʳjzWڒܙ<׻ @$D?*dE@@@@@B\( V@M]|KՋ^#.6j*0AIy/#! rQܭqVI1$&[o,@@@@@ 8ao(\ 466[X&wf &4xEemoV(ި7'IA>-7"=|@@@@@"SDd_lm֑.0$wf       KYR~w86AR|s y-ȓ=3@@@@@@X.';q"nw4IS6Kj`̑,LD@@@@@@q̃@Yy|sTz^vT;'Q@@@@@@@H 8*4ȷږêMxR,a2f3 @@@@@@hrr+Yx0PZrT|&"      +A`'FƤP%6&fFY|AdժU!;}zĎo@bcc$!>kiC#2<<,I3V@n&yZy驱S9rL~G{.D@@@@@@@`,Zp‚˞HwOf{fdMʟVI[Gzi)k{[?54xZJ^17;::J6oX#IBBL}>6ɋ>yP6ۂJ7ʖ A ZT6,:/[,̌47-?7ʫ а&KvVfgHj*cPԾ~iۏ:sUtpv&n薋9x KdiaxdDl#,p> O|\ *3=288gw!}<^HZ;}߰vjPif olזc$e      D NXPv߂ Ifhk_.q}ȶS۫wr_vsً7HCcke XP†z(휬 n6?[HWeP+:|Fĥe~cDo٤$J*_Ê-gr2q){U%I@F(B?_W:f0UͭE yݟ8m+X\1FזHJwU&vnM[       XįxhitU-]ڦê$8qZ46 8yɛwM<:_ڄ?>48\G~x2N'k &gI'/,P/k޸#,1>Ă'kB%Nm-2}?~.}d߽ulWn>w[\%?W}W`,/4*}ۋS\` LC@@@@@@Xďސke^_j74U`!Bė/u1W9u?9=vayk#N6hlD\񏫭x.D@@@@@@@YDOo$M48ZJX|Zyje H:/͞lqBC׮td0 '[uh; ٧ۀ b:翞mI<|%;n=;JV&t{ylYZvou?ipi{*pjx[[wX/m{~x=;].0QU繡80+_6*s 0@@@@@@X=70 C?8(C#%Z!3=e^pAۆ} *dMA>M}}^Խy/4\P!?h޾YiSNa|͵Ͽ͚>o{+#{yD7KeY,َK'wf{ϼyܙM&ɶ$"%wAH9 EYasp> ~/xGV+tX%/ǍڂcEOuZU}[_*Llr<0+@@@@@@@: JA^AJ{̐W5%nc N\qWn}TXXVU'h7U8[{ kmX/V Jnj[.?|ٵ !FV85Wߝ^צڕV*V}c_[uO\ aHVk$شa5', vW-.41:6u{h`R)       kCJcp0 Kغȱi]^.\4V:-zMߺ"X{l˜sLXVKuJ>?yxC64m]z_]XdDCg$C[yY[zؘ1R2yF25Oލ6-{(/ֹ֚ƹ_oȣ'MM+5\>~-))~_~wN HD,mMm.qS.]-w7Vm6ݕw&n|SgO'֬:"x}>5nγ69sZ9#%%eֶͭOy5,Lby!]X\~ݒ?1ױW}[n_Tt xDDݐ        xُFnN*/\۾*8aX_}^:z]3Džr3'Xxu(P`a X rX |LNNQ@CnjP@BҦhx,?"m׻ŶPgc||…?,9Ŀ4?n@d6h idiN <>1!| |lڠ N0 <~:$E_펹Z]Z)%;V       GC#خWlֺKgivn$%OClu,Vn)x=<~Y*JlU[u6Ю }3X[` "x#Ӫ9$zuAjVUV8#cZAcۖr` Vڿ#ݹVOo?t!ߜ8" 3nιca=;7˚J-X~ck,!5b{o*Ֆecތ5{U_QV,#Zglaog$ygÜ L;pVџo "q.\Z̷Ó28ֹV ݚKGr[ˢUhk{jeBO[γ@êp6<9fdt2bp 2XA C!A A < = } _֖֨CJἬ~@@@@@@@` ?7]?wy98'6+} N,aCXXܶqάo<\ k[`+\ 9ha۶zߪD$XS#G'*5gPp~      $. In]232tavf\c}k0"OYĀNtܹ {ĵxI[WZQߐ !km.*?Yx <ҴINvdk!nRI.s:u}F:ad~pn      +[`rrJ<@@…%źUZ7ue#N)Nk{ igjCb=Y Xh tvJp,&eЅ4l2Ԓ"` hxA`Ԗ>P"p*=X kias\U]6:?NaQw\ \ :*=D"^̱p@@@@@@X QUVTjn @p"ժ i ^pm+t٠a 6ֽ}B $}dej!\ ^\5W!8/X …" !      G^# FG䗫bXnN韵ӰDfgŜϊW#@ 1X{ .@{|:iiR#[rsFHqa1  #      I&084,784"C#RX'6Lg<11)nܑ1Mjjh@Bܭ%>=x 8)       @2 Xb@z HXh"ި(ڍkMy߀dddHNE 8@@@@@@X]i~k+dj۱KUR}ex^       K8{NQZ\Zuݔ,YK!      FGdDFEiFc+7el,v4ɒܜlYc,F` X@@@@@@HĄVпIWbrjjYkQT'{wl=t#1r5IY$<92)9N$Y        tiaPäPnl||B22emu^U<~"O|m9= QG(!      * }C*  40ChĔ 42kaQ]Y&Ņ6ixkTy󵝾gܸPzv6G[hڻ6LF'^Xp@@@@@@R!" 6iX2}WnoMhrzz9+mGb'G4ϛ?knGO=Ϸ@HA~HMUVH-@`<ٷss93W(m3{~|p6<>+˕x>M2::9 V V d=u &#+ 8_      @2 ؅@abB]=rNjV!33]*C@Z9o`HWX`q +@*@pb6      O`L?1>!BNаK5v9k|[YپI^&,.Z*<*=+C,/mjj M{&))^bpxDn}$CãU4̐&65r[o3=GFs> 3N1      ÄLNM: wa2?;rm1uwGONϳ%Em2  \N,W     KB``pXzظ 4LDTz%&ŖZ%-&NYl$Ņ+@ k`#''+\U{ꃵxQ!T)bY 2 8L^(&     U R@r|B&r5RSU(r惸sLMMƵV @"ND`p@@@@@@K{ttj1 Fh` /gW+2-woez.{wlCOVuX;p` U t=@ ,@@@@@)0m,&ܭkobB+@XKZ%xCrmXJTZkrVӖ[]Xr)+)6  N׀g     @R XENaacˆR]Yy>_۵wQ@0bF AŇ1!ZN-''KTa>55%9ْgS"    I-099*@XQ G{>_kcq䀿 31"}&6]r$vD@@ R',p30*M߽UJ #Igwox~qaٹEj9ְ4trOKOiiiijٳcdgg4 p<~,Oۤ`P&&&Pʴ^uUYBD@@@@Y5a#_wK84nm9?Ier`QExC4J#V;o =rs.pdMuehU[o~vGŇ'ߌK\SVZs@@@@@ظVpU-2Y    ,}kl?[҂cn-to~mVn^C44ui.𐛓%j~9mC   غyGTZkqoK|+_}w&~V="Uja /DͭOLu]?D~ٯ%vjxÂz~)Ro*@@@@@` Tc!.+)}j:"vem4zk'@@@8N>n۴dž&v.DqQAy4M} Y]]!u 漳^␆5j5asmbd}6忾}'F"C#.1<2*A%4rsfLKKO>_E#=     ZAom>vV[ukm:'YK-ݏ]B @@@@`z/+X%50ǒ 4=PUM@b⍻C"6{o|ϛvKݝϜej.ay.VA"j`B[g0@@@` ,jp뇰^VkߞUZ7ձuK=Xkkj7 Vr|씛?>D>;!YYʼn;\ʼnMn=2SRSd׶M@@@@@(X`g 좿(K ֢CӲrh ڹZr_ ^z˵HݱY ]俬U]~иyq kV8lgW@u]LdX@VO̊RY6   ,]E Nkrm5Fgd@}[RR\ktRS~ά,@@@@@i`aJ0[o0]S?XZ/hgXe}F57ʏcbgL/Z=rzˍۉWHXJa>:}ּMjdYc-j߉:Tnm-w̕whTqU~@u6;w{3c@@HE NkYk b6Csh4mktt?5N mrA64v#ɚ)uza/ʵ'}x__X     E f zBDZAڻBxC僫nh*$Xa.ydڼIEYeX k VZ^|+$ 2<kZ95ѱ{Fm~Gi5.hgV}v;)))"ݺۙ˭ney7<'"  Xij69s5Z>ͭj$y9Ǐ\=?Rmfͭ_~`ڸV2umm\27Ӫ  ZVm_J$hK&cEr/_hc}a_>0zo2(+-3f_F/2#D   h?AHle{]Ud}߻cecp-/SY >]=}z! Ƶղ"s*XłD n$yxGq:5aoo 'gmUb* vB~w5XzԔT 11@@@`{^2hF}RA- ܸA1QUizK[|E؛ZuV3hG{RUmѡI#on6)=eJZE4<%oP ^yزaTWy= Ty~D lݸ}o|VQ~I`.,#  ,9EN,^q HX?;+K:{GK;/CdI%G$==m FD:4mlՐm[}ۧmc,p/6[?Wv6nphصx7;f$ʂr WY#~b_2჻}ڞ[@@/Vm}>~"P?~kyv!|u'҃~=8ۻ ?rV=C?U//_uG`@ n)X?#'ݏ ?c~/J^ǀ~?HtTfȵ=k~w*U.P`NqZ"]1XL;Uf3Cv࿫{4L   JXaۇz}yi႒BymO+n 8\ EX!x$Vb@D ,٭f [ H\'V)¾` dZ_X mkVçM-;g*X, h}@@BG\`B vavnղnǣhE[y+7uد׭|{/WUB!~G"v 4(~iϰ0a »]bkQ/{s>A  $yyĤZ\>/_`}Mdj*Lu Kz?a=uXmz~a  g8aA0 2G. ? 2}8fdz ޷ @@@x5$8:U*CؗibAh22D/rsܯK/þb(/33ҽl@@ E] <,p(^R3wًubl'1Bh Woy>k^j5u //HBŻ4,u7bM> lXjsbQj>~3iYȰ^CW4X ߠ'M 3~ ϺPHl   +J^YkۋZQ⃓g͘  rVǓNĉV'j*1_hk{Zbߋvo ;{ھdp4,uX.uy~ccZ# |[! B |?Kuo9_wo(%Zpu䔶T0D U`    E`Y'8uֵ'2  {BXP8"T..D;nQ)YEs-󠬤PvngFM\.zZ+-oZB[/dff̵i9a LinÏ ]lEny}̝Ya:;Nx/=8ѡ_7`җ 8+zqSSSe-v|9#8'       x 8e}/}255%%Q +5JtvR Ebg-Ry}]|qt[p⤶(UG"l       0Nt5݋ZZr6/& OtLB@@@@@@B'&'՛M,Ņr`v,/ -z}پuػ=_ZqVmX       p 8N64j!GzNNuI^SԪ8,y NVn{,zaCvȖ׸nZ=6>.p]g/+-z=߂-m'e%E;KzZӲ N~( >E::{d-[+6B qYUYMΜ^        oPp"';KVWW̹Ǎ255%|=ܾ v];df6osm~ii~(e[33tij;g]8|`Wx˺]2:,Yba)KX8ݷUr􍽑ݛw2:6BVb>|@@@@@@@@(8u~h^dp"T84%|g`HB281m9ٷX1108,}q;^e)`I1r!Uv6B 뽲}Vy+b 81=E@@@@@@* N˾ݵsn+ F(8a')ٻ|couuFUE>"#?~R2g?\xcy.C('G65_ɓg-A Nl 81        KN ,/y}p>^Ʈd߮ mB.i/:NX牗9UpaC0 @@@@@@@!zM^gʔ߼䅟'rnݿ}|U]IG5j|uDwO|Y>Uɻ*[T'(PŻo OԬ`ߗ,8a'ub/'*J%/7[$0Ueպr#o; N|46ʾ][ǝX        bȟ5IGW`!J .L|ūvȁ}BgPAdp¶}_vKݮ,rsqhirlֶ ,̀-cD-4aN4-:͋VR, =函       no&xUkJV^+&-U%Q2aAP"ڜlI'^ɱ_@@@@@@@@ x:C@@@@@@@ 8//'       Na       $~y99@@@@@@@'@p"@@@@@@@@ N$!       @<tX       I-@p"_^N@@@@@@@ :@@@@@@@HjIrr        OD<!       @R HꗗC@@@@@@@x'@@@@@@@ZDR        8Ou        '@@@@@@@@ x:C@@@@@@@ 8//'       Na       $~y99@@@@@@@'@p"@@@@@@@@ N$!       @<tX       I-@p"_^N@@@@@@@ :@@@@@@@HjIrr        OD<!       @R HꗗC@@@@@@@x'@@@@@@@ZDR       |V#IENDB`mkdocs-material-9.6.4/docs/blog/posts/the-past-present-and-future/mkdocs-material-0.1.0-search.png000066400000000000000000002235511475306445600326110ustar00rootroot00000000000000PNG  IHDR XlXgAMA asRGBPLTEGpLAAAN@N@M?M?!!!uuu佽L>C9F:K=?4L?I=<2A6H<ºooovvv}}}...UUUɞZZZ+++ӈzzzxxx"""AAAْ%%%PPP666KKK___(((:::>>>FFFփfff222ccciiiόmmmrrryoXKfYI:;BEJKPWRSV[Z]b`eA] IDATx]rQ.nCIH?9pS]y`݆@+KQֳ|ϖ_hHza!,@X a!,@X @X+a!,BX a!,BLO#2 aBXa!,F>7rkCX  a!,bI˸!,BX  %5=+T_zJBX ,4h1L{ea#)XfZca!,BX[CBRϨ-TEeR̜z3Fe^< a1}V4pXpa|bpV6`MQZ--fi?z3e̬j`qRqĴ , ꝼ4 -vJX ,נrQQT'E}E_cXҠ;ei"C tWf#U3GYZ# -eE)K|]Kc8*ʂbwHE".AZL8)|/hCJ"cKPM C#ѴH]Z̢+ Ѩ( O[V$ȤEa1ZVD"u9@UɋH\biqDWD"\>$XC#ٶE]Y,r^튢̞!ȦeY޼ͰHW`Ynaefy3Q骈DE>(F< ġ`\bEAYdRS$ɼH1ib(ˊpTdb` x]0-E[aи*REXF-rCX=TE)&L7af"EiPtE<+Uh @=T[DbIJhT5T%qME7--]ˊ~T$B$v$i1ZYl7dE|ViiB՛&4"u[bf+0+QH @1ȋx\Ӣ,,mWeE *A1xMEIZM!e\XtEEV""Vc$ѶI9,-XĺT(+:~S${"q_F0/qq8E>eq(zEp\qYE)21Ts[E<-:CE9☮+YqP%EQK(P^"0HEТŰȿg6YяdRy$X+#\(KxS_ E+^"%LE-i+eDX`HVWᬢ|`ʋN\-"=,&mAEֶY7*:M qOVoF.آ,-{ uz^Q>n>՞Lo?|GEa޸Qu{Z"vqG>E;a5 ]eej-9b3x+n(s3ZYw68dY8-ƛY4,^PlxZX _a>f3ŀxW n`∲?,e]ql@68YXvE':Pn{PGaQVX@MXlE,N`Z܃+jbYtoCVR_튝vˢ,N5 {PbYɮ8د8Wvx,iϢnb(Uo]!,&,nHỲ7BAu"5xYTEw`[܎ui^qqh@ˋ6_ U[' E+eť<ZDˢtb^:+9P(e u(^늃]!,&,~ w,, "B_P1*?h+,rۑr4U,^&aM]?*_{O?ϲۂ5wnf ĂcWOׇ'_{9heq)"bXW\<^+aac*DzxןYTaTAX^J+~vE*,X$,Uw0`ѕ,:eqb,RFh!]e*,&87CJE+`qZNdߚ;,E,K%XL Pade׏%_G*٬JP=~Ztr{ t"nz,on~`b/,Y.YPɒvd Y .X%EU`QOn_xPj6,\/T{  ͆PJ~" /Y{r g)X;"Ÿ`jLn劷{b ՚ߞ/J`o7Efqq4b n',ƍP /f%) X,߾`G]Ph^,O,FUɢeQ+Y 1XtoXwrWdLYdnYOY 3XwBE`$Y%^,,U\roP%,:+h~;_R5:b.X`}EU%J)_B>XtXG,מ{(Yd6ΦB{V,W,` UmNXy?7)plW/T+X5AP]\qi@I(YtZqN.-X ,Pe%^`u"ݎ&,. ,.Sv)d1`jntBΏn = (qR>BloB &Xl# vB {`E4e1=)Y4BClt.X\zP.YۭS!U'`Qno.nF/> /X|ȏow텪,6-',ӳu*XԝP,,)d1=1=`Q2b1M:= (wBMKٽP k+T'T0R~cs|; Uߎ.Y 1Xųxl,Fh׬`KzEY/T3X!Xl,<]XPA'x'ԋzt]/{^Y*"ocUbs;Xf`, ,%F8Y47,JF,vP  )jpAzĢwzn;{Pj6= ȋ,vZ#uŸ`!X@`q}o5,~$,:X$vBUW`Ży/UkNY8 wB];= (w8 BV$yɢDʂEvEJ" Ȣ}{{fG,g# ,އ,ǷC` ;vfl>F{ gw;X{PzlnȢ+X(Xl&E5ǫE4b1]6NeŻjlc"}j'ov3>7`?itB]; ,PW^vnz{`)T,Zf?4ܧϩ`QjHbm;XME}v[eE U扼`Q@h(ݞXvB LN,ʦC+ `\ 4XTg`q(X@`q gPq@,XKe zz>zVnx6,6ݞOyPOK?G(XK KZ,f"3b!X@`̾٧ 닂~2XW, ,K`(X X<~,:Nf,X8%.=5 '6 AIHB#&+=KIxWhp(BQz@Q9%*^wnfwggfwvVJz=tlNkXttbe),ۋKplfX:mvQiC{X#,XWܽ<Be7aQylʹۥxfm*go޽fIX9*.,`&a^={ƱP),&Zaw[X¢튰x> ),znXThIEiv<OX@caWڽEKAa89"s>^C\GomgfXd 1!oŢaF1,s(,_ahųEEkalSOx1ib~4EXΛ-HOȫ',P%i%O buGO8ysd`âcuiEtkyK*Ydnx.;,1{;h4o`nuufޮd]=e!,'3¢</XD{fE]ݽOXзw~;ypXͦvo/-mHE儼(,lXP/P+ۄLb]1=QwǔâmePaBuX,b.BXX𪦺,O-hkk3 s@XG`FYb׳3Ͱho+7z%uFo +ܮ.bW}<(:,¢8wa5'oupqo(; dOOKaQ>mvUh+ޙop/{ɕJ[a>tq'̇)w?re+fR.^^XΛmWpNo0t5x=2>Rk\\ #z>#,vWn!P移u>\iaQWmðZwؗl-A6LVEŧd{{<,N늆¢+ խmaEfX<',{[oVƗǂƏ8õ =q]j)p s^!,T/0fda;W8FNW( aQQXc,Z*o/K zӏƴb icr ڛ[E_KUE/g'~ VW bј7RUn)¢zPz>?\weo?lŮ|xFX|8ؿH +z{AW n ubvjY\ "}|y$<މg2"7~|]n$h,,֥¢jvK4zŰ,,xR+/%`\nMŶ_G/#UnʢǍBY a(}s>~ĞN\? @fW( avEaBX4WY ^Z&u|@. ύ:R/,rMO dW(Ŋ g E3ᰉ=ɕUte9'>v8lP7,}n#baQ:ova񌰠8{V`#;+cʥ‡@]*޿Xaq1n"P+,O[~o8r;,\}S'DgB {#܏>+,_>vM_CfW( aQ/, _oa.,,v(;:29Czajq}Lܯ~u=3#n>h7(RYyvmmqXD_)q|c&腨+rS{_=.?RtXl7n P24 ablr\(xrJqݡ6}9-]l\L[h)+Ob$^|Z+xTek~{Kq;+z79G/l\~w셱-{pEXP7,^ +hmo\NX4Z=yX[^Eav:,^  a!,@X~v IDAT < EaXťXVPh]eX°X$,a!,@X a¢EX a aBX , , aBXx\bVXX\X a!,w7;nǁn#9$FxXcQțB^mޣ3CR"vۢQ~Ċ!Ya!,@X BX , aBX a!,@X a?pHY ]͛߾>,S}XBX,~" e_޾͛Ke,RZ⯓ a!, aBX ,a!,@X İxۗ?*L^X,E(U_BW",HS0u a}l _BX|>~ׄYo߄BX|+p<]Xgq|',݇䓰Xw>}t L߽a|&b!,;Eq,,dX ğXnh%,b5I `Y< X x9*VŰX XBX ܟx0yaSW"/2a!,@X a!,@X a!,@X @X a!,u;m]<ߜl:(2-ϭ.\8tmR)÷_~BXT}(,;֓wEi]6ipȲUV)KF:ZUzseMѧ gGӋ2|vUԤeO@X[v8K/{gMCu~~OS'lBAT1,#fGX_cގi(,ەc^x}XSنhR m[MU5OqIcbXF̎>;aQY7Gvm:宪O@Xۉ3nŸ"0oԿËq!qy#d!~pRsU._^}uq¨u\#9 BX:1xʊ8?0SPu37d:L~bScbb1;K+>N@XD>]=۱_'6kM2!_Ț _Oλb1C̄li ,mWea/*b a&>< ;&ʺ1&4=.k?Ia!,n)ާ˘VPO}30a&پK+a14buyy_bM@XZW͆{뇮_u,OWp~bťPԘ}zWXuW=a!,nQyWUȀU}!M *BMxPG8E_U}o@X[E{qSx;PVxg*.}d}s,#؍Xo'u~BXR[?dٱ4g6߇Ŷ.~>ڇ"թϱG̏>;oLzw>Y9W,z|wavLBa4,iynPyݧǖÕQۛcZOq(6}1|0يEfͷw ,M&9u6sc DCSzbqgͫY a1\OW,yBXa7醅6eႣ23!./!bYcq1=im˰Xw\ԻM .6ʲVg. Ϯ]/}m+yُ2Ķma!,  aBXa!,@X BX , aBX a!,'{ĝpO :7V;zڙ{JON(@1DӀ1Qfwn%!svz=f , aBXa!,@X BX , aBX a!,@X aBX ,jXLX a!,a!,@X a!,@X a!,@X @X a!,a!,@X a!,@X a!,@X @X a!,a!,@X a!,}5Q?wo^da!,θ^#^~/?>`B|ܰ؍?;,/Tg~#n!BXM杣㯛ͽXXL4G^_8#⺿8@X3v懃_,,~6BWhlډ/2]>[aqE黕_Ea!,Φ$,6SJ2ZMJ"GwQYX @X a{գ^D-c+jk\1_;͍lGNݽV7{/m=u&ت^y;TW+_ -ln_sjzY]]w6typ8Xz֛,,W1j7զ_^+W;wyXRWUWv[L s߮T6:SѺ_|iVKRm {76ڝVqIXfMԶfyakq&"jO"Go;)Ǜ06|P;)bʅ|bA= kMlt/"\!rc5,_4>HX\+^6GrsXY"ejZLՕ9bXXL4{"9 Wɮ^tBX.ϲJ4 ~ɖsz15ՍhX x1}|w</E2nqv䫨R|>ai>n"@`^X|_|.a0bİ8nd_?،ay2oF^ɼN s߉tYɮO\hN6^*}RL˱ZN/E2{)3P|q|<_D0,XٟX=adQʏi#K~hX,t˱xSh}3u<,~nU`Xʏa1W)^̕fמyX2wӱt2IF얲w{9tԑX#jGb_Δ#skjbYO(Dʪ.[VLH pIB@R'$E։K=ݝyVM=bb6:/bӤAz/J^ubQV,[j]mK~!zPMKxXFfcWw2U,BUξxS;GfJ&_ZJn|4ߚ)K-'D$,ؼj|ڠTʭz&l9W7Xe34JsWBo!X uQo?}묿nHem6W5´V,r+:8A,R=ZoT 7o.^5صGuAkX;mAzsSET]5l;ʫt @,.d^?JQapy#'BsEΔzd#s?!ʬ|ްS=:#smaOyJTu݄ӯf[1𼮏iy]I+Y95l6R߸-rQsb!Z‰߱W|qQݜOvi- xщmrc׳MBlkS%=/׊܃³ ;)پ,2>Ȍ7<X (^uٻq9Ubu@{R͛s]?_V2;}nCI!нŎLbXtXDZ^N=82r +Rn^轴Y3w꽼)0e˹*ssώE_V>")ߚ-W;X\(epLf5z3r{y;3gXV& dzzg /ۇAYH ~vD)x*K<X X9XQ,l;=qz6>"n\J Ky`KKY1(A@,DaT -=IW2/wMbSM¤b1p ꌻ8L2";ъM!AyD{tT v˯wu\rHӱ2 RWOINՄ\1)Rs'Vu+阙J4`x{s \AZ3/W}HO@,.H|XEZ,^Vcgo#1u7gVKyЗsX|e~8 `zz&Jd&c,& 8HBF&egÜûw|?72̬!^X#TWǣB[6X,6sy]g Koo2ײŸ' X,^P0e׳%=IƹDW=s7'&mq5G?ڹ=xBWf2P__zٯu2ڐ rVEf;qTIn++ Gc2ԩ Ɓ]/$XF] =p9:rdE$Uc17eVmiڙU8X`AT`\EWQRU-.Xo$ ;f'& [O kf0͚h`M:]yv.QdK&fN s",cXw 0{- AL 7ҢȢJpX5zn}3A`5z?l5 X,` U\6-,X$C#d/D Bc/% ՛@'to ]VTڮ"f}vmHl) m9 [<{acDk<{w^<:Bًt܊7r3,*^H+uT;\H }7i)n6ta U7J]݈D'EU ::61b l{0Xo?J׽* ; /֮&Xؑ& 6XL U521O`H/Qzqds,,EvlNj&-.X )w2JPe~`;&4y k'a|W^O 3iN|;)loEl>Ģ+gߜO,ro#WnJ=7tL8~|o`q[~,J6{dA͕$d, ۇ'ߺKT۫JrVl IDATAF_7ψ(nMx4tI-WS×㘡e5WeF{>'E1^|j'}6{ߝd2X4kw֮$ ".X] @ X`%}pF=YJㆊ|<PH\*q[i\wa.&Wr$a fg#Œܘ|V'w8g#W׻hrps1<,–[j(X+f3Ѓ`q{5ny;EgbzmU>B#z@-}O_4LWힽX\K4F}lfkAp"U$O Jn$j$~ڱE3k8T86\G}_f{߃cx*X;C.X,A;eo~:NqG~/#^wj[vTG7m`j@ X`1e*M; g鞚tc;fԵܹwZw;`<0$Uu]|`yP[>h|}jSAo7:nи_ ==NY3+3(ݾ,x}7+cx2Xϗc|Ue8?`-e u2pd[sAVF֑  Kv_\umޛRsc6"wlǶîo ].k>^grٛ.p6o[um=S6j3 X,`,`,`A `A `A X @ X @ X, X, X,`,``A/{EpF]?bQvuo=@# ݂-6-0q4|S7͌5N~a!,@X a!,@X @X a!,a!,@X aI&, CP(aBXBX , a aBX , , aBX , aBXBX , a aBX , , aBX , aBXBX , a aBX ,3'ۏ BXMLڬucb}d|%b<كi @X V3M[+@XA GjD}WX a!,H툕ua ,HG*vk..v^\U֪+3յɹr݉ _rUgfXyCI~A++#'n/֏r9]©X ]&en9xkc7,icW+o&^7W"{T"No-Nnbz&-޵"ZeXەͬaYi׳Bh:پjev'ݷVE6bֈE-qܰz;k ϋ{SEyb-˞!W:KZyD{4$^E>u5]YPy̖XJ%9qj~z4Oaa" "Ŋ4dz?6L>Q|툉ڏhaz_X$s\D_#^EdBX aM"8.e?.D$ɧbHăE^~Wx]QZܓ(J[ ~w3Ʉ4j"@,],/j%ыNEP,Ώn*bҽB M!}N nd'_nrjK03AKՉA@,],I7%,S X XuqWi?'cb1'Ylș.lVv$JȖ-xHki(A&o ԙIө@,H,nE\kA#l"]izT9xҽtIY&HݦnY9~wѰXS;i#NNBJ6KҮ e٘]!zX6QNY=oMi[e"X4faՁ3eǧ5m7UH VD,B[ 7ǟSMۑX 2v?@,  c$a}[-x\rfbѫM 5MmnkH" 6~[u[.P>/rg78o,pȕv2cW]c-kw: iT9U?ka3*J` AAM@* bj|ME?<|bQ*I5uv#sfeI %uaT,۝DQt%bO6f٭M)@_JIB(|υ= ?' hk 3U9ĕZ׹EQ ^ǛFbt0J^!O´U:qno^E1)!T5:^䉼HBH54orR?XM)?RO~}IqVE/9Jzxd`["?*I߰i'L]˴Ŷq~ƻ}AN`* bz"!Ģ[. " F$o萣zR,6ycHؒ8z5s7h;9ڗ}s]Up Pvp,X@n*OhM3|JR2]_ G&`0b1bK8 sbL^Mۄ| Tb]qHeXuyo?;eb;JLId槔V5"I6WEpJWKM@=yUD;b6$VWvkAE2b1b^쎉c|1Cik~R_ >J3aE:)4Ն5EC)UӈbX3"1yk ҰXDRl/ ]XH2 WgGb&mAE* b⾿p62g폩@{iϑȔ|3uiIiM^,kk;}Ū`^rQsK-cWbazڶԀUqiKY&:!@T hX '_-:Vk<78cdž Hv^K)쥝|%iw(:prbQ jgϒ{SOҩhvt|bPLtz.nԃpիrn4am j+OKKAplKQRa-Xӫ; r}Yjqrqf4ɧӻoFawa{Z=JOKcG[}3I~rzF);boz×KMZ=?b=Z확ya!,qa ,G7?zXzBX 'a$,X{3b]X a1aBX ,o ju:ZVяҗ/_*mW3xY\_ܨ'#KG6NwFe1W> [{U#hzNveAUڅ5͝T|+#rhU>~x5*;gTk||4 2,,dKZtb/{]=JSchEyكʍ+b?jMz8wWBXWbEf+:.1%Ds'aU]YDK8 4.j݆=I# j0:xoUyn_2rXn c99B+ܪ>ư0B;}}{m$ǁܶc}9uvja;"Ў0N=,Btra9Q-+^Xv%XHݷ^6 !r|@aAX=Ǹ-5,6ԕڅx?]zX 6՟M˧`c Qi`0O".D-, d"7`m;̾8j lLr6 , ¢m<)D!i }7O*S!ic L7E0|%,`𻅅3`fY{m;9WP8gnK_S bAWi [{gaQw5-SWʍ9Pu U*{aQqh {uƵ'{maP$SXΘn@XxPX ?2D͟{ۻO~zt T}#] 絞g:Eؙ}vYM|NaAX!aQnw sE۪a1&m;!ei\HOH^;>}Aݢ)Va^~),6hcXLկ/,b"߅p!Moy}]Ʌ΢io , "5,W"v,N=u'微aMaq&+Q"R8;!<]:-<{QتsF ,[XX^:Ѕ[ˉ5j}aQ4ߔr%6}e1i>LԞ85K2~w3rVL(2RںeS),OPnKv߄w\u v-VXxu*,=aaeM]Mտo/pw{XFZ8ZfwV , <(,XBNV?C:frg,w9Uf{XSjYq{,6OuzzPsi4eNa;Tp/DevʪZ8c 7<-drrgozafzѫ䊧yyljr~81ߖWRZ ,h^ @XzvPgXFBa_bloS<{ ,K>:7}@XERb=@XaAXa‚  , ,@XaAXaKGW&nxV|֏7wsX ,u)ښa˄q- =9#S֏m}&#{̾ނ}h1w%aAX<ۏj9%E&`Xmyp~-80o7zR~n9i~֡0獞AJ‚xaK g͂SυEY` \+IG= I1VOFJYBذE^*Wz_X&{ޖa`J0ڕa/ XF~яsai O$4vezyRF~V2csD^FvDYc|ƤTcTc;*erM S~i7d ͩIo{)WmqGc枈}ӹ|<9^2'YJʇ۹xH+nȁvw%aAX<ʰP" :,9+,ԫwo['(^HRפ}QuN.,jHH,OԺ*(bcXhi,^ް*^ alCWF˱Č]i<ffs/Srfԛ6^?:^P:Gљ]َ譲Ȓ6{{hJ_Ѵ-;ٕa("zi{TXޝaLjIl& 8$LQTS+֕e1底genn\Q:oڳ GŮ`70zN$ gwIJ/@:b||}_ǃEWG%pk5mREhYyh9SvvĔᩴ.Z$D̙nؿfӖ򵁸e$"3;׷-w qdL%`MGy$ [ŷgsrW侰', b @6 T Szm[c6a\K6ɝ '* 5|՝bkݸcCgebCkMY7ۥ1cqxc?9YJ(JYTnǺRߖІlzbt~TuFUvFbށPޅ= VXv~m;>y l( _vR"lX4d&7`.n.L]AҍRU{,`~73tu)"E .N2S"= Ծz!g6G$.yEE!dsl;B)jyK\UYyIIW>xG /\Bl~_Eq*ԙi+Ǵot$}uZgbKrwrca2X/8P,,+XdI+.XT[!N:_m7D>)u(u_ 2ԉcԒRd$l=yr]n0j`^"]o,xt))`WJ]GI`1qȇ`A`Xnh l\>cXO]vHsEb3TO[iDL~*o;V6"83K騹صgq Nm+"lKKz-XL\DH`A`'@v&SRcmƫ_~ki{niPVEEHd?؊i$f`f `ʙΞI_ػo-vٶ" Y P,,{ t`v:_K5IeSms2=Hu]*q/`S5ݷmZf WiCx$~`'+ym[WgHl瞝7镴Z;ߊB,.r'ƛз ʃE',&., X,=XW-=1ȗwFnSǏ|6J}4w0FЛ>z/"`AsYl66; Sq % X, o U7(ĻfGMPTڌaAwjj,K޽Qbno;k[~g85C   @ X @ X X, X,`,`, `A `A@ X @ X 5 X, X,`,`, `A ٻۦ<5vq? GP X##JǯDW s]oɝCE~sr@X BX , aBX aq aWW a aBX , , aBX , aBXBX , a aBX , , aBX , aBXBX , a aBX , , aBX|~5' r18V3=C}cS]a!,ᅅ/KYEL9:GV-b¢q1\]X aqČGb 3C⮰{qл ,RFcc%, BX9"Ⓧ+ovFίMa7rsl}iáʳdg~yv{FVpH{6yJ1017w>ԹJct[ IHzˊL'2",E=w֞s_O5V֘!ܝJd|'&@XސhoW#6?z;ayi;k䙥*RI~=y=uHȣF+Eg2ueWX\O2e}X@Xpl*;oD+֊+&7%ەOjIN$!c:rSgm= zEb2,uq;d/zz aDd'<y%4(nw@X,F$ j ˱ڗnD(??وvjJ>R{ip+b!7Zo5BXrP+ѺLFo#~v̮kIM{aq8q@X%[ Fę|iqu'+]¢?jQ G۝0`ܕn~V ,Ex\h#37U϶PԢS-_i!4`X썿@X0ݯ"UaqjTb)>.,VZa̛K@X5~^X%paq6?kX܋x',m¢7 6@0|]  RDqfAalyeX\-_7|EX aћ#~y谲1:txHOٮEkX4P}PμrpXjvra ,Eݏvp3Oz[Xfoo3狛atz:qͮT~餃̕{[zz\ߡ&~/8a!,@X a!,@X @X a!,a!,@X (1}^lN;˯֙ts{_ߜ_n5BX􄟪?mDuW:n&z:KN_{ K;ę.#qxEEEoUܴv- 60oM6n7;̙syn2Ӟi83gJAbAb1ba-;=ͨ ?('Ovn; K}:a?i*8o^)szz0-=ykooEUAAbAb1bQ~@᝞sbq `(rh{dp?S]u '597/9 }hX,rؤ(AA$$qBQ|?''yzS-%srC6.qȆG+ufabam[K,GO  H,H,bqo6b{RjB|OM DV|QĢ  Ăb>Ģ2:* d})߉v;~*`}c8boǥA[*gpa͈ETȄαwtR^8~q+c?W1/-` ˱m4Gs.>Uߠ):VJoR*n;XszoA'땲/F ZE9^(q7>W8Ib'}AAbAb1?bc%HU&x4mTd `cQtrXXؑ*/rbh)g)@}uy:f|A:;0}hsh9B3EWմšumׅ'YAuka.Cړ,|M%~O;z\.6_{-hz,36h픓Hn)+qv6`vq[]oAbY=y_~/iF\@1h$b%yAAbAb1Gb!Z) 5cx*g.X"q ?b2F3Wb Q@D2l|z9% G~C&1z*Xe[LؑYI1SBX/Km`]KEPca"ReŢCfц3 %URcO#7>ixԜ  Ă !^Se:[LVKXԿrՙB2barӪT-ݣWtfZ@ Y P#2q X =P6њdK}-H.zA,NUܮ7=kRn9AA_(0~C,DtO`R*uƖgN{vvL,6 IDATT2mo t2KʵY p" /1vl"la )6*hA@p7BESBXVr#o? xah0b! /^n +XXc5AAAbAb1WbQƔ-H2uId$j!RQVKX82Nn|av _ L:8N,\ EPuZQ[ QJ,,]-X``SS"\eї噀u+b$B_E9][EAAbAb1?bXT"zTSbĢoM`l:98 WŢdڮM֍Ȼ۹gbaWtzdɑ q͓`m)6aSb13ca.^[-M_D?GX >o   E,҇=D,2 84qҠ >̶^iofX~, l2Sp'ă27Ue5C,-68Sc֍cNo bӛOU, xL~|Y5'kM /Ċo   yt&9vesA'mel!H"WVBm4m}^/bqڤi #C"*E>{,Yz5Pyڍֆ̂dmxA,*~&rx4U@Ob`fuOz*-7IAż= lcc! Z+ƮyHkށɊhAsǬU$bQ`i.'!XeӣJ߽BlG~Y Bd[B33bs[mT9( .$cNo bAG|H8$`/P{N=pEXegW ص0UAAXX̣Xjscgn@ n@(mVZ|CЋ\p܏=0o*4]KO1p9qa&ѕ<\zrpU+0i(qP^'t$;ĊmWUJ\q^8cPcNoKbvBuXo$`[޿섳bzxCDM\9Ԝ  Ăb>bQnUeξ/gՅ`-AMAΔ c.\ػצ&50*"3 pD@FE)ک99{MP9--g@dv_7Vt'g KSd +Hn>Qnnx4yNm8e~#ȌHowMߟ7prCWva{ӳ^ƏJ%QިQX"~6zGt/Yhx=xٙ^s:|?vPo-&ݖ E#kRamRGr_jϟ4Owlj^.[l1Ԛ..u7ǟ;Qm@}돍*<>R[W2_OmdCroeG鿆sO=\_Mùw]/nwd2~ePǿMkӑڈk3ĸ65vEn ,R6Q B;|xJ0v @X .x$H<;xpNXlW8,wN'˕7;^b6Cџ:rW=,Ιl-N@X yԼY>cAP[t3z?`TX|Z8`.~78aa!,8',F'fOF´8`Y, { a_s*,r?8_a!,8/,JC A"n!}]a ,3,rrV a!,x[o\5:;dv\Ni.Ӱ/r~Z.\J( lW"iqs}*ӻGk ychlquЙ\Y/ڮ-xgildt|̫ғZXf{塆a67_}6>b%̃d5ν<^W`) a.nUf3Y`3Zn2BmOF&y&OV mnX,7/F$>=ԞW#` aEwxݟtEx}~2BSӝ"aXLE>|gs ,>><:z&Y0Q$&Esa~KI((LW}Lbajx<Fpz8#>{aX=9g-Hi/޽>%=Si&f|kjqST )TL 3j {.,לyFX~݋@X5,Ockk{A/U1xU}),j;]c۰/byLog#> E}ғv SENnkˬ~>:).<}pk1$_cnj5ֹ{*eR ,hX̎&\.zk_# )j:}s *eމ_z[)xB,5m/v6]Xέ# fW<\}!gݤWbizXY\Y]I˓]¢$eX?~ȹL{\oX<2s7EӦ ֹy❔a>%$Ğ՚Y.ퟤ<,nŹ NkO֔aQiM&,Z }aWjR;n< {)˚a|*T B|rRoΠcXQ¢ySۄE @Xŕ?٪w fo[nk){E),6 kX#q-!ʍB̠cX \l=77K-s#,aAXtÝ]!,iw+]<pUwU-ER t k`5,J9촩e5 ,PXI`--U2nhaa-֯Ky%,ev#O\ z":U9r;t {rOװ>bæVJֹ , )_GoRWۇU)gzQ)W7^U{U)?|+3gډ_M]& HԄXJ\ Ch4*{tlGZjfâha<>( +=N nMֹ-s#,aAX.f̲U[\W1<-лITZ}X.ןessq]?y>,DlܼɅjw&-ҧN܈bfkmf%,D,֫^چx~=|fSNw , D_/Ӽ0KMjFfRʞE{C`O,oM+\g*Ssn;͠d*_SVM}k"Pm:7‚@XaAXa‚  , ,@XaAXa ,‚  , TȤ_&!O]y`_oy76Y ,{?62XR?uW*3jTTo ,=,{Gޭߌ ~PT{ ;xbk݄'o wE_TΩ_8aAXXՒh[~32v(+lX͒RYHd^?*gI3`r~|a خ:3 /,¢?ڰm7v'Z*WFj^q>򃏓*Qp‚Ořڍm55h͎ѳ'#GJkYP o‚'#NX|[xo?S\$3hi.9$ŘM"5}e4( 1E"8;۫Hhҩ_>谘&2.DאBDٯt +/ 9TjZ{ATT8E. BMXhsvX'cJr.>P!S k Y3rP􆅱ag֍RțuXBQ!q>/*L=Dc"ÆJ՛ s%6|aq_a Ga\af| _XQKd-E9INX(uu+DU~6U3e_,Xy6ްX̽GԂڈY+ {Jv!!} v,x'L{}ӤZ0[XRem AEos{FAm[?ys|!/ԆEeWWyatPl^ +"Ƅ !gcH/,~\*_-m-* ejnraDkw{iKUN#gu|6siG;Sq^c,M"+) ="oԄȠolReZfu3v(_7aAX\kXOK"I7[*{0hv-VL"QW0ݲi`%m{ĥEX)we ]%E|;u}wIXΛ*=mf=\NҞ4x*Sd>&EXw{"AVHqay(I"//+l‚tEH*Ki@_ V[P/"e[NV͙HPJXĥn%R{[ ڝpc0ܾϥ7طV|aqa1_b!HwTGaQH?H-ڠ?-w#ox)q)~׃5hwZ6RaIh 6aAX\wXI)hw`R5b>:3IG7xJO|3,&ug3 faLsȢؓ$1%k4J`5f ;c9 ]C]_\UƏvJ!|{pFA =ćsæ a,o_j˴wwU4 |˖AFΕUř=*Wmsv=f aAX\{X[yt`dz9pr7|-Ʈ!*SRiV.ځˎ¬]T a TAfƼaR[Jpg/v홍lѝk0tᑲ nORۺ&d S=JzXɴS@XjYҥ;PKۙR =7p"Oшm5)+?e7arF2ܟK"ry?^o4ݧ4XwX>K$mO\$}}nEɚ1R۫S=g$<1@PيHle5aqag3U|fW0& H7 "|[ﶯ[Z*Q͊]|λA-{B݉}LaaֵFTr-fedi3]1뻇d,Bޏhx>*3ڮK#3@X{'(/#(ݳEjmc{c37zщ;e'oFuh_lDsf}LّI^\f oqq}"l‚A"QY?U| qaAX@a}Pv[h=a8k^f17) Ss#|a@XaAX , ,‚ aAXa@X@XaAXaa@XaAXaAXa@XaAXaAXa@X@XaAXaa@XaAXaAXa@XaAXtXh/GHu1/;pZ;okZּ5gSo'kE ZW_&V7zMM;i{ֻ͔Pw/t~TzruºڱֿŸ6p{ d=_9ƍOg?OS|YشXbpUGp+Ԉt̬>֙XZŒu-o"nendmhm] Z9ۥ\kh~L&O~[pl۫\}k-xսf.Svic>/]ECTI{n^XYKsc/~@^d=nDGÎ M?!,S?wiaM$GKv~ǫiZ]6+(,+$K_N}"_zB %z7`igim:A9?%Tozu ٟn0ӲhN IDAT< oƒ^? VOzSg~_4:>}PֿG}_5Gf޶Ǻu1v }/f.6[ s\iV$YWl5 ,jm^dPqBaD=>i~ep],ŬNjTn?^+fҤ g9ĝeQ:{˷-Zq:K]/_nzs_6+' 1 MrsQ6а~pѸ\w`s0t\]7=1Ldϻ]CXBXY$W }uHbJ4t +}kuįA}ʖ4un+"iT̏2nw?o-ge?> sX 2@,0Fp.W ,TV>hϙN`FŜZ7{⾘[ߏ?#,fBۆO`yL[UXk>}, YG46q4aY]WPOj5NLfvm.{ך{\rC8B!31/Iؘ\a! WXZPTؐz2X̽yT'ѣ\nw_qV*P7p;1˚V˫^'BҵWUYb>fsM<ѣKeCh/nKz3a6+EUB~I"/l]T`moo[g8H9~P&4+גa!nWh[=]J~?[ՌvnW{,bd꽪31/8ϒU!I.Bp裏tz *MїPP `1RNMyWˬ*pa!H$fmB9#^[0_E Hz>`|_R`c:惲UE8 ,avӴmbH!3iZhd`1B*-n#iT4+n ,7k V,/k~`1 }_-uZ q38͚UDX"t ؋ҵ;(tڊz-Mjb,e:<#,arm-`f/IH54n lfa!5k )̸U%^Xz^-d/)ln^[CXÂci1ౄ3`]ɫ8я+^ IcCXYY1bB<KƌtXr*>bSb5"{3NN|h3B&mT̸H(bD7pڌ ֣x45#,fyb V̸|,FǧJtČ {x|fFXBeqY .a,,,FѼLg ,ye[ 0a kb@Xb,&.`,'3.ܑ{8kR7:֥2s}4*;IZn edƅZ`1*3*luhӬ@XL'eX\XxmO'dbvXXl Ɨlba5fŌN 4,+ABJRNW,D3hjFX qZ 0va+k''Iɚ񷻻X7TyjF=Zg;XLgf3bVZ,73.K>BWsR}p[9vW] }?CtU ̳B5? Qa#  ,9! V+aqzMv? !Gg[iDOM{tVb@\B;,Ǥ![= d5{Bgvə%O.| , ża(g(, kbhe0T|2PL߅?E2~vFbJXyp .a1[rgg\ܐ ,[r+wFXmrludxXlч{cC!^!N7Ļ'nK@X<7*7o°( @XdL@/YR. r앙 uuCȍʞQ./9|!}WC!- ,f0+S9i΀Mˑ+M # 11&$NǢHoZ{Oo|E倽GRV"G⽟ 9`crFXL ` q FN-pF~:%reꜜ?W^ޑ p/Xwmh<۷>IG1t3_gG{%)Sqٍ]fT8s3bFX-uE%aqJr.a?}ٻ$ouHXZ5j20"R0R<<ܻ (EeY`fY-Sߥ3$*,v"ia٠ XՋ[vc܇;h&,n (,::c .{Eyd ZŜ%U+be?+:eݦz{pƢᐙh', ܛȖ5 a$wsjId3 >hҊ )wvJɫ˚Lĕo򦥟-]X4.q{?cPa_?l`K a};,BY[I5@ Â@?E' UԜMO[EGR ƃ?쪙*!,bW&/]{/PPfXwR%.Fys'Imx-4a8cھr*#esĒ?hcRN5:V"X V.)=XN]]n{h%*_ *# =h+,QjKk𥜖/bv;k"yx;xXڲ , aXAQh u ‚ ,/1WŒ'aAXwx?~w8sb}}8 , tliYLuo%¢aq() ,eUڵ!➆EdkE?2τE - meaq}X] ܣA‚诬 ,n ⢋ai , ,rTux_rw*&[v&yJyTw23khv>llGo? 8wR'̫ӫa}{?!, ,m‚jX$;){{EƉG Wf$<\Iҍ;8I8MoևE wf縆JQqDz`4bqY4~ľ8f_ݰ~][KXbg¢KQAXt$Gga,w Yi/7+7%P{ܰ7PNǃXtI7?*a o4>!, ,nş \ue™iLQXSCҺ=n+Z|<Ԅ=| &,M+c3 fnptdz@w GF+Q ,XX\;mEVǎ"HRi*[Ҕ=IJ9IQ oʸڰ-‚ ,;a1Y:s&I솰Wii>,֤eXjz>!, , NťdwZg)Xv|41RD碇ń>,6V/"|Y3‚ ,vXdTy@B[ H{?? ŒsE%,+  ‚蓰8\}5Ƌ QE:;vX|Sغ ʪ , , 's]XpPm[Ju0Yc6JN*+i2î9ٱ˾ , , ¢?yB7fwb[7u٨995S;yaAZp:9,s7aQ7O.!, , ⎇.ŜX*`!'3QVq,0b 플ׇ͛\g}Rżv ,CwY;_ñy{}ɇPvq~iՙ9m?baY;., Q fnK -O%aAXg'uåWW<}u  ‚ 7ý{7:aAXE@Zݻ , ‚ ,9{7:aAXBb# va‚ , YX\ uVx{ɾ3Ջ&6?zpubc?B0aAXXܹk8kж칬m#`^uxپuIqܝDnOmnYrZJu] , b's栽h)d7'칬}'}-;'%MϜN2}.baa` ҞGX\Y֞{33[֞ҧ>aQd*5[ۺ{v^EU} , [/ ڲ5'Std.}HL"ҠwXBUNoke_;g{cPVۻ*dj#J)E [j٦g0(p}>s`Nw3 , װw2Ņ\))OUO䔾Тl{r2HswY @X0aq,аE3eNJړ>P@ Xm0, YRڃϲ!FakXӗaUR }13J;ȈdW|ĂasX/O c:ˏy)z/v:]2\ Qv5 , `l҇'2c#kIsġW[Lwո\{BdY?P , `<âWjP;wildRSyFRޝ/È|t#_%Q",aAX",*5*eV5Dr5YIUjG;]ݧ?S@X0aQrh줍c#;<*Dqv"nU"kw#宽ؚR , `"ۘܳUna.d>{`θBgi]aAX}"B%%ri/%i3 ;ef ‚&(,ii˒? 6S,EبaQv dgخ‚ , h h A1,fH䯽‚ ,q һ-Y  zb0,.F dY$h89a ‚&-,CŇ!aqdsBO>t(qd9+#* , `"n퉜YVJZV<,,ݱ "odc ‚nc-/ C;8`vȡk".ŲT , bg%}w]Խ[_q+#%jKrĢjυŽ=l&a1QRGK[yW[S2ֆ ?rw_p0tcwFcٸհ(Ȋ{RKr8/^\4 OL?WR e3@XDy{O8,o#qaC]9sXYqѩ^]3]qw݌MIE˶_wTSoa1iPV~v MvƗjX m?Y*026{ {1 ‚(3w+ eQwE{Θ/|ˎc ~|+?O,]SՕ_howg+Q9{F+,~cXd ‚ ,%V~$<,΂joXDJVX cX뛒v!a1: +aaAXc] [-县vvddqф ?,o^y7pqդէǔZN,?Saң+aqQ}â>j7[ ,1[aHX?F\έag?,?QUjsIv&}Tw=mvG^ݙNJ\dZklՍ@Xſ(,ևŅ>2<'VRT˰OGEaMtƮYLCX$ ق8pwb', , Cu_X,ywN{b9wTKw=m\ r!i`-k*e\1!\VrIɥjsf MM |9cEW3 ==UƒKbi5¢n7&,@X aJ֏:¢ߠ޹7T a1QqGX Sw;o7Wkl Pnt<B\Pֈ͋g"~s$S+7O/׍hSa!,@X aVHOUylE/K̅]1G7wpXkӶ㢌!bS|)~/sa[g7N;W5|xl<#ⷘnΎwU  rZוhv.^ Hsv)~<l=n#jݵ",/m]mM BX*zXk/=k;`qL1xBQ{%ama=Zx;7"[g IDATa!,1GBma+/ av-?ϟL7]؏ϣ(/Ea7z|ąVGxOMgta!,3U)__ƶr?47ϾtwSC#չ)aBX  ,a a!, a!,@X ,@X<@X a ,@X aBX , a!,@X a!,@XBX a!, BXa!, @X a ,aBX  ,a a!, ,@X a ,a!,BX a!,@X ,@X BXa!, BX ,@X a ,@X aBXa!,a/!,@XBX  ,aBX a a!,@X a!,@XBX  ,aBX  ,a a!, ,@X a ,a!,BX a!,@X ,@X BXa!, BXtWV} BX9Tk$TB:zCcu: @X a1aWT @X a1aѱmQ:7R&{y?O켉# ֖v6-?[GS ,ʰx73I6|Ɣp,Fkqp~*]_rwc"yGT a!,:,~L/p?_'A)r"L *ݾ}8.LEX¢b$ű$yZ.bt;dY OEX¢ânC_[Iz^t[a%^:aBXntX~=nE\rK",@X aa}lv}v#,߁*7ڹ8aBXn{8t3ߟ.] ~;Œ0aBXn[f}(?Tz$9-,Bx윊a!,EYnQ `0MtovͳŋaQ Mg.LEX¢¢qn_\GI2u'TCT a!,:,S$E.7^ k3_Ω BXtwX[يx;G4iju8{۹ BXtg[˧n: BXa!, @X a ,@X a ,a!, BX=,_z7+,>cCV78BX ,/aٿ7~_;۞%Tq.H>P1$q -<8A6T%(_cCRi޵7y1?wM^c u `ꁻ۫t8FP( `1_~7 v@xwu&qȫZKX<͞9G@!vv,P( `?Emtlo4L&`1ܴ'3|hkl/+"" N޷%p]A@P(   / FM,eTG`!}3`Q-TC XP( w_CXPMd8T} w#ߵB,,,PҠ6<ӛY8@3,P( Ew(O sYkTEѡZTW3 +C4O-:y) L>N૟5V$2 S߭g(HuħX|sq㼢绚(,ʁ-oFI:> }_Q%j\2}zRm2sǩ˘6;s=<Զ˻!?s=sJd2[8}ZZ:=P䷳MPuz[#=!.O.VV"'NB4n/u B@@@,x(<_u"?$Xp}(aߖ^#_|(j߂7MF,R>G$ vI'is%f8mU+G{E:W./BovÛs?kѱf5t'+]v]`hW3v>}-y!Vи1/P(     $2%Z|JBmRa0JP}]]8ny$>e1 gT^L1"TR颿Jz$Ggk1ic?j ,;&#Xd <]RIoZ`I`xK~dX\ĠNj-)!PuhOҒU^@x+.%QT? >-WWzhԯ rwE6yykw"0H.[ G~`B,,,P( ,X{\jOQG:fxEMG,XA:+ȽX]Fݼ`-:}Nj ЙS\rWT /Y23:VXt1,jWc,e ~9} =% ToMH U:ן$9Q5BL^_jX0G`)me,S`>,ɸC I?P( `!rQVi>7 Α`k@Wk#2 &hfx7pok0XӢwJ~ 2oa A& 3$UvK"Vx󡘺a {g0¯ᓊB`A9l+`928VW Vȸ}P(    " 3,TA,H0 ~qV?kOWUMg"`34Ϝˠ+`f^ved%?K@QF%Ea(,s|MxyFCP(    jtCU- ua5._8Q;Y)d,:Z[K߃@e3:`"Bi|]kQWm 0wX9@dX[e%k[E8DEXf,ADl:i]E\3/( p = X] Vq( ```B!X bQ̄٧;kX^BEͫ Ӻߖ 6{_XXn2ofG:۷PgMvE0ĦRr$X CSN )5Ft Tk`Q,9%Ь,[0`\j Vq( ```B!X?ž(>J`%\OFX,uUGp!"0(xfPl&b͎BsJz eϐGxmx=o7ŖE'.viag,k5+9LA`Q Ed`\`EBP(E$X]Ġ* <]"7⌥Пzv&?zs3X<7Bӻ񶪦`QӂLMDXܾW#7 (+<~EKlS=uRk~`1 ` }gQ( B e?toot7(ieȳ`㦡v8unTKck*x0E?uYݱ9Xw%< RZ` 5NjFM[%g߆&0B,,,P(XP[lbӺZƟω1x̊(W`qwn (Pm8͈vJ>_I1^P5 ,tYԼ:93oRnʉFsD>4H9,5cH`_/,&I wK2,FP(E4X$6ޝ6Eq'3EUT *ޒ rrx1"X,%>fYntpz&6wu&588ZoL*>~tjNVv{u ,aW ^J [g(x귻BX ,abo%56gG' a!,|r=t4ę]yjBX la1dMv"~Y}Jn^?/.=ow.绫ycwg6jBX BXa!, @X a ,@X a ,a!, BXa!, BX ,@X a ,@X aBXa!, BXa!, @X agBX @X a ,@X a ,a!, BXa!, BX ,@X a ,@X aBXa!, BXa!, @X a ,@X a ,a!, BXa!, BX ,@X a ,@X a!, a!,@X.oX8!,@XBX  ,aBX a a!,@X a!,@XBX  ,aBX  ,a a!, ,@X a ,a!,BX a!,@X ,@X BXa!, BX aBX  ,aBXϵBFKPxL)꼁ZMXFWŃB˥xz[BWՇowOo;zq=2 op"z{]c4! 0||1秳WOfF^K{;XoO,{Ϲ ,¢OOJuĵlXwNa!,e?9ßzaq0xY~r:aoI>_Oclm%l9 kr6 a!,.0\KM|u¢vҩ,l|FL4; !,@X a^܋aLhqXtPAX*ţjXt|h.5BxYaqln% (Ioe]Na!,ŕ wMM$QMe1TW5@*ᑠP&"$<$J,-vL2O7xNt5{23j]}E*R*zpbyXb*&@, 몥RbJy N2bX 7G,ַ G]V,BMk O/ mpi[, CRoy뿙@,$ooyi,8!fa}iI˄⟕W?LbX ş#kfZ=Ts/ѽ@d->ӣg @,*5轖'Pl`sb胹J8n舅/@,+yR*66u~X=ohEED3bX 7W,wR-9w19;S,םobR}@, ƋY%iP;BVdiv@]@,%W0?RTˆbX 2 ^ CibX bX  bX bX bX bXbX bX E' "s~6qr@,~x~5{ɉ#y\{Ft'bX Ũ[ͳs>: èfg  ⚬r?Tbzz6/ͨfg  7!5i+9nXbX X N1~}1sN\| /,>b1>k/Fb~x񑷬~n,*3/MQj .SQs &^ xB O.0/bX X\n|%YI0'3cѩTks8׿Zݷݰrb>;EƆb~X\2U=Fy)Ze}rE돑 f&J\Glnߖu31u}愽1ݲgBGϘ?bX X\]KU]V6hP(OgYm٪S'RmbB,łaFU5KESy]Wr֍b~h(i )g*:ҹTf=Mf#IlF~r\i }FK[Pp3  bbYd9#PinVڄy)6oo;5O.)*))ube5zIJ{J-b~SJ=u+"$22ZV{$\aYdJ,%Z|R"m#x]_frf IDAT@,XX<Η>]#V5.Jx{IQ[6j{/p~~3Ѭӗ=3!RG\<GlF RRj[&{[,}w btm%;R/RO/".+(oոonkb~3XU֔Jx feP$sl EE MZ EDɞ|?fwˇXFp]f@,Xvwk=9\OD@6_jj"dui{)uV23p$G9,L}0;.K"m/(u(fJM*9C,0X  W}))ݶ^bƒ}sXtZt]K1봕+~bYN2.Owe?w.Z%pF6x⹐XFp]f@,X;#ĢvQPN^ PFJԃE?y97g y rh]Sˮ1{b @, @,+5<#h+LKȺk9OXɘcgS?W")25Shu "g3LEQs^Q~LH:Y!bgwƢX bXbqM*]m~=VgU{)tz/b<:n1Κ>p> FΥ-r8lL"^3C, XƕJ4܁(+RQm~|=i6i}Yo^/ ȇ;>GIG GޮSs1UrRyǬo%nx4t"R FΥR=u{aΘ?3@, 닅H!R_q ͆x:͏0,HZ֥>aSRmDՏRGWż<-Q1.먡إyn<.˻/h\zQ]6b+$gX bp}զTw7M긾S;?tl(gŎ*M (Qb>y TnYYtVբi̤2LlU2OQsȏ#7:$#tg̟bX OXc181ler䌶Nqd"x}Oޣ2r^apw&e욚H|?^=uNZW eU QQP[(@*@H1 !ċM,?{:!3!q1Seb=='=oLp}CCMZVÓ}MS\C^2jc -@,B]0@, @, @, o$ bXbX bX bX bX  bX bX řb᧩^4E,~hfZ,~ڵ_b?2fō<@,z Q,WvÊ -vǟX4^hM@, @, @,@, @, @, @,  @, @, @,|a@, 8'"Nt } bSj~ ENd2umln=?wj.[KE@,Z,J2Byٻbyw)>lĭxbI/+yDg@, bK6#e'zbRx ;ArR}Y>6,d֎bߣ7 bb/KJbq9ءTG\F"/bŒnVK:z#bX m,R 2yԇ`x04Ehb<S ߾??w{rЅPa>9k?=TfL<'x)1~Bęű[]FyKo@, Mbq:NQ zC扉@8vEzb0ImŢҩ & 6f}v[n%gy>lpq|6LVTۖP{?"/nȜ/s3ܪ6loDo@,+.RbLjx֐#; i[r,ۮ]i,;0#:Uem >kј1`A l=Qlݍu%IWNŢ-NFbUS5bߓFoX X\htVvqE|bѯ$<ޛ#W^eYSꏜ )*5G"a&[}V̉a#)1.Qux+V,&xu:UkKOQ"KVbR|5Iv hSP& w9F,""]j]eX KP"vmB~2O>>$%QsޕfNIj@Mj fBɞQgU,Ryk2;QñԬȚq rOce b=EΌd"bX ,il9"-ӁIX$*^2. &+R\>GSC.׋gI(1{XꬊE}[*b1df^"ӽba/Dʚ8bXXDk"VbrY$+GNʜAfeǖɚV(tzgv|b᫳*mŌoawF-(B7f+ bоbbU(-)*"S֚(%XXhnm'Dc-3mB==Cj.X4j"H,f%}Pvcd /Gtt5z pѾXD وO$o2caȸXȊwYnbϕV]j Q,̕jc$Ez9ܻX }ܑ:"bX pi泉X}v" ᯶J{|Wc,jF0X"[ :bRʼɛFD*[Ilo nMIJlIEM'oYbv4XYb̊{bX\Eb O'^yĽ&N=5u_2zbњeqnAba֙'!Gңz͓Nhɏ9[IezInV~{ _qI18ؖ3BSי Ì-[ _Ғ JE2Q<[uNXP&ץE/-S}13~=\K :ae\U)\U_屑_N/ %Rw:BaZFrRQs7+L/Nefqz^Fht}]_[3qCr6&,RY\}lƷta7X&.BaAX{AnZE,QbZ7O8OMCiwJ퉻*TG{* mл]]w uu; ,D%_r9SV{}sAM^41L.ZnGޞ\‚g⨄űpXueeW*+Ri,+x:cYpl1v۟ǐ#,$B¶ۼh63 {s9 ;E Oq '(G+ee^X\pl8,IX%,D^3};auW_  M ɓכ ~XLS#',7 nȇN會g'JCtX7]9G慁HtSߪOkPR_d{ , "o@_W];J2F%A $ !&6pi >YT f]Ro>8)/1- j鍛aQ?H{?rP ,"&oAiӤ^I^aAXy߬u!',b]WNƼ^q)gX\uy%`0+wX̅ ,a@ΰ23,P&,JJev!nY )ň|YѲ8n1,  N7}N9V)u=*,9&a1:P%nX /sbjǃB͚%,^֩GQ3{!#,:*6n^#,٫FԶ NBnsLO5ELWV=F7a ‚ؕDR ;}M) [f-O¢ߙy物찐_sE^mv?g(ٕB+,&ԩQ_͝u2)OXb_W_Weq onͥ5eXz7⸳`x̄@X찈/6,t $ ܯĭiYY 8ӧ{0||cDX*Oaa̚QhudV8,&:&ozZ3Kܘ'8l1@ &TuVܸ6֔>^jjUS̈́ ,pX*,,FEޮ_GM};w3ګ_9wo=j,Zg_7Sn~}=O? 4,.~WXXx`a=aQ.-0zjVcabχAb Ϡ , @XEVzZNaAXb_ɓa g# 7,*5Z^Z*bEE(,Ο3aMFX<)]AX ,mXz wKR\ ,aʊ KEnX\0a7>l퇅  ,aAXaaAXB&YdEq, @X8u::,ae" E a%nX&,N  ,aPdX,Ngmŋ COoG! ,a"bmDzz|h+\ ,a+gl1 bX]&,@X¢а\`TX3~X;䕔:Bq)E!aoXǓ8G aga\oք!ϝ]Raâĝms"cY ,a_@vX|MX E1a8MX|>,",">l9aElۧ7 ať+\ ,a+e2n?W8,fכ=7[LRaBB߰pܹjC 8BE8ń @X>,# mc3,̸  ,v%`X>,fo ,aݎ \X 3{YlP˹@X"d\Ȳ0bV`(a r[ *0jɽf39'2CpWȈP3f)#~)XLFb1-¬zcB X+R(#b1dX}W">d߄XP X\N,f /ŵB q% >@,h)Sj?>u;Xs}¬m>@,h-4K箻ε yƉR,Qz=c @,cIbTǫE: 5,Pdf^(3_)p IDATXbF,N(7 ebZ^p$Ե% & XRk'd[8o& X4:^v٬X\ %u% 7 \,U{痗޽{K_o_WV޾}pwvON6 !ggg ݜT?>?/<ųtFWφףAamO߷{{{+_}. ߽[[_ZZ_KvBe$TunwA,JI'c{L}{,ֆb񥿰P+f+›8*բJ(k' O *J0R1ԊUZFC(bemCX+by)Sݖ;fbxb^,IJ,-bqBBȢ8;"/~040ʼn -Dj!B1>   ~57: Vqʼn+X{ł XL]"HvBEΊ_X,YHPbGmd"?Й -!Q,Σ2~(Ŀ+NEZa&虼bo˼Ţ WVgW,nEyv,YoYŲ,,VVldghd$9yT7N+\\Q,WbaPbyΉ+Y% BD/T}ouEaY",Bhbu-~qy.~ss ![[[QV+D\q023y-X pŬ5/Iv,vbJ,g7r1 j(YlDPQjs ' |>9pYٖH+a >XuyE, \ F\1 U!?R,]HHvvᬼ7gb%Y{fJeY©ř-\좥_\R*?2( *WMX,ɕPzjF_ǫX6+ۙeWdGňٍe" ? ejQfP&-\FrdH*NUR V"+tlrźhXTuLB5XtP,Y't9 gU?ڕ,D" -LjD3 hFX5+ae`L^ fI+]ʒE*- JCɚ_ -za j^H.._omZG.H *lPv%T8XT턪nwK,s,*fmwB,|fQ!q$2jLmbKH_.k§>+LB4qv$T|b¹EF,gY(_V- ~Ce:p]8rp6S9kEN*tXI\! yŸGUBT$&PX,qb1EBܲf1oYB[ Gvb "^/+BxE?^_^oX4 ,XuG,ZdĢv/Ted C3yr514(S [8$QcD=2 5 /Q\1\% _^ BUgXA+_jFU,b&,TB n_("J-ll1t /b ` D, &Rs Vzm+B",fl`?b1X ȵf߶;g-Dha.llaBE. $RQZ +YB+oշB^ݮJt/ԝ,,T"B"-BhaԢ-\dlVq""XEOF+V]^_BŃP ,*ĢnbQu",mu%,v.Mе~#E.'P TH8i+|mYPINEY(Y< - s~[Ŕ9B,DhR =\p~! #'Q*UB_œܞ^nτPtb NYȍeC Xf!B Zȅ-`DQ0*D?9%Z,\XǠv0X^."75,fvv'T7Ţ6[q,D,Bf*AÈcK,SA VByWd mܮٻ#.E^(}^!H޴lY"YxgoK-]JHeДjb8Q Vb;cz䪎0 KȑA&&~^_CBke>h -Vն T%X<}WG,&oBM,zOv#yڲȖwن*fMhU E->ZjT`~jWO>Ь5qaj(ngP 6H6>nP,B;x䕖5YY4-LBS[_eY1ïE*LV!aŐVvEW4yxyBOֆqWtgnBK,b1Yh".CEk60e[]l `*Ly^ qjaE#wOR,zPYYtfQJfa+ܦmR,p4V:Ξn&pq9U+`]kل:Yw:oYh[/Ch!סw=+eЊ_l >6Fryڭ´+vgB|s ,^;X8HBE9 U#P ,)E -̛5B"DgXS/9X\٬¦AW WBNBn6MܼXLBu# ՘ŹE=e(j1-|nnbpY8:N4\iTQZ!iEقrjo;x_ZX4ٲ uַ{ER(jfa*1xjMW&^/Օ*ZR۶yWQ,u6zf-k" s,C٣5¨6Eىҥ+f28E*T%RZ[^Q6+ #2T9k SfR -4PǸ l+HX Vx-n?E<8XT-x# U͢f, wy۩I-ë62xs)TiE ym{m+Tfʝ]XiOBM,򋳟OGnB*;˳.h§!Ř6 *^V [P5+-B[fꮊE?r,Y<.E]R^.FP"6`8VhE\ {P^1gwn8Xv?(o,KyZ7j! Q-LpF0 CDUhX1,AE8xEnw}bw"m⩞HB ZjV//2G GG7nQUDrE/Pml'V.SmdaNŴY j-n6x672|[эa}F"*jg{ԊiԬ^`qb~XކQs-\{oL0:imB `V++كP8XLŽ,p5,vboC=oBZ$nӋ)̑/UWXj5EYjjm(g5N-z4aR*vZ{Ņ+yE(XPKTd54M,Dpr1Ũ/cE[4D4A)RabXҸAuWL֬!soY̛Ů"Q-ZsT4:֑Gu(*Fȴy_m+ް8XOΞ-Y5 Y<ꙅ^j!Eu ]~ -f0 TU"hޘx#W؂łE%fo^,eqb1g6TYj"jE/JzasA߼1F1(Eu *UZQ=)8 E Տ,2T< 54Y4ۇڙW ]r!va"u F*d*hE絴㊺E( P m,Y|̢ -\jQb يza CCh'MBe.UOTD"e ^մW, ,>{rb;9;Y Pl-|j1-\xPW N2Rx0V1.qE=3=5{b1E e.C½mBQ [8rQB)FjM3dC k.+d vyE5 ŴY f`np>TM-ZHnQbQ//`xT`#iQJ18U10[POVzE+jq{ نE %BfBC%jQb uV.T/`t,`ĩLA*U 9+ E2YuT-J./b8Iӌu4-juUT+TW\WG,oY{Mf"=;Q-Zzu)UTG+y+Bq;\nF,&+͢׳uQ-ljh^_TpĉSg:PQH VqAkbEu`b99; lCIqb%jn"Ջ\2&cxvX."L=.EIa1|zdH^=)Ҧ=*檘a1PʢZ$i.m1ERU^ XeRMqOeVd׊][bzQ[qq)/(c17`xERנtbsYiu[|Ts^ѩ 8^0G[QQUE#+eY+,E-H"Vd(VLE4cxXQdEp8^̰XQG2-һEs]$y%Xh67ʦ*+W'|g?Z$ij{\LuEs4]*#*UQdš]qY|)b<-(b"01#9Y.t5*Ƴ"/ ]qٰR?eE-" 1 8'Ң"FUYvv"x]ѢJ-"닪0:l+QTUQeE\X^L-ʸ"͋/ QRLMGE^YQ}},VŊE٢h.hE1Љ((";VY\ܮͲȏaZw9."*c6i1]T7=*[EsŮ=hX Ś"*/:GfeU%YbMW\9,ʢuK-Ҹ" :6DySLQ1UPV ayj,".ʼ  ؕZ6E(b]W\~X+kE]D}qhh"m*6b1+vw⸛EE3-E^e^ c,z1nVuv}g1r"h4.%EsTUQesUZ".cMh~"vV UoC5b$-H"F`3%țb*ƲbkWo":Zi1y]}M< 6./tUŜsu߃6TxE+.=!()Ί]Xwؖq[uQRbiy_MWŮx\VYeE(' 8("fVKbMYiQE7.TOovTUfŚqxZXY,XZm1<:0 ʬ8+nkŊҴhEU^4!<)hTE;+^^qhZ".XL < 1!c)ҨhV gRXeKf[qQE+0N+ 8#ZAQ6EXʊxvXYeѾZ"hż\#$zIQUE;+z׊]q]<,Ee[q1\<2*8+ӢBT?\~IDATU]4JUS͊ŰbUZTqR`AQ7ŗr͊xX(ʢBpJ1l*+tb+^%,bhA]:b*+#e1t⢮/Fc3ֺ KQXq aס"̋v`_ppGN(*ªx{ ,>`\b1v,| j8,*wUbGZDmѨ^_ ^8$E6E*^:+GE3.hhdfgo6xV x`[4㢙 3b':I1/PCۢݾC0WU abm˅T`O'UaXuq wC}{]a!,@XXYœ.+⥻b}\ g+ME=Da!,@Xr^l3p]mQ߾7a!,BX aq5 aBX ,@X"xzBX a!,BX LmBk , aBXBX , <aa@X ,  a@X ,ׁ A.@, @, @, @, W AIENDB`mkdocs-material-9.6.4/docs/blog/posts/the-past-present-and-future/mkdocs-material-0.1.0.png000066400000000000000000002714021475306445600313440ustar00rootroot00000000000000PNG  IHDR XlXgAMA asRGBPLTEGpLAAAN@!!! z뼼oooWWW)))###hhhPPPKKKreҖ000666[[[TTTAAA&&&```:::ґȝuuuccc"""CCC{{{>>>333---FFF唋xxxWI~kkkpdxmv|||fZrrr^Q󐇯䔔൵þSE跷禟0Ĭ|qYͷ}}}DǰjѾ}{eEɌ¸ޖvߺ[tRNS  $/9P\a! "#()'%+&,-.0*214@E3C65KN7TX8^=d;B>GHIJMWRSV[Zbc]gn IDATxAvaGC$`_! z= `rN TUKV)Fq֕_hHza!,@X a!,@X @X+a!,BX a!,BLO#2 aBXa!,*E Vo!,BX a?¥nd aiBI@Ig&.g+VٺXIY a;ϴWEh"~`iy!,BX [cBRϨ-TEaR̜z3Fa^< a1}V4pXpa|btV6`M[--fi?XbXfVq5@ܸXbZ s܂ ꝼ42"-vJX ,נ"(D%Nb(.}ư"]A1w3XnXbhVQ*|??"=0XFXM!Xzt qi86+"/(Ꟁ?XSuF.q bHUQM{@YKW/A%4)lZEBf]9FENP>oXF.b -jYxSoV@^D"KM#"H$!qMlhZ"]#3d-Ӣ~Yl7x3+U%XVeb\YY̢ʼ"]'՛84uP[TY?H&>`9E̋t[,*tE^Vb(-7eh"i1, TWU* }2$m14((܃*ʊ@UĚb”zfF.m˸ 5AWij"PP#HE4-*EJݬWE)* VoΈE-i1rhFXlwPV""c$MjeYܼb +ⳊHSL4"3-3_YDRڍD^"Eeg1XtEl"++Q 7IgD9iG4-ƔEsaYѯhRZh^Dۢ$- b`[P*M *"P5m +xS Ąs@Sn] -2-,c"|=@~+-.v"~qͭqMxh*mbDWD15SE+zנ+tE:T, q> M8m68ds,f' պݜU+׭خx ̛lf1SX芧qP= -("k`;/)q#EiWDA}yiutY]q0nv;4Hâ,B {PyVX@iXl3ms ]s4 ndYiâd"tjP]6Ԙ5"|eZ8Qh$`3Td`Q*W(L+WdjZj1=z!T5},6$4X̓EjxV؝抓f,Ld.Y<NV%U XTlp $Y̚P$Ejk"=ah{_TgʿA+IcAL(X5nJ|I \Y`+Yt4C-y>f3X PB\kGo~U ;XMq4fQoʕ,6 e Ww7--Ⱦ5 w6.YT5 Y,J,2zˮ[Կۏ|U ˳Y3T,2R%{?E<,X- 3W^Xx U(e/ak+^.nn|ۛ;j'L3ł\?= (g;Yvfɢ-atiXZB>",fy’EE`^؟q84$YLEEd;e` ,FTb+ ,d UoKS\`Ǥ`h:8yPnt,ZPc͒Z,V, FE=`q0,Oc%-ʃEEjti@QG3TߒEwbj%X@`hj]T@F,]8W4ܫFWCmlC0Xd;J~j:.YtBsxRpĢk`1 UUX0df{ N٠չ_P镳 z,#AN,Pq\>|\E%V"\XK`1Q7B4܋y3l~;*Yo^,, ; Q#`E*_BSwB̓E4q"Z ՘ܾo= (Ŵ5=_ U,"nTh"j'NOX ,^J]SAX0}":7,Ѽ`!X@`1/YEuyW/ԣVb5߰&,rŕ"ܲȟfX+ mI8KPk"X,*Xf⍧\ 狡K#XuB5',W Wvd 5` ktĢ]U d1J,S.Z}X$5 = (:QlMjB$X4X5ۜx@oZSٮ^Vk]; wrdQ ` ]Z7B /XLJ۩P[ ubE<MX\'X\4,SQb" ~9:,>zPd1;}:z.LجG,섚, hbz~{/ShZ,6,#y]4e]8Ƿ[,CO7,\]XbXog0XFѮY)F/^fXBXxo;NN;OʽǷ_LBUPQ/Գf/TDƪfw͆".X\ /X\7J`qhLoo(XX6:,,.SU/nŃ E}4wB4y/l|{* Y<`1F,xqB~28eQk Y6I'Xt^H섪n;w^D/qאP`qwBzPp u:IE牼p'`}EE0`X7nG, /XOY4o7,,v̲`'O}8B; Ձvxֲi'`}E*\8hȢ r" f#N ӒEu#o No*XlfEkv: G,M8dqVBbsHb,XG,f?|4ܐEWXPLjv{':Whbl`wƐE4d-Nrf|"oH"7b脺 vB /X{PER*X~i@OS gl-ԐZwHǛ` y 5`C,$l7Fn'sF\ 5I,(NWHs泞m)ߜ{d݇Ȃj>yxzEv_/xo} WŢ ?;ۭAXXbna}4)Q!3$LBOZAMK1wavC4ޮso9bQcM5Ƃnf!bkEpCw{s M<(2u5ErAMZO}^/TVEx2o" V,X|{Zb][,~ )-bAN]'O zC,)"1̅ee#}6!(>d ʤ?&^H,nmbK[,X-fJf} ʒ)0uЙ+"^Kc]XFjXjwM" .}CQ Em6[}ys_mxV'(NBXON$w:x#e-A;SlM`Ypb7'og6f>|уbq|/uj"SWT"mkB<$>yg./xbXW b12W' dK4{4Ы-w?dc {ɳh>߱b]sAԄ$||V to1zR,^B,Θ5uge[wk x*o)IZ"whf9-F*:N`pfi*kIX4[]Z^X8gBGآ߮98|+xbQvj ޾XL 8vv(\.mĂNLZ;bajya /DZ[hxb'd^)1v컄X8c"ik#B,TKb8X\Fo_GobQ,Iq*3ESwe{Ɣ6-ϳU[,7{bFmřU O&VuE]td3jhdK m}5.^?JF*ĢXTfo.!t3Z(jP6+KT  }n7D(0Vv#KvڤF_ g;R,ľ.)~'x(bqy>`B,qf5޸bbh${աc=s,WݐEUPOx-JpXڱC,{9Ib޳b8$bQ$_qbũ' X0920"bv%g8b_;ϟt{6QfM='GbX|fĢ5z53 7Ug:EbXxL/^5ĆP&*T3"],0l(Epѥy{H,#oP,gDD چAٞ-qM t,;C-׉ɋU ^ @YX.A,Dq8"KznX}Y X',Xd)Z!"u9cN2 (:6&2ۜh,_K\wan+I["BHrUQ(ĸu7 \l- aac`(jıw9̨jѱf|?//l֌-'T9t/>>1,3nZfg9b<Z󅴭1,TBPކ-=',Eqk5B#n Py2:*( a!,޺hfig {ϗi<;WZ!xnua'E6J4vIEvg~uui? fq~v apwHiȑOVg^5^{3Na׫W{ݽ"RƁٵ`[%6n R7E獅aqazek[{Bky#nFY`'lsG,zRk;ZOJ«-يT^NE[ֱ~=ʗOҌ/GMdv;Z8ooccrQG-ެ+jxxgD\[䪲xͰrr3,Ko/-,8l{1uZw4w*5xSEx3٭#_) B|vp)mv~LZ|c1߷R'T5Z.bQBX;{%{߈UGRk; G<>UXT-{.o RKKױ\~~mEJ:_gd_k9qs%fc̛<uk޶:^?ssG`Wfq߽:;S\( \z ~o arJn|@Ev~ce5'E_̅džŃatE#,zի׮}xUzzV*[QgA}Gj?,tʼna7׮]z%^!/xlX| ,x犩Ou~rۥnF,mZ~[<+HB!>o^xob}B77֥|1|tXl!T;V*)9T|r|w"K0&MPBXp36\znf}>[9'֘GŚ@X( aE_EP>im: gz} ޞ조ŊRZގ8,h aX|$,ba}pF:hMA a镖=ۭOlLa!,x=UyK3Y2 aBXBXaw @X a!,a!,@X Y KЭ%a!,@X a!, aBX ,a!,@X  , aBX:ƇfUDY(+:tE]8'ۧAX]Qae'ϟp\qYDin AX ,a!,@X  , a"a?S'? aQ}8/.>'#@W gL&&sG[¢CXz&Y0.3X|/lM0194ԛ"=8X܂$wLޝ(g]q,SgH"N͹Lȅr+CwtEwVzlMprb`xN(}' g@?L rܝX큁QQHFBV&GtHJNBLj ηo aq$_tw7Po.|5܆$Nz0 ]`z4Dr8; c¢%-  芇C;qT$yO¢CX}Y дnEVâ93 Naגhq\ s\zt8,,:E@X'E@X¢sP H8.Ӄ+)+'VqT$a!,@X7n0o",aq,,:EЉػ(WvK 2w:::̂3ˮ//콷-z D>i\@sM;|8|t؁#82tWGgQ_Q abPX  @X a ,@X aa a!,@X a!,@XBX ,a!, BXa!, @X a ,@X a ,a!,BXa!, BX a!, BXa!, @X a ,aBX  ,a a!, ,@X a ,a!,BX a!,@X ,@X BXa!, BX aBX  ,aBX a!,@X a ,@X aBXa!, BX csb BX[ BXУRX+F|>ŝ\Q\ BXMU,6 'a!,vU ¨tLVy- a!,hɊRc$- a!,]VH aBX {+w7 ,Fw?G}{Tq/`z(aBX &- ,{w&naBXinoOTX2]JXb8S ,_Jb(|zӌŢ BX e!,@X abw ,7uR,|A}oWWKynaBX} }f7Vy]g a!,xWV7r?ثc/JXBXZo=g}j<8$0+,a!,`E5l֢[fqbmmfֺK?o3qa8pz|-~a!,}/Jf,Qo=TPC#q Tԛ(j*;>=;~9}u|~ΰ8A܊_'ʵza!,ٹ=0PX\|>N8)jDn)-z߿=•C!70_?l.a1 ƙw٤,\RΕIza!,R+ ?6o;iE8nGB-[(O܏a0qI4y'/oNr&h_ F[X|6eoo-O , $,PlwcES~Y\CQ>>WaOPyNp6jD:¢/ӭbӄ a!,bnqcZD-i=TSO !^ n0l(K3׎E2w[J7el3 3ma8;Ebӄ a!,¢1cE*mOn=TSoBC_$GA4Kכ_ ?|Hۖai{K̍Pn=㍡]rL3!D] ?t +]f,)k6Ŗ BX*E"˫ֳ=(i(=NXsMb*CF9:vV ^># >?p-~}Gra!,MzըּEz{~>Lr|a7>2dHB1 ;!,izƑJ[-TuK;N ,E bncq=CUWO~o;&6 >ІW@`X,|[jiRT Cq" KJz /9g3!&`pf:` ya0Ȟ''ă,I^_+JB4o.MĂu~O9P߆/7Úcb3X lAK/롴R(E/o'.[Y40ml" iՖ2м玥mPb`0X@,y_ozy=WUޚcuNkew@G^*#cvM۹ۼ]&b)ЂY]Y" lʨlm&(U/7)~0 b@,  Ъ{yR|cXPRXέYE?'{tjҞ{ZīB4`5m=X]usY@0X@,@JGkss ,jԳEsbxm  9ʊYUmR R(M-֘VXyX@, }z B zb,.`X  EaX~ml5E|$.`Xt  E[XBZͿ?]6M6,z,kՓjiEb& X@,ڻBP>J'$P  v M bX} E󥅿&28Z1> b@, EbI}yQC{,'N,X ĢaXu֚ꡚz,Ky1Qb  bX; zRV8J,н  E[6( j|P}k0uXbtڝlÑMDӱ !bwlĢJ8R~e}:PGW±X  B'B(\QBQNKovbE˧KB,X@,.DOT,NNjO~{,kզAK{^$7[$ X@, &(77oPEx_ qXK Y8tqbbq)baXhž)2(p V,6ÑNbXټNCS8| FgE3\,2$2RX<33p$DQ,aK~m]W6gFH7~pĢsbķxV|IvGX@, MMb↿b=*q;H,:Zޠ;gvZbC)õ!LA5َ7F؜B-)rū,=b1ڪ.y%CXlg%cqVH% bAŢEb3U\0h-HN?YA__[E *KD q$r,-5H[]z'>~xLqnK$T DDLWW&(ǂk9|HM=N@,b&v=fQ$Azm;(\|9*jDXÝq~5Qj% X>1 b3䮝buVF%s+yC\H\t=b@baXT%+"JQm'bU4OI7" =6)jU畊Ѩkut u"<Yz^|}sX k޶YBsϗ=3fC|3\g-4\,vdh)D1D>IiX\'ZJbsDU*-IX,XIND3ߝYlX  Z_?3mྤYȨDU{s0i'P b!i$ir'amo.{vٻy"Z (yb X@,ړªʽ%^i=yD8 IiSu!;cbUWhwjT`.ٰjRR[o$ \,4y vUȏ bX7}EoBӊ|%^˗\$s 6էyXIcĢ艍XH/u"t`' wyĹX8iCD:1J X@, m˝'j!`j֠N;osT?I |oXD,<)dXJߺ@K7lBrhS6dUrX({b^h bX'l  V uXjy%<4"Iqig b1nXH~}`'v7"ً$V56ѥ& IWvhD;lYE@Rqg IDAT  E&B5yT}bS޳V 'ţ7[ }YJݓز$Cq ʞ/7.Wi,76:; F,B䖵%kޥKx|D_4wAMGj悒Cg&cLY/X@, m % ZQX0x`zIbq#rOӚNjʶb!XH81ub!LÑ+FhDZXt=%1lߙ̶}Rj/ ٻ(9q䗠¸C .kmSن544dN% '9Y C iw~aqXd#JY(>0b* g= cma!I3+ά7N^im=]KLuW(彳yΧ?˟bտjϲ5+#JX@XQӏXfEjW(|"F,lzaQ^3ג'ЮzaAX5GA݈AVX_p|Sa1$",aAXd>b?bQVdHZL[1bM@r YaQ۩=9,>WX(s ׁ^rû'x'jo{NX‚ ,|BGͲdB9__G,x  ‚8!yG,vfό³/_Xy  ‚8ً,һB6fid…:--xaaAX'{zx|".nI#uoxpaqRG,PLCX7z` =aaAX'F3+'JZ=2e4bQgu\HE3=aaAX'|.i{BxY7f|pL3 , (BgDFZ<ЈۙZ}V65;7:PYa ‚(/}hFYLe/nY+evEft\{B9w aQq!>N9ba=.++nY-2;Jk' , ¢ܖ|iB~`tbq_RYaAXTf3CG,P \ , ¢y!;k~y&;+̂RȗV;vWzRkXIrՁ p}\zZo @X1 YXZ$C%G,Y[j>iVu(U/bDՋ]Xn!%E @Xq YX,6w|䩸]rWU€nɍ==\4QTPP$9o?M>uY%?Ϥ{D ,ӢxY9,rgAς*eB 6}!L!.k,>/t[qR*,4baAXTБd<jۜ-f gE [B!ilڿm@Ӈ-PXtŲh',aAX*x(D$+-٫u2WmsXK+_U'ݺrלhYGaQ9M&5-2bpϙle 'NBP:Kaire_6aQA" oFWb.2,c37j<9a/MX‚ ,uv fSq'YPE=a,հh׾EBa!oaq쓡A ~>~ĢYP&BŤqjq6 mZX<9a ‚ GqǔMw*SXEmY-,BtW\|bd%O , 8'Cބh,M2YcIW԰x-į]B,=l/%_Z}Zޝҥ6rOK ,aAXǺBai{A-0wfe3iM~Si.[9g(˗I}BX‚ ,*]eknO$B%͂* , , /V>덆bdE AXTm , ;f/ŚܥdEIgaQK5Ӽ @Xw,d/++BEJ{3_SCXaAXEe08W#,aAXPtw\f+<7Q%K a , DsTPdvmuFo?[AbG,[ͼF}Gp ‚TҮb @fV(|_ۇUܫ+~NXaAXP4@l=G b*#K:\XL‚ ,a/hՅOKj =[ ly .2,,^N‚ ,2.px?.,Vլ SbpEņ ,aAXPL°(k3G(b7%, , كewpE5+ , , TbЂኪ :j>}?lb;N`zjpa!_ci9f#k؉Fvv* , zCn5S9X'fg+f1 o6EӰ0 ‚ ,&+8,֔śo>Ӿz|ʦ-=8,}A_rNTx6TD!Y.,N/Ŵzw/9[ QO+JVj 1@B0@"Lo} Oa? ?JX$N<,3e #6,LwK^΅EiwH8?iX,6o>`P6N‚il/yX I~ݤ{k.Z=ytv;HN+bt&,7o>lg|q ,4ˇw*~HӶ ,"rܹ_ٵ>,7x6,h?-n?̽U|?f.Ÿ⛄Ee\S,a[Z!]j<fEiBX Xq/}< ?>a1 ,Fd rEE(7{>ٰH_?-|IjqBX wگBn_8.zz}Eأ>,Q|g:;G¢BX ƢSS-,4<ӻ}a[-4~q8-{nvSavO#a ,aBwJ J3Nbr"֩|ֆ^waqţ~bƢk a!,rCšv}eXL ?]clm?f,ZNP9.a ,ag,Q`RxP\*R݆Qƃ'g,ZN{)XX a!,@Xj. uV4,ڰHNvCaq>͠0 Qm:e>xW@X a"/]\3=,IEأ5,Ζ闸vݮ_jͧݯBX')܌Ev׆M75_?^? 8A2aQݼ崓Eޡf"[]߶Sað[Tw(B{XT7o9QkR@X a"u}glH~݆S\G it-|Ұaq5,j6o9v{a ,aQCgWowS݌At!O)-]0}vWw<}{pƢ樛O;[> a!,&齫ؼ_7L[Y쳅ܴC?v۰¢[Nl? a!,dd]o87f8Z w.zYfQ%]%,λ&wWw]w[â[Nrޝi/΢Q%,~WsoGvAY/, -wamXĹHl._6vQvBX8{aq΁8~IM#f\<ApznЋ=6-g|[Rm=NX@@X a:+p-\G~۹0a}}n ,UOaxVX7(<4,[¢fN'-@X a"gxf),?(޼ŧYm^&-GѲ4quZ'Gr~y=(gîQwԍt2yj|]| a!,@Xx~ATub.>u>y ,W& a!,@X<'ImBXhu}ġ%= a!,@X, g_+bX ũwoQ=V@,SzET_">bxbX ']T7#$܇룊XbX ',W_?,hNˇHbX W?,MFD}̢ ݡX @,N_>\},gX @,NQ%M[f+bX ũ&X ;Tԃz6/}"bX`q{NQ|Ÿ[߇M_bX *X\?Lk^1UM=h]?Èź'V@,Sd|z[^w✢ DObX '8*;Pb+bX ũ^f~XA~EJ,"bXӟc??==\w⌢+fX @,NEebl?˨넚ubE, 8&˻wW,xf4_✢ '"bXX,>U,>ψbX ſT,#bX\X\]uW+f ;Dbb+bX ũ :~>b'nA~b\'!/j+bX iȵv4V I.^۵.\܉S3u<)@,s,<1:n{)jEc$Bep3M:GC֍Hzd"4oݿlC(7$K PۅeۖN - @,FZ_\ГWdJ 0 b%3/ 4b-3#EGL,ca36JqXf=ՂJ,?AhDņbX )WGRH'>wXyƵ%ᦹXi[\4]ap /pԠy*)hzF?,WX:3vBᢡ,M3RU\@2({FR;D$\,f m+Żz#oX\!bXXLG9^u-^G]eےW_]x ^}b|"։xn&e r?(Ca}[eXc%ڨlDeCkdlrڲv!J~t{ܔ(R ɻJ,bɱv ]Un\Gb.z^{Iت>!&U:BuׄMb'?efVB|3w @,_,͢^{C ?*n?sT]pM1z+R{,b1?{t+'hEhN(hY_+wՓeo{Wl^9;/ @,.A,ffj_TwVپg l r}Gv뿢l3>X.n;vW[mlb!O矕'{V]8;ZiiFM[UBmh4s,>K@, YxE37>̋Eso%~WpR%^w!b⅝_֮_TUI3UxbU`_},vM @,.G,jVV&`*( 0/LŢe [ئ}Dx쩅$LEVlf!]oQzy,6Kd[/>+֬ @+bX\Xf4<9acy7\jlXLUXyn=oNpY}_QWZԙyqCnZG`+|fOa*;@, c^H퓅YL6{Ie*7:b7ث*;@b~7C*ub5gI*T n ޭ @,.J,Y:b<[r]&ĕkO IDATXg y6%dne~FH,v'SkUs,/{xB䇲23-%'lkhP@, b 5G z9O 3*U<ᷜ$Y47xߑf!(Lljb =@b!?w/?$bޒX8YʄX$uD5EPKHʙ$G{b~wxmm΄'ۖ([*\A, X2ϫ<-CF'(\UOmzGB,MőV*TPShm:B7iWzy$(6S,b@,K(&ſFg|;AH="^wJ늅+ j4oFJ^ĢO. BX ak a!,_X vM%7,"VS_YX4*,@X ax̮x,}c Q2hm*j"6S_ѵPg ,hXd%d`b"FS_MX90a!,E"Xb gsC?$rhǡ\vgo>S_B}zpbVaBXnY x88zp`pE8N}B}ߣ BXtZ`963(Q'}~06oYal>dq{蓱&ؓ;o}[<9a!,E¢pokjc rÉE၁Z;SUX¢[{knyyttd>"~n?a!,EâX[|xtͅ3LML U"SUX¢e3nMO$@0\6;^{NvVaBX΅Efs7e]]]` M" SW\Y a!,:w|f$-*;Z;aSUX¢aQ_d'f]_j k?f ,pZDW 2+7uY a!,:^iLIߣ,r BX|H4u! a!,7MnBaBX i "9SOXB\|èHԧ&,@X aNEaBX  ,aBX a!,@X a ,@X aBXa!, BXa!, @X a ,@X a ,a!, BXa!, BX ,@X a ,@X aBXa!, BXa!, @X ahx ,BXBX  ,aBX i% a!,@XQqqicė ,aq۩TjėgS<ťb=-yF@X a(,^---{"SҰ8,F3p/gtdzuzld?w~BX ,=dka6U°XlDEXp9Y~CsXHaQj׳" ߰ư8txԻǰnE:S/pWܩT BXMݱ}*,8AX(xϧ^͎ųYpW|_|*59sq<a!,|l..^ERz1[q'^{H>_+Dqn򰕷Sb=_ hX*?m>|s,/~e.?s+_</b>5W xSqc{=?>,w]*E¢*_5JiYUa!,*,R+ղث0>]DXQݵkN$SڇNO*6 l(^ a!, a,Η6rS:1X,fǵoVT],n vbs,>(.F$DH ggX- @-,ki+xGK&,>(M/֦e4Ŝ`?BX |J+v+-G,-'_! &K G,X,>(,BX kaѱUNoZ[n1b|tT?5azvtaXn^C~YacXt:e~ȃr}"=[x P튆HZZ}$,BX 0~V}k)?%/7 REXbUXhͧ\ _"\Χ# KsCg RǶbNM#?2,nZ a!,`b5 -I;&wEãb뛓 aYa!,ð?ݦ46_;m$ml Ҷ0QXCӛF%09< ]/tlVBc7BX ؏aQI.'O*ﭦ]\nJ8`nra1Bťͱbp2z>42|nUrh ,hC=ɅکGa!,E{ q~Ʃ.'{תa1˳Q4QM2v7o<[ѓ'  aBXDot%K5>'PxiO뭨^Md ,h q|1N?g;֩{_}:< ;4qݧCO^ǿ9V3IPΠ umhsXu-k$a!,@X a(zvPguXn芰ΰ8_ ,h u%}l粗ŵ+YXNן\ha&_^ܞܧ0#w*KRlFE0͋p p3ս(klA~gaBXHX.y}^=:c!7.~pptw?>2a" /vw a!,b' פ3.WtuK{86Z]`{>̦P>",Μ6  ,x[ݨz5uivt7__;o&oG7~iaBX)'㰚Euݩ>Wv/ 1Qavʼn#zgZEtԁ3%=6]aBX6tb#:yy+O:ǯc=G ,@X aBXa!, BXa!, @X a ,@X a ,a!, BXa!, BX  ,aBX  ,aBX a ,@X a ,a!,s/ߝ:p(|o޹4 Er , (`i(P) p .?;9Pٵtbѣ mv-1iqgg`}SČ~so )l>bbX yuocIK0D"aGe9¹yMUK[CuܾhaL[řbaI`#.;A=tEUw^ pB,  baNi *r  sQl+&C,M]zk8ijj#K,>:& v)4G 7n@,&I^[2h8jwqMѲ3b/AD'/ި0GSڋ֒Vm<߼kMHt$"P(VWᖩg|G7zcn țXĭχ2+0fd%79:ǮP޻t>K%h}#JnhUKb-국bNC%~*5E^$f #(JN۽zE0 bO0$aK8(ު"P^k{7)ƢrX!b!} IRw{rިK8&E:b@2vtRq@, ENxfB_}L,j>?옾l:cC,RJ8dZt ^{`EXHl|h׎OȒ!?nvF=FX@,(a=/nSGb>e`7K,$ϺP`rE\-*lEe bV<ƸQoW<loD+ai?A,  baZ gEb!ўEbW9"bo`ak~:M/!*E;i]R>I?۱ QQ @,.T}:~Q}ćPÎO;E,CmXc5Nՙ H "ZqT,$g4l KM`WqgRmEbX y (YTʤ>Zr"b@T/J:Q,l(ur/DcҴtnVb,(z% xL шdX b_ϔUޒp;NR%vczi?Y,Ծ++TbJjluUb-SS[MA~5rr>gGo[{:9# X bŢS9!SQI ~}PdJ.O c3XHENN}zgY%u^MJ w-VfF7 bXH(_xN{%7hT_"ٻBRDŭS(wFe/L=v>~H$R-͏́x ]7 I@, gG,n}!uo+3_b|:tň)9M,lT:թm;j:{FRf("qJ]4|%zk] @,187T{t>4Q9PR}= z_&X.ש;fʎU^|cr_]z@,  /bm[p@, 34@, |s"XbX Nm7@, '~dDo/X K, bXbbX bX bX X  X bX bX bbXbbX bX bX X ͘F?@, z}ni;^w @,&loyqz?bX bqui@Pz۷ tuʆs# zɌ!bX b6zWK~7 IDATVeX+O>u+փgܔ"@, :iEAwXSVB)C,X bX\ʚ+V69jX$\wy"~@, *#Ik2!KӳK+?Xͭi欂5_S+饽k:P0uvmue$-#{MZ,Vs,*WP~_}{.6xt{"JzvbX bquj#p^7∅j石w:tQk˟VWڹwOVUM|Ͽᤖ/oH4k9*h*phu^n[]jZJHMC^N6-*$_8_b;qM+R؞؞xƈbX E8PkH+4ܳ-XHL7whnĤ!E7#՟ A, @,A""**^X 4Ǣ 7l(je{Al]h4uXDRzSXT4JhLij~MvroF7 VhT*g @,Pw_RKRUhobђcdMVEDIp X sGkVv4^3<.99qF56:k!x@, "IJVනk[bi5lAXx2jV+h'Wiq @, jSB؟ 덆 PUkb(369ڏ.T>쪌6GqtZH5AY54J26bX űjFx>XZ6Wvr30/@@, XFO9ZbX [Ӷ=)T@, ]X-:C @, \bX bbXbm@, @, @,  @, @, @, @,@, @, @, @,@, @, @, @, @, @,  @, @, @,  @, ซş͇92o[?yWRg^9VenF&n9ғܤ){qmN S3'RJ}gE/,Oa|$'d81~cu>M!;Y>w'yOq a߼vx]'hcz bpbq9:nEC^}J'X<=Tj7ZT^=7'ߧ)&eS, q@,buY۞SsXgf @,,܊F373b$ؿ"@,܋CR' #-[3<ѕZ,۞<}?F, @,VtG?"}K7|cbQD* CEPjQ?)A=|k4Or(q$niyޞ"$g-W׆z3m\2z@, @,>wBڃUnv$Rx{@0'5QB"o">}$!9'=!W/:A, ],^ (:K TM,L~-F"s+xWVbq@,JB^KbX  7\z02ωd|9a mٜ_K{+_^4S fb:fW؃U'\bm"{Ż˷fX00᯲0|UN? %Vn~ZQ.[eT߼2NZNNهi"D0'M|KU V;ρ ~4SwWe+aW,NN>xh/Y}0>Ns}j":Ա-\@&  lc /)/X \j{᪨Yt?kzz`>LP}>׏tmDoC/Ք vEX)HW,Nۭq=[½ fs\ѝ<=n *Д&~IzT]$h鏱I4[]+}w3B}:C ~eY+Gt?w]JMOV~ k#, 4Xfњ4OakU'+E^ݮ)ڛr_X`k 8רM9#=Va],~ ,.b:vΤr4{&\Hz꽛:"j1=6K"%M:G nmܙ*)cGԈQL[+)dQyh,爎ADICZ}¤-v=G= 1 _*LN\Q?A$I= l<6l%o2,eo u ډ"5`EA ҕT#]ntaْRc^+qA)^ˣN nk; aV74MQ^:0I#tb!?j30<9I5,7j(szdYDhƞu>%mXd~cײvX':?j{WuY co{Q@}A€@Ttvgƫ"xwfJ7<YEɊa% K'cN ,P9jPfG57ȡow!Xa؉PL3op%ةi]NyleX,!O?΁RHXJHMAtS#jݗj9  aB⸄JUvŞ]{2@lm5HH~(fq1t:Tq&D?%"_D>P`Q);g: Y Z5fzxf2ɿ6 v=Y^"%=Xma1;sӝCa (=4w:TR P,֌%{d{oM*7)c,>" }SujZgKؙِ`(RIX` ]I ;e! e"nCv}P!ܪҏC9lV 2<:E{,Ko1O? ^NGXٵl,lfә#ݤöۜusof dq { ܊*ba~D3) Ub7X]vE(Ţ3I9\˱m)2rȢwLFd>B~"uČY)ܠtI\)3Y:RZ"!w֥W1lC?җ.OXa28WrO"dl RM >S HS0)*_rXNaO`Hq bXmXAdAVErJcozmO4XKxfPR3f`1Z:^^etsؐ`R3IX` ]]>ˋ?Fg0.!ktUhcv_G& 1$.`Ne`b0?ᙈ#. ⊍C[/^swm6ey7/J,7ߴ*;ypԯgiT'+ bo yw,k ZTy*PӼ#mNoC<g(טp`NFs'1QPT*3F =,\Y ! eGn Uc82mVڸy6()`a܄pLD> i6 .d9G ,)dh.]?zndA(K!ƃBi]BLfKyȆAB1JDJ&#ې ,LM`'X`EtbX[wC({l!V}LtE|zn`濋;)."ȭ]"1#X bm7+dBd`QwunGZzŁJ Vq^cX{ t ;0/ٛ/ҲuX9!o BߔLvEX)HW,8|d_`*F2TǻE-Tq3,:٪ƀ,&+dl#M&Nϭpf`o|u`|~bF#NVzw[ qtD57ɡ/GSB# ÿZ7\&dLk:("X V(!RHr͍}v(IG*U ,z5YX}0Of0yL`qY| j=LD$ Y,6`f0h]2p^@ k,= L`LfKuM ,_SplE@! XtkJ&; ",+ Cb Z uEk `1A]po XOط~m ,2y>3Xѿ/6S|h1Fe|҂ž4Q/scQl3BT[, Dz8pX'zPӊ*b8nT)]tũ~TWXh(<̎x~9M$qe .ǔfNbBPMsLgTJґJॢ`ѫzPe%8qT_Bi Xph)g,nѥZڦ*)o &dBd&$oMp;/BκŠd}_ _O4X񒽹=~oR1*dϳ 8R{S2IX` ]au%x IS>WF$9 %pٻڦ&-C3@5w4B !@jI6BBP0bHb]+ ,"H ^~tdr.UI}钓X@42Qޫzb* m` L4  XӜ,(YԚ؟3KM{,hFc8mhuzHb }1b;=#3JucA{Yr8F3' 3,Y1 =ȑ)n]ث3("zxJBCI:RsB,<[%XGp:PƸB,А+EEO,a94CUgs\EM^#*GsLhŞk=FIX;$BI,ܦ3 QR1=(pW."ۆ )ĢPrX'~e!66L%Y=#_.ETw*K1& l=;E'ivհXȊ Kbqbs)HLZВ(Llr?F^a{ -,>ĺ=yËXv(IGjw1 aA,^D焗2wOqX7tU=xhOC"kZ}"I2'XحgS8 gňE00X8f e*Tb6d5(Xf]ŔXpy@./mD6$ f'>O,B,xzOYXP=(,#n#'|7sFJYX5%A6TbC^G4` t= nކSEVU&;ܹ (eAd(+DE,Z@\]6S f/ )'nwLUi|5 %H*'(6bX &{bnI,U*c\V: `*CbtCUb_G,`٢%lb1{#L - Ō%{q6Gkaf-+b -:D\6$ f'>O,B,A\ $>4ǹV$r+6bj"]]"=:);Ћ'Nq'zA֡|Aޫ:=D$9eW gʱ7]QE,z@Rq!b;w*gjЙ2ԾXk څXj $Ll:@<bP[\\$U"  kx8ȋ}8,jI,$nKJn脦bR"X@+OO4{H4OK53 *M=l&1I ʂI'g eljtbƲ=6~G]#WO,KC, M%M=p?ntޠ+[[n;3z4c֧ e; Y]j1(> Q^E.|,Y1gB]M']Lt $ 1@%$ IDATx7G'[kH0Vv̧ӻv~ yY*(:J@p_Zr%E*W[^ E1<,0|')Vg"hO^%Wَr첮NWg݁H̜$ix_aAMBWf_L,˕vC˓XȕIґ[u%]d=)6Չ[ffC(w;" l SK7c̕Nɾq#nl"AH,\fH{ gΩ'}aSvfCňz 1 $LΒPL?tbƲ=6~%W Wt.HߠeSkVcvL'ِcQ}(ىO,|b  ZJʰZq^35Zb ׸5G3XzvD2qB,Pb[$vneqGL-|94'Pr eHi b;7%1:!ySg"x 2Y:RX= .H^ƃXb9WGi(@,c\ 8:_S9@})*%Hg(ƿMO,,1);Iع# `wKzr(qr>Jt!  >@$& qPfG<73ٜ8}HhlNRK A+bΆb1\'>_ry8XQ`D^S!QN71 Imh@p[Fnٟ4r=شqe_ QLۗ7da&a2bcp0?D"۩!){# /|҃X!l}ʑXژ"fCjkϾi=%94_M$.\(Püy\2hvQ _G, Re6*cc8dY` 0+*,3) F%1-c6Ell>pVL%5K/ !-!"UcO`]lN qz /otɅ1>$0㼽9S(V5H<<73Vu8Asy23`$)qUֆ{,%;O,|b 2^$%˽޾.44Z3tzBt^XtiRm:Ù_mn}V)-ujKHD--=mMno$O垮*"(̣}ggOܞyhO)硯yWc͛hj?6޻'VOKbʟk4meŽblyms-4lWʛKr*`1Tzg*b2vzB_ε'_Ō-"rW[,`zDBoԄy?Aó΂ea9 {ٝٙkvgX֘DrXrŝe}*qƅwW=ŕRQxZہ~UMӶ) A˸6oxPm9ԏ)~ y@,  F[,4Ϻ%YZ װNWVK O'V(W.jx=FXZFX(Ȫᅤ)W b 0`.~KϿu0LXō~gq<~'k;g6M~u0 b\%gVdK2_zbX@,FweIW/$ڃ9J>a"K;Y/DĂ u|{:瞳1, #.\qqgrP)  bqyK/mfCRA,^/ }`E:j^TcE$(QuwǢ0ba%Ǧȍ_bX@,Bw;n"+X|x֐1WRabb![ jh[_PB,#h lG8m)狯$  E_Hxy-^X6b@, 7/ hCG bX@,z  b  \,sSȇ y! ?(b%;$ S-sY,DyǽyulF_]}   TR:RBDyl P=bѝdѧWT"W6X@, $v)~.͹K}bᖐdM.m%)y\,LJ'>XINĈ|eGIF bXXn<ێ!c&5(уԖru@,b1VbHTބ , .@WĢHX,ؕ8n*_$A@,b1vbӉ$k)'ybl?F4Y,Xpjb!D@,b1vbHLnʃI,'lbMbJR,YoubRdX@,J,NAfA, " Q b"*vN, X@,X,$UIX/<8b!Wypl)FJ X@,ތXȯEɖ&OuSuv 0;葫Em脪-u>X@,bfb5H*:P%iX8) Nl!<ˀX@,b@$Tȥý3-q^ ڀm*ʞ惪B$8κGb@, ! v#8(( W IRB d͠ -Ҿ  'J8X@, 'X8'é|2&xKyy$M/q񡲎NTsHөBo/HɟX@,b1~lZz^-uPY~j3rn3X aZVf bX  oK,n|?j>ێY~1ooN1r8zjLY};ɷ\J:+;|qb9_T1s}t?];WcP YZc X@,Xl~Z=[zX7 cc`"v&Si0]2@ItwoZ|XVlM,2vuf^{7g`}m1t[Uc^_.d٬ʅX@, X3XZ4c](L0kݻ~+b1=Ӽda/ƮE,bbwIi%_]b׆Srϩ'0XXh{ZZUwXLg_J$./͚\bc` cw=9OSvpI5b/9DL~ӘJb&k=-݈3 ;OΩ'0XXh{Z"]*⊱Wg._.Z͚\bؿ ܟM,V,֝=.3&byڵ2QˀC cMbL>/:\c*i!柘W .V`b) W;OΩ'0XVh{.UM^ݎ -Sa֡{E5k͞U  X~50%'DbqX0tZ%k;jwt7b1|XФX<'0ɡ?i/XLDUsEz3=_ @, * BLT%+]fQ4u:b1b!e*ĂF0!z! Xh4(D#S'ȏ!q/ _ԸRy-^iD1 =i?@,\3w3G ўx/<|]7Ժ<_V\] /=p34ǤB*7)d7>T_b:/;^n81jKЌy$JƚQB+SeezL+>1
@TEV]8Cf*tv2=Jj*o1STDap\h20(:ܐY_@٢%{n 'UJq(L]ڀ.,KW2PaǐcWyIS&aRUZYvj j)[usH[ںy oLyun&" HZ]`ֽ@$A8G{]҅sk\uQz25-m~1d7>9qlg25wlW@hDAwI1_JR(DQNGbS/Qܦ Ug!XȄZR^B FÓEuv ښQ76.;h3(:+p;M:"s.GՆ7d?}!;Ao_ F/ 6}5z3>N ܏b%;^nee(3h(ι >wdoZa\R9*{}j 9}&a(>!9Mp,ȟdX 4LUJtvGYa kNCĞ%wm=2iSu+,z3 n :w2^"wW x*޼*}ns&!9:6 .UUPC,T`[o eK [/ HEҒ P%4eǹ^ڌG<2e#.ݪz0!y乒\.,WYRDi`U%~XPBMJ~ޡ}f`+O3M3A&K-, X邥UcLU=ΠO6KR87[ H8E.LW+79%HB8mݴ#5uT]HYzO:(dg@>%`Aw"J ?|Kj ɨHNOԻi ,nm"@waF;"@ßK _?E\o&`m;9"cF0pZTz]X0O , CrtmLZ &p`!fa9Z,!MME,`,"6 .G${uC@ylqyQBh~odh HsB%zt4(2,AU)8,$h5"1 H`A Ao7,Xה6Hq,Gكu>xb:a⭴>Vܰ"E[6HHUẊk_lCpHwX ޕu6I=^CïQǻ:v A&'<BO>)2P]+ ,4OUfpX}:`oDϱš(6CYŚ8(Q0.,z3 f Cѷ[d꜉5[J_*. ,7^X< ,T6CT s8(e>)ް#cEm%+Xx>#s}+ HEҒ ~oh  VS4!_hHJhr/FȥF`qG*>%*BTGٻ6&cP7A 3eBc0È50 !(E ;}>a︘ȲЇzU#kES, b%dM<Sr[f7X$&:x#) ()lb\ ~m9q^+<OM6B+ yT UirSZptd }m@dJ\R3_I:5i'*)`}0-an9ކ'ğIk& b f2(p*}!X,j=պu2,qEqF]u1`:1.fǎTf!k,o=NŲmE`L,*PNr`X%/XVq sPu$_%[<|./wnNmxǗYyPVO$By IDATxD;*V%Qʮ9`щoA,x~I%&W!;Ov`~m!.9viXNn,} coqjMcENa/;FAg{,bv y[ XOj9X1]+~tD`quYS@xX"/yyfB\Jd6y lx~a V[Wp=hF]!^$eA#@\fu 5GzlEr2h>7K ,bsÒaږauKGF`a%sb 8AN5'8TE}"gpuq- iՑs$kh|!:%+%e݃FC|7l|fyw/PJ`}j‰kz< %m$5,.Ѳڜ,^Er}RA,>u X@ޒ5E=ñl>[JLt5X{aŽ!mtXq "`ay 9ɲEe~ƼrX"/yyPrPqz`K?F kbaM%`A:\Q,O% 1V8QaPESŅHyT`q aQq,TsԦ67`a's2oRқ%w[pn{OlgNmŝ&7^n#@oHL'tY;qI -MaF%!B 1JV`a0>Ujawv:Cjف`.dD f;"Ҋ{,i 0b2+XK;Y:}{(j BfÄC;ESrļ SC}7;Ee= 9ȁE^CY8y?6&֦6>I8)XK󘾀m{(j [FN10aǐ6:q Ur<0f2d8 REe869ȁE,,ܹ"lJ쮴v|P[nS}(Czƽ-*PGq*Ր\؁~5Spif4 #/W0ˮv&JyPr*yw>TK#[KtOa,rAKP\e:!x퉐r[8Br(lVvy,tIA47L5t +wxJ(ucSPǯ4zκa1>uG*wX(8@| ,*4g- OU"ǿEm~FOb]]Bb]t};H mPf4LN/#!+ێv?b@G1XU-],$Z=*e+Bm*3Q8`?F_ X cw u*TܗGXR=5>tHD_oXx ~8w> Sl'l ,xjT,r`Y5 Ȁ̜wCWPbHVњpI'ܲ< y? ܢF{Pym51ζȪ(#:?Xkzl;tD`|$m_ǾZـ&yR%M:4,42vk&bD<&қ f*t*iA$LU+ IU.iT9(#. 3s'q,~*SU8wr6 cTzjjfeM8ژ,^~Q;AW>7~W-|F2D73,`X-^&F,<4{a쎡ntqG6, 9l$`i#R9BEC ȴz&9ȁE^쀅;g'ݾw((7Z}~=n'mFjGIɀܵ:NeI=Y(2"E_:`1X8fCNãm _n۹7ܹBۢiI_]QSuݫ0:TĝEnBoie4; jAF"m7(>J2#i4E+'Dm6X=Tڧ*sTΜH#n0]XIY Xeќÿj쯙 mPbVTr6Blo)YݙB`ԲdmmǗ々t6)rħ ꫄1 XzKWBWM`׿36}XYdI;40 Q|R< E@(␨M7@4xca936U| N5teAeٖbw7wrX􌳩LD@tw^))P_,>`X@, }%T^9,;34Bou\[zJ_~nz6znH{gj345-Ύrr ؏fG۞_N7.Vލ_/LG~^l=ZFB;#ۓgyjRigR^Kݭ2y0,Zڔ: N=۞GM &F˲vl>ozAn=95;{D CQZr G~7l=ufߕXG1?b a7 KX_5<asx+_hQ )8  I,5c^Gd<0q ŧoilsכBZ)< ۲zS՗W~ȎXX@, E K y]V#Z2P,,CD#C X@,  ¤š`wD^S(GEv{Qb8<  ş}#m=y˭ڮxR^1+,'B,bD&>qźb2@,~X8g mC, b$e;>''Vv9{wЋ k@,bkp>M,^ b8q~#*$ .ȤsA"UWHKa8b1GOX IbZĢfD𥴻!t۳ E;  ;ϫ+?t ֜z畭),)gTb^-[kBҋEٗISe%c+)GF*mO+sy Ҁ٠?;H;R5!58_Ĉ5 |K8oPZXD:+b?deuQ[%j/vERʠJ*ϫFR yjрXKY*@:h_6Rw>=b=i{]?sc0sM j;eb &YMZ:i{h$|9U,sI1"zKR{JM?bzmwN^ƯW2>ʻNnbZ@$FS?ϾBtDKTE}E6̵vH;9z/J JzDEie_Ft l"FIQ(_95Y}-NYӉ} gj$_ ˻Y'2S,}Bwܲ.8tluK%䢓T4k>=dȪj Cj]E,fS7 SX@,^X9.Z}8zqߍ4b< 6[ ~D!}&.ٔṳ`I$5m ]@^,/KNgc| J站auq!ʦVlGr(rdM'JPjzK'2RyXdY1/k}GOz2@, "mr;T%-Np1#u/m,xb!Ю| #QfOPU7D>5h}Sz, X%TњқDONtSD>}9j>[Jء}˱wLwbYSĈ5)7+gYT_ Z^cp>k,H2!Q*dv Cw*wXt$:yKؠ ytUVO5uZ3޵쥎Yؙ0==$ҵ3o/{gד/:hC hU[qBB9E D4ڐhbi&oL w\HIS`f{ͤ]{]SleB!X X X ձYdߧ +l 8.f 2TbCp "@.E={,█Vij0X$!7&S[̷Ϊy6Ė"'Ѯ4CZĀ- e ]uN\ }8猲+Gp6,``A>Ф=8nw-(XA`XEdA.,>EO\xbS_k>5:i3zhN PyN1APC3q!2ӬڦR`44j+ Yv<v'< SdP]p1c~YZ_M'3jC B y+"?0nXϪ,&lI^ F;` b,>q8C{ #z,LR2(pn:cOMX)>HXS5p"풘8\CXfyzP(T6nr\ =f 3jo)Y@hh w__stN߂bIf\[[NK5yG]eV[Ā-Ii8|3ޏ E\ZXts=x ,|%Wb,?UnG$XDŗ[톸Iz('xeo1APC\B=X4C?Ms/"fz5;ofCN|`adhl eE-nu$q五z'abz׌0XK#~fS^ e(1T5{~`V3^$u G\_$,ia E'8A=#doB_,cV%4 n[G~,<CU- o>C)d  ```1l6M3פ~IMӵ#ksPN$AӪ7M ze=MM[i$kbPݬd߼*I0iSBoB^HiV*eĀ-IbN)D>4ס4JkX\ )8V 3(w8V ӛ2i9mHIk">&XxNU&ҁ0 B,,,Eg9N&#f,TxݧYWׁMF'LT`u) :+{ W6N+.H̚ eR(+_ËpBπV&{M ؒrejUՄvQDWZ+=BA`qz,hv>[{f{ K`A[jB# PLm< DBPCv>>v+NunbLݷΔnrnCT0`@3.B|(]1ľw=(3)3rE8/iNwqխSNE†LzCitƃWrQu9XewL R 6MR#&|,1,V EUsKb{NKΈa{XQ):X6<`y`|J'XM0NqA B@@d^,9PeO_LR5B<2 ,&(}"Qk/@{ WƎ؈/K>,7$ ?MzzLfHxv||a?Ā-Iu 4FSu_ib Xgá~","kYE#A)j2XPA#'ܳI$%q 硘|xWxm q)[oBQ(şUqci6F,iDU(,CzC#omKϗx­+6Z -wD'Ka Kɣ*{)Aw)u n&xOEL|&lI(VWVzQgb {F.zTOI{(uk/0>22.Ld8wBڴ6=E6DOE ؄B,,,0M|}1 IDAT,`1eA]AHf<ʛxfr#,2;T)E*6w#[(\@1y1],,Voa!,E(b'ب-KbT"skz4%ۏ6`TfՁ BXtHS!(Q-,&ƷEbq/#͍|a1xn4^Wn5oCrk1Y {,Ұ,K3[KTa!,EGYZNFQL9&څt{k˽WZa\^}j\ a!,:-,v[aَva1r7ӍE99d a!,:zB=9Iv ͍k G Ou ,cD ;'U3FijDsxt a!,:T4cER aqԈ'"/D\2]aBX;YwE3,Fޫc2xva+,@X a!n?r{^FѰX+վ9v5Žafӣ  CX aq6#w/e֖3iXte.ߚRw{=C蝋Klzobbh' BXtéxQNNJHLF,-3SKLIeNEO)^f"VX¢o%1:gŘ&tqQIKK+!֦%ϾdN`z(na!,Eg|檺Ǣvu}ϻoN w UX¢5 aBX BX BX_a!, @X a ,@X a ,a!, BXa!, BX ,@X a ,@X aBXa!, BXa!, @X a ,@X a ,a!, BXa!, BX ,@X a ,@X aBXa!, BXa!, @X a ,@X a ,a!, BXa!, BX3F ,@X ayZ~k4{P a!,:D4~{ݣuӅڛ ‚ ٻמ4=tR- VBw *j&nKHjbm$59o I?AÙpgS>/ien02j\ؓQ5ϛb^d}//A> ,GŝEl}aAX.,N#,a?аH|d ‚xaq\?"9^h$߾'ٻx6~'#~:lj>9wdf0Q1ǩ*I?0?u {nSmݻ aAXGXt6kZBR9 ~Xcyלt>A*d^!?r!MxqQT]WZ-'vmaUDϱ)g$3ҫgZeXa&%i'/'g,ѽZAw*`Uc[ ‚^XKfx6+9oEZN WZ=aQ$ M>&7 >i9> S5Y[F使iz𶋺vvK۞_,9,sNNFzKs#3Yo$g6, fMYYٵnXe] , >fCeɇhI@3DnXlt.̮lvB>k"o eƕ ZԐ0snKEf?̕uWr^B\IԴB?gea1u ,^%iϞhå>*Yςkv ;a/+R>{ o;?E~(}E̙-,%gv ]iuNy1?dLĔ>dlDũřa1ʺ@XC {}/˫ޙnR_J^{,DŽŜ.o4J_W3Wo ~kX,8z~Վ^P<| r ]IkȲ#/-j/,Daa1ʺ@X -ٚΛFb1aO1 3s`Xx$L>,"%V?$E md6Q24SwJ>K6*w{7bu ,ĝSNvDLѧ?yNc_escXX,}Ņ=)i1'/+bQwɞ.W6 RHmy ,Ƶ.a1H4|M޸@ve>p"ԧTO]ݕ`XqE3KeIxO*H}bbL<,s (y۷mua~];^Uw$g_8fXvJ'‚ ,&i}Sи*IaVWV܌RW)@!gŚ o֊MV{>oR űH5|n@X̧i /+z{ߝ~ag$g%Ս)UKǷ.aqaqf4 q#8*ُqn E,Dcބy[j0, *EIEiN?+RoWۧ)b/9:aߒWo mΚ|X2R;1e}TL\^O-k6u , :r<9fb6_/- u)݉H8/r۔D|0H{yҍ;'ss|jv\iWj>վs] , ůECRgԖ>2Ā>"3_Od2Lɝ Ep5eaZu۩znqaAX ,~CI#Y؜?7 ]f*4}гI , a?‚ ,UaKaQ,ڟ aAXa+aom@X_]]ΒMS ‚a ‚  ‚  ‚ @X @X@X@X@X@X@X‚ ,@Xaaa , aAXaAXaAX , aaAXo‚ ,NE6‚ ,簘)˃Ww Bq;rLq;GY‚ ,;\iLqH-9,%jIұ5rez8҃ۀkbBP!X (Bkj-X5$oFSEC1'wxg uPtWYϯLgčO3aAX ⃜@xհ(gwV6A(wbR,敼Z5͚oZaAX "mc)mD`(p~ TCfUzy , xȰX[zV+D*;a1/ÝSϮ 36e? ‚,,Ť6uU{'#턓^L| %]g6,tb1T+I[=kZzS[/‚ , cu9eӔZE; ׹ 7֥u{iV ƎMeFk8 4ctfaAXOѪ6Ѹ''=bb_p9UgqyHt`m8cߜaɝlIz c? ‚.,;Ԙym yaɪ>iCnU~( ,֌d:rvk{ rXWЧ{k , aâ~ؐT`XL営RrgaE*ل2zt$ l%{O̭ , aâ[nѻӪ ?"(,K!cJR3%OQCinaAX֒4jjEE9}3(DwC=bY5f])-^ , ⱋ7j=Ʒ@XJܵ$灇|VrnaAX#WTZ܋9 ILa!ݙ+IXGâupe ,  , ba9aAXa9FXaۇE.5oT*;,&o6S)S1O[3[iX\`"vstw j5aaaAX=,Vb߼;)EԛqnjNPg!8iOݨmx˲[wbU3!&, , 3RY p~Wg-2U}(⠺s'3U);!!, , 1Z+,&Ywy{?sjJ;5űx\¦C)睰הs+MpL  ‚xa+,˨dYl+9YwmۇaaZR_uG%~X,d4T6DŽ ,Gϫ¢VRVͿ/X{8r24BWXKLzf&J{zW",aAXic X~zzoս9ܢt),R_uEU^E‚ ,gX'Ra|pb;})2#%3bL: 5&/¢dY‚ ,wXU!,Fŝ.DJKg?Ϥgƍ~⣝sEQ aaAXHX3cvyDb )EX*?± , , te/7Wk%%&nk#eSϰ,iʸ׊w>8aAXa co'Ŷ/: ^^O_z'ګb^-nd+d"JuG*eOx!!, , ⑇ٗ4ńTb;KJaZ) iXSw{mbq}X8 I)"1!ӯެ:גb6aaAX1,ݿ5[|'܏Llg۬5CZ ed:tJ]*^׼c߾rCBX@X/ jv-.D'[ǚ.oFyzwV+T޴_8aAXFxаxq @XaAXCaQj? }u ‚ ,(,2ྚ:aAXb7N& (,}5}u ‚am ‚nP[5>w-md}?Q$X!k]3&*I'U5 ] ovE}#!o~~$jf&. \?<̙ ;%W3Kw__XLo2acXL G2pldV{Gj2b;YF&bʮ2k[RSNQI2>Uf ‚.,"BFD)h4jr86 >-~|UډHӝJ&]ok:peY]-"3]c} , ð mH;%0,Fs+rjcEW_#E/,c^zyUZ-ɹw]E}+@X0amE:a106EKuBt$p3C=Z؁?Z6 w+zIsaAXc>Cbˆ~\ۛ"QX|:zTe4%5NakX\E)쩀w*5[oL;wɅ/,"G_[Aa5Ś9-Ef‚ ,q u)EQX\SRQ"eBAPusRQR{۲+k` IDAT , װ_ ب.[oy{fa|i" @X0aoJ"`lT5I|ř{U{gzS,:YNM9v1 , `"W ,  ,  ‚  ‚(,Ve ‚ ,aaaa , , , , aAXaAXaAXaAX ,  , ,  , ,  , ,  ,aAXaaAXş71 ‚%Tp9K"Ց{wR'^=^aL\XkZM[r?ZȹxCUi4٭‚ ,I CI+S hˌ$,,֥f|򍬊d*Yٯ‚ , u9Sd%goc ‚ ,1 [M y|Ő1[$y~r6د‚ , |ޒ|H攇Y̼;c?Q_aAXW`\$U耨*F&cB"#w÷i.'oٯ‚ , hUNфԮ/aqWpېdwJaX 9q;5~aLPX(svōɀmc#Ef~݄ŷړ'a@X0naQ27۔PبaquɞogSaAX9IbElİ6zrU’UaAXDE]yngeݎźBâ?3aTU߀ɻcTaAX|]x⩫Byp#а\XDE$ßaAXjs诨g9,[n$Eڜmz/~.,EvSR] , b|˺KI7SY̒mˇ#ύg s7:u{В=n'Tdž|ȵo#%( ,rx?<|=˗Y@s zƳEAVؕpJK=MiKRAc"swJN2Ӿ1 B ‚0oYb33rX<=73,bww,bFfB8h,Kϩ?zۘiĻ/#|^RcHRaAXLӆGj _΀ K4xH>rGKU {\ބH_cv7ڭcaAXLGuˮz͑)?lj=&tVF%=ܝku(͉uᝍ3WN_Bſs9Jz;f?3{ޑeX/sSg ayݫG_-- uvk>x ‚ ,&ʬ;ٻ(_t!)p1tc.$c411= 梁 (V}/|֩uGT{Ӊt#?UcCB]1qԳu{uXy>m}y{0_f3}ð} ,aqPbkI<oLX;ty#aK=,n >Nâ~+dw<.ؾ=opsv1^RC3UZ-;|c&,n߾%@X a!,goN{"޴gވSa1 &nwX&؍ó|%aq?{ty6aBX >ii=aq={;,*̓_VX4K$+]aq\MdOU6L]s̀-U WU BX|ovңឰPokWX* Dr+,E9i*{\b"^a ,NLZG8[AGXwmv'=5sQBlX+d,דԃ{{xMvwX5e>!, a!,w yr;ak!GW7-g"Cj&x>q" xg aBX9gΧ>o޴|12ZQ#>[y)ψxs;W ^V<_aQ&JOqxĵ[c#[LEWO ,xݳ~Zi8,Cڧ}zQk\XlxBbzq'&/7a!,@X a#>ߔ׳qbE^υrGXJ4ߺ4*, a!,~c}}q'0?_~t~?n$;G{x[yX afՙF|OٯX9m%{w,+, a!,~Wv*Zzrx|ƭJx=|З?_Wnzڕ!EX a!,@XBX  ,aBX  ,a a!,>BXa!, BX aBX  ,aBX a!,@X a ,@X aBX , a!,@X a!,@XBX a!, BXa!, @X a ,aBX  ,a a!, ,@X a ,a!, BXa!, BX ,@X a{X[ a!, a!,@X ,@XBX  ,aBX a a!,@X a!,@XBX a!, BXa!, @X a ,aBX  ,a a!, ,@X andd ,a!,_3j=J̇",a!,_SKSⴵP ,L׎|(BX|MX 54|(BX|MX̿xZS&yOn'OMȮZܽr,QZ;\>,30pqc(}ͻB{)!/>jmD6W",@X aa1΅VJwEr4W&C ,x.WN6'CXO_/&H>dhj5]Ԯp.o<",@X aa_Oۖ(q2.Bx.oa!,E?E#]L~I#c:K7>8]6BJEX¢b.]4_%a'mo1혹P a!,9,b4^tNnlq T)ćC ,簈OM"d=C ,#], F&IztEfCcl{8EkWVFk}j)(. <#&lLjBfk05/ ~ÞaimI s:gqb#U?LW},̋,q6khFv X@, b@xW! M,D?XF=ឱ.ٯVAc\'/_(Q1@,bXOu&;]sXcTqbXR}hw Db Y,XG:D,BYLHĉ3x0b+]9ŢjeXGZ.,]& REZa0IĻ7C;K.:f^ 7ekd)#è5y*`bKfZg% Bz|pQfsnGɲ60U2ވXmtwY6H? L]t,5)B›oȷX4;ax.*?zSDS2*.2bd%Yl%ŕ=#TrU|ek7P':~joU4 1ljb 9)9ҹ'\s\,M"@,  .:9ӮǣblPvвd+گNt5{vh_;B$&XQ1ȜFł 3^t*δ4-DY?Y:FŢK4W6zO-o {#w #,l]<_wYκ,fX,*g?1s?փAnQL'SQSR;[b&Q.s]BS :7kOʜ:ZsyłӯJbZ XdCZw|b)sׇK,WD_{ջX'3X_}nzb[EYy "+X4QB;&sZ;kĺ0=A=J/ꀼ)raU쒇0U^~JABX =bh9<*(ӰXJ>}?~*cgx5J}#?0[X t>K{tX0cY'~n3`C:TI+Ez-Tg-PLfqQE~@vϓK ;1ߓe?Ç~M:6Vaޭ;! BXDяsɽVB:7h#G?jM_JVŻv{G{ffKjWvugVƇJâ= jIJ\m-}Et7T¢}*PhƗ*z6ۗɘɠoVdm8rr?Wɻy[!<868ez·E)0|7Iֻ}:ckk! dO(MO]l'[|4 *,p3,BX#}j-Gҍd<v)ҝ,zG7WR>,毵,7*="W PraG[{oү7QO',˛蹬vf6!~\ͽ_|8=VRj퇒#e^X6C{7dTVa$# o[r6Uz7걱  a!,@X qʕd[͹(*77OW[WBx4wu}l'OtE:ic$,ۗjjewdhϙ',Z;#"xuJ_v}DZ݌;qUL;p:XYk;s.,M>\KVXI+.7㯗J  X?;kP51f€ IDAT-6VaFš#â3z{6'ۉƓ'D?=i J#'6~8bS;}) _V:30~ o^,t]s-WcIX0[OP/qpc__?tBac<+a!,/ip)T}%ק{慅OC@X aŋ՛C&C }iOD#-.qهJ[# a!,c2tVѿ_{),ʣǥf~?v^-..^ a!,|{X z+_;UnL`nlkBX ,aBX  a!,@X a!,@XBX  ,aBX  ,a a!,@X a!,@X ,aBX  ,aBX  a!,cvޅ a!, a!,@X a!,@XBX  ,aBX  ,a a!,@X a!,@X ,aBX  ,aBX  a!,@X a!,@XBX  ,aBX  ,a a!,@X a!,@XBX ,a!, BXa!,|aa}a a!,@X a!,@XBX  ,aBX  ,a a!, a!,@X ,@X BXa!, BX aBX  ,aBX a!,@X a ,@X aBX , a!,@X;&6ҡ;5&$8 %@[1T M 1i81ضݛl xxt΄P33;LlmjG{33JÇK~>]~ُ`7Ow߮Vz @,"V~귴i6^ i]soVí\gSt\[}kbX X7ZvBA@, oewPznĢ8 Tss bQzn+blgvb:bt}@, k}%^K>#SZ&EE,{vƓ5S֋w4O bX Osm8ioc)Ot]T@, >Ԑe!F' ^)Ģ(Fh%jŌ3bX F,UxFz*bѤ>vM7'_T@,#Zs Q؛ U}8 bX8ڲ7 ѸjX@_WWOO Uwm// ːm^a@, GbqМF~}ZXDoۅ|Ӹo2/0 bX G,:6Bw7 (ujztZ_&]E[կp٧>c @,X د{i1{yWJ8L,zFn yXa%X bqB kZJռ=L,TۛZUC,Rf@ bX_vOL-w]9tPW?XnbX ^,O: 7uPkV-S}@,&F, xt:EC, @, @,@, @, @, @,  @, @,<3SZ{LgdWnHH9~E# b51i7R*>Ho20,6,X|wbP49bS6c" "ۍdr4dRM',67%sTxdI ,tױ\?uJ-KCvNڽ8mXhd@,Xd%om祈dϧcYc-z, \{|2^싲XQj' Y.+y^ܣEreR¤祐i<6)ZX.T݂^u)S(|5wӉg]Hd@,X?Bp=7Shcq\[,"ѝoE ɖ]L g,BM$3jtױOΓ3-81wޒ 34n4bX XT,L<]h]&2a6GYX,^W,ԘR?aKطU|@oO6)J G2'R**-Eɞc^G%dDDĢ ͫ,6~X  7 5A,mŮ_w"bV.n.Dn%2#h[Om$#}wpդ>L<?";jn#^XUKJgҾTgQd~^>EW7Yl@, @,n,xX4.@ң)CrX$vbb-h[ |ދM" q$À#ZXJ9J]%Yq;EW7Y|@, @,n*jh]U,z|) EϜ,Uz&bTl&E|X8K"s#E" 1i.t2->"L*3\6cX bmb"Goڢ$u5 74z$9f|ԓy`ZMiC>3[֌Io8 0ZX.R/5uه5bX XR,*d'EiML%S_ClިXT# 89y ?k&Wd|u}e؈Iטy/u,Q`,fIjyu!bX^, Jlf=Wjg'-Jg81 OSmi#j^-:cH`[I*m͘6215&AcRQ7mQnw$Lku}993dgbQ-DNbX  bX bX bX bXbX bX bX\*~E[8fC?0][,L?YXbqW, @,x= ޳ S,w[,ΝVb+~p**߮ bX bX bXbX bX bX bX  bX bX bXx>~~M@,+2,Uxޘs-bX XDׇ4|}EQ| .7ˏVuem@Rq9X G.7X,2"{xZ}CL>Tۿ͆YYjj\bXfX)bq>}N )Ę +S2?X5{&YX6D?j@, Ŕjڙ+cU64m`C>X0$]g] bsd<-KU'M;HlE|Y+㝹5>O\ ·xdIPQC,'x)'$7bq$ЗW#bX T,..[= p*4T뙨H!@`*m xZ p$GzοՕ>?셵fŰ}E;c$g)Rdm?9U.'[fjWC^Rj@,. Zbq".Nz*d-E6;b__0kkiJ,ƳfdWUs:cJ|xWJ%YСy=Wc%n BbJ&]҇{\jU鈅'3Z,65eߎpEF/AV^q5 /b0e+KH46DG=5b*3nx^O5mhEZJuM35Eu-E^ۚ0H=> LĚt/X*va*ŢXcKxy ~G,|}vK[,vԝLu^0e)D,MAu@BE@,nXĚ "MCXXRmw"b.}ԞO?)2S1\-dAe+[g􉅯ϮXxciŢ>[P􈅦o| hK:ΥX U#jW,D֜tbADj|elUXuEoaw,Ģ,D {pmg%3•X |;&?a8El&'陙dgffXh'y[&\U';(Ǣ%ߙ{cqZ;)X++>Ԭ~9Ab1&bpҽ[>q! bf&sʕ}D^fBXn kj5f`qXm,PbaL6v޵uV驃h*rTq8zL"@,\}6:rXh[Y=|VI,'ȩeKc| M ߌfcuxZYޫ)YĢ'ּk9%µ;mb1;R W άC}yfcsu*䬝b愺y!.HAd/8siԾF}iFQN=''MJHck3RRma ;X !f Xa)/ R?ACgmc6ixf$< k\c)^ؤrY,Ƭ#8b51fM3#.%_ƒ/d餼‹&h-od.5ΥX2ffʠH\/~"-S^bq񨅩ph9]1:EL+wbPsABG3 i癎:S٪`Г6-ۊE߹V~@8+MbXGűY-31oB*^n-SHJ4ˑ̊cA`Pj#JbQX L|pyCrg8Jgh?#;m ғ^q/kE`Q,Bi2Ÿ(.DeEQ] Cb1'04'M,415ET\_\E [NR=؆XbXť\o@OA'V$Y*ݱ سB$㔻T,ug/Q>ULApo87#wX=a mjD9L=kvcb@, *-G5w_s-NJ*WA MbQcXw,$_I0EɂL0"SY,H)^<ŵD ,imA,X@,Da\_+p)yTUĚҷ"XпJO`]! Xi!RC]Kk2 @,ΝX|! IDATV,l JŝfZ( ŬL4oń c}B- 0F;EݎI{x keEcл,Gw sH48 Go^, @,Pwb!Q,l+@,. th(/s%bQT)ݗiR?M,QG|yձXm٫kjG*jԙX)q}^Xbᥰl[}ӃŬbbbq&fDZ,w=!FHCF\.Q=~lM_5[lGfeZ1lB%H,4MLF<΋ُfWVV^}8  8/(,/,NRIU?Kv›n $FG#fe+=A,oX+Sۥp$7١ŢVh,pn~ĈJqOܬD]=K @,.X|u0WX|k6nSKrs[fE0KKLȳG&/NioyCKP>sC#v~bjcv*'b%ߒX\bq_A,U3%ƢIZY LɥU^b2$Xy wJߒ!3ckֱX%g*bs%`[6g9aB,X@,θ+-TX\k#e9G*6Ă=QŊ}5(H `}3j]?m)2aWD$NXXh—T59)l]?_bVl25JV,C,8bq;P, @,UܳRcWsJms×Ovm[FNS/N*Ώ{?~IXT,nםX\ŧ݋nKpc3j(rԾM,X{{bqq#(  @, q2S!X@,bAfqZX|B/daEĢs\+ EOXJ,ik+ @,b M ի?YV @,:ǫXRb! o o[bb Xt'9Y4WʹPnB}X놳X|b {Z(B  @,X1UbqXW@,Xbq⒣XB7Jow6@, ϊmC,lowKQdi 4=b¢ Xbs%2ё,Y4*"bEv&#Ч_{6)bE}6ۯV,b83EXbESwBOL KN,̅Ϊ~ O @,EXvxX,b1q▉ܛUb.vǶ)bEctLw[b" E,b.e_,V @,XbD,ckXIEۛ!XbD,znm6:<}x;;b-SiOoCk^o Xg뮅g,XLX{.YS&bQZ,^fx3N(ԢB,fbᵷWV @,X$G3b['EEXA-Xbun'bv_)P95 )bE}z(Բ3퇩x [Nt /XYwz,)bEȼBB)XLWoX,b 5 A,zbёk3V,3#'%qB?@,h(omzm67b1joYY( bO5 埱xi۞XLXNo&/;#] @,E׈ŻQǢnXxC(ٛhogb (nfB߬X ,*YĢXw7 U-cɒ yePm~ XbP,P}Q 9 ҈koyඊ]bQTw; 7o+nʻc @,]nP/QlΆ{% >6ĢXW,ʵ 18+bɡ{I Xb\,:eB,Rba?oD,bq?!ϬXuɂM@,h(<+bYB,bqEb.YŸXbX,vrmVoXGB,\{[XbQUyvX<"# v? BPK|lbEXQ9l[nB,궷K|lbECXnbqEb1VO,Po,XbQ96&x UG,$wKĢmO,?xH,O,B%7npM@,h"flM\7 uCba" oq{;*Y](>6ĢXcABw8HtbJED^08ۙc @,nGcy<%b1 b1ho%M¾c @,8x U,v6{b.YIV,[78& X4 56VT,XBߤXL vPP+>6Ģ>:y V,yJb}bJPdaB](>6ĢXM(J yt/FF,,](>6ĢXMkU,FN,t"58ko& XG:^rl֯XXxU¼z)g]յnϟ߿?<<:>>>=yn^eb'SW_ᗥ$UNzvv{~%#9==>9>>:<<̾7zQ}/|aswVWM(=6ҽ*X6Eb1ma(rJշ3bks3+sX8:>9_?7PH{ka[_3JQYsxRhN''GGVll וW,,dbEżnMP, 16BEZ,vXBȢX"\-LdeyfBsZʦ`<}Zj_g2(/F,¼bc0P^vkV&XX% )-o[Xł,B,NBf:pyo&Ԣ_3P+_/EZB+rPyEa`&T+ɊEĢƉ<,YmYE_Df10őYxE] *,[,1ɧ$U^!`! ,dŽM(y։)Ys% {BDK^}.vLdGfa3 e^h"ZI SHs݊" WhxoAǏW#f]u{)z 5_Bj"(P;9 eCe-ơ|1M /L.:5!&imWm^ JNBW*)]HgvrpV[BaYEIfF-dn'/2m?=9 忄Z㕌vbl6HRBk8kZ[.طrEZBV..#*^R V"+A([PP& }ϫnP*-`pv28x T^B^3m?C 1%D]I>yY +LZ! ٯ0USaf/: ^BM^hX,](wB,0| %kb*-Ljb s5%(?&xֶӲ6p B,q!rMvb"uɢ-TmnYmY0PafqB-[EEa[_M *lZ W -TK^BW,&nN,[$Ģ-Ԍַ=mYܲgީ -]\)Êd\=a!n{ Qݶ/f꼄ŢbljX 5# qšE޴5 g!C ݴP^c 3C3kA VvEW,6 v7,jXG,Z$Ģr4C3yrJebԋ-7QH0Jc x (O,NUZ~+TB{E<>틅|u#bKXbEY,WP=E p- +oP(v=73 ViE8eXXp0XցEtXDbK;".{ oF?nUEKQFAD)PCK#:T5*dن`%y)|?gs۲+XW:{o6)xE/JV~H+41zi6&T>0hB}B",rʝ; Z|0 QsI-rlrkW*v?#~R .%7[Xb sMS)(oWzfaK-ds0@?9x8?mhAqiBu"5J,wjdqVmoߔY -,nq)h~D"ϫWUX1}xEyrc; -hP+ݻP8++ ,, ZXlD`h<Vu& 94^+B]7ބ:L,n.Nog9"Ηn<ʣB K+|\Q"z[nwkb.T|p=+ ,tBԢ'n],Rx**JX!fQW{Pr)Brx_~Mk|.T~$V24m({‡~jjKtTHV!ZӊWvްhN],#yue!'gcbMf!C -Bp-*:8SxpaŔVu+B=aafuayE7K,nvb.E.CE4:𡅤5PŸ+MSYEL+‘a`P ,yb1Bg]d1(C̢jfǡۥ9EV}:J VҼb X PXo6M~j2,^ -syU.~o`),S g/}Zy-^aEnm]X܅J#YwJ#4,)E -ܛZHn!f&; A,JԴ+{++B`!'Ff&P ._,P—8P~iQB^,:%9~$}lJBbg*t"btpvn(,i(,܄;'[_ʒ8g᧣|IbYjE7ٶ+lbX5hB^X,eZGg5«I-tnqOжE/3|lj|;4SCx&g.hbS^Q -B텁bP7g{,RjB]dǘW݁ZȿOVĴbWcXEŵŧEcde(5 ,6Y w};A.N +b>VT׶l_=(Nͮ ,>mOB]X/~>Y2T}'/L7fE.|naEF%^\A)ڤB AͶ+j\"T ,>zkŢB4G_NEy;_,fu(S ZHl4X$a)hąVT5ԃyEysO~= ,~^?bqbȢ>owB_ʛQ )D"GsQu(oh }== ,z܅j"tr5vJ̢Zd\tQkG ?w (jVZaQ\a^+A`1n_XE;9,bR [qY0Vp XOU$vъySA,FšE2۩ 5߆Z©őSoX{F<lTLR´kx[zPu9XՋ,̢F,m'YH!*EL.c?;8qբZEҊɠEXZ؋OO,fPafQ2 թCZHj"I_-2g{`F#rP"YVtjP҃a`1__6Bfq/BhB-T.&xmd1%07"*d["ڃ"TXX,jYlP,4x62Zt"_)`Oo5[F+^" ,EaEUxqv.E7Kj Q-\LvQ"EK``RLN[T֠y+f|k־C,e,6 `xV"E+.^a:P$ɜ"KzZ~_1oX\XOXR3 Y<]j!.~h(|PaVQvcv}^ P7|X mfoC:T-$0zQ 3 CXOt/_:BBdVb؃ z ĢۅGv*,"6fJQQ..^tb/Η)TH*izmǸB{P )BEEnB]Xxl"`8dmhR\H+*3 s '=~iW|RhilE+R\QkPz{yXX|mԆҳ)E-[Dzaci4+TKM)T8(aEH+R\gfӾb[OXlyˢ[rRfvf!}(y"-\T0ѵ >7g|[E+ iA5^w!ЋP3Eް27[,Hfa n? 4j!E*1z#헦 EQ)TlB;P%p-N+":ܞybpŢ_P)Hf!:jQc sV.L/` ,"/N$j5hBA%h Ÿub/H]EDYpB)FmB>CӴ~ShT*P]kPݼb^q=b1~"n2`9v[vk ~wuY4Zщ+W" E([n8|{YvR*jSA.]PS 8[T?ORhT!R"%h_+VLL,'g6 -u̢Y--\t/33)E )PxSjbYjYբ[DP0[Jᜢ K+qZXXtv]Y#YCIDATwC"E g]?gdRNuNRbF+ܼﶷzL`daq!X';ŝТlK*-&"څ3flѳ2~w|SXT!V(-(Ym',XX:P2TY̢W1E-\0p8FS>BDNaRŠV+n~`P 3z 5< -|hѨEG.]T00h,cgWd> EUTU "ՠj\1>uYJX P"L-6j0^.]^_4okšK!*Eu *V<iz+BXPŬY©=0/{w#Kq`tp}e \"jgSD&5`eFA1%Ž)ޣ"d[qˊl]C'Eoe):JvfK[ZQy[$qq*/lTϜH'{SQUE~uˊl]QlbŊ:7,%o[YK0-ҋ(.nuqϋ90hMP: ?'MDEb^WaQope1/-´H.Hȋ$0lMT:IR$QUErfE~ŷw{fEڢ._={&4MQDEZEVTWPɺb+vsbwTGeb[m1Ŝi_čķ)CS&\Ӯ"ʊd]w{}2ԺHvi1Eu^UƐ_̑(:ϨYRQ1WrV,+]͚CE,k"M-ʸ=/H #!?m#YtRʒ)("͊κbj GE*yҢe[q1EQcH Xʈ&Ң"*zY[W]<^yhC*hiE"ɋ20;Eg:+o[TDUeEc]+/E΢U"J(b/Zg(gdLoUdEk]QuEbϏha1Z΢^s_dU Gb 'ixwhfEa,zK0-_=.EIa1'>d9 {RMkTU1-+Y+wb藡6EH"]\b.2&ʤWeVdۊ][b:jEi\bʋ/X +?ER35]q\sZ|Eb΋20: dX1o[TTUȊ/YV+A;`iQEEI^}ъ 9Њ(~,*ޫb^VY+W<3,VҢLtoQ\I^D1M<3_˦*+W'/-h=.H Neq4VY4-*UQdš]qY|*b<-(b"01'qLө/aTU1iW|ZˆŖ,0-ZmQ\y_qHl@D9yT4"̊+:+1T,EY[q1EUa,u'FqubEEZUVXa,Ңh).|(uSܣ" ΢J *k"." 2lhC%򠘓yTUA fT -P#eJ-s]yPg!i4X\5=*UEZͬ8+ζ>,e_ZiQEe^4 c#e5ba]1@YI\duQ1Z"H)W`V uŖC'@YO"o2.H"~e()ȣ"嬨m_ŪX"_[mE<:1QEeUdˊ0+֯+~uY"Lro1\Y^D1pLZMqbWfEc]+e4,bMZmEX'ce=fUʊ5]q*b,-H"00 XAPM1ETCY^Wl+Ej,".ʼ > +iKuTܫȊu]qXWKiQwA[ušB".)QY+,ʹy]y/|3Y㦨wYq\W]#,z,FUZmE^Q_$¢Țb*ظʾ[ˢQ[dqQBb{2Z"vV UPI-ҸfL (򦘣"oug--l.&J.5lәw*h+{*\ZtӢE]}q|hhEQT gxFXYlK-b)1V5pxMh4E\b"/8-¶hEQ8!4`gHAQ4EaU4b]W\2,wk"O-q2xzK"4+tŎ}bb,"hѼ3a2+N芷kŊk4-mE8%4`H4"O,*UΊW⢨:/c_GϘ u)ҨhV gRXeKf[qQE+0N+ 8#ZAQ6EXʊxvXYeZ"hż\#$zIQUE;+zۊ]vSyZmp]]pHTUgš]q؟2.hiǕD#(EEY/aŪ"<9nO|6+b,Y(FZo )Ű*͊xXNB[usKvPزNVڢ.i|6l`f)*6-+a!,vEa^;uRDQV痫 aPqꋡş?NA7G⬲89- YqzW\5,vEC_aS⥳BXxTZ4"f_F^xٛzQq ahE3/ 㑩'fROtb0*^*E'.}1Wυ1;BUa!,@XX[,ra<51IrU!,@X<.b]d;ϘC5 a!,b,-TpX/bE_ >ZIl*BT +Ŷ8?s0n~kBX arWka!,@X aE5&׷JX: !j ca,0X 0 ca,0*c cX0`,`, cX 1 0 cX`,X`,0 ccX`,0 cX`,0 h**IENDB`mkdocs-material-9.6.4/docs/blog/posts/transforming-material-for-mkdocs.md000066400000000000000000000631771475306445600265560ustar00rootroot00000000000000--- date: 2024-08-19 authors: - squidfunk - alexvoss - katharinalisalin categories: - General description: > We are transforming Material for MkDocs to ensure its community continues to thrive and doubling down on our commitment to Open Source. title: How we're transforming Material for MkDocs --- # Transforming Material for MkDocs __We are working on an amazing set of features which has required some behind-the-scenes work we are now ready to share in a series of posts. Here, we give an overview of our goals, features in the making, things that kept us up at night, and our commitment to Open Source.__ We know it's been quite a while since our last update, which is why we're eager to share what's happening in and around Material for MkDocs with you. For the largest part of 2024, we've been focused on transforming the core of Material for MkDocs preparing the ground for new, interconnected features that are amongst the most frequently requested. This article is the first in a series where we'll explore how we aim to support our users through improved information retrieval, provide better support for multi-lingual sites and versioning, as well as improve the overall authoring experience. We outline our vision for the projects' evolution and describe what we have been working on. In this and the coming blog posts, we will share our progress with you, and we're excited to hear your thoughts. _Please note that this post includes several technical details in the footnotes, specifically on challenges. Feel free to skip them if you're not interested in the specifics._ ## A success story In 2024, Material for MkDocs has firmly established itself as a leading tool in the documentation framework landscape, with more than 5 million downloads each month as of this writing. What began as @squidfunk's personal project has evolved into a versatile resource for creating comprehensive documentation sites, personal websites, blogs, and notably, for managing knowledge both within and outside of organizations. With almost [50,000] public GitHub projects depending on Material for MkDocs, it's clear that the framework has made a substantial impact. Tens of thousands of authors rely on us to deliver documentation to millions of users each month.[^1] Beyond its adoption by [many popular Open Source projects], Material for MkDocs is trusted and financially supported by major corporations such as [AWS], [Microsoft], and [Siemens], among many other companies and individuals. We're very grateful for the continued support we receive, which allows us to devote our time to this project, making writing documentation enjoyable. [^1]: We've collected invaluable feedback from enterprises and other Open Source maintainers, which revealed that the actual numbers are even higher. Many organizations leverage the framework within private infrastructures, such as self-hosted platforms like GitLab, for internal knowledge management. This suggests that the true reach of Material for MkDocs extends far beyond what is publicly visible. [50,000]: https://github.com/squidfunk/mkdocs-material/network/dependents [many popular Open Source projects]: https://github.com/squidfunk/mkdocs-material?tab=readme-ov-file#trusted-by- [AWS]: https://x.com/squidfunk/status/1740389441284579767 [Microsoft]: https://x.com/squidfunk/status/1801909506391105840 [Siemens]: https://x.com/squidfunk/status/1699799988069646761 Our users particularly appreciate Material for MkDocs for its ease of use and straightforward setup. It simplifies the process by handling the complexities of web technologies for you, so you can build a production-ready static site in minutes without needing to invest years into mastering frontend development or JavaScript. This makes it accessible to a wide range of users, regardless of their technical background. Additionally, Material for MkDocs is MIT-licensed and free to use, which has contributed to its widespread adoption, and allows everybody to build sophisticated documentation sites at no cost. Our vision is to provide you with the tools that allow you to __own your docs__, enable you to develop your own processes for producing amazing documentation and to avoid being locked into costly subscription services even for doing simple things. We believe it is important that these tools should be easy to set up and configure to suit your needs but should also give you the freedom to adapt them further, if needed. This is why we are always striving to ensure our architectures are modular and future-proof.[^2] [^2]: The [built-in plugins] that Material for MkDocs ships perfectly outline this principle, as they are complementary to each other and can be used in combination to build sophisticated pipelines. This modular design allows users to pick and choose the features they need, ensuring that the framework remains lightweight and flexible. For instance, the [privacy plugin] can work together with the [optimize plugin] so that external assets can be passed through the same optimization pipeline as the rest of your documentation. This means you can store and edit unoptimized files outside of your repository, and let both plugins automatically build an optimized site for you. [built-in plugins]: ../../plugins/index.md [privacy plugin]: ../../plugins/privacy.md [optimize plugin]: ../../plugins/optimize.md ## Challenges Now, let's talk about our journey and the particular challenges we're addressing. With "we", we're referring to the incredible team that @squidfunk was fortunate to build around his original work, thanks to the financial support he receives from his [sponsors]. This remarkable team includes @alexvoss and @katharinalisalin, whose invaluable contributions in research, development, and community support have been essential to the project's ongoing success. Together, we've started exploring new technologies, incorporating the feedback we received from our users, and rethinking critical components from first principles, serving our growing community one of the best frameworks to create documentation. [sponsors]: https://github.com/sponsors/squidfunk This section highlights the key areas we've been focusing on. ### Search and discovery From our perspective, search is a cornerstone of any effective documentation site, enabling users to swiftly locate the information they need. From the start, we've relied on [Lunr.js], a popular client-side search library that has streamlined the deployment of documentation sites without needing an external service. Over the years, Lunr.js has served us well by answering millions of queries on sites built with Material for MkDocs. Yet, as our users' needs evolved, we encountered limitations that proved difficult to overcome. [Lunr.js]: https://github.com/olivernn/lunr.js We learned that the [BM25 ranking algorithm] at the core of Lunr.js (as in many other search implementations) isn't well-suited for effective and stable typeahead. Adding new documents can influence existing rankings, requiring manual adjustments[^3] that are cumbersome and hard to scale. Furthermore, Lunr.js has performance issues that stem from its design not fully leveraging modern JavaScript engines and optimizations, making it slower and memory-intensive.[^4] [^3]: Boosting documents in [BM25][BM25 ranking algorithm] can lead to challenges, particularly with a changing corpus of documents. Relevance is calculated based on term frequency and the importance of terms across the entire corpus. Boosting a document involves adjusting its weight to make it more prominent in search results. As new documents are added or existing ones are modified, the overall distribution of term frequencies and their importance can shift. This recalibration can diminish the effectiveness of the boost, making it harder to maintain consistent ranking across a changing dataset. Essentially, the boosted documents may not stay as prominent or relevant as intended, leading to imbalances and scalability issues in search results. [^4]: Lunr.js uses JavaScript objects to index and manage search data, which introduces inefficiencies due to how JavaScript engines handle object operations. JavaScript engines optimize performance using techniques like inline caching and object shape optimization. However, these optimizations rely on predictable and consistent object structures. The dynamic nature of Lunr.js' indexing — where documents can have varying structures — prevents the engine from applying these optimizations effectively. This means that while JavaScript engines can optimize for fixed, predictable object structures, they struggle with the polymorphic and fluid nature of Lunr.js's indexing, leading to performance issues as the amount of data grows. [BM25 ranking algorithm]: https://en.wikipedia.org/wiki/Okapi_BM25 Over the last years, we've invested substantially into [improving the search experience]. For instance, expanding Lunr.js' functionality to add support for [rich search previews] and [tokenizer lookahead] demanded substantial engineering effort. Lunr.js allows to customize tasks such as stemming, stopword filtering, and trimming with [pipeline functions], but it makes it particularly hard to add extensions like term highlighting or alternative ranking methods. Compounded by the fact that Lunr.js has been [unmaintained since 2020], it became clear that we needed to find a more powerful solution. We've looked at alternative JavaScript-based libraries to keep our client-side search, but none met our requirements or lived up to our expectations. [improving the search experience]: search-better-faster-smaller.md [rich search previews]: search-better-faster-smaller.md#rich-search-previews [tokenizer lookahead]: search-better-faster-smaller.md#tokenizer-lookahead [pipeline functions]: https://lunrjs.com/guides/customising.html#pipeline-functions [unmaintained since 2020]: https://github.com/olivernn/lunr.js/releases/tag/ To address these challenges, we've embarked on developing a new search system from first principles that not only matches but already exceeds the capabilities of Lunr.js. Built from the ground up, this system is faster, more compact, and most importantly: modular. It is based on a growing core evolving around two core concepts we isolated to be essential – engines and plugins – allowing for flexible configuration and assembly of components like text indexing, vector embeddings, filtering, ranking, highlighting, and more. Every part of it can be replaced or extended, enabling users to tailor the search system to their specific needs. Our new search system, which we will release as a separate MIT-licensed Open Source project, is designed to handle a wide range of scenarios — from small blogs to large documentation projects. Of course, it supports offline use and integrates seamlessly with both client and server environments. The advanced ranking system provides fine-tuned control, and integration with third-party services is now more straightforward. __:octicons-goal-16: Goal – Empower users to quickly find the information they need while freeing authors from managing external services, by providing a search system that adapts to diverse content types.__ You might wonder why it's not yet available. The process of developing this system from scratch and uncovering its potential has led us to re-evaluate core concepts of Material for MkDocs. As a result, we've decided to postpone the release of the new search system to integrate it into the broader update that we've started to work on. If you keep on reading, you'll learn about further reasons why we've decided to follow this approach. We're excited to share more details about this update in one of the next posts in this series. ### Translations and versioning Supporting multi-language sites in MkDocs is the [most requested feature on our discussion board] and in conversations with users, yet it presents significant challenges, as MkDocs does not natively support it. The same applies to versioning, which also involves synchronisation of multi-project builds. While the MkDocs ecosystem has developed [various plugins and tools] to address these issues, there is still substantial untapped potential. We began exploring these areas but quickly encountered problems that hindered our progress. [most requested feature on our discussion board]: https://github.com/squidfunk/mkdocs-material/discussions/2346 [various plugins and tools]: https://github.com/mkdocs/catalog?tab=readme-ov-file#-site-building-site-management As you may know, our initial effort involved the [projects plugin] that aims to extend MkDocs to add support for multi-project environments as a solid foundation to support multi-language sites and versioning. Unfortunately, we encountered significant challenges due to MkDocs' internal architecture and design constraints, which we're working actively on resolving.[^5] [^5]: When developing the [projects plugin], we initially made [good progress], including adding support for nested projects and allowing for a tree structure where sub-projects can have further sub-projects. However, we quickly encountered difficulties, particularly with cross-project navigation. To illustrate, imagine that each project can link to any other project, which makes handling these interconnections complex, especially when dealing with circular dependencies — such as Project A linking to Project B and vice versa. Implementing multi-project support in MkDocs is particularly challenging due to the lack of an official programmatic API, which complicates efforts to extend its functionality. Moreover, resolving navigation issues before building projects is crucial for ensuring proper interconnectivity. These challenges combined made the development of the projects plugin a complex endeavor. [projects plugin]: ../../plugins/projects.md [good progress]: https://github.com/squidfunk/mkdocs-material/discussions/5800 __:octicons-goal-16: Goal – Enable scaling documentation to any size or team structure by offering seamless methods for integrating multiple documentation projects, whether they involve different languages, versions, or distinct sections of an overall body of work.__ As a result, we are developing a new approach to offer a more comprehensive and robust solution for both multi-language support and versioning. This new approach also intersects with adjacent functionalities like search, as many of our users are interested in [federated search] capabilities that combine results from multiple documentation sites into a unified search interface. Overcoming this challenge is one of the major hurdles we need to address before releasing the new search system. [federated search]: https://github.com/squidfunk/mkdocs-material/issues/5230 ### Editing and collaboration We had considered developing a live editor in response to MkDocs' [performance issues with large projects], which in most cases stem from compute-intensive plugins that don't employ caching. A [proof of concept] based on [Pyodide] (= running Python in the browser) [generated significant interest] among users and prompted many organizations and individuals to share their collaborative workflows for feedback. Sadly, implementing this live editor proved to be very challenging, as it would require rebuilding substantial parts of MkDocs.[^6] After discontinuing work on this approach, our progress with multi-project support has renewed our belief that we can finally solve the sluggish editing experience that was reported several times over the last years.[^7] [performance issues with large projects]: https://github.com/mkdocs/mkdocs/issues/3695#issuecomment-2093299518 [proof of concept]: https://x.com/squidfunk/status/1338252230265360391 [Pyodide]: https://pyodide.org/ [generated significant interest]: https://github.com/squidfunk/mkdocs-material/issues/2110 [^6]: Our [proof of concept] supported some features of Material for MkDocs but didn't cover them all. For instance, integrating support for icons or linking between documents would have necessitated reimplementing parts of MkDocs to bypass a full rebuild — something we obviously wanted to avoid. Additionally, certain links, such as those to blog posts generated from schemas, are not merely translated but computed dynamically, which means they cannot be inferred by replacing the `.md` extension with `.html`. [^7]: After [we raised this issue] with the maintainers of MkDocs again[^8], and [maintainership changed] mid 2024, work on a [ground-up rewrite] that aims to address slow reloads by [rendering only the page currently being built] has started. It's still unclear how this rewrite will integrate with the requirements of existing plugins. Complex plugins such as [mkdocstrings], or our [built-in blog] and [tags] plugins require a coordinated build of all pages to accurately resolve links between pages and to computed resources, which cannot be determined without building the entire project. __Update__{ title="August 21, 2024" }: The new maintainer now publicly stated that he's working towards a new version of MkDocs that [does not require or support plugins], and mentions it will be equally capable through offering customization via templating, themes, and styling, which he also mentioned to us and several other users in [a team call on August 1]. In this call, [we raised objections multiple times] in regards to how this will impact the ecosystem, to no avail. No intention or roadmap for plugin support was provided. This development is orthogonal to our goal empowering users and organizations to adapt the core framework to their requirements by the means of modularity. We're working on resolving this situation, and will provide a way forward for our community. [we raised this issue]: https://github.com/mkdocs/mkdocs/issues/3695 [maintainership changed]: https://github.com/mkdocs/mkdocs/discussions/3677 [ground-up rewrite]: https://github.com/mkdocs/sketch [rendering only the page currently being built]: https://github.com/mkdocs/mkdocs/issues/3695#issuecomment-2117939743 [mkdocstrings]: https://mkdocstrings.github.io/ [built-in blog]: ../../plugins/blog.md [tags]: ../../plugins/tags.md [does not require or support plugins]: https://github.com/mkdocs/mkdocs/discussions/3815#discussioncomment-10398312 [a team call on August 1]: https://github.com/mkdocs/mkdocs/discussions/3671#discussioncomment-10164237 [we raised objections multiple times]: https://github.com/mkdocs/mkdocs/discussions/3671#discussioncomment-10215445 [^8]: Previously raised issues include [#2418], [#2384], and [#1900]. [#1900]: https://github.com/mkdocs/mkdocs/issues/1900 [#2384]: https://github.com/mkdocs/mkdocs/issues/2384 [#2418]: https://github.com/mkdocs/mkdocs/issues/2418 This brings us to collaboration, which wasn't initially on our list of priorities. However, throughout 2024, conversations with various organizations and maintainers of popular Open Source projects highlighted a frequent request for enhanced collaboration features. Many users expressed a need for capabilities that would allow non-technical team members to suggest and make changes to the documentation. We're genuinely grateful for this feedback, as it has come at a pivotal time. We recognize the need to streamline tracking and discussing changes, as well as to facilitate drive-by contributions. __:octicons-goal-16: Goal – Everyone, regardless of their technical skill level, can easily work on and improve the documentation and contribute to a growing corpus of knowledge.__[^9] [^9]: We are actively aligning our future development efforts to address this, recognizing it as a key area for improvement. While it's not something we can deliver immediately, we are committed to making this vision a reality in our work. This focus on collaboration aligns with how knowledge is managed in enterprises. In large organizations, documentation often exists in [information silos] — decentralized yet essential repositories of information. We understand the need to be able to unify these disparate sources into a coherent body of knowledge while preserving decentralized ownership. This also nicely aligns with our previously outlined work on multi-project support, as well as the new search system to implement [federated search] among multiple projects. [information silos]: https://en.wikipedia.org/wiki/Information_silo ### Large Language Models (LLMs) Almost a year ago, we introduced an [experimental chatbot] on our documentation site. It quickly became one of the most anticipated features, with users requesting the ability to deploy similar functionality on their own sites, underscoring the growing demand for interactive documentation tools. However, we found that adding to the myriad of existing chat solutions and simply building another thin wrapper on top of ChatGPT is nonsense. __:octicons-goal-16: Goal – We're envisioning creating a unified interface that seamlessly integrates advanced search, chat, and summarization features, providing an interactive documentation experience.__ [experimental chatbot]: https://github.com/squidfunk/mkdocs-material/discussions/6240 As we delved into this ambitious project, we gained valuable insights from user feedback. Users began interacting with the chatbot in their native languages, an outcome we hadn't anticipated given that our documentation is in English. Remarkably (or obviously to those that work on LLMs year round), the chatbot responded in the same language. This ability of LLMs is one of the genuinely exciting features of these machine learning models as it has the potential to improve the accessibility of the documentation. However, while we employed state-of-the-art RAG methodologies, the results were mixed, and occasional hallucinations surfaced. These experiences led us to prioritize enhancing our search capabilities before integrating LLM-based features. Building a search engine from scratch was already a substantial effort, and adding more complexity without a solid search foundation would be premature. By rearchitecting our search functionalities, we aim to create a robust platform that will seamlessly support advanced information retrieval and deliver a cohesive interactive documentation experience. ## Team, transparency, and growth While we navigate the challenges and explore the opportunities of this project, we consider it essential to demonstrate how we're building a solid foundation for its continued growth and success. Please consider this an overview rather than a formal roadmap — our detailed plans are in the works. The goals we've highlighted represent the most impactful areas we aim to address. Thanks to the generous support from our sponsors, we're fortunate to be assembling a team capable of dedicating significant time and expertise to this endeavor. This newfound capacity allows us to delve deeper into core development while also engaging more comprehensively with our user community. A special mention goes to @kamilkrzyskow, one of our invaluable [community experts], who has been essential in supporting users and fostering discussions on our platform. [community experts]: ../../insiders/community-experts-program/index.md With the team's support, @squidfunk can concentrate on the heart of development, while we have begun investing in user research. This effort is helping us understand how organizations and individuals interact with our tools, guiding the project's future direction based on real feedback from numerous conversations with users and companies. Looking to expand our team further, we are committed to improving transparency and communication. Our previous work often happened behind the scenes due to time constraints, but we're now focused on making our processes more open and inviting for new contributors. By embracing this collaborative approach, we aim to enhance our tools and ensure they meet the evolving needs of our community. ## What's ahead of us As we look into the future, some of the groundwork we're laying now is crucial for the exciting developments on the horizon. Many of the initiatives we've discussed represent foundational work that will set the stage for much more ambitious and innovative features. Once these core elements are in place, we'll deliver a range of exciting new functionalities that align with our vision and goals. In the coming months, we'll be sharing more details about our plans and how they will contribute to our overarching objectives. While growth and innovation are at the forefront of our plans, we want to assure you that our core values remain unchanged. We are committed to maintaining the principles that have guided us thus far, ensuring that our growth is both healthy and consistent: - Against recent industry trends with companies moving away from core ideas of Open Source, we are doubling down on our commitment to Open Source because we believe it's at the heart of the value proposition of our work and the [docs as code] approach. [docs as code]: https://www.writethedocs.org/guide/docs-as-code/ - Our [organic approach to growth] is part of this strategy as it keeps us independent of individual funding sources and pressures to provide a return on investment, which is what causes many other projects to turn away from the principles of Open Source. [organic approach to growth]: https://star-history.com/#squidfunk/mkdocs-material - Likewise, we are driven by the needs of the community for a rich ecosystem of adaptations of the core framework. Extensibility and modularity are key for this and we are working hard to improve the developer experience by providing clear interfaces. Stay tuned for updates as we continue to build on our progress and explore new possibilities. We're excited about the future and look forward to sharing more with you as we advance. _Martin, Alex and Kathi_ :octicons-heart-fill-24:{ .mdx-heart .mdx-insiders } mkdocs-material-9.6.4/docs/browser-support.md000066400000000000000000000064721475306445600213040ustar00rootroot00000000000000# Browser support Material for MkDocs goes at great lengths to support the largest possible range of browsers while retaining the simplest possibilities for customization via modern CSS features like [custom properties] and [mask images]. [custom properties]: https://caniuse.com/css-variables [mask images]: https://caniuse.com/mdn-css_properties_mask-image ## Supported browsers The following table lists all browsers for which Material for MkDocs offers full support, so it can be assumed that all features work without degradation. If you find that something doesn't look right in a browser which is in the supported version range, please [open an issue]:
| Browser | Version | Release date | | | Usage | | ------------------------------------ | ------: | -----------: | ------: | -----: | ---------: | | | | | desktop | mobile | overall | | :fontawesome-brands-chrome: Chrome | 49+ | 03/2016 | 25.65% | 38.33% | 63.98% | | :fontawesome-brands-safari: Safari | 10+ | 09/2016 | 4.63% | 14.96% | 19.59% | | :fontawesome-brands-edge: Edge | 79+ | 01/2020 | 3.95% | n/a | 3.95% | | :fontawesome-brands-firefox: Firefox | 53+ | 04/2017 | 3.40% | .30% | 3.70% | | :fontawesome-brands-opera: Opera | 36+ | 03/2016 | 1.44% | .01% | 1.45% | | | | | | | __92.67%__ |
Browser support matrix sourced from [caniuse.com].[^1]
[^1]: The data was collected from [caniuse.com] in January 2022, and is primarily based on browser support for [custom properties], [mask images] and the [:is pseudo selector] which are not entirely polyfillable. Browsers with a cumulated market share of less than 1% were not considered, but might still be fully or partially supported. Note that the usage data is based on global browser market share, so it could in fact be entirely different for your target demographic. It's a good idea to check the distribution of browser types and versions among your users. [open an issue]: https://github.com/squidfunk/mkdocs-material/issues/new/choose [caniuse.com]: https://caniuse.com/ [:is pseudo selector]: https://caniuse.com/css-matches-pseudo [browser support]: #supported-browsers [built-in privacy plugin]: plugins/privacy.md ## Other browsers Albeit your site might not look as perfect as when viewed with a modern browser, the following older browser versions might work with some additional effort: - :fontawesome-brands-firefox: __Firefox 31-52__ – icons will render as little boxes due to missing support for [mask images]. While this cannot be polyfilled, it might be mitigated by hiding the icons altogether. - :fontawesome-brands-edge: __Edge 16-18__ – the spacing of some elements might be a little off due to missing support for the [:is pseudo selector], which can be mitigated with some additional effort. - :fontawesome-brands-internet-explorer: __Internet Explorer__ - no support, mainly due to missing support for [custom properties]. The last version of Material for MkDocs to support Internet Explorer is . mkdocs-material-9.6.4/docs/changelog/000077500000000000000000000000001475306445600175035ustar00rootroot00000000000000mkdocs-material-9.6.4/docs/changelog/index.md000066400000000000000000002760001475306445600211410ustar00rootroot00000000000000# Changelog ## Material for MkDocs ### 9.6.4 February 12, 2025 { id="9.6.4" } - Fixed #7985: Blog content sometimes not stretching to full width - Fixed #7978: Navigation rendering bug in Safari 18.3 ### 9.6.3 February 7, 2025 { id="9.6.3" } - Fixed rendering of arrow heads in Mermaid.js class diagrams - Fixed #7960: Tags plugin crashes on numeric metadata titles ### 9.6.2 February 3, 2025 { id="9.6.2" } - Fixed #7955: Excessively long words don't break on narrow screens - Fixed #7947: Scope setting interferes with outdated version banner ### 9.6.1 January 31, 2025 { id="9.6.1" } - Fixed #7943: Tags plugin crashing due to merge error ### 9.6.0 January 31, 2025 { id="9.6.0" } - Added meta plugin - Rewrite of the tags plugin - Added support for allow lists in tags plugin - Added support for and custom sorting in tags plugin - Added support for related links in blog plugin - Added support for custom index pages in blog plugin - Added support for navigation subtitles - Fixed #7924: Anchors might require two clicks when using instant navigation ### 9.5.50 January 18, 2025 { id="9.5.50" } - Fixed #7913: Social plugin renders attribute lists in page title ### 9.5.49 December 16, 2024 { id="9.5.49" } - Adjusted title color in dark mode for all supported Mermaid.js diagrams - Fixed #7803: Privacy plugin crashes on generated files - Fixed #7781: Mermaid.js flow chart title not visible in dark mode ### 9.5.48 December 8, 2024 { id="9.5.48" } - Fixed #7774: Disabling social cards doesn't work ### 9.5.47 December 1, 2024 { id="9.5.47" } - Fixed #7750: Numeric tags break search - Fixed #7748: Blog plugin breaks when using future drafts (9.5.45 regression) ### 9.5.46 November 25, 2024 { id="9.5.46" } - Added support for removing `preload` hints in privacy plugin - Fixed #7734: Code blocks in h5 headlines are uppercased - Fixed #7725: Blog plugin crashing on missing timezone (9.5.45 regression) ### 9.5.45 November 20, 2024 { id="9.5.45" } - Reduced size of Docker image through multi-stage build - Fixed #7708: Blog plugin crashing on YAML dates with timezones ### 9.5.44 November 5, 2024 { id="9.5.44" } - Fixed #7672: Font CSS 404's when using privacy plugin (9.5.43 regression) ### 9.5.43 October 31, 2024 { id="9.5.43" } - Added support for external images in SVGs in privacy plugin - Fixed #7651: Privacy plugin doesn't handle quoted URLs in CSS ### 9.5.42 October 20, 2024 { id="9.5.42" } - Fixed #7625: Invalid encoding of boolean attributes in privacy plugin - Fixed #7624: Crash when disabling privacy plugin (9.5.41 regression) ### 9.5.41 October 15, 2024 { id="9.5.41" } - Fixed #7619: Improved tooltip on logo disappears after instant navigation - Fixed #7616: Race condition in built-in privacy plugin when inlining assets - Fixed #7615: Comments and "Was this page helpful?" visible when printing ### 9.5.40 October 10, 2024 { id="9.5.40" } - Updated Latvian translations - Fixed #7597: Social cards not using site name on home page ### 9.5.39 September 29, 2024 { id="9.5.39" } - Fixed #7226: not staying on page when using mike's canonical versioning ### 9.5.38 September 26, 2024 { id="9.5.38" } - Added Albanian translations ### 9.5.37 September 25, 2024 { id="9.5.37" } - Added 4th and 5th level ordered list styles - Fixed #7548: Tags have no spacing in search ### 9.5.36 September 21, 2024 { id="9.5.36" } - Fixed #7544: Social cards incorrectly rendering HTML entities - Fixed #7542: Improved support for setting custom list styles ### 9.5.35 September 18, 2024 { id="9.5.35" } - Fixed #7498: Search not showing for Vietnamese language ### 9.5.34 August 31, 2024 { id="9.5.34" } - Updated Mermaid.js to version 11 (latest) ### 9.5.33 August 23, 2024 { id="9.5.33" } - Fixed #7453: Incorrect position of tooltip when sorting table ### 9.5.32 August 19, 2024 { id="9.5.32" } - Fixed RXSS vulnerability via deep link in search results - Added support for fetching latest release from GitLab ### 9.5.31 August 2, 2024 { id="9.5.31" } - Fixed #7405: DockerHub missing images > 9.5.27 due to change in Alpine/APK ### 9.5.30 July 23, 2024 { id="9.5.30" } - Fixed #7380: Navigation icons disappearing on hover in Safari - Fixed #7367: Blog readtime computation includes SVG text content ### 9.5.29 July 14, 2024 { id="9.5.29" } - Updated Galician translations - Fixed #7362: Annotations in figure captions rendering incorrectly ### 9.5.28 July 2, 2024 { id="9.5.28" } - Fixed #7313: Improved tooltips mounted in sidebar when feature is disabled ### 9.5.27 June 16, 2024 { id="9.5.27" } - Updated Estonian translations ### 9.5.26 June 6, 2024 { id="9.5.26" } - Fixed #7232: Tab switches on scroll when linking tabs (9.5.19 regression) - Fixed #7230: Blog author avatar broken when referring to local file ### 9.5.25 May 27, 2024 { id="9.5.25" } - Fixed #7209: Tags plugin crashing on numeric tags ### 9.5.24 May 20, 2024 { id="9.5.24" } - Fixed #7187: Version selector title rendering issue ### 9.5.23 May 15, 2024 { id="9.5.23" } - Fixed #7183: Edge case in anchor navigation when using instant navigation - Fixed #6436: Version selector not showing version alias ### 9.5.22 May 12, 2024 { id="9.5.22" } - Fixed #7170: Copy button adds empty lines for line spans (9.5.18 regression) - Fixed #7160: Version switching doesn't stay on page (9.5.5 regression) - Fixed #5619: Links in Mermaid.js diagrams not discernible ### 9.5.21 May 3, 2024 { id="9.5.21" } - Fixed #7133: Ensure latest version of Mermaid.js is used - Fixed #7125: Added warning for dotfiles in info plugin ### 9.5.20 April 29, 2024 { id="9.5.20" } - Fixed deprecation warning in privacy plugin (9.5.19 regression) - Fixed #7119: Tags plugin emits deprecation warning (9.5.19 regression) - Fixed #7118: Social plugin crashes if fonts are disabled (9.5.19 regression) - Fixed #7085: Social plugin crashes on Windows when downloading fonts ### 9.5.19 April 25, 2024 { id="9.5.19" } - Updated MkDocs to 1.6 and limited version to < 2 - Updated Docker image to latest Alpine Linux - Removed `setup.py`, now that GitHub fully understands `pyproject.toml` - Improved interop of social plugin with third-party MkDocs themes - Fixed #7099: Blog reading time not rendered correctly for Japanese - Fixed #7097: Improved resilience of tags plugin when no tags are given - Fixed #7090: Active tab indicator in nested content tabs rendering bug ### 9.5.18 April 16, 2024 { id="9.5.18" } - Refactored tooltips implementation to fix positioning issues - Fixed #7044: Rendering glitch when hovering contributor avatar in Chrome - Fixed #7043: Highlighted lines in code blocks cutoff on mobile - Fixed #6910: Incorrect position of tooltip for page status in sidebar - Fixed #6760: Incorrect position and overly long tooltip in tables - Fixed #6488: Incorrect position and cutoff tooltip in content tabs ### 9.5.17 April 2, 2024 { id="9.5.17" } - Updated Serbian translations - Fixed #7003: Confusing keyboard interaction for palette toggle - Fixed #7001: Blog posts now show time by default (9.5.16 regression) - Fixed edge case in backport of social plugin font loading logic ### 9.5.16 March 31, 2024 { id="9.5.16" } - Updated Russian translations - Improved error handling and reporting in social plugin - Improved error handling and reporting in privacy plugin - Fixed blog plugin not allowing to use time in format strings - Fixed #6983: Social plugin crashes because of Google Fonts API change ### 9.5.15 March 23, 2024 { id="9.5.15" } - Reverted fix for transparent iframes (9.5.14) - Fixed #6929: Interference of social plugin and auto dark mode - Fixed #6938: Giscus shows dark background in light mode (9.5.14 regression) ### 9.5.14 March 18, 2024 { id="9.5.14" } - Added support for hiding versions from selector when using mike - Added init system to improve signal handling in Docker image - Fixed edge cases in exclusion logic of info plugin - Fixed inability to reset pipeline in search plugin - Fixed syntax error in Finnish translations - Fixed #6917: UTF-8 encoding problems in blog plugin on Windows - Fixed #6889: Transparent iframes get background color ### 9.5.13 March 6, 2024 { id="9.5.13" } - Updated Slovak translations - Improved info plugin interop with projects plugin - Improved info plugin inclusion/exclusion logic - Fixed info plugin not gathering files recursively - Fixed #6750: Ensure info plugin packs up all necessary files ### 9.5.12 February 29, 2024 { id="9.5.12" } - Fixed #6846: Some meta tags removed on instant navigation (9.4.2 regression) - Fixed #6823: KaTex not rendering on instant navigation (9.5.5 regression) - Fixed #6821: Privacy plugin doesn't handle URLs with encoded characters ### 9.5.11 February 24, 2024 { id="9.5.11" } - Updated Finnish translation ### 9.5.10 February 19, 2024 { id="9.5.10" } - Updated Bahasa Malaysia translations - Fixed #6783: Hide continue reading link for blog posts without separators - Fixed #6779: Incorrect positioning of integrated table of contents ### 9.5.9 February 10, 2024 { id="9.5.9" } - Fixed navigation pruning with tabs and sections enabled ### 9.5.8 February 7, 2024 { id="9.5.8" } - Added Tamil translations - Updated Esperanto translations - Fixed relative images not being resolved for instant navigation ### 9.5.7 February 3, 2024 { id="9.5.7" } - Fixed #6731: Small images in figures are not centered - Fixed #6719: Instant navigation breaks table of contents (9.5.5 regression) ### 9.5.6 January 28, 2024 { id="9.5.6" } - Fixed #6700: Missing styles for Mermaid.js labels with Markdown ### 9.5.5 January 24, 2024 { id="9.5.5" } - Updated Tagalog translations - Updated Pillow to 10.2 to mitigate security vulnerabilities - Improved resilience of instant navigation - Fixed #6687: Updated Mermaid.js to version 10.7.0 (latest) - Fixed #6652: Keyboard events in custom elements captured - Fixed #6582: Instant navigation doesn't correctly handle alternate URLs - Fixed #6565: Instant navigation doesn't allow for `onclick` handlers - Fixed #6345: Instant navigation sometimes breaks browser back button - Fixed #6334: Instant navigation doesn't correctly position anchors (Safari) - Fixed #6275: Instant navigation doesn't correctly resolve after 404 - Fixed #6102: Instant navigation reloads page on same link navigation ### 9.5.4 January 15, 2024 { id="9.5.4" } - Fixed #6645: Local storage with invalid value can break site - Fixed #6635: Tags icons before default ignored if default is set ### 9.5.3 December 23, 2023 { id="9.5.3" } - Limited version range of MkDocs to < 1.6 - Updated Macedonian translations - Fixed #6520: Group plugin crashes when using mike - Fixed #6494: Hide author's email address if disabled in git-authors plugin ### 9.5.2 December 11, 2023 { id="9.5.2" } - Fixed types for `slugify` settings in blog plugin config - Fixed #6469: Horizontal scrollbars on MathJax containers ### 9.5.1 December 8, 2023 { id="9.5.1" } - Updated Greek translations - Fixed #6464: Privacy plugin cannot be enabled - Fixed #6461: Sorting blog posts ignores time component in date ### 9.5.0 December 7, 2023 { id="9.5.0" } Merged Insiders features of 'Goat's Horn' funding goal - Added privacy plugin: automatic downloading of external assets - Added support for card grids and grid layouts - Added support for improved tooltips - Added support for content tabs anchor links (deep linking) - Added support for automatic dark/light mode - Added support for document contributors ### 9.4.14 November 26, 2023 { id="9.4.14" } - Added support for linking authors in blog posts ### 9.4.13 November 26, 2023 { id="9.4.13" } - Fixed #6365: Blog plugin pagination links to previous pages broken - Fixed #5758: Updated Mermaid.js to version 10.6.1 (latest) ### 9.4.12 November 24, 2023 { id="9.4.12" } - Improved blog plugin to generate Unicode-aware slugs by default - Fixed non-deterministic order of categories in blog plugin ### 9.4.11 November 23, 2023 { id="9.4.11" } - Fixed #6364: Search plugin crashing when enabling theme while serving - Fixed blog plugin crashing when disabling pagination ### 9.4.10 November 19, 2023 { id="9.4.10" } - Fixed #6356: Version selector can't be disabled via mike's configuration - Fixed #6281: Navigation not rendering due to Safari bug (9.4.2 regression) - Fixed #6261: Navigation expansion animates on first load (9.4.2 regression) ### 9.4.9 November 17, 2023 { id="9.4.9" } - Fixed #6344: Long entries cutoff in table of contents - Fixed #6336: Custom template for glob archive not working with pagination - Fixed #6328: Blog plugin crashes for locales with dashes, e.g. `pt-BR` - Fixed #6327: Copy-to-clipboard button doesn't trim trailing line feed - Fixed #6302: Version strings not matched when using mike, only aliases - Fixed instant navigation progress indicator for gzipped content in Chrome - Fixed rendering bug on details marker rotation in Firefox ### 9.4.8 November 5, 2023 { id="9.4.8" } - Fixed invalid local address replacement when using instant loading - Fixed #6275: Crash after navigation caused 404 when using instant loading ### 9.4.7 October 27, 2023 { id="9.4.7" } - Added Azerbaijani translations ### 9.4.6 October 14, 2023 { id="9.4.6" } - Updated Danish and Norwegian (Nynorsk) translations - Fixed #6169: Blog post metadata layout overflows on small screens ### 9.4.5 October 10, 2023 { id="9.4.5" } - Fixed sidebar auto-positioning (9.4.2 regression) - Fixed #6166: Improve group plugin compatibility with Python < 3.10 - Fixed #6157: Hiding tags does not work (9.4.3 regression) ### 9.4.4 October 5, 2023 { id="9.4.4" } - Added support for overriding text to be copied for code blocks - Fixed broken layout in some browsers at breakpoints when using zoom - Fixed #6132: Incomplete search highlighting for code blocks in titles ### 9.4.3 October 2, 2023 { id="9.4.3" } - Added support for instant navigation progress indicator - Improved spacing and alignment of tags - Moved back-to-top button into separate partial - Fixed #6104: Indentation for some code blocks lost in search - Fixed #6094: Blog post metadata overlaps with footer on small screens - Fixed #6069: Blog plugin crashes for categories with non-ASCII names __Updated templates__ ([diff](https://github.com/squidfunk/mkdocs-material/compare/9.4.2...9.4.3)) - `base.html` ### 9.4.2 September 25, 2023 { id="9.4.2" } - Updated Slovenian translations - Added animation to sidebar navigation expansion and collapse - Added support for auto-replacement of document head for instant navigation - Improved compatibility of new emoji extension with Python < 3.10 - Switched regex dependency to use minimal version - Refactored alignment and spacing of sidebar navigation - Fixed expansion button not focusable via keyboard in sidebar navigation - Fixed viewport offset restoration on first load when using instant navigation - Fixed accidental highlight of non-clickable elements in blog plugin sidebar - Fixed #6041: Blog plugin crashes when `nav` is defined and blog not included - Fixed #5972: Blog plugin ignores section index pages in paginated views - Fixed #5954: Repeated click on anchor ignored when using instant navigation - Fixed #5742: Keyboard navigation broken when using instant navigation __Updated templates__ ([diff](https://github.com/squidfunk/mkdocs-material/compare/9.4.1...9.4.2)) - `partials/nav-item.html` - `blog-post.html` ### 9.4.1 September 22, 2023 { id="9.4.1" } - Improved colors and contrast in dark mode - Improved admonition borders to match font weight - Switched content tabs to neutral color ### 9.4.0 September 21, 2023 { id="9.4.0" } - Added Belarusian translations - Added version info to entrypoint of package - Added emoji extension as a replacement for `materialx` - Improved slate color scheme (dark mode) - now even darker - Restructured project to improve development experience - Updated MkDocs to 1.5.3 - Fixed #3890: Development mode crash on Linux ### 9.3.2 September 19, 2023 { id="9.3.2" } - Updated Slovenian translations - Updated Python dependencies in requirements to use minimum versions - Fixed #6017: Code highlighting inconsistent in Community and Insiders edition - Fixed #6001: Contributor avatars display incorrectly in Firefox - Fixed #6000: Blog post drafts are included in navigation ### 9.3.1 September 11, 2023 { id="9.3.1" } - Fixed crash of group plugin when used together with hooks ### 9.3.0 September 11, 2023 { id="9.3.0" } - Improved configuration sharing between Community and Insiders edition - Added experimental built-in group plugin for enabling plugins conditionally - Added new settings in tags plugin for enabling/disabling - Dropped support for Python 3.7 (EOL) ### 9.2.8 September 4, 2023 { id="9.2.8" } - Updated Italian and Russian translations - Fixed #5952: Combining blog and tags plugin leads to wrong links - Fixed #5951: Blog plugin ignores post title in metadata - Fixed #5949: Blog plugin ignores post linked in nav ### 9.2.7 September 2, 2023 { id="9.2.7" } - Switched dependencies to compatible release clauses - Removed `readtime` and `lxml` dependencies for blog plugin - Reduced size of Docker image to improve CI build performance - Fixed #5945: Incorrect footer navigation for sibling pages of blog - Fixed #5939: Page jumps when changing color palette (Firefox 117) - Fixed #5901: Announcement bar reappears when using instant loading - Fixed #5824: Allow to customize styles of sequence diagrams ### 9.2.6 August 31, 2023 { id="9.2.6" } - Added Basque translations - Added template for simple redirects - Improved blog plugin interop by moving view generation to `on_files` - Fixed #5924: Social plugin still checks dependencies when disabled - Fixed #5916: Blog plugin crashes on Python 3.8 (9.2.0 regression) ### 9.2.5 August 27, 2023 { id="9.2.5" } - Fixed error in dirty serve mode when using blog plugin - Fixed page title not being consistent in blog plugin pagination - Fixed #5899: Blog plugin pagination breaks when disabling directory URLs ### 9.2.4 August 26, 2023 { id="9.2.4" } - Added version to bug report name in info plugin - Updated Afrikaans translations ### 9.2.3 August 22, 2023 { id="9.2.3" } - Fixed blog plugin rendering wrongly with `markdown.extensions.toc` - Fixed blog plugin entrypoint generation ### 9.2.2 August 22, 2023 { id="9.2.2" } - Fixed #5880: Blog plugin failing when building a standalone blog - Fixed #5881: Blog plugin not compatible with Python < 3.10 ### 9.2.1 August 21, 2023 { id="9.2.1" } - Fixed #5879: Blog plugin failing when building a standalone blog - Fixed error in blog plugin when using draft tagging on future date - Fixed error in blog plugin when toc extension is not enabled ### 9.2.0 August 21, 2023 { id="9.2.0" } __Additions and improvements__ - Added blogging support via built-in blog plugin - Added support for Chinese language segmentaiton in search plugin - Added support for adding custom dates to blog posts - Added support for paginating archive and category pages - Added support for annotations (outside of code blocks) - Added support for navigation icons - Added support for navigation pruning - Added support for navigation status - Added support for customizing site icons - Added support for customizing (code) annotation icons - Added focus outline to admonitions and details - Added prompt for bug report name to info plugin - Added Luxembourgish translations - Improved rendering of (code) annotation markers - Improved print styles for (code) annotations - Improved customizability of navigation tabs - Improved interop of plugins with external tools like mike - Improved interop of blog plugin with awesome pages plugin - Improved header partial by moving buttons into separate partials - Improved clarity of `site_url` warning in social plugin - Improved blog plugin to automatically setup directory structure - Switched info plugin to `importlib` to mitigate deprecations - Automatically download ResizeObserver polyfill when necessary - Automatically add iframe-worker polyfill when necessary in offline plugin - Automatically focus and bring up keyboard on touch devices - Updated Serbo-Croatian translations - Updated MkDocs to 1.5.2 __Removals__ - Removed Universal Analytics integration - Removed ancient polyfills to reduce size of bundled JavaScript by 20% - Removed necessity for `Array.flat` and `Array.flatMap` polyfill - Removed announcement bar button when JavaScript is not available __Fixes__ - Fixed rendering of tags when announcement bar is present - Fixed tags plugin rendering pages excluded by other plugins - Fixed #5132: Blog plugin requires `nav` entry in `mkdocs.yml` - Fixed #5599: Insufficient contrast for default link color - Fixed #5715: Blog plugin missing integrated table of contents in pagination - Fixed #5806: Version selector not hoverable on some Android devices - Fixed #5826: Blog post drafts with tags show up in tags index ### 9.1.21 July 27, 2023 { id="9.1.21" } - Fixed MkDocs 1.4 compat issue in social plugin (9.1.20 regression) ### 9.1.20 July 27, 2023 { id="9.1.20" } - Updated Sanskrit translations - Fixed deprecation warnings for social plugin ### 9.1.19 July 18, 2023 { id="9.1.19" } - Added support for MkDocs 1.5+ - Fixed #5699: Improve error reporting in social plugin ### 9.1.18 July 3, 2023 { id="9.1.18" } - Updated Danish translations - Added support for installing user requirements in Docker image - Fixed #5655: Search separator with lookbehind breaks highlighting ### 9.1.17 June 23, 2023 { id="9.1.17" } - Fixed #5633: Code annotations with nested lists incorrectly mounted - Fixed #5628: Regression in new social plugin configuration scheme ### 9.1.16 June 15, 2023 { id="9.1.16" } - Updated Indonesian translations - Ensure scroll bar follows color scheme of operating system ### 9.1.15 May 29, 2023 { id="9.1.15" } - Fixed #5566: Indicate color scheme to operating system - Fixed #5565: Update `Dockerfile` to latest version of base image - Fixed #5554: Add additional version tags (`9`, `9.1`) to Docker image - Fixed #5536: Strip tags of ARIA labels in table of contents ### 9.1.14 May 20, 2023 { id="9.1.14" } - Updated Armenian and Greek translations ### 9.1.13 May 16, 2023 { id="9.1.13" } - Fixed #5517: Social plugin crashes for some fonts (e.g. Open Sans) ### 9.1.12 May 12, 2023 { id="9.1.12" } - Updated Bengali (Bangla) translations - Fixed #5503: Docker image publish errors on uppercase characters - Fixed #5407: Auto-pause media when in hidden content tabs ### 9.1.11 May 8, 2023 { id="9.1.11" } - Fixed #5487: Social plugin crashes without options (9.1.10 regression) ### 9.1.10 May 8, 2023 { id="9.1.10" } - Added `cards_layout_options` setting for social cards - Deprecated `cards_color` and `cards_font` setting for social cards ### 9.1.9 May 2, 2023 { id="9.1.9" } - Added Telugu, Kannada and Sanskrit translations - Fixed #5428: Fixed margins for light/dark mode images in figures - Fixed #5420: Social plugin crashing for some specific Google Fonts - Fixed #5160: Instant loading makes code annotations jump (9.1.1 regression) - Fixed #4920: Social plugin not loading logo from custom icon set - Fixed social plugin crashing when only code font is specified ### 9.1.8 April 24, 2023 { id="9.1.8" } - Fixed #5417: Theme breaks when `palette` is not defined (9.1.7 regression) ### 9.1.7 April 22, 2023 { id="9.1.7" } - Updated Persian (Farsi) and Turkish translations - Fixed #5401: Added missing flag to disable built-in tags plugin - Fixed #5206: Ensure defaults are set for primary and accent colors - Fixed unnecessary inclusion of palette CSS when unused ### 9.1.6 April 7, 2023 { id="9.1.6" } - Updated Persian (Farsi) translations - Fixed #5300: Boxes in Mermaid sequence diagrams not color-abiding ### 9.1.5 March 31, 2023 { id="9.1.5" } - Updated Lithuanian and Japanese translations - Updated Mermaid.js to version 9.4.3 - Fixed #5290: Footer previous/next labels cut-off for short page titles ### 9.1.4 March 24, 2023 { id="9.1.4" } - Fixed #5239: Instant loading breaks anchors in details (9.1.1 regression) - Fixed #5211: Anchor following not working for Chinese (9.1.2 regression) ### 9.1.3 March 14, 2023 { id="9.1.3" } - Added Kurdish (Soranî) translations - Updated Norwegian (Bokmål), Portuguese and Romanian translations - Improved compatibility with `mkdocs-jupyter` plugin - Fixed #5198: Built-in search plugin not filtering `script` and `style` tags - Fixed #5176: Back-to-top + instant loading not working (9.1.1 regression) ### 9.1.2 March 9, 2023 { id="9.1.2" } - Updated Icelandic, Korean and Swedish translations - Fixed #5168: Mermaid text boxes overflow (9.0.13 regression) - Fixed #5155: Table of contents not highlighting percent-encoded URLs ### 9.1.1 March 5, 2023 { id="9.1.1" } - Updated Czech and Thai translations - Improved instant loading (scroll restoration, slow connections) - Fixed #5023: Instant loading not allowing to go back to initial page - Fixed #3797: Instant loading does not work with section anchors in Safari ### 9.1.0 March 2, 2023 { id="9.1.0" } - Docker image now available for `amd64`, `arm64` and `arm/v7` - Updated Chinese (Taiwanese) translations - Generalized tag identifier implementation - Fixed flickering of header shadow on load - Fixed occasional flickering of announcement bar ### 9.0.15 February 26, 2023 { id="9.0.15" } - Updated Chinese (Traditional) translations - Updated Hebrew translations ### 9.0.14 February 23, 2023 { id="9.0.14" } - Fixed #5072: Rendering bug on navigation expand button in Firefox ### 9.0.13 February 18, 2023 { id="9.0.13" } - Updated Uzbek translations - Switched back to pre-9.0.0 headline detection in `content` partial - Fixed #5062: Version warning not readable when using slate scheme - Fixed #5061: Improved discernibility of table row hover color - Fixed #5034: Sequence actors in Mermaid diagrams not color-abiding - Fixed #4919: Allow to hide version warning in multiple versions ### 9.0.12 February 9, 2023 { id="9.0.12" } - Updated Catalan translations - Fixed #4975: Mermaid entity relationship rendering diagrams bug - Fixed #4924: Header title not reset when using instant loading ### 9.0.11 February 3, 2023 { id="9.0.11" } - Added Mastodon verification for social links (`rel=me`) - Updated Italian translations ### 9.0.10 February 2, 2023 { id="9.0.10" } - Updated Arabic translations - Updated Korean translations - Updated Hungarian translations - Updated Russian translations - Fixed #4977: Improved accessibility for content tabs - Fixed #4960: Sometimes anchor following doesn't bring last item into view ### 9.0.9 January 30, 2023 { id="9.0.9" } - Updated Bulgarian translations - Updated Chinese (Simplified) translations - Updated Dutch translations - Updated Hindi translations - Updated Japanese translations - Updated Polish translations ### 9.0.8 January 29, 2023 { id="9.0.8" } - Updated Croatian translations - Updated French translations - Updated Hungarian translations - Updated Portuguese (Brasilian) translations - Updated Spanish translations - Updated Ukrainian translations - Updated Urdu translations - Updated Vietnamese translations ### 9.0.7 January 28, 2023 { id="9.0.7" } - Improved accessibility of sidebar navigation - Moved all translations into Community edition - Updated Polish and Portuguese (Brasilian) translations - Fixed info plugin terminating on subsequent reload when serving - Fixed #4910: Sidebar navigation labels have invalid ARIA roles - Fixed #4884: Search query terms can't be separated by colons ### 9.0.6 January 19, 2023 { id="9.0.6" } - Fixed #4883: Automatically disable info plugin when serving - Fixed #4885: Search plugin crashes in some exotic cases (9.0.3 regression) ### 9.0.5 January 14, 2023 { id="9.0.5" } - Fixed #4842: Improved accessibility of search result list ### 9.0.4 January 12, 2023 { id="9.0.4" } - Fixed #4823: Improved contrast ratio in footer (9.0.2 regression) - Fixed #4832: Set navigation items back to black (9.0.3 regression) - Fixed #4843: Emojis broken due to maxcdn.com shutting down - Upgraded Python Markdown Extensions to 9.9.1 ### 9.0.3 January 8, 2023 { id="9.0.3" } - Improved discernibility of section index pages in navigation - Improved collapsing of adjacent whitespace in search plugin - Updated Indonesian translations - Fixed view source of this page button when edit URL points to blob - Fixed #4829: Search overlay does not close for active anchor result - Fixed #4824: Search plugin crashes for `h[1-6]` contained in other elements - Fixed #4804: Nested navigation items not expandable with keyboard - Fixed #4689: anchor tracking not working for anchors in tables - Upgraded to Mermaid 9.3.0 ### 9.0.2 January 4, 2023 { id="9.0.2" } - Fixed #4823: Improved contrast ratio in footer to meet WCAG guidelines - Fixed #4819: Social plugin crashes when card generation is disabled - Fixed #4817: Search plugin crashes on numeric page titles in `nav` ### 9.0.1 January 3, 2023 { id="9.0.1" } - Removed `pipdeptree` dependency for built-in info plugin - Fixed appearance of linked tags when hovered (9.0.0 regression) - Fixed #4810: Abbreviations run out of screen on touch devices - Fixed #4813: View source and edit button links are the same ### 9.0.0 January 2, 2023 { id="9.0.0" } __Additions and improvements__ - Added support for rich search previews - Added support for tokenizer lookahead - Added support for better search highlighting - Added support for excluding content from search - Added support for configurable search pipeline - Added support for offline search via offline plugin - Added support for multiple instances of built-in tags plugin - Added support for removing copy-to-clipboard button - Added support for removing footer navigation - Added support for button to view the source of a page - Improved readability of query string for search sharing - Improved stability of search plugin when using `--dirtyreload` - Improved search result group button, now sticky and stable - Updated Norwegian translations - Updated MkDocs to 1.4.2 __Removals__ - Removed deprecated alternative admonition qualifiers - Removed `:is()` selectors (in output) for easier overriding - Removed `.title` suffix on translations - Removed legacy method for providing page title in feedback URL - Removed support for indexing only titles in search - Removed support for custom search transforms - Removed support for custom search workers - Removed temporary snow feature (easter egg) __Fixes__ - Fixed Norwegian and Korean language code - Fixed detection of composition events in search interface - Fixed search plugin not using title set via front matter - Fixed search highlighting of tags - Fixed search sharing URL using post transformed string - Fixed theme-color meta tag getting out-of-sync with palette toggle - Fixed prev/next page keyboard navigation when footer is not present - Fixed overflowing navigation tabs not being scrollable - Fixed inclusion of code block line numbers from search --- ### 8.5.11 November 30, 2022 { id="8.5.11" } - Let it snow, see https://x.com/squidfunk/status/1597939243090788352 ### 8.5.10 November 11, 2022 { id="8.5.10" } - Adjusted CSS to better allow for custom primary and accent colors - Fixed #4620: Primary color is not applied (8.5.9 regression) ### 8.5.9 November 8, 2022 { id="8.5.9" } - Fixed #4600: Illegible link colors for black and white primary colors - Fixed #4594: Need to set schema to change link color ### 8.5.8 November 3, 2022 { id="8.5.8" } - Added support for always showing settings in cookie consent - Fixed #4571: Buttons invisible if primary color is `white` or `black` - Fixed #4517: Illegible note in sequence diagram when using `slate` scheme ### 8.5.7 October 22, 2022 { id="8.5.7" } - Deprecated additional admonition qualifiers to reduce size of CSS - Fixed #4511: Search boost does not apply to sections ### 8.5.6 October 2, 2022 { id="8.5.6" } - Modernized appearance of admonitions (with fallback, see docs) - Improved appearance of inline code blocks in admonition titles ### 8.5.5 October 1, 2022 { id="8.5.5" } - Updated MkDocs to 1.4 - Fixed compatibility issues with MkDocs 1.4 - Fixed #4430: build error when enabling consent without repository URL ### 8.5.4 September 30, 2022 { id="8.5.4" } - Fixed expand icons shift on sidebar overflow (using `scrollbar-gutter`) - Fixed #4429: Text in sequence diagrams overflows in Firefox ### 8.5.3 September 20, 2022 { id="8.5.3" } - Fixed build error when enabling cookie consent without analytics - Fixed #4381: Code blocks render ligatures for some fonts ### 8.5.2 September 18, 2022 { id="8.5.2" } - Updated Mermaid.js to version 9.1.7 - Fixed overly large headlines in search results (8.5.0 regression) - Fixed #4358: Navigation sections appear as clickable (8.5.0 regression) - Fixed #4356: GitHub repository statistics fetched before cookie consent ### 8.5.1 September 15, 2022 { id="8.5.1" } - Fixed #4366: Removed dependencies with native extensions ### 8.5.0 September 13, 2022 { id="8.5.0" } - Added support for social cards - Added support for code annotation anchor links (deep linking) - Added support for code annotation comment stripping (syntax modifier) - Added support for sidebars scrolling automatically to active item - Added support for anchor following table of contents (= auto scroll) - Added support for tag icons ### 8.4.4 September 12, 2022 { id="8.4.4" } - Moved comments integration to separate partial (`comments.html`) ### 8.4.3 September 7, 2022 { id="8.4.3" } - Added Simple Icons to bundled icons (+2,300 icons) - Added support for changing edit icon - Moved page actions to separate partial (`actions.html`) - Fixed #4291: Version switching doesn't stay on page when anchors are used - Fixed #4327: Links in data tables do not receive link styling ### 8.4.2 August 27, 2022 { id="8.4.2" } - Updated Slovenian translations - Fixed #4277: Feedback widget hidden after navigation with instant loading - Fixed numeric tags in front matter breaking search functionality ### 8.4.1 August 21, 2022 { id="8.4.1" } - Updated Croatian and Hebrew translations ### 8.4.0 August 13, 2022 { id="8.4.0" } - Added support for cookie consent - Added support for feedback widget (Was this page helpful?) - Added support for dismissible announcement bar - Added Armenian, Lithuanian, Tagalog, and Urdu translations ### 8.3.9 July 4, 2022 { id="8.3.9" } - Updated Taiwanese translations for search - Allow ids for content tabs with special characters (for mkdocstrings) - Fixed #4083: home not clickable when using versioning (8.3.5 regression) ### 8.3.8 June 24, 2022 { id="8.3.8" } - Fixed #4053: Limit width of videos to content area - Fixed empty tags in front matter breaking search ### 8.3.7 June 22, 2022 { id="8.3.7" } - Fixed search being stuck initializing when using tags (8.3.4 regression) ### 8.3.6 June 16, 2022 { id="8.3.6" } - Fixed #4028: Links not clickable when using versioning (8.3.5 regression) ### 8.3.5 June 14, 2022 { id="8.3.5" } - Fixed #4012: Stay on page not working for alias of active version ### 8.3.4 June 11, 2022 { id="8.3.4" } - Fixed #4004: Tags with multiple words not searchable ### 8.3.3 June 7, 2022 { id="8.3.3" } - Fixed #4000: Mermaid diagrams too dark in dark mode (8.3.0 regression) ### 8.3.2 June 5, 2022 { id="8.3.2" } - Fixed #3987: Custom admonition icons don't work when defining color palette ### 8.3.1 June 4, 2022 { id="8.3.1" } - Bump required Jinja version to 3.0.2 - Removed unnecessary conditions in templates - Fixed scroll offset when content tabs are brought into view - Fixed #3977: Content tabs snapping oddly in Firefox - Fixed #3983: Missing condition in footer partial (8.3.0 regression) ### 8.3.0 June 2, 2022 { id="8.3.0" } - Added support for custom admonition icons - Added support for linking of content tabs - Added support for boosting pages in search - Added support for hiding footer navigation - Added previous/next indicators to content tabs - Improved typeset link colors in light and dark modes ### 8.2.16 May 28, 2022 { id="8.2.16" } - Fixed #3957: Only animate code annotations when visible (save CPU cycles) ### 8.2.15 May 14, 2022 { id="8.2.15" } - Added Uzbek translations - Fixed spacing for code block results in content tabs ### 8.2.14 May 8, 2022 { id="8.2.14" } - Fixed missing top right rounded border on admonition - Fixed #3886: `4xx` status codes not handled when using instant loading ### 8.2.13 May 2, 2022 { id="8.2.13" } - Fixed #3865: Tags index links to tagged pages 404 on Windows - Fixed #3866: Bump required Python version from 3.6+ to 3.7+ ### 8.2.12 April 30, 2022 { id="8.2.12" } - Added support for GitHub-style hash fragments for dark/light images - Improved rendering of nested code blocks in content tabs and annotations - Fixed #3862: Upgraded to latest Pygments and Python Markdown Extensions ### 8.2.11 April 25, 2022 { id="8.2.11" } - Temporarily pinned Pygments to `<2.12` - Temporarily pinned Python Markdown Extensions to `<9.4` - Improved rendering of code annotation markers ### 8.2.10 April 24, 2022 { id="8.2.10" } - Added Macedonian translations - Updated Mermaid.js to version 9.0.1 - Switched sidebar title in mobile navigation to bold font - Fixed color of arrows in class and state diagrams for dark mode - Fixed #3836: Inline admonitions overlayed by code block titles ### 8.2.9 April 8, 2022 { id="8.2.9" } - Mitigate flicker on color palette switch by disabling all transitions - Fixed search suggestions not triggered when following deep link - Fixed incorrectly computed header height when using instant loading - Fixed #3782: Admonition titles have extra pixels on wide screens in Firefox - Fixed #3802: Always render table of contents container (except when hidden) ### 8.2.8 March 27, 2022 { id="8.2.8" } - Bumped MkDocs version to 1.3.0 to mitigate breaking changes in Jinja - Reverted Jinja version range limitation (added in 8.2.7) - Improved styling of annotations and fixed borders of code blocks in tabs - Added background color to code blocks in focused/hovered links - Added check in tags plugin whether tags overview page exists - Fixed #3744: Content tab indicator on wrong position when using back button ### 8.2.7 March 24, 2022 { id="8.2.7" } - Temporarily limit Jinja version range to < 3.1 due to breaking changes ### 8.2.6 March 23, 2022 { id="8.2.6" } - Fixed #3695: Deprecation warning for unescaped backslashes in templates - Fixed #3696: Annotations not mounted in some Terraform code blocks - Fixed #3698: Annotations not mounted in long code blocks (8.2.5 regression) ### 8.2.5 March 6, 2022 { id="8.2.5" } - Fixed #3596: Mermaid not working when headline with name 'Mermaid' present - Fixed #3643: Reduce time to render pages with thousands of code blocks - Fixed #3665: Missing styles for Mermaid.js flowcharts cluster labels ### 8.2.4 March 2, 2022 { id="8.2.4" } - Fixed malformed Google Fonts URL when a font setting was omitted - Fixed #3648: Fixed specificity issue with admonitions in lists - Fixed #3653: Invalid outdated version banner URL when using instant loading ### 8.2.3 February 27, 2022 { id="8.2.3" } - Fixed #3578: Active element in table of contents off-by-one on large screens ### 8.2.2 February 26, 2022 { id="8.2.2" } - Added automatic removal of query parameter when search is closed - Fixed #3599: Anchors always overridden when using navigation tracking ### 8.2.1 February 17, 2022 { id="8.2.1" } - Fixed module `material.plugins` not being found (8.2.0 regression) ### 8.2.0 February 17, 2022 { id="8.2.0" } - Added native support for Mermaid.js diagrams - Added native support for tags (with search integration) - Added support for staying on page when switching versions ### 8.1.11 February 10, 2022 { id="8.1.11" } - Added Portuguese (Brasilian) translations - Updated FontAwesome to v6 – [check which icons were renamed here] - Fixed #3545: Color palette toggle and search overlaying version selector [check which icons were renamed here]: https://fontawesome.com/docs/web/setup/upgrade/whats-changed#icons-renamed-in-version-6 ### 8.1.10 February 6, 2022 { id="8.1.10" } - Fixed cutoff of very wide logos in the sidebar on mobile ### 8.1.9 January 30, 2022 { id="8.1.9" } - [Added support for `mkdocs.yml` validation and auto-complete][validation] - Fixed errors in Latvian translations [validation]: ../creating-your-site.md#minimal-configuration ### 8.1.8 January 23, 2022 { id="8.1.8" } - Added Latvian translations - Updated Giscus example integration with dynamic theme change support - Fixed #3479: Back-to-top button not hidden when using sticky navigation tabs - Fixed #3491: Logo in header and drawer doesn't honor aspect ratio ### 8.1.7 January 16, 2022 { id="8.1.7" } - Improved back-to-top button behavior - now not shown on anchor jump ### 8.1.6 January 11, 2022 { id="8.1.6" } - Fixed spacing of blockquotes (8.1.5 regression) - Fixed edge cases for rounded corners on code blocks (8.1.5 regression) - Fixed issues with code annotation line heights ### 8.1.5 January 9, 2022 { id="8.1.5" } - Improved browser support: Chrome 49+, Safari 10+, Firefox 53+, Edge 79+ - Improved rendering of inline code blocks in headlines - Added Bahasa Malaysian translations - Fixed #3354: MathJax formulas show vertical scrollbar ### 8.1.4 January 2, 2022 { id="8.1.4" } - Added indicator to navigation expander icon - Improved support for reduced motion preference - Fixed jitter of active content tab indicator ### 8.1.3 December 19, 2021 { id="8.1.3" } - Added animation to active content tab indicator - Fixed #3360: Highlighted lines add blank lines in copied text - Fixed usage of subsequent index files when using section index pages ### 8.1.2 December 15, 2021 { id="8.1.2" } - Switched CSS sources to logical properties - Added transformation of logical properties to `ltr`/`rtl` equivalents - Fixed spacing for admonitions inside lists (8.1.1 regression) ### 8.1.1 December 13, 2021 { id="8.1.1" } - Added support for `#only-light` and `#only-dark` image hash fragments - Fixed copy-to-clipboard adding blank lines when using line anchors - Fixed code annotation directionality for right-to-left languages - Fixed header title positioning for right-to-left languages - Fixed admonition borders for right-to-left languages (8.0.0 regression) - Fixed footer navigation link positioning (8.0.0 regression) - Fixed footer navigation title breaking out of container when too long - Fixed shrinking arrow in navigation title when too long - Fixed #3343: Filtered stopwords appear as missing search terms - Fixed #3346: Site unusable due to usage of `:not()` (Firefox 78 ESR) ### 8.1.0 December 10, 2021 { id="8.1.0" } - Added basic support for code block line anchors - Switched code annotation markers to `+` signs to improve usability - Switched main site title to bold font - Improved admonition icon positioning to align when `font-size` is increased - Improved and simplified footnotes CSS - Improved and simplified code annotation positioning - Fixed syntax error in Russian translations ### 8.0.5 December 6, 2021 { id="8.0.5" } - Fixed #3302: Footer refactoring induced ellipsis in some browsers - Fixed #3313: Details always rendered closed on load (8.0.4 regression) ### 8.0.4 December 4, 2021 { id="8.0.4" } - Improved support for deeply nested code annotations - Improved code annotation and copy-to-clipboard interop - Improved styling for code annotations inside admonitions - Fixed #3274: Invalid anchor positioning when using instant loading - Fixed #3294: Lists after code blocks without code annotations disappearing - Fixed several positioning issues for code annotations - Fixed JavaScript source map roots ### 8.0.3 December 2, 2021 { id="8.0.3" } - Removed deprecated `google_analytics` setting (was forgotten in 8.0.0) - Fixed syntax error in Swedish and Polish translations - Fixed #3283: Invalid back-to-top button position with sticky navigation tabs - Fixed #3285: Default details marker showing due to Safari bug ### 8.0.2 November 30, 2021 { id="8.0.2" } - Fixed #3275: Code annotations always disappear on click ### 8.0.1 November 28, 2021 { id="8.0.1" } - Improved rendering of code annotation markers - Fixed #3265: Wrong margin on nested admonitions - Fixed wrong `box-sizing` for code annotations in details ### 8.0.0 November 28, 2021 { id="8.0.0" } - Added support for code annotations - Added support for anchor tracking - Added support for version warning - Added `copyright` partial for easier override - Removed deprecated content tabs legacy implementation - Removed deprecated `seealso` admonition type - Removed deprecated `site_keywords` setting (unsupported by MkDocs) - Removed deprecated prebuilt search index support - Removed deprecated web app manifest – use customization - Removed `extracopyright` variable – use new `copyright` partial - Removed Disqus integration – use customization - Switched to `:is()` selectors for simple selector lists - Switched autoprefixer from `last 4 years` to `last 2 years` - Improved CSS overall to match modern standards - Improved CSS variable semantics for fonts - Improved extensibility by restructuring partials - Improved handling of `details` when printing - Improved keyboard navigation for footnotes - Fixed #3214: Search highlighting breaks site when empty --- ### 7.3.6 October 30, 2021 { id="7.3.6" } - Added support for adding titles to code blocks ### 7.3.5 October 27, 2021 { id="7.3.5" } - Added support for setting table of contents title via `mkdocs.yml` - Fixed back-to-top button position for right-to-left languages ### 7.3.4 October 17, 2021 { id="7.3.4" } - Bumped MkDocs version to 1.2.3 to mitigate [CVE-2021-40978] - Fixed spacing issues when using integrate table of contents with tabs - Fixed some spacings issues for right-to-left languages - Fixed race condition in search initialization [CVE-2021-40978]: https://nvd.nist.gov/vuln/detail/CVE-2021-40978 ### 7.3.3 October 11, 2021 { id="7.3.3" } - Rewrite of entire documentation - Adjusted height of new content tabs to match single line code blocks - Fixed new content tabs missing right padding in some browsers on overflow - Fixed new content tabs bleeding out of flex container on overflow - Fixed new content tabs overflow scrolling bugs on some browsers - Fixed new content tabs stealing keyboard access when active - Fixed some spacings issues for right-to-left languages ### 7.3.2 October 6, 2021 { id="7.3.2" } - Deprecated prebuilding of search index - Improved graceful handling of broken search for `file://` - Added minimum Jinja version to list of requirements - Fixed #3071: Section index pages render empty directories - Fixed margin issues when using navigation tabs (7.3.1 regression) - Fixed search placeholder sometimes being shown too early ### 7.3.1 October 2, 2021 { id="7.3.1" } - Added new experimental content tabs implementation - Fixed #3069: GitHub stats broken for users/orgs (7.1.0 regression) - Fixed #3070: Sections not linking to index page - Fixed title not linking to index page when using tabs - Fixed Disqus integration when using instant loading - Fixed some spacing issues for right-to-left languages - Fixed syntax error in Serbian translations ### 7.3.0 September 23, 2021 { id="7.3.0" } - Added support for sticky navigation tabs - Added support for section index pages - Added support for removing generator notice ### 7.2.8 September 20, 2021 { id="7.2.8" } - Fixed #3039: Search modal overlays menu on mobile (7.2.7 regression) ### 7.2.7 September 19, 2021 { id="7.2.7" } - Updated Serbian and Serbo-Croatian translations - Improved appearance of outline on details - Fixed #2934: Scrollbar when header is hidden on some mobile browsers - Fixed #3032: Anchor in details doesn't open on load (7.0.0 regression) - Fixed back-to-top button being focusable when invisible - Fixed broken admonition icons (removed in upstream) ### 7.2.6 September 1, 2021 { id="7.2.6" } - Fixed rendering of `blockquote` elements (7.0.0 regression) - Fixed #2973: Custom search worker setting ignored ### 7.2.5 August 25, 2021 { id="7.2.5" } - Updated Portuguese translations - Fixed execution of RxJS teardown logic (7.2.3 regression) - Fixed #2970: Search results show escaped characters (7.2.2 regression) ### 7.2.4 August 11, 2021 { id="7.2.4" } - Fixed #2926: Version selector not working (7.2.3 regression) - Fixed #2929: Missing CSS class for banner (consistency with Insiders) ### 7.2.3 August 9, 2021 { id="7.2.3" } - Slight facelift of data tables, now closer to Material Design - Fixed instant loading not respecting clicks on search results - Fixed #2881: Invalid anchor offsets when using instant loading ### 7.2.2 July 31, 2021 { id="7.2.2" } - Updated Korean translations - Fixed #2879: Search highlighting does not properly escape HTML ### 7.2.1 July 25, 2021 { id="7.2.1" } - Fixed #2862: Back-to-top button overlays active search bar ### 7.2.0 July 21, 2021 { id="7.2.0" } - Added support for search suggestions to save keystrokes - Added support for search highlighting - Added support for search sharing (i.e. deep linking) ### 7.1.11 July 18, 2021 { id="7.1.11" } - Updated Spanish and Galician translations ### 7.1.10 July 10, 2021 { id="7.1.10" } - Refactored appearance of back-to-top button - Fixed graceful handling of search when browsing locally ### 7.1.9 June 25, 2021 { id="7.1.9" } - Improved search language support for Thai and Hindi - Fixed #2761: License comments lined up at end of file ### 7.1.8 June 12, 2021 { id="7.1.8" } - Refactored analytics integration (because of MkDocs 1.2) - Added support for Google Analytics 4 (`gtag.js`) - Fixed missing escape for `aria-label` in footer links ### 7.1.7 June 6, 2021 { id="7.1.7" } - Improved screen reader support ### 7.1.6 May 30, 2021 { id="7.1.6" } - Deprecated `seealso` admonition qualifier - Added Mongolian and updated Chinese translations - Fixed #2429: Version selector not touch-friendly on Android devices - Fixed #2703: Printed 'Initializing search' albeit ready on mobile ### 7.1.5 May 19, 2021 { id="7.1.5" } - Fixed #2655: Details breaking page margins on print ### 7.1.4 May 6, 2021 { id="7.1.4" } - Added support for git-revision-date-localized plugin creation date - Improved footnote styles on `:target` and `:focus` ### 7.1.3 April 24, 2021 { id="7.1.3" } - Fixed #2586: Empty table of contents shown (7.1.2 regression) ### 7.1.2 April 18, 2021 { id="7.1.2" } - Fixed #2554: List markers sometimes overlap floated elements - Fixed #2563: Adding a class to a `h1` breaks the table of contents - Fixed #2566: Back-to-top button clickable when invisible ### 7.1.1 April 10, 2021 { id="7.1.1" } - Fixed #2501: Nested definition lists compound bottom margin - Fixed #2508: Switch `extracopyright` block to template variable - Fixed #2533: Search (and other parts) not working in Safari <14 - Fixed #2538: Visual quirk when opening language selector ### 7.1.0 March 29, 2021 { id="7.1.0" } - Added support for back-to-top button - Added support for color palette toggle - Added latest release to repository info (GitHub) - Slight facelift of repository info (lighter fonts, spacing and icons) ### 7.0.7 March 28, 2021 { id="7.0.7" } - Updated Hungarian translations - Fixed #2466: Docker image not based on latest Python and Alpine - Fixed #2488: Inconsistent header shadow behavior - Fixed #2492: Inline code blocks in admonition titles missing background ### 7.0.6 March 14, 2021 { id="7.0.6" } - Added trailing slash to version selector URL - Added support for out-of-order anchors in table of contents - Added `extra.homepage` option to link logo to arbitrary URL - Improved security of Docker image (always update apk) - Fixed horizontal spacing for nested inline admonitions - Fixed text color of nested code blocks inside links - Fixed version selector to always use version title - Fixed logo link when using versioning with instant loading ### 7.0.5 March 7, 2021 { id="7.0.5" } - Added `extracopyright` block to allow for custom copyright info - Fixed evaluation of third-party scripts when using instant loading - Fixed edge cases when using instant loading without directory URLs - Fixed handling of version selector when using instant loading - Fixed regression with header title not being updated correctly - Fixed expanded sections not opening on first click (7.0.4 regression) ### 7.0.4 March 4, 2021 { id="7.0.4" } - Added Icelandic translations - Fixed #2386: Section close requires two clicks (navigation expansion) - Fixed console error when search is disabled (7.0.0 regression) - Fixed localsearch integration (7.0.0 regression) ### 7.0.3 February 26, 2021 { id="7.0.3" } - Fixed JavaScript errors in older browsers (target ES2020 -> ES2015) ### 7.0.2 February 25, 2021 { id="7.0.2" } - Fixed #2343: Invalid source map URLs for JS and CSS files - Fixed #2347: Version selector missing when using versioning ### 7.0.1 February 24, 2021 { id="7.0.1" } - Fixed #2334: Google Analytics triggers page view twice (7.0.0 regression) - Fixed #2336: Details bleed into inline admonitions - Fixed #2337: Images don't align correctly (7.0.0 regression) ### 7.0.0 February 22, 2021 { id="7.0.0" } - Added support for deploying multiple versions - Added support for integrating a language selector - Added support for rendering admonitions as inline blocks - Rewrite of the underlying reactive architecture - Removed Webpack in favor of reactive build strategy (-480 dependencies) - Fixed keyboard navigation for code blocks after content tabs switch ### 6.2.8 February 4, 2021 { id="6.2.8" } - Updated Japanese and Polish translations - Fixed #2261: Print dialog auto-closing when using instant loading ### 6.2.7 January 31, 2021 { id="6.2.7" } - Fixed #2251: Updated Docker image to latest Alpine Linux ### 6.2.6 January 26, 2021 { id="6.2.6" } - Added Bulgarian translations - Fixed #2233: Search not shown when using header autohiding ### 6.2.5 January 17, 2021 { id="6.2.5" } - Fixed syntax error in Swedish translations - Optimized navigation partials to improve build speed for huge docs ### 6.2.4 January 9, 2021 { id="6.2.4" } - Fixed #2156: Missing syntax highlighting for binary numbers - Fixed #2186: Disqus showing on 404 page ### 6.2.3 December 27, 2020 { id="6.2.3" } - Added back hidden overflow on root container - Fixed #2142: MathJax formulas sometimes have vertical scrollbars ### 6.2.2 December 22, 2020 { id="6.2.2" } - Removed Markdown version range limit (6.2.0 regression) ### 6.2.1 December 22, 2020 { id="6.2.1" } - Fixed all import and asset paths in templates (6.2.0 regression) - Downgraded webpack-asset-manifest-plugin - broke all asset paths ### 6.2.0 December 22, 2020 { id="6.2.0" } - Added support for navigation sections - Added support for navigation expansion - Added support for integrating table of contents into navigation - Added support for autohiding header on scroll - Added support for hiding navigation and table of contents per page - Added support for arbitrary items in navigation tabs - Refactored navigation tabs to simplify grouping behavior - Fixed anchor offset for permalinks in Safari (partial revert) - Fixed #2098: Active tab sometimes not highlighted correctly - Improved appearance for horizontal rulers - Improved Spanish and Swedish translations ### 6.1.7 December 6, 2020 { id="6.1.7" } - Fixed #2081: Fixed stats for private GitHub repositories - Fixed alignment for admonition icon alignment for right-to-left languages ### 6.1.6 November 22, 2020 { id="6.1.6" } - Fixed #2048: Math formulas show scrollbars (Windows) ### 6.1.5 November 15, 2020 { id="6.1.5" } - Fixed search reset button not showing/hiding correctly ### 6.1.4 November 7, 2020 { id="6.1.4" } - Fixed sidebar jitter when scrolling footer into view ### 6.1.3 November 5, 2020 { id="6.1.3" } - Added support for keywords `meta` tag - Fixed #2027: Line numbers don't scale with smaller font size - Fixed link colors for black and white on `slate` color scheme - Removed focus outline on scrolling code blocks for pointer devices ### 6.1.2 October 31, 2020 { id="6.1.2" } - Fixed sizing of icons in admonitions, task lists, etc. (6.1.1 regression) ### 6.1.1 October 31, 2020 { id="6.1.1" } - Fixed #2019: Page title not correctly updated when using instant loading ### 6.1.0 October 17, 2020 { id="6.1.0" } - Fixed #1973: Added support for printing in dark mode - Fixed #1974: Added support for printing content tabs - Fixed #1995: Improved customizability of details extension ### 6.0.2 October 4, 2020 { id="6.0.2" } - Added Georgian translations - Added escaping for link `title` attributes where necessary - Fixed #1956: Pages with whitespace in names have invalid links in search - Removed unnecessary (duplicated) link `title` attributes ### 6.0.1 September 26, 2020 { id="6.0.1" } - Fixed stemmer support for `file://` protocol through `iframe-worker` - Fixed details marker showing for search result in Firefox - Fixed tabbing behavior when search query is not empty - Switched TypeScript compilation target to ES2015 - Reduced size of JavaScript by 30% (`176kb` → `124kb`) - Removed `mkdocs` and `readthedocs` themes from Docker image ### 6.0.0 September 25, 2020 { id="6.0.0" } - Improved search result look and feel - Improved search result stability while typing - Improved search result grouping (pages + headings) - Improved search result relevance and scoring - Added display of missing query terms to search results - Reduced size of vendor bundle by 25% (`84kb` → `67kb`) - Reduced size of the Docker image to improve CI build performance - Removed hero partial in favor of custom implementation - Removed deprecated front matter features --- ### 5.5.14 September 23, 2020 { id="5.5.14" } - Improved spacing around image captions - Fixed #1939: Long tables cause header overlap in print view ### 5.5.13 September 19, 2020 { id="5.5.13" } - Improved abbreviations on touch devices ### 5.5.12 August 31, 2020 { id="5.5.12" } - Fixed #1638: occasional `404` for images when using instant loading ### 5.5.11 August 28, 2020 { id="5.5.11" } - Fixed Disqus integration, as the minifier killed the config ### 5.5.10 August 28, 2020 { id="5.5.10" } - Improved rendering by moving Disqus integration after page load - Fixed #1887: Moved navigation icons to CSS to reduce size of HTML ### 5.5.9 August 26, 2020 { id="5.5.9" } - Added Esperanto translations - Fixed #1884: External links not included in navigation tabs ### 5.5.8 August 23, 2020 { id="5.5.8" } - Removed focus outline on `details` and content tabs for pointer devices - Improved accessibility of content tabs (now navigable via arrow keys) - Fixed #1877: `404` on search index when search is disabled - Fixed some memleaks in observable subscriptions - Fixed color definitions for `theme-color` meta tag ### 5.5.7 August 16, 2020 { id="5.5.7" } - Improved contrast ratio to 4.5:1 for syntax highlighting - Improved contrast ratio to 4.5:1 for table of contents ### 5.5.6 August 12, 2020 { id="5.5.6" } - Switched base template for `404.html` to `main.html` - Fixed #1864: GitHub organisation stats not loading ### 5.5.5 August 11, 2020 { id="5.5.5" } - Fixed missing vendor and worker distribution files ### 5.5.4 August 11, 2020 { id="5.5.4" } - Added support for sortable data tables ### 5.5.3 August 4, 2020 { id="5.5.3" } - Fixed search for languages other than English (5.5.1 regression) ### 5.5.2 August 3, 2020 { id="5.5.2" } - Improved highlight colors and spacing for `ins`, `del` and `mark` - Changed some keyboard symbols for better equivalents - Removed focus `outline` for details and code blocks on touch devices - Fixed margins for admonitions (5.5.1 regression) - Fixed too small content tab labels (5.5.1 regression) - Fixed icon repeating for custom admonition icons ### 5.5.1 August 1, 2020 { id="5.5.1" } - Improved typesetting by basing `font-size` and spacings on `em` - Improved print view by slightly scaling down `font-size` - Changed custom site title (metadata) to be suffixed with site name - Fixed top- and bottom spacing of paragraphs inside table cells ### 5.5.0 July 24, 2020 { id="5.5.0" } - Rewrite of entire documentation - Rewrite of syntax highlighting to be customizable with CSS variables - Improved syntax highlighting to work with light and dark theme - Improved `slate` color scheme to be more customizable and easier on the eyes - Added licenses of icon sets to distribution files - Fixed stale document titles in Google Analytics when using instant loading - Fixed width of previous and next footer links for tablet and above - Fixed issues with top scroll margin for footnotes - Fixed top margin for tabbed content when using a JavaScript highlighter - Deprecated metadata-based redirects, source links and heroes ### 5.4.0 June 29, 2020 { id="5.4.0" } - Added support to wrap searches in quotes to switch from `OR` to `AND` - Fixed highlighting of numbers in search results ### 5.3.3 June 24, 2020 { id="5.3.3" } - Added Bengali translations - Fixed #1773: Search for numbers does not return any result (regression) ### 5.3.2 June 21, 2020 { id="5.3.2" } - Improved search typeahead experience with non-Latin characters - Fixed #1753: Japanese search doesn't work anymore ### 5.3.1 June 20, 2020 { id="5.3.1" } - Fixed #1761: Duplication of search worker when subscribing to observable ### 5.3.0 June 15, 2020 { id="5.3.0" } - Added support for color schemes based on user preference - Fixed #1755: Tokenizer separator setting ignored ### 5.2.3 June 6, 2020 { id="5.2.3" } - Improved search typeahead behavior for some languages (`de`, `fr`, ...) - Improved styles for scrollbars on Firefox - Fixed #1741: Removed `preconnect` hint for Google Analytics ### 5.2.2 May 26, 2020 { id="5.2.2" } - Fixed #1728: Legacy Edge doesn't support `deg` values in `hsla` colors ### 5.2.1 May 22, 2020 { id="5.2.1" } - Fixed color of links in table headers, e.g. footnotes - Fixed color scheme not being applied without primary or accent color - Fixed hover delay for links inside code blocks ### 5.2.0 May 18, 2020 { id="5.2.0" } - Added color schemes implementation + dark mode - Fixed #1583: Missing option for separate link colors ### 5.1.7 May 16, 2020 { id="5.1.7" } - Added keyboard focus support for overflowing code blocks - Fixed #1696: Infinite loop in some cases when using instant loading ### 5.1.6 May 9, 2020 { id="5.1.6" } - Added Burmese translations - Added general anchor offset solution using `scroll-margin-top` - Fixed #1653: Instant loading shouldn't intercept links to `*.html` files ### 5.1.5 May 3, 2020 { id="5.1.5" } - Added `name` attribute for social links to set link `title` - Fixed #1623: Allow arbitrary links in social links - Fixed #1664: Height of `iframe` is not adjustable - Fixed #1667: Sidebars are scrolled to bottom on load (bug in Chrome 81+) ### 5.1.4 April 30, 2020 { id="5.1.4" } - Switched to [@mdi/svg] Material Design icon package - Fixed #1655: Navigation may disappear after switching viewports - Fixed #1659: Unnecessary scrollbar for search results on Windows - Fixed occasional distortions for images with explicit dimensions - Fixed errors in German translations [@mdi/svg]: https://github.com/Templarian/MaterialDesign-SVG ### 5.1.3 April 26, 2020 { id="5.1.3" } - Fixed overflowing content area after switch to flexbox ### 5.1.2 April 26, 2020 { id="5.1.2" } - Added status information to search observable - Added status information to search modal - Removed announcement bar from print media - Removed media query packing logic due to race conditions - Fixed #1520: Gracefully disable search on `file://` if Worker fails - Fixed re-submission of query after search is initialized - Fixed jitter of sidebars on all browsers by switching to `sticky` ### 5.1.1 April 17, 2020 { id="5.1.1" } - Added new FontAwesome icons - Fixed #1609: Instant loading doesn't honor `target=_blank` - Fixed GitHub stars count rounding errors - Fixed GitLab stars count retrieval ### 5.1.0 April 12, 2020 { id="5.1.0" } - Added support for icons from Markdown through [mkdocs-material-extensions] [mkdocs-material-extensions]: https://github.com/facelessuser/mkdocs-material-extensions ### 5.0.2 April 10, 2020 { id="5.0.2" } - Added CSS source maps to distribution files - Fixed errors in Chinese (Traditional) translations - Fixed creation of stale directory on installation from git - Improved overflow scrolling behavior on iOS (reduced bundle size by `4kb`) ### 5.0.1 April 7, 2020 { id="5.0.1" } - Fixed syntax error in Spanish translation ### 5.0.0 April 7, 2020 { id="5.0.0" } - Reactive architecture – try `app.dialog$.next("Hi!")` in the console - Instant loading – make Material behave like a Single Page Application - Improved CSS customization with CSS variables – set your brand's colors - Improved CSS resilience, e.g. proper sidebar locking for customized headers - Improved icon integration and configuration – now including over 5k icons - Added possibility to use any icon for logo, repository and social links - Search UI does not freeze anymore (moved to web worker) - Search index built only once when using instant loading - Improved extensible keyboard handling - Support for prebuilt search indexes - Support for displaying stars and forks for GitLab repositories - Support for scroll snapping of sidebars and search results - Reduced HTML and CSS footprint due to deprecation of Internet Explorer support - Slight facelifting of some UI elements (admonitions, tables, ...) ### 4.6.3 February 14, 2020 { id="4.6.3" } - Removed optional third-party plugins from `requirements.txt` - Updated Docker image to contain all supported third-party plugins ### 4.6.2 February 8, 2020 { id="4.6.2" } - Added Romanian translations - Fixed #1451: Inconsistent spacing for fenced code blocks ### 4.6.1 February 8, 2020 { id="4.6.1" } - Fixed #1324: Metadata author only rendering first character - Fixed #1393: Set `tabindex` to `0` for skip to content link - Fixed code blocks after Markdown 3.2 release - Fixed errors in Japanese translations - Improved Google Lighthouse score ### 4.6.0 December 11, 2019 { id="4.6.0" } - Added support for [git-revision-date-localized-plugin] - Fixed invalid character in Google Fonts URL [git-revision-date-localized-plugin]: https://github.com/timvink/mkdocs-git-revision-date-localized-plugin ### 4.5.1 December 2, 2019 { id="4.5.1" } - Added Thai translations - Fixed missing assets in GitHub release `.zip` and `.tar.gz` ### 4.5.0 November 16, 2019 { id="4.5.0" } - Fixed #1330: Upgraded EmojiOne to Tweomji due to licensing issues - Fixed #1339: Temporarily pinned PyMdown and Markdown due to - Fixed errors in Greek translations - Improved GitHub statistics retrieval ### 4.4.3 October 3, 2019 { id="4.4.3" } - Added Estonian translations - Fixed removal of copyright banners in minified JavaScript - Removed unnecessary title attributes from links in table of contents ### 4.4.2 August 27, 2019 { id="4.4.2" } - Added Afrikaans translations - Fixed broken page title when `h1` contained HTML tags - Improved accessibility for IE users - Removed unnecessary `title` attributes from links in navigation ### 4.4.1 August 22, 2019 { id="4.4.1" } - Added support for `black` as a primary color - Fixed broken footer bar when `h1` contained HTML tags ### 4.4.0 June 15, 2019 { id="4.4.0" } - Added Slovenian translations - Reverted template minification in favor of `mkdocs-minify-plugin` - Fixed #1114: Tabs don't reappear when default `font-size` is smaller than `16` ### 4.3.1 May 23, 2019 { id="4.3.1" } - Fixed spelling error in Danish translations ### 4.3.0 May 17, 2019 { id="4.3.0" } - Added support for changing header through metadata title property - Added `font-display: swap` to Google Font loading logic - Removed whitespace from templates, saving `4kb` (`.7kb` gzipped) per request - Fixed alignment of repository icons on tablet and desktop ### 4.2.0 April 28, 2019 { id="4.2.0" } - Added Norwegian (Nynorsk) translations - Fixed loss of focus in non-form input elements due to search hotkeys - Fixed #1067: Search hotkeys not working for mobile/tablet screensize - Fixed #1068: Search not correctly aligned for tablet screensize ### 4.1.2 April 16, 2019 { id="4.1.2" } - Fixed #1072: HTML tags appearing in navigation link titles ### 4.1.1 March 28, 2019 { id="4.1.1" } - Fixed minor CSS errors detected during validation ### 4.1.0 March 22, 2019 { id="4.1.0" } - Fixed #1023: Search for Asian languages broken after Lunr.js update - Fixed #1026: contenteditable elements loose focus on hotkeys ### 4.0.2 March 1, 2019 { id="4.0.2" } - Fixed #1012: HTML character entities appear in search result titles ### 4.0.1 February 13, 2019 { id="4.0.1" } - Fixed #762, #816: Glitch in sidebar when collapsing items - Fixed #869: Automatically expand details before printing ### 4.0.0 February 13, 2019 { id="4.0.0" } - Added background on hover for table rows - Removed Google Tag Manager and reverted to Google Analytics - Removed blocks in partials - Jinja doesn't support them - Fixed #911: Chrome breaks layout if system language is Chinese (**BREAKING**) - Fixed #976: Removed FastClick --- ### 3.3.0 January 29, 2019 { id="3.3.0" } - Moved Google Analytics integration into `head` using Google Tag Manager - Fixed #972: Unicode slugifier breaks table of contents blur on scroll - Fixed #974: Additional links in table of contents break blur on scroll ### 3.2.0 December 28, 2018 { id="3.2.0" } - Added support for redirects using metadata refresh - Fixed #921: Load Google Analytics snippet asynchronously ### 3.1.0 November 17, 2018 { id="3.1.0" } - Added support for Progressive Web App Manifest - Fixed #915: Search bug in Safari (upgraded Lunr.js) ### 3.0.6 October 26, 2018 { id="3.0.6" } - Added Taiwanese translations - Fixed #906: JavaScript code blocks evaluated in search results ### 3.0.5 October 23, 2018 { id="3.0.5" } - Added Croatian and Indonesian translations - Fixed #899: Skip-to-content link invalid from 2nd level on - Fixed #902: Missing URL filter in footer for FontAwesome link ### 3.0.4 September 3, 2018 { id="3.0.4" } - Updated Dutch translations - Fixed #856: Removed preconnect meta tag if Google Fonts are disabled ### 3.0.3 August 7, 2018 { id="3.0.3" } - Fixed #841: Additional path levels for extra CSS and JS ### 3.0.2 August 6, 2018 { id="3.0.2" } - Fixed #839: Lunr.js stemmer imports incorrect ### 3.0.1 August 5, 2018 { id="3.0.1" } - Fixed #838: Search result links incorrect ### 3.0.0 August 5, 2018 { id="3.0.0" } - Upgraded MkDocs to 1.0 (**BREAKING**) - Upgraded Python in official Docker image to 3.6 - Added Serbian and Serbo-Croatian translations --- ### 2.9.4 July 29, 2018 { id="2.9.4" } - Fixed build error after MkDocs upgrade ### 2.9.3 July 29, 2018 { id="2.9.3" } - Added link to home for logo in drawer - Fixed dependency problems between MkDocs and Tornado ### 2.9.2 June 29, 2018 { id="2.9.2" } - Added Hindi and Czech translations ### 2.9.1 June 18, 2018 { id="2.9.1" } - Added support for different spellings for theme color - Fixed #799: Added support for webfont minification in production - Fixed #800: Added `.highlighttable` as an alias for `.codehilitetable` ### 2.9.0 June 13, 2018 { id="2.9.0" } - Added support for theme color on Android - Fixed #796: Rendering of nested tabbed code blocks ### 2.8.0 June 10, 2018 { id="2.8.0" } - Added support for grouping code blocks with tabs - Added Material and FontAwesome icon fonts to distribution files (GDPR) - Added note on compliance with GDPR - Added Slovak translations - Fixed #790: Prefixed `id` attributes with `__` to avoid name clashes ### 2.7.3 April 26, 2018 { id="2.7.3" } - Added Finnish translations ### 2.7.2 April 9, 2018 { id="2.7.2" } - Fixed rendering issue for `details` on Edge ### 2.7.1 March 21, 2018 { id="2.7.1" } - Added Galician translations - Fixed #730: Scroll chasing error on home page if Disqus is enabled - Fixed #736: Reset drawer and search upon back button invocation ### 2.7.0 March 6, 2018 { id="2.7.0" } - Added ability to set absolute URL for logo - Added Hebrew translations ### 2.6.6 February 22, 2018 { id="2.6.6" } - Added preconnect for Google Fonts for faster loading - Fixed #710: With tabs sidebar disappears if JavaScript is not available ### 2.6.5 February 22, 2018 { id="2.6.5" } - Reverted `--dev-addr` flag removal from `Dockerfile` ### 2.6.4 February 21, 2018 { id="2.6.4" } - Added Catalan translations - Fixed incorrect margins for buttons in Firefox and Safari - Replaced package manager `yarn` with `npm 5.6` - Reverted GitHub stars rounding method - Removed `--dev-addr` flag from `Dockerfile` for Windows compatibility ### 2.6.3 February 18, 2018 { id="2.6.3" } - Added Vietnamese translations ### 2.6.2 February 12, 2018 { id="2.6.2" } - Added Arabic translations - Fixed incorrect rounding of amount of GitHub stars - Fixed double-layered borders for tables ### 2.6.1 February 11, 2018 { id="2.6.1" } - Added ability to override Disqus integration using metadata - Fixed #690: Duplicate slashes in source file URLs - Fixed #696: Active page highlight not working with default palette - Adjusted German translations ### 2.6.0 February 2, 2018 { id="2.6.0" } - Moved default search configuration to default translation (English) - Added support to automatically set text direction from translation - Added support to disable search stop word filter in translation - Added support to disable search trimmer in translation - Added Persian translations - Fixed support for Polish search - Fixed disappearing GitHub, GitLab and Bitbucket repository icons ### 2.5.5 January 31, 2018 { id="2.5.5" } - Added Hungarian translations ### 2.5.4 January 29, 2018 { id="2.5.4" } - Fixed #683: `gh-deploy` fails inside Docker ### 2.5.3 January 25, 2018 { id="2.5.3" } - Added Ukrainian translations ### 2.5.2 January 22, 2018 { id="2.5.2" } - Added default search language mappings for all localizations - Fixed #673: Error loading non-existent search language - Fixed #675: Uncaught reference error when search plugin disabled ### 2.5.1 January 20, 2018 { id="2.5.1" } - Fixed permalink for main headline - Improved missing translation handling with English as a fallback - Improved accessibility with skip-to-content link ### 2.5.0 January 13, 2018 { id="2.5.0" } - Added support for right-to-left languages ### 2.4.0 January 11, 2018 { id="2.4.0" } - Added focus state for clipboard buttons - Fixed #400: Search bar steals tab focus - Fixed search not closing on ++enter++ when result is selected - Fixed search not closing when losing focus due to ++tab++ - Fixed collapsed navigation links getting focus - Fixed `outline` being cut off on ++tab++ focus of navigation links - Fixed bug with first search result navigation being ignored - Removed search result navigation via ++tab++ (use ++up++ and ++down++) - Removed `outline` resets for links - Improved general tabbing behavior on desktop ### 2.3.0 January 9, 2018 { id="2.3.0" } - Added `example` (synonym: `snippet`) style for admonitions - Added synonym `abstract` for `summary` style for admonitions ### 2.2.6 December 27, 2017 { id="2.2.6" } - Added Turkish translations - Fixed unclickable area below header in case JavaScript is not available ### 2.2.5 December 18, 2017 { id="2.2.5" } - Fixed #639: Broken default favicon ### 2.2.4 December 18, 2017 { id="2.2.4" } - Fixed #638: Build breaks with Jinja < 2.9 ### 2.2.3 December 13, 2017 { id="2.2.3" } - Fixed #630: Admonition sets padding on any last child - Adjusted Chinese (Traditional) translations ### 2.2.2 December 8, 2017 { id="2.2.2" } - Added Dutch translations - Adjusted targeted link and footnote offsets - Simplified admonition styles and fixed padding bug ### 2.2.1 December 2, 2017 { id="2.2.1" } - Fixed #616: Minor styling error with title-only admonitions - Removed border for table of contents and improved spacing ### 2.2.0 November 22, 2017 { id="2.2.0" } - Added support for hero teaser - Added Portuguese translations - Fixed #586: Footnote backref target offset regression - Fixed #605: Search stemmers not correctly loaded ### 2.1.1 November 21, 2017 { id="2.1.1" } - Replaced deprecated `babel-preset-es2015` with `babel-preset-env` - Refactored Gulp build pipeline with Webpack - Removed right border on sidebars - Fixed broken color transition on header ### 2.1.0 November 19, 2017 { id="2.1.0" } - Added support for `white` as a primary color - Added support for sliding site name and title - Fixed redundant clipboard button when using line numbers on code blocks - Improved header appearance by making it taller - Improved tabs appearance - Improved CSS customizability by leveraging inheritance - Removed scroll shadows via `background-attachment` ### 2.0.4 November 5, 2017 { id="2.0.4" } - Fixed `details` not opening with footnote reference ### 2.0.3 November 5, 2017 { id="2.0.3" } - Added Japanese translations - Fixed #540: Jumping to anchor inside `details` doesn't open it - Fixed active link colors in footer ### 2.0.2 November 1, 2017 { id="2.0.2" } - Added Russian translations - Fixed #542: Horizontal scrollbar between `1220px` and `1234px` - Fixed #553: Metadata values only rendering first character - Fixed #558: Flash of unstyled content - Fixed favicon regression caused by deprecation upstream ### 2.0.1 October 31, 2017 { id="2.0.1" } - Fixed error when initializing search - Fixed styles for link to edit the current page - Fixed styles on nested admonition in details ### 2.0.0 October 31, 2017 { id="2.0.0" } - Upgraded MkDocs to 0.17.1 (__BREAKING__) - Added support for easier configuration of search tokenizer - Added support to disable search - Added Korean translations --- ### 1.12.2 October 26, 2017 { id="1.12.2" } - Added Italian, Norwegian, French and Chinese translations ### 1.12.1 October 22, 2017 { id="1.12.1" } - Added Polish, Swedish and Spanish translations - Improved downward compatibility with custom partials - Temporarily pinned MkDocs version within Docker image to 0.16.3 - Fixed #519: Missing theme configuration file ### 1.12.0 October 20, 2017 { id="1.12.0" } - Added support for setting language(s) via `mkdocs.yml` - Added support for default localization - Added German and Danish translations - Fixed #374: Search bar misalignment on big screens ### 1.11.0 October 19, 2017 { id="1.11.0" } - Added localization to clipboard - Refactored localization logic ### 1.10.4 October 18, 2017 { id="1.10.4" } - Improved print styles of code blocks - Improved search UX (don't close on enter if no selection) - Fixed #495: Vertical scrollbar on short pages ### 1.10.3 October 11, 2017 { id="1.10.3" } - Fixed #484: Vertical scrollbar on some MathJax formulas - Fixed #483: Footnote backref target offset regression ### 1.10.2 October 6, 2017 { id="1.10.2" } - Fixed #468: Sidebar shows scrollbar if content is shorter (in Safari) ### 1.10.1 September 14, 2017 { id="1.10.1" } - Fixed #455: Bold code blocks rendered with normal font weight ### 1.10.0 September 1, 2017 { id="1.10.0" } - Added support to make logo default icon configurable - Fixed uninitialized overflow scrolling on main pane for iOS - Fixed error in mobile navigation in case JavaScript is not available - Fixed incorrect color transition for nested panes in mobile navigation - Improved checkbox styles for Tasklist from PyMdown Extension package ### 1.9.0 August 29, 2017 { id="1.9.0" } - Added `info` (synonym: `todo`) style for admonitions - Added `question` (synonym: `help`, `faq`) style for admonitions - Added support for Details from PyMdown Extensions package - Improved admonition styles to match details - Improved styles for social links in footer - Replaced ligatures with Unicode code points to avoid broken layout - Upgraded PyMdown Extensions package dependency to >= 3.4 ### 1.8.1 August 7, 2017 { id="1.8.1" } - Fixed #421: Missing pagination for GitHub API ### 1.8.0 August 2, 2017 { id="1.8.0" } - Added support for lazy-loading of search results for better performance - Added support for customization of search tokenizer/separator - Fixed #424: Search doesn't handle capital letters anymore - Fixed #419: Search doesn't work on whole words ### 1.7.5 July 25, 2017 { id="1.7.5" } - Fixed #398: Forms broken due to search shortcuts - Improved search overall user experience - Improved search matching and highlighting - Improved search accessibility ### 1.7.4 June 21, 2017 { id="1.7.4" } - Fixed functional link colors in table of contents for active palette - Fixed #368: Compatibility issues with IE11 ### 1.7.3 June 7, 2017 { id="1.7.3" } - Fixed error when setting language to Japanese for site search ### 1.7.2 June 6, 2017 { id="1.7.2" } - Fixed offset of search box when `repo_url` is not set - Fixed non-disappearing tooltip ### 1.7.1 June 1, 2017 { id="1.7.1" } - Fixed wrong `z-index` order of header, overlay and drawer - Fixed wrong offset of targeted footnote back references ### 1.7.0 June 1, 2017 { id="1.7.0" } - Added "copy to clipboard" buttons to code blocks - Added support for multilingual site search - Fixed search term highlighting for non-latin languages ### 1.6.4 May 24, 2017 { id="1.6.4" } - Fixed #337: JavaScript error for GitHub organization URLs ### 1.6.3 May 16, 2017 { id="1.6.3" } - Fixed #329: Broken source stats for private or unknown GitHub repos ### 1.6.2 May 15, 2017 { id="1.6.2" } - Fixed #316: Fatal error for git clone on Windows - Fixed #320: Chrome 58 creates double underline for `abbr` tags - Fixed #323: Ligatures rendered inside code blocks - Fixed miscalculated sidebar height due to missing margin collapse - Changed deprecated MathJax CDN to Cloudflare ### 1.6.1 April 23, 2017 { id="1.6.1" } - Fixed following of active/focused element if search input is focused - Fixed layer order of search component elements ### 1.6.0 April 22, 2017 { id="1.6.0" } - Added build test for Docker image on Travis - Added search overlay for better user experience (focus) - Added language from localizations to `html` tag - Fixed #270: source links broken for absolute URLs - Fixed missing top spacing for first targeted element in content - Fixed too small footnote divider when using larger font sizes ### 1.5.5 April 20, 2017 { id="1.5.5" } - Fixed #282: Browser search (Meta+F) is hijacked ### 1.5.4 April 8, 2017 { id="1.5.4" } - Fixed broken highlighting for two or more search terms - Fixed missing search results when only a `h1` is present - Fixed unresponsive overlay on Android ### 1.5.3 April 7, 2017 { id="1.5.3" } - Fixed deprecated calls for template variables - Fixed wrong palette color for focused search result - Fixed JavaScript errors on 404 page - Fixed missing top spacing on 404 page - Fixed missing right spacing on overflow of source container ### 1.5.2 April 5, 2017 { id="1.5.2" } - Added requirements as explicit dependencies in `setup.py` - Fixed non-synchronized transitions in search form ### 1.5.1 March 30, 2017 { id="1.5.1" } - Fixed rendering and offset of targeted footnotes - Fixed #238: Link on logo is not set to `site_url` ### 1.5.0 March 24, 2017 { id="1.5.0" } - Added support for localization of search placeholder - Added keyboard events for quick access of search - Added keyboard events for search control - Added opacity on hover for search buttons - Added git hook to skip CI build on non-src changes - Fixed non-resetting search placeholder when input is cleared - Fixed error for unescaped parentheses in search term - Fixed #229: Button to clear search missing - Fixed #231: Escape key doesn't exit search - Removed old-style figures from font feature settings ### 1.4.1 March 16, 2017 { id="1.4.1" } - Fixed invalid destructuring attempt on NodeList (in Safari, Edge, IE) ### 1.4.0 March 16, 2017 { id="1.4.0" } - Added support for grouping searched sections by documents - Added support for highlighting of search terms - Added support for localization of search results - Fixed #216: table of contents icon doesn't show if `h1` is not present - Reworked style and layout of search results for better usability ### 1.3.0 March 11, 2017 { id="1.3.0" } - Added support for page-specific title and description using metadata - Added support for linking source files to documentation - Fixed jitter and offset of sidebar when zooming browser - Fixed incorrectly initialized tablet sidebar height - Fixed regression for #1: GitHub stars break if `repo_url` ends with a `/` - Fixed undesired white line below copyright footer due to base font scaling - Fixed issue with whitespace in path for scripts - Fixed #205: support non-fixed (static) header - Refactored footnote references for better visibility - Reduced repaints to a minimum for non-tabs configuration - Reduced contrast of edit button (slightly) ### 1.2.0 March 3, 2017 { id="1.2.0" } - Added `quote` (synonym: `cite`) style for admonitions - Added help message to build pipeline - Fixed wrong navigation link colors when applying palette - Fixed #197: Link missing in tabs navigation on deeply nested items - Removed unnecessary dev dependencies ### 1.1.1 February 26, 2017 { id="1.1.1" } - Fixed incorrectly displayed nested lists when using tabs ### 1.1.0 February 26, 2017 { id="1.1.0" } - Added tabs navigation feature (optional) - Added Disqus integration (optional) - Added a high resolution Favicon with the new logo - Added static type checking using Facebook's Flow - Fixed #173: Dictionary elements have no bottom spacing - Fixed #175: Tables cannot be set to 100% width - Fixed race conditions in build related to asset revisioning - Fixed accidentally re-introduced Permalink on top-level headline - Fixed alignment of logo in drawer on IE11 - Refactored styles related to tables - Refactored and automated Docker build and PyPI release - Refactored build scripts ### 1.0.5 February 18, 2017 { id="1.0.5" } - Fixed #153: Sidebar flows out of constrained area in Chrome 56 - Fixed #159: Footer jitter due to JavaScript if content is short ### 1.0.4 February 16, 2017 { id="1.0.4" } - Fixed #142: Documentation build errors if `h1` is defined as raw HTML - Fixed #164: PyPI release does not build and install - Fixed offsets of targeted headlines - Increased sidebar font size by `0.12rem` ### 1.0.3 January 22, 2017 { id="1.0.3" } - Fixed #117: Table of contents items don't blur on fast scrolling - Refactored sidebar positioning logic - Further reduction of repaints ### 1.0.2 January 15, 2017 { id="1.0.2" } - Fixed #108: Horizontal scrollbar in content area ### 1.0.1 January 14, 2017 { id="1.0.1" } - Fixed massive repaints happening when scrolling - Fixed footer back reference positions in case of overflow - Fixed header logo from showing when the menu icon is rendered - Changed scrollbar behavior to only show when content overflows ### 1.0.0 January 13, 2017 { id="1.0.0" } - Introduced Webpack for more sophisticated JavaScript bundling - Introduced ESLint and Stylelint for code style checks - Introduced more accurate Material Design colors and shadows - Introduced modular scales for harmonic font sizing - Introduced git-hooks for better development workflow - Rewrite of CSS using the BEM methodology and SassDoc guidelines - Rewrite of JavaScript using ES6 and Babel as a transpiler - Rewrite of Admonition, Permalinks and CodeHilite integration - Rewrite of the complete typographical system - Rewrite of Gulp asset pipeline in ES6 and separation of tasks - Removed Bower as a dependency in favor of NPM - Removed custom icon build in favor of the Material Design icon set - Removed `_blank` targets on links due to vulnerability: http://bit.ly/1Mk2Rtw - Removed unversioned assets from build directory - Restructured templates into base templates and partials - Added build and watch scripts in `package.json` - Added support for Metadata and Footnotes Markdown extensions - Added support for PyMdown Extensions package - Added support for collapsible sections in navigation - Added support for separate table of contents - Added support for better accessibility through REM-based layout - Added icons for GitHub, GitLab and BitBucket integrations - Added more detailed documentation on specimen, extensions etc. - Added a `404.html` error page for deployment on GitHub Pages - Fixed live reload chain in watch mode when saving a template - Fixed variable references to work with MkDocs 0.16 --- ### 0.2.4 June 26, 2016 { id="0.2.4" } - Fixed improperly set default favicon - Fixed #33: Protocol relative URL for webfonts doesn't work with `file://` - Fixed #34: IE11 on Windows 7 doesn't honor `max-width` on `main` tag - Fixed #35: Add styling for blockquotes ### 0.2.3 May 16, 2016 { id="0.2.3" } - Fixed #25: Highlight inline fenced blocks - Fixed #26: Better highlighting for keystrokes - Fixed #30: Suboptimal syntax highlighting for PHP ### 0.2.2 March 20, 2016 { id="0.2.2" } - Fixed #15: Document Pygments dependency for CodeHilite - Fixed #16: Favicon could not be set through `mkdocs.yml` - Fixed #17: Put version into own container for styling - Fixed #20: Fix rounded borders for tables ### 0.2.1 March 12, 2016 { id="0.2.1" } - Fixed #10: Invisible header after closing search bar with ESC key - Fixed #13: Table cells don't wrap - Fixed empty list in table of contents when no headline is defined - Corrected wrong path for static asset monitoring in Gulpfile.js - Set up tracking of site search for Google Analytics ### 0.2.0 February 24, 2016 { id="0.2.0" } - Fixed #6: Include multiple color palettes via `mkdocs.yml` - Fixed #7: Better colors for links inside admonition notes and warnings - Fixed #9: Text for prev/next footer navigation should be customizable - Refactored templates (replaced `if`/`else` with modifiers where possible) ### 0.1.3 February 21, 2016 { id="0.1.3" } - Fixed #3: Ordered lists within an unordered list have `::before` content - Fixed #4: Click on Logo/Title without Github-Repository: `"None"` - Fixed #5: Page without headlines renders empty list in table of contents - Moved Modernizr to top to ensure basic usability in IE8 ### 0.1.2 February 16, 2016 { id="0.1.2" } - Fixed styles for deep navigational hierarchies - Fixed webfont delivery problem when hosted in subdirectories - Fixed print styles in mobile/tablet configuration - Added option to configure fonts in `mkdocs.yml` with fallbacks - Changed styles for admonition notes and warnings - Set download link to latest version if available - Set up tracking of outgoing links and actions for Google Analytics ### 0.1.1 February 11, 2016 { id="0.1.1" } - Fixed #1: GitHub stars don't work if the repo_url ends with a `/` - Updated NPM and Bower dependencies to most recent versions - Changed footer/copyright link to Material theme to GitHub pages - Made MkDocs building/serving in build process optional - Set up continuous integration with Travis ### 0.1.0 February 9, 2016 { id="0.1.0" } - Initial release mkdocs-material-9.6.4/docs/contributing/000077500000000000000000000000001475306445600202635ustar00rootroot00000000000000mkdocs-material-9.6.4/docs/contributing/adding-translations.md000066400000000000000000000120201475306445600245450ustar00rootroot00000000000000# Translations It's unbelievable – with the help of international community contributions, Material for MkDocs has been translated into 60+ languages. As you can imagine, it's impossible for us maintainers to keep all languages up-to-date, and new features sometimes require new translations. If you would like to help us to make Material for MkDocs even more globally accessible and have noticed a missing translation in your language, or would like to add a new language, you can help us by following the steps of the guide below. ## Before creating an issue Translations change frequently, which is why we want to make sure that you don't invest your time in duplicating work. Before adding translations, please check the following things: ### Check language availability With more than 60 languages, the chances are good that your language is already supported by Material for MkDocs. You can check if your language is available, or needs improvements or additional translations by inspecting the list of [supported languages]: - __Your language is already supported__ – in this case, you can check if there are translations missing, and click the link underneath your language to add them, which takes 5 minutes. - __Your language is missing__ – in that case, you can help us add support for your language to Material for MkDocs! Read on, to learn how to do this. [supported languages]: ../setup/changing-the-language.md#site-language ### Search our issue tracker Another user might have already created an issue supplying the missing translations for your language that still needs to be integrated by us maintainers. To avoid investing your time in duplicated work, please search the [issue tracker] beforehand. [issue tracker]: https://github.com/squidfunk/mkdocs-material/issues --- At this point, when you have made sure that Material for MkDocs doesn't already support your language, you can add new translations for it by following the issue template. ## Issue template We have created an issue template that makes contributing translations as simple as possible. It is the result of our experience with 60+ language contributions and updates over the last couple of years, and consists of the following parts: - [Title] - [Translations] - [Country flag] optional - [Checklist] [Title]: #title [Translations]: #translations [Country flag]: #country-flag [Checklist]: #checklist ### Title When you update an already existing language, you can just leave the title as it is. Adding support for a new language, replace the `...` in the pre-filled title with the name of your language. | | Example | | -------- | -------- | | :material-check:{ style="color: #4DB6AC" } __Clear__ | Add translations for German | :material-close:{ style="color: #EF5350" } __Unclear__ | Add translations ... | :material-close:{ style="color: #EF5350" } __Useless__ | Help ### Translations If a translation contains an :arrow_left: icon on the right side, it is missing. You can translate this line and remove the :arrow_left: icon. If you don't know how to translate specific lines, simply leave them for other contributors to complete. To ensure the accuracy of your translation, consider double-checking the context of the words by looking at our [English translations]. [English translations]: https://github.com/squidfunk/mkdocs-material/tree/master/src/partials/languages/en.html ### Country flag optional { #country-flag } For a better overview, our list of [supported languages] includes country flags next to the language names. You can help us select a flag for your language by adding the shortcode for the country flag to this field. Go to our [emoji search] and enter `flag` to find all available shortcodes. !!! question "What if my flag is not available?" [Twemoji] provides flag emojis for 260 countries – subdivisions of countries, such as states, provinces, or regions, are not supported. If you're adding translations for a subdivision, please choose the most appropriate available flag. [Twemoji]: https://github.com/twitter/twemoji [emoji search]: ../reference/icons-emojis.md#search > __Why this might be helpful__: adding a country flag next to the country name > can be helpful for you and for others to find the language in the list of > supported languages faster and easier. If your country's flag is not supported > by [Twemoji], you can help us choose an alternative. ### Checklist Thanks for following the guide and helping us to add new translations to Material for MkDocs – you are almost done. The checklist ensures that you have read this guide and have worked to your best knowledge to provide us with everything we need to integrate your contribution. __We'll take it from here.__ --- ## Attribution If you submit a translation using the template above, you will be __credited as a co-author__ in the commit, so you don't need to open a pull request. You have done a significant contribution to the project, making Material for MkDocs accessible to more people around the world. Thank you! mkdocs-material-9.6.4/docs/contributing/index.md000066400000000000000000000254221475306445600217210ustar00rootroot00000000000000# Contributing Material for MkDocs is an actively maintained and constantly evolving project serving a diverse user base with versatile backgrounds and needs. In order to efficiently address the requirements of all our users, evaluate change requests, and fix bugs, we put in a lot of work. Our ever-growing community includes many active users, who open new issues and discussions several times a day, evolving our [issue tracker] and [discussion board] into a knowledge base – an important addition to our [documentation] – yielding value to both new and experienced users. [discussion board]: https://github.com/squidfunk/mkdocs-material/discussions [issue tracker]: https://github.com/squidfunk/mkdocs-material/issues [documentation]: https://squidfunk.github.io/mkdocs-material/ ## How you can contribute We understand that reporting bugs, raising change requests, as well as engaging in discussions can be time-consuming, which is why we've carefully optimized our issue templates and defined guidelines to improve the overall interaction within the project. We've invested a lot of time and effort into making our [issue tracker] and [discussion board] as efficient as possible. Our goal is to ensure that our documentation, as well as issue tracker and discussion board, are __well-structured__, __easy to navigate__, and __searchable__, so you can find what you need quickly and efficiently. Thus, when you follow our guidelines, we can help you much faster. In this section, we guide your through our processes. ### Creating an issue
- :material-bug-outline:   __Something is not working?__ --- Report a bug in Material for MkDocs by creating an issue with a reproduction --- [:octicons-arrow-right-24: Report a bug][report a bug] - :material-file-document-remove-outline:   __Missing information in our docs?__ --- Report missing information or potential inconsistencies in our documentation --- [:octicons-arrow-right-24: Report a docs issue][report a docs issue] - :material-lightbulb-on-20:   __Want to submit an idea?__ --- Propose a change, feature request, or suggest an improvement --- [:octicons-arrow-right-24: Request a change][request a change] - :material-account-question-outline:   __Have a question or need help?__ --- Ask a question on our [discussion board] and get in touch with our community --- [:octicons-arrow-right-24: Ask a question][discussion board]
### Contributing
- :material-translate:   __Missing support for your language?__ --- Add or improve translations for a new or already supported language --- [:octicons-arrow-right-24: Add translations][add translations] - :material-source-pull:   __Want to create a pull request?__ --- Learn how to create a comprehensive and useful pull request (PR) --- [:octicons-arrow-right-24: Create a pull request][create a pull request]
[report a bug]: reporting-a-bug.md [report a docs issue]: reporting-a-docs-issue.md [request a change]: requesting-a-change.md [add translations]: adding-translations.md [create a pull request]: making-a-pull-request.md ## Checklist Before interacting within the project, please take a moment to consider the following questions. By doing so, you can ensure that you are using the correct issue template and that you provide all necessary information when interacting with our community. !!! warning "Issues, discussions, and comments are forever" Please note that everything you write is permanent and will remain for everyone to read – forever. Therefore, please always be nice and constructive, follow our contribution guidelines, and comply with our [Code of Conduct]. ### Before creating an issue - Are you using the appropriate issue template, or is there another issue template that better fits the context of your request? - Have you checked if a similar bug report or change request has already been created, or have you stumbled upon something that might be related? - Did your fill out every field as requested and did you provide all additional information we maintainers need to comprehend your request? ### Before asking a question - Is the topic a question for our [discussion board], or is it a bug report or change request that should better be raised on our [issue tracker]? - Is there an open discussion on the topic of your request? If the answer is yes, does your question match the direction of the discussion, or should you open a new discussion? - Did your provide our community with all the necessary information to understand your question and help you quickly, or can you make it easier to help you? ### Before commenting - Is your comment relevant to the topic of the current page, post, issue, or discussion, or is it a better idea to create a new issue or discussion? - Does your comment add value to the conversation? Is it constructive and respectful to our community and us maintainers? Could you just use a [:octicons-smiley-16: reaction][reaction] instead? [Code of Conduct]: https://github.com/squidfunk/mkdocs-material/blob/master/CODE_OF_CONDUCT.md [reaction]: https://github.blog/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/ ## Rights and responsibilities As maintainers, we are entrusted with the __responsibility__ to moderate communication within our community, including the authority to close, remove, reject, or edit issues, discussions, comments, commits, and to block users who __do not align__ with our contribution guidelines and our [Code of Conduct]. This role requires us to be actively involved in maintaining the integrity and positive atmosphere of our community. Upholding these standards decisively ensures a respectful and inclusive environment for all members. ### Code of Conduct Our [Code of Conduct] outlines the expectation for all community members to treat one another with respect, employing inclusive and welcoming language. Our commitment is to foster a positive and supportive environment, free of inappropriate, offensive, or harmful behavior. We take any violations seriously and will take appropriate action in response to uphold these values.[^1] [^1]: __Warning and blocking policy:__ Given the increasing popularity of our project and our commitment to a healthy community, we've defined clear guidelines on how we proceed with violations: 1.1. __First warning:__ Users displaying repeated inappropriate, offensive, or harmful behavior will receive a first warning. This warning serves as a formal notice that their behavior is not in alignment with our community standards and Code of Conduct. The first warning is permanent. 1.2. __Second warning and opportunity for resolution:__ If the behavior persists, a second warning will be issued. Upon receiving the second warning, the user will be given a 5-day period for reflection, during which they are encouraged to publicly explain or apologize for their actions. This period is designed to offer an opportunity for openly clearing out any misunderstanding. 1.3. __Blocking:__ Should there be no response or improvement in behavior following the second warning, we reserve the right to block the user from the community and repository. Blocking is considered a last resort, used only when absolutely necessary to protect the community's integrity and positive atmosphere. Blocking has been an exceptionally rare necessity in our overwhelmingly positive community, highlighting our preference for constructive dialogue and mutual respect. It aims to protect our community members and team. ### Incomplete issues and duplicates We have invested significant time and effort in the setup of our contribution process, ensuring that we assess the essential requirements for reviewing and responding to issues effectively. Each field in our issue templates is thoughtfully designed to help us fully understand your concerns and the nature of your matter. We encourage all members to utilize the search function before submitting new issues or starting discussions to help avoid duplicates. Your cooperation is crucial in keeping our community's discussions constructive and organized. - __Mandatory completion of issue templates:__ We need all of the information required in our issue templates because it ensures that every user and maintainer, regardless of their experience, can understand the content and severity of your bug report or change request. - __Closing incomplete issues:__ We _reserve the right to close issues lacking essential information_, such as but not limited to [minimal reproductions] or those not adhering to the quality standards and requirements specified in our issue templates. Such issues can be reopened once the missing information has been provided. - __Handling duplicates:__ To maintain organized and efficient communication within our [issue tracker] and [discussion board], we _reserve the right to close any duplicated issues or lock duplicated discussions_. Opening multiple channels to ask the same question or report the same issue across different forums hinders our ability to manage and address community concerns effectively. This approach is vital for efficient time management, as duplicated questions can consume the time of multiple team members simultaneously. Ensuring that each issue or discussion is unique and progresses with new information helps us to maintain focus and support our community. We further _reserve the right to immediately close discussions or issues that are reopened without providing new information_ or simply because users have not yet received a response to their issue/question, as the issue is marked as incomplete. - __Limitations of automated tools:__ While we believe in the value and efficiency that automated tools bring to identifying potential issues (such as those identified by Lighthouse, Accessibility tools, and others), simply submitting an issue generated by these tools does not constitute a complete bug report. These tools sometimes produce verbose outputs and may include false positives, which necessitate a critical evaluation. You are of course welcome to attach generated reports to your issue. However, this does not substitute the requirement for a minimal reproduction or a thorough discussion of the findings. _We reserve the right to mark these issues as incomplete and close them._ This practice ensures that we are addressing genuine concerns with precision and clarity, rather than navigating through extensive automated outputs. [minimal reproductions]: ../guides/creating-a-reproduction.md mkdocs-material-9.6.4/docs/contributing/making-a-pull-request.md000066400000000000000000000464161475306445600247440ustar00rootroot00000000000000# Pull Requests You can contribute to Material for MkDocs by making a [pull request] that will be reviewed by maintainers and integrated into the main repository when the changes made are approved. You can contribute bug fixes, changes to the documentation, or new functionality you have developed. [pull request]: https://docs.github.com/en/pull-requests !!! note "Considering a pull request" Before deciding to spend effort on making changes and creating a pull request, please discuss what you intend to do. If you are responding to what you think might be a bug, please issue a [bug report] first. If you intend to work on documentation, create a [documentation issue]. If you want to work on a new feature, please create a [change request]. Keep in mind the guidance given and let people advise you. It might be that there are easier solutions to the problem you perceive and want to address. It might be that what you want to achieve can already be done by configuration or [customization]. [bug report]: reporting-a-bug.md [documentation issue]: reporting-a-docs-issue.md [change request]: requesting-a-change.md [customization]: ../customization.md ## Learning about pull requests Pull requests are a concept layered on top of Git by services that provide Git hosting. Before you consider making a pull request, you should familiarize yourself with the documentation on GitHub, the service we are using. The following articles are of particular importance: 1. [Forking a repository] 2. [Creating a pull request from a fork] 3. [Creating a pull request] Note that they provide tailored documentation for different operating systems and different ways of interacting with GitHub. We do our best in the documentation here to describe the process as it applies to Material for MkDocs but cannot cover all possible combinations of tools and ways of doing things. It is also important that you understand the concept of a pull-request in general before continuing. [Forking a repository]: https://docs.github.com/en/get-started/quickstart/fork-a-repo [Creating a pull request from a fork]: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork [Creating a pull request]: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request ## Pull request process In the following, we describe the general process for making pull requests. The aim here is to provide the 30k ft overview before describing details later on. ### Preparing changes and draft PR The diagram below describes what typically happens to repositories in the process or preparing a pull request. We will be discussing the review-revise process below. It is important that you understand the overall process first before you worry about specific commands. This is why we cover this first before providing instructions below. ``` mermaid sequenceDiagram autonumber participant mkdocs-material participant PR participant fork participant local mkdocs-material ->> fork: fork on GitHub fork ->> local: clone to local local ->> local: branch loop prepare loop push loop edit local ->> local: commit end local ->> fork: push end mkdocs-material ->> fork: merge in any changes fork ->>+ PR: create draft PR PR ->> PR: review your changes end ``` 1. The first step is that you create a fork of the Material for MkDocs repository, either [mkdocs-material] or [mkdocs-material-insiders] (only accessible to sponsors). This provides you with a repository that you can push changes to. Note that it is not possible to have more than one fork of a given repository at any point in time. So, the fork you create will be *the* fork you have. 2. Once it is made, clone it to your local machine so you can start working on your changes. 3. All contributions should be made through a 'topic branch' with a name that describes the work being done. This allows you to have more than one piece of work in progress and, if you are working with the public version, also shows others clearly that the code contained is work in progress. The topic branch will be relatively short-lived and will disappear at the end, when your changes have been incorporated into the codebase. 4. If you intend to make any code changes, as opposed to working on documentation only, you will need to [set up a development environment](#setting-up-a-development-environment). 5. Next comes the iterative process of making edits, committing them to your clone. Please commit in sensible chunks that constitute a piece of work instead of committing everything in one go. Remember that fine-grained, incremental commits are much easier to review in than large changes all over the place and with many files involved. Try to keep your changes as small and localized as possible and keep the reviewer in mind when committing. In particular, make sure to write meaningful commit messages. 6. Push your work up to your fork regularly. 7. You should also keep an eye on changes in the Material for MkDocs repository you cloned. This is especially important if you work takes a while. Please try and merge any concurrent changes into your fork and into your branch regularly. You *must* do this at least once before creating a pull request, so make your life easier and do it more often so as to minimize the risk of conflicting changes. 8. Once you are happy that your changes are in a state that you can describe them in a *draft* pull request, you should create this. Make sure to reference any previous discussions or issues that gave rise to your work. Creating a draft is a good way to get *early* feedback on your work from the maintainer or others. You can explicitly request reviews at points where you think this would be important. 9. Review your work as if you were the reviewer and fix any issues with your work so far. Look critically at the diffs of the files that you have changed. In particular, pay attention to whether the changes are as small as possible and whether you have follow the general coding style used in the project. If you received feedback, iterate over the process so far as necessary. You should choose a number of projects to test your changes with. You should definitely make sure that the changes do not break the building of the documentation for Material for MkDocs, which you can find in the `docs` folder. You may also want to make sure that relevant examples from the [examples repository] still build fine. [mkdocs-material]: https://github.com/squidfunk/mkdocs-material [mkdocs-material-insiders]: https://github.com/squidfunk/mkdocs-material-insiders/ [examples repository]: https://github.com/mkdocs-material/examples ### Finalizing Once you are happy with your changes, you can move to the next step, finalizing your pull request and asking for a more formal and detailed review. The diagram below shows the process: ``` mermaid sequenceDiagram autonumber participant mkdocs-material participant PR participant fork participant local activate PR PR ->> PR : finalize PR loop review loop discuss PR ->> PR: request review PR ->> PR: discussion local ->> fork: push further changes end PR ->> mkdocs-material: merge (and squash) deactivate PR fork ->> fork: delete branch mkdocs-material ->> fork: pull local ->> local: delete branch fork ->> local: pull end ``` 1. When you are happy that the changes you made amount to a contribution that the maintainer(s) could integrate into the codebase, finalize the pull request. This signals to everyone that consider the work 'done' and that it can be reviewed with a view to accepting and integrating it. 2. Request a review from the maintainer, `@squidfunk`. 3. The maintainer may make comments on your code, which you should discuss with them. Bear in mind when doing this that the maintainer may have a different point of view compared to yours. They will often take a more long-term perspective of maintaining the project in the years to come while you may be more focused on the specific issue or feature that you worked on. Please keep the discussion respectful at all times. It is important to note that not all pull requests get incorporated int the codebase. The reasons can vary. The work may bring to light other issues that block integration of the pull request. Sometimes it helps uncover better ways of doing things or shows that a more general approach is needed. All of this is fine and helps the project progress, even if specific changes are not, ultimately, accepted. 4. Make any requested changes by committing them to your local clone and pushing them up to your fork. This will automatically update the pull request. It may well take a few iterations to get your contributions to an acceptable state. You can help the process along by carefully reading comments made and making changes with care. 5. Once the reviewer is fully satisfied with the changes, they can merge them into the main branch (or 'master'). In the process, they may 'squash' your commits together into a smaller number of commits and may edit the messages that describe them. Congratulations, you have now contributed to this project and should see the changes in the main branch under your name. 6. You can now delete the fork and your local repository and start afresh again next time around. Alternatively, you can keep the repository and local clone around but it is important that you keep them in sync with the upstream repository for any subsequent work. We recommend that you start by deleting the branch you used on your fork. 7. To make sure you have the changes you produced, pull them from the main repository into the main branch of your fork. 8. Similarly, delete the topic branch from your local clone and... 9. pull the changes to its master branch. ## Steps Now that the overall process is outlined, here are specific instructions and tips. There are many choices to be made when describing a process for contributing to a project via a pull request. In the following, we assume that you are working with the Git command-line tools. For most alternatives (such as using IDEs or using functionality provided through the GitHub web interface), the translation from the command-line instructions should be simple enough. We will add notes only where really necessary to keep the complexity of this to a reasonable level. ### Forking the repository To make changes to Material for MkDocs, you would first fork one of its repositories on GitHub. This is so that you have a repository on GitHub that you can push changes to (only maintainers and collaborators have write access to the original repositories). Fork the [repository for the public version] if you want to make changes to code that is in the public version or if you want to make changes to the documentation. It is a good idea to change the name of the repository by appending `-fork` so that people who come across it know that they have found a temporary fork rather then the original or a permanent fork of the project. You may also want to add a description that clarifies what the repository is for. [repository for the public version]: https://github.com/squidfunk/mkdocs-material To make changes to functionality available only within the Insiders version, fork [the Insiders repository]. Note that the fork will be a private repository. Please respect the [terms of the Insiders program] and the spirit of the Sponsorware approach used to maintain and develop Material for MkDocs. [the Insiders repository]: https://github.com/squidfunk/mkdocs-material-insiders/ [terms of the Insiders program]: https://squidfunk.github.io/mkdocs-material/insiders/license/#fair-use-policy ### Setting up a development environment From this point onwards, please follow the [instructions for setting up the development environment]. They will take you through the process of setting up an environment in which you can make changes and review/test them. [instructions for setting up the development environment]: ../customization.md#environment-setup ### Making changes When you make changes to the code or the documentation please follow the established style used in the project. Doing so increases readability and also helps with making diffs easier to read for those who will review the pull request. Avoid making any large-scale style changes such as asking your IDE to re-format all code. Study the code that you are modifying well to ensure that you fully understand how it works before you try to change it. This will not only help you solve the problem you are trying to address but also minimize the risks of creating unintended side effects. ### Committing to a branch Development for pull requests is best done in a topic branch separate from the `master` branch. Create a new local branch with `git switch -c ` and commit your changes to this branch. When you want to push commits to your fork, you can do so with `git push -u origin `. The `-u` argument is the short version of `--set-upstream`, which makes the newly created branch 'track' the branch with the same `` in your fork. This means that then `pull` and `push` commands will work against that branch in your fork by default. ### Merging concurrent changes If the work you do takes some time then the chances increase that changes will be made to the main repository while you work.It is probably a good idea to set up the original Material for MkDocs repository as an `upstream` repository for your local clone. This is what it might look like: ```bash hl_lines="4" $ git remote -v origin git@github.com:/mkdocs-material-fork.git (fetch) origin git@github.com:/mkdocs-material-fork.git (push) $ git remote add upstream https://github.com/squidfunk/mkdocs-material.git $ git remote -v origin git@github.com:alexvoss/mkdocs-material-fork.git (fetch) origin git@github.com:alexvoss/mkdocs-material-fork.git (push) upstream https://github.com/squidfunk/mkdocs-material.git (fetch) upstream https://github.com/squidfunk/mkdocs-material.git (push) ``` After you have done this, you can pull any concurrent changes from the upstream repository directly into your clone and do any necessary merges there, then push them up to your fork. You will need to be explicit about which remote repository you want to use when you are doing a `pull`: ```bash # making and committing some local changes push pull upstream master ``` This fetches changes from the `master` branch into your topic branch and merges them. ### Testing and reviewing changes Before you commit any changes, you should make sure that they work as expected and do not create any unintended side effects. You should test them on at least these three [smoke tests]: - The documentation of Material for MkDocs itself. If you set up and run the development environment as outlined in the [instructions for setting up the development environment], `mkdocs serve` should be running and continuously building the documentation. Check that there are no error messages and, ideally, no (new) warnings. - Test on a project that represents the problem or a test for a newly developed feature. You may already have this if you have filed a bug report and created a [minimal reproduction]. If you are working on a new feature then you may need to build a project to serve as a test suite. It can double as documentation that shows how your new feature is meant to work. - Test with relevant examples from the [Material for MkDocs Examples] repository. Note that to build all examples in one go you need the projects plugin from Insiders but you can always build the examples individually using the public version. [smoke tests]: https://en.wikipedia.org/wiki/Smoke_testing_(software) [minimal reproduction]: https://squidfunk.github.io/mkdocs-material/guides/creating-a-reproduction/ [Material for MkDocs Examples]: https://github.com/mkdocs-material/examples - Ideally, also test the examples in the [examples repository]. If you are working on the Insiders edition of Material for MkDocs, you can simply start a build at the top level and the [projects plugin] will build all of the examples for you. If you are on the public version, you will need to build each sub-project individually. We appreciate that this is a growing collection of examples and you may want to prioritize those that are most relevant to the functionality you change. [examples repository]: https://github.com/mkdocs-material/examples [projects plugin]: https://squidfunk.github.io/mkdocs-material/plugins/projects/ ### Creating the pull request Initially, create the pull request **as a draft**. You do this [through the various interfaces that GitHub provides]. Which one you use is entirely up to you. We do not provide specific instructions for using the interfaces as GitHub provide all the information that should be necessary. [through the various interfaces that GitHub provides]: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request ### Commits, messages, mistakes and 'squash' ### Deleting branches Once the pull request has been merged into the master branch of the Material for MkDocs repository, you should remove the branch both from the fork on GitHub and from the local clone on your computer. This avoids possible confusion about the state of development. First, switch back to the `master` branch with `git switch master` and then delete the branch used for the PR using `git branch -d `. ### Subsequent Pull Requests It is important that subsequent pull requests are started from an up-to-date history of the `master` branch. One way to achieve this is to delete the fork and start with an entirely new one next time round. If you contribute to Material for MkDocs more often or just happen to be doing two or more pull requests in succession, you can also just make sure to sync your fork (using the GitHub UI) and pull from it into your local repository. So, just delete the topic branch you created (both locally and in your fork) and pull from the main repository's `master` branch into your `master` branch before starting work on a new pull request. ## Dos and Don'ts 1. **Don't** just create a pull request with changes that are not explained. 2. **Do** discuss what you intend to do with people in the discussions so that the rational for any changes is clear before you write or modify code. 3. **Do** link to the discussion or any issues to provide the context for a pull request. 4. **Do** ask questions if you are uncertain about anything. 5. **Do** ask yourself if what you are doing benefits the wider community and makes Material for MkDocs a better product. 6. **Do** ask yourself if the cost of making the changes stands in a good relation to the benefits they will bring. Some otherwise sensible changes can add complexity for comparatively little gain, might break existing behaviour or might be brittle when other changes need to be made. 7. **Do** merge in concurrent changes frequently to minimize the chance of conflicting changes that may be difficult to resolve. mkdocs-material-9.6.4/docs/contributing/reporting-a-bug.md000066400000000000000000000331341475306445600236130ustar00rootroot00000000000000# Bug reports Material for MkDocs is an actively maintained project that we constantly strive to improve. With a project of this size and complexity, bugs may occur. If you think you have discovered a bug, you can help us by submitting an issue in our public [issue tracker], following this guide. [issue tracker]: https://github.com/squidfunk/mkdocs-material/issues ## Before creating an issue With more than 20,000 users, issues are created every other day. The maintainers of this project are trying very hard to keep the number of open issues down by fixing bugs as fast as possible. By following this guide, you will know exactly what information we need to help you quickly. __But first, please do the following things before creating an issue.__ ### Upgrade to latest version Chances are that the bug you discovered was already fixed in a subsequent version. Thus, before reporting an issue, ensure that you're running the [latest version] of Material for MkDocs. Please consult our [upgrade guide] to learn how to upgrade to the latest version. !!! warning "Bug fixes are not backported" Please understand that only bugs that occur in the latest version of Material for MkDocs will be addressed. Also, to reduce duplicate efforts, fixes cannot be backported to earlier versions. ### Remove customizations If you're using [customizations] like [additional CSS], [JavaScript], or [theme extension], please remove them from `mkdocs.yml` before reporting a bug. We can't offer official support for bugs that might hide in your overrides, so make sure to omit the following settings from `mkdocs.yml`: - [`theme.custom_dir`][theme.custom_dir] - [`hooks`][hooks] - [`extra_css`][extra_css] - [`extra_javascript`][extra_javascript] If, after removing those settings, the bug is gone, the bug is likely caused by your customizations. A good idea is to add them back gradually to narrow down the root cause of the problem. If you did a major version upgrade, make sure you adjusted all partials you have overridden. !!! warning "Customizations mentioned in our documentation" A handful of the features Material for MkDocs offers can only be implemented with customizations. If you find a bug in any of the customizations [that our documentation explicitly mentions], you are, of course, encouraged to report it. __Don't be shy to ask on our [discussion board] for help if you run into problems.__ [latest version]: ../changelog/index.md [upgrade guide]: ../upgrade.md [Customizations]: ../customization.md [additional CSS]: ../customization.md#additional-css [JavaScript]: ../customization.md#additional-javascript [theme extension]: ../customization.md#extending-the-theme [theme.custom_dir]: https://www.mkdocs.org/user-guide/configuration/#custom_dir [hooks]: https://www.mkdocs.org/user-guide/configuration/#hooks [extra_css]: https://www.mkdocs.org/user-guide/configuration/#extra_css [extra_javascript]: https://www.mkdocs.org/user-guide/configuration/#extra_javascript [discussion board]: https://github.com/squidfunk/mkdocs-material/discussions [StackOverflow]: https://stackoverflow.com [that our documentation explicitly mentions]: ?q="extends+base" ### Search for solutions At this stage, we know that the problem persists in the latest version and is not caused by any of your customizations. However, the problem might result from a small typo or a syntactical error in a configuration file, e.g., `mkdocs.yml`. Now, before you go through the trouble of creating a bug report that is answered and closed right away with a link to the relevant documentation section or another already reported or closed issue or discussion, you can save time for us and yourself by doing some research: 1. [Search our documentation] and look for the relevant sections that could be related to your problem. If found, make sure that you configured everything correctly.[^1] [^1]: When adding lines to `mkdocs.yml`, make sure you are preserving the indentation as mentioned in the documentation since YAML is a whitespace-sensitive language. Many reported issues turn out to be configuration errors. 1. [Search our issue tracker][issue tracker], as another user might already have reported the same problem, and there might even be a known workaround or fix for it. Thus, no need to create a new issue. 2. [Search our discussion board][discussion board] to learn if other users are struggling with similar problems and work together with our great community towards a solution. Many problems are solved here. __Keep track of all search terms and relevant links, you'll need them in the bug report.__[^2] [^2]: We might be using terminology in our documentation different from yours, but we mean the same. When you include the search terms and related links in your bug report, you help us to adjust and improve the documentation. --- At this point, when you still haven't found a solution to your problem, we encourage you to create an issue because it's now very likely that you stumbled over something we don't know yet. Read the following section to learn how to create a complete and helpful bug report. [Search our documentation]: ?q= ## Issue template We have created a new issue template to make the bug reporting process as simple as possible and more efficient for our community and us. It is the result of our experience answering and fixing more than 1,600 issues (and counting) and consists of the following parts: - [Title] - [Context] optional - [Bug description] - [Related links] - [Reproduction] - [Steps to reproduce] - [Browser] optional - [Checklist] [Title]: #title [Context]: #context [Bug description]: #bug-description [Related links]: #related-links [Reproduction]: #reproduction [Steps to reproduce]: #steps-to-reproduce [Browser]: #browser [Checklist]: #checklist ### Title A good title is short and descriptive. It should be a one-sentence executive summary of the issue, so the impact and severity of the bug you want to report can be inferred from the title. | | Example | | -------- | -------- | | :material-check:{ style="color: #4DB6AC" } __Clear__ | Built-in `typeset` plugin changes precedence of nav title over `h1` | :material-close:{ style="color: #EF5350" } __Wordy__ | The built-in `typeset` plugin changes the precedence of the nav title over the document headline | :material-close:{ style="color: #EF5350" } __Unclear__ | Title does not work | :material-close:{ style="color: #EF5350" } __Useless__ | Help ### Context optional { #context } Before describing the bug, you can provide additional context for us to understand what you were trying to achieve. Explain the circumstances in which you're using Material for MkDocs, and what you _think_ might be relevant. Don't write about the bug here. > __Why this might be helpful__: some errors only manifest in specific settings, > environments or edge cases, for example, when your documentation contains > thousands of documents. ### Bug description Now, to the bug you want to report. Provide a clear, focused, specific, and concise summary of the bug you encountered. Explain why you think this is a bug that should be reported to Material for MkDocs, and not to one of its dependencies.[^3] Adhere to the following principles: [^3]: Sometimes, users report bugs on our [issue tracker] that are caused by one of our upstream dependencies, including [MkDocs], [Python Markdown], [Python Markdown Extensions] or third-party plugins. A good rule of thumb is to change the [`theme.name`][theme.name] to `mkdocs` or `readthedocs` and check if the problem persists. If it does, the problem is likely not related to Material for MkDocs and should be reported upstream. When in doubt, use our [discussion board] to ask for help. - __Explain the what, not the how__ – don't explain [how to reproduce the bug][Steps to reproduce] here, we're getting there. Focus on articulating the problem and its impact as clearly as possible. - __Keep it short and concise__ – if the bug can be precisely explained in one or two sentences, perfect. Don't inflate it – maintainers and future users will be grateful for having to read less. - __One bug at a time__ – if you encounter several unrelated bugs, please create separate issues for them. Don't report them in the same issue, as this makes attribution difficult. --- :material-run-fast: __Stretch goal__ – if you found a workaround or a way to fix the bug, you can help other users temporarily mitigate the problem before we maintainers can fix the bug in our code base. > __Why we need this__: in order for us to understand the problem, we > need a clear description of it and quantify its impact, which is essential > for triage and prioritization. [MkDocs]: https://www.mkdocs.org [Python Markdown]: https://python-markdown.github.io/extensions/ [Python Markdown Extensions]: https://facelessuser.github.io/pymdown-extensions/ [theme.name]: https://www.mkdocs.org/user-guide/configuration/#theme ### Related links Of course, prior to reporting a bug, you have read our documentation and [could not find a working solution][search for solutions]. Please share links to all sections of our documentation that might be relevant to the bug, as it helps us gradually improve it. Additionally, since you have searched our [issue tracker] and [discussion board] before reporting an issue, and have possibly found several issues or discussions, include those as well. Every link to an issue or discussion creates a backlink, guiding us maintainers and other users in the future. --- :material-run-fast: __Stretch goal__ – if you also include the search terms you used when [searching for a solution][search for solutions] to your problem, you make it easier for us maintainers to improve the documentation. > __Why we need this__: related links help us better understand what you were > trying to achieve and whether sections of our documentation need to be > adjusted, extended, or overhauled. [search for solutions]: #search-for-solutions ### Reproduction A minimal reproduction is at the heart of every well-written bug report, as it allows us maintainers to instantly recreate the necessary conditions to inspect the bug to quickly find its root cause. It's a proven fact that issues with concise and small reproductions can be fixed much faster. [:material-bug: Create reproduction][Create reproduction]{ .md-button .md-button--primary } --- After you have created the reproduction, you should have a `.zip` file, ideally not larger than 1 MB. Just drag and drop the `.zip` file into this field, which will automatically upload it to GitHub. > __Why we need this__: if an issue contains no minimal reproduction or just > a link to a repository with thousands of files, the maintainers would need to > invest a lot of time into trying to recreate the right conditions to even > inspect the bug, let alone fix it. !!! warning "Don't share links to repositories" While we know that it is a good practice among developers to include a link to a repository with the bug report, we currently don't support those in our process. The reason is that the reproduction, which is automatically produced by the [built-in info plugin] contains all of the necessary environment information that is often forgotten to be included. Additionally, there are many non-technical users of Material for MkDocs that have trouble creating repositories. [Create reproduction]: ../guides/creating-a-reproduction.md [built-in info plugin]: ../plugins/info.md ### Steps to reproduce At this point, you provided us with enough information to understand the bug and provided us with a reproduction that we could run and inspect. However, when we run your reproduction, it might not be immediately apparent how we can see the bug in action. Thus, please list the specific steps we should follow when running your reproduction to observe the bug. Keep the steps short and concise, and make sure not to leave anything out. Use simple language as you would explain it to a five-year-old, and focus on continuity. > __Why we need this__: we must know how to navigate your reproduction in order > to observe the bug, as some bugs only occur at certain viewports or in > specific conditions. ### Browser optional { #browser } If you're reporting a bug that only occurs in one or more _specific_ browsers, we need to know which browsers are affected. This field is optional, as it is only relevant when the bug you are reporting does not involve a crash when [previewing] or [building] your site. --- :material-incognito: __Incognito mode__ – Please verify that a the bug is not caused by a browser extension. Switch to incognito mode and try to reproduce the bug. If it's gone, it's caused by an extension. > __Why we need this__: some bugs only occur in specific browsers or versions. > Since now, almost all browsers are evergreen, we usually don't need to know the > version in which it occurs, but we might ask for it later. When in doubt, add > the browser version as the first step in the field above. [previewing]: http://localhost:8000/mkdocs-material/creating-your-site/#previewing-as-you-write [building]: http://localhost:8000/mkdocs-material/creating-your-site/#building-your-site ### Checklist Thanks for following the guide and creating a high-quality and complete bug report – you are almost done. The checklist ensures that you have read this guide and have worked to your best knowledge to provide us with everything we need to know to help you. __We'll take it from here.__ mkdocs-material-9.6.4/docs/contributing/reporting-a-docs-issue.md000066400000000000000000000070541475306445600251160ustar00rootroot00000000000000# Documentation issues Our documentation is composed of more than 80 pages and includes extensive information on features, configurations, customizations, and much more. If you have found an inconsistency or see room for improvement, please follow this guide to submit an issue on our [issue tracker]. [issue tracker]: https://github.com/squidfunk/mkdocs-material/issues ## Issue template Reporting a documentation issue is usually less involved than reporting a bug, as we don't need a [reproduction]. Please thoroughly read this guide before creating a new documentation issue, and provide the following information as part of the issue: - [Title] - [Description] - [Related links] - [Proposed change] optional - [Checklist] [reproduction]: ../guides/creating-a-reproduction.md [Title]: #title [Description]: #description [Related links]: #related-links [Proposed change]: #proposed-change [Checklist]: #checklist ### Title A good title should be a short, one-sentence description of the issue, contain all relevant information and, in particular, keywords to simplify the search in our issue tracker. | | Example | | -------- | -------- | | :material-check:{ style="color: #4DB6AC" } __Clear__ | Clarify social cards setup on Windows | :material-close:{ style="color: #EF5350" } __Unclear__ | Missing information in the docs | :material-close:{ style="color: #EF5350" } __Useless__ | Help ### Description Provide a clear and concise summary of the inconsistency or issue you encountered in the documentation or the documentation section that needs improvement. Explain why you think the documentation should be adjusted and describe the severity of the issue: - __Keep it short and concise__ – if the inconsistency or issue can be precisely explained in one or two sentences, perfect. Maintainers and future users will be grateful for having to read less. - __One issue at a time__ – if you encounter several unrelated inconsistencies, please create separate issues for them. Don't report them in the same issue – it makes attribution difficult. > __Why we need this__: describing the problem clearly and concisely is a > prerequisite for improving our documentation – we need to understand what's > wrong, so we can fix it. ### Related links After you described the documentation section that needs to be adjusted above, we now ask you to share the link to this specific documentation section and other possibly related sections. Make sure to use anchor links (permanent links) where possible, as it simplifies discovery. > __Why we need this__: providing the links to the documentation help us > understand which sections of our documentation need to be adjusted, extended, > or overhauled. ### Proposed change optional { #proposed-change } Now that you have provided us with the description and links to the documentation sections, you can help us, maintainers, and the community by proposing an improvement. You can sketch out rough ideas or write a concrete proposal. This field is optional but very helpful. > __Why we need this__: an improvement proposal can be beneficial for other > users who encounter the same issue, as they offer solutions before we > maintainers can update the documentation. ### Checklist Thanks for following the guide and providing valuable feedback for our documentation – you are almost done. The checklist ensures that you have read this guide and have worked to your best knowledge to provide us with every piece of information we need to improve it. __We'll take it from here.__ mkdocs-material-9.6.4/docs/contributing/requesting-a-change.md000066400000000000000000000242511475306445600244400ustar00rootroot00000000000000# Change requests Material for MkDocs is a powerful tool for creating beautiful and functional documentation. With more than 20,000 users, we understand that our project serves a wide range of use cases, which is why we have created the following guide. --- Put yourself in our shoes – with a project of this size, it can be challenging to maintain existing functionality while constantly adding new features at the same time. We highly value every idea or contribution from our community, and we kindly ask you to take the time to read the following guidelines before submitting your change request in our public [issue tracker]. This will help us better understand the proposed change and how it will benefit our community. This guide is our best effort to explain the criteria and reasoning behind our decisions when evaluating change requests and considering them for implementation. [issue tracker]: https://github.com/squidfunk/mkdocs-material/issues ## Before creating an issue Before you invest your time to fill out and submit a change request, we kindly ask you to do some preliminary work by answering some questions to determine if your idea is a good fit for Material for MkDocs and matches the project's [philosophy] and tone. __Please do the following things before creating an issue.__ [philosophy]: ../philosophy.md ### It's not a bug, it's a feature Change requests are intended to suggest minor adjustments, ideas for new features, or to kindly influence the project's direction and vision. It is important to note that change requests are not intended for reporting bugs, as they're missing essential information for debugging. If you want to report a bug, please refer to our [bug reporting guide] instead. [bug reporting guide]: reporting-a-bug.md ### Look for sources of inspiration If you have seen your idea implemented in another static site generator or theme, make sure to collect enough information on its implementation before submitting, as this allows us to evaluate potential fit more quickly. Explain what you like and dislike about the implementation. ### Connect with our community Our [discussion board] is the best place to connect with our community. When evaluating new ideas, it's essential to seek input from other users and consider alternative viewpoints. This approach helps to implement new features in a way that benefits a large number of users. __Keep track of all search terms and relevant links, you'll need them in the change request.__[^1] [^1]: We might be using terminology in our documentation different from yours, but we mean the same. When you include the search terms and related links in your change request, you help us to adjust and improve the documentation. [:octicons-comment-discussion-16:  Start a discussion][discussion board]{ .md-button .md-button--primary } [discussion board]: https://github.com/squidfunk/mkdocs-material/discussions ## Issue template Now that you have taken the time to do the necessary preliminary work and ensure that your idea meets our requirements, you are invited to create a change request. The following guide will walk you through all the necessary steps to help you submit a comprehensive and useful issue: - [Title] - [Context] optional - [Description] - [Related links] - [Use cases] - [Visuals] optional - [Checklist] [Title]: #title [Context]: #context [Description]: #description [Related links]: #related-links [Use cases]: #use-cases [Visuals]: #visuals [Checklist]: #checklist ### Title A good title is short and descriptive. It should be a one-sentence executive summary of the idea, so the potential impact and benefit for our community can be inferred from the title. | | Example | | -------- | -------- | | :material-check:{ style="color: #4DB6AC" } __Clear__ | Index custom front matter in search | :material-close:{ style="color: #EF5350" } __Wordy__ | Add a feature where authors can define custom front matter to be indexed in search | :material-close:{ style="color: #EF5350" } __Unclear__ | Improve search | :material-close:{ style="color: #EF5350" } __Useless__ | Help ### Context optional { #context } Before describing your idea, you can provide additional context for us to understand what you are trying to achieve. Explain the circumstances in which you're using Material for MkDocs, and what you _think_ might be relevant. Don't write about the change request here. > __Why this might be helpful__: some ideas might only benefit specific > settings, environments, or edge cases, for example, when your documentation > contains thousands of documents. With a little context, change requests > can be prioritized more accurately. ### Description Next, provide a detailed and clear description of your idea. Explain why your idea is relevant to Material for MkDocs and must be implemented here and not in one of its dependencies:[^2] [^2]: Sometimes, users suggest ideas on our [issue tracker] that concern one of our upstream dependencies, including [MkDocs][mkdocs], [Python Markdown], [Python Markdown Extensions] or third-party plugins. It's a good idea to think about whether your idea is beneficial to other themes, upstreaming change requests for a bigger impact. - __Explain the what, not the why__ – don't explain [the benefits of your idea][Use cases] here, we're getting there. Focus on describing the proposed change request as precisely as possible. - __Keep it short and concise__ – be brief and to the point when describing your idea, there is no need to over-describe it. Maintainers and future users will be grateful for having to read less. - __One idea at a time__ – if you have multiple ideas that don't belong together, please open separate change requests for each of those ideas. --- :material-run-fast: __Stretch goal__ – if you have a customization or another way to add the proposed change, you can help other users by sharing it here before we maintainers can add it to our code base. > __Why we need this__: To understand and evaluate your proposed change, we > need to have a clear understanding of your idea. By providing a detailed and > precise description, you can help save you and us time spent discussing > further clarification of your idea in the comments. [Python Markdown]: https://python-markdown.github.io/extensions/ [Python Markdown Extensions]: https://facelessuser.github.io/pymdown-extensions/ ### Related links Please provide any relevant links to issues, discussions, or documentation sections related to your change request. If you (or someone else) already discussed this idea with our community on our discussion board, please include the link to the discussion as well. > __Why we need this__: Related links help us gain a comprehensive > understanding of your change request by providing additional context. > Additionally, linking to previous issues and discussions allows us > to quickly evaluate the feedback and input already provided by our community. ### Use cases Explain how your change request would work from an author's and user's perspective – what's the expected impact, and why does it not only benefit you, but other users? How many of them? Furthermore, would it potentially break existing functionality? > __Why we need this__: Understanding the use cases and benefits of an idea is > crucial in evaluating its potential impact and usefulness for the project and > its users. This information helps us to understand the expected value of the > idea and how it aligns with the goals of the project. ### Visuals optional { #visuals } We now have a clear and detailed description of your idea, including information on its potential use cases and relevant links for context. If you have any visuals, such as sketches, screenshots, mockups, or external assets, you may present them in this section. __You can drag and drop the files here or include links to external assets.__ Additionally, if you have seen this change, feature, or improvement used in other static site generators or themes, please provide an example by showcasing it and describing how it was implemented and incorporated. > __Why this might be helpful__: Illustrations and visuals can help us > maintainers better understand and envision your idea. Screenshots, sketches, > or mockups can create an additional level of detail and clarity that text > alone may not be able to convey. Also, seeing how your idea has been > implemented in other projects can help us understand its potential impact and > feasibility in Material for MkDocs, which helps us maintainers evaluate and > triage change requests. ### Checklist Thanks for following the guide and creating a high-quality change request – you are almost done. The checklist ensures that you have read this guide and have worked to your best knowledge to provide us with every piece of information to review your idea for Material for MkDocs. __We'll take it from here.__ --- ## Rejected requests __Your change request got rejected? We're sorry for that.__ We understand it can be frustrating when your ideas don't get accepted, but as the maintainers of a very popular project, we always need to consider the needs of our entire community, sometimes forcing us to make tough decisions. We always have to consider and balance many factors when evaluating change requests, and we explain the reasoning behind our decisions whenever we can. If you're unsure why your change request was rejected, please don't hesitate to ask for clarification. The following principles (in no particular order) form the basis for our decisions: - [ ] Alignment with vision and tone of the project - [ ] Compatibility with existing features and plugins - [ ] Compatibility with all screen sizes and browsers - [ ] Effort of implementation and maintenance - [ ] Usefulness to the majority of users - [ ] Simplicity and ease of use - [ ] Accessibility But that's not the end of your idea – you can always implement it on your own via [customization]. If you're unsure about how to do that or want to know if someone has already done it, feel free to get in touch with our community on the [discussion board]. [customization]: ../customization.md mkdocs-material-9.6.4/docs/conventions.md000066400000000000000000000077041475306445600204530ustar00rootroot00000000000000# Conventions This section explains several conventions used in this documentation. ## Symbols This documentation use some symbols for illustration purposes. Before you read on, please make sure you've made yourself familiar with the following list of conventions: ### – Sponsors only { data-toc-label="Sponsors only" } The pumping heart symbol denotes that a specific feature or behavior is only available to sponsors via [Insiders]. Make sure that you have access to [Insiders] if you want to use the feature. ### – Version { data-toc-label="Version" } The tag symbol in conjunction with a version number denotes when a specific feature or behavior was added. Make sure you're at least on this version if you want to use it. ### – Version (Insiders) { data-toc-label="Version (Insiders)" } The tag symbol with a heart in conjunction with a version number denotes that a specific feature or behavior was added to the [Insiders] version of Material for MkDocs. ### – Default value { #default data-toc-label="Default value" } Some properties in `mkdocs.yml` have default values for when the author does not explicitly define them. The default value of the property is always included. #### – Default value is computed { #default data-toc-label="is computed" } Some default values are not set to static values but computed from other values, like the site language, repository provider, or other settings. #### – Default value is empty { #default data-toc-label="is empty" } Some properties do not contain default values. This means that the functionality that is associated with them is not available unless explicitly enabled. ### – Metadata property { #metadata data-toc-label="Metadata property" } This symbol denotes that the thing described is a metadata property, which can be used in Markdown documents as part of the front matter definition. ### – Multiple instances { #multiple-instances data-toc-label="Multiple instances" } This symbol denotes that the plugin supports multiple instances, i.e, that it can be used multiple times in the `plugins` setting in `mkdocs.yml`. ### – Optional feature { #feature data-toc-label="Optional feature" } Most of the features are hidden behind feature flags, which means they must be explicitly enabled via `mkdocs.yml`. This allows for the existence of potentially orthogonal features. ### – Experimental { data-toc-label="Experimental" } Some newer features are still considered experimental, which means they might (although rarely) change at any time, including their complete removal (which hasn't happened yet). ### – Plugin { data-toc-label="Plugin" } Several features are implemented through MkDocs excellent plugin architecture, some of which are built-in and distributed with Material for MkDocs, so no installation is required. ### – Markdown extension { data-toc-label="Markdown extension" #extension } This symbol denotes that the thing described is a Markdown extension, which can be enabled in `mkdocs.yml` and adds additional functionality to the Markdown parser. ### – Required value { #required data-toc-label="Required value" } Some (very few in fact) properties or settings are required, which means the authors must explicitly define them. ### – Customization { #customization data-toc-label="Customization" } This symbol denotes that the thing described is a customization that must be added by the author. ### – Utility { data-toc-label="Utility" } Besides plugins, there are some utilities that build on top of MkDocs in order to provide extended functionality, like for example support for versioning. [Insiders]: insiders/index.md mkdocs-material-9.6.4/docs/creating-your-site.md000066400000000000000000000212721475306445600216340ustar00rootroot00000000000000# Creating your site After you've [installed] Material for MkDocs, you can bootstrap your project documentation using the `mkdocs` executable. Go to the directory where you want your project to be located and enter: ``` mkdocs new . ``` Alternatively, if you're running Material for MkDocs from within Docker, use: === "Unix, Powershell" ``` docker run --rm -it -v ${PWD}:/docs squidfunk/mkdocs-material new . ``` === "Windows (cmd)" ``` docker run --rm -it -v "%cd%":/docs squidfunk/mkdocs-material new . ``` This will create the following structure: ``` { .sh .no-copy } . ├─ docs/ │ └─ index.md └─ mkdocs.yml ``` [installed]: getting-started.md ## Configuration ### Minimal configuration Simply set the `site_name` and add the following lines to `mkdocs.yml` to enable the theme: ``` yaml hl_lines="2-5" site_name: My site site_url: https://mydomain.org/mysite theme: name: material ``` The `site_url` setting is important for a number of reasons. By default, MkDocs will assume that your site is hosted at the root of your domain. This is not the case, for example, when [publishing to GitHub pages] - unless you use a custom domain. Another reason is that some of the plugins require the `site_url` to be set, so you should always do this. [publishing to GitHub pages]: publishing-your-site.md#github-pages [installation methods]: getting-started.md#installation ???+ tip "Recommended: [configuration validation and auto-complete]" In order to minimize friction and maximize productivity, Material for MkDocs provides its own [schema.json][^1] for `mkdocs.yml`. If your editor supports YAML schema validation, it's definitely recommended to set it up: === "Visual Studio Code" 1. Install [`vscode-yaml`][vscode-yaml] for YAML language support. 2. Add the schema under the `yaml.schemas` key in your user or workspace [`settings.json`][settings.json]: ``` json { "yaml.schemas": { "https://squidfunk.github.io/mkdocs-material/schema.json": "mkdocs.yml" }, "yaml.customTags": [ // (1)! "!ENV scalar", "!ENV sequence", "!relative scalar", "tag:yaml.org,2002:python/name:material.extensions.emoji.to_svg", "tag:yaml.org,2002:python/name:material.extensions.emoji.twemoji", "tag:yaml.org,2002:python/name:pymdownx.superfences.fence_code_format", "tag:yaml.org,2002:python/object/apply:pymdownx.slugs.slugify mapping" ] } ``` 1. This setting is necessary if you plan to use [icons and emojis], or Visual Studio Code will show errors on certain lines. === "Other" 1. Ensure your editor of choice has support for YAML schema validation. 2. Add the following lines at the top of `mkdocs.yml`: ``` yaml # yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json ``` [^1]: If you're a MkDocs plugin or Markdown extension author and your project works with Material for MkDocs, you're very much invited to contribute a schema for your [extension] or [plugin] as part of a pull request on GitHub. If you already have a schema defined, or wish to self-host your schema to reduce duplication, you can add it via [$ref]. [configuration validation and auto-complete]: https://x.com/squidfunk/status/1487746003692400642 [schema.json]: schema.json [vscode-yaml]: https://marketplace.visualstudio.com/items?itemName=redhat.vscode-yaml [settings.json]: https://code.visualstudio.com/docs/getstarted/settings [extension]: https://github.com/squidfunk/mkdocs-material/tree/master/docs/schema/extensions [plugin]: https://github.com/squidfunk/mkdocs-material/tree/master/docs/schema/plugins [$ref]: https://json-schema.org/understanding-json-schema/structuring.html#ref [icons and emojis]: reference/icons-emojis.md ### Advanced configuration Material for MkDocs comes with many configuration options. The setup section explains in great detail how to configure and customize colors, fonts, icons and much more:
- [Changing the colors] - [Changing the fonts] - [Changing the language] - [Changing the logo and icons] - [Ensuring data privacy] - [Setting up navigation] - [Setting up site search] - [Setting up site analytics] - [Setting up social cards] - [Setting up a blog] - [Setting up tags] - [Setting up versioning] - [Setting up the header] - [Setting up the footer] - [Adding a git repository] - [Adding a comment system] - [Building an optimized site] - [Building for offline usage]
Furthermore, see the list of supported [Markdown extensions] that are natively integrated with Material for MkDocs, delivering an unprecedented low-effort technical writing experience. [Changing the colors]: setup/changing-the-colors.md [Changing the fonts]: setup/changing-the-fonts.md [Changing the language]: setup/changing-the-language.md [Changing the logo and icons]: setup/changing-the-logo-and-icons.md [Ensuring data privacy]: setup/ensuring-data-privacy.md [Setting up navigation]: setup/setting-up-navigation.md [Setting up site search]: setup/setting-up-site-search.md [Setting up site analytics]: setup/setting-up-site-analytics.md [Setting up social cards]: setup/setting-up-social-cards.md [Setting up a blog]: setup/setting-up-a-blog.md [Setting up tags]: setup/setting-up-tags.md [Setting up versioning]: setup/setting-up-versioning.md [Setting up the header]: setup/setting-up-the-header.md [Setting up the footer]: setup/setting-up-the-footer.md [Adding a git repository]: setup/adding-a-git-repository.md [Adding a comment system]: setup/adding-a-comment-system.md [Building for offline usage]: setup/building-for-offline-usage.md [Building an optimized site]: setup/building-an-optimized-site.md [Markdown extensions]: setup/extensions/index.md ## Templates If you want to jump start a new project, you can use one of our growing collection of templates:
- :octicons-repo-template-24:   __[Blog][blog-template]__ --- Create a blog - :octicons-repo-template-24:   __[Social cards][social-cards-template]__ --- Create documentation with social cards
[blog-template]: https://github.com/mkdocs-material/create-blog [social-cards-template]: https://github.com/mkdocs-material/create-social-cards ## Previewing as you write MkDocs includes a live preview server, so you can preview your changes as you write your documentation. The server will automatically rebuild the site upon saving. Start it with: ``` sh mkdocs serve # (1)! ``` 1. If you have a large documentation project, it might take minutes until MkDocs has rebuilt all pages for you to preview. If you're only interested in the current page, the [`--dirtyreload`][--dirtyreload] flag will make rebuilds much faster: ``` mkdocs serve --dirtyreload ``` If you're running Material for MkDocs from within Docker, use: === "Unix, Powershell" ``` docker run --rm -it -p 8000:8000 -v ${PWD}:/docs squidfunk/mkdocs-material ``` === "Windows" ``` docker run --rm -it -p 8000:8000 -v "%cd%":/docs squidfunk/mkdocs-material ``` Point your browser to [localhost:8000][live preview] and you should see: [![Creating your site]][Creating your site] [--dirtyreload]: https://www.mkdocs.org/about/release-notes/#support-for-dirty-builds-990 [live preview]: http://localhost:8000 [Creating your site]: assets/screenshots/creating-your-site.png ## Building your site When you're finished editing, you can build a static site from your Markdown files with: ``` mkdocs build ``` If you're running Material for MkDocs from within Docker, use: === "Unix, Powershell" ``` docker run --rm -it -v ${PWD}:/docs squidfunk/mkdocs-material build ``` === "Windows" ``` docker run --rm -it -v "%cd%":/docs squidfunk/mkdocs-material build ``` The contents of this directory make up your project documentation. There's no need for operating a database or server, as it is completely self-contained. The site can be hosted on [GitHub Pages], [GitLab Pages], a CDN of your choice or your private web space. [GitHub Pages]: publishing-your-site.md#github-pages [GitLab pages]: publishing-your-site.md#gitlab-pages If you intend to distribute your documentation as a set of files to be read from a local filesystem rather than a web server (such as in a `.zip` file), please read the notes about [building for offline usage]. [building for offline usage]: setup/building-for-offline-usage.md mkdocs-material-9.6.4/docs/customization.md000066400000000000000000000340011475306445600210040ustar00rootroot00000000000000# Customization Project documentation is as diverse as the projects themselves and Material for MkDocs is a great starting point for making it look beautiful. However, as you write your documentation, you may reach a point where small adjustments are necessary to preserve your brand's style. ## Adding assets [MkDocs] provides several ways to customize a theme. In order to make a few small tweaks to Material for MkDocs, you can just add CSS and JavaScript files to the `docs` directory. [MkDocs]: https://www.mkdocs.org ### Additional CSS If you want to tweak some colors or change the spacing of certain elements, you can do this in a separate style sheet. The easiest way is by creating a new style sheet file in the `docs` directory: ``` { .sh .no-copy } . ├─ docs/ │ └─ stylesheets/ │ └─ extra.css └─ mkdocs.yml ``` Then, add the following lines to `mkdocs.yml`: ``` yaml extra_css: - stylesheets/extra.css ``` ### Additional JavaScript If you want to integrate another syntax highlighter or add some custom logic to your theme, create a new JavaScript file in the `docs` directory: ``` { .sh .no-copy } . ├─ docs/ │ └─ javascripts/ │ └─ extra.js └─ mkdocs.yml ``` Then, add the following lines to `mkdocs.yml`: ``` yaml extra_javascript: - javascripts/extra.js ``` ??? tip "How to integrate with third-party JavaScript libraries" It is likely that you will want to run your JavaScript code only once the page has been fully loaded by the browser. This means installing a callback function subscribing to events on the `document$` observable exported by Material for MkDocs. Using the `document$` observable is particularly important if you are using [instant loading] since it will not result in a page refresh in the browser - but subscribers on the observable will be notified. ``` javascript document$.subscribe(function() { console.log("Initialize third-party libraries here") }) ``` `document$` is an [RxJS Observable] and you can call the `subscribe()` method any number of times to attach different functionality. [instant loading]: setup/setting-up-navigation.md/#instant-loading [RxJS Observable]: https://rxjs.dev/api/index/class/Observable ## Extending the theme If you want to alter the HTML source (e.g. add or remove some parts), you can extend the theme. MkDocs supports [theme extension], an easy way to override parts of Material for MkDocs without forking from git. This ensures that you can update to the latest version more easily. [theme extension]: https://www.mkdocs.org/user-guide/customizing-your-theme/#using-the-theme-custom_dir ### Setup and theme structure Enable Material for MkDocs as usual in `mkdocs.yml`, and create a new folder for `overrides` which you then reference using the [`custom_dir`][custom_dir] setting: ``` yaml theme: name: material custom_dir: overrides ``` !!! warning "Theme extension prerequisites" As the [`custom_dir`][custom_dir] setting is used for the theme extension process, Material for MkDocs needs to be installed via `pip` and referenced with the [`name`][name] setting in `mkdocs.yml`. It will not work when cloning from `git`. The structure in the `overrides` directory must mirror the directory structure of the original theme, as any file in the `overrides` directory will replace the file with the same name which is part of the original theme. Besides, further assets may also be put in the `overrides` directory: ``` { .sh .no-copy } . ├─ .icons/ # Bundled icon sets ├─ assets/ │ ├─ images/ # Images and icons │ ├─ javascripts/ # JavaScript files │ └─ stylesheets/ # Style sheets ├─ partials/ │ ├─ integrations/ # Third-party integrations │ │ ├─ analytics/ # Analytics integrations │ │ └─ analytics.html # Analytics setup │ ├─ languages/ # Translation languages │ ├─ actions.html # Actions │ ├─ alternate.html # Site language selector │ ├─ comments.html # Comment system (empty by default) │ ├─ consent.html # Consent │ ├─ content.html # Page content │ ├─ copyright.html # Copyright and theme information │ ├─ feedback.html # Was this page helpful? │ ├─ footer.html # Footer bar │ ├─ header.html # Header bar │ ├─ icons.html # Custom icons │ ├─ language.html # Translation setup │ ├─ logo.html # Logo in header and sidebar │ ├─ nav.html # Main navigation │ ├─ nav-item.html # Main navigation item │ ├─ pagination.html # Pagination (used for blog) │ ├─ palette.html # Color palette toggle │ ├─ post.html # Blog post excerpt │ ├─ progress.html # Progress indicator │ ├─ search.html # Search interface │ ├─ social.html # Social links │ ├─ source.html # Repository information │ ├─ source-file.html # Source file information │ ├─ tabs.html # Tabs navigation │ ├─ tabs-item.html # Tabs navigation item │ ├─ tags.html # Tags │ ├─ toc.html # Table of contents │ ├─ toc-item.html # Table of contents item │ └─ top.html # Back-to-top button ├─ 404.html # 404 error page ├─ base.html # Base template ├─ blog.html # Blog index page ├─ blog-archive.html # Blog archive index page ├─ blog-category.html # Blog category index page ├─ blog-post.html # Blog post page └─ main.html # Default page ``` [custom_dir]: https://www.mkdocs.org/user-guide/configuration/#custom_dir [name]: https://www.mkdocs.org/user-guide/configuration/#name ### Overriding partials In order to override a partial, we can replace it with a file of the same name and location in the `overrides` directory. For example, to replace the original `footer.html` partial, create a new `footer.html` partial in the `overrides` directory: ``` { .sh .no-copy } . ├─ overrides/ │ └─ partials/ │ └─ footer.html └─ mkdocs.yml ``` MkDocs will now use the new partial when rendering the theme. This can be done with any file. ### Overriding blocks recommended { #overriding-blocks data-toc-label="Overriding blocks" } Besides overriding partials, it's also possible to override (and extend) template blocks, which are defined inside the templates and wrap specific features. In order to set up block overrides, create a `main.html` file inside the `overrides` directory: ``` { .sh .no-copy } . ├─ overrides/ │ └─ main.html └─ mkdocs.yml ``` Then, e.g. to override the site title, add the following lines to `main.html`: ``` html {% extends "base.html" %} {% block htmltitle %} Lorem ipsum dolor sit amet {% endblock %} ``` If you intend to __add__ something to a block rather than to replace it altogether with new content, use `{{ super() }}` inside the block to include the original block content. This is particularly useful when adding third-party scripts to your docs, e.g. ``` html {% extends "base.html" %} {% block scripts %} {{ super() }} {% endblock %} ``` The following template blocks are provided by the theme: | Block name | Purpose | | :---------------- | :---------------------------------------------- | | `analytics` | Wraps the Google Analytics integration | | `announce` | Wraps the announcement bar | | `config` | Wraps the JavaScript application config | | `container` | Wraps the main content container | | `content` | Wraps the main content | | `extrahead` | Empty block to add custom meta tags | | `fonts` | Wraps the font definitions | | `footer` | Wraps the footer with navigation and copyright | | `header` | Wraps the fixed header bar | | `hero` | Wraps the hero teaser (if available) | | `htmltitle` | Wraps the `` tag | | `libs` | Wraps the JavaScript libraries (header) | | `outdated` | Wraps the version warning | | `scripts` | Wraps the JavaScript application (footer) | | `site_meta` | Wraps the meta tags in the document head | | `site_nav` | Wraps the site navigation and table of contents | | `styles` | Wraps the style sheets (also extra sources) | | `tabs` | Wraps the tabs navigation (if available) | ## Theme development Material for MkDocs is built on top of [TypeScript], [RxJS] and [SASS], and uses a lean, custom build process to put everything together.[^1] If you want to make more fundamental changes, it may be necessary to make the adjustments directly in the source of the theme and recompile it. [^1]: Prior to <!-- md:version 7.0.0 --> the build was based on Webpack, resulting in occasional broken builds due to incompatibilities with loaders and plugins. Therefore, we decided to swap Webpack for a leaner solution which is now based on [RxJS] as the application itself. This allowed for the pruning of more than 500 dependencies (~30% less). [TypeScript]: https://www.typescriptlang.org/ [RxJS]: https://github.com/ReactiveX/rxjs [SASS]: https://sass-lang.com ### Environment setup First, clone the repository for the edition you want to work on. If you want to clone the Insiders repository, you need to become a sponsor first to gain access. [Insiders]: insiders/index.md === "Material for MkDocs" ``` git clone https://github.com/squidfunk/mkdocs-material cd mkdocs-material ``` === "Insiders" You will need to have a GitHub access token [as described in the Insiders documentation] and make it available in the `$GH_TOKEN` variable. ``` sh git clone https://${GH_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git # (1)! ``` 1. If you are using SSH keys for authenticating with GitHub, you can clone Insiders with this command: ``` git clone git@github.com:squidfunk/mkdocs-material-insiders.git ``` [as described in the Insiders documentation]: insiders/getting-started.md#requirements Next, create a new [Python virtual environment][venv] and [activate][venv-activate] it: ``` python -m venv venv source venv/bin/activate ``` !!! note "Ensure pip always runs in a virtual environment" If you set the environment variable `PIP_REQUIRE_VIRTUALENV` to `true`, `pip` will refuse to install anything outside a virtual environment. Forgetting to activate a `venv` can be very annoying as it will install all sorts of things outside virtual environments over time, possibly leading to further errors. So, you may want to add this to your `.bashrc` or `.zshrc` and re-start your shell: ``` export PIP_REQUIRE_VIRTUALENV=true ``` [venv]: https://docs.python.org/3/library/venv.html [venv-activate]: https://docs.python.org/3/library/venv.html#how-venvs-work Then, install all Python dependencies: === "Material for MkDocs" ``` pip install -e ".[recommended]" pip install nodeenv ``` === "Insiders" ``` pip install -e ".[recommended, imaging]" pip install nodeenv ``` In addition, you will need to install the `cairo` and `pngquant` libraries in your system, as described in the [image processing] requirements guide. [image processing]: plugins/requirements/image-processing.md Finally, install the [Node.js] LTS version into the Python virtual environment and install all Node.js dependencies: ``` nodeenv -p -n lts npm install ``` [Node.js]: https://nodejs.org ### Development mode Start the watcher with: ``` npm start ``` Then, in a second terminal window, start the MkDocs live preview server with: ``` mkdocs serve --watch-theme ``` Point your browser to [localhost:8000][live preview] and you should see this very documentation in front of you. !!! warning "Automatically generated files" Never make any changes in the `material` directory, as the contents of this directory are automatically generated from the `src` directory and will be overwritten when the theme is built. [live preview]: http://localhost:8000 ### Building the theme When you're finished making your changes, you can build the theme by invoking: ``` sh npm run build # (1)! ``` 1. While this command will build all theme files, it will skip the overrides used in Material for MkDocs' own documentation which are not distributed with the theme. If you forked the theme and want to build the overrides as well, e.g. before submitting a PR with changes, use: ``` npm run build:all ``` This will take longer, as now the icon search index, schema files, as well as additional style sheet and JavaScript files are built. This triggers the production-level compilation and minification of all style sheets and JavaScript files. After the command exits, the compiled files are located in the `material` directory. When running `mkdocs build`, you should now see your changes to the original theme. �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/enterprise-support.md����������������������������������������������������0000664�0000000�0000000�00000002073�14753064456�0021772�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- status: new --- # Enterprise Feedback We highly value the insights of our enterprise users, and we're eager to hear from you. Your feedback is immensely valuable to us. If you're utilizing Material for MkDocs in an enterprise context and would like to share your experiences with us, we'd love to connect and discuss: - What you are building with it - What aspects you like about it - What challenges you are facing - What could be improved ## Let's Connect To schedule a convenient appointment, please reach out to us via email at contact@squidfunk.com and provide us with the following details: - Your company's name - How you are using Material for MkDocs - Any specific questions or topics you'd like to address Once we have this information, we'll promptly get in touch with you to arrange a 30-minute call. Please note that this call is exclusively intended for enterprise users and is not meant for technical support. Instead, it's an opportunity for us to engage in a casual conversation to better understand your unique needs. We look forward to our discussion! ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/getting-started.md�������������������������������������������������������0000664�0000000�0000000�00000013712�14753064456�0021207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Getting started Material for MkDocs is a powerful documentation framework on top of [MkDocs], a static site generator for project documentation.[^1] If you're familiar with Python, you can install Material for MkDocs with [`pip`][pip], the Python package manager. If not, we recommend using [`docker`][docker]. [^1]: In 2016, Material for MkDocs started out as a simple theme for MkDocs, but over the course of several years, it's now much more than that – with the many built-in plugins, settings, and countless customization abilities, Material for MkDocs is now one of the simplest and most powerful frameworks for creating documentation for your project. [MkDocs]: https://www.mkdocs.org [pip]: #with-pip [docker]: #with-docker ## Installation ### with pip <small>recommended</small> { #with-pip data-toc-label="with pip" } Material for MkDocs is published as a [Python package] and can be installed with `pip`, ideally by using a [virtual environment]. Open up a terminal and install Material for MkDocs with: === "Latest" ``` sh pip install mkdocs-material ``` === "9.x" ``` sh pip install mkdocs-material=="9.*" # (1)! ``` 1. Material for MkDocs uses [semantic versioning][^2], which is why it's a good idea to limit upgrades to the current major version. This will make sure that you don't accidentally [upgrade to the next major version], which may include breaking changes that silently corrupt your site. Additionally, you can use `pip freeze` to create a lockfile, so builds are reproducible at all times: ``` pip freeze > requirements.txt ``` Now, the lockfile can be used for installation: ``` pip install -r requirements.txt ``` [^2]: Note that improvements of existing features are sometimes released as patch releases, like for example improved rendering of content tabs, as they're not considered to be new features. This will automatically install compatible versions of all dependencies: [MkDocs], [Markdown], [Pygments] and [Python Markdown Extensions]. Material for MkDocs always strives to support the latest versions, so there's no need to install those packages separately. --- :fontawesome-brands-youtube:{ style="color: #EE0F0F" } __[How to set up Material for MkDocs]__ by @james-willett – :octicons-clock-24: 27m – Learn how to create and host a documentation site using Material for MkDocs on GitHub Pages in a step-by-step guide. [How to set up Material for MkDocs]: https://www.youtube.com/watch?v=xlABhbnNrfI --- !!! tip If you don't have prior experience with Python, we recommend reading [Using Python's pip to Manage Your Projects' Dependencies], which is a really good introduction on the mechanics of Python package management and helps you troubleshoot if you run into errors. [Python package]: https://pypi.org/project/mkdocs-material/ [virtual environment]: https://realpython.com/what-is-pip/#using-pip-in-a-python-virtual-environment [semantic versioning]: https://semver.org/ [upgrade to the next major version]: upgrade.md [Markdown]: https://python-markdown.github.io/ [Pygments]: https://pygments.org/ [Python Markdown Extensions]: https://facelessuser.github.io/pymdown-extensions/ [Using Python's pip to Manage Your Projects' Dependencies]: https://realpython.com/what-is-pip/ ### with docker The official [Docker image] is a great way to get up and running in a few minutes, as it comes with all dependencies pre-installed. Open up a terminal and pull the image with: === "Latest" ``` docker pull squidfunk/mkdocs-material ``` === "9.x" ``` docker pull squidfunk/mkdocs-material:9 ``` The `mkdocs` executable is provided as an entry point and `serve` is the default command. If you're not familiar with Docker don't worry, we have you covered in the following sections. The following plugins are bundled with the Docker image: - [mkdocs-minify-plugin] - [mkdocs-redirects] [Docker image]: https://hub.docker.com/r/squidfunk/mkdocs-material/ [mkdocs-minify-plugin]: https://github.com/byrnereese/mkdocs-minify-plugin [mkdocs-redirects]: https://github.com/datarobot/mkdocs-redirects ???+ warning The Docker container is intended for local previewing purposes only and is not suitable for deployment. This is because the web server used by MkDocs for live previews is not designed for production use and may have security vulnerabilities. ??? question "How to add plugins to the Docker image?" Material for MkDocs only bundles selected plugins in order to keep the size of the official image small. If the plugin you want to use is not included, you can add them easily: === "Material for MkDocs" Create a `Dockerfile` and extend the official image: ``` Dockerfile title="Dockerfile" FROM squidfunk/mkdocs-material RUN pip install mkdocs-macros-plugin RUN pip install mkdocs-glightbox ``` === "Insiders" Clone or fork the Insiders repository, and create a file called `user-requirements.txt` in the root of the repository. Then, add the plugins that should be installed to the file, e.g.: ``` txt title="user-requirements.txt" mkdocs-macros-plugin mkdocs-glightbox ``` Next, build the image with the following command: ``` docker build -t squidfunk/mkdocs-material . ``` The new image will have additional packages installed and can be used exactly like the official image. ### with git Material for MkDocs can be directly used from [GitHub] by cloning the repository into a subfolder of your project root which might be useful if you want to use the very latest version: ``` git clone https://github.com/squidfunk/mkdocs-material.git ``` Next, install the theme and its dependencies with: ``` pip install -e mkdocs-material ``` [GitHub]: https://github.com/squidfunk/mkdocs-material ������������������������������������������������������mkdocs-material-9.6.4/docs/guides/������������������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0017034�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/guides/creating-a-reproduction.md����������������������������������������0000664�0000000�0000000�00000007211�14753064456�0024104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Creating a reproduction A reproduction is a simplified version of a bug that demonstrates the specific scenario in which the bug occurred. It includes all necessary minimal settings and instructions and should be as simple as possible while still demonstrating the issue. ## Guide ### Environment <small>optional</small> { #environment } We recommend using a [virtual environment], which is an isolated Python runtime. If you are in a virtual environment, any packages that you install or upgrade will be local to the environment. If you run into problems, you can just delete and recreate the environment. It's trivial to set up: - Create a new virtual environment with: ``` python3 -m venv venv ``` - Activate the environment with: === ":material-apple: macOS" ``` sh . venv/bin/activate ``` === ":fontawesome-brands-windows: Windows" ``` sh . venv/Scripts/activate ``` === ":material-linux: Linux" ``` sh . venv/bin/activate ``` Your terminal should now print `(venv)` before the prompt, which is how you know that you are inside the virtual environment that you just created. - Exit the environment with: ``` deactivate ``` [virtual environment]: https://realpython.com/what-is-pip/#using-pip-in-a-python-virtual-environment ### Minimal reproduction Following the instructions below, you will set up a skeleton project to create a reproduction. As mentioned above, we recommend using a [virtual environment], so create a new folder in your working directory and a new virtual environment inside it. Next: 1. As mentioned in our [bug reporting guide], ensure that you're running the latest version of Material for MkDocs, which might already include a fix for the bug: ``` pip install --upgrade --force-reinstall mkdocs-material ``` 2. Bootstrap a new documentation project using the `mkdocs` executable, which you use as a basis for the reproduction. It's essential to create a new, empty project for this: ``` mkdocs new . ``` Start by adding the [minimal configuration] in `mkdocs.yml`: ``` yaml theme: name: material ``` 3. Now, only add the necessary settings to `mkdocs.yml` to keep the reproduction minimal. If you are creating a reproduction for a rendering bug, create only the necessary amount of Markdown documents. __Repeat this step until the bug you want to report can be observed.__ 4. As a last step, before packing everything into a `.zip` file, double-check all settings and documents if they are essential to the reproduction, which means that the bug does not occur when they are omitted. Remove all non-essential lines and files. [bug reporting guide]: ../contributing/reporting-a-bug.md#upgrade-to-latest-version [minimal configuration]: ../creating-your-site.md#minimal-configuration ### Creating a `.zip` file Material for MkDocs 9.0.0 includes a new plugin solely intended to create reproductions for bug reports. When the built-in info plugin is enabled, MkDocs will add all relevant files to a `.zip`, print a summary to the terminal and exit. Add the following lines to `mkdocs.yml`: ``` yaml plugins: - info ``` Now, when running `mkdocs build`, a file called `example.zip` is automatically created, containing the minimal reproduction you can directly attach to your bug report. ``` INFO - Started archive creation for bug report INFO - Archive successfully created: example/.dependencies.json 859.0 B example/.versions.log 83.0 B example/docs/index.md 282.0 B example/mkdocs.yml 56.0 B example.zip 1.8 kB ``` ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/index.md�����������������������������������������������������������������0000664�0000000�0000000�00000000243�14753064456�0017204�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- template: home.html title: Material for MkDocs social: cards_layout_options: title: Documentation that simply works --- Welcome to Material for MkDocs. �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/insiders/����������������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0017374�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/insiders/access-management.md��������������������������������������������0000664�0000000�0000000�00000023005�14753064456�0023271�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Access management The Material for MkDocs Insiders repository is a private repository hosted on GitHub and access is, therefore, managed through GitHub. This section covers everything you need to know in order to gain access to the private Material for MkDocs Insiders repository. ## How to get access As the private Material for MkDocs Insiders repository is hosted on GitHub, you require a GitHub account to become a sponsor and to gain access. After sponsoring us on one of our [sponsoring tiers] starting at [$15 a month], you'll get access to the private Insiders repository. Please note that the process of gaining access is only partially automatable due to technical reasons. Depending on the type of account you've used to become a sponsor, we might need more information from you before we can grant access. [$15 a month]: https://github.com/sponsors/squidfunk/sponsorships?tier_id=210638 [sponsoring tiers]: sponsoring-tiers.md ### Individuals If you sponsor using a [personal account], you will receive an invitation link via email to the private Material for MkDocs Insiders repository immediately after initiating your sponsorship. This link is [valid for seven days]. Once you accept the invitation, you'll be ready to [get started]. If the link expired, please contact us at sponsors@squidfunk.com and we'll send you a new one. [personal account]: https://docs.github.com/en/get-started/learning-about-github/types-of-github-accounts#personal-accounts [valid for seven days]: #expired-invitations [get started]: getting-started.md ### Organizations When sponsoring using an [organization account], GitHub will not send an automated invitation via email to access the private Material for MkDocs Insiders repository. Due to [GitHub limitations], granting access to a private repository for an entire organization is not possible. Therefore, please contact us at sponsors@squidfunk.com with the name of a [personal account] or the name of a [bot account] that is publicly or privately listed as an owner of your GitHub organization after you received a confirmation that your sponsorship was initiated. We will add this designated account as a collaborator, and once the invitation is [accepted within seven days], your organization will be all set to [get started]. [organization account]: https://docs.github.com/en/get-started/learning-about-github/types-of-github-accounts#organization-accounts [GitHub limitations]: #collaborators [bot account]: #bot-account [accepted within seven days]: #expired-invitations ### Enterprises If you would like to sponsor us using an [enterprise account], we recommend using a [personal account] or a [bot account] to initiate the sponsorship and access the private Material for MkDocs Insiders repository using this account. [enterprise account]: https://docs.github.com/en/get-started/learning-about-github/types-of-github-accounts#enterprise-accounts ## Restrictions GitHub sets limitations beyond our control, which is why we require further information regarding [collaborators] of private repositories and [matching] of GitHub accounts. [collaborators]: #collaborators [matching]: #matching ### Collaborators GitHub policy limits access to [private repositories] to [personal accounts] only, which is why it is currently not possible for us to add [organization accounts] to the Material for MkDocs Insiders repository – a private repository. As much as we would love to give each member of your organization access, it's simply not feasible for us to add each member account, which is why every [sponsoring tier] is limited to one seat. However, you can use a [bot account] to work around this limitation. [private repositories]: https://docs.github.com/en/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-access-to-your-personal-repositories/inviting-collaborators-to-a-personal-repository [personal accounts]: https://docs.github.com/en/get-started/learning-about-github/types-of-github-accounts#personal-accounts [organization accounts]: https://docs.github.com/en/get-started/learning-about-github/types-of-github-accounts#organization-accounts [sponsoring tier]: sponsoring-tiers.md [team management]: #team-management ### Matching Due to privacy reasons, GitHub does not allow email addresses to be matched with GitHub accounts. When requesting access via email at sponsors@squidfunk.com, it's necessary to provide us with the name of a [personal account]. ## Bot account Given that only personal accounts can be listed as collaborators on [private repositories], ensuring access for an entire organization requires coordination through individuals. Changes within the team could lead to losing access to the entire organization. To avoid this, you have the option to create a bot account, which is [a new personal account] that does not belong to a specific individual but is publicly or privately listed as the owner of the GitHub organization Using a bot account for access management and initiating your [public] or [private] sponsorship through it also allows for better attribution of sponsorship costs, allowing you to manage access and payment for all sponsorships through a single account, and is thus recommended. [a new personal account]: https://docs.github.com/en/get-started/start-your-journey/creating-an-account-on-github [public]: privacy.md/#public-sponsors [private]: privacy.md/#private-sponsors ## Expired invitations The invitation to the private Material for MkDocs is valid for seven days, a limitation imposed by GitHub. If invitations are not accepted within this period, you'll need to contact us via mail at sponsors@squidfunk.com, and we will re-issue the invitation immediately. ## Team management If you are using Material for MkDocs Insiders as an [individual] and don't collaborate with other users, [forking] the private repository is not necessary. However, when working with a team, it is not possible to simply share your collaborator status with other accounts. Therefore, in order to work in a team, the account with access to Insiders can [fork], [clone], or [mirror] the private Material for MkDocs Insiders repository to an organization, providing a pathway for team collaboration. [fork]: #forking [clone]: #cloning [mirror]: #mirroring [individual]: #individuals ### Outside collaborators When working with outside collaborators, you should know that the Insiders edition is compatible with the community edition. All new features and configuration options are backward-compatible or implemented behind feature flags. Most Insiders features enhance the overall experience, e.g., by creating better social cards or instant previews. While these features add value for your site's users, they are most certainly not necessary for previewing your site. This means that outside collaborators can build the documentation locally with the community edition, and when they push their changes, your CI pipeline will build it with Insiders. When using [built-in plugins] exclusive to Insiders, we recommend using the [group] plugin. See the [getting started guide] for more information. [getting started guide]: getting-started.md [built-in plugins]: ../plugins/index.md [group]: ../plugins/group.md ### Forking [Forking] a repository creates a copy of the repository that allows for independent development while maintaining a link to the original repository for updates. [forking]: https://docs.github.com/en/get-started/quickstart/fork-a-repo ### Cloning [Cloning] a repository copies the repository to your local machine or codespace, facilitating offline work and content management. You can, of course, also [clone a private fork]. [cloning]: https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository [clone a private fork]: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/fork-a-repo#cloning-your-forked-repository ### Mirroring [Mirroring] a repository creates an identical copy, ensuring you have the flexibility to host and work with the repository [in other environments] besides GitHub. This is a particularly useful strategy for organizations hosting their repositories in a private environment outside of GitHub. [mirroring]: https://docs.github.com/en/repositories/creating-and-managing-repositories/duplicating-a-repository [in other environments]: #github-alternatives ## GitHub alternatives Material for MkDocs Insiders is designed to be compatible with various repository hosting platforms, including GitLab. The key requirement is still a GitHub account, as we use GitHub Sponsors for transactions and GitHub to manage access to the private Insiders repository. Once you've become a sponsor and secured access to the private Insiders repository via an individual GitHub account, you can [mirror the repository in another location]. This mirroring process not only allows for easy integration into your existing workflow but also ensures that your projects stay up-to-date with the latest features and improvements of Insiders. Our discussion board is a valuable resource for any questions about integrating Material for MkDocs Insiders into your projects. It offers a space to connect with others who may have similar requirements and setups, as well as to exchange tips and explore solutions together. [mirror the repository in another location]: https://docs.github.com/en/repositories/creating-and-managing-repositories/duplicating-a-repository#mirroring-a-repository-in-another-location [discussion board]: https://github.com/squidfunk/mkdocs-material/discussions ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/insiders/benefits.md�����������������������������������������������������0000664�0000000�0000000�00000031243�14753064456�0021520�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# What’s in it for you Material for MkDocs Insiders is packed with additional features that are exclusively available to our monthly sponsors – the moment you become a sponsor, you'll gain __immediate access__ to all the exclusive Insiders features, ready for you to __start using now__. ## Features Our sponsors currently enjoy access to the following 20 additional features. New features are added regularly, so be sure to check back regularly to stay updated. <div class="mdx-columns" markdown> - [x] [Blog plugin: pinned posts] - [x] [Instant previews] - [x] [Footnote tooltips] - [x] [Tags plugin: advanced settings] - [x] [Tags plugin: nested tags] - [x] [Tags plugin: shadow tags] - [x] [Stay on page when switching languages] - [x] [Blog plugin: author profiles] - [x] [Blog plugin: advanced settings] - [x] [Projects plugin] - [x] [Instant prefetching] - [x] [Social plugin: custom layouts] - [x] [Social plugin: background images] - [x] [Code range selection] - [x] [Code annotations: custom selectors] - [x] [Privacy plugin: advanced settings] - [x] [Optimize plugin] - [x] [Navigation path] (Breadcrumbs) - [x] [Typeset plugin] - [x] [Privacy plugin: external links] </div> ## What's coming next > Too many ideas, too little time! Our backlog is filled with countless ideas that we came up with or that have been suggested by our community. We're also working to make our roadmap public. If you have something specific in mind, and wonder whether we've considered it, feel free to ask on our [discussion board]. [discussion board]: https://github.com/squidfunk/mkdocs-material/discussions ## Frequent releases We’re committed to quickly addressing bugs, that come up and keeping our open issue count as low as possible. Both our community and Insiders editions are regularly updated, ensuring you have the latest features and fixes available at all times. ## Additional benefits As a premium sponsors, you'll enjoy additional benefits that are not available to our individual sponsors. When sponsoring our work on one of our [commercial tiers] starting at [$125 a month], you'll get additional benefits that we offer for enterprises: - [Prioritized] bug reports to keep your projects running smoothly - Logo placement and backlink on our site for increased visibility - Private support via email for any questions to our maintainers [commercial tiers]: sponsoring-tiers.md/#commercial-use [$125 a month]: sponsoring-tiers.md/#the-organization [list of premium sponsors]: https://github.com/squidfunk/mkdocs-material#user-content-premium-sponsors [Prioritized]: ../support.md/#prioritized-support ---- Interested in supporting us? Together, let’s continue to make Material for MkDocs an even more powerful tool for everyone. We’re excited for what the future holds! [:octicons-heart-fill-24:{ .mdx-heart }   Show your support <span class="mdx-sponsorship-count" data-mdx-component="sponsorship-count"></span>][sponsoring tiers]{ .md-button .md-button--primary .mdx-sponsorship-button } [sponsoring tiers]: sponsoring-tiers.md#commercial-use <div data-mdx-component="sponsorship"></div> ## Funding <span class="mdx-sponsorship-total" data-mdx-component="sponsorship-total"></span> ### Goals The following section lists all funding goals. Each goal contains a list of features prefixed with a checkmark symbol, denoting whether a feature is :octicons-check-circle-fill-24:{ style="color: #00e676" } already available or :octicons-check-circle-fill-24:{ style="color: var(--md-default-fg-color--lightest)" } planned, but not yet implemented. This means that each funding goal unlocks new features for general availability in the community edition, after sponsors have used them for a while. #### $ 18,000 – Lemon Drop - [x] [Optimize plugin] - [x] [Navigation path] (Breadcrumbs) - [x] [Blog plugin: advanced settings] - [x] [Blog plugin: author profiles] - [x] [Blog plugin: pinned posts] - [x] [Instant prefetching] [Optimize plugin]: ../plugins/optimize.md [Navigation path]: ../setup/setting-up-navigation.md#navigation-path [Blog plugin: advanced settings]: ../setup/setting-up-a-blog.md#advanced-settings [Blog plugin: author profiles]: ../setup/setting-up-a-blog.md#adding-author-profiles [Blog plugin: pinned posts]: ../setup/setting-up-a-blog.md#pinning-a-post [Instant prefetching]: ../setup/setting-up-navigation.md#instant-prefetching #### $ 20,000 – Jalapeño - [x] [Typeset plugin] - [x] [Footnote tooltips] - [x] [Privacy plugin: advanced settings] - [x] [Privacy plugin: external links] - [ ] to be announced - [ ] to be announced [Typeset plugin]: ../plugins/typeset.md [Footnote tooltips]: ../reference/footnotes.md#footnote-tooltips [Privacy plugin: external links]: ../plugins/privacy.md#external-links [Privacy plugin: advanced settings]: ../setup/ensuring-data-privacy.md#advanced-settings #### $ 22,000 – Habanero Orange - [x] [Instant previews] - [x] [Social plugin: custom layouts] - [x] [Social plugin: background images] - [x] [Code range selection] - [x] [Code annotations: custom selectors] - [x] [Stay on page when switching languages] [Instant previews]: ../setup/setting-up-navigation.md#instant-previews [Social plugin: custom layouts]: ../setup/setting-up-social-cards.md#customization [Social plugin: background images]: ../plugins/social.md#option.background_image [Code range selection]: ../reference/code-blocks.md#code-selection-button [Code annotations: custom selectors]: ../reference/code-blocks.md#custom-selectors [Stay on page when switching languages]: ../setup/changing-the-language.md#stay-on-page #### $ 24,000 – Blockpaprika - [x] [Projects plugin] - [x] [Tags plugin: nested tags] - [x] [Tags plugin: shadow tags] - [x] [Tags plugin: advanced settings] - [ ] to be announced - [ ] to be announced [Projects plugin]: ../plugins/projects.md [Tags plugin: nested tags]: ../setup/setting-up-tags.md#nested-tags [Tags plugin: shadow tags]: ../setup/setting-up-tags.md#shadow-tags [Tags plugin: advanced settings]: ../setup/setting-up-tags.md#advanced-settings ### Goals completed This section celebrates the milestones we’ve achieved thanks to our incredible sponsors. Those features were once part of Material for MkDocs Insiders, and therefore only available to our sponsors, and are now generally available to be used by all users. #### $ 16,000 – Chipotle - [x] [Meta plugin] - [x] [Blog plugin: related links] - [x] [Blog plugin: custom index pages] - [x] [Tags plugin: configurable listings] - [x] [Tags plugin: allow list] + [custom sorting] - [x] [Navigation subtitles] [Meta plugin]: ../plugins/meta.md [Blog plugin: related links]: ../setup/setting-up-a-blog.md#adding-related-links [Blog plugin: custom index pages]: ../setup/setting-up-a-blog.md#custom-index-pages [Tags plugin: configurable listings]: ../setup/setting-up-tags.md#configurable-listings [Tags plugin: allow list]: ../plugins/tags.md#config.tags_allowed [custom sorting]: ../plugins/tags.md#config.tags_sort_by [Navigation subtitles]: ../reference/index.md#setting-the-page-subtitle #### $ 14,000 – Goat's Horn - [x] [Privacy plugin] - [x] [Card grids] - [x] [Tooltips] - [x] [Content tabs: anchor links] - [x] [Automatic light / dark mode] - [x] [Document contributors] [Privacy plugin]: ../setup/ensuring-data-privacy.md#built-in-privacy-plugin [Card grids]: ../reference/grids.md [Tooltips]: ../reference/tooltips.md [Content tabs: anchor links]: ../reference/content-tabs.md#anchor-links [Automatic light / dark mode]: ../setup/changing-the-colors.md#automatic-light-dark-mode [Document contributors]: ../setup/adding-a-git-repository.md#document-contributors #### $ 12,000 – Piri Piri - [x] [Blog plugin] - [x] [Chinese search support] - [x] [Annotations] - [x] [Navigation icons] - [x] [Navigation pruning] - [x] [Navigation status] [Blog plugin]: ../setup/setting-up-a-blog.md [Chinese search support]: ../blog/posts/chinese-search-support.md [Annotations]: ../reference/annotations.md [Navigation icons]: ../reference/index.md#setting-the-page-icon [Navigation pruning]: ../setup/setting-up-navigation.md#navigation-pruning [Navigation status]: ../reference/index.md#setting-the-page-status #### $ 10,000 – Carolina Reaper - [x] [Brand new search plugin] - [x] [Rich search previews] - [x] [Tokenizer with lookahead] - [x] [Advanced search highlighting] - [x] [Excluding content from search] - [x] [Offline plugin] [Brand new search plugin]: ../blog/posts/search-better-faster-smaller.md [Rich search previews]: ../blog/posts/search-better-faster-smaller.md#rich-search-previews [Tokenizer with lookahead]: ../blog/posts/search-better-faster-smaller.md#tokenizer-lookahead [Advanced search highlighting]: ../blog/posts/search-better-faster-smaller.md#accurate-highlighting [Excluding content from search]: ../setup/setting-up-site-search.md#search-exclusion [Offline plugin]: ../setup/building-for-offline-usage.md #### $ 8,000 – Scotch Bonnet - [x] [Social cards] - [x] Code annotations: anchor links - [x] [Code annotations: strip comments] - [x] [Tag icons] - [x] [Table of contents anchor following] - [x] Sidebars automatically scroll to active item [Social cards]: ../setup/setting-up-social-cards.md [Code annotations: strip comments]: ../reference/code-blocks.md#stripping-comments [Tag icons]: ../setup/setting-up-tags.md#tag-icons-and-identifiers [Table of contents anchor following]: ../setup/setting-up-navigation.md#anchor-following #### $ 7,000 – Royal Gold - [x] [Cookie consent] - [x] [Was this page helpful?] - [x] [Dismissable announcement bar] [Cookie consent]: ../setup/ensuring-data-privacy.md#cookie-consent [Was this page helpful?]: ../setup/setting-up-site-analytics.md#was-this-page-helpful [Dismissable announcement bar]: ../setup/setting-up-the-header.md#mark-as-read #### $ 6,000 – Trinidad Scorpion - [x] [Boosting pages in search] - [x] [Custom admonition icons] - [x] [Linking content tabs] [Boosting pages in search]: ../setup/setting-up-site-search.md#search-boosting [Custom admonition icons]: ../reference/admonitions.md#admonition-icons [Linking content tabs]: ../reference/content-tabs.md#linked-content-tabs #### $ 5,000 – Aji Panca - [x] [Mermaid.js integration] - [x] Stay on page when switching versions - [x] [Tags with search integration] [Mermaid.js integration]: ../reference/diagrams.md [Tags with search integration]: ../setup/setting-up-tags.md #### $ 4,000 – Ghost Pepper - [x] [Anchor tracking] - [x] [Code annotations] - [x] [Version warning] [Anchor tracking]: ../setup/setting-up-navigation.md#anchor-tracking [Code annotations]: ../reference/code-blocks.md#adding-annotations [Version warning]: ../setup/setting-up-versioning.md#version-warning #### $ 3,000 – Caribbean Red - [x] [Sticky navigation tabs] - [x] [Section index pages] - [x] [Remove generator notice] [Sticky navigation tabs]: ../setup/setting-up-navigation.md#sticky-navigation-tabs [Section index pages]: ../setup/setting-up-navigation.md#section-index-pages [Remove generator notice]: ../setup/setting-up-the-footer.md#generator-notice #### $ 2,500 – Biquinho Vermelho - [x] [Search suggestions] - [x] [Search highlighting] - [x] [Search sharing] [Search suggestions]: ../setup/setting-up-site-search.md#search-suggestions [Search highlighting]: ../setup/setting-up-site-search.md#search-highlighting [Search sharing]: ../setup/setting-up-site-search.md#search-sharing #### $ 2,000 – Black Pearl - [x] Latest release tag - [x] [Color palette toggle] - [x] [Back-to-top button] [Color palette toggle]: ../setup/changing-the-colors.md#color-palette-toggle [Back-to-top button]: ../setup/setting-up-navigation.md#back-to-top-button #### $ 1,500 – Bhut Jolokia - [x] [Admonition inline blocks] - [x] [Site language selection] - [x] [Versioning] [Admonition inline blocks]: ../reference/admonitions.md#inline-blocks [Site language selection]: ../setup/changing-the-language.md#site-language-selector [Versioning]: ../setup/setting-up-versioning.md#versioning #### $ 1,000 – Prairie Fire - [x] [Navigation sections] - [x] [Navigation expansion] - [x] [Hiding the sidebars] - [x] [Table of contents in navigation] - [x] [Header hides on scroll] [Navigation sections]: ../setup/setting-up-navigation.md#navigation-sections [Navigation expansion]: ../setup/setting-up-navigation.md#navigation-expansion [Hiding the sidebars]: ../setup/setting-up-navigation.md#hiding-the-sidebars [Table of contents in navigation]: ../setup/setting-up-navigation.md#navigation-integration [Header hides on scroll]: ../setup/setting-up-the-header.md#automatic-hiding #### $ 500 – Madame Jeanette - [x] Improved search result grouping - [x] Improved search result relevance and scoring - [x] Missing query terms in search results �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/insiders/changelog/������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0021323�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/insiders/changelog/index.md����������������������������������������������0000664�0000000�0000000�00000121131�14753064456�0022753�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Changelog ## Material for MkDocs Insiders ### 4.53.15 <small>January 15, 2025</small> { id="4.53.15" } - Fixed #7896: Scoped tags listings not rendering in subsections ### 4.53.14 <small>September 29, 2024</small> { id="4.53.14" } - Fixed #7567: Empty headlines when using typeset plugin with anchorlinks ### 4.53.13 <small>September 14, 2024</small> { id="4.53.13" } - Fixed #7520: Social plugin errors for generated files (MkDocs 1.6+) ### 4.53.12 <small>August 2, 2024</small> { id="4.53.12" } - Fixed #7410: Instant previews jump on content tabs with anchor links - Fixed #7408: Instant previews jump on content tabs ### 4.53.11 <small>May 27, 2024</small> { id="4.53.11" } - Fixed projects plugin crashing when serving before building subprojects ### 4.53.10 <small>May 20, 2024</small> { id="4.53.10" } - Fixed projects plugin crashing in serve mode when disabled - Fixed projects plugin crashing when building nested projects ### 4.53.9 <small>May 20, 2024</small> { id="4.53.9" } - Fixed #7191: Tags listings not rendering when `toc_depth` is changed ### 4.53.8 <small>April 26, 2024</small> { id="4.53.8" } - Fixed #7052: Preview extension automatically including all pages - Fixed #7051: Instant previews mounting on footnote references - Fixed #5165: Improved tooltips not mounting in sidebar for typeset plugin ### 4.53.7 <small>April 25, 2024</small> { id="4.53.7" } - Fixed #7060: Incorrect resolution of translation when using static-i18n ### 4.53.6 <small>April 5, 2024</small> { id="4.53.6" } - Ensure working directory is set for projects when using projects plugin - Fixed #6970: Incorrect relative paths in git submodules with projects plugin ### 4.53.5 <small>April 2, 2024</small> { id="4.53.5" } - Fixed social plugin crashing when no colors are specified in palettes ### 4.53.4 <small>March 31, 2024</small> { id="4.53.4" } - Fixed #6973: Escaping issue in tags extra files deprecation helper ### 4.53.3 <small>March 23, 2024</small> { id="4.53.3" } - Added support for font variants in social plugin - Improved resilience of font resolution in social plugin - Fixed tag listing sometimes not being auto-populated - Fixed tag listing scope not being correctly resolved - Fixed #6941: Meta plugin adding duplicate entries - Fixed #6928: Social plugin crashes for some fonts ### 4.53.2 <small>March 18, 2024</small> { id="4.53.2" } - Fixed abort on first non-matching configuration in preview extension - Fixed #6914: Meta files take precedence over front matter ### 4.53.1 <small>March 6, 2024</small> { id="4.53.1" } - Fixed #6877: Projects plugin computes incorrect path to assets - Fixed #6869: Blog plugin should emit warning on invalid related link ### 4.53.0 <small>February 24, 2024</small> { id="4.53.0" } - Added support for automatic instant previews - Added support for pinned blog posts ### 4.52.3 <small>February 21, 2024</small> { id="4.52.3" } - Fixed resolution of URLs in instant previews - Fixed instant previews not mounting for same-page links ### 4.52.2 <small>February 7, 2024</small> { id="4.52.2" } - Fixed #6735: Instant previews misplaced when below tabs ### 4.52.1 <small>January 30, 2024</small> { id="4.52.1" } - Fixed #6705: Navigation path not being hidden when specified - Fixed #6703: New tags plugin crashes on Windows (2nd attempt) ### 4.52.0 <small>January 28, 2024</small> { id="4.52.0" } - Added support for instant previews - Fixed footnote tooltips positioning edge cases - Fixed #6703: New tags plugin crashes on Windows ### 4.51.0 <small>January 24, 2024</small> { id="4.51.0" } - Added support for footnote tooltips ### 4.50.0 <small>January 19, 2024</small> { id="4.50.0" } - Added configurable logging capabilities to privacy plugin ### 4.49.2 <small>January 9, 2024</small> { id="4.49.2" } - Fixed missing attribute lists extension for tags plugin - Fixed #6627: New tags plugin crashes on Python 3.8 ### 4.49.1 <small>January 7, 2024</small> { id="4.49.1" } - Improved interop of new tags plugin with other plugins - Fixed #6594: Tags plugin doesn't work with mkdocs-macros plugin - Fixed #6569: Social plugin crashes if in different file system location ### 4.49.0 <small>December 29, 2023</small> { id="4.49.0" } - Added support for exporting tags and mappings - Added support for disabling tags and/or listings or both - Fixed tag links from pages to listings on homepage ### 4.48.0 <small>December 23, 2023</small> { id="4.48.0" } - Rewrite of tags plugin, now much more powerful - Added support for nested tags (tag hierarchies, e.g. foo/bar) - Added support for shadow tags (by list, prefix or suffix) - Added support for custom tag layouts and templates - Added support for hiding tags in table of contents - Added support for configurable inline tag listings - Added support for automatically linking to closest tag listing - Added support for scoped listings (limit to subsection of site) - Added support for multiple instances of tags plugin - Added support for changing front matter property and template variable - Added support for tag slugification format strings - Fixed #6510: Projects plugin out of memory on Linux (4.47.1 regression) - Fixed projects plugin not notifying plugins about serve mode - Fixed projects plugin skipping projects on prefix match - Deprecated tags_file and tags_extra_files settings - Modernized tags plugin code base ### 4.47.1 <small>December 11, 2023</small> { id="4.47.1" } - Improved editing experience for projects plugin - Improved resilience of optimize and social plugin - Fixed race condition when writing manifest in optimize and social plugin - Fixed #6475: Logo not taking precedence over icon in social card - Fixed #6399: Projects plugin doesn't pick up added/removed projects - Fixed #6306: Projects plugin cache not correctly updated ### 4.47.0 <small>December 8, 2023</small> { id="4.47.0" } - Added support for staying on page when switching languages - Added configurable logging capabilities to projects plugin - Removed temporary warning on blog plugin authors file format change - Fixed projects plugin logging messages twice on Linux systems - Fixed projects plugin trying to hoist theme assets of divergent themes - Fixed compatibility of optimize plugin and projects plugin - Fixed compatibility of social plugin and projects plugin - Fixed #6448: Code line selection broken for code blocks with custom ids - Fixed #6437: Projects plugin crashing for certain site URL configurations - Fixed #6414: Projects plugin doesn't prefix messages coming from projects ### 4.46.0 <small>November 26, 2023</small> { id="4.46.0" } - Added support for author profiles in blog plugin - Fixed custom index pages yielding two navigation items (4.45.0 regression) ### 4.45.0 <small>November 24, 2023</small> { id="4.45.0" } - Added support for sorting blog categories by post count or custom function - Improved tags plugin to generate Unicode-aware slugs by default - Fixed non-deterministic order of multiple authors in blog plugin ### 4.44.0 <small>November 23, 2023</small> { id="4.44.0" } - Added pagination settings for archive pages in blog plugin - Added pagination settings for category pages in blog plugin ### 4.43.1 <small>November 19, 2023</small> { id="4.43.1" } - Added third-party theme support in projects plugin, improving editing - Fixed #6360: Projects plugin crashes when theme is not Material for MkDocs - Fixed #6306: Projects plugin not reloading nested project configuration ### 4.43.0 <small>November 5, 2023</small> { id="4.43.0" } - Added support for GitLab committers (document contributors) - Fixed #6264: Fixed compatibility with Python < 3.10 - Fixed #6254: Meta plugin not applying meta files to blog posts ### 4.42.3 <small>October 27, 2023</small> { id="4.42.3" } - Fixed #6251: Cards in grids cut off on very small screens - Fixed #6241: Using social plugin + static-i18n plugin errors ### 4.42.2 <small>October 14, 2023</small> { id="4.42.2" } - Fixed #6186: Privacy plugin ignores hash fragments on images - Fixed #6180: Projects plugin crashing when adding or removing files ### 4.42.1 <small>October 5, 2023</small> { id="4.42.1" } - Fixed spacing of related links in blog posts on small screens ### 4.42.0 <small>September 19, 2023</small> { id="4.42.0" } - Added support for using git submodules in projects plugin - Added support for transforming project configurations - Improved resilience of optimize and blog plugin - Fixed optimize plugin crashing on `.jpeg` extension - Fixed project URLs not using site URLs in projects plugin ### 4.41.0 <small>September 11, 2023</small> { id="4.41.0" } - Improved multi-instance support for optimize plugin - Added inclusion and exclusion patterns for optimize plugin - Added transparent keyword for color handling in social plugin - Changed default quality of PNGs to 3 in optimize plugin - Fixed #5979: meta file not detected in root of docs directory ### 4.40.4 <small>September 4, 2023</small> { id="4.40.4" } - Fixed privacy plugin choking on boolean HTML5 attributes - Fixed wrapping of inline code blocks in typeset table of contents - Fixed blog plugin error when running under dirty reload ### 4.40.3 <small>September 2, 2023</small> { id="4.40.3" } - Fixed #5946: Docker image missing pngquant for optimize plugin ### 4.40.2 <small>August 31, 2023</small> { id="4.40.2" } - Added configurable error handling capabilities for social plugin - Fixed #5922: Blog plugin shows no posts when building a standalone blog - Fixed #5914: Tags plugin tags_extra_files errors (4.39.3 regression) - Fixed #5904: Blog plugin sometimes excludes files (4.40.1 regression) ### 4.40.1 <small>August 27, 2023</small> { id="4.40.1" } - Fixed #5902: ResizeObserver polyfill not detected by privacy plugin - Fixed empty category pages in blog plugin (4.40.0 regression) ### 4.40.0 <small>August 26, 2023</small> { id="4.40.0" } - Added logo, title and description options to social plugin default layouts - Fixed privacy plugin compatibility issue with Python < 3.10 - Fixed #5896: Blog plugin errors when using custom index pages ### 4.39.3 <small>August 24, 2023</small> { id="4.39.3" } - Fixed lxml dependency missing in Docker container (4.39.2 regression) ### 4.39.2 <small>August 23, 2023</small> { id="4.39.2" } - Fixed color palette toggle being reversed (9.2.0 regression) ### 4.39.1 <small>August 21, 2023</small> { id="4.39.1" } - Fixed git diff in tags plugin after merging back 9.2.0 changes ### 4.39.0 <small>August 3, 2023</small> { id="4.39.0" } - Added support for hoisting theme media files when building projects - Added support for sorting pages on tags index for tags plugin - Added support for adding date of last update to blog posts - Fixed #5797: Parse error in typeset plugin (4.38.1 regression) ### 4.38.1 <small>August 1, 2023</small> { id="4.38.1" } - Improved nested serve mode for projects plugin - Improved compat in privacy plugin with third-party plugins - Fixed #5790: Typeset plugin ignores data-toc-label attribute - Fixed #5778: Interplay of privacy plugin with git-revision-date-localized - Fixed #5773: Info plugin erroring when community edition is in beta ### 4.38.0 <small>July 29, 2023</small> { id="4.38.0" } - Added projects plugin for building nested projects - Updated privacy plugin to new MkDocs API ### 4.37.1 <small>July 28, 2023</small> { id="4.37.1" } - Updated MkDocs to 1.5.1 - Fixed deprecation warning in social plugin due to MkDocs upgrade - Fixed #5772: Privacy plugin fails due to API change in MkDocs ### 4.37.0 <small>July 7, 2023</small> { id="4.37.0" } - Added support for overriding social cards settings per page - Added new social card `default/only/image` layout - Improved resilience of optimize and social plugin - Fixed rendering bugs for pruned navigation items - Fixed jumping of content tabs anchor links when instant loading is enabled - Fixed #5676: Optimize plugin doesn't check for `pngquant` ### 4.36.1 <small>June 23, 2023</small> { id="4.36.1" } - Fixed #5618: Date comparison breaking for drafts in blog plugin ### 4.36.0 <small>June 15, 2023</small> { id="4.36.0" } - Added support for instant prefetching to speed up slow connections - Improved stability of anchor link removal in built-in typeset plugin - Improved performance of regular expressions in typeset plugin - Removed unnecessary import test for `cairosvg` in optimize plugin - Fixed #5590: Regular expression for anchor link removal too greedy ### 4.35.3 <small>June 1, 2023</small> { id="4.35.3" } - Fixed #5579: Abbreviations in headlines filtered by typeset plugin ### 4.35.2 <small>May 29, 2023</small> { id="4.35.2" } - Fixed #5555: Blog plugin crashes when computing readtime for emojis ### 4.35.1 <small>May 20, 2023</small> { id="4.35.1" } - Fixed internal handling of errors in social plugin ### 4.35.0 <small>May 20, 2023</small> { id="4.35.0" } - Improve editing experience and stability of social plugin - Added support for custom layout syntax validation in social plugin - Added support for layer origin for easier placement in social plugin - Added support for in- and exclusion patterns in social plugin - Catch and print syntax errors in custom layouts ### 4.34.1 <small>May 16, 2023</small> { id="4.34.1" } - Disable social plugin debug mode by default on mkdocs build - Added warning in social plugin debug mode when font style couldn't be found - Set default concurrency of built-in multi-threaded plugins to CPUs - 1 - Fixed #5521: Social plugin triggers race condition when downloading fonts - Fixed #5515: Social plugin crashes when concurrency is set to 1 ### 4.34.0 <small>May 14, 2023</small> { id="4.34.0" } - Added support for new overflow mode to auto-fit text in social plugin - Reduced subtle rendering bugs in (code) annotations due to subpixel rounding - Improved print styles for (code) annotation lists - Improved performance of social plugin, now 3x as fast - Improved interop of typeset plugin with MkDocstrings - Fixed logo location for variants of default template in social plugin - Fixed #5446: Built-in typeset plugin picks up headings in code blocks ### 4.33.2 <small>May 12, 2023</small> { id="4.33.2" } - Fixed #5508: Social plugin crashes trying to copy cards on Docker/Windows - Fixed #5507: Social plugin crashes on serve when layouts folder doesn't exist - Fixed #5505: Social plugin trying to resolve logo in wrong location - Fixed #5496: Annotations with nested lists incorrectly mounted - Fixed #5493: Social plugin crashes on Python 3.8 ### 4.33.1 <small>May 9, 2023</small> { id="4.33.1" } - Added support for SVG background images in social plugin ### 4.33.0 <small>May 8, 2023</small> { id="4.33.0" } - Added support for custom layouts for social plugin - Added support for background images for social cards ### 4.32.6 <small>April 22, 2023</small> { id="4.32.6" } - Fixed #5336: Interplay of blog plugin with git-revision-date-localized ### 4.32.5 <small>April 7, 2023</small> { id="4.32.5" } - Fixed #5322: Navigation tabs hoist nested page icons ### 4.32.4 <small>March 24, 2023</small> { id="4.32.4" } - Fixed #5241: Built-in typeset plugin jams navigation for anchors in headings ### 4.32.3 <small>March 9, 2023</small> { id="4.32.3" } - Fixed Docker image release workflow (9.1.0 regression) - Fixed #5159: Missing underline for abbreviations (9.1.0 regression) ### 4.32.2 <small>February 23, 2023</small> { id="4.32.2" } - Fixed #5127: Privacy plugin not handling large number of occurrences - Fixed #5126: Privacy plugin breaks when replacing specific emojis ### 4.32.1 <small>February 23, 2023</small> { id="4.32.1" } - Fixed code block spans interfering with copying - Fixed #5077: Privacy plugin breaks image `alt` text encoding - Fixed #5079: Privacy plugin removing `rel=me` on external links ### 4.32.0 <small>February 19, 2023</small> { id="4.32.0" } - Added support for custom selectors for code annotations - Added support for code line range selection for better sharing ### 4.31.0 <small>February 18, 2023</small> { id="4.31.0" } - Added support for table of contents on blog index and archive pages - Fixed #4512: Allow custom search field boosts (experimental) ### 4.30.2 <small>February 13, 2023</small> { id="4.30.2" } - Fixed privacy plugin excludes not working (4.30.0 regression) ### 4.30.1 <small>February 12, 2023</small> { id="4.30.1" } - Fixed privacy plugin not handling static templates (e.g. `404.html`) ### 4.30.0 <small>February 6, 2023</small> { id="4.30.0" } - Rewrite of privacy plugin for concurrency, now twice as fast - Added support for explicit inclusion for privacy plugin - Added optimization support for privacy plugin (+ optimize plugin) ### 4.29.0 <small>January 21, 2023</small> { id="4.29.0" } - Added built-in optimize plugin for automatically compressing images - Switched reporting in built-in privacy plugin to `info` level ### 4.28.1 <small>January 17, 2023</small> { id="4.28.1" } - Fixed built-in info plugin erroring for Insiders on version check - Fixed #4865: Navigation paths render bug when there's no top-level section - Fixed #4875: Added support for hiding navigation paths - Improved navigation path to not render for a single item ### 4.28.0 <small>January 14, 2023</small> { id="4.28.0" } - Added support for navigation path (breadcrumbs) ### 4.27.1 <small>December 20, 2022</small> { id="4.27.1" } - Fixed rendering of succeeding navigation items in typeset plugin - Fixed #4795: Built-in typeset plugin changes MkDocs' title precedence - Fixed #4724: Blog plugin not rendering integrate table of contents ### 4.27.0 <small>December 20, 2022</small> { id="4.27.0" } - Added built-in typeset plugin to preserve formatting in sidebars - Added URL and table of contents support for blog categories ### 4.26.6 <small>November 28, 2022</small> { id="4.26.6" } - Fixed #4683: Tags plugin crashes when a tag is empty ### 4.26.5 <small>November 27, 2022</small> { id="4.26.5" } - Fixed #4632: Post excerpt title link doesn't point to top of the page ### 4.26.4 <small>November 27, 2022</small> { id="4.26.4" } - Fixed redundant file extension when using privacy plugin ### 4.26.3 <small>November 15, 2022</small> { id="4.26.3" } - Fixed #4637: Attachments w/o titles in related links error in blog plugin - Fixed #4631: Remote favicons not downloaded and inlined by privacy plugin ### 4.26.2 <small>November 3, 2022</small> { id="4.26.2" } - Updated MkDocs to 1.4.2 - Added support for tag compare functions when sorting on index pages - Fixed footnotes being rendered in post excerpts without separators - Fixed error in blog plugin when `toc` extension is not enabled - Fixed issues with invalid asset paths and linked post titles - Fixed #4572: Privacy plugin fails when symlinks cannot be created - Fixed #4545: Blog plugin doesn't automatically link headline to post - Fixed #4542: Blog plugin doesn't allow for multiple instances - Fixed #4532: Blog plugin doesn't allow for mixed use of date and datetime ### 4.26.1 <small>October 22, 2022</small> { id="4.26.1" } - Improved reporting of configuration errors in tags plugin - Fixed #4515: Privacy plugin fails when site URL is not defined - Fixed #4514: Privacy plugin doesn't fetch Google fonts (4.26.0 regression) ### 4.26.0 <small>October 18, 2022</small> { id="4.26.0" } - Refactored privacy plugin to prepare for new features - Added support for `rel=noopener` links in privacy plugin - Resolve encoding issues with blog and privacy plugin ### 4.25.5 <small>October 16, 2022</small> { id="4.25.5" } - Updated MkDocs to 1.4.1 - Added namespace prefix to built-in plugins - Updated `content` and `header` partial ### 4.25.4 <small>October 9, 2022</small> { id="4.25.4" } - Fixed other path issues for standalone blogs (4.24.2 regression) ### 4.25.3 <small>October 9, 2022</small> { id="4.25.3" } - Fixed #4457: Posts not collected for standalone blog (4.24.2 regression) ### 4.25.2 <small>October 4, 2022</small> { id="4.25.2" } - Fixed #4452: Blog and tags plugin crash when specifying slugify function ### 4.25.1 <small>October 3, 2022</small> { id="4.25.1" } - Updated `mkdocs-rss-plugin` in `Dockerfile` to fix MkDocs compat errors ### 4.25.0 <small>October 2, 2022</small> { id="4.25.0" } - Added support for navigation subtitles - Added support for defining an allow list for built-in tags plugin - Added support for custom slugify functions for built-in tags plugin - Improved stability of search plugin when using `--dirtyreload` ### 4.24.2 <small>October 1, 2022</small> { id="4.24.2" } - Updated MkDocs to 1.4 - Fixed compatibility issues with MkDocs 1.4 - Fixed incorrectly generated paths in privacy plugin - Fixed blog index page not showing navigation when using meta plugin ### 4.24.1 <small>September 30, 2022</small> { id="4.24.1" } - Fixed #4430: build error when enabling consent without repository URL ### 4.24.0 <small>September 27, 2022</small> { id="4.24.0" } - Added support for custom content on index pages (blog) - Added support for keeping content on paginated index pages (blog) - Added support for limiting categories in post excerpts (blog) - Added support for simple override of templates via front matter (blog) - Added icon in navigation for pages with encrypted content - Fixed #4396: Front matter of index pages not inherited by pagination (blog) - Improved performance by building post excerpts once (blog) ### 4.23.6 <small>September 22, 2022</small> { id="4.23.6" } - Fixed #4389: Blog posts in first week of year in wrong archive - Fixed (= switched) footer previous and next links for blog posts ### 4.23.5 <small>September 18, 2022</small> { id="4.23.5" } - Fixed #4367: Improved blog plugin date handling for MultiMarkdown syntax - Fixed #4374: Fixed invalid URLs of related links to other blog posts ### 4.23.4 <small>September 14, 2022</small> { id="4.23.4" } - Fixed #4365: Recursion error in blog plugin due to `deepcopy` - Fixed path errors for blog plugin on Windows - Fixed publishing workflow in forked repositories ### 4.23.3 <small>September 13, 2022</small> { id="4.23.3" } - Fixed previous and next page links for drafts of blog posts ### 4.23.2 <small>September 13, 2022</small> { id="4.23.2" } - Fixed #4348: Blog plugin crashes on custom `nav` title - Fixed blog plugin crashing when category contained only drafts - Fixed rendering of content from blog index file ### 4.23.1 <small>September 12, 2022</small> { id="4.23.1" } - Fixed #4345: Blog plugin errors with default settings ### 4.23.0 <small>September 12, 2022</small> { id="4.23.0" } - Added blogging support via built-in blog plugin ### 4.22.1 <small>September 7, 2022</small> { id="4.22.1" } - Fixed #4217: Tooltips in data tables render in wrong position ### 4.22.0 <small>August 21, 2022</small> { id="4.22.0" } - Added support for navigation status ### 4.21.1 <small>August 13, 2022</small> { id="4.21.1" } - Fixed #4176: Broken image when avatar is served by Gravatar - Fixed #4212: Deferred search initialization for file:// locations ### 4.21.0 <small>July 17, 2022</small> { id="4.21.0" } - Added meta plugin: set front matter for all pages in a folder - Fixed #4114: Tags plugin fails if only `tags_extra_files` is set ### 4.20.1 <small>July 11, 2022</small> { id="4.20.1" } - Fixed #4105: Tags plugin fails if `tags_file` is not set (4.20.0 regression) ### 4.20.0 <small>July 7, 2022</small> { id="4.20.0" } - Added support for additional tags indexes - Fixed #4100: Tag icons not shown in tags index ### 4.19.2 <small>July 4, 2022</small> { id="4.19.2" } - Fixed #4051: Privacy plugin fails if symlinking isn't allowed on Windows ### 4.19.1 <small>June 25, 2022</small> { id="4.19.1" } - Added `mkdocs-git-committers-plugin` to Dockerfile - Added `mkdocs-git-revision-date-localized-plugin` to Dockerfile ### 4.19.0 <small>June 24, 2022</small> { id="4.19.0" } - Added support for document contributors - Updated French translations for cookie consent ### 4.18.2 <small>June 16, 2022</small> { id="4.18.2" } - Fixed #4026: Fixed tooltips not mounted for nested navigation links ### 4.18.1 <small>June 14, 2022</small> { id="4.18.1" } - Fixed #3990: Chinese search highlighting not working on non-boundaries ### 4.18.0 <small>June 11, 2022</small> { id="4.18.0" } - Added support for automatic dark/light mode - Fixed #4009: Privacy plugin uses invalid paths for file cache on Windows ### 4.17.2 <small>June 5, 2022</small> { id="4.17.2" } - Added support for custom jieba dictionaries (Chinese search) ### 4.17.1 <small>June 5, 2022</small> { id="4.17.1" } - Added support for cookie consent reject button - Added support for cookie consent custom button ordering - Fixed #3988: Content tab not focused after alternating anchor links ### 4.17.0 <small>June 4, 2022</small> { id="4.17.0" } - Added support for content tabs anchor links (deep linking) - Fixed #3975: Detect composition events in search interface (Chinese) - Fixed #3980: Search plugin doesn't use title set via front matter ### 4.16.2 <small>May 29, 2022</small> { id="4.16.2" } - Fixed #3961: Nested sections triggered build error for navigation tabs ### 4.16.1 <small>May 28, 2022</small> { id="4.16.1" } - Switched feedback widget rating titles to tooltips - Improved contrast of link colors for light/dark color schemes - Fixed #3950: Sticky navigation tabs rendering broken (4.15.2 regression) - Fixed #3958: Links invisible when using `white` primary color ### 4.16.0 <small>May 25, 2022</small> { id="4.16.0" } - Added support for navigation pruning - Fixed search results for non-segmented characters (4.15.2 regression) ### 4.15.2 <small>May 22, 2022</small> { id="4.15.2" } - Removed workaround for `abbr` on touch devices (superseded by tooltips) - Fixed #3915: Improved Chinese search query segmentation - Fixed #3938: Fixed tooltips position for navigation titles with ellipsis ### 4.15.1 <small>May 14, 2022</small> { id="4.15.1" } - Improved performance of element focus observables - Fixed #3531: Added prev/next buttons to content tabs - Fixed tooltip positioning when host element is hidden ### 4.15.0 <small>May 8, 2022</small> { id="4.15.0" } - Added support for improved tooltips - Fixed #3785: Show tooltip on hover for overflowing navigation link ### 4.14.0 <small>May 5, 2022</small> { id="4.14.0" } - Added Chinese language support to built-in search plugin - Fixed all-numeric page titles raising error in social plugin ### 4.13.2 <small>April 30, 2022</small> { id="4.13.2" } - Improved caching of downloaded resources in privacy plugin - Fixed #3851: External images not downloaded by privacy plugin ### 4.13.1 <small>April 25, 2022</small> { id="4.13.1" } - Fixed #3839: Tags plugin breaks without icons (4.13.0 regression) ### 4.13.0 <small>April 24, 2022</small> { id="4.13.0" } - Added support for tag icons ### 4.12.0 <small>March 27, 2022</small> { id="4.12.0" } - Added support for card grids and grid layouts - Fixed #3685: Annotations sometimes broken when using instant loading - Fixed #3742: Automatically add Mermaid.js when building for offline usage ### 4.11.0 <small>March 6, 2022</small> { id="4.11.0" } - Added support for excluding external assets from privacy plugin ### 4.10.1 <small>March 2, 2022</small> { id="4.10.1" } - Added missing build dependencies to Dockerfile - Fixed encoding issues in privacy plugin, now forcing UTF-8 encoding - Fixed #3624: Scroll to active navigation item unreliable in Firefox - Fixed #3642: Privacy plugin errors when font setting was omitted ### 4.10.0 <small>February 27, 2022</small> { id="4.10.0" } - Added support for offline plugin (supersedes offline search support) - Improved built-in privacy plugin to download nested JavaScript assets - Refactored configuration of built-in privacy plugin ### 4.9.1 <small>February 21, 2022</small> { id="4.9.1" } - Fixed #3610: missing `lxml` dependency for privacy plugin - Fixed error when charset is missing in `content-type` header ### 4.9.0 <small>February 20, 2022</small> { id="4.9.0" } - Added privacy plugin: automatic downloading of external assets ### 4.8.3 <small>February 13, 2022</small> { id="4.8.3" } - Fixed #3560: Mermaid diagrams don't render for `file://` locations ### 4.8.2 <small>February 10, 2022</small> { id="4.8.2" } - Fixed #3559: Mermaid diagrams don't render inside closed `details` ### 4.8.1 <small>February 6, 2022</small> { id="4.8.1" } - Fixed jump back to top on mobile when using anchor following ### 4.8.0 <small>February 6, 2022</small> { id="4.8.0" } - Added support for anchor following table of contents (= auto scroll) ### 4.7.2 <small>February 2, 2022</small> { id="4.7.2" } - Fixed #3526: Transparent sidebar title due to Safari bug - Fixed #3528: Firefox sometimes clips text in flow chart diagrams ### 4.7.1 <small>January 30, 2022</small> { id="4.7.1" } - Fixed #3506: Tags index not respecting title set via front matter ### 4.7.0 <small>January 25, 2022</small> { id="4.7.0" } - Added native support for offline search ### 4.6.1 <small>January 16, 2022</small> { id="4.6.1" } - Fixed #3459: Section index pages picking up wrong title ### 4.6.0 <small>January 11, 2022</small> { id="4.6.0" } - Added support for annotations (outside of code blocks) ### 4.5.2 <small>January 8, 2022</small> { id="4.5.2" } - Fixed #3440: Content tab indicator not moving when using linking - Fixed #3445: Content tab switch flickers/jitters when using linking ### 4.5.1 <small>January 2, 2022</small> { id="4.5.1" } - Added support for setting initial state of cookie consent - Fixed #3396: Disappearing link in navigation due to Safari bug ### 4.5.0 <small>December 16, 2021</small> { id="4.5.0" } - Added support for navigation icons ### 4.4.0 <small>December 10, 2021</small> { id="4.4.0" } - Added support for code annotation anchor links (deep linking) - Added new code annotation syntax modifier to strip comment - Updated German translations for cookie consent ### 4.3.0 <small>December 5, 2021</small> { id="4.3.0" } - Added support for custom fonts in social cards - Fixed #3300: Announcement bar reappearing when using instant loading ### 4.2.0 <small>December 2, 2021</small> { id="4.2.0" } - Added support for dismissible announcement bar - Added support for named placeholders in feedback widget ### 4.1.0 <small>November 30, 2021</small> { id="4.1.0" } - Added support for passing page title to feedback forms ### 4.0.0 <small>November 28, 2021</small> { id="4.0.0" } - Removed deprecated content tabs legacy implementation - Removed deprecated `seealso` admonition type - Removed deprecated `site_keywords` setting (unsupported by MkDocs) - Removed deprecated prebuilt search index support - Removed deprecated web app manifest – use customization - Removed `extracopyright` variable – use new `copyright` partial - Removed Disqus integration – use customization - Switched to `:is()` selectors for simple selector lists - Switched autoprefixer from `last 4 years` to `last 2 years` - Improved CSS overall to match modern standards - Improved CSS variable semantics for fonts - Improved extensibility by restructuring partials - Improved handling of `details` when printing - Improved keyboard navigation for footnotes - Fixed #3214: Search highlighting breaks site when empty ### 3.2.3 <small>November 20, 2021</small> { id="3.2.3" } - Updated Swedish and French translations - Removed support for `.mermaid-experimental` class (now `.mermaid`) - Fixed #3202: Cookie consent not dismissable on `file://` locations - Fixed #3216: Cookie consent not dismissed when invoked via anchor - Fixed #3232: Mermaid.js sometimes runs twice (race condition) ### 3.2.2 <small>November 6, 2021</small> { id="3.2.2" } - Fixed always last feedback rating being sent - Fixed #3145: Code annotations eat whole comment lines - Fixed #3170: Feedback widget doesn't send data to GA4 ### 3.2.1 <small>November 4, 2021</small> { id="3.2.1" } - Added support for custom Mermaid.js version via additional JavaScript - Fixed some configuration edge cases for tags plugin (3.1.5 regression) - Fixed feedback widget title not being centered in Firefox - Fixed #3179: Safari doesn't send request for feedback widget ### 3.2.0 <small>October 31, 2021</small> { id="3.2.0" } - Added support for feedback widget (Was this page helpful?) ### 3.1.5 <small>October 28, 2021</small> { id="3.1.5" } - Fixed #3144: Rogue link when using tags with auto-populated navigation - Fixed #3147: Code block line numbers appear in search results - Fixed #3158: Social cards do not strip HTML tags from title ### 3.1.4 <small>October 17, 2021</small> { id="3.1.4" } - Fixed #2974: Text cropped with other fonts than `Roboto` in social plugin - Fixed #3099: Encoding problems with non-latin character in social plugin - Fixed #3112: Japanese segmenter not executed as part of new tokenizer - Fixed tags (front matter) appearing in search with disabled tags plugin ### 3.1.3 <small>October 12, 2021</small> { id="3.1.3" } - Added warnings to search plugin for unsupported options and syntax - Fixed #3503: Search sometimes returns entire page - Fixed #3089: Single-line code annotations disappear when printing ### 3.1.2 <small>October 6, 2021</small> { id="3.1.2" } - Fixed incorrect path separators for social cards on Windows ### 3.1.1 <small>September 26, 2021</small> { id="3.1.1" } - Fixed ordering bug in search exclusion logic ### 3.1.0 <small>September 26, 2021</small> { id="3.1.0" } - Added support for excluding pages, sections, and elements from search - Fixed #2803: Code block annotations not visible when printing ### 3.0.1 <small>September 19, 2021</small> { id="3.0.1" } - Added support for using literal `h1-6` tags for search plugin - Fixed search plugin breaking on void elements without slashes - Fixed search plugin filtering link contents from headlines - Fixed search plugin handling of multiple `h1` headlines - Fixed search plugin handling of missing `h1` headlines ### 3.0.0 <small>September 13, 2021</small> { id="3.0.0" } - Rewrite of MkDocs' search plugin - Added support for rich search previews - Added support for tokenizer with lookahead - Improved search indexing performance (twice as fast) - Improved search highlighting ### 2.13.3 <small>September 1, 2021</small> { id="2.13.3" } - Added support for disabling social card generation ### 2.13.2 <small>August 25, 2021</small> { id="2.13.2" } - Fixed #2965: Social plugin error when primary color is not defined ### 2.13.1 <small>August 21, 2021</small> { id="2.13.1" } - Fixed #2948: Social cards are not cached - Fixed #2953: Mermaid.js diagrams can't be centered anymore ### 2.13.0 <small>August 7, 2021</small> { id="2.13.0" } - Added support for custom colors in social cards ### 2.12.2 <small>August 4, 2021</small> { id="2.12.2" } - Fixed #2891: Division by zero error in social plugin ### 2.12.1 <small>July 26, 2021</small> { id="2.12.1" } - Fixed error in social plugin when `site_description` was not set - Fixed error in social plugin for non-ASCII characters ### 2.12.0 <small>July 25, 2021</small> { id="2.12.0" } - Added support for social cards ### 2.11.1 <small>July 20, 2021</small> { id="2.11.1" } - Fixed order of tags index, now sorted alphabetically ### 2.11.0 <small>July 18, 2021</small> { id="2.11.0" } - Improved Mermaid.js integration, now stable - Added support for sequence diagrams - Added support for entity relationship diagrams - Added support for cookie consent configuration - Added feature flag to always enable annotations ### 2.10.0 <small>July 10, 2021</small> { id="2.10.0" } - Added support for cookie consent - Fixed #2807: Back-to-top button not hidden when using sticky tabs ### 2.9.2 <small>May 30, 2021</small> { id="2.9.2" } - Moved tags to partial for easier customization - Added support for hiding tags on any page ### 2.9.1 <small>May 24, 2021</small> { id="2.9.1" } - Added missing guard for linking of content tabs ### 2.9.0 <small>May 23, 2021</small> { id="2.9.0" } - Added support for linking of content tabs ### 2.8.0 <small>May 12, 2021</small> { id="2.8.0" } - Added support for boosting pages in search ### 2.7.2 <small>May 8, 2021</small> { id="2.7.2" } - Fixed #2638: Warnings shown when using `tags` plugin without directory URLs ### 2.7.1 <small>May 3, 2021</small> { id="2.7.1" } - Fixed `git-revision-date-localized` plugin integration (2.7.0 regression) ### 2.7.0 <small>May 1, 2021</small> { id="2.7.0" } - Added support for tags (with search integration) ### 2.6.0 <small>April 11, 2021</small> { id="2.6.0" } - Stay on page when switching versions ### 2.5.0 <small>March 28, 2021</small> { id="2.5.0" } - Added support for version warning ### 2.4.0 <small>March 20, 2021</small> { id="2.4.0" } - Added support for custom admonition icons - Fixed #2444: Code block annotations with extra comments have wrong index ### 2.3.1 <small>March 14, 2021</small> { id="2.3.1" } - Fixed anchor offset for permalinks when using sticky navigation tabs ### 2.3.0 <small>March 13, 2021</small> { id="2.3.0" } - Added support for back-to-top button ### 2.2.1 <small>March 4, 2021</small> { id="2.2.1" } - Fixed #2382: Repository stats failing when no release tag is present ### 2.2.0 <small>February 28, 2021</small> { id="2.2.0" } - Added support for code block annotations ### 2.1.0 <small>February 26, 2021</small> { id="2.1.0" } - Added support for anchor tracking ### 2.0.0 <small>February 24, 2021</small> { id="2.0.0" } - Migrated Insiders to the new architecture - Swapped color palette toggle configuration ### 1.17.0 <small>January 31, 2021</small> { id="1.17.0" } - Added support for section index pages ### 1.16.1 <small>January 26, 2021</small> { id="1.16.1" } - Fixed #2249: Instant loading + sticky tabs result in invalid links - Fixed #2248: Search highlighting URL parameter always added - Fixed #2235: Version selector doesn't select current version for aliases ### 1.16.0 <small>January 7, 2021</small> { id="1.16.0" } - Added latest release to repository info (GitHub) - Slight facelift of repository info (lighter fonts, spacing and icons) ### 1.15.0 <small>January 2, 2021</small> { id="1.15.0" } - Added support for native Mermaid.js integration ### 1.14.0 <small>December 30, 2020</small> { id="1.14.0" } - Added support for sharing searches ### 1.13.2 <small>December 22, 2020</small> { id="1.13.2" } - Fixed version selector + sticky tabs navigation rendering issues - Fixed version selector wrapping ### 1.13.1 <small>December 20, 2020</small> { id="1.13.1" } - Removed horizontal scrollbars on language and version selector - Fixed type conversion in JavaScript config ### 1.13.0 <small>December 13, 2020</small> { id="1.13.0" } - Refactored navigation tabs to simplify grouping behavior - Added support for sticky navigation tabs - Added support for arbitrary links in navigation tabs - Fixed #2098: Subsequent active subsection not highlighted correctly ### 1.12.1 <small>December 8, 2020</small> { id="1.12.1" } - Fixed empty language selector being shown ### 1.12.0 <small>December 6, 2020</small> { id="1.12.0" } - Added support for adding a language selector ### 1.11.2 <small>November 29, 2020</small> { id="1.11.2" } - Fixed #2068: Search highlight interprets code blocks as JavaScript ### 1.11.1 <small>November 29, 2020</small> { id="1.11.1" } - Refactored styling to be more stable and easier to adjust - Fixed some styling regressions from latest features ### 1.11.0 <small>November 22, 2020</small> { id="1.11.0" } - Added support for rendering admonitions as inline blocks ### 1.10.0 <small>November 15, 2020</small> { id="1.10.0" } - Added support for integrating table of contents into navigation ### 1.9.0 <small>November 7, 2020</small> { id="1.9.0" } - Added support for hiding navigation and table of contents on any page - Removed autohiding table of contents when empty ### 1.8.0 <small>November 1, 2020</small> { id="1.8.0" } - Added support for navigation sections - Fixed appearance of inactive search suggestions ### 1.7.0 <small>October 25, 2020</small> { id="1.7.0" } - Added support for deploying multiple versions - Fixed alignment of sidebar when content area is too small ### 1.6.0 <small>October 11, 2020</small> { id="1.6.0" } - Added support for search suggestions to save keystrokes - Added support for removing __Made with Material for MkDocs__ from footer - Fixed #1915: search should go to first result by pressing ++enter++ ### 1.5.1 <small>September 21, 2020</small> { id="1.5.1" } - Fixed content area stretching to whole width for long code blocks ### 1.5.0 <small>September 19, 2020</small> { id="1.5.0" } - Added support for autohiding table of contents when empty ### 1.4.1 <small>September 6, 2020</small> { id="1.4.1" } - Improved typeahead and search result relevance and scoring ### 1.4.0 <small>August 30, 2020</small> { id="1.4.0" } - Added support for autohiding header on scroll ### 1.3.0 <small>August 26, 2020</small> { id="1.3.0" } - Added support for user-selectable color palettes ### 1.2.0 <small>August 11, 2020</small> { id="1.2.0" } - Added feature to expand navigation by default ### 1.1.0 <small>August 3, 2020</small> { id="1.1.0" } - Added highlighting of search results ### 1.0.0 <small>July 14, 2020</small> { id="1.0.0" } - Added grouping of search results - Added missing query terms to search result - Improved search result relevance and scoring ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/insiders/community-experts-program/��������������������������������������0000775�0000000�0000000�00000000000�14753064456�0024555�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/insiders/community-experts-program/index.md������������������������������0000664�0000000�0000000�00000013055�14753064456�0026212�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- title: Community Experts Program --- # Calling for Community Experts Interested in joining the Material for MkDocs team as a Community Expert? We're on the lookout for individuals who are passionate about supporting our awesome community. In return for your valuable contributions, time, and insights, __you'll gain free access to the Insiders edition__. ## Why we need you As our project and community continue to grow, so do the questions and needs of our users on our discussion board. Our discussion board is a vital part of our project, serving as a hub for our community to connect and a valuable knowledge base to complement our documentation. We're eager to keeping it well-maintained, organized, easy to search and address all queries which is why we need extra hands to keep up with the demand. That's why we're building a team of Community Experts! ## Your role As a Community Expert, your role primarily involves active participation on our [discussion board], where we'd expect you to be: - Answering discussions to help users with their questions - Providing guidance regarding implementations - Sharing insights into customizations and workarounds - Optimizing searchability by adjusting discussion titles with relevant keywords ## Your benefits Here is a list of the benefits we offer to our Community Experts: - __Free access to Material for MkDocs Insiders__ – Exclusive Access to all of our Material for MkDocs Insiders features for _non-commercial use_.[^1] - __Close communication with the team__ – Stay connected with us through various channels, including calls and internal project management tools. - __GitHub profile boost__ – Enhance your GitHub profile's visibility and credibility as your activity increases, earning you valuable badges that can enhance your credibility. [^1]: Access to Insiders is granted to your primary account, i.e., the account with which you're contributing to the project. It cannot be transferred to another account. Additionally, it cannot be used for commercial purposes. ## Your knowledge & skills To be a successful Community Expert, your skills should include the following: - __Material and MkDocs allrounder__ – You have an understanding of Material for MkDocs and the MkDocs ecosystem, including many of its extensions and plugins. - __Great communicator__ – You enjoy helping others in a productive, constructive and friendly manner and use inclusive and welcoming language. - __Independent worker__ – You are self-motivated, stay up-to-date with project developments, regularly check the discussion board, and respond to notifications in reasonable time. [discussion board]: https://github.com/squidfunk/mkdocs-material/discussions [documentation]: https://squidfunk.github.io/mkdocs-material/ [contribution guides]: ../contributing/index.md ## Your time commitment We don't require a fixed number of hours each week; instead, we ask for a minimum of __five answered discussions per month[^2]__, which amounts to slightly more than one per week. Your active interaction within the community is highly valued. To do this effectively, it's best to regularly check the discussion board to see where you can offer help. The time you invest may vary depending on the complexity of the topics and questions. Upon joining, you'll receive access to the Insiders' edition for as long as you continue to assist us. Access will be renewed every three months, allowing you the flexibility to continue your contributions or take a break as needed. [^2]: An answered discussion is a collaborative interaction where knowledge and expertise are shared, resulting in resolutions or clarifications that benefit the user and our entire community. In essence, it embodies the spirit of cooperation and support within our community, highlighting the power of collective wisdom and the willingness to assist and uplift one another. ## Ready to get started? Since we have a limited number of seats for these roles[^3], we would like to get to know you before you become one of our Community Experts. Here's how to get started: [^3]: Please note that we're currently limiting the number of seats on the Community Experts program to three. We will update this page when we'll expand the team, which is when we'll be accepting new applications. ### Step 1: Get in touch Send us an email introducing yourself, sharing a bit about your background, and include a link to your GitHub profile. Additionally, provide links to three previous discussions you've answered on the discussion board, where you've assisted another community member. Please use the following email template to reach out to us at community@squidfunk.com: ``` Subject: Community Expert Intro: Tell us a bit about yourself. - Name: - Background: - Profession: - GitHub profile: Answered discussions - Link 1: - Link 2: - Link 3: ``` ### Step 2: Evaluation After receiving and reviewing your application, we will get in touch with you to discuss everything you need to know to get started. If you get selected, we will set you up as a collaborator and provide you immediate access to the Insiders edition for three months. ### Step 3: Dive in Let's get started! You can actively begin participating in five discussions per month. We trust you to take the lead, and we won't do strict monitoring. Simply ensure that you are consistently listed on the _Most Helpful_ list, located on the discussion board's left side, under the categories. --- __Ready to join us?__ Sounds good? Let's give it a try! �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/insiders/getting-started.md����������������������������������������������0000664�0000000�0000000�00000015323�14753064456�0023027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- title: Getting started with Insiders --- # Getting started with Insiders Material for MkDocs Insiders is a compatible drop-in replacement for Material for MkDocs, and can be installed similarly using [`pip`][pip], [`docker`][docker] or [`git`][git]. Note that in order to access the Insiders repository, you need to [become an eligible sponsor] of @squidfunk on GitHub. [pip]: #with-pip [docker]: #with-docker [git]: #with-git [become an eligible sponsor]: how-to-sponsor.md ## Requirements After you've been added to the list of collaborators and accepted the repository invitation, the next step is to create a [personal access token] for your GitHub account in order to access the Insiders repository programmatically (from the command line or GitHub Actions workflows): 1. Go to https://github.com/settings/tokens 2. Click on [Generate a new token] 3. Enter a name and select the [`repo`][scopes] scope 4. Generate the token and store it in a safe place [personal access token]: https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token [Generate a new token]: https://github.com/settings/tokens/new [scopes]: https://docs.github.com/en/developers/apps/scopes-for-oauth-apps#available-scopes Some of the instructions below require that the `GH_TOKEN` environment variable is set to the value of the personal access token you generated in the previous step. Note that the personal access token must be kept secret at all times, as it allows the owner to access your private repositories. ## Installation ### with pip Material for MkDocs Insiders can be installed with `pip`. You will normally want to install the latest release but can also install a specific older release or even the latest development version. Make sure you have the `GH_TOKEN` variable set as instructed above. === "Specific release" Pick the corresponding tag from the [list of tags] for the Insiders repository. In the `pip` command below, replace the tag at the end of the URL with the one you want. ``` sh pip install git+https://${GH_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git@9.4.2-insiders-4.42.0 ``` === "Latest" ``` sh pip install git+https://${GH_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git ``` [list of tags]: https://github.com/squidfunk/mkdocs-material-insiders/tags ### with docker In case you want to use Material for MkDocs Insiders from within Docker, some additional steps are necessary. While we cannot provide a hosted Docker image for Insiders[^2], [GitHub Container Registry] allows for simple and comfortable self-hosting: 1. [Fork the Insiders repository] 2. Enable [GitHub Actions] on your fork[^3] 3. Create a new personal access token[^4] 1. Go to https://github.com/settings/tokens 2. Click on [Generate a new token] 3. Enter a name and select the [`write:packages`][scopes] scope 4. Generate the token and store it in a safe place 4. Add a [GitHub Actions secret] on your fork 1. Set the name to `GHCR_TOKEN` 2. Set the value to the personal access token created in the previous step 5. [Create a new release] to build and publish the Docker image 6. Install [Pull App] on your fork to stay in-sync with upstream The [`build`][build] workflow is automatically run when a new tag (release) is created. When a new Insiders version is released on the upstream repository, the [Pull App] will create a pull request with the changes and pull in the new tag, which is picked up by the [`build`][build] workflow that builds and publishes the Docker image automatically to your private registry. Now, you should be able to pull the Docker image from your private registry: ``` docker login -u ${GH_USERNAME} -p ${GHCR_TOKEN} ghcr.io docker pull ghcr.io/${GH_USERNAME}/mkdocs-material-insiders ``` Should you wish to add additional plugins to the insiders container image, follow the steps outlined in the [Getting Started guide](../getting-started.md#with-docker). [^2]: Earlier, Insiders provided a dedicated Docker image which was available to all sponsors. On March 21, 2021, the image was deprecated for the reasons outlined and discussed in #2442. It was removed on June 1, 2021. [^3]: When forking a repository, GitHub will disable all workflows. While this is a reasonable default setting, you need to enable GitHub Actions to be able to automatically build and publish a Docker image on [GitHub Container Registry]. [^4]: While you could just add the `write:packages` scope to the personal access token created to access the Insiders repository, it's safer to create a dedicated token which you'll only use for publishing the Docker image. ### with git Of course, you can use Material for MkDocs Insiders directly from `git`: ``` git clone git@github.com:squidfunk/mkdocs-material-insiders.git mkdocs-material ``` The theme will reside in the folder `mkdocs-material/material`. When cloning from `git`, the theme must be installed, so MkDocs can find the built-in plugins: ``` pip install -e mkdocs-material ``` [GitHub Container Registry]: https://docs.github.com/en/packages/guides/about-github-container-registry [Fork the Insiders repository]: https://github.com/squidfunk/mkdocs-material-insiders/fork [GitHub Actions]: https://docs.github.com/en/github/administering-a-repository/disabling-or-limiting-github-actions-for-a-repository [packages scope]: https://docs.github.com/en/developers/apps/scopes-for-oauth-apps#available-scopes [GitHub Actions secret]: https://docs.github.com/en/actions/reference/encrypted-secrets#creating-encrypted-secrets-for-a-repository [Create a new release]: https://docs.github.com/en/github/administering-a-repository/managing-releases-in-a-repository#creating-a-release [Pull App]: https://github.com/apps/pull [build]: https://github.com/squidfunk/mkdocs-material-insiders/blob/master/.github/workflows/build.yml ## Built-in plugins When you're using built-in plugins that are solely available via Insiders, outside contributors won't be able to build your documentation project on their local machine. This is the reason why we developed the [built-in group plugin] that allows to conditionally load plugins: ``` yaml plugins: - search - social # CI=true mkdocs build - group: enabled: !ENV CI plugins: - git-revision-date-localized - git-committers # INSIDERS=true mkdocs build - group: enabled: !ENV INSIDERS plugins: - optimize - privacy ``` Of course, you can also enable both groups with: ``` shell CI=true INSIDERS=true mkdocs build ``` [built-in group plugin]: ../plugins/group.md [configuration inheritance]: https://www.mkdocs.org/user-guide/configuration/#configuration-inheritance �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/insiders/how-to-sponsor.md�����������������������������������������������0000664�0000000�0000000�00000010573�14753064456�0022642�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# How to sponsor Becoming a sponsor for Material for MkDocs is a straightforward process through @squidfunk's [GitHub Sponsors profile]. By supporting the project with a monthly contribution of __$15 a month__ or more, you can sponsor either via an [individual] or [organizational] GitHub account. [GitHub Sponsors profile]: https://github.com/sponsors/squidfunk [individual]: access-management.md/#individuals [organizational]: access-management.md/#organizations ## Walkthrough Want to become a sponsor? We will guide you through the sponsoring process below If you have additional questions, you can find detailed information about [payment and billing], [access management], [runtime and cancellation], [privacy], [license] and [support] on dedicated pages. [payment and billing]: payment-and-billing.md [access management]: access-management.md [runtime and cancellation]: runtime-and-cancellation.md [privacy]: privacy.md [license]: license.md [support]: ../support.md ### Sponsoring tier First, it's a good idea to explore [our sponsoring tiers], as each sponsoring tier is designed to accommodate different levels of sponsors and includes dedicated benefits. After reviewing the sponsoring tiers, it's time to choose one. Consider what you want to achieve and keep your requirements in mind, e.g. the number of projects you want to build or how many accounts you need. [Switching tiers] is possible at any time. Choosing a tier will take you to GitHub's sponsorship confirmation page. [our sponsoring tiers]: sponsoring-tiers.md [Switching tiers]: sponsoring-tiers.md/#switching-tiers ### Sponsorship summary #### Payment and billing Next, GitHub will ask you to provide your billing information, which is required to process your sponsorship payment. On this page, the _Sponsorship summary_ section displays the (possibly prorated) amount due to initiate your sponsorship. This amount is determined by your account's [billing cycle], which can be set to a monthly or yearly interval. [billing cycle]: https://docs.github.com/en/github/setting-up-and-managing-billing-and-payments-on-github/changing-the-duration-of-your-billing-cycle Proceed to input your [payment information], specifically your credit card details. Please make sure that the used credit card is valid and will remain so for an extended period to help avoid any interruptions in your sponsorship. [payment information]: payment-and-billing.md #### Privacy On this page, you can also set the visibility of your sponsorship. You have the option to keep your [sponsorship private or to make it public], which includes listing your name or organization on the list of [our sponsors] and, for organizations, the opportunity for [logo placement]. [sponsorship private or to make it public]: privacy.md [our sponsors]: our-sponsors.md [logo placement]: our-sponsors.md/#premium-sponsors #### News and updates Note that we rarely send out emails, and when we do, it's usually to inform you about significant updates or changes to the project, so it's best to keep this option enabled. To stay updated on the latest developments, you can check out our [changelog]. [changelog]: ../changelog/index.md #### Tax information If you're sponsoring as an organization, it's essential to provide your country, region and VAT number, so we can correctly attribute your sponsorship. This is due to the fact that VAT is handled differently for individuals than for organizations. #### Confirmation Before finalizing your sponsorship, take a moment to review all the details of your sponsorship, including the selected tier, billing information, and payment details. Then proceed to confirm your sponsorship by clicking the _Sponsor_ button. ### Access management After completing the sponsorship process and your payment is successfully processed, you will be all set to [gain access] to the private Material for MkDocs Insiders repository. [gain access]: access-management.md --- __Ready to become a sponsor?__ [  Choose a sponsoring tier <span class="mdx-sponsorship-count" data-mdx-component="sponsorship-count"></span>][sponsoring-tiers]{ .md-button .md-button--primary .mdx-sponsorship-button } [sponsoring-tiers]: sponsoring-tiers.md If you still find yourself with more questions, feel free to [reach out to Kathi] via mail at sponsors@squidfunk.com for additional support. [reach out to Kathi]: ../support.md/#sponsoring-support �������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/insiders/index.md��������������������������������������������������������0000664�0000000�0000000�00000012321�14753064456�0021024�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Insiders Material for MkDocs Insiders offers an enhanced experience with early access to exclusive features that aren't available in the community edition. Become a sponsor and make use of these features directly! You’ve already seen the benefits of using Material for MkDocs; imagine what more you can achieve with Insiders. Your sponsorship helps us continue to innovate and improve, ensuring Material for MkDocs remains a cutting-edge tool. Discover how your contributions make a difference. [  Choose a sponsoring tier <span class="mdx-sponsorship-count" data-mdx-component="sponsorship-count"></span>][sponsoring-tiers]{ .md-button .md-button--primary .mdx-sponsorship-button } [sponsoring-tiers]: sponsoring-tiers.md ## Additional information Explore the following section to learn more about Material for MkDocs, why you should sponsor us, what's in it for you, and who is sponsoring us. <div class="grid cards" markdown> - :fontawesome-solid-circle-question:   __Why sponsor us__ --- Learn how to support our goal of becoming the leading tool in documentation --- [:octicons-arrow-right-24: More information][Why sponsor us] - :material-gift:   __What's in it for you__ --- Discover exclusive benefits and features available only to our monthly sponsors --- [:octicons-arrow-right-24: More information][What's in it for you] - :fontawesome-solid-people-group:   __Who is sponsoring__ --- Get to know our awesome sponsors, financially backing Material for MkDocs --- [:octicons-arrow-right-24: More information][Who is sponsoring] </div> ### Sponsoring guide Learn how to become a sponsor of Material for MkDocs Insiders and start your sponsorship journey by choosing the right tier for you: <div class="grid cards" markdown> - :material-animation-outline:   __Sponsoring tiers__ --- Find the perfect monthly sponsoring tier that fits your needs and requirements --- [:octicons-arrow-right-24: More information][Sponsoring tiers] - :octicons-heart-fill-24:{ .mdx-heart }   __How to sponsor__ --- Follow our step-by-step guide on how to become a sponsor to get you started --- [:octicons-arrow-right-24: More information][How to sponsor] </div> ### Additional information If you require additional and detailed information about payment, billing, access management, and more, here is everything you need to know: <div class="grid cards" markdown> - :material-hand-coin:   __Payment and billing__ --- All the information you need about payment methods and billing cycles --- [:octicons-arrow-right-24: More information][Payment and billing] - :material-key-variant:   __Access management__ --- Learn about access management to Insiders – for individuals and organizations --- [:octicons-arrow-right-24: More information][Access management] - :material-clock-time-three:   __Runtime and cancellation__ --- Receive information on the duration of your sponsorship and the cancellation process --- [:octicons-arrow-right-24: More information][Runtime and cancellation] - :material-lock-open:   __Privacy__ --- Our commitment to your privacy – learn assurances on valuing your privacy --- [:octicons-arrow-right-24: More information][Privacy] - :material-briefcase:   __License__ --- Get details on the licensing of Material for MkDocs Insiders and its requirements --- [:octicons-arrow-right-24: More information][License] - :material-email:   __Support__ --- Overview of our support options available, ensuring you get the information you need --- [:octicons-arrow-right-24: More information][Support] </div> ### Using Insiders Once you have become a sponsor, you can start using Material for MkDocs Insiders, get all the information you need to get started: <div class="grid cards" markdown> - :material-download:   __Getting started__ --- Step-by-step instructions on how to install Material for MkDocs Insiders --- [:octicons-arrow-right-24: More information][Getting started] - :octicons-versions-16:   __Changelog__ --- Review the latest changes and additions to Material for MkDocs Insiders --- [:octicons-arrow-right-24: More information][Changelog] - :material-update:  __Upgrade__ --- Stay updated with the latest changes and improvements in the Insiders edition --- [:octicons-arrow-right-24: More information][Upgrade] </div> [Why sponsor us]: why-sponsor-us.md [What's in it for you]: benefits.md [Who is sponsoring]: our-sponsors.md [Sponsoring tiers]: sponsoring-tiers.md [How to sponsor]: how-to-sponsor.md [Payment and billing]: payment-and-billing.md [Access management]: access-management.md [Runtime and cancellation]: runtime-and-cancellation.md [Privacy]: privacy.md [License]: license.md [Support]: ../support.md [Getting started]: getting-started.md [Changelog]: ../changelog/index.md [Upgrade]: upgrade.md ---- __We're looking forward to welcoming you as a sponsor!__ ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/insiders/license.md������������������������������������������������������0000664�0000000�0000000�00000006717�14753064456�0021353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# License Material for MkDocs Insiders is licensed under the [MIT license], the exact same license used for the community edition. The MIT license is a permissive license that allows commercial use, redistribution, and everything else as long as the original authors are credited in source files. The MIT license is the [most popular license] among all Open Source projects. [MIT license]: https://opensource.org/license/mit [most popular license]: https://opensource.org/blog/the-most-popular-licenses-for-each-language-2023 ## MIT License The MIT License gives you the freedom to work with the code with minimal restrictions. When using Material for MkDocs Insiders or the community edition, make sure to __include the copyright notice__ and avoid future liability claims. Its appeal lies in its simplicity and clear terms, making it a go-to for projects of any scale. Its popularity stems from its simplicity, clarity, and development-friendly terms, making it suitable for all types of projects. The MIT License ensures that anyone – individual or organization – can use Material for MkDocs Insiders under the same conditions as the community edition. ### Advantages of MIT The MIT License is favored for its balance between freedom and protection, appealing to those who find GNU/GPL licenses too restrictive or advocate for privatized software. Its broad wording supports both open community development and the use of components in proprietary software. ### MIT in open source Material for MkDocs stands out for being open source, developed by a small, user-oriented team committed to delivering high-quality tools for the community. Here’s what this means for you: - __Independence from investors:__ Our focus is purely on developing the project and guiding it without external pressures. This freedom means we’re all about what’s best for the community and the project's future. - __Freedom from vendor lock-in:__ Thanks to Open Source principles, you can use Material for MkDocs without any strings attached. Customize or integrate it into your projects without worrying about restrictions. Your docs belong to you, and you are free to change the software at any time. - __Ecosystem Development:__ Material for MkDocs is more than a tool; it's a community-driven effort to build an ecosystem, which it already is. Through open collaboration, we’re constantly adding new extensions, plugins, and integrations to give you more tools at your disposal. ## Fair use policy Our fair use policy is here to ensure the project continues to thrive, which is why we request that our sponsors respect the following: - __Source Code Distribution:__ Keeping our sponsorware model intact means we count on you not to distribute the Insiders source code. While you're encouraged to privately [fork], or [mirror] the private Insiders repository for your needs, __keeping the source private__ is key. If this guideline is violated, everybody loses, as it will reduce the time of us maintainers we could otherwise set aside to push this project forward. - __Sponsorship tiers:__ We base our sponsorship tiers on non-commercial or commercial use and ask our sponsors to respect these requirements when initiating a sponsorship. Additionally, we base our sponsoring tiers on the number of sites you intend to build. Please upgrade your sponsorship accordingly to support the project’s growth and ensure its continued development. [fork]: access-management.md/#forking [mirror]: access-management.md/#mirroring �������������������������������������������������mkdocs-material-9.6.4/docs/insiders/our-sponsors.md�������������������������������������������������0000664�0000000�0000000�00000024307�14753064456�0022415�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Our sponsors Starting in 2020, we have managed to build a community of a few hundred sponsors that support us every month, for which we are immensely grateful. Without their financial support, Material for MkDocs wouldn't be anywhere near where it is today. <div class="mdx-premium" markdown> ## Premium sponsors ### Gold sponsors _Be our first gold sponsor!_ ---- ### Silver sponsors [![FastAPI]{ style="height: 120px" }](https://fastapi.tiangolo.com/){ target=_blank title="FastAPI" } [![Trendpop]{ style="height: 120px" }](https://www.trendpop.com/){ target=_blank title="Trendpop" } [![SailPoint]{ style="height: 120px" }](https://documentation.sailpoint.com/){ target=_blank title="SailPoint" } [![Future]{ style="height: 120px" }](https://futureplc.com/){ target=_blank title="Future" } [![SIEMENS]{ style="height: 120px" }](https://opensource.siemens.com/){ target=_blank title="SIEMENS" } [![Pydantic Logfire]{ style="height: 120px" }](https://pydantic.dev/logfire/){ target=_blank title="Pydantic Logfire" } ---- ### Bronze sponsors [![Cirrus CI]](https://cirrus-ci.org/){ target=_blank title="Cirrus CI" } [![Basler]](https://docs.baslerweb.com/){ target=_blank title="Basler" } [![KX]](https://kx.com/){ target=_blank title="KX Systems" } [![Prefect]](https://orion-docs.prefect.io/){ target=_blank title="Prefect" } [![Zenoss]](https://zenoss.com/){ target=_blank title="Zenoss" } [![Posit]](https://docs.posit.co){ target=_blank title="Posit" } [![n8n]](https://n8n.io){ target=_blank title="n8n" } [![Dogado]](https://www.dogado.de){ target=_blank title="Dogado" } [![World Wide Technology]](https://wwt.com){ target=_blank title="World Wide Technology" } [![Coda]](https://coda.io){ target=_blank title="Coda" } [![Elastic]](https://elastic.co){ target=_blank title="Elastic" } [![IP Fabric]](https://ipfabric.io/){ target=_blank title="IP Fabric" } [![Apex.AI]](https://www.apex.ai/){ target=_blank title="Apex.AI" } [![Jitterbit]](https://jitterbit.com/){ target=_blank title="Jitterbit" } [![Sparkfun]](https://sparkfun.com/){ target=_blank title="Sparkfun Electronics" } [![Eccenca]](https://eccenca.com/){ target=_blank title="Eccenca" } [![Neptune]](https://neptune.ai/){ target=_blank title="Neptune" } [![RackN]](https://rackn.com/){ target=_blank title="RackN" } [![CivicActions]](https://civicactions.com/){ target=_blank title="CivicActions" } [![bitcrowd]](https://bitcrowd.net/){ target=_blank title="bitcrowd" } [![GetScreen.me]](https://getscreen.me/){ target=_blank title="GetScreen.me" } [![BotCity]](https://botcity.dev/){ target=_blank title="BotCity" } [![Springer Nature Technology]](https://www.springernature.com/gp){ target=_blank title="Springer Nature Technology" } [![Kolena]](https://kolena.io/){ target=_blank title="Kolena" } [![Evergiving]](https://www.evergiving.com/){ target=_blank title="Evergiving" } [![Koor]](https://koor.tech/){ target=_blank title="Koor" } [![Astral]](https://astral.sh/){ target=_blank title="Astral" } [![Oikolab]](https://oikolab.com/){ target=_blank title="Oikolab" } [![Bühler Group]](https://www.buhlergroup.com/){ target=_blank title="Bühler Group" } [![3DR]](https://3dr.com/){ target=_blank title="3DR" } [![Spotware]](https://spotware.com/){ target=_blank title="Spotware" } [![Milford Assets]](https://milfordasset.com/){ target=_blank title="Milford Assets" } [![Lechler]](https://www.lechler.com/){ target=_blank title="Lechler" } [![Invers]](https://invers.com/){ target=_blank title="Invers" } [![Maxar]](https://maxar.com/){ target=_blank title="Maxar" } [![EquipmentShare]](https://www.equipmentshare.com/){ target=_blank title="EquipmentShare" } [![Hummingbot]](https://hummingbot.org/){ target=_blank title="Hummingbot" } [![OctoPerf]](https://octoperf.com/){ target=_blank title="OctoPerf" } [![Inter Comestibles]](https://intercomestibles.ch/){ target=_blank title="Inter Comestibles" } </div> [FastAPI]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-fastapi.png [Trendpop]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-trendpop.png [Cirrus CI]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-cirrus-ci.png [Basler]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-basler.png [KX]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-kx.png [Prefect]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-prefect.png [Zenoss]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-zenoss.png [Posit]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-posit.png [n8n]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-n8n.png [Dogado]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-dogado.png [World Wide Technology]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-wwt.png [Coda]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-coda.png [Elastic]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-elastic.png [IP Fabric]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-ip-fabric.png [Apex.AI]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-apex-ai.png [Jitterbit]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-jitterbit.png [Sparkfun]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-sparkfun.png [Eccenca]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-eccenca.png [Neptune]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-neptune-ai.png [Cash App]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-cashapp.png [RackN]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-rackn.png [CivicActions]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-civic-actions.png [bitcrowd]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-bitcrowd.png [GetScreen.me]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-getscreenme.png [BotCity]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-botcity.png [Springer Nature Technology]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-sn-technology.png [Kolena]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-kolena.png [Evergiving]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-evergiving.png [Koor]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-koor.png [Astral]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-astral.png [Oikolab]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-oikolab.png [Bühler Group]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-buhler.png [3DR]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-3dr.png [Spotware]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-spotware.png [Milford Assets]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-milford.png [Lechler]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-lechler.png [SailPoint]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-sailpoint.png [Invers]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-invers.png [Maxar]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-maxar.png [EquipmentShare]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-equipmentshare.png [Hummingbot]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-hummingbot.png [Future]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-future.svg [SIEMENS]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-siemens.png [OctoPerf]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-octoperf.png [Pydantic Logfire]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-logfire.png [Inter Comestibles]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-intercomestibles.png <hr /> [  :material-arrow-up-bold: Add yourself to the list <span class="mdx-sponsorship-count" data-mdx-component="sponsorship-count"></span>][sponsoring-tiers]{ .md-button .md-button--primary .mdx-sponsorship-button } [sponsoring-tiers]: sponsoring-tiers.md ## All sponsors <div class="mdx-sponsorship" data-mdx-component="sponsorship" hidden> <div class="mdx-sponsorship__list"></div> <small> If you sponsor publicly, you're automatically added here with a link to your profile and avatar to show your support for Material for MkDocs. Alternatively, if you wish to keep your sponsorship private, you'll be a silent +1. You can select visibility during checkout and change it afterwards. </small> </div> �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/insiders/payment-and-billing.md������������������������������������������0000664�0000000�0000000�00000010725�14753064456�0023556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Payment and billing Since we host our repositories on GitHub, including both the Material for MkDocs community edition and the private Insiders edition, [GitHub Sponsors] is a natural fit for handling all financial transactions, as well as for access management to the Insiders repository. Therefore, to become a sponsor of Material for MkDocs, a [GitHub account] is mandatory. [GitHub Sponsors]: https://github.com/sponsors [GitHub account]: https://docs.github.com/en/get-started/start-your-journey/creating-an-account-on-github ## Payment GitHub Sponsors currently only accepts payments via credit card, as they [removed support for PayPal] at the beginning of 2023. When entering your credit card details, ensure that the card remains [valid over an extended period] to prevent any disruptions to your sponsorship. [valid over an extended period]: runtime-and-cancellation.md#automatic-cancellation [removed support for PayPal]: https://github.blog/changelog/2023-01-23-github-sponsors-will-stop-supporting-paypal/ ## Invoices GitHub Sponsors automatically issues and send a payment receipt via email after each billing cycle. These receipts serve as confirmation of payment rather than formal invoices. As all transactions are managed by [GitHub Sponsors], GitHub is your primary point of contact for payment and billing matters, not us. If you need an official invoice from us for your records, please get in touch with us at sponsors@squidfunk.com before initiating your sponsorship. ## Refunds Our team does not have insights or access to details related to sponsorship transactions of our sponsors, as GitHub does not provide us with this information. For questions regarding payment issues or for more detailed information about your sponsorship, please get in touch with the [GitHub support] team. [GitHub support]: https://support.github.com/ ## Discounts Unfortunately, we can't offer discounts. To ensure that everyone in our community can afford to become a sponsor, we keep the barrier low and set prices as low as possible, starting at [\$15 a month][15] for [non-commercial use] and at [\$125 a month][125] for [commercial use]. [15]: https://github.com/sponsors/squidfunk/sponsorships?tier_id=210638 [125]: https://github.com/sponsors/squidfunk/sponsorships?tier_id=210643 [non-commercial use]: sponsoring-tiers.md/#non-commercial-use [commercial use]: sponsoring-tiers.md/#commercial-use ## Free access Free access to the Insiders edition is only granted exclusively to our [Community Experts] and to selected members of the MkDocs ecosystem. Our Community Experts program is designed to recognize and reward users who significantly contribute to the community by sharing their expertise on our [discussion board]. Our discussion board facilitates the exchange of insights on workarounds, setups, and features and addresses queries from users at all levels of experience. All communication is public and visible for the entire community, benefitting everyone. Community experts not only enrich our project but also enable our team to focus on continuous improvement and the development of new features. Therefore, we are happy to provide them with free access to the private Insiders repository and encourage you to [join the team] as well! [community experts]: community-experts-program/index.md [discussion board]: https://github.com/squidfunk/mkdocs-material/discussions [join the team]: community-experts-program/index.md/#ready-to-get-started ## Billing cycle The [billing cycle] is an account-level setting on GitHub and is set to monthly or yearly. It can be changed at any time, so you might want to check the setting before sponsoring and change it either to monthly or yearly according to your own or your organization's preferences. If, for whatever reason, you cannot change your billing cycle, a practical solution is to create a dedicated [GitHub bot account] where you set the billing cycle accordingly and use it specifically for your sponsorship contributions. This is a strategy many of our organizational sponsors have successfully implemented. If you experience any difficulties or have further questions before sponsoring, please don't hesitate to contact us at sponsors@squidfunk.com for additional support. [billing cycle]: https://docs.github.com/en/github/setting-up-and-managing-billing-and-payments-on-github/changing-the-duration-of-your-billing-cycle [GitHub bot account]: https://docs.github.com/en/get-started/start-your-journey/creating-an-account-on-github �������������������������������������������mkdocs-material-9.6.4/docs/insiders/privacy.md������������������������������������������������������0000664�0000000�0000000�00000006754�14753064456�0021407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Privacy Transparency is at the heart of our sponsorware model, which includes our funding goals, the features we're working towards, and, importantly, the acknowledgment of our sponsors. As a sponsor, you can support our project either [publicly] or [privately], according to your preference. [publicly]: #public-sponsors [privately]: #private-sponsors ## Public sponsors By default, GitHub lists all sponsorships publicly. To sponsor privately, you must explicitly select this option. When sponsoring publicly, your GitHub account will be listed as part of [our sponsors], @squidfunk's [sponsoring page], and within the "sponsoring" section of your GitHub account. [our sponsors]: our-sponsors.md [sponsoring page]: https://github.com/sponsors/squidfunk?metadata_origin=docs ## Private sponsors For those preferring discretion, [setting your sponsorship to private] during the sponsorship initiation process ensures your sponsorship remains unlisted, keeping your affiliation with Material for MkDocs confidential. This setting can be adjusted at any time through your GitHub account's sponsorship settings. For companies concerned about being visible as sponsors of any project due to their privacy restrictions, creating a [bot account] on GitHub that is solely used for sponsoring is advised. This account, set to sponsor privately, won't be linked to any individual within your organization and provides an extra layer of anonymity. [setting your sponsorship to private]: https://docs.github.com/en/sponsors/sponsoring-open-source-contributors/managing-your-sponsorship#managing-the-privacy-setting-for-your-sponsorship [bot account]: access-management.md/#bot-account ## Administrative requests To focus on the development of our projects, we aim to reduce administrative tasks as much as possible for our small team, utilizing GitHub Sponsors for efficient sponsor management. ### Vendor agreements Since GitHub Sponsors facilitates our sponsor transactions, they act as your vendor. For vendor agreements or related queries, especially for organizations with GitHub enterprise accounts, reaching out to [GitHub Support] is recommended. [GitHub Support]: https://github.com/sponsors ### Non-disclosure agreements Given our limited resources as a small team, we are unable to review and sign NDAs. We advise those requiring such agreements to consult [our promise] for reassurance. Additionally, please contact us if you have any questions at sponsors@squidfunk.com [our promise]: #our-promise ## Our promise We recognize the importance of privacy for our organizational sponsors, especially in the absence of formal agreements like [NDAs]. "Our Promise" is our assurance of commitment to your confidentiality and discretion. - __Confidential sponsorship:__ Your choice between public or private sponsorship is respected to the fullest. For private sponsors, we guarantee your relation with us remains confidential at all times, ensuring no public disclosure of your sponsorship. - __Logo usage and brand representation:__ Logo display and any form of public acknowledgment are completely under your control and will only proceed with your explicit consent. This ensures your brand is represented on your terms. - __Marketing and communication:__ We commit not to use the details of your sponsorship for marketing or promotional purposes without your approval. Your sponsorship details are guarded with the highest level of confidentiality, with no unauthorized use or disclosure. [NDAs]: #non-disclosure-agreements ��������������������mkdocs-material-9.6.4/docs/insiders/runtime-and-cancellation.md�������������������������������������0000664�0000000�0000000�00000005264�14753064456�0024602�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Runtime and cancellation The sponsorship model for Material for MkDocs is facilitated through GitHub Sponsors and, therefore, adheres to GitHub's policies. If you're curious about the duration of your sponsorship and the cancellation process, you will find everything you need to know below. ## Runtime Sponsorships remain valid as long as monthly or yearly subscriptions are active and only expire when you cancel the sponsorship or when your [payment method expires]. [payment method expires]: #automatic-cancellation ## Cancellation process Canceling your sponsorship initiates a cancellation request through GitHub, which is scheduled to take effect at the end of your current billing cycle. This means you'll retain access to Insiders until the cancellation officially becomes effective. All transactions are processed by GitHub and as we don't receive any information regarding your payment, we can't provide details about when your cancellation will be in place. ### How to cancel To downgrade or cancel your sponsorship, please follow the [step-by-step guide from GitHub]. If you have sponsored using an organizational account, ensure that you cancel the sponsorship under that specific account, as the [collaborator and sponsor accounts may differ]. [step-by-step guide from GitHub]: https://docs.github.com/en/billing/managing-billing-for-github-sponsors/downgrading-a-sponsorship#canceling-a-sponsorship [collaborator and sponsor accounts may differ]: access-management.md/#collaborators ### Effects of cancellation Upon the effective date of your cancellation, GitHub will automatically remove you as a collaborator from the private Material for MkDocs Insiders repository. You will no longer receive updates. However, you are welcome to continue using the latest version available to you at the time of cancellation for as long as you like. !!! warning "GitHub deletes private forks" Please note that once you lose your collaborator status, [GitHub will automatically delete your private fork] of the Insiders repository, so you may want to take steps to ensure that you have a local backup. [GitHub will automatically delete your private fork]: https://docs.github.com/en/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-access-to-your-personal-repositories/removing-a-collaborator-from-a-personal-repository#deleting-forks-of-private-repositories ### Automatic cancellation If your credit card expires, GitHub will automatically cancel your sponsorship and remove you as a collaborator. Regularly checking your payment method is recommended to avoid unintended cancellations. If it happens, you can reinstate your sponsorship with a new credit card. ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/insiders/sponsoring-tiers.md���������������������������������������������0000664�0000000�0000000�00000022665�14753064456�0023256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Sponsoring tiers We offer a range of sponsoring tiers tailored to the diverse needs of our community. Whether you're an individual user, or rooted in academia, or work in an organization using our software commercially, there's a sponsoring tier that suits your needs. ## Choosing a tier Choosing the right sponsoring tier depends on your needs and how you intend to use Material for MkDocs Insiders. Our tiers are categorized into [non-commercial] and [commercial] use: - __Non-commercial tiers__: Intended for individuals, Open Source projects, and academic use - __Commercial tiers__: Designed for organizations and enterprises of any size Each [monthly sponsoring tier] offers a range of benefits tailored to your needs. Benefits include access to our private Material for MkDocs Insiders repository, priority handling of bug reports, and more, which vary by the number of projects[^1] that you intend to build with it and collaborators required. Remember, you can always [upgrade or downgrade] your sponsorship level at any time. [^1]: A project is defined as a folder with a `mkdocs.yml` configuration file that is built with Material for MkDocs Insiders. This is the only limitation to follow – the number of documentation pages or the size of your project is up to you. [monthly sponsoring tier]: #monthly-sponsoring [non-commercial]: #non-commercial-use [commercial]: #commercial-use [upgrade or downgrade]: #switching-tiers ## Monthly sponsoring Monthly sponsoring tiers provide you with access to our private Material for MkDocs Insiders repository. Your financial contribution supports the ongoing development of both the Insiders and the community edition. ### Non-commercial use Non-commercial use essentially means "personal use". This includes individuals using the Insiders edition for personal or purely non-commercial Open Source projects. We offer two different tiers for non-commercial use. --- #### The Individual You love Material for MkDocs and use it for your Open Source project or personal blog. You read about all the awesome features in Insiders, which are first exclusively released to sponsors, and don't want to miss out. __Rewards:__ - :material-door-open: Access to Insiders - :material-charity: Non-commercial use for __1-2 projects__ [  Sponsor with __$15 a month__ <span class="mdx-sponsorship-count" data-mdx-component="sponsorship-count"></span>][15 a month]{ .md-button .md-button--primary .mdx-sponsorship-button } [15 a month]: https://github.com/sponsors/squidfunk/sponsorships?tier_id=210638 --- #### The Dedicated Individual You use Material for MkDocs for several of your Open Source projects or personal sites, and just love that you can build beautiful documentation without having to worry about the constantly breaking JavaScript ecosystem – this is now [@squidfunk's] job. [@squidfunk's]: https://github.com/squidfunk __Rewards:__ - :material-door-open: Access to Insiders - :material-charity: Non-commercial use for __3+ projects__ [  Sponsor with __$35 a month__ <span class="mdx-sponsorship-count" data-mdx-component="sponsorship-count"></span>][35 a month]{ .md-button .md-button--primary .mdx-sponsorship-button } [35 a month]: https://github.com/sponsors/squidfunk/sponsorships?tier_id=210641 --- ### Commercial use Commercial use refers to any use of our software for a business or for-profit purpose. This includes any use by a corporation or other organization, whether or not they generate revenue directly from the software. We offer different pricing tiers for commercial use, each tailored to the needs of different businesses. It's important to note that internal use of the software within your organization is also considered commercial use, as with all commercial software. --- #### The Organization :star: Your organization uses Material for MkDocs for its documentation or internal knowledge base and wants to make sure that it is well-maintained and safe to use for the years to come. You agree that $125 a month (less than 1 hour of a skilled developer) is a clever investment into a solution, solving tons of problems you don't want to fight yourself. __Rewards:__ - :material-door-open: Access to Insiders - :material-currency-usd: Commercial use for __1-9 projects__ - :material-run-fast: Your bug reports are __prioritized__ - :material-star: Backlink + placement of __small logo__ [  Sponsor with __$125 a month__ <span class="mdx-sponsorship-count" data-mdx-component="sponsorship-count"></span>][125 a month]{ .md-button .md-button--primary .mdx-sponsorship-button } [125 a month]: https://github.com/sponsors/squidfunk/sponsorships?tier_id=210643 --- #### The Global Organization :star::star: Your organization runs many internal and public-facing sites that are built with Material for MkDocs, helping you to share and manage knowledge efficiently. You've evaluated several commercial alternatives which will cost you 3-4x more, some of which with a smaller feature set. You agree that $250 a month (less than 2 hours of a skilled developer) is a very good deal for the value you're getting out of it. __Rewards:__ - :material-door-open: Access to Insiders - :material-currency-usd: Commercial use for __10-49 projects__ - :material-run-fast: Your bug reports are __prioritized__ - :material-star: Backlink + placement of __logo__ [  Sponsor with __$250 a month__ <span class="mdx-sponsorship-count" data-mdx-component="sponsorship-count"></span>][250 a month]{ .md-button .md-button--primary .mdx-sponsorship-button } [250 a month]: https://github.com/sponsors/squidfunk/sponsorships?tier_id=181282 --- #### The Holistic Organization :star::star::star: Your organization's day-to-day operations critically depend on Material for MkDocs, and you need to make sure that bugs are fixed quickly to keep your customers happy. You see your work as part of a larger ecosystem, realizing that giving back is essential to keeping everything you fight for alive. __Rewards:__ - :material-door-open: Access to Insiders - :material-currency-usd: Commercial use for __50+ projects__ - :material-run-fast: Your bug reports are __prioritized__ - :material-star: Backlink + placement of __large logo__ - :material-face-agent: Private __email support__ [  Sponsor with __$1,000 a month__ <span class="mdx-sponsorship-count" data-mdx-component="sponsorship-count"></span>][1000 a month]{ .md-button .md-button--primary .mdx-sponsorship-button } [1000 a month]: https://github.com/sponsors/squidfunk/sponsorships?tier_id=334388 --- ## One-time sponsoring For those who wish to contribute one-time without an ongoing subscription and without receiving access to the exclusive Insiders features, we offer the following one-time sponsoring tiers. --- ### Just a Tip! :money_with_wings: You asked a question or needed some help on a problem, and we've helped you quickly. You want no perks, just good karma and a warm feeling of giving something back. [  Sponsor __$20 one-time__ <span class="mdx-sponsorship-count" data-mdx-component="sponsorship-count"></span>][20 one-time]{ .md-button .md-button--primary .mdx-sponsorship-button } [20 one-time]: https://github.com/sponsors/squidfunk/sponsorships?tier_id=222886 --- ### The Mentoring A 1-hour video call with [@squidfunk], the creator and core maintainer of the project. He is happy to share his experiences with you and help you with anything related to his work. __Popular topics are:__ - How to tailor Material for MkDocs to your needs - How to start earning a living in Open Source - How to make your Open Source project sustainable [@squidfunk]: https://github.com/squidfunk [  Sponsor __$350 one-time__ <span class="mdx-sponsorship-count" data-mdx-component="sponsorship-count"></span>][350 one-time]{ .md-button .md-button--primary .mdx-sponsorship-button } [350 one-time]: https://github.com/sponsors/squidfunk/sponsorships?tier_id=210891 --- ## Custom amount You're invited to contribute custom sponsorship amounts via GitHub Sponsors, enabling you to support Material for MkDocs according to your preferences. Please be aware that individuals need to pledge a minimum of $15 a month to access Insiders, whereas organizations are encouraged to sponsor $125 a month or more, based on their requirements. Contributions exceeding these thresholds are highly appreciated. Please note that one-time donations, regardless of their size, won't be granted access to Insiders due to technical constraints. ## Switching tiers You can easily switch between different sponsorship tiers — [upgrade] or [downgrade] — at any time. Simply visit the @squidfunk's [GitHub Sponsors profile] and adjust your sponsorship tier selection. Once you've made the change, you'll immediately sponsor at the new tier. If you exceed the number of projects within your current sponsorship limit, we kindly request that you upgrade your sponsorship to a higher tier to retain access to Material for MkDocs Insiders. The change takes effect immediately, and the amount is prorated based on your [billing cycle]. [upgrade]: https://docs.github.com/en/billing/managing-billing-for-github-sponsors/upgrading-a-sponsorship [downgrade]: https://docs.github.com/en/billing/managing-billing-for-github-sponsors/downgrading-a-sponsorship [billing cycle]: https://docs.github.com/en/github/setting-up-and-managing-billing-and-payments-on-github/changing-the-duration-of-your-billing-cycle [GitHub Sponsors profile]: https://github.com/sponsors/squidfunk ���������������������������������������������������������������������������mkdocs-material-9.6.4/docs/insiders/upgrade.md������������������������������������������������������0000664�0000000�0000000�00000005154�14753064456�0021352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# How to upgrade When upgrading Insiders, you should always check the version of Material for MkDocs which makes up the first part of the version qualifier, e.g., Insiders `4.x.x` is currently based on `9.x.x`: ``` 9.x.x-insiders-4.x.x ``` If the major version increased, it's a good idea to consult the [upgrade guide] and go through the steps to ensure your configuration is up to date and all necessary changes have been made. [upgrade guide]: ../upgrade.md [list of tags]: https://github.com/squidfunk/mkdocs-material-insiders/tags Depending on how you installed and what you want to upgrade to you need to run different commands: === "pip upgrade to release" If you installed Insiders via `pip` and you want to upgrade to a specific release, pick the tag from the [list of tags] and replace the tag at the end of the URL of the command given below: ``` pip install --upgrade git+https://${GH_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git@9.4.2-insiders-4.42.0 ``` === "pip upgrade to latest development" If you installed Insiders via `pip` and want to upgrade to the latest development version, run: ``` pip install --upgrade --force-reinstall git+https://${GH_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git ``` The `--force-reinstall` option serves to make sure `pip` does, in fact, install the latest development version, instead of deciding that nothing is to be done based on the version numbers. ``` === "git upgrade" If you installed Insiders via `git`, you will first need to check out the version you want to install into your workspace. After this is done, you can run `pip` to install that version. First, make sure that your local clone is up-to-date with the upstream repository by running `git pull`. You can look up the tags using `git tag --sort -refname` or you can consult the [list of tags]. Then, checkout the tag you want to use by replacing the one given in the command below (twice)and running it from your workspace[^detached]: [^detached]: The `--detach` argument serves to tell `git` that you are ok to have your workspace in the [detached head] state, which is perfectly fine to have here. [detached head]: https://www.git-tower.com/learn/git/faq/detached-head-when-checkout-commit/ ``` cd mkdocs-material git checkout --detach tags/9.4.2-insiders-4.42.0 ``` Now, change back to the parent directory in which your Git repository lives and run `pip`: ``` cd .. pip install -e mkdocs-material ``` ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/insiders/why-sponsor-us.md�����������������������������������������������0000664�0000000�0000000�00000013615�14753064456�0022661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Why sponsor us Material for MkDocs is an Open Source project that is developed and maintained by a small team of individuals who want to devote as much time as possible to make it better every day. We need to rely on the financial support of [our awesome sponsors], who buy us the time to work on it. [become a monthly sponsor]: sponsoring-tier.md [our awesome sponsors]: our-sponsors.md [squidfunk's sponsor profile]: https://github.com/sponsors/squidfunk/ ## Who we are While [the project was started] by @squidfunk as a personal side project, the [Sponsorware] model that the project adopted in 2020 allowed him to build a small team of amazing individuals around him, [who are now helping him] to maintain the project, as well as the growing list of sponsors. [the project was started]: #how-it-started [sponsorware]: #sponsorware [who are now helping him]: #where-we-are-today ### How it started In 2015, albeit 10 years in the industry, @squidfunk was still quite new to Open Source. Having just finished his latest Open Source project, he realized that the project was too complex to be explained in a plain README on GitHub. He needed a good documentation tool for this project. After evaluating static site generators in general and Hugo, Sphinx and MkDocs in particular, he quickly decided that MkDocs seemed a good choice, as it was specifically aimed at technical project documentation and easy to use. Unfortunately, all of the available themes looked dated, and since @squidfunk is a very visual person, he just couldn't convince himself to call it a day. He needed to build a theme. Months later, in February 2016, [the first version] of Material for MkDocs was released. Over the next years, @squidfunk being the sole maintainer, countless feature requests were implemented and bugs were fixed, allowing the project to gain popularity and reach almost 3,000 stars on GitHub by the end of 2019. It is still his most popular project to date. As the project grew, @squidfunk started to implement feature requests that made sense from a general perspective, but not for his personal use. This was the point where the project started to shift from a personal project to a community-driven one, and began to feel like a secondary job. Having a primary job, many maintainers burn out when their side projects become successful, which is why @squidfunk decided to give the [Sponsorware] model a try and make Material for MkDocs his primary job. This turned out to be an incredible success. [the first version]: https://github.com/squidfunk/mkdocs-material/releases/tag/0.1.0 ### Sponsorware The Sponsorware model is simple – as a sponsor, you get early access to the latest and greatest features of Material for MkDocs as part of [Insiders] before everyone else gets to enjoy them, as you are the one making them possible with your financial contributions. Every new feature that lands in [Insiders] is linked to a funding goal with a specific amount. Once this amount is reached, all of the features that are part of this funding goal are merged into the community edition, making them available to everyone. It is that simple. This brand-new and still experimental approach not only helps keep the project vibrant and cutting-edge but also ensures it can continue to meet and exceed your expectations. [Insiders]: index.md ### Where we are today Fast forward to today, Material for MkDocs is a thriving community-supported and well-funded project, with over 500 sponsors and a small but growing team, used by international companies and organizations. The project has outgrown its original purpose by far, as it has become so much more than just a theme – a powerful documentation framework built on top of MkDocs. Starting in 2020 with the advent of the [Sponsorware] model, the frequency of releases has more than doubled, with a new release seeing the light of day on average every 1-2 weeks. Moreover, our team responds to issues as fast as possible, keeping the number of open issues low. ## Our pledge We're working hard to make Material for MkDocs one of the best documentation tools out there, ridiculously powerful, a pleasure to use and most importantly – free and Open Source. It is the financial contributions of our awesome sponsors, that allow us to do our best work. It's a simple equation: as long as this project is funded, we can continue to improve it, fix bugs, and add new features. We will continue to provide the best possible support to our users and make sure that Material for MkDocs remains a tool that you love to use. If you sponsor us, your contribution helps us to pay for: 1. __Taxes__: Since we provide a service to our sponsors, we're of course legally obligated and happy to pay sales tax. This requirement applies to all sponsorship contributions, aligning us with standard business practices, as for the rest of the world. 2. __Sponsorships__: A significant portion of our funding is redirected to upstream projects. This cultivates collaboration and supports the broader Open Source ecosystem. We regard those projects and their maintainers as essential for the persistence of Material for MkDocs. 3. __Team__: Our team is growing! With more funds available, we can pay more individuals to help us make Material for MkDocs even better. Note that this covers various aspects of the project, like the creation of new features, bug resolution, support, and sponsor relations. We are bootstrapped – no investors to please! If you decide to support us, you help us stay independent and free from outside influence. This means we can focus on building a solution that you love to use and keep ownership of your documentation project without vendor lock-in. [  Choose a sponsoring tier <span class="mdx-sponsorship-count" data-mdx-component="sponsorship-count"></span>][sponsoring-tiers]{ .md-button .md-button--primary .mdx-sponsorship-button } [sponsoring-tiers]: sponsoring-tiers.md �������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/license.md���������������������������������������������������������������0000664�0000000�0000000�00000002103�14753064456�0017514�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# License **MIT License** Copyright (c) 2016-2025 Martin Donath Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/philosophy.md������������������������������������������������������������0000664�0000000�0000000�00000003335�14753064456�0020300�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Philosophy Before settling for Material for MkDocs, it's a good idea to understand the philosophy behind the project, in order to make sure it aligns with your goals. This page explains the design principles anchored in Material for MkDocs, and discusses the [conventions] used in this documentation. [conventions]: conventions.md ## Design principles - **It's just Markdown**: Focus on the content of your documentation and create a professional static site in minutes. No need to know HTML, CSS or JavaScript – let Material for MkDocs do the heavy lifting for you. - **Works on all devices**: Serve your documentation with confidence – Material for MkDocs automatically adapts to perfectly fit the available screen estate, no matter the type or size of the viewing device. Desktop. Tablet. Mobile. All great. - **Made to measure**: Make it yours – change the colors, fonts, language, icons, logo, and more with a few lines of configuration. Material for MkDocs can be easily extended and provides many options to alter appearance and behavior. - **Fast and lightweight**: Don't let your users wait – get incredible value with a small footprint by using one of the fastest themes available with excellent performance, yielding optimal search engine rankings and happy users that return. - **Maintain ownership**: Make accessibility a priority – users can navigate your documentation with touch devices, keyboard, and screen readers. Semantic markup ensures that your documentation works for everyone. - **Open Source**: You're in good company – choose a mature and actively maintained solution built with state-of-the-art Open Source technologies, trusted by more than 50.000 individuals and organizations. Licensed under MIT. ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/plugins/�����������������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0017235�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/plugins/blog.md����������������������������������������������������������0000664�0000000�0000000�00000122004�14753064456�0020501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- title: Built-in blog plugin icon: material/newspaper-variant-outline --- # Built-in blog plugin The blog plugin makes it very easy to build a blog, either as a sidecar to your documentation or as the main thing. Focus on your content while the plugin does all the heavy lifting, generating a view of all latest posts, [archive] and [category] pages, configurable [pagination] and much more. [archive]: #archive [category]: #categories [pagination]: #pagination ## Objective ### How it works The plugin scans the configured [`posts` directory][config.post_dir] for `.md` files from which paginated views[^1] are automatically generated. If not configured otherwise, the plugin expects that your project has the following directory layout, and will create any missing directories or files for you: [^1]: Views are pages that are automatically generated, i.e., the entry point to your blog listing all latest posts, as well as [archive] and [category] pages that list all posts associated with them through [metadata] in chronological order. ``` { .sh .no-copy } . ├─ docs/ │ └─ blog/ │ ├─ posts/ │ └─ index.md └─ mkdocs.yml ``` The `index.md` file in the [`blog` directory][config.blog_dir] is the entry point to your blog – a paginated view listing all posts in reverse chronological order. Besides that, the plugin supports automatically creating [archive] and [category] pages that list a subset of posts for a time interval or category. [Post URLs][config.post_url_format] are completely configurable, no matter if you want your URLs to include the post's date or not. Rendered dates always display in the locale of the [site language] of your project. Like in other static blog frameworks, posts can be annotated with a variety of [metadata], allowing for easy integration with other [built-in plugins], e.g., the [social] and [tags] plugin. Posts can be organized in nested folders with a directory layout that suits your specific needs, and can make use of all components and syntax that Material for MkDocs offers, including [admonitions], [annotations], [code blocks], [content tabs], [diagrams], [icons], [math], and more. [metadata]: #metadata [built-in plugins]: index.md [social]: social.md [tags]: tags.md [admonitions]: ../reference/admonitions.md [annotations]: ../reference/annotations.md [code blocks]: ../reference/code-blocks.md [content tabs]: ../reference/content-tabs.md [diagrams]: ../reference/diagrams.md [icons]: ../reference/icons-emojis.md [math]: ../reference/math.md ### When to use it If you want to add a blog to your project, or migrate from another blog framework to Material for MkDocs because of its excellent technical writing capabilities, this plugin is a great choice, as it integrates perfectly with many other built-in plugins: <div class="grid cards" markdown> - :material-file-tree:   __[Built-in meta plugin][meta]__ --- The meta plugin makes it easy to apply [metadata] to a subset of posts, including authors, tags, categories, draft status, as well as social card layouts. --- __Simpler organization, categorization and management of post metadata__ - :material-share-circle:   __[Built-in social plugin][social]__ --- The social plugin automatically generates beautiful and customizable social cards for each post and page, showing as previews on social media. --- __Links to your blog render beautiful social cards when shared on social media__ - :material-rabbit:   __[Built-in optimize plugin][optimize]__ --- The optimize plugin automatically identifies and optimizes all media files that you reference in your project by using compression and conversion techniques. --- __Your blog loads faster as smaller images are served to your users__ - :material-tag-text:   __[Built-in tags plugin][tags]__ --- The tags plugin allows to categorize posts alongside with pages in your project, to improve their discoverability and connect posts to your documentation. --- __Your documentation's tag system integrates with your blog__ </div> [meta]: meta.md [social]: social.md [optimize]: optimize.md [tags]: tags.md ## Configuration <!-- md:version 9.2.0 --> <!-- md:plugin [blog] – built-in --> <!-- md:flag multiple --> <!-- md:flag experimental --> As with all [built-in plugins], getting started with the blog plugin is straightforward. Just add the following lines to `mkdocs.yml`, and you can start writing your first post: ``` yaml plugins: - blog ``` The blog plugin is built into Material for MkDocs and doesn't need to be installed. [blog]: blog.md [built-in plugins]: index.md ### Navigation If you do not have site navigation configured in your `mkdocs.yml` then there is nothing more to do. The blog [archive] and [category] pages will automatically appear underneath the automatically generated navigation. If you do have a navigation structure defined then you will need to specify where the blog should appear in this. Create a [navigation section with an index page] for the blog: ```yaml theme: name: material features: - navigation.indexes nav: - ... - Blog: - blog/index.md ``` The [archive] and [category] pages will appear within that section as subsections beneath pages in the blog section. In this case, they would appear after `index.md`. The path to the `index.md` file must match [blog_dir][config.blog_dir]. This means that you can name the blog navigation entry anything you like: 'Blog' or 'News' or perhaps 'Tips'. [navigation section with an index page]: ../setup/setting-up-navigation.md#section-index-pages ### General The following settings are available: --- #### <!-- md:setting config.enabled --> <!-- md:version 9.2.0 --> <!-- md:default `true` --> Use this setting to enable or disable the plugin when [building your project]. It's normally not necessary to specify this setting, but if you want to disable the plugin, use: ``` yaml plugins: - blog: enabled: false ``` [building your project]: ../creating-your-site.md#building-your-site --- #### <!-- md:setting config.blog_dir --> <!-- md:version 9.2.0 --> <!-- md:default `blog` --> Use this setting to change the path where your blog is located in the [`docs` directory][mkdocs.docs_dir]. The path is included in the generated URLs as a prefix for all posts and views. You can change it with: === "Documentation + Blog" ``` yaml plugins: - blog: blog_dir: blog ``` === "Blog only" ``` yaml plugins: - blog: blog_dir: . ``` The provided path is resolved from the [`docs` directory][mkdocs.docs_dir]. --- #### <!-- md:setting config.blog_toc --> <!-- md:version 9.2.0 --> <!-- md:default `false` --> Use this setting to leverage the table of contents to display post titles in views. This might be useful, if your post excerpts are rather long. If you want to enable it, use: ``` yaml plugins: - blog: blog_toc: true ``` ### Posts The following settings are available for posts: --- #### <!-- md:setting config.post_dir --> <!-- md:version 9.2.0 --> <!-- md:default `{blog}/posts` --> Use this setting to change the folder where your posts are located. It's normally not necessary to change this setting, but if you want to rename the folder or change its file system location, use: ``` yaml plugins: - blog: post_dir: "{blog}/articles" ``` Note that the [`posts` directory][config.post_dir] is solely used for post organization – it is not included in post URLs, since they are automatically and comfortably generated by this plugin. The following placeholders are available: - `blog` – [`blog` directory][config.blog_dir] The provided path is resolved from the [`docs` directory][mkdocs.docs_dir]. --- #### <!-- md:setting config.post_date_format --> <!-- md:version 9.2.0 --> <!-- md:default `long` --> Use this setting to change the date format of posts. This plugin uses [babel] to render dates in the configured [site language]. You can use [babel]'s [pattern syntax] or the following shortcodes: === "Monday, January 31, 2024" ``` yaml plugins: - blog: post_date_format: full ``` === "January 31, 2024" ``` yaml plugins: - blog: post_date_format: long ``` === "Jan 31, 2024" ``` yaml plugins: - blog: post_date_format: medium ``` === "1/31/24" ``` yaml plugins: - blog: post_date_format: short ``` Note that depending on the [site language], results might look different for other languages. [babel]: https://pypi.org/project/Babel/ [site language]: ../setup/changing-the-language.md#site-language [pattern syntax]: https://babel.pocoo.org/en/latest/dates.html#pattern-syntax --- #### <!-- md:setting config.post_url_date_format --> <!-- md:version 9.2.0 --> <!-- md:default `yyyy/MM/dd` --> Use this setting to change the date format used in post URLs. The format string must adhere to [babel]'s [pattern syntax] and should not contain whitespace. Some popular choices: === ":material-link: blog/2024/01/31/:material-dots-horizontal:/" ``` yaml plugins: - blog: post_url_date_format: yyyy/MM/dd ``` === ":material-link: blog/2024/01/:material-dots-horizontal:/" ``` yaml plugins: - blog: post_url_date_format: yyyy/MM ``` === ":material-link: blog/2024/:material-dots-horizontal:/" ``` yaml plugins: - blog: post_url_date_format: yyyy ``` If you want to remove the date from post URLs, e.g., when your blog features mostly evergreen content, you can remove the `date` placeholder from the [`post_url_format`][config.post_url_format] format string. --- #### <!-- md:setting config.post_url_format --> <!-- md:version 9.2.0 --> <!-- md:default `{date}/{slug}` --> Use this setting to change the format string that is used when generating post URLs. You can freely combine placeholders, and join them with slashes or other characters: === ":material-link: blog/2024/:material-dots-horizontal:/" ``` yaml plugins: - blog: post_url_format: "{date}/{slug}" ``` === ":material-link: blog/:material-dots-horizontal:/" ``` yaml plugins: - blog: post_url_format: "{slug}" ``` The following placeholders are available: - `categories` – Post categories, slugified with [`categories_slugify`][config.categories_slugify] - `date` – Post date, formatted with [`post_url_date_format`][config.post_url_date_format] - `slug` – Post title, slugified with [`post_slugify`][config.post_slugify], or explicitly set via [`slug`][meta.slug] metadata property - `file` – Post filename without `.md` file extension If you remove the `date` placeholder, make sure that post URLs don't collide with URLs of other pages hosted under the [`blog` directory][config.blog_dir], as this leads to undefined behavior. --- #### <!-- md:setting config.post_url_max_categories --> <!-- md:version 9.2.0 --> <!-- md:default `1` --> Use this setting to set an upper bound for the number of categories included in post URLs if the `categories` placeholder is part of [`post_url_format`] [config.post_url_format] and the post defines categories: ``` yaml plugins: - blog: post_url_format: "{categories}/{slug}" post_url_max_categories: 2 ``` If more than one category is given, they are joined with `/` after slugifying. --- #### <!-- md:setting config.post_slugify --> <!-- md:version 9.2.0 --> <!-- md:default [`pymdownx.slugs.slugify`][pymdownx.slugs.slugify] --> Use this setting to change the function for generating URL-compatible slugs from post titles. By default, the [`slugify`][pymdownx.slugs.slugify] function from [Python Markdown Extensions] is used as follows: ``` yaml plugins: - blog: post_slugify: !!python/object/apply:pymdownx.slugs.slugify kwds: case: lower ``` The default configuration is Unicode-aware and should produce good slugs for all languages. Of course, you can also provide a custom slugification function for more granular control. [pymdownx.slugs.slugify]: https://github.com/facelessuser/pymdown-extensions/blob/01c91ce79c91304c22b4e3d7a9261accc931d707/pymdownx/slugs.py#L59-L65 [Python Markdown Extensions]: https://facelessuser.github.io/pymdown-extensions/extras/slugs/ --- #### <!-- md:setting config.post_slugify_separator --> <!-- md:version 9.2.0 --> <!-- md:default `-` --> Use this setting to change the separator that is passed to the slugification function set as part of [`post_slugify`][config.post_slugify]. While the default is a hyphen, it can be set to any string, e.g., `_`: ``` yaml plugins: - blog: post_slugify_separator: _ ``` --- #### <!-- md:setting config.post_excerpt --> <!-- md:version 9.2.0 --> <!-- md:default `optional` --> By default, the plugin makes [post excerpts](../setup/setting-up-a-blog.md#adding-an-excerpt) optional. When a post doesn't define an excerpt, views include the entire post. This setting can be used to make post excerpts required: === "Optional" ``` yaml plugins: - blog: post_excerpt: optional ``` === "Required" ``` yaml plugins: - blog: post_excerpt: required ``` When post excerpts are required, posts without excerpt separators raise an error. Thus, this setting is useful when you want to make sure that all posts have excerpts defined. --- #### <!-- md:setting config.post_excerpt_max_authors --> <!-- md:version 9.2.0 --> <!-- md:default `1` --> Use this setting to set an upper bound for the number of authors rendered in post excerpts. While each post may be written by multiple authors, this setting allows to limit the display to just a few or even a single author, or disable authors in post excerpts: === "Render up to 2 authors" ``` yaml plugins: - blog: post_excerpt_max_authors: 2 ``` === "Disable authors" ``` yaml plugins: - blog: post_excerpt_max_authors: 0 ``` This only applies to post excerpts in views. Posts always render all authors. --- #### <!-- md:setting config.post_excerpt_max_categories --> <!-- md:version 9.2.0 --> <!-- md:default `5` --> Use this setting to set an upper bound for the number of categories rendered in post excerpts. While each post may be assigned to multiple categories, this setting allows to limit the display to just a few or even a single category, or disable categories in post excerpts: === "Render up to 2 categories" ``` yaml plugins: - blog: post_excerpt_max_categories: 2 ``` === "Disable categories" ``` yaml plugins: - blog: post_excerpt_max_categories: 0 ``` This only applies to post excerpts in views. Posts always render all categories. --- #### <!-- md:setting config.post_excerpt_separator --> <!-- md:version 9.2.0 --> <!-- md:default <code><!-- more --></code> --> Use this setting to set the separator the plugin will look for in a post's content when generating post excerpts. All content __before__ the separator is considered to be part of the excerpt: ``` yaml plugins: - blog: post_excerpt_separator: <!-- more --> ``` It is common practice to use an HTML comment as a separator. --- #### <!-- md:setting config.post_readtime --> <!-- md:version 9.2.0 --> <!-- md:default `true` --> Use this setting to control whether the plugin should automatically compute the reading time of a post, which is then rendered in post excerpts, as well as in posts themselves: ``` yaml plugins: - blog: post_readtime: false ``` --- #### <!-- md:setting config.post_readtime_words_per_minute --> <!-- md:version 9.2.0 --> <!-- md:default `265` --> Use this setting to change the number of words that a reader is expected to read per minute when computing the reading time of a post. If you want to fine-tune it, use: ``` yaml plugins: - blog: post_readtime_words_per_minute: 300 ``` A reading time of 265 words per minute is considered to be the [average reading time of an adult]. [average reading time of an adult]: https://help.medium.com/hc/en-us/articles/214991667-Read-time ### Archive The following settings are available for archive pages: --- #### <!-- md:setting config.archive --> <!-- md:version 9.2.0 --> <!-- md:default `true` --> Use this setting to enable or disable archive pages. An archive page shows all posts for a specific interval (e.g. year, month, etc.) in reverse order. If you want to disable archive pages, use: ``` yaml plugins: - blog: archive: false ``` --- #### <!-- md:setting config.archive_name --> <!-- md:version 9.2.0 --> <!-- md:default computed --> Use this setting to change the title of the archive section the plugin adds to the navigation. If this setting is omitted, it's sourced from the translations. If you want to change it, use: ``` yaml plugins: - blog: archive_name: Archive ``` --- #### <!-- md:setting config.archive_date_format --> <!-- md:version 9.2.0 --> <!-- md:default `yyyy` --> Use this setting to change the date format used for archive page titles. The format string must adhere to [babel]'s [pattern syntax]. Some popular choices: === "2024" ``` yaml plugins: - blog: archive_date_format: yyyy ``` === "January 2024" ``` yaml plugins: - blog: archive_date_format: MMMM yyyy ``` Note that depending on the [site language], results might look different for other languages. --- #### <!-- md:setting config.archive_url_date_format --> <!-- md:version 9.2.0 --> <!-- md:default `yyyy` --> Use this setting to change the date format used for archive page URLs. The format string must adhere to [babel]'s [pattern syntax] and should not contain whitespace. Some popular choices: === ":material-link: blog/archive/2024/" ``` yaml plugins: - blog: archive_url_date_format: yyyy ``` === ":material-link: blog/archive/2024/01/" ``` yaml plugins: - blog: archive_url_date_format: yyyy/MM ``` --- #### <!-- md:setting config.archive_url_format --> <!-- md:version 9.2.0 --> <!-- md:default `archive/{date}` --> Use this setting to change the format string that is used when generating archive page URLs. You can freely combine placeholders, and join them with slashes or other characters: === ":material-link: blog/archive/2024/" ``` yaml plugins: - blog: archive_url_format: "archive/{date}" ``` === ":material-link: blog/2024/" ``` yaml plugins: - blog: archive_url_format: "{date}" ``` The following placeholders are available: - `date` – Archive date, formatted with [`archive_url_date_format`][config.archive_url_date_format] --- #### <!-- md:setting config.archive_pagination --> <!-- md:sponsors --> <!-- md:version insiders-4.44.0 --> <!-- md:default `true` --> Use this setting to enable or disable pagination for archive pages. The value of this setting is inherited from [`pagination`][config.pagination], unless it's explicitly set. To disable pagination, use: ``` yaml plugins: - blog: archive_pagination: false ``` --- #### <!-- md:setting config.archive_pagination_per_page --> <!-- md:sponsors --> <!-- md:version insiders-4.44.0 --> <!-- md:default `10` --> Use this setting to change the number of posts rendered per archive page. The value of this setting is inherited from [`pagination_per_page`] [config.pagination_per_page], unless it's explicitly set. To change it, use: ``` yaml plugins: - blog: archive_pagination_per_page: 5 ``` --- #### <!-- md:setting config.archive_toc --> <!-- md:version 9.2.0 --> <!-- md:default `false` --> Use this setting to leverage the table of contents to display post titles on all archive pages. The value of this setting is inherited from [`blog_toc`] [config.blog_toc], unless it's explicitly set. To change it, use ``` yaml plugins: - blog: archive_toc: true ``` ### Categories The following settings are available for category pages: --- #### <!-- md:setting config.categories --> <!-- md:version 9.2.0 --> <!-- md:default `true` --> Use this setting to enable or disable category pages. A category page shows all posts for a specific category in reverse chronological order. If you want to disable category pages, use: ``` yaml plugins: - blog: categories: false ``` --- #### <!-- md:setting config.categories_name --> <!-- md:version 9.2.0 --> <!-- md:default computed --> Use this setting to change the title of the category section the plugin adds to the navigation. If this setting is omitted, it's sourced from the translations. If you want to change it, use: ``` yaml plugins: - blog: categories_name: Categories ``` --- #### <!-- md:setting config.categories_url_format --> <!-- md:version 9.2.0 --> <!-- md:default `category/{slug}` --> Use this setting to change the format string that is used when generating category page URLs. You can freely combine placeholders, and join them with slashes or other characters: === ":material-link: blog/category/:material-dots-horizontal:/" ``` yaml plugins: - blog: categories_url_format: "category/{slug}" ``` === ":material-link: blog/:material-dots-horizontal:/" ``` yaml plugins: - blog: categories_url_format: "{slug}" ``` The following placeholders are available: - `slug` – Category, slugified with [`categories_slugify`][config.categories_slugify] --- #### <!-- md:setting config.categories_slugify --> <!-- md:version 9.2.0 --> <!-- md:default [`pymdownx.slugs.slugify`][pymdownx.slugs.slugify] --> Use this setting to change the function for generating URL-compatible slugs from categories. By default, the [`slugify`][pymdownx.slugs.slugify] function from [Python Markdown Extensions] is used as follows: ``` yaml plugins: - blog: categories_slugify: !!python/object/apply:pymdownx.slugs.slugify kwds: case: lower ``` The default configuration is Unicode-aware and should produce good slugs for all languages. Of course, you can also provide a custom slugification function for more granular control. --- #### <!-- md:setting config.categories_slugify_separator --> <!-- md:version 9.2.0 --> <!-- md:default `-` --> Use this setting to change the separator that is passed to the slugification function set as part of [`categories_slugify`][config.categories_slugify]. While the default is a hyphen, it can be set to any string, e.g., `_`: ``` yaml plugins: - blog: categories_slugify_separator: _ ``` --- #### <!-- md:setting config.categories_sort_by --> <!-- md:sponsors --> <!-- md:version insiders-4.45.0 --> <!-- md:default `material.plugins.blog.view_name` --> Use this setting to specify a custom function for sorting categories. For example, if you want to sort categories by the number of posts they contain, use the following configuration: ``` yaml plugins: - blog: categories_sort_by: !!python/name:material.plugins.blog.view_post_count ``` Don't forget to enable [`categories_sort_reverse`][config.categories_sort_reverse]. You can define your own comparison function, which must return something that can be compared while sorting, i.e., a string or number. --- #### <!-- md:setting config.categories_sort_reverse --> <!-- md:sponsors --> <!-- md:version insiders-4.45.0 --> <!-- md:default `false` --> Use this setting to reverse the order in which categories are sorted. By default, categories are sorted in ascending order, but you can reverse ordering as follows: ``` yaml plugins: - blog: categories_sort_reverse: true ``` --- #### <!-- md:setting config.categories_allowed --> <!-- md:version 9.2.0 --> <!-- md:default none --> The plugin allows to check categories against a predefined list, in order to catch typos or make sure that categories are not arbitrarily added. Specify the categories you want to allow with: ``` yaml plugins: - blog: categories_allowed: - Search - Performance ``` The plugin stops the build if a post references a category that is not part of this list. Posts can be assigned to categories by using the [`categories`] [meta.categories] metadata property. --- #### <!-- md:setting config.categories_pagination --> <!-- md:sponsors --> <!-- md:version insiders-4.44.0 --> <!-- md:default `true` --> Use this setting to enable or disable pagination for category pages. The value of this setting is inherited from [`pagination`][config.pagination], unless it's explicitly set. To disable pagination, use: ``` yaml plugins: - blog: categories_pagination: false ``` --- #### <!-- md:setting config.categories_pagination_per_page --> <!-- md:sponsors --> <!-- md:version insiders-4.44.0 --> <!-- md:default `10` --> Use this setting to change the number of posts rendered per category page. The value of this setting is inherited from [`pagination_per_page`] [config.pagination_per_page], unless it's explicitly set. To change it, use: ``` yaml plugins: - blog: categories_pagination_per_page: 5 ``` --- #### <!-- md:setting config.categories_toc --> <!-- md:version 9.2.0 --> <!-- md:default `false` --> Use this setting to leverage the table of contents to display post titles on all category pages. The value of this setting is inherited from [`blog_toc`] [config.blog_toc], unless it's explicitly set. To change it, use: ``` yaml plugins: - blog: categories_toc: true ``` ### Authors The following settings are available for authors: --- #### <!-- md:setting config.authors --> <!-- md:version 9.2.0 --> <!-- md:default `true` --> Use this setting to enable or disable post authors. If this setting is enabled, the plugin will look for a file named [`.authors.yml`][config.authors_file] and render authors in posts and views. Disable this behavior with: ``` yaml plugins: - blog: authors: false ``` --- #### <!-- md:setting config.authors_file --> <!-- md:version 9.2.0 --> <!-- md:default `{blog}/.authors.yml` --> Use this setting to change the path of the file where the author information for your posts resides. It's normally not necessary to change this setting, but if you need to, use: ``` yaml plugins: - blog: authors_file: "{blog}/.authors.yml" ``` The following placeholders are available: - `blog` – [`blog` directory][config.blog_dir] The provided path is resolved from the [`docs` directory][mkdocs.docs_dir]. !!! info "Format of author information" The `.authors.yml` file must adhere to the following format: ``` yaml title=".authors.yml" authors: <author>: name: string # Author name description: string # Author description avatar: url # Author avatar slug: url # Author profile slug url: url # Author website URL ``` Note that `<author>` must be set to an identifier for associating authors with posts, e.g., a GitHub username like `squidfunk`. This identifier can then be used in the [`authors`][meta.authors] metadata property of a post. Multiple authors are supported. As an example, see [the `.authors.yml` file][.authors.yml] we're using for our blog. [.authors.yml]: https://github.com/squidfunk/mkdocs-material/blob/master/docs/blog/.authors.yml --- #### <!-- md:setting config.authors_profiles --> <!-- md:sponsors --> <!-- md:version insiders-4.46.0 --> <!-- md:default `false` --> Use this setting to enable or disable automatically generated author profiles. An author profile shows all posts by an author in reverse chronological order. You can enable author profiles with: ``` yaml plugins: - blog: authors_profiles: true ``` --- #### <!-- md:setting config.authors_profiles_name --> <!-- md:sponsors --> <!-- md:version insiders-4.46.0 --> <!-- md:default computed --> Use this setting to change the title of the authors section the plugin adds to the navigation. If this setting is omitted, it's sourced from the translations. If you want to change it, use: ``` yaml plugins: - blog: authors_profiles_name: Authors ``` --- #### <!-- md:setting config.authors_profiles_url_format --> <!-- md:sponsors --> <!-- md:version insiders-4.46.0 --> <!-- md:default `author/{slug}` --> Use this setting to change the format string that is used when generating author profile URLs. You can freely combine placeholders, and join them with slashes or other characters: === ":material-link: blog/author/:material-dots-horizontal:/" ``` yaml plugins: - blog: authors_profiles_url_format: "author/{slug}" ``` === ":material-link: blog/:material-dots-horizontal:/" ``` yaml plugins: - blog: authors_profiles_url_format: "{slug}" ``` The following placeholders are available: - `slug` – Author slug or identifier from [`authors_file`][config.authors_file] - `name` – Author name from [`authors_file`][config.authors_file] --- #### <!-- md:setting config.authors_profiles_pagination --> <!-- md:sponsors --> <!-- md:version insiders-4.46.0 --> <!-- md:default `true` --> Use this setting to enable or disable pagination for author profiles. The value of this setting is inherited from [`pagination`][config.pagination], unless it's explicitly set. To disable pagination, use: ``` yaml plugins: - blog: authors_profiles_pagination: false ``` --- #### <!-- md:setting config.authors_profiles_pagination_per_page --> <!-- md:sponsors --> <!-- md:version insiders-4.46.0 --> <!-- md:default `10` --> Use this setting to change the number of posts rendered per archive page. The value of this setting is inherited from [`pagination_per_page`] [config.pagination_per_page], unless it's explicitly set. To change it, use: ``` yaml plugins: - blog: authors_profiles_pagination_per_page: 5 ``` --- #### <!-- md:setting config.authors_profiles_toc --> <!-- md:sponsors --> <!-- md:version insiders-4.46.0 --> <!-- md:default `false` --> Use this setting to leverage the table of contents to display post titles on all author profiles. The value of this setting is inherited from [`blog_toc`] [config.blog_toc], unless it's explicitly set. To change it, use: ``` yaml plugins: - blog: authors_profiles_toc: true ``` ### Pagination The following settings are available for pagination: --- #### <!-- md:setting config.pagination --> <!-- md:version 9.2.0 --> <!-- md:default `true` --> Use this setting to enable or disable pagination in views – generated pages that show posts or subsets of posts in reverse chronological order. If you want to disable pagination, use: ``` yaml plugins: - blog: pagination: false ``` --- #### <!-- md:setting config.pagination_per_page --> <!-- md:version 9.2.0 --> <!-- md:default `10` --> Use this setting to change the number of posts rendered per page. If you have rather long post excerpts, it can be a good idea to reduce the number of posts per page: ``` yaml plugins: - blog: pagination_per_page: 5 ``` --- #### <!-- md:setting config.pagination_url_format --> <!-- md:version 9.2.0 --> <!-- md:default `page/{page}` --> Use this setting to change the format string that is used when generating paginated view URLs. You can freely combine placeholders, and join them with slashes or other characters: === ":material-link: blog/page/n/" ``` yaml plugins: - blog: pagination_url_format: "page/{page}" ``` === ":material-link: blog/n/" ``` yaml plugins: - blog: pagination_url_format: "{page}" ``` The following placeholders are available: - `page` – Page number --- #### <!-- md:setting config.pagination_format --> <!-- md:version 9.2.0 --> <!-- md:default `~2~` --> The plugin uses the [paginate] module to generate the pagination markup using a special syntax. Use this setting to customize how pagination is constructed. Some popular choices: === "1 2 3 .. n" ``` yaml plugins: - blog: pagination_format: "~2~" ``` === "1 2 3 .. n :material-chevron-right: :material-chevron-double-right:" ``` yaml plugins: - blog: pagination_format: "$link_first $link_previous ~2~ $link_next $link_last" ``` === "1 :material-chevron-right:" ``` yaml plugins: - blog: pagination_format: "$link_previous $page $link_next" ``` The following placeholders are supported by [paginate]: - `#!css $first_page` – Number of first reachable page - `#!css $last_page` – Number of last reachable page - `#!css $page` – Number of currently selected page - `#!css $page_count` – Number of reachable pages - `#!css $items_per_page` – Maximal number of items per page - `#!css $first_item` – Index of first item on the current page - `#!css $last_item` – Index of last item on the current page - `#!css $item_count` – Total number of items - `#!css $link_first` – Link to first page (unless on first page) - `#!css $link_last` – Link to last page (unless on last page) - `#!css $link_previous` – Link to previous page (unless on first page) - `#!css $link_next` – Link to next page (unless on last page) [paginate]: https://pypi.org/project/paginate/ --- #### <!-- md:setting config.pagination_if_single_page --> <!-- md:version 9.2.0 --> <!-- md:default `false` --> Use this setting to control whether pagination should be automatically disabled when the view only consists of a single page. If you want to always render pagination, use: ``` yaml plugins: - blog: pagination_if_single_page: true ``` --- #### <!-- md:setting config.pagination_keep_content --> <!-- md:version 9.2.0 --> <!-- md:default `false` --> Use this setting to enable or disable persistence of content, i.e., if paginated views should also display the content of their containing view. If you want to enable this behavior, use: ``` yaml plugins: - blog: pagination_keep_content: true ``` ### Drafts The following settings are available for drafts: --- #### <!-- md:setting config.draft --> <!-- md:version 9.2.0 --> <!-- md:default `false` --> Rendering [draft posts][meta.draft] can be useful in deploy previews. Use this setting to specify whether the plugin should include posts marked as drafts when [building your project]: === "Render drafts" ``` yaml plugins: - blog: draft: true ``` === "Don't render drafts" ``` yaml plugins: - blog: draft: false ``` --- #### <!-- md:setting config.draft_on_serve --> <!-- md:version 9.2.0 --> <!-- md:default `true` --> Use this setting to control whether the plugin should include posts marked as drafts when [previewing your site]. If you don't wish to include draft posts when previewing, use: ``` yaml plugins: - blog: draft_on_serve: false ``` [previewing your site]: ../creating-your-site.md#previewing-as-you-write --- #### <!-- md:setting config.draft_if_future_date --> <!-- md:version 9.2.0 --> <!-- md:default `false` --> The plugin can automatically mark posts with future dates as drafts. When the date is past today, the post is automatically included when [building your project], unless explicitly marked as draft: ``` yaml plugins: - blog: draft_if_future_date: true ``` ## Usage ### Metadata Posts can define a handful of metadata properties that specify how the plugin renders them, in which views they are integrated, and how they are linked to each other. The metadata of each post is validated against a schema to allow for a quicker discovery of syntax errors. The following properties are available: --- #### <!-- md:setting meta.authors --> <!-- md:version 9.2.0 --> <!-- md:flag metadata --> <!-- md:default none --> Use this property to associate a post with [authors] by providing a list of identifiers as defined in the [`authors_file`][config.authors_file]. If an author can't be resolved, the plugin will terminate with an error: ``` yaml --- authors: - squidfunk # (1)! --- # Post title ... ``` 1. Authors are linked by using their identifiers. As an example, see [the `.authors.yml` file][.authors.yml] we're using for our blog. [authors]: #authors --- #### <!-- md:setting meta.categories --> <!-- md:version 9.2.0 --> <!-- md:flag metadata --> <!-- md:default none --> Use this property to associate a post with one or more [categories][category], making the post a part of the generated category page. Categories are defined as a list of strings (whitespaces are allowed): ``` yaml --- categories: - Search - Performance --- # Post title ... ``` If you want to prevent accidental typos assigning categories to posts, you can set a predefined list of allowed categories in `mkdocs.yml` by using the [`categories_allowed`][config.categories_allowed] setting. --- #### <!-- md:setting meta.date --> <!-- md:version 9.2.0 --> <!-- md:flag metadata --> <!-- md:flag required --> Use this property to specify a post's date. Note that this property is required, which means the build fails when it's not set. Additional dates can be set by using a slightly different syntax: === "Date" ``` yaml --- date: 2024-01-31 --- # Post title ... ``` === "Update date" ``` yaml --- date: created: 2024-01-31 # (1)! updated: 2024-02-01 --- # Post title ... ``` 1. Each post must have a creation date set. === "Custom date" ``` yaml --- date: created: 2024-01-31 my_custom_date: 2024-02-01 # (1)! --- # Post title ... ``` 1. The blog plugin validates all dates and allows to format them with [babel]'s [pattern syntax] in templates. When using theme extension, authors can add custom dates to templates. This was first requested in #5733. The following date formats are supported: - `2024-01-31` - `2024-01-31T12:00:00` --- #### <!-- md:setting meta.draft --> <!-- md:version 9.2.0 --> <!-- md:flag metadata --> <!-- md:default none --> Use this property to mark a post as draft. The plugin allows to include or exclude posts marked as drafts when [building your project] using the [`draft`][config.draft] setting. Mark a post as draft with: ``` yaml --- draft: true --- # Post title ... ``` --- #### <!-- md:setting meta.pin --> <!-- md:sponsors --> <!-- md:version insiders-4.53.0 --> <!-- md:flag metadata --> <!-- md:default `false` --> <!-- md:flag experimental --> Use this property to pin a post to the top of a view. In case multiple posts are pinned, the pinned posts are sorted by descending order and appear before all other posts. Pin a post with: ``` yaml --- pin: true --- # Post title ... ``` --- #### <!-- md:setting meta.links --> <!-- md:sponsors --> <!-- md:version insiders-4.23.0 --> <!-- md:flag metadata --> <!-- md:default none --> <!-- md:flag experimental --> Use this property to define a list of links that are rendered in the sidebar of a post. The property follows the same syntax as [`nav`][mkdocs.nav] in `mkdocs.yml`, supporting sections and even anchors: === "Links" ``` yaml --- links: - setup/setting-up-site-search.md - insiders/index.md --- # Post title ... ``` === "Links with sections" ``` yaml --- links: - setup/setting-up-site-search.md - Insiders: - insiders/index.md - insiders/getting-started.md --- # Post title ... ``` === "Links with anchors" ``` yaml --- links: - plugins/search.md # (1)! - Insiders: - insiders/how-to-sponsor.md - insiders/getting-started.md#requirements --- # Post title ... ``` 1. If a link defines an anchor, the plugin resolves the anchor from the linked page and sets the anchor title as a [subtitle]. All relative links are resolved from the [`docs` directory][mkdocs.docs_dir]. [subtitle]: ../reference/index.md#setting-the-page-subtitle --- #### <!-- md:setting meta.readtime --> <!-- md:version 9.2.0 --> <!-- md:flag metadata --> <!-- md:default computed --> Use this property to explicitly set the reading time of a post in minutes. When [`post_readtime`][config.post_readtime] is enabled, the plugin computes the reading time of a post, which can be overridden with: ``` yaml --- readtime: 15 --- # Post title ... ``` --- #### <!-- md:setting meta.slug --> <!-- md:version 9.2.0 --> <!-- md:flag metadata --> <!-- md:default computed --> Use this property to explicitly set the slug of a post. By default, the slug of a post is automatically computed by the [`post_slugify`][config.post_slugify] function from the post's title, which can be overridden with: ``` yaml --- slug: help-im-trapped-in-a-universe-factory --- # Post title ... ``` Slugs are passed to [`post_url_format`][config.post_url_format]. --- !!! question "Missing something?" When setting up your blog or migrating from another blog framework, you might discover that you're missing specific functionality – we're happy to consider adding it to the plugin! You can [open a discussion] to ask a question, or create a [change request] on our [issue tracker], so we can find out if it might be a good fit for the plugin. [open a discussion]: https://github.com/squidfunk/mkdocs-material/discussions [change request]: ../contributing/requesting-a-change.md [issue tracker]: https://github.com/squidfunk/mkdocs-material/issues ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/plugins/group.md���������������������������������������������������������0000664�0000000�0000000�00000006421�14753064456�0020716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- title: Built-in group plugin icon: material/format-list-group --- # Built-in group plugin The group plugin allows to group plugins into logical units to conditionally enable or disable them for specific environments with the use of [environment variables][mkdocs.env], e.g., to only enable a subset of plugins when [building your project] during continuous integration (CI). [building your project]: ../creating-your-site.md#building-your-site ## Objective ### How it works The plugin conditionally and lazily loads all plugins that are part of a group if and only if the group is enabled, which means that the plugin doesn't add any overhead when the group is disabled. It also means that the grouped plugins only need to be installed when the group is enabled. The plugins that are part of the group are executed in the same order as if they were defined at the top-level in the list of [`plugins`][mkdocs.plugins]. Thus, order is preserved and deterministic. ### When to use it Whenever you're using multiple plugins that are only required in specific environments, e.g., when building your project during continuous integration (CI), the plugin is the perfect utility for making configuration simpler, as it removes the need for splitting configuration into multiple files. It can be used with any built-in or third-party plugin. ## Configuration <!-- md:version 9.3.0 --> <!-- md:plugin [group] – built-in --> <!-- md:flag multiple --> <!-- md:flag experimental --> As with all [built-in plugins], getting started with the group plugin is straightforward. Just add the following lines to `mkdocs.yml`, and start splitting plugins into logical units: ``` yaml plugins: - group ``` The group plugin is built into Material for MkDocs and doesn't need to be installed. [group]: group.md [built-in plugins]: index.md ### General The following settings are available: --- #### <!-- md:setting config.enabled --> <!-- md:version 9.3.0 --> <!-- md:default `false` --> Use this setting to enable or disable the plugin when [building your project]. The plugin behaves differently than all other built-in plugins – __it is disabled by default__. To enable a group, use: ``` yaml plugins: - group: enabled: !ENV CI # (1)! ``` 1. If you only want to use the group plugin for better organization and always want to enable the plugins that are part of it, use: ``` yaml plugins: - group: enabled: true ``` The decision to disable the plugin by default was made to simplify the usage of environment variables, as it removes the need to provide a default value for an environment variable. Now, when [building your project], you can enable a group by setting the [environment variable][mkdocs.env]: ``` sh CI=true mkdocs build ``` [building your project]: ../creating-your-site.md#building-your-site --- #### <!-- md:setting config.plugins --> <!-- md:version 9.3.0 --> <!-- md:default none --> Use this setting to list the plugins that are part of the group. The syntax is exactly the same as for the [`plugins`][mkdocs.plugins] setting, so you can simply copy the list of plugins that you want to group, e.g: ``` yaml plugins: - group: plugins: - optimize - minify ``` The plugins mentioned here are just used for illustration purposes. �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/plugins/index.md���������������������������������������������������������0000664�0000000�0000000�00000016571�14753064456�0020700�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Built-in plugins Material for MkDocs started out as a theme for [MkDocs][mkdocs], but has since evolved into a full-fledged framework for building and maintaining documentation. The theme is still the core of the project, but it's now accompanied by a growing number of complementary built-in plugins. We strive to make those plugins as modular and generic as possible, so that they can be used in a wide variety of projects and use cases. By providing useful default settings, we also try to make them as easy to use as possible, so that you can get started quickly, tweaking their settings later on. When developing built-in plugins, we always adhere to the following design principles: - **Modularity:** Built-in plugins are designed to be modular, so that they can be easily combined to implement sophisticated pipelines. For example, the [offline], [optimize] and [privacy] plugins can be used together to build truly [offline-capable documentation]. - **Interoperability:** Built-in plugins are designed to be as compatible as possible, so they can be used in combination with other plugins, including third-party plugins. We strive to make it simple to integrate with the vast ecosystem that has evolved around [MkDocs][mkdocs]. - **Performance:** Built-in plugins are designed to be as fast and memory-efficient as possible, so that they don't unnecessarily slow down builds. This is particularly important for large documentation projects with thousands of pages. [mkdocs]: https://www.mkdocs.org/ [design principles]: ../design-principles.md [offline-capable documentation]: ../setup/building-for-offline-usage.md ## Categories ### Management The following plugins greatly improve the authoring experience when working on documentation projects by providing better management capabilities, from the management of plugins, multiple projects, and metadata, to the creation of minimal reproductions for bug reports: <div class="grid cards" markdown> - :material-format-list-group:   __[Built-in group plugin][group]__ --- The group plugin allows to group plugins into logical units to conditionally enable or disable them for specific environments with the use of [environment variables][mkdocs.env]. --- __Optimal management of plugins when building in different environments__ - :material-file-tree:   __[Built-in meta plugin][meta]__ --- The meta plugin makes it easy to manage metadata (front matter) for all pages in a folder, so a certain subset of pages uses specific tags or a custom template. --- __Simpler organization, categorization and management of metadata__ - :material-folder-open:   __[Built-in projects plugin][projects]__ --- The projects plugin allows to split your main project into multiple distinct projects, build them concurrently and preview them together as one. --- __Connect multiple projects together, and build them separately or as one__ - :material-information:   __[Built-in info plugin][info]__ --- The info plugin is a small and useful utility that helps to create self-contained minimal reproductions, so we maintainers can fix reported bugs more quickly. --- __Your bug reports are of the highest quality, so we can fix them as fast as possible__ </div> [group]: group.md [info]: info.md [meta]: meta.md [projects]: projects.md ### Optimization The following plugins are designed to help you build optimized documentation, making it more accessible to your users through faster loading times, better search engine rankings, beautiful preview images on social media, and GDPR compliance with a few lines of configuration: <div class="grid cards" markdown> - :material-share-circle:   __[Built-in social plugin][social]__ --- The social plugin automatically generates beautiful and customizable social cards for each page of your documentation, showing as previews on social media. --- __Links to your site render beautiful social cards when shared on social media__ - :material-rabbit:   __[Built-in optimize plugin][optimize]__ --- The optimize plugin automatically identifies and optimizes all media files that you reference in your project by using compression and conversion techniques. --- __Your site loads faster as smaller images are served to your users__ - :material-shield-account:   __[Built-in privacy plugin][privacy]__ --- The privacy plugin downloads external assets automatically for easy self-hosting, allowing for GDPR compliance with a single line of configuration. --- __Your documentation can be made GDPR compliant with minimal effort__ - :material-connection:   __[Built-in offline plugin][offline]__ --- The offline plugin adds support for building [offline-capable documentation], so you can distribute the [`site` directory][mkdocs.site_dir] as a `.zip` file that can be downloaded. --- __Your documentation can work without connectivity to the internet__ </div> [offline]: offline.md [optimize]: optimize.md [privacy]: privacy.md [social]: social.md ### Content The following plugins are designed to help you set up a blog, provide search functionality to your users, add tags to pages and posts, and use the same typesetting capabilities in specific parts of the documentation exactly as in the main content: <div class="grid cards" markdown> - :material-newspaper-variant-outline:   __[Built-in blog plugin][blog]__ --- The blog plugin adds first-class support for blogging to Material for MkDocs, either as a sidecar to your documentation or as a standalone installation. --- __Your blog is built with the same powerful engine as your documentation__ - :material-magnify:   __[Built-in search plugin][search]__ --- The search plugin adds a search bar to the header, allowing users to search the entire documentation, so it's easier for them to find what they're looking for. --- __Your documentation is searchable without any external services, even offline__ - :material-tag-text:   __[Built-in tags plugin][tags]__ --- The tags plugin adds first-class support for categorizing pages with tags, adding the ability to group related pages to improve the discovery of related content. --- __Your pages are categorized with tags, yielding additional context__ - :material-format-title:   __[Built-in typeset plugin][typeset]__ --- The typeset plugin allows to preserve the enriched presentation of titles and headlines within the navigation and table of contents. --- __Sidebars preserve the same formatting as section titles in pages__ </div> [blog]: blog.md [search]: search.md [tags]: tags.md [typeset]: typeset.md ## Architecture ### Multiple instances Several built-in plugins have support for multiple instances, which means that they can be used multiple times in the same configuration file, allowing to fine-tune behavior for separate sections of your project. Currently, the following plugins have support for multiple instances: <div class="mdx-columns" markdown> - [Built-in blog plugin][blog] - [Built-in group plugin][group] - [Built-in optimize plugin][optimize] - [Built-in privacy plugin][privacy] - [Built-in social plugin][social] </div> ���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/plugins/info.md����������������������������������������������������������0000664�0000000�0000000�00000011016�14753064456�0020511�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- title: Built-in info plugin icon: material/information --- # Built-in info plugin The info plugin is a utility that is solely intended to create self-contained [minimal reproductions] as `.zip` files when [reporting bugs] or proposing [change requests], making communication between us maintainers and you much easier, as we have a common ground to work on. [minimal reproductions]: ../guides/creating-a-reproduction.md [reporting bugs]: ../contributing/reporting-a-bug.md [change requests]: ../contributing/requesting-a-change.md ## Objective ### How it works The plugin helps you to prepare a minimal reproduction by collecting the necessary information about the environment and configuration of your project. This makes it easier for us to fix bugs, as it requires that you [upgrade to the latest version] and [remove your customizations]. When following these principles, you can be confident that you don't report a bug that has already been fixed in a subsequent release, or which is caused by one of your customizations. Even more importantly, you actively help us to fix the bug as quickly as possible. The output of the plugin is a `.zip` file that you can share with us maintainers. [Upgrade to the latest version]: ../contributing/reporting-a-bug.md#upgrade-to-latest-version [Remove your customizations]: ../contributing/reporting-a-bug.md#remove-customizations ### When to use it Whenever you're [reporting a bug][reporting bugs] or have something to discuss, like a question or [change request][change requests], you should attach a small, self-contained minimal reproduction. Runnable examples help to make communication much more efficient, giving us maintainers more time to benefit more users by pushing the project forward. Minimal reproductions are mandatory for bug reports. ## Configuration <!-- md:version 9.0.0 --> <!-- md:plugin [info] – built-in --> In order to get started with the built-in info plugin, just add the following lines to `mkdocs.yml`, and quickly [create a minimal reproduction] to share with us maintainers: ``` yaml plugins: - info ``` The info plugin is built into Material for MkDocs and doesn't need to be installed. [info]: info.md [create a minimal reproduction]: ../guides/creating-a-reproduction.md ### General The following settings are available: --- #### <!-- md:setting config.enabled --> <!-- md:version 9.0.0 --> <!-- md:default `true` --> Use this setting to enable or disable the plugin when [building your project]. It's normally not necessary to specify this setting, but if you want to disable the plugin, use: ``` yaml plugins: - info: enabled: false ``` [building your project]: ../creating-your-site.md#building-your-site --- #### <!-- md:setting config.enabled_on_serve --> <!-- md:version 9.0.6 --> <!-- md:default `false` --> Use this setting to control whether the plugin should be enabled when [previewing your site]. It's normally not necessary to specify this setting, but if you want to change this behavior, use: ``` yaml plugins: - info: enabled_on_serve: true ``` This setting streamlines the process of creating and inspecting minimal reproductions, as it allows to quickly iterate on the reproduction without having to disable the plugin first. [previewing your site]: ../creating-your-site.md#previewing-as-you-write ### Archive --- #### <!-- md:setting config.archive --> <!-- md:version 9.0.0 --> <!-- md:default `true` --> Use this setting to control whether the plugin should create a `.zip` file from the project or exit after the version check. This setting is solely intended for debugging the plugin itself: ``` yaml plugins: - info: archive: false ``` --- #### <!-- md:setting config.archive_stop_on_violation --> <!-- md:version 9.0.0 --> <!-- md:default `true` --> Use this setting to control whether the plugin should stop creating the `.zip` file when one of the [requirements] is not satisfied. This setting must only be used when [reporting a bug][reporting bugs] that is related to a customization [explicitly mentioned in our documentation]. You can change it with: ``` yaml plugins: - info: archive_stop_on_violation: false ``` If you're using this setting when [reporting a bug][reporting bugs], please explain why you think it is necessary to include customizations. If you're unsure, please ask us first by [creating a discussion]. [requirements]: #how-it-works [explicitly mentioned in our documentation]: ?q=%22extends+base%22 [creating a discussion]: https://github.com/squidfunk/mkdocs-material/discussions ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/plugins/meta.md����������������������������������������������������������0000664�0000000�0000000�00000011631�14753064456�0020507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- title: Built-in meta plugin icon: material/file-tree --- # Built-in meta plugin The meta plugin solves the problem of setting metadata (front matter) for all pages in a folder, i.e., a subsection of your project, which is particularly useful to ensure that a certain subset of pages features specific tags, uses a custom template, or is attributed to an author. ## Objective ### How it works The plugin scans the [`docs` directory][mkdocs.docs_dir] for `.meta.yml` files, and recursively merges the contents of those files with the metadata (front matter) of all pages that are contained in the same folder and all subfolders. For example, if you want to add the tag <span class="md-tag">Example</span> to multiple pages, use: ``` yaml title=".meta.yml" tags: - Example ``` Now, given the following directory layout, if you store the file in the folder named `example`, all pages in that folder receive the tag, while all pages outside of the folder remain unaffected: ``` { .sh .no-copy hl_lines="4-8" } . ├─ docs/ │ ├─ ... │ ├─ example/ │ │ ├─ .meta.yml │ │ ├─ a.md │ │ ├─ ... │ │ └─ z.md │ └─ ... └─ mkdocs.yml ``` When combining metadata, lists and dictionaries are recursively merged, which means you can append values to a list and add or set specific properties in a dictionary on arbitrary levels. ### When to use it While the plugin itself doesn't offer much functionality beyond adding and merging metadata, it is a perfect companion for many of the other built-in plugins that Material for MkDocs offers. Some of the most powerful combinations of the meta plugin and other built-in plugins are: <div class="grid cards" markdown> - :material-share-circle:   __[Built-in social plugin][social]__ --- The meta plugin can be used to [change the layout] for social cards or [change specific layout options] like [background] or [color] for a subset of pages. ``` yaml title=".meta.yml" social: cards_layout: default/variant ``` - :material-newspaper-variant-outline:   __[Built-in blog plugin][blog]__ --- The meta plugin allows to automatically associate blog posts with specific [authors] and [categories], ensuring that blog posts are always correctly annotated. ``` yaml title=".meta.yml" authors: - squidfunk ``` - :material-tag-text:   __[Built-in tags plugin][tags]__ --- The meta plugin makes it possible to ensure that subsections of your project are annotated with [specific tags], so they can't be forgotten when adding pages. ``` yaml title=".meta.yml" tags: - Example ``` - :material-magnify:   __[Built-in search plugin][search]__ --- The meta plugin makes it easy to [boost] specific sections in search results or to [exclude] them entirely from being indexed, giving more granular control over search. ``` yaml title=".meta.yml" search: exclude: true ``` </div> [social]: social.md [change the layout]: social.md#meta.social.cards_layout [change specific layout options]: social.md#meta.social.cards_layout_options [background]: social.md#option.background_color [color]: social.md#option.color [blog]: blog.md [authors]: blog.md#meta.authors [categories]: blog.md#meta.categories [tags]: tags.md [specific tags]: tags.md#meta.tags [search]: search.md [exclude]: search.md#meta.search.exclude [boost]: search.md#meta.search.boost ## Configuration <!-- md:version 9.6.0 --> <!-- md:plugin [meta] – built-in --> <!-- md:flag experimental --> As with all [built-in plugins], getting started with the meta plugin is straightforward. Just add the following lines to `mkdocs.yml`, and start applying metadata for multiple pages at once: ``` yaml plugins: - meta ``` The meta plugin is included with Material for MkDocs and doesn't need to be installed. [meta]: meta.md [built-in plugins]: index.md ### General The following settings are available: --- #### <!-- md:setting config.enabled --> <!-- md:version 9.6.0 --> <!-- md:default `true` --> Use this setting to enable or disable the plugin when [building your project]. It's normally not necessary to specify this setting, but if you want to disable the plugin, use: ``` yaml plugins: - meta: enabled: false ``` [building your project]: ../creating-your-site.md#building-your-site ### Meta file The following settings are available for meta files: --- #### <!-- md:setting config.meta_file --> <!-- md:version 9.6.0 --> <!-- md:default `.meta.yml` --> Use this setting to change the meta file name the plugin will look for when scanning the [`docs` directory][mkdocs.docs_dir]. It's normally not necessary to change this setting, but if you want to change it, use: ``` yaml plugins: - meta: meta_file: .meta.yml ``` The provided path is resolved from the [`docs` directory][mkdocs.docs_dir] recursively. �������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/plugins/offline.md�������������������������������������������������������0000664�0000000�0000000�00000011477�14753064456�0021213�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- title: Built-in offline plugin icon: material/connection --- # Built-in offline plugin [MkDocs][mkdocs] is one of the few frameworks that allow to build offline-capable documentation that can be directly viewed by the user – no server needed. With the offline plugin, you can distribute the [`site` directory][mkdocs.site_dir] as a downloadable `.zip` file while retaining most interactive functionality. ## Objective ### How it works After [building your project], switch to the [`site` directory][mkdocs.site_dir] and open `index.html` in your browser – you're now viewing your documentation from your local file system! Most browsers will denote this by showing `file://` in the address bar. However, you'll realize that the site search is gone. Material for MkDocs offers many interactive features, some of which will not work from the local file system due to the restrictions of modern browsers. More specifically and technically, all calls to the [Fetch API] will error with a message like: ``` Cross origin requests are only supported for protocol schemes: http, [...] ``` While browsers impose those restriction for security reasons, it reduces the interactivity of your project. The offline plugin makes sure that site search keeps working by moving the search index to a JavaScript file, and leveraging @squidfunk's [iframe-worker] shim. Additionally, the plugin automatically disables the [`use_directory_urls`] [mkdocs.use_directory_urls] setting, ensuring that users can open your documentation directly from the local file system. There are some [limitations]. [building your project]: ../creating-your-site.md#building-your-site [Fetch API]: https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API [iframe-worker]: https://github.com/squidfunk/iframe-worker [limitations]: #limitations ### When to use it As the name already indicates, the plugin should only be used when you're [building your project] for offline distribution. It's also good to know, that the offline plugin plays nicely with the following other plugins, helping to create even better offline-capable documentation: <div class="grid cards" markdown> - :material-shield-account:   __[Built-in privacy plugin][privacy]__ --- The privacy plugin makes it easy to use external assets when building for offline usage, as it automatically downloads them for distribution with your documentation. --- __Your documentation can work without connectivity to the internet[^1]__ - :material-rabbit:   __[Built-in optimize plugin][optimize]__ --- The optimize plugin automatically identifies and optimizes all media files that you reference in your project by using compression and conversion techniques. --- __Your documentation can be distributed as a smaller `.zip` download__ </div> [^1]: You might wonder why the [privacy plugin][privacy] is necessary to build truly offline-capable documentation with the offline plugin. While it's certainly possible to also add support for downloading external assets to the offline plugin, this functionality is already fully implemented in the privacy plugin and is its very raison d'être. Material for MkDocs follows a modular approach for its plugin system – many of the plugins work perfectly together and enhance each others functionalities, allowing to solve complex problems with a few lines of configuration. [privacy]: privacy.md [optimize]: optimize.md ## Configuration <!-- md:version 9.0.0 --> <!-- md:plugin [offline] – built-in --> As with all [built-in plugins], getting started with the offline plugin is straightforward. Just add the following lines to `mkdocs.yml`, and start building offline-capable documentation: ``` yaml plugins: - offline ``` The offline plugin is built into Material for MkDocs and doesn't need to be installed. [offline]: offline.md [built-in plugins]: index.md ### General The following settings are available: --- #### <!-- md:setting config.enabled --> <!-- md:version 9.0.0 --> <!-- md:default `true` --> Use this setting to enable or disable the plugin when [building your project]. If you want to build online- as well as offline-capable documentation, it's a good idea to use an [environment variable][mkdocs.env]: ``` yaml plugins: - offline: enabled: !ENV [OFFLINE, false] ``` ## Limitations When enabling the offline plugin, make sure to disable the following settings, as they make use of the [Fetch API] which will error when invoked from the local file system: - [Instant loading] - [Site analytics] - [Versioning] - [Comment systems] [Instant loading]: ../setup/setting-up-navigation.md#instant-loading [Site analytics]: ../setup/setting-up-site-analytics.md [Versioning]: ../setup/setting-up-versioning.md [Comment systems]: ../setup/adding-a-comment-system.md �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/plugins/optimize.md������������������������������������������������������0000664�0000000�0000000�00000026741�14753064456�0021431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- title: Built-in optimize plugin icon: material/rabbit --- # Built-in optimize plugin The optimize plugin automatically identifies and optimizes all media files when [building your project] by using common compression and conversion techniques. As a result, your site loads significantly faster and yields better rankings in search engines. --- <!-- md:sponsors --> __Sponsors only__ – this plugin is currently reserved to [our awesome sponsors]. [building your project]: ../creating-your-site.md#building-your-site [our awesome sponsors]: ../insiders/index.md ## Objective ### How it works The plugin scans the [`docs` directory][mkdocs.docs_dir] for media files and assets, optimizing them automatically in order to reduce the final size of the [`site` directory][mkdocs.site_dir]. This leads to faster loading times as you ship less bytes to your users, as well as a smaller download for [offline-capable documentation]. Optimized images are [intelligently cached][intelligent caching], which is why the plugin will only optimize media files that changed since the last build. This makes it possible to swap out or update images, without having to worry about optimizing them, or even worse, forgetting to do so. In order to optimize media files, a few [dependencies] need to be available on your system. [offline-capable documentation]: ../setup/building-for-offline-usage.md [dependencies]: #configuration ### When to use it It's generally recommended to use the plugin, as media files are optimized automatically without the need for intervention, ensuring that your site loads as fast as possible. Optimized media files are one of the key components for a high and consistent ranking in search engines. Additionally, the plugin can be combined with other built-in plugins that Material for MkDocs offers, in order to create sophisticated build pipelines tailored to your project: <div class="grid cards" markdown> - :material-shield-account:   __[Built-in privacy plugin][privacy]__ --- The privacy plugin makes it easy to use unoptimized external assets, passing them to the optimize plugin before copying them to the [`site` directory] [mkdocs.site_dir]. --- __External media files can be automatically downloaded and optimized__ - :material-connection:   __[Built-in offline plugin][offline]__ --- The offline plugin adds support for building offline-capable documentation, so you can distribute the [`site` directory][mkdocs.site_dir] as a `.zip` file that can be downloaded. --- __Your documentation can be distributed as a smaller `.zip` download__ </div> [privacy]: privacy.md [offline]: offline.md ## Configuration <!-- md:sponsors --> <!-- md:version insiders-4.29.0 --> <!-- md:plugin [optimize] – built-in --> <!-- md:flag multiple --> <!-- md:flag experimental --> As with all [built-in plugins], getting started with the optimize plugin is straightforward. Just add the following lines to `mkdocs.yml`, and observe how media files are optimized automatically: ``` yaml plugins: - optimize ``` The optimize plugin is built into Material for MkDocs and doesn't need to be installed. However, in order to optimize all media files, it's necessary to install the dependencies for [image processing], if they're not already available on your system. The linked guide includes instructions for several operating systems and mentions some alternative environments. [optimize]: optimize.md [built-in plugins]: index.md [image processing]: requirements/image-processing.md ### General The following settings are available: --- #### <!-- md:setting config.enabled --> <!-- md:sponsors --> <!-- md:version insiders-4.29.0 --> <!-- md:default `true` --> Use this setting to enable or disable the plugin when [building your project]. If you want to disable the plugin, e.g., for local builds, you can use an [environment variable][mkdocs.env] in `mkdocs.yml`: ``` yaml plugins: - optimize: enabled: !ENV [CI, false] ``` This configuration enables the plugin only during continuous integration (CI). --- #### <!-- md:setting config.concurrency --> <!-- md:sponsors --> <!-- md:version insiders-4.29.0 --> <!-- md:default available CPUs - 1 --> With more CPUs available, the plugin can do more work in parallel, and thus complete media file optimization faster. If you want to disable concurrent processing completely, use: ``` yaml plugins: - optimize: concurrency: 1 ``` By default, the plugin uses all available CPUs - 1 with a minimum of 1. ### Caching The plugin implements an [intelligent caching] mechanism, ensuring that a media file or asset is only passed through the optimization pipeline when its contents change. If you swap out or update an image, the plugin detects it and updates the optimized version of the media file. The following settings are available for caching: [intelligent caching]: requirements/caching.md --- #### <!-- md:setting config.cache --> <!-- md:sponsors --> <!-- md:version insiders-4.29.0 --> <!-- md:default `true` --> Use this setting to instruct the plugin to bypass the cache, in order to re-optimize all media files, even though the cache may not be stale. It's normally not necessary to specify this setting, except for when debugging the plugin itself. Caching can be disabled with: ``` yaml plugins: - optimize: cache: false ``` --- #### <!-- md:setting config.cache_dir --> <!-- md:sponsors --> <!-- md:version insiders-4.29.0 --> <!-- md:default `.cache/plugin/optimize` --> It is normally not necessary to specify this setting, except for when you want to change the path within your root directory where media files are cached. If you want to change it, use: ``` yaml plugins: - optimize: cache_dir: my/custom/dir ``` If you're using [multiple instances] of the plugin, it can be a good idea to set different cache directories for both instances, so that they don't interfere with each other. [multiple instances]: index.md#multiple-instances ### Optimization Documentation often makes use of screenshots or diagrams for better visualization of things, both of which are prime candidates for optimization. The plugin automatically optimizes images using [pngquant] for `.png` files, and [Pillow] for `.jpg` files. The following settings are available for optimization: [pngquant]: https://pngquant.org/ [Pillow]: https://pillow.readthedocs.io/ --- #### <!-- md:setting config.optimize --> <!-- md:sponsors --> <!-- md:version insiders-4.41.0 --> <!-- md:default `true` --> Use this setting to enable or disable media file optimization. Currently, the plugin's sole purpose is to optimize media files, so it's equivalent to the [`enabled`][config.enabled] setting, but in the near future, other features might be added. If you want to disable optimization, use: ``` yaml plugins: - optimize: optimize: false ``` --- #### <!-- md:setting config.optimize_png --> <!-- md:sponsors --> <!-- md:version insiders-4.29.0 --> <!-- md:default `true` --> Use this setting to enable or disable the optimization of `.png` files. It's normally not necessary to specify this setting, but if you want to disable the optimization of `.png` files, use: ``` yaml plugins: - optimize: optimize_png: false ``` --- #### <!-- md:setting config.optimize_png_speed --> <!-- md:sponsors --> <!-- md:version insiders-4.29.0 --> <!-- md:default `3` of `1-10` --> Use this setting to specify the speed/quality tradeoff that [pngquant] applies when optimizing `.png` files. The lower the number, the more aggressively [pngquant] will try to optimize: === "Slower <small>smaller</small>" ``` yaml plugins: - optimize: optimize_png_speed: 1 ``` === "Faster <small>larger</small>" ``` yaml plugins: - optimize: optimize_png_speed: 10 ``` A factor of `10` has 5% lower quality, but is 8x faster than the default `3`. --- #### <!-- md:setting config.optimize_png_strip --> <!-- md:sponsors --> <!-- md:version insiders-4.29.0 --> <!-- md:default `true` --> Use this setting to specify whether [pngquant] should strip optional metadata from `.png` files that are not required to display the image, e.g., [EXIF]. If you want to preserve metadata, use: ``` yaml plugins: - optimize: optimize_png_strip: false ``` [EXIF]: https://en.wikipedia.org/wiki/Exif --- #### <!-- md:setting config.optimize_jpg --> <!-- md:sponsors --> <!-- md:version insiders-4.29.0 --> <!-- md:default `true` --> Use this setting to enable or disable the optimization of `.jpg` files. It's normally not necessary to specify this setting, but if you want to disable the optimization of `.jpg` files, use: ``` yaml plugins: - optimize: optimize_jpg: false ``` --- #### <!-- md:setting config.optimize_jpg_quality --> <!-- md:sponsors --> <!-- md:version insiders-4.29.0 --> <!-- md:default `60` of `0-100` --> Use this setting to specify the image quality that [Pillow] applies when optimizing `.jpg` files. If the images look blurry, it's a good idea to fine-tune and change this setting: ``` yaml plugins: - optimize: optimize_jpg_quality: 75 ``` --- #### <!-- md:setting config.optimize_jpg_progressive --> <!-- md:sponsors --> <!-- md:version insiders-4.29.0 --> <!-- md:default `true` --> Use this setting to specify whether [Pillow] should use progressive encoding when optimizing `.jpg` files, rendering faster on slow connections. If you want to disable progressive encoding, use: ``` yaml plugins: - optimize: optimize_jpg_progressive: false ``` [progressive encoding]: https://medium.com/hd-pro/jpeg-formats-progressive-vs-baseline-73b3938c2339 --- #### <!-- md:setting config.optimize_include --> <!-- md:sponsors --> <!-- md:version insiders-4.41.0 --> <!-- md:default none --> Use this setting to enable media file optimization for specific directories of your project, e.g., when using [multiple instances] of the plugin to optimize media files differently: ``` yaml plugins: - optimize: optimize_include: - screenshots/* ``` This configuration enables optimization for all media files that are contained in the `screenshots` folder and its subfolders inside the [`docs` directory] [mkdocs.docs_dir]. --- #### <!-- md:setting config.optimize_exclude --> <!-- md:sponsors --> <!-- md:version insiders-4.41.0 --> <!-- md:default none --> Use this setting to disable media file optimization for specific directories of your project, e.g., when using [multiple instances] of the plugin to optimize media files differently: ``` yaml plugins: - social: optimize_exclude: - vendor/* ``` This configuration disables optimization for all media files that are contained in the `vendor` folder and its subfolders inside the [`docs` directory] [mkdocs.docs_dir]. ### Reporting The following settings are available for reporting: --- #### <!-- md:setting config.print_gain --> <!-- md:sponsors --> <!-- md:version insiders-4.29.0 --> <!-- md:default `true` --> Use this setting to control whether the plugin should print the number of bytes gained after optimizing each file. If you want to disable this behavior, use: ``` yaml plugins: - optimize: print_gain: false ``` --- #### <!-- md:setting config.print_gain_summary --> <!-- md:sponsors --> <!-- md:version insiders-4.29.0 --> <!-- md:default `true` --> Use this setting to control whether the plugin should print the total number of bytes gained after optimizing all files. If you want to disable this behavior, use: ``` yaml plugins: - optimize: print_gain_summary: false ``` �������������������������������mkdocs-material-9.6.4/docs/plugins/privacy.md�������������������������������������������������������0000664�0000000�0000000�00000031766�14753064456�0021251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- title: Built-in privacy plugin icon: material/shield-account --- # Built-in privacy plugin The privacy plugin offers a streamlined solution for automatically self-hosting external assets. With just a single line of configuration, the plugin can automatically identify and download external assets, making GDPR compliance as effortless as it can possibly be. ## Objective ### How it works The plugin scans the generated HTML for external assets, i.e., scripts, style sheets, images, and web fonts, downloads them, stores them in the [`site` directory][mkdocs.site_dir] and replaces all references with links to the downloaded copies for effortless self-hosting. For example: ``` html <script src="https://example.com/script.js"></script> ``` This external script is downloaded, and the link is replaced with: ``` html <script src="assets/external/example.com/script.js"></script> ``` Of course, scripts and style sheets can reference further external assets, which is why this process is repeated recursively until no further external assets are detected: - Scripts are scanned for further scripts, style sheets and JSON files - Style sheets are scanned for images and web fonts Additionally, hints like [`preconnect`][preconnect], used to reduce latency when requesting external assets, are removed from the output, as they're not necessary when self-hosting. After the plugin has done it's work, your project will be free of requests to external services. There are some [limitations]. [preconnect]: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel/preconnect [limitations]: #limitations ### When to use it The plugin was developed to make compliance with the 2018 European __General Data Protection Regulation__ (GDPR) as simple as possible, while retaining the flexibility and power that Material for MkDocs offers, like for example its tight integration with [Google Fonts]. But, that's only the start. For example, if your project includes a lot of images, enabling the plugin allows to move them outside of your repository, as the plugin will automatically download and store them in the [`site` directory] [mkdocs.site_dir] when [building your project]. Even more interestingly, the plugin can be combined with other built-in plugins that Material for MkDocs offers, in order to create sophisticated build pipelines tailored to your project: <div class="grid cards" markdown> - :material-rabbit:   __[Built-in optimize plugin][optimize]__ --- The optimize plugin allows to optimize all downloaded external assets detected by the privacy plugin by using compression and conversion techniques. --- __External media files are automatically downloaded and optimized__ - :material-connection:   __[Built-in offline plugin][offline]__ --- The offline plugin adds support for building [offline-capable documentation], so you can distribute the [`site` directory][mkdocs.site_dir] as a `.zip` file that can be downloaded. --- __Your documentation can work without connectivity to the internet__ </div> [Google Fonts]: ../setup/changing-the-fonts.md [building your project]: ../creating-your-site.md#building-your-site [optimize]: optimize.md [offline]: offline.md [offline-capable documentation]: ../setup/building-for-offline-usage.md ## Configuration <!-- md:version 9.5.0 --> <!-- md:plugin [privacy] – built-in --> <!-- md:flag multiple --> <!-- md:flag experimental --> As with all [built-in plugins], getting started with the privacy plugin is straightforward. Just add the following lines to `mkdocs.yml`, and start effortlessly self-hosting external assets: ``` yaml plugins: - privacy ``` The privacy plugin is built into Material for MkDocs and doesn't need to be installed. [privacy]: privacy.md [built-in plugins]: index.md ### General The following settings are available: --- #### <!-- md:setting config.enabled --> <!-- md:version 9.5.0 --> <!-- md:default `true` --> Use this setting to enable or disable the plugin when [building your project]. If you want to disable the plugin, e.g., for local builds, you can use an [environment variable][mkdocs.env] in `mkdocs.yml`: ``` yaml plugins: - privacy: enabled: !ENV [CI, false] ``` This configuration enables the plugin only during continuous integration (CI). --- #### <!-- md:setting config.concurrency --> <!-- md:version 9.5.0 --> <!-- md:default available CPUs - 1 --> With more CPUs available, the plugin can do more work in parallel, and thus complete handling of external assets faster. If you want to disable concurrent processing completely, use: ``` yaml plugins: - privacy: concurrency: 1 ``` By default, the plugin uses all available CPUs - 1 with a minimum of 1. ### Caching The plugin implements an [intelligent caching] mechanism, ensuring that external assets are only downloaded when they're not already contained in the cache. While the initial build might take some time, it's a good idea to use caching, as it will speed up consecutive builds. The following settings are available for caching: [intelligent caching]: requirements/caching.md --- #### <!-- md:setting config.cache --> <!-- md:version 9.5.0 --> <!-- md:default `true` --> Use this setting to instruct the plugin to bypass the cache, in order to re-schedule downloads for all external assets, even though the cache may not be stale. It's normally not necessary to specify this setting, except for when debugging the plugin itself. Caching can be disabled with: ``` yaml plugins: - privacy: cache: false ``` --- #### <!-- md:setting config.cache_dir --> <!-- md:version 9.5.0 --> <!-- md:default `.cache/plugin/privacy` --> It is normally not necessary to specify this setting, except for when you want to change the path within your root directory where downloaded copies are cached. If you want to change it, use: ``` yaml plugins: - privacy: cache_dir: my/custom/dir ``` If you're using [multiple instances] of the plugin, it can be a good idea to set different cache directories for both instances, so that they don't interfere with each other. [multiple instances]: index.md#multiple-instances ### Logging The following settings are available for logging: --- #### <!-- md:setting config.log --> <!-- md:sponsors --> <!-- md:version insiders-4.50.0 --> <!-- md:default `true` --> Use this setting to control whether the plugin should display log messages when building your site. While not being recommended, you can disable logging with: ``` yaml plugins: - privacy: log: false ``` --- #### <!-- md:setting config.log_level --> <!-- md:sponsors --> <!-- md:version insiders-4.50.0 --> <!-- md:default `info` --> Use this setting to control the log level that the plugin should employ when encountering errors, which requires that the [`log`][config.log] setting is enabled. The following log levels are available: === "`error`" ``` yaml plugins: - privacy: log_level: error ``` Only errors are reported. === "`warn`" ``` yaml plugins: - privacy: log_level: warn ``` Errors and warnings are reported, terminating the build in [`strict`][mkdocs.strict] mode. This includes warnings when symlinks cannot be created due to a lack of permissions on Windows systems (#6550). === "`info`" ``` yaml plugins: - privacy: log_level: info ``` Errors, warnings and informational messages are reported, including which assets were successfully downloaded by the plugin. === "`debug`" ``` yaml plugins: - privacy: log_level: debug ``` All messages are reported, including debug messages, if and only if MkDocs was started with the `--verbose` flag. Note that this will print a lot of messages and is only useful for debugging. ### External assets The following settings are available for external assets: --- #### <!-- md:setting config.assets --> <!-- md:version 9.5.0 --> <!-- md:default `true` --> Use this setting to control whether the plugin should download external assets. If you only want the plugin to process [external links], you can disable handling of external assets with: ``` yaml plugins: - privacy: assets: false ``` [external links]: #external-links --- #### <!-- md:setting config.assets_fetch --> <!-- md:version 9.5.0 --> <!-- md:default `true` --> Use this setting to control whether the plugin should downloads or only report external assets when they're encountered. If you already self-host all external assets, this setting can be used as a safety net to detect links to external assets placed by the author in pages: ``` yaml plugins: - privacy: assets_fetch: true ``` --- #### <!-- md:setting config.assets_fetch_dir --> <!-- md:version 9.5.0 --> <!-- md:default `assets/external` --> It is normally not necessary to specify this setting, except for when you want to change the path within the [`site` directory][mkdocs.site_dir] where external assets are stored. If you want to change it, use: ``` yaml plugins: - privacy: assets_fetch_dir: my/custom/dir ``` This configuration stores the downloaded copies at `my/custom/dir` in the [`site` directory][mkdocs.site_dir]. --- #### <!-- md:setting config.assets_include --> <!-- md:sponsors --> <!-- md:version insiders-4.37.0 --> <!-- md:default none --> Use this setting to enable downloading of external assets for specific origins, e.g., when using [multiple instances] of the plugin to fine-tune processing of external assets for different origins: ``` yaml plugins: - privacy: assets_include: - unsplash.com/* ``` --- #### <!-- md:setting config.assets_exclude --> <!-- md:sponsors --> <!-- md:version insiders-4.37.0 --> <!-- md:default none --> Use this setting to disable downloading of external assets for specific origins, e.g., when using [multiple instances] of the plugin to fine-tune processing of external assets for different origins: ``` yaml plugins: - privacy: assets_exclude: # (1)! - unpkg.com/mathjax@3/* - giscus.app/* ``` 1. [MathJax] loads web fonts for typesetting of mathematical content through relative URLs, and thus cannot be automatically bundled by the privacy plugin. [MathJax can be self-hosted]. [Giscus], which we recommend to use as a [comment system], uses a technique called code-splitting to load only the code that is necessary, which is implemented via relative URLs. [Giscus can be self-hosted] as well. [MathJax]: ../reference/math.md [MathJax can be self-hosted]: https://docs.mathjax.org/en/latest/web/hosting.html [Giscus]: https://giscus.app/ [comment system]: ../setup/adding-a-comment-system.md [Giscus can be self-hosted]: https://github.com/giscus/giscus/blob/main/SELF-HOSTING.md --- ### External links The following settings are available for external links: --- #### <!-- md:setting config.links --> <!-- md:sponsors --> <!-- md:version insiders-4.37.0 --> <!-- md:default `true` --> Use this setting to instruct the plugin to parse and process external links to annotate them for [improved security], or to automatically add additional attributes to external links. If you want to disable processing of external links, use: ``` yaml plugins: - privacy: links: false ``` [improved security]: https://developer.chrome.com/en/docs/lighthouse/best-practices/external-anchors-use-rel-noopener/ --- #### <!-- md:setting config.links_attr_map --> <!-- md:sponsors --> <!-- md:version insiders-4.37.0 --> <!-- md:default none --> Use this setting to specify additional attributes that should be added to external links, for example, to add `target="_blank"` to all external links so they open in a new tab: ``` yaml plugins: - privacy: links_attr_map: target: _blank ``` --- #### <!-- md:setting config.links_noopener --> <!-- md:sponsors --> <!-- md:version insiders-4.37.0 --> <!-- md:default `true` --> It is normally not recommended to change this setting, as it will automatically annotate external links that open in a new window with `rel="noopener"` for [improved security]: ``` yaml plugins: - privacy: links_noopener: true ``` ## Limitations ### Dynamic URLs Dynamically created URLs as part of scripts are not detected, and thus cannot be downloaded automatically, as the plugin does not execute scripts – it only detects fully qualified URLs for downloading and replacement. In short, don't do this: ``` js const host = "https://example.com" const path = `${host}/script.js` ``` Instead, always use fully qualified URLs: ``` js const url ="https://example.com/script.js" ``` ### Embedded HTML By default, embedded HTML files (e.g. in iframes) are not scanned for external assets. This is a limitation of MkDocs, as it considers `.html` files to be templates, which must be explicitly listed under [`extra_templates`][mkdocs.extra_templates]. Thus, to self-host external assets of an embedded HTML file: ``` yaml extra_templates: - iframe.html ``` Note that the path to `iframe.html` is relative to the [`docs_dir`][mkdocs.docs_dir] directory. ����������mkdocs-material-9.6.4/docs/plugins/projects.md������������������������������������������������������0000664�0000000�0000000�00000027723�14753064456�0021423�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- title: Built-in projects plugin icon: material/folder-open --- # Built-in projects plugin The projects plugin adds the ability to split your main project into multiple distinct projects, build them concurrently and preview them together as one. This is particularly useful when creating a multi-language project, but can also be used to split very large projects into smaller parts. --- <!-- md:sponsors --> __Sponsors only__ – this plugin is currently reserved to [our awesome sponsors]. [our awesome sponsors]: ../insiders/index.md ## Objective ### How it works The plugin scans the configured [`projects` directory][config.projects_dir] for `mkdocs.yml` files, identifies all nested projects and builds them concurrently. If not configured otherwise, the plugin expects that your project has the following directory layout, e.g. for a multi-language project: ``` { .sh .no-copy } . ├─ docs/ ├─ projects/ │ ├─ en/ │ │ ├─ docs/ │ │ └─ mkdocs.yml │ └─ de/ │ ├─ docs/ │ └─ mkdocs.yml └─ mkdocs.yml ``` One of the most useful and interesting features of the plugin is that it allows [previewing your site] from the main project, while still being able to preview and build each project individually. This is especially useful for multi-language projects. If, when [previewing your site], you change a file in one of the projects, the plugin only rebuilds this project and makes sure that MkDocs will also reload the associated files. This also creates the opportunity for splitting your main project into several projects for a better editing experience. There are some [limitations], but we're working hard to remove them. [previewing your site]: ../creating-your-site.md#previewing-as-you-write [limitations]: #limitations ### When to use it The plugin came into existence because we needed a convenient and scalable method to build our [examples] repository, which features many self-contained and runnable projects that users can download and use as a basis when bootstrapping a new project or [creating a reproduction]. When you want to create a multi-language project, or have a very large existing project, you might consider using the plugin, as it makes managing, editing and building more comfortable. [examples]: https://github.com/mkdocs-material/examples [creating a reproduction]: ../guides/creating-a-reproduction.md ## Configuration <!-- md:sponsors --> <!-- md:version insiders-4.38.0 --> <!-- md:plugin [projects] – built-in --> <!-- md:flag experimental --> In order to get started with the projects plugin, just add the following lines to `mkdocs.yml`, and split your main project into several distinct projects that can be built concurrently: ``` yaml plugins: - projects ``` The projects plugin is built into Material for MkDocs and doesn't need to be installed. [projects]: projects.md ### General The following settings are available: --- #### <!-- md:setting config.enabled --> <!-- md:sponsors --> <!-- md:version insiders-4.38.0 --> <!-- md:default `true` --> Use this setting to enable or disable the plugin when [building your project]. If you want to disable the plugin, e.g., for local builds, you can use an [environment variable][mkdocs.env] in `mkdocs.yml`: ``` yaml plugins: - projects: enabled: !ENV [CI, false] ``` This configuration enables the plugin only during continuous integration (CI). [building your project]: ../creating-your-site.md#building-your-site --- #### <!-- md:setting config.concurrency --> <!-- md:sponsors --> <!-- md:version insiders-4.38.0 --> <!-- md:default available CPUs - 1 --> With more CPUs available, the plugin can do more work in parallel, and thus build projects faster. If you want to disable concurrent processing completely, use: ``` yaml plugins: - projects: concurrency: 1 ``` By default, the plugin uses all available CPUs - 1 with a minimum of 1. ### Caching The plugin implements an [intelligent caching] mechanism, ensuring that a project is only rebuilt when its contents change. While the initial build might take some time, it's a good idea to use caching, as it will speed up consecutive builds. The following settings are available for caching: [intelligent caching]: requirements/caching.md --- #### <!-- md:setting config.cache --> <!-- md:sponsors --> <!-- md:version insiders-4.38.0 --> <!-- md:default `true` --> Use this setting to instruct the plugin to bypass the cache, in order to rebuild all projects, even though the cache may not be stale. It's normally not necessary to specify this setting, except for when debugging the plugin itself. Caching can be disabled with: ``` yaml plugins: - projects: cache: false ``` --- #### <!-- md:setting config.cache_dir --> <!-- md:sponsors --> <!-- md:version insiders-4.38.0 --> <!-- md:default `.cache/plugin/projects` --> It is normally not necessary to specify this setting, except for when you want to change the path within your root directory where the metadata is cached. If you want to change it, use: ``` yaml plugins: - projects: cache_dir: my/custom/dir ``` ### Logging The following settings are available for logging: --- #### <!-- md:setting config.log --> <!-- md:sponsors --> <!-- md:version insiders-4.47.0 --> <!-- md:default `true` --> Use this setting to control whether the plugin should display log messages from projects when building your site. While not being recommended, you can disable logging with: ``` yaml plugins: - projects: log: false ``` --- #### <!-- md:setting config.log_level --> <!-- md:sponsors --> <!-- md:version insiders-4.47.0 --> <!-- md:default `info` --> Use this setting to control the log level that the plugin should employ when encountering errors, which requires that the [`log`][config.log] setting is enabled. The following log levels are available: === "`error`" ``` yaml plugins: - projects: log_level: error ``` Only errors are reported. === "`warn`" ``` yaml plugins: - projects: log_level: warn ``` Errors and warnings are reported, terminating the build in [`strict`][mkdocs.strict] mode. === "`info`" ``` yaml plugins: - projects: log_level: info ``` Errors, warnings and informational messages are reported. === "`debug`" ``` yaml plugins: - projects: log_level: debug ``` All messages are reported, including debug messages. ### Projects The following settings are available for projects: --- #### <!-- md:setting config.projects --> <!-- md:sponsors --> <!-- md:version insiders-4.38.0 --> <!-- md:default `true` --> Use this setting to enable or disable building of projects. Currently, the plugin's sole purpose is to build projects, so it's equivalent to the [`enabled`][config.enabled] setting, but in the future, other features might be added. If you want to disable building of projects, use: ``` yaml plugins: - projects: projects: false ``` --- #### <!-- md:setting config.projects_dir --> <!-- md:sponsors --> <!-- md:version insiders-4.38.0 --> <!-- md:default `projects` --> Use this setting to change the folder where your projects are located. It's normally not necessary to change this setting, but if you want to rename the folder or change its file system location, use: ``` yaml plugins: - projects: projects_dir: projects ``` Note that the [`projects` directory][config.projects_dir] is solely used for project organization – it is not included in project URLs, since projects are automatically hoisted by the plugin. The provided path is resolved from the root directory. --- #### <!-- md:setting config.projects_config_files --> <!-- md:sponsors --> <!-- md:version insiders-4.42.0 --> <!-- md:default `*/mkdocs.yml` --> Use this setting to change the location or name of configuration files the plugin will look for when scanning the [`projects` directory] [config.projects_dir]. Adjusting this setting can be necessary when the configuration files are located in subdirectories of projects, e.g. `docs/mkdocs.yml`: ``` yaml plugins: - projects: projects_config_files: "**/mkdocs.yml" # (1)! ``` 1. If all projects share the same location for their configuration files, e.g., `docs/mkdocs.yml`, it's advisable to fully qualify the path, as it's faster to resolve than a `**` glob pattern. ``` yaml plugins: - projects: projects_config_files: "*/docs/mkdocs.yml" ``` This configuration fits the following directory structure, which is quite common for projects using git submodules: ``` { .sh .no-copy } . ├─ docs/ ├─ projects/ │ ├─ git-submodule-a/ │ │ └─ docs/ │ │ └─ mkdocs.yml │ └─ git-submodule-b/ │ └─ docs/ │ └─ mkdocs.yml └─ mkdocs.yml ``` The provided path is resolved from the [`projects` directory] [config.projects_dir]. --- #### <!-- md:setting config.projects_config_transform --> <!-- md:sponsors --> <!-- md:version insiders-4.42.0 --> <!-- md:default none --> Use this setting to transform the configuration of each project as read from `mkdocs.yml` before it is built, which allows for adjusting the configuration of each project when building them together, but leave them untouched when building them individually: ``` yaml plugins: - projects: projects_config_transform: !!python/name:projects.transform ``` The provided module and function name are looked up in Python's [module search path]. You need to add your root directory to the search path when building your site, so Python can resolve it. The easiest way is to add the working directory to the [`PYTHONPATH`][PYTHONPATH] environment variable: ``` .sh export PYTHONPATH=. ``` !!! tip "How to define a configuration transformation function" The [`python/name`][python-name] tag is provided by [PyYAML] and must point to a valid module and function name within Python's [module search path]. The plugin passes the `project` and top-level `config` objects to the function. As an example, we can inherit the [`use_directory_urls`] [mkdocs.use_directory_urls] setting for all projects from the top-level configuration: ``` py title="projects/__init__.py" from mkdocs.config.defaults import MkDocsConfig # Transform project configuration def transform(project: MkDocsConfig, config: MkDocsConfig): project.use_directory_urls = config.use_directory_urls ``` [module search path]: https://docs.python.org/3/library/sys_path_init.html [PYTHONPATH]: https://docs.python.org/3/using/cmdline.html#envvar-PYTHONPATH [python-name]: https://pyyaml.org/wiki/PyYAMLDocumentation#yaml-tags-and-python-types [PyYAML]: https://pyyaml.org/ ### Hoisting The following settings are available for hoisting: --- #### <!-- md:setting config.hoisting --> <!-- md:sponsors --> <!-- md:version insiders-4.39.0 --> <!-- md:default `true` --> Use this setting to enable or disable hoisting of themes files to the main project. If you disable this setting, each project receives a copy of the theme's files, which can be considered redundant: ``` yaml plugins: - projects: hoisting: false ``` It's generally advisable to enable hoisting, as it yields faster deployments and faster loading of your project's sites, because the files are the same for all projects and can be deduplicated. ### Limitations The plugin is one of the latest additions to Material for MkDocs, which means it is rather young and has some limitations. We're working hard to remove them, and we're happy to receive feedback and learn about your requirements in ?5800. Current limitations are: - __Basic multi-language support only__: we'll be investigating how to provide better support for multi-language projects, allowing to easier interlink projects and switch between them. - __Separate search indexes and sitemaps__: currently, the projects are entirely separate, which means they will have separate search indexes and sitemaps. ���������������������������������������������mkdocs-material-9.6.4/docs/plugins/requirements/����������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0021760�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/plugins/requirements/caching.md������������������������������������������0000664�0000000�0000000�00000002416�14753064456�0023701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- icon: material/database-outline --- # Caching Some of the [built-in plugins] implement intelligent caching mechanisms, which massively speed up consecutive builds by reducing the amount of work that needs to be done. This guide explains how to configure caching in different environments. ## Prerequisites Caching is entirely optional but enabled by default. It can be disabled per plugin. If not configured otherwise, plugins will cache their data in the `.cache` folder in the root of your project. For this reason it's recommended to create a `.gitignore` file in the root of your project: ``` title=".gitignore" .cache ``` This ensures that cached files are not added to your git repository – something that is generally not recommended to do unless absolutely necessary. In some cases, you might need to check in cached files, e.g. when you need to pre-generate [social cards] locally, e.g., when you're not be able to install the image processing dependencies in your continuous integration (CI) environment. In this case, we recommend changing the `cache_dir` setting – something that all plugins that implement caching share – to a folder which you add to your git repository. [built-in plugins]: ../index.md [social cards]: ../../setup/setting-up-social-cards.md ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/plugins/requirements/image-processing.md���������������������������������0000664�0000000�0000000�00000024720�14753064456�0025543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- icon: material/image-sync-outline --- # Image processing Some of the [built-in plugins] depend on external libraries for efficient image processing, most notably the [social] plugin to generate [social cards], and the [optimize] plugin for applying [image optimization]. This guide explains how to install those libraries in different environments. [built-in plugins]: ../index.md [social]: ../social.md [social cards]: ../../setup/setting-up-social-cards.md [optimize]: ../optimize.md [image optimization]: ../../setup/building-an-optimized-site.md ## Dependencies The libraries for image processing are entirely optional, and only need to be installed if you want to use the [social] plugin or the [optimize] plugin. The libraries are listed under the `imaging` extra: ``` pip install "mkdocs-material[imaging]" ``` This will install compatible versions of the following packages: - [Pillow] - [CairoSVG] [Pillow]: https://pillow.readthedocs.io/ [CairoSVG]: https://cairosvg.org/ ### Cairo Graphics [Cairo Graphics] is a graphics library and dependency of [Pillow], which Material for MkDocs makes use of for generating [social cards] and performing [image optimization]. See the following section which explains how to install [Cairo Graphics] and its dependencies on your system: === ":material-apple: macOS" Make sure [Homebrew] is installed, which is a modern package manager for macOS. Next, use the following command to install all necessary dependencies: ``` brew install cairo freetype libffi libjpeg libpng zlib ``` === ":fontawesome-brands-windows: Windows" The easiest way to get up and running with the [Cairo Graphics] library is by installing it via [MSYS2], which is a software distribution and building platform for Windows. Run the following command inside of a MSYS2 shell: ``` pacman -S mingw-w64-ucrt-x86_64-cairo ``` MSYS2 provides the Cairo Graphics library in several different environments. The above command uses the [UCRT64] environment, as recommended by the MSYS2 developers. === ":material-linux: Linux" There are several package managers for Linux with varying availability per distribution. The [installation guide] explains how to install the [Cairo Graphics] library for your distribution: === ":material-ubuntu: Ubuntu" ``` apt-get install libcairo2-dev libfreetype6-dev libffi-dev libjpeg-dev libpng-dev libz-dev ``` === ":material-fedora: Fedora" ``` yum install cairo-devel freetype-devel libffi-devel libjpeg-devel libpng-devel zlib-devel ``` === ":fontawesome-brands-suse: openSUSE" ``` zypper install cairo-devel freetype-devel libffi-devel libjpeg-devel libpng-devel zlib-devel ``` The following environments come with a preinstalled version of [Cairo Graphics]: - [x] No installation needed in [Docker image] - [x] No installation needed in [GitHub Actions] (Ubuntu) [Cairo Graphics]: https://www.cairographics.org/ [Homebrew]: https://brew.sh/ [installation guide]: https://www.cairographics.org/download/ [MSYS2]: https://www.msys2.org/ [UCRT64]: https://www.msys2.org/docs/environments/ [Docker image]: https://hub.docker.com/r/squidfunk/mkdocs-material/ [GitHub Actions]: ../../publishing-your-site.md#with-github-actions ### pngquant [pngquant] is an excellent library for lossy PNG compression, and a direct dependency of the [built-in optimize plugin]. See the following section which explains how to install [pngquant] system: === ":material-apple: macOS" Make sure [Homebrew] is installed, which is a modern package manager for macOS. Next, use the following command to install all necessary dependencies: ``` brew install pngquant ``` === ":fontawesome-brands-windows: Windows" The easiest way to get [pngquant] is by installing it via [MSYS2], which is a software distribution and building platform for Windows. Run the following command inside of a MSYS2 shell: ``` pacman -S mingw-w64-ucrt-x86_64-pngquant ``` === ":material-linux: Linux" All popular Linux distributions, regardless of package manager, should allow to install [pngquant] with the bundled package manager. For example, on Ubuntu, [pngquant] can be installed with: ``` apt-get install pngquant ``` The same is true for `yum` and `zypper`. The following environments come with a preinstalled version of [pngquant]: - [x] No installation needed in [Docker image] [pngquant]: https://pngquant.org/ [built-in optimize plugin]: ../../plugins/optimize.md [pngquant-winbuild]: https://github.com/jibsen/pngquant-winbuild ## Troubleshooting ### Cairo library was not found After following the installation guide above it may happen that you still get the following error: ```bash no library called "cairo-2" was found no library called "cairo" was found no library called "libcairo-2" was found cannot load library 'libcairo.so.2': error 0x7e. Additionally, ctypes.util.find_library() did not manage to locate a library called 'libcairo.so.2' cannot load library 'libcairo.2.dylib': error 0x7e. Additionally, ctypes.util.find_library() did not manage to locate a library called 'libcairo.2.dylib' cannot load library 'libcairo-2.dll': error 0x7e. Additionally, ctypes.util.find_library() did not manage to locate a library called 'libcairo-2.dll' ``` This means that the [`cairosvg`][PyPi CairoSVG] package was installed, but the underlying [`cairocffi`][PyPi CairoCFFI] dependency couldn't [find][cffi-dopen] the installed library. Depending on the operating system the library lookup process is different: !!! tip Before proceeding remember to fully restart any open Terminal windows, and their parent hosts like IDEs to reload any environmental variables, which were altered during the installation process. This might be the quick fix. === ":material-apple: macOS" On macOS the library lookup checks inside paths defined in [dyld][osx-dyld]. Additionally each library `name` is checked in [three variants][find-library-macOS] with the `libname.dylib`, `name.dylib` and `name.framework/name` format. [Homebrew] should set every needed variable to point at the installed library directory, but if that didn't happen, you can use the debug script below to see what paths are looked up. A [known workaround][cffi-issue] is to add the Homebrew lib path directly before running MkDocs: ```bash export DYLD_FALLBACK_LIBRARY_PATH=/opt/homebrew/lib ``` View source code of [cairo-lookup-macos.py] ```bash title="Python Debug macOS Script" curl "https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/includes/debug/cairo-lookup-macos.py" | python - ``` === ":fontawesome-brands-windows: Windows" On Windows the library lookup checks inside the paths defined in the environmental `PATH` variable. Additionally each library `name` is checked in [two variants][find-library-Windows] with the `name` and `name.dll` format. The default binary and shared library path for the [UCRT64] environment of [MSYS2], in which the packages were installed using the above commands, is: ```powershell C:\msys64\ucrt64\bin ``` Use the debug script below to check if the path is included. If it isn't then: 1. Press ++windows+r++. 2. Run the `SystemPropertiesAdvanced` applet. 3. Select "Environmental Variables" at the bottom. 4. Add the whole path to the above directory to your `Path` variable. 5. Click OK on all open windows to apply changes. 6. Fully restart any open Terminal windows and their parent hosts like IDEs. ```powershell title="You can also list paths using PowerShell" $env:Path -split ';' ``` View source code of [cairo-lookup-windows.py] ```powershell title="PowerShell - Python Debug Windows Script" (Invoke-WebRequest "https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/includes/debug/cairo-lookup-windows.py").Content | python - ``` === ":material-linux: Linux" On Linux the library lookup can [differ greatly][find-library-Linux] and is dependent from the installed distribution. For tested Ubuntu and Manjaro systems Python runs shell commands to check which libraries are available in [`ldconfig`][ubuntu-ldconfig], in the [`gcc`][ubuntu-gcc]/`cc` compiler, and in [`ld`][ubuntu-ld]. You can extend the `LD_LIBRARY_PATH` environmental variable with an absolute path to a library directory containing `libcairo.so` etc. Run this directly before MkDocs: ```bash export LD_LIBRARY_PATH=/absolute/path/to/lib:$LD_LIBRARY_PATH ``` You can also modify the `/etc/ld.so.conf` file. The Python script below shows, which function is being run to find installed libraries. You can check the source to find out what specific commands are executed on your system during library lookup. View source code of [cairo-lookup-linux.py] ```bash title="Python Debug Linux Script" curl "https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/includes/debug/cairo-lookup-linux.py" | python - ``` [PyPi CairoSVG]: https://pypi.org/project/CairoSVG [PyPi CairoCFFI]: https://pypi.org/project/CairoCFFI [osx-dyld]: https://www.unix.com/man-page/osx/1/dyld/ [ubuntu-ldconfig]: https://manpages.ubuntu.com/manpages/focal/en/man8/ldconfig.8.html [ubuntu-ld]: https://manpages.ubuntu.com/manpages/xenial/man1/ld.1.html [ubuntu-gcc]: https://manpages.ubuntu.com/manpages/trusty/man1/gcc.1.html [cffi-issue]: https://github.com/squidfunk/mkdocs-material/issues/5121 [cffi-dopen]: https://github.com/Kozea/cairocffi/blob/f1984d644bbc462ef0ec33b97782cf05733d7b53/cairocffi/__init__.py#L24-L49 [find-library-macOS]: https://github.com/python/cpython/blob/4d58a1d8fb27048c11bcbda3da1bebf78f979335/Lib/ctypes/util.py#L70-L81 [find-library-Windows]: https://github.com/python/cpython/blob/4d58a1d8fb27048c11bcbda3da1bebf78f979335/Lib/ctypes/util.py#L59-L67 [find-library-Linux]: https://github.com/python/cpython/blob/4d58a1d8fb27048c11bcbda3da1bebf78f979335/Lib/ctypes/util.py#L92 [cairo-lookup-macos.py]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/includes/debug/cairo-lookup-macos.py [cairo-lookup-windows.py]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/includes/debug/cairo-lookup-windows.py [cairo-lookup-linux.py]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/includes/debug/cairo-lookup-linux.py ������������������������������������������������mkdocs-material-9.6.4/docs/plugins/search.md��������������������������������������������������������0000664�0000000�0000000�00000026026�14753064456�0021032�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- title: Built-in search plugin icon: material/magnify --- # Built-in search plugin The search plugin adds a search bar to the header, allowing users to search your documentation. It's powered by [lunr.js], a lightweight full-text search engine for the browser, elimininating the need for external services, and even works when building [offline-capable documentation]. [lunr.js]: https://lunrjs.com/ [offline-capable documentation]: ../setup/building-for-offline-usage.md ## Objective ### How it works The plugin scans the generated HTML and builds a search index from all pages and sections by extracting the section titles and contents. It preserves some inline formatting like code blocks and lists, but removes all other formatting, so the search index is as small as possible. When a user visits your site, the search index is shipped to the browser, indexed with [lunr.js] and made available for fast and simple querying – no server needed. This ensures that the search index is always up to date with your documentation, yielding accurate results. ### When to use it It's generally recommended to use the plugin, as interactive search functionality is a vital part of every good documentation. Additionally, the plugin integrates perfectly with several of the other [built-in plugins] that Material for MkDocs offers: <div class="grid cards" markdown> - :material-connection:   __[Built-in offline plugin][offline]__ --- The offline plugin adds support for building offline-capable documentation, so you can distribute the [`site` directory][mkdocs.site_dir] as a `.zip` file that can be downloaded. --- __Your documentation can work without connectivity to the internet__ - :material-file-tree:   __[Built-in meta plugin][meta]__ --- The meta plugin makes it easy to [boost][meta.search.boost] specific sections in search results or to [exclude][meta.search.exclude] them entirely from being indexed, giving more granular control over search. --- __Simpler organization and management of search in different subsections__ </div> [offline]: offline.md [meta]: meta.md [built-in plugins]: index.md ## Configuration <!-- md:version 9.0.0 --> <!-- md:plugin [search] – built-in --> As with all [built-in plugins], getting started with the search plugin is straightforward. Just add the following lines to `mkdocs.yml`, and your users will be able to search your documentation: ``` yaml plugins: - search ``` The search plugin is built into Material for MkDocs and doesn't need to be installed. [search]: search.md [built-in plugins]: index.md ### General The following settings are available: --- #### <!-- md:setting config.enabled --> <!-- md:version 9.3.2 --> <!-- md:default `true` --> Use this setting to enable or disable the plugin when [building your project]. It's normally not necessary to specify this setting, but if you want to disable the plugin, use: ``` yaml plugins: - search: enabled: false ``` [building your project]: ../creating-your-site.md#building-your-site ### Search The following settings are available for search: --- #### <!-- md:setting config.lang --> <!-- md:version 9.0.0 --> <!-- md:default computed --> Use this setting to specify the language of the search index, enabling [stemming] support for other languages than English. The default value is automatically computed from the [site language], but can be explicitly set to another language or even multiple languages with: === "Set language" ``` yaml plugins: - search: lang: en ``` === "Add further languages" ``` yaml plugins: - search: lang: # (1)! - en - de ``` 1. Be aware that including support for further languages increases the base JavaScript payload by around 20kb and by another 15-30kb per language, all before `gzip`. [stemming]: https://en.wikipedia.org/wiki/Stemming [site language]: ../setup/changing-the-language.md#site-language [lunr languages]: https://github.com/MihaiValentin/lunr-languages Language support is provided by [lunr languages], a collection of language-specific stemmers and stop words for [lunr.js] maintained by the Open Source community. --- The following languages are currently supported by [lunr languages]: <div class="mdx-columns" markdown> - `ar` – Arabic - `da` – Danish - `de` – German - `du` – Dutch - `en` – English - `es` – Spanish - `fi` – Finnish - `fr` – French - `hi` – Hindi - `hu` – Hungarian - `hy` – Armenian - `it` – Italian - `ja` – Japanese - `kn` - Kannada - `ko` – Korean - `no` – Norwegian - `pt` – Portuguese - `ro` – Romanian - `ru` – Russian - `sa` – Sanskrit - `sv` – Swedish - `ta` – Tamil - `te` – Telugu - `th` – Thai - `tr` – Turkish - `vi` – Vietnamese - `zh` – Chinese </div> If [lunr languages] doesn't provide support for the selected [site language], the plugin falls back to another language that yields the best stemming results. If you discover that the search results are not satisfactory, you can contribute to [lunr languages] by adding support for your language. --- #### <!-- md:setting config.separator --> <!-- md:version 9.0.0 --> <!-- md:default computed --> Use this setting to specify the separator used to split words when building the search index on the client side. The default value is automatically computed from the [site language], but can also be explicitly set to another value with: ``` yaml plugins: - search: separator: '[\s\-,:!=\[\]()"/]+|(?!\b)(?=[A-Z][a-z])|\.(?!\d)|&[lg]t;' ``` Separators support [positive and negative lookahead assertions], which allows for rather complex expressions that yield precise control over how words are split when building the search index. Broken into its parts, this separator induces the following behavior: === "Special characters" ``` [\s\-,:!=\[\]()"/]+ ``` The first part of the expression inserts token boundaries for each document before and after whitespace, hyphens, commas, brackets and other special characters. If several of those special characters are adjacent, they are treated as one. === "Case changes" ``` (?!\b)(?=[A-Z][a-z]) ``` Many programming languages have naming conventions like `PascalCase` or `camelCase`. By adding this subexpression to the separator, [words are split at case changes], tokenizing the word `PascalCase` into `Pascal` and `Case`. === "Version strings" ``` \.(?!\d) ``` When adding `.` to the separator, version strings like `1.2.3` are split into `1`, `2` and `3`, which makes them undiscoverable via search. When using this subexpression, a small lookahead is introduced which will [preserve version strings] and keep them discoverable. === "HTML/XML tags" ``` &[lg]t; ``` If your documentation includes HTML/XML code examples, you may want to allow users to find [specific tag names]. Unfortunately, the `<` and `>` control characters are encoded in code blocks as `<` and `>`. Adding this subexpression to the separator allows for just that. [positive and negative lookahead assertions]: https://www.regular-expressions.info/lookaround.html [words are split at case changes]: ?q=searchHighlight [preserve version strings]: ?q=9.0.0 [specific tag names]: ?q=script --- #### <!-- md:setting config.pipeline --> <!-- md:version 9.0.0 --> <!-- md:default computed --> <!-- md:flag experimental --> Use this setting to specify the [pipeline functions] that are used to filter and expand tokens after tokenizing them with the [`separator`][config.separator] and before adding them to the search index. The default value is automatically computed from the [site language], but can also be explicitly set with: ``` yaml plugins: - search: pipeline: - stemmer - stopWordFilter - trimmer ``` The following pipeline functions can be used: - `stemmer` – Stem tokens to their root form, e.g. `running` to `run` - `stopWordFilter` – Filter common words according, e.g. `a`, `the`, etc. - `trimmer` – Trim whitespace from tokens [pipeline functions]: https://lunrjs.com/guides/customising.html#pipeline-functions ### Segmentation The plugin supports text segmentation of Chinese via [jieba], a popular Chinese text segmentation library. Other languages like Japanese and Korean are currently segmented on the client side, but we're considering to move this functionality into the plugin in the future. The following settings are available for segmentation: [jieba]: https://pypi.org/project/jieba/ --- #### <!-- md:setting config.jieba_dict --> <!-- md:version 9.2.0 --> <!-- md:default none --> <!-- md:flag experimental --> Use this setting to specify a [custom dictionary] to be used by [jieba] for segmenting text, replacing the default dictionary. [jieba] comes with several dictionaries, which can be used with: ``` yaml plugins: - search: jieba_dict: dict.txt ``` The following dictionaries are provided by [jieba]: - [dict.txt.small] – 占用内存较小的词典文件 - [dict.txt.big] – 支持繁体分词更好的词典文件 The provided path is resolved from the root directory. [custom dictionary]: https://github.com/fxsjy/jieba#%E5%85%B6%E4%BB%96%E8%AF%8D%E5%85%B8 [dict.txt.small]: https://github.com/fxsjy/jieba/raw/master/extra_dict/dict.txt.small [dict.txt.big]: https://github.com/fxsjy/jieba/raw/master/extra_dict/dict.txt.big --- #### <!-- md:setting config.jieba_dict_user --> <!-- md:version 9.2.0 --> <!-- md:default none --> <!-- md:flag experimental --> Use this setting to specify an additional [user dictionary] to be used by [jieba] for segmenting text, augmenting the default dictionary. User dictionaries are ideal for tuning the segmenter: ``` yaml plugins: - search: jieba_dict_user: user_dict.txt ``` The provided path is resolved from the root directory. [user dictionary]: https://github.com/fxsjy/jieba#%E8%BD%BD%E5%85%A5%E8%AF%8D%E5%85%B8 ## Usage ### Metadata The following properties are available: --- #### <!-- md:setting meta.search.boost --> <!-- md:version 8.3.0 --> <!-- md:flag metadata --> <!-- md:default none --> Use this property to increase or decrease the relevance of a page in the search results, giving more weight to them. Use values above `1` to rank up and values below `1` to rank down: === ":material-arrow-up-circle: Rank up" ``` yaml --- search: boost: 2 # (1)! --- # Page title ... ``` 1. When boosting pages, always start with low values. === ":material-arrow-down-circle: Rank down" ``` yaml --- search: boost: 0.5 --- # Page title ... ``` --- #### <!-- md:setting meta.search.exclude --> <!-- md:version 9.0.0 --> <!-- md:flag metadata --> <!-- md:default none --> Use this property to exclude a page from the search results. Note that this will not only remove the page, but also all subsections of the page from the search results: ``` yaml --- search: exclude: true --- # Page title ... ``` ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/plugins/social.md��������������������������������������������������������0000664�0000000�0000000�00000067310�14753064456�0021040�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- title: Built-in social plugin icon: material/share-circle --- # Built-in social plugin The social plugin automatically and intelligently generates beautiful and highly customizable social cards in different [layouts][default layouts] for each page of your project, rendering as preview images whenever you or somebody else share a link to your project on social media. ## Objective ### How it works The plugin automatically generates a customizable social card for each page of your project, which appears as a preview image when sharing a link to your project on social media, without the use of external services and just [a single line of configuration][configuration]. With the use of an efficient [image processing] library, the plugin allows to define [custom layouts] for social cards, which can be adapted to match your project's style and branding. While it would technically be much simpler to generate social cards by using a web browser and an automation framework like [Puppeteer][^1], it would add further liabilities to your toolchain, with the potential to make build pipelines more complex, much more resource intense, and significantly slower. [^1]: [GitHub wrote in their blog] that they use [Puppeteer] to generate social card images for repositories, issues, commits, discussions, and basically everything else that appear as preview images when shared on social media. The generated social cards are [cached] and stored in the [`site` directory][mkdocs.site_dir], and thus self-hosted, ensuring that your project doesn't depend on external services. In order to generate social cards images, a few [dependencies] need to be available on your system. [configuration]: #configuration [image processing]: requirements/image-processing.md [custom layouts]: ../setup/setting-up-social-cards.md#customization [Puppeteer]: https://github.com/puppeteer/puppeteer [GitHub wrote in their blog]: https://github.blog/2021-06-22-framework-building-open-graph-images/ [cached]: #caching [dependencies]: #configuration ### When to use it There's one particular case when we don't recommend to use the plugin: when you build [offline-capable documentation] to offer it as a download. Otherwise, it always makes sense to enable the plugin, as links to your documentation shared on social media will appear much more appealing. Even more interestingly, the plugin can be combined with other built-in plugins that Material for MkDocs offers, in order to create sophisticated build pipelines tailored to your project: <div class="grid cards" markdown> - :material-newspaper-variant-outline:   __[Built-in blog plugin][blog]__ --- The social plugin automatically generates beautiful and customizable social cards for each post and page, showing as previews on social media. --- __Links to your blog render beautiful social cards when shared on social media__ - :material-file-tree:   __[Built-in meta plugin][meta]__ --- The meta plugin can be used to [change the layout][meta.social.cards_layout] for social cards or [change specific layout options] [meta.social.cards_layout_options] like [background][option.background_color] or [color][option.color] for a subset of pages. --- __Your documentation can use completely different social cards per section__ </div> [offline-capable documentation]: ../setup/building-for-offline-usage.md [blog]: blog.md [meta]: meta.md ## Configuration <!-- md:version 8.5.0 --> <!-- md:plugin [social] – built-in --> <!-- md:flag multiple --> <!-- md:flag experimental --> In order to get started with the social plugin, just add the following lines to `mkdocs.yml`, and observe how Material for MkDocs generates beautiful social cards for you: ``` yaml plugins: - social ``` The social plugin is built into Material for MkDocs and doesn't need to be installed. However, in order to generate social card images, it's necessary to install the dependencies for [image processing], if they're not already available on your system. The linked guide includes instructions for several operating systems and mentions some alternative environments. [social]: social.md ### General The following settings are available: --- #### <!-- md:setting config.enabled --> <!-- md:version 8.5.0 --> <!-- md:default `true` --> Use this setting to enable or disable the plugin when [building your project]. If you want to disable the plugin, e.g., for local builds, you can use an [environment variable][mkdocs.env] in `mkdocs.yml`: ``` yaml plugins: - social: enabled: !ENV [CI, false] ``` This configuration enables the plugin only during continuous integration (CI). [building your project]: ../creating-your-site.md#building-your-site --- #### <!-- md:setting config.concurrency --> <!-- md:sponsors --> <!-- md:version insiders-4.33.0 --> <!-- md:default available CPUs - 1 --> With more CPUs available, the plugin can do more work in parallel, and thus complete social card generation faster. If you want to disable concurrent processing completely, use: ``` yaml plugins: - social: concurrency: 1 ``` By default, the plugin uses all available CPUs - 1 with a minimum of 1. ### Caching The plugin implements an [intelligent caching] mechanism, ensuring that social cards are only regenerated when their contents change or they're not already contained in the cache. If any of the variables used in a layout changes, the plugin detects it and regenerates the social card. The following settings are available for caching: [intelligent caching]: requirements/caching.md --- #### <!-- md:setting config.cache --> <!-- md:sponsors --> <!-- md:version insiders-4.33.0 --> <!-- md:default `true` --> Use this setting to instruct the plugin to bypass the cache, in order to re-generate social cards for all pages, even though the cache may not be stale. It's normally not necessary to specify this setting, except for when debugging the plugin itself. Caching can be disabled with: ``` yaml plugins: - social: cache: false ``` --- #### <!-- md:setting config.cache_dir --> <!-- md:version 8.5.0 --> <!-- md:default `.cache/plugin/social` --> It is normally not necessary to specify this setting, except for when you want to change the path within your root directory where social card images are cached. If you want to change it, use: ``` yaml plugins: - social: cache_dir: my/custom/dir ``` If you're using [multiple instances] of the plugin, it can be a good idea to set different cache directories for both instances, so that they don't interfere with each other. [multiple instances]: index.md#multiple-instances ### Logging The following settings are available for logging: --- #### <!-- md:setting config.log --> <!-- md:sponsors --> <!-- md:version insiders-4.40.2 --> <!-- md:default `true` --> Use this setting to control whether the plugin should only log errors when generating social cards without terminating the build, e.g., invalid references to icons. To terminate the build, use: ``` yaml plugins: - social: log: false ``` --- #### <!-- md:setting config.log_level --> <!-- md:sponsors --> <!-- md:version insiders-4.40.2 --> <!-- md:default `warn` --> Use this setting to control the log level that the plugin should employ when encountering errors, which requires that the [`log`][config.log] setting is enabled. The following log levels are available: === "`warn`" ``` yaml plugins: - social: log_level: warn ``` Errors are reported as warnings, terminating the build in [`strict`][mkdocs.strict] mode. === "`info`" ``` yaml plugins: - social: log_level: info ``` Errors are only reported as informational messages. === "`ignore`" ``` yaml plugins: - social: log_level: ignore ``` Errors are only reported when using the `--verbose` flag. ### Social cards The following settings are available for social card generation: --- #### <!-- md:setting config.cards --> <!-- md:version 8.5.0 --> <!-- md:default `true` --> Use this setting to enable or disable social card generation. Currently, the plugin's sole purpose is to generate social cards, so it's equivalent to the [`enabled`][config.enabled] setting, but in the future, other features might be added. If you want to disable social card generation, use: ``` yaml plugins: - social: cards: false ``` --- #### <!-- md:setting config.cards_dir --> <!-- md:version 8.5.0 --> <!-- md:default `assets/images/social` --> It is normally not necessary to specify this setting, except for when you want to change the path within the [`site` directory][mkdocs.site_dir] where social cards are stored. If you want to change it, use: ``` yaml plugins: - social: cards_dir: my/custom/dir ``` This configuration stores the generated images at `my/custom/dir` in the [`site` directory][mkdocs.site_dir]. --- #### <!-- md:setting config.cards_layout_dir --> <!-- md:sponsors --> <!-- md:version insiders-4.33.0 --> <!-- md:default `layouts` --> If you want to build a [custom social card layout][custom layouts], use this setting to change the folder where you store your custom layouts, the default being a folder called `layouts` in your root directory: ``` yaml plugins: - social: cards_layout_dir: layouts ``` The provided path is resolved from the root directory. !!! tip "Where to store custom layouts" Our recommendation is to locate the folder outside of the [`docs` directory][mkdocs.docs_dir], to make sure that your [custom layouts] are not copied to the [`site` directory][mkdocs.site_dir] when [building your project], e.g., by adhering to the following directory layout: ``` { .sh .no-copy } . ├─ docs/ │ └─ *.md ├─ layouts/ │ └─ *.yml └─ mkdocs.yml ``` --- #### <!-- md:setting config.cards_layout --> <!-- md:sponsors --> <!-- md:version insiders-4.33.0 --> <!-- md:default `default` --> The plugin ships a growing list of [`default` layouts][default layouts] for social cards. If you've created a [custom social card layout][custom layouts], you can instruct the plugin to use it exactly as one of the included layouts: ``` yaml plugins: - social: cards_layout: my-custom-layout ``` The provided path is resolved from the[ `layouts` directory][config.cards_layout_dir]. !!! tip "How custom layouts are resolved" By default, the plugin will load your [custom layouts] from a folder named `layouts` in your root directory. If your layout is called `my-custom-layout`, the directory layout must adhere to: ``` { .sh .no-copy } . ├─ docs/ │ └─ *.md ├─ layouts/ │ └─ my-custom-layout.yml └─ mkdocs.yml ``` --- #### <!-- md:setting config.cards_layout_options --> <!-- md:version 9.1.10 --> <!-- md:default none --> Use this setting to set options for the layout specified via [`cards_layout`] [config.cards_layout] (if the layout supports it), which allows for making layouts easily and entirely configurable: ``` yaml plugins: - social: cards_layout_options: <option>: <value> ``` When creating a [custom layout][custom layouts], you are completely free in defining which parts of your layout can be parametrized. The [`default` layouts] [default layouts] included with the plugin support the following options: <div class="mdx-columns" markdown> - [`background_color`][option.background_color] - [`background_image`][option.background_image] - [`color`][option.color] - [`font_family`][option.font_family] - [`font_variant`][option.font_variant] - [`logo`][option.logo] - [`title`][option.title] - [`description`][option.description] </div> [default layouts]: #layouts --- #### <!-- md:setting config.cards_include --> <!-- md:sponsors --> <!-- md:version insiders-4.35.0 --> <!-- md:default none --> Use this setting to enable social card generation for subsections of your project, e.g., when using [multiple instances] of the plugin to generate different social cards for different subsections: ``` yaml plugins: - social: cards_include: - blog/* ``` This configuration enables social card generation for all pages that are contained in the `blog` folder and its subfolders inside the [`docs` directory] [mkdocs.docs_dir]. --- #### <!-- md:setting config.cards_exclude --> <!-- md:sponsors --> <!-- md:version insiders-4.35.0 --> <!-- md:default none --> Use this setting to disable social card generation for subsections of your project, e.g., when using [multiple instances] of the plugin to generate different social cards for different subsections: ``` yaml plugins: - social: cards_exclude: - changelog/* ``` This configuration disables social card generation for all pages that are contained in the `changelog` folder and its subfolders inside the [`docs` directory][mkdocs.docs_dir]. ### Debugging The plugin includes a special mode for debugging layouts, which is very useful when creating [custom layouts], as it allows for quicker iteration and better understanding of composition. The following settings are available for debugging: --- #### <!-- md:setting config.debug --> <!-- md:sponsors --> <!-- md:version insiders-4.33.0 --> <!-- md:default `false` --> Use this setting to enable a special mode for debugging your layout, which renders each layer with a colored outline and its `x` and `y` offsets, and overlays a dot grid for alignment, so it's easier to understand how the distinct layers of your layout are composed together: ``` yaml plugins: - social: debug: true ``` --- #### <!-- md:setting config.debug_on_build --> <!-- md:sponsors --> <!-- md:version insiders-4.34.1 --> <!-- md:default `false` --> By default, the plugin automatically disables [`debug`][config.debug] mode when [building your project], so you can be sure that debug overlays are never deployed to production. If you want to change that, use: ``` yaml plugins: - social: debug_on_build: true ``` It's normally not necessary to change this setting, as it's just intended to be a safety net. --- #### <!-- md:setting config.debug_grid --> <!-- md:sponsors --> <!-- md:version insiders-4.33.0 --> <!-- md:default `true` --> When [`debug`][config.debug] mode is enabled, this setting specifies whether a dot grid is rendered on top of all layers, to allow for better alignment. If you want to switch the grid off, use: ``` yaml plugins: - social: debug_grid: false ``` --- #### <!-- md:setting config.debug_grid_step --> <!-- md:sponsors --> <!-- md:version insiders-4.33.0 --> <!-- md:default `32` --> Use this setting to specify the step size of the dot grid in pixels, if enabled, which can be useful to create perfectly aligned layers for ideal composition. It you want to change it, use: ``` yaml plugins: - social: debug_grid_step: 64 ``` --- #### <!-- md:setting config.debug_color --> <!-- md:sponsors --> <!-- md:version insiders-4.33.0 --> <!-- md:default `grey` --> Use this setting to specify the color of the outlines that are added to each layer and the dot grid that is rendered on top of all layers. If you need to change it, use: ``` yaml plugins: - social: debug_color: yellow ``` In rare cases, it might be necessary to change this setting if the dot grid or the outlines are hard to distinguish, as the plugin will automatically adjust the color if not explicitly set. ## Usage ### Metadata The plugin allows to override a subset of settings through metadata (front matter) in order to customize social card generation, e.g., to set [options for the included `default` layouts][default layouts] for a single page, or even [for an entire subsection] of your project by leveraging the [meta] plugin. The following properties are available: [for an entire subsection]: meta.md#how-it-works [meta]: meta.md --- #### <!-- md:setting meta.social.cards --> <!-- md:sponsors --> <!-- md:version insiders-4.37.0 --> <!-- md:flag metadata --> <!-- md:default none --> Use this property to override the [`cards`][config.cards] setting for the given page: ``` yaml --- social: cards: false --- # Page title ... ``` --- #### <!-- md:setting meta.social.cards_layout --> <!-- md:sponsors --> <!-- md:version insiders-4.37.0 --> <!-- md:flag metadata --> <!-- md:default none --> <!-- md:flag experimental --> Use this property to override the [`cards_layout`][config.cards_layout] setting for the given page: ``` yaml --- social: cards_layout: my-custom-layout --- # Page title ... ``` --- #### <!-- md:setting meta.social.cards_layout_options --> <!-- md:sponsors --> <!-- md:version insiders-4.37.0 --> <!-- md:flag metadata --> <!-- md:default none --> Use this property to override the [`cards_layout_options`] [config.cards_layout_options] setting for the given page: ``` yaml --- social: cards_layout_options: background_color: blue # Change background color background_image: null # Remove background image --- # Page title ... ``` Setting an option to `#!yaml null` resets the option. ### Layouts <!-- md:sponsors --> <!-- md:version insiders-4.33.0 --> While it is possible and simple to build [custom layouts], the plugin ships several predefined layouts, all of which are prefixed with `default`. The following layouts are included: === "`default`" ``` yaml plugins: - social: cards_layout: default ``` <div class="result" markdown> ![Layout default] This layout sets the following defaults: - [`background_color`][option.background_color] – <!-- md:default [`theme.palette.primary`][primary color] --> - [`font_family`][option.font_family] – <!-- md:default [`theme.font.text`][font] --> </div> === "`default/variant`" ``` yaml plugins: - social: cards_layout: default/variant ``` <div class="result" markdown> ![Layout default variant] This layout includes the [page icon] and sets the following defaults: - [`background_color`][option.background_color] – <!-- md:default [`theme.palette.primary`][primary color] --> - [`font_family`][option.font_family] – <!-- md:default [`theme.font.text`][font] --> </div> === "`default/accent`" ``` yaml plugins: - social: cards_layout: default/accent ``` <div class="result" markdown> ![Layout default accent] This layout sets the following defaults: - [`background_color`][option.background_color] – <!-- md:default [`theme.palette.accent`][accent color] --> - [`font_family`][option.font_family] – <!-- md:default [`theme.font.text`][font] --> </div> === "`default/invert`" ``` yaml plugins: - social: cards_layout: default/invert ``` <div class="result" markdown> ![Layout default invert] This layout sets the following defaults: - [`color`][option.background_color] – <!-- md:default [`theme.palette.primary`][primary color] --> - [`font_family`][option.font_family] – <!-- md:default [`theme.font.text`][font] --> </div> === "`default/only/image`" ``` yaml plugins: - social: cards_layout: default/only/image cards_layout_options: background_image: layouts/background.png ``` <div class="result" markdown> This layout only shows the given background image and scales it to cover. </div> The [`default` layouts][default layouts] are very flexible and comfortable to use, as they replicate the original behavior of the plugin, sourcing default values for all options from other `theme` settings. The following options are available: [Layout default]: ../assets/screenshots/social-cards.png [Layout default variant]: ../assets/screenshots/social-cards-variant.png [Layout default accent]: ../assets/screenshots/social-cards-accent.png [Layout default invert]: ../assets/screenshots/social-cards-invert.png [primary color]: ../setup/changing-the-colors.md#primary-color [page icon]: ../reference/index.md#setting-the-page-icon [accent color]: ../setup/changing-the-colors.md#accent-color [font]: ../setup/changing-the-fonts.md#regular-font --- #### <!-- md:setting option.background_color --> <!-- md:version 9.1.10 --> <!-- md:default computed --> Use this option to change the background color of the generated social card. The value can be set to a valid color value [supported by pillow], the imaging library used for card generation: === "Hexadecimal" ``` yaml plugins: - social: cards_layout_options: background_color: "#ff1493" # (1)! ``` 1. The following notations are supported, whereas each character after the `#` must be a valid hexadecimal in the range `#!css 0-F`: - `#!css #rgb` – Color (short) - `#!css #rgba` – Color + alpha (short) - `#!css #rrggbb` – Color - `#!css #rrggbbaa` – Color + alpha === "Color function" ``` yaml plugins: - social: cards_layout_options: background_color: rgb(255, 20, 147) # (1)! ``` 1. The following functions are supported, listing the allowed maximum values with the minimum values all being `#!css 0` or `#!css 0%`: - `#!css rgb(255, 255, 255)` – Red, green and blue - `#!css hsl(360, 100%, 100%)` – Hue, saturation and lightness - `#!css hsv(360, 100%, 100%)` – Hue, saturation and value === "Color name" ``` yaml plugins: - social: cards_layout_options: background_color: deeppink # (1)! ``` 1. See the [`<named-color>`][named-color] CSS data type for a list of supported color names. Note that some might not be available. If this options is used together with [`background_image`] [option.background_image], the color is rendered on top of the image which allows for tinting images. If you want to remove the background color, use: ``` yaml plugins: - social: cards_layout_options: background_color: transparent ``` [supported by pillow]: https://pillow.readthedocs.io/en/stable/reference/ImageColor.html#color-names [named-color]: https://developer.mozilla.org/en-US/docs/Web/CSS/named-color --- #### <!-- md:setting option.background_image --> <!-- md:sponsors --> <!-- md:version insiders-4.33.0 --> <!-- md:default none --> Use this option to define a background image for the generated social card. Note that the image is tinted with the [`background_color`][option.background_color], which can also be set to `transparent`: === "Image" ``` yaml plugins: - social: cards_layout_options: background_image: layouts/background.png background_color: transparent ``` === "Image with tint" ``` yaml plugins: - social: cards_layout_options: background_image: layouts/background.png background_color: "#ff149366" ``` The provided path is resolved from the root directory. --- #### <!-- md:setting option.color --> <!-- md:version 9.1.10 --> <!-- md:default computed --> Use this option to change the foreground color of the generated social card. The value can be set to a valid color value [supported by pillow], the imaging library used for card generation: === "Hexadecimal" ``` yaml plugins: - social: cards_layout_options: color: "#ffffff" # (1)! ``` 1. The following notations are supported, whereas each character after the `#` must be a valid hexadecimal in the range `#!css 0-F`: - `#!css #rgb` – Color (short) - `#!css #rgba` – Color + alpha (short) - `#!css #rrggbb` – Color - `#!css #rrggbbaa` – Color + alpha === "Color function" ``` yaml plugins: - social: cards_layout_options: color: rgb(255, 255, 255) # (1)! ``` 1. The following functions are supported, listing the allowed maximum values with the minimum values all being `#!css 0` or `#!css 0%`: - `#!css rgb(255, 255, 255)` – Red, green and blue - `#!css hsl(360, 100%, 100%)` – Hue, saturation and lightness - `#!css hsv(360, 100%, 100%)` – Hue, saturation and value === "Color name" ``` yaml plugins: - social: cards_layout_options: color: white # (1)! ``` 1. See the [`<named-color>`][named-color] CSS data type for a list of supported color names. Note that some might not be available. --- #### <!-- md:setting option.font_family --> <!-- md:version 9.1.10 --> <!-- md:default computed --> Use this option to change the font family of the generated social card. The plugin automatically downloads the font from [Google Fonts], so the font must point to an existing Google Font: ``` yaml plugins: - social: cards_layout_options: font_family: Ubuntu ``` When you've found a font that you like on [Google Fonts], you can just copy the name from the font's specimen page and use it as the value for this option – no further configuration needed. [Google Fonts]: https://fonts.google.com/ --- #### <!-- md:setting option.font_variant --> <!-- md:sponsors --> <!-- md:version insiders-4.53.3 --> <!-- md:default none --> Use this option to change the font variant used to generate the social card. If the downloaded font has variants like `Condensed` or `Expanded`, you can set them with: ``` yaml plugins: - social: cards_layout_options: font_variant: Condensed ``` The variant is combined with the style as used in the custom layout, so the plugin is instructed to use combinations like `Condensed Regular` or `Expanded Bold`. --- #### <!-- md:setting option.logo --> <!-- md:sponsors --> <!-- md:version insiders-4.40.0 --> <!-- md:default computed --> Use this option to change the logo that is used in the generated social card. By default, the plugin uses the [`theme.logo`][theme.logo] or [`theme.icon.logo`] [theme.icon.logo] setting from `mkdocs.yml`. You can change it with: ``` yaml plugins: - social: cards_layout_options: logo: layouts/logo.png ``` The provided path is resolved from the root directory. [theme.logo]: ../setup/changing-the-logo-and-icons.md#logo-image [theme.icon.logo]: ../setup/changing-the-logo-and-icons.md#logo-icon-bundled --- #### <!-- md:setting option.title --> <!-- md:sponsors --> <!-- md:version insiders-4.40.0 --> <!-- md:default computed --> Use this option to change the title of the generated social card. This overrides the computed page title as assigned by MkDocs, as well as the [`title`] [meta.title] metadata property: ``` yaml plugins: - social: cards_layout_options: title: My custom title ``` [meta.title]: ../reference/index.md#setting-the-page-title --- #### <!-- md:setting option.description --> <!-- md:sponsors --> <!-- md:version insiders-4.40.0 --> <!-- md:default computed --> Use this option to change the description of the generated social card. This overrides the set [`site_description`][mkdocs.site_description], if defined, as well as the [`description`][meta.description] metadata property: ``` yaml plugins: - social: cards_layout_options: description: My custom description ``` [meta.description]: ../reference/index.md#setting-the-page-description --- !!! question "Missing something?" When setting up social cards, you might discover that you're missing specific functionality – we're happy to consider adding it to the plugin! You can [open a discussion] to ask a question, or create a [change request] on our [issue tracker], so we can find out if it might be a good fit for the plugin. [open a discussion]: https://github.com/squidfunk/mkdocs-material/discussions [change request]: ../contributing/requesting-a-change.md [issue tracker]: https://github.com/squidfunk/mkdocs-material/issues ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/plugins/tags.md����������������������������������������������������������0000664�0000000�0000000�00000051540�14753064456�0020522�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- title: Built-in tags plugin icon: material/tag-text --- # Built-in tags plugin The tags plugin adds first-class support for categorizing pages with the use of tags, adding the possibility to group related pages and make them discoverable via search and dedicated tags indexes. If your documentation is large, tags can help to discover relevant information faster. ## Objective ### How it works The plugin scans all pages for the [`tags`][meta.tags] metadata property and generates a tags index, which is an inverted list of tags and the pages they appear on. The tags index can be located anywhere in the [`nav`][mkdocs.nav], allowing for maximum flexibility when adding tags to your project. ### When to use it If you want to add one or multiple tags indexes to your project, the tags plugin is a perfect choice as it makes this process ridiculously simple. Additionally, it integrates perfectly with several of the other [built-in plugins] that Material for MkDocs offers: <div class="grid cards" markdown> - :material-file-tree:   __[Built-in meta plugin][meta]__ --- The meta plugin makes it possible to ensure that subsections of your project are annotated with [specific tags][meta.tags], so they can't be forgotten when adding pages. --- __Simpler organization and management of tags in different subsections__ - :material-newspaper-variant-outline:   __[Built-in blog plugin][blog]__ --- The tags plugin allows to categorize posts alongside with pages in your project, to improve their discoverability and connect posts to your documentation. --- __Your documentation's tag system integrates with your blog__ </div> [meta]: meta.md [blog]: blog.md [built-in plugins]: index.md ## Configuration <!-- md:version 8.2.0 --> <!-- md:plugin [tags] – built-in --> <!-- md:flag multiple --> As with all [built-in plugins], getting started with the tags plugin is straightforward. Just add the following lines to `mkdocs.yml`, and start using [tags][meta.tags] to categorize your pages: ``` yaml plugins: - tags ``` The tags plugin is built into Material for MkDocs and doesn't need to be installed. [tags]: tags.md ### General The following settings are available: --- #### <!-- md:setting config.enabled --> <!-- md:version 9.1.7 --> <!-- md:default `true` --> Use this setting to enable or disable the plugin when [building your project]. It's normally not necessary to specify this setting, but if you want to disable the plugin, use: ``` yaml plugins: - tags: enabled: false ``` [building your project]: ../creating-your-site.md#building-your-site ### Tags The following settings are available for tags: --- #### <!-- md:setting config.tags --> <!-- md:version 9.3.2 --> <!-- md:default `true` --> Use this setting to enable or disable rendering of tags. The plugin still extracts tags from all pages, e.g., for [exporting tags] without rendering them. Rendering can be disabled with: ``` yaml plugins: - tags: tags: false ``` This setting is automatically disabled if [`export_only`][config.export_only] is enabled. [exporting tags]: #export --- #### <!-- md:setting config.tags_file --> <!-- md:version 8.2.0 --> <!-- md:default none --> !!! warning "This setting is deprecated" As of version <!-- md:version 9.6.0 -->, this setting is deprecated, as this version ships a __ground up rewrite of the tags plugin__ which is much more powerful than the previous version. Tags [listings] can be used on any page now. <div style="opacity: 0.5" markdown> Use this setting to specify the location of the tags index, which is the page used to render a list of all tags and their associated pages. If this setting is specified, tags become clickable, pointing to the corresponding section in the tags index: ``` yaml plugins: - tags: tags_file: tags.md ``` The page holding the tags index can be linked anywhere in the [`nav`][mkdocs.nav] section of `mkdocs.yml`. This setting is not required – you should only use it if you want to have a tags index. The provided path is resolved from the [`docs` directory][mkdocs.docs_dir]. </div> [listings]: ../setup/setting-up-tags.md#adding-a-tags-index --- #### <!-- md:setting config.tags_slugify --> <!-- md:version 9.6.0 --> <!-- md:default [`pymdownx.slugs.slugify`][pymdownx.slugs.slugify] --> Use this setting to change the function for generating URL-compatible slugs from post titles. By default, the [`slugify`][pymdownx.slugs.slugify] function from [Python Markdown Extensions] is used as follows: ``` yaml plugins: - tags: tags_slugify: !!python/object/apply:pymdownx.slugs.slugify kwds: case: lower ``` The default configuration is Unicode-aware and should produce good slugs for all languages. Of course, you can also provide a custom slugification function for more granular control. [pymdownx.slugs.slugify]: https://github.com/facelessuser/pymdown-extensions/blob/01c91ce79c91304c22b4e3d7a9261accc931d707/pymdownx/slugs.py#L59-L65 [Python Markdown Extensions]: https://facelessuser.github.io/pymdown-extensions/extras/slugs/ --- #### <!-- md:setting config.tags_slugify_separator --> <!-- md:version 9.6.0 --> <!-- md:default `-` --> Use this setting to change the separator that is passed to the slugification function set as part of [`tags_slugify`][config.tags_slugify]. While the default is a hyphen, it can be set to any string, e.g., `_`: ``` yaml plugins: - tags: tags_slugify_separator: _ ``` --- #### <!-- md:setting config.tags_slugify_format --> <!-- md:version 9.6.0 --> <!-- md:default `tag:{slug}` --> Use this setting to change the format string that is used when generating tag slugs. It is a good idea to prefix tag slugs with a string that makes them unique, the default being: ``` yaml plugins: - tags: tags_slugify_format: "tag:{slug}" ``` The following placeholders are available: - `slug` – Tag slug, slugified with [`tags_slugify`][config.tags_slugify] --- #### <!-- md:setting config.tags_hierarchy --> <!-- md:sponsors --> <!-- md:version insiders-4.48.0 --> <!-- md:default `false` --> <!-- md:flag experimental --> Use this setting to enable support for tag hierarchies (nested tags, e.g., `foo/bar`). If you intend to create hierarchical listings of tags, you can enable this setting in `mkdocs.yml` with: ``` yaml plugins: - tags: tags_hierarchy: true ``` --- #### <!-- md:setting config.tags_hierarchy_separator --> <!-- md:sponsors --> <!-- md:version insiders-4.48.0 --> <!-- md:default `/` --> <!-- md:flag experimental --> Use this setting to change the separator that is used when creating tag hierarchies. By default, tags are separated by a forward slash `/`, but you can change this to any string, e.g., `.`: ``` yaml plugins: - tags: tags_hierarchy_separator: . ``` --- #### <!-- md:setting config.tags_sort_by --> <!-- md:version 9.6.0 --> <!-- md:default `material.plugins.tags.tag_name` --> Use this setting to specify a custom function for comparing tags. By default, tag comparison is case-sensitive, but you can use `tag_name_casefold` for case-insensitive comparison: ``` yaml plugins: - tags: tags_sort_by: !!python/name:material.plugins.tags.tag_name_casefold ``` You can also define your own comparison function, which must return a string or number representing the tag, that is used for sorting, and reference it in [`tags_sort_by`][config.tags_sort_by]. --- #### <!-- md:setting config.tags_sort_reverse --> <!-- md:version 9.6.0 --> <!-- md:default `false` --> Use this setting to reverse the order in which tags are sorted when comparing them. By default, tags are sorted in ascending order, but you can reverse ordering as follows: ``` yaml plugins: - tags: tags_sort_reverse: true ``` --- #### <!-- md:setting config.tags_name_property --> <!-- md:version 9.6.0 --> <!-- md:default [`tags`][meta.tags] --> Use this setting to change the name of the front matter property that is used by the plugin. It is normally not necessary to change this setting, but if you want to change it, you can use: ``` yaml plugins: - tags: tags_name_property: tags ``` --- #### <!-- md:setting config.tags_name_variable --> <!-- md:version 9.6.0 --> <!-- md:default `tags` --> Use this setting to change the name of the template variable that is used by the plugin. It is normally not necessary to change this setting, but if you want to change it, you can use: ``` yaml plugins: - tags: tags_name_variable: tags ``` --- #### <!-- md:setting config.tags_allowed --> <!-- md:version 9.6.0 --> <!-- md:default none --> The plugin allows to check tags against a predefined list, in order to catch typos or make sure that tags are not arbitrarily added. Specify the tags you want to allow with: ``` yaml plugins: - tags: tags_allowed: - HTML5 - JavaScript - CSS ``` The plugin stops the build if a page references a tag that is not part of this list. Pages can be assigned to tags by using the [`tags`][meta.tags] metadata property. ### Listings The following settings are available for listings: --- #### <!-- md:setting config.listings --> <!-- md:version 9.6.0 --> <!-- md:default `true` --> Use this setting to enable or disable listings. It is normally not necessary to change this setting, as listings are created entirely by inline comments, but you can disable them if necessary with: ``` yaml plugins: - tags: listings: false ``` This setting is automatically disabled if [`export_only`][config.export_only] is enabled. [exporting tags]: #export --- #### <!-- md:setting config.listings_map --> <!-- md:version 9.6.0 --> <!-- md:default none --> Use this define listing configurations that you can then reference in listings with a custom identifier. Sharing configurations is a good idea, especially when you have many tag listings: ``` yaml plugins: - tags: listings_map: custom-id: scope: true exclude: Internal ``` Then, just reference the listing identifier: ``` html <!-- material/tags custom-id --> ``` See the [listings section] for a list of all available settings. [listings section]: #listing-configuration --- #### <!-- md:setting config.listings_sort_by --> <!-- md:version 9.6.0 --> <!-- md:default `material.plugins.tags.item_title` --> Use this setting to specify a custom function for comparing listing items. By default, items are ordered by their titles, but you can change the sorting criterion with the following configuration: === "Sort by item title" ``` yaml plugins: - tags: listings_sort_by: !!python/name:material.plugins.tags.item_title ``` === "Sort by item URL" ``` yaml plugins: - tags: listings_sort_by: !!python/name:material.plugins.tags.item_url ``` You can also define your own comparison function, which must return a string or number representing the item, that is used for sorting, and reference it in [`listings_sort_by`][config.listings_sort_by]. --- #### <!-- md:setting config.listings_sort_reverse --> <!-- md:version 9.6.0 --> <!-- md:default `false` --> Use this setting to reverse the order in which items are sorted when comparing them. By default, items are sorted in ascending order, but you can reverse ordering as follows: ``` yaml plugins: - tags: listings_sort_reverse: true ``` --- #### <!-- md:setting config.listings_tags_sort_by --> <!-- md:version 9.6.0 --> <!-- md:default `material.plugins.tags.tag_name` --> Use this setting to specify a custom function for comparing tags in listings. By default, tag comparison is case-sensitive, but you can use `tag_name_casefold` for case-insensitivity: ``` yaml plugins: - tags: tags_sort_by: !!python/name:material.plugins.tags.tag_name_casefold ``` You can also define your own comparison function, which must return a string or number representing the tag, that is used for sorting, and reference it in [`tags_sort_by`][config.tags_sort_by]. --- #### <!-- md:setting config.listings_tags_sort_reverse --> <!-- md:version 9.6.0 --> <!-- md:default `false` --> Use this setting to reverse the order in which tags are sorted when comparing them. By default, tags are sorted in ascending order, but you can reverse ordering as follows: ``` yaml plugins: - tags: tags_sort_reverse: true ``` --- #### <!-- md:setting config.listings_directive --> <!-- md:version 9.6.0 --> <!-- md:default `material/tags` --> Use this setting to change the name of the directive the plugin will look for when processing pages. If you want to use a shorter directive than `material/tags`, you could use: ``` yaml plugins: - tags: listings_directive: $tags ``` Using this setting, listings must now be referenced as such: ``` html <!-- $tags { include: [foo, bar] } --> ``` --- #### <!-- md:setting config.listings_toc --> <!-- md:sponsors --> <!-- md:version insiders-4.48.0 --> <!-- md:default `true` --> Use this setting to enable or disable tags showing up in the table of contents. If you don't want tags to show up in the table of contents, you can disable this behavior with: ``` yaml plugins: - tags: listings_toc: false ``` ### Shadow tags The following settings are available for shadow tags: --- #### <!-- md:setting config.shadow --> <!-- md:sponsors --> <!-- md:version insiders-4.48.0 --> <!-- md:default `false` --> Use this setting to specify whether the plugin should include shadow tags on pages and in listings when [building your project], which might be useful for deploy previews: === "Show shadow tags" ``` yaml plugins: - tags: shadow: true ``` === "Hide shadow tags" ``` yaml plugins: - tags: shadow: false ``` --- #### <!-- md:setting config.shadow_on_serve --> <!-- md:sponsors --> <!-- md:version insiders-4.48.0 --> <!-- md:default `true` --> Use this setting to control whether the plugin should include shadow tags on pages and in listings when [previewing your site]. If you don't wish to include them when previewing, use: ``` yaml plugins: - tags: shadow_on_serve: false ``` [previewing your site]: ../creating-your-site.md#previewing-as-you-write --- #### <!-- md:setting config.shadow_tags --> <!-- md:sponsors --> <!-- md:version insiders-4.48.0 --> <!-- md:default none --> The plugin allows to specify a predefined list of shadow tags which can be included and excluded from builds by using the [`shadow`][config.shadow] setting. Shadow tags must be specified as a list: ``` yaml plugins: - tags: shadow_tags: - Draft - Internal ``` --- #### <!-- md:setting config.shadow_tags_prefix --> <!-- md:sponsors --> <!-- md:version insiders-4.48.0 --> <!-- md:default none --> Use this setting to specify a string that is checked as a prefix for each tag. If the tag starts with this string, the tag is marked as a shadow tag. A common practice is to use `_` as a prefix: ``` yaml plugins: - tags: shadow_tags_prefix: _ ``` --- #### <!-- md:setting config.shadow_tags_suffix --> <!-- md:sponsors --> <!-- md:version insiders-4.48.0 --> <!-- md:default none --> Use this setting to specify a string that is checked as a suffix for each tag. If the tag ends with this string, the tag is marked as a shadow tag. One option can be to use `Internal` as a suffix: ``` yaml plugins: - tags: shadow_tags_suffix: Internal ``` ### Export The following settings are available for exporting: --- #### <!-- md:setting config.export --> <!-- md:sponsors --> <!-- md:version insiders-4.49.0 --> <!-- md:default `true` --> Use this setting to control whether the plugin creates a `tags.json` file inside your [`site` directory][mkdocs.site_dir], which can then be consumed by other plugins and projects: ``` yaml plugins: - tags: export: true ``` --- #### <!-- md:setting config.export_file --> <!-- md:sponsors --> <!-- md:version insiders-4.49.0 --> <!-- md:default `tags.json` --> Use this setting to change the path of the file where the exported tags are stored. It's normally not necessary to change this setting, but if you need to, use: ``` yaml plugins: - tags: export_file: tags.json ``` The provided path is resolved from the [`site` directory][mkdocs.site_dir]. --- #### <!-- md:setting config.export_only --> <!-- md:sponsors --> <!-- md:version insiders-4.49.0 --> <!-- md:default `false` --> This setting is solely provided for convenience to disable the rendering of tags and listings with a single setting (e.g. by using an environment variable), while keeping the export functionality: ``` yaml plugins: - tags: export_only: true ``` This will automatically disable the [`tags`][config.tags] and [`listings`][config.listings] settings. ## Usage ### Metadata The following properties are available: --- #### <!-- md:setting meta.tags --> <!-- md:version 8.2.0 --> <!-- md:flag metadata --> <!-- md:default none --> Use this property to associate a page with one or more tags, making the page appear in the generated tags index. Tags are defined as a list of strings (whitespaces are allowed): ``` yaml --- tags: - HTML5 - JavaScript - CSS --- # Page title ... ``` If you want to prevent accidental typos when assigning tags to pages, you can set a predefined list of allowed tags in `mkdocs.yml` by using the [`tags_allowed`][config.tags_allowed] setting. ### Listing configuration The listings configuration controls which tags are included in or excluded from a listing and whether a listing only includes pages in the current scope. Furthermore, listings can override some values from the global configuration. The following settings are available: --- #### <!-- md:setting listing.scope --> <!-- md:version 9.6.0 --> <!-- md:default `false` --> This setting specifies whether the listing should only consider pages that are within the current subsection of the documentation of the page the listing is embedded in: === "Inline usage" ``` html <!-- material/tags { scope: true } --> ``` === "Usage in `mkdocs.yml`" ``` yaml plugins: - tags: listings_map: custom-id: scope: false ``` Then, just reference the listing identifier: ``` html <!-- material/tags custom-id --> ``` --- #### <!-- md:setting listing.shadow --> <!-- md:sponsors --> <!-- md:version insiders-4.49.0 --> <!-- md:default computed --> This setting specifies whether the listing should include shadow tags, which allows to override the global [`shadow`][config.shadow] setting on a per-listing basis: === "Inline usage" ``` html <!-- material/tags { shadow: true } --> ``` === "Usage in `mkdocs.yml`" ``` yaml plugins: - tags: listings_map: custom-id: shadow: true ``` Then, just reference the listing identifier: ``` html <!-- material/tags custom-id --> ``` --- #### <!-- md:setting listing.toc --> <!-- md:sponsors --> <!-- md:version insiders-4.48.0 --> <!-- md:default [`listings_toc`][config.listings_toc] --> This setting specifies whether the listing should render tags inside the table of contents, allowing to override the global [`listings_toc`][config.listings_toc] setting on a per-listing basis: === "Inline usage" ``` html <!-- material/tags { toc: true } --> ``` === "Usage in `mkdocs.yml`" ``` yaml plugins: - tags: listings_map: custom-id: toc: true ``` Then, just reference the listing identifier: ``` html <!-- material/tags custom-id --> ``` --- #### <!-- md:setting listing.include --> <!-- md:version 9.6.0 --> <!-- md:default none --> Use this setting to specify which tags should be included in the listing. Each page that features a tag that is part of this setting, is listed under the respective tag: === "Inline usage" ``` html <!-- material/tags { include: [foo, bar] } --> ``` === "Usage in `mkdocs.yml`" ``` yaml plugins: - tags: listings_map: custom-id: include: - foo - bar ``` Then, just reference the listing identifier: ``` html <!-- material/tags custom-id --> ``` If this setting is left empty, all tags and pages are included. --- #### <!-- md:setting listing.exclude --> <!-- md:version 9.6.0 --> <!-- md:default none --> Use this setting to specify which tags should be excluded from the listing. Each page that features a tag that is part of this setting, is excluded from the listing entirely: === "Inline usage" ``` html <!-- material/tags { exclude: [foo, bar] } --> ``` === "Usage in `mkdocs.yml`" ``` yaml plugins: - tags: listings_map: custom-id: exclude: - foo - bar ``` Then, just reference the listing identifier: ``` html <!-- material/tags custom-id --> ``` If this setting is left empty, no tags or pages are excluded. ����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/plugins/typeset.md�������������������������������������������������������0000664�0000000�0000000�00000004746�14753064456�0021267�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- title: Built-in typeset plugin icon: material/format-title --- # Built-in typeset plugin The typeset plugin allows to preserve the enriched presentation of titles and headlines within the navigation and table of contents. This means that code blocks, icons, emojis and any other inline formatting can be rendered exactly as defined in the page's content. --- <!-- md:sponsors --> __Sponsors only__ – this plugin is currently reserved to [our awesome sponsors]. [our awesome sponsors]: ../insiders/index.md ## Objective ### How it works When [building your project], MkDocs extracts the plain text from headlines and drops the original formatting. This is generally useful and a good idea, since this information is made available to other plugins that might have problems when being passed HTML instead of plain text. However, it also means that the entire formatting is lost. The plugin hooks into the rendering process, extracts the original headlines, and makes them available to be used in templates and plugins. The templates of Material for MkDocs use this information to render an enriched version of the navigation and table of contents. [building your project]: ../creating-your-site.md#building-your-site ### When to use it It's generally recommended to use the plugin, because it is a drop-in solution that doesn't require any configuration and is designed to work out of the box. Since it doesn't overwrite but only adds information, it's not expected to interfere with other plugins. ## Configuration <!-- md:sponsors --> <!-- md:version insiders-4.27.0 --> <!-- md:plugin [typeset] – built-in --> <!-- md:flag experimental --> As with all [built-in plugins], getting started with the typeset plugin is straightforward. Just add the following lines to `mkdocs.yml`, and observe the enriched navigation and table of contents: ``` yaml plugins: - typeset ``` The typeset plugin is built into Material for MkDocs and doesn't need to be installed. [typeset]: typeset.md [built-in plugins]: index.md ### General The following settings are available: --- #### <!-- md:setting config.enabled --> <!-- md:sponsors --> <!-- md:version insiders-4.27.0 --> <!-- md:default `true` --> Use this setting to enable or disable the plugin when [building your project]. It's normally not necessary to specify this setting, but if you want to disable the plugin, use: ``` yaml plugins: - typeset: enabled: false ``` [building your project]: ../creating-your-site.md#building-your-site ��������������������������mkdocs-material-9.6.4/docs/publishing-your-site.md��������������������������������������������������0000664�0000000�0000000�00000022300�14753064456�0022175�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Publishing your site The great thing about hosting project documentation in a `git` repository is the ability to deploy it automatically when new changes are pushed. MkDocs makes this ridiculously simple. ## GitHub Pages If you're already hosting your code on GitHub, [GitHub Pages] is certainly the most convenient way to publish your project documentation. It's free of charge and pretty easy to set up. [GitHub Pages]: https://pages.github.com/ ### with GitHub Actions Using [GitHub Actions] you can automate the deployment of your project documentation. At the root of your repository, create a new GitHub Actions workflow, e.g. `.github/workflows/ci.yml`, and copy and paste the following contents: === "Material for MkDocs" ``` yaml name: ci # (1)! on: push: branches: - master # (2)! - main permissions: contents: write jobs: deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Configure Git Credentials run: | git config user.name github-actions[bot] git config user.email 41898282+github-actions[bot]@users.noreply.github.com - uses: actions/setup-python@v5 with: python-version: 3.x - run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV # (3)! - uses: actions/cache@v4 with: key: mkdocs-material-${{ env.cache_id }} path: .cache restore-keys: | mkdocs-material- - run: pip install mkdocs-material # (4)! - run: mkdocs gh-deploy --force ``` 1. You can change the name to your liking. 2. At some point, GitHub renamed `master` to `main`. If your default branch is named `master`, you can safely remove `main`, vice versa. 3. Store the `cache_id` environmental variable to access it later during cache `key` creation. The name is case-sensitive, so be sure to align it with `${{ env.cache_id }}`. - The `--utc` option makes sure that each workflow runner uses the same time zone. - The `%V` format assures a cache update once a week. - You can change the format to `%F` to have daily cache updates. You can read the [manual page] to learn more about the formatting options of the `date` command. 4. This is the place to install further [MkDocs plugins] or Markdown extensions with `pip` to be used during the build: ``` sh pip install \ mkdocs-material \ mkdocs-awesome-pages-plugin \ ... ``` === "Insiders" ``` yaml name: ci on: push: branches: - master - main permissions: contents: write jobs: deploy: runs-on: ubuntu-latest if: github.event.repository.fork == false steps: - uses: actions/checkout@v4 - name: Configure Git Credentials run: | git config user.name github-actions[bot] git config user.email 41898282+github-actions[bot]@users.noreply.github.com - uses: actions/setup-python@v5 with: python-version: 3.x - run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV - uses: actions/cache@v4 with: key: mkdocs-material-${{ env.cache_id }} path: .cache restore-keys: | mkdocs-material- - run: apt-get install pngquant # (1)! - run: pip install git+https://${GH_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git - run: mkdocs gh-deploy --force env: GH_TOKEN: ${{ secrets.GH_TOKEN }} # (2)! ``` 1. This step is only necessary if you want to use the [built-in optimize plugin] to automatically compress images. 2. Remember to set the `GH_TOKEN` repository secret to the value of your [personal access token] when deploying [Insiders], which can be done using [GitHub secrets]. Now, when a new commit is pushed to either the `master` or `main` branches, the static site is automatically built and deployed. Push your changes to see the workflow in action. If the GitHub Page doesn't show up after a few minutes, go to the settings of your repository and ensure that the [publishing source branch] for your GitHub Page is set to `gh-pages`. Your documentation should shortly appear at `<username>.github.io/<repository>`. [GitHub Actions]: https://github.com/features/actions [MkDocs plugins]: https://github.com/mkdocs/mkdocs/wiki/MkDocs-Plugins [personal access token]: https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token [Insiders]: insiders/index.md [built-in optimize plugin]: plugins/optimize.md [GitHub secrets]: https://docs.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets [publishing source branch]: https://docs.github.com/en/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site [manual page]: https://man7.org/linux/man-pages/man1/date.1.html ### with MkDocs If you prefer to deploy your project documentation manually, you can just invoke the following command from the directory containing the `mkdocs.yml` file: ``` mkdocs gh-deploy --force ``` This will build your documentation and deploy it to a branch `gh-pages` in your repository. See [this overview in the MkDocs documentation] for more information. For a description of the arguments, see [the documentation for the command]. [this overview in the MkDocs documentation]: https://www.mkdocs.org/user-guide/deploying-your-docs/#project-pages [the documentation for the command]: https://www.mkdocs.org/user-guide/cli/#mkdocs-gh-deploy ## GitLab Pages If you're hosting your code on GitLab, deploying to [GitLab Pages] can be done by using the [GitLab CI] task runner. At the root of your repository, create a task definition named `.gitlab-ci.yml` and copy and paste the following contents: === "Material for MkDocs" ``` yaml pages: stage: deploy image: python:latest script: - pip install mkdocs-material - mkdocs build --site-dir public artifacts: paths: - public rules: - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH' ``` === "Insiders" ``` yaml pages: stage: deploy image: python:latest script: # (1)! - pip install git+https://${GH_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git - mkdocs build --site-dir public artifacts: paths: - public rules: - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH' ``` 1. Remember to set the `GH_TOKEN` repository secret to the value of your [personal access token] when deploying [Insiders], which can be done using [masked custom variables]. Now, when a new commit is pushed to the [default branch] (typically `master` or `main`), the static site is automatically built and deployed. Commit and push the file to your repository to see the workflow in action. Your documentation is not published under `<username>.gitlab.io/<repository>` by default since **GitLab 17.4** [^1]. However, if you prefer a cleaner URL structure, such as `<username>.gitlab.io/<repository>`, you need to adjust your configuration. To switch from a unique domain to the traditional URL structure, follow these steps: 1. Locate Your Repository 2. Go to **Settings › Pages** in the repository menu. 3. In the **Unique domain settings** section, **uncheck** the box labeled 4. **Use unique domain**. 5. Click **Save changes** to apply the update. Now you can reach your documentation under `<username>.gitlab.io/<repository>`. [^1]: [Release notes for Gitlab 17.4](https://about.gitlab.com/releases/2024/09/19/gitlab-17-4-released/) ## Other Since we can't cover all possible platforms, we rely on community contributed guides that explain how to deploy websites built with Material for MkDocs to other providers: <div class="mdx-columns" markdown> - [:simple-cloudflarepages: Cloudflare Pages][Cloudflare Pages] - [:simple-digitalocean: DigitalOcean][DigitalOcean] - [:material-airballoon-outline: Fly.io][Flyio] - [:simple-netlify: Netlify][Netlify] - [:simple-vercel: Vercel][Vercel] - [:simple-scaleway: Scaleway][Scaleway] </div> [GitLab Pages]: https://gitlab.com/pages [GitLab CI]: https://docs.gitlab.com/ee/ci/ [masked custom variables]: https://docs.gitlab.com/ee/ci/variables/#mask-a-cicd-variable [default branch]: https://docs.gitlab.com/ee/user/project/repository/branches/default.html [Cloudflare Pages]: https://deborahwrites.com/guides/deploy-host-mkdocs/deploy-mkdocs-material-cloudflare/ [DigitalOcean]: https://deborahwrites.com/guides/deploy-host-mkdocs/deploy-mkdocs-material-digitalocean-app-platform/ [Flyio]: https://documentation.breadnet.co.uk/cloud/fly/mkdocs-on-fly/ [Netlify]: https://deborahwrites.com/guides/deploy-host-mkdocs/deploy-mkdocs-material-netlify/ [Vercel]: https://deborahwrites.com/guides/deploy-host-mkdocs/deploy-mkdocs-material-vercel/ [Scaleway]: https://www.scaleway.com/en/docs/tutorials/using-bucket-website-with-mkdocs/ ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/reference/���������������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0017512�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/reference/admonitions.md�������������������������������������������������0000664�0000000�0000000�00000050056�14753064456�0022366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- icon: material/alert-outline --- # Admonitions Admonitions, also known as _call-outs_, are an excellent choice for including side content without significantly interrupting the document flow. Material for MkDocs provides several different types of admonitions and allows for the inclusion and nesting of arbitrary content. ## Configuration This configuration enables admonitions, allows to make them collapsible and to nest arbitrary content inside admonitions. Add the following lines to `mkdocs.yml`: ``` yaml markdown_extensions: - admonition - pymdownx.details - pymdownx.superfences ``` See additional configuration options: - [Admonition] - [Details] - [SuperFences] [Admonition]: ../setup/extensions/python-markdown.md#admonition [Details]: ../setup/extensions/python-markdown-extensions.md#details [SuperFences]: ../setup/extensions/python-markdown-extensions.md#superfences ### Admonition icons <!-- md:version 8.3.0 --> Each of the supported admonition types has a distinct icon, which can be changed to any icon bundled with the theme, or even a [custom icon]. Add the following lines to `mkdocs.yml`: ``` yaml theme: icon: admonition: <type>: <icon> # (1)! ``` 1. Enter a few keywords to find the perfect icon using our [icon search] and click on the shortcode to copy it to your clipboard: <div class="mdx-iconsearch" data-mdx-component="iconsearch"> <input class="md-input md-input--stretch mdx-iconsearch__input" placeholder="Search icon" data-mdx-component="iconsearch-query" value="alert" /> <div class="mdx-iconsearch-result" data-mdx-component="iconsearch-result" data-mdx-mode="file"> <div class="mdx-iconsearch-result__meta"></div> <ol class="mdx-iconsearch-result__list"></ol> </div> </div> ??? example "Expand to show alternate icon sets" === ":octicons-mark-github-16: Octicons" ``` yaml theme: icon: admonition: note: octicons/tag-16 abstract: octicons/checklist-16 info: octicons/info-16 tip: octicons/squirrel-16 success: octicons/check-16 question: octicons/question-16 warning: octicons/alert-16 failure: octicons/x-circle-16 danger: octicons/zap-16 bug: octicons/bug-16 example: octicons/beaker-16 quote: octicons/quote-16 ``` === ":fontawesome-brands-font-awesome: FontAwesome" ``` yaml theme: icon: admonition: note: fontawesome/solid/note-sticky abstract: fontawesome/solid/book info: fontawesome/solid/circle-info tip: fontawesome/solid/bullhorn success: fontawesome/solid/check question: fontawesome/solid/circle-question warning: fontawesome/solid/triangle-exclamation failure: fontawesome/solid/bomb danger: fontawesome/solid/skull bug: fontawesome/solid/robot example: fontawesome/solid/flask quote: fontawesome/solid/quote-left ``` [custom icon]: ../setup/changing-the-logo-and-icons.md#additional-icons [supported types]: #supported-types [icon search]: icons-emojis.md#search ## Usage Admonitions follow a simple syntax: a block starts with `!!!`, followed by a single keyword used as a [type qualifier]. The content of the block follows on the next line, indented by four spaces: ``` markdown title="Admonition" !!! note Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. ``` <div class="result" markdown> !!! note Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. </div> [type qualifier]: #supported-types ### Changing the title By default, the title will equal the type qualifier in titlecase. However, it can be changed by adding a quoted string containing valid Markdown (including links, formatting, ...) after the type qualifier: ``` markdown title="Admonition with custom title" !!! note "Phasellus posuere in sem ut cursus" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. ``` <div class="result" markdown> !!! note "Phasellus posuere in sem ut cursus" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. </div> ### Nested admonitions You can also include nested admonitions in your documentation. To do this, you can use your existing admonitions and indent the desired ones: ``` markdown title="Nested Admonition" !!! note "Outer Note" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. !!! note "Inner Note" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. ``` <div class="result" markdown> !!! note "Outer Note" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. !!! note "Inner Note" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. </div> ### Removing the title Similar to [changing the title], the icon and title can be omitted entirely by adding an empty string directly after the type qualifier. Note that this will not work for [collapsible blocks]: ``` markdown title="Admonition without title" !!! note "" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. ``` <div class="result" markdown> !!! note "" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. </div> [changing the title]: #changing-the-title [collapsible blocks]: #collapsible-blocks ### Collapsible blocks When [Details] is enabled and an admonition block is started with `???` instead of `!!!`, the admonition is rendered as an expandable block with a small toggle on the right side: ``` markdown title="Admonition, collapsible" ??? note Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. ``` <div class="result" markdown> ??? note Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. </div> Adding a `+` after the `???` token renders the block expanded: ``` markdown title="Admonition, collapsible and initially expanded" ???+ note Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. ``` <div class="result" markdown> ???+ note Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. </div> ### Inline blocks Admonitions can also be rendered as inline blocks (e.g., for sidebars), placing them to the right using the `inline` + `end` modifiers, or to the left using only the `inline` modifier: === ":octicons-arrow-right-16: inline end" !!! info inline end "Lorem ipsum" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. ``` markdown !!! info inline end "Lorem ipsum" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. ``` Use `inline end` to align to the right (left for rtl languages). === ":octicons-arrow-left-16: inline" !!! info inline "Lorem ipsum" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. ``` markdown !!! info inline "Lorem ipsum" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. ``` Use `inline` to align to the left (right for rtl languages). __Important__: admonitions that use the `inline` modifiers _must_ be declared prior to the content block you want to place them beside. If there's insufficient space to render the admonition next to the block, the admonition will stretch to the full width of the viewport, e.g., on mobile viewports. ### Supported types Following is a list of type qualifiers provided by Material for MkDocs, whereas the default type, and thus fallback for unknown type qualifiers, is `note`[^1]: [^1]: Previously, some of the supported types defined more than one qualifier. For example, authors could use `summary` or `tldr` as alternative qualifiers to render an [`abstract`](#+type:abstract) admonition. As this increased the size of the CSS that is shipped with Material for MkDocs, the additional type qualifiers are now all deprecated and will be removed in the next major version. This will also be mentioned in the upgrade guide. <!-- md:option type:note --> : !!! note Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. <!-- md:option type:abstract --> : !!! abstract Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. <!-- md:option type:info --> : !!! info Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. <!-- md:option type:tip --> : !!! tip Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. <!-- md:option type:success --> : !!! success Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. <!-- md:option type:question --> : !!! question Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. <!-- md:option type:warning --> : !!! warning Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. <!-- md:option type:failure --> : !!! failure Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. <!-- md:option type:danger --> : !!! danger Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. <!-- md:option type:bug --> : !!! bug Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. <!-- md:option type:example --> : !!! example Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. <!-- md:option type:quote --> : !!! quote Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. ## Customization ### Classic admonitions Prior to version <!-- md:version 8.5.6 -->, admonitions had a slightly different appearance: !!! classic "Note" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. If you want to restore this appearance, add the following CSS to an [additional style sheet]: <style> .md-typeset .admonition.classic { border-width: 0; border-left-width: 4px; } </style> === ":octicons-file-code-16: `docs/stylesheets/extra.css`" ``` css .md-typeset .admonition, .md-typeset details { border-width: 0; border-left-width: 4px; } ``` === ":octicons-file-code-16: `mkdocs.yml`" ``` yaml extra_css: - stylesheets/extra.css ``` ### Custom admonitions If you want to add a custom admonition type, all you need is a color and an `*.svg` icon. Copy the icon's code from the [`.icons`][custom icons] folder and add the following CSS to an [additional style sheet]: <style> :root { --md-admonition-icon--pied-piper: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9zm135.9 197.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1zM340.8 177c6.6 2.8 11.5 9.2 22.7 22.1 2-1.4 7.5-5.2 7.5-8.6 0-4.9-11.8-13.2-13.2-23 11.2-5.7 25.2-6 37.6-8.9 68.1-16.4 116.3-52.9 146.8-116.7C548.3 29.3 554 16.1 554.6 2l-2 2.6c-28.4 50-33 63.2-81.3 100-31.9 24.4-69.2 40.2-106.6 54.6l-6.3-.3v-21.8c-19.6 1.6-19.7-14.6-31.6-23-18.7 20.6-31.6 40.8-58.9 51.1-12.7 4.8-19.6 10-25.9 21.8 34.9-16.4 91.2-13.5 98.8-10zM555.5 0l-.6 1.1-.3.9.6-.6zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9.6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9zm-196.2 46.1v27.2l11.8-3.4-2.9-23.8zm-68.7-150.4l24.1 61.2 21-13.8-31.3-50.9zm84.4 154.9l2 12.4c9-1.5 58.4-6.6 58.4-14.1 0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3z"/></svg>') } .md-typeset .admonition.pied-piper, .md-typeset details.pied-piper { border-color: rgb(43, 155, 70); } .md-typeset .pied-piper > .admonition-title, .md-typeset .pied-piper > summary { background-color: rgba(43, 155, 70, 0.1); } .md-typeset .pied-piper > .admonition-title::before, .md-typeset .pied-piper > summary::before { background-color: rgb(43, 155, 70); -webkit-mask-image: var(--md-admonition-icon--pied-piper); mask-image: var(--md-admonition-icon--pied-piper); } </style> === ":octicons-file-code-16: `docs/stylesheets/extra.css`" ``` css :root { --md-admonition-icon--pied-piper: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9zm135.9 197.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1zM340.8 177c6.6 2.8 11.5 9.2 22.7 22.1 2-1.4 7.5-5.2 7.5-8.6 0-4.9-11.8-13.2-13.2-23 11.2-5.7 25.2-6 37.6-8.9 68.1-16.4 116.3-52.9 146.8-116.7C548.3 29.3 554 16.1 554.6 2l-2 2.6c-28.4 50-33 63.2-81.3 100-31.9 24.4-69.2 40.2-106.6 54.6l-6.3-.3v-21.8c-19.6 1.6-19.7-14.6-31.6-23-18.7 20.6-31.6 40.8-58.9 51.1-12.7 4.8-19.6 10-25.9 21.8 34.9-16.4 91.2-13.5 98.8-10zM555.5 0l-.6 1.1-.3.9.6-.6zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9.6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9zm-196.2 46.1v27.2l11.8-3.4-2.9-23.8zm-68.7-150.4l24.1 61.2 21-13.8-31.3-50.9zm84.4 154.9l2 12.4c9-1.5 58.4-6.6 58.4-14.1 0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3z"/></svg>') } .md-typeset .admonition.pied-piper, .md-typeset details.pied-piper { border-color: rgb(43, 155, 70); } .md-typeset .pied-piper > .admonition-title, .md-typeset .pied-piper > summary { background-color: rgba(43, 155, 70, 0.1); } .md-typeset .pied-piper > .admonition-title::before, .md-typeset .pied-piper > summary::before { background-color: rgb(43, 155, 70); -webkit-mask-image: var(--md-admonition-icon--pied-piper); mask-image: var(--md-admonition-icon--pied-piper); } ``` === ":octicons-file-code-16: `mkdocs.yml`" ``` yaml extra_css: - stylesheets/extra.css ``` After applying the customization, you can use the custom admonition type: ``` markdown title="Admonition with custom type" !!! pied-piper "Pied Piper" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. ``` <div class="result" markdown> !!! pied-piper "Pied Piper" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. </div> [custom icons]: https://github.com/squidfunk/mkdocs-material/tree/master/material/templates/.icons [additional style sheet]: ../customization.md#additional-css ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/reference/annotations.md�������������������������������������������������0000664�0000000�0000000�00000016444�14753064456�0022402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- icon: material/plus-circle --- # Annotations One of the flagship features of Material for MkDocs is the ability to inject annotations – little markers that can be added almost anywhere in a document and expand a tooltip containing arbitrary Markdown on click or keyboard focus. ## Configuration This configuration allows to add annotations to all inline- and block-level elements, as well as code blocks, and nest annotations inside each other. Add the following lines to `mkdocs.yml`: ``` yaml markdown_extensions: - attr_list - md_in_html - pymdownx.superfences ``` See additional configuration options: - [Attribute Lists] - [Markdown in HTML] - [SuperFences] [Attribute Lists]: ../setup/extensions/python-markdown.md#attribute-lists [Markdown in HTML]: ../setup/extensions/python-markdown.md#markdown-in-html [SuperFences]: ../setup/extensions/python-markdown-extensions.md#superfences ### Annotation icons <!-- md:version 9.2.0 --> The annotation icon can be changed to any icon bundled with the theme, or even a [custom icon], e.g. to material/arrow-right-circle:. Simply add the following lines to `mkdocs.yml`: ``` yaml theme: icon: annotation: material/arrow-right-circle # (1)! ``` 1. Enter a few keywords to find the perfect icon using our [icon search] and click on the shortcode to copy it to your clipboard: <div class="mdx-iconsearch" data-mdx-component="iconsearch"> <input class="md-input md-input--stretch mdx-iconsearch__input" placeholder="Search icon" data-mdx-component="iconsearch-query" value="material circle" /> <div class="mdx-iconsearch-result" data-mdx-component="iconsearch-result" data-mdx-mode="file"> <div class="mdx-iconsearch-result__meta"></div> <ol class="mdx-iconsearch-result__list"></ol> </div> </div> Some popular choices: - :material-plus-circle: - `material/plus-circle` - :material-circle-medium: - `material/circle-medium` - :material-record-circle: - `material/record-circle` - :material-arrow-right-circle: - `material/arrow-right-circle` - :material-arrow-right-circle-outline: - `material/arrow-right-circle-outline` - :material-chevron-right-circle: - `material/chevron-right-circle` - :material-star-four-points-circle: - `material/star-four-points-circle` - :material-plus-circle-outline: - `material/plus-circle-outline` [custom icon]: ../setup/changing-the-logo-and-icons.md#additional-icons [icon search]: icons-emojis.md#search ## Usage ### Using annotations <!-- md:version 9.2.0 --> <!-- md:flag experimental --> Annotations consist of two parts: a marker, which can be placed anywhere in a block marked with the `annotate` class, and content located in a list below the block containing the marker: ``` markdown title="Text with annotations" Lorem ipsum dolor sit amet, (1) consectetur adipiscing elit. { .annotate } 1. :man_raising_hand: I'm an annotation! I can contain `code`, __formatted text__, images, ... basically anything that can be expressed in Markdown. ``` <div class="result" markdown> Lorem ipsum dolor sit amet, (1) consectetur adipiscing elit. { .annotate } 1. :man_raising_hand: I'm an annotation! I can contain `code`, __formatted text__, images, ... basically anything that can be written in Markdown. </div> Note that the `annotate` class must only be added to the outermost block. All nested elements can use the same list to define annotations, except when annotations are nested themselves. #### in annotations When [SuperFences] is enabled, annotations can be nested inside annotations by adding the `annotate` class to the list item hosting the annotation content, repeating the process: ``` markdown title="Text with nested annotations" Lorem ipsum dolor sit amet, (1) consectetur adipiscing elit. { .annotate } 1. :man_raising_hand: I'm an annotation! (1) { .annotate } 1. :woman_raising_hand: I'm an annotation as well! ``` <div class="result" markdown> Lorem ipsum dolor sit amet, (1) consectetur adipiscing elit. { .annotate } 1. :man_raising_hand: I'm an annotation! (1) { .annotate style="margin-bottom: 0" } 1. :woman_raising_hand: I'm an annotation as well! </div> #### in admonitions The titles and bodies of [admonitions] can also host annotations by adding the `annotate` modifier after the type qualifier, which is similar to how [inline blocks] work: ``` markdown title="Admonition with annotations" !!! note annotate "Phasellus posuere in sem ut cursus (1)" Lorem ipsum dolor sit amet, (2) consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. 1. :man_raising_hand: I'm an annotation! 2. :woman_raising_hand: I'm an annotation as well! ``` <div class="result" markdown> !!! note annotate "Phasellus posuere in sem ut cursus (1)" Lorem ipsum dolor sit amet, (2) consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. 1. :man_raising_hand: I'm an annotation! 2. :woman_raising_hand: I'm an annotation as well! </div> [admonitions]: admonitions.md [inline blocks]: admonitions.md#inline-blocks #### in content tabs Content tabs can host annotations by adding the `annotate` class to the block of a dedicated content tab (and not to the container, which is not supported): ``` markdown title="Content tabs with annotations" === "Tab 1" Lorem ipsum dolor sit amet, (1) consectetur adipiscing elit. { .annotate } 1. :man_raising_hand: I'm an annotation! === "Tab 2" Phasellus posuere in sem ut cursus (1) { .annotate } 1. :woman_raising_hand: I'm an annotation as well! ``` <div class="result" markdown> === "Tab 1" Lorem ipsum dolor sit amet, (1) consectetur adipiscing elit. { .annotate } 1. :man_raising_hand: I'm an annotation! === "Tab 2" Phasellus posuere in sem ut cursus (1) { .annotate } 1. :woman_raising_hand: I'm an annotation as well! </div> #### in everything else The [Attribute Lists] extension is the key ingredient for adding annotations to most elements, but it has some [limitations]. However, it's always possible to leverage the [Markdown in HTML] extension to wrap arbitrary elements with a `div` with the `annotate` class: ```` html title="HTML with annotations" <div class="annotate" markdown> > Lorem ipsum dolor sit amet, (1) consectetur adipiscing elit. </div> 1. :man_raising_hand: I'm an annotation! ```` <div class="result" markdown> <div class="annotate" markdown> > Lorem ipsum dolor sit amet, (1) consectetur adipiscing elit. </div> 1. :man_raising_hand: I'm an annotation! </div> With this trick, annotations can also be added to blockquotes, lists, and many other elements that are not supported by the [Attribute Lists] extension. Furthermore, note that [code blocks follow different semantics]. !!! warning "Known limitations" Please note that annotations currently don't work in [data tables] as reported in #3453, as data tables are scrollable elements and positioning is very tricky to get right. This might be fixed in the future. [limitations]: https://python-markdown.github.io/extensions/attr_list/#limitations [code blocks follow different semantics]: code-blocks.md#adding-annotations [data tables]: data-tables.md ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/reference/buttons.md�����������������������������������������������������0000664�0000000�0000000�00000004220�14753064456�0021530�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- icon: material/button-cursor --- # Buttons Material for MkDocs provides dedicated styles for primary and secondary buttons that can be added to any link, `label` or `button` element. This is especially useful for documents or landing pages with dedicated _call-to-actions_. ## Configuration This configuration allows to add attributes to all inline- and block-level elements with a simple syntax, turning any link into a button. Add the following lines to `mkdocs.yml`: ``` yaml markdown_extensions: - attr_list ``` See additional configuration options: - [Attribute Lists] [Attribute Lists]: ../setup/extensions/python-markdown.md#attribute-lists ## Usage ### Adding buttons In order to render a link as a button, suffix it with curly braces and add the `.md-button` class selector to it. The button will receive the selected [primary color] and [accent color] if active. ``` markdown title="Button" [Subscribe to our newsletter](#){ .md-button } ``` <div class="result" markdown> [Subscribe to our newsletter][Demo]{ .md-button } </div> [primary color]: ../setup/changing-the-colors.md#primary-color [accent color]: ../setup/changing-the-colors.md#accent-color [Demo]: javascript:alert$.next("Demo") ### Adding primary buttons If you want to display a filled, primary button (like on the [landing page] of Material for MkDocs), add both, the `.md-button` and `.md-button--primary` CSS class selectors. ``` markdown title="Button, primary" [Subscribe to our newsletter](#){ .md-button .md-button--primary } ``` <div class="result" markdown> [Subscribe to our newsletter][Demo]{ .md-button .md-button--primary } </div> [landing page]: ../index.md ### Adding icon buttons Of course, icons can be added to all types of buttons by using the [icon syntax] together with any valid icon shortcode, which can be easily found with a few keystrokes through our [icon search]. ``` markdown title="Button with icon" [Send :fontawesome-solid-paper-plane:](#){ .md-button } ``` <div class="result" markdown> [Send :fontawesome-solid-paper-plane:][Demo]{ .md-button } </div> [icon syntax]: icons-emojis.md#using-icons [icon search]: icons-emojis.md#search ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/reference/code-blocks.md�������������������������������������������������0000664�0000000�0000000�00000040532�14753064456�0022225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- icon: material/code-json --- # Code blocks Code blocks and examples are an essential part of technical project documentation. Material for MkDocs provides different ways to set up syntax highlighting for code blocks, either during build time using [Pygments] or during runtime using a JavaScript syntax highlighter. [Pygments]: https://pygments.org ## Configuration This configuration enables syntax highlighting on code blocks and inline code blocks, and allows to include source code directly from other files. Add the following lines to `mkdocs.yml`: ``` yaml markdown_extensions: - pymdownx.highlight: anchor_linenums: true line_spans: __span pygments_lang_class: true - pymdownx.inlinehilite - pymdownx.snippets - pymdownx.superfences ``` The following sections discuss how to use different syntax highlighting features with [Pygments], the recommended highlighter, so they don't apply when using a JavaScript syntax highlighter. See additional configuration options: - [Highlight] - [InlineHilite] - [SuperFences] - [Snippets] [Highlight]: ../setup/extensions/python-markdown-extensions.md#highlight [InlineHilite]: ../setup/extensions/python-markdown-extensions.md#inlinehilite [SuperFences]: ../setup/extensions/python-markdown-extensions.md#superfences [Snippets]: ../setup/extensions/python-markdown-extensions.md#snippets ### Code copy button <!-- md:version 9.0.0 --> <!-- md:feature --> Code blocks can automatically render a button on the right side to allow the user to copy a code block's contents to the clipboard. Add the following to `mkdocs.yml` to enable them globally: ``` yaml theme: features: - content.code.copy ``` ??? info "Enabling or disabling code copy buttons for a specific code block" If you don't want to enable code copy buttons globally, you can enable them for a specific code block by using a slightly different syntax based on the [Attribute Lists] extension: ```` yaml ``` { .yaml .copy } # Code block content ``` ```` Note that there must be a language shortcode, which has to come first and must also be prefixed by a `.`. Similarly, the copy button can also be disabled for a specific code block: ```` { .yaml .no-copy } ``` { .yaml .no-copy } # Code block content ``` ```` To enable or disable the copy button without syntax highlighting, you can use the `.text` language shortcode, which doesn't highlight anything. ### Code selection button <!-- md:sponsors --> <!-- md:version insiders-4.32.0 --> <!-- md:flag experimental --> Code blocks can include a button to allow for the selection of line ranges by the user, which is perfect for linking to a specific subsection of a code block. This allows the user to apply [line highlighting] dynamically. Add the following to `mkdocs.yml` to enable it globally: ``` yaml theme: features: - content.code.select ``` ??? info "Enabling or disabling code selection buttons for a specific code block" If you don't want to enable code selection buttons globally, you can enable them for a specific code block by using a slightly different syntax based on the [Attribute Lists] extension: ```` yaml ``` { .yaml .select } # Code block content ``` ```` Note that the language shortcode which has to come first must now also be prefixed by a `.`. Similarly, the selection button can also be disabled for a specific code block: ```` { .yaml .no-select } ``` { .yaml .no-select } # Code block content ``` ```` [line highlighting]: #highlighting-specific-lines ### Code annotations <!-- md:version 8.0.0 --> <!-- md:feature --> Code annotations offer a comfortable and friendly way to attach arbitrary content to specific sections of code blocks by adding numeric markers in block and inline comments in the language of the code block. Add the following to `mkdocs.yml` to enable them globally: ``` yaml theme: features: - content.code.annotate # (1)! ``` 1. :man_raising_hand: I'm a code annotation! I can contain `code`, __formatted text__, images, ... basically anything that can be written in Markdown. ??? info "Enabling code annotations for a specific code block" If you don't want to enable code annotations globally, because you don't like the automatic inlining behavior, you can enable them for a specific code block by using a slightly different syntax based on the [Attribute Lists] extension: ```` yaml ``` { .yaml .annotate } # Code block content ``` ```` Note that the language shortcode which has to come first must now also be prefixed by a `.`. [Attribute Lists]: ../setup/extensions/python-markdown.md#attribute-lists #### Custom selectors <!-- md:sponsors --> <!-- md:version insiders-4.32.0 --> <!-- md:flag experimental --> Normally, code annotations can only be [placed in comments], as comments can be considered safe for placement. However, sometimes it might be necessary to place annotations in parts of the code block where comments are not allowed, e.g. in strings. Additional selectors can be set per-language: ``` yaml extra: annotate: json: [.s2] # (1)! ``` 1. [`.s2`][s2] is the name of the lexeme that [Pygments] generates for double-quoted strings. If you want to use a code annotation in another lexeme than a comment, inspect the code block and determine which lexeme needs to be added to the list of additional selectors. __Important__: Code annotations cannot be split between lexemes. Now, code annotations can be used from within strings in JSON: ``` json { "key": "value (1)" } ``` 1. :man_raising_hand: I'm a code annotation! I can contain `code`, __formatted text__, images, ... basically anything that can be written in Markdown. [placed in comments]: #adding-annotations [s2]: https://github.com/squidfunk/mkdocs-material/blob/87d5ca487b9d9ab95c41ee72813149d214048693/src/assets/stylesheets/main/extensions/pymdownx/_highlight.scss#L45 ## Usage Code blocks must be enclosed with two separate lines containing three backticks. To add syntax highlighting to those blocks, add the language shortcode directly after the opening block. See the [list of available lexers] to find the shortcode for a given language: ```` markdown title="Code block" ``` py import tensorflow as tf ``` ```` <div class="result" markdown> ``` py import tensorflow as tf ``` </div> [list of available lexers]: https://pygments.org/docs/lexers/ ### Adding a title In order to provide additional context, a custom title can be added to a code block by using the `title="<custom title>"` option directly after the shortcode, e.g. to display the name of a file: ```` markdown title="Code block with title" ``` py title="bubble_sort.py" def bubble_sort(items): for i in range(len(items)): for j in range(len(items) - 1 - i): if items[j] > items[j + 1]: items[j], items[j + 1] = items[j + 1], items[j] ``` ```` <div class="result" markdown> ``` py title="bubble_sort.py" def bubble_sort(items): for i in range(len(items)): for j in range(len(items) - 1 - i): if items[j] > items[j + 1]: items[j], items[j + 1] = items[j + 1], items[j] ``` </div> ### Adding annotations Code annotations can be placed anywhere in a code block where a comment for the language of the block can be placed, e.g. for JavaScript in `#!js // ...` and `#!js /* ... */`, for YAML in `#!yaml # ...`, etc.[^1]: [^1]: Code annotations require syntax highlighting with [Pygments] – they're currently not compatible with JavaScript syntax highlighters, or languages that do not have comments in their grammar. However, we're actively working on supporting alternate ways of defining code annotations, allowing to always place code annotations at the end of lines. ```` markdown title="Code block with annotation" ``` yaml theme: features: - content.code.annotate # (1) ``` 1. :man_raising_hand: I'm a code annotation! I can contain `code`, __formatted text__, images, ... basically anything that can be written in Markdown. ```` <div class="result" markdown> ``` yaml theme: features: - content.code.annotate # (1) ``` 1. :man_raising_hand: I'm a code annotation! I can contain `code`, __formatted text__, images, ... basically anything that can be written in Markdown. </div> #### Stripping comments <!-- md:version 8.5.0 --> <!-- md:flag experimental --> If you wish to strip the comment characters surrounding a code annotation, simply add an `!` after the closing parenthesis of the code annotation: ```` markdown title="Code block with annotation, stripped" ``` yaml # (1)! ``` 1. Look ma, less line noise! ```` <div class="result" markdown> ``` yaml # (1)! ``` 1. Look ma, less line noise! </div> Note that this only allows for a single code annotation to be rendered per comment. If you want to add multiple code annotations, comments cannot be stripped for technical reasons. ### Adding line numbers Line numbers can be added to a code block by using the `linenums="<start>"` option directly after the shortcode, whereas `<start>` represents the starting line number. A code block can start from a line number other than `1`, which allows to split large code blocks for readability: ```` markdown title="Code block with line numbers" ``` py linenums="1" def bubble_sort(items): for i in range(len(items)): for j in range(len(items) - 1 - i): if items[j] > items[j + 1]: items[j], items[j + 1] = items[j + 1], items[j] ``` ```` <div class="result" markdown> ``` py linenums="1" def bubble_sort(items): for i in range(len(items)): for j in range(len(items) - 1 - i): if items[j] > items[j + 1]: items[j], items[j + 1] = items[j + 1], items[j] ``` </div> ### Highlighting specific lines Specific lines can be highlighted by passing the line numbers to the `hl_lines` argument placed right after the language shortcode. Note that line counts start at `1`, regardless of the starting line number specified as part of [`linenums`][Adding line numbers]: === "Lines" ```` markdown title="Code block with highlighted lines" ``` py hl_lines="2 3" def bubble_sort(items): for i in range(len(items)): for j in range(len(items) - 1 - i): if items[j] > items[j + 1]: items[j], items[j + 1] = items[j + 1], items[j] ``` ```` <div class="result" markdown> ``` py linenums="1" hl_lines="2 3" def bubble_sort(items): for i in range(len(items)): for j in range(len(items) - 1 - i): if items[j] > items[j + 1]: items[j], items[j + 1] = items[j + 1], items[j] ``` </div> === "Line ranges" ```` markdown title="Code block with highlighted line range" ``` py hl_lines="3-5" def bubble_sort(items): for i in range(len(items)): for j in range(len(items) - 1 - i): if items[j] > items[j + 1]: items[j], items[j + 1] = items[j + 1], items[j] ``` ```` <div class="result" markdown> ``` py linenums="1" hl_lines="3-5" def bubble_sort(items): for i in range(len(items)): for j in range(len(items) - 1 - i): if items[j] > items[j + 1]: items[j], items[j + 1] = items[j + 1], items[j] ``` </div> [Adding line numbers]: #adding-line-numbers ### Highlighting inline code blocks When [InlineHilite] is enabled, syntax highlighting can be applied to inline code blocks by prefixing them with a shebang, i.e. `#!`, directly followed by the corresponding [language shortcode][list of available lexers]. ``` markdown title="Inline code block" The `#!python range()` function is used to generate a sequence of numbers. ``` <div class="result" markdown> The `#!python range()` function is used to generate a sequence of numbers. </div> ### Embedding external files When [Snippets] is enabled, content from other files (including source files) can be embedded by using the [`--8<--` notation][Snippets notation] directly from within a code block: ```` markdown title="Code block with external content" ``` title=".browserslistrc" ;--8<-- ".browserslistrc" ``` ```` <div class="result" markdown> ``` title=".browserslistrc" last 4 years ``` </div> [Snippets notation]: https://facelessuser.github.io/pymdown-extensions/extensions/snippets/#snippets-notation ## Customization ### Custom syntax theme If [Pygments] is used, Material for MkDocs provides the [styles for code blocks] [colors], which are built with a custom and well-balanced palette that works equally well for both [color schemes]: - :material-checkbox-blank-circle:{ style="color: var(--md-code-hl-number-color) " } `--md-code-hl-number-color` - :material-checkbox-blank-circle:{ style="color: var(--md-code-hl-special-color) " } `--md-code-hl-special-color` - :material-checkbox-blank-circle:{ style="color: var(--md-code-hl-function-color) " } `--md-code-hl-function-color` - :material-checkbox-blank-circle:{ style="color: var(--md-code-hl-constant-color) " } `--md-code-hl-constant-color` - :material-checkbox-blank-circle:{ style="color: var(--md-code-hl-keyword-color) " } `--md-code-hl-keyword-color` - :material-checkbox-blank-circle:{ style="color: var(--md-code-hl-string-color) " } `--md-code-hl-string-color` - :material-checkbox-blank-circle:{ style="color: var(--md-code-hl-name-color) " } `--md-code-hl-name-color` - :material-checkbox-blank-circle:{ style="color: var(--md-code-hl-operator-color) " } `--md-code-hl-operator-color` - :material-checkbox-blank-circle:{ style="color: var(--md-code-hl-punctuation-color) " } `--md-code-hl-punctuation-color` - :material-checkbox-blank-circle:{ style="color: var(--md-code-hl-comment-color) " } `--md-code-hl-comment-color` - :material-checkbox-blank-circle:{ style="color: var(--md-code-hl-generic-color) " } `--md-code-hl-generic-color` - :material-checkbox-blank-circle:{ style="color: var(--md-code-hl-variable-color) " } `--md-code-hl-variable-color` Code block foreground, background and line highlight colors are defined via: - :material-checkbox-blank-circle:{ style="color: var(--md-code-fg-color) " } `--md-code-fg-color` - :material-checkbox-blank-circle:{ style="color: var(--md-code-bg-color) " } `--md-code-bg-color` - :material-checkbox-blank-circle:{ style="color: var(--md-code-hl-color) " } `--md-code-hl-color` Let's say you want to change the color of `#!js "strings"`. While there are several [types of string tokens], they use the same color. You can assign a new color by using an [additional style sheet]: === ":octicons-file-code-16: `docs/stylesheets/extra.css`" ``` css :root > * { --md-code-hl-string-color: #0FF1CE; } ``` === ":octicons-file-code-16: `mkdocs.yml`" ``` yaml extra_css: - stylesheets/extra.css ``` If you want to tweak a specific type of string, e.g. ``#!js `backticks` ``, you can lookup the specific CSS class name in the [syntax theme definition], and override it as part of your [additional style sheet]: === ":octicons-file-code-16: `docs/stylesheets/extra.css`" ``` css .highlight .sb { color: #0FF1CE; } ``` === ":octicons-file-code-16: `mkdocs.yml`" ``` yaml extra_css: - stylesheets/extra.css ``` [colors]: https://github.com/squidfunk/mkdocs-material/blob/master/src/templates/assets/stylesheets/main/_colors.scss [color schemes]: ../setup/changing-the-colors.md#color-scheme [types of string tokens]: https://pygments.org/docs/tokens/#literals [additional style sheet]: ../customization.md#additional-css [syntax theme definition]: https://github.com/squidfunk/mkdocs-material/blob/master/src/templates/assets/stylesheets/main/extensions/pymdownx/_highlight.scss ### Annotation tooltip width If you have a lot of content hosted inside your code annotations, it can be a good idea to increase the width of the tooltip by adding the following as part of an [additional style sheet]: === ":octicons-file-code-16: `docs/stylesheets/extra.css`" ``` css :root { --md-tooltip-width: 600px; } ``` === ":octicons-file-code-16: `mkdocs.yml`" ``` yaml extra_css: - stylesheets/extra.css ``` This will render annotations with a larger width: <div style="--md-tooltip-width: 600px;" markdown> ``` yaml # (1)! ``` 1. Muuuuuuuuuuuuuuuch more space for content </div> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/reference/content-tabs.md������������������������������������������������0000664�0000000�0000000�00000013315�14753064456�0022440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- icon: material/tab --- # Content tabs Sometimes, it's desirable to group alternative content under different tabs, e.g. when describing how to access an API from different languages or environments. Material for MkDocs allows for beautiful and functional tabs, grouping code blocks and other content. ## Configuration This configuration enables content tabs, and allows to nest arbitrary content inside content tabs, including code blocks and ... more content tabs! Add the following lines to `mkdocs.yml`: ``` yaml markdown_extensions: - pymdownx.superfences - pymdownx.tabbed: alternate_style: true ``` See additional configuration options: - [SuperFences] - [Tabbed] [SuperFences]: ../setup/extensions/python-markdown-extensions.md#superfences [Tabbed]: ../setup/extensions/python-markdown-extensions.md#tabbed ### Anchor links <!-- md:version 9.5.0 --> <!-- md:flag experimental --> In order to link to content tabs and share them more easily, an anchor link is automatically added to each content tab, which you can copy via right click or open in a new tab: === "Open me in a new tab ..." === "... or me ..." === "... or even me" You can copy the link of the tab and create a link on the same or any other page. For example, you can [jump to the third tab above this paragraph][tab_1] or to the [publishing guide for Insiders][tab_2]. !!! tip "Readable anchor links" [Python Markdown Extensions] 9.6 adds support for [slugification] of content tabs, which produces nicer looking and more readable anchor links. Enable the slugify function with the following lines: ``` yaml markdown_extensions: - pymdownx.tabbed: slugify: !!python/object/apply:pymdownx.slugs.slugify kwds: case: lower ``` Fore more information, please [see the extension guide][slugification]. [tab_1]: #anchor-links--or-even-me [tab_2]: ../publishing-your-site.md#with-github-actions-insiders [Python Markdown Extensions]: https://facelessuser.github.io/pymdown-extensions/ [slugification]: ../setup/extensions/python-markdown-extensions.md#+pymdownx.tabbed.slugify ### Linked content tabs <!-- md:version 8.3.0 --> <!-- md:feature --> When enabled, all content tabs across the whole documentation site will be linked and switch to the same label when the user clicks on a tab. Add the following lines to `mkdocs.yml`: ``` yaml theme: features: - content.tabs.link ``` Content tabs are linked based on their label, not offset. This means that all tabs with the same label will be activated when a user clicks a content tab regardless of order inside a container. Furthermore, this feature is fully integrated with [instant loading] and persisted across page loads. === "Feature enabled" [![Linked content tabs enabled]][Linked content tabs enabled] === "Feature disabled" [![Linked content tabs disabled]][Linked content tabs disabled] [instant loading]: ../setup/setting-up-navigation.md#instant-loading [Linked content tabs enabled]: ../assets/screenshots/content-tabs-link.png [Linked content tabs disabled]: ../assets/screenshots/content-tabs.png ## Usage ### Grouping code blocks Code blocks are one of the primary targets to be grouped, and can be considered a special case of content tabs, as tabs with a single code block are always rendered without horizontal spacing: ``` title="Content tabs with code blocks" === "C" ``` c #include <stdio.h> int main(void) { printf("Hello world!\n"); return 0; } ``` === "C++" ``` c++ #include <iostream> int main(void) { std::cout << "Hello world!" << std::endl; return 0; } ``` ``` <div class="result" markdown> === "C" ``` c #include <stdio.h> int main(void) { printf("Hello world!\n"); return 0; } ``` === "C++" ``` c++ #include <iostream> int main(void) { std::cout << "Hello world!" << std::endl; return 0; } ``` </div> ### Grouping other content When a content tab contains more than one code block, it is rendered with horizontal spacing. Vertical spacing is never added, but can be achieved by nesting tabs in other blocks: ``` title="Content tabs" === "Unordered list" * Sed sagittis eleifend rutrum * Donec vitae suscipit est * Nulla tempor lobortis orci === "Ordered list" 1. Sed sagittis eleifend rutrum 2. Donec vitae suscipit est 3. Nulla tempor lobortis orci ``` <div class="result" markdown> === "Unordered list" * Sed sagittis eleifend rutrum * Donec vitae suscipit est * Nulla tempor lobortis orci === "Ordered list" 1. Sed sagittis eleifend rutrum 2. Donec vitae suscipit est 3. Nulla tempor lobortis orci </div> ### Embedded content When [SuperFences] is enabled, content tabs can contain arbitrary nested content, including further content tabs, and can be nested in other blocks like [admonitions] or blockquotes: ``` title="Content tabs in admonition" !!! example === "Unordered List" ``` markdown * Sed sagittis eleifend rutrum * Donec vitae suscipit est * Nulla tempor lobortis orci ``` === "Ordered List" ``` markdown 1. Sed sagittis eleifend rutrum 2. Donec vitae suscipit est 3. Nulla tempor lobortis orci ``` ``` <div class="result" markdown> !!! example === "Unordered List" ``` markdown * Sed sagittis eleifend rutrum * Donec vitae suscipit est * Nulla tempor lobortis orci ``` === "Ordered List" ``` markdown 1. Sed sagittis eleifend rutrum 2. Donec vitae suscipit est 3. Nulla tempor lobortis orci ``` </div> [admonitions]: admonitions.md �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/reference/data-tables.md�������������������������������������������������0000664�0000000�0000000�00000014135�14753064456�0022221�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- icon: material/table-edit --- # Data tables Material for MkDocs defines default styles for data tables – an excellent way of rendering tabular data in project documentation. Furthermore, customizations like [sortable tables] can be achieved with a third-party library and some [additional JavaScript]. [sortable tables]: #sortable-tables [additional JavaScript]: ../customization.md#additional-javascript ## Configuration This configuration enables Markdown table support, which should normally be enabled by default, but to be sure, add the following lines to `mkdocs.yml`: ``` yaml markdown_extensions: - tables ``` See additional configuration options: - [Tables] [Tables]: ../setup/extensions/python-markdown.md#tables ## Usage Data tables can be used at any position in your project documentation and can contain arbitrary Markdown, including inline code blocks, as well as [icons and emojis]: ``` markdown title="Data table" | Method | Description | | ----------- | ------------------------------------ | | `GET` | :material-check: Fetch resource | | `PUT` | :material-check-all: Update resource | | `DELETE` | :material-close: Delete resource | ``` <div class="result" markdown> | Method | Description | | ----------- | ------------------------------------ | | `GET` | :material-check: Fetch resource | | `PUT` | :material-check-all: Update resource | | `DELETE` | :material-close: Delete resource | </div> [icons and emojis]: icons-emojis.md ### Column alignment If you want to align a specific column to the `left`, `center` or `right`, you can use the [regular Markdown syntax] placing `:` characters at the beginning and/or end of the divider. === "Left" ``` markdown hl_lines="2" title="Data table, columns aligned to left" | Method | Description | | :---------- | :----------------------------------- | | `GET` | :material-check: Fetch resource | | `PUT` | :material-check-all: Update resource | | `DELETE` | :material-close: Delete resource | ``` <div class="result" markdown> | Method | Description | | :---------- | :----------------------------------- | | `GET` | :material-check: Fetch resource | | `PUT` | :material-check-all: Update resource | | `DELETE` | :material-close: Delete resource | </div> === "Center" ``` markdown hl_lines="2" title="Data table, columns centered" | Method | Description | | :---------: | :----------------------------------: | | `GET` | :material-check: Fetch resource | | `PUT` | :material-check-all: Update resource | | `DELETE` | :material-close: Delete resource | ``` <div class="result" markdown> | Method | Description | | :---------: | :----------------------------------: | | `GET` | :material-check: Fetch resource | | `PUT` | :material-check-all: Update resource | | `DELETE` | :material-close: Delete resource | </div> === "Right" ``` markdown hl_lines="2" title="Data table, columns aligned to right" | Method | Description | | ----------: | -----------------------------------: | | `GET` | :material-check: Fetch resource | | `PUT` | :material-check-all: Update resource | | `DELETE` | :material-close: Delete resource | ``` <div class="result" markdown> | Method | Description | | ----------: | -----------------------------------: | | `GET` | :material-check: Fetch resource | | `PUT` | :material-check-all: Update resource | | `DELETE` | :material-close: Delete resource | </div> [regular Markdown syntax]: https://www.markdownguide.org/extended-syntax/#tables ## Customization ### Sortable tables If you want to make data tables sortable, you can add [tablesort], which is natively integrated with Material for MkDocs and will also work with [instant loading] via [additional JavaScript]: === ":octicons-file-code-16: `docs/javascripts/tablesort.js`" ``` js document$.subscribe(function() { var tables = document.querySelectorAll("article table:not([class])") tables.forEach(function(table) { new Tablesort(table) }) }) ``` === ":octicons-file-code-16: `mkdocs.yml`" ``` yaml extra_javascript: - https://unpkg.com/tablesort@5.3.0/dist/tablesort.min.js - javascripts/tablesort.js ``` After applying the customization, data tables can be sorted by clicking on a column: ``` markdown title="Data table, columns sortable" | Method | Description | | ----------- | ------------------------------------ | | `GET` | :material-check: Fetch resource | | `PUT` | :material-check-all: Update resource | | `DELETE` | :material-close: Delete resource | ``` <div class="result" markdown> | Method | Description | | ----------- | ------------------------------------ | | `GET` | :material-check: Fetch resource | | `PUT` | :material-check-all: Update resource | | `DELETE` | :material-close: Delete resource | </div> Note that [tablesort] provides alternative comparison implementations like numbers, filesizes, dates and month names. See the [tablesort documentation] [tablesort] for more information. <script src="https://unpkg.com/tablesort@5.3.0/dist/tablesort.min.js"></script> <script> var tables = document.querySelectorAll("article table") new Tablesort(tables.item(tables.length - 1)); </script> [tablesort]: http://tristen.ca/tablesort/demo/ [instant loading]: ../setup/setting-up-navigation.md#instant-loading ### Import table from file The plugin [mkdocs-table-reader-plugin][table-reader-docs] allows you to import data from a CSV or Excel file. [table-reader-docs]: https://timvink.github.io/mkdocs-table-reader-plugin/ �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/reference/diagrams.md����������������������������������������������������0000664�0000000�0000000�00000015635�14753064456�0021635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- icon: material/graph-outline --- # Diagrams Diagrams help to communicate complex relationships and interconnections between different technical components, and are a great addition to project documentation. Material for MkDocs integrates with [Mermaid.js], a very popular and flexible solution for drawing diagrams. [Mermaid.js]: https://mermaid.js.org/ ## Configuration <!-- md:version 8.2.0 --> This configuration enables native support for [Mermaid.js] diagrams. Material for MkDocs will automatically initialize the JavaScript runtime when a page includes a `mermaid` code block: ``` yaml markdown_extensions: - pymdownx.superfences: custom_fences: - name: mermaid class: mermaid format: !!python/name:pymdownx.superfences.fence_code_format ``` No further configuration is necessary. Advantages over a custom integration: - [x] Works with [instant loading] without any additional effort - [x] Diagrams automatically use fonts and colors defined in `mkdocs.yml`[^1] - [x] Fonts and colors can be customized with [additional style sheets] - [x] Support for both, light and dark color schemes – _try it on this page!_ [^1]: While all [Mermaid.js] features should work out-of-the-box, Material for MkDocs will currently only adjust the fonts and colors for flowcharts, sequence diagrams, class diagrams, state diagrams and entity relationship diagrams. See the section on [other diagrams] for more information why this is currently not implemented for all diagrams. [instant loading]: ../setup/setting-up-navigation.md#instant-loading [additional style sheets]: ../customization.md#additional-css [other diagrams]: #other-diagram-types ## Usage ### Using flowcharts [Flowcharts] are diagrams that represent workflows or processes. The steps are rendered as nodes of various kinds and are connected by edges, describing the necessary order of steps: ```` markdown title="Flow chart" ``` mermaid graph LR A[Start] --> B{Error?}; B -->|Yes| C[Hmm...]; C --> D[Debug]; D --> B; B ---->|No| E[Yay!]; ``` ```` <div class="result" markdown> ``` mermaid graph LR A[Start] --> B{Error?}; B -->|Yes| C[Hmm...]; C --> D[Debug]; D --> B; B ---->|No| E[Yay!]; ``` </div> [Flowcharts]: https://mermaid.js.org/syntax/flowchart.html ### Using sequence diagrams [Sequence diagrams] describe a specific scenario as sequential interactions between multiple objects or actors, including the messages that are exchanged between those actors: ```` markdown title="Sequence diagram" ``` mermaid sequenceDiagram autonumber Alice->>John: Hello John, how are you? loop Healthcheck John->>John: Fight against hypochondria end Note right of John: Rational thoughts! John-->>Alice: Great! John->>Bob: How about you? Bob-->>John: Jolly good! ``` ```` <div class="result" markdown> ``` mermaid sequenceDiagram autonumber Alice->>John: Hello John, how are you? loop Healthcheck John->>John: Fight against hypochondria end Note right of John: Rational thoughts! John-->>Alice: Great! John->>Bob: How about you? Bob-->>John: Jolly good! ``` </div> [Sequence diagrams]: https://mermaid.js.org/syntax/sequenceDiagram.html ### Using state diagrams [State diagrams] are a great tool to describe the behavior of a system, decomposing it into a finite number of states, and transitions between those states: ```` markdown title="State diagram" ``` mermaid stateDiagram-v2 state fork_state <<fork>> [*] --> fork_state fork_state --> State2 fork_state --> State3 state join_state <<join>> State2 --> join_state State3 --> join_state join_state --> State4 State4 --> [*] ``` ```` <div class="result" markdown> ``` mermaid stateDiagram-v2 state fork_state <<fork>> [*] --> fork_state fork_state --> State2 fork_state --> State3 state join_state <<join>> State2 --> join_state State3 --> join_state join_state --> State4 State4 --> [*] ``` </div> [State diagrams]: https://mermaid.js.org/syntax/stateDiagram.html ### Using class diagrams [Class diagrams] are central to object oriented programming, describing the structure of a system by modelling entities as classes and relationships between them: ```` markdown title="Class diagram" ``` mermaid classDiagram Person <|-- Student Person <|-- Professor Person : +String name Person : +String phoneNumber Person : +String emailAddress Person: +purchaseParkingPass() Address "1" <-- "0..1" Person:lives at class Student{ +int studentNumber +int averageMark +isEligibleToEnrol() +getSeminarsTaken() } class Professor{ +int salary } class Address{ +String street +String city +String state +int postalCode +String country -validate() +outputAsLabel() } ``` ```` <div class="result" markdown> ``` mermaid classDiagram Person <|-- Student Person <|-- Professor Person : +String name Person : +String phoneNumber Person : +String emailAddress Person: +purchaseParkingPass() Address "1" <-- "0..1" Person:lives at class Student{ +int studentNumber +int averageMark +isEligibleToEnrol() +getSeminarsTaken() } class Professor{ +int salary } class Address{ +String street +String city +String state +int postalCode +String country -validate() +outputAsLabel() } ``` </div> [Class diagrams]: https://mermaid.js.org/syntax/classDiagram.html ### Using entity-relationship diagrams An [entity-relationship diagram] is composed of entity types and specifies relationships that exist between entities. It describes inter-related things in a specific domain of knowledge: ```` markdown title="Entity-relationship diagram" ``` mermaid erDiagram CUSTOMER ||--o{ ORDER : places ORDER ||--|{ LINE-ITEM : contains LINE-ITEM { string name int pricePerUnit } CUSTOMER }|..|{ DELIVERY-ADDRESS : uses ``` ```` <div class="result" markdown> ``` mermaid erDiagram CUSTOMER ||--o{ ORDER : places ORDER ||--|{ LINE-ITEM : contains LINE-ITEM { string name int pricePerUnit } CUSTOMER }|..|{ DELIVERY-ADDRESS : uses ``` </div> [entity-relationship diagram]: https://mermaid.js.org/syntax/entityRelationshipDiagram.html ### Other diagram types Besides the diagram types listed above, [Mermaid.js] provides support for [pie charts], [gantt charts], [user journeys], [git graphs] and [requirement diagrams], all of which are not officially supported by Material for MkDocs. Those diagrams should still work as advertised by [Mermaid.js], but we don't consider them a good choice, mostly as they don't work well on mobile. [pie charts]: https://mermaid.js.org/syntax/pie.html [gantt charts]: https://mermaid.js.org/syntax/gantt.html [user journeys]: https://mermaid.js.org/syntax/userJourney.html [git graphs]: https://mermaid.js.org/syntax/gitgraph.html [requirement diagrams]: https://mermaid.js.org/syntax/requirementDiagram.html ���������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/reference/footnotes.md���������������������������������������������������0000664�0000000�0000000�00000005561�14753064456�0022063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- icon: material/format-align-bottom --- # Footnotes Footnotes are a great way to add supplemental or additional information to a specific word, phrase or sentence without interrupting the flow of a document. Material for MkDocs provides the ability to define, reference and render footnotes. ## Configuration This configuration adds the ability to define inline footnotes, which are then rendered below all Markdown content of a document. Add the following lines to `mkdocs.yml`: ``` yaml markdown_extensions: - footnotes ``` See additional configuration options: - [Footnotes] [Footnotes]: ../setup/extensions/python-markdown.md#footnotes ### Footnote tooltips <!-- md:sponsors --> <!-- md:version insiders-4.51.0 --> <!-- md:flag experimental --> [Insiders] allows to render footnotes as inline tooltips, so the user can read the footnote without leaving the context of the document. Footnote tooltips can be enabled in `mkdocs.yml` with: ``` yaml theme: features: - content.footnote.tooltips ``` __Footnote tooltips are enabled on our documentation__, so to try it out, you can just hover or focus any footnote on this page or any other page of our documentation. [Insiders]: ../insiders/index.md ## Usage ### Adding footnote references A footnote reference must be enclosed in square brackets and must start with a caret `^`, directly followed by an arbitrary identifier, which is similar to the standard Markdown link syntax. ``` title="Text with footnote references" Lorem ipsum[^1] dolor sit amet, consectetur adipiscing elit.[^2] ``` <div class="result" markdown> Lorem ipsum[^1] dolor sit amet, consectetur adipiscing elit.[^2] </div> ### Adding footnote content The footnote content must be declared with the same identifier as the reference. It can be inserted at an arbitrary position in the document and is always rendered at the bottom of the page. Furthermore, a backlink to the footnote reference is automatically added. #### on a single line Short footnotes can be written on the same line: ``` title="Footnote" [^1]: Lorem ipsum dolor sit amet, consectetur adipiscing elit. ``` <div class="result" markdown> [:octicons-arrow-down-24: Jump to footnote](#fn:1) </div> [^1]: Lorem ipsum dolor sit amet, consectetur adipiscing elit. #### on multiple lines Paragraphs can be written on the next line and must be indented by four spaces: ``` title="Footnote" [^2]: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. ``` <div class="result" markdown> [:octicons-arrow-down-24: Jump to footnote](#fn:2) </div> [^2]: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. �����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/reference/formatting.md��������������������������������������������������0000664�0000000�0000000�00000007544�14753064456�0022220�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- icon: material/format-font --- # Formatting Material for MkDocs provides support for several HTML elements that can be used to highlight sections of a document or apply specific formatting. Additionally, [Critic Markup] is supported, adding the ability to display suggested changes for a document. [Critic Markup]: https://github.com/CriticMarkup/CriticMarkup-toolkit ## Configuration This configuration enables support for keyboard keys, tracking changes in documents, defining sub- and superscript and highlighting text. Add the following lines to `mkdocs.yml`: ``` yaml markdown_extensions: - pymdownx.critic - pymdownx.caret - pymdownx.keys - pymdownx.mark - pymdownx.tilde ``` See additional configuration options: - [Critic] - [Caret, Mark & Tilde] - [Keys] [Critic]: ../setup/extensions/python-markdown-extensions.md#critic [Caret, Mark & Tilde]: ../setup/extensions/python-markdown-extensions.md#caret-mark-tilde [Keys]: ../setup/extensions/python-markdown-extensions.md#keys ## Usage ### Highlighting changes When [Critic] is enabled, [Critic Markup] can be used, which adds the ability to highlight suggested changes, as well as add inline comments to a document: ``` title="Text with suggested changes" Text can be {--deleted--} and replacement text {++added++}. This can also be combined into {~~one~>a single~~} operation. {==Highlighting==} is also possible {>>and comments can be added inline<<}. {== Formatting can also be applied to blocks by putting the opening and closing tags on separate lines and adding new lines between the tags and the content. ==} ``` <div class="result" markdown> Text can be <del class="critic">deleted</del> and replacement text <ins class="critic">added</ins>. This can also be combined into <del class="critic">one</del><ins class="critic">a single</ins> operation. <mark class="critic">Highlighting</mark> is also possible <span class="critic comment">and comments can be added inline</span>. <div> <mark class="critic block"> <p> Formatting can also be applied to blocks by putting the opening and closing tags on separate lines and adding new lines between the tags and the content. </p> </mark> </div> </div> ### Highlighting text When [Caret, Mark & Tilde] are enabled, text can be highlighted with a simple syntax, which is more convenient that directly using the corresponding [`mark`][mark], [`ins`][ins] and [`del`][del] HTML tags: ``` title="Text with highlighting" - ==This was marked (highlight)== - ^^This was inserted (underline)^^ - ~~This was deleted (strikethrough)~~ ``` <div class="result" markdown> - ==This was marked (highlight)== - ^^This was inserted (underline)^^ - ~~This was deleted (strikethrough)~~ </div> [mark]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/mark [ins]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ins [del]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/del ### Sub- and superscripts When [Caret & Tilde][Caret, Mark & Tilde] are enabled, text can be sub- and superscripted with a simple syntax, which is more convenient than directly using the corresponding [`sub`][sub] and [`sup`][sup] HTML tags: ``` markdown title="Text with sub- and superscripts" - H~2~O - A^T^A ``` <div class="result" markdown> - H~2~O - A^T^A </div> [sub]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/sub [sup]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/sup ### Adding keyboard keys When [Keys] is enabled, keyboard keys can be rendered with a simple syntax. Consult the [Python Markdown Extensions] documentation to learn about all available shortcodes: ``` markdown title="Keyboard keys" ++ctrl+alt+del++ ``` <div class="result" markdown> ++ctrl+alt+del++ </div> [Python Markdown Extensions]: https://facelessuser.github.io/pymdown-extensions/extensions/keys/#extendingmodifying-key-map-index ������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/reference/grids.md�������������������������������������������������������0000664�0000000�0000000�00000017332�14753064456�0021152�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- icon: material/view-grid-plus --- # Grids Material for MkDocs makes it easy to arrange sections into grids, grouping blocks that convey similar meaning or are of equal importance. Grids are just perfect for building index pages that show a brief overview of a large section of your documentation. ## Configuration This configuration enables the use of grids, allowing to bring blocks of identical or different types into a rectangular shape. Add the following lines to `mkdocs.yml`: ``` yaml markdown_extensions: # (1)! - attr_list - md_in_html ``` 1. Note that some of the examples listed below use [icons and emojis], which have to be [configured separately]. See additional configuration options: - [Attribute Lists] - [Markdown in HTML] [icons and emojis]: icons-emojis.md [configured separately]: icons-emojis.md#configuration [Attribute Lists]: ../setup/extensions/python-markdown.md#attribute-lists [Markdown in HTML]: ../setup/extensions/python-markdown.md#markdown-in-html ## Usage Grids come in two flavors: [card grids], which wrap each element in a card that levitates on hover, and [generic grids], which allow to arrange arbitrary block elements in a rectangular shape. [card grids]: #using-card-grids [generic grids]: #using-generic-grids ### Using card grids <!-- md:version 9.5.0 --> <!-- md:flag experimental --> Card grids wrap each grid item with a beautiful hover card that levitates on hover. They come in two slightly different syntaxes: [list] and [block syntax], adding support for distinct use cases. [list]: #list-syntax [block syntax]: #block-syntax #### List syntax The list syntax is essentially a shortcut for [card grids], and consists of an unordered (or ordered) list wrapped by a `div` with both, the `grid` and `cards` classes: ``` html title="Card grid" <div class="grid cards" markdown> - :fontawesome-brands-html5: __HTML__ for content and structure - :fontawesome-brands-js: __JavaScript__ for interactivity - :fontawesome-brands-css3: __CSS__ for text running out of boxes - :fontawesome-brands-internet-explorer: __Internet Explorer__ ... huh? </div> ``` <div class="result" markdown> <div class="grid cards" markdown> - :fontawesome-brands-html5: __HTML__ for content and structure - :fontawesome-brands-js: __JavaScript__ for interactivity - :fontawesome-brands-css3: __CSS__ for text running out of boxes - :fontawesome-brands-internet-explorer: __Internet Explorer__ ... huh? </div> </div> List elements can contain arbitrary Markdown, as long as the surrounding `div` defines the `markdown` attribute. Following is a more complex example, which includes icons and links: ``` html title="Card grid, complex example" <div class="grid cards" markdown> - :material-clock-fast:{ .lg .middle } __Set up in 5 minutes__ --- Install [`mkdocs-material`](#) with [`pip`](#) and get up and running in minutes [:octicons-arrow-right-24: Getting started](#) - :fontawesome-brands-markdown:{ .lg .middle } __It's just Markdown__ --- Focus on your content and generate a responsive and searchable static site [:octicons-arrow-right-24: Reference](#) - :material-format-font:{ .lg .middle } __Made to measure__ --- Change the colors, fonts, language, icons, logo and more with a few lines [:octicons-arrow-right-24: Customization](#) - :material-scale-balance:{ .lg .middle } __Open Source, MIT__ --- Material for MkDocs is licensed under MIT and available on [GitHub] [:octicons-arrow-right-24: License](#) </div> ``` <div class="result" markdown> <div class="grid cards" markdown> - :material-clock-fast:{ .lg .middle } __Set up in 5 minutes__ --- Install [`mkdocs-material`][mkdocs-material] with [`pip`][pip] and get up and running in minutes [:octicons-arrow-right-24: Getting started][getting started] - :fontawesome-brands-markdown:{ .lg .middle } __It's just Markdown__ --- Focus on your content and generate a responsive and searchable static site [:octicons-arrow-right-24: Reference][reference] - :material-format-font:{ .lg .middle } __Made to measure__ --- Change the colors, fonts, language, icons, logo and more with a few lines [:octicons-arrow-right-24: Customization][customization] - :material-scale-balance:{ .lg .middle } __Open Source, MIT__ --- Material for MkDocs is licensed under MIT and available on [GitHub] [:octicons-arrow-right-24: License][license] </div> </div> If there's insufficient space to render grid items next to each other, the items will stretch to the full width of the viewport, e.g. on mobile viewports. If there's more space available, grids will render in items of 3 and more, e.g. when [hiding both sidebars]. [mkdocs-material]: https://pypistats.org/packages/mkdocs-material [pip]: ../getting-started.md#with-pip [getting started]: ../getting-started.md [reference]: ../reference/index.md [customization]: ../customization.md [license]: ../license.md [GitHub]: https://github.com/squidfunk/mkdocs-material [hiding both sidebars]: ../setup/setting-up-navigation.md#hiding-the-sidebars #### Block syntax The block syntax allows for arranging cards in grids __together with other elements__, as explained in the section on [generic grids]. Just add the `card` class to any block element inside a `grid`: ``` html title="Card grid, blocks" <div class="grid" markdown> :fontawesome-brands-html5: __HTML__ for content and structure { .card } :fontawesome-brands-js: __JavaScript__ for interactivity { .card } :fontawesome-brands-css3: __CSS__ for text running out of boxes { .card } > :fontawesome-brands-internet-explorer: __Internet Explorer__ ... huh? </div> ``` <div class="result" markdown> <div class="grid" markdown> :fontawesome-brands-html5: __HTML__ for content and structure { .card } :fontawesome-brands-js: __JavaScript__ for interactivity { .card } :fontawesome-brands-css3: __CSS__ for text running out of boxes { .card } > :fontawesome-brands-internet-explorer: __Internet Explorer__ ... huh? </div> </div> While this syntax may seem unnecessarily verbose at first, the previous example shows how card grids can now be mixed with other elements that will also stretch to the grid. ### Using generic grids <!-- md:version 9.5.0 --> <!-- md:flag experimental --> Generic grids allow for arranging arbitrary block elements in a grid, including [admonitions], [code blocks], [content tabs] and more. Just wrap a set of blocks by using a `div` with the `grid` class: ```` html title="Generic grid" <div class="grid" markdown> === "Unordered list" * Sed sagittis eleifend rutrum * Donec vitae suscipit est * Nulla tempor lobortis orci === "Ordered list" 1. Sed sagittis eleifend rutrum 2. Donec vitae suscipit est 3. Nulla tempor lobortis orci ``` title="Content tabs" === "Unordered list" * Sed sagittis eleifend rutrum * Donec vitae suscipit est * Nulla tempor lobortis orci === "Ordered list" 1. Sed sagittis eleifend rutrum 2. Donec vitae suscipit est 3. Nulla tempor lobortis orci ``` </div> ```` <div class="result" markdown> <div class="grid" markdown> === "Unordered list" * Sed sagittis eleifend rutrum * Donec vitae suscipit est * Nulla tempor lobortis orci === "Ordered list" 1. Sed sagittis eleifend rutrum 2. Donec vitae suscipit est 3. Nulla tempor lobortis orci ``` title="Content tabs" === "Unordered list" * Sed sagittis eleifend rutrum * Donec vitae suscipit est * Nulla tempor lobortis orci === "Ordered list" 1. Sed sagittis eleifend rutrum 2. Donec vitae suscipit est 3. Nulla tempor lobortis orci ``` </div> </div> [admonitions]: admonitions.md [code blocks]: code-blocks.md [content tabs]: content-tabs.md ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/reference/icons-emojis.md������������������������������������������������0000664�0000000�0000000�00000015333�14753064456�0022440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- icon: material/emoticon-happy-outline --- # Icons, Emojis One of the best features of Material for MkDocs is the possibility to use [more than 10,000 icons][icon search] and thousands of emojis in your project documentation with practically zero additional effort. Moreover, [custom icons can be added] and used in `mkdocs.yml`, documents and templates. [icon search]: #search [custom icons can be added]: ../setup/changing-the-logo-and-icons.md#additional-icons ## Search <div class="mdx-iconsearch" data-mdx-component="iconsearch"> <input class="md-input md-input--stretch mdx-iconsearch__input" placeholder="Search the icon and emoji database" data-mdx-component="iconsearch-query" /> <div class="mdx-iconsearch-result" data-mdx-component="iconsearch-result"> <select class="mdx-iconsearch-result__select" data-mdx-component="iconsearch-select" > <option value="all" selected>All</option> <option value="icons">Icons</option> <option value="emojis">Emojis</option> </select> <div class="mdx-iconsearch-result__meta"></div> <ol class="mdx-iconsearch-result__list"></ol> </div> </div> <small> :octicons-light-bulb-16: **Tip:** Enter some keywords to find icons and emojis and click on the shortcode to copy it to your clipboard. </small> ## Configuration This configuration enables the use of icons and emojis by using simple shortcodes which can be discovered through the [icon search]. Add the following lines to `mkdocs.yml`: ``` yaml markdown_extensions: - attr_list - pymdownx.emoji: emoji_index: !!python/name:material.extensions.emoji.twemoji emoji_generator: !!python/name:material.extensions.emoji.to_svg ``` The following icon sets are bundled with Material for MkDocs: - :material-material-design: – [Material Design] - :fontawesome-brands-font-awesome: – [FontAwesome] - :octicons-mark-github-16: – [Octicons] - :simple-simpleicons: – [Simple Icons] See additional configuration options: - [Attribute Lists] - [Emoji] - [Emoji with custom icons] [Material Design]: https://pictogrammers.com/library/mdi/ [FontAwesome]: https://fontawesome.com/search?m=free [Octicons]: https://octicons.github.com/ [Simple Icons]: https://simpleicons.org/ [Attribute Lists]: ../setup/extensions/python-markdown.md#attribute-lists [Emoji]: ../setup/extensions/python-markdown-extensions.md#emoji [Emoji with custom icons]: ../setup/extensions/python-markdown-extensions.md#+pymdownx.emoji.options.custom_icons ## Usage ### Using emojis Emojis can be integrated in Markdown by putting the shortcode of the emoji between two colons. If you're using [Twemoji] (recommended), you can look up the shortcodes at [Emojipedia]: ``` title="Emoji" :smile: ``` <div class="result" markdown> :smile: </div> [Twemoji]: https://github.com/twitter/twemoji [Emojipedia]: https://emojipedia.org/twitter/ ### Using icons When [Emoji] is enabled, icons can be used similar to emojis, by referencing a valid path to any icon bundled with the theme, which are located in the [`.icons`][custom icons] directory, and replacing `/` with `-`: ``` title="Icon" :fontawesome-regular-face-laugh-wink: ``` <div class="result" markdown> :fontawesome-regular-face-laugh-wink: </div> [custom icons]: https://github.com/squidfunk/mkdocs-material/tree/master/material/templates/.icons #### with colors When [Attribute Lists] is enabled, custom CSS classes can be added to icons by suffixing the icon with a special syntax. While HTML allows to use [inline styles], it's always recommended to add an [additional style sheet] and move declarations into dedicated CSS classes: <style> .youtube { color: #EE0F0F; } </style> === ":octicons-file-code-16: `docs/stylesheets/extra.css`" ``` css .youtube { color: #EE0F0F; } ``` === ":octicons-file-code-16: `mkdocs.yml`" ``` yaml extra_css: - stylesheets/extra.css ``` After applying the customization, add the CSS class to the icon shortcode: ``` markdown title="Icon with color" :fontawesome-brands-youtube:{ .youtube } ``` <div class="result" markdown> :fontawesome-brands-youtube:{ .youtube } </div> [Attribute Lists]: ../setup/extensions/python-markdown.md#attribute-lists [inline styles]: https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/style [additional style sheet]: ../customization.md#additional-css #### with animations Similar to adding [colors], it's just as easy to add [animations] to icons by using an [additional style sheet], defining a `@keyframes` rule and adding a dedicated CSS class to the icon: === ":octicons-file-code-16: `docs/stylesheets/extra.css`" ``` css @keyframes heart { 0%, 40%, 80%, 100% { transform: scale(1); } 20%, 60% { transform: scale(1.15); } } .heart { animation: heart 1000ms infinite; } ``` === ":octicons-file-code-16: `mkdocs.yml`" ``` yaml extra_css: - stylesheets/extra.css ``` After applying the customization, add the CSS class to the icon shortcode: ``` markdown title="Icon with animation" :octicons-heart-fill-24:{ .heart } ``` <div class="result" markdown> :octicons-heart-fill-24:{ .mdx-heart } </div> [colors]: #with-colors [animations]: https://developer.mozilla.org/en-US/docs/Web/CSS/animation ### Icons, emojis in sidebars :smile: With the help of the [built-in typeset plugin], you can use icons and emojis in headings, which will then be rendered in the sidebars. The plugin preserves Markdown and HTML formatting. [built-in typeset plugin]: ../plugins/typeset.md ## Customization ### Using icons in templates When you're [extending the theme] with partials or blocks, you can simply reference any icon that's [bundled with the theme][icon search] with Jinja's [`include`][include] function and wrap it with the `.twemoji` CSS class: ``` html <span class="twemoji"> {% include ".icons/fontawesome/brands/youtube.svg" %} <!-- (1)! --> </span> ``` 1. Enter a few keywords to find the perfect icon using our [icon search] and click on the shortcode to copy it to your clipboard: <div class="mdx-iconsearch" data-mdx-component="iconsearch"> <input class="md-input md-input--stretch mdx-iconsearch__input" placeholder="Search icon" data-mdx-component="iconsearch-query" value="brands youtube" /> <div class="mdx-iconsearch-result" data-mdx-component="iconsearch-result" data-mdx-mode="file"> <div class="mdx-iconsearch-result__meta"></div> <ol class="mdx-iconsearch-result__list"></ol> </div> </div> This is exactly what Material for MkDocs does in its templates. [extending the theme]: ../customization.md#extending-the-theme [include]: https://jinja.palletsprojects.com/en/2.11.x/templates/#include �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/reference/images.md������������������������������������������������������0000664�0000000�0000000�00000015514�14753064456�0021307�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- icon: material/image-frame --- # Images While images are first-class citizens of Markdown and part of the core syntax, it can be difficult to work with them. Material for MkDocs makes working with images more comfortable, providing styles for image alignment and image captions. ## Configuration This configuration adds the ability to align images, add captions to images (rendering them as figures), and mark large images for lazy-loading. Add the following lines to `mkdocs.yml`: ``` yaml markdown_extensions: - attr_list - md_in_html - pymdownx.blocks.caption ``` See additional configuration options: - [Attribute Lists] - [Markdown in HTML] - [Caption] [Attribute Lists]: ../setup/extensions/python-markdown.md#attribute-lists [Markdown in HTML]: ../setup/extensions/python-markdown.md#markdown-in-html [Caption]: ../setup/extensions/python-markdown-extensions.md#caption ### Lightbox <!-- md:version 0.1.0 --> <!-- md:plugin [glightbox] --> If you want to add image zoom functionality to your documentation, the [glightbox] plugin is an excellent choice, as it integrates perfectly with Material for MkDocs. Install it with `pip`: ``` pip install mkdocs-glightbox ``` Then, add the following lines to `mkdocs.yml`: ``` yaml plugins: - glightbox ``` We recommend checking out the available [configuration options][glightbox options]. [glightbox]: https://github.com/blueswen/mkdocs-glightbox [glightbox options]: https://github.com/blueswen/mkdocs-glightbox#usage ## Usage ### Image alignment When [Attribute Lists] is enabled, images can be aligned by adding the respective alignment directions via the `align` attribute, i.e. `align=left` or `align=right`: === "Left" ``` markdown title="Image, aligned to left" ![Image title](https://dummyimage.com/600x400/eee/aaa){ align=left } ``` <div class="result" markdown> ![Image title](https://dummyimage.com/600x400/f5f5f5/aaaaaa?text=–%20Image%20–){ align=left width=300 } Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. </div> === "Right" ``` markdown title="Image, aligned to right" ![Image title](https://dummyimage.com/600x400/eee/aaa){ align=right } ``` <div class="result" markdown> ![Image title](https://dummyimage.com/600x400/f5f5f5/aaaaaa?text=–%20Image%20–){ align=right width=300 } Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. </div> If there's insufficient space to render the text next to the image, the image will stretch to the full width of the viewport, e.g. on mobile viewports. ??? question "Why is there no centered alignment?" The [`align`][align] attribute doesn't allow for centered alignment, which is why this option is not supported by Material for MkDocs.[^1] Instead, the [image captions] syntax can be used, as captions are optional. [^1]: You might also realize that the [`align`][align] attribute has been deprecated as of HTML5, so why use it anyways? The main reason is portability – it's still supported by all browsers and clients, and is very unlikely to be completely removed, as many older websites still use it. This ensures a consistent appearance when a Markdown file with these attributes is viewed outside of a website generated by Material for MkDocs. [align]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#deprecated_attributes [image captions]: #image-captions ### Image captions Sadly, the Markdown syntax doesn't provide native support for image captions, but it's always possible to use the [Markdown in HTML] extension with literal `figure` and `figcaption` tags: ``` html title="Image with caption" <figure markdown="span"> ![Image title](https://dummyimage.com/600x400/){ width="300" } <figcaption>Image caption</figcaption> </figure> ``` <div class="result"> <figure> <img src="https://dummyimage.com/600x400/f5f5f5/aaaaaa?text=–%20Image%20–" width="300" /> <figcaption>Image caption</figcaption> </figure> </div> However, [Caption] provides an alternative syntax to add captions to any Markdown block element, including images: ``` markdown title="Image with caption" ![Image title](https://dummyimage.com/600x400/){ width="300" } /// caption Image caption /// ``` ### Image lazy-loading Modern browsers provide [native support for lazy-loading images][lazy-loading] through the `loading=lazy` directive, which degrades to eager-loading in browsers without support: ``` markdown title="Image, lazy-loaded" ![Image title](https://dummyimage.com/600x400/){ loading=lazy } ``` <div class="result" markdown> <img src="https://dummyimage.com/600x400/f5f5f5/aaaaaa?text=–%20Image%20–" width="300" /> </div> [lazy-loading]: https://caniuse.com/#feat=loading-lazy-attr ### Light and dark mode <!-- md:version 8.1.1 --> If you added a [color palette toggle] and want to show different images for light and dark color schemes, you can append a `#only-light` or `#only-dark` hash fragment to the image URL: ``` markdown title="Image, different for light and dark mode" ![Image title](https://dummyimage.com/600x400/f5f5f5/aaaaaa#only-light) ![Image title](https://dummyimage.com/600x400/21222c/d5d7e2#only-dark) ``` <div class="result" markdown> ![Zelda light world]{ width="300" } ![Zelda dark world]{ width="300" } </div> !!! warning "Requirements when using [custom color schemes]" The built-in [color schemes] define the aforementioned hash fragments, but if you're using [custom color schemes], you'll also have to add the following selectors to your scheme, depending on whether it's a light or dark scheme: === "Custom light scheme" ``` css [data-md-color-scheme="custom-light"] img[src$="#only-dark"], [data-md-color-scheme="custom-light"] img[src$="#gh-dark-mode-only"] { display: none; /* Hide dark images in light mode */ } ``` === "Custom dark scheme" ``` css [data-md-color-scheme="custom-dark"] img[src$="#only-light"], [data-md-color-scheme="custom-dark"] img[src$="#gh-light-mode-only"] { display: none; /* Hide light images in dark mode */ } ``` Remember to change `#!css "custom-light"` and `#!css "custom-dark"` to the name of your scheme. [color palette toggle]: ../setup/changing-the-colors.md#color-palette-toggle [Zelda light world]: ../assets/images/zelda-light-world.png#only-light [Zelda dark world]: ../assets/images/zelda-dark-world.png#only-dark [color schemes]: ../setup/changing-the-colors.md#color-scheme [custom color schemes]: ../setup/changing-the-colors.md#custom-color-schemes ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/reference/index.md�������������������������������������������������������0000664�0000000�0000000�00000015323�14753064456�0021147�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Reference Material for MkDocs is packed with many great features that make technical writing a joyful activity. This section of the documentation explains how to set up a page, and showcases all available specimen that can be used directly from within Markdown files. ## Configuration ## Usage ### Setting the page `title` Each page has a designated title, which is used in the navigation sidebar, for [social cards] and in other places. While MkDocs attempts to automatically determine the title of a page in a [four step process], the title can also be explicitly set with the front matter `title` property: ``` yaml --- title: Lorem ipsum dolor sit amet # (1)! --- # Page title ... ``` 1. This line sets the [`title`][title] inside the HTML document's [`head`][head] for the generated page to the given value. Note that the site title, which is set via [`site_name`][site_name], is appended with a dash. [social cards]: ../setup/setting-up-social-cards.md [four step process]: https://www.mkdocs.org/user-guide/writing-your-docs/#meta-data [title]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title [head]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/head [site_name]: https://www.mkdocs.org/user-guide/configuration/#site_name ### Setting the page `description` A Markdown file can include a description that is added to the `meta` tags of a page, and is also used for [social cards]. It's a good idea to set a [`site_description`][site_description] in `mkdocs.yml` as a fallback value if the author does not explicitly define a description for a Markdown file: ``` yaml --- description: Nullam urna elit, malesuada eget finibus ut, ac tortor. # (1)! --- # Page title ... ``` 1. This line sets the `meta` tag containing the description inside the document `head` for the current page to the provided value. [site_description]: https://www.mkdocs.org/user-guide/configuration/#site_description ### Setting the page `icon` <!-- md:version 9.2.0 --> <!-- md:flag experimental --> An icon can be assigned to each page, which is then rendered as part of the navigation sidebar, as well as [navigation tabs], if enabled. Use the front matter `icon` property to reference an icon, adding the following lines at the top of a Markdown file: ``` yaml --- icon: material/emoticon-happy # (1)! --- # Page title ... ``` 1. Enter a few keywords to find the perfect icon using our [icon search] and click on the shortcode to copy it to your clipboard: <div class="mdx-iconsearch" data-mdx-component="iconsearch"> <input class="md-input md-input--stretch mdx-iconsearch__input" placeholder="Search icon" data-mdx-component="iconsearch-query" value="emoticon happy" /> <div class="mdx-iconsearch-result" data-mdx-component="iconsearch-result" data-mdx-mode="file"> <div class="mdx-iconsearch-result__meta"></div> <ol class="mdx-iconsearch-result__list"></ol> </div> </div> [Insiders]: ../insiders/index.md [icon search]: icons-emojis.md#search [navigation tabs]: ../setup/setting-up-navigation.md#navigation-tabs ### Setting the page `status` <!-- md:version 9.2.0 --> <!-- md:flag experimental --> <!-- md:example page-status --> A status can be assigned to each page, which is then displayed as part of the navigation sidebar. First, associate a status identifier with a description by adding the following to `mkdocs.yml`: ``` yaml extra: status: <identifier>: <description> # (1)! ``` 1. The identifier can only include alphanumeric characters, as well as dashes and underscores. For example, if you have a status `Recently added`, you can set `new` as an identifier: ``` yaml extra: status: new: Recently added ``` The page status can now be set with the front matter `status` property. For example, you can mark a page as `new` with the following lines at the top of a Markdown file: ``` yaml --- status: new --- # Page title ... ``` The following status identifiers are already defined: - :material-alert-decagram: – `new` - :material-trash-can: – `deprecated` You can define a custom page status this way but if you want it to have an icon other than the default one you need to also configure that in your `extra.css`. We have an [example for a custom page status] to get you started. [example for a custom page status]: https://mkdocs-material.github.io/examples/page-status/ ### Setting the page `subtitle` <!-- md:version 9.6.0 --> <!-- md:flag experimental --> Each page can define a subtitle, which is then rendered below the title as part of the navigation sidebar by using the front matter `subtitle` property, and adding the following lines: ``` yaml --- subtitle: Nullam urna elit, malesuada eget finibus ut, ac tortor --- # Page title ... ``` ### Setting the page `template` If you're using [theme extension] and created a new page template in the `overrides` directory, you can enable it for a specific page. Add the following lines at the top of a Markdown file: ``` yaml --- template: custom.html --- # Page title ... ``` ??? question "How to set a page template for an entire folder?" With the help of the [built-in meta plugin], you can set a custom template for an entire section and all nested pages, by creating a `.meta.yml` file in the corresponding folder with the following content: ``` yaml template: custom.html ``` [theme extension]: ../customization.md#extending-the-theme [built-in meta plugin]: ../plugins/meta.md ## Customization ### Using metadata in templates #### :material-check-all: on all pages In order to add custom `meta` tags to your document, you can [extend the theme ][theme extension] and [override the `extrahead` block][overriding blocks], e.g. to add indexing policies for search engines via the `robots` property: ``` html {% extends "base.html" %} {% block extrahead %} <meta name="robots" content="noindex, nofollow" /> {% endblock %} ``` [overriding blocks]: ../customization.md#overriding-blocks #### :material-check: on a single page If you want to set a `meta` tag on a single page, or want to set different values for different pages, you can use the `page.meta` object inside your template override, e.g.: ``` html {% extends "base.html" %} {% block extrahead %} {% if page and page.meta and page.meta.robots %} <meta name="robots" content="{{ page.meta.robots }}" /> {% else %} <meta name="robots" content="index, follow" /> {% endif %} {% endblock %} ``` You can now use `robots` exactly like [`title`][title] and [`description`][description] to set values. Note that in this case, the template defines an `else` branch, which would set a default if none was given. [title]: #setting-the-page-title [description]: #setting-the-page-description �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/reference/lists.md�������������������������������������������������������0000664�0000000�0000000�00000013017�14753064456�0021174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- icon: material/format-list-bulleted --- # Lists Material for MkDocs supports several flavors of lists that cater to different use cases, including _unordered lists_ and _ordered lists_, which are supported through standard Markdown, as well as _definition lists_ and _task lists_, which are supported through extensions. ## Configuration This configuration enables the use of definition lists and tasks lists, which are both not part of the standard Markdown syntax. Add the following lines to `mkdocs.yml`: ``` yaml markdown_extensions: - def_list - pymdownx.tasklist: custom_checkbox: true ``` See additional configuration options: - [Definition Lists] - [Tasklist] [Definition Lists]: ../setup/extensions/python-markdown.md#definition-lists [Tasklist]: ../setup/extensions/python-markdown-extensions.md#tasklist ## Usage ### Using unordered lists Unordered lists can be written by prefixing a line with a `-`, `*` or `+` list marker, all of which can be used interchangeably. Furthermore, all flavors of lists can be nested inside each other: ``` markdown title="List, unordered" - Nulla et rhoncus turpis. Mauris ultricies elementum leo. Duis efficitur accumsan nibh eu mattis. Vivamus tempus velit eros, porttitor placerat nibh lacinia sed. Aenean in finibus diam. * Duis mollis est eget nibh volutpat, fermentum aliquet dui mollis. * Nam vulputate tincidunt fringilla. * Nullam dignissim ultrices urna non auctor. ``` <div class="result" markdown> - Nulla et rhoncus turpis. Mauris ultricies elementum leo. Duis efficitur accumsan nibh eu mattis. Vivamus tempus velit eros, porttitor placerat nibh lacinia sed. Aenean in finibus diam. * Duis mollis est eget nibh volutpat, fermentum aliquet dui mollis. * Nam vulputate tincidunt fringilla. * Nullam dignissim ultrices urna non auctor. </div> ### Using ordered lists Ordered lists must start with a number immediately followed by a dot. The numbers do not need to be consecutive and can be all set to `1.`, as they will be re-numbered when rendered: ``` markdown title="List, ordered" 1. Vivamus id mi enim. Integer id turpis sapien. Ut condimentum lobortis sagittis. Aliquam purus tellus, faucibus eget urna at, iaculis venenatis nulla. Vivamus a pharetra leo. 1. Vivamus venenatis porttitor tortor sit amet rutrum. Pellentesque aliquet quam enim, eu volutpat urna rutrum a. Nam vehicula nunc mauris, a ultricies libero efficitur sed. 2. Morbi eget dapibus felis. Vivamus venenatis porttitor tortor sit amet rutrum. Pellentesque aliquet quam enim, eu volutpat urna rutrum a. 1. Mauris dictum mi lacus 2. Ut sit amet placerat ante 3. Suspendisse ac eros arcu ``` <div class="result" markdown> 1. Vivamus id mi enim. Integer id turpis sapien. Ut condimentum lobortis sagittis. Aliquam purus tellus, faucibus eget urna at, iaculis venenatis nulla. Vivamus a pharetra leo. 1. Vivamus venenatis porttitor tortor sit amet rutrum. Pellentesque aliquet quam enim, eu volutpat urna rutrum a. Nam vehicula nunc mauris, a ultricies libero efficitur sed. 2. Morbi eget dapibus felis. Vivamus venenatis porttitor tortor sit amet rutrum. Pellentesque aliquet quam enim, eu volutpat urna rutrum a. 1. Mauris dictum mi lacus 2. Ut sit amet placerat ante 3. Suspendisse ac eros arcu </div> ### Using definition lists When [Definition Lists] is enabled, lists of arbitrary key-value pairs, e.g. the parameters of functions or modules, can be enumerated with a simple syntax: ``` markdown title="Definition list" `Lorem ipsum dolor sit amet` : Sed sagittis eleifend rutrum. Donec vitae suscipit est. Nullam tempus tellus non sem sollicitudin, quis rutrum leo facilisis. `Cras arcu libero` : Aliquam metus eros, pretium sed nulla venenatis, faucibus auctor ex. Proin ut eros sed sapien ullamcorper consequat. Nunc ligula ante. Duis mollis est eget nibh volutpat, fermentum aliquet dui mollis. Nam vulputate tincidunt fringilla. Nullam dignissim ultrices urna non auctor. ``` <div class="result" markdown> `Lorem ipsum dolor sit amet` : Sed sagittis eleifend rutrum. Donec vitae suscipit est. Nullam tempus tellus non sem sollicitudin, quis rutrum leo facilisis. `Cras arcu libero` : Aliquam metus eros, pretium sed nulla venenatis, faucibus auctor ex. Proin ut eros sed sapien ullamcorper consequat. Nunc ligula ante. Duis mollis est eget nibh volutpat, fermentum aliquet dui mollis. Nam vulputate tincidunt fringilla. Nullam dignissim ultrices urna non auctor. </div> ### Using task lists When [Tasklist] is enabled, unordered list items can be prefixed with `[ ]` to render an unchecked checkbox or `[x]` to render a checked checkbox, allowing for the definition of task lists: ``` markdown title="Task list" - [x] Lorem ipsum dolor sit amet, consectetur adipiscing elit - [ ] Vestibulum convallis sit amet nisi a tincidunt * [x] In hac habitasse platea dictumst * [x] In scelerisque nibh non dolor mollis congue sed et metus * [ ] Praesent sed risus massa - [ ] Aenean pretium efficitur erat, donec pharetra, ligula non scelerisque ``` <div class="result" markdown> - [x] Lorem ipsum dolor sit amet, consectetur adipiscing elit - [ ] Vestibulum convallis sit amet nisi a tincidunt * [x] In hac habitasse platea dictumst * [x] In scelerisque nibh non dolor mollis congue sed et metus * [ ] Praesent sed risus massa - [ ] Aenean pretium efficitur erat, donec pharetra, ligula non scelerisque </div> �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/reference/math.md��������������������������������������������������������0000664�0000000�0000000�00000013225�14753064456�0020770�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- icon: material/alphabet-greek --- # Math [MathJax] and [KaTeX] are two popular libraries for displaying mathematical content in browsers. Although both libraries offer similar functionality, they use different syntaxes and have different configuration options. This documentation site provides information on how to integrate them with Material for MkDocs easily. [MathJax]: https://www.mathjax.org/ [LaTeX]: https://en.wikibooks.org/wiki/LaTeX/Mathematics [MathML]: https://en.wikipedia.org/wiki/MathML [AsciiMath]: http://asciimath.org/ [KaTeX]: https://katex.org/ ## Configuration The following configuration enables support for rendering block and inline block equations using [MathJax] and [KaTeX]. ### MathJax [MathJax] is a powerful and flexible library that supports multiple input formats, such as [LaTeX], [MathML], [AsciiMath], as well as various output formats like HTML, SVG, MathML. To use MathJax within your project, add the following lines to your `mkdocs.yml`. === ":octicons-file-code-16: `docs/javascripts/mathjax.js`" ``` js window.MathJax = { tex: { inlineMath: [["\\(", "\\)"]], displayMath: [["\\[", "\\]"]], processEscapes: true, processEnvironments: true }, options: { ignoreHtmlClass: ".*|", processHtmlClass: "arithmatex" } }; document$.subscribe(() => { // (1)! MathJax.startup.output.clearCache() MathJax.typesetClear() MathJax.texReset() MathJax.typesetPromise() }) ``` 1. This integrates MathJax with [instant loading]. === ":octicons-file-code-16: `mkdocs.yml`" ``` yaml markdown_extensions: - pymdownx.arithmatex: generic: true extra_javascript: - javascripts/mathjax.js - https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js ``` See additional configuration options: - [Arithmatex] [Arithmatex]: ../setup/extensions/python-markdown-extensions.md#arithmatex [instant loading]: ../setup/setting-up-navigation.md#instant-loading <script id="MathJax-script" async src="https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js"></script> <script> window.MathJax = { tex: { inlineMath: [["\\(", "\\)"]], displayMath: [["\\[", "\\]"]], processEscapes: true, processEnvironments: true }, options: { ignoreHtmlClass: ".*|", processHtmlClass: "arithmatex" } }; </script> ### KaTeX [KaTeX] is a lightweight library that focuses on speed and simplicity. It supports a subset of LaTeX syntax and can render math to HTML and SVG. To use [KaTeX] within your project, add the following lines to your `mkdocs.yml`. === ":octicons-file-code-16: `docs/javascripts/katex.js`" ``` js document$.subscribe(({ body }) => { // (1)! renderMathInElement(body, { delimiters: [ { left: "$$", right: "$$", display: true }, { left: "$", right: "$", display: false }, { left: "\\(", right: "\\)", display: false }, { left: "\\[", right: "\\]", display: true } ], }) }) ``` 1. This integrates KaTeX with [instant loading]. === ":octicons-file-code-16: `mkdocs.yml`" ``` yaml markdown_extensions: - pymdownx.arithmatex: generic: true extra_javascript: - javascripts/katex.js - https://unpkg.com/katex@0/dist/katex.min.js - https://unpkg.com/katex@0/dist/contrib/auto-render.min.js extra_css: - https://unpkg.com/katex@0/dist/katex.min.css ``` ## Usage ### Using block syntax Blocks must be enclosed in `#!latex $$...$$` or `#!latex \[...\]` on separate lines: ``` latex title="block syntax" $$ \cos x=\sum_{k=0}^{\infty}\frac{(-1)^k}{(2k)!}x^{2k} $$ ``` <div class="result" markdown> $$ \cos x=\sum_{k=0}^{\infty}\frac{(-1)^k}{(2k)!}x^{2k} $$ </div> ### Using inline block syntax Inline blocks must be enclosed in `#!latex $...$` or `#!latex \(...\)`: ``` latex title="inline syntax" The homomorphism $f$ is injective if and only if its kernel is only the singleton set $e_G$, because otherwise $\exists a,b\in G$ with $a\neq b$ such that $f(a)=f(b)$. ``` <div class="result" markdown> The homomorphism $f$ is injective if and only if its kernel is only the singleton set $e_G$, because otherwise $\exists a,b\in G$ with $a\neq b$ such that $f(a)=f(b)$. </div> ## Comparing MathJax and KaTeX When deciding between MathJax and KaTeX, there are several key factors to consider: - __Speed__: KaTeX is generally faster than MathJax. If your site requires rendering large quantities of complex equations quickly, KaTeX may be the better choice. - __Syntax Support__: MathJax supports a wider array of LaTeX commands and can process a variety of mathematical markup languages (like AsciiMath and MathML). If you need advanced LaTeX features, MathJax may be more suitable. - __Output Format__: Both libraries support HTML and SVG outputs. However, MathJax also offers MathML output, which can be essential for accessibility, as it is readable by screen readers. - __Configurability__: MathJax provides a range of configuration options, allowing for more precise control over its behavior. If you have specific rendering requirements, MathJax might be a more flexible choice. - __Browser Support__: While both libraries work well in modern browsers, MathJax has broader compatibility with older browsers. If your audience uses a variety of browsers, including older ones, MathJax might be a safer option. In summary, KaTeX shines with its speed and simplicity, whereas MathJax offers more features and better compatibility at the expense of speed. The choice between the two will largely depend on your specific needs and constraints. ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/reference/tooltips.md����������������������������������������������������0000664�0000000�0000000�00000010523�14753064456�0021712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- icon: material/tooltip-plus --- # Tooltips Technical documentation often incurs the usage of many acronyms, which may need additional explanation, especially for new user of your project. For these matters, Material for MkDocs uses a combination of Markdown extensions to enable site-wide glossaries. ## Configuration This configuration enables abbreviations and allows to build a simple project-wide glossary, sourcing definitions from a central location. Add the following line to `mkdocs.yml`: ``` yaml markdown_extensions: - abbr - attr_list - pymdownx.snippets ``` See additional configuration options: - [Abbreviations] - [Attribute Lists] - [Snippets] [Abbreviations]: ../setup/extensions/python-markdown.md#abbreviations [Attribute Lists]: ../setup/extensions/python-markdown.md#attribute-lists [Snippets]: ../setup/extensions/python-markdown-extensions.md#snippets ### Improved tooltips <!-- md:version 9.5.0 --> <!-- md:flag experimental --> When improved tooltips are enabled, Material for MkDocs replaces the browser's rendering logic for `title` attribute with beautiful little tooltips. Add the following lines to `mkdocs.yml`: ``` yaml theme: features: - content.tooltips ``` Now, tooltips will be rendered for the following elements: - __Content__ – elements with a `title`, permalinks and code copy button - __Header__ – home button, header title, color palette switch and repository link - __Navigation__ – links that are shortened with ellipsis, i.e. `...` ## Usage ### Adding tooltips The [Markdown syntax] allows to specify a `title` for each link, which will render as a beautiful tooltip when [improved tooltips] are enabled. Add a tooltip to a link with the following lines: ``` markdown title="Link with tooltip, inline syntax" [Hover me](https://example.com "I'm a tooltip!") ``` <div class="result" markdown> [Hover me](https://example.com "I'm a tooltip!") </div> Tooltips can also be added to link references: ``` markdown title="Link with tooltip, reference syntax" [Hover me][example] [example]: https://example.com "I'm a tooltip!" ``` <div class="result" markdown> [Hover me](https://example.com "I'm a tooltip!") </div> For all other elements, a `title` can be added by using the [Attribute Lists] extension: ``` markdown title="Icon with tooltip" :material-information-outline:{ title="Important information" } ``` <div class="result" markdown> :material-information-outline:{ title="Important information" } </div> [Markdown syntax]: https://daringfireball.net/projects/markdown/syntax#link [improved tooltips]: #improved-tooltips ### Adding abbreviations Abbreviations can be defined by using a special syntax similar to URLs and [footnotes], starting with a `*` and immediately followed by the term or acronym to be associated in square brackets: ``` markdown title="Text with abbreviations" The HTML specification is maintained by the W3C. *[HTML]: Hyper Text Markup Language *[W3C]: World Wide Web Consortium ``` <div class="result" markdown> The HTML specification is maintained by the W3C. *[HTML]: Hyper Text Markup Language *[W3C]: World Wide Web Consortium </div> [footnotes]: footnotes.md ### Adding a glossary The [Snippets] extension can be used to implement a simple glossary by moving all abbreviations in a dedicated file[^1], and [auto-append] this file to all pages with the following configuration: [^1]: It's highly recommended to put the Markdown file containing the abbreviations outside of the `docs` folder (here, a folder with the name `includes` is used), as MkDocs might otherwise complain about an unreferenced file. === ":octicons-file-code-16: `includes/abbreviations.md`" ```` markdown *[HTML]: Hyper Text Markup Language *[W3C]: World Wide Web Consortium ```` === ":octicons-file-code-16: `mkdocs.yml`" ```` yaml markdown_extensions: - pymdownx.snippets: auto_append: - includes/abbreviations.md ```` [auto-append]: https://facelessuser.github.io/pymdown-extensions/extensions/snippets/#auto-append-snippets !!! tip When using a dedicated file outside of the `docs` folder, add the parent directory to the list of `watch` folders so that when the glossary file is updated, the project is automatically reloaded when running `mkdocs serve`. ```` yaml watch: - includes ```` �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema.json��������������������������������������������������������������0000664�0000000�0000000�00000014573�14753064456�0017721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Material for MkDocs", "markdownDescription": "Configuration", "type": "object", "properties": { "INHERIT": { "title": "Inherit from configuration", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#configuration-inheritance", "pattern": "\\.yml$" }, "site_name": { "title": "Site name, used in header, title and drawer", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#site_name", "type": "string" }, "site_url": { "title": "Site URL", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#site_url", "type": "string" }, "site_author": { "title": "Site author, used in document head", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#site_author", "type": "string" }, "site_description": { "title": "Site description, used in document head and in social cards", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#site_description", "type": "string" }, "repo_name": { "title": "Repository name, used in header", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/adding-a-git-repository/#repository-name", "type": "string" }, "repo_url": { "title": "Repository URL", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/adding-a-git-repository/#repository", "type": "string" }, "edit_uri": { "title": "Path from repository root to directory containing Markdown", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#edit_uri", "type": "string" }, "edit_uri_template": { "title": "More flexible variant of edit_uri", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#edit_uri_template", "type": "string" }, "copyright": { "title": "Copyright, used in footer", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-the-footer/#copyright-notice", "type": "string" }, "docs_dir": { "title": "Directory containing the Markdown sources", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#docs_dir", "type": "string", "default": "docs" }, "site_dir": { "title": "Directory containing the HTML output", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#site_dir", "type": "string", "default": "site" }, "use_directory_urls": { "title": "Pages are located in their own directories", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#use_directory_urls", "type": "boolean", "default": false }, "extra_templates": { "title": "Additional HTML files to include", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#extra_templates", "type": "array", "items": { "title": "Path to HTML file", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#extra_templates", "pattern": "\\.html$" }, "uniqueItems": true, "minItems": 1 }, "extra_css": { "title": "Additional CSS files to include", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/customization/#additional-css", "type": "array", "items": { "title": "Path to CSS file", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/customization/#additional-css", "pattern": "\\.css($|\\?)" }, "uniqueItems": true, "minItems": 1 }, "extra_javascript": { "title": "Additional JavaScript files to include", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/customization/#additional-javascript", "type": "array", "items": { "title": "Path to JavaScript file (may be local or absolute URL to external JS)", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/customization/#additional-javascript" }, "uniqueItems": true, "minItems": 1 }, "hooks": { "title": "Hooks", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#hooks", "type": "array", "items": { "title": "Path to Python file", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#hooks", "pattern": "\\.py$" }, "uniqueItems": true, "minItems": 1 }, "strict": { "title": "Strict mode", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#strict", "type": "boolean", "default": false }, "dev_addr": { "title": "Development IP Address", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#dev_addr", "type": "string", "default": "127.0.0.1:8000" }, "remote_branch": { "title": "Remote branch to deploy to", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#remote_branch", "type": "string", "default": "gh-pages" }, "remote_name": { "title": "Remote origin to deploy to", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#remote_name", "type": "string", "default": "origin" }, "theme": { "$ref": "schema/theme.json" }, "plugins": { "$ref": "schema/plugins.json" }, "markdown_extensions": { "$ref": "schema/extensions.json" }, "extra": { "$ref": "schema/extra.json" }, "nav": { "$ref": "schema/nav.json" }, "validation": { "$ref": "schema/validation.json" }, "exclude_docs": { "title": "Pattern to declare files to exclude from build", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#exclude_docs", "type": "string" }, "not_in_nav": { "title": "Pattern to declare pages that do not appear in the navigation", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#not_in_nav", "type": "string" }, "watch": { "items": { "title": "Path to watch for changes", "type": "string" }, "type": "array" } }, "additionalProperties": false } �������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/������������������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0017014�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/assets/�����������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0020316�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/assets/fonts.json�������������������������������������������������0000664�0000000�0000000�00000723706�14753064456�0022361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Google Fonts", "markdownDescription": "https://fonts.google.com/", "type": "string", "oneOf": [ { "title": "ABeeZee", "markdownDescription": "https://fonts.google.com/specimen/ABeeZee", "const": "ABeeZee" }, { "title": "ADLaM Display", "markdownDescription": "https://fonts.google.com/specimen/ADLaM+Display", "const": "ADLaM Display" }, { "title": "AR One Sans", "markdownDescription": "https://fonts.google.com/specimen/AR+One+Sans", "const": "AR One Sans" }, { "title": "Abel", "markdownDescription": "https://fonts.google.com/specimen/Abel", "const": "Abel" }, { "title": "Abhaya Libre", "markdownDescription": "https://fonts.google.com/specimen/Abhaya+Libre", "const": "Abhaya Libre" }, { "title": "Aboreto", "markdownDescription": "https://fonts.google.com/specimen/Aboreto", "const": "Aboreto" }, { "title": "Abril Fatface", "markdownDescription": "https://fonts.google.com/specimen/Abril+Fatface", "const": "Abril Fatface" }, { "title": "Abyssinica SIL", "markdownDescription": "https://fonts.google.com/specimen/Abyssinica+SIL", "const": "Abyssinica SIL" }, { "title": "Aclonica", "markdownDescription": "https://fonts.google.com/specimen/Aclonica", "const": "Aclonica" }, { "title": "Acme", "markdownDescription": "https://fonts.google.com/specimen/Acme", "const": "Acme" }, { "title": "Actor", "markdownDescription": "https://fonts.google.com/specimen/Actor", "const": "Actor" }, { "title": "Adamina", "markdownDescription": "https://fonts.google.com/specimen/Adamina", "const": "Adamina" }, { "title": "Advent Pro", "markdownDescription": "https://fonts.google.com/specimen/Advent+Pro", "const": "Advent Pro" }, { "title": "Agdasima", "markdownDescription": "https://fonts.google.com/specimen/Agdasima", "const": "Agdasima" }, { "title": "Aguafina Script", "markdownDescription": "https://fonts.google.com/specimen/Aguafina+Script", "const": "Aguafina Script" }, { "title": "Akatab", "markdownDescription": "https://fonts.google.com/specimen/Akatab", "const": "Akatab" }, { "title": "Akaya Kanadaka", "markdownDescription": "https://fonts.google.com/specimen/Akaya+Kanadaka", "const": "Akaya Kanadaka" }, { "title": "Akaya Telivigala", "markdownDescription": "https://fonts.google.com/specimen/Akaya+Telivigala", "const": "Akaya Telivigala" }, { "title": "Akronim", "markdownDescription": "https://fonts.google.com/specimen/Akronim", "const": "Akronim" }, { "title": "Akshar", "markdownDescription": "https://fonts.google.com/specimen/Akshar", "const": "Akshar" }, { "title": "Aladin", "markdownDescription": "https://fonts.google.com/specimen/Aladin", "const": "Aladin" }, { "title": "Alata", "markdownDescription": "https://fonts.google.com/specimen/Alata", "const": "Alata" }, { "title": "Alatsi", "markdownDescription": "https://fonts.google.com/specimen/Alatsi", "const": "Alatsi" }, { "title": "Albert Sans", "markdownDescription": "https://fonts.google.com/specimen/Albert+Sans", "const": "Albert Sans" }, { "title": "Aldrich", "markdownDescription": "https://fonts.google.com/specimen/Aldrich", "const": "Aldrich" }, { "title": "Alef", "markdownDescription": "https://fonts.google.com/specimen/Alef", "const": "Alef" }, { "title": "Alegreya", "markdownDescription": "https://fonts.google.com/specimen/Alegreya", "const": "Alegreya" }, { "title": "Alegreya SC", "markdownDescription": "https://fonts.google.com/specimen/Alegreya+SC", "const": "Alegreya SC" }, { "title": "Alegreya Sans", "markdownDescription": "https://fonts.google.com/specimen/Alegreya+Sans", "const": "Alegreya Sans" }, { "title": "Alegreya Sans SC", "markdownDescription": "https://fonts.google.com/specimen/Alegreya+Sans+SC", "const": "Alegreya Sans SC" }, { "title": "Aleo", "markdownDescription": "https://fonts.google.com/specimen/Aleo", "const": "Aleo" }, { "title": "Alex Brush", "markdownDescription": "https://fonts.google.com/specimen/Alex+Brush", "const": "Alex Brush" }, { "title": "Alexandria", "markdownDescription": "https://fonts.google.com/specimen/Alexandria", "const": "Alexandria" }, { "title": "Alfa Slab One", "markdownDescription": "https://fonts.google.com/specimen/Alfa+Slab+One", "const": "Alfa Slab One" }, { "title": "Alice", "markdownDescription": "https://fonts.google.com/specimen/Alice", "const": "Alice" }, { "title": "Alike", "markdownDescription": "https://fonts.google.com/specimen/Alike", "const": "Alike" }, { "title": "Alike Angular", "markdownDescription": "https://fonts.google.com/specimen/Alike+Angular", "const": "Alike Angular" }, { "title": "Alkalami", "markdownDescription": "https://fonts.google.com/specimen/Alkalami", "const": "Alkalami" }, { "title": "Alkatra", "markdownDescription": "https://fonts.google.com/specimen/Alkatra", "const": "Alkatra" }, { "title": "Allan", "markdownDescription": "https://fonts.google.com/specimen/Allan", "const": "Allan" }, { "title": "Allerta", "markdownDescription": "https://fonts.google.com/specimen/Allerta", "const": "Allerta" }, { "title": "Allerta Stencil", "markdownDescription": "https://fonts.google.com/specimen/Allerta+Stencil", "const": "Allerta Stencil" }, { "title": "Allison", "markdownDescription": "https://fonts.google.com/specimen/Allison", "const": "Allison" }, { "title": "Allura", "markdownDescription": "https://fonts.google.com/specimen/Allura", "const": "Allura" }, { "title": "Almarai", "markdownDescription": "https://fonts.google.com/specimen/Almarai", "const": "Almarai" }, { "title": "Almendra", "markdownDescription": "https://fonts.google.com/specimen/Almendra", "const": "Almendra" }, { "title": "Almendra Display", "markdownDescription": "https://fonts.google.com/specimen/Almendra+Display", "const": "Almendra Display" }, { "title": "Almendra SC", "markdownDescription": "https://fonts.google.com/specimen/Almendra+SC", "const": "Almendra SC" }, { "title": "Alumni Sans", "markdownDescription": "https://fonts.google.com/specimen/Alumni+Sans", "const": "Alumni Sans" }, { "title": "Alumni Sans Collegiate One", "markdownDescription": "https://fonts.google.com/specimen/Alumni+Sans+Collegiate+One", "const": "Alumni Sans Collegiate One" }, { "title": "Alumni Sans Inline One", "markdownDescription": "https://fonts.google.com/specimen/Alumni+Sans+Inline+One", "const": "Alumni Sans Inline One" }, { "title": "Alumni Sans Pinstripe", "markdownDescription": "https://fonts.google.com/specimen/Alumni+Sans+Pinstripe", "const": "Alumni Sans Pinstripe" }, { "title": "Amarante", "markdownDescription": "https://fonts.google.com/specimen/Amarante", "const": "Amarante" }, { "title": "Amaranth", "markdownDescription": "https://fonts.google.com/specimen/Amaranth", "const": "Amaranth" }, { "title": "Amatic SC", "markdownDescription": "https://fonts.google.com/specimen/Amatic+SC", "const": "Amatic SC" }, { "title": "Amethysta", "markdownDescription": "https://fonts.google.com/specimen/Amethysta", "const": "Amethysta" }, { "title": "Amiko", "markdownDescription": "https://fonts.google.com/specimen/Amiko", "const": "Amiko" }, { "title": "Amiri", "markdownDescription": "https://fonts.google.com/specimen/Amiri", "const": "Amiri" }, { "title": "Amiri Quran", "markdownDescription": "https://fonts.google.com/specimen/Amiri+Quran", "const": "Amiri Quran" }, { "title": "Amita", "markdownDescription": "https://fonts.google.com/specimen/Amita", "const": "Amita" }, { "title": "Anaheim", "markdownDescription": "https://fonts.google.com/specimen/Anaheim", "const": "Anaheim" }, { "title": "Andada Pro", "markdownDescription": "https://fonts.google.com/specimen/Andada+Pro", "const": "Andada Pro" }, { "title": "Andika", "markdownDescription": "https://fonts.google.com/specimen/Andika", "const": "Andika" }, { "title": "Anek Bangla", "markdownDescription": "https://fonts.google.com/specimen/Anek+Bangla", "const": "Anek Bangla" }, { "title": "Anek Devanagari", "markdownDescription": "https://fonts.google.com/specimen/Anek+Devanagari", "const": "Anek Devanagari" }, { "title": "Anek Gujarati", "markdownDescription": "https://fonts.google.com/specimen/Anek+Gujarati", "const": "Anek Gujarati" }, { "title": "Anek Gurmukhi", "markdownDescription": "https://fonts.google.com/specimen/Anek+Gurmukhi", "const": "Anek Gurmukhi" }, { "title": "Anek Kannada", "markdownDescription": "https://fonts.google.com/specimen/Anek+Kannada", "const": "Anek Kannada" }, { "title": "Anek Latin", "markdownDescription": "https://fonts.google.com/specimen/Anek+Latin", "const": "Anek Latin" }, { "title": "Anek Malayalam", "markdownDescription": "https://fonts.google.com/specimen/Anek+Malayalam", "const": "Anek Malayalam" }, { "title": "Anek Odia", "markdownDescription": "https://fonts.google.com/specimen/Anek+Odia", "const": "Anek Odia" }, { "title": "Anek Tamil", "markdownDescription": "https://fonts.google.com/specimen/Anek+Tamil", "const": "Anek Tamil" }, { "title": "Anek Telugu", "markdownDescription": "https://fonts.google.com/specimen/Anek+Telugu", "const": "Anek Telugu" }, { "title": "Angkor", "markdownDescription": "https://fonts.google.com/specimen/Angkor", "const": "Angkor" }, { "title": "Annie Use Your Telescope", "markdownDescription": "https://fonts.google.com/specimen/Annie+Use+Your+Telescope", "const": "Annie Use Your Telescope" }, { "title": "Anonymous Pro", "markdownDescription": "https://fonts.google.com/specimen/Anonymous+Pro", "const": "Anonymous Pro" }, { "title": "Antic", "markdownDescription": "https://fonts.google.com/specimen/Antic", "const": "Antic" }, { "title": "Antic Didone", "markdownDescription": "https://fonts.google.com/specimen/Antic+Didone", "const": "Antic Didone" }, { "title": "Antic Slab", "markdownDescription": "https://fonts.google.com/specimen/Antic+Slab", "const": "Antic Slab" }, { "title": "Anton", "markdownDescription": "https://fonts.google.com/specimen/Anton", "const": "Anton" }, { "title": "Antonio", "markdownDescription": "https://fonts.google.com/specimen/Antonio", "const": "Antonio" }, { "title": "Anuphan", "markdownDescription": "https://fonts.google.com/specimen/Anuphan", "const": "Anuphan" }, { "title": "Anybody", "markdownDescription": "https://fonts.google.com/specimen/Anybody", "const": "Anybody" }, { "title": "Aoboshi One", "markdownDescription": "https://fonts.google.com/specimen/Aoboshi+One", "const": "Aoboshi One" }, { "title": "Arapey", "markdownDescription": "https://fonts.google.com/specimen/Arapey", "const": "Arapey" }, { "title": "Arbutus", "markdownDescription": "https://fonts.google.com/specimen/Arbutus", "const": "Arbutus" }, { "title": "Arbutus Slab", "markdownDescription": "https://fonts.google.com/specimen/Arbutus+Slab", "const": "Arbutus Slab" }, { "title": "Architects Daughter", "markdownDescription": "https://fonts.google.com/specimen/Architects+Daughter", "const": "Architects Daughter" }, { "title": "Archivo", "markdownDescription": "https://fonts.google.com/specimen/Archivo", "const": "Archivo" }, { "title": "Archivo Black", "markdownDescription": "https://fonts.google.com/specimen/Archivo+Black", "const": "Archivo Black" }, { "title": "Archivo Narrow", "markdownDescription": "https://fonts.google.com/specimen/Archivo+Narrow", "const": "Archivo Narrow" }, { "title": "Are You Serious", "markdownDescription": "https://fonts.google.com/specimen/Are+You+Serious", "const": "Are You Serious" }, { "title": "Aref Ruqaa", "markdownDescription": "https://fonts.google.com/specimen/Aref+Ruqaa", "const": "Aref Ruqaa" }, { "title": "Aref Ruqaa Ink", "markdownDescription": "https://fonts.google.com/specimen/Aref+Ruqaa+Ink", "const": "Aref Ruqaa Ink" }, { "title": "Arima", "markdownDescription": "https://fonts.google.com/specimen/Arima", "const": "Arima" }, { "title": "Arima Madurai", "markdownDescription": "https://fonts.google.com/specimen/Arima+Madurai", "const": "Arima Madurai" }, { "title": "Arimo", "markdownDescription": "https://fonts.google.com/specimen/Arimo", "const": "Arimo" }, { "title": "Arizonia", "markdownDescription": "https://fonts.google.com/specimen/Arizonia", "const": "Arizonia" }, { "title": "Armata", "markdownDescription": "https://fonts.google.com/specimen/Armata", "const": "Armata" }, { "title": "Arsenal", "markdownDescription": "https://fonts.google.com/specimen/Arsenal", "const": "Arsenal" }, { "title": "Artifika", "markdownDescription": "https://fonts.google.com/specimen/Artifika", "const": "Artifika" }, { "title": "Arvo", "markdownDescription": "https://fonts.google.com/specimen/Arvo", "const": "Arvo" }, { "title": "Arya", "markdownDescription": "https://fonts.google.com/specimen/Arya", "const": "Arya" }, { "title": "Asap", "markdownDescription": "https://fonts.google.com/specimen/Asap", "const": "Asap" }, { "title": "Asap Condensed", "markdownDescription": "https://fonts.google.com/specimen/Asap+Condensed", "const": "Asap Condensed" }, { "title": "Asar", "markdownDescription": "https://fonts.google.com/specimen/Asar", "const": "Asar" }, { "title": "Asset", "markdownDescription": "https://fonts.google.com/specimen/Asset", "const": "Asset" }, { "title": "Assistant", "markdownDescription": "https://fonts.google.com/specimen/Assistant", "const": "Assistant" }, { "title": "Astloch", "markdownDescription": "https://fonts.google.com/specimen/Astloch", "const": "Astloch" }, { "title": "Asul", "markdownDescription": "https://fonts.google.com/specimen/Asul", "const": "Asul" }, { "title": "Athiti", "markdownDescription": "https://fonts.google.com/specimen/Athiti", "const": "Athiti" }, { "title": "Atkinson Hyperlegible", "markdownDescription": "https://fonts.google.com/specimen/Atkinson+Hyperlegible", "const": "Atkinson Hyperlegible" }, { "title": "Atma", "markdownDescription": "https://fonts.google.com/specimen/Atma", "const": "Atma" }, { "title": "Atomic Age", "markdownDescription": "https://fonts.google.com/specimen/Atomic+Age", "const": "Atomic Age" }, { "title": "Aubrey", "markdownDescription": "https://fonts.google.com/specimen/Aubrey", "const": "Aubrey" }, { "title": "Audiowide", "markdownDescription": "https://fonts.google.com/specimen/Audiowide", "const": "Audiowide" }, { "title": "Autour One", "markdownDescription": "https://fonts.google.com/specimen/Autour+One", "const": "Autour One" }, { "title": "Average", "markdownDescription": "https://fonts.google.com/specimen/Average", "const": "Average" }, { "title": "Average Sans", "markdownDescription": "https://fonts.google.com/specimen/Average+Sans", "const": "Average Sans" }, { "title": "Averia Gruesa Libre", "markdownDescription": "https://fonts.google.com/specimen/Averia+Gruesa+Libre", "const": "Averia Gruesa Libre" }, { "title": "Averia Libre", "markdownDescription": "https://fonts.google.com/specimen/Averia+Libre", "const": "Averia Libre" }, { "title": "Averia Sans Libre", "markdownDescription": "https://fonts.google.com/specimen/Averia+Sans+Libre", "const": "Averia Sans Libre" }, { "title": "Averia Serif Libre", "markdownDescription": "https://fonts.google.com/specimen/Averia+Serif+Libre", "const": "Averia Serif Libre" }, { "title": "Azeret Mono", "markdownDescription": "https://fonts.google.com/specimen/Azeret+Mono", "const": "Azeret Mono" }, { "title": "B612", "markdownDescription": "https://fonts.google.com/specimen/B612", "const": "B612" }, { "title": "B612 Mono", "markdownDescription": "https://fonts.google.com/specimen/B612+Mono", "const": "B612 Mono" }, { "title": "BIZ UDGothic", "markdownDescription": "https://fonts.google.com/specimen/BIZ+UDGothic", "const": "BIZ UDGothic" }, { "title": "BIZ UDMincho", "markdownDescription": "https://fonts.google.com/specimen/BIZ+UDMincho", "const": "BIZ UDMincho" }, { "title": "BIZ UDPGothic", "markdownDescription": "https://fonts.google.com/specimen/BIZ+UDPGothic", "const": "BIZ UDPGothic" }, { "title": "BIZ UDPMincho", "markdownDescription": "https://fonts.google.com/specimen/BIZ+UDPMincho", "const": "BIZ UDPMincho" }, { "title": "Babylonica", "markdownDescription": "https://fonts.google.com/specimen/Babylonica", "const": "Babylonica" }, { "title": "Bacasime Antique", "markdownDescription": "https://fonts.google.com/specimen/Bacasime+Antique", "const": "Bacasime Antique" }, { "title": "Bad Script", "markdownDescription": "https://fonts.google.com/specimen/Bad+Script", "const": "Bad Script" }, { "title": "Bagel Fat One", "markdownDescription": "https://fonts.google.com/specimen/Bagel+Fat+One", "const": "Bagel Fat One" }, { "title": "Bahiana", "markdownDescription": "https://fonts.google.com/specimen/Bahiana", "const": "Bahiana" }, { "title": "Bahianita", "markdownDescription": "https://fonts.google.com/specimen/Bahianita", "const": "Bahianita" }, { "title": "Bai Jamjuree", "markdownDescription": "https://fonts.google.com/specimen/Bai+Jamjuree", "const": "Bai Jamjuree" }, { "title": "Bakbak One", "markdownDescription": "https://fonts.google.com/specimen/Bakbak+One", "const": "Bakbak One" }, { "title": "Ballet", "markdownDescription": "https://fonts.google.com/specimen/Ballet", "const": "Ballet" }, { "title": "Baloo 2", "markdownDescription": "https://fonts.google.com/specimen/Baloo+2", "const": "Baloo 2" }, { "title": "Baloo Bhai 2", "markdownDescription": "https://fonts.google.com/specimen/Baloo+Bhai+2", "const": "Baloo Bhai 2" }, { "title": "Baloo Bhaijaan 2", "markdownDescription": "https://fonts.google.com/specimen/Baloo+Bhaijaan+2", "const": "Baloo Bhaijaan 2" }, { "title": "Baloo Bhaina 2", "markdownDescription": "https://fonts.google.com/specimen/Baloo+Bhaina+2", "const": "Baloo Bhaina 2" }, { "title": "Baloo Chettan 2", "markdownDescription": "https://fonts.google.com/specimen/Baloo+Chettan+2", "const": "Baloo Chettan 2" }, { "title": "Baloo Da 2", "markdownDescription": "https://fonts.google.com/specimen/Baloo+Da+2", "const": "Baloo Da 2" }, { "title": "Baloo Paaji 2", "markdownDescription": "https://fonts.google.com/specimen/Baloo+Paaji+2", "const": "Baloo Paaji 2" }, { "title": "Baloo Tamma 2", "markdownDescription": "https://fonts.google.com/specimen/Baloo+Tamma+2", "const": "Baloo Tamma 2" }, { "title": "Baloo Tammudu 2", "markdownDescription": "https://fonts.google.com/specimen/Baloo+Tammudu+2", "const": "Baloo Tammudu 2" }, { "title": "Baloo Thambi 2", "markdownDescription": "https://fonts.google.com/specimen/Baloo+Thambi+2", "const": "Baloo Thambi 2" }, { "title": "Balsamiq Sans", "markdownDescription": "https://fonts.google.com/specimen/Balsamiq+Sans", "const": "Balsamiq Sans" }, { "title": "Balthazar", "markdownDescription": "https://fonts.google.com/specimen/Balthazar", "const": "Balthazar" }, { "title": "Bangers", "markdownDescription": "https://fonts.google.com/specimen/Bangers", "const": "Bangers" }, { "title": "Barlow", "markdownDescription": "https://fonts.google.com/specimen/Barlow", "const": "Barlow" }, { "title": "Barlow Condensed", "markdownDescription": "https://fonts.google.com/specimen/Barlow+Condensed", "const": "Barlow Condensed" }, { "title": "Barlow Semi Condensed", "markdownDescription": "https://fonts.google.com/specimen/Barlow+Semi+Condensed", "const": "Barlow Semi Condensed" }, { "title": "Barriecito", "markdownDescription": "https://fonts.google.com/specimen/Barriecito", "const": "Barriecito" }, { "title": "Barrio", "markdownDescription": "https://fonts.google.com/specimen/Barrio", "const": "Barrio" }, { "title": "Basic", "markdownDescription": "https://fonts.google.com/specimen/Basic", "const": "Basic" }, { "title": "Baskervville", "markdownDescription": "https://fonts.google.com/specimen/Baskervville", "const": "Baskervville" }, { "title": "Battambang", "markdownDescription": "https://fonts.google.com/specimen/Battambang", "const": "Battambang" }, { "title": "Baumans", "markdownDescription": "https://fonts.google.com/specimen/Baumans", "const": "Baumans" }, { "title": "Bayon", "markdownDescription": "https://fonts.google.com/specimen/Bayon", "const": "Bayon" }, { "title": "Be Vietnam Pro", "markdownDescription": "https://fonts.google.com/specimen/Be+Vietnam+Pro", "const": "Be Vietnam Pro" }, { "title": "Beau Rivage", "markdownDescription": "https://fonts.google.com/specimen/Beau+Rivage", "const": "Beau Rivage" }, { "title": "Bebas Neue", "markdownDescription": "https://fonts.google.com/specimen/Bebas+Neue", "const": "Bebas Neue" }, { "title": "Belanosima", "markdownDescription": "https://fonts.google.com/specimen/Belanosima", "const": "Belanosima" }, { "title": "Belgrano", "markdownDescription": "https://fonts.google.com/specimen/Belgrano", "const": "Belgrano" }, { "title": "Bellefair", "markdownDescription": "https://fonts.google.com/specimen/Bellefair", "const": "Bellefair" }, { "title": "Belleza", "markdownDescription": "https://fonts.google.com/specimen/Belleza", "const": "Belleza" }, { "title": "Bellota", "markdownDescription": "https://fonts.google.com/specimen/Bellota", "const": "Bellota" }, { "title": "Bellota Text", "markdownDescription": "https://fonts.google.com/specimen/Bellota+Text", "const": "Bellota Text" }, { "title": "BenchNine", "markdownDescription": "https://fonts.google.com/specimen/BenchNine", "const": "BenchNine" }, { "title": "Benne", "markdownDescription": "https://fonts.google.com/specimen/Benne", "const": "Benne" }, { "title": "Bentham", "markdownDescription": "https://fonts.google.com/specimen/Bentham", "const": "Bentham" }, { "title": "Berkshire Swash", "markdownDescription": "https://fonts.google.com/specimen/Berkshire+Swash", "const": "Berkshire Swash" }, { "title": "Besley", "markdownDescription": "https://fonts.google.com/specimen/Besley", "const": "Besley" }, { "title": "Beth Ellen", "markdownDescription": "https://fonts.google.com/specimen/Beth+Ellen", "const": "Beth Ellen" }, { "title": "Bevan", "markdownDescription": "https://fonts.google.com/specimen/Bevan", "const": "Bevan" }, { "title": "BhuTuka Expanded One", "markdownDescription": "https://fonts.google.com/specimen/BhuTuka+Expanded+One", "const": "BhuTuka Expanded One" }, { "title": "Big Shoulders Display", "markdownDescription": "https://fonts.google.com/specimen/Big+Shoulders+Display", "const": "Big Shoulders Display" }, { "title": "Big Shoulders Inline Display", "markdownDescription": "https://fonts.google.com/specimen/Big+Shoulders+Inline+Display", "const": "Big Shoulders Inline Display" }, { "title": "Big Shoulders Inline Text", "markdownDescription": "https://fonts.google.com/specimen/Big+Shoulders+Inline+Text", "const": "Big Shoulders Inline Text" }, { "title": "Big Shoulders Stencil Display", "markdownDescription": "https://fonts.google.com/specimen/Big+Shoulders+Stencil+Display", "const": "Big Shoulders Stencil Display" }, { "title": "Big Shoulders Stencil Text", "markdownDescription": "https://fonts.google.com/specimen/Big+Shoulders+Stencil+Text", "const": "Big Shoulders Stencil Text" }, { "title": "Big Shoulders Text", "markdownDescription": "https://fonts.google.com/specimen/Big+Shoulders+Text", "const": "Big Shoulders Text" }, { "title": "Bigelow Rules", "markdownDescription": "https://fonts.google.com/specimen/Bigelow+Rules", "const": "Bigelow Rules" }, { "title": "Bigshot One", "markdownDescription": "https://fonts.google.com/specimen/Bigshot+One", "const": "Bigshot One" }, { "title": "Bilbo", "markdownDescription": "https://fonts.google.com/specimen/Bilbo", "const": "Bilbo" }, { "title": "Bilbo Swash Caps", "markdownDescription": "https://fonts.google.com/specimen/Bilbo+Swash+Caps", "const": "Bilbo Swash Caps" }, { "title": "BioRhyme", "markdownDescription": "https://fonts.google.com/specimen/BioRhyme", "const": "BioRhyme" }, { "title": "BioRhyme Expanded", "markdownDescription": "https://fonts.google.com/specimen/BioRhyme+Expanded", "const": "BioRhyme Expanded" }, { "title": "Birthstone", "markdownDescription": "https://fonts.google.com/specimen/Birthstone", "const": "Birthstone" }, { "title": "Birthstone Bounce", "markdownDescription": "https://fonts.google.com/specimen/Birthstone+Bounce", "const": "Birthstone Bounce" }, { "title": "Biryani", "markdownDescription": "https://fonts.google.com/specimen/Biryani", "const": "Biryani" }, { "title": "Bitter", "markdownDescription": "https://fonts.google.com/specimen/Bitter", "const": "Bitter" }, { "title": "Black And White Picture", "markdownDescription": "https://fonts.google.com/specimen/Black+And+White+Picture", "const": "Black And White Picture" }, { "title": "Black Han Sans", "markdownDescription": "https://fonts.google.com/specimen/Black+Han+Sans", "const": "Black Han Sans" }, { "title": "Black Ops One", "markdownDescription": "https://fonts.google.com/specimen/Black+Ops+One", "const": "Black Ops One" }, { "title": "Blaka", "markdownDescription": "https://fonts.google.com/specimen/Blaka", "const": "Blaka" }, { "title": "Blaka Hollow", "markdownDescription": "https://fonts.google.com/specimen/Blaka+Hollow", "const": "Blaka Hollow" }, { "title": "Blaka Ink", "markdownDescription": "https://fonts.google.com/specimen/Blaka+Ink", "const": "Blaka Ink" }, { "title": "Blinker", "markdownDescription": "https://fonts.google.com/specimen/Blinker", "const": "Blinker" }, { "title": "Bodoni Moda", "markdownDescription": "https://fonts.google.com/specimen/Bodoni+Moda", "const": "Bodoni Moda" }, { "title": "Bokor", "markdownDescription": "https://fonts.google.com/specimen/Bokor", "const": "Bokor" }, { "title": "Bona Nova", "markdownDescription": "https://fonts.google.com/specimen/Bona+Nova", "const": "Bona Nova" }, { "title": "Bonbon", "markdownDescription": "https://fonts.google.com/specimen/Bonbon", "const": "Bonbon" }, { "title": "Bonheur Royale", "markdownDescription": "https://fonts.google.com/specimen/Bonheur+Royale", "const": "Bonheur Royale" }, { "title": "Boogaloo", "markdownDescription": "https://fonts.google.com/specimen/Boogaloo", "const": "Boogaloo" }, { "title": "Borel", "markdownDescription": "https://fonts.google.com/specimen/Borel", "const": "Borel" }, { "title": "Bowlby One", "markdownDescription": "https://fonts.google.com/specimen/Bowlby+One", "const": "Bowlby One" }, { "title": "Bowlby One SC", "markdownDescription": "https://fonts.google.com/specimen/Bowlby+One+SC", "const": "Bowlby One SC" }, { "title": "Braah One", "markdownDescription": "https://fonts.google.com/specimen/Braah+One", "const": "Braah One" }, { "title": "Brawler", "markdownDescription": "https://fonts.google.com/specimen/Brawler", "const": "Brawler" }, { "title": "Bree Serif", "markdownDescription": "https://fonts.google.com/specimen/Bree+Serif", "const": "Bree Serif" }, { "title": "Bricolage Grotesque", "markdownDescription": "https://fonts.google.com/specimen/Bricolage+Grotesque", "const": "Bricolage Grotesque" }, { "title": "Bruno Ace", "markdownDescription": "https://fonts.google.com/specimen/Bruno+Ace", "const": "Bruno Ace" }, { "title": "Bruno Ace SC", "markdownDescription": "https://fonts.google.com/specimen/Bruno+Ace+SC", "const": "Bruno Ace SC" }, { "title": "Brygada 1918", "markdownDescription": "https://fonts.google.com/specimen/Brygada+1918", "const": "Brygada 1918" }, { "title": "Bubblegum Sans", "markdownDescription": "https://fonts.google.com/specimen/Bubblegum+Sans", "const": "Bubblegum Sans" }, { "title": "Bubbler One", "markdownDescription": "https://fonts.google.com/specimen/Bubbler+One", "const": "Bubbler One" }, { "title": "Buda", "markdownDescription": "https://fonts.google.com/specimen/Buda", "const": "Buda" }, { "title": "Buenard", "markdownDescription": "https://fonts.google.com/specimen/Buenard", "const": "Buenard" }, { "title": "Bungee", "markdownDescription": "https://fonts.google.com/specimen/Bungee", "const": "Bungee" }, { "title": "Bungee Hairline", "markdownDescription": "https://fonts.google.com/specimen/Bungee+Hairline", "const": "Bungee Hairline" }, { "title": "Bungee Inline", "markdownDescription": "https://fonts.google.com/specimen/Bungee+Inline", "const": "Bungee Inline" }, { "title": "Bungee Outline", "markdownDescription": "https://fonts.google.com/specimen/Bungee+Outline", "const": "Bungee Outline" }, { "title": "Bungee Shade", "markdownDescription": "https://fonts.google.com/specimen/Bungee+Shade", "const": "Bungee Shade" }, { "title": "Bungee Spice", "markdownDescription": "https://fonts.google.com/specimen/Bungee+Spice", "const": "Bungee Spice" }, { "title": "Butcherman", "markdownDescription": "https://fonts.google.com/specimen/Butcherman", "const": "Butcherman" }, { "title": "Butterfly Kids", "markdownDescription": "https://fonts.google.com/specimen/Butterfly+Kids", "const": "Butterfly Kids" }, { "title": "Cabin", "markdownDescription": "https://fonts.google.com/specimen/Cabin", "const": "Cabin" }, { "title": "Cabin Condensed", "markdownDescription": "https://fonts.google.com/specimen/Cabin+Condensed", "const": "Cabin Condensed" }, { "title": "Cabin Sketch", "markdownDescription": "https://fonts.google.com/specimen/Cabin+Sketch", "const": "Cabin Sketch" }, { "title": "Caesar Dressing", "markdownDescription": "https://fonts.google.com/specimen/Caesar+Dressing", "const": "Caesar Dressing" }, { "title": "Cagliostro", "markdownDescription": "https://fonts.google.com/specimen/Cagliostro", "const": "Cagliostro" }, { "title": "Cairo", "markdownDescription": "https://fonts.google.com/specimen/Cairo", "const": "Cairo" }, { "title": "Cairo Play", "markdownDescription": "https://fonts.google.com/specimen/Cairo+Play", "const": "Cairo Play" }, { "title": "Caladea", "markdownDescription": "https://fonts.google.com/specimen/Caladea", "const": "Caladea" }, { "title": "Calistoga", "markdownDescription": "https://fonts.google.com/specimen/Calistoga", "const": "Calistoga" }, { "title": "Calligraffitti", "markdownDescription": "https://fonts.google.com/specimen/Calligraffitti", "const": "Calligraffitti" }, { "title": "Cambay", "markdownDescription": "https://fonts.google.com/specimen/Cambay", "const": "Cambay" }, { "title": "Cambo", "markdownDescription": "https://fonts.google.com/specimen/Cambo", "const": "Cambo" }, { "title": "Candal", "markdownDescription": "https://fonts.google.com/specimen/Candal", "const": "Candal" }, { "title": "Cantarell", "markdownDescription": "https://fonts.google.com/specimen/Cantarell", "const": "Cantarell" }, { "title": "Cantata One", "markdownDescription": "https://fonts.google.com/specimen/Cantata+One", "const": "Cantata One" }, { "title": "Cantora One", "markdownDescription": "https://fonts.google.com/specimen/Cantora+One", "const": "Cantora One" }, { "title": "Caprasimo", "markdownDescription": "https://fonts.google.com/specimen/Caprasimo", "const": "Caprasimo" }, { "title": "Capriola", "markdownDescription": "https://fonts.google.com/specimen/Capriola", "const": "Capriola" }, { "title": "Caramel", "markdownDescription": "https://fonts.google.com/specimen/Caramel", "const": "Caramel" }, { "title": "Carattere", "markdownDescription": "https://fonts.google.com/specimen/Carattere", "const": "Carattere" }, { "title": "Cardo", "markdownDescription": "https://fonts.google.com/specimen/Cardo", "const": "Cardo" }, { "title": "Carlito", "markdownDescription": "https://fonts.google.com/specimen/Carlito", "const": "Carlito" }, { "title": "Carme", "markdownDescription": "https://fonts.google.com/specimen/Carme", "const": "Carme" }, { "title": "Carrois Gothic", "markdownDescription": "https://fonts.google.com/specimen/Carrois+Gothic", "const": "Carrois Gothic" }, { "title": "Carrois Gothic SC", "markdownDescription": "https://fonts.google.com/specimen/Carrois+Gothic+SC", "const": "Carrois Gothic SC" }, { "title": "Carter One", "markdownDescription": "https://fonts.google.com/specimen/Carter+One", "const": "Carter One" }, { "title": "Castoro", "markdownDescription": "https://fonts.google.com/specimen/Castoro", "const": "Castoro" }, { "title": "Castoro Titling", "markdownDescription": "https://fonts.google.com/specimen/Castoro+Titling", "const": "Castoro Titling" }, { "title": "Catamaran", "markdownDescription": "https://fonts.google.com/specimen/Catamaran", "const": "Catamaran" }, { "title": "Caudex", "markdownDescription": "https://fonts.google.com/specimen/Caudex", "const": "Caudex" }, { "title": "Caveat", "markdownDescription": "https://fonts.google.com/specimen/Caveat", "const": "Caveat" }, { "title": "Caveat Brush", "markdownDescription": "https://fonts.google.com/specimen/Caveat+Brush", "const": "Caveat Brush" }, { "title": "Cedarville Cursive", "markdownDescription": "https://fonts.google.com/specimen/Cedarville+Cursive", "const": "Cedarville Cursive" }, { "title": "Ceviche One", "markdownDescription": "https://fonts.google.com/specimen/Ceviche+One", "const": "Ceviche One" }, { "title": "Chakra Petch", "markdownDescription": "https://fonts.google.com/specimen/Chakra+Petch", "const": "Chakra Petch" }, { "title": "Changa", "markdownDescription": "https://fonts.google.com/specimen/Changa", "const": "Changa" }, { "title": "Changa One", "markdownDescription": "https://fonts.google.com/specimen/Changa+One", "const": "Changa One" }, { "title": "Chango", "markdownDescription": "https://fonts.google.com/specimen/Chango", "const": "Chango" }, { "title": "Charis SIL", "markdownDescription": "https://fonts.google.com/specimen/Charis+SIL", "const": "Charis SIL" }, { "title": "Charm", "markdownDescription": "https://fonts.google.com/specimen/Charm", "const": "Charm" }, { "title": "Charmonman", "markdownDescription": "https://fonts.google.com/specimen/Charmonman", "const": "Charmonman" }, { "title": "Chathura", "markdownDescription": "https://fonts.google.com/specimen/Chathura", "const": "Chathura" }, { "title": "Chau Philomene One", "markdownDescription": "https://fonts.google.com/specimen/Chau+Philomene+One", "const": "Chau Philomene One" }, { "title": "Chela One", "markdownDescription": "https://fonts.google.com/specimen/Chela+One", "const": "Chela One" }, { "title": "Chelsea Market", "markdownDescription": "https://fonts.google.com/specimen/Chelsea+Market", "const": "Chelsea Market" }, { "title": "Chenla", "markdownDescription": "https://fonts.google.com/specimen/Chenla", "const": "Chenla" }, { "title": "Cherish", "markdownDescription": "https://fonts.google.com/specimen/Cherish", "const": "Cherish" }, { "title": "Cherry Bomb One", "markdownDescription": "https://fonts.google.com/specimen/Cherry+Bomb+One", "const": "Cherry Bomb One" }, { "title": "Cherry Cream Soda", "markdownDescription": "https://fonts.google.com/specimen/Cherry+Cream+Soda", "const": "Cherry Cream Soda" }, { "title": "Cherry Swash", "markdownDescription": "https://fonts.google.com/specimen/Cherry+Swash", "const": "Cherry Swash" }, { "title": "Chewy", "markdownDescription": "https://fonts.google.com/specimen/Chewy", "const": "Chewy" }, { "title": "Chicle", "markdownDescription": "https://fonts.google.com/specimen/Chicle", "const": "Chicle" }, { "title": "Chilanka", "markdownDescription": "https://fonts.google.com/specimen/Chilanka", "const": "Chilanka" }, { "title": "Chivo", "markdownDescription": "https://fonts.google.com/specimen/Chivo", "const": "Chivo" }, { "title": "Chivo Mono", "markdownDescription": "https://fonts.google.com/specimen/Chivo+Mono", "const": "Chivo Mono" }, { "title": "Chokokutai", "markdownDescription": "https://fonts.google.com/specimen/Chokokutai", "const": "Chokokutai" }, { "title": "Chonburi", "markdownDescription": "https://fonts.google.com/specimen/Chonburi", "const": "Chonburi" }, { "title": "Cinzel", "markdownDescription": "https://fonts.google.com/specimen/Cinzel", "const": "Cinzel" }, { "title": "Cinzel Decorative", "markdownDescription": "https://fonts.google.com/specimen/Cinzel+Decorative", "const": "Cinzel Decorative" }, { "title": "Clicker Script", "markdownDescription": "https://fonts.google.com/specimen/Clicker+Script", "const": "Clicker Script" }, { "title": "Climate Crisis", "markdownDescription": "https://fonts.google.com/specimen/Climate+Crisis", "const": "Climate Crisis" }, { "title": "Coda", "markdownDescription": "https://fonts.google.com/specimen/Coda", "const": "Coda" }, { "title": "Coda Caption", "markdownDescription": "https://fonts.google.com/specimen/Coda+Caption", "const": "Coda Caption" }, { "title": "Codystar", "markdownDescription": "https://fonts.google.com/specimen/Codystar", "const": "Codystar" }, { "title": "Coiny", "markdownDescription": "https://fonts.google.com/specimen/Coiny", "const": "Coiny" }, { "title": "Combo", "markdownDescription": "https://fonts.google.com/specimen/Combo", "const": "Combo" }, { "title": "Comfortaa", "markdownDescription": "https://fonts.google.com/specimen/Comfortaa", "const": "Comfortaa" }, { "title": "Comforter", "markdownDescription": "https://fonts.google.com/specimen/Comforter", "const": "Comforter" }, { "title": "Comforter Brush", "markdownDescription": "https://fonts.google.com/specimen/Comforter+Brush", "const": "Comforter Brush" }, { "title": "Comic Neue", "markdownDescription": "https://fonts.google.com/specimen/Comic+Neue", "const": "Comic Neue" }, { "title": "Coming Soon", "markdownDescription": "https://fonts.google.com/specimen/Coming+Soon", "const": "Coming Soon" }, { "title": "Comme", "markdownDescription": "https://fonts.google.com/specimen/Comme", "const": "Comme" }, { "title": "Commissioner", "markdownDescription": "https://fonts.google.com/specimen/Commissioner", "const": "Commissioner" }, { "title": "Concert One", "markdownDescription": "https://fonts.google.com/specimen/Concert+One", "const": "Concert One" }, { "title": "Condiment", "markdownDescription": "https://fonts.google.com/specimen/Condiment", "const": "Condiment" }, { "title": "Content", "markdownDescription": "https://fonts.google.com/specimen/Content", "const": "Content" }, { "title": "Contrail One", "markdownDescription": "https://fonts.google.com/specimen/Contrail+One", "const": "Contrail One" }, { "title": "Convergence", "markdownDescription": "https://fonts.google.com/specimen/Convergence", "const": "Convergence" }, { "title": "Cookie", "markdownDescription": "https://fonts.google.com/specimen/Cookie", "const": "Cookie" }, { "title": "Copse", "markdownDescription": "https://fonts.google.com/specimen/Copse", "const": "Copse" }, { "title": "Corben", "markdownDescription": "https://fonts.google.com/specimen/Corben", "const": "Corben" }, { "title": "Corinthia", "markdownDescription": "https://fonts.google.com/specimen/Corinthia", "const": "Corinthia" }, { "title": "Cormorant", "markdownDescription": "https://fonts.google.com/specimen/Cormorant", "const": "Cormorant" }, { "title": "Cormorant Garamond", "markdownDescription": "https://fonts.google.com/specimen/Cormorant+Garamond", "const": "Cormorant Garamond" }, { "title": "Cormorant Infant", "markdownDescription": "https://fonts.google.com/specimen/Cormorant+Infant", "const": "Cormorant Infant" }, { "title": "Cormorant SC", "markdownDescription": "https://fonts.google.com/specimen/Cormorant+SC", "const": "Cormorant SC" }, { "title": "Cormorant Unicase", "markdownDescription": "https://fonts.google.com/specimen/Cormorant+Unicase", "const": "Cormorant Unicase" }, { "title": "Cormorant Upright", "markdownDescription": "https://fonts.google.com/specimen/Cormorant+Upright", "const": "Cormorant Upright" }, { "title": "Courgette", "markdownDescription": "https://fonts.google.com/specimen/Courgette", "const": "Courgette" }, { "title": "Courier Prime", "markdownDescription": "https://fonts.google.com/specimen/Courier+Prime", "const": "Courier Prime" }, { "title": "Cousine", "markdownDescription": "https://fonts.google.com/specimen/Cousine", "const": "Cousine" }, { "title": "Coustard", "markdownDescription": "https://fonts.google.com/specimen/Coustard", "const": "Coustard" }, { "title": "Covered By Your Grace", "markdownDescription": "https://fonts.google.com/specimen/Covered+By+Your+Grace", "const": "Covered By Your Grace" }, { "title": "Crafty Girls", "markdownDescription": "https://fonts.google.com/specimen/Crafty+Girls", "const": "Crafty Girls" }, { "title": "Creepster", "markdownDescription": "https://fonts.google.com/specimen/Creepster", "const": "Creepster" }, { "title": "Crete Round", "markdownDescription": "https://fonts.google.com/specimen/Crete+Round", "const": "Crete Round" }, { "title": "Crimson Pro", "markdownDescription": "https://fonts.google.com/specimen/Crimson+Pro", "const": "Crimson Pro" }, { "title": "Crimson Text", "markdownDescription": "https://fonts.google.com/specimen/Crimson+Text", "const": "Crimson Text" }, { "title": "Croissant One", "markdownDescription": "https://fonts.google.com/specimen/Croissant+One", "const": "Croissant One" }, { "title": "Crushed", "markdownDescription": "https://fonts.google.com/specimen/Crushed", "const": "Crushed" }, { "title": "Cuprum", "markdownDescription": "https://fonts.google.com/specimen/Cuprum", "const": "Cuprum" }, { "title": "Cute Font", "markdownDescription": "https://fonts.google.com/specimen/Cute+Font", "const": "Cute Font" }, { "title": "Cutive", "markdownDescription": "https://fonts.google.com/specimen/Cutive", "const": "Cutive" }, { "title": "Cutive Mono", "markdownDescription": "https://fonts.google.com/specimen/Cutive+Mono", "const": "Cutive Mono" }, { "title": "DM Mono", "markdownDescription": "https://fonts.google.com/specimen/DM+Mono", "const": "DM Mono" }, { "title": "DM Sans", "markdownDescription": "https://fonts.google.com/specimen/DM+Sans", "const": "DM Sans" }, { "title": "DM Serif Display", "markdownDescription": "https://fonts.google.com/specimen/DM+Serif+Display", "const": "DM Serif Display" }, { "title": "DM Serif Text", "markdownDescription": "https://fonts.google.com/specimen/DM+Serif+Text", "const": "DM Serif Text" }, { "title": "Dai Banna SIL", "markdownDescription": "https://fonts.google.com/specimen/Dai+Banna+SIL", "const": "Dai Banna SIL" }, { "title": "Damion", "markdownDescription": "https://fonts.google.com/specimen/Damion", "const": "Damion" }, { "title": "Dancing Script", "markdownDescription": "https://fonts.google.com/specimen/Dancing+Script", "const": "Dancing Script" }, { "title": "Dangrek", "markdownDescription": "https://fonts.google.com/specimen/Dangrek", "const": "Dangrek" }, { "title": "Darker Grotesque", "markdownDescription": "https://fonts.google.com/specimen/Darker+Grotesque", "const": "Darker Grotesque" }, { "title": "Darumadrop One", "markdownDescription": "https://fonts.google.com/specimen/Darumadrop+One", "const": "Darumadrop One" }, { "title": "David Libre", "markdownDescription": "https://fonts.google.com/specimen/David+Libre", "const": "David Libre" }, { "title": "Dawning of a New Day", "markdownDescription": "https://fonts.google.com/specimen/Dawning+of+a+New+Day", "const": "Dawning of a New Day" }, { "title": "Days One", "markdownDescription": "https://fonts.google.com/specimen/Days+One", "const": "Days One" }, { "title": "Dekko", "markdownDescription": "https://fonts.google.com/specimen/Dekko", "const": "Dekko" }, { "title": "Dela Gothic One", "markdownDescription": "https://fonts.google.com/specimen/Dela+Gothic+One", "const": "Dela Gothic One" }, { "title": "Delicious Handrawn", "markdownDescription": "https://fonts.google.com/specimen/Delicious+Handrawn", "const": "Delicious Handrawn" }, { "title": "Delius", "markdownDescription": "https://fonts.google.com/specimen/Delius", "const": "Delius" }, { "title": "Delius Swash Caps", "markdownDescription": "https://fonts.google.com/specimen/Delius+Swash+Caps", "const": "Delius Swash Caps" }, { "title": "Delius Unicase", "markdownDescription": "https://fonts.google.com/specimen/Delius+Unicase", "const": "Delius Unicase" }, { "title": "Della Respira", "markdownDescription": "https://fonts.google.com/specimen/Della+Respira", "const": "Della Respira" }, { "title": "Denk One", "markdownDescription": "https://fonts.google.com/specimen/Denk+One", "const": "Denk One" }, { "title": "Devonshire", "markdownDescription": "https://fonts.google.com/specimen/Devonshire", "const": "Devonshire" }, { "title": "Dhurjati", "markdownDescription": "https://fonts.google.com/specimen/Dhurjati", "const": "Dhurjati" }, { "title": "Didact Gothic", "markdownDescription": "https://fonts.google.com/specimen/Didact+Gothic", "const": "Didact Gothic" }, { "title": "Diphylleia", "markdownDescription": "https://fonts.google.com/specimen/Diphylleia", "const": "Diphylleia" }, { "title": "Diplomata", "markdownDescription": "https://fonts.google.com/specimen/Diplomata", "const": "Diplomata" }, { "title": "Diplomata SC", "markdownDescription": "https://fonts.google.com/specimen/Diplomata+SC", "const": "Diplomata SC" }, { "title": "Do Hyeon", "markdownDescription": "https://fonts.google.com/specimen/Do+Hyeon", "const": "Do Hyeon" }, { "title": "Dokdo", "markdownDescription": "https://fonts.google.com/specimen/Dokdo", "const": "Dokdo" }, { "title": "Domine", "markdownDescription": "https://fonts.google.com/specimen/Domine", "const": "Domine" }, { "title": "Donegal One", "markdownDescription": "https://fonts.google.com/specimen/Donegal+One", "const": "Donegal One" }, { "title": "Dongle", "markdownDescription": "https://fonts.google.com/specimen/Dongle", "const": "Dongle" }, { "title": "Doppio One", "markdownDescription": "https://fonts.google.com/specimen/Doppio+One", "const": "Doppio One" }, { "title": "Dorsa", "markdownDescription": "https://fonts.google.com/specimen/Dorsa", "const": "Dorsa" }, { "title": "Dosis", "markdownDescription": "https://fonts.google.com/specimen/Dosis", "const": "Dosis" }, { "title": "DotGothic16", "markdownDescription": "https://fonts.google.com/specimen/DotGothic16", "const": "DotGothic16" }, { "title": "Dr Sugiyama", "markdownDescription": "https://fonts.google.com/specimen/Dr+Sugiyama", "const": "Dr Sugiyama" }, { "title": "Duru Sans", "markdownDescription": "https://fonts.google.com/specimen/Duru+Sans", "const": "Duru Sans" }, { "title": "DynaPuff", "markdownDescription": "https://fonts.google.com/specimen/DynaPuff", "const": "DynaPuff" }, { "title": "Dynalight", "markdownDescription": "https://fonts.google.com/specimen/Dynalight", "const": "Dynalight" }, { "title": "EB Garamond", "markdownDescription": "https://fonts.google.com/specimen/EB+Garamond", "const": "EB Garamond" }, { "title": "Eagle Lake", "markdownDescription": "https://fonts.google.com/specimen/Eagle+Lake", "const": "Eagle Lake" }, { "title": "East Sea Dokdo", "markdownDescription": "https://fonts.google.com/specimen/East+Sea+Dokdo", "const": "East Sea Dokdo" }, { "title": "Eater", "markdownDescription": "https://fonts.google.com/specimen/Eater", "const": "Eater" }, { "title": "Economica", "markdownDescription": "https://fonts.google.com/specimen/Economica", "const": "Economica" }, { "title": "Eczar", "markdownDescription": "https://fonts.google.com/specimen/Eczar", "const": "Eczar" }, { "title": "Edu NSW ACT Foundation", "markdownDescription": "https://fonts.google.com/specimen/Edu+NSW+ACT+Foundation", "const": "Edu NSW ACT Foundation" }, { "title": "Edu QLD Beginner", "markdownDescription": "https://fonts.google.com/specimen/Edu+QLD+Beginner", "const": "Edu QLD Beginner" }, { "title": "Edu SA Beginner", "markdownDescription": "https://fonts.google.com/specimen/Edu+SA+Beginner", "const": "Edu SA Beginner" }, { "title": "Edu TAS Beginner", "markdownDescription": "https://fonts.google.com/specimen/Edu+TAS+Beginner", "const": "Edu TAS Beginner" }, { "title": "Edu VIC WA NT Beginner", "markdownDescription": "https://fonts.google.com/specimen/Edu+VIC+WA+NT+Beginner", "const": "Edu VIC WA NT Beginner" }, { "title": "El Messiri", "markdownDescription": "https://fonts.google.com/specimen/El+Messiri", "const": "El Messiri" }, { "title": "Electrolize", "markdownDescription": "https://fonts.google.com/specimen/Electrolize", "const": "Electrolize" }, { "title": "Elsie", "markdownDescription": "https://fonts.google.com/specimen/Elsie", "const": "Elsie" }, { "title": "Elsie Swash Caps", "markdownDescription": "https://fonts.google.com/specimen/Elsie+Swash+Caps", "const": "Elsie Swash Caps" }, { "title": "Emblema One", "markdownDescription": "https://fonts.google.com/specimen/Emblema+One", "const": "Emblema One" }, { "title": "Emilys Candy", "markdownDescription": "https://fonts.google.com/specimen/Emilys+Candy", "const": "Emilys Candy" }, { "title": "Encode Sans", "markdownDescription": "https://fonts.google.com/specimen/Encode+Sans", "const": "Encode Sans" }, { "title": "Encode Sans Condensed", "markdownDescription": "https://fonts.google.com/specimen/Encode+Sans+Condensed", "const": "Encode Sans Condensed" }, { "title": "Encode Sans Expanded", "markdownDescription": "https://fonts.google.com/specimen/Encode+Sans+Expanded", "const": "Encode Sans Expanded" }, { "title": "Encode Sans SC", "markdownDescription": "https://fonts.google.com/specimen/Encode+Sans+SC", "const": "Encode Sans SC" }, { "title": "Encode Sans Semi Condensed", "markdownDescription": "https://fonts.google.com/specimen/Encode+Sans+Semi+Condensed", "const": "Encode Sans Semi Condensed" }, { "title": "Encode Sans Semi Expanded", "markdownDescription": "https://fonts.google.com/specimen/Encode+Sans+Semi+Expanded", "const": "Encode Sans Semi Expanded" }, { "title": "Engagement", "markdownDescription": "https://fonts.google.com/specimen/Engagement", "const": "Engagement" }, { "title": "Englebert", "markdownDescription": "https://fonts.google.com/specimen/Englebert", "const": "Englebert" }, { "title": "Enriqueta", "markdownDescription": "https://fonts.google.com/specimen/Enriqueta", "const": "Enriqueta" }, { "title": "Ephesis", "markdownDescription": "https://fonts.google.com/specimen/Ephesis", "const": "Ephesis" }, { "title": "Epilogue", "markdownDescription": "https://fonts.google.com/specimen/Epilogue", "const": "Epilogue" }, { "title": "Erica One", "markdownDescription": "https://fonts.google.com/specimen/Erica+One", "const": "Erica One" }, { "title": "Esteban", "markdownDescription": "https://fonts.google.com/specimen/Esteban", "const": "Esteban" }, { "title": "Estonia", "markdownDescription": "https://fonts.google.com/specimen/Estonia", "const": "Estonia" }, { "title": "Euphoria Script", "markdownDescription": "https://fonts.google.com/specimen/Euphoria+Script", "const": "Euphoria Script" }, { "title": "Ewert", "markdownDescription": "https://fonts.google.com/specimen/Ewert", "const": "Ewert" }, { "title": "Exo", "markdownDescription": "https://fonts.google.com/specimen/Exo", "const": "Exo" }, { "title": "Exo 2", "markdownDescription": "https://fonts.google.com/specimen/Exo+2", "const": "Exo 2" }, { "title": "Expletus Sans", "markdownDescription": "https://fonts.google.com/specimen/Expletus+Sans", "const": "Expletus Sans" }, { "title": "Explora", "markdownDescription": "https://fonts.google.com/specimen/Explora", "const": "Explora" }, { "title": "Fahkwang", "markdownDescription": "https://fonts.google.com/specimen/Fahkwang", "const": "Fahkwang" }, { "title": "Familjen Grotesk", "markdownDescription": "https://fonts.google.com/specimen/Familjen+Grotesk", "const": "Familjen Grotesk" }, { "title": "Fanwood Text", "markdownDescription": "https://fonts.google.com/specimen/Fanwood+Text", "const": "Fanwood Text" }, { "title": "Farro", "markdownDescription": "https://fonts.google.com/specimen/Farro", "const": "Farro" }, { "title": "Farsan", "markdownDescription": "https://fonts.google.com/specimen/Farsan", "const": "Farsan" }, { "title": "Fascinate", "markdownDescription": "https://fonts.google.com/specimen/Fascinate", "const": "Fascinate" }, { "title": "Fascinate Inline", "markdownDescription": "https://fonts.google.com/specimen/Fascinate+Inline", "const": "Fascinate Inline" }, { "title": "Faster One", "markdownDescription": "https://fonts.google.com/specimen/Faster+One", "const": "Faster One" }, { "title": "Fasthand", "markdownDescription": "https://fonts.google.com/specimen/Fasthand", "const": "Fasthand" }, { "title": "Fauna One", "markdownDescription": "https://fonts.google.com/specimen/Fauna+One", "const": "Fauna One" }, { "title": "Faustina", "markdownDescription": "https://fonts.google.com/specimen/Faustina", "const": "Faustina" }, { "title": "Federant", "markdownDescription": "https://fonts.google.com/specimen/Federant", "const": "Federant" }, { "title": "Federo", "markdownDescription": "https://fonts.google.com/specimen/Federo", "const": "Federo" }, { "title": "Felipa", "markdownDescription": "https://fonts.google.com/specimen/Felipa", "const": "Felipa" }, { "title": "Fenix", "markdownDescription": "https://fonts.google.com/specimen/Fenix", "const": "Fenix" }, { "title": "Festive", "markdownDescription": "https://fonts.google.com/specimen/Festive", "const": "Festive" }, { "title": "Figtree", "markdownDescription": "https://fonts.google.com/specimen/Figtree", "const": "Figtree" }, { "title": "Finger Paint", "markdownDescription": "https://fonts.google.com/specimen/Finger+Paint", "const": "Finger Paint" }, { "title": "Finlandica", "markdownDescription": "https://fonts.google.com/specimen/Finlandica", "const": "Finlandica" }, { "title": "Fira Code", "markdownDescription": "https://fonts.google.com/specimen/Fira+Code", "const": "Fira Code" }, { "title": "Fira Mono", "markdownDescription": "https://fonts.google.com/specimen/Fira+Mono", "const": "Fira Mono" }, { "title": "Fira Sans", "markdownDescription": "https://fonts.google.com/specimen/Fira+Sans", "const": "Fira Sans" }, { "title": "Fira Sans Condensed", "markdownDescription": "https://fonts.google.com/specimen/Fira+Sans+Condensed", "const": "Fira Sans Condensed" }, { "title": "Fira Sans Extra Condensed", "markdownDescription": "https://fonts.google.com/specimen/Fira+Sans+Extra+Condensed", "const": "Fira Sans Extra Condensed" }, { "title": "Fjalla One", "markdownDescription": "https://fonts.google.com/specimen/Fjalla+One", "const": "Fjalla One" }, { "title": "Fjord One", "markdownDescription": "https://fonts.google.com/specimen/Fjord+One", "const": "Fjord One" }, { "title": "Flamenco", "markdownDescription": "https://fonts.google.com/specimen/Flamenco", "const": "Flamenco" }, { "title": "Flavors", "markdownDescription": "https://fonts.google.com/specimen/Flavors", "const": "Flavors" }, { "title": "Fleur De Leah", "markdownDescription": "https://fonts.google.com/specimen/Fleur+De+Leah", "const": "Fleur De Leah" }, { "title": "Flow Block", "markdownDescription": "https://fonts.google.com/specimen/Flow+Block", "const": "Flow Block" }, { "title": "Flow Circular", "markdownDescription": "https://fonts.google.com/specimen/Flow+Circular", "const": "Flow Circular" }, { "title": "Flow Rounded", "markdownDescription": "https://fonts.google.com/specimen/Flow+Rounded", "const": "Flow Rounded" }, { "title": "Foldit", "markdownDescription": "https://fonts.google.com/specimen/Foldit", "const": "Foldit" }, { "title": "Fondamento", "markdownDescription": "https://fonts.google.com/specimen/Fondamento", "const": "Fondamento" }, { "title": "Fontdiner Swanky", "markdownDescription": "https://fonts.google.com/specimen/Fontdiner+Swanky", "const": "Fontdiner Swanky" }, { "title": "Forum", "markdownDescription": "https://fonts.google.com/specimen/Forum", "const": "Forum" }, { "title": "Fragment Mono", "markdownDescription": "https://fonts.google.com/specimen/Fragment+Mono", "const": "Fragment Mono" }, { "title": "Francois One", "markdownDescription": "https://fonts.google.com/specimen/Francois+One", "const": "Francois One" }, { "title": "Frank Ruhl Libre", "markdownDescription": "https://fonts.google.com/specimen/Frank+Ruhl+Libre", "const": "Frank Ruhl Libre" }, { "title": "Fraunces", "markdownDescription": "https://fonts.google.com/specimen/Fraunces", "const": "Fraunces" }, { "title": "Freckle Face", "markdownDescription": "https://fonts.google.com/specimen/Freckle+Face", "const": "Freckle Face" }, { "title": "Fredericka the Great", "markdownDescription": "https://fonts.google.com/specimen/Fredericka+the+Great", "const": "Fredericka the Great" }, { "title": "Fredoka", "markdownDescription": "https://fonts.google.com/specimen/Fredoka", "const": "Fredoka" }, { "title": "Freehand", "markdownDescription": "https://fonts.google.com/specimen/Freehand", "const": "Freehand" }, { "title": "Fresca", "markdownDescription": "https://fonts.google.com/specimen/Fresca", "const": "Fresca" }, { "title": "Frijole", "markdownDescription": "https://fonts.google.com/specimen/Frijole", "const": "Frijole" }, { "title": "Fruktur", "markdownDescription": "https://fonts.google.com/specimen/Fruktur", "const": "Fruktur" }, { "title": "Fugaz One", "markdownDescription": "https://fonts.google.com/specimen/Fugaz+One", "const": "Fugaz One" }, { "title": "Fuggles", "markdownDescription": "https://fonts.google.com/specimen/Fuggles", "const": "Fuggles" }, { "title": "Fuzzy Bubbles", "markdownDescription": "https://fonts.google.com/specimen/Fuzzy+Bubbles", "const": "Fuzzy Bubbles" }, { "title": "GFS Didot", "markdownDescription": "https://fonts.google.com/specimen/GFS+Didot", "const": "GFS Didot" }, { "title": "GFS Neohellenic", "markdownDescription": "https://fonts.google.com/specimen/GFS+Neohellenic", "const": "GFS Neohellenic" }, { "title": "Gabarito", "markdownDescription": "https://fonts.google.com/specimen/Gabarito", "const": "Gabarito" }, { "title": "Gabriela", "markdownDescription": "https://fonts.google.com/specimen/Gabriela", "const": "Gabriela" }, { "title": "Gaegu", "markdownDescription": "https://fonts.google.com/specimen/Gaegu", "const": "Gaegu" }, { "title": "Gafata", "markdownDescription": "https://fonts.google.com/specimen/Gafata", "const": "Gafata" }, { "title": "Gajraj One", "markdownDescription": "https://fonts.google.com/specimen/Gajraj+One", "const": "Gajraj One" }, { "title": "Galada", "markdownDescription": "https://fonts.google.com/specimen/Galada", "const": "Galada" }, { "title": "Galdeano", "markdownDescription": "https://fonts.google.com/specimen/Galdeano", "const": "Galdeano" }, { "title": "Galindo", "markdownDescription": "https://fonts.google.com/specimen/Galindo", "const": "Galindo" }, { "title": "Gamja Flower", "markdownDescription": "https://fonts.google.com/specimen/Gamja+Flower", "const": "Gamja Flower" }, { "title": "Gantari", "markdownDescription": "https://fonts.google.com/specimen/Gantari", "const": "Gantari" }, { "title": "Gasoek One", "markdownDescription": "https://fonts.google.com/specimen/Gasoek+One", "const": "Gasoek One" }, { "title": "Gayathri", "markdownDescription": "https://fonts.google.com/specimen/Gayathri", "const": "Gayathri" }, { "title": "Gelasio", "markdownDescription": "https://fonts.google.com/specimen/Gelasio", "const": "Gelasio" }, { "title": "Gemunu Libre", "markdownDescription": "https://fonts.google.com/specimen/Gemunu+Libre", "const": "Gemunu Libre" }, { "title": "Genos", "markdownDescription": "https://fonts.google.com/specimen/Genos", "const": "Genos" }, { "title": "Gentium Book Plus", "markdownDescription": "https://fonts.google.com/specimen/Gentium+Book+Plus", "const": "Gentium Book Plus" }, { "title": "Gentium Plus", "markdownDescription": "https://fonts.google.com/specimen/Gentium+Plus", "const": "Gentium Plus" }, { "title": "Geo", "markdownDescription": "https://fonts.google.com/specimen/Geo", "const": "Geo" }, { "title": "Geologica", "markdownDescription": "https://fonts.google.com/specimen/Geologica", "const": "Geologica" }, { "title": "Georama", "markdownDescription": "https://fonts.google.com/specimen/Georama", "const": "Georama" }, { "title": "Geostar", "markdownDescription": "https://fonts.google.com/specimen/Geostar", "const": "Geostar" }, { "title": "Geostar Fill", "markdownDescription": "https://fonts.google.com/specimen/Geostar+Fill", "const": "Geostar Fill" }, { "title": "Germania One", "markdownDescription": "https://fonts.google.com/specimen/Germania+One", "const": "Germania One" }, { "title": "Gideon Roman", "markdownDescription": "https://fonts.google.com/specimen/Gideon+Roman", "const": "Gideon Roman" }, { "title": "Gidugu", "markdownDescription": "https://fonts.google.com/specimen/Gidugu", "const": "Gidugu" }, { "title": "Gilda Display", "markdownDescription": "https://fonts.google.com/specimen/Gilda+Display", "const": "Gilda Display" }, { "title": "Girassol", "markdownDescription": "https://fonts.google.com/specimen/Girassol", "const": "Girassol" }, { "title": "Give You Glory", "markdownDescription": "https://fonts.google.com/specimen/Give+You+Glory", "const": "Give You Glory" }, { "title": "Glass Antiqua", "markdownDescription": "https://fonts.google.com/specimen/Glass+Antiqua", "const": "Glass Antiqua" }, { "title": "Glegoo", "markdownDescription": "https://fonts.google.com/specimen/Glegoo", "const": "Glegoo" }, { "title": "Gloock", "markdownDescription": "https://fonts.google.com/specimen/Gloock", "const": "Gloock" }, { "title": "Gloria Hallelujah", "markdownDescription": "https://fonts.google.com/specimen/Gloria+Hallelujah", "const": "Gloria Hallelujah" }, { "title": "Glory", "markdownDescription": "https://fonts.google.com/specimen/Glory", "const": "Glory" }, { "title": "Gluten", "markdownDescription": "https://fonts.google.com/specimen/Gluten", "const": "Gluten" }, { "title": "Goblin One", "markdownDescription": "https://fonts.google.com/specimen/Goblin+One", "const": "Goblin One" }, { "title": "Gochi Hand", "markdownDescription": "https://fonts.google.com/specimen/Gochi+Hand", "const": "Gochi Hand" }, { "title": "Goldman", "markdownDescription": "https://fonts.google.com/specimen/Goldman", "const": "Goldman" }, { "title": "Golos Text", "markdownDescription": "https://fonts.google.com/specimen/Golos+Text", "const": "Golos Text" }, { "title": "Gorditas", "markdownDescription": "https://fonts.google.com/specimen/Gorditas", "const": "Gorditas" }, { "title": "Gothic A1", "markdownDescription": "https://fonts.google.com/specimen/Gothic+A1", "const": "Gothic A1" }, { "title": "Gotu", "markdownDescription": "https://fonts.google.com/specimen/Gotu", "const": "Gotu" }, { "title": "Goudy Bookletter 1911", "markdownDescription": "https://fonts.google.com/specimen/Goudy+Bookletter+1911", "const": "Goudy Bookletter 1911" }, { "title": "Gowun Batang", "markdownDescription": "https://fonts.google.com/specimen/Gowun+Batang", "const": "Gowun Batang" }, { "title": "Gowun Dodum", "markdownDescription": "https://fonts.google.com/specimen/Gowun+Dodum", "const": "Gowun Dodum" }, { "title": "Graduate", "markdownDescription": "https://fonts.google.com/specimen/Graduate", "const": "Graduate" }, { "title": "Grand Hotel", "markdownDescription": "https://fonts.google.com/specimen/Grand+Hotel", "const": "Grand Hotel" }, { "title": "Grandiflora One", "markdownDescription": "https://fonts.google.com/specimen/Grandiflora+One", "const": "Grandiflora One" }, { "title": "Grandstander", "markdownDescription": "https://fonts.google.com/specimen/Grandstander", "const": "Grandstander" }, { "title": "Grape Nuts", "markdownDescription": "https://fonts.google.com/specimen/Grape+Nuts", "const": "Grape Nuts" }, { "title": "Gravitas One", "markdownDescription": "https://fonts.google.com/specimen/Gravitas+One", "const": "Gravitas One" }, { "title": "Great Vibes", "markdownDescription": "https://fonts.google.com/specimen/Great+Vibes", "const": "Great Vibes" }, { "title": "Grechen Fuemen", "markdownDescription": "https://fonts.google.com/specimen/Grechen+Fuemen", "const": "Grechen Fuemen" }, { "title": "Grenze", "markdownDescription": "https://fonts.google.com/specimen/Grenze", "const": "Grenze" }, { "title": "Grenze Gotisch", "markdownDescription": "https://fonts.google.com/specimen/Grenze+Gotisch", "const": "Grenze Gotisch" }, { "title": "Grey Qo", "markdownDescription": "https://fonts.google.com/specimen/Grey+Qo", "const": "Grey Qo" }, { "title": "Griffy", "markdownDescription": "https://fonts.google.com/specimen/Griffy", "const": "Griffy" }, { "title": "Gruppo", "markdownDescription": "https://fonts.google.com/specimen/Gruppo", "const": "Gruppo" }, { "title": "Gudea", "markdownDescription": "https://fonts.google.com/specimen/Gudea", "const": "Gudea" }, { "title": "Gugi", "markdownDescription": "https://fonts.google.com/specimen/Gugi", "const": "Gugi" }, { "title": "Gulzar", "markdownDescription": "https://fonts.google.com/specimen/Gulzar", "const": "Gulzar" }, { "title": "Gupter", "markdownDescription": "https://fonts.google.com/specimen/Gupter", "const": "Gupter" }, { "title": "Gurajada", "markdownDescription": "https://fonts.google.com/specimen/Gurajada", "const": "Gurajada" }, { "title": "Gwendolyn", "markdownDescription": "https://fonts.google.com/specimen/Gwendolyn", "const": "Gwendolyn" }, { "title": "Habibi", "markdownDescription": "https://fonts.google.com/specimen/Habibi", "const": "Habibi" }, { "title": "Hachi Maru Pop", "markdownDescription": "https://fonts.google.com/specimen/Hachi+Maru+Pop", "const": "Hachi Maru Pop" }, { "title": "Hahmlet", "markdownDescription": "https://fonts.google.com/specimen/Hahmlet", "const": "Hahmlet" }, { "title": "Halant", "markdownDescription": "https://fonts.google.com/specimen/Halant", "const": "Halant" }, { "title": "Hammersmith One", "markdownDescription": "https://fonts.google.com/specimen/Hammersmith+One", "const": "Hammersmith One" }, { "title": "Hanalei", "markdownDescription": "https://fonts.google.com/specimen/Hanalei", "const": "Hanalei" }, { "title": "Hanalei Fill", "markdownDescription": "https://fonts.google.com/specimen/Hanalei+Fill", "const": "Hanalei Fill" }, { "title": "Handjet", "markdownDescription": "https://fonts.google.com/specimen/Handjet", "const": "Handjet" }, { "title": "Handlee", "markdownDescription": "https://fonts.google.com/specimen/Handlee", "const": "Handlee" }, { "title": "Hanken Grotesk", "markdownDescription": "https://fonts.google.com/specimen/Hanken+Grotesk", "const": "Hanken Grotesk" }, { "title": "Hanuman", "markdownDescription": "https://fonts.google.com/specimen/Hanuman", "const": "Hanuman" }, { "title": "Happy Monkey", "markdownDescription": "https://fonts.google.com/specimen/Happy+Monkey", "const": "Happy Monkey" }, { "title": "Harmattan", "markdownDescription": "https://fonts.google.com/specimen/Harmattan", "const": "Harmattan" }, { "title": "Headland One", "markdownDescription": "https://fonts.google.com/specimen/Headland+One", "const": "Headland One" }, { "title": "Heebo", "markdownDescription": "https://fonts.google.com/specimen/Heebo", "const": "Heebo" }, { "title": "Henny Penny", "markdownDescription": "https://fonts.google.com/specimen/Henny+Penny", "const": "Henny Penny" }, { "title": "Hepta Slab", "markdownDescription": "https://fonts.google.com/specimen/Hepta+Slab", "const": "Hepta Slab" }, { "title": "Herr Von Muellerhoff", "markdownDescription": "https://fonts.google.com/specimen/Herr+Von+Muellerhoff", "const": "Herr Von Muellerhoff" }, { "title": "Hi Melody", "markdownDescription": "https://fonts.google.com/specimen/Hi+Melody", "const": "Hi Melody" }, { "title": "Hina Mincho", "markdownDescription": "https://fonts.google.com/specimen/Hina+Mincho", "const": "Hina Mincho" }, { "title": "Hind", "markdownDescription": "https://fonts.google.com/specimen/Hind", "const": "Hind" }, { "title": "Hind Guntur", "markdownDescription": "https://fonts.google.com/specimen/Hind+Guntur", "const": "Hind Guntur" }, { "title": "Hind Madurai", "markdownDescription": "https://fonts.google.com/specimen/Hind+Madurai", "const": "Hind Madurai" }, { "title": "Hind Siliguri", "markdownDescription": "https://fonts.google.com/specimen/Hind+Siliguri", "const": "Hind Siliguri" }, { "title": "Hind Vadodara", "markdownDescription": "https://fonts.google.com/specimen/Hind+Vadodara", "const": "Hind Vadodara" }, { "title": "Holtwood One SC", "markdownDescription": "https://fonts.google.com/specimen/Holtwood+One+SC", "const": "Holtwood One SC" }, { "title": "Homemade Apple", "markdownDescription": "https://fonts.google.com/specimen/Homemade+Apple", "const": "Homemade Apple" }, { "title": "Homenaje", "markdownDescription": "https://fonts.google.com/specimen/Homenaje", "const": "Homenaje" }, { "title": "Hubballi", "markdownDescription": "https://fonts.google.com/specimen/Hubballi", "const": "Hubballi" }, { "title": "Hurricane", "markdownDescription": "https://fonts.google.com/specimen/Hurricane", "const": "Hurricane" }, { "title": "IBM Plex Mono", "markdownDescription": "https://fonts.google.com/specimen/IBM+Plex+Mono", "const": "IBM Plex Mono" }, { "title": "IBM Plex Sans", "markdownDescription": "https://fonts.google.com/specimen/IBM+Plex+Sans", "const": "IBM Plex Sans" }, { "title": "IBM Plex Sans Arabic", "markdownDescription": "https://fonts.google.com/specimen/IBM+Plex+Sans+Arabic", "const": "IBM Plex Sans Arabic" }, { "title": "IBM Plex Sans Condensed", "markdownDescription": "https://fonts.google.com/specimen/IBM+Plex+Sans+Condensed", "const": "IBM Plex Sans Condensed" }, { "title": "IBM Plex Sans Devanagari", "markdownDescription": "https://fonts.google.com/specimen/IBM+Plex+Sans+Devanagari", "const": "IBM Plex Sans Devanagari" }, { "title": "IBM Plex Sans Hebrew", "markdownDescription": "https://fonts.google.com/specimen/IBM+Plex+Sans+Hebrew", "const": "IBM Plex Sans Hebrew" }, { "title": "IBM Plex Sans JP", "markdownDescription": "https://fonts.google.com/specimen/IBM+Plex+Sans+JP", "const": "IBM Plex Sans JP" }, { "title": "IBM Plex Sans KR", "markdownDescription": "https://fonts.google.com/specimen/IBM+Plex+Sans+KR", "const": "IBM Plex Sans KR" }, { "title": "IBM Plex Sans Thai", "markdownDescription": "https://fonts.google.com/specimen/IBM+Plex+Sans+Thai", "const": "IBM Plex Sans Thai" }, { "title": "IBM Plex Sans Thai Looped", "markdownDescription": "https://fonts.google.com/specimen/IBM+Plex+Sans+Thai+Looped", "const": "IBM Plex Sans Thai Looped" }, { "title": "IBM Plex Serif", "markdownDescription": "https://fonts.google.com/specimen/IBM+Plex+Serif", "const": "IBM Plex Serif" }, { "title": "IM Fell DW Pica", "markdownDescription": "https://fonts.google.com/specimen/IM+Fell+DW+Pica", "const": "IM Fell DW Pica" }, { "title": "IM Fell DW Pica SC", "markdownDescription": "https://fonts.google.com/specimen/IM+Fell+DW+Pica+SC", "const": "IM Fell DW Pica SC" }, { "title": "IM Fell Double Pica", "markdownDescription": "https://fonts.google.com/specimen/IM+Fell+Double+Pica", "const": "IM Fell Double Pica" }, { "title": "IM Fell Double Pica SC", "markdownDescription": "https://fonts.google.com/specimen/IM+Fell+Double+Pica+SC", "const": "IM Fell Double Pica SC" }, { "title": "IM Fell English", "markdownDescription": "https://fonts.google.com/specimen/IM+Fell+English", "const": "IM Fell English" }, { "title": "IM Fell English SC", "markdownDescription": "https://fonts.google.com/specimen/IM+Fell+English+SC", "const": "IM Fell English SC" }, { "title": "IM Fell French Canon", "markdownDescription": "https://fonts.google.com/specimen/IM+Fell+French+Canon", "const": "IM Fell French Canon" }, { "title": "IM Fell French Canon SC", "markdownDescription": "https://fonts.google.com/specimen/IM+Fell+French+Canon+SC", "const": "IM Fell French Canon SC" }, { "title": "IM Fell Great Primer", "markdownDescription": "https://fonts.google.com/specimen/IM+Fell+Great+Primer", "const": "IM Fell Great Primer" }, { "title": "IM Fell Great Primer SC", "markdownDescription": "https://fonts.google.com/specimen/IM+Fell+Great+Primer+SC", "const": "IM Fell Great Primer SC" }, { "title": "Ibarra Real Nova", "markdownDescription": "https://fonts.google.com/specimen/Ibarra+Real+Nova", "const": "Ibarra Real Nova" }, { "title": "Iceberg", "markdownDescription": "https://fonts.google.com/specimen/Iceberg", "const": "Iceberg" }, { "title": "Iceland", "markdownDescription": "https://fonts.google.com/specimen/Iceland", "const": "Iceland" }, { "title": "Imbue", "markdownDescription": "https://fonts.google.com/specimen/Imbue", "const": "Imbue" }, { "title": "Imperial Script", "markdownDescription": "https://fonts.google.com/specimen/Imperial+Script", "const": "Imperial Script" }, { "title": "Imprima", "markdownDescription": "https://fonts.google.com/specimen/Imprima", "const": "Imprima" }, { "title": "Inclusive Sans", "markdownDescription": "https://fonts.google.com/specimen/Inclusive+Sans", "const": "Inclusive Sans" }, { "title": "Inconsolata", "markdownDescription": "https://fonts.google.com/specimen/Inconsolata", "const": "Inconsolata" }, { "title": "Inder", "markdownDescription": "https://fonts.google.com/specimen/Inder", "const": "Inder" }, { "title": "Indie Flower", "markdownDescription": "https://fonts.google.com/specimen/Indie+Flower", "const": "Indie Flower" }, { "title": "Ingrid Darling", "markdownDescription": "https://fonts.google.com/specimen/Ingrid+Darling", "const": "Ingrid Darling" }, { "title": "Inika", "markdownDescription": "https://fonts.google.com/specimen/Inika", "const": "Inika" }, { "title": "Inknut Antiqua", "markdownDescription": "https://fonts.google.com/specimen/Inknut+Antiqua", "const": "Inknut Antiqua" }, { "title": "Inria Sans", "markdownDescription": "https://fonts.google.com/specimen/Inria+Sans", "const": "Inria Sans" }, { "title": "Inria Serif", "markdownDescription": "https://fonts.google.com/specimen/Inria+Serif", "const": "Inria Serif" }, { "title": "Inspiration", "markdownDescription": "https://fonts.google.com/specimen/Inspiration", "const": "Inspiration" }, { "title": "Instrument Sans", "markdownDescription": "https://fonts.google.com/specimen/Instrument+Sans", "const": "Instrument Sans" }, { "title": "Instrument Serif", "markdownDescription": "https://fonts.google.com/specimen/Instrument+Serif", "const": "Instrument Serif" }, { "title": "Inter", "markdownDescription": "https://fonts.google.com/specimen/Inter", "const": "Inter" }, { "title": "Inter Tight", "markdownDescription": "https://fonts.google.com/specimen/Inter+Tight", "const": "Inter Tight" }, { "title": "Irish Grover", "markdownDescription": "https://fonts.google.com/specimen/Irish+Grover", "const": "Irish Grover" }, { "title": "Island Moments", "markdownDescription": "https://fonts.google.com/specimen/Island+Moments", "const": "Island Moments" }, { "title": "Istok Web", "markdownDescription": "https://fonts.google.com/specimen/Istok+Web", "const": "Istok Web" }, { "title": "Italiana", "markdownDescription": "https://fonts.google.com/specimen/Italiana", "const": "Italiana" }, { "title": "Italianno", "markdownDescription": "https://fonts.google.com/specimen/Italianno", "const": "Italianno" }, { "title": "Itim", "markdownDescription": "https://fonts.google.com/specimen/Itim", "const": "Itim" }, { "title": "Jacques Francois", "markdownDescription": "https://fonts.google.com/specimen/Jacques+Francois", "const": "Jacques Francois" }, { "title": "Jacques Francois Shadow", "markdownDescription": "https://fonts.google.com/specimen/Jacques+Francois+Shadow", "const": "Jacques Francois Shadow" }, { "title": "Jaldi", "markdownDescription": "https://fonts.google.com/specimen/Jaldi", "const": "Jaldi" }, { "title": "JetBrains Mono", "markdownDescription": "https://fonts.google.com/specimen/JetBrains+Mono", "const": "JetBrains Mono" }, { "title": "Jim Nightshade", "markdownDescription": "https://fonts.google.com/specimen/Jim+Nightshade", "const": "Jim Nightshade" }, { "title": "Joan", "markdownDescription": "https://fonts.google.com/specimen/Joan", "const": "Joan" }, { "title": "Jockey One", "markdownDescription": "https://fonts.google.com/specimen/Jockey+One", "const": "Jockey One" }, { "title": "Jolly Lodger", "markdownDescription": "https://fonts.google.com/specimen/Jolly+Lodger", "const": "Jolly Lodger" }, { "title": "Jomhuria", "markdownDescription": "https://fonts.google.com/specimen/Jomhuria", "const": "Jomhuria" }, { "title": "Jomolhari", "markdownDescription": "https://fonts.google.com/specimen/Jomolhari", "const": "Jomolhari" }, { "title": "Josefin Sans", "markdownDescription": "https://fonts.google.com/specimen/Josefin+Sans", "const": "Josefin Sans" }, { "title": "Josefin Slab", "markdownDescription": "https://fonts.google.com/specimen/Josefin+Slab", "const": "Josefin Slab" }, { "title": "Jost", "markdownDescription": "https://fonts.google.com/specimen/Jost", "const": "Jost" }, { "title": "Joti One", "markdownDescription": "https://fonts.google.com/specimen/Joti+One", "const": "Joti One" }, { "title": "Jua", "markdownDescription": "https://fonts.google.com/specimen/Jua", "const": "Jua" }, { "title": "Judson", "markdownDescription": "https://fonts.google.com/specimen/Judson", "const": "Judson" }, { "title": "Julee", "markdownDescription": "https://fonts.google.com/specimen/Julee", "const": "Julee" }, { "title": "Julius Sans One", "markdownDescription": "https://fonts.google.com/specimen/Julius+Sans+One", "const": "Julius Sans One" }, { "title": "Junge", "markdownDescription": "https://fonts.google.com/specimen/Junge", "const": "Junge" }, { "title": "Jura", "markdownDescription": "https://fonts.google.com/specimen/Jura", "const": "Jura" }, { "title": "Just Another Hand", "markdownDescription": "https://fonts.google.com/specimen/Just+Another+Hand", "const": "Just Another Hand" }, { "title": "Just Me Again Down Here", "markdownDescription": "https://fonts.google.com/specimen/Just+Me+Again+Down+Here", "const": "Just Me Again Down Here" }, { "title": "K2D", "markdownDescription": "https://fonts.google.com/specimen/K2D", "const": "K2D" }, { "title": "Kablammo", "markdownDescription": "https://fonts.google.com/specimen/Kablammo", "const": "Kablammo" }, { "title": "Kadwa", "markdownDescription": "https://fonts.google.com/specimen/Kadwa", "const": "Kadwa" }, { "title": "Kaisei Decol", "markdownDescription": "https://fonts.google.com/specimen/Kaisei+Decol", "const": "Kaisei Decol" }, { "title": "Kaisei HarunoUmi", "markdownDescription": "https://fonts.google.com/specimen/Kaisei+HarunoUmi", "const": "Kaisei HarunoUmi" }, { "title": "Kaisei Opti", "markdownDescription": "https://fonts.google.com/specimen/Kaisei+Opti", "const": "Kaisei Opti" }, { "title": "Kaisei Tokumin", "markdownDescription": "https://fonts.google.com/specimen/Kaisei+Tokumin", "const": "Kaisei Tokumin" }, { "title": "Kalam", "markdownDescription": "https://fonts.google.com/specimen/Kalam", "const": "Kalam" }, { "title": "Kameron", "markdownDescription": "https://fonts.google.com/specimen/Kameron", "const": "Kameron" }, { "title": "Kanit", "markdownDescription": "https://fonts.google.com/specimen/Kanit", "const": "Kanit" }, { "title": "Kantumruy Pro", "markdownDescription": "https://fonts.google.com/specimen/Kantumruy+Pro", "const": "Kantumruy Pro" }, { "title": "Karantina", "markdownDescription": "https://fonts.google.com/specimen/Karantina", "const": "Karantina" }, { "title": "Karla", "markdownDescription": "https://fonts.google.com/specimen/Karla", "const": "Karla" }, { "title": "Karma", "markdownDescription": "https://fonts.google.com/specimen/Karma", "const": "Karma" }, { "title": "Katibeh", "markdownDescription": "https://fonts.google.com/specimen/Katibeh", "const": "Katibeh" }, { "title": "Kaushan Script", "markdownDescription": "https://fonts.google.com/specimen/Kaushan+Script", "const": "Kaushan Script" }, { "title": "Kavivanar", "markdownDescription": "https://fonts.google.com/specimen/Kavivanar", "const": "Kavivanar" }, { "title": "Kavoon", "markdownDescription": "https://fonts.google.com/specimen/Kavoon", "const": "Kavoon" }, { "title": "Kdam Thmor Pro", "markdownDescription": "https://fonts.google.com/specimen/Kdam+Thmor+Pro", "const": "Kdam Thmor Pro" }, { "title": "Keania One", "markdownDescription": "https://fonts.google.com/specimen/Keania+One", "const": "Keania One" }, { "title": "Kelly Slab", "markdownDescription": "https://fonts.google.com/specimen/Kelly+Slab", "const": "Kelly Slab" }, { "title": "Kenia", "markdownDescription": "https://fonts.google.com/specimen/Kenia", "const": "Kenia" }, { "title": "Khand", "markdownDescription": "https://fonts.google.com/specimen/Khand", "const": "Khand" }, { "title": "Khmer", "markdownDescription": "https://fonts.google.com/specimen/Khmer", "const": "Khmer" }, { "title": "Khula", "markdownDescription": "https://fonts.google.com/specimen/Khula", "const": "Khula" }, { "title": "Kings", "markdownDescription": "https://fonts.google.com/specimen/Kings", "const": "Kings" }, { "title": "Kirang Haerang", "markdownDescription": "https://fonts.google.com/specimen/Kirang+Haerang", "const": "Kirang Haerang" }, { "title": "Kite One", "markdownDescription": "https://fonts.google.com/specimen/Kite+One", "const": "Kite One" }, { "title": "Kiwi Maru", "markdownDescription": "https://fonts.google.com/specimen/Kiwi+Maru", "const": "Kiwi Maru" }, { "title": "Klee One", "markdownDescription": "https://fonts.google.com/specimen/Klee+One", "const": "Klee One" }, { "title": "Knewave", "markdownDescription": "https://fonts.google.com/specimen/Knewave", "const": "Knewave" }, { "title": "KoHo", "markdownDescription": "https://fonts.google.com/specimen/KoHo", "const": "KoHo" }, { "title": "Kodchasan", "markdownDescription": "https://fonts.google.com/specimen/Kodchasan", "const": "Kodchasan" }, { "title": "Koh Santepheap", "markdownDescription": "https://fonts.google.com/specimen/Koh+Santepheap", "const": "Koh Santepheap" }, { "title": "Kolker Brush", "markdownDescription": "https://fonts.google.com/specimen/Kolker+Brush", "const": "Kolker Brush" }, { "title": "Konkhmer Sleokchher", "markdownDescription": "https://fonts.google.com/specimen/Konkhmer+Sleokchher", "const": "Konkhmer Sleokchher" }, { "title": "Kosugi", "markdownDescription": "https://fonts.google.com/specimen/Kosugi", "const": "Kosugi" }, { "title": "Kosugi Maru", "markdownDescription": "https://fonts.google.com/specimen/Kosugi+Maru", "const": "Kosugi Maru" }, { "title": "Kotta One", "markdownDescription": "https://fonts.google.com/specimen/Kotta+One", "const": "Kotta One" }, { "title": "Koulen", "markdownDescription": "https://fonts.google.com/specimen/Koulen", "const": "Koulen" }, { "title": "Kranky", "markdownDescription": "https://fonts.google.com/specimen/Kranky", "const": "Kranky" }, { "title": "Kreon", "markdownDescription": "https://fonts.google.com/specimen/Kreon", "const": "Kreon" }, { "title": "Kristi", "markdownDescription": "https://fonts.google.com/specimen/Kristi", "const": "Kristi" }, { "title": "Krona One", "markdownDescription": "https://fonts.google.com/specimen/Krona+One", "const": "Krona One" }, { "title": "Krub", "markdownDescription": "https://fonts.google.com/specimen/Krub", "const": "Krub" }, { "title": "Kufam", "markdownDescription": "https://fonts.google.com/specimen/Kufam", "const": "Kufam" }, { "title": "Kulim Park", "markdownDescription": "https://fonts.google.com/specimen/Kulim+Park", "const": "Kulim Park" }, { "title": "Kumar One", "markdownDescription": "https://fonts.google.com/specimen/Kumar+One", "const": "Kumar One" }, { "title": "Kumar One Outline", "markdownDescription": "https://fonts.google.com/specimen/Kumar+One+Outline", "const": "Kumar One Outline" }, { "title": "Kumbh Sans", "markdownDescription": "https://fonts.google.com/specimen/Kumbh+Sans", "const": "Kumbh Sans" }, { "title": "Kurale", "markdownDescription": "https://fonts.google.com/specimen/Kurale", "const": "Kurale" }, { "title": "La Belle Aurore", "markdownDescription": "https://fonts.google.com/specimen/La+Belle+Aurore", "const": "La Belle Aurore" }, { "title": "Labrada", "markdownDescription": "https://fonts.google.com/specimen/Labrada", "const": "Labrada" }, { "title": "Lacquer", "markdownDescription": "https://fonts.google.com/specimen/Lacquer", "const": "Lacquer" }, { "title": "Laila", "markdownDescription": "https://fonts.google.com/specimen/Laila", "const": "Laila" }, { "title": "Lakki Reddy", "markdownDescription": "https://fonts.google.com/specimen/Lakki+Reddy", "const": "Lakki Reddy" }, { "title": "Lalezar", "markdownDescription": "https://fonts.google.com/specimen/Lalezar", "const": "Lalezar" }, { "title": "Lancelot", "markdownDescription": "https://fonts.google.com/specimen/Lancelot", "const": "Lancelot" }, { "title": "Langar", "markdownDescription": "https://fonts.google.com/specimen/Langar", "const": "Langar" }, { "title": "Lateef", "markdownDescription": "https://fonts.google.com/specimen/Lateef", "const": "Lateef" }, { "title": "Lato", "markdownDescription": "https://fonts.google.com/specimen/Lato", "const": "Lato" }, { "title": "Lavishly Yours", "markdownDescription": "https://fonts.google.com/specimen/Lavishly+Yours", "const": "Lavishly Yours" }, { "title": "League Gothic", "markdownDescription": "https://fonts.google.com/specimen/League+Gothic", "const": "League Gothic" }, { "title": "League Script", "markdownDescription": "https://fonts.google.com/specimen/League+Script", "const": "League Script" }, { "title": "League Spartan", "markdownDescription": "https://fonts.google.com/specimen/League+Spartan", "const": "League Spartan" }, { "title": "Leckerli One", "markdownDescription": "https://fonts.google.com/specimen/Leckerli+One", "const": "Leckerli One" }, { "title": "Ledger", "markdownDescription": "https://fonts.google.com/specimen/Ledger", "const": "Ledger" }, { "title": "Lekton", "markdownDescription": "https://fonts.google.com/specimen/Lekton", "const": "Lekton" }, { "title": "Lemon", "markdownDescription": "https://fonts.google.com/specimen/Lemon", "const": "Lemon" }, { "title": "Lemonada", "markdownDescription": "https://fonts.google.com/specimen/Lemonada", "const": "Lemonada" }, { "title": "Lexend", "markdownDescription": "https://fonts.google.com/specimen/Lexend", "const": "Lexend" }, { "title": "Lexend Deca", "markdownDescription": "https://fonts.google.com/specimen/Lexend+Deca", "const": "Lexend Deca" }, { "title": "Lexend Exa", "markdownDescription": "https://fonts.google.com/specimen/Lexend+Exa", "const": "Lexend Exa" }, { "title": "Lexend Giga", "markdownDescription": "https://fonts.google.com/specimen/Lexend+Giga", "const": "Lexend Giga" }, { "title": "Lexend Mega", "markdownDescription": "https://fonts.google.com/specimen/Lexend+Mega", "const": "Lexend Mega" }, { "title": "Lexend Peta", "markdownDescription": "https://fonts.google.com/specimen/Lexend+Peta", "const": "Lexend Peta" }, { "title": "Lexend Tera", "markdownDescription": "https://fonts.google.com/specimen/Lexend+Tera", "const": "Lexend Tera" }, { "title": "Lexend Zetta", "markdownDescription": "https://fonts.google.com/specimen/Lexend+Zetta", "const": "Lexend Zetta" }, { "title": "Libre Barcode 128", "markdownDescription": "https://fonts.google.com/specimen/Libre+Barcode+128", "const": "Libre Barcode 128" }, { "title": "Libre Barcode 128 Text", "markdownDescription": "https://fonts.google.com/specimen/Libre+Barcode+128+Text", "const": "Libre Barcode 128 Text" }, { "title": "Libre Barcode 39", "markdownDescription": "https://fonts.google.com/specimen/Libre+Barcode+39", "const": "Libre Barcode 39" }, { "title": "Libre Barcode 39 Extended", "markdownDescription": "https://fonts.google.com/specimen/Libre+Barcode+39+Extended", "const": "Libre Barcode 39 Extended" }, { "title": "Libre Barcode 39 Extended Text", "markdownDescription": "https://fonts.google.com/specimen/Libre+Barcode+39+Extended+Text", "const": "Libre Barcode 39 Extended Text" }, { "title": "Libre Barcode 39 Text", "markdownDescription": "https://fonts.google.com/specimen/Libre+Barcode+39+Text", "const": "Libre Barcode 39 Text" }, { "title": "Libre Barcode EAN13 Text", "markdownDescription": "https://fonts.google.com/specimen/Libre+Barcode+EAN13+Text", "const": "Libre Barcode EAN13 Text" }, { "title": "Libre Baskerville", "markdownDescription": "https://fonts.google.com/specimen/Libre+Baskerville", "const": "Libre Baskerville" }, { "title": "Libre Bodoni", "markdownDescription": "https://fonts.google.com/specimen/Libre+Bodoni", "const": "Libre Bodoni" }, { "title": "Libre Caslon Display", "markdownDescription": "https://fonts.google.com/specimen/Libre+Caslon+Display", "const": "Libre Caslon Display" }, { "title": "Libre Caslon Text", "markdownDescription": "https://fonts.google.com/specimen/Libre+Caslon+Text", "const": "Libre Caslon Text" }, { "title": "Libre Franklin", "markdownDescription": "https://fonts.google.com/specimen/Libre+Franklin", "const": "Libre Franklin" }, { "title": "Licorice", "markdownDescription": "https://fonts.google.com/specimen/Licorice", "const": "Licorice" }, { "title": "Life Savers", "markdownDescription": "https://fonts.google.com/specimen/Life+Savers", "const": "Life Savers" }, { "title": "Lilita One", "markdownDescription": "https://fonts.google.com/specimen/Lilita+One", "const": "Lilita One" }, { "title": "Lily Script One", "markdownDescription": "https://fonts.google.com/specimen/Lily+Script+One", "const": "Lily Script One" }, { "title": "Limelight", "markdownDescription": "https://fonts.google.com/specimen/Limelight", "const": "Limelight" }, { "title": "Linden Hill", "markdownDescription": "https://fonts.google.com/specimen/Linden+Hill", "const": "Linden Hill" }, { "title": "Lisu Bosa", "markdownDescription": "https://fonts.google.com/specimen/Lisu+Bosa", "const": "Lisu Bosa" }, { "title": "Literata", "markdownDescription": "https://fonts.google.com/specimen/Literata", "const": "Literata" }, { "title": "Liu Jian Mao Cao", "markdownDescription": "https://fonts.google.com/specimen/Liu+Jian+Mao+Cao", "const": "Liu Jian Mao Cao" }, { "title": "Livvic", "markdownDescription": "https://fonts.google.com/specimen/Livvic", "const": "Livvic" }, { "title": "Lobster", "markdownDescription": "https://fonts.google.com/specimen/Lobster", "const": "Lobster" }, { "title": "Lobster Two", "markdownDescription": "https://fonts.google.com/specimen/Lobster+Two", "const": "Lobster Two" }, { "title": "Londrina Outline", "markdownDescription": "https://fonts.google.com/specimen/Londrina+Outline", "const": "Londrina Outline" }, { "title": "Londrina Shadow", "markdownDescription": "https://fonts.google.com/specimen/Londrina+Shadow", "const": "Londrina Shadow" }, { "title": "Londrina Sketch", "markdownDescription": "https://fonts.google.com/specimen/Londrina+Sketch", "const": "Londrina Sketch" }, { "title": "Londrina Solid", "markdownDescription": "https://fonts.google.com/specimen/Londrina+Solid", "const": "Londrina Solid" }, { "title": "Long Cang", "markdownDescription": "https://fonts.google.com/specimen/Long+Cang", "const": "Long Cang" }, { "title": "Lora", "markdownDescription": "https://fonts.google.com/specimen/Lora", "const": "Lora" }, { "title": "Love Light", "markdownDescription": "https://fonts.google.com/specimen/Love+Light", "const": "Love Light" }, { "title": "Love Ya Like A Sister", "markdownDescription": "https://fonts.google.com/specimen/Love+Ya+Like+A+Sister", "const": "Love Ya Like A Sister" }, { "title": "Loved by the King", "markdownDescription": "https://fonts.google.com/specimen/Loved+by+the+King", "const": "Loved by the King" }, { "title": "Lovers Quarrel", "markdownDescription": "https://fonts.google.com/specimen/Lovers+Quarrel", "const": "Lovers Quarrel" }, { "title": "Luckiest Guy", "markdownDescription": "https://fonts.google.com/specimen/Luckiest+Guy", "const": "Luckiest Guy" }, { "title": "Lugrasimo", "markdownDescription": "https://fonts.google.com/specimen/Lugrasimo", "const": "Lugrasimo" }, { "title": "Lumanosimo", "markdownDescription": "https://fonts.google.com/specimen/Lumanosimo", "const": "Lumanosimo" }, { "title": "Lunasima", "markdownDescription": "https://fonts.google.com/specimen/Lunasima", "const": "Lunasima" }, { "title": "Lusitana", "markdownDescription": "https://fonts.google.com/specimen/Lusitana", "const": "Lusitana" }, { "title": "Lustria", "markdownDescription": "https://fonts.google.com/specimen/Lustria", "const": "Lustria" }, { "title": "Luxurious Roman", "markdownDescription": "https://fonts.google.com/specimen/Luxurious+Roman", "const": "Luxurious Roman" }, { "title": "Luxurious Script", "markdownDescription": "https://fonts.google.com/specimen/Luxurious+Script", "const": "Luxurious Script" }, { "title": "M PLUS 1", "markdownDescription": "https://fonts.google.com/specimen/M+PLUS+1", "const": "M PLUS 1" }, { "title": "M PLUS 1 Code", "markdownDescription": "https://fonts.google.com/specimen/M+PLUS+1+Code", "const": "M PLUS 1 Code" }, { "title": "M PLUS 1p", "markdownDescription": "https://fonts.google.com/specimen/M+PLUS+1p", "const": "M PLUS 1p" }, { "title": "M PLUS 2", "markdownDescription": "https://fonts.google.com/specimen/M+PLUS+2", "const": "M PLUS 2" }, { "title": "M PLUS Code Latin", "markdownDescription": "https://fonts.google.com/specimen/M+PLUS+Code+Latin", "const": "M PLUS Code Latin" }, { "title": "M PLUS Rounded 1c", "markdownDescription": "https://fonts.google.com/specimen/M+PLUS+Rounded+1c", "const": "M PLUS Rounded 1c" }, { "title": "Ma Shan Zheng", "markdownDescription": "https://fonts.google.com/specimen/Ma+Shan+Zheng", "const": "Ma Shan Zheng" }, { "title": "Macondo", "markdownDescription": "https://fonts.google.com/specimen/Macondo", "const": "Macondo" }, { "title": "Macondo Swash Caps", "markdownDescription": "https://fonts.google.com/specimen/Macondo+Swash+Caps", "const": "Macondo Swash Caps" }, { "title": "Mada", "markdownDescription": "https://fonts.google.com/specimen/Mada", "const": "Mada" }, { "title": "Magra", "markdownDescription": "https://fonts.google.com/specimen/Magra", "const": "Magra" }, { "title": "Maiden Orange", "markdownDescription": "https://fonts.google.com/specimen/Maiden+Orange", "const": "Maiden Orange" }, { "title": "Maitree", "markdownDescription": "https://fonts.google.com/specimen/Maitree", "const": "Maitree" }, { "title": "Major Mono Display", "markdownDescription": "https://fonts.google.com/specimen/Major+Mono+Display", "const": "Major Mono Display" }, { "title": "Mako", "markdownDescription": "https://fonts.google.com/specimen/Mako", "const": "Mako" }, { "title": "Mali", "markdownDescription": "https://fonts.google.com/specimen/Mali", "const": "Mali" }, { "title": "Mallanna", "markdownDescription": "https://fonts.google.com/specimen/Mallanna", "const": "Mallanna" }, { "title": "Mandali", "markdownDescription": "https://fonts.google.com/specimen/Mandali", "const": "Mandali" }, { "title": "Manjari", "markdownDescription": "https://fonts.google.com/specimen/Manjari", "const": "Manjari" }, { "title": "Manrope", "markdownDescription": "https://fonts.google.com/specimen/Manrope", "const": "Manrope" }, { "title": "Mansalva", "markdownDescription": "https://fonts.google.com/specimen/Mansalva", "const": "Mansalva" }, { "title": "Manuale", "markdownDescription": "https://fonts.google.com/specimen/Manuale", "const": "Manuale" }, { "title": "Marcellus", "markdownDescription": "https://fonts.google.com/specimen/Marcellus", "const": "Marcellus" }, { "title": "Marcellus SC", "markdownDescription": "https://fonts.google.com/specimen/Marcellus+SC", "const": "Marcellus SC" }, { "title": "Marck Script", "markdownDescription": "https://fonts.google.com/specimen/Marck+Script", "const": "Marck Script" }, { "title": "Margarine", "markdownDescription": "https://fonts.google.com/specimen/Margarine", "const": "Margarine" }, { "title": "Marhey", "markdownDescription": "https://fonts.google.com/specimen/Marhey", "const": "Marhey" }, { "title": "Markazi Text", "markdownDescription": "https://fonts.google.com/specimen/Markazi+Text", "const": "Markazi Text" }, { "title": "Marko One", "markdownDescription": "https://fonts.google.com/specimen/Marko+One", "const": "Marko One" }, { "title": "Marmelad", "markdownDescription": "https://fonts.google.com/specimen/Marmelad", "const": "Marmelad" }, { "title": "Martel", "markdownDescription": "https://fonts.google.com/specimen/Martel", "const": "Martel" }, { "title": "Martel Sans", "markdownDescription": "https://fonts.google.com/specimen/Martel+Sans", "const": "Martel Sans" }, { "title": "Martian Mono", "markdownDescription": "https://fonts.google.com/specimen/Martian+Mono", "const": "Martian Mono" }, { "title": "Marvel", "markdownDescription": "https://fonts.google.com/specimen/Marvel", "const": "Marvel" }, { "title": "Mate", "markdownDescription": "https://fonts.google.com/specimen/Mate", "const": "Mate" }, { "title": "Mate SC", "markdownDescription": "https://fonts.google.com/specimen/Mate+SC", "const": "Mate SC" }, { "title": "Material Icons", "markdownDescription": "https://fonts.google.com/specimen/Material+Icons", "const": "Material Icons" }, { "title": "Material Icons Outlined", "markdownDescription": "https://fonts.google.com/specimen/Material+Icons+Outlined", "const": "Material Icons Outlined" }, { "title": "Material Icons Round", "markdownDescription": "https://fonts.google.com/specimen/Material+Icons+Round", "const": "Material Icons Round" }, { "title": "Material Icons Sharp", "markdownDescription": "https://fonts.google.com/specimen/Material+Icons+Sharp", "const": "Material Icons Sharp" }, { "title": "Material Icons Two Tone", "markdownDescription": "https://fonts.google.com/specimen/Material+Icons+Two+Tone", "const": "Material Icons Two Tone" }, { "title": "Material Symbols Outlined", "markdownDescription": "https://fonts.google.com/specimen/Material+Symbols+Outlined", "const": "Material Symbols Outlined" }, { "title": "Material Symbols Rounded", "markdownDescription": "https://fonts.google.com/specimen/Material+Symbols+Rounded", "const": "Material Symbols Rounded" }, { "title": "Material Symbols Sharp", "markdownDescription": "https://fonts.google.com/specimen/Material+Symbols+Sharp", "const": "Material Symbols Sharp" }, { "title": "Maven Pro", "markdownDescription": "https://fonts.google.com/specimen/Maven+Pro", "const": "Maven Pro" }, { "title": "McLaren", "markdownDescription": "https://fonts.google.com/specimen/McLaren", "const": "McLaren" }, { "title": "Mea Culpa", "markdownDescription": "https://fonts.google.com/specimen/Mea+Culpa", "const": "Mea Culpa" }, { "title": "Meddon", "markdownDescription": "https://fonts.google.com/specimen/Meddon", "const": "Meddon" }, { "title": "MedievalSharp", "markdownDescription": "https://fonts.google.com/specimen/MedievalSharp", "const": "MedievalSharp" }, { "title": "Medula One", "markdownDescription": "https://fonts.google.com/specimen/Medula+One", "const": "Medula One" }, { "title": "Meera Inimai", "markdownDescription": "https://fonts.google.com/specimen/Meera+Inimai", "const": "Meera Inimai" }, { "title": "Megrim", "markdownDescription": "https://fonts.google.com/specimen/Megrim", "const": "Megrim" }, { "title": "Meie Script", "markdownDescription": "https://fonts.google.com/specimen/Meie+Script", "const": "Meie Script" }, { "title": "Meow Script", "markdownDescription": "https://fonts.google.com/specimen/Meow+Script", "const": "Meow Script" }, { "title": "Merienda", "markdownDescription": "https://fonts.google.com/specimen/Merienda", "const": "Merienda" }, { "title": "Merriweather", "markdownDescription": "https://fonts.google.com/specimen/Merriweather", "const": "Merriweather" }, { "title": "Merriweather Sans", "markdownDescription": "https://fonts.google.com/specimen/Merriweather+Sans", "const": "Merriweather Sans" }, { "title": "Metal", "markdownDescription": "https://fonts.google.com/specimen/Metal", "const": "Metal" }, { "title": "Metal Mania", "markdownDescription": "https://fonts.google.com/specimen/Metal+Mania", "const": "Metal Mania" }, { "title": "Metamorphous", "markdownDescription": "https://fonts.google.com/specimen/Metamorphous", "const": "Metamorphous" }, { "title": "Metrophobic", "markdownDescription": "https://fonts.google.com/specimen/Metrophobic", "const": "Metrophobic" }, { "title": "Michroma", "markdownDescription": "https://fonts.google.com/specimen/Michroma", "const": "Michroma" }, { "title": "Milonga", "markdownDescription": "https://fonts.google.com/specimen/Milonga", "const": "Milonga" }, { "title": "Miltonian", "markdownDescription": "https://fonts.google.com/specimen/Miltonian", "const": "Miltonian" }, { "title": "Miltonian Tattoo", "markdownDescription": "https://fonts.google.com/specimen/Miltonian+Tattoo", "const": "Miltonian Tattoo" }, { "title": "Mina", "markdownDescription": "https://fonts.google.com/specimen/Mina", "const": "Mina" }, { "title": "Mingzat", "markdownDescription": "https://fonts.google.com/specimen/Mingzat", "const": "Mingzat" }, { "title": "Miniver", "markdownDescription": "https://fonts.google.com/specimen/Miniver", "const": "Miniver" }, { "title": "Miriam Libre", "markdownDescription": "https://fonts.google.com/specimen/Miriam+Libre", "const": "Miriam Libre" }, { "title": "Mirza", "markdownDescription": "https://fonts.google.com/specimen/Mirza", "const": "Mirza" }, { "title": "Miss Fajardose", "markdownDescription": "https://fonts.google.com/specimen/Miss+Fajardose", "const": "Miss Fajardose" }, { "title": "Mitr", "markdownDescription": "https://fonts.google.com/specimen/Mitr", "const": "Mitr" }, { "title": "Mochiy Pop One", "markdownDescription": "https://fonts.google.com/specimen/Mochiy+Pop+One", "const": "Mochiy Pop One" }, { "title": "Mochiy Pop P One", "markdownDescription": "https://fonts.google.com/specimen/Mochiy+Pop+P+One", "const": "Mochiy Pop P One" }, { "title": "Modak", "markdownDescription": "https://fonts.google.com/specimen/Modak", "const": "Modak" }, { "title": "Modern Antiqua", "markdownDescription": "https://fonts.google.com/specimen/Modern+Antiqua", "const": "Modern Antiqua" }, { "title": "Mogra", "markdownDescription": "https://fonts.google.com/specimen/Mogra", "const": "Mogra" }, { "title": "Mohave", "markdownDescription": "https://fonts.google.com/specimen/Mohave", "const": "Mohave" }, { "title": "Moirai One", "markdownDescription": "https://fonts.google.com/specimen/Moirai+One", "const": "Moirai One" }, { "title": "Molengo", "markdownDescription": "https://fonts.google.com/specimen/Molengo", "const": "Molengo" }, { "title": "Molle", "markdownDescription": "https://fonts.google.com/specimen/Molle", "const": "Molle" }, { "title": "Monda", "markdownDescription": "https://fonts.google.com/specimen/Monda", "const": "Monda" }, { "title": "Monofett", "markdownDescription": "https://fonts.google.com/specimen/Monofett", "const": "Monofett" }, { "title": "Monomaniac One", "markdownDescription": "https://fonts.google.com/specimen/Monomaniac+One", "const": "Monomaniac One" }, { "title": "Monoton", "markdownDescription": "https://fonts.google.com/specimen/Monoton", "const": "Monoton" }, { "title": "Monsieur La Doulaise", "markdownDescription": "https://fonts.google.com/specimen/Monsieur+La+Doulaise", "const": "Monsieur La Doulaise" }, { "title": "Montaga", "markdownDescription": "https://fonts.google.com/specimen/Montaga", "const": "Montaga" }, { "title": "Montagu Slab", "markdownDescription": "https://fonts.google.com/specimen/Montagu+Slab", "const": "Montagu Slab" }, { "title": "MonteCarlo", "markdownDescription": "https://fonts.google.com/specimen/MonteCarlo", "const": "MonteCarlo" }, { "title": "Montez", "markdownDescription": "https://fonts.google.com/specimen/Montez", "const": "Montez" }, { "title": "Montserrat", "markdownDescription": "https://fonts.google.com/specimen/Montserrat", "const": "Montserrat" }, { "title": "Montserrat Alternates", "markdownDescription": "https://fonts.google.com/specimen/Montserrat+Alternates", "const": "Montserrat Alternates" }, { "title": "Montserrat Subrayada", "markdownDescription": "https://fonts.google.com/specimen/Montserrat+Subrayada", "const": "Montserrat Subrayada" }, { "title": "Moo Lah Lah", "markdownDescription": "https://fonts.google.com/specimen/Moo+Lah+Lah", "const": "Moo Lah Lah" }, { "title": "Mooli", "markdownDescription": "https://fonts.google.com/specimen/Mooli", "const": "Mooli" }, { "title": "Moon Dance", "markdownDescription": "https://fonts.google.com/specimen/Moon+Dance", "const": "Moon Dance" }, { "title": "Moul", "markdownDescription": "https://fonts.google.com/specimen/Moul", "const": "Moul" }, { "title": "Moulpali", "markdownDescription": "https://fonts.google.com/specimen/Moulpali", "const": "Moulpali" }, { "title": "Mountains of Christmas", "markdownDescription": "https://fonts.google.com/specimen/Mountains+of+Christmas", "const": "Mountains of Christmas" }, { "title": "Mouse Memoirs", "markdownDescription": "https://fonts.google.com/specimen/Mouse+Memoirs", "const": "Mouse Memoirs" }, { "title": "Mr Bedfort", "markdownDescription": "https://fonts.google.com/specimen/Mr+Bedfort", "const": "Mr Bedfort" }, { "title": "Mr Dafoe", "markdownDescription": "https://fonts.google.com/specimen/Mr+Dafoe", "const": "Mr Dafoe" }, { "title": "Mr De Haviland", "markdownDescription": "https://fonts.google.com/specimen/Mr+De+Haviland", "const": "Mr De Haviland" }, { "title": "Mrs Saint Delafield", "markdownDescription": "https://fonts.google.com/specimen/Mrs+Saint+Delafield", "const": "Mrs Saint Delafield" }, { "title": "Mrs Sheppards", "markdownDescription": "https://fonts.google.com/specimen/Mrs+Sheppards", "const": "Mrs Sheppards" }, { "title": "Ms Madi", "markdownDescription": "https://fonts.google.com/specimen/Ms+Madi", "const": "Ms Madi" }, { "title": "Mukta", "markdownDescription": "https://fonts.google.com/specimen/Mukta", "const": "Mukta" }, { "title": "Mukta Mahee", "markdownDescription": "https://fonts.google.com/specimen/Mukta+Mahee", "const": "Mukta Mahee" }, { "title": "Mukta Malar", "markdownDescription": "https://fonts.google.com/specimen/Mukta+Malar", "const": "Mukta Malar" }, { "title": "Mukta Vaani", "markdownDescription": "https://fonts.google.com/specimen/Mukta+Vaani", "const": "Mukta Vaani" }, { "title": "Mulish", "markdownDescription": "https://fonts.google.com/specimen/Mulish", "const": "Mulish" }, { "title": "Murecho", "markdownDescription": "https://fonts.google.com/specimen/Murecho", "const": "Murecho" }, { "title": "MuseoModerno", "markdownDescription": "https://fonts.google.com/specimen/MuseoModerno", "const": "MuseoModerno" }, { "title": "My Soul", "markdownDescription": "https://fonts.google.com/specimen/My+Soul", "const": "My Soul" }, { "title": "Mynerve", "markdownDescription": "https://fonts.google.com/specimen/Mynerve", "const": "Mynerve" }, { "title": "Mystery Quest", "markdownDescription": "https://fonts.google.com/specimen/Mystery+Quest", "const": "Mystery Quest" }, { "title": "NTR", "markdownDescription": "https://fonts.google.com/specimen/NTR", "const": "NTR" }, { "title": "Nabla", "markdownDescription": "https://fonts.google.com/specimen/Nabla", "const": "Nabla" }, { "title": "Nanum Brush Script", "markdownDescription": "https://fonts.google.com/specimen/Nanum+Brush+Script", "const": "Nanum Brush Script" }, { "title": "Nanum Gothic", "markdownDescription": "https://fonts.google.com/specimen/Nanum+Gothic", "const": "Nanum Gothic" }, { "title": "Nanum Gothic Coding", "markdownDescription": "https://fonts.google.com/specimen/Nanum+Gothic+Coding", "const": "Nanum Gothic Coding" }, { "title": "Nanum Myeongjo", "markdownDescription": "https://fonts.google.com/specimen/Nanum+Myeongjo", "const": "Nanum Myeongjo" }, { "title": "Nanum Pen Script", "markdownDescription": "https://fonts.google.com/specimen/Nanum+Pen+Script", "const": "Nanum Pen Script" }, { "title": "Narnoor", "markdownDescription": "https://fonts.google.com/specimen/Narnoor", "const": "Narnoor" }, { "title": "Neonderthaw", "markdownDescription": "https://fonts.google.com/specimen/Neonderthaw", "const": "Neonderthaw" }, { "title": "Nerko One", "markdownDescription": "https://fonts.google.com/specimen/Nerko+One", "const": "Nerko One" }, { "title": "Neucha", "markdownDescription": "https://fonts.google.com/specimen/Neucha", "const": "Neucha" }, { "title": "Neuton", "markdownDescription": "https://fonts.google.com/specimen/Neuton", "const": "Neuton" }, { "title": "New Rocker", "markdownDescription": "https://fonts.google.com/specimen/New+Rocker", "const": "New Rocker" }, { "title": "New Tegomin", "markdownDescription": "https://fonts.google.com/specimen/New+Tegomin", "const": "New Tegomin" }, { "title": "News Cycle", "markdownDescription": "https://fonts.google.com/specimen/News+Cycle", "const": "News Cycle" }, { "title": "Newsreader", "markdownDescription": "https://fonts.google.com/specimen/Newsreader", "const": "Newsreader" }, { "title": "Niconne", "markdownDescription": "https://fonts.google.com/specimen/Niconne", "const": "Niconne" }, { "title": "Niramit", "markdownDescription": "https://fonts.google.com/specimen/Niramit", "const": "Niramit" }, { "title": "Nixie One", "markdownDescription": "https://fonts.google.com/specimen/Nixie+One", "const": "Nixie One" }, { "title": "Nobile", "markdownDescription": "https://fonts.google.com/specimen/Nobile", "const": "Nobile" }, { "title": "Nokora", "markdownDescription": "https://fonts.google.com/specimen/Nokora", "const": "Nokora" }, { "title": "Norican", "markdownDescription": "https://fonts.google.com/specimen/Norican", "const": "Norican" }, { "title": "Nosifer", "markdownDescription": "https://fonts.google.com/specimen/Nosifer", "const": "Nosifer" }, { "title": "Notable", "markdownDescription": "https://fonts.google.com/specimen/Notable", "const": "Notable" }, { "title": "Nothing You Could Do", "markdownDescription": "https://fonts.google.com/specimen/Nothing+You+Could+Do", "const": "Nothing You Could Do" }, { "title": "Noticia Text", "markdownDescription": "https://fonts.google.com/specimen/Noticia+Text", "const": "Noticia Text" }, { "title": "Noto Color Emoji", "markdownDescription": "https://fonts.google.com/specimen/Noto+Color+Emoji", "const": "Noto Color Emoji" }, { "title": "Noto Emoji", "markdownDescription": "https://fonts.google.com/specimen/Noto+Emoji", "const": "Noto Emoji" }, { "title": "Noto Kufi Arabic", "markdownDescription": "https://fonts.google.com/specimen/Noto+Kufi+Arabic", "const": "Noto Kufi Arabic" }, { "title": "Noto Music", "markdownDescription": "https://fonts.google.com/specimen/Noto+Music", "const": "Noto Music" }, { "title": "Noto Naskh Arabic", "markdownDescription": "https://fonts.google.com/specimen/Noto+Naskh+Arabic", "const": "Noto Naskh Arabic" }, { "title": "Noto Nastaliq Urdu", "markdownDescription": "https://fonts.google.com/specimen/Noto+Nastaliq+Urdu", "const": "Noto Nastaliq Urdu" }, { "title": "Noto Rashi Hebrew", "markdownDescription": "https://fonts.google.com/specimen/Noto+Rashi+Hebrew", "const": "Noto Rashi Hebrew" }, { "title": "Noto Sans", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans", "const": "Noto Sans" }, { "title": "Noto Sans Adlam", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Adlam", "const": "Noto Sans Adlam" }, { "title": "Noto Sans Adlam Unjoined", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Adlam+Unjoined", "const": "Noto Sans Adlam Unjoined" }, { "title": "Noto Sans Anatolian Hieroglyphs", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Anatolian+Hieroglyphs", "const": "Noto Sans Anatolian Hieroglyphs" }, { "title": "Noto Sans Arabic", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Arabic", "const": "Noto Sans Arabic" }, { "title": "Noto Sans Armenian", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Armenian", "const": "Noto Sans Armenian" }, { "title": "Noto Sans Avestan", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Avestan", "const": "Noto Sans Avestan" }, { "title": "Noto Sans Balinese", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Balinese", "const": "Noto Sans Balinese" }, { "title": "Noto Sans Bamum", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Bamum", "const": "Noto Sans Bamum" }, { "title": "Noto Sans Bassa Vah", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Bassa+Vah", "const": "Noto Sans Bassa Vah" }, { "title": "Noto Sans Batak", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Batak", "const": "Noto Sans Batak" }, { "title": "Noto Sans Bengali", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Bengali", "const": "Noto Sans Bengali" }, { "title": "Noto Sans Bhaiksuki", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Bhaiksuki", "const": "Noto Sans Bhaiksuki" }, { "title": "Noto Sans Brahmi", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Brahmi", "const": "Noto Sans Brahmi" }, { "title": "Noto Sans Buginese", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Buginese", "const": "Noto Sans Buginese" }, { "title": "Noto Sans Buhid", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Buhid", "const": "Noto Sans Buhid" }, { "title": "Noto Sans Canadian Aboriginal", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Canadian+Aboriginal", "const": "Noto Sans Canadian Aboriginal" }, { "title": "Noto Sans Carian", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Carian", "const": "Noto Sans Carian" }, { "title": "Noto Sans Caucasian Albanian", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Caucasian+Albanian", "const": "Noto Sans Caucasian Albanian" }, { "title": "Noto Sans Chakma", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Chakma", "const": "Noto Sans Chakma" }, { "title": "Noto Sans Cham", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Cham", "const": "Noto Sans Cham" }, { "title": "Noto Sans Cherokee", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Cherokee", "const": "Noto Sans Cherokee" }, { "title": "Noto Sans Chorasmian", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Chorasmian", "const": "Noto Sans Chorasmian" }, { "title": "Noto Sans Coptic", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Coptic", "const": "Noto Sans Coptic" }, { "title": "Noto Sans Cuneiform", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Cuneiform", "const": "Noto Sans Cuneiform" }, { "title": "Noto Sans Cypriot", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Cypriot", "const": "Noto Sans Cypriot" }, { "title": "Noto Sans Cypro Minoan", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Cypro+Minoan", "const": "Noto Sans Cypro Minoan" }, { "title": "Noto Sans Deseret", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Deseret", "const": "Noto Sans Deseret" }, { "title": "Noto Sans Devanagari", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Devanagari", "const": "Noto Sans Devanagari" }, { "title": "Noto Sans Display", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Display", "const": "Noto Sans Display" }, { "title": "Noto Sans Duployan", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Duployan", "const": "Noto Sans Duployan" }, { "title": "Noto Sans Egyptian Hieroglyphs", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Egyptian+Hieroglyphs", "const": "Noto Sans Egyptian Hieroglyphs" }, { "title": "Noto Sans Elbasan", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Elbasan", "const": "Noto Sans Elbasan" }, { "title": "Noto Sans Elymaic", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Elymaic", "const": "Noto Sans Elymaic" }, { "title": "Noto Sans Ethiopic", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Ethiopic", "const": "Noto Sans Ethiopic" }, { "title": "Noto Sans Georgian", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Georgian", "const": "Noto Sans Georgian" }, { "title": "Noto Sans Glagolitic", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Glagolitic", "const": "Noto Sans Glagolitic" }, { "title": "Noto Sans Gothic", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Gothic", "const": "Noto Sans Gothic" }, { "title": "Noto Sans Grantha", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Grantha", "const": "Noto Sans Grantha" }, { "title": "Noto Sans Gujarati", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Gujarati", "const": "Noto Sans Gujarati" }, { "title": "Noto Sans Gunjala Gondi", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Gunjala+Gondi", "const": "Noto Sans Gunjala Gondi" }, { "title": "Noto Sans Gurmukhi", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Gurmukhi", "const": "Noto Sans Gurmukhi" }, { "title": "Noto Sans HK", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+HK", "const": "Noto Sans HK" }, { "title": "Noto Sans Hanifi Rohingya", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Hanifi+Rohingya", "const": "Noto Sans Hanifi Rohingya" }, { "title": "Noto Sans Hanunoo", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Hanunoo", "const": "Noto Sans Hanunoo" }, { "title": "Noto Sans Hatran", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Hatran", "const": "Noto Sans Hatran" }, { "title": "Noto Sans Hebrew", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Hebrew", "const": "Noto Sans Hebrew" }, { "title": "Noto Sans Imperial Aramaic", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Imperial+Aramaic", "const": "Noto Sans Imperial Aramaic" }, { "title": "Noto Sans Indic Siyaq Numbers", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Indic+Siyaq+Numbers", "const": "Noto Sans Indic Siyaq Numbers" }, { "title": "Noto Sans Inscriptional Pahlavi", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Inscriptional+Pahlavi", "const": "Noto Sans Inscriptional Pahlavi" }, { "title": "Noto Sans Inscriptional Parthian", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Inscriptional+Parthian", "const": "Noto Sans Inscriptional Parthian" }, { "title": "Noto Sans JP", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+JP", "const": "Noto Sans JP" }, { "title": "Noto Sans Javanese", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Javanese", "const": "Noto Sans Javanese" }, { "title": "Noto Sans KR", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+KR", "const": "Noto Sans KR" }, { "title": "Noto Sans Kaithi", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Kaithi", "const": "Noto Sans Kaithi" }, { "title": "Noto Sans Kannada", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Kannada", "const": "Noto Sans Kannada" }, { "title": "Noto Sans Kayah Li", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Kayah+Li", "const": "Noto Sans Kayah Li" }, { "title": "Noto Sans Kharoshthi", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Kharoshthi", "const": "Noto Sans Kharoshthi" }, { "title": "Noto Sans Khmer", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Khmer", "const": "Noto Sans Khmer" }, { "title": "Noto Sans Khojki", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Khojki", "const": "Noto Sans Khojki" }, { "title": "Noto Sans Khudawadi", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Khudawadi", "const": "Noto Sans Khudawadi" }, { "title": "Noto Sans Lao", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Lao", "const": "Noto Sans Lao" }, { "title": "Noto Sans Lao Looped", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Lao+Looped", "const": "Noto Sans Lao Looped" }, { "title": "Noto Sans Lepcha", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Lepcha", "const": "Noto Sans Lepcha" }, { "title": "Noto Sans Limbu", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Limbu", "const": "Noto Sans Limbu" }, { "title": "Noto Sans Linear A", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Linear+A", "const": "Noto Sans Linear A" }, { "title": "Noto Sans Linear B", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Linear+B", "const": "Noto Sans Linear B" }, { "title": "Noto Sans Lisu", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Lisu", "const": "Noto Sans Lisu" }, { "title": "Noto Sans Lycian", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Lycian", "const": "Noto Sans Lycian" }, { "title": "Noto Sans Lydian", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Lydian", "const": "Noto Sans Lydian" }, { "title": "Noto Sans Mahajani", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Mahajani", "const": "Noto Sans Mahajani" }, { "title": "Noto Sans Malayalam", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Malayalam", "const": "Noto Sans Malayalam" }, { "title": "Noto Sans Mandaic", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Mandaic", "const": "Noto Sans Mandaic" }, { "title": "Noto Sans Manichaean", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Manichaean", "const": "Noto Sans Manichaean" }, { "title": "Noto Sans Marchen", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Marchen", "const": "Noto Sans Marchen" }, { "title": "Noto Sans Masaram Gondi", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Masaram+Gondi", "const": "Noto Sans Masaram Gondi" }, { "title": "Noto Sans Math", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Math", "const": "Noto Sans Math" }, { "title": "Noto Sans Mayan Numerals", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Mayan+Numerals", "const": "Noto Sans Mayan Numerals" }, { "title": "Noto Sans Medefaidrin", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Medefaidrin", "const": "Noto Sans Medefaidrin" }, { "title": "Noto Sans Meetei Mayek", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Meetei+Mayek", "const": "Noto Sans Meetei Mayek" }, { "title": "Noto Sans Mende Kikakui", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Mende+Kikakui", "const": "Noto Sans Mende Kikakui" }, { "title": "Noto Sans Meroitic", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Meroitic", "const": "Noto Sans Meroitic" }, { "title": "Noto Sans Miao", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Miao", "const": "Noto Sans Miao" }, { "title": "Noto Sans Modi", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Modi", "const": "Noto Sans Modi" }, { "title": "Noto Sans Mongolian", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Mongolian", "const": "Noto Sans Mongolian" }, { "title": "Noto Sans Mono", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Mono", "const": "Noto Sans Mono" }, { "title": "Noto Sans Mro", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Mro", "const": "Noto Sans Mro" }, { "title": "Noto Sans Multani", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Multani", "const": "Noto Sans Multani" }, { "title": "Noto Sans Myanmar", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Myanmar", "const": "Noto Sans Myanmar" }, { "title": "Noto Sans NKo", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+NKo", "const": "Noto Sans NKo" }, { "title": "Noto Sans NKo Unjoined", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+NKo+Unjoined", "const": "Noto Sans NKo Unjoined" }, { "title": "Noto Sans Nabataean", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Nabataean", "const": "Noto Sans Nabataean" }, { "title": "Noto Sans Nag Mundari", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Nag+Mundari", "const": "Noto Sans Nag Mundari" }, { "title": "Noto Sans Nandinagari", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Nandinagari", "const": "Noto Sans Nandinagari" }, { "title": "Noto Sans New Tai Lue", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+New+Tai+Lue", "const": "Noto Sans New Tai Lue" }, { "title": "Noto Sans Newa", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Newa", "const": "Noto Sans Newa" }, { "title": "Noto Sans Nushu", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Nushu", "const": "Noto Sans Nushu" }, { "title": "Noto Sans Ogham", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Ogham", "const": "Noto Sans Ogham" }, { "title": "Noto Sans Ol Chiki", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Ol+Chiki", "const": "Noto Sans Ol Chiki" }, { "title": "Noto Sans Old Hungarian", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Old+Hungarian", "const": "Noto Sans Old Hungarian" }, { "title": "Noto Sans Old Italic", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Old+Italic", "const": "Noto Sans Old Italic" }, { "title": "Noto Sans Old North Arabian", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Old+North+Arabian", "const": "Noto Sans Old North Arabian" }, { "title": "Noto Sans Old Permic", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Old+Permic", "const": "Noto Sans Old Permic" }, { "title": "Noto Sans Old Persian", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Old+Persian", "const": "Noto Sans Old Persian" }, { "title": "Noto Sans Old Sogdian", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Old+Sogdian", "const": "Noto Sans Old Sogdian" }, { "title": "Noto Sans Old South Arabian", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Old+South+Arabian", "const": "Noto Sans Old South Arabian" }, { "title": "Noto Sans Old Turkic", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Old+Turkic", "const": "Noto Sans Old Turkic" }, { "title": "Noto Sans Oriya", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Oriya", "const": "Noto Sans Oriya" }, { "title": "Noto Sans Osage", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Osage", "const": "Noto Sans Osage" }, { "title": "Noto Sans Osmanya", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Osmanya", "const": "Noto Sans Osmanya" }, { "title": "Noto Sans Pahawh Hmong", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Pahawh+Hmong", "const": "Noto Sans Pahawh Hmong" }, { "title": "Noto Sans Palmyrene", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Palmyrene", "const": "Noto Sans Palmyrene" }, { "title": "Noto Sans Pau Cin Hau", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Pau+Cin+Hau", "const": "Noto Sans Pau Cin Hau" }, { "title": "Noto Sans Phags Pa", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Phags+Pa", "const": "Noto Sans Phags Pa" }, { "title": "Noto Sans Phoenician", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Phoenician", "const": "Noto Sans Phoenician" }, { "title": "Noto Sans Psalter Pahlavi", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Psalter+Pahlavi", "const": "Noto Sans Psalter Pahlavi" }, { "title": "Noto Sans Rejang", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Rejang", "const": "Noto Sans Rejang" }, { "title": "Noto Sans Runic", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Runic", "const": "Noto Sans Runic" }, { "title": "Noto Sans SC", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+SC", "const": "Noto Sans SC" }, { "title": "Noto Sans Samaritan", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Samaritan", "const": "Noto Sans Samaritan" }, { "title": "Noto Sans Saurashtra", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Saurashtra", "const": "Noto Sans Saurashtra" }, { "title": "Noto Sans Sharada", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Sharada", "const": "Noto Sans Sharada" }, { "title": "Noto Sans Shavian", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Shavian", "const": "Noto Sans Shavian" }, { "title": "Noto Sans Siddham", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Siddham", "const": "Noto Sans Siddham" }, { "title": "Noto Sans SignWriting", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+SignWriting", "const": "Noto Sans SignWriting" }, { "title": "Noto Sans Sinhala", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Sinhala", "const": "Noto Sans Sinhala" }, { "title": "Noto Sans Sogdian", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Sogdian", "const": "Noto Sans Sogdian" }, { "title": "Noto Sans Sora Sompeng", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Sora+Sompeng", "const": "Noto Sans Sora Sompeng" }, { "title": "Noto Sans Soyombo", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Soyombo", "const": "Noto Sans Soyombo" }, { "title": "Noto Sans Sundanese", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Sundanese", "const": "Noto Sans Sundanese" }, { "title": "Noto Sans Syloti Nagri", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Syloti+Nagri", "const": "Noto Sans Syloti Nagri" }, { "title": "Noto Sans Symbols", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Symbols", "const": "Noto Sans Symbols" }, { "title": "Noto Sans Symbols 2", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Symbols+2", "const": "Noto Sans Symbols 2" }, { "title": "Noto Sans Syriac", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Syriac", "const": "Noto Sans Syriac" }, { "title": "Noto Sans Syriac Eastern", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Syriac+Eastern", "const": "Noto Sans Syriac Eastern" }, { "title": "Noto Sans TC", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+TC", "const": "Noto Sans TC" }, { "title": "Noto Sans Tagalog", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Tagalog", "const": "Noto Sans Tagalog" }, { "title": "Noto Sans Tagbanwa", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Tagbanwa", "const": "Noto Sans Tagbanwa" }, { "title": "Noto Sans Tai Le", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Tai+Le", "const": "Noto Sans Tai Le" }, { "title": "Noto Sans Tai Tham", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Tai+Tham", "const": "Noto Sans Tai Tham" }, { "title": "Noto Sans Tai Viet", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Tai+Viet", "const": "Noto Sans Tai Viet" }, { "title": "Noto Sans Takri", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Takri", "const": "Noto Sans Takri" }, { "title": "Noto Sans Tamil", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Tamil", "const": "Noto Sans Tamil" }, { "title": "Noto Sans Tamil Supplement", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Tamil+Supplement", "const": "Noto Sans Tamil Supplement" }, { "title": "Noto Sans Tangsa", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Tangsa", "const": "Noto Sans Tangsa" }, { "title": "Noto Sans Telugu", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Telugu", "const": "Noto Sans Telugu" }, { "title": "Noto Sans Thaana", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Thaana", "const": "Noto Sans Thaana" }, { "title": "Noto Sans Thai", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Thai", "const": "Noto Sans Thai" }, { "title": "Noto Sans Thai Looped", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Thai+Looped", "const": "Noto Sans Thai Looped" }, { "title": "Noto Sans Tifinagh", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Tifinagh", "const": "Noto Sans Tifinagh" }, { "title": "Noto Sans Tirhuta", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Tirhuta", "const": "Noto Sans Tirhuta" }, { "title": "Noto Sans Ugaritic", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Ugaritic", "const": "Noto Sans Ugaritic" }, { "title": "Noto Sans Vai", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Vai", "const": "Noto Sans Vai" }, { "title": "Noto Sans Vithkuqi", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Vithkuqi", "const": "Noto Sans Vithkuqi" }, { "title": "Noto Sans Wancho", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Wancho", "const": "Noto Sans Wancho" }, { "title": "Noto Sans Warang Citi", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Warang+Citi", "const": "Noto Sans Warang Citi" }, { "title": "Noto Sans Yi", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Yi", "const": "Noto Sans Yi" }, { "title": "Noto Sans Zanabazar Square", "markdownDescription": "https://fonts.google.com/specimen/Noto+Sans+Zanabazar+Square", "const": "Noto Sans Zanabazar Square" }, { "title": "Noto Serif", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif", "const": "Noto Serif" }, { "title": "Noto Serif Ahom", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Ahom", "const": "Noto Serif Ahom" }, { "title": "Noto Serif Armenian", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Armenian", "const": "Noto Serif Armenian" }, { "title": "Noto Serif Balinese", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Balinese", "const": "Noto Serif Balinese" }, { "title": "Noto Serif Bengali", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Bengali", "const": "Noto Serif Bengali" }, { "title": "Noto Serif Devanagari", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Devanagari", "const": "Noto Serif Devanagari" }, { "title": "Noto Serif Display", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Display", "const": "Noto Serif Display" }, { "title": "Noto Serif Dogra", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Dogra", "const": "Noto Serif Dogra" }, { "title": "Noto Serif Ethiopic", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Ethiopic", "const": "Noto Serif Ethiopic" }, { "title": "Noto Serif Georgian", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Georgian", "const": "Noto Serif Georgian" }, { "title": "Noto Serif Grantha", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Grantha", "const": "Noto Serif Grantha" }, { "title": "Noto Serif Gujarati", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Gujarati", "const": "Noto Serif Gujarati" }, { "title": "Noto Serif Gurmukhi", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Gurmukhi", "const": "Noto Serif Gurmukhi" }, { "title": "Noto Serif HK", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+HK", "const": "Noto Serif HK" }, { "title": "Noto Serif Hebrew", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Hebrew", "const": "Noto Serif Hebrew" }, { "title": "Noto Serif JP", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+JP", "const": "Noto Serif JP" }, { "title": "Noto Serif KR", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+KR", "const": "Noto Serif KR" }, { "title": "Noto Serif Kannada", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Kannada", "const": "Noto Serif Kannada" }, { "title": "Noto Serif Khitan Small Script", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Khitan+Small+Script", "const": "Noto Serif Khitan Small Script" }, { "title": "Noto Serif Khmer", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Khmer", "const": "Noto Serif Khmer" }, { "title": "Noto Serif Khojki", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Khojki", "const": "Noto Serif Khojki" }, { "title": "Noto Serif Lao", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Lao", "const": "Noto Serif Lao" }, { "title": "Noto Serif Makasar", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Makasar", "const": "Noto Serif Makasar" }, { "title": "Noto Serif Malayalam", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Malayalam", "const": "Noto Serif Malayalam" }, { "title": "Noto Serif Myanmar", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Myanmar", "const": "Noto Serif Myanmar" }, { "title": "Noto Serif NP Hmong", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+NP+Hmong", "const": "Noto Serif NP Hmong" }, { "title": "Noto Serif Oriya", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Oriya", "const": "Noto Serif Oriya" }, { "title": "Noto Serif Ottoman Siyaq", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Ottoman+Siyaq", "const": "Noto Serif Ottoman Siyaq" }, { "title": "Noto Serif SC", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+SC", "const": "Noto Serif SC" }, { "title": "Noto Serif Sinhala", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Sinhala", "const": "Noto Serif Sinhala" }, { "title": "Noto Serif TC", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+TC", "const": "Noto Serif TC" }, { "title": "Noto Serif Tamil", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Tamil", "const": "Noto Serif Tamil" }, { "title": "Noto Serif Tangut", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Tangut", "const": "Noto Serif Tangut" }, { "title": "Noto Serif Telugu", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Telugu", "const": "Noto Serif Telugu" }, { "title": "Noto Serif Thai", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Thai", "const": "Noto Serif Thai" }, { "title": "Noto Serif Tibetan", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Tibetan", "const": "Noto Serif Tibetan" }, { "title": "Noto Serif Toto", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Toto", "const": "Noto Serif Toto" }, { "title": "Noto Serif Vithkuqi", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Vithkuqi", "const": "Noto Serif Vithkuqi" }, { "title": "Noto Serif Yezidi", "markdownDescription": "https://fonts.google.com/specimen/Noto+Serif+Yezidi", "const": "Noto Serif Yezidi" }, { "title": "Noto Traditional Nushu", "markdownDescription": "https://fonts.google.com/specimen/Noto+Traditional+Nushu", "const": "Noto Traditional Nushu" }, { "title": "Nova Cut", "markdownDescription": "https://fonts.google.com/specimen/Nova+Cut", "const": "Nova Cut" }, { "title": "Nova Flat", "markdownDescription": "https://fonts.google.com/specimen/Nova+Flat", "const": "Nova Flat" }, { "title": "Nova Mono", "markdownDescription": "https://fonts.google.com/specimen/Nova+Mono", "const": "Nova Mono" }, { "title": "Nova Oval", "markdownDescription": "https://fonts.google.com/specimen/Nova+Oval", "const": "Nova Oval" }, { "title": "Nova Round", "markdownDescription": "https://fonts.google.com/specimen/Nova+Round", "const": "Nova Round" }, { "title": "Nova Script", "markdownDescription": "https://fonts.google.com/specimen/Nova+Script", "const": "Nova Script" }, { "title": "Nova Slim", "markdownDescription": "https://fonts.google.com/specimen/Nova+Slim", "const": "Nova Slim" }, { "title": "Nova Square", "markdownDescription": "https://fonts.google.com/specimen/Nova+Square", "const": "Nova Square" }, { "title": "Numans", "markdownDescription": "https://fonts.google.com/specimen/Numans", "const": "Numans" }, { "title": "Nunito", "markdownDescription": "https://fonts.google.com/specimen/Nunito", "const": "Nunito" }, { "title": "Nunito Sans", "markdownDescription": "https://fonts.google.com/specimen/Nunito+Sans", "const": "Nunito Sans" }, { "title": "Nuosu SIL", "markdownDescription": "https://fonts.google.com/specimen/Nuosu+SIL", "const": "Nuosu SIL" }, { "title": "Odibee Sans", "markdownDescription": "https://fonts.google.com/specimen/Odibee+Sans", "const": "Odibee Sans" }, { "title": "Odor Mean Chey", "markdownDescription": "https://fonts.google.com/specimen/Odor+Mean+Chey", "const": "Odor Mean Chey" }, { "title": "Offside", "markdownDescription": "https://fonts.google.com/specimen/Offside", "const": "Offside" }, { "title": "Oi", "markdownDescription": "https://fonts.google.com/specimen/Oi", "const": "Oi" }, { "title": "Old Standard TT", "markdownDescription": "https://fonts.google.com/specimen/Old+Standard+TT", "const": "Old Standard TT" }, { "title": "Oldenburg", "markdownDescription": "https://fonts.google.com/specimen/Oldenburg", "const": "Oldenburg" }, { "title": "Ole", "markdownDescription": "https://fonts.google.com/specimen/Ole", "const": "Ole" }, { "title": "Oleo Script", "markdownDescription": "https://fonts.google.com/specimen/Oleo+Script", "const": "Oleo Script" }, { "title": "Oleo Script Swash Caps", "markdownDescription": "https://fonts.google.com/specimen/Oleo+Script+Swash+Caps", "const": "Oleo Script Swash Caps" }, { "title": "Onest", "markdownDescription": "https://fonts.google.com/specimen/Onest", "const": "Onest" }, { "title": "Oooh Baby", "markdownDescription": "https://fonts.google.com/specimen/Oooh+Baby", "const": "Oooh Baby" }, { "title": "Open Sans", "markdownDescription": "https://fonts.google.com/specimen/Open+Sans", "const": "Open Sans" }, { "title": "Oranienbaum", "markdownDescription": "https://fonts.google.com/specimen/Oranienbaum", "const": "Oranienbaum" }, { "title": "Orbit", "markdownDescription": "https://fonts.google.com/specimen/Orbit", "const": "Orbit" }, { "title": "Orbitron", "markdownDescription": "https://fonts.google.com/specimen/Orbitron", "const": "Orbitron" }, { "title": "Oregano", "markdownDescription": "https://fonts.google.com/specimen/Oregano", "const": "Oregano" }, { "title": "Orelega One", "markdownDescription": "https://fonts.google.com/specimen/Orelega+One", "const": "Orelega One" }, { "title": "Orienta", "markdownDescription": "https://fonts.google.com/specimen/Orienta", "const": "Orienta" }, { "title": "Original Surfer", "markdownDescription": "https://fonts.google.com/specimen/Original+Surfer", "const": "Original Surfer" }, { "title": "Oswald", "markdownDescription": "https://fonts.google.com/specimen/Oswald", "const": "Oswald" }, { "title": "Outfit", "markdownDescription": "https://fonts.google.com/specimen/Outfit", "const": "Outfit" }, { "title": "Over the Rainbow", "markdownDescription": "https://fonts.google.com/specimen/Over+the+Rainbow", "const": "Over the Rainbow" }, { "title": "Overlock", "markdownDescription": "https://fonts.google.com/specimen/Overlock", "const": "Overlock" }, { "title": "Overlock SC", "markdownDescription": "https://fonts.google.com/specimen/Overlock+SC", "const": "Overlock SC" }, { "title": "Overpass", "markdownDescription": "https://fonts.google.com/specimen/Overpass", "const": "Overpass" }, { "title": "Overpass Mono", "markdownDescription": "https://fonts.google.com/specimen/Overpass+Mono", "const": "Overpass Mono" }, { "title": "Ovo", "markdownDescription": "https://fonts.google.com/specimen/Ovo", "const": "Ovo" }, { "title": "Oxanium", "markdownDescription": "https://fonts.google.com/specimen/Oxanium", "const": "Oxanium" }, { "title": "Oxygen", "markdownDescription": "https://fonts.google.com/specimen/Oxygen", "const": "Oxygen" }, { "title": "Oxygen Mono", "markdownDescription": "https://fonts.google.com/specimen/Oxygen+Mono", "const": "Oxygen Mono" }, { "title": "PT Mono", "markdownDescription": "https://fonts.google.com/specimen/PT+Mono", "const": "PT Mono" }, { "title": "PT Sans", "markdownDescription": "https://fonts.google.com/specimen/PT+Sans", "const": "PT Sans" }, { "title": "PT Sans Caption", "markdownDescription": "https://fonts.google.com/specimen/PT+Sans+Caption", "const": "PT Sans Caption" }, { "title": "PT Sans Narrow", "markdownDescription": "https://fonts.google.com/specimen/PT+Sans+Narrow", "const": "PT Sans Narrow" }, { "title": "PT Serif", "markdownDescription": "https://fonts.google.com/specimen/PT+Serif", "const": "PT Serif" }, { "title": "PT Serif Caption", "markdownDescription": "https://fonts.google.com/specimen/PT+Serif+Caption", "const": "PT Serif Caption" }, { "title": "Pacifico", "markdownDescription": "https://fonts.google.com/specimen/Pacifico", "const": "Pacifico" }, { "title": "Padauk", "markdownDescription": "https://fonts.google.com/specimen/Padauk", "const": "Padauk" }, { "title": "Padyakke Expanded One", "markdownDescription": "https://fonts.google.com/specimen/Padyakke+Expanded+One", "const": "Padyakke Expanded One" }, { "title": "Palanquin", "markdownDescription": "https://fonts.google.com/specimen/Palanquin", "const": "Palanquin" }, { "title": "Palanquin Dark", "markdownDescription": "https://fonts.google.com/specimen/Palanquin+Dark", "const": "Palanquin Dark" }, { "title": "Palette Mosaic", "markdownDescription": "https://fonts.google.com/specimen/Palette+Mosaic", "const": "Palette Mosaic" }, { "title": "Pangolin", "markdownDescription": "https://fonts.google.com/specimen/Pangolin", "const": "Pangolin" }, { "title": "Paprika", "markdownDescription": "https://fonts.google.com/specimen/Paprika", "const": "Paprika" }, { "title": "Parisienne", "markdownDescription": "https://fonts.google.com/specimen/Parisienne", "const": "Parisienne" }, { "title": "Passero One", "markdownDescription": "https://fonts.google.com/specimen/Passero+One", "const": "Passero One" }, { "title": "Passion One", "markdownDescription": "https://fonts.google.com/specimen/Passion+One", "const": "Passion One" }, { "title": "Passions Conflict", "markdownDescription": "https://fonts.google.com/specimen/Passions+Conflict", "const": "Passions Conflict" }, { "title": "Pathway Extreme", "markdownDescription": "https://fonts.google.com/specimen/Pathway+Extreme", "const": "Pathway Extreme" }, { "title": "Pathway Gothic One", "markdownDescription": "https://fonts.google.com/specimen/Pathway+Gothic+One", "const": "Pathway Gothic One" }, { "title": "Patrick Hand", "markdownDescription": "https://fonts.google.com/specimen/Patrick+Hand", "const": "Patrick Hand" }, { "title": "Patrick Hand SC", "markdownDescription": "https://fonts.google.com/specimen/Patrick+Hand+SC", "const": "Patrick Hand SC" }, { "title": "Pattaya", "markdownDescription": "https://fonts.google.com/specimen/Pattaya", "const": "Pattaya" }, { "title": "Patua One", "markdownDescription": "https://fonts.google.com/specimen/Patua+One", "const": "Patua One" }, { "title": "Pavanam", "markdownDescription": "https://fonts.google.com/specimen/Pavanam", "const": "Pavanam" }, { "title": "Paytone One", "markdownDescription": "https://fonts.google.com/specimen/Paytone+One", "const": "Paytone One" }, { "title": "Peddana", "markdownDescription": "https://fonts.google.com/specimen/Peddana", "const": "Peddana" }, { "title": "Peralta", "markdownDescription": "https://fonts.google.com/specimen/Peralta", "const": "Peralta" }, { "title": "Permanent Marker", "markdownDescription": "https://fonts.google.com/specimen/Permanent+Marker", "const": "Permanent Marker" }, { "title": "Petemoss", "markdownDescription": "https://fonts.google.com/specimen/Petemoss", "const": "Petemoss" }, { "title": "Petit Formal Script", "markdownDescription": "https://fonts.google.com/specimen/Petit+Formal+Script", "const": "Petit Formal Script" }, { "title": "Petrona", "markdownDescription": "https://fonts.google.com/specimen/Petrona", "const": "Petrona" }, { "title": "Philosopher", "markdownDescription": "https://fonts.google.com/specimen/Philosopher", "const": "Philosopher" }, { "title": "Phudu", "markdownDescription": "https://fonts.google.com/specimen/Phudu", "const": "Phudu" }, { "title": "Piazzolla", "markdownDescription": "https://fonts.google.com/specimen/Piazzolla", "const": "Piazzolla" }, { "title": "Piedra", "markdownDescription": "https://fonts.google.com/specimen/Piedra", "const": "Piedra" }, { "title": "Pinyon Script", "markdownDescription": "https://fonts.google.com/specimen/Pinyon+Script", "const": "Pinyon Script" }, { "title": "Pirata One", "markdownDescription": "https://fonts.google.com/specimen/Pirata+One", "const": "Pirata One" }, { "title": "Pixelify Sans", "markdownDescription": "https://fonts.google.com/specimen/Pixelify+Sans", "const": "Pixelify Sans" }, { "title": "Plaster", "markdownDescription": "https://fonts.google.com/specimen/Plaster", "const": "Plaster" }, { "title": "Play", "markdownDescription": "https://fonts.google.com/specimen/Play", "const": "Play" }, { "title": "Playball", "markdownDescription": "https://fonts.google.com/specimen/Playball", "const": "Playball" }, { "title": "Playfair", "markdownDescription": "https://fonts.google.com/specimen/Playfair", "const": "Playfair" }, { "title": "Playfair Display", "markdownDescription": "https://fonts.google.com/specimen/Playfair+Display", "const": "Playfair Display" }, { "title": "Playfair Display SC", "markdownDescription": "https://fonts.google.com/specimen/Playfair+Display+SC", "const": "Playfair Display SC" }, { "title": "Playpen Sans", "markdownDescription": "https://fonts.google.com/specimen/Playpen+Sans", "const": "Playpen Sans" }, { "title": "Plus Jakarta Sans", "markdownDescription": "https://fonts.google.com/specimen/Plus+Jakarta+Sans", "const": "Plus Jakarta Sans" }, { "title": "Podkova", "markdownDescription": "https://fonts.google.com/specimen/Podkova", "const": "Podkova" }, { "title": "Poiret One", "markdownDescription": "https://fonts.google.com/specimen/Poiret+One", "const": "Poiret One" }, { "title": "Poller One", "markdownDescription": "https://fonts.google.com/specimen/Poller+One", "const": "Poller One" }, { "title": "Poltawski Nowy", "markdownDescription": "https://fonts.google.com/specimen/Poltawski+Nowy", "const": "Poltawski Nowy" }, { "title": "Poly", "markdownDescription": "https://fonts.google.com/specimen/Poly", "const": "Poly" }, { "title": "Pompiere", "markdownDescription": "https://fonts.google.com/specimen/Pompiere", "const": "Pompiere" }, { "title": "Pontano Sans", "markdownDescription": "https://fonts.google.com/specimen/Pontano+Sans", "const": "Pontano Sans" }, { "title": "Poor Story", "markdownDescription": "https://fonts.google.com/specimen/Poor+Story", "const": "Poor Story" }, { "title": "Poppins", "markdownDescription": "https://fonts.google.com/specimen/Poppins", "const": "Poppins" }, { "title": "Port Lligat Sans", "markdownDescription": "https://fonts.google.com/specimen/Port+Lligat+Sans", "const": "Port Lligat Sans" }, { "title": "Port Lligat Slab", "markdownDescription": "https://fonts.google.com/specimen/Port+Lligat+Slab", "const": "Port Lligat Slab" }, { "title": "Potta One", "markdownDescription": "https://fonts.google.com/specimen/Potta+One", "const": "Potta One" }, { "title": "Pragati Narrow", "markdownDescription": "https://fonts.google.com/specimen/Pragati+Narrow", "const": "Pragati Narrow" }, { "title": "Praise", "markdownDescription": "https://fonts.google.com/specimen/Praise", "const": "Praise" }, { "title": "Prata", "markdownDescription": "https://fonts.google.com/specimen/Prata", "const": "Prata" }, { "title": "Preahvihear", "markdownDescription": "https://fonts.google.com/specimen/Preahvihear", "const": "Preahvihear" }, { "title": "Press Start 2P", "markdownDescription": "https://fonts.google.com/specimen/Press+Start+2P", "const": "Press Start 2P" }, { "title": "Pridi", "markdownDescription": "https://fonts.google.com/specimen/Pridi", "const": "Pridi" }, { "title": "Princess Sofia", "markdownDescription": "https://fonts.google.com/specimen/Princess+Sofia", "const": "Princess Sofia" }, { "title": "Prociono", "markdownDescription": "https://fonts.google.com/specimen/Prociono", "const": "Prociono" }, { "title": "Prompt", "markdownDescription": "https://fonts.google.com/specimen/Prompt", "const": "Prompt" }, { "title": "Prosto One", "markdownDescription": "https://fonts.google.com/specimen/Prosto+One", "const": "Prosto One" }, { "title": "Proza Libre", "markdownDescription": "https://fonts.google.com/specimen/Proza+Libre", "const": "Proza Libre" }, { "title": "Public Sans", "markdownDescription": "https://fonts.google.com/specimen/Public+Sans", "const": "Public Sans" }, { "title": "Puppies Play", "markdownDescription": "https://fonts.google.com/specimen/Puppies+Play", "const": "Puppies Play" }, { "title": "Puritan", "markdownDescription": "https://fonts.google.com/specimen/Puritan", "const": "Puritan" }, { "title": "Purple Purse", "markdownDescription": "https://fonts.google.com/specimen/Purple+Purse", "const": "Purple Purse" }, { "title": "Qahiri", "markdownDescription": "https://fonts.google.com/specimen/Qahiri", "const": "Qahiri" }, { "title": "Quando", "markdownDescription": "https://fonts.google.com/specimen/Quando", "const": "Quando" }, { "title": "Quantico", "markdownDescription": "https://fonts.google.com/specimen/Quantico", "const": "Quantico" }, { "title": "Quattrocento", "markdownDescription": "https://fonts.google.com/specimen/Quattrocento", "const": "Quattrocento" }, { "title": "Quattrocento Sans", "markdownDescription": "https://fonts.google.com/specimen/Quattrocento+Sans", "const": "Quattrocento Sans" }, { "title": "Questrial", "markdownDescription": "https://fonts.google.com/specimen/Questrial", "const": "Questrial" }, { "title": "Quicksand", "markdownDescription": "https://fonts.google.com/specimen/Quicksand", "const": "Quicksand" }, { "title": "Quintessential", "markdownDescription": "https://fonts.google.com/specimen/Quintessential", "const": "Quintessential" }, { "title": "Qwigley", "markdownDescription": "https://fonts.google.com/specimen/Qwigley", "const": "Qwigley" }, { "title": "Qwitcher Grypen", "markdownDescription": "https://fonts.google.com/specimen/Qwitcher+Grypen", "const": "Qwitcher Grypen" }, { "title": "REM", "markdownDescription": "https://fonts.google.com/specimen/REM", "const": "REM" }, { "title": "Racing Sans One", "markdownDescription": "https://fonts.google.com/specimen/Racing+Sans+One", "const": "Racing Sans One" }, { "title": "Radio Canada", "markdownDescription": "https://fonts.google.com/specimen/Radio+Canada", "const": "Radio Canada" }, { "title": "Radley", "markdownDescription": "https://fonts.google.com/specimen/Radley", "const": "Radley" }, { "title": "Rajdhani", "markdownDescription": "https://fonts.google.com/specimen/Rajdhani", "const": "Rajdhani" }, { "title": "Rakkas", "markdownDescription": "https://fonts.google.com/specimen/Rakkas", "const": "Rakkas" }, { "title": "Raleway", "markdownDescription": "https://fonts.google.com/specimen/Raleway", "const": "Raleway" }, { "title": "Raleway Dots", "markdownDescription": "https://fonts.google.com/specimen/Raleway+Dots", "const": "Raleway Dots" }, { "title": "Ramabhadra", "markdownDescription": "https://fonts.google.com/specimen/Ramabhadra", "const": "Ramabhadra" }, { "title": "Ramaraja", "markdownDescription": "https://fonts.google.com/specimen/Ramaraja", "const": "Ramaraja" }, { "title": "Rambla", "markdownDescription": "https://fonts.google.com/specimen/Rambla", "const": "Rambla" }, { "title": "Rammetto One", "markdownDescription": "https://fonts.google.com/specimen/Rammetto+One", "const": "Rammetto One" }, { "title": "Rampart One", "markdownDescription": "https://fonts.google.com/specimen/Rampart+One", "const": "Rampart One" }, { "title": "Ranchers", "markdownDescription": "https://fonts.google.com/specimen/Ranchers", "const": "Ranchers" }, { "title": "Rancho", "markdownDescription": "https://fonts.google.com/specimen/Rancho", "const": "Rancho" }, { "title": "Ranga", "markdownDescription": "https://fonts.google.com/specimen/Ranga", "const": "Ranga" }, { "title": "Rasa", "markdownDescription": "https://fonts.google.com/specimen/Rasa", "const": "Rasa" }, { "title": "Rationale", "markdownDescription": "https://fonts.google.com/specimen/Rationale", "const": "Rationale" }, { "title": "Ravi Prakash", "markdownDescription": "https://fonts.google.com/specimen/Ravi+Prakash", "const": "Ravi Prakash" }, { "title": "Readex Pro", "markdownDescription": "https://fonts.google.com/specimen/Readex+Pro", "const": "Readex Pro" }, { "title": "Recursive", "markdownDescription": "https://fonts.google.com/specimen/Recursive", "const": "Recursive" }, { "title": "Red Hat Display", "markdownDescription": "https://fonts.google.com/specimen/Red+Hat+Display", "const": "Red Hat Display" }, { "title": "Red Hat Mono", "markdownDescription": "https://fonts.google.com/specimen/Red+Hat+Mono", "const": "Red Hat Mono" }, { "title": "Red Hat Text", "markdownDescription": "https://fonts.google.com/specimen/Red+Hat+Text", "const": "Red Hat Text" }, { "title": "Red Rose", "markdownDescription": "https://fonts.google.com/specimen/Red+Rose", "const": "Red Rose" }, { "title": "Redacted", "markdownDescription": "https://fonts.google.com/specimen/Redacted", "const": "Redacted" }, { "title": "Redacted Script", "markdownDescription": "https://fonts.google.com/specimen/Redacted+Script", "const": "Redacted Script" }, { "title": "Redressed", "markdownDescription": "https://fonts.google.com/specimen/Redressed", "const": "Redressed" }, { "title": "Reem Kufi", "markdownDescription": "https://fonts.google.com/specimen/Reem+Kufi", "const": "Reem Kufi" }, { "title": "Reem Kufi Fun", "markdownDescription": "https://fonts.google.com/specimen/Reem+Kufi+Fun", "const": "Reem Kufi Fun" }, { "title": "Reem Kufi Ink", "markdownDescription": "https://fonts.google.com/specimen/Reem+Kufi+Ink", "const": "Reem Kufi Ink" }, { "title": "Reenie Beanie", "markdownDescription": "https://fonts.google.com/specimen/Reenie+Beanie", "const": "Reenie Beanie" }, { "title": "Reggae One", "markdownDescription": "https://fonts.google.com/specimen/Reggae+One", "const": "Reggae One" }, { "title": "Revalia", "markdownDescription": "https://fonts.google.com/specimen/Revalia", "const": "Revalia" }, { "title": "Rhodium Libre", "markdownDescription": "https://fonts.google.com/specimen/Rhodium+Libre", "const": "Rhodium Libre" }, { "title": "Ribeye", "markdownDescription": "https://fonts.google.com/specimen/Ribeye", "const": "Ribeye" }, { "title": "Ribeye Marrow", "markdownDescription": "https://fonts.google.com/specimen/Ribeye+Marrow", "const": "Ribeye Marrow" }, { "title": "Righteous", "markdownDescription": "https://fonts.google.com/specimen/Righteous", "const": "Righteous" }, { "title": "Risque", "markdownDescription": "https://fonts.google.com/specimen/Risque", "const": "Risque" }, { "title": "Road Rage", "markdownDescription": "https://fonts.google.com/specimen/Road+Rage", "const": "Road Rage" }, { "title": "Roboto", "markdownDescription": "https://fonts.google.com/specimen/Roboto", "const": "Roboto" }, { "title": "Roboto Condensed", "markdownDescription": "https://fonts.google.com/specimen/Roboto+Condensed", "const": "Roboto Condensed" }, { "title": "Roboto Flex", "markdownDescription": "https://fonts.google.com/specimen/Roboto+Flex", "const": "Roboto Flex" }, { "title": "Roboto Mono", "markdownDescription": "https://fonts.google.com/specimen/Roboto+Mono", "const": "Roboto Mono" }, { "title": "Roboto Serif", "markdownDescription": "https://fonts.google.com/specimen/Roboto+Serif", "const": "Roboto Serif" }, { "title": "Roboto Slab", "markdownDescription": "https://fonts.google.com/specimen/Roboto+Slab", "const": "Roboto Slab" }, { "title": "Rochester", "markdownDescription": "https://fonts.google.com/specimen/Rochester", "const": "Rochester" }, { "title": "Rock 3D", "markdownDescription": "https://fonts.google.com/specimen/Rock+3D", "const": "Rock 3D" }, { "title": "Rock Salt", "markdownDescription": "https://fonts.google.com/specimen/Rock+Salt", "const": "Rock Salt" }, { "title": "RocknRoll One", "markdownDescription": "https://fonts.google.com/specimen/RocknRoll+One", "const": "RocknRoll One" }, { "title": "Rokkitt", "markdownDescription": "https://fonts.google.com/specimen/Rokkitt", "const": "Rokkitt" }, { "title": "Romanesco", "markdownDescription": "https://fonts.google.com/specimen/Romanesco", "const": "Romanesco" }, { "title": "Ropa Sans", "markdownDescription": "https://fonts.google.com/specimen/Ropa+Sans", "const": "Ropa Sans" }, { "title": "Rosario", "markdownDescription": "https://fonts.google.com/specimen/Rosario", "const": "Rosario" }, { "title": "Rosarivo", "markdownDescription": "https://fonts.google.com/specimen/Rosarivo", "const": "Rosarivo" }, { "title": "Rouge Script", "markdownDescription": "https://fonts.google.com/specimen/Rouge+Script", "const": "Rouge Script" }, { "title": "Rowdies", "markdownDescription": "https://fonts.google.com/specimen/Rowdies", "const": "Rowdies" }, { "title": "Rozha One", "markdownDescription": "https://fonts.google.com/specimen/Rozha+One", "const": "Rozha One" }, { "title": "Rubik", "markdownDescription": "https://fonts.google.com/specimen/Rubik", "const": "Rubik" }, { "title": "Rubik 80s Fade", "markdownDescription": "https://fonts.google.com/specimen/Rubik+80s+Fade", "const": "Rubik 80s Fade" }, { "title": "Rubik Beastly", "markdownDescription": "https://fonts.google.com/specimen/Rubik+Beastly", "const": "Rubik Beastly" }, { "title": "Rubik Bubbles", "markdownDescription": "https://fonts.google.com/specimen/Rubik+Bubbles", "const": "Rubik Bubbles" }, { "title": "Rubik Burned", "markdownDescription": "https://fonts.google.com/specimen/Rubik+Burned", "const": "Rubik Burned" }, { "title": "Rubik Dirt", "markdownDescription": "https://fonts.google.com/specimen/Rubik+Dirt", "const": "Rubik Dirt" }, { "title": "Rubik Distressed", "markdownDescription": "https://fonts.google.com/specimen/Rubik+Distressed", "const": "Rubik Distressed" }, { "title": "Rubik Gemstones", "markdownDescription": "https://fonts.google.com/specimen/Rubik+Gemstones", "const": "Rubik Gemstones" }, { "title": "Rubik Glitch", "markdownDescription": "https://fonts.google.com/specimen/Rubik+Glitch", "const": "Rubik Glitch" }, { "title": "Rubik Iso", "markdownDescription": "https://fonts.google.com/specimen/Rubik+Iso", "const": "Rubik Iso" }, { "title": "Rubik Marker Hatch", "markdownDescription": "https://fonts.google.com/specimen/Rubik+Marker+Hatch", "const": "Rubik Marker Hatch" }, { "title": "Rubik Maze", "markdownDescription": "https://fonts.google.com/specimen/Rubik+Maze", "const": "Rubik Maze" }, { "title": "Rubik Microbe", "markdownDescription": "https://fonts.google.com/specimen/Rubik+Microbe", "const": "Rubik Microbe" }, { "title": "Rubik Mono One", "markdownDescription": "https://fonts.google.com/specimen/Rubik+Mono+One", "const": "Rubik Mono One" }, { "title": "Rubik Moonrocks", "markdownDescription": "https://fonts.google.com/specimen/Rubik+Moonrocks", "const": "Rubik Moonrocks" }, { "title": "Rubik Pixels", "markdownDescription": "https://fonts.google.com/specimen/Rubik+Pixels", "const": "Rubik Pixels" }, { "title": "Rubik Puddles", "markdownDescription": "https://fonts.google.com/specimen/Rubik+Puddles", "const": "Rubik Puddles" }, { "title": "Rubik Spray Paint", "markdownDescription": "https://fonts.google.com/specimen/Rubik+Spray+Paint", "const": "Rubik Spray Paint" }, { "title": "Rubik Storm", "markdownDescription": "https://fonts.google.com/specimen/Rubik+Storm", "const": "Rubik Storm" }, { "title": "Rubik Vinyl", "markdownDescription": "https://fonts.google.com/specimen/Rubik+Vinyl", "const": "Rubik Vinyl" }, { "title": "Rubik Wet Paint", "markdownDescription": "https://fonts.google.com/specimen/Rubik+Wet+Paint", "const": "Rubik Wet Paint" }, { "title": "Ruda", "markdownDescription": "https://fonts.google.com/specimen/Ruda", "const": "Ruda" }, { "title": "Rufina", "markdownDescription": "https://fonts.google.com/specimen/Rufina", "const": "Rufina" }, { "title": "Ruge Boogie", "markdownDescription": "https://fonts.google.com/specimen/Ruge+Boogie", "const": "Ruge Boogie" }, { "title": "Ruluko", "markdownDescription": "https://fonts.google.com/specimen/Ruluko", "const": "Ruluko" }, { "title": "Rum Raisin", "markdownDescription": "https://fonts.google.com/specimen/Rum+Raisin", "const": "Rum Raisin" }, { "title": "Ruslan Display", "markdownDescription": "https://fonts.google.com/specimen/Ruslan+Display", "const": "Ruslan Display" }, { "title": "Russo One", "markdownDescription": "https://fonts.google.com/specimen/Russo+One", "const": "Russo One" }, { "title": "Ruthie", "markdownDescription": "https://fonts.google.com/specimen/Ruthie", "const": "Ruthie" }, { "title": "Ruwudu", "markdownDescription": "https://fonts.google.com/specimen/Ruwudu", "const": "Ruwudu" }, { "title": "Rye", "markdownDescription": "https://fonts.google.com/specimen/Rye", "const": "Rye" }, { "title": "STIX Two Text", "markdownDescription": "https://fonts.google.com/specimen/STIX+Two+Text", "const": "STIX Two Text" }, { "title": "Sacramento", "markdownDescription": "https://fonts.google.com/specimen/Sacramento", "const": "Sacramento" }, { "title": "Sahitya", "markdownDescription": "https://fonts.google.com/specimen/Sahitya", "const": "Sahitya" }, { "title": "Sail", "markdownDescription": "https://fonts.google.com/specimen/Sail", "const": "Sail" }, { "title": "Saira", "markdownDescription": "https://fonts.google.com/specimen/Saira", "const": "Saira" }, { "title": "Saira Condensed", "markdownDescription": "https://fonts.google.com/specimen/Saira+Condensed", "const": "Saira Condensed" }, { "title": "Saira Extra Condensed", "markdownDescription": "https://fonts.google.com/specimen/Saira+Extra+Condensed", "const": "Saira Extra Condensed" }, { "title": "Saira Semi Condensed", "markdownDescription": "https://fonts.google.com/specimen/Saira+Semi+Condensed", "const": "Saira Semi Condensed" }, { "title": "Saira Stencil One", "markdownDescription": "https://fonts.google.com/specimen/Saira+Stencil+One", "const": "Saira Stencil One" }, { "title": "Salsa", "markdownDescription": "https://fonts.google.com/specimen/Salsa", "const": "Salsa" }, { "title": "Sanchez", "markdownDescription": "https://fonts.google.com/specimen/Sanchez", "const": "Sanchez" }, { "title": "Sancreek", "markdownDescription": "https://fonts.google.com/specimen/Sancreek", "const": "Sancreek" }, { "title": "Sansita", "markdownDescription": "https://fonts.google.com/specimen/Sansita", "const": "Sansita" }, { "title": "Sansita Swashed", "markdownDescription": "https://fonts.google.com/specimen/Sansita+Swashed", "const": "Sansita Swashed" }, { "title": "Sarabun", "markdownDescription": "https://fonts.google.com/specimen/Sarabun", "const": "Sarabun" }, { "title": "Sarala", "markdownDescription": "https://fonts.google.com/specimen/Sarala", "const": "Sarala" }, { "title": "Sarina", "markdownDescription": "https://fonts.google.com/specimen/Sarina", "const": "Sarina" }, { "title": "Sarpanch", "markdownDescription": "https://fonts.google.com/specimen/Sarpanch", "const": "Sarpanch" }, { "title": "Sassy Frass", "markdownDescription": "https://fonts.google.com/specimen/Sassy+Frass", "const": "Sassy Frass" }, { "title": "Satisfy", "markdownDescription": "https://fonts.google.com/specimen/Satisfy", "const": "Satisfy" }, { "title": "Sawarabi Gothic", "markdownDescription": "https://fonts.google.com/specimen/Sawarabi+Gothic", "const": "Sawarabi Gothic" }, { "title": "Sawarabi Mincho", "markdownDescription": "https://fonts.google.com/specimen/Sawarabi+Mincho", "const": "Sawarabi Mincho" }, { "title": "Scada", "markdownDescription": "https://fonts.google.com/specimen/Scada", "const": "Scada" }, { "title": "Scheherazade New", "markdownDescription": "https://fonts.google.com/specimen/Scheherazade+New", "const": "Scheherazade New" }, { "title": "Schibsted Grotesk", "markdownDescription": "https://fonts.google.com/specimen/Schibsted+Grotesk", "const": "Schibsted Grotesk" }, { "title": "Schoolbell", "markdownDescription": "https://fonts.google.com/specimen/Schoolbell", "const": "Schoolbell" }, { "title": "Scope One", "markdownDescription": "https://fonts.google.com/specimen/Scope+One", "const": "Scope One" }, { "title": "Seaweed Script", "markdownDescription": "https://fonts.google.com/specimen/Seaweed+Script", "const": "Seaweed Script" }, { "title": "Secular One", "markdownDescription": "https://fonts.google.com/specimen/Secular+One", "const": "Secular One" }, { "title": "Sedgwick Ave", "markdownDescription": "https://fonts.google.com/specimen/Sedgwick+Ave", "const": "Sedgwick Ave" }, { "title": "Sedgwick Ave Display", "markdownDescription": "https://fonts.google.com/specimen/Sedgwick+Ave+Display", "const": "Sedgwick Ave Display" }, { "title": "Sen", "markdownDescription": "https://fonts.google.com/specimen/Sen", "const": "Sen" }, { "title": "Send Flowers", "markdownDescription": "https://fonts.google.com/specimen/Send+Flowers", "const": "Send Flowers" }, { "title": "Sevillana", "markdownDescription": "https://fonts.google.com/specimen/Sevillana", "const": "Sevillana" }, { "title": "Seymour One", "markdownDescription": "https://fonts.google.com/specimen/Seymour+One", "const": "Seymour One" }, { "title": "Shadows Into Light", "markdownDescription": "https://fonts.google.com/specimen/Shadows+Into+Light", "const": "Shadows Into Light" }, { "title": "Shadows Into Light Two", "markdownDescription": "https://fonts.google.com/specimen/Shadows+Into+Light+Two", "const": "Shadows Into Light Two" }, { "title": "Shalimar", "markdownDescription": "https://fonts.google.com/specimen/Shalimar", "const": "Shalimar" }, { "title": "Shantell Sans", "markdownDescription": "https://fonts.google.com/specimen/Shantell+Sans", "const": "Shantell Sans" }, { "title": "Shanti", "markdownDescription": "https://fonts.google.com/specimen/Shanti", "const": "Shanti" }, { "title": "Share", "markdownDescription": "https://fonts.google.com/specimen/Share", "const": "Share" }, { "title": "Share Tech", "markdownDescription": "https://fonts.google.com/specimen/Share+Tech", "const": "Share Tech" }, { "title": "Share Tech Mono", "markdownDescription": "https://fonts.google.com/specimen/Share+Tech+Mono", "const": "Share Tech Mono" }, { "title": "Shippori Antique", "markdownDescription": "https://fonts.google.com/specimen/Shippori+Antique", "const": "Shippori Antique" }, { "title": "Shippori Antique B1", "markdownDescription": "https://fonts.google.com/specimen/Shippori+Antique+B1", "const": "Shippori Antique B1" }, { "title": "Shippori Mincho", "markdownDescription": "https://fonts.google.com/specimen/Shippori+Mincho", "const": "Shippori Mincho" }, { "title": "Shippori Mincho B1", "markdownDescription": "https://fonts.google.com/specimen/Shippori+Mincho+B1", "const": "Shippori Mincho B1" }, { "title": "Shizuru", "markdownDescription": "https://fonts.google.com/specimen/Shizuru", "const": "Shizuru" }, { "title": "Shojumaru", "markdownDescription": "https://fonts.google.com/specimen/Shojumaru", "const": "Shojumaru" }, { "title": "Short Stack", "markdownDescription": "https://fonts.google.com/specimen/Short+Stack", "const": "Short Stack" }, { "title": "Shrikhand", "markdownDescription": "https://fonts.google.com/specimen/Shrikhand", "const": "Shrikhand" }, { "title": "Siemreap", "markdownDescription": "https://fonts.google.com/specimen/Siemreap", "const": "Siemreap" }, { "title": "Sigmar", "markdownDescription": "https://fonts.google.com/specimen/Sigmar", "const": "Sigmar" }, { "title": "Sigmar One", "markdownDescription": "https://fonts.google.com/specimen/Sigmar+One", "const": "Sigmar One" }, { "title": "Signika", "markdownDescription": "https://fonts.google.com/specimen/Signika", "const": "Signika" }, { "title": "Signika Negative", "markdownDescription": "https://fonts.google.com/specimen/Signika+Negative", "const": "Signika Negative" }, { "title": "Silkscreen", "markdownDescription": "https://fonts.google.com/specimen/Silkscreen", "const": "Silkscreen" }, { "title": "Simonetta", "markdownDescription": "https://fonts.google.com/specimen/Simonetta", "const": "Simonetta" }, { "title": "Single Day", "markdownDescription": "https://fonts.google.com/specimen/Single+Day", "const": "Single Day" }, { "title": "Sintony", "markdownDescription": "https://fonts.google.com/specimen/Sintony", "const": "Sintony" }, { "title": "Sirin Stencil", "markdownDescription": "https://fonts.google.com/specimen/Sirin+Stencil", "const": "Sirin Stencil" }, { "title": "Six Caps", "markdownDescription": "https://fonts.google.com/specimen/Six+Caps", "const": "Six Caps" }, { "title": "Skranji", "markdownDescription": "https://fonts.google.com/specimen/Skranji", "const": "Skranji" }, { "title": "Slabo 13px", "markdownDescription": "https://fonts.google.com/specimen/Slabo+13px", "const": "Slabo 13px" }, { "title": "Slabo 27px", "markdownDescription": "https://fonts.google.com/specimen/Slabo+27px", "const": "Slabo 27px" }, { "title": "Slackey", "markdownDescription": "https://fonts.google.com/specimen/Slackey", "const": "Slackey" }, { "title": "Slackside One", "markdownDescription": "https://fonts.google.com/specimen/Slackside+One", "const": "Slackside One" }, { "title": "Smokum", "markdownDescription": "https://fonts.google.com/specimen/Smokum", "const": "Smokum" }, { "title": "Smooch", "markdownDescription": "https://fonts.google.com/specimen/Smooch", "const": "Smooch" }, { "title": "Smooch Sans", "markdownDescription": "https://fonts.google.com/specimen/Smooch+Sans", "const": "Smooch Sans" }, { "title": "Smythe", "markdownDescription": "https://fonts.google.com/specimen/Smythe", "const": "Smythe" }, { "title": "Sniglet", "markdownDescription": "https://fonts.google.com/specimen/Sniglet", "const": "Sniglet" }, { "title": "Snippet", "markdownDescription": "https://fonts.google.com/specimen/Snippet", "const": "Snippet" }, { "title": "Snowburst One", "markdownDescription": "https://fonts.google.com/specimen/Snowburst+One", "const": "Snowburst One" }, { "title": "Sofadi One", "markdownDescription": "https://fonts.google.com/specimen/Sofadi+One", "const": "Sofadi One" }, { "title": "Sofia", "markdownDescription": "https://fonts.google.com/specimen/Sofia", "const": "Sofia" }, { "title": "Sofia Sans", "markdownDescription": "https://fonts.google.com/specimen/Sofia+Sans", "const": "Sofia Sans" }, { "title": "Sofia Sans Condensed", "markdownDescription": "https://fonts.google.com/specimen/Sofia+Sans+Condensed", "const": "Sofia Sans Condensed" }, { "title": "Sofia Sans Extra Condensed", "markdownDescription": "https://fonts.google.com/specimen/Sofia+Sans+Extra+Condensed", "const": "Sofia Sans Extra Condensed" }, { "title": "Sofia Sans Semi Condensed", "markdownDescription": "https://fonts.google.com/specimen/Sofia+Sans+Semi+Condensed", "const": "Sofia Sans Semi Condensed" }, { "title": "Solitreo", "markdownDescription": "https://fonts.google.com/specimen/Solitreo", "const": "Solitreo" }, { "title": "Solway", "markdownDescription": "https://fonts.google.com/specimen/Solway", "const": "Solway" }, { "title": "Sometype Mono", "markdownDescription": "https://fonts.google.com/specimen/Sometype+Mono", "const": "Sometype Mono" }, { "title": "Song Myung", "markdownDescription": "https://fonts.google.com/specimen/Song+Myung", "const": "Song Myung" }, { "title": "Sono", "markdownDescription": "https://fonts.google.com/specimen/Sono", "const": "Sono" }, { "title": "Sonsie One", "markdownDescription": "https://fonts.google.com/specimen/Sonsie+One", "const": "Sonsie One" }, { "title": "Sora", "markdownDescription": "https://fonts.google.com/specimen/Sora", "const": "Sora" }, { "title": "Sorts Mill Goudy", "markdownDescription": "https://fonts.google.com/specimen/Sorts+Mill+Goudy", "const": "Sorts Mill Goudy" }, { "title": "Source Code Pro", "markdownDescription": "https://fonts.google.com/specimen/Source+Code+Pro", "const": "Source Code Pro" }, { "title": "Source Sans 3", "markdownDescription": "https://fonts.google.com/specimen/Source+Sans+3", "const": "Source Sans 3" }, { "title": "Source Serif 4", "markdownDescription": "https://fonts.google.com/specimen/Source+Serif+4", "const": "Source Serif 4" }, { "title": "Space Grotesk", "markdownDescription": "https://fonts.google.com/specimen/Space+Grotesk", "const": "Space Grotesk" }, { "title": "Space Mono", "markdownDescription": "https://fonts.google.com/specimen/Space+Mono", "const": "Space Mono" }, { "title": "Special Elite", "markdownDescription": "https://fonts.google.com/specimen/Special+Elite", "const": "Special Elite" }, { "title": "Spectral", "markdownDescription": "https://fonts.google.com/specimen/Spectral", "const": "Spectral" }, { "title": "Spectral SC", "markdownDescription": "https://fonts.google.com/specimen/Spectral+SC", "const": "Spectral SC" }, { "title": "Spicy Rice", "markdownDescription": "https://fonts.google.com/specimen/Spicy+Rice", "const": "Spicy Rice" }, { "title": "Spinnaker", "markdownDescription": "https://fonts.google.com/specimen/Spinnaker", "const": "Spinnaker" }, { "title": "Spirax", "markdownDescription": "https://fonts.google.com/specimen/Spirax", "const": "Spirax" }, { "title": "Splash", "markdownDescription": "https://fonts.google.com/specimen/Splash", "const": "Splash" }, { "title": "Spline Sans", "markdownDescription": "https://fonts.google.com/specimen/Spline+Sans", "const": "Spline Sans" }, { "title": "Spline Sans Mono", "markdownDescription": "https://fonts.google.com/specimen/Spline+Sans+Mono", "const": "Spline Sans Mono" }, { "title": "Squada One", "markdownDescription": "https://fonts.google.com/specimen/Squada+One", "const": "Squada One" }, { "title": "Square Peg", "markdownDescription": "https://fonts.google.com/specimen/Square+Peg", "const": "Square Peg" }, { "title": "Sree Krushnadevaraya", "markdownDescription": "https://fonts.google.com/specimen/Sree+Krushnadevaraya", "const": "Sree Krushnadevaraya" }, { "title": "Sriracha", "markdownDescription": "https://fonts.google.com/specimen/Sriracha", "const": "Sriracha" }, { "title": "Srisakdi", "markdownDescription": "https://fonts.google.com/specimen/Srisakdi", "const": "Srisakdi" }, { "title": "Staatliches", "markdownDescription": "https://fonts.google.com/specimen/Staatliches", "const": "Staatliches" }, { "title": "Stalemate", "markdownDescription": "https://fonts.google.com/specimen/Stalemate", "const": "Stalemate" }, { "title": "Stalinist One", "markdownDescription": "https://fonts.google.com/specimen/Stalinist+One", "const": "Stalinist One" }, { "title": "Stardos Stencil", "markdownDescription": "https://fonts.google.com/specimen/Stardos+Stencil", "const": "Stardos Stencil" }, { "title": "Stick", "markdownDescription": "https://fonts.google.com/specimen/Stick", "const": "Stick" }, { "title": "Stick No Bills", "markdownDescription": "https://fonts.google.com/specimen/Stick+No+Bills", "const": "Stick No Bills" }, { "title": "Stint Ultra Condensed", "markdownDescription": "https://fonts.google.com/specimen/Stint+Ultra+Condensed", "const": "Stint Ultra Condensed" }, { "title": "Stint Ultra Expanded", "markdownDescription": "https://fonts.google.com/specimen/Stint+Ultra+Expanded", "const": "Stint Ultra Expanded" }, { "title": "Stoke", "markdownDescription": "https://fonts.google.com/specimen/Stoke", "const": "Stoke" }, { "title": "Strait", "markdownDescription": "https://fonts.google.com/specimen/Strait", "const": "Strait" }, { "title": "Style Script", "markdownDescription": "https://fonts.google.com/specimen/Style+Script", "const": "Style Script" }, { "title": "Stylish", "markdownDescription": "https://fonts.google.com/specimen/Stylish", "const": "Stylish" }, { "title": "Sue Ellen Francisco", "markdownDescription": "https://fonts.google.com/specimen/Sue+Ellen+Francisco", "const": "Sue Ellen Francisco" }, { "title": "Suez One", "markdownDescription": "https://fonts.google.com/specimen/Suez+One", "const": "Suez One" }, { "title": "Sulphur Point", "markdownDescription": "https://fonts.google.com/specimen/Sulphur+Point", "const": "Sulphur Point" }, { "title": "Sumana", "markdownDescription": "https://fonts.google.com/specimen/Sumana", "const": "Sumana" }, { "title": "Sunflower", "markdownDescription": "https://fonts.google.com/specimen/Sunflower", "const": "Sunflower" }, { "title": "Sunshiney", "markdownDescription": "https://fonts.google.com/specimen/Sunshiney", "const": "Sunshiney" }, { "title": "Supermercado One", "markdownDescription": "https://fonts.google.com/specimen/Supermercado+One", "const": "Supermercado One" }, { "title": "Sura", "markdownDescription": "https://fonts.google.com/specimen/Sura", "const": "Sura" }, { "title": "Suranna", "markdownDescription": "https://fonts.google.com/specimen/Suranna", "const": "Suranna" }, { "title": "Suravaram", "markdownDescription": "https://fonts.google.com/specimen/Suravaram", "const": "Suravaram" }, { "title": "Suwannaphum", "markdownDescription": "https://fonts.google.com/specimen/Suwannaphum", "const": "Suwannaphum" }, { "title": "Swanky and Moo Moo", "markdownDescription": "https://fonts.google.com/specimen/Swanky+and+Moo+Moo", "const": "Swanky and Moo Moo" }, { "title": "Syncopate", "markdownDescription": "https://fonts.google.com/specimen/Syncopate", "const": "Syncopate" }, { "title": "Syne", "markdownDescription": "https://fonts.google.com/specimen/Syne", "const": "Syne" }, { "title": "Syne Mono", "markdownDescription": "https://fonts.google.com/specimen/Syne+Mono", "const": "Syne Mono" }, { "title": "Syne Tactile", "markdownDescription": "https://fonts.google.com/specimen/Syne+Tactile", "const": "Syne Tactile" }, { "title": "Tai Heritage Pro", "markdownDescription": "https://fonts.google.com/specimen/Tai+Heritage+Pro", "const": "Tai Heritage Pro" }, { "title": "Tajawal", "markdownDescription": "https://fonts.google.com/specimen/Tajawal", "const": "Tajawal" }, { "title": "Tangerine", "markdownDescription": "https://fonts.google.com/specimen/Tangerine", "const": "Tangerine" }, { "title": "Tapestry", "markdownDescription": "https://fonts.google.com/specimen/Tapestry", "const": "Tapestry" }, { "title": "Taprom", "markdownDescription": "https://fonts.google.com/specimen/Taprom", "const": "Taprom" }, { "title": "Tauri", "markdownDescription": "https://fonts.google.com/specimen/Tauri", "const": "Tauri" }, { "title": "Taviraj", "markdownDescription": "https://fonts.google.com/specimen/Taviraj", "const": "Taviraj" }, { "title": "Teko", "markdownDescription": "https://fonts.google.com/specimen/Teko", "const": "Teko" }, { "title": "Tektur", "markdownDescription": "https://fonts.google.com/specimen/Tektur", "const": "Tektur" }, { "title": "Telex", "markdownDescription": "https://fonts.google.com/specimen/Telex", "const": "Telex" }, { "title": "Tenali Ramakrishna", "markdownDescription": "https://fonts.google.com/specimen/Tenali+Ramakrishna", "const": "Tenali Ramakrishna" }, { "title": "Tenor Sans", "markdownDescription": "https://fonts.google.com/specimen/Tenor+Sans", "const": "Tenor Sans" }, { "title": "Text Me One", "markdownDescription": "https://fonts.google.com/specimen/Text+Me+One", "const": "Text Me One" }, { "title": "Texturina", "markdownDescription": "https://fonts.google.com/specimen/Texturina", "const": "Texturina" }, { "title": "Thasadith", "markdownDescription": "https://fonts.google.com/specimen/Thasadith", "const": "Thasadith" }, { "title": "The Girl Next Door", "markdownDescription": "https://fonts.google.com/specimen/The+Girl+Next+Door", "const": "The Girl Next Door" }, { "title": "The Nautigal", "markdownDescription": "https://fonts.google.com/specimen/The+Nautigal", "const": "The Nautigal" }, { "title": "Tienne", "markdownDescription": "https://fonts.google.com/specimen/Tienne", "const": "Tienne" }, { "title": "Tillana", "markdownDescription": "https://fonts.google.com/specimen/Tillana", "const": "Tillana" }, { "title": "Tilt Neon", "markdownDescription": "https://fonts.google.com/specimen/Tilt+Neon", "const": "Tilt Neon" }, { "title": "Tilt Prism", "markdownDescription": "https://fonts.google.com/specimen/Tilt+Prism", "const": "Tilt Prism" }, { "title": "Tilt Warp", "markdownDescription": "https://fonts.google.com/specimen/Tilt+Warp", "const": "Tilt Warp" }, { "title": "Timmana", "markdownDescription": "https://fonts.google.com/specimen/Timmana", "const": "Timmana" }, { "title": "Tinos", "markdownDescription": "https://fonts.google.com/specimen/Tinos", "const": "Tinos" }, { "title": "Tiro Bangla", "markdownDescription": "https://fonts.google.com/specimen/Tiro+Bangla", "const": "Tiro Bangla" }, { "title": "Tiro Devanagari Hindi", "markdownDescription": "https://fonts.google.com/specimen/Tiro+Devanagari+Hindi", "const": "Tiro Devanagari Hindi" }, { "title": "Tiro Devanagari Marathi", "markdownDescription": "https://fonts.google.com/specimen/Tiro+Devanagari+Marathi", "const": "Tiro Devanagari Marathi" }, { "title": "Tiro Devanagari Sanskrit", "markdownDescription": "https://fonts.google.com/specimen/Tiro+Devanagari+Sanskrit", "const": "Tiro Devanagari Sanskrit" }, { "title": "Tiro Gurmukhi", "markdownDescription": "https://fonts.google.com/specimen/Tiro+Gurmukhi", "const": "Tiro Gurmukhi" }, { "title": "Tiro Kannada", "markdownDescription": "https://fonts.google.com/specimen/Tiro+Kannada", "const": "Tiro Kannada" }, { "title": "Tiro Tamil", "markdownDescription": "https://fonts.google.com/specimen/Tiro+Tamil", "const": "Tiro Tamil" }, { "title": "Tiro Telugu", "markdownDescription": "https://fonts.google.com/specimen/Tiro+Telugu", "const": "Tiro Telugu" }, { "title": "Titan One", "markdownDescription": "https://fonts.google.com/specimen/Titan+One", "const": "Titan One" }, { "title": "Titillium Web", "markdownDescription": "https://fonts.google.com/specimen/Titillium+Web", "const": "Titillium Web" }, { "title": "Tomorrow", "markdownDescription": "https://fonts.google.com/specimen/Tomorrow", "const": "Tomorrow" }, { "title": "Tourney", "markdownDescription": "https://fonts.google.com/specimen/Tourney", "const": "Tourney" }, { "title": "Trade Winds", "markdownDescription": "https://fonts.google.com/specimen/Trade+Winds", "const": "Trade Winds" }, { "title": "Train One", "markdownDescription": "https://fonts.google.com/specimen/Train+One", "const": "Train One" }, { "title": "Trirong", "markdownDescription": "https://fonts.google.com/specimen/Trirong", "const": "Trirong" }, { "title": "Trispace", "markdownDescription": "https://fonts.google.com/specimen/Trispace", "const": "Trispace" }, { "title": "Trocchi", "markdownDescription": "https://fonts.google.com/specimen/Trocchi", "const": "Trocchi" }, { "title": "Trochut", "markdownDescription": "https://fonts.google.com/specimen/Trochut", "const": "Trochut" }, { "title": "Truculenta", "markdownDescription": "https://fonts.google.com/specimen/Truculenta", "const": "Truculenta" }, { "title": "Trykker", "markdownDescription": "https://fonts.google.com/specimen/Trykker", "const": "Trykker" }, { "title": "Tsukimi Rounded", "markdownDescription": "https://fonts.google.com/specimen/Tsukimi+Rounded", "const": "Tsukimi Rounded" }, { "title": "Tulpen One", "markdownDescription": "https://fonts.google.com/specimen/Tulpen+One", "const": "Tulpen One" }, { "title": "Turret Road", "markdownDescription": "https://fonts.google.com/specimen/Turret+Road", "const": "Turret Road" }, { "title": "Twinkle Star", "markdownDescription": "https://fonts.google.com/specimen/Twinkle+Star", "const": "Twinkle Star" }, { "title": "Ubuntu", "markdownDescription": "https://fonts.google.com/specimen/Ubuntu", "const": "Ubuntu" }, { "title": "Ubuntu Condensed", "markdownDescription": "https://fonts.google.com/specimen/Ubuntu+Condensed", "const": "Ubuntu Condensed" }, { "title": "Ubuntu Mono", "markdownDescription": "https://fonts.google.com/specimen/Ubuntu+Mono", "const": "Ubuntu Mono" }, { "title": "Uchen", "markdownDescription": "https://fonts.google.com/specimen/Uchen", "const": "Uchen" }, { "title": "Ultra", "markdownDescription": "https://fonts.google.com/specimen/Ultra", "const": "Ultra" }, { "title": "Unbounded", "markdownDescription": "https://fonts.google.com/specimen/Unbounded", "const": "Unbounded" }, { "title": "Uncial Antiqua", "markdownDescription": "https://fonts.google.com/specimen/Uncial+Antiqua", "const": "Uncial Antiqua" }, { "title": "Underdog", "markdownDescription": "https://fonts.google.com/specimen/Underdog", "const": "Underdog" }, { "title": "Unica One", "markdownDescription": "https://fonts.google.com/specimen/Unica+One", "const": "Unica One" }, { "title": "UnifrakturCook", "markdownDescription": "https://fonts.google.com/specimen/UnifrakturCook", "const": "UnifrakturCook" }, { "title": "UnifrakturMaguntia", "markdownDescription": "https://fonts.google.com/specimen/UnifrakturMaguntia", "const": "UnifrakturMaguntia" }, { "title": "Unkempt", "markdownDescription": "https://fonts.google.com/specimen/Unkempt", "const": "Unkempt" }, { "title": "Unlock", "markdownDescription": "https://fonts.google.com/specimen/Unlock", "const": "Unlock" }, { "title": "Unna", "markdownDescription": "https://fonts.google.com/specimen/Unna", "const": "Unna" }, { "title": "Updock", "markdownDescription": "https://fonts.google.com/specimen/Updock", "const": "Updock" }, { "title": "Urbanist", "markdownDescription": "https://fonts.google.com/specimen/Urbanist", "const": "Urbanist" }, { "title": "VT323", "markdownDescription": "https://fonts.google.com/specimen/VT323", "const": "VT323" }, { "title": "Vampiro One", "markdownDescription": "https://fonts.google.com/specimen/Vampiro+One", "const": "Vampiro One" }, { "title": "Varela", "markdownDescription": "https://fonts.google.com/specimen/Varela", "const": "Varela" }, { "title": "Varela Round", "markdownDescription": "https://fonts.google.com/specimen/Varela+Round", "const": "Varela Round" }, { "title": "Varta", "markdownDescription": "https://fonts.google.com/specimen/Varta", "const": "Varta" }, { "title": "Vast Shadow", "markdownDescription": "https://fonts.google.com/specimen/Vast+Shadow", "const": "Vast Shadow" }, { "title": "Vazirmatn", "markdownDescription": "https://fonts.google.com/specimen/Vazirmatn", "const": "Vazirmatn" }, { "title": "Vesper Libre", "markdownDescription": "https://fonts.google.com/specimen/Vesper+Libre", "const": "Vesper Libre" }, { "title": "Viaoda Libre", "markdownDescription": "https://fonts.google.com/specimen/Viaoda+Libre", "const": "Viaoda Libre" }, { "title": "Vibes", "markdownDescription": "https://fonts.google.com/specimen/Vibes", "const": "Vibes" }, { "title": "Vibur", "markdownDescription": "https://fonts.google.com/specimen/Vibur", "const": "Vibur" }, { "title": "Victor Mono", "markdownDescription": "https://fonts.google.com/specimen/Victor+Mono", "const": "Victor Mono" }, { "title": "Vidaloka", "markdownDescription": "https://fonts.google.com/specimen/Vidaloka", "const": "Vidaloka" }, { "title": "Viga", "markdownDescription": "https://fonts.google.com/specimen/Viga", "const": "Viga" }, { "title": "Vina Sans", "markdownDescription": "https://fonts.google.com/specimen/Vina+Sans", "const": "Vina Sans" }, { "title": "Voces", "markdownDescription": "https://fonts.google.com/specimen/Voces", "const": "Voces" }, { "title": "Volkhov", "markdownDescription": "https://fonts.google.com/specimen/Volkhov", "const": "Volkhov" }, { "title": "Vollkorn", "markdownDescription": "https://fonts.google.com/specimen/Vollkorn", "const": "Vollkorn" }, { "title": "Vollkorn SC", "markdownDescription": "https://fonts.google.com/specimen/Vollkorn+SC", "const": "Vollkorn SC" }, { "title": "Voltaire", "markdownDescription": "https://fonts.google.com/specimen/Voltaire", "const": "Voltaire" }, { "title": "Vujahday Script", "markdownDescription": "https://fonts.google.com/specimen/Vujahday+Script", "const": "Vujahday Script" }, { "title": "Waiting for the Sunrise", "markdownDescription": "https://fonts.google.com/specimen/Waiting+for+the+Sunrise", "const": "Waiting for the Sunrise" }, { "title": "Wallpoet", "markdownDescription": "https://fonts.google.com/specimen/Wallpoet", "const": "Wallpoet" }, { "title": "Walter Turncoat", "markdownDescription": "https://fonts.google.com/specimen/Walter+Turncoat", "const": "Walter Turncoat" }, { "title": "Warnes", "markdownDescription": "https://fonts.google.com/specimen/Warnes", "const": "Warnes" }, { "title": "Water Brush", "markdownDescription": "https://fonts.google.com/specimen/Water+Brush", "const": "Water Brush" }, { "title": "Waterfall", "markdownDescription": "https://fonts.google.com/specimen/Waterfall", "const": "Waterfall" }, { "title": "Wavefont", "markdownDescription": "https://fonts.google.com/specimen/Wavefont", "const": "Wavefont" }, { "title": "Wellfleet", "markdownDescription": "https://fonts.google.com/specimen/Wellfleet", "const": "Wellfleet" }, { "title": "Wendy One", "markdownDescription": "https://fonts.google.com/specimen/Wendy+One", "const": "Wendy One" }, { "title": "Whisper", "markdownDescription": "https://fonts.google.com/specimen/Whisper", "const": "Whisper" }, { "title": "WindSong", "markdownDescription": "https://fonts.google.com/specimen/WindSong", "const": "WindSong" }, { "title": "Wire One", "markdownDescription": "https://fonts.google.com/specimen/Wire+One", "const": "Wire One" }, { "title": "Wix Madefor Display", "markdownDescription": "https://fonts.google.com/specimen/Wix+Madefor+Display", "const": "Wix Madefor Display" }, { "title": "Wix Madefor Text", "markdownDescription": "https://fonts.google.com/specimen/Wix+Madefor+Text", "const": "Wix Madefor Text" }, { "title": "Work Sans", "markdownDescription": "https://fonts.google.com/specimen/Work+Sans", "const": "Work Sans" }, { "title": "Xanh Mono", "markdownDescription": "https://fonts.google.com/specimen/Xanh+Mono", "const": "Xanh Mono" }, { "title": "Yaldevi", "markdownDescription": "https://fonts.google.com/specimen/Yaldevi", "const": "Yaldevi" }, { "title": "Yanone Kaffeesatz", "markdownDescription": "https://fonts.google.com/specimen/Yanone+Kaffeesatz", "const": "Yanone Kaffeesatz" }, { "title": "Yantramanav", "markdownDescription": "https://fonts.google.com/specimen/Yantramanav", "const": "Yantramanav" }, { "title": "Yatra One", "markdownDescription": "https://fonts.google.com/specimen/Yatra+One", "const": "Yatra One" }, { "title": "Yellowtail", "markdownDescription": "https://fonts.google.com/specimen/Yellowtail", "const": "Yellowtail" }, { "title": "Yeon Sung", "markdownDescription": "https://fonts.google.com/specimen/Yeon+Sung", "const": "Yeon Sung" }, { "title": "Yeseva One", "markdownDescription": "https://fonts.google.com/specimen/Yeseva+One", "const": "Yeseva One" }, { "title": "Yesteryear", "markdownDescription": "https://fonts.google.com/specimen/Yesteryear", "const": "Yesteryear" }, { "title": "Yomogi", "markdownDescription": "https://fonts.google.com/specimen/Yomogi", "const": "Yomogi" }, { "title": "Young Serif", "markdownDescription": "https://fonts.google.com/specimen/Young+Serif", "const": "Young Serif" }, { "title": "Yrsa", "markdownDescription": "https://fonts.google.com/specimen/Yrsa", "const": "Yrsa" }, { "title": "Ysabeau", "markdownDescription": "https://fonts.google.com/specimen/Ysabeau", "const": "Ysabeau" }, { "title": "Ysabeau Infant", "markdownDescription": "https://fonts.google.com/specimen/Ysabeau+Infant", "const": "Ysabeau Infant" }, { "title": "Ysabeau Office", "markdownDescription": "https://fonts.google.com/specimen/Ysabeau+Office", "const": "Ysabeau Office" }, { "title": "Ysabeau SC", "markdownDescription": "https://fonts.google.com/specimen/Ysabeau+SC", "const": "Ysabeau SC" }, { "title": "Yuji Boku", "markdownDescription": "https://fonts.google.com/specimen/Yuji+Boku", "const": "Yuji Boku" }, { "title": "Yuji Hentaigana Akari", "markdownDescription": "https://fonts.google.com/specimen/Yuji+Hentaigana+Akari", "const": "Yuji Hentaigana Akari" }, { "title": "Yuji Hentaigana Akebono", "markdownDescription": "https://fonts.google.com/specimen/Yuji+Hentaigana+Akebono", "const": "Yuji Hentaigana Akebono" }, { "title": "Yuji Mai", "markdownDescription": "https://fonts.google.com/specimen/Yuji+Mai", "const": "Yuji Mai" }, { "title": "Yuji Syuku", "markdownDescription": "https://fonts.google.com/specimen/Yuji+Syuku", "const": "Yuji Syuku" }, { "title": "Yusei Magic", "markdownDescription": "https://fonts.google.com/specimen/Yusei+Magic", "const": "Yusei Magic" }, { "title": "ZCOOL KuaiLe", "markdownDescription": "https://fonts.google.com/specimen/ZCOOL+KuaiLe", "const": "ZCOOL KuaiLe" }, { "title": "ZCOOL QingKe HuangYou", "markdownDescription": "https://fonts.google.com/specimen/ZCOOL+QingKe+HuangYou", "const": "ZCOOL QingKe HuangYou" }, { "title": "ZCOOL XiaoWei", "markdownDescription": "https://fonts.google.com/specimen/ZCOOL+XiaoWei", "const": "ZCOOL XiaoWei" }, { "title": "Zen Antique", "markdownDescription": "https://fonts.google.com/specimen/Zen+Antique", "const": "Zen Antique" }, { "title": "Zen Antique Soft", "markdownDescription": "https://fonts.google.com/specimen/Zen+Antique+Soft", "const": "Zen Antique Soft" }, { "title": "Zen Dots", "markdownDescription": "https://fonts.google.com/specimen/Zen+Dots", "const": "Zen Dots" }, { "title": "Zen Kaku Gothic Antique", "markdownDescription": "https://fonts.google.com/specimen/Zen+Kaku+Gothic+Antique", "const": "Zen Kaku Gothic Antique" }, { "title": "Zen Kaku Gothic New", "markdownDescription": "https://fonts.google.com/specimen/Zen+Kaku+Gothic+New", "const": "Zen Kaku Gothic New" }, { "title": "Zen Kurenaido", "markdownDescription": "https://fonts.google.com/specimen/Zen+Kurenaido", "const": "Zen Kurenaido" }, { "title": "Zen Loop", "markdownDescription": "https://fonts.google.com/specimen/Zen+Loop", "const": "Zen Loop" }, { "title": "Zen Maru Gothic", "markdownDescription": "https://fonts.google.com/specimen/Zen+Maru+Gothic", "const": "Zen Maru Gothic" }, { "title": "Zen Old Mincho", "markdownDescription": "https://fonts.google.com/specimen/Zen+Old+Mincho", "const": "Zen Old Mincho" }, { "title": "Zen Tokyo Zoo", "markdownDescription": "https://fonts.google.com/specimen/Zen+Tokyo+Zoo", "const": "Zen Tokyo Zoo" }, { "title": "Zeyada", "markdownDescription": "https://fonts.google.com/specimen/Zeyada", "const": "Zeyada" }, { "title": "Zhi Mang Xing", "markdownDescription": "https://fonts.google.com/specimen/Zhi+Mang+Xing", "const": "Zhi Mang Xing" }, { "title": "Zilla Slab", "markdownDescription": "https://fonts.google.com/specimen/Zilla+Slab", "const": "Zilla Slab" }, { "title": "Zilla Slab Highlight", "markdownDescription": "https://fonts.google.com/specimen/Zilla+Slab+Highlight", "const": "Zilla Slab Highlight" } ] }����������������������������������������������������������mkdocs-material-9.6.4/docs/schema/assets/icons.json�������������������������������������������������0000664�0000000�0000000�00001442150�14753064456�0022333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Icon", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/reference/icons-emojis/#search", "type": "string", "enum": [ "fontawesome/brands/42-group", "fontawesome/brands/500px", "fontawesome/brands/accessible-icon", "fontawesome/brands/accusoft", "fontawesome/brands/adn", "fontawesome/brands/adversal", "fontawesome/brands/affiliatetheme", "fontawesome/brands/airbnb", "fontawesome/brands/algolia", "fontawesome/brands/alipay", "fontawesome/brands/amazon-pay", "fontawesome/brands/amazon", "fontawesome/brands/amilia", "fontawesome/brands/android", "fontawesome/brands/angellist", "fontawesome/brands/angrycreative", "fontawesome/brands/angular", "fontawesome/brands/app-store-ios", "fontawesome/brands/app-store", "fontawesome/brands/apper", "fontawesome/brands/apple-pay", "fontawesome/brands/apple", "fontawesome/brands/artstation", "fontawesome/brands/asymmetrik", "fontawesome/brands/atlassian", "fontawesome/brands/audible", "fontawesome/brands/autoprefixer", "fontawesome/brands/avianex", "fontawesome/brands/aviato", "fontawesome/brands/aws", "fontawesome/brands/bandcamp", "fontawesome/brands/battle-net", "fontawesome/brands/behance", "fontawesome/brands/bilibili", "fontawesome/brands/bimobject", "fontawesome/brands/bitbucket", "fontawesome/brands/bitcoin", "fontawesome/brands/bity", "fontawesome/brands/black-tie", "fontawesome/brands/blackberry", "fontawesome/brands/blogger-b", "fontawesome/brands/blogger", "fontawesome/brands/bluesky", "fontawesome/brands/bluetooth-b", "fontawesome/brands/bluetooth", "fontawesome/brands/bootstrap", "fontawesome/brands/bots", "fontawesome/brands/brave-reverse", "fontawesome/brands/brave", "fontawesome/brands/btc", "fontawesome/brands/buffer", "fontawesome/brands/buromobelexperte", "fontawesome/brands/buy-n-large", "fontawesome/brands/buysellads", "fontawesome/brands/canadian-maple-leaf", "fontawesome/brands/cc-amazon-pay", "fontawesome/brands/cc-amex", "fontawesome/brands/cc-apple-pay", "fontawesome/brands/cc-diners-club", "fontawesome/brands/cc-discover", "fontawesome/brands/cc-jcb", "fontawesome/brands/cc-mastercard", "fontawesome/brands/cc-paypal", "fontawesome/brands/cc-stripe", "fontawesome/brands/cc-visa", "fontawesome/brands/centercode", "fontawesome/brands/centos", "fontawesome/brands/chrome", "fontawesome/brands/chromecast", "fontawesome/brands/cloudflare", "fontawesome/brands/cloudscale", "fontawesome/brands/cloudsmith", "fontawesome/brands/cloudversify", "fontawesome/brands/cmplid", "fontawesome/brands/codepen", "fontawesome/brands/codiepie", "fontawesome/brands/confluence", "fontawesome/brands/connectdevelop", "fontawesome/brands/contao", "fontawesome/brands/cotton-bureau", "fontawesome/brands/cpanel", "fontawesome/brands/creative-commons-by", "fontawesome/brands/creative-commons-nc-eu", "fontawesome/brands/creative-commons-nc-jp", "fontawesome/brands/creative-commons-nc", "fontawesome/brands/creative-commons-nd", "fontawesome/brands/creative-commons-pd-alt", "fontawesome/brands/creative-commons-pd", "fontawesome/brands/creative-commons-remix", "fontawesome/brands/creative-commons-sa", "fontawesome/brands/creative-commons-sampling-plus", "fontawesome/brands/creative-commons-sampling", "fontawesome/brands/creative-commons-share", "fontawesome/brands/creative-commons-zero", "fontawesome/brands/creative-commons", "fontawesome/brands/critical-role", "fontawesome/brands/css", "fontawesome/brands/css3-alt", "fontawesome/brands/css3", "fontawesome/brands/cuttlefish", "fontawesome/brands/d-and-d-beyond", "fontawesome/brands/d-and-d", "fontawesome/brands/dailymotion", "fontawesome/brands/dart-lang", "fontawesome/brands/dashcube", "fontawesome/brands/debian", "fontawesome/brands/deezer", "fontawesome/brands/delicious", "fontawesome/brands/deploydog", "fontawesome/brands/deskpro", "fontawesome/brands/dev", "fontawesome/brands/deviantart", "fontawesome/brands/dhl", "fontawesome/brands/diaspora", "fontawesome/brands/digg", "fontawesome/brands/digital-ocean", "fontawesome/brands/discord", "fontawesome/brands/discourse", "fontawesome/brands/dochub", "fontawesome/brands/docker", "fontawesome/brands/draft2digital", "fontawesome/brands/dribbble", "fontawesome/brands/dropbox", "fontawesome/brands/drupal", "fontawesome/brands/dyalog", "fontawesome/brands/earlybirds", "fontawesome/brands/ebay", "fontawesome/brands/edge-legacy", "fontawesome/brands/edge", "fontawesome/brands/elementor", "fontawesome/brands/ello", "fontawesome/brands/ember", "fontawesome/brands/empire", "fontawesome/brands/envira", "fontawesome/brands/erlang", "fontawesome/brands/ethereum", "fontawesome/brands/etsy", "fontawesome/brands/evernote", "fontawesome/brands/expeditedssl", "fontawesome/brands/facebook-f", "fontawesome/brands/facebook-messenger", "fontawesome/brands/facebook", "fontawesome/brands/fantasy-flight-games", "fontawesome/brands/fedex", "fontawesome/brands/fedora", "fontawesome/brands/figma", "fontawesome/brands/files-pinwheel", "fontawesome/brands/firefox-browser", "fontawesome/brands/firefox", "fontawesome/brands/first-order-alt", "fontawesome/brands/first-order", "fontawesome/brands/firstdraft", "fontawesome/brands/flickr", "fontawesome/brands/flipboard", "fontawesome/brands/flutter", "fontawesome/brands/fly", "fontawesome/brands/font-awesome", "fontawesome/brands/fonticons-fi", "fontawesome/brands/fonticons", "fontawesome/brands/fort-awesome-alt", "fontawesome/brands/fort-awesome", "fontawesome/brands/forumbee", "fontawesome/brands/foursquare", "fontawesome/brands/free-code-camp", "fontawesome/brands/freebsd", "fontawesome/brands/fulcrum", "fontawesome/brands/galactic-republic", "fontawesome/brands/galactic-senate", "fontawesome/brands/get-pocket", "fontawesome/brands/gg-circle", "fontawesome/brands/gg", "fontawesome/brands/git-alt", "fontawesome/brands/git", "fontawesome/brands/github-alt", "fontawesome/brands/github", "fontawesome/brands/gitkraken", "fontawesome/brands/gitlab", "fontawesome/brands/gitter", "fontawesome/brands/glide-g", "fontawesome/brands/glide", "fontawesome/brands/gofore", "fontawesome/brands/golang", "fontawesome/brands/goodreads-g", "fontawesome/brands/goodreads", "fontawesome/brands/google-drive", "fontawesome/brands/google-pay", "fontawesome/brands/google-play", "fontawesome/brands/google-plus-g", "fontawesome/brands/google-plus", "fontawesome/brands/google-scholar", "fontawesome/brands/google-wallet", "fontawesome/brands/google", "fontawesome/brands/gratipay", "fontawesome/brands/grav", "fontawesome/brands/gripfire", "fontawesome/brands/grunt", "fontawesome/brands/guilded", "fontawesome/brands/gulp", "fontawesome/brands/hacker-news", "fontawesome/brands/hackerrank", "fontawesome/brands/hashnode", "fontawesome/brands/hips", "fontawesome/brands/hire-a-helper", "fontawesome/brands/hive", "fontawesome/brands/hooli", "fontawesome/brands/hornbill", "fontawesome/brands/hotjar", "fontawesome/brands/houzz", "fontawesome/brands/html5", "fontawesome/brands/hubspot", "fontawesome/brands/ideal", "fontawesome/brands/imdb", "fontawesome/brands/instagram", "fontawesome/brands/instalod", "fontawesome/brands/intercom", "fontawesome/brands/internet-explorer", "fontawesome/brands/invision", "fontawesome/brands/ioxhost", "fontawesome/brands/itch-io", "fontawesome/brands/itunes-note", "fontawesome/brands/itunes", "fontawesome/brands/java", "fontawesome/brands/jedi-order", "fontawesome/brands/jenkins", "fontawesome/brands/jira", "fontawesome/brands/joget", "fontawesome/brands/joomla", "fontawesome/brands/js", "fontawesome/brands/jsfiddle", "fontawesome/brands/jxl", "fontawesome/brands/kaggle", "fontawesome/brands/keybase", "fontawesome/brands/keycdn", "fontawesome/brands/kickstarter-k", "fontawesome/brands/kickstarter", "fontawesome/brands/korvue", "fontawesome/brands/laravel", "fontawesome/brands/lastfm", "fontawesome/brands/leanpub", "fontawesome/brands/less", "fontawesome/brands/letterboxd", "fontawesome/brands/line", "fontawesome/brands/linkedin-in", "fontawesome/brands/linkedin", "fontawesome/brands/linode", "fontawesome/brands/linux", "fontawesome/brands/lyft", "fontawesome/brands/magento", "fontawesome/brands/mailchimp", "fontawesome/brands/mandalorian", "fontawesome/brands/markdown", "fontawesome/brands/mastodon", "fontawesome/brands/maxcdn", "fontawesome/brands/mdb", "fontawesome/brands/medapps", "fontawesome/brands/medium", "fontawesome/brands/medrt", "fontawesome/brands/meetup", "fontawesome/brands/megaport", "fontawesome/brands/mendeley", "fontawesome/brands/meta", "fontawesome/brands/microblog", "fontawesome/brands/microsoft", "fontawesome/brands/mintbit", "fontawesome/brands/mix", "fontawesome/brands/mixcloud", "fontawesome/brands/mixer", "fontawesome/brands/mizuni", "fontawesome/brands/modx", "fontawesome/brands/monero", "fontawesome/brands/napster", "fontawesome/brands/neos", "fontawesome/brands/nfc-directional", "fontawesome/brands/nfc-symbol", "fontawesome/brands/nimblr", "fontawesome/brands/node-js", "fontawesome/brands/node", "fontawesome/brands/npm", "fontawesome/brands/ns8", "fontawesome/brands/nutritionix", "fontawesome/brands/octopus-deploy", "fontawesome/brands/odnoklassniki", "fontawesome/brands/odysee", "fontawesome/brands/old-republic", "fontawesome/brands/opencart", "fontawesome/brands/openid", "fontawesome/brands/opensuse", "fontawesome/brands/opera", "fontawesome/brands/optin-monster", "fontawesome/brands/orcid", "fontawesome/brands/osi", "fontawesome/brands/padlet", "fontawesome/brands/page4", "fontawesome/brands/pagelines", "fontawesome/brands/palfed", "fontawesome/brands/patreon", "fontawesome/brands/paypal", "fontawesome/brands/perbyte", "fontawesome/brands/periscope", "fontawesome/brands/phabricator", "fontawesome/brands/phoenix-framework", "fontawesome/brands/phoenix-squadron", "fontawesome/brands/php", "fontawesome/brands/pied-piper-alt", "fontawesome/brands/pied-piper-hat", "fontawesome/brands/pied-piper-pp", "fontawesome/brands/pied-piper", "fontawesome/brands/pinterest-p", "fontawesome/brands/pinterest", "fontawesome/brands/pix", "fontawesome/brands/pixiv", "fontawesome/brands/playstation", "fontawesome/brands/product-hunt", "fontawesome/brands/pushed", "fontawesome/brands/python", "fontawesome/brands/qq", "fontawesome/brands/quinscape", "fontawesome/brands/quora", "fontawesome/brands/r-project", "fontawesome/brands/raspberry-pi", "fontawesome/brands/ravelry", "fontawesome/brands/react", "fontawesome/brands/reacteurope", "fontawesome/brands/readme", "fontawesome/brands/rebel", "fontawesome/brands/red-river", "fontawesome/brands/reddit-alien", "fontawesome/brands/reddit", "fontawesome/brands/redhat", "fontawesome/brands/renren", "fontawesome/brands/replyd", "fontawesome/brands/researchgate", "fontawesome/brands/resolving", "fontawesome/brands/rev", "fontawesome/brands/rocketchat", "fontawesome/brands/rockrms", "fontawesome/brands/rust", "fontawesome/brands/safari", "fontawesome/brands/salesforce", "fontawesome/brands/sass", "fontawesome/brands/schlix", "fontawesome/brands/screenpal", "fontawesome/brands/scribd", "fontawesome/brands/searchengin", "fontawesome/brands/sellcast", "fontawesome/brands/sellsy", "fontawesome/brands/servicestack", "fontawesome/brands/shirtsinbulk", "fontawesome/brands/shoelace", "fontawesome/brands/shopify", "fontawesome/brands/shopware", "fontawesome/brands/signal-messenger", "fontawesome/brands/simplybuilt", "fontawesome/brands/sistrix", "fontawesome/brands/sith", "fontawesome/brands/sitrox", "fontawesome/brands/sketch", "fontawesome/brands/skyatlas", "fontawesome/brands/skype", "fontawesome/brands/slack", "fontawesome/brands/slideshare", "fontawesome/brands/snapchat", "fontawesome/brands/soundcloud", "fontawesome/brands/sourcetree", "fontawesome/brands/space-awesome", "fontawesome/brands/speakap", "fontawesome/brands/speaker-deck", "fontawesome/brands/spotify", "fontawesome/brands/square-behance", "fontawesome/brands/square-bluesky", "fontawesome/brands/square-dribbble", "fontawesome/brands/square-facebook", "fontawesome/brands/square-font-awesome-stroke", "fontawesome/brands/square-font-awesome", "fontawesome/brands/square-git", "fontawesome/brands/square-github", "fontawesome/brands/square-gitlab", "fontawesome/brands/square-google-plus", "fontawesome/brands/square-hacker-news", "fontawesome/brands/square-instagram", "fontawesome/brands/square-js", "fontawesome/brands/square-lastfm", "fontawesome/brands/square-letterboxd", "fontawesome/brands/square-odnoklassniki", "fontawesome/brands/square-pied-piper", "fontawesome/brands/square-pinterest", "fontawesome/brands/square-reddit", "fontawesome/brands/square-snapchat", "fontawesome/brands/square-steam", "fontawesome/brands/square-threads", "fontawesome/brands/square-tumblr", "fontawesome/brands/square-twitter", "fontawesome/brands/square-upwork", "fontawesome/brands/square-viadeo", "fontawesome/brands/square-vimeo", "fontawesome/brands/square-web-awesome-stroke", "fontawesome/brands/square-web-awesome", "fontawesome/brands/square-whatsapp", "fontawesome/brands/square-x-twitter", "fontawesome/brands/square-xing", "fontawesome/brands/square-youtube", "fontawesome/brands/squarespace", "fontawesome/brands/stack-exchange", "fontawesome/brands/stack-overflow", "fontawesome/brands/stackpath", "fontawesome/brands/staylinked", "fontawesome/brands/steam-symbol", "fontawesome/brands/steam", "fontawesome/brands/sticker-mule", "fontawesome/brands/strava", "fontawesome/brands/stripe-s", "fontawesome/brands/stripe", "fontawesome/brands/stubber", "fontawesome/brands/studiovinari", "fontawesome/brands/stumbleupon-circle", "fontawesome/brands/stumbleupon", "fontawesome/brands/superpowers", "fontawesome/brands/supple", "fontawesome/brands/suse", "fontawesome/brands/swift", "fontawesome/brands/symfony", "fontawesome/brands/teamspeak", "fontawesome/brands/telegram", "fontawesome/brands/tencent-weibo", "fontawesome/brands/the-red-yeti", "fontawesome/brands/themeco", "fontawesome/brands/themeisle", "fontawesome/brands/think-peaks", "fontawesome/brands/threads", "fontawesome/brands/tiktok", "fontawesome/brands/trade-federation", "fontawesome/brands/trello", "fontawesome/brands/tumblr", "fontawesome/brands/twitch", "fontawesome/brands/twitter", "fontawesome/brands/typo3", "fontawesome/brands/uber", "fontawesome/brands/ubuntu", "fontawesome/brands/uikit", "fontawesome/brands/umbraco", "fontawesome/brands/uncharted", "fontawesome/brands/uniregistry", "fontawesome/brands/unity", "fontawesome/brands/unsplash", "fontawesome/brands/untappd", "fontawesome/brands/ups", "fontawesome/brands/upwork", "fontawesome/brands/usb", "fontawesome/brands/usps", "fontawesome/brands/ussunnah", "fontawesome/brands/vaadin", "fontawesome/brands/viacoin", "fontawesome/brands/viadeo", "fontawesome/brands/viber", "fontawesome/brands/vimeo-v", "fontawesome/brands/vimeo", "fontawesome/brands/vine", "fontawesome/brands/vk", "fontawesome/brands/vnv", "fontawesome/brands/vuejs", "fontawesome/brands/watchman-monitoring", "fontawesome/brands/waze", "fontawesome/brands/web-awesome", "fontawesome/brands/webflow", "fontawesome/brands/weebly", "fontawesome/brands/weibo", "fontawesome/brands/weixin", "fontawesome/brands/whatsapp", "fontawesome/brands/whmcs", "fontawesome/brands/wikipedia-w", "fontawesome/brands/windows", "fontawesome/brands/wirsindhandwerk", "fontawesome/brands/wix", "fontawesome/brands/wizards-of-the-coast", "fontawesome/brands/wodu", "fontawesome/brands/wolf-pack-battalion", "fontawesome/brands/wordpress-simple", "fontawesome/brands/wordpress", "fontawesome/brands/wpbeginner", "fontawesome/brands/wpexplorer", "fontawesome/brands/wpforms", "fontawesome/brands/wpressr", "fontawesome/brands/x-twitter", "fontawesome/brands/xbox", "fontawesome/brands/xing", "fontawesome/brands/y-combinator", "fontawesome/brands/yahoo", "fontawesome/brands/yammer", "fontawesome/brands/yandex-international", "fontawesome/brands/yandex", "fontawesome/brands/yarn", "fontawesome/brands/yelp", "fontawesome/brands/yoast", "fontawesome/brands/youtube", "fontawesome/brands/zhihu", "fontawesome/regular/address-book", "fontawesome/regular/address-card", "fontawesome/regular/bell-slash", "fontawesome/regular/bell", "fontawesome/regular/bookmark", "fontawesome/regular/building", "fontawesome/regular/calendar-check", "fontawesome/regular/calendar-days", "fontawesome/regular/calendar-minus", "fontawesome/regular/calendar-plus", "fontawesome/regular/calendar-xmark", "fontawesome/regular/calendar", "fontawesome/regular/chart-bar", "fontawesome/regular/chess-bishop", "fontawesome/regular/chess-king", "fontawesome/regular/chess-knight", "fontawesome/regular/chess-pawn", "fontawesome/regular/chess-queen", "fontawesome/regular/chess-rook", "fontawesome/regular/circle-check", "fontawesome/regular/circle-dot", "fontawesome/regular/circle-down", "fontawesome/regular/circle-left", "fontawesome/regular/circle-pause", "fontawesome/regular/circle-play", "fontawesome/regular/circle-question", "fontawesome/regular/circle-right", "fontawesome/regular/circle-stop", "fontawesome/regular/circle-up", "fontawesome/regular/circle-user", "fontawesome/regular/circle-xmark", "fontawesome/regular/circle", "fontawesome/regular/clipboard", "fontawesome/regular/clock", "fontawesome/regular/clone", "fontawesome/regular/closed-captioning", "fontawesome/regular/comment-dots", "fontawesome/regular/comment", "fontawesome/regular/comments", "fontawesome/regular/compass", "fontawesome/regular/copy", "fontawesome/regular/copyright", "fontawesome/regular/credit-card", "fontawesome/regular/envelope-open", "fontawesome/regular/envelope", "fontawesome/regular/eye-slash", "fontawesome/regular/eye", "fontawesome/regular/face-angry", "fontawesome/regular/face-dizzy", "fontawesome/regular/face-flushed", "fontawesome/regular/face-frown-open", "fontawesome/regular/face-frown", "fontawesome/regular/face-grimace", "fontawesome/regular/face-grin-beam-sweat", "fontawesome/regular/face-grin-beam", "fontawesome/regular/face-grin-hearts", "fontawesome/regular/face-grin-squint-tears", "fontawesome/regular/face-grin-squint", "fontawesome/regular/face-grin-stars", "fontawesome/regular/face-grin-tears", "fontawesome/regular/face-grin-tongue-squint", "fontawesome/regular/face-grin-tongue-wink", "fontawesome/regular/face-grin-tongue", "fontawesome/regular/face-grin-wide", "fontawesome/regular/face-grin-wink", "fontawesome/regular/face-grin", "fontawesome/regular/face-kiss-beam", "fontawesome/regular/face-kiss-wink-heart", "fontawesome/regular/face-kiss", "fontawesome/regular/face-laugh-beam", "fontawesome/regular/face-laugh-squint", "fontawesome/regular/face-laugh-wink", "fontawesome/regular/face-laugh", "fontawesome/regular/face-meh-blank", "fontawesome/regular/face-meh", "fontawesome/regular/face-rolling-eyes", "fontawesome/regular/face-sad-cry", "fontawesome/regular/face-sad-tear", "fontawesome/regular/face-smile-beam", "fontawesome/regular/face-smile-wink", "fontawesome/regular/face-smile", "fontawesome/regular/face-surprise", "fontawesome/regular/face-tired", "fontawesome/regular/file-audio", "fontawesome/regular/file-code", "fontawesome/regular/file-excel", "fontawesome/regular/file-image", "fontawesome/regular/file-lines", "fontawesome/regular/file-pdf", "fontawesome/regular/file-powerpoint", "fontawesome/regular/file-video", "fontawesome/regular/file-word", "fontawesome/regular/file-zipper", "fontawesome/regular/file", "fontawesome/regular/flag", "fontawesome/regular/floppy-disk", "fontawesome/regular/folder-closed", "fontawesome/regular/folder-open", "fontawesome/regular/folder", "fontawesome/regular/font-awesome", "fontawesome/regular/futbol", "fontawesome/regular/gem", "fontawesome/regular/hand-back-fist", "fontawesome/regular/hand-lizard", "fontawesome/regular/hand-peace", "fontawesome/regular/hand-point-down", "fontawesome/regular/hand-point-left", "fontawesome/regular/hand-point-right", "fontawesome/regular/hand-point-up", "fontawesome/regular/hand-pointer", "fontawesome/regular/hand-scissors", "fontawesome/regular/hand-spock", "fontawesome/regular/hand", "fontawesome/regular/handshake", "fontawesome/regular/hard-drive", "fontawesome/regular/heart", "fontawesome/regular/hospital", "fontawesome/regular/hourglass-half", "fontawesome/regular/hourglass", "fontawesome/regular/id-badge", "fontawesome/regular/id-card", "fontawesome/regular/image", "fontawesome/regular/images", "fontawesome/regular/keyboard", "fontawesome/regular/lemon", "fontawesome/regular/life-ring", "fontawesome/regular/lightbulb", "fontawesome/regular/map", "fontawesome/regular/message", "fontawesome/regular/money-bill-1", "fontawesome/regular/moon", "fontawesome/regular/newspaper", "fontawesome/regular/note-sticky", "fontawesome/regular/object-group", "fontawesome/regular/object-ungroup", "fontawesome/regular/paper-plane", "fontawesome/regular/paste", "fontawesome/regular/pen-to-square", "fontawesome/regular/rectangle-list", "fontawesome/regular/rectangle-xmark", "fontawesome/regular/registered", "fontawesome/regular/share-from-square", "fontawesome/regular/snowflake", "fontawesome/regular/square-caret-down", "fontawesome/regular/square-caret-left", "fontawesome/regular/square-caret-right", "fontawesome/regular/square-caret-up", "fontawesome/regular/square-check", "fontawesome/regular/square-full", "fontawesome/regular/square-minus", "fontawesome/regular/square-plus", "fontawesome/regular/square", "fontawesome/regular/star-half-stroke", "fontawesome/regular/star-half", "fontawesome/regular/star", "fontawesome/regular/sun", "fontawesome/regular/thumbs-down", "fontawesome/regular/thumbs-up", "fontawesome/regular/trash-can", "fontawesome/regular/user", "fontawesome/regular/window-maximize", "fontawesome/regular/window-minimize", "fontawesome/regular/window-restore", "fontawesome/solid/0", "fontawesome/solid/1", "fontawesome/solid/2", "fontawesome/solid/3", "fontawesome/solid/4", "fontawesome/solid/5", "fontawesome/solid/6", "fontawesome/solid/7", "fontawesome/solid/8", "fontawesome/solid/9", "fontawesome/solid/a", "fontawesome/solid/address-book", "fontawesome/solid/address-card", "fontawesome/solid/align-center", "fontawesome/solid/align-justify", "fontawesome/solid/align-left", "fontawesome/solid/align-right", "fontawesome/solid/anchor-circle-check", "fontawesome/solid/anchor-circle-exclamation", "fontawesome/solid/anchor-circle-xmark", "fontawesome/solid/anchor-lock", "fontawesome/solid/anchor", "fontawesome/solid/angle-down", "fontawesome/solid/angle-left", "fontawesome/solid/angle-right", "fontawesome/solid/angle-up", "fontawesome/solid/angles-down", "fontawesome/solid/angles-left", "fontawesome/solid/angles-right", "fontawesome/solid/angles-up", "fontawesome/solid/ankh", "fontawesome/solid/apple-whole", "fontawesome/solid/archway", "fontawesome/solid/arrow-down-1-9", "fontawesome/solid/arrow-down-9-1", "fontawesome/solid/arrow-down-a-z", "fontawesome/solid/arrow-down-long", "fontawesome/solid/arrow-down-short-wide", "fontawesome/solid/arrow-down-up-across-line", "fontawesome/solid/arrow-down-up-lock", "fontawesome/solid/arrow-down-wide-short", "fontawesome/solid/arrow-down-z-a", "fontawesome/solid/arrow-down", "fontawesome/solid/arrow-left-long", "fontawesome/solid/arrow-left", "fontawesome/solid/arrow-pointer", "fontawesome/solid/arrow-right-arrow-left", "fontawesome/solid/arrow-right-from-bracket", "fontawesome/solid/arrow-right-long", "fontawesome/solid/arrow-right-to-bracket", "fontawesome/solid/arrow-right-to-city", "fontawesome/solid/arrow-right", "fontawesome/solid/arrow-rotate-left", "fontawesome/solid/arrow-rotate-right", "fontawesome/solid/arrow-trend-down", "fontawesome/solid/arrow-trend-up", "fontawesome/solid/arrow-turn-down", "fontawesome/solid/arrow-turn-up", "fontawesome/solid/arrow-up-1-9", "fontawesome/solid/arrow-up-9-1", "fontawesome/solid/arrow-up-a-z", "fontawesome/solid/arrow-up-from-bracket", "fontawesome/solid/arrow-up-from-ground-water", "fontawesome/solid/arrow-up-from-water-pump", "fontawesome/solid/arrow-up-long", "fontawesome/solid/arrow-up-right-dots", "fontawesome/solid/arrow-up-right-from-square", "fontawesome/solid/arrow-up-short-wide", "fontawesome/solid/arrow-up-wide-short", "fontawesome/solid/arrow-up-z-a", "fontawesome/solid/arrow-up", "fontawesome/solid/arrows-down-to-line", "fontawesome/solid/arrows-down-to-people", "fontawesome/solid/arrows-left-right-to-line", "fontawesome/solid/arrows-left-right", "fontawesome/solid/arrows-rotate", "fontawesome/solid/arrows-spin", "fontawesome/solid/arrows-split-up-and-left", "fontawesome/solid/arrows-to-circle", "fontawesome/solid/arrows-to-dot", "fontawesome/solid/arrows-to-eye", "fontawesome/solid/arrows-turn-right", "fontawesome/solid/arrows-turn-to-dots", "fontawesome/solid/arrows-up-down-left-right", "fontawesome/solid/arrows-up-down", "fontawesome/solid/arrows-up-to-line", "fontawesome/solid/asterisk", "fontawesome/solid/at", "fontawesome/solid/atom", "fontawesome/solid/audio-description", "fontawesome/solid/austral-sign", "fontawesome/solid/award", "fontawesome/solid/b", "fontawesome/solid/baby-carriage", "fontawesome/solid/baby", "fontawesome/solid/backward-fast", "fontawesome/solid/backward-step", "fontawesome/solid/backward", "fontawesome/solid/bacon", "fontawesome/solid/bacteria", "fontawesome/solid/bacterium", "fontawesome/solid/bag-shopping", "fontawesome/solid/bahai", "fontawesome/solid/baht-sign", "fontawesome/solid/ban-smoking", "fontawesome/solid/ban", "fontawesome/solid/bandage", "fontawesome/solid/bangladeshi-taka-sign", "fontawesome/solid/barcode", "fontawesome/solid/bars-progress", "fontawesome/solid/bars-staggered", "fontawesome/solid/bars", "fontawesome/solid/baseball-bat-ball", "fontawesome/solid/baseball", "fontawesome/solid/basket-shopping", "fontawesome/solid/basketball", "fontawesome/solid/bath", "fontawesome/solid/battery-empty", "fontawesome/solid/battery-full", "fontawesome/solid/battery-half", "fontawesome/solid/battery-quarter", "fontawesome/solid/battery-three-quarters", "fontawesome/solid/bed-pulse", "fontawesome/solid/bed", "fontawesome/solid/beer-mug-empty", "fontawesome/solid/bell-concierge", "fontawesome/solid/bell-slash", "fontawesome/solid/bell", "fontawesome/solid/bezier-curve", "fontawesome/solid/bicycle", "fontawesome/solid/binoculars", "fontawesome/solid/biohazard", "fontawesome/solid/bitcoin-sign", "fontawesome/solid/blender-phone", "fontawesome/solid/blender", "fontawesome/solid/blog", "fontawesome/solid/bold", "fontawesome/solid/bolt-lightning", "fontawesome/solid/bolt", "fontawesome/solid/bomb", "fontawesome/solid/bone", "fontawesome/solid/bong", "fontawesome/solid/book-atlas", "fontawesome/solid/book-bible", "fontawesome/solid/book-bookmark", "fontawesome/solid/book-journal-whills", "fontawesome/solid/book-medical", "fontawesome/solid/book-open-reader", "fontawesome/solid/book-open", "fontawesome/solid/book-quran", "fontawesome/solid/book-skull", "fontawesome/solid/book-tanakh", "fontawesome/solid/book", "fontawesome/solid/bookmark", "fontawesome/solid/border-all", "fontawesome/solid/border-none", "fontawesome/solid/border-top-left", "fontawesome/solid/bore-hole", "fontawesome/solid/bottle-droplet", "fontawesome/solid/bottle-water", "fontawesome/solid/bowl-food", "fontawesome/solid/bowl-rice", "fontawesome/solid/bowling-ball", "fontawesome/solid/box-archive", "fontawesome/solid/box-open", "fontawesome/solid/box-tissue", "fontawesome/solid/box", "fontawesome/solid/boxes-packing", "fontawesome/solid/boxes-stacked", "fontawesome/solid/braille", "fontawesome/solid/brain", "fontawesome/solid/brazilian-real-sign", "fontawesome/solid/bread-slice", "fontawesome/solid/bridge-circle-check", "fontawesome/solid/bridge-circle-exclamation", "fontawesome/solid/bridge-circle-xmark", "fontawesome/solid/bridge-lock", "fontawesome/solid/bridge-water", "fontawesome/solid/bridge", "fontawesome/solid/briefcase-medical", "fontawesome/solid/briefcase", "fontawesome/solid/broom-ball", "fontawesome/solid/broom", "fontawesome/solid/brush", "fontawesome/solid/bucket", "fontawesome/solid/bug-slash", "fontawesome/solid/bug", "fontawesome/solid/bugs", "fontawesome/solid/building-circle-arrow-right", "fontawesome/solid/building-circle-check", "fontawesome/solid/building-circle-exclamation", "fontawesome/solid/building-circle-xmark", "fontawesome/solid/building-columns", "fontawesome/solid/building-flag", "fontawesome/solid/building-lock", "fontawesome/solid/building-ngo", "fontawesome/solid/building-shield", "fontawesome/solid/building-un", "fontawesome/solid/building-user", "fontawesome/solid/building-wheat", "fontawesome/solid/building", "fontawesome/solid/bullhorn", "fontawesome/solid/bullseye", "fontawesome/solid/burger", "fontawesome/solid/burst", "fontawesome/solid/bus-simple", "fontawesome/solid/bus", "fontawesome/solid/business-time", "fontawesome/solid/c", "fontawesome/solid/cable-car", "fontawesome/solid/cake-candles", "fontawesome/solid/calculator", "fontawesome/solid/calendar-check", "fontawesome/solid/calendar-day", "fontawesome/solid/calendar-days", "fontawesome/solid/calendar-minus", "fontawesome/solid/calendar-plus", "fontawesome/solid/calendar-week", "fontawesome/solid/calendar-xmark", "fontawesome/solid/calendar", "fontawesome/solid/camera-retro", "fontawesome/solid/camera-rotate", "fontawesome/solid/camera", "fontawesome/solid/campground", "fontawesome/solid/candy-cane", "fontawesome/solid/cannabis", "fontawesome/solid/capsules", "fontawesome/solid/car-battery", "fontawesome/solid/car-burst", "fontawesome/solid/car-on", "fontawesome/solid/car-rear", "fontawesome/solid/car-side", "fontawesome/solid/car-tunnel", "fontawesome/solid/car", "fontawesome/solid/caravan", "fontawesome/solid/caret-down", "fontawesome/solid/caret-left", "fontawesome/solid/caret-right", "fontawesome/solid/caret-up", "fontawesome/solid/carrot", "fontawesome/solid/cart-arrow-down", "fontawesome/solid/cart-flatbed-suitcase", "fontawesome/solid/cart-flatbed", "fontawesome/solid/cart-plus", "fontawesome/solid/cart-shopping", "fontawesome/solid/cash-register", "fontawesome/solid/cat", "fontawesome/solid/cedi-sign", "fontawesome/solid/cent-sign", "fontawesome/solid/certificate", "fontawesome/solid/chair", "fontawesome/solid/chalkboard-user", "fontawesome/solid/chalkboard", "fontawesome/solid/champagne-glasses", "fontawesome/solid/charging-station", "fontawesome/solid/chart-area", "fontawesome/solid/chart-bar", "fontawesome/solid/chart-column", "fontawesome/solid/chart-diagram", "fontawesome/solid/chart-gantt", "fontawesome/solid/chart-line", "fontawesome/solid/chart-pie", "fontawesome/solid/chart-simple", "fontawesome/solid/check-double", "fontawesome/solid/check-to-slot", "fontawesome/solid/check", "fontawesome/solid/cheese", "fontawesome/solid/chess-bishop", "fontawesome/solid/chess-board", "fontawesome/solid/chess-king", "fontawesome/solid/chess-knight", "fontawesome/solid/chess-pawn", "fontawesome/solid/chess-queen", "fontawesome/solid/chess-rook", "fontawesome/solid/chess", "fontawesome/solid/chevron-down", "fontawesome/solid/chevron-left", "fontawesome/solid/chevron-right", "fontawesome/solid/chevron-up", "fontawesome/solid/child-combatant", "fontawesome/solid/child-dress", "fontawesome/solid/child-reaching", "fontawesome/solid/child", "fontawesome/solid/children", "fontawesome/solid/church", "fontawesome/solid/circle-arrow-down", "fontawesome/solid/circle-arrow-left", "fontawesome/solid/circle-arrow-right", "fontawesome/solid/circle-arrow-up", "fontawesome/solid/circle-check", "fontawesome/solid/circle-chevron-down", "fontawesome/solid/circle-chevron-left", "fontawesome/solid/circle-chevron-right", "fontawesome/solid/circle-chevron-up", "fontawesome/solid/circle-dollar-to-slot", "fontawesome/solid/circle-dot", "fontawesome/solid/circle-down", "fontawesome/solid/circle-exclamation", "fontawesome/solid/circle-h", "fontawesome/solid/circle-half-stroke", "fontawesome/solid/circle-info", "fontawesome/solid/circle-left", "fontawesome/solid/circle-minus", "fontawesome/solid/circle-nodes", "fontawesome/solid/circle-notch", "fontawesome/solid/circle-pause", "fontawesome/solid/circle-play", "fontawesome/solid/circle-plus", "fontawesome/solid/circle-question", "fontawesome/solid/circle-radiation", "fontawesome/solid/circle-right", "fontawesome/solid/circle-stop", "fontawesome/solid/circle-up", "fontawesome/solid/circle-user", "fontawesome/solid/circle-xmark", "fontawesome/solid/circle", "fontawesome/solid/city", "fontawesome/solid/clapperboard", "fontawesome/solid/clipboard-check", "fontawesome/solid/clipboard-list", "fontawesome/solid/clipboard-question", "fontawesome/solid/clipboard-user", "fontawesome/solid/clipboard", "fontawesome/solid/clock-rotate-left", "fontawesome/solid/clock", "fontawesome/solid/clone", "fontawesome/solid/closed-captioning", "fontawesome/solid/cloud-arrow-down", "fontawesome/solid/cloud-arrow-up", "fontawesome/solid/cloud-bolt", "fontawesome/solid/cloud-meatball", "fontawesome/solid/cloud-moon-rain", "fontawesome/solid/cloud-moon", "fontawesome/solid/cloud-rain", "fontawesome/solid/cloud-showers-heavy", "fontawesome/solid/cloud-showers-water", "fontawesome/solid/cloud-sun-rain", "fontawesome/solid/cloud-sun", "fontawesome/solid/cloud", "fontawesome/solid/clover", "fontawesome/solid/code-branch", "fontawesome/solid/code-commit", "fontawesome/solid/code-compare", "fontawesome/solid/code-fork", "fontawesome/solid/code-merge", "fontawesome/solid/code-pull-request", "fontawesome/solid/code", "fontawesome/solid/coins", "fontawesome/solid/colon-sign", "fontawesome/solid/comment-dollar", "fontawesome/solid/comment-dots", "fontawesome/solid/comment-medical", "fontawesome/solid/comment-nodes", "fontawesome/solid/comment-slash", "fontawesome/solid/comment-sms", "fontawesome/solid/comment", "fontawesome/solid/comments-dollar", "fontawesome/solid/comments", "fontawesome/solid/compact-disc", "fontawesome/solid/compass-drafting", "fontawesome/solid/compass", "fontawesome/solid/compress", "fontawesome/solid/computer-mouse", "fontawesome/solid/computer", "fontawesome/solid/cookie-bite", "fontawesome/solid/cookie", "fontawesome/solid/copy", "fontawesome/solid/copyright", "fontawesome/solid/couch", "fontawesome/solid/cow", "fontawesome/solid/credit-card", "fontawesome/solid/crop-simple", "fontawesome/solid/crop", "fontawesome/solid/cross", "fontawesome/solid/crosshairs", "fontawesome/solid/crow", "fontawesome/solid/crown", "fontawesome/solid/crutch", "fontawesome/solid/cruzeiro-sign", "fontawesome/solid/cube", "fontawesome/solid/cubes-stacked", "fontawesome/solid/cubes", "fontawesome/solid/d", "fontawesome/solid/database", "fontawesome/solid/delete-left", "fontawesome/solid/democrat", "fontawesome/solid/desktop", "fontawesome/solid/dharmachakra", "fontawesome/solid/diagram-next", "fontawesome/solid/diagram-predecessor", "fontawesome/solid/diagram-project", "fontawesome/solid/diagram-successor", "fontawesome/solid/diamond-turn-right", "fontawesome/solid/diamond", "fontawesome/solid/dice-d20", "fontawesome/solid/dice-d6", "fontawesome/solid/dice-five", "fontawesome/solid/dice-four", "fontawesome/solid/dice-one", "fontawesome/solid/dice-six", "fontawesome/solid/dice-three", "fontawesome/solid/dice-two", "fontawesome/solid/dice", "fontawesome/solid/disease", "fontawesome/solid/display", "fontawesome/solid/divide", "fontawesome/solid/dna", "fontawesome/solid/dog", "fontawesome/solid/dollar-sign", "fontawesome/solid/dolly", "fontawesome/solid/dong-sign", "fontawesome/solid/door-closed", "fontawesome/solid/door-open", "fontawesome/solid/dove", "fontawesome/solid/down-left-and-up-right-to-center", "fontawesome/solid/down-long", "fontawesome/solid/download", "fontawesome/solid/dragon", "fontawesome/solid/draw-polygon", "fontawesome/solid/droplet-slash", "fontawesome/solid/droplet", "fontawesome/solid/drum-steelpan", "fontawesome/solid/drum", "fontawesome/solid/drumstick-bite", "fontawesome/solid/dumbbell", "fontawesome/solid/dumpster-fire", "fontawesome/solid/dumpster", "fontawesome/solid/dungeon", "fontawesome/solid/e", "fontawesome/solid/ear-deaf", "fontawesome/solid/ear-listen", "fontawesome/solid/earth-africa", "fontawesome/solid/earth-americas", "fontawesome/solid/earth-asia", "fontawesome/solid/earth-europe", "fontawesome/solid/earth-oceania", "fontawesome/solid/egg", "fontawesome/solid/eject", "fontawesome/solid/elevator", "fontawesome/solid/ellipsis-vertical", "fontawesome/solid/ellipsis", "fontawesome/solid/envelope-circle-check", "fontawesome/solid/envelope-open-text", "fontawesome/solid/envelope-open", "fontawesome/solid/envelope", "fontawesome/solid/envelopes-bulk", "fontawesome/solid/equals", "fontawesome/solid/eraser", "fontawesome/solid/ethernet", "fontawesome/solid/euro-sign", "fontawesome/solid/exclamation", "fontawesome/solid/expand", "fontawesome/solid/explosion", "fontawesome/solid/eye-dropper", "fontawesome/solid/eye-low-vision", "fontawesome/solid/eye-slash", "fontawesome/solid/eye", "fontawesome/solid/f", "fontawesome/solid/face-angry", "fontawesome/solid/face-dizzy", "fontawesome/solid/face-flushed", "fontawesome/solid/face-frown-open", "fontawesome/solid/face-frown", "fontawesome/solid/face-grimace", "fontawesome/solid/face-grin-beam-sweat", "fontawesome/solid/face-grin-beam", "fontawesome/solid/face-grin-hearts", "fontawesome/solid/face-grin-squint-tears", "fontawesome/solid/face-grin-squint", "fontawesome/solid/face-grin-stars", "fontawesome/solid/face-grin-tears", "fontawesome/solid/face-grin-tongue-squint", "fontawesome/solid/face-grin-tongue-wink", "fontawesome/solid/face-grin-tongue", "fontawesome/solid/face-grin-wide", "fontawesome/solid/face-grin-wink", "fontawesome/solid/face-grin", "fontawesome/solid/face-kiss-beam", "fontawesome/solid/face-kiss-wink-heart", "fontawesome/solid/face-kiss", "fontawesome/solid/face-laugh-beam", "fontawesome/solid/face-laugh-squint", "fontawesome/solid/face-laugh-wink", "fontawesome/solid/face-laugh", "fontawesome/solid/face-meh-blank", "fontawesome/solid/face-meh", "fontawesome/solid/face-rolling-eyes", "fontawesome/solid/face-sad-cry", "fontawesome/solid/face-sad-tear", "fontawesome/solid/face-smile-beam", "fontawesome/solid/face-smile-wink", "fontawesome/solid/face-smile", "fontawesome/solid/face-surprise", "fontawesome/solid/face-tired", "fontawesome/solid/fan", "fontawesome/solid/faucet-drip", "fontawesome/solid/faucet", "fontawesome/solid/fax", "fontawesome/solid/feather-pointed", "fontawesome/solid/feather", "fontawesome/solid/ferry", "fontawesome/solid/file-arrow-down", "fontawesome/solid/file-arrow-up", "fontawesome/solid/file-audio", "fontawesome/solid/file-circle-check", "fontawesome/solid/file-circle-exclamation", "fontawesome/solid/file-circle-minus", "fontawesome/solid/file-circle-plus", "fontawesome/solid/file-circle-question", "fontawesome/solid/file-circle-xmark", "fontawesome/solid/file-code", "fontawesome/solid/file-contract", "fontawesome/solid/file-csv", "fontawesome/solid/file-excel", "fontawesome/solid/file-export", "fontawesome/solid/file-fragment", "fontawesome/solid/file-half-dashed", "fontawesome/solid/file-image", "fontawesome/solid/file-import", "fontawesome/solid/file-invoice-dollar", "fontawesome/solid/file-invoice", "fontawesome/solid/file-lines", "fontawesome/solid/file-medical", "fontawesome/solid/file-pdf", "fontawesome/solid/file-pen", "fontawesome/solid/file-powerpoint", "fontawesome/solid/file-prescription", "fontawesome/solid/file-shield", "fontawesome/solid/file-signature", "fontawesome/solid/file-video", "fontawesome/solid/file-waveform", "fontawesome/solid/file-word", "fontawesome/solid/file-zipper", "fontawesome/solid/file", "fontawesome/solid/fill-drip", "fontawesome/solid/fill", "fontawesome/solid/film", "fontawesome/solid/filter-circle-dollar", "fontawesome/solid/filter-circle-xmark", "fontawesome/solid/filter", "fontawesome/solid/fingerprint", "fontawesome/solid/fire-burner", "fontawesome/solid/fire-extinguisher", "fontawesome/solid/fire-flame-curved", "fontawesome/solid/fire-flame-simple", "fontawesome/solid/fire", "fontawesome/solid/fish-fins", "fontawesome/solid/fish", "fontawesome/solid/flag-checkered", "fontawesome/solid/flag-usa", "fontawesome/solid/flag", "fontawesome/solid/flask-vial", "fontawesome/solid/flask", "fontawesome/solid/floppy-disk", "fontawesome/solid/florin-sign", "fontawesome/solid/folder-closed", "fontawesome/solid/folder-minus", "fontawesome/solid/folder-open", "fontawesome/solid/folder-plus", "fontawesome/solid/folder-tree", "fontawesome/solid/folder", "fontawesome/solid/font-awesome", "fontawesome/solid/font", "fontawesome/solid/football", "fontawesome/solid/forward-fast", "fontawesome/solid/forward-step", "fontawesome/solid/forward", "fontawesome/solid/franc-sign", "fontawesome/solid/frog", "fontawesome/solid/futbol", "fontawesome/solid/g", "fontawesome/solid/gamepad", "fontawesome/solid/gas-pump", "fontawesome/solid/gauge-high", "fontawesome/solid/gauge-simple-high", "fontawesome/solid/gauge-simple", "fontawesome/solid/gauge", "fontawesome/solid/gavel", "fontawesome/solid/gear", "fontawesome/solid/gears", "fontawesome/solid/gem", "fontawesome/solid/genderless", "fontawesome/solid/ghost", "fontawesome/solid/gift", "fontawesome/solid/gifts", "fontawesome/solid/glass-water-droplet", "fontawesome/solid/glass-water", "fontawesome/solid/glasses", "fontawesome/solid/globe", "fontawesome/solid/golf-ball-tee", "fontawesome/solid/gopuram", "fontawesome/solid/graduation-cap", "fontawesome/solid/greater-than-equal", "fontawesome/solid/greater-than", "fontawesome/solid/grip-lines-vertical", "fontawesome/solid/grip-lines", "fontawesome/solid/grip-vertical", "fontawesome/solid/grip", "fontawesome/solid/group-arrows-rotate", "fontawesome/solid/guarani-sign", "fontawesome/solid/guitar", "fontawesome/solid/gun", "fontawesome/solid/h", "fontawesome/solid/hammer", "fontawesome/solid/hamsa", "fontawesome/solid/hand-back-fist", "fontawesome/solid/hand-dots", "fontawesome/solid/hand-fist", "fontawesome/solid/hand-holding-dollar", "fontawesome/solid/hand-holding-droplet", "fontawesome/solid/hand-holding-hand", "fontawesome/solid/hand-holding-heart", "fontawesome/solid/hand-holding-medical", "fontawesome/solid/hand-holding", "fontawesome/solid/hand-lizard", "fontawesome/solid/hand-middle-finger", "fontawesome/solid/hand-peace", "fontawesome/solid/hand-point-down", "fontawesome/solid/hand-point-left", "fontawesome/solid/hand-point-right", "fontawesome/solid/hand-point-up", "fontawesome/solid/hand-pointer", "fontawesome/solid/hand-scissors", "fontawesome/solid/hand-sparkles", "fontawesome/solid/hand-spock", "fontawesome/solid/hand", "fontawesome/solid/handcuffs", "fontawesome/solid/hands-asl-interpreting", "fontawesome/solid/hands-bound", "fontawesome/solid/hands-bubbles", "fontawesome/solid/hands-clapping", "fontawesome/solid/hands-holding-child", "fontawesome/solid/hands-holding-circle", "fontawesome/solid/hands-holding", "fontawesome/solid/hands-praying", "fontawesome/solid/hands", "fontawesome/solid/handshake-angle", "fontawesome/solid/handshake-simple-slash", "fontawesome/solid/handshake-simple", "fontawesome/solid/handshake-slash", "fontawesome/solid/handshake", "fontawesome/solid/hanukiah", "fontawesome/solid/hard-drive", "fontawesome/solid/hashtag", "fontawesome/solid/hat-cowboy-side", "fontawesome/solid/hat-cowboy", "fontawesome/solid/hat-wizard", "fontawesome/solid/head-side-cough-slash", "fontawesome/solid/head-side-cough", "fontawesome/solid/head-side-mask", "fontawesome/solid/head-side-virus", "fontawesome/solid/heading", "fontawesome/solid/headphones-simple", "fontawesome/solid/headphones", "fontawesome/solid/headset", "fontawesome/solid/heart-circle-bolt", "fontawesome/solid/heart-circle-check", "fontawesome/solid/heart-circle-exclamation", "fontawesome/solid/heart-circle-minus", "fontawesome/solid/heart-circle-plus", "fontawesome/solid/heart-circle-xmark", "fontawesome/solid/heart-crack", "fontawesome/solid/heart-pulse", "fontawesome/solid/heart", "fontawesome/solid/helicopter-symbol", "fontawesome/solid/helicopter", "fontawesome/solid/helmet-safety", "fontawesome/solid/helmet-un", "fontawesome/solid/hexagon-nodes-bolt", "fontawesome/solid/hexagon-nodes", "fontawesome/solid/highlighter", "fontawesome/solid/hill-avalanche", "fontawesome/solid/hill-rockslide", "fontawesome/solid/hippo", "fontawesome/solid/hockey-puck", "fontawesome/solid/holly-berry", "fontawesome/solid/horse-head", "fontawesome/solid/horse", "fontawesome/solid/hospital-user", "fontawesome/solid/hospital", "fontawesome/solid/hot-tub-person", "fontawesome/solid/hotdog", "fontawesome/solid/hotel", "fontawesome/solid/hourglass-end", "fontawesome/solid/hourglass-half", "fontawesome/solid/hourglass-start", "fontawesome/solid/hourglass", "fontawesome/solid/house-chimney-crack", "fontawesome/solid/house-chimney-medical", "fontawesome/solid/house-chimney-user", "fontawesome/solid/house-chimney-window", "fontawesome/solid/house-chimney", "fontawesome/solid/house-circle-check", "fontawesome/solid/house-circle-exclamation", "fontawesome/solid/house-circle-xmark", "fontawesome/solid/house-crack", "fontawesome/solid/house-fire", "fontawesome/solid/house-flag", "fontawesome/solid/house-flood-water-circle-arrow-right", "fontawesome/solid/house-flood-water", "fontawesome/solid/house-laptop", "fontawesome/solid/house-lock", "fontawesome/solid/house-medical-circle-check", "fontawesome/solid/house-medical-circle-exclamation", "fontawesome/solid/house-medical-circle-xmark", "fontawesome/solid/house-medical-flag", "fontawesome/solid/house-medical", "fontawesome/solid/house-signal", "fontawesome/solid/house-tsunami", "fontawesome/solid/house-user", "fontawesome/solid/house", "fontawesome/solid/hryvnia-sign", "fontawesome/solid/hurricane", "fontawesome/solid/i-cursor", "fontawesome/solid/i", "fontawesome/solid/ice-cream", "fontawesome/solid/icicles", "fontawesome/solid/icons", "fontawesome/solid/id-badge", "fontawesome/solid/id-card-clip", "fontawesome/solid/id-card", "fontawesome/solid/igloo", "fontawesome/solid/image-portrait", "fontawesome/solid/image", "fontawesome/solid/images", "fontawesome/solid/inbox", "fontawesome/solid/indent", "fontawesome/solid/indian-rupee-sign", "fontawesome/solid/industry", "fontawesome/solid/infinity", "fontawesome/solid/info", "fontawesome/solid/italic", "fontawesome/solid/j", "fontawesome/solid/jar-wheat", "fontawesome/solid/jar", "fontawesome/solid/jedi", "fontawesome/solid/jet-fighter-up", "fontawesome/solid/jet-fighter", "fontawesome/solid/joint", "fontawesome/solid/jug-detergent", "fontawesome/solid/k", "fontawesome/solid/kaaba", "fontawesome/solid/key", "fontawesome/solid/keyboard", "fontawesome/solid/khanda", "fontawesome/solid/kip-sign", "fontawesome/solid/kit-medical", "fontawesome/solid/kitchen-set", "fontawesome/solid/kiwi-bird", "fontawesome/solid/l", "fontawesome/solid/land-mine-on", "fontawesome/solid/landmark-dome", "fontawesome/solid/landmark-flag", "fontawesome/solid/landmark", "fontawesome/solid/language", "fontawesome/solid/laptop-code", "fontawesome/solid/laptop-file", "fontawesome/solid/laptop-medical", "fontawesome/solid/laptop", "fontawesome/solid/lari-sign", "fontawesome/solid/layer-group", "fontawesome/solid/leaf", "fontawesome/solid/left-long", "fontawesome/solid/left-right", "fontawesome/solid/lemon", "fontawesome/solid/less-than-equal", "fontawesome/solid/less-than", "fontawesome/solid/life-ring", "fontawesome/solid/lightbulb", "fontawesome/solid/lines-leaning", "fontawesome/solid/link-slash", "fontawesome/solid/link", "fontawesome/solid/lira-sign", "fontawesome/solid/list-check", "fontawesome/solid/list-ol", "fontawesome/solid/list-ul", "fontawesome/solid/list", "fontawesome/solid/litecoin-sign", "fontawesome/solid/location-arrow", "fontawesome/solid/location-crosshairs", "fontawesome/solid/location-dot", "fontawesome/solid/location-pin-lock", "fontawesome/solid/location-pin", "fontawesome/solid/lock-open", "fontawesome/solid/lock", "fontawesome/solid/locust", "fontawesome/solid/lungs-virus", "fontawesome/solid/lungs", "fontawesome/solid/m", "fontawesome/solid/magnet", "fontawesome/solid/magnifying-glass-arrow-right", "fontawesome/solid/magnifying-glass-chart", "fontawesome/solid/magnifying-glass-dollar", "fontawesome/solid/magnifying-glass-location", "fontawesome/solid/magnifying-glass-minus", "fontawesome/solid/magnifying-glass-plus", "fontawesome/solid/magnifying-glass", "fontawesome/solid/manat-sign", "fontawesome/solid/map-location-dot", "fontawesome/solid/map-location", "fontawesome/solid/map-pin", "fontawesome/solid/map", "fontawesome/solid/marker", "fontawesome/solid/mars-and-venus-burst", "fontawesome/solid/mars-and-venus", "fontawesome/solid/mars-double", "fontawesome/solid/mars-stroke-right", "fontawesome/solid/mars-stroke-up", "fontawesome/solid/mars-stroke", "fontawesome/solid/mars", "fontawesome/solid/martini-glass-citrus", "fontawesome/solid/martini-glass-empty", "fontawesome/solid/martini-glass", "fontawesome/solid/mask-face", "fontawesome/solid/mask-ventilator", "fontawesome/solid/mask", "fontawesome/solid/masks-theater", "fontawesome/solid/mattress-pillow", "fontawesome/solid/maximize", "fontawesome/solid/medal", "fontawesome/solid/memory", "fontawesome/solid/menorah", "fontawesome/solid/mercury", "fontawesome/solid/message", "fontawesome/solid/meteor", "fontawesome/solid/microchip", "fontawesome/solid/microphone-lines-slash", "fontawesome/solid/microphone-lines", "fontawesome/solid/microphone-slash", "fontawesome/solid/microphone", "fontawesome/solid/microscope", "fontawesome/solid/mill-sign", "fontawesome/solid/minimize", "fontawesome/solid/minus", "fontawesome/solid/mitten", "fontawesome/solid/mobile-button", "fontawesome/solid/mobile-retro", "fontawesome/solid/mobile-screen-button", "fontawesome/solid/mobile-screen", "fontawesome/solid/mobile", "fontawesome/solid/money-bill-1-wave", "fontawesome/solid/money-bill-1", "fontawesome/solid/money-bill-transfer", "fontawesome/solid/money-bill-trend-up", "fontawesome/solid/money-bill-wave", "fontawesome/solid/money-bill-wheat", "fontawesome/solid/money-bill", "fontawesome/solid/money-bills", "fontawesome/solid/money-check-dollar", "fontawesome/solid/money-check", "fontawesome/solid/monument", "fontawesome/solid/moon", "fontawesome/solid/mortar-pestle", "fontawesome/solid/mosque", "fontawesome/solid/mosquito-net", "fontawesome/solid/mosquito", "fontawesome/solid/motorcycle", "fontawesome/solid/mound", "fontawesome/solid/mountain-city", "fontawesome/solid/mountain-sun", "fontawesome/solid/mountain", "fontawesome/solid/mug-hot", "fontawesome/solid/mug-saucer", "fontawesome/solid/music", "fontawesome/solid/n", "fontawesome/solid/naira-sign", "fontawesome/solid/network-wired", "fontawesome/solid/neuter", "fontawesome/solid/newspaper", "fontawesome/solid/not-equal", "fontawesome/solid/notdef", "fontawesome/solid/note-sticky", "fontawesome/solid/notes-medical", "fontawesome/solid/o", "fontawesome/solid/object-group", "fontawesome/solid/object-ungroup", "fontawesome/solid/oil-can", "fontawesome/solid/oil-well", "fontawesome/solid/om", "fontawesome/solid/otter", "fontawesome/solid/outdent", "fontawesome/solid/p", "fontawesome/solid/pager", "fontawesome/solid/paint-roller", "fontawesome/solid/paintbrush", "fontawesome/solid/palette", "fontawesome/solid/pallet", "fontawesome/solid/panorama", "fontawesome/solid/paper-plane", "fontawesome/solid/paperclip", "fontawesome/solid/parachute-box", "fontawesome/solid/paragraph", "fontawesome/solid/passport", "fontawesome/solid/paste", "fontawesome/solid/pause", "fontawesome/solid/paw", "fontawesome/solid/peace", "fontawesome/solid/pen-clip", "fontawesome/solid/pen-fancy", "fontawesome/solid/pen-nib", "fontawesome/solid/pen-ruler", "fontawesome/solid/pen-to-square", "fontawesome/solid/pen", "fontawesome/solid/pencil", "fontawesome/solid/people-arrows", "fontawesome/solid/people-carry-box", "fontawesome/solid/people-group", "fontawesome/solid/people-line", "fontawesome/solid/people-pulling", "fontawesome/solid/people-robbery", "fontawesome/solid/people-roof", "fontawesome/solid/pepper-hot", "fontawesome/solid/percent", "fontawesome/solid/person-arrow-down-to-line", "fontawesome/solid/person-arrow-up-from-line", "fontawesome/solid/person-biking", "fontawesome/solid/person-booth", "fontawesome/solid/person-breastfeeding", "fontawesome/solid/person-burst", "fontawesome/solid/person-cane", "fontawesome/solid/person-chalkboard", "fontawesome/solid/person-circle-check", "fontawesome/solid/person-circle-exclamation", "fontawesome/solid/person-circle-minus", "fontawesome/solid/person-circle-plus", "fontawesome/solid/person-circle-question", "fontawesome/solid/person-circle-xmark", "fontawesome/solid/person-digging", "fontawesome/solid/person-dots-from-line", "fontawesome/solid/person-dress-burst", "fontawesome/solid/person-dress", "fontawesome/solid/person-drowning", "fontawesome/solid/person-falling-burst", "fontawesome/solid/person-falling", "fontawesome/solid/person-half-dress", "fontawesome/solid/person-harassing", "fontawesome/solid/person-hiking", "fontawesome/solid/person-military-pointing", "fontawesome/solid/person-military-rifle", "fontawesome/solid/person-military-to-person", "fontawesome/solid/person-praying", "fontawesome/solid/person-pregnant", "fontawesome/solid/person-rays", "fontawesome/solid/person-rifle", "fontawesome/solid/person-running", "fontawesome/solid/person-shelter", "fontawesome/solid/person-skating", "fontawesome/solid/person-skiing-nordic", "fontawesome/solid/person-skiing", "fontawesome/solid/person-snowboarding", "fontawesome/solid/person-swimming", "fontawesome/solid/person-through-window", "fontawesome/solid/person-walking-arrow-loop-left", "fontawesome/solid/person-walking-arrow-right", "fontawesome/solid/person-walking-dashed-line-arrow-right", "fontawesome/solid/person-walking-luggage", "fontawesome/solid/person-walking-with-cane", "fontawesome/solid/person-walking", "fontawesome/solid/person", "fontawesome/solid/peseta-sign", "fontawesome/solid/peso-sign", "fontawesome/solid/phone-flip", "fontawesome/solid/phone-slash", "fontawesome/solid/phone-volume", "fontawesome/solid/phone", "fontawesome/solid/photo-film", "fontawesome/solid/piggy-bank", "fontawesome/solid/pills", "fontawesome/solid/pizza-slice", "fontawesome/solid/place-of-worship", "fontawesome/solid/plane-arrival", "fontawesome/solid/plane-circle-check", "fontawesome/solid/plane-circle-exclamation", "fontawesome/solid/plane-circle-xmark", "fontawesome/solid/plane-departure", "fontawesome/solid/plane-lock", "fontawesome/solid/plane-slash", "fontawesome/solid/plane-up", "fontawesome/solid/plane", "fontawesome/solid/plant-wilt", "fontawesome/solid/plate-wheat", "fontawesome/solid/play", "fontawesome/solid/plug-circle-bolt", "fontawesome/solid/plug-circle-check", "fontawesome/solid/plug-circle-exclamation", "fontawesome/solid/plug-circle-minus", "fontawesome/solid/plug-circle-plus", "fontawesome/solid/plug-circle-xmark", "fontawesome/solid/plug", "fontawesome/solid/plus-minus", "fontawesome/solid/plus", "fontawesome/solid/podcast", "fontawesome/solid/poo-storm", "fontawesome/solid/poo", "fontawesome/solid/poop", "fontawesome/solid/power-off", "fontawesome/solid/prescription-bottle-medical", "fontawesome/solid/prescription-bottle", "fontawesome/solid/prescription", "fontawesome/solid/print", "fontawesome/solid/pump-medical", "fontawesome/solid/pump-soap", "fontawesome/solid/puzzle-piece", "fontawesome/solid/q", "fontawesome/solid/qrcode", "fontawesome/solid/question", "fontawesome/solid/quote-left", "fontawesome/solid/quote-right", "fontawesome/solid/r", "fontawesome/solid/radiation", "fontawesome/solid/radio", "fontawesome/solid/rainbow", "fontawesome/solid/ranking-star", "fontawesome/solid/receipt", "fontawesome/solid/record-vinyl", "fontawesome/solid/rectangle-ad", "fontawesome/solid/rectangle-list", "fontawesome/solid/rectangle-xmark", "fontawesome/solid/recycle", "fontawesome/solid/registered", "fontawesome/solid/repeat", "fontawesome/solid/reply-all", "fontawesome/solid/reply", "fontawesome/solid/republican", "fontawesome/solid/restroom", "fontawesome/solid/retweet", "fontawesome/solid/ribbon", "fontawesome/solid/right-from-bracket", "fontawesome/solid/right-left", "fontawesome/solid/right-long", "fontawesome/solid/right-to-bracket", "fontawesome/solid/ring", "fontawesome/solid/road-barrier", "fontawesome/solid/road-bridge", "fontawesome/solid/road-circle-check", "fontawesome/solid/road-circle-exclamation", "fontawesome/solid/road-circle-xmark", "fontawesome/solid/road-lock", "fontawesome/solid/road-spikes", "fontawesome/solid/road", "fontawesome/solid/robot", "fontawesome/solid/rocket", "fontawesome/solid/rotate-left", "fontawesome/solid/rotate-right", "fontawesome/solid/rotate", "fontawesome/solid/route", "fontawesome/solid/rss", "fontawesome/solid/ruble-sign", "fontawesome/solid/rug", "fontawesome/solid/ruler-combined", "fontawesome/solid/ruler-horizontal", "fontawesome/solid/ruler-vertical", "fontawesome/solid/ruler", "fontawesome/solid/rupee-sign", "fontawesome/solid/rupiah-sign", "fontawesome/solid/s", "fontawesome/solid/sack-dollar", "fontawesome/solid/sack-xmark", "fontawesome/solid/sailboat", "fontawesome/solid/satellite-dish", "fontawesome/solid/satellite", "fontawesome/solid/scale-balanced", "fontawesome/solid/scale-unbalanced-flip", "fontawesome/solid/scale-unbalanced", "fontawesome/solid/school-circle-check", "fontawesome/solid/school-circle-exclamation", "fontawesome/solid/school-circle-xmark", "fontawesome/solid/school-flag", "fontawesome/solid/school-lock", "fontawesome/solid/school", "fontawesome/solid/scissors", "fontawesome/solid/screwdriver-wrench", "fontawesome/solid/screwdriver", "fontawesome/solid/scroll-torah", "fontawesome/solid/scroll", "fontawesome/solid/sd-card", "fontawesome/solid/section", "fontawesome/solid/seedling", "fontawesome/solid/server", "fontawesome/solid/shapes", "fontawesome/solid/share-from-square", "fontawesome/solid/share-nodes", "fontawesome/solid/share", "fontawesome/solid/sheet-plastic", "fontawesome/solid/shekel-sign", "fontawesome/solid/shield-cat", "fontawesome/solid/shield-dog", "fontawesome/solid/shield-halved", "fontawesome/solid/shield-heart", "fontawesome/solid/shield-virus", "fontawesome/solid/shield", "fontawesome/solid/ship", "fontawesome/solid/shirt", "fontawesome/solid/shoe-prints", "fontawesome/solid/shop-lock", "fontawesome/solid/shop-slash", "fontawesome/solid/shop", "fontawesome/solid/shower", "fontawesome/solid/shrimp", "fontawesome/solid/shuffle", "fontawesome/solid/shuttle-space", "fontawesome/solid/sign-hanging", "fontawesome/solid/signal", "fontawesome/solid/signature", "fontawesome/solid/signs-post", "fontawesome/solid/sim-card", "fontawesome/solid/sink", "fontawesome/solid/sitemap", "fontawesome/solid/skull-crossbones", "fontawesome/solid/skull", "fontawesome/solid/slash", "fontawesome/solid/sleigh", "fontawesome/solid/sliders", "fontawesome/solid/smog", "fontawesome/solid/smoking", "fontawesome/solid/snowflake", "fontawesome/solid/snowman", "fontawesome/solid/snowplow", "fontawesome/solid/soap", "fontawesome/solid/socks", "fontawesome/solid/solar-panel", "fontawesome/solid/sort-down", "fontawesome/solid/sort-up", "fontawesome/solid/sort", "fontawesome/solid/spa", "fontawesome/solid/spaghetti-monster-flying", "fontawesome/solid/spell-check", "fontawesome/solid/spider", "fontawesome/solid/spinner", "fontawesome/solid/splotch", "fontawesome/solid/spoon", "fontawesome/solid/spray-can-sparkles", "fontawesome/solid/spray-can", "fontawesome/solid/square-arrow-up-right", "fontawesome/solid/square-binary", "fontawesome/solid/square-caret-down", "fontawesome/solid/square-caret-left", "fontawesome/solid/square-caret-right", "fontawesome/solid/square-caret-up", "fontawesome/solid/square-check", "fontawesome/solid/square-envelope", "fontawesome/solid/square-full", "fontawesome/solid/square-h", "fontawesome/solid/square-minus", "fontawesome/solid/square-nfi", "fontawesome/solid/square-parking", "fontawesome/solid/square-pen", "fontawesome/solid/square-person-confined", "fontawesome/solid/square-phone-flip", "fontawesome/solid/square-phone", "fontawesome/solid/square-plus", "fontawesome/solid/square-poll-horizontal", "fontawesome/solid/square-poll-vertical", "fontawesome/solid/square-root-variable", "fontawesome/solid/square-rss", "fontawesome/solid/square-share-nodes", "fontawesome/solid/square-up-right", "fontawesome/solid/square-virus", "fontawesome/solid/square-xmark", "fontawesome/solid/square", "fontawesome/solid/staff-snake", "fontawesome/solid/stairs", "fontawesome/solid/stamp", "fontawesome/solid/stapler", "fontawesome/solid/star-and-crescent", "fontawesome/solid/star-half-stroke", "fontawesome/solid/star-half", "fontawesome/solid/star-of-david", "fontawesome/solid/star-of-life", "fontawesome/solid/star", "fontawesome/solid/sterling-sign", "fontawesome/solid/stethoscope", "fontawesome/solid/stop", "fontawesome/solid/stopwatch-20", "fontawesome/solid/stopwatch", "fontawesome/solid/store-slash", "fontawesome/solid/store", "fontawesome/solid/street-view", "fontawesome/solid/strikethrough", "fontawesome/solid/stroopwafel", "fontawesome/solid/subscript", "fontawesome/solid/suitcase-medical", "fontawesome/solid/suitcase-rolling", "fontawesome/solid/suitcase", "fontawesome/solid/sun-plant-wilt", "fontawesome/solid/sun", "fontawesome/solid/superscript", "fontawesome/solid/swatchbook", "fontawesome/solid/synagogue", "fontawesome/solid/syringe", "fontawesome/solid/t", "fontawesome/solid/table-cells-column-lock", "fontawesome/solid/table-cells-large", "fontawesome/solid/table-cells-row-lock", "fontawesome/solid/table-cells-row-unlock", "fontawesome/solid/table-cells", "fontawesome/solid/table-columns", "fontawesome/solid/table-list", "fontawesome/solid/table-tennis-paddle-ball", "fontawesome/solid/table", "fontawesome/solid/tablet-button", "fontawesome/solid/tablet-screen-button", "fontawesome/solid/tablet", "fontawesome/solid/tablets", "fontawesome/solid/tachograph-digital", "fontawesome/solid/tag", "fontawesome/solid/tags", "fontawesome/solid/tape", "fontawesome/solid/tarp-droplet", "fontawesome/solid/tarp", "fontawesome/solid/taxi", "fontawesome/solid/teeth-open", "fontawesome/solid/teeth", "fontawesome/solid/temperature-arrow-down", "fontawesome/solid/temperature-arrow-up", "fontawesome/solid/temperature-empty", "fontawesome/solid/temperature-full", "fontawesome/solid/temperature-half", "fontawesome/solid/temperature-high", "fontawesome/solid/temperature-low", "fontawesome/solid/temperature-quarter", "fontawesome/solid/temperature-three-quarters", "fontawesome/solid/tenge-sign", "fontawesome/solid/tent-arrow-down-to-line", "fontawesome/solid/tent-arrow-left-right", "fontawesome/solid/tent-arrow-turn-left", "fontawesome/solid/tent-arrows-down", "fontawesome/solid/tent", "fontawesome/solid/tents", "fontawesome/solid/terminal", "fontawesome/solid/text-height", "fontawesome/solid/text-slash", "fontawesome/solid/text-width", "fontawesome/solid/thermometer", "fontawesome/solid/thumbs-down", "fontawesome/solid/thumbs-up", "fontawesome/solid/thumbtack-slash", "fontawesome/solid/thumbtack", "fontawesome/solid/ticket-simple", "fontawesome/solid/ticket", "fontawesome/solid/timeline", "fontawesome/solid/toggle-off", "fontawesome/solid/toggle-on", "fontawesome/solid/toilet-paper-slash", "fontawesome/solid/toilet-paper", "fontawesome/solid/toilet-portable", "fontawesome/solid/toilet", "fontawesome/solid/toilets-portable", "fontawesome/solid/toolbox", "fontawesome/solid/tooth", "fontawesome/solid/torii-gate", "fontawesome/solid/tornado", "fontawesome/solid/tower-broadcast", "fontawesome/solid/tower-cell", "fontawesome/solid/tower-observation", "fontawesome/solid/tractor", "fontawesome/solid/trademark", "fontawesome/solid/traffic-light", "fontawesome/solid/trailer", "fontawesome/solid/train-subway", "fontawesome/solid/train-tram", "fontawesome/solid/train", "fontawesome/solid/transgender", "fontawesome/solid/trash-arrow-up", "fontawesome/solid/trash-can-arrow-up", "fontawesome/solid/trash-can", "fontawesome/solid/trash", "fontawesome/solid/tree-city", "fontawesome/solid/tree", "fontawesome/solid/triangle-exclamation", "fontawesome/solid/trophy", "fontawesome/solid/trowel-bricks", "fontawesome/solid/trowel", "fontawesome/solid/truck-arrow-right", "fontawesome/solid/truck-droplet", "fontawesome/solid/truck-fast", "fontawesome/solid/truck-field-un", "fontawesome/solid/truck-field", "fontawesome/solid/truck-front", "fontawesome/solid/truck-medical", "fontawesome/solid/truck-monster", "fontawesome/solid/truck-moving", "fontawesome/solid/truck-pickup", "fontawesome/solid/truck-plane", "fontawesome/solid/truck-ramp-box", "fontawesome/solid/truck", "fontawesome/solid/tty", "fontawesome/solid/turkish-lira-sign", "fontawesome/solid/turn-down", "fontawesome/solid/turn-up", "fontawesome/solid/tv", "fontawesome/solid/u", "fontawesome/solid/umbrella-beach", "fontawesome/solid/umbrella", "fontawesome/solid/underline", "fontawesome/solid/universal-access", "fontawesome/solid/unlock-keyhole", "fontawesome/solid/unlock", "fontawesome/solid/up-down-left-right", "fontawesome/solid/up-down", "fontawesome/solid/up-long", "fontawesome/solid/up-right-and-down-left-from-center", "fontawesome/solid/up-right-from-square", "fontawesome/solid/upload", "fontawesome/solid/user-astronaut", "fontawesome/solid/user-check", "fontawesome/solid/user-clock", "fontawesome/solid/user-doctor", "fontawesome/solid/user-gear", "fontawesome/solid/user-graduate", "fontawesome/solid/user-group", "fontawesome/solid/user-injured", "fontawesome/solid/user-large-slash", "fontawesome/solid/user-large", "fontawesome/solid/user-lock", "fontawesome/solid/user-minus", "fontawesome/solid/user-ninja", "fontawesome/solid/user-nurse", "fontawesome/solid/user-pen", "fontawesome/solid/user-plus", "fontawesome/solid/user-secret", "fontawesome/solid/user-shield", "fontawesome/solid/user-slash", "fontawesome/solid/user-tag", "fontawesome/solid/user-tie", "fontawesome/solid/user-xmark", "fontawesome/solid/user", "fontawesome/solid/users-between-lines", "fontawesome/solid/users-gear", "fontawesome/solid/users-line", "fontawesome/solid/users-rays", "fontawesome/solid/users-rectangle", "fontawesome/solid/users-slash", "fontawesome/solid/users-viewfinder", "fontawesome/solid/users", "fontawesome/solid/utensils", "fontawesome/solid/v", "fontawesome/solid/van-shuttle", "fontawesome/solid/vault", "fontawesome/solid/vector-square", "fontawesome/solid/venus-double", "fontawesome/solid/venus-mars", "fontawesome/solid/venus", "fontawesome/solid/vest-patches", "fontawesome/solid/vest", "fontawesome/solid/vial-circle-check", "fontawesome/solid/vial-virus", "fontawesome/solid/vial", "fontawesome/solid/vials", "fontawesome/solid/video-slash", "fontawesome/solid/video", "fontawesome/solid/vihara", "fontawesome/solid/virus-covid-slash", "fontawesome/solid/virus-covid", "fontawesome/solid/virus-slash", "fontawesome/solid/virus", "fontawesome/solid/viruses", "fontawesome/solid/voicemail", "fontawesome/solid/volcano", "fontawesome/solid/volleyball", "fontawesome/solid/volume-high", "fontawesome/solid/volume-low", "fontawesome/solid/volume-off", "fontawesome/solid/volume-xmark", "fontawesome/solid/vr-cardboard", "fontawesome/solid/w", "fontawesome/solid/walkie-talkie", "fontawesome/solid/wallet", "fontawesome/solid/wand-magic-sparkles", "fontawesome/solid/wand-magic", "fontawesome/solid/wand-sparkles", "fontawesome/solid/warehouse", "fontawesome/solid/water-ladder", "fontawesome/solid/water", "fontawesome/solid/wave-square", "fontawesome/solid/web-awesome", "fontawesome/solid/weight-hanging", "fontawesome/solid/weight-scale", "fontawesome/solid/wheat-awn-circle-exclamation", "fontawesome/solid/wheat-awn", "fontawesome/solid/wheelchair-move", "fontawesome/solid/wheelchair", "fontawesome/solid/whiskey-glass", "fontawesome/solid/wifi", "fontawesome/solid/wind", "fontawesome/solid/window-maximize", "fontawesome/solid/window-minimize", "fontawesome/solid/window-restore", "fontawesome/solid/wine-bottle", "fontawesome/solid/wine-glass-empty", "fontawesome/solid/wine-glass", "fontawesome/solid/won-sign", "fontawesome/solid/worm", "fontawesome/solid/wrench", "fontawesome/solid/x-ray", "fontawesome/solid/x", "fontawesome/solid/xmark", "fontawesome/solid/xmarks-lines", "fontawesome/solid/y", "fontawesome/solid/yen-sign", "fontawesome/solid/yin-yang", "fontawesome/solid/z", "logo-monochrome", "logo", "material/ab-testing", "material/abacus", "material/abjad-arabic", "material/abjad-hebrew", "material/abugida-devanagari", "material/abugida-thai", "material/access-point-check", "material/access-point-minus", "material/access-point-network-off", "material/access-point-network", "material/access-point-off", "material/access-point-plus", "material/access-point-remove", "material/access-point", "material/account-alert-outline", "material/account-alert", "material/account-arrow-down-outline", "material/account-arrow-down", "material/account-arrow-left-outline", "material/account-arrow-left", "material/account-arrow-right-outline", "material/account-arrow-right", "material/account-arrow-up-outline", "material/account-arrow-up", "material/account-badge-outline", "material/account-badge", "material/account-box-edit-outline", "material/account-box-minus-outline", "material/account-box-multiple-outline", "material/account-box-multiple", "material/account-box-outline", "material/account-box-plus-outline", "material/account-box", "material/account-cancel-outline", "material/account-cancel", "material/account-card-outline", "material/account-card", "material/account-cash-outline", "material/account-cash", "material/account-check-outline", "material/account-check", "material/account-child-circle", "material/account-child-outline", "material/account-child", "material/account-circle-outline", "material/account-circle", "material/account-clock-outline", "material/account-clock", "material/account-cog-outline", "material/account-cog", "material/account-convert-outline", "material/account-convert", "material/account-cowboy-hat-outline", "material/account-cowboy-hat", "material/account-credit-card-outline", "material/account-credit-card", "material/account-details-outline", "material/account-details", "material/account-edit-outline", "material/account-edit", "material/account-eye-outline", "material/account-eye", "material/account-file-outline", "material/account-file-text-outline", "material/account-file-text", "material/account-file", "material/account-filter-outline", "material/account-filter", "material/account-group-outline", "material/account-group", "material/account-hard-hat-outline", "material/account-hard-hat", "material/account-heart-outline", "material/account-heart", "material/account-injury-outline", "material/account-injury", "material/account-key-outline", "material/account-key", "material/account-lock-open-outline", "material/account-lock-open", "material/account-lock-outline", "material/account-lock", "material/account-minus-outline", "material/account-minus", "material/account-multiple-check-outline", "material/account-multiple-check", "material/account-multiple-minus-outline", "material/account-multiple-minus", "material/account-multiple-outline", "material/account-multiple-plus-outline", "material/account-multiple-plus", "material/account-multiple-remove-outline", "material/account-multiple-remove", "material/account-multiple", "material/account-music-outline", "material/account-music", "material/account-network-off-outline", "material/account-network-off", "material/account-network-outline", "material/account-network", "material/account-off-outline", "material/account-off", "material/account-outline", "material/account-plus-outline", "material/account-plus", "material/account-question-outline", "material/account-question", "material/account-reactivate-outline", "material/account-reactivate", "material/account-remove-outline", "material/account-remove", "material/account-school-outline", "material/account-school", "material/account-search-outline", "material/account-search", "material/account-settings-outline", "material/account-settings", "material/account-star-outline", "material/account-star", "material/account-supervisor-circle-outline", "material/account-supervisor-circle", "material/account-supervisor-outline", "material/account-supervisor", "material/account-switch-outline", "material/account-switch", "material/account-sync-outline", "material/account-sync", "material/account-tag-outline", "material/account-tag", "material/account-tie-hat-outline", "material/account-tie-hat", "material/account-tie-outline", "material/account-tie-voice-off-outline", "material/account-tie-voice-off", "material/account-tie-voice-outline", "material/account-tie-voice", "material/account-tie-woman", "material/account-tie", "material/account-voice-off", "material/account-voice", "material/account-wrench-outline", "material/account-wrench", "material/account", "material/adjust", "material/advertisements-off", "material/advertisements", "material/air-conditioner", "material/air-filter", "material/air-horn", "material/air-humidifier-off", "material/air-humidifier", "material/air-purifier-off", "material/air-purifier", "material/airbag", "material/airballoon-outline", "material/airballoon", "material/airplane-alert", "material/airplane-check", "material/airplane-clock", "material/airplane-cog", "material/airplane-edit", "material/airplane-landing", "material/airplane-marker", "material/airplane-minus", "material/airplane-off", "material/airplane-plus", "material/airplane-remove", "material/airplane-search", "material/airplane-settings", "material/airplane-takeoff", "material/airplane", "material/airport", "material/alarm-bell", "material/alarm-check", "material/alarm-light-off-outline", "material/alarm-light-off", "material/alarm-light-outline", "material/alarm-light", "material/alarm-multiple", "material/alarm-note-off", "material/alarm-note", "material/alarm-off", "material/alarm-panel-outline", "material/alarm-panel", "material/alarm-plus", "material/alarm-snooze", "material/alarm", "material/album", "material/alert-box-outline", "material/alert-box", "material/alert-circle-check-outline", "material/alert-circle-check", "material/alert-circle-outline", "material/alert-circle", "material/alert-decagram-outline", "material/alert-decagram", "material/alert-minus-outline", "material/alert-minus", "material/alert-octagon-outline", "material/alert-octagon", "material/alert-octagram-outline", "material/alert-octagram", "material/alert-outline", "material/alert-plus-outline", "material/alert-plus", "material/alert-remove-outline", "material/alert-remove", "material/alert-rhombus-outline", "material/alert-rhombus", "material/alert", "material/alien-outline", "material/alien", "material/align-horizontal-center", "material/align-horizontal-distribute", "material/align-horizontal-left", "material/align-horizontal-right", "material/align-vertical-bottom", "material/align-vertical-center", "material/align-vertical-distribute", "material/align-vertical-top", "material/all-inclusive-box-outline", "material/all-inclusive-box", "material/all-inclusive", "material/allergy", "material/alpha-a-box-outline", "material/alpha-a-box", "material/alpha-a-circle-outline", "material/alpha-a-circle", "material/alpha-a", "material/alpha-b-box-outline", "material/alpha-b-box", "material/alpha-b-circle-outline", "material/alpha-b-circle", "material/alpha-b", "material/alpha-c-box-outline", "material/alpha-c-box", "material/alpha-c-circle-outline", "material/alpha-c-circle", "material/alpha-c", "material/alpha-d-box-outline", "material/alpha-d-box", "material/alpha-d-circle-outline", "material/alpha-d-circle", "material/alpha-d", "material/alpha-e-box-outline", "material/alpha-e-box", "material/alpha-e-circle-outline", "material/alpha-e-circle", "material/alpha-e", "material/alpha-f-box-outline", "material/alpha-f-box", "material/alpha-f-circle-outline", "material/alpha-f-circle", "material/alpha-f", "material/alpha-g-box-outline", "material/alpha-g-box", "material/alpha-g-circle-outline", "material/alpha-g-circle", "material/alpha-g", "material/alpha-h-box-outline", "material/alpha-h-box", "material/alpha-h-circle-outline", "material/alpha-h-circle", "material/alpha-h", "material/alpha-i-box-outline", "material/alpha-i-box", "material/alpha-i-circle-outline", "material/alpha-i-circle", "material/alpha-i", "material/alpha-j-box-outline", "material/alpha-j-box", "material/alpha-j-circle-outline", "material/alpha-j-circle", "material/alpha-j", "material/alpha-k-box-outline", "material/alpha-k-box", "material/alpha-k-circle-outline", "material/alpha-k-circle", "material/alpha-k", "material/alpha-l-box-outline", "material/alpha-l-box", "material/alpha-l-circle-outline", "material/alpha-l-circle", "material/alpha-l", "material/alpha-m-box-outline", "material/alpha-m-box", "material/alpha-m-circle-outline", "material/alpha-m-circle", "material/alpha-m", "material/alpha-n-box-outline", "material/alpha-n-box", "material/alpha-n-circle-outline", "material/alpha-n-circle", "material/alpha-n", "material/alpha-o-box-outline", "material/alpha-o-box", "material/alpha-o-circle-outline", "material/alpha-o-circle", "material/alpha-o", "material/alpha-p-box-outline", "material/alpha-p-box", "material/alpha-p-circle-outline", "material/alpha-p-circle", "material/alpha-p", "material/alpha-q-box-outline", "material/alpha-q-box", "material/alpha-q-circle-outline", "material/alpha-q-circle", "material/alpha-q", "material/alpha-r-box-outline", "material/alpha-r-box", "material/alpha-r-circle-outline", "material/alpha-r-circle", "material/alpha-r", "material/alpha-s-box-outline", "material/alpha-s-box", "material/alpha-s-circle-outline", "material/alpha-s-circle", "material/alpha-s", "material/alpha-t-box-outline", "material/alpha-t-box", "material/alpha-t-circle-outline", "material/alpha-t-circle", "material/alpha-t", "material/alpha-u-box-outline", "material/alpha-u-box", "material/alpha-u-circle-outline", "material/alpha-u-circle", "material/alpha-u", "material/alpha-v-box-outline", "material/alpha-v-box", "material/alpha-v-circle-outline", "material/alpha-v-circle", "material/alpha-v", "material/alpha-w-box-outline", "material/alpha-w-box", "material/alpha-w-circle-outline", "material/alpha-w-circle", "material/alpha-w", "material/alpha-x-box-outline", "material/alpha-x-box", "material/alpha-x-circle-outline", "material/alpha-x-circle", "material/alpha-x", "material/alpha-y-box-outline", "material/alpha-y-box", "material/alpha-y-circle-outline", "material/alpha-y-circle", "material/alpha-y", "material/alpha-z-box-outline", "material/alpha-z-box", "material/alpha-z-circle-outline", "material/alpha-z-circle", "material/alpha-z", "material/alpha", "material/alphabet-aurebesh", "material/alphabet-cyrillic", "material/alphabet-greek", "material/alphabet-latin", "material/alphabet-piqad", "material/alphabet-tengwar", "material/alphabetical-off", "material/alphabetical-variant-off", "material/alphabetical-variant", "material/alphabetical", "material/altimeter", "material/ambulance", "material/ammunition", "material/ampersand", "material/amplifier-off", "material/amplifier", "material/anchor", "material/android-studio", "material/android", "material/angle-acute", "material/angle-obtuse", "material/angle-right", "material/angular", "material/angularjs", "material/animation-outline", "material/animation-play-outline", "material/animation-play", "material/animation", "material/ansible", "material/antenna", "material/anvil", "material/apache-kafka", "material/api-off", "material/api", "material/apple-finder", "material/apple-icloud", "material/apple-ios", "material/apple-keyboard-caps", "material/apple-keyboard-command", "material/apple-keyboard-control", "material/apple-keyboard-option", "material/apple-keyboard-shift", "material/apple-safari", "material/apple", "material/application-array-outline", "material/application-array", "material/application-braces-outline", "material/application-braces", "material/application-brackets-outline", "material/application-brackets", "material/application-cog-outline", "material/application-cog", "material/application-edit-outline", "material/application-edit", "material/application-export", "material/application-import", "material/application-outline", "material/application-parentheses-outline", "material/application-parentheses", "material/application-settings-outline", "material/application-settings", "material/application-variable-outline", "material/application-variable", "material/application", "material/approximately-equal-box", "material/approximately-equal", "material/apps-box", "material/apps", "material/arch", "material/archive-alert-outline", "material/archive-alert", "material/archive-arrow-down-outline", "material/archive-arrow-down", "material/archive-arrow-up-outline", "material/archive-arrow-up", "material/archive-cancel-outline", "material/archive-cancel", "material/archive-check-outline", "material/archive-check", "material/archive-clock-outline", "material/archive-clock", "material/archive-cog-outline", "material/archive-cog", "material/archive-edit-outline", "material/archive-edit", "material/archive-eye-outline", "material/archive-eye", "material/archive-lock-open-outline", "material/archive-lock-open", "material/archive-lock-outline", "material/archive-lock", "material/archive-marker-outline", "material/archive-marker", "material/archive-minus-outline", "material/archive-minus", "material/archive-music-outline", "material/archive-music", "material/archive-off-outline", "material/archive-off", "material/archive-outline", "material/archive-plus-outline", "material/archive-plus", "material/archive-refresh-outline", "material/archive-refresh", "material/archive-remove-outline", "material/archive-remove", "material/archive-search-outline", "material/archive-search", "material/archive-settings-outline", "material/archive-settings", "material/archive-star-outline", "material/archive-star", "material/archive-sync-outline", "material/archive-sync", "material/archive", "material/arm-flex-outline", "material/arm-flex", "material/arrange-bring-forward", "material/arrange-bring-to-front", "material/arrange-send-backward", "material/arrange-send-to-back", "material/arrow-all", "material/arrow-bottom-left-bold-box-outline", "material/arrow-bottom-left-bold-box", "material/arrow-bottom-left-bold-outline", "material/arrow-bottom-left-thick", "material/arrow-bottom-left-thin-circle-outline", "material/arrow-bottom-left-thin", "material/arrow-bottom-left", "material/arrow-bottom-right-bold-box-outline", "material/arrow-bottom-right-bold-box", "material/arrow-bottom-right-bold-outline", "material/arrow-bottom-right-thick", "material/arrow-bottom-right-thin-circle-outline", "material/arrow-bottom-right-thin", "material/arrow-bottom-right", "material/arrow-collapse-all", "material/arrow-collapse-down", "material/arrow-collapse-horizontal", "material/arrow-collapse-left", "material/arrow-collapse-right", "material/arrow-collapse-up", "material/arrow-collapse-vertical", "material/arrow-collapse", "material/arrow-decision-auto-outline", "material/arrow-decision-auto", "material/arrow-decision-outline", "material/arrow-decision", "material/arrow-down-bold-box-outline", "material/arrow-down-bold-box", "material/arrow-down-bold-circle-outline", "material/arrow-down-bold-circle", "material/arrow-down-bold-hexagon-outline", "material/arrow-down-bold-outline", "material/arrow-down-bold", "material/arrow-down-box", "material/arrow-down-circle-outline", "material/arrow-down-circle", "material/arrow-down-drop-circle-outline", "material/arrow-down-drop-circle", "material/arrow-down-left-bold", "material/arrow-down-left", "material/arrow-down-right-bold", "material/arrow-down-right", "material/arrow-down-thick", "material/arrow-down-thin-circle-outline", "material/arrow-down-thin", "material/arrow-down", "material/arrow-expand-all", "material/arrow-expand-down", "material/arrow-expand-horizontal", "material/arrow-expand-left", "material/arrow-expand-right", "material/arrow-expand-up", "material/arrow-expand-vertical", "material/arrow-expand", "material/arrow-horizontal-lock", "material/arrow-left-bold-box-outline", "material/arrow-left-bold-box", "material/arrow-left-bold-circle-outline", "material/arrow-left-bold-circle", "material/arrow-left-bold-hexagon-outline", "material/arrow-left-bold-outline", "material/arrow-left-bold", "material/arrow-left-bottom-bold", "material/arrow-left-bottom", "material/arrow-left-box", "material/arrow-left-circle-outline", "material/arrow-left-circle", "material/arrow-left-drop-circle-outline", "material/arrow-left-drop-circle", "material/arrow-left-right-bold-outline", "material/arrow-left-right-bold", "material/arrow-left-right", "material/arrow-left-thick", "material/arrow-left-thin-circle-outline", "material/arrow-left-thin", "material/arrow-left-top-bold", "material/arrow-left-top", "material/arrow-left", "material/arrow-oscillating-off", "material/arrow-oscillating", "material/arrow-projectile-multiple", "material/arrow-projectile", "material/arrow-right-bold-box-outline", "material/arrow-right-bold-box", "material/arrow-right-bold-circle-outline", "material/arrow-right-bold-circle", "material/arrow-right-bold-hexagon-outline", "material/arrow-right-bold-outline", "material/arrow-right-bold", "material/arrow-right-bottom-bold", "material/arrow-right-bottom", "material/arrow-right-box", "material/arrow-right-circle-outline", "material/arrow-right-circle", "material/arrow-right-drop-circle-outline", "material/arrow-right-drop-circle", "material/arrow-right-thick", "material/arrow-right-thin-circle-outline", "material/arrow-right-thin", "material/arrow-right-top-bold", "material/arrow-right-top", "material/arrow-right", "material/arrow-split-horizontal", "material/arrow-split-vertical", "material/arrow-top-left-bold-box-outline", "material/arrow-top-left-bold-box", "material/arrow-top-left-bold-outline", "material/arrow-top-left-bottom-right-bold", "material/arrow-top-left-bottom-right", "material/arrow-top-left-thick", "material/arrow-top-left-thin-circle-outline", "material/arrow-top-left-thin", "material/arrow-top-left", "material/arrow-top-right-bold-box-outline", "material/arrow-top-right-bold-box", "material/arrow-top-right-bold-outline", "material/arrow-top-right-bottom-left-bold", "material/arrow-top-right-bottom-left", "material/arrow-top-right-thick", "material/arrow-top-right-thin-circle-outline", "material/arrow-top-right-thin", "material/arrow-top-right", "material/arrow-u-down-left-bold", "material/arrow-u-down-left", "material/arrow-u-down-right-bold", "material/arrow-u-down-right", "material/arrow-u-left-bottom-bold", "material/arrow-u-left-bottom", "material/arrow-u-left-top-bold", "material/arrow-u-left-top", "material/arrow-u-right-bottom-bold", "material/arrow-u-right-bottom", "material/arrow-u-right-top-bold", "material/arrow-u-right-top", "material/arrow-u-up-left-bold", "material/arrow-u-up-left", "material/arrow-u-up-right-bold", "material/arrow-u-up-right", "material/arrow-up-bold-box-outline", "material/arrow-up-bold-box", "material/arrow-up-bold-circle-outline", "material/arrow-up-bold-circle", "material/arrow-up-bold-hexagon-outline", "material/arrow-up-bold-outline", "material/arrow-up-bold", "material/arrow-up-box", "material/arrow-up-circle-outline", "material/arrow-up-circle", "material/arrow-up-down-bold-outline", "material/arrow-up-down-bold", "material/arrow-up-down", "material/arrow-up-drop-circle-outline", "material/arrow-up-drop-circle", "material/arrow-up-left-bold", "material/arrow-up-left", "material/arrow-up-right-bold", "material/arrow-up-right", "material/arrow-up-thick", "material/arrow-up-thin-circle-outline", "material/arrow-up-thin", "material/arrow-up", "material/arrow-vertical-lock", "material/artboard", "material/artstation", "material/aspect-ratio", "material/assistant", "material/asterisk-circle-outline", "material/asterisk", "material/at", "material/atlassian", "material/atm", "material/atom-variant", "material/atom", "material/attachment-check", "material/attachment-lock", "material/attachment-minus", "material/attachment-off", "material/attachment-plus", "material/attachment-remove", "material/attachment", "material/atv", "material/audio-input-rca", "material/audio-input-stereo-minijack", "material/audio-input-xlr", "material/audio-video-off", "material/audio-video", "material/augmented-reality", "material/aurora", "material/auto-download", "material/auto-fix", "material/auto-mode", "material/auto-upload", "material/autorenew-off", "material/autorenew", "material/av-timer", "material/awning-outline", "material/awning", "material/aws", "material/axe-battle", "material/axe", "material/axis-arrow-info", "material/axis-arrow-lock", "material/axis-arrow", "material/axis-lock", "material/axis-x-arrow-lock", "material/axis-x-arrow", "material/axis-x-rotate-clockwise", "material/axis-x-rotate-counterclockwise", "material/axis-x-y-arrow-lock", "material/axis-y-arrow-lock", "material/axis-y-arrow", "material/axis-y-rotate-clockwise", "material/axis-y-rotate-counterclockwise", "material/axis-z-arrow-lock", "material/axis-z-arrow", "material/axis-z-rotate-clockwise", "material/axis-z-rotate-counterclockwise", "material/axis", "material/babel", "material/baby-bottle-outline", "material/baby-bottle", "material/baby-buggy-off", "material/baby-buggy", "material/baby-carriage-off", "material/baby-carriage", "material/baby-face-outline", "material/baby-face", "material/baby", "material/backburger", "material/backspace-outline", "material/backspace-reverse-outline", "material/backspace-reverse", "material/backspace", "material/backup-restore", "material/bacteria-outline", "material/bacteria", "material/badge-account-alert-outline", "material/badge-account-alert", "material/badge-account-horizontal-outline", "material/badge-account-horizontal", "material/badge-account-outline", "material/badge-account", "material/badminton", "material/bag-carry-on-check", "material/bag-carry-on-off", "material/bag-carry-on", "material/bag-checked", "material/bag-personal-off-outline", "material/bag-personal-off", "material/bag-personal-outline", "material/bag-personal-plus-outline", "material/bag-personal-plus", "material/bag-personal-tag-outline", "material/bag-personal-tag", "material/bag-personal", "material/bag-suitcase-off-outline", "material/bag-suitcase-off", "material/bag-suitcase-outline", "material/bag-suitcase", "material/baguette", "material/balcony", "material/balloon", "material/ballot-outline", "material/ballot-recount-outline", "material/ballot-recount", "material/ballot", "material/bandage", "material/bank-check", "material/bank-circle-outline", "material/bank-circle", "material/bank-minus", "material/bank-off-outline", "material/bank-off", "material/bank-outline", "material/bank-plus", "material/bank-remove", "material/bank-transfer-in", "material/bank-transfer-out", "material/bank-transfer", "material/bank", "material/barcode-off", "material/barcode-scan", "material/barcode", "material/barley-off", "material/barley", "material/barn", "material/barrel-outline", "material/barrel", "material/baseball-bat", "material/baseball-diamond-outline", "material/baseball-diamond", "material/baseball-outline", "material/baseball", "material/bash", "material/basket-check-outline", "material/basket-check", "material/basket-fill", "material/basket-minus-outline", "material/basket-minus", "material/basket-off-outline", "material/basket-off", "material/basket-outline", "material/basket-plus-outline", "material/basket-plus", "material/basket-remove-outline", "material/basket-remove", "material/basket-unfill", "material/basket", "material/basketball-hoop-outline", "material/basketball-hoop", "material/basketball", "material/bat", "material/bathtub-outline", "material/bathtub", "material/battery-10-bluetooth", "material/battery-10", "material/battery-20-bluetooth", "material/battery-20", "material/battery-30-bluetooth", "material/battery-30", "material/battery-40-bluetooth", "material/battery-40", "material/battery-50-bluetooth", "material/battery-50", "material/battery-60-bluetooth", "material/battery-60", "material/battery-70-bluetooth", "material/battery-70", "material/battery-80-bluetooth", "material/battery-80", "material/battery-90-bluetooth", "material/battery-90", "material/battery-alert-bluetooth", "material/battery-alert-variant-outline", "material/battery-alert-variant", "material/battery-alert", "material/battery-arrow-down-outline", "material/battery-arrow-down", "material/battery-arrow-up-outline", "material/battery-arrow-up", "material/battery-bluetooth-variant", "material/battery-bluetooth", "material/battery-charging-10", "material/battery-charging-100", "material/battery-charging-20", "material/battery-charging-30", "material/battery-charging-40", "material/battery-charging-50", "material/battery-charging-60", "material/battery-charging-70", "material/battery-charging-80", "material/battery-charging-90", "material/battery-charging-high", "material/battery-charging-low", "material/battery-charging-medium", "material/battery-charging-outline", "material/battery-charging-wireless-10", "material/battery-charging-wireless-20", "material/battery-charging-wireless-30", "material/battery-charging-wireless-40", "material/battery-charging-wireless-50", "material/battery-charging-wireless-60", "material/battery-charging-wireless-70", "material/battery-charging-wireless-80", "material/battery-charging-wireless-90", "material/battery-charging-wireless-alert", "material/battery-charging-wireless-outline", "material/battery-charging-wireless", "material/battery-charging", "material/battery-check-outline", "material/battery-check", "material/battery-clock-outline", "material/battery-clock", "material/battery-heart-outline", "material/battery-heart-variant", "material/battery-heart", "material/battery-high", "material/battery-lock-open", "material/battery-lock", "material/battery-low", "material/battery-medium", "material/battery-minus-outline", "material/battery-minus-variant", "material/battery-minus", "material/battery-negative", "material/battery-off-outline", "material/battery-off", "material/battery-outline", "material/battery-plus-outline", "material/battery-plus-variant", "material/battery-plus", "material/battery-positive", "material/battery-remove-outline", "material/battery-remove", "material/battery-sync-outline", "material/battery-sync", "material/battery-unknown-bluetooth", "material/battery-unknown", "material/battery", "material/beach", "material/beaker-alert-outline", "material/beaker-alert", "material/beaker-check-outline", "material/beaker-check", "material/beaker-minus-outline", "material/beaker-minus", "material/beaker-outline", "material/beaker-plus-outline", "material/beaker-plus", "material/beaker-question-outline", "material/beaker-question", "material/beaker-remove-outline", "material/beaker-remove", "material/beaker", "material/bed-clock", "material/bed-double-outline", "material/bed-double", "material/bed-empty", "material/bed-king-outline", "material/bed-king", "material/bed-outline", "material/bed-queen-outline", "material/bed-queen", "material/bed-single-outline", "material/bed-single", "material/bed", "material/bee-flower", "material/bee", "material/beehive-off-outline", "material/beehive-outline", "material/beekeeper", "material/beer-outline", "material/beer", "material/bell-alert-outline", "material/bell-alert", "material/bell-badge-outline", "material/bell-badge", "material/bell-cancel-outline", "material/bell-cancel", "material/bell-check-outline", "material/bell-check", "material/bell-circle-outline", "material/bell-circle", "material/bell-cog-outline", "material/bell-cog", "material/bell-minus-outline", "material/bell-minus", "material/bell-off-outline", "material/bell-off", "material/bell-outline", "material/bell-plus-outline", "material/bell-plus", "material/bell-remove-outline", "material/bell-remove", "material/bell-ring-outline", "material/bell-ring", "material/bell-sleep-outline", "material/bell-sleep", "material/bell", "material/bench-back", "material/bench", "material/beta", "material/betamax", "material/biathlon", "material/bicycle-basket", "material/bicycle-cargo", "material/bicycle-electric", "material/bicycle-penny-farthing", "material/bicycle", "material/bike-fast", "material/bike-pedal-clipless", "material/bike-pedal-mountain", "material/bike-pedal", "material/bike", "material/billboard", "material/billiards-rack", "material/billiards", "material/binoculars", "material/bio", "material/biohazard", "material/bird", "material/bitbucket", "material/bitcoin", "material/black-mesa", "material/blender-outline", "material/blender-software", "material/blender", "material/blinds-horizontal-closed", "material/blinds-horizontal", "material/blinds-open", "material/blinds-vertical-closed", "material/blinds-vertical", "material/blinds", "material/block-helper", "material/blood-bag", "material/bluetooth-audio", "material/bluetooth-connect", "material/bluetooth-off", "material/bluetooth-settings", "material/bluetooth-transfer", "material/bluetooth", "material/blur-linear", "material/blur-off", "material/blur-radial", "material/blur", "material/bolt", "material/bomb-off", "material/bomb", "material/bone-off", "material/bone", "material/book-account-outline", "material/book-account", "material/book-alert-outline", "material/book-alert", "material/book-alphabet", "material/book-arrow-down-outline", "material/book-arrow-down", "material/book-arrow-left-outline", "material/book-arrow-left", "material/book-arrow-right-outline", "material/book-arrow-right", "material/book-arrow-up-outline", "material/book-arrow-up", "material/book-cancel-outline", "material/book-cancel", "material/book-check-outline", "material/book-check", "material/book-clock-outline", "material/book-clock", "material/book-cog-outline", "material/book-cog", "material/book-cross", "material/book-edit-outline", "material/book-edit", "material/book-education-outline", "material/book-education", "material/book-heart-outline", "material/book-heart", "material/book-information-variant", "material/book-lock-open-outline", "material/book-lock-open", "material/book-lock-outline", "material/book-lock", "material/book-marker-outline", "material/book-marker", "material/book-minus-multiple-outline", "material/book-minus-multiple", "material/book-minus-outline", "material/book-minus", "material/book-multiple-outline", "material/book-multiple", "material/book-music-outline", "material/book-music", "material/book-off-outline", "material/book-off", "material/book-open-blank-variant-outline", "material/book-open-blank-variant", "material/book-open-outline", "material/book-open-page-variant-outline", "material/book-open-page-variant", "material/book-open-variant-outline", "material/book-open-variant", "material/book-open", "material/book-outline", "material/book-play-outline", "material/book-play", "material/book-plus-multiple-outline", "material/book-plus-multiple", "material/book-plus-outline", "material/book-plus", "material/book-refresh-outline", "material/book-refresh", "material/book-remove-multiple-outline", "material/book-remove-multiple", "material/book-remove-outline", "material/book-remove", "material/book-search-outline", "material/book-search", "material/book-settings-outline", "material/book-settings", "material/book-sync-outline", "material/book-sync", "material/book-variant", "material/book", "material/bookmark-box-multiple-outline", "material/bookmark-box-multiple", "material/bookmark-box-outline", "material/bookmark-box", "material/bookmark-check-outline", "material/bookmark-check", "material/bookmark-minus-outline", "material/bookmark-minus", "material/bookmark-multiple-outline", "material/bookmark-multiple", "material/bookmark-music-outline", "material/bookmark-music", "material/bookmark-off-outline", "material/bookmark-off", "material/bookmark-outline", "material/bookmark-plus-outline", "material/bookmark-plus", "material/bookmark-remove-outline", "material/bookmark-remove", "material/bookmark", "material/bookshelf", "material/boom-gate-alert-outline", "material/boom-gate-alert", "material/boom-gate-arrow-down-outline", "material/boom-gate-arrow-down", "material/boom-gate-arrow-up-outline", "material/boom-gate-arrow-up", "material/boom-gate-outline", "material/boom-gate-up-outline", "material/boom-gate-up", "material/boom-gate", "material/boombox", "material/boomerang", "material/bootstrap", "material/border-all-variant", "material/border-all", "material/border-bottom-variant", "material/border-bottom", "material/border-color", "material/border-horizontal", "material/border-inside", "material/border-left-variant", "material/border-left", "material/border-none-variant", "material/border-none", "material/border-outside", "material/border-radius", "material/border-right-variant", "material/border-right", "material/border-style", "material/border-top-variant", "material/border-top", "material/border-vertical", "material/bottle-soda-classic-outline", "material/bottle-soda-classic", "material/bottle-soda-outline", "material/bottle-soda", "material/bottle-tonic-outline", "material/bottle-tonic-plus-outline", "material/bottle-tonic-plus", "material/bottle-tonic-skull-outline", "material/bottle-tonic-skull", "material/bottle-tonic", "material/bottle-wine-outline", "material/bottle-wine", "material/bow-arrow", "material/bow-tie", "material/bowl-mix-outline", "material/bowl-mix", "material/bowl-outline", "material/bowl", "material/bowling", "material/box-cutter-off", "material/box-cutter", "material/box-shadow", "material/box", "material/boxing-glove", "material/braille", "material/brain", "material/bread-slice-outline", "material/bread-slice", "material/bridge", "material/briefcase-account-outline", "material/briefcase-account", "material/briefcase-arrow-left-right-outline", "material/briefcase-arrow-left-right", "material/briefcase-arrow-up-down-outline", "material/briefcase-arrow-up-down", "material/briefcase-check-outline", "material/briefcase-check", "material/briefcase-clock-outline", "material/briefcase-clock", "material/briefcase-download-outline", "material/briefcase-download", "material/briefcase-edit-outline", "material/briefcase-edit", "material/briefcase-eye-outline", "material/briefcase-eye", "material/briefcase-minus-outline", "material/briefcase-minus", "material/briefcase-off-outline", "material/briefcase-off", "material/briefcase-outline", "material/briefcase-plus-outline", "material/briefcase-plus", "material/briefcase-remove-outline", "material/briefcase-remove", "material/briefcase-search-outline", "material/briefcase-search", "material/briefcase-upload-outline", "material/briefcase-upload", "material/briefcase-variant-off-outline", "material/briefcase-variant-off", "material/briefcase-variant-outline", "material/briefcase-variant", "material/briefcase", "material/brightness-1", "material/brightness-2", "material/brightness-3", "material/brightness-4", "material/brightness-5", "material/brightness-6", "material/brightness-7", "material/brightness-auto", "material/brightness-percent", "material/broadcast-off", "material/broadcast", "material/broom", "material/brush-off", "material/brush-outline", "material/brush-variant", "material/brush", "material/bucket-outline", "material/bucket", "material/buffet", "material/bug-check-outline", "material/bug-check", "material/bug-outline", "material/bug-pause-outline", "material/bug-pause", "material/bug-play-outline", "material/bug-play", "material/bug-stop-outline", "material/bug-stop", "material/bug", "material/bugle", "material/bulkhead-light", "material/bulldozer", "material/bullet", "material/bulletin-board", "material/bullhorn-outline", "material/bullhorn-variant-outline", "material/bullhorn-variant", "material/bullhorn", "material/bullseye-arrow", "material/bullseye", "material/bulma", "material/bunk-bed-outline", "material/bunk-bed", "material/bus-alert", "material/bus-articulated-end", "material/bus-articulated-front", "material/bus-clock", "material/bus-double-decker", "material/bus-electric", "material/bus-marker", "material/bus-multiple", "material/bus-school", "material/bus-side", "material/bus-sign", "material/bus-stop-covered", "material/bus-stop-uncovered", "material/bus-stop", "material/bus-wrench", "material/bus", "material/butterfly-outline", "material/butterfly", "material/button-cursor", "material/button-pointer", "material/cabin-a-frame", "material/cable-data", "material/cached", "material/cactus", "material/cake-layered", "material/cake-variant-outline", "material/cake-variant", "material/cake", "material/calculator-variant-outline", "material/calculator-variant", "material/calculator", "material/calendar-account-outline", "material/calendar-account", "material/calendar-alert-outline", "material/calendar-alert", "material/calendar-arrow-left", "material/calendar-arrow-right", "material/calendar-badge-outline", "material/calendar-badge", "material/calendar-blank-multiple", "material/calendar-blank-outline", "material/calendar-blank", "material/calendar-check-outline", "material/calendar-check", "material/calendar-clock-outline", "material/calendar-clock", "material/calendar-collapse-horizontal-outline", "material/calendar-collapse-horizontal", "material/calendar-cursor-outline", "material/calendar-cursor", "material/calendar-edit-outline", "material/calendar-edit", "material/calendar-end-outline", "material/calendar-end", "material/calendar-expand-horizontal-outline", "material/calendar-expand-horizontal", "material/calendar-export-outline", "material/calendar-export", "material/calendar-filter-outline", "material/calendar-filter", "material/calendar-heart-outline", "material/calendar-heart", "material/calendar-import-outline", "material/calendar-import", "material/calendar-lock-open-outline", "material/calendar-lock-open", "material/calendar-lock-outline", "material/calendar-lock", "material/calendar-minus-outline", "material/calendar-minus", "material/calendar-month-outline", "material/calendar-month", "material/calendar-multiple-check", "material/calendar-multiple", "material/calendar-multiselect-outline", "material/calendar-multiselect", "material/calendar-outline", "material/calendar-plus-outline", "material/calendar-plus", "material/calendar-question-outline", "material/calendar-question", "material/calendar-range-outline", "material/calendar-range", "material/calendar-refresh-outline", "material/calendar-refresh", "material/calendar-remove-outline", "material/calendar-remove", "material/calendar-search-outline", "material/calendar-search", "material/calendar-star-four-points", "material/calendar-star-outline", "material/calendar-star", "material/calendar-start-outline", "material/calendar-start", "material/calendar-sync-outline", "material/calendar-sync", "material/calendar-text-outline", "material/calendar-text", "material/calendar-today-outline", "material/calendar-today", "material/calendar-week-begin-outline", "material/calendar-week-begin", "material/calendar-week-outline", "material/calendar-week", "material/calendar-weekend-outline", "material/calendar-weekend", "material/calendar", "material/call-made", "material/call-merge", "material/call-missed", "material/call-received", "material/call-split", "material/camcorder-off", "material/camcorder", "material/camera-account", "material/camera-burst", "material/camera-control", "material/camera-document-off", "material/camera-document", "material/camera-enhance-outline", "material/camera-enhance", "material/camera-flip-outline", "material/camera-flip", "material/camera-front-variant", "material/camera-front", "material/camera-gopro", "material/camera-image", "material/camera-iris", "material/camera-lock-open-outline", "material/camera-lock-open", "material/camera-lock-outline", "material/camera-lock", "material/camera-marker-outline", "material/camera-marker", "material/camera-metering-center", "material/camera-metering-matrix", "material/camera-metering-partial", "material/camera-metering-spot", "material/camera-off-outline", "material/camera-off", "material/camera-outline", "material/camera-party-mode", "material/camera-plus-outline", "material/camera-plus", "material/camera-rear-variant", "material/camera-rear", "material/camera-retake-outline", "material/camera-retake", "material/camera-switch-outline", "material/camera-switch", "material/camera-timer", "material/camera-wireless-outline", "material/camera-wireless", "material/camera", "material/campfire", "material/cancel", "material/candelabra-fire", "material/candelabra", "material/candle", "material/candy-off-outline", "material/candy-off", "material/candy-outline", "material/candy", "material/candycane", "material/cannabis-off", "material/cannabis", "material/caps-lock", "material/car-2-plus", "material/car-3-plus", "material/car-arrow-left", "material/car-arrow-right", "material/car-back", "material/car-battery", "material/car-brake-abs", "material/car-brake-alert", "material/car-brake-fluid-level", "material/car-brake-hold", "material/car-brake-low-pressure", "material/car-brake-parking", "material/car-brake-retarder", "material/car-brake-temperature", "material/car-brake-worn-linings", "material/car-child-seat", "material/car-clock", "material/car-clutch", "material/car-cog", "material/car-connected", "material/car-convertible", "material/car-coolant-level", "material/car-cruise-control", "material/car-defrost-front", "material/car-defrost-rear", "material/car-door-lock-open", "material/car-door-lock", "material/car-door", "material/car-electric-outline", "material/car-electric", "material/car-emergency", "material/car-esp", "material/car-estate", "material/car-hatchback", "material/car-info", "material/car-key", "material/car-lifted-pickup", "material/car-light-alert", "material/car-light-dimmed", "material/car-light-fog", "material/car-light-high", "material/car-limousine", "material/car-multiple", "material/car-off", "material/car-outline", "material/car-parking-lights", "material/car-pickup", "material/car-search-outline", "material/car-search", "material/car-seat-cooler", "material/car-seat-heater", "material/car-seat", "material/car-select", "material/car-settings", "material/car-shift-pattern", "material/car-side", "material/car-speed-limiter", "material/car-sports", "material/car-tire-alert", "material/car-traction-control", "material/car-turbocharger", "material/car-wash", "material/car-windshield-outline", "material/car-windshield", "material/car-wireless", "material/car-wrench", "material/car", "material/carabiner", "material/caravan", "material/card-account-details-outline", "material/card-account-details-star-outline", "material/card-account-details-star", "material/card-account-details", "material/card-account-mail-outline", "material/card-account-mail", "material/card-account-phone-outline", "material/card-account-phone", "material/card-bulleted-off-outline", "material/card-bulleted-off", "material/card-bulleted-outline", "material/card-bulleted-settings-outline", "material/card-bulleted-settings", "material/card-bulleted", "material/card-minus-outline", "material/card-minus", "material/card-multiple-outline", "material/card-multiple", "material/card-off-outline", "material/card-off", "material/card-outline", "material/card-plus-outline", "material/card-plus", "material/card-remove-outline", "material/card-remove", "material/card-search-outline", "material/card-search", "material/card-text-outline", "material/card-text", "material/card", "material/cards-club-outline", "material/cards-club", "material/cards-diamond-outline", "material/cards-diamond", "material/cards-heart-outline", "material/cards-heart", "material/cards-outline", "material/cards-playing-club-multiple-outline", "material/cards-playing-club-multiple", "material/cards-playing-club-outline", "material/cards-playing-club", "material/cards-playing-diamond-multiple-outline", "material/cards-playing-diamond-multiple", "material/cards-playing-diamond-outline", "material/cards-playing-diamond", "material/cards-playing-heart-multiple-outline", "material/cards-playing-heart-multiple", "material/cards-playing-heart-outline", "material/cards-playing-heart", "material/cards-playing-outline", "material/cards-playing-spade-multiple-outline", "material/cards-playing-spade-multiple", "material/cards-playing-spade-outline", "material/cards-playing-spade", "material/cards-playing", "material/cards-spade-outline", "material/cards-spade", "material/cards-variant", "material/cards", "material/carrot", "material/cart-arrow-down", "material/cart-arrow-right", "material/cart-arrow-up", "material/cart-check", "material/cart-heart", "material/cart-minus", "material/cart-off", "material/cart-outline", "material/cart-percent", "material/cart-plus", "material/cart-remove", "material/cart-variant", "material/cart", "material/case-sensitive-alt", "material/cash-100", "material/cash-check", "material/cash-clock", "material/cash-edit", "material/cash-fast", "material/cash-lock-open", "material/cash-lock", "material/cash-marker", "material/cash-minus", "material/cash-multiple", "material/cash-off", "material/cash-plus", "material/cash-refund", "material/cash-register", "material/cash-remove", "material/cash-sync", "material/cash", "material/cassette", "material/cast-audio-variant", "material/cast-audio", "material/cast-connected", "material/cast-education", "material/cast-off", "material/cast-variant", "material/cast", "material/castle", "material/cat", "material/cctv-off", "material/cctv", "material/ceiling-fan-light", "material/ceiling-fan", "material/ceiling-light-multiple-outline", "material/ceiling-light-multiple", "material/ceiling-light-outline", "material/ceiling-light", "material/cellphone-arrow-down-variant", "material/cellphone-arrow-down", "material/cellphone-basic", "material/cellphone-charging", "material/cellphone-check", "material/cellphone-cog", "material/cellphone-dock", "material/cellphone-information", "material/cellphone-key", "material/cellphone-link-off", "material/cellphone-link", "material/cellphone-lock", "material/cellphone-marker", "material/cellphone-message-off", "material/cellphone-message", "material/cellphone-nfc-off", "material/cellphone-nfc", "material/cellphone-off", "material/cellphone-play", "material/cellphone-remove", "material/cellphone-screenshot", "material/cellphone-settings", "material/cellphone-sound", "material/cellphone-text", "material/cellphone-wireless", "material/cellphone", "material/centos", "material/certificate-outline", "material/certificate", "material/chair-rolling", "material/chair-school", "material/chandelier", "material/charity-search", "material/charity", "material/chart-arc", "material/chart-areaspline-variant", "material/chart-areaspline", "material/chart-bar-stacked", "material/chart-bar", "material/chart-bell-curve-cumulative", "material/chart-bell-curve", "material/chart-box-multiple-outline", "material/chart-box-multiple", "material/chart-box-outline", "material/chart-box-plus-outline", "material/chart-box", "material/chart-bubble", "material/chart-donut-variant", "material/chart-donut", "material/chart-gantt", "material/chart-histogram", "material/chart-line-stacked", "material/chart-line-variant", "material/chart-line", "material/chart-multiline", "material/chart-multiple", "material/chart-pie-outline", "material/chart-pie", "material/chart-ppf", "material/chart-sankey-variant", "material/chart-sankey", "material/chart-scatter-plot-hexbin", "material/chart-scatter-plot", "material/chart-timeline-variant-shimmer", "material/chart-timeline-variant", "material/chart-timeline", "material/chart-tree", "material/chart-waterfall", "material/chat-alert-outline", "material/chat-alert", "material/chat-minus-outline", "material/chat-minus", "material/chat-outline", "material/chat-plus-outline", "material/chat-plus", "material/chat-processing-outline", "material/chat-processing", "material/chat-question-outline", "material/chat-question", "material/chat-remove-outline", "material/chat-remove", "material/chat-sleep-outline", "material/chat-sleep", "material/chat", "material/check-all", "material/check-bold", "material/check-circle-outline", "material/check-circle", "material/check-decagram-outline", "material/check-decagram", "material/check-network-outline", "material/check-network", "material/check-outline", "material/check-underline-circle-outline", "material/check-underline-circle", "material/check-underline", "material/check", "material/checkbook-arrow-left", "material/checkbook-arrow-right", "material/checkbook", "material/checkbox-blank-badge-outline", "material/checkbox-blank-badge", "material/checkbox-blank-circle-outline", "material/checkbox-blank-circle", "material/checkbox-blank-off-outline", "material/checkbox-blank-off", "material/checkbox-blank-outline", "material/checkbox-blank", "material/checkbox-intermediate-variant", "material/checkbox-intermediate", "material/checkbox-marked-circle-auto-outline", "material/checkbox-marked-circle-minus-outline", "material/checkbox-marked-circle-outline", "material/checkbox-marked-circle-plus-outline", "material/checkbox-marked-circle", "material/checkbox-marked-outline", "material/checkbox-marked", "material/checkbox-multiple-blank-circle-outline", "material/checkbox-multiple-blank-circle", "material/checkbox-multiple-blank-outline", "material/checkbox-multiple-blank", "material/checkbox-multiple-marked-circle-outline", "material/checkbox-multiple-marked-circle", "material/checkbox-multiple-marked-outline", "material/checkbox-multiple-marked", "material/checkbox-multiple-outline", "material/checkbox-outline", "material/checkerboard-minus", "material/checkerboard-plus", "material/checkerboard-remove", "material/checkerboard", "material/cheese-off", "material/cheese", "material/chef-hat", "material/chemical-weapon", "material/chess-bishop", "material/chess-king", "material/chess-knight", "material/chess-pawn", "material/chess-queen", "material/chess-rook", "material/chevron-double-down", "material/chevron-double-left", "material/chevron-double-right", "material/chevron-double-up", "material/chevron-down-box-outline", "material/chevron-down-box", "material/chevron-down-circle-outline", "material/chevron-down-circle", "material/chevron-down", "material/chevron-left-box-outline", "material/chevron-left-box", "material/chevron-left-circle-outline", "material/chevron-left-circle", "material/chevron-left", "material/chevron-right-box-outline", "material/chevron-right-box", "material/chevron-right-circle-outline", "material/chevron-right-circle", "material/chevron-right", "material/chevron-triple-down", "material/chevron-triple-left", "material/chevron-triple-right", "material/chevron-triple-up", "material/chevron-up-box-outline", "material/chevron-up-box", "material/chevron-up-circle-outline", "material/chevron-up-circle", "material/chevron-up", "material/chili-alert-outline", "material/chili-alert", "material/chili-hot-outline", "material/chili-hot", "material/chili-medium-outline", "material/chili-medium", "material/chili-mild-outline", "material/chili-mild", "material/chili-off-outline", "material/chili-off", "material/chip", "material/church-outline", "material/church", "material/cigar-off", "material/cigar", "material/circle-box-outline", "material/circle-box", "material/circle-double", "material/circle-edit-outline", "material/circle-expand", "material/circle-half-full", "material/circle-half", "material/circle-medium", "material/circle-multiple-outline", "material/circle-multiple", "material/circle-off-outline", "material/circle-opacity", "material/circle-outline", "material/circle-slice-1", "material/circle-slice-2", "material/circle-slice-3", "material/circle-slice-4", "material/circle-slice-5", "material/circle-slice-6", "material/circle-slice-7", "material/circle-slice-8", "material/circle-small", "material/circle", "material/circular-saw", "material/city-switch", "material/city-variant-outline", "material/city-variant", "material/city", "material/clipboard-account-outline", "material/clipboard-account", "material/clipboard-alert-outline", "material/clipboard-alert", "material/clipboard-arrow-down-outline", "material/clipboard-arrow-down", "material/clipboard-arrow-left-outline", "material/clipboard-arrow-left", "material/clipboard-arrow-right-outline", "material/clipboard-arrow-right", "material/clipboard-arrow-up-outline", "material/clipboard-arrow-up", "material/clipboard-check-multiple-outline", "material/clipboard-check-multiple", "material/clipboard-check-outline", "material/clipboard-check", "material/clipboard-clock-outline", "material/clipboard-clock", "material/clipboard-edit-outline", "material/clipboard-edit", "material/clipboard-file-outline", "material/clipboard-file", "material/clipboard-flow-outline", "material/clipboard-flow", "material/clipboard-list-outline", "material/clipboard-list", "material/clipboard-minus-outline", "material/clipboard-minus", "material/clipboard-multiple-outline", "material/clipboard-multiple", "material/clipboard-off-outline", "material/clipboard-off", "material/clipboard-outline", "material/clipboard-play-multiple-outline", "material/clipboard-play-multiple", "material/clipboard-play-outline", "material/clipboard-play", "material/clipboard-plus-outline", "material/clipboard-plus", "material/clipboard-pulse-outline", "material/clipboard-pulse", "material/clipboard-remove-outline", "material/clipboard-remove", "material/clipboard-search-outline", "material/clipboard-search", "material/clipboard-text-clock-outline", "material/clipboard-text-clock", "material/clipboard-text-multiple-outline", "material/clipboard-text-multiple", "material/clipboard-text-off-outline", "material/clipboard-text-off", "material/clipboard-text-outline", "material/clipboard-text-play-outline", "material/clipboard-text-play", "material/clipboard-text-search-outline", "material/clipboard-text-search", "material/clipboard-text", "material/clipboard", "material/clippy", "material/clock-alert-outline", "material/clock-alert", "material/clock-check-outline", "material/clock-check", "material/clock-digital", "material/clock-edit-outline", "material/clock-edit", "material/clock-end", "material/clock-fast", "material/clock-in", "material/clock-minus-outline", "material/clock-minus", "material/clock-out", "material/clock-outline", "material/clock-plus-outline", "material/clock-plus", "material/clock-remove-outline", "material/clock-remove", "material/clock-star-four-points-outline", "material/clock-star-four-points", "material/clock-start", "material/clock-time-eight-outline", "material/clock-time-eight", "material/clock-time-eleven-outline", "material/clock-time-eleven", "material/clock-time-five-outline", "material/clock-time-five", "material/clock-time-four-outline", "material/clock-time-four", "material/clock-time-nine-outline", "material/clock-time-nine", "material/clock-time-one-outline", "material/clock-time-one", "material/clock-time-seven-outline", "material/clock-time-seven", "material/clock-time-six-outline", "material/clock-time-six", "material/clock-time-ten-outline", "material/clock-time-ten", "material/clock-time-three-outline", "material/clock-time-three", "material/clock-time-twelve-outline", "material/clock-time-twelve", "material/clock-time-two-outline", "material/clock-time-two", "material/clock", "material/close-box-multiple-outline", "material/close-box-multiple", "material/close-box-outline", "material/close-box", "material/close-circle-multiple-outline", "material/close-circle-multiple", "material/close-circle-outline", "material/close-circle", "material/close-network-outline", "material/close-network", "material/close-octagon-outline", "material/close-octagon", "material/close-outline", "material/close-thick", "material/close", "material/closed-caption-outline", "material/closed-caption", "material/cloud-alert-outline", "material/cloud-alert", "material/cloud-arrow-down-outline", "material/cloud-arrow-down", "material/cloud-arrow-left-outline", "material/cloud-arrow-left", "material/cloud-arrow-right-outline", "material/cloud-arrow-right", "material/cloud-arrow-up-outline", "material/cloud-arrow-up", "material/cloud-braces", "material/cloud-cancel-outline", "material/cloud-cancel", "material/cloud-check-outline", "material/cloud-check-variant-outline", "material/cloud-check-variant", "material/cloud-check", "material/cloud-circle-outline", "material/cloud-circle", "material/cloud-clock-outline", "material/cloud-clock", "material/cloud-cog-outline", "material/cloud-cog", "material/cloud-download-outline", "material/cloud-download", "material/cloud-key-outline", "material/cloud-key", "material/cloud-lock-open-outline", "material/cloud-lock-open", "material/cloud-lock-outline", "material/cloud-lock", "material/cloud-minus-outline", "material/cloud-minus", "material/cloud-off-outline", "material/cloud-off", "material/cloud-outline", "material/cloud-percent-outline", "material/cloud-percent", "material/cloud-plus-outline", "material/cloud-plus", "material/cloud-print-outline", "material/cloud-print", "material/cloud-question-outline", "material/cloud-question", "material/cloud-refresh-outline", "material/cloud-refresh-variant-outline", "material/cloud-refresh-variant", "material/cloud-refresh", "material/cloud-remove-outline", "material/cloud-remove", "material/cloud-search-outline", "material/cloud-search", "material/cloud-sync-outline", "material/cloud-sync", "material/cloud-tags", "material/cloud-upload-outline", "material/cloud-upload", "material/cloud", "material/clouds", "material/clover-outline", "material/clover", "material/coach-lamp-variant", "material/coach-lamp", "material/coat-rack", "material/code-array", "material/code-block-braces", "material/code-block-brackets", "material/code-block-parentheses", "material/code-block-tags", "material/code-braces-box", "material/code-braces", "material/code-brackets", "material/code-equal", "material/code-greater-than-or-equal", "material/code-greater-than", "material/code-json", "material/code-less-than-or-equal", "material/code-less-than", "material/code-not-equal-variant", "material/code-not-equal", "material/code-parentheses-box", "material/code-parentheses", "material/code-string", "material/code-tags-check", "material/code-tags", "material/codepen", "material/coffee-maker-check-outline", "material/coffee-maker-check", "material/coffee-maker-outline", "material/coffee-maker", "material/coffee-off-outline", "material/coffee-off", "material/coffee-outline", "material/coffee-to-go-outline", "material/coffee-to-go", "material/coffee", "material/coffin", "material/cog-box", "material/cog-clockwise", "material/cog-counterclockwise", "material/cog-off-outline", "material/cog-off", "material/cog-outline", "material/cog-pause-outline", "material/cog-pause", "material/cog-play-outline", "material/cog-play", "material/cog-refresh-outline", "material/cog-refresh", "material/cog-stop-outline", "material/cog-stop", "material/cog-sync-outline", "material/cog-sync", "material/cog-transfer-outline", "material/cog-transfer", "material/cog", "material/cogs", "material/collage", "material/collapse-all-outline", "material/collapse-all", "material/color-helper", "material/comma-box-outline", "material/comma-box", "material/comma-circle-outline", "material/comma-circle", "material/comma", "material/comment-account-outline", "material/comment-account", "material/comment-alert-outline", "material/comment-alert", "material/comment-arrow-left-outline", "material/comment-arrow-left", "material/comment-arrow-right-outline", "material/comment-arrow-right", "material/comment-bookmark-outline", "material/comment-bookmark", "material/comment-check-outline", "material/comment-check", "material/comment-edit-outline", "material/comment-edit", "material/comment-eye-outline", "material/comment-eye", "material/comment-flash-outline", "material/comment-flash", "material/comment-minus-outline", "material/comment-minus", "material/comment-multiple-outline", "material/comment-multiple", "material/comment-off-outline", "material/comment-off", "material/comment-outline", "material/comment-plus-outline", "material/comment-plus", "material/comment-processing-outline", "material/comment-processing", "material/comment-question-outline", "material/comment-question", "material/comment-quote-outline", "material/comment-quote", "material/comment-remove-outline", "material/comment-remove", "material/comment-search-outline", "material/comment-search", "material/comment-text-multiple-outline", "material/comment-text-multiple", "material/comment-text-outline", "material/comment-text", "material/comment", "material/compare-horizontal", "material/compare-remove", "material/compare-vertical", "material/compare", "material/compass-off-outline", "material/compass-off", "material/compass-outline", "material/compass-rose", "material/compass", "material/compost", "material/cone-off", "material/cone", "material/connection", "material/console-line", "material/console-network-outline", "material/console-network", "material/console", "material/consolidate", "material/contactless-payment-circle-outline", "material/contactless-payment-circle", "material/contactless-payment", "material/contacts-outline", "material/contacts", "material/contain-end", "material/contain-start", "material/contain", "material/content-copy", "material/content-cut", "material/content-duplicate", "material/content-paste", "material/content-save-alert-outline", "material/content-save-alert", "material/content-save-all-outline", "material/content-save-all", "material/content-save-check-outline", "material/content-save-check", "material/content-save-cog-outline", "material/content-save-cog", "material/content-save-edit-outline", "material/content-save-edit", "material/content-save-minus-outline", "material/content-save-minus", "material/content-save-move-outline", "material/content-save-move", "material/content-save-off-outline", "material/content-save-off", "material/content-save-outline", "material/content-save-plus-outline", "material/content-save-plus", "material/content-save-settings-outline", "material/content-save-settings", "material/content-save", "material/contrast-box", "material/contrast-circle", "material/contrast", "material/controller-classic-outline", "material/controller-classic", "material/controller-off", "material/controller", "material/cookie-alert-outline", "material/cookie-alert", "material/cookie-check-outline", "material/cookie-check", "material/cookie-clock-outline", "material/cookie-clock", "material/cookie-cog-outline", "material/cookie-cog", "material/cookie-edit-outline", "material/cookie-edit", "material/cookie-lock-outline", "material/cookie-lock", "material/cookie-minus-outline", "material/cookie-minus", "material/cookie-off-outline", "material/cookie-off", "material/cookie-outline", "material/cookie-plus-outline", "material/cookie-plus", "material/cookie-refresh-outline", "material/cookie-refresh", "material/cookie-remove-outline", "material/cookie-remove", "material/cookie-settings-outline", "material/cookie-settings", "material/cookie", "material/coolant-temperature", "material/copyleft", "material/copyright", "material/cordova", "material/corn-off", "material/corn", "material/cosine-wave", "material/counter", "material/countertop-outline", "material/countertop", "material/cow-off", "material/cow", "material/cpu-32-bit", "material/cpu-64-bit", "material/cradle-outline", "material/cradle", "material/crane", "material/creation-outline", "material/creation", "material/creative-commons", "material/credit-card-check-outline", "material/credit-card-check", "material/credit-card-chip-outline", "material/credit-card-chip", "material/credit-card-clock-outline", "material/credit-card-clock", "material/credit-card-edit-outline", "material/credit-card-edit", "material/credit-card-fast-outline", "material/credit-card-fast", "material/credit-card-lock-outline", "material/credit-card-lock", "material/credit-card-marker-outline", "material/credit-card-marker", "material/credit-card-minus-outline", "material/credit-card-minus", "material/credit-card-multiple-outline", "material/credit-card-multiple", "material/credit-card-off-outline", "material/credit-card-off", "material/credit-card-outline", "material/credit-card-plus-outline", "material/credit-card-plus", "material/credit-card-refresh-outline", "material/credit-card-refresh", "material/credit-card-refund-outline", "material/credit-card-refund", "material/credit-card-remove-outline", "material/credit-card-remove", "material/credit-card-scan-outline", "material/credit-card-scan", "material/credit-card-search-outline", "material/credit-card-search", "material/credit-card-settings-outline", "material/credit-card-settings", "material/credit-card-sync-outline", "material/credit-card-sync", "material/credit-card-wireless-off-outline", "material/credit-card-wireless-off", "material/credit-card-wireless-outline", "material/credit-card-wireless", "material/credit-card", "material/cricket", "material/crop-free", "material/crop-landscape", "material/crop-portrait", "material/crop-rotate", "material/crop-square", "material/crop", "material/cross-bolnisi", "material/cross-celtic", "material/cross-outline", "material/cross", "material/crosshairs-gps", "material/crosshairs-off", "material/crosshairs-question", "material/crosshairs", "material/crowd", "material/crown-circle-outline", "material/crown-circle", "material/crown-outline", "material/crown", "material/cryengine", "material/crystal-ball", "material/cube-off-outline", "material/cube-off", "material/cube-outline", "material/cube-scan", "material/cube-send", "material/cube-unfolded", "material/cube", "material/cup-off-outline", "material/cup-off", "material/cup-outline", "material/cup-water", "material/cup", "material/cupboard-outline", "material/cupboard", "material/cupcake", "material/curling", "material/currency-bdt", "material/currency-brl", "material/currency-btc", "material/currency-cny", "material/currency-eth", "material/currency-eur-off", "material/currency-eur", "material/currency-fra", "material/currency-gbp", "material/currency-ils", "material/currency-inr", "material/currency-jpy", "material/currency-krw", "material/currency-kzt", "material/currency-mnt", "material/currency-ngn", "material/currency-php", "material/currency-rial", "material/currency-rub", "material/currency-rupee", "material/currency-sign", "material/currency-thb", "material/currency-try", "material/currency-twd", "material/currency-uah", "material/currency-usd-off", "material/currency-usd", "material/current-ac", "material/current-dc", "material/cursor-default-click-outline", "material/cursor-default-click", "material/cursor-default-gesture-outline", "material/cursor-default-gesture", "material/cursor-default-outline", "material/cursor-default", "material/cursor-move", "material/cursor-pointer", "material/cursor-text", "material/curtains-closed", "material/curtains", "material/cylinder-off", "material/cylinder", "material/dance-ballroom", "material/dance-pole", "material/data-matrix-edit", "material/data-matrix-minus", "material/data-matrix-plus", "material/data-matrix-remove", "material/data-matrix-scan", "material/data-matrix", "material/database-alert-outline", "material/database-alert", "material/database-arrow-down-outline", "material/database-arrow-down", "material/database-arrow-left-outline", "material/database-arrow-left", "material/database-arrow-right-outline", "material/database-arrow-right", "material/database-arrow-up-outline", "material/database-arrow-up", "material/database-check-outline", "material/database-check", "material/database-clock-outline", "material/database-clock", "material/database-cog-outline", "material/database-cog", "material/database-edit-outline", "material/database-edit", "material/database-export-outline", "material/database-export", "material/database-eye-off-outline", "material/database-eye-off", "material/database-eye-outline", "material/database-eye", "material/database-import-outline", "material/database-import", "material/database-lock-outline", "material/database-lock", "material/database-marker-outline", "material/database-marker", "material/database-minus-outline", "material/database-minus", "material/database-off-outline", "material/database-off", "material/database-outline", "material/database-plus-outline", "material/database-plus", "material/database-refresh-outline", "material/database-refresh", "material/database-remove-outline", "material/database-remove", "material/database-search-outline", "material/database-search", "material/database-settings-outline", "material/database-settings", "material/database-sync-outline", "material/database-sync", "material/database", "material/death-star-variant", "material/death-star", "material/deathly-hallows", "material/debian", "material/debug-step-into", "material/debug-step-out", "material/debug-step-over", "material/decagram-outline", "material/decagram", "material/decimal-comma-decrease", "material/decimal-comma-increase", "material/decimal-comma", "material/decimal-decrease", "material/decimal-increase", "material/decimal", "material/delete-alert-outline", "material/delete-alert", "material/delete-circle-outline", "material/delete-circle", "material/delete-clock-outline", "material/delete-clock", "material/delete-empty-outline", "material/delete-empty", "material/delete-forever-outline", "material/delete-forever", "material/delete-off-outline", "material/delete-off", "material/delete-outline", "material/delete-restore", "material/delete-sweep-outline", "material/delete-sweep", "material/delete-variant", "material/delete", "material/delta", "material/desk-lamp-off", "material/desk-lamp-on", "material/desk-lamp", "material/desk", "material/deskphone", "material/desktop-classic", "material/desktop-tower-monitor", "material/desktop-tower", "material/details", "material/dev-to", "material/developer-board", "material/deviantart", "material/devices", "material/dharmachakra", "material/diabetes", "material/dialpad", "material/diameter-outline", "material/diameter-variant", "material/diameter", "material/diamond-outline", "material/diamond-stone", "material/diamond", "material/diaper-outline", "material/dice-1-outline", "material/dice-1", "material/dice-2-outline", "material/dice-2", "material/dice-3-outline", "material/dice-3", "material/dice-4-outline", "material/dice-4", "material/dice-5-outline", "material/dice-5", "material/dice-6-outline", "material/dice-6", "material/dice-d10-outline", "material/dice-d10", "material/dice-d12-outline", "material/dice-d12", "material/dice-d20-outline", "material/dice-d20", "material/dice-d4-outline", "material/dice-d4", "material/dice-d6-outline", "material/dice-d6", "material/dice-d8-outline", "material/dice-d8", "material/dice-multiple-outline", "material/dice-multiple", "material/digital-ocean", "material/dip-switch", "material/directions-fork", "material/directions", "material/disc-alert", "material/disc-player", "material/disc", "material/dishwasher-alert", "material/dishwasher-off", "material/dishwasher", "material/disqus", "material/distribute-horizontal-center", "material/distribute-horizontal-left", "material/distribute-horizontal-right", "material/distribute-vertical-bottom", "material/distribute-vertical-center", "material/distribute-vertical-top", "material/diversify", "material/diving-flippers", "material/diving-helmet", "material/diving-scuba-flag", "material/diving-scuba-mask", "material/diving-scuba-tank-multiple", "material/diving-scuba-tank", "material/diving-scuba", "material/diving-snorkel", "material/diving", "material/division-box", "material/division", "material/dlna", "material/dna", "material/dns-outline", "material/dns", "material/dock-bottom", "material/dock-left", "material/dock-right", "material/dock-top", "material/dock-window", "material/docker", "material/doctor", "material/dog-service", "material/dog-side-off", "material/dog-side", "material/dog", "material/dolby", "material/dolly", "material/dolphin", "material/domain-off", "material/domain-plus", "material/domain-remove", "material/domain-switch", "material/domain", "material/dome-light", "material/domino-mask", "material/donkey", "material/door-closed-cancel", "material/door-closed-lock", "material/door-closed", "material/door-open", "material/door-sliding-lock", "material/door-sliding-open", "material/door-sliding", "material/door", "material/doorbell-video", "material/doorbell", "material/dot-net", "material/dots-circle", "material/dots-grid", "material/dots-hexagon", "material/dots-horizontal-circle-outline", "material/dots-horizontal-circle", "material/dots-horizontal", "material/dots-square", "material/dots-triangle", "material/dots-vertical-circle-outline", "material/dots-vertical-circle", "material/dots-vertical", "material/download-box-outline", "material/download-box", "material/download-circle-outline", "material/download-circle", "material/download-lock-outline", "material/download-lock", "material/download-multiple-outline", "material/download-multiple", "material/download-network-outline", "material/download-network", "material/download-off-outline", "material/download-off", "material/download-outline", "material/download", "material/drag-horizontal-variant", "material/drag-horizontal", "material/drag-variant", "material/drag-vertical-variant", "material/drag-vertical", "material/drag", "material/drama-masks", "material/draw-pen", "material/draw", "material/drawing-box", "material/drawing", "material/dresser-outline", "material/dresser", "material/drone", "material/dropbox", "material/drupal", "material/duck", "material/dumbbell", "material/dump-truck", "material/ear-hearing-loop", "material/ear-hearing-off", "material/ear-hearing", "material/earbuds-off-outline", "material/earbuds-off", "material/earbuds-outline", "material/earbuds", "material/earth-arrow-down", "material/earth-arrow-left", "material/earth-arrow-right", "material/earth-arrow-up", "material/earth-box-minus", "material/earth-box-off", "material/earth-box-plus", "material/earth-box-remove", "material/earth-box", "material/earth-minus", "material/earth-off", "material/earth-plus", "material/earth-remove", "material/earth", "material/egg-easter", "material/egg-fried", "material/egg-off-outline", "material/egg-off", "material/egg-outline", "material/egg", "material/eiffel-tower", "material/eight-track", "material/eject-circle-outline", "material/eject-circle", "material/eject-outline", "material/eject", "material/electric-switch-closed", "material/electric-switch", "material/electron-framework", "material/elephant", "material/elevation-decline", "material/elevation-rise", "material/elevator-down", "material/elevator-passenger-off-outline", "material/elevator-passenger-off", "material/elevator-passenger-outline", "material/elevator-passenger", "material/elevator-up", "material/elevator", "material/ellipse-outline", "material/ellipse", "material/email-alert-outline", "material/email-alert", "material/email-arrow-left-outline", "material/email-arrow-left", "material/email-arrow-right-outline", "material/email-arrow-right", "material/email-box", "material/email-check-outline", "material/email-check", "material/email-edit-outline", "material/email-edit", "material/email-fast-outline", "material/email-fast", "material/email-heart-outline", "material/email-lock-outline", "material/email-lock", "material/email-mark-as-unread", "material/email-minus-outline", "material/email-minus", "material/email-multiple-outline", "material/email-multiple", "material/email-newsletter", "material/email-off-outline", "material/email-off", "material/email-open-heart-outline", "material/email-open-multiple-outline", "material/email-open-multiple", "material/email-open-outline", "material/email-open", "material/email-outline", "material/email-plus-outline", "material/email-plus", "material/email-remove-outline", "material/email-remove", "material/email-seal-outline", "material/email-seal", "material/email-search-outline", "material/email-search", "material/email-sync-outline", "material/email-sync", "material/email-variant", "material/email", "material/ember", "material/emby", "material/emoticon-angry-outline", "material/emoticon-angry", "material/emoticon-confused-outline", "material/emoticon-confused", "material/emoticon-cool-outline", "material/emoticon-cool", "material/emoticon-cry-outline", "material/emoticon-cry", "material/emoticon-dead-outline", "material/emoticon-dead", "material/emoticon-devil-outline", "material/emoticon-devil", "material/emoticon-excited-outline", "material/emoticon-excited", "material/emoticon-frown-outline", "material/emoticon-frown", "material/emoticon-happy-outline", "material/emoticon-happy", "material/emoticon-kiss-outline", "material/emoticon-kiss", "material/emoticon-lol-outline", "material/emoticon-lol", "material/emoticon-minus-outline", "material/emoticon-minus", "material/emoticon-neutral-outline", "material/emoticon-neutral", "material/emoticon-outline", "material/emoticon-plus-outline", "material/emoticon-plus", "material/emoticon-poop-outline", "material/emoticon-poop", "material/emoticon-remove-outline", "material/emoticon-remove", "material/emoticon-sad-outline", "material/emoticon-sad", "material/emoticon-sick-outline", "material/emoticon-sick", "material/emoticon-tongue-outline", "material/emoticon-tongue", "material/emoticon-wink-outline", "material/emoticon-wink", "material/emoticon", "material/engine-off-outline", "material/engine-off", "material/engine-outline", "material/engine", "material/epsilon", "material/equal-box", "material/equal", "material/equalizer-outline", "material/equalizer", "material/eraser-variant", "material/eraser", "material/escalator-box", "material/escalator-down", "material/escalator-up", "material/escalator", "material/eslint", "material/et", "material/ethereum", "material/ethernet-cable-off", "material/ethernet-cable", "material/ethernet-off", "material/ethernet", "material/ev-plug-ccs1", "material/ev-plug-ccs2", "material/ev-plug-chademo", "material/ev-plug-tesla", "material/ev-plug-type1", "material/ev-plug-type2", "material/ev-station", "material/evernote", "material/excavator", "material/exclamation-thick", "material/exclamation", "material/exit-run", "material/exit-to-app", "material/expand-all-outline", "material/expand-all", "material/expansion-card-variant", "material/expansion-card", "material/exponent-box", "material/exponent", "material/export-variant", "material/export", "material/eye-arrow-left-outline", "material/eye-arrow-left", "material/eye-arrow-right-outline", "material/eye-arrow-right", "material/eye-check-outline", "material/eye-check", "material/eye-circle-outline", "material/eye-circle", "material/eye-closed", "material/eye-lock-open-outline", "material/eye-lock-open", "material/eye-lock-outline", "material/eye-lock", "material/eye-minus-outline", "material/eye-minus", "material/eye-off-outline", "material/eye-off", "material/eye-outline", "material/eye-plus-outline", "material/eye-plus", "material/eye-refresh-outline", "material/eye-refresh", "material/eye-remove-outline", "material/eye-remove", "material/eye-settings-outline", "material/eye-settings", "material/eye", "material/eyedropper-minus", "material/eyedropper-off", "material/eyedropper-plus", "material/eyedropper-remove", "material/eyedropper-variant", "material/eyedropper", "material/face-agent", "material/face-man-outline", "material/face-man-profile", "material/face-man-shimmer-outline", "material/face-man-shimmer", "material/face-man", "material/face-mask-outline", "material/face-mask", "material/face-recognition", "material/face-woman-outline", "material/face-woman-profile", "material/face-woman-shimmer-outline", "material/face-woman-shimmer", "material/face-woman", "material/facebook-gaming", "material/facebook-messenger", "material/facebook-workplace", "material/facebook", "material/factory", "material/family-tree", "material/fan-alert", "material/fan-auto", "material/fan-chevron-down", "material/fan-chevron-up", "material/fan-clock", "material/fan-minus", "material/fan-off", "material/fan-plus", "material/fan-remove", "material/fan-speed-1", "material/fan-speed-2", "material/fan-speed-3", "material/fan", "material/fast-forward-10", "material/fast-forward-15", "material/fast-forward-30", "material/fast-forward-45", "material/fast-forward-5", "material/fast-forward-60", "material/fast-forward-outline", "material/fast-forward", "material/faucet-variant", "material/faucet", "material/fax", "material/feather", "material/feature-search-outline", "material/feature-search", "material/fedora", "material/fence-electric", "material/fence", "material/fencing", "material/ferris-wheel", "material/ferry", "material/file-account-outline", "material/file-account", "material/file-alert-outline", "material/file-alert", "material/file-arrow-left-right-outline", "material/file-arrow-left-right", "material/file-arrow-up-down-outline", "material/file-arrow-up-down", "material/file-cabinet", "material/file-cad-box", "material/file-cad", "material/file-cancel-outline", "material/file-cancel", "material/file-certificate-outline", "material/file-certificate", "material/file-chart-check-outline", "material/file-chart-check", "material/file-chart-outline", "material/file-chart", "material/file-check-outline", "material/file-check", "material/file-clock-outline", "material/file-clock", "material/file-cloud-outline", "material/file-cloud", "material/file-code-outline", "material/file-code", "material/file-cog-outline", "material/file-cog", "material/file-compare", "material/file-delimited-outline", "material/file-delimited", "material/file-document-alert-outline", "material/file-document-alert", "material/file-document-arrow-right-outline", "material/file-document-arrow-right", "material/file-document-check-outline", "material/file-document-check", "material/file-document-edit-outline", "material/file-document-edit", "material/file-document-minus-outline", "material/file-document-minus", "material/file-document-multiple-outline", "material/file-document-multiple", "material/file-document-outline", "material/file-document-plus-outline", "material/file-document-plus", "material/file-document-refresh-outline", "material/file-document-refresh", "material/file-document-remove-outline", "material/file-document-remove", "material/file-document", "material/file-download-outline", "material/file-download", "material/file-edit-outline", "material/file-edit", "material/file-excel-box-outline", "material/file-excel-box", "material/file-excel-outline", "material/file-excel", "material/file-export-outline", "material/file-export", "material/file-eye-outline", "material/file-eye", "material/file-find-outline", "material/file-find", "material/file-gif-box", "material/file-hidden", "material/file-image-marker-outline", "material/file-image-marker", "material/file-image-minus-outline", "material/file-image-minus", "material/file-image-outline", "material/file-image-plus-outline", "material/file-image-plus", "material/file-image-remove-outline", "material/file-image-remove", "material/file-image", "material/file-import-outline", "material/file-import", "material/file-jpg-box", "material/file-key-outline", "material/file-key", "material/file-link-outline", "material/file-link", "material/file-lock-open-outline", "material/file-lock-open", "material/file-lock-outline", "material/file-lock", "material/file-marker-outline", "material/file-marker", "material/file-minus-outline", "material/file-minus", "material/file-move-outline", "material/file-move", "material/file-multiple-outline", "material/file-multiple", "material/file-music-outline", "material/file-music", "material/file-outline", "material/file-pdf-box", "material/file-percent-outline", "material/file-percent", "material/file-phone-outline", "material/file-phone", "material/file-plus-outline", "material/file-plus", "material/file-png-box", "material/file-powerpoint-box-outline", "material/file-powerpoint-box", "material/file-powerpoint-outline", "material/file-powerpoint", "material/file-presentation-box", "material/file-question-outline", "material/file-question", "material/file-refresh-outline", "material/file-refresh", "material/file-remove-outline", "material/file-remove", "material/file-replace-outline", "material/file-replace", "material/file-restore-outline", "material/file-restore", "material/file-rotate-left-outline", "material/file-rotate-left", "material/file-rotate-right-outline", "material/file-rotate-right", "material/file-search-outline", "material/file-search", "material/file-send-outline", "material/file-send", "material/file-settings-outline", "material/file-settings", "material/file-sign", "material/file-star-four-points-outline", "material/file-star-four-points", "material/file-star-outline", "material/file-star", "material/file-swap-outline", "material/file-swap", "material/file-sync-outline", "material/file-sync", "material/file-table-box-multiple-outline", "material/file-table-box-multiple", "material/file-table-box-outline", "material/file-table-box", "material/file-table-outline", "material/file-table", "material/file-tree-outline", "material/file-tree", "material/file-undo-outline", "material/file-undo", "material/file-upload-outline", "material/file-upload", "material/file-video-outline", "material/file-video", "material/file-word-box-outline", "material/file-word-box", "material/file-word-outline", "material/file-word", "material/file-xml-box", "material/file", "material/film", "material/filmstrip-box-multiple", "material/filmstrip-box", "material/filmstrip-off", "material/filmstrip", "material/filter-check-outline", "material/filter-check", "material/filter-cog-outline", "material/filter-cog", "material/filter-menu-outline", "material/filter-menu", "material/filter-minus-outline", "material/filter-minus", "material/filter-multiple-outline", "material/filter-multiple", "material/filter-off-outline", "material/filter-off", "material/filter-outline", "material/filter-plus-outline", "material/filter-plus", "material/filter-remove-outline", "material/filter-remove", "material/filter-settings-outline", "material/filter-settings", "material/filter-variant-minus", "material/filter-variant-plus", "material/filter-variant-remove", "material/filter-variant", "material/filter", "material/finance", "material/find-replace", "material/fingerprint-off", "material/fingerprint", "material/fire-alert", "material/fire-circle", "material/fire-extinguisher", "material/fire-hydrant-alert", "material/fire-hydrant-off", "material/fire-hydrant", "material/fire-off", "material/fire-station", "material/fire-truck", "material/fire", "material/firebase", "material/firefox", "material/fireplace-off", "material/fireplace", "material/firewire", "material/firework-off", "material/firework", "material/fish-off", "material/fish", "material/fishbowl-outline", "material/fishbowl", "material/fit-to-page-outline", "material/fit-to-page", "material/fit-to-screen-outline", "material/fit-to-screen", "material/flag-checkered", "material/flag-minus-outline", "material/flag-minus", "material/flag-off-outline", "material/flag-off", "material/flag-outline", "material/flag-plus-outline", "material/flag-plus", "material/flag-remove-outline", "material/flag-remove", "material/flag-triangle", "material/flag-variant-minus-outline", "material/flag-variant-minus", "material/flag-variant-off-outline", "material/flag-variant-off", "material/flag-variant-outline", "material/flag-variant-plus-outline", "material/flag-variant-plus", "material/flag-variant-remove-outline", "material/flag-variant-remove", "material/flag-variant", "material/flag", "material/flare", "material/flash-alert-outline", "material/flash-alert", "material/flash-auto", "material/flash-off-outline", "material/flash-off", "material/flash-outline", "material/flash-red-eye", "material/flash-triangle-outline", "material/flash-triangle", "material/flash", "material/flashlight-off", "material/flashlight", "material/flask-empty-minus-outline", "material/flask-empty-minus", "material/flask-empty-off-outline", "material/flask-empty-off", "material/flask-empty-outline", "material/flask-empty-plus-outline", "material/flask-empty-plus", "material/flask-empty-remove-outline", "material/flask-empty-remove", "material/flask-empty", "material/flask-minus-outline", "material/flask-minus", "material/flask-off-outline", "material/flask-off", "material/flask-outline", "material/flask-plus-outline", "material/flask-plus", "material/flask-remove-outline", "material/flask-remove", "material/flask-round-bottom-empty-outline", "material/flask-round-bottom-empty", "material/flask-round-bottom-outline", "material/flask-round-bottom", "material/flask", "material/fleur-de-lis", "material/flip-horizontal", "material/flip-to-back", "material/flip-to-front", "material/flip-vertical", "material/floor-lamp-dual-outline", "material/floor-lamp-dual", "material/floor-lamp-outline", "material/floor-lamp-torchiere-outline", "material/floor-lamp-torchiere-variant-outline", "material/floor-lamp-torchiere-variant", "material/floor-lamp-torchiere", "material/floor-lamp", "material/floor-plan", "material/floppy-variant", "material/floppy", "material/flower-outline", "material/flower-pollen-outline", "material/flower-pollen", "material/flower-poppy", "material/flower-tulip-outline", "material/flower-tulip", "material/flower", "material/focus-auto", "material/focus-field-horizontal", "material/focus-field-vertical", "material/focus-field", "material/folder-account-outline", "material/folder-account", "material/folder-alert-outline", "material/folder-alert", "material/folder-arrow-down-outline", "material/folder-arrow-down", "material/folder-arrow-left-outline", "material/folder-arrow-left-right-outline", "material/folder-arrow-left-right", "material/folder-arrow-left", "material/folder-arrow-right-outline", "material/folder-arrow-right", "material/folder-arrow-up-down-outline", "material/folder-arrow-up-down", "material/folder-arrow-up-outline", "material/folder-arrow-up", "material/folder-cancel-outline", "material/folder-cancel", "material/folder-check-outline", "material/folder-check", "material/folder-clock-outline", "material/folder-clock", "material/folder-cog-outline", "material/folder-cog", "material/folder-download-outline", "material/folder-download", "material/folder-edit-outline", "material/folder-edit", "material/folder-eye-outline", "material/folder-eye", "material/folder-file-outline", "material/folder-file", "material/folder-google-drive", "material/folder-heart-outline", "material/folder-heart", "material/folder-hidden", "material/folder-home-outline", "material/folder-home", "material/folder-image", "material/folder-information-outline", "material/folder-information", "material/folder-key-network-outline", "material/folder-key-network", "material/folder-key-outline", "material/folder-key", "material/folder-lock-open-outline", "material/folder-lock-open", "material/folder-lock-outline", "material/folder-lock", "material/folder-marker-outline", "material/folder-marker", "material/folder-minus-outline", "material/folder-minus", "material/folder-move-outline", "material/folder-move", "material/folder-multiple-image", "material/folder-multiple-outline", "material/folder-multiple-plus-outline", "material/folder-multiple-plus", "material/folder-multiple", "material/folder-music-outline", "material/folder-music", "material/folder-network-outline", "material/folder-network", "material/folder-off-outline", "material/folder-off", "material/folder-open-outline", "material/folder-open", "material/folder-outline", "material/folder-play-outline", "material/folder-play", "material/folder-plus-outline", "material/folder-plus", "material/folder-pound-outline", "material/folder-pound", "material/folder-question-outline", "material/folder-question", "material/folder-refresh-outline", "material/folder-refresh", "material/folder-remove-outline", "material/folder-remove", "material/folder-search-outline", "material/folder-search", "material/folder-settings-outline", "material/folder-settings", "material/folder-star-multiple-outline", "material/folder-star-multiple", "material/folder-star-outline", "material/folder-star", "material/folder-swap-outline", "material/folder-swap", "material/folder-sync-outline", "material/folder-sync", "material/folder-table-outline", "material/folder-table", "material/folder-text-outline", "material/folder-text", "material/folder-upload-outline", "material/folder-upload", "material/folder-wrench-outline", "material/folder-wrench", "material/folder-zip-outline", "material/folder-zip", "material/folder", "material/font-awesome", "material/food-apple-outline", "material/food-apple", "material/food-croissant", "material/food-drumstick-off-outline", "material/food-drumstick-off", "material/food-drumstick-outline", "material/food-drumstick", "material/food-fork-drink", "material/food-halal", "material/food-hot-dog", "material/food-kosher", "material/food-off-outline", "material/food-off", "material/food-outline", "material/food-steak-off", "material/food-steak", "material/food-takeout-box-outline", "material/food-takeout-box", "material/food-turkey", "material/food-variant-off", "material/food-variant", "material/food", "material/foot-print", "material/football-australian", "material/football-helmet", "material/football", "material/forest-outline", "material/forest", "material/forklift", "material/form-dropdown", "material/form-select", "material/form-textarea", "material/form-textbox-lock", "material/form-textbox-password", "material/form-textbox", "material/format-align-bottom", "material/format-align-center", "material/format-align-justify", "material/format-align-left", "material/format-align-middle", "material/format-align-right", "material/format-align-top", "material/format-annotation-minus", "material/format-annotation-plus", "material/format-bold", "material/format-clear", "material/format-color-fill", "material/format-color-highlight", "material/format-color-marker-cancel", "material/format-color-text", "material/format-columns", "material/format-float-center", "material/format-float-left", "material/format-float-none", "material/format-float-right", "material/format-font-size-decrease", "material/format-font-size-increase", "material/format-font", "material/format-header-1", "material/format-header-2", "material/format-header-3", "material/format-header-4", "material/format-header-5", "material/format-header-6", "material/format-header-decrease", "material/format-header-equal", "material/format-header-increase", "material/format-header-pound", "material/format-horizontal-align-center", "material/format-horizontal-align-left", "material/format-horizontal-align-right", "material/format-indent-decrease", "material/format-indent-increase", "material/format-italic", "material/format-letter-case-lower", "material/format-letter-case-upper", "material/format-letter-case", "material/format-letter-ends-with", "material/format-letter-matches", "material/format-letter-spacing-variant", "material/format-letter-spacing", "material/format-letter-starts-with", "material/format-line-height", "material/format-line-spacing", "material/format-line-style", "material/format-line-weight", "material/format-list-bulleted-square", "material/format-list-bulleted-triangle", "material/format-list-bulleted-type", "material/format-list-bulleted", "material/format-list-checkbox", "material/format-list-checks", "material/format-list-group-plus", "material/format-list-group", "material/format-list-numbered-rtl", "material/format-list-numbered", "material/format-list-text", "material/format-overline", "material/format-page-break", "material/format-page-split", "material/format-paint", "material/format-paragraph-spacing", "material/format-paragraph", "material/format-pilcrow-arrow-left", "material/format-pilcrow-arrow-right", "material/format-pilcrow", "material/format-quote-close-outline", "material/format-quote-close", "material/format-quote-open-outline", "material/format-quote-open", "material/format-rotate-90", "material/format-section", "material/format-size", "material/format-strikethrough-variant", "material/format-strikethrough", "material/format-subscript", "material/format-superscript", "material/format-text-rotation-angle-down", "material/format-text-rotation-angle-up", "material/format-text-rotation-down-vertical", "material/format-text-rotation-down", "material/format-text-rotation-none", "material/format-text-rotation-up", "material/format-text-rotation-vertical", "material/format-text-variant-outline", "material/format-text-variant", "material/format-text-wrapping-clip", "material/format-text-wrapping-overflow", "material/format-text-wrapping-wrap", "material/format-text", "material/format-textbox", "material/format-title", "material/format-underline-wavy", "material/format-underline", "material/format-vertical-align-bottom", "material/format-vertical-align-center", "material/format-vertical-align-top", "material/format-wrap-inline", "material/format-wrap-square", "material/format-wrap-tight", "material/format-wrap-top-bottom", "material/forum-minus-outline", "material/forum-minus", "material/forum-outline", "material/forum-plus-outline", "material/forum-plus", "material/forum-remove-outline", "material/forum-remove", "material/forum", "material/forward", "material/forwardburger", "material/fountain-pen-tip", "material/fountain-pen", "material/fountain", "material/fraction-one-half", "material/freebsd", "material/french-fries", "material/frequently-asked-questions", "material/fridge-alert-outline", "material/fridge-alert", "material/fridge-bottom", "material/fridge-industrial-alert-outline", "material/fridge-industrial-alert", "material/fridge-industrial-off-outline", "material/fridge-industrial-off", "material/fridge-industrial-outline", "material/fridge-industrial", "material/fridge-off-outline", "material/fridge-off", "material/fridge-outline", "material/fridge-top", "material/fridge-variant-alert-outline", "material/fridge-variant-alert", "material/fridge-variant-off-outline", "material/fridge-variant-off", "material/fridge-variant-outline", "material/fridge-variant", "material/fridge", "material/fruit-cherries-off", "material/fruit-cherries", "material/fruit-citrus-off", "material/fruit-citrus", "material/fruit-grapes-outline", "material/fruit-grapes", "material/fruit-pear", "material/fruit-pineapple", "material/fruit-watermelon", "material/fuel-cell", "material/fuel", "material/fullscreen-exit", "material/fullscreen", "material/function-variant", "material/function", "material/furigana-horizontal", "material/furigana-vertical", "material/fuse-alert", "material/fuse-blade", "material/fuse-off", "material/fuse", "material/gamepad-circle-down", "material/gamepad-circle-left", "material/gamepad-circle-outline", "material/gamepad-circle-right", "material/gamepad-circle-up", "material/gamepad-circle", "material/gamepad-down", "material/gamepad-left", "material/gamepad-outline", "material/gamepad-right", "material/gamepad-round-down", "material/gamepad-round-left", "material/gamepad-round-outline", "material/gamepad-round-right", "material/gamepad-round-up", "material/gamepad-round", "material/gamepad-square-outline", "material/gamepad-square", "material/gamepad-up", "material/gamepad-variant-outline", "material/gamepad-variant", "material/gamepad", "material/gamma", "material/gantry-crane", "material/garage-alert-variant", "material/garage-alert", "material/garage-lock", "material/garage-open-variant", "material/garage-open", "material/garage-variant-lock", "material/garage-variant", "material/garage", "material/gas-burner", "material/gas-cylinder", "material/gas-station-in-use-outline", "material/gas-station-in-use", "material/gas-station-off-outline", "material/gas-station-off", "material/gas-station-outline", "material/gas-station", "material/gate-alert", "material/gate-and", "material/gate-arrow-left", "material/gate-arrow-right", "material/gate-buffer", "material/gate-nand", "material/gate-nor", "material/gate-not", "material/gate-open", "material/gate-or", "material/gate-xnor", "material/gate-xor", "material/gate", "material/gatsby", "material/gauge-empty", "material/gauge-full", "material/gauge-low", "material/gauge", "material/gavel", "material/gender-female", "material/gender-male-female-variant", "material/gender-male-female", "material/gender-male", "material/gender-non-binary", "material/gender-transgender", "material/generator-mobile", "material/generator-portable", "material/generator-stationary", "material/gentoo", "material/gesture-double-tap", "material/gesture-pinch", "material/gesture-spread", "material/gesture-swipe-down", "material/gesture-swipe-horizontal", "material/gesture-swipe-left", "material/gesture-swipe-right", "material/gesture-swipe-up", "material/gesture-swipe-vertical", "material/gesture-swipe", "material/gesture-tap-box", "material/gesture-tap-button", "material/gesture-tap-hold", "material/gesture-tap", "material/gesture-two-double-tap", "material/gesture-two-tap", "material/gesture", "material/ghost-off-outline", "material/ghost-off", "material/ghost-outline", "material/ghost", "material/gift-off-outline", "material/gift-off", "material/gift-open-outline", "material/gift-open", "material/gift-outline", "material/gift", "material/git", "material/github", "material/gitlab", "material/glass-cocktail-off", "material/glass-cocktail", "material/glass-flute", "material/glass-fragile", "material/glass-mug-off", "material/glass-mug-variant-off", "material/glass-mug-variant", "material/glass-mug", "material/glass-pint-outline", "material/glass-stange", "material/glass-tulip", "material/glass-wine", "material/glasses", "material/globe-light-outline", "material/globe-light", "material/globe-model", "material/gmail", "material/gnome", "material/go-kart-track", "material/go-kart", "material/gog", "material/gold", "material/golf-cart", "material/golf-tee", "material/golf", "material/gondola", "material/goodreads", "material/google-ads", "material/google-analytics", "material/google-assistant", "material/google-cardboard", "material/google-chrome", "material/google-circles-communities", "material/google-circles-extended", "material/google-circles-group", "material/google-circles", "material/google-classroom", "material/google-cloud", "material/google-downasaur", "material/google-drive", "material/google-earth", "material/google-fit", "material/google-glass", "material/google-hangouts", "material/google-keep", "material/google-lens", "material/google-maps", "material/google-my-business", "material/google-nearby", "material/google-play", "material/google-plus", "material/google-podcast", "material/google-spreadsheet", "material/google-street-view", "material/google-translate", "material/google", "material/gradient-horizontal", "material/gradient-vertical", "material/grain", "material/graph-outline", "material/graph", "material/graphql", "material/grass", "material/grave-stone", "material/grease-pencil", "material/greater-than-or-equal", "material/greater-than", "material/greenhouse", "material/grid-large", "material/grid-off", "material/grid", "material/grill-outline", "material/grill", "material/group", "material/guitar-acoustic", "material/guitar-electric", "material/guitar-pick-outline", "material/guitar-pick", "material/guy-fawkes-mask", "material/gymnastics", "material/hail", "material/hair-dryer-outline", "material/hair-dryer", "material/halloween", "material/hamburger-check", "material/hamburger-minus", "material/hamburger-off", "material/hamburger-plus", "material/hamburger-remove", "material/hamburger", "material/hammer-screwdriver", "material/hammer-sickle", "material/hammer-wrench", "material/hammer", "material/hand-back-left-off-outline", "material/hand-back-left-off", "material/hand-back-left-outline", "material/hand-back-left", "material/hand-back-right-off-outline", "material/hand-back-right-off", "material/hand-back-right-outline", "material/hand-back-right", "material/hand-clap-off", "material/hand-clap", "material/hand-coin-outline", "material/hand-coin", "material/hand-cycle", "material/hand-extended-outline", "material/hand-extended", "material/hand-front-left-outline", "material/hand-front-left", "material/hand-front-right-outline", "material/hand-front-right", "material/hand-heart-outline", "material/hand-heart", "material/hand-okay", "material/hand-peace-variant", "material/hand-peace", "material/hand-pointing-down", "material/hand-pointing-left", "material/hand-pointing-right", "material/hand-pointing-up", "material/hand-saw", "material/hand-wash-outline", "material/hand-wash", "material/hand-water", "material/hand-wave-outline", "material/hand-wave", "material/handball", "material/handcuffs", "material/hands-pray", "material/handshake-outline", "material/handshake", "material/hanger", "material/hard-hat", "material/harddisk-plus", "material/harddisk-remove", "material/harddisk", "material/hat-fedora", "material/hazard-lights", "material/hdmi-port", "material/hdr-off", "material/hdr", "material/head-alert-outline", "material/head-alert", "material/head-check-outline", "material/head-check", "material/head-cog-outline", "material/head-cog", "material/head-dots-horizontal-outline", "material/head-dots-horizontal", "material/head-flash-outline", "material/head-flash", "material/head-heart-outline", "material/head-heart", "material/head-lightbulb-outline", "material/head-lightbulb", "material/head-minus-outline", "material/head-minus", "material/head-outline", "material/head-plus-outline", "material/head-plus", "material/head-question-outline", "material/head-question", "material/head-remove-outline", "material/head-remove", "material/head-snowflake-outline", "material/head-snowflake", "material/head-sync-outline", "material/head-sync", "material/head", "material/headphones-bluetooth", "material/headphones-box", "material/headphones-off", "material/headphones-settings", "material/headphones", "material/headset-dock", "material/headset-off", "material/headset", "material/heart-box-outline", "material/heart-box", "material/heart-broken-outline", "material/heart-broken", "material/heart-circle-outline", "material/heart-circle", "material/heart-cog-outline", "material/heart-cog", "material/heart-flash", "material/heart-half-full", "material/heart-half-outline", "material/heart-half", "material/heart-minus-outline", "material/heart-minus", "material/heart-multiple-outline", "material/heart-multiple", "material/heart-off-outline", "material/heart-off", "material/heart-outline", "material/heart-plus-outline", "material/heart-plus", "material/heart-pulse", "material/heart-remove-outline", "material/heart-remove", "material/heart-search", "material/heart-settings-outline", "material/heart-settings", "material/heart", "material/heat-pump-outline", "material/heat-pump", "material/heat-wave", "material/heating-coil", "material/helicopter", "material/help-box-multiple-outline", "material/help-box-multiple", "material/help-box-outline", "material/help-box", "material/help-circle-outline", "material/help-circle", "material/help-network-outline", "material/help-network", "material/help-rhombus-outline", "material/help-rhombus", "material/help", "material/hexadecimal", "material/hexagon-multiple-outline", "material/hexagon-multiple", "material/hexagon-outline", "material/hexagon-slice-1", "material/hexagon-slice-2", "material/hexagon-slice-3", "material/hexagon-slice-4", "material/hexagon-slice-5", "material/hexagon-slice-6", "material/hexagon", "material/hexagram-outline", "material/hexagram", "material/high-definition-box", "material/high-definition", "material/highway", "material/hiking", "material/history", "material/hockey-puck", "material/hockey-sticks", "material/hololens", "material/home-account", "material/home-alert-outline", "material/home-alert", "material/home-analytics", "material/home-assistant", "material/home-automation", "material/home-battery-outline", "material/home-battery", "material/home-circle-outline", "material/home-circle", "material/home-city-outline", "material/home-city", "material/home-clock-outline", "material/home-clock", "material/home-edit-outline", "material/home-edit", "material/home-export-outline", "material/home-flood", "material/home-floor-0", "material/home-floor-1", "material/home-floor-2", "material/home-floor-3", "material/home-floor-a", "material/home-floor-b", "material/home-floor-g", "material/home-floor-l", "material/home-floor-negative-1", "material/home-group-minus", "material/home-group-plus", "material/home-group-remove", "material/home-group", "material/home-heart", "material/home-import-outline", "material/home-lightbulb-outline", "material/home-lightbulb", "material/home-lightning-bolt-outline", "material/home-lightning-bolt", "material/home-lock-open", "material/home-lock", "material/home-map-marker", "material/home-minus-outline", "material/home-minus", "material/home-modern", "material/home-off-outline", "material/home-off", "material/home-outline", "material/home-percent-outline", "material/home-percent", "material/home-plus-outline", "material/home-plus", "material/home-remove-outline", "material/home-remove", "material/home-roof", "material/home-search-outline", "material/home-search", "material/home-silo-outline", "material/home-silo", "material/home-sound-in-outline", "material/home-sound-in", "material/home-sound-out-outline", "material/home-sound-out", "material/home-switch-outline", "material/home-switch", "material/home-thermometer-outline", "material/home-thermometer", "material/home-variant-outline", "material/home-variant", "material/home", "material/hook-off", "material/hook", "material/hoop-house", "material/hops", "material/horizontal-rotate-clockwise", "material/horizontal-rotate-counterclockwise", "material/horse-human", "material/horse-variant-fast", "material/horse-variant", "material/horse", "material/horseshoe", "material/hospital-box-outline", "material/hospital-box", "material/hospital-building", "material/hospital-marker", "material/hospital", "material/hot-tub", "material/hours-12", "material/hours-24", "material/hub-outline", "material/hub", "material/hubspot", "material/hulu", "material/human-baby-changing-table", "material/human-cane", "material/human-capacity-decrease", "material/human-capacity-increase", "material/human-child", "material/human-dolly", "material/human-edit", "material/human-female-boy", "material/human-female-dance", "material/human-female-female-child", "material/human-female-female", "material/human-female-girl", "material/human-female", "material/human-greeting-proximity", "material/human-greeting-variant", "material/human-greeting", "material/human-handsdown", "material/human-handsup", "material/human-male-board-poll", "material/human-male-board", "material/human-male-boy", "material/human-male-child", "material/human-male-female-child", "material/human-male-female", "material/human-male-girl", "material/human-male-height-variant", "material/human-male-height", "material/human-male-male-child", "material/human-male-male", "material/human-male", "material/human-non-binary", "material/human-pregnant", "material/human-queue", "material/human-scooter", "material/human-walker", "material/human-wheelchair", "material/human-white-cane", "material/human", "material/humble-bundle", "material/hvac-off", "material/hvac", "material/hydraulic-oil-level", "material/hydraulic-oil-temperature", "material/hydro-power", "material/hydrogen-station", "material/ice-cream-off", "material/ice-cream", "material/ice-pop", "material/id-card", "material/identifier", "material/ideogram-cjk-variant", "material/ideogram-cjk", "material/image-album", "material/image-area-close", "material/image-area", "material/image-auto-adjust", "material/image-broken-variant", "material/image-broken", "material/image-check-outline", "material/image-check", "material/image-edit-outline", "material/image-edit", "material/image-filter-black-white", "material/image-filter-center-focus-strong-outline", "material/image-filter-center-focus-strong", "material/image-filter-center-focus-weak", "material/image-filter-center-focus", "material/image-filter-drama-outline", "material/image-filter-drama", "material/image-filter-frames", "material/image-filter-hdr-outline", "material/image-filter-hdr", "material/image-filter-none", "material/image-filter-tilt-shift", "material/image-filter-vintage", "material/image-frame", "material/image-lock-outline", "material/image-lock", "material/image-marker-outline", "material/image-marker", "material/image-minus-outline", "material/image-minus", "material/image-move", "material/image-multiple-outline", "material/image-multiple", "material/image-off-outline", "material/image-off", "material/image-outline", "material/image-plus-outline", "material/image-plus", "material/image-refresh-outline", "material/image-refresh", "material/image-remove-outline", "material/image-remove", "material/image-search-outline", "material/image-search", "material/image-size-select-actual", "material/image-size-select-large", "material/image-size-select-small", "material/image-sync-outline", "material/image-sync", "material/image-text", "material/image", "material/import", "material/inbox-arrow-down-outline", "material/inbox-arrow-down", "material/inbox-arrow-up-outline", "material/inbox-arrow-up", "material/inbox-full-outline", "material/inbox-full", "material/inbox-multiple-outline", "material/inbox-multiple", "material/inbox-outline", "material/inbox-remove-outline", "material/inbox-remove", "material/inbox", "material/incognito-circle-off", "material/incognito-circle", "material/incognito-off", "material/incognito", "material/induction", "material/infinity", "material/information-box-outline", "material/information-box", "material/information-off-outline", "material/information-off", "material/information-outline", "material/information-slab-box-outline", "material/information-slab-box", "material/information-slab-circle-outline", "material/information-slab-circle", "material/information-slab-symbol", "material/information-symbol", "material/information-variant-box-outline", "material/information-variant-box", "material/information-variant-circle-outline", "material/information-variant-circle", "material/information-variant", "material/information", "material/instagram", "material/instrument-triangle", "material/integrated-circuit-chip", "material/invert-colors-off", "material/invert-colors", "material/invoice-arrow-left-outline", "material/invoice-arrow-left", "material/invoice-arrow-right-outline", "material/invoice-arrow-right", "material/invoice-check-outline", "material/invoice-check", "material/invoice-clock-outline", "material/invoice-clock", "material/invoice-edit-outline", "material/invoice-edit", "material/invoice-export-outline", "material/invoice-fast-outline", "material/invoice-fast", "material/invoice-import-outline", "material/invoice-import", "material/invoice-list-outline", "material/invoice-list", "material/invoice-minus-outline", "material/invoice-minus", "material/invoice-multiple-outline", "material/invoice-multiple", "material/invoice-outline", "material/invoice-plus-outline", "material/invoice-plus", "material/invoice-remove-outline", "material/invoice-remove", "material/invoice-send-outline", "material/invoice-send", "material/invoice-text-arrow-left-outline", "material/invoice-text-arrow-left", "material/invoice-text-arrow-right-outline", "material/invoice-text-arrow-right", "material/invoice-text-check-outline", "material/invoice-text-check", "material/invoice-text-clock-outline", "material/invoice-text-clock", "material/invoice-text-edit-outline", "material/invoice-text-edit", "material/invoice-text-fast-outline", "material/invoice-text-fast", "material/invoice-text-minus-outline", "material/invoice-text-minus", "material/invoice-text-multiple-outline", "material/invoice-text-multiple", "material/invoice-text-outline", "material/invoice-text-plus-outline", "material/invoice-text-plus", "material/invoice-text-remove-outline", "material/invoice-text-remove", "material/invoice-text-send-outline", "material/invoice-text-send", "material/invoice-text", "material/invoice", "material/iobroker", "material/ip-network-outline", "material/ip-network", "material/ip-outline", "material/ip", "material/ipod", "material/iron-board", "material/iron-outline", "material/iron", "material/island-variant", "material/island", "material/iv-bag", "material/jabber", "material/jeepney", "material/jellyfish-outline", "material/jellyfish", "material/jira", "material/jquery", "material/jsfiddle", "material/jump-rope", "material/kabaddi", "material/kangaroo", "material/karate", "material/kayaking", "material/keg", "material/kettle-alert-outline", "material/kettle-alert", "material/kettle-off-outline", "material/kettle-off", "material/kettle-outline", "material/kettle-pour-over", "material/kettle-steam-outline", "material/kettle-steam", "material/kettle", "material/kettlebell", "material/key-alert-outline", "material/key-alert", "material/key-arrow-right", "material/key-chain-variant", "material/key-chain", "material/key-change", "material/key-link", "material/key-minus", "material/key-outline", "material/key-plus", "material/key-remove", "material/key-star", "material/key-variant", "material/key-wireless", "material/key", "material/keyboard-backspace", "material/keyboard-caps", "material/keyboard-close-outline", "material/keyboard-close", "material/keyboard-esc", "material/keyboard-f1", "material/keyboard-f10", "material/keyboard-f11", "material/keyboard-f12", "material/keyboard-f2", "material/keyboard-f3", "material/keyboard-f4", "material/keyboard-f5", "material/keyboard-f6", "material/keyboard-f7", "material/keyboard-f8", "material/keyboard-f9", "material/keyboard-off-outline", "material/keyboard-off", "material/keyboard-outline", "material/keyboard-return", "material/keyboard-settings-outline", "material/keyboard-settings", "material/keyboard-space", "material/keyboard-tab-reverse", "material/keyboard-tab", "material/keyboard-variant", "material/keyboard", "material/khanda", "material/kickstarter", "material/kite-outline", "material/kite", "material/kitesurfing", "material/klingon", "material/knife-military", "material/knife", "material/knob", "material/koala", "material/kodi", "material/kubernetes", "material/label-multiple-outline", "material/label-multiple", "material/label-off-outline", "material/label-off", "material/label-outline", "material/label-percent-outline", "material/label-percent", "material/label-variant-outline", "material/label-variant", "material/label", "material/ladder", "material/ladybug", "material/lambda", "material/lamp-outline", "material/lamp", "material/lamps-outline", "material/lamps", "material/lan-check", "material/lan-connect", "material/lan-disconnect", "material/lan-pending", "material/lan", "material/land-fields", "material/land-plots-circle-variant", "material/land-plots-circle", "material/land-plots-marker", "material/land-plots", "material/land-rows-horizontal", "material/land-rows-vertical", "material/landslide-outline", "material/landslide", "material/language-c", "material/language-cpp", "material/language-csharp", "material/language-css3", "material/language-fortran", "material/language-go", "material/language-haskell", "material/language-html5", "material/language-java", "material/language-javascript", "material/language-kotlin", "material/language-lua", "material/language-markdown-outline", "material/language-markdown", "material/language-php", "material/language-python", "material/language-r", "material/language-ruby-on-rails", "material/language-ruby", "material/language-rust", "material/language-swift", "material/language-typescript", "material/language-xaml", "material/laptop-account", "material/laptop-off", "material/laptop", "material/laravel", "material/laser-pointer", "material/lasso", "material/lastpass", "material/latitude", "material/launch", "material/lava-lamp", "material/layers-edit", "material/layers-minus", "material/layers-off-outline", "material/layers-off", "material/layers-outline", "material/layers-plus", "material/layers-remove", "material/layers-search-outline", "material/layers-search", "material/layers-triple-outline", "material/layers-triple", "material/layers", "material/lead-pencil", "material/leaf-circle-outline", "material/leaf-circle", "material/leaf-maple-off", "material/leaf-maple", "material/leaf-off", "material/leaf", "material/leak-off", "material/leak", "material/lectern", "material/led-off", "material/led-on", "material/led-outline", "material/led-strip-variant-off", "material/led-strip-variant", "material/led-strip", "material/led-variant-off", "material/led-variant-on", "material/led-variant-outline", "material/leek", "material/less-than-or-equal", "material/less-than", "material/library-outline", "material/library-shelves", "material/library", "material/license", "material/lifebuoy", "material/light-flood-down", "material/light-flood-up", "material/light-recessed", "material/light-switch-off", "material/light-switch", "material/lightbulb-alert-outline", "material/lightbulb-alert", "material/lightbulb-auto-outline", "material/lightbulb-auto", "material/lightbulb-cfl-off", "material/lightbulb-cfl-spiral-off", "material/lightbulb-cfl-spiral", "material/lightbulb-cfl", "material/lightbulb-fluorescent-tube-outline", "material/lightbulb-fluorescent-tube", "material/lightbulb-group-off-outline", "material/lightbulb-group-off", "material/lightbulb-group-outline", "material/lightbulb-group", "material/lightbulb-multiple-off-outline", "material/lightbulb-multiple-off", "material/lightbulb-multiple-outline", "material/lightbulb-multiple", "material/lightbulb-night-outline", "material/lightbulb-night", "material/lightbulb-off-outline", "material/lightbulb-off", "material/lightbulb-on-10", "material/lightbulb-on-20", "material/lightbulb-on-30", "material/lightbulb-on-40", "material/lightbulb-on-50", "material/lightbulb-on-60", "material/lightbulb-on-70", "material/lightbulb-on-80", "material/lightbulb-on-90", "material/lightbulb-on-outline", "material/lightbulb-on", "material/lightbulb-outline", "material/lightbulb-question-outline", "material/lightbulb-question", "material/lightbulb-spot-off", "material/lightbulb-spot", "material/lightbulb-variant-outline", "material/lightbulb-variant", "material/lightbulb", "material/lighthouse-on", "material/lighthouse", "material/lightning-bolt-circle", "material/lightning-bolt-outline", "material/lightning-bolt", "material/line-scan", "material/lingerie", "material/link-box-outline", "material/link-box-variant-outline", "material/link-box-variant", "material/link-box", "material/link-circle-outline", "material/link-circle", "material/link-edit", "material/link-lock", "material/link-off", "material/link-plus", "material/link-variant-minus", "material/link-variant-off", "material/link-variant-plus", "material/link-variant-remove", "material/link-variant", "material/link", "material/linkedin", "material/linux-mint", "material/linux", "material/lipstick", "material/liquid-spot", "material/liquor", "material/list-box-outline", "material/list-box", "material/list-status", "material/litecoin", "material/loading", "material/location-enter", "material/location-exit", "material/lock-alert-outline", "material/lock-alert", "material/lock-check-outline", "material/lock-check", "material/lock-clock", "material/lock-minus-outline", "material/lock-minus", "material/lock-off-outline", "material/lock-off", "material/lock-open-alert-outline", "material/lock-open-alert", "material/lock-open-check-outline", "material/lock-open-check", "material/lock-open-minus-outline", "material/lock-open-minus", "material/lock-open-outline", "material/lock-open-plus-outline", "material/lock-open-plus", "material/lock-open-remove-outline", "material/lock-open-remove", "material/lock-open-variant-outline", "material/lock-open-variant", "material/lock-open", "material/lock-outline", "material/lock-pattern", "material/lock-percent-open-outline", "material/lock-percent-open-variant-outline", "material/lock-percent-open-variant", "material/lock-percent-open", "material/lock-percent-outline", "material/lock-percent", "material/lock-plus-outline", "material/lock-plus", "material/lock-question", "material/lock-remove-outline", "material/lock-remove", "material/lock-reset", "material/lock-smart", "material/lock", "material/locker-multiple", "material/locker", "material/login-variant", "material/login", "material/logout-variant", "material/logout", "material/longitude", "material/looks", "material/lotion-outline", "material/lotion-plus-outline", "material/lotion-plus", "material/lotion", "material/loupe", "material/lumx", "material/lungs", "material/mace", "material/magazine-pistol", "material/magazine-rifle", "material/magic-staff", "material/magnet-on", "material/magnet", "material/magnify-close", "material/magnify-expand", "material/magnify-minus-cursor", "material/magnify-minus-outline", "material/magnify-minus", "material/magnify-plus-cursor", "material/magnify-plus-outline", "material/magnify-plus", "material/magnify-remove-cursor", "material/magnify-remove-outline", "material/magnify-scan", "material/magnify", "material/mail", "material/mailbox-open-outline", "material/mailbox-open-up-outline", "material/mailbox-open-up", "material/mailbox-open", "material/mailbox-outline", "material/mailbox-up-outline", "material/mailbox-up", "material/mailbox", "material/manjaro", "material/map-check-outline", "material/map-check", "material/map-clock-outline", "material/map-clock", "material/map-legend", "material/map-marker-account-outline", "material/map-marker-account", "material/map-marker-alert-outline", "material/map-marker-alert", "material/map-marker-check-outline", "material/map-marker-check", "material/map-marker-circle", "material/map-marker-distance", "material/map-marker-down", "material/map-marker-left-outline", "material/map-marker-left", "material/map-marker-minus-outline", "material/map-marker-minus", "material/map-marker-multiple-outline", "material/map-marker-multiple", "material/map-marker-off-outline", "material/map-marker-off", "material/map-marker-outline", "material/map-marker-path", "material/map-marker-plus-outline", "material/map-marker-plus", "material/map-marker-question-outline", "material/map-marker-question", "material/map-marker-radius-outline", "material/map-marker-radius", "material/map-marker-remove-outline", "material/map-marker-remove-variant", "material/map-marker-remove", "material/map-marker-right-outline", "material/map-marker-right", "material/map-marker-star-outline", "material/map-marker-star", "material/map-marker-up", "material/map-marker", "material/map-minus", "material/map-outline", "material/map-plus", "material/map-search-outline", "material/map-search", "material/map", "material/mapbox", "material/margin", "material/marker-cancel", "material/marker-check", "material/marker", "material/mastodon", "material/material-design", "material/material-ui", "material/math-compass", "material/math-cos", "material/math-integral-box", "material/math-integral", "material/math-log", "material/math-norm-box", "material/math-norm", "material/math-sin", "material/math-tan", "material/matrix", "material/medal-outline", "material/medal", "material/medical-bag", "material/medical-cotton-swab", "material/medication-outline", "material/medication", "material/meditation", "material/memory-arrow-down", "material/memory", "material/menorah-fire", "material/menorah", "material/menu-close", "material/menu-down-outline", "material/menu-down", "material/menu-left-outline", "material/menu-left", "material/menu-open", "material/menu-right-outline", "material/menu-right", "material/menu-swap-outline", "material/menu-swap", "material/menu-up-outline", "material/menu-up", "material/menu", "material/merge", "material/message-alert-outline", "material/message-alert", "material/message-arrow-left-outline", "material/message-arrow-left", "material/message-arrow-right-outline", "material/message-arrow-right", "material/message-badge-outline", "material/message-badge", "material/message-bookmark-outline", "material/message-bookmark", "material/message-bulleted-off", "material/message-bulleted", "material/message-check-outline", "material/message-check", "material/message-cog-outline", "material/message-cog", "material/message-draw", "material/message-fast-outline", "material/message-fast", "material/message-flash-outline", "material/message-flash", "material/message-image-outline", "material/message-image", "material/message-lock-outline", "material/message-lock", "material/message-minus-outline", "material/message-minus", "material/message-off-outline", "material/message-off", "material/message-outline", "material/message-plus-outline", "material/message-plus", "material/message-processing-outline", "material/message-processing", "material/message-question-outline", "material/message-question", "material/message-reply-outline", "material/message-reply-text-outline", "material/message-reply-text", "material/message-reply", "material/message-settings-outline", "material/message-settings", "material/message-star-outline", "material/message-star", "material/message-text-clock-outline", "material/message-text-clock", "material/message-text-fast-outline", "material/message-text-fast", "material/message-text-lock-outline", "material/message-text-lock", "material/message-text-outline", "material/message-text", "material/message-video", "material/message", "material/meteor", "material/meter-electric-outline", "material/meter-electric", "material/meter-gas-outline", "material/meter-gas", "material/metronome-tick", "material/metronome", "material/micro-sd", "material/microphone-message-off", "material/microphone-message", "material/microphone-minus", "material/microphone-off", "material/microphone-outline", "material/microphone-plus", "material/microphone-question-outline", "material/microphone-question", "material/microphone-settings", "material/microphone-variant-off", "material/microphone-variant", "material/microphone", "material/microscope", "material/microsoft-access", "material/microsoft-azure-devops", "material/microsoft-azure", "material/microsoft-bing", "material/microsoft-dynamics-365", "material/microsoft-edge", "material/microsoft-excel", "material/microsoft-internet-explorer", "material/microsoft-office", "material/microsoft-onedrive", "material/microsoft-onenote", "material/microsoft-outlook", "material/microsoft-powerpoint", "material/microsoft-sharepoint", "material/microsoft-teams", "material/microsoft-visual-studio-code", "material/microsoft-visual-studio", "material/microsoft-windows-classic", "material/microsoft-windows", "material/microsoft-word", "material/microsoft-xbox-controller-battery-alert", "material/microsoft-xbox-controller-battery-charging", "material/microsoft-xbox-controller-battery-empty", "material/microsoft-xbox-controller-battery-full", "material/microsoft-xbox-controller-battery-low", "material/microsoft-xbox-controller-battery-medium", "material/microsoft-xbox-controller-battery-unknown", "material/microsoft-xbox-controller-menu", "material/microsoft-xbox-controller-off", "material/microsoft-xbox-controller-view", "material/microsoft-xbox-controller", "material/microsoft-xbox", "material/microsoft", "material/microwave-off", "material/microwave", "material/middleware-outline", "material/middleware", "material/midi-port", "material/midi", "material/mine", "material/minecraft", "material/mini-sd", "material/minidisc", "material/minus-box-multiple-outline", "material/minus-box-multiple", "material/minus-box-outline", "material/minus-box", "material/minus-circle-multiple-outline", "material/minus-circle-multiple", "material/minus-circle-off-outline", "material/minus-circle-off", "material/minus-circle-outline", "material/minus-circle", "material/minus-network-outline", "material/minus-network", "material/minus-thick", "material/minus", "material/mirror-rectangle", "material/mirror-variant", "material/mirror", "material/mixed-martial-arts", "material/mixed-reality", "material/molecule-co", "material/molecule-co2", "material/molecule", "material/monitor-account", "material/monitor-arrow-down-variant", "material/monitor-arrow-down", "material/monitor-cellphone-star", "material/monitor-cellphone", "material/monitor-dashboard", "material/monitor-edit", "material/monitor-eye", "material/monitor-lock", "material/monitor-multiple", "material/monitor-off", "material/monitor-screenshot", "material/monitor-share", "material/monitor-shimmer", "material/monitor-small", "material/monitor-speaker-off", "material/monitor-speaker", "material/monitor-star", "material/monitor-vertical", "material/monitor", "material/moon-first-quarter", "material/moon-full", "material/moon-last-quarter", "material/moon-new", "material/moon-waning-crescent", "material/moon-waning-gibbous", "material/moon-waxing-crescent", "material/moon-waxing-gibbous", "material/moped-electric-outline", "material/moped-electric", "material/moped-outline", "material/moped", "material/more", "material/mortar-pestle-plus", "material/mortar-pestle", "material/mosque-outline", "material/mosque", "material/mother-heart", "material/mother-nurse", "material/motion-outline", "material/motion-pause-outline", "material/motion-pause", "material/motion-play-outline", "material/motion-play", "material/motion-sensor-off", "material/motion-sensor", "material/motion", "material/motorbike-electric", "material/motorbike-off", "material/motorbike", "material/mouse-bluetooth", "material/mouse-left-click-outline", "material/mouse-left-click", "material/mouse-move-down", "material/mouse-move-up", "material/mouse-move-vertical", "material/mouse-off", "material/mouse-outline", "material/mouse-right-click-outline", "material/mouse-right-click", "material/mouse-scroll-wheel", "material/mouse-variant-off", "material/mouse-variant", "material/mouse", "material/move-resize-variant", "material/move-resize", "material/movie-check-outline", "material/movie-check", "material/movie-cog-outline", "material/movie-cog", "material/movie-edit-outline", "material/movie-edit", "material/movie-filter-outline", "material/movie-filter", "material/movie-minus-outline", "material/movie-minus", "material/movie-off-outline", "material/movie-off", "material/movie-open-check-outline", "material/movie-open-check", "material/movie-open-cog-outline", "material/movie-open-cog", "material/movie-open-edit-outline", "material/movie-open-edit", "material/movie-open-minus-outline", "material/movie-open-minus", "material/movie-open-off-outline", "material/movie-open-off", "material/movie-open-outline", "material/movie-open-play-outline", "material/movie-open-play", "material/movie-open-plus-outline", "material/movie-open-plus", "material/movie-open-remove-outline", "material/movie-open-remove", "material/movie-open-settings-outline", "material/movie-open-settings", "material/movie-open-star-outline", "material/movie-open-star", "material/movie-open", "material/movie-outline", "material/movie-play-outline", "material/movie-play", "material/movie-plus-outline", "material/movie-plus", "material/movie-remove-outline", "material/movie-remove", "material/movie-roll", "material/movie-search-outline", "material/movie-search", "material/movie-settings-outline", "material/movie-settings", "material/movie-star-outline", "material/movie-star", "material/movie", "material/mower-bag-on", "material/mower-bag", "material/mower-on", "material/mower", "material/muffin", "material/multicast", "material/multimedia", "material/multiplication-box", "material/multiplication", "material/mushroom-off-outline", "material/mushroom-off", "material/mushroom-outline", "material/mushroom", "material/music-accidental-double-flat", "material/music-accidental-double-sharp", "material/music-accidental-flat", "material/music-accidental-natural", "material/music-accidental-sharp", "material/music-box-multiple-outline", "material/music-box-multiple", "material/music-box-outline", "material/music-box", "material/music-circle-outline", "material/music-circle", "material/music-clef-alto", "material/music-clef-bass", "material/music-clef-treble", "material/music-note-bluetooth-off", "material/music-note-bluetooth", "material/music-note-eighth-dotted", "material/music-note-eighth", "material/music-note-half-dotted", "material/music-note-half", "material/music-note-minus", "material/music-note-off-outline", "material/music-note-off", "material/music-note-outline", "material/music-note-plus", "material/music-note-quarter-dotted", "material/music-note-quarter", "material/music-note-sixteenth-dotted", "material/music-note-sixteenth", "material/music-note-whole-dotted", "material/music-note-whole", "material/music-note", "material/music-off", "material/music-rest-eighth", "material/music-rest-half", "material/music-rest-quarter", "material/music-rest-sixteenth", "material/music-rest-whole", "material/music", "material/mustache", "material/nail", "material/nas", "material/nativescript", "material/nature-outline", "material/nature-people-outline", "material/nature-people", "material/nature", "material/navigation-outline", "material/navigation-variant-outline", "material/navigation-variant", "material/navigation", "material/near-me", "material/necklace", "material/needle-off", "material/needle", "material/netflix", "material/network-off-outline", "material/network-off", "material/network-outline", "material/network-pos", "material/network-strength-1-alert", "material/network-strength-1", "material/network-strength-2-alert", "material/network-strength-2", "material/network-strength-3-alert", "material/network-strength-3", "material/network-strength-4-alert", "material/network-strength-4-cog", "material/network-strength-4", "material/network-strength-off-outline", "material/network-strength-off", "material/network-strength-outline", "material/network", "material/new-box", "material/newspaper-check", "material/newspaper-minus", "material/newspaper-plus", "material/newspaper-remove", "material/newspaper-variant-multiple-outline", "material/newspaper-variant-multiple", "material/newspaper-variant-outline", "material/newspaper-variant", "material/newspaper", "material/nfc-search-variant", "material/nfc-tap", "material/nfc-variant-off", "material/nfc-variant", "material/nfc", "material/ninja", "material/nintendo-game-boy", "material/nintendo-switch", "material/nintendo-wii", "material/nintendo-wiiu", "material/nix", "material/nodejs", "material/noodles", "material/not-equal-variant", "material/not-equal", "material/note-alert-outline", "material/note-alert", "material/note-check-outline", "material/note-check", "material/note-edit-outline", "material/note-edit", "material/note-minus-outline", "material/note-minus", "material/note-multiple-outline", "material/note-multiple", "material/note-off-outline", "material/note-off", "material/note-outline", "material/note-plus-outline", "material/note-plus", "material/note-remove-outline", "material/note-remove", "material/note-search-outline", "material/note-search", "material/note-text-outline", "material/note-text", "material/note", "material/notebook-check-outline", "material/notebook-check", "material/notebook-edit-outline", "material/notebook-edit", "material/notebook-heart-outline", "material/notebook-heart", "material/notebook-minus-outline", "material/notebook-minus", "material/notebook-multiple", "material/notebook-outline", "material/notebook-plus-outline", "material/notebook-plus", "material/notebook-remove-outline", "material/notebook-remove", "material/notebook", "material/notification-clear-all", "material/npm", "material/nuke", "material/null", "material/numeric-0-box-multiple-outline", "material/numeric-0-box-multiple", "material/numeric-0-box-outline", "material/numeric-0-box", "material/numeric-0-circle-outline", "material/numeric-0-circle", "material/numeric-0", "material/numeric-1-box-multiple-outline", "material/numeric-1-box-multiple", "material/numeric-1-box-outline", "material/numeric-1-box", "material/numeric-1-circle-outline", "material/numeric-1-circle", "material/numeric-1", "material/numeric-10-box-multiple-outline", "material/numeric-10-box-multiple", "material/numeric-10-box-outline", "material/numeric-10-box", "material/numeric-10-circle-outline", "material/numeric-10-circle", "material/numeric-10", "material/numeric-2-box-multiple-outline", "material/numeric-2-box-multiple", "material/numeric-2-box-outline", "material/numeric-2-box", "material/numeric-2-circle-outline", "material/numeric-2-circle", "material/numeric-2", "material/numeric-3-box-multiple-outline", "material/numeric-3-box-multiple", "material/numeric-3-box-outline", "material/numeric-3-box", "material/numeric-3-circle-outline", "material/numeric-3-circle", "material/numeric-3", "material/numeric-4-box-multiple-outline", "material/numeric-4-box-multiple", "material/numeric-4-box-outline", "material/numeric-4-box", "material/numeric-4-circle-outline", "material/numeric-4-circle", "material/numeric-4", "material/numeric-5-box-multiple-outline", "material/numeric-5-box-multiple", "material/numeric-5-box-outline", "material/numeric-5-box", "material/numeric-5-circle-outline", "material/numeric-5-circle", "material/numeric-5", "material/numeric-6-box-multiple-outline", "material/numeric-6-box-multiple", "material/numeric-6-box-outline", "material/numeric-6-box", "material/numeric-6-circle-outline", "material/numeric-6-circle", "material/numeric-6", "material/numeric-7-box-multiple-outline", "material/numeric-7-box-multiple", "material/numeric-7-box-outline", "material/numeric-7-box", "material/numeric-7-circle-outline", "material/numeric-7-circle", "material/numeric-7", "material/numeric-8-box-multiple-outline", "material/numeric-8-box-multiple", "material/numeric-8-box-outline", "material/numeric-8-box", "material/numeric-8-circle-outline", "material/numeric-8-circle", "material/numeric-8", "material/numeric-9-box-multiple-outline", "material/numeric-9-box-multiple", "material/numeric-9-box-outline", "material/numeric-9-box", "material/numeric-9-circle-outline", "material/numeric-9-circle", "material/numeric-9-plus-box-multiple-outline", "material/numeric-9-plus-box-multiple", "material/numeric-9-plus-box-outline", "material/numeric-9-plus-box", "material/numeric-9-plus-circle-outline", "material/numeric-9-plus-circle", "material/numeric-9-plus", "material/numeric-9", "material/numeric-negative-1", "material/numeric-off", "material/numeric-positive-1", "material/numeric", "material/nut", "material/nutrition", "material/nuxt", "material/oar", "material/ocarina", "material/oci", "material/ocr", "material/octagon-outline", "material/octagon", "material/octagram-edit-outline", "material/octagram-edit", "material/octagram-minus-outline", "material/octagram-minus", "material/octagram-outline", "material/octagram-plus-outline", "material/octagram-plus", "material/octagram", "material/octahedron-off", "material/octahedron", "material/odnoklassniki", "material/offer", "material/office-building-cog-outline", "material/office-building-cog", "material/office-building-marker-outline", "material/office-building-marker", "material/office-building-minus-outline", "material/office-building-minus", "material/office-building-outline", "material/office-building-plus-outline", "material/office-building-plus", "material/office-building-remove-outline", "material/office-building-remove", "material/office-building", "material/oil-lamp", "material/oil-level", "material/oil-temperature", "material/oil", "material/om", "material/omega", "material/one-up", "material/onepassword", "material/opacity", "material/open-in-app", "material/open-in-new", "material/open-source-initiative", "material/openid", "material/opera", "material/orbit-variant", "material/orbit", "material/order-alphabetical-ascending", "material/order-alphabetical-descending", "material/order-bool-ascending-variant", "material/order-bool-ascending", "material/order-bool-descending-variant", "material/order-bool-descending", "material/order-numeric-ascending", "material/order-numeric-descending", "material/origin", "material/ornament-variant", "material/ornament", "material/outdoor-lamp", "material/overscan", "material/owl", "material/pac-man", "material/package-check", "material/package-down", "material/package-up", "material/package-variant-closed-check", "material/package-variant-closed-minus", "material/package-variant-closed-plus", "material/package-variant-closed-remove", "material/package-variant-closed", "material/package-variant-minus", "material/package-variant-plus", "material/package-variant-remove", "material/package-variant", "material/package", "material/page-first", "material/page-last", "material/page-layout-body", "material/page-layout-footer", "material/page-layout-header-footer", "material/page-layout-header", "material/page-layout-sidebar-left", "material/page-layout-sidebar-right", "material/page-next-outline", "material/page-next", "material/page-previous-outline", "material/page-previous", "material/pail-minus-outline", "material/pail-minus", "material/pail-off-outline", "material/pail-off", "material/pail-outline", "material/pail-plus-outline", "material/pail-plus", "material/pail-remove-outline", "material/pail-remove", "material/pail", "material/palette-advanced", "material/palette-outline", "material/palette-swatch-outline", "material/palette-swatch-variant", "material/palette-swatch", "material/palette", "material/palm-tree", "material/pan-bottom-left", "material/pan-bottom-right", "material/pan-down", "material/pan-horizontal", "material/pan-left", "material/pan-right", "material/pan-top-left", "material/pan-top-right", "material/pan-up", "material/pan-vertical", "material/pan", "material/panda", "material/pandora", "material/panorama-fisheye", "material/panorama-horizontal-outline", "material/panorama-horizontal", "material/panorama-outline", "material/panorama-sphere-outline", "material/panorama-sphere", "material/panorama-variant-outline", "material/panorama-variant", "material/panorama-vertical-outline", "material/panorama-vertical", "material/panorama-wide-angle-outline", "material/panorama-wide-angle", "material/panorama", "material/paper-cut-vertical", "material/paper-roll-outline", "material/paper-roll", "material/paperclip-check", "material/paperclip-lock", "material/paperclip-minus", "material/paperclip-off", "material/paperclip-plus", "material/paperclip-remove", "material/paperclip", "material/parachute-outline", "material/parachute", "material/paragliding", "material/parking", "material/party-popper", "material/passport-alert", "material/passport-biometric", "material/passport-cancel", "material/passport-check", "material/passport-minus", "material/passport-plus", "material/passport-remove", "material/passport", "material/pasta", "material/patio-heater", "material/patreon", "material/pause-box-outline", "material/pause-box", "material/pause-circle-outline", "material/pause-circle", "material/pause-octagon-outline", "material/pause-octagon", "material/pause", "material/paw-off-outline", "material/paw-off", "material/paw-outline", "material/paw", "material/peace", "material/peanut-off-outline", "material/peanut-off", "material/peanut-outline", "material/peanut", "material/pen-lock", "material/pen-minus", "material/pen-off", "material/pen-plus", "material/pen-remove", "material/pen", "material/pencil-box-multiple-outline", "material/pencil-box-multiple", "material/pencil-box-outline", "material/pencil-box", "material/pencil-circle-outline", "material/pencil-circle", "material/pencil-lock-outline", "material/pencil-lock", "material/pencil-minus-outline", "material/pencil-minus", "material/pencil-off-outline", "material/pencil-off", "material/pencil-outline", "material/pencil-plus-outline", "material/pencil-plus", "material/pencil-remove-outline", "material/pencil-remove", "material/pencil-ruler-outline", "material/pencil-ruler", "material/pencil", "material/penguin", "material/pentagon-outline", "material/pentagon", "material/pentagram", "material/percent-box-outline", "material/percent-box", "material/percent-circle-outline", "material/percent-circle", "material/percent-outline", "material/percent", "material/periodic-table", "material/perspective-less", "material/perspective-more", "material/ph", "material/phone-alert-outline", "material/phone-alert", "material/phone-bluetooth-outline", "material/phone-bluetooth", "material/phone-cancel-outline", "material/phone-cancel", "material/phone-check-outline", "material/phone-check", "material/phone-classic-off", "material/phone-classic", "material/phone-clock", "material/phone-dial-outline", "material/phone-dial", "material/phone-forward-outline", "material/phone-forward", "material/phone-hangup-outline", "material/phone-hangup", "material/phone-in-talk-outline", "material/phone-in-talk", "material/phone-incoming-outgoing-outline", "material/phone-incoming-outgoing", "material/phone-incoming-outline", "material/phone-incoming", "material/phone-lock-outline", "material/phone-lock", "material/phone-log-outline", "material/phone-log", "material/phone-message-outline", "material/phone-message", "material/phone-minus-outline", "material/phone-minus", "material/phone-missed-outline", "material/phone-missed", "material/phone-off-outline", "material/phone-off", "material/phone-outgoing-outline", "material/phone-outgoing", "material/phone-outline", "material/phone-paused-outline", "material/phone-paused", "material/phone-plus-outline", "material/phone-plus", "material/phone-refresh-outline", "material/phone-refresh", "material/phone-remove-outline", "material/phone-remove", "material/phone-return-outline", "material/phone-return", "material/phone-ring-outline", "material/phone-ring", "material/phone-rotate-landscape", "material/phone-rotate-portrait", "material/phone-settings-outline", "material/phone-settings", "material/phone-sync-outline", "material/phone-sync", "material/phone-voip", "material/phone", "material/pi-box", "material/pi-hole", "material/pi", "material/piano-off", "material/piano", "material/pickaxe", "material/picture-in-picture-bottom-right-outline", "material/picture-in-picture-bottom-right", "material/picture-in-picture-top-right-outline", "material/picture-in-picture-top-right", "material/pier-crane", "material/pier", "material/pig-variant-outline", "material/pig-variant", "material/pig", "material/piggy-bank-outline", "material/piggy-bank", "material/pill-multiple", "material/pill-off", "material/pill", "material/pillar", "material/pin-off-outline", "material/pin-off", "material/pin-outline", "material/pin", "material/pine-tree-box", "material/pine-tree-fire", "material/pine-tree-variant-outline", "material/pine-tree-variant", "material/pine-tree", "material/pinterest", "material/pinwheel-outline", "material/pinwheel", "material/pipe-disconnected", "material/pipe-leak", "material/pipe-valve", "material/pipe-wrench", "material/pipe", "material/pirate", "material/pistol", "material/piston", "material/pitchfork", "material/pizza", "material/plane-car", "material/plane-train", "material/play-box-edit-outline", "material/play-box-lock-open-outline", "material/play-box-lock-open", "material/play-box-lock-outline", "material/play-box-lock", "material/play-box-multiple-outline", "material/play-box-multiple", "material/play-box-outline", "material/play-box", "material/play-circle-outline", "material/play-circle", "material/play-network-outline", "material/play-network", "material/play-outline", "material/play-pause", "material/play-protected-content", "material/play-speed", "material/play", "material/playlist-check", "material/playlist-edit", "material/playlist-minus", "material/playlist-music-outline", "material/playlist-music", "material/playlist-play", "material/playlist-plus", "material/playlist-remove", "material/playlist-star", "material/plex", "material/pliers", "material/plus-box-multiple-outline", "material/plus-box-multiple", "material/plus-box-outline", "material/plus-box", "material/plus-circle-multiple-outline", "material/plus-circle-multiple", "material/plus-circle-outline", "material/plus-circle", "material/plus-lock-open", "material/plus-lock", "material/plus-minus-box", "material/plus-minus-variant", "material/plus-minus", "material/plus-network-outline", "material/plus-network", "material/plus-outline", "material/plus-thick", "material/plus", "material/pocket", "material/podcast", "material/podium-bronze", "material/podium-gold", "material/podium-silver", "material/podium", "material/point-of-sale", "material/pokeball", "material/pokemon-go", "material/poker-chip", "material/polaroid", "material/police-badge-outline", "material/police-badge", "material/police-station", "material/poll", "material/polo", "material/polymer", "material/pool-thermometer", "material/pool", "material/popcorn", "material/post-lamp", "material/post-outline", "material/post", "material/postage-stamp", "material/pot-mix-outline", "material/pot-mix", "material/pot-outline", "material/pot-steam-outline", "material/pot-steam", "material/pot", "material/pound-box-outline", "material/pound-box", "material/pound", "material/power-cycle", "material/power-off", "material/power-on", "material/power-plug-battery-outline", "material/power-plug-battery", "material/power-plug-off-outline", "material/power-plug-off", "material/power-plug-outline", "material/power-plug", "material/power-settings", "material/power-sleep", "material/power-socket-au", "material/power-socket-ch", "material/power-socket-de", "material/power-socket-eu", "material/power-socket-fr", "material/power-socket-it", "material/power-socket-jp", "material/power-socket-uk", "material/power-socket-us", "material/power-socket", "material/power-standby", "material/power", "material/powershell", "material/prescription", "material/presentation-play", "material/presentation", "material/pretzel", "material/printer-3d-nozzle-alert-outline", "material/printer-3d-nozzle-alert", "material/printer-3d-nozzle-heat-outline", "material/printer-3d-nozzle-heat", "material/printer-3d-nozzle-off-outline", "material/printer-3d-nozzle-off", "material/printer-3d-nozzle-outline", "material/printer-3d-nozzle", "material/printer-3d-off", "material/printer-3d", "material/printer-alert", "material/printer-check", "material/printer-eye", "material/printer-off-outline", "material/printer-off", "material/printer-outline", "material/printer-pos-alert-outline", "material/printer-pos-alert", "material/printer-pos-cancel-outline", "material/printer-pos-cancel", "material/printer-pos-check-outline", "material/printer-pos-check", "material/printer-pos-cog-outline", "material/printer-pos-cog", "material/printer-pos-edit-outline", "material/printer-pos-edit", "material/printer-pos-minus-outline", "material/printer-pos-minus", "material/printer-pos-network-outline", "material/printer-pos-network", "material/printer-pos-off-outline", "material/printer-pos-off", "material/printer-pos-outline", "material/printer-pos-pause-outline", "material/printer-pos-pause", "material/printer-pos-play-outline", "material/printer-pos-play", "material/printer-pos-plus-outline", "material/printer-pos-plus", "material/printer-pos-refresh-outline", "material/printer-pos-refresh", "material/printer-pos-remove-outline", "material/printer-pos-remove", "material/printer-pos-star-outline", "material/printer-pos-star", "material/printer-pos-stop-outline", "material/printer-pos-stop", "material/printer-pos-sync-outline", "material/printer-pos-sync", "material/printer-pos-wrench-outline", "material/printer-pos-wrench", "material/printer-pos", "material/printer-search", "material/printer-settings", "material/printer-wireless", "material/printer", "material/priority-high", "material/priority-low", "material/professional-hexagon", "material/progress-alert", "material/progress-check", "material/progress-clock", "material/progress-close", "material/progress-download", "material/progress-helper", "material/progress-pencil", "material/progress-question", "material/progress-star-four-points", "material/progress-star", "material/progress-tag", "material/progress-upload", "material/progress-wrench", "material/projector-off", "material/projector-screen-off-outline", "material/projector-screen-off", "material/projector-screen-outline", "material/projector-screen-variant-off-outline", "material/projector-screen-variant-off", "material/projector-screen-variant-outline", "material/projector-screen-variant", "material/projector-screen", "material/projector", "material/propane-tank-outline", "material/propane-tank", "material/protocol", "material/publish-off", "material/publish", "material/pulse", "material/pump-off", "material/pump", "material/pumpkin", "material/purse-outline", "material/purse", "material/puzzle-check-outline", "material/puzzle-check", "material/puzzle-edit-outline", "material/puzzle-edit", "material/puzzle-heart-outline", "material/puzzle-heart", "material/puzzle-minus-outline", "material/puzzle-minus", "material/puzzle-outline", "material/puzzle-plus-outline", "material/puzzle-plus", "material/puzzle-remove-outline", "material/puzzle-remove", "material/puzzle-star-outline", "material/puzzle-star", "material/puzzle", "material/pyramid-off", "material/pyramid", "material/qi", "material/qqchat", "material/qrcode-edit", "material/qrcode-minus", "material/qrcode-plus", "material/qrcode-remove", "material/qrcode-scan", "material/qrcode", "material/quadcopter", "material/quality-high", "material/quality-low", "material/quality-medium", "material/queue-first-in-last-out", "material/quora", "material/rabbit-variant-outline", "material/rabbit-variant", "material/rabbit", "material/racing-helmet", "material/racquetball", "material/radar", "material/radiator-disabled", "material/radiator-off", "material/radiator", "material/radio-am", "material/radio-fm", "material/radio-handheld", "material/radio-off", "material/radio-tower", "material/radio", "material/radioactive-circle-outline", "material/radioactive-circle", "material/radioactive-off", "material/radioactive", "material/radiobox-blank", "material/radiobox-indeterminate-variant", "material/radiobox-marked", "material/radiology-box-outline", "material/radiology-box", "material/radius-outline", "material/radius", "material/railroad-light", "material/rake", "material/raspberry-pi", "material/raw-off", "material/raw", "material/ray-end-arrow", "material/ray-end", "material/ray-start-arrow", "material/ray-start-end", "material/ray-start-vertex-end", "material/ray-start", "material/ray-vertex", "material/razor-double-edge", "material/razor-single-edge", "material/react", "material/read", "material/receipt-clock-outline", "material/receipt-clock", "material/receipt-outline", "material/receipt-send-outline", "material/receipt-send", "material/receipt-text-arrow-left-outline", "material/receipt-text-arrow-left", "material/receipt-text-arrow-right-outline", "material/receipt-text-arrow-right", "material/receipt-text-check-outline", "material/receipt-text-check", "material/receipt-text-clock-outline", "material/receipt-text-clock", "material/receipt-text-edit-outline", "material/receipt-text-edit", "material/receipt-text-minus-outline", "material/receipt-text-minus", "material/receipt-text-outline", "material/receipt-text-plus-outline", "material/receipt-text-plus", "material/receipt-text-remove-outline", "material/receipt-text-remove", "material/receipt-text-send-outline", "material/receipt-text-send", "material/receipt-text", "material/receipt", "material/record-circle-outline", "material/record-circle", "material/record-player", "material/record-rec", "material/record", "material/rectangle-outline", "material/rectangle", "material/recycle-variant", "material/recycle", "material/reddit", "material/redhat", "material/redo-variant", "material/redo", "material/reflect-horizontal", "material/reflect-vertical", "material/refresh-auto", "material/refresh-circle", "material/refresh", "material/regex", "material/registered-trademark", "material/reiterate", "material/relation-many-to-many", "material/relation-many-to-one-or-many", "material/relation-many-to-one", "material/relation-many-to-only-one", "material/relation-many-to-zero-or-many", "material/relation-many-to-zero-or-one", "material/relation-one-or-many-to-many", "material/relation-one-or-many-to-one-or-many", "material/relation-one-or-many-to-one", "material/relation-one-or-many-to-only-one", "material/relation-one-or-many-to-zero-or-many", "material/relation-one-or-many-to-zero-or-one", "material/relation-one-to-many", "material/relation-one-to-one-or-many", "material/relation-one-to-one", "material/relation-one-to-only-one", "material/relation-one-to-zero-or-many", "material/relation-one-to-zero-or-one", "material/relation-only-one-to-many", "material/relation-only-one-to-one-or-many", "material/relation-only-one-to-one", "material/relation-only-one-to-only-one", "material/relation-only-one-to-zero-or-many", "material/relation-only-one-to-zero-or-one", "material/relation-zero-or-many-to-many", "material/relation-zero-or-many-to-one-or-many", "material/relation-zero-or-many-to-one", "material/relation-zero-or-many-to-only-one", "material/relation-zero-or-many-to-zero-or-many", "material/relation-zero-or-many-to-zero-or-one", "material/relation-zero-or-one-to-many", "material/relation-zero-or-one-to-one-or-many", "material/relation-zero-or-one-to-one", "material/relation-zero-or-one-to-only-one", "material/relation-zero-or-one-to-zero-or-many", "material/relation-zero-or-one-to-zero-or-one", "material/relative-scale", "material/reload-alert", "material/reload", "material/reminder", "material/remote-desktop", "material/remote-off", "material/remote-tv-off", "material/remote-tv", "material/remote", "material/rename-box-outline", "material/rename-box", "material/rename-outline", "material/rename", "material/reorder-horizontal", "material/reorder-vertical", "material/repeat-off", "material/repeat-once", "material/repeat-variant", "material/repeat", "material/replay", "material/reply-all-outline", "material/reply-all", "material/reply-circle", "material/reply-outline", "material/reply", "material/reproduction", "material/resistor-nodes", "material/resistor", "material/resize-bottom-right", "material/resize", "material/responsive", "material/restart-alert", "material/restart-off", "material/restart", "material/restore-alert", "material/restore", "material/rewind-10", "material/rewind-15", "material/rewind-30", "material/rewind-45", "material/rewind-5", "material/rewind-60", "material/rewind-outline", "material/rewind", "material/rhombus-medium-outline", "material/rhombus-medium", "material/rhombus-outline", "material/rhombus-split-outline", "material/rhombus-split", "material/rhombus", "material/ribbon", "material/rice", "material/rickshaw-electric", "material/rickshaw", "material/ring", "material/rivet", "material/road-variant", "material/road", "material/robber", "material/robot-angry-outline", "material/robot-angry", "material/robot-confused-outline", "material/robot-confused", "material/robot-dead-outline", "material/robot-dead", "material/robot-excited-outline", "material/robot-excited", "material/robot-happy-outline", "material/robot-happy", "material/robot-industrial-outline", "material/robot-industrial", "material/robot-love-outline", "material/robot-love", "material/robot-mower-outline", "material/robot-mower", "material/robot-off-outline", "material/robot-off", "material/robot-outline", "material/robot-vacuum-alert", "material/robot-vacuum-off", "material/robot-vacuum-variant-alert", "material/robot-vacuum-variant-off", "material/robot-vacuum-variant", "material/robot-vacuum", "material/robot", "material/rocket-launch-outline", "material/rocket-launch", "material/rocket-outline", "material/rocket", "material/rodent", "material/roller-shade-closed", "material/roller-shade", "material/roller-skate-off", "material/roller-skate", "material/rollerblade-off", "material/rollerblade", "material/rollupjs", "material/rolodex-outline", "material/rolodex", "material/roman-numeral-1", "material/roman-numeral-10", "material/roman-numeral-2", "material/roman-numeral-3", "material/roman-numeral-4", "material/roman-numeral-5", "material/roman-numeral-6", "material/roman-numeral-7", "material/roman-numeral-8", "material/roman-numeral-9", "material/room-service-outline", "material/room-service", "material/rotate-360", "material/rotate-3d-variant", "material/rotate-3d", "material/rotate-left-variant", "material/rotate-left", "material/rotate-orbit", "material/rotate-right-variant", "material/rotate-right", "material/rounded-corner", "material/router-network-wireless", "material/router-network", "material/router-wireless-off", "material/router-wireless-settings", "material/router-wireless", "material/router", "material/routes-clock", "material/routes", "material/rowing", "material/rss-box", "material/rss-off", "material/rss", "material/rug", "material/rugby", "material/ruler-square-compass", "material/ruler-square", "material/ruler", "material/run-fast", "material/run", "material/rv-truck", "material/sack-outline", "material/sack-percent", "material/sack", "material/safe-square-outline", "material/safe-square", "material/safe", "material/safety-goggles", "material/sail-boat-sink", "material/sail-boat", "material/sale-outline", "material/sale", "material/salesforce", "material/sass", "material/satellite-uplink", "material/satellite-variant", "material/satellite", "material/sausage-off", "material/sausage", "material/saw-blade", "material/sawtooth-wave", "material/saxophone", "material/scale-balance", "material/scale-bathroom", "material/scale-off", "material/scale-unbalanced", "material/scale", "material/scan-helper", "material/scanner-off", "material/scanner", "material/scatter-plot-outline", "material/scatter-plot", "material/scent-off", "material/scent", "material/school-outline", "material/school", "material/scissors-cutting", "material/scooter-electric", "material/scooter", "material/scoreboard-outline", "material/scoreboard", "material/screen-rotation-lock", "material/screen-rotation", "material/screw-flat-top", "material/screw-lag", "material/screw-machine-flat-top", "material/screw-machine-round-top", "material/screw-round-top", "material/screwdriver", "material/script-outline", "material/script-text-key-outline", "material/script-text-key", "material/script-text-outline", "material/script-text-play-outline", "material/script-text-play", "material/script-text", "material/script", "material/sd", "material/seal-variant", "material/seal", "material/search-web", "material/seat-flat-angled", "material/seat-flat", "material/seat-individual-suite", "material/seat-legroom-extra", "material/seat-legroom-normal", "material/seat-legroom-reduced", "material/seat-outline", "material/seat-passenger", "material/seat-recline-extra", "material/seat-recline-normal", "material/seat", "material/seatbelt", "material/security-network", "material/security", "material/seed-off-outline", "material/seed-off", "material/seed-outline", "material/seed-plus-outline", "material/seed-plus", "material/seed", "material/seesaw", "material/segment", "material/select-all", "material/select-arrow-down", "material/select-arrow-up", "material/select-color", "material/select-compare", "material/select-drag", "material/select-group", "material/select-inverse", "material/select-marker", "material/select-multiple-marker", "material/select-multiple", "material/select-off", "material/select-place", "material/select-remove", "material/select-search", "material/select", "material/selection-drag", "material/selection-ellipse-arrow-inside", "material/selection-ellipse-remove", "material/selection-ellipse", "material/selection-marker", "material/selection-multiple-marker", "material/selection-multiple", "material/selection-off", "material/selection-remove", "material/selection-search", "material/selection", "material/semantic-web", "material/send-check-outline", "material/send-check", "material/send-circle-outline", "material/send-circle", "material/send-clock-outline", "material/send-clock", "material/send-lock-outline", "material/send-lock", "material/send-outline", "material/send-variant-clock-outline", "material/send-variant-clock", "material/send-variant-outline", "material/send-variant", "material/send", "material/serial-port", "material/server-minus-outline", "material/server-minus", "material/server-network-off", "material/server-network-outline", "material/server-network", "material/server-off", "material/server-outline", "material/server-plus-outline", "material/server-plus", "material/server-remove", "material/server-security", "material/server", "material/set-all", "material/set-center-right", "material/set-center", "material/set-left-center", "material/set-left-right", "material/set-left", "material/set-merge", "material/set-none", "material/set-right", "material/set-split", "material/set-square", "material/set-top-box", "material/settings-helper", "material/shaker-outline", "material/shaker", "material/shape-circle-plus", "material/shape-outline", "material/shape-oval-plus", "material/shape-plus-outline", "material/shape-plus", "material/shape-polygon-plus", "material/shape-rectangle-plus", "material/shape-square-plus", "material/shape-square-rounded-plus", "material/shape", "material/share-all-outline", "material/share-all", "material/share-circle", "material/share-off-outline", "material/share-off", "material/share-outline", "material/share-variant-outline", "material/share-variant", "material/share", "material/shark-fin-outline", "material/shark-fin", "material/shark-off", "material/shark", "material/sheep", "material/shield-account-outline", "material/shield-account-variant-outline", "material/shield-account-variant", "material/shield-account", "material/shield-airplane-outline", "material/shield-airplane", "material/shield-alert-outline", "material/shield-alert", "material/shield-bug-outline", "material/shield-bug", "material/shield-car", "material/shield-check-outline", "material/shield-check", "material/shield-cross-outline", "material/shield-cross", "material/shield-crown-outline", "material/shield-crown", "material/shield-edit-outline", "material/shield-edit", "material/shield-half-full", "material/shield-half", "material/shield-home-outline", "material/shield-home", "material/shield-key-outline", "material/shield-key", "material/shield-link-variant-outline", "material/shield-link-variant", "material/shield-lock-open-outline", "material/shield-lock-open", "material/shield-lock-outline", "material/shield-lock", "material/shield-moon-outline", "material/shield-moon", "material/shield-off-outline", "material/shield-off", "material/shield-outline", "material/shield-plus-outline", "material/shield-plus", "material/shield-refresh-outline", "material/shield-refresh", "material/shield-remove-outline", "material/shield-remove", "material/shield-search", "material/shield-star-outline", "material/shield-star", "material/shield-sun-outline", "material/shield-sun", "material/shield-sword-outline", "material/shield-sword", "material/shield-sync-outline", "material/shield-sync", "material/shield", "material/shimmer", "material/ship-wheel", "material/shipping-pallet", "material/shoe-ballet", "material/shoe-cleat", "material/shoe-formal", "material/shoe-heel", "material/shoe-print", "material/shoe-sneaker", "material/shopping-music", "material/shopping-outline", "material/shopping-search-outline", "material/shopping-search", "material/shopping", "material/shore", "material/shovel-off", "material/shovel", "material/shower-head", "material/shower", "material/shredder", "material/shuffle-disabled", "material/shuffle-variant", "material/shuffle", "material/shuriken", "material/sickle", "material/sigma-lower", "material/sigma", "material/sign-caution", "material/sign-direction-minus", "material/sign-direction-plus", "material/sign-direction-remove", "material/sign-direction", "material/sign-language-outline", "material/sign-language", "material/sign-pole", "material/sign-real-estate", "material/sign-text", "material/sign-yield", "material/signal-2g", "material/signal-3g", "material/signal-4g", "material/signal-5g", "material/signal-cellular-1", "material/signal-cellular-2", "material/signal-cellular-3", "material/signal-cellular-outline", "material/signal-distance-variant", "material/signal-hspa-plus", "material/signal-hspa", "material/signal-off", "material/signal-variant", "material/signal", "material/signature-freehand", "material/signature-image", "material/signature-text", "material/signature", "material/silo-outline", "material/silo", "material/silverware-clean", "material/silverware-fork-knife", "material/silverware-fork", "material/silverware-spoon", "material/silverware-variant", "material/silverware", "material/sim-alert-outline", "material/sim-alert", "material/sim-off-outline", "material/sim-off", "material/sim-outline", "material/sim", "material/simple-icons", "material/sina-weibo", "material/sine-wave", "material/sitemap-outline", "material/sitemap", "material/size-l", "material/size-m", "material/size-s", "material/size-xl", "material/size-xs", "material/size-xxl", "material/size-xxs", "material/size-xxxl", "material/skate-off", "material/skate", "material/skateboard", "material/skateboarding", "material/skew-less", "material/skew-more", "material/ski-cross-country", "material/ski-water", "material/ski", "material/skip-backward-outline", "material/skip-backward", "material/skip-forward-outline", "material/skip-forward", "material/skip-next-circle-outline", "material/skip-next-circle", "material/skip-next-outline", "material/skip-next", "material/skip-previous-circle-outline", "material/skip-previous-circle", "material/skip-previous-outline", "material/skip-previous", "material/skull-crossbones-outline", "material/skull-crossbones", "material/skull-outline", "material/skull-scan-outline", "material/skull-scan", "material/skull", "material/skype-business", "material/skype", "material/slack", "material/slash-forward-box", "material/slash-forward", "material/sledding", "material/sleep-off", "material/sleep", "material/slide", "material/slope-downhill", "material/slope-uphill", "material/slot-machine-outline", "material/slot-machine", "material/smart-card-off-outline", "material/smart-card-off", "material/smart-card-outline", "material/smart-card-reader-outline", "material/smart-card-reader", "material/smart-card", "material/smog", "material/smoke-detector-alert-outline", "material/smoke-detector-alert", "material/smoke-detector-off-outline", "material/smoke-detector-off", "material/smoke-detector-outline", "material/smoke-detector-variant-alert", "material/smoke-detector-variant-off", "material/smoke-detector-variant", "material/smoke-detector", "material/smoke", "material/smoking-off", "material/smoking-pipe-off", "material/smoking-pipe", "material/smoking", "material/snail", "material/snake", "material/snapchat", "material/snowboard", "material/snowflake-alert", "material/snowflake-check", "material/snowflake-melt", "material/snowflake-off", "material/snowflake-thermometer", "material/snowflake-variant", "material/snowflake", "material/snowman", "material/snowmobile", "material/snowshoeing", "material/soccer-field", "material/soccer", "material/social-distance-2-meters", "material/social-distance-6-feet", "material/sofa-outline", "material/sofa-single-outline", "material/sofa-single", "material/sofa", "material/solar-panel-large", "material/solar-panel", "material/solar-power-variant-outline", "material/solar-power-variant", "material/solar-power", "material/soldering-iron", "material/solid", "material/sony-playstation", "material/sort-alphabetical-ascending-variant", "material/sort-alphabetical-ascending", "material/sort-alphabetical-descending-variant", "material/sort-alphabetical-descending", "material/sort-alphabetical-variant", "material/sort-ascending", "material/sort-bool-ascending-variant", "material/sort-bool-ascending", "material/sort-bool-descending-variant", "material/sort-bool-descending", "material/sort-calendar-ascending", "material/sort-calendar-descending", "material/sort-clock-ascending-outline", "material/sort-clock-ascending", "material/sort-clock-descending-outline", "material/sort-clock-descending", "material/sort-descending", "material/sort-numeric-ascending-variant", "material/sort-numeric-ascending", "material/sort-numeric-descending-variant", "material/sort-numeric-descending", "material/sort-numeric-variant", "material/sort-reverse-variant", "material/sort-variant-lock-open", "material/sort-variant-lock", "material/sort-variant-off", "material/sort-variant-remove", "material/sort-variant", "material/sort", "material/soundbar", "material/soundcloud", "material/source-branch-check", "material/source-branch-minus", "material/source-branch-plus", "material/source-branch-refresh", "material/source-branch-remove", "material/source-branch-sync", "material/source-branch", "material/source-commit-end-local", "material/source-commit-end", "material/source-commit-local", "material/source-commit-next-local", "material/source-commit-start-next-local", "material/source-commit-start", "material/source-commit", "material/source-fork", "material/source-merge", "material/source-pull", "material/source-repository-multiple", "material/source-repository", "material/soy-sauce-off", "material/soy-sauce", "material/spa-outline", "material/spa", "material/space-invaders", "material/space-station", "material/spade", "material/speaker-bluetooth", "material/speaker-message", "material/speaker-multiple", "material/speaker-off", "material/speaker-pause", "material/speaker-play", "material/speaker-stop", "material/speaker-wireless", "material/speaker", "material/spear", "material/speedometer-medium", "material/speedometer-slow", "material/speedometer", "material/spellcheck", "material/sphere-off", "material/sphere", "material/spider-outline", "material/spider-thread", "material/spider-web", "material/spider", "material/spirit-level", "material/spoon-sugar", "material/spotify", "material/spotlight-beam", "material/spotlight", "material/spray-bottle", "material/spray", "material/sprinkler-fire", "material/sprinkler-variant", "material/sprinkler", "material/sprout-outline", "material/sprout", "material/square-circle-outline", "material/square-circle", "material/square-edit-outline", "material/square-medium-outline", "material/square-medium", "material/square-off-outline", "material/square-off", "material/square-opacity", "material/square-outline", "material/square-root-box", "material/square-root", "material/square-rounded-badge-outline", "material/square-rounded-badge", "material/square-rounded-outline", "material/square-rounded", "material/square-small", "material/square-wave", "material/square", "material/squeegee", "material/ssh", "material/stack-exchange", "material/stack-overflow", "material/stackpath", "material/stadium-outline", "material/stadium-variant", "material/stadium", "material/stairs-box", "material/stairs-down", "material/stairs-up", "material/stairs", "material/stamper", "material/standard-definition", "material/star-box-multiple-outline", "material/star-box-multiple", "material/star-box-outline", "material/star-box", "material/star-check-outline", "material/star-check", "material/star-circle-outline", "material/star-circle", "material/star-cog-outline", "material/star-cog", "material/star-crescent", "material/star-david", "material/star-face", "material/star-four-points-box-outline", "material/star-four-points-box", "material/star-four-points-circle-outline", "material/star-four-points-circle", "material/star-four-points-outline", "material/star-four-points-small", "material/star-four-points", "material/star-half-full", "material/star-half", "material/star-minus-outline", "material/star-minus", "material/star-off-outline", "material/star-off", "material/star-outline", "material/star-plus-outline", "material/star-plus", "material/star-remove-outline", "material/star-remove", "material/star-settings-outline", "material/star-settings", "material/star-shooting-outline", "material/star-shooting", "material/star-three-points-outline", "material/star-three-points", "material/star", "material/state-machine", "material/steam", "material/steering-off", "material/steering", "material/step-backward-2", "material/step-backward", "material/step-forward-2", "material/step-forward", "material/stethoscope", "material/sticker-alert-outline", "material/sticker-alert", "material/sticker-check-outline", "material/sticker-check", "material/sticker-circle-outline", "material/sticker-emoji", "material/sticker-minus-outline", "material/sticker-minus", "material/sticker-outline", "material/sticker-plus-outline", "material/sticker-plus", "material/sticker-remove-outline", "material/sticker-remove", "material/sticker-text-outline", "material/sticker-text", "material/sticker", "material/stocking", "material/stomach", "material/stool-outline", "material/stool", "material/stop-circle-outline", "material/stop-circle", "material/stop", "material/storage-tank-outline", "material/storage-tank", "material/store-24-hour", "material/store-alert-outline", "material/store-alert", "material/store-check-outline", "material/store-check", "material/store-clock-outline", "material/store-clock", "material/store-cog-outline", "material/store-cog", "material/store-edit-outline", "material/store-edit", "material/store-marker-outline", "material/store-marker", "material/store-minus-outline", "material/store-minus", "material/store-off-outline", "material/store-off", "material/store-outline", "material/store-plus-outline", "material/store-plus", "material/store-remove-outline", "material/store-remove", "material/store-search-outline", "material/store-search", "material/store-settings-outline", "material/store-settings", "material/store", "material/storefront-check-outline", "material/storefront-check", "material/storefront-edit-outline", "material/storefront-edit", "material/storefront-minus-outline", "material/storefront-minus", "material/storefront-outline", "material/storefront-plus-outline", "material/storefront-plus", "material/storefront-remove-outline", "material/storefront-remove", "material/storefront", "material/stove", "material/strategy", "material/stretch-to-page-outline", "material/stretch-to-page", "material/string-lights-off", "material/string-lights", "material/subdirectory-arrow-left", "material/subdirectory-arrow-right", "material/submarine", "material/subtitles-outline", "material/subtitles", "material/subway-alert-variant", "material/subway-variant", "material/subway", "material/summit", "material/sun-angle-outline", "material/sun-angle", "material/sun-clock-outline", "material/sun-clock", "material/sun-compass", "material/sun-snowflake-variant", "material/sun-snowflake", "material/sun-thermometer-outline", "material/sun-thermometer", "material/sun-wireless-outline", "material/sun-wireless", "material/sunglasses", "material/surfing", "material/surround-sound-2-0", "material/surround-sound-2-1", "material/surround-sound-3-1", "material/surround-sound-5-1-2", "material/surround-sound-5-1", "material/surround-sound-7-1", "material/surround-sound", "material/svg", "material/swap-horizontal-bold", "material/swap-horizontal-circle-outline", "material/swap-horizontal-circle", "material/swap-horizontal-hidden", "material/swap-horizontal-variant", "material/swap-horizontal", "material/swap-vertical-bold", "material/swap-vertical-circle-outline", "material/swap-vertical-circle", "material/swap-vertical-variant", "material/swap-vertical", "material/swim", "material/switch", "material/sword-cross", "material/sword", "material/syllabary-hangul", "material/syllabary-hiragana", "material/syllabary-katakana-halfwidth", "material/syllabary-katakana", "material/symbol", "material/symfony", "material/synagogue-outline", "material/synagogue", "material/sync-alert", "material/sync-circle", "material/sync-off", "material/sync", "material/tab-minus", "material/tab-plus", "material/tab-remove", "material/tab-search", "material/tab-unselected", "material/tab", "material/table-account", "material/table-alert", "material/table-arrow-down", "material/table-arrow-left", "material/table-arrow-right", "material/table-arrow-up", "material/table-border", "material/table-cancel", "material/table-chair", "material/table-check", "material/table-clock", "material/table-cog", "material/table-column-plus-after", "material/table-column-plus-before", "material/table-column-remove", "material/table-column-width", "material/table-column", "material/table-edit", "material/table-eye-off", "material/table-eye", "material/table-filter", "material/table-furniture", "material/table-headers-eye-off", "material/table-headers-eye", "material/table-heart", "material/table-key", "material/table-large-plus", "material/table-large-remove", "material/table-large", "material/table-lock", "material/table-merge-cells", "material/table-minus", "material/table-multiple", "material/table-network", "material/table-of-contents", "material/table-off", "material/table-picnic", "material/table-pivot", "material/table-plus", "material/table-question", "material/table-refresh", "material/table-remove", "material/table-row-height", "material/table-row-plus-after", "material/table-row-plus-before", "material/table-row-remove", "material/table-row", "material/table-search", "material/table-settings", "material/table-split-cell", "material/table-star", "material/table-sync", "material/table-tennis", "material/table", "material/tablet-cellphone", "material/tablet-dashboard", "material/tablet", "material/taco", "material/tag-arrow-down-outline", "material/tag-arrow-down", "material/tag-arrow-left-outline", "material/tag-arrow-left", "material/tag-arrow-right-outline", "material/tag-arrow-right", "material/tag-arrow-up-outline", "material/tag-arrow-up", "material/tag-check-outline", "material/tag-check", "material/tag-edit-outline", "material/tag-edit", "material/tag-faces", "material/tag-heart-outline", "material/tag-heart", "material/tag-hidden", "material/tag-minus-outline", "material/tag-minus", "material/tag-multiple-outline", "material/tag-multiple", "material/tag-off-outline", "material/tag-off", "material/tag-outline", "material/tag-plus-outline", "material/tag-plus", "material/tag-remove-outline", "material/tag-remove", "material/tag-search-outline", "material/tag-search", "material/tag-text-outline", "material/tag-text", "material/tag", "material/tailwind", "material/tally-mark-1", "material/tally-mark-2", "material/tally-mark-3", "material/tally-mark-4", "material/tally-mark-5", "material/tangram", "material/tank", "material/tanker-truck", "material/tape-drive", "material/tape-measure", "material/target-account", "material/target-variant", "material/target", "material/taxi", "material/tea-outline", "material/tea", "material/teamviewer", "material/teddy-bear", "material/telescope", "material/television-ambient-light", "material/television-box", "material/television-classic-off", "material/television-classic", "material/television-guide", "material/television-off", "material/television-pause", "material/television-play", "material/television-shimmer", "material/television-speaker-off", "material/television-speaker", "material/television-stop", "material/television", "material/temperature-celsius", "material/temperature-fahrenheit", "material/temperature-kelvin", "material/temple-buddhist-outline", "material/temple-buddhist", "material/temple-hindu-outline", "material/temple-hindu", "material/tennis-ball-outline", "material/tennis-ball", "material/tennis", "material/tent", "material/terraform", "material/terrain", "material/test-tube-empty", "material/test-tube-off", "material/test-tube", "material/text-account", "material/text-box-check-outline", "material/text-box-check", "material/text-box-edit-outline", "material/text-box-edit", "material/text-box-minus-outline", "material/text-box-minus", "material/text-box-multiple-outline", "material/text-box-multiple", "material/text-box-outline", "material/text-box-plus-outline", "material/text-box-plus", "material/text-box-remove-outline", "material/text-box-remove", "material/text-box-search-outline", "material/text-box-search", "material/text-box", "material/text-long", "material/text-recognition", "material/text-search-variant", "material/text-search", "material/text-shadow", "material/text-short", "material/text", "material/texture-box", "material/texture", "material/theater", "material/theme-light-dark", "material/thermometer-alert", "material/thermometer-auto", "material/thermometer-bluetooth", "material/thermometer-check", "material/thermometer-chevron-down", "material/thermometer-chevron-up", "material/thermometer-high", "material/thermometer-lines", "material/thermometer-low", "material/thermometer-minus", "material/thermometer-off", "material/thermometer-plus", "material/thermometer-probe-off", "material/thermometer-probe", "material/thermometer-water", "material/thermometer", "material/thermostat-auto", "material/thermostat-box-auto", "material/thermostat-box", "material/thermostat-cog", "material/thermostat", "material/thought-bubble-outline", "material/thought-bubble", "material/thumb-down-outline", "material/thumb-down", "material/thumb-up-outline", "material/thumb-up", "material/thumbs-up-down-outline", "material/thumbs-up-down", "material/ticket-account", "material/ticket-confirmation-outline", "material/ticket-confirmation", "material/ticket-outline", "material/ticket-percent-outline", "material/ticket-percent", "material/ticket", "material/tie", "material/tilde-off", "material/tilde", "material/timelapse", "material/timeline-alert-outline", "material/timeline-alert", "material/timeline-check-outline", "material/timeline-check", "material/timeline-clock-outline", "material/timeline-clock", "material/timeline-minus-outline", "material/timeline-minus", "material/timeline-outline", "material/timeline-plus-outline", "material/timeline-plus", "material/timeline-question-outline", "material/timeline-question", "material/timeline-remove-outline", "material/timeline-remove", "material/timeline-text-outline", "material/timeline-text", "material/timeline", "material/timer-10", "material/timer-3", "material/timer-alert-outline", "material/timer-alert", "material/timer-cancel-outline", "material/timer-cancel", "material/timer-check-outline", "material/timer-check", "material/timer-cog-outline", "material/timer-cog", "material/timer-edit-outline", "material/timer-edit", "material/timer-lock-open-outline", "material/timer-lock-open", "material/timer-lock-outline", "material/timer-lock", "material/timer-marker-outline", "material/timer-marker", "material/timer-minus-outline", "material/timer-minus", "material/timer-music-outline", "material/timer-music", "material/timer-off-outline", "material/timer-off", "material/timer-outline", "material/timer-pause-outline", "material/timer-pause", "material/timer-play-outline", "material/timer-play", "material/timer-plus-outline", "material/timer-plus", "material/timer-refresh-outline", "material/timer-refresh", "material/timer-remove-outline", "material/timer-remove", "material/timer-sand-complete", "material/timer-sand-empty", "material/timer-sand-full", "material/timer-sand-paused", "material/timer-sand", "material/timer-settings-outline", "material/timer-settings", "material/timer-star-outline", "material/timer-star", "material/timer-stop-outline", "material/timer-stop", "material/timer-sync-outline", "material/timer-sync", "material/timer", "material/timetable", "material/tire", "material/toaster-off", "material/toaster-oven", "material/toaster", "material/toggle-switch-off-outline", "material/toggle-switch-off", "material/toggle-switch-outline", "material/toggle-switch-variant-off", "material/toggle-switch-variant", "material/toggle-switch", "material/toilet", "material/toolbox-outline", "material/toolbox", "material/tools", "material/tooltip-account", "material/tooltip-cellphone", "material/tooltip-check-outline", "material/tooltip-check", "material/tooltip-edit-outline", "material/tooltip-edit", "material/tooltip-image-outline", "material/tooltip-image", "material/tooltip-minus-outline", "material/tooltip-minus", "material/tooltip-outline", "material/tooltip-plus-outline", "material/tooltip-plus", "material/tooltip-question-outline", "material/tooltip-question", "material/tooltip-remove-outline", "material/tooltip-remove", "material/tooltip-text-outline", "material/tooltip-text", "material/tooltip", "material/tooth-outline", "material/tooth", "material/toothbrush-electric", "material/toothbrush-paste", "material/toothbrush", "material/torch", "material/tortoise", "material/toslink", "material/touch-text-outline", "material/tournament", "material/tow-truck", "material/tower-beach", "material/tower-fire", "material/town-hall", "material/toy-brick-marker-outline", "material/toy-brick-marker", "material/toy-brick-minus-outline", "material/toy-brick-minus", "material/toy-brick-outline", "material/toy-brick-plus-outline", "material/toy-brick-plus", "material/toy-brick-remove-outline", "material/toy-brick-remove", "material/toy-brick-search-outline", "material/toy-brick-search", "material/toy-brick", "material/track-light-off", "material/track-light", "material/trackpad-lock", "material/trackpad", "material/tractor-variant", "material/tractor", "material/trademark", "material/traffic-cone", "material/traffic-light-outline", "material/traffic-light", "material/train-bus", "material/train-car-autorack", "material/train-car-box-full", "material/train-car-box-open", "material/train-car-box", "material/train-car-caboose", "material/train-car-centerbeam-full", "material/train-car-centerbeam", "material/train-car-container", "material/train-car-flatbed-car", "material/train-car-flatbed-tank", "material/train-car-flatbed", "material/train-car-gondola-full", "material/train-car-gondola", "material/train-car-hopper-covered", "material/train-car-hopper-full", "material/train-car-hopper", "material/train-car-intermodal", "material/train-car-passenger-door-open", "material/train-car-passenger-door", "material/train-car-passenger-variant", "material/train-car-passenger", "material/train-car-tank", "material/train-car", "material/train-variant", "material/train", "material/tram-side", "material/tram", "material/transcribe-close", "material/transcribe", "material/transfer-down", "material/transfer-left", "material/transfer-right", "material/transfer-up", "material/transfer", "material/transit-connection-horizontal", "material/transit-connection-variant", "material/transit-connection", "material/transit-detour", "material/transit-skip", "material/transit-transfer", "material/transition-masked", "material/transition", "material/translate-off", "material/translate-variant", "material/translate", "material/transmission-tower-export", "material/transmission-tower-import", "material/transmission-tower-off", "material/transmission-tower", "material/trash-can-outline", "material/trash-can", "material/tray-alert", "material/tray-arrow-down", "material/tray-arrow-up", "material/tray-full", "material/tray-minus", "material/tray-plus", "material/tray-remove", "material/tray", "material/treasure-chest-outline", "material/treasure-chest", "material/tree-outline", "material/tree", "material/trello", "material/trending-down", "material/trending-neutral", "material/trending-up", "material/triangle-down-outline", "material/triangle-down", "material/triangle-outline", "material/triangle-small-down", "material/triangle-small-up", "material/triangle-wave", "material/triangle", "material/triforce", "material/trophy-award", "material/trophy-broken", "material/trophy-outline", "material/trophy-variant-outline", "material/trophy-variant", "material/trophy", "material/truck-alert-outline", "material/truck-alert", "material/truck-cargo-container", "material/truck-check-outline", "material/truck-check", "material/truck-delivery-outline", "material/truck-delivery", "material/truck-fast-outline", "material/truck-fast", "material/truck-flatbed", "material/truck-minus-outline", "material/truck-minus", "material/truck-off-road-off", "material/truck-off-road", "material/truck-outline", "material/truck-plus-outline", "material/truck-plus", "material/truck-remove-outline", "material/truck-remove", "material/truck-snowflake", "material/truck-trailer", "material/truck", "material/trumpet", "material/tshirt-crew-outline", "material/tshirt-crew", "material/tshirt-v-outline", "material/tshirt-v", "material/tsunami", "material/tumble-dryer-alert", "material/tumble-dryer-off", "material/tumble-dryer", "material/tune-variant", "material/tune-vertical-variant", "material/tune-vertical", "material/tune", "material/tunnel-outline", "material/tunnel", "material/turbine", "material/turkey", "material/turnstile-outline", "material/turnstile", "material/turtle", "material/twitch", "material/twitter", "material/two-factor-authentication", "material/typewriter", "material/ubisoft", "material/ubuntu", "material/ufo-outline", "material/ufo", "material/ultra-high-definition", "material/umbraco", "material/umbrella-beach-outline", "material/umbrella-beach", "material/umbrella-closed-outline", "material/umbrella-closed-variant", "material/umbrella-closed", "material/umbrella-outline", "material/umbrella", "material/underwear-outline", "material/undo-variant", "material/undo", "material/unfold-less-horizontal", "material/unfold-less-vertical", "material/unfold-more-horizontal", "material/unfold-more-vertical", "material/ungroup", "material/unicode", "material/unicorn-variant", "material/unicorn", "material/unicycle", "material/unity", "material/unreal", "material/update", "material/upload-box-outline", "material/upload-box", "material/upload-circle-outline", "material/upload-circle", "material/upload-lock-outline", "material/upload-lock", "material/upload-multiple-outline", "material/upload-multiple", "material/upload-network-outline", "material/upload-network", "material/upload-off-outline", "material/upload-off", "material/upload-outline", "material/upload", "material/usb-c-port", "material/usb-flash-drive-outline", "material/usb-flash-drive", "material/usb-port", "material/usb", "material/vacuum-outline", "material/vacuum", "material/valve-closed", "material/valve-open", "material/valve", "material/van-passenger", "material/van-utility", "material/vanish-quarter", "material/vanish", "material/vanity-light", "material/variable-box", "material/variable", "material/vector-arrange-above", "material/vector-arrange-below", "material/vector-bezier", "material/vector-circle-variant", "material/vector-circle", "material/vector-combine", "material/vector-curve", "material/vector-difference-ab", "material/vector-difference-ba", "material/vector-difference", "material/vector-ellipse", "material/vector-intersection", "material/vector-line", "material/vector-link", "material/vector-point-edit", "material/vector-point-minus", "material/vector-point-plus", "material/vector-point-select", "material/vector-point", "material/vector-polygon-variant", "material/vector-polygon", "material/vector-polyline-edit", "material/vector-polyline-minus", "material/vector-polyline-plus", "material/vector-polyline-remove", "material/vector-polyline", "material/vector-radius", "material/vector-rectangle", "material/vector-selection", "material/vector-square-close", "material/vector-square-edit", "material/vector-square-minus", "material/vector-square-open", "material/vector-square-plus", "material/vector-square-remove", "material/vector-square", "material/vector-triangle", "material/vector-union", "material/vhs", "material/vibrate-off", "material/vibrate", "material/video-2d", "material/video-3d-off", "material/video-3d-variant", "material/video-3d", "material/video-4k-box", "material/video-account", "material/video-box-off", "material/video-box", "material/video-check-outline", "material/video-check", "material/video-high-definition", "material/video-image", "material/video-input-antenna", "material/video-input-component", "material/video-input-hdmi", "material/video-input-scart", "material/video-input-svideo", "material/video-marker-outline", "material/video-marker", "material/video-minus-outline", "material/video-minus", "material/video-off-outline", "material/video-off", "material/video-outline", "material/video-plus-outline", "material/video-plus", "material/video-stabilization", "material/video-standard-definition", "material/video-switch-outline", "material/video-switch", "material/video-vintage", "material/video-wireless-outline", "material/video-wireless", "material/video", "material/view-agenda-outline", "material/view-agenda", "material/view-array-outline", "material/view-array", "material/view-carousel-outline", "material/view-carousel", "material/view-column-outline", "material/view-column", "material/view-comfy-outline", "material/view-comfy", "material/view-compact-outline", "material/view-compact", "material/view-dashboard-edit-outline", "material/view-dashboard-edit", "material/view-dashboard-outline", "material/view-dashboard-variant-outline", "material/view-dashboard-variant", "material/view-dashboard", "material/view-day-outline", "material/view-day", "material/view-gallery-outline", "material/view-gallery", "material/view-grid-compact", "material/view-grid-outline", "material/view-grid-plus-outline", "material/view-grid-plus", "material/view-grid", "material/view-headline", "material/view-list-outline", "material/view-list", "material/view-module-outline", "material/view-module", "material/view-parallel-outline", "material/view-parallel", "material/view-quilt-outline", "material/view-quilt", "material/view-sequential-outline", "material/view-sequential", "material/view-split-horizontal", "material/view-split-vertical", "material/view-stream-outline", "material/view-stream", "material/view-week-outline", "material/view-week", "material/vimeo", "material/violin", "material/virtual-reality", "material/virus-off-outline", "material/virus-off", "material/virus-outline", "material/virus", "material/vlc", "material/voicemail", "material/volcano-outline", "material/volcano", "material/volleyball", "material/volume-equal", "material/volume-high", "material/volume-low", "material/volume-medium", "material/volume-minus", "material/volume-mute", "material/volume-off", "material/volume-plus", "material/volume-source", "material/volume-variant-off", "material/volume-vibrate", "material/vote-outline", "material/vote", "material/vpn", "material/vuejs", "material/vuetify", "material/walk", "material/wall-fire", "material/wall-sconce-flat-outline", "material/wall-sconce-flat-variant-outline", "material/wall-sconce-flat-variant", "material/wall-sconce-flat", "material/wall-sconce-outline", "material/wall-sconce-round-outline", "material/wall-sconce-round-variant-outline", "material/wall-sconce-round-variant", "material/wall-sconce-round", "material/wall-sconce", "material/wall", "material/wallet-bifold-outline", "material/wallet-bifold", "material/wallet-giftcard", "material/wallet-membership", "material/wallet-outline", "material/wallet-plus-outline", "material/wallet-plus", "material/wallet-travel", "material/wallet", "material/wallpaper", "material/wan", "material/wardrobe-outline", "material/wardrobe", "material/warehouse", "material/washing-machine-alert", "material/washing-machine-off", "material/washing-machine", "material/watch-export-variant", "material/watch-export", "material/watch-import-variant", "material/watch-import", "material/watch-variant", "material/watch-vibrate-off", "material/watch-vibrate", "material/watch", "material/water-alert-outline", "material/water-alert", "material/water-boiler-alert", "material/water-boiler-auto", "material/water-boiler-off", "material/water-boiler", "material/water-check-outline", "material/water-check", "material/water-circle", "material/water-minus-outline", "material/water-minus", "material/water-off-outline", "material/water-off", "material/water-opacity", "material/water-outline", "material/water-percent-alert", "material/water-percent", "material/water-plus-outline", "material/water-plus", "material/water-polo", "material/water-pump-off", "material/water-pump", "material/water-remove-outline", "material/water-remove", "material/water-sync", "material/water-thermometer-outline", "material/water-thermometer", "material/water-well-outline", "material/water-well", "material/water", "material/waterfall", "material/watering-can-outline", "material/watering-can", "material/watermark", "material/wave-arrow-down", "material/wave-arrow-up", "material/wave-undercurrent", "material/wave", "material/waveform", "material/waves-arrow-left", "material/waves-arrow-right", "material/waves-arrow-up", "material/waves", "material/waze", "material/weather-cloudy-alert", "material/weather-cloudy-arrow-right", "material/weather-cloudy-clock", "material/weather-cloudy", "material/weather-dust", "material/weather-fog", "material/weather-hail", "material/weather-hazy", "material/weather-hurricane-outline", "material/weather-hurricane", "material/weather-lightning-rainy", "material/weather-lightning", "material/weather-moonset-down", "material/weather-moonset-up", "material/weather-moonset", "material/weather-night-partly-cloudy", "material/weather-night", "material/weather-partly-cloudy", "material/weather-partly-lightning", "material/weather-partly-rainy", "material/weather-partly-snowy-rainy", "material/weather-partly-snowy", "material/weather-pouring", "material/weather-rainy", "material/weather-snowy-heavy", "material/weather-snowy-rainy", "material/weather-snowy", "material/weather-sunny-alert", "material/weather-sunny-off", "material/weather-sunny", "material/weather-sunset-down", "material/weather-sunset-up", "material/weather-sunset", "material/weather-tornado", "material/weather-windy-variant", "material/weather-windy", "material/web-box", "material/web-cancel", "material/web-check", "material/web-clock", "material/web-minus", "material/web-off", "material/web-plus", "material/web-refresh", "material/web-remove", "material/web-sync", "material/web", "material/webcam-off", "material/webcam", "material/webhook", "material/webpack", "material/webrtc", "material/wechat", "material/weight-gram", "material/weight-kilogram", "material/weight-lifter", "material/weight-pound", "material/weight", "material/whatsapp", "material/wheel-barrow", "material/wheelchair-accessibility", "material/wheelchair", "material/whistle-outline", "material/whistle", "material/white-balance-auto", "material/white-balance-incandescent", "material/white-balance-iridescent", "material/white-balance-sunny", "material/widgets-outline", "material/widgets", "material/wifi-alert", "material/wifi-arrow-down", "material/wifi-arrow-left-right", "material/wifi-arrow-left", "material/wifi-arrow-right", "material/wifi-arrow-up-down", "material/wifi-arrow-up", "material/wifi-cancel", "material/wifi-check", "material/wifi-cog", "material/wifi-lock-open", "material/wifi-lock", "material/wifi-marker", "material/wifi-minus", "material/wifi-off", "material/wifi-plus", "material/wifi-refresh", "material/wifi-remove", "material/wifi-settings", "material/wifi-star", "material/wifi-strength-1-alert", "material/wifi-strength-1-lock-open", "material/wifi-strength-1-lock", "material/wifi-strength-1", "material/wifi-strength-2-alert", "material/wifi-strength-2-lock-open", "material/wifi-strength-2-lock", "material/wifi-strength-2", "material/wifi-strength-3-alert", "material/wifi-strength-3-lock-open", "material/wifi-strength-3-lock", "material/wifi-strength-3", "material/wifi-strength-4-alert", "material/wifi-strength-4-lock-open", "material/wifi-strength-4-lock", "material/wifi-strength-4", "material/wifi-strength-alert-outline", "material/wifi-strength-lock-open-outline", "material/wifi-strength-lock-outline", "material/wifi-strength-off-outline", "material/wifi-strength-off", "material/wifi-strength-outline", "material/wifi-sync", "material/wifi", "material/wikipedia", "material/wind-power-outline", "material/wind-power", "material/wind-turbine-alert", "material/wind-turbine-check", "material/wind-turbine", "material/window-close", "material/window-closed-variant", "material/window-closed", "material/window-maximize", "material/window-minimize", "material/window-open-variant", "material/window-open", "material/window-restore", "material/window-shutter-alert", "material/window-shutter-auto", "material/window-shutter-cog", "material/window-shutter-open", "material/window-shutter-settings", "material/window-shutter", "material/windsock", "material/wiper-wash-alert", "material/wiper-wash", "material/wiper", "material/wizard-hat", "material/wordpress", "material/wrap-disabled", "material/wrap", "material/wrench-check-outline", "material/wrench-check", "material/wrench-clock-outline", "material/wrench-clock", "material/wrench-cog-outline", "material/wrench-cog", "material/wrench-outline", "material/wrench", "material/xamarin", "material/xml", "material/xmpp", "material/yahoo", "material/yeast", "material/yin-yang", "material/yoga", "material/youtube-gaming", "material/youtube-studio", "material/youtube-subscription", "material/youtube-tv", "material/youtube", "material/yurt", "material/z-wave", "material/zend", "material/zigbee", "material/zip-box-outline", "material/zip-box", "material/zip-disk", "material/zodiac-aquarius", "material/zodiac-aries", "material/zodiac-cancer", "material/zodiac-capricorn", "material/zodiac-gemini", "material/zodiac-leo", "material/zodiac-libra", "material/zodiac-pisces", "material/zodiac-sagittarius", "material/zodiac-scorpio", "material/zodiac-taurus", "material/zodiac-virgo", "octicons/accessibility-16", "octicons/accessibility-24", "octicons/accessibility-inset-16", "octicons/accessibility-inset-24", "octicons/ai-model-16", "octicons/ai-model-24", "octicons/alert-16", "octicons/alert-24", "octicons/alert-fill-12", "octicons/alert-fill-16", "octicons/alert-fill-24", "octicons/apps-16", "octicons/apps-24", "octicons/archive-16", "octicons/archive-24", "octicons/arrow-both-16", "octicons/arrow-both-24", "octicons/arrow-down-16", "octicons/arrow-down-24", "octicons/arrow-down-left-16", "octicons/arrow-down-left-24", "octicons/arrow-down-right-16", "octicons/arrow-down-right-24", "octicons/arrow-left-16", "octicons/arrow-left-24", "octicons/arrow-right-16", "octicons/arrow-right-24", "octicons/arrow-switch-16", "octicons/arrow-switch-24", "octicons/arrow-up-16", "octicons/arrow-up-24", "octicons/arrow-up-left-16", "octicons/arrow-up-left-24", "octicons/arrow-up-right-16", "octicons/arrow-up-right-24", "octicons/beaker-16", "octicons/beaker-24", "octicons/bell-16", "octicons/bell-24", "octicons/bell-fill-16", "octicons/bell-fill-24", "octicons/bell-slash-16", "octicons/bell-slash-24", "octicons/blocked-16", "octicons/blocked-24", "octicons/bold-16", "octicons/bold-24", "octicons/book-16", "octicons/book-24", "octicons/bookmark-16", "octicons/bookmark-24", "octicons/bookmark-fill-24", "octicons/bookmark-filled-16", "octicons/bookmark-slash-16", "octicons/bookmark-slash-24", "octicons/bookmark-slash-fill-16", "octicons/bookmark-slash-fill-24", "octicons/briefcase-16", "octicons/briefcase-24", "octicons/broadcast-16", "octicons/broadcast-24", "octicons/browser-16", "octicons/browser-24", "octicons/bug-16", "octicons/bug-24", "octicons/cache-16", "octicons/cache-24", "octicons/calendar-16", "octicons/calendar-24", "octicons/check-16", "octicons/check-24", "octicons/check-circle-16", "octicons/check-circle-24", "octicons/check-circle-fill-12", "octicons/check-circle-fill-16", "octicons/check-circle-fill-24", "octicons/checkbox-16", "octicons/checkbox-24", "octicons/checklist-16", "octicons/checklist-24", "octicons/chevron-down-12", "octicons/chevron-down-16", "octicons/chevron-down-24", "octicons/chevron-left-12", "octicons/chevron-left-16", "octicons/chevron-left-24", "octicons/chevron-right-12", "octicons/chevron-right-16", "octicons/chevron-right-24", "octicons/chevron-up-12", "octicons/chevron-up-16", "octicons/chevron-up-24", "octicons/circle-16", "octicons/circle-24", "octicons/circle-slash-16", "octicons/circle-slash-24", "octicons/clock-16", "octicons/clock-24", "octicons/clock-fill-16", "octicons/clock-fill-24", "octicons/cloud-16", "octicons/cloud-24", "octicons/cloud-offline-16", "octicons/cloud-offline-24", "octicons/code-16", "octicons/code-24", "octicons/code-of-conduct-16", "octicons/code-of-conduct-24", "octicons/code-review-16", "octicons/code-review-24", "octicons/code-square-16", "octicons/code-square-24", "octicons/codescan-16", "octicons/codescan-24", "octicons/codescan-checkmark-16", "octicons/codescan-checkmark-24", "octicons/codespaces-16", "octicons/codespaces-24", "octicons/columns-16", "octicons/columns-24", "octicons/command-palette-16", "octicons/command-palette-24", "octicons/comment-16", "octicons/comment-24", "octicons/comment-discussion-16", "octicons/comment-discussion-24", "octicons/container-16", "octicons/container-24", "octicons/copilot-16", "octicons/copilot-24", "octicons/copilot-48", "octicons/copilot-96", "octicons/copilot-error-16", "octicons/copilot-warning-16", "octicons/copy-16", "octicons/copy-24", "octicons/cpu-16", "octicons/cpu-24", "octicons/credit-card-16", "octicons/credit-card-24", "octicons/cross-reference-16", "octicons/cross-reference-24", "octicons/dash-16", "octicons/dash-24", "octicons/database-16", "octicons/database-24", "octicons/dependabot-16", "octicons/dependabot-24", "octicons/desktop-download-16", "octicons/desktop-download-24", "octicons/device-camera-16", "octicons/device-camera-24", "octicons/device-camera-video-16", "octicons/device-camera-video-24", "octicons/device-desktop-16", "octicons/device-desktop-24", "octicons/device-mobile-16", "octicons/device-mobile-24", "octicons/devices-16", "octicons/devices-24", "octicons/diamond-16", "octicons/diamond-24", "octicons/diff-16", "octicons/diff-24", "octicons/diff-added-16", "octicons/diff-added-24", "octicons/diff-ignored-16", "octicons/diff-ignored-24", "octicons/diff-modified-16", "octicons/diff-modified-24", "octicons/diff-removed-16", "octicons/diff-removed-24", "octicons/diff-renamed-16", "octicons/diff-renamed-24", "octicons/discussion-closed-16", "octicons/discussion-closed-24", "octicons/discussion-duplicate-16", "octicons/discussion-duplicate-24", "octicons/discussion-outdated-16", "octicons/discussion-outdated-24", "octicons/dot-16", "octicons/dot-24", "octicons/dot-fill-16", "octicons/dot-fill-24", "octicons/download-16", "octicons/download-24", "octicons/duplicate-16", "octicons/duplicate-24", "octicons/ellipsis-16", "octicons/ellipsis-24", "octicons/eye-16", "octicons/eye-24", "octicons/eye-closed-16", "octicons/eye-closed-24", "octicons/feed-discussion-16", "octicons/feed-forked-16", "octicons/feed-heart-16", "octicons/feed-issue-closed-16", "octicons/feed-issue-draft-16", "octicons/feed-issue-open-16", "octicons/feed-issue-reopen-16", "octicons/feed-merged-16", "octicons/feed-person-16", "octicons/feed-plus-16", "octicons/feed-public-16", "octicons/feed-pull-request-closed-16", "octicons/feed-pull-request-draft-16", "octicons/feed-pull-request-open-16", "octicons/feed-repo-16", "octicons/feed-rocket-16", "octicons/feed-star-16", "octicons/feed-tag-16", "octicons/feed-trophy-16", "octicons/file-16", "octicons/file-24", "octicons/file-added-16", "octicons/file-added-24", "octicons/file-badge-16", "octicons/file-badge-24", "octicons/file-binary-16", "octicons/file-binary-24", "octicons/file-code-16", "octicons/file-code-24", "octicons/file-diff-16", "octicons/file-diff-24", "octicons/file-directory-16", "octicons/file-directory-24", "octicons/file-directory-fill-16", "octicons/file-directory-fill-24", "octicons/file-directory-open-fill-16", "octicons/file-directory-open-fill-24", "octicons/file-directory-symlink-16", "octicons/file-directory-symlink-24", "octicons/file-media-16", "octicons/file-media-24", "octicons/file-moved-16", "octicons/file-moved-24", "octicons/file-removed-16", "octicons/file-removed-24", "octicons/file-submodule-16", "octicons/file-submodule-24", "octicons/file-symlink-file-16", "octicons/file-symlink-file-24", "octicons/file-zip-16", "octicons/file-zip-24", "octicons/filter-16", "octicons/filter-24", "octicons/filter-remove-16", "octicons/filter-remove-24", "octicons/fiscal-host-16", "octicons/fiscal-host-24", "octicons/flame-16", "octicons/flame-24", "octicons/fold-16", "octicons/fold-24", "octicons/fold-down-16", "octicons/fold-down-24", "octicons/fold-up-16", "octicons/fold-up-24", "octicons/gear-16", "octicons/gear-24", "octicons/gift-16", "octicons/gift-24", "octicons/git-branch-16", "octicons/git-branch-24", "octicons/git-commit-16", "octicons/git-commit-24", "octicons/git-compare-16", "octicons/git-compare-24", "octicons/git-merge-16", "octicons/git-merge-24", "octicons/git-merge-queue-16", "octicons/git-merge-queue-24", "octicons/git-pull-request-16", "octicons/git-pull-request-24", "octicons/git-pull-request-closed-16", "octicons/git-pull-request-closed-24", "octicons/git-pull-request-draft-16", "octicons/git-pull-request-draft-24", "octicons/globe-16", "octicons/globe-24", "octicons/goal-16", "octicons/goal-24", "octicons/grabber-16", "octicons/grabber-24", "octicons/graph-16", "octicons/graph-24", "octicons/hash-16", "octicons/hash-24", "octicons/heading-16", "octicons/heading-24", "octicons/heart-16", "octicons/heart-24", "octicons/heart-fill-16", "octicons/heart-fill-24", "octicons/history-16", "octicons/history-24", "octicons/home-16", "octicons/home-24", "octicons/home-fill-16", "octicons/home-fill-24", "octicons/horizontal-rule-16", "octicons/horizontal-rule-24", "octicons/hourglass-16", "octicons/hourglass-24", "octicons/hubot-16", "octicons/hubot-24", "octicons/id-badge-16", "octicons/id-badge-24", "octicons/image-16", "octicons/image-24", "octicons/inbox-16", "octicons/inbox-24", "octicons/infinity-16", "octicons/infinity-24", "octicons/info-16", "octicons/info-24", "octicons/issue-closed-16", "octicons/issue-closed-24", "octicons/issue-draft-16", "octicons/issue-draft-24", "octicons/issue-opened-16", "octicons/issue-opened-24", "octicons/issue-reopened-16", "octicons/issue-reopened-24", "octicons/issue-tracked-by-16", "octicons/issue-tracked-by-24", "octicons/issue-tracks-16", "octicons/issue-tracks-24", "octicons/italic-16", "octicons/italic-24", "octicons/iterations-16", "octicons/iterations-24", "octicons/kebab-horizontal-16", "octicons/kebab-horizontal-24", "octicons/key-16", "octicons/key-24", "octicons/key-asterisk-16", "octicons/key-asterisk-24", "octicons/law-16", "octicons/law-24", "octicons/light-bulb-16", "octicons/light-bulb-24", "octicons/link-16", "octicons/link-24", "octicons/link-external-16", "octicons/link-external-24", "octicons/list-ordered-16", "octicons/list-ordered-24", "octicons/list-unordered-16", "octicons/list-unordered-24", "octicons/location-16", "octicons/location-24", "octicons/lock-16", "octicons/lock-24", "octicons/log-16", "octicons/log-24", "octicons/logo-gist-16", "octicons/logo-gist-24", "octicons/logo-github-16", "octicons/logo-github-24", "octicons/mail-16", "octicons/mail-24", "octicons/mark-github-16", "octicons/mark-github-24", "octicons/markdown-16", "octicons/markdown-24", "octicons/megaphone-16", "octicons/megaphone-24", "octicons/mention-16", "octicons/mention-24", "octicons/meter-16", "octicons/meter-24", "octicons/milestone-16", "octicons/milestone-24", "octicons/mirror-16", "octicons/mirror-24", "octicons/moon-16", "octicons/moon-24", "octicons/mortar-board-16", "octicons/mortar-board-24", "octicons/move-to-bottom-16", "octicons/move-to-bottom-24", "octicons/move-to-end-16", "octicons/move-to-end-24", "octicons/move-to-start-16", "octicons/move-to-start-24", "octicons/move-to-top-16", "octicons/move-to-top-24", "octicons/multi-select-16", "octicons/multi-select-24", "octicons/mute-16", "octicons/mute-24", "octicons/no-entry-16", "octicons/no-entry-24", "octicons/no-entry-fill-12", "octicons/north-star-16", "octicons/north-star-24", "octicons/note-16", "octicons/note-24", "octicons/number-16", "octicons/number-24", "octicons/organization-16", "octicons/organization-24", "octicons/package-16", "octicons/package-24", "octicons/package-dependencies-16", "octicons/package-dependencies-24", "octicons/package-dependents-16", "octicons/package-dependents-24", "octicons/paintbrush-16", "octicons/paintbrush-24", "octicons/paper-airplane-16", "octicons/paper-airplane-24", "octicons/paperclip-16", "octicons/paperclip-24", "octicons/passkey-fill-16", "octicons/passkey-fill-24", "octicons/paste-16", "octicons/paste-24", "octicons/pencil-16", "octicons/pencil-24", "octicons/people-16", "octicons/people-24", "octicons/person-16", "octicons/person-24", "octicons/person-add-16", "octicons/person-add-24", "octicons/person-fill-16", "octicons/person-fill-24", "octicons/pin-16", "octicons/pin-24", "octicons/pin-slash-16", "octicons/pin-slash-24", "octicons/pivot-column-16", "octicons/pivot-column-24", "octicons/play-16", "octicons/play-24", "octicons/plug-16", "octicons/plug-24", "octicons/plus-16", "octicons/plus-24", "octicons/plus-circle-16", "octicons/plus-circle-24", "octicons/project-16", "octicons/project-24", "octicons/project-roadmap-16", "octicons/project-roadmap-24", "octicons/project-symlink-16", "octicons/project-symlink-24", "octicons/project-template-16", "octicons/project-template-24", "octicons/pulse-16", "octicons/pulse-24", "octicons/question-16", "octicons/question-24", "octicons/quote-16", "octicons/quote-24", "octicons/read-16", "octicons/read-24", "octicons/redo-16", "octicons/redo-24", "octicons/rel-file-path-16", "octicons/rel-file-path-24", "octicons/reply-16", "octicons/reply-24", "octicons/repo-16", "octicons/repo-24", "octicons/repo-clone-16", "octicons/repo-clone-24", "octicons/repo-delete-24", "octicons/repo-deleted-16", "octicons/repo-forked-16", "octicons/repo-forked-24", "octicons/repo-locked-16", "octicons/repo-locked-24", "octicons/repo-pull-16", "octicons/repo-pull-24", "octicons/repo-push-16", "octicons/repo-push-24", "octicons/repo-template-16", "octicons/repo-template-24", "octicons/report-16", "octicons/report-24", "octicons/rocket-16", "octicons/rocket-24", "octicons/rows-16", "octicons/rows-24", "octicons/rss-16", "octicons/rss-24", "octicons/ruby-16", "octicons/ruby-24", "octicons/screen-full-16", "octicons/screen-full-24", "octicons/screen-normal-16", "octicons/screen-normal-24", "octicons/search-16", "octicons/search-24", "octicons/server-16", "octicons/server-24", "octicons/share-16", "octicons/share-24", "octicons/share-android-16", "octicons/share-android-24", "octicons/shield-16", "octicons/shield-24", "octicons/shield-check-16", "octicons/shield-check-24", "octicons/shield-lock-16", "octicons/shield-lock-24", "octicons/shield-slash-16", "octicons/shield-slash-24", "octicons/shield-x-16", "octicons/shield-x-24", "octicons/sidebar-collapse-16", "octicons/sidebar-collapse-24", "octicons/sidebar-expand-16", "octicons/sidebar-expand-24", "octicons/sign-in-16", "octicons/sign-in-24", "octicons/sign-out-16", "octicons/sign-out-24", "octicons/single-select-16", "octicons/single-select-24", "octicons/skip-16", "octicons/skip-24", "octicons/skip-fill-16", "octicons/skip-fill-24", "octicons/sliders-16", "octicons/sliders-24", "octicons/smiley-16", "octicons/smiley-24", "octicons/sort-asc-16", "octicons/sort-asc-24", "octicons/sort-desc-16", "octicons/sort-desc-24", "octicons/sparkle-fill-16", "octicons/sparkle-fill-24", "octicons/sparkles-fill-16", "octicons/sparkles-fill-24", "octicons/sponsor-tiers-16", "octicons/sponsor-tiers-24", "octicons/square-16", "octicons/square-24", "octicons/square-fill-16", "octicons/square-fill-24", "octicons/squirrel-16", "octicons/squirrel-24", "octicons/stack-16", "octicons/stack-24", "octicons/star-16", "octicons/star-24", "octicons/star-fill-16", "octicons/star-fill-24", "octicons/stop-16", "octicons/stop-24", "octicons/stopwatch-16", "octicons/stopwatch-24", "octicons/strikethrough-16", "octicons/strikethrough-24", "octicons/sun-16", "octicons/sun-24", "octicons/sync-16", "octicons/sync-24", "octicons/tab-16", "octicons/tab-24", "octicons/tab-external-16", "octicons/tab-external-24", "octicons/table-16", "octicons/table-24", "octicons/tag-16", "octicons/tag-24", "octicons/tasklist-16", "octicons/tasklist-24", "octicons/telescope-16", "octicons/telescope-24", "octicons/telescope-fill-16", "octicons/telescope-fill-24", "octicons/terminal-16", "octicons/terminal-24", "octicons/three-bars-16", "octicons/three-bars-24", "octicons/thumbsdown-16", "octicons/thumbsdown-24", "octicons/thumbsup-16", "octicons/thumbsup-24", "octicons/tools-16", "octicons/tools-24", "octicons/tracked-by-closed-completed-16", "octicons/tracked-by-closed-completed-24", "octicons/tracked-by-closed-not-planned-16", "octicons/tracked-by-closed-not-planned-24", "octicons/trash-16", "octicons/trash-24", "octicons/triangle-down-16", "octicons/triangle-down-24", "octicons/triangle-left-16", "octicons/triangle-left-24", "octicons/triangle-right-16", "octicons/triangle-right-24", "octicons/triangle-up-16", "octicons/triangle-up-24", "octicons/trophy-16", "octicons/trophy-24", "octicons/typography-16", "octicons/typography-24", "octicons/undo-16", "octicons/undo-24", "octicons/unfold-16", "octicons/unfold-24", "octicons/unlink-16", "octicons/unlink-24", "octicons/unlock-16", "octicons/unlock-24", "octicons/unmute-16", "octicons/unmute-24", "octicons/unread-16", "octicons/unread-24", "octicons/unverified-16", "octicons/unverified-24", "octicons/upload-16", "octicons/upload-24", "octicons/verified-16", "octicons/verified-24", "octicons/versions-16", "octicons/versions-24", "octicons/video-16", "octicons/video-24", "octicons/webhook-16", "octicons/workflow-16", "octicons/workflow-24", "octicons/x-12", "octicons/x-16", "octicons/x-24", "octicons/x-circle-16", "octicons/x-circle-24", "octicons/x-circle-fill-12", "octicons/x-circle-fill-16", "octicons/x-circle-fill-24", "octicons/zap-16", "octicons/zap-24", "octicons/zoom-in-16", "octicons/zoom-in-24", "octicons/zoom-out-16", "octicons/zoom-out-24", "simple/1001tracklists", "simple/1and1", "simple/1dot1dot1dot1", "simple/1panel", "simple/1password", "simple/2fas", "simple/2k", "simple/30secondsofcode", "simple/365datascience", "simple/3m", "simple/42", "simple/4chan", "simple/4d", "simple/500px", "simple/7zip", "simple/99designs", "simple/9gag", "simple/abbott", "simple/abbrobotstudio", "simple/abbvie", "simple/aboutdotme", "simple/abstract", "simple/abusedotch", "simple/academia", "simple/accenture", "simple/accusoft", "simple/accuweather", "simple/acer", "simple/acm", "simple/actigraph", "simple/activision", "simple/activitypub", "simple/actix", "simple/actualbudget", "simple/acura", "simple/adafruit", "simple/adblock", "simple/adblockplus", "simple/addydotio", "simple/adguard", "simple/adidas", "simple/adminer", "simple/adonisjs", "simple/adp", "simple/adroll", "simple/adventofcode", "simple/adyen", "simple/aegisauthenticator", "simple/aerlingus", "simple/aeroflot", "simple/aeromexico", "simple/aerospike", "simple/aew", "simple/afdian", "simple/affine", "simple/affinity", "simple/affinitydesigner", "simple/affinityphoto", "simple/affinitypublisher", "simple/aframe", "simple/afterpay", "simple/aftership", "simple/agora", "simple/aib", "simple/aidungeon", "simple/aiohttp", "simple/aiqfome", "simple/airasia", "simple/airbnb", "simple/airbrake", "simple/airbus", "simple/airbyte", "simple/aircall", "simple/aircanada", "simple/airchina", "simple/airfrance", "simple/airindia", "simple/airplayaudio", "simple/airplayvideo", "simple/airserbia", "simple/airtable", "simple/airtel", "simple/airtransat", "simple/ajv", "simple/akamai", "simple/akasaair", "simple/akaunting", "simple/akiflow", "simple/alacritty", "simple/alamy", "simple/albertheijn", "simple/alby", "simple/alchemy", "simple/aldinord", "simple/aldisud", "simple/alfaromeo", "simple/alfred", "simple/algolia", "simple/algorand", "simple/alibabacloud", "simple/alibabadotcom", "simple/alienware", "simple/aliexpress", "simple/alipay", "simple/allegro", "simple/alliedmodders", "simple/allocine", "simple/alltrails", "simple/almalinux", "simple/alpinedotjs", "simple/alpinelinux", "simple/alternativeto", "simple/alteryx", "simple/altiumdesigner", "simple/alwaysdata", "simple/alx", "simple/amazon", "simple/amazonalexa", "simple/amazonapigateway", "simple/amazoncloudwatch", "simple/amazoncognito", "simple/amazondocumentdb", "simple/amazondynamodb", "simple/amazonec2", "simple/amazonecs", "simple/amazoneks", "simple/amazonelasticache", "simple/amazonfiretv", "simple/amazongames", "simple/amazoniam", "simple/amazonlumberyard", "simple/amazonluna", "simple/amazonmusic", "simple/amazonpay", "simple/amazonprime", "simple/amazonrds", "simple/amazonredshift", "simple/amazonroute53", "simple/amazons3", "simple/amazonsimpleemailservice", "simple/amazonsqs", "simple/amazonwebservices", "simple/amd", "simple/ameba", "simple/americanairlines", "simple/americanexpress", "simple/amg", "simple/amp", "simple/amul", "simple/ana", "simple/anaconda", "simple/analogue", "simple/andela", "simple/android", "simple/androidauto", "simple/androidstudio", "simple/angular", "simple/anilist", "simple/animalplanet", "simple/ankermake", "simple/anki", "simple/ansible", "simple/answer", "simple/ansys", "simple/anta", "simple/antdesign", "simple/antena3", "simple/anthropic", "simple/antv", "simple/anycubic", "simple/anydesk", "simple/anytype", "simple/aol", "simple/apache", "simple/apacheairflow", "simple/apacheant", "simple/apachecassandra", "simple/apachecloudstack", "simple/apachecordova", "simple/apachecouchdb", "simple/apachedolphinscheduler", "simple/apachedruid", "simple/apacheecharts", "simple/apacheflink", "simple/apachefreemarker", "simple/apachegroovy", "simple/apacheguacamole", "simple/apachehadoop", "simple/apachehbase", "simple/apachehive", "simple/apachejmeter", "simple/apachekafka", "simple/apachekylin", "simple/apachelucene", "simple/apachemaven", "simple/apachenetbeanside", "simple/apachenifi", "simple/apacheopenoffice", "simple/apacheparquet", "simple/apachepulsar", "simple/apacherocketmq", "simple/apachesolr", "simple/apachespark", "simple/apachestorm", "simple/apachesuperset", "simple/apachetomcat", "simple/aparat", "simple/apifox", "simple/apmterminals", "simple/apollographql", "simple/apostrophe", "simple/appgallery", "simple/appian", "simple/appium", "simple/apple", "simple/applearcade", "simple/applemusic", "simple/applenews", "simple/applepay", "simple/applepodcasts", "simple/appletv", "simple/appsignal", "simple/appsmith", "simple/appstore", "simple/appveyor", "simple/appwrite", "simple/aqua", "simple/aral", "simple/arangodb", "simple/arc", "simple/arcgis", "simple/archicad", "simple/archiveofourown", "simple/archlinux", "simple/ardour", "simple/arduino", "simple/argo", "simple/argos", "simple/ariakit", "simple/arkecosystem", "simple/arlo", "simple/arm", "simple/armkeil", "simple/arstechnica", "simple/artifacthub", "simple/artixlinux", "simple/artstation", "simple/arxiv", "simple/asahilinux", "simple/asana", "simple/asciidoctor", "simple/asciinema", "simple/asda", "simple/aseprite", "simple/assemblyscript", "simple/asterisk", "simple/astonmartin", "simple/astra", "simple/astral", "simple/astro", "simple/asus", "simple/atandt", "simple/atari", "simple/atlasos", "simple/atlassian", "simple/auchan", "simple/audacity", "simple/audi", "simple/audible", "simple/audiobookshelf", "simple/audioboom", "simple/audiomack", "simple/audiotechnica", "simple/aurelia", "simple/auth0", "simple/authelia", "simple/authentik", "simple/authy", "simple/autocad", "simple/autocannon", "simple/autodesk", "simple/autodeskmaya", "simple/autodeskrevit", "simple/autohotkey", "simple/autoit", "simple/automattic", "simple/autoprefixer", "simple/autozone", "simple/avajs", "simple/avast", "simple/avianca", "simple/avira", "simple/awesomelists", "simple/awesomewm", "simple/awsamplify", "simple/awselasticloadbalancing", "simple/awsfargate", "simple/awslambda", "simple/awsorganizations", "simple/awssecretsmanager", "simple/awwwards", "simple/axios", "simple/babel", "simple/babelio", "simple/babylondotjs", "simple/backblaze", "simple/backbone", "simple/backbonedotjs", "simple/backendless", "simple/backstage", "simple/badoo", "simple/baidu", "simple/bakalari", "simple/bamboo", "simple/bambulab", "simple/bandcamp", "simple/bandlab", "simple/bandrautomation", "simple/bandsintown", "simple/bankofamerica", "simple/barclays", "simple/baremetrics", "simple/barmenia", "simple/basecamp", "simple/baserow", "simple/basicattentiontoken", "simple/bastyon", "simple/bat", "simple/bata", "simple/battledotnet", "simple/bazel", "simple/beatport", "simple/beats", "simple/beatsbydre", "simple/beatstars", "simple/beekeeperstudio", "simple/behance", "simple/beijingsubway", "simple/bem", "simple/bentley", "simple/bento", "simple/bentobox", "simple/bentoml", "simple/bereal", "simple/betfair", "simple/betterdiscord", "simple/betterstack", "simple/bevy", "simple/bigbasket", "simple/bigbluebutton", "simple/bigcartel", "simple/bigcommerce", "simple/bilibili", "simple/billboard", "simple/bim", "simple/binance", "simple/biolink", "simple/biome", "simple/bisecthosting", "simple/bit", "simple/bitbucket", "simple/bitcoin", "simple/bitcoincash", "simple/bitcoinsv", "simple/bitcomet", "simple/bitdefender", "simple/bitly", "simple/bitrise", "simple/bittorrent", "simple/bitwarden", "simple/bitwig", "simple/blackberry", "simple/blackmagicdesign", "simple/blazemeter", "simple/blazor", "simple/blender", "simple/blockbench", "simple/blockchaindotcom", "simple/blogger", "simple/bloglovin", "simple/blueprint", "simple/bluesky", "simple/bluesound", "simple/bluetooth", "simple/bmcsoftware", "simple/bmw", "simple/bnbchain", "simple/boardgamegeek", "simple/boat", "simple/boehringeringelheim", "simple/boeing", "simple/bombardier", "simple/bookalope", "simple/bookbub", "simple/bookmeter", "simple/bookmyshow", "simple/bookstack", "simple/boost", "simple/boosty", "simple/boots", "simple/bootstrap", "simple/borgbackup", "simple/bosch", "simple/bose", "simple/botblecms", "simple/boulanger", "simple/bower", "simple/box", "simple/boxysvg", "simple/braintree", "simple/brandfolder", "simple/brave", "simple/breaker", "simple/brenntag", "simple/brevo", "simple/brex", "simple/bricks", "simple/britishairways", "simple/broadcom", "simple/bruno", "simple/bsd", "simple/bspwm", "simple/bt", "simple/buddy", "simple/budibase", "simple/buefy", "simple/buffer", "simple/bugatti", "simple/bugcrowd", "simple/bugsnag", "simple/buhl", "simple/buildkite", "simple/builtbybit", "simple/bukalapak", "simple/bulma", "simple/bun", "simple/bungie", "simple/bunq", "simple/burgerking", "simple/burpsuite", "simple/burton", "simple/buymeacoffee", "simple/buysellads", "simple/buzzfeed", "simple/bvg", "simple/byjus", "simple/bytedance", "simple/c", "simple/cachet", "simple/caddy", "simple/cadillac", "simple/cafepress", "simple/cairographics", "simple/cairometro", "simple/caixabank", "simple/cakephp", "simple/caldotcom", "simple/calendly", "simple/calibreweb", "simple/campaignmonitor", "simple/camunda", "simple/canonical", "simple/canva", "simple/canvas", "simple/capacitor", "simple/caprover", "simple/cardano", "simple/carlsberggroup", "simple/carrd", "simple/carrefour", "simple/carthrottle", "simple/carto", "simple/cashapp", "simple/castbox", "simple/castorama", "simple/castro", "simple/caterpillar", "simple/cbc", "simple/cbs", "simple/ccc", "simple/ccleaner", "simple/cdprojekt", "simple/ce", "simple/celery", "simple/celestron", "simple/centos", "simple/ceph", "simple/cesium", "simple/chai", "simple/chainguard", "simple/chainlink", "simple/chakraui", "simple/channel4", "simple/charles", "simple/chartdotjs", "simple/chartmogul", "simple/chase", "simple/chatbot", "simple/chatwoot", "simple/checkio", "simple/checkmarx", "simple/checkmk", "simple/chedraui", "simple/cheerio", "simple/chef", "simple/chemex", "simple/chessdotcom", "simple/chevrolet", "simple/chianetwork", "simple/chinaeasternairlines", "simple/chinasouthernairlines", "simple/chocolatey", "simple/chromatic", "simple/chromecast", "simple/chromewebstore", "simple/chrysler", "simple/chupachups", "simple/cilium", "simple/cinema4d", "simple/cinnamon", "simple/circle", "simple/circleci", "simple/circuitverse", "simple/cirrusci", "simple/cisco", "simple/citrix", "simple/citroen", "simple/civicrm", "simple/civo", "simple/clarifai", "simple/claris", "simple/clarivate", "simple/claude", "simple/clerk", "simple/clevercloud", "simple/clickhouse", "simple/clickup", "simple/clion", "simple/clockify", "simple/clojure", "simple/cloud66", "simple/cloudbees", "simple/cloudcannon", "simple/cloudera", "simple/cloudflare", "simple/cloudflarepages", "simple/cloudflareworkers", "simple/cloudfoundry", "simple/cloudinary", "simple/cloudron", "simple/cloudsmith", "simple/cloudways", "simple/clubforce", "simple/clubhouse", "simple/clyp", "simple/cmake", "simple/cncf", "simple/cnet", "simple/cnn", "simple/cocacola", "simple/cockpit", "simple/cockroachlabs", "simple/cocoapods", "simple/cocos", "simple/coda", "simple/codacy", "simple/codeberg", "simple/codeblocks", "simple/codecademy", "simple/codeceptjs", "simple/codechef", "simple/codeclimate", "simple/codecov", "simple/codecrafters", "simple/codefactor", "simple/codeforces", "simple/codefresh", "simple/codeigniter", "simple/codeium", "simple/codemagic", "simple/codementor", "simple/codemirror", "simple/codenewbie", "simple/codepen", "simple/codeproject", "simple/coder", "simple/codersrank", "simple/coderwall", "simple/codesandbox", "simple/codeship", "simple/codesignal", "simple/codestream", "simple/codewars", "simple/codingame", "simple/codingninjas", "simple/codio", "simple/coffeescript", "simple/coggle", "simple/cognizant", "simple/cohost", "simple/coinbase", "simple/coinmarketcap", "simple/collaboraonline", "simple/comicfury", "simple/comma", "simple/commerzbank", "simple/commitlint", "simple/commodore", "simple/commonlisp", "simple/commonworkflowlanguage", "simple/compilerexplorer", "simple/composer", "simple/comptia", "simple/comsol", "simple/conan", "simple/concourse", "simple/condaforge", "simple/conekta", "simple/confluence", "simple/construct3", "simple/consul", "simple/contabo", "simple/contactlesspayment", "simple/containerd", "simple/contao", "simple/contentful", "simple/contentstack", "simple/continente", "simple/contributorcovenant", "simple/conventionalcommits", "simple/convertio", "simple/cookiecutter", "simple/coolermaster", "simple/coop", "simple/copaairlines", "simple/coppel", "simple/cora", "simple/coreldraw", "simple/coronaengine", "simple/coronarenderer", "simple/corsair", "simple/couchbase", "simple/counterstrike", "simple/countingworkspro", "simple/coursera", "simple/coveralls", "simple/coze", "simple/cpanel", "simple/cplusplus", "simple/cplusplusbuilder", "simple/craftcms", "simple/craftsman", "simple/cratedb", "simple/crayon", "simple/creality", "simple/createreactapp", "simple/creativecommons", "simple/creativetechnology", "simple/credly", "simple/crehana", "simple/crewai", "simple/crewunited", "simple/criticalrole", "simple/crowdin", "simple/crowdsource", "simple/crunchbase", "simple/crunchyroll", "simple/cryengine", "simple/cryptomator", "simple/cryptpad", "simple/crystal", "simple/csdn", "simple/css", "simple/css3", "simple/cssdesignawards", "simple/cssmodules", "simple/csswizardry", "simple/cts", "simple/cucumber", "simple/cultura", "simple/curl", "simple/curseforge", "simple/customink", "simple/cyberdefenders", "simple/cycling74", "simple/cypress", "simple/cytoscapedotjs", "simple/d", "simple/d3", "simple/dacia", "simple/daf", "simple/dailydotdev", "simple/dailymotion", "simple/daisyui", "simple/dapr", "simple/darkreader", "simple/dart", "simple/darty", "simple/daserste", "simple/dash", "simple/dashlane", "simple/dask", "simple/dassaultsystemes", "simple/databricks", "simple/datacamp", "simple/datadog", "simple/datadotai", "simple/datagrip", "simple/dataiku", "simple/datastax", "simple/datefns", "simple/datev", "simple/datocms", "simple/datto", "simple/davinciresolve", "simple/dazhongdianping", "simple/dazn", "simple/dbeaver", "simple/dblp", "simple/dbt", "simple/dcentertainment", "simple/debian", "simple/debridlink", "simple/decapcms", "simple/decentraland", "simple/dedge", "simple/deepcool", "simple/deepgram", "simple/deepin", "simple/deepl", "simple/deepnote", "simple/deliveroo", "simple/dell", "simple/delonghi", "simple/delphi", "simple/delta", "simple/deluge", "simple/deno", "simple/denon", "simple/dependabot", "simple/dependencycheck", "simple/depositphotos", "simple/derspiegel", "simple/deutschebahn", "simple/deutschebank", "simple/deutschepost", "simple/deutschetelekom", "simple/deutschewelle", "simple/devdotto", "simple/devexpress", "simple/deviantart", "simple/devpost", "simple/devrant", "simple/dgraph", "simple/dhl", "simple/diagramsdotnet", "simple/dialogflow", "simple/diaspora", "simple/dictionarydotcom", "simple/digg", "simple/digikeyelectronics", "simple/digitalocean", "simple/dinersclub", "simple/dior", "simple/directus", "simple/discogs", "simple/discord", "simple/discourse", "simple/discover", "simple/disqus", "simple/disroot", "simple/distrokid", "simple/django", "simple/dji", "simple/dlib", "simple/dlna", "simple/dm", "simple/docker", "simple/docsdotrs", "simple/docsify", "simple/doctrine", "simple/docusaurus", "simple/dogecoin", "simple/doi", "simple/dolby", "simple/doordash", "simple/dota2", "simple/dotenv", "simple/dotnet", "simple/douban", "simple/doubanread", "simple/dovecot", "simple/dovetail", "simple/downdetector", "simple/doxygen", "simple/dpd", "simple/dragonframe", "simple/draugiemdotlv", "simple/dreamstime", "simple/dribbble", "simple/drizzle", "simple/drone", "simple/drooble", "simple/dropbox", "simple/drupal", "simple/dsautomobiles", "simple/dts", "simple/dtube", "simple/ducati", "simple/duckdb", "simple/duckduckgo", "simple/dungeonsanddragons", "simple/dunked", "simple/dunzo", "simple/duolingo", "simple/duplicati", "simple/dvc", "simple/dwavesystems", "simple/dwm", "simple/dynatrace", "simple/e", "simple/e3", "simple/ea", "simple/eac", "simple/eagle", "simple/easyeda", "simple/easyjet", "simple/ebay", "simple/ebox", "simple/eclipseadoptium", "simple/eclipseche", "simple/eclipseide", "simple/eclipsejetty", "simple/eclipsemosquitto", "simple/eclipsevertdotx", "simple/ecosia", "simple/ecovacs", "simple/edeka", "simple/edgeimpulse", "simple/editorconfig", "simple/edotleclerc", "simple/educative", "simple/edx", "simple/egghead", "simple/egnyte", "simple/eight", "simple/eightsleep", "simple/ejs", "simple/elastic", "simple/elasticcloud", "simple/elasticsearch", "simple/elasticstack", "simple/elavon", "simple/electron", "simple/electronbuilder", "simple/electronfiddle", "simple/elegoo", "simple/element", "simple/elementary", "simple/elementor", "simple/elevenlabs", "simple/eleventy", "simple/elgato", "simple/elixir", "simple/elm", "simple/elsevier", "simple/embarcadero", "simple/embark", "simple/emberdotjs", "simple/emby", "simple/emirates", "simple/emlakjet", "simple/empirekred", "simple/endeavouros", "simple/engadget", "simple/enpass", "simple/enterprisedb", "simple/envato", "simple/envoyproxy", "simple/epel", "simple/epicgames", "simple/epson", "simple/equinixmetal", "simple/eraser", "simple/ericsson", "simple/erlang", "simple/erpnext", "simple/esbuild", "simple/esea", "simple/eslgaming", "simple/eslint", "simple/esotericsoftware", "simple/esphome", "simple/espressif", "simple/esri", "simple/etcd", "simple/ethereum", "simple/ethers", "simple/ethiopianairlines", "simple/etihadairways", "simple/etsy", "simple/europeanunion", "simple/eventbrite", "simple/eventstore", "simple/evernote", "simple/excalidraw", "simple/exercism", "simple/exordo", "simple/exoscale", "simple/expedia", "simple/expensify", "simple/expertsexchange", "simple/expo", "simple/express", "simple/expressdotcom", "simple/expressvpn", "simple/eyeem", "simple/f1", "simple/f5", "simple/facebook", "simple/facebookgaming", "simple/facebooklive", "simple/faceit", "simple/facepunch", "simple/fairphone", "simple/falco", "simple/falcon", "simple/fampay", "simple/fandango", "simple/fandom", "simple/fanfou", "simple/fantom", "simple/farcaster", "simple/fareharbor", "simple/farfetch", "simple/fastapi", "simple/fastify", "simple/fastlane", "simple/fastly", "simple/fathom", "simple/fauna", "simple/favro", "simple/fcc", "simple/fdroid", "simple/fedex", "simple/fedora", "simple/feedly", "simple/ferrari", "simple/ferrarinv", "simple/ferretdb", "simple/ffmpeg", "simple/fi", "simple/fiat", "simple/fidoalliance", "simple/fifa", "simple/fig", "simple/figma", "simple/figshare", "simple/fila", "simple/filament", "simple/filedotio", "simple/files", "simple/filezilla", "simple/fineco", "simple/fing", "simple/firebase", "simple/firefish", "simple/fireflyiii", "simple/firefox", "simple/firefoxbrowser", "simple/fireship", "simple/firewalla", "simple/first", "simple/fishshell", "simple/fitbit", "simple/fivem", "simple/fiverr", "simple/fizz", "simple/flashforge", "simple/flask", "simple/flat", "simple/flathub", "simple/flatpak", "simple/flickr", "simple/flightaware", "simple/flipboard", "simple/flipkart", "simple/floatplane", "simple/flood", "simple/fluentbit", "simple/fluentd", "simple/fluke", "simple/flutter", "simple/flux", "simple/flydotio", "simple/flyway", "simple/fmod", "simple/fnac", "simple/folium", "simple/fonoma", "simple/fontawesome", "simple/fontbase", "simple/fontforge", "simple/foobar2000", "simple/foodpanda", "simple/ford", "simple/forgejo", "simple/formik", "simple/formspree", "simple/formstack", "simple/fortinet", "simple/fortran", "simple/fossa", "simple/fossilscm", "simple/foundryvirtualtabletop", "simple/foursquare", "simple/fox", "simple/foxtel", "simple/fozzy", "simple/framer", "simple/framework", "simple/framework7", "simple/franprix", "simple/frappe", "simple/fraunhofergesellschaft", "simple/freebsd", "simple/freecad", "simple/freecodecamp", "simple/freedesktopdotorg", "simple/freelancer", "simple/freelancermap", "simple/freenas", "simple/freenet", "simple/freepik", "simple/fresh", "simple/frontendmentor", "simple/frontify", "simple/fsecure", "simple/fsharp", "simple/fubo", "simple/fueler", "simple/fugacloud", "simple/fujifilm", "simple/fujitsu", "simple/furaffinity", "simple/furrynetwork", "simple/fusionauth", "simple/futurelearn", "simple/fyle", "simple/g2", "simple/g2a", "simple/g2g", "simple/galaxus", "simple/gamebanana", "simple/gamedeveloper", "simple/gamejolt", "simple/gameloft", "simple/gamemaker", "simple/gamescience", "simple/garmin", "simple/gatling", "simple/gatsby", "simple/gcore", "simple/gdal", "simple/geeksforgeeks", "simple/generalelectric", "simple/generalmotors", "simple/genius", "simple/gentoo", "simple/geocaching", "simple/geode", "simple/geopandas", "simple/gerrit", "simple/getx", "simple/ghost", "simple/ghostery", "simple/gimp", "simple/gin", "simple/giphy", "simple/git", "simple/gitbook", "simple/gitconnected", "simple/gitea", "simple/gitee", "simple/gitextensions", "simple/gitforwindows", "simple/github", "simple/githubactions", "simple/githubcopilot", "simple/githubpages", "simple/githubsponsors", "simple/gitignoredotio", "simple/gitkraken", "simple/gitlab", "simple/gitlfs", "simple/gitpod", "simple/gitter", "simple/glassdoor", "simple/glide", "simple/glitch", "simple/globus", "simple/glovo", "simple/gltf", "simple/gmail", "simple/gmx", "simple/gnome", "simple/gnometerminal", "simple/gnu", "simple/gnubash", "simple/gnuemacs", "simple/gnuicecat", "simple/gnuprivacyguard", "simple/gnusocial", "simple/go", "simple/gocd", "simple/godaddy", "simple/godotengine", "simple/gofundme", "simple/gogdotcom", "simple/gojek", "simple/goland", "simple/goldenline", "simple/goldmansachs", "simple/goodreads", "simple/google", "simple/googleadmob", "simple/googleads", "simple/googleadsense", "simple/googleanalytics", "simple/googleappsscript", "simple/googleassistant", "simple/googleauthenticator", "simple/googlebigquery", "simple/googlebigtable", "simple/googlecalendar", "simple/googlecampaignmanager360", "simple/googlecardboard", "simple/googlechat", "simple/googlechrome", "simple/googlechronicle", "simple/googleclassroom", "simple/googlecloud", "simple/googlecloudcomposer", "simple/googlecloudspanner", "simple/googlecloudstorage", "simple/googlecolab", "simple/googlecontaineroptimizedos", "simple/googledataflow", "simple/googledataproc", "simple/googledatastudio", "simple/googledisplayandvideo360", "simple/googledocs", "simple/googledrive", "simple/googleearth", "simple/googleearthengine", "simple/googlefit", "simple/googlefonts", "simple/googleforms", "simple/googlegemini", "simple/googlehome", "simple/googlekeep", "simple/googlelens", "simple/googlemaps", "simple/googlemarketingplatform", "simple/googlemeet", "simple/googlemessages", "simple/googlenearby", "simple/googlenews", "simple/googlepay", "simple/googlephotos", "simple/googleplay", "simple/googlepubsub", "simple/googlescholar", "simple/googlesearchconsole", "simple/googlesheets", "simple/googleslides", "simple/googlestreetview", "simple/googletagmanager", "simple/googletasks", "simple/googletranslate", "simple/gotomeeting", "simple/grab", "simple/gradio", "simple/gradle", "simple/gradleplaypublisher", "simple/grafana", "simple/grammarly", "simple/grandfrais", "simple/grapheneos", "simple/graphite", "simple/graphql", "simple/grav", "simple/gravatar", "simple/graylog", "simple/greasyfork", "simple/greatlearning", "simple/greenhouse", "simple/greensock", "simple/griddotai", "simple/gridsome", "simple/grocy", "simple/groupme", "simple/groupon", "simple/grubhub", "simple/grunt", "simple/gsk", "simple/gsmarenadotcom", "simple/gstreamer", "simple/gtk", "simple/guangzhoumetro", "simple/guilded", "simple/guitarpro", "simple/gulp", "simple/gumroad", "simple/gumtree", "simple/gunicorn", "simple/gurobi", "simple/gusto", "simple/gutenberg", "simple/h3", "simple/habr", "simple/hackaday", "simple/hackclub", "simple/hackerearth", "simple/hackernoon", "simple/hackerone", "simple/hackerrank", "simple/hackster", "simple/hackthebox", "simple/hal", "simple/handlebarsdotjs", "simple/handm", "simple/handshake", "simple/handshake_protocol", "simple/happycow", "simple/harbor", "simple/harmonyos", "simple/hashicorp", "simple/hashnode", "simple/haskell", "simple/hasura", "simple/hatenabookmark", "simple/haveibeenpwned", "simple/haxe", "simple/hbo", "simple/hcl", "simple/hdfcbank", "simple/headlessui", "simple/headphonezone", "simple/headspace", "simple/hearth", "simple/hearthisdotat", "simple/hedera", "simple/helium", "simple/helix", "simple/hellofresh", "simple/hellyhansen", "simple/helm", "simple/helpdesk", "simple/helpscout", "simple/hepsiemlak", "simple/here", "simple/hermes", "simple/heroku", "simple/hetzner", "simple/hevy", "simple/hexlet", "simple/hexo", "simple/hey", "simple/hibernate", "simple/hibob", "simple/hilton", "simple/hiltonhotelsandresorts", "simple/hitachi", "simple/hive", "simple/hive_blockchain", "simple/hivemq", "simple/homarr", "simple/homeadvisor", "simple/homeassistant", "simple/homeassistantcommunitystore", "simple/homebrew", "simple/homebridge", "simple/homepage", "simple/homify", "simple/honda", "simple/honey", "simple/honeybadger", "simple/honeygain", "simple/hono", "simple/honor", "simple/hootsuite", "simple/hoppscotch", "simple/hostinger", "simple/hotelsdotcom", "simple/hotjar", "simple/hotwire", "simple/houdini", "simple/houzz", "simple/hp", "simple/hsbc", "simple/htc", "simple/htcvive", "simple/html5", "simple/htmlacademy", "simple/htmx", "simple/htop", "simple/httpie", "simple/huawei", "simple/hubspot", "simple/huggingface", "simple/hugo", "simple/humblebundle", "simple/humhub", "simple/hungryjacks", "simple/husqvarna", "simple/hyper", "simple/hyperskill", "simple/hyperx", "simple/hypothesis", "simple/hyprland", "simple/hyundai", "simple/i18next", "simple/i3", "simple/iata", "simple/ibeacon", "simple/iberia", "simple/iced", "simple/iceland", "simple/icicibank", "simple/icinga", "simple/icloud", "simple/icomoon", "simple/icon", "simple/iconfinder", "simple/iconify", "simple/iconjar", "simple/icons8", "simple/icq", "simple/ieee", "simple/ifixit", "simple/ifood", "simple/ifttt", "simple/igdb", "simple/ign", "simple/iheartradio", "simple/ikea", "simple/iledefrancemobilites", "simple/imagedotsc", "simple/imagej", "simple/imdb", "simple/imessage", "simple/imgur", "simple/immer", "simple/immich", "simple/imou", "simple/improvmx", "simple/indeed", "simple/indiansuperleague", "simple/indiehackers", "simple/indigo", "simple/inductiveautomation", "simple/inertia", "simple/infiniti", "simple/influxdb", "simple/infomaniak", "simple/infoq", "simple/informatica", "simple/infosys", "simple/infracost", "simple/ingress", "simple/inkdrop", "simple/inkscape", "simple/inoreader", "simple/insomnia", "simple/inspire", "simple/insta360", "simple/instacart", "simple/instagram", "simple/instapaper", "simple/instatus", "simple/instructables", "simple/instructure", "simple/intel", "simple/intellijidea", "simple/interactiondesignfoundation", "simple/interactjs", "simple/interbase", "simple/intercom", "simple/intermarche", "simple/internetarchive", "simple/internetcomputer", "simple/intigriti", "simple/intuit", "simple/invision", "simple/invoiceninja", "simple/iobroker", "simple/ionic", "simple/ionos", "simple/ios", "simple/iota", "simple/ipfs", "simple/iris", "simple/irobot", "simple/isc2", "simple/issuu", "simple/istio", "simple/itchdotio", "simple/iterm2", "simple/itunes", "simple/itvx", "simple/iveco", "simple/jabber", "simple/jaeger", "simple/jaguar", "simple/jamboard", "simple/jameson", "simple/jamstack", "simple/japanairlines", "simple/jasmine", "simple/javascript", "simple/jbl", "simple/jcb", "simple/jeep", "simple/jekyll", "simple/jellyfin", "simple/jenkins", "simple/jest", "simple/jet", "simple/jetblue", "simple/jetbrains", "simple/jetpackcompose", "simple/jfrog", "simple/jfrogpipelines", "simple/jhipster", "simple/jinja", "simple/jio", "simple/jira", "simple/jirasoftware", "simple/jitpack", "simple/jitsi", "simple/johndeere", "simple/joomla", "simple/joplin", "simple/jordan", "simple/jouav", "simple/jovian", "simple/jpeg", "simple/jquery", "simple/jrgroup", "simple/jsdelivr", "simple/jsfiddle", "simple/json", "simple/jsonwebtokens", "simple/jsr", "simple/jss", "simple/juce", "simple/juejin", "simple/juke", "simple/julia", "simple/junipernetworks", "simple/junit5", "simple/jupyter", "simple/justeat", "simple/justgiving", "simple/k3s", "simple/k6", "simple/kaggle", "simple/kagi", "simple/kahoot", "simple/kaios", "simple/kakao", "simple/kakaotalk", "simple/kalilinux", "simple/kamailio", "simple/kaniko", "simple/karlsruherverkehrsverbund", "simple/kasasmart", "simple/kashflow", "simple/kaspersky", "simple/katana", "simple/kaufland", "simple/kde", "simple/kdenlive", "simple/kdeplasma", "simple/kedro", "simple/keenetic", "simple/keepachangelog", "simple/keepassxc", "simple/keeper", "simple/keeweb", "simple/kentico", "simple/keras", "simple/keybase", "simple/keycdn", "simple/keycloak", "simple/keystone", "simple/kfc", "simple/khanacademy", "simple/khronosgroup", "simple/kia", "simple/kibana", "simple/kicad", "simple/kick", "simple/kickstarter", "simple/kik", "simple/kingstontechnology", "simple/kinopoisk", "simple/kinsta", "simple/kirby", "simple/kit", "simple/kitsu", "simple/klarna", "simple/kleinanzeigen", "simple/klm", "simple/klook", "simple/knative", "simple/knexdotjs", "simple/knime", "simple/knip", "simple/knowledgebase", "simple/known", "simple/koa", "simple/koc", "simple/kodak", "simple/kodi", "simple/koenigsegg", "simple/kofax", "simple/kofi", "simple/komoot", "simple/konami", "simple/kong", "simple/kongregate", "simple/konva", "simple/kotlin", "simple/koyeb", "simple/krita", "simple/ktm", "simple/ktor", "simple/kuaishou", "simple/kubernetes", "simple/kubuntu", "simple/kucoin", "simple/kueski", "simple/kuma", "simple/kununu", "simple/kuula", "simple/kx", "simple/kyocera", "simple/labview", "simple/lada", "simple/lamborghini", "simple/landrover", "simple/langchain", "simple/langflow", "simple/langgraph", "simple/languagetool", "simple/lapce", "simple/laragon", "simple/laravel", "simple/laravelhorizon", "simple/laravelnova", "simple/lastdotfm", "simple/lastpass", "simple/latex", "simple/launchpad", "simple/lazarus", "simple/lazyvim", "simple/lbry", "simple/leaderprice", "simple/leaflet", "simple/leagueoflegends", "simple/leanpub", "simple/leetcode", "simple/lefthook", "simple/legacygames", "simple/leica", "simple/lemmy", "simple/lemonsqueezy", "simple/lenovo", "simple/lens", "simple/leptos", "simple/lequipe", "simple/lerna", "simple/leroymerlin", "simple/leslibraires", "simple/less", "simple/letsencrypt", "simple/letterboxd", "simple/levelsdotfyi", "simple/lg", "simple/liberadotchat", "simple/liberapay", "simple/librariesdotio", "simple/librarything", "simple/libreoffice", "simple/libreofficebase", "simple/libreofficecalc", "simple/libreofficedraw", "simple/libreofficeimpress", "simple/libreofficemath", "simple/libreofficewriter", "simple/libretranslate", "simple/libretube", "simple/librewolf", "simple/libuv", "simple/lichess", "simple/lidl", "simple/lifx", "simple/lightburn", "simple/lighthouse", "simple/lightning", "simple/limesurvey", "simple/line", "simple/lineageos", "simple/linear", "simple/lining", "simple/linkerd", "simple/linkfire", "simple/linksys", "simple/linktree", "simple/linphone", "simple/lintcode", "simple/linux", "simple/linuxcontainers", "simple/linuxfoundation", "simple/linuxmint", "simple/linuxprofessionalinstitute", "simple/linuxserver", "simple/lionair", "simple/liquibase", "simple/listmonk", "simple/lit", "simple/litecoin", "simple/literal", "simple/litiengine", "simple/livechat", "simple/livejournal", "simple/livewire", "simple/llvm", "simple/lmms", "simple/lobsters", "simple/local", "simple/lodash", "simple/logitech", "simple/logitechg", "simple/logmein", "simple/logseq", "simple/logstash", "simple/looker", "simple/loom", "simple/loop", "simple/loopback", "simple/lootcrate", "simple/lospec", "simple/lotpolishairlines", "simple/lottiefiles", "simple/ltspice", "simple/lua", "simple/lubuntu", "simple/lucia", "simple/lucid", "simple/lucide", "simple/ludwig", "simple/lufthansa", "simple/lumen", "simple/lunacy", "simple/lutris", "simple/lvgl", "simple/lydia", "simple/lyft", "simple/maas", "simple/macos", "simple/macpaw", "simple/macys", "simple/magasinsu", "simple/magic", "simple/magisk", "simple/mahindra", "simple/mailboxdotorg", "simple/mailchimp", "simple/maildotcom", "simple/maildotru", "simple/mailgun", "simple/mailtrap", "simple/mainwp", "simple/majorleaguehacking", "simple/make", "simple/makerbot", "simple/malt", "simple/malwarebytes", "simple/mambaui", "simple/mamp", "simple/man", "simple/manageiq", "simple/manjaro", "simple/mantine", "simple/mapbox", "simple/mapillary", "simple/maplibre", "simple/maptiler", "simple/mariadb", "simple/mariadbfoundation", "simple/markdown", "simple/marko", "simple/marriott", "simple/marvelapp", "simple/maserati", "simple/mastercard", "simple/mastercomfig", "simple/mastodon", "simple/materialdesign", "simple/materialdesignicons", "simple/materialformkdocs", "simple/matillion", "simple/matomo", "simple/matrix", "simple/matterdotjs", "simple/mattermost", "simple/matternet", "simple/mautic", "simple/max", "simple/maxplanckgesellschaft", "simple/maytag", "simple/mazda", "simple/maze", "simple/mcafee", "simple/mcdonalds", "simple/mclaren", "simple/mdbook", "simple/mdnwebdocs", "simple/mdx", "simple/mediafire", "simple/mediamarkt", "simple/mediapipe", "simple/mediatek", "simple/medibangpaint", "simple/medium", "simple/medusa", "simple/meetup", "simple/mega", "simple/meilisearch", "simple/meituan", "simple/meizu", "simple/mendeley", "simple/mentorcruise", "simple/mercadopago", "simple/mercedes", "simple/merck", "simple/mercurial", "simple/mermaid", "simple/messenger", "simple/meta", "simple/metabase", "simple/metacritic", "simple/metafilter", "simple/metasploit", "simple/meteor", "simple/metro", "simple/metrodelaciudaddemexico", "simple/metrodemadrid", "simple/metrodeparis", "simple/mewe", "simple/mg", "simple/microbit", "simple/microdotblog", "simple/microeditor", "simple/micropython", "simple/microstation", "simple/microstrategy", "simple/midi", "simple/migadu", "simple/mihoyo", "simple/mikrotik", "simple/milanote", "simple/milvus", "simple/minds", "simple/minetest", "simple/mingww64", "simple/mini", "simple/minio", "simple/mintlify", "simple/minutemailer", "simple/miraheze", "simple/miro", "simple/misskey", "simple/mitsubishi", "simple/mix", "simple/mixcloud", "simple/mixpanel", "simple/mlb", "simple/mlflow", "simple/mobx", "simple/mobxstatetree", "simple/mocha", "simple/mockserviceworker", "simple/modal", "simple/modin", "simple/modrinth", "simple/modx", "simple/mojeek", "simple/moleculer", "simple/momenteo", "simple/monero", "simple/moneygram", "simple/mongodb", "simple/mongoose", "simple/mongoosedotws", "simple/monica", "simple/monkeytie", "simple/monkeytype", "simple/monogame", "simple/monoprix", "simple/monster", "simple/monzo", "simple/moo", "simple/moodle", "simple/moonrepo", "simple/moq", "simple/moqups", "simple/morrisons", "simple/moscowmetro", "simple/motorola", "simple/movistar", "simple/mozilla", "simple/mpv", "simple/mqtt", "simple/msi", "simple/msibusiness", "simple/mta", "simple/mtr", "simple/mubi", "simple/mui", "simple/mulesoft", "simple/muller", "simple/mullvad", "simple/multisim", "simple/mumble", "simple/muo", "simple/mural", "simple/musescore", "simple/musicbrainz", "simple/mxlinux", "simple/myanimelist", "simple/myget", "simple/myob", "simple/myspace", "simple/mysql", "simple/n26", "simple/n8n", "simple/namebase", "simple/namecheap", "simple/namemc", "simple/namesilo", "simple/namuwiki", "simple/nano", "simple/nanostores", "simple/napster", "simple/nasa", "simple/nationalgrid", "simple/nationalrail", "simple/nativescript", "simple/natsdotio", "simple/naver", "simple/nba", "simple/nbb", "simple/nbc", "simple/ndr", "simple/near", "simple/nebula", "simple/nec", "simple/neo4j", "simple/neovim", "simple/neptune", "simple/nestjs", "simple/netapp", "simple/netbsd", "simple/netcup", "simple/netdata", "simple/neteasecloudmusic", "simple/netflix", "simple/netgear", "simple/netlify", "simple/nette", "simple/netto", "simple/neutralinojs", "simple/newbalance", "simple/newegg", "simple/newjapanprowrestling", "simple/newrelic", "simple/newyorktimes", "simple/nexon", "simple/nextbilliondotai", "simple/nextcloud", "simple/nextdns", "simple/nextdoor", "simple/nextdotjs", "simple/nextflow", "simple/nextra", "simple/nextui", "simple/nexusmods", "simple/nfc", "simple/nfcore", "simple/nginx", "simple/nginxproxymanager", "simple/ngrok", "simple/ngrx", "simple/nhl", "simple/nicehash", "simple/niconico", "simple/nike", "simple/nikon", "simple/nim", "simple/nissan", "simple/nixos", "simple/nodedotjs", "simple/nodemon", "simple/nodered", "simple/nokia", "simple/nomad", "simple/norco", "simple/nordicsemiconductor", "simple/nordvpn", "simple/normalizedotcss", "simple/norton", "simple/norwegian", "simple/notepadplusplus", "simple/notion", "simple/notist", "simple/nounproject", "simple/novu", "simple/now", "simple/npm", "simple/nrwl", "simple/nsis", "simple/ntfy", "simple/nubank", "simple/nucleo", "simple/nuget", "simple/nuke", "simple/numba", "simple/numpy", "simple/nunjucks", "simple/nushell", "simple/nutanix", "simple/nuxt", "simple/nvidia", "simple/nvm", "simple/nx", "simple/nxp", "simple/nzxt", "simple/o2", "simple/obb", "simple/observable", "simple/obsidian", "simple/obsstudio", "simple/obtainium", "simple/ocaml", "simple/oclc", "simple/oclif", "simple/octanerender", "simple/octave", "simple/octobercms", "simple/octoprint", "simple/octopusdeploy", "simple/oculus", "simple/odin", "simple/odnoklassniki", "simple/odoo", "simple/odysee", "simple/ohdear", "simple/okcupid", "simple/okta", "simple/okx", "simple/ollama", "simple/omadacloud", "simple/oneplus", "simple/onlyfans", "simple/onlyoffice", "simple/onnx", "simple/onstar", "simple/opel", "simple/openaccess", "simple/openai", "simple/openaigym", "simple/openapiinitiative", "simple/openbadges", "simple/openbsd", "simple/openbugbounty", "simple/opencollective", "simple/opencontainersinitiative", "simple/opencv", "simple/openfaas", "simple/opengl", "simple/openhab", "simple/openid", "simple/openjdk", "simple/openjsfoundation", "simple/openlayers", "simple/openmediavault", "simple/openmined", "simple/opennebula", "simple/openproject", "simple/openscad", "simple/opensea", "simple/opensearch", "simple/opensourcehardware", "simple/opensourceinitiative", "simple/openssl", "simple/openstack", "simple/openstreetmap", "simple/opensuse", "simple/opentelemetry", "simple/opentext", "simple/opentofu", "simple/openverse", "simple/openvpn", "simple/openwrt", "simple/openzeppelin", "simple/openzfs", "simple/opera", "simple/operagx", "simple/opnsense", "simple/oppo", "simple/opsgenie", "simple/opslevel", "simple/optimism", "simple/orange", "simple/orcid", "simple/oreilly", "simple/org", "simple/organicmaps", "simple/origin", "simple/osano", "simple/osf", "simple/osgeo", "simple/oshkosh", "simple/osmc", "simple/osu", "simple/otto", "simple/outline", "simple/overcast", "simple/overleaf", "simple/ovh", "simple/owasp", "simple/owncloud", "simple/oxygen", "simple/oyo", "simple/p5dotjs", "simple/packagist", "simple/packer", "simple/packt", "simple/paddle", "simple/paddlepaddle", "simple/paddypower", "simple/pagekit", "simple/pagerduty", "simple/pagespeedinsights", "simple/pagseguro", "simple/palantir", "simple/paloaltonetworks", "simple/paloaltosoftware", "simple/panasonic", "simple/pandas", "simple/pandora", "simple/pantheon", "simple/paperlessngx", "simple/paperspace", "simple/paperswithcode", "simple/paradoxinteractive", "simple/paramountplus", "simple/paritysubstrate", "simple/parrotsecurity", "simple/parsedotly", "simple/passport", "simple/pastebin", "simple/patreon", "simple/paychex", "simple/payhip", "simple/payloadcms", "simple/payoneer", "simple/paypal", "simple/paytm", "simple/pcgamingwiki", "simple/pdm", "simple/pdq", "simple/peakdesign", "simple/pearson", "simple/peerlist", "simple/peertube", "simple/pegasusairlines", "simple/pelican", "simple/peloton", "simple/penny", "simple/penpot", "simple/percy", "simple/perforce", "simple/perl", "simple/perplexity", "simple/persistent", "simple/personio", "simple/petsathome", "simple/peugeot", "simple/pexels", "simple/pfsense", "simple/phabricator", "simple/philipshue", "simple/phoenixframework", "simple/phonepe", "simple/phosphoricons", "simple/photobucket", "simple/photocrowd", "simple/photon", "simple/photopea", "simple/php", "simple/phpbb", "simple/phpmyadmin", "simple/phpstorm", "simple/piaggiogroup", "simple/piapro", "simple/picardsurgeles", "simple/picartodottv", "simple/picnic", "simple/picpay", "simple/picrew", "simple/picsart", "simple/picxy", "simple/pihole", "simple/pimcore", "simple/pinboard", "simple/pinescript", "simple/pinetwork", "simple/pingdom", "simple/pino", "simple/pinterest", "simple/pioneerdj", "simple/piped", "simple/pipx", "simple/pivotaltracker", "simple/piwigo", "simple/pix", "simple/pixabay", "simple/pixelfed", "simple/pixiv", "simple/pixlr", "simple/pkgsrc", "simple/planet", "simple/planetscale", "simple/plangrid", "simple/platformdotsh", "simple/platformio", "simple/platzi", "simple/plausibleanalytics", "simple/playcanvas", "simple/playerdotme", "simple/playerfm", "simple/playstation", "simple/playstation2", "simple/playstation3", "simple/playstation4", "simple/playstation5", "simple/playstationportable", "simple/playstationvita", "simple/pleroma", "simple/plesk", "simple/plex", "simple/plotly", "simple/plume", "simple/pluralsight", "simple/plurk", "simple/pluscodes", "simple/pm2", "simple/pnpm", "simple/pocket", "simple/pocketbase", "simple/pocketcasts", "simple/podcastaddict", "simple/podcastindex", "simple/podman", "simple/poe", "simple/poetry", "simple/pointy", "simple/polars", "simple/polestar", "simple/polkadot", "simple/poly", "simple/polygon", "simple/polymerproject", "simple/polywork", "simple/pond5", "simple/popos", "simple/porkbun", "simple/porsche", "simple/portainer", "simple/portswigger", "simple/posit", "simple/postcss", "simple/postgresql", "simple/posthog", "simple/postman", "simple/postmates", "simple/powers", "simple/prdotco", "simple/preact", "simple/precommit", "simple/prefect", "simple/premierleague", "simple/prepbytes", "simple/prestashop", "simple/presto", "simple/prettier", "simple/pretzel", "simple/prevention", "simple/prezi", "simple/prime", "simple/primefaces", "simple/primeng", "simple/primereact", "simple/primevideo", "simple/primevue", "simple/printables", "simple/prisma", "simple/prismic", "simple/privatedivision", "simple/privateinternetaccess", "simple/probot", "simple/processingfoundation", "simple/processwire", "simple/producthunt", "simple/progate", "simple/progress", "simple/prometheus", "simple/pronounsdotpage", "simple/prosieben", "simple/proteus", "simple/protocolsdotio", "simple/protodotio", "simple/proton", "simple/protoncalendar", "simple/protondb", "simple/protondrive", "simple/protonmail", "simple/protonvpn", "simple/protools", "simple/protractor", "simple/proxmox", "simple/pterodactyl", "simple/pubg", "simple/publons", "simple/pubmed", "simple/pug", "simple/pulumi", "simple/puma", "simple/puppet", "simple/puppeteer", "simple/purescript", "simple/purgecss", "simple/purism", "simple/pushbullet", "simple/pusher", "simple/pwa", "simple/pycharm", "simple/pycqa", "simple/pydantic", "simple/pyg", "simple/pypi", "simple/pypy", "simple/pyscaffold", "simple/pysyft", "simple/pytest", "simple/python", "simple/pythonanywhere", "simple/pytorch", "simple/pyup", "simple/qantas", "simple/qase", "simple/qatarairways", "simple/qbittorrent", "simple/qemu", "simple/qgis", "simple/qi", "simple/qiita", "simple/qiskit", "simple/qiwi", "simple/qlik", "simple/qmk", "simple/qnap", "simple/qq", "simple/qt", "simple/qualcomm", "simple/qualtrics", "simple/qualys", "simple/quantcast", "simple/quantconnect", "simple/quarkus", "simple/quarto", "simple/quasar", "simple/qubesos", "simple/quest", "simple/quickbooks", "simple/quicklook", "simple/quicktime", "simple/quicktype", "simple/quip", "simple/quizlet", "simple/quora", "simple/qwant", "simple/qwik", "simple/qwiklabs", "simple/qzone", "simple/r", "simple/r3", "simple/rabbitmq", "simple/racket", "simple/radar", "simple/radarr", "simple/radixui", "simple/radstudio", "simple/railway", "simple/rainmeter", "simple/rakuten", "simple/ram", "simple/rancher", "simple/rapid", "simple/rarible", "simple/rasa", "simple/raspberrypi", "simple/ravelry", "simple/ray", "simple/raycast", "simple/raylib", "simple/razer", "simple/razorpay", "simple/rclone", "simple/react", "simple/reactbootstrap", "simple/reacthookform", "simple/reactiveresume", "simple/reactivex", "simple/reactos", "simple/reactquery", "simple/reactrouter", "simple/reacttable", "simple/readdotcv", "simple/readme", "simple/readthedocs", "simple/reason", "simple/reasonstudios", "simple/recoil", "simple/red", "simple/redash", "simple/redbubble", "simple/redbull", "simple/redcandlegames", "simple/reddit", "simple/redhat", "simple/redhatopenshift", "simple/redis", "simple/redmine", "simple/redox", "simple/redragon", "simple/redsys", "simple/redux", "simple/reduxsaga", "simple/redwoodjs", "simple/reebok", "simple/refine", "simple/refinedgithub", "simple/relay", "simple/relianceindustrieslimited", "simple/remark", "simple/remedyentertainment", "simple/remix", "simple/removedotbg", "simple/renault", "simple/render", "simple/renovate", "simple/renpy", "simple/renren", "simple/replicate", "simple/replit", "simple/republicofgamers", "simple/rescript", "simple/rescuetime", "simple/researchgate", "simple/resend", "simple/resharper", "simple/resurrectionremixos", "simple/retool", "simple/retroarch", "simple/retropie", "simple/revanced", "simple/revealdotjs", "simple/reverbnation", "simple/revoltdotchat", "simple/revolut", "simple/rewe", "simple/rezgo", "simple/rhinoceros", "simple/rich", "simple/rider", "simple/rimacautomobili", "simple/rime", "simple/ring", "simple/riotgames", "simple/ripple", "simple/riscv", "simple/riseup", "simple/ritzcarlton", "simple/rive", "simple/roadmapdotsh", "simple/roamresearch", "simple/robinhood", "simple/roblox", "simple/robloxstudio", "simple/roboflow", "simple/robotframework", "simple/rocket", "simple/rocketdotchat", "simple/rocksdb", "simple/rockstargames", "simple/rockwellautomation", "simple/rockylinux", "simple/roku", "simple/roll20", "simple/rollsroyce", "simple/rollupdotjs", "simple/rook", "simple/roon", "simple/rootme", "simple/roots", "simple/rootsbedrock", "simple/rootssage", "simple/ros", "simple/rossmann", "simple/rotaryinternational", "simple/rottentomatoes", "simple/roundcube", "simple/rsocket", "simple/rss", "simple/rstudioide", "simple/rte", "simple/rtl", "simple/rtlzwei", "simple/rtm", "simple/rubocop", "simple/ruby", "simple/rubygems", "simple/rubymine", "simple/rubyonrails", "simple/rubysinatra", "simple/ruff", "simple/rumahweb", "simple/rumble", "simple/rundeck", "simple/runkeeper", "simple/runkit", "simple/runrundotit", "simple/rust", "simple/rustdesk", "simple/rxdb", "simple/ryanair", "simple/rye", "simple/s7airlines", "simple/sabanci", "simple/safari", "simple/sage", "simple/sahibinden", "simple/sailfishos", "simple/sailsdotjs", "simple/salesforce", "simple/salla", "simple/saltproject", "simple/samsclub", "simple/samsung", "simple/samsungpay", "simple/sandisk", "simple/sanfranciscomunicipalrailway", "simple/sanic", "simple/sanity", "simple/saopaulometro", "simple/sap", "simple/sartorius", "simple/sass", "simple/sat1", "simple/satellite", "simple/saturn", "simple/saucelabs", "simple/saudia", "simple/scala", "simple/scalar", "simple/scaleway", "simple/scania", "simple/schneiderelectric", "simple/scikitlearn", "simple/scilab", "simple/scipy", "simple/scopus", "simple/scpfoundation", "simple/scrapbox", "simple/scrapy", "simple/scratch", "simple/screencastify", "simple/scribd", "simple/scrimba", "simple/scrollreveal", "simple/scrumalliance", "simple/scrutinizerci", "simple/scylladb", "simple/seagate", "simple/searxng", "simple/seat", "simple/seatgeek", "simple/securityscorecard", "simple/sefaria", "simple/sega", "simple/selenium", "simple/sellfy", "simple/semanticrelease", "simple/semanticscholar", "simple/semanticui", "simple/semanticuireact", "simple/semanticweb", "simple/semaphoreci", "simple/semrush", "simple/semver", "simple/sencha", "simple/sendgrid", "simple/sennheiser", "simple/sensu", "simple/sentry", "simple/sepa", "simple/sequelize", "simple/serverfault", "simple/serverless", "simple/session", "simple/sessionize", "simple/setapp", "simple/sfml", "simple/shadcnui", "simple/shadow", "simple/shanghaimetro", "simple/sharex", "simple/sharp", "simple/shazam", "simple/shell", "simple/shelly", "simple/shenzhenmetro", "simple/shieldsdotio", "simple/shikimori", "simple/shopee", "simple/shopify", "simple/shopware", "simple/shortcut", "simple/showpad", "simple/showtime", "simple/showwcase", "simple/shutterstock", "simple/sidekiq", "simple/sidequest", "simple/siemens", "simple/sifive", "simple/signal", "simple/silverairways", "simple/similarweb", "simple/simkl", "simple/simpleanalytics", "simple/simpleicons", "simple/simplelogin", "simple/simplenote", "simple/simplex", "simple/sinaweibo", "simple/singaporeairlines", "simple/singlestore", "simple/sitecore", "simple/sitepoint", "simple/siyuan", "simple/skaffold", "simple/sketch", "simple/sketchfab", "simple/sketchup", "simple/skillshare", "simple/skoda", "simple/sky", "simple/skypack", "simple/slack", "simple/slackware", "simple/slashdot", "simple/slickpic", "simple/slides", "simple/slideshare", "simple/slint", "simple/smart", "simple/smartthings", "simple/smashingmagazine", "simple/smrt", "simple/smugmug", "simple/snapchat", "simple/snapcraft", "simple/snapdragon", "simple/sncf", "simple/snort", "simple/snowflake", "simple/snowpack", "simple/snyk", "simple/socialblade", "simple/society6", "simple/socket", "simple/socketdotio", "simple/softcatala", "simple/softpedia", "simple/sogou", "simple/solana", "simple/solid", "simple/solidity", "simple/sololearn", "simple/solus", "simple/sonar", "simple/sonarcloud", "simple/sonarlint", "simple/sonarqube", "simple/sonarr", "simple/sonatype", "simple/songkick", "simple/songoda", "simple/sonicwall", "simple/sonos", "simple/sony", "simple/soriana", "simple/soundcharts", "simple/soundcloud", "simple/sourceengine", "simple/sourceforge", "simple/sourcehut", "simple/sourcetree", "simple/southwestairlines", "simple/spacemacs", "simple/spaceship", "simple/spacex", "simple/spacy", "simple/sparkar", "simple/sparkasse", "simple/sparkfun", "simple/sparkpost", "simple/spdx", "simple/speakerdeck", "simple/spectrum", "simple/speedtest", "simple/speedypage", "simple/sphinx", "simple/spigotmc", "simple/spine", "simple/spinnaker", "simple/splunk", "simple/spoj", "simple/spond", "simple/spotify", "simple/spotlight", "simple/spreadshirt", "simple/spreaker", "simple/spring", "simple/spring_creators", "simple/springboot", "simple/springsecurity", "simple/spyderide", "simple/sqlalchemy", "simple/sqlite", "simple/square", "simple/squareenix", "simple/squarespace", "simple/srgssr", "simple/ssrn", "simple/sst", "simple/stackbit", "simple/stackblitz", "simple/stackedit", "simple/stackexchange", "simple/stackhawk", "simple/stackoverflow", "simple/stackshare", "simple/stadia", "simple/staffbase", "simple/stagetimer", "simple/standardjs", "simple/standardresume", "simple/starbucks", "simple/stardock", "simple/starlingbank", "simple/starship", "simple/startdotgg", "simple/startpage", "simple/startrek", "simple/starz", "simple/statamic", "simple/statista", "simple/statuspage", "simple/statuspal", "simple/steam", "simple/steamdb", "simple/steamdeck", "simple/steamworks", "simple/steelseries", "simple/steem", "simple/steemit", "simple/steinberg", "simple/stellar", "simple/stencil", "simple/stencyl", "simple/stimulus", "simple/stmicroelectronics", "simple/stockx", "simple/stopstalk", "simple/storyblok", "simple/storybook", "simple/strapi", "simple/strava", "simple/streamlabs", "simple/streamlit", "simple/streamrunners", "simple/stremio", "simple/stripe", "simple/strongswan", "simple/stryker", "simple/stubhub", "simple/studio3t", "simple/styledcomponents", "simple/stylelint", "simple/styleshare", "simple/stylus", "simple/subaru", "simple/sublimetext", "simple/substack", "simple/subtitleedit", "simple/subversion", "simple/suckless", "simple/sui", "simple/sumologic", "simple/suno", "simple/sunrise", "simple/supabase", "simple/supercrease", "simple/supermicro", "simple/superuser", "simple/surfshark", "simple/surrealdb", "simple/surveymonkey", "simple/suse", "simple/suzuki", "simple/svelte", "simple/svg", "simple/svgdotjs", "simple/svgo", "simple/svgtrace", "simple/swagger", "simple/swarm", "simple/sway", "simple/swc", "simple/swift", "simple/swiggy", "simple/swiper", "simple/swr", "simple/symantec", "simple/symbolab", "simple/symfony", "simple/symphony", "simple/sympy", "simple/syncthing", "simple/synology", "simple/system76", "simple/tabelog", "simple/tablecheck", "simple/tacobell", "simple/tado", "simple/taichigraphics", "simple/taichilang", "simple/tails", "simple/tailscale", "simple/tailwindcss", "simple/taipy", "simple/taketwointeractivesoftware", "simple/talend", "simple/talenthouse", "simple/talos", "simple/tamiya", "simple/tampermonkey", "simple/taobao", "simple/tapas", "simple/target", "simple/tarom", "simple/task", "simple/tasmota", "simple/tata", "simple/tauri", "simple/taxbuzz", "simple/tcs", "simple/teal", "simple/teamcity", "simple/teamspeak", "simple/teamviewer", "simple/techcrunch", "simple/ted", "simple/teepublic", "simple/teespring", "simple/tekton", "simple/tele5", "simple/telefonica", "simple/telegram", "simple/telegraph", "simple/telequebec", "simple/temporal", "simple/tensorflow", "simple/teradata", "simple/teratail", "simple/termius", "simple/terraform", "simple/tesco", "simple/tesla", "simple/testcafe", "simple/testin", "simple/testinglibrary", "simple/testrail", "simple/tether", "simple/textpattern", "simple/tga", "simple/thangs", "simple/thanos", "simple/thealgorithms", "simple/theboringcompany", "simple/theconversation", "simple/thefinals", "simple/theguardian", "simple/theirishtimes", "simple/themighty", "simple/themodelsresource", "simple/themoviedatabase", "simple/thenorthface", "simple/theodinproject", "simple/theregister", "simple/thesoundsresource", "simple/thespritersresource", "simple/thewashingtonpost", "simple/theweatherchannel", "simple/thingiverse", "simple/thinkpad", "simple/thirdweb", "simple/threadless", "simple/threads", "simple/threedotjs", "simple/threema", "simple/thumbtack", "simple/thunderbird", "simple/thunderstore", "simple/thurgauerkantonalbank", "simple/thymeleaf", "simple/ticketmaster", "simple/ticktick", "simple/tidal", "simple/tiddlywiki", "simple/tide", "simple/tidyverse", "simple/tietoevry", "simple/tiktok", "simple/tildapublishing", "simple/tile", "simple/timescale", "simple/tina", "simple/tinder", "simple/tindie", "simple/tinkercad", "simple/tinygrad", "simple/tinyletter", "simple/tistory", "simple/tldraw", "simple/tmux", "simple/todoist", "simple/toggl", "simple/toggltrack", "simple/tokyometro", "simple/toll", "simple/toml", "simple/tomorrowland", "simple/tomtom", "simple/ton", "simple/topcoder", "simple/topdotgg", "simple/toptal", "simple/torbrowser", "simple/torproject", "simple/toshiba", "simple/totvs", "simple/tourbox", "simple/tower", "simple/toyota", "simple/tplink", "simple/tqdm", "simple/traccar", "simple/tradingview", "simple/traefikmesh", "simple/traefikproxy", "simple/trailforks", "simple/trainerroad", "simple/trakt", "simple/transifex", "simple/transmission", "simple/transportforireland", "simple/transportforlondon", "simple/travisci", "simple/treehouse", "simple/trello", "simple/trendmicro", "simple/treyarch", "simple/tricentis", "simple/trilium", "simple/triller", "simple/trillertv", "simple/trimble", "simple/trino", "simple/tripadvisor", "simple/tripdotcom", "simple/trivago", "simple/trivy", "simple/trove", "simple/trpc", "simple/truenas", "simple/trueup", "simple/trulia", "simple/trustedshops", "simple/trustpilot", "simple/tryhackme", "simple/tryitonline", "simple/tsnode", "simple/tubi", "simple/tui", "simple/tumblr", "simple/tunein", "simple/turbo", "simple/turborepo", "simple/turbosquid", "simple/turkishairlines", "simple/turso", "simple/tuta", "simple/tv4play", "simple/tvtime", "simple/twilio", "simple/twinkly", "simple/twinmotion", "simple/twitch", "simple/typeform", "simple/typeorm", "simple/typer", "simple/typescript", "simple/typo3", "simple/typst", "simple/uber", "simple/ubereats", "simple/ubiquiti", "simple/ubisoft", "simple/ublockorigin", "simple/ubuntu", "simple/ubuntumate", "simple/udacity", "simple/udemy", "simple/udotsdotnews", "simple/ufc", "simple/uikit", "simple/uipath", "simple/ukca", "simple/ultralytics", "simple/ulule", "simple/umami", "simple/umbraco", "simple/uml", "simple/unacademy", "simple/underarmour", "simple/underscoredotjs", "simple/undertale", "simple/unicode", "simple/unilever", "simple/uniqlo", "simple/uniqlo_ja", "simple/unitedairlines", "simple/unitednations", "simple/unity", "simple/unjs", "simple/unlicense", "simple/unocss", "simple/unpkg", "simple/unraid", "simple/unrealengine", "simple/unsplash", "simple/untappd", "simple/upcloud", "simple/uphold", "simple/uplabs", "simple/upptime", "simple/ups", "simple/upstash", "simple/uptimekuma", "simple/upwork", "simple/usps", "simple/utorrent", "simple/uv", "simple/v", "simple/v0", "simple/v2ex", "simple/v8", "simple/vaadin", "simple/vagrant", "simple/vala", "simple/valorant", "simple/valve", "simple/vapor", "simple/vault", "simple/vaultwarden", "simple/vauxhall", "simple/vbulletin", "simple/vectary", "simple/vectorlogozone", "simple/vectorworks", "simple/veeam", "simple/veed", "simple/veepee", "simple/vega", "simple/vegas", "simple/velog", "simple/vencord", "simple/venmo", "simple/vercel", "simple/verdaccio", "simple/veritas", "simple/verizon", "simple/vespa", "simple/vestel", "simple/vexxhost", "simple/vfairs", "simple/viadeo", "simple/viaplay", "simple/viber", "simple/viblo", "simple/victoriametrics", "simple/victronenergy", "simple/vim", "simple/vimeo", "simple/vimeolivestream", "simple/virgin", "simple/virginatlantic", "simple/virginmedia", "simple/virtualbox", "simple/virustotal", "simple/visa", "simple/visx", "simple/vite", "simple/vitepress", "simple/vitess", "simple/vitest", "simple/vivaldi", "simple/vivawallet", "simple/vivino", "simple/vivint", "simple/vivo", "simple/vk", "simple/vlcmediaplayer", "simple/vmware", "simple/vodafone", "simple/voidlinux", "simple/voipdotms", "simple/volkswagen", "simple/volvo", "simple/vonage", "simple/vorondesign", "simple/vowpalwabbit", "simple/vox", "simple/vrchat", "simple/vsco", "simple/vscodium", "simple/vtex", "simple/vuedotjs", "simple/vuetify", "simple/vulkan", "simple/vultr", "simple/vyond", "simple/w3schools", "simple/wacom", "simple/wagmi", "simple/wagtail", "simple/wails", "simple/wakatime", "simple/walkman", "simple/wallabag", "simple/walletconnect", "simple/walmart", "simple/wantedly", "simple/wappalyzer", "simple/warnerbros", "simple/warp", "simple/wasabi", "simple/wasmcloud", "simple/wasmer", "simple/watchtower", "simple/wattpad", "simple/wayland", "simple/waze", "simple/wazirx", "simple/wearos", "simple/weasyl", "simple/web3dotjs", "simple/webassembly", "simple/webauthn", "simple/webcomponentsdotorg", "simple/webdotde", "simple/webdriverio", "simple/webex", "simple/webflow", "simple/webgl", "simple/webgpu", "simple/weblate", "simple/webmin", "simple/webmoney", "simple/webpack", "simple/webrtc", "simple/webstorm", "simple/webtoon", "simple/webtrees", "simple/wechat", "simple/wegame", "simple/weightsandbiases", "simple/welcometothejungle", "simple/wellfound", "simple/wellsfargo", "simple/wemo", "simple/westerndigital", "simple/westernunion", "simple/wetransfer", "simple/wezterm", "simple/wgpu", "simple/whatsapp", "simple/wheniwork", "simple/wikibooks", "simple/wikidata", "simple/wikidotgg", "simple/wikidotjs", "simple/wikimediacommons", "simple/wikimediafoundation", "simple/wikipedia", "simple/wikiquote", "simple/wikiversity", "simple/wikivoyage", "simple/winamp", "simple/wine", "simple/wipro", "simple/wire", "simple/wireguard", "simple/wireshark", "simple/wise", "simple/wish", "simple/wistia", "simple/wix", "simple/wizzair", "simple/wolfram", "simple/wolframlanguage", "simple/wolframmathematica", "simple/wondershare", "simple/wondersharefilmora", "simple/woo", "simple/woocommerce", "simple/wordpress", "simple/workplace", "simple/worldhealthorganization", "simple/wpengine", "simple/wpexplorer", "simple/wprocket", "simple/writedotas", "simple/wwe", "simple/wwise", "simple/wxt", "simple/wykop", "simple/wyze", "simple/x", "simple/xampp", "simple/xcode", "simple/xdadevelopers", "simple/xdotorg", "simple/xendit", "simple/xero", "simple/xfce", "simple/xiaohongshu", "simple/xiaomi", "simple/xing", "simple/xml", "simple/xmpp", "simple/xo", "simple/xrp", "simple/xsplit", "simple/xstate", "simple/xubuntu", "simple/yabai", "simple/yale", "simple/yamahacorporation", "simple/yamahamotorcorporation", "simple/yaml", "simple/yandexcloud", "simple/yarn", "simple/ycombinator", "simple/yelp", "simple/yeti", "simple/yii", "simple/yoast", "simple/yolo", "simple/youhodler", "simple/youtube", "simple/youtubegaming", "simple/youtubekids", "simple/youtubemusic", "simple/youtubeshorts", "simple/youtubestudio", "simple/youtubetv", "simple/yr", "simple/yubico", "simple/yunohost", "simple/zabka", "simple/zaim", "simple/zalando", "simple/zalo", "simple/zap", "simple/zapier", "simple/zara", "simple/zazzle", "simple/zcash", "simple/zcool", "simple/zdf", "simple/zebpay", "simple/zebratechnologies", "simple/zedindustries", "simple/zelle", "simple/zend", "simple/zendesk", "simple/zenn", "simple/zenodo", "simple/zensar", "simple/zerodha", "simple/zerotier", "simple/zettlr", "simple/zhihu", "simple/zig", "simple/zigbee", "simple/zigbee2mqtt", "simple/ziggo", "simple/zilch", "simple/zillow", "simple/zincsearch", "simple/zingat", "simple/zod", "simple/zoho", "simple/zoiper", "simple/zomato", "simple/zoom", "simple/zorin", "simple/zotero", "simple/zsh", "simple/zulip", "simple/zyte" ] }������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/extensions.json���������������������������������������������������0000664�0000000�0000000�00000002067�14753064456�0022113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Markdown extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/", "type": "array", "items": { "anyOf": [ { "$ref": "#/$defs/external" }, { "$ref": "#/$defs/external-community" } ] }, "uniqueItems": true, "minItems": 1, "$defs": { "external": { "description": "External markdown extensions, schema provided by us", "anyOf": [ { "$ref": "extensions/markdown.json" }, { "$ref": "extensions/pymdownx.json" } ] }, "external-community": { "description": "External markdown extensions, schema provided by our community", "anyOf": [ { "$ref": "https://raw.githubusercontent.com/Neoteroi/mkdocs-plugins/main/docs/extensions-schema.json" }, { "$ref": "https://raw.githubusercontent.com/mikitex70/plantuml-markdown/master/plantuml_markdown.json" } ] } } } �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/extensions/�������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0021213�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/extensions/markdown.json������������������������������������������0000664�0000000�0000000�00000012076�14753064456�0023736�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Markdown extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/", "oneOf": [ { "title": "Abbreviations – Python Markdown", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#abbreviations", "enum": [ "markdown.extensions.abbr", "abbr" ] }, { "title": "Admonition – Python Markdown", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#admonition", "enum": [ "markdown.extensions.admonition", "admonition" ] }, { "title": "Attribute Lists – Python Markdown", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#attribute-lists", "enum": [ "markdown.extensions.attr_list", "attr_list" ] }, { "title": "Markdown extension: a classier syntax for admonitions", "markdownDescription": "https://github.com/oprypin/markdown-callouts", "enum": [ "markdown.extensions.callouts", "callouts", "github-callouts" ] }, { "title": "Definition Lists – Python Markdown", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#definition-lists", "enum": [ "markdown.extensions.def_list", "def_list" ] }, { "title": "Footnotes – Python Markdown", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#footnotes", "enum": [ "markdown.extensions.footnotes", "footnotes" ] }, { "title": "Markdown in HTML – Python Markdown", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#markdown-in-html", "enum": [ "markdown.extensions.md_in_html", "md_in_html" ] }, { "title": "Sane Lists – Python Markdown", "markdownDescription": "https://python-markdown.github.io/extensions/sane_lists/", "enum": [ "markdown.extensions.sane_lists", "sane_lists" ] }, { "title": "Tables – Python Markdown", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#tables", "enum": [ "markdown.extensions.tables", "tables" ] }, { "oneOf": [ { "type": "object", "properties": { "toc": { "$ref": "#/$defs/toc" }, "markdown.extensions.toc": { "$ref": "#/$defs/toc" } }, "additionalProperties": false }, { "title": "Table Of Contents – Python Markdown", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#table-of-contents", "enum": [ "markdown.extensions.toc", "toc" ] } ] } ], "$defs": { "toc": { "title": "Table Of Contents – Python Markdown", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#table-of-contents", "type": "object", "properties": { "title": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#+toc.title", "type": "string" }, "permalink": { "oneOf": [ { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#+toc.permalink", "type": "boolean" }, { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#+toc.permalink", "type": "string" } ], "default": true }, "anchorlink": { "markdownDescription": "https://python-markdown.github.io/extensions/toc/#usage", "type": "boolean", "default": false }, "permalink_title": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#+toc.permalink_title", "type": "string" }, "slugify": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#+toc.slugify", "default": "!!python/object/apply:pymdownx.slugs.slugify {kwds: {case: lower}}" }, "toc_depth": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#+toc.toc_depth", "type": "number", "enum": [ 0, 1, 2, 3, 4, 5, 6 ] } }, "additionalProperties": false } } } ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/extensions/pymdownx.json������������������������������������������0000664�0000000�0000000�00000100745�14753064456�0024002�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Markdown extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/", "oneOf": [ { "oneOf": [ { "type": "object", "properties": { "pymdownx.arithmatex": { "title": "Arithmatex – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#arithmatex", "type": "object", "properties": { "generic": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/arithmatex/#options", "type": "boolean", "default": true } }, "additionalProperties": false } }, "additionalProperties": false }, { "title": "Arithmatex – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#arithmatex", "const": "pymdownx.arithmatex" } ] }, { "oneOf": [ { "type": "object", "properties": { "pymdownx.betterem": { "title": "BetterEm – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#betterem", "type": "object", "properties": { "smart_enable": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/betterem/#options", "type": "string", "enum": [ "all", "asterisk", "underscore", "none" ], "default": "all" } }, "additionalProperties": false } }, "additionalProperties": false }, { "title": "BetterEm – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#betterem", "const": "pymdownx.betterem" } ] }, { "oneOf": [ { "type": "object", "properties": { "pymdownx.blocks.caption": { "title": "Caption – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#caption", "type": "object", "properties": { "types": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/blocks/plugins/caption/#global-options", "type": "array", "items": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/blocks/plugins/caption/#configuring-figure-types", "oneOf": [ { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/blocks/plugins/caption/#configuring-figure-types", "type":"string" }, { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/blocks/plugins/caption/#configuring-figure-types", "type": "object", "properties": { "name": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/blocks/plugins/caption/#configuring-figure-types", "type": "string" }, "prefix": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/blocks/plugins/caption/#configuring-figure-types", "type": "string" } } } ] }, "uniqueItems": true, "minItems": 1 }, "prepend": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/blocks/plugins/caption/#global-options", "type": "boolean", "default": false }, "auto": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/blocks/plugins/caption/#global-options", "type": "boolean", "default": true }, "auto_leval": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/blocks/plugins/caption/#global-options", "type": "integer", "default": 0 } }, "additionalProperties": false } }, "additionalProperties": false }, { "title": "Caption – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#caption", "const": "pymdownx.blocks.caption" } ] }, { "oneOf": [ { "title": "Caret – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#caret-mark-tilde", "const": "pymdownx.caret" }, { "type": "object", "properties": { "pymdownx.caret": { "title": "Caret – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#caret-mark-tilde", "type": "object", "properties": { "smart_insert": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/caret/#options", "type": "boolean", "default": true }, "insert": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/caret/#options", "type": "boolean", "default": true }, "superscript": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/caret/#options", "type": "boolean", "default": true } }, "additionalProperties": false } }, "additionalProperties": false } ] }, { "oneOf": [ { "title": "Critic – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#critic", "const": "pymdownx.critic" }, { "type": "object", "properties": { "pymdownx.critic": { "title": "Critic – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#critic", "type": "object", "properties": { "mode": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.critic.mode", "enum": [ "view", "accept", "reject" ] } }, "additionalProperties": false } }, "additionalProperties": false } ] }, { "title": "Details – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#details", "const": "pymdownx.details" }, { "oneOf": [ { "title": "Emoji – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#emoji", "const": "pymdownx.emoji" }, { "type": "object", "properties": { "pymdownx.emoji": { "title": "Emoji – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#emoji", "type": "object", "properties": { "emoji_generator": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.emoji.emoji_generator", "default": "!!python/name:material.extensions.emoji.to_svg" }, "emoji_index": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.emoji.emoji_index", "default": "!!python/name:material.extensions.emoji.twemoji" }, "options": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.emoji.options.custom_icons", "type": "object", "properties": { "custom_icons": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.emoji.options.custom_icons", "type": "array", "items": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.emoji.options.custom_icons", "type": "string" }, "uniqueItems": true, "minItems": 1 } }, "additionalProperties": false } }, "additionalProperties": false, "required": [ "emoji_generator", "emoji_index" ] } }, "additionalProperties": false } ] }, { "oneOf": [ { "title": "Highlight – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#highlight", "const": "pymdownx.highlight" }, { "type": "object", "properties": { "pymdownx.highlight": { "title": "Highlight – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#highlight", "type": "object", "properties": { "use_pygments": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.highlight.use_pygments", "type": "boolean" }, "pygments_lang_class": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.highlight.pygments_lang_class", "type": "boolean" }, "auto_title": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.highlight.auto_title", "type": "boolean" }, "auto_title_map": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/highlight/#options", "type": "object" }, "linenums": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.highlight.linenums", "type": "boolean" }, "linenums_style": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.highlight.linenums_style", "enum": [ "inline", "pymdownx-inline", "table" ] }, "anchor_linenums": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.highlight.anchor_linenums", "type": "boolean" }, "line_spans": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.highlight.line_spans", "type": "string" } }, "additionalProperties": false } }, "additionalProperties": false } ] }, { "title": "InlineHilite – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#inlinehilite", "const": "pymdownx.inlinehilite" }, { "oneOf": [ { "title": "Keys – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#keys", "const": "pymdownx.keys" }, { "type": "object", "properties": { "pymdownx.keys": { "title": "Keys – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#keys", "type": "object", "properties": { "separator": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/mark/#options", "type": "string", "default": "+" }, "strict": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/mark/#options", "type": "boolean", "default": false }, "camel_case": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/mark/#options", "type": "boolean", "default": false }, "key_map": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/mark/#options", "type": "object" } }, "additionalProperties": false } }, "additionalProperties": false } ] }, { "oneOf": [ { "title": "MagicLink – Python Markdown Extensions", "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/magiclink/", "const": "pymdownx.magiclink" }, { "type": "object", "properties": { "pymdownx.magiclink": { "title": "MagicLink – Python Markdown Extensions", "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/magiclink/", "type": "object", "properties": { "hide_protocol":{ "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/magiclink/#options", "type": "boolean", "default": false }, "labels": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/magiclink/#labels", "type": "object", "default": { "commit": "Commit", "compare": "Compare", "issue": "Issue", "pull": "Pull Request", "mention": "User", "repository": "Repository" } }, "normalize_issue_symbols": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/magiclink/#options", "type": "boolean", "default": false }, "user": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/magiclink/#options", "type": "string", "default": "" }, "provider": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/magiclink/#options", "type": "string", "default": "github" }, "repo": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/magiclink/#options", "type": "string", "repo": "" }, "repo_url_shorthand": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/magiclink/#options", "type": "boolean", "default": true }, "repo_url_shortener": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/magiclink/#options", "type": "boolean", "default": false }, "social_url_shorthand": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/magiclink/#options", "type": "boolean", "default": false }, "social_url_shortener": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/magiclink/#options", "type": "boolean", "default": false }, "shortener_user_exclude": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/magiclink/#user-excludes", "type": "object" } }, "additionalProperties": false, "required": [ "user", "repo" ] } }, "additionalProperties": false } ] }, { "oneOf": [ { "title": "Mark – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#caret-mark-tilde", "const": "pymdownx.mark" }, { "type": "object", "properties": { "pymdownx.mark": { "title": "Mark – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#caret-mark-tilde", "type": "object", "properties": { "smart_mark": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/mark/#options", "type": "boolean", "default": true } }, "additionalProperties": false } }, "additionalProperties": false } ] }, { "oneOf": [ { "title": "SmartSymbols – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#smartsymbols", "const": "pymdownx.smartsymbols" }, { "type": "object", "properties": { "pymdownx.smartsymbols": { "title": "SmartSymbols – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#smartsymbols", "type": "object", "properties": { "trademark": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/smartsymbols/#options", "type": "boolean", "default": true }, "copyright": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/smartsymbols/#options", "type": "boolean", "default": true }, "registered": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/smartsymbols/#options", "type": "boolean", "default": true }, "care_of": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/smartsymbols/#options", "type": "boolean", "default": true }, "plusminus": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/smartsymbols/#options", "type": "boolean", "default": true }, "arrows": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/smartsymbols/#options", "type": "boolean", "default": true }, "notequal": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/smartsymbols/#options", "type": "boolean", "default": true }, "fractions": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/smartsymbols/#options", "type": "boolean", "default": true }, "ordinal_numbers": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/smartsymbols/#options", "type": "boolean", "default": true } }, "additionalProperties": false } }, "additionalProperties": false } ] }, { "oneOf": [ { "type": "object", "properties": { "pymdownx.snippets": { "title": "Snippets – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#snippets", "type": "object", "properties": { "base_path": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/snippets/#options", "type": "array", "items": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/snippets/#options", "type": "string" }, "uniqueItems": true, "minItems": 1 }, "auto_append": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/snippets/#options", "type": "array", "items": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/snippets/#options", "type": "string" }, "uniqueItems": true, "minItems": 1 }, "check_paths": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/snippets/#options", "type": "boolean", "default": true }, "url_download": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/snippets/#options", "type": "boolean", "default": false }, "url_max_size": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/snippets/#options", "type": "integer", "default": 33554432 }, "url_timeout": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/snippets/#options", "type": "number", "default": 10.0 }, "url_request_headers": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/snippets/#options", "type": "object", "default": {} } }, "additionalProperties": false } }, "additionalProperties": false }, { "title": "Snippets – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#snippets", "const": "pymdownx.snippets" } ] }, { "oneOf": [ { "title": "SuperFences – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#superfences", "const": "pymdownx.superfences" }, { "type": "object", "properties": { "pymdownx.superfences": { "title": "SuperFences – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#superfences", "type": "object", "properties": { "custom_fences": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.superfences.custom_fences", "type": "array", "items": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.superfences.custom_fences", "type": "object", "properties": { "name": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/superfences/#custom-fences", "type": "string" }, "class": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/superfences/#custom-fences", "type": "string" }, "format": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/superfences/#custom-fences", "type": "string" } }, "additionalProperties": false }, "minItems": 1 } }, "additionalProperties": false } }, "additionalProperties": false } ] }, { "type": "object", "properties": { "pymdownx.tabbed": { "title": "Tabbed – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#tabbed", "type": "object", "properties": { "alternate_style": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.tabbed.alternate_style", "type": "boolean", "enum": [ true ], "default": true }, "combine_header_slug": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.tabbed.combine_header_slug", "type": "boolean", "default": true }, "slugify": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.tabbed.slugify", "default": "!!python/object/apply:pymdownx.slugs.slugify {kwds: {case: lower}}" } }, "additionalProperties": false, "required": [ "alternate_style" ] } }, "additionalProperties": false }, { "oneOf": [ { "title": "Tasklist – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#tasklist", "const": "pymdownx.tasklist" }, { "type": "object", "properties": { "pymdownx.tasklist": { "title": "Tasklist – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#tasklist", "type": "object", "properties": { "custom_checkbox": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.tasklist.custom_checkbox", "type": "boolean", "default": true }, "clickable_checkbox": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.tasklist.clickable_checkbox", "type": "boolean" } }, "additionalProperties": false } }, "additionalProperties": false } ] }, { "oneOf": [ { "title": "Tilde – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#caret-mark-tilde", "const": "pymdownx.tilde" }, { "type": "object", "properties": { "pymdownx.tilde": { "title": "Tilde – Python Markdown Extensions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#caret-mark-tilde", "type": "object", "properties": { "smart_delete": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/tilde/#options", "type": "boolean" }, "delete": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/tilde/#options", "type": "boolean" }, "subscript": { "markdownDescription": "https://facelessuser.github.io/pymdown-extensions/extensions/tilde/#options", "type": "boolean" } }, "additionalProperties": false } }, "additionalProperties": false } ] } ] } ���������������������������mkdocs-material-9.6.4/docs/schema/extra.json��������������������������������������������������������0000664�0000000�0000000�00000035170�14753064456�0021040�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Extra configuration", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/", "type": "object", "properties": { "homepage": { "title": "Homepage link (when clicking on logo)", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-logo-and-icons/#logo", "type": "string" }, "analytics": { "title": "Analytics provider", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-analytics/#google-analytics", "type": "object", "allOf": [ { "if": { "properties": { "provider": { "const": "google" } } }, "then": { "properties": { "provider": { "title": "Google Analytics", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-analytics/#google-analytics", "const": "google" }, "property": { "anyOf": [ { "title": "Google Analytics 4", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-analytics/#google-analytics", "pattern": "^G-\\w{10}$" }, { "title": "Unknown property", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-analytics/#google-analytics", "type": "string" } ] }, "feedback": { "$ref": "#/$defs/feedback" } }, "required": [ "provider", "property" ], "additionalProperties": false } }, { "if": { "properties": { "provider": { "type": "string" } } }, "then": { "properties": { "provider": { "title": "Custom analytics provider", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-analytics/#custom-site-analytics", "type": "string" }, "feedback": { "$ref": "#/$defs/feedback" } }, "required": [ "provider" ] } } ], "defaultSnippets": [ { "label": "feedback (default)", "body": { "feedback": { "title": "${1:Was this page helpful}", "ratings": [ { "icon": "${2:material/emoticon-happy-outline}", "name": "${3:This page was helpful}", "data": 1, "note": "${4:Thanks for your feedback!}" }, { "icon": "${5:material/emoticon-sad-outline}", "name": "${6:This page could be improved}", "data": 0, "note": "${7:Thanks for your feedback!}" } ] } } } ] }, "annotate": { "title": "Custom selectors for annotations", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/reference/code-blocks/#custom-selectors", "type": "object", "patternProperties": { ".*": { "title": "Custom selector", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/reference/code-blocks/#custom-selectors", "type": "array", "items": { "type": "string", "pattern": "^\\.\\w+" } } } }, "consent": { "title": "Cookie consent", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#cookie-consent", "type": "object", "properties": { "title": { "title": "Cookie consent title", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#+consent.title", "type": "string", "default": "Cookie consent" }, "description": { "title": "Cookie consent description", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#+consent.description", "type": "string" }, "cookies": { "title": "Cookies", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#+consent.cookies", "type": "object", "properties": { "analytics": { "$ref": "#/$defs/cookie" }, "github": { "$ref": "#/$defs/cookie" } }, "patternProperties": { "\\w+": { "$ref": "#/$defs/cookie" } }, "additionalProperties": false, "defaultSnippets": [ { "label": "analytics (default)", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#+consent.cookies", "body": { "analytics": { "name": "Google Analytics", "checked": true } } }, { "label": "github (default)", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#+consent.cookies", "body": { "analytics": { "name": "GitHub", "checked": true } } } ] }, "actions": { "title": "Cookie consent actions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#+consent.actions", "type": "array", "items": { "oneOf": [ { "title": "Button to accept cookies", "const": "accept" }, { "title": "Button to reject cookies", "const": "reject" }, { "title": "Button to manage settings", "const": "manage" } ] }, "uniqueItems": true } }, "additionalProperties": false, "defaultSnippets": [ { "label": "actions (default)", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#+consent.actions", "body": { "actions": [ "accept", "manage" ] } } ], "required": [ "title", "description" ] }, "social": { "title": "Social links", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-the-footer/#social-links", "type": "array", "items": { "title": "Social link", "type": "object", "properties": { "icon": { "$ref": "#/$defs/icon" }, "link": { "title": "Social link", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-the-footer/#+social.link", "type": "string" }, "name": { "title": "Social link name", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-the-footer/#+social.name", "type": "string" } }, "additionalProperties": false, "required": [ "icon", "link" ] } }, "alternate": { "title": "Site language selector", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-language/#site-language-selector", "type": "array", "items": { "title": "Alternate language", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-language/#site-language-selector", "type": "object", "properties": { "name": { "title": "Alternate language name", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-language/#+alternate.name", "type": "string" }, "link": { "title": "Alternate language link", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-language/#+alternate.link", "type": "string" }, "lang": { "title": "Alternate language code (ISO 639-1)", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-language/#+alternate.lang", "type": "string" } }, "additionalProperties": false, "required": [ "name", "link", "lang" ] } }, "tags": { "title": "Tag identifiers", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-tags/#tag-icons-and-identifiers", "type": "object", "patternProperties": { ".*": { "title": "Tag identifier mapping", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-tags/#tag-icons-and-identifiers", "pattern": "^[\\w-]+$" } } }, "version": { "title": "Versioning", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-versioning/#versioning", "type": "object", "properties": { "provider": { "title": "Versioning provider", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-versioning/#versioning", "const": "mike" }, "default": { "title": "Default version", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-versioning/#version-warning", "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ], "default": "stable" }, "alias": { "title": "Show alias next to version number", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-the-versioning/#version-alias", "type": "boolean", "default": true } } }, "generator": { "title": "Generator notice", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-the-footer/#generator-notice", "type": "boolean", "default": true } }, "additionalProperties": true, "$defs": { "cookie": { "title": "Cookie", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#cookie-consent", "oneOf": [ { "type": "object", "properties": { "name": { "title": "Cookie name", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#cookie-consent", "type": "string" }, "checked": { "title": "Initial state", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#cookie-consent", "type": "boolean", "default": true } }, "additionalProperties": false, "required": [ "name" ] }, { "title": "Cookie name", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#cookie-consent", "type": "string" } ] }, "icon": { "anyOf": [ { "$ref": "assets/icons.json" }, { "title": "Unknown icon", "type": "string" } ] }, "feedback": { "title": "Was this page helpful?", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-analytics/#was-this-page-helpful", "type": "object", "properties": { "title": { "title": "Feedback widget title", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-analytics/#was-this-page-helpful", "type": "string", "default": "Was this page helpful?" }, "ratings": { "title": "Feedback ratings", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-analytics/#was-this-page-helpful", "type": "array", "items": { "title": "Feedback rating", "type": "object", "properties": { "icon": { "$ref": "#/$defs/icon" }, "name": { "title": "Feedback rating name", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-analytics/#+analytics.feedback.ratings.name", "type": "string" }, "data": { "title": "Feedback rating data", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-analytics/#+analytics.feedback.ratings.data", "type": "number" }, "note": { "title": "Feedback rating data", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-analytics/#+analytics.feedback.ratings.note", "type": "string" } }, "additionalProperties": false, "required": [ "icon", "name", "data", "note" ] } } }, "additionalProperties": false, "required": [ "title" ] } }, "defaultSnippets": [ { "label": "analytics (default)", "body": { "analytics": { "provider": "${1:google}", "property": "${2:G-XXXXXXXXXX}" } } } ] } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/nav.json����������������������������������������������������������0000664�0000000�0000000�00000001641�14753064456�0020475�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Navigation tree", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#nav", "type": "array", "items": { "anyOf": [ { "title": "Navigation item", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#nav", "pattern": "\\.md$" }, { "type": "object", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#nav", "patternProperties": { ".*": { "oneOf": [ { "title": "Navigation item", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#nav", "pattern": "\\.md$" }, { "$ref": "#" } ] } } } ] }, "additionalItems": false } �����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/plugins.json������������������������������������������������������0000664�0000000�0000000�00000007207�14753064456�0021376�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Plugins", "markdownDescription": "https://www.mkdocs.org/dev-guide/plugins/", "type": "array", "items": { "anyOf": [ { "$ref": "#/$defs/built-in" }, { "$ref": "#/$defs/external" }, { "$ref": "#/$defs/external-community" } ] }, "uniqueItems": true, "minItems": 1, "$defs": { "built-in": { "description": "Built-in plugins", "anyOf": [ { "$ref": "plugins/blog.json" }, { "$ref": "plugins/group.json" }, { "$ref": "plugins/info.json" }, { "$ref": "plugins/meta.json" }, { "$ref": "plugins/offline.json" }, { "$ref": "plugins/optimize.json" }, { "$ref": "plugins/privacy.json" }, { "$ref": "plugins/projects.json" }, { "$ref": "plugins/search.json" }, { "$ref": "plugins/social.json" }, { "$ref": "plugins/tags.json" }, { "$ref": "plugins/typeset.json" } ] }, "external": { "description": "External plugins, schema provided by us", "anyOf": [ { "$ref": "plugins/external/gen-files.json" }, { "$ref": "plugins/external/git-authors.json" }, { "$ref": "plugins/external/git-committers.json" }, { "$ref": "plugins/external/git-revision-date.json" }, { "$ref": "plugins/external/literate-nav.json" }, { "$ref": "plugins/external/macros.json" }, { "$ref": "plugins/external/minify.json" }, { "$ref": "plugins/external/redirects.json" }, { "$ref": "plugins/external/section-index.json" } ] }, "external-community": { "description": "External plugins, schema provided by our community", "anyOf": [ { "$ref": "https://raw.githubusercontent.com/mondeja/mkdocs-include-markdown-plugin/master/schema.json" }, { "$ref": "https://raw.githubusercontent.com/mondeja/mkdocs-material-relative-language-selector/master/schema.json" }, { "$ref": "https://raw.githubusercontent.com/Guts/mkdocs-rss-plugin/main/docs/schema.json" }, { "$ref": "https://raw.githubusercontent.com/timvink/mkdocs-git-revision-date-localized-plugin/master/docs/schema.json" }, { "$ref": "https://raw.githubusercontent.com/blueswen/mkdocs-glightbox/main/schema.json" }, { "$ref": "https://raw.githubusercontent.com/prcr/mkdocs-meta-descriptions-plugin/main/schema.json" }, { "$ref": "https://raw.githubusercontent.com/mkdocstrings/mkdocstrings/main/docs/schema.json" }, { "$ref": "https://raw.githubusercontent.com/pawamoy/mkdocs-coverage/main/docs/schema.json" }, { "$ref": "https://raw.githubusercontent.com/pawamoy/mkdocs-spellcheck/main/docs/schema.json" }, { "$ref": "https://raw.githubusercontent.com/pawamoy/markdown-exec/main/docs/schema.json" }, { "$ref": "https://raw.githubusercontent.com/timvink/mkdocs-table-reader-plugin/master/docs/schema.json" }, { "$ref": "https://gitlab.com/frederic-zinelli/mkdocs-addresses/-/raw/main/mkdocs-addresses-schema.json" } ] } } } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/plugins/����������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0020475�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/plugins/blog.json�������������������������������������������������0000664�0000000�0000000�00000044316�14753064456�0022323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Built-in blog plugin", "oneOf": [ { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/", "const": "blog" }, { "type": "object", "properties": { "blog": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/", "type": "object", "properties": { "enabled": { "title": "Enable plugin", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.enabled", "type": "boolean", "default": true }, "blog_dir": { "title": "Blog directory", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.blog_dir", "type": "string", "default": "blog" }, "blog_toc": { "title": "Table of contents", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.blog_toc", "type": "boolean", "default": false }, "post_dir": { "title": "Post directory", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.post_dir", "type": "string", "default": "\"{blog\\}/posts\"" }, "post_date_format": { "title": "Format string for post dates", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.post_date_format", "default": "long", "oneOf": [ { "enum": [ "full", "long", "medium", "short" ] }, { "type": "string" } ] }, "post_url_date_format": { "title": "Format string for post dates in URLs", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.post_url_date_format", "oneOf": [ { "enum": [ "yyyy", "yyyy/MM", "yyyy/MM/dd" ] }, { "type": "string" } ], "default": "yyyy" }, "post_url_format": { "title": "Format string for post URLs", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.post_url_format", "oneOf": [ { "enum": [ "\"{date}/{file}\"", "\"{date}/{slug}\"", "\"{file}\"", "\"{slug}\"" ] }, { "type": "string" } ] }, "post_url_max_categories": { "title": "Number of categories in post URLs", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.post_url_max_categories", "type": "number", "default": 1 }, "post_slugify": { "title": "Post slugify function", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.post_slugify", "default": "!!python/object/apply:pymdownx.slugs.slugify {kwds: {case: lower}}" }, "post_slugify_separator": { "title": "Post slugify separator", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.post_slugify_separator", "type": "string", "default": "\"-\"" }, "post_excerpt": { "title": "Post excerpts", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.post_excerpt", "oneOf": [ { "title": "Post excerpts are optional", "const": "optional" }, { "title": "Post excerpts are required, thus the build will fail", "const": "required" } ], "default": "optional" }, "post_excerpt_max_authors": { "title": "Number of authors to render in post excerpts", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.post_excerpt_max_authors", "type": "number", "default": 1 }, "post_excerpt_max_categories": { "title": "Number of categories to render in post excerpts", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.post_excerpt_max_categories", "type": "number", "default": 5 }, "post_excerpt_separator": { "title": "Post excerpt separator", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.post_excerpt_separator", "type": "string", "default": "<!-- more -->" }, "post_readtime": { "title": "Post reading time computation", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.post_readtime", "type": "boolean", "default": true }, "post_readtime_words_per_minute": { "title": "Post reading time words per minute", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.post_readtime_words_per_minute", "type": "number", "default": 265 }, "archive": { "title": "Archive", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.archive", "type": "boolean", "default": true }, "archive_name": { "title": "Archive name", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.archive_name", "type": "string", "default": "Archive" }, "archive_date_format": { "title": "Format string for archive dates", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.archive_date_format", "oneOf": [ { "enum": [ "yyyy", "MMMM yyyy" ] }, { "type": "string" } ], "default": "yyyy" }, "archive_url_date_format": { "title": "Format string for archive dates in URLs", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.archive_url_date_format", "oneOf": [ { "enum": [ "yyyy", "yyyy/MM" ] }, { "type": "string" } ], "default": "yyyy" }, "archive_url_format": { "title": "Format string for archive URLs", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.archive_url_format", "oneOf": [ { "enum": [ "\"archive/{date}\"" ] }, { "type": "string" } ] }, "archive_pagination": { "title": "Pagination for archive", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.archive_pagination", "type": "boolean", "default": true }, "archive_pagination_per_page": { "title": "Posts per page for archive", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.archive_pagination_per_page", "type": "number", "default": 10 }, "archive_toc": { "title": "Table of contents for archive", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.archive_toc", "type": "boolean", "default": false }, "categories": { "title": "Categories", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.categories", "type": "boolean", "default": true }, "categories_name": { "title": "Categories name", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.categories_name", "type": "string", "default": "Categories" }, "categories_url_format": { "title": "Format string for category URLs", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.categories_url_format", "oneOf": [ { "enum": [ "\"category/{slug}\"", "\"{slug}\"" ] }, { "type": "string" } ] }, "categories_slugify": { "title": "Categories slugify function", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.categories_slugify", "default": "!!python/object/apply:pymdownx.slugs.slugify {kwds: {case: lower}}" }, "categories_slugify_separator": { "title": "Categories slugify separator", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.categories_slugify_separator", "type": "string", "default": "\"-\"" }, "categories_sort_by": { "title": "Sort categories by this function", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.categories_sort_by", "default": "!!python/name:material.plugins.blog.view_name", "oneOf": [ { "type": "string" }, { "enum": [ "!!python/name:material.plugins.blog.view_name", "!!python/name:material.plugins.blog.view_post_count" ] } ] }, "categories_sort_reverse": { "title": "Soft categories in reverse", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.categories_sort_reverse", "default": false }, "categories_allowed": { "title": "Allowed categories", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.categories_allowed", "type": "array", "items": { "type": "string" }, "uniqueItems": true, "default": [] }, "categories_pagination": { "title": "Pagination for categories", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.categories_pagination", "type": "boolean", "default": true }, "categories_pagination_per_page": { "title": "Posts per page for categories", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.categories_pagination_per_page", "type": "number", "default": 10 }, "categories_toc": { "title": "Table of contents for categories", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.categories_toc", "type": "boolean", "default": false }, "authors": { "title": "Author info", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.authors", "type": "boolean", "default": true }, "authors_file": { "title": "Authors file", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.authors_file", "type": "string", "default": "\"{blog}/.authors.yml\"" }, "authors_profiles": { "title": "Author profiles", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.authors_profiles", "type": "boolean", "default": false }, "authors_profiles_name": { "title": "Authors profiles name", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.authors_profiles_name", "type": "string", "default": "Authors" }, "authors_profiles_url_format": { "title": "Format string for author profile URLs", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.authors_profiles_url_format", "oneOf": [ { "enum": [ "\"author/{slug}\"", "\"{slug}\"" ] }, { "type": "string" } ] }, "authors_profiles_pagination": { "title": "Pagination for author profiles", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.authors_profiles_pagination", "type": "boolean", "default": true }, "authors_profiles_pagination_per_page": { "title": "Posts per page for author profiles", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.authors_profiles_pagination_per_page", "type": "number", "default": 10 }, "authors_profiles_toc": { "title": "Table of contents for author profiles", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.authors_profiles_toc", "type": "boolean", "default": false }, "pagination": { "title": "Pagination", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.pagination", "type": "boolean", "default": true }, "pagination_per_page": { "title": "Posts per page", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.pagination_per_page", "type": "number", "default": 10 }, "pagination_url_format": { "title": "Format string for pagination URLs", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.pagination_url_format", "oneOf": [ { "enum": [ "\"page/{page}\"", "\"{page}\"" ] }, { "type": "string" } ] }, "pagination_template": { "title": "Template string for pagination", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.pagination_template", "oneOf": [ { "enum": [ "~2~", "$link_first $link_previous ~2~ $link_next $link_last", "$link_previous $page $link_next" ] }, { "type": "string" } ], "default": "~2~" }, "pagination_keep_content": { "title": "Paginated indexes inherit content", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.pagination_keep_content", "type": "boolean", "default": false }, "draft": { "title": "Render posts marked as drafts", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.draft", "type": "boolean", "default": false }, "draft_on_serve": { "title": "Render posts marked as drafts when previewing", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.draft_on_serve", "type": "boolean", "default": true }, "draft_if_future_date": { "title": "Automatically mark posts with future dates as drafts", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.draft_if_future_date", "type": "boolean", "default": false } }, "additionalProperties": false } }, "additionalProperties": false } ] } ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/plugins/external/�������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0022317�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/plugins/external/gen-files.json�����������������������������������0000664�0000000�0000000�00000001131�14753064456�0025057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Generate pages during the build", "oneOf": [ { "markdownDescription": "https://github.com/oprypin/mkdocs-gen-files", "const": "git-authors" }, { "type": "object", "properties": { "gen-files": { "additionalProperties": false, "properties": { "scripts": { "items": { "type": "string" }, "type": "array" } }, "type": ["object", "null"] } } } ] } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/plugins/external/git-authors.json���������������������������������0000664�0000000�0000000�00000002320�14753064456�0025455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Add git authors to pages", "oneOf": [ { "markdownDescription": "https://timvink.github.io/mkdocs-git-authors-plugin/", "const": "git-authors" }, { "type": "object", "properties": { "git-authors": { "markdownDescription": "https://timvink.github.io/mkdocs-git-authors-plugin/options.html", "type": "object", "properties": { "enabled": { "title": "Enable plugin", "markdownDescription": "https://timvink.github.io/mkdocs-git-authors-plugin/options.html#enabled", "type": "boolean", "default": true }, "exclude": { "title": "List of Markdown file patterns", "markdownDescription": "https://timvink.github.io/mkdocs-git-authors-plugin/options.html#exclude", "type": "array", "items": { "pattern": "(\\*|\\.md)$" }, "uniqueItems": true, "minItems": 1 } }, "additionalProperties": false } }, "additionalProperties": false } ] } ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/plugins/external/git-committers.json������������������������������0000664�0000000�0000000�00000002720�14753064456�0026162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Add git contributors to pages", "oneOf": [ { "markdownDescription": "https://github.com/ojacques/mkdocs-git-committers-plugin-2", "const": "git-committers" }, { "type": "object", "properties": { "git-committers": { "markdownDescription": "https://github.com/ojacques/mkdocs-git-committers-plugin-2", "type": "object", "properties": { "enabled": { "title": "Enable plugin", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/adding-a-git-repository/#+git-committers.enabled", "type": "boolean", "default": true }, "repository": { "title": "Repository slug", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/adding-a-git-repository/#+git-committers.repository", "type": "string" }, "branch": { "title": "Repository branch", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/adding-a-git-repository/#+git-committers.branch", "type": "string", "default": "master" } }, "additionalProperties": false, "required": [ "repository" ] } }, "additionalProperties": false } ] } ������������������������������������������������mkdocs-material-9.6.4/docs/schema/plugins/external/git-revision-date.json���������������������������0000664�0000000�0000000�00000002622�14753064456�0026546�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Add git revision date to pages", "oneOf": [ { "markdownDescription": "https://github.com/zhaoterryy/mkdocs-git-revision-date-plugin", "const": "git-revision-date" }, { "type": "object", "properties": { "git-revision-date": { "markdownDescription": "https://github.com/zhaoterryy/mkdocs-git-revision-date-plugin", "type": "object", "properties": { "enable_if_env": { "title": "Enable plugin when environment variable is set", "markdownDescription": "https://github.com/zhaoterryy/mkdocs-git-revision-date-plugin#options", "type": "string" }, "modify_md": { "title": "Enable plugin to be used in Markdown files", "markdownDescription": "https://github.com/zhaoterryy/mkdocs-git-revision-date-plugin#options", "type": "boolean", "default": true }, "as_datetime": { "title": "Output as Python datetime", "markdownDescription": "https://github.com/zhaoterryy/mkdocs-git-revision-date-plugin#options", "type": "boolean", "default": false } }, "additionalProperties": false } }, "additionalProperties": false } ] } ��������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/plugins/external/literate-nav.json��������������������������������0000664�0000000�0000000�00000002532�14753064456�0025607�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "http://json-schema.org/draft-07/schema", "title": "Configure navigation in Markdown instead of YAML", "oneOf": [ { "markdownDescription": "https://github.com/oprypin/mkdocs-literate-nav", "const": "literate-nav" }, { "type": "object", "properties": { "literate-nav": { "markdownDescription": "https://github.com/oprypin/mkdocs-literate-nav", "type": "object", "properties": { "nav_file": { "title": "The name of the file to read to determine the navigation for a particular directory under `docs_dir`", "markdownDescription": "https://oprypin.github.io/mkdocs-literate-nav/reference.html#nav_file", "type": "string", "default": "SUMMARY.md" }, "implicit_index": { "title": "If set and a directory has a file named `index.md` or `README.md`, but the literate nav for that directory that never includes it, it will be inserted as the first item of the nav", "markdownDescription": "https://oprypin.github.io/mkdocs-literate-nav/reference.html#implicit_index", "type": "boolean", "default": false } }, "additionalProperties": false } }, "additionalProperties": false } ] } ����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/plugins/external/macros.json��������������������������������������0000664�0000000�0000000�00000006461�14753064456�0024505�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "http://json-schema.org/draft-07/schema", "title": "Use variables and macros in Markdown", "oneOf": [ { "markdownDescription": "https://github.com/fralau/mkdocs_macros_plugin", "const": "macros" }, { "type": "object", "properties": { "macros": { "markdownDescription": "", "type": "object", "properties": { "module_name": { "title": "Name of the Python module containing macros, filters and variables", "markdownDescription": "https://mkdocs-macros-plugin.readthedocs.io/en/latest/#configuration-of-the-plugin", "type": "string", "default": "main" }, "modules": { "title": "List of preinstalled Python modules, i.e. listed by `pip list`", "markdownDescription": "https://mkdocs-macros-plugin.readthedocs.io/en/latest/#configuration-of-the-plugin", "type": "array" }, "include_dir": { "title": "Directory for including external files", "markdownDescription": "https://mkdocs-macros-plugin.readthedocs.io/en/latest/advanced/#changing-the-directory-of-the-includes", "type": "string" }, "include_yaml": { "title": "List of yaml files or `key: filename` pairs to be included", "markdownDescription": "https://mkdocs-macros-plugin.readthedocs.io/en/latest/advanced/#including-external-yaml-files", "type": "array" }, "j2_block_start_string": { "title": "Non-standard Jinja2 marker for start of block", "markdownDescription": "https://mkdocs-macros-plugin.readthedocs.io/en/latest/advanced/#solution-4-altering-the-syntax-of-jinja2-for-mkdocs-macros", "type": "string" }, "j2_block_end_string": { "title": "Non-standard Jinja2 marker for end of block", "markdownDescription": "https://mkdocs-macros-plugin.readthedocs.io/en/latest/advanced/#solution-4-altering-the-syntax-of-jinja2-for-mkdocs-macros", "type": "string" }, "j2_variable_start_string": { "title": "Non-standard Jinja2 marker for start of variable", "markdownDescription": "https://mkdocs-macros-plugin.readthedocs.io/en/latest/advanced/#solution-4-altering-the-syntax-of-jinja2-for-mkdocs-macros", "type": "string" }, "j2_variable_end_string": { "title": "Non-standard Jinja2 marker for end of variable", "markdownDescription": "https://mkdocs-macros-plugin.readthedocs.io/en/latest/advanced/#solution-4-altering-the-syntax-of-jinja2-for-mkdocs-macros", "type": "string" }, "on_error_fail": { "title": "Stop build/serve when macro error happens", "markdownDescription": "https://mkdocs-macros-plugin.readthedocs.io/en/latest/advanced/#can-i-make-mkdocs-macros-build-process-to-fail-in-case-of-error-instead-of-displaying-the-error-on-the-page", "type": "boolean", "default": false } }, "additionalProperties": false } }, "additionalProperties": false } ] } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/plugins/external/minify.json��������������������������������������0000664�0000000�0000000�00000005054�14753064456�0024511�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Minify HTML, JavaScript and CSS during the build", "type": "object", "properties": { "minify": { "markdownDescription": "https://github.com/byrnereese/mkdocs-minify-plugin", "type": "object", "dependencies": { "minify_js": [ "js_files" ], "minify_css": [ "css_files" ] }, "properties": { "minify_html": { "title": "Minify HTML files", "markdownDescription": "https://github.com/byrnereese/mkdocs-minify-plugin#options", "type": "boolean", "default": true }, "minify_js": { "title": "Minify JavaScript files", "markdownDescription": "https://github.com/byrnereese/mkdocs-minify-plugin#options", "type": "boolean", "default": false }, "minify_css": { "title": "Minify CSS files", "markdownDescription": "https://github.com/byrnereese/mkdocs-minify-plugin#options", "type": "boolean", "default": false }, "htmlmin_opts": { "title": "Options for HTML minifier", "markdownDescription": "https://github.com/byrnereese/mkdocs-minify-plugin#options", "type": "object" }, "cache_safe": { "title": "Add hash to Javascript and CSS file names", "markdownDescription": "https://github.com/byrnereese/mkdocs-minify-plugin#options", "type": "boolean", "default": false }, "js_files": { "title": "JavaScript files to minify", "markdownDescription": "https://github.com/byrnereese/mkdocs-minify-plugin#options", "type": "array", "items": { "title": "Path to JavaScript file", "markdownDescription": "https://github.com/byrnereese/mkdocs-minify-plugin#options", "pattern": "\\.js$" }, "uniqueItems": true, "minItems": 1 }, "css_files": { "title": "CSS files to minify", "markdownDescription": "https://github.com/byrnereese/mkdocs-minify-plugin#options", "type": "array", "items": { "title": "Path to CSS file", "markdownDescription": "https://github.com/byrnereese/mkdocs-minify-plugin#options", "pattern": "\\.css$" }, "uniqueItems": true, "minItems": 1 } }, "additionalProperties": false } }, "additionalProperties": false } ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/plugins/external/redirects.json�����������������������������������0000664�0000000�0000000�00000003031�14753064456�0025173�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Add redirects when moving pages to new locations", "type": "object", "properties": { "redirects": { "markdownDescription": "https://github.com/mkdocs/mkdocs-redirects", "type": "object", "properties": { "redirect_maps": { "title": "Mapping of Markdown files", "markdownDescription": "https://github.com/mkdocs/mkdocs-redirects#using", "type": "object", "patternProperties": { "\\.md$": { "oneOf": [ { "title": "Internal redirect", "markdownDescription": "https://github.com/mkdocs/mkdocs-redirects#using", "pattern": "\\.md(#\\S+)?$" }, { "title": "External redirect", "markdownDescription": "https://github.com/mkdocs/mkdocs-redirects#using", "pattern": "^https?:" } ] } }, "defaultSnippets": [ { "label": "Internal redirect", "body": { "${1:from}.md": "${2:to}.md" } }, { "label": "External redirect", "body": { "${1:from}.md": "https://${2:to.url}" } } ], "additionalProperties": false } }, "additionalProperties": false } }, "additionalProperties": false } �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/plugins/external/section-index.json�������������������������������0000664�0000000�0000000�00000000600�14753064456�0025757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Add index section pages to navigation", "oneOf": [ { "markdownDescription": "https://github.com/oprypin/mkdocs-section-index", "const": "section-index" }, { "type": "object", "additionalProperties": false, "properties": { "section-index": {} } } ] } ��������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/plugins/group.json������������������������������������������������0000664�0000000�0000000�00000001601�14753064456�0022522�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Built-in group plugin", "oneOf": [ { "type": "object", "properties": { "group": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/group/", "type": "object", "properties": { "enabled": { "title": "Enable plugin", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/group/#config.enabled", "type": "boolean", "default": true }, "plugins": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/group/#config.plugins", "$ref": "../plugins.json" } }, "additionalProperties": false } }, "additionalProperties": false } ] } �������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/plugins/info.json�������������������������������������������������0000664�0000000�0000000�00000003244�14753064456�0022326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Built-in info plugin", "oneOf": [ { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/info/", "const": "info" }, { "type": "object", "properties": { "info": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/info/", "type": "object", "properties": { "enabled": { "title": "Enable plugin", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/info/#config.enabled", "type": "boolean", "default": true }, "enabled_on_serve": { "title": "Enable plugin when previewing", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/info/#config.enabled_on_serve", "type": "boolean", "default": false }, "archive": { "title": "Enable creation of archive", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/info/#config.archive", "type": "boolean", "default": true }, "archive_stop_on_violation": { "title": "Stop creation of archive on violation", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/info/#config.archive_stop_on_violation", "type": "boolean", "default": true } }, "additionalProperties": false } }, "additionalProperties": false } ] } ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/plugins/meta.json�������������������������������������������������0000664�0000000�0000000�00000002116�14753064456�0022316�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Built-in meta plugin", "oneOf": [ { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/meta/", "const": "meta" }, { "type": "object", "properties": { "meta": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/meta/", "type": "object", "properties": { "enabled": { "title": "Enable plugin", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/meta/#config.enabled", "type": "boolean", "default": true }, "meta_file": { "title": "Meta file name", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/meta/#config.meta_file", "pattern": "\\.yml$", "default": "\"**/.meta.yml\"" } }, "additionalProperties": false } }, "additionalProperties": false } ] } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/plugins/offline.json����������������������������������������������0000664�0000000�0000000�00000001512�14753064456�0023011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Built-in offline plugin", "oneOf": [ { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/offline/", "const": "offline" }, { "type": "object", "properties": { "offline": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/offline/", "type": "object", "properties": { "enabled": { "title": "Enable plugin", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/offline/#config.enabled", "type": "boolean", "default": true } }, "additionalProperties": false } }, "additionalProperties": false } ] } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/plugins/optimize.json���������������������������������������������0000664�0000000�0000000�00000012145�14753064456�0023233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Built-in optimize plugin", "oneOf": [ { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/optimize/", "const": "optimize" }, { "type": "object", "properties": { "optimize": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/optimize/", "type": "object", "properties": { "enabled": { "title": "Enable plugin", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/optimize/#config.enabled", "type": "boolean", "default": true }, "concurrency": { "title": "Concurrency (number of CPUs)", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/optimize/#config.concurrency", "type": "number" }, "cache": { "title": "Enable caching", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/optimize/#config.cache", "type": "boolean", "default": true }, "cache_dir": { "title": "Cache directory", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/optimize/#config.cache_dir", "type": "string", "default": ".cache/plugins/optimize" }, "optimize_png": { "title": "Optimization of PNGs", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/optimize/#config.optimize_png", "type": "boolean", "default": true }, "optimize_png_speed": { "title": "Speed/quality tradeoff [1,10]", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/optimize/#config.optimize_png_speed", "type": "number", "default": 4 }, "optimize_png_strip": { "title": "Strip unnecessary metadata from PNGs", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/optimize/#config.optimize_png_strip", "type": "boolean", "default": true }, "optimize_jpg": { "title": "Optimization of JPGs", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/optimize/#config.optimize_jpg", "type": "boolean", "default": true }, "optimize_jpg_quality": { "title": "Speed/quality tradeoff for pngquant [0,10]", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/optimize/#config.optimize_jpg_quality", "type": "number", "default": 60 }, "optimize_jpg_progressive": { "title": "Progressive encoding (faster rendering)", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/optimize/#config.optimize_jpg_progressive", "type": "boolean", "default": true }, "optimize_include": { "title": "Files or folders to include", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/optimize/#config.optimize_include", "type": "array", "items": { "title": "Files or folders matching this pattern will be included", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/optimize/#config.optimize_include", "pattern": ".*" }, "uniqueItems": true, "minItems": 1 }, "optimize_exclude": { "title": "Files or folders to exclude", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/optimize/#config.optimize_exclude", "type": "array", "items": { "title": "Files or folders matching this pattern will be excluded", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/optimize/#config.optimize_exclude", "pattern": ".*" }, "uniqueItems": true, "minItems": 1 }, "print_gain": { "title": "Print optimization gain", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/optimize/#config.print_gain", "type": "boolean", "default": true }, "print_gain_summary": { "title": "Print optimization gain summary", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/optimize/#config.print_gain_summary", "type": "boolean", "default": true } }, "additionalProperties": false } }, "additionalProperties": false } ] } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/plugins/privacy.json����������������������������������������������0000664�0000000�0000000�00000012271�14753064456�0023050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Built-in privacy plugin", "oneOf": [ { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/privacy/", "const": "privacy" }, { "type": "object", "properties": { "privacy": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/privacy/", "type": "object", "properties": { "enabled": { "title": "Enable plugin", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/privacy/#config.enabled", "type": "boolean", "default": true }, "concurrency": { "title": "Concurrency (number of CPUs)", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/privacy/#config.concurrency", "type": "number" }, "cache": { "title": "Enable caching", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/privacy/#config.cache", "type": "boolean", "default": true }, "cache_dir": { "title": "Cache directory", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/privacy/#config.cache_dir", "type": "string", "default": ".cache/plugins/privacy" }, "log": { "title": "Enable logging", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/privacy/#config.log", "type": "boolean", "default": true }, "log_level": { "title": "Log level", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/privacy/#config.log_level", "enum": [ "error", "warn", "info", "debug" ], "default": "info" }, "assets": { "title": "Process external assets", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/privacy/#config.assets", "type": "boolean", "default": true }, "assets_fetch": { "title": "Download external assets", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/privacy/#config.assets_fetch", "type": "boolean", "default": true }, "assets_fetch_dir": { "title": "Download external assets to this directory", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/privacy/#config.assets_fetch_dir", "type": "string", "default": "assets/external" }, "assets_include": { "title": "External assets to include", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/privacy/#config.assets_include", "type": "array", "items": { "title": "External assets matching this pattern will be downloaded", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/privacy/#config.assets_include", "pattern": ".*" }, "uniqueItems": true, "minItems": 1 }, "assets_exclude": { "title": "External assets to exclude", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/privacy/#config.assets_exclude", "type": "array", "items": { "title": "External assets matching this pattern will not be downloaded", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/privacy/#config.assets_exclude", "pattern": ".*" }, "uniqueItems": true, "minItems": 1 }, "links": { "title": "Process external links", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/privacy/#config.links", "type": "boolean", "default": true }, "links_attr_map": { "title": "Custom attributes to add to external links", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/privacy/#config.links_attr_map", "type": "object", "patternProperties": { "^[\\w_]+$": { "type": "string" } } }, "links_noopener": { "title": "Behavior for external links that open in new windows", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/privacy/#config.links_noopener", "type": "boolean", "default": true } }, "additionalProperties": false } }, "additionalProperties": false } ] } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/plugins/projects.json���������������������������������������������0000664�0000000�0000000�00000007361�14753064456�0023230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Built-in projects plugin", "oneOf": [ { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/projects/", "const": "projects" }, { "type": "object", "properties": { "projects": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/projects/", "type": "object", "properties": { "enabled": { "title": "Enable plugin", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/projects/#config.enabled", "type": "boolean", "default": true }, "concurrency": { "title": "Concurrency (number of CPUs)", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/projects/#config.concurrency", "type": "number" }, "cache": { "title": "Enable caching", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/projects/#config.cache", "type": "boolean", "default": true }, "cache_dir": { "title": "Cache directory", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/projects/#config.cache_dir", "type": "string", "default": ".cache/plugins/projects" }, "log": { "title": "Enable logging", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/projects/#config.log", "type": "boolean", "default": true }, "log_level": { "title": "Log level", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/projects/#config.log_level", "enum": [ "error", "warn", "info", "debug" ], "default": "info" }, "projects": { "title": "Enable projects", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/projects/#config.projects", "type": "boolean", "default": true }, "projects_dir": { "title": "Projects directory", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/projects/#config.projects_dir", "type": "string", "default": "projects" }, "projects_config_files": { "title": "Projects configuration files", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/projects/#config.projects_config_files", "type": "string", "default": "\"*/mkdocs.yml\"" }, "projects_config_transform": { "title": "Projects configuration transform", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/projects/#config.projects_config_transform", "type": "string", "defaultSnippets": [ { "body": "!!python/name:${1:module}.${2:function}" } ] }, "hoisting": { "title": "Enable hoisting", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/projects/#config.hoisting", "type": "boolean", "default": true } }, "additionalProperties": false } }, "additionalProperties": false } ] } �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/plugins/search.json�����������������������������������������������0000664�0000000�0000000�00000010274�14753064456�0022641�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Built-in search plugin", "oneOf": [ { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/search/", "const": "search" }, { "type": "object", "properties": { "search": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/search/", "type": "object", "properties": { "lang": { "oneOf": [ { "$ref": "#/$defs/lang" }, { "type": "array", "items": { "$ref": "#/$defs/lang" }, "uniqueItems": true, "minItems": 1 } ], "default": "en" }, "separator": { "title": "Separator for indexing and query tokenization", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/search/#config.separator", "type": "string" }, "pipeline": { "title": "Text processing pipeline for indexing", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/search/#config.pipeline", "type": "array", "items": { "enum": [ "stemmer", "stopWordFilter", "trimmer" ] }, "uniqueItems": true }, "jieba_dict": { "title": "Jieba dictionary replacement", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/search/#config.jieba_dict", "type": "string" }, "jieba_dict_user": { "title": "Jieba dictionary augmentation", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/search/#config.jieba_dict_user", "type": "string" } }, "additionalProperties": false } }, "additionalProperties": false } ], "$defs": { "lang": { "title": "Site search language", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/search/#config.lang", "oneOf": [ { "title": "Site search language: Arabic", "const": "ar" }, { "title": "Site search language: Danish", "const": "da" }, { "title": "Site search language: German", "const": "de" }, { "title": "Site search language: Dutch", "const": "du" }, { "title": "Site search language: English", "const": "en" }, { "title": "Site search language: Spanish", "const": "es" }, { "title": "Site search language: Finnish", "const": "fi" }, { "title": "Site search language: French", "const": "fr" }, { "title": "Site search language: Hungarian", "const": "hu" }, { "title": "Site search language: Italian", "const": "it" }, { "title": "Site search language: Japanese", "const": "ja" }, { "title": "Site search language: Norwegian", "const": "no" }, { "title": "Site search language: Portuguese", "const": "pt" }, { "title": "Site search language: Romanian", "const": "ro" }, { "title": "Site search language: Russian", "const": "ru" }, { "title": "Site search language: Swedish", "const": "sv" }, { "title": "Site search language: Thai", "const": "th" }, { "title": "Site search language: Turkish", "const": "tr" }, { "title": "Site search language: Vietnamese", "const": "vi" } ] } } } ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/plugins/social.json�����������������������������������������������0000664�0000000�0000000�00000014461�14753064456�0022650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Built-in social plugin", "oneOf": [ { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/social/", "const": "social" }, { "type": "object", "properties": { "social": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/social/", "type": "object", "properties": { "enabled": { "title": "Enable plugin", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/social/#config.enabled", "type": "boolean", "default": true }, "concurrency": { "title": "Concurrency (number of CPUs)", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/social/#config.concurrency", "type": "number" }, "cache": { "title": "Enable caching", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/social/#config.cache", "type": "boolean", "default": true }, "cache_dir": { "title": "Cache directory", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/social/#config.cache_dir", "type": "string", "default": ".cache/plugins/social" }, "cards": { "title": "Social cards", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/social/#config.cards", "type": "boolean", "default": true }, "log": { "title": "Enable logging", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/social/#config.log", "type": "boolean", "default": true }, "log_level": { "title": "Log level", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/social/#config.log_level", "enum": [ "warn", "info", "ignore" ], "default": "warn" }, "cards_dir": { "title": "Social cards directory", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/social/#config.cards_dir", "type": "string", "default": "assets/images/social" }, "cards_layout_dir": { "title": "Social cards layout directory", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/social/#config.cards_layout_dir", "type": "string", "default": "layouts" }, "cards_layout": { "title": "Social cards layout", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/social/#config.cards_layout", "default": "default", "oneOf": [ { "enum": [ "default", "default/accent", "default/invert", "default/variant" ] }, { "type": "string" } ] }, "cards_layout_options": { "title": "Social cards layout options", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/social/#config.cards_layout_options", "type": "object" }, "cards_include": { "title": "Pages or folders to include", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/social/#config.cards_include", "type": "array", "items": { "title": "Pages or folders matching this pattern will be included", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/social/#config.cards_include", "pattern": ".*" }, "uniqueItems": true, "minItems": 1 }, "cards_exclude": { "title": "Pages or folders to exclude", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/social/#config.cards_exclude", "type": "array", "items": { "title": "Pages or folders matching this pattern will be excluded", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/social/#config.cards_exclude", "pattern": ".*" }, "uniqueItems": true, "minItems": 1 }, "debug": { "title": "Debug mode", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/social/#config.debug", "type": "boolean", "default": true }, "debug_on_build": { "title": "Always disable debug mode on build", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/social/#config.debug_on_build", "type": "boolean", "default": false }, "debug_grid": { "title": "Debug grid", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/social/#config.debug_grid", "type": "boolean", "default": true }, "debug_grid_step": { "title": "Debug grid step size", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/social/#config.debug_grid_step", "type": "number", "default": 32 }, "debug_color": { "title": "Debug color", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/social/#config.debug_color", "type": "string", "default": "yellow" } }, "additionalProperties": false } }, "additionalProperties": false } ] } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/plugins/tags.json�������������������������������������������������0000664�0000000�0000000�00000024077�14753064456�0022340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Built-in tags plugin", "oneOf": [ { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/", "const": "tags" }, { "type": "object", "properties": { "tags": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/", "type": "object", "properties": { "enabled": { "title": "Enable plugin", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.enabled", "type": "boolean", "default": true }, "tags": { "title": "Rendering of tags", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.tags", "type": "boolean", "default": true }, "tags_file": { "title": "Markdown file to render tags index", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.tags_file", "pattern": "\\.md$", "default": "tags.md" }, "tags_slugify": { "title": "Tags slugify function", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.tags_slugify", "default": "!!python/object/apply:pymdownx.slugs.slugify {kwds: {case: lower}}" }, "tags_slugify_separator": { "title": "Tags slugify separator", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.tags_slugify_separator", "type": "string", "default": "-" }, "tags_slugify_format": { "title": "Format string for tags slugifier", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.tags_slugify_format", "type": "string", "default": "\"tag:{slug}\"" }, "tags_hierarchy": { "title": "Rendering of tags", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.tags", "type": "boolean", "default": true }, "tags_sort_by": { "title": "Sort tags by this function", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.tags_sort_by", "default": "!!python/name:material.plugins.tags.casefold" }, "tags_sort_reverse": { "title": "Soft tags in reverse", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.tags_sort_reverse", "default": false }, "tags_name_property": { "title": "Tags front matter property", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.tags_name_property", "type": "string", "default": "tags" }, "tags_name_variable": { "title": "Tags Jinja variable name", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.tags_name_variable", "type": "string", "default": "tags" }, "tags_allowed": { "title": "Tags allowed", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.tags_allowed", "type": "array", "items": { "type": "string" }, "uniqueItems": true, "default": [] }, "listings": { "title": "Rendering of listings", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.listings", "type": "boolean", "default": true }, "listings_map": { "title": "Map of listing configurations", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.listings_map", "type": "object", "patternProperties": { ".*": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#listing-configuration", "type": "object", "properties": { "scope": { "title": "Scoped listing", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#listing.scope", "default": false }, "shadow": { "title": "Render shadow tags", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#listing.shadow", "default": true }, "include": { "title": "Tag inclusion list", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#listing.include", "type": "array", "uniqueItems": true }, "exclude": { "title": "Tag exclusion list", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#listing.exclude", "type": "array", "uniqueItems": true }, "toc": { "title": "Render tags in table of contents", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#listing.toc", "default": true } } } }, "additionalProperties": false }, "listings_sort_by": { "title": "Sort listing items by this function", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.listings_sort_by", "default": "!!python/name:material.plugins.tags.casefold" }, "listings_sort_reverse": { "title": "Soft listing items in reverse", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.listings_sort_reverse", "default": false }, "listings_tags_sort_by": { "title": "Sort listing tags by this function", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.listings_tags_sort_by", "default": "!!python/name:material.plugins.tags.casefold" }, "listings_tags_sort_reverse": { "title": "Soft listing tags in reverse", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.listings_tags_sort_reverse", "default": false }, "listings_directive": { "title": "Listings directive", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.listings_directive", "type": "string", "default": "material/tags" }, "listings_toc": { "title": "Render tags in table of contents", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.listings_toc", "default": true }, "shadow": { "title": "Rendering shadow tags on build", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.shadow", "type": "boolean", "default": false }, "shadow_on_serve": { "title": "Rendering shadow tags on serve", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.shadow_on_serve", "type": "boolean", "default": true }, "shadow_tags": { "title": "Shadow tags", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.shadow_tags", "type": "array", "items": { "type": "string" }, "uniqueItems": true, "default": [] }, "shadow_tags_prefix": { "title": "Shadow tags prefix", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.shadow_tags_prefix", "type": "string", "default": "_" }, "shadow_tags_suffix": { "title": "Shadow tags suffix", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.shadow_tags_suffix", "type": "string" }, "export": { "title": "Tags export", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.export", "type": "boolean", "default": true }, "export_file": { "title": "Tags file", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.export_file", "type": "boolean", "default": "tags.json" }, "export_only": { "title": "Only export tags, don't render them", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/tags/#config.export_only", "type": "boolean", "default": true } }, "additionalProperties": false } }, "additionalProperties": false } ] } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/plugins/typeset.json����������������������������������������������0000664�0000000�0000000�00000001512�14753064456�0023064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Built-in typeset plugin", "oneOf": [ { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/typeset/", "const": "typeset" }, { "type": "object", "properties": { "typeset": { "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/typeset/", "type": "object", "properties": { "enabled": { "title": "Enable plugin", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/typeset/#config.enabled", "type": "boolean", "default": true } }, "additionalProperties": false } }, "additionalProperties": false } ] } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/schema/theme.json��������������������������������������������������������0000664�0000000�0000000�00000062763�14753064456�0021027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Theme configuration", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/", "type": "object", "properties": { "name": { "title": "Theme name", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#name", "oneOf": [ { "const": "material" }, { "type": "null" } ], "default": "material" }, "custom_dir": { "title": "Directory with theme overrides", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/customization/#setup-and-theme-structure", "type": "string", "defaultSnippets": [ { "body": "${1:overrides}" } ] }, "static_templates": { "title": "Static templates to render", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#static_templates", "type": "array", "items": { "title": "Path to HTML file", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#static_templates", "pattern": "\\.html$" }, "uniqueItems": true, "minItems": 1 }, "language": { "title": "Site language", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-language/", "oneOf": [ { "title": "Site language: Custom", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-language/#custom-translations", "const": "custom" }, { "title": "Site language: Afrikaans", "const": "af" }, { "title": "Site language: Arabic", "const": "ar" }, { "title": "Site language: Bulgarian", "const": "bg" }, { "title": "Site language: Bengali (Bangla)", "const": "bn" }, { "title": "Site language: Catalan", "const": "ca" }, { "title": "Site language: Czech", "const": "cs" }, { "title": "Site language: Danish", "const": "da" }, { "title": "Site language: German", "const": "de" }, { "title": "Site language: Greek", "const": "el" }, { "title": "Site language: English", "const": "en" }, { "title": "Site language: Esperanto", "const": "eo" }, { "title": "Site language: Spanish", "const": "es" }, { "title": "Site language: Estonian", "const": "et" }, { "title": "Site language: Persian (Farsi)", "const": "fa" }, { "title": "Site language: Finnish", "const": "fi" }, { "title": "Site language: French", "const": "fr" }, { "title": "Site language: Galician", "const": "gl" }, { "title": "Site language: Hebrew", "const": "he" }, { "title": "Site language: Hindi", "const": "hi" }, { "title": "Site language: Croatian", "const": "hr" }, { "title": "Site language: Hungarian", "const": "hu" }, { "title": "Site language: Armenian", "const": "hy" }, { "title": "Site language: Indonesian", "const": "id" }, { "title": "Site language: Icelandic", "const": "is" }, { "title": "Site language: Italian", "const": "it" }, { "title": "Site language: Japanese", "const": "ja" }, { "title": "Site language: Georgian", "const": "ka" }, { "title": "Site language: Kannada", "const": "kn" }, { "title": "Site language: Korean", "const": "ko" }, { "title": "Site language: Lithuanian", "const": "lt" }, { "title": "Site language: Latvian", "const": "lv" }, { "title": "Site language: Macedonian", "const": "mk" }, { "title": "Site language: Mongolian", "const": "mn" }, { "title": "Site language: Bahasa Malaysia", "const": "ms" }, { "title": "Site language: Burmese", "const": "my" }, { "title": "Site language: Dutch", "const": "nl" }, { "title": "Site language: Norwegian (Bokmål)", "const": "nb" }, { "title": "Site language: Norwegian (Nynorsk)", "const": "nn" }, { "title": "Site language: Polish", "const": "pl" }, { "title": "Site language: Portuguese", "const": "pt" }, { "title": "Site language: Portuguese (Brasilian)", "const": "pt-BR" }, { "title": "Site language: Romanian", "const": "ro" }, { "title": "Site language: Russian", "const": "ru" }, { "title": "Site language: Sanskrit", "const": "sa" }, { "title": "Site language: Serbo-Croatian", "const": "sh" }, { "title": "Site language: Sinhalese", "const": "si" }, { "title": "Site language: Slovak", "const": "sk" }, { "title": "Site language: Slovenian", "const": "sl" }, { "title": "Site language: Albanian", "const": "sq" }, { "title": "Site language: Serbian", "const": "sr" }, { "title": "Site language: Swedish", "const": "sv" }, { "title": "Site language: Tamil", "const": "ta" }, { "title": "Site language: Telugu", "const": "te" }, { "title": "Site language: Thai", "const": "th" }, { "title": "Site language: Tagalog", "const": "tl" }, { "title": "Site language: Turkish", "const": "tr" }, { "title": "Site language: Ukrainian", "const": "uk" }, { "title": "Site language: Urdu", "const": "ur" }, { "title": "Site language: Uzbek", "const": "uz" }, { "title": "Site language: Vietnamese", "const": "vi" }, { "title": "Site language: Chinese (Simplified)", "const": "zh" }, { "title": "Site language: Chinese (Traditional)", "const": "zh-Hant" }, { "title": "Site language: Chinese (Taiwanese)", "const": "zh-TW" } ], "default": "en" }, "direction": { "title": "Directionality", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-language/#directionality", "enum": [ "ltr", "rtl" ] }, "favicon": { "title": "Favicon", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-logo-and-icons/#favicon", "pattern": "\\.(ico|png|svg|jpe?g|gif)$", "defaultSnippets": [ { "body": "${1:path/to/file}.png" } ] }, "logo": { "title": "Logo", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-logo-and-icons/#logo", "pattern": "\\.(png|svg|jpe?g|gif|webp)$", "defaultSnippets": [ { "body": "${1:path/to/file}.png" } ] }, "icon": { "title": "Icons", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-logo-and-icons/", "type": "object", "properties": { "edit": { "$ref": "#/$defs/icon" }, "view": { "$ref": "#/$defs/icon" }, "logo": { "$ref": "#/$defs/icon" }, "repo": { "$ref": "#/$defs/icon" }, "annotation": { "$ref": "#/$defs/icon" }, "top": { "$ref": "#/$defs/icon" }, "share": { "$ref": "#/$defs/icon" }, "menu": { "$ref": "#/$defs/icon" }, "alternate": { "$ref": "#/$defs/icon" }, "search": { "$ref": "#/$defs/icon" }, "close": { "$ref": "#/$defs/icon" }, "previous": { "$ref": "#/$defs/icon" }, "next": { "$ref": "#/$defs/icon" }, "admonition": { "title": "Admonition icon", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/reference/admonitions/#admonition-icons", "type": "object", "properties": { "note": { "$ref": "#/$defs/icon" }, "abstract": { "$ref": "#/$defs/icon" }, "info": { "$ref": "#/$defs/icon" }, "tip": { "$ref": "#/$defs/icon" }, "success": { "$ref": "#/$defs/icon" }, "question": { "$ref": "#/$defs/icon" }, "warning": { "$ref": "#/$defs/icon" }, "failure": { "$ref": "#/$defs/icon" }, "danger": { "$ref": "#/$defs/icon" }, "bug": { "$ref": "#/$defs/icon" }, "example": { "$ref": "#/$defs/icon" }, "quote": { "$ref": "#/$defs/icon" } }, "additionalProperties": false, "defaultSnippets": [ { "label": "note", "body": "note: ${1:material/pencil-circle}" }, { "label": "abstract", "body": "abstract: ${1:material/clipboard-text}" }, { "label": "info", "body": "info: ${1:material/information}" }, { "label": "tip", "body": "tip: ${1:material/fire}" }, { "label": "success", "body": "success: ${1:material/check}" }, { "label": "question", "body": "question: ${1:material/help-circle}" }, { "label": "warning", "body": "warning: ${1:material/alert}" }, { "label": "failure", "body": "failure: ${1:material/close}" }, { "label": "danger", "body": "danger: ${1:material/lightning-bolt-circle}" }, { "label": "bug", "body": "bug: ${1:material/shield-bug}" }, { "label": "example", "body": "example: ${1:material/test-tube}" }, { "label": "quote", "body": "quote: ${1:material/format-quote-close}" } ] }, "tag": { "title": "Tag icon", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-tags/#tag-icons-and-identifiers", "type": "object", "patternProperties": { "^[\\w-]+$": { "$ref": "#/$defs/icon" } }, "additionalProperties": false } }, "additionalProperties": false, "defaultSnippets": [ { "label": "edit", "body": "edit: ${1:material/pencil}" }, { "label": "logo", "body": "logo: ${1:material/library}" }, { "label": "repo", "body": "repo: ${1:fontawesome/brands/git-alt}" }, { "label": "top", "body": "top: ${1:material/arrow-up}" }, { "label": "menu", "body": "menu: ${1:material/menu}" }, { "label": "alternate", "body": "alternate: ${1:material/translate}" }, { "label": "share", "body": "share: ${1:material/share-variant}" }, { "label": "search", "body": "search: ${1:material/magnify}" }, { "label": "previous", "body": "previous: ${1:material/arrow-left}" }, { "label": "next", "body": "next: ${1:material/arrow-right}" } ] }, "features": { "title": "Feature flags", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/", "type": "array", "items": { "oneOf": [ { "title": "Mark as read", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-the-header/#mark-as-read", "const": "announce.dismiss" }, { "title": "Edit this page", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/adding-a-git-repository/#code-actions", "const": "content.action.edit" }, { "title": "View source of this page", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/adding-a-git-repository/#code-actions", "const": "content.action.view" }, { "title": "Code annotations", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/reference/code-blocks/#code-annotations", "const": "content.code.annotate" }, { "title": "Code copy button", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/reference/code-blocks/#code-copy-button", "const": "content.code.copy" }, { "title": "Code selection button", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/reference/code-blocks/#code-selection-button", "const": "content.code.select" }, { "title": "Footnote tooltips", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/reference/footnotes/#footnote-tooltips", "const": "content.footnote.tooltips" }, { "title": "Linked content tabs", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/reference/content-tabs/#linked-content-tabs", "const": "content.tabs.link" }, { "title": "Improved tooltips", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/reference/tooltips/#improved-tooltips", "const": "content.tooltips" }, { "title": "Header hides automatically when scrolling", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-the-header/#automatic-hiding", "const": "header.autohide" }, { "title": "Navigation expansion", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/#navigation-expansion", "const": "navigation.expand" }, { "title": "Navigation footer", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/#navigation-footer", "const": "navigation.footer" }, { "title": "Section index pages", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/#section-index-pages", "const": "navigation.indexes" }, { "title": "Instant loading", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/#instant-loading", "const": "navigation.instant" }, { "title": "Instant prefetching", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/#instant-prefetching", "const": "navigation.instant.prefetch" }, { "title": "Progress indicator", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/#progress-indicator", "const": "navigation.instant.progress" }, { "title": "Navigation path (Breadcrumbs)", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/#navigation-path", "const": "navigation.path" }, { "title": "Navigation pruning", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/#navigation-pruning", "const": "navigation.prune" }, { "title": "Navigation sections", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/#navigation-sections", "const": "navigation.sections" }, { "title": "Navigation tabs", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/#navigation-tabs", "const": "navigation.tabs" }, { "title": "Sticky navigation tabs", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/#sticky-navigation-tabs", "const": "navigation.tabs.sticky" }, { "title": "Back-to-top button", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/#back-to-top-button", "const": "navigation.top" }, { "title": "Anchor tracking", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/#anchor-tracking", "const": "navigation.tracking" }, { "title": "Search highlighting", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-search/#search-highlighting", "const": "search.highlight" }, { "title": "Search sharing", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-search/#search-sharing", "const": "search.share" }, { "title": "Search suggestions", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-search/#search-suggestions", "const": "search.suggest" }, { "title": "Integrated table of contents", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/#anchor-following", "const": "toc.follow" }, { "title": "Integrated table of contents", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/#navigation-integration", "const": "toc.integrate" } ] }, "uniqueItems": true, "minItems": 1 }, "palette": { "oneOf": [ { "title": "Color palette", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-colors/", "type": "object", "properties": { "scheme": { "$ref": "#/$defs/scheme" }, "primary": { "$ref": "#/$defs/primary" }, "accent": { "$ref": "#/$defs/accent" } }, "additionalProperties": false }, { "title": "Color palette", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-colors/", "type": "array", "items": { "type": "object", "properties": { "scheme": { "$ref": "#/$defs/scheme" }, "primary": { "$ref": "#/$defs/primary" }, "accent": { "$ref": "#/$defs/accent" }, "media": { "oneOf": [ { "title": "System preference", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-colors/#system-preference", "type": "string", "enum": [ "\"(prefers-color-scheme: light)\"", "\"(prefers-color-scheme: dark)\"" ] }, { "type": "string" } ], "defaultSnippets": [ { "label": "\"(prefers-color-scheme: light)\"", "body": "\"(prefers-color-scheme: ${1:light})\"" } ] }, "toggle": { "title": "Color palette toggle", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-colors/#color-palette-toggle", "properties": { "icon": { "$ref": "#/$defs/icon" }, "name": { "title": "Color palette toggle name", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-colors/#toggle-name", "type": "string" } }, "additionalProperties": false, "required": [ "icon", "name" ] } }, "additionalProperties": false, "required": [ "toggle" ] }, "uniqueItems": true, "minItems": 1 } ], "default": { "scheme": "default", "primary": "indigo", "accent": "indigo" } }, "font": { "oneOf": [ { "title": "Google Fonts", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-fonts/", "type": "object", "properties": { "text": { "$ref": "assets/fonts.json" }, "code": { "$ref": "assets/fonts.json" } }, "additionalProperties": false }, { "title": "Disable Google Fonts", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-fonts/#autoloading", "enum": [ false ] } ], "defaultSnippets": [ { "body": { "text": "${1:Roboto}", "code": "${2:Roboto Mono}" } } ] } }, "additionalProperties": false, "required": [ "name" ], "$defs": { "scheme": { "title": "Color scheme", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-colors/#color-scheme", "anyOf": [ { "enum": [ "default", "slate" ] }, { "type": "string" } ] }, "primary": { "title": "Primary color", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-colors/#primary-color", "enum": [ "red", "pink", "purple", "deep purple", "indigo", "blue", "light blue", "cyan", "teal", "green", "light green", "lime", "yellow", "amber", "orange", "deep orange", "brown", "grey", "blue grey", "black", "white", "custom" ] }, "accent": { "title": "Accent color", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-colors/#accent-color", "enum": [ "red", "pink", "purple", "deep purple", "indigo", "blue", "light blue", "cyan", "teal", "green", "light green", "lime", "yellow", "amber", "orange", "deep orange", "brown", "grey", "blue grey", "black", "white", "custom" ] }, "icon": { "anyOf": [ { "$ref": "assets/icons.json" }, { "title": "Unknown icon", "type": "string" } ] } } } �������������mkdocs-material-9.6.4/docs/schema/validation.json���������������������������������������������������0000664�0000000�0000000�00000004374�14753064456�0022051�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "$schema": "https://json-schema.org/draft-07/schema", "title": "Validation settings", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#validation", "type": "object", "properties": { "omitted_files": { "$ref": "#/$defs/omitted_files" }, "not_found": { "$ref": "#/$defs/not_found" }, "absolute_links": { "$ref": "#/$defs/absolute_links" }, "anchors": { "$ref": "#/$defs/anchors" }, "unrecognized_links": { "$ref": "#/$defs/unrecognized_links" }, "nav": { "title": "validation of navigation", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#validation", "properties": { "omitted_files": { "$ref": "#/$defs/omitted_files" }, "not_found": { "$ref": "#/$defs/not_found" }, "absolute_links": { "$ref": "#/$defs/absolute_links" } }, "additionalProperties": false }, "links": { "title": "Validation of links", "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#validation", "properties": { "anchors": { "$ref": "#/$defs/anchors" }, "not_found": { "$ref": "#/$defs/not_found" }, "absolute_links": { "$ref": "#/$defs/absolute_links" }, "unrecognized_links": { "$ref": "#/$defs/unrecognized_links" } }, "additionalProperties": false } }, "additionalProperties": false, "$defs": { "omitted_files": { "title": "warning level when files exist but are not referenced in navigation", "$ref": "#/$defs/warning_levels" }, "not_found": { "title": "warning level when file referenced is not found or is excluded", "$ref": "#/$defs/warning_levels" }, "absolute_links": { "title": "warning level when absolute links are used", "oneOf": [ { "$ref": "#/$defs/warning_levels" }, { "enum": ["relative_to_docs"] } ] }, "unrecognized_links": { "title": "warning level when a relative link cannot be resolved to a document", "$ref": "#/$defs/warning_levels" }, "anchors": { "title": "warning level when an #anchor does not exist on the linked document", "$ref": "#/$defs/warning_levels" }, "warning_levels": { "enum": ["warn", "info", "ignore"] } } } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/setup/�������������������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0016714�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/setup/adding-a-comment-system.md�����������������������������������������0000664�0000000�0000000�00000007245�14753064456�0023674�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Adding a comment system Material for MkDocs allows to easily add the third-party comment system of your choice to the footer of any page by using [theme extension]. As an example, we'll be integrating [Giscus], which is Open Source, free, and uses GitHub discussions as a backend. [Giscus]: https://giscus.app/ ## Customization ### Giscus integration Before you can use [Giscus], you need to complete the following steps: 1. __Install the [Giscus GitHub App]__ and grant access to the repository that should host comments as GitHub discussions. Note that this can be a repository different from your documentation. 2. __Visit [Giscus] and generate the snippet__ through their configuration tool to load the comment system. Copy the snippet for the next step. The resulting snippet should look similar to this: ``` html <script src="https://giscus.app/client.js" data-repo="<username>/<repository>" data-repo-id="..." data-category="..." data-category-id="..." data-mapping="pathname" data-reactions-enabled="1" data-emit-metadata="1" data-theme="light" data-lang="en" crossorigin="anonymous" async > </script> ``` The [`comments.html`][comments] partial (empty by default) is the best place to add the snippet generated by [Giscus]. Follow the guide on [theme extension] and [override the `comments.html` partial][overriding partials] with: ``` html hl_lines="3" {% if page.meta.comments %} <h2 id="__comments">{{ lang.t("meta.comments") }}</h2> <!-- Insert generated snippet here --> <!-- Synchronize Giscus theme with palette --> <script> var giscus = document.querySelector("script[src*=giscus]") // Set palette on initial load var palette = __md_get("__palette") if (palette && typeof palette.color === "object") { var theme = palette.color.scheme === "slate" ? "transparent_dark" : "light" // Instruct Giscus to set theme giscus.setAttribute("data-theme", theme) // (1)! } // Register event handlers after documented loaded document.addEventListener("DOMContentLoaded", function() { var ref = document.querySelector("[data-md-component=palette]") ref.addEventListener("change", function() { var palette = __md_get("__palette") if (palette && typeof palette.color === "object") { var theme = palette.color.scheme === "slate" ? "transparent_dark" : "light" // Instruct Giscus to change theme var frame = document.querySelector(".giscus-frame") frame.contentWindow.postMessage( { giscus: { setConfig: { theme } } }, "https://giscus.app" ) } }) }) </script> {% endif %} ``` 1. This code block ensures that [Giscus] renders with a dark theme when the palette is set to `slate`. Note that multiple dark themes are available, so you can change it to your liking. Replace the highlighted line with the snippet you generated with the [Giscus] configuration tool in the previous step. If you copied the snippet from above, you can enable comments on a page by setting the `comments` front matter property to `true`: ``` yaml --- comments: true --- # Page title ... ``` If you wish to enable comments for an entire folder, you can use the [built-in meta plugin]. [Giscus GitHub App]: https://github.com/apps/giscus [theme extension]: ../customization.md#extending-the-theme [comments]: https://github.com/squidfunk/mkdocs-material/blob/master/src/templates/partials/comments.html [overriding partials]: ../customization.md#overriding-partials [built-in meta plugin]: ../plugins/meta.md �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/setup/adding-a-git-repository.md�����������������������������������������0000664�0000000�0000000�00000026733�14753064456�0023713�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Adding a git repository If your documentation is related to source code, Material for MkDocs provides the ability to display information to the project's repository as part of the static site, including stars and forks. Furthermore, the [date of last update and creation], as well as [contributors] can be shown. ## Configuration ### Repository <!-- md:version 0.1.0 --> <!-- md:default none --> In order to display a link to the repository of your project as part of your documentation, set [`repo_url`][repo_url] in `mkdocs.yml` to the public URL of your repository, e.g.: ``` yaml repo_url: https://github.com/squidfunk/mkdocs-material ``` The link to the repository will be rendered next to the search bar on big screens and as part of the main navigation drawer on smaller screen sizes. Additionally, for public repositories hosted on [GitHub] or [GitLab], the latest release tag[^1], as well as the number of stars and forks, are automatically requested and rendered. [^1]: Unfortunately, GitHub only provides an API endpoint to obtain the [latest release] - not the latest tag. Thus, make sure to [create a release] (not pre-release) for the latest tag you want to display next to the number of stars and forks. For GitLab, although it is possible to get a [list of tags sorted by update time], the [equivalent API endpoint] is used. So, make sure you also [create a release for GitLab repositories]. [repo_url]: https://www.mkdocs.org/user-guide/configuration/#repo_url [latest release]: https://docs.github.com/en/rest/reference/releases#get-the-latest-release [create a release]: https://docs.github.com/en/repositories/releasing-projects-on-github/managing-releases-in-a-repository#creating-a-release [list of tags sorted by update time]: https://docs.gitlab.com/ee/api/tags.html#list-project-repository-tags [equivalent API endpoint]: https://docs.gitlab.com/ee/api/releases/#get-the-latest-release [create a release for GitLab repositories]: https://docs.gitlab.com/ee/user/project/releases/#create-a-release #### Repository name <!-- md:version 0.1.0 --> <!-- md:default _automatically set to_ `GitHub`, `GitLab` _or_ `Bitbucket` --> MkDocs will infer the source provider by examining the URL and try to set the _repository name_ automatically. If you wish to customize the name, set [`repo_name`][repo_name] in `mkdocs.yml`: ``` yaml repo_name: squidfunk/mkdocs-material ``` [repo_name]: https://www.mkdocs.org/user-guide/configuration/#repo_name #### Repository icon <!-- md:version 5.0.0 --> <!-- md:default computed --> While the default repository icon is a generic git icon, it can be set to any icon bundled with the theme by referencing a valid icon path in `mkdocs.yml`: ``` yaml theme: icon: repo: fontawesome/brands/git-alt # (1)! ``` 1. Enter a few keywords to find the perfect icon using our [icon search] and click on the shortcode to copy it to your clipboard: <div class="mdx-iconsearch" data-mdx-component="iconsearch"> <input class="md-input md-input--stretch mdx-iconsearch__input" placeholder="Search icon" data-mdx-component="iconsearch-query" value="git" /> <div class="mdx-iconsearch-result" data-mdx-component="iconsearch-result" data-mdx-mode="file"> <div class="mdx-iconsearch-result__meta"></div> <ol class="mdx-iconsearch-result__list"></ol> </div> </div> Some popular choices: - :fontawesome-brands-git: – `fontawesome/brands/git` - :fontawesome-brands-git-alt: – `fontawesome/brands/git-alt` - :fontawesome-brands-github: – `fontawesome/brands/github` - :fontawesome-brands-github-alt: – `fontawesome/brands/github-alt` - :fontawesome-brands-gitlab: – `fontawesome/brands/gitlab` - :fontawesome-brands-gitkraken: – `fontawesome/brands/gitkraken` - :fontawesome-brands-bitbucket: – `fontawesome/brands/bitbucket` - :fontawesome-solid-trash: – `fontawesome/solid/trash` [icon search]: ../reference/icons-emojis.md#search #### Code actions <!-- md:version 9.0.0 --> <!-- md:feature --> If the [repository URL] points to a valid [GitHub], [GitLab] or [Bitbucket] repository, [MkDocs] provides a setting called [`edit_uri`][edit_uri], which resolves to the subfolder where your documentation is hosted. If your default branch is called `main`, change the setting to: ``` yaml edit_uri: edit/main/docs/ ``` After making sure that `edit_uri` is correctly configured, buttons for code actions can be added. Two types of code actions are supported: `edit` and `view` (GitHub only): === ":material-file-edit-outline: Edit this page" ``` yaml theme: features: - content.action.edit ``` === ":material-file-eye-outline: View source of this page" ``` yaml theme: features: - content.action.view ``` The icon of the edit and view buttons can be changed with the following lines: ``` yaml theme: icon: edit: material/pencil # (1)! view: material/eye ``` 1. Enter a few keywords to find the perfect icon using our [icon search] and click on the shortcode to copy it to your clipboard: <div class="mdx-iconsearch" data-mdx-component="iconsearch"> <input class="md-input md-input--stretch mdx-iconsearch__input" placeholder="Search icon" data-mdx-component="iconsearch-query" value="material pencil" /> <div class="mdx-iconsearch-result" data-mdx-component="iconsearch-result" data-mdx-mode="file"> <div class="mdx-iconsearch-result__meta"></div> <ol class="mdx-iconsearch-result__list"></ol> </div> </div> [repository URL]: #repository [GitHub]: https://github.com/ [GitLab]: https://about.gitlab.com/ [Bitbucket]: https://bitbucket.org/ [MkDocs]: https://www.mkdocs.org [edit_uri]: https://www.mkdocs.org/user-guide/configuration/#edit_uri ### Revisioning The following plugins are fully integrated with Material for MkDocs, allowing for showing the [date of last update and creation] of a document, as well as links to all [contributors] or [authors] involved. [date of last update and creation]: #document-dates [contributors]: #document-contributors [authors]: #document-authors #### Document dates <!-- md:version 4.6.0 --> <!-- md:plugin [git-revision-date-localized] --> The [git-revision-date-localized] plugin adds support for adding the date of last update and creation of a document at the bottom of each page. Install it with `pip`: ``` pip install mkdocs-git-revision-date-localized-plugin ``` Then, add the following lines to `mkdocs.yml`: ``` yaml plugins: - git-revision-date-localized: enable_creation_date: true ``` The following configuration options are supported: <!-- md:option git-revision-date-localized.enabled --> : <!-- md:default `true` --> This option specifies whether the plugin is enabled when building your project. If you want to switch the plugin off, e.g. for local builds, use an [environment variable]: ``` yaml plugins: - git-revision-date-localized: enabled: !ENV [CI, false] ``` <!-- md:option git-revision-date-localized.type --> : <!-- md:default `date` --> The format of the date to be displayed. Valid values are `date`, `datetime`, `iso_date`, `iso_datetime` and `timeago`: ``` yaml plugins: - git-revision-date-localized: type: date ``` <!-- md:option git-revision-date-localized.enable_creation_date --> : <!-- md:default `false` --> Enables the display of the creation date of the file associated with the page next to the last updated date at the bottom of the page: ``` yaml plugins: - git-revision-date-localized: enable_creation_date: true ``` !!! note "When using build environments" If you are deploying through a CI system, you might need to adjust your CI settings when fetching the code. For more information, see [git-revision-date-localized]. <!-- md:option git-revision-date-localized.fallback_to_build_date --> : <!-- md:default `false` --> Enables falling back to the time when `mkdocs build` was executed. Can be used as a fallback when the build is performed outside of a git repository: ``` yaml plugins: - git-revision-date-localized: fallback_to_build_date: true ``` The other configuration options of this extension are not officially supported by Material for MkDocs, which is why they may yield unexpected results. Use them at your own risk. [git-revision-date-localized]: https://github.com/timvink/mkdocs-git-revision-date-localized-plugin #### Document contributors <!-- md:version 9.5.0 --> <!-- md:plugin [git-committers] --> <!-- md:flag experimental --> The [git-committers][^2] plugin renders the GitHub avatars of all contributors, linking to their GitHub profiles at the bottom of each page. As always, it can be installed with `pip`: [^2]: We currently recommend using a fork of the [git-committers] plugin, as it contains many improvements that have not yet been merged back into the original plugin. See byrnereese/mkdocs-git-committers-plugin#12 for more information. ``` pip install mkdocs-git-committers-plugin-2 ``` Then, add the following lines to `mkdocs.yml`: ``` yaml plugins: - git-committers: repository: squidfunk/mkdocs-material branch: main ``` The following configuration options are supported: <!-- md:option git-committers.enabled --> : <!-- md:default `true` --> This option specifies whether the plugin is enabled when building your project. If you want to switch the plugin off, e.g. for local builds, use an [environment variable]: ``` yaml plugins: - git-committers: enabled: !ENV [CI, false] ``` <!-- md:option git-committers.repository --> : <!-- md:default none --> <!-- md:flag required --> This property must be set to the slug of the repository that contains your documentation. The slug must follow the pattern `<username>/<repository>`: ``` yaml plugins: - git-committers: repository: squidfunk/mkdocs-material ``` <!-- md:option git-committers.branch --> : <!-- md:default `master` --> This property should be set to the branch of the repository from which to retrieve the contributors. To use the `main` branch: ``` yaml plugins: - git-committers: branch: main ``` The other configuration options of this extension are not officially supported by Material for MkDocs, which is why they may yield unexpected results. Use them at your own risk. [Insiders]: ../insiders/index.md [git-committers]: https://github.com/ojacques/mkdocs-git-committers-plugin-2 [environment variable]: https://www.mkdocs.org/user-guide/configuration/#environment-variables [rate limits]: https://docs.github.com/en/rest/overview/resources-in-the-rest-api#rate-limiting #### Document authors <!-- md:version 9.5.0 --> <!-- md:plugin [git-authors] --> <!-- md:flag experimental --> The [git-authors] plugin is a lightweight alternative to the [git-committers] plugin and extracts the authors of a document from git to display them at the bottom of each page. Material for MkDocs offers deep integration for [git-authors]. This means the [customized overrides](https://timvink.github.io/mkdocs-git-authors-plugin/usage.html#mkdocs-material-theme) are not necessary, and additional styling (such as nice icons) are added. Simply install it with `pip`: ``` pip install mkdocs-git-authors-plugin ``` Then, add the following lines to `mkdocs.yml`: ``` yaml plugins: - git-authors ``` [git-authors]: https://github.com/timvink/mkdocs-git-authors-plugin/ �������������������������������������mkdocs-material-9.6.4/docs/setup/building-an-optimized-site.md��������������������������������������0000664�0000000�0000000�00000006113�14753064456�0024374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Building an optimized site Material for MkDocs, by default, allows to build optimized sites that rank great on search engines, load fast (even on slow networks), and work perfectly without JavaScript. Additionally, the [built-in optimize plugin] adds support for further useful automatic optimization techniques. [built-in optimize plugin]: #built-in-optimize-plugin ## Configuration ### Built-in projects plugin <!-- md:sponsors --> <!-- md:version insiders-4.38.0 --> <!-- md:plugin [projects] – built-in --> <!-- md:flag experimental --> The built-in projects plugin allows to split your documentation into multiple distinct MkDocs projects, __build them concurrently__ and __serve them together__. Add the following to `mkdocs.yml`: ``` yaml plugins: - projects ``` For a list of all settings, please consult the [plugin documentation]. [projects]: ../plugins/projects.md [plugin documentation]: ../plugins/projects.md ??? info "Use cases for the projects plugin" Ideal use cases for the projects plugin are: - Building a multi-language site - Building a blog alongside your documentation - Splitting large code bases for better performance Note that the plugin is currently experimental. We're releasing it early, so that we can improve it together with our users and make it even more powerful as we discover new use cases. #### Scope <!-- md:version 8.0.0 --> <!-- md:default none --> There might be a use case, where you want to share user-level settings like the selected [color palette], or [cookie consent] across all projects. To do so, add the following lines to `mkdocs.yml`: ``` yaml extra: scope: / ``` !!! example "How it works" Suppose you have this site structure: ``` . └── / ├── subsite-a/ ├── subsite-b/ └── subsite-c/ ``` By default, each site will have its own scope (`/subsite-a/`, `/subsite-b/`, `/subsite-c/`). To modify this behaviour, add the following lines to `mkdocs.yml`: ``` yaml extra: scope: / ``` By setting it to `/`, it should allow you to share the following preferences across the main site and all subsites: - [Cookie consent][cookie consent] - [Linking of content tabs, i.e. active tab] - [Color palette][color palette] [Scope support]: https://github.com/squidfunk/mkdocs-material/releases/tag/8.0.0 [cookie consent]: ../setup/ensuring-data-privacy.md#cookie-consent [Linking of content tabs, i.e. active tab]: ../reference/content-tabs.md [color palette]: ../setup/changing-the-colors.md#color-palette ### Built-in optimize plugin <!-- md:sponsors --> <!-- md:version insiders-4.29.0 --> <!-- md:plugin [optimize] – built-in --> <!-- md:flag experimental --> The built-in optimize plugin automatically identifies and optimizes all media files as part of the build using compression and conversion techniques. Add the following lines to `mkdocs.yml`: ``` yaml plugins: - optimize ``` For a list of all settings, please consult the [plugin documentation][optimize]. [optimize]: ../plugins/optimize.md �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/setup/building-for-offline-usage.md��������������������������������������0000664�0000000�0000000�00000003605�14753064456�0024345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Building for offline usage If you want to ship your documentation together with your product, MkDocs has you covered – with support from themes, [MkDocs] allows for building offline-capable documentation. Notably, Material for MkDocs offers offline support for many of its features. [MkDocs]: https://www.mkdocs.org ## Configuration ### Built-in offline plugin <!-- md:version 9.0.0 --> <!-- md:plugin [offline] – built-in --> The built-in offline plugin makes sure that the [site search] works when you distribute the contents of your [site directory] as a download. Simply add the following lines to `mkdocs.yml`: ``` yaml plugins: - offline ``` For a list of all settings, please consult the [plugin documentation]. [offline]: ../plugins/offline.md [plugin documentation]: ../plugins/offline.md !!! tip "Automatically bundle all external assets" The [built-in privacy plugin] makes it easy to use external assets while building documentation for offline usage, as it will automatically download all external assets to distribute them with your documentation. [site search]: setting-up-site-search.md [site directory]: https://www.mkdocs.org/user-guide/configuration/#site_dir [built-in privacy plugin]:../plugins/privacy.md #### Limitations Material for MkDocs offers many interactive features, some of which will not work from the file system due to the restrictions of modern browsers: all features that use the `fetch` API will error. Thus, when building for offline usage, make sure to disable the following configuration settings: [instant loading], [site analytics], [git repository], [versioning] and [comment systems]. [Instant loading]: setting-up-navigation.md#instant-loading [Site analytics]: setting-up-site-analytics.md [Versioning]: setting-up-versioning.md [Git repository]: adding-a-git-repository.md [Comment systems]: adding-a-comment-system.md ���������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/setup/changing-the-colors.md���������������������������������������������0000664�0000000�0000000�00000033043�14753064456�0023074�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Changing the colors As any proper Material Design implementation, Material for MkDocs supports Google's original [color palette], which can be easily configured through `mkdocs.yml`. Furthermore, colors can be customized with a few lines of CSS to fit your brand's identity by using [CSS variables][custom colors]. [color palette]: http://www.materialui.co/colors [custom colors]: #custom-colors ## Configuration ### Color palette #### Color scheme <!-- md:version 5.2.0 --> <!-- md:default `default` --> Material for MkDocs supports two color schemes: a __light mode__, which is just called `default`, and a __dark mode__, which is called `slate`. The color scheme can be set via `mkdocs.yml`: ``` yaml theme: palette: scheme: default ``` Click on a tile to change the color scheme: <div class="mdx-switch"> <button data-md-color-scheme="default"><code>default</code></button> <button data-md-color-scheme="slate"><code>slate</code></button> </div> <script> var buttons = document.querySelectorAll("button[data-md-color-scheme]") buttons.forEach(function(button) { button.addEventListener("click", function() { document.body.setAttribute("data-md-color-switching", "") var attr = this.getAttribute("data-md-color-scheme") document.body.setAttribute("data-md-color-scheme", attr) var name = document.querySelector("#__code_0 code span.l") name.textContent = attr setTimeout(function() { document.body.removeAttribute("data-md-color-switching") }) }) }) </script> #### Primary color <!-- md:version 0.2.0 --> <!-- md:default `indigo` --> The primary color is used for the header, the sidebar, text links and several other components. In order to change the primary color, set the following value in `mkdocs.yml` to a valid color name: ``` yaml theme: palette: primary: indigo ``` Click on a tile to change the primary color: <div class="mdx-switch"> <button data-md-color-primary="red"><code>red</code></button> <button data-md-color-primary="pink"><code>pink</code></button> <button data-md-color-primary="purple"><code>purple</code></button> <button data-md-color-primary="deep-purple"><code>deep purple</code></button> <button data-md-color-primary="indigo"><code>indigo</code></button> <button data-md-color-primary="blue"><code>blue</code></button> <button data-md-color-primary="light-blue"><code>light blue</code></button> <button data-md-color-primary="cyan"><code>cyan</code></button> <button data-md-color-primary="teal"><code>teal</code></button> <button data-md-color-primary="green"><code>green</code></button> <button data-md-color-primary="light-green"><code>light green</code></button> <button data-md-color-primary="lime"><code>lime</code></button> <button data-md-color-primary="yellow"><code>yellow</code></button> <button data-md-color-primary="amber"><code>amber</code></button> <button data-md-color-primary="orange"><code>orange</code></button> <button data-md-color-primary="deep-orange"><code>deep orange</code></button> <button data-md-color-primary="brown"><code>brown</code></button> <button data-md-color-primary="grey"><code>grey</code></button> <button data-md-color-primary="blue-grey"><code>blue grey</code></button> <button data-md-color-primary="black"><code>black</code></button> <button data-md-color-primary="white"><code>white</code></button> </div> <script> var buttons = document.querySelectorAll("button[data-md-color-primary]") buttons.forEach(function(button) { button.addEventListener("click", function() { var attr = this.getAttribute("data-md-color-primary") document.body.setAttribute("data-md-color-primary", attr) var name = document.querySelector("#__code_1 code span.l") name.textContent = attr.replace("-", " ") }) }) </script> See our guide below to learn how to set [custom colors]. #### Accent color <!-- md:version 0.2.0 --> <!-- md:default `indigo` --> The accent color is used to denote elements that can be interacted with, e.g. hovered links, buttons and scrollbars. It can be changed in `mkdocs.yml` by choosing a valid color name: ``` yaml theme: palette: accent: indigo ``` Click on a tile to change the accent color: <style> .md-typeset button[data-md-color-accent] > code { background-color: var(--md-code-bg-color); color: var(--md-accent-fg-color); } </style> <div class="mdx-switch"> <button data-md-color-accent="red"><code>red</code></button> <button data-md-color-accent="pink"><code>pink</code></button> <button data-md-color-accent="purple"><code>purple</code></button> <button data-md-color-accent="deep-purple"><code>deep purple</code></button> <button data-md-color-accent="indigo"><code>indigo</code></button> <button data-md-color-accent="blue"><code>blue</code></button> <button data-md-color-accent="light-blue"><code>light blue</code></button> <button data-md-color-accent="cyan"><code>cyan</code></button> <button data-md-color-accent="teal"><code>teal</code></button> <button data-md-color-accent="green"><code>green</code></button> <button data-md-color-accent="light-green"><code>light green</code></button> <button data-md-color-accent="lime"><code>lime</code></button> <button data-md-color-accent="yellow"><code>yellow</code></button> <button data-md-color-accent="amber"><code>amber</code></button> <button data-md-color-accent="orange"><code>orange</code></button> <button data-md-color-accent="deep-orange"><code>deep orange</code></button> </div> <script> var buttons = document.querySelectorAll("button[data-md-color-accent]") buttons.forEach(function(button) { button.addEventListener("click", function() { var attr = this.getAttribute("data-md-color-accent") document.body.setAttribute("data-md-color-accent", attr) var name = document.querySelector("#__code_2 code span.l") name.textContent = attr.replace("-", " ") }) }) </script> See our guide below to learn how to set [custom colors]. ### Color palette toggle <!-- md:version 7.1.0 --> <!-- md:default none --> <!-- md:example color-palette-toggle --> Offering a light _and_ dark color palette makes your documentation pleasant to read at different times of the day, so the user can choose accordingly. Add the following lines to `mkdocs.yml`: ``` yaml theme: palette: # (1)! # Palette toggle for light mode - scheme: default toggle: icon: material/brightness-7 # (2)! name: Switch to dark mode # Palette toggle for dark mode - scheme: slate toggle: icon: material/brightness-4 name: Switch to light mode ``` 1. Note that the `theme.palette` setting is now defined as a list. 2. Enter a few keywords to find the perfect icon using our [icon search] and click on the shortcode to copy it to your clipboard: <div class="mdx-iconsearch" data-mdx-component="iconsearch"> <input class="md-input md-input--stretch mdx-iconsearch__input" placeholder="Search icon" data-mdx-component="iconsearch-query" value="brightness" /> <div class="mdx-iconsearch-result" data-mdx-component="iconsearch-result" data-mdx-mode="file"> <div class="mdx-iconsearch-result__meta"></div> <ol class="mdx-iconsearch-result__list"></ol> </div> </div> This configuration will render a color palette toggle next to the search bar. Note that you can also define separate settings for [`primary`][palette.primary] and [`accent`][palette.accent] per color palette. The following properties must be set for each toggle: <!-- md:option palette.toggle.icon --> : <!-- md:default none --> <!-- md:flag required --> This property must point to a valid icon path referencing any icon bundled with the theme, or the build will not succeed. Some popular combinations: * :material-brightness-7: + :material-brightness-4: – `material/brightness-7` + `material/brightness-4` * :material-toggle-switch: + :material-toggle-switch-off-outline: – `material/toggle-switch` + `material/toggle-switch-off-outline` * :material-weather-night: + :material-weather-sunny: – `material/weather-night` + `material/weather-sunny` * :material-eye: + :material-eye-outline: – `material/eye` + `material/eye-outline` * :material-lightbulb: + :material-lightbulb-outline: – `material/lightbulb` + `material/lightbulb-outline` <!-- md:option palette.toggle.name --> : <!-- md:default none --> <!-- md:flag required --> This property is used as the toggle's `title` attribute and should be set to a discernable name to improve accessibility. It's rendered as a [tooltip]. [palette.scheme]: #color-scheme [palette.primary]: #primary-color [palette.accent]: #accent-color [icon search]: ../reference/icons-emojis.md#search [tooltip]: ../reference/tooltips.md ### System preference <!-- md:version 7.1.0 --> <!-- md:default none --> <!-- md:example color-palette-system-preference --> Each color palette can be linked to the user's system preference for light and dark appearance by using a media query. Simply add a `media` property next to the `scheme` definition in `mkdocs.yml`: ``` yaml theme: palette: # Palette toggle for light mode - media: "(prefers-color-scheme: light)" scheme: default toggle: icon: material/brightness-7 name: Switch to dark mode # Palette toggle for dark mode - media: "(prefers-color-scheme: dark)" scheme: slate toggle: icon: material/brightness-4 name: Switch to light mode ``` When the user first visits your site, the media queries are evaluated in the order of their definition. The first media query that matches selects the default color palette. #### Automatic light / dark mode <!-- md:version 9.5.0 --> <!-- md:flag experimental --> <!-- md:example color-palette-system-preference --> Newer operating systems allow to automatically switch between light and dark appearance during day and night times. Material for MkDocs adds support for automatic light / dark mode, delegating color palette selection to the user's operating system. Add the following lines to `mkdocs.yml`: ``` yaml theme: palette: # Palette toggle for automatic mode - media: "(prefers-color-scheme)" toggle: icon: material/brightness-auto name: Switch to light mode # Palette toggle for light mode - media: "(prefers-color-scheme: light)" scheme: default # (1)! toggle: icon: material/brightness-7 name: Switch to dark mode # Palette toggle for dark mode - media: "(prefers-color-scheme: dark)" scheme: slate toggle: icon: material/brightness-4 name: Switch to system preference ``` 1. You can also define separate settings for [`primary`][palette.primary] and [`accent`][palette.accent] per color palette, i.e. different colors for light and dark mode. Material for MkDocs will now change the color palette each time the operating system switches between light and dark appearance, even when the user doesn't reload the site. [Insiders]: ../insiders/index.md ## Customization ### Custom colors <!-- md:version 5.0.0 --> <!-- md:example custom-colors --> Material for MkDocs implements colors using [CSS variables] (custom properties). If you want to customize the colors beyond the palette (e.g. to use your brand-specific colors), you can add an [additional style sheet] and tweak the values of the CSS variables. First, set the [`primary`][palette.primary] or [`accent`][palette.accent] values in `mkdocs.yml` to `custom`, to signal to the theme that you want to define custom colors, e.g., when you want to override the `primary` color: ``` yaml theme: palette: primary: custom ``` Let's say you're :fontawesome-brands-youtube:{ style="color: #EE0F0F" } __YouTube__, and want to set the primary color to your brand's palette. Just add: === ":octicons-file-code-16: `docs/stylesheets/extra.css`" ``` css :root > * { --md-primary-fg-color: #EE0F0F; --md-primary-fg-color--light: #ECB7B7; --md-primary-fg-color--dark: #90030C; } ``` === ":octicons-file-code-16: `mkdocs.yml`" ``` yaml extra_css: - stylesheets/extra.css ``` See the file containing the [color definitions] for a list of all CSS variables. [CSS variables]: https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties [color definitions]: https://github.com/squidfunk/mkdocs-material/blob/master/src/templates/assets/stylesheets/main/_colors.scss [additional style sheet]: ../customization.md#additional-css ### Custom color schemes Besides overriding specific colors, you can create your own, named color scheme by wrapping the definitions in a `[data-md-color-scheme="..."]` [attribute selector], which you can then set via `mkdocs.yml` as described in the [color schemes][palette.scheme] section: === ":octicons-file-code-16: `docs/stylesheets/extra.css`" ``` css [data-md-color-scheme="youtube"] { --md-primary-fg-color: #EE0F0F; --md-primary-fg-color--light: #ECB7B7; --md-primary-fg-color--dark: #90030C; } ``` === ":octicons-file-code-16: `mkdocs.yml`" ``` yaml theme: palette: scheme: youtube extra_css: - stylesheets/extra.css ``` Additionally, the `slate` color scheme defines all of it's colors via `hsla` color functions and deduces its colors from the `--md-hue` CSS variable. You can tune the `slate` theme with: ``` css [data-md-color-scheme="slate"] { --md-hue: 210; /* (1)! */ } ``` 1. The `hue` value must be in the range of `[0, 360]` [attribute selector]: https://www.w3.org/TR/selectors-4/#attribute-selectors ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/setup/changing-the-fonts.md����������������������������������������������0000664�0000000�0000000�00000005544�14753064456�0022731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Changing the fonts Material for MkDocs makes it easy to change the typeface of your project documentation, as it directly integrates with [Google Fonts]. Alternatively, fonts can be custom-loaded if self-hosting is preferred for data privacy reasons or another destination should be used. [Google Fonts]: https://fonts.google.com ## Configuration ### Regular font <!-- md:version 0.1.2 --> <!-- md:default [`Roboto`][Roboto] --> The regular font is used for all body copy, headlines, and essentially everything that does not need to be monospaced. It can be set to any valid [Google Font][Google Fonts] via `mkdocs.yml`: ``` yaml theme: font: text: Roboto ``` The typeface will be loaded in 300, 400, _400i_ and __700__. [Roboto]: https://fonts.google.com/specimen/Roboto ### Monospaced font <!-- md:version 0.1.2 --> <!-- md:default [`Roboto Mono`][Roboto Mono] --> The _monospaced font_ is used for code blocks and can be configured separately. Just like the regular font, it can be set to any valid [Google Font] [Google Fonts] via `mkdocs.yml`: ``` yaml theme: font: code: Roboto Mono ``` The typeface will be loaded in 400. [Roboto Mono]: https://fonts.google.com/specimen/Roboto+Mono ### Autoloading <!-- md:version 1.0.0 --> <!-- md:default none --> If you want to prevent typefaces from being loaded from [Google Fonts], e.g. to adhere to [data privacy] regulations, and fall back to system fonts, add the following lines to `mkdocs.yml`: ``` yaml theme: font: false ``` !!! tip "Automatically bundle Google Fonts" The [built-in privacy plugin] makes it easy to use Google Fonts while complying with the __General Data Protection Regulation__ (GDPR), by automatically downloading and self-hosting the web font files. [data privacy]: https://developers.google.com/fonts/faq/privacy [built-in privacy plugin]:../plugins/privacy.md ## Customization ### Additional fonts If you want to load an (additional) font from another destination or override the system font, you can use an [additional style sheet] to add the corresponding `@font-face` definition: === ":octicons-file-code-16: `docs/stylesheets/extra.css`" ``` css @font-face { font-family: "<font>"; src: "..."; } ``` === ":octicons-file-code-16: `mkdocs.yml`" ``` yaml extra_css: - stylesheets/extra.css ``` The font can then be applied to specific elements, e.g. only headlines, or globally to be used as the site-wide regular or monospaced font: === "Regular font" ``` css :root { --md-text-font: "<font>"; /* (1)! */ } ``` 1. Always define fonts through CSS variables and not `font-family`, as this would disable the system font fallback. === "Monospaced font" ``` css :root { --md-code-font: "<font>"; } ``` [additional style sheet]: ../customization.md#additional-css ������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/setup/changing-the-language.md�������������������������������������������0000664�0000000�0000000�00000015405�14753064456�0023360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Changing the language Material for MkDocs supports internationalization (i18n) and provides translations for template variables and labels in 60+ languages. Additionally, the site search can be configured to use a language-specific stemmer, if available. ## Configuration ### Site language <!-- md:version 1.12.0 --> <!-- md:default `en` --> You can set the site language in `mkdocs.yml` with: ``` yaml theme: language: en # (1)! ``` 1. HTML5 only allows to set a [single language per document], which is why Material for MkDocs only supports setting a canonical language for the entire project, i.e. one per `mkdocs.yml`. The easiest way to build a multi-language documentation is to create one project in a subfolder per language, and then use the [language selector] to interlink those projects. The following languages are supported: <!-- hooks/translations.py --> Note that some languages will produce unreadable anchor links due to the way the default slug function works. Consider using a [Unicode-aware slug function]. !!! tip "Translations missing? Help us out, it takes only 5 minutes" Material for MkDocs relies on outside contributions for adding and updating translations for the more than 60 languages it supports. If your language shows that some translations are missing, click on the link to add them. If your language is not in the list, click here to [add a new language]. [single language per document]: https://www.w3.org/International/questions/qa-html-language-declarations.en#attributes [language selector]: #site-language-selector [Unicode-aware slug function]: extensions/python-markdown.md#+toc.slugify [add a new language]: https://github.com/squidfunk/mkdocs-material/issues/new?template=04-add-a-translation.yml&title=Add+translations+for+... ### Site language selector <!-- md:version 7.0.0 --> <!-- md:default none --> If your documentation is available in multiple languages, a language selector pointing to those languages can be added to the header. Alternate languages can be defined via `mkdocs.yml`. ``` yaml extra: alternate: - name: English link: /en/ # (1)! lang: en - name: Deutsch link: /de/ lang: de ``` 1. Note that this must be an absolute link. If it includes a domain part, it's used as defined. Otherwise the domain part of the [`site_url`][site_url] as set in `mkdocs.yml` is prepended to the link. The following properties are available for each alternate language: <!-- md:option alternate.name --> : <!-- md:default none --> <!-- md:flag required --> This value of this property is used inside the language selector as the name of the language and must be set to a non-empty string. <!-- md:option alternate.link --> : <!-- md:default none --> <!-- md:flag required --> This property must be set to an absolute link, which might also point to another domain or subdomain not necessarily generated with MkDocs. <!-- md:option alternate.lang --> : <!-- md:default none --> <!-- md:flag required --> This property must contain an [ISO 639-1 language code] and is used for the `hreflang` attribute of the link, improving discoverability via search engines. [![Language selector preview]][Language selector preview] [site_url]: https://www.mkdocs.org/user-guide/configuration/#site_url [ISO 639-1 language code]: https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes [Language selector preview]: ../assets/screenshots/language-selection.png #### Stay on page <!-- md:sponsors --> <!-- md:version insiders-4.47.0 --> <!-- md:flag experimental --> [Insiders] improves the user experience when switching between languages, e.g., if language `en` and `de` contain a page with the same path name, the user will stay on the current page: === "Insiders" ``` docs.example.com/en/ -> docs.example.com/de/ docs.example.com/en/foo/ -> docs.example.com/de/foo/ docs.example.com/en/bar/ -> docs.example.com/de/bar/ ``` === "Material for MkDocs" ``` docs.example.com/en/ -> docs.example.com/de/ docs.example.com/en/foo/ -> docs.example.com/de/ docs.example.com/en/bar/ -> docs.example.com/de/ ``` No configuration is necessary. We're working hard on improving multi-language support in 2024, including making switching between languages even more seamless in the future. [Insiders]: ../insiders/index.md ### Directionality <!-- md:version 2.5.0 --> <!-- md:default computed --> While many languages are read `ltr` (left-to-right), Material for MkDocs also supports `rtl` (right-to-left) directionality which is deduced from the selected language, but can also be set with: ``` yaml theme: direction: ltr ``` Click on a tile to change the directionality: <div class="mdx-switch"> <button data-md-dir="ltr"><code>ltr</code></button> <button data-md-dir="rtl"><code>rtl</code></button> </div> <script> var buttons = document.querySelectorAll("button[data-md-dir]") buttons.forEach(function(button) { button.addEventListener("click", function() { var attr = this.getAttribute("data-md-dir") document.body.dir = attr var name = document.querySelector("#__code_2 code span.l") name.textContent = attr }) }) </script> ## Customization ### Custom translations If you want to customize some of the translations for a language, just follow the guide on [theme extension] and create a new partial in the `overrides` folder. Then, import the [translations] of the language as a fallback and only adjust the ones you want to override: === ":octicons-file-code-16: `overrides/partials/languages/custom.html`" ``` html <!-- Import translations for language and fallback --> {% import "partials/languages/de.html" as language %} {% import "partials/languages/en.html" as fallback %} <!-- (1)! --> <!-- Define custom translations --> {% macro override(key) %}{{ { "source.file.date.created": "Erstellt am", <!-- (2)! --> "source.file.date.updated": "Aktualisiert am" }[key] }}{% endmacro %} <!-- Re-export translations --> {% macro t(key) %}{{ override(key) or language.t(key) or fallback.t(key) }}{% endmacro %} ``` 1. Note that `en` must always be used as a fallback language, as it's the default theme language. 2. Check the [list of available languages], pick the translation you want to override for your language and add them here. === ":octicons-file-code-16: `mkdocs.yml`" ``` yaml theme: language: custom ``` [theme extension]: ../customization.md#extending-the-theme [translations]: https://github.com/squidfunk/mkdocs-material/blob/master/src/templates/partials/languages/ [list of available languages]: https://github.com/squidfunk/mkdocs-material/blob/master/src/templates/partials/languages/ �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/setup/changing-the-logo-and-icons.md�������������������������������������0000664�0000000�0000000�00000014065�14753064456�0024407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Changing the logo and icons When installing Material for MkDocs, you immediately get access to _over 8,000 icons_ ready to be used for customization of specific parts of the theme and/or when writing your documentation in Markdown. Not enough? You can also add [additional icons] with minimal effort. [additional icons]: #additional-icons ## Configuration ### Logo <!-- md:version 0.1.0 --> <!-- md:default `material/library` --> The logo can be changed to a user-provided image (any type, incl. `*.png` and `*.svg`) located in the `docs` folder, or to any icon bundled with the theme. Add the following lines to `mkdocs.yml`: === ":octicons-image-16: Image" ``` yaml theme: logo: assets/logo.png ``` === ":octicons-package-16: Icon, bundled" ``` yaml theme: icon: logo: material/library # (1)! ``` 1. Enter a few keywords to find the perfect icon using our [icon search] and click on the shortcode to copy it to your clipboard: <div class="mdx-iconsearch" data-mdx-component="iconsearch"> <input class="md-input md-input--stretch mdx-iconsearch__input" placeholder="Search icon" data-mdx-component="iconsearch-query" value="material library" /> <div class="mdx-iconsearch-result" data-mdx-component="iconsearch-result" data-mdx-mode="file"> <div class="mdx-iconsearch-result__meta"></div> <ol class="mdx-iconsearch-result__list"></ol> </div> </div> [icon search]: ../reference/icons-emojis.md#search Normally, the logo in the header and sidebar links to the homepage of the documentation, which is the same as `site_url`. This behavior can be changed with the following configuration: ``` yaml extra: homepage: https://example.com ``` ### Favicon <!-- md:version 0.1.0 --> <!-- md:default [`assets/images/favicon.png`][Favicon default] --> The favicon can be changed to a path pointing to a user-provided image, which must be located in the `docs` folder. Add the following lines to `mkdocs.yml`: ``` yaml theme: favicon: images/favicon.png ``` [Favicon default]: https://github.com/squidfunk/mkdocs-material/blob/master/material/assets/images/favicon.png ### Site icons [:octicons-tag-24: 9.2.0][Site icon support] Most icons you see on your site, such as navigation icons, can also be changed. For example, to change the navigation arrows in the footer, add the following lines to `mkdocs.yml`: ```yaml theme: icon: previous: fontawesome/solid/angle-left next: fontawesome/solid/angle-right ``` The following is a complete list of customizable icons used by the theme: | Icon name | Purpose | |:-------------|:------------------------------------------------------------------------------| | `logo` | See [Logo](#logo) | | `menu` | Open drawer | | `alternate` | Change language | | `search` | Search icon | | `share` | Share search | | `close` | Reset search, dismiss announcements | | `top` | Back-to-top button | | `edit` | Edit current page | | `view` | View page source | | `repo` | Repository icon | | `admonition` | See [Admonition icons](../reference/admonitions.md#admonition-icons) | | `tag` | See [Tag icons and identifiers](setting-up-tags.md#tag-icons-and-identifiers) | | `previous` | Previous page in footer, hide search on mobile | | `next` | Next page in footer | [Site icon support]: https://github.com/squidfunk/mkdocs-material/releases/tag/9.2.0 ## Customization ### Additional icons In order to use custom icons, [extend the theme] and create a new folder named `.icons` in the [`custom_dir`][custom_dir] you want to use for overrides. Next, add your `*.svg` icons into a subfolder of the `.icons` folder. Let's say you downloaded and unpacked the [Bootstrap] icon set, and want to add it to your project documentation. The structure of your project should look like this: ``` { .sh .no-copy } . ├─ overrides/ │ └─ .icons/ │ └─ bootstrap/ │ └─ *.svg └─ mkdocs.yml ``` Then, add the following lines to `mkdocs.yml`: ``` yaml markdown_extensions: - pymdownx.emoji: emoji_index: !!python/name:material.extensions.emoji.twemoji emoji_generator: !!python/name:material.extensions.emoji.to_svg options: custom_icons: - overrides/.icons ``` You can now use all :fontawesome-brands-bootstrap: Bootstrap icons anywhere in Markdown files, as well as everywhere icons can be used in `mkdocs.yml`. However, note that the syntaxes are slightly different: - __Using icons in configuration__: take the path of the `*.svg` icon file starting at the `.icons` folder and drop the file extension, e.g. for `.icons/bootstrap/envelope-paper.svg`, use: ``` yaml theme: icon: logo: bootstrap/envelope-paper ``` - __Using icons in Markdown files__: additionally to taking the path from the `.icons` folder as noted above, replace all `/` with `-` and enclose the icon shortcode in two colons: ``` :bootstrap-envelope-paper: ``` For further notes on icon usage, please consult the [icon reference]. [extend the theme]: ../customization.md#extending-the-theme [custom_dir]: https://www.mkdocs.org/user-guide/configuration/#custom_dir [Bootstrap]: https://icons.getbootstrap.com/ [icon reference]: ../reference/icons-emojis.md#using-icons ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/setup/ensuring-data-privacy.md�������������������������������������������0000664�0000000�0000000�00000031551�14753064456�0023457�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Ensuring data privacy Material for MkDocs makes compliance with data privacy regulations very easy, as it offers a native [cookie consent] solution to seek explicit consent from users before setting up [analytics]. Additionally, external assets can be automatically downloaded for [self-hosting]. [cookie consent]: #cookie-consent [analytics]: setting-up-site-analytics.md [self-hosting]: #built-in-privacy-plugin ## Configuration ### Cookie consent <!-- md:version 8.4.0 --> <!-- md:default none --> <!-- md:flag experimental --> <!-- md:example cookie-consent --> Material for MkDocs ships a native and extensible cookie consent form which asks the user for consent prior to sending requests to third parties. Add the following to `mkdocs.yml`: ``` yaml extra: consent: title: Cookie consent description: >- # (1)! We use cookies to recognize your repeated visits and preferences, as well as to measure the effectiveness of our documentation and whether users find what they're searching for. With your consent, you're helping us to make our documentation better. ``` 1. You can add arbitrary HTML tags in the `description`, e.g. to link to your terms of service or other parts of the site. The following properties are available: <!-- md:option consent.title --> : <!-- md:default none --> <!-- md:flag required --> This property sets the title of the cookie consent, which is rendered at the top of the form and must be set to a non-empty string. <!-- md:option consent.description --> : <!-- md:default none --> <!-- md:flag required --> This property sets the description of the cookie consent, is rendered below the title, and may include raw HTML (e.g. a links to the terms of service). <!-- md:option consent.cookies --> : <!-- md:default none --> This property allows to add custom cookies or change the initial `checked` state and name of built-in cookies. Currently, the following cookies are built-in: - __Google Analytics__ – `analytics` (enabled by default) - __GitHub__ – `github` (enabled by default) Each cookie must receive a unique identifier which is used as a key in the `cookies` map, and can be either set to a string, or to a map defining `name` and `checked` state: === "Custom cookie name" ``` yaml extra: consent: cookies: analytics: Custom name ``` === "Custom initial state" ``` yaml extra: consent: cookies: analytics: name: Google Analytics checked: false ``` === "Custom cookie" ``` yaml extra: consent: cookies: analytics: Google Analytics # (1)! custom: Custom cookie ``` 1. If you define a custom cookie as part of the `cookies` property, the `analytics` cookie must be added back explicitly, or analytics won't be triggered. If Google Analytics was configured via `mkdocs.yml`, the cookie consent will automatically include a setting for the user to disable it. [Custom cookies] can be used from JavaScript. <!-- md:option consent.actions --> : <!-- md:default `[accept, manage]` --> This property defines which buttons are shown and in which order, e.g. to allow the user to accept cookies and manage settings: ``` yaml extra: consent: actions: - accept - manage # (1)! ``` 1. If the `manage` settings button is omitted from the `actions` property, the settings are always shown. The cookie consent form includes three types of buttons: - `accept` – Button to accept selected cookies - `reject` – Button to reject all cookies - `manage` – Button to manage settings When a user first visits your site, a cookie consent form is rendered: [![Cookie consent enabled]][Cookie consent enabled] [Custom cookies]: #custom-cookies [Cookie consent enabled]: ../assets/screenshots/consent.png #### Change cookie settings In order to comply with GDPR, users must be able to change their cookie settings at any time. This can be done by adding a simple link to your [copyright notice] in `mkdocs.yml`: ``` yaml copyright: > Copyright © 2016 - 2024 Martin Donath – <a href="#__consent">Change cookie settings</a> ``` [copyright notice]: setting-up-the-footer.md#copyright-notice ### Built-in privacy plugin <!-- md:version 9.5.0 --> <!-- md:plugin [privacy][built-in privacy plugin] --> <!-- md:flag experimental --> The built-in privacy plugin automatically identifies external assets as part of the build process and downloads all assets for very simple self-hosting. Add the following lines to `mkdocs.yml`: ``` yaml plugins: - privacy ``` For a list of all settings, please consult the [plugin documentation]. [plugin documentation]: ../plugins/privacy.md !!! tip "Hosting images externally and optimizing them automatically" This option makes the [built-in privacy plugin] an excellent choice for when you want to host assets like images outside of your git repository in another location to keep them fresh and your repository lean. Additionally, as of <!-- md:version insiders-4.30.0 -->, the built-in privacy plugin was entirely rewritten and now works perfectly with the [built-in optimize plugin], which means that external assets can be passed through the same optimization pipeline as the rest of your documentation. This means you can store and edit unoptimized files outside of your repository, and let both plugins built a highly optimized site for you. If you want to implement separate pipelines, i.e., optimize some images differently from others or exclude some images from downloading, you can use multiple instances of the [built-in privacy plugin]. !!! question "Why can't Material for MkDocs bundle all assets by design?" The primary reason why Material for MkDocs can't just bundle all of its own assets is the integration with [Google Fonts], which offers over a thousand different fonts that can be used to render your documentation. Most of the fonts include several weights and are split up into different character sets to keep the download size small, so the browser only downloads what is really needed. For Roboto, our default [regular font], this results in [42 `*.woff2` files in total][example]. If Material for MkDocs would bundle all font files, the download size would be in the hundreds of megabytes, slowing down automated builds. Furthermore, authors might add external assets like third-party scripts or style sheets that would need to be remembered to be defined as further local assets. This is the very reason the [built-in privacy plugin] exists — it automates the process of downloading all external assets manually to ensure compliance with GDPR with some some [technical limitations]. [Google Fonts]: changing-the-fonts.md [regular font]: changing-the-fonts.md#regular-font [example]: #example [built-in optimize plugin]: ../plugins/optimize.md [technical limitations]: ../plugins/privacy.md#limitations ??? example "Expand to inspect example" For the official documentation, the [built-in privacy plugin] downloads the following resources: ``` { .sh .no-copy #example } . └─ assets/external/ ├─ unpkg.com/tablesort@5.3.0/dist/tablesort.min.js ├─ fonts.googleapis.com/css └─ fonts.gstatic.com/s/ ├─ roboto/v29/ │ ├─ KFOjCnqEu92Fr1Mu51TjASc-CsTKlA.woff2 │ ├─ KFOjCnqEu92Fr1Mu51TjASc0CsTKlA.woff2 │ ├─ KFOjCnqEu92Fr1Mu51TjASc1CsTKlA.woff2 │ ├─ KFOjCnqEu92Fr1Mu51TjASc2CsTKlA.woff2 │ ├─ KFOjCnqEu92Fr1Mu51TjASc3CsTKlA.woff2 │ ├─ KFOjCnqEu92Fr1Mu51TjASc5CsTKlA.woff2 │ ├─ KFOjCnqEu92Fr1Mu51TjASc6CsQ.woff2 │ ├─ KFOjCnqEu92Fr1Mu51TzBic-CsTKlA.woff2 │ ├─ KFOjCnqEu92Fr1Mu51TzBic0CsTKlA.woff2 │ ├─ KFOjCnqEu92Fr1Mu51TzBic1CsTKlA.woff2 │ ├─ KFOjCnqEu92Fr1Mu51TzBic2CsTKlA.woff2 │ ├─ KFOjCnqEu92Fr1Mu51TzBic3CsTKlA.woff2 │ ├─ KFOjCnqEu92Fr1Mu51TzBic5CsTKlA.woff2 │ ├─ KFOjCnqEu92Fr1Mu51TzBic6CsQ.woff2 │ ├─ KFOkCnqEu92Fr1Mu51xEIzIFKw.woff2 │ ├─ KFOkCnqEu92Fr1Mu51xFIzIFKw.woff2 │ ├─ KFOkCnqEu92Fr1Mu51xGIzIFKw.woff2 │ ├─ KFOkCnqEu92Fr1Mu51xHIzIFKw.woff2 │ ├─ KFOkCnqEu92Fr1Mu51xIIzI.woff2 │ ├─ KFOkCnqEu92Fr1Mu51xLIzIFKw.woff2 │ ├─ KFOkCnqEu92Fr1Mu51xMIzIFKw.woff2 │ ├─ KFOlCnqEu92Fr1MmSU5fABc4EsA.woff2 │ ├─ KFOlCnqEu92Fr1MmSU5fBBc4.woff2 │ ├─ KFOlCnqEu92Fr1MmSU5fBxc4EsA.woff2 │ ├─ KFOlCnqEu92Fr1MmSU5fCBc4EsA.woff2 │ ├─ KFOlCnqEu92Fr1MmSU5fCRc4EsA.woff2 │ ├─ KFOlCnqEu92Fr1MmSU5fChc4EsA.woff2 │ ├─ KFOlCnqEu92Fr1MmSU5fCxc4EsA.woff2 │ ├─ KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2 │ ├─ KFOlCnqEu92Fr1MmWUlfBBc4.woff2 │ ├─ KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2 │ ├─ KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2 │ ├─ KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2 │ ├─ KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2 │ ├─ KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2 │ ├─ KFOmCnqEu92Fr1Mu4WxKOzY.woff2 │ ├─ KFOmCnqEu92Fr1Mu4mxK.woff2 │ ├─ KFOmCnqEu92Fr1Mu5mxKOzY.woff2 │ ├─ KFOmCnqEu92Fr1Mu72xKOzY.woff2 │ ├─ KFOmCnqEu92Fr1Mu7GxKOzY.woff2 │ ├─ KFOmCnqEu92Fr1Mu7WxKOzY.woff2 │ └─ KFOmCnqEu92Fr1Mu7mxKOzY.woff2 └─ robotomono/v13/ ├─ L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSV0mf0h.woff2 ├─ L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSZ0mf0h.woff2 ├─ L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSd0mf0h.woff2 ├─ L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSh0mQ.woff2 ├─ L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSt0mf0h.woff2 ├─ L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSx0mf0h.woff2 ├─ L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtElOUlYIw.woff2 ├─ L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEleUlYIw.woff2 ├─ L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEluUlYIw.woff2 ├─ L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEm-Ul.woff2 ├─ L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEmOUlYIw.woff2 └─ L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEn-UlYIw.woff2 ``` [built-in privacy plugin]: ../plugins/privacy.md [preconnect]: https://developer.mozilla.org/en-US/docs/Web/Performance/dns-prefetch #### Advanced settings <!-- md:sponsors --> <!-- md:version insiders-4.50.0 --> The following advanced settings are currently reserved to our [sponsors] [Insiders]. They are entirely optional, and don't affect the functionality of the blog, but can be helpful for customizations: - [`log`][config.log] - [`log_level`][config.log_level] We'll add more settings here, as we discover new use cases. [Insiders]: ../insiders/index.md [config.log]: ../plugins/privacy.md#config.log [config.log_level]: ../plugins/privacy.md#config.log_level ## Customization ### Custom cookies <!-- md:version 8.4.0 --> <!-- md:example custom-cookies --> If you've customized the [cookie consent] and added a `custom` cookie, the user will be prompted to accept or reject your custom cookie. Once the user accepts or rejects the cookie consent, or [changes the settings], the page reloads[^1]. Use [additional JavaScript] to query the result: [^1]: We reload the page to make interop with custom cookies simpler. If Material for MkDocs would implement a callback-based approach, the author would need to make sure to correctly update all scripts that use cookies. Additionally, the cookie consent is only answered initially, which is why we consider this to be a good trade-off of DX and UX. === ":octicons-file-code-16: `docs/javascripts/consent.js`" ``` js var consent = __md_get("__consent") if (consent && consent.custom) { /* The user accepted the cookie */ } else { /* The user rejected the cookie */ } ``` === ":octicons-file-code-16: `mkdocs.yml`" ``` yaml extra_javascript: - javascripts/consent.js ``` [additional JavaScript]: ../customization.md#additional-javascript [changes the settings]: #change-cookie-settings �������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/setup/extensions/��������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0021113�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/setup/extensions/index.md������������������������������������������������0000664�0000000�0000000�00000007300�14753064456�0022544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- title: Extensions --- # Extensions Markdown is a very small language with a kind-of reference implementation called [John Gruber's Markdown]. [Python Markdown] and [Python Markdown Extensions] are two packages that enhance the Markdown writing experience, adding useful syntax extensions for technical writing. [John Gruber's Markdown]: https://daringfireball.net/projects/markdown/ [Python Markdown]: python-markdown.md [Python Markdown Extensions]: python-markdown-extensions.md ## Supported extensions The following extensions are all supported by Material for MkDocs and therefore strongly recommended. Click on each extension to learn about its purpose and configuration: <div class="mdx-columns" markdown> - [Abbreviations] - [Admonition] - [Arithmatex] - [Attribute Lists] - [BetterEm] - [Caret, Mark & Tilde] - [Critic] - [Definition Lists] - [Details] - [Emoji] - [Footnotes] - [Highlight] - [Keys] - [Markdown in HTML] - [SmartSymbols] - [Snippets] - [SuperFences] - [Tabbed] - [Table of Contents] - [Tables] - [Tasklist] </div> [Abbreviations]: python-markdown.md#abbreviations [Admonition]: python-markdown.md#admonition [Arithmatex]: python-markdown-extensions.md#arithmatex [Attribute Lists]: python-markdown.md#attribute-lists [BetterEm]: python-markdown-extensions.md#betterem [Caret, Mark & Tilde]: python-markdown-extensions.md#caret-mark-tilde [Critic]: python-markdown-extensions.md#critic [Definition Lists]: python-markdown.md#definition-lists [Details]: python-markdown-extensions.md#details [Emoji]: python-markdown-extensions.md#emoji [Footnotes]: python-markdown.md#footnotes [Highlight]: python-markdown-extensions.md#highlight [Keys]: python-markdown-extensions.md#keys [Markdown in HTML]: python-markdown.md#markdown-in-html [SmartSymbols]: python-markdown-extensions.md#smartsymbols [Snippets]: python-markdown-extensions.md#snippets [SuperFences]: python-markdown-extensions.md#superfences [Tabbed]: python-markdown-extensions.md#tabbed [Table of Contents]: python-markdown.md#table-of-contents [Tables]: python-markdown.md#tables [Tasklist]: python-markdown-extensions.md#tasklist ## Configuration Extensions are configured as part of `mkdocs.yml` – the MkDocs configuration file. The following sections contain two example configurations to bootstrap your documentation project. [overview]: #advanced-configuration ### Minimal configuration This configuration is a good starting point for when you're using Material for MkDocs for the first time. The best idea is to explore the [reference], and gradually add what you want to use: ``` yaml markdown_extensions: # Python Markdown - toc: permalink: true # Python Markdown Extensions - pymdownx.highlight - pymdownx.superfences ``` [reference]: ../../reference/index.md ### Recommended configuration This configuration enables all Markdown-related features of Material for MkDocs and is great for experienced users bootstrapping a new documentation project: ``` yaml markdown_extensions: # Python Markdown - abbr - admonition - attr_list - def_list - footnotes - md_in_html - toc: permalink: true # Python Markdown Extensions - pymdownx.arithmatex: generic: true - pymdownx.betterem: smart_enable: all - pymdownx.caret - pymdownx.details - pymdownx.emoji: emoji_index: !!python/name:material.extensions.emoji.twemoji emoji_generator: !!python/name:material.extensions.emoji.to_svg - pymdownx.highlight - pymdownx.inlinehilite - pymdownx.keys - pymdownx.mark - pymdownx.smartsymbols - pymdownx.superfences - pymdownx.tabbed: alternate_style: true - pymdownx.tasklist: custom_checkbox: true - pymdownx.tilde ``` ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/setup/extensions/python-markdown-extensions.md���������������������������0000664�0000000�0000000�00000063441�14753064456�0027003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Python Markdown Extensions The [Python Markdown Extensions] package is an excellent collection of additional extensions perfectly suited for advanced technical writing. Material for MkDocs lists this package as an explicit dependency, so it's automatically installed with a supported version. [Python Markdown Extensions]: https://facelessuser.github.io/pymdown-extensions/ ## Supported extensions In general, all extensions that are part of [Python Markdown Extensions] should work with Material for MkDocs. The following list includes all extensions that are natively supported, meaning they work without any further adjustments. ### Arithmatex <!-- md:version 1.0.0 --> <!-- md:extension [pymdownx.arithmatex][Arithmatex] --> The [Arithmatex] extension allows for rendering of block and inline block equations and integrates seamlessly with [MathJax][^1] – a library for mathematical typesetting. Enable it via `mkdocs.yml`: [^1]: Other libraries like [KaTeX] are also supported and can be integrated with some additional effort. See the [Arithmatex documentation on KaTeX] for further guidance, as this is beyond the scope of Material for MkDocs. ``` yaml markdown_extensions: - pymdownx.arithmatex: generic: true ``` Besides enabling the extension in `mkdocs.yml`, a MathJax configuration and the JavaScript runtime need to be included, which can be done with a few lines of [additional JavaScript]: === ":octicons-file-code-16: `docs/javascripts/mathjax.js`" ``` js window.MathJax = { tex: { inlineMath: [["\\(", "\\)"]], displayMath: [["\\[", "\\]"]], processEscapes: true, processEnvironments: true }, options: { ignoreHtmlClass: ".*|", processHtmlClass: "arithmatex" } }; document$.subscribe(() => { // (1)! MathJax.startup.output.clearCache() MathJax.typesetClear() MathJax.texReset() MathJax.typesetPromise() }) ``` 1. This integrates MathJax with [instant loading] === ":octicons-file-code-16: `mkdocs.yml`" ``` yaml extra_javascript: - javascripts/mathjax.js - https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js ``` The other configuration options of this extension are not officially supported by Material for MkDocs, which is why they may yield unexpected results. Use them at your own risk. See reference for usage: - [Using block syntax] - [Using inline block syntax] [Arithmatex]: https://facelessuser.github.io/pymdown-extensions/extensions/arithmatex/ [Arithmatex documentation on KaTeX]: https://facelessuser.github.io/pymdown-extensions/extensions/arithmatex/#loading-katex [MathJax]: https://www.mathjax.org/ [KaTeX]: https://github.com/Khan/KaTeX [additional JavaScript]: ../../customization.md#additional-javascript [instant loading]: ../setting-up-navigation.md#instant-loading [Using block syntax]: ../../reference/math.md#using-block-syntax [Using inline block syntax]: ../../reference/math.md#using-inline-block-syntax ### BetterEm <!-- md:version 0.1.0 --> <!-- md:extension [pymdownx.betterem][BetterEm] --> The [BetterEm] extension improves the detection of Markup to emphasize text in Markdown using special characters, i.e. for `**bold**` and `_italic_` formatting. Enable it via `mkdocs.yml`: ``` yaml markdown_extensions: - pymdownx.betterem ``` The configuration options of this extension are not specific to Material for MkDocs, as they only impact the Markdown parsing stage. See the [BetterEm documentation][BetterEm] for more information. [BetterEm]: https://facelessuser.github.io/pymdown-extensions/extensions/betterem/ ### Caption <!-- md:version 1.0.0 --> <!-- md:extension [pymdownx.blocks.caption][Caption] --> The [Caption] extension adds the ability to add captions to any Markdown block, including images, tables, and code blocks. Enable it via `mkdocs.yml`: ``` yaml markdown_extensions: - pymdownx.blocks.caption ``` The configuration options of this extension are not specific to Material for MkDocs, as they only impact the Markdown parsing stage. See the [Caption documentation][Caption] for more information. [Caption]: https://facelessuser.github.io/pymdown-extensions/extensions/blocks/plugins/caption/ ### Caret, Mark & Tilde <!-- md:version 1.0.0 --> <!-- md:extension [pymdownx.caret][Caret] --> The [Caret], [Mark] and [Tilde] extensions add the ability to highlight text and define sub- and superscript using a simple syntax. Enable them together via `mkdocs.yml`: ``` yaml markdown_extensions: - pymdownx.caret - pymdownx.mark - pymdownx.tilde ``` The configuration options of this extension are not specific to Material for MkDocs, as they only impact the Markdown parsing stage. See the [Caret], [Mark] and [Tilde documentation][Tilde] for guidance. See reference for usage: - [Highlighting text] - [Sub- and superscripts] [Caret]: https://facelessuser.github.io/pymdown-extensions/extensions/caret/ [Mark]: https://facelessuser.github.io/pymdown-extensions/extensions/mark/ [Tilde]: https://facelessuser.github.io/pymdown-extensions/extensions/tilde/ [Highlighting text]: ../../reference/formatting.md#highlighting-text [Sub- and superscripts]: ../../reference/formatting.md#sub-and-superscripts ### Critic <!-- md:version 1.0.0 --> <!-- md:extension [pymdownx.critic][Critic] --> The [Critic] extension allows for the usage of [Critic Markup] to highlight added, deleted or updated sections in a document, i.e. for tracking changes in Markdown syntax. Enable it via `mkdocs.yml`: ``` yaml markdown_extensions: - pymdownx.critic ``` The following configuration options are supported: <!-- md:option pymdownx.critic.mode --> : <!-- md:default `view` --> This option defines how the markup should be parsed, i.e. whether to just `view` all suggested changes, or alternatively `accept` or `reject` them: === "View changes" ``` yaml markdown_extensions: - pymdownx.critic: mode: view ``` === "Accept changes" ``` yaml markdown_extensions: - pymdownx.critic: mode: accept ``` === "Reject changes" ``` yaml markdown_extensions: - pymdownx.critic: mode: reject ``` See reference for usage: - [Highlighting changes] [Critic]: https://facelessuser.github.io/pymdown-extensions/extensions/critic/ [Critic Markup]: https://github.com/CriticMarkup/CriticMarkup-toolkit [Highlighting changes]: ../../reference/formatting.md#highlighting-changes ### Details <!-- md:version 1.9.0 --> <!-- md:extension [pymdownx.details][Details] --> The [Details] extension supercharges the [Admonition] extension, making the resulting _call-outs_ collapsible, allowing them to be opened and closed by the user. Enable it via `mkdocs.yml`: ``` yaml markdown_extensions: - pymdownx.details ``` No configuration options are available. See reference for usage: - [Collapsible blocks] [Details]: https://facelessuser.github.io/pymdown-extensions/extensions/details/ [Admonition]: python-markdown.md#admonition [Collapsible blocks]: ../../reference/admonitions.md#collapsible-blocks ### Emoji <!-- md:version 1.0.0 --> <!-- md:extension [pymdownx.emoji][Emoji] --> The [Emoji] extension automatically inlines bundled and custom icons and emojis in `*.svg` file format into the resulting HTML page. Enable it via `mkdocs.yml`: ``` yaml markdown_extensions: - pymdownx.emoji: emoji_index: !!python/name:material.extensions.emoji.twemoji # (1)! emoji_generator: !!python/name:material.extensions.emoji.to_svg ``` 1. [Python Markdown Extensions] uses the `pymdownx` namespace, but in order to support the inlining of icons, the `materialx` namespace must be used, as it extends the functionality of `pymdownx`. The following configuration options are supported: <!-- md:option pymdownx.emoji.emoji_index --> : <!-- md:default `emojione` --> This option defines which set of emojis is used for rendering. Note that the use of `emojione` is not recommended due to [restrictions in licensing][Emoji index]: ``` yaml markdown_extensions: - pymdownx.emoji: emoji_index: !!python/name:material.extensions.emoji.twemoji ``` <!-- md:option pymdownx.emoji.emoji_generator --> : <!-- md:default `to_png` --> This option defines how the resolved emoji or icon shortcode is render. Note that icons can only be used together with the `to_svg` configuration: ``` yaml markdown_extensions: - pymdownx.emoji: emoji_generator: !!python/name:material.extensions.emoji.to_svg ``` <!-- md:option pymdownx.emoji.options.custom_icons --> : <!-- md:default none --> This option allows to list folders with additional icon sets to be used in Markdown or `mkdocs.yml`, which is explained in more detail in the [icon customization guide]: ``` yaml markdown_extensions: - pymdownx.emoji: emoji_index: !!python/name:material.extensions.emoji.twemoji emoji_generator: !!python/name:material.extensions.emoji.to_svg options: custom_icons: - overrides/.icons ``` The other configuration options of this extension are not officially supported by Material for MkDocs, which is why they may yield unexpected results. Use them at your own risk. See reference for usage: - [Using emojis] - [Using icons] - [Using icons in templates] [Emoji]: https://facelessuser.github.io/pymdown-extensions/extensions/emoji/ [Emoji index]: https://facelessuser.github.io/pymdown-extensions/extensions/emoji/#default-emoji-indexes [icon customization guide]: ../changing-the-logo-and-icons.md#additional-icons [Using emojis]: ../../reference/icons-emojis.md#using-emojis [Using icons]: ../../reference/icons-emojis.md#using-icons [Using icons in templates]: ../../reference/icons-emojis.md#using-icons-in-templates ### Highlight <!-- md:version 5.0.0 --> <!-- md:extension [pymdownx.highlight][Highlight] --> The [Highlight] extension adds support for syntax highlighting of code blocks (with the help of [SuperFences][pymdownx.superfences]) and inline code blocks (with the help of [InlineHilite][pymdownx.inlinehilite]). Enable it via `mkdocs.yml`: ``` yaml markdown_extensions: - pymdownx.highlight: anchor_linenums: true - pymdownx.superfences # (1)! ``` 1. [Highlight] is used by the [SuperFences][pymdownx.superfences] extension to perform syntax highlighting on code blocks, not the other way round, which is why this extension also needs to be enabled. The following configuration options are supported: <!-- md:option pymdownx.highlight.use_pygments --> : <!-- md:default `true` --> This option allows to control whether highlighting should be carried out during build time using [Pygments] or in the browser with a JavaScript syntax highlighter: === "Pygments" ``` yaml markdown_extensions: - pymdownx.highlight: use_pygments: true - pymdownx.superfences ``` === "JavaScript" ``` yaml markdown_extensions: - pymdownx.highlight: use_pygments: false ``` As an example, [Highlight.js], a JavaScript syntax highlighter, can be integrated with some [additional JavaScript] and an [additional style sheet] in `mkdocs.yml`: === ":octicons-file-code-16: `docs/javascripts/highlight.js`" ``` js document$.subscribe(() => { hljs.highlightAll() }) ``` === ":octicons-file-code-16: `mkdocs.yml`" ``` yaml extra_javascript: - https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.2/highlight.min.js - javascripts/highlight.js extra_css: - https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.2/styles/default.min.css ``` Note that [Highlight.js] has no affiliation with the [Highlight][pymdownx.highlight] extension. All following configuration options are only compatible with build-time syntax highlighting using [Pygments], so they don't apply if `use_pygments` is set to `false`. <!-- md:option pymdownx.highlight.pygments_lang_class --> : <!-- md:default `false` --> This option instructs [Pygments] to add a CSS class to identify the language of the code block, which is essential for custom annotation markers to function: ``` yaml markdown_extensions: - pymdownx.highlight: pygments_lang_class: true ``` <!-- md:option pymdownx.highlight.auto_title --> : <!-- md:default `false` --> This option will automatically add a [title] to all code blocks that shows the name of the language being used, e.g. `Python` is printed for a `py` block: ``` yaml markdown_extensions: - pymdownx.highlight: auto_title: true ``` <!-- md:option pymdownx.highlight.linenums --> : <!-- md:default `false` --> This option will add line numbers to _all_ code blocks. If you wish to add line numbers to _some_, but not all code blocks, consult the section on [adding line numbers][Adding line numbers] in the code block reference, which also contains some tips on working with line numbers: ``` yaml markdown_extensions: - pymdownx.highlight: linenums: true ``` <!-- md:option pymdownx.highlight.linenums_style --> : <!-- md:default `table` --> The [Highlight] extension provides three ways to add line numbers, two of which are supported by Material for MkDocs. While `table` wraps a code block in a `<table>` element, `pymdownx-inline` renders line numbers as part of the line itself: ``` yaml markdown_extensions: - pymdownx.highlight: linenums_style: pymdownx-inline ``` Note that `inline` will put line numbers next to the actual code, which means that they will be included when selecting text with the cursor or copying a code block to the clipboard. Thus, the usage of either `table` or `pymdownx-inline` is recommended. <!-- md:option pymdownx.highlight.anchor_linenums --> : <!-- md:version 8.1.0 --> :octicons-milestone-24: Default: `false` – If a code blocks contains line numbers, enabling this setting will wrap them with anchor links, so they can be hyperlinked and shared more easily: ``` yaml markdown_extensions: - pymdownx.highlight: anchor_linenums: true ``` <!-- md:option pymdownx.highlight.line_spans --> : <!-- md:default none --> When this option is set, each line of a code block is wrapped in a `span`, which is essential for features like line highlighting to work correctly: ``` yaml markdown_extensions: - pymdownx.highlight: line_spans: __span ``` The other configuration options of this extension are not officially supported by Material for MkDocs, which is why they may yield unexpected results. Use them at your own risk. See reference for usage: - [Using code blocks] - [Adding a title] - [Adding line numbers] - [Highlighting specific lines] - [Custom syntax theme] [Highlight]: https://facelessuser.github.io/pymdown-extensions/extensions/highlight/ [CodeHilite]: python-markdown.md#codehilite [pymdownx.superfences]: #superfences [pymdownx.inlinehilite]: #inlinehilite [Pygments]: https://pygments.org [additional style sheet]: ../../customization.md#additional-css [Highlight.js]: https://highlightjs.org/ [title]: ../../reference/code-blocks.md#adding-a-title [Adding line numbers]: ../../reference/code-blocks.md#adding-line-numbers [Using code blocks]: ../../reference/code-blocks.md#usage [Adding a title]: ../../reference/code-blocks.md#adding-a-title [Highlighting specific lines]: ../../reference/code-blocks.md#highlighting-specific-lines [Custom syntax theme]: ../../reference/code-blocks.md#custom-syntax-theme ### InlineHilite <!-- md:version 5.0.0 --> <!-- md:extension [pymdownx.inlinehilite][InlineHilite] --> The [InlineHilite] extension add support for syntax highlighting of inline code blocks. It's built on top of the [Highlight][pymdownx.highlight] extension, from which it sources its configuration. Enable it via `mkdocs.yml`: ``` yaml markdown_extensions: - pymdownx.highlight - pymdownx.inlinehilite ``` The configuration options of this extension are not specific to Material for MkDocs, as they only impact the Markdown parsing stage. The only exception is the [`css_class`][InlineHilite options] option, which must not be changed. See the [InlineHilite documentation][InlineHilite] for guidance. See reference for usage: - [Highlighting inline code blocks] [InlineHilite]: https://facelessuser.github.io/pymdown-extensions/extensions/inlinehilite/ [InlineHilite options]: https://facelessuser.github.io/pymdown-extensions/extensions/inlinehilite/#options [pymdownx.highlight]: #highlight [Highlighting inline code blocks]: ../../reference/code-blocks.md#highlighting-inline-code-blocks ### Keys <!-- md:version 1.0.0 --> <!-- md:extension [pymdownx.keys][Keys] --> The [Keys] extension adds a simple syntax to allow for the rendering of keyboard keys and combinations, e.g. ++ctrl+alt+del++. Enable it via `mkdocs.yml`: ``` yaml markdown_extensions: - pymdownx.keys ``` The configuration options of this extension are not specific to Material for MkDocs, as they only impact the Markdown parsing stage. The only exception is the [`class`][Keys options] option, which must not be changed. See the [Keys documentation][Keys] for more information. See reference for usage: - [Adding keyboard keys] [Keys]: https://facelessuser.github.io/pymdown-extensions/extensions/keys/ [Keys options]: https://facelessuser.github.io/pymdown-extensions/extensions/keys/#options [Adding keyboard keys]: ../../reference/formatting.md#adding-keyboard-keys ### SmartSymbols <!-- md:version 0.1.0 --> <!-- md:extension [pymdownx.smartsymbols][SmartSymbols] --> The [SmartSymbols] extension converts some sequences of characters into their corresponding symbols, e.g. copyright symbols or fractions. Enable it via `mkdocs.yml`: ``` yaml markdown_extensions: - pymdownx.smartsymbols ``` The configuration options of this extension are not specific to Material for MkDocs, as they only impact the Markdown parsing stage. See the [SmartSymbols documentation][SmartSymbols] for guidance. [SmartSymbols]: https://facelessuser.github.io/pymdown-extensions/extensions/smartsymbols/ ### Snippets <!-- md:version 0.1.0 --> <!-- md:extension [pymdownx.snippets][Snippets] --> The [Snippets] extension adds the ability to embed content from arbitrary files into a document, including other documents or source files, by using a simple syntax. Enable it via `mkdocs.yml`: ``` yaml markdown_extensions: - pymdownx.snippets ``` The configuration options of this extension are not specific to Material for MkDocs, as they only impact the Markdown parsing stage. See the [Snippets documentation][Snippets] for more information. See reference for usage: - [Adding a glossary] - [Embedding external files] [Snippets]: https://facelessuser.github.io/pymdown-extensions/extensions/snippets/ [Adding a glossary]: ../../reference/tooltips.md#adding-a-glossary [Embedding external files]: ../../reference/code-blocks.md#embedding-external-files ### SuperFences <!-- md:version 0.1.0 --> <!-- md:extension [pymdownx.superfences][SuperFences] --> The [SuperFences] extension allows for arbitrary nesting of code and content blocks inside each other, including admonitions, tabs, lists and all other elements. Enable it via `mkdocs.yml`: ``` yaml markdown_extensions: - pymdownx.superfences ``` The following configuration options are supported: <!-- md:option pymdownx.superfences.custom_fences --> : <!-- md:default none --> This option allows to define a handler for custom fences, e.g. to preserve the definitions of [Mermaid.js] diagrams to be interpreted in the browser: ``` yaml markdown_extensions: - pymdownx.superfences: custom_fences: - name: mermaid class: mermaid format: !!python/name:pymdownx.superfences.fence_code_format ``` Note that this will primarily prevent syntax highlighting from being applied. See the reference on [diagrams] to learn how Mermaid.js is integrated with Material for MkDocs. The other configuration options of this extension are not officially supported by Material for MkDocs, which is why they may yield unexpected results. Use them at your own risk. See reference for usage: - [Using annotations] - [Using code blocks] - [Using content tabs] - [Using flowcharts] - [Using sequence diagrams] - [Using state diagrams] - [Using class diagrams] - [Using entity-relationship diagrams] [SuperFences]: https://facelessuser.github.io/pymdown-extensions/extensions/superfences/ [Fenced Code Blocks]: python-markdown.md#fenced-code-blocks [Mermaid.js]: https://mermaid-js.github.io/mermaid/ [diagrams]: ../../reference/diagrams.md [Using annotations]: ../../reference/annotations.md#usage [Using content tabs]: ../../reference/content-tabs.md#usage [Using flowcharts]: ../../reference/diagrams.md#using-flowcharts [Using sequence diagrams]: ../../reference/diagrams.md#using-sequence-diagrams [Using state diagrams]: ../../reference/diagrams.md#using-state-diagrams [Using class diagrams]: ../../reference/diagrams.md#using-class-diagrams [Using entity-relationship diagrams]: ../../reference/diagrams.md#using-entity-relationship-diagrams ### Tabbed <!-- md:version 5.0.0 --> <!-- md:extension [pymdownx.tabbed][Tabbed] --> The [Tabbed] extension allows the usage of content tabs, a simple way to group related content and code blocks under accessible tabs. Enable it via `mkdocs.yml`: ``` yaml markdown_extensions: - pymdownx.tabbed: alternate_style: true ``` The following configuration options are supported: <!-- md:option pymdownx.tabbed.alternate_style --> : <!-- md:version 7.3.1 --> <!-- md:default `false` --> <!-- md:flag required --> This option enables the content tabs [alternate style], which has [better behavior on mobile viewports], and is the only supported style: ``` yaml markdown_extensions: - pymdownx.tabbed: alternate_style: true ``` <!-- md:option pymdownx.tabbed.combine_header_slug --> : <!-- md:default `false` --> This option enables the content tabs' [`combine_header_slug` style] flag, which prepends the id of the header to the id of the tab: ``` yaml markdown_extensions: - pymdownx.tabbed: combine_header_slug: true ``` <!-- md:option pymdownx.tabbed.slugify --> : <!-- md:default `None` --> This option allows for customization of the slug function. For some languages, the default may not produce good and readable identifiers – consider using another slug function like for example those from [Python Markdown Extensions][Slugs]: === "Unicode" ``` yaml markdown_extensions: - pymdownx.tabbed: slugify: !!python/object/apply:pymdownx.slugs.slugify kwds: case: lower ``` === "Unicode, case-sensitive" ``` yaml markdown_extensions: - pymdownx.tabbed: slugify: !!python/object/apply:pymdownx.slugs.slugify {} ``` The other configuration options of this extension are not officially supported by Material for MkDocs, which is why they may yield unexpected results. Use them at your own risk. See reference for usage: - [Grouping code blocks] - [Grouping other content] - [Embedded content] [Tabbed]: https://facelessuser.github.io/pymdown-extensions/extensions/tabbed/ [alternate style]: https://facelessuser.github.io/pymdown-extensions/extensions/tabbed/#alternate-style [combine_header_slug style]: https://facelessuser.github.io/pymdown-extensions/extensions/tabbed/#tab-ids [better behavior on mobile viewports]: https://x.com/squidfunk/status/1424740370596958214 [Grouping code blocks]: ../../reference/content-tabs.md#grouping-code-blocks [Grouping other content]: ../../reference/content-tabs.md#grouping-other-content [Embedded content]: ../../reference/content-tabs.md#embedded-content [Slugs]: https://facelessuser.github.io/pymdown-extensions/extras/slugs/ ### Tasklist <!-- md:version 1.0.0 --> <!-- md:extension [pymdownx.tasklist][Tasklist] --> The [Tasklist] extension allows for the usage of [GitHub Flavored Markdown] inspired [task lists][Tasklist specification], following the same syntactical conventions. Enable it via `mkdocs.yml`: ``` yaml markdown_extensions: - pymdownx.tasklist: custom_checkbox: true ``` The following configuration options are supported: <!-- md:option pymdownx.tasklist.custom_checkbox --> : <!-- md:default `false` --> This option toggles the rendering style of checkboxes, replacing native checkbox styles with beautiful icons, and is therefore recommended: ``` yaml markdown_extensions: - pymdownx.tasklist: custom_checkbox: true ``` <!-- md:option pymdownx.tasklist.clickable_checkbox --> : <!-- md:default `false` --> This option toggles whether checkboxes are clickable. As the state is not persisted, the use of this option is _rather discouraged_ from a user experience perspective: ``` yaml markdown_extensions: - pymdownx.tasklist: clickable_checkbox: true ``` The other configuration options of this extension are not officially supported by Material for MkDocs, which is why they may yield unexpected results. Use them at your own risk. See reference for usage: - [Using task lists] [Tasklist]: https://facelessuser.github.io/pymdown-extensions/extensions/tasklist/ [GitHub Flavored Markdown]: https://github.github.com/gfm/ [Tasklist specification]: https://github.github.com/gfm/#task-list-items-extension- [Using task lists]: ../../reference/lists.md#using-task-lists �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/setup/extensions/python-markdown.md��������������������������������������0000664�0000000�0000000�00000025337�14753064456�0024610�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Python Markdown Material for MkDocs supports a large number of [Python Markdown] extensions, which is part of what makes it so attractive for technical writing. Following is a list of all supported extensions, linking to the relevant sections of the reference for which features they need to be enabled. [Python Markdown]: https://python-markdown.github.io/ ## Supported extensions ### Abbreviations <!-- md:version 1.0.0 --> <!-- md:extension [abbr][Abbreviations] --> The [Abbreviations] extension adds the ability to add a small tooltip to an element, by wrapping it with an `abbr` tag. Only plain text (no markup) is supported. Enable it via `mkdocs.yml`: ``` yaml markdown_extensions: - abbr ``` No configuration options are available. See reference for usage: - [Adding abbreviations] - [Adding a glossary] [Abbreviations]: https://python-markdown.github.io/extensions/abbreviations/ [Adding abbreviations]: ../../reference/tooltips.md#adding-abbreviations [Adding a glossary]: ../../reference/tooltips.md#adding-a-glossary ### Admonition <!-- md:version 0.1.0 --> <!-- md:extension [admonition][Admonition] --> The [Admonition] extension adds support for admonitions, more commonly known as _call-outs_, which can be defined in Markdown by using a simple syntax. Enable it via `mkdocs.yml`: ``` yaml markdown_extensions: - admonition ``` No configuration options are available. See reference for usage: - [Adding admonitions] - [Changing the title] - [Removing the title] - [Supported types] [Admonition]: https://python-markdown.github.io/extensions/admonition/ [Adding admonitions]: ../../reference/admonitions.md#usage [Changing the title]: ../../reference/admonitions.md#changing-the-title [Removing the title]: ../../reference/admonitions.md#removing-the-title [Supported types]: ../../reference/admonitions.md#supported-types ### Attribute Lists <!-- md:version 0.1.0 --> <!-- md:extension [attr_list][Attribute Lists] --> The [Attribute Lists] extension allows to add HTML attributes and CSS classes to [almost every][Attribute Lists limitations] Markdown inline- and block-level element with a special syntax. Enable it via `mkdocs.yml`: ``` yaml markdown_extensions: - attr_list ``` No configuration options are available. See reference for usage: - [Using annotations] - [Using grids] - [Adding buttons] - [Adding tooltips] - [Using icons with colors] - [Using icons with animations] - [Image alignment] - [Image lazy-loading] [Attribute Lists]: https://python-markdown.github.io/extensions/attr_list/ [Attribute Lists limitations]: https://python-markdown.github.io/extensions/attr_list/#limitations [Using grids]: ../../reference/grids.md#using-grids [Adding buttons]: ../../reference/buttons.md#adding-buttons [Adding tooltips]: ../../reference/tooltips.md#adding-tooltips [Using icons with colors]: ../../reference/icons-emojis.md#with-colors [Using icons with animations]: ../../reference/icons-emojis.md#with-animations [Image alignment]: ../../reference/images.md#image-alignment [Image lazy-loading]: ../../reference/images.md#image-lazy-loading ### Definition Lists <!-- md:version 1.1.0 --> <!-- md:extension [def_list][Definition Lists] --> The [Definition Lists] extension adds the ability to add definition lists (more commonly known as [description lists] – `dl` in HTML) via Markdown to a document. Enable it via `mkdocs.yml`: ``` yaml markdown_extensions: - def_list ``` No configuration options are available. See reference for usage: - [Using definition lists] [Definition Lists]: https://python-markdown.github.io/extensions/definition_lists/ [description lists]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dl [Using definition lists]: ../../reference/lists.md#using-definition-lists ### Footnotes <!-- md:version 1.0.0 --> <!-- md:extension [footnotes][Footnotes] --> The [Footnotes] extension allows to define inline footnotes, which are then rendered below all Markdown content of a document. Enable it via `mkdocs.yml`: ``` yaml markdown_extensions: - footnotes ``` No configuration options are supported. See reference for usage: - [Adding footnote references] - [Adding footnote content] [Footnotes]: https://python-markdown.github.io/extensions/footnotes/ [Adding footnote references]: ../../reference/footnotes.md#adding-footnote-references [Adding footnote content]: ../../reference/footnotes.md#adding-footnote-content ### Markdown in HTML <!-- md:version 0.1.0 --> <!-- md:extension [md_in_html][Markdown in HTML] --> The [Markdown in HTML] extension allows for writing Markdown inside of HTML, which is useful for wrapping Markdown content with custom elements. Enable it via `mkdocs.yml`: ``` yaml markdown_extensions: - md_in_html ``` > By default, Markdown ignores any content within a raw HTML block-level > element. With the `md_in_html` extension enabled, the content of a raw HTML > block-level element can be parsed as Markdown by including a `markdown` > attribute on the opening tag. The `markdown` attribute will be stripped from > the output, while all other attributes will be preserved. No configuration options are available. See reference for usage: - [Using annotations] - [Using grids] - [Image captions] [Markdown in HTML]: https://python-markdown.github.io/extensions/md_in_html/ [Using annotations]: ../../reference/annotations.md#usage [Using grids]: ../../reference/grids.md#usage [Image captions]: ../../reference/images.md#image-captions ### Table of Contents <!-- md:version 0.1.0 --> <!-- md:extension [toc][Table of Contents] --> The [Table of Contents] extension automatically generates a table of contents from a document, which Material for MkDocs will render as part of the resulting page. Enable it via `mkdocs.yml`: ``` yaml markdown_extensions: - toc: permalink: true ``` The following configuration options are supported: <!-- md:option toc.title --> : <!-- md:version 7.3.5 --> <!-- md:default computed --> – This option sets the title of the table of contents in the right navigation sidebar, which is normally automatically sourced from the translations for the [site language] as set in `mkdocs.yml`: ``` yaml markdown_extensions: - toc: title: On this page ``` <!-- md:option toc.permalink --> : <!-- md:default `false` --> This option adds an anchor link containing the paragraph symbol `¶` or another custom symbol at the end of each headline, exactly like on the page you're currently viewing, which Material for MkDocs will make appear on hover: === "¶" ``` yaml markdown_extensions: - toc: permalink: true ``` === "⚓︎" ``` yaml markdown_extensions: - toc: permalink: ⚓︎ ``` <!-- md:option toc.permalink_title --> : <!-- md:default `Permanent link` --> This option sets the title of the anchor link which is shown on hover and read by screen readers. For accessibility reasons, it might be beneficial to change it to a more discernable name, stating that the anchor links to the section itself: ``` yaml markdown_extensions: - toc: permalink_title: Anchor link to this section for reference ``` <!-- md:option toc.slugify --> : <!-- md:default `toc.slugify` --> This option allows for customization of the slug function. For some languages, the default may not produce good and readable identifiers – consider using another slug function like for example those from [Python Markdown Extensions][Slugs]: === "Unicode" ``` yaml markdown_extensions: - toc: slugify: !!python/object/apply:pymdownx.slugs.slugify kwds: case: lower ``` === "Unicode, case-sensitive" ``` yaml markdown_extensions: - toc: slugify: !!python/object/apply:pymdownx.slugs.slugify {} ``` <!-- md:option toc.toc_depth --> : <!-- md:default `6` --> Define the range of levels to be included in the table of contents. This may be useful for project documentation with deeply structured headings to decrease the length of the table of contents, or to remove the table of contents altogether: === "Hide levels 4-6" ``` yaml markdown_extensions: - toc: toc_depth: 3 ``` === "Hide table of contents" ``` yaml markdown_extensions: - toc: toc_depth: 0 ``` The other configuration options of this extension are not officially supported by Material for MkDocs, which is why they may yield unexpected results. Use them at your own risk. [Table of Contents]: https://python-markdown.github.io/extensions/toc/ [site language]: ../changing-the-language.md#site-language [Slugs]: https://facelessuser.github.io/pymdown-extensions/extras/slugs/ ### Tables <!-- md:version 0.1.0 --> <!-- md:extension [tables][Tables] --> The [Tables] extension adds the ability to create tables in Markdown by using a simple syntax. Enable it via `mkdocs.yml` (albeit it should be enabled by default): ``` yaml markdown_extensions: - tables ``` No configuration options are available. See reference for usage: - [Using data tables] - [Column alignment] [Tables]: https://python-markdown.github.io/extensions/tables/ [Using data tables]: ../../reference/data-tables.md#usage [Column alignment]: ../../reference/data-tables.md#column-alignment ## Superseded extensions The following [Python Markdown] extensions are not (or might not be) supported anymore, and are therefore not recommended for use. Instead, the alternatives should be considered. ### Fenced Code Blocks <!-- md:version 0.1.0 --> <!-- md:extension [fenced_code_blocks][Fenced Code Blocks] --> Superseded by [SuperFences]. This extension might still work, but the [SuperFences] extension is superior in many ways, as it allows for arbitrary nesting, and is therefore recommended. [Fenced Code Blocks]: https://python-markdown.github.io/extensions/fenced_code_blocks/ [SuperFences]: https://facelessuser.github.io/pymdown-extensions/extensions/superfences/ ### CodeHilite <!-- md:version 0.1.0 --> <!-- md:extension [codehilite][CodeHilite] --> Superseded by [Highlight]. Support for CodeHilite was dropped in <!-- md:version 6.0.0 -->, as [Highlight] has a better integration with other essential extensions like [SuperFences] and [InlineHilite]. [CodeHilite]: https://python-markdown.github.io/extensions/code_hilite/ [CodeHilite support]: https://github.com/squidfunk/mkdocs-material/releases/tag/0.1.0 [Highlight]: https://facelessuser.github.io/pymdown-extensions/extensions/highlight/ [InlineHilite]: https://facelessuser.github.io/pymdown-extensions/extensions/inlinehilite/ �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/setup/index.md�����������������������������������������������������������0000664�0000000�0000000�00000007473�14753064456�0020360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Setup Material for MkDocs offers a wide range of options for customizing your documentation. In this section, we will explain how you can create a meaningful structure for your site, change the look and feel, add a blog and comment system, and build a highly optimized site. ## Site structure Set up and customize the structure of your documentation by configuring the header and footer to your taste, choosing among many modes of navigation, setting up site search, and more. <div class="grid cards" markdown> - :fontawesome-solid-earth-americas: __[Language]__ – Choose out of the 60+ supported languages or add a new one - :material-page-layout-sidebar-left: __[Navigation]__ – Create a clear, concise, and comprehensive navigation structure - :material-page-layout-header: __[Header]__ – Customize the behavior of the header, add an announcement bar - :material-page-layout-footer: __[Footer]__ – Add links to your social media profiles or websites in the footer - :material-tab-search: __[Search]__ – Set up and configure search, running entirely in the user's browser - :material-tag-plus-outline: __[Tags]__ – Categorize your pages with tags and group related pages </div> [Language]: changing-the-language.md [Navigation]: setting-up-navigation.md [Header]: setting-up-the-header.md [Footer]: setting-up-the-footer.md [Search]: setting-up-site-search.md [Tags]: setting-up-tags.md ## Appearance Match your brand's colors, fonts, icons, logo, and more with a few lines of configuration – Material for MkDocs makes it easy to extend the basic configuration or alter the appearance. <div class="grid cards" markdown> - :material-brush-variant: __[Colors]__ – Change colors with an existing color palette or customize with CSS - :material-format-font: __[Fonts]__ – Choose among 1,000 Google Fonts or load self-hosted fonts - :material-google-downasaur: __[Logo & Icons]__ – Change the logo, use any of the 8,000+ icons, or add new ones - :material-cards-variant: __[Social Cards]__ – Automatically create social media previews when sharing links </div> [Colors]: changing-the-colors.md [Fonts]: changing-the-fonts.md [Logo & Icons]: changing-the-logo-and-icons.md [Social Cards]: setting-up-social-cards.md ## Content Create a blog, integrate a comment system, connect a git repository, and set up versioned documentation that matches your project's versioning methodology. <div class="grid cards" markdown> - :material-book-open-outline: __[Blog]__ – Set up a standalone blog or host it alongside your documentation - :material-comment-text-outline: __[Comment System]__ – Add a third-party comment system on any page or footer - :octicons-versions-16: __[Versioning]__ – Deploy multiple versions by integrating with external utilities - :octicons-repo-16: __[Repository]__ – Connect your documentation to your git repository </div> [Blog]: setting-up-a-blog.md [Comment System]: adding-a-comment-system.md [Versioning]: setting-up-versioning.md [Repository]: adding-a-git-repository.md ## Optimization Add site analytics and build an optimized site by adding automatic image compression, complying with GDPR data privacy regulations, and making it offline-capable. <div class="grid cards" markdown> - :material-google-analytics: __[Site analytics]__ – Learn how your users experience your documentation - :material-screwdriver: __[Optimized site]__ – Create optimized sites that rank great on search engines - :octicons-lock-16: __[Data Privacy]__ – Ensure compliance with data privacy regulations - :octicons-cloud-offline-16: __[Offline usage]__ – Build an online and offline-capable documentation </div> [Site analytics]: setting-up-site-analytics.md [Optimized site]: building-an-optimized-site.md [Data Privacy]: ensuring-data-privacy.md [Offline usage]: building-for-offline-usage.md �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/setup/setting-up-a-blog.md�����������������������������������������������0000664�0000000�0000000�00000050760�14753064456�0022504�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Setting up a blog Material for MkDocs makes it very easy to build a blog, either as a sidecar to your documentation or standalone. Focus on your content while the engine does all the heavy lifting, automatically generating [archive] and [category] indexes, [post slugs], configurable [pagination] and more. --- __Check out our [blog], which is created with the new [built-in blog plugin]!__ [archive]: ../plugins/blog.md#archive [category]: ../plugins/blog.md#categories [post slugs]: ../plugins/blog.md#config.post_url_format [pagination]: ../plugins/blog.md#pagination [blog]: ../blog/index.md ## Configuration ### Built-in blog plugin <!-- md:version 9.2.0 --> <!-- md:plugin --> <!-- md:flag experimental --> <!-- md:demo create-blog --> The built-in blog plugin adds support for building a blog from a folder of posts, which are annotated with dates and other structured data. First, add the following lines to `mkdocs.yml`: ``` yaml plugins: - blog ``` If you do not have a navigation (`nav`) definition in your `mkdocs.yml` then there is nothing else to do there as the blog plugin will add navigation automatically. If you do have a navigation defined then you need to add *the blog index page only* to it. You need not and should not add the individual blog posts. For example: ```yaml nav: - index.md - Blog: - blog/index.md ``` For a list of all settings, please consult the [plugin documentation]. [plugin documentation]: ../plugins/blog.md #### Advanced settings <!-- md:sponsors --> <!-- md:version insiders-4.44.0 --> The following advanced settings are currently reserved to our [sponsors] [Insiders]. They are entirely optional, and don't affect the functionality of the blog, but can be helpful for customizations: - [`archive_pagination`][config.archive_pagination] - [`archive_pagination_per_page`][config.archive_pagination_per_page] - [`categories_sort_by`][config.categories_sort_by] - [`categories_sort_reverse`][config.categories_sort_reverse] - [`categories_pagination`][config.categories_pagination] - [`categories_pagination_per_page`][config.categories_pagination_per_page] - [`authors_profiles_pagination`][config.authors_profiles_pagination] - [`authors_profiles_pagination_per_page`][config.authors_profiles_pagination_per_page] We'll add more settings here, as we discover new use cases. [Insiders]: ../insiders/index.md [built-in blog plugin]: ../plugins/blog.md [built-in plugins]: ../insiders/getting-started.md#built-in-plugins [start writing your first post]: #writing-your-first-post [config.archive_pagination]: ../plugins/blog.md#config.archive_pagination [config.archive_pagination_per_page]: ../plugins/blog.md#config.archive_pagination_per_page [config.categories_sort_by]: ../plugins/blog.md#config.categories_sort_by [config.categories_sort_reverse]: ../plugins/blog.md#config.categories_sort_reverse [config.categories_pagination]: ../plugins/blog.md#config.categories_pagination [config.categories_pagination_per_page]: ../plugins/blog.md#config.categories_pagination_per_page [config.authors_profiles_pagination]: ../plugins/blog.md#config.authors_profiles_pagination [config.authors_profiles_pagination_per_page]: ../plugins/blog.md#config.authors_profiles_pagination_per_page ### RSS <!-- md:version 9.2.0 --> <!-- md:plugin [rss] --> The [built-in blog plugin] integrates seamlessly with the [RSS plugin][rss], which provides a simple way to add an RSS feed to your blog (or to your whole documentation). Install it with `pip`: ``` pip install mkdocs-rss-plugin ``` Then, add the following lines to `mkdocs.yml`: ``` yaml plugins: - rss: match_path: blog/posts/.* # (1)! date_from_meta: as_creation: date categories: - categories - tags # (2)! ``` 1. The RSS plugin allows to filter for URLs to be included in the feed. In this example, only blog posts will be part of the feed. 2. If you want to include a post's categories as well as its tags in the feed, add both `categories` and `tags` here. The following configuration options are supported: <!-- md:option rss.enabled --> : <!-- md:default `true` --> This option specifies whether the plugin is enabled when building your project. If you want to speed up local builds, you can use an [environment variable][mkdocs.env]: ``` yaml plugins: - rss: enabled: !ENV [CI, false] ``` <!-- md:option rss.match_path --> : <!-- md:default `.*` --> This option specifies which pages should be included in the feed. For example, to only include blog posts in the feed, use the following regular expression: ``` yaml plugins: - rss: match_path: blog/posts/.* ``` <!-- md:option rss.date_from_meta --> : <!-- md:default none --> This option specifies which front matter property should be used as a creation date of a page in the feed. It's recommended to use the `date` property: ``` yaml plugins: - rss: date_from_meta: as_creation: date ``` <!-- md:option rss.categories --> : <!-- md:default none --> This option specifies which front matter properties are used as categories as part of the feed. If you use [categories] and [tags], add both with the following lines: ``` yaml plugins: - rss: categories: - categories - tags ``` <!-- md:option rss.comments_path --> : <!-- md:default none --> This option specifies the anchor at which comments for a post or page can be found. If you've integrated a [comment system], add the following lines: ``` yaml plugins: - rss: comments_path: "#__comments" ``` Material for MkDocs will automatically add the [necessary metadata] to your site which will make the RSS feed discoverable by browsers and feed readers. The other configuration options of this extension are not officially supported by Material for MkDocs, which is why they may yield unexpected results. Use them at your own risk. [rss]: https://guts.github.io/mkdocs-rss-plugin/ [categories]: ../plugins/blog.md#categories [tags]: setting-up-tags.md#built-in-tags-plugin [comment system]: adding-a-comment-system.md [necessary metadata]: https://guts.github.io/mkdocs-rss-plugin/configuration/#integration [theme extension]: ../customization.md ### Blog only You might need to build a pure blog without any documentation. In this case, you can create a folder tree like this: ``` { .sh .no-copy } . ├─ docs/ │ ├─ posts/ # (1)! │ ├─ .authors.yml │ └─ index.md └─ mkdocs.yml ``` 1. Notice that the `posts` directory is in the root of `docs` without intermediate `blog` directory. And add the following lines to `mkdocs.yml`: ``` yaml plugins: - blog: blog_dir: . # (1)! ``` 1. Please see the [plugin documentation] for more information about the [`blog_dir`][blog_dir] setting. With this configuration, the url of the blog post will be `/<post_slug>` instead of `/blog/<post_slug>`. ## Usage ### Writing your first post After you've successfully set up the [built-in blog plugin], it's time to write your first post. The plugin doesn't assume any specific directory structure, so you're completely free in how you organize your posts, as long as they are all located inside the `posts` directory: ``` { .sh .no-copy } . ├─ docs/ │ └─ blog/ │ ├─ posts/ │ │ └─ hello-world.md # (1)! │ └─ index.md └─ mkdocs.yml ``` 1. If you'd like to arrange posts differently, you're free to do so. The URLs are built from the format specified in [`post_url_format`][post slugs] and the titles and dates of posts, no matter how they are organized inside the `posts` directory. Create a new file called `hello-world.md` and add the following lines: ``` yaml --- draft: true # (1)! date: 2024-01-31 # (2)! categories: - Hello - World --- # Hello world! ... ``` 1. If you mark a post as a [draft], a red marker appears next to the post date on index pages. When the site is built, drafts are not included in the output. [This behavior can be changed], e.g. for rendering drafts when building deploy previews. 2. If you wish to provide multiple dates, you can use the following syntax, allowing you to define a date when you last updated the blog post + further custom dates you can add to the template: ``` yaml --- date: created: 2022-01-31 updated: 2022-02-02 --- # Hello world! ``` Note that the creation date __must__ be set under `date.created`, as each blog post must have a creation date set. When you spin up the [live preview server], you should be greeted by your first post! You'll also realize, that [archive] and [category] indexes have been automatically generated for you. [draft]: ../plugins/blog.md#drafts [This behavior can be changed]: ../plugins/blog.md#config.draft [live preview server]: ../creating-your-site.md#previewing-as-you-write #### Adding an excerpt The blog index, as well as [archive] and [category] indexes can either list the entire content of each post, or excerpts of posts. An excerpt can be created by adding a `<!-- more -->` separator after the first few paragraphs of a post: ``` py # Hello world! Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa. <!-- more --> ... ``` When the [built-in blog plugin] generates all indexes, the content before the [excerpt separator] is automatically extracted, allowing the user to start reading a post before deciding to jump in. [excerpt separator]: ../plugins/blog.md#config.post_excerpt_separator #### Adding authors In order to add a little more personality to your posts, you can associate each post with one or multiple [authors]. First, create the [`.authors.yml`][authors_file] file in your blog directory, and add an author: ``` yaml authors: squidfunk: name: Martin Donath description: Creator avatar: https://github.com/squidfunk.png ``` The [`.authors.yml`][authors_file] file associates each author with an identifier (in this example `squidfunk`), which can then be used in posts. Different attributes can be configured. For a list of all possible attributes, please consult the [`authors_file`][authors_file] documentation. Now, you can assign one or more authors to a post by referencing their identifiers in the front matter of the Markdown file under the `authors` property. For each author, a small profile is rendered in the left sidebar of each post, as well as in post excerpts on index pages: ``` yaml --- date: 2024-01-31 authors: - squidfunk ... --- # Hello world! ... ``` [authors]: ../plugins/blog.md#authors [authors_file]: ../plugins/blog.md#config.authors_file #### Adding author profiles <!-- md:sponsors --> <!-- md:version insiders-4.46.0 --> <!-- md:flag experimental --> If you wish to add a dedicated page for each author, you can enable author profiles by setting the [`authors_profiles`][authors_profiles] configuration option to `true`. Just add the following lines to `mkdocs.yml`: ``` yaml plugins: - blog: authors_profiles: true ``` If you combine this with [custom index pages], you can create a dedicated page for each author with a short description, social media links, etc. – basically anything you can write in Markdown. The list of posts is then appended after the content of the page. [authors_profiles]: ../plugins/blog.md#config.authors_profiles [custom index pages]: #custom-index-pages #### Adding categories Categories are an excellent way for grouping your posts thematically on dedicated index pages. This way, a user interested in a specific topic can explore all of your posts on this topic. Make sure [categories] are enabled and add them to the front matter `categories` property: ``` yaml --- date: 2024-01-31 categories: - Hello - World --- # Hello world! ... ``` If you want to save yourself from typos when typing out categories, you can define your desired categories in `mkdocs.yml` as part of the [`categories_allowed`][categories_allowed] configuration option. The [built-in blog plugin] will stop the build if a category is not found within the list. [categories_allowed]: ../plugins/blog.md#config.categories_allowed #### Adding tags Besides [categories], the [built-in blog plugin] also integrates with the [built-in tags plugin]. If you add tags in the front matter `tags` property as part of a post, the post is linked from the [tags index]: ``` yaml --- date: 2024-01-31 tags: - Foo - Bar --- # Hello world! ... ``` As usual, the tags are rendered above the main headline and posts are linked on the tags index page, if configured. Note that posts are, as pages, only linked with their titles. [built-in tags plugin]: ../plugins/tags.md [tags index]: setting-up-tags.md#adding-a-tags-index #### Changing the slug Slugs are the shortened description of your post used in the URL. They are automatically generated, but you can specify a custom slug for a page: ``` yaml --- slug: hello-world --- # Hello there world! ... ``` #### Adding related links <!-- md:version 9.6.0 --> <!-- md:flag experimental --> Related links offer the perfect way to prominently add a _further reading_ section to your post that is included in the left sidebar, guiding the user to other destinations of your documentation. Use the front matter `links` property to add related links to a post: ``` yaml --- date: 2024-01-31 links: - plugins/search.md - insiders/how-to-sponsor.md --- # Hello world! ... ``` You can use the exact same syntax as for the [`nav`][mkdocs.nav] section in `mkdocs.yml`, which means you can set explicit titles for links, add external links and even use nesting: ``` yaml --- date: 2024-01-31 links: - plugins/search.md - insiders/how-to-sponsor.md - Nested section: - External link: https://example.com - setup/setting-up-site-search.md --- # Hello world! ... ``` If you look closely, you'll realize that you can even use an anchor to link to a specific section of a document, extending the possibilities of the [`nav`][mkdocs.nav] syntax in `mkdocs.yml`. The [built-in blog plugin] resolves the anchor and sets the title of the anchor as a [subtitle] of the related link. Note that all links must be relative to [`docs_dir`][mkdocs.docs_dir], as is also the case for the [`nav`][mkdocs.nav] setting. [subtitle]: ../reference/index.md#setting-the-page-subtitle #### Linking from and to posts While [post URLs][post slugs] are dynamically computed, the [built-in blog plugin] ensures that all links from and to posts and a post's assets are correct. If you want to link to a post, just use the path to the Markdown file as a link reference (links must be relative): ``` markdown [Hello World!](blog/posts/hello-world.md) ``` Linking from a post to a page, e.g. the index, follows the same method: ``` markdown [Blog](../index.md) ``` All assets inside the `posts` directory are copied to the `blog/assets` folder when the site is being built. Of course, you can also reference assets from posts outside of the `posts` directory. The [built-in blog plugin] ensures that all links are correct. #### Pinning a post <!-- md:sponsors --> <!-- md:version insiders-4.53.0 --> <!-- md:flag experimental --> If you want to pin a post to the top of the index page, as well as the archive and category indexes it is part of, you can use the front matter `pin` property: ``` yaml --- date: 2024-01-31 pin: true --- # Hello world! ... ``` If multiple posts are pinned, they are sorted by their creation date, with the most recent pinned post being shown first, followed by the other pinned posts in descending order. #### Setting the reading time When [enabled], the [readtime] package is used to compute the expected reading time of each post, which is rendered as part of the post and post excerpt. Nowadays, many blogs show reading times, which is why the [built-in blog plugin] offers this capability as well. Sometimes, however, the computed reading time might not feel accurate, or result in odd and unpleasant numbers. For this reason, reading time can be overridden and explicitly set with the front matter `readtime` property for a post: ``` yaml --- date: 2024-01-31 readtime: 15 --- # Hello world! ... ``` This will disable automatic reading time computation. [readtime]: https://pypi.org/project/readtime/ [enabled]: ../plugins/blog.md#config.post_readtime #### Setting defaults <!-- md:version 9.6.0 --> <!-- md:plugin [meta][built-in meta plugin] – built-in --> <!-- md:flag experimental --> If you have a lot of posts, it might feel redundant to define all of the above for each post. Luckily, the [built-in meta plugin] allows to set default front matter properties per folder. You can group your posts by categories, or authors, and add a `.meta.yml` file to set common properties: ``` { .sh .no-copy } . ├─ docs/ │ └─ blog/ │ ├─ posts/ │ ├─ .meta.yml # (1)! │ └─ index.md └─ mkdocs.yml ``` 1. As already noted, you can also place a `.meta.yml` file in nested folders of the `posts` directory. This file then can define all front matter properties that are valid in posts, e.g.: ``` yaml authors: - squidfunk categories: - Hello - World ``` Note that order matters – the [built-in meta plugin] must be defined before the blog plugin in `mkdocs.yml`, so that all set defaults are correctly picked up by the [built-in blog plugin]: ``` yaml plugins: - meta - blog ``` Lists and dictionaries in `.meta.yml` files are merged and deduplicated with the values defined for a post, which means you can define common properties in `.meta.yml` and then add specific properties or overrides for each post. [built-in meta plugin]: ../plugins/meta.md ### Adding pages Besides posts, it's also possible to add static pages to your blog by listing the pages in the [`nav`][mkdocs.nav] section of `mkdocs.yml`. All generated indexes are included after the last specified page. For example, to add a page on the authors of the blog, add the following to `mkdocs.yml`: ``` yaml nav: - Blog: - blog/index.md - blog/authors.md ... ``` ## Customization ### Custom index pages <!-- md:version 9.6.0 --> <!-- md:flag experimental --> If you want to add custom content to automatically generated [archive] and [category] indexes, e.g. to add a category description prior to the list of posts, you can manually create the category page in the same location where the [built-in blog plugin] would create it: ``` { .sh .no-copy } . ├─ docs/ │ └─ blog/ │ ├─ category/ │ │ └─ hello.md # (1)! │ ├─ posts/ │ └─ index.md └─ mkdocs.yml ``` 1. The easiest way is to first [add the category] to the blog post, then take the URL generated by the [built-in blog plugin] and create the file at the corresponding location in the [`blog_dir`][blog_dir] folder. Note that the shown directory listing is based on the default configuration. If you specify different values for the following options, be sure to adjust the path accordingly: - [`blog_dir`][blog_dir] - [`categories_url_format`][categories_url_format] - [`categories_slugify`][categories_slugify] You can now add arbitrary content to the newly created file, or set specific front matter properties for this page, e.g. to change the [page description]: ``` yaml --- description: Nullam urna elit, malesuada eget finibus ut, ac tortor. --- # Hello ... ``` All post excerpts belonging to the category are automatically appended. [add the category]: #adding-categories [page description]: ../reference/index.md#setting-the-page-description [categories_url_format]: ../plugins/blog.md#config.categories_url_format [categories_slugify]: ../plugins/blog.md#config.categories_slugify [blog_dir]: ../plugins/blog.md#config.blog_dir ### Overriding templates The [built-in blog plugin] is built on the same basis as Material for MkDocs, which means you can override all templates used for the blog by using [theme extension] as usual. The following templates are added by the [built-in blog plugin]: - [`blog.html`][blog.html] – Template for blog, archive and category index - [`blog-post.html`][blog-post.html] – Template for blog post [theme extension]: ../customization.md#extending-the-theme [blog.html]: https://github.com/squidfunk/mkdocs-material/blob/master/src/templates/blog.html [blog-post.html]: https://github.com/squidfunk/mkdocs-material/blob/master/src/templates/blog-post.html ����������������mkdocs-material-9.6.4/docs/setup/setting-up-navigation.md�������������������������������������������0000664�0000000�0000000�00000043473�14753064456�0023505�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Setting up navigation A clear and concise navigation structure is an important aspect of good project documentation. Material for MkDocs provides a multitude of options to configure the behavior of navigational elements, including [tabs] and [sections], and one of its flagship features: [instant loading]. [tabs]: #navigation-tabs [sections]: #navigation-sections [instant loading]: #instant-loading Additional navigation can be configured [in the footer] as well as with the [tags plugin]. The [blog plugin] also sets up additional navigation. [in the footer]: setting-up-the-footer.md#navigation [tags plugin]: ../plugins/tags.md [blog plugin]: ../plugins/blog.md ## Configuration ### Instant loading <!-- md:version 5.0.0 --> <!-- md:feature --> When instant loading is enabled, clicks on all internal links will be intercepted and dispatched via [XHR] without fully reloading the page. Add the following lines to `mkdocs.yml`: ``` yaml theme: features: - navigation.instant ``` The resulting page is parsed and injected and all event handlers and components are rebound automatically, i.e., __Material for MkDocs now behaves like a Single Page Application__. Now, the search index survives navigation, which is especially useful for large documentation sites. !!! info "The [`site_url`][mkdocs.site_url] setting must be set" Note that you must set [`site_url`][mkdocs.site_url] when using instant navigation, as instant navigation relies on the generated `sitemap.xml` which will be empty if this setting is omitted. Example: ``` yaml site_url: https://example.com ``` [XHR]: https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest #### Instant prefetching <!-- md:sponsors --> <!-- md:version insiders-4.36.0 --> <!-- md:feature --> <!-- md:flag experimental --> Instant prefetching is a new experimental feature that will start to fetch a page once the user hovers over a link. This will reduce the perceived loading time for the user, especially on slow connections, as the page will be available immediately upon navigation. Enable it with: ``` yaml theme: features: - navigation.instant - navigation.instant.prefetch ``` #### Progress indicator <!-- md:version 9.4.3 --> <!-- md:feature --> <!-- md:flag experimental --> In order to provide a better user experience on slow connections when using instant navigation, a progress indicator can be enabled. It will be shown at the top of the page and will be hidden once the page has fully loaded. You can enable it in `mkdocs.yml` with: ``` yaml theme: features: - navigation.instant - navigation.instant.progress ``` The progress indicator will only show if the page hasn't finished loading after 400ms, so that fast connections will never show it for a better instant experience. ### Instant previews <!-- md:sponsors --> <!-- md:version insiders-4.52.0 --> <!-- md:feature --> <!-- md:flag experimental --> Instant previews are a brand new feature that allow the user to preview another site of your documentation without navigating to it. They can be very helpful to keep the user in context. Instant previews can be enabled on any header link with the `data-preview` attribute: ```` markdown title="Link with instant preview" ``` markdown [Attribute Lists](#){ data-preview } ``` ```` <div class="result" markdown> [Attribute Lists](extensions/python-markdown.md#attribute-lists){ data-preview } </div> !!! info "Limitations" Instant previews are still an experimental feature and currently limited to headerlinks. This means, you can use them on any internal link that points to a header on another page, but not other elements with `id` attributes. After we have gathered enough feedback, we will consider extending this feature to other, and possibly arbitrary elements. #### Automatic previews <!-- md:sponsors --> <!-- md:version insiders-4.53.0 --> <!-- md:extension --> <!-- md:flag experimental --> The recommended way to work with instant previews is to use the Markdown extension that is included with Material for MkDocs, as it allows you to enable instant previews on a per-page or per-section level for your documentation: ``` yaml markdown_extensions: - material.extensions.preview: targets: include: - changelog/index.md - customization.md - insiders/changelog/* - setup/extensions/* ``` The above configuration is what we use for our documentation. We've enabled instant previews for our changelogs, customization guide, and Insiders sections, as well as for all Markdown extensions that we support. !!! info "Full configuration example" ``` yaml markdown_extensions: - material.extensions.preview: sources: # (1)! include: - ... exclude: - ... targets: # (2)! include: - ... exclude: - ... ``` 1. Sources specify the pages _on_ which instant previews should be enabled. If this setting is omitted, instant previews will be enabled on all pages. You can use patterns to include or exclude pages. Exclusion is evaluated on top of inclusion, so if a page is matched by both, it will be excluded. 2. Targets specify the pages _to_ which instant previews should be enabled. This is the recommended way to enable instant previews. --- Instant previews can also be enabled globally by adding the following lines to `mkdocs.yml`, which will enable instant previews for all header links, alleviating the need to add data attributes: ``` yaml theme: features: - navigation.instant.preview ``` !!! info "The [`site_url`][mkdocs.site_url] setting must be set" Note that you must set [`site_url`][mkdocs.site_url] when using instant previews, as instant previews rely on the generated `sitemap.xml` which will be empty if this setting is omitted. Example: ``` yaml site_url: https://example.com ``` ### Anchor tracking <!-- md:version 8.0.0 --> <!-- md:feature --> When anchor tracking is enabled, the URL in the address bar is automatically updated with the active anchor as highlighted in the table of contents. Add the following lines to `mkdocs.yml`: ``` yaml theme: features: - navigation.tracking ``` ### Navigation tabs <!-- md:version 1.1.0 --> <!-- md:feature --> When tabs are enabled, top-level sections are rendered in a menu layer below the header for viewports above `1220px`, but remain as-is on mobile.[^1] Add the following lines to `mkdocs.yml`: [^1]: Prior to <!-- md:version 6.2.0 -->, navigation tabs had a slightly different behavior. All top-level pages (i.e. all top-level entries directly referring to a `*.md` file) defined inside the `nav` entry of `mkdocs.yml` were grouped under the first tab which received the title of the first page. This made it impossible to include a top-level page (or external link) as a tab item, as was reported in #1884 and #2072. From <!-- md:version 6.2.0 --> on, navigation tabs include all top-level pages and sections. ``` yaml theme: features: - navigation.tabs ``` === "With tabs" [![Navigation tabs enabled]][Navigation tabs enabled] === "Without" [![Navigation tabs disabled]][Navigation tabs disabled] [Navigation tabs enabled]: ../assets/screenshots/navigation-tabs.png [Navigation tabs disabled]: ../assets/screenshots/navigation.png #### Sticky navigation tabs <!-- md:version 7.3.0 --> <!-- md:feature --> When sticky tabs are enabled, navigation tabs will lock below the header and always remain visible when scrolling down. Just add the following two feature flags to `mkdocs.yml`: ``` yaml theme: features: - navigation.tabs - navigation.tabs.sticky ``` === "With sticky tabs" [![Sticky navigation tabs enabled]][Sticky navigation tabs enabled] === "Without" [![Sticky navigation tabs disabled]][Sticky navigation tabs disabled] [Sticky navigation tabs enabled]: ../assets/screenshots/navigation-tabs-sticky.png [Sticky navigation tabs disabled]: ../assets/screenshots/navigation-tabs-collapsed.png ### Navigation sections <!-- md:version 6.2.0 --> <!-- md:feature --> When sections are enabled, top-level sections are rendered as groups in the sidebar for viewports above `1220px`, but remain as-is on mobile. Add the following lines to `mkdocs.yml`: ``` yaml theme: features: - navigation.sections ``` === "With sections" [![Navigation sections enabled]][Navigation sections enabled] === "Without" [![Navigation sections disabled]][Navigation sections disabled] [Navigation sections enabled]: ../assets/screenshots/navigation-sections.png [Navigation sections disabled]: ../assets/screenshots/navigation.png Both feature flags, [`navigation.tabs`][tabs] and [`navigation.sections`][sections], can be combined with each other. If both feature flags are enabled, sections are rendered for level 2 navigation items. ### Navigation expansion <!-- md:version 6.2.0 --> <!-- md:feature --> When expansion is enabled, the left sidebar will expand all collapsible subsections by default, so the user doesn't have to open subsections manually. Add the following lines to `mkdocs.yml`: ``` yaml theme: features: - navigation.expand ``` === "With expansion" [![Navigation expansion enabled]][Navigation expansion enabled] === "Without" [![Navigation expansion disabled]][Navigation expansion disabled] [Navigation expansion enabled]: ../assets/screenshots/navigation-expand.png [Navigation expansion disabled]: ../assets/screenshots/navigation.png ### Navigation path <small>Breadcrumbs</small> { id=navigation-path } <!-- md:sponsors --> <!-- md:version insiders-4.28.0 --> <!-- md:feature --> <!-- md:flag experimental --> When navigation paths are activated, a breadcrumb navigation is rendered above the title of each page, which might make orientation easier for users visiting your documentation on devices with smaller screens. Add the following lines to `mkdocs.yml`: ``` yaml theme: features: - navigation.path ``` === "With navigation path" [![Navigation path enabled]][Navigation path enabled] === "Without" [![Navigation path disabled]][Navigation path disabled] [Navigation path enabled]: ../assets/screenshots/navigation-path-on.png [Navigation path disabled]: ../assets/screenshots/navigation-path-off.png ### Navigation pruning <!-- md:version 9.2.0 --> <!-- md:feature --> <!-- md:flag experimental --> When pruning is enabled, only the visible navigation items are included in the rendered HTML, __reducing the size of the built site by 33% or more__. Add the following lines to `mkdocs.yml`: ``` yaml theme: features: - navigation.prune # (1)! ``` 1. This feature flag is not compatible with [`navigation.expand`][navigation.expand], as navigation expansion requires the complete navigation structure. This feature flag is especially useful for documentation sites with 100+ or even 1,000+ of pages, as the navigation makes up a significant fraction of the HTML. Navigation pruning will replace all expandable sections with links to the first page in that section (or the section index page). [navigation.expand]: #navigation-expansion ### Section index pages <!-- md:version 7.3.0 --> <!-- md:feature --> When section index pages are enabled, documents can be directly attached to sections, which is particularly useful for providing overview pages. Add the following lines to `mkdocs.yml`: ``` yaml theme: features: - navigation.indexes # (1)! ``` 1. This feature flag is not compatible with [`toc.integrate`][toc.integrate], as sections cannot host the table of contents due to missing space. === "With section index pages" [![Section index pages enabled]][Section index pages enabled] === "Without" [![Section index pages disabled]][Section index pages disabled] In order to link a page to a section, create a new document with the name `index.md` in the respective folder, and add it to the beginning of your navigation section: ``` yaml nav: - Section: - section/index.md # (1)! - Page 1: section/page-1.md ... - Page n: section/page-n.md ``` 1. MkDocs also considers files called `README.md` as [index pages]. [Section index pages enabled]: ../assets/screenshots/navigation-index-on.png [Section index pages disabled]: ../assets/screenshots/navigation-index-off.png [toc.integrate]: #navigation-integration [index pages]: https://www.mkdocs.org/user-guide/writing-your-docs/#index-pages ### Table of contents #### Anchor following <!-- md:version 8.5.0 --> <!-- md:feature --> <!-- md:flag experimental --> When anchor following for the [table of contents] is enabled, the sidebar is automatically scrolled so that the active anchor is always visible. Add the following lines to `mkdocs.yml`: ``` yaml theme: features: - toc.follow ``` #### Navigation integration <!-- md:version 6.2.0 --> <!-- md:feature --> When navigation integration for the [table of contents] is enabled, it is always rendered as part of the navigation sidebar on the left. Add the following lines to `mkdocs.yml`: ``` yaml theme: features: - toc.integrate # (1)! ``` 1. This feature flag is not compatible with [`navigation.indexes`][navigation.indexes], as sections cannot host the table of contents due to missing space. === "With navigation integration" [![Navigation integration enabled]][Navigation integration enabled] === "Without" [![Navigation integration disabled]][Navigation integration disabled] [table of contents]: extensions/python-markdown.md#table-of-contents [Navigation integration enabled]: ../assets/screenshots/toc-integrate.png [Navigation integration disabled]: ../assets/screenshots/navigation-tabs.png [navigation.indexes]: #section-index-pages ### Back-to-top button <!-- md:version 7.1.0 --> <!-- md:feature --> A back-to-top button can be shown when the user, after scrolling down, starts to scroll up again. It's rendered centered and just below the header. Add the following lines to `mkdocs.yml`: ``` yaml theme: features: - navigation.top ``` ## Usage ### Hiding the sidebars <!-- md:version 6.2.0 --> <!-- md:flag metadata --> The navigation and/or table of contents sidebars can be hidden for a document with the front matter `hide` property. Add the following lines at the top of a Markdown file: ``` yaml --- hide: - navigation - toc --- # Page title ... ``` === "Hide navigation" [![Hide navigation enabled]][Hide navigation enabled] === "Hide table of contents" [![Hide table of contents enabled]][Hide table of contents enabled] === "Hide both" [![Hide both enabled]][Hide both enabled] [Hide navigation enabled]: ../assets/screenshots/hide-navigation.png [Hide table of contents enabled]: ../assets/screenshots/hide-toc.png [Hide both enabled]: ../assets/screenshots/hide-navigation-toc.png ### Hiding the navigation path <!-- md:sponsors --> <!-- md:version insiders-4.28.0 --> <!-- md:flag metadata --> While the [navigation path] is rendered above the main headline, sometimes, it might be desirable to hide it for a specific page, which can be achieved with the front matter `hide` property: ``` yaml --- hide: - path --- # Page title ... ``` [navigation path]: #navigation-path ## Customization ### Keyboard shortcuts Material for MkDocs includes several keyboard shortcuts that make it possible to navigate your project documentation via keyboard. There are two modes: <!-- md:option mode:search --> : This mode is active when the _search is focused_. It provides several key bindings to make search accessible and navigable via keyboard: * ++arrow-down++ , ++arrow-up++ : select next / previous result * ++esc++ , ++tab++ : close search dialog * ++enter++ : follow selected result <!-- md:option mode:global --> : This mode is active when _search is not focussed_ and when there's no other focussed element that is susceptible to keyboard input. The following keys are bound: * ++f++ , ++s++ , ++slash++ : open search dialog * ++p++ , ++comma++ : go to previous page * ++n++ , ++period++ : go to next page Let's say you want to bind some action to the ++x++ key. By using [additional JavaScript], you can subscribe to the `keyboard$` observable and attach your custom event listener: === ":octicons-file-code-16: `docs/javascripts/shortcuts.js`" ``` js keyboard$.subscribe(function(key) { if (key.mode === "global" && key.type === "x") { /* Add custom keyboard handler here */ key.claim() // (1)! } }) ``` 1. The call to `key.claim()` will execute `preventDefault()` on the underlying event, so the keypress will not propagate further and touch other event listeners. === ":octicons-file-code-16: `mkdocs.yml`" ``` yaml extra_javascript: - javascripts/shortcuts.js ``` [additional JavaScript]: ../customization.md#additional-javascript ### Content area width The width of the content area is set so the length of each line doesn't exceed 80-100 characters, depending on the width of the characters. While this is a reasonable default, as longer lines tend to be harder to read, it may be desirable to increase the overall width of the content area, or even make it stretch to the entire available space. This can easily be achieved with an [additional style sheet] and a few lines of CSS: === ":octicons-file-code-16: `docs/stylesheets/extra.css`" ``` css .md-grid { max-width: 1440px; /* (1)! */ } ``` 1. If you want the content area to always stretch to the available screen space, reset `max-width` with the following CSS: ``` css .md-grid { max-width: initial; } ``` === ":octicons-file-code-16: `mkdocs.yml`" ``` yaml extra_css: - stylesheets/extra.css ``` [additional style sheet]: ../customization.md#additional-css �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/setup/setting-up-site-analytics.md���������������������������������������0000664�0000000�0000000�00000025537�14753064456�0024300�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Setting up site analytics As with any other service offered on the web, understanding how your project documentation is actually used can be an essential success factor. Material for MkDocs natively integrates with [Google Analytics] and offers a customizable [cookie consent] and a [feedback widget]. [Google Analytics]: https://developers.google.com/analytics [cookie consent]: ensuring-data-privacy.md#cookie-consent [feedback widget]: #was-this-page-helpful ## Configuration ### Google Analytics <!-- md:version 7.1.8 --> <!-- md:default none --> Material for MkDocs integrates natively with Google Analytics 4[^1]. If you already set up Google Analytics and have a property, enable it by adding the following lines to `mkdocs.yml`: [^1]: Prior to Material for MkDocs 9.2.0, Universal Analytics was supported as well. However, since Universal Analytics has been sunset, this integration was removed in 9.2.0. ``` yaml extra: analytics: provider: google property: G-XXXXXXXXXX ``` ??? question "How to measure site search usage?" Besides page views and events, [site search] can be tracked to better understand how people use your documentation and what they expect to find. In order to enable site search tracking, the following steps are required: 1. Go to your Google Analytics __admin settings__ 2. Select the property for the respective tracking code 3. Select the __data streams__ tab and click the corresponding URL 4. Click the gear icon within the __enhanced measurement__ section 5. Ensure that __site search__ is enabled [site search]: setting-up-site-search.md ### Was this page helpful? <!-- md:version 8.4.0 --> <!-- md:default none --> A simple [feedback widget] can be included at the bottom of each page, encouraging users to give instant feedback whether a page was helpful or not. Add the following lines to `mkdocs.yml`: ``` yaml extra: analytics: # (1)! feedback: title: Was this page helpful? ratings: - icon: material/emoticon-happy-outline name: This page was helpful data: 1 note: >- Thanks for your feedback! - icon: material/emoticon-sad-outline name: This page could be improved data: 0 note: >- # (2)! Thanks for your feedback! Help us improve this page by using our <a href="..." target="_blank" rel="noopener">feedback form</a>. ``` 1. This feature is natively integrated with [Google Analytics][analytics], which is why `provider` and `property` are also required. However, it's also possible to provide a [custom feedback integration]. 2. You can add arbitrary HTML tags to the note which is shown after the user submitted the feedback, e.g. to link to a feedback form. Both properties, `title` and `ratings`, are required. Note that it's allowed to define more than two ratings, e.g. to implement a 1-5 star rating. Since the feedback widget sends data to a third-party service, it is, of course, natively integrated with the [cookie consent] feature[^2]. [^2]: If the user doesn't accept the `analytics` cookie, the feedback widget is not shown. ??? question "How to visualize the collected feedback ratings?" To visualize feedback ratings you'll need to create a custom report with [Google Analytics] that will quickly show you the worst- and best-rated pages of your project documentation. 1. Go to your Google Analytics __dashboard__ 2. Go to the __Admin__ page on the left hand menu (at the bottom), then select __custom definitions__ on the __Data display__ card 3. Click the __custom metrics__ tab and then __create custom metrics__, enter the following values: * Metric name: Page helpful * Description: Was this page helpful? * Event parameter: `data` * Unit of measurement: Standard 4. Go to the __explore__ page on the left hand menu, create a new __blank exploration__ 5. Configure the report as follows: * Dimensions: Add `Event name` and `Page location` * Metrics: Add `Event count` and `Page helpful` (the custom metric created in step 3) * Rows: `Page location` * Values: Drag in both `Event count` and `Page helpful` * Filters: Add a new filter for `Event name / exactly matches / feedback` !!! warning "Delay in data availability" The report may take 24 hours or longer to begin displaying data Now, after you've saved the report and collected some feedback ratings, you'll have a list of all pages with the total number of ratings, and an average rating per page. This should help you identify pages that need to be improved: !!! danger "Google Analytics 4 does not support average values" To our knowledge, Google Analytics 4 has currently no feature that allows to define a custom calculated metric to compute the average rating of a page. See #5740. [![feedback report]][feedback report] The following properties are available for each rating: <!-- md:option analytics.feedback.ratings.icon --> : <!-- md:default none --> <!-- md:flag required --> This property must point to a valid icon path referencing [any icon bundled with the theme][custom icons], or the build will not succeed. Some popular combinations: * :material-emoticon-happy-outline: + :material-emoticon-sad-outline: – `material/emoticon-happy-outline` + `material/emoticon-sad-outline` * :material-thumb-up-outline: + :material-thumb-down-outline: – `material/thumb-up-outline` + `material/thumb-down-outline` * :material-heart: + :material-heart-broken: – `material/heart` + `material/heart-broken` <!-- md:option analytics.feedback.ratings.name --> : <!-- md:default none --> <!-- md:flag required --> The value of this property is shown on user interaction (i.e. keyboard focus or mouse hover), explaining the meaning of the rating behind the icon. <!-- md:option analytics.feedback.ratings.data --> : <!-- md:default none --> <!-- md:flag required --> The value of this property is sent as a data value with the custom event that is transmitted to Google Analytics[^3] (or any custom integration). [^3]: Note that for Google Analytics, the data value must be an integer. <!-- md:option analytics.feedback.ratings.note --> : <!-- md:default none --> <!-- md:flag required --> The value of this property is shown after the user selected the rating. It may contain arbitrary HTML tags, which is especially useful to ask the user to provide more detailed feedback for the current page through a form. It's also possible to pre-fill forms with the URL and title of the current page by using the following placeholders: - `{url}` – Page URL - `{title}` – Page title ``` https://github.com/.../issues/new/?title=[Feedback]+{title}+-+{url} ``` In this example, when clicking the link, the user is redirected to the "new issue" form of your repository, with a pre-filled title including the path of the current document, e.g.: ``` [Feedback] Setting up site analytics – /setup/setting-up-site-analytics/ ``` An alternative to GitHub issues is [Google Forms]. [feedback widget]: #feedback [analytics]: #google-analytics [feedback report]: ../assets/screenshots/feedback-report.png [custom feedback integration]: #custom-site-feedback [custom icons]: https://github.com/squidfunk/mkdocs-material/tree/master/material/templates/.icons [Google Forms]: https://www.google.com/forms/about/ ## Usage ### Hiding the feedback widget The [feedback widget] can be hidden for a document with the front matter `hide` property. Add the following lines at the top of a Markdown file: ``` yaml --- hide: - feedback --- # Page title ... ``` ## Customization ### Custom site analytics In order to integrate another analytics service provider offering a JavaScript-based tracking solution, just follow the guide on [theme extension] and create a new partial in the `overrides` folder. The name of the partial is used to configure the custom integration via `mkdocs.yml`: === ":octicons-file-code-16: `overrides/partials/integrations/analytics/custom.html`" ``` html <script> /* Add custom analytics integration here, e.g. */ var property = "{{ config.extra.analytics.property }}" // (1)! /* Wait for page to load and application to mount */ document.addEventListener("DOMContentLoaded", function() { location$.subscribe(function(url) { /* Add custom page event tracking here */ // (2)! }) }) </script> ``` 1. As an example, this variable receives the value set in `mkdocs.yml`, which is `"foobar"` for `property`. 2. If you're using [instant loading], you can use the `location$` observable to listen for navigation events, which always emits the current `URL`. === ":octicons-file-code-16: `mkdocs.yml`" ``` yaml extra: analytics: provider: custom property: foobar # (1)! ``` 1. You can add arbitrary key-value combinations to configure your custom integration. This is especially useful if you're sharing the custom integration across multiple repositories. [theme extension]: ../customization.md#extending-the-theme [instant loading]: setting-up-navigation.md#instant-loading ### Custom site feedback A custom feedback widget integration just needs to process the events that are generated by users interacting with the feedback widget with the help of some [additional JavaScript]: === ":octicons-file-code-16: `docs/javascripts/feedback.js`" ``` js var feedback = document.forms.feedback feedback.hidden = false // (1)! feedback.addEventListener("submit", function(ev) { ev.preventDefault() var page = document.location.pathname // (2)! var data = ev.submitter.getAttribute("data-md-value") console.log(page, data) // (3)! feedback.firstElementChild.disabled = true // (4)! var note = feedback.querySelector( ".md-feedback__note [data-md-value='" + data + "']" ) if (note) note.hidden = false // (5)! }) ``` 1. The feedback widget is hidden by default so that it does not appear when people have JavaScript turned off. So, it needs to be turned on here. 2. Retrieve page and feedback value. 3. Replace this with the code that sends the data off to your analytics provider. 4. Disable the form after submission. 5. Show the configured notes. Which one is shown depends on the user feedback. === ":octicons-file-code-16: `mkdocs.yml`" ``` yaml extra_javascript: - javascripts/feedback.js ```   { #feedback style="margin: 0; height: 0" } [additional JavaScript]: ../customization.md#additional-javascript �����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/setup/setting-up-site-search.md������������������������������������������0000664�0000000�0000000�00000011574�14753064456�0023552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- search: boost: 1.05 --- # Setting up site search Material for MkDocs provides an excellent client-side search implementation, omitting the need for the integration of third-party services, which might not be compliant with privacy regulations. Moreover, search even works [offline], allowing users to download your documentation. [offline]: building-for-offline-usage.md ## Configuration ### Built-in search plugin <!-- md:version 0.1.0 --> <!-- md:plugin --> The built-in search plugin integrates seamlessly with Material for MkDocs, adding multilingual client-side search with [lunr] and [lunr-languages]. It's enabled by default, but must be re-added to `mkdocs.yml` when other plugins are used: ``` yaml plugins: - search ``` For a list of all settings, please consult the [plugin documentation]. [plugin documentation]: ../plugins/search.md [lunr]: https://lunrjs.com [lunr-languages]: https://github.com/MihaiValentin/lunr-languages ### Search suggestions <!-- md:version 7.2.0 --> <!-- md:feature --> <!-- md:flag experimental --> When search suggestions are enabled, the search will display the likeliest completion for the last word which can be accepted with the ++arrow-right++ key. Add the following lines to `mkdocs.yml`: ``` yaml theme: features: - search.suggest ``` Searching for [:octicons-search-24: search su][Search suggestions example] yields ^^search suggestions^^ as a suggestion. [Search suggestions example]: ?q=search+su ### Search highlighting <!-- md:version 7.2.0 --> <!-- md:feature --> <!-- md:flag experimental --> When search highlighting is enabled and a user clicks on a search result, Material for MkDocs will highlight all occurrences after following the link. Add the following lines to `mkdocs.yml`: ``` yaml theme: features: - search.highlight ``` Searching for [:octicons-search-24: code blocks][Search highlighting example] highlights all occurrences of both terms. [Search highlighting example]: ../reference/code-blocks.md?h=code+blocks ### Search sharing <!-- md:version 7.2.0 --> <!-- md:feature --> When search sharing is activated, a :material-share-variant: share button is rendered next to the reset button, which allows to deep link to the current search query and result. Add the following lines to `mkdocs.yml`: ``` yaml theme: features: - search.share ``` When a user clicks the share button, the URL is automatically copied to the clipboard. ## Usage ### Search boosting <!-- md:version 8.3.0 --> <!-- md:flag metadata --> Pages can be boosted in search with the front matter `search.boost` property, which will make them rank higher. Add the following lines at the top of a Markdown file: === ":material-arrow-up-circle: Rank up" ``` yaml --- search: boost: 2 # (1)! --- # Page title ... ``` 1. :woman_in_lotus_position: When boosting pages, be gentle and start with __low values__. === ":material-arrow-down-circle: Rank down" ``` yaml --- search: boost: 0.5 --- # Page title ... ``` ### Search exclusion <!-- md:version 9.0.0 --> <!-- md:flag metadata --> <!-- md:flag experimental --> Pages can be excluded from search with the front matter `search.exclude` property, removing them from the index. Add the following lines at the top of a Markdown file: ``` yaml --- search: exclude: true --- # Page title ... ``` #### Excluding sections When [Attribute Lists] is enabled, specific sections of pages can be excluded from search by adding the `data-search-exclude` pragma after a Markdown heading: === ":octicons-file-code-16: `docs/page.md`" ``` markdown # Page title ## Section 1 The content of this section is included ## Section 2 { data-search-exclude } The content of this section is excluded ``` === ":octicons-codescan-16: `search_index.json`" ``` json { ... "docs": [ { "location":"page/", "text":"", "title":"Document title" }, { "location":"page/#section-1", "text":"<p>The content of this section is included</p>", "title":"Section 1" } ] } ``` [Attribute Lists]: extensions/python-markdown.md#attribute-lists #### Excluding blocks When [Attribute Lists] is enabled, specific sections of pages can be excluded from search by adding the `data-search-exclude` pragma after a Markdown inline- or block-level element: === ":octicons-file-code-16: `docs/page.md`" ``` markdown # Page title The content of this block is included The content of this block is excluded { data-search-exclude } ``` === ":octicons-codescan-16: `search_index.json`" ``` json { ... "docs": [ { "location":"page/", "text":"<p>The content of this block is included</p>", "title":"Document title" } ] } ``` ������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/setup/setting-up-social-cards.md�����������������������������������������0000664�0000000�0000000�00000046631�14753064456�0023711�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Setting up social cards Material for MkDocs can automatically create beautiful social cards for your documentation, which appear as link previews on social media platforms. You can select from several [pre-designed layouts][default layouts] or create [custom layouts] to match your unique style and branding. --- :fontawesome-brands-youtube:{ style="color: #EE0F0F" } __[How to build custom social cards]__ by @james-willett – :octicons-clock-24: 24m – Learn how to create entirely custom social cards perfectly matching your branding for each page automatically! [How to build custom social cards]: https://www.youtube.com/watch?v=4OjnOc6ftJ8 <figure markdown> [![Layout default variant]][Layout default variant] <figcaption markdown> Social card of our [formatting] reference </figcaption> </figure> [default layouts]: ../plugins/social.md#layouts [custom layouts]: #customization [formatting]: ../reference/formatting.md [Layout default variant]: ../assets/screenshots/social-cards-variant.png ## Configuration ### Built-in social plugin <!-- md:version 8.5.0 --> <!-- md:plugin --> <!-- md:flag experimental --> <!-- md:demo create-social-cards --> The built-in social plugin automatically generate a custom preview image for each page. Install all [dependencies for image processing] and add the following lines to `mkdocs.yml`: ``` yaml plugins: - social ``` For a list of all settings, please consult the [plugin documentation]. [plugin documentation]: ../plugins/social.md !!! info "The [`site_url`][site_url] setting must be set" Note that you must set [`site_url`][site_url] when using the social plugin, or the generated cards will not be correctly linked. Social media services like X and Facebook demand that social previews point to an absolute URL, which the plugin can only compute when [`site_url`][site_url] is set. Example: ``` yaml site_url: https://example.com ``` [dependencies for image processing]: ../plugins/requirements/image-processing.md [site_url]: https://www.mkdocs.org/user-guide/configuration/#site_url ## Usage If you want to adjust the title or set a custom description for the social card, you can set the front matter [`title`][Changing the title] and [`description`][Changing the description] properties, which take precedence over the defaults, or use: - [`cards_layout_options.title`](../plugins/social.md#option.title) - [`cards_layout_options.description`](../plugins/social.md#option.description) [Changing the title]: ../reference/index.md#setting-the-page-title [Changing the description]: ../reference/index.md#setting-the-page-description ### Choosing a font Some fonts do not contain CJK characters, like for example the [default font, `Roboto`][font]. In case your `site_name`, `site_description`, or page title contain CJK characters, choose another font from [Google Fonts] which comes with CJK characters, e.g. one from the `Noto Sans` font family: === "Chinese (Simplified)" ``` yaml plugins: - social: cards_layout_options: font_family: Noto Sans SC ``` === "Chinese (Traditional)" ``` yaml plugins: - social: cards_layout_options: font_family: Noto Sans TC ``` === "Japanese" ``` yaml plugins: - social: cards_layout_options: font_family: Noto Sans JP ``` === "Korean" ``` yaml plugins: - social: cards_layout_options: font_family: Noto Sans KR ``` [font]: changing-the-fonts.md#regular-font ### Changing the layout <!-- md:version insiders-4.37.0 --> <!-- md:flag metadata --> <!-- md:flag experimental --> If you want to use a different layout for a single page (e.g. your landing page), you can use the `social` front matter property together with the [`cards_layout`](../plugins/social.md#meta.social.cards_layout) key, exactly as in `mkdocs.yml`: ``` yaml --- social: cards_layout: custom --- # Page title ... ``` You can apply those changes for entire subtrees of your documentation, e.g., to generate different social cards for your blog and API reference, by using the [built-in meta plugin]. [built-in meta plugin]: ../plugins/meta.md ### Parametrizing the layout <!-- md:version insiders-4.37.0 --> <!-- md:flag metadata --> <!-- md:flag experimental --> Besides changing the entire layout, you can override all options that a layout exposes. This means you can parametrize social cards with custom front matter properties, such as `tags`, `date`, `author` or anything you can think of. Simply define [`cards_layout_options`](../plugins/social.md#meta.social.cards_layout_options): ``` yaml --- social: cards_layout_options: background_color: blue # Change background color background_image: null # Remove background image --- # Page title ... ``` You can apply those changes for entire subtrees of your documentation, e.g., to generate different social cards for your blog and API reference, by using the [built-in meta plugin]. ### Disabling social cards <!-- md:version insiders-4.37.0 --> <!-- md:flag metadata --> <!-- md:flag experimental --> If you wish to disable social cards for a page, simply add the following to the front matter of the Markdown document: ``` yaml --- social: cards: false --- # Page title ... ``` ## Customization <!-- md:sponsors --> <!-- md:version insiders-4.33.0 --> <!-- md:flag experimental --> [Insiders] ships a ground up rewrite of the [built-in social plugin] and introduces a brand new layout system based on a combination of YAML and [Jinja templates] – the same engine Material for MkDocs uses for HTML templating – allowing for the creation of complex custom layouts: <div class="mdx-social"> <div class="mdx-social__layer"> <div class="mdx-social__image"> <span class="mdx-social__label">Layer 0</span> <img src="../../assets/screenshots/social-cards-layer-0.png" /> </div> </div> <div class="mdx-social__layer"> <div class="mdx-social__image"> <span class="mdx-social__label">Layer 1</span> <img src="../../assets/screenshots/social-cards-layer-1.png" /> </div> </div> <div class="mdx-social__layer"> <div class="mdx-social__image"> <span class="mdx-social__label">Layer 2</span> <img src="../../assets/screenshots/social-cards-layer-2.png" /> </div> </div> <div class="mdx-social__layer"> <div class="mdx-social__image"> <span class="mdx-social__label">Layer 3</span> <img src="../../assets/screenshots/social-cards-layer-3.png" /> </div> </div> <div class="mdx-social__layer"> <div class="mdx-social__image"> <span class="mdx-social__label">Layer 4</span> <img src="../../assets/screenshots/social-cards-layer-4.png" /> </div> </div> <div class="mdx-social__layer"> <div class="mdx-social__image"> <span class="mdx-social__label">Layer 5</span> <img src="../../assets/screenshots/social-cards-layer-5.png" /> </div> </div> </div> Social cards are composed of layers, analogous to how they are represented in graphic design software such as Adobe Photoshop. As many layers are common across the cards generated for each page (e.g., backgrounds or logos), the built-in social plugin can automatically deduplicate layers and render them just once, substantially accelerating card generation. The generated cards are cached to ensure they are only regenerated when their contents change. Layouts are written in YAML syntax. Before starting to create a custom layout, it is a good idea to [study the pre-designed layouts] (link to [Insiders] repository), in order to get a better understanding of how they work. Then, create a new layout and reference it in `mkdocs.yml`: === ":octicons-file-code-16: `layouts/custom.yml`" ``` yaml size: { width: 1200, height: 630 } layers: [] ``` === ":octicons-file-code-16: `mkdocs.yml`" ``` yaml plugins: - social: cards_layout_dir: layouts cards_layout: custom debug: true ``` Note that the `.yml` file extension should be omitted. Next, run `mkdocs serve`, and see how the `.cache` directory is populated with the generated cards. Open any card in your editor, so you can see your changes immediately. Since we haven't defined any layers, the cards are transparent. The following sections explain how to create custom layouts. [Insiders]: ../insiders/index.md [built-in social plugin]: ../plugins/social.md [Google Fonts]: https://fonts.google.com/ [Jinja templates]: https://jinja.palletsprojects.com/en/3.1.x/ [study the pre-designed layouts]: https://github.com/squidfunk/mkdocs-material-insiders/tree/master/src/plugins/social/layouts ### Size and offset Each layer has an associated size and offset, which is defined in pixels. The `size` is defined by a `width` and `height` property, and the `offset` by `x` and `y` properties: ``` yaml size: { width: 1200, height: 630 } layers: - size: { width: 1200, height: 630 } offset: { x: 0, y: 0 } ``` If the `size` is omitted, it defaults to the size of the layout. If the `offset` is omitted, it defaults to the top left corner, which is the default `origin`. Saving the layout and reloading renders: ![Layer size] The layer outline and grid are visible because we enabled [`debug`][debug] mode in `mkdocs.yml`. The top left shows the layer index and offset, which is useful for alignment and composition. [Layer size]: ../assets/screenshots/social-cards-layer-size.png [debug]: ../plugins/social.md#debugging #### Origin <!-- md:version insiders-4.35.0 --> <!-- md:flag experimental --> The `origin` for the `x` and `y` values can be changed, so that the layer is aligned to one of the edges or corners of the layout, e.g., to the bottom right corner of the layout: ``` yaml hl_lines="5" size: { width: 1200, height: 630 } layers: - size: { width: 1200, height: 630 } offset: { x: 0, y: 0 } origin: end bottom ``` The following table shows the supported values: <figure markdown> | Origin | | | | -------------- | --------------- | ------------ | | :material-arrow-top-left: `start top` | :material-arrow-up: `center top` | :material-arrow-top-right: `end top` | | :material-arrow-left: `start center` | :material-circle-small: `center` | :material-arrow-right: `end center` | | :material-arrow-bottom-left: `start bottom` | :material-arrow-down: `center bottom` | :material-arrow-bottom-right: `end bottom` | <figcaption> Supported values for origin </figcaption> </figure> ### Backgrounds Each layer can be assigned a background color and image. If both are given, the color is rendered on top of the image, allowing for semi-transparent, tinted backgrounds: === "Background color" ``` yaml size: { width: 1200, height: 630 } layers: - background: color: "#4051b5" ``` ![Layer background color] === "Background image" ``` yaml size: { width: 1200, height: 630 } layers: - background: image: layouts/background.png ``` ![Layer background image] === "Background image, tinted" ``` yaml size: { width: 1200, height: 630 } layers: - background: image: layouts/background.png color: "#4051b5ee" # (1)! ``` 1. The color value can be set to a [CSS color keyword], or a 3, 4, 6 or 8 letter HEX color code, allowing for semi-transparent layers. ![Layer background] Background images are automatically scaled to fit the layer while preserving aspect-ratio. Notice how we omitted `size` and `offset`, because we want to fill the entire area of the social card. [Layer background color]: ../assets/screenshots/social-cards-layer-background-color.png [Layer background image]: ../assets/screenshots/social-cards-layer-background-image.png [Layer background]: ../assets/screenshots/social-cards-layer-background.png ### Typography Now, we can add dynamic typography that is sourced from Markdown files - this is the actual raison d'être of the [built-in social plugin]. [Jinja templates] are used to render a text string that is then added to the image: ``` yaml size: { width: 1200, height: 630 } layers: - size: { width: 832, height: 310 } offset: { x: 62, y: 160 } typography: content: "{{ page.title }}" # (1)! align: start color: white line: amount: 3 height: 1.25 font: family: Roboto style: Bold ``` 1. The following variables can be used in [Jinja templates]: - [`config.*`][config variable] - [`page.*`][page variable] - [`layout.*`][layout options] The author is free in defining `layout.*` options, which can be used to pass arbitrary data to the layout from `mkdocs.yml`. This renders a text layer with the title of the page with a line height of 1.25, and a maximum number of 3 lines. The plugin automatically computes the font size from the line height, the number of lines, and font metrics like ascender and descender.[^2] This renders: [^2]: If the plugin would require the author to specify the font size and line height manually, it would be impossible to guarantee that the text fits into the layer. For this reason we implemented a declarative approach, where the author specifies the desired line height and number of lines, and the plugin computes the font size automatically. ![Layer typography] [config variable]: https://www.mkdocs.org/dev-guide/themes/#config [page variable]: https://www.mkdocs.org/dev-guide/themes/#page [Layer typography]: ../assets/screenshots/social-cards-layer-typography.png #### Overflow If the text overflows the layer, there are two possible behaviors: either the text is automatically truncated and shortened with an ellipsis, or the text is automatically scaled down to fit the layer: ``` { .markdown .no-copy } # If we use a very long headline, we can see how the text will be truncated ``` === ":octicons-ellipsis-16: Ellipsis" ![Layer typography ellipsis] === ":material-arrow-collapse: Shrink" ![Layer typography shrink] While truncating with an ellipsis is the default, auto-shrinking can be enabled by setting `overflow` to `shrink`: ``` yaml hl_lines="7" size: { width: 1200, height: 630 } layers: - size: { width: 832, height: 310 } offset: { x: 62, y: 160 } typography: content: "{{ page.title }}" overflow: shrink align: start color: white line: amount: 3 height: 1.25 font: family: Roboto style: Bold ``` [Layer typography ellipsis]: ../assets/screenshots/social-cards-layer-typography-ellipsis.png [Layer typography shrink]: ../assets/screenshots/social-cards-layer-typography-shrink.png #### Alignment Text can be aligned to all corners and edges of the layer. For example, if we want to align the text to the middle of the layer, we can set `align` to `start center`, which will render as: ![Layer typography align] [Layer typography align]: ../assets/screenshots/social-cards-layer-typography-align.png The following table shows the supported values: <figure markdown> | Alignment | | | | -------------- | --------------- | ------------ | | :material-arrow-top-left: `start top` | :material-arrow-up: `center top` | :material-arrow-top-right: `end top` | | :material-arrow-left: `start center` | :material-circle-small: `center` | :material-arrow-right: `end center` | | :material-arrow-bottom-left: `start bottom` | :material-arrow-down: `center bottom` | :material-arrow-bottom-right: `end bottom` | <figcaption> Supported values for text alignment </figcaption> </figure> #### Font The [built-in social plugin] integrates with [Google Fonts] and will automatically download the font files for you. The `font` property accepts a `family` and `style` property, where the `family` must be set to the name of the font, and the `style` to one of the supported font styles. For example, setting `family` to `Roboto` will automatically download the following files: ``` { .sh .no-copy #example } .cache/plugins/social/fonts └─ Roboto/ ├─ Black.ttf ├─ Black Italic.ttf ├─ Bold.ttf ├─ Bold Italic.ttf ├─ Italic.ttf ├─ Light.ttf ├─ Light Italic.ttf ├─ Medium.ttf ├─ Medium Italic.ttf ├─ Regular.ttf ├─ Thin.ttf └─ Thin Italic.ttf ``` In that case, the author can use `Bold` or `Medium Italic` as the `style`. If the font style specified in the layer is not part of the font family, the font always falls back to `Regular` and prints a warning in [`debug`][debug] mode, as `Regular` is included with all font families. ### Icons Authors can leverage the full range of icons that are shipped with Material for MkDocs, or even provide custom icons by using theme extension and going through the process described in the guide on [additional icons]. Icons can even be tinted by using the `color` property: ``` yaml size: { width: 1200, height: 630 } layers: - background: color: "#4051b5" - size: { width: 144, height: 144 } offset: { x: 992, y: 64 } icon: value: material/cat color: white ``` This will render the icon in the top right corner of the social card: ![Layer icon] The possibilities are endless. For example, icons can be used to draw shapes like circles: ``` yaml size: { width: 1200, height: 630 } layers: - background: color: "#4051b5" - size: { width: 2400, height: 2400 } offset: { x: -1024, y: 64 } icon: value: material/circle color: "#5c6bc0" - size: { width: 1800, height: 1800 } offset: { x: 512, y: -1024 } icon: value: material/circle color: "#3949ab" ``` This will add two circles to the background: ![Layer icon circles] ### Tags The new [built-in social plugin] gives full flexibility of the meta tags that are added to your site, which are necessary to instruct services like X or Discord how to display your social card. All default layouts use the following set of tags, which you can copy to your layout and adapt: ``` yaml definitions: - &page_title_with_site_name >- {%- if not page.is_homepage -%} {{ page.meta.get("title", page.title) }} - {{ config.site_name }} {%- else -%} {{ page.meta.get("title", page.title) }} {%- endif -%} - &page_description >- {{ page.meta.get("description", config.site_description) or "" }} tags: og:type: website og:title: *page_title_with_site_name og:description: *page_description og:image: "{{ image.url }}" og:image:type: "{{ image.type }}" og:image:width: "{{ image.width }}" og:image:height: "{{ image.height }}" og:url: "{{ page.canonical_url }}" twitter:card: summary_large_image twitter:title: *page_title_with_site_name twitter:description: *page_description twitter:image: "{{ image.url }}" ``` Note that this example makes use of [YAML anchors] to minify repetition. The `definitions` property is solely intended for the definition on aliases that can then be referenced with anchors. [YAML anchors]: https://support.atlassian.com/bitbucket-cloud/docs/yaml-anchors/ __Are you missing something? Please [open a discussion] and let us know!__ [additional icons]: ./changing-the-logo-and-icons.md#additional-icons [Layer icon]: ../assets/screenshots/social-cards-layer-icon.png [Layer icon circles]: ../assets/screenshots/social-cards-layer-icon-circles.png [open a discussion]: https://github.com/squidfunk/mkdocs-material/discussions/new �������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/setup/setting-up-tags.md�������������������������������������������������0000664�0000000�0000000�00000021671�14753064456�0022300�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Setting up tags Material for MkDocs adds first-class support for categorizing pages with tags, which adds the possibility to group related pages and make them discoverable via search and a dedicated [tags index]. If your documentation is large, tags can help to discover relevant information faster. [tags index]: #adding-a-tags-index ## Configuration ### Built-in tags plugin <!-- md:version 8.2.0 --> <!-- md:plugin --> The built-in tags plugin adds the ability to categorize any page with tags as part of the front matter of the page. In order to add support for tags, add the following lines to `mkdocs.yml`: ``` yaml plugins: - tags ``` For a list of all settings, please consult the [plugin documentation]. [plugin documentation]: ../plugins/tags.md #### Advanced settings <!-- md:sponsors --> <!-- md:version insiders-4.48.0 --> <!-- md:flag experimental --> The following advanced settings are currently reserved to our [sponsors] [Insiders]. They are entirely optional, and only add additional capabilities to the tags plugin: <!-- - [`listings_layout`][config.listings_layout] --> - [`listings_toc`][config.listings_toc] We'll add more settings here in the near future. [Insiders]: ../insiders/index.md [config.listings_layout]: ../plugins/tags.md#config.listings_layout [config.listings_toc]: ../plugins/tags.md#config.listings_toc ### Tag icons and identifiers <!-- md:version 8.5.0 --> <!-- md:flag experimental --> <!-- md:example tags-with-icons --> Each tag can be associated with an icon, which is then rendered inside the tag. Before assigning icons to tags, associate each tag with a unique identifier, by adding the following to `mkdocs.yml`: ``` yaml extra: tags: <tag>: <identifier> # (1)! ``` 1. The identifier can only include alphanumeric characters, as well as dashes and underscores. For example, if you have a tag `Compatibility`, you can set `compat` as an identifier: ``` yaml extra: tags: Compatibility: compat ``` Identifiers can be reused between tags. Tags which are not explicitly associated will use the default tag icon which is :material-pound: Next, each identifier can be associated with an icon, even a [custom icon], by adding the following lines to `mkdocs.yml` under the `theme.icon` configuration setting: === "Tag icon" ``` yaml theme: icon: tag: <identifier>: <icon> # (1)! ``` 1. Enter a few keywords to find the perfect icon using our [icon search] and click on the shortcode to copy it to your clipboard: <div class="mdx-iconsearch" data-mdx-component="iconsearch"> <input class="md-input md-input--stretch mdx-iconsearch__input" placeholder="Search icon" data-mdx-component="iconsearch-query" value="tag" /> <div class="mdx-iconsearch-result" data-mdx-component="iconsearch-result" data-mdx-mode="file"> <div class="mdx-iconsearch-result__meta"></div> <ol class="mdx-iconsearch-result__list"></ol> </div> </div> === "Tag default icon" ``` yaml theme: icon: tag: default: <icon> ``` ??? example "Expand to inspect example" ``` yaml theme: icon: tag: html: fontawesome/brands/html5 js: fontawesome/brands/js css: fontawesome/brands/css3 extra: tags: HTML5: html JavaScript: js CSS: css ``` [custom icon]: changing-the-logo-and-icons.md#additional-icons [icon search]: ../reference/icons-emojis.md#search ## Usage ### Adding tags <!-- md:version 8.2.0 --> <!-- md:example tags --> When the [built-in tags plugin] is enabled, tags can be added for a document with the front matter `tags` property. Add the following lines at the top of a Markdown file: ``` sh --- tags: - HTML5 - JavaScript - CSS --- ... ``` The page will now render with those tags above the main headline and within the search preview, which now allows to __find pages by tags__. ??? question "How to set tags for an entire folder?" With the help of the [built-in meta plugin], you can ensure that tags are set for an entire section and all nested pages, by creating a `.meta.yml` file in the corresponding folder with the following content: ``` yaml tags: - HTML5 - JavaScript - CSS ``` The tags set in `.meta.yml` are merged and deduplicated with the tags defined for a page, which means you can define common tags in `.meta.yml` and then add specific tags for each page. The tags in `.meta.yml` are appended. [built-in tags plugin]: ../plugins/tags.md [built-in meta plugin]: ../plugins/meta.md ### Adding a tags index <!-- md:version 8.2.0 --> <!-- md:example tags --> The [built-in tags plugin] allows to define a file to render a tags index, which can be any page that is part of the `nav` section. To add a tags index, create a page, e.g. `tags.md`: ``` markdown # Tags Following is a list of relevant tags: <!-- material/tags --> ``` The tags marker specifies the position of the tags index, i.e. it is replaced with the actual tags index when the page is rendered. You can include arbitrary content before and after the marker: [![Tags index][tags index enabled]][tags index enabled] [tags index enabled]: ../assets/screenshots/tags-index.png ### Advanced features [Insiders] ships a __ground up rewrite of the tags plugin__ which is infinitely more powerful than the current version in the community edition. It allows for an arbitrary number of tags indexes (listings), [scoped listings], [shadow tags], [nested tags], and much more. [scoped listings]: #scoped-listings [shadow tags]: #shadow-tags [nested tags]: #nested-tags #### Configurable listings <!-- md:version 9.6.0 --> <!-- md:flag experimental --> Listings can be configured in `mkdocs.yml` or directly at the location of the marker that you position in a Markdown document. Some examples: - __Use [scoped listings]__: limit the tags index to pages that are on the same level of the subsection of the documentation the page is in: ``` html <!-- material/tags { scope: true } --> ``` - __List only specific tags__: limit the tags index to a single or multiple selected tags, e.g., `Foo` and `Bar`, excluding all other tags: ``` html <!-- material/tags { include: [Foo, Bar] } --> ``` - __Exclude pages with specific tags__: don't include pages that are tagged with specific tags, e.g. `Internal`. This can be any tag, including a shadow tag: ``` html <!-- material/tags { exclude: [Internal] } --> ``` - __Enable or disable tags inside the table of contents__: specify whether the table of contents lists all tags under the nearest headline: ``` html <!-- material/tags { toc: false } --> ``` See the [listing configuration] for all options. [listing configuration]: ../plugins/tags.md#listing-configuration #### Scoped listings <!-- md:sponsors --> <!-- md:version insiders-4.48.0 --> <!-- md:flag experimental --> If your documentation is large, you might want to consider using scoped listings which will only include pages that are on the same level or below the page containing the listing. Just use: ``` html <!-- material/tags { scope: true } --> ``` If you plan to use multiple scoped indexes, it's a good idea to define a listing configuration in `mkdocs.yml`, which you can then reference by its id: ``` yaml plugins: - tags: listings_map: scoped: scope: true ``` You can now use: ``` html <!-- material/tags scoped --> ``` #### Shadow tags <!-- md:sponsors --> <!-- md:version insiders-4.48.0 --> <!-- md:flag experimental --> Shadow tags are tags that are solely meant to organization, which can be included or excluded for rendering with a simple flag. They can be enumerated in the [`shadow_tags`][config.shadow_tags] setting: ``` yaml plugins: - tags: shadow_tags: - Draft - Internal ``` If a document is tagged with `Draft`, the tag will only be rendered if [`shadow`][config.shadow] setting is enabled, and excluded when it is disabled. This is an excellent opportunity for using tags for structuring. [config.shadow]: ../plugins/tags.md#config.shadow [config.shadow_tags]: ../plugins/tags.md#config.shadow_tags #### Nested tags <!-- md:sponsors --> <!-- md:version insiders-4.48.0 --> <!-- md:flag experimental --> [Insiders] ships support for nested tags. The [`tags_hierarchy_separator`][config.tags_hierarchy_separator] allows to create hierarchies of tags, e.g., `Foo/Bar`. Nested tags will be rendered as children of the parent tag: ``` yaml plugins: - tags: tags_hierarchy: true ``` [config.tags_hierarchy_separator]: ../plugins/tags.md#config.tags_hierarchy_separator ### Hiding tags on a page While the tags are rendered above the main headline, sometimes, it might be desirable to hide them for a specific page, which can be achieved with the front matter `hide` property: ``` yaml --- hide: - tags --- # Page title ... ``` �����������������������������������������������������������������������mkdocs-material-9.6.4/docs/setup/setting-up-the-footer.md�������������������������������������������0000664�0000000�0000000�00000013552�14753064456�0023415�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Setting up the footer The footer of your project documentation is a great place to add links to websites or platforms you or your company are using as additional marketing channels, e.g. :fontawesome-brands-mastodon:{ style="color: #5A4CE0" } or :fontawesome-brands-youtube:{ style="color: #EE0F0F" }, which you can easily configure via `mkdocs.yml`. ## Configuration ### Navigation <!-- md:version 9.0.0 --> <!-- md:feature --> The footer can include links to the previous and next page of the current page. If you wish to enable this behavior, add the following lines to `mkdocs.yml`: ``` yaml theme: features: - navigation.footer ``` ### Social links <!-- md:version 1.0.0 --> <!-- md:default none --> Social links are rendered next to the copyright notice as part of the footer of your project documentation. Add a list of social links in `mkdocs.yml` with: ``` yaml extra: social: - icon: fontawesome/brands/mastodon # (1)! link: https://fosstodon.org/@squidfunk ``` 1. Enter a few keywords to find the perfect icon using our [icon search] and click on the shortcode to copy it to your clipboard: <div class="mdx-iconsearch" data-mdx-component="iconsearch"> <input class="md-input md-input--stretch mdx-iconsearch__input" placeholder="Search icon" data-mdx-component="iconsearch-query" value="mastodon" /> <div class="mdx-iconsearch-result" data-mdx-component="iconsearch-result" data-mdx-mode="file"> <div class="mdx-iconsearch-result__meta"></div> <ol class="mdx-iconsearch-result__list"></ol> </div> </div> The following properties are available for each link: <!-- md:option social.icon --> : <!-- md:default none --> <!-- md:flag required --> This property must contain a valid path to any icon bundled with the theme, or the build will not succeed. Some popular choices: * :fontawesome-brands-github: – `fontawesome/brands/github` * :fontawesome-brands-gitlab: – `fontawesome/brands/gitlab` * :fontawesome-brands-x-twitter: – `fontawesome/brands/x-twitter` * :fontawesome-brands-mastodon: – `fontawesome/brands/mastodon` <small>automatically adds [`rel=me`][rel=me]</small> * :fontawesome-brands-docker: – `fontawesome/brands/docker` * :fontawesome-brands-facebook: – `fontawesome/brands/facebook` * :fontawesome-brands-instagram: – `fontawesome/brands/instagram` * :fontawesome-brands-linkedin: – `fontawesome/brands/linkedin` * :fontawesome-brands-slack: – `fontawesome/brands/slack` * :fontawesome-brands-discord: – `fontawesome/brands/discord` * :fontawesome-brands-pied-piper-alt: – `fontawesome/brands/pied-piper-alt` <!-- md:option social.link --> : <!-- md:default none --> <!-- md:flag required --> This property must be set to a relative or absolute URL including the URI scheme. All URI schemes are supported, including `mailto` and `bitcoin`: === ":fontawesome-brands-mastodon: Mastodon" ``` yaml extra: social: - icon: fontawesome/brands/mastodon link: https://fosstodon.org/@squidfunk ``` === ":octicons-mail-16: Email" ``` yaml extra: social: - icon: fontawesome/solid/paper-plane link: mailto:<email-address> ``` <!-- md:option social.name --> : <!-- md:default _domain name from_ `link`_, if available_ --> This property is used as the link's `title` attribute and can be set to a discernable name to improve accessibility: ``` yaml extra: social: - icon: fontawesome/brands/mastodon link: https://fosstodon.org/@squidfunk name: squidfunk on Fosstodon ``` [icon search]: ../reference/icons-emojis.md#search [rel=me]: https://docs.joinmastodon.org/user/profile/#verification ### Copyright notice <!-- md:version 0.1.0 --> <!-- md:default none --> A custom copyright banner can be rendered as part of the footer, which is displayed next to the social links. It can be defined as part of `mkdocs.yml`: ``` yaml copyright: Copyright © 2016 - 2020 Martin Donath ``` ### Generator notice <!-- md:version 7.3.0 --> <!-- md:default `true` --> The footer displays a _Made with Material for MkDocs_ notice to denote how the site was generated. The notice can be removed with the following option via `mkdocs.yml`: ``` yaml extra: generator: false ``` !!! info "Please read this before removing the generator notice" The subtle __Made with Material for MkDocs__ hint in the footer is one of the reasons why this project is so popular, as it tells the user how the site is generated, helping new users to discover this project. Before removing please consider that you're enjoying the benefits of @squidfunk's work for free, as this project is Open Source and has a permissive license. Thousands of hours went into this project, most of them without any financial return. Thus, if you remove this notice, please consider [sponsoring][Insiders] the project. __Thank you__ :octicons-heart-fill-24:{ .mdx-heart .mdx-insiders } [Insiders]: ../insiders/index.md ## Usage ### Hiding prev/next links The footer navigation showing links to the previous and next page can be hidden with the front matter `hide` property. Add the following lines at the top of a Markdown file: ``` yaml --- hide: - footer --- # Page title ... ``` ## Customization ### Custom copyright <!-- md:version 8.0.0 --> <!-- md:flag customization --> In order to customize and override the [copyright notice], [extend the theme] and [override the `copyright.html` partial][overriding partials], which normally includes the `copyright` property set in `mkdocs.yml`. [copyright notice]: #copyright-notice [generator notice]: #generator-notice [extend the theme]: ../customization.md#extending-the-theme [overriding partials]: ../customization.md#overriding-partials ������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/setup/setting-up-the-header.md�������������������������������������������0000664�0000000�0000000�00000003742�14753064456�0023347�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Setting up the header Material for MkDocs' header can be customized to show an announcement bar that disappears upon scrolling, and provides some options for further configuration. It also includes the [search bar] and a place to display your project's [git repository], as explained in those dedicated guides. [search bar]: setting-up-site-search.md [git repository]: adding-a-git-repository.md ## Configuration ### Automatic hiding <!-- md:version 6.2.0 --> <!-- md:feature --> When autohiding is enabled, the header is automatically hidden when the user scrolls past a certain threshold, leaving more space for content. Add the following lines to `mkdocs.yml`: ``` yaml theme: features: - header.autohide ``` ### Announcement bar <!-- md:version 5.0.0 --> <!-- md:flag customization --> Material for MkDocs includes an announcement bar, which is the perfect place to display project news or other important information to the user. When the user scrolls past the header, the bar will automatically disappear. In order to add an announcement bar, [extend the theme] and [override the `announce` block][overriding blocks], which is empty by default: ``` html {% extends "base.html" %} {% block announce %} <!-- Add announcement here, including arbitrary HTML --> {% endblock %} ``` [extend the theme]: ../customization.md#extending-the-theme [overriding blocks]: ../customization.md#overriding-blocks #### Mark as read <!-- md:version 8.4.0 --> <!-- md:feature --> <!-- md:flag experimental --> In order to render temporary announcements that can be marked as read by the user, a button to dismiss the current announcement can be included. Add the following lines to `mkdocs.yml`: ``` yaml theme: features: - announce.dismiss ``` When the user clicks the button, the current announcement is dismissed and not displayed again until the content of the announcement changes. This is handled automatically. [Scroll to the top of this page][top] to see it in action. [top]: # ������������������������������mkdocs-material-9.6.4/docs/setup/setting-up-versioning.md�������������������������������������������0000664�0000000�0000000�00000013331�14753064456�0023517�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Setting up versioning Material for MkDocs makes it easy to deploy multiple versions of your project documentation by integrating with external utilities that add those capabilities to MkDocs, i.e. [mike]. When deploying a new version, older versions of your documentation remain untouched. [mike]: https://github.com/jimporter/mike ## Configuration ### Versioning <!-- md:version 7.0.0 --> <!-- md:utility [mike] --> <!-- md:demo example-versioning --> [mike] makes it easy to deploy multiple versions of your project documentation. It integrates natively with Material for MkDocs and can be enabled via `mkdocs.yml`: ``` yaml extra: version: provider: mike ``` This renders a version selector in the header: <figure markdown> [![Version selector preview]][Version selector preview] <figcaption markdown> Check out the versioning example to see it in action – [mkdocs-material.github.io/example-versioning][version example] </figcaption> </figure> !!! quote "[Why use mike?]" mike is built around the idea that once you've generated your docs for a particular version, you should never need to touch that version again. This means you never have to worry about breaking changes in MkDocs, since your old docs (built with an old version of MkDocs) are already generated and sitting in your `gh-pages` branch. While mike is flexible, it's optimized around putting your docs in a `<major>.<minor>` directory, with optional aliases (e.g. `latest` or `dev`) to particularly notable versions. This makes it easy to make permalinks to whatever version of the documentation you want to direct people to. [Version selector preview]: ../assets/screenshots/versioning.png [version example]: https://mkdocs-material.github.io/example-versioning/ [Why use mike?]: https://github.com/jimporter/mike#why-use-mike ### Stay on the same page when switching versions When the user chooses a version in the version selector, they usually want to go to the page corresponding to the page they were previously viewing. Material for MkDocs implements this behavior by default, but there are a few caveats: - the [`site_url`][mkdocs.site_url] must be set correctly in `mkdocs.yml`. See the ["Publishing a new version"](#publishing-a-new-version) section for an example. - the redirect happens via JavaScript and there is no way to know which page you will be redirected to ahead of time. ### Version warning <!-- md:version 8.0.0 --> <!-- md:flag customization --> If you're using versioning, you might want to display a warning when the user visits any other version than the latest version. Using [theme extension], you can [override the `outdated` block][overriding blocks]: ``` html {% extends "base.html" %} {% block outdated %} You're not viewing the latest version. <a href="{{ '../' ~ base_url }}"> <!-- (1)! --> <strong>Click here to go to latest.</strong> </a> {% endblock %} ``` 1. Given this value for the `href` attribute, the link will always redirect to the root of your site, which will then redirect to the latest version. This ensures that older versions of your site do not depend on a specific alias, e.g. `latest`, to allow for changing the alias later on without breaking earlier versions. This will render a version warning above the header: [![Version warning preview]][Version warning preview] The default version is identified by the `latest` alias. If you wish to set another alias as the latest version, e.g. `stable`, add the following lines to `mkdocs.yml`: ``` yaml extra: version: default: stable # (1)! ``` 1. You can also define multiple aliases as the default version, e.g. `stable` and `development`. ``` yaml extra: version: default: - stable - development ``` Now every version that has the `stable` and `development` aliases will not display the version warning. Make sure one alias matches the [default version], as this is where users are redirected to. [theme extension]: ../customization.md#extending-the-theme [overriding blocks]: ../customization.md#overriding-blocks [Version warning preview]: ../assets/screenshots/version-warning.png [default version]: #setting-a-default-version ### Version alias <!-- md:version 9.5.23 --> <!-- md:default `false` --> If you're using aliases for versioning, and want to show the version alias besides the version number, you can enable this feature by setting the `alias` option to `true`: ``` yaml extra: version: alias: true ``` ## Usage While this section outlines the basic workflow for publishing new versions, it's best to check out [mike's documentation][mike] to make yourself familiar with its mechanics. ### Publishing a new version If you want to publish a new version of your project documentation, choose a version identifier and update the alias set as the default version with: ``` mike deploy --push --update-aliases 0.1 latest ``` Note that every version will be deployed as a subdirectory of your `site_url`, which you should set explicitly. For example, if your `mkdocs.yml` contains: ``` yaml site_url: 'https://docs.example.com/' # Trailing slash is recommended ``` the documentation will be published to URLs such as: - _docs.example.com/0.1/_ - _docs.example.com/0.2/_ - ... ### Setting a default version When starting with [mike], a good idea is to set an alias as a default version, e.g. `latest`, and when publishing a new version, always update the alias to point to the latest version: ``` mike set-default --push latest ``` When publishing a new version, [mike] will create a redirect in the root of your project documentation to the version associated with the alias: _docs.example.com_ :octicons-arrow-right-24: _docs.example.com/0.1_ �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/support.md���������������������������������������������������������������0000664�0000000�0000000�00000005530�14753064456�0017615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Support At the heart of Material for MkDocs is an open and supportive community dedicated to freely sharing knowledge and insights. We strive to offer support to this community, balancing our development efforts with the need to address community questions effectively. In order to streamline communication and direct you to the most appropriate support channel, we've outlined our support structure below. ## Sponsoring support If you have questions about Insiders or are considering becoming a sponsor, @katharinalisalin is here to help. She handles all non-technical sponsorship-related inquiries and is happy to provide the guidance you need. Feel free to contact her at sponsors@squidfunk.com. ## Technical support We are committed to providing technical support, ensuring all interactions remain transparent and accessible. Our primary channels for technical inquiries, therefore, are [our discussion board] and [our issue tracker] which are open to the entire community. [our discussion board]: #discussion-board [our issue tracker]: #issue-tracker ### Discussion board Our [discussion board] serves as the primary point of contact for technical discussions, supported by both our community and our [Community Experts]. We encourage searching the board for existing answers before posting new questions. Direct support, particularly for core feature-related queries, is actively provided here, whereas customization tips are often sourced from and shared by our amazing community. [Community Experts]: insiders/community-experts-program/index.md [discussion board]: https://github.com/squidfunk/mkdocs-material/discussions ### Issue Tracker For [reporting bugs] or submitting [change requests], our [issue tracker] offers a transparent platform for community contributions. We encourage reporting bugs found in the Insiders edition and in the community edition with the help of [our contributing guides] through the public [issue tracker], mindful of not disclosing the private Insiders' source code in line with our [fair use policy]. This transparent approach ensures that solutions can benefit the entire community and feature requests can get upvoted by the community which will affect the speed of its development. [reporting bugs]: contributing/reporting-a-bug.md [change requests]: contributing/requesting-a-change.md [our contributing guides]: ./contributing/index.md [issue tracker]: https://github.com/squidfunk/mkdocs-material/issues [public issue tracker]: https://github.com/squidfunk/mkdocs-material/issues [fair use policy]: ./insiders/license.md/#fair-use-policy ### Prioritized support Organizational sponsors at "The Organization" tier or higher are entitled to prioritized bug support. While we cannot guarantee immediate resolution, as some problems are harder to fix than others, it ensures that your issues are addressed with urgency. ������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/tutorials/���������������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0017602�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/tutorials/blogs/���������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0020710�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/tutorials/blogs/basic.md�������������������������������������������������0000664�0000000�0000000�00000030203�14753064456�0022311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Basic blogs Blogs are a great way to engage with your audience. Software developers can use a blog to announce new features, demonstrate their usage and provide background information. You can demonstrate competence by commenting on the state of the art or document your own work as best practice. Posts on current topics can help draw in visitors for your main website and can keep your audience engaged. Of course, you can blog about any topics close to your heart. The [blog plugin] makes running a blog alongside your other content easy but you can also configure it to run a stand-alone blog if posts are the only kind of content you need. After a brief overview of the basic concepts of a blog, this tutorial guides you through the process of configuring the [blog plugin], setting up your blog, creating posts, and defining post metadata. [blog plugin]: ../../plugins/blog.md __Time required:__ typically 20 minutes ## Key concepts **Post, excerpt**: a blog consists of a number of self-contained _posts_ (often called articles) and an index page that shows the posts in reverse chronological order, with the most recent post at the top. The index page usually shows only a short _excerpt_ and a link that the user can click to navigate to the full post. **Metadata**: both the index page and the post itself list information such as when you published the post, when you updated it, who the author is, and what the expected reading time is. **Slug**: since the blog posts are primarily arranged by time and not into a hierarchy, their URLs do not reflect such a structure. Instead, each post's URL contains a shortened description, the _slug_, which is usually derived from the first heading in the post. **Navigation**: the main navigation structure is the timeline, which you can subdivide into _categories_. The main index page shows the more recent posts while an _archive_ section allows access to older ones, organized by year. In addition, posts can be _tagged_ and _tag index pages_ provide an additional navigation structure based on content. You can see all these elements on the [Material for MkDocs blog]. [Material for MkDocs blog]: https://squidfunk.github.io/mkdocs-material/blog/ ## Setting up your blog The blog plugin is part of Material for MkDocs but you need to configure it in the `mkdocs.yml`. !!! example "Set up a blog" If you have not done so already, create a project for your blog, then edit the `mkdocs.yml` file to make sure it has the following content: ```yaml site_name: Blog Tutorial site_description: an example blog set up following the tutorial site_url: http://www.example.com theme: name: material plugins: - search - blog ``` The blog plugin will create a directory structure for your blog posts if it does not exist, so simply run `mkdocs serve` to get: ``` docs ├── blog │   ├── index.md │   └── posts └── index.md ``` Now create your first blog post in `docs/blog/posts`. You can use any naming convention and directory structure you like for your posts, as long as they are inside `docs/blog/posts`. Each post _must_ have a page header, which appears at the top of the Markdown code between lines with three dashes. Within this header, you need to have at least a `date` entry but you can add other data, as you will see below. Following the header comes the page content. Note that it is important to have a level one heading as the plugin uses it to produce the _slug_. Also, by adding `<!-- more -->` to the page, you can define where the excerpt will end that the index page shows. !!! example "Write your first post" Create a file `docs/blog/posts/myfirst.md` with the following contents: ``` --- date: created: 2023-12-31 --- # Happy new years eve! We hope you are all having fun and wish you all the best for the new year! <!-- more --> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ``` Then, run `mkdocs serve` and point your web browser at `http://localhost:8000/blog`. The blog plugin automatically creates navigation elements for the blog. The index page shows only the extract. When you select the "Continue reading" link, you will get to the full blog post. Note how it has a URL generated from the first-level heading. !!! tip "Navigation" We also have a [tutorial on navigation] that shows you how to change the automatically created navigation and integrate the blog into your existing navigation structure. It shows how to create secondary navigation, produce author pages, and control pagination. [tutorial on navigation]: navigation.md ## Post metadata In addition to the date, you can provide other metadata and give the plugin instructions, such as to treat a post as a draft or to pin it. ### Drafts You may want to produce a draft of a blog post and work with it locally but exclude it from the build that you publish. Simply add a field to the page header to indicate that a post is still in draft form. !!! example "Create a draft" Create a second blog post in `docs/blogs/posts/draft.md` with the following contents: ```hl_lines="3" --- date: created: 2024-01-01 draft: true --- # Happy new year! Happy 2024 to everyone. Wishing you all the best! <!-- more --> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ``` Now, note how the draft appears on the index page but with a label that indicates that it is a draft. When you run `mkdocs build`, the draft will _not_ appear in the output: ``` $ mkdocs build $ ls site/blog site/blog ├── 2023 │   └── 12 │   └── 31 │   └── happy-new-years-eve │   └── index.html ... ``` The first blog post for 2024 is not there yet because it is still in draft stage. Remember to remove the `draft` setting in the header when it is time to publish it. If you are using the [Insiders Edition], you can also create a folder to keep your drafts in and use the [Meta plugin] to add the `draft` header setting to all the posts in that folder. This has the advantage that it is easier to see which posts are still in draft form. We will cover the Meta plugin later on. [Meta plugin]: ../../plugins/meta.md ### Edits Sometimes, bloggers need to update a post. This might happen when you make a mistake or when something changes that you need to reflect in the post. To indicate you have edited a post, you can include an `updated` date in the page header. !!! example "Editing a post" Make a change to your first blog post, then add an edit date to the header: ```hl_lines="3 4" --- date: created: 2023-12-31 updated: 2024-01-02 --- ``` The Metadata section of the blog post itself will contain the edit date, though the index page omits this detail by default. ### Reading time To give the reader some idea of how long it might take them to read a post, a read time is automatically calculated. If you want to override this, you can do so in the page header by specifying the number of minutes you estimate your readers will take the read the post. !!! example "Overriding the reading time" Add a reading time override to your first blog post: ```hl_lines="5" --- date: created: 2023-12-31 updated: 2024-01-02 readtime: 15 --- ``` ### Pinning Sometimes, blog authors want to 'pin' a specific post so that it will always appear at the top of the index page, no matter what else gets published. If you are using the [Insiders Edition], you can achieve this by adding the `pin` attribute in the page header: !!! example "Pin a post <!-- md:sponsors -->" Add the `pin` attribute to your first blog post: ```hl_lines="6" --- date: created: 2023-12-31 updated: 2024-01-02 readtime: 15 pin: true --- ``` Observe how this makes the post appear on top of the index page even though its publication date is prior to other posts. A small pin icon shows that the post has been pinned. ### Related links When your blog is part of a wider site such as technical documentation, you will want to provide links from blog posts into your other content. One way you can do this is to have a related links section. The blog plugin can create one for you if you provide link targets in your page header: !!! example "Add a related links section <!-- md:sponsors -->" Add the following to a blog post: ``` hl_lines="5-7" --- date: created: 2023-12-31 ... links: - index.md - blog/index.md --- ``` The related links appear underneath the Metadata section. The nice thing here is that you do not need to provide a page title. The plugin will deduce the link text by applying the same logic that MkDocs uses for the main navigation. In fact, the syntax is the same as that of the `nav` section in the `mkdocs.yml`, so you can override the title if you want and even define subsections: !!! example "Override the page titles" Change the link section to override the page titles: ```hl_lines="6-9" --- date: created: 2023-12-31 ... links: - Homepage: index.md - Blog index: blog/index.md - External links: - Material documentation: https://squidfunk.github.io/mkdocs-material --- ``` The plugin renders related links in the left sidebar on screens that are wide enough and at the bottom of the post on narrow screens. Change the size of your browser window to see this in action. ## Meta plugin The Meta plugin helps simplify the management of metadata that is common to a group of files in the same subdirectory. Instead of having to repeat the same metadata in the page headers of a number of files, you can add a `.meta.yml` file in the directory and the Meta plugin will merge its contents into the headers of all the pages contained. Settings from the page header take precedence, so you can always override settings by adding them to a post's header. For example, you may want to manage drafts by keeping them in a directory together so that they are not only flagged as drafts but also easier to find. (Otherwise, you would need to inspect the page headers or trace back from the output to the files to figure out which posts are drafts.) !!! example "Drafts using the Meta plugin <!-- md:sponsors -->" You first need to activate the plugin in your `mkdocs.yaml`: ```yaml hl_lines="4" plugins: - search - blog - meta ``` Now create the folder for the drafts: === "MacOS/Linux" ```bash $ mkdir docs/blog/posts/drafts ``` === "Windows" ```powershell $ mkdir docs\blog\posts\drafts ``` Now, within this folder, crate a file `.meta.yml` that contains: ```yaml draft: true ``` Add another blog post and store it in `docs/blog/posts/drafts`. When you look at it locally, you will see the label that identifies it as a draft, while in the version built for publication it does not appear. To move a post from draft status to published, simply move it outside `drafts/`. [meta]: ../../plugins/meta.md [Insiders Edition]: ../../insiders/index.md ## What's next? You should now have a working blog. However, as it accumulates content, you may want to make sure that people can find posts they are interested in, so you may want to add secondary navigation with tags and categories. You may have more than one author and want to attribute posts to them as well as generate author pages for them. We have a [tutorial on navigation, pagination, and authors] that covers these topics. [tutorial on navigation, pagination, and authors]: navigation.md You may want to increase engagement with your blog by allowing people to subscribe to an RSS feed or by setting up a comment system. The [engagement and dissemination tutorial] walks you through setting these up. [engagement and dissemination tutorial]: engage.md ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/tutorials/blogs/engage.md������������������������������������������������0000664�0000000�0000000�00000034017�14753064456�0022465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Engagement and dissemination You can foster reader engagement and improve the dissemination of content on your blog by providing an RSS feed that people can subscribe to and by integrating a discussion system. To learn more about who is or is not reading your posts, you may want to integrate an analytics system. You may also want to post on social media when you publish a new blog post. This tutorial gives you a leg up on all of these topics. __Time required:__ typically 30 minutes ## RSS feeds An _RSS feed_ allows users to subscribe to a blog so that they get notified when you publish new posts. RSS Feed readers are often used to access blogs that a user follows. They usually support downloading the blog content for offline consumption. An easy way to create an RSS feed for your blog is to use the [MkDocs RSS Plugin], which is well integrated with Material for MkDocs. Since it is a third-party plugin, you need to install it before using it. [MkDocs RSS Plugin]: https://guts.github.io/mkdocs-rss-plugin !!! example "Add an RSS feed" Install the RSS plugin into your project: ``` $ pip install mkdocs-rss-plugin ``` It is important that have the `site_name`, `site_description` and `site_url` settings configured as [instructed in the basic blog tutorial]. The RSS plugin makes use of this information to construct the feed, so make sure you have configured them. [instructed in the basic blog tutorial]: basic.md#setting-up-your-blog Now, configure the plugin in the `mkdocs.yml`. The options provided restrict the pages that RSS entries are created for to the blog posts, which is probably what you want. Also note the configuration of the date fields to match the format that Material for MkDocs uses to accommodate both a creation date and a date for updates. ```yaml hl_lines="9" plugins: - ... - rss: match_path: "blog/posts/.*" date_from_meta: as_creation: date.created as_update: date.updated ``` Have a look at http://localhost:8000/feed_rss_created.xml to see the RSS feed in all its XML glory. You can use a browser like Firefox or Chrome that can display the raw RSS feed or use `curl` to get the feed and `xmllint` to format it. (You may need to install these tools.) ``` curl -s http://localhost:8000/feed_rss_created.xml | xmllint --format - ``` You may also want to try your feed with a feed reader. There are various desktop and mobile apps as well as online services. Of course, to use the latter you will need to deploy your project somewhere that is accessible to them. This minimal configuration should work well if you have not made any changes to the default configuration of the blog plugin. For more information on adapting the feed to your needs, see [the RSS plugin's documentation]. [the RSS plugin's documentation]: https://guts.github.io/mkdocs-rss-plugin/ ## Social media buttons Social media buttons can serve two purposes: to allow your readers to navigate to your social media profiles or to share content you have published via their own accounts. ### Profile links Links to social media profiles a usually provided in the footer of pages and Material for MkDocs makes this easy. All you need to do is to provide the necessary links and define the icons to use. !!! example "Adding social media profile links" Add an `extra` section to your `mkdocs.yml` and, within it, a `social` section to contain a list of link definitions. These consist of the logo to use and the link to the profile. ```yaml extra: social: - icon: fontawesome/brands/mastodon name: squidfunk on Mastodon link: https://fosstodon.org/@squidfunk ``` For the `icon`, you can choose any valid path to an icon bundled with the theme. The `name` will be used as the title attribute for the icon and including this improves accessibility. For popular social media systems, the link needs to be absolute and needs to include the scheme, most likely `https://`. You can also use other schemes. For example, to cerate an icon that allows people to create an email, add this: ```yaml extra: social: - icon: /fontawesome/regular/envelope name: send me an email link: mailto:<email-address> ``` Finally, you can specify a URL within your site, such as to your contact page. It is possible to specify only the path to the page: ```yaml extra: social: - icon: /material/mailbox name: contact us link: /contact ``` ### Share and like buttons Adding buttons that let people share your content on social media is a bit more involved, which is why there are companies offering components for this. !!! tip "Data Protection" "Share" and "Like" buttons that use integrations provided by social media companies often leave copious data traces even when the user does not interact with these buttons. If you choose to integate such feature on your site please be aware of the data protection implications and your duties as a provider to ensure that processing occurs only once the user has granted consent. This implementation of share buttons deliberately does not use third party code. It supports sharing to Twitter/X and Facebook without causing a data flow to these companies whenever someone views the pages. Only when someone clicks a share button will there be interactions with those companies' servers. !!! example "Add share buttons" In order to add the share buttons, you can add a hook that appends buttons for sharing the current page. Create a directory `hooks` in your project root and configure it in your `mkdocs.yml`: ```yaml hooks: - hooks/socialmedia.py ``` Add the file `hooks/socialmedia.py` with the following Python code: ```python from textwrap import dedent import urllib.parse import re x_intent = "https://x.com/intent/tweet" fb_sharer = "https://www.facebook.com/sharer/sharer.php" include = re.compile(r"blog/[1-9].*") def on_page_markdown(markdown, **kwargs): page = kwargs['page'] config = kwargs['config'] if not include.match(page.url): return markdown page_url = config.site_url+page.url page_title = urllib.parse.quote(page.title+'\n') return markdown + dedent(f""" [Share on :simple-x:]({x_intent}?text={page_title}&url={page_url}){{ .md-button }} [Share on :simple-facebook:]({fb_sharer}?u={page_url}){{ .md-button }} """) ``` The hook first checks if the current page is a blog post and then appends Markdown code for the share buttons. The buttons use icons, so you also need to configure the following markdown extensions: ```yaml markdown_extensions: - attr_list - pymdownx.emoji: emoji_index: !!python/name:material.extensions.emoji.twemoji emoji_generator: !!python/name:material.extensions.emoji.to_svg ``` ## Add a discussion system Allowing your readers to comment on your posts is a great way of receiving feedback, learning something, as well as giving readers the opportunity to discuss the content and the topic it is about. There are plenty of discussion system out there and you will need to consider your audience when choosing one appropriate for your blog. Likewise, you will also need to consider existing commitments to communication channels. If you are a heavy user Slack, for example, you may have a string preference for this system. Consider that when you add a communication channel, you will need to be prepared to use it regularly and to moderate discussions. ### Giscus integration In this tutorial, we will be using [Giscus] because it is free, open source, and uses [GitHub Discussions] as a backend. Because a lot of users of Material for MkDocs use GitHub, this seems like an obvious choice. [Giscus]: https://giscus.app/ [GitHub Discussions]: https://docs.github.com/en/discussions To add Giscuss to your blog you will need to go through a number of steps: 1. Create a GitHub repository if there is not already one 2. Turn on discussions and install the [Giscus app] 3. Configure the code needed to embed Giscus into your blog 4. Add the code to your MkDocs project [Giscus app]: https://github.com/apps/giscus You may want to create a test repository for this tutorial that you can scrap later on. The instructions below assume that you are user "example" and that you create a repository "giscus-test." The repository will need to be public for people to be able to use the discussions. In the instructions given below, you will need to replace at least the username but also the repository name if you chose another name such as when you want to work directly on an existing repository. !!! example "Turn on discussions and install the Giscus app" Once the repository is set up, go to its settings page and find `Features` in the `General` section. Tick the checkbox for `Discussions`. You will see that `Discussions` appears in the top navigation for the repository. If you are using a live repository then you may want to add some minimal content to the dicussions section at this point and come back to the tutorial. Next, you need to install the [Giscus app] by following the link in this sentence, and choosing `Install`, then following the instructions to choose where the Giscus app is to be installed: 1. Choose the account or organization for the repository you want to use. 2. Choose to install only on select repositories and select the one you want to use. Note that you can choose more than one repository here. 3. Select `Install` at the end. You may need to authenticate to give permission for this to happen. 4. You will end up on the `Applications` page in your settings, where you can control the Gicsus app and uninstall it if so desired. That is all the preparation you will need for the repository. Next, it is time to generate a piece of code that embeds Giscuss in your site. The resulting code snippet will look something like this: ```html <script src="https://giscus.app/client.js" data-repo="<username>/<repository>" data-repo-id="..." data-category="Announcements" data-category-id="..." data-mapping="title" data-strict="1" data-reactions-enabled="1" data-emit-metadata="1" data-input-position="top" data-theme="preferred_color_scheme" data-lang="en" data-loading="lazy" crossorigin="anonymous" async> </script> ``` !!! example "Configure the code needed to embed Giscus into your blog" Go to the [Giscus homepage] and configure the embedding code. There are a number of settings: 1. Choose the language 2. Enter the username / organization name and repository name 3. Choose how the discussions are to be mapped to the page on your blog. Because for a blog post the title is the basis of the URL, it makes sense to use the `Discussion title contains page <title>` option. 4. Under `Discussion Category` choose `Announcements` to limit the creation of new discussions to Giscuss and people with maintainer or admin permissions. 5. Under `Features`, select the following: 1. Enable reactions for the main post 2. Emit discussion metadata 3. Place the comment box above the comments 6. Under `Theme`, select `Preferred color scheme` so that Giscus matches the color scheme selected by the user for your site. [Giscus homepage]: https://giscus.app/ With these settings in place, you now need to integrate the code into your site. There is a partial `partials/comments.html` that exists for this purpose and is empty be default. It is included by the `content.html` partial, so will be included for every page on your site. You may or may not want this. In this tutorial, you will limit the Giscus integration to only blog posts but it is easy enough to leave out the code that achieves this if you want to have Giscus discussions active for every page. !!! example "Add Giscus integration code" First, you need to create an `overrides` directory that will contain the templates and partials you want to override. ``` mkdir -p overrides/partials ``` You need to declare it in your `mkdocs.yaml`: ```yaml hl_lines="3" theme: name: material custom_dir: overrides ``` Now add a file `overrides/partials/comments.html` and paste in the code snippet you obtained from the Giscus homepage. Look at the result locally and you will see that the integration is active on all pages of the site. If you want to restrict it to your blog posts, you need to add a conditional around the Giscus script that tests if comments should be included. A simple way of doing this is to test for a metadata flag: ```html {% if page.meta.comments %} <script>...</script> {% endif %} ``` The disadvantage is that you now need to manually turn on comments for each blog post - unless you want to turn them off on some. To get the comments section on all blog posts, use code like this: ```html {% if page.file.src_uri.startswith('blog/posts') %} <script>...</script> {% endif %} ``` You should see now that the Giscus comments are added at the bottom of your blog posts but not on other pages. ## What's next? This is the end of the blog tutorial. We hope you have enjoyed it and manage to set up your blog the way you like it. There are numerous other features and options that we have not been able to cover here. The [blog plugin reference] provides comprehensive documentation for the plugin. You may also want to look at the [social plugin tutorial] to generate social cards for your blog posts that get displayed when you post links to social media systems. [blog plugin reference]: https://squidfunk.github.io/mkdocs-material/plugins/blog/ [social plugin tutorial]: ../social/basic.md �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/tutorials/blogs/navigation.md��������������������������������������������0000664�0000000�0000000�00000042154�14753064456�0023377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Navigation, authors, and pagination The Blog plugin provides blog-style navigation with a reverse-chronological index page and an archive organized by year by default. This tutorial shows how you can configure details of the default navigation, configure authors, and add more navigation options using categories and the [Tags plugin]. [Tags plugin]: ../../plugins/tags.md __Time required:__ typically 30 minutes ## Integrating navigation So far, you have let the Blog plugin and MkDocs worry about navigation. For some use cases, this might be enough and it is simply sufficient to not declare a `nav` section in the `mkdocs.yml`. However, you may want to integrate a blog with other content and a navigation structure that you have defined in the `nav` section of the configuration. In such cases, you need to provide a place where the Blog plugin should attach the blog navigation to the rest of the navigation structure. !!! example "Integrate with site navigation" Add the following to your `mkdocs.yml` to see how the Blog plugin can integrate the blog navigation with the overall navigation structure. Note that the only thing you need to specify at this point is the index page for the blog and its path must match the `blog_dir` setting, which is `blog` by default: ```yaml hl_lines="5 6" nav: - Home: index.md - Install: install.md - Usage: usage.md - Blog: - blog/index.md ``` You will notice that "Blog" is duplicated in the navigation structure. To avoid this, you can use the `navigation.indexes` feature to make the blog index the section index page for the blog: ```yaml hl_lines="3 4" theme: name: material features: - navigation.indexes ``` !!! tip "Stand-alone blog" If what you need is a stand-alone blog instead of one that is integrated with a larger site, this can be done by using the `blog_dir` configuration option. To see how this is done, see [setting up a blog]. The rest of the tutorial assumes that you are integrating the blog with a wider site. [Setting up a blog]: ../../setup/setting-up-a-blog.md#blog-only !!! tip "Adding pages" You can add additional pages to the blog section by putting them into `docs/blog` (and adding them to the navigation). The blog archive will be added to the navigation after these pages. ## Configuring the archive By default, the blog archive lists posts by year only. If you want to add listings by month, you can configure the date format for the archive. !!! example "Organize posts by month" Add the following to your `mkdocs.yml` to get a listing with the month name (in the language selected in the theme options): ```yaml hl_lines="2" - blog: archive_date_format: MMMM yyyy ``` If you do not want the full month name, you can make the date configuration `MM/yyyy`, for example. If you want to add the day, you can add a placeholder for them. For example, to get an American-style output, make it `MM/dd/yyyy`. For the plugin to sort the blog posts by the full date, you will also need to set the `archive_url_date_format` to include the month and day, so make it `MM/dd/yyyy` as well. ## Using categories Categories are a way to make blog posts accessible by topic while retaining the navigation structure based on chronology within each category listing. Use them when there is a limited set of non-overlapping categories that you can sort your posts into. Categories appear in the main navigation, so are directly accessible from there. This implies that there are relatively few categories as otherwise the `categories` section in your main navigation will become too crowded. !!! example "Add a category" Add a category to your first blog post by adding it to the page header: ``` hl_lines="4 5"" --- date: 2023-12-31 updated: 2024-01-02 categories: - Holidays --- ``` Now that the blog post has been categorised, `Holidays` appears under `Categories` in the main navigation and the blog post appears in the index page for this category. !!! tip "Single or multiple categories?" While it is traditionally the case that a blog post would belong to only one category, Material for MkDocs actually allows you to assign more than one. While this gives you a degree of freedom, you should probably not use this too much, not least because you can use tags to deal with multiple classifications. We will cover them in the next step. Material allows you to control which categories blog authors can use. You declare them in the `mkdocs.yml`. This way you can make sure everyone sticks to agreed categories and that the plugin detects typos. !!! example "Control your categories" Add a `categories_allowed` entry to the configuration of the Blog plugin with the entries "Holidays" and "News": ```yaml hl_lines="5-7" plugins: - search - blog: archive_date_format: MMMM yyyy categories_allowed: - Holidays - News ``` Now, when you add a category to a blog post that does not match one of these two, you should get a build error. ## Using tags The [Tags plugin] provides another way to classify blog posts and to make them accessible independently of the main navigation structure. Tags are useful for making related content easily discoverable even if it is in different parts of the navigation hierarchy. [Tags plugin]: https://squidfunk.github.io/mkdocs-material/plugins/tags/ You may have a tutorial like this one as well as a more comprehensive setup guide and reference documentation. Adding the same tag to all three shows that they are related. As you will see, it is possible to navigate from a tagged page to the tag index and, from there, to other pages that carry the same tag. !!! example "Enable the plugin and add tags" First, you need to add the plugin to your `mkdocs.yml`: ```yaml hl_lines="8" plugins: - search - blog: archive_date_format: MMMM yyyy categories_allowed: - Holidays - News - tags ``` Once this is done, you can add tags to posts in the page header: ``` hl_lines="9-12"" --- date: created: 2023-12-31 updated: 2024-01-02 authors: - material categories: - Holidays tags: - new year - hogmanay - festive season --- ``` You should see the tags that you defined at the top of the post. However, at the moment that is it. While the blog plugin automatically creates an index page for categories, the tags plugin does not do the same for tags. This is because the tags plugin is not specific for blogs. You can use it for any site content, so it is not obvious were the tag index should go. You can configure a basic tag index using the public version of Material for MkDocs. The Insider Edition supports this as well, of course, but also provides an alternative index mechanism that allows for an arbitrary number of tag indexes, scoped listings, shadow tags, nested tags, and much more. !!! example "Adding a tags index" === "Basic tag index" To configure a tag index using the public version, add a `tags_file` entry to your configuration of the tags plugin and configure it in your `nav` section. Remember to add a colon at the end of the existing `tags` entry. ```yaml hl_lines="8-9 17" plugins: - search - blog: archive_date_format: MMMM yyyy categories_allowed: - Holidays - News - tags: tags_file: blog/tags.md nav: - Home: index.md - Install: install.md - Usage: usage.md - Blog: - blog/index.md - Tags: blog/tags.md ``` The tag index will be appended to the configured page, which you should now create at the location specified. Note that you can put the tag index page anywhere in your primary navigation, so if you are using tags elsewhere instead of just in your blog then you may want to have the tag index outside the blog section of the navigation. === "Insider Edition" To add a tag index, you add a placeholder in a Markdown file to tell the plugin to insert an index at that point. This means that you can add content before and after the index. Crucially, you can add placeholders in multiple pages, each with a configuration of what subset of tags should be displayed in the index. The simplest index page looks like this. Create it under `docs/tags.md`. ```markdown # Tag index <!-- material/tags --> ``` Now, you may want to keep the tags for your blog separate from tags you use in the rest of your page. You can achieve this by assigning the tag index a scope. Put the following under `docs/blog/tags.md`: ```markdown # Tag index for the blog <!-- material/tags { scope: true } --> ``` You now have two index pages: one covers the whole site and one covers only the blog. Add both to the navigation: ```yaml nav: - Home: index.md - Tags: tags.md - Blog: - blog/index.md - blog/tags.md ``` The tags plugin in the Insider Edition is an incredibly powerful tool and we can only scratch the surface of what is possible with it. If you want to explore more after you have worked for this part of the tutorial, have a look at the [tags plugin reference]. [tags plugin reference]: ../../plugins/tags.md ## Defining authors If your blog has more than one author then you may want to identify the author for each blog post. The blog plugin allows you to create a file that contains the author information and to then reference the authors of a particular post in the page header. !!! example "Create author info" Create a file `docs/blog/.authors.yml` with this content: ```yaml authors: team: name: Team description: Creator avatar: https://simpleicons.org/icons/materialformkdocs.svg squidfunk: name: Martin Donath description: Creator avatar: https://github.com/squidfunk.png ``` and then add a line to the header of the first post: ```hl_lines="5-6" --- date: created: 2023-12-31 updated: 2024-01-02 authors: - team --- ``` Note that `authors` is a list, so you can specify multiple authors. With the Insiders edition, you can create custom author index pages that can highlight the contributions of an author as well as provide additional information about them. !!! example "Add author page <!-- md:sponsors -->" First, you need to enable author profiles in the `mkdocs.yml`: ```yaml hl_lines="8" plugins: - search - blog: archive_date_format: MMMM yyyy categories_allowed: - Holidays - News authors_profiles: true ``` Check your blog to see that there is now an extra entry in the main navigation next to `archive` and `categories` that lists the authors and their contributions. To customize the author page, you can create a page that overrides the one generated by default. First, create the `author` directory that the profile pages will live in: ```hl_lines="3" docs ├── blog │   ├── author │   ├── index.md │   └── posts │   ├── draft.md │   └── myfirst.md └── index.md ``` Then create a page `docs/blog/author/team.md`: ``` # The Material Team A small group of people dedicated to making writing documentation easy, if not outright fun! Here are some of the things we have blogged about: ``` As you can see, the author index gets appended to the content you have written in the Markdown file. ## Pagination Once your blog starts growing, you may not want to pay attention to the number of posts displayed per page. By default, the plugin displays up to 10 posts on the index pages. You can change this number separately for the main index, the archive index pages, and the category index pages. !!! example "Changing pagination" Add five more blog posts, then set the pagination setting to show five per page only: ```yaml hl_lines="7" - blog: archive_date_format: MMMM yyyy categories_allowed: - Holidays - News authors_profiles: true pagination_per_page: 5 ``` You will see that the pagination setting for archive and category pages are inherited from the setting you added. If you want to have different settings for the different index pages, you can specify each setting separately: ```yaml - blog: archive_date_format: MMMM yyyy categories_allowed: - Holidays - News authors_profiles: true pagination_per_page: 5 archive_pagination_per_page: 10 categories_pagination_per_page: 10 ``` ## Blog table of contents Another thing you may want to do once you have a large enough number of posts is to turn on the function that produces a table of contents for the blog index pages, giving your readers the opportunity to quickly scan the content of each page for something that interests them without having to scroll (assuming that the number of post per page is not too big). !!! example "Turn on the table of contents feature" To produce a table of contents for the blog index pages, add the following to the configuration of the blog plugin: ```yaml hl_lines="2" - blog: blog_toc: true archive_date_format: MMMM yyyy # ... ``` ## Custom slugs If, for some reason, you are not happy with the way that Material for MkDocs turns headings into slugs, you can create your own slugify function or you can manually define a slug for a specific post. !!! example "Slugify function" To define your own slugify function, you need to write a Python function that converts text into a slug given additional arguments from the configuration. You also need to write a function that returns that function. Say you want to define two slugify functions that you can switch between. The first one returns a slug similar to what the default slugify function produces. The second one cuts the result of that up into words and returns a slug based on a maximum of five of them: ```python import re, functools, unicodedata RE_HTML_TAGS = re.compile(r'</?[^>]*>', re.UNICODE) RE_INVALID_SLUG_CHAR = re.compile(r'[^\w\- ]', re.UNICODE) RE_WHITESPACE = re.compile(r'\s', re.UNICODE) def _make_slug(text, sep, **kwargs): slug = unicodedata.normalize('NFC', text) slug = RE_HTML_TAGS.sub('', slug) slug = RE_INVALID_SLUG_CHAR.sub('', slug) slug = slug.strip().lower() slug = RE_WHITESPACE.sub(sep, slug) return slug def _make_slug_short(text, sep, **kwargs): words = _make_slug(text, sep, **kwargs).split(sep) return sep.join(words[:5]) def slugify(**kwargs): if 'short' in kwargs and kwargs['short']: return functools.partial(_make_slug_short, **kwargs) return functools.partial(_make_slug, **kwargs) ``` Save this code in `ext/slugs.py` and also add an (empty) `__init__.py` file to indicate that the directory is a module. Now you can configure your custom slugify code like this: ```yaml hl_lines="4-6" plugins: - blog: # other entries omitted post_slugify: !!python/object/apply:ext.slugs.slugify kwds: short: true ``` Change the heading of a blog post to be longer than five words and observe how the slugify function shortens the URL. Change the `short` attribute to `false` and you can turn this off again. If you want to influence the slug only for a single blog post, you can define it manually by specifying it in the header of the post. Note that this is meant as a last resort option. Specifying a custom slug manually for every post would be tedious. !!! example "Manually define slug" If, for example, you wanted the slug to be 'ny-eve' instead of the somewhat lengthy 'happy-new-years-eve', you could add the following: ```hl_lines="7" --- date: created: 2023-12-31 updated: 2024-01-02 readtime: 15 pin: true slug: ny-eve --- ``` The URL for this post should now be `http://localhost:8000/blog/2023/01/31/ny-eve/`. ## What's next? You may want to increase engagement with your blog by allowing people to subscribe to an RSS feed, by providing links to your social media profiles, by providing share and like buttons, or by setting up a comment system. The [engagement and dissemination tutorial] walks you through setting these up. [engagement and dissemination tutorial]: engage.md ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/tutorials/index.md�������������������������������������������������������0000664�0000000�0000000�00000005552�14753064456�0021242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Tutorials In addition to the basic getting started guides, we offer tutorials that aim to show how you can use Material for MkDocs in different use cases. In contrast to the getting started guides or the reference documentation, the tutorials show the breadth of features available in Material for MkDocs but also within the wider MkDocs ecosystem. The tutorials guide you through worked examples, so by following them you should gain not only an understanding of how to use Material for MkDocs, but also a template for your own projects. For convenience, these templates are also available as template repositories on GitHub. The tutorials assume that you have installed either the [public version] or the [Insiders edition] of Material for MkDocs and that you have worked through the [creating your site] setup guide. Note that where the features we use require the Insiders edition, we mark these with the heart icon: <!-- md:sponsors --> If you are using the public version then you can skip these steps. Sometimes there will be ways of achieving the same goal that differ between the public version and the Insider edition. In that case, we will show them in a tabbed view so you can see one or the other. [public version]: ../getting-started.md [Insiders edition]: ../insiders/getting-started.md [creating your site]: ../creating-your-site.md !!! note "Feedback wanted!" The tutorials are a recent addition to our documentation and we are still working out what shape they should have in the end. Please [provide any feedback you might have in this discussion thread]. Note, however, that suggestions should be specific and feasible. We want to focus on creating more content at the moment, instead of developing a specific styling or behaviour for the tutorials. If there are worthwhile improvements that we can make through simple customization then we are happy to consider those. [provide any feedback you might have in this discussion thread]: https://github.com/squidfunk/mkdocs-material/discussions/7220 ## Blogs * [Basics](blogs/basic.md) (20 min) <br/> covers the basics of setting up a blog, including post metadata. * [Navigation, pagination, multiple authors](blogs/navigation.md) (30 min)<br/> describes how to make it easier for your readers to find content. * [Engagement and dissemination](blogs/engage.md) (30 min)<br/> walks you through ways of increasing engagement with your content. [:octicons-repo-template-24: Template Repository](https://github.com/mkdocs-material/create-blog) ## Social cards * [Basics](social/basic.md) (20 min) <br/> shows you how to configure Material for MkDocs to create social cards for your content. * [Custom cards](social/custom.md) (15 min)<br/> shows you how to design your own custom social cards. [:octicons-repo-template-24: Template Repository](https://github.com/mkdocs-material/create-social-cards) ������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/tutorials/social/��������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0021054�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/tutorials/social/basic.md������������������������������������������������0000664�0000000�0000000�00000016302�14753064456�0022461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Basic social cards Social cards are images that other systems such as social media can display as a preview for content linked to. It is easy to get started with the social plugin, true to the motto of Material with MkDocs: "batteries included." ## Basics Before you start, there are just a couple of [dependencies to install]. These are libraries for image processing that the plugin needs to produce the social cards, as well as their Python bindings. [dependencies to install]: https://squidfunk.github.io/mkdocs-material/plugins/requirements/image-processing/ With those prerequisites met, it is simply a matter of activating the plugin, which will: * produce the social cards as PNG images for each page in your site; * create meta data in the headers of your site's pages that will provide social media systems with key information and tell them how to find the social card image. !!! example "Add social cards" Simply add the social plugin to your list of plugins: ```yaml hl_lines="3" plugins: - search - social - ... ``` Now, when you run `mkdocs build` and look at the `site` directory, you will see that it contains subfolders under `assets/images/social` that reflect the structure of your Markdown files. Each page has a corresponding PNG file that contains the social card image. Have a look at the generated HTML and you will see the metadata produced in the `head` element, including one entry that points to the image. ## Background color The social plugin has configuration options for changing aspects such as colors, images, fonts, logos, the title, even the description. You can configure them for all social cards in the `mkdocs.yml` and, in the Insiders Edition, they can be overridden in the page header for individual pages. !!! example "Change the background color" To change the background color to an attention-grabbing hot pink, you might add: ```yaml hl_lines="4-5" plugins: ... - social: cards_layout_options: background_color: "#ff1493" ``` ## Logos By default, the plugin uses the logo that you set for the whole site, either through the `theme.logo` or the `theme.icon.logo` setting. The difference between the two is that the `theme.icon.logo` version will directly embed the logo's SVG code into the HTML, allowing it to inherit CSS color settings. When you use `theme.logo`, the Material includes the logo as an image. You can set your own logo specific for the social cards as well. The path used is relative to your project root and needs to point to an SVG file or a pixel image. It should be rectangular and have a transparent background. !!! example "Set your own logo" ```yaml hl_lines="3-4" plugins: - social: cards_layout_options: logo: docs/assets/images/ourlogo.png ``` ## Background images In addition to adding your own logo, the most impactful way to personalize your social cards is to add a background image instead of the default solid color background. Make sure you choose one that will contrast well with the other elements of the card. Also, the background color gets rendered *on top of* the background image, allowing you to use a transparent color to tint an image. To use just the image, use the color value `transparent`. !!! example "Add background image" ```yaml hl_lines="4 5" plugins: - social: cards_layout_options: background_image: layouts/background.png background_color: transparent ``` The path to the background image is resolved from the root of your project, so this is where you should make the `layouts` directory and place the background image. The default site of the social cards included with the plugin is 1200x630 pixels, so choose an image that size or one that scales well to it. ## Additional layouts and styles <!-- md:sponsors --> The Insiders Edition provides additional layouts as well as the option to configure different styles for different (kinds of) pages. The Insiders Edition comes with a number of additional layouts for the social cards. For example, the `default/variant` layout adds a page icon to the card. You can use this to distinguish social cards visually, depending on what kind of page you are sharing. For example, imagine you have a set of pages that advertise events and you want to include a calendar icon as a visual indication that a card advertises an event. In the following, you will set up a directory for event pages and use the meta plugin to assign them a calendar icon. !!! example "Social cards for event pages" First, create a directory in your `docs` directory to hold the event pages: ``` $ mkdir docs/events ``` Then, add a file `.meta.yml` inside this new directory with settings for the page icon and a hot pink background color that will stand out on social media. Note that you can override the background image by setting it to `null` here since it is not visible anyway because of the opaque coloring. ```yaml --- icon: material/calendar-plus social: cards_layout_options: background_image: null background_color: "#ff1493" --- ``` Now add a page within the `docs/events` directoy. It does not need to have any special content, just a top level header. To turn on the `default/variant` layout in `mkdocs.yml`, add the `cards_layout` option and also add the meta plugin: ```yaml plugins: - meta - social: cards_layout: default/variant ``` After running `mkdocs build`, you can see that the social card at `site/assets/images/social/events/index.png` features the page icon. Note that the icon will also appear next to the navigation element for the page. If that is not what you want then you will need to modify the social card template to gets its icons from another source. You can learn how to do this in the [custom social cards tutorial](custom.md). ## Per-page settings <!-- md:sponsors --> With the Insiders Edition, you can customize the card layout for each page by adding settings to the page header. You have effectively done this in the previous exercise, but using the meta plugin to affect a whole set of pages. Say that in addition to regular events you also have the odd webinar and for this you want to set a different icon and also set the description to indicate that the event is part of the webinar series. !!! example "Override card style in page header" Add the following to the top of the page in `docs/events` or create a new one: ```yaml --- icon: material/web social: cards_layout_options: description: Our Webinar Series --- ``` ## What's next? With the Insiders Edition, you can also define custom layouts if the configuration options introduced above as not enough to meet your needs. Continue to the [custom social cards tutorial](custom.md) if you want to find out how to do this. Social cards are particularly useful for blog posts. If you have a blog, you need to do nothing more than to turn on both plugins to create social cards to advertise your latest blog posts. If you do not have one yet but would like to, why not check out the [blog tutorials](../index.md#blogs)? ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/tutorials/social/custom.md�����������������������������������������������0000664�0000000�0000000�00000011372�14753064456�0022714�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Custom cards The Insiders Edition allows you to define custom layouts for your social cards to suit your specific needs if the configuration options are not enough. For example, you may want to define a social card to advertise a new release of your product. It should have an icon indicating a launch announcement as well as the version number of the release on the card. ## Setup You can either design a custom layout from scratch or use an existing layout as the basis that you add to or otherwise modify. In this tutorial, you will use the default layout as the basis. !!! example "Copy default layout to customize <!-- md:sponsors -->" Copy the default social card layout from your installation of Material for MkDocs to a new directory `layouts`. The instructions below assume you are in your project root and have a virtual environment within this. The path on your machine, of course, may differ. ``` $ mkdir layouts $ cp venv/lib/python3.12/site-packages/material/plugins/social/templates/default/variant.yml \ layouts/release.yml ``` Before customizing the social cards, you need to tell the plugin where to find them as well as tell MkDocs to watch for any changes. Add the following to the plugin configuration in your `mkdocs.yml`: ``` yaml hl_lines="2-6" plugins: - social: cards_layout_dir: layouts watch: - layouts ``` Have a look at the contents of `release.yml`. You will see that there are: * a number of definitions of content pulled from the site, * definitions of tags that end up in the `meta` elements in the page header of each page, * a specification that consists of a number of layers that the social plugin applies on top of each other in the order in which they are defined. ## Define page metadata In the following, you will add a version number to the social card. This assumes you have a changelog page with information about each release. Add the version number of the latest version to the page header (so it does not need to be parsed out of the Markdown content): !!! example "Defining the release data <!-- md:sponsors -->" Create a page `docs/changelog.md` with the following content: ```yaml --- icon: material/rocket-launch-outline social: cards_layout: release cards_layout_options: title: New release! latest: 1.2.3 --- # Releases ``` ## Extract page metadata With the data defined in the page header, you can now add code to the layout that pulls it out and makes it available to render later on. This is to separate the data manipulation from the actual layout instructions and so make the layout file easier to read. !!! example "Adding data definitions" Add the following at the top of the layout file: ```yaml hl_lines="2-9" definitions: - &latest >- {%- if 'latest' in page.meta %} {{ page.meta['latest']}} {%- else -%} No release version data defined! {%- endif -%} ``` The code presented here checks whether the page header contains the necessary entries and spits out a message to the social card if not. Unfortunately, there is no straightforward way to raise an exception or log an error, so the messages merely appear in the social card produced. ## Add release version layer The next step is to use these data definitions in a new layer and add it to the ones already present. !!! example "Render release version" Finally, add the following to end of the custom layout: ```yaml - size: { width: 990, height: 50 } offset: { x: 50, y: 360 } typography: content: *latest align: start color: *color ``` You should now see the social plugin use the custom layout on the changelog page you set up. ## Adjust layout Finally, the rocket icon used for the changelog page is not quite in the right position. Find the please where the `page_icon` variable is used to create the page icon layer and adjust the horizontal position to 600 instead of 800. !!! tip "Debugging layout files" Should you find that your layouts are causing your MkDocs build to fail, there are a number of things you can do: 1. Run Mkdocs with the `--verbose` option to get more detailed reporting. 2. Comment out things you recently added or that you suspect are the cause 3. Install the `jinja2` command-line tool with `pip install Jinja2` and run it over your layout file, for example: `jinja2 event.yml`. ## What's next? If you do not have a blog yet, why not check out the [blog tutorials](../index.md#blogs) and learn how to set one up? The social plugin will help you draw attention to your posts on social media. Check out the [other tutorials](../index.md) we have prepared for you.����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/docs/upgrade.md���������������������������������������������������������������0000664�0000000�0000000�00000224011�14753064456�0017525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# How to upgrade Upgrade to the latest version with: ``` pip install --upgrade --force-reinstall mkdocs-material ``` Show the currently installed version with: ``` pip show mkdocs-material ``` ## Upgrading from 8.x to 9.x This major release includes a brand new search implementation that is faster and allows for rich previews, advanced tokenization and better highlighting. It was available as part of Insiders for over a year, and now that the funding goal was hit, makes its way into the community edition. ### Changes to `mkdocs.yml` #### `content.code.copy` The copy-to-clipboard buttons are now opt-in and can be enabled or disabled per block. If you wish to enable them for all code blocks, add the following lines to `mkdocs.yml`: ``` yaml theme: features: - content.code.copy ``` #### `content.action.*` A "view source" button can be shown next to the "edit this page" button, both of which must now be explicitly enabled. Add the following lines to `mkdocs.yml`: ``` yaml theme: features: - content.action.edit - content.action.view ``` #### `navigation.footer` The _previous_ and _next_ buttons in the footer are now opt-in. If you wish to keep them for your documentation, add the following lines to `mkdocs.yml`: ``` yaml theme: features: - navigation.footer ``` #### `theme.language` The Korean and Norwegian language codes were renamed, as they were non-standard: - `kr` to `ko` - `no` to `nb` #### `feedback.ratings` The old, nameless placeholders were removed (after being deprecated for several months). Make sure to switch to the new named placeholders `{title}` and `{url}`: ``` https://github.com/.../issues/new/?title=[Feedback]+{title}+-+{url} ``` ### Changes to `*.html` files The templates have undergone a series of changes. If you have customized Material for MkDocs with theme extension, be sure to incorporate the latest changes into your templates. A good starting point is to [inspect the diff]. !!! warning "Built-in plugins not working after upgrade?" If one of the built-in plugins (search or tags) doesn't work anymore without any apparent error or cause, it is very likely related to custom overrides. [MkDocs 1.4.1] and above allow themes to namespace built-in plugins, which Material for MkDocs 9 now does in order to allow authors to use third-party plugins with the same name as built-in plugins. Search your overrides for [`"in config.plugins"`][in config.plugins] and add the `material/` namespace. Affected partials: - [`content.html`][content.html] - [`header.html`][header.html] [inspect the diff]: https://github.com/squidfunk/mkdocs-material/pull/4628/files#diff-3ca112736b9164701b599f34780107abf14bb79fe110c478cac410be90899828 [MkDocs 1.4.1]: https://github.com/mkdocs/mkdocs/releases/tag/1.4.1 [in config.plugins]: https://github.com/squidfunk/mkdocs-material/search?q=%22in+config.plugins%22 [content.html]: https://github.com/squidfunk/mkdocs-material/blob/master/src/templates/partials/content.html [header.html]: https://github.com/squidfunk/mkdocs-material/blob/master/src/templates/partials/header.html ## Upgrading from 7.x to 8.x ### What's new? - Added support for code annotations - Added support for anchor tracking - Added support for version warning - Added `copyright` partial for easier override - Removed deprecated content tabs legacy implementation - Removed deprecated `seealso` admonition type - Removed deprecated `site_keywords` setting (unsupported by MkDocs) - Removed deprecated prebuilt search index support - Removed deprecated web app manifest – use customization - Removed `extracopyright` variable – use new `copyright` partial - Removed Disqus integration – use customization - Switched to `:is()` selectors for simple selector lists - Switched autoprefixer from `last 4 years` to `last 2 years` - Improved CSS overall to match modern standards - Improved CSS variable semantics for fonts - Improved extensibility by restructuring partials - Improved handling of `details` when printing - Improved keyboard navigation for footnotes - Fixed #3214: Search highlighting breaks site when empty ### Changes to `mkdocs.yml` #### `pymdownx.tabbed` Support for the legacy style of the [Tabbed] extension was dropped in favor of the new, alternate implementation which has [better behavior on mobile viewports]: === "8.x" ``` yaml markdown_extensions: - pymdownx.tabbed: alternate_style: true ``` === "7.x" ``` yaml markdown_extensions: - pymdownx.tabbed ``` [Tabbed]: setup/extensions/python-markdown-extensions.md#tabbed [better behavior on mobile viewports]: https://x.com/squidfunk/status/1424740370596958214 #### `pymdownx.superfences` The `*-experimental` suffix must be removed from the [custom fence][SuperFences] class property, which is used to target code blocks to be rendered as [diagrams] using [Mermaid.js]: === "8.x" ``` yaml markdown_extensions: - pymdownx.superfences: custom_fences: - name: mermaid class: mermaid format: !!python/name:pymdownx.superfences.fence_code_format ``` === "7.x" ``` yaml markdown_extensions: - pymdownx.superfences: custom_fences: - name: mermaid class: mermaid-experimental format: !!python/name:pymdownx.superfences.fence_code_format ``` [SuperFences]: setup/extensions/python-markdown-extensions.md#superfences [diagrams]: reference/diagrams.md [Mermaid.js]: https://mermaid-js.github.io/mermaid/ #### `google_analytics` This option was [deprecated in MkDocs 1.2.0], as the implementation of a JavaScript-based analytics integration is the responsibility of a theme. The following lines must be changed: === "8.x" ``` yaml extra: analytics: provider: google property: UA-XXXXXXXX-X ``` === "7.x" ``` yaml google_analytics: - UA-XXXXXXXX-X - auto ``` [deprecated in MkDocs 1.2.0]: https://www.mkdocs.org/about/release-notes/#backward-incompatible-changes-in-12 ### Changes to `*.html` files { data-search-exclude } The templates have undergone a set of changes to make them future-proof. If you've used theme extension to override a block or template, make sure that it matches the new structure: - If you've overridden a __block__, check `base.html` for potential changes - If you've overridden a __template__, check the respective `*.html` file for potential changes === ":octicons-file-code-16: `base.html`" ``` diff @@ -13,11 +13,6 @@ {% elif config.site_description %} <meta name="description" content="{{ config.site_description }}"> {% endif %} - {% if page and page.meta and page.meta.keywords %} - <meta name="keywords" content="{{ page.meta.keywords }}"> - {% elif config.site_keywords %} - <meta name="keywords" content="{{ config.site_keywords }}"> - {% endif %} {% if page and page.meta and page.meta.author %} <meta name="author" content="{{ page.meta.author }}"> {% elif config.site_author %} @@ -61,15 +56,13 @@ font.text | replace(' ', '+') + ':300,400,400i,700%7C' + font.code | replace(' ', '+') }}&display=fallback"> - <style>:root{--md-text-font-family:"{{ font.text }}";--md-code-font-family:"{{ font.code }}"}</style> + <style>:root{--md-text-font:"{{ font.text }}";--md-code-font:"{{ font.code }}"}</style> {% endif %} {% endblock %} - {% if config.extra.manifest %} - <link rel="manifest" href="{{ config.extra.manifest | url }}" crossorigin="use-credentials"> - {% endif %} {% for path in config["extra_css"] %} <link rel="stylesheet" href="{{ path | url }}"> {% endfor %} + {% include "partials/javascripts/base.html" %} {% block analytics %} {% include "partials/integrations/analytics.html" %} {% endblock %} @@ -89,7 +82,6 @@ <body dir="{{ direction }}"> {% endif %} {% set features = config.theme.features or [] %} - {% include "partials/javascripts/base.html" %} {% if not config.theme.palette is mapping %} {% include "partials/javascripts/palette.html" %} {% endif %} @@ -106,13 +98,25 @@ </div> <div data-md-component="announce"> {% if self.announce() %} - <aside class="md-banner md-announce"> - <div class="md-banner__inner md-announce__inner md-grid md-typeset"> + <aside class="md-banner"> + <div class="md-banner__inner md-grid md-typeset"> {% block announce %}{% endblock %} </div> </aside> {% endif %} </div> + {% if config.extra.version %} + <div data-md-component="outdated" hidden> + <aside class="md-banner md-banner--warning"> + {% if self.outdated() %} + <div class="md-banner__inner md-grid md-typeset"> + {% block outdated %}{% endblock %} + </div> + {% include "partials/javascripts/outdated.html" %} + {% endif %} + </aside> + </div> + {% endif %} {% block header %} {% include "partials/header.html" %} {% endblock %} @@ -156,25 +160,7 @@ <div class="md-content" data-md-component="content"> <article class="md-content__inner md-typeset"> {% block content %} - {% if page.edit_url %} - <a href="{{ page.edit_url }}" title="{{ lang.t('edit.link.title') }}" class="md-content__button md-icon"> - {% include ".icons/material/pencil.svg" %} - </a> - {% endif %} - {% if not "\x3ch1" in page.content %} - <h1>{{ page.title | d(config.site_name, true)}}</h1> - {% endif %} - {{ page.content }} - {% if page and page.meta %} - {% if page.meta.git_revision_date_localized or - page.meta.revision_date - %} - {% include "partials/source-file.html" %} - {% endif %} - {% endif %} - {% endblock %} - {% block disqus %} - {% include "partials/integrations/disqus.html" %} + {% include "partials/content.html" %} {% endblock %} </article> </div> ``` ``` diff @@ -38,13 +38,6 @@ <meta name="description" content="{{ config.site_description }}" /> {% endif %} - <!-- Page keywords --> - {% if page and page.meta and page.meta.keywords %} - <meta name="keywords" content="{{ page.meta.keywords }}" /> - {% elif config.site_keywords %} - <meta name="keywords" content="{{ config.site_keywords }}" /> - {% endif %} - <!-- Page author --> {% if page and page.meta and page.meta.author %} <meta name="author" content="{{ page.meta.author }}" /> @@ -120,27 +113,21 @@ /> <style> :root { - --md-text-font-family: "{{ font.text }}"; - --md-code-font-family: "{{ font.code }}"; + --md-text-font: "{{ font.text }}"; + --md-code-font: "{{ font.code }}"; } </style> {% endif %} {% endblock %} - <!-- Progressive Web App Manifest --> - {% if config.extra.manifest %} - <link - rel="manifest" - href="{{ config.extra.manifest | url }}" - crossorigin="use-credentials" - /> - {% endif %} - <!-- Custom style sheets --> {% for path in config["extra_css"] %} <link rel="stylesheet" href="{{ path | url }}" /> {% endfor %} + <!-- Helper functions for inline scripts --> + {% include "partials/javascripts/base.html" %} + <!-- Analytics --> {% block analytics %} {% include "partials/integrations/analytics.html" %} @@ -172,7 +159,6 @@ <!-- Retrieve features from configuration --> {% set features = config.theme.features or [] %} - {% include "partials/javascripts/base.html" %} <!-- User preference: color palette --> {% if not config.theme.palette is mapping %} @@ -214,14 +200,28 @@ <!-- Announcement bar --> <div data-md-component="announce"> {% if self.announce() %} - <aside class="md-banner md-announce"> - <div class="md-banner__inner md-announce__inner md-grid md-typeset"> + <aside class="md-banner"> + <div class="md-banner__inner md-grid md-typeset"> {% block announce %}{% endblock %} </div> </aside> {% endif %} </div> + <!-- Version warning --> + {% if config.extra.version %} + <div data-md-component="outdated" hidden> + <aside class="md-banner md-banner--warning"> + {% if self.outdated() %} + <div class="md-banner__inner md-grid md-typeset"> + {% block outdated %}{% endblock %} + </div> + {% include "partials/javascripts/outdated.html" %} + {% endif %} + </aside> + </div> + {% endif %} + <!-- Header --> {% block header %} {% include "partials/header.html" %} @@ -295,49 +295,11 @@ {% block content %} - - <!-- Edit button --> - {% if page.edit_url %} - <a - href="{{ page.edit_url }}" - title="{{ lang.t('edit.link.title') }}" - class="md-content__button md-icon" - > - {% include ".icons/material/pencil.svg" %} - </a> - {% endif %} - - <!-- - Hack: check whether the content contains a h1 headline. If it - doesn't, the page title (or respectively site name) is used - as the main headline. - --> - {% if not "\x3ch1" in page.content %} - <h1>{{ page.title | d(config.site_name, true)}}</h1> - {% endif %} - - <!-- Markdown content --> - {{ page.content }} - - <!-- Last update of source file --> - {% if page and page.meta %} - {% if page.meta.git_revision_date_localized or - page.meta.revision_date - %} - {% include "partials/source-file.html" %} - {% endif %} - {% endif %} - {% endblock %} - - <!-- Disqus integration --> - {% block disqus %} - {% include "partials/integrations/disqus.html" %} + {% include "partials/content.html" %} {% endblock %} </article> </div> ``` === ":octicons-file-code-16: `partials/copyright.html`" ``` diff @@ -0,0 +1,16 @@ +{#- + This file was automatically generated - do not edit +-#} +<div class="md-copyright"> + {% if config.copyright %} + <div class="md-copyright__highlight"> + {{ config.copyright }} + </div> + {% endif %} + {% if not config.extra.generator == false %} + Made with + <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener"> + Material for MkDocs + </a> + {% endif %} +</div> ``` === ":octicons-file-code-16: `partials/footer.html`" ``` diff @@ -41,21 +40,10 @@ {% endif %} <div class="md-footer-meta md-typeset"> <div class="md-footer-meta__inner md-grid"> - <div class="md-footer-copyright"> - {% if config.copyright %} - <div class="md-footer-copyright__highlight"> - {{ config.copyright }} - </div> - {% endif %} - {% if not config.extra.generator == false %} - Made with - <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener"> - Material for MkDocs - </a> - {% endif %} - {{ extracopyright }} - </div> - {% include "partials/social.html" %} + {% include "partials/copyright.html" %} + {% if config.extra.social %} + {% include "partials/social.html" %} + {% endif %} </div> </div> </footer> ``` === ":octicons-file-code-16: `partials/social.html`" ``` diff @@ -4,17 +4,15 @@ -{% if config.extra.social %} - <div class="md-footer-social"> - {% for social in config.extra.social %} - {% set title = social.name %} - {% if not title and "//" in social.link %} - {% set _,url = social.link.split("//") %} - {% set title = url.split("/")[0] %} - {% endif %} - <a href="{{ social.link }}" target="_blank" rel="noopener" title="{{ title | e }}" class="md-footer-social__link"> - {% include ".icons/" ~ social.icon ~ ".svg" %} - </a> - {% endfor %} - </div> -{% endif %} +<div class="md-social"> + {% for social in config.extra.social %} + {% set title = social.name %} + {% if not title and "//" in social.link %} + {% set _, url = social.link.split("//") %} + {% set title = url.split("/")[0] %} + {% endif %} + <a href="{{ social.link }}" target="_blank" rel="noopener" title="{{ title | e }}" class="md-social__link"> + {% include ".icons/" ~ social.icon ~ ".svg" %} + </a> + {% endfor %} +</div> ``` ## Upgrading from 6.x to 7.x ### What's new? - Added support for deploying multiple versions - Added support for integrating a language selector - Added support for rendering admonitions as inline blocks - Rewrite of the underlying reactive architecture - Removed Webpack in favor of reactive build strategy (–480 dependencies) - Fixed keyboard navigation for code blocks after content tabs switch ### Changes to `mkdocs.yml` #### `extra.version.method` The versioning method configuration was renamed to `extra.version.provider` to allow for different versioning strategies in the future: === "7.x" ``` yaml extra: version: provider: mike ``` === "6.x" ``` yaml extra: version: method: mike ``` ### Changes to `*.html` files { data-search-exclude } The templates have undergone a set of changes to make them future-proof. If you've used theme extension to override a block or template, make sure that it matches the new structure: - If you've overridden a __block__, check `base.html` for potential changes - If you've overridden a __template__, check the respective `*.html` file for potential changes === ":octicons-file-code-16: `base.html`" ``` diff @@ -61,7 +61,7 @@ font.text | replace(' ', '+') + ':300,400,400i,700%7C' + font.code | replace(' ', '+') }}&display=fallback"> - <style>body,input{font-family:"{{ font.text }}",-apple-system,BlinkMacSystemFont,Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"{{ font.code }}",SFMono-Regular,Consolas,Menlo,monospace}</style> + <style>:root{--md-text-font-family:"{{ font.text }}";--md-code-font-family:"{{ font.code }}"}</style> {% endif %} {% endblock %} {% if config.extra.manifest %} @@ -131,7 +131,7 @@ {% if page and page.meta and page.meta.hide %} {% set hidden = "hidden" if "navigation" in page.meta.hide %} {% endif %} - <div class="md-sidebar md-sidebar--primary" data-md-component="navigation" {{ hidden }}> + <div class="md-sidebar md-sidebar--primary" data-md-component="sidebar" data-md-type="navigation" {{ hidden }}> <div class="md-sidebar__scrollwrap"> <div class="md-sidebar__inner"> {% include "partials/nav.html" %} @@ -143,7 +143,7 @@ {% if page and page.meta and page.meta.hide %} {% set hidden = "hidden" if "toc" in page.meta.hide %} {% endif %} - <div class="md-sidebar md-sidebar--secondary" data-md-component="toc" {{ hidden }}> + <div class="md-sidebar md-sidebar--secondary" data-md-component="sidebar" data-md-type="toc" {{ hidden }}> <div class="md-sidebar__scrollwrap"> <div class="md-sidebar__inner"> {% include "partials/toc.html" %} @@ -152,7 +152,7 @@ </div> {% endif %} {% endblock %} - <div class="md-content"> + <div class="md-content" data-md-component="content"> <article class="md-content__inner md-typeset"> {% block content %} {% if page.edit_url %} @@ -183,10 +183,18 @@ {% include "partials/footer.html" %} {% endblock %} </div> - {% block scripts %} - <script src="{{ 'assets/javascripts/vendor.18f0862e.min.js' | url }}"></script> - <script src="{{ 'assets/javascripts/bundle.994580cf.min.js' | url }}"></script> - {%- set translations = {} -%} + <div class="md-dialog" data-md-component="dialog"> + <div class="md-dialog__inner md-typeset"></div> + </div> + {% block config %} + {%- set app = { + "base": base_url, + "features": features, + "translations": {}, + "search": "assets/javascripts/workers/search.217ffd95.min.js" | url, + "version": config.extra.version or None + } -%} + {%- set translations = app.translations -%} {%- for key in [ "clipboard.copy", "clipboard.copied", @@ -204,19 +212,12 @@ ] -%} {%- set _ = translations.update({ key: lang.t(key) }) -%} {%- endfor -%} - <script id="__lang" type="application/json"> - {{- translations | tojson -}} - </script> - {% block config %}{% endblock %} - <script> - app = initialize({ - base: "{{ base_url }}", - features: {{ features or [] | tojson }}, - search: Object.assign({ - worker: "{{ 'assets/javascripts/worker/search.9c0e82ba.min.js' | url }}" - }, typeof search !== "undefined" && search) - }) + <script id="__config" type="application/json"> + {{- app | tojson -}} </script> + {% endblock %} + {% block scripts %} + <script src="{{ 'assets/javascripts/bundle.926459b3.min.js' | url }}"></script> {% for path in config["extra_javascript"] %} <script src="{{ path | url }}"></script> {% endfor %} ``` === ":octicons-file-code-16: `partials/footer.html`" ``` diff - <div class="md-footer-nav"> - <nav class="md-footer-nav__inner md-grid" aria-label="{{ lang.t('footer.title') }}"> - {% if page.previous_page %} - <a href="{{ page.previous_page.url | url }}" class="md-footer-nav__link md-footer-nav__link--prev" rel="prev"> - <div class="md-footer-nav__button md-icon"> - {% include ".icons/material/arrow-left.svg" %} - </div> - <div class="md-footer-nav__title"> - <div class="md-ellipsis"> - <span class="md-footer-nav__direction"> - {{ lang.t("footer.previous") }} - </span> - {{ page.previous_page.title }} - </div> - </div> - </a> - {% endif %} - {% if page.next_page %} - <a href="{{ page.next_page.url | url }}" class="md-footer-nav__link md-footer-nav__link--next" rel="next"> - <div class="md-footer-nav__title"> - <div class="md-ellipsis"> - <span class="md-footer-nav__direction"> - {{ lang.t("footer.next") }} - </span> - {{ page.next_page.title }} - </div> + <nav class="md-footer__inner md-grid" aria-label="{{ lang.t('footer.title') }}"> + {% if page.previous_page %} + <a href="{{ page.previous_page.url | url }}" class="md-footer__link md-footer__link--prev" rel="prev"> + <div class="md-footer__button md-icon"> + {% include ".icons/material/arrow-left.svg" %} + </div> + <div class="md-footer__title"> + <div class="md-ellipsis"> + <span class="md-footer__direction"> + {{ lang.t("footer.previous") }} + </span> + {{ page.previous_page.title }} </div> - <div class="md-footer-nav__button md-icon"> - {% include ".icons/material/arrow-right.svg" %} + </div> + </a> + {% endif %} + {% if page.next_page %} + <a href="{{ page.next_page.url | url }}" class="md-footer__link md-footer__link--next" rel="next"> + <div class="md-footer__title"> + <div class="md-ellipsis"> + <span class="md-footer__direction"> + {{ lang.t("footer.next") }} + </span> + {{ page.next_page.title }} </div> - </a> - {% endif %} - </nav> - </div> + </div> + <div class="md-footer__button md-icon"> + {% include ".icons/material/arrow-right.svg" %} + </div> + </a> + {% endif %} + </nav> {% endif %} <div class="md-footer-meta md-typeset"> <div class="md-footer-meta__inner md-grid"> ``` === ":octicons-file-code-16: `partials/header.html`" ``` diff @@ -6,21 +6,21 @@ {% set site_url = site_url ~ "/index.html" %} {% endif %} <header class="md-header" data-md-component="header"> - <nav class="md-header-nav md-grid" aria-label="{{ lang.t('header.title') }}"> - <a href="{{ site_url }}" title="{{ config.site_name | e }}" class="md-header-nav__button md-logo" aria-label="{{ config.site_name }}"> + <nav class="md-header__inner md-grid" aria-label="{{ lang.t('header.title') }}"> + <a href="{{ site_url }}" title="{{ config.site_name | e }}" class="md-header__button md-logo" aria-label="{{ config.site_name }}"> {% include "partials/logo.html" %} </a> - <label class="md-header-nav__button md-icon" for="__drawer"> + <label class="md-header__button md-icon" for="__drawer"> {% include ".icons/material/menu" ~ ".svg" %} </label> - <div class="md-header-nav__title" data-md-component="header-title"> - <div class="md-header-nav__ellipsis"> - <div class="md-header-nav__topic"> + <div class="md-header__title" data-md-component="header-title"> + <div class="md-header__ellipsis"> + <div class="md-header__topic"> <span class="md-ellipsis"> {{ config.site_name }} </span> </div> - <div class="md-header-nav__topic"> + <div class="md-header__topic" data-md-component="header-topic"> <span class="md-ellipsis"> {% if page and page.meta and page.meta.title %} {{ page.meta.title }} @@ -31,14 +31,35 @@ </div> </div> </div> + <div class="md-header__options"> + {% if config.extra.alternate %} + <div class="md-select"> + {% set icon = config.theme.icon.alternate or "material/translate" %} + <span class="md-header__button md-icon"> + {% include ".icons/" ~ icon ~ ".svg" %} + </span> + <div class="md-select__inner"> + <ul class="md-select__list"> + {% for alt in config.extra.alternate %} + <li class="md-select__item"> + <a href="{{ alt.link | url }}" class="md-select__link"> + {{ alt.name }} + </a> + </li> + {% endfor %} + </ul> + </div> + </div> + {% endif %} + </div> {% if "search" in config["plugins"] %} - <label class="md-header-nav__button md-icon" for="__search"> + <label class="md-header__button md-icon" for="__search"> {% include ".icons/material/magnify.svg" %} </label> {% include "partials/search.html" %} {% endif %} {% if config.repo_url %} - <div class="md-header-nav__source"> + <div class="md-header__source"> {% include "partials/source.html" %} </div> {% endif %} ``` === ":octicons-file-code-16: `partials/source.html`" ``` diff @@ -4,5 +4,5 @@ {% import "partials/language.html" as lang with context %} -<a href="{{ config.repo_url }}" title="{{ lang.t('source.link.title') }}" class="md-source"> +<a href="{{ config.repo_url }}" title="{{ lang.t('source.link.title') }}" class="md-source" data-md-component="source"> <div class="md-source__icon md-icon"> {% set icon = config.theme.icon.repo or "fontawesome/brands/git-alt" %} {% include ".icons/" ~ icon ~ ".svg" %} ``` === ":octicons-file-code-16: `partials/toc.html`" ``` diff @@ -12,7 +12,7 @@ <span class="md-nav__icon md-icon"></span> {{ lang.t("toc.title") }} </label> - <ul class="md-nav__list" data-md-scrollfix> + <ul class="md-nav__list" data-md-component="toc" data-md-scrollfix> {% for toc_item in toc %} {% include "partials/toc-item.html" %} {% endfor %} ``` ## Upgrading from 5.x to 6.x ### What's new? - Improved search result look and feel - Improved search result stability while typing - Improved search result grouping (pages + headings) - Improved search result relevance and scoring - Added display of missing query terms to search results - Reduced size of vendor bundle by 25% (84kb → 67kb) - Reduced size of the Docker image to improve CI build performance - Removed hero partial in favor of custom implementation - Removed deprecated front matter features ### Changes to `mkdocs.yml` Following is a list of changes that need to be made to `mkdocs.yml`. Note that you only have to adjust the value if you defined it, so if your configuration does not contain the key, you can skip it. #### `theme.features` All feature flags that can be set from `mkdocs.yml`, like [tabs] and [instant loading], are now prefixed with the name of the component or function they apply to, e.g. `navigation.*`: === "6.x" ``` yaml theme: features: - navigation.tabs - navigation.instant ``` === "5.x" ``` yaml theme: features: - tabs - instant ``` [tabs]: setup/setting-up-navigation.md#navigation-tabs [instant loading]: setup/setting-up-navigation.md#instant-loading ### Changes to `*.html` files { data-search-exclude } The templates have undergone a set of changes to make them future-proof. If you've used theme extension to override a block or template, make sure that it matches the new structure: - If you've overridden a __block__, check `base.html` for potential changes - If you've overridden a __template__, check the respective `*.html` file for potential changes === ":octicons-file-code-16: `base.html`" ``` diff @@ -22,13 +22,6 @@ {% import "partials/language.html" as lang with context %} -<!-- Theme options --> -{% set palette = config.theme.palette %} -{% if not palette is mapping %} - {% set palette = palette | first %} -{% endif %} -{% set font = config.theme.font %} - <!doctype html> <html lang="{{ lang.t('language') }}" class="no-js"> <head> @@ -45,21 +38,8 @@ <meta name="description" content="{{ config.site_description }}" /> {% endif %} - <!-- Redirect --> - {% if page and page.meta and page.meta.redirect %} - <script> - var anchor = window.location.hash.substr(1) - location.href = '{{ page.meta.redirect }}' + - (anchor ? '#' + anchor : '') - </script> - - <!-- Fallback in case JavaScript is not available --> - <meta http-equiv="refresh" content="0; url={{ page.meta.redirect }}" /> - <meta name="robots" content="noindex" /> - <link rel="canonical" href="{{ page.meta.redirect }}" /> - <!-- Canonical --> - {% elif page.canonical_url %} + {% if page.canonical_url %} <link rel="canonical" href="{{ page.canonical_url }}" /> {% endif %} @@ -96,20 +76,21 @@ <link rel="stylesheet" href="{{ 'assets/stylesheets/main.css' | url }}" /> <!-- Extra color palette --> - {% if palette.scheme or palette.primary or palette.accent %} + {% if config.theme.palette %} + {% set palette = config.theme.palette %} <link rel="stylesheet" href="{{ 'assets/stylesheets/palette.css' | url }}" /> - {% endif %} - <!-- Theme-color meta tag for Android --> - {% if palette.primary %} - {% import "partials/palette.html" as map %} - {% set primary = map.primary( - palette.primary | replace(" ", "-") | lower - ) %} - <meta name="theme-color" content="{{ primary }}" /> + <!-- Theme-color meta tag for Android --> + {% if palette.primary %} + {% import "partials/palette.html" as map %} + {% set primary = map.primary( + palette.primary | replace(" ", "-") | lower + ) %} + <meta name="theme-color" content="{{ primary }}" /> + {% endif %} {% endif %} {% endblock %} @@ -120,7 +101,8 @@ {% block fonts %} <!-- Load fonts from Google --> - {% if font != false %} + {% if config.theme.font != false %} + {% set font = config.theme.font %} <link href="https://fonts.gstatic.com" rel="preconnect" crossorigin /> <link rel="stylesheet" @@ -169,8 +151,12 @@ <!-- Text direction and color palette, if defined --> {% set direction = config.theme.direction or lang.t('direction') %} - {% if palette.scheme or palette.primary or palette.accent %} - {% set scheme = palette.scheme | lower %} + {% if config.theme.palette %} + {% set palette = config.theme.palette %} + {% if not palette is mapping %} + {% set palette = palette | first %} + {% endif %} + {% set scheme = palette.scheme | replace(" ", "-") | lower %} {% set primary = palette.primary | replace(" ", "-") | lower %} {% set accent = palette.accent | replace(" ", "-") | lower %} <body @@ -179,18 +165,19 @@ data-md-color-primary="{{ primary }}" data-md-color-accent="{{ accent }}" > + + <!-- Experimental: set color scheme based on preference --> + {% if "preference" == scheme %} + <script> + if (matchMedia("(prefers-color-scheme: dark)").matches) + document.body.setAttribute("data-md-color-scheme", "slate") + </script> + {% endif %} + {% else %} <body dir="{{ direction }}"> {% endif %} - <!-- Experimental: set color scheme based on preference --> - {% if "preference" == palette.scheme %} - <script> - if (matchMedia("(prefers-color-scheme: dark)").matches) - document.body.setAttribute("data-md-color-scheme", "slate") - </script> - {% endif %} - <!-- State toggles - we need to set autocomplete="off" in order to reset the drawer on back button invocation in some browsers @@ -243,15 +230,11 @@ <div class="md-container" data-md-component="container"> <!-- Hero teaser --> - {% block hero %} - {% if page and page.meta and page.meta.hero %} - {% include "partials/hero.html" with context %} - {% endif %} - {% endblock %} + {% block hero %}{% endblock %} <!-- Tabs navigation --> {% block tabs %} - {% if "tabs" in config.theme.features %} + {% if "navigation.tabs" in config.theme.features %} {% include "partials/tabs.html" %} {% endif %} {% endblock %} @@ -310,13 +293,6 @@ </a> {% endif %} - <!-- Link to source file --> - {% block source %} - {% if page and page.meta and page.meta.source %} - {% include "partials/source-link.html" %} - {% endif %} - {% endblock %} - <!-- Hack: check whether the content contains a h1 headline. If it doesn't, the page title (or respectively site name) is used @@ -370,7 +346,10 @@ "search.result.placeholder", "search.result.none", "search.result.one", - "search.result.other" + "search.result.other", + "search.result.more.one", + "search.result.more.other", + "search.result.term.missing" ] -%} {%- set _ = translations.update({ key: lang.t(key) }) -%} {%- endfor -%} ``` === ":octicons-file-code-16: `partials/hero.html`" ``` diff @@ -1,12 +0,0 @@ -{#- - This file was automatically generated - do not edit --#} -{% set class = "md-hero" %} -{% if "tabs" not in config.theme.features %} - {% set class = "md-hero md-hero--expand" %} -{% endif %} -<div class="{{ class }}" data-md-component="hero"> - <div class="md-hero__inner md-grid"> - {{ page.meta.hero }} - </div> -</div> ``` === ":octicons-file-code-16: `partials/source-link`" ``` diff @@ -1,14 +0,0 @@ -{#- - This file was automatically generated - do not edit --#} -{% import "partials/language.html" as lang with context %} -{% set repo = config.repo_url %} -{% if repo | last == "/" %} - {% set repo = repo[:-1] %} -{% endif %} -{% set path = page.meta.path | default("") %} -<a href="{{ [repo, path, page.meta.source] | join('/') }}" title="{{ page.meta.source }}" class="md-content__button md-icon"> - {{ lang.t("meta.source") }} - {% set icon = config.theme.icon.repo or "fontawesome/brands/git-alt" %} - {% include ".icons/" ~ icon ~ ".svg" %} -</a> ``` ## Upgrading from 4.x to 5.x ### What's new? - Reactive architecture – try `#!js app.dialog$.next("Hi!")` in the console - [Instant loading] – make Material behave like a Single Page Application - Improved CSS customization with [CSS variables] – set your brand's colors - Improved CSS resilience, e.g. proper sidebar locking for customized headers - Improved [icon integration] and configuration – now including over 5k icons - Added possibility to use any icon for logo, repository and social links - Search UI does not freeze anymore (moved to web worker) - Search index built only once when using instant loading - Improved extensible keyboard handling - Support for [prebuilt search indexes] - Support for displaying stars and forks for GitLab repositories - Support for scroll snapping of sidebars and search results - Reduced HTML and CSS footprint due to deprecation of Internet Explorer support - Slight facelifting of some UI elements (admonitions, tables, ...) [CSS variables]: setup/changing-the-colors.md#custom-colors [icon integration]: reference/icons-emojis.md#search [prebuilt search indexes]: plugins/search.md ### Changes to `mkdocs.yml` Following is a list of changes that need to be made to `mkdocs.yml`. Note that you only have to adjust the value if you defined it, so if your configuration does not contain the key, you can skip it. #### `theme.feature` Optional features like [tabs] and [instant loading] are now implemented as flags and can be enabled by listing them in `mkdocs.yml` under `theme.features`: === "5.x" ``` yaml theme: features: - tabs - instant ``` === "4.x" ``` yaml theme: feature: tabs: true ``` #### `theme.logo.icon` The logo icon configuration was centralized under `theme.icon.logo` and can now be set to any of the [icons bundled with the theme][icon integration]: === "5.x" ``` yaml theme: icon: logo: material/cloud ``` === "4.x" ``` yaml theme: logo: icon: cloud ``` #### `extra.repo_icon` The repo icon configuration was centralized under `theme.icon.repo` and can now be set to any of the [icons bundled with the theme][icon integration]: === "5.x" ``` yaml theme: icon: repo: fontawesome/brands/gitlab ``` === "4.x" ``` yaml extra: repo_icon: gitlab ``` #### `extra.search.*` Search is now configured as part of the [plugin options]. Note that the search languages must now be listed as an array of strings and the `tokenizer` was renamed to `separator`: === "5.x" ``` yaml plugins: - search: separator: '[\s\-\.]+' lang: - en - de - ru ``` === "4.x" ``` yaml extra: search: language: en, de, ru tokenizer: '[\s\-\.]+' ``` [plugin options]: plugins/search.md #### `extra.social.*` Social links stayed in the same place, but the `type` key was renamed to `icon` in order to match the new way of specifying which icon to be used: === "5.x" ``` yaml extra: social: - icon: fontawesome/brands/github-alt link: https://github.com/squidfunk ``` === "4.x" ``` yaml extra: social: - type: github link: https://github.com/squidfunk ``` ### Changes to `*.html` files { data-search-exclude } The templates have undergone a set of changes to make them future-proof. If you've used theme extension to override a block or template, make sure that it matches the new structure: - If you've overridden a __block__, check `base.html` for potential changes - If you've overridden a __template__, check the respective `*.html` file for potential changes === ":octicons-file-code-16: `base.html`" ``` diff @@ -4,7 +4,6 @@ {% import "partials/language.html" as lang with context %} -{% set feature = config.theme.feature %} {% set palette = config.theme.palette %} {% set font = config.theme.font %} <!doctype html> @@ -30,19 +29,6 @@ {% elif config.site_author %} <meta name="author" content="{{ config.site_author }}"> {% endif %} - {% for key in [ - "clipboard.copy", - "clipboard.copied", - "search.language", - "search.pipeline.stopwords", - "search.pipeline.trimmer", - "search.result.none", - "search.result.one", - "search.result.other", - "search.tokenizer" - ] %} - <meta name="lang:{{ key }}" content="{{ lang.t(key) }}"> - {% endfor %} <link rel="shortcut icon" href="{{ config.theme.favicon | url }}"> <meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-5.0.0"> {% endblock %} @@ -56,9 +42,9 @@ {% endif %} {% endblock %} {% block styles %} - <link rel="stylesheet" href="{{ 'assets/stylesheets/application.********.css' | url }}"> + <link rel="stylesheet" href="{{ 'assets/stylesheets/main.********.min.css' | url }}"> {% if palette.primary or palette.accent %} - <link rel="stylesheet" href="{{ 'assets/stylesheets/application-palette.********.css' | url }}"> + <link rel="stylesheet" href="{{ 'assets/stylesheets/palette.********.min.css' | url }}"> {% endif %} {% if palette.primary %} {% import "partials/palette.html" as map %} @@ -69,20 +55,17 @@ {% endif %} {% endblock %} {% block libs %} - <script src="{{ 'assets/javascripts/modernizr.********.js' | url }}"></script> {% endblock %} {% block fonts %} {% if font != false %} <link href="https://fonts.gstatic.com" rel="preconnect" crossorigin> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family={{ font.text | replace(' ', '+') + ':300,400,400i,700%7C' + font.code | replace(' ', '+') }}&display=fallback"> <style>body,input{font-family:"{{ font.text }}","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"{{ font.code }}","Courier New",Courier,monospace}</style> {% endif %} {% endblock %} - <link rel="stylesheet" href="{{ 'assets/fonts/material-icons.css' | url }}"> {% if config.extra.manifest %} <link rel="manifest" href="{{ config.extra.manifest | url }}" crossorigin="use-credentials"> {% endif %} @@ -95,47 +77,50 @@ {% endblock %} {% block extrahead %}{% endblock %} </head> + {% set direction = config.theme.direction | default(lang.t('direction')) %} {% if palette.primary or palette.accent %} {% set primary = palette.primary | replace(" ", "-") | lower %} {% set accent = palette.accent | replace(" ", "-") | lower %} - <body dir="{{ lang.t('direction') }}" data-md-color-primary="{{ primary }}" data-md-color-accent="{{ accent }}"> + <body dir="{{ direction }}" data-md-color-primary="{{ primary }}" data-md-color-accent="{{ accent }}"> {% else %} - <body dir="{{ lang.t('direction') }}"> + <body dir="{{ direction }}"> {% endif %} - <svg class="md-svg"> - <defs> - {% set platform = config.extra.repo_icon or config.repo_url %} - {% if "github" in platform %} - {% include "assets/images/icons/github.f0b8504a.svg" %} - {% elif "gitlab" in platform %} - {% include "assets/images/icons/gitlab.6dd19c00.svg" %} - {% elif "bitbucket" in platform %} - {% include "assets/images/icons/bitbucket.1b09e088.svg" %} - {% endif %} - </defs> - </svg> <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off"> <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off"> - <label class="md-overlay" data-md-component="overlay" for="__drawer"></label> + <label class="md-overlay" for="__drawer"></label> + <div data-md-component="skip"> + {% if page.toc | first is defined %} + {% set skip = page.toc | first %} + <a href="{{ skip.url | url }}" class="md-skip"> + {{ lang.t('skip.link.title') }} + </a> + {% endif %} + </div> + <div data-md-component="announce"> + {% if self.announce() %} + <aside class="md-announce"> + <div class="md-announce__inner md-grid md-typeset"> + {% block announce %}{% endblock %} + </div> + </aside> + {% endif %} + </div> {% block header %} {% include "partials/header.html" %} {% endblock %} - <div class="md-container"> + <div class="md-container" data-md-component="container"> {% block hero %} {% if page and page.meta and page.meta.hero %} {% include "partials/hero.html" with context %} {% endif %} {% endblock %} - {% if feature.tabs %} - {% include "partials/tabs.html" %} - {% endif %} + {% block tabs %} + {% if "tabs" in config.theme.features %} + {% include "partials/tabs.html" %} + {% endif %} + {% endblock %} - <main class="md-main" role="main"> - <div class="md-main__inner md-grid" data-md-component="container"> + <main class="md-main" data-md-component="main"> + <div class="md-main__inner md-grid"> {% block site_nav %} {% if nav %} <div class="md-sidebar md-sidebar--primary" data-md-component="navigation"> @@ -160,41 +141,25 @@ <article class="md-content__inner md-typeset"> {% block content %} {% if page.edit_url %} - <a href="{{ page.edit_url }}" title="{{ lang.t('edit.link.title') }}" class="md-icon md-content__icon"></a> + <a href="{{ page.edit_url }}" title="{{ lang.t('edit.link.title') }}" class="md-content__button md-icon"> + {% include ".icons/material/pencil.svg" %} + </a> {% endif %} + {% block source %} + {% if page and page.meta and page.meta.source %} + {% include "partials/source-link.html" %} + {% endif %} + {% endblock %} {% if not "\x3ch1" in page.content %} <h1>{{ page.title | default(config.site_name, true)}}</h1> {% endif %} {{ page.content }} - {% block source %} - {% if page and page.meta and page.meta.source %} - <h2 id="__source">{{ lang.t("meta.source") }}</h2> - {% set repo = config.repo_url %} - {% if repo | last == "/" %} - {% set repo = repo[:-1] %} - {% endif %} - {% set path = page.meta.path | default([""]) %} - {% set file = page.meta.source %} - <a href="{{ [repo, path, file] | join('/') }}" title="{{ file }}" class="md-source-file"> - {{ file }} - </a> - {% endif %} - {% endblock %} + {% if page and page.meta %} + {% if page.meta.git_revision_date_localized or + page.meta.revision_date + %} + {% include "partials/source-date.html" %} - {% if page and page.meta and ( - page.meta.git_revision_date_localized or - page.meta.revision_date - ) %} - {% set label = lang.t("source.revision.date") %} - <hr> - <div class="md-source-date"> - <small> - {% if page.meta.git_revision_date_localized %} - {{ label }}: {{ page.meta.git_revision_date_localized }} - {% elif page.meta.revision_date %} - {{ label }}: {{ page.meta.revision_date }} - {% endif %} - </small> - </div> {% endif %} {% endblock %} {% block disqus %} @@ -208,29 +174,35 @@ {% include "partials/footer.html" %} {% endblock %} </div> {% block scripts %} - <script src="{{ 'assets/javascripts/application.********.js' | url }}"></script> - {% if lang.t("search.language") != "en" %} - {% set languages = lang.t("search.language").split(",") %} - {% if languages | length and languages[0] != "" %} - {% set path = "assets/javascripts/lunr/" %} - <script src="{{ (path ~ 'lunr.stemmer.support.js') | url }}"></script> - {% for language in languages | map("trim") %} - {% if language != "en" %} - {% if language == "ja" %} - <script src="{{ (path ~ 'tinyseg.js') | url }}"></script> - {% endif %} - {% if language in ("ar", "da", "de", "es", "fi", "fr", "hu", "it", "ja", "nl", "no", "pt", "ro", "ru", "sv", "th", "tr", "vi") %} - <script src="{{ (path ~ 'lunr.' ~ language ~ '.js') | url }}"></script> - {% endif %} - {% endif %} - {% endfor %} - {% if languages | length > 1 %} - <script src="{{ (path ~ 'lunr.multi.js') | url }}"></script> - {% endif %} - {% endif %} - {% endif %} - <script>app.initialize({version:"{{ mkdocs_version }}",url:{base:"{{ base_url }}"}})</script> + <script src="{{ 'assets/javascripts/vendor.********.min.js' | url }}"></script> + <script src="{{ 'assets/javascripts/bundle.********.min.js' | url }}"></script> + {%- set translations = {} -%} + {%- for key in [ + "clipboard.copy", + "clipboard.copied", + "search.config.lang", + "search.config.pipeline", + "search.config.separator", + "search.result.placeholder", + "search.result.none", + "search.result.one", + "search.result.other" + ] -%} + {%- set _ = translations.update({ key: lang.t(key) }) -%} + {%- endfor -%} + <script id="__lang" type="application/json"> + {{- translations | tojson -}} + </script> + {% block config %}{% endblock %} + <script> + app = initialize({ + base: "{{ base_url }}", + features: {{ config.theme.features | tojson }}, + search: Object.assign({ + worker: "{{ 'assets/javascripts/worker/search.********.min.js' | url }}" + }, typeof search !== "undefined" && search) + }) + </script> {% for path in config["extra_javascript"] %} <script src="{{ path | url }}"></script> {% endfor %} ``` === ":octicons-file-code-16: `partials/footer.html`" ``` diff @@ -5,34 +5,34 @@ <div class="md-footer-nav"> - <nav class="md-footer-nav__inner md-grid"> + <nav class="md-footer-nav__inner md-grid" aria-label="{{ lang.t('footer.title') }}"> {% if page.previous_page %} - <a href="{{ page.previous_page.url | url }}" title="{{ page.previous_page.title | striptags }}" class="md-flex md-footer-nav__link md-footer-nav__link--prev" rel="prev"> - <div class="md-flex__cell md-flex__cell--shrink"> - <i class="md-icon md-icon--arrow-back md-footer-nav__button"></i> + <a href="{{ page.previous_page.url | url }}" title="{{ page.previous_page.title | striptags }}" class="md-footer-nav__link md-footer-nav__link--prev" rel="prev"> + <div class="md-footer-nav__button md-icon"> + {% include ".icons/material/arrow-left.svg" %} </div> - <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> - <span class="md-flex__ellipsis"> + <div class="md-footer-nav__title"> + <div class="md-ellipsis"> <span class="md-footer-nav__direction"> {{ lang.t("footer.previous") }} </span> {{ page.previous_page.title }} - </span> + </div> </div> </a> {% endif %} {% if page.next_page %} - <a href="{{ page.next_page.url | url }}" title="{{ page.next_page.title | striptags }}" class="md-flex md-footer-nav__link md-footer-nav__link--next" rel="next"> - <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> - <span class="md-flex__ellipsis"> + <a href="{{ page.next_page.url | url }}" title="{{ page.next_page.title | striptags }}" class="md-footer-nav__link md-footer-nav__link--next" rel="next"> + <div class="md-footer-nav__title"> + <div class="md-ellipsis"> <span class="md-footer-nav__direction"> {{ lang.t("footer.next") }} </span> {{ page.next_page.title }} - </span> + </div> </div> - <div class="md-flex__cell md-flex__cell--shrink"> - <i class="md-icon md-icon--arrow-forward md-footer-nav__button"></i> + <div class="md-footer-nav__button md-icon"> + {% include ".icons/material/arrow-right.svg" %} </div> </a> {% endif %} ``` === ":octicons-file-code-16: `partials/header.html`" ``` diff @@ -4,51 +4,43 @@ <header class="md-header" data-md-component="header"> - <nav class="md-header-nav md-grid"> - <div class="md-flex"> - <div class="md-flex__cell md-flex__cell--shrink"> - <a href="{{ config.site_url | default(nav.homepage.url, true) | url }}" title="{{ config.site_name }}" aria-label="{{ config.site_name }}" class="md-header-nav__button md-logo"> - {% if config.theme.logo.icon %} - <i class="md-icon">{{ config.theme.logo.icon }}</i> - {% else %} - <img alt="logo" src="{{ config.theme.logo | url }}" width="24" height="24"> - {% endif %} - </a> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - <label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label> - </div> - <div class="md-flex__cell md-flex__cell--stretch"> - <div class="md-flex__ellipsis md-header-nav__title" data-md-component="title"> - {% if config.site_name == page.title %} - {{ config.site_name }} - {% else %} - <span class="md-header-nav__topic"> - {{ config.site_name }} - </span> - <span class="md-header-nav__topic"> - {% if page and page.meta and page.meta.title %} - {{ page.meta.title }} - {% else %} - {{ page.title }} - {% endif %} - </span> - {% endif %} + <nav class="md-header-nav md-grid" aria-label="{{ lang.t('header.title') }}"> + <a href="{{ config.site_url | default(nav.homepage.url, true) | url }}" title="{{ config.site_name }}" class="md-header-nav__button md-logo" aria-label="{{ config.site_name }}"> + {% include "partials/logo.html" %} + </a> + <label class="md-header-nav__button md-icon" for="__drawer"> + {% include ".icons/material/menu" ~ ".svg" %} + </label> + <div class="md-header-nav__title" data-md-component="header-title"> + {% if config.site_name == page.title %} + <div class="md-header-nav__ellipsis md-ellipsis"> + {{ config.site_name }} </div> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - {% if "search" in config["plugins"] %} - <label class="md-icon md-icon--search md-header-nav__button" for="__search"></label> - {% include "partials/search.html" %} - {% endif %} - </div> - {% if config.repo_url %} - <div class="md-flex__cell md-flex__cell--shrink"> - <div class="md-header-nav__source"> - {% include "partials/source.html" %} - </div> + {% else %} + <div class="md-header-nav__ellipsis"> + <span class="md-header-nav__topic md-ellipsis"> + {{ config.site_name }} + </span> + <span class="md-header-nav__topic md-ellipsis"> + {% if page and page.meta and page.meta.title %} + {{ page.meta.title }} + {% else %} + {{ page.title }} + {% endif %} + </span> </div> {% endif %} </div> + {% if "search" in config["plugins"] %} + <label class="md-header-nav__button md-icon" for="__search"> + {% include ".icons/material/magnify.svg" %} + </label> + {% include "partials/search.html" %} + {% endif %} + {% if config.repo_url %} + <div class="md-header-nav__source"> + {% include "partials/source.html" %} + </div> + {% endif %} </nav> </header> ``` === ":octicons-file-code-16: `partials/hero.html`" ``` diff @@ -4,9 +4,8 @@ -{% set feature = config.theme.feature %} {% set class = "md-hero" %} -{% if not feature.tabs %} +{% if "tabs" not in config.theme.features %} {% set class = "md-hero md-hero--expand" %} {% endif %} <div class="{{ class }}" data-md-component="hero"> ``` === ":octicons-file-code-16: `partials/language.html`" ``` diff @@ -4,12 +4,4 @@ {% import "partials/language/" + config.theme.language + ".html" as lang %} {% import "partials/language/en.html" as fallback %} -{% macro t(key) %}{{ { - "direction": config.theme.direction, - "search.language": ( - config.extra.search | default({}) - ).language, - "search.tokenizer": ( - config.extra.search | default({}) - ).tokenizer | default("", true), -}[key] or lang.t(key) or fallback.t(key) }}{% endmacro %} +{% macro t(key) %}{{ lang.t(key) | default(fallback.t(key)) }}{% endmacro %} ``` === ":octicons-file-code-16: `partials/logo.html`" ``` diff @@ -0,0 +1,9 @@ +{#- + This file was automatically generated - do not edit +-#} +{% if config.theme.logo %} + <img src="{{ config.theme.logo | url }}" alt="logo"> +{% else %} + {% set icon = config.theme.icon.logo or "material/library" %} + {% include ".icons/" ~ icon ~ ".svg" %} +{% endif %} ``` === ":octicons-file-code-16: `partials/nav-item.html`" ``` diff @@ -14,9 +14,15 @@ {% endif %} <label class="md-nav__link" for="{{ path }}"> {{ nav_item.title }} + <span class="md-nav__icon md-icon"> + {% include ".icons/material/chevron-right.svg" %} + </span> </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="{{ level }}"> + <nav class="md-nav" aria-label="{{ nav_item.title }}" data-md-level="{{ level }}"> <label class="md-nav__title" for="{{ path }}"> + <span class="md-nav__icon md-icon"> + {% include ".icons/material/arrow-left.svg" %} + </span> {{ nav_item.title }} </label> <ul class="md-nav__list" data-md-scrollfix> @@ -39,6 +45,9 @@ {% if toc | first is defined %} <label class="md-nav__link md-nav__link--active" for="__toc"> {{ nav_item.title }} + <span class="md-nav__icon md-icon"> + {% include ".icons/material/table-of-contents.svg" %} + </span> </label> {% endif %} <a href="{{ nav_item.url | url }}" title="{{ nav_item.title | striptags }}" class="md-nav__link md-nav__link--active"> ``` === ":octicons-file-code-16: `partials/nav.html`" ``` diff @@ -4,14 +4,10 @@ -<nav class="md-nav md-nav--primary" data-md-level="0"> - <label class="md-nav__title md-nav__title--site" for="__drawer"> - <a href="{{ config.site_url | default(nav.homepage.url, true) | url }}" title="{{ config.site_name }}" class="md-nav__button md-logo"> - {% if config.theme.logo.icon %} - <i class="md-icon">{{ config.theme.logo.icon }}</i> - {% else %} - <img alt="logo" src="{{ config.theme.logo | url }}" width="48" height="48"> - {% endif %} +<nav class="md-nav md-nav--primary" aria-label="{{ lang.t('nav.title') }}" data-md-level="0"> + <label class="md-nav__title" for="__drawer"> + <a href="{{ config.site_url | default(nav.homepage.url, true) | url }}" title="{{ config.site_name }}" class="md-nav__button md-logo" aria-label="{{ config.site_name }}"> + {% include "partials/logo.html" %} </a> {{ config.site_name }} </label> ``` === ":octicons-file-code-16: `partials/search.html`" ``` diff @@ -6,15 +6,18 @@ <label class="md-search__overlay" for="__search"></label> <div class="md-search__inner" role="search"> <form class="md-search__form" name="search"> - <input type="text" class="md-search__input" name="query" aria-label="Search" placeholder="{{ lang.t('search.placeholder') }}" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="query" data-md-state="active"> + <input type="text" class="md-search__input" name="query" aria-label="{{ lang.t('search.placeholder') }}" placeholder="{{ lang.t('search.placeholder') }}" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="search-query" data-md-state="active"> <label class="md-search__icon md-icon" for="__search"> + {% include ".icons/material/magnify.svg" %} + {% include ".icons/material/arrow-left.svg" %} </label> - <button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1"> -  + <button type="reset" class="md-search__icon md-icon" aria-label="{{ lang.t('search.reset') }}" data-md-component="search-reset" tabindex="-1"> + {% include ".icons/material/close.svg" %} </button> </form> <div class="md-search__output"> <div class="md-search__scrollwrap" data-md-scrollfix> - <div class="md-search-result" data-md-component="result"> + <div class="md-search-result" data-md-component="search-result"> <div class="md-search-result__meta"> {{ lang.t("search.result.placeholder") }} </div> ``` === ":octicons-file-code-16: `partials/social.html`" ``` diff @@ -4,9 +4,12 @@ {% if config.extra.social %} <div class="md-footer-social"> - <link rel="stylesheet" href="{{ 'assets/fonts/font-awesome.css' | url }}"> {% for social in config.extra.social %} - <a href="{{ social.link }}" target="_blank" rel="noopener" title="{{ social.type }}" class="md-footer-social__link fa fa-{{ social.type }}"></a> + {% set _,rest = social.link.split("//") %} + {% set domain = rest.split("/")[0] %} + <a href="{{ social.link }}" target="_blank" rel="noopener" title="{{ domain }}" class="md-footer-social__link"> + {% include ".icons/" ~ social.icon ~ ".svg" %} + </a> {% endfor %} </div> {% endif %} ``` === ":octicons-file-code-16: `partials/source-date.html`" ``` diff @@ -0,0 +1,15 @@ +{#- + This file was automatically generated - do not edit +-#} +{% import "partials/language.html" as lang with context %} +{% set label = lang.t("source.revision.date") %} +<hr> +<div class="md-source-date"> + <small> + {% if page.meta.git_revision_date_localized %} + {{ label }}: {{ page.meta.git_revision_date_localized }} + {% elif page.meta.revision_date %} + {{ label }}: {{ page.meta.revision_date }} + {% endif %} + </small> +</div> ``` === ":octicons-file-code-16: `partials/source-link.html`" ``` diff @@ -0,0 +1,13 @@ +{#- + This file was automatically generated - do not edit +-#} +{% import "partials/language.html" as lang with context %} +{% set repo = config.repo_url %} +{% if repo | last == "/" %} + {% set repo = repo[:-1] %} +{% endif %} +{% set path = page.meta.path | default([""]) %} +<a href="{{ [repo, path, page.meta.source] | join('/') }}" title="{{ file }}" class="md-content__button md-icon"> + {{ lang.t("meta.source") }} + {% include ".icons/" ~ config.theme.icon.repo ~ ".svg" %} +</a> ``` === ":octicons-file-code-16: `partials/source.html`" ``` diff @@ -4,24 +4,11 @@ {% import "partials/language.html" as lang with context %} -{% set platform = config.extra.repo_icon or config.repo_url %} -{% if "github" in platform %} - {% set repo_type = "github" %} -{% elif "gitlab" in platform %} - {% set repo_type = "gitlab" %} -{% elif "bitbucket" in platform %} - {% set repo_type = "bitbucket" %} -{% else %} - {% set repo_type = "" %} -{% endif %} -<a href="{{ config.repo_url }}" title="{{ lang.t('source.link.title') }}" class="md-source" data-md-source="{{ repo_type }}"> - {% if repo_type %} - <div class="md-source__icon"> - <svg viewBox="0 0 24 24" width="24" height="24"> - <use xlink:href="#__{{ repo_type }}" width="24" height="24"></use> - </svg> - </div> - {% endif %} +<a href="{{ config.repo_url }}" title="{{ lang.t('source.link.title') }}" class="md-source"> + <div class="md-source__icon md-icon"> + {% set icon = config.theme.icon.repo or "fontawesome/brands/git-alt" %} + {% include ".icons/" ~ icon ~ ".svg" %} + </div> <div class="md-source__repository"> {{ config.repo_name }} </div> ``` === ":octicons-file-code-16: `partials/tabs-item.html`" ``` diff @@ -4,7 +4,7 @@ -{% if nav_item.is_homepage %} +{% if nav_item.is_homepage or nav_item.url == "index.html" %} <li class="md-tabs__item"> {% if not page.ancestors | length and nav | selectattr("url", page.url) %} <a href="{{ nav_item.url | url }}" class="md-tabs__link md-tabs__link--active"> ``` === ":octicons-file-code-16: `partials/tabs.html`" ``` diff @@ -5,7 +5,7 @@ {% if page.ancestors | length > 0 %} {% set class = "md-tabs md-tabs--active" %} {% endif %} -<nav class="{{ class }}" data-md-component="tabs"> +<nav class="{{ class }}" aria-label="{{ lang.t('tabs.title') }}" data-md-component="tabs"> <div class="md-tabs__inner md-grid"> <ul class="md-tabs__list"> {% for nav_item in nav %} ``` === ":octicons-file-code-16: `partials/toc-item.html`" ``` diff @@ -6,7 +6,7 @@ {{ toc_item.title }} </a> {% if toc_item.children %} - <nav class="md-nav"> + <nav class="md-nav" aria-label="{{ toc_item.title }}"> <ul class="md-nav__list"> {% for toc_item in toc_item.children %} {% include "partials/toc-item.html" %} ``` === ":octicons-file-code-16: `partials/toc.html`" ``` diff @@ -4,35 +4,22 @@ {% import "partials/language.html" as lang with context %} -<nav class="md-nav md-nav--secondary"> +<nav class="md-nav md-nav--secondary" aria-label="{{ lang.t('toc.title') }}"> {% endif %} {% if toc | first is defined %} <label class="md-nav__title" for="__toc"> + <span class="md-nav__icon md-icon"> + {% include ".icons/material/arrow-left.svg" %} + </span> {{ lang.t("toc.title") }} </label> <ul class="md-nav__list" data-md-scrollfix> {% for toc_item in toc %} {% include "partials/toc-item.html" %} {% endfor %} - {% if page.meta.source and page.meta.source | length > 0 %} - <li class="md-nav__item"> - <a href="#__source" class="md-nav__link md-nav__link--active"> - {{ lang.t("meta.source") }} - </a> - </li> - {% endif %} - {% set disqus = config.extra.disqus %} - {% if page and page.meta and page.meta.disqus is string %} - {% set disqus = page.meta.disqus %} - {% endif %} - {% if not page.is_homepage and disqus %} - <li class="md-nav__item"> - <a href="#__comments" class="md-nav__link md-nav__link--active"> - {{ lang.t("meta.comments") }} - </a> - </li> - {% endif %} </ul> {% endif %} </nav> ``` ## Upgrading from 3.x to 4.x ### What's new? Material for MkDocs 4 fixes incorrect layout on Chinese systems. The fix includes a mandatory change of the base font-size from `10px` to `20px` which means all `rem` values needed to be updated. Within the theme, `px` to `rem` calculation is now encapsulated in a new function called `px2rem` which is part of the SASS code base. If you use Material for MkDocs with custom CSS that is based on `rem` values, note that those values must now be divided by 2. Now, `1.0rem` doesn't map to `10px`, but `20px`. To learn more about the problem and implications, please refer to #911 in which the problem was discovered and fixed. ### Changes to `mkdocs.yml` None. ### Changes to `*.html` files None. �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/giscus.json�������������������������������������������������������������������0000664�0000000�0000000�00000000061�14753064456�0017011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "origins": ["https://squidfunk.github.io"] } �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/includes/���������������������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0016432�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/includes/debug/���������������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0017520�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/includes/debug/cairo-lookup-linux.py������������������������������������������0000664�0000000�0000000�00000006643�14753064456�0023644�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������import inspect import os import shutil import subprocess from ctypes import util class CustomPopen(subprocess.Popen): def __init__(self, *args, **kwargs): print(f"Subprocess command:\n {' '.join(args[0])}") super().__init__(*args, **kwargs) def communicate(self, *args, **kwargs): out, _ = super().communicate(*args, **kwargs) out = out.rstrip() print("Subprocess output:") if out: print(f" {os.fsdecode(out)}") else: print(f" Output is empty") return out, _ def __getattribute__(self, name_): att = super().__getattribute__(name_) if name_ == "stdout" and att is not None: att.read = self.read_wrapper(att.read) return att @staticmethod def read_wrapper(func): if func.__name__ == "wrapper": return func def wrapper(*args, **kwargs): output = func(*args, **kwargs) print("Subprocess output:") for line_ in os.fsdecode(output).split("\n"): print(line_) return output return wrapper subprocess.Popen = CustomPopen print("ctypes.util script with the find_library:") print(inspect.getsourcefile(util.find_library), end="\n\n") print("find_library function:") func_lines = list(map(str.rstrip, inspect.getsourcelines(util.find_library)[0])) indent = len(func_lines[0]) - len(func_lines[0].lstrip()) for line in func_lines: print(line.replace(" " * indent, "", 1)) library_names = ("cairo-2", "cairo", "libcairo-2") filenames = ("libcairo.so.2", "libcairo.2.dylib", "libcairo-2.dll") c_compiler = shutil.which("gcc") or shutil.which("cc") ld_env = os.environ.get("LD_LIBRARY_PATH") first_found = "" print("\nLD_LIBRARY_PATH =", ld_env, end="\n\n") for name in library_names: if hasattr(util, "_findSoname_ldconfig"): result = util._findSoname_ldconfig(name) print(f"_findSoname_ldconfig({name}) ->", result) if result: print(f"Found {result}") if not first_found: first_found = result print("---") if c_compiler and hasattr(util, "_findLib_gcc"): result = util._findLib_gcc(name) print(f"_findLib_gcc({name}) ->", result) if result and hasattr(util, "_get_soname"): result = util._get_soname(result) if result: print(f"Found {result}") if not first_found: first_found = result print("---") if hasattr(util, "_findLib_ld"): result = util._findLib_ld(name) print(f"_findLib_ld({name}) ->", result) if result and hasattr(util, "_get_soname"): result = util._get_soname(result) if result: print(f"Found {result}") if not first_found: first_found = result print("---") if hasattr(util, "_findLib_crle"): result = util._findLib_crle(name, False) print(f"_findLib_crle({name}) ->", result) if result and hasattr(util, "_get_soname"): result = util._get_soname(result) if result: print(f"Found {result}") if not first_found: first_found = result print("---") if first_found: filenames = (first_found,) + filenames print(f"The path is {first_found or 'not found'}") print("List of files that FFI will try to load:") for filename in filenames: print("-", filename) ���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/includes/debug/cairo-lookup-macos.py������������������������������������������0000664�0000000�0000000�00000002427�14753064456�0023603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������import os from ctypes.macholib import dyld from itertools import chain library_names = ("cairo-2", "cairo", "libcairo-2") filenames = ("libcairo.so.2", "libcairo.2.dylib", "libcairo-2.dll") first_found = "" names = [] for name in library_names: names += [ "lib%s.dylib" % name, "%s.dylib" % name, "%s.framework/%s" % (name, name), ] for name in names: for path in dyld.dyld_image_suffix_search( chain( dyld.dyld_override_search(name), dyld.dyld_executable_path_search(name), dyld.dyld_default_search(name), ) ): if os.path.isfile(path): print(f"Found: {path}") if not first_found: first_found = path continue try: if dyld._dyld_shared_cache_contains_path(path): print(f"Found: {path}") if not first_found: first_found = path continue except NotImplementedError: pass print(f"Doesn't exist: {path}") print("---") if first_found: filenames = (first_found,) + filenames print(f"The path is {first_found or 'not found'}") print("List of files that FFI will try to load:") for filename in filenames: print("-", filename) �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/includes/debug/cairo-lookup-windows.py����������������������������������������0000664�0000000�0000000�00000001564�14753064456�0024174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������import os library_names = ("cairo-2", "cairo", "libcairo-2") filenames = ("libcairo.so.2", "libcairo.2.dylib", "libcairo-2.dll") first_found = "" names = [] for name in library_names: if name.lower().endswith(".dll"): names += [name] else: names += [name, name + ".dll"] for name in names: for path in os.environ["PATH"].split(os.pathsep): resolved_path = os.path.join(path, name) if os.path.exists(resolved_path): print(f"Found: {resolved_path}") if not first_found: first_found = resolved_path continue print(f"Doesn't exist: {resolved_path}") print("---") if first_found: filenames = (first_found,) + filenames print(f"The path is {first_found or 'not found'}") print("List of files that FFI will try to load:") for filename in filenames: print("-", filename) ��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/includes/mkdocs.md������������������������������������������������������������0000664�0000000�0000000�00000002012�14753064456�0020227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ [mkdocs]: https://www.mkdocs.org [mkdocs.dotfiles]: https://www.mkdocs.org/dev-guide/themes/#dot-files [mkdocs.metadata]: https://www.mkdocs.org/user-guide/writing-your-docs/#yaml-style-meta-data [mkdocs.env]: https://www.mkdocs.org/user-guide/configuration/#environment-variables [mkdocs.docs_dir]: https://www.mkdocs.org/user-guide/configuration/#docs_dir [mkdocs.extra_templates]: https://www.mkdocs.org/user-guide/configuration/#extra_templates [mkdocs.site_dir]: https://www.mkdocs.org/user-guide/configuration/#site_dir [mkdocs.site_url]: https://www.mkdocs.org/user-guide/configuration/#site_url [mkdocs.site_description]: https://www.mkdocs.org/user-guide/configuration/#site_description [mkdocs.nav]: https://www.mkdocs.org/user-guide/configuration/#nav [mkdocs.plugins]: https://www.mkdocs.org/user-guide/configuration/#plugins [mkdocs.strict]: https://www.mkdocs.org/user-guide/configuration/#strict [mkdocs.use_directory_urls]: https://www.mkdocs.org/user-guide/configuration/#use_directory_urls ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/���������������������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0016422�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/__init__.py����������������������������������������������������������0000664�0000000�0000000�00000002174�14753064456�0020537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. __version__ = "9.6.4" ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/extensions/����������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0020621�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/extensions/__init__.py�����������������������������������������������0000664�0000000�0000000�00000002145�14753064456�0022734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/extensions/emoji.py��������������������������������������������������0000664�0000000�0000000�00000007061�14753064456�0022302�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations import codecs import functools import material import os from glob import iglob from inspect import getfile from markdown import Markdown from pymdownx import emoji, twemoji_db from xml.etree.ElementTree import Element # ----------------------------------------------------------------------------- # Functions # ----------------------------------------------------------------------------- # Create twemoji index def twemoji(options: object, md: Markdown): paths = options.get("custom_icons", [])[:] return _load_twemoji_index(tuple(paths)) # Create emoji or icon def to_svg( index: str, shortname: str, alias: str, uc: str | None, alt: str, title: str, category: str, options: object, md: Markdown ): if not uc: icons = md.inlinePatterns["emoji"].emoji_index["emoji"] # Create and return element to host icon el = Element("span", { "class": options.get("classes", index) }) el.text = md.htmlStash.store(_load(icons[shortname]["path"])) return el # Delegate to `pymdownx.emoji` extension return emoji.to_svg( index, shortname, alias, uc, alt, title, category, options, md ) # ----------------------------------------------------------------------------- # Helper functions # ----------------------------------------------------------------------------- # Load icon @functools.lru_cache(maxsize = None) def _load(file: str): with codecs.open(file, encoding = "utf-8") as f: return f.read() # Load twemoji index and add icons @functools.lru_cache(maxsize = None) def _load_twemoji_index(paths): index = { "name": "twemoji", "emoji": twemoji_db.emoji, "aliases": twemoji_db.aliases } # Compute path to theme root and traverse all icon directories root = os.path.dirname(getfile(material)) root = os.path.join(root, "templates", ".icons") for path in [*paths, root]: base = os.path.normpath(path) # Index icons provided by the theme and via custom icons glob = os.path.join(base, "**", "*.svg") glob = iglob(os.path.normpath(glob), recursive = True) for file in glob: icon = file[len(base) + 1:-4].replace(os.path.sep, "-") # Add icon to index name = f":{icon}:" if not any(name in index[key] for key in ["emoji", "aliases"]): index["emoji"][name] = { "name": name, "path": file } # Return index return index �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/overrides/�����������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0020424�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/overrides/assets/����������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0021726�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/overrides/assets/javascripts/����������������������������������������0000775�0000000�0000000�00000000000�14753064456�0024257�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/overrides/assets/javascripts/custom.00e08f28.min.js������������������0000664�0000000�0000000�00000143716�14753064456�0030000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������"use strict";(()=>{var go=Object.create;var Ar=Object.defineProperty;var wo=Object.getOwnPropertyDescriptor;var So=Object.getOwnPropertyNames,et=Object.getOwnPropertySymbols,Eo=Object.getPrototypeOf,tt=Object.prototype.hasOwnProperty,Oo=Object.prototype.propertyIsEnumerable;var rt=(e,r,t)=>r in e?Ar(e,r,{enumerable:!0,configurable:!0,writable:!0,value:t}):e[r]=t,Je=(e,r)=>{for(var t in r||(r={}))tt.call(r,t)&&rt(e,t,r[t]);if(et)for(var t of et(r))Oo.call(r,t)&&rt(e,t,r[t]);return e};var Me=(e,r)=>()=>(r||e((r={exports:{}}).exports,r),r.exports);var To=(e,r,t,o)=>{if(r&&typeof r=="object"||typeof r=="function")for(let n of So(r))!tt.call(e,n)&&n!==t&&Ar(e,n,{get:()=>r[n],enumerable:!(o=wo(r,n))||o.enumerable});return e};var ot=(e,r,t)=>(t=e!=null?go(Eo(e)):{},To(r||!e||!e.__esModule?Ar(t,"default",{value:e,enumerable:!0}):t,e));var De=Me(Z=>{(function(){var e,r,t,o,n,i,f,u,c,a,s,p,d,l,m,h,b,w,E,k;k=150,a=20,E=150,c=.75,Z.score=function(v,x,S){var T,y,g,_;return y=S.preparedQuery,T=S.allowErrors,T||n(v,y.core_lw,y.core_up)?(_=v.toLowerCase(),g=r(v,_,y),Math.ceil(g)):0},Z.isMatch=n=function(v,x,S){var T,y,g,_,W,U,L;if(g=v.length,_=x.length,!g||_>g)return!1;for(T=-1,y=-1;++y<_;){for(W=x.charCodeAt(y),U=S.charCodeAt(y);++T<g&&(L=v.charCodeAt(T),!(L===W||L===U)););if(T===g)return!1}return!0},Z.computeScore=r=function(v,x,S){var T,y,g,_,W,U,L,j,M,N,V,re,Q,fe,de,te,ye,ce,Er,Ae,Ke,Or,Tr,_r;if(de=S.query,te=S.query_lw,N=v.length,Q=de.length,T=s(v,x,de,te),y=T.score,T.count===Q)return l(Q,N,y,T.pos);if(fe=x.indexOf(te),fe>-1)return m(v,x,de,te,fe,Q,N);for(Ae=new Array(Q),W=new Array(Q),_r=w(Q,N),V=Math.ceil(c*Q)+5,re=V,L=!0,M=-1;++M<Q;)Ae[M]=0,W[M]=0;for(j=-1;++j<N;){if(Or=x[j],!Or.charCodeAt(0)in S.charCodes){if(L){for(M=-1;++M<Q;)W[M]=0;L=!1}continue}for(ce=0,Er=0,_=0,ye=!0,L=!0,M=-1;++M<Q;){if(Ke=Ae[M],Ke>ce&&(ce=Ke),U=0,te[M]===Or)if(Tr=u(j,v,x),U=_>0?_:d(v,x,de,te,j,M,Tr),g=Er+p(j,M,Tr,y,U),g>ce)ce=g,re=V;else{if(ye&&--re<=0)return Math.max(ce,Ae[Q-1])*_r;ye=!1}Er=Ke,_=W[M],W[M]=U,Ae[M]=ce}}return ce=Ae[Q-1],ce*_r},Z.isWordStart=u=function(v,x,S){var T,y;return v===0?!0:(T=x[v],y=x[v-1],i(y)||T!==S[v]&&y===S[v-1])},Z.isWordEnd=f=function(v,x,S,T){var y,g;return v===T-1?!0:(y=x[v],g=x[v+1],i(g)||y===S[v]&&g!==S[v+1])},i=function(v){return v===" "||v==="."||v==="-"||v==="_"||v==="/"||v==="\\"},b=function(v){var x;return v<a?(x=a-v,100+x*x):Math.max(100+a-v,0)},Z.scoreSize=w=function(v,x){return E/(E+Math.abs(x-v))},l=function(v,x,S,T){return 2*v*(k*S+b(T))*w(v,x)},Z.scorePattern=h=function(v,x,S,T,y){var g,_;return _=v,g=6,S===v&&(g+=2),T&&(g+=3),y&&(g+=1),v===x&&(T&&(S===x?_+=2:_+=1),y&&(g+=1)),S+_*(_+g)},Z.scoreCharacter=p=function(v,x,S,T,y){var g;return g=b(v),S?g+k*((T>y?T:y)+10):g+k*y},Z.scoreConsecutives=d=function(v,x,S,T,y,g,_){var W,U,L,j,M,N,V;for(U=v.length,j=S.length,L=U-y,M=j-g,W=L<M?L:M,N=0,V=0,S[g]===v[y]&&N++;++V<W&&T[++g]===x[++y];)S[g]===v[y]&&N++;return V<W&&y--,V===1?1+2*N:h(V,j,N,_,f(y,v,x,U))},Z.scoreExactMatch=m=function(v,x,S,T,y,g,_){var W,U,L,j,M;for(M=u(y,v,x),M||(L=x.indexOf(T,y+1),L>-1&&(M=u(L,v,x),M&&(y=L))),U=-1,j=0;++U<g;)S[y+U]===v[U]&&j++;return W=f(y+g-1,v,x,_),l(g,_,h(g,g,j,M,W),y)},e=function(){function v(x,S,T){this.score=x,this.pos=S,this.count=T}return v}(),t=new e(0,.1,0),Z.scoreAcronyms=s=function(v,x,S,T){var y,g,_,W,U,L,j,M,N,V,re;if(U=v.length,L=S.length,!(U>1&&L>1))return t;for(y=0,V=0,re=0,M=0,_=-1,W=-1;++W<L;){if(j=T[W],i(j))if(_=x.indexOf(j,_+1),_>-1){V++;continue}else break;for(;++_<U;)if(j===x[_]&&u(_,v,x)){S[W]===v[_]&&M++,re+=_,y++;break}if(_===U)break}return y<2?t:(g=y===L?o(v,x,S,y):!1,N=h(y,L,M,!0,g),new e(N,re/y,y+V))},o=function(v,x,S,T){var y,g,_,W;if(_=v.length,W=S.length,y=0,_>12*W)return!1;for(g=-1;++g<_;)if(u(g,v,x)&&++y>T)return!1;return!0}}).call(Z)});var wr=Me(Qe=>{(function(){var e,r,t,o,n,i,f,u,c,a;a=De(),i=a.isMatch,e=a.computeScore,u=a.scoreSize,c=20,t=2.5,Qe.score=function(s,p,d){var l,m,h,b;return m=d.preparedQuery,l=d.allowErrors,l||i(s,m.core_lw,m.core_up)?(b=s.toLowerCase(),h=e(s,b,m),h=f(s,b,h,d),Math.ceil(h)):0},f=function(s,p,d,l){var m,h,b,w,E,k,v,x,S,T;if(d===0)return 0;for(S=l.preparedQuery,T=l.useExtensionBonus,x=l.pathSeparator,E=s.length-1;s[E]===x;)E--;if(b=s.lastIndexOf(x,E),v=E-b,k=1,T&&(k+=n(p,S.ext,b,E,2),d*=k),b===-1)return d;for(w=S.depth;b>-1&&w-- >0;)b=s.lastIndexOf(x,b-1);return h=b===-1?d:k*e(s.slice(b+1,E+1),p.slice(b+1,E+1),S),m=.5*c/(c+r(s,E+1,x)),m*h+(1-m)*d*u(0,t*v)},Qe.countDir=r=function(s,p,d){var l,m;if(p<1)return 0;for(l=0,m=-1;++m<p&&s[m]===d;);for(;++m<p;)if(s[m]===d)for(l++;++m<p&&s[m]===d;);return l},Qe.getExtension=o=function(s){var p;return p=s.lastIndexOf("."),p<0?"":s.substr(p+1)},n=function(s,p,d,l,m){var h,b,w,E;if(!p.length||(E=s.lastIndexOf(".",l),!(E>d)))return 0;for(w=p.length,h=l-E,h<w&&(w=h,h=p.length),E++,b=-1;++b<w&&s[E+b]===p[b];);return b===0&&m>0?.9*n(s,p,d,E-2,m-1):b/h}}).call(Qe)});var Gr=Me((to,oo)=>{(function(){var e,r,t,o,n,i,f,u;u=wr(),t=u.countDir,n=u.getExtension,oo.exports=e=function(){function c(a,s){var p,d,l;if(l=s!=null?s:{},p=l.optCharRegEx,d=l.pathSeparator,!(a&&a.length))return null;this.query=a,this.query_lw=a.toLowerCase(),this.core=r(a,p),this.core_lw=this.core.toLowerCase(),this.core_up=f(this.core),this.depth=t(a,a.length,d),this.ext=n(this.query_lw),this.charCodes=o(this.query_lw)}return c}(),i=/[ _\-:\/\\]/g,r=function(c,a){return a==null&&(a=i),c.replace(a,"")},f=function(c){var a,s,p,d;for(s="",p=0,d=c.length;p<d;p++)a=c[p],s+=a.toUpperCase()[0];return s},o=function(c){var a,s,p;for(p=c.length,s=-1,a=[];++s<p;)a[c.charCodeAt(s)]=!0;return a}}).call(to)});var ao=Me((no,io)=>{(function(){var e,r,t,o,n;o=De(),r=wr(),e=Gr(),t=function(i){return i.candidate},n=function(i,f){return f.score-i.score},io.exports=function(i,f,u){var c,a,s,p,d,l,m,h,b,w,E,k,v;for(h=[],s=u.key,d=u.maxResults,p=u.maxInners,E=u.usePathScoring,b=p!=null&&p>0?p:i.length+1,c=s!=null,m=E?r:o,k=0,v=i.length;k<v&&(a=i[k],w=c?a[s]:a,!(!!w&&(l=m.score(w,f,u),l>0&&(h.push({candidate:a,score:l}),!--b))));k++);return h.sort(n),i=h.map(t),d!=null&&(i=i.slice(0,d)),i}}).call(no)});var fo=Me(Sr=>{(function(){var e,r,t,o,n,i,f,u,c,a;a=De(),t=a.isMatch,o=a.isWordStart,c=a.scoreConsecutives,u=a.scoreCharacter,f=a.scoreAcronyms,Sr.match=n=function(s,p,d){var l,m,h,b,w,E;return l=d.allowErrors,w=d.preparedQuery,b=d.pathSeparator,l||t(s,w.core_lw,w.core_up)?(E=s.toLowerCase(),h=r(s,E,w),h.length===0||s.indexOf(b)>-1&&(m=e(s,E,w,b),h=i(h,m)),h):[]},Sr.wrap=function(s,p,d){var l,m,h,b,w,E,k,v,x;if(d.wrap!=null&&(x=d.wrap,E=x.tagClass,v=x.tagOpen,k=x.tagClose),E==null&&(E="highlight"),v==null&&(v='<strong class="'+E+'">'),k==null&&(k="</strong>"),s===p)return v+s+k;if(h=n(s,p,d),h.length===0)return s;for(b="",l=-1,w=0;++l<h.length;){for(m=h[l],m>w&&(b+=s.substring(w,m),w=m);++l<h.length;)if(h[l]===m+1)m++;else{l--;break}m++,m>w&&(b+=v,b+=s.substring(w,m),b+=k,w=m)}return w<=s.length-1&&(b+=s.substring(w)),b},e=function(s,p,d,l){var m,h,b;for(b=s.length-1;s[b]===l;)b--;if(m=s.lastIndexOf(l,b),m===-1)return[];for(h=d.depth;h-- >0;)if(m=s.lastIndexOf(l,m-1),m===-1)return[];return m++,b++,r(s.slice(m,b),p.slice(m,b),d,m)},i=function(s,p){var d,l,m,h,b,w,E;if(b=s.length,w=p.length,w===0)return s.slice();if(b===0)return p.slice();for(m=-1,h=0,l=p[h],E=[];++m<b;){for(d=s[m];l<=d&&++h<w;)l<d&&E.push(l),l=p[h];E.push(d)}for(;h<w;)E.push(p[h++]);return E},r=function(s,p,d,l){var m,h,b,w,E,k,v,x,S,T,y,g,_,W,U,L,j,M,N,V,re,Q,fe,de,te,ye;for(l==null&&(l=0),M=d.query,N=d.query_lw,_=s.length,L=M.length,E=f(s,p,M,N).score,Q=new Array(L),S=new Array(L),b=0,w=1,h=2,m=3,ye=new Array(_*L),j=-1,g=-1;++g<L;)Q[g]=0,S[g]=0;for(y=-1;++y<_;)for(V=0,fe=0,x=0,de=p[y],g=-1;++g<L;)T=0,k=0,re=fe,N[g]===de&&(te=o(y,s,p),T=x>0?x:c(s,p,M,N,y,g,te),k=re+u(y,g,te,E,T)),fe=Q[g],x=S[g],V>fe?U=h:(V=fe,U=w),k>V?(V=k,U=m):T=0,Q[g]=V,S[g]=T,ye[++j]=V>0?U:b;for(y=_-1,g=L-1,j=y*L+g,v=!0,W=[];v&&y>=0&&g>=0;)switch(ye[j]){case w:y--,j-=L;break;case h:g--,j--;break;case m:W.push(y+l),g--,y--,j-=L+1;break;default:v=!1}return W.reverse(),W}}).call(Sr)});var Br=Me((co,so)=>{(function(){var e,r,t,o,n,i,f,u;t=ao(),o=fo(),u=De(),i=wr(),e=Gr(),f=null,r=(typeof process!="undefined"&&process!==null?process.platform:void 0)==="win32"?"\\":"/",so.exports={filter:function(c,a,s){return s==null&&(s={}),a!=null&&a.length&&(c!=null&&c.length)?(s=n(s,a),t(c,a,s)):[]},score:function(c,a,s){return s==null&&(s={}),c!=null&&c.length&&(a!=null&&a.length)?(s=n(s,a),s.usePathScoring?i.score(c,a,s):u.score(c,a,s)):0},match:function(c,a,s){var p,d,l;return s==null&&(s={}),c?a?c===a?function(){l=[];for(var m=0,h=c.length;0<=h?m<h:m>h;0<=h?m++:m--)l.push(m);return l}.apply(this):(s=n(s,a),o.match(c,a,s)):[]:[]},wrap:function(c,a,s){return s==null&&(s={}),c?a?(s=n(s,a),o.wrap(c,a,s)):[]:[]},prepareQuery:function(c,a){return a==null&&(a={}),a=n(a,c),a.preparedQuery}},n=function(c,a){return c.allowErrors==null&&(c.allowErrors=!1),c.usePathScoring==null&&(c.usePathScoring=!0),c.useExtensionBonus==null&&(c.useExtensionBonus=!1),c.pathSeparator==null&&(c.pathSeparator=r),c.optCharRegEx==null&&(c.optCharRegEx=null),c.wrap==null&&(c.wrap=null),c.preparedQuery==null&&(c.preparedQuery=f&&f.query===a?f:f=new e(a,c)),c}}).call(co)});var Mr=function(e,r){return Mr=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,o){t.__proto__=o}||function(t,o){for(var n in o)Object.prototype.hasOwnProperty.call(o,n)&&(t[n]=o[n])},Mr(e,r)};function z(e,r){if(typeof r!="function"&&r!==null)throw new TypeError("Class extends value "+String(r)+" is not a constructor or null");Mr(e,r);function t(){this.constructor=e}e.prototype=r===null?Object.create(r):(t.prototype=r.prototype,new t)}function nt(e,r,t,o){function n(i){return i instanceof t?i:new t(function(f){f(i)})}return new(t||(t=Promise))(function(i,f){function u(s){try{a(o.next(s))}catch(p){f(p)}}function c(s){try{a(o.throw(s))}catch(p){f(p)}}function a(s){s.done?i(s.value):n(s.value).then(u,c)}a((o=o.apply(e,r||[])).next())})}function Ye(e,r){var t={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]},o,n,i,f=Object.create((typeof Iterator=="function"?Iterator:Object).prototype);return f.next=u(0),f.throw=u(1),f.return=u(2),typeof Symbol=="function"&&(f[Symbol.iterator]=function(){return this}),f;function u(a){return function(s){return c([a,s])}}function c(a){if(o)throw new TypeError("Generator is already executing.");for(;f&&(f=0,a[0]&&(t=0)),t;)try{if(o=1,n&&(i=a[0]&2?n.return:a[0]?n.throw||((i=n.return)&&i.call(n),0):n.next)&&!(i=i.call(n,a[1])).done)return i;switch(n=0,i&&(a=[a[0]&2,i.value]),a[0]){case 0:case 1:i=a;break;case 4:return t.label++,{value:a[1],done:!1};case 5:t.label++,n=a[1],a=[0];continue;case 7:a=t.ops.pop(),t.trys.pop();continue;default:if(i=t.trys,!(i=i.length>0&&i[i.length-1])&&(a[0]===6||a[0]===2)){t=0;continue}if(a[0]===3&&(!i||a[1]>i[0]&&a[1]<i[3])){t.label=a[1];break}if(a[0]===6&&t.label<i[1]){t.label=i[1],i=a;break}if(i&&t.label<i[2]){t.label=i[2],t.ops.push(a);break}i[2]&&t.ops.pop(),t.trys.pop();continue}a=r.call(e,t)}catch(s){a=[6,s],n=0}finally{o=i=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}}function X(e){var r=typeof Symbol=="function"&&Symbol.iterator,t=r&&e[r],o=0;if(t)return t.call(e);if(e&&typeof e.length=="number")return{next:function(){return e&&o>=e.length&&(e=void 0),{value:e&&e[o++],done:!e}}};throw new TypeError(r?"Object is not iterable.":"Symbol.iterator is not defined.")}function R(e,r){var t=typeof Symbol=="function"&&e[Symbol.iterator];if(!t)return e;var o=t.call(e),n,i=[],f;try{for(;(r===void 0||r-- >0)&&!(n=o.next()).done;)i.push(n.value)}catch(u){f={error:u}}finally{try{n&&!n.done&&(t=o.return)&&t.call(o)}finally{if(f)throw f.error}}return i}function H(e,r,t){if(t||arguments.length===2)for(var o=0,n=r.length,i;o<n;o++)(i||!(o in r))&&(i||(i=Array.prototype.slice.call(r,0,o)),i[o]=r[o]);return e.concat(i||Array.prototype.slice.call(r))}function ge(e){return this instanceof ge?(this.v=e,this):new ge(e)}function it(e,r,t){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var o=t.apply(e,r||[]),n,i=[];return n=Object.create((typeof AsyncIterator=="function"?AsyncIterator:Object).prototype),u("next"),u("throw"),u("return",f),n[Symbol.asyncIterator]=function(){return this},n;function f(l){return function(m){return Promise.resolve(m).then(l,p)}}function u(l,m){o[l]&&(n[l]=function(h){return new Promise(function(b,w){i.push([l,h,b,w])>1||c(l,h)})},m&&(n[l]=m(n[l])))}function c(l,m){try{a(o[l](m))}catch(h){d(i[0][3],h)}}function a(l){l.value instanceof ge?Promise.resolve(l.value.v).then(s,p):d(i[0][2],l)}function s(l){c("next",l)}function p(l){c("throw",l)}function d(l,m){l(m),i.shift(),i.length&&c(i[0][0],i[0][1])}}function at(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r=e[Symbol.asyncIterator],t;return r?r.call(e):(e=typeof X=="function"?X(e):e[Symbol.iterator](),t={},o("next"),o("throw"),o("return"),t[Symbol.asyncIterator]=function(){return this},t);function o(i){t[i]=e[i]&&function(f){return new Promise(function(u,c){f=e[i](f),n(u,c,f.done,f.value)})}}function n(i,f,u,c){Promise.resolve(c).then(function(a){i({value:a,done:u})},f)}}function O(e){return typeof e=="function"}function Xe(e){var r=function(o){Error.call(o),o.stack=new Error().stack},t=e(r);return t.prototype=Object.create(Error.prototype),t.prototype.constructor=t,t}var Ge=Xe(function(e){return function(t){e(this),this.message=t?t.length+` errors occurred during unsubscription: `+t.map(function(o,n){return n+1+") "+o.toString()}).join(` `):"",this.name="UnsubscriptionError",this.errors=t}});function se(e,r){if(e){var t=e.indexOf(r);0<=t&&e.splice(t,1)}}var oe=function(){function e(r){this.initialTeardown=r,this.closed=!1,this._parentage=null,this._finalizers=null}return e.prototype.unsubscribe=function(){var r,t,o,n,i;if(!this.closed){this.closed=!0;var f=this._parentage;if(f)if(this._parentage=null,Array.isArray(f))try{for(var u=X(f),c=u.next();!c.done;c=u.next()){var a=c.value;a.remove(this)}}catch(h){r={error:h}}finally{try{c&&!c.done&&(t=u.return)&&t.call(u)}finally{if(r)throw r.error}}else f.remove(this);var s=this.initialTeardown;if(O(s))try{s()}catch(h){i=h instanceof Ge?h.errors:[h]}var p=this._finalizers;if(p){this._finalizers=null;try{for(var d=X(p),l=d.next();!l.done;l=d.next()){var m=l.value;try{ft(m)}catch(h){i=i!=null?i:[],h instanceof Ge?i=H(H([],R(i)),R(h.errors)):i.push(h)}}}catch(h){o={error:h}}finally{try{l&&!l.done&&(n=d.return)&&n.call(d)}finally{if(o)throw o.error}}}if(i)throw new Ge(i)}},e.prototype.add=function(r){var t;if(r&&r!==this)if(this.closed)ft(r);else{if(r instanceof e){if(r.closed||r._hasParent(this))return;r._addParent(this)}(this._finalizers=(t=this._finalizers)!==null&&t!==void 0?t:[]).push(r)}},e.prototype._hasParent=function(r){var t=this._parentage;return t===r||Array.isArray(t)&&t.includes(r)},e.prototype._addParent=function(r){var t=this._parentage;this._parentage=Array.isArray(t)?(t.push(r),t):t?[t,r]:r},e.prototype._removeParent=function(r){var t=this._parentage;t===r?this._parentage=null:Array.isArray(t)&&se(t,r)},e.prototype.remove=function(r){var t=this._finalizers;t&&se(t,r),r instanceof e&&r._removeParent(this)},e.EMPTY=function(){var r=new e;return r.closed=!0,r}(),e}();var Ir=oe.EMPTY;function Be(e){return e instanceof oe||e&&"closed"in e&&O(e.remove)&&O(e.add)&&O(e.unsubscribe)}function ft(e){O(e)?e():e.unsubscribe()}var ee={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1};var Ie={setTimeout:function(e,r){for(var t=[],o=2;o<arguments.length;o++)t[o-2]=arguments[o];var n=Ie.delegate;return n!=null&&n.setTimeout?n.setTimeout.apply(n,H([e,r],R(t))):setTimeout.apply(void 0,H([e,r],R(t)))},clearTimeout:function(e){var r=Ie.delegate;return((r==null?void 0:r.clearTimeout)||clearTimeout)(e)},delegate:void 0};function Ze(e){Ie.setTimeout(function(){var r=ee.onUnhandledError;if(r)r(e);else throw e})}function ue(){}var ct=function(){return Cr("C",void 0,void 0)}();function st(e){return Cr("E",void 0,e)}function ut(e){return Cr("N",e,void 0)}function Cr(e,r,t){return{kind:e,value:r,error:t}}var we=null;function Ce(e){if(ee.useDeprecatedSynchronousErrorHandling){var r=!we;if(r&&(we={errorThrown:!1,error:null}),e(),r){var t=we,o=t.errorThrown,n=t.error;if(we=null,o)throw n}}else e()}function pt(e){ee.useDeprecatedSynchronousErrorHandling&&we&&(we.errorThrown=!0,we.error=e)}var Ue=function(e){z(r,e);function r(t){var o=e.call(this)||this;return o.isStopped=!1,t?(o.destination=t,Be(t)&&t.add(o)):o.destination=Io,o}return r.create=function(t,o,n){return new Se(t,o,n)},r.prototype.next=function(t){this.isStopped?Pr(ut(t),this):this._next(t)},r.prototype.error=function(t){this.isStopped?Pr(st(t),this):(this.isStopped=!0,this._error(t))},r.prototype.complete=function(){this.isStopped?Pr(ct,this):(this.isStopped=!0,this._complete())},r.prototype.unsubscribe=function(){this.closed||(this.isStopped=!0,e.prototype.unsubscribe.call(this),this.destination=null)},r.prototype._next=function(t){this.destination.next(t)},r.prototype._error=function(t){try{this.destination.error(t)}finally{this.unsubscribe()}},r.prototype._complete=function(){try{this.destination.complete()}finally{this.unsubscribe()}},r}(oe);var _o=Function.prototype.bind;function Lr(e,r){return _o.call(e,r)}var Ao=function(){function e(r){this.partialObserver=r}return e.prototype.next=function(r){var t=this.partialObserver;if(t.next)try{t.next(r)}catch(o){er(o)}},e.prototype.error=function(r){var t=this.partialObserver;if(t.error)try{t.error(r)}catch(o){er(o)}else er(r)},e.prototype.complete=function(){var r=this.partialObserver;if(r.complete)try{r.complete()}catch(t){er(t)}},e}(),Se=function(e){z(r,e);function r(t,o,n){var i=e.call(this)||this,f;if(O(t)||!t)f={next:t!=null?t:void 0,error:o!=null?o:void 0,complete:n!=null?n:void 0};else{var u;i&&ee.useDeprecatedNextContext?(u=Object.create(t),u.unsubscribe=function(){return i.unsubscribe()},f={next:t.next&&Lr(t.next,u),error:t.error&&Lr(t.error,u),complete:t.complete&&Lr(t.complete,u)}):f=t}return i.destination=new Ao(f),i}return r}(Ue);function er(e){ee.useDeprecatedSynchronousErrorHandling?pt(e):Ze(e)}function Mo(e){throw e}function Pr(e,r){var t=ee.onStoppedNotification;t&&Ie.setTimeout(function(){return t(e,r)})}var Io={closed:!0,next:ue,error:Mo,complete:ue};var Le=function(){return typeof Symbol=="function"&&Symbol.observable||"@@observable"}();function G(e){return e}function lt(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];return Rr(e)}function Rr(e){return e.length===0?G:e.length===1?e[0]:function(t){return e.reduce(function(o,n){return n(o)},t)}}var I=function(){function e(r){r&&(this._subscribe=r)}return e.prototype.lift=function(r){var t=new e;return t.source=this,t.operator=r,t},e.prototype.subscribe=function(r,t,o){var n=this,i=Lo(r)?r:new Se(r,t,o);return Ce(function(){var f=n,u=f.operator,c=f.source;i.add(u?u.call(i,c):c?n._subscribe(i):n._trySubscribe(i))}),i},e.prototype._trySubscribe=function(r){try{return this._subscribe(r)}catch(t){r.error(t)}},e.prototype.forEach=function(r,t){var o=this;return t=mt(t),new t(function(n,i){var f=new Se({next:function(u){try{r(u)}catch(c){i(c),f.unsubscribe()}},error:i,complete:n});o.subscribe(f)})},e.prototype._subscribe=function(r){var t;return(t=this.source)===null||t===void 0?void 0:t.subscribe(r)},e.prototype[Le]=function(){return this},e.prototype.pipe=function(){for(var r=[],t=0;t<arguments.length;t++)r[t]=arguments[t];return Rr(r)(this)},e.prototype.toPromise=function(r){var t=this;return r=mt(r),new r(function(o,n){var i;t.subscribe(function(f){return i=f},function(f){return n(f)},function(){return o(i)})})},e.create=function(r){return new e(r)},e}();function mt(e){var r;return(r=e!=null?e:ee.Promise)!==null&&r!==void 0?r:Promise}function Co(e){return e&&O(e.next)&&O(e.error)&&O(e.complete)}function Lo(e){return e&&e instanceof Ue||Co(e)&&Be(e)}function Po(e){return O(e==null?void 0:e.lift)}function A(e){return function(r){if(Po(r))return r.lift(function(t){try{return e(t,this)}catch(o){this.error(o)}});throw new TypeError("Unable to lift unknown Observable type")}}function P(e,r,t,o,n){return new Ro(e,r,t,o,n)}var Ro=function(e){z(r,e);function r(t,o,n,i,f,u){var c=e.call(this,t)||this;return c.onFinalize=f,c.shouldUnsubscribe=u,c._next=o?function(a){try{o(a)}catch(s){t.error(s)}}:e.prototype._next,c._error=i?function(a){try{i(a)}catch(s){t.error(s)}finally{this.unsubscribe()}}:e.prototype._error,c._complete=n?function(){try{n()}catch(a){t.error(a)}finally{this.unsubscribe()}}:e.prototype._complete,c}return r.prototype.unsubscribe=function(){var t;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){var o=this.closed;e.prototype.unsubscribe.call(this),!o&&((t=this.onFinalize)===null||t===void 0||t.call(this))}},r}(Ue);var Pe={schedule:function(e){var r=requestAnimationFrame,t=cancelAnimationFrame,o=Pe.delegate;o&&(r=o.requestAnimationFrame,t=o.cancelAnimationFrame);var n=r(function(i){t=void 0,e(i)});return new oe(function(){return t==null?void 0:t(n)})},requestAnimationFrame:function(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];var t=Pe.delegate;return((t==null?void 0:t.requestAnimationFrame)||requestAnimationFrame).apply(void 0,H([],R(e)))},cancelAnimationFrame:function(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];var t=Pe.delegate;return((t==null?void 0:t.cancelAnimationFrame)||cancelAnimationFrame).apply(void 0,H([],R(e)))},delegate:void 0};var ht=Xe(function(e){return function(){e(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"}});var K=function(e){z(r,e);function r(){var t=e.call(this)||this;return t.closed=!1,t.currentObservers=null,t.observers=[],t.isStopped=!1,t.hasError=!1,t.thrownError=null,t}return r.prototype.lift=function(t){var o=new dt(this,this);return o.operator=t,o},r.prototype._throwIfClosed=function(){if(this.closed)throw new ht},r.prototype.next=function(t){var o=this;Ce(function(){var n,i;if(o._throwIfClosed(),!o.isStopped){o.currentObservers||(o.currentObservers=Array.from(o.observers));try{for(var f=X(o.currentObservers),u=f.next();!u.done;u=f.next()){var c=u.value;c.next(t)}}catch(a){n={error:a}}finally{try{u&&!u.done&&(i=f.return)&&i.call(f)}finally{if(n)throw n.error}}}})},r.prototype.error=function(t){var o=this;Ce(function(){if(o._throwIfClosed(),!o.isStopped){o.hasError=o.isStopped=!0,o.thrownError=t;for(var n=o.observers;n.length;)n.shift().error(t)}})},r.prototype.complete=function(){var t=this;Ce(function(){if(t._throwIfClosed(),!t.isStopped){t.isStopped=!0;for(var o=t.observers;o.length;)o.shift().complete()}})},r.prototype.unsubscribe=function(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null},Object.defineProperty(r.prototype,"observed",{get:function(){var t;return((t=this.observers)===null||t===void 0?void 0:t.length)>0},enumerable:!1,configurable:!0}),r.prototype._trySubscribe=function(t){return this._throwIfClosed(),e.prototype._trySubscribe.call(this,t)},r.prototype._subscribe=function(t){return this._throwIfClosed(),this._checkFinalizedStatuses(t),this._innerSubscribe(t)},r.prototype._innerSubscribe=function(t){var o=this,n=this,i=n.hasError,f=n.isStopped,u=n.observers;return i||f?Ir:(this.currentObservers=null,u.push(t),new oe(function(){o.currentObservers=null,se(u,t)}))},r.prototype._checkFinalizedStatuses=function(t){var o=this,n=o.hasError,i=o.thrownError,f=o.isStopped;n?t.error(i):f&&t.complete()},r.prototype.asObservable=function(){var t=new I;return t.source=this,t},r.create=function(t,o){return new dt(t,o)},r}(I);var dt=function(e){z(r,e);function r(t,o){var n=e.call(this)||this;return n.destination=t,n.source=o,n}return r.prototype.next=function(t){var o,n;(n=(o=this.destination)===null||o===void 0?void 0:o.next)===null||n===void 0||n.call(o,t)},r.prototype.error=function(t){var o,n;(n=(o=this.destination)===null||o===void 0?void 0:o.error)===null||n===void 0||n.call(o,t)},r.prototype.complete=function(){var t,o;(o=(t=this.destination)===null||t===void 0?void 0:t.complete)===null||o===void 0||o.call(t)},r.prototype._subscribe=function(t){var o,n;return(n=(o=this.source)===null||o===void 0?void 0:o.subscribe(t))!==null&&n!==void 0?n:Ir},r}(K);var kr=function(e){z(r,e);function r(t){var o=e.call(this)||this;return o._value=t,o}return Object.defineProperty(r.prototype,"value",{get:function(){return this.getValue()},enumerable:!1,configurable:!0}),r.prototype._subscribe=function(t){var o=e.prototype._subscribe.call(this,t);return!o.closed&&t.next(this._value),o},r.prototype.getValue=function(){var t=this,o=t.hasError,n=t.thrownError,i=t._value;if(o)throw n;return this._throwIfClosed(),i},r.prototype.next=function(t){e.prototype.next.call(this,this._value=t)},r}(K);var ze={now:function(){return(ze.delegate||Date).now()},delegate:void 0};var vt=function(e){z(r,e);function r(t,o,n){t===void 0&&(t=1/0),o===void 0&&(o=1/0),n===void 0&&(n=ze);var i=e.call(this)||this;return i._bufferSize=t,i._windowTime=o,i._timestampProvider=n,i._buffer=[],i._infiniteTimeWindow=!0,i._infiniteTimeWindow=o===1/0,i._bufferSize=Math.max(1,t),i._windowTime=Math.max(1,o),i}return r.prototype.next=function(t){var o=this,n=o.isStopped,i=o._buffer,f=o._infiniteTimeWindow,u=o._timestampProvider,c=o._windowTime;n||(i.push(t),!f&&i.push(u.now()+c)),this._trimBuffer(),e.prototype.next.call(this,t)},r.prototype._subscribe=function(t){this._throwIfClosed(),this._trimBuffer();for(var o=this._innerSubscribe(t),n=this,i=n._infiniteTimeWindow,f=n._buffer,u=f.slice(),c=0;c<u.length&&!t.closed;c+=i?1:2)t.next(u[c]);return this._checkFinalizedStatuses(t),o},r.prototype._trimBuffer=function(){var t=this,o=t._bufferSize,n=t._timestampProvider,i=t._buffer,f=t._infiniteTimeWindow,u=(f?1:2)*o;if(o<1/0&&u<i.length&&i.splice(0,i.length-u),!f){for(var c=n.now(),a=0,s=1;s<i.length&&i[s]<=c;s+=2)a=s;a&&i.splice(0,a+1)}},r}(K);var bt=function(e){z(r,e);function r(t,o){return e.call(this)||this}return r.prototype.schedule=function(t,o){return o===void 0&&(o=0),this},r}(oe);var Ve={setInterval:function(e,r){for(var t=[],o=2;o<arguments.length;o++)t[o-2]=arguments[o];var n=Ve.delegate;return n!=null&&n.setInterval?n.setInterval.apply(n,H([e,r],R(t))):setInterval.apply(void 0,H([e,r],R(t)))},clearInterval:function(e){var r=Ve.delegate;return((r==null?void 0:r.clearInterval)||clearInterval)(e)},delegate:void 0};var rr=function(e){z(r,e);function r(t,o){var n=e.call(this,t,o)||this;return n.scheduler=t,n.work=o,n.pending=!1,n}return r.prototype.schedule=function(t,o){var n;if(o===void 0&&(o=0),this.closed)return this;this.state=t;var i=this.id,f=this.scheduler;return i!=null&&(this.id=this.recycleAsyncId(f,i,o)),this.pending=!0,this.delay=o,this.id=(n=this.id)!==null&&n!==void 0?n:this.requestAsyncId(f,this.id,o),this},r.prototype.requestAsyncId=function(t,o,n){return n===void 0&&(n=0),Ve.setInterval(t.flush.bind(t,this),n)},r.prototype.recycleAsyncId=function(t,o,n){if(n===void 0&&(n=0),n!=null&&this.delay===n&&this.pending===!1)return o;o!=null&&Ve.clearInterval(o)},r.prototype.execute=function(t,o){if(this.closed)return new Error("executing a cancelled action");this.pending=!1;var n=this._execute(t,o);if(n)return n;this.pending===!1&&this.id!=null&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))},r.prototype._execute=function(t,o){var n=!1,i;try{this.work(t)}catch(f){n=!0,i=f||new Error("Scheduled action threw falsy error")}if(n)return this.unsubscribe(),i},r.prototype.unsubscribe=function(){if(!this.closed){var t=this,o=t.id,n=t.scheduler,i=n.actions;this.work=this.state=this.scheduler=null,this.pending=!1,se(i,this),o!=null&&(this.id=this.recycleAsyncId(n,o,null)),this.delay=null,e.prototype.unsubscribe.call(this)}},r}(bt);var Hr=function(){function e(r,t){t===void 0&&(t=e.now),this.schedulerActionCtor=r,this.now=t}return e.prototype.schedule=function(r,t,o){return t===void 0&&(t=0),new this.schedulerActionCtor(this,r).schedule(o,t)},e.now=ze.now,e}();var tr=function(e){z(r,e);function r(t,o){o===void 0&&(o=Hr.now);var n=e.call(this,t,o)||this;return n.actions=[],n._active=!1,n}return r.prototype.flush=function(t){var o=this.actions;if(this._active){o.push(t);return}var n;this._active=!0;do if(n=t.execute(t.state,t.delay))break;while(t=o.shift());if(this._active=!1,n){for(;t=o.shift();)t.unsubscribe();throw n}},r}(Hr);var Ee=new tr(rr),xt=Ee;var yt=function(e){z(r,e);function r(t,o){var n=e.call(this,t,o)||this;return n.scheduler=t,n.work=o,n}return r.prototype.requestAsyncId=function(t,o,n){return n===void 0&&(n=0),n!==null&&n>0?e.prototype.requestAsyncId.call(this,t,o,n):(t.actions.push(this),t._scheduled||(t._scheduled=Pe.requestAnimationFrame(function(){return t.flush(void 0)})))},r.prototype.recycleAsyncId=function(t,o,n){var i;if(n===void 0&&(n=0),n!=null?n>0:this.delay>0)return e.prototype.recycleAsyncId.call(this,t,o,n);var f=t.actions;o!=null&&((i=f[f.length-1])===null||i===void 0?void 0:i.id)!==o&&(Pe.cancelAnimationFrame(o),t._scheduled=void 0)},r}(rr);var gt=function(e){z(r,e);function r(){return e!==null&&e.apply(this,arguments)||this}return r.prototype.flush=function(t){this._active=!0;var o=this._scheduled;this._scheduled=void 0;var n=this.actions,i;t=t||n.shift();do if(i=t.execute(t.state,t.delay))break;while((t=n[0])&&t.id===o&&n.shift());if(this._active=!1,i){for(;(t=n[0])&&t.id===o&&n.shift();)t.unsubscribe();throw i}},r}(tr);var Fr=new gt(yt);var Re=new I(function(e){return e.complete()});function or(e){return e&&O(e.schedule)}function Wr(e){return e[e.length-1]}function ve(e){return O(Wr(e))?e.pop():void 0}function ne(e){return or(Wr(e))?e.pop():void 0}function wt(e,r){return typeof Wr(e)=="number"?e.pop():r}var ke=function(e){return e&&typeof e.length=="number"&&typeof e!="function"};function nr(e){return O(e==null?void 0:e.then)}function ir(e){return O(e[Le])}function ar(e){return Symbol.asyncIterator&&O(e==null?void 0:e[Symbol.asyncIterator])}function fr(e){return new TypeError("You provided "+(e!==null&&typeof e=="object"?"an invalid object":"'"+e+"'")+" where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.")}function ko(){return typeof Symbol!="function"||!Symbol.iterator?"@@iterator":Symbol.iterator}var cr=ko();function sr(e){return O(e==null?void 0:e[cr])}function ur(e){return it(this,arguments,function(){var t,o,n,i;return Ye(this,function(f){switch(f.label){case 0:t=e.getReader(),f.label=1;case 1:f.trys.push([1,,9,10]),f.label=2;case 2:return[4,ge(t.read())];case 3:return o=f.sent(),n=o.value,i=o.done,i?[4,ge(void 0)]:[3,5];case 4:return[2,f.sent()];case 5:return[4,ge(n)];case 6:return[4,f.sent()];case 7:return f.sent(),[3,2];case 8:return[3,10];case 9:return t.releaseLock(),[7];case 10:return[2]}})})}function pr(e){return O(e==null?void 0:e.getReader)}function F(e){if(e instanceof I)return e;if(e!=null){if(ir(e))return Ho(e);if(ke(e))return Fo(e);if(nr(e))return Wo(e);if(ar(e))return St(e);if(sr(e))return jo(e);if(pr(e))return Uo(e)}throw fr(e)}function Ho(e){return new I(function(r){var t=e[Le]();if(O(t.subscribe))return t.subscribe(r);throw new TypeError("Provided object does not correctly implement Symbol.observable")})}function Fo(e){return new I(function(r){for(var t=0;t<e.length&&!r.closed;t++)r.next(e[t]);r.complete()})}function Wo(e){return new I(function(r){e.then(function(t){r.closed||(r.next(t),r.complete())},function(t){return r.error(t)}).then(null,Ze)})}function jo(e){return new I(function(r){var t,o;try{for(var n=X(e),i=n.next();!i.done;i=n.next()){var f=i.value;if(r.next(f),r.closed)return}}catch(u){t={error:u}}finally{try{i&&!i.done&&(o=n.return)&&o.call(n)}finally{if(t)throw t.error}}r.complete()})}function St(e){return new I(function(r){zo(e,r).catch(function(t){return r.error(t)})})}function Uo(e){return St(ur(e))}function zo(e,r){var t,o,n,i;return nt(this,void 0,void 0,function(){var f,u;return Ye(this,function(c){switch(c.label){case 0:c.trys.push([0,5,6,11]),t=at(e),c.label=1;case 1:return[4,t.next()];case 2:if(o=c.sent(),!!o.done)return[3,4];if(f=o.value,r.next(f),r.closed)return[2];c.label=3;case 3:return[3,1];case 4:return[3,11];case 5:return u=c.sent(),n={error:u},[3,11];case 6:return c.trys.push([6,,9,10]),o&&!o.done&&(i=t.return)?[4,i.call(t)]:[3,8];case 7:c.sent(),c.label=8;case 8:return[3,10];case 9:if(n)throw n.error;return[7];case 10:return[7];case 11:return r.complete(),[2]}})})}function J(e,r,t,o,n){o===void 0&&(o=0),n===void 0&&(n=!1);var i=r.schedule(function(){t(),n?e.add(this.schedule(null,o)):this.unsubscribe()},o);if(e.add(i),!n)return i}function lr(e,r){return r===void 0&&(r=0),A(function(t,o){t.subscribe(P(o,function(n){return J(o,e,function(){return o.next(n)},r)},function(){return J(o,e,function(){return o.complete()},r)},function(n){return J(o,e,function(){return o.error(n)},r)}))})}function mr(e,r){return r===void 0&&(r=0),A(function(t,o){o.add(e.schedule(function(){return t.subscribe(o)},r))})}function Et(e,r){return F(e).pipe(mr(r),lr(r))}function Ot(e,r){return F(e).pipe(mr(r),lr(r))}function Tt(e,r){return new I(function(t){var o=0;return r.schedule(function(){o===e.length?t.complete():(t.next(e[o++]),t.closed||this.schedule())})})}function _t(e,r){return new I(function(t){var o;return J(t,r,function(){o=e[cr](),J(t,r,function(){var n,i,f;try{n=o.next(),i=n.value,f=n.done}catch(u){t.error(u);return}f?t.complete():t.next(i)},0,!0)}),function(){return O(o==null?void 0:o.return)&&o.return()}})}function hr(e,r){if(!e)throw new Error("Iterable cannot be null");return new I(function(t){J(t,r,function(){var o=e[Symbol.asyncIterator]();J(t,r,function(){o.next().then(function(n){n.done?t.complete():t.next(n.value)})},0,!0)})})}function At(e,r){return hr(ur(e),r)}function Mt(e,r){if(e!=null){if(ir(e))return Et(e,r);if(ke(e))return Tt(e,r);if(nr(e))return Ot(e,r);if(ar(e))return hr(e,r);if(sr(e))return _t(e,r);if(pr(e))return At(e,r)}throw fr(e)}function B(e,r){return r?Mt(e,r):F(e)}function ie(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];var t=ne(e);return B(e,t)}function jr(e,r){var t=O(e)?e:function(){return e},o=function(n){return n.error(t())};return new I(r?function(n){return r.schedule(o,0,n)}:o)}function It(e){return e instanceof Date&&!isNaN(e)}function C(e,r){return A(function(t,o){var n=0;t.subscribe(P(o,function(i){o.next(e.call(r,i,n++))}))})}var Vo=Array.isArray;function $o(e,r){return Vo(r)?e.apply(void 0,H([],R(r))):e(r)}function He(e){return C(function(r){return $o(e,r)})}var No=Array.isArray,qo=Object.getPrototypeOf,Do=Object.prototype,Qo=Object.keys;function Ct(e){if(e.length===1){var r=e[0];if(No(r))return{args:r,keys:null};if(Ko(r)){var t=Qo(r);return{args:t.map(function(o){return r[o]}),keys:t}}}return{args:e,keys:null}}function Ko(e){return e&&typeof e=="object"&&qo(e)===Do}function Lt(e,r){return e.reduce(function(t,o,n){return t[o]=r[n],t},{})}function Fe(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];var t=ne(e),o=ve(e),n=Ct(e),i=n.args,f=n.keys;if(i.length===0)return B([],t);var u=new I(Ur(i,t,f?function(c){return Lt(f,c)}:G));return o?u.pipe(He(o)):u}function Ur(e,r,t){return t===void 0&&(t=G),function(o){Pt(r,function(){for(var n=e.length,i=new Array(n),f=n,u=n,c=function(s){Pt(r,function(){var p=B(e[s],r),d=!1;p.subscribe(P(o,function(l){i[s]=l,d||(d=!0,u--),u||o.next(t(i.slice()))},function(){--f||o.complete()}))},o)},a=0;a<n;a++)c(a)},o)}}function Pt(e,r,t){e?J(t,e,r):r()}function Rt(e,r,t,o,n,i,f,u){var c=[],a=0,s=0,p=!1,d=function(){p&&!c.length&&!a&&r.complete()},l=function(h){return a<o?m(h):c.push(h)},m=function(h){i&&r.next(h),a++;var b=!1;F(t(h,s++)).subscribe(P(r,function(w){n==null||n(w),i?l(w):r.next(w)},function(){b=!0},void 0,function(){if(b)try{a--;for(var w=function(){var E=c.shift();f?J(r,f,function(){return m(E)}):m(E)};c.length&&a<o;)w();d()}catch(E){r.error(E)}}))};return e.subscribe(P(r,l,function(){p=!0,d()})),function(){u==null||u()}}function Oe(e,r,t){return t===void 0&&(t=1/0),O(r)?Oe(function(o,n){return C(function(i,f){return r(o,i,n,f)})(F(e(o,n)))},t):(typeof r=="number"&&(t=r),A(function(o,n){return Rt(o,n,e,t)}))}function dr(e){return e===void 0&&(e=1/0),Oe(G,e)}function kt(){return dr(1)}function $e(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];return kt()(B(e,ne(e)))}function Te(e){return new I(function(r){F(e()).subscribe(r)})}var Jo=["addListener","removeListener"],Yo=["addEventListener","removeEventListener"],Xo=["on","off"];function $(e,r,t,o){if(O(t)&&(o=t,t=void 0),o)return $(e,r,t).pipe(He(o));var n=R(Zo(e)?Yo.map(function(u){return function(c){return e[u](r,c,t)}}):Go(e)?Jo.map(Ht(e,r)):Bo(e)?Xo.map(Ht(e,r)):[],2),i=n[0],f=n[1];if(!i&&ke(e))return Oe(function(u){return $(u,r,t)})(F(e));if(!i)throw new TypeError("Invalid event target");return new I(function(u){var c=function(){for(var a=[],s=0;s<arguments.length;s++)a[s]=arguments[s];return u.next(1<a.length?a:a[0])};return i(c),function(){return f(c)}})}function Ht(e,r){return function(t){return function(o){return e[t](r,o)}}}function Go(e){return O(e.addListener)&&O(e.removeListener)}function Bo(e){return O(e.on)&&O(e.off)}function Zo(e){return O(e.addEventListener)&&O(e.removeEventListener)}function vr(e,r,t){e===void 0&&(e=0),t===void 0&&(t=xt);var o=-1;return r!=null&&(or(r)?t=r:o=r),new I(function(n){var i=It(e)?+e-t.now():e;i<0&&(i=0);var f=0;return t.schedule(function(){n.closed||(n.next(f++),0<=o?this.schedule(void 0,o):n.complete())},i)})}function q(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];var t=ne(e),o=wt(e,1/0),n=e;return n.length?n.length===1?F(n[0]):dr(o)(B(n,t)):Re}var Ne=new I(ue);var en=Array.isArray;function br(e){return e.length===1&&en(e[0])?e[0]:e}function _e(e,r){return A(function(t,o){var n=0;t.subscribe(P(o,function(i){return e.call(r,i,n++)&&o.next(i)}))})}function Ft(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];var t=ve(e),o=br(e);return o.length?new I(function(n){var i=o.map(function(){return[]}),f=o.map(function(){return!1});n.add(function(){i=f=null});for(var u=function(a){F(o[a]).subscribe(P(n,function(s){if(i[a].push(s),i.every(function(d){return d.length})){var p=i.map(function(d){return d.shift()});n.next(t?t.apply(void 0,H([],R(p))):p),i.some(function(d,l){return!d.length&&f[l]})&&n.complete()}},function(){f[a]=!0,!i[a].length&&n.complete()}))},c=0;!n.closed&&c<o.length;c++)u(c);return function(){i=f=null}}):Re}function Wt(e){return A(function(r,t){var o=!1,n=null,i=null,f=!1,u=function(){if(i==null||i.unsubscribe(),i=null,o){o=!1;var a=n;n=null,t.next(a)}f&&t.complete()},c=function(){i=null,f&&t.complete()};r.subscribe(P(t,function(a){o=!0,n=a,i||F(e(a)).subscribe(i=P(t,u,c))},function(){f=!0,(!o||!i||i.closed)&&t.complete()}))})}function zr(e,r){return r===void 0&&(r=Ee),Wt(function(){return vr(e,r)})}function Vr(e,r){return r===void 0&&(r=null),r=r!=null?r:e,A(function(t,o){var n=[],i=0;t.subscribe(P(o,function(f){var u,c,a,s,p=null;i++%r===0&&n.push([]);try{for(var d=X(n),l=d.next();!l.done;l=d.next()){var m=l.value;m.push(f),e<=m.length&&(p=p!=null?p:[],p.push(m))}}catch(w){u={error:w}}finally{try{l&&!l.done&&(c=d.return)&&c.call(d)}finally{if(u)throw u.error}}if(p)try{for(var h=X(p),b=h.next();!b.done;b=h.next()){var m=b.value;se(n,m),o.next(m)}}catch(w){a={error:w}}finally{try{b&&!b.done&&(s=h.return)&&s.call(h)}finally{if(a)throw a.error}}},function(){var f,u;try{for(var c=X(n),a=c.next();!a.done;a=c.next()){var s=a.value;o.next(s)}}catch(p){f={error:p}}finally{try{a&&!a.done&&(u=c.return)&&u.call(c)}finally{if(f)throw f.error}}o.complete()},void 0,function(){n=null}))})}function $r(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];var t=ve(e);return t?lt($r.apply(void 0,H([],R(e))),He(t)):A(function(o,n){Ur(H([o],R(br(e))))(n)})}function Nr(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];return $r.apply(void 0,H([],R(e)))}function qr(e,r){return r===void 0&&(r=Ee),A(function(t,o){var n=null,i=null,f=null,u=function(){if(n){n.unsubscribe(),n=null;var a=i;i=null,o.next(a)}};function c(){var a=f+e,s=r.now();if(s<a){n=this.schedule(void 0,a-s),o.add(n);return}u()}t.subscribe(P(o,function(a){i=a,f=r.now(),n||(n=r.schedule(c,e),o.add(n))},function(){u(),o.complete()},void 0,function(){i=n=null}))})}function We(e){return e<=0?function(){return Re}:A(function(r,t){var o=0;r.subscribe(P(t,function(n){++o<=e&&(t.next(n),e<=o&&t.complete())}))})}function jt(){return A(function(e,r){e.subscribe(P(r,ue))})}function Ut(e){return C(function(){return e})}function Dr(e,r){return r?function(t){return $e(r.pipe(We(1),jt()),t.pipe(Dr(e)))}:Oe(function(t,o){return F(e(t,o)).pipe(We(1),Ut(t))})}function Qr(e,r){r===void 0&&(r=Ee);var t=vr(e,r);return Dr(function(){return t})}function pe(e,r){return r===void 0&&(r=G),e=e!=null?e:rn,A(function(t,o){var n,i=!0;t.subscribe(P(o,function(f){var u=r(f);(i||!e(n,u))&&(i=!1,n=u,o.next(f))}))})}function rn(e,r){return e===r}function xr(e,r){return pe(function(t,o){return r?r(t[e],o[e]):t[e]===o[e]})}function le(e){return A(function(r,t){try{r.subscribe(t)}finally{t.add(e)}})}function zt(e){e===void 0&&(e={});var r=e.connector,t=r===void 0?function(){return new K}:r,o=e.resetOnError,n=o===void 0?!0:o,i=e.resetOnComplete,f=i===void 0?!0:i,u=e.resetOnRefCountZero,c=u===void 0?!0:u;return function(a){var s,p,d,l=0,m=!1,h=!1,b=function(){p==null||p.unsubscribe(),p=void 0},w=function(){b(),s=d=void 0,m=h=!1},E=function(){var k=s;w(),k==null||k.unsubscribe()};return A(function(k,v){l++,!h&&!m&&b();var x=d=d!=null?d:t();v.add(function(){l--,l===0&&!h&&!m&&(p=Kr(E,c))}),x.subscribe(v),!s&&l>0&&(s=new Se({next:function(S){return x.next(S)},error:function(S){h=!0,b(),p=Kr(w,n,S),x.error(S)},complete:function(){m=!0,b(),p=Kr(w,f),x.complete()}}),F(k).subscribe(s))})(a)}}function Kr(e,r){for(var t=[],o=2;o<arguments.length;o++)t[o-2]=arguments[o];if(r===!0){e();return}if(r!==!1){var n=new Se({next:function(){n.unsubscribe(),e()}});return F(r.apply(void 0,H([],R(t)))).subscribe(n)}}function me(e,r,t){var o,n,i,f,u=!1;return e&&typeof e=="object"?(o=e.bufferSize,f=o===void 0?1/0:o,n=e.windowTime,r=n===void 0?1/0:n,i=e.refCount,u=i===void 0?!1:i,t=e.scheduler):f=e!=null?e:1/0,zt({connector:function(){return new vt(f,r,t)},resetOnError:!0,resetOnComplete:!1,resetOnRefCountZero:u})}function be(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];var t=ne(e);return A(function(o,n){(t?$e(e,o,t):$e(e,o)).subscribe(n)})}function D(e,r){return A(function(t,o){var n=null,i=0,f=!1,u=function(){return f&&!n&&o.complete()};t.subscribe(P(o,function(c){n==null||n.unsubscribe();var a=0,s=i++;F(e(c,s)).subscribe(n=P(o,function(p){return o.next(r?r(c,p,s,a++):p)},function(){n=null,u()}))},function(){f=!0,u()}))})}function he(e,r,t){var o=O(e)||r||t?{next:e,error:r,complete:t}:e;return o?A(function(n,i){var f;(f=o.subscribe)===null||f===void 0||f.call(o);var u=!0;n.subscribe(P(i,function(c){var a;(a=o.next)===null||a===void 0||a.call(o,c),i.next(c)},function(){var c;u=!1,(c=o.complete)===null||c===void 0||c.call(o),i.complete()},function(c){var a;u=!1,(a=o.error)===null||a===void 0||a.call(o,c),i.error(c)},function(){var c,a;u&&((c=o.unsubscribe)===null||c===void 0||c.call(o)),(a=o.finalize)===null||a===void 0||a.call(o)}))}):G}function je(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];var t=ve(e);return A(function(o,n){for(var i=e.length,f=new Array(i),u=e.map(function(){return!1}),c=!1,a=function(p){F(e[p]).subscribe(P(n,function(d){f[p]=d,!c&&!u[p]&&(u[p]=!0,(c=u.every(G))&&(u=null))},ue))},s=0;s<i;s++)a(s);o.subscribe(P(n,function(p){if(c){var d=H([p],R(f));n.next(t?t.apply(void 0,H([],R(d))):d)}}))})}function Vt(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];return A(function(t,o){Ft.apply(void 0,H([t],R(e))).subscribe(o)})}function Jr(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];return Vt.apply(void 0,H([],R(e)))}function $t(e,r=document){return Array.from(r.querySelectorAll(e))}function ae(e,r=document){let t=yr(e,r);if(typeof t=="undefined")throw new ReferenceError(`Missing element: expected "${e}" to be present`);return t}function yr(e,r=document){return r.querySelector(e)||void 0}function Yr(){var e,r,t,o;return(o=(t=(r=(e=document.activeElement)==null?void 0:e.shadowRoot)==null?void 0:r.activeElement)!=null?t:document.activeElement)!=null?o:void 0}var tn=q($(document.body,"focusin"),$(document.body,"focusout")).pipe(qr(1),be(void 0),C(()=>Yr()||document.body),me(1));function Nt(e){return tn.pipe(C(r=>e.contains(r)),pe())}function qt(e,r){if(typeof r=="string"||typeof r=="number")e.innerHTML+=r.toString();else if(r instanceof Node)e.appendChild(r);else if(Array.isArray(r))for(let t of r)qt(e,t)}function Y(e,r,...t){let o=document.createElement(e);if(r)for(let n of Object.keys(r))typeof r[n]!="undefined"&&(typeof r[n]!="boolean"?o.setAttribute(n,r[n]):o.setAttribute(n,""));for(let n of t)qt(o,n);return o}function Dt(e){if(e>999){let r=+((e-950)%1e3>99);return`${((e+1e-6)/1e3).toFixed(r)}k`}else return e.toString()}function Qt(e){let r=Y("script",{src:e});return Te(()=>(document.head.appendChild(r),q($(r,"load"),$(r,"error").pipe(D(()=>jr(()=>new ReferenceError(`Invalid script: ${e}`))))).pipe(C(()=>{}),le(()=>document.head.removeChild(r)),We(1))))}var on=new K,jp=Te(()=>typeof ResizeObserver=="undefined"?Qt("https://unpkg.com/resize-observer-polyfill"):ie(void 0)).pipe(C(()=>new ResizeObserver(e=>e.forEach(r=>on.next(r)))),D(e=>q(Ne,ie(e)).pipe(le(()=>e.disconnect()))),me(1));function Kt(e){return{width:e.offsetWidth,height:e.offsetHeight}}function Jt(e){return{width:e.scrollWidth,height:e.scrollHeight}}function Yt(e){return{x:e.scrollLeft,y:e.scrollTop}}function Xt(e){return q($(e,"scroll"),$(window,"scroll"),$(window,"resize")).pipe(zr(0,Fr),C(()=>Yt(e)),be(Yt(e)))}var nn=new K,tl=Te(()=>ie(new IntersectionObserver(e=>{for(let r of e)nn.next(r)},{threshold:0}))).pipe(D(e=>q(Ne,ie(e)).pipe(le(()=>e.disconnect()))),me(1));function Gt(e,r=16){return Xt(e).pipe(C(({y:t})=>{let o=Kt(e),n=Jt(e);return t>=n.height-o.height-r}),pe())}var ll={drawer:ae("[data-md-toggle=drawer]"),search:ae("[data-md-toggle=search]")};var an=ae("#__config"),qe=JSON.parse(an.textContent);qe.base=`${new URL(qe.base,eo())}`;function Bt(){return qe}function Zt(e,r){return typeof r!="undefined"?qe.translations[e].replace("#",r.toString()):qe.translations[e]}function eo(){return new URL(location.href)}function fn(e,r){return new I(t=>{let o=new XMLHttpRequest;return o.open("GET",`${e}`),o.responseType="blob",o.addEventListener("load",()=>{o.status>=200&&o.status<300?(t.next(o.response),t.complete()):t.error(new Error(o.statusText))}),o.addEventListener("error",()=>{t.error(new Error("Network error"))}),o.addEventListener("abort",()=>{t.complete()}),typeof(r==null?void 0:r.progress$)!="undefined"&&(o.addEventListener("progress",n=>{var i;if(n.lengthComputable)r.progress$.next(n.loaded/n.total*100);else{let f=(i=o.getResponseHeader("Content-Length"))!=null?i:0;r.progress$.next(n.loaded/+f*100)}}),r.progress$.next(5)),o.send(),()=>o.abort()})}function gr(e,r){return fn(e,r).pipe(D(t=>t.text()),C(t=>JSON.parse(t)),me(1))}function Xr(e,r=document){return ae(`[data-mdx-component=${e}]`,r)}function xe(e,r=document){return $t(`[data-mdx-component=${e}]`,r)}function ro(e){let r=Nt(e),t=q($(e,"keyup"),$(e,"focus").pipe(Qr(1))).pipe(C(()=>e.value),be(e.value),pe());return r.pipe(_e(o=>!o),je(t)).subscribe(([,o])=>{let n=document.location.pathname;typeof ga=="function"&&o.length&&ga("send","pageview",`${n}?q=[icon]+${o}`)}),Fe([t,r]).pipe(C(([o,n])=>({ref:e,value:o,focus:n})))}var Zr=ot(Br());var po=ot(Br());function uo(e,r){return(0,po.wrap)(e.shortcode,r,{wrap:{tagOpen:"<b>",tagClose:"</b>"}})}function lo(e,r,t){return Y("li",{class:"mdx-iconsearch-result__item"},Y("span",{class:"twemoji"},Y("img",{src:e.url})),Y("button",{class:"md-clipboard--inline",title:Zt("clipboard.copy"),"data-clipboard-text":t?e.shortcode:`:${e.shortcode}:`},Y("code",null,t?uo(e,r):`:${uo(e,r)}:`)))}function mo(e){let r=`@${e.name}`;return Y("a",{href:e.url,title:r,class:"mdx-sponsorship__item"},Y("img",{src:e.image}))}function ho(e){return Y("a",{href:"https://github.com/sponsors/squidfunk?metadata_origin=docs",class:"mdx-sponsorship__item mdx-sponsorship__item--private"},"+",e)}function cn(e,{index$:r,query$:t,mode$:o}){switch(e.getAttribute("data-mdx-mode")){case"file":return Fe([t.pipe(xr("value")),r.pipe(C(({icons:n})=>Object.values(n.data).map(i=>i.replace(/\.svg$/,""))))]).pipe(C(([{value:n},i])=>(0,Zr.filter)(i,n)),D(n=>r.pipe(C(({icons:i})=>({data:n.map(f=>({shortcode:f,url:[i.base,f,".svg"].join("")}))})))));default:return Fe([t.pipe(xr("value")),r.pipe(Nr(o),C(([{icons:n,emojis:i},f])=>[...["all","icons"].includes(f)?Object.keys(n.data):[],...["all","emojis"].includes(f)?Object.keys(i.data):[]]))]).pipe(C(([{value:n},i])=>(0,Zr.filter)(i,n)),D(n=>r.pipe(C(({icons:i,emojis:f})=>({data:n.map(u=>{let c=u in i.data?i:f;return{shortcode:u,url:[c.base,c.data[u]].join("")}})})))))}}function vo(e,{index$:r,query$:t,mode$:o}){let n=new K,i=Gt(e).pipe(_e(Boolean)),f=ae(".mdx-iconsearch-result__meta",e);n.pipe(je(t)).subscribe(([{data:a},{value:s}])=>{if(s)switch(a.length){case 0:f.textContent="No matches";break;case 1:f.textContent="1 match";break;default:f.textContent=`${Dt(a.length)} matches`}else f.textContent="Type to start searching"});let u=e.getAttribute("data-mdx-mode")==="file",c=ae(":scope > :last-child",e);return n.pipe(he(()=>c.innerHTML=""),D(({data:a})=>q(ie(...a.slice(0,10)),ie(...a.slice(10)).pipe(Vr(10),Jr(i),D(([s])=>s)))),je(t)).subscribe(([a,{value:s}])=>c.appendChild(lo(a,s,u))),cn(e,{query$:t,index$:r,mode$:o}).pipe(he(a=>n.next(a)),le(()=>n.complete()),C(a=>Je({ref:e},a)))}function bo(e){let r=Bt(),t=gr(new URL("assets/javascripts/iconsearch_index.json",r.base)),o=Xr("iconsearch-query",e),n=Xr("iconsearch-result",e),i=new kr("all"),f=xe("iconsearch-select",e);for(let a of f)$(a,"change").pipe(C(s=>s.target.value)).subscribe(i);let u=ro(o),c=vo(n,{index$:t,query$:u,mode$:i});return q(u,c)}function xo(e){let r=gr("https://3if8u9o552.execute-api.us-east-1.amazonaws.com/_/"),t=xe("sponsorship-count"),o=xe("sponsorship-total");r.pipe(D(i=>B(t).pipe(he(f=>f.innerText=`${i.sponsors.length}`)))).subscribe(()=>e.removeAttribute("hidden")),r.pipe(D(i=>B(o).pipe(he(f=>f.innerText=`$ ${i.total.toString().replace(/\B(?=(\d{3})+(?!\d))/g,",")} a month`)))).subscribe();let n=yr(":scope > .mdx-sponsorship__list",e);return n&&t.length&&r.subscribe(i=>{for(let f of i.sponsors)f.type==="public"&&n.appendChild(mo(f.user));n.appendChild(ho(i.sponsors.filter(({type:f})=>f==="private").length))}),r.pipe(C(i=>Je({ref:e},i)))}function yo(){let{origin:e}=new URL(location.href);$(document.body,"click").subscribe(r=>{if(r.target instanceof HTMLElement){let t=r.target.closest("a");t&&t.origin!==e&&ga("send","event","outbound","click",t.href)}})}yo();var sn=document$.pipe(D(()=>q(...xe("iconsearch").map(e=>bo(e)),...xe("sponsorship").map(e=>xo(e)))));sn.subscribe();})(); //# sourceMappingURL=custom.00e08f28.min.js.map ��������������������������������������������������mkdocs-material-9.6.4/material/overrides/assets/javascripts/custom.00e08f28.min.js.map��������������0000664�0000000�0000000�00001770376�14753064456�0030565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "version": 3, "sources": ["node_modules/fuzzaldrin-plus/lib/scorer.js", "node_modules/fuzzaldrin-plus/lib/pathScorer.js", "node_modules/fuzzaldrin-plus/lib/query.js", "node_modules/fuzzaldrin-plus/lib/filter.js", "node_modules/fuzzaldrin-plus/lib/matcher.js", "node_modules/fuzzaldrin-plus/lib/fuzzaldrin.js", "node_modules/tslib/tslib.es6.mjs", "node_modules/rxjs/src/internal/util/isFunction.ts", "node_modules/rxjs/src/internal/util/createErrorClass.ts", "node_modules/rxjs/src/internal/util/UnsubscriptionError.ts", "node_modules/rxjs/src/internal/util/arrRemove.ts", "node_modules/rxjs/src/internal/Subscription.ts", "node_modules/rxjs/src/internal/config.ts", "node_modules/rxjs/src/internal/scheduler/timeoutProvider.ts", "node_modules/rxjs/src/internal/util/reportUnhandledError.ts", "node_modules/rxjs/src/internal/util/noop.ts", "node_modules/rxjs/src/internal/NotificationFactories.ts", "node_modules/rxjs/src/internal/util/errorContext.ts", "node_modules/rxjs/src/internal/Subscriber.ts", "node_modules/rxjs/src/internal/symbol/observable.ts", "node_modules/rxjs/src/internal/util/identity.ts", "node_modules/rxjs/src/internal/util/pipe.ts", "node_modules/rxjs/src/internal/Observable.ts", "node_modules/rxjs/src/internal/util/lift.ts", "node_modules/rxjs/src/internal/operators/OperatorSubscriber.ts", "node_modules/rxjs/src/internal/scheduler/animationFrameProvider.ts", "node_modules/rxjs/src/internal/util/ObjectUnsubscribedError.ts", "node_modules/rxjs/src/internal/Subject.ts", "node_modules/rxjs/src/internal/BehaviorSubject.ts", "node_modules/rxjs/src/internal/scheduler/dateTimestampProvider.ts", "node_modules/rxjs/src/internal/ReplaySubject.ts", "node_modules/rxjs/src/internal/scheduler/Action.ts", "node_modules/rxjs/src/internal/scheduler/intervalProvider.ts", "node_modules/rxjs/src/internal/scheduler/AsyncAction.ts", "node_modules/rxjs/src/internal/Scheduler.ts", "node_modules/rxjs/src/internal/scheduler/AsyncScheduler.ts", "node_modules/rxjs/src/internal/scheduler/async.ts", "node_modules/rxjs/src/internal/scheduler/AnimationFrameAction.ts", "node_modules/rxjs/src/internal/scheduler/AnimationFrameScheduler.ts", "node_modules/rxjs/src/internal/scheduler/animationFrame.ts", "node_modules/rxjs/src/internal/observable/empty.ts", "node_modules/rxjs/src/internal/util/isScheduler.ts", "node_modules/rxjs/src/internal/util/args.ts", "node_modules/rxjs/src/internal/util/isArrayLike.ts", "node_modules/rxjs/src/internal/util/isPromise.ts", "node_modules/rxjs/src/internal/util/isInteropObservable.ts", "node_modules/rxjs/src/internal/util/isAsyncIterable.ts", "node_modules/rxjs/src/internal/util/throwUnobservableError.ts", "node_modules/rxjs/src/internal/symbol/iterator.ts", "node_modules/rxjs/src/internal/util/isIterable.ts", "node_modules/rxjs/src/internal/util/isReadableStreamLike.ts", "node_modules/rxjs/src/internal/observable/innerFrom.ts", "node_modules/rxjs/src/internal/util/executeSchedule.ts", "node_modules/rxjs/src/internal/operators/observeOn.ts", "node_modules/rxjs/src/internal/operators/subscribeOn.ts", "node_modules/rxjs/src/internal/scheduled/scheduleObservable.ts", "node_modules/rxjs/src/internal/scheduled/schedulePromise.ts", "node_modules/rxjs/src/internal/scheduled/scheduleArray.ts", "node_modules/rxjs/src/internal/scheduled/scheduleIterable.ts", "node_modules/rxjs/src/internal/scheduled/scheduleAsyncIterable.ts", "node_modules/rxjs/src/internal/scheduled/scheduleReadableStreamLike.ts", "node_modules/rxjs/src/internal/scheduled/scheduled.ts", "node_modules/rxjs/src/internal/observable/from.ts", "node_modules/rxjs/src/internal/observable/of.ts", "node_modules/rxjs/src/internal/observable/throwError.ts", "node_modules/rxjs/src/internal/util/isDate.ts", "node_modules/rxjs/src/internal/operators/map.ts", "node_modules/rxjs/src/internal/util/mapOneOrManyArgs.ts", "node_modules/rxjs/src/internal/util/argsArgArrayOrObject.ts", "node_modules/rxjs/src/internal/util/createObject.ts", "node_modules/rxjs/src/internal/observable/combineLatest.ts", "node_modules/rxjs/src/internal/operators/mergeInternals.ts", "node_modules/rxjs/src/internal/operators/mergeMap.ts", "node_modules/rxjs/src/internal/operators/mergeAll.ts", "node_modules/rxjs/src/internal/operators/concatAll.ts", "node_modules/rxjs/src/internal/observable/concat.ts", "node_modules/rxjs/src/internal/observable/defer.ts", "node_modules/rxjs/src/internal/observable/fromEvent.ts", "node_modules/rxjs/src/internal/observable/timer.ts", "node_modules/rxjs/src/internal/observable/merge.ts", "node_modules/rxjs/src/internal/observable/never.ts", "node_modules/rxjs/src/internal/util/argsOrArgArray.ts", "node_modules/rxjs/src/internal/operators/filter.ts", "node_modules/rxjs/src/internal/observable/zip.ts", "node_modules/rxjs/src/internal/operators/audit.ts", "node_modules/rxjs/src/internal/operators/auditTime.ts", "node_modules/rxjs/src/internal/operators/bufferCount.ts", "node_modules/rxjs/src/internal/operators/combineLatest.ts", "node_modules/rxjs/src/internal/operators/combineLatestWith.ts", "node_modules/rxjs/src/internal/operators/debounceTime.ts", "node_modules/rxjs/src/internal/operators/take.ts", "node_modules/rxjs/src/internal/operators/ignoreElements.ts", "node_modules/rxjs/src/internal/operators/mapTo.ts", "node_modules/rxjs/src/internal/operators/delayWhen.ts", "node_modules/rxjs/src/internal/operators/delay.ts", "node_modules/rxjs/src/internal/operators/distinctUntilChanged.ts", "node_modules/rxjs/src/internal/operators/distinctUntilKeyChanged.ts", "node_modules/rxjs/src/internal/operators/finalize.ts", "node_modules/rxjs/src/internal/operators/share.ts", "node_modules/rxjs/src/internal/operators/shareReplay.ts", "node_modules/rxjs/src/internal/operators/startWith.ts", "node_modules/rxjs/src/internal/operators/switchMap.ts", "node_modules/rxjs/src/internal/operators/tap.ts", "node_modules/rxjs/src/internal/operators/withLatestFrom.ts", "node_modules/rxjs/src/internal/operators/zip.ts", "node_modules/rxjs/src/internal/operators/zipWith.ts", "src/templates/assets/javascripts/browser/element/_/index.ts", "src/templates/assets/javascripts/browser/element/focus/index.ts", "src/templates/assets/javascripts/utilities/h/index.ts", "src/templates/assets/javascripts/utilities/round/index.ts", "src/templates/assets/javascripts/browser/script/index.ts", "src/templates/assets/javascripts/browser/element/size/_/index.ts", "src/templates/assets/javascripts/browser/element/size/content/index.ts", "src/templates/assets/javascripts/browser/element/offset/content/index.ts", "src/templates/assets/javascripts/browser/element/visibility/index.ts", "src/templates/assets/javascripts/browser/toggle/index.ts", "src/templates/assets/javascripts/_/index.ts", "src/templates/assets/javascripts/browser/location/_/index.ts", "src/templates/assets/javascripts/browser/request/index.ts", "src/overrides/assets/javascripts/components/_/index.ts", "src/overrides/assets/javascripts/components/iconsearch/query/index.ts", "src/overrides/assets/javascripts/components/iconsearch/result/index.ts", "src/overrides/assets/javascripts/templates/iconsearch/index.tsx", "src/overrides/assets/javascripts/templates/sponsorship/index.tsx", "src/overrides/assets/javascripts/components/iconsearch/_/index.ts", "src/overrides/assets/javascripts/components/sponsorship/index.ts", "src/overrides/assets/javascripts/integrations/analytics/index.ts", "src/overrides/assets/javascripts/custom.ts"], "sourcesContent": ["(function() {\n var AcronymResult, computeScore, emptyAcronymResult, isAcronymFullWord, isMatch, isSeparator, isWordEnd, isWordStart, miss_coeff, pos_bonus, scoreAcronyms, scoreCharacter, scoreConsecutives, scoreExact, scoreExactMatch, scorePattern, scorePosition, scoreSize, tau_size, wm;\n\n wm = 150;\n\n pos_bonus = 20;\n\n tau_size = 150;\n\n miss_coeff = 0.75;\n\n exports.score = function(string, query, options) {\n var allowErrors, preparedQuery, score, string_lw;\n preparedQuery = options.preparedQuery, allowErrors = options.allowErrors;\n if (!(allowErrors || isMatch(string, preparedQuery.core_lw, preparedQuery.core_up))) {\n return 0;\n }\n string_lw = string.toLowerCase();\n score = computeScore(string, string_lw, preparedQuery);\n return Math.ceil(score);\n };\n\n exports.isMatch = isMatch = function(subject, query_lw, query_up) {\n var i, j, m, n, qj_lw, qj_up, si;\n m = subject.length;\n n = query_lw.length;\n if (!m || n > m) {\n return false;\n }\n i = -1;\n j = -1;\n while (++j < n) {\n qj_lw = query_lw.charCodeAt(j);\n qj_up = query_up.charCodeAt(j);\n while (++i < m) {\n si = subject.charCodeAt(i);\n if (si === qj_lw || si === qj_up) {\n break;\n }\n }\n if (i === m) {\n return false;\n }\n }\n return true;\n };\n\n exports.computeScore = computeScore = function(subject, subject_lw, preparedQuery) {\n var acro, acro_score, align, csc_diag, csc_row, csc_score, csc_should_rebuild, i, j, m, miss_budget, miss_left, n, pos, query, query_lw, record_miss, score, score_diag, score_row, score_up, si_lw, start, sz;\n query = preparedQuery.query;\n query_lw = preparedQuery.query_lw;\n m = subject.length;\n n = query.length;\n acro = scoreAcronyms(subject, subject_lw, query, query_lw);\n acro_score = acro.score;\n if (acro.count === n) {\n return scoreExact(n, m, acro_score, acro.pos);\n }\n pos = subject_lw.indexOf(query_lw);\n if (pos > -1) {\n return scoreExactMatch(subject, subject_lw, query, query_lw, pos, n, m);\n }\n score_row = new Array(n);\n csc_row = new Array(n);\n sz = scoreSize(n, m);\n miss_budget = Math.ceil(miss_coeff * n) + 5;\n miss_left = miss_budget;\n csc_should_rebuild = true;\n j = -1;\n while (++j < n) {\n score_row[j] = 0;\n csc_row[j] = 0;\n }\n i = -1;\n while (++i < m) {\n si_lw = subject_lw[i];\n if (!si_lw.charCodeAt(0) in preparedQuery.charCodes) {\n if (csc_should_rebuild) {\n j = -1;\n while (++j < n) {\n csc_row[j] = 0;\n }\n csc_should_rebuild = false;\n }\n continue;\n }\n score = 0;\n score_diag = 0;\n csc_diag = 0;\n record_miss = true;\n csc_should_rebuild = true;\n j = -1;\n while (++j < n) {\n score_up = score_row[j];\n if (score_up > score) {\n score = score_up;\n }\n csc_score = 0;\n if (query_lw[j] === si_lw) {\n start = isWordStart(i, subject, subject_lw);\n csc_score = csc_diag > 0 ? csc_diag : scoreConsecutives(subject, subject_lw, query, query_lw, i, j, start);\n align = score_diag + scoreCharacter(i, j, start, acro_score, csc_score);\n if (align > score) {\n score = align;\n miss_left = miss_budget;\n } else {\n if (record_miss && --miss_left <= 0) {\n return Math.max(score, score_row[n - 1]) * sz;\n }\n record_miss = false;\n }\n }\n score_diag = score_up;\n csc_diag = csc_row[j];\n csc_row[j] = csc_score;\n score_row[j] = score;\n }\n }\n score = score_row[n - 1];\n return score * sz;\n };\n\n exports.isWordStart = isWordStart = function(pos, subject, subject_lw) {\n var curr_s, prev_s;\n if (pos === 0) {\n return true;\n }\n curr_s = subject[pos];\n prev_s = subject[pos - 1];\n return isSeparator(prev_s) || (curr_s !== subject_lw[pos] && prev_s === subject_lw[pos - 1]);\n };\n\n exports.isWordEnd = isWordEnd = function(pos, subject, subject_lw, len) {\n var curr_s, next_s;\n if (pos === len - 1) {\n return true;\n }\n curr_s = subject[pos];\n next_s = subject[pos + 1];\n return isSeparator(next_s) || (curr_s === subject_lw[pos] && next_s !== subject_lw[pos + 1]);\n };\n\n isSeparator = function(c) {\n return c === ' ' || c === '.' || c === '-' || c === '_' || c === '/' || c === '\\\\';\n };\n\n scorePosition = function(pos) {\n var sc;\n if (pos < pos_bonus) {\n sc = pos_bonus - pos;\n return 100 + sc * sc;\n } else {\n return Math.max(100 + pos_bonus - pos, 0);\n }\n };\n\n exports.scoreSize = scoreSize = function(n, m) {\n return tau_size / (tau_size + Math.abs(m - n));\n };\n\n scoreExact = function(n, m, quality, pos) {\n return 2 * n * (wm * quality + scorePosition(pos)) * scoreSize(n, m);\n };\n\n exports.scorePattern = scorePattern = function(count, len, sameCase, start, end) {\n var bonus, sz;\n sz = count;\n bonus = 6;\n if (sameCase === count) {\n bonus += 2;\n }\n if (start) {\n bonus += 3;\n }\n if (end) {\n bonus += 1;\n }\n if (count === len) {\n if (start) {\n if (sameCase === len) {\n sz += 2;\n } else {\n sz += 1;\n }\n }\n if (end) {\n bonus += 1;\n }\n }\n return sameCase + sz * (sz + bonus);\n };\n\n exports.scoreCharacter = scoreCharacter = function(i, j, start, acro_score, csc_score) {\n var posBonus;\n posBonus = scorePosition(i);\n if (start) {\n return posBonus + wm * ((acro_score > csc_score ? acro_score : csc_score) + 10);\n }\n return posBonus + wm * csc_score;\n };\n\n exports.scoreConsecutives = scoreConsecutives = function(subject, subject_lw, query, query_lw, i, j, startOfWord) {\n var k, m, mi, n, nj, sameCase, sz;\n m = subject.length;\n n = query.length;\n mi = m - i;\n nj = n - j;\n k = mi < nj ? mi : nj;\n sameCase = 0;\n sz = 0;\n if (query[j] === subject[i]) {\n sameCase++;\n }\n while (++sz < k && query_lw[++j] === subject_lw[++i]) {\n if (query[j] === subject[i]) {\n sameCase++;\n }\n }\n if (sz < k) {\n i--;\n }\n if (sz === 1) {\n return 1 + 2 * sameCase;\n }\n return scorePattern(sz, n, sameCase, startOfWord, isWordEnd(i, subject, subject_lw, m));\n };\n\n exports.scoreExactMatch = scoreExactMatch = function(subject, subject_lw, query, query_lw, pos, n, m) {\n var end, i, pos2, sameCase, start;\n start = isWordStart(pos, subject, subject_lw);\n if (!start) {\n pos2 = subject_lw.indexOf(query_lw, pos + 1);\n if (pos2 > -1) {\n start = isWordStart(pos2, subject, subject_lw);\n if (start) {\n pos = pos2;\n }\n }\n }\n i = -1;\n sameCase = 0;\n while (++i < n) {\n if (query[pos + i] === subject[i]) {\n sameCase++;\n }\n }\n end = isWordEnd(pos + n - 1, subject, subject_lw, m);\n return scoreExact(n, m, scorePattern(n, n, sameCase, start, end), pos);\n };\n\n AcronymResult = (function() {\n function AcronymResult(score, pos, count) {\n this.score = score;\n this.pos = pos;\n this.count = count;\n }\n\n return AcronymResult;\n\n })();\n\n emptyAcronymResult = new AcronymResult(0, 0.1, 0);\n\n exports.scoreAcronyms = scoreAcronyms = function(subject, subject_lw, query, query_lw) {\n var count, fullWord, i, j, m, n, qj_lw, sameCase, score, sepCount, sumPos;\n m = subject.length;\n n = query.length;\n if (!(m > 1 && n > 1)) {\n return emptyAcronymResult;\n }\n count = 0;\n sepCount = 0;\n sumPos = 0;\n sameCase = 0;\n i = -1;\n j = -1;\n while (++j < n) {\n qj_lw = query_lw[j];\n if (isSeparator(qj_lw)) {\n i = subject_lw.indexOf(qj_lw, i + 1);\n if (i > -1) {\n sepCount++;\n continue;\n } else {\n break;\n }\n }\n while (++i < m) {\n if (qj_lw === subject_lw[i] && isWordStart(i, subject, subject_lw)) {\n if (query[j] === subject[i]) {\n sameCase++;\n }\n sumPos += i;\n count++;\n break;\n }\n }\n if (i === m) {\n break;\n }\n }\n if (count < 2) {\n return emptyAcronymResult;\n }\n fullWord = count === n ? isAcronymFullWord(subject, subject_lw, query, count) : false;\n score = scorePattern(count, n, sameCase, true, fullWord);\n return new AcronymResult(score, sumPos / count, count + sepCount);\n };\n\n isAcronymFullWord = function(subject, subject_lw, query, nbAcronymInQuery) {\n var count, i, m, n;\n m = subject.length;\n n = query.length;\n count = 0;\n if (m > 12 * n) {\n return false;\n }\n i = -1;\n while (++i < m) {\n if (isWordStart(i, subject, subject_lw) && ++count > nbAcronymInQuery) {\n return false;\n }\n }\n return true;\n };\n\n}).call(this);\n", "(function() {\n var computeScore, countDir, file_coeff, getExtension, getExtensionScore, isMatch, scorePath, scoreSize, tau_depth, _ref;\n\n _ref = require('./scorer'), isMatch = _ref.isMatch, computeScore = _ref.computeScore, scoreSize = _ref.scoreSize;\n\n tau_depth = 20;\n\n file_coeff = 2.5;\n\n exports.score = function(string, query, options) {\n var allowErrors, preparedQuery, score, string_lw;\n preparedQuery = options.preparedQuery, allowErrors = options.allowErrors;\n if (!(allowErrors || isMatch(string, preparedQuery.core_lw, preparedQuery.core_up))) {\n return 0;\n }\n string_lw = string.toLowerCase();\n score = computeScore(string, string_lw, preparedQuery);\n score = scorePath(string, string_lw, score, options);\n return Math.ceil(score);\n };\n\n scorePath = function(subject, subject_lw, fullPathScore, options) {\n var alpha, basePathScore, basePos, depth, end, extAdjust, fileLength, pathSeparator, preparedQuery, useExtensionBonus;\n if (fullPathScore === 0) {\n return 0;\n }\n preparedQuery = options.preparedQuery, useExtensionBonus = options.useExtensionBonus, pathSeparator = options.pathSeparator;\n end = subject.length - 1;\n while (subject[end] === pathSeparator) {\n end--;\n }\n basePos = subject.lastIndexOf(pathSeparator, end);\n fileLength = end - basePos;\n extAdjust = 1.0;\n if (useExtensionBonus) {\n extAdjust += getExtensionScore(subject_lw, preparedQuery.ext, basePos, end, 2);\n fullPathScore *= extAdjust;\n }\n if (basePos === -1) {\n return fullPathScore;\n }\n depth = preparedQuery.depth;\n while (basePos > -1 && depth-- > 0) {\n basePos = subject.lastIndexOf(pathSeparator, basePos - 1);\n }\n basePathScore = basePos === -1 ? fullPathScore : extAdjust * computeScore(subject.slice(basePos + 1, end + 1), subject_lw.slice(basePos + 1, end + 1), preparedQuery);\n alpha = 0.5 * tau_depth / (tau_depth + countDir(subject, end + 1, pathSeparator));\n return alpha * basePathScore + (1 - alpha) * fullPathScore * scoreSize(0, file_coeff * fileLength);\n };\n\n exports.countDir = countDir = function(path, end, pathSeparator) {\n var count, i;\n if (end < 1) {\n return 0;\n }\n count = 0;\n i = -1;\n while (++i < end && path[i] === pathSeparator) {\n continue;\n }\n while (++i < end) {\n if (path[i] === pathSeparator) {\n count++;\n while (++i < end && path[i] === pathSeparator) {\n continue;\n }\n }\n }\n return count;\n };\n\n exports.getExtension = getExtension = function(str) {\n var pos;\n pos = str.lastIndexOf(\".\");\n if (pos < 0) {\n return \"\";\n } else {\n return str.substr(pos + 1);\n }\n };\n\n getExtensionScore = function(candidate, ext, startPos, endPos, maxDepth) {\n var m, matched, n, pos;\n if (!ext.length) {\n return 0;\n }\n pos = candidate.lastIndexOf(\".\", endPos);\n if (!(pos > startPos)) {\n return 0;\n }\n n = ext.length;\n m = endPos - pos;\n if (m < n) {\n n = m;\n m = ext.length;\n }\n pos++;\n matched = -1;\n while (++matched < n) {\n if (candidate[pos + matched] !== ext[matched]) {\n break;\n }\n }\n if (matched === 0 && maxDepth > 0) {\n return 0.9 * getExtensionScore(candidate, ext, startPos, pos - 2, maxDepth - 1);\n }\n return matched / m;\n };\n\n}).call(this);\n", "(function() {\n var Query, coreChars, countDir, getCharCodes, getExtension, opt_char_re, truncatedUpperCase, _ref;\n\n _ref = require(\"./pathScorer\"), countDir = _ref.countDir, getExtension = _ref.getExtension;\n\n module.exports = Query = (function() {\n function Query(query, _arg) {\n var optCharRegEx, pathSeparator, _ref1;\n _ref1 = _arg != null ? _arg : {}, optCharRegEx = _ref1.optCharRegEx, pathSeparator = _ref1.pathSeparator;\n if (!(query && query.length)) {\n return null;\n }\n this.query = query;\n this.query_lw = query.toLowerCase();\n this.core = coreChars(query, optCharRegEx);\n this.core_lw = this.core.toLowerCase();\n this.core_up = truncatedUpperCase(this.core);\n this.depth = countDir(query, query.length, pathSeparator);\n this.ext = getExtension(this.query_lw);\n this.charCodes = getCharCodes(this.query_lw);\n }\n\n return Query;\n\n })();\n\n opt_char_re = /[ _\\-:\\/\\\\]/g;\n\n coreChars = function(query, optCharRegEx) {\n if (optCharRegEx == null) {\n optCharRegEx = opt_char_re;\n }\n return query.replace(optCharRegEx, '');\n };\n\n truncatedUpperCase = function(str) {\n var char, upper, _i, _len;\n upper = \"\";\n for (_i = 0, _len = str.length; _i < _len; _i++) {\n char = str[_i];\n upper += char.toUpperCase()[0];\n }\n return upper;\n };\n\n getCharCodes = function(str) {\n var charCodes, i, len;\n len = str.length;\n i = -1;\n charCodes = [];\n while (++i < len) {\n charCodes[str.charCodeAt(i)] = true;\n }\n return charCodes;\n };\n\n}).call(this);\n", "(function() {\n var Query, pathScorer, pluckCandidates, scorer, sortCandidates;\n\n scorer = require('./scorer');\n\n pathScorer = require('./pathScorer');\n\n Query = require('./query');\n\n pluckCandidates = function(a) {\n return a.candidate;\n };\n\n sortCandidates = function(a, b) {\n return b.score - a.score;\n };\n\n module.exports = function(candidates, query, options) {\n var bKey, candidate, key, maxInners, maxResults, score, scoreProvider, scoredCandidates, spotLeft, string, usePathScoring, _i, _len;\n scoredCandidates = [];\n key = options.key, maxResults = options.maxResults, maxInners = options.maxInners, usePathScoring = options.usePathScoring;\n spotLeft = (maxInners != null) && maxInners > 0 ? maxInners : candidates.length + 1;\n bKey = key != null;\n scoreProvider = usePathScoring ? pathScorer : scorer;\n for (_i = 0, _len = candidates.length; _i < _len; _i++) {\n candidate = candidates[_i];\n string = bKey ? candidate[key] : candidate;\n if (!string) {\n continue;\n }\n score = scoreProvider.score(string, query, options);\n if (score > 0) {\n scoredCandidates.push({\n candidate: candidate,\n score: score\n });\n if (!--spotLeft) {\n break;\n }\n }\n }\n scoredCandidates.sort(sortCandidates);\n candidates = scoredCandidates.map(pluckCandidates);\n if (maxResults != null) {\n candidates = candidates.slice(0, maxResults);\n }\n return candidates;\n };\n\n}).call(this);\n", "(function() {\n var basenameMatch, computeMatch, isMatch, isWordStart, match, mergeMatches, scoreAcronyms, scoreCharacter, scoreConsecutives, _ref;\n\n _ref = require('./scorer'), isMatch = _ref.isMatch, isWordStart = _ref.isWordStart, scoreConsecutives = _ref.scoreConsecutives, scoreCharacter = _ref.scoreCharacter, scoreAcronyms = _ref.scoreAcronyms;\n\n exports.match = match = function(string, query, options) {\n var allowErrors, baseMatches, matches, pathSeparator, preparedQuery, string_lw;\n allowErrors = options.allowErrors, preparedQuery = options.preparedQuery, pathSeparator = options.pathSeparator;\n if (!(allowErrors || isMatch(string, preparedQuery.core_lw, preparedQuery.core_up))) {\n return [];\n }\n string_lw = string.toLowerCase();\n matches = computeMatch(string, string_lw, preparedQuery);\n if (matches.length === 0) {\n return matches;\n }\n if (string.indexOf(pathSeparator) > -1) {\n baseMatches = basenameMatch(string, string_lw, preparedQuery, pathSeparator);\n matches = mergeMatches(matches, baseMatches);\n }\n return matches;\n };\n\n exports.wrap = function(string, query, options) {\n var matchIndex, matchPos, matchPositions, output, strPos, tagClass, tagClose, tagOpen, _ref1;\n if ((options.wrap != null)) {\n _ref1 = options.wrap, tagClass = _ref1.tagClass, tagOpen = _ref1.tagOpen, tagClose = _ref1.tagClose;\n }\n if (tagClass == null) {\n tagClass = 'highlight';\n }\n if (tagOpen == null) {\n tagOpen = '<strong class=\"' + tagClass + '\">';\n }\n if (tagClose == null) {\n tagClose = '</strong>';\n }\n if (string === query) {\n return tagOpen + string + tagClose;\n }\n matchPositions = match(string, query, options);\n if (matchPositions.length === 0) {\n return string;\n }\n output = '';\n matchIndex = -1;\n strPos = 0;\n while (++matchIndex < matchPositions.length) {\n matchPos = matchPositions[matchIndex];\n if (matchPos > strPos) {\n output += string.substring(strPos, matchPos);\n strPos = matchPos;\n }\n while (++matchIndex < matchPositions.length) {\n if (matchPositions[matchIndex] === matchPos + 1) {\n matchPos++;\n } else {\n matchIndex--;\n break;\n }\n }\n matchPos++;\n if (matchPos > strPos) {\n output += tagOpen;\n output += string.substring(strPos, matchPos);\n output += tagClose;\n strPos = matchPos;\n }\n }\n if (strPos <= string.length - 1) {\n output += string.substring(strPos);\n }\n return output;\n };\n\n basenameMatch = function(subject, subject_lw, preparedQuery, pathSeparator) {\n var basePos, depth, end;\n end = subject.length - 1;\n while (subject[end] === pathSeparator) {\n end--;\n }\n basePos = subject.lastIndexOf(pathSeparator, end);\n if (basePos === -1) {\n return [];\n }\n depth = preparedQuery.depth;\n while (depth-- > 0) {\n basePos = subject.lastIndexOf(pathSeparator, basePos - 1);\n if (basePos === -1) {\n return [];\n }\n }\n basePos++;\n end++;\n return computeMatch(subject.slice(basePos, end), subject_lw.slice(basePos, end), preparedQuery, basePos);\n };\n\n mergeMatches = function(a, b) {\n var ai, bj, i, j, m, n, out;\n m = a.length;\n n = b.length;\n if (n === 0) {\n return a.slice();\n }\n if (m === 0) {\n return b.slice();\n }\n i = -1;\n j = 0;\n bj = b[j];\n out = [];\n while (++i < m) {\n ai = a[i];\n while (bj <= ai && ++j < n) {\n if (bj < ai) {\n out.push(bj);\n }\n bj = b[j];\n }\n out.push(ai);\n }\n while (j < n) {\n out.push(b[j++]);\n }\n return out;\n };\n\n computeMatch = function(subject, subject_lw, preparedQuery, offset) {\n var DIAGONAL, LEFT, STOP, UP, acro_score, align, backtrack, csc_diag, csc_row, csc_score, i, j, m, matches, move, n, pos, query, query_lw, score, score_diag, score_row, score_up, si_lw, start, trace;\n if (offset == null) {\n offset = 0;\n }\n query = preparedQuery.query;\n query_lw = preparedQuery.query_lw;\n m = subject.length;\n n = query.length;\n acro_score = scoreAcronyms(subject, subject_lw, query, query_lw).score;\n score_row = new Array(n);\n csc_row = new Array(n);\n STOP = 0;\n UP = 1;\n LEFT = 2;\n DIAGONAL = 3;\n trace = new Array(m * n);\n pos = -1;\n j = -1;\n while (++j < n) {\n score_row[j] = 0;\n csc_row[j] = 0;\n }\n i = -1;\n while (++i < m) {\n score = 0;\n score_up = 0;\n csc_diag = 0;\n si_lw = subject_lw[i];\n j = -1;\n while (++j < n) {\n csc_score = 0;\n align = 0;\n score_diag = score_up;\n if (query_lw[j] === si_lw) {\n start = isWordStart(i, subject, subject_lw);\n csc_score = csc_diag > 0 ? csc_diag : scoreConsecutives(subject, subject_lw, query, query_lw, i, j, start);\n align = score_diag + scoreCharacter(i, j, start, acro_score, csc_score);\n }\n score_up = score_row[j];\n csc_diag = csc_row[j];\n if (score > score_up) {\n move = LEFT;\n } else {\n score = score_up;\n move = UP;\n }\n if (align > score) {\n score = align;\n move = DIAGONAL;\n } else {\n csc_score = 0;\n }\n score_row[j] = score;\n csc_row[j] = csc_score;\n trace[++pos] = score > 0 ? move : STOP;\n }\n }\n i = m - 1;\n j = n - 1;\n pos = i * n + j;\n backtrack = true;\n matches = [];\n while (backtrack && i >= 0 && j >= 0) {\n switch (trace[pos]) {\n case UP:\n i--;\n pos -= n;\n break;\n case LEFT:\n j--;\n pos--;\n break;\n case DIAGONAL:\n matches.push(i + offset);\n j--;\n i--;\n pos -= n + 1;\n break;\n default:\n backtrack = false;\n }\n }\n matches.reverse();\n return matches;\n };\n\n}).call(this);\n", "(function() {\n var Query, defaultPathSeparator, filter, matcher, parseOptions, pathScorer, preparedQueryCache, scorer;\n\n filter = require('./filter');\n\n matcher = require('./matcher');\n\n scorer = require('./scorer');\n\n pathScorer = require('./pathScorer');\n\n Query = require('./query');\n\n preparedQueryCache = null;\n\n defaultPathSeparator = (typeof process !== \"undefined\" && process !== null ? process.platform : void 0) === \"win32\" ? '\\\\' : '/';\n\n module.exports = {\n filter: function(candidates, query, options) {\n if (options == null) {\n options = {};\n }\n if (!((query != null ? query.length : void 0) && (candidates != null ? candidates.length : void 0))) {\n return [];\n }\n options = parseOptions(options, query);\n return filter(candidates, query, options);\n },\n score: function(string, query, options) {\n if (options == null) {\n options = {};\n }\n if (!((string != null ? string.length : void 0) && (query != null ? query.length : void 0))) {\n return 0;\n }\n options = parseOptions(options, query);\n if (options.usePathScoring) {\n return pathScorer.score(string, query, options);\n } else {\n return scorer.score(string, query, options);\n }\n },\n match: function(string, query, options) {\n var _i, _ref, _results;\n if (options == null) {\n options = {};\n }\n if (!string) {\n return [];\n }\n if (!query) {\n return [];\n }\n if (string === query) {\n return (function() {\n _results = [];\n for (var _i = 0, _ref = string.length; 0 <= _ref ? _i < _ref : _i > _ref; 0 <= _ref ? _i++ : _i--){ _results.push(_i); }\n return _results;\n }).apply(this);\n }\n options = parseOptions(options, query);\n return matcher.match(string, query, options);\n },\n wrap: function(string, query, options) {\n if (options == null) {\n options = {};\n }\n if (!string) {\n return [];\n }\n if (!query) {\n return [];\n }\n options = parseOptions(options, query);\n return matcher.wrap(string, query, options);\n },\n prepareQuery: function(query, options) {\n if (options == null) {\n options = {};\n }\n options = parseOptions(options, query);\n return options.preparedQuery;\n }\n };\n\n parseOptions = function(options, query) {\n if (options.allowErrors == null) {\n options.allowErrors = false;\n }\n if (options.usePathScoring == null) {\n options.usePathScoring = true;\n }\n if (options.useExtensionBonus == null) {\n options.useExtensionBonus = false;\n }\n if (options.pathSeparator == null) {\n options.pathSeparator = defaultPathSeparator;\n }\n if (options.optCharRegEx == null) {\n options.optCharRegEx = null;\n }\n if (options.wrap == null) {\n options.wrap = null;\n }\n if (options.preparedQuery == null) {\n options.preparedQuery = preparedQueryCache && preparedQueryCache.query === query ? preparedQueryCache : (preparedQueryCache = new Query(query, options));\n }\n return options;\n };\n\n}).call(this);\n", "/******************************************************************************\nCopyright (c) Microsoft Corporation.\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n***************************************************************************** */\n/* global Reflect, Promise, SuppressedError, Symbol, Iterator */\n\nvar extendStatics = function(d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n};\n\nexport function __extends(d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n}\n\nexport var __assign = function() {\n __assign = Object.assign || function __assign(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\n }\n return t;\n }\n return __assign.apply(this, arguments);\n}\n\nexport function __rest(s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n}\n\nexport function __decorate(decorators, target, key, desc) {\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\n return c > 3 && r && Object.defineProperty(target, key, r), r;\n}\n\nexport function __param(paramIndex, decorator) {\n return function (target, key) { decorator(target, key, paramIndex); }\n}\n\nexport function __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\n var _, done = false;\n for (var i = decorators.length - 1; i >= 0; i--) {\n var context = {};\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\n if (kind === \"accessor\") {\n if (result === void 0) continue;\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\n if (_ = accept(result.get)) descriptor.get = _;\n if (_ = accept(result.set)) descriptor.set = _;\n if (_ = accept(result.init)) initializers.unshift(_);\n }\n else if (_ = accept(result)) {\n if (kind === \"field\") initializers.unshift(_);\n else descriptor[key] = _;\n }\n }\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\n done = true;\n};\n\nexport function __runInitializers(thisArg, initializers, value) {\n var useValue = arguments.length > 2;\n for (var i = 0; i < initializers.length; i++) {\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\n }\n return useValue ? value : void 0;\n};\n\nexport function __propKey(x) {\n return typeof x === \"symbol\" ? x : \"\".concat(x);\n};\n\nexport function __setFunctionName(f, name, prefix) {\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\n};\n\nexport function __metadata(metadataKey, metadataValue) {\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\n}\n\nexport function __awaiter(thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n}\n\nexport function __generator(thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === \"function\" ? Iterator : Object).prototype);\n return g.next = verb(0), g[\"throw\"] = verb(1), g[\"return\"] = verb(2), typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n}\n\nexport var __createBinding = Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n var desc = Object.getOwnPropertyDescriptor(m, k);\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n desc = { enumerable: true, get: function() { return m[k]; } };\n }\n Object.defineProperty(o, k2, desc);\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n});\n\nexport function __exportStar(m, o) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\n}\n\nexport function __values(o) {\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\n if (m) return m.call(o);\n if (o && typeof o.length === \"number\") return {\n next: function () {\n if (o && i >= o.length) o = void 0;\n return { value: o && o[i++], done: !o };\n }\n };\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\n}\n\nexport function __read(o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n}\n\n/** @deprecated */\nexport function __spread() {\n for (var ar = [], i = 0; i < arguments.length; i++)\n ar = ar.concat(__read(arguments[i]));\n return ar;\n}\n\n/** @deprecated */\nexport function __spreadArrays() {\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\n r[k] = a[j];\n return r;\n}\n\nexport function __spreadArray(to, from, pack) {\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\n if (ar || !(i in from)) {\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\n ar[i] = from[i];\n }\n }\n return to.concat(ar || Array.prototype.slice.call(from));\n}\n\nexport function __await(v) {\n return this instanceof __await ? (this.v = v, this) : new __await(v);\n}\n\nexport function __asyncGenerator(thisArg, _arguments, generator) {\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\n return i = Object.create((typeof AsyncIterator === \"function\" ? AsyncIterator : Object).prototype), verb(\"next\"), verb(\"throw\"), verb(\"return\", awaitReturn), i[Symbol.asyncIterator] = function () { return this; }, i;\n function awaitReturn(f) { return function (v) { return Promise.resolve(v).then(f, reject); }; }\n function verb(n, f) { if (g[n]) { i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; if (f) i[n] = f(i[n]); } }\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\n function fulfill(value) { resume(\"next\", value); }\n function reject(value) { resume(\"throw\", value); }\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\n}\n\nexport function __asyncDelegator(o) {\n var i, p;\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\n}\n\nexport function __asyncValues(o) {\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\n var m = o[Symbol.asyncIterator], i;\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\n}\n\nexport function __makeTemplateObject(cooked, raw) {\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\n return cooked;\n};\n\nvar __setModuleDefault = Object.create ? (function(o, v) {\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n}) : function(o, v) {\n o[\"default\"] = v;\n};\n\nexport function __importStar(mod) {\n if (mod && mod.__esModule) return mod;\n var result = {};\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n __setModuleDefault(result, mod);\n return result;\n}\n\nexport function __importDefault(mod) {\n return (mod && mod.__esModule) ? mod : { default: mod };\n}\n\nexport function __classPrivateFieldGet(receiver, state, kind, f) {\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\n}\n\nexport function __classPrivateFieldSet(receiver, state, value, kind, f) {\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\n}\n\nexport function __classPrivateFieldIn(state, receiver) {\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\n}\n\nexport function __addDisposableResource(env, value, async) {\n if (value !== null && value !== void 0) {\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\n var dispose, inner;\n if (async) {\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\n dispose = value[Symbol.asyncDispose];\n }\n if (dispose === void 0) {\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\n dispose = value[Symbol.dispose];\n if (async) inner = dispose;\n }\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\n if (inner) dispose = function() { try { inner.call(this); } catch (e) { return Promise.reject(e); } };\n env.stack.push({ value: value, dispose: dispose, async: async });\n }\n else if (async) {\n env.stack.push({ async: true });\n }\n return value;\n}\n\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\n var e = new Error(message);\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\n};\n\nexport function __disposeResources(env) {\n function fail(e) {\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\n env.hasError = true;\n }\n var r, s = 0;\n function next() {\n while (r = env.stack.pop()) {\n try {\n if (!r.async && s === 1) return s = 0, env.stack.push(r), Promise.resolve().then(next);\n if (r.dispose) {\n var result = r.dispose.call(r.value);\n if (r.async) return s |= 2, Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\n }\n else s |= 1;\n }\n catch (e) {\n fail(e);\n }\n }\n if (s === 1) return env.hasError ? Promise.reject(env.error) : Promise.resolve();\n if (env.hasError) throw env.error;\n }\n return next();\n}\n\nexport default {\n __extends,\n __assign,\n __rest,\n __decorate,\n __param,\n __metadata,\n __awaiter,\n __generator,\n __createBinding,\n __exportStar,\n __values,\n __read,\n __spread,\n __spreadArrays,\n __spreadArray,\n __await,\n __asyncGenerator,\n __asyncDelegator,\n __asyncValues,\n __makeTemplateObject,\n __importStar,\n __importDefault,\n __classPrivateFieldGet,\n __classPrivateFieldSet,\n __classPrivateFieldIn,\n __addDisposableResource,\n __disposeResources,\n};\n", "/**\n * Returns true if the object is a function.\n * @param value The value to check\n */\nexport function isFunction(value: any): value is (...args: any[]) => any {\n return typeof value === 'function';\n}\n", "/**\n * Used to create Error subclasses until the community moves away from ES5.\n *\n * This is because compiling from TypeScript down to ES5 has issues with subclassing Errors\n * as well as other built-in types: https://github.com/Microsoft/TypeScript/issues/12123\n *\n * @param createImpl A factory function to create the actual constructor implementation. The returned\n * function should be a named function that calls `_super` internally.\n */\nexport function createErrorClass<T>(createImpl: (_super: any) => any): T {\n const _super = (instance: any) => {\n Error.call(instance);\n instance.stack = new Error().stack;\n };\n\n const ctorFunc = createImpl(_super);\n ctorFunc.prototype = Object.create(Error.prototype);\n ctorFunc.prototype.constructor = ctorFunc;\n return ctorFunc;\n}\n", "import { createErrorClass } from './createErrorClass';\n\nexport interface UnsubscriptionError extends Error {\n readonly errors: any[];\n}\n\nexport interface UnsubscriptionErrorCtor {\n /**\n * @deprecated Internal implementation detail. Do not construct error instances.\n * Cannot be tagged as internal: https://github.com/ReactiveX/rxjs/issues/6269\n */\n new (errors: any[]): UnsubscriptionError;\n}\n\n/**\n * An error thrown when one or more errors have occurred during the\n * `unsubscribe` of a {@link Subscription}.\n */\nexport const UnsubscriptionError: UnsubscriptionErrorCtor = createErrorClass(\n (_super) =>\n function UnsubscriptionErrorImpl(this: any, errors: (Error | string)[]) {\n _super(this);\n this.message = errors\n ? `${errors.length} errors occurred during unsubscription:\n${errors.map((err, i) => `${i + 1}) ${err.toString()}`).join('\\n ')}`\n : '';\n this.name = 'UnsubscriptionError';\n this.errors = errors;\n }\n);\n", "/**\n * Removes an item from an array, mutating it.\n * @param arr The array to remove the item from\n * @param item The item to remove\n */\nexport function arrRemove<T>(arr: T[] | undefined | null, item: T) {\n if (arr) {\n const index = arr.indexOf(item);\n 0 <= index && arr.splice(index, 1);\n }\n}\n", "import { isFunction } from './util/isFunction';\nimport { UnsubscriptionError } from './util/UnsubscriptionError';\nimport { SubscriptionLike, TeardownLogic, Unsubscribable } from './types';\nimport { arrRemove } from './util/arrRemove';\n\n/**\n * Represents a disposable resource, such as the execution of an Observable. A\n * Subscription has one important method, `unsubscribe`, that takes no argument\n * and just disposes the resource held by the subscription.\n *\n * Additionally, subscriptions may be grouped together through the `add()`\n * method, which will attach a child Subscription to the current Subscription.\n * When a Subscription is unsubscribed, all its children (and its grandchildren)\n * will be unsubscribed as well.\n *\n * @class Subscription\n */\nexport class Subscription implements SubscriptionLike {\n /** @nocollapse */\n public static EMPTY = (() => {\n const empty = new Subscription();\n empty.closed = true;\n return empty;\n })();\n\n /**\n * A flag to indicate whether this Subscription has already been unsubscribed.\n */\n public closed = false;\n\n private _parentage: Subscription[] | Subscription | null = null;\n\n /**\n * The list of registered finalizers to execute upon unsubscription. Adding and removing from this\n * list occurs in the {@link #add} and {@link #remove} methods.\n */\n private _finalizers: Exclude<TeardownLogic, void>[] | null = null;\n\n /**\n * @param initialTeardown A function executed first as part of the finalization\n * process that is kicked off when {@link #unsubscribe} is called.\n */\n constructor(private initialTeardown?: () => void) {}\n\n /**\n * Disposes the resources held by the subscription. May, for instance, cancel\n * an ongoing Observable execution or cancel any other type of work that\n * started when the Subscription was created.\n * @return {void}\n */\n unsubscribe(): void {\n let errors: any[] | undefined;\n\n if (!this.closed) {\n this.closed = true;\n\n // Remove this from it's parents.\n const { _parentage } = this;\n if (_parentage) {\n this._parentage = null;\n if (Array.isArray(_parentage)) {\n for (const parent of _parentage) {\n parent.remove(this);\n }\n } else {\n _parentage.remove(this);\n }\n }\n\n const { initialTeardown: initialFinalizer } = this;\n if (isFunction(initialFinalizer)) {\n try {\n initialFinalizer();\n } catch (e) {\n errors = e instanceof UnsubscriptionError ? e.errors : [e];\n }\n }\n\n const { _finalizers } = this;\n if (_finalizers) {\n this._finalizers = null;\n for (const finalizer of _finalizers) {\n try {\n execFinalizer(finalizer);\n } catch (err) {\n errors = errors ?? [];\n if (err instanceof UnsubscriptionError) {\n errors = [...errors, ...err.errors];\n } else {\n errors.push(err);\n }\n }\n }\n }\n\n if (errors) {\n throw new UnsubscriptionError(errors);\n }\n }\n }\n\n /**\n * Adds a finalizer to this subscription, so that finalization will be unsubscribed/called\n * when this subscription is unsubscribed. If this subscription is already {@link #closed},\n * because it has already been unsubscribed, then whatever finalizer is passed to it\n * will automatically be executed (unless the finalizer itself is also a closed subscription).\n *\n * Closed Subscriptions cannot be added as finalizers to any subscription. Adding a closed\n * subscription to a any subscription will result in no operation. (A noop).\n *\n * Adding a subscription to itself, or adding `null` or `undefined` will not perform any\n * operation at all. (A noop).\n *\n * `Subscription` instances that are added to this instance will automatically remove themselves\n * if they are unsubscribed. Functions and {@link Unsubscribable} objects that you wish to remove\n * will need to be removed manually with {@link #remove}\n *\n * @param teardown The finalization logic to add to this subscription.\n */\n add(teardown: TeardownLogic): void {\n // Only add the finalizer if it's not undefined\n // and don't add a subscription to itself.\n if (teardown && teardown !== this) {\n if (this.closed) {\n // If this subscription is already closed,\n // execute whatever finalizer is handed to it automatically.\n execFinalizer(teardown);\n } else {\n if (teardown instanceof Subscription) {\n // We don't add closed subscriptions, and we don't add the same subscription\n // twice. Subscription unsubscribe is idempotent.\n if (teardown.closed || teardown._hasParent(this)) {\n return;\n }\n teardown._addParent(this);\n }\n (this._finalizers = this._finalizers ?? []).push(teardown);\n }\n }\n }\n\n /**\n * Checks to see if a this subscription already has a particular parent.\n * This will signal that this subscription has already been added to the parent in question.\n * @param parent the parent to check for\n */\n private _hasParent(parent: Subscription) {\n const { _parentage } = this;\n return _parentage === parent || (Array.isArray(_parentage) && _parentage.includes(parent));\n }\n\n /**\n * Adds a parent to this subscription so it can be removed from the parent if it\n * unsubscribes on it's own.\n *\n * NOTE: THIS ASSUMES THAT {@link _hasParent} HAS ALREADY BEEN CHECKED.\n * @param parent The parent subscription to add\n */\n private _addParent(parent: Subscription) {\n const { _parentage } = this;\n this._parentage = Array.isArray(_parentage) ? (_parentage.push(parent), _parentage) : _parentage ? [_parentage, parent] : parent;\n }\n\n /**\n * Called on a child when it is removed via {@link #remove}.\n * @param parent The parent to remove\n */\n private _removeParent(parent: Subscription) {\n const { _parentage } = this;\n if (_parentage === parent) {\n this._parentage = null;\n } else if (Array.isArray(_parentage)) {\n arrRemove(_parentage, parent);\n }\n }\n\n /**\n * Removes a finalizer from this subscription that was previously added with the {@link #add} method.\n *\n * Note that `Subscription` instances, when unsubscribed, will automatically remove themselves\n * from every other `Subscription` they have been added to. This means that using the `remove` method\n * is not a common thing and should be used thoughtfully.\n *\n * If you add the same finalizer instance of a function or an unsubscribable object to a `Subscription` instance\n * more than once, you will need to call `remove` the same number of times to remove all instances.\n *\n * All finalizer instances are removed to free up memory upon unsubscription.\n *\n * @param teardown The finalizer to remove from this subscription\n */\n remove(teardown: Exclude<TeardownLogic, void>): void {\n const { _finalizers } = this;\n _finalizers && arrRemove(_finalizers, teardown);\n\n if (teardown instanceof Subscription) {\n teardown._removeParent(this);\n }\n }\n}\n\nexport const EMPTY_SUBSCRIPTION = Subscription.EMPTY;\n\nexport function isSubscription(value: any): value is Subscription {\n return (\n value instanceof Subscription ||\n (value && 'closed' in value && isFunction(value.remove) && isFunction(value.add) && isFunction(value.unsubscribe))\n );\n}\n\nfunction execFinalizer(finalizer: Unsubscribable | (() => void)) {\n if (isFunction(finalizer)) {\n finalizer();\n } else {\n finalizer.unsubscribe();\n }\n}\n", "import { Subscriber } from './Subscriber';\nimport { ObservableNotification } from './types';\n\n/**\n * The {@link GlobalConfig} object for RxJS. It is used to configure things\n * like how to react on unhandled errors.\n */\nexport const config: GlobalConfig = {\n onUnhandledError: null,\n onStoppedNotification: null,\n Promise: undefined,\n useDeprecatedSynchronousErrorHandling: false,\n useDeprecatedNextContext: false,\n};\n\n/**\n * The global configuration object for RxJS, used to configure things\n * like how to react on unhandled errors. Accessible via {@link config}\n * object.\n */\nexport interface GlobalConfig {\n /**\n * A registration point for unhandled errors from RxJS. These are errors that\n * cannot were not handled by consuming code in the usual subscription path. For\n * example, if you have this configured, and you subscribe to an observable without\n * providing an error handler, errors from that subscription will end up here. This\n * will _always_ be called asynchronously on another job in the runtime. This is because\n * we do not want errors thrown in this user-configured handler to interfere with the\n * behavior of the library.\n */\n onUnhandledError: ((err: any) => void) | null;\n\n /**\n * A registration point for notifications that cannot be sent to subscribers because they\n * have completed, errored or have been explicitly unsubscribed. By default, next, complete\n * and error notifications sent to stopped subscribers are noops. However, sometimes callers\n * might want a different behavior. For example, with sources that attempt to report errors\n * to stopped subscribers, a caller can configure RxJS to throw an unhandled error instead.\n * This will _always_ be called asynchronously on another job in the runtime. This is because\n * we do not want errors thrown in this user-configured handler to interfere with the\n * behavior of the library.\n */\n onStoppedNotification: ((notification: ObservableNotification<any>, subscriber: Subscriber<any>) => void) | null;\n\n /**\n * The promise constructor used by default for {@link Observable#toPromise toPromise} and {@link Observable#forEach forEach}\n * methods.\n *\n * @deprecated As of version 8, RxJS will no longer support this sort of injection of a\n * Promise constructor. If you need a Promise implementation other than native promises,\n * please polyfill/patch Promise as you see appropriate. Will be removed in v8.\n */\n Promise?: PromiseConstructorLike;\n\n /**\n * If true, turns on synchronous error rethrowing, which is a deprecated behavior\n * in v6 and higher. This behavior enables bad patterns like wrapping a subscribe\n * call in a try/catch block. It also enables producer interference, a nasty bug\n * where a multicast can be broken for all observers by a downstream consumer with\n * an unhandled error. DO NOT USE THIS FLAG UNLESS IT'S NEEDED TO BUY TIME\n * FOR MIGRATION REASONS.\n *\n * @deprecated As of version 8, RxJS will no longer support synchronous throwing\n * of unhandled errors. All errors will be thrown on a separate call stack to prevent bad\n * behaviors described above. Will be removed in v8.\n */\n useDeprecatedSynchronousErrorHandling: boolean;\n\n /**\n * If true, enables an as-of-yet undocumented feature from v5: The ability to access\n * `unsubscribe()` via `this` context in `next` functions created in observers passed\n * to `subscribe`.\n *\n * This is being removed because the performance was severely problematic, and it could also cause\n * issues when types other than POJOs are passed to subscribe as subscribers, as they will likely have\n * their `this` context overwritten.\n *\n * @deprecated As of version 8, RxJS will no longer support altering the\n * context of next functions provided as part of an observer to Subscribe. Instead,\n * you will have access to a subscription or a signal or token that will allow you to do things like\n * unsubscribe and test closed status. Will be removed in v8.\n */\n useDeprecatedNextContext: boolean;\n}\n", "import type { TimerHandle } from './timerHandle';\ntype SetTimeoutFunction = (handler: () => void, timeout?: number, ...args: any[]) => TimerHandle;\ntype ClearTimeoutFunction = (handle: TimerHandle) => void;\n\ninterface TimeoutProvider {\n setTimeout: SetTimeoutFunction;\n clearTimeout: ClearTimeoutFunction;\n delegate:\n | {\n setTimeout: SetTimeoutFunction;\n clearTimeout: ClearTimeoutFunction;\n }\n | undefined;\n}\n\nexport const timeoutProvider: TimeoutProvider = {\n // When accessing the delegate, use the variable rather than `this` so that\n // the functions can be called without being bound to the provider.\n setTimeout(handler: () => void, timeout?: number, ...args) {\n const { delegate } = timeoutProvider;\n if (delegate?.setTimeout) {\n return delegate.setTimeout(handler, timeout, ...args);\n }\n return setTimeout(handler, timeout, ...args);\n },\n clearTimeout(handle) {\n const { delegate } = timeoutProvider;\n return (delegate?.clearTimeout || clearTimeout)(handle as any);\n },\n delegate: undefined,\n};\n", "import { config } from '../config';\nimport { timeoutProvider } from '../scheduler/timeoutProvider';\n\n/**\n * Handles an error on another job either with the user-configured {@link onUnhandledError},\n * or by throwing it on that new job so it can be picked up by `window.onerror`, `process.on('error')`, etc.\n *\n * This should be called whenever there is an error that is out-of-band with the subscription\n * or when an error hits a terminal boundary of the subscription and no error handler was provided.\n *\n * @param err the error to report\n */\nexport function reportUnhandledError(err: any) {\n timeoutProvider.setTimeout(() => {\n const { onUnhandledError } = config;\n if (onUnhandledError) {\n // Execute the user-configured error handler.\n onUnhandledError(err);\n } else {\n // Throw so it is picked up by the runtime's uncaught error mechanism.\n throw err;\n }\n });\n}\n", "/* tslint:disable:no-empty */\nexport function noop() { }\n", "import { CompleteNotification, NextNotification, ErrorNotification } from './types';\n\n/**\n * A completion object optimized for memory use and created to be the\n * same \"shape\" as other notifications in v8.\n * @internal\n */\nexport const COMPLETE_NOTIFICATION = (() => createNotification('C', undefined, undefined) as CompleteNotification)();\n\n/**\n * Internal use only. Creates an optimized error notification that is the same \"shape\"\n * as other notifications.\n * @internal\n */\nexport function errorNotification(error: any): ErrorNotification {\n return createNotification('E', undefined, error) as any;\n}\n\n/**\n * Internal use only. Creates an optimized next notification that is the same \"shape\"\n * as other notifications.\n * @internal\n */\nexport function nextNotification<T>(value: T) {\n return createNotification('N', value, undefined) as NextNotification<T>;\n}\n\n/**\n * Ensures that all notifications created internally have the same \"shape\" in v8.\n *\n * TODO: This is only exported to support a crazy legacy test in `groupBy`.\n * @internal\n */\nexport function createNotification(kind: 'N' | 'E' | 'C', value: any, error: any) {\n return {\n kind,\n value,\n error,\n };\n}\n", "import { config } from '../config';\n\nlet context: { errorThrown: boolean; error: any } | null = null;\n\n/**\n * Handles dealing with errors for super-gross mode. Creates a context, in which\n * any synchronously thrown errors will be passed to {@link captureError}. Which\n * will record the error such that it will be rethrown after the call back is complete.\n * TODO: Remove in v8\n * @param cb An immediately executed function.\n */\nexport function errorContext(cb: () => void) {\n if (config.useDeprecatedSynchronousErrorHandling) {\n const isRoot = !context;\n if (isRoot) {\n context = { errorThrown: false, error: null };\n }\n cb();\n if (isRoot) {\n const { errorThrown, error } = context!;\n context = null;\n if (errorThrown) {\n throw error;\n }\n }\n } else {\n // This is the general non-deprecated path for everyone that\n // isn't crazy enough to use super-gross mode (useDeprecatedSynchronousErrorHandling)\n cb();\n }\n}\n\n/**\n * Captures errors only in super-gross mode.\n * @param err the error to capture\n */\nexport function captureError(err: any) {\n if (config.useDeprecatedSynchronousErrorHandling && context) {\n context.errorThrown = true;\n context.error = err;\n }\n}\n", "import { isFunction } from './util/isFunction';\nimport { Observer, ObservableNotification } from './types';\nimport { isSubscription, Subscription } from './Subscription';\nimport { config } from './config';\nimport { reportUnhandledError } from './util/reportUnhandledError';\nimport { noop } from './util/noop';\nimport { nextNotification, errorNotification, COMPLETE_NOTIFICATION } from './NotificationFactories';\nimport { timeoutProvider } from './scheduler/timeoutProvider';\nimport { captureError } from './util/errorContext';\n\n/**\n * Implements the {@link Observer} interface and extends the\n * {@link Subscription} class. While the {@link Observer} is the public API for\n * consuming the values of an {@link Observable}, all Observers get converted to\n * a Subscriber, in order to provide Subscription-like capabilities such as\n * `unsubscribe`. Subscriber is a common type in RxJS, and crucial for\n * implementing operators, but it is rarely used as a public API.\n *\n * @class Subscriber<T>\n */\nexport class Subscriber<T> extends Subscription implements Observer<T> {\n /**\n * A static factory for a Subscriber, given a (potentially partial) definition\n * of an Observer.\n * @param next The `next` callback of an Observer.\n * @param error The `error` callback of an\n * Observer.\n * @param complete The `complete` callback of an\n * Observer.\n * @return A Subscriber wrapping the (partially defined)\n * Observer represented by the given arguments.\n * @nocollapse\n * @deprecated Do not use. Will be removed in v8. There is no replacement for this\n * method, and there is no reason to be creating instances of `Subscriber` directly.\n * If you have a specific use case, please file an issue.\n */\n static create<T>(next?: (x?: T) => void, error?: (e?: any) => void, complete?: () => void): Subscriber<T> {\n return new SafeSubscriber(next, error, complete);\n }\n\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n protected isStopped: boolean = false;\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n protected destination: Subscriber<any> | Observer<any>; // this `any` is the escape hatch to erase extra type param (e.g. R)\n\n /**\n * @deprecated Internal implementation detail, do not use directly. Will be made internal in v8.\n * There is no reason to directly create an instance of Subscriber. This type is exported for typings reasons.\n */\n constructor(destination?: Subscriber<any> | Observer<any>) {\n super();\n if (destination) {\n this.destination = destination;\n // Automatically chain subscriptions together here.\n // if destination is a Subscription, then it is a Subscriber.\n if (isSubscription(destination)) {\n destination.add(this);\n }\n } else {\n this.destination = EMPTY_OBSERVER;\n }\n }\n\n /**\n * The {@link Observer} callback to receive notifications of type `next` from\n * the Observable, with a value. The Observable may call this method 0 or more\n * times.\n * @param {T} [value] The `next` value.\n * @return {void}\n */\n next(value?: T): void {\n if (this.isStopped) {\n handleStoppedNotification(nextNotification(value), this);\n } else {\n this._next(value!);\n }\n }\n\n /**\n * The {@link Observer} callback to receive notifications of type `error` from\n * the Observable, with an attached `Error`. Notifies the Observer that\n * the Observable has experienced an error condition.\n * @param {any} [err] The `error` exception.\n * @return {void}\n */\n error(err?: any): void {\n if (this.isStopped) {\n handleStoppedNotification(errorNotification(err), this);\n } else {\n this.isStopped = true;\n this._error(err);\n }\n }\n\n /**\n * The {@link Observer} callback to receive a valueless notification of type\n * `complete` from the Observable. Notifies the Observer that the Observable\n * has finished sending push-based notifications.\n * @return {void}\n */\n complete(): void {\n if (this.isStopped) {\n handleStoppedNotification(COMPLETE_NOTIFICATION, this);\n } else {\n this.isStopped = true;\n this._complete();\n }\n }\n\n unsubscribe(): void {\n if (!this.closed) {\n this.isStopped = true;\n super.unsubscribe();\n this.destination = null!;\n }\n }\n\n protected _next(value: T): void {\n this.destination.next(value);\n }\n\n protected _error(err: any): void {\n try {\n this.destination.error(err);\n } finally {\n this.unsubscribe();\n }\n }\n\n protected _complete(): void {\n try {\n this.destination.complete();\n } finally {\n this.unsubscribe();\n }\n }\n}\n\n/**\n * This bind is captured here because we want to be able to have\n * compatibility with monoid libraries that tend to use a method named\n * `bind`. In particular, a library called Monio requires this.\n */\nconst _bind = Function.prototype.bind;\n\nfunction bind<Fn extends (...args: any[]) => any>(fn: Fn, thisArg: any): Fn {\n return _bind.call(fn, thisArg);\n}\n\n/**\n * Internal optimization only, DO NOT EXPOSE.\n * @internal\n */\nclass ConsumerObserver<T> implements Observer<T> {\n constructor(private partialObserver: Partial<Observer<T>>) {}\n\n next(value: T): void {\n const { partialObserver } = this;\n if (partialObserver.next) {\n try {\n partialObserver.next(value);\n } catch (error) {\n handleUnhandledError(error);\n }\n }\n }\n\n error(err: any): void {\n const { partialObserver } = this;\n if (partialObserver.error) {\n try {\n partialObserver.error(err);\n } catch (error) {\n handleUnhandledError(error);\n }\n } else {\n handleUnhandledError(err);\n }\n }\n\n complete(): void {\n const { partialObserver } = this;\n if (partialObserver.complete) {\n try {\n partialObserver.complete();\n } catch (error) {\n handleUnhandledError(error);\n }\n }\n }\n}\n\nexport class SafeSubscriber<T> extends Subscriber<T> {\n constructor(\n observerOrNext?: Partial<Observer<T>> | ((value: T) => void) | null,\n error?: ((e?: any) => void) | null,\n complete?: (() => void) | null\n ) {\n super();\n\n let partialObserver: Partial<Observer<T>>;\n if (isFunction(observerOrNext) || !observerOrNext) {\n // The first argument is a function, not an observer. The next\n // two arguments *could* be observers, or they could be empty.\n partialObserver = {\n next: (observerOrNext ?? undefined) as (((value: T) => void) | undefined),\n error: error ?? undefined,\n complete: complete ?? undefined,\n };\n } else {\n // The first argument is a partial observer.\n let context: any;\n if (this && config.useDeprecatedNextContext) {\n // This is a deprecated path that made `this.unsubscribe()` available in\n // next handler functions passed to subscribe. This only exists behind a flag\n // now, as it is *very* slow.\n context = Object.create(observerOrNext);\n context.unsubscribe = () => this.unsubscribe();\n partialObserver = {\n next: observerOrNext.next && bind(observerOrNext.next, context),\n error: observerOrNext.error && bind(observerOrNext.error, context),\n complete: observerOrNext.complete && bind(observerOrNext.complete, context),\n };\n } else {\n // The \"normal\" path. Just use the partial observer directly.\n partialObserver = observerOrNext;\n }\n }\n\n // Wrap the partial observer to ensure it's a full observer, and\n // make sure proper error handling is accounted for.\n this.destination = new ConsumerObserver(partialObserver);\n }\n}\n\nfunction handleUnhandledError(error: any) {\n if (config.useDeprecatedSynchronousErrorHandling) {\n captureError(error);\n } else {\n // Ideal path, we report this as an unhandled error,\n // which is thrown on a new call stack.\n reportUnhandledError(error);\n }\n}\n\n/**\n * An error handler used when no error handler was supplied\n * to the SafeSubscriber -- meaning no error handler was supplied\n * do the `subscribe` call on our observable.\n * @param err The error to handle\n */\nfunction defaultErrorHandler(err: any) {\n throw err;\n}\n\n/**\n * A handler for notifications that cannot be sent to a stopped subscriber.\n * @param notification The notification being sent\n * @param subscriber The stopped subscriber\n */\nfunction handleStoppedNotification(notification: ObservableNotification<any>, subscriber: Subscriber<any>) {\n const { onStoppedNotification } = config;\n onStoppedNotification && timeoutProvider.setTimeout(() => onStoppedNotification(notification, subscriber));\n}\n\n/**\n * The observer used as a stub for subscriptions where the user did not\n * pass any arguments to `subscribe`. Comes with the default error handling\n * behavior.\n */\nexport const EMPTY_OBSERVER: Readonly<Observer<any>> & { closed: true } = {\n closed: true,\n next: noop,\n error: defaultErrorHandler,\n complete: noop,\n};\n", "/**\n * Symbol.observable or a string \"@@observable\". Used for interop\n *\n * @deprecated We will no longer be exporting this symbol in upcoming versions of RxJS.\n * Instead polyfill and use Symbol.observable directly *or* use https://www.npmjs.com/package/symbol-observable\n */\nexport const observable: string | symbol = (() => (typeof Symbol === 'function' && Symbol.observable) || '@@observable')();\n", "/**\n * This function takes one parameter and just returns it. Simply put,\n * this is like `<T>(x: T): T => x`.\n *\n * ## Examples\n *\n * This is useful in some cases when using things like `mergeMap`\n *\n * ```ts\n * import { interval, take, map, range, mergeMap, identity } from 'rxjs';\n *\n * const source$ = interval(1000).pipe(take(5));\n *\n * const result$ = source$.pipe(\n * map(i => range(i)),\n * mergeMap(identity) // same as mergeMap(x => x)\n * );\n *\n * result$.subscribe({\n * next: console.log\n * });\n * ```\n *\n * Or when you want to selectively apply an operator\n *\n * ```ts\n * import { interval, take, identity } from 'rxjs';\n *\n * const shouldLimit = () => Math.random() < 0.5;\n *\n * const source$ = interval(1000);\n *\n * const result$ = source$.pipe(shouldLimit() ? take(5) : identity);\n *\n * result$.subscribe({\n * next: console.log\n * });\n * ```\n *\n * @param x Any value that is returned by this function\n * @returns The value passed as the first parameter to this function\n */\nexport function identity<T>(x: T): T {\n return x;\n}\n", "import { identity } from './identity';\nimport { UnaryFunction } from '../types';\n\nexport function pipe(): typeof identity;\nexport function pipe<T, A>(fn1: UnaryFunction<T, A>): UnaryFunction<T, A>;\nexport function pipe<T, A, B>(fn1: UnaryFunction<T, A>, fn2: UnaryFunction<A, B>): UnaryFunction<T, B>;\nexport function pipe<T, A, B, C>(fn1: UnaryFunction<T, A>, fn2: UnaryFunction<A, B>, fn3: UnaryFunction<B, C>): UnaryFunction<T, C>;\nexport function pipe<T, A, B, C, D>(\n fn1: UnaryFunction<T, A>,\n fn2: UnaryFunction<A, B>,\n fn3: UnaryFunction<B, C>,\n fn4: UnaryFunction<C, D>\n): UnaryFunction<T, D>;\nexport function pipe<T, A, B, C, D, E>(\n fn1: UnaryFunction<T, A>,\n fn2: UnaryFunction<A, B>,\n fn3: UnaryFunction<B, C>,\n fn4: UnaryFunction<C, D>,\n fn5: UnaryFunction<D, E>\n): UnaryFunction<T, E>;\nexport function pipe<T, A, B, C, D, E, F>(\n fn1: UnaryFunction<T, A>,\n fn2: UnaryFunction<A, B>,\n fn3: UnaryFunction<B, C>,\n fn4: UnaryFunction<C, D>,\n fn5: UnaryFunction<D, E>,\n fn6: UnaryFunction<E, F>\n): UnaryFunction<T, F>;\nexport function pipe<T, A, B, C, D, E, F, G>(\n fn1: UnaryFunction<T, A>,\n fn2: UnaryFunction<A, B>,\n fn3: UnaryFunction<B, C>,\n fn4: UnaryFunction<C, D>,\n fn5: UnaryFunction<D, E>,\n fn6: UnaryFunction<E, F>,\n fn7: UnaryFunction<F, G>\n): UnaryFunction<T, G>;\nexport function pipe<T, A, B, C, D, E, F, G, H>(\n fn1: UnaryFunction<T, A>,\n fn2: UnaryFunction<A, B>,\n fn3: UnaryFunction<B, C>,\n fn4: UnaryFunction<C, D>,\n fn5: UnaryFunction<D, E>,\n fn6: UnaryFunction<E, F>,\n fn7: UnaryFunction<F, G>,\n fn8: UnaryFunction<G, H>\n): UnaryFunction<T, H>;\nexport function pipe<T, A, B, C, D, E, F, G, H, I>(\n fn1: UnaryFunction<T, A>,\n fn2: UnaryFunction<A, B>,\n fn3: UnaryFunction<B, C>,\n fn4: UnaryFunction<C, D>,\n fn5: UnaryFunction<D, E>,\n fn6: UnaryFunction<E, F>,\n fn7: UnaryFunction<F, G>,\n fn8: UnaryFunction<G, H>,\n fn9: UnaryFunction<H, I>\n): UnaryFunction<T, I>;\nexport function pipe<T, A, B, C, D, E, F, G, H, I>(\n fn1: UnaryFunction<T, A>,\n fn2: UnaryFunction<A, B>,\n fn3: UnaryFunction<B, C>,\n fn4: UnaryFunction<C, D>,\n fn5: UnaryFunction<D, E>,\n fn6: UnaryFunction<E, F>,\n fn7: UnaryFunction<F, G>,\n fn8: UnaryFunction<G, H>,\n fn9: UnaryFunction<H, I>,\n ...fns: UnaryFunction<any, any>[]\n): UnaryFunction<T, unknown>;\n\n/**\n * pipe() can be called on one or more functions, each of which can take one argument (\"UnaryFunction\")\n * and uses it to return a value.\n * It returns a function that takes one argument, passes it to the first UnaryFunction, and then\n * passes the result to the next one, passes that result to the next one, and so on. \n */\nexport function pipe(...fns: Array<UnaryFunction<any, any>>): UnaryFunction<any, any> {\n return pipeFromArray(fns);\n}\n\n/** @internal */\nexport function pipeFromArray<T, R>(fns: Array<UnaryFunction<T, R>>): UnaryFunction<T, R> {\n if (fns.length === 0) {\n return identity as UnaryFunction<any, any>;\n }\n\n if (fns.length === 1) {\n return fns[0];\n }\n\n return function piped(input: T): R {\n return fns.reduce((prev: any, fn: UnaryFunction<T, R>) => fn(prev), input as any);\n };\n}\n", "import { Operator } from './Operator';\nimport { SafeSubscriber, Subscriber } from './Subscriber';\nimport { isSubscription, Subscription } from './Subscription';\nimport { TeardownLogic, OperatorFunction, Subscribable, Observer } from './types';\nimport { observable as Symbol_observable } from './symbol/observable';\nimport { pipeFromArray } from './util/pipe';\nimport { config } from './config';\nimport { isFunction } from './util/isFunction';\nimport { errorContext } from './util/errorContext';\n\n/**\n * A representation of any set of values over any amount of time. This is the most basic building block\n * of RxJS.\n *\n * @class Observable<T>\n */\nexport class Observable<T> implements Subscribable<T> {\n /**\n * @deprecated Internal implementation detail, do not use directly. Will be made internal in v8.\n */\n source: Observable<any> | undefined;\n\n /**\n * @deprecated Internal implementation detail, do not use directly. Will be made internal in v8.\n */\n operator: Operator<any, T> | undefined;\n\n /**\n * @constructor\n * @param {Function} subscribe the function that is called when the Observable is\n * initially subscribed to. This function is given a Subscriber, to which new values\n * can be `next`ed, or an `error` method can be called to raise an error, or\n * `complete` can be called to notify of a successful completion.\n */\n constructor(subscribe?: (this: Observable<T>, subscriber: Subscriber<T>) => TeardownLogic) {\n if (subscribe) {\n this._subscribe = subscribe;\n }\n }\n\n // HACK: Since TypeScript inherits static properties too, we have to\n // fight against TypeScript here so Subject can have a different static create signature\n /**\n * Creates a new Observable by calling the Observable constructor\n * @owner Observable\n * @method create\n * @param {Function} subscribe? the subscriber function to be passed to the Observable constructor\n * @return {Observable} a new observable\n * @nocollapse\n * @deprecated Use `new Observable()` instead. Will be removed in v8.\n */\n static create: (...args: any[]) => any = <T>(subscribe?: (subscriber: Subscriber<T>) => TeardownLogic) => {\n return new Observable<T>(subscribe);\n };\n\n /**\n * Creates a new Observable, with this Observable instance as the source, and the passed\n * operator defined as the new observable's operator.\n * @method lift\n * @param operator the operator defining the operation to take on the observable\n * @return a new observable with the Operator applied\n * @deprecated Internal implementation detail, do not use directly. Will be made internal in v8.\n * If you have implemented an operator using `lift`, it is recommended that you create an\n * operator by simply returning `new Observable()` directly. See \"Creating new operators from\n * scratch\" section here: https://rxjs.dev/guide/operators\n */\n lift<R>(operator?: Operator<T, R>): Observable<R> {\n const observable = new Observable<R>();\n observable.source = this;\n observable.operator = operator;\n return observable;\n }\n\n subscribe(observerOrNext?: Partial<Observer<T>> | ((value: T) => void)): Subscription;\n /** @deprecated Instead of passing separate callback arguments, use an observer argument. Signatures taking separate callback arguments will be removed in v8. Details: https://rxjs.dev/deprecations/subscribe-arguments */\n subscribe(next?: ((value: T) => void) | null, error?: ((error: any) => void) | null, complete?: (() => void) | null): Subscription;\n /**\n * Invokes an execution of an Observable and registers Observer handlers for notifications it will emit.\n *\n * <span class=\"informal\">Use it when you have all these Observables, but still nothing is happening.</span>\n *\n * `subscribe` is not a regular operator, but a method that calls Observable's internal `subscribe` function. It\n * might be for example a function that you passed to Observable's constructor, but most of the time it is\n * a library implementation, which defines what will be emitted by an Observable, and when it be will emitted. This means\n * that calling `subscribe` is actually the moment when Observable starts its work, not when it is created, as it is often\n * the thought.\n *\n * Apart from starting the execution of an Observable, this method allows you to listen for values\n * that an Observable emits, as well as for when it completes or errors. You can achieve this in two\n * of the following ways.\n *\n * The first way is creating an object that implements {@link Observer} interface. It should have methods\n * defined by that interface, but note that it should be just a regular JavaScript object, which you can create\n * yourself in any way you want (ES6 class, classic function constructor, object literal etc.). In particular, do\n * not attempt to use any RxJS implementation details to create Observers - you don't need them. Remember also\n * that your object does not have to implement all methods. If you find yourself creating a method that doesn't\n * do anything, you can simply omit it. Note however, if the `error` method is not provided and an error happens,\n * it will be thrown asynchronously. Errors thrown asynchronously cannot be caught using `try`/`catch`. Instead,\n * use the {@link onUnhandledError} configuration option or use a runtime handler (like `window.onerror` or\n * `process.on('error)`) to be notified of unhandled errors. Because of this, it's recommended that you provide\n * an `error` method to avoid missing thrown errors.\n *\n * The second way is to give up on Observer object altogether and simply provide callback functions in place of its methods.\n * This means you can provide three functions as arguments to `subscribe`, where the first function is equivalent\n * of a `next` method, the second of an `error` method and the third of a `complete` method. Just as in case of an Observer,\n * if you do not need to listen for something, you can omit a function by passing `undefined` or `null`,\n * since `subscribe` recognizes these functions by where they were placed in function call. When it comes\n * to the `error` function, as with an Observer, if not provided, errors emitted by an Observable will be thrown asynchronously.\n *\n * You can, however, subscribe with no parameters at all. This may be the case where you're not interested in terminal events\n * and you also handled emissions internally by using operators (e.g. using `tap`).\n *\n * Whichever style of calling `subscribe` you use, in both cases it returns a Subscription object.\n * This object allows you to call `unsubscribe` on it, which in turn will stop the work that an Observable does and will clean\n * up all resources that an Observable used. Note that cancelling a subscription will not call `complete` callback\n * provided to `subscribe` function, which is reserved for a regular completion signal that comes from an Observable.\n *\n * Remember that callbacks provided to `subscribe` are not guaranteed to be called asynchronously.\n * It is an Observable itself that decides when these functions will be called. For example {@link of}\n * by default emits all its values synchronously. Always check documentation for how given Observable\n * will behave when subscribed and if its default behavior can be modified with a `scheduler`.\n *\n * #### Examples\n *\n * Subscribe with an {@link guide/observer Observer}\n *\n * ```ts\n * import { of } from 'rxjs';\n *\n * const sumObserver = {\n * sum: 0,\n * next(value) {\n * console.log('Adding: ' + value);\n * this.sum = this.sum + value;\n * },\n * error() {\n * // We actually could just remove this method,\n * // since we do not really care about errors right now.\n * },\n * complete() {\n * console.log('Sum equals: ' + this.sum);\n * }\n * };\n *\n * of(1, 2, 3) // Synchronously emits 1, 2, 3 and then completes.\n * .subscribe(sumObserver);\n *\n * // Logs:\n * // 'Adding: 1'\n * // 'Adding: 2'\n * // 'Adding: 3'\n * // 'Sum equals: 6'\n * ```\n *\n * Subscribe with functions ({@link deprecations/subscribe-arguments deprecated})\n *\n * ```ts\n * import { of } from 'rxjs'\n *\n * let sum = 0;\n *\n * of(1, 2, 3).subscribe(\n * value => {\n * console.log('Adding: ' + value);\n * sum = sum + value;\n * },\n * undefined,\n * () => console.log('Sum equals: ' + sum)\n * );\n *\n * // Logs:\n * // 'Adding: 1'\n * // 'Adding: 2'\n * // 'Adding: 3'\n * // 'Sum equals: 6'\n * ```\n *\n * Cancel a subscription\n *\n * ```ts\n * import { interval } from 'rxjs';\n *\n * const subscription = interval(1000).subscribe({\n * next(num) {\n * console.log(num)\n * },\n * complete() {\n * // Will not be called, even when cancelling subscription.\n * console.log('completed!');\n * }\n * });\n *\n * setTimeout(() => {\n * subscription.unsubscribe();\n * console.log('unsubscribed!');\n * }, 2500);\n *\n * // Logs:\n * // 0 after 1s\n * // 1 after 2s\n * // 'unsubscribed!' after 2.5s\n * ```\n *\n * @param {Observer|Function} observerOrNext (optional) Either an observer with methods to be called,\n * or the first of three possible handlers, which is the handler for each value emitted from the subscribed\n * Observable.\n * @param {Function} error (optional) A handler for a terminal event resulting from an error. If no error handler is provided,\n * the error will be thrown asynchronously as unhandled.\n * @param {Function} complete (optional) A handler for a terminal event resulting from successful completion.\n * @return {Subscription} a subscription reference to the registered handlers\n * @method subscribe\n */\n subscribe(\n observerOrNext?: Partial<Observer<T>> | ((value: T) => void) | null,\n error?: ((error: any) => void) | null,\n complete?: (() => void) | null\n ): Subscription {\n const subscriber = isSubscriber(observerOrNext) ? observerOrNext : new SafeSubscriber(observerOrNext, error, complete);\n\n errorContext(() => {\n const { operator, source } = this;\n subscriber.add(\n operator\n ? // We're dealing with a subscription in the\n // operator chain to one of our lifted operators.\n operator.call(subscriber, source)\n : source\n ? // If `source` has a value, but `operator` does not, something that\n // had intimate knowledge of our API, like our `Subject`, must have\n // set it. We're going to just call `_subscribe` directly.\n this._subscribe(subscriber)\n : // In all other cases, we're likely wrapping a user-provided initializer\n // function, so we need to catch errors and handle them appropriately.\n this._trySubscribe(subscriber)\n );\n });\n\n return subscriber;\n }\n\n /** @internal */\n protected _trySubscribe(sink: Subscriber<T>): TeardownLogic {\n try {\n return this._subscribe(sink);\n } catch (err) {\n // We don't need to return anything in this case,\n // because it's just going to try to `add()` to a subscription\n // above.\n sink.error(err);\n }\n }\n\n /**\n * Used as a NON-CANCELLABLE means of subscribing to an observable, for use with\n * APIs that expect promises, like `async/await`. You cannot unsubscribe from this.\n *\n * **WARNING**: Only use this with observables you *know* will complete. If the source\n * observable does not complete, you will end up with a promise that is hung up, and\n * potentially all of the state of an async function hanging out in memory. To avoid\n * this situation, look into adding something like {@link timeout}, {@link take},\n * {@link takeWhile}, or {@link takeUntil} amongst others.\n *\n * #### Example\n *\n * ```ts\n * import { interval, take } from 'rxjs';\n *\n * const source$ = interval(1000).pipe(take(4));\n *\n * async function getTotal() {\n * let total = 0;\n *\n * await source$.forEach(value => {\n * total += value;\n * console.log('observable -> ' + value);\n * });\n *\n * return total;\n * }\n *\n * getTotal().then(\n * total => console.log('Total: ' + total)\n * );\n *\n * // Expected:\n * // 'observable -> 0'\n * // 'observable -> 1'\n * // 'observable -> 2'\n * // 'observable -> 3'\n * // 'Total: 6'\n * ```\n *\n * @param next a handler for each value emitted by the observable\n * @return a promise that either resolves on observable completion or\n * rejects with the handled error\n */\n forEach(next: (value: T) => void): Promise<void>;\n\n /**\n * @param next a handler for each value emitted by the observable\n * @param promiseCtor a constructor function used to instantiate the Promise\n * @return a promise that either resolves on observable completion or\n * rejects with the handled error\n * @deprecated Passing a Promise constructor will no longer be available\n * in upcoming versions of RxJS. This is because it adds weight to the library, for very\n * little benefit. If you need this functionality, it is recommended that you either\n * polyfill Promise, or you create an adapter to convert the returned native promise\n * to whatever promise implementation you wanted. Will be removed in v8.\n */\n forEach(next: (value: T) => void, promiseCtor: PromiseConstructorLike): Promise<void>;\n\n forEach(next: (value: T) => void, promiseCtor?: PromiseConstructorLike): Promise<void> {\n promiseCtor = getPromiseCtor(promiseCtor);\n\n return new promiseCtor<void>((resolve, reject) => {\n const subscriber = new SafeSubscriber<T>({\n next: (value) => {\n try {\n next(value);\n } catch (err) {\n reject(err);\n subscriber.unsubscribe();\n }\n },\n error: reject,\n complete: resolve,\n });\n this.subscribe(subscriber);\n }) as Promise<void>;\n }\n\n /** @internal */\n protected _subscribe(subscriber: Subscriber<any>): TeardownLogic {\n return this.source?.subscribe(subscriber);\n }\n\n /**\n * An interop point defined by the es7-observable spec https://github.com/zenparsing/es-observable\n * @method Symbol.observable\n * @return {Observable} this instance of the observable\n */\n [Symbol_observable]() {\n return this;\n }\n\n /* tslint:disable:max-line-length */\n pipe(): Observable<T>;\n pipe<A>(op1: OperatorFunction<T, A>): Observable<A>;\n pipe<A, B>(op1: OperatorFunction<T, A>, op2: OperatorFunction<A, B>): Observable<B>;\n pipe<A, B, C>(op1: OperatorFunction<T, A>, op2: OperatorFunction<A, B>, op3: OperatorFunction<B, C>): Observable<C>;\n pipe<A, B, C, D>(\n op1: OperatorFunction<T, A>,\n op2: OperatorFunction<A, B>,\n op3: OperatorFunction<B, C>,\n op4: OperatorFunction<C, D>\n ): Observable<D>;\n pipe<A, B, C, D, E>(\n op1: OperatorFunction<T, A>,\n op2: OperatorFunction<A, B>,\n op3: OperatorFunction<B, C>,\n op4: OperatorFunction<C, D>,\n op5: OperatorFunction<D, E>\n ): Observable<E>;\n pipe<A, B, C, D, E, F>(\n op1: OperatorFunction<T, A>,\n op2: OperatorFunction<A, B>,\n op3: OperatorFunction<B, C>,\n op4: OperatorFunction<C, D>,\n op5: OperatorFunction<D, E>,\n op6: OperatorFunction<E, F>\n ): Observable<F>;\n pipe<A, B, C, D, E, F, G>(\n op1: OperatorFunction<T, A>,\n op2: OperatorFunction<A, B>,\n op3: OperatorFunction<B, C>,\n op4: OperatorFunction<C, D>,\n op5: OperatorFunction<D, E>,\n op6: OperatorFunction<E, F>,\n op7: OperatorFunction<F, G>\n ): Observable<G>;\n pipe<A, B, C, D, E, F, G, H>(\n op1: OperatorFunction<T, A>,\n op2: OperatorFunction<A, B>,\n op3: OperatorFunction<B, C>,\n op4: OperatorFunction<C, D>,\n op5: OperatorFunction<D, E>,\n op6: OperatorFunction<E, F>,\n op7: OperatorFunction<F, G>,\n op8: OperatorFunction<G, H>\n ): Observable<H>;\n pipe<A, B, C, D, E, F, G, H, I>(\n op1: OperatorFunction<T, A>,\n op2: OperatorFunction<A, B>,\n op3: OperatorFunction<B, C>,\n op4: OperatorFunction<C, D>,\n op5: OperatorFunction<D, E>,\n op6: OperatorFunction<E, F>,\n op7: OperatorFunction<F, G>,\n op8: OperatorFunction<G, H>,\n op9: OperatorFunction<H, I>\n ): Observable<I>;\n pipe<A, B, C, D, E, F, G, H, I>(\n op1: OperatorFunction<T, A>,\n op2: OperatorFunction<A, B>,\n op3: OperatorFunction<B, C>,\n op4: OperatorFunction<C, D>,\n op5: OperatorFunction<D, E>,\n op6: OperatorFunction<E, F>,\n op7: OperatorFunction<F, G>,\n op8: OperatorFunction<G, H>,\n op9: OperatorFunction<H, I>,\n ...operations: OperatorFunction<any, any>[]\n ): Observable<unknown>;\n /* tslint:enable:max-line-length */\n\n /**\n * Used to stitch together functional operators into a chain.\n * @method pipe\n * @return {Observable} the Observable result of all of the operators having\n * been called in the order they were passed in.\n *\n * ## Example\n *\n * ```ts\n * import { interval, filter, map, scan } from 'rxjs';\n *\n * interval(1000)\n * .pipe(\n * filter(x => x % 2 === 0),\n * map(x => x + x),\n * scan((acc, x) => acc + x)\n * )\n * .subscribe(x => console.log(x));\n * ```\n */\n pipe(...operations: OperatorFunction<any, any>[]): Observable<any> {\n return pipeFromArray(operations)(this);\n }\n\n /* tslint:disable:max-line-length */\n /** @deprecated Replaced with {@link firstValueFrom} and {@link lastValueFrom}. Will be removed in v8. Details: https://rxjs.dev/deprecations/to-promise */\n toPromise(): Promise<T | undefined>;\n /** @deprecated Replaced with {@link firstValueFrom} and {@link lastValueFrom}. Will be removed in v8. Details: https://rxjs.dev/deprecations/to-promise */\n toPromise(PromiseCtor: typeof Promise): Promise<T | undefined>;\n /** @deprecated Replaced with {@link firstValueFrom} and {@link lastValueFrom}. Will be removed in v8. Details: https://rxjs.dev/deprecations/to-promise */\n toPromise(PromiseCtor: PromiseConstructorLike): Promise<T | undefined>;\n /* tslint:enable:max-line-length */\n\n /**\n * Subscribe to this Observable and get a Promise resolving on\n * `complete` with the last emission (if any).\n *\n * **WARNING**: Only use this with observables you *know* will complete. If the source\n * observable does not complete, you will end up with a promise that is hung up, and\n * potentially all of the state of an async function hanging out in memory. To avoid\n * this situation, look into adding something like {@link timeout}, {@link take},\n * {@link takeWhile}, or {@link takeUntil} amongst others.\n *\n * @method toPromise\n * @param [promiseCtor] a constructor function used to instantiate\n * the Promise\n * @return A Promise that resolves with the last value emit, or\n * rejects on an error. If there were no emissions, Promise\n * resolves with undefined.\n * @deprecated Replaced with {@link firstValueFrom} and {@link lastValueFrom}. Will be removed in v8. Details: https://rxjs.dev/deprecations/to-promise\n */\n toPromise(promiseCtor?: PromiseConstructorLike): Promise<T | undefined> {\n promiseCtor = getPromiseCtor(promiseCtor);\n\n return new promiseCtor((resolve, reject) => {\n let value: T | undefined;\n this.subscribe(\n (x: T) => (value = x),\n (err: any) => reject(err),\n () => resolve(value)\n );\n }) as Promise<T | undefined>;\n }\n}\n\n/**\n * Decides between a passed promise constructor from consuming code,\n * A default configured promise constructor, and the native promise\n * constructor and returns it. If nothing can be found, it will throw\n * an error.\n * @param promiseCtor The optional promise constructor to passed by consuming code\n */\nfunction getPromiseCtor(promiseCtor: PromiseConstructorLike | undefined) {\n return promiseCtor ?? config.Promise ?? Promise;\n}\n\nfunction isObserver<T>(value: any): value is Observer<T> {\n return value && isFunction(value.next) && isFunction(value.error) && isFunction(value.complete);\n}\n\nfunction isSubscriber<T>(value: any): value is Subscriber<T> {\n return (value && value instanceof Subscriber) || (isObserver(value) && isSubscription(value));\n}\n", "import { Observable } from '../Observable';\nimport { Subscriber } from '../Subscriber';\nimport { OperatorFunction } from '../types';\nimport { isFunction } from './isFunction';\n\n/**\n * Used to determine if an object is an Observable with a lift function.\n */\nexport function hasLift(source: any): source is { lift: InstanceType<typeof Observable>['lift'] } {\n return isFunction(source?.lift);\n}\n\n/**\n * Creates an `OperatorFunction`. Used to define operators throughout the library in a concise way.\n * @param init The logic to connect the liftedSource to the subscriber at the moment of subscription.\n */\nexport function operate<T, R>(\n init: (liftedSource: Observable<T>, subscriber: Subscriber<R>) => (() => void) | void\n): OperatorFunction<T, R> {\n return (source: Observable<T>) => {\n if (hasLift(source)) {\n return source.lift(function (this: Subscriber<R>, liftedSource: Observable<T>) {\n try {\n return init(liftedSource, this);\n } catch (err) {\n this.error(err);\n }\n });\n }\n throw new TypeError('Unable to lift unknown Observable type');\n };\n}\n", "import { Subscriber } from '../Subscriber';\n\n/**\n * Creates an instance of an `OperatorSubscriber`.\n * @param destination The downstream subscriber.\n * @param onNext Handles next values, only called if this subscriber is not stopped or closed. Any\n * error that occurs in this function is caught and sent to the `error` method of this subscriber.\n * @param onError Handles errors from the subscription, any errors that occur in this handler are caught\n * and send to the `destination` error handler.\n * @param onComplete Handles completion notification from the subscription. Any errors that occur in\n * this handler are sent to the `destination` error handler.\n * @param onFinalize Additional teardown logic here. This will only be called on teardown if the\n * subscriber itself is not already closed. This is called after all other teardown logic is executed.\n */\nexport function createOperatorSubscriber<T>(\n destination: Subscriber<any>,\n onNext?: (value: T) => void,\n onComplete?: () => void,\n onError?: (err: any) => void,\n onFinalize?: () => void\n): Subscriber<T> {\n return new OperatorSubscriber(destination, onNext, onComplete, onError, onFinalize);\n}\n\n/**\n * A generic helper for allowing operators to be created with a Subscriber and\n * use closures to capture necessary state from the operator function itself.\n */\nexport class OperatorSubscriber<T> extends Subscriber<T> {\n /**\n * Creates an instance of an `OperatorSubscriber`.\n * @param destination The downstream subscriber.\n * @param onNext Handles next values, only called if this subscriber is not stopped or closed. Any\n * error that occurs in this function is caught and sent to the `error` method of this subscriber.\n * @param onError Handles errors from the subscription, any errors that occur in this handler are caught\n * and send to the `destination` error handler.\n * @param onComplete Handles completion notification from the subscription. Any errors that occur in\n * this handler are sent to the `destination` error handler.\n * @param onFinalize Additional finalization logic here. This will only be called on finalization if the\n * subscriber itself is not already closed. This is called after all other finalization logic is executed.\n * @param shouldUnsubscribe An optional check to see if an unsubscribe call should truly unsubscribe.\n * NOTE: This currently **ONLY** exists to support the strange behavior of {@link groupBy}, where unsubscription\n * to the resulting observable does not actually disconnect from the source if there are active subscriptions\n * to any grouped observable. (DO NOT EXPOSE OR USE EXTERNALLY!!!)\n */\n constructor(\n destination: Subscriber<any>,\n onNext?: (value: T) => void,\n onComplete?: () => void,\n onError?: (err: any) => void,\n private onFinalize?: () => void,\n private shouldUnsubscribe?: () => boolean\n ) {\n // It's important - for performance reasons - that all of this class's\n // members are initialized and that they are always initialized in the same\n // order. This will ensure that all OperatorSubscriber instances have the\n // same hidden class in V8. This, in turn, will help keep the number of\n // hidden classes involved in property accesses within the base class as\n // low as possible. If the number of hidden classes involved exceeds four,\n // the property accesses will become megamorphic and performance penalties\n // will be incurred - i.e. inline caches won't be used.\n //\n // The reasons for ensuring all instances have the same hidden class are\n // further discussed in this blog post from Benedikt Meurer:\n // https://benediktmeurer.de/2018/03/23/impact-of-polymorphism-on-component-based-frameworks-like-react/\n super(destination);\n this._next = onNext\n ? function (this: OperatorSubscriber<T>, value: T) {\n try {\n onNext(value);\n } catch (err) {\n destination.error(err);\n }\n }\n : super._next;\n this._error = onError\n ? function (this: OperatorSubscriber<T>, err: any) {\n try {\n onError(err);\n } catch (err) {\n // Send any errors that occur down stream.\n destination.error(err);\n } finally {\n // Ensure finalization.\n this.unsubscribe();\n }\n }\n : super._error;\n this._complete = onComplete\n ? function (this: OperatorSubscriber<T>) {\n try {\n onComplete();\n } catch (err) {\n // Send any errors that occur down stream.\n destination.error(err);\n } finally {\n // Ensure finalization.\n this.unsubscribe();\n }\n }\n : super._complete;\n }\n\n unsubscribe() {\n if (!this.shouldUnsubscribe || this.shouldUnsubscribe()) {\n const { closed } = this;\n super.unsubscribe();\n // Execute additional teardown if we have any and we didn't already do so.\n !closed && this.onFinalize?.();\n }\n }\n}\n", "import { Subscription } from '../Subscription';\n\ninterface AnimationFrameProvider {\n schedule(callback: FrameRequestCallback): Subscription;\n requestAnimationFrame: typeof requestAnimationFrame;\n cancelAnimationFrame: typeof cancelAnimationFrame;\n delegate:\n | {\n requestAnimationFrame: typeof requestAnimationFrame;\n cancelAnimationFrame: typeof cancelAnimationFrame;\n }\n | undefined;\n}\n\nexport const animationFrameProvider: AnimationFrameProvider = {\n // When accessing the delegate, use the variable rather than `this` so that\n // the functions can be called without being bound to the provider.\n schedule(callback) {\n let request = requestAnimationFrame;\n let cancel: typeof cancelAnimationFrame | undefined = cancelAnimationFrame;\n const { delegate } = animationFrameProvider;\n if (delegate) {\n request = delegate.requestAnimationFrame;\n cancel = delegate.cancelAnimationFrame;\n }\n const handle = request((timestamp) => {\n // Clear the cancel function. The request has been fulfilled, so\n // attempting to cancel the request upon unsubscription would be\n // pointless.\n cancel = undefined;\n callback(timestamp);\n });\n return new Subscription(() => cancel?.(handle));\n },\n requestAnimationFrame(...args) {\n const { delegate } = animationFrameProvider;\n return (delegate?.requestAnimationFrame || requestAnimationFrame)(...args);\n },\n cancelAnimationFrame(...args) {\n const { delegate } = animationFrameProvider;\n return (delegate?.cancelAnimationFrame || cancelAnimationFrame)(...args);\n },\n delegate: undefined,\n};\n", "import { createErrorClass } from './createErrorClass';\n\nexport interface ObjectUnsubscribedError extends Error {}\n\nexport interface ObjectUnsubscribedErrorCtor {\n /**\n * @deprecated Internal implementation detail. Do not construct error instances.\n * Cannot be tagged as internal: https://github.com/ReactiveX/rxjs/issues/6269\n */\n new (): ObjectUnsubscribedError;\n}\n\n/**\n * An error thrown when an action is invalid because the object has been\n * unsubscribed.\n *\n * @see {@link Subject}\n * @see {@link BehaviorSubject}\n *\n * @class ObjectUnsubscribedError\n */\nexport const ObjectUnsubscribedError: ObjectUnsubscribedErrorCtor = createErrorClass(\n (_super) =>\n function ObjectUnsubscribedErrorImpl(this: any) {\n _super(this);\n this.name = 'ObjectUnsubscribedError';\n this.message = 'object unsubscribed';\n }\n);\n", "import { Operator } from './Operator';\nimport { Observable } from './Observable';\nimport { Subscriber } from './Subscriber';\nimport { Subscription, EMPTY_SUBSCRIPTION } from './Subscription';\nimport { Observer, SubscriptionLike, TeardownLogic } from './types';\nimport { ObjectUnsubscribedError } from './util/ObjectUnsubscribedError';\nimport { arrRemove } from './util/arrRemove';\nimport { errorContext } from './util/errorContext';\n\n/**\n * A Subject is a special type of Observable that allows values to be\n * multicasted to many Observers. Subjects are like EventEmitters.\n *\n * Every Subject is an Observable and an Observer. You can subscribe to a\n * Subject, and you can call next to feed values as well as error and complete.\n */\nexport class Subject<T> extends Observable<T> implements SubscriptionLike {\n closed = false;\n\n private currentObservers: Observer<T>[] | null = null;\n\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n observers: Observer<T>[] = [];\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n isStopped = false;\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n hasError = false;\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n thrownError: any = null;\n\n /**\n * Creates a \"subject\" by basically gluing an observer to an observable.\n *\n * @nocollapse\n * @deprecated Recommended you do not use. Will be removed at some point in the future. Plans for replacement still under discussion.\n */\n static create: (...args: any[]) => any = <T>(destination: Observer<T>, source: Observable<T>): AnonymousSubject<T> => {\n return new AnonymousSubject<T>(destination, source);\n };\n\n constructor() {\n // NOTE: This must be here to obscure Observable's constructor.\n super();\n }\n\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n lift<R>(operator: Operator<T, R>): Observable<R> {\n const subject = new AnonymousSubject(this, this);\n subject.operator = operator as any;\n return subject as any;\n }\n\n /** @internal */\n protected _throwIfClosed() {\n if (this.closed) {\n throw new ObjectUnsubscribedError();\n }\n }\n\n next(value: T) {\n errorContext(() => {\n this._throwIfClosed();\n if (!this.isStopped) {\n if (!this.currentObservers) {\n this.currentObservers = Array.from(this.observers);\n }\n for (const observer of this.currentObservers) {\n observer.next(value);\n }\n }\n });\n }\n\n error(err: any) {\n errorContext(() => {\n this._throwIfClosed();\n if (!this.isStopped) {\n this.hasError = this.isStopped = true;\n this.thrownError = err;\n const { observers } = this;\n while (observers.length) {\n observers.shift()!.error(err);\n }\n }\n });\n }\n\n complete() {\n errorContext(() => {\n this._throwIfClosed();\n if (!this.isStopped) {\n this.isStopped = true;\n const { observers } = this;\n while (observers.length) {\n observers.shift()!.complete();\n }\n }\n });\n }\n\n unsubscribe() {\n this.isStopped = this.closed = true;\n this.observers = this.currentObservers = null!;\n }\n\n get observed() {\n return this.observers?.length > 0;\n }\n\n /** @internal */\n protected _trySubscribe(subscriber: Subscriber<T>): TeardownLogic {\n this._throwIfClosed();\n return super._trySubscribe(subscriber);\n }\n\n /** @internal */\n protected _subscribe(subscriber: Subscriber<T>): Subscription {\n this._throwIfClosed();\n this._checkFinalizedStatuses(subscriber);\n return this._innerSubscribe(subscriber);\n }\n\n /** @internal */\n protected _innerSubscribe(subscriber: Subscriber<any>) {\n const { hasError, isStopped, observers } = this;\n if (hasError || isStopped) {\n return EMPTY_SUBSCRIPTION;\n }\n this.currentObservers = null;\n observers.push(subscriber);\n return new Subscription(() => {\n this.currentObservers = null;\n arrRemove(observers, subscriber);\n });\n }\n\n /** @internal */\n protected _checkFinalizedStatuses(subscriber: Subscriber<any>) {\n const { hasError, thrownError, isStopped } = this;\n if (hasError) {\n subscriber.error(thrownError);\n } else if (isStopped) {\n subscriber.complete();\n }\n }\n\n /**\n * Creates a new Observable with this Subject as the source. You can do this\n * to create custom Observer-side logic of the Subject and conceal it from\n * code that uses the Observable.\n * @return {Observable} Observable that the Subject casts to\n */\n asObservable(): Observable<T> {\n const observable: any = new Observable<T>();\n observable.source = this;\n return observable;\n }\n}\n\n/**\n * @class AnonymousSubject<T>\n */\nexport class AnonymousSubject<T> extends Subject<T> {\n constructor(\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n public destination?: Observer<T>,\n source?: Observable<T>\n ) {\n super();\n this.source = source;\n }\n\n next(value: T) {\n this.destination?.next?.(value);\n }\n\n error(err: any) {\n this.destination?.error?.(err);\n }\n\n complete() {\n this.destination?.complete?.();\n }\n\n /** @internal */\n protected _subscribe(subscriber: Subscriber<T>): Subscription {\n return this.source?.subscribe(subscriber) ?? EMPTY_SUBSCRIPTION;\n }\n}\n", "import { Subject } from './Subject';\nimport { Subscriber } from './Subscriber';\nimport { Subscription } from './Subscription';\n\n/**\n * A variant of Subject that requires an initial value and emits its current\n * value whenever it is subscribed to.\n *\n * @class BehaviorSubject<T>\n */\nexport class BehaviorSubject<T> extends Subject<T> {\n constructor(private _value: T) {\n super();\n }\n\n get value(): T {\n return this.getValue();\n }\n\n /** @internal */\n protected _subscribe(subscriber: Subscriber<T>): Subscription {\n const subscription = super._subscribe(subscriber);\n !subscription.closed && subscriber.next(this._value);\n return subscription;\n }\n\n getValue(): T {\n const { hasError, thrownError, _value } = this;\n if (hasError) {\n throw thrownError;\n }\n this._throwIfClosed();\n return _value;\n }\n\n next(value: T): void {\n super.next((this._value = value));\n }\n}\n", "import { TimestampProvider } from '../types';\n\ninterface DateTimestampProvider extends TimestampProvider {\n delegate: TimestampProvider | undefined;\n}\n\nexport const dateTimestampProvider: DateTimestampProvider = {\n now() {\n // Use the variable rather than `this` so that the function can be called\n // without being bound to the provider.\n return (dateTimestampProvider.delegate || Date).now();\n },\n delegate: undefined,\n};\n", "import { Subject } from './Subject';\nimport { TimestampProvider } from './types';\nimport { Subscriber } from './Subscriber';\nimport { Subscription } from './Subscription';\nimport { dateTimestampProvider } from './scheduler/dateTimestampProvider';\n\n/**\n * A variant of {@link Subject} that \"replays\" old values to new subscribers by emitting them when they first subscribe.\n *\n * `ReplaySubject` has an internal buffer that will store a specified number of values that it has observed. Like `Subject`,\n * `ReplaySubject` \"observes\" values by having them passed to its `next` method. When it observes a value, it will store that\n * value for a time determined by the configuration of the `ReplaySubject`, as passed to its constructor.\n *\n * When a new subscriber subscribes to the `ReplaySubject` instance, it will synchronously emit all values in its buffer in\n * a First-In-First-Out (FIFO) manner. The `ReplaySubject` will also complete, if it has observed completion; and it will\n * error if it has observed an error.\n *\n * There are two main configuration items to be concerned with:\n *\n * 1. `bufferSize` - This will determine how many items are stored in the buffer, defaults to infinite.\n * 2. `windowTime` - The amount of time to hold a value in the buffer before removing it from the buffer.\n *\n * Both configurations may exist simultaneously. So if you would like to buffer a maximum of 3 values, as long as the values\n * are less than 2 seconds old, you could do so with a `new ReplaySubject(3, 2000)`.\n *\n * ### Differences with BehaviorSubject\n *\n * `BehaviorSubject` is similar to `new ReplaySubject(1)`, with a couple of exceptions:\n *\n * 1. `BehaviorSubject` comes \"primed\" with a single value upon construction.\n * 2. `ReplaySubject` will replay values, even after observing an error, where `BehaviorSubject` will not.\n *\n * @see {@link Subject}\n * @see {@link BehaviorSubject}\n * @see {@link shareReplay}\n */\nexport class ReplaySubject<T> extends Subject<T> {\n private _buffer: (T | number)[] = [];\n private _infiniteTimeWindow = true;\n\n /**\n * @param bufferSize The size of the buffer to replay on subscription\n * @param windowTime The amount of time the buffered items will stay buffered\n * @param timestampProvider An object with a `now()` method that provides the current timestamp. This is used to\n * calculate the amount of time something has been buffered.\n */\n constructor(\n private _bufferSize = Infinity,\n private _windowTime = Infinity,\n private _timestampProvider: TimestampProvider = dateTimestampProvider\n ) {\n super();\n this._infiniteTimeWindow = _windowTime === Infinity;\n this._bufferSize = Math.max(1, _bufferSize);\n this._windowTime = Math.max(1, _windowTime);\n }\n\n next(value: T): void {\n const { isStopped, _buffer, _infiniteTimeWindow, _timestampProvider, _windowTime } = this;\n if (!isStopped) {\n _buffer.push(value);\n !_infiniteTimeWindow && _buffer.push(_timestampProvider.now() + _windowTime);\n }\n this._trimBuffer();\n super.next(value);\n }\n\n /** @internal */\n protected _subscribe(subscriber: Subscriber<T>): Subscription {\n this._throwIfClosed();\n this._trimBuffer();\n\n const subscription = this._innerSubscribe(subscriber);\n\n const { _infiniteTimeWindow, _buffer } = this;\n // We use a copy here, so reentrant code does not mutate our array while we're\n // emitting it to a new subscriber.\n const copy = _buffer.slice();\n for (let i = 0; i < copy.length && !subscriber.closed; i += _infiniteTimeWindow ? 1 : 2) {\n subscriber.next(copy[i] as T);\n }\n\n this._checkFinalizedStatuses(subscriber);\n\n return subscription;\n }\n\n private _trimBuffer() {\n const { _bufferSize, _timestampProvider, _buffer, _infiniteTimeWindow } = this;\n // If we don't have an infinite buffer size, and we're over the length,\n // use splice to truncate the old buffer values off. Note that we have to\n // double the size for instances where we're not using an infinite time window\n // because we're storing the values and the timestamps in the same array.\n const adjustedBufferSize = (_infiniteTimeWindow ? 1 : 2) * _bufferSize;\n _bufferSize < Infinity && adjustedBufferSize < _buffer.length && _buffer.splice(0, _buffer.length - adjustedBufferSize);\n\n // Now, if we're not in an infinite time window, remove all values where the time is\n // older than what is allowed.\n if (!_infiniteTimeWindow) {\n const now = _timestampProvider.now();\n let last = 0;\n // Search the array for the first timestamp that isn't expired and\n // truncate the buffer up to that point.\n for (let i = 1; i < _buffer.length && (_buffer[i] as number) <= now; i += 2) {\n last = i;\n }\n last && _buffer.splice(0, last + 1);\n }\n }\n}\n", "import { Scheduler } from '../Scheduler';\nimport { Subscription } from '../Subscription';\nimport { SchedulerAction } from '../types';\n\n/**\n * A unit of work to be executed in a `scheduler`. An action is typically\n * created from within a {@link SchedulerLike} and an RxJS user does not need to concern\n * themselves about creating and manipulating an Action.\n *\n * ```ts\n * class Action<T> extends Subscription {\n * new (scheduler: Scheduler, work: (state?: T) => void);\n * schedule(state?: T, delay: number = 0): Subscription;\n * }\n * ```\n *\n * @class Action<T>\n */\nexport class Action<T> extends Subscription {\n constructor(scheduler: Scheduler, work: (this: SchedulerAction<T>, state?: T) => void) {\n super();\n }\n /**\n * Schedules this action on its parent {@link SchedulerLike} for execution. May be passed\n * some context object, `state`. May happen at some point in the future,\n * according to the `delay` parameter, if specified.\n * @param {T} [state] Some contextual data that the `work` function uses when\n * called by the Scheduler.\n * @param {number} [delay] Time to wait before executing the work, where the\n * time unit is implicit and defined by the Scheduler.\n * @return {void}\n */\n public schedule(state?: T, delay: number = 0): Subscription {\n return this;\n }\n}\n", "import type { TimerHandle } from './timerHandle';\ntype SetIntervalFunction = (handler: () => void, timeout?: number, ...args: any[]) => TimerHandle;\ntype ClearIntervalFunction = (handle: TimerHandle) => void;\n\ninterface IntervalProvider {\n setInterval: SetIntervalFunction;\n clearInterval: ClearIntervalFunction;\n delegate:\n | {\n setInterval: SetIntervalFunction;\n clearInterval: ClearIntervalFunction;\n }\n | undefined;\n}\n\nexport const intervalProvider: IntervalProvider = {\n // When accessing the delegate, use the variable rather than `this` so that\n // the functions can be called without being bound to the provider.\n setInterval(handler: () => void, timeout?: number, ...args) {\n const { delegate } = intervalProvider;\n if (delegate?.setInterval) {\n return delegate.setInterval(handler, timeout, ...args);\n }\n return setInterval(handler, timeout, ...args);\n },\n clearInterval(handle) {\n const { delegate } = intervalProvider;\n return (delegate?.clearInterval || clearInterval)(handle as any);\n },\n delegate: undefined,\n};\n", "import { Action } from './Action';\nimport { SchedulerAction } from '../types';\nimport { Subscription } from '../Subscription';\nimport { AsyncScheduler } from './AsyncScheduler';\nimport { intervalProvider } from './intervalProvider';\nimport { arrRemove } from '../util/arrRemove';\nimport { TimerHandle } from './timerHandle';\n\nexport class AsyncAction<T> extends Action<T> {\n public id: TimerHandle | undefined;\n public state?: T;\n // @ts-ignore: Property has no initializer and is not definitely assigned\n public delay: number;\n protected pending: boolean = false;\n\n constructor(protected scheduler: AsyncScheduler, protected work: (this: SchedulerAction<T>, state?: T) => void) {\n super(scheduler, work);\n }\n\n public schedule(state?: T, delay: number = 0): Subscription {\n if (this.closed) {\n return this;\n }\n\n // Always replace the current state with the new state.\n this.state = state;\n\n const id = this.id;\n const scheduler = this.scheduler;\n\n //\n // Important implementation note:\n //\n // Actions only execute once by default, unless rescheduled from within the\n // scheduled callback. This allows us to implement single and repeat\n // actions via the same code path, without adding API surface area, as well\n // as mimic traditional recursion but across asynchronous boundaries.\n //\n // However, JS runtimes and timers distinguish between intervals achieved by\n // serial `setTimeout` calls vs. a single `setInterval` call. An interval of\n // serial `setTimeout` calls can be individually delayed, which delays\n // scheduling the next `setTimeout`, and so on. `setInterval` attempts to\n // guarantee the interval callback will be invoked more precisely to the\n // interval period, regardless of load.\n //\n // Therefore, we use `setInterval` to schedule single and repeat actions.\n // If the action reschedules itself with the same delay, the interval is not\n // canceled. If the action doesn't reschedule, or reschedules with a\n // different delay, the interval will be canceled after scheduled callback\n // execution.\n //\n if (id != null) {\n this.id = this.recycleAsyncId(scheduler, id, delay);\n }\n\n // Set the pending flag indicating that this action has been scheduled, or\n // has recursively rescheduled itself.\n this.pending = true;\n\n this.delay = delay;\n // If this action has already an async Id, don't request a new one.\n this.id = this.id ?? this.requestAsyncId(scheduler, this.id, delay);\n\n return this;\n }\n\n protected requestAsyncId(scheduler: AsyncScheduler, _id?: TimerHandle, delay: number = 0): TimerHandle {\n return intervalProvider.setInterval(scheduler.flush.bind(scheduler, this), delay);\n }\n\n protected recycleAsyncId(_scheduler: AsyncScheduler, id?: TimerHandle, delay: number | null = 0): TimerHandle | undefined {\n // If this action is rescheduled with the same delay time, don't clear the interval id.\n if (delay != null && this.delay === delay && this.pending === false) {\n return id;\n }\n // Otherwise, if the action's delay time is different from the current delay,\n // or the action has been rescheduled before it's executed, clear the interval id\n if (id != null) {\n intervalProvider.clearInterval(id);\n }\n\n return undefined;\n }\n\n /**\n * Immediately executes this action and the `work` it contains.\n * @return {any}\n */\n public execute(state: T, delay: number): any {\n if (this.closed) {\n return new Error('executing a cancelled action');\n }\n\n this.pending = false;\n const error = this._execute(state, delay);\n if (error) {\n return error;\n } else if (this.pending === false && this.id != null) {\n // Dequeue if the action didn't reschedule itself. Don't call\n // unsubscribe(), because the action could reschedule later.\n // For example:\n // ```\n // scheduler.schedule(function doWork(counter) {\n // /* ... I'm a busy worker bee ... */\n // var originalAction = this;\n // /* wait 100ms before rescheduling the action */\n // setTimeout(function () {\n // originalAction.schedule(counter + 1);\n // }, 100);\n // }, 1000);\n // ```\n this.id = this.recycleAsyncId(this.scheduler, this.id, null);\n }\n }\n\n protected _execute(state: T, _delay: number): any {\n let errored: boolean = false;\n let errorValue: any;\n try {\n this.work(state);\n } catch (e) {\n errored = true;\n // HACK: Since code elsewhere is relying on the \"truthiness\" of the\n // return here, we can't have it return \"\" or 0 or false.\n // TODO: Clean this up when we refactor schedulers mid-version-8 or so.\n errorValue = e ? e : new Error('Scheduled action threw falsy error');\n }\n if (errored) {\n this.unsubscribe();\n return errorValue;\n }\n }\n\n unsubscribe() {\n if (!this.closed) {\n const { id, scheduler } = this;\n const { actions } = scheduler;\n\n this.work = this.state = this.scheduler = null!;\n this.pending = false;\n\n arrRemove(actions, this);\n if (id != null) {\n this.id = this.recycleAsyncId(scheduler, id, null);\n }\n\n this.delay = null!;\n super.unsubscribe();\n }\n }\n}\n", "import { Action } from './scheduler/Action';\nimport { Subscription } from './Subscription';\nimport { SchedulerLike, SchedulerAction } from './types';\nimport { dateTimestampProvider } from './scheduler/dateTimestampProvider';\n\n/**\n * An execution context and a data structure to order tasks and schedule their\n * execution. Provides a notion of (potentially virtual) time, through the\n * `now()` getter method.\n *\n * Each unit of work in a Scheduler is called an `Action`.\n *\n * ```ts\n * class Scheduler {\n * now(): number;\n * schedule(work, delay?, state?): Subscription;\n * }\n * ```\n *\n * @class Scheduler\n * @deprecated Scheduler is an internal implementation detail of RxJS, and\n * should not be used directly. Rather, create your own class and implement\n * {@link SchedulerLike}. Will be made internal in v8.\n */\nexport class Scheduler implements SchedulerLike {\n public static now: () => number = dateTimestampProvider.now;\n\n constructor(private schedulerActionCtor: typeof Action, now: () => number = Scheduler.now) {\n this.now = now;\n }\n\n /**\n * A getter method that returns a number representing the current time\n * (at the time this function was called) according to the scheduler's own\n * internal clock.\n * @return {number} A number that represents the current time. May or may not\n * have a relation to wall-clock time. May or may not refer to a time unit\n * (e.g. milliseconds).\n */\n public now: () => number;\n\n /**\n * Schedules a function, `work`, for execution. May happen at some point in\n * the future, according to the `delay` parameter, if specified. May be passed\n * some context object, `state`, which will be passed to the `work` function.\n *\n * The given arguments will be processed an stored as an Action object in a\n * queue of actions.\n *\n * @param {function(state: ?T): ?Subscription} work A function representing a\n * task, or some unit of work to be executed by the Scheduler.\n * @param {number} [delay] Time to wait before executing the work, where the\n * time unit is implicit and defined by the Scheduler itself.\n * @param {T} [state] Some contextual data that the `work` function uses when\n * called by the Scheduler.\n * @return {Subscription} A subscription in order to be able to unsubscribe\n * the scheduled work.\n */\n public schedule<T>(work: (this: SchedulerAction<T>, state?: T) => void, delay: number = 0, state?: T): Subscription {\n return new this.schedulerActionCtor<T>(this, work).schedule(state, delay);\n }\n}\n", "import { Scheduler } from '../Scheduler';\nimport { Action } from './Action';\nimport { AsyncAction } from './AsyncAction';\nimport { TimerHandle } from './timerHandle';\n\nexport class AsyncScheduler extends Scheduler {\n public actions: Array<AsyncAction<any>> = [];\n /**\n * A flag to indicate whether the Scheduler is currently executing a batch of\n * queued actions.\n * @type {boolean}\n * @internal\n */\n public _active: boolean = false;\n /**\n * An internal ID used to track the latest asynchronous task such as those\n * coming from `setTimeout`, `setInterval`, `requestAnimationFrame`, and\n * others.\n * @type {any}\n * @internal\n */\n public _scheduled: TimerHandle | undefined;\n\n constructor(SchedulerAction: typeof Action, now: () => number = Scheduler.now) {\n super(SchedulerAction, now);\n }\n\n public flush(action: AsyncAction<any>): void {\n const { actions } = this;\n\n if (this._active) {\n actions.push(action);\n return;\n }\n\n let error: any;\n this._active = true;\n\n do {\n if ((error = action.execute(action.state, action.delay))) {\n break;\n }\n } while ((action = actions.shift()!)); // exhaust the scheduler queue\n\n this._active = false;\n\n if (error) {\n while ((action = actions.shift()!)) {\n action.unsubscribe();\n }\n throw error;\n }\n }\n}\n", "import { AsyncAction } from './AsyncAction';\nimport { AsyncScheduler } from './AsyncScheduler';\n\n/**\n *\n * Async Scheduler\n *\n * <span class=\"informal\">Schedule task as if you used setTimeout(task, duration)</span>\n *\n * `async` scheduler schedules tasks asynchronously, by putting them on the JavaScript\n * event loop queue. It is best used to delay tasks in time or to schedule tasks repeating\n * in intervals.\n *\n * If you just want to \"defer\" task, that is to perform it right after currently\n * executing synchronous code ends (commonly achieved by `setTimeout(deferredTask, 0)`),\n * better choice will be the {@link asapScheduler} scheduler.\n *\n * ## Examples\n * Use async scheduler to delay task\n * ```ts\n * import { asyncScheduler } from 'rxjs';\n *\n * const task = () => console.log('it works!');\n *\n * asyncScheduler.schedule(task, 2000);\n *\n * // After 2 seconds logs:\n * // \"it works!\"\n * ```\n *\n * Use async scheduler to repeat task in intervals\n * ```ts\n * import { asyncScheduler } from 'rxjs';\n *\n * function task(state) {\n * console.log(state);\n * this.schedule(state + 1, 1000); // `this` references currently executing Action,\n * // which we reschedule with new state and delay\n * }\n *\n * asyncScheduler.schedule(task, 3000, 0);\n *\n * // Logs:\n * // 0 after 3s\n * // 1 after 4s\n * // 2 after 5s\n * // 3 after 6s\n * ```\n */\n\nexport const asyncScheduler = new AsyncScheduler(AsyncAction);\n\n/**\n * @deprecated Renamed to {@link asyncScheduler}. Will be removed in v8.\n */\nexport const async = asyncScheduler;\n", "import { AsyncAction } from './AsyncAction';\nimport { AnimationFrameScheduler } from './AnimationFrameScheduler';\nimport { SchedulerAction } from '../types';\nimport { animationFrameProvider } from './animationFrameProvider';\nimport { TimerHandle } from './timerHandle';\n\nexport class AnimationFrameAction<T> extends AsyncAction<T> {\n constructor(protected scheduler: AnimationFrameScheduler, protected work: (this: SchedulerAction<T>, state?: T) => void) {\n super(scheduler, work);\n }\n\n protected requestAsyncId(scheduler: AnimationFrameScheduler, id?: TimerHandle, delay: number = 0): TimerHandle {\n // If delay is greater than 0, request as an async action.\n if (delay !== null && delay > 0) {\n return super.requestAsyncId(scheduler, id, delay);\n }\n // Push the action to the end of the scheduler queue.\n scheduler.actions.push(this);\n // If an animation frame has already been requested, don't request another\n // one. If an animation frame hasn't been requested yet, request one. Return\n // the current animation frame request id.\n return scheduler._scheduled || (scheduler._scheduled = animationFrameProvider.requestAnimationFrame(() => scheduler.flush(undefined)));\n }\n\n protected recycleAsyncId(scheduler: AnimationFrameScheduler, id?: TimerHandle, delay: number = 0): TimerHandle | undefined {\n // If delay exists and is greater than 0, or if the delay is null (the\n // action wasn't rescheduled) but was originally scheduled as an async\n // action, then recycle as an async action.\n if (delay != null ? delay > 0 : this.delay > 0) {\n return super.recycleAsyncId(scheduler, id, delay);\n }\n // If the scheduler queue has no remaining actions with the same async id,\n // cancel the requested animation frame and set the scheduled flag to\n // undefined so the next AnimationFrameAction will request its own.\n const { actions } = scheduler;\n if (id != null && actions[actions.length - 1]?.id !== id) {\n animationFrameProvider.cancelAnimationFrame(id as number);\n scheduler._scheduled = undefined;\n }\n // Return undefined so the action knows to request a new async id if it's rescheduled.\n return undefined;\n }\n}\n", "import { AsyncAction } from './AsyncAction';\nimport { AsyncScheduler } from './AsyncScheduler';\n\nexport class AnimationFrameScheduler extends AsyncScheduler {\n public flush(action?: AsyncAction<any>): void {\n this._active = true;\n // The async id that effects a call to flush is stored in _scheduled.\n // Before executing an action, it's necessary to check the action's async\n // id to determine whether it's supposed to be executed in the current\n // flush.\n // Previous implementations of this method used a count to determine this,\n // but that was unsound, as actions that are unsubscribed - i.e. cancelled -\n // are removed from the actions array and that can shift actions that are\n // scheduled to be executed in a subsequent flush into positions at which\n // they are executed within the current flush.\n const flushId = this._scheduled;\n this._scheduled = undefined;\n\n const { actions } = this;\n let error: any;\n action = action || actions.shift()!;\n\n do {\n if ((error = action.execute(action.state, action.delay))) {\n break;\n }\n } while ((action = actions[0]) && action.id === flushId && actions.shift());\n\n this._active = false;\n\n if (error) {\n while ((action = actions[0]) && action.id === flushId && actions.shift()) {\n action.unsubscribe();\n }\n throw error;\n }\n }\n}\n", "import { AnimationFrameAction } from './AnimationFrameAction';\nimport { AnimationFrameScheduler } from './AnimationFrameScheduler';\n\n/**\n *\n * Animation Frame Scheduler\n *\n * <span class=\"informal\">Perform task when `window.requestAnimationFrame` would fire</span>\n *\n * When `animationFrame` scheduler is used with delay, it will fall back to {@link asyncScheduler} scheduler\n * behaviour.\n *\n * Without delay, `animationFrame` scheduler can be used to create smooth browser animations.\n * It makes sure scheduled task will happen just before next browser content repaint,\n * thus performing animations as efficiently as possible.\n *\n * ## Example\n * Schedule div height animation\n * ```ts\n * // html: <div style=\"background: #0ff;\"></div>\n * import { animationFrameScheduler } from 'rxjs';\n *\n * const div = document.querySelector('div');\n *\n * animationFrameScheduler.schedule(function(height) {\n * div.style.height = height + \"px\";\n *\n * this.schedule(height + 1); // `this` references currently executing Action,\n * // which we reschedule with new state\n * }, 0, 0);\n *\n * // You will see a div element growing in height\n * ```\n */\n\nexport const animationFrameScheduler = new AnimationFrameScheduler(AnimationFrameAction);\n\n/**\n * @deprecated Renamed to {@link animationFrameScheduler}. Will be removed in v8.\n */\nexport const animationFrame = animationFrameScheduler;\n", "import { Observable } from '../Observable';\nimport { SchedulerLike } from '../types';\n\n/**\n * A simple Observable that emits no items to the Observer and immediately\n * emits a complete notification.\n *\n * <span class=\"informal\">Just emits 'complete', and nothing else.</span>\n *\n * ![](empty.png)\n *\n * A simple Observable that only emits the complete notification. It can be used\n * for composing with other Observables, such as in a {@link mergeMap}.\n *\n * ## Examples\n *\n * Log complete notification\n *\n * ```ts\n * import { EMPTY } from 'rxjs';\n *\n * EMPTY.subscribe({\n * next: () => console.log('Next'),\n * complete: () => console.log('Complete!')\n * });\n *\n * // Outputs\n * // Complete!\n * ```\n *\n * Emit the number 7, then complete\n *\n * ```ts\n * import { EMPTY, startWith } from 'rxjs';\n *\n * const result = EMPTY.pipe(startWith(7));\n * result.subscribe(x => console.log(x));\n *\n * // Outputs\n * // 7\n * ```\n *\n * Map and flatten only odd numbers to the sequence `'a'`, `'b'`, `'c'`\n *\n * ```ts\n * import { interval, mergeMap, of, EMPTY } from 'rxjs';\n *\n * const interval$ = interval(1000);\n * const result = interval$.pipe(\n * mergeMap(x => x % 2 === 1 ? of('a', 'b', 'c') : EMPTY),\n * );\n * result.subscribe(x => console.log(x));\n *\n * // Results in the following to the console:\n * // x is equal to the count on the interval, e.g. (0, 1, 2, 3, ...)\n * // x will occur every 1000ms\n * // if x % 2 is equal to 1, print a, b, c (each on its own)\n * // if x % 2 is not equal to 1, nothing will be output\n * ```\n *\n * @see {@link Observable}\n * @see {@link NEVER}\n * @see {@link of}\n * @see {@link throwError}\n */\nexport const EMPTY = new Observable<never>((subscriber) => subscriber.complete());\n\n/**\n * @param scheduler A {@link SchedulerLike} to use for scheduling\n * the emission of the complete notification.\n * @deprecated Replaced with the {@link EMPTY} constant or {@link scheduled} (e.g. `scheduled([], scheduler)`). Will be removed in v8.\n */\nexport function empty(scheduler?: SchedulerLike) {\n return scheduler ? emptyScheduled(scheduler) : EMPTY;\n}\n\nfunction emptyScheduled(scheduler: SchedulerLike) {\n return new Observable<never>((subscriber) => scheduler.schedule(() => subscriber.complete()));\n}\n", "import { SchedulerLike } from '../types';\nimport { isFunction } from './isFunction';\n\nexport function isScheduler(value: any): value is SchedulerLike {\n return value && isFunction(value.schedule);\n}\n", "import { SchedulerLike } from '../types';\nimport { isFunction } from './isFunction';\nimport { isScheduler } from './isScheduler';\n\nfunction last<T>(arr: T[]): T | undefined {\n return arr[arr.length - 1];\n}\n\nexport function popResultSelector(args: any[]): ((...args: unknown[]) => unknown) | undefined {\n return isFunction(last(args)) ? args.pop() : undefined;\n}\n\nexport function popScheduler(args: any[]): SchedulerLike | undefined {\n return isScheduler(last(args)) ? args.pop() : undefined;\n}\n\nexport function popNumber(args: any[], defaultValue: number): number {\n return typeof last(args) === 'number' ? args.pop()! : defaultValue;\n}\n", "export const isArrayLike = (<T>(x: any): x is ArrayLike<T> => x && typeof x.length === 'number' && typeof x !== 'function');", "import { isFunction } from \"./isFunction\";\n\n/**\n * Tests to see if the object is \"thennable\".\n * @param value the object to test\n */\nexport function isPromise(value: any): value is PromiseLike<any> {\n return isFunction(value?.then);\n}\n", "import { InteropObservable } from '../types';\nimport { observable as Symbol_observable } from '../symbol/observable';\nimport { isFunction } from './isFunction';\n\n/** Identifies an input as being Observable (but not necessary an Rx Observable) */\nexport function isInteropObservable(input: any): input is InteropObservable<any> {\n return isFunction(input[Symbol_observable]);\n}\n", "import { isFunction } from './isFunction';\n\nexport function isAsyncIterable<T>(obj: any): obj is AsyncIterable<T> {\n return Symbol.asyncIterator && isFunction(obj?.[Symbol.asyncIterator]);\n}\n", "/**\n * Creates the TypeError to throw if an invalid object is passed to `from` or `scheduled`.\n * @param input The object that was passed.\n */\nexport function createInvalidObservableTypeError(input: any) {\n // TODO: We should create error codes that can be looked up, so this can be less verbose.\n return new TypeError(\n `You provided ${\n input !== null && typeof input === 'object' ? 'an invalid object' : `'${input}'`\n } where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.`\n );\n}\n", "export function getSymbolIterator(): symbol {\n if (typeof Symbol !== 'function' || !Symbol.iterator) {\n return '@@iterator' as any;\n }\n\n return Symbol.iterator;\n}\n\nexport const iterator = getSymbolIterator();\n", "import { iterator as Symbol_iterator } from '../symbol/iterator';\nimport { isFunction } from './isFunction';\n\n/** Identifies an input as being an Iterable */\nexport function isIterable(input: any): input is Iterable<any> {\n return isFunction(input?.[Symbol_iterator]);\n}\n", "import { ReadableStreamLike } from '../types';\nimport { isFunction } from './isFunction';\n\nexport async function* readableStreamLikeToAsyncGenerator<T>(readableStream: ReadableStreamLike<T>): AsyncGenerator<T> {\n const reader = readableStream.getReader();\n try {\n while (true) {\n const { value, done } = await reader.read();\n if (done) {\n return;\n }\n yield value!;\n }\n } finally {\n reader.releaseLock();\n }\n}\n\nexport function isReadableStreamLike<T>(obj: any): obj is ReadableStreamLike<T> {\n // We don't want to use instanceof checks because they would return\n // false for instances from another Realm, like an <iframe>.\n return isFunction(obj?.getReader);\n}\n", "import { isArrayLike } from '../util/isArrayLike';\nimport { isPromise } from '../util/isPromise';\nimport { Observable } from '../Observable';\nimport { ObservableInput, ObservedValueOf, ReadableStreamLike } from '../types';\nimport { isInteropObservable } from '../util/isInteropObservable';\nimport { isAsyncIterable } from '../util/isAsyncIterable';\nimport { createInvalidObservableTypeError } from '../util/throwUnobservableError';\nimport { isIterable } from '../util/isIterable';\nimport { isReadableStreamLike, readableStreamLikeToAsyncGenerator } from '../util/isReadableStreamLike';\nimport { Subscriber } from '../Subscriber';\nimport { isFunction } from '../util/isFunction';\nimport { reportUnhandledError } from '../util/reportUnhandledError';\nimport { observable as Symbol_observable } from '../symbol/observable';\n\nexport function innerFrom<O extends ObservableInput<any>>(input: O): Observable<ObservedValueOf<O>>;\nexport function innerFrom<T>(input: ObservableInput<T>): Observable<T> {\n if (input instanceof Observable) {\n return input;\n }\n if (input != null) {\n if (isInteropObservable(input)) {\n return fromInteropObservable(input);\n }\n if (isArrayLike(input)) {\n return fromArrayLike(input);\n }\n if (isPromise(input)) {\n return fromPromise(input);\n }\n if (isAsyncIterable(input)) {\n return fromAsyncIterable(input);\n }\n if (isIterable(input)) {\n return fromIterable(input);\n }\n if (isReadableStreamLike(input)) {\n return fromReadableStreamLike(input);\n }\n }\n\n throw createInvalidObservableTypeError(input);\n}\n\n/**\n * Creates an RxJS Observable from an object that implements `Symbol.observable`.\n * @param obj An object that properly implements `Symbol.observable`.\n */\nexport function fromInteropObservable<T>(obj: any) {\n return new Observable((subscriber: Subscriber<T>) => {\n const obs = obj[Symbol_observable]();\n if (isFunction(obs.subscribe)) {\n return obs.subscribe(subscriber);\n }\n // Should be caught by observable subscribe function error handling.\n throw new TypeError('Provided object does not correctly implement Symbol.observable');\n });\n}\n\n/**\n * Synchronously emits the values of an array like and completes.\n * This is exported because there are creation functions and operators that need to\n * make direct use of the same logic, and there's no reason to make them run through\n * `from` conditionals because we *know* they're dealing with an array.\n * @param array The array to emit values from\n */\nexport function fromArrayLike<T>(array: ArrayLike<T>) {\n return new Observable((subscriber: Subscriber<T>) => {\n // Loop over the array and emit each value. Note two things here:\n // 1. We're making sure that the subscriber is not closed on each loop.\n // This is so we don't continue looping over a very large array after\n // something like a `take`, `takeWhile`, or other synchronous unsubscription\n // has already unsubscribed.\n // 2. In this form, reentrant code can alter that array we're looping over.\n // This is a known issue, but considered an edge case. The alternative would\n // be to copy the array before executing the loop, but this has\n // performance implications.\n for (let i = 0; i < array.length && !subscriber.closed; i++) {\n subscriber.next(array[i]);\n }\n subscriber.complete();\n });\n}\n\nexport function fromPromise<T>(promise: PromiseLike<T>) {\n return new Observable((subscriber: Subscriber<T>) => {\n promise\n .then(\n (value) => {\n if (!subscriber.closed) {\n subscriber.next(value);\n subscriber.complete();\n }\n },\n (err: any) => subscriber.error(err)\n )\n .then(null, reportUnhandledError);\n });\n}\n\nexport function fromIterable<T>(iterable: Iterable<T>) {\n return new Observable((subscriber: Subscriber<T>) => {\n for (const value of iterable) {\n subscriber.next(value);\n if (subscriber.closed) {\n return;\n }\n }\n subscriber.complete();\n });\n}\n\nexport function fromAsyncIterable<T>(asyncIterable: AsyncIterable<T>) {\n return new Observable((subscriber: Subscriber<T>) => {\n process(asyncIterable, subscriber).catch((err) => subscriber.error(err));\n });\n}\n\nexport function fromReadableStreamLike<T>(readableStream: ReadableStreamLike<T>) {\n return fromAsyncIterable(readableStreamLikeToAsyncGenerator(readableStream));\n}\n\nasync function process<T>(asyncIterable: AsyncIterable<T>, subscriber: Subscriber<T>) {\n for await (const value of asyncIterable) {\n subscriber.next(value);\n // A side-effect may have closed our subscriber,\n // check before the next iteration.\n if (subscriber.closed) {\n return;\n }\n }\n subscriber.complete();\n}\n", "import { Subscription } from '../Subscription';\nimport { SchedulerAction, SchedulerLike } from '../types';\n\nexport function executeSchedule(\n parentSubscription: Subscription,\n scheduler: SchedulerLike,\n work: () => void,\n delay: number,\n repeat: true\n): void;\nexport function executeSchedule(\n parentSubscription: Subscription,\n scheduler: SchedulerLike,\n work: () => void,\n delay?: number,\n repeat?: false\n): Subscription;\n\nexport function executeSchedule(\n parentSubscription: Subscription,\n scheduler: SchedulerLike,\n work: () => void,\n delay = 0,\n repeat = false\n): Subscription | void {\n const scheduleSubscription = scheduler.schedule(function (this: SchedulerAction<any>) {\n work();\n if (repeat) {\n parentSubscription.add(this.schedule(null, delay));\n } else {\n this.unsubscribe();\n }\n }, delay);\n\n parentSubscription.add(scheduleSubscription);\n\n if (!repeat) {\n // Because user-land scheduler implementations are unlikely to properly reuse\n // Actions for repeat scheduling, we can't trust that the returned subscription\n // will control repeat subscription scenarios. So we're trying to avoid using them\n // incorrectly within this library.\n return scheduleSubscription;\n }\n}\n", "/** @prettier */\nimport { MonoTypeOperatorFunction, SchedulerLike } from '../types';\nimport { executeSchedule } from '../util/executeSchedule';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\n/**\n * Re-emits all notifications from source Observable with specified scheduler.\n *\n * <span class=\"informal\">Ensure a specific scheduler is used, from outside of an Observable.</span>\n *\n * `observeOn` is an operator that accepts a scheduler as a first parameter, which will be used to reschedule\n * notifications emitted by the source Observable. It might be useful, if you do not have control over\n * internal scheduler of a given Observable, but want to control when its values are emitted nevertheless.\n *\n * Returned Observable emits the same notifications (nexted values, complete and error events) as the source Observable,\n * but rescheduled with provided scheduler. Note that this doesn't mean that source Observables internal\n * scheduler will be replaced in any way. Original scheduler still will be used, but when the source Observable emits\n * notification, it will be immediately scheduled again - this time with scheduler passed to `observeOn`.\n * An anti-pattern would be calling `observeOn` on Observable that emits lots of values synchronously, to split\n * that emissions into asynchronous chunks. For this to happen, scheduler would have to be passed into the source\n * Observable directly (usually into the operator that creates it). `observeOn` simply delays notifications a\n * little bit more, to ensure that they are emitted at expected moments.\n *\n * As a matter of fact, `observeOn` accepts second parameter, which specifies in milliseconds with what delay notifications\n * will be emitted. The main difference between {@link delay} operator and `observeOn` is that `observeOn`\n * will delay all notifications - including error notifications - while `delay` will pass through error\n * from source Observable immediately when it is emitted. In general it is highly recommended to use `delay` operator\n * for any kind of delaying of values in the stream, while using `observeOn` to specify which scheduler should be used\n * for notification emissions in general.\n *\n * ## Example\n *\n * Ensure values in subscribe are called just before browser repaint\n *\n * ```ts\n * import { interval, observeOn, animationFrameScheduler } from 'rxjs';\n *\n * const someDiv = document.createElement('div');\n * someDiv.style.cssText = 'width: 200px;background: #09c';\n * document.body.appendChild(someDiv);\n * const intervals = interval(10); // Intervals are scheduled\n * // with async scheduler by default...\n * intervals.pipe(\n * observeOn(animationFrameScheduler) // ...but we will observe on animationFrame\n * ) // scheduler to ensure smooth animation.\n * .subscribe(val => {\n * someDiv.style.height = val + 'px';\n * });\n * ```\n *\n * @see {@link delay}\n *\n * @param scheduler Scheduler that will be used to reschedule notifications from source Observable.\n * @param delay Number of milliseconds that states with what delay every notification should be rescheduled.\n * @return A function that returns an Observable that emits the same\n * notifications as the source Observable, but with provided scheduler.\n */\nexport function observeOn<T>(scheduler: SchedulerLike, delay = 0): MonoTypeOperatorFunction<T> {\n return operate((source, subscriber) => {\n source.subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => executeSchedule(subscriber, scheduler, () => subscriber.next(value), delay),\n () => executeSchedule(subscriber, scheduler, () => subscriber.complete(), delay),\n (err) => executeSchedule(subscriber, scheduler, () => subscriber.error(err), delay)\n )\n );\n });\n}\n", "import { MonoTypeOperatorFunction, SchedulerLike } from '../types';\nimport { operate } from '../util/lift';\n\n/**\n * Asynchronously subscribes Observers to this Observable on the specified {@link SchedulerLike}.\n *\n * With `subscribeOn` you can decide what type of scheduler a specific Observable will be using when it is subscribed to.\n *\n * Schedulers control the speed and order of emissions to observers from an Observable stream.\n *\n * ![](subscribeOn.png)\n *\n * ## Example\n *\n * Given the following code:\n *\n * ```ts\n * import { of, merge } from 'rxjs';\n *\n * const a = of(1, 2, 3);\n * const b = of(4, 5, 6);\n *\n * merge(a, b).subscribe(console.log);\n *\n * // Outputs\n * // 1\n * // 2\n * // 3\n * // 4\n * // 5\n * // 6\n * ```\n *\n * Both Observable `a` and `b` will emit their values directly and synchronously once they are subscribed to.\n *\n * If we instead use the `subscribeOn` operator declaring that we want to use the {@link asyncScheduler} for values emitted by Observable `a`:\n *\n * ```ts\n * import { of, subscribeOn, asyncScheduler, merge } from 'rxjs';\n *\n * const a = of(1, 2, 3).pipe(subscribeOn(asyncScheduler));\n * const b = of(4, 5, 6);\n *\n * merge(a, b).subscribe(console.log);\n *\n * // Outputs\n * // 4\n * // 5\n * // 6\n * // 1\n * // 2\n * // 3\n * ```\n *\n * The reason for this is that Observable `b` emits its values directly and synchronously like before\n * but the emissions from `a` are scheduled on the event loop because we are now using the {@link asyncScheduler} for that specific Observable.\n *\n * @param scheduler The {@link SchedulerLike} to perform subscription actions on.\n * @param delay A delay to pass to the scheduler to delay subscriptions\n * @return A function that returns an Observable modified so that its\n * subscriptions happen on the specified {@link SchedulerLike}.\n */\nexport function subscribeOn<T>(scheduler: SchedulerLike, delay: number = 0): MonoTypeOperatorFunction<T> {\n return operate((source, subscriber) => {\n subscriber.add(scheduler.schedule(() => source.subscribe(subscriber), delay));\n });\n}\n", "import { innerFrom } from '../observable/innerFrom';\nimport { observeOn } from '../operators/observeOn';\nimport { subscribeOn } from '../operators/subscribeOn';\nimport { InteropObservable, SchedulerLike } from '../types';\n\nexport function scheduleObservable<T>(input: InteropObservable<T>, scheduler: SchedulerLike) {\n return innerFrom(input).pipe(subscribeOn(scheduler), observeOn(scheduler));\n}\n", "import { innerFrom } from '../observable/innerFrom';\nimport { observeOn } from '../operators/observeOn';\nimport { subscribeOn } from '../operators/subscribeOn';\nimport { SchedulerLike } from '../types';\n\nexport function schedulePromise<T>(input: PromiseLike<T>, scheduler: SchedulerLike) {\n return innerFrom(input).pipe(subscribeOn(scheduler), observeOn(scheduler));\n}\n", "import { Observable } from '../Observable';\nimport { SchedulerLike } from '../types';\n\nexport function scheduleArray<T>(input: ArrayLike<T>, scheduler: SchedulerLike) {\n return new Observable<T>((subscriber) => {\n // The current array index.\n let i = 0;\n // Start iterating over the array like on a schedule.\n return scheduler.schedule(function () {\n if (i === input.length) {\n // If we have hit the end of the array like in the\n // previous job, we can complete.\n subscriber.complete();\n } else {\n // Otherwise let's next the value at the current index,\n // then increment our index.\n subscriber.next(input[i++]);\n // If the last emission didn't cause us to close the subscriber\n // (via take or some side effect), reschedule the job and we'll\n // make another pass.\n if (!subscriber.closed) {\n this.schedule();\n }\n }\n });\n });\n}\n", "import { Observable } from '../Observable';\nimport { SchedulerLike } from '../types';\nimport { iterator as Symbol_iterator } from '../symbol/iterator';\nimport { isFunction } from '../util/isFunction';\nimport { executeSchedule } from '../util/executeSchedule';\n\n/**\n * Used in {@link scheduled} to create an observable from an Iterable.\n * @param input The iterable to create an observable from\n * @param scheduler The scheduler to use\n */\nexport function scheduleIterable<T>(input: Iterable<T>, scheduler: SchedulerLike) {\n return new Observable<T>((subscriber) => {\n let iterator: Iterator<T, T>;\n\n // Schedule the initial creation of the iterator from\n // the iterable. This is so the code in the iterable is\n // not called until the scheduled job fires.\n executeSchedule(subscriber, scheduler, () => {\n // Create the iterator.\n iterator = (input as any)[Symbol_iterator]();\n\n executeSchedule(\n subscriber,\n scheduler,\n () => {\n let value: T;\n let done: boolean | undefined;\n try {\n // Pull the value out of the iterator\n ({ value, done } = iterator.next());\n } catch (err) {\n // We got an error while pulling from the iterator\n subscriber.error(err);\n return;\n }\n\n if (done) {\n // If it is \"done\" we just complete. This mimics the\n // behavior of JavaScript's `for..of` consumption of\n // iterables, which will not emit the value from an iterator\n // result of `{ done: true: value: 'here' }`.\n subscriber.complete();\n } else {\n // The iterable is not done, emit the value.\n subscriber.next(value);\n }\n },\n 0,\n true\n );\n });\n\n // During finalization, if we see this iterator has a `return` method,\n // then we know it is a Generator, and not just an Iterator. So we call\n // the `return()` function. This will ensure that any `finally { }` blocks\n // inside of the generator we can hit will be hit properly.\n return () => isFunction(iterator?.return) && iterator.return();\n });\n}\n", "import { SchedulerLike } from '../types';\nimport { Observable } from '../Observable';\nimport { executeSchedule } from '../util/executeSchedule';\n\nexport function scheduleAsyncIterable<T>(input: AsyncIterable<T>, scheduler: SchedulerLike) {\n if (!input) {\n throw new Error('Iterable cannot be null');\n }\n return new Observable<T>((subscriber) => {\n executeSchedule(subscriber, scheduler, () => {\n const iterator = input[Symbol.asyncIterator]();\n executeSchedule(\n subscriber,\n scheduler,\n () => {\n iterator.next().then((result) => {\n if (result.done) {\n // This will remove the subscriptions from\n // the parent subscription.\n subscriber.complete();\n } else {\n subscriber.next(result.value);\n }\n });\n },\n 0,\n true\n );\n });\n });\n}\n", "import { SchedulerLike, ReadableStreamLike } from '../types';\nimport { Observable } from '../Observable';\nimport { scheduleAsyncIterable } from './scheduleAsyncIterable';\nimport { readableStreamLikeToAsyncGenerator } from '../util/isReadableStreamLike';\n\nexport function scheduleReadableStreamLike<T>(input: ReadableStreamLike<T>, scheduler: SchedulerLike): Observable<T> {\n return scheduleAsyncIterable(readableStreamLikeToAsyncGenerator(input), scheduler);\n}\n", "import { scheduleObservable } from './scheduleObservable';\nimport { schedulePromise } from './schedulePromise';\nimport { scheduleArray } from './scheduleArray';\nimport { scheduleIterable } from './scheduleIterable';\nimport { scheduleAsyncIterable } from './scheduleAsyncIterable';\nimport { isInteropObservable } from '../util/isInteropObservable';\nimport { isPromise } from '../util/isPromise';\nimport { isArrayLike } from '../util/isArrayLike';\nimport { isIterable } from '../util/isIterable';\nimport { ObservableInput, SchedulerLike } from '../types';\nimport { Observable } from '../Observable';\nimport { isAsyncIterable } from '../util/isAsyncIterable';\nimport { createInvalidObservableTypeError } from '../util/throwUnobservableError';\nimport { isReadableStreamLike } from '../util/isReadableStreamLike';\nimport { scheduleReadableStreamLike } from './scheduleReadableStreamLike';\n\n/**\n * Converts from a common {@link ObservableInput} type to an observable where subscription and emissions\n * are scheduled on the provided scheduler.\n *\n * @see {@link from}\n * @see {@link of}\n *\n * @param input The observable, array, promise, iterable, etc you would like to schedule\n * @param scheduler The scheduler to use to schedule the subscription and emissions from\n * the returned observable.\n */\nexport function scheduled<T>(input: ObservableInput<T>, scheduler: SchedulerLike): Observable<T> {\n if (input != null) {\n if (isInteropObservable(input)) {\n return scheduleObservable(input, scheduler);\n }\n if (isArrayLike(input)) {\n return scheduleArray(input, scheduler);\n }\n if (isPromise(input)) {\n return schedulePromise(input, scheduler);\n }\n if (isAsyncIterable(input)) {\n return scheduleAsyncIterable(input, scheduler);\n }\n if (isIterable(input)) {\n return scheduleIterable(input, scheduler);\n }\n if (isReadableStreamLike(input)) {\n return scheduleReadableStreamLike(input, scheduler);\n }\n }\n throw createInvalidObservableTypeError(input);\n}\n", "import { Observable } from '../Observable';\nimport { ObservableInput, SchedulerLike, ObservedValueOf } from '../types';\nimport { scheduled } from '../scheduled/scheduled';\nimport { innerFrom } from './innerFrom';\n\nexport function from<O extends ObservableInput<any>>(input: O): Observable<ObservedValueOf<O>>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function from<O extends ObservableInput<any>>(input: O, scheduler: SchedulerLike | undefined): Observable<ObservedValueOf<O>>;\n\n/**\n * Creates an Observable from an Array, an array-like object, a Promise, an iterable object, or an Observable-like object.\n *\n * <span class=\"informal\">Converts almost anything to an Observable.</span>\n *\n * ![](from.png)\n *\n * `from` converts various other objects and data types into Observables. It also converts a Promise, an array-like, or an\n * <a href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#iterable\" target=\"_blank\">iterable</a>\n * object into an Observable that emits the items in that promise, array, or iterable. A String, in this context, is treated\n * as an array of characters. Observable-like objects (contains a function named with the ES2015 Symbol for Observable) can also be\n * converted through this operator.\n *\n * ## Examples\n *\n * Converts an array to an Observable\n *\n * ```ts\n * import { from } from 'rxjs';\n *\n * const array = [10, 20, 30];\n * const result = from(array);\n *\n * result.subscribe(x => console.log(x));\n *\n * // Logs:\n * // 10\n * // 20\n * // 30\n * ```\n *\n * Convert an infinite iterable (from a generator) to an Observable\n *\n * ```ts\n * import { from, take } from 'rxjs';\n *\n * function* generateDoubles(seed) {\n * let i = seed;\n * while (true) {\n * yield i;\n * i = 2 * i; // double it\n * }\n * }\n *\n * const iterator = generateDoubles(3);\n * const result = from(iterator).pipe(take(10));\n *\n * result.subscribe(x => console.log(x));\n *\n * // Logs:\n * // 3\n * // 6\n * // 12\n * // 24\n * // 48\n * // 96\n * // 192\n * // 384\n * // 768\n * // 1536\n * ```\n *\n * With `asyncScheduler`\n *\n * ```ts\n * import { from, asyncScheduler } from 'rxjs';\n *\n * console.log('start');\n *\n * const array = [10, 20, 30];\n * const result = from(array, asyncScheduler);\n *\n * result.subscribe(x => console.log(x));\n *\n * console.log('end');\n *\n * // Logs:\n * // 'start'\n * // 'end'\n * // 10\n * // 20\n * // 30\n * ```\n *\n * @see {@link fromEvent}\n * @see {@link fromEventPattern}\n *\n * @param {ObservableInput<T>} A subscription object, a Promise, an Observable-like,\n * an Array, an iterable, or an array-like object to be converted.\n * @param {SchedulerLike} An optional {@link SchedulerLike} on which to schedule the emission of values.\n * @return {Observable<T>}\n */\nexport function from<T>(input: ObservableInput<T>, scheduler?: SchedulerLike): Observable<T> {\n return scheduler ? scheduled(input, scheduler) : innerFrom(input);\n}\n", "import { SchedulerLike, ValueFromArray } from '../types';\nimport { Observable } from '../Observable';\nimport { popScheduler } from '../util/args';\nimport { from } from './from';\n\n// Devs are more likely to pass null or undefined than they are a scheduler\n// without accompanying values. To make things easier for (naughty) devs who\n// use the `strictNullChecks: false` TypeScript compiler option, these\n// overloads with explicit null and undefined values are included.\n\nexport function of(value: null): Observable<null>;\nexport function of(value: undefined): Observable<undefined>;\n\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function of(scheduler: SchedulerLike): Observable<never>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function of<A extends readonly unknown[]>(...valuesAndScheduler: [...A, SchedulerLike]): Observable<ValueFromArray<A>>;\n\nexport function of(): Observable<never>;\n/** @deprecated Do not specify explicit type parameters. Signatures with type parameters that cannot be inferred will be removed in v8. */\nexport function of<T>(): Observable<T>;\nexport function of<T>(value: T): Observable<T>;\nexport function of<A extends readonly unknown[]>(...values: A): Observable<ValueFromArray<A>>;\n\n/**\n * Converts the arguments to an observable sequence.\n *\n * <span class=\"informal\">Each argument becomes a `next` notification.</span>\n *\n * ![](of.png)\n *\n * Unlike {@link from}, it does not do any flattening and emits each argument in whole\n * as a separate `next` notification.\n *\n * ## Examples\n *\n * Emit the values `10, 20, 30`\n *\n * ```ts\n * import { of } from 'rxjs';\n *\n * of(10, 20, 30)\n * .subscribe({\n * next: value => console.log('next:', value),\n * error: err => console.log('error:', err),\n * complete: () => console.log('the end'),\n * });\n *\n * // Outputs\n * // next: 10\n * // next: 20\n * // next: 30\n * // the end\n * ```\n *\n * Emit the array `[1, 2, 3]`\n *\n * ```ts\n * import { of } from 'rxjs';\n *\n * of([1, 2, 3])\n * .subscribe({\n * next: value => console.log('next:', value),\n * error: err => console.log('error:', err),\n * complete: () => console.log('the end'),\n * });\n *\n * // Outputs\n * // next: [1, 2, 3]\n * // the end\n * ```\n *\n * @see {@link from}\n * @see {@link range}\n *\n * @param {...T} values A comma separated list of arguments you want to be emitted\n * @return {Observable} An Observable that emits the arguments\n * described above and then completes.\n */\nexport function of<T>(...args: Array<T | SchedulerLike>): Observable<T> {\n const scheduler = popScheduler(args);\n return from(args as T[], scheduler);\n}\n", "import { Observable } from '../Observable';\nimport { Subscriber } from '../Subscriber';\nimport { SchedulerLike } from '../types';\nimport { isFunction } from '../util/isFunction';\n\n/**\n * Creates an observable that will create an error instance and push it to the consumer as an error\n * immediately upon subscription.\n *\n * <span class=\"informal\">Just errors and does nothing else</span>\n *\n * ![](throw.png)\n *\n * This creation function is useful for creating an observable that will create an error and error every\n * time it is subscribed to. Generally, inside of most operators when you might want to return an errored\n * observable, this is unnecessary. In most cases, such as in the inner return of {@link concatMap},\n * {@link mergeMap}, {@link defer}, and many others, you can simply throw the error, and RxJS will pick\n * that up and notify the consumer of the error.\n *\n * ## Example\n *\n * Create a simple observable that will create a new error with a timestamp and log it\n * and the message every time you subscribe to it\n *\n * ```ts\n * import { throwError } from 'rxjs';\n *\n * let errorCount = 0;\n *\n * const errorWithTimestamp$ = throwError(() => {\n * const error: any = new Error(`This is error number ${ ++errorCount }`);\n * error.timestamp = Date.now();\n * return error;\n * });\n *\n * errorWithTimestamp$.subscribe({\n * error: err => console.log(err.timestamp, err.message)\n * });\n *\n * errorWithTimestamp$.subscribe({\n * error: err => console.log(err.timestamp, err.message)\n * });\n *\n * // Logs the timestamp and a new error message for each subscription\n * ```\n *\n * ### Unnecessary usage\n *\n * Using `throwError` inside of an operator or creation function\n * with a callback, is usually not necessary\n *\n * ```ts\n * import { of, concatMap, timer, throwError } from 'rxjs';\n *\n * const delays$ = of(1000, 2000, Infinity, 3000);\n *\n * delays$.pipe(\n * concatMap(ms => {\n * if (ms < 10000) {\n * return timer(ms);\n * } else {\n * // This is probably overkill.\n * return throwError(() => new Error(`Invalid time ${ ms }`));\n * }\n * })\n * )\n * .subscribe({\n * next: console.log,\n * error: console.error\n * });\n * ```\n *\n * You can just throw the error instead\n *\n * ```ts\n * import { of, concatMap, timer } from 'rxjs';\n *\n * const delays$ = of(1000, 2000, Infinity, 3000);\n *\n * delays$.pipe(\n * concatMap(ms => {\n * if (ms < 10000) {\n * return timer(ms);\n * } else {\n * // Cleaner and easier to read for most folks.\n * throw new Error(`Invalid time ${ ms }`);\n * }\n * })\n * )\n * .subscribe({\n * next: console.log,\n * error: console.error\n * });\n * ```\n *\n * @param errorFactory A factory function that will create the error instance that is pushed.\n */\nexport function throwError(errorFactory: () => any): Observable<never>;\n\n/**\n * Returns an observable that will error with the specified error immediately upon subscription.\n *\n * @param error The error instance to emit\n * @deprecated Support for passing an error value will be removed in v8. Instead, pass a factory function to `throwError(() => new Error('test'))`. This is\n * because it will create the error at the moment it should be created and capture a more appropriate stack trace. If\n * for some reason you need to create the error ahead of time, you can still do that: `const err = new Error('test'); throwError(() => err);`.\n */\nexport function throwError(error: any): Observable<never>;\n\n/**\n * Notifies the consumer of an error using a given scheduler by scheduling it at delay `0` upon subscription.\n *\n * @param errorOrErrorFactory An error instance or error factory\n * @param scheduler A scheduler to use to schedule the error notification\n * @deprecated The `scheduler` parameter will be removed in v8.\n * Use `throwError` in combination with {@link observeOn}: `throwError(() => new Error('test')).pipe(observeOn(scheduler));`.\n * Details: https://rxjs.dev/deprecations/scheduler-argument\n */\nexport function throwError(errorOrErrorFactory: any, scheduler: SchedulerLike): Observable<never>;\n\nexport function throwError(errorOrErrorFactory: any, scheduler?: SchedulerLike): Observable<never> {\n const errorFactory = isFunction(errorOrErrorFactory) ? errorOrErrorFactory : () => errorOrErrorFactory;\n const init = (subscriber: Subscriber<never>) => subscriber.error(errorFactory());\n return new Observable(scheduler ? (subscriber) => scheduler.schedule(init as any, 0, subscriber) : init);\n}\n", "/**\n * Checks to see if a value is not only a `Date` object,\n * but a *valid* `Date` object that can be converted to a\n * number. For example, `new Date('blah')` is indeed an\n * `instanceof Date`, however it cannot be converted to a\n * number.\n */\nexport function isValidDate(value: any): value is Date {\n return value instanceof Date && !isNaN(value as any);\n}\n", "import { OperatorFunction } from '../types';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\nexport function map<T, R>(project: (value: T, index: number) => R): OperatorFunction<T, R>;\n/** @deprecated Use a closure instead of a `thisArg`. Signatures accepting a `thisArg` will be removed in v8. */\nexport function map<T, R, A>(project: (this: A, value: T, index: number) => R, thisArg: A): OperatorFunction<T, R>;\n\n/**\n * Applies a given `project` function to each value emitted by the source\n * Observable, and emits the resulting values as an Observable.\n *\n * <span class=\"informal\">Like [Array.prototype.map()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map),\n * it passes each source value through a transformation function to get\n * corresponding output values.</span>\n *\n * ![](map.png)\n *\n * Similar to the well known `Array.prototype.map` function, this operator\n * applies a projection to each value and emits that projection in the output\n * Observable.\n *\n * ## Example\n *\n * Map every click to the `clientX` position of that click\n *\n * ```ts\n * import { fromEvent, map } from 'rxjs';\n *\n * const clicks = fromEvent<PointerEvent>(document, 'click');\n * const positions = clicks.pipe(map(ev => ev.clientX));\n *\n * positions.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link mapTo}\n * @see {@link pluck}\n *\n * @param {function(value: T, index: number): R} project The function to apply\n * to each `value` emitted by the source Observable. The `index` parameter is\n * the number `i` for the i-th emission that has happened since the\n * subscription, starting from the number `0`.\n * @param {any} [thisArg] An optional argument to define what `this` is in the\n * `project` function.\n * @return A function that returns an Observable that emits the values from the\n * source Observable transformed by the given `project` function.\n */\nexport function map<T, R>(project: (value: T, index: number) => R, thisArg?: any): OperatorFunction<T, R> {\n return operate((source, subscriber) => {\n // The index of the value from the source. Used with projection.\n let index = 0;\n // Subscribe to the source, all errors and completions are sent along\n // to the consumer.\n source.subscribe(\n createOperatorSubscriber(subscriber, (value: T) => {\n // Call the projection function with the appropriate this context,\n // and send the resulting value to the consumer.\n subscriber.next(project.call(thisArg, value, index++));\n })\n );\n });\n}\n", "import { OperatorFunction } from \"../types\";\nimport { map } from \"../operators/map\";\n\nconst { isArray } = Array;\n\nfunction callOrApply<T, R>(fn: ((...values: T[]) => R), args: T|T[]): R {\n return isArray(args) ? fn(...args) : fn(args);\n}\n\n/**\n * Used in several -- mostly deprecated -- situations where we need to \n * apply a list of arguments or a single argument to a result selector.\n */\nexport function mapOneOrManyArgs<T, R>(fn: ((...values: T[]) => R)): OperatorFunction<T|T[], R> {\n return map(args => callOrApply(fn, args))\n}", "const { isArray } = Array;\nconst { getPrototypeOf, prototype: objectProto, keys: getKeys } = Object;\n\n/**\n * Used in functions where either a list of arguments, a single array of arguments, or a\n * dictionary of arguments can be returned. Returns an object with an `args` property with\n * the arguments in an array, if it is a dictionary, it will also return the `keys` in another\n * property.\n */\nexport function argsArgArrayOrObject<T, O extends Record<string, T>>(args: T[] | [O] | [T[]]): { args: T[]; keys: string[] | null } {\n if (args.length === 1) {\n const first = args[0];\n if (isArray(first)) {\n return { args: first, keys: null };\n }\n if (isPOJO(first)) {\n const keys = getKeys(first);\n return {\n args: keys.map((key) => first[key]),\n keys,\n };\n }\n }\n\n return { args: args as T[], keys: null };\n}\n\nfunction isPOJO(obj: any): obj is object {\n return obj && typeof obj === 'object' && getPrototypeOf(obj) === objectProto;\n}\n", "export function createObject(keys: string[], values: any[]) {\n return keys.reduce((result, key, i) => ((result[key] = values[i]), result), {} as any);\n}\n", "import { Observable } from '../Observable';\nimport { ObservableInput, SchedulerLike, ObservedValueOf, ObservableInputTuple } from '../types';\nimport { argsArgArrayOrObject } from '../util/argsArgArrayOrObject';\nimport { Subscriber } from '../Subscriber';\nimport { from } from './from';\nimport { identity } from '../util/identity';\nimport { Subscription } from '../Subscription';\nimport { mapOneOrManyArgs } from '../util/mapOneOrManyArgs';\nimport { popResultSelector, popScheduler } from '../util/args';\nimport { createObject } from '../util/createObject';\nimport { createOperatorSubscriber } from '../operators/OperatorSubscriber';\nimport { AnyCatcher } from '../AnyCatcher';\nimport { executeSchedule } from '../util/executeSchedule';\n\n// combineLatest(any)\n// We put this first because we need to catch cases where the user has supplied\n// _exactly `any`_ as the argument. Since `any` literally matches _anything_,\n// we don't want it to randomly hit one of the other type signatures below,\n// as we have no idea at build-time what type we should be returning when given an any.\n\n/**\n * You have passed `any` here, we can't figure out if it is\n * an array or an object, so you're getting `unknown`. Use better types.\n * @param arg Something typed as `any`\n */\nexport function combineLatest<T extends AnyCatcher>(arg: T): Observable<unknown>;\n\n// combineLatest([a, b, c])\nexport function combineLatest(sources: []): Observable<never>;\nexport function combineLatest<A extends readonly unknown[]>(sources: readonly [...ObservableInputTuple<A>]): Observable<A>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `combineLatestAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function combineLatest<A extends readonly unknown[], R>(\n sources: readonly [...ObservableInputTuple<A>],\n resultSelector: (...values: A) => R,\n scheduler: SchedulerLike\n): Observable<R>;\nexport function combineLatest<A extends readonly unknown[], R>(\n sources: readonly [...ObservableInputTuple<A>],\n resultSelector: (...values: A) => R\n): Observable<R>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `combineLatestAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function combineLatest<A extends readonly unknown[]>(\n sources: readonly [...ObservableInputTuple<A>],\n scheduler: SchedulerLike\n): Observable<A>;\n\n// combineLatest(a, b, c)\n/** @deprecated Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument */\nexport function combineLatest<A extends readonly unknown[]>(...sources: [...ObservableInputTuple<A>]): Observable<A>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `combineLatestAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function combineLatest<A extends readonly unknown[], R>(\n ...sourcesAndResultSelectorAndScheduler: [...ObservableInputTuple<A>, (...values: A) => R, SchedulerLike]\n): Observable<R>;\n/** @deprecated Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument */\nexport function combineLatest<A extends readonly unknown[], R>(\n ...sourcesAndResultSelector: [...ObservableInputTuple<A>, (...values: A) => R]\n): Observable<R>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `combineLatestAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function combineLatest<A extends readonly unknown[]>(\n ...sourcesAndScheduler: [...ObservableInputTuple<A>, SchedulerLike]\n): Observable<A>;\n\n// combineLatest({a, b, c})\nexport function combineLatest(sourcesObject: { [K in any]: never }): Observable<never>;\nexport function combineLatest<T extends Record<string, ObservableInput<any>>>(\n sourcesObject: T\n): Observable<{ [K in keyof T]: ObservedValueOf<T[K]> }>;\n\n/**\n * Combines multiple Observables to create an Observable whose values are\n * calculated from the latest values of each of its input Observables.\n *\n * <span class=\"informal\">Whenever any input Observable emits a value, it\n * computes a formula using the latest values from all the inputs, then emits\n * the output of that formula.</span>\n *\n * ![](combineLatest.png)\n *\n * `combineLatest` combines the values from all the Observables passed in the\n * observables array. This is done by subscribing to each Observable in order and,\n * whenever any Observable emits, collecting an array of the most recent\n * values from each Observable. So if you pass `n` Observables to this operator,\n * the returned Observable will always emit an array of `n` values, in an order\n * corresponding to the order of the passed Observables (the value from the first Observable\n * will be at index 0 of the array and so on).\n *\n * Static version of `combineLatest` accepts an array of Observables. Note that an array of\n * Observables is a good choice, if you don't know beforehand how many Observables\n * you will combine. Passing an empty array will result in an Observable that\n * completes immediately.\n *\n * To ensure the output array always has the same length, `combineLatest` will\n * actually wait for all input Observables to emit at least once,\n * before it starts emitting results. This means if some Observable emits\n * values before other Observables started emitting, all these values but the last\n * will be lost. On the other hand, if some Observable does not emit a value but\n * completes, resulting Observable will complete at the same moment without\n * emitting anything, since it will now be impossible to include a value from the\n * completed Observable in the resulting array. Also, if some input Observable does\n * not emit any value and never completes, `combineLatest` will also never emit\n * and never complete, since, again, it will wait for all streams to emit some\n * value.\n *\n * If at least one Observable was passed to `combineLatest` and all passed Observables\n * emitted something, the resulting Observable will complete when all combined\n * streams complete. So even if some Observable completes, the result of\n * `combineLatest` will still emit values when other Observables do. In case\n * of a completed Observable, its value from now on will always be the last\n * emitted value. On the other hand, if any Observable errors, `combineLatest`\n * will error immediately as well, and all other Observables will be unsubscribed.\n *\n * ## Examples\n *\n * Combine two timer Observables\n *\n * ```ts\n * import { timer, combineLatest } from 'rxjs';\n *\n * const firstTimer = timer(0, 1000); // emit 0, 1, 2... after every second, starting from now\n * const secondTimer = timer(500, 1000); // emit 0, 1, 2... after every second, starting 0,5s from now\n * const combinedTimers = combineLatest([firstTimer, secondTimer]);\n * combinedTimers.subscribe(value => console.log(value));\n * // Logs\n * // [0, 0] after 0.5s\n * // [1, 0] after 1s\n * // [1, 1] after 1.5s\n * // [2, 1] after 2s\n * ```\n *\n * Combine a dictionary of Observables\n *\n * ```ts\n * import { of, delay, startWith, combineLatest } from 'rxjs';\n *\n * const observables = {\n * a: of(1).pipe(delay(1000), startWith(0)),\n * b: of(5).pipe(delay(5000), startWith(0)),\n * c: of(10).pipe(delay(10000), startWith(0))\n * };\n * const combined = combineLatest(observables);\n * combined.subscribe(value => console.log(value));\n * // Logs\n * // { a: 0, b: 0, c: 0 } immediately\n * // { a: 1, b: 0, c: 0 } after 1s\n * // { a: 1, b: 5, c: 0 } after 5s\n * // { a: 1, b: 5, c: 10 } after 10s\n * ```\n *\n * Combine an array of Observables\n *\n * ```ts\n * import { of, delay, startWith, combineLatest } from 'rxjs';\n *\n * const observables = [1, 5, 10].map(\n * n => of(n).pipe(\n * delay(n * 1000), // emit 0 and then emit n after n seconds\n * startWith(0)\n * )\n * );\n * const combined = combineLatest(observables);\n * combined.subscribe(value => console.log(value));\n * // Logs\n * // [0, 0, 0] immediately\n * // [1, 0, 0] after 1s\n * // [1, 5, 0] after 5s\n * // [1, 5, 10] after 10s\n * ```\n *\n * Use map operator to dynamically calculate the Body-Mass Index\n *\n * ```ts\n * import { of, combineLatest, map } from 'rxjs';\n *\n * const weight = of(70, 72, 76, 79, 75);\n * const height = of(1.76, 1.77, 1.78);\n * const bmi = combineLatest([weight, height]).pipe(\n * map(([w, h]) => w / (h * h)),\n * );\n * bmi.subscribe(x => console.log('BMI is ' + x));\n *\n * // With output to console:\n * // BMI is 24.212293388429753\n * // BMI is 23.93948099205209\n * // BMI is 23.671253629592222\n * ```\n *\n * @see {@link combineLatestAll}\n * @see {@link merge}\n * @see {@link withLatestFrom}\n *\n * @param {ObservableInput} [observables] An array of input Observables to combine with each other.\n * An array of Observables must be given as the first argument.\n * @param {function} [project] An optional function to project the values from\n * the combined latest values into a new value on the output Observable.\n * @param {SchedulerLike} [scheduler=null] The {@link SchedulerLike} to use for subscribing to\n * each input Observable.\n * @return {Observable} An Observable of projected values from the most recent\n * values from each input Observable, or an array of the most recent values from\n * each input Observable.\n */\nexport function combineLatest<O extends ObservableInput<any>, R>(...args: any[]): Observable<R> | Observable<ObservedValueOf<O>[]> {\n const scheduler = popScheduler(args);\n const resultSelector = popResultSelector(args);\n\n const { args: observables, keys } = argsArgArrayOrObject(args);\n\n if (observables.length === 0) {\n // If no observables are passed, or someone has passed an empty array\n // of observables, or even an empty object POJO, we need to just\n // complete (EMPTY), but we have to honor the scheduler provided if any.\n return from([], scheduler as any);\n }\n\n const result = new Observable<ObservedValueOf<O>[]>(\n combineLatestInit(\n observables as ObservableInput<ObservedValueOf<O>>[],\n scheduler,\n keys\n ? // A handler for scrubbing the array of args into a dictionary.\n (values) => createObject(keys, values)\n : // A passthrough to just return the array\n identity\n )\n );\n\n return resultSelector ? (result.pipe(mapOneOrManyArgs(resultSelector)) as Observable<R>) : result;\n}\n\nexport function combineLatestInit(\n observables: ObservableInput<any>[],\n scheduler?: SchedulerLike,\n valueTransform: (values: any[]) => any = identity\n) {\n return (subscriber: Subscriber<any>) => {\n // The outer subscription. We're capturing this in a function\n // because we may have to schedule it.\n maybeSchedule(\n scheduler,\n () => {\n const { length } = observables;\n // A store for the values each observable has emitted so far. We match observable to value on index.\n const values = new Array(length);\n // The number of currently active subscriptions, as they complete, we decrement this number to see if\n // we are all done combining values, so we can complete the result.\n let active = length;\n // The number of inner sources that still haven't emitted the first value\n // We need to track this because all sources need to emit one value in order\n // to start emitting values.\n let remainingFirstValues = length;\n // The loop to kick off subscription. We're keying everything on index `i` to relate the observables passed\n // in to the slot in the output array or the key in the array of keys in the output dictionary.\n for (let i = 0; i < length; i++) {\n maybeSchedule(\n scheduler,\n () => {\n const source = from(observables[i], scheduler as any);\n let hasFirstValue = false;\n source.subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => {\n // When we get a value, record it in our set of values.\n values[i] = value;\n if (!hasFirstValue) {\n // If this is our first value, record that.\n hasFirstValue = true;\n remainingFirstValues--;\n }\n if (!remainingFirstValues) {\n // We're not waiting for any more\n // first values, so we can emit!\n subscriber.next(valueTransform(values.slice()));\n }\n },\n () => {\n if (!--active) {\n // We only complete the result if we have no more active\n // inner observables.\n subscriber.complete();\n }\n }\n )\n );\n },\n subscriber\n );\n }\n },\n subscriber\n );\n };\n}\n\n/**\n * A small utility to handle the couple of locations where we want to schedule if a scheduler was provided,\n * but we don't if there was no scheduler.\n */\nfunction maybeSchedule(scheduler: SchedulerLike | undefined, execute: () => void, subscription: Subscription) {\n if (scheduler) {\n executeSchedule(subscription, scheduler, execute);\n } else {\n execute();\n }\n}\n", "import { Observable } from '../Observable';\nimport { innerFrom } from '../observable/innerFrom';\nimport { Subscriber } from '../Subscriber';\nimport { ObservableInput, SchedulerLike } from '../types';\nimport { executeSchedule } from '../util/executeSchedule';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\n/**\n * A process embodying the general \"merge\" strategy. This is used in\n * `mergeMap` and `mergeScan` because the logic is otherwise nearly identical.\n * @param source The original source observable\n * @param subscriber The consumer subscriber\n * @param project The projection function to get our inner sources\n * @param concurrent The number of concurrent inner subscriptions\n * @param onBeforeNext Additional logic to apply before nexting to our consumer\n * @param expand If `true` this will perform an \"expand\" strategy, which differs only\n * in that it recurses, and the inner subscription must be schedule-able.\n * @param innerSubScheduler A scheduler to use to schedule inner subscriptions,\n * this is to support the expand strategy, mostly, and should be deprecated\n */\nexport function mergeInternals<T, R>(\n source: Observable<T>,\n subscriber: Subscriber<R>,\n project: (value: T, index: number) => ObservableInput<R>,\n concurrent: number,\n onBeforeNext?: (innerValue: R) => void,\n expand?: boolean,\n innerSubScheduler?: SchedulerLike,\n additionalFinalizer?: () => void\n) {\n // Buffered values, in the event of going over our concurrency limit\n const buffer: T[] = [];\n // The number of active inner subscriptions.\n let active = 0;\n // An index to pass to our accumulator function\n let index = 0;\n // Whether or not the outer source has completed.\n let isComplete = false;\n\n /**\n * Checks to see if we can complete our result or not.\n */\n const checkComplete = () => {\n // If the outer has completed, and nothing is left in the buffer,\n // and we don't have any active inner subscriptions, then we can\n // Emit the state and complete.\n if (isComplete && !buffer.length && !active) {\n subscriber.complete();\n }\n };\n\n // If we're under our concurrency limit, just start the inner subscription, otherwise buffer and wait.\n const outerNext = (value: T) => (active < concurrent ? doInnerSub(value) : buffer.push(value));\n\n const doInnerSub = (value: T) => {\n // If we're expanding, we need to emit the outer values and the inner values\n // as the inners will \"become outers\" in a way as they are recursively fed\n // back to the projection mechanism.\n expand && subscriber.next(value as any);\n\n // Increment the number of active subscriptions so we can track it\n // against our concurrency limit later.\n active++;\n\n // A flag used to show that the inner observable completed.\n // This is checked during finalization to see if we should\n // move to the next item in the buffer, if there is on.\n let innerComplete = false;\n\n // Start our inner subscription.\n innerFrom(project(value, index++)).subscribe(\n createOperatorSubscriber(\n subscriber,\n (innerValue) => {\n // `mergeScan` has additional handling here. For example\n // taking the inner value and updating state.\n onBeforeNext?.(innerValue);\n\n if (expand) {\n // If we're expanding, then just recurse back to our outer\n // handler. It will emit the value first thing.\n outerNext(innerValue as any);\n } else {\n // Otherwise, emit the inner value.\n subscriber.next(innerValue);\n }\n },\n () => {\n // Flag that we have completed, so we know to check the buffer\n // during finalization.\n innerComplete = true;\n },\n // Errors are passed to the destination.\n undefined,\n () => {\n // During finalization, if the inner completed (it wasn't errored or\n // cancelled), then we want to try the next item in the buffer if\n // there is one.\n if (innerComplete) {\n // We have to wrap this in a try/catch because it happens during\n // finalization, possibly asynchronously, and we want to pass\n // any errors that happen (like in a projection function) to\n // the outer Subscriber.\n try {\n // INNER SOURCE COMPLETE\n // Decrement the active count to ensure that the next time\n // we try to call `doInnerSub`, the number is accurate.\n active--;\n // If we have more values in the buffer, try to process those\n // Note that this call will increment `active` ahead of the\n // next conditional, if there were any more inner subscriptions\n // to start.\n while (buffer.length && active < concurrent) {\n const bufferedValue = buffer.shift()!;\n // Particularly for `expand`, we need to check to see if a scheduler was provided\n // for when we want to start our inner subscription. Otherwise, we just start\n // are next inner subscription.\n if (innerSubScheduler) {\n executeSchedule(subscriber, innerSubScheduler, () => doInnerSub(bufferedValue));\n } else {\n doInnerSub(bufferedValue);\n }\n }\n // Check to see if we can complete, and complete if so.\n checkComplete();\n } catch (err) {\n subscriber.error(err);\n }\n }\n }\n )\n );\n };\n\n // Subscribe to our source observable.\n source.subscribe(\n createOperatorSubscriber(subscriber, outerNext, () => {\n // Outer completed, make a note of it, and check to see if we can complete everything.\n isComplete = true;\n checkComplete();\n })\n );\n\n // Additional finalization (for when the destination is torn down).\n // Other finalization is added implicitly via subscription above.\n return () => {\n additionalFinalizer?.();\n };\n}\n", "import { ObservableInput, OperatorFunction, ObservedValueOf } from '../types';\nimport { map } from './map';\nimport { innerFrom } from '../observable/innerFrom';\nimport { operate } from '../util/lift';\nimport { mergeInternals } from './mergeInternals';\nimport { isFunction } from '../util/isFunction';\n\n/* tslint:disable:max-line-length */\nexport function mergeMap<T, O extends ObservableInput<any>>(\n project: (value: T, index: number) => O,\n concurrent?: number\n): OperatorFunction<T, ObservedValueOf<O>>;\n/** @deprecated The `resultSelector` parameter will be removed in v8. Use an inner `map` instead. Details: https://rxjs.dev/deprecations/resultSelector */\nexport function mergeMap<T, O extends ObservableInput<any>>(\n project: (value: T, index: number) => O,\n resultSelector: undefined,\n concurrent?: number\n): OperatorFunction<T, ObservedValueOf<O>>;\n/** @deprecated The `resultSelector` parameter will be removed in v8. Use an inner `map` instead. Details: https://rxjs.dev/deprecations/resultSelector */\nexport function mergeMap<T, R, O extends ObservableInput<any>>(\n project: (value: T, index: number) => O,\n resultSelector: (outerValue: T, innerValue: ObservedValueOf<O>, outerIndex: number, innerIndex: number) => R,\n concurrent?: number\n): OperatorFunction<T, R>;\n/* tslint:enable:max-line-length */\n\n/**\n * Projects each source value to an Observable which is merged in the output\n * Observable.\n *\n * <span class=\"informal\">Maps each value to an Observable, then flattens all of\n * these inner Observables using {@link mergeAll}.</span>\n *\n * ![](mergeMap.png)\n *\n * Returns an Observable that emits items based on applying a function that you\n * supply to each item emitted by the source Observable, where that function\n * returns an Observable, and then merging those resulting Observables and\n * emitting the results of this merger.\n *\n * ## Example\n *\n * Map and flatten each letter to an Observable ticking every 1 second\n *\n * ```ts\n * import { of, mergeMap, interval, map } from 'rxjs';\n *\n * const letters = of('a', 'b', 'c');\n * const result = letters.pipe(\n * mergeMap(x => interval(1000).pipe(map(i => x + i)))\n * );\n *\n * result.subscribe(x => console.log(x));\n *\n * // Results in the following:\n * // a0\n * // b0\n * // c0\n * // a1\n * // b1\n * // c1\n * // continues to list a, b, c every second with respective ascending integers\n * ```\n *\n * @see {@link concatMap}\n * @see {@link exhaustMap}\n * @see {@link merge}\n * @see {@link mergeAll}\n * @see {@link mergeMapTo}\n * @see {@link mergeScan}\n * @see {@link switchMap}\n *\n * @param {function(value: T, ?index: number): ObservableInput} project A function\n * that, when applied to an item emitted by the source Observable, returns an\n * Observable.\n * @param {number} [concurrent=Infinity] Maximum number of input\n * Observables being subscribed to concurrently.\n * @return A function that returns an Observable that emits the result of\n * applying the projection function (and the optional deprecated\n * `resultSelector`) to each item emitted by the source Observable and merging\n * the results of the Observables obtained from this transformation.\n */\nexport function mergeMap<T, R, O extends ObservableInput<any>>(\n project: (value: T, index: number) => O,\n resultSelector?: ((outerValue: T, innerValue: ObservedValueOf<O>, outerIndex: number, innerIndex: number) => R) | number,\n concurrent: number = Infinity\n): OperatorFunction<T, ObservedValueOf<O> | R> {\n if (isFunction(resultSelector)) {\n // DEPRECATED PATH\n return mergeMap((a, i) => map((b: any, ii: number) => resultSelector(a, b, i, ii))(innerFrom(project(a, i))), concurrent);\n } else if (typeof resultSelector === 'number') {\n concurrent = resultSelector;\n }\n\n return operate((source, subscriber) => mergeInternals(source, subscriber, project, concurrent));\n}\n", "import { mergeMap } from './mergeMap';\nimport { identity } from '../util/identity';\nimport { OperatorFunction, ObservableInput, ObservedValueOf } from '../types';\n\n/**\n * Converts a higher-order Observable into a first-order Observable which\n * concurrently delivers all values that are emitted on the inner Observables.\n *\n * <span class=\"informal\">Flattens an Observable-of-Observables.</span>\n *\n * ![](mergeAll.png)\n *\n * `mergeAll` subscribes to an Observable that emits Observables, also known as\n * a higher-order Observable. Each time it observes one of these emitted inner\n * Observables, it subscribes to that and delivers all the values from the\n * inner Observable on the output Observable. The output Observable only\n * completes once all inner Observables have completed. Any error delivered by\n * a inner Observable will be immediately emitted on the output Observable.\n *\n * ## Examples\n *\n * Spawn a new interval Observable for each click event, and blend their outputs as one Observable\n *\n * ```ts\n * import { fromEvent, map, interval, mergeAll } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const higherOrder = clicks.pipe(map(() => interval(1000)));\n * const firstOrder = higherOrder.pipe(mergeAll());\n *\n * firstOrder.subscribe(x => console.log(x));\n * ```\n *\n * Count from 0 to 9 every second for each click, but only allow 2 concurrent timers\n *\n * ```ts\n * import { fromEvent, map, interval, take, mergeAll } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const higherOrder = clicks.pipe(\n * map(() => interval(1000).pipe(take(10)))\n * );\n * const firstOrder = higherOrder.pipe(mergeAll(2));\n *\n * firstOrder.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link combineLatestAll}\n * @see {@link concatAll}\n * @see {@link exhaustAll}\n * @see {@link merge}\n * @see {@link mergeMap}\n * @see {@link mergeMapTo}\n * @see {@link mergeScan}\n * @see {@link switchAll}\n * @see {@link switchMap}\n * @see {@link zipAll}\n *\n * @param {number} [concurrent=Infinity] Maximum number of inner\n * Observables being subscribed to concurrently.\n * @return A function that returns an Observable that emits values coming from\n * all the inner Observables emitted by the source Observable.\n */\nexport function mergeAll<O extends ObservableInput<any>>(concurrent: number = Infinity): OperatorFunction<O, ObservedValueOf<O>> {\n return mergeMap(identity, concurrent);\n}\n", "import { mergeAll } from './mergeAll';\nimport { OperatorFunction, ObservableInput, ObservedValueOf } from '../types';\n\n/**\n * Converts a higher-order Observable into a first-order Observable by\n * concatenating the inner Observables in order.\n *\n * <span class=\"informal\">Flattens an Observable-of-Observables by putting one\n * inner Observable after the other.</span>\n *\n * ![](concatAll.svg)\n *\n * Joins every Observable emitted by the source (a higher-order Observable), in\n * a serial fashion. It subscribes to each inner Observable only after the\n * previous inner Observable has completed, and merges all of their values into\n * the returned observable.\n *\n * __Warning:__ If the source Observable emits Observables quickly and\n * endlessly, and the inner Observables it emits generally complete slower than\n * the source emits, you can run into memory issues as the incoming Observables\n * collect in an unbounded buffer.\n *\n * Note: `concatAll` is equivalent to `mergeAll` with concurrency parameter set\n * to `1`.\n *\n * ## Example\n *\n * For each click event, tick every second from 0 to 3, with no concurrency\n *\n * ```ts\n * import { fromEvent, map, interval, take, concatAll } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const higherOrder = clicks.pipe(\n * map(() => interval(1000).pipe(take(4)))\n * );\n * const firstOrder = higherOrder.pipe(concatAll());\n * firstOrder.subscribe(x => console.log(x));\n *\n * // Results in the following:\n * // (results are not concurrent)\n * // For every click on the \"document\" it will emit values 0 to 3 spaced\n * // on a 1000ms interval\n * // one click = 1000ms-> 0 -1000ms-> 1 -1000ms-> 2 -1000ms-> 3\n * ```\n *\n * @see {@link combineLatestAll}\n * @see {@link concat}\n * @see {@link concatMap}\n * @see {@link concatMapTo}\n * @see {@link exhaustAll}\n * @see {@link mergeAll}\n * @see {@link switchAll}\n * @see {@link switchMap}\n * @see {@link zipAll}\n *\n * @return A function that returns an Observable emitting values from all the\n * inner Observables concatenated.\n */\nexport function concatAll<O extends ObservableInput<any>>(): OperatorFunction<O, ObservedValueOf<O>> {\n return mergeAll(1);\n}\n", "import { Observable } from '../Observable';\nimport { ObservableInputTuple, SchedulerLike } from '../types';\nimport { concatAll } from '../operators/concatAll';\nimport { popScheduler } from '../util/args';\nimport { from } from './from';\n\nexport function concat<T extends readonly unknown[]>(...inputs: [...ObservableInputTuple<T>]): Observable<T[number]>;\nexport function concat<T extends readonly unknown[]>(\n ...inputsAndScheduler: [...ObservableInputTuple<T>, SchedulerLike]\n): Observable<T[number]>;\n\n/**\n * Creates an output Observable which sequentially emits all values from the first given\n * Observable and then moves on to the next.\n *\n * <span class=\"informal\">Concatenates multiple Observables together by\n * sequentially emitting their values, one Observable after the other.</span>\n *\n * ![](concat.png)\n *\n * `concat` joins multiple Observables together, by subscribing to them one at a time and\n * merging their results into the output Observable. You can pass either an array of\n * Observables, or put them directly as arguments. Passing an empty array will result\n * in Observable that completes immediately.\n *\n * `concat` will subscribe to first input Observable and emit all its values, without\n * changing or affecting them in any way. When that Observable completes, it will\n * subscribe to then next Observable passed and, again, emit its values. This will be\n * repeated, until the operator runs out of Observables. When last input Observable completes,\n * `concat` will complete as well. At any given moment only one Observable passed to operator\n * emits values. If you would like to emit values from passed Observables concurrently, check out\n * {@link merge} instead, especially with optional `concurrent` parameter. As a matter of fact,\n * `concat` is an equivalent of `merge` operator with `concurrent` parameter set to `1`.\n *\n * Note that if some input Observable never completes, `concat` will also never complete\n * and Observables following the one that did not complete will never be subscribed. On the other\n * hand, if some Observable simply completes immediately after it is subscribed, it will be\n * invisible for `concat`, which will just move on to the next Observable.\n *\n * If any Observable in chain errors, instead of passing control to the next Observable,\n * `concat` will error immediately as well. Observables that would be subscribed after\n * the one that emitted error, never will.\n *\n * If you pass to `concat` the same Observable many times, its stream of values\n * will be \"replayed\" on every subscription, which means you can repeat given Observable\n * as many times as you like. If passing the same Observable to `concat` 1000 times becomes tedious,\n * you can always use {@link repeat}.\n *\n * ## Examples\n *\n * Concatenate a timer counting from 0 to 3 with a synchronous sequence from 1 to 10\n *\n * ```ts\n * import { interval, take, range, concat } from 'rxjs';\n *\n * const timer = interval(1000).pipe(take(4));\n * const sequence = range(1, 10);\n * const result = concat(timer, sequence);\n * result.subscribe(x => console.log(x));\n *\n * // results in:\n * // 0 -1000ms-> 1 -1000ms-> 2 -1000ms-> 3 -immediate-> 1 ... 10\n * ```\n *\n * Concatenate 3 Observables\n *\n * ```ts\n * import { interval, take, concat } from 'rxjs';\n *\n * const timer1 = interval(1000).pipe(take(10));\n * const timer2 = interval(2000).pipe(take(6));\n * const timer3 = interval(500).pipe(take(10));\n *\n * const result = concat(timer1, timer2, timer3);\n * result.subscribe(x => console.log(x));\n *\n * // results in the following:\n * // (Prints to console sequentially)\n * // -1000ms-> 0 -1000ms-> 1 -1000ms-> ... 9\n * // -2000ms-> 0 -2000ms-> 1 -2000ms-> ... 5\n * // -500ms-> 0 -500ms-> 1 -500ms-> ... 9\n * ```\n *\n * Concatenate the same Observable to repeat it\n *\n * ```ts\n * import { interval, take, concat } from 'rxjs';\n *\n * const timer = interval(1000).pipe(take(2));\n *\n * concat(timer, timer) // concatenating the same Observable!\n * .subscribe({\n * next: value => console.log(value),\n * complete: () => console.log('...and it is done!')\n * });\n *\n * // Logs:\n * // 0 after 1s\n * // 1 after 2s\n * // 0 after 3s\n * // 1 after 4s\n * // '...and it is done!' also after 4s\n * ```\n *\n * @see {@link concatAll}\n * @see {@link concatMap}\n * @see {@link concatMapTo}\n * @see {@link startWith}\n * @see {@link endWith}\n *\n * @param args Input Observables to concatenate.\n */\nexport function concat(...args: any[]): Observable<unknown> {\n return concatAll()(from(args, popScheduler(args)));\n}\n", "import { Observable } from '../Observable';\nimport { ObservedValueOf, ObservableInput } from '../types';\nimport { innerFrom } from './innerFrom';\n\n/**\n * Creates an Observable that, on subscribe, calls an Observable factory to\n * make an Observable for each new Observer.\n *\n * <span class=\"informal\">Creates the Observable lazily, that is, only when it\n * is subscribed.\n * </span>\n *\n * ![](defer.png)\n *\n * `defer` allows you to create an Observable only when the Observer\n * subscribes. It waits until an Observer subscribes to it, calls the given\n * factory function to get an Observable -- where a factory function typically\n * generates a new Observable -- and subscribes the Observer to this Observable.\n * In case the factory function returns a falsy value, then EMPTY is used as\n * Observable instead. Last but not least, an exception during the factory\n * function call is transferred to the Observer by calling `error`.\n *\n * ## Example\n *\n * Subscribe to either an Observable of clicks or an Observable of interval, at random\n *\n * ```ts\n * import { defer, fromEvent, interval } from 'rxjs';\n *\n * const clicksOrInterval = defer(() => {\n * return Math.random() > 0.5\n * ? fromEvent(document, 'click')\n * : interval(1000);\n * });\n * clicksOrInterval.subscribe(x => console.log(x));\n *\n * // Results in the following behavior:\n * // If the result of Math.random() is greater than 0.5 it will listen\n * // for clicks anywhere on the \"document\"; when document is clicked it\n * // will log a MouseEvent object to the console. If the result is less\n * // than 0.5 it will emit ascending numbers, one every second(1000ms).\n * ```\n *\n * @see {@link Observable}\n *\n * @param {function(): ObservableInput} observableFactory The Observable\n * factory function to invoke for each Observer that subscribes to the output\n * Observable. May also return a Promise, which will be converted on the fly\n * to an Observable.\n * @return {Observable} An Observable whose Observers' subscriptions trigger\n * an invocation of the given Observable factory function.\n */\nexport function defer<R extends ObservableInput<any>>(observableFactory: () => R): Observable<ObservedValueOf<R>> {\n return new Observable<ObservedValueOf<R>>((subscriber) => {\n innerFrom(observableFactory()).subscribe(subscriber);\n });\n}\n", "import { innerFrom } from '../observable/innerFrom';\nimport { Observable } from '../Observable';\nimport { mergeMap } from '../operators/mergeMap';\nimport { isArrayLike } from '../util/isArrayLike';\nimport { isFunction } from '../util/isFunction';\nimport { mapOneOrManyArgs } from '../util/mapOneOrManyArgs';\n\n// These constants are used to create handler registry functions using array mapping below.\nconst nodeEventEmitterMethods = ['addListener', 'removeListener'] as const;\nconst eventTargetMethods = ['addEventListener', 'removeEventListener'] as const;\nconst jqueryMethods = ['on', 'off'] as const;\n\nexport interface NodeStyleEventEmitter {\n addListener(eventName: string | symbol, handler: NodeEventHandler): this;\n removeListener(eventName: string | symbol, handler: NodeEventHandler): this;\n}\n\nexport type NodeEventHandler = (...args: any[]) => void;\n\n// For APIs that implement `addListener` and `removeListener` methods that may\n// not use the same arguments or return EventEmitter values\n// such as React Native\nexport interface NodeCompatibleEventEmitter {\n addListener(eventName: string, handler: NodeEventHandler): void | {};\n removeListener(eventName: string, handler: NodeEventHandler): void | {};\n}\n\n// Use handler types like those in @types/jquery. See:\n// https://github.com/DefinitelyTyped/DefinitelyTyped/blob/847731ba1d7fa6db6b911c0e43aa0afe596e7723/types/jquery/misc.d.ts#L6395\nexport interface JQueryStyleEventEmitter<TContext, T> {\n on(eventName: string, handler: (this: TContext, t: T, ...args: any[]) => any): void;\n off(eventName: string, handler: (this: TContext, t: T, ...args: any[]) => any): void;\n}\n\nexport interface EventListenerObject<E> {\n handleEvent(evt: E): void;\n}\n\nexport interface HasEventTargetAddRemove<E> {\n addEventListener(\n type: string,\n listener: ((evt: E) => void) | EventListenerObject<E> | null,\n options?: boolean | AddEventListenerOptions\n ): void;\n removeEventListener(\n type: string,\n listener: ((evt: E) => void) | EventListenerObject<E> | null,\n options?: EventListenerOptions | boolean\n ): void;\n}\n\nexport interface EventListenerOptions {\n capture?: boolean;\n passive?: boolean;\n once?: boolean;\n}\n\nexport interface AddEventListenerOptions extends EventListenerOptions {\n once?: boolean;\n passive?: boolean;\n}\n\nexport function fromEvent<T>(target: HasEventTargetAddRemove<T> | ArrayLike<HasEventTargetAddRemove<T>>, eventName: string): Observable<T>;\nexport function fromEvent<T, R>(\n target: HasEventTargetAddRemove<T> | ArrayLike<HasEventTargetAddRemove<T>>,\n eventName: string,\n resultSelector: (event: T) => R\n): Observable<R>;\nexport function fromEvent<T>(\n target: HasEventTargetAddRemove<T> | ArrayLike<HasEventTargetAddRemove<T>>,\n eventName: string,\n options: EventListenerOptions\n): Observable<T>;\nexport function fromEvent<T, R>(\n target: HasEventTargetAddRemove<T> | ArrayLike<HasEventTargetAddRemove<T>>,\n eventName: string,\n options: EventListenerOptions,\n resultSelector: (event: T) => R\n): Observable<R>;\n\nexport function fromEvent(target: NodeStyleEventEmitter | ArrayLike<NodeStyleEventEmitter>, eventName: string): Observable<unknown>;\n/** @deprecated Do not specify explicit type parameters. Signatures with type parameters that cannot be inferred will be removed in v8. */\nexport function fromEvent<T>(target: NodeStyleEventEmitter | ArrayLike<NodeStyleEventEmitter>, eventName: string): Observable<T>;\nexport function fromEvent<R>(\n target: NodeStyleEventEmitter | ArrayLike<NodeStyleEventEmitter>,\n eventName: string,\n resultSelector: (...args: any[]) => R\n): Observable<R>;\n\nexport function fromEvent(\n target: NodeCompatibleEventEmitter | ArrayLike<NodeCompatibleEventEmitter>,\n eventName: string\n): Observable<unknown>;\n/** @deprecated Do not specify explicit type parameters. Signatures with type parameters that cannot be inferred will be removed in v8. */\nexport function fromEvent<T>(target: NodeCompatibleEventEmitter | ArrayLike<NodeCompatibleEventEmitter>, eventName: string): Observable<T>;\nexport function fromEvent<R>(\n target: NodeCompatibleEventEmitter | ArrayLike<NodeCompatibleEventEmitter>,\n eventName: string,\n resultSelector: (...args: any[]) => R\n): Observable<R>;\n\nexport function fromEvent<T>(\n target: JQueryStyleEventEmitter<any, T> | ArrayLike<JQueryStyleEventEmitter<any, T>>,\n eventName: string\n): Observable<T>;\nexport function fromEvent<T, R>(\n target: JQueryStyleEventEmitter<any, T> | ArrayLike<JQueryStyleEventEmitter<any, T>>,\n eventName: string,\n resultSelector: (value: T, ...args: any[]) => R\n): Observable<R>;\n\n/**\n * Creates an Observable that emits events of a specific type coming from the\n * given event target.\n *\n * <span class=\"informal\">Creates an Observable from DOM events, or Node.js\n * EventEmitter events or others.</span>\n *\n * ![](fromEvent.png)\n *\n * `fromEvent` accepts as a first argument event target, which is an object with methods\n * for registering event handler functions. As a second argument it takes string that indicates\n * type of event we want to listen for. `fromEvent` supports selected types of event targets,\n * which are described in detail below. If your event target does not match any of the ones listed,\n * you should use {@link fromEventPattern}, which can be used on arbitrary APIs.\n * When it comes to APIs supported by `fromEvent`, their methods for adding and removing event\n * handler functions have different names, but they all accept a string describing event type\n * and function itself, which will be called whenever said event happens.\n *\n * Every time resulting Observable is subscribed, event handler function will be registered\n * to event target on given event type. When that event fires, value\n * passed as a first argument to registered function will be emitted by output Observable.\n * When Observable is unsubscribed, function will be unregistered from event target.\n *\n * Note that if event target calls registered function with more than one argument, second\n * and following arguments will not appear in resulting stream. In order to get access to them,\n * you can pass to `fromEvent` optional project function, which will be called with all arguments\n * passed to event handler. Output Observable will then emit value returned by project function,\n * instead of the usual value.\n *\n * Remember that event targets listed below are checked via duck typing. It means that\n * no matter what kind of object you have and no matter what environment you work in,\n * you can safely use `fromEvent` on that object if it exposes described methods (provided\n * of course they behave as was described above). So for example if Node.js library exposes\n * event target which has the same method names as DOM EventTarget, `fromEvent` is still\n * a good choice.\n *\n * If the API you use is more callback then event handler oriented (subscribed\n * callback function fires only once and thus there is no need to manually\n * unregister it), you should use {@link bindCallback} or {@link bindNodeCallback}\n * instead.\n *\n * `fromEvent` supports following types of event targets:\n *\n * **DOM EventTarget**\n *\n * This is an object with `addEventListener` and `removeEventListener` methods.\n *\n * In the browser, `addEventListener` accepts - apart from event type string and event\n * handler function arguments - optional third parameter, which is either an object or boolean,\n * both used for additional configuration how and when passed function will be called. When\n * `fromEvent` is used with event target of that type, you can provide this values\n * as third parameter as well.\n *\n * **Node.js EventEmitter**\n *\n * An object with `addListener` and `removeListener` methods.\n *\n * **JQuery-style event target**\n *\n * An object with `on` and `off` methods\n *\n * **DOM NodeList**\n *\n * List of DOM Nodes, returned for example by `document.querySelectorAll` or `Node.childNodes`.\n *\n * Although this collection is not event target in itself, `fromEvent` will iterate over all Nodes\n * it contains and install event handler function in every of them. When returned Observable\n * is unsubscribed, function will be removed from all Nodes.\n *\n * **DOM HtmlCollection**\n *\n * Just as in case of NodeList it is a collection of DOM nodes. Here as well event handler function is\n * installed and removed in each of elements.\n *\n *\n * ## Examples\n *\n * Emit clicks happening on the DOM document\n *\n * ```ts\n * import { fromEvent } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * clicks.subscribe(x => console.log(x));\n *\n * // Results in:\n * // MouseEvent object logged to console every time a click\n * // occurs on the document.\n * ```\n *\n * Use `addEventListener` with capture option\n *\n * ```ts\n * import { fromEvent } from 'rxjs';\n *\n * const div = document.createElement('div');\n * div.style.cssText = 'width: 200px; height: 200px; background: #09c;';\n * document.body.appendChild(div);\n *\n * // note optional configuration parameter which will be passed to addEventListener\n * const clicksInDocument = fromEvent(document, 'click', { capture: true });\n * const clicksInDiv = fromEvent(div, 'click');\n *\n * clicksInDocument.subscribe(() => console.log('document'));\n * clicksInDiv.subscribe(() => console.log('div'));\n *\n * // By default events bubble UP in DOM tree, so normally\n * // when we would click on div in document\n * // \"div\" would be logged first and then \"document\".\n * // Since we specified optional `capture` option, document\n * // will catch event when it goes DOWN DOM tree, so console\n * // will log \"document\" and then \"div\".\n * ```\n *\n * @see {@link bindCallback}\n * @see {@link bindNodeCallback}\n * @see {@link fromEventPattern}\n *\n * @param {FromEventTarget<T>} target The DOM EventTarget, Node.js\n * EventEmitter, JQuery-like event target, NodeList or HTMLCollection to attach the event handler to.\n * @param {string} eventName The event name of interest, being emitted by the\n * `target`.\n * @param {EventListenerOptions} [options] Options to pass through to addEventListener\n * @return {Observable<T>}\n */\nexport function fromEvent<T>(\n target: any,\n eventName: string,\n options?: EventListenerOptions | ((...args: any[]) => T),\n resultSelector?: (...args: any[]) => T\n): Observable<T> {\n if (isFunction(options)) {\n resultSelector = options;\n options = undefined;\n }\n if (resultSelector) {\n return fromEvent<T>(target, eventName, options as EventListenerOptions).pipe(mapOneOrManyArgs(resultSelector));\n }\n\n // Figure out our add and remove methods. In order to do this,\n // we are going to analyze the target in a preferred order, if\n // the target matches a given signature, we take the two \"add\" and \"remove\"\n // method names and apply them to a map to create opposite versions of the\n // same function. This is because they all operate in duplicate pairs,\n // `addListener(name, handler)`, `removeListener(name, handler)`, for example.\n // The call only differs by method name, as to whether or not you're adding or removing.\n const [add, remove] =\n // If it is an EventTarget, we need to use a slightly different method than the other two patterns.\n isEventTarget(target)\n ? eventTargetMethods.map((methodName) => (handler: any) => target[methodName](eventName, handler, options as EventListenerOptions))\n : // In all other cases, the call pattern is identical with the exception of the method names.\n isNodeStyleEventEmitter(target)\n ? nodeEventEmitterMethods.map(toCommonHandlerRegistry(target, eventName))\n : isJQueryStyleEventEmitter(target)\n ? jqueryMethods.map(toCommonHandlerRegistry(target, eventName))\n : [];\n\n // If add is falsy, it's because we didn't match a pattern above.\n // Check to see if it is an ArrayLike, because if it is, we want to\n // try to apply fromEvent to all of it's items. We do this check last,\n // because there are may be some types that are both ArrayLike *and* implement\n // event registry points, and we'd rather delegate to that when possible.\n if (!add) {\n if (isArrayLike(target)) {\n return mergeMap((subTarget: any) => fromEvent(subTarget, eventName, options as EventListenerOptions))(\n innerFrom(target)\n ) as Observable<T>;\n }\n }\n\n // If add is falsy and we made it here, it's because we didn't\n // match any valid target objects above.\n if (!add) {\n throw new TypeError('Invalid event target');\n }\n\n return new Observable<T>((subscriber) => {\n // The handler we are going to register. Forwards the event object, by itself, or\n // an array of arguments to the event handler, if there is more than one argument,\n // to the consumer.\n const handler = (...args: any[]) => subscriber.next(1 < args.length ? args : args[0]);\n // Do the work of adding the handler to the target.\n add(handler);\n // When we finalize, we want to remove the handler and free up memory.\n return () => remove!(handler);\n });\n}\n\n/**\n * Used to create `add` and `remove` functions to register and unregister event handlers\n * from a target in the most common handler pattern, where there are only two arguments.\n * (e.g. `on(name, fn)`, `off(name, fn)`, `addListener(name, fn)`, or `removeListener(name, fn)`)\n * @param target The target we're calling methods on\n * @param eventName The event name for the event we're creating register or unregister functions for\n */\nfunction toCommonHandlerRegistry(target: any, eventName: string) {\n return (methodName: string) => (handler: any) => target[methodName](eventName, handler);\n}\n\n/**\n * Checks to see if the target implements the required node-style EventEmitter methods\n * for adding and removing event handlers.\n * @param target the object to check\n */\nfunction isNodeStyleEventEmitter(target: any): target is NodeStyleEventEmitter {\n return isFunction(target.addListener) && isFunction(target.removeListener);\n}\n\n/**\n * Checks to see if the target implements the required jQuery-style EventEmitter methods\n * for adding and removing event handlers.\n * @param target the object to check\n */\nfunction isJQueryStyleEventEmitter(target: any): target is JQueryStyleEventEmitter<any, any> {\n return isFunction(target.on) && isFunction(target.off);\n}\n\n/**\n * Checks to see if the target implements the required EventTarget methods\n * for adding and removing event handlers.\n * @param target the object to check\n */\nfunction isEventTarget(target: any): target is HasEventTargetAddRemove<any> {\n return isFunction(target.addEventListener) && isFunction(target.removeEventListener);\n}\n", "import { Observable } from '../Observable';\nimport { SchedulerLike } from '../types';\nimport { async as asyncScheduler } from '../scheduler/async';\nimport { isScheduler } from '../util/isScheduler';\nimport { isValidDate } from '../util/isDate';\n\n/**\n * Creates an observable that will wait for a specified time period, or exact date, before\n * emitting the number 0.\n *\n * <span class=\"informal\">Used to emit a notification after a delay.</span>\n *\n * This observable is useful for creating delays in code, or racing against other values\n * for ad-hoc timeouts.\n *\n * The `delay` is specified by default in milliseconds, however providing a custom scheduler could\n * create a different behavior.\n *\n * ## Examples\n *\n * Wait 3 seconds and start another observable\n *\n * You might want to use `timer` to delay subscription to an\n * observable by a set amount of time. Here we use a timer with\n * {@link concatMapTo} or {@link concatMap} in order to wait\n * a few seconds and start a subscription to a source.\n *\n * ```ts\n * import { of, timer, concatMap } from 'rxjs';\n *\n * // This could be any observable\n * const source = of(1, 2, 3);\n *\n * timer(3000)\n * .pipe(concatMap(() => source))\n * .subscribe(console.log);\n * ```\n *\n * Take all values until the start of the next minute\n *\n * Using a `Date` as the trigger for the first emission, you can\n * do things like wait until midnight to fire an event, or in this case,\n * wait until a new minute starts (chosen so the example wouldn't take\n * too long to run) in order to stop watching a stream. Leveraging\n * {@link takeUntil}.\n *\n * ```ts\n * import { interval, takeUntil, timer } from 'rxjs';\n *\n * // Build a Date object that marks the\n * // next minute.\n * const currentDate = new Date();\n * const startOfNextMinute = new Date(\n * currentDate.getFullYear(),\n * currentDate.getMonth(),\n * currentDate.getDate(),\n * currentDate.getHours(),\n * currentDate.getMinutes() + 1\n * );\n *\n * // This could be any observable stream\n * const source = interval(1000);\n *\n * const result = source.pipe(\n * takeUntil(timer(startOfNextMinute))\n * );\n *\n * result.subscribe(console.log);\n * ```\n *\n * ### Known Limitations\n *\n * - The {@link asyncScheduler} uses `setTimeout` which has limitations for how far in the future it can be scheduled.\n *\n * - If a `scheduler` is provided that returns a timestamp other than an epoch from `now()`, and\n * a `Date` object is passed to the `dueTime` argument, the calculation for when the first emission\n * should occur will be incorrect. In this case, it would be best to do your own calculations\n * ahead of time, and pass a `number` in as the `dueTime`.\n *\n * @param due If a `number`, the amount of time in milliseconds to wait before emitting.\n * If a `Date`, the exact time at which to emit.\n * @param scheduler The scheduler to use to schedule the delay. Defaults to {@link asyncScheduler}.\n */\nexport function timer(due: number | Date, scheduler?: SchedulerLike): Observable<0>;\n\n/**\n * Creates an observable that starts an interval after a specified delay, emitting incrementing numbers -- starting at `0` --\n * on each interval after words.\n *\n * The `delay` and `intervalDuration` are specified by default in milliseconds, however providing a custom scheduler could\n * create a different behavior.\n *\n * ## Example\n *\n * ### Start an interval that starts right away\n *\n * Since {@link interval} waits for the passed delay before starting,\n * sometimes that's not ideal. You may want to start an interval immediately.\n * `timer` works well for this. Here we have both side-by-side so you can\n * see them in comparison.\n *\n * Note that this observable will never complete.\n *\n * ```ts\n * import { timer, interval } from 'rxjs';\n *\n * timer(0, 1000).subscribe(n => console.log('timer', n));\n * interval(1000).subscribe(n => console.log('interval', n));\n * ```\n *\n * ### Known Limitations\n *\n * - The {@link asyncScheduler} uses `setTimeout` which has limitations for how far in the future it can be scheduled.\n *\n * - If a `scheduler` is provided that returns a timestamp other than an epoch from `now()`, and\n * a `Date` object is passed to the `dueTime` argument, the calculation for when the first emission\n * should occur will be incorrect. In this case, it would be best to do your own calculations\n * ahead of time, and pass a `number` in as the `startDue`.\n * @param startDue If a `number`, is the time to wait before starting the interval.\n * If a `Date`, is the exact time at which to start the interval.\n * @param intervalDuration The delay between each value emitted in the interval. Passing a\n * negative number here will result in immediate completion after the first value is emitted, as though\n * no `intervalDuration` was passed at all.\n * @param scheduler The scheduler to use to schedule the delay. Defaults to {@link asyncScheduler}.\n */\nexport function timer(startDue: number | Date, intervalDuration: number, scheduler?: SchedulerLike): Observable<number>;\n\n/**\n * @deprecated The signature allowing `undefined` to be passed for `intervalDuration` will be removed in v8. Use the `timer(dueTime, scheduler?)` signature instead.\n */\nexport function timer(dueTime: number | Date, unused: undefined, scheduler?: SchedulerLike): Observable<0>;\n\nexport function timer(\n dueTime: number | Date = 0,\n intervalOrScheduler?: number | SchedulerLike,\n scheduler: SchedulerLike = asyncScheduler\n): Observable<number> {\n // Since negative intervalDuration is treated as though no\n // interval was specified at all, we start with a negative number.\n let intervalDuration = -1;\n\n if (intervalOrScheduler != null) {\n // If we have a second argument, and it's a scheduler,\n // override the scheduler we had defaulted. Otherwise,\n // it must be an interval.\n if (isScheduler(intervalOrScheduler)) {\n scheduler = intervalOrScheduler;\n } else {\n // Note that this *could* be negative, in which case\n // it's like not passing an intervalDuration at all.\n intervalDuration = intervalOrScheduler;\n }\n }\n\n return new Observable((subscriber) => {\n // If a valid date is passed, calculate how long to wait before\n // executing the first value... otherwise, if it's a number just schedule\n // that many milliseconds (or scheduler-specified unit size) in the future.\n let due = isValidDate(dueTime) ? +dueTime - scheduler!.now() : dueTime;\n\n if (due < 0) {\n // Ensure we don't schedule in the future.\n due = 0;\n }\n\n // The incrementing value we emit.\n let n = 0;\n\n // Start the timer.\n return scheduler.schedule(function () {\n if (!subscriber.closed) {\n // Emit the next value and increment.\n subscriber.next(n++);\n\n if (0 <= intervalDuration) {\n // If we have a interval after the initial timer,\n // reschedule with the period.\n this.schedule(undefined, intervalDuration);\n } else {\n // We didn't have an interval. So just complete.\n subscriber.complete();\n }\n }\n }, due);\n });\n}\n", "import { Observable } from '../Observable';\nimport { ObservableInput, ObservableInputTuple, SchedulerLike } from '../types';\nimport { mergeAll } from '../operators/mergeAll';\nimport { innerFrom } from './innerFrom';\nimport { EMPTY } from './empty';\nimport { popNumber, popScheduler } from '../util/args';\nimport { from } from './from';\n\nexport function merge<A extends readonly unknown[]>(...sources: [...ObservableInputTuple<A>]): Observable<A[number]>;\nexport function merge<A extends readonly unknown[]>(...sourcesAndConcurrency: [...ObservableInputTuple<A>, number?]): Observable<A[number]>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `mergeAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function merge<A extends readonly unknown[]>(\n ...sourcesAndScheduler: [...ObservableInputTuple<A>, SchedulerLike?]\n): Observable<A[number]>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `mergeAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function merge<A extends readonly unknown[]>(\n ...sourcesAndConcurrencyAndScheduler: [...ObservableInputTuple<A>, number?, SchedulerLike?]\n): Observable<A[number]>;\n\n/**\n * Creates an output Observable which concurrently emits all values from every\n * given input Observable.\n *\n * <span class=\"informal\">Flattens multiple Observables together by blending\n * their values into one Observable.</span>\n *\n * ![](merge.png)\n *\n * `merge` subscribes to each given input Observable (as arguments), and simply\n * forwards (without doing any transformation) all the values from all the input\n * Observables to the output Observable. The output Observable only completes\n * once all input Observables have completed. Any error delivered by an input\n * Observable will be immediately emitted on the output Observable.\n *\n * ## Examples\n *\n * Merge together two Observables: 1s interval and clicks\n *\n * ```ts\n * import { merge, fromEvent, interval } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const timer = interval(1000);\n * const clicksOrTimer = merge(clicks, timer);\n * clicksOrTimer.subscribe(x => console.log(x));\n *\n * // Results in the following:\n * // timer will emit ascending values, one every second(1000ms) to console\n * // clicks logs MouseEvents to console every time the \"document\" is clicked\n * // Since the two streams are merged you see these happening\n * // as they occur.\n * ```\n *\n * Merge together 3 Observables, but run only 2 concurrently\n *\n * ```ts\n * import { interval, take, merge } from 'rxjs';\n *\n * const timer1 = interval(1000).pipe(take(10));\n * const timer2 = interval(2000).pipe(take(6));\n * const timer3 = interval(500).pipe(take(10));\n *\n * const concurrent = 2; // the argument\n * const merged = merge(timer1, timer2, timer3, concurrent);\n * merged.subscribe(x => console.log(x));\n *\n * // Results in the following:\n * // - First timer1 and timer2 will run concurrently\n * // - timer1 will emit a value every 1000ms for 10 iterations\n * // - timer2 will emit a value every 2000ms for 6 iterations\n * // - after timer1 hits its max iteration, timer2 will\n * // continue, and timer3 will start to run concurrently with timer2\n * // - when timer2 hits its max iteration it terminates, and\n * // timer3 will continue to emit a value every 500ms until it is complete\n * ```\n *\n * @see {@link mergeAll}\n * @see {@link mergeMap}\n * @see {@link mergeMapTo}\n * @see {@link mergeScan}\n *\n * @param {...ObservableInput} observables Input Observables to merge together.\n * @param {number} [concurrent=Infinity] Maximum number of input\n * Observables being subscribed to concurrently.\n * @param {SchedulerLike} [scheduler=null] The {@link SchedulerLike} to use for managing\n * concurrency of input Observables.\n * @return {Observable} an Observable that emits items that are the result of\n * every input Observable.\n */\nexport function merge(...args: (ObservableInput<unknown> | number | SchedulerLike)[]): Observable<unknown> {\n const scheduler = popScheduler(args);\n const concurrent = popNumber(args, Infinity);\n const sources = args as ObservableInput<unknown>[];\n return !sources.length\n ? // No source provided\n EMPTY\n : sources.length === 1\n ? // One source? Just return it.\n innerFrom(sources[0])\n : // Merge all sources\n mergeAll(concurrent)(from(sources, scheduler));\n}\n", "import { Observable } from '../Observable';\nimport { noop } from '../util/noop';\n\n/**\n * An Observable that emits no items to the Observer and never completes.\n *\n * ![](never.png)\n *\n * A simple Observable that emits neither values nor errors nor the completion\n * notification. It can be used for testing purposes or for composing with other\n * Observables. Please note that by never emitting a complete notification, this\n * Observable keeps the subscription from being disposed automatically.\n * Subscriptions need to be manually disposed.\n *\n * ## Example\n *\n * Emit the number 7, then never emit anything else (not even complete)\n *\n * ```ts\n * import { NEVER, startWith } from 'rxjs';\n *\n * const info = () => console.log('Will not be called');\n *\n * const result = NEVER.pipe(startWith(7));\n * result.subscribe({\n * next: x => console.log(x),\n * error: info,\n * complete: info\n * });\n * ```\n *\n * @see {@link Observable}\n * @see {@link EMPTY}\n * @see {@link of}\n * @see {@link throwError}\n */\nexport const NEVER = new Observable<never>(noop);\n\n/**\n * @deprecated Replaced with the {@link NEVER} constant. Will be removed in v8.\n */\nexport function never() {\n return NEVER;\n}\n", "const { isArray } = Array;\n\n/**\n * Used in operators and functions that accept either a list of arguments, or an array of arguments\n * as a single argument.\n */\nexport function argsOrArgArray<T>(args: (T | T[])[]): T[] {\n return args.length === 1 && isArray(args[0]) ? args[0] : (args as T[]);\n}\n", "import { OperatorFunction, MonoTypeOperatorFunction, TruthyTypesOf } from '../types';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\n/** @deprecated Use a closure instead of a `thisArg`. Signatures accepting a `thisArg` will be removed in v8. */\nexport function filter<T, S extends T, A>(predicate: (this: A, value: T, index: number) => value is S, thisArg: A): OperatorFunction<T, S>;\nexport function filter<T, S extends T>(predicate: (value: T, index: number) => value is S): OperatorFunction<T, S>;\nexport function filter<T>(predicate: BooleanConstructor): OperatorFunction<T, TruthyTypesOf<T>>;\n/** @deprecated Use a closure instead of a `thisArg`. Signatures accepting a `thisArg` will be removed in v8. */\nexport function filter<T, A>(predicate: (this: A, value: T, index: number) => boolean, thisArg: A): MonoTypeOperatorFunction<T>;\nexport function filter<T>(predicate: (value: T, index: number) => boolean): MonoTypeOperatorFunction<T>;\n\n/**\n * Filter items emitted by the source Observable by only emitting those that\n * satisfy a specified predicate.\n *\n * <span class=\"informal\">Like\n * [Array.prototype.filter()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/filter),\n * it only emits a value from the source if it passes a criterion function.</span>\n *\n * ![](filter.png)\n *\n * Similar to the well-known `Array.prototype.filter` method, this operator\n * takes values from the source Observable, passes them through a `predicate`\n * function and only emits those values that yielded `true`.\n *\n * ## Example\n *\n * Emit only click events whose target was a DIV element\n *\n * ```ts\n * import { fromEvent, filter } from 'rxjs';\n *\n * const div = document.createElement('div');\n * div.style.cssText = 'width: 200px; height: 200px; background: #09c;';\n * document.body.appendChild(div);\n *\n * const clicks = fromEvent(document, 'click');\n * const clicksOnDivs = clicks.pipe(filter(ev => (<HTMLElement>ev.target).tagName === 'DIV'));\n * clicksOnDivs.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link distinct}\n * @see {@link distinctUntilChanged}\n * @see {@link distinctUntilKeyChanged}\n * @see {@link ignoreElements}\n * @see {@link partition}\n * @see {@link skip}\n *\n * @param predicate A function that\n * evaluates each value emitted by the source Observable. If it returns `true`,\n * the value is emitted, if `false` the value is not passed to the output\n * Observable. The `index` parameter is the number `i` for the i-th source\n * emission that has happened since the subscription, starting from the number\n * `0`.\n * @param thisArg An optional argument to determine the value of `this`\n * in the `predicate` function.\n * @return A function that returns an Observable that emits items from the\n * source Observable that satisfy the specified `predicate`.\n */\nexport function filter<T>(predicate: (value: T, index: number) => boolean, thisArg?: any): MonoTypeOperatorFunction<T> {\n return operate((source, subscriber) => {\n // An index passed to our predicate function on each call.\n let index = 0;\n\n // Subscribe to the source, all errors and completions are\n // forwarded to the consumer.\n source.subscribe(\n // Call the predicate with the appropriate `this` context,\n // if the predicate returns `true`, then send the value\n // to the consumer.\n createOperatorSubscriber(subscriber, (value) => predicate.call(thisArg, value, index++) && subscriber.next(value))\n );\n });\n}\n", "import { Observable } from '../Observable';\nimport { ObservableInputTuple } from '../types';\nimport { innerFrom } from './innerFrom';\nimport { argsOrArgArray } from '../util/argsOrArgArray';\nimport { EMPTY } from './empty';\nimport { createOperatorSubscriber } from '../operators/OperatorSubscriber';\nimport { popResultSelector } from '../util/args';\n\nexport function zip<A extends readonly unknown[]>(sources: [...ObservableInputTuple<A>]): Observable<A>;\nexport function zip<A extends readonly unknown[], R>(\n sources: [...ObservableInputTuple<A>],\n resultSelector: (...values: A) => R\n): Observable<R>;\nexport function zip<A extends readonly unknown[]>(...sources: [...ObservableInputTuple<A>]): Observable<A>;\nexport function zip<A extends readonly unknown[], R>(\n ...sourcesAndResultSelector: [...ObservableInputTuple<A>, (...values: A) => R]\n): Observable<R>;\n\n/**\n * Combines multiple Observables to create an Observable whose values are calculated from the values, in order, of each\n * of its input Observables.\n *\n * If the last parameter is a function, this function is used to compute the created value from the input values.\n * Otherwise, an array of the input values is returned.\n *\n * ## Example\n *\n * Combine age and name from different sources\n *\n * ```ts\n * import { of, zip, map } from 'rxjs';\n *\n * const age$ = of(27, 25, 29);\n * const name$ = of('Foo', 'Bar', 'Beer');\n * const isDev$ = of(true, true, false);\n *\n * zip(age$, name$, isDev$).pipe(\n * map(([age, name, isDev]) => ({ age, name, isDev }))\n * )\n * .subscribe(x => console.log(x));\n *\n * // Outputs\n * // { age: 27, name: 'Foo', isDev: true }\n * // { age: 25, name: 'Bar', isDev: true }\n * // { age: 29, name: 'Beer', isDev: false }\n * ```\n *\n * @param sources\n * @return {Observable<R>}\n */\nexport function zip(...args: unknown[]): Observable<unknown> {\n const resultSelector = popResultSelector(args);\n\n const sources = argsOrArgArray(args) as Observable<unknown>[];\n\n return sources.length\n ? new Observable<unknown[]>((subscriber) => {\n // A collection of buffers of values from each source.\n // Keyed by the same index with which the sources were passed in.\n let buffers: unknown[][] = sources.map(() => []);\n\n // An array of flags of whether or not the sources have completed.\n // This is used to check to see if we should complete the result.\n // Keyed by the same index with which the sources were passed in.\n let completed = sources.map(() => false);\n\n // When everything is done, release the arrays above.\n subscriber.add(() => {\n buffers = completed = null!;\n });\n\n // Loop over our sources and subscribe to each one. The index `i` is\n // especially important here, because we use it in closures below to\n // access the related buffers and completion properties\n for (let sourceIndex = 0; !subscriber.closed && sourceIndex < sources.length; sourceIndex++) {\n innerFrom(sources[sourceIndex]).subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => {\n buffers[sourceIndex].push(value);\n // if every buffer has at least one value in it, then we\n // can shift out the oldest value from each buffer and emit\n // them as an array.\n if (buffers.every((buffer) => buffer.length)) {\n const result: any = buffers.map((buffer) => buffer.shift()!);\n // Emit the array. If theres' a result selector, use that.\n subscriber.next(resultSelector ? resultSelector(...result) : result);\n // If any one of the sources is both complete and has an empty buffer\n // then we complete the result. This is because we cannot possibly have\n // any more values to zip together.\n if (buffers.some((buffer, i) => !buffer.length && completed[i])) {\n subscriber.complete();\n }\n }\n },\n () => {\n // This source completed. Mark it as complete so we can check it later\n // if we have to.\n completed[sourceIndex] = true;\n // But, if this complete source has nothing in its buffer, then we\n // can complete the result, because we can't possibly have any more\n // values from this to zip together with the other values.\n !buffers[sourceIndex].length && subscriber.complete();\n }\n )\n );\n }\n\n // When everything is done, release the arrays above.\n return () => {\n buffers = completed = null!;\n };\n })\n : EMPTY;\n}\n", "import { Subscriber } from '../Subscriber';\nimport { MonoTypeOperatorFunction, ObservableInput } from '../types';\n\nimport { operate } from '../util/lift';\nimport { innerFrom } from '../observable/innerFrom';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\n/**\n * Ignores source values for a duration determined by another Observable, then\n * emits the most recent value from the source Observable, then repeats this\n * process.\n *\n * <span class=\"informal\">It's like {@link auditTime}, but the silencing\n * duration is determined by a second Observable.</span>\n *\n * ![](audit.svg)\n *\n * `audit` is similar to `throttle`, but emits the last value from the silenced\n * time window, instead of the first value. `audit` emits the most recent value\n * from the source Observable on the output Observable as soon as its internal\n * timer becomes disabled, and ignores source values while the timer is enabled.\n * Initially, the timer is disabled. As soon as the first source value arrives,\n * the timer is enabled by calling the `durationSelector` function with the\n * source value, which returns the \"duration\" Observable. When the duration\n * Observable emits a value, the timer is disabled, then the most\n * recent source value is emitted on the output Observable, and this process\n * repeats for the next source value.\n *\n * ## Example\n *\n * Emit clicks at a rate of at most one click per second\n *\n * ```ts\n * import { fromEvent, audit, interval } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(audit(ev => interval(1000)));\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link auditTime}\n * @see {@link debounce}\n * @see {@link delayWhen}\n * @see {@link sample}\n * @see {@link throttle}\n *\n * @param durationSelector A function\n * that receives a value from the source Observable, for computing the silencing\n * duration, returned as an Observable or a Promise.\n * @return A function that returns an Observable that performs rate-limiting of\n * emissions from the source Observable.\n */\nexport function audit<T>(durationSelector: (value: T) => ObservableInput<any>): MonoTypeOperatorFunction<T> {\n return operate((source, subscriber) => {\n let hasValue = false;\n let lastValue: T | null = null;\n let durationSubscriber: Subscriber<any> | null = null;\n let isComplete = false;\n\n const endDuration = () => {\n durationSubscriber?.unsubscribe();\n durationSubscriber = null;\n if (hasValue) {\n hasValue = false;\n const value = lastValue!;\n lastValue = null;\n subscriber.next(value);\n }\n isComplete && subscriber.complete();\n };\n\n const cleanupDuration = () => {\n durationSubscriber = null;\n isComplete && subscriber.complete();\n };\n\n source.subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => {\n hasValue = true;\n lastValue = value;\n if (!durationSubscriber) {\n innerFrom(durationSelector(value)).subscribe(\n (durationSubscriber = createOperatorSubscriber(subscriber, endDuration, cleanupDuration))\n );\n }\n },\n () => {\n isComplete = true;\n (!hasValue || !durationSubscriber || durationSubscriber.closed) && subscriber.complete();\n }\n )\n );\n });\n}\n", "import { asyncScheduler } from '../scheduler/async';\nimport { audit } from './audit';\nimport { timer } from '../observable/timer';\nimport { MonoTypeOperatorFunction, SchedulerLike } from '../types';\n\n/**\n * Ignores source values for `duration` milliseconds, then emits the most recent\n * value from the source Observable, then repeats this process.\n *\n * <span class=\"informal\">When it sees a source value, it ignores that plus\n * the next ones for `duration` milliseconds, and then it emits the most recent\n * value from the source.</span>\n *\n * ![](auditTime.png)\n *\n * `auditTime` is similar to `throttleTime`, but emits the last value from the\n * silenced time window, instead of the first value. `auditTime` emits the most\n * recent value from the source Observable on the output Observable as soon as\n * its internal timer becomes disabled, and ignores source values while the\n * timer is enabled. Initially, the timer is disabled. As soon as the first\n * source value arrives, the timer is enabled. After `duration` milliseconds (or\n * the time unit determined internally by the optional `scheduler`) has passed,\n * the timer is disabled, then the most recent source value is emitted on the\n * output Observable, and this process repeats for the next source value.\n * Optionally takes a {@link SchedulerLike} for managing timers.\n *\n * ## Example\n *\n * Emit clicks at a rate of at most one click per second\n *\n * ```ts\n * import { fromEvent, auditTime } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(auditTime(1000));\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link audit}\n * @see {@link debounceTime}\n * @see {@link delay}\n * @see {@link sampleTime}\n * @see {@link throttleTime}\n *\n * @param {number} duration Time to wait before emitting the most recent source\n * value, measured in milliseconds or the time unit determined internally\n * by the optional `scheduler`.\n * @param {SchedulerLike} [scheduler=async] The {@link SchedulerLike} to use for\n * managing the timers that handle the rate-limiting behavior.\n * @return A function that returns an Observable that performs rate-limiting of\n * emissions from the source Observable.\n */\nexport function auditTime<T>(duration: number, scheduler: SchedulerLike = asyncScheduler): MonoTypeOperatorFunction<T> {\n return audit(() => timer(duration, scheduler));\n}\n", "import { OperatorFunction } from '../types';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\nimport { arrRemove } from '../util/arrRemove';\n\n/**\n * Buffers the source Observable values until the size hits the maximum\n * `bufferSize` given.\n *\n * <span class=\"informal\">Collects values from the past as an array, and emits\n * that array only when its size reaches `bufferSize`.</span>\n *\n * ![](bufferCount.png)\n *\n * Buffers a number of values from the source Observable by `bufferSize` then\n * emits the buffer and clears it, and starts a new buffer each\n * `startBufferEvery` values. If `startBufferEvery` is not provided or is\n * `null`, then new buffers are started immediately at the start of the source\n * and when each buffer closes and is emitted.\n *\n * ## Examples\n *\n * Emit the last two click events as an array\n *\n * ```ts\n * import { fromEvent, bufferCount } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const buffered = clicks.pipe(bufferCount(2));\n * buffered.subscribe(x => console.log(x));\n * ```\n *\n * On every click, emit the last two click events as an array\n *\n * ```ts\n * import { fromEvent, bufferCount } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const buffered = clicks.pipe(bufferCount(2, 1));\n * buffered.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link buffer}\n * @see {@link bufferTime}\n * @see {@link bufferToggle}\n * @see {@link bufferWhen}\n * @see {@link pairwise}\n * @see {@link windowCount}\n *\n * @param {number} bufferSize The maximum size of the buffer emitted.\n * @param {number} [startBufferEvery] Interval at which to start a new buffer.\n * For example if `startBufferEvery` is `2`, then a new buffer will be started\n * on every other value from the source. A new buffer is started at the\n * beginning of the source by default.\n * @return A function that returns an Observable of arrays of buffered values.\n */\nexport function bufferCount<T>(bufferSize: number, startBufferEvery: number | null = null): OperatorFunction<T, T[]> {\n // If no `startBufferEvery` value was supplied, then we're\n // opening and closing on the bufferSize itself.\n startBufferEvery = startBufferEvery ?? bufferSize;\n\n return operate((source, subscriber) => {\n let buffers: T[][] = [];\n let count = 0;\n\n source.subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => {\n let toEmit: T[][] | null = null;\n\n // Check to see if we need to start a buffer.\n // This will start one at the first value, and then\n // a new one every N after that.\n if (count++ % startBufferEvery! === 0) {\n buffers.push([]);\n }\n\n // Push our value into our active buffers.\n for (const buffer of buffers) {\n buffer.push(value);\n // Check to see if we're over the bufferSize\n // if we are, record it so we can emit it later.\n // If we emitted it now and removed it, it would\n // mutate the `buffers` array while we're looping\n // over it.\n if (bufferSize <= buffer.length) {\n toEmit = toEmit ?? [];\n toEmit.push(buffer);\n }\n }\n\n if (toEmit) {\n // We have found some buffers that are over the\n // `bufferSize`. Emit them, and remove them from our\n // buffers list.\n for (const buffer of toEmit) {\n arrRemove(buffers, buffer);\n subscriber.next(buffer);\n }\n }\n },\n () => {\n // When the source completes, emit all of our\n // active buffers.\n for (const buffer of buffers) {\n subscriber.next(buffer);\n }\n subscriber.complete();\n },\n // Pass all errors through to consumer.\n undefined,\n () => {\n // Clean up our memory when we finalize\n buffers = null!;\n }\n )\n );\n });\n}\n", "import { combineLatestInit } from '../observable/combineLatest';\nimport { ObservableInput, ObservableInputTuple, OperatorFunction } from '../types';\nimport { operate } from '../util/lift';\nimport { argsOrArgArray } from '../util/argsOrArgArray';\nimport { mapOneOrManyArgs } from '../util/mapOneOrManyArgs';\nimport { pipe } from '../util/pipe';\nimport { popResultSelector } from '../util/args';\n\n/** @deprecated Replaced with {@link combineLatestWith}. Will be removed in v8. */\nexport function combineLatest<T, A extends readonly unknown[], R>(\n sources: [...ObservableInputTuple<A>],\n project: (...values: [T, ...A]) => R\n): OperatorFunction<T, R>;\n/** @deprecated Replaced with {@link combineLatestWith}. Will be removed in v8. */\nexport function combineLatest<T, A extends readonly unknown[], R>(sources: [...ObservableInputTuple<A>]): OperatorFunction<T, [T, ...A]>;\n\n/** @deprecated Replaced with {@link combineLatestWith}. Will be removed in v8. */\nexport function combineLatest<T, A extends readonly unknown[], R>(\n ...sourcesAndProject: [...ObservableInputTuple<A>, (...values: [T, ...A]) => R]\n): OperatorFunction<T, R>;\n/** @deprecated Replaced with {@link combineLatestWith}. Will be removed in v8. */\nexport function combineLatest<T, A extends readonly unknown[], R>(...sources: [...ObservableInputTuple<A>]): OperatorFunction<T, [T, ...A]>;\n\n/**\n * @deprecated Replaced with {@link combineLatestWith}. Will be removed in v8.\n */\nexport function combineLatest<T, R>(...args: (ObservableInput<any> | ((...values: any[]) => R))[]): OperatorFunction<T, unknown> {\n const resultSelector = popResultSelector(args);\n return resultSelector\n ? pipe(combineLatest(...(args as Array<ObservableInput<any>>)), mapOneOrManyArgs(resultSelector))\n : operate((source, subscriber) => {\n combineLatestInit([source, ...argsOrArgArray(args)])(subscriber);\n });\n}\n", "import { ObservableInputTuple, OperatorFunction, Cons } from '../types';\nimport { combineLatest } from './combineLatest';\n\n/**\n * Create an observable that combines the latest values from all passed observables and the source\n * into arrays and emits them.\n *\n * Returns an observable, that when subscribed to, will subscribe to the source observable and all\n * sources provided as arguments. Once all sources emit at least one value, all of the latest values\n * will be emitted as an array. After that, every time any source emits a value, all of the latest values\n * will be emitted as an array.\n *\n * This is a useful operator for eagerly calculating values based off of changed inputs.\n *\n * ## Example\n *\n * Simple concatenation of values from two inputs\n *\n * ```ts\n * import { fromEvent, combineLatestWith, map } from 'rxjs';\n *\n * // Setup: Add two inputs to the page\n * const input1 = document.createElement('input');\n * document.body.appendChild(input1);\n * const input2 = document.createElement('input');\n * document.body.appendChild(input2);\n *\n * // Get streams of changes\n * const input1Changes$ = fromEvent(input1, 'change');\n * const input2Changes$ = fromEvent(input2, 'change');\n *\n * // Combine the changes by adding them together\n * input1Changes$.pipe(\n * combineLatestWith(input2Changes$),\n * map(([e1, e2]) => (<HTMLInputElement>e1.target).value + ' - ' + (<HTMLInputElement>e2.target).value)\n * )\n * .subscribe(x => console.log(x));\n * ```\n *\n * @param otherSources the other sources to subscribe to.\n * @return A function that returns an Observable that emits the latest\n * emissions from both source and provided Observables.\n */\nexport function combineLatestWith<T, A extends readonly unknown[]>(\n ...otherSources: [...ObservableInputTuple<A>]\n): OperatorFunction<T, Cons<T, A>> {\n return combineLatest(...otherSources);\n}\n", "import { asyncScheduler } from '../scheduler/async';\nimport { Subscription } from '../Subscription';\nimport { MonoTypeOperatorFunction, SchedulerAction, SchedulerLike } from '../types';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\n/**\n * Emits a notification from the source Observable only after a particular time span\n * has passed without another source emission.\n *\n * <span class=\"informal\">It's like {@link delay}, but passes only the most\n * recent notification from each burst of emissions.</span>\n *\n * ![](debounceTime.png)\n *\n * `debounceTime` delays notifications emitted by the source Observable, but drops\n * previous pending delayed emissions if a new notification arrives on the source\n * Observable. This operator keeps track of the most recent notification from the\n * source Observable, and emits that only when `dueTime` has passed\n * without any other notification appearing on the source Observable. If a new value\n * appears before `dueTime` silence occurs, the previous notification will be dropped\n * and will not be emitted and a new `dueTime` is scheduled.\n * If the completing event happens during `dueTime` the last cached notification\n * is emitted before the completion event is forwarded to the output observable.\n * If the error event happens during `dueTime` or after it only the error event is\n * forwarded to the output observable. The cache notification is not emitted in this case.\n *\n * This is a rate-limiting operator, because it is impossible for more than one\n * notification to be emitted in any time window of duration `dueTime`, but it is also\n * a delay-like operator since output emissions do not occur at the same time as\n * they did on the source Observable. Optionally takes a {@link SchedulerLike} for\n * managing timers.\n *\n * ## Example\n *\n * Emit the most recent click after a burst of clicks\n *\n * ```ts\n * import { fromEvent, debounceTime } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(debounceTime(1000));\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link audit}\n * @see {@link auditTime}\n * @see {@link debounce}\n * @see {@link sample}\n * @see {@link sampleTime}\n * @see {@link throttle}\n * @see {@link throttleTime}\n *\n * @param {number} dueTime The timeout duration in milliseconds (or the time\n * unit determined internally by the optional `scheduler`) for the window of\n * time required to wait for emission silence before emitting the most recent\n * source value.\n * @param {SchedulerLike} [scheduler=async] The {@link SchedulerLike} to use for\n * managing the timers that handle the timeout for each value.\n * @return A function that returns an Observable that delays the emissions of\n * the source Observable by the specified `dueTime`, and may drop some values\n * if they occur too frequently.\n */\nexport function debounceTime<T>(dueTime: number, scheduler: SchedulerLike = asyncScheduler): MonoTypeOperatorFunction<T> {\n return operate((source, subscriber) => {\n let activeTask: Subscription | null = null;\n let lastValue: T | null = null;\n let lastTime: number | null = null;\n\n const emit = () => {\n if (activeTask) {\n // We have a value! Free up memory first, then emit the value.\n activeTask.unsubscribe();\n activeTask = null;\n const value = lastValue!;\n lastValue = null;\n subscriber.next(value);\n }\n };\n function emitWhenIdle(this: SchedulerAction<unknown>) {\n // This is called `dueTime` after the first value\n // but we might have received new values during this window!\n\n const targetTime = lastTime! + dueTime;\n const now = scheduler.now();\n if (now < targetTime) {\n // On that case, re-schedule to the new target\n activeTask = this.schedule(undefined, targetTime - now);\n subscriber.add(activeTask);\n return;\n }\n\n emit();\n }\n\n source.subscribe(\n createOperatorSubscriber(\n subscriber,\n (value: T) => {\n lastValue = value;\n lastTime = scheduler.now();\n\n // Only set up a task if it's not already up\n if (!activeTask) {\n activeTask = scheduler.schedule(emitWhenIdle, dueTime);\n subscriber.add(activeTask);\n }\n },\n () => {\n // Source completed.\n // Emit any pending debounced values then complete\n emit();\n subscriber.complete();\n },\n // Pass all errors through to consumer.\n undefined,\n () => {\n // Finalization.\n lastValue = activeTask = null;\n }\n )\n );\n });\n}\n", "import { MonoTypeOperatorFunction } from '../types';\nimport { EMPTY } from '../observable/empty';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\n/**\n * Emits only the first `count` values emitted by the source Observable.\n *\n * <span class=\"informal\">Takes the first `count` values from the source, then\n * completes.</span>\n *\n * ![](take.png)\n *\n * `take` returns an Observable that emits only the first `count` values emitted\n * by the source Observable. If the source emits fewer than `count` values then\n * all of its values are emitted. After that, it completes, regardless if the\n * source completes.\n *\n * ## Example\n *\n * Take the first 5 seconds of an infinite 1-second interval Observable\n *\n * ```ts\n * import { interval, take } from 'rxjs';\n *\n * const intervalCount = interval(1000);\n * const takeFive = intervalCount.pipe(take(5));\n * takeFive.subscribe(x => console.log(x));\n *\n * // Logs:\n * // 0\n * // 1\n * // 2\n * // 3\n * // 4\n * ```\n *\n * @see {@link takeLast}\n * @see {@link takeUntil}\n * @see {@link takeWhile}\n * @see {@link skip}\n *\n * @param count The maximum number of `next` values to emit.\n * @return A function that returns an Observable that emits only the first\n * `count` values emitted by the source Observable, or all of the values from\n * the source if the source emits fewer than `count` values.\n */\nexport function take<T>(count: number): MonoTypeOperatorFunction<T> {\n return count <= 0\n ? // If we are taking no values, that's empty.\n () => EMPTY\n : operate((source, subscriber) => {\n let seen = 0;\n source.subscribe(\n createOperatorSubscriber(subscriber, (value) => {\n // Increment the number of values we have seen,\n // then check it against the allowed count to see\n // if we are still letting values through.\n if (++seen <= count) {\n subscriber.next(value);\n // If we have met or passed our allowed count,\n // we need to complete. We have to do <= here,\n // because re-entrant code will increment `seen` twice.\n if (count <= seen) {\n subscriber.complete();\n }\n }\n })\n );\n });\n}\n", "import { OperatorFunction } from '../types';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\nimport { noop } from '../util/noop';\n\n/**\n * Ignores all items emitted by the source Observable and only passes calls of `complete` or `error`.\n *\n * ![](ignoreElements.png)\n *\n * The `ignoreElements` operator suppresses all items emitted by the source Observable,\n * but allows its termination notification (either `error` or `complete`) to pass through unchanged.\n *\n * If you do not care about the items being emitted by an Observable, but you do want to be notified\n * when it completes or when it terminates with an error, you can apply the `ignoreElements` operator\n * to the Observable, which will ensure that it will never call its observers\u2019 `next` handlers.\n *\n * ## Example\n *\n * Ignore all `next` emissions from the source\n *\n * ```ts\n * import { of, ignoreElements } from 'rxjs';\n *\n * of('you', 'talking', 'to', 'me')\n * .pipe(ignoreElements())\n * .subscribe({\n * next: word => console.log(word),\n * error: err => console.log('error:', err),\n * complete: () => console.log('the end'),\n * });\n *\n * // result:\n * // 'the end'\n * ```\n *\n * @return A function that returns an empty Observable that only calls\n * `complete` or `error`, based on which one is called by the source\n * Observable.\n */\nexport function ignoreElements(): OperatorFunction<unknown, never> {\n return operate((source, subscriber) => {\n source.subscribe(createOperatorSubscriber(subscriber, noop));\n });\n}\n", "import { OperatorFunction } from '../types';\nimport { map } from './map';\n\n/** @deprecated To be removed in v9. Use {@link map} instead: `map(() => value)`. */\nexport function mapTo<R>(value: R): OperatorFunction<unknown, R>;\n/**\n * @deprecated Do not specify explicit type parameters. Signatures with type parameters\n * that cannot be inferred will be removed in v8. `mapTo` itself will be removed in v9,\n * use {@link map} instead: `map(() => value)`.\n * */\nexport function mapTo<T, R>(value: R): OperatorFunction<T, R>;\n\n/**\n * Emits the given constant value on the output Observable every time the source\n * Observable emits a value.\n *\n * <span class=\"informal\">Like {@link map}, but it maps every source value to\n * the same output value every time.</span>\n *\n * ![](mapTo.png)\n *\n * Takes a constant `value` as argument, and emits that whenever the source\n * Observable emits a value. In other words, ignores the actual source value,\n * and simply uses the emission moment to know when to emit the given `value`.\n *\n * ## Example\n *\n * Map every click to the string `'Hi'`\n *\n * ```ts\n * import { fromEvent, mapTo } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const greetings = clicks.pipe(mapTo('Hi'));\n *\n * greetings.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link map}\n *\n * @param value The value to map each source value to.\n * @return A function that returns an Observable that emits the given `value`\n * every time the source Observable emits.\n * @deprecated To be removed in v9. Use {@link map} instead: `map(() => value)`.\n */\nexport function mapTo<R>(value: R): OperatorFunction<unknown, R> {\n return map(() => value);\n}\n", "import { Observable } from '../Observable';\nimport { MonoTypeOperatorFunction, ObservableInput } from '../types';\nimport { concat } from '../observable/concat';\nimport { take } from './take';\nimport { ignoreElements } from './ignoreElements';\nimport { mapTo } from './mapTo';\nimport { mergeMap } from './mergeMap';\nimport { innerFrom } from '../observable/innerFrom';\n\n/** @deprecated The `subscriptionDelay` parameter will be removed in v8. */\nexport function delayWhen<T>(\n delayDurationSelector: (value: T, index: number) => ObservableInput<any>,\n subscriptionDelay: Observable<any>\n): MonoTypeOperatorFunction<T>;\nexport function delayWhen<T>(delayDurationSelector: (value: T, index: number) => ObservableInput<any>): MonoTypeOperatorFunction<T>;\n\n/**\n * Delays the emission of items from the source Observable by a given time span\n * determined by the emissions of another Observable.\n *\n * <span class=\"informal\">It's like {@link delay}, but the time span of the\n * delay duration is determined by a second Observable.</span>\n *\n * ![](delayWhen.png)\n *\n * `delayWhen` operator shifts each emitted value from the source Observable by\n * a time span determined by another Observable. When the source emits a value,\n * the `delayDurationSelector` function is called with the value emitted from\n * the source Observable as the first argument to the `delayDurationSelector`.\n * The `delayDurationSelector` function should return an {@link ObservableInput},\n * that is internally converted to an Observable that is called the \"duration\"\n * Observable.\n *\n * The source value is emitted on the output Observable only when the \"duration\"\n * Observable emits ({@link guide/glossary-and-semantics#next next}s) any value.\n * Upon that, the \"duration\" Observable gets unsubscribed.\n *\n * Before RxJS V7, the {@link guide/glossary-and-semantics#complete completion}\n * of the \"duration\" Observable would have been triggering the emission of the\n * source value to the output Observable, but with RxJS V7, this is not the case\n * anymore.\n *\n * Only next notifications (from the \"duration\" Observable) trigger values from\n * the source Observable to be passed to the output Observable. If the \"duration\"\n * Observable only emits the complete notification (without next), the value\n * emitted by the source Observable will never get to the output Observable - it\n * will be swallowed. If the \"duration\" Observable errors, the error will be\n * propagated to the output Observable.\n *\n * Optionally, `delayWhen` takes a second argument, `subscriptionDelay`, which\n * is an Observable. When `subscriptionDelay` emits its first value or\n * completes, the source Observable is subscribed to and starts behaving like\n * described in the previous paragraph. If `subscriptionDelay` is not provided,\n * `delayWhen` will subscribe to the source Observable as soon as the output\n * Observable is subscribed.\n *\n * ## Example\n *\n * Delay each click by a random amount of time, between 0 and 5 seconds\n *\n * ```ts\n * import { fromEvent, delayWhen, interval } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const delayedClicks = clicks.pipe(\n * delayWhen(() => interval(Math.random() * 5000))\n * );\n * delayedClicks.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link delay}\n * @see {@link throttle}\n * @see {@link throttleTime}\n * @see {@link debounce}\n * @see {@link debounceTime}\n * @see {@link sample}\n * @see {@link sampleTime}\n * @see {@link audit}\n * @see {@link auditTime}\n *\n * @param delayDurationSelector A function that returns an `ObservableInput` for\n * each `value` emitted by the source Observable, which is then used to delay the\n * emission of that `value` on the output Observable until the `ObservableInput`\n * returned from this function emits a next value. When called, beside `value`,\n * this function receives a zero-based `index` of the emission order.\n * @param subscriptionDelay An Observable that triggers the subscription to the\n * source Observable once it emits any value.\n * @return A function that returns an Observable that delays the emissions of\n * the source Observable by an amount of time specified by the Observable\n * returned by `delayDurationSelector`.\n */\nexport function delayWhen<T>(\n delayDurationSelector: (value: T, index: number) => ObservableInput<any>,\n subscriptionDelay?: Observable<any>\n): MonoTypeOperatorFunction<T> {\n if (subscriptionDelay) {\n // DEPRECATED PATH\n return (source: Observable<T>) =>\n concat(subscriptionDelay.pipe(take(1), ignoreElements()), source.pipe(delayWhen(delayDurationSelector)));\n }\n\n return mergeMap((value, index) => innerFrom(delayDurationSelector(value, index)).pipe(take(1), mapTo(value)));\n}\n", "import { asyncScheduler } from '../scheduler/async';\nimport { MonoTypeOperatorFunction, SchedulerLike } from '../types';\nimport { delayWhen } from './delayWhen';\nimport { timer } from '../observable/timer';\n\n/**\n * Delays the emission of items from the source Observable by a given timeout or\n * until a given Date.\n *\n * <span class=\"informal\">Time shifts each item by some specified amount of\n * milliseconds.</span>\n *\n * ![](delay.svg)\n *\n * If the delay argument is a Number, this operator time shifts the source\n * Observable by that amount of time expressed in milliseconds. The relative\n * time intervals between the values are preserved.\n *\n * If the delay argument is a Date, this operator time shifts the start of the\n * Observable execution until the given date occurs.\n *\n * ## Examples\n *\n * Delay each click by one second\n *\n * ```ts\n * import { fromEvent, delay } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const delayedClicks = clicks.pipe(delay(1000)); // each click emitted after 1 second\n * delayedClicks.subscribe(x => console.log(x));\n * ```\n *\n * Delay all clicks until a future date happens\n *\n * ```ts\n * import { fromEvent, delay } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const date = new Date('March 15, 2050 12:00:00'); // in the future\n * const delayedClicks = clicks.pipe(delay(date)); // click emitted only after that date\n * delayedClicks.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link delayWhen}\n * @see {@link throttle}\n * @see {@link throttleTime}\n * @see {@link debounce}\n * @see {@link debounceTime}\n * @see {@link sample}\n * @see {@link sampleTime}\n * @see {@link audit}\n * @see {@link auditTime}\n *\n * @param {number|Date} due The delay duration in milliseconds (a `number`) or\n * a `Date` until which the emission of the source items is delayed.\n * @param {SchedulerLike} [scheduler=async] The {@link SchedulerLike} to use for\n * managing the timers that handle the time-shift for each item.\n * @return A function that returns an Observable that delays the emissions of\n * the source Observable by the specified timeout or Date.\n */\nexport function delay<T>(due: number | Date, scheduler: SchedulerLike = asyncScheduler): MonoTypeOperatorFunction<T> {\n const duration = timer(due, scheduler);\n return delayWhen(() => duration);\n}\n", "import { MonoTypeOperatorFunction } from '../types';\nimport { identity } from '../util/identity';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\nexport function distinctUntilChanged<T>(comparator?: (previous: T, current: T) => boolean): MonoTypeOperatorFunction<T>;\nexport function distinctUntilChanged<T, K>(\n comparator: (previous: K, current: K) => boolean,\n keySelector: (value: T) => K\n): MonoTypeOperatorFunction<T>;\n\n/**\n * Returns a result {@link Observable} that emits all values pushed by the source observable if they\n * are distinct in comparison to the last value the result observable emitted.\n *\n * When provided without parameters or with the first parameter (`{@link distinctUntilChanged#comparator comparator}`),\n * it behaves like this:\n *\n * 1. It will always emit the first value from the source.\n * 2. For all subsequent values pushed by the source, they will be compared to the previously emitted values\n * using the provided `comparator` or an `===` equality check.\n * 3. If the value pushed by the source is determined to be unequal by this check, that value is emitted and\n * becomes the new \"previously emitted value\" internally.\n *\n * When the second parameter (`{@link distinctUntilChanged#keySelector keySelector}`) is provided, the behavior\n * changes:\n *\n * 1. It will always emit the first value from the source.\n * 2. The `keySelector` will be run against all values, including the first value.\n * 3. For all values after the first, the selected key will be compared against the key selected from\n * the previously emitted value using the `comparator`.\n * 4. If the keys are determined to be unequal by this check, the value (not the key), is emitted\n * and the selected key from that value is saved for future comparisons against other keys.\n *\n * ## Examples\n *\n * A very basic example with no `{@link distinctUntilChanged#comparator comparator}`. Note that `1` is emitted more than once,\n * because it's distinct in comparison to the _previously emitted_ value,\n * not in comparison to _all other emitted values_.\n *\n * ```ts\n * import { of, distinctUntilChanged } from 'rxjs';\n *\n * of(1, 1, 1, 2, 2, 2, 1, 1, 3, 3)\n * .pipe(distinctUntilChanged())\n * .subscribe(console.log);\n * // Logs: 1, 2, 1, 3\n * ```\n *\n * With a `{@link distinctUntilChanged#comparator comparator}`, you can do custom comparisons. Let's say\n * you only want to emit a value when all of its components have\n * changed:\n *\n * ```ts\n * import { of, distinctUntilChanged } from 'rxjs';\n *\n * const totallyDifferentBuilds$ = of(\n * { engineVersion: '1.1.0', transmissionVersion: '1.2.0' },\n * { engineVersion: '1.1.0', transmissionVersion: '1.4.0' },\n * { engineVersion: '1.3.0', transmissionVersion: '1.4.0' },\n * { engineVersion: '1.3.0', transmissionVersion: '1.5.0' },\n * { engineVersion: '2.0.0', transmissionVersion: '1.5.0' }\n * ).pipe(\n * distinctUntilChanged((prev, curr) => {\n * return (\n * prev.engineVersion === curr.engineVersion ||\n * prev.transmissionVersion === curr.transmissionVersion\n * );\n * })\n * );\n *\n * totallyDifferentBuilds$.subscribe(console.log);\n *\n * // Logs:\n * // { engineVersion: '1.1.0', transmissionVersion: '1.2.0' }\n * // { engineVersion: '1.3.0', transmissionVersion: '1.4.0' }\n * // { engineVersion: '2.0.0', transmissionVersion: '1.5.0' }\n * ```\n *\n * You can also provide a custom `{@link distinctUntilChanged#comparator comparator}` to check that emitted\n * changes are only in one direction. Let's say you only want to get\n * the next record temperature:\n *\n * ```ts\n * import { of, distinctUntilChanged } from 'rxjs';\n *\n * const temps$ = of(30, 31, 20, 34, 33, 29, 35, 20);\n *\n * const recordHighs$ = temps$.pipe(\n * distinctUntilChanged((prevHigh, temp) => {\n * // If the current temp is less than\n * // or the same as the previous record,\n * // the record hasn't changed.\n * return temp <= prevHigh;\n * })\n * );\n *\n * recordHighs$.subscribe(console.log);\n * // Logs: 30, 31, 34, 35\n * ```\n *\n * Selecting update events only when the `updatedBy` field shows\n * the account changed hands.\n *\n * ```ts\n * import { of, distinctUntilChanged } from 'rxjs';\n *\n * // A stream of updates to a given account\n * const accountUpdates$ = of(\n * { updatedBy: 'blesh', data: [] },\n * { updatedBy: 'blesh', data: [] },\n * { updatedBy: 'ncjamieson', data: [] },\n * { updatedBy: 'ncjamieson', data: [] },\n * { updatedBy: 'blesh', data: [] }\n * );\n *\n * // We only want the events where it changed hands\n * const changedHands$ = accountUpdates$.pipe(\n * distinctUntilChanged(undefined, update => update.updatedBy)\n * );\n *\n * changedHands$.subscribe(console.log);\n * // Logs:\n * // { updatedBy: 'blesh', data: Array[0] }\n * // { updatedBy: 'ncjamieson', data: Array[0] }\n * // { updatedBy: 'blesh', data: Array[0] }\n * ```\n *\n * @see {@link distinct}\n * @see {@link distinctUntilKeyChanged}\n *\n * @param comparator A function used to compare the previous and current keys for\n * equality. Defaults to a `===` check.\n * @param keySelector Used to select a key value to be passed to the `comparator`.\n *\n * @return A function that returns an Observable that emits items from the\n * source Observable with distinct values.\n */\nexport function distinctUntilChanged<T, K>(\n comparator?: (previous: K, current: K) => boolean,\n keySelector: (value: T) => K = identity as (value: T) => K\n): MonoTypeOperatorFunction<T> {\n // We've been allowing `null` do be passed as the `compare`, so we can't do\n // a default value for the parameter, because that will only work\n // for `undefined`.\n comparator = comparator ?? defaultCompare;\n\n return operate((source, subscriber) => {\n // The previous key, used to compare against keys selected\n // from new arrivals to determine \"distinctiveness\".\n let previousKey: K;\n // Whether or not this is the first value we've gotten.\n let first = true;\n\n source.subscribe(\n createOperatorSubscriber(subscriber, (value) => {\n // We always call the key selector.\n const currentKey = keySelector(value);\n\n // If it's the first value, we always emit it.\n // Otherwise, we compare this key to the previous key, and\n // if the comparer returns false, we emit.\n if (first || !comparator!(previousKey, currentKey)) {\n // Update our state *before* we emit the value\n // as emission can be the source of re-entrant code\n // in functional libraries like this. We only really\n // need to do this if it's the first value, or if the\n // key we're tracking in previous needs to change.\n first = false;\n previousKey = currentKey;\n\n // Emit the value!\n subscriber.next(value);\n }\n })\n );\n });\n}\n\nfunction defaultCompare(a: any, b: any) {\n return a === b;\n}\n", "import { distinctUntilChanged } from './distinctUntilChanged';\nimport { MonoTypeOperatorFunction } from '../types';\n\n/* tslint:disable:max-line-length */\nexport function distinctUntilKeyChanged<T>(key: keyof T): MonoTypeOperatorFunction<T>;\nexport function distinctUntilKeyChanged<T, K extends keyof T>(key: K, compare: (x: T[K], y: T[K]) => boolean): MonoTypeOperatorFunction<T>;\n/* tslint:enable:max-line-length */\n\n/**\n * Returns an Observable that emits all items emitted by the source Observable that are distinct by comparison from the previous item,\n * using a property accessed by using the key provided to check if the two items are distinct.\n *\n * If a comparator function is provided, then it will be called for each item to test for whether or not that value should be emitted.\n *\n * If a comparator function is not provided, an equality check is used by default.\n *\n * ## Examples\n *\n * An example comparing the name of persons\n *\n * ```ts\n * import { of, distinctUntilKeyChanged } from 'rxjs';\n *\n * of(\n * { age: 4, name: 'Foo' },\n * { age: 7, name: 'Bar' },\n * { age: 5, name: 'Foo' },\n * { age: 6, name: 'Foo' }\n * ).pipe(\n * distinctUntilKeyChanged('name')\n * )\n * .subscribe(x => console.log(x));\n *\n * // displays:\n * // { age: 4, name: 'Foo' }\n * // { age: 7, name: 'Bar' }\n * // { age: 5, name: 'Foo' }\n * ```\n *\n * An example comparing the first letters of the name\n *\n * ```ts\n * import { of, distinctUntilKeyChanged } from 'rxjs';\n *\n * of(\n * { age: 4, name: 'Foo1' },\n * { age: 7, name: 'Bar' },\n * { age: 5, name: 'Foo2' },\n * { age: 6, name: 'Foo3' }\n * ).pipe(\n * distinctUntilKeyChanged('name', (x, y) => x.substring(0, 3) === y.substring(0, 3))\n * )\n * .subscribe(x => console.log(x));\n *\n * // displays:\n * // { age: 4, name: 'Foo1' }\n * // { age: 7, name: 'Bar' }\n * // { age: 5, name: 'Foo2' }\n * ```\n *\n * @see {@link distinct}\n * @see {@link distinctUntilChanged}\n *\n * @param {string} key String key for object property lookup on each item.\n * @param {function} [compare] Optional comparison function called to test if an item is distinct from the previous item in the source.\n * @return A function that returns an Observable that emits items from the\n * source Observable with distinct values based on the key specified.\n */\nexport function distinctUntilKeyChanged<T, K extends keyof T>(key: K, compare?: (x: T[K], y: T[K]) => boolean): MonoTypeOperatorFunction<T> {\n return distinctUntilChanged((x: T, y: T) => compare ? compare(x[key], y[key]) : x[key] === y[key]);\n}\n", "import { MonoTypeOperatorFunction } from '../types';\nimport { operate } from '../util/lift';\n\n/**\n * Returns an Observable that mirrors the source Observable, but will call a specified function when\n * the source terminates on complete or error.\n * The specified function will also be called when the subscriber explicitly unsubscribes.\n *\n * ## Examples\n *\n * Execute callback function when the observable completes\n *\n * ```ts\n * import { interval, take, finalize } from 'rxjs';\n *\n * // emit value in sequence every 1 second\n * const source = interval(1000);\n * const example = source.pipe(\n * take(5), //take only the first 5 values\n * finalize(() => console.log('Sequence complete')) // Execute when the observable completes\n * );\n * const subscribe = example.subscribe(val => console.log(val));\n *\n * // results:\n * // 0\n * // 1\n * // 2\n * // 3\n * // 4\n * // 'Sequence complete'\n * ```\n *\n * Execute callback function when the subscriber explicitly unsubscribes\n *\n * ```ts\n * import { interval, finalize, tap, noop, timer } from 'rxjs';\n *\n * const source = interval(100).pipe(\n * finalize(() => console.log('[finalize] Called')),\n * tap({\n * next: () => console.log('[next] Called'),\n * error: () => console.log('[error] Not called'),\n * complete: () => console.log('[tap complete] Not called')\n * })\n * );\n *\n * const sub = source.subscribe({\n * next: x => console.log(x),\n * error: noop,\n * complete: () => console.log('[complete] Not called')\n * });\n *\n * timer(150).subscribe(() => sub.unsubscribe());\n *\n * // results:\n * // '[next] Called'\n * // 0\n * // '[finalize] Called'\n * ```\n *\n * @param {function} callback Function to be called when source terminates.\n * @return A function that returns an Observable that mirrors the source, but\n * will call the specified function on termination.\n */\nexport function finalize<T>(callback: () => void): MonoTypeOperatorFunction<T> {\n return operate((source, subscriber) => {\n // TODO: This try/finally was only added for `useDeprecatedSynchronousErrorHandling`.\n // REMOVE THIS WHEN THAT HOT GARBAGE IS REMOVED IN V8.\n try {\n source.subscribe(subscriber);\n } finally {\n subscriber.add(callback);\n }\n });\n}\n", "import { innerFrom } from '../observable/innerFrom';\nimport { Subject } from '../Subject';\nimport { SafeSubscriber } from '../Subscriber';\nimport { Subscription } from '../Subscription';\nimport { MonoTypeOperatorFunction, SubjectLike, ObservableInput } from '../types';\nimport { operate } from '../util/lift';\n\nexport interface ShareConfig<T> {\n /**\n * The factory used to create the subject that will connect the source observable to\n * multicast consumers.\n */\n connector?: () => SubjectLike<T>;\n /**\n * If `true`, the resulting observable will reset internal state on error from source and return to a \"cold\" state. This\n * allows the resulting observable to be \"retried\" in the event of an error.\n * If `false`, when an error comes from the source it will push the error into the connecting subject, and the subject\n * will remain the connecting subject, meaning the resulting observable will not go \"cold\" again, and subsequent retries\n * or resubscriptions will resubscribe to that same subject. In all cases, RxJS subjects will emit the same error again, however\n * {@link ReplaySubject} will also push its buffered values before pushing the error.\n * It is also possible to pass a notifier factory returning an `ObservableInput` instead which grants more fine-grained\n * control over how and when the reset should happen. This allows behaviors like conditional or delayed resets.\n */\n resetOnError?: boolean | ((error: any) => ObservableInput<any>);\n /**\n * If `true`, the resulting observable will reset internal state on completion from source and return to a \"cold\" state. This\n * allows the resulting observable to be \"repeated\" after it is done.\n * If `false`, when the source completes, it will push the completion through the connecting subject, and the subject\n * will remain the connecting subject, meaning the resulting observable will not go \"cold\" again, and subsequent repeats\n * or resubscriptions will resubscribe to that same subject.\n * It is also possible to pass a notifier factory returning an `ObservableInput` instead which grants more fine-grained\n * control over how and when the reset should happen. This allows behaviors like conditional or delayed resets.\n */\n resetOnComplete?: boolean | (() => ObservableInput<any>);\n /**\n * If `true`, when the number of subscribers to the resulting observable reaches zero due to those subscribers unsubscribing, the\n * internal state will be reset and the resulting observable will return to a \"cold\" state. This means that the next\n * time the resulting observable is subscribed to, a new subject will be created and the source will be subscribed to\n * again.\n * If `false`, when the number of subscribers to the resulting observable reaches zero due to unsubscription, the subject\n * will remain connected to the source, and new subscriptions to the result will be connected through that same subject.\n * It is also possible to pass a notifier factory returning an `ObservableInput` instead which grants more fine-grained\n * control over how and when the reset should happen. This allows behaviors like conditional or delayed resets.\n */\n resetOnRefCountZero?: boolean | (() => ObservableInput<any>);\n}\n\nexport function share<T>(): MonoTypeOperatorFunction<T>;\n\nexport function share<T>(options: ShareConfig<T>): MonoTypeOperatorFunction<T>;\n\n/**\n * Returns a new Observable that multicasts (shares) the original Observable. As long as there is at least one\n * Subscriber this Observable will be subscribed and emitting data. When all subscribers have unsubscribed it will\n * unsubscribe from the source Observable. Because the Observable is multicasting it makes the stream `hot`.\n * This is an alias for `multicast(() => new Subject()), refCount()`.\n *\n * The subscription to the underlying source Observable can be reset (unsubscribe and resubscribe for new subscribers),\n * if the subscriber count to the shared observable drops to 0, or if the source Observable errors or completes. It is\n * possible to use notifier factories for the resets to allow for behaviors like conditional or delayed resets. Please\n * note that resetting on error or complete of the source Observable does not behave like a transparent retry or restart\n * of the source because the error or complete will be forwarded to all subscribers and their subscription will be\n * closed. Only new subscribers after a reset on error or complete happened will cause a fresh subscription to the\n * source. To achieve transparent retries or restarts pipe the source through appropriate operators before sharing.\n *\n * ![](share.png)\n *\n * ## Example\n *\n * Generate new multicast Observable from the `source` Observable value\n *\n * ```ts\n * import { interval, tap, map, take, share } from 'rxjs';\n *\n * const source = interval(1000).pipe(\n * tap(x => console.log('Processing: ', x)),\n * map(x => x * x),\n * take(6),\n * share()\n * );\n *\n * source.subscribe(x => console.log('subscription 1: ', x));\n * source.subscribe(x => console.log('subscription 2: ', x));\n *\n * // Logs:\n * // Processing: 0\n * // subscription 1: 0\n * // subscription 2: 0\n * // Processing: 1\n * // subscription 1: 1\n * // subscription 2: 1\n * // Processing: 2\n * // subscription 1: 4\n * // subscription 2: 4\n * // Processing: 3\n * // subscription 1: 9\n * // subscription 2: 9\n * // Processing: 4\n * // subscription 1: 16\n * // subscription 2: 16\n * // Processing: 5\n * // subscription 1: 25\n * // subscription 2: 25\n * ```\n *\n * ## Example with notifier factory: Delayed reset\n *\n * ```ts\n * import { interval, take, share, timer } from 'rxjs';\n *\n * const source = interval(1000).pipe(\n * take(3),\n * share({\n * resetOnRefCountZero: () => timer(1000)\n * })\n * );\n *\n * const subscriptionOne = source.subscribe(x => console.log('subscription 1: ', x));\n * setTimeout(() => subscriptionOne.unsubscribe(), 1300);\n *\n * setTimeout(() => source.subscribe(x => console.log('subscription 2: ', x)), 1700);\n *\n * setTimeout(() => source.subscribe(x => console.log('subscription 3: ', x)), 5000);\n *\n * // Logs:\n * // subscription 1: 0\n * // (subscription 1 unsubscribes here)\n * // (subscription 2 subscribes here ~400ms later, source was not reset)\n * // subscription 2: 1\n * // subscription 2: 2\n * // (subscription 2 unsubscribes here)\n * // (subscription 3 subscribes here ~2000ms later, source did reset before)\n * // subscription 3: 0\n * // subscription 3: 1\n * // subscription 3: 2\n * ```\n *\n * @see {@link shareReplay}\n *\n * @return A function that returns an Observable that mirrors the source.\n */\nexport function share<T>(options: ShareConfig<T> = {}): MonoTypeOperatorFunction<T> {\n const { connector = () => new Subject<T>(), resetOnError = true, resetOnComplete = true, resetOnRefCountZero = true } = options;\n // It's necessary to use a wrapper here, as the _operator_ must be\n // referentially transparent. Otherwise, it cannot be used in calls to the\n // static `pipe` function - to create a partial pipeline.\n //\n // The _operator function_ - the function returned by the _operator_ - will\n // not be referentially transparent - as it shares its source - but the\n // _operator function_ is called when the complete pipeline is composed via a\n // call to a source observable's `pipe` method - not when the static `pipe`\n // function is called.\n return (wrapperSource) => {\n let connection: SafeSubscriber<T> | undefined;\n let resetConnection: Subscription | undefined;\n let subject: SubjectLike<T> | undefined;\n let refCount = 0;\n let hasCompleted = false;\n let hasErrored = false;\n\n const cancelReset = () => {\n resetConnection?.unsubscribe();\n resetConnection = undefined;\n };\n // Used to reset the internal state to a \"cold\"\n // state, as though it had never been subscribed to.\n const reset = () => {\n cancelReset();\n connection = subject = undefined;\n hasCompleted = hasErrored = false;\n };\n const resetAndUnsubscribe = () => {\n // We need to capture the connection before\n // we reset (if we need to reset).\n const conn = connection;\n reset();\n conn?.unsubscribe();\n };\n\n return operate<T, T>((source, subscriber) => {\n refCount++;\n if (!hasErrored && !hasCompleted) {\n cancelReset();\n }\n\n // Create the subject if we don't have one yet. Grab a local reference to\n // it as well, which avoids non-null assertions when using it and, if we\n // connect to it now, then error/complete need a reference after it was\n // reset.\n const dest = (subject = subject ?? connector());\n\n // Add the finalization directly to the subscriber - instead of returning it -\n // so that the handling of the subscriber's unsubscription will be wired\n // up _before_ the subscription to the source occurs. This is done so that\n // the assignment to the source connection's `closed` property will be seen\n // by synchronous firehose sources.\n subscriber.add(() => {\n refCount--;\n\n // If we're resetting on refCount === 0, and it's 0, we only want to do\n // that on \"unsubscribe\", really. Resetting on error or completion is a different\n // configuration.\n if (refCount === 0 && !hasErrored && !hasCompleted) {\n resetConnection = handleReset(resetAndUnsubscribe, resetOnRefCountZero);\n }\n });\n\n // The following line adds the subscription to the subscriber passed.\n // Basically, `subscriber === dest.subscribe(subscriber)` is `true`.\n dest.subscribe(subscriber);\n\n if (\n !connection &&\n // Check this shareReplay is still activate - it can be reset to 0\n // and be \"unsubscribed\" _before_ it actually subscribes.\n // If we were to subscribe then, it'd leak and get stuck.\n refCount > 0\n ) {\n // We need to create a subscriber here - rather than pass an observer and\n // assign the returned subscription to connection - because it's possible\n // for reentrant subscriptions to the shared observable to occur and in\n // those situations we want connection to be already-assigned so that we\n // don't create another connection to the source.\n connection = new SafeSubscriber({\n next: (value) => dest.next(value),\n error: (err) => {\n hasErrored = true;\n cancelReset();\n resetConnection = handleReset(reset, resetOnError, err);\n dest.error(err);\n },\n complete: () => {\n hasCompleted = true;\n cancelReset();\n resetConnection = handleReset(reset, resetOnComplete);\n dest.complete();\n },\n });\n innerFrom(source).subscribe(connection);\n }\n })(wrapperSource);\n };\n}\n\nfunction handleReset<T extends unknown[] = never[]>(\n reset: () => void,\n on: boolean | ((...args: T) => ObservableInput<any>),\n ...args: T\n): Subscription | undefined {\n if (on === true) {\n reset();\n return;\n }\n\n if (on === false) {\n return;\n }\n\n const onSubscriber = new SafeSubscriber({\n next: () => {\n onSubscriber.unsubscribe();\n reset();\n },\n });\n\n return innerFrom(on(...args)).subscribe(onSubscriber);\n}\n", "import { ReplaySubject } from '../ReplaySubject';\nimport { MonoTypeOperatorFunction, SchedulerLike } from '../types';\nimport { share } from './share';\n\nexport interface ShareReplayConfig {\n bufferSize?: number;\n windowTime?: number;\n refCount: boolean;\n scheduler?: SchedulerLike;\n}\n\nexport function shareReplay<T>(config: ShareReplayConfig): MonoTypeOperatorFunction<T>;\nexport function shareReplay<T>(bufferSize?: number, windowTime?: number, scheduler?: SchedulerLike): MonoTypeOperatorFunction<T>;\n\n/**\n * Share source and replay specified number of emissions on subscription.\n *\n * This operator is a specialization of `replay` that connects to a source observable\n * and multicasts through a `ReplaySubject` constructed with the specified arguments.\n * A successfully completed source will stay cached in the `shareReplay`ed observable forever,\n * but an errored source can be retried.\n *\n * ## Why use `shareReplay`?\n *\n * You generally want to use `shareReplay` when you have side-effects or taxing computations\n * that you do not wish to be executed amongst multiple subscribers.\n * It may also be valuable in situations where you know you will have late subscribers to\n * a stream that need access to previously emitted values.\n * This ability to replay values on subscription is what differentiates {@link share} and `shareReplay`.\n *\n * ## Reference counting\n *\n * By default `shareReplay` will use `refCount` of false, meaning that it will _not_ unsubscribe the\n * source when the reference counter drops to zero, i.e. the inner `ReplaySubject` will _not_ be unsubscribed\n * (and potentially run for ever).\n * This is the default as it is expected that `shareReplay` is often used to keep around expensive to setup\n * observables which we want to keep running instead of having to do the expensive setup again.\n *\n * As of RXJS version 6.4.0 a new overload signature was added to allow for manual control over what\n * happens when the operators internal reference counter drops to zero.\n * If `refCount` is true, the source will be unsubscribed from once the reference count drops to zero, i.e.\n * the inner `ReplaySubject` will be unsubscribed. All new subscribers will receive value emissions from a\n * new `ReplaySubject` which in turn will cause a new subscription to the source observable.\n *\n * ## Examples\n *\n * Example with a third subscriber coming late to the party\n *\n * ```ts\n * import { interval, take, shareReplay } from 'rxjs';\n *\n * const shared$ = interval(2000).pipe(\n * take(6),\n * shareReplay(3)\n * );\n *\n * shared$.subscribe(x => console.log('sub A: ', x));\n * shared$.subscribe(y => console.log('sub B: ', y));\n *\n * setTimeout(() => {\n * shared$.subscribe(y => console.log('sub C: ', y));\n * }, 11000);\n *\n * // Logs:\n * // (after ~2000 ms)\n * // sub A: 0\n * // sub B: 0\n * // (after ~4000 ms)\n * // sub A: 1\n * // sub B: 1\n * // (after ~6000 ms)\n * // sub A: 2\n * // sub B: 2\n * // (after ~8000 ms)\n * // sub A: 3\n * // sub B: 3\n * // (after ~10000 ms)\n * // sub A: 4\n * // sub B: 4\n * // (after ~11000 ms, sub C gets the last 3 values)\n * // sub C: 2\n * // sub C: 3\n * // sub C: 4\n * // (after ~12000 ms)\n * // sub A: 5\n * // sub B: 5\n * // sub C: 5\n * ```\n *\n * Example for `refCount` usage\n *\n * ```ts\n * import { Observable, tap, interval, shareReplay, take } from 'rxjs';\n *\n * const log = <T>(name: string, source: Observable<T>) => source.pipe(\n * tap({\n * subscribe: () => console.log(`${ name }: subscribed`),\n * next: value => console.log(`${ name }: ${ value }`),\n * complete: () => console.log(`${ name }: completed`),\n * finalize: () => console.log(`${ name }: unsubscribed`)\n * })\n * );\n *\n * const obs$ = log('source', interval(1000));\n *\n * const shared$ = log('shared', obs$.pipe(\n * shareReplay({ bufferSize: 1, refCount: true }),\n * take(2)\n * ));\n *\n * shared$.subscribe(x => console.log('sub A: ', x));\n * shared$.subscribe(y => console.log('sub B: ', y));\n *\n * // PRINTS:\n * // shared: subscribed <-- reference count = 1\n * // source: subscribed\n * // shared: subscribed <-- reference count = 2\n * // source: 0\n * // shared: 0\n * // sub A: 0\n * // shared: 0\n * // sub B: 0\n * // source: 1\n * // shared: 1\n * // sub A: 1\n * // shared: completed <-- take(2) completes the subscription for sub A\n * // shared: unsubscribed <-- reference count = 1\n * // shared: 1\n * // sub B: 1\n * // shared: completed <-- take(2) completes the subscription for sub B\n * // shared: unsubscribed <-- reference count = 0\n * // source: unsubscribed <-- replaySubject unsubscribes from source observable because the reference count dropped to 0 and refCount is true\n *\n * // In case of refCount being false, the unsubscribe is never called on the source and the source would keep on emitting, even if no subscribers\n * // are listening.\n * // source: 2\n * // source: 3\n * // source: 4\n * // ...\n * ```\n *\n * @see {@link publish}\n * @see {@link share}\n * @see {@link publishReplay}\n *\n * @param configOrBufferSize Maximum element count of the replay buffer or {@link ShareReplayConfig configuration}\n * object.\n * @param windowTime Maximum time length of the replay buffer in milliseconds.\n * @param scheduler Scheduler where connected observers within the selector function\n * will be invoked on.\n * @return A function that returns an Observable sequence that contains the\n * elements of a sequence produced by multicasting the source sequence within a\n * selector function.\n */\nexport function shareReplay<T>(\n configOrBufferSize?: ShareReplayConfig | number,\n windowTime?: number,\n scheduler?: SchedulerLike\n): MonoTypeOperatorFunction<T> {\n let bufferSize: number;\n let refCount = false;\n if (configOrBufferSize && typeof configOrBufferSize === 'object') {\n ({ bufferSize = Infinity, windowTime = Infinity, refCount = false, scheduler } = configOrBufferSize);\n } else {\n bufferSize = (configOrBufferSize ?? Infinity) as number;\n }\n return share<T>({\n connector: () => new ReplaySubject(bufferSize, windowTime, scheduler),\n resetOnError: true,\n resetOnComplete: false,\n resetOnRefCountZero: refCount,\n });\n}\n", "import { concat } from '../observable/concat';\nimport { OperatorFunction, SchedulerLike, ValueFromArray } from '../types';\nimport { popScheduler } from '../util/args';\nimport { operate } from '../util/lift';\n\n// Devs are more likely to pass null or undefined than they are a scheduler\n// without accompanying values. To make things easier for (naughty) devs who\n// use the `strictNullChecks: false` TypeScript compiler option, these\n// overloads with explicit null and undefined values are included.\n\nexport function startWith<T>(value: null): OperatorFunction<T, T | null>;\nexport function startWith<T>(value: undefined): OperatorFunction<T, T | undefined>;\n\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `concatAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function startWith<T, A extends readonly unknown[] = T[]>(\n ...valuesAndScheduler: [...A, SchedulerLike]\n): OperatorFunction<T, T | ValueFromArray<A>>;\nexport function startWith<T, A extends readonly unknown[] = T[]>(...values: A): OperatorFunction<T, T | ValueFromArray<A>>;\n\n/**\n * Returns an observable that, at the moment of subscription, will synchronously emit all\n * values provided to this operator, then subscribe to the source and mirror all of its emissions\n * to subscribers.\n *\n * This is a useful way to know when subscription has occurred on an existing observable.\n *\n * <span class=\"informal\">First emits its arguments in order, and then any\n * emissions from the source.</span>\n *\n * ![](startWith.png)\n *\n * ## Examples\n *\n * Emit a value when a timer starts.\n *\n * ```ts\n * import { timer, map, startWith } from 'rxjs';\n *\n * timer(1000)\n * .pipe(\n * map(() => 'timer emit'),\n * startWith('timer start')\n * )\n * .subscribe(x => console.log(x));\n *\n * // results:\n * // 'timer start'\n * // 'timer emit'\n * ```\n *\n * @param values Items you want the modified Observable to emit first.\n * @return A function that returns an Observable that synchronously emits\n * provided values before subscribing to the source Observable.\n *\n * @see {@link endWith}\n * @see {@link finalize}\n * @see {@link concat}\n */\nexport function startWith<T, D>(...values: D[]): OperatorFunction<T, T | D> {\n const scheduler = popScheduler(values);\n return operate((source, subscriber) => {\n // Here we can't pass `undefined` as a scheduler, because if we did, the\n // code inside of `concat` would be confused by the `undefined`, and treat it\n // like an invalid observable. So we have to split it two different ways.\n (scheduler ? concat(values, source, scheduler) : concat(values, source)).subscribe(subscriber);\n });\n}\n", "import { Subscriber } from '../Subscriber';\nimport { ObservableInput, OperatorFunction, ObservedValueOf } from '../types';\nimport { innerFrom } from '../observable/innerFrom';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\n/* tslint:disable:max-line-length */\nexport function switchMap<T, O extends ObservableInput<any>>(\n project: (value: T, index: number) => O\n): OperatorFunction<T, ObservedValueOf<O>>;\n/** @deprecated The `resultSelector` parameter will be removed in v8. Use an inner `map` instead. Details: https://rxjs.dev/deprecations/resultSelector */\nexport function switchMap<T, O extends ObservableInput<any>>(\n project: (value: T, index: number) => O,\n resultSelector: undefined\n): OperatorFunction<T, ObservedValueOf<O>>;\n/** @deprecated The `resultSelector` parameter will be removed in v8. Use an inner `map` instead. Details: https://rxjs.dev/deprecations/resultSelector */\nexport function switchMap<T, R, O extends ObservableInput<any>>(\n project: (value: T, index: number) => O,\n resultSelector: (outerValue: T, innerValue: ObservedValueOf<O>, outerIndex: number, innerIndex: number) => R\n): OperatorFunction<T, R>;\n/* tslint:enable:max-line-length */\n\n/**\n * Projects each source value to an Observable which is merged in the output\n * Observable, emitting values only from the most recently projected Observable.\n *\n * <span class=\"informal\">Maps each value to an Observable, then flattens all of\n * these inner Observables using {@link switchAll}.</span>\n *\n * ![](switchMap.png)\n *\n * Returns an Observable that emits items based on applying a function that you\n * supply to each item emitted by the source Observable, where that function\n * returns an (so-called \"inner\") Observable. Each time it observes one of these\n * inner Observables, the output Observable begins emitting the items emitted by\n * that inner Observable. When a new inner Observable is emitted, `switchMap`\n * stops emitting items from the earlier-emitted inner Observable and begins\n * emitting items from the new one. It continues to behave like this for\n * subsequent inner Observables.\n *\n * ## Example\n *\n * Generate new Observable according to source Observable values\n *\n * ```ts\n * import { of, switchMap } from 'rxjs';\n *\n * const switched = of(1, 2, 3).pipe(switchMap(x => of(x, x ** 2, x ** 3)));\n * switched.subscribe(x => console.log(x));\n * // outputs\n * // 1\n * // 1\n * // 1\n * // 2\n * // 4\n * // 8\n * // 3\n * // 9\n * // 27\n * ```\n *\n * Restart an interval Observable on every click event\n *\n * ```ts\n * import { fromEvent, switchMap, interval } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(switchMap(() => interval(1000)));\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link concatMap}\n * @see {@link exhaustMap}\n * @see {@link mergeMap}\n * @see {@link switchAll}\n * @see {@link switchMapTo}\n *\n * @param {function(value: T, index: number): ObservableInput} project A function\n * that, when applied to an item emitted by the source Observable, returns an\n * Observable.\n * @return A function that returns an Observable that emits the result of\n * applying the projection function (and the optional deprecated\n * `resultSelector`) to each item emitted by the source Observable and taking\n * only the values from the most recently projected inner Observable.\n */\nexport function switchMap<T, R, O extends ObservableInput<any>>(\n project: (value: T, index: number) => O,\n resultSelector?: (outerValue: T, innerValue: ObservedValueOf<O>, outerIndex: number, innerIndex: number) => R\n): OperatorFunction<T, ObservedValueOf<O> | R> {\n return operate((source, subscriber) => {\n let innerSubscriber: Subscriber<ObservedValueOf<O>> | null = null;\n let index = 0;\n // Whether or not the source subscription has completed\n let isComplete = false;\n\n // We only complete the result if the source is complete AND we don't have an active inner subscription.\n // This is called both when the source completes and when the inners complete.\n const checkComplete = () => isComplete && !innerSubscriber && subscriber.complete();\n\n source.subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => {\n // Cancel the previous inner subscription if there was one\n innerSubscriber?.unsubscribe();\n let innerIndex = 0;\n const outerIndex = index++;\n // Start the next inner subscription\n innerFrom(project(value, outerIndex)).subscribe(\n (innerSubscriber = createOperatorSubscriber(\n subscriber,\n // When we get a new inner value, next it through. Note that this is\n // handling the deprecate result selector here. This is because with this architecture\n // it ends up being smaller than using the map operator.\n (innerValue) => subscriber.next(resultSelector ? resultSelector(value, innerValue, outerIndex, innerIndex++) : innerValue),\n () => {\n // The inner has completed. Null out the inner subscriber to\n // free up memory and to signal that we have no inner subscription\n // currently.\n innerSubscriber = null!;\n checkComplete();\n }\n ))\n );\n },\n () => {\n isComplete = true;\n checkComplete();\n }\n )\n );\n });\n}\n", "import { MonoTypeOperatorFunction, Observer } from '../types';\nimport { isFunction } from '../util/isFunction';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\nimport { identity } from '../util/identity';\n\n/**\n * An extension to the {@link Observer} interface used only by the {@link tap} operator.\n *\n * It provides a useful set of callbacks a user can register to do side-effects in\n * cases other than what the usual {@link Observer} callbacks are\n * ({@link guide/glossary-and-semantics#next next},\n * {@link guide/glossary-and-semantics#error error} and/or\n * {@link guide/glossary-and-semantics#complete complete}).\n *\n * ## Example\n *\n * ```ts\n * import { fromEvent, switchMap, tap, interval, take } from 'rxjs';\n *\n * const source$ = fromEvent(document, 'click');\n * const result$ = source$.pipe(\n * switchMap((_, i) => i % 2 === 0\n * ? fromEvent(document, 'mousemove').pipe(\n * tap({\n * subscribe: () => console.log('Subscribed to the mouse move events after click #' + i),\n * unsubscribe: () => console.log('Mouse move events #' + i + ' unsubscribed'),\n * finalize: () => console.log('Mouse move events #' + i + ' finalized')\n * })\n * )\n * : interval(1_000).pipe(\n * take(5),\n * tap({\n * subscribe: () => console.log('Subscribed to the 1-second interval events after click #' + i),\n * unsubscribe: () => console.log('1-second interval events #' + i + ' unsubscribed'),\n * finalize: () => console.log('1-second interval events #' + i + ' finalized')\n * })\n * )\n * )\n * );\n *\n * const subscription = result$.subscribe({\n * next: console.log\n * });\n *\n * setTimeout(() => {\n * console.log('Unsubscribe after 60 seconds');\n * subscription.unsubscribe();\n * }, 60_000);\n * ```\n */\nexport interface TapObserver<T> extends Observer<T> {\n /**\n * The callback that `tap` operator invokes at the moment when the source Observable\n * gets subscribed to.\n */\n subscribe: () => void;\n /**\n * The callback that `tap` operator invokes when an explicit\n * {@link guide/glossary-and-semantics#unsubscription unsubscribe} happens. It won't get invoked on\n * `error` or `complete` events.\n */\n unsubscribe: () => void;\n /**\n * The callback that `tap` operator invokes when any kind of\n * {@link guide/glossary-and-semantics#finalization finalization} happens - either when\n * the source Observable `error`s or `complete`s or when it gets explicitly unsubscribed\n * by the user. There is no difference in using this callback or the {@link finalize}\n * operator, but if you're already using `tap` operator, you can use this callback\n * instead. You'd get the same result in either case.\n */\n finalize: () => void;\n}\nexport function tap<T>(observerOrNext?: Partial<TapObserver<T>> | ((value: T) => void)): MonoTypeOperatorFunction<T>;\n/** @deprecated Instead of passing separate callback arguments, use an observer argument. Signatures taking separate callback arguments will be removed in v8. Details: https://rxjs.dev/deprecations/subscribe-arguments */\nexport function tap<T>(\n next?: ((value: T) => void) | null,\n error?: ((error: any) => void) | null,\n complete?: (() => void) | null\n): MonoTypeOperatorFunction<T>;\n\n/**\n * Used to perform side-effects for notifications from the source observable\n *\n * <span class=\"informal\">Used when you want to affect outside state with a notification without altering the notification</span>\n *\n * ![](tap.png)\n *\n * Tap is designed to allow the developer a designated place to perform side effects. While you _could_ perform side-effects\n * inside of a `map` or a `mergeMap`, that would make their mapping functions impure, which isn't always a big deal, but will\n * make it so you can't do things like memoize those functions. The `tap` operator is designed solely for such side-effects to\n * help you remove side-effects from other operations.\n *\n * For any notification, next, error, or complete, `tap` will call the appropriate callback you have provided to it, via a function\n * reference, or a partial observer, then pass that notification down the stream.\n *\n * The observable returned by `tap` is an exact mirror of the source, with one exception: Any error that occurs -- synchronously -- in a handler\n * provided to `tap` will be emitted as an error from the returned observable.\n *\n * > Be careful! You can mutate objects as they pass through the `tap` operator's handlers.\n *\n * The most common use of `tap` is actually for debugging. You can place a `tap(console.log)` anywhere\n * in your observable `pipe`, log out the notifications as they are emitted by the source returned by the previous\n * operation.\n *\n * ## Examples\n *\n * Check a random number before it is handled. Below is an observable that will use a random number between 0 and 1,\n * and emit `'big'` or `'small'` depending on the size of that number. But we wanted to log what the original number\n * was, so we have added a `tap(console.log)`.\n *\n * ```ts\n * import { of, tap, map } from 'rxjs';\n *\n * of(Math.random()).pipe(\n * tap(console.log),\n * map(n => n > 0.5 ? 'big' : 'small')\n * ).subscribe(console.log);\n * ```\n *\n * Using `tap` to analyze a value and force an error. Below is an observable where in our system we only\n * want to emit numbers 3 or less we get from another source. We can force our observable to error\n * using `tap`.\n *\n * ```ts\n * import { of, tap } from 'rxjs';\n *\n * const source = of(1, 2, 3, 4, 5);\n *\n * source.pipe(\n * tap(n => {\n * if (n > 3) {\n * throw new TypeError(`Value ${ n } is greater than 3`);\n * }\n * })\n * )\n * .subscribe({ next: console.log, error: err => console.log(err.message) });\n * ```\n *\n * We want to know when an observable completes before moving on to the next observable. The system\n * below will emit a random series of `'X'` characters from 3 different observables in sequence. The\n * only way we know when one observable completes and moves to the next one, in this case, is because\n * we have added a `tap` with the side effect of logging to console.\n *\n * ```ts\n * import { of, concatMap, interval, take, map, tap } from 'rxjs';\n *\n * of(1, 2, 3).pipe(\n * concatMap(n => interval(1000).pipe(\n * take(Math.round(Math.random() * 10)),\n * map(() => 'X'),\n * tap({ complete: () => console.log(`Done with ${ n }`) })\n * ))\n * )\n * .subscribe(console.log);\n * ```\n *\n * @see {@link finalize}\n * @see {@link TapObserver}\n *\n * @param observerOrNext A next handler or partial observer\n * @param error An error handler\n * @param complete A completion handler\n * @return A function that returns an Observable identical to the source, but\n * runs the specified Observer or callback(s) for each item.\n */\nexport function tap<T>(\n observerOrNext?: Partial<TapObserver<T>> | ((value: T) => void) | null,\n error?: ((e: any) => void) | null,\n complete?: (() => void) | null\n): MonoTypeOperatorFunction<T> {\n // We have to check to see not only if next is a function,\n // but if error or complete were passed. This is because someone\n // could technically call tap like `tap(null, fn)` or `tap(null, null, fn)`.\n const tapObserver =\n isFunction(observerOrNext) || error || complete\n ? // tslint:disable-next-line: no-object-literal-type-assertion\n ({ next: observerOrNext as Exclude<typeof observerOrNext, Partial<TapObserver<T>>>, error, complete } as Partial<TapObserver<T>>)\n : observerOrNext;\n\n return tapObserver\n ? operate((source, subscriber) => {\n tapObserver.subscribe?.();\n let isUnsub = true;\n source.subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => {\n tapObserver.next?.(value);\n subscriber.next(value);\n },\n () => {\n isUnsub = false;\n tapObserver.complete?.();\n subscriber.complete();\n },\n (err) => {\n isUnsub = false;\n tapObserver.error?.(err);\n subscriber.error(err);\n },\n () => {\n if (isUnsub) {\n tapObserver.unsubscribe?.();\n }\n tapObserver.finalize?.();\n }\n )\n );\n })\n : // Tap was called with no valid tap observer or handler\n // (e.g. `tap(null, null, null)` or `tap(null)` or `tap()`)\n // so we're going to just mirror the source.\n identity;\n}\n", "import { OperatorFunction, ObservableInputTuple } from '../types';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\nimport { innerFrom } from '../observable/innerFrom';\nimport { identity } from '../util/identity';\nimport { noop } from '../util/noop';\nimport { popResultSelector } from '../util/args';\n\nexport function withLatestFrom<T, O extends unknown[]>(...inputs: [...ObservableInputTuple<O>]): OperatorFunction<T, [T, ...O]>;\n\nexport function withLatestFrom<T, O extends unknown[], R>(\n ...inputs: [...ObservableInputTuple<O>, (...value: [T, ...O]) => R]\n): OperatorFunction<T, R>;\n\n/**\n * Combines the source Observable with other Observables to create an Observable\n * whose values are calculated from the latest values of each, only when the\n * source emits.\n *\n * <span class=\"informal\">Whenever the source Observable emits a value, it\n * computes a formula using that value plus the latest values from other input\n * Observables, then emits the output of that formula.</span>\n *\n * ![](withLatestFrom.png)\n *\n * `withLatestFrom` combines each value from the source Observable (the\n * instance) with the latest values from the other input Observables only when\n * the source emits a value, optionally using a `project` function to determine\n * the value to be emitted on the output Observable. All input Observables must\n * emit at least one value before the output Observable will emit a value.\n *\n * ## Example\n *\n * On every click event, emit an array with the latest timer event plus the click event\n *\n * ```ts\n * import { fromEvent, interval, withLatestFrom } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const timer = interval(1000);\n * const result = clicks.pipe(withLatestFrom(timer));\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link combineLatest}\n *\n * @param {ObservableInput} other An input Observable to combine with the source\n * Observable. More than one input Observables may be given as argument.\n * @param {Function} [project] Projection function for combining values\n * together. Receives all values in order of the Observables passed, where the\n * first parameter is a value from the source Observable. (e.g.\n * `a.pipe(withLatestFrom(b, c), map(([a1, b1, c1]) => a1 + b1 + c1))`). If this is not\n * passed, arrays will be emitted on the output Observable.\n * @return A function that returns an Observable of projected values from the\n * most recent values from each input Observable, or an array of the most\n * recent values from each input Observable.\n */\nexport function withLatestFrom<T, R>(...inputs: any[]): OperatorFunction<T, R | any[]> {\n const project = popResultSelector(inputs) as ((...args: any[]) => R) | undefined;\n\n return operate((source, subscriber) => {\n const len = inputs.length;\n const otherValues = new Array(len);\n // An array of whether or not the other sources have emitted. Matched with them by index.\n // TODO: At somepoint, we should investigate the performance implications here, and look\n // into using a `Set()` and checking the `size` to see if we're ready.\n let hasValue = inputs.map(() => false);\n // Flipped true when we have at least one value from all other sources and\n // we are ready to start emitting values.\n let ready = false;\n\n // Other sources. Note that here we are not checking `subscriber.closed`,\n // this causes all inputs to be subscribed to, even if nothing can be emitted\n // from them. This is an important distinction because subscription constitutes\n // a side-effect.\n for (let i = 0; i < len; i++) {\n innerFrom(inputs[i]).subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => {\n otherValues[i] = value;\n if (!ready && !hasValue[i]) {\n // If we're not ready yet, flag to show this observable has emitted.\n hasValue[i] = true;\n // Intentionally terse code.\n // If all of our other observables have emitted, set `ready` to `true`,\n // so we know we can start emitting values, then clean up the `hasValue` array,\n // because we don't need it anymore.\n (ready = hasValue.every(identity)) && (hasValue = null!);\n }\n },\n // Completing one of the other sources has\n // no bearing on the completion of our result.\n noop\n )\n );\n }\n\n // Source subscription\n source.subscribe(\n createOperatorSubscriber(subscriber, (value) => {\n if (ready) {\n // We have at least one value from the other sources. Go ahead and emit.\n const values = [value, ...otherValues];\n subscriber.next(project ? project(...values) : values);\n }\n })\n );\n });\n}\n", "import { zip as zipStatic } from '../observable/zip';\nimport { ObservableInput, ObservableInputTuple, OperatorFunction, Cons } from '../types';\nimport { operate } from '../util/lift';\n\n/** @deprecated Replaced with {@link zipWith}. Will be removed in v8. */\nexport function zip<T, A extends readonly unknown[]>(otherInputs: [...ObservableInputTuple<A>]): OperatorFunction<T, Cons<T, A>>;\n/** @deprecated Replaced with {@link zipWith}. Will be removed in v8. */\nexport function zip<T, A extends readonly unknown[], R>(\n otherInputsAndProject: [...ObservableInputTuple<A>],\n project: (...values: Cons<T, A>) => R\n): OperatorFunction<T, R>;\n/** @deprecated Replaced with {@link zipWith}. Will be removed in v8. */\nexport function zip<T, A extends readonly unknown[]>(...otherInputs: [...ObservableInputTuple<A>]): OperatorFunction<T, Cons<T, A>>;\n/** @deprecated Replaced with {@link zipWith}. Will be removed in v8. */\nexport function zip<T, A extends readonly unknown[], R>(\n ...otherInputsAndProject: [...ObservableInputTuple<A>, (...values: Cons<T, A>) => R]\n): OperatorFunction<T, R>;\n\n/**\n * @deprecated Replaced with {@link zipWith}. Will be removed in v8.\n */\nexport function zip<T, R>(...sources: Array<ObservableInput<any> | ((...values: Array<any>) => R)>): OperatorFunction<T, any> {\n return operate((source, subscriber) => {\n zipStatic(source as ObservableInput<any>, ...(sources as Array<ObservableInput<any>>)).subscribe(subscriber);\n });\n}\n", "import { ObservableInputTuple, OperatorFunction, Cons } from '../types';\nimport { zip } from './zip';\n\n/**\n * Subscribes to the source, and the observable inputs provided as arguments, and combines their values, by index, into arrays.\n *\n * What is meant by \"combine by index\": The first value from each will be made into a single array, then emitted,\n * then the second value from each will be combined into a single array and emitted, then the third value\n * from each will be combined into a single array and emitted, and so on.\n *\n * This will continue until it is no longer able to combine values of the same index into an array.\n *\n * After the last value from any one completed source is emitted in an array, the resulting observable will complete,\n * as there is no way to continue \"zipping\" values together by index.\n *\n * Use-cases for this operator are limited. There are memory concerns if one of the streams is emitting\n * values at a much faster rate than the others. Usage should likely be limited to streams that emit\n * at a similar pace, or finite streams of known length.\n *\n * In many cases, authors want `combineLatestWith` and not `zipWith`.\n *\n * @param otherInputs other observable inputs to collate values from.\n * @return A function that returns an Observable that emits items by index\n * combined from the source Observable and provided Observables, in form of an\n * array.\n */\nexport function zipWith<T, A extends readonly unknown[]>(...otherInputs: [...ObservableInputTuple<A>]): OperatorFunction<T, Cons<T, A>> {\n return zip(...otherInputs);\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve all elements matching the query selector\n *\n * @template T - Element type\n *\n * @param selector - Query selector\n * @param node - Node of reference\n *\n * @returns Elements\n */\nexport function getElements<T extends keyof HTMLElementTagNameMap>(\n selector: T, node?: ParentNode\n): HTMLElementTagNameMap[T][]\n\nexport function getElements<T extends HTMLElement>(\n selector: string, node?: ParentNode\n): T[]\n\nexport function getElements<T extends HTMLElement>(\n selector: string, node: ParentNode = document\n): T[] {\n return Array.from(node.querySelectorAll<T>(selector))\n}\n\n/**\n * Retrieve an element matching a query selector or throw a reference error\n *\n * Note that this function assumes that the element is present. If unsure if an\n * element is existent, use the `getOptionalElement` function instead.\n *\n * @template T - Element type\n *\n * @param selector - Query selector\n * @param node - Node of reference\n *\n * @returns Element\n */\nexport function getElement<T extends keyof HTMLElementTagNameMap>(\n selector: T, node?: ParentNode\n): HTMLElementTagNameMap[T]\n\nexport function getElement<T extends HTMLElement>(\n selector: string, node?: ParentNode\n): T\n\nexport function getElement<T extends HTMLElement>(\n selector: string, node: ParentNode = document\n): T {\n const el = getOptionalElement<T>(selector, node)\n if (typeof el === \"undefined\")\n throw new ReferenceError(\n `Missing element: expected \"${selector}\" to be present`\n )\n\n /* Return element */\n return el\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Retrieve an optional element matching the query selector\n *\n * @template T - Element type\n *\n * @param selector - Query selector\n * @param node - Node of reference\n *\n * @returns Element or nothing\n */\nexport function getOptionalElement<T extends keyof HTMLElementTagNameMap>(\n selector: T, node?: ParentNode\n): HTMLElementTagNameMap[T] | undefined\n\nexport function getOptionalElement<T extends HTMLElement>(\n selector: string, node?: ParentNode\n): T | undefined\n\nexport function getOptionalElement<T extends HTMLElement>(\n selector: string, node: ParentNode = document\n): T | undefined {\n return node.querySelector<T>(selector) || undefined\n}\n\n/**\n * Retrieve the currently active element\n *\n * @returns Element or nothing\n */\nexport function getActiveElement(): HTMLElement | undefined {\n return (\n document.activeElement?.shadowRoot?.activeElement as HTMLElement ??\n document.activeElement as HTMLElement ??\n undefined\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n debounceTime,\n distinctUntilChanged,\n fromEvent,\n map,\n merge,\n shareReplay,\n startWith\n} from \"rxjs\"\n\nimport { getActiveElement } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Focus observable\n *\n * Previously, this observer used `focus` and `blur` events to determine whether\n * an element is focused, but this doesn't work if there are focusable elements\n * within the elements itself. A better solutions are `focusin` and `focusout`\n * events, which bubble up the tree and allow for more fine-grained control.\n *\n * `debounceTime` is necessary, because when a focus change happens inside an\n * element, the observable would first emit `false` and then `true` again.\n */\nconst observer$ = merge(\n fromEvent(document.body, \"focusin\"),\n fromEvent(document.body, \"focusout\")\n)\n .pipe(\n debounceTime(1),\n startWith(undefined),\n map(() => getActiveElement() || document.body),\n shareReplay(1)\n )\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch element focus\n *\n * @param el - Element\n *\n * @returns Element focus observable\n */\nexport function watchElementFocus(\n el: HTMLElement\n): Observable<boolean> {\n return observer$\n .pipe(\n map(active => el.contains(active)),\n distinctUntilChanged()\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { JSX as JSXInternal } from \"preact\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * HTML attributes\n */\ntype Attributes =\n & JSXInternal.HTMLAttributes\n & JSXInternal.SVGAttributes\n & Record<string, any>\n\n/**\n * Child element\n */\ntype Child =\n | ChildNode\n | HTMLElement\n | Text\n | string\n | number\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Append a child node to an element\n *\n * @param el - Element\n * @param child - Child node(s)\n */\nfunction appendChild(el: HTMLElement, child: Child | Child[]): void {\n\n /* Handle primitive types (including raw HTML) */\n if (typeof child === \"string\" || typeof child === \"number\") {\n el.innerHTML += child.toString()\n\n /* Handle nodes */\n } else if (child instanceof Node) {\n el.appendChild(child)\n\n /* Handle nested children */\n } else if (Array.isArray(child)) {\n for (const node of child)\n appendChild(el, node)\n }\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * JSX factory\n *\n * @template T - Element type\n *\n * @param tag - HTML tag\n * @param attributes - HTML attributes\n * @param children - Child elements\n *\n * @returns Element\n */\nexport function h<T extends keyof HTMLElementTagNameMap>(\n tag: T, attributes?: Attributes | null, ...children: Child[]\n): HTMLElementTagNameMap[T]\n\nexport function h<T extends h.JSX.Element>(\n tag: string, attributes?: Attributes | null, ...children: Child[]\n): T\n\nexport function h<T extends h.JSX.Element>(\n tag: string, attributes?: Attributes | null, ...children: Child[]\n): T {\n const el = document.createElement(tag)\n\n /* Set attributes, if any */\n if (attributes)\n for (const attr of Object.keys(attributes)) {\n if (typeof attributes[attr] === \"undefined\")\n continue\n\n /* Set default attribute or boolean */\n if (typeof attributes[attr] !== \"boolean\")\n el.setAttribute(attr, attributes[attr])\n else\n el.setAttribute(attr, \"\")\n }\n\n /* Append child nodes */\n for (const child of children)\n appendChild(el, child)\n\n /* Return element */\n return el as T\n}\n\n/* ----------------------------------------------------------------------------\n * Namespace\n * ------------------------------------------------------------------------- */\n\nexport declare namespace h {\n namespace JSX {\n type Element = HTMLElement\n type IntrinsicElements = JSXInternal.IntrinsicElements\n }\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Round a number for display with repository facts\n *\n * This is a reverse-engineered version of GitHub's weird rounding algorithm\n * for stars, forks and all other numbers. While all numbers below `1,000` are\n * returned as-is, bigger numbers are converted to fixed numbers:\n *\n * - `1,049` => `1k`\n * - `1,050` => `1.1k`\n * - `1,949` => `1.9k`\n * - `1,950` => `2k`\n *\n * @param value - Original value\n *\n * @returns Rounded value\n */\nexport function round(value: number): string {\n if (value > 999) {\n const digits = +((value - 950) % 1000 > 99)\n return `${((value + 0.000001) / 1000).toFixed(digits)}k`\n } else {\n return value.toString()\n }\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n defer,\n finalize,\n fromEvent,\n map,\n merge,\n switchMap,\n take,\n throwError\n} from \"rxjs\"\n\nimport { h } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Create and load a `script` element\n *\n * This function returns an observable that will emit when the script was\n * successfully loaded, or throw an error if it wasn't.\n *\n * @param src - Script URL\n *\n * @returns Script observable\n */\nexport function watchScript(src: string): Observable<void> {\n const script = h(\"script\", { src })\n return defer(() => {\n document.head.appendChild(script)\n return merge(\n fromEvent(script, \"load\"),\n fromEvent(script, \"error\")\n .pipe(\n switchMap(() => (\n throwError(() => new ReferenceError(`Invalid script: ${src}`))\n ))\n )\n )\n .pipe(\n map(() => undefined),\n finalize(() => document.head.removeChild(script)),\n take(1)\n )\n })\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n NEVER,\n Observable,\n Subject,\n defer,\n filter,\n finalize,\n map,\n merge,\n of,\n shareReplay,\n startWith,\n switchMap,\n tap\n} from \"rxjs\"\n\nimport { watchScript } from \"../../../script\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Element offset\n */\nexport interface ElementSize {\n width: number /* Element width */\n height: number /* Element height */\n}\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Resize observer entry subject\n */\nconst entry$ = new Subject<ResizeObserverEntry>()\n\n/**\n * Resize observer observable\n *\n * This observable will create a `ResizeObserver` on the first subscription\n * and will automatically terminate it when there are no more subscribers.\n * It's quite important to centralize observation in a single `ResizeObserver`,\n * as the performance difference can be quite dramatic, as the link shows.\n *\n * If the browser doesn't have a `ResizeObserver` implementation available, a\n * polyfill is automatically downloaded from unpkg.com. This is also compatible\n * with the built-in privacy plugin, which will download the polyfill and put\n * it alongside the built site for self-hosting.\n *\n * @see https://bit.ly/3iIYfEm - Google Groups on performance\n */\nconst observer$ = defer(() => (\n typeof ResizeObserver === \"undefined\"\n ? watchScript(\"https://unpkg.com/resize-observer-polyfill\")\n : of(undefined)\n))\n .pipe(\n map(() => new ResizeObserver(entries => (\n entries.forEach(entry => entry$.next(entry))\n ))),\n switchMap(observer => merge(NEVER, of(observer)).pipe(\n finalize(() => observer.disconnect())\n )),\n shareReplay(1)\n )\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve element size\n *\n * @param el - Element\n *\n * @returns Element size\n */\nexport function getElementSize(\n el: HTMLElement\n): ElementSize {\n return {\n width: el.offsetWidth,\n height: el.offsetHeight\n }\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch element size\n *\n * This function returns an observable that subscribes to a single internal\n * instance of `ResizeObserver` upon subscription, and emit resize events until\n * termination. Note that this function should not be called with the same\n * element twice, as the first unsubscription will terminate observation.\n *\n * Sadly, we can't use the `DOMRect` objects returned by the observer, because\n * we need the emitted values to be consistent with `getElementSize`, which will\n * return the used values (rounded) and not actual values (unrounded). Thus, we\n * use the `offset*` properties. See the linked GitHub issue.\n *\n * @see https://bit.ly/3m0k3he - GitHub issue\n *\n * @param el - Element\n *\n * @returns Element size observable\n */\nexport function watchElementSize(\n el: HTMLElement\n): Observable<ElementSize> {\n\n // Compute target element - since inline elements cannot be observed by the\n // current `ResizeObserver` implementation as provided by browsers, we need\n // to determine the first containing parent element and use that one as a\n // target, while we always compute the actual size from the element.\n let target = el\n while (target.clientWidth === 0)\n if (target.parentElement)\n target = target.parentElement\n else\n break\n\n // Observe target element and recompute element size on resize - as described\n // above, the target element is not necessarily the element of interest\n return observer$.pipe(\n tap(observer => observer.observe(target)),\n switchMap(observer => entry$.pipe(\n filter(entry => entry.target === target),\n finalize(() => observer.unobserve(target))\n )),\n map(() => getElementSize(el)),\n startWith(getElementSize(el))\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { ElementSize } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve element content size (= scroll width and height)\n *\n * @param el - Element\n *\n * @returns Element content size\n */\nexport function getElementContentSize(\n el: HTMLElement\n): ElementSize {\n return {\n width: el.scrollWidth,\n height: el.scrollHeight\n }\n}\n\n/**\n * Retrieve the overflowing container of an element, if any\n *\n * @param el - Element\n *\n * @returns Overflowing container or nothing\n */\nexport function getElementContainer(\n el: HTMLElement\n): HTMLElement | undefined {\n let parent = el.parentElement\n while (parent)\n if (\n el.scrollWidth <= parent.scrollWidth &&\n el.scrollHeight <= parent.scrollHeight\n )\n parent = (el = parent).parentElement\n else\n break\n\n /* Return overflowing container */\n return parent ? el : undefined\n}\n\n/**\n * Retrieve all overflowing containers of an element, if any\n *\n * Note that this function has a slightly different behavior, so we should at\n * some point consider refactoring how overflowing containers are handled.\n *\n * @param el - Element\n *\n * @returns Overflowing containers\n */\nexport function getElementContainers(\n el: HTMLElement\n): HTMLElement[] {\n const containers: HTMLElement[] = []\n\n // Walk up the DOM tree until we find an overflowing container\n let parent = el.parentElement\n while (parent) {\n if (\n el.clientWidth > parent.clientWidth ||\n el.clientHeight > parent.clientHeight\n )\n containers.push(parent)\n\n // Continue with parent element\n parent = (el = parent).parentElement\n }\n\n // If the page is short, the body might not be overflowing and there might be\n // no other containers, which is why we need to make sure the body is present\n if (containers.length === 0)\n containers.push(document.documentElement)\n\n // Return overflowing containers\n return containers\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n animationFrameScheduler,\n auditTime,\n fromEvent,\n map,\n merge,\n startWith\n} from \"rxjs\"\n\nimport { ElementOffset } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve element content offset (= scroll offset)\n *\n * @param el - Element\n *\n * @returns Element content offset\n */\nexport function getElementContentOffset(\n el: HTMLElement\n): ElementOffset {\n return {\n x: el.scrollLeft,\n y: el.scrollTop\n }\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch element content offset\n *\n * @param el - Element\n *\n * @returns Element content offset observable\n */\nexport function watchElementContentOffset(\n el: HTMLElement\n): Observable<ElementOffset> {\n return merge(\n fromEvent(el, \"scroll\"),\n fromEvent(window, \"scroll\"),\n fromEvent(window, \"resize\")\n )\n .pipe(\n auditTime(0, animationFrameScheduler),\n map(() => getElementContentOffset(el)),\n startWith(getElementContentOffset(el))\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n NEVER,\n Observable,\n Subject,\n defer,\n distinctUntilChanged,\n filter,\n finalize,\n map,\n merge,\n of,\n shareReplay,\n switchMap,\n tap\n} from \"rxjs\"\n\nimport {\n getElementContentSize,\n getElementSize,\n watchElementContentOffset\n} from \"~/browser\"\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Intersection observer entry subject\n */\nconst entry$ = new Subject<IntersectionObserverEntry>()\n\n/**\n * Intersection observer observable\n *\n * This observable will create an `IntersectionObserver` on first subscription\n * and will automatically terminate it when there are no more subscribers.\n *\n * @see https://bit.ly/3iIYfEm - Google Groups on performance\n */\nconst observer$ = defer(() => of(\n new IntersectionObserver(entries => {\n for (const entry of entries)\n entry$.next(entry)\n }, {\n threshold: 0\n })\n))\n .pipe(\n switchMap(observer => merge(NEVER, of(observer))\n .pipe(\n finalize(() => observer.disconnect())\n )\n ),\n shareReplay(1)\n )\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch element visibility\n *\n * @param el - Element\n *\n * @returns Element visibility observable\n */\nexport function watchElementVisibility(\n el: HTMLElement\n): Observable<boolean> {\n return observer$\n .pipe(\n tap(observer => observer.observe(el)),\n switchMap(observer => entry$\n .pipe(\n filter(({ target }) => target === el),\n finalize(() => observer.unobserve(el)),\n map(({ isIntersecting }) => isIntersecting)\n )\n )\n )\n}\n\n/**\n * Watch element boundary\n *\n * This function returns an observable which emits whether the bottom content\n * boundary (= scroll offset) of an element is within a certain threshold.\n *\n * @param el - Element\n * @param threshold - Threshold\n *\n * @returns Element boundary observable\n */\nexport function watchElementBoundary(\n el: HTMLElement, threshold = 16\n): Observable<boolean> {\n return watchElementContentOffset(el)\n .pipe(\n map(({ y }) => {\n const visible = getElementSize(el)\n const content = getElementContentSize(el)\n return y >= (\n content.height - visible.height - threshold\n )\n }),\n distinctUntilChanged()\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n fromEvent,\n map,\n startWith\n} from \"rxjs\"\n\nimport { getElement } from \"../element\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Toggle\n */\nexport type Toggle =\n | \"drawer\" /* Toggle for drawer */\n | \"search\" /* Toggle for search */\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Toggle map\n */\nconst toggles: Record<Toggle, HTMLInputElement> = {\n drawer: getElement(\"[data-md-toggle=drawer]\"),\n search: getElement(\"[data-md-toggle=search]\")\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve the value of a toggle\n *\n * @param name - Toggle\n *\n * @returns Toggle value\n */\nexport function getToggle(name: Toggle): boolean {\n return toggles[name].checked\n}\n\n/**\n * Set toggle\n *\n * Simulating a click event seems to be the most cross-browser compatible way\n * of changing the value while also emitting a `change` event. Before, Material\n * used `CustomEvent` to programmatically change the value of a toggle, but this\n * is a much simpler and cleaner solution which doesn't require a polyfill.\n *\n * @param name - Toggle\n * @param value - Toggle value\n */\nexport function setToggle(name: Toggle, value: boolean): void {\n if (toggles[name].checked !== value)\n toggles[name].click()\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch toggle\n *\n * @param name - Toggle\n *\n * @returns Toggle value observable\n */\nexport function watchToggle(name: Toggle): Observable<boolean> {\n const el = toggles[name]\n return fromEvent(el, \"change\")\n .pipe(\n map(() => el.checked),\n startWith(el.checked)\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { getElement, getLocation } from \"~/browser\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Feature flag\n */\nexport type Flag =\n | \"announce.dismiss\" /* Dismissable announcement bar */\n | \"content.code.annotate\" /* Code annotations */\n | \"content.code.copy\" /* Code copy button */\n | \"content.lazy\" /* Lazy content elements */\n | \"content.tabs.link\" /* Link content tabs */\n | \"content.tooltips\" /* Tooltips */\n | \"header.autohide\" /* Hide header */\n | \"navigation.expand\" /* Automatic expansion */\n | \"navigation.indexes\" /* Section pages */\n | \"navigation.instant\" /* Instant navigation */\n | \"navigation.instant.progress\" /* Instant navigation progress */\n | \"navigation.sections\" /* Section navigation */\n | \"navigation.tabs\" /* Tabs navigation */\n | \"navigation.tabs.sticky\" /* Tabs navigation (sticky) */\n | \"navigation.top\" /* Back-to-top button */\n | \"navigation.tracking\" /* Anchor tracking */\n | \"search.highlight\" /* Search highlighting */\n | \"search.share\" /* Search sharing */\n | \"search.suggest\" /* Search suggestions */\n | \"toc.follow\" /* Following table of contents */\n | \"toc.integrate\" /* Integrated table of contents */\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Translation\n */\nexport type Translation =\n | \"clipboard.copy\" /* Copy to clipboard */\n | \"clipboard.copied\" /* Copied to clipboard */\n | \"search.result.placeholder\" /* Type to start searching */\n | \"search.result.none\" /* No matching documents */\n | \"search.result.one\" /* 1 matching document */\n | \"search.result.other\" /* # matching documents */\n | \"search.result.more.one\" /* 1 more on this page */\n | \"search.result.more.other\" /* # more on this page */\n | \"search.result.term.missing\" /* Missing */\n | \"select.version\" /* Version selector */\n\n/**\n * Translations\n */\nexport type Translations =\n Record<Translation, string>\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Versioning\n */\nexport interface Versioning {\n provider: \"mike\" /* Version provider */\n default?: string | string[] /* Default version */\n alias?: boolean /* Show alias */\n}\n\n/**\n * Configuration\n */\nexport interface Config {\n base: string /* Base URL */\n features: Flag[] /* Feature flags */\n translations: Translations /* Translations */\n search: string /* Search worker URL */\n tags?: Record<string, string> /* Tags mapping */\n version?: Versioning /* Versioning */\n}\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve global configuration and make base URL absolute\n */\nconst script = getElement(\"#__config\")\nconst config: Config = JSON.parse(script.textContent!)\nconfig.base = `${new URL(config.base, getLocation())}`\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve global configuration\n *\n * @returns Global configuration\n */\nexport function configuration(): Config {\n return config\n}\n\n/**\n * Check whether a feature flag is enabled\n *\n * @param flag - Feature flag\n *\n * @returns Test result\n */\nexport function feature(flag: Flag): boolean {\n return config.features.includes(flag)\n}\n\n/**\n * Retrieve the translation for the given key\n *\n * @param key - Key to be translated\n * @param value - Positional value, if any\n *\n * @returns Translation\n */\nexport function translation(\n key: Translation, value?: string | number\n): string {\n return typeof value !== \"undefined\"\n ? config.translations[key].replace(\"#\", value.toString())\n : config.translations[key]\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Subject } from \"rxjs\"\n\nimport { feature } from \"~/_\"\nimport { h } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve location\n *\n * This function returns a `URL` object (and not `Location`) to normalize the\n * typings across the application. Furthermore, locations need to be tracked\n * without setting them and `Location` is a singleton which represents the\n * current location.\n *\n * @returns URL\n */\nexport function getLocation(): URL {\n return new URL(location.href)\n}\n\n/**\n * Set location\n *\n * If instant navigation is enabled, this function creates a temporary anchor\n * element, sets the `href` attribute, appends it to the body, clicks it, and\n * then removes it again. The event will bubble up the DOM and trigger be\n * intercepted by the instant loading business logic.\n *\n * Note that we must append and remove the anchor element, or the event will\n * not bubble up the DOM, making it impossible to intercept it.\n *\n * @param url - URL to navigate to\n * @param navigate - Force navigation\n */\nexport function setLocation(\n url: URL | HTMLLinkElement, navigate = false\n): void {\n if (feature(\"navigation.instant\") && !navigate) {\n const el = h(\"a\", { href: url.href })\n document.body.appendChild(el)\n el.click()\n el.remove()\n\n // If we're not using instant navigation, and the page should not be reloaded\n // just instruct the browser to navigate to the given URL\n } else {\n location.href = url.href\n }\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch location\n *\n * @returns Location subject\n */\nexport function watchLocation(): Subject<URL> {\n return new Subject<URL>()\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n Subject,\n map,\n shareReplay,\n switchMap\n} from \"rxjs\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Options\n */\ninterface Options {\n progress$?: Subject<number> // Progress subject\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Fetch the given URL\n *\n * This function returns an observable that emits the response as a blob and\n * completes, or emits an error if the request failed. The caller can cancel\n * the request by unsubscribing at any time, which will automatically abort\n * the inflight request and complete the observable.\n *\n * Note that we use `XMLHTTPRequest` not because we're nostalgic, but because\n * it's the only way to get progress events for downloads and also allow for\n * cancellation of requests, as the official Fetch API does not support this\n * yet, even though we're already in 2024.\n *\n * @param url - Request URL\n * @param options - Options\n *\n * @returns Data observable\n */\nexport function request(\n url: URL | string, options?: Options\n): Observable<Blob> {\n return new Observable<Blob>(observer => {\n const req = new XMLHttpRequest()\n req.open(\"GET\", `${url}`)\n req.responseType = \"blob\"\n\n // Handle response\n req.addEventListener(\"load\", () => {\n if (req.status >= 200 && req.status < 300) {\n observer.next(req.response)\n observer.complete()\n\n // Every response that is not in the 2xx range is considered an error\n } else {\n observer.error(new Error(req.statusText))\n }\n })\n\n // Handle network errors\n req.addEventListener(\"error\", () => {\n observer.error(new Error(\"Network error\"))\n })\n\n // Handle aborted requests\n req.addEventListener(\"abort\", () => {\n observer.complete()\n })\n\n // Handle download progress\n if (typeof options?.progress$ !== \"undefined\") {\n req.addEventListener(\"progress\", event => {\n if (event.lengthComputable) {\n options.progress$!.next((event.loaded / event.total) * 100)\n\n // Hack: Chromium doesn't report the total number of bytes if content\n // is compressed, so we need this fallback - see https://t.ly/ZXofI\n } else {\n const length = req.getResponseHeader(\"Content-Length\") ?? 0\n options.progress$!.next((event.loaded / +length) * 100)\n }\n })\n\n // Immediately set progress to 5% to indicate that we're loading\n options.progress$.next(5)\n }\n\n // Send request and automatically abort request upon unsubscription\n req.send()\n return () => req.abort()\n })\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Fetch JSON from the given URL\n *\n * @template T - Data type\n *\n * @param url - Request URL\n * @param options - Options\n *\n * @returns Data observable\n */\nexport function requestJSON<T>(\n url: URL | string, options?: Options\n): Observable<T> {\n return request(url, options)\n .pipe(\n switchMap(res => res.text()),\n map(body => JSON.parse(body) as T),\n shareReplay(1)\n )\n}\n\n/**\n * Fetch HTML from the given URL\n *\n * @param url - Request URL\n * @param options - Options\n *\n * @returns Data observable\n */\nexport function requestHTML(\n url: URL | string, options?: Options\n): Observable<Document> {\n const dom = new DOMParser()\n return request(url, options)\n .pipe(\n switchMap(res => res.text()),\n map(res => dom.parseFromString(res, \"text/html\")),\n shareReplay(1)\n )\n}\n\n/**\n * Fetch XML from the given URL\n *\n * @param url - Request URL\n * @param options - Options\n *\n * @returns Data observable\n */\nexport function requestXML(\n url: URL | string, options?: Options\n): Observable<Document> {\n const dom = new DOMParser()\n return request(url, options)\n .pipe(\n switchMap(res => res.text()),\n map(res => dom.parseFromString(res, \"text/xml\")),\n shareReplay(1)\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { getElement, getElements } from \"~/browser\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Component type\n */\nexport type ComponentType =\n | \"iconsearch\" /* Icon search */\n | \"iconsearch-query\" /* Icon search input */\n | \"iconsearch-result\" /* Icon search results */\n | \"iconsearch-select\" /* Icon search select */\n | \"sponsorship\" /* Sponsorship */\n | \"sponsorship-count\" /* Sponsorship count */\n | \"sponsorship-total\" /* Sponsorship total */\n\n/**\n * Component\n *\n * @template T - Component type\n * @template U - Reference type\n */\nexport type Component<\n T extends {} = {},\n U extends HTMLElement = HTMLElement\n> =\n T & {\n ref: U /* Component reference */\n }\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Component type map\n */\ninterface ComponentTypeMap {\n \"iconsearch\": HTMLElement /* Icon search */\n \"iconsearch-query\": HTMLInputElement /* Icon search input */\n \"iconsearch-result\": HTMLElement /* Icon search results */\n \"iconsearch-select\": HTMLSelectElement\n \"sponsorship\": HTMLElement /* Sponsorship */\n \"sponsorship-count\": HTMLElement /* Sponsorship count */\n \"sponsorship-total\": HTMLElement /* Sponsorship total */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve the element for a given component or throw a reference error\n *\n * @template T - Component type\n *\n * @param type - Component type\n * @param node - Node of reference\n *\n * @returns Element\n */\nexport function getComponentElement<T extends ComponentType>(\n type: T, node: ParentNode = document\n): ComponentTypeMap[T] {\n return getElement(`[data-mdx-component=${type}]`, node)\n}\n\n/**\n * Retrieve all elements for a given component\n *\n * @template T - Component type\n *\n * @param type - Component type\n * @param node - Node of reference\n *\n * @returns Elements\n */\nexport function getComponentElements<T extends ComponentType>(\n type: T, node: ParentNode = document\n): ComponentTypeMap[T][] {\n return getElements(`[data-mdx-component=${type}]`, node)\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n combineLatest,\n delay,\n distinctUntilChanged,\n filter,\n fromEvent,\n map,\n merge,\n startWith,\n withLatestFrom\n} from \"rxjs\"\n\nimport { watchElementFocus } from \"~/browser\"\n\nimport { Component } from \"../../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Icon search query\n */\nexport interface IconSearchQuery {\n value: string /* Query value */\n focus: boolean /* Query focus */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount icon search query\n *\n * @param el - Icon search query element\n *\n * @returns Icon search query component observable\n */\nexport function mountIconSearchQuery(\n el: HTMLInputElement\n): Observable<Component<IconSearchQuery, HTMLInputElement>> {\n\n /* Intercept focus and input events */\n const focus$ = watchElementFocus(el)\n const value$ = merge(\n fromEvent(el, \"keyup\"),\n fromEvent(el, \"focus\").pipe(delay(1))\n )\n .pipe(\n map(() => el.value),\n startWith(el.value),\n distinctUntilChanged(),\n )\n\n /* Log search on blur */\n focus$\n .pipe(\n filter(active => !active),\n withLatestFrom(value$)\n )\n .subscribe(([, value]) => {\n const path = document.location.pathname\n if (typeof ga === \"function\" && value.length)\n ga(\"send\", \"pageview\", `${path}?q=[icon]+${value}`)\n })\n\n /* Combine into single observable */\n return combineLatest([value$, focus$])\n .pipe(\n map(([value, focus]) => ({ ref: el, value, focus })),\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { filter as search } from \"fuzzaldrin-plus\"\nimport {\n Observable,\n Subject,\n bufferCount,\n combineLatest,\n combineLatestWith,\n distinctUntilKeyChanged,\n filter,\n finalize,\n map,\n merge,\n of,\n switchMap,\n tap,\n withLatestFrom,\n zipWith\n} from \"rxjs\"\n\nimport {\n getElement,\n watchElementBoundary\n} from \"~/browser\"\nimport { round } from \"~/utilities\"\n\nimport { Icon, renderIconSearchResult } from \"_/templates\"\n\nimport { Component } from \"../../_\"\nimport { IconSearchIndex, IconSearchMode } from \"../_\"\nimport { IconSearchQuery } from \"../query\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Icon search result\n */\nexport interface IconSearchResult {\n data: Icon[] /* Search result data */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n index$: Observable<IconSearchIndex> /* Search index observable */\n query$: Observable<IconSearchQuery> /* Search query observable */\n mode$: Observable<IconSearchMode> /* Search mode observable */\n}\n\n/**\n * Mount options\n */\ninterface MountOptions {\n index$: Observable<IconSearchIndex> /* Search index observable */\n query$: Observable<IconSearchQuery> /* Search query observable */\n mode$: Observable<IconSearchMode> /* Search mode observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch icon search result\n *\n * @param el - Icon search result element\n * @param options - Options\n *\n * @returns Icon search result observable\n */\nexport function watchIconSearchResult(\n el: HTMLElement, { index$, query$, mode$ }: WatchOptions\n): Observable<IconSearchResult> {\n switch (el.getAttribute(\"data-mdx-mode\")) {\n\n case \"file\":\n return combineLatest([\n query$.pipe(distinctUntilKeyChanged(\"value\")),\n index$\n .pipe(\n map(({ icons }) => Object.values(icons.data)\n .map(icon => icon.replace(/\\.svg$/, \"\"))\n )\n )\n ])\n .pipe(\n map(([{ value }, data]) => search(data, value)),\n switchMap(files => index$.pipe(\n map(({ icons }) => ({\n data: files.map<Icon>(shortcode => {\n return {\n shortcode,\n url: [\n icons.base,\n shortcode,\n \".svg\"\n ].join(\"\")\n }\n })\n }))\n ))\n )\n\n default:\n return combineLatest([\n query$.pipe(distinctUntilKeyChanged(\"value\")),\n index$\n .pipe(\n combineLatestWith(mode$),\n map(([{ icons, emojis }, mode]) => [\n ...[\"all\", \"icons\"].includes(mode)\n ? Object.keys(icons.data)\n : [],\n ...[\"all\", \"emojis\"].includes(mode)\n ? Object.keys(emojis.data)\n : []\n ])\n )\n ])\n .pipe(\n map(([{ value }, data]) => search(data, value)),\n switchMap(shortcodes => index$.pipe(\n map(({ icons, emojis }) => ({\n data: shortcodes.map<Icon>(shortcode => {\n const category =\n shortcode in icons.data\n ? icons\n : emojis\n return {\n shortcode,\n url: [\n category.base,\n category.data[shortcode]\n ].join(\"\")\n }\n })\n }))\n ))\n )\n }\n}\n\n/**\n * Mount icon search result\n *\n * @param el - Icon search result element\n * @param options - Options\n *\n * @returns Icon search result component observable\n */\nexport function mountIconSearchResult(\n el: HTMLElement, { index$, query$, mode$ }: MountOptions\n): Observable<Component<IconSearchResult, HTMLElement>> {\n const push$ = new Subject<IconSearchResult>()\n const boundary$ = watchElementBoundary(el)\n .pipe(\n filter(Boolean)\n )\n\n /* Update search result metadata */\n const meta = getElement(\".mdx-iconsearch-result__meta\", el)\n push$\n .pipe(\n withLatestFrom(query$)\n )\n .subscribe(([{ data }, { value }]) => {\n if (value) {\n switch (data.length) {\n\n /* No results */\n case 0:\n meta.textContent = \"No matches\"\n break\n\n /* One result */\n case 1:\n meta.textContent = \"1 match\"\n break\n\n /* Multiple result */\n default:\n meta.textContent = `${round(data.length)} matches`\n }\n } else {\n meta.textContent = \"Type to start searching\"\n }\n })\n\n /* Update icon search result list */\n const file = el.getAttribute(\"data-mdx-mode\") === \"file\"\n const list = getElement(\":scope > :last-child\", el)\n push$\n .pipe(\n tap(() => list.innerHTML = \"\"),\n switchMap(({ data }) => merge(\n of(...data.slice(0, 10)),\n of(...data.slice(10))\n .pipe(\n bufferCount(10),\n zipWith(boundary$),\n switchMap(([chunk]) => chunk)\n )\n )),\n withLatestFrom(query$)\n )\n .subscribe(([result, { value }]) => list.appendChild(\n renderIconSearchResult(result, value, file)\n ))\n\n /* Create and return component */\n return watchIconSearchResult(el, { query$, index$, mode$ })\n .pipe(\n tap(state => push$.next(state)),\n finalize(() => push$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { wrap } from \"fuzzaldrin-plus\"\n\nimport { translation } from \"~/_\"\nimport { h } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Icon\n */\nexport interface Icon {\n shortcode: string /* Icon shortcode */\n url: string /* Icon URL */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Highlight an icon search result\n *\n * @param icon - Icon\n * @param query - Search query\n *\n * @returns Highlighted result\n */\nfunction highlight(icon: Icon, query: string): string {\n return wrap(icon.shortcode, query, {\n wrap: {\n tagOpen: \"<b>\",\n tagClose: \"</b>\"\n }\n })\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render an icon search result\n *\n * @param icon - Icon\n * @param query - Search query\n * @param file - Render as file\n *\n * @returns Element\n */\nexport function renderIconSearchResult(\n icon: Icon, query: string, file?: boolean\n): HTMLElement {\n return (\n <li class=\"mdx-iconsearch-result__item\">\n <span class=\"twemoji\">\n <img src={icon.url} />\n </span>\n <button\n class=\"md-clipboard--inline\"\n title={translation(\"clipboard.copy\")}\n data-clipboard-text={file ? icon.shortcode : `:${icon.shortcode}:`}\n >\n <code>{\n file\n ? highlight(icon, query)\n : `:${highlight(icon, query)}:`\n }</code>\n </button>\n </li>\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { h } from \"~/utilities\"\n\nimport { SponsorUser } from \"_/components\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render public sponsor\n *\n * @param user - Sponsor user\n *\n * @returns Element\n */\nexport function renderPublicSponsor(\n user: SponsorUser\n): HTMLElement {\n const title = `@${user.name}`\n return (\n <a href={user.url} title={title} class=\"mdx-sponsorship__item\">\n <img src={user.image} />\n </a>\n )\n}\n\n/**\n * Render private sponsor\n *\n * @param count - Number of private sponsors\n *\n * @returns Element\n */\nexport function renderPrivateSponsor(\n count: number\n): HTMLElement {\n return (\n <a\n href=\"https://github.com/sponsors/squidfunk?metadata_origin=docs\"\n class=\"mdx-sponsorship__item mdx-sponsorship__item--private\"\n >\n +{count}\n </a>\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { BehaviorSubject, Observable, fromEvent, map, merge } from \"rxjs\"\n\nimport { configuration } from \"~/_\"\nimport { requestJSON } from \"~/browser\"\n\nimport {\n Component,\n getComponentElement,\n getComponentElements\n} from \"../../_\"\nimport {\n IconSearchQuery,\n mountIconSearchQuery\n} from \"../query\"\nimport {\n IconSearchResult,\n mountIconSearchResult\n} from \"../result\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Icon category\n */\nexport interface IconCategory {\n base: string /* Category base URL */\n data: Record<string, string> /* Category data */\n}\n\n/**\n * Icon search index\n */\nexport interface IconSearchIndex {\n icons: IconCategory /* Icons */\n emojis: IconCategory /* Emojis */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Icon search\n */\nexport type IconSearch =\n | IconSearchQuery\n | IconSearchResult\n\n/**\n * Icon search mode\n */\nexport type IconSearchMode =\n | \"all\"\n | \"icons\"\n | \"emojis\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount icon search\n *\n * @param el - Icon search element\n *\n * @returns Icon search component observable\n */\nexport function mountIconSearch(\n el: HTMLElement\n): Observable<Component<IconSearch>> {\n const config = configuration()\n const index$ = requestJSON<IconSearchIndex>(\n new URL(\"assets/javascripts/iconsearch_index.json\", config.base)\n )\n\n /* Retrieve query and result components */\n const query = getComponentElement(\"iconsearch-query\", el)\n const result = getComponentElement(\"iconsearch-result\", el)\n\n /* Retrieve select component */\n const mode$ = new BehaviorSubject<IconSearchMode>(\"all\")\n const selects = getComponentElements(\"iconsearch-select\", el)\n for (const select of selects) {\n fromEvent(select, \"change\").pipe(\n map(ev => (ev.target as HTMLSelectElement).value as IconSearchMode)\n )\n .subscribe(mode$)\n }\n\n /* Create and return component */\n const query$ = mountIconSearchQuery(query)\n const result$ = mountIconSearchResult(result, { index$, query$, mode$ })\n return merge(query$, result$)\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable, from, map, switchMap, tap } from \"rxjs\"\n\nimport { getOptionalElement, requestJSON } from \"~/browser\"\n\nimport { renderPrivateSponsor, renderPublicSponsor } from \"_/templates\"\n\nimport { Component, getComponentElements } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Sponsor type\n */\nexport type SponsorType =\n | \"user\" /* Sponsor is a user */\n | \"organization\" /* Sponsor is an organization */\n\n/**\n * Sponsor visibility\n */\nexport type SponsorVisibility =\n | \"public\" /* Sponsor is a user */\n | \"private\" /* Sponsor is an organization */\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Sponsor user\n */\nexport interface SponsorUser {\n type: SponsorType /* Sponsor type */\n name: string /* Sponsor login name */\n image: string /* Sponsor image URL */\n url: string /* Sponsor URL */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Public sponsor\n */\nexport interface PublicSponsor {\n type: \"public\" /* Sponsor visibility */\n user: SponsorUser /* Sponsor user */\n}\n\n/**\n * Private sponsor\n */\nexport interface PrivateSponsor {\n type: \"private\" /* Sponsor visibility */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Sponsor\n */\nexport type Sponsor =\n | PublicSponsor\n | PrivateSponsor\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Sponsorship\n */\nexport interface Sponsorship {\n sponsors: Sponsor[] /* Sponsors */\n total: number /* Total amount */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount sponsorship\n *\n * @param el - Sponsorship element\n *\n * @returns Sponsorship component observable\n */\nexport function mountSponsorship(\n el: HTMLElement\n): Observable<Component<Sponsorship>> {\n const sponsorship$ = requestJSON<Sponsorship>(\n \"https://3if8u9o552.execute-api.us-east-1.amazonaws.com/_/\"\n )\n\n /* Retrieve adjacent components */\n const count = getComponentElements(\"sponsorship-count\")\n const total = getComponentElements(\"sponsorship-total\")\n\n /* Render sponsorship count */\n sponsorship$.pipe(\n switchMap(sponsorship => from(count).pipe(\n tap(child => child.innerText = `${sponsorship.sponsors.length}`)\n ))\n )\n .subscribe(() => el.removeAttribute(\"hidden\"))\n\n /* Render sponsorship total */\n sponsorship$.pipe(\n switchMap(sponsorship => from(total).pipe(\n tap(child => child.innerText = `$ ${sponsorship.total\n .toString()\n .replace(/\\B(?=(\\d{3})+(?!\\d))/g, \",\")\n } a month`)\n ))\n )\n .subscribe()\n\n // Render sponsorship list\n const list = getOptionalElement(\":scope > .mdx-sponsorship__list\", el)\n if (list && count.length) {\n sponsorship$.subscribe(sponsorship => {\n for (const sponsor of sponsorship.sponsors)\n if (sponsor.type === \"public\")\n list.appendChild(renderPublicSponsor(sponsor.user))\n\n /* Render combined private sponsors */\n list.appendChild(renderPrivateSponsor(\n sponsorship.sponsors.filter(({ type }) => (\n type === \"private\"\n )).length\n ))\n })\n }\n\n /* Create and return component */\n return sponsorship$\n .pipe(\n map(state => ({ ref: el, ...state }))\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { fromEvent } from \"rxjs\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set up extra analytics events\n */\nexport function setupAnalytics(): void {\n const { origin } = new URL(location.href)\n fromEvent(document.body, \"click\")\n .subscribe(ev => {\n if (ev.target instanceof HTMLElement) {\n const el = ev.target.closest(\"a\")\n if (el && el.origin !== origin)\n ga(\"send\", \"event\", \"outbound\", \"click\", el.href)\n }\n })\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { merge, switchMap } from \"rxjs\"\n\nimport {\n getComponentElements,\n mountIconSearch,\n mountSponsorship\n} from \"./components\"\nimport { setupAnalytics } from \"./integrations\"\n\n/* ----------------------------------------------------------------------------\n * Application\n * ------------------------------------------------------------------------- */\n\n/* Set up extra analytics events */\nsetupAnalytics()\n\n/* Set up extra component observables */\nconst component$ = document$\n .pipe(\n switchMap(() => merge(\n\n /* Icon search */\n ...getComponentElements(\"iconsearch\")\n .map(el => mountIconSearch(el)),\n\n /* Sponsorship */\n ...getComponentElements(\"sponsorship\")\n .map(el => mountSponsorship(el))\n ))\n )\n\n/* Subscribe to all components */\ncomponent$.subscribe()\n"], "mappings": "u0BAAA,IAAAA,GAAAC,GAAAC,GAAA,EAAC,UAAW,CACV,IAAIC,EAAeC,EAAcC,EAAoBC,EAAmBC,EAASC,EAAaC,EAAWC,EAAaC,EAAYC,EAAWC,EAAeC,EAAgBC,EAAmBC,EAAYC,EAAiBC,EAAcC,EAAeC,EAAWC,EAAUC,EAE9QA,EAAK,IAELV,EAAY,GAEZS,EAAW,IAEXV,EAAa,IAEbT,EAAQ,MAAQ,SAASqB,EAAQC,EAAOC,EAAS,CAC/C,IAAIC,EAAaC,EAAeC,EAAOC,EAEvC,OADAF,EAAgBF,EAAQ,cAAeC,EAAcD,EAAQ,YACvDC,GAAenB,EAAQgB,EAAQI,EAAc,QAASA,EAAc,OAAO,GAGjFE,EAAYN,EAAO,YAAY,EAC/BK,EAAQxB,EAAamB,EAAQM,EAAWF,CAAa,EAC9C,KAAK,KAAKC,CAAK,GAJb,CAKX,EAEA1B,EAAQ,QAAUK,EAAU,SAASuB,EAASC,EAAUC,EAAU,CAChE,IAAIC,EAAGC,EAAGC,EAAGC,EAAGC,EAAOC,EAAOC,EAG9B,GAFAJ,EAAIL,EAAQ,OACZM,EAAIL,EAAS,OACT,CAACI,GAAKC,EAAID,EACZ,MAAO,GAIT,IAFAF,EAAI,GACJC,EAAI,GACG,EAAEA,EAAIE,GAAG,CAGd,IAFAC,EAAQN,EAAS,WAAWG,CAAC,EAC7BI,EAAQN,EAAS,WAAWE,CAAC,EACtB,EAAED,EAAIE,IACXI,EAAKT,EAAQ,WAAWG,CAAC,EACrB,EAAAM,IAAOF,GAASE,IAAOD,KAA3B,CAIF,GAAIL,IAAME,EACR,MAAO,EAEX,CACA,MAAO,EACT,EAEAjC,EAAQ,aAAeE,EAAe,SAAS0B,EAASU,EAAYb,EAAe,CACjF,IAAIc,EAAMC,EAAYC,EAAOC,EAAUC,EAASC,EAAWC,EAAoBd,EAAGC,EAAGC,EAAGa,EAAaC,GAAWb,EAAGc,GAAK1B,GAAOO,GAAUoB,GAAavB,GAAOwB,GAAYC,GAAWC,GAAUC,GAAOC,GAAOC,GAO5M,GANAjC,GAAQG,EAAc,MACtBI,GAAWJ,EAAc,SACzBQ,EAAIL,EAAQ,OACZM,EAAIZ,GAAM,OACViB,EAAO5B,EAAciB,EAASU,EAAYhB,GAAOO,EAAQ,EACzDW,EAAaD,EAAK,MACdA,EAAK,QAAUL,EACjB,OAAOpB,EAAWoB,EAAGD,EAAGO,EAAYD,EAAK,GAAG,EAG9C,GADAS,GAAMV,EAAW,QAAQT,EAAQ,EAC7BmB,GAAM,GACR,OAAOjC,EAAgBa,EAASU,EAAYhB,GAAOO,GAAUmB,GAAKd,EAAGD,CAAC,EASxE,IAPAkB,GAAY,IAAI,MAAMjB,CAAC,EACvBS,EAAU,IAAI,MAAMT,CAAC,EACrBqB,GAAKrC,EAAUgB,EAAGD,CAAC,EACnBa,EAAc,KAAK,KAAKrC,EAAayB,CAAC,EAAI,EAC1Ca,GAAYD,EACZD,EAAqB,GACrBb,EAAI,GACG,EAAEA,EAAIE,GACXiB,GAAUnB,CAAC,EAAI,EACfW,EAAQX,CAAC,EAAI,EAGf,IADAD,EAAI,GACG,EAAEA,EAAIE,GAAG,CAEd,GADAoB,GAAQf,EAAWP,CAAC,EAChB,CAACsB,GAAM,WAAW,CAAC,IAAK5B,EAAc,UAAW,CACnD,GAAIoB,EAAoB,CAEtB,IADAb,EAAI,GACG,EAAEA,EAAIE,GACXS,EAAQX,CAAC,EAAI,EAEfa,EAAqB,EACvB,CACA,QACF,CAOA,IANAnB,GAAQ,EACRwB,GAAa,EACbR,EAAW,EACXO,GAAc,GACdJ,EAAqB,GACrBb,EAAI,GACG,EAAEA,EAAIE,GAAG,CAMd,GALAkB,GAAWD,GAAUnB,CAAC,EAClBoB,GAAW1B,KACbA,GAAQ0B,IAEVR,EAAY,EACRf,GAASG,CAAC,IAAMqB,GAIlB,GAHAC,GAAQ9C,EAAYuB,EAAGH,EAASU,CAAU,EAC1CM,EAAYF,EAAW,EAAIA,EAAW7B,EAAkBe,EAASU,EAAYhB,GAAOO,GAAUE,EAAGC,EAAGsB,EAAK,EACzGb,EAAQS,GAAatC,EAAemB,EAAGC,EAAGsB,GAAOd,EAAYI,CAAS,EAClEH,EAAQf,GACVA,GAAQe,EACRM,GAAYD,MACP,CACL,GAAIG,IAAe,EAAEF,IAAa,EAChC,OAAO,KAAK,IAAIrB,GAAOyB,GAAUjB,EAAI,CAAC,CAAC,EAAIqB,GAE7CN,GAAc,EAChB,CAEFC,GAAaE,GACbV,EAAWC,EAAQX,CAAC,EACpBW,EAAQX,CAAC,EAAIY,EACbO,GAAUnB,CAAC,EAAIN,EACjB,CACF,CACA,OAAAA,GAAQyB,GAAUjB,EAAI,CAAC,EAChBR,GAAQ6B,EACjB,EAEAvD,EAAQ,YAAcQ,EAAc,SAASwC,EAAKpB,EAASU,EAAY,CACrE,IAAIkB,EAAQC,EACZ,OAAIT,IAAQ,EACH,IAETQ,EAAS5B,EAAQoB,CAAG,EACpBS,EAAS7B,EAAQoB,EAAM,CAAC,EACjB1C,EAAYmD,CAAM,GAAMD,IAAWlB,EAAWU,CAAG,GAAKS,IAAWnB,EAAWU,EAAM,CAAC,EAC5F,EAEAhD,EAAQ,UAAYO,EAAY,SAASyC,EAAKpB,EAASU,EAAYoB,EAAK,CACtE,IAAIF,EAAQG,EACZ,OAAIX,IAAQU,EAAM,EACT,IAETF,EAAS5B,EAAQoB,CAAG,EACpBW,EAAS/B,EAAQoB,EAAM,CAAC,EACjB1C,EAAYqD,CAAM,GAAMH,IAAWlB,EAAWU,CAAG,GAAKW,IAAWrB,EAAWU,EAAM,CAAC,EAC5F,EAEA1C,EAAc,SAASsD,EAAG,CACxB,OAAOA,IAAM,KAAOA,IAAM,KAAOA,IAAM,KAAOA,IAAM,KAAOA,IAAM,KAAOA,IAAM,IAChF,EAEA3C,EAAgB,SAAS+B,EAAK,CAC5B,IAAIa,EACJ,OAAIb,EAAMtC,GACRmD,EAAKnD,EAAYsC,EACV,IAAMa,EAAKA,GAEX,KAAK,IAAI,IAAMnD,EAAYsC,EAAK,CAAC,CAE5C,EAEAhD,EAAQ,UAAYkB,EAAY,SAASgB,EAAGD,EAAG,CAC7C,OAAOd,GAAYA,EAAW,KAAK,IAAIc,EAAIC,CAAC,EAC9C,EAEApB,EAAa,SAASoB,EAAGD,EAAG6B,EAASd,EAAK,CACxC,MAAO,GAAId,GAAKd,EAAK0C,EAAU7C,EAAc+B,CAAG,GAAK9B,EAAUgB,EAAGD,CAAC,CACrE,EAEAjC,EAAQ,aAAegB,EAAe,SAAS+C,EAAOL,EAAKM,EAAUV,EAAOW,EAAK,CAC/E,IAAIC,EAAOX,EACX,OAAAA,EAAKQ,EACLG,EAAQ,EACJF,IAAaD,IACfG,GAAS,GAEPZ,IACFY,GAAS,GAEPD,IACFC,GAAS,GAEPH,IAAUL,IACRJ,IACEU,IAAaN,EACfH,GAAM,EAENA,GAAM,GAGNU,IACFC,GAAS,IAGNF,EAAWT,GAAMA,EAAKW,EAC/B,EAEAlE,EAAQ,eAAiBY,EAAiB,SAASmB,EAAGC,EAAGsB,EAAOd,EAAYI,EAAW,CACrF,IAAIuB,EAEJ,OADAA,EAAWlD,EAAcc,CAAC,EACtBuB,EACKa,EAAW/C,IAAOoB,EAAaI,EAAYJ,EAAaI,GAAa,IAEvEuB,EAAW/C,EAAKwB,CACzB,EAEA5C,EAAQ,kBAAoBa,EAAoB,SAASe,EAASU,EAAYhB,EAAOO,EAAUE,EAAGC,EAAGoC,EAAa,CAChH,IAAIC,EAAGpC,EAAGqC,EAAIpC,EAAGqC,EAAIP,EAAUT,EAW/B,IAVAtB,EAAIL,EAAQ,OACZM,EAAIZ,EAAM,OACVgD,EAAKrC,EAAIF,EACTwC,EAAKrC,EAAIF,EACTqC,EAAIC,EAAKC,EAAKD,EAAKC,EACnBP,EAAW,EACXT,EAAK,EACDjC,EAAMU,CAAC,IAAMJ,EAAQG,CAAC,GACxBiC,IAEK,EAAET,EAAKc,GAAKxC,EAAS,EAAEG,CAAC,IAAMM,EAAW,EAAEP,CAAC,GAC7CT,EAAMU,CAAC,IAAMJ,EAAQG,CAAC,GACxBiC,IAMJ,OAHIT,EAAKc,GACPtC,IAEEwB,IAAO,EACF,EAAI,EAAIS,EAEVhD,EAAauC,EAAIrB,EAAG8B,EAAUI,EAAa7D,EAAUwB,EAAGH,EAASU,EAAYL,CAAC,CAAC,CACxF,EAEAjC,EAAQ,gBAAkBe,EAAkB,SAASa,EAASU,EAAYhB,EAAOO,EAAUmB,EAAKd,EAAGD,EAAG,CACpG,IAAIgC,EAAKlC,EAAGyC,EAAMR,EAAUV,EAa5B,IAZAA,EAAQ9C,EAAYwC,EAAKpB,EAASU,CAAU,EACvCgB,IACHkB,EAAOlC,EAAW,QAAQT,EAAUmB,EAAM,CAAC,EACvCwB,EAAO,KACTlB,EAAQ9C,EAAYgE,EAAM5C,EAASU,CAAU,EACzCgB,IACFN,EAAMwB,KAIZzC,EAAI,GACJiC,EAAW,EACJ,EAAEjC,EAAIG,GACPZ,EAAM0B,EAAMjB,CAAC,IAAMH,EAAQG,CAAC,GAC9BiC,IAGJ,OAAAC,EAAM1D,EAAUyC,EAAMd,EAAI,EAAGN,EAASU,EAAYL,CAAC,EAC5CnB,EAAWoB,EAAGD,EAAGjB,EAAakB,EAAGA,EAAG8B,EAAUV,EAAOW,CAAG,EAAGjB,CAAG,CACvE,EAEA/C,EAAiB,UAAW,CAC1B,SAASA,EAAcyB,EAAOsB,EAAKe,EAAO,CACxC,KAAK,MAAQrC,EACb,KAAK,IAAMsB,EACX,KAAK,MAAQe,CACf,CAEA,OAAO9D,CAET,EAAG,EAEHE,EAAqB,IAAIF,EAAc,EAAG,GAAK,CAAC,EAEhDD,EAAQ,cAAgBW,EAAgB,SAASiB,EAASU,EAAYhB,EAAOO,EAAU,CACrF,IAAIkC,EAAOU,EAAU1C,EAAGC,EAAGC,EAAGC,EAAGC,EAAO6B,EAAUtC,EAAOgD,EAAUC,GAGnE,GAFA1C,EAAIL,EAAQ,OACZM,EAAIZ,EAAM,OACN,EAAEW,EAAI,GAAKC,EAAI,GACjB,OAAO/B,EAQT,IANA4D,EAAQ,EACRW,EAAW,EACXC,GAAS,EACTX,EAAW,EACXjC,EAAI,GACJC,EAAI,GACG,EAAEA,EAAIE,GAAG,CAEd,GADAC,EAAQN,EAASG,CAAC,EACd1B,EAAY6B,CAAK,EAEnB,GADAJ,EAAIO,EAAW,QAAQH,EAAOJ,EAAI,CAAC,EAC/BA,EAAI,GAAI,CACV2C,IACA,QACF,KACE,OAGJ,KAAO,EAAE3C,EAAIE,GACX,GAAIE,IAAUG,EAAWP,CAAC,GAAKvB,EAAYuB,EAAGH,EAASU,CAAU,EAAG,CAC9DhB,EAAMU,CAAC,IAAMJ,EAAQG,CAAC,GACxBiC,IAEFW,IAAU5C,EACVgC,IACA,KACF,CAEF,GAAIhC,IAAME,EACR,KAEJ,CACA,OAAI8B,EAAQ,EACH5D,GAETsE,EAAWV,IAAU7B,EAAI9B,EAAkBwB,EAASU,EAAYhB,EAAOyC,CAAK,EAAI,GAChFrC,EAAQV,EAAa+C,EAAO7B,EAAG8B,EAAU,GAAMS,CAAQ,EAChD,IAAIxE,EAAcyB,EAAOiD,GAASZ,EAAOA,EAAQW,CAAQ,EAClE,EAEAtE,EAAoB,SAASwB,EAASU,EAAYhB,EAAOsD,EAAkB,CACzE,IAAIb,EAAOhC,EAAGE,EAAGC,EAIjB,GAHAD,EAAIL,EAAQ,OACZM,EAAIZ,EAAM,OACVyC,EAAQ,EACJ9B,EAAI,GAAKC,EACX,MAAO,GAGT,IADAH,EAAI,GACG,EAAEA,EAAIE,GACX,GAAIzB,EAAYuB,EAAGH,EAASU,CAAU,GAAK,EAAEyB,EAAQa,EACnD,MAAO,GAGX,MAAO,EACT,CAEF,GAAG,KAAK5E,CAAI,ICtUZ,IAAA6E,GAAAC,GAAAC,IAAA,EAAC,UAAW,CACV,IAAIC,EAAcC,EAAUC,EAAYC,EAAcC,EAAmBC,EAASC,EAAWC,EAAWC,EAAWC,EAEnHA,EAAO,KAAqBJ,EAAUI,EAAK,QAAST,EAAeS,EAAK,aAAcF,EAAYE,EAAK,UAEvGD,EAAY,GAEZN,EAAa,IAEbH,GAAQ,MAAQ,SAASW,EAAQC,EAAOC,EAAS,CAC/C,IAAIC,EAAaC,EAAeC,EAAOC,EAEvC,OADAF,EAAgBF,EAAQ,cAAeC,EAAcD,EAAQ,YACvDC,GAAeR,EAAQK,EAAQI,EAAc,QAASA,EAAc,OAAO,GAGjFE,EAAYN,EAAO,YAAY,EAC/BK,EAAQf,EAAaU,EAAQM,EAAWF,CAAa,EACrDC,EAAQT,EAAUI,EAAQM,EAAWD,EAAOH,CAAO,EAC5C,KAAK,KAAKG,CAAK,GALb,CAMX,EAEAT,EAAY,SAASW,EAASC,EAAYC,EAAeP,EAAS,CAChE,IAAIQ,EAAOC,EAAeC,EAASC,EAAOC,EAAKC,EAAWC,EAAYC,EAAeb,EAAec,EACpG,GAAIT,IAAkB,EACpB,MAAO,GAIT,IAFAL,EAAgBF,EAAQ,cAAegB,EAAoBhB,EAAQ,kBAAmBe,EAAgBf,EAAQ,cAC9GY,EAAMP,EAAQ,OAAS,EAChBA,EAAQO,CAAG,IAAMG,GACtBH,IASF,GAPAF,EAAUL,EAAQ,YAAYU,EAAeH,CAAG,EAChDE,EAAaF,EAAMF,EACnBG,EAAY,EACRG,IACFH,GAAarB,EAAkBc,EAAYJ,EAAc,IAAKQ,EAASE,EAAK,CAAC,EAC7EL,GAAiBM,GAEfH,IAAY,GACd,OAAOH,EAGT,IADAI,EAAQT,EAAc,MACfQ,EAAU,IAAMC,KAAU,GAC/BD,EAAUL,EAAQ,YAAYU,EAAeL,EAAU,CAAC,EAE1D,OAAAD,EAAgBC,IAAY,GAAKH,EAAgBM,EAAYzB,EAAaiB,EAAQ,MAAMK,EAAU,EAAGE,EAAM,CAAC,EAAGN,EAAW,MAAMI,EAAU,EAAGE,EAAM,CAAC,EAAGV,CAAa,EACpKM,EAAQ,GAAMZ,GAAaA,EAAYP,EAASgB,EAASO,EAAM,EAAGG,CAAa,GACxEP,EAAQC,GAAiB,EAAID,GAASD,EAAgBZ,EAAU,EAAGL,EAAawB,CAAU,CACnG,EAEA3B,GAAQ,SAAWE,EAAW,SAAS4B,EAAML,EAAKG,EAAe,CAC/D,IAAIG,EAAOC,EACX,GAAIP,EAAM,EACR,MAAO,GAIT,IAFAM,EAAQ,EACRC,EAAI,GACG,EAAEA,EAAIP,GAAOK,EAAKE,CAAC,IAAMJ,GAAe,CAG/C,KAAO,EAAEI,EAAIP,GACX,GAAIK,EAAKE,CAAC,IAAMJ,EAEd,IADAG,IACO,EAAEC,EAAIP,GAAOK,EAAKE,CAAC,IAAMJ,GAAe,CAKnD,OAAOG,CACT,EAEA/B,GAAQ,aAAeI,EAAe,SAAS6B,EAAK,CAClD,IAAIC,EAEJ,OADAA,EAAMD,EAAI,YAAY,GAAG,EACrBC,EAAM,EACD,GAEAD,EAAI,OAAOC,EAAM,CAAC,CAE7B,EAEA7B,EAAoB,SAAS8B,EAAWC,EAAKC,EAAUC,EAAQC,EAAU,CACvE,IAAIC,EAAGC,EAASC,EAAGR,EAKnB,GAJI,CAACE,EAAI,SAGTF,EAAMC,EAAU,YAAY,IAAKG,CAAM,EACnC,EAAEJ,EAAMG,IACV,MAAO,GAUT,IARAK,EAAIN,EAAI,OACRI,EAAIF,EAASJ,EACTM,EAAIE,IACNA,EAAIF,EACJA,EAAIJ,EAAI,QAEVF,IACAO,EAAU,GACH,EAAEA,EAAUC,GACbP,EAAUD,EAAMO,CAAO,IAAML,EAAIK,CAAO,GAA5C,CAIF,OAAIA,IAAY,GAAKF,EAAW,EACvB,GAAMlC,EAAkB8B,EAAWC,EAAKC,EAAUH,EAAM,EAAGK,EAAW,CAAC,EAEzEE,EAAUD,CACnB,CAEF,GAAG,KAAKxC,EAAI,IC7GZ,IAAA2C,GAAAC,GAAA,CAAAC,GAAAC,KAAA,EAAC,UAAW,CACV,IAAIC,EAAOC,EAAWC,EAAUC,EAAcC,EAAcC,EAAaC,EAAoBC,EAE7FA,EAAO,KAAyBL,EAAWK,EAAK,SAAUH,EAAeG,EAAK,aAE9ER,GAAO,QAAUC,EAAS,UAAW,CACnC,SAASA,EAAMQ,EAAOC,EAAM,CAC1B,IAAIC,EAAcC,EAAeC,EAEjC,GADAA,EAAQH,GAAQ,KAAOA,EAAO,CAAC,EAAGC,EAAeE,EAAM,aAAcD,EAAgBC,EAAM,cACvF,EAAEJ,GAASA,EAAM,QACnB,OAAO,KAET,KAAK,MAAQA,EACb,KAAK,SAAWA,EAAM,YAAY,EAClC,KAAK,KAAOP,EAAUO,EAAOE,CAAY,EACzC,KAAK,QAAU,KAAK,KAAK,YAAY,EACrC,KAAK,QAAUJ,EAAmB,KAAK,IAAI,EAC3C,KAAK,MAAQJ,EAASM,EAAOA,EAAM,OAAQG,CAAa,EACxD,KAAK,IAAMP,EAAa,KAAK,QAAQ,EACrC,KAAK,UAAYD,EAAa,KAAK,QAAQ,CAC7C,CAEA,OAAOH,CAET,EAAG,EAEHK,EAAc,eAEdJ,EAAY,SAASO,EAAOE,EAAc,CACxC,OAAIA,GAAgB,OAClBA,EAAeL,GAEVG,EAAM,QAAQE,EAAc,EAAE,CACvC,EAEAJ,EAAqB,SAASO,EAAK,CACjC,IAAIC,EAAMC,EAAOC,EAAIC,EAErB,IADAF,EAAQ,GACHC,EAAK,EAAGC,EAAOJ,EAAI,OAAQG,EAAKC,EAAMD,IACzCF,EAAOD,EAAIG,CAAE,EACbD,GAASD,EAAK,YAAY,EAAE,CAAC,EAE/B,OAAOC,CACT,EAEAZ,EAAe,SAASU,EAAK,CAC3B,IAAIK,EAAWC,EAAGC,EAIlB,IAHAA,EAAMP,EAAI,OACVM,EAAI,GACJD,EAAY,CAAC,EACN,EAAEC,EAAIC,GACXF,EAAUL,EAAI,WAAWM,CAAC,CAAC,EAAI,GAEjC,OAAOD,CACT,CAEF,GAAG,KAAKpB,EAAI,ICxDZ,IAAAuB,GAAAC,GAAA,CAAAC,GAAAC,KAAA,EAAC,UAAW,CACV,IAAIC,EAAOC,EAAYC,EAAiBC,EAAQC,EAEhDD,EAAS,KAETF,EAAa,KAEbD,EAAQ,KAERE,EAAkB,SAASG,EAAG,CAC5B,OAAOA,EAAE,SACX,EAEAD,EAAiB,SAASC,EAAGC,EAAG,CAC9B,OAAOA,EAAE,MAAQD,EAAE,KACrB,EAEAN,GAAO,QAAU,SAASQ,EAAYC,EAAOC,EAAS,CACpD,IAAIC,EAAMC,EAAWC,EAAKC,EAAWC,EAAYC,EAAOC,EAAeC,EAAkBC,EAAUC,EAAQC,EAAgBC,EAAIC,EAM/H,IALAL,EAAmB,CAAC,EACpBL,EAAMH,EAAQ,IAAKK,EAAaL,EAAQ,WAAYI,EAAYJ,EAAQ,UAAWW,EAAiBX,EAAQ,eAC5GS,EAAYL,GAAa,MAASA,EAAY,EAAIA,EAAYN,EAAW,OAAS,EAClFG,EAAOE,GAAO,KACdI,EAAgBI,EAAiBnB,EAAaE,EACzCkB,EAAK,EAAGC,EAAOf,EAAW,OAAQc,EAAKC,IAC1CX,EAAYJ,EAAWc,CAAE,EACzBF,EAAST,EAAOC,EAAUC,CAAG,EAAID,EAC7B,IAACQ,IAGLJ,EAAQC,EAAc,MAAMG,EAAQX,EAAOC,CAAO,EAC9CM,EAAQ,IACVE,EAAiB,KAAK,CACpB,UAAWN,EACX,MAAOI,CACT,CAAC,EACG,CAAC,EAAEG,MAZuCG,IAGhD,CAcF,OAAAJ,EAAiB,KAAKb,CAAc,EACpCG,EAAaU,EAAiB,IAAIf,CAAe,EAC7CY,GAAc,OAChBP,EAAaA,EAAW,MAAM,EAAGO,CAAU,GAEtCP,CACT,CAEF,GAAG,KAAKT,EAAI,ICjDZ,IAAAyB,GAAAC,GAAAC,IAAA,EAAC,UAAW,CACV,IAAIC,EAAeC,EAAcC,EAASC,EAAaC,EAAOC,EAAcC,EAAeC,EAAgBC,EAAmBC,EAE9HA,EAAO,KAAqBP,EAAUO,EAAK,QAASN,EAAcM,EAAK,YAAaD,EAAoBC,EAAK,kBAAmBF,EAAiBE,EAAK,eAAgBH,EAAgBG,EAAK,cAE3LV,GAAQ,MAAQK,EAAQ,SAASM,EAAQC,EAAOC,EAAS,CACvD,IAAIC,EAAaC,EAAaC,EAASC,EAAeC,EAAeC,EAErE,OADAL,EAAcD,EAAQ,YAAaK,EAAgBL,EAAQ,cAAeI,EAAgBJ,EAAQ,cAC5FC,GAAeX,EAAQQ,EAAQO,EAAc,QAASA,EAAc,OAAO,GAGjFC,EAAYR,EAAO,YAAY,EAC/BK,EAAUd,EAAaS,EAAQQ,EAAWD,CAAa,EACnDF,EAAQ,SAAW,GAGnBL,EAAO,QAAQM,CAAa,EAAI,KAClCF,EAAcd,EAAcU,EAAQQ,EAAWD,EAAeD,CAAa,EAC3ED,EAAUV,EAAaU,EAASD,CAAW,GAEtCC,GAXE,CAAC,CAYZ,EAEAhB,GAAQ,KAAO,SAASW,EAAQC,EAAOC,EAAS,CAC9C,IAAIO,EAAYC,EAAUC,EAAgBC,EAAQC,EAAQC,EAAUC,EAAUC,EAASC,EAavF,GAZKf,EAAQ,MAAQ,OACnBe,EAAQf,EAAQ,KAAMY,EAAWG,EAAM,SAAUD,EAAUC,EAAM,QAASF,EAAWE,EAAM,UAEzFH,GAAY,OACdA,EAAW,aAETE,GAAW,OACbA,EAAU,kBAAoBF,EAAW,MAEvCC,GAAY,OACdA,EAAW,aAETf,IAAWC,EACb,OAAOe,EAAUhB,EAASe,EAG5B,GADAJ,EAAiBjB,EAAMM,EAAQC,EAAOC,CAAO,EACzCS,EAAe,SAAW,EAC5B,OAAOX,EAKT,IAHAY,EAAS,GACTH,EAAa,GACbI,EAAS,EACF,EAAEJ,EAAaE,EAAe,QAAQ,CAM3C,IALAD,EAAWC,EAAeF,CAAU,EAChCC,EAAWG,IACbD,GAAUZ,EAAO,UAAUa,EAAQH,CAAQ,EAC3CG,EAASH,GAEJ,EAAED,EAAaE,EAAe,QACnC,GAAIA,EAAeF,CAAU,IAAMC,EAAW,EAC5CA,QACK,CACLD,IACA,KACF,CAEFC,IACIA,EAAWG,IACbD,GAAUI,EACVJ,GAAUZ,EAAO,UAAUa,EAAQH,CAAQ,EAC3CE,GAAUG,EACVF,EAASH,EAEb,CACA,OAAIG,GAAUb,EAAO,OAAS,IAC5BY,GAAUZ,EAAO,UAAUa,CAAM,GAE5BD,CACT,EAEAtB,EAAgB,SAAS4B,EAASC,EAAYZ,EAAeD,EAAe,CAC1E,IAAIc,EAASC,EAAOC,EAEpB,IADAA,EAAMJ,EAAQ,OAAS,EAChBA,EAAQI,CAAG,IAAMhB,GACtBgB,IAGF,GADAF,EAAUF,EAAQ,YAAYZ,EAAegB,CAAG,EAC5CF,IAAY,GACd,MAAO,CAAC,EAGV,IADAC,EAAQd,EAAc,MACfc,KAAU,GAEf,GADAD,EAAUF,EAAQ,YAAYZ,EAAec,EAAU,CAAC,EACpDA,IAAY,GACd,MAAO,CAAC,EAGZ,OAAAA,IACAE,IACO/B,EAAa2B,EAAQ,MAAME,EAASE,CAAG,EAAGH,EAAW,MAAMC,EAASE,CAAG,EAAGf,EAAea,CAAO,CACzG,EAEAzB,EAAe,SAAS4B,EAAGC,EAAG,CAC5B,IAAIC,EAAIC,EAAIC,EAAGC,EAAGC,EAAGC,EAAGC,EAGxB,GAFAF,EAAIN,EAAE,OACNO,EAAIN,EAAE,OACFM,IAAM,EACR,OAAOP,EAAE,MAAM,EAEjB,GAAIM,IAAM,EACR,OAAOL,EAAE,MAAM,EAMjB,IAJAG,EAAI,GACJC,EAAI,EACJF,EAAKF,EAAEI,CAAC,EACRG,EAAM,CAAC,EACA,EAAEJ,EAAIE,GAAG,CAEd,IADAJ,EAAKF,EAAEI,CAAC,EACDD,GAAMD,GAAM,EAAEG,EAAIE,GACnBJ,EAAKD,GACPM,EAAI,KAAKL,CAAE,EAEbA,EAAKF,EAAEI,CAAC,EAEVG,EAAI,KAAKN,CAAE,CACb,CACA,KAAOG,EAAIE,GACTC,EAAI,KAAKP,EAAEI,GAAG,CAAC,EAEjB,OAAOG,CACT,EAEAxC,EAAe,SAAS2B,EAASC,EAAYZ,EAAeyB,EAAQ,CAClE,IAAIC,EAAUC,EAAMC,EAAMC,EAAIC,EAAYC,EAAOC,EAAWC,EAAUC,EAASC,EAAWf,EAAGC,EAAGC,EAAGxB,EAASsC,EAAMb,EAAGc,EAAK3C,EAAO4C,EAAUC,EAAOC,GAAYC,EAAWC,GAAUC,GAAOC,GAAOC,GAkBjM,IAjBIpB,GAAU,OACZA,EAAS,GAEX/B,EAAQM,EAAc,MACtBsC,EAAWtC,EAAc,SACzBsB,EAAIX,EAAQ,OACZY,EAAI7B,EAAM,OACVoC,EAAazC,EAAcsB,EAASC,EAAYlB,EAAO4C,CAAQ,EAAE,MACjEG,EAAY,IAAI,MAAMlB,CAAC,EACvBW,EAAU,IAAI,MAAMX,CAAC,EACrBK,EAAO,EACPC,EAAK,EACLF,EAAO,EACPD,EAAW,EACXmB,GAAQ,IAAI,MAAMvB,EAAIC,CAAC,EACvBc,EAAM,GACNhB,EAAI,GACG,EAAEA,EAAIE,GACXkB,EAAUpB,CAAC,EAAI,EACfa,EAAQb,CAAC,EAAI,EAGf,IADAD,EAAI,GACG,EAAEA,EAAIE,GAMX,IALAiB,EAAQ,EACRG,GAAW,EACXT,EAAW,EACXU,GAAQ/B,EAAWQ,CAAC,EACpBC,EAAI,GACG,EAAEA,EAAIE,GACXY,EAAY,EACZJ,EAAQ,EACRS,GAAaE,GACTJ,EAASjB,CAAC,IAAMsB,KAClBC,GAAQ1D,EAAYkC,EAAGT,EAASC,CAAU,EAC1CuB,EAAYF,EAAW,EAAIA,EAAW1C,EAAkBoB,EAASC,EAAYlB,EAAO4C,EAAUlB,EAAGC,EAAGuB,EAAK,EACzGb,EAAQS,GAAalD,EAAe8B,EAAGC,EAAGuB,GAAOd,EAAYK,CAAS,GAExEO,GAAWD,EAAUpB,CAAC,EACtBY,EAAWC,EAAQb,CAAC,EAChBkB,EAAQG,GACVN,EAAOT,GAEPY,EAAQG,GACRN,EAAOP,GAELE,EAAQQ,GACVA,EAAQR,EACRK,EAAOV,GAEPS,EAAY,EAEdM,EAAUpB,CAAC,EAAIkB,EACfL,EAAQb,CAAC,EAAIc,EACbU,GAAM,EAAER,CAAG,EAAIE,EAAQ,EAAIH,EAAOR,EAQtC,IALAR,EAAIE,EAAI,EACRD,EAAIE,EAAI,EACRc,EAAMjB,EAAIG,EAAIF,EACdW,EAAY,GACZlC,EAAU,CAAC,EACJkC,GAAaZ,GAAK,GAAKC,GAAK,GACjC,OAAQwB,GAAMR,CAAG,EAAG,CAClB,KAAKR,EACHT,IACAiB,GAAOd,EACP,MACF,KAAKI,EACHN,IACAgB,IACA,MACF,KAAKX,EACH5B,EAAQ,KAAKsB,EAAIK,CAAM,EACvBJ,IACAD,IACAiB,GAAOd,EAAI,EACX,MACF,QACES,EAAY,EAChB,CAEF,OAAAlC,EAAQ,QAAQ,EACTA,CACT,CAEF,GAAG,KAAKhB,EAAI,ICtNZ,IAAAgE,GAAAC,GAAA,CAAAC,GAAAC,KAAA,EAAC,UAAW,CACV,IAAIC,EAAOC,EAAsBC,EAAQC,EAASC,EAAcC,EAAYC,EAAoBC,EAEhGL,EAAS,KAETC,EAAU,KAEVI,EAAS,KAETF,EAAa,KAEbL,EAAQ,KAERM,EAAqB,KAErBL,GAAwB,OAAO,SAAY,aAAe,UAAY,KAAO,QAAQ,SAAW,UAAY,QAAU,KAAO,IAE7HF,GAAO,QAAU,CACf,OAAQ,SAASS,EAAYC,EAAOC,EAAS,CAI3C,OAHIA,GAAW,OACbA,EAAU,CAAC,GAEND,GAAS,MAAOA,EAAM,SAAqBD,GAAc,MAAOA,EAAW,SAGlFE,EAAUN,EAAaM,EAASD,CAAK,EAC9BP,EAAOM,EAAYC,EAAOC,CAAO,GAH/B,CAAC,CAIZ,EACA,MAAO,SAASC,EAAQF,EAAOC,EAAS,CAItC,OAHIA,GAAW,OACbA,EAAU,CAAC,GAENC,GAAU,MAAOA,EAAO,SAAqBF,GAAS,MAAOA,EAAM,SAG1EC,EAAUN,EAAaM,EAASD,CAAK,EACjCC,EAAQ,eACHL,EAAW,MAAMM,EAAQF,EAAOC,CAAO,EAEvCH,EAAO,MAAMI,EAAQF,EAAOC,CAAO,GANnC,CAQX,EACA,MAAO,SAASC,EAAQF,EAAOC,EAAS,CACtC,IAAIE,EAAIC,EAAMC,EAId,OAHIJ,GAAW,OACbA,EAAU,CAAC,GAERC,EAGAF,EAGDE,IAAWF,EACL,UAAW,CACjBK,EAAW,CAAC,EACZ,QAASF,EAAK,EAAGC,EAAOF,EAAO,OAAQ,GAAKE,EAAOD,EAAKC,EAAOD,EAAKC,EAAM,GAAKA,EAAOD,IAAOA,IAAOE,EAAS,KAAKF,CAAE,EACpH,OAAOE,CACT,EAAG,MAAM,IAAI,GAEfJ,EAAUN,EAAaM,EAASD,CAAK,EAC9BN,EAAQ,MAAMQ,EAAQF,EAAOC,CAAO,GAVlC,CAAC,EAHD,CAAC,CAcZ,EACA,KAAM,SAASC,EAAQF,EAAOC,EAAS,CAIrC,OAHIA,GAAW,OACbA,EAAU,CAAC,GAERC,EAGAF,GAGLC,EAAUN,EAAaM,EAASD,CAAK,EAC9BN,EAAQ,KAAKQ,EAAQF,EAAOC,CAAO,GAHjC,CAAC,EAHD,CAAC,CAOZ,EACA,aAAc,SAASD,EAAOC,EAAS,CACrC,OAAIA,GAAW,OACbA,EAAU,CAAC,GAEbA,EAAUN,EAAaM,EAASD,CAAK,EAC9BC,EAAQ,aACjB,CACF,EAEAN,EAAe,SAASM,EAASD,EAAO,CACtC,OAAIC,EAAQ,aAAe,OACzBA,EAAQ,YAAc,IAEpBA,EAAQ,gBAAkB,OAC5BA,EAAQ,eAAiB,IAEvBA,EAAQ,mBAAqB,OAC/BA,EAAQ,kBAAoB,IAE1BA,EAAQ,eAAiB,OAC3BA,EAAQ,cAAgBT,GAEtBS,EAAQ,cAAgB,OAC1BA,EAAQ,aAAe,MAErBA,EAAQ,MAAQ,OAClBA,EAAQ,KAAO,MAEbA,EAAQ,eAAiB,OAC3BA,EAAQ,cAAgBJ,GAAsBA,EAAmB,QAAUG,EAAQH,EAAsBA,EAAqB,IAAIN,EAAMS,EAAOC,CAAO,GAEjJA,CACT,CAEF,GAAG,KAAKZ,EAAI,IC9FZ,IAAIiB,GAAgB,SAASC,EAAGC,EAAG,CACjC,OAAAF,GAAgB,OAAO,gBAClB,CAAE,UAAW,CAAC,CAAE,YAAa,OAAS,SAAUC,EAAGC,EAAG,CAAED,EAAE,UAAYC,CAAG,GAC1E,SAAUD,EAAGC,EAAG,CAAE,QAASC,KAAKD,EAAO,OAAO,UAAU,eAAe,KAAKA,EAAGC,CAAC,IAAGF,EAAEE,CAAC,EAAID,EAAEC,CAAC,EAAG,EAC7FH,GAAcC,EAAGC,CAAC,CAC3B,EAEO,SAASE,EAAUH,EAAGC,EAAG,CAC9B,GAAI,OAAOA,GAAM,YAAcA,IAAM,KACjC,MAAM,IAAI,UAAU,uBAAyB,OAAOA,CAAC,EAAI,+BAA+B,EAC5FF,GAAcC,EAAGC,CAAC,EAClB,SAASG,GAAK,CAAE,KAAK,YAAcJ,CAAG,CACtCA,EAAE,UAAYC,IAAM,KAAO,OAAO,OAAOA,CAAC,GAAKG,EAAG,UAAYH,EAAE,UAAW,IAAIG,EACjF,CAqFO,SAASC,GAAUC,EAASC,EAAYC,EAAGC,EAAW,CAC3D,SAASC,EAAMC,EAAO,CAAE,OAAOA,aAAiBH,EAAIG,EAAQ,IAAIH,EAAE,SAAUI,EAAS,CAAEA,EAAQD,CAAK,CAAG,CAAC,CAAG,CAC3G,OAAO,IAAKH,IAAMA,EAAI,UAAU,SAAUI,EAASC,EAAQ,CACvD,SAASC,EAAUH,EAAO,CAAE,GAAI,CAAEI,EAAKN,EAAU,KAAKE,CAAK,CAAC,CAAG,OAASK,EAAG,CAAEH,EAAOG,CAAC,CAAG,CAAE,CAC1F,SAASC,EAASN,EAAO,CAAE,GAAI,CAAEI,EAAKN,EAAU,MAASE,CAAK,CAAC,CAAG,OAASK,EAAG,CAAEH,EAAOG,CAAC,CAAG,CAAE,CAC7F,SAASD,EAAKG,EAAQ,CAAEA,EAAO,KAAON,EAAQM,EAAO,KAAK,EAAIR,EAAMQ,EAAO,KAAK,EAAE,KAAKJ,EAAWG,CAAQ,CAAG,CAC7GF,GAAMN,EAAYA,EAAU,MAAMH,EAASC,GAAc,CAAC,CAAC,GAAG,KAAK,CAAC,CACxE,CAAC,CACH,CAEO,SAASY,GAAYb,EAASc,EAAM,CACzC,IAAIC,EAAI,CAAE,MAAO,EAAG,KAAM,UAAW,CAAE,GAAIC,EAAE,CAAC,EAAI,EAAG,MAAMA,EAAE,CAAC,EAAG,OAAOA,EAAE,CAAC,CAAG,EAAG,KAAM,CAAC,EAAG,IAAK,CAAC,CAAE,EAAGC,EAAGC,EAAGF,EAAGG,EAAI,OAAO,QAAQ,OAAO,UAAa,WAAa,SAAW,QAAQ,SAAS,EAC/L,OAAOA,EAAE,KAAOC,EAAK,CAAC,EAAGD,EAAE,MAAWC,EAAK,CAAC,EAAGD,EAAE,OAAYC,EAAK,CAAC,EAAG,OAAO,QAAW,aAAeD,EAAE,OAAO,QAAQ,EAAI,UAAW,CAAE,OAAO,IAAM,GAAIA,EAC1J,SAASC,EAAKC,EAAG,CAAE,OAAO,SAAUC,EAAG,CAAE,OAAOb,EAAK,CAACY,EAAGC,CAAC,CAAC,CAAG,CAAG,CACjE,SAASb,EAAKc,EAAI,CACd,GAAIN,EAAG,MAAM,IAAI,UAAU,iCAAiC,EAC5D,KAAOE,IAAMA,EAAI,EAAGI,EAAG,CAAC,IAAMR,EAAI,IAAKA,GAAG,GAAI,CAC1C,GAAIE,EAAI,EAAGC,IAAMF,EAAIO,EAAG,CAAC,EAAI,EAAIL,EAAE,OAAYK,EAAG,CAAC,EAAIL,EAAE,SAAcF,EAAIE,EAAE,SAAcF,EAAE,KAAKE,CAAC,EAAG,GAAKA,EAAE,OAAS,EAAEF,EAAIA,EAAE,KAAKE,EAAGK,EAAG,CAAC,CAAC,GAAG,KAAM,OAAOP,EAE3J,OADIE,EAAI,EAAGF,IAAGO,EAAK,CAACA,EAAG,CAAC,EAAI,EAAGP,EAAE,KAAK,GAC9BO,EAAG,CAAC,EAAG,CACX,IAAK,GAAG,IAAK,GAAGP,EAAIO,EAAI,MACxB,IAAK,GAAG,OAAAR,EAAE,QAAgB,CAAE,MAAOQ,EAAG,CAAC,EAAG,KAAM,EAAM,EACtD,IAAK,GAAGR,EAAE,QAASG,EAAIK,EAAG,CAAC,EAAGA,EAAK,CAAC,CAAC,EAAG,SACxC,IAAK,GAAGA,EAAKR,EAAE,IAAI,IAAI,EAAGA,EAAE,KAAK,IAAI,EAAG,SACxC,QACI,GAAMC,EAAID,EAAE,KAAM,EAAAC,EAAIA,EAAE,OAAS,GAAKA,EAAEA,EAAE,OAAS,CAAC,KAAOO,EAAG,CAAC,IAAM,GAAKA,EAAG,CAAC,IAAM,GAAI,CAAER,EAAI,EAAG,QAAU,CAC3G,GAAIQ,EAAG,CAAC,IAAM,IAAM,CAACP,GAAMO,EAAG,CAAC,EAAIP,EAAE,CAAC,GAAKO,EAAG,CAAC,EAAIP,EAAE,CAAC,GAAK,CAAED,EAAE,MAAQQ,EAAG,CAAC,EAAG,KAAO,CACrF,GAAIA,EAAG,CAAC,IAAM,GAAKR,EAAE,MAAQC,EAAE,CAAC,EAAG,CAAED,EAAE,MAAQC,EAAE,CAAC,EAAGA,EAAIO,EAAI,KAAO,CACpE,GAAIP,GAAKD,EAAE,MAAQC,EAAE,CAAC,EAAG,CAAED,EAAE,MAAQC,EAAE,CAAC,EAAGD,EAAE,IAAI,KAAKQ,CAAE,EAAG,KAAO,CAC9DP,EAAE,CAAC,GAAGD,EAAE,IAAI,IAAI,EACpBA,EAAE,KAAK,IAAI,EAAG,QACtB,CACAQ,EAAKT,EAAK,KAAKd,EAASe,CAAC,CAC7B,OAASL,EAAG,CAAEa,EAAK,CAAC,EAAGb,CAAC,EAAGQ,EAAI,CAAG,QAAE,CAAUD,EAAID,EAAI,CAAG,CACzD,GAAIO,EAAG,CAAC,EAAI,EAAG,MAAMA,EAAG,CAAC,EAAG,MAAO,CAAE,MAAOA,EAAG,CAAC,EAAIA,EAAG,CAAC,EAAI,OAAQ,KAAM,EAAK,CACnF,CACF,CAkBO,SAASC,EAASC,EAAG,CAC1B,IAAIC,EAAI,OAAO,QAAW,YAAc,OAAO,SAAUC,EAAID,GAAKD,EAAEC,CAAC,EAAGE,EAAI,EAC5E,GAAID,EAAG,OAAOA,EAAE,KAAKF,CAAC,EACtB,GAAIA,GAAK,OAAOA,EAAE,QAAW,SAAU,MAAO,CAC1C,KAAM,UAAY,CACd,OAAIA,GAAKG,GAAKH,EAAE,SAAQA,EAAI,QACrB,CAAE,MAAOA,GAAKA,EAAEG,GAAG,EAAG,KAAM,CAACH,CAAE,CAC1C,CACJ,EACA,MAAM,IAAI,UAAUC,EAAI,0BAA4B,iCAAiC,CACvF,CAEO,SAASG,EAAOJ,EAAGK,EAAG,CAC3B,IAAIH,EAAI,OAAO,QAAW,YAAcF,EAAE,OAAO,QAAQ,EACzD,GAAI,CAACE,EAAG,OAAOF,EACf,IAAIG,EAAID,EAAE,KAAKF,CAAC,EAAGM,EAAGC,EAAK,CAAC,EAAGC,EAC/B,GAAI,CACA,MAAQH,IAAM,QAAUA,KAAM,IAAM,EAAEC,EAAIH,EAAE,KAAK,GAAG,MAAMI,EAAG,KAAKD,EAAE,KAAK,CAC7E,OACOG,EAAO,CAAED,EAAI,CAAE,MAAOC,CAAM,CAAG,QACtC,CACI,GAAI,CACIH,GAAK,CAACA,EAAE,OAASJ,EAAIC,EAAE,SAAYD,EAAE,KAAKC,CAAC,CACnD,QACA,CAAU,GAAIK,EAAG,MAAMA,EAAE,KAAO,CACpC,CACA,OAAOD,CACT,CAkBO,SAASG,EAAcC,EAAIC,EAAMC,EAAM,CAC5C,GAAIA,GAAQ,UAAU,SAAW,EAAG,QAASC,EAAI,EAAGC,EAAIH,EAAK,OAAQI,EAAIF,EAAIC,EAAGD,KACxEE,GAAM,EAAEF,KAAKF,MACRI,IAAIA,EAAK,MAAM,UAAU,MAAM,KAAKJ,EAAM,EAAGE,CAAC,GACnDE,EAAGF,CAAC,EAAIF,EAAKE,CAAC,GAGtB,OAAOH,EAAG,OAAOK,GAAM,MAAM,UAAU,MAAM,KAAKJ,CAAI,CAAC,CACzD,CAEO,SAASK,GAAQC,EAAG,CACzB,OAAO,gBAAgBD,IAAW,KAAK,EAAIC,EAAG,MAAQ,IAAID,GAAQC,CAAC,CACrE,CAEO,SAASC,GAAiBC,EAASC,EAAYC,EAAW,CAC/D,GAAI,CAAC,OAAO,cAAe,MAAM,IAAI,UAAU,sCAAsC,EACrF,IAAIC,EAAID,EAAU,MAAMF,EAASC,GAAc,CAAC,CAAC,EAAGP,EAAGU,EAAI,CAAC,EAC5D,OAAOV,EAAI,OAAO,QAAQ,OAAO,eAAkB,WAAa,cAAgB,QAAQ,SAAS,EAAGW,EAAK,MAAM,EAAGA,EAAK,OAAO,EAAGA,EAAK,SAAUC,CAAW,EAAGZ,EAAE,OAAO,aAAa,EAAI,UAAY,CAAE,OAAO,IAAM,EAAGA,EACtN,SAASY,EAAYC,EAAG,CAAE,OAAO,SAAUT,EAAG,CAAE,OAAO,QAAQ,QAAQA,CAAC,EAAE,KAAKS,EAAGC,CAAM,CAAG,CAAG,CAC9F,SAASH,EAAKI,EAAGF,EAAG,CAAMJ,EAAEM,CAAC,IAAKf,EAAEe,CAAC,EAAI,SAAUX,EAAG,CAAE,OAAO,IAAI,QAAQ,SAAUY,EAAGC,EAAG,CAAEP,EAAE,KAAK,CAACK,EAAGX,EAAGY,EAAGC,CAAC,CAAC,EAAI,GAAKC,EAAOH,EAAGX,CAAC,CAAG,CAAC,CAAG,EAAOS,IAAGb,EAAEe,CAAC,EAAIF,EAAEb,EAAEe,CAAC,CAAC,GAAK,CACvK,SAASG,EAAOH,EAAGX,EAAG,CAAE,GAAI,CAAEe,EAAKV,EAAEM,CAAC,EAAEX,CAAC,CAAC,CAAG,OAASgB,EAAG,CAAEC,EAAOX,EAAE,CAAC,EAAE,CAAC,EAAGU,CAAC,CAAG,CAAE,CACjF,SAASD,EAAKG,EAAG,CAAEA,EAAE,iBAAiBnB,GAAU,QAAQ,QAAQmB,EAAE,MAAM,CAAC,EAAE,KAAKC,EAAST,CAAM,EAAIO,EAAOX,EAAE,CAAC,EAAE,CAAC,EAAGY,CAAC,CAAG,CACvH,SAASC,EAAQC,EAAO,CAAEN,EAAO,OAAQM,CAAK,CAAG,CACjD,SAASV,EAAOU,EAAO,CAAEN,EAAO,QAASM,CAAK,CAAG,CACjD,SAASH,EAAOR,EAAGT,EAAG,CAAMS,EAAET,CAAC,EAAGM,EAAE,MAAM,EAAGA,EAAE,QAAQQ,EAAOR,EAAE,CAAC,EAAE,CAAC,EAAGA,EAAE,CAAC,EAAE,CAAC,CAAC,CAAG,CACnF,CAQO,SAASe,GAAcC,EAAG,CAC/B,GAAI,CAAC,OAAO,cAAe,MAAM,IAAI,UAAU,sCAAsC,EACrF,IAAIC,EAAID,EAAE,OAAO,aAAa,EAAGE,EACjC,OAAOD,EAAIA,EAAE,KAAKD,CAAC,GAAKA,EAAI,OAAOG,GAAa,WAAaA,EAASH,CAAC,EAAIA,EAAE,OAAO,QAAQ,EAAE,EAAGE,EAAI,CAAC,EAAGE,EAAK,MAAM,EAAGA,EAAK,OAAO,EAAGA,EAAK,QAAQ,EAAGF,EAAE,OAAO,aAAa,EAAI,UAAY,CAAE,OAAO,IAAM,EAAGA,GAC9M,SAASE,EAAKC,EAAG,CAAEH,EAAEG,CAAC,EAAIL,EAAEK,CAAC,GAAK,SAAUC,EAAG,CAAE,OAAO,IAAI,QAAQ,SAAUC,EAASC,EAAQ,CAAEF,EAAIN,EAAEK,CAAC,EAAEC,CAAC,EAAGG,EAAOF,EAASC,EAAQF,EAAE,KAAMA,EAAE,KAAK,CAAG,CAAC,CAAG,CAAG,CAC/J,SAASG,EAAOF,EAASC,EAAQE,EAAGJ,EAAG,CAAE,QAAQ,QAAQA,CAAC,EAAE,KAAK,SAASA,EAAG,CAAEC,EAAQ,CAAE,MAAOD,EAAG,KAAMI,CAAE,CAAC,CAAG,EAAGF,CAAM,CAAG,CAC7H,CCxPM,SAAUG,EAAWC,EAAU,CACnC,OAAO,OAAOA,GAAU,UAC1B,CCGM,SAAUC,GAAoBC,EAAgC,CAClE,IAAMC,EAAS,SAACC,EAAa,CAC3B,MAAM,KAAKA,CAAQ,EACnBA,EAAS,MAAQ,IAAI,MAAK,EAAG,KAC/B,EAEMC,EAAWH,EAAWC,CAAM,EAClC,OAAAE,EAAS,UAAY,OAAO,OAAO,MAAM,SAAS,EAClDA,EAAS,UAAU,YAAcA,EAC1BA,CACT,CCDO,IAAMC,GAA+CC,GAC1D,SAACC,EAAM,CACL,OAAA,SAA4CC,EAA0B,CACpED,EAAO,IAAI,EACX,KAAK,QAAUC,EACRA,EAAO,OAAM;EACxBA,EAAO,IAAI,SAACC,EAAKC,EAAC,CAAK,OAAGA,EAAI,EAAC,KAAKD,EAAI,SAAQ,CAAzB,CAA6B,EAAE,KAAK;GAAM,EACzD,GACJ,KAAK,KAAO,sBACZ,KAAK,OAASD,CAChB,CARA,CAQC,ECvBC,SAAUG,GAAaC,EAA6BC,EAAO,CAC/D,GAAID,EAAK,CACP,IAAME,EAAQF,EAAI,QAAQC,CAAI,EAC9B,GAAKC,GAASF,EAAI,OAAOE,EAAO,CAAC,EAErC,CCOA,IAAAC,GAAA,UAAA,CAyBE,SAAAA,EAAoBC,EAA4B,CAA5B,KAAA,gBAAAA,EAdb,KAAA,OAAS,GAER,KAAA,WAAmD,KAMnD,KAAA,YAAqD,IAMV,CAQnD,OAAAD,EAAA,UAAA,YAAA,UAAA,aACME,EAEJ,GAAI,CAAC,KAAK,OAAQ,CAChB,KAAK,OAAS,GAGN,IAAAC,EAAe,KAAI,WAC3B,GAAIA,EAEF,GADA,KAAK,WAAa,KACd,MAAM,QAAQA,CAAU,MAC1B,QAAqBC,EAAAC,EAAAF,CAAU,EAAAG,EAAAF,EAAA,KAAA,EAAA,CAAAE,EAAA,KAAAA,EAAAF,EAAA,KAAA,EAAE,CAA5B,IAAMG,EAAMD,EAAA,MACfC,EAAO,OAAO,IAAI,yGAGpBJ,EAAW,OAAO,IAAI,EAIlB,IAAiBK,EAAqB,KAAI,gBAClD,GAAIC,EAAWD,CAAgB,EAC7B,GAAI,CACFA,EAAgB,QACTE,EAAG,CACVR,EAASQ,aAAaC,GAAsBD,EAAE,OAAS,CAACA,CAAC,EAIrD,IAAAE,EAAgB,KAAI,YAC5B,GAAIA,EAAa,CACf,KAAK,YAAc,SACnB,QAAwBC,EAAAR,EAAAO,CAAW,EAAAE,EAAAD,EAAA,KAAA,EAAA,CAAAC,EAAA,KAAAA,EAAAD,EAAA,KAAA,EAAE,CAAhC,IAAME,EAASD,EAAA,MAClB,GAAI,CACFE,GAAcD,CAAS,QAChBE,EAAK,CACZf,EAASA,GAAM,KAANA,EAAU,CAAA,EACfe,aAAeN,GACjBT,EAAMgB,EAAAA,EAAA,CAAA,EAAAC,EAAOjB,CAAM,CAAA,EAAAiB,EAAKF,EAAI,MAAM,CAAA,EAElCf,EAAO,KAAKe,CAAG,sGAMvB,GAAIf,EACF,MAAM,IAAIS,GAAoBT,CAAM,EAG1C,EAoBAF,EAAA,UAAA,IAAA,SAAIoB,EAAuB,OAGzB,GAAIA,GAAYA,IAAa,KAC3B,GAAI,KAAK,OAGPJ,GAAcI,CAAQ,MACjB,CACL,GAAIA,aAAoBpB,EAAc,CAGpC,GAAIoB,EAAS,QAAUA,EAAS,WAAW,IAAI,EAC7C,OAEFA,EAAS,WAAW,IAAI,GAEzB,KAAK,aAAcC,EAAA,KAAK,eAAW,MAAAA,IAAA,OAAAA,EAAI,CAAA,GAAI,KAAKD,CAAQ,EAG/D,EAOQpB,EAAA,UAAA,WAAR,SAAmBsB,EAAoB,CAC7B,IAAAnB,EAAe,KAAI,WAC3B,OAAOA,IAAemB,GAAW,MAAM,QAAQnB,CAAU,GAAKA,EAAW,SAASmB,CAAM,CAC1F,EASQtB,EAAA,UAAA,WAAR,SAAmBsB,EAAoB,CAC7B,IAAAnB,EAAe,KAAI,WAC3B,KAAK,WAAa,MAAM,QAAQA,CAAU,GAAKA,EAAW,KAAKmB,CAAM,EAAGnB,GAAcA,EAAa,CAACA,EAAYmB,CAAM,EAAIA,CAC5H,EAMQtB,EAAA,UAAA,cAAR,SAAsBsB,EAAoB,CAChC,IAAAnB,EAAe,KAAI,WACvBA,IAAemB,EACjB,KAAK,WAAa,KACT,MAAM,QAAQnB,CAAU,GACjCoB,GAAUpB,EAAYmB,CAAM,CAEhC,EAgBAtB,EAAA,UAAA,OAAA,SAAOoB,EAAsC,CACnC,IAAAR,EAAgB,KAAI,YAC5BA,GAAeW,GAAUX,EAAaQ,CAAQ,EAE1CA,aAAoBpB,GACtBoB,EAAS,cAAc,IAAI,CAE/B,EAlLcpB,EAAA,MAAS,UAAA,CACrB,IAAMwB,EAAQ,IAAIxB,EAClB,OAAAwB,EAAM,OAAS,GACRA,CACT,EAAE,EA+KJxB,GArLA,EAuLO,IAAMyB,GAAqBC,GAAa,MAEzC,SAAUC,GAAeC,EAAU,CACvC,OACEA,aAAiBF,IAChBE,GAAS,WAAYA,GAASC,EAAWD,EAAM,MAAM,GAAKC,EAAWD,EAAM,GAAG,GAAKC,EAAWD,EAAM,WAAW,CAEpH,CAEA,SAASE,GAAcC,EAAwC,CACzDF,EAAWE,CAAS,EACtBA,EAAS,EAETA,EAAU,YAAW,CAEzB,CChNO,IAAMC,GAAuB,CAClC,iBAAkB,KAClB,sBAAuB,KACvB,QAAS,OACT,sCAAuC,GACvC,yBAA0B,ICGrB,IAAMC,GAAmC,CAG9C,WAAA,SAAWC,EAAqBC,EAAgB,SAAEC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,EAAA,CAAA,EAAA,UAAAA,CAAA,EACxC,IAAAC,EAAaL,GAAe,SACpC,OAAIK,GAAQ,MAARA,EAAU,WACLA,EAAS,WAAU,MAAnBA,EAAQC,EAAA,CAAYL,EAASC,CAAO,EAAAK,EAAKJ,CAAI,CAAA,CAAA,EAE/C,WAAU,MAAA,OAAAG,EAAA,CAACL,EAASC,CAAO,EAAAK,EAAKJ,CAAI,CAAA,CAAA,CAC7C,EACA,aAAA,SAAaK,EAAM,CACT,IAAAH,EAAaL,GAAe,SACpC,QAAQK,GAAQ,KAAA,OAARA,EAAU,eAAgB,cAAcG,CAAa,CAC/D,EACA,SAAU,QCjBN,SAAUC,GAAqBC,EAAQ,CAC3CC,GAAgB,WAAW,UAAA,CACjB,IAAAC,EAAqBC,GAAM,iBACnC,GAAID,EAEFA,EAAiBF,CAAG,MAGpB,OAAMA,CAEV,CAAC,CACH,CCtBM,SAAUI,IAAI,CAAK,CCMlB,IAAMC,GAAyB,UAAA,CAAM,OAAAC,GAAmB,IAAK,OAAW,MAAS,CAA5C,EAAsE,EAO5G,SAAUC,GAAkBC,EAAU,CAC1C,OAAOF,GAAmB,IAAK,OAAWE,CAAK,CACjD,CAOM,SAAUC,GAAoBC,EAAQ,CAC1C,OAAOJ,GAAmB,IAAKI,EAAO,MAAS,CACjD,CAQM,SAAUJ,GAAmBK,EAAuBD,EAAYF,EAAU,CAC9E,MAAO,CACL,KAAIG,EACJ,MAAKD,EACL,MAAKF,EAET,CCrCA,IAAII,GAAuD,KASrD,SAAUC,GAAaC,EAAc,CACzC,GAAIC,GAAO,sCAAuC,CAChD,IAAMC,EAAS,CAACJ,GAKhB,GAJII,IACFJ,GAAU,CAAE,YAAa,GAAO,MAAO,IAAI,GAE7CE,EAAE,EACEE,EAAQ,CACJ,IAAAC,EAAyBL,GAAvBM,EAAWD,EAAA,YAAEE,EAAKF,EAAA,MAE1B,GADAL,GAAU,KACNM,EACF,MAAMC,QAMVL,EAAE,CAEN,CAMM,SAAUM,GAAaC,EAAQ,CAC/BN,GAAO,uCAAyCH,KAClDA,GAAQ,YAAc,GACtBA,GAAQ,MAAQS,EAEpB,CCrBA,IAAAC,GAAA,SAAAC,EAAA,CAAmCC,EAAAF,EAAAC,CAAA,EA6BjC,SAAAD,EAAYG,EAA6C,CAAzD,IAAAC,EACEH,EAAA,KAAA,IAAA,GAAO,KATC,OAAAG,EAAA,UAAqB,GAUzBD,GACFC,EAAK,YAAcD,EAGfE,GAAeF,CAAW,GAC5BA,EAAY,IAAIC,CAAI,GAGtBA,EAAK,YAAcE,IAEvB,CAzBO,OAAAN,EAAA,OAAP,SAAiBO,EAAwBC,EAA2BC,EAAqB,CACvF,OAAO,IAAIC,GAAeH,EAAMC,EAAOC,CAAQ,CACjD,EAgCAT,EAAA,UAAA,KAAA,SAAKW,EAAS,CACR,KAAK,UACPC,GAA0BC,GAAiBF,CAAK,EAAG,IAAI,EAEvD,KAAK,MAAMA,CAAM,CAErB,EASAX,EAAA,UAAA,MAAA,SAAMc,EAAS,CACT,KAAK,UACPF,GAA0BG,GAAkBD,CAAG,EAAG,IAAI,GAEtD,KAAK,UAAY,GACjB,KAAK,OAAOA,CAAG,EAEnB,EAQAd,EAAA,UAAA,SAAA,UAAA,CACM,KAAK,UACPY,GAA0BI,GAAuB,IAAI,GAErD,KAAK,UAAY,GACjB,KAAK,UAAS,EAElB,EAEAhB,EAAA,UAAA,YAAA,UAAA,CACO,KAAK,SACR,KAAK,UAAY,GACjBC,EAAA,UAAM,YAAW,KAAA,IAAA,EACjB,KAAK,YAAc,KAEvB,EAEUD,EAAA,UAAA,MAAV,SAAgBW,EAAQ,CACtB,KAAK,YAAY,KAAKA,CAAK,CAC7B,EAEUX,EAAA,UAAA,OAAV,SAAiBc,EAAQ,CACvB,GAAI,CACF,KAAK,YAAY,MAAMA,CAAG,UAE1B,KAAK,YAAW,EAEpB,EAEUd,EAAA,UAAA,UAAV,UAAA,CACE,GAAI,CACF,KAAK,YAAY,SAAQ,UAEzB,KAAK,YAAW,EAEpB,EACFA,CAAA,EApHmCiB,EAAY,EA2H/C,IAAMC,GAAQ,SAAS,UAAU,KAEjC,SAASC,GAAyCC,EAAQC,EAAY,CACpE,OAAOH,GAAM,KAAKE,EAAIC,CAAO,CAC/B,CAMA,IAAAC,GAAA,UAAA,CACE,SAAAA,EAAoBC,EAAqC,CAArC,KAAA,gBAAAA,CAAwC,CAE5D,OAAAD,EAAA,UAAA,KAAA,SAAKE,EAAQ,CACH,IAAAD,EAAoB,KAAI,gBAChC,GAAIA,EAAgB,KAClB,GAAI,CACFA,EAAgB,KAAKC,CAAK,QACnBC,EAAO,CACdC,GAAqBD,CAAK,EAGhC,EAEAH,EAAA,UAAA,MAAA,SAAMK,EAAQ,CACJ,IAAAJ,EAAoB,KAAI,gBAChC,GAAIA,EAAgB,MAClB,GAAI,CACFA,EAAgB,MAAMI,CAAG,QAClBF,EAAO,CACdC,GAAqBD,CAAK,OAG5BC,GAAqBC,CAAG,CAE5B,EAEAL,EAAA,UAAA,SAAA,UAAA,CACU,IAAAC,EAAoB,KAAI,gBAChC,GAAIA,EAAgB,SAClB,GAAI,CACFA,EAAgB,SAAQ,QACjBE,EAAO,CACdC,GAAqBD,CAAK,EAGhC,EACFH,CAAA,EArCA,EAuCAM,GAAA,SAAAC,EAAA,CAAuCC,EAAAF,EAAAC,CAAA,EACrC,SAAAD,EACEG,EACAN,EACAO,EAA8B,CAHhC,IAAAC,EAKEJ,EAAA,KAAA,IAAA,GAAO,KAEHN,EACJ,GAAIW,EAAWH,CAAc,GAAK,CAACA,EAGjCR,EAAkB,CAChB,KAAOQ,GAAc,KAAdA,EAAkB,OACzB,MAAON,GAAK,KAALA,EAAS,OAChB,SAAUO,GAAQ,KAARA,EAAY,YAEnB,CAEL,IAAIG,EACAF,GAAQG,GAAO,0BAIjBD,EAAU,OAAO,OAAOJ,CAAc,EACtCI,EAAQ,YAAc,UAAA,CAAM,OAAAF,EAAK,YAAW,CAAhB,EAC5BV,EAAkB,CAChB,KAAMQ,EAAe,MAAQZ,GAAKY,EAAe,KAAMI,CAAO,EAC9D,MAAOJ,EAAe,OAASZ,GAAKY,EAAe,MAAOI,CAAO,EACjE,SAAUJ,EAAe,UAAYZ,GAAKY,EAAe,SAAUI,CAAO,IAI5EZ,EAAkBQ,EAMtB,OAAAE,EAAK,YAAc,IAAIX,GAAiBC,CAAe,GACzD,CACF,OAAAK,CAAA,EAzCuCS,EAAU,EA2CjD,SAASC,GAAqBC,EAAU,CAClCC,GAAO,sCACTC,GAAaF,CAAK,EAIlBG,GAAqBH,CAAK,CAE9B,CAQA,SAASI,GAAoBC,EAAQ,CACnC,MAAMA,CACR,CAOA,SAASC,GAA0BC,EAA2CC,EAA2B,CAC/F,IAAAC,EAA0BR,GAAM,sBACxCQ,GAAyBC,GAAgB,WAAW,UAAA,CAAM,OAAAD,EAAsBF,EAAcC,CAAU,CAA9C,CAA+C,CAC3G,CAOO,IAAMG,GAA6D,CACxE,OAAQ,GACR,KAAMC,GACN,MAAOR,GACP,SAAUQ,IC5QL,IAAMC,GAA+B,UAAA,CAAM,OAAC,OAAO,QAAW,YAAc,OAAO,YAAe,cAAvD,EAAsE,ECoClH,SAAUC,EAAYC,EAAI,CAC9B,OAAOA,CACT,CCiCM,SAAUC,IAAI,SAACC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EACnB,OAAOC,GAAcF,CAAG,CAC1B,CAGM,SAAUE,GAAoBF,EAA+B,CACjE,OAAIA,EAAI,SAAW,EACVG,EAGLH,EAAI,SAAW,EACVA,EAAI,CAAC,EAGP,SAAeI,EAAQ,CAC5B,OAAOJ,EAAI,OAAO,SAACK,EAAWC,EAAuB,CAAK,OAAAA,EAAGD,CAAI,CAAP,EAAUD,CAAY,CAClF,CACF,CC9EA,IAAAG,EAAA,UAAA,CAkBE,SAAAA,EAAYC,EAA6E,CACnFA,IACF,KAAK,WAAaA,EAEtB,CA4BA,OAAAD,EAAA,UAAA,KAAA,SAAQE,EAAyB,CAC/B,IAAMC,EAAa,IAAIH,EACvB,OAAAG,EAAW,OAAS,KACpBA,EAAW,SAAWD,EACfC,CACT,EA6IAH,EAAA,UAAA,UAAA,SACEI,EACAC,EACAC,EAA8B,CAHhC,IAAAC,EAAA,KAKQC,EAAaC,GAAaL,CAAc,EAAIA,EAAiB,IAAIM,GAAeN,EAAgBC,EAAOC,CAAQ,EAErH,OAAAK,GAAa,UAAA,CACL,IAAAC,EAAuBL,EAArBL,EAAQU,EAAA,SAAEC,EAAMD,EAAA,OACxBJ,EAAW,IACTN,EAGIA,EAAS,KAAKM,EAAYK,CAAM,EAChCA,EAIAN,EAAK,WAAWC,CAAU,EAG1BD,EAAK,cAAcC,CAAU,CAAC,CAEtC,CAAC,EAEMA,CACT,EAGUR,EAAA,UAAA,cAAV,SAAwBc,EAAmB,CACzC,GAAI,CACF,OAAO,KAAK,WAAWA,CAAI,QACpBC,EAAK,CAIZD,EAAK,MAAMC,CAAG,EAElB,EA6DAf,EAAA,UAAA,QAAA,SAAQgB,EAA0BC,EAAoC,CAAtE,IAAAV,EAAA,KACE,OAAAU,EAAcC,GAAeD,CAAW,EAEjC,IAAIA,EAAkB,SAACE,EAASC,EAAM,CAC3C,IAAMZ,EAAa,IAAIE,GAAkB,CACvC,KAAM,SAACW,EAAK,CACV,GAAI,CACFL,EAAKK,CAAK,QACHN,EAAK,CACZK,EAAOL,CAAG,EACVP,EAAW,YAAW,EAE1B,EACA,MAAOY,EACP,SAAUD,EACX,EACDZ,EAAK,UAAUC,CAAU,CAC3B,CAAC,CACH,EAGUR,EAAA,UAAA,WAAV,SAAqBQ,EAA2B,OAC9C,OAAOI,EAAA,KAAK,UAAM,MAAAA,IAAA,OAAA,OAAAA,EAAE,UAAUJ,CAAU,CAC1C,EAOAR,EAAA,UAACG,EAAiB,EAAlB,UAAA,CACE,OAAO,IACT,EA4FAH,EAAA,UAAA,KAAA,UAAA,SAAKsB,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EACH,OAAOC,GAAcF,CAAU,EAAE,IAAI,CACvC,EA6BAtB,EAAA,UAAA,UAAA,SAAUiB,EAAoC,CAA9C,IAAAV,EAAA,KACE,OAAAU,EAAcC,GAAeD,CAAW,EAEjC,IAAIA,EAAY,SAACE,EAASC,EAAM,CACrC,IAAIC,EACJd,EAAK,UACH,SAACkB,EAAI,CAAK,OAACJ,EAAQI,CAAT,EACV,SAACV,EAAQ,CAAK,OAAAK,EAAOL,CAAG,CAAV,EACd,UAAA,CAAM,OAAAI,EAAQE,CAAK,CAAb,CAAc,CAExB,CAAC,CACH,EA1aOrB,EAAA,OAAkC,SAAIC,EAAwD,CACnG,OAAO,IAAID,EAAcC,CAAS,CACpC,EAyaFD,GA9cA,EAudA,SAAS0B,GAAeC,EAA+C,OACrE,OAAOC,EAAAD,GAAW,KAAXA,EAAeE,GAAO,WAAO,MAAAD,IAAA,OAAAA,EAAI,OAC1C,CAEA,SAASE,GAAcC,EAAU,CAC/B,OAAOA,GAASC,EAAWD,EAAM,IAAI,GAAKC,EAAWD,EAAM,KAAK,GAAKC,EAAWD,EAAM,QAAQ,CAChG,CAEA,SAASE,GAAgBF,EAAU,CACjC,OAAQA,GAASA,aAAiBG,IAAgBJ,GAAWC,CAAK,GAAKI,GAAeJ,CAAK,CAC7F,CCzeM,SAAUK,GAAQC,EAAW,CACjC,OAAOC,EAAWD,GAAM,KAAA,OAANA,EAAQ,IAAI,CAChC,CAMM,SAAUE,EACdC,EAAqF,CAErF,OAAO,SAACH,EAAqB,CAC3B,GAAID,GAAQC,CAAM,EAChB,OAAOA,EAAO,KAAK,SAA+BI,EAA2B,CAC3E,GAAI,CACF,OAAOD,EAAKC,EAAc,IAAI,QACvBC,EAAK,CACZ,KAAK,MAAMA,CAAG,EAElB,CAAC,EAEH,MAAM,IAAI,UAAU,wCAAwC,CAC9D,CACF,CCjBM,SAAUC,EACdC,EACAC,EACAC,EACAC,EACAC,EAAuB,CAEvB,OAAO,IAAIC,GAAmBL,EAAaC,EAAQC,EAAYC,EAASC,CAAU,CACpF,CAMA,IAAAC,GAAA,SAAAC,EAAA,CAA2CC,EAAAF,EAAAC,CAAA,EAiBzC,SAAAD,EACEL,EACAC,EACAC,EACAC,EACQC,EACAI,EAAiC,CAN3C,IAAAC,EAoBEH,EAAA,KAAA,KAAMN,CAAW,GAAC,KAfV,OAAAS,EAAA,WAAAL,EACAK,EAAA,kBAAAD,EAeRC,EAAK,MAAQR,EACT,SAAuCS,EAAQ,CAC7C,GAAI,CACFT,EAAOS,CAAK,QACLC,EAAK,CACZX,EAAY,MAAMW,CAAG,EAEzB,EACAL,EAAA,UAAM,MACVG,EAAK,OAASN,EACV,SAAuCQ,EAAQ,CAC7C,GAAI,CACFR,EAAQQ,CAAG,QACJA,EAAK,CAEZX,EAAY,MAAMW,CAAG,UAGrB,KAAK,YAAW,EAEpB,EACAL,EAAA,UAAM,OACVG,EAAK,UAAYP,EACb,UAAA,CACE,GAAI,CACFA,EAAU,QACHS,EAAK,CAEZX,EAAY,MAAMW,CAAG,UAGrB,KAAK,YAAW,EAEpB,EACAL,EAAA,UAAM,WACZ,CAEA,OAAAD,EAAA,UAAA,YAAA,UAAA,OACE,GAAI,CAAC,KAAK,mBAAqB,KAAK,kBAAiB,EAAI,CAC/C,IAAAO,EAAW,KAAI,OACvBN,EAAA,UAAM,YAAW,KAAA,IAAA,EAEjB,CAACM,KAAUC,EAAA,KAAK,cAAU,MAAAA,IAAA,QAAAA,EAAA,KAAf,IAAI,GAEnB,EACFR,CAAA,EAnF2CS,EAAU,ECd9C,IAAMC,GAAiD,CAG5D,SAAA,SAASC,EAAQ,CACf,IAAIC,EAAU,sBACVC,EAAkD,qBAC9CC,EAAaJ,GAAsB,SACvCI,IACFF,EAAUE,EAAS,sBACnBD,EAASC,EAAS,sBAEpB,IAAMC,EAASH,EAAQ,SAACI,EAAS,CAI/BH,EAAS,OACTF,EAASK,CAAS,CACpB,CAAC,EACD,OAAO,IAAIC,GAAa,UAAA,CAAM,OAAAJ,GAAM,KAAA,OAANA,EAASE,CAAM,CAAf,CAAgB,CAChD,EACA,sBAAqB,UAAA,SAACG,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EACZ,IAAAL,EAAaJ,GAAsB,SAC3C,QAAQI,GAAQ,KAAA,OAARA,EAAU,wBAAyB,uBAAsB,MAAA,OAAAM,EAAA,CAAA,EAAAC,EAAIH,CAAI,CAAA,CAAA,CAC3E,EACA,qBAAoB,UAAA,SAACA,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EACX,IAAAL,EAAaJ,GAAsB,SAC3C,QAAQI,GAAQ,KAAA,OAARA,EAAU,uBAAwB,sBAAqB,MAAA,OAAAM,EAAA,CAAA,EAAAC,EAAIH,CAAI,CAAA,CAAA,CACzE,EACA,SAAU,QCrBL,IAAMI,GAAuDC,GAClE,SAACC,EAAM,CACL,OAAA,UAAoC,CAClCA,EAAO,IAAI,EACX,KAAK,KAAO,0BACZ,KAAK,QAAU,qBACjB,CAJA,CAIC,ECXL,IAAAC,EAAA,SAAAC,EAAA,CAAgCC,EAAAF,EAAAC,CAAA,EAwB9B,SAAAD,GAAA,CAAA,IAAAG,EAEEF,EAAA,KAAA,IAAA,GAAO,KAzBT,OAAAE,EAAA,OAAS,GAEDA,EAAA,iBAAyC,KAGjDA,EAAA,UAA2B,CAAA,EAE3BA,EAAA,UAAY,GAEZA,EAAA,SAAW,GAEXA,EAAA,YAAmB,MAenB,CAGA,OAAAH,EAAA,UAAA,KAAA,SAAQI,EAAwB,CAC9B,IAAMC,EAAU,IAAIC,GAAiB,KAAM,IAAI,EAC/C,OAAAD,EAAQ,SAAWD,EACZC,CACT,EAGUL,EAAA,UAAA,eAAV,UAAA,CACE,GAAI,KAAK,OACP,MAAM,IAAIO,EAEd,EAEAP,EAAA,UAAA,KAAA,SAAKQ,EAAQ,CAAb,IAAAL,EAAA,KACEM,GAAa,UAAA,SAEX,GADAN,EAAK,eAAc,EACf,CAACA,EAAK,UAAW,CACdA,EAAK,mBACRA,EAAK,iBAAmB,MAAM,KAAKA,EAAK,SAAS,OAEnD,QAAuBO,EAAAC,EAAAR,EAAK,gBAAgB,EAAAS,EAAAF,EAAA,KAAA,EAAA,CAAAE,EAAA,KAAAA,EAAAF,EAAA,KAAA,EAAE,CAAzC,IAAMG,EAAQD,EAAA,MACjBC,EAAS,KAAKL,CAAK,qGAGzB,CAAC,CACH,EAEAR,EAAA,UAAA,MAAA,SAAMc,EAAQ,CAAd,IAAAX,EAAA,KACEM,GAAa,UAAA,CAEX,GADAN,EAAK,eAAc,EACf,CAACA,EAAK,UAAW,CACnBA,EAAK,SAAWA,EAAK,UAAY,GACjCA,EAAK,YAAcW,EAEnB,QADQC,EAAcZ,EAAI,UACnBY,EAAU,QACfA,EAAU,MAAK,EAAI,MAAMD,CAAG,EAGlC,CAAC,CACH,EAEAd,EAAA,UAAA,SAAA,UAAA,CAAA,IAAAG,EAAA,KACEM,GAAa,UAAA,CAEX,GADAN,EAAK,eAAc,EACf,CAACA,EAAK,UAAW,CACnBA,EAAK,UAAY,GAEjB,QADQY,EAAcZ,EAAI,UACnBY,EAAU,QACfA,EAAU,MAAK,EAAI,SAAQ,EAGjC,CAAC,CACH,EAEAf,EAAA,UAAA,YAAA,UAAA,CACE,KAAK,UAAY,KAAK,OAAS,GAC/B,KAAK,UAAY,KAAK,iBAAmB,IAC3C,EAEA,OAAA,eAAIA,EAAA,UAAA,WAAQ,KAAZ,UAAA,OACE,QAAOgB,EAAA,KAAK,aAAS,MAAAA,IAAA,OAAA,OAAAA,EAAE,QAAS,CAClC,kCAGUhB,EAAA,UAAA,cAAV,SAAwBiB,EAAyB,CAC/C,YAAK,eAAc,EACZhB,EAAA,UAAM,cAAa,KAAA,KAACgB,CAAU,CACvC,EAGUjB,EAAA,UAAA,WAAV,SAAqBiB,EAAyB,CAC5C,YAAK,eAAc,EACnB,KAAK,wBAAwBA,CAAU,EAChC,KAAK,gBAAgBA,CAAU,CACxC,EAGUjB,EAAA,UAAA,gBAAV,SAA0BiB,EAA2B,CAArD,IAAAd,EAAA,KACQa,EAAqC,KAAnCE,EAAQF,EAAA,SAAEG,EAASH,EAAA,UAAED,EAASC,EAAA,UACtC,OAAIE,GAAYC,EACPC,IAET,KAAK,iBAAmB,KACxBL,EAAU,KAAKE,CAAU,EAClB,IAAII,GAAa,UAAA,CACtBlB,EAAK,iBAAmB,KACxBmB,GAAUP,EAAWE,CAAU,CACjC,CAAC,EACH,EAGUjB,EAAA,UAAA,wBAAV,SAAkCiB,EAA2B,CACrD,IAAAD,EAAuC,KAArCE,EAAQF,EAAA,SAAEO,EAAWP,EAAA,YAAEG,EAASH,EAAA,UACpCE,EACFD,EAAW,MAAMM,CAAW,EACnBJ,GACTF,EAAW,SAAQ,CAEvB,EAQAjB,EAAA,UAAA,aAAA,UAAA,CACE,IAAMwB,EAAkB,IAAIC,EAC5B,OAAAD,EAAW,OAAS,KACbA,CACT,EAxHOxB,EAAA,OAAkC,SAAI0B,EAA0BC,EAAqB,CAC1F,OAAO,IAAIrB,GAAoBoB,EAAaC,CAAM,CACpD,EAuHF3B,GA7IgCyB,CAAU,EAkJ1C,IAAAG,GAAA,SAAAC,EAAA,CAAyCC,EAAAF,EAAAC,CAAA,EACvC,SAAAD,EAESG,EACPC,EAAsB,CAHxB,IAAAC,EAKEJ,EAAA,KAAA,IAAA,GAAO,KAHA,OAAAI,EAAA,YAAAF,EAIPE,EAAK,OAASD,GAChB,CAEA,OAAAJ,EAAA,UAAA,KAAA,SAAKM,EAAQ,UACXC,GAAAC,EAAA,KAAK,eAAW,MAAAA,IAAA,OAAA,OAAAA,EAAE,QAAI,MAAAD,IAAA,QAAAA,EAAA,KAAAC,EAAGF,CAAK,CAChC,EAEAN,EAAA,UAAA,MAAA,SAAMS,EAAQ,UACZF,GAAAC,EAAA,KAAK,eAAW,MAAAA,IAAA,OAAA,OAAAA,EAAE,SAAK,MAAAD,IAAA,QAAAA,EAAA,KAAAC,EAAGC,CAAG,CAC/B,EAEAT,EAAA,UAAA,SAAA,UAAA,UACEO,GAAAC,EAAA,KAAK,eAAW,MAAAA,IAAA,OAAA,OAAAA,EAAE,YAAQ,MAAAD,IAAA,QAAAA,EAAA,KAAAC,CAAA,CAC5B,EAGUR,EAAA,UAAA,WAAV,SAAqBU,EAAyB,SAC5C,OAAOH,GAAAC,EAAA,KAAK,UAAM,MAAAA,IAAA,OAAA,OAAAA,EAAE,UAAUE,CAAU,KAAC,MAAAH,IAAA,OAAAA,EAAII,EAC/C,EACFX,CAAA,EA1ByCY,CAAO,ECxJhD,IAAAC,GAAA,SAAAC,EAAA,CAAwCC,EAAAF,EAAAC,CAAA,EACtC,SAAAD,EAAoBG,EAAS,CAA7B,IAAAC,EACEH,EAAA,KAAA,IAAA,GAAO,KADW,OAAAG,EAAA,OAAAD,GAEpB,CAEA,cAAA,eAAIH,EAAA,UAAA,QAAK,KAAT,UAAA,CACE,OAAO,KAAK,SAAQ,CACtB,kCAGUA,EAAA,UAAA,WAAV,SAAqBK,EAAyB,CAC5C,IAAMC,EAAeL,EAAA,UAAM,WAAU,KAAA,KAACI,CAAU,EAChD,OAACC,EAAa,QAAUD,EAAW,KAAK,KAAK,MAAM,EAC5CC,CACT,EAEAN,EAAA,UAAA,SAAA,UAAA,CACQ,IAAAO,EAAoC,KAAlCC,EAAQD,EAAA,SAAEE,EAAWF,EAAA,YAAEJ,EAAMI,EAAA,OACrC,GAAIC,EACF,MAAMC,EAER,YAAK,eAAc,EACZN,CACT,EAEAH,EAAA,UAAA,KAAA,SAAKU,EAAQ,CACXT,EAAA,UAAM,KAAI,KAAA,KAAE,KAAK,OAASS,CAAM,CAClC,EACFV,CAAA,EA5BwCW,CAAO,ECJxC,IAAMC,GAA+C,CAC1D,IAAG,UAAA,CAGD,OAAQA,GAAsB,UAAY,MAAM,IAAG,CACrD,EACA,SAAU,QCwBZ,IAAAC,GAAA,SAAAC,EAAA,CAAsCC,EAAAF,EAAAC,CAAA,EAUpC,SAAAD,EACUG,EACAC,EACAC,EAA6D,CAF7DF,IAAA,SAAAA,EAAA,KACAC,IAAA,SAAAA,EAAA,KACAC,IAAA,SAAAA,EAAAC,IAHV,IAAAC,EAKEN,EAAA,KAAA,IAAA,GAAO,KAJC,OAAAM,EAAA,YAAAJ,EACAI,EAAA,YAAAH,EACAG,EAAA,mBAAAF,EAZFE,EAAA,QAA0B,CAAA,EAC1BA,EAAA,oBAAsB,GAc5BA,EAAK,oBAAsBH,IAAgB,IAC3CG,EAAK,YAAc,KAAK,IAAI,EAAGJ,CAAW,EAC1CI,EAAK,YAAc,KAAK,IAAI,EAAGH,CAAW,GAC5C,CAEA,OAAAJ,EAAA,UAAA,KAAA,SAAKQ,EAAQ,CACL,IAAAC,EAA+E,KAA7EC,EAASD,EAAA,UAAEE,EAAOF,EAAA,QAAEG,EAAmBH,EAAA,oBAAEJ,EAAkBI,EAAA,mBAAEL,EAAWK,EAAA,YAC3EC,IACHC,EAAQ,KAAKH,CAAK,EAClB,CAACI,GAAuBD,EAAQ,KAAKN,EAAmB,IAAG,EAAKD,CAAW,GAE7E,KAAK,YAAW,EAChBH,EAAA,UAAM,KAAI,KAAA,KAACO,CAAK,CAClB,EAGUR,EAAA,UAAA,WAAV,SAAqBa,EAAyB,CAC5C,KAAK,eAAc,EACnB,KAAK,YAAW,EAQhB,QANMC,EAAe,KAAK,gBAAgBD,CAAU,EAE9CJ,EAAmC,KAAjCG,EAAmBH,EAAA,oBAAEE,EAAOF,EAAA,QAG9BM,EAAOJ,EAAQ,MAAK,EACjBK,EAAI,EAAGA,EAAID,EAAK,QAAU,CAACF,EAAW,OAAQG,GAAKJ,EAAsB,EAAI,EACpFC,EAAW,KAAKE,EAAKC,CAAC,CAAM,EAG9B,YAAK,wBAAwBH,CAAU,EAEhCC,CACT,EAEQd,EAAA,UAAA,YAAR,UAAA,CACQ,IAAAS,EAAoE,KAAlEN,EAAWM,EAAA,YAAEJ,EAAkBI,EAAA,mBAAEE,EAAOF,EAAA,QAAEG,EAAmBH,EAAA,oBAK/DQ,GAAsBL,EAAsB,EAAI,GAAKT,EAK3D,GAJAA,EAAc,KAAYc,EAAqBN,EAAQ,QAAUA,EAAQ,OAAO,EAAGA,EAAQ,OAASM,CAAkB,EAIlH,CAACL,EAAqB,CAKxB,QAJMM,EAAMb,EAAmB,IAAG,EAC9Bc,EAAO,EAGFH,EAAI,EAAGA,EAAIL,EAAQ,QAAWA,EAAQK,CAAC,GAAgBE,EAAKF,GAAK,EACxEG,EAAOH,EAETG,GAAQR,EAAQ,OAAO,EAAGQ,EAAO,CAAC,EAEtC,EACFnB,CAAA,EAzEsCoB,CAAO,EClB7C,IAAAC,GAAA,SAAAC,EAAA,CAA+BC,EAAAF,EAAAC,CAAA,EAC7B,SAAAD,EAAYG,EAAsBC,EAAmD,QACnFH,EAAA,KAAA,IAAA,GAAO,IACT,CAWO,OAAAD,EAAA,UAAA,SAAP,SAAgBK,EAAWC,EAAiB,CAAjB,OAAAA,IAAA,SAAAA,EAAA,GAClB,IACT,EACFN,CAAA,EAjB+BO,EAAY,ECHpC,IAAMC,GAAqC,CAGhD,YAAA,SAAYC,EAAqBC,EAAgB,SAAEC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,EAAA,CAAA,EAAA,UAAAA,CAAA,EACzC,IAAAC,EAAaL,GAAgB,SACrC,OAAIK,GAAQ,MAARA,EAAU,YACLA,EAAS,YAAW,MAApBA,EAAQC,EAAA,CAAaL,EAASC,CAAO,EAAAK,EAAKJ,CAAI,CAAA,CAAA,EAEhD,YAAW,MAAA,OAAAG,EAAA,CAACL,EAASC,CAAO,EAAAK,EAAKJ,CAAI,CAAA,CAAA,CAC9C,EACA,cAAA,SAAcK,EAAM,CACV,IAAAH,EAAaL,GAAgB,SACrC,QAAQK,GAAQ,KAAA,OAARA,EAAU,gBAAiB,eAAeG,CAAa,CACjE,EACA,SAAU,QCrBZ,IAAAC,GAAA,SAAAC,EAAA,CAAoCC,EAAAF,EAAAC,CAAA,EAOlC,SAAAD,EAAsBG,EAAqCC,EAAmD,CAA9G,IAAAC,EACEJ,EAAA,KAAA,KAAME,EAAWC,CAAI,GAAC,KADF,OAAAC,EAAA,UAAAF,EAAqCE,EAAA,KAAAD,EAFjDC,EAAA,QAAmB,IAI7B,CAEO,OAAAL,EAAA,UAAA,SAAP,SAAgBM,EAAWC,EAAiB,OAC1C,GADyBA,IAAA,SAAAA,EAAA,GACrB,KAAK,OACP,OAAO,KAIT,KAAK,MAAQD,EAEb,IAAME,EAAK,KAAK,GACVL,EAAY,KAAK,UAuBvB,OAAIK,GAAM,OACR,KAAK,GAAK,KAAK,eAAeL,EAAWK,EAAID,CAAK,GAKpD,KAAK,QAAU,GAEf,KAAK,MAAQA,EAEb,KAAK,IAAKE,EAAA,KAAK,MAAE,MAAAA,IAAA,OAAAA,EAAI,KAAK,eAAeN,EAAW,KAAK,GAAII,CAAK,EAE3D,IACT,EAEUP,EAAA,UAAA,eAAV,SAAyBG,EAA2BO,EAAmBH,EAAiB,CAAjB,OAAAA,IAAA,SAAAA,EAAA,GAC9DI,GAAiB,YAAYR,EAAU,MAAM,KAAKA,EAAW,IAAI,EAAGI,CAAK,CAClF,EAEUP,EAAA,UAAA,eAAV,SAAyBY,EAA4BJ,EAAkBD,EAAwB,CAE7F,GAFqEA,IAAA,SAAAA,EAAA,GAEjEA,GAAS,MAAQ,KAAK,QAAUA,GAAS,KAAK,UAAY,GAC5D,OAAOC,EAILA,GAAM,MACRG,GAAiB,cAAcH,CAAE,CAIrC,EAMOR,EAAA,UAAA,QAAP,SAAeM,EAAUC,EAAa,CACpC,GAAI,KAAK,OACP,OAAO,IAAI,MAAM,8BAA8B,EAGjD,KAAK,QAAU,GACf,IAAMM,EAAQ,KAAK,SAASP,EAAOC,CAAK,EACxC,GAAIM,EACF,OAAOA,EACE,KAAK,UAAY,IAAS,KAAK,IAAM,OAc9C,KAAK,GAAK,KAAK,eAAe,KAAK,UAAW,KAAK,GAAI,IAAI,EAE/D,EAEUb,EAAA,UAAA,SAAV,SAAmBM,EAAUQ,EAAc,CACzC,IAAIC,EAAmB,GACnBC,EACJ,GAAI,CACF,KAAK,KAAKV,CAAK,QACRW,EAAG,CACVF,EAAU,GAIVC,EAAaC,GAAQ,IAAI,MAAM,oCAAoC,EAErE,GAAIF,EACF,YAAK,YAAW,EACTC,CAEX,EAEAhB,EAAA,UAAA,YAAA,UAAA,CACE,GAAI,CAAC,KAAK,OAAQ,CACV,IAAAS,EAAoB,KAAlBD,EAAEC,EAAA,GAAEN,EAASM,EAAA,UACbS,EAAYf,EAAS,QAE7B,KAAK,KAAO,KAAK,MAAQ,KAAK,UAAY,KAC1C,KAAK,QAAU,GAEfgB,GAAUD,EAAS,IAAI,EACnBV,GAAM,OACR,KAAK,GAAK,KAAK,eAAeL,EAAWK,EAAI,IAAI,GAGnD,KAAK,MAAQ,KACbP,EAAA,UAAM,YAAW,KAAA,IAAA,EAErB,EACFD,CAAA,EA9IoCoB,EAAM,ECgB1C,IAAAC,GAAA,UAAA,CAGE,SAAAA,EAAoBC,EAAoCC,EAAiC,CAAjCA,IAAA,SAAAA,EAAoBF,EAAU,KAAlE,KAAA,oBAAAC,EAClB,KAAK,IAAMC,CACb,CA6BO,OAAAF,EAAA,UAAA,SAAP,SAAmBG,EAAqDC,EAAmBC,EAAS,CAA5B,OAAAD,IAAA,SAAAA,EAAA,GAC/D,IAAI,KAAK,oBAAuB,KAAMD,CAAI,EAAE,SAASE,EAAOD,CAAK,CAC1E,EAnCcJ,EAAA,IAAoBM,GAAsB,IAoC1DN,GArCA,ECnBA,IAAAO,GAAA,SAAAC,EAAA,CAAoCC,EAAAF,EAAAC,CAAA,EAkBlC,SAAAD,EAAYG,EAAgCC,EAAiC,CAAjCA,IAAA,SAAAA,EAAoBC,GAAU,KAA1E,IAAAC,EACEL,EAAA,KAAA,KAAME,EAAiBC,CAAG,GAAC,KAlBtB,OAAAE,EAAA,QAAmC,CAAA,EAOnCA,EAAA,QAAmB,IAY1B,CAEO,OAAAN,EAAA,UAAA,MAAP,SAAaO,EAAwB,CAC3B,IAAAC,EAAY,KAAI,QAExB,GAAI,KAAK,QAAS,CAChBA,EAAQ,KAAKD,CAAM,EACnB,OAGF,IAAIE,EACJ,KAAK,QAAU,GAEf,EACE,IAAKA,EAAQF,EAAO,QAAQA,EAAO,MAAOA,EAAO,KAAK,EACpD,YAEMA,EAASC,EAAQ,MAAK,GAIhC,GAFA,KAAK,QAAU,GAEXC,EAAO,CACT,KAAQF,EAASC,EAAQ,MAAK,GAC5BD,EAAO,YAAW,EAEpB,MAAME,EAEV,EACFT,CAAA,EAhDoCK,EAAS,EC6CtC,IAAMK,GAAiB,IAAIC,GAAeC,EAAW,EAK/CC,GAAQH,GCjDrB,IAAAI,GAAA,SAAAC,EAAA,CAA6CC,EAAAF,EAAAC,CAAA,EAC3C,SAAAD,EAAsBG,EAA8CC,EAAmD,CAAvH,IAAAC,EACEJ,EAAA,KAAA,KAAME,EAAWC,CAAI,GAAC,KADF,OAAAC,EAAA,UAAAF,EAA8CE,EAAA,KAAAD,GAEpE,CAEU,OAAAJ,EAAA,UAAA,eAAV,SAAyBG,EAAoCG,EAAkBC,EAAiB,CAE9F,OAF6EA,IAAA,SAAAA,EAAA,GAEzEA,IAAU,MAAQA,EAAQ,EACrBN,EAAA,UAAM,eAAc,KAAA,KAACE,EAAWG,EAAIC,CAAK,GAGlDJ,EAAU,QAAQ,KAAK,IAAI,EAIpBA,EAAU,aAAeA,EAAU,WAAaK,GAAuB,sBAAsB,UAAA,CAAM,OAAAL,EAAU,MAAM,MAAS,CAAzB,CAA0B,GACtI,EAEUH,EAAA,UAAA,eAAV,SAAyBG,EAAoCG,EAAkBC,EAAiB,OAI9F,GAJ6EA,IAAA,SAAAA,EAAA,GAIzEA,GAAS,KAAOA,EAAQ,EAAI,KAAK,MAAQ,EAC3C,OAAON,EAAA,UAAM,eAAc,KAAA,KAACE,EAAWG,EAAIC,CAAK,EAK1C,IAAAE,EAAYN,EAAS,QACzBG,GAAM,QAAQI,EAAAD,EAAQA,EAAQ,OAAS,CAAC,KAAC,MAAAC,IAAA,OAAA,OAAAA,EAAE,MAAOJ,IACpDE,GAAuB,qBAAqBF,CAAY,EACxDH,EAAU,WAAa,OAI3B,EACFH,CAAA,EApC6CW,EAAW,ECHxD,IAAAC,GAAA,SAAAC,EAAA,CAA6CC,EAAAF,EAAAC,CAAA,EAA7C,SAAAD,GAAA,+CAkCA,CAjCS,OAAAA,EAAA,UAAA,MAAP,SAAaG,EAAyB,CACpC,KAAK,QAAU,GAUf,IAAMC,EAAU,KAAK,WACrB,KAAK,WAAa,OAEV,IAAAC,EAAY,KAAI,QACpBC,EACJH,EAASA,GAAUE,EAAQ,MAAK,EAEhC,EACE,IAAKC,EAAQH,EAAO,QAAQA,EAAO,MAAOA,EAAO,KAAK,EACpD,aAEMA,EAASE,EAAQ,CAAC,IAAMF,EAAO,KAAOC,GAAWC,EAAQ,MAAK,GAIxE,GAFA,KAAK,QAAU,GAEXC,EAAO,CACT,MAAQH,EAASE,EAAQ,CAAC,IAAMF,EAAO,KAAOC,GAAWC,EAAQ,MAAK,GACpEF,EAAO,YAAW,EAEpB,MAAMG,EAEV,EACFN,CAAA,EAlC6CO,EAAc,ECgCpD,IAAMC,GAA0B,IAAIC,GAAwBC,EAAoB,EC8BhF,IAAMC,GAAQ,IAAIC,EAAkB,SAACC,EAAU,CAAK,OAAAA,EAAW,SAAQ,CAAnB,CAAqB,EC9D1E,SAAUC,GAAYC,EAAU,CACpC,OAAOA,GAASC,EAAWD,EAAM,QAAQ,CAC3C,CCDA,SAASE,GAAQC,EAAQ,CACvB,OAAOA,EAAIA,EAAI,OAAS,CAAC,CAC3B,CAEM,SAAUC,GAAkBC,EAAW,CAC3C,OAAOC,EAAWJ,GAAKG,CAAI,CAAC,EAAIA,EAAK,IAAG,EAAK,MAC/C,CAEM,SAAUE,GAAaF,EAAW,CACtC,OAAOG,GAAYN,GAAKG,CAAI,CAAC,EAAIA,EAAK,IAAG,EAAK,MAChD,CAEM,SAAUI,GAAUJ,EAAaK,EAAoB,CACzD,OAAO,OAAOR,GAAKG,CAAI,GAAM,SAAWA,EAAK,IAAG,EAAMK,CACxD,CClBO,IAAMC,GAAe,SAAIC,EAAM,CAAwB,OAAAA,GAAK,OAAOA,EAAE,QAAW,UAAY,OAAOA,GAAM,UAAlD,ECMxD,SAAUC,GAAUC,EAAU,CAClC,OAAOC,EAAWD,GAAK,KAAA,OAALA,EAAO,IAAI,CAC/B,CCHM,SAAUE,GAAoBC,EAAU,CAC5C,OAAOC,EAAWD,EAAME,EAAiB,CAAC,CAC5C,CCLM,SAAUC,GAAmBC,EAAQ,CACzC,OAAO,OAAO,eAAiBC,EAAWD,GAAG,KAAA,OAAHA,EAAM,OAAO,aAAa,CAAC,CACvE,CCAM,SAAUE,GAAiCC,EAAU,CAEzD,OAAO,IAAI,UACT,iBACEA,IAAU,MAAQ,OAAOA,GAAU,SAAW,oBAAsB,IAAIA,EAAK,KAAG,0HACwC,CAE9H,CCXM,SAAUC,IAAiB,CAC/B,OAAI,OAAO,QAAW,YAAc,CAAC,OAAO,SACnC,aAGF,OAAO,QAChB,CAEO,IAAMC,GAAWD,GAAiB,ECJnC,SAAUE,GAAWC,EAAU,CACnC,OAAOC,EAAWD,GAAK,KAAA,OAALA,EAAQE,EAAe,CAAC,CAC5C,CCHM,SAAiBC,GAAsCC,EAAqC,mGAC1FC,EAASD,EAAe,UAAS,2DAGX,MAAA,CAAA,EAAAE,GAAMD,EAAO,KAAI,CAAE,CAAA,gBAArCE,EAAkBC,EAAA,KAAA,EAAhBC,EAAKF,EAAA,MAAEG,EAAIH,EAAA,KACfG,iBAAA,CAAA,EAAA,CAAA,SACF,MAAA,CAAA,EAAAF,EAAA,KAAA,CAAA,qBAEIC,CAAM,CAAA,SAAZ,MAAA,CAAA,EAAAD,EAAA,KAAA,CAAA,SAAA,OAAAA,EAAA,KAAA,mCAGF,OAAAH,EAAO,YAAW,6BAIhB,SAAUM,GAAwBC,EAAQ,CAG9C,OAAOC,EAAWD,GAAG,KAAA,OAAHA,EAAK,SAAS,CAClC,CCPM,SAAUE,EAAaC,EAAyB,CACpD,GAAIA,aAAiBC,EACnB,OAAOD,EAET,GAAIA,GAAS,KAAM,CACjB,GAAIE,GAAoBF,CAAK,EAC3B,OAAOG,GAAsBH,CAAK,EAEpC,GAAII,GAAYJ,CAAK,EACnB,OAAOK,GAAcL,CAAK,EAE5B,GAAIM,GAAUN,CAAK,EACjB,OAAOO,GAAYP,CAAK,EAE1B,GAAIQ,GAAgBR,CAAK,EACvB,OAAOS,GAAkBT,CAAK,EAEhC,GAAIU,GAAWV,CAAK,EAClB,OAAOW,GAAaX,CAAK,EAE3B,GAAIY,GAAqBZ,CAAK,EAC5B,OAAOa,GAAuBb,CAAK,EAIvC,MAAMc,GAAiCd,CAAK,CAC9C,CAMM,SAAUG,GAAyBY,EAAQ,CAC/C,OAAO,IAAId,EAAW,SAACe,EAAyB,CAC9C,IAAMC,EAAMF,EAAIG,EAAiB,EAAC,EAClC,GAAIC,EAAWF,EAAI,SAAS,EAC1B,OAAOA,EAAI,UAAUD,CAAU,EAGjC,MAAM,IAAI,UAAU,gEAAgE,CACtF,CAAC,CACH,CASM,SAAUX,GAAiBe,EAAmB,CAClD,OAAO,IAAInB,EAAW,SAACe,EAAyB,CAU9C,QAASK,EAAI,EAAGA,EAAID,EAAM,QAAU,CAACJ,EAAW,OAAQK,IACtDL,EAAW,KAAKI,EAAMC,CAAC,CAAC,EAE1BL,EAAW,SAAQ,CACrB,CAAC,CACH,CAEM,SAAUT,GAAee,EAAuB,CACpD,OAAO,IAAIrB,EAAW,SAACe,EAAyB,CAC9CM,EACG,KACC,SAACC,EAAK,CACCP,EAAW,SACdA,EAAW,KAAKO,CAAK,EACrBP,EAAW,SAAQ,EAEvB,EACA,SAACQ,EAAQ,CAAK,OAAAR,EAAW,MAAMQ,CAAG,CAApB,CAAqB,EAEpC,KAAK,KAAMC,EAAoB,CACpC,CAAC,CACH,CAEM,SAAUd,GAAgBe,EAAqB,CACnD,OAAO,IAAIzB,EAAW,SAACe,EAAyB,aAC9C,QAAoBW,EAAAC,EAAAF,CAAQ,EAAAG,EAAAF,EAAA,KAAA,EAAA,CAAAE,EAAA,KAAAA,EAAAF,EAAA,KAAA,EAAE,CAAzB,IAAMJ,EAAKM,EAAA,MAEd,GADAb,EAAW,KAAKO,CAAK,EACjBP,EAAW,OACb,yGAGJA,EAAW,SAAQ,CACrB,CAAC,CACH,CAEM,SAAUP,GAAqBqB,EAA+B,CAClE,OAAO,IAAI7B,EAAW,SAACe,EAAyB,CAC9Ce,GAAQD,EAAed,CAAU,EAAE,MAAM,SAACQ,EAAG,CAAK,OAAAR,EAAW,MAAMQ,CAAG,CAApB,CAAqB,CACzE,CAAC,CACH,CAEM,SAAUX,GAA0BmB,EAAqC,CAC7E,OAAOvB,GAAkBwB,GAAmCD,CAAc,CAAC,CAC7E,CAEA,SAAeD,GAAWD,EAAiCd,EAAyB,uIACxDkB,EAAAC,GAAAL,CAAa,gFAIrC,GAJeP,EAAKa,EAAA,MACpBpB,EAAW,KAAKO,CAAK,EAGjBP,EAAW,OACb,MAAA,CAAA,CAAA,6RAGJ,OAAAA,EAAW,SAAQ,WChHf,SAAUqB,EACdC,EACAC,EACAC,EACAC,EACAC,EAAc,CADdD,IAAA,SAAAA,EAAA,GACAC,IAAA,SAAAA,EAAA,IAEA,IAAMC,EAAuBJ,EAAU,SAAS,UAAA,CAC9CC,EAAI,EACAE,EACFJ,EAAmB,IAAI,KAAK,SAAS,KAAMG,CAAK,CAAC,EAEjD,KAAK,YAAW,CAEpB,EAAGA,CAAK,EAIR,GAFAH,EAAmB,IAAIK,CAAoB,EAEvC,CAACD,EAKH,OAAOC,CAEX,CCeM,SAAUC,GAAaC,EAA0BC,EAAS,CAAT,OAAAA,IAAA,SAAAA,EAAA,GAC9CC,EAAQ,SAACC,EAAQC,EAAU,CAChCD,EAAO,UACLE,EACED,EACA,SAACE,EAAK,CAAK,OAAAC,EAAgBH,EAAYJ,EAAW,UAAA,CAAM,OAAAI,EAAW,KAAKE,CAAK,CAArB,EAAwBL,CAAK,CAA1E,EACX,UAAA,CAAM,OAAAM,EAAgBH,EAAYJ,EAAW,UAAA,CAAM,OAAAI,EAAW,SAAQ,CAAnB,EAAuBH,CAAK,CAAzE,EACN,SAACO,EAAG,CAAK,OAAAD,EAAgBH,EAAYJ,EAAW,UAAA,CAAM,OAAAI,EAAW,MAAMI,CAAG,CAApB,EAAuBP,CAAK,CAAzE,CAA0E,CACpF,CAEL,CAAC,CACH,CCPM,SAAUQ,GAAeC,EAA0BC,EAAiB,CAAjB,OAAAA,IAAA,SAAAA,EAAA,GAChDC,EAAQ,SAACC,EAAQC,EAAU,CAChCA,EAAW,IAAIJ,EAAU,SAAS,UAAA,CAAM,OAAAG,EAAO,UAAUC,CAAU,CAA3B,EAA8BH,CAAK,CAAC,CAC9E,CAAC,CACH,CC7DM,SAAUI,GAAsBC,EAA6BC,EAAwB,CACzF,OAAOC,EAAUF,CAAK,EAAE,KAAKG,GAAYF,CAAS,EAAGG,GAAUH,CAAS,CAAC,CAC3E,CCFM,SAAUI,GAAmBC,EAAuBC,EAAwB,CAChF,OAAOC,EAAUF,CAAK,EAAE,KAAKG,GAAYF,CAAS,EAAGG,GAAUH,CAAS,CAAC,CAC3E,CCJM,SAAUI,GAAiBC,EAAqBC,EAAwB,CAC5E,OAAO,IAAIC,EAAc,SAACC,EAAU,CAElC,IAAIC,EAAI,EAER,OAAOH,EAAU,SAAS,UAAA,CACpBG,IAAMJ,EAAM,OAGdG,EAAW,SAAQ,GAInBA,EAAW,KAAKH,EAAMI,GAAG,CAAC,EAIrBD,EAAW,QACd,KAAK,SAAQ,EAGnB,CAAC,CACH,CAAC,CACH,CCfM,SAAUE,GAAoBC,EAAoBC,EAAwB,CAC9E,OAAO,IAAIC,EAAc,SAACC,EAAU,CAClC,IAAIC,EAKJ,OAAAC,EAAgBF,EAAYF,EAAW,UAAA,CAErCG,EAAYJ,EAAcI,EAAe,EAAC,EAE1CC,EACEF,EACAF,EACA,UAAA,OACMK,EACAC,EACJ,GAAI,CAEDC,EAAkBJ,EAAS,KAAI,EAA7BE,EAAKE,EAAA,MAAED,EAAIC,EAAA,WACPC,EAAK,CAEZN,EAAW,MAAMM,CAAG,EACpB,OAGEF,EAKFJ,EAAW,SAAQ,EAGnBA,EAAW,KAAKG,CAAK,CAEzB,EACA,EACA,EAAI,CAER,CAAC,EAMM,UAAA,CAAM,OAAAI,EAAWN,GAAQ,KAAA,OAARA,EAAU,MAAM,GAAKA,EAAS,OAAM,CAA/C,CACf,CAAC,CACH,CCvDM,SAAUO,GAAyBC,EAAyBC,EAAwB,CACxF,GAAI,CAACD,EACH,MAAM,IAAI,MAAM,yBAAyB,EAE3C,OAAO,IAAIE,EAAc,SAACC,EAAU,CAClCC,EAAgBD,EAAYF,EAAW,UAAA,CACrC,IAAMI,EAAWL,EAAM,OAAO,aAAa,EAAC,EAC5CI,EACED,EACAF,EACA,UAAA,CACEI,EAAS,KAAI,EAAG,KAAK,SAACC,EAAM,CACtBA,EAAO,KAGTH,EAAW,SAAQ,EAEnBA,EAAW,KAAKG,EAAO,KAAK,CAEhC,CAAC,CACH,EACA,EACA,EAAI,CAER,CAAC,CACH,CAAC,CACH,CCzBM,SAAUC,GAA8BC,EAA8BC,EAAwB,CAClG,OAAOC,GAAsBC,GAAmCH,CAAK,EAAGC,CAAS,CACnF,CCoBM,SAAUG,GAAaC,EAA2BC,EAAwB,CAC9E,GAAID,GAAS,KAAM,CACjB,GAAIE,GAAoBF,CAAK,EAC3B,OAAOG,GAAmBH,EAAOC,CAAS,EAE5C,GAAIG,GAAYJ,CAAK,EACnB,OAAOK,GAAcL,EAAOC,CAAS,EAEvC,GAAIK,GAAUN,CAAK,EACjB,OAAOO,GAAgBP,EAAOC,CAAS,EAEzC,GAAIO,GAAgBR,CAAK,EACvB,OAAOS,GAAsBT,EAAOC,CAAS,EAE/C,GAAIS,GAAWV,CAAK,EAClB,OAAOW,GAAiBX,EAAOC,CAAS,EAE1C,GAAIW,GAAqBZ,CAAK,EAC5B,OAAOa,GAA2Bb,EAAOC,CAAS,EAGtD,MAAMa,GAAiCd,CAAK,CAC9C,CCoDM,SAAUe,EAAQC,EAA2BC,EAAyB,CAC1E,OAAOA,EAAYC,GAAUF,EAAOC,CAAS,EAAIE,EAAUH,CAAK,CAClE,CCxBM,SAAUI,IAAE,SAAIC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EACpB,IAAMC,EAAYC,GAAaH,CAAI,EACnC,OAAOI,EAAKJ,EAAaE,CAAS,CACpC,CCsCM,SAAUG,GAAWC,EAA0BC,EAAyB,CAC5E,IAAMC,EAAeC,EAAWH,CAAmB,EAAIA,EAAsB,UAAA,CAAM,OAAAA,CAAA,EAC7EI,EAAO,SAACC,EAA6B,CAAK,OAAAA,EAAW,MAAMH,EAAY,CAAE,CAA/B,EAChD,OAAO,IAAII,EAAWL,EAAY,SAACI,EAAU,CAAK,OAAAJ,EAAU,SAASG,EAAa,EAAGC,CAAU,CAA7C,EAAiDD,CAAI,CACzG,CCrHM,SAAUG,GAAYC,EAAU,CACpC,OAAOA,aAAiB,MAAQ,CAAC,MAAMA,CAAY,CACrD,CCsCM,SAAUC,EAAUC,EAAyCC,EAAa,CAC9E,OAAOC,EAAQ,SAACC,EAAQC,EAAU,CAEhC,IAAIC,EAAQ,EAGZF,EAAO,UACLG,EAAyBF,EAAY,SAACG,EAAQ,CAG5CH,EAAW,KAAKJ,EAAQ,KAAKC,EAASM,EAAOF,GAAO,CAAC,CACvD,CAAC,CAAC,CAEN,CAAC,CACH,CC1DQ,IAAAG,GAAY,MAAK,QAEzB,SAASC,GAAkBC,EAA6BC,EAAW,CAC/D,OAAOH,GAAQG,CAAI,EAAID,EAAE,MAAA,OAAAE,EAAA,CAAA,EAAAC,EAAIF,CAAI,CAAA,CAAA,EAAID,EAAGC,CAAI,CAChD,CAMM,SAAUG,GAAuBJ,EAA2B,CAC9D,OAAOK,EAAI,SAAAJ,EAAI,CAAI,OAAAF,GAAYC,EAAIC,CAAI,CAApB,CAAqB,CAC5C,CCfQ,IAAAK,GAAY,MAAK,QACjBC,GAA0D,OAAM,eAArCC,GAA+B,OAAM,UAAlBC,GAAY,OAAM,KAQlE,SAAUC,GAAqDC,EAAuB,CAC1F,GAAIA,EAAK,SAAW,EAAG,CACrB,IAAMC,EAAQD,EAAK,CAAC,EACpB,GAAIL,GAAQM,CAAK,EACf,MAAO,CAAE,KAAMA,EAAO,KAAM,IAAI,EAElC,GAAIC,GAAOD,CAAK,EAAG,CACjB,IAAME,EAAOL,GAAQG,CAAK,EAC1B,MAAO,CACL,KAAME,EAAK,IAAI,SAACC,EAAG,CAAK,OAAAH,EAAMG,CAAG,CAAT,CAAU,EAClC,KAAID,IAKV,MAAO,CAAE,KAAMH,EAAa,KAAM,IAAI,CACxC,CAEA,SAASE,GAAOG,EAAQ,CACtB,OAAOA,GAAO,OAAOA,GAAQ,UAAYT,GAAeS,CAAG,IAAMR,EACnE,CC7BM,SAAUS,GAAaC,EAAgBC,EAAa,CACxD,OAAOD,EAAK,OAAO,SAACE,EAAQC,EAAKC,EAAC,CAAK,OAAEF,EAAOC,CAAG,EAAIF,EAAOG,CAAC,EAAIF,CAA5B,EAAqC,CAAA,CAAS,CACvF,CCsMM,SAAUG,IAAa,SAAoCC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EAC/D,IAAMC,EAAYC,GAAaH,CAAI,EAC7BI,EAAiBC,GAAkBL,CAAI,EAEvCM,EAA8BC,GAAqBP,CAAI,EAA/CQ,EAAWF,EAAA,KAAEG,EAAIH,EAAA,KAE/B,GAAIE,EAAY,SAAW,EAIzB,OAAOE,EAAK,CAAA,EAAIR,CAAgB,EAGlC,IAAMS,EAAS,IAAIC,EACjBC,GACEL,EACAN,EACAO,EAEI,SAACK,EAAM,CAAK,OAAAC,GAAaN,EAAMK,CAAM,CAAzB,EAEZE,CAAQ,CACb,EAGH,OAAOZ,EAAkBO,EAAO,KAAKM,GAAiBb,CAAc,CAAC,EAAsBO,CAC7F,CAEM,SAAUE,GACdL,EACAN,EACAgB,EAAiD,CAAjD,OAAAA,IAAA,SAAAA,EAAAF,GAEO,SAACG,EAA2B,CAGjCC,GACElB,EACA,UAAA,CAaE,QAZQmB,EAAWb,EAAW,OAExBM,EAAS,IAAI,MAAMO,CAAM,EAG3BC,EAASD,EAITE,EAAuBF,aAGlBG,EAAC,CACRJ,GACElB,EACA,UAAA,CACE,IAAMuB,EAASf,EAAKF,EAAYgB,CAAC,EAAGtB,CAAgB,EAChDwB,EAAgB,GACpBD,EAAO,UACLE,EACER,EACA,SAACS,EAAK,CAEJd,EAAOU,CAAC,EAAII,EACPF,IAEHA,EAAgB,GAChBH,KAEGA,GAGHJ,EAAW,KAAKD,EAAeJ,EAAO,MAAK,CAAE,CAAC,CAElD,EACA,UAAA,CACO,EAAEQ,GAGLH,EAAW,SAAQ,CAEvB,CAAC,CACF,CAEL,EACAA,CAAU,GAjCLK,EAAI,EAAGA,EAAIH,EAAQG,MAAnBA,CAAC,CAoCZ,EACAL,CAAU,CAEd,CACF,CAMA,SAASC,GAAclB,EAAsC2B,EAAqBC,EAA0B,CACtG5B,EACF6B,EAAgBD,EAAc5B,EAAW2B,CAAO,EAEhDA,EAAO,CAEX,CC3RM,SAAUG,GACdC,EACAC,EACAC,EACAC,EACAC,EACAC,EACAC,EACAC,EAAgC,CAGhC,IAAMC,EAAc,CAAA,EAEhBC,EAAS,EAETC,EAAQ,EAERC,EAAa,GAKXC,EAAgB,UAAA,CAIhBD,GAAc,CAACH,EAAO,QAAU,CAACC,GACnCR,EAAW,SAAQ,CAEvB,EAGMY,EAAY,SAACC,EAAQ,CAAK,OAACL,EAASN,EAAaY,EAAWD,CAAK,EAAIN,EAAO,KAAKM,CAAK,CAA5D,EAE1BC,EAAa,SAACD,EAAQ,CAI1BT,GAAUJ,EAAW,KAAKa,CAAY,EAItCL,IAKA,IAAIO,EAAgB,GAGpBC,EAAUf,EAAQY,EAAOJ,GAAO,CAAC,EAAE,UACjCQ,EACEjB,EACA,SAACkB,EAAU,CAGTf,GAAY,MAAZA,EAAee,CAAU,EAErBd,EAGFQ,EAAUM,CAAiB,EAG3BlB,EAAW,KAAKkB,CAAU,CAE9B,EACA,UAAA,CAGEH,EAAgB,EAClB,EAEA,OACA,UAAA,CAIE,GAAIA,EAKF,GAAI,CAIFP,IAKA,qBACE,IAAMW,EAAgBZ,EAAO,MAAK,EAI9BF,EACFe,EAAgBpB,EAAYK,EAAmB,UAAA,CAAM,OAAAS,EAAWK,CAAa,CAAxB,CAAyB,EAE9EL,EAAWK,CAAa,GARrBZ,EAAO,QAAUC,EAASN,OAYjCS,EAAa,QACNU,EAAK,CACZrB,EAAW,MAAMqB,CAAG,EAG1B,CAAC,CACF,CAEL,EAGA,OAAAtB,EAAO,UACLkB,EAAyBjB,EAAYY,EAAW,UAAA,CAE9CF,EAAa,GACbC,EAAa,CACf,CAAC,CAAC,EAKG,UAAA,CACLL,GAAmB,MAAnBA,EAAmB,CACrB,CACF,CClEM,SAAUgB,GACdC,EACAC,EACAC,EAA6B,CAE7B,OAFAA,IAAA,SAAAA,EAAA,KAEIC,EAAWF,CAAc,EAEpBF,GAAS,SAACK,EAAGC,EAAC,CAAK,OAAAC,EAAI,SAACC,EAAQC,EAAU,CAAK,OAAAP,EAAeG,EAAGG,EAAGF,EAAGG,CAAE,CAA1B,CAA2B,EAAEC,EAAUT,EAAQI,EAAGC,CAAC,CAAC,CAAC,CAAjF,EAAoFH,CAAU,GAC/G,OAAOD,GAAmB,WACnCC,EAAaD,GAGRS,EAAQ,SAACC,EAAQC,EAAU,CAAK,OAAAC,GAAeF,EAAQC,EAAYZ,EAASE,CAAU,CAAtD,CAAuD,EAChG,CChCM,SAAUY,GAAyCC,EAA6B,CAA7B,OAAAA,IAAA,SAAAA,EAAA,KAChDC,GAASC,EAAUF,CAAU,CACtC,CCNM,SAAUG,IAAS,CACvB,OAAOC,GAAS,CAAC,CACnB,CCmDM,SAAUC,IAAM,SAACC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EACrB,OAAOC,GAAS,EAAGC,EAAKH,EAAMI,GAAaJ,CAAI,CAAC,CAAC,CACnD,CC9DM,SAAUK,GAAsCC,EAA0B,CAC9E,OAAO,IAAIC,EAA+B,SAACC,EAAU,CACnDC,EAAUH,EAAiB,CAAE,EAAE,UAAUE,CAAU,CACrD,CAAC,CACH,CChDA,IAAME,GAA0B,CAAC,cAAe,gBAAgB,EAC1DC,GAAqB,CAAC,mBAAoB,qBAAqB,EAC/DC,GAAgB,CAAC,KAAM,KAAK,EAkO5B,SAAUC,EACdC,EACAC,EACAC,EACAC,EAAsC,CAMtC,GAJIC,EAAWF,CAAO,IACpBC,EAAiBD,EACjBA,EAAU,QAERC,EACF,OAAOJ,EAAaC,EAAQC,EAAWC,CAA+B,EAAE,KAAKG,GAAiBF,CAAc,CAAC,EAUzG,IAAAG,EAAAC,EAEJC,GAAcR,CAAM,EAChBH,GAAmB,IAAI,SAACY,EAAU,CAAK,OAAA,SAACC,EAAY,CAAK,OAAAV,EAAOS,CAAU,EAAER,EAAWS,EAASR,CAA+B,CAAtE,CAAlB,CAAyF,EAElIS,GAAwBX,CAAM,EAC5BJ,GAAwB,IAAIgB,GAAwBZ,EAAQC,CAAS,CAAC,EACtEY,GAA0Bb,CAAM,EAChCF,GAAc,IAAIc,GAAwBZ,EAAQC,CAAS,CAAC,EAC5D,CAAA,EAAE,CAAA,EATDa,EAAGR,EAAA,CAAA,EAAES,EAAMT,EAAA,CAAA,EAgBlB,GAAI,CAACQ,GACCE,GAAYhB,CAAM,EACpB,OAAOiB,GAAS,SAACC,EAAc,CAAK,OAAAnB,EAAUmB,EAAWjB,EAAWC,CAA+B,CAA/D,CAAgE,EAClGiB,EAAUnB,CAAM,CAAC,EAOvB,GAAI,CAACc,EACH,MAAM,IAAI,UAAU,sBAAsB,EAG5C,OAAO,IAAIM,EAAc,SAACC,EAAU,CAIlC,IAAMX,EAAU,UAAA,SAACY,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EAAmB,OAAAF,EAAW,KAAK,EAAIC,EAAK,OAASA,EAAOA,EAAK,CAAC,CAAC,CAAhD,EAEpC,OAAAR,EAAIJ,CAAO,EAEJ,UAAA,CAAM,OAAAK,EAAQL,CAAO,CAAf,CACf,CAAC,CACH,CASA,SAASE,GAAwBZ,EAAaC,EAAiB,CAC7D,OAAO,SAACQ,EAAkB,CAAK,OAAA,SAACC,EAAY,CAAK,OAAAV,EAAOS,CAAU,EAAER,EAAWS,CAAO,CAArC,CAAlB,CACjC,CAOA,SAASC,GAAwBX,EAAW,CAC1C,OAAOI,EAAWJ,EAAO,WAAW,GAAKI,EAAWJ,EAAO,cAAc,CAC3E,CAOA,SAASa,GAA0Bb,EAAW,CAC5C,OAAOI,EAAWJ,EAAO,EAAE,GAAKI,EAAWJ,EAAO,GAAG,CACvD,CAOA,SAASQ,GAAcR,EAAW,CAChC,OAAOI,EAAWJ,EAAO,gBAAgB,GAAKI,EAAWJ,EAAO,mBAAmB,CACrF,CC3MM,SAAUwB,GACdC,EACAC,EACAC,EAAyC,CAFzCF,IAAA,SAAAA,EAAA,GAEAE,IAAA,SAAAA,EAAAC,IAIA,IAAIC,EAAmB,GAEvB,OAAIH,GAAuB,OAIrBI,GAAYJ,CAAmB,EACjCC,EAAYD,EAIZG,EAAmBH,GAIhB,IAAIK,EAAW,SAACC,EAAU,CAI/B,IAAIC,EAAMC,GAAYT,CAAO,EAAI,CAACA,EAAUE,EAAW,IAAG,EAAKF,EAE3DQ,EAAM,IAERA,EAAM,GAIR,IAAIE,EAAI,EAGR,OAAOR,EAAU,SAAS,UAAA,CACnBK,EAAW,SAEdA,EAAW,KAAKG,GAAG,EAEf,GAAKN,EAGP,KAAK,SAAS,OAAWA,CAAgB,EAGzCG,EAAW,SAAQ,EAGzB,EAAGC,CAAG,CACR,CAAC,CACH,CChGM,SAAUG,GAAK,SAACC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EACpB,IAAMC,EAAYC,GAAaH,CAAI,EAC7BI,EAAaC,GAAUL,EAAM,GAAQ,EACrCM,EAAUN,EAChB,OAAQM,EAAQ,OAGZA,EAAQ,SAAW,EAEnBC,EAAUD,EAAQ,CAAC,CAAC,EAEpBE,GAASJ,CAAU,EAAEK,EAAKH,EAASJ,CAAS,CAAC,EAL7CQ,EAMN,CCjEO,IAAMC,GAAQ,IAAIC,EAAkBC,EAAI,ECpCvC,IAAAC,GAAY,MAAK,QAMnB,SAAUC,GAAkBC,EAAiB,CACjD,OAAOA,EAAK,SAAW,GAAKF,GAAQE,EAAK,CAAC,CAAC,EAAIA,EAAK,CAAC,EAAKA,CAC5D,CCoDM,SAAUC,GAAUC,EAAiDC,EAAa,CACtF,OAAOC,EAAQ,SAACC,EAAQC,EAAU,CAEhC,IAAIC,EAAQ,EAIZF,EAAO,UAILG,EAAyBF,EAAY,SAACG,EAAK,CAAK,OAAAP,EAAU,KAAKC,EAASM,EAAOF,GAAO,GAAKD,EAAW,KAAKG,CAAK,CAAhE,CAAiE,CAAC,CAEtH,CAAC,CACH,CCxBM,SAAUC,IAAG,SAACC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EAClB,IAAMC,EAAiBC,GAAkBH,CAAI,EAEvCI,EAAUC,GAAeL,CAAI,EAEnC,OAAOI,EAAQ,OACX,IAAIE,EAAsB,SAACC,EAAU,CAGnC,IAAIC,EAAuBJ,EAAQ,IAAI,UAAA,CAAM,MAAA,CAAA,CAAA,CAAE,EAK3CK,EAAYL,EAAQ,IAAI,UAAA,CAAM,MAAA,EAAA,CAAK,EAGvCG,EAAW,IAAI,UAAA,CACbC,EAAUC,EAAY,IACxB,CAAC,EAKD,mBAASC,EAAW,CAClBC,EAAUP,EAAQM,CAAW,CAAC,EAAE,UAC9BE,EACEL,EACA,SAACM,EAAK,CAKJ,GAJAL,EAAQE,CAAW,EAAE,KAAKG,CAAK,EAI3BL,EAAQ,MAAM,SAACM,EAAM,CAAK,OAAAA,EAAO,MAAP,CAAa,EAAG,CAC5C,IAAMC,EAAcP,EAAQ,IAAI,SAACM,EAAM,CAAK,OAAAA,EAAO,MAAK,CAAZ,CAAe,EAE3DP,EAAW,KAAKL,EAAiBA,EAAc,MAAA,OAAAc,EAAA,CAAA,EAAAC,EAAIF,CAAM,CAAA,CAAA,EAAIA,CAAM,EAI/DP,EAAQ,KAAK,SAACM,EAAQI,EAAC,CAAK,MAAA,CAACJ,EAAO,QAAUL,EAAUS,CAAC,CAA7B,CAA8B,GAC5DX,EAAW,SAAQ,EAGzB,EACA,UAAA,CAGEE,EAAUC,CAAW,EAAI,GAIzB,CAACF,EAAQE,CAAW,EAAE,QAAUH,EAAW,SAAQ,CACrD,CAAC,CACF,GA9BIG,EAAc,EAAG,CAACH,EAAW,QAAUG,EAAcN,EAAQ,OAAQM,MAArEA,CAAW,EAmCpB,OAAO,UAAA,CACLF,EAAUC,EAAY,IACxB,CACF,CAAC,EACDU,EACN,CC9DM,SAAUC,GAASC,EAAoD,CAC3E,OAAOC,EAAQ,SAACC,EAAQC,EAAU,CAChC,IAAIC,EAAW,GACXC,EAAsB,KACtBC,EAA6C,KAC7CC,EAAa,GAEXC,EAAc,UAAA,CAGlB,GAFAF,GAAkB,MAAlBA,EAAoB,YAAW,EAC/BA,EAAqB,KACjBF,EAAU,CACZA,EAAW,GACX,IAAMK,EAAQJ,EACdA,EAAY,KACZF,EAAW,KAAKM,CAAK,EAEvBF,GAAcJ,EAAW,SAAQ,CACnC,EAEMO,EAAkB,UAAA,CACtBJ,EAAqB,KACrBC,GAAcJ,EAAW,SAAQ,CACnC,EAEAD,EAAO,UACLS,EACER,EACA,SAACM,EAAK,CACJL,EAAW,GACXC,EAAYI,EACPH,GACHM,EAAUZ,EAAiBS,CAAK,CAAC,EAAE,UAChCH,EAAqBK,EAAyBR,EAAYK,EAAaE,CAAe,CAAE,CAG/F,EACA,UAAA,CACEH,EAAa,IACZ,CAACH,GAAY,CAACE,GAAsBA,EAAmB,SAAWH,EAAW,SAAQ,CACxF,CAAC,CACF,CAEL,CAAC,CACH,CC3CM,SAAUU,GAAaC,EAAkBC,EAAyC,CAAzC,OAAAA,IAAA,SAAAA,EAAAC,IACtCC,GAAM,UAAA,CAAM,OAAAC,GAAMJ,EAAUC,CAAS,CAAzB,CAA0B,CAC/C,CCEM,SAAUI,GAAeC,EAAoBC,EAAsC,CAAtC,OAAAA,IAAA,SAAAA,EAAA,MAGjDA,EAAmBA,GAAgB,KAAhBA,EAAoBD,EAEhCE,EAAQ,SAACC,EAAQC,EAAU,CAChC,IAAIC,EAAiB,CAAA,EACjBC,EAAQ,EAEZH,EAAO,UACLI,EACEH,EACA,SAACI,EAAK,aACAC,EAAuB,KAKvBH,IAAUL,IAAsB,GAClCI,EAAQ,KAAK,CAAA,CAAE,MAIjB,QAAqBK,EAAAC,EAAAN,CAAO,EAAAO,EAAAF,EAAA,KAAA,EAAA,CAAAE,EAAA,KAAAA,EAAAF,EAAA,KAAA,EAAE,CAAzB,IAAMG,EAAMD,EAAA,MACfC,EAAO,KAAKL,CAAK,EAMbR,GAAca,EAAO,SACvBJ,EAASA,GAAM,KAANA,EAAU,CAAA,EACnBA,EAAO,KAAKI,CAAM,qGAItB,GAAIJ,MAIF,QAAqBK,EAAAH,EAAAF,CAAM,EAAAM,EAAAD,EAAA,KAAA,EAAA,CAAAC,EAAA,KAAAA,EAAAD,EAAA,KAAA,EAAE,CAAxB,IAAMD,EAAME,EAAA,MACfC,GAAUX,EAASQ,CAAM,EACzBT,EAAW,KAAKS,CAAM,oGAG5B,EACA,UAAA,aAGE,QAAqBI,EAAAN,EAAAN,CAAO,EAAAa,EAAAD,EAAA,KAAA,EAAA,CAAAC,EAAA,KAAAA,EAAAD,EAAA,KAAA,EAAE,CAAzB,IAAMJ,EAAMK,EAAA,MACfd,EAAW,KAAKS,CAAM,oGAExBT,EAAW,SAAQ,CACrB,EAEA,OACA,UAAA,CAEEC,EAAU,IACZ,CAAC,CACF,CAEL,CAAC,CACH,CC7FM,SAAUc,IAAa,SAAOC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EAClC,IAAMC,EAAiBC,GAAkBH,CAAI,EAC7C,OAAOE,EACHE,GAAKL,GAAa,MAAA,OAAAM,EAAA,CAAA,EAAAC,EAAKN,CAAoC,CAAA,CAAA,EAAGO,GAAiBL,CAAc,CAAC,EAC9FM,EAAQ,SAACC,EAAQC,EAAU,CACzBC,GAAiBN,EAAA,CAAEI,CAAM,EAAAH,EAAKM,GAAeZ,CAAI,CAAC,CAAA,CAAA,EAAGU,CAAU,CACjE,CAAC,CACP,CCUM,SAAUG,IAAiB,SAC/BC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EAEA,OAAOC,GAAa,MAAA,OAAAC,EAAA,CAAA,EAAAC,EAAIJ,CAAY,CAAA,CAAA,CACtC,CCgBM,SAAUK,GAAgBC,EAAiBC,EAAyC,CAAzC,OAAAA,IAAA,SAAAA,EAAAC,IACxCC,EAAQ,SAACC,EAAQC,EAAU,CAChC,IAAIC,EAAkC,KAClCC,EAAsB,KACtBC,EAA0B,KAExBC,EAAO,UAAA,CACX,GAAIH,EAAY,CAEdA,EAAW,YAAW,EACtBA,EAAa,KACb,IAAMI,EAAQH,EACdA,EAAY,KACZF,EAAW,KAAKK,CAAK,EAEzB,EACA,SAASC,GAAY,CAInB,IAAMC,EAAaJ,EAAYR,EACzBa,EAAMZ,EAAU,IAAG,EACzB,GAAIY,EAAMD,EAAY,CAEpBN,EAAa,KAAK,SAAS,OAAWM,EAAaC,CAAG,EACtDR,EAAW,IAAIC,CAAU,EACzB,OAGFG,EAAI,CACN,CAEAL,EAAO,UACLU,EACET,EACA,SAACK,EAAQ,CACPH,EAAYG,EACZF,EAAWP,EAAU,IAAG,EAGnBK,IACHA,EAAaL,EAAU,SAASU,EAAcX,CAAO,EACrDK,EAAW,IAAIC,CAAU,EAE7B,EACA,UAAA,CAGEG,EAAI,EACJJ,EAAW,SAAQ,CACrB,EAEA,OACA,UAAA,CAEEE,EAAYD,EAAa,IAC3B,CAAC,CACF,CAEL,CAAC,CACH,CC5EM,SAAUS,GAAQC,EAAa,CACnC,OAAOA,GAAS,EAEZ,UAAA,CAAM,OAAAC,EAAA,EACNC,EAAQ,SAACC,EAAQC,EAAU,CACzB,IAAIC,EAAO,EACXF,EAAO,UACLG,EAAyBF,EAAY,SAACG,EAAK,CAIrC,EAAEF,GAAQL,IACZI,EAAW,KAAKG,CAAK,EAIjBP,GAASK,GACXD,EAAW,SAAQ,EAGzB,CAAC,CAAC,CAEN,CAAC,CACP,CC9BM,SAAUI,IAAc,CAC5B,OAAOC,EAAQ,SAACC,EAAQC,EAAU,CAChCD,EAAO,UAAUE,EAAyBD,EAAYE,EAAI,CAAC,CAC7D,CAAC,CACH,CCCM,SAAUC,GAASC,EAAQ,CAC/B,OAAOC,EAAI,UAAA,CAAM,OAAAD,CAAA,CAAK,CACxB,CC4CM,SAAUE,GACdC,EACAC,EAAmC,CAEnC,OAAIA,EAEK,SAACC,EAAqB,CAC3B,OAAAC,GAAOF,EAAkB,KAAKG,GAAK,CAAC,EAAGC,GAAc,CAAE,EAAGH,EAAO,KAAKH,GAAUC,CAAqB,CAAC,CAAC,CAAvG,EAGGM,GAAS,SAACC,EAAOC,EAAK,CAAK,OAAAC,EAAUT,EAAsBO,EAAOC,CAAK,CAAC,EAAE,KAAKJ,GAAK,CAAC,EAAGM,GAAMH,CAAK,CAAC,CAAzE,CAA0E,CAC9G,CCzCM,SAAUI,GAASC,EAAoBC,EAAyC,CAAzCA,IAAA,SAAAA,EAAAC,IAC3C,IAAMC,EAAWC,GAAMJ,EAAKC,CAAS,EACrC,OAAOI,GAAU,UAAA,CAAM,OAAAF,CAAA,CAAQ,CACjC,CC0EM,SAAUG,GACdC,EACAC,EAA0D,CAA1D,OAAAA,IAAA,SAAAA,EAA+BC,GAK/BF,EAAaA,GAAU,KAAVA,EAAcG,GAEpBC,EAAQ,SAACC,EAAQC,EAAU,CAGhC,IAAIC,EAEAC,EAAQ,GAEZH,EAAO,UACLI,EAAyBH,EAAY,SAACI,EAAK,CAEzC,IAAMC,EAAaV,EAAYS,CAAK,GAKhCF,GAAS,CAACR,EAAYO,EAAaI,CAAU,KAM/CH,EAAQ,GACRD,EAAcI,EAGdL,EAAW,KAAKI,CAAK,EAEzB,CAAC,CAAC,CAEN,CAAC,CACH,CAEA,SAASP,GAAeS,EAAQC,EAAM,CACpC,OAAOD,IAAMC,CACf,CCjHM,SAAUC,GAA8CC,EAAQC,EAAuC,CAC3G,OAAOC,GAAqB,SAACC,EAAMC,EAAI,CAAK,OAAAH,EAAUA,EAAQE,EAAEH,CAAG,EAAGI,EAAEJ,CAAG,CAAC,EAAIG,EAAEH,CAAG,IAAMI,EAAEJ,CAAG,CAApD,CAAqD,CACnG,CCNM,SAAUK,GAAYC,EAAoB,CAC9C,OAAOC,EAAQ,SAACC,EAAQC,EAAU,CAGhC,GAAI,CACFD,EAAO,UAAUC,CAAU,UAE3BA,EAAW,IAAIH,CAAQ,EAE3B,CAAC,CACH,CCmEM,SAAUI,GAASC,EAA4B,CAA5BA,IAAA,SAAAA,EAAA,CAAA,GACf,IAAAC,EAAgHD,EAAO,UAAvHE,EAASD,IAAA,OAAG,UAAA,CAAM,OAAA,IAAIE,CAAJ,EAAgBF,EAAEG,EAA4EJ,EAAO,aAAnFK,EAAYD,IAAA,OAAG,GAAIA,EAAEE,EAAuDN,EAAO,gBAA9DO,EAAeD,IAAA,OAAG,GAAIA,EAAEE,EAA+BR,EAAO,oBAAtCS,EAAmBD,IAAA,OAAG,GAAIA,EAUnH,OAAO,SAACE,EAAa,CACnB,IAAIC,EACAC,EACAC,EACAC,EAAW,EACXC,EAAe,GACfC,EAAa,GAEXC,EAAc,UAAA,CAClBL,GAAe,MAAfA,EAAiB,YAAW,EAC5BA,EAAkB,MACpB,EAGMM,EAAQ,UAAA,CACZD,EAAW,EACXN,EAAaE,EAAU,OACvBE,EAAeC,EAAa,EAC9B,EACMG,EAAsB,UAAA,CAG1B,IAAMC,EAAOT,EACbO,EAAK,EACLE,GAAI,MAAJA,EAAM,YAAW,CACnB,EAEA,OAAOC,EAAc,SAACC,EAAQC,EAAU,CACtCT,IACI,CAACE,GAAc,CAACD,GAClBE,EAAW,EAOb,IAAMO,EAAQX,EAAUA,GAAO,KAAPA,EAAWX,EAAS,EAO5CqB,EAAW,IAAI,UAAA,CACbT,IAKIA,IAAa,GAAK,CAACE,GAAc,CAACD,IACpCH,EAAkBa,GAAYN,EAAqBV,CAAmB,EAE1E,CAAC,EAIDe,EAAK,UAAUD,CAAU,EAGvB,CAACZ,GAIDG,EAAW,IAOXH,EAAa,IAAIe,GAAe,CAC9B,KAAM,SAACC,EAAK,CAAK,OAAAH,EAAK,KAAKG,CAAK,CAAf,EACjB,MAAO,SAACC,EAAG,CACTZ,EAAa,GACbC,EAAW,EACXL,EAAkBa,GAAYP,EAAOb,EAAcuB,CAAG,EACtDJ,EAAK,MAAMI,CAAG,CAChB,EACA,SAAU,UAAA,CACRb,EAAe,GACfE,EAAW,EACXL,EAAkBa,GAAYP,EAAOX,CAAe,EACpDiB,EAAK,SAAQ,CACf,EACD,EACDK,EAAUP,CAAM,EAAE,UAAUX,CAAU,EAE1C,CAAC,EAAED,CAAa,CAClB,CACF,CAEA,SAASe,GACPP,EACAY,EAAoD,SACpDC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,EAAA,CAAA,EAAA,UAAAA,CAAA,EAEA,GAAIF,IAAO,GAAM,CACfZ,EAAK,EACL,OAGF,GAAIY,IAAO,GAIX,KAAMG,EAAe,IAAIP,GAAe,CACtC,KAAM,UAAA,CACJO,EAAa,YAAW,EACxBf,EAAK,CACP,EACD,EAED,OAAOW,EAAUC,EAAE,MAAA,OAAAI,EAAA,CAAA,EAAAC,EAAIJ,CAAI,CAAA,CAAA,CAAA,EAAG,UAAUE,CAAY,EACtD,CChHM,SAAUG,GACdC,EACAC,EACAC,EAAyB,WAErBC,EACAC,EAAW,GACf,OAAIJ,GAAsB,OAAOA,GAAuB,UACnDK,EAA8EL,EAAkB,WAAhGG,EAAUE,IAAA,OAAG,IAAQA,EAAEC,EAAuDN,EAAkB,WAAzEC,EAAUK,IAAA,OAAG,IAAQA,EAAEC,EAAgCP,EAAkB,SAAlDI,EAAQG,IAAA,OAAG,GAAKA,EAAEL,EAAcF,EAAkB,WAEnGG,EAAcH,GAAkB,KAAlBA,EAAsB,IAE/BQ,GAAS,CACd,UAAW,UAAA,CAAM,OAAA,IAAIC,GAAcN,EAAYF,EAAYC,CAAS,CAAnD,EACjB,aAAc,GACd,gBAAiB,GACjB,oBAAqBE,EACtB,CACH,CClHM,SAAUM,IAAS,SAAOC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EAC9B,IAAMC,EAAYC,GAAaH,CAAM,EACrC,OAAOI,EAAQ,SAACC,EAAQC,EAAU,EAI/BJ,EAAYK,GAAOP,EAAQK,EAAQH,CAAS,EAAIK,GAAOP,EAAQK,CAAM,GAAG,UAAUC,CAAU,CAC/F,CAAC,CACH,CCmBM,SAAUE,EACdC,EACAC,EAA6G,CAE7G,OAAOC,EAAQ,SAACC,EAAQC,EAAU,CAChC,IAAIC,EAAyD,KACzDC,EAAQ,EAERC,EAAa,GAIXC,EAAgB,UAAA,CAAM,OAAAD,GAAc,CAACF,GAAmBD,EAAW,SAAQ,CAArD,EAE5BD,EAAO,UACLM,EACEL,EACA,SAACM,EAAK,CAEJL,GAAe,MAAfA,EAAiB,YAAW,EAC5B,IAAIM,EAAa,EACXC,EAAaN,IAEnBO,EAAUb,EAAQU,EAAOE,CAAU,CAAC,EAAE,UACnCP,EAAkBI,EACjBL,EAIA,SAACU,EAAU,CAAK,OAAAV,EAAW,KAAKH,EAAiBA,EAAeS,EAAOI,EAAYF,EAAYD,GAAY,EAAIG,CAAU,CAAzG,EAChB,UAAA,CAIET,EAAkB,KAClBG,EAAa,CACf,CAAC,CACD,CAEN,EACA,UAAA,CACED,EAAa,GACbC,EAAa,CACf,CAAC,CACF,CAEL,CAAC,CACH,CCkCM,SAAUO,GACdC,EACAC,EACAC,EAA8B,CAK9B,IAAMC,EACJC,EAAWJ,CAAc,GAAKC,GAASC,EAElC,CAAE,KAAMF,EAA2E,MAAKC,EAAE,SAAQC,CAAA,EACnGF,EAEN,OAAOG,EACHE,EAAQ,SAACC,EAAQC,EAAU,QACzBC,EAAAL,EAAY,aAAS,MAAAK,IAAA,QAAAA,EAAA,KAArBL,CAAW,EACX,IAAIM,EAAU,GACdH,EAAO,UACLI,EACEH,EACA,SAACI,EAAK,QACJH,EAAAL,EAAY,QAAI,MAAAK,IAAA,QAAAA,EAAA,KAAhBL,EAAmBQ,CAAK,EACxBJ,EAAW,KAAKI,CAAK,CACvB,EACA,UAAA,OACEF,EAAU,IACVD,EAAAL,EAAY,YAAQ,MAAAK,IAAA,QAAAA,EAAA,KAApBL,CAAW,EACXI,EAAW,SAAQ,CACrB,EACA,SAACK,EAAG,OACFH,EAAU,IACVD,EAAAL,EAAY,SAAK,MAAAK,IAAA,QAAAA,EAAA,KAAjBL,EAAoBS,CAAG,EACvBL,EAAW,MAAMK,CAAG,CACtB,EACA,UAAA,SACMH,KACFD,EAAAL,EAAY,eAAW,MAAAK,IAAA,QAAAA,EAAA,KAAvBL,CAAW,IAEbU,EAAAV,EAAY,YAAQ,MAAAU,IAAA,QAAAA,EAAA,KAApBV,CAAW,CACb,CAAC,CACF,CAEL,CAAC,EAIDW,CACN,CC7JM,SAAUC,IAAc,SAAOC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EACnC,IAAMC,EAAUC,GAAkBH,CAAM,EAExC,OAAOI,EAAQ,SAACC,EAAQC,EAAU,CAehC,QAdMC,EAAMP,EAAO,OACbQ,EAAc,IAAI,MAAMD,CAAG,EAI7BE,EAAWT,EAAO,IAAI,UAAA,CAAM,MAAA,EAAA,CAAK,EAGjCU,EAAQ,cAMHC,EAAC,CACRC,EAAUZ,EAAOW,CAAC,CAAC,EAAE,UACnBE,EACEP,EACA,SAACQ,EAAK,CACJN,EAAYG,CAAC,EAAIG,EACb,CAACJ,GAAS,CAACD,EAASE,CAAC,IAEvBF,EAASE,CAAC,EAAI,IAKbD,EAAQD,EAAS,MAAMM,CAAQ,KAAON,EAAW,MAEtD,EAGAO,EAAI,CACL,GAnBIL,EAAI,EAAGA,EAAIJ,EAAKI,MAAhBA,CAAC,EAwBVN,EAAO,UACLQ,EAAyBP,EAAY,SAACQ,EAAK,CACzC,GAAIJ,EAAO,CAET,IAAMO,EAAMC,EAAA,CAAIJ,CAAK,EAAAK,EAAKX,CAAW,CAAA,EACrCF,EAAW,KAAKJ,EAAUA,EAAO,MAAA,OAAAgB,EAAA,CAAA,EAAAC,EAAIF,CAAM,CAAA,CAAA,EAAIA,CAAM,EAEzD,CAAC,CAAC,CAEN,CAAC,CACH,CCxFM,SAAUG,IAAG,SAAOC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EACxB,OAAOC,EAAQ,SAACC,EAAQC,EAAU,CAChCL,GAAS,MAAA,OAAAM,EAAA,CAACF,CAA8B,EAAAG,EAAMN,CAAuC,CAAA,CAAA,EAAE,UAAUI,CAAU,CAC7G,CAAC,CACH,CCCM,SAAUG,IAAO,SAAkCC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EACvD,OAAOC,GAAG,MAAA,OAAAC,EAAA,CAAA,EAAAC,EAAIJ,CAAW,CAAA,CAAA,CAC3B,CCgBO,SAASK,GACdC,EAAkBC,EAAmB,SAChC,CACL,OAAO,MAAM,KAAKA,EAAK,iBAAoBD,CAAQ,CAAC,CACtD,CAuBO,SAASE,GACdF,EAAkBC,EAAmB,SAClC,CACH,IAAME,EAAKC,GAAsBJ,EAAUC,CAAI,EAC/C,GAAI,OAAOE,GAAO,YAChB,MAAM,IAAI,eACR,8BAA8BH,CAAQ,iBACxC,EAGF,OAAOG,CACT,CAsBO,SAASC,GACdJ,EAAkBC,EAAmB,SACtB,CACf,OAAOA,EAAK,cAAiBD,CAAQ,GAAK,MAC5C,CAOO,SAASK,IAA4C,CAnH5D,IAAAC,EAAAC,EAAAC,EAAAC,EAoHE,OACEA,GAAAD,GAAAD,GAAAD,EAAA,SAAS,gBAAT,YAAAA,EAAwB,aAAxB,YAAAC,EAAoC,gBAApC,KAAAC,EACA,SAAS,gBADT,KAAAC,EAEA,MAEJ,CCvEA,IAAMC,GAAYC,EAChBC,EAAU,SAAS,KAAM,SAAS,EAClCA,EAAU,SAAS,KAAM,UAAU,CACrC,EACG,KACCC,GAAa,CAAC,EACdC,GAAU,MAAS,EACnBC,EAAI,IAAMC,GAAiB,GAAK,SAAS,IAAI,EAC7CC,GAAY,CAAC,CACf,EAaK,SAASC,GACdC,EACqB,CACrB,OAAOT,GACJ,KACCK,EAAIK,GAAUD,EAAG,SAASC,CAAM,CAAC,EACjCC,GAAqB,CACvB,CACJ,CCxBA,SAASC,GAAYC,EAAiBC,EAA8B,CAGlE,GAAI,OAAOA,GAAU,UAAY,OAAOA,GAAU,SAChDD,EAAG,WAAaC,EAAM,SAAS,UAGtBA,aAAiB,KAC1BD,EAAG,YAAYC,CAAK,UAGX,MAAM,QAAQA,CAAK,EAC5B,QAAWC,KAAQD,EACjBF,GAAYC,EAAIE,CAAI,CAE1B,CAyBO,SAASC,EACdC,EAAaC,KAAmCC,EAC7C,CACH,IAAMN,EAAK,SAAS,cAAcI,CAAG,EAGrC,GAAIC,EACF,QAAWE,KAAQ,OAAO,KAAKF,CAAU,EACnC,OAAOA,EAAWE,CAAI,GAAM,cAI5B,OAAOF,EAAWE,CAAI,GAAM,UAC9BP,EAAG,aAAaO,EAAMF,EAAWE,CAAI,CAAC,EAEtCP,EAAG,aAAaO,EAAM,EAAE,GAI9B,QAAWN,KAASK,EAClBP,GAAYC,EAAIC,CAAK,EAGvB,OAAOD,CACT,CC9EO,SAASQ,GAAMC,EAAuB,CAC3C,GAAIA,EAAQ,IAAK,CACf,IAAMC,EAAS,GAAGD,EAAQ,KAAO,IAAO,IACxC,MAAO,KAAKA,EAAQ,MAAY,KAAM,QAAQC,CAAM,CAAC,GACvD,KACE,QAAOD,EAAM,SAAS,CAE1B,CCCO,SAASE,GAAYC,EAA+B,CACzD,IAAMC,EAASC,EAAE,SAAU,CAAE,IAAAF,CAAI,CAAC,EAClC,OAAOG,GAAM,KACX,SAAS,KAAK,YAAYF,CAAM,EACzBG,EACLC,EAAUJ,EAAQ,MAAM,EACxBI,EAAUJ,EAAQ,OAAO,EACtB,KACCK,EAAU,IACRC,GAAW,IAAM,IAAI,eAAe,mBAAmBP,CAAG,EAAE,CAAC,CAC9D,CACH,CACJ,EACG,KACCQ,EAAI,IAAG,EAAY,EACnBC,GAAS,IAAM,SAAS,KAAK,YAAYR,CAAM,CAAC,EAChDS,GAAK,CAAC,CACR,EACH,CACH,CCVA,IAAMC,GAAS,IAAIC,EAiBbC,GAAYC,GAAM,IACtB,OAAO,gBAAmB,YACtBC,GAAY,4CAA4C,EACxDC,GAAG,MAAS,CACjB,EACE,KACCC,EAAI,IAAM,IAAI,eAAeC,GAC3BA,EAAQ,QAAQC,GAASR,GAAO,KAAKQ,CAAK,CAAC,CAC5C,CAAC,EACFC,EAAUC,GAAYC,EAAMC,GAAOP,GAAGK,CAAQ,CAAC,EAAE,KAC/CG,GAAS,IAAMH,EAAS,WAAW,CAAC,CACtC,CAAC,EACDI,GAAY,CAAC,CACf,EAaK,SAASC,GACdC,EACa,CACb,MAAO,CACL,MAAQA,EAAG,YACX,OAAQA,EAAG,YACb,CACF,CC1EO,SAASC,GACdC,EACa,CACb,MAAO,CACL,MAAQA,EAAG,YACX,OAAQA,EAAG,YACb,CACF,CCGO,SAASC,GACdC,EACe,CACf,MAAO,CACL,EAAGA,EAAG,WACN,EAAGA,EAAG,SACR,CACF,CAWO,SAASC,GACdD,EAC2B,CAC3B,OAAOE,EACLC,EAAUH,EAAI,QAAQ,EACtBG,EAAU,OAAQ,QAAQ,EAC1BA,EAAU,OAAQ,QAAQ,CAC5B,EACG,KACCC,GAAU,EAAGC,EAAuB,EACpCC,EAAI,IAAMP,GAAwBC,CAAE,CAAC,EACrCO,GAAUR,GAAwBC,CAAE,CAAC,CACvC,CACJ,CCzBA,IAAMQ,GAAS,IAAIC,EAUbC,GAAYC,GAAM,IAAMC,GAC5B,IAAI,qBAAqBC,GAAW,CAClC,QAAWC,KAASD,EAClBL,GAAO,KAAKM,CAAK,CACrB,EAAG,CACD,UAAW,CACb,CAAC,CACH,CAAC,EACE,KACCC,EAAUC,GAAYC,EAAMC,GAAON,GAAGI,CAAQ,CAAC,EAC5C,KACCG,GAAS,IAAMH,EAAS,WAAW,CAAC,CACtC,CACF,EACAI,GAAY,CAAC,CACf,EAwCK,SAASC,GACdC,EAAiBC,EAAY,GACR,CACrB,OAAOC,GAA0BF,CAAE,EAChC,KACCG,EAAI,CAAC,CAAE,EAAAC,CAAE,IAAM,CACb,IAAMC,EAAUC,GAAeN,CAAE,EAC3BO,EAAUC,GAAsBR,CAAE,EACxC,OAAOI,GACLG,EAAQ,OAASF,EAAQ,OAASJ,CAEtC,CAAC,EACDQ,GAAqB,CACvB,CACJ,CCjFA,IAAMC,GAA4C,CAChD,OAAQC,GAAW,yBAAyB,EAC5C,OAAQA,GAAW,yBAAyB,CAC9C,ECuDA,IAAMC,GAASC,GAAW,WAAW,EAC/BC,GAAiB,KAAK,MAAMF,GAAO,WAAY,EACrDE,GAAO,KAAO,GAAG,IAAI,IAAIA,GAAO,KAAMC,GAAY,CAAC,CAAC,GAW7C,SAASC,IAAwB,CACtC,OAAOF,EACT,CAqBO,SAASG,GACdC,EAAkBC,EACV,CACR,OAAO,OAAOA,GAAU,YACpBC,GAAO,aAAaF,CAAG,EAAE,QAAQ,IAAKC,EAAM,SAAS,CAAC,EACtDC,GAAO,aAAaF,CAAG,CAC7B,CC5GO,SAASG,IAAmB,CACjC,OAAO,IAAI,IAAI,SAAS,IAAI,CAC9B,CCoBO,SAASC,GACdC,EAAmBC,EACD,CAClB,OAAO,IAAIC,EAAiBC,GAAY,CACtC,IAAMC,EAAM,IAAI,eAChB,OAAAA,EAAI,KAAK,MAAO,GAAGJ,CAAG,EAAE,EACxBI,EAAI,aAAe,OAGnBA,EAAI,iBAAiB,OAAQ,IAAM,CAC7BA,EAAI,QAAU,KAAOA,EAAI,OAAS,KACpCD,EAAS,KAAKC,EAAI,QAAQ,EAC1BD,EAAS,SAAS,GAIlBA,EAAS,MAAM,IAAI,MAAMC,EAAI,UAAU,CAAC,CAE5C,CAAC,EAGDA,EAAI,iBAAiB,QAAS,IAAM,CAClCD,EAAS,MAAM,IAAI,MAAM,eAAe,CAAC,CAC3C,CAAC,EAGDC,EAAI,iBAAiB,QAAS,IAAM,CAClCD,EAAS,SAAS,CACpB,CAAC,EAGG,OAAOF,GAAA,YAAAA,EAAS,YAAc,cAChCG,EAAI,iBAAiB,WAAYC,GAAS,CA/FhD,IAAAC,EAgGQ,GAAID,EAAM,iBACRJ,EAAQ,UAAW,KAAMI,EAAM,OAASA,EAAM,MAAS,GAAG,MAIrD,CACL,IAAME,GAASD,EAAAF,EAAI,kBAAkB,gBAAgB,IAAtC,KAAAE,EAA2C,EAC1DL,EAAQ,UAAW,KAAMI,EAAM,OAAS,CAACE,EAAU,GAAG,CACxD,CACF,CAAC,EAGDN,EAAQ,UAAU,KAAK,CAAC,GAI1BG,EAAI,KAAK,EACF,IAAMA,EAAI,MAAM,CACzB,CAAC,CACH,CAcO,SAASI,GACdR,EAAmBC,EACJ,CACf,OAAOF,GAAQC,EAAKC,CAAO,EACxB,KACCQ,EAAUC,GAAOA,EAAI,KAAK,CAAC,EAC3BC,EAAIC,GAAQ,KAAK,MAAMA,CAAI,CAAM,EACjCC,GAAY,CAAC,CACf,CACJ,CCrDO,SAASC,GACdC,EAASC,EAAmB,SACP,CACrB,OAAOC,GAAW,uBAAuBF,CAAI,IAAKC,CAAI,CACxD,CAYO,SAASE,GACdH,EAASC,EAAmB,SACL,CACvB,OAAOG,GAAY,uBAAuBJ,CAAI,IAAKC,CAAI,CACzD,CC3CO,SAASI,GACdC,EAC0D,CAG1D,IAAMC,EAASC,GAAkBF,CAAE,EAC7BG,EAASC,EACbC,EAAUL,EAAI,OAAO,EACrBK,EAAUL,EAAI,OAAO,EAAE,KAAKM,GAAM,CAAC,CAAC,CACtC,EACG,KACCC,EAAI,IAAMP,EAAG,KAAK,EAClBQ,GAAUR,EAAG,KAAK,EAClBS,GAAqB,CACvB,EAGF,OAAAR,EACG,KACCS,GAAOC,GAAU,CAACA,CAAM,EACxBC,GAAeT,CAAM,CACvB,EACG,UAAU,CAAC,CAAC,CAAEU,CAAK,IAAM,CACxB,IAAMC,EAAO,SAAS,SAAS,SAC3B,OAAO,IAAO,YAAcD,EAAM,QACpC,GAAG,OAAQ,WAAY,GAAGC,CAAI,aAAaD,CAAK,EAAE,CACtD,CAAC,EAGEE,GAAc,CAACZ,EAAQF,CAAM,CAAC,EAClC,KACCM,EAAI,CAAC,CAACM,EAAOG,CAAK,KAAO,CAAE,IAAKhB,EAAI,MAAAa,EAAO,MAAAG,CAAM,EAAE,CACrD,CACJ,CCzEA,IAAAC,GAAiC,SCAjC,IAAAC,GAAqB,SA6BrB,SAASC,GAAUC,EAAYC,EAAuB,CACpD,SAAO,SAAKD,EAAK,UAAWC,EAAO,CACjC,KAAM,CACJ,QAAS,MACT,SAAU,MACZ,CACF,CAAC,CACH,CAeO,SAASC,GACdF,EAAYC,EAAeE,EACd,CACb,OACEC,EAAC,MAAG,MAAM,+BACRA,EAAC,QAAK,MAAM,WACVA,EAAC,OAAI,IAAKJ,EAAK,IAAK,CACtB,EACAI,EAAC,UACC,MAAM,uBACN,MAAOC,GAAY,gBAAgB,EACnC,sBAAqBF,EAAOH,EAAK,UAAY,IAAIA,EAAK,SAAS,KAE/DI,EAAC,YACCD,EACIJ,GAAUC,EAAMC,CAAK,EACrB,IAAIF,GAAUC,EAAMC,CAAK,CAAC,GAC/B,CACH,CACF,CAEJ,CCzDO,SAASK,GACdC,EACa,CACb,IAAMC,EAAQ,IAAID,EAAK,IAAI,GAC3B,OACEE,EAAC,KAAE,KAAMF,EAAK,IAAK,MAAOC,EAAO,MAAM,yBACrCC,EAAC,OAAI,IAAKF,EAAK,MAAO,CACxB,CAEJ,CASO,SAASG,GACdC,EACa,CACb,OACEF,EAAC,KACC,KAAK,6DACL,MAAM,wDACP,IACGE,CACJ,CAEJ,CFgCO,SAASC,GACdC,EAAiB,CAAE,OAAAC,EAAQ,OAAAC,EAAQ,MAAAC,CAAM,EACX,CAC9B,OAAQH,EAAG,aAAa,eAAe,EAAG,CAExC,IAAK,OACH,OAAOI,GAAc,CACnBF,EAAO,KAAKG,GAAwB,OAAO,CAAC,EAC5CJ,EACG,KACCK,EAAI,CAAC,CAAE,MAAAC,CAAM,IAAM,OAAO,OAAOA,EAAM,IAAI,EACxC,IAAIC,GAAQA,EAAK,QAAQ,SAAU,EAAE,CAAC,CACzC,CACF,CACJ,CAAC,EACE,KACCF,EAAI,CAAC,CAAC,CAAE,MAAAG,CAAM,EAAGC,CAAI,OAAM,GAAAC,QAAOD,EAAMD,CAAK,CAAC,EAC9CG,EAAUC,GAASZ,EAAO,KACxBK,EAAI,CAAC,CAAE,MAAAC,CAAM,KAAO,CAClB,KAAMM,EAAM,IAAUC,IACb,CACL,UAAAA,EACA,IAAK,CACHP,EAAM,KACNO,EACA,MACF,EAAE,KAAK,EAAE,CACX,EACD,CACH,EAAE,CACJ,CAAC,CACH,EAEJ,QACE,OAAOV,GAAc,CACnBF,EAAO,KAAKG,GAAwB,OAAO,CAAC,EAC5CJ,EACG,KACCc,GAAkBZ,CAAK,EACvBG,EAAI,CAAC,CAAC,CAAE,MAAAC,EAAO,OAAAS,CAAO,EAAGC,CAAI,IAAM,CACjC,GAAG,CAAC,MAAO,OAAO,EAAE,SAASA,CAAI,EAC7B,OAAO,KAAKV,EAAM,IAAI,EACtB,CAAC,EACL,GAAG,CAAC,MAAO,QAAQ,EAAE,SAASU,CAAI,EAC9B,OAAO,KAAKD,EAAO,IAAI,EACvB,CAAC,CACP,CAAC,CACH,CACJ,CAAC,EACE,KACCV,EAAI,CAAC,CAAC,CAAE,MAAAG,CAAM,EAAGC,CAAI,OAAM,GAAAC,QAAOD,EAAMD,CAAK,CAAC,EAC9CG,EAAUM,GAAcjB,EAAO,KAC7BK,EAAI,CAAC,CAAE,MAAAC,EAAO,OAAAS,CAAO,KAAO,CAC1B,KAAME,EAAW,IAAUJ,GAAa,CACtC,IAAMK,EACJL,KAAaP,EAAM,KACfA,EACAS,EACN,MAAO,CACL,UAAAF,EACA,IAAK,CACHK,EAAS,KACTA,EAAS,KAAKL,CAAS,CACzB,EAAE,KAAK,EAAE,CACX,CACF,CAAC,CACH,EAAE,CACJ,CAAC,CACH,CACN,CACF,CAUO,SAASM,GACdpB,EAAiB,CAAE,OAAAC,EAAQ,OAAAC,EAAQ,MAAAC,CAAM,EACa,CACtD,IAAMkB,EAAQ,IAAIC,EACZC,EAAYC,GAAqBxB,CAAE,EACtC,KACCyB,GAAO,OAAO,CAChB,EAGIC,EAAOC,GAAW,+BAAgC3B,CAAE,EAC1DqB,EACG,KACCO,GAAe1B,CAAM,CACvB,EACG,UAAU,CAAC,CAAC,CAAE,KAAAQ,CAAK,EAAG,CAAE,MAAAD,CAAM,CAAC,IAAM,CACpC,GAAIA,EACF,OAAQC,EAAK,OAAQ,CAGnB,IAAK,GACHgB,EAAK,YAAc,aACnB,MAGF,IAAK,GACHA,EAAK,YAAc,UACnB,MAGF,QACEA,EAAK,YAAc,GAAGG,GAAMnB,EAAK,MAAM,CAAC,UAC5C,MAEAgB,EAAK,YAAc,yBAEvB,CAAC,EAGL,IAAMI,EAAO9B,EAAG,aAAa,eAAe,IAAM,OAC5C+B,EAAOJ,GAAW,uBAAwB3B,CAAE,EAClD,OAAAqB,EACG,KACCW,GAAI,IAAMD,EAAK,UAAY,EAAE,EAC7BnB,EAAU,CAAC,CAAE,KAAAF,CAAK,IAAMuB,EACtBC,GAAG,GAAGxB,EAAK,MAAM,EAAG,EAAE,CAAC,EACvBwB,GAAG,GAAGxB,EAAK,MAAM,EAAE,CAAC,EACjB,KACCyB,GAAY,EAAE,EACdC,GAAQb,CAAS,EACjBX,EAAU,CAAC,CAACyB,CAAK,IAAMA,CAAK,CAC9B,CACJ,CAAC,EACDT,GAAe1B,CAAM,CACvB,EACG,UAAU,CAAC,CAACoC,EAAQ,CAAE,MAAA7B,CAAM,CAAC,IAAMsB,EAAK,YACvCQ,GAAuBD,EAAQ7B,EAAOqB,CAAI,CAC5C,CAAC,EAGE/B,GAAsBC,EAAI,CAAE,OAAAE,EAAQ,OAAAD,EAAQ,MAAAE,CAAM,CAAC,EACvD,KACC6B,GAAIQ,GAASnB,EAAM,KAAKmB,CAAK,CAAC,EAC9BC,GAAS,IAAMpB,EAAM,SAAS,CAAC,EAC/Bf,EAAIkC,GAAUE,GAAA,CAAE,IAAK1C,GAAOwC,EAAQ,CACtC,CACJ,CG3JO,SAASG,GACdC,EACmC,CACnC,IAAMC,EAASC,GAAc,EACvBC,EAASC,GACb,IAAI,IAAI,2CAA4CH,EAAO,IAAI,CACjE,EAGMI,EAASC,GAAoB,mBAAoBN,CAAE,EACnDO,EAASD,GAAoB,oBAAqBN,CAAE,EAGpDQ,EAAQ,IAAIC,GAAgC,KAAK,EACjDC,EAAUC,GAAqB,oBAAqBX,CAAE,EAC5D,QAAWY,KAAUF,EACnBG,EAAUD,EAAQ,QAAQ,EAAE,KAC1BE,EAAIC,GAAOA,EAAG,OAA6B,KAAuB,CACpE,EACG,UAAUP,CAAK,EAIpB,IAAMQ,EAAUC,GAAqBZ,CAAK,EACpCa,EAAUC,GAAsBZ,EAAQ,CAAE,OAAAJ,EAAQ,OAAAa,EAAQ,MAAAR,CAAM,CAAC,EACvE,OAAOY,EAAMJ,EAAQE,CAAO,CAC9B,CCRO,SAASG,GACdC,EACoC,CACpC,IAAMC,EAAeC,GACnB,2DACF,EAGMC,EAAQC,GAAqB,mBAAmB,EAChDC,EAAQD,GAAqB,mBAAmB,EAGtDH,EAAa,KACXK,EAAUC,GAAeC,EAAKL,CAAK,EAAE,KACnCM,GAAIC,GAASA,EAAM,UAAY,GAAGH,EAAY,SAAS,MAAM,EAAE,CACjE,CAAC,CACH,EACG,UAAU,IAAMP,EAAG,gBAAgB,QAAQ,CAAC,EAG/CC,EAAa,KACXK,EAAUC,GAAeC,EAAKH,CAAK,EAAE,KACnCI,GAAIC,GAASA,EAAM,UAAY,KAAKH,EAAY,MAC7C,SAAS,EACT,QAAQ,wBAAyB,GAAG,CACvC,UAAU,CACZ,CAAC,CACH,EACG,UAAU,EAGb,IAAMI,EAAOC,GAAmB,kCAAmCZ,CAAE,EACrE,OAAIW,GAAQR,EAAM,QAChBF,EAAa,UAAUM,GAAe,CACpC,QAAWM,KAAWN,EAAY,SAC5BM,EAAQ,OAAS,UACnBF,EAAK,YAAYG,GAAoBD,EAAQ,IAAI,CAAC,EAGtDF,EAAK,YAAYI,GACfR,EAAY,SAAS,OAAO,CAAC,CAAE,KAAAS,CAAK,IAClCA,IAAS,SACV,EAAE,MACL,CAAC,CACH,CAAC,EAIIf,EACJ,KACCgB,EAAIC,GAAUC,GAAA,CAAE,IAAKnB,GAAOkB,EAAQ,CACtC,CACJ,CChIO,SAASE,IAAuB,CACrC,GAAM,CAAE,OAAAC,CAAO,EAAI,IAAI,IAAI,SAAS,IAAI,EACxCC,EAAU,SAAS,KAAM,OAAO,EAC7B,UAAUC,GAAM,CACf,GAAIA,EAAG,kBAAkB,YAAa,CACpC,IAAMC,EAAKD,EAAG,OAAO,QAAQ,GAAG,EAC5BC,GAAMA,EAAG,SAAWH,GACtB,GAAG,OAAQ,QAAS,WAAY,QAASG,EAAG,IAAI,CACpD,CACF,CAAC,CACL,CCLAC,GAAe,EAGf,IAAMC,GAAa,UAChB,KACCC,EAAU,IAAMC,EAGd,GAAGC,GAAqB,YAAY,EACjC,IAAIC,GAAMC,GAAgBD,CAAE,CAAC,EAGhC,GAAGD,GAAqB,aAAa,EAClC,IAAIC,GAAME,GAAiBF,CAAE,CAAC,CACnC,CAAC,CACH,EAGFJ,GAAW,UAAU", "names": ["require_scorer", "__commonJSMin", "exports", "AcronymResult", "computeScore", "emptyAcronymResult", "isAcronymFullWord", "isMatch", "isSeparator", "isWordEnd", "isWordStart", "miss_coeff", "pos_bonus", "scoreAcronyms", "scoreCharacter", "scoreConsecutives", "scoreExact", "scoreExactMatch", "scorePattern", "scorePosition", "scoreSize", "tau_size", "wm", "string", "query", "options", "allowErrors", "preparedQuery", "score", "string_lw", "subject", "query_lw", "query_up", "i", "j", "m", "n", "qj_lw", "qj_up", "si", "subject_lw", "acro", "acro_score", "align", "csc_diag", "csc_row", "csc_score", "csc_should_rebuild", "miss_budget", "miss_left", "pos", "record_miss", "score_diag", "score_row", "score_up", "si_lw", "start", "sz", "curr_s", "prev_s", "len", "next_s", "c", "sc", "quality", "count", "sameCase", "end", "bonus", "posBonus", "startOfWord", "k", "mi", "nj", "pos2", "fullWord", "sepCount", "sumPos", "nbAcronymInQuery", "require_pathScorer", "__commonJSMin", "exports", "computeScore", "countDir", "file_coeff", "getExtension", "getExtensionScore", "isMatch", "scorePath", "scoreSize", "tau_depth", "_ref", "string", "query", "options", "allowErrors", "preparedQuery", "score", "string_lw", "subject", "subject_lw", "fullPathScore", "alpha", "basePathScore", "basePos", "depth", "end", "extAdjust", "fileLength", "pathSeparator", "useExtensionBonus", "path", "count", "i", "str", "pos", "candidate", "ext", "startPos", "endPos", "maxDepth", "m", "matched", "n", "require_query", "__commonJSMin", "exports", "module", "Query", "coreChars", "countDir", "getCharCodes", "getExtension", "opt_char_re", "truncatedUpperCase", "_ref", "query", "_arg", "optCharRegEx", "pathSeparator", "_ref1", "str", "char", "upper", "_i", "_len", "charCodes", "i", "len", "require_filter", "__commonJSMin", "exports", "module", "Query", "pathScorer", "pluckCandidates", "scorer", "sortCandidates", "a", "b", "candidates", "query", "options", "bKey", "candidate", "key", "maxInners", "maxResults", "score", "scoreProvider", "scoredCandidates", "spotLeft", "string", "usePathScoring", "_i", "_len", "require_matcher", "__commonJSMin", "exports", "basenameMatch", "computeMatch", "isMatch", "isWordStart", "match", "mergeMatches", "scoreAcronyms", "scoreCharacter", "scoreConsecutives", "_ref", "string", "query", "options", "allowErrors", "baseMatches", "matches", "pathSeparator", "preparedQuery", "string_lw", "matchIndex", "matchPos", "matchPositions", "output", "strPos", "tagClass", "tagClose", "tagOpen", "_ref1", "subject", "subject_lw", "basePos", "depth", "end", "a", "b", "ai", "bj", "i", "j", "m", "n", "out", "offset", "DIAGONAL", "LEFT", "STOP", "UP", "acro_score", "align", "backtrack", "csc_diag", "csc_row", "csc_score", "move", "pos", "query_lw", "score", "score_diag", "score_row", "score_up", "si_lw", "start", "trace", "require_fuzzaldrin", "__commonJSMin", "exports", "module", "Query", "defaultPathSeparator", "filter", "matcher", "parseOptions", "pathScorer", "preparedQueryCache", "scorer", "candidates", "query", "options", "string", "_i", "_ref", "_results", "extendStatics", "d", "b", "p", "__extends", "__", "__awaiter", "thisArg", "_arguments", "P", "generator", "adopt", "value", "resolve", "reject", "fulfilled", "step", "e", "rejected", "result", "__generator", "body", "_", "t", "f", "y", "g", "verb", "n", "v", "op", "__values", "o", "s", "m", "i", "__read", "n", "r", "ar", "e", "error", "__spreadArray", "to", "from", "pack", "i", "l", "ar", "__await", "v", "__asyncGenerator", "thisArg", "_arguments", "generator", "g", "q", "verb", "awaitReturn", "f", "reject", "n", "a", "b", "resume", "step", "e", "settle", "r", "fulfill", "value", "__asyncValues", "o", "m", "i", "__values", "verb", "n", "v", "resolve", "reject", "settle", "d", "isFunction", "value", "createErrorClass", "createImpl", "_super", "instance", "ctorFunc", "UnsubscriptionError", "createErrorClass", "_super", "errors", "err", "i", "arrRemove", "arr", "item", "index", "Subscription", "initialTeardown", "errors", "_parentage", "_parentage_1", "__values", "_parentage_1_1", "parent_1", "initialFinalizer", "isFunction", "e", "UnsubscriptionError", "_finalizers", "_finalizers_1", "_finalizers_1_1", "finalizer", "execFinalizer", "err", "__spreadArray", "__read", "teardown", "_a", "parent", "arrRemove", "empty", "EMPTY_SUBSCRIPTION", "Subscription", "isSubscription", "value", "isFunction", "execFinalizer", "finalizer", "config", "timeoutProvider", "handler", "timeout", "args", "_i", "delegate", "__spreadArray", "__read", "handle", "reportUnhandledError", "err", "timeoutProvider", "onUnhandledError", "config", "noop", "COMPLETE_NOTIFICATION", "createNotification", "errorNotification", "error", "nextNotification", "value", "kind", "context", "errorContext", "cb", "config", "isRoot", "_a", "errorThrown", "error", "captureError", "err", "Subscriber", "_super", "__extends", "destination", "_this", "isSubscription", "EMPTY_OBSERVER", "next", "error", "complete", "SafeSubscriber", "value", "handleStoppedNotification", "nextNotification", "err", "errorNotification", "COMPLETE_NOTIFICATION", "Subscription", "_bind", "bind", "fn", "thisArg", "ConsumerObserver", "partialObserver", "value", "error", "handleUnhandledError", "err", "SafeSubscriber", "_super", "__extends", "observerOrNext", "complete", "_this", "isFunction", "context_1", "config", "Subscriber", "handleUnhandledError", "error", "config", "captureError", "reportUnhandledError", "defaultErrorHandler", "err", "handleStoppedNotification", "notification", "subscriber", "onStoppedNotification", "timeoutProvider", "EMPTY_OBSERVER", "noop", "observable", "identity", "x", "pipe", "fns", "_i", "pipeFromArray", "identity", "input", "prev", "fn", "Observable", "subscribe", "operator", "observable", "observerOrNext", "error", "complete", "_this", "subscriber", "isSubscriber", "SafeSubscriber", "errorContext", "_a", "source", "sink", "err", "next", "promiseCtor", "getPromiseCtor", "resolve", "reject", "value", "operations", "_i", "pipeFromArray", "x", "getPromiseCtor", "promiseCtor", "_a", "config", "isObserver", "value", "isFunction", "isSubscriber", "Subscriber", "isSubscription", "hasLift", "source", "isFunction", "operate", "init", "liftedSource", "err", "createOperatorSubscriber", "destination", "onNext", "onComplete", "onError", "onFinalize", "OperatorSubscriber", "_super", "__extends", "shouldUnsubscribe", "_this", "value", "err", "closed_1", "_a", "Subscriber", "animationFrameProvider", "callback", "request", "cancel", "delegate", "handle", "timestamp", "Subscription", "args", "_i", "__spreadArray", "__read", "ObjectUnsubscribedError", "createErrorClass", "_super", "Subject", "_super", "__extends", "_this", "operator", "subject", "AnonymousSubject", "ObjectUnsubscribedError", "value", "errorContext", "_b", "__values", "_c", "observer", "err", "observers", "_a", "subscriber", "hasError", "isStopped", "EMPTY_SUBSCRIPTION", "Subscription", "arrRemove", "thrownError", "observable", "Observable", "destination", "source", "AnonymousSubject", "_super", "__extends", "destination", "source", "_this", "value", "_b", "_a", "err", "subscriber", "EMPTY_SUBSCRIPTION", "Subject", "BehaviorSubject", "_super", "__extends", "_value", "_this", "subscriber", "subscription", "_a", "hasError", "thrownError", "value", "Subject", "dateTimestampProvider", "ReplaySubject", "_super", "__extends", "_bufferSize", "_windowTime", "_timestampProvider", "dateTimestampProvider", "_this", "value", "_a", "isStopped", "_buffer", "_infiniteTimeWindow", "subscriber", "subscription", "copy", "i", "adjustedBufferSize", "now", "last", "Subject", "Action", "_super", "__extends", "scheduler", "work", "state", "delay", "Subscription", "intervalProvider", "handler", "timeout", "args", "_i", "delegate", "__spreadArray", "__read", "handle", "AsyncAction", "_super", "__extends", "scheduler", "work", "_this", "state", "delay", "id", "_a", "_id", "intervalProvider", "_scheduler", "error", "_delay", "errored", "errorValue", "e", "actions", "arrRemove", "Action", "Scheduler", "schedulerActionCtor", "now", "work", "delay", "state", "dateTimestampProvider", "AsyncScheduler", "_super", "__extends", "SchedulerAction", "now", "Scheduler", "_this", "action", "actions", "error", "asyncScheduler", "AsyncScheduler", "AsyncAction", "async", "AnimationFrameAction", "_super", "__extends", "scheduler", "work", "_this", "id", "delay", "animationFrameProvider", "actions", "_a", "AsyncAction", "AnimationFrameScheduler", "_super", "__extends", "action", "flushId", "actions", "error", "AsyncScheduler", "animationFrameScheduler", "AnimationFrameScheduler", "AnimationFrameAction", "EMPTY", "Observable", "subscriber", "isScheduler", "value", "isFunction", "last", "arr", "popResultSelector", "args", "isFunction", "popScheduler", "isScheduler", "popNumber", "defaultValue", "isArrayLike", "x", "isPromise", "value", "isFunction", "isInteropObservable", "input", "isFunction", "observable", "isAsyncIterable", "obj", "isFunction", "createInvalidObservableTypeError", "input", "getSymbolIterator", "iterator", "isIterable", "input", "isFunction", "iterator", "readableStreamLikeToAsyncGenerator", "readableStream", "reader", "__await", "_a", "_b", "value", "done", "isReadableStreamLike", "obj", "isFunction", "innerFrom", "input", "Observable", "isInteropObservable", "fromInteropObservable", "isArrayLike", "fromArrayLike", "isPromise", "fromPromise", "isAsyncIterable", "fromAsyncIterable", "isIterable", "fromIterable", "isReadableStreamLike", "fromReadableStreamLike", "createInvalidObservableTypeError", "obj", "subscriber", "obs", "observable", "isFunction", "array", "i", "promise", "value", "err", "reportUnhandledError", "iterable", "iterable_1", "__values", "iterable_1_1", "asyncIterable", "process", "readableStream", "readableStreamLikeToAsyncGenerator", "asyncIterable_1", "__asyncValues", "asyncIterable_1_1", "executeSchedule", "parentSubscription", "scheduler", "work", "delay", "repeat", "scheduleSubscription", "observeOn", "scheduler", "delay", "operate", "source", "subscriber", "createOperatorSubscriber", "value", "executeSchedule", "err", "subscribeOn", "scheduler", "delay", "operate", "source", "subscriber", "scheduleObservable", "input", "scheduler", "innerFrom", "subscribeOn", "observeOn", "schedulePromise", "input", "scheduler", "innerFrom", "subscribeOn", "observeOn", "scheduleArray", "input", "scheduler", "Observable", "subscriber", "i", "scheduleIterable", "input", "scheduler", "Observable", "subscriber", "iterator", "executeSchedule", "value", "done", "_a", "err", "isFunction", "scheduleAsyncIterable", "input", "scheduler", "Observable", "subscriber", "executeSchedule", "iterator", "result", "scheduleReadableStreamLike", "input", "scheduler", "scheduleAsyncIterable", "readableStreamLikeToAsyncGenerator", "scheduled", "input", "scheduler", "isInteropObservable", "scheduleObservable", "isArrayLike", "scheduleArray", "isPromise", "schedulePromise", "isAsyncIterable", "scheduleAsyncIterable", "isIterable", "scheduleIterable", "isReadableStreamLike", "scheduleReadableStreamLike", "createInvalidObservableTypeError", "from", "input", "scheduler", "scheduled", "innerFrom", "of", "args", "_i", "scheduler", "popScheduler", "from", "throwError", "errorOrErrorFactory", "scheduler", "errorFactory", "isFunction", "init", "subscriber", "Observable", "isValidDate", "value", "map", "project", "thisArg", "operate", "source", "subscriber", "index", "createOperatorSubscriber", "value", "isArray", "callOrApply", "fn", "args", "__spreadArray", "__read", "mapOneOrManyArgs", "map", "isArray", "getPrototypeOf", "objectProto", "getKeys", "argsArgArrayOrObject", "args", "first_1", "isPOJO", "keys", "key", "obj", "createObject", "keys", "values", "result", "key", "i", "combineLatest", "args", "_i", "scheduler", "popScheduler", "resultSelector", "popResultSelector", "_a", "argsArgArrayOrObject", "observables", "keys", "from", "result", "Observable", "combineLatestInit", "values", "createObject", "identity", "mapOneOrManyArgs", "valueTransform", "subscriber", "maybeSchedule", "length", "active", "remainingFirstValues", "i", "source", "hasFirstValue", "createOperatorSubscriber", "value", "execute", "subscription", "executeSchedule", "mergeInternals", "source", "subscriber", "project", "concurrent", "onBeforeNext", "expand", "innerSubScheduler", "additionalFinalizer", "buffer", "active", "index", "isComplete", "checkComplete", "outerNext", "value", "doInnerSub", "innerComplete", "innerFrom", "createOperatorSubscriber", "innerValue", "bufferedValue", "executeSchedule", "err", "mergeMap", "project", "resultSelector", "concurrent", "isFunction", "a", "i", "map", "b", "ii", "innerFrom", "operate", "source", "subscriber", "mergeInternals", "mergeAll", "concurrent", "mergeMap", "identity", "concatAll", "mergeAll", "concat", "args", "_i", "concatAll", "from", "popScheduler", "defer", "observableFactory", "Observable", "subscriber", "innerFrom", "nodeEventEmitterMethods", "eventTargetMethods", "jqueryMethods", "fromEvent", "target", "eventName", "options", "resultSelector", "isFunction", "mapOneOrManyArgs", "_a", "__read", "isEventTarget", "methodName", "handler", "isNodeStyleEventEmitter", "toCommonHandlerRegistry", "isJQueryStyleEventEmitter", "add", "remove", "isArrayLike", "mergeMap", "subTarget", "innerFrom", "Observable", "subscriber", "args", "_i", "timer", "dueTime", "intervalOrScheduler", "scheduler", "async", "intervalDuration", "isScheduler", "Observable", "subscriber", "due", "isValidDate", "n", "merge", "args", "_i", "scheduler", "popScheduler", "concurrent", "popNumber", "sources", "innerFrom", "mergeAll", "from", "EMPTY", "NEVER", "Observable", "noop", "isArray", "argsOrArgArray", "args", "filter", "predicate", "thisArg", "operate", "source", "subscriber", "index", "createOperatorSubscriber", "value", "zip", "args", "_i", "resultSelector", "popResultSelector", "sources", "argsOrArgArray", "Observable", "subscriber", "buffers", "completed", "sourceIndex", "innerFrom", "createOperatorSubscriber", "value", "buffer", "result", "__spreadArray", "__read", "i", "EMPTY", "audit", "durationSelector", "operate", "source", "subscriber", "hasValue", "lastValue", "durationSubscriber", "isComplete", "endDuration", "value", "cleanupDuration", "createOperatorSubscriber", "innerFrom", "auditTime", "duration", "scheduler", "asyncScheduler", "audit", "timer", "bufferCount", "bufferSize", "startBufferEvery", "operate", "source", "subscriber", "buffers", "count", "createOperatorSubscriber", "value", "toEmit", "buffers_1", "__values", "buffers_1_1", "buffer", "toEmit_1", "toEmit_1_1", "arrRemove", "buffers_2", "buffers_2_1", "combineLatest", "args", "_i", "resultSelector", "popResultSelector", "pipe", "__spreadArray", "__read", "mapOneOrManyArgs", "operate", "source", "subscriber", "combineLatestInit", "argsOrArgArray", "combineLatestWith", "otherSources", "_i", "combineLatest", "__spreadArray", "__read", "debounceTime", "dueTime", "scheduler", "asyncScheduler", "operate", "source", "subscriber", "activeTask", "lastValue", "lastTime", "emit", "value", "emitWhenIdle", "targetTime", "now", "createOperatorSubscriber", "take", "count", "EMPTY", "operate", "source", "subscriber", "seen", "createOperatorSubscriber", "value", "ignoreElements", "operate", "source", "subscriber", "createOperatorSubscriber", "noop", "mapTo", "value", "map", "delayWhen", "delayDurationSelector", "subscriptionDelay", "source", "concat", "take", "ignoreElements", "mergeMap", "value", "index", "innerFrom", "mapTo", "delay", "due", "scheduler", "asyncScheduler", "duration", "timer", "delayWhen", "distinctUntilChanged", "comparator", "keySelector", "identity", "defaultCompare", "operate", "source", "subscriber", "previousKey", "first", "createOperatorSubscriber", "value", "currentKey", "a", "b", "distinctUntilKeyChanged", "key", "compare", "distinctUntilChanged", "x", "y", "finalize", "callback", "operate", "source", "subscriber", "share", "options", "_a", "connector", "Subject", "_b", "resetOnError", "_c", "resetOnComplete", "_d", "resetOnRefCountZero", "wrapperSource", "connection", "resetConnection", "subject", "refCount", "hasCompleted", "hasErrored", "cancelReset", "reset", "resetAndUnsubscribe", "conn", "operate", "source", "subscriber", "dest", "handleReset", "SafeSubscriber", "value", "err", "innerFrom", "on", "args", "_i", "onSubscriber", "__spreadArray", "__read", "shareReplay", "configOrBufferSize", "windowTime", "scheduler", "bufferSize", "refCount", "_a", "_b", "_c", "share", "ReplaySubject", "startWith", "values", "_i", "scheduler", "popScheduler", "operate", "source", "subscriber", "concat", "switchMap", "project", "resultSelector", "operate", "source", "subscriber", "innerSubscriber", "index", "isComplete", "checkComplete", "createOperatorSubscriber", "value", "innerIndex", "outerIndex", "innerFrom", "innerValue", "tap", "observerOrNext", "error", "complete", "tapObserver", "isFunction", "operate", "source", "subscriber", "_a", "isUnsub", "createOperatorSubscriber", "value", "err", "_b", "identity", "withLatestFrom", "inputs", "_i", "project", "popResultSelector", "operate", "source", "subscriber", "len", "otherValues", "hasValue", "ready", "i", "innerFrom", "createOperatorSubscriber", "value", "identity", "noop", "values", "__spreadArray", "__read", "zip", "sources", "_i", "operate", "source", "subscriber", "__spreadArray", "__read", "zipWith", "otherInputs", "_i", "zip", "__spreadArray", "__read", "getElements", "selector", "node", "getElement", "el", "getOptionalElement", "getActiveElement", "_a", "_b", "_c", "_d", "observer$", "merge", "fromEvent", "debounceTime", "startWith", "map", "getActiveElement", "shareReplay", "watchElementFocus", "el", "active", "distinctUntilChanged", "appendChild", "el", "child", "node", "h", "tag", "attributes", "children", "attr", "round", "value", "digits", "watchScript", "src", "script", "h", "defer", "merge", "fromEvent", "switchMap", "throwError", "map", "finalize", "take", "entry$", "Subject", "observer$", "defer", "watchScript", "of", "map", "entries", "entry", "switchMap", "observer", "merge", "NEVER", "finalize", "shareReplay", "getElementSize", "el", "getElementContentSize", "el", "getElementContentOffset", "el", "watchElementContentOffset", "merge", "fromEvent", "auditTime", "animationFrameScheduler", "map", "startWith", "entry$", "Subject", "observer$", "defer", "of", "entries", "entry", "switchMap", "observer", "merge", "NEVER", "finalize", "shareReplay", "watchElementBoundary", "el", "threshold", "watchElementContentOffset", "map", "y", "visible", "getElementSize", "content", "getElementContentSize", "distinctUntilChanged", "toggles", "getElement", "script", "getElement", "config", "getLocation", "configuration", "translation", "key", "value", "config", "getLocation", "request", "url", "options", "Observable", "observer", "req", "event", "_a", "length", "requestJSON", "switchMap", "res", "map", "body", "shareReplay", "getComponentElement", "type", "node", "getElement", "getComponentElements", "getElements", "mountIconSearchQuery", "el", "focus$", "watchElementFocus", "value$", "merge", "fromEvent", "delay", "map", "startWith", "distinctUntilChanged", "filter", "active", "withLatestFrom", "value", "path", "combineLatest", "focus", "import_fuzzaldrin_plus", "import_fuzzaldrin_plus", "highlight", "icon", "query", "renderIconSearchResult", "file", "h", "translation", "renderPublicSponsor", "user", "title", "h", "renderPrivateSponsor", "count", "watchIconSearchResult", "el", "index$", "query$", "mode$", "combineLatest", "distinctUntilKeyChanged", "map", "icons", "icon", "value", "data", "search", "switchMap", "files", "shortcode", "combineLatestWith", "emojis", "mode", "shortcodes", "category", "mountIconSearchResult", "push$", "Subject", "boundary$", "watchElementBoundary", "filter", "meta", "getElement", "withLatestFrom", "round", "file", "list", "tap", "merge", "of", "bufferCount", "zipWith", "chunk", "result", "renderIconSearchResult", "state", "finalize", "__spreadValues", "mountIconSearch", "el", "config", "configuration", "index$", "requestJSON", "query", "getComponentElement", "result", "mode$", "BehaviorSubject", "selects", "getComponentElements", "select", "fromEvent", "map", "ev", "query$", "mountIconSearchQuery", "result$", "mountIconSearchResult", "merge", "mountSponsorship", "el", "sponsorship$", "requestJSON", "count", "getComponentElements", "total", "switchMap", "sponsorship", "from", "tap", "child", "list", "getOptionalElement", "sponsor", "renderPublicSponsor", "renderPrivateSponsor", "type", "map", "state", "__spreadValues", "setupAnalytics", "origin", "fromEvent", "ev", "el", "setupAnalytics", "component$", "switchMap", "merge", "getComponentElements", "el", "mountIconSearch", "mountSponsorship"] } ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/overrides/assets/javascripts/iconsearch_index.json�������������������0000664�0000000�0000000�00003313355�14753064456�0030474�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{"icons":{"base":"https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/material/templates/.icons/","data":{"fontawesome-brands-42-group":"fontawesome/brands/42-group.svg","fontawesome-brands-500px":"fontawesome/brands/500px.svg","fontawesome-brands-accessible-icon":"fontawesome/brands/accessible-icon.svg","fontawesome-brands-accusoft":"fontawesome/brands/accusoft.svg","fontawesome-brands-adn":"fontawesome/brands/adn.svg","fontawesome-brands-adversal":"fontawesome/brands/adversal.svg","fontawesome-brands-affiliatetheme":"fontawesome/brands/affiliatetheme.svg","fontawesome-brands-airbnb":"fontawesome/brands/airbnb.svg","fontawesome-brands-algolia":"fontawesome/brands/algolia.svg","fontawesome-brands-alipay":"fontawesome/brands/alipay.svg","fontawesome-brands-amazon-pay":"fontawesome/brands/amazon-pay.svg","fontawesome-brands-amazon":"fontawesome/brands/amazon.svg","fontawesome-brands-amilia":"fontawesome/brands/amilia.svg","fontawesome-brands-android":"fontawesome/brands/android.svg","fontawesome-brands-angellist":"fontawesome/brands/angellist.svg","fontawesome-brands-angrycreative":"fontawesome/brands/angrycreative.svg","fontawesome-brands-angular":"fontawesome/brands/angular.svg","fontawesome-brands-app-store-ios":"fontawesome/brands/app-store-ios.svg","fontawesome-brands-app-store":"fontawesome/brands/app-store.svg","fontawesome-brands-apper":"fontawesome/brands/apper.svg","fontawesome-brands-apple-pay":"fontawesome/brands/apple-pay.svg","fontawesome-brands-apple":"fontawesome/brands/apple.svg","fontawesome-brands-artstation":"fontawesome/brands/artstation.svg","fontawesome-brands-asymmetrik":"fontawesome/brands/asymmetrik.svg","fontawesome-brands-atlassian":"fontawesome/brands/atlassian.svg","fontawesome-brands-audible":"fontawesome/brands/audible.svg","fontawesome-brands-autoprefixer":"fontawesome/brands/autoprefixer.svg","fontawesome-brands-avianex":"fontawesome/brands/avianex.svg","fontawesome-brands-aviato":"fontawesome/brands/aviato.svg","fontawesome-brands-aws":"fontawesome/brands/aws.svg","fontawesome-brands-bandcamp":"fontawesome/brands/bandcamp.svg","fontawesome-brands-battle-net":"fontawesome/brands/battle-net.svg","fontawesome-brands-behance":"fontawesome/brands/behance.svg","fontawesome-brands-bilibili":"fontawesome/brands/bilibili.svg","fontawesome-brands-bimobject":"fontawesome/brands/bimobject.svg","fontawesome-brands-bitbucket":"fontawesome/brands/bitbucket.svg","fontawesome-brands-bitcoin":"fontawesome/brands/bitcoin.svg","fontawesome-brands-bity":"fontawesome/brands/bity.svg","fontawesome-brands-black-tie":"fontawesome/brands/black-tie.svg","fontawesome-brands-blackberry":"fontawesome/brands/blackberry.svg","fontawesome-brands-blogger-b":"fontawesome/brands/blogger-b.svg","fontawesome-brands-blogger":"fontawesome/brands/blogger.svg","fontawesome-brands-bluesky":"fontawesome/brands/bluesky.svg","fontawesome-brands-bluetooth-b":"fontawesome/brands/bluetooth-b.svg","fontawesome-brands-bluetooth":"fontawesome/brands/bluetooth.svg","fontawesome-brands-bootstrap":"fontawesome/brands/bootstrap.svg","fontawesome-brands-bots":"fontawesome/brands/bots.svg","fontawesome-brands-brave-reverse":"fontawesome/brands/brave-reverse.svg","fontawesome-brands-brave":"fontawesome/brands/brave.svg","fontawesome-brands-btc":"fontawesome/brands/btc.svg","fontawesome-brands-buffer":"fontawesome/brands/buffer.svg","fontawesome-brands-buromobelexperte":"fontawesome/brands/buromobelexperte.svg","fontawesome-brands-buy-n-large":"fontawesome/brands/buy-n-large.svg","fontawesome-brands-buysellads":"fontawesome/brands/buysellads.svg","fontawesome-brands-canadian-maple-leaf":"fontawesome/brands/canadian-maple-leaf.svg","fontawesome-brands-cc-amazon-pay":"fontawesome/brands/cc-amazon-pay.svg","fontawesome-brands-cc-amex":"fontawesome/brands/cc-amex.svg","fontawesome-brands-cc-apple-pay":"fontawesome/brands/cc-apple-pay.svg","fontawesome-brands-cc-diners-club":"fontawesome/brands/cc-diners-club.svg","fontawesome-brands-cc-discover":"fontawesome/brands/cc-discover.svg","fontawesome-brands-cc-jcb":"fontawesome/brands/cc-jcb.svg","fontawesome-brands-cc-mastercard":"fontawesome/brands/cc-mastercard.svg","fontawesome-brands-cc-paypal":"fontawesome/brands/cc-paypal.svg","fontawesome-brands-cc-stripe":"fontawesome/brands/cc-stripe.svg","fontawesome-brands-cc-visa":"fontawesome/brands/cc-visa.svg","fontawesome-brands-centercode":"fontawesome/brands/centercode.svg","fontawesome-brands-centos":"fontawesome/brands/centos.svg","fontawesome-brands-chrome":"fontawesome/brands/chrome.svg","fontawesome-brands-chromecast":"fontawesome/brands/chromecast.svg","fontawesome-brands-cloudflare":"fontawesome/brands/cloudflare.svg","fontawesome-brands-cloudscale":"fontawesome/brands/cloudscale.svg","fontawesome-brands-cloudsmith":"fontawesome/brands/cloudsmith.svg","fontawesome-brands-cloudversify":"fontawesome/brands/cloudversify.svg","fontawesome-brands-cmplid":"fontawesome/brands/cmplid.svg","fontawesome-brands-codepen":"fontawesome/brands/codepen.svg","fontawesome-brands-codiepie":"fontawesome/brands/codiepie.svg","fontawesome-brands-confluence":"fontawesome/brands/confluence.svg","fontawesome-brands-connectdevelop":"fontawesome/brands/connectdevelop.svg","fontawesome-brands-contao":"fontawesome/brands/contao.svg","fontawesome-brands-cotton-bureau":"fontawesome/brands/cotton-bureau.svg","fontawesome-brands-cpanel":"fontawesome/brands/cpanel.svg","fontawesome-brands-creative-commons-by":"fontawesome/brands/creative-commons-by.svg","fontawesome-brands-creative-commons-nc-eu":"fontawesome/brands/creative-commons-nc-eu.svg","fontawesome-brands-creative-commons-nc-jp":"fontawesome/brands/creative-commons-nc-jp.svg","fontawesome-brands-creative-commons-nc":"fontawesome/brands/creative-commons-nc.svg","fontawesome-brands-creative-commons-nd":"fontawesome/brands/creative-commons-nd.svg","fontawesome-brands-creative-commons-pd-alt":"fontawesome/brands/creative-commons-pd-alt.svg","fontawesome-brands-creative-commons-pd":"fontawesome/brands/creative-commons-pd.svg","fontawesome-brands-creative-commons-remix":"fontawesome/brands/creative-commons-remix.svg","fontawesome-brands-creative-commons-sa":"fontawesome/brands/creative-commons-sa.svg","fontawesome-brands-creative-commons-sampling-plus":"fontawesome/brands/creative-commons-sampling-plus.svg","fontawesome-brands-creative-commons-sampling":"fontawesome/brands/creative-commons-sampling.svg","fontawesome-brands-creative-commons-share":"fontawesome/brands/creative-commons-share.svg","fontawesome-brands-creative-commons-zero":"fontawesome/brands/creative-commons-zero.svg","fontawesome-brands-creative-commons":"fontawesome/brands/creative-commons.svg","fontawesome-brands-critical-role":"fontawesome/brands/critical-role.svg","fontawesome-brands-css":"fontawesome/brands/css.svg","fontawesome-brands-css3-alt":"fontawesome/brands/css3-alt.svg","fontawesome-brands-css3":"fontawesome/brands/css3.svg","fontawesome-brands-cuttlefish":"fontawesome/brands/cuttlefish.svg","fontawesome-brands-d-and-d-beyond":"fontawesome/brands/d-and-d-beyond.svg","fontawesome-brands-d-and-d":"fontawesome/brands/d-and-d.svg","fontawesome-brands-dailymotion":"fontawesome/brands/dailymotion.svg","fontawesome-brands-dart-lang":"fontawesome/brands/dart-lang.svg","fontawesome-brands-dashcube":"fontawesome/brands/dashcube.svg","fontawesome-brands-debian":"fontawesome/brands/debian.svg","fontawesome-brands-deezer":"fontawesome/brands/deezer.svg","fontawesome-brands-delicious":"fontawesome/brands/delicious.svg","fontawesome-brands-deploydog":"fontawesome/brands/deploydog.svg","fontawesome-brands-deskpro":"fontawesome/brands/deskpro.svg","fontawesome-brands-dev":"fontawesome/brands/dev.svg","fontawesome-brands-deviantart":"fontawesome/brands/deviantart.svg","fontawesome-brands-dhl":"fontawesome/brands/dhl.svg","fontawesome-brands-diaspora":"fontawesome/brands/diaspora.svg","fontawesome-brands-digg":"fontawesome/brands/digg.svg","fontawesome-brands-digital-ocean":"fontawesome/brands/digital-ocean.svg","fontawesome-brands-discord":"fontawesome/brands/discord.svg","fontawesome-brands-discourse":"fontawesome/brands/discourse.svg","fontawesome-brands-dochub":"fontawesome/brands/dochub.svg","fontawesome-brands-docker":"fontawesome/brands/docker.svg","fontawesome-brands-draft2digital":"fontawesome/brands/draft2digital.svg","fontawesome-brands-dribbble":"fontawesome/brands/dribbble.svg","fontawesome-brands-dropbox":"fontawesome/brands/dropbox.svg","fontawesome-brands-drupal":"fontawesome/brands/drupal.svg","fontawesome-brands-dyalog":"fontawesome/brands/dyalog.svg","fontawesome-brands-earlybirds":"fontawesome/brands/earlybirds.svg","fontawesome-brands-ebay":"fontawesome/brands/ebay.svg","fontawesome-brands-edge-legacy":"fontawesome/brands/edge-legacy.svg","fontawesome-brands-edge":"fontawesome/brands/edge.svg","fontawesome-brands-elementor":"fontawesome/brands/elementor.svg","fontawesome-brands-ello":"fontawesome/brands/ello.svg","fontawesome-brands-ember":"fontawesome/brands/ember.svg","fontawesome-brands-empire":"fontawesome/brands/empire.svg","fontawesome-brands-envira":"fontawesome/brands/envira.svg","fontawesome-brands-erlang":"fontawesome/brands/erlang.svg","fontawesome-brands-ethereum":"fontawesome/brands/ethereum.svg","fontawesome-brands-etsy":"fontawesome/brands/etsy.svg","fontawesome-brands-evernote":"fontawesome/brands/evernote.svg","fontawesome-brands-expeditedssl":"fontawesome/brands/expeditedssl.svg","fontawesome-brands-facebook-f":"fontawesome/brands/facebook-f.svg","fontawesome-brands-facebook-messenger":"fontawesome/brands/facebook-messenger.svg","fontawesome-brands-facebook":"fontawesome/brands/facebook.svg","fontawesome-brands-fantasy-flight-games":"fontawesome/brands/fantasy-flight-games.svg","fontawesome-brands-fedex":"fontawesome/brands/fedex.svg","fontawesome-brands-fedora":"fontawesome/brands/fedora.svg","fontawesome-brands-figma":"fontawesome/brands/figma.svg","fontawesome-brands-files-pinwheel":"fontawesome/brands/files-pinwheel.svg","fontawesome-brands-firefox-browser":"fontawesome/brands/firefox-browser.svg","fontawesome-brands-firefox":"fontawesome/brands/firefox.svg","fontawesome-brands-first-order-alt":"fontawesome/brands/first-order-alt.svg","fontawesome-brands-first-order":"fontawesome/brands/first-order.svg","fontawesome-brands-firstdraft":"fontawesome/brands/firstdraft.svg","fontawesome-brands-flickr":"fontawesome/brands/flickr.svg","fontawesome-brands-flipboard":"fontawesome/brands/flipboard.svg","fontawesome-brands-flutter":"fontawesome/brands/flutter.svg","fontawesome-brands-fly":"fontawesome/brands/fly.svg","fontawesome-brands-font-awesome":"fontawesome/brands/font-awesome.svg","fontawesome-brands-fonticons-fi":"fontawesome/brands/fonticons-fi.svg","fontawesome-brands-fonticons":"fontawesome/brands/fonticons.svg","fontawesome-brands-fort-awesome-alt":"fontawesome/brands/fort-awesome-alt.svg","fontawesome-brands-fort-awesome":"fontawesome/brands/fort-awesome.svg","fontawesome-brands-forumbee":"fontawesome/brands/forumbee.svg","fontawesome-brands-foursquare":"fontawesome/brands/foursquare.svg","fontawesome-brands-free-code-camp":"fontawesome/brands/free-code-camp.svg","fontawesome-brands-freebsd":"fontawesome/brands/freebsd.svg","fontawesome-brands-fulcrum":"fontawesome/brands/fulcrum.svg","fontawesome-brands-galactic-republic":"fontawesome/brands/galactic-republic.svg","fontawesome-brands-galactic-senate":"fontawesome/brands/galactic-senate.svg","fontawesome-brands-get-pocket":"fontawesome/brands/get-pocket.svg","fontawesome-brands-gg-circle":"fontawesome/brands/gg-circle.svg","fontawesome-brands-gg":"fontawesome/brands/gg.svg","fontawesome-brands-git-alt":"fontawesome/brands/git-alt.svg","fontawesome-brands-git":"fontawesome/brands/git.svg","fontawesome-brands-github-alt":"fontawesome/brands/github-alt.svg","fontawesome-brands-github":"fontawesome/brands/github.svg","fontawesome-brands-gitkraken":"fontawesome/brands/gitkraken.svg","fontawesome-brands-gitlab":"fontawesome/brands/gitlab.svg","fontawesome-brands-gitter":"fontawesome/brands/gitter.svg","fontawesome-brands-glide-g":"fontawesome/brands/glide-g.svg","fontawesome-brands-glide":"fontawesome/brands/glide.svg","fontawesome-brands-gofore":"fontawesome/brands/gofore.svg","fontawesome-brands-golang":"fontawesome/brands/golang.svg","fontawesome-brands-goodreads-g":"fontawesome/brands/goodreads-g.svg","fontawesome-brands-goodreads":"fontawesome/brands/goodreads.svg","fontawesome-brands-google-drive":"fontawesome/brands/google-drive.svg","fontawesome-brands-google-pay":"fontawesome/brands/google-pay.svg","fontawesome-brands-google-play":"fontawesome/brands/google-play.svg","fontawesome-brands-google-plus-g":"fontawesome/brands/google-plus-g.svg","fontawesome-brands-google-plus":"fontawesome/brands/google-plus.svg","fontawesome-brands-google-scholar":"fontawesome/brands/google-scholar.svg","fontawesome-brands-google-wallet":"fontawesome/brands/google-wallet.svg","fontawesome-brands-google":"fontawesome/brands/google.svg","fontawesome-brands-gratipay":"fontawesome/brands/gratipay.svg","fontawesome-brands-grav":"fontawesome/brands/grav.svg","fontawesome-brands-gripfire":"fontawesome/brands/gripfire.svg","fontawesome-brands-grunt":"fontawesome/brands/grunt.svg","fontawesome-brands-guilded":"fontawesome/brands/guilded.svg","fontawesome-brands-gulp":"fontawesome/brands/gulp.svg","fontawesome-brands-hacker-news":"fontawesome/brands/hacker-news.svg","fontawesome-brands-hackerrank":"fontawesome/brands/hackerrank.svg","fontawesome-brands-hashnode":"fontawesome/brands/hashnode.svg","fontawesome-brands-hips":"fontawesome/brands/hips.svg","fontawesome-brands-hire-a-helper":"fontawesome/brands/hire-a-helper.svg","fontawesome-brands-hive":"fontawesome/brands/hive.svg","fontawesome-brands-hooli":"fontawesome/brands/hooli.svg","fontawesome-brands-hornbill":"fontawesome/brands/hornbill.svg","fontawesome-brands-hotjar":"fontawesome/brands/hotjar.svg","fontawesome-brands-houzz":"fontawesome/brands/houzz.svg","fontawesome-brands-html5":"fontawesome/brands/html5.svg","fontawesome-brands-hubspot":"fontawesome/brands/hubspot.svg","fontawesome-brands-ideal":"fontawesome/brands/ideal.svg","fontawesome-brands-imdb":"fontawesome/brands/imdb.svg","fontawesome-brands-instagram":"fontawesome/brands/instagram.svg","fontawesome-brands-instalod":"fontawesome/brands/instalod.svg","fontawesome-brands-intercom":"fontawesome/brands/intercom.svg","fontawesome-brands-internet-explorer":"fontawesome/brands/internet-explorer.svg","fontawesome-brands-invision":"fontawesome/brands/invision.svg","fontawesome-brands-ioxhost":"fontawesome/brands/ioxhost.svg","fontawesome-brands-itch-io":"fontawesome/brands/itch-io.svg","fontawesome-brands-itunes-note":"fontawesome/brands/itunes-note.svg","fontawesome-brands-itunes":"fontawesome/brands/itunes.svg","fontawesome-brands-java":"fontawesome/brands/java.svg","fontawesome-brands-jedi-order":"fontawesome/brands/jedi-order.svg","fontawesome-brands-jenkins":"fontawesome/brands/jenkins.svg","fontawesome-brands-jira":"fontawesome/brands/jira.svg","fontawesome-brands-joget":"fontawesome/brands/joget.svg","fontawesome-brands-joomla":"fontawesome/brands/joomla.svg","fontawesome-brands-js":"fontawesome/brands/js.svg","fontawesome-brands-jsfiddle":"fontawesome/brands/jsfiddle.svg","fontawesome-brands-jxl":"fontawesome/brands/jxl.svg","fontawesome-brands-kaggle":"fontawesome/brands/kaggle.svg","fontawesome-brands-keybase":"fontawesome/brands/keybase.svg","fontawesome-brands-keycdn":"fontawesome/brands/keycdn.svg","fontawesome-brands-kickstarter-k":"fontawesome/brands/kickstarter-k.svg","fontawesome-brands-kickstarter":"fontawesome/brands/kickstarter.svg","fontawesome-brands-korvue":"fontawesome/brands/korvue.svg","fontawesome-brands-laravel":"fontawesome/brands/laravel.svg","fontawesome-brands-lastfm":"fontawesome/brands/lastfm.svg","fontawesome-brands-leanpub":"fontawesome/brands/leanpub.svg","fontawesome-brands-less":"fontawesome/brands/less.svg","fontawesome-brands-letterboxd":"fontawesome/brands/letterboxd.svg","fontawesome-brands-line":"fontawesome/brands/line.svg","fontawesome-brands-linkedin-in":"fontawesome/brands/linkedin-in.svg","fontawesome-brands-linkedin":"fontawesome/brands/linkedin.svg","fontawesome-brands-linode":"fontawesome/brands/linode.svg","fontawesome-brands-linux":"fontawesome/brands/linux.svg","fontawesome-brands-lyft":"fontawesome/brands/lyft.svg","fontawesome-brands-magento":"fontawesome/brands/magento.svg","fontawesome-brands-mailchimp":"fontawesome/brands/mailchimp.svg","fontawesome-brands-mandalorian":"fontawesome/brands/mandalorian.svg","fontawesome-brands-markdown":"fontawesome/brands/markdown.svg","fontawesome-brands-mastodon":"fontawesome/brands/mastodon.svg","fontawesome-brands-maxcdn":"fontawesome/brands/maxcdn.svg","fontawesome-brands-mdb":"fontawesome/brands/mdb.svg","fontawesome-brands-medapps":"fontawesome/brands/medapps.svg","fontawesome-brands-medium":"fontawesome/brands/medium.svg","fontawesome-brands-medrt":"fontawesome/brands/medrt.svg","fontawesome-brands-meetup":"fontawesome/brands/meetup.svg","fontawesome-brands-megaport":"fontawesome/brands/megaport.svg","fontawesome-brands-mendeley":"fontawesome/brands/mendeley.svg","fontawesome-brands-meta":"fontawesome/brands/meta.svg","fontawesome-brands-microblog":"fontawesome/brands/microblog.svg","fontawesome-brands-microsoft":"fontawesome/brands/microsoft.svg","fontawesome-brands-mintbit":"fontawesome/brands/mintbit.svg","fontawesome-brands-mix":"fontawesome/brands/mix.svg","fontawesome-brands-mixcloud":"fontawesome/brands/mixcloud.svg","fontawesome-brands-mixer":"fontawesome/brands/mixer.svg","fontawesome-brands-mizuni":"fontawesome/brands/mizuni.svg","fontawesome-brands-modx":"fontawesome/brands/modx.svg","fontawesome-brands-monero":"fontawesome/brands/monero.svg","fontawesome-brands-napster":"fontawesome/brands/napster.svg","fontawesome-brands-neos":"fontawesome/brands/neos.svg","fontawesome-brands-nfc-directional":"fontawesome/brands/nfc-directional.svg","fontawesome-brands-nfc-symbol":"fontawesome/brands/nfc-symbol.svg","fontawesome-brands-nimblr":"fontawesome/brands/nimblr.svg","fontawesome-brands-node-js":"fontawesome/brands/node-js.svg","fontawesome-brands-node":"fontawesome/brands/node.svg","fontawesome-brands-npm":"fontawesome/brands/npm.svg","fontawesome-brands-ns8":"fontawesome/brands/ns8.svg","fontawesome-brands-nutritionix":"fontawesome/brands/nutritionix.svg","fontawesome-brands-octopus-deploy":"fontawesome/brands/octopus-deploy.svg","fontawesome-brands-odnoklassniki":"fontawesome/brands/odnoklassniki.svg","fontawesome-brands-odysee":"fontawesome/brands/odysee.svg","fontawesome-brands-old-republic":"fontawesome/brands/old-republic.svg","fontawesome-brands-opencart":"fontawesome/brands/opencart.svg","fontawesome-brands-openid":"fontawesome/brands/openid.svg","fontawesome-brands-opensuse":"fontawesome/brands/opensuse.svg","fontawesome-brands-opera":"fontawesome/brands/opera.svg","fontawesome-brands-optin-monster":"fontawesome/brands/optin-monster.svg","fontawesome-brands-orcid":"fontawesome/brands/orcid.svg","fontawesome-brands-osi":"fontawesome/brands/osi.svg","fontawesome-brands-padlet":"fontawesome/brands/padlet.svg","fontawesome-brands-page4":"fontawesome/brands/page4.svg","fontawesome-brands-pagelines":"fontawesome/brands/pagelines.svg","fontawesome-brands-palfed":"fontawesome/brands/palfed.svg","fontawesome-brands-patreon":"fontawesome/brands/patreon.svg","fontawesome-brands-paypal":"fontawesome/brands/paypal.svg","fontawesome-brands-perbyte":"fontawesome/brands/perbyte.svg","fontawesome-brands-periscope":"fontawesome/brands/periscope.svg","fontawesome-brands-phabricator":"fontawesome/brands/phabricator.svg","fontawesome-brands-phoenix-framework":"fontawesome/brands/phoenix-framework.svg","fontawesome-brands-phoenix-squadron":"fontawesome/brands/phoenix-squadron.svg","fontawesome-brands-php":"fontawesome/brands/php.svg","fontawesome-brands-pied-piper-alt":"fontawesome/brands/pied-piper-alt.svg","fontawesome-brands-pied-piper-hat":"fontawesome/brands/pied-piper-hat.svg","fontawesome-brands-pied-piper-pp":"fontawesome/brands/pied-piper-pp.svg","fontawesome-brands-pied-piper":"fontawesome/brands/pied-piper.svg","fontawesome-brands-pinterest-p":"fontawesome/brands/pinterest-p.svg","fontawesome-brands-pinterest":"fontawesome/brands/pinterest.svg","fontawesome-brands-pix":"fontawesome/brands/pix.svg","fontawesome-brands-pixiv":"fontawesome/brands/pixiv.svg","fontawesome-brands-playstation":"fontawesome/brands/playstation.svg","fontawesome-brands-product-hunt":"fontawesome/brands/product-hunt.svg","fontawesome-brands-pushed":"fontawesome/brands/pushed.svg","fontawesome-brands-python":"fontawesome/brands/python.svg","fontawesome-brands-qq":"fontawesome/brands/qq.svg","fontawesome-brands-quinscape":"fontawesome/brands/quinscape.svg","fontawesome-brands-quora":"fontawesome/brands/quora.svg","fontawesome-brands-r-project":"fontawesome/brands/r-project.svg","fontawesome-brands-raspberry-pi":"fontawesome/brands/raspberry-pi.svg","fontawesome-brands-ravelry":"fontawesome/brands/ravelry.svg","fontawesome-brands-react":"fontawesome/brands/react.svg","fontawesome-brands-reacteurope":"fontawesome/brands/reacteurope.svg","fontawesome-brands-readme":"fontawesome/brands/readme.svg","fontawesome-brands-rebel":"fontawesome/brands/rebel.svg","fontawesome-brands-red-river":"fontawesome/brands/red-river.svg","fontawesome-brands-reddit-alien":"fontawesome/brands/reddit-alien.svg","fontawesome-brands-reddit":"fontawesome/brands/reddit.svg","fontawesome-brands-redhat":"fontawesome/brands/redhat.svg","fontawesome-brands-renren":"fontawesome/brands/renren.svg","fontawesome-brands-replyd":"fontawesome/brands/replyd.svg","fontawesome-brands-researchgate":"fontawesome/brands/researchgate.svg","fontawesome-brands-resolving":"fontawesome/brands/resolving.svg","fontawesome-brands-rev":"fontawesome/brands/rev.svg","fontawesome-brands-rocketchat":"fontawesome/brands/rocketchat.svg","fontawesome-brands-rockrms":"fontawesome/brands/rockrms.svg","fontawesome-brands-rust":"fontawesome/brands/rust.svg","fontawesome-brands-safari":"fontawesome/brands/safari.svg","fontawesome-brands-salesforce":"fontawesome/brands/salesforce.svg","fontawesome-brands-sass":"fontawesome/brands/sass.svg","fontawesome-brands-schlix":"fontawesome/brands/schlix.svg","fontawesome-brands-screenpal":"fontawesome/brands/screenpal.svg","fontawesome-brands-scribd":"fontawesome/brands/scribd.svg","fontawesome-brands-searchengin":"fontawesome/brands/searchengin.svg","fontawesome-brands-sellcast":"fontawesome/brands/sellcast.svg","fontawesome-brands-sellsy":"fontawesome/brands/sellsy.svg","fontawesome-brands-servicestack":"fontawesome/brands/servicestack.svg","fontawesome-brands-shirtsinbulk":"fontawesome/brands/shirtsinbulk.svg","fontawesome-brands-shoelace":"fontawesome/brands/shoelace.svg","fontawesome-brands-shopify":"fontawesome/brands/shopify.svg","fontawesome-brands-shopware":"fontawesome/brands/shopware.svg","fontawesome-brands-signal-messenger":"fontawesome/brands/signal-messenger.svg","fontawesome-brands-simplybuilt":"fontawesome/brands/simplybuilt.svg","fontawesome-brands-sistrix":"fontawesome/brands/sistrix.svg","fontawesome-brands-sith":"fontawesome/brands/sith.svg","fontawesome-brands-sitrox":"fontawesome/brands/sitrox.svg","fontawesome-brands-sketch":"fontawesome/brands/sketch.svg","fontawesome-brands-skyatlas":"fontawesome/brands/skyatlas.svg","fontawesome-brands-skype":"fontawesome/brands/skype.svg","fontawesome-brands-slack":"fontawesome/brands/slack.svg","fontawesome-brands-slideshare":"fontawesome/brands/slideshare.svg","fontawesome-brands-snapchat":"fontawesome/brands/snapchat.svg","fontawesome-brands-soundcloud":"fontawesome/brands/soundcloud.svg","fontawesome-brands-sourcetree":"fontawesome/brands/sourcetree.svg","fontawesome-brands-space-awesome":"fontawesome/brands/space-awesome.svg","fontawesome-brands-speakap":"fontawesome/brands/speakap.svg","fontawesome-brands-speaker-deck":"fontawesome/brands/speaker-deck.svg","fontawesome-brands-spotify":"fontawesome/brands/spotify.svg","fontawesome-brands-square-behance":"fontawesome/brands/square-behance.svg","fontawesome-brands-square-bluesky":"fontawesome/brands/square-bluesky.svg","fontawesome-brands-square-dribbble":"fontawesome/brands/square-dribbble.svg","fontawesome-brands-square-facebook":"fontawesome/brands/square-facebook.svg","fontawesome-brands-square-font-awesome-stroke":"fontawesome/brands/square-font-awesome-stroke.svg","fontawesome-brands-square-font-awesome":"fontawesome/brands/square-font-awesome.svg","fontawesome-brands-square-git":"fontawesome/brands/square-git.svg","fontawesome-brands-square-github":"fontawesome/brands/square-github.svg","fontawesome-brands-square-gitlab":"fontawesome/brands/square-gitlab.svg","fontawesome-brands-square-google-plus":"fontawesome/brands/square-google-plus.svg","fontawesome-brands-square-hacker-news":"fontawesome/brands/square-hacker-news.svg","fontawesome-brands-square-instagram":"fontawesome/brands/square-instagram.svg","fontawesome-brands-square-js":"fontawesome/brands/square-js.svg","fontawesome-brands-square-lastfm":"fontawesome/brands/square-lastfm.svg","fontawesome-brands-square-letterboxd":"fontawesome/brands/square-letterboxd.svg","fontawesome-brands-square-odnoklassniki":"fontawesome/brands/square-odnoklassniki.svg","fontawesome-brands-square-pied-piper":"fontawesome/brands/square-pied-piper.svg","fontawesome-brands-square-pinterest":"fontawesome/brands/square-pinterest.svg","fontawesome-brands-square-reddit":"fontawesome/brands/square-reddit.svg","fontawesome-brands-square-snapchat":"fontawesome/brands/square-snapchat.svg","fontawesome-brands-square-steam":"fontawesome/brands/square-steam.svg","fontawesome-brands-square-threads":"fontawesome/brands/square-threads.svg","fontawesome-brands-square-tumblr":"fontawesome/brands/square-tumblr.svg","fontawesome-brands-square-twitter":"fontawesome/brands/square-twitter.svg","fontawesome-brands-square-upwork":"fontawesome/brands/square-upwork.svg","fontawesome-brands-square-viadeo":"fontawesome/brands/square-viadeo.svg","fontawesome-brands-square-vimeo":"fontawesome/brands/square-vimeo.svg","fontawesome-brands-square-web-awesome-stroke":"fontawesome/brands/square-web-awesome-stroke.svg","fontawesome-brands-square-web-awesome":"fontawesome/brands/square-web-awesome.svg","fontawesome-brands-square-whatsapp":"fontawesome/brands/square-whatsapp.svg","fontawesome-brands-square-x-twitter":"fontawesome/brands/square-x-twitter.svg","fontawesome-brands-square-xing":"fontawesome/brands/square-xing.svg","fontawesome-brands-square-youtube":"fontawesome/brands/square-youtube.svg","fontawesome-brands-squarespace":"fontawesome/brands/squarespace.svg","fontawesome-brands-stack-exchange":"fontawesome/brands/stack-exchange.svg","fontawesome-brands-stack-overflow":"fontawesome/brands/stack-overflow.svg","fontawesome-brands-stackpath":"fontawesome/brands/stackpath.svg","fontawesome-brands-staylinked":"fontawesome/brands/staylinked.svg","fontawesome-brands-steam-symbol":"fontawesome/brands/steam-symbol.svg","fontawesome-brands-steam":"fontawesome/brands/steam.svg","fontawesome-brands-sticker-mule":"fontawesome/brands/sticker-mule.svg","fontawesome-brands-strava":"fontawesome/brands/strava.svg","fontawesome-brands-stripe-s":"fontawesome/brands/stripe-s.svg","fontawesome-brands-stripe":"fontawesome/brands/stripe.svg","fontawesome-brands-stubber":"fontawesome/brands/stubber.svg","fontawesome-brands-studiovinari":"fontawesome/brands/studiovinari.svg","fontawesome-brands-stumbleupon-circle":"fontawesome/brands/stumbleupon-circle.svg","fontawesome-brands-stumbleupon":"fontawesome/brands/stumbleupon.svg","fontawesome-brands-superpowers":"fontawesome/brands/superpowers.svg","fontawesome-brands-supple":"fontawesome/brands/supple.svg","fontawesome-brands-suse":"fontawesome/brands/suse.svg","fontawesome-brands-swift":"fontawesome/brands/swift.svg","fontawesome-brands-symfony":"fontawesome/brands/symfony.svg","fontawesome-brands-teamspeak":"fontawesome/brands/teamspeak.svg","fontawesome-brands-telegram":"fontawesome/brands/telegram.svg","fontawesome-brands-tencent-weibo":"fontawesome/brands/tencent-weibo.svg","fontawesome-brands-the-red-yeti":"fontawesome/brands/the-red-yeti.svg","fontawesome-brands-themeco":"fontawesome/brands/themeco.svg","fontawesome-brands-themeisle":"fontawesome/brands/themeisle.svg","fontawesome-brands-think-peaks":"fontawesome/brands/think-peaks.svg","fontawesome-brands-threads":"fontawesome/brands/threads.svg","fontawesome-brands-tiktok":"fontawesome/brands/tiktok.svg","fontawesome-brands-trade-federation":"fontawesome/brands/trade-federation.svg","fontawesome-brands-trello":"fontawesome/brands/trello.svg","fontawesome-brands-tumblr":"fontawesome/brands/tumblr.svg","fontawesome-brands-twitch":"fontawesome/brands/twitch.svg","fontawesome-brands-twitter":"fontawesome/brands/twitter.svg","fontawesome-brands-typo3":"fontawesome/brands/typo3.svg","fontawesome-brands-uber":"fontawesome/brands/uber.svg","fontawesome-brands-ubuntu":"fontawesome/brands/ubuntu.svg","fontawesome-brands-uikit":"fontawesome/brands/uikit.svg","fontawesome-brands-umbraco":"fontawesome/brands/umbraco.svg","fontawesome-brands-uncharted":"fontawesome/brands/uncharted.svg","fontawesome-brands-uniregistry":"fontawesome/brands/uniregistry.svg","fontawesome-brands-unity":"fontawesome/brands/unity.svg","fontawesome-brands-unsplash":"fontawesome/brands/unsplash.svg","fontawesome-brands-untappd":"fontawesome/brands/untappd.svg","fontawesome-brands-ups":"fontawesome/brands/ups.svg","fontawesome-brands-upwork":"fontawesome/brands/upwork.svg","fontawesome-brands-usb":"fontawesome/brands/usb.svg","fontawesome-brands-usps":"fontawesome/brands/usps.svg","fontawesome-brands-ussunnah":"fontawesome/brands/ussunnah.svg","fontawesome-brands-vaadin":"fontawesome/brands/vaadin.svg","fontawesome-brands-viacoin":"fontawesome/brands/viacoin.svg","fontawesome-brands-viadeo":"fontawesome/brands/viadeo.svg","fontawesome-brands-viber":"fontawesome/brands/viber.svg","fontawesome-brands-vimeo-v":"fontawesome/brands/vimeo-v.svg","fontawesome-brands-vimeo":"fontawesome/brands/vimeo.svg","fontawesome-brands-vine":"fontawesome/brands/vine.svg","fontawesome-brands-vk":"fontawesome/brands/vk.svg","fontawesome-brands-vnv":"fontawesome/brands/vnv.svg","fontawesome-brands-vuejs":"fontawesome/brands/vuejs.svg","fontawesome-brands-watchman-monitoring":"fontawesome/brands/watchman-monitoring.svg","fontawesome-brands-waze":"fontawesome/brands/waze.svg","fontawesome-brands-web-awesome":"fontawesome/brands/web-awesome.svg","fontawesome-brands-webflow":"fontawesome/brands/webflow.svg","fontawesome-brands-weebly":"fontawesome/brands/weebly.svg","fontawesome-brands-weibo":"fontawesome/brands/weibo.svg","fontawesome-brands-weixin":"fontawesome/brands/weixin.svg","fontawesome-brands-whatsapp":"fontawesome/brands/whatsapp.svg","fontawesome-brands-whmcs":"fontawesome/brands/whmcs.svg","fontawesome-brands-wikipedia-w":"fontawesome/brands/wikipedia-w.svg","fontawesome-brands-windows":"fontawesome/brands/windows.svg","fontawesome-brands-wirsindhandwerk":"fontawesome/brands/wirsindhandwerk.svg","fontawesome-brands-wix":"fontawesome/brands/wix.svg","fontawesome-brands-wizards-of-the-coast":"fontawesome/brands/wizards-of-the-coast.svg","fontawesome-brands-wodu":"fontawesome/brands/wodu.svg","fontawesome-brands-wolf-pack-battalion":"fontawesome/brands/wolf-pack-battalion.svg","fontawesome-brands-wordpress-simple":"fontawesome/brands/wordpress-simple.svg","fontawesome-brands-wordpress":"fontawesome/brands/wordpress.svg","fontawesome-brands-wpbeginner":"fontawesome/brands/wpbeginner.svg","fontawesome-brands-wpexplorer":"fontawesome/brands/wpexplorer.svg","fontawesome-brands-wpforms":"fontawesome/brands/wpforms.svg","fontawesome-brands-wpressr":"fontawesome/brands/wpressr.svg","fontawesome-brands-x-twitter":"fontawesome/brands/x-twitter.svg","fontawesome-brands-xbox":"fontawesome/brands/xbox.svg","fontawesome-brands-xing":"fontawesome/brands/xing.svg","fontawesome-brands-y-combinator":"fontawesome/brands/y-combinator.svg","fontawesome-brands-yahoo":"fontawesome/brands/yahoo.svg","fontawesome-brands-yammer":"fontawesome/brands/yammer.svg","fontawesome-brands-yandex-international":"fontawesome/brands/yandex-international.svg","fontawesome-brands-yandex":"fontawesome/brands/yandex.svg","fontawesome-brands-yarn":"fontawesome/brands/yarn.svg","fontawesome-brands-yelp":"fontawesome/brands/yelp.svg","fontawesome-brands-yoast":"fontawesome/brands/yoast.svg","fontawesome-brands-youtube":"fontawesome/brands/youtube.svg","fontawesome-brands-zhihu":"fontawesome/brands/zhihu.svg","fontawesome-regular-address-book":"fontawesome/regular/address-book.svg","fontawesome-regular-address-card":"fontawesome/regular/address-card.svg","fontawesome-regular-bell-slash":"fontawesome/regular/bell-slash.svg","fontawesome-regular-bell":"fontawesome/regular/bell.svg","fontawesome-regular-bookmark":"fontawesome/regular/bookmark.svg","fontawesome-regular-building":"fontawesome/regular/building.svg","fontawesome-regular-calendar-check":"fontawesome/regular/calendar-check.svg","fontawesome-regular-calendar-days":"fontawesome/regular/calendar-days.svg","fontawesome-regular-calendar-minus":"fontawesome/regular/calendar-minus.svg","fontawesome-regular-calendar-plus":"fontawesome/regular/calendar-plus.svg","fontawesome-regular-calendar-xmark":"fontawesome/regular/calendar-xmark.svg","fontawesome-regular-calendar":"fontawesome/regular/calendar.svg","fontawesome-regular-chart-bar":"fontawesome/regular/chart-bar.svg","fontawesome-regular-chess-bishop":"fontawesome/regular/chess-bishop.svg","fontawesome-regular-chess-king":"fontawesome/regular/chess-king.svg","fontawesome-regular-chess-knight":"fontawesome/regular/chess-knight.svg","fontawesome-regular-chess-pawn":"fontawesome/regular/chess-pawn.svg","fontawesome-regular-chess-queen":"fontawesome/regular/chess-queen.svg","fontawesome-regular-chess-rook":"fontawesome/regular/chess-rook.svg","fontawesome-regular-circle-check":"fontawesome/regular/circle-check.svg","fontawesome-regular-circle-dot":"fontawesome/regular/circle-dot.svg","fontawesome-regular-circle-down":"fontawesome/regular/circle-down.svg","fontawesome-regular-circle-left":"fontawesome/regular/circle-left.svg","fontawesome-regular-circle-pause":"fontawesome/regular/circle-pause.svg","fontawesome-regular-circle-play":"fontawesome/regular/circle-play.svg","fontawesome-regular-circle-question":"fontawesome/regular/circle-question.svg","fontawesome-regular-circle-right":"fontawesome/regular/circle-right.svg","fontawesome-regular-circle-stop":"fontawesome/regular/circle-stop.svg","fontawesome-regular-circle-up":"fontawesome/regular/circle-up.svg","fontawesome-regular-circle-user":"fontawesome/regular/circle-user.svg","fontawesome-regular-circle-xmark":"fontawesome/regular/circle-xmark.svg","fontawesome-regular-circle":"fontawesome/regular/circle.svg","fontawesome-regular-clipboard":"fontawesome/regular/clipboard.svg","fontawesome-regular-clock":"fontawesome/regular/clock.svg","fontawesome-regular-clone":"fontawesome/regular/clone.svg","fontawesome-regular-closed-captioning":"fontawesome/regular/closed-captioning.svg","fontawesome-regular-comment-dots":"fontawesome/regular/comment-dots.svg","fontawesome-regular-comment":"fontawesome/regular/comment.svg","fontawesome-regular-comments":"fontawesome/regular/comments.svg","fontawesome-regular-compass":"fontawesome/regular/compass.svg","fontawesome-regular-copy":"fontawesome/regular/copy.svg","fontawesome-regular-copyright":"fontawesome/regular/copyright.svg","fontawesome-regular-credit-card":"fontawesome/regular/credit-card.svg","fontawesome-regular-envelope-open":"fontawesome/regular/envelope-open.svg","fontawesome-regular-envelope":"fontawesome/regular/envelope.svg","fontawesome-regular-eye-slash":"fontawesome/regular/eye-slash.svg","fontawesome-regular-eye":"fontawesome/regular/eye.svg","fontawesome-regular-face-angry":"fontawesome/regular/face-angry.svg","fontawesome-regular-face-dizzy":"fontawesome/regular/face-dizzy.svg","fontawesome-regular-face-flushed":"fontawesome/regular/face-flushed.svg","fontawesome-regular-face-frown-open":"fontawesome/regular/face-frown-open.svg","fontawesome-regular-face-frown":"fontawesome/regular/face-frown.svg","fontawesome-regular-face-grimace":"fontawesome/regular/face-grimace.svg","fontawesome-regular-face-grin-beam-sweat":"fontawesome/regular/face-grin-beam-sweat.svg","fontawesome-regular-face-grin-beam":"fontawesome/regular/face-grin-beam.svg","fontawesome-regular-face-grin-hearts":"fontawesome/regular/face-grin-hearts.svg","fontawesome-regular-face-grin-squint-tears":"fontawesome/regular/face-grin-squint-tears.svg","fontawesome-regular-face-grin-squint":"fontawesome/regular/face-grin-squint.svg","fontawesome-regular-face-grin-stars":"fontawesome/regular/face-grin-stars.svg","fontawesome-regular-face-grin-tears":"fontawesome/regular/face-grin-tears.svg","fontawesome-regular-face-grin-tongue-squint":"fontawesome/regular/face-grin-tongue-squint.svg","fontawesome-regular-face-grin-tongue-wink":"fontawesome/regular/face-grin-tongue-wink.svg","fontawesome-regular-face-grin-tongue":"fontawesome/regular/face-grin-tongue.svg","fontawesome-regular-face-grin-wide":"fontawesome/regular/face-grin-wide.svg","fontawesome-regular-face-grin-wink":"fontawesome/regular/face-grin-wink.svg","fontawesome-regular-face-grin":"fontawesome/regular/face-grin.svg","fontawesome-regular-face-kiss-beam":"fontawesome/regular/face-kiss-beam.svg","fontawesome-regular-face-kiss-wink-heart":"fontawesome/regular/face-kiss-wink-heart.svg","fontawesome-regular-face-kiss":"fontawesome/regular/face-kiss.svg","fontawesome-regular-face-laugh-beam":"fontawesome/regular/face-laugh-beam.svg","fontawesome-regular-face-laugh-squint":"fontawesome/regular/face-laugh-squint.svg","fontawesome-regular-face-laugh-wink":"fontawesome/regular/face-laugh-wink.svg","fontawesome-regular-face-laugh":"fontawesome/regular/face-laugh.svg","fontawesome-regular-face-meh-blank":"fontawesome/regular/face-meh-blank.svg","fontawesome-regular-face-meh":"fontawesome/regular/face-meh.svg","fontawesome-regular-face-rolling-eyes":"fontawesome/regular/face-rolling-eyes.svg","fontawesome-regular-face-sad-cry":"fontawesome/regular/face-sad-cry.svg","fontawesome-regular-face-sad-tear":"fontawesome/regular/face-sad-tear.svg","fontawesome-regular-face-smile-beam":"fontawesome/regular/face-smile-beam.svg","fontawesome-regular-face-smile-wink":"fontawesome/regular/face-smile-wink.svg","fontawesome-regular-face-smile":"fontawesome/regular/face-smile.svg","fontawesome-regular-face-surprise":"fontawesome/regular/face-surprise.svg","fontawesome-regular-face-tired":"fontawesome/regular/face-tired.svg","fontawesome-regular-file-audio":"fontawesome/regular/file-audio.svg","fontawesome-regular-file-code":"fontawesome/regular/file-code.svg","fontawesome-regular-file-excel":"fontawesome/regular/file-excel.svg","fontawesome-regular-file-image":"fontawesome/regular/file-image.svg","fontawesome-regular-file-lines":"fontawesome/regular/file-lines.svg","fontawesome-regular-file-pdf":"fontawesome/regular/file-pdf.svg","fontawesome-regular-file-powerpoint":"fontawesome/regular/file-powerpoint.svg","fontawesome-regular-file-video":"fontawesome/regular/file-video.svg","fontawesome-regular-file-word":"fontawesome/regular/file-word.svg","fontawesome-regular-file-zipper":"fontawesome/regular/file-zipper.svg","fontawesome-regular-file":"fontawesome/regular/file.svg","fontawesome-regular-flag":"fontawesome/regular/flag.svg","fontawesome-regular-floppy-disk":"fontawesome/regular/floppy-disk.svg","fontawesome-regular-folder-closed":"fontawesome/regular/folder-closed.svg","fontawesome-regular-folder-open":"fontawesome/regular/folder-open.svg","fontawesome-regular-folder":"fontawesome/regular/folder.svg","fontawesome-regular-font-awesome":"fontawesome/regular/font-awesome.svg","fontawesome-regular-futbol":"fontawesome/regular/futbol.svg","fontawesome-regular-gem":"fontawesome/regular/gem.svg","fontawesome-regular-hand-back-fist":"fontawesome/regular/hand-back-fist.svg","fontawesome-regular-hand-lizard":"fontawesome/regular/hand-lizard.svg","fontawesome-regular-hand-peace":"fontawesome/regular/hand-peace.svg","fontawesome-regular-hand-point-down":"fontawesome/regular/hand-point-down.svg","fontawesome-regular-hand-point-left":"fontawesome/regular/hand-point-left.svg","fontawesome-regular-hand-point-right":"fontawesome/regular/hand-point-right.svg","fontawesome-regular-hand-point-up":"fontawesome/regular/hand-point-up.svg","fontawesome-regular-hand-pointer":"fontawesome/regular/hand-pointer.svg","fontawesome-regular-hand-scissors":"fontawesome/regular/hand-scissors.svg","fontawesome-regular-hand-spock":"fontawesome/regular/hand-spock.svg","fontawesome-regular-hand":"fontawesome/regular/hand.svg","fontawesome-regular-handshake":"fontawesome/regular/handshake.svg","fontawesome-regular-hard-drive":"fontawesome/regular/hard-drive.svg","fontawesome-regular-heart":"fontawesome/regular/heart.svg","fontawesome-regular-hospital":"fontawesome/regular/hospital.svg","fontawesome-regular-hourglass-half":"fontawesome/regular/hourglass-half.svg","fontawesome-regular-hourglass":"fontawesome/regular/hourglass.svg","fontawesome-regular-id-badge":"fontawesome/regular/id-badge.svg","fontawesome-regular-id-card":"fontawesome/regular/id-card.svg","fontawesome-regular-image":"fontawesome/regular/image.svg","fontawesome-regular-images":"fontawesome/regular/images.svg","fontawesome-regular-keyboard":"fontawesome/regular/keyboard.svg","fontawesome-regular-lemon":"fontawesome/regular/lemon.svg","fontawesome-regular-life-ring":"fontawesome/regular/life-ring.svg","fontawesome-regular-lightbulb":"fontawesome/regular/lightbulb.svg","fontawesome-regular-map":"fontawesome/regular/map.svg","fontawesome-regular-message":"fontawesome/regular/message.svg","fontawesome-regular-money-bill-1":"fontawesome/regular/money-bill-1.svg","fontawesome-regular-moon":"fontawesome/regular/moon.svg","fontawesome-regular-newspaper":"fontawesome/regular/newspaper.svg","fontawesome-regular-note-sticky":"fontawesome/regular/note-sticky.svg","fontawesome-regular-object-group":"fontawesome/regular/object-group.svg","fontawesome-regular-object-ungroup":"fontawesome/regular/object-ungroup.svg","fontawesome-regular-paper-plane":"fontawesome/regular/paper-plane.svg","fontawesome-regular-paste":"fontawesome/regular/paste.svg","fontawesome-regular-pen-to-square":"fontawesome/regular/pen-to-square.svg","fontawesome-regular-rectangle-list":"fontawesome/regular/rectangle-list.svg","fontawesome-regular-rectangle-xmark":"fontawesome/regular/rectangle-xmark.svg","fontawesome-regular-registered":"fontawesome/regular/registered.svg","fontawesome-regular-share-from-square":"fontawesome/regular/share-from-square.svg","fontawesome-regular-snowflake":"fontawesome/regular/snowflake.svg","fontawesome-regular-square-caret-down":"fontawesome/regular/square-caret-down.svg","fontawesome-regular-square-caret-left":"fontawesome/regular/square-caret-left.svg","fontawesome-regular-square-caret-right":"fontawesome/regular/square-caret-right.svg","fontawesome-regular-square-caret-up":"fontawesome/regular/square-caret-up.svg","fontawesome-regular-square-check":"fontawesome/regular/square-check.svg","fontawesome-regular-square-full":"fontawesome/regular/square-full.svg","fontawesome-regular-square-minus":"fontawesome/regular/square-minus.svg","fontawesome-regular-square-plus":"fontawesome/regular/square-plus.svg","fontawesome-regular-square":"fontawesome/regular/square.svg","fontawesome-regular-star-half-stroke":"fontawesome/regular/star-half-stroke.svg","fontawesome-regular-star-half":"fontawesome/regular/star-half.svg","fontawesome-regular-star":"fontawesome/regular/star.svg","fontawesome-regular-sun":"fontawesome/regular/sun.svg","fontawesome-regular-thumbs-down":"fontawesome/regular/thumbs-down.svg","fontawesome-regular-thumbs-up":"fontawesome/regular/thumbs-up.svg","fontawesome-regular-trash-can":"fontawesome/regular/trash-can.svg","fontawesome-regular-user":"fontawesome/regular/user.svg","fontawesome-regular-window-maximize":"fontawesome/regular/window-maximize.svg","fontawesome-regular-window-minimize":"fontawesome/regular/window-minimize.svg","fontawesome-regular-window-restore":"fontawesome/regular/window-restore.svg","fontawesome-solid-0":"fontawesome/solid/0.svg","fontawesome-solid-1":"fontawesome/solid/1.svg","fontawesome-solid-2":"fontawesome/solid/2.svg","fontawesome-solid-3":"fontawesome/solid/3.svg","fontawesome-solid-4":"fontawesome/solid/4.svg","fontawesome-solid-5":"fontawesome/solid/5.svg","fontawesome-solid-6":"fontawesome/solid/6.svg","fontawesome-solid-7":"fontawesome/solid/7.svg","fontawesome-solid-8":"fontawesome/solid/8.svg","fontawesome-solid-9":"fontawesome/solid/9.svg","fontawesome-solid-a":"fontawesome/solid/a.svg","fontawesome-solid-address-book":"fontawesome/solid/address-book.svg","fontawesome-solid-address-card":"fontawesome/solid/address-card.svg","fontawesome-solid-align-center":"fontawesome/solid/align-center.svg","fontawesome-solid-align-justify":"fontawesome/solid/align-justify.svg","fontawesome-solid-align-left":"fontawesome/solid/align-left.svg","fontawesome-solid-align-right":"fontawesome/solid/align-right.svg","fontawesome-solid-anchor-circle-check":"fontawesome/solid/anchor-circle-check.svg","fontawesome-solid-anchor-circle-exclamation":"fontawesome/solid/anchor-circle-exclamation.svg","fontawesome-solid-anchor-circle-xmark":"fontawesome/solid/anchor-circle-xmark.svg","fontawesome-solid-anchor-lock":"fontawesome/solid/anchor-lock.svg","fontawesome-solid-anchor":"fontawesome/solid/anchor.svg","fontawesome-solid-angle-down":"fontawesome/solid/angle-down.svg","fontawesome-solid-angle-left":"fontawesome/solid/angle-left.svg","fontawesome-solid-angle-right":"fontawesome/solid/angle-right.svg","fontawesome-solid-angle-up":"fontawesome/solid/angle-up.svg","fontawesome-solid-angles-down":"fontawesome/solid/angles-down.svg","fontawesome-solid-angles-left":"fontawesome/solid/angles-left.svg","fontawesome-solid-angles-right":"fontawesome/solid/angles-right.svg","fontawesome-solid-angles-up":"fontawesome/solid/angles-up.svg","fontawesome-solid-ankh":"fontawesome/solid/ankh.svg","fontawesome-solid-apple-whole":"fontawesome/solid/apple-whole.svg","fontawesome-solid-archway":"fontawesome/solid/archway.svg","fontawesome-solid-arrow-down-1-9":"fontawesome/solid/arrow-down-1-9.svg","fontawesome-solid-arrow-down-9-1":"fontawesome/solid/arrow-down-9-1.svg","fontawesome-solid-arrow-down-a-z":"fontawesome/solid/arrow-down-a-z.svg","fontawesome-solid-arrow-down-long":"fontawesome/solid/arrow-down-long.svg","fontawesome-solid-arrow-down-short-wide":"fontawesome/solid/arrow-down-short-wide.svg","fontawesome-solid-arrow-down-up-across-line":"fontawesome/solid/arrow-down-up-across-line.svg","fontawesome-solid-arrow-down-up-lock":"fontawesome/solid/arrow-down-up-lock.svg","fontawesome-solid-arrow-down-wide-short":"fontawesome/solid/arrow-down-wide-short.svg","fontawesome-solid-arrow-down-z-a":"fontawesome/solid/arrow-down-z-a.svg","fontawesome-solid-arrow-down":"fontawesome/solid/arrow-down.svg","fontawesome-solid-arrow-left-long":"fontawesome/solid/arrow-left-long.svg","fontawesome-solid-arrow-left":"fontawesome/solid/arrow-left.svg","fontawesome-solid-arrow-pointer":"fontawesome/solid/arrow-pointer.svg","fontawesome-solid-arrow-right-arrow-left":"fontawesome/solid/arrow-right-arrow-left.svg","fontawesome-solid-arrow-right-from-bracket":"fontawesome/solid/arrow-right-from-bracket.svg","fontawesome-solid-arrow-right-long":"fontawesome/solid/arrow-right-long.svg","fontawesome-solid-arrow-right-to-bracket":"fontawesome/solid/arrow-right-to-bracket.svg","fontawesome-solid-arrow-right-to-city":"fontawesome/solid/arrow-right-to-city.svg","fontawesome-solid-arrow-right":"fontawesome/solid/arrow-right.svg","fontawesome-solid-arrow-rotate-left":"fontawesome/solid/arrow-rotate-left.svg","fontawesome-solid-arrow-rotate-right":"fontawesome/solid/arrow-rotate-right.svg","fontawesome-solid-arrow-trend-down":"fontawesome/solid/arrow-trend-down.svg","fontawesome-solid-arrow-trend-up":"fontawesome/solid/arrow-trend-up.svg","fontawesome-solid-arrow-turn-down":"fontawesome/solid/arrow-turn-down.svg","fontawesome-solid-arrow-turn-up":"fontawesome/solid/arrow-turn-up.svg","fontawesome-solid-arrow-up-1-9":"fontawesome/solid/arrow-up-1-9.svg","fontawesome-solid-arrow-up-9-1":"fontawesome/solid/arrow-up-9-1.svg","fontawesome-solid-arrow-up-a-z":"fontawesome/solid/arrow-up-a-z.svg","fontawesome-solid-arrow-up-from-bracket":"fontawesome/solid/arrow-up-from-bracket.svg","fontawesome-solid-arrow-up-from-ground-water":"fontawesome/solid/arrow-up-from-ground-water.svg","fontawesome-solid-arrow-up-from-water-pump":"fontawesome/solid/arrow-up-from-water-pump.svg","fontawesome-solid-arrow-up-long":"fontawesome/solid/arrow-up-long.svg","fontawesome-solid-arrow-up-right-dots":"fontawesome/solid/arrow-up-right-dots.svg","fontawesome-solid-arrow-up-right-from-square":"fontawesome/solid/arrow-up-right-from-square.svg","fontawesome-solid-arrow-up-short-wide":"fontawesome/solid/arrow-up-short-wide.svg","fontawesome-solid-arrow-up-wide-short":"fontawesome/solid/arrow-up-wide-short.svg","fontawesome-solid-arrow-up-z-a":"fontawesome/solid/arrow-up-z-a.svg","fontawesome-solid-arrow-up":"fontawesome/solid/arrow-up.svg","fontawesome-solid-arrows-down-to-line":"fontawesome/solid/arrows-down-to-line.svg","fontawesome-solid-arrows-down-to-people":"fontawesome/solid/arrows-down-to-people.svg","fontawesome-solid-arrows-left-right-to-line":"fontawesome/solid/arrows-left-right-to-line.svg","fontawesome-solid-arrows-left-right":"fontawesome/solid/arrows-left-right.svg","fontawesome-solid-arrows-rotate":"fontawesome/solid/arrows-rotate.svg","fontawesome-solid-arrows-spin":"fontawesome/solid/arrows-spin.svg","fontawesome-solid-arrows-split-up-and-left":"fontawesome/solid/arrows-split-up-and-left.svg","fontawesome-solid-arrows-to-circle":"fontawesome/solid/arrows-to-circle.svg","fontawesome-solid-arrows-to-dot":"fontawesome/solid/arrows-to-dot.svg","fontawesome-solid-arrows-to-eye":"fontawesome/solid/arrows-to-eye.svg","fontawesome-solid-arrows-turn-right":"fontawesome/solid/arrows-turn-right.svg","fontawesome-solid-arrows-turn-to-dots":"fontawesome/solid/arrows-turn-to-dots.svg","fontawesome-solid-arrows-up-down-left-right":"fontawesome/solid/arrows-up-down-left-right.svg","fontawesome-solid-arrows-up-down":"fontawesome/solid/arrows-up-down.svg","fontawesome-solid-arrows-up-to-line":"fontawesome/solid/arrows-up-to-line.svg","fontawesome-solid-asterisk":"fontawesome/solid/asterisk.svg","fontawesome-solid-at":"fontawesome/solid/at.svg","fontawesome-solid-atom":"fontawesome/solid/atom.svg","fontawesome-solid-audio-description":"fontawesome/solid/audio-description.svg","fontawesome-solid-austral-sign":"fontawesome/solid/austral-sign.svg","fontawesome-solid-award":"fontawesome/solid/award.svg","fontawesome-solid-b":"fontawesome/solid/b.svg","fontawesome-solid-baby-carriage":"fontawesome/solid/baby-carriage.svg","fontawesome-solid-baby":"fontawesome/solid/baby.svg","fontawesome-solid-backward-fast":"fontawesome/solid/backward-fast.svg","fontawesome-solid-backward-step":"fontawesome/solid/backward-step.svg","fontawesome-solid-backward":"fontawesome/solid/backward.svg","fontawesome-solid-bacon":"fontawesome/solid/bacon.svg","fontawesome-solid-bacteria":"fontawesome/solid/bacteria.svg","fontawesome-solid-bacterium":"fontawesome/solid/bacterium.svg","fontawesome-solid-bag-shopping":"fontawesome/solid/bag-shopping.svg","fontawesome-solid-bahai":"fontawesome/solid/bahai.svg","fontawesome-solid-baht-sign":"fontawesome/solid/baht-sign.svg","fontawesome-solid-ban-smoking":"fontawesome/solid/ban-smoking.svg","fontawesome-solid-ban":"fontawesome/solid/ban.svg","fontawesome-solid-bandage":"fontawesome/solid/bandage.svg","fontawesome-solid-bangladeshi-taka-sign":"fontawesome/solid/bangladeshi-taka-sign.svg","fontawesome-solid-barcode":"fontawesome/solid/barcode.svg","fontawesome-solid-bars-progress":"fontawesome/solid/bars-progress.svg","fontawesome-solid-bars-staggered":"fontawesome/solid/bars-staggered.svg","fontawesome-solid-bars":"fontawesome/solid/bars.svg","fontawesome-solid-baseball-bat-ball":"fontawesome/solid/baseball-bat-ball.svg","fontawesome-solid-baseball":"fontawesome/solid/baseball.svg","fontawesome-solid-basket-shopping":"fontawesome/solid/basket-shopping.svg","fontawesome-solid-basketball":"fontawesome/solid/basketball.svg","fontawesome-solid-bath":"fontawesome/solid/bath.svg","fontawesome-solid-battery-empty":"fontawesome/solid/battery-empty.svg","fontawesome-solid-battery-full":"fontawesome/solid/battery-full.svg","fontawesome-solid-battery-half":"fontawesome/solid/battery-half.svg","fontawesome-solid-battery-quarter":"fontawesome/solid/battery-quarter.svg","fontawesome-solid-battery-three-quarters":"fontawesome/solid/battery-three-quarters.svg","fontawesome-solid-bed-pulse":"fontawesome/solid/bed-pulse.svg","fontawesome-solid-bed":"fontawesome/solid/bed.svg","fontawesome-solid-beer-mug-empty":"fontawesome/solid/beer-mug-empty.svg","fontawesome-solid-bell-concierge":"fontawesome/solid/bell-concierge.svg","fontawesome-solid-bell-slash":"fontawesome/solid/bell-slash.svg","fontawesome-solid-bell":"fontawesome/solid/bell.svg","fontawesome-solid-bezier-curve":"fontawesome/solid/bezier-curve.svg","fontawesome-solid-bicycle":"fontawesome/solid/bicycle.svg","fontawesome-solid-binoculars":"fontawesome/solid/binoculars.svg","fontawesome-solid-biohazard":"fontawesome/solid/biohazard.svg","fontawesome-solid-bitcoin-sign":"fontawesome/solid/bitcoin-sign.svg","fontawesome-solid-blender-phone":"fontawesome/solid/blender-phone.svg","fontawesome-solid-blender":"fontawesome/solid/blender.svg","fontawesome-solid-blog":"fontawesome/solid/blog.svg","fontawesome-solid-bold":"fontawesome/solid/bold.svg","fontawesome-solid-bolt-lightning":"fontawesome/solid/bolt-lightning.svg","fontawesome-solid-bolt":"fontawesome/solid/bolt.svg","fontawesome-solid-bomb":"fontawesome/solid/bomb.svg","fontawesome-solid-bone":"fontawesome/solid/bone.svg","fontawesome-solid-bong":"fontawesome/solid/bong.svg","fontawesome-solid-book-atlas":"fontawesome/solid/book-atlas.svg","fontawesome-solid-book-bible":"fontawesome/solid/book-bible.svg","fontawesome-solid-book-bookmark":"fontawesome/solid/book-bookmark.svg","fontawesome-solid-book-journal-whills":"fontawesome/solid/book-journal-whills.svg","fontawesome-solid-book-medical":"fontawesome/solid/book-medical.svg","fontawesome-solid-book-open-reader":"fontawesome/solid/book-open-reader.svg","fontawesome-solid-book-open":"fontawesome/solid/book-open.svg","fontawesome-solid-book-quran":"fontawesome/solid/book-quran.svg","fontawesome-solid-book-skull":"fontawesome/solid/book-skull.svg","fontawesome-solid-book-tanakh":"fontawesome/solid/book-tanakh.svg","fontawesome-solid-book":"fontawesome/solid/book.svg","fontawesome-solid-bookmark":"fontawesome/solid/bookmark.svg","fontawesome-solid-border-all":"fontawesome/solid/border-all.svg","fontawesome-solid-border-none":"fontawesome/solid/border-none.svg","fontawesome-solid-border-top-left":"fontawesome/solid/border-top-left.svg","fontawesome-solid-bore-hole":"fontawesome/solid/bore-hole.svg","fontawesome-solid-bottle-droplet":"fontawesome/solid/bottle-droplet.svg","fontawesome-solid-bottle-water":"fontawesome/solid/bottle-water.svg","fontawesome-solid-bowl-food":"fontawesome/solid/bowl-food.svg","fontawesome-solid-bowl-rice":"fontawesome/solid/bowl-rice.svg","fontawesome-solid-bowling-ball":"fontawesome/solid/bowling-ball.svg","fontawesome-solid-box-archive":"fontawesome/solid/box-archive.svg","fontawesome-solid-box-open":"fontawesome/solid/box-open.svg","fontawesome-solid-box-tissue":"fontawesome/solid/box-tissue.svg","fontawesome-solid-box":"fontawesome/solid/box.svg","fontawesome-solid-boxes-packing":"fontawesome/solid/boxes-packing.svg","fontawesome-solid-boxes-stacked":"fontawesome/solid/boxes-stacked.svg","fontawesome-solid-braille":"fontawesome/solid/braille.svg","fontawesome-solid-brain":"fontawesome/solid/brain.svg","fontawesome-solid-brazilian-real-sign":"fontawesome/solid/brazilian-real-sign.svg","fontawesome-solid-bread-slice":"fontawesome/solid/bread-slice.svg","fontawesome-solid-bridge-circle-check":"fontawesome/solid/bridge-circle-check.svg","fontawesome-solid-bridge-circle-exclamation":"fontawesome/solid/bridge-circle-exclamation.svg","fontawesome-solid-bridge-circle-xmark":"fontawesome/solid/bridge-circle-xmark.svg","fontawesome-solid-bridge-lock":"fontawesome/solid/bridge-lock.svg","fontawesome-solid-bridge-water":"fontawesome/solid/bridge-water.svg","fontawesome-solid-bridge":"fontawesome/solid/bridge.svg","fontawesome-solid-briefcase-medical":"fontawesome/solid/briefcase-medical.svg","fontawesome-solid-briefcase":"fontawesome/solid/briefcase.svg","fontawesome-solid-broom-ball":"fontawesome/solid/broom-ball.svg","fontawesome-solid-broom":"fontawesome/solid/broom.svg","fontawesome-solid-brush":"fontawesome/solid/brush.svg","fontawesome-solid-bucket":"fontawesome/solid/bucket.svg","fontawesome-solid-bug-slash":"fontawesome/solid/bug-slash.svg","fontawesome-solid-bug":"fontawesome/solid/bug.svg","fontawesome-solid-bugs":"fontawesome/solid/bugs.svg","fontawesome-solid-building-circle-arrow-right":"fontawesome/solid/building-circle-arrow-right.svg","fontawesome-solid-building-circle-check":"fontawesome/solid/building-circle-check.svg","fontawesome-solid-building-circle-exclamation":"fontawesome/solid/building-circle-exclamation.svg","fontawesome-solid-building-circle-xmark":"fontawesome/solid/building-circle-xmark.svg","fontawesome-solid-building-columns":"fontawesome/solid/building-columns.svg","fontawesome-solid-building-flag":"fontawesome/solid/building-flag.svg","fontawesome-solid-building-lock":"fontawesome/solid/building-lock.svg","fontawesome-solid-building-ngo":"fontawesome/solid/building-ngo.svg","fontawesome-solid-building-shield":"fontawesome/solid/building-shield.svg","fontawesome-solid-building-un":"fontawesome/solid/building-un.svg","fontawesome-solid-building-user":"fontawesome/solid/building-user.svg","fontawesome-solid-building-wheat":"fontawesome/solid/building-wheat.svg","fontawesome-solid-building":"fontawesome/solid/building.svg","fontawesome-solid-bullhorn":"fontawesome/solid/bullhorn.svg","fontawesome-solid-bullseye":"fontawesome/solid/bullseye.svg","fontawesome-solid-burger":"fontawesome/solid/burger.svg","fontawesome-solid-burst":"fontawesome/solid/burst.svg","fontawesome-solid-bus-simple":"fontawesome/solid/bus-simple.svg","fontawesome-solid-bus":"fontawesome/solid/bus.svg","fontawesome-solid-business-time":"fontawesome/solid/business-time.svg","fontawesome-solid-c":"fontawesome/solid/c.svg","fontawesome-solid-cable-car":"fontawesome/solid/cable-car.svg","fontawesome-solid-cake-candles":"fontawesome/solid/cake-candles.svg","fontawesome-solid-calculator":"fontawesome/solid/calculator.svg","fontawesome-solid-calendar-check":"fontawesome/solid/calendar-check.svg","fontawesome-solid-calendar-day":"fontawesome/solid/calendar-day.svg","fontawesome-solid-calendar-days":"fontawesome/solid/calendar-days.svg","fontawesome-solid-calendar-minus":"fontawesome/solid/calendar-minus.svg","fontawesome-solid-calendar-plus":"fontawesome/solid/calendar-plus.svg","fontawesome-solid-calendar-week":"fontawesome/solid/calendar-week.svg","fontawesome-solid-calendar-xmark":"fontawesome/solid/calendar-xmark.svg","fontawesome-solid-calendar":"fontawesome/solid/calendar.svg","fontawesome-solid-camera-retro":"fontawesome/solid/camera-retro.svg","fontawesome-solid-camera-rotate":"fontawesome/solid/camera-rotate.svg","fontawesome-solid-camera":"fontawesome/solid/camera.svg","fontawesome-solid-campground":"fontawesome/solid/campground.svg","fontawesome-solid-candy-cane":"fontawesome/solid/candy-cane.svg","fontawesome-solid-cannabis":"fontawesome/solid/cannabis.svg","fontawesome-solid-capsules":"fontawesome/solid/capsules.svg","fontawesome-solid-car-battery":"fontawesome/solid/car-battery.svg","fontawesome-solid-car-burst":"fontawesome/solid/car-burst.svg","fontawesome-solid-car-on":"fontawesome/solid/car-on.svg","fontawesome-solid-car-rear":"fontawesome/solid/car-rear.svg","fontawesome-solid-car-side":"fontawesome/solid/car-side.svg","fontawesome-solid-car-tunnel":"fontawesome/solid/car-tunnel.svg","fontawesome-solid-car":"fontawesome/solid/car.svg","fontawesome-solid-caravan":"fontawesome/solid/caravan.svg","fontawesome-solid-caret-down":"fontawesome/solid/caret-down.svg","fontawesome-solid-caret-left":"fontawesome/solid/caret-left.svg","fontawesome-solid-caret-right":"fontawesome/solid/caret-right.svg","fontawesome-solid-caret-up":"fontawesome/solid/caret-up.svg","fontawesome-solid-carrot":"fontawesome/solid/carrot.svg","fontawesome-solid-cart-arrow-down":"fontawesome/solid/cart-arrow-down.svg","fontawesome-solid-cart-flatbed-suitcase":"fontawesome/solid/cart-flatbed-suitcase.svg","fontawesome-solid-cart-flatbed":"fontawesome/solid/cart-flatbed.svg","fontawesome-solid-cart-plus":"fontawesome/solid/cart-plus.svg","fontawesome-solid-cart-shopping":"fontawesome/solid/cart-shopping.svg","fontawesome-solid-cash-register":"fontawesome/solid/cash-register.svg","fontawesome-solid-cat":"fontawesome/solid/cat.svg","fontawesome-solid-cedi-sign":"fontawesome/solid/cedi-sign.svg","fontawesome-solid-cent-sign":"fontawesome/solid/cent-sign.svg","fontawesome-solid-certificate":"fontawesome/solid/certificate.svg","fontawesome-solid-chair":"fontawesome/solid/chair.svg","fontawesome-solid-chalkboard-user":"fontawesome/solid/chalkboard-user.svg","fontawesome-solid-chalkboard":"fontawesome/solid/chalkboard.svg","fontawesome-solid-champagne-glasses":"fontawesome/solid/champagne-glasses.svg","fontawesome-solid-charging-station":"fontawesome/solid/charging-station.svg","fontawesome-solid-chart-area":"fontawesome/solid/chart-area.svg","fontawesome-solid-chart-bar":"fontawesome/solid/chart-bar.svg","fontawesome-solid-chart-column":"fontawesome/solid/chart-column.svg","fontawesome-solid-chart-diagram":"fontawesome/solid/chart-diagram.svg","fontawesome-solid-chart-gantt":"fontawesome/solid/chart-gantt.svg","fontawesome-solid-chart-line":"fontawesome/solid/chart-line.svg","fontawesome-solid-chart-pie":"fontawesome/solid/chart-pie.svg","fontawesome-solid-chart-simple":"fontawesome/solid/chart-simple.svg","fontawesome-solid-check-double":"fontawesome/solid/check-double.svg","fontawesome-solid-check-to-slot":"fontawesome/solid/check-to-slot.svg","fontawesome-solid-check":"fontawesome/solid/check.svg","fontawesome-solid-cheese":"fontawesome/solid/cheese.svg","fontawesome-solid-chess-bishop":"fontawesome/solid/chess-bishop.svg","fontawesome-solid-chess-board":"fontawesome/solid/chess-board.svg","fontawesome-solid-chess-king":"fontawesome/solid/chess-king.svg","fontawesome-solid-chess-knight":"fontawesome/solid/chess-knight.svg","fontawesome-solid-chess-pawn":"fontawesome/solid/chess-pawn.svg","fontawesome-solid-chess-queen":"fontawesome/solid/chess-queen.svg","fontawesome-solid-chess-rook":"fontawesome/solid/chess-rook.svg","fontawesome-solid-chess":"fontawesome/solid/chess.svg","fontawesome-solid-chevron-down":"fontawesome/solid/chevron-down.svg","fontawesome-solid-chevron-left":"fontawesome/solid/chevron-left.svg","fontawesome-solid-chevron-right":"fontawesome/solid/chevron-right.svg","fontawesome-solid-chevron-up":"fontawesome/solid/chevron-up.svg","fontawesome-solid-child-combatant":"fontawesome/solid/child-combatant.svg","fontawesome-solid-child-dress":"fontawesome/solid/child-dress.svg","fontawesome-solid-child-reaching":"fontawesome/solid/child-reaching.svg","fontawesome-solid-child":"fontawesome/solid/child.svg","fontawesome-solid-children":"fontawesome/solid/children.svg","fontawesome-solid-church":"fontawesome/solid/church.svg","fontawesome-solid-circle-arrow-down":"fontawesome/solid/circle-arrow-down.svg","fontawesome-solid-circle-arrow-left":"fontawesome/solid/circle-arrow-left.svg","fontawesome-solid-circle-arrow-right":"fontawesome/solid/circle-arrow-right.svg","fontawesome-solid-circle-arrow-up":"fontawesome/solid/circle-arrow-up.svg","fontawesome-solid-circle-check":"fontawesome/solid/circle-check.svg","fontawesome-solid-circle-chevron-down":"fontawesome/solid/circle-chevron-down.svg","fontawesome-solid-circle-chevron-left":"fontawesome/solid/circle-chevron-left.svg","fontawesome-solid-circle-chevron-right":"fontawesome/solid/circle-chevron-right.svg","fontawesome-solid-circle-chevron-up":"fontawesome/solid/circle-chevron-up.svg","fontawesome-solid-circle-dollar-to-slot":"fontawesome/solid/circle-dollar-to-slot.svg","fontawesome-solid-circle-dot":"fontawesome/solid/circle-dot.svg","fontawesome-solid-circle-down":"fontawesome/solid/circle-down.svg","fontawesome-solid-circle-exclamation":"fontawesome/solid/circle-exclamation.svg","fontawesome-solid-circle-h":"fontawesome/solid/circle-h.svg","fontawesome-solid-circle-half-stroke":"fontawesome/solid/circle-half-stroke.svg","fontawesome-solid-circle-info":"fontawesome/solid/circle-info.svg","fontawesome-solid-circle-left":"fontawesome/solid/circle-left.svg","fontawesome-solid-circle-minus":"fontawesome/solid/circle-minus.svg","fontawesome-solid-circle-nodes":"fontawesome/solid/circle-nodes.svg","fontawesome-solid-circle-notch":"fontawesome/solid/circle-notch.svg","fontawesome-solid-circle-pause":"fontawesome/solid/circle-pause.svg","fontawesome-solid-circle-play":"fontawesome/solid/circle-play.svg","fontawesome-solid-circle-plus":"fontawesome/solid/circle-plus.svg","fontawesome-solid-circle-question":"fontawesome/solid/circle-question.svg","fontawesome-solid-circle-radiation":"fontawesome/solid/circle-radiation.svg","fontawesome-solid-circle-right":"fontawesome/solid/circle-right.svg","fontawesome-solid-circle-stop":"fontawesome/solid/circle-stop.svg","fontawesome-solid-circle-up":"fontawesome/solid/circle-up.svg","fontawesome-solid-circle-user":"fontawesome/solid/circle-user.svg","fontawesome-solid-circle-xmark":"fontawesome/solid/circle-xmark.svg","fontawesome-solid-circle":"fontawesome/solid/circle.svg","fontawesome-solid-city":"fontawesome/solid/city.svg","fontawesome-solid-clapperboard":"fontawesome/solid/clapperboard.svg","fontawesome-solid-clipboard-check":"fontawesome/solid/clipboard-check.svg","fontawesome-solid-clipboard-list":"fontawesome/solid/clipboard-list.svg","fontawesome-solid-clipboard-question":"fontawesome/solid/clipboard-question.svg","fontawesome-solid-clipboard-user":"fontawesome/solid/clipboard-user.svg","fontawesome-solid-clipboard":"fontawesome/solid/clipboard.svg","fontawesome-solid-clock-rotate-left":"fontawesome/solid/clock-rotate-left.svg","fontawesome-solid-clock":"fontawesome/solid/clock.svg","fontawesome-solid-clone":"fontawesome/solid/clone.svg","fontawesome-solid-closed-captioning":"fontawesome/solid/closed-captioning.svg","fontawesome-solid-cloud-arrow-down":"fontawesome/solid/cloud-arrow-down.svg","fontawesome-solid-cloud-arrow-up":"fontawesome/solid/cloud-arrow-up.svg","fontawesome-solid-cloud-bolt":"fontawesome/solid/cloud-bolt.svg","fontawesome-solid-cloud-meatball":"fontawesome/solid/cloud-meatball.svg","fontawesome-solid-cloud-moon-rain":"fontawesome/solid/cloud-moon-rain.svg","fontawesome-solid-cloud-moon":"fontawesome/solid/cloud-moon.svg","fontawesome-solid-cloud-rain":"fontawesome/solid/cloud-rain.svg","fontawesome-solid-cloud-showers-heavy":"fontawesome/solid/cloud-showers-heavy.svg","fontawesome-solid-cloud-showers-water":"fontawesome/solid/cloud-showers-water.svg","fontawesome-solid-cloud-sun-rain":"fontawesome/solid/cloud-sun-rain.svg","fontawesome-solid-cloud-sun":"fontawesome/solid/cloud-sun.svg","fontawesome-solid-cloud":"fontawesome/solid/cloud.svg","fontawesome-solid-clover":"fontawesome/solid/clover.svg","fontawesome-solid-code-branch":"fontawesome/solid/code-branch.svg","fontawesome-solid-code-commit":"fontawesome/solid/code-commit.svg","fontawesome-solid-code-compare":"fontawesome/solid/code-compare.svg","fontawesome-solid-code-fork":"fontawesome/solid/code-fork.svg","fontawesome-solid-code-merge":"fontawesome/solid/code-merge.svg","fontawesome-solid-code-pull-request":"fontawesome/solid/code-pull-request.svg","fontawesome-solid-code":"fontawesome/solid/code.svg","fontawesome-solid-coins":"fontawesome/solid/coins.svg","fontawesome-solid-colon-sign":"fontawesome/solid/colon-sign.svg","fontawesome-solid-comment-dollar":"fontawesome/solid/comment-dollar.svg","fontawesome-solid-comment-dots":"fontawesome/solid/comment-dots.svg","fontawesome-solid-comment-medical":"fontawesome/solid/comment-medical.svg","fontawesome-solid-comment-nodes":"fontawesome/solid/comment-nodes.svg","fontawesome-solid-comment-slash":"fontawesome/solid/comment-slash.svg","fontawesome-solid-comment-sms":"fontawesome/solid/comment-sms.svg","fontawesome-solid-comment":"fontawesome/solid/comment.svg","fontawesome-solid-comments-dollar":"fontawesome/solid/comments-dollar.svg","fontawesome-solid-comments":"fontawesome/solid/comments.svg","fontawesome-solid-compact-disc":"fontawesome/solid/compact-disc.svg","fontawesome-solid-compass-drafting":"fontawesome/solid/compass-drafting.svg","fontawesome-solid-compass":"fontawesome/solid/compass.svg","fontawesome-solid-compress":"fontawesome/solid/compress.svg","fontawesome-solid-computer-mouse":"fontawesome/solid/computer-mouse.svg","fontawesome-solid-computer":"fontawesome/solid/computer.svg","fontawesome-solid-cookie-bite":"fontawesome/solid/cookie-bite.svg","fontawesome-solid-cookie":"fontawesome/solid/cookie.svg","fontawesome-solid-copy":"fontawesome/solid/copy.svg","fontawesome-solid-copyright":"fontawesome/solid/copyright.svg","fontawesome-solid-couch":"fontawesome/solid/couch.svg","fontawesome-solid-cow":"fontawesome/solid/cow.svg","fontawesome-solid-credit-card":"fontawesome/solid/credit-card.svg","fontawesome-solid-crop-simple":"fontawesome/solid/crop-simple.svg","fontawesome-solid-crop":"fontawesome/solid/crop.svg","fontawesome-solid-cross":"fontawesome/solid/cross.svg","fontawesome-solid-crosshairs":"fontawesome/solid/crosshairs.svg","fontawesome-solid-crow":"fontawesome/solid/crow.svg","fontawesome-solid-crown":"fontawesome/solid/crown.svg","fontawesome-solid-crutch":"fontawesome/solid/crutch.svg","fontawesome-solid-cruzeiro-sign":"fontawesome/solid/cruzeiro-sign.svg","fontawesome-solid-cube":"fontawesome/solid/cube.svg","fontawesome-solid-cubes-stacked":"fontawesome/solid/cubes-stacked.svg","fontawesome-solid-cubes":"fontawesome/solid/cubes.svg","fontawesome-solid-d":"fontawesome/solid/d.svg","fontawesome-solid-database":"fontawesome/solid/database.svg","fontawesome-solid-delete-left":"fontawesome/solid/delete-left.svg","fontawesome-solid-democrat":"fontawesome/solid/democrat.svg","fontawesome-solid-desktop":"fontawesome/solid/desktop.svg","fontawesome-solid-dharmachakra":"fontawesome/solid/dharmachakra.svg","fontawesome-solid-diagram-next":"fontawesome/solid/diagram-next.svg","fontawesome-solid-diagram-predecessor":"fontawesome/solid/diagram-predecessor.svg","fontawesome-solid-diagram-project":"fontawesome/solid/diagram-project.svg","fontawesome-solid-diagram-successor":"fontawesome/solid/diagram-successor.svg","fontawesome-solid-diamond-turn-right":"fontawesome/solid/diamond-turn-right.svg","fontawesome-solid-diamond":"fontawesome/solid/diamond.svg","fontawesome-solid-dice-d20":"fontawesome/solid/dice-d20.svg","fontawesome-solid-dice-d6":"fontawesome/solid/dice-d6.svg","fontawesome-solid-dice-five":"fontawesome/solid/dice-five.svg","fontawesome-solid-dice-four":"fontawesome/solid/dice-four.svg","fontawesome-solid-dice-one":"fontawesome/solid/dice-one.svg","fontawesome-solid-dice-six":"fontawesome/solid/dice-six.svg","fontawesome-solid-dice-three":"fontawesome/solid/dice-three.svg","fontawesome-solid-dice-two":"fontawesome/solid/dice-two.svg","fontawesome-solid-dice":"fontawesome/solid/dice.svg","fontawesome-solid-disease":"fontawesome/solid/disease.svg","fontawesome-solid-display":"fontawesome/solid/display.svg","fontawesome-solid-divide":"fontawesome/solid/divide.svg","fontawesome-solid-dna":"fontawesome/solid/dna.svg","fontawesome-solid-dog":"fontawesome/solid/dog.svg","fontawesome-solid-dollar-sign":"fontawesome/solid/dollar-sign.svg","fontawesome-solid-dolly":"fontawesome/solid/dolly.svg","fontawesome-solid-dong-sign":"fontawesome/solid/dong-sign.svg","fontawesome-solid-door-closed":"fontawesome/solid/door-closed.svg","fontawesome-solid-door-open":"fontawesome/solid/door-open.svg","fontawesome-solid-dove":"fontawesome/solid/dove.svg","fontawesome-solid-down-left-and-up-right-to-center":"fontawesome/solid/down-left-and-up-right-to-center.svg","fontawesome-solid-down-long":"fontawesome/solid/down-long.svg","fontawesome-solid-download":"fontawesome/solid/download.svg","fontawesome-solid-dragon":"fontawesome/solid/dragon.svg","fontawesome-solid-draw-polygon":"fontawesome/solid/draw-polygon.svg","fontawesome-solid-droplet-slash":"fontawesome/solid/droplet-slash.svg","fontawesome-solid-droplet":"fontawesome/solid/droplet.svg","fontawesome-solid-drum-steelpan":"fontawesome/solid/drum-steelpan.svg","fontawesome-solid-drum":"fontawesome/solid/drum.svg","fontawesome-solid-drumstick-bite":"fontawesome/solid/drumstick-bite.svg","fontawesome-solid-dumbbell":"fontawesome/solid/dumbbell.svg","fontawesome-solid-dumpster-fire":"fontawesome/solid/dumpster-fire.svg","fontawesome-solid-dumpster":"fontawesome/solid/dumpster.svg","fontawesome-solid-dungeon":"fontawesome/solid/dungeon.svg","fontawesome-solid-e":"fontawesome/solid/e.svg","fontawesome-solid-ear-deaf":"fontawesome/solid/ear-deaf.svg","fontawesome-solid-ear-listen":"fontawesome/solid/ear-listen.svg","fontawesome-solid-earth-africa":"fontawesome/solid/earth-africa.svg","fontawesome-solid-earth-americas":"fontawesome/solid/earth-americas.svg","fontawesome-solid-earth-asia":"fontawesome/solid/earth-asia.svg","fontawesome-solid-earth-europe":"fontawesome/solid/earth-europe.svg","fontawesome-solid-earth-oceania":"fontawesome/solid/earth-oceania.svg","fontawesome-solid-egg":"fontawesome/solid/egg.svg","fontawesome-solid-eject":"fontawesome/solid/eject.svg","fontawesome-solid-elevator":"fontawesome/solid/elevator.svg","fontawesome-solid-ellipsis-vertical":"fontawesome/solid/ellipsis-vertical.svg","fontawesome-solid-ellipsis":"fontawesome/solid/ellipsis.svg","fontawesome-solid-envelope-circle-check":"fontawesome/solid/envelope-circle-check.svg","fontawesome-solid-envelope-open-text":"fontawesome/solid/envelope-open-text.svg","fontawesome-solid-envelope-open":"fontawesome/solid/envelope-open.svg","fontawesome-solid-envelope":"fontawesome/solid/envelope.svg","fontawesome-solid-envelopes-bulk":"fontawesome/solid/envelopes-bulk.svg","fontawesome-solid-equals":"fontawesome/solid/equals.svg","fontawesome-solid-eraser":"fontawesome/solid/eraser.svg","fontawesome-solid-ethernet":"fontawesome/solid/ethernet.svg","fontawesome-solid-euro-sign":"fontawesome/solid/euro-sign.svg","fontawesome-solid-exclamation":"fontawesome/solid/exclamation.svg","fontawesome-solid-expand":"fontawesome/solid/expand.svg","fontawesome-solid-explosion":"fontawesome/solid/explosion.svg","fontawesome-solid-eye-dropper":"fontawesome/solid/eye-dropper.svg","fontawesome-solid-eye-low-vision":"fontawesome/solid/eye-low-vision.svg","fontawesome-solid-eye-slash":"fontawesome/solid/eye-slash.svg","fontawesome-solid-eye":"fontawesome/solid/eye.svg","fontawesome-solid-f":"fontawesome/solid/f.svg","fontawesome-solid-face-angry":"fontawesome/solid/face-angry.svg","fontawesome-solid-face-dizzy":"fontawesome/solid/face-dizzy.svg","fontawesome-solid-face-flushed":"fontawesome/solid/face-flushed.svg","fontawesome-solid-face-frown-open":"fontawesome/solid/face-frown-open.svg","fontawesome-solid-face-frown":"fontawesome/solid/face-frown.svg","fontawesome-solid-face-grimace":"fontawesome/solid/face-grimace.svg","fontawesome-solid-face-grin-beam-sweat":"fontawesome/solid/face-grin-beam-sweat.svg","fontawesome-solid-face-grin-beam":"fontawesome/solid/face-grin-beam.svg","fontawesome-solid-face-grin-hearts":"fontawesome/solid/face-grin-hearts.svg","fontawesome-solid-face-grin-squint-tears":"fontawesome/solid/face-grin-squint-tears.svg","fontawesome-solid-face-grin-squint":"fontawesome/solid/face-grin-squint.svg","fontawesome-solid-face-grin-stars":"fontawesome/solid/face-grin-stars.svg","fontawesome-solid-face-grin-tears":"fontawesome/solid/face-grin-tears.svg","fontawesome-solid-face-grin-tongue-squint":"fontawesome/solid/face-grin-tongue-squint.svg","fontawesome-solid-face-grin-tongue-wink":"fontawesome/solid/face-grin-tongue-wink.svg","fontawesome-solid-face-grin-tongue":"fontawesome/solid/face-grin-tongue.svg","fontawesome-solid-face-grin-wide":"fontawesome/solid/face-grin-wide.svg","fontawesome-solid-face-grin-wink":"fontawesome/solid/face-grin-wink.svg","fontawesome-solid-face-grin":"fontawesome/solid/face-grin.svg","fontawesome-solid-face-kiss-beam":"fontawesome/solid/face-kiss-beam.svg","fontawesome-solid-face-kiss-wink-heart":"fontawesome/solid/face-kiss-wink-heart.svg","fontawesome-solid-face-kiss":"fontawesome/solid/face-kiss.svg","fontawesome-solid-face-laugh-beam":"fontawesome/solid/face-laugh-beam.svg","fontawesome-solid-face-laugh-squint":"fontawesome/solid/face-laugh-squint.svg","fontawesome-solid-face-laugh-wink":"fontawesome/solid/face-laugh-wink.svg","fontawesome-solid-face-laugh":"fontawesome/solid/face-laugh.svg","fontawesome-solid-face-meh-blank":"fontawesome/solid/face-meh-blank.svg","fontawesome-solid-face-meh":"fontawesome/solid/face-meh.svg","fontawesome-solid-face-rolling-eyes":"fontawesome/solid/face-rolling-eyes.svg","fontawesome-solid-face-sad-cry":"fontawesome/solid/face-sad-cry.svg","fontawesome-solid-face-sad-tear":"fontawesome/solid/face-sad-tear.svg","fontawesome-solid-face-smile-beam":"fontawesome/solid/face-smile-beam.svg","fontawesome-solid-face-smile-wink":"fontawesome/solid/face-smile-wink.svg","fontawesome-solid-face-smile":"fontawesome/solid/face-smile.svg","fontawesome-solid-face-surprise":"fontawesome/solid/face-surprise.svg","fontawesome-solid-face-tired":"fontawesome/solid/face-tired.svg","fontawesome-solid-fan":"fontawesome/solid/fan.svg","fontawesome-solid-faucet-drip":"fontawesome/solid/faucet-drip.svg","fontawesome-solid-faucet":"fontawesome/solid/faucet.svg","fontawesome-solid-fax":"fontawesome/solid/fax.svg","fontawesome-solid-feather-pointed":"fontawesome/solid/feather-pointed.svg","fontawesome-solid-feather":"fontawesome/solid/feather.svg","fontawesome-solid-ferry":"fontawesome/solid/ferry.svg","fontawesome-solid-file-arrow-down":"fontawesome/solid/file-arrow-down.svg","fontawesome-solid-file-arrow-up":"fontawesome/solid/file-arrow-up.svg","fontawesome-solid-file-audio":"fontawesome/solid/file-audio.svg","fontawesome-solid-file-circle-check":"fontawesome/solid/file-circle-check.svg","fontawesome-solid-file-circle-exclamation":"fontawesome/solid/file-circle-exclamation.svg","fontawesome-solid-file-circle-minus":"fontawesome/solid/file-circle-minus.svg","fontawesome-solid-file-circle-plus":"fontawesome/solid/file-circle-plus.svg","fontawesome-solid-file-circle-question":"fontawesome/solid/file-circle-question.svg","fontawesome-solid-file-circle-xmark":"fontawesome/solid/file-circle-xmark.svg","fontawesome-solid-file-code":"fontawesome/solid/file-code.svg","fontawesome-solid-file-contract":"fontawesome/solid/file-contract.svg","fontawesome-solid-file-csv":"fontawesome/solid/file-csv.svg","fontawesome-solid-file-excel":"fontawesome/solid/file-excel.svg","fontawesome-solid-file-export":"fontawesome/solid/file-export.svg","fontawesome-solid-file-fragment":"fontawesome/solid/file-fragment.svg","fontawesome-solid-file-half-dashed":"fontawesome/solid/file-half-dashed.svg","fontawesome-solid-file-image":"fontawesome/solid/file-image.svg","fontawesome-solid-file-import":"fontawesome/solid/file-import.svg","fontawesome-solid-file-invoice-dollar":"fontawesome/solid/file-invoice-dollar.svg","fontawesome-solid-file-invoice":"fontawesome/solid/file-invoice.svg","fontawesome-solid-file-lines":"fontawesome/solid/file-lines.svg","fontawesome-solid-file-medical":"fontawesome/solid/file-medical.svg","fontawesome-solid-file-pdf":"fontawesome/solid/file-pdf.svg","fontawesome-solid-file-pen":"fontawesome/solid/file-pen.svg","fontawesome-solid-file-powerpoint":"fontawesome/solid/file-powerpoint.svg","fontawesome-solid-file-prescription":"fontawesome/solid/file-prescription.svg","fontawesome-solid-file-shield":"fontawesome/solid/file-shield.svg","fontawesome-solid-file-signature":"fontawesome/solid/file-signature.svg","fontawesome-solid-file-video":"fontawesome/solid/file-video.svg","fontawesome-solid-file-waveform":"fontawesome/solid/file-waveform.svg","fontawesome-solid-file-word":"fontawesome/solid/file-word.svg","fontawesome-solid-file-zipper":"fontawesome/solid/file-zipper.svg","fontawesome-solid-file":"fontawesome/solid/file.svg","fontawesome-solid-fill-drip":"fontawesome/solid/fill-drip.svg","fontawesome-solid-fill":"fontawesome/solid/fill.svg","fontawesome-solid-film":"fontawesome/solid/film.svg","fontawesome-solid-filter-circle-dollar":"fontawesome/solid/filter-circle-dollar.svg","fontawesome-solid-filter-circle-xmark":"fontawesome/solid/filter-circle-xmark.svg","fontawesome-solid-filter":"fontawesome/solid/filter.svg","fontawesome-solid-fingerprint":"fontawesome/solid/fingerprint.svg","fontawesome-solid-fire-burner":"fontawesome/solid/fire-burner.svg","fontawesome-solid-fire-extinguisher":"fontawesome/solid/fire-extinguisher.svg","fontawesome-solid-fire-flame-curved":"fontawesome/solid/fire-flame-curved.svg","fontawesome-solid-fire-flame-simple":"fontawesome/solid/fire-flame-simple.svg","fontawesome-solid-fire":"fontawesome/solid/fire.svg","fontawesome-solid-fish-fins":"fontawesome/solid/fish-fins.svg","fontawesome-solid-fish":"fontawesome/solid/fish.svg","fontawesome-solid-flag-checkered":"fontawesome/solid/flag-checkered.svg","fontawesome-solid-flag-usa":"fontawesome/solid/flag-usa.svg","fontawesome-solid-flag":"fontawesome/solid/flag.svg","fontawesome-solid-flask-vial":"fontawesome/solid/flask-vial.svg","fontawesome-solid-flask":"fontawesome/solid/flask.svg","fontawesome-solid-floppy-disk":"fontawesome/solid/floppy-disk.svg","fontawesome-solid-florin-sign":"fontawesome/solid/florin-sign.svg","fontawesome-solid-folder-closed":"fontawesome/solid/folder-closed.svg","fontawesome-solid-folder-minus":"fontawesome/solid/folder-minus.svg","fontawesome-solid-folder-open":"fontawesome/solid/folder-open.svg","fontawesome-solid-folder-plus":"fontawesome/solid/folder-plus.svg","fontawesome-solid-folder-tree":"fontawesome/solid/folder-tree.svg","fontawesome-solid-folder":"fontawesome/solid/folder.svg","fontawesome-solid-font-awesome":"fontawesome/solid/font-awesome.svg","fontawesome-solid-font":"fontawesome/solid/font.svg","fontawesome-solid-football":"fontawesome/solid/football.svg","fontawesome-solid-forward-fast":"fontawesome/solid/forward-fast.svg","fontawesome-solid-forward-step":"fontawesome/solid/forward-step.svg","fontawesome-solid-forward":"fontawesome/solid/forward.svg","fontawesome-solid-franc-sign":"fontawesome/solid/franc-sign.svg","fontawesome-solid-frog":"fontawesome/solid/frog.svg","fontawesome-solid-futbol":"fontawesome/solid/futbol.svg","fontawesome-solid-g":"fontawesome/solid/g.svg","fontawesome-solid-gamepad":"fontawesome/solid/gamepad.svg","fontawesome-solid-gas-pump":"fontawesome/solid/gas-pump.svg","fontawesome-solid-gauge-high":"fontawesome/solid/gauge-high.svg","fontawesome-solid-gauge-simple-high":"fontawesome/solid/gauge-simple-high.svg","fontawesome-solid-gauge-simple":"fontawesome/solid/gauge-simple.svg","fontawesome-solid-gauge":"fontawesome/solid/gauge.svg","fontawesome-solid-gavel":"fontawesome/solid/gavel.svg","fontawesome-solid-gear":"fontawesome/solid/gear.svg","fontawesome-solid-gears":"fontawesome/solid/gears.svg","fontawesome-solid-gem":"fontawesome/solid/gem.svg","fontawesome-solid-genderless":"fontawesome/solid/genderless.svg","fontawesome-solid-ghost":"fontawesome/solid/ghost.svg","fontawesome-solid-gift":"fontawesome/solid/gift.svg","fontawesome-solid-gifts":"fontawesome/solid/gifts.svg","fontawesome-solid-glass-water-droplet":"fontawesome/solid/glass-water-droplet.svg","fontawesome-solid-glass-water":"fontawesome/solid/glass-water.svg","fontawesome-solid-glasses":"fontawesome/solid/glasses.svg","fontawesome-solid-globe":"fontawesome/solid/globe.svg","fontawesome-solid-golf-ball-tee":"fontawesome/solid/golf-ball-tee.svg","fontawesome-solid-gopuram":"fontawesome/solid/gopuram.svg","fontawesome-solid-graduation-cap":"fontawesome/solid/graduation-cap.svg","fontawesome-solid-greater-than-equal":"fontawesome/solid/greater-than-equal.svg","fontawesome-solid-greater-than":"fontawesome/solid/greater-than.svg","fontawesome-solid-grip-lines-vertical":"fontawesome/solid/grip-lines-vertical.svg","fontawesome-solid-grip-lines":"fontawesome/solid/grip-lines.svg","fontawesome-solid-grip-vertical":"fontawesome/solid/grip-vertical.svg","fontawesome-solid-grip":"fontawesome/solid/grip.svg","fontawesome-solid-group-arrows-rotate":"fontawesome/solid/group-arrows-rotate.svg","fontawesome-solid-guarani-sign":"fontawesome/solid/guarani-sign.svg","fontawesome-solid-guitar":"fontawesome/solid/guitar.svg","fontawesome-solid-gun":"fontawesome/solid/gun.svg","fontawesome-solid-h":"fontawesome/solid/h.svg","fontawesome-solid-hammer":"fontawesome/solid/hammer.svg","fontawesome-solid-hamsa":"fontawesome/solid/hamsa.svg","fontawesome-solid-hand-back-fist":"fontawesome/solid/hand-back-fist.svg","fontawesome-solid-hand-dots":"fontawesome/solid/hand-dots.svg","fontawesome-solid-hand-fist":"fontawesome/solid/hand-fist.svg","fontawesome-solid-hand-holding-dollar":"fontawesome/solid/hand-holding-dollar.svg","fontawesome-solid-hand-holding-droplet":"fontawesome/solid/hand-holding-droplet.svg","fontawesome-solid-hand-holding-hand":"fontawesome/solid/hand-holding-hand.svg","fontawesome-solid-hand-holding-heart":"fontawesome/solid/hand-holding-heart.svg","fontawesome-solid-hand-holding-medical":"fontawesome/solid/hand-holding-medical.svg","fontawesome-solid-hand-holding":"fontawesome/solid/hand-holding.svg","fontawesome-solid-hand-lizard":"fontawesome/solid/hand-lizard.svg","fontawesome-solid-hand-middle-finger":"fontawesome/solid/hand-middle-finger.svg","fontawesome-solid-hand-peace":"fontawesome/solid/hand-peace.svg","fontawesome-solid-hand-point-down":"fontawesome/solid/hand-point-down.svg","fontawesome-solid-hand-point-left":"fontawesome/solid/hand-point-left.svg","fontawesome-solid-hand-point-right":"fontawesome/solid/hand-point-right.svg","fontawesome-solid-hand-point-up":"fontawesome/solid/hand-point-up.svg","fontawesome-solid-hand-pointer":"fontawesome/solid/hand-pointer.svg","fontawesome-solid-hand-scissors":"fontawesome/solid/hand-scissors.svg","fontawesome-solid-hand-sparkles":"fontawesome/solid/hand-sparkles.svg","fontawesome-solid-hand-spock":"fontawesome/solid/hand-spock.svg","fontawesome-solid-hand":"fontawesome/solid/hand.svg","fontawesome-solid-handcuffs":"fontawesome/solid/handcuffs.svg","fontawesome-solid-hands-asl-interpreting":"fontawesome/solid/hands-asl-interpreting.svg","fontawesome-solid-hands-bound":"fontawesome/solid/hands-bound.svg","fontawesome-solid-hands-bubbles":"fontawesome/solid/hands-bubbles.svg","fontawesome-solid-hands-clapping":"fontawesome/solid/hands-clapping.svg","fontawesome-solid-hands-holding-child":"fontawesome/solid/hands-holding-child.svg","fontawesome-solid-hands-holding-circle":"fontawesome/solid/hands-holding-circle.svg","fontawesome-solid-hands-holding":"fontawesome/solid/hands-holding.svg","fontawesome-solid-hands-praying":"fontawesome/solid/hands-praying.svg","fontawesome-solid-hands":"fontawesome/solid/hands.svg","fontawesome-solid-handshake-angle":"fontawesome/solid/handshake-angle.svg","fontawesome-solid-handshake-simple-slash":"fontawesome/solid/handshake-simple-slash.svg","fontawesome-solid-handshake-simple":"fontawesome/solid/handshake-simple.svg","fontawesome-solid-handshake-slash":"fontawesome/solid/handshake-slash.svg","fontawesome-solid-handshake":"fontawesome/solid/handshake.svg","fontawesome-solid-hanukiah":"fontawesome/solid/hanukiah.svg","fontawesome-solid-hard-drive":"fontawesome/solid/hard-drive.svg","fontawesome-solid-hashtag":"fontawesome/solid/hashtag.svg","fontawesome-solid-hat-cowboy-side":"fontawesome/solid/hat-cowboy-side.svg","fontawesome-solid-hat-cowboy":"fontawesome/solid/hat-cowboy.svg","fontawesome-solid-hat-wizard":"fontawesome/solid/hat-wizard.svg","fontawesome-solid-head-side-cough-slash":"fontawesome/solid/head-side-cough-slash.svg","fontawesome-solid-head-side-cough":"fontawesome/solid/head-side-cough.svg","fontawesome-solid-head-side-mask":"fontawesome/solid/head-side-mask.svg","fontawesome-solid-head-side-virus":"fontawesome/solid/head-side-virus.svg","fontawesome-solid-heading":"fontawesome/solid/heading.svg","fontawesome-solid-headphones-simple":"fontawesome/solid/headphones-simple.svg","fontawesome-solid-headphones":"fontawesome/solid/headphones.svg","fontawesome-solid-headset":"fontawesome/solid/headset.svg","fontawesome-solid-heart-circle-bolt":"fontawesome/solid/heart-circle-bolt.svg","fontawesome-solid-heart-circle-check":"fontawesome/solid/heart-circle-check.svg","fontawesome-solid-heart-circle-exclamation":"fontawesome/solid/heart-circle-exclamation.svg","fontawesome-solid-heart-circle-minus":"fontawesome/solid/heart-circle-minus.svg","fontawesome-solid-heart-circle-plus":"fontawesome/solid/heart-circle-plus.svg","fontawesome-solid-heart-circle-xmark":"fontawesome/solid/heart-circle-xmark.svg","fontawesome-solid-heart-crack":"fontawesome/solid/heart-crack.svg","fontawesome-solid-heart-pulse":"fontawesome/solid/heart-pulse.svg","fontawesome-solid-heart":"fontawesome/solid/heart.svg","fontawesome-solid-helicopter-symbol":"fontawesome/solid/helicopter-symbol.svg","fontawesome-solid-helicopter":"fontawesome/solid/helicopter.svg","fontawesome-solid-helmet-safety":"fontawesome/solid/helmet-safety.svg","fontawesome-solid-helmet-un":"fontawesome/solid/helmet-un.svg","fontawesome-solid-hexagon-nodes-bolt":"fontawesome/solid/hexagon-nodes-bolt.svg","fontawesome-solid-hexagon-nodes":"fontawesome/solid/hexagon-nodes.svg","fontawesome-solid-highlighter":"fontawesome/solid/highlighter.svg","fontawesome-solid-hill-avalanche":"fontawesome/solid/hill-avalanche.svg","fontawesome-solid-hill-rockslide":"fontawesome/solid/hill-rockslide.svg","fontawesome-solid-hippo":"fontawesome/solid/hippo.svg","fontawesome-solid-hockey-puck":"fontawesome/solid/hockey-puck.svg","fontawesome-solid-holly-berry":"fontawesome/solid/holly-berry.svg","fontawesome-solid-horse-head":"fontawesome/solid/horse-head.svg","fontawesome-solid-horse":"fontawesome/solid/horse.svg","fontawesome-solid-hospital-user":"fontawesome/solid/hospital-user.svg","fontawesome-solid-hospital":"fontawesome/solid/hospital.svg","fontawesome-solid-hot-tub-person":"fontawesome/solid/hot-tub-person.svg","fontawesome-solid-hotdog":"fontawesome/solid/hotdog.svg","fontawesome-solid-hotel":"fontawesome/solid/hotel.svg","fontawesome-solid-hourglass-end":"fontawesome/solid/hourglass-end.svg","fontawesome-solid-hourglass-half":"fontawesome/solid/hourglass-half.svg","fontawesome-solid-hourglass-start":"fontawesome/solid/hourglass-start.svg","fontawesome-solid-hourglass":"fontawesome/solid/hourglass.svg","fontawesome-solid-house-chimney-crack":"fontawesome/solid/house-chimney-crack.svg","fontawesome-solid-house-chimney-medical":"fontawesome/solid/house-chimney-medical.svg","fontawesome-solid-house-chimney-user":"fontawesome/solid/house-chimney-user.svg","fontawesome-solid-house-chimney-window":"fontawesome/solid/house-chimney-window.svg","fontawesome-solid-house-chimney":"fontawesome/solid/house-chimney.svg","fontawesome-solid-house-circle-check":"fontawesome/solid/house-circle-check.svg","fontawesome-solid-house-circle-exclamation":"fontawesome/solid/house-circle-exclamation.svg","fontawesome-solid-house-circle-xmark":"fontawesome/solid/house-circle-xmark.svg","fontawesome-solid-house-crack":"fontawesome/solid/house-crack.svg","fontawesome-solid-house-fire":"fontawesome/solid/house-fire.svg","fontawesome-solid-house-flag":"fontawesome/solid/house-flag.svg","fontawesome-solid-house-flood-water-circle-arrow-right":"fontawesome/solid/house-flood-water-circle-arrow-right.svg","fontawesome-solid-house-flood-water":"fontawesome/solid/house-flood-water.svg","fontawesome-solid-house-laptop":"fontawesome/solid/house-laptop.svg","fontawesome-solid-house-lock":"fontawesome/solid/house-lock.svg","fontawesome-solid-house-medical-circle-check":"fontawesome/solid/house-medical-circle-check.svg","fontawesome-solid-house-medical-circle-exclamation":"fontawesome/solid/house-medical-circle-exclamation.svg","fontawesome-solid-house-medical-circle-xmark":"fontawesome/solid/house-medical-circle-xmark.svg","fontawesome-solid-house-medical-flag":"fontawesome/solid/house-medical-flag.svg","fontawesome-solid-house-medical":"fontawesome/solid/house-medical.svg","fontawesome-solid-house-signal":"fontawesome/solid/house-signal.svg","fontawesome-solid-house-tsunami":"fontawesome/solid/house-tsunami.svg","fontawesome-solid-house-user":"fontawesome/solid/house-user.svg","fontawesome-solid-house":"fontawesome/solid/house.svg","fontawesome-solid-hryvnia-sign":"fontawesome/solid/hryvnia-sign.svg","fontawesome-solid-hurricane":"fontawesome/solid/hurricane.svg","fontawesome-solid-i-cursor":"fontawesome/solid/i-cursor.svg","fontawesome-solid-i":"fontawesome/solid/i.svg","fontawesome-solid-ice-cream":"fontawesome/solid/ice-cream.svg","fontawesome-solid-icicles":"fontawesome/solid/icicles.svg","fontawesome-solid-icons":"fontawesome/solid/icons.svg","fontawesome-solid-id-badge":"fontawesome/solid/id-badge.svg","fontawesome-solid-id-card-clip":"fontawesome/solid/id-card-clip.svg","fontawesome-solid-id-card":"fontawesome/solid/id-card.svg","fontawesome-solid-igloo":"fontawesome/solid/igloo.svg","fontawesome-solid-image-portrait":"fontawesome/solid/image-portrait.svg","fontawesome-solid-image":"fontawesome/solid/image.svg","fontawesome-solid-images":"fontawesome/solid/images.svg","fontawesome-solid-inbox":"fontawesome/solid/inbox.svg","fontawesome-solid-indent":"fontawesome/solid/indent.svg","fontawesome-solid-indian-rupee-sign":"fontawesome/solid/indian-rupee-sign.svg","fontawesome-solid-industry":"fontawesome/solid/industry.svg","fontawesome-solid-infinity":"fontawesome/solid/infinity.svg","fontawesome-solid-info":"fontawesome/solid/info.svg","fontawesome-solid-italic":"fontawesome/solid/italic.svg","fontawesome-solid-j":"fontawesome/solid/j.svg","fontawesome-solid-jar-wheat":"fontawesome/solid/jar-wheat.svg","fontawesome-solid-jar":"fontawesome/solid/jar.svg","fontawesome-solid-jedi":"fontawesome/solid/jedi.svg","fontawesome-solid-jet-fighter-up":"fontawesome/solid/jet-fighter-up.svg","fontawesome-solid-jet-fighter":"fontawesome/solid/jet-fighter.svg","fontawesome-solid-joint":"fontawesome/solid/joint.svg","fontawesome-solid-jug-detergent":"fontawesome/solid/jug-detergent.svg","fontawesome-solid-k":"fontawesome/solid/k.svg","fontawesome-solid-kaaba":"fontawesome/solid/kaaba.svg","fontawesome-solid-key":"fontawesome/solid/key.svg","fontawesome-solid-keyboard":"fontawesome/solid/keyboard.svg","fontawesome-solid-khanda":"fontawesome/solid/khanda.svg","fontawesome-solid-kip-sign":"fontawesome/solid/kip-sign.svg","fontawesome-solid-kit-medical":"fontawesome/solid/kit-medical.svg","fontawesome-solid-kitchen-set":"fontawesome/solid/kitchen-set.svg","fontawesome-solid-kiwi-bird":"fontawesome/solid/kiwi-bird.svg","fontawesome-solid-l":"fontawesome/solid/l.svg","fontawesome-solid-land-mine-on":"fontawesome/solid/land-mine-on.svg","fontawesome-solid-landmark-dome":"fontawesome/solid/landmark-dome.svg","fontawesome-solid-landmark-flag":"fontawesome/solid/landmark-flag.svg","fontawesome-solid-landmark":"fontawesome/solid/landmark.svg","fontawesome-solid-language":"fontawesome/solid/language.svg","fontawesome-solid-laptop-code":"fontawesome/solid/laptop-code.svg","fontawesome-solid-laptop-file":"fontawesome/solid/laptop-file.svg","fontawesome-solid-laptop-medical":"fontawesome/solid/laptop-medical.svg","fontawesome-solid-laptop":"fontawesome/solid/laptop.svg","fontawesome-solid-lari-sign":"fontawesome/solid/lari-sign.svg","fontawesome-solid-layer-group":"fontawesome/solid/layer-group.svg","fontawesome-solid-leaf":"fontawesome/solid/leaf.svg","fontawesome-solid-left-long":"fontawesome/solid/left-long.svg","fontawesome-solid-left-right":"fontawesome/solid/left-right.svg","fontawesome-solid-lemon":"fontawesome/solid/lemon.svg","fontawesome-solid-less-than-equal":"fontawesome/solid/less-than-equal.svg","fontawesome-solid-less-than":"fontawesome/solid/less-than.svg","fontawesome-solid-life-ring":"fontawesome/solid/life-ring.svg","fontawesome-solid-lightbulb":"fontawesome/solid/lightbulb.svg","fontawesome-solid-lines-leaning":"fontawesome/solid/lines-leaning.svg","fontawesome-solid-link-slash":"fontawesome/solid/link-slash.svg","fontawesome-solid-link":"fontawesome/solid/link.svg","fontawesome-solid-lira-sign":"fontawesome/solid/lira-sign.svg","fontawesome-solid-list-check":"fontawesome/solid/list-check.svg","fontawesome-solid-list-ol":"fontawesome/solid/list-ol.svg","fontawesome-solid-list-ul":"fontawesome/solid/list-ul.svg","fontawesome-solid-list":"fontawesome/solid/list.svg","fontawesome-solid-litecoin-sign":"fontawesome/solid/litecoin-sign.svg","fontawesome-solid-location-arrow":"fontawesome/solid/location-arrow.svg","fontawesome-solid-location-crosshairs":"fontawesome/solid/location-crosshairs.svg","fontawesome-solid-location-dot":"fontawesome/solid/location-dot.svg","fontawesome-solid-location-pin-lock":"fontawesome/solid/location-pin-lock.svg","fontawesome-solid-location-pin":"fontawesome/solid/location-pin.svg","fontawesome-solid-lock-open":"fontawesome/solid/lock-open.svg","fontawesome-solid-lock":"fontawesome/solid/lock.svg","fontawesome-solid-locust":"fontawesome/solid/locust.svg","fontawesome-solid-lungs-virus":"fontawesome/solid/lungs-virus.svg","fontawesome-solid-lungs":"fontawesome/solid/lungs.svg","fontawesome-solid-m":"fontawesome/solid/m.svg","fontawesome-solid-magnet":"fontawesome/solid/magnet.svg","fontawesome-solid-magnifying-glass-arrow-right":"fontawesome/solid/magnifying-glass-arrow-right.svg","fontawesome-solid-magnifying-glass-chart":"fontawesome/solid/magnifying-glass-chart.svg","fontawesome-solid-magnifying-glass-dollar":"fontawesome/solid/magnifying-glass-dollar.svg","fontawesome-solid-magnifying-glass-location":"fontawesome/solid/magnifying-glass-location.svg","fontawesome-solid-magnifying-glass-minus":"fontawesome/solid/magnifying-glass-minus.svg","fontawesome-solid-magnifying-glass-plus":"fontawesome/solid/magnifying-glass-plus.svg","fontawesome-solid-magnifying-glass":"fontawesome/solid/magnifying-glass.svg","fontawesome-solid-manat-sign":"fontawesome/solid/manat-sign.svg","fontawesome-solid-map-location-dot":"fontawesome/solid/map-location-dot.svg","fontawesome-solid-map-location":"fontawesome/solid/map-location.svg","fontawesome-solid-map-pin":"fontawesome/solid/map-pin.svg","fontawesome-solid-map":"fontawesome/solid/map.svg","fontawesome-solid-marker":"fontawesome/solid/marker.svg","fontawesome-solid-mars-and-venus-burst":"fontawesome/solid/mars-and-venus-burst.svg","fontawesome-solid-mars-and-venus":"fontawesome/solid/mars-and-venus.svg","fontawesome-solid-mars-double":"fontawesome/solid/mars-double.svg","fontawesome-solid-mars-stroke-right":"fontawesome/solid/mars-stroke-right.svg","fontawesome-solid-mars-stroke-up":"fontawesome/solid/mars-stroke-up.svg","fontawesome-solid-mars-stroke":"fontawesome/solid/mars-stroke.svg","fontawesome-solid-mars":"fontawesome/solid/mars.svg","fontawesome-solid-martini-glass-citrus":"fontawesome/solid/martini-glass-citrus.svg","fontawesome-solid-martini-glass-empty":"fontawesome/solid/martini-glass-empty.svg","fontawesome-solid-martini-glass":"fontawesome/solid/martini-glass.svg","fontawesome-solid-mask-face":"fontawesome/solid/mask-face.svg","fontawesome-solid-mask-ventilator":"fontawesome/solid/mask-ventilator.svg","fontawesome-solid-mask":"fontawesome/solid/mask.svg","fontawesome-solid-masks-theater":"fontawesome/solid/masks-theater.svg","fontawesome-solid-mattress-pillow":"fontawesome/solid/mattress-pillow.svg","fontawesome-solid-maximize":"fontawesome/solid/maximize.svg","fontawesome-solid-medal":"fontawesome/solid/medal.svg","fontawesome-solid-memory":"fontawesome/solid/memory.svg","fontawesome-solid-menorah":"fontawesome/solid/menorah.svg","fontawesome-solid-mercury":"fontawesome/solid/mercury.svg","fontawesome-solid-message":"fontawesome/solid/message.svg","fontawesome-solid-meteor":"fontawesome/solid/meteor.svg","fontawesome-solid-microchip":"fontawesome/solid/microchip.svg","fontawesome-solid-microphone-lines-slash":"fontawesome/solid/microphone-lines-slash.svg","fontawesome-solid-microphone-lines":"fontawesome/solid/microphone-lines.svg","fontawesome-solid-microphone-slash":"fontawesome/solid/microphone-slash.svg","fontawesome-solid-microphone":"fontawesome/solid/microphone.svg","fontawesome-solid-microscope":"fontawesome/solid/microscope.svg","fontawesome-solid-mill-sign":"fontawesome/solid/mill-sign.svg","fontawesome-solid-minimize":"fontawesome/solid/minimize.svg","fontawesome-solid-minus":"fontawesome/solid/minus.svg","fontawesome-solid-mitten":"fontawesome/solid/mitten.svg","fontawesome-solid-mobile-button":"fontawesome/solid/mobile-button.svg","fontawesome-solid-mobile-retro":"fontawesome/solid/mobile-retro.svg","fontawesome-solid-mobile-screen-button":"fontawesome/solid/mobile-screen-button.svg","fontawesome-solid-mobile-screen":"fontawesome/solid/mobile-screen.svg","fontawesome-solid-mobile":"fontawesome/solid/mobile.svg","fontawesome-solid-money-bill-1-wave":"fontawesome/solid/money-bill-1-wave.svg","fontawesome-solid-money-bill-1":"fontawesome/solid/money-bill-1.svg","fontawesome-solid-money-bill-transfer":"fontawesome/solid/money-bill-transfer.svg","fontawesome-solid-money-bill-trend-up":"fontawesome/solid/money-bill-trend-up.svg","fontawesome-solid-money-bill-wave":"fontawesome/solid/money-bill-wave.svg","fontawesome-solid-money-bill-wheat":"fontawesome/solid/money-bill-wheat.svg","fontawesome-solid-money-bill":"fontawesome/solid/money-bill.svg","fontawesome-solid-money-bills":"fontawesome/solid/money-bills.svg","fontawesome-solid-money-check-dollar":"fontawesome/solid/money-check-dollar.svg","fontawesome-solid-money-check":"fontawesome/solid/money-check.svg","fontawesome-solid-monument":"fontawesome/solid/monument.svg","fontawesome-solid-moon":"fontawesome/solid/moon.svg","fontawesome-solid-mortar-pestle":"fontawesome/solid/mortar-pestle.svg","fontawesome-solid-mosque":"fontawesome/solid/mosque.svg","fontawesome-solid-mosquito-net":"fontawesome/solid/mosquito-net.svg","fontawesome-solid-mosquito":"fontawesome/solid/mosquito.svg","fontawesome-solid-motorcycle":"fontawesome/solid/motorcycle.svg","fontawesome-solid-mound":"fontawesome/solid/mound.svg","fontawesome-solid-mountain-city":"fontawesome/solid/mountain-city.svg","fontawesome-solid-mountain-sun":"fontawesome/solid/mountain-sun.svg","fontawesome-solid-mountain":"fontawesome/solid/mountain.svg","fontawesome-solid-mug-hot":"fontawesome/solid/mug-hot.svg","fontawesome-solid-mug-saucer":"fontawesome/solid/mug-saucer.svg","fontawesome-solid-music":"fontawesome/solid/music.svg","fontawesome-solid-n":"fontawesome/solid/n.svg","fontawesome-solid-naira-sign":"fontawesome/solid/naira-sign.svg","fontawesome-solid-network-wired":"fontawesome/solid/network-wired.svg","fontawesome-solid-neuter":"fontawesome/solid/neuter.svg","fontawesome-solid-newspaper":"fontawesome/solid/newspaper.svg","fontawesome-solid-not-equal":"fontawesome/solid/not-equal.svg","fontawesome-solid-notdef":"fontawesome/solid/notdef.svg","fontawesome-solid-note-sticky":"fontawesome/solid/note-sticky.svg","fontawesome-solid-notes-medical":"fontawesome/solid/notes-medical.svg","fontawesome-solid-o":"fontawesome/solid/o.svg","fontawesome-solid-object-group":"fontawesome/solid/object-group.svg","fontawesome-solid-object-ungroup":"fontawesome/solid/object-ungroup.svg","fontawesome-solid-oil-can":"fontawesome/solid/oil-can.svg","fontawesome-solid-oil-well":"fontawesome/solid/oil-well.svg","fontawesome-solid-om":"fontawesome/solid/om.svg","fontawesome-solid-otter":"fontawesome/solid/otter.svg","fontawesome-solid-outdent":"fontawesome/solid/outdent.svg","fontawesome-solid-p":"fontawesome/solid/p.svg","fontawesome-solid-pager":"fontawesome/solid/pager.svg","fontawesome-solid-paint-roller":"fontawesome/solid/paint-roller.svg","fontawesome-solid-paintbrush":"fontawesome/solid/paintbrush.svg","fontawesome-solid-palette":"fontawesome/solid/palette.svg","fontawesome-solid-pallet":"fontawesome/solid/pallet.svg","fontawesome-solid-panorama":"fontawesome/solid/panorama.svg","fontawesome-solid-paper-plane":"fontawesome/solid/paper-plane.svg","fontawesome-solid-paperclip":"fontawesome/solid/paperclip.svg","fontawesome-solid-parachute-box":"fontawesome/solid/parachute-box.svg","fontawesome-solid-paragraph":"fontawesome/solid/paragraph.svg","fontawesome-solid-passport":"fontawesome/solid/passport.svg","fontawesome-solid-paste":"fontawesome/solid/paste.svg","fontawesome-solid-pause":"fontawesome/solid/pause.svg","fontawesome-solid-paw":"fontawesome/solid/paw.svg","fontawesome-solid-peace":"fontawesome/solid/peace.svg","fontawesome-solid-pen-clip":"fontawesome/solid/pen-clip.svg","fontawesome-solid-pen-fancy":"fontawesome/solid/pen-fancy.svg","fontawesome-solid-pen-nib":"fontawesome/solid/pen-nib.svg","fontawesome-solid-pen-ruler":"fontawesome/solid/pen-ruler.svg","fontawesome-solid-pen-to-square":"fontawesome/solid/pen-to-square.svg","fontawesome-solid-pen":"fontawesome/solid/pen.svg","fontawesome-solid-pencil":"fontawesome/solid/pencil.svg","fontawesome-solid-people-arrows":"fontawesome/solid/people-arrows.svg","fontawesome-solid-people-carry-box":"fontawesome/solid/people-carry-box.svg","fontawesome-solid-people-group":"fontawesome/solid/people-group.svg","fontawesome-solid-people-line":"fontawesome/solid/people-line.svg","fontawesome-solid-people-pulling":"fontawesome/solid/people-pulling.svg","fontawesome-solid-people-robbery":"fontawesome/solid/people-robbery.svg","fontawesome-solid-people-roof":"fontawesome/solid/people-roof.svg","fontawesome-solid-pepper-hot":"fontawesome/solid/pepper-hot.svg","fontawesome-solid-percent":"fontawesome/solid/percent.svg","fontawesome-solid-person-arrow-down-to-line":"fontawesome/solid/person-arrow-down-to-line.svg","fontawesome-solid-person-arrow-up-from-line":"fontawesome/solid/person-arrow-up-from-line.svg","fontawesome-solid-person-biking":"fontawesome/solid/person-biking.svg","fontawesome-solid-person-booth":"fontawesome/solid/person-booth.svg","fontawesome-solid-person-breastfeeding":"fontawesome/solid/person-breastfeeding.svg","fontawesome-solid-person-burst":"fontawesome/solid/person-burst.svg","fontawesome-solid-person-cane":"fontawesome/solid/person-cane.svg","fontawesome-solid-person-chalkboard":"fontawesome/solid/person-chalkboard.svg","fontawesome-solid-person-circle-check":"fontawesome/solid/person-circle-check.svg","fontawesome-solid-person-circle-exclamation":"fontawesome/solid/person-circle-exclamation.svg","fontawesome-solid-person-circle-minus":"fontawesome/solid/person-circle-minus.svg","fontawesome-solid-person-circle-plus":"fontawesome/solid/person-circle-plus.svg","fontawesome-solid-person-circle-question":"fontawesome/solid/person-circle-question.svg","fontawesome-solid-person-circle-xmark":"fontawesome/solid/person-circle-xmark.svg","fontawesome-solid-person-digging":"fontawesome/solid/person-digging.svg","fontawesome-solid-person-dots-from-line":"fontawesome/solid/person-dots-from-line.svg","fontawesome-solid-person-dress-burst":"fontawesome/solid/person-dress-burst.svg","fontawesome-solid-person-dress":"fontawesome/solid/person-dress.svg","fontawesome-solid-person-drowning":"fontawesome/solid/person-drowning.svg","fontawesome-solid-person-falling-burst":"fontawesome/solid/person-falling-burst.svg","fontawesome-solid-person-falling":"fontawesome/solid/person-falling.svg","fontawesome-solid-person-half-dress":"fontawesome/solid/person-half-dress.svg","fontawesome-solid-person-harassing":"fontawesome/solid/person-harassing.svg","fontawesome-solid-person-hiking":"fontawesome/solid/person-hiking.svg","fontawesome-solid-person-military-pointing":"fontawesome/solid/person-military-pointing.svg","fontawesome-solid-person-military-rifle":"fontawesome/solid/person-military-rifle.svg","fontawesome-solid-person-military-to-person":"fontawesome/solid/person-military-to-person.svg","fontawesome-solid-person-praying":"fontawesome/solid/person-praying.svg","fontawesome-solid-person-pregnant":"fontawesome/solid/person-pregnant.svg","fontawesome-solid-person-rays":"fontawesome/solid/person-rays.svg","fontawesome-solid-person-rifle":"fontawesome/solid/person-rifle.svg","fontawesome-solid-person-running":"fontawesome/solid/person-running.svg","fontawesome-solid-person-shelter":"fontawesome/solid/person-shelter.svg","fontawesome-solid-person-skating":"fontawesome/solid/person-skating.svg","fontawesome-solid-person-skiing-nordic":"fontawesome/solid/person-skiing-nordic.svg","fontawesome-solid-person-skiing":"fontawesome/solid/person-skiing.svg","fontawesome-solid-person-snowboarding":"fontawesome/solid/person-snowboarding.svg","fontawesome-solid-person-swimming":"fontawesome/solid/person-swimming.svg","fontawesome-solid-person-through-window":"fontawesome/solid/person-through-window.svg","fontawesome-solid-person-walking-arrow-loop-left":"fontawesome/solid/person-walking-arrow-loop-left.svg","fontawesome-solid-person-walking-arrow-right":"fontawesome/solid/person-walking-arrow-right.svg","fontawesome-solid-person-walking-dashed-line-arrow-right":"fontawesome/solid/person-walking-dashed-line-arrow-right.svg","fontawesome-solid-person-walking-luggage":"fontawesome/solid/person-walking-luggage.svg","fontawesome-solid-person-walking-with-cane":"fontawesome/solid/person-walking-with-cane.svg","fontawesome-solid-person-walking":"fontawesome/solid/person-walking.svg","fontawesome-solid-person":"fontawesome/solid/person.svg","fontawesome-solid-peseta-sign":"fontawesome/solid/peseta-sign.svg","fontawesome-solid-peso-sign":"fontawesome/solid/peso-sign.svg","fontawesome-solid-phone-flip":"fontawesome/solid/phone-flip.svg","fontawesome-solid-phone-slash":"fontawesome/solid/phone-slash.svg","fontawesome-solid-phone-volume":"fontawesome/solid/phone-volume.svg","fontawesome-solid-phone":"fontawesome/solid/phone.svg","fontawesome-solid-photo-film":"fontawesome/solid/photo-film.svg","fontawesome-solid-piggy-bank":"fontawesome/solid/piggy-bank.svg","fontawesome-solid-pills":"fontawesome/solid/pills.svg","fontawesome-solid-pizza-slice":"fontawesome/solid/pizza-slice.svg","fontawesome-solid-place-of-worship":"fontawesome/solid/place-of-worship.svg","fontawesome-solid-plane-arrival":"fontawesome/solid/plane-arrival.svg","fontawesome-solid-plane-circle-check":"fontawesome/solid/plane-circle-check.svg","fontawesome-solid-plane-circle-exclamation":"fontawesome/solid/plane-circle-exclamation.svg","fontawesome-solid-plane-circle-xmark":"fontawesome/solid/plane-circle-xmark.svg","fontawesome-solid-plane-departure":"fontawesome/solid/plane-departure.svg","fontawesome-solid-plane-lock":"fontawesome/solid/plane-lock.svg","fontawesome-solid-plane-slash":"fontawesome/solid/plane-slash.svg","fontawesome-solid-plane-up":"fontawesome/solid/plane-up.svg","fontawesome-solid-plane":"fontawesome/solid/plane.svg","fontawesome-solid-plant-wilt":"fontawesome/solid/plant-wilt.svg","fontawesome-solid-plate-wheat":"fontawesome/solid/plate-wheat.svg","fontawesome-solid-play":"fontawesome/solid/play.svg","fontawesome-solid-plug-circle-bolt":"fontawesome/solid/plug-circle-bolt.svg","fontawesome-solid-plug-circle-check":"fontawesome/solid/plug-circle-check.svg","fontawesome-solid-plug-circle-exclamation":"fontawesome/solid/plug-circle-exclamation.svg","fontawesome-solid-plug-circle-minus":"fontawesome/solid/plug-circle-minus.svg","fontawesome-solid-plug-circle-plus":"fontawesome/solid/plug-circle-plus.svg","fontawesome-solid-plug-circle-xmark":"fontawesome/solid/plug-circle-xmark.svg","fontawesome-solid-plug":"fontawesome/solid/plug.svg","fontawesome-solid-plus-minus":"fontawesome/solid/plus-minus.svg","fontawesome-solid-plus":"fontawesome/solid/plus.svg","fontawesome-solid-podcast":"fontawesome/solid/podcast.svg","fontawesome-solid-poo-storm":"fontawesome/solid/poo-storm.svg","fontawesome-solid-poo":"fontawesome/solid/poo.svg","fontawesome-solid-poop":"fontawesome/solid/poop.svg","fontawesome-solid-power-off":"fontawesome/solid/power-off.svg","fontawesome-solid-prescription-bottle-medical":"fontawesome/solid/prescription-bottle-medical.svg","fontawesome-solid-prescription-bottle":"fontawesome/solid/prescription-bottle.svg","fontawesome-solid-prescription":"fontawesome/solid/prescription.svg","fontawesome-solid-print":"fontawesome/solid/print.svg","fontawesome-solid-pump-medical":"fontawesome/solid/pump-medical.svg","fontawesome-solid-pump-soap":"fontawesome/solid/pump-soap.svg","fontawesome-solid-puzzle-piece":"fontawesome/solid/puzzle-piece.svg","fontawesome-solid-q":"fontawesome/solid/q.svg","fontawesome-solid-qrcode":"fontawesome/solid/qrcode.svg","fontawesome-solid-question":"fontawesome/solid/question.svg","fontawesome-solid-quote-left":"fontawesome/solid/quote-left.svg","fontawesome-solid-quote-right":"fontawesome/solid/quote-right.svg","fontawesome-solid-r":"fontawesome/solid/r.svg","fontawesome-solid-radiation":"fontawesome/solid/radiation.svg","fontawesome-solid-radio":"fontawesome/solid/radio.svg","fontawesome-solid-rainbow":"fontawesome/solid/rainbow.svg","fontawesome-solid-ranking-star":"fontawesome/solid/ranking-star.svg","fontawesome-solid-receipt":"fontawesome/solid/receipt.svg","fontawesome-solid-record-vinyl":"fontawesome/solid/record-vinyl.svg","fontawesome-solid-rectangle-ad":"fontawesome/solid/rectangle-ad.svg","fontawesome-solid-rectangle-list":"fontawesome/solid/rectangle-list.svg","fontawesome-solid-rectangle-xmark":"fontawesome/solid/rectangle-xmark.svg","fontawesome-solid-recycle":"fontawesome/solid/recycle.svg","fontawesome-solid-registered":"fontawesome/solid/registered.svg","fontawesome-solid-repeat":"fontawesome/solid/repeat.svg","fontawesome-solid-reply-all":"fontawesome/solid/reply-all.svg","fontawesome-solid-reply":"fontawesome/solid/reply.svg","fontawesome-solid-republican":"fontawesome/solid/republican.svg","fontawesome-solid-restroom":"fontawesome/solid/restroom.svg","fontawesome-solid-retweet":"fontawesome/solid/retweet.svg","fontawesome-solid-ribbon":"fontawesome/solid/ribbon.svg","fontawesome-solid-right-from-bracket":"fontawesome/solid/right-from-bracket.svg","fontawesome-solid-right-left":"fontawesome/solid/right-left.svg","fontawesome-solid-right-long":"fontawesome/solid/right-long.svg","fontawesome-solid-right-to-bracket":"fontawesome/solid/right-to-bracket.svg","fontawesome-solid-ring":"fontawesome/solid/ring.svg","fontawesome-solid-road-barrier":"fontawesome/solid/road-barrier.svg","fontawesome-solid-road-bridge":"fontawesome/solid/road-bridge.svg","fontawesome-solid-road-circle-check":"fontawesome/solid/road-circle-check.svg","fontawesome-solid-road-circle-exclamation":"fontawesome/solid/road-circle-exclamation.svg","fontawesome-solid-road-circle-xmark":"fontawesome/solid/road-circle-xmark.svg","fontawesome-solid-road-lock":"fontawesome/solid/road-lock.svg","fontawesome-solid-road-spikes":"fontawesome/solid/road-spikes.svg","fontawesome-solid-road":"fontawesome/solid/road.svg","fontawesome-solid-robot":"fontawesome/solid/robot.svg","fontawesome-solid-rocket":"fontawesome/solid/rocket.svg","fontawesome-solid-rotate-left":"fontawesome/solid/rotate-left.svg","fontawesome-solid-rotate-right":"fontawesome/solid/rotate-right.svg","fontawesome-solid-rotate":"fontawesome/solid/rotate.svg","fontawesome-solid-route":"fontawesome/solid/route.svg","fontawesome-solid-rss":"fontawesome/solid/rss.svg","fontawesome-solid-ruble-sign":"fontawesome/solid/ruble-sign.svg","fontawesome-solid-rug":"fontawesome/solid/rug.svg","fontawesome-solid-ruler-combined":"fontawesome/solid/ruler-combined.svg","fontawesome-solid-ruler-horizontal":"fontawesome/solid/ruler-horizontal.svg","fontawesome-solid-ruler-vertical":"fontawesome/solid/ruler-vertical.svg","fontawesome-solid-ruler":"fontawesome/solid/ruler.svg","fontawesome-solid-rupee-sign":"fontawesome/solid/rupee-sign.svg","fontawesome-solid-rupiah-sign":"fontawesome/solid/rupiah-sign.svg","fontawesome-solid-s":"fontawesome/solid/s.svg","fontawesome-solid-sack-dollar":"fontawesome/solid/sack-dollar.svg","fontawesome-solid-sack-xmark":"fontawesome/solid/sack-xmark.svg","fontawesome-solid-sailboat":"fontawesome/solid/sailboat.svg","fontawesome-solid-satellite-dish":"fontawesome/solid/satellite-dish.svg","fontawesome-solid-satellite":"fontawesome/solid/satellite.svg","fontawesome-solid-scale-balanced":"fontawesome/solid/scale-balanced.svg","fontawesome-solid-scale-unbalanced-flip":"fontawesome/solid/scale-unbalanced-flip.svg","fontawesome-solid-scale-unbalanced":"fontawesome/solid/scale-unbalanced.svg","fontawesome-solid-school-circle-check":"fontawesome/solid/school-circle-check.svg","fontawesome-solid-school-circle-exclamation":"fontawesome/solid/school-circle-exclamation.svg","fontawesome-solid-school-circle-xmark":"fontawesome/solid/school-circle-xmark.svg","fontawesome-solid-school-flag":"fontawesome/solid/school-flag.svg","fontawesome-solid-school-lock":"fontawesome/solid/school-lock.svg","fontawesome-solid-school":"fontawesome/solid/school.svg","fontawesome-solid-scissors":"fontawesome/solid/scissors.svg","fontawesome-solid-screwdriver-wrench":"fontawesome/solid/screwdriver-wrench.svg","fontawesome-solid-screwdriver":"fontawesome/solid/screwdriver.svg","fontawesome-solid-scroll-torah":"fontawesome/solid/scroll-torah.svg","fontawesome-solid-scroll":"fontawesome/solid/scroll.svg","fontawesome-solid-sd-card":"fontawesome/solid/sd-card.svg","fontawesome-solid-section":"fontawesome/solid/section.svg","fontawesome-solid-seedling":"fontawesome/solid/seedling.svg","fontawesome-solid-server":"fontawesome/solid/server.svg","fontawesome-solid-shapes":"fontawesome/solid/shapes.svg","fontawesome-solid-share-from-square":"fontawesome/solid/share-from-square.svg","fontawesome-solid-share-nodes":"fontawesome/solid/share-nodes.svg","fontawesome-solid-share":"fontawesome/solid/share.svg","fontawesome-solid-sheet-plastic":"fontawesome/solid/sheet-plastic.svg","fontawesome-solid-shekel-sign":"fontawesome/solid/shekel-sign.svg","fontawesome-solid-shield-cat":"fontawesome/solid/shield-cat.svg","fontawesome-solid-shield-dog":"fontawesome/solid/shield-dog.svg","fontawesome-solid-shield-halved":"fontawesome/solid/shield-halved.svg","fontawesome-solid-shield-heart":"fontawesome/solid/shield-heart.svg","fontawesome-solid-shield-virus":"fontawesome/solid/shield-virus.svg","fontawesome-solid-shield":"fontawesome/solid/shield.svg","fontawesome-solid-ship":"fontawesome/solid/ship.svg","fontawesome-solid-shirt":"fontawesome/solid/shirt.svg","fontawesome-solid-shoe-prints":"fontawesome/solid/shoe-prints.svg","fontawesome-solid-shop-lock":"fontawesome/solid/shop-lock.svg","fontawesome-solid-shop-slash":"fontawesome/solid/shop-slash.svg","fontawesome-solid-shop":"fontawesome/solid/shop.svg","fontawesome-solid-shower":"fontawesome/solid/shower.svg","fontawesome-solid-shrimp":"fontawesome/solid/shrimp.svg","fontawesome-solid-shuffle":"fontawesome/solid/shuffle.svg","fontawesome-solid-shuttle-space":"fontawesome/solid/shuttle-space.svg","fontawesome-solid-sign-hanging":"fontawesome/solid/sign-hanging.svg","fontawesome-solid-signal":"fontawesome/solid/signal.svg","fontawesome-solid-signature":"fontawesome/solid/signature.svg","fontawesome-solid-signs-post":"fontawesome/solid/signs-post.svg","fontawesome-solid-sim-card":"fontawesome/solid/sim-card.svg","fontawesome-solid-sink":"fontawesome/solid/sink.svg","fontawesome-solid-sitemap":"fontawesome/solid/sitemap.svg","fontawesome-solid-skull-crossbones":"fontawesome/solid/skull-crossbones.svg","fontawesome-solid-skull":"fontawesome/solid/skull.svg","fontawesome-solid-slash":"fontawesome/solid/slash.svg","fontawesome-solid-sleigh":"fontawesome/solid/sleigh.svg","fontawesome-solid-sliders":"fontawesome/solid/sliders.svg","fontawesome-solid-smog":"fontawesome/solid/smog.svg","fontawesome-solid-smoking":"fontawesome/solid/smoking.svg","fontawesome-solid-snowflake":"fontawesome/solid/snowflake.svg","fontawesome-solid-snowman":"fontawesome/solid/snowman.svg","fontawesome-solid-snowplow":"fontawesome/solid/snowplow.svg","fontawesome-solid-soap":"fontawesome/solid/soap.svg","fontawesome-solid-socks":"fontawesome/solid/socks.svg","fontawesome-solid-solar-panel":"fontawesome/solid/solar-panel.svg","fontawesome-solid-sort-down":"fontawesome/solid/sort-down.svg","fontawesome-solid-sort-up":"fontawesome/solid/sort-up.svg","fontawesome-solid-sort":"fontawesome/solid/sort.svg","fontawesome-solid-spa":"fontawesome/solid/spa.svg","fontawesome-solid-spaghetti-monster-flying":"fontawesome/solid/spaghetti-monster-flying.svg","fontawesome-solid-spell-check":"fontawesome/solid/spell-check.svg","fontawesome-solid-spider":"fontawesome/solid/spider.svg","fontawesome-solid-spinner":"fontawesome/solid/spinner.svg","fontawesome-solid-splotch":"fontawesome/solid/splotch.svg","fontawesome-solid-spoon":"fontawesome/solid/spoon.svg","fontawesome-solid-spray-can-sparkles":"fontawesome/solid/spray-can-sparkles.svg","fontawesome-solid-spray-can":"fontawesome/solid/spray-can.svg","fontawesome-solid-square-arrow-up-right":"fontawesome/solid/square-arrow-up-right.svg","fontawesome-solid-square-binary":"fontawesome/solid/square-binary.svg","fontawesome-solid-square-caret-down":"fontawesome/solid/square-caret-down.svg","fontawesome-solid-square-caret-left":"fontawesome/solid/square-caret-left.svg","fontawesome-solid-square-caret-right":"fontawesome/solid/square-caret-right.svg","fontawesome-solid-square-caret-up":"fontawesome/solid/square-caret-up.svg","fontawesome-solid-square-check":"fontawesome/solid/square-check.svg","fontawesome-solid-square-envelope":"fontawesome/solid/square-envelope.svg","fontawesome-solid-square-full":"fontawesome/solid/square-full.svg","fontawesome-solid-square-h":"fontawesome/solid/square-h.svg","fontawesome-solid-square-minus":"fontawesome/solid/square-minus.svg","fontawesome-solid-square-nfi":"fontawesome/solid/square-nfi.svg","fontawesome-solid-square-parking":"fontawesome/solid/square-parking.svg","fontawesome-solid-square-pen":"fontawesome/solid/square-pen.svg","fontawesome-solid-square-person-confined":"fontawesome/solid/square-person-confined.svg","fontawesome-solid-square-phone-flip":"fontawesome/solid/square-phone-flip.svg","fontawesome-solid-square-phone":"fontawesome/solid/square-phone.svg","fontawesome-solid-square-plus":"fontawesome/solid/square-plus.svg","fontawesome-solid-square-poll-horizontal":"fontawesome/solid/square-poll-horizontal.svg","fontawesome-solid-square-poll-vertical":"fontawesome/solid/square-poll-vertical.svg","fontawesome-solid-square-root-variable":"fontawesome/solid/square-root-variable.svg","fontawesome-solid-square-rss":"fontawesome/solid/square-rss.svg","fontawesome-solid-square-share-nodes":"fontawesome/solid/square-share-nodes.svg","fontawesome-solid-square-up-right":"fontawesome/solid/square-up-right.svg","fontawesome-solid-square-virus":"fontawesome/solid/square-virus.svg","fontawesome-solid-square-xmark":"fontawesome/solid/square-xmark.svg","fontawesome-solid-square":"fontawesome/solid/square.svg","fontawesome-solid-staff-snake":"fontawesome/solid/staff-snake.svg","fontawesome-solid-stairs":"fontawesome/solid/stairs.svg","fontawesome-solid-stamp":"fontawesome/solid/stamp.svg","fontawesome-solid-stapler":"fontawesome/solid/stapler.svg","fontawesome-solid-star-and-crescent":"fontawesome/solid/star-and-crescent.svg","fontawesome-solid-star-half-stroke":"fontawesome/solid/star-half-stroke.svg","fontawesome-solid-star-half":"fontawesome/solid/star-half.svg","fontawesome-solid-star-of-david":"fontawesome/solid/star-of-david.svg","fontawesome-solid-star-of-life":"fontawesome/solid/star-of-life.svg","fontawesome-solid-star":"fontawesome/solid/star.svg","fontawesome-solid-sterling-sign":"fontawesome/solid/sterling-sign.svg","fontawesome-solid-stethoscope":"fontawesome/solid/stethoscope.svg","fontawesome-solid-stop":"fontawesome/solid/stop.svg","fontawesome-solid-stopwatch-20":"fontawesome/solid/stopwatch-20.svg","fontawesome-solid-stopwatch":"fontawesome/solid/stopwatch.svg","fontawesome-solid-store-slash":"fontawesome/solid/store-slash.svg","fontawesome-solid-store":"fontawesome/solid/store.svg","fontawesome-solid-street-view":"fontawesome/solid/street-view.svg","fontawesome-solid-strikethrough":"fontawesome/solid/strikethrough.svg","fontawesome-solid-stroopwafel":"fontawesome/solid/stroopwafel.svg","fontawesome-solid-subscript":"fontawesome/solid/subscript.svg","fontawesome-solid-suitcase-medical":"fontawesome/solid/suitcase-medical.svg","fontawesome-solid-suitcase-rolling":"fontawesome/solid/suitcase-rolling.svg","fontawesome-solid-suitcase":"fontawesome/solid/suitcase.svg","fontawesome-solid-sun-plant-wilt":"fontawesome/solid/sun-plant-wilt.svg","fontawesome-solid-sun":"fontawesome/solid/sun.svg","fontawesome-solid-superscript":"fontawesome/solid/superscript.svg","fontawesome-solid-swatchbook":"fontawesome/solid/swatchbook.svg","fontawesome-solid-synagogue":"fontawesome/solid/synagogue.svg","fontawesome-solid-syringe":"fontawesome/solid/syringe.svg","fontawesome-solid-t":"fontawesome/solid/t.svg","fontawesome-solid-table-cells-column-lock":"fontawesome/solid/table-cells-column-lock.svg","fontawesome-solid-table-cells-large":"fontawesome/solid/table-cells-large.svg","fontawesome-solid-table-cells-row-lock":"fontawesome/solid/table-cells-row-lock.svg","fontawesome-solid-table-cells-row-unlock":"fontawesome/solid/table-cells-row-unlock.svg","fontawesome-solid-table-cells":"fontawesome/solid/table-cells.svg","fontawesome-solid-table-columns":"fontawesome/solid/table-columns.svg","fontawesome-solid-table-list":"fontawesome/solid/table-list.svg","fontawesome-solid-table-tennis-paddle-ball":"fontawesome/solid/table-tennis-paddle-ball.svg","fontawesome-solid-table":"fontawesome/solid/table.svg","fontawesome-solid-tablet-button":"fontawesome/solid/tablet-button.svg","fontawesome-solid-tablet-screen-button":"fontawesome/solid/tablet-screen-button.svg","fontawesome-solid-tablet":"fontawesome/solid/tablet.svg","fontawesome-solid-tablets":"fontawesome/solid/tablets.svg","fontawesome-solid-tachograph-digital":"fontawesome/solid/tachograph-digital.svg","fontawesome-solid-tag":"fontawesome/solid/tag.svg","fontawesome-solid-tags":"fontawesome/solid/tags.svg","fontawesome-solid-tape":"fontawesome/solid/tape.svg","fontawesome-solid-tarp-droplet":"fontawesome/solid/tarp-droplet.svg","fontawesome-solid-tarp":"fontawesome/solid/tarp.svg","fontawesome-solid-taxi":"fontawesome/solid/taxi.svg","fontawesome-solid-teeth-open":"fontawesome/solid/teeth-open.svg","fontawesome-solid-teeth":"fontawesome/solid/teeth.svg","fontawesome-solid-temperature-arrow-down":"fontawesome/solid/temperature-arrow-down.svg","fontawesome-solid-temperature-arrow-up":"fontawesome/solid/temperature-arrow-up.svg","fontawesome-solid-temperature-empty":"fontawesome/solid/temperature-empty.svg","fontawesome-solid-temperature-full":"fontawesome/solid/temperature-full.svg","fontawesome-solid-temperature-half":"fontawesome/solid/temperature-half.svg","fontawesome-solid-temperature-high":"fontawesome/solid/temperature-high.svg","fontawesome-solid-temperature-low":"fontawesome/solid/temperature-low.svg","fontawesome-solid-temperature-quarter":"fontawesome/solid/temperature-quarter.svg","fontawesome-solid-temperature-three-quarters":"fontawesome/solid/temperature-three-quarters.svg","fontawesome-solid-tenge-sign":"fontawesome/solid/tenge-sign.svg","fontawesome-solid-tent-arrow-down-to-line":"fontawesome/solid/tent-arrow-down-to-line.svg","fontawesome-solid-tent-arrow-left-right":"fontawesome/solid/tent-arrow-left-right.svg","fontawesome-solid-tent-arrow-turn-left":"fontawesome/solid/tent-arrow-turn-left.svg","fontawesome-solid-tent-arrows-down":"fontawesome/solid/tent-arrows-down.svg","fontawesome-solid-tent":"fontawesome/solid/tent.svg","fontawesome-solid-tents":"fontawesome/solid/tents.svg","fontawesome-solid-terminal":"fontawesome/solid/terminal.svg","fontawesome-solid-text-height":"fontawesome/solid/text-height.svg","fontawesome-solid-text-slash":"fontawesome/solid/text-slash.svg","fontawesome-solid-text-width":"fontawesome/solid/text-width.svg","fontawesome-solid-thermometer":"fontawesome/solid/thermometer.svg","fontawesome-solid-thumbs-down":"fontawesome/solid/thumbs-down.svg","fontawesome-solid-thumbs-up":"fontawesome/solid/thumbs-up.svg","fontawesome-solid-thumbtack-slash":"fontawesome/solid/thumbtack-slash.svg","fontawesome-solid-thumbtack":"fontawesome/solid/thumbtack.svg","fontawesome-solid-ticket-simple":"fontawesome/solid/ticket-simple.svg","fontawesome-solid-ticket":"fontawesome/solid/ticket.svg","fontawesome-solid-timeline":"fontawesome/solid/timeline.svg","fontawesome-solid-toggle-off":"fontawesome/solid/toggle-off.svg","fontawesome-solid-toggle-on":"fontawesome/solid/toggle-on.svg","fontawesome-solid-toilet-paper-slash":"fontawesome/solid/toilet-paper-slash.svg","fontawesome-solid-toilet-paper":"fontawesome/solid/toilet-paper.svg","fontawesome-solid-toilet-portable":"fontawesome/solid/toilet-portable.svg","fontawesome-solid-toilet":"fontawesome/solid/toilet.svg","fontawesome-solid-toilets-portable":"fontawesome/solid/toilets-portable.svg","fontawesome-solid-toolbox":"fontawesome/solid/toolbox.svg","fontawesome-solid-tooth":"fontawesome/solid/tooth.svg","fontawesome-solid-torii-gate":"fontawesome/solid/torii-gate.svg","fontawesome-solid-tornado":"fontawesome/solid/tornado.svg","fontawesome-solid-tower-broadcast":"fontawesome/solid/tower-broadcast.svg","fontawesome-solid-tower-cell":"fontawesome/solid/tower-cell.svg","fontawesome-solid-tower-observation":"fontawesome/solid/tower-observation.svg","fontawesome-solid-tractor":"fontawesome/solid/tractor.svg","fontawesome-solid-trademark":"fontawesome/solid/trademark.svg","fontawesome-solid-traffic-light":"fontawesome/solid/traffic-light.svg","fontawesome-solid-trailer":"fontawesome/solid/trailer.svg","fontawesome-solid-train-subway":"fontawesome/solid/train-subway.svg","fontawesome-solid-train-tram":"fontawesome/solid/train-tram.svg","fontawesome-solid-train":"fontawesome/solid/train.svg","fontawesome-solid-transgender":"fontawesome/solid/transgender.svg","fontawesome-solid-trash-arrow-up":"fontawesome/solid/trash-arrow-up.svg","fontawesome-solid-trash-can-arrow-up":"fontawesome/solid/trash-can-arrow-up.svg","fontawesome-solid-trash-can":"fontawesome/solid/trash-can.svg","fontawesome-solid-trash":"fontawesome/solid/trash.svg","fontawesome-solid-tree-city":"fontawesome/solid/tree-city.svg","fontawesome-solid-tree":"fontawesome/solid/tree.svg","fontawesome-solid-triangle-exclamation":"fontawesome/solid/triangle-exclamation.svg","fontawesome-solid-trophy":"fontawesome/solid/trophy.svg","fontawesome-solid-trowel-bricks":"fontawesome/solid/trowel-bricks.svg","fontawesome-solid-trowel":"fontawesome/solid/trowel.svg","fontawesome-solid-truck-arrow-right":"fontawesome/solid/truck-arrow-right.svg","fontawesome-solid-truck-droplet":"fontawesome/solid/truck-droplet.svg","fontawesome-solid-truck-fast":"fontawesome/solid/truck-fast.svg","fontawesome-solid-truck-field-un":"fontawesome/solid/truck-field-un.svg","fontawesome-solid-truck-field":"fontawesome/solid/truck-field.svg","fontawesome-solid-truck-front":"fontawesome/solid/truck-front.svg","fontawesome-solid-truck-medical":"fontawesome/solid/truck-medical.svg","fontawesome-solid-truck-monster":"fontawesome/solid/truck-monster.svg","fontawesome-solid-truck-moving":"fontawesome/solid/truck-moving.svg","fontawesome-solid-truck-pickup":"fontawesome/solid/truck-pickup.svg","fontawesome-solid-truck-plane":"fontawesome/solid/truck-plane.svg","fontawesome-solid-truck-ramp-box":"fontawesome/solid/truck-ramp-box.svg","fontawesome-solid-truck":"fontawesome/solid/truck.svg","fontawesome-solid-tty":"fontawesome/solid/tty.svg","fontawesome-solid-turkish-lira-sign":"fontawesome/solid/turkish-lira-sign.svg","fontawesome-solid-turn-down":"fontawesome/solid/turn-down.svg","fontawesome-solid-turn-up":"fontawesome/solid/turn-up.svg","fontawesome-solid-tv":"fontawesome/solid/tv.svg","fontawesome-solid-u":"fontawesome/solid/u.svg","fontawesome-solid-umbrella-beach":"fontawesome/solid/umbrella-beach.svg","fontawesome-solid-umbrella":"fontawesome/solid/umbrella.svg","fontawesome-solid-underline":"fontawesome/solid/underline.svg","fontawesome-solid-universal-access":"fontawesome/solid/universal-access.svg","fontawesome-solid-unlock-keyhole":"fontawesome/solid/unlock-keyhole.svg","fontawesome-solid-unlock":"fontawesome/solid/unlock.svg","fontawesome-solid-up-down-left-right":"fontawesome/solid/up-down-left-right.svg","fontawesome-solid-up-down":"fontawesome/solid/up-down.svg","fontawesome-solid-up-long":"fontawesome/solid/up-long.svg","fontawesome-solid-up-right-and-down-left-from-center":"fontawesome/solid/up-right-and-down-left-from-center.svg","fontawesome-solid-up-right-from-square":"fontawesome/solid/up-right-from-square.svg","fontawesome-solid-upload":"fontawesome/solid/upload.svg","fontawesome-solid-user-astronaut":"fontawesome/solid/user-astronaut.svg","fontawesome-solid-user-check":"fontawesome/solid/user-check.svg","fontawesome-solid-user-clock":"fontawesome/solid/user-clock.svg","fontawesome-solid-user-doctor":"fontawesome/solid/user-doctor.svg","fontawesome-solid-user-gear":"fontawesome/solid/user-gear.svg","fontawesome-solid-user-graduate":"fontawesome/solid/user-graduate.svg","fontawesome-solid-user-group":"fontawesome/solid/user-group.svg","fontawesome-solid-user-injured":"fontawesome/solid/user-injured.svg","fontawesome-solid-user-large-slash":"fontawesome/solid/user-large-slash.svg","fontawesome-solid-user-large":"fontawesome/solid/user-large.svg","fontawesome-solid-user-lock":"fontawesome/solid/user-lock.svg","fontawesome-solid-user-minus":"fontawesome/solid/user-minus.svg","fontawesome-solid-user-ninja":"fontawesome/solid/user-ninja.svg","fontawesome-solid-user-nurse":"fontawesome/solid/user-nurse.svg","fontawesome-solid-user-pen":"fontawesome/solid/user-pen.svg","fontawesome-solid-user-plus":"fontawesome/solid/user-plus.svg","fontawesome-solid-user-secret":"fontawesome/solid/user-secret.svg","fontawesome-solid-user-shield":"fontawesome/solid/user-shield.svg","fontawesome-solid-user-slash":"fontawesome/solid/user-slash.svg","fontawesome-solid-user-tag":"fontawesome/solid/user-tag.svg","fontawesome-solid-user-tie":"fontawesome/solid/user-tie.svg","fontawesome-solid-user-xmark":"fontawesome/solid/user-xmark.svg","fontawesome-solid-user":"fontawesome/solid/user.svg","fontawesome-solid-users-between-lines":"fontawesome/solid/users-between-lines.svg","fontawesome-solid-users-gear":"fontawesome/solid/users-gear.svg","fontawesome-solid-users-line":"fontawesome/solid/users-line.svg","fontawesome-solid-users-rays":"fontawesome/solid/users-rays.svg","fontawesome-solid-users-rectangle":"fontawesome/solid/users-rectangle.svg","fontawesome-solid-users-slash":"fontawesome/solid/users-slash.svg","fontawesome-solid-users-viewfinder":"fontawesome/solid/users-viewfinder.svg","fontawesome-solid-users":"fontawesome/solid/users.svg","fontawesome-solid-utensils":"fontawesome/solid/utensils.svg","fontawesome-solid-v":"fontawesome/solid/v.svg","fontawesome-solid-van-shuttle":"fontawesome/solid/van-shuttle.svg","fontawesome-solid-vault":"fontawesome/solid/vault.svg","fontawesome-solid-vector-square":"fontawesome/solid/vector-square.svg","fontawesome-solid-venus-double":"fontawesome/solid/venus-double.svg","fontawesome-solid-venus-mars":"fontawesome/solid/venus-mars.svg","fontawesome-solid-venus":"fontawesome/solid/venus.svg","fontawesome-solid-vest-patches":"fontawesome/solid/vest-patches.svg","fontawesome-solid-vest":"fontawesome/solid/vest.svg","fontawesome-solid-vial-circle-check":"fontawesome/solid/vial-circle-check.svg","fontawesome-solid-vial-virus":"fontawesome/solid/vial-virus.svg","fontawesome-solid-vial":"fontawesome/solid/vial.svg","fontawesome-solid-vials":"fontawesome/solid/vials.svg","fontawesome-solid-video-slash":"fontawesome/solid/video-slash.svg","fontawesome-solid-video":"fontawesome/solid/video.svg","fontawesome-solid-vihara":"fontawesome/solid/vihara.svg","fontawesome-solid-virus-covid-slash":"fontawesome/solid/virus-covid-slash.svg","fontawesome-solid-virus-covid":"fontawesome/solid/virus-covid.svg","fontawesome-solid-virus-slash":"fontawesome/solid/virus-slash.svg","fontawesome-solid-virus":"fontawesome/solid/virus.svg","fontawesome-solid-viruses":"fontawesome/solid/viruses.svg","fontawesome-solid-voicemail":"fontawesome/solid/voicemail.svg","fontawesome-solid-volcano":"fontawesome/solid/volcano.svg","fontawesome-solid-volleyball":"fontawesome/solid/volleyball.svg","fontawesome-solid-volume-high":"fontawesome/solid/volume-high.svg","fontawesome-solid-volume-low":"fontawesome/solid/volume-low.svg","fontawesome-solid-volume-off":"fontawesome/solid/volume-off.svg","fontawesome-solid-volume-xmark":"fontawesome/solid/volume-xmark.svg","fontawesome-solid-vr-cardboard":"fontawesome/solid/vr-cardboard.svg","fontawesome-solid-w":"fontawesome/solid/w.svg","fontawesome-solid-walkie-talkie":"fontawesome/solid/walkie-talkie.svg","fontawesome-solid-wallet":"fontawesome/solid/wallet.svg","fontawesome-solid-wand-magic-sparkles":"fontawesome/solid/wand-magic-sparkles.svg","fontawesome-solid-wand-magic":"fontawesome/solid/wand-magic.svg","fontawesome-solid-wand-sparkles":"fontawesome/solid/wand-sparkles.svg","fontawesome-solid-warehouse":"fontawesome/solid/warehouse.svg","fontawesome-solid-water-ladder":"fontawesome/solid/water-ladder.svg","fontawesome-solid-water":"fontawesome/solid/water.svg","fontawesome-solid-wave-square":"fontawesome/solid/wave-square.svg","fontawesome-solid-web-awesome":"fontawesome/solid/web-awesome.svg","fontawesome-solid-weight-hanging":"fontawesome/solid/weight-hanging.svg","fontawesome-solid-weight-scale":"fontawesome/solid/weight-scale.svg","fontawesome-solid-wheat-awn-circle-exclamation":"fontawesome/solid/wheat-awn-circle-exclamation.svg","fontawesome-solid-wheat-awn":"fontawesome/solid/wheat-awn.svg","fontawesome-solid-wheelchair-move":"fontawesome/solid/wheelchair-move.svg","fontawesome-solid-wheelchair":"fontawesome/solid/wheelchair.svg","fontawesome-solid-whiskey-glass":"fontawesome/solid/whiskey-glass.svg","fontawesome-solid-wifi":"fontawesome/solid/wifi.svg","fontawesome-solid-wind":"fontawesome/solid/wind.svg","fontawesome-solid-window-maximize":"fontawesome/solid/window-maximize.svg","fontawesome-solid-window-minimize":"fontawesome/solid/window-minimize.svg","fontawesome-solid-window-restore":"fontawesome/solid/window-restore.svg","fontawesome-solid-wine-bottle":"fontawesome/solid/wine-bottle.svg","fontawesome-solid-wine-glass-empty":"fontawesome/solid/wine-glass-empty.svg","fontawesome-solid-wine-glass":"fontawesome/solid/wine-glass.svg","fontawesome-solid-won-sign":"fontawesome/solid/won-sign.svg","fontawesome-solid-worm":"fontawesome/solid/worm.svg","fontawesome-solid-wrench":"fontawesome/solid/wrench.svg","fontawesome-solid-x-ray":"fontawesome/solid/x-ray.svg","fontawesome-solid-x":"fontawesome/solid/x.svg","fontawesome-solid-xmark":"fontawesome/solid/xmark.svg","fontawesome-solid-xmarks-lines":"fontawesome/solid/xmarks-lines.svg","fontawesome-solid-y":"fontawesome/solid/y.svg","fontawesome-solid-yen-sign":"fontawesome/solid/yen-sign.svg","fontawesome-solid-yin-yang":"fontawesome/solid/yin-yang.svg","fontawesome-solid-z":"fontawesome/solid/z.svg","logo-monochrome":"logo-monochrome.svg","logo":"logo.svg","material-ab-testing":"material/ab-testing.svg","material-abacus":"material/abacus.svg","material-abjad-arabic":"material/abjad-arabic.svg","material-abjad-hebrew":"material/abjad-hebrew.svg","material-abugida-devanagari":"material/abugida-devanagari.svg","material-abugida-thai":"material/abugida-thai.svg","material-access-point-check":"material/access-point-check.svg","material-access-point-minus":"material/access-point-minus.svg","material-access-point-network-off":"material/access-point-network-off.svg","material-access-point-network":"material/access-point-network.svg","material-access-point-off":"material/access-point-off.svg","material-access-point-plus":"material/access-point-plus.svg","material-access-point-remove":"material/access-point-remove.svg","material-access-point":"material/access-point.svg","material-account-alert-outline":"material/account-alert-outline.svg","material-account-alert":"material/account-alert.svg","material-account-arrow-down-outline":"material/account-arrow-down-outline.svg","material-account-arrow-down":"material/account-arrow-down.svg","material-account-arrow-left-outline":"material/account-arrow-left-outline.svg","material-account-arrow-left":"material/account-arrow-left.svg","material-account-arrow-right-outline":"material/account-arrow-right-outline.svg","material-account-arrow-right":"material/account-arrow-right.svg","material-account-arrow-up-outline":"material/account-arrow-up-outline.svg","material-account-arrow-up":"material/account-arrow-up.svg","material-account-badge-outline":"material/account-badge-outline.svg","material-account-badge":"material/account-badge.svg","material-account-box-edit-outline":"material/account-box-edit-outline.svg","material-account-box-minus-outline":"material/account-box-minus-outline.svg","material-account-box-multiple-outline":"material/account-box-multiple-outline.svg","material-account-box-multiple":"material/account-box-multiple.svg","material-account-box-outline":"material/account-box-outline.svg","material-account-box-plus-outline":"material/account-box-plus-outline.svg","material-account-box":"material/account-box.svg","material-account-cancel-outline":"material/account-cancel-outline.svg","material-account-cancel":"material/account-cancel.svg","material-account-card-outline":"material/account-card-outline.svg","material-account-card":"material/account-card.svg","material-account-cash-outline":"material/account-cash-outline.svg","material-account-cash":"material/account-cash.svg","material-account-check-outline":"material/account-check-outline.svg","material-account-check":"material/account-check.svg","material-account-child-circle":"material/account-child-circle.svg","material-account-child-outline":"material/account-child-outline.svg","material-account-child":"material/account-child.svg","material-account-circle-outline":"material/account-circle-outline.svg","material-account-circle":"material/account-circle.svg","material-account-clock-outline":"material/account-clock-outline.svg","material-account-clock":"material/account-clock.svg","material-account-cog-outline":"material/account-cog-outline.svg","material-account-cog":"material/account-cog.svg","material-account-convert-outline":"material/account-convert-outline.svg","material-account-convert":"material/account-convert.svg","material-account-cowboy-hat-outline":"material/account-cowboy-hat-outline.svg","material-account-cowboy-hat":"material/account-cowboy-hat.svg","material-account-credit-card-outline":"material/account-credit-card-outline.svg","material-account-credit-card":"material/account-credit-card.svg","material-account-details-outline":"material/account-details-outline.svg","material-account-details":"material/account-details.svg","material-account-edit-outline":"material/account-edit-outline.svg","material-account-edit":"material/account-edit.svg","material-account-eye-outline":"material/account-eye-outline.svg","material-account-eye":"material/account-eye.svg","material-account-file-outline":"material/account-file-outline.svg","material-account-file-text-outline":"material/account-file-text-outline.svg","material-account-file-text":"material/account-file-text.svg","material-account-file":"material/account-file.svg","material-account-filter-outline":"material/account-filter-outline.svg","material-account-filter":"material/account-filter.svg","material-account-group-outline":"material/account-group-outline.svg","material-account-group":"material/account-group.svg","material-account-hard-hat-outline":"material/account-hard-hat-outline.svg","material-account-hard-hat":"material/account-hard-hat.svg","material-account-heart-outline":"material/account-heart-outline.svg","material-account-heart":"material/account-heart.svg","material-account-injury-outline":"material/account-injury-outline.svg","material-account-injury":"material/account-injury.svg","material-account-key-outline":"material/account-key-outline.svg","material-account-key":"material/account-key.svg","material-account-lock-open-outline":"material/account-lock-open-outline.svg","material-account-lock-open":"material/account-lock-open.svg","material-account-lock-outline":"material/account-lock-outline.svg","material-account-lock":"material/account-lock.svg","material-account-minus-outline":"material/account-minus-outline.svg","material-account-minus":"material/account-minus.svg","material-account-multiple-check-outline":"material/account-multiple-check-outline.svg","material-account-multiple-check":"material/account-multiple-check.svg","material-account-multiple-minus-outline":"material/account-multiple-minus-outline.svg","material-account-multiple-minus":"material/account-multiple-minus.svg","material-account-multiple-outline":"material/account-multiple-outline.svg","material-account-multiple-plus-outline":"material/account-multiple-plus-outline.svg","material-account-multiple-plus":"material/account-multiple-plus.svg","material-account-multiple-remove-outline":"material/account-multiple-remove-outline.svg","material-account-multiple-remove":"material/account-multiple-remove.svg","material-account-multiple":"material/account-multiple.svg","material-account-music-outline":"material/account-music-outline.svg","material-account-music":"material/account-music.svg","material-account-network-off-outline":"material/account-network-off-outline.svg","material-account-network-off":"material/account-network-off.svg","material-account-network-outline":"material/account-network-outline.svg","material-account-network":"material/account-network.svg","material-account-off-outline":"material/account-off-outline.svg","material-account-off":"material/account-off.svg","material-account-outline":"material/account-outline.svg","material-account-plus-outline":"material/account-plus-outline.svg","material-account-plus":"material/account-plus.svg","material-account-question-outline":"material/account-question-outline.svg","material-account-question":"material/account-question.svg","material-account-reactivate-outline":"material/account-reactivate-outline.svg","material-account-reactivate":"material/account-reactivate.svg","material-account-remove-outline":"material/account-remove-outline.svg","material-account-remove":"material/account-remove.svg","material-account-school-outline":"material/account-school-outline.svg","material-account-school":"material/account-school.svg","material-account-search-outline":"material/account-search-outline.svg","material-account-search":"material/account-search.svg","material-account-settings-outline":"material/account-settings-outline.svg","material-account-settings":"material/account-settings.svg","material-account-star-outline":"material/account-star-outline.svg","material-account-star":"material/account-star.svg","material-account-supervisor-circle-outline":"material/account-supervisor-circle-outline.svg","material-account-supervisor-circle":"material/account-supervisor-circle.svg","material-account-supervisor-outline":"material/account-supervisor-outline.svg","material-account-supervisor":"material/account-supervisor.svg","material-account-switch-outline":"material/account-switch-outline.svg","material-account-switch":"material/account-switch.svg","material-account-sync-outline":"material/account-sync-outline.svg","material-account-sync":"material/account-sync.svg","material-account-tag-outline":"material/account-tag-outline.svg","material-account-tag":"material/account-tag.svg","material-account-tie-hat-outline":"material/account-tie-hat-outline.svg","material-account-tie-hat":"material/account-tie-hat.svg","material-account-tie-outline":"material/account-tie-outline.svg","material-account-tie-voice-off-outline":"material/account-tie-voice-off-outline.svg","material-account-tie-voice-off":"material/account-tie-voice-off.svg","material-account-tie-voice-outline":"material/account-tie-voice-outline.svg","material-account-tie-voice":"material/account-tie-voice.svg","material-account-tie-woman":"material/account-tie-woman.svg","material-account-tie":"material/account-tie.svg","material-account-voice-off":"material/account-voice-off.svg","material-account-voice":"material/account-voice.svg","material-account-wrench-outline":"material/account-wrench-outline.svg","material-account-wrench":"material/account-wrench.svg","material-account":"material/account.svg","material-adjust":"material/adjust.svg","material-advertisements-off":"material/advertisements-off.svg","material-advertisements":"material/advertisements.svg","material-air-conditioner":"material/air-conditioner.svg","material-air-filter":"material/air-filter.svg","material-air-horn":"material/air-horn.svg","material-air-humidifier-off":"material/air-humidifier-off.svg","material-air-humidifier":"material/air-humidifier.svg","material-air-purifier-off":"material/air-purifier-off.svg","material-air-purifier":"material/air-purifier.svg","material-airbag":"material/airbag.svg","material-airballoon-outline":"material/airballoon-outline.svg","material-airballoon":"material/airballoon.svg","material-airplane-alert":"material/airplane-alert.svg","material-airplane-check":"material/airplane-check.svg","material-airplane-clock":"material/airplane-clock.svg","material-airplane-cog":"material/airplane-cog.svg","material-airplane-edit":"material/airplane-edit.svg","material-airplane-landing":"material/airplane-landing.svg","material-airplane-marker":"material/airplane-marker.svg","material-airplane-minus":"material/airplane-minus.svg","material-airplane-off":"material/airplane-off.svg","material-airplane-plus":"material/airplane-plus.svg","material-airplane-remove":"material/airplane-remove.svg","material-airplane-search":"material/airplane-search.svg","material-airplane-settings":"material/airplane-settings.svg","material-airplane-takeoff":"material/airplane-takeoff.svg","material-airplane":"material/airplane.svg","material-airport":"material/airport.svg","material-alarm-bell":"material/alarm-bell.svg","material-alarm-check":"material/alarm-check.svg","material-alarm-light-off-outline":"material/alarm-light-off-outline.svg","material-alarm-light-off":"material/alarm-light-off.svg","material-alarm-light-outline":"material/alarm-light-outline.svg","material-alarm-light":"material/alarm-light.svg","material-alarm-multiple":"material/alarm-multiple.svg","material-alarm-note-off":"material/alarm-note-off.svg","material-alarm-note":"material/alarm-note.svg","material-alarm-off":"material/alarm-off.svg","material-alarm-panel-outline":"material/alarm-panel-outline.svg","material-alarm-panel":"material/alarm-panel.svg","material-alarm-plus":"material/alarm-plus.svg","material-alarm-snooze":"material/alarm-snooze.svg","material-alarm":"material/alarm.svg","material-album":"material/album.svg","material-alert-box-outline":"material/alert-box-outline.svg","material-alert-box":"material/alert-box.svg","material-alert-circle-check-outline":"material/alert-circle-check-outline.svg","material-alert-circle-check":"material/alert-circle-check.svg","material-alert-circle-outline":"material/alert-circle-outline.svg","material-alert-circle":"material/alert-circle.svg","material-alert-decagram-outline":"material/alert-decagram-outline.svg","material-alert-decagram":"material/alert-decagram.svg","material-alert-minus-outline":"material/alert-minus-outline.svg","material-alert-minus":"material/alert-minus.svg","material-alert-octagon-outline":"material/alert-octagon-outline.svg","material-alert-octagon":"material/alert-octagon.svg","material-alert-octagram-outline":"material/alert-octagram-outline.svg","material-alert-octagram":"material/alert-octagram.svg","material-alert-outline":"material/alert-outline.svg","material-alert-plus-outline":"material/alert-plus-outline.svg","material-alert-plus":"material/alert-plus.svg","material-alert-remove-outline":"material/alert-remove-outline.svg","material-alert-remove":"material/alert-remove.svg","material-alert-rhombus-outline":"material/alert-rhombus-outline.svg","material-alert-rhombus":"material/alert-rhombus.svg","material-alert":"material/alert.svg","material-alien-outline":"material/alien-outline.svg","material-alien":"material/alien.svg","material-align-horizontal-center":"material/align-horizontal-center.svg","material-align-horizontal-distribute":"material/align-horizontal-distribute.svg","material-align-horizontal-left":"material/align-horizontal-left.svg","material-align-horizontal-right":"material/align-horizontal-right.svg","material-align-vertical-bottom":"material/align-vertical-bottom.svg","material-align-vertical-center":"material/align-vertical-center.svg","material-align-vertical-distribute":"material/align-vertical-distribute.svg","material-align-vertical-top":"material/align-vertical-top.svg","material-all-inclusive-box-outline":"material/all-inclusive-box-outline.svg","material-all-inclusive-box":"material/all-inclusive-box.svg","material-all-inclusive":"material/all-inclusive.svg","material-allergy":"material/allergy.svg","material-alpha-a-box-outline":"material/alpha-a-box-outline.svg","material-alpha-a-box":"material/alpha-a-box.svg","material-alpha-a-circle-outline":"material/alpha-a-circle-outline.svg","material-alpha-a-circle":"material/alpha-a-circle.svg","material-alpha-a":"material/alpha-a.svg","material-alpha-b-box-outline":"material/alpha-b-box-outline.svg","material-alpha-b-box":"material/alpha-b-box.svg","material-alpha-b-circle-outline":"material/alpha-b-circle-outline.svg","material-alpha-b-circle":"material/alpha-b-circle.svg","material-alpha-b":"material/alpha-b.svg","material-alpha-c-box-outline":"material/alpha-c-box-outline.svg","material-alpha-c-box":"material/alpha-c-box.svg","material-alpha-c-circle-outline":"material/alpha-c-circle-outline.svg","material-alpha-c-circle":"material/alpha-c-circle.svg","material-alpha-c":"material/alpha-c.svg","material-alpha-d-box-outline":"material/alpha-d-box-outline.svg","material-alpha-d-box":"material/alpha-d-box.svg","material-alpha-d-circle-outline":"material/alpha-d-circle-outline.svg","material-alpha-d-circle":"material/alpha-d-circle.svg","material-alpha-d":"material/alpha-d.svg","material-alpha-e-box-outline":"material/alpha-e-box-outline.svg","material-alpha-e-box":"material/alpha-e-box.svg","material-alpha-e-circle-outline":"material/alpha-e-circle-outline.svg","material-alpha-e-circle":"material/alpha-e-circle.svg","material-alpha-e":"material/alpha-e.svg","material-alpha-f-box-outline":"material/alpha-f-box-outline.svg","material-alpha-f-box":"material/alpha-f-box.svg","material-alpha-f-circle-outline":"material/alpha-f-circle-outline.svg","material-alpha-f-circle":"material/alpha-f-circle.svg","material-alpha-f":"material/alpha-f.svg","material-alpha-g-box-outline":"material/alpha-g-box-outline.svg","material-alpha-g-box":"material/alpha-g-box.svg","material-alpha-g-circle-outline":"material/alpha-g-circle-outline.svg","material-alpha-g-circle":"material/alpha-g-circle.svg","material-alpha-g":"material/alpha-g.svg","material-alpha-h-box-outline":"material/alpha-h-box-outline.svg","material-alpha-h-box":"material/alpha-h-box.svg","material-alpha-h-circle-outline":"material/alpha-h-circle-outline.svg","material-alpha-h-circle":"material/alpha-h-circle.svg","material-alpha-h":"material/alpha-h.svg","material-alpha-i-box-outline":"material/alpha-i-box-outline.svg","material-alpha-i-box":"material/alpha-i-box.svg","material-alpha-i-circle-outline":"material/alpha-i-circle-outline.svg","material-alpha-i-circle":"material/alpha-i-circle.svg","material-alpha-i":"material/alpha-i.svg","material-alpha-j-box-outline":"material/alpha-j-box-outline.svg","material-alpha-j-box":"material/alpha-j-box.svg","material-alpha-j-circle-outline":"material/alpha-j-circle-outline.svg","material-alpha-j-circle":"material/alpha-j-circle.svg","material-alpha-j":"material/alpha-j.svg","material-alpha-k-box-outline":"material/alpha-k-box-outline.svg","material-alpha-k-box":"material/alpha-k-box.svg","material-alpha-k-circle-outline":"material/alpha-k-circle-outline.svg","material-alpha-k-circle":"material/alpha-k-circle.svg","material-alpha-k":"material/alpha-k.svg","material-alpha-l-box-outline":"material/alpha-l-box-outline.svg","material-alpha-l-box":"material/alpha-l-box.svg","material-alpha-l-circle-outline":"material/alpha-l-circle-outline.svg","material-alpha-l-circle":"material/alpha-l-circle.svg","material-alpha-l":"material/alpha-l.svg","material-alpha-m-box-outline":"material/alpha-m-box-outline.svg","material-alpha-m-box":"material/alpha-m-box.svg","material-alpha-m-circle-outline":"material/alpha-m-circle-outline.svg","material-alpha-m-circle":"material/alpha-m-circle.svg","material-alpha-m":"material/alpha-m.svg","material-alpha-n-box-outline":"material/alpha-n-box-outline.svg","material-alpha-n-box":"material/alpha-n-box.svg","material-alpha-n-circle-outline":"material/alpha-n-circle-outline.svg","material-alpha-n-circle":"material/alpha-n-circle.svg","material-alpha-n":"material/alpha-n.svg","material-alpha-o-box-outline":"material/alpha-o-box-outline.svg","material-alpha-o-box":"material/alpha-o-box.svg","material-alpha-o-circle-outline":"material/alpha-o-circle-outline.svg","material-alpha-o-circle":"material/alpha-o-circle.svg","material-alpha-o":"material/alpha-o.svg","material-alpha-p-box-outline":"material/alpha-p-box-outline.svg","material-alpha-p-box":"material/alpha-p-box.svg","material-alpha-p-circle-outline":"material/alpha-p-circle-outline.svg","material-alpha-p-circle":"material/alpha-p-circle.svg","material-alpha-p":"material/alpha-p.svg","material-alpha-q-box-outline":"material/alpha-q-box-outline.svg","material-alpha-q-box":"material/alpha-q-box.svg","material-alpha-q-circle-outline":"material/alpha-q-circle-outline.svg","material-alpha-q-circle":"material/alpha-q-circle.svg","material-alpha-q":"material/alpha-q.svg","material-alpha-r-box-outline":"material/alpha-r-box-outline.svg","material-alpha-r-box":"material/alpha-r-box.svg","material-alpha-r-circle-outline":"material/alpha-r-circle-outline.svg","material-alpha-r-circle":"material/alpha-r-circle.svg","material-alpha-r":"material/alpha-r.svg","material-alpha-s-box-outline":"material/alpha-s-box-outline.svg","material-alpha-s-box":"material/alpha-s-box.svg","material-alpha-s-circle-outline":"material/alpha-s-circle-outline.svg","material-alpha-s-circle":"material/alpha-s-circle.svg","material-alpha-s":"material/alpha-s.svg","material-alpha-t-box-outline":"material/alpha-t-box-outline.svg","material-alpha-t-box":"material/alpha-t-box.svg","material-alpha-t-circle-outline":"material/alpha-t-circle-outline.svg","material-alpha-t-circle":"material/alpha-t-circle.svg","material-alpha-t":"material/alpha-t.svg","material-alpha-u-box-outline":"material/alpha-u-box-outline.svg","material-alpha-u-box":"material/alpha-u-box.svg","material-alpha-u-circle-outline":"material/alpha-u-circle-outline.svg","material-alpha-u-circle":"material/alpha-u-circle.svg","material-alpha-u":"material/alpha-u.svg","material-alpha-v-box-outline":"material/alpha-v-box-outline.svg","material-alpha-v-box":"material/alpha-v-box.svg","material-alpha-v-circle-outline":"material/alpha-v-circle-outline.svg","material-alpha-v-circle":"material/alpha-v-circle.svg","material-alpha-v":"material/alpha-v.svg","material-alpha-w-box-outline":"material/alpha-w-box-outline.svg","material-alpha-w-box":"material/alpha-w-box.svg","material-alpha-w-circle-outline":"material/alpha-w-circle-outline.svg","material-alpha-w-circle":"material/alpha-w-circle.svg","material-alpha-w":"material/alpha-w.svg","material-alpha-x-box-outline":"material/alpha-x-box-outline.svg","material-alpha-x-box":"material/alpha-x-box.svg","material-alpha-x-circle-outline":"material/alpha-x-circle-outline.svg","material-alpha-x-circle":"material/alpha-x-circle.svg","material-alpha-x":"material/alpha-x.svg","material-alpha-y-box-outline":"material/alpha-y-box-outline.svg","material-alpha-y-box":"material/alpha-y-box.svg","material-alpha-y-circle-outline":"material/alpha-y-circle-outline.svg","material-alpha-y-circle":"material/alpha-y-circle.svg","material-alpha-y":"material/alpha-y.svg","material-alpha-z-box-outline":"material/alpha-z-box-outline.svg","material-alpha-z-box":"material/alpha-z-box.svg","material-alpha-z-circle-outline":"material/alpha-z-circle-outline.svg","material-alpha-z-circle":"material/alpha-z-circle.svg","material-alpha-z":"material/alpha-z.svg","material-alpha":"material/alpha.svg","material-alphabet-aurebesh":"material/alphabet-aurebesh.svg","material-alphabet-cyrillic":"material/alphabet-cyrillic.svg","material-alphabet-greek":"material/alphabet-greek.svg","material-alphabet-latin":"material/alphabet-latin.svg","material-alphabet-piqad":"material/alphabet-piqad.svg","material-alphabet-tengwar":"material/alphabet-tengwar.svg","material-alphabetical-off":"material/alphabetical-off.svg","material-alphabetical-variant-off":"material/alphabetical-variant-off.svg","material-alphabetical-variant":"material/alphabetical-variant.svg","material-alphabetical":"material/alphabetical.svg","material-altimeter":"material/altimeter.svg","material-ambulance":"material/ambulance.svg","material-ammunition":"material/ammunition.svg","material-ampersand":"material/ampersand.svg","material-amplifier-off":"material/amplifier-off.svg","material-amplifier":"material/amplifier.svg","material-anchor":"material/anchor.svg","material-android-studio":"material/android-studio.svg","material-android":"material/android.svg","material-angle-acute":"material/angle-acute.svg","material-angle-obtuse":"material/angle-obtuse.svg","material-angle-right":"material/angle-right.svg","material-angular":"material/angular.svg","material-angularjs":"material/angularjs.svg","material-animation-outline":"material/animation-outline.svg","material-animation-play-outline":"material/animation-play-outline.svg","material-animation-play":"material/animation-play.svg","material-animation":"material/animation.svg","material-ansible":"material/ansible.svg","material-antenna":"material/antenna.svg","material-anvil":"material/anvil.svg","material-apache-kafka":"material/apache-kafka.svg","material-api-off":"material/api-off.svg","material-api":"material/api.svg","material-apple-finder":"material/apple-finder.svg","material-apple-icloud":"material/apple-icloud.svg","material-apple-ios":"material/apple-ios.svg","material-apple-keyboard-caps":"material/apple-keyboard-caps.svg","material-apple-keyboard-command":"material/apple-keyboard-command.svg","material-apple-keyboard-control":"material/apple-keyboard-control.svg","material-apple-keyboard-option":"material/apple-keyboard-option.svg","material-apple-keyboard-shift":"material/apple-keyboard-shift.svg","material-apple-safari":"material/apple-safari.svg","material-apple":"material/apple.svg","material-application-array-outline":"material/application-array-outline.svg","material-application-array":"material/application-array.svg","material-application-braces-outline":"material/application-braces-outline.svg","material-application-braces":"material/application-braces.svg","material-application-brackets-outline":"material/application-brackets-outline.svg","material-application-brackets":"material/application-brackets.svg","material-application-cog-outline":"material/application-cog-outline.svg","material-application-cog":"material/application-cog.svg","material-application-edit-outline":"material/application-edit-outline.svg","material-application-edit":"material/application-edit.svg","material-application-export":"material/application-export.svg","material-application-import":"material/application-import.svg","material-application-outline":"material/application-outline.svg","material-application-parentheses-outline":"material/application-parentheses-outline.svg","material-application-parentheses":"material/application-parentheses.svg","material-application-settings-outline":"material/application-settings-outline.svg","material-application-settings":"material/application-settings.svg","material-application-variable-outline":"material/application-variable-outline.svg","material-application-variable":"material/application-variable.svg","material-application":"material/application.svg","material-approximately-equal-box":"material/approximately-equal-box.svg","material-approximately-equal":"material/approximately-equal.svg","material-apps-box":"material/apps-box.svg","material-apps":"material/apps.svg","material-arch":"material/arch.svg","material-archive-alert-outline":"material/archive-alert-outline.svg","material-archive-alert":"material/archive-alert.svg","material-archive-arrow-down-outline":"material/archive-arrow-down-outline.svg","material-archive-arrow-down":"material/archive-arrow-down.svg","material-archive-arrow-up-outline":"material/archive-arrow-up-outline.svg","material-archive-arrow-up":"material/archive-arrow-up.svg","material-archive-cancel-outline":"material/archive-cancel-outline.svg","material-archive-cancel":"material/archive-cancel.svg","material-archive-check-outline":"material/archive-check-outline.svg","material-archive-check":"material/archive-check.svg","material-archive-clock-outline":"material/archive-clock-outline.svg","material-archive-clock":"material/archive-clock.svg","material-archive-cog-outline":"material/archive-cog-outline.svg","material-archive-cog":"material/archive-cog.svg","material-archive-edit-outline":"material/archive-edit-outline.svg","material-archive-edit":"material/archive-edit.svg","material-archive-eye-outline":"material/archive-eye-outline.svg","material-archive-eye":"material/archive-eye.svg","material-archive-lock-open-outline":"material/archive-lock-open-outline.svg","material-archive-lock-open":"material/archive-lock-open.svg","material-archive-lock-outline":"material/archive-lock-outline.svg","material-archive-lock":"material/archive-lock.svg","material-archive-marker-outline":"material/archive-marker-outline.svg","material-archive-marker":"material/archive-marker.svg","material-archive-minus-outline":"material/archive-minus-outline.svg","material-archive-minus":"material/archive-minus.svg","material-archive-music-outline":"material/archive-music-outline.svg","material-archive-music":"material/archive-music.svg","material-archive-off-outline":"material/archive-off-outline.svg","material-archive-off":"material/archive-off.svg","material-archive-outline":"material/archive-outline.svg","material-archive-plus-outline":"material/archive-plus-outline.svg","material-archive-plus":"material/archive-plus.svg","material-archive-refresh-outline":"material/archive-refresh-outline.svg","material-archive-refresh":"material/archive-refresh.svg","material-archive-remove-outline":"material/archive-remove-outline.svg","material-archive-remove":"material/archive-remove.svg","material-archive-search-outline":"material/archive-search-outline.svg","material-archive-search":"material/archive-search.svg","material-archive-settings-outline":"material/archive-settings-outline.svg","material-archive-settings":"material/archive-settings.svg","material-archive-star-outline":"material/archive-star-outline.svg","material-archive-star":"material/archive-star.svg","material-archive-sync-outline":"material/archive-sync-outline.svg","material-archive-sync":"material/archive-sync.svg","material-archive":"material/archive.svg","material-arm-flex-outline":"material/arm-flex-outline.svg","material-arm-flex":"material/arm-flex.svg","material-arrange-bring-forward":"material/arrange-bring-forward.svg","material-arrange-bring-to-front":"material/arrange-bring-to-front.svg","material-arrange-send-backward":"material/arrange-send-backward.svg","material-arrange-send-to-back":"material/arrange-send-to-back.svg","material-arrow-all":"material/arrow-all.svg","material-arrow-bottom-left-bold-box-outline":"material/arrow-bottom-left-bold-box-outline.svg","material-arrow-bottom-left-bold-box":"material/arrow-bottom-left-bold-box.svg","material-arrow-bottom-left-bold-outline":"material/arrow-bottom-left-bold-outline.svg","material-arrow-bottom-left-thick":"material/arrow-bottom-left-thick.svg","material-arrow-bottom-left-thin-circle-outline":"material/arrow-bottom-left-thin-circle-outline.svg","material-arrow-bottom-left-thin":"material/arrow-bottom-left-thin.svg","material-arrow-bottom-left":"material/arrow-bottom-left.svg","material-arrow-bottom-right-bold-box-outline":"material/arrow-bottom-right-bold-box-outline.svg","material-arrow-bottom-right-bold-box":"material/arrow-bottom-right-bold-box.svg","material-arrow-bottom-right-bold-outline":"material/arrow-bottom-right-bold-outline.svg","material-arrow-bottom-right-thick":"material/arrow-bottom-right-thick.svg","material-arrow-bottom-right-thin-circle-outline":"material/arrow-bottom-right-thin-circle-outline.svg","material-arrow-bottom-right-thin":"material/arrow-bottom-right-thin.svg","material-arrow-bottom-right":"material/arrow-bottom-right.svg","material-arrow-collapse-all":"material/arrow-collapse-all.svg","material-arrow-collapse-down":"material/arrow-collapse-down.svg","material-arrow-collapse-horizontal":"material/arrow-collapse-horizontal.svg","material-arrow-collapse-left":"material/arrow-collapse-left.svg","material-arrow-collapse-right":"material/arrow-collapse-right.svg","material-arrow-collapse-up":"material/arrow-collapse-up.svg","material-arrow-collapse-vertical":"material/arrow-collapse-vertical.svg","material-arrow-collapse":"material/arrow-collapse.svg","material-arrow-decision-auto-outline":"material/arrow-decision-auto-outline.svg","material-arrow-decision-auto":"material/arrow-decision-auto.svg","material-arrow-decision-outline":"material/arrow-decision-outline.svg","material-arrow-decision":"material/arrow-decision.svg","material-arrow-down-bold-box-outline":"material/arrow-down-bold-box-outline.svg","material-arrow-down-bold-box":"material/arrow-down-bold-box.svg","material-arrow-down-bold-circle-outline":"material/arrow-down-bold-circle-outline.svg","material-arrow-down-bold-circle":"material/arrow-down-bold-circle.svg","material-arrow-down-bold-hexagon-outline":"material/arrow-down-bold-hexagon-outline.svg","material-arrow-down-bold-outline":"material/arrow-down-bold-outline.svg","material-arrow-down-bold":"material/arrow-down-bold.svg","material-arrow-down-box":"material/arrow-down-box.svg","material-arrow-down-circle-outline":"material/arrow-down-circle-outline.svg","material-arrow-down-circle":"material/arrow-down-circle.svg","material-arrow-down-drop-circle-outline":"material/arrow-down-drop-circle-outline.svg","material-arrow-down-drop-circle":"material/arrow-down-drop-circle.svg","material-arrow-down-left-bold":"material/arrow-down-left-bold.svg","material-arrow-down-left":"material/arrow-down-left.svg","material-arrow-down-right-bold":"material/arrow-down-right-bold.svg","material-arrow-down-right":"material/arrow-down-right.svg","material-arrow-down-thick":"material/arrow-down-thick.svg","material-arrow-down-thin-circle-outline":"material/arrow-down-thin-circle-outline.svg","material-arrow-down-thin":"material/arrow-down-thin.svg","material-arrow-down":"material/arrow-down.svg","material-arrow-expand-all":"material/arrow-expand-all.svg","material-arrow-expand-down":"material/arrow-expand-down.svg","material-arrow-expand-horizontal":"material/arrow-expand-horizontal.svg","material-arrow-expand-left":"material/arrow-expand-left.svg","material-arrow-expand-right":"material/arrow-expand-right.svg","material-arrow-expand-up":"material/arrow-expand-up.svg","material-arrow-expand-vertical":"material/arrow-expand-vertical.svg","material-arrow-expand":"material/arrow-expand.svg","material-arrow-horizontal-lock":"material/arrow-horizontal-lock.svg","material-arrow-left-bold-box-outline":"material/arrow-left-bold-box-outline.svg","material-arrow-left-bold-box":"material/arrow-left-bold-box.svg","material-arrow-left-bold-circle-outline":"material/arrow-left-bold-circle-outline.svg","material-arrow-left-bold-circle":"material/arrow-left-bold-circle.svg","material-arrow-left-bold-hexagon-outline":"material/arrow-left-bold-hexagon-outline.svg","material-arrow-left-bold-outline":"material/arrow-left-bold-outline.svg","material-arrow-left-bold":"material/arrow-left-bold.svg","material-arrow-left-bottom-bold":"material/arrow-left-bottom-bold.svg","material-arrow-left-bottom":"material/arrow-left-bottom.svg","material-arrow-left-box":"material/arrow-left-box.svg","material-arrow-left-circle-outline":"material/arrow-left-circle-outline.svg","material-arrow-left-circle":"material/arrow-left-circle.svg","material-arrow-left-drop-circle-outline":"material/arrow-left-drop-circle-outline.svg","material-arrow-left-drop-circle":"material/arrow-left-drop-circle.svg","material-arrow-left-right-bold-outline":"material/arrow-left-right-bold-outline.svg","material-arrow-left-right-bold":"material/arrow-left-right-bold.svg","material-arrow-left-right":"material/arrow-left-right.svg","material-arrow-left-thick":"material/arrow-left-thick.svg","material-arrow-left-thin-circle-outline":"material/arrow-left-thin-circle-outline.svg","material-arrow-left-thin":"material/arrow-left-thin.svg","material-arrow-left-top-bold":"material/arrow-left-top-bold.svg","material-arrow-left-top":"material/arrow-left-top.svg","material-arrow-left":"material/arrow-left.svg","material-arrow-oscillating-off":"material/arrow-oscillating-off.svg","material-arrow-oscillating":"material/arrow-oscillating.svg","material-arrow-projectile-multiple":"material/arrow-projectile-multiple.svg","material-arrow-projectile":"material/arrow-projectile.svg","material-arrow-right-bold-box-outline":"material/arrow-right-bold-box-outline.svg","material-arrow-right-bold-box":"material/arrow-right-bold-box.svg","material-arrow-right-bold-circle-outline":"material/arrow-right-bold-circle-outline.svg","material-arrow-right-bold-circle":"material/arrow-right-bold-circle.svg","material-arrow-right-bold-hexagon-outline":"material/arrow-right-bold-hexagon-outline.svg","material-arrow-right-bold-outline":"material/arrow-right-bold-outline.svg","material-arrow-right-bold":"material/arrow-right-bold.svg","material-arrow-right-bottom-bold":"material/arrow-right-bottom-bold.svg","material-arrow-right-bottom":"material/arrow-right-bottom.svg","material-arrow-right-box":"material/arrow-right-box.svg","material-arrow-right-circle-outline":"material/arrow-right-circle-outline.svg","material-arrow-right-circle":"material/arrow-right-circle.svg","material-arrow-right-drop-circle-outline":"material/arrow-right-drop-circle-outline.svg","material-arrow-right-drop-circle":"material/arrow-right-drop-circle.svg","material-arrow-right-thick":"material/arrow-right-thick.svg","material-arrow-right-thin-circle-outline":"material/arrow-right-thin-circle-outline.svg","material-arrow-right-thin":"material/arrow-right-thin.svg","material-arrow-right-top-bold":"material/arrow-right-top-bold.svg","material-arrow-right-top":"material/arrow-right-top.svg","material-arrow-right":"material/arrow-right.svg","material-arrow-split-horizontal":"material/arrow-split-horizontal.svg","material-arrow-split-vertical":"material/arrow-split-vertical.svg","material-arrow-top-left-bold-box-outline":"material/arrow-top-left-bold-box-outline.svg","material-arrow-top-left-bold-box":"material/arrow-top-left-bold-box.svg","material-arrow-top-left-bold-outline":"material/arrow-top-left-bold-outline.svg","material-arrow-top-left-bottom-right-bold":"material/arrow-top-left-bottom-right-bold.svg","material-arrow-top-left-bottom-right":"material/arrow-top-left-bottom-right.svg","material-arrow-top-left-thick":"material/arrow-top-left-thick.svg","material-arrow-top-left-thin-circle-outline":"material/arrow-top-left-thin-circle-outline.svg","material-arrow-top-left-thin":"material/arrow-top-left-thin.svg","material-arrow-top-left":"material/arrow-top-left.svg","material-arrow-top-right-bold-box-outline":"material/arrow-top-right-bold-box-outline.svg","material-arrow-top-right-bold-box":"material/arrow-top-right-bold-box.svg","material-arrow-top-right-bold-outline":"material/arrow-top-right-bold-outline.svg","material-arrow-top-right-bottom-left-bold":"material/arrow-top-right-bottom-left-bold.svg","material-arrow-top-right-bottom-left":"material/arrow-top-right-bottom-left.svg","material-arrow-top-right-thick":"material/arrow-top-right-thick.svg","material-arrow-top-right-thin-circle-outline":"material/arrow-top-right-thin-circle-outline.svg","material-arrow-top-right-thin":"material/arrow-top-right-thin.svg","material-arrow-top-right":"material/arrow-top-right.svg","material-arrow-u-down-left-bold":"material/arrow-u-down-left-bold.svg","material-arrow-u-down-left":"material/arrow-u-down-left.svg","material-arrow-u-down-right-bold":"material/arrow-u-down-right-bold.svg","material-arrow-u-down-right":"material/arrow-u-down-right.svg","material-arrow-u-left-bottom-bold":"material/arrow-u-left-bottom-bold.svg","material-arrow-u-left-bottom":"material/arrow-u-left-bottom.svg","material-arrow-u-left-top-bold":"material/arrow-u-left-top-bold.svg","material-arrow-u-left-top":"material/arrow-u-left-top.svg","material-arrow-u-right-bottom-bold":"material/arrow-u-right-bottom-bold.svg","material-arrow-u-right-bottom":"material/arrow-u-right-bottom.svg","material-arrow-u-right-top-bold":"material/arrow-u-right-top-bold.svg","material-arrow-u-right-top":"material/arrow-u-right-top.svg","material-arrow-u-up-left-bold":"material/arrow-u-up-left-bold.svg","material-arrow-u-up-left":"material/arrow-u-up-left.svg","material-arrow-u-up-right-bold":"material/arrow-u-up-right-bold.svg","material-arrow-u-up-right":"material/arrow-u-up-right.svg","material-arrow-up-bold-box-outline":"material/arrow-up-bold-box-outline.svg","material-arrow-up-bold-box":"material/arrow-up-bold-box.svg","material-arrow-up-bold-circle-outline":"material/arrow-up-bold-circle-outline.svg","material-arrow-up-bold-circle":"material/arrow-up-bold-circle.svg","material-arrow-up-bold-hexagon-outline":"material/arrow-up-bold-hexagon-outline.svg","material-arrow-up-bold-outline":"material/arrow-up-bold-outline.svg","material-arrow-up-bold":"material/arrow-up-bold.svg","material-arrow-up-box":"material/arrow-up-box.svg","material-arrow-up-circle-outline":"material/arrow-up-circle-outline.svg","material-arrow-up-circle":"material/arrow-up-circle.svg","material-arrow-up-down-bold-outline":"material/arrow-up-down-bold-outline.svg","material-arrow-up-down-bold":"material/arrow-up-down-bold.svg","material-arrow-up-down":"material/arrow-up-down.svg","material-arrow-up-drop-circle-outline":"material/arrow-up-drop-circle-outline.svg","material-arrow-up-drop-circle":"material/arrow-up-drop-circle.svg","material-arrow-up-left-bold":"material/arrow-up-left-bold.svg","material-arrow-up-left":"material/arrow-up-left.svg","material-arrow-up-right-bold":"material/arrow-up-right-bold.svg","material-arrow-up-right":"material/arrow-up-right.svg","material-arrow-up-thick":"material/arrow-up-thick.svg","material-arrow-up-thin-circle-outline":"material/arrow-up-thin-circle-outline.svg","material-arrow-up-thin":"material/arrow-up-thin.svg","material-arrow-up":"material/arrow-up.svg","material-arrow-vertical-lock":"material/arrow-vertical-lock.svg","material-artboard":"material/artboard.svg","material-artstation":"material/artstation.svg","material-aspect-ratio":"material/aspect-ratio.svg","material-assistant":"material/assistant.svg","material-asterisk-circle-outline":"material/asterisk-circle-outline.svg","material-asterisk":"material/asterisk.svg","material-at":"material/at.svg","material-atlassian":"material/atlassian.svg","material-atm":"material/atm.svg","material-atom-variant":"material/atom-variant.svg","material-atom":"material/atom.svg","material-attachment-check":"material/attachment-check.svg","material-attachment-lock":"material/attachment-lock.svg","material-attachment-minus":"material/attachment-minus.svg","material-attachment-off":"material/attachment-off.svg","material-attachment-plus":"material/attachment-plus.svg","material-attachment-remove":"material/attachment-remove.svg","material-attachment":"material/attachment.svg","material-atv":"material/atv.svg","material-audio-input-rca":"material/audio-input-rca.svg","material-audio-input-stereo-minijack":"material/audio-input-stereo-minijack.svg","material-audio-input-xlr":"material/audio-input-xlr.svg","material-audio-video-off":"material/audio-video-off.svg","material-audio-video":"material/audio-video.svg","material-augmented-reality":"material/augmented-reality.svg","material-aurora":"material/aurora.svg","material-auto-download":"material/auto-download.svg","material-auto-fix":"material/auto-fix.svg","material-auto-mode":"material/auto-mode.svg","material-auto-upload":"material/auto-upload.svg","material-autorenew-off":"material/autorenew-off.svg","material-autorenew":"material/autorenew.svg","material-av-timer":"material/av-timer.svg","material-awning-outline":"material/awning-outline.svg","material-awning":"material/awning.svg","material-aws":"material/aws.svg","material-axe-battle":"material/axe-battle.svg","material-axe":"material/axe.svg","material-axis-arrow-info":"material/axis-arrow-info.svg","material-axis-arrow-lock":"material/axis-arrow-lock.svg","material-axis-arrow":"material/axis-arrow.svg","material-axis-lock":"material/axis-lock.svg","material-axis-x-arrow-lock":"material/axis-x-arrow-lock.svg","material-axis-x-arrow":"material/axis-x-arrow.svg","material-axis-x-rotate-clockwise":"material/axis-x-rotate-clockwise.svg","material-axis-x-rotate-counterclockwise":"material/axis-x-rotate-counterclockwise.svg","material-axis-x-y-arrow-lock":"material/axis-x-y-arrow-lock.svg","material-axis-y-arrow-lock":"material/axis-y-arrow-lock.svg","material-axis-y-arrow":"material/axis-y-arrow.svg","material-axis-y-rotate-clockwise":"material/axis-y-rotate-clockwise.svg","material-axis-y-rotate-counterclockwise":"material/axis-y-rotate-counterclockwise.svg","material-axis-z-arrow-lock":"material/axis-z-arrow-lock.svg","material-axis-z-arrow":"material/axis-z-arrow.svg","material-axis-z-rotate-clockwise":"material/axis-z-rotate-clockwise.svg","material-axis-z-rotate-counterclockwise":"material/axis-z-rotate-counterclockwise.svg","material-axis":"material/axis.svg","material-babel":"material/babel.svg","material-baby-bottle-outline":"material/baby-bottle-outline.svg","material-baby-bottle":"material/baby-bottle.svg","material-baby-buggy-off":"material/baby-buggy-off.svg","material-baby-buggy":"material/baby-buggy.svg","material-baby-carriage-off":"material/baby-carriage-off.svg","material-baby-carriage":"material/baby-carriage.svg","material-baby-face-outline":"material/baby-face-outline.svg","material-baby-face":"material/baby-face.svg","material-baby":"material/baby.svg","material-backburger":"material/backburger.svg","material-backspace-outline":"material/backspace-outline.svg","material-backspace-reverse-outline":"material/backspace-reverse-outline.svg","material-backspace-reverse":"material/backspace-reverse.svg","material-backspace":"material/backspace.svg","material-backup-restore":"material/backup-restore.svg","material-bacteria-outline":"material/bacteria-outline.svg","material-bacteria":"material/bacteria.svg","material-badge-account-alert-outline":"material/badge-account-alert-outline.svg","material-badge-account-alert":"material/badge-account-alert.svg","material-badge-account-horizontal-outline":"material/badge-account-horizontal-outline.svg","material-badge-account-horizontal":"material/badge-account-horizontal.svg","material-badge-account-outline":"material/badge-account-outline.svg","material-badge-account":"material/badge-account.svg","material-badminton":"material/badminton.svg","material-bag-carry-on-check":"material/bag-carry-on-check.svg","material-bag-carry-on-off":"material/bag-carry-on-off.svg","material-bag-carry-on":"material/bag-carry-on.svg","material-bag-checked":"material/bag-checked.svg","material-bag-personal-off-outline":"material/bag-personal-off-outline.svg","material-bag-personal-off":"material/bag-personal-off.svg","material-bag-personal-outline":"material/bag-personal-outline.svg","material-bag-personal-plus-outline":"material/bag-personal-plus-outline.svg","material-bag-personal-plus":"material/bag-personal-plus.svg","material-bag-personal-tag-outline":"material/bag-personal-tag-outline.svg","material-bag-personal-tag":"material/bag-personal-tag.svg","material-bag-personal":"material/bag-personal.svg","material-bag-suitcase-off-outline":"material/bag-suitcase-off-outline.svg","material-bag-suitcase-off":"material/bag-suitcase-off.svg","material-bag-suitcase-outline":"material/bag-suitcase-outline.svg","material-bag-suitcase":"material/bag-suitcase.svg","material-baguette":"material/baguette.svg","material-balcony":"material/balcony.svg","material-balloon":"material/balloon.svg","material-ballot-outline":"material/ballot-outline.svg","material-ballot-recount-outline":"material/ballot-recount-outline.svg","material-ballot-recount":"material/ballot-recount.svg","material-ballot":"material/ballot.svg","material-bandage":"material/bandage.svg","material-bank-check":"material/bank-check.svg","material-bank-circle-outline":"material/bank-circle-outline.svg","material-bank-circle":"material/bank-circle.svg","material-bank-minus":"material/bank-minus.svg","material-bank-off-outline":"material/bank-off-outline.svg","material-bank-off":"material/bank-off.svg","material-bank-outline":"material/bank-outline.svg","material-bank-plus":"material/bank-plus.svg","material-bank-remove":"material/bank-remove.svg","material-bank-transfer-in":"material/bank-transfer-in.svg","material-bank-transfer-out":"material/bank-transfer-out.svg","material-bank-transfer":"material/bank-transfer.svg","material-bank":"material/bank.svg","material-barcode-off":"material/barcode-off.svg","material-barcode-scan":"material/barcode-scan.svg","material-barcode":"material/barcode.svg","material-barley-off":"material/barley-off.svg","material-barley":"material/barley.svg","material-barn":"material/barn.svg","material-barrel-outline":"material/barrel-outline.svg","material-barrel":"material/barrel.svg","material-baseball-bat":"material/baseball-bat.svg","material-baseball-diamond-outline":"material/baseball-diamond-outline.svg","material-baseball-diamond":"material/baseball-diamond.svg","material-baseball-outline":"material/baseball-outline.svg","material-baseball":"material/baseball.svg","material-bash":"material/bash.svg","material-basket-check-outline":"material/basket-check-outline.svg","material-basket-check":"material/basket-check.svg","material-basket-fill":"material/basket-fill.svg","material-basket-minus-outline":"material/basket-minus-outline.svg","material-basket-minus":"material/basket-minus.svg","material-basket-off-outline":"material/basket-off-outline.svg","material-basket-off":"material/basket-off.svg","material-basket-outline":"material/basket-outline.svg","material-basket-plus-outline":"material/basket-plus-outline.svg","material-basket-plus":"material/basket-plus.svg","material-basket-remove-outline":"material/basket-remove-outline.svg","material-basket-remove":"material/basket-remove.svg","material-basket-unfill":"material/basket-unfill.svg","material-basket":"material/basket.svg","material-basketball-hoop-outline":"material/basketball-hoop-outline.svg","material-basketball-hoop":"material/basketball-hoop.svg","material-basketball":"material/basketball.svg","material-bat":"material/bat.svg","material-bathtub-outline":"material/bathtub-outline.svg","material-bathtub":"material/bathtub.svg","material-battery-10-bluetooth":"material/battery-10-bluetooth.svg","material-battery-10":"material/battery-10.svg","material-battery-20-bluetooth":"material/battery-20-bluetooth.svg","material-battery-20":"material/battery-20.svg","material-battery-30-bluetooth":"material/battery-30-bluetooth.svg","material-battery-30":"material/battery-30.svg","material-battery-40-bluetooth":"material/battery-40-bluetooth.svg","material-battery-40":"material/battery-40.svg","material-battery-50-bluetooth":"material/battery-50-bluetooth.svg","material-battery-50":"material/battery-50.svg","material-battery-60-bluetooth":"material/battery-60-bluetooth.svg","material-battery-60":"material/battery-60.svg","material-battery-70-bluetooth":"material/battery-70-bluetooth.svg","material-battery-70":"material/battery-70.svg","material-battery-80-bluetooth":"material/battery-80-bluetooth.svg","material-battery-80":"material/battery-80.svg","material-battery-90-bluetooth":"material/battery-90-bluetooth.svg","material-battery-90":"material/battery-90.svg","material-battery-alert-bluetooth":"material/battery-alert-bluetooth.svg","material-battery-alert-variant-outline":"material/battery-alert-variant-outline.svg","material-battery-alert-variant":"material/battery-alert-variant.svg","material-battery-alert":"material/battery-alert.svg","material-battery-arrow-down-outline":"material/battery-arrow-down-outline.svg","material-battery-arrow-down":"material/battery-arrow-down.svg","material-battery-arrow-up-outline":"material/battery-arrow-up-outline.svg","material-battery-arrow-up":"material/battery-arrow-up.svg","material-battery-bluetooth-variant":"material/battery-bluetooth-variant.svg","material-battery-bluetooth":"material/battery-bluetooth.svg","material-battery-charging-10":"material/battery-charging-10.svg","material-battery-charging-100":"material/battery-charging-100.svg","material-battery-charging-20":"material/battery-charging-20.svg","material-battery-charging-30":"material/battery-charging-30.svg","material-battery-charging-40":"material/battery-charging-40.svg","material-battery-charging-50":"material/battery-charging-50.svg","material-battery-charging-60":"material/battery-charging-60.svg","material-battery-charging-70":"material/battery-charging-70.svg","material-battery-charging-80":"material/battery-charging-80.svg","material-battery-charging-90":"material/battery-charging-90.svg","material-battery-charging-high":"material/battery-charging-high.svg","material-battery-charging-low":"material/battery-charging-low.svg","material-battery-charging-medium":"material/battery-charging-medium.svg","material-battery-charging-outline":"material/battery-charging-outline.svg","material-battery-charging-wireless-10":"material/battery-charging-wireless-10.svg","material-battery-charging-wireless-20":"material/battery-charging-wireless-20.svg","material-battery-charging-wireless-30":"material/battery-charging-wireless-30.svg","material-battery-charging-wireless-40":"material/battery-charging-wireless-40.svg","material-battery-charging-wireless-50":"material/battery-charging-wireless-50.svg","material-battery-charging-wireless-60":"material/battery-charging-wireless-60.svg","material-battery-charging-wireless-70":"material/battery-charging-wireless-70.svg","material-battery-charging-wireless-80":"material/battery-charging-wireless-80.svg","material-battery-charging-wireless-90":"material/battery-charging-wireless-90.svg","material-battery-charging-wireless-alert":"material/battery-charging-wireless-alert.svg","material-battery-charging-wireless-outline":"material/battery-charging-wireless-outline.svg","material-battery-charging-wireless":"material/battery-charging-wireless.svg","material-battery-charging":"material/battery-charging.svg","material-battery-check-outline":"material/battery-check-outline.svg","material-battery-check":"material/battery-check.svg","material-battery-clock-outline":"material/battery-clock-outline.svg","material-battery-clock":"material/battery-clock.svg","material-battery-heart-outline":"material/battery-heart-outline.svg","material-battery-heart-variant":"material/battery-heart-variant.svg","material-battery-heart":"material/battery-heart.svg","material-battery-high":"material/battery-high.svg","material-battery-lock-open":"material/battery-lock-open.svg","material-battery-lock":"material/battery-lock.svg","material-battery-low":"material/battery-low.svg","material-battery-medium":"material/battery-medium.svg","material-battery-minus-outline":"material/battery-minus-outline.svg","material-battery-minus-variant":"material/battery-minus-variant.svg","material-battery-minus":"material/battery-minus.svg","material-battery-negative":"material/battery-negative.svg","material-battery-off-outline":"material/battery-off-outline.svg","material-battery-off":"material/battery-off.svg","material-battery-outline":"material/battery-outline.svg","material-battery-plus-outline":"material/battery-plus-outline.svg","material-battery-plus-variant":"material/battery-plus-variant.svg","material-battery-plus":"material/battery-plus.svg","material-battery-positive":"material/battery-positive.svg","material-battery-remove-outline":"material/battery-remove-outline.svg","material-battery-remove":"material/battery-remove.svg","material-battery-sync-outline":"material/battery-sync-outline.svg","material-battery-sync":"material/battery-sync.svg","material-battery-unknown-bluetooth":"material/battery-unknown-bluetooth.svg","material-battery-unknown":"material/battery-unknown.svg","material-battery":"material/battery.svg","material-beach":"material/beach.svg","material-beaker-alert-outline":"material/beaker-alert-outline.svg","material-beaker-alert":"material/beaker-alert.svg","material-beaker-check-outline":"material/beaker-check-outline.svg","material-beaker-check":"material/beaker-check.svg","material-beaker-minus-outline":"material/beaker-minus-outline.svg","material-beaker-minus":"material/beaker-minus.svg","material-beaker-outline":"material/beaker-outline.svg","material-beaker-plus-outline":"material/beaker-plus-outline.svg","material-beaker-plus":"material/beaker-plus.svg","material-beaker-question-outline":"material/beaker-question-outline.svg","material-beaker-question":"material/beaker-question.svg","material-beaker-remove-outline":"material/beaker-remove-outline.svg","material-beaker-remove":"material/beaker-remove.svg","material-beaker":"material/beaker.svg","material-bed-clock":"material/bed-clock.svg","material-bed-double-outline":"material/bed-double-outline.svg","material-bed-double":"material/bed-double.svg","material-bed-empty":"material/bed-empty.svg","material-bed-king-outline":"material/bed-king-outline.svg","material-bed-king":"material/bed-king.svg","material-bed-outline":"material/bed-outline.svg","material-bed-queen-outline":"material/bed-queen-outline.svg","material-bed-queen":"material/bed-queen.svg","material-bed-single-outline":"material/bed-single-outline.svg","material-bed-single":"material/bed-single.svg","material-bed":"material/bed.svg","material-bee-flower":"material/bee-flower.svg","material-bee":"material/bee.svg","material-beehive-off-outline":"material/beehive-off-outline.svg","material-beehive-outline":"material/beehive-outline.svg","material-beekeeper":"material/beekeeper.svg","material-beer-outline":"material/beer-outline.svg","material-beer":"material/beer.svg","material-bell-alert-outline":"material/bell-alert-outline.svg","material-bell-alert":"material/bell-alert.svg","material-bell-badge-outline":"material/bell-badge-outline.svg","material-bell-badge":"material/bell-badge.svg","material-bell-cancel-outline":"material/bell-cancel-outline.svg","material-bell-cancel":"material/bell-cancel.svg","material-bell-check-outline":"material/bell-check-outline.svg","material-bell-check":"material/bell-check.svg","material-bell-circle-outline":"material/bell-circle-outline.svg","material-bell-circle":"material/bell-circle.svg","material-bell-cog-outline":"material/bell-cog-outline.svg","material-bell-cog":"material/bell-cog.svg","material-bell-minus-outline":"material/bell-minus-outline.svg","material-bell-minus":"material/bell-minus.svg","material-bell-off-outline":"material/bell-off-outline.svg","material-bell-off":"material/bell-off.svg","material-bell-outline":"material/bell-outline.svg","material-bell-plus-outline":"material/bell-plus-outline.svg","material-bell-plus":"material/bell-plus.svg","material-bell-remove-outline":"material/bell-remove-outline.svg","material-bell-remove":"material/bell-remove.svg","material-bell-ring-outline":"material/bell-ring-outline.svg","material-bell-ring":"material/bell-ring.svg","material-bell-sleep-outline":"material/bell-sleep-outline.svg","material-bell-sleep":"material/bell-sleep.svg","material-bell":"material/bell.svg","material-bench-back":"material/bench-back.svg","material-bench":"material/bench.svg","material-beta":"material/beta.svg","material-betamax":"material/betamax.svg","material-biathlon":"material/biathlon.svg","material-bicycle-basket":"material/bicycle-basket.svg","material-bicycle-cargo":"material/bicycle-cargo.svg","material-bicycle-electric":"material/bicycle-electric.svg","material-bicycle-penny-farthing":"material/bicycle-penny-farthing.svg","material-bicycle":"material/bicycle.svg","material-bike-fast":"material/bike-fast.svg","material-bike-pedal-clipless":"material/bike-pedal-clipless.svg","material-bike-pedal-mountain":"material/bike-pedal-mountain.svg","material-bike-pedal":"material/bike-pedal.svg","material-bike":"material/bike.svg","material-billboard":"material/billboard.svg","material-billiards-rack":"material/billiards-rack.svg","material-billiards":"material/billiards.svg","material-binoculars":"material/binoculars.svg","material-bio":"material/bio.svg","material-biohazard":"material/biohazard.svg","material-bird":"material/bird.svg","material-bitbucket":"material/bitbucket.svg","material-bitcoin":"material/bitcoin.svg","material-black-mesa":"material/black-mesa.svg","material-blender-outline":"material/blender-outline.svg","material-blender-software":"material/blender-software.svg","material-blender":"material/blender.svg","material-blinds-horizontal-closed":"material/blinds-horizontal-closed.svg","material-blinds-horizontal":"material/blinds-horizontal.svg","material-blinds-open":"material/blinds-open.svg","material-blinds-vertical-closed":"material/blinds-vertical-closed.svg","material-blinds-vertical":"material/blinds-vertical.svg","material-blinds":"material/blinds.svg","material-block-helper":"material/block-helper.svg","material-blood-bag":"material/blood-bag.svg","material-bluetooth-audio":"material/bluetooth-audio.svg","material-bluetooth-connect":"material/bluetooth-connect.svg","material-bluetooth-off":"material/bluetooth-off.svg","material-bluetooth-settings":"material/bluetooth-settings.svg","material-bluetooth-transfer":"material/bluetooth-transfer.svg","material-bluetooth":"material/bluetooth.svg","material-blur-linear":"material/blur-linear.svg","material-blur-off":"material/blur-off.svg","material-blur-radial":"material/blur-radial.svg","material-blur":"material/blur.svg","material-bolt":"material/bolt.svg","material-bomb-off":"material/bomb-off.svg","material-bomb":"material/bomb.svg","material-bone-off":"material/bone-off.svg","material-bone":"material/bone.svg","material-book-account-outline":"material/book-account-outline.svg","material-book-account":"material/book-account.svg","material-book-alert-outline":"material/book-alert-outline.svg","material-book-alert":"material/book-alert.svg","material-book-alphabet":"material/book-alphabet.svg","material-book-arrow-down-outline":"material/book-arrow-down-outline.svg","material-book-arrow-down":"material/book-arrow-down.svg","material-book-arrow-left-outline":"material/book-arrow-left-outline.svg","material-book-arrow-left":"material/book-arrow-left.svg","material-book-arrow-right-outline":"material/book-arrow-right-outline.svg","material-book-arrow-right":"material/book-arrow-right.svg","material-book-arrow-up-outline":"material/book-arrow-up-outline.svg","material-book-arrow-up":"material/book-arrow-up.svg","material-book-cancel-outline":"material/book-cancel-outline.svg","material-book-cancel":"material/book-cancel.svg","material-book-check-outline":"material/book-check-outline.svg","material-book-check":"material/book-check.svg","material-book-clock-outline":"material/book-clock-outline.svg","material-book-clock":"material/book-clock.svg","material-book-cog-outline":"material/book-cog-outline.svg","material-book-cog":"material/book-cog.svg","material-book-cross":"material/book-cross.svg","material-book-edit-outline":"material/book-edit-outline.svg","material-book-edit":"material/book-edit.svg","material-book-education-outline":"material/book-education-outline.svg","material-book-education":"material/book-education.svg","material-book-heart-outline":"material/book-heart-outline.svg","material-book-heart":"material/book-heart.svg","material-book-information-variant":"material/book-information-variant.svg","material-book-lock-open-outline":"material/book-lock-open-outline.svg","material-book-lock-open":"material/book-lock-open.svg","material-book-lock-outline":"material/book-lock-outline.svg","material-book-lock":"material/book-lock.svg","material-book-marker-outline":"material/book-marker-outline.svg","material-book-marker":"material/book-marker.svg","material-book-minus-multiple-outline":"material/book-minus-multiple-outline.svg","material-book-minus-multiple":"material/book-minus-multiple.svg","material-book-minus-outline":"material/book-minus-outline.svg","material-book-minus":"material/book-minus.svg","material-book-multiple-outline":"material/book-multiple-outline.svg","material-book-multiple":"material/book-multiple.svg","material-book-music-outline":"material/book-music-outline.svg","material-book-music":"material/book-music.svg","material-book-off-outline":"material/book-off-outline.svg","material-book-off":"material/book-off.svg","material-book-open-blank-variant-outline":"material/book-open-blank-variant-outline.svg","material-book-open-blank-variant":"material/book-open-blank-variant.svg","material-book-open-outline":"material/book-open-outline.svg","material-book-open-page-variant-outline":"material/book-open-page-variant-outline.svg","material-book-open-page-variant":"material/book-open-page-variant.svg","material-book-open-variant-outline":"material/book-open-variant-outline.svg","material-book-open-variant":"material/book-open-variant.svg","material-book-open":"material/book-open.svg","material-book-outline":"material/book-outline.svg","material-book-play-outline":"material/book-play-outline.svg","material-book-play":"material/book-play.svg","material-book-plus-multiple-outline":"material/book-plus-multiple-outline.svg","material-book-plus-multiple":"material/book-plus-multiple.svg","material-book-plus-outline":"material/book-plus-outline.svg","material-book-plus":"material/book-plus.svg","material-book-refresh-outline":"material/book-refresh-outline.svg","material-book-refresh":"material/book-refresh.svg","material-book-remove-multiple-outline":"material/book-remove-multiple-outline.svg","material-book-remove-multiple":"material/book-remove-multiple.svg","material-book-remove-outline":"material/book-remove-outline.svg","material-book-remove":"material/book-remove.svg","material-book-search-outline":"material/book-search-outline.svg","material-book-search":"material/book-search.svg","material-book-settings-outline":"material/book-settings-outline.svg","material-book-settings":"material/book-settings.svg","material-book-sync-outline":"material/book-sync-outline.svg","material-book-sync":"material/book-sync.svg","material-book-variant":"material/book-variant.svg","material-book":"material/book.svg","material-bookmark-box-multiple-outline":"material/bookmark-box-multiple-outline.svg","material-bookmark-box-multiple":"material/bookmark-box-multiple.svg","material-bookmark-box-outline":"material/bookmark-box-outline.svg","material-bookmark-box":"material/bookmark-box.svg","material-bookmark-check-outline":"material/bookmark-check-outline.svg","material-bookmark-check":"material/bookmark-check.svg","material-bookmark-minus-outline":"material/bookmark-minus-outline.svg","material-bookmark-minus":"material/bookmark-minus.svg","material-bookmark-multiple-outline":"material/bookmark-multiple-outline.svg","material-bookmark-multiple":"material/bookmark-multiple.svg","material-bookmark-music-outline":"material/bookmark-music-outline.svg","material-bookmark-music":"material/bookmark-music.svg","material-bookmark-off-outline":"material/bookmark-off-outline.svg","material-bookmark-off":"material/bookmark-off.svg","material-bookmark-outline":"material/bookmark-outline.svg","material-bookmark-plus-outline":"material/bookmark-plus-outline.svg","material-bookmark-plus":"material/bookmark-plus.svg","material-bookmark-remove-outline":"material/bookmark-remove-outline.svg","material-bookmark-remove":"material/bookmark-remove.svg","material-bookmark":"material/bookmark.svg","material-bookshelf":"material/bookshelf.svg","material-boom-gate-alert-outline":"material/boom-gate-alert-outline.svg","material-boom-gate-alert":"material/boom-gate-alert.svg","material-boom-gate-arrow-down-outline":"material/boom-gate-arrow-down-outline.svg","material-boom-gate-arrow-down":"material/boom-gate-arrow-down.svg","material-boom-gate-arrow-up-outline":"material/boom-gate-arrow-up-outline.svg","material-boom-gate-arrow-up":"material/boom-gate-arrow-up.svg","material-boom-gate-outline":"material/boom-gate-outline.svg","material-boom-gate-up-outline":"material/boom-gate-up-outline.svg","material-boom-gate-up":"material/boom-gate-up.svg","material-boom-gate":"material/boom-gate.svg","material-boombox":"material/boombox.svg","material-boomerang":"material/boomerang.svg","material-bootstrap":"material/bootstrap.svg","material-border-all-variant":"material/border-all-variant.svg","material-border-all":"material/border-all.svg","material-border-bottom-variant":"material/border-bottom-variant.svg","material-border-bottom":"material/border-bottom.svg","material-border-color":"material/border-color.svg","material-border-horizontal":"material/border-horizontal.svg","material-border-inside":"material/border-inside.svg","material-border-left-variant":"material/border-left-variant.svg","material-border-left":"material/border-left.svg","material-border-none-variant":"material/border-none-variant.svg","material-border-none":"material/border-none.svg","material-border-outside":"material/border-outside.svg","material-border-radius":"material/border-radius.svg","material-border-right-variant":"material/border-right-variant.svg","material-border-right":"material/border-right.svg","material-border-style":"material/border-style.svg","material-border-top-variant":"material/border-top-variant.svg","material-border-top":"material/border-top.svg","material-border-vertical":"material/border-vertical.svg","material-bottle-soda-classic-outline":"material/bottle-soda-classic-outline.svg","material-bottle-soda-classic":"material/bottle-soda-classic.svg","material-bottle-soda-outline":"material/bottle-soda-outline.svg","material-bottle-soda":"material/bottle-soda.svg","material-bottle-tonic-outline":"material/bottle-tonic-outline.svg","material-bottle-tonic-plus-outline":"material/bottle-tonic-plus-outline.svg","material-bottle-tonic-plus":"material/bottle-tonic-plus.svg","material-bottle-tonic-skull-outline":"material/bottle-tonic-skull-outline.svg","material-bottle-tonic-skull":"material/bottle-tonic-skull.svg","material-bottle-tonic":"material/bottle-tonic.svg","material-bottle-wine-outline":"material/bottle-wine-outline.svg","material-bottle-wine":"material/bottle-wine.svg","material-bow-arrow":"material/bow-arrow.svg","material-bow-tie":"material/bow-tie.svg","material-bowl-mix-outline":"material/bowl-mix-outline.svg","material-bowl-mix":"material/bowl-mix.svg","material-bowl-outline":"material/bowl-outline.svg","material-bowl":"material/bowl.svg","material-bowling":"material/bowling.svg","material-box-cutter-off":"material/box-cutter-off.svg","material-box-cutter":"material/box-cutter.svg","material-box-shadow":"material/box-shadow.svg","material-box":"material/box.svg","material-boxing-glove":"material/boxing-glove.svg","material-braille":"material/braille.svg","material-brain":"material/brain.svg","material-bread-slice-outline":"material/bread-slice-outline.svg","material-bread-slice":"material/bread-slice.svg","material-bridge":"material/bridge.svg","material-briefcase-account-outline":"material/briefcase-account-outline.svg","material-briefcase-account":"material/briefcase-account.svg","material-briefcase-arrow-left-right-outline":"material/briefcase-arrow-left-right-outline.svg","material-briefcase-arrow-left-right":"material/briefcase-arrow-left-right.svg","material-briefcase-arrow-up-down-outline":"material/briefcase-arrow-up-down-outline.svg","material-briefcase-arrow-up-down":"material/briefcase-arrow-up-down.svg","material-briefcase-check-outline":"material/briefcase-check-outline.svg","material-briefcase-check":"material/briefcase-check.svg","material-briefcase-clock-outline":"material/briefcase-clock-outline.svg","material-briefcase-clock":"material/briefcase-clock.svg","material-briefcase-download-outline":"material/briefcase-download-outline.svg","material-briefcase-download":"material/briefcase-download.svg","material-briefcase-edit-outline":"material/briefcase-edit-outline.svg","material-briefcase-edit":"material/briefcase-edit.svg","material-briefcase-eye-outline":"material/briefcase-eye-outline.svg","material-briefcase-eye":"material/briefcase-eye.svg","material-briefcase-minus-outline":"material/briefcase-minus-outline.svg","material-briefcase-minus":"material/briefcase-minus.svg","material-briefcase-off-outline":"material/briefcase-off-outline.svg","material-briefcase-off":"material/briefcase-off.svg","material-briefcase-outline":"material/briefcase-outline.svg","material-briefcase-plus-outline":"material/briefcase-plus-outline.svg","material-briefcase-plus":"material/briefcase-plus.svg","material-briefcase-remove-outline":"material/briefcase-remove-outline.svg","material-briefcase-remove":"material/briefcase-remove.svg","material-briefcase-search-outline":"material/briefcase-search-outline.svg","material-briefcase-search":"material/briefcase-search.svg","material-briefcase-upload-outline":"material/briefcase-upload-outline.svg","material-briefcase-upload":"material/briefcase-upload.svg","material-briefcase-variant-off-outline":"material/briefcase-variant-off-outline.svg","material-briefcase-variant-off":"material/briefcase-variant-off.svg","material-briefcase-variant-outline":"material/briefcase-variant-outline.svg","material-briefcase-variant":"material/briefcase-variant.svg","material-briefcase":"material/briefcase.svg","material-brightness-1":"material/brightness-1.svg","material-brightness-2":"material/brightness-2.svg","material-brightness-3":"material/brightness-3.svg","material-brightness-4":"material/brightness-4.svg","material-brightness-5":"material/brightness-5.svg","material-brightness-6":"material/brightness-6.svg","material-brightness-7":"material/brightness-7.svg","material-brightness-auto":"material/brightness-auto.svg","material-brightness-percent":"material/brightness-percent.svg","material-broadcast-off":"material/broadcast-off.svg","material-broadcast":"material/broadcast.svg","material-broom":"material/broom.svg","material-brush-off":"material/brush-off.svg","material-brush-outline":"material/brush-outline.svg","material-brush-variant":"material/brush-variant.svg","material-brush":"material/brush.svg","material-bucket-outline":"material/bucket-outline.svg","material-bucket":"material/bucket.svg","material-buffet":"material/buffet.svg","material-bug-check-outline":"material/bug-check-outline.svg","material-bug-check":"material/bug-check.svg","material-bug-outline":"material/bug-outline.svg","material-bug-pause-outline":"material/bug-pause-outline.svg","material-bug-pause":"material/bug-pause.svg","material-bug-play-outline":"material/bug-play-outline.svg","material-bug-play":"material/bug-play.svg","material-bug-stop-outline":"material/bug-stop-outline.svg","material-bug-stop":"material/bug-stop.svg","material-bug":"material/bug.svg","material-bugle":"material/bugle.svg","material-bulkhead-light":"material/bulkhead-light.svg","material-bulldozer":"material/bulldozer.svg","material-bullet":"material/bullet.svg","material-bulletin-board":"material/bulletin-board.svg","material-bullhorn-outline":"material/bullhorn-outline.svg","material-bullhorn-variant-outline":"material/bullhorn-variant-outline.svg","material-bullhorn-variant":"material/bullhorn-variant.svg","material-bullhorn":"material/bullhorn.svg","material-bullseye-arrow":"material/bullseye-arrow.svg","material-bullseye":"material/bullseye.svg","material-bulma":"material/bulma.svg","material-bunk-bed-outline":"material/bunk-bed-outline.svg","material-bunk-bed":"material/bunk-bed.svg","material-bus-alert":"material/bus-alert.svg","material-bus-articulated-end":"material/bus-articulated-end.svg","material-bus-articulated-front":"material/bus-articulated-front.svg","material-bus-clock":"material/bus-clock.svg","material-bus-double-decker":"material/bus-double-decker.svg","material-bus-electric":"material/bus-electric.svg","material-bus-marker":"material/bus-marker.svg","material-bus-multiple":"material/bus-multiple.svg","material-bus-school":"material/bus-school.svg","material-bus-side":"material/bus-side.svg","material-bus-sign":"material/bus-sign.svg","material-bus-stop-covered":"material/bus-stop-covered.svg","material-bus-stop-uncovered":"material/bus-stop-uncovered.svg","material-bus-stop":"material/bus-stop.svg","material-bus-wrench":"material/bus-wrench.svg","material-bus":"material/bus.svg","material-butterfly-outline":"material/butterfly-outline.svg","material-butterfly":"material/butterfly.svg","material-button-cursor":"material/button-cursor.svg","material-button-pointer":"material/button-pointer.svg","material-cabin-a-frame":"material/cabin-a-frame.svg","material-cable-data":"material/cable-data.svg","material-cached":"material/cached.svg","material-cactus":"material/cactus.svg","material-cake-layered":"material/cake-layered.svg","material-cake-variant-outline":"material/cake-variant-outline.svg","material-cake-variant":"material/cake-variant.svg","material-cake":"material/cake.svg","material-calculator-variant-outline":"material/calculator-variant-outline.svg","material-calculator-variant":"material/calculator-variant.svg","material-calculator":"material/calculator.svg","material-calendar-account-outline":"material/calendar-account-outline.svg","material-calendar-account":"material/calendar-account.svg","material-calendar-alert-outline":"material/calendar-alert-outline.svg","material-calendar-alert":"material/calendar-alert.svg","material-calendar-arrow-left":"material/calendar-arrow-left.svg","material-calendar-arrow-right":"material/calendar-arrow-right.svg","material-calendar-badge-outline":"material/calendar-badge-outline.svg","material-calendar-badge":"material/calendar-badge.svg","material-calendar-blank-multiple":"material/calendar-blank-multiple.svg","material-calendar-blank-outline":"material/calendar-blank-outline.svg","material-calendar-blank":"material/calendar-blank.svg","material-calendar-check-outline":"material/calendar-check-outline.svg","material-calendar-check":"material/calendar-check.svg","material-calendar-clock-outline":"material/calendar-clock-outline.svg","material-calendar-clock":"material/calendar-clock.svg","material-calendar-collapse-horizontal-outline":"material/calendar-collapse-horizontal-outline.svg","material-calendar-collapse-horizontal":"material/calendar-collapse-horizontal.svg","material-calendar-cursor-outline":"material/calendar-cursor-outline.svg","material-calendar-cursor":"material/calendar-cursor.svg","material-calendar-edit-outline":"material/calendar-edit-outline.svg","material-calendar-edit":"material/calendar-edit.svg","material-calendar-end-outline":"material/calendar-end-outline.svg","material-calendar-end":"material/calendar-end.svg","material-calendar-expand-horizontal-outline":"material/calendar-expand-horizontal-outline.svg","material-calendar-expand-horizontal":"material/calendar-expand-horizontal.svg","material-calendar-export-outline":"material/calendar-export-outline.svg","material-calendar-export":"material/calendar-export.svg","material-calendar-filter-outline":"material/calendar-filter-outline.svg","material-calendar-filter":"material/calendar-filter.svg","material-calendar-heart-outline":"material/calendar-heart-outline.svg","material-calendar-heart":"material/calendar-heart.svg","material-calendar-import-outline":"material/calendar-import-outline.svg","material-calendar-import":"material/calendar-import.svg","material-calendar-lock-open-outline":"material/calendar-lock-open-outline.svg","material-calendar-lock-open":"material/calendar-lock-open.svg","material-calendar-lock-outline":"material/calendar-lock-outline.svg","material-calendar-lock":"material/calendar-lock.svg","material-calendar-minus-outline":"material/calendar-minus-outline.svg","material-calendar-minus":"material/calendar-minus.svg","material-calendar-month-outline":"material/calendar-month-outline.svg","material-calendar-month":"material/calendar-month.svg","material-calendar-multiple-check":"material/calendar-multiple-check.svg","material-calendar-multiple":"material/calendar-multiple.svg","material-calendar-multiselect-outline":"material/calendar-multiselect-outline.svg","material-calendar-multiselect":"material/calendar-multiselect.svg","material-calendar-outline":"material/calendar-outline.svg","material-calendar-plus-outline":"material/calendar-plus-outline.svg","material-calendar-plus":"material/calendar-plus.svg","material-calendar-question-outline":"material/calendar-question-outline.svg","material-calendar-question":"material/calendar-question.svg","material-calendar-range-outline":"material/calendar-range-outline.svg","material-calendar-range":"material/calendar-range.svg","material-calendar-refresh-outline":"material/calendar-refresh-outline.svg","material-calendar-refresh":"material/calendar-refresh.svg","material-calendar-remove-outline":"material/calendar-remove-outline.svg","material-calendar-remove":"material/calendar-remove.svg","material-calendar-search-outline":"material/calendar-search-outline.svg","material-calendar-search":"material/calendar-search.svg","material-calendar-star-four-points":"material/calendar-star-four-points.svg","material-calendar-star-outline":"material/calendar-star-outline.svg","material-calendar-star":"material/calendar-star.svg","material-calendar-start-outline":"material/calendar-start-outline.svg","material-calendar-start":"material/calendar-start.svg","material-calendar-sync-outline":"material/calendar-sync-outline.svg","material-calendar-sync":"material/calendar-sync.svg","material-calendar-text-outline":"material/calendar-text-outline.svg","material-calendar-text":"material/calendar-text.svg","material-calendar-today-outline":"material/calendar-today-outline.svg","material-calendar-today":"material/calendar-today.svg","material-calendar-week-begin-outline":"material/calendar-week-begin-outline.svg","material-calendar-week-begin":"material/calendar-week-begin.svg","material-calendar-week-outline":"material/calendar-week-outline.svg","material-calendar-week":"material/calendar-week.svg","material-calendar-weekend-outline":"material/calendar-weekend-outline.svg","material-calendar-weekend":"material/calendar-weekend.svg","material-calendar":"material/calendar.svg","material-call-made":"material/call-made.svg","material-call-merge":"material/call-merge.svg","material-call-missed":"material/call-missed.svg","material-call-received":"material/call-received.svg","material-call-split":"material/call-split.svg","material-camcorder-off":"material/camcorder-off.svg","material-camcorder":"material/camcorder.svg","material-camera-account":"material/camera-account.svg","material-camera-burst":"material/camera-burst.svg","material-camera-control":"material/camera-control.svg","material-camera-document-off":"material/camera-document-off.svg","material-camera-document":"material/camera-document.svg","material-camera-enhance-outline":"material/camera-enhance-outline.svg","material-camera-enhance":"material/camera-enhance.svg","material-camera-flip-outline":"material/camera-flip-outline.svg","material-camera-flip":"material/camera-flip.svg","material-camera-front-variant":"material/camera-front-variant.svg","material-camera-front":"material/camera-front.svg","material-camera-gopro":"material/camera-gopro.svg","material-camera-image":"material/camera-image.svg","material-camera-iris":"material/camera-iris.svg","material-camera-lock-open-outline":"material/camera-lock-open-outline.svg","material-camera-lock-open":"material/camera-lock-open.svg","material-camera-lock-outline":"material/camera-lock-outline.svg","material-camera-lock":"material/camera-lock.svg","material-camera-marker-outline":"material/camera-marker-outline.svg","material-camera-marker":"material/camera-marker.svg","material-camera-metering-center":"material/camera-metering-center.svg","material-camera-metering-matrix":"material/camera-metering-matrix.svg","material-camera-metering-partial":"material/camera-metering-partial.svg","material-camera-metering-spot":"material/camera-metering-spot.svg","material-camera-off-outline":"material/camera-off-outline.svg","material-camera-off":"material/camera-off.svg","material-camera-outline":"material/camera-outline.svg","material-camera-party-mode":"material/camera-party-mode.svg","material-camera-plus-outline":"material/camera-plus-outline.svg","material-camera-plus":"material/camera-plus.svg","material-camera-rear-variant":"material/camera-rear-variant.svg","material-camera-rear":"material/camera-rear.svg","material-camera-retake-outline":"material/camera-retake-outline.svg","material-camera-retake":"material/camera-retake.svg","material-camera-switch-outline":"material/camera-switch-outline.svg","material-camera-switch":"material/camera-switch.svg","material-camera-timer":"material/camera-timer.svg","material-camera-wireless-outline":"material/camera-wireless-outline.svg","material-camera-wireless":"material/camera-wireless.svg","material-camera":"material/camera.svg","material-campfire":"material/campfire.svg","material-cancel":"material/cancel.svg","material-candelabra-fire":"material/candelabra-fire.svg","material-candelabra":"material/candelabra.svg","material-candle":"material/candle.svg","material-candy-off-outline":"material/candy-off-outline.svg","material-candy-off":"material/candy-off.svg","material-candy-outline":"material/candy-outline.svg","material-candy":"material/candy.svg","material-candycane":"material/candycane.svg","material-cannabis-off":"material/cannabis-off.svg","material-cannabis":"material/cannabis.svg","material-caps-lock":"material/caps-lock.svg","material-car-2-plus":"material/car-2-plus.svg","material-car-3-plus":"material/car-3-plus.svg","material-car-arrow-left":"material/car-arrow-left.svg","material-car-arrow-right":"material/car-arrow-right.svg","material-car-back":"material/car-back.svg","material-car-battery":"material/car-battery.svg","material-car-brake-abs":"material/car-brake-abs.svg","material-car-brake-alert":"material/car-brake-alert.svg","material-car-brake-fluid-level":"material/car-brake-fluid-level.svg","material-car-brake-hold":"material/car-brake-hold.svg","material-car-brake-low-pressure":"material/car-brake-low-pressure.svg","material-car-brake-parking":"material/car-brake-parking.svg","material-car-brake-retarder":"material/car-brake-retarder.svg","material-car-brake-temperature":"material/car-brake-temperature.svg","material-car-brake-worn-linings":"material/car-brake-worn-linings.svg","material-car-child-seat":"material/car-child-seat.svg","material-car-clock":"material/car-clock.svg","material-car-clutch":"material/car-clutch.svg","material-car-cog":"material/car-cog.svg","material-car-connected":"material/car-connected.svg","material-car-convertible":"material/car-convertible.svg","material-car-coolant-level":"material/car-coolant-level.svg","material-car-cruise-control":"material/car-cruise-control.svg","material-car-defrost-front":"material/car-defrost-front.svg","material-car-defrost-rear":"material/car-defrost-rear.svg","material-car-door-lock-open":"material/car-door-lock-open.svg","material-car-door-lock":"material/car-door-lock.svg","material-car-door":"material/car-door.svg","material-car-electric-outline":"material/car-electric-outline.svg","material-car-electric":"material/car-electric.svg","material-car-emergency":"material/car-emergency.svg","material-car-esp":"material/car-esp.svg","material-car-estate":"material/car-estate.svg","material-car-hatchback":"material/car-hatchback.svg","material-car-info":"material/car-info.svg","material-car-key":"material/car-key.svg","material-car-lifted-pickup":"material/car-lifted-pickup.svg","material-car-light-alert":"material/car-light-alert.svg","material-car-light-dimmed":"material/car-light-dimmed.svg","material-car-light-fog":"material/car-light-fog.svg","material-car-light-high":"material/car-light-high.svg","material-car-limousine":"material/car-limousine.svg","material-car-multiple":"material/car-multiple.svg","material-car-off":"material/car-off.svg","material-car-outline":"material/car-outline.svg","material-car-parking-lights":"material/car-parking-lights.svg","material-car-pickup":"material/car-pickup.svg","material-car-search-outline":"material/car-search-outline.svg","material-car-search":"material/car-search.svg","material-car-seat-cooler":"material/car-seat-cooler.svg","material-car-seat-heater":"material/car-seat-heater.svg","material-car-seat":"material/car-seat.svg","material-car-select":"material/car-select.svg","material-car-settings":"material/car-settings.svg","material-car-shift-pattern":"material/car-shift-pattern.svg","material-car-side":"material/car-side.svg","material-car-speed-limiter":"material/car-speed-limiter.svg","material-car-sports":"material/car-sports.svg","material-car-tire-alert":"material/car-tire-alert.svg","material-car-traction-control":"material/car-traction-control.svg","material-car-turbocharger":"material/car-turbocharger.svg","material-car-wash":"material/car-wash.svg","material-car-windshield-outline":"material/car-windshield-outline.svg","material-car-windshield":"material/car-windshield.svg","material-car-wireless":"material/car-wireless.svg","material-car-wrench":"material/car-wrench.svg","material-car":"material/car.svg","material-carabiner":"material/carabiner.svg","material-caravan":"material/caravan.svg","material-card-account-details-outline":"material/card-account-details-outline.svg","material-card-account-details-star-outline":"material/card-account-details-star-outline.svg","material-card-account-details-star":"material/card-account-details-star.svg","material-card-account-details":"material/card-account-details.svg","material-card-account-mail-outline":"material/card-account-mail-outline.svg","material-card-account-mail":"material/card-account-mail.svg","material-card-account-phone-outline":"material/card-account-phone-outline.svg","material-card-account-phone":"material/card-account-phone.svg","material-card-bulleted-off-outline":"material/card-bulleted-off-outline.svg","material-card-bulleted-off":"material/card-bulleted-off.svg","material-card-bulleted-outline":"material/card-bulleted-outline.svg","material-card-bulleted-settings-outline":"material/card-bulleted-settings-outline.svg","material-card-bulleted-settings":"material/card-bulleted-settings.svg","material-card-bulleted":"material/card-bulleted.svg","material-card-minus-outline":"material/card-minus-outline.svg","material-card-minus":"material/card-minus.svg","material-card-multiple-outline":"material/card-multiple-outline.svg","material-card-multiple":"material/card-multiple.svg","material-card-off-outline":"material/card-off-outline.svg","material-card-off":"material/card-off.svg","material-card-outline":"material/card-outline.svg","material-card-plus-outline":"material/card-plus-outline.svg","material-card-plus":"material/card-plus.svg","material-card-remove-outline":"material/card-remove-outline.svg","material-card-remove":"material/card-remove.svg","material-card-search-outline":"material/card-search-outline.svg","material-card-search":"material/card-search.svg","material-card-text-outline":"material/card-text-outline.svg","material-card-text":"material/card-text.svg","material-card":"material/card.svg","material-cards-club-outline":"material/cards-club-outline.svg","material-cards-club":"material/cards-club.svg","material-cards-diamond-outline":"material/cards-diamond-outline.svg","material-cards-diamond":"material/cards-diamond.svg","material-cards-heart-outline":"material/cards-heart-outline.svg","material-cards-heart":"material/cards-heart.svg","material-cards-outline":"material/cards-outline.svg","material-cards-playing-club-multiple-outline":"material/cards-playing-club-multiple-outline.svg","material-cards-playing-club-multiple":"material/cards-playing-club-multiple.svg","material-cards-playing-club-outline":"material/cards-playing-club-outline.svg","material-cards-playing-club":"material/cards-playing-club.svg","material-cards-playing-diamond-multiple-outline":"material/cards-playing-diamond-multiple-outline.svg","material-cards-playing-diamond-multiple":"material/cards-playing-diamond-multiple.svg","material-cards-playing-diamond-outline":"material/cards-playing-diamond-outline.svg","material-cards-playing-diamond":"material/cards-playing-diamond.svg","material-cards-playing-heart-multiple-outline":"material/cards-playing-heart-multiple-outline.svg","material-cards-playing-heart-multiple":"material/cards-playing-heart-multiple.svg","material-cards-playing-heart-outline":"material/cards-playing-heart-outline.svg","material-cards-playing-heart":"material/cards-playing-heart.svg","material-cards-playing-outline":"material/cards-playing-outline.svg","material-cards-playing-spade-multiple-outline":"material/cards-playing-spade-multiple-outline.svg","material-cards-playing-spade-multiple":"material/cards-playing-spade-multiple.svg","material-cards-playing-spade-outline":"material/cards-playing-spade-outline.svg","material-cards-playing-spade":"material/cards-playing-spade.svg","material-cards-playing":"material/cards-playing.svg","material-cards-spade-outline":"material/cards-spade-outline.svg","material-cards-spade":"material/cards-spade.svg","material-cards-variant":"material/cards-variant.svg","material-cards":"material/cards.svg","material-carrot":"material/carrot.svg","material-cart-arrow-down":"material/cart-arrow-down.svg","material-cart-arrow-right":"material/cart-arrow-right.svg","material-cart-arrow-up":"material/cart-arrow-up.svg","material-cart-check":"material/cart-check.svg","material-cart-heart":"material/cart-heart.svg","material-cart-minus":"material/cart-minus.svg","material-cart-off":"material/cart-off.svg","material-cart-outline":"material/cart-outline.svg","material-cart-percent":"material/cart-percent.svg","material-cart-plus":"material/cart-plus.svg","material-cart-remove":"material/cart-remove.svg","material-cart-variant":"material/cart-variant.svg","material-cart":"material/cart.svg","material-case-sensitive-alt":"material/case-sensitive-alt.svg","material-cash-100":"material/cash-100.svg","material-cash-check":"material/cash-check.svg","material-cash-clock":"material/cash-clock.svg","material-cash-edit":"material/cash-edit.svg","material-cash-fast":"material/cash-fast.svg","material-cash-lock-open":"material/cash-lock-open.svg","material-cash-lock":"material/cash-lock.svg","material-cash-marker":"material/cash-marker.svg","material-cash-minus":"material/cash-minus.svg","material-cash-multiple":"material/cash-multiple.svg","material-cash-off":"material/cash-off.svg","material-cash-plus":"material/cash-plus.svg","material-cash-refund":"material/cash-refund.svg","material-cash-register":"material/cash-register.svg","material-cash-remove":"material/cash-remove.svg","material-cash-sync":"material/cash-sync.svg","material-cash":"material/cash.svg","material-cassette":"material/cassette.svg","material-cast-audio-variant":"material/cast-audio-variant.svg","material-cast-audio":"material/cast-audio.svg","material-cast-connected":"material/cast-connected.svg","material-cast-education":"material/cast-education.svg","material-cast-off":"material/cast-off.svg","material-cast-variant":"material/cast-variant.svg","material-cast":"material/cast.svg","material-castle":"material/castle.svg","material-cat":"material/cat.svg","material-cctv-off":"material/cctv-off.svg","material-cctv":"material/cctv.svg","material-ceiling-fan-light":"material/ceiling-fan-light.svg","material-ceiling-fan":"material/ceiling-fan.svg","material-ceiling-light-multiple-outline":"material/ceiling-light-multiple-outline.svg","material-ceiling-light-multiple":"material/ceiling-light-multiple.svg","material-ceiling-light-outline":"material/ceiling-light-outline.svg","material-ceiling-light":"material/ceiling-light.svg","material-cellphone-arrow-down-variant":"material/cellphone-arrow-down-variant.svg","material-cellphone-arrow-down":"material/cellphone-arrow-down.svg","material-cellphone-basic":"material/cellphone-basic.svg","material-cellphone-charging":"material/cellphone-charging.svg","material-cellphone-check":"material/cellphone-check.svg","material-cellphone-cog":"material/cellphone-cog.svg","material-cellphone-dock":"material/cellphone-dock.svg","material-cellphone-information":"material/cellphone-information.svg","material-cellphone-key":"material/cellphone-key.svg","material-cellphone-link-off":"material/cellphone-link-off.svg","material-cellphone-link":"material/cellphone-link.svg","material-cellphone-lock":"material/cellphone-lock.svg","material-cellphone-marker":"material/cellphone-marker.svg","material-cellphone-message-off":"material/cellphone-message-off.svg","material-cellphone-message":"material/cellphone-message.svg","material-cellphone-nfc-off":"material/cellphone-nfc-off.svg","material-cellphone-nfc":"material/cellphone-nfc.svg","material-cellphone-off":"material/cellphone-off.svg","material-cellphone-play":"material/cellphone-play.svg","material-cellphone-remove":"material/cellphone-remove.svg","material-cellphone-screenshot":"material/cellphone-screenshot.svg","material-cellphone-settings":"material/cellphone-settings.svg","material-cellphone-sound":"material/cellphone-sound.svg","material-cellphone-text":"material/cellphone-text.svg","material-cellphone-wireless":"material/cellphone-wireless.svg","material-cellphone":"material/cellphone.svg","material-centos":"material/centos.svg","material-certificate-outline":"material/certificate-outline.svg","material-certificate":"material/certificate.svg","material-chair-rolling":"material/chair-rolling.svg","material-chair-school":"material/chair-school.svg","material-chandelier":"material/chandelier.svg","material-charity-search":"material/charity-search.svg","material-charity":"material/charity.svg","material-chart-arc":"material/chart-arc.svg","material-chart-areaspline-variant":"material/chart-areaspline-variant.svg","material-chart-areaspline":"material/chart-areaspline.svg","material-chart-bar-stacked":"material/chart-bar-stacked.svg","material-chart-bar":"material/chart-bar.svg","material-chart-bell-curve-cumulative":"material/chart-bell-curve-cumulative.svg","material-chart-bell-curve":"material/chart-bell-curve.svg","material-chart-box-multiple-outline":"material/chart-box-multiple-outline.svg","material-chart-box-multiple":"material/chart-box-multiple.svg","material-chart-box-outline":"material/chart-box-outline.svg","material-chart-box-plus-outline":"material/chart-box-plus-outline.svg","material-chart-box":"material/chart-box.svg","material-chart-bubble":"material/chart-bubble.svg","material-chart-donut-variant":"material/chart-donut-variant.svg","material-chart-donut":"material/chart-donut.svg","material-chart-gantt":"material/chart-gantt.svg","material-chart-histogram":"material/chart-histogram.svg","material-chart-line-stacked":"material/chart-line-stacked.svg","material-chart-line-variant":"material/chart-line-variant.svg","material-chart-line":"material/chart-line.svg","material-chart-multiline":"material/chart-multiline.svg","material-chart-multiple":"material/chart-multiple.svg","material-chart-pie-outline":"material/chart-pie-outline.svg","material-chart-pie":"material/chart-pie.svg","material-chart-ppf":"material/chart-ppf.svg","material-chart-sankey-variant":"material/chart-sankey-variant.svg","material-chart-sankey":"material/chart-sankey.svg","material-chart-scatter-plot-hexbin":"material/chart-scatter-plot-hexbin.svg","material-chart-scatter-plot":"material/chart-scatter-plot.svg","material-chart-timeline-variant-shimmer":"material/chart-timeline-variant-shimmer.svg","material-chart-timeline-variant":"material/chart-timeline-variant.svg","material-chart-timeline":"material/chart-timeline.svg","material-chart-tree":"material/chart-tree.svg","material-chart-waterfall":"material/chart-waterfall.svg","material-chat-alert-outline":"material/chat-alert-outline.svg","material-chat-alert":"material/chat-alert.svg","material-chat-minus-outline":"material/chat-minus-outline.svg","material-chat-minus":"material/chat-minus.svg","material-chat-outline":"material/chat-outline.svg","material-chat-plus-outline":"material/chat-plus-outline.svg","material-chat-plus":"material/chat-plus.svg","material-chat-processing-outline":"material/chat-processing-outline.svg","material-chat-processing":"material/chat-processing.svg","material-chat-question-outline":"material/chat-question-outline.svg","material-chat-question":"material/chat-question.svg","material-chat-remove-outline":"material/chat-remove-outline.svg","material-chat-remove":"material/chat-remove.svg","material-chat-sleep-outline":"material/chat-sleep-outline.svg","material-chat-sleep":"material/chat-sleep.svg","material-chat":"material/chat.svg","material-check-all":"material/check-all.svg","material-check-bold":"material/check-bold.svg","material-check-circle-outline":"material/check-circle-outline.svg","material-check-circle":"material/check-circle.svg","material-check-decagram-outline":"material/check-decagram-outline.svg","material-check-decagram":"material/check-decagram.svg","material-check-network-outline":"material/check-network-outline.svg","material-check-network":"material/check-network.svg","material-check-outline":"material/check-outline.svg","material-check-underline-circle-outline":"material/check-underline-circle-outline.svg","material-check-underline-circle":"material/check-underline-circle.svg","material-check-underline":"material/check-underline.svg","material-check":"material/check.svg","material-checkbook-arrow-left":"material/checkbook-arrow-left.svg","material-checkbook-arrow-right":"material/checkbook-arrow-right.svg","material-checkbook":"material/checkbook.svg","material-checkbox-blank-badge-outline":"material/checkbox-blank-badge-outline.svg","material-checkbox-blank-badge":"material/checkbox-blank-badge.svg","material-checkbox-blank-circle-outline":"material/checkbox-blank-circle-outline.svg","material-checkbox-blank-circle":"material/checkbox-blank-circle.svg","material-checkbox-blank-off-outline":"material/checkbox-blank-off-outline.svg","material-checkbox-blank-off":"material/checkbox-blank-off.svg","material-checkbox-blank-outline":"material/checkbox-blank-outline.svg","material-checkbox-blank":"material/checkbox-blank.svg","material-checkbox-intermediate-variant":"material/checkbox-intermediate-variant.svg","material-checkbox-intermediate":"material/checkbox-intermediate.svg","material-checkbox-marked-circle-auto-outline":"material/checkbox-marked-circle-auto-outline.svg","material-checkbox-marked-circle-minus-outline":"material/checkbox-marked-circle-minus-outline.svg","material-checkbox-marked-circle-outline":"material/checkbox-marked-circle-outline.svg","material-checkbox-marked-circle-plus-outline":"material/checkbox-marked-circle-plus-outline.svg","material-checkbox-marked-circle":"material/checkbox-marked-circle.svg","material-checkbox-marked-outline":"material/checkbox-marked-outline.svg","material-checkbox-marked":"material/checkbox-marked.svg","material-checkbox-multiple-blank-circle-outline":"material/checkbox-multiple-blank-circle-outline.svg","material-checkbox-multiple-blank-circle":"material/checkbox-multiple-blank-circle.svg","material-checkbox-multiple-blank-outline":"material/checkbox-multiple-blank-outline.svg","material-checkbox-multiple-blank":"material/checkbox-multiple-blank.svg","material-checkbox-multiple-marked-circle-outline":"material/checkbox-multiple-marked-circle-outline.svg","material-checkbox-multiple-marked-circle":"material/checkbox-multiple-marked-circle.svg","material-checkbox-multiple-marked-outline":"material/checkbox-multiple-marked-outline.svg","material-checkbox-multiple-marked":"material/checkbox-multiple-marked.svg","material-checkbox-multiple-outline":"material/checkbox-multiple-outline.svg","material-checkbox-outline":"material/checkbox-outline.svg","material-checkerboard-minus":"material/checkerboard-minus.svg","material-checkerboard-plus":"material/checkerboard-plus.svg","material-checkerboard-remove":"material/checkerboard-remove.svg","material-checkerboard":"material/checkerboard.svg","material-cheese-off":"material/cheese-off.svg","material-cheese":"material/cheese.svg","material-chef-hat":"material/chef-hat.svg","material-chemical-weapon":"material/chemical-weapon.svg","material-chess-bishop":"material/chess-bishop.svg","material-chess-king":"material/chess-king.svg","material-chess-knight":"material/chess-knight.svg","material-chess-pawn":"material/chess-pawn.svg","material-chess-queen":"material/chess-queen.svg","material-chess-rook":"material/chess-rook.svg","material-chevron-double-down":"material/chevron-double-down.svg","material-chevron-double-left":"material/chevron-double-left.svg","material-chevron-double-right":"material/chevron-double-right.svg","material-chevron-double-up":"material/chevron-double-up.svg","material-chevron-down-box-outline":"material/chevron-down-box-outline.svg","material-chevron-down-box":"material/chevron-down-box.svg","material-chevron-down-circle-outline":"material/chevron-down-circle-outline.svg","material-chevron-down-circle":"material/chevron-down-circle.svg","material-chevron-down":"material/chevron-down.svg","material-chevron-left-box-outline":"material/chevron-left-box-outline.svg","material-chevron-left-box":"material/chevron-left-box.svg","material-chevron-left-circle-outline":"material/chevron-left-circle-outline.svg","material-chevron-left-circle":"material/chevron-left-circle.svg","material-chevron-left":"material/chevron-left.svg","material-chevron-right-box-outline":"material/chevron-right-box-outline.svg","material-chevron-right-box":"material/chevron-right-box.svg","material-chevron-right-circle-outline":"material/chevron-right-circle-outline.svg","material-chevron-right-circle":"material/chevron-right-circle.svg","material-chevron-right":"material/chevron-right.svg","material-chevron-triple-down":"material/chevron-triple-down.svg","material-chevron-triple-left":"material/chevron-triple-left.svg","material-chevron-triple-right":"material/chevron-triple-right.svg","material-chevron-triple-up":"material/chevron-triple-up.svg","material-chevron-up-box-outline":"material/chevron-up-box-outline.svg","material-chevron-up-box":"material/chevron-up-box.svg","material-chevron-up-circle-outline":"material/chevron-up-circle-outline.svg","material-chevron-up-circle":"material/chevron-up-circle.svg","material-chevron-up":"material/chevron-up.svg","material-chili-alert-outline":"material/chili-alert-outline.svg","material-chili-alert":"material/chili-alert.svg","material-chili-hot-outline":"material/chili-hot-outline.svg","material-chili-hot":"material/chili-hot.svg","material-chili-medium-outline":"material/chili-medium-outline.svg","material-chili-medium":"material/chili-medium.svg","material-chili-mild-outline":"material/chili-mild-outline.svg","material-chili-mild":"material/chili-mild.svg","material-chili-off-outline":"material/chili-off-outline.svg","material-chili-off":"material/chili-off.svg","material-chip":"material/chip.svg","material-church-outline":"material/church-outline.svg","material-church":"material/church.svg","material-cigar-off":"material/cigar-off.svg","material-cigar":"material/cigar.svg","material-circle-box-outline":"material/circle-box-outline.svg","material-circle-box":"material/circle-box.svg","material-circle-double":"material/circle-double.svg","material-circle-edit-outline":"material/circle-edit-outline.svg","material-circle-expand":"material/circle-expand.svg","material-circle-half-full":"material/circle-half-full.svg","material-circle-half":"material/circle-half.svg","material-circle-medium":"material/circle-medium.svg","material-circle-multiple-outline":"material/circle-multiple-outline.svg","material-circle-multiple":"material/circle-multiple.svg","material-circle-off-outline":"material/circle-off-outline.svg","material-circle-opacity":"material/circle-opacity.svg","material-circle-outline":"material/circle-outline.svg","material-circle-slice-1":"material/circle-slice-1.svg","material-circle-slice-2":"material/circle-slice-2.svg","material-circle-slice-3":"material/circle-slice-3.svg","material-circle-slice-4":"material/circle-slice-4.svg","material-circle-slice-5":"material/circle-slice-5.svg","material-circle-slice-6":"material/circle-slice-6.svg","material-circle-slice-7":"material/circle-slice-7.svg","material-circle-slice-8":"material/circle-slice-8.svg","material-circle-small":"material/circle-small.svg","material-circle":"material/circle.svg","material-circular-saw":"material/circular-saw.svg","material-city-switch":"material/city-switch.svg","material-city-variant-outline":"material/city-variant-outline.svg","material-city-variant":"material/city-variant.svg","material-city":"material/city.svg","material-clipboard-account-outline":"material/clipboard-account-outline.svg","material-clipboard-account":"material/clipboard-account.svg","material-clipboard-alert-outline":"material/clipboard-alert-outline.svg","material-clipboard-alert":"material/clipboard-alert.svg","material-clipboard-arrow-down-outline":"material/clipboard-arrow-down-outline.svg","material-clipboard-arrow-down":"material/clipboard-arrow-down.svg","material-clipboard-arrow-left-outline":"material/clipboard-arrow-left-outline.svg","material-clipboard-arrow-left":"material/clipboard-arrow-left.svg","material-clipboard-arrow-right-outline":"material/clipboard-arrow-right-outline.svg","material-clipboard-arrow-right":"material/clipboard-arrow-right.svg","material-clipboard-arrow-up-outline":"material/clipboard-arrow-up-outline.svg","material-clipboard-arrow-up":"material/clipboard-arrow-up.svg","material-clipboard-check-multiple-outline":"material/clipboard-check-multiple-outline.svg","material-clipboard-check-multiple":"material/clipboard-check-multiple.svg","material-clipboard-check-outline":"material/clipboard-check-outline.svg","material-clipboard-check":"material/clipboard-check.svg","material-clipboard-clock-outline":"material/clipboard-clock-outline.svg","material-clipboard-clock":"material/clipboard-clock.svg","material-clipboard-edit-outline":"material/clipboard-edit-outline.svg","material-clipboard-edit":"material/clipboard-edit.svg","material-clipboard-file-outline":"material/clipboard-file-outline.svg","material-clipboard-file":"material/clipboard-file.svg","material-clipboard-flow-outline":"material/clipboard-flow-outline.svg","material-clipboard-flow":"material/clipboard-flow.svg","material-clipboard-list-outline":"material/clipboard-list-outline.svg","material-clipboard-list":"material/clipboard-list.svg","material-clipboard-minus-outline":"material/clipboard-minus-outline.svg","material-clipboard-minus":"material/clipboard-minus.svg","material-clipboard-multiple-outline":"material/clipboard-multiple-outline.svg","material-clipboard-multiple":"material/clipboard-multiple.svg","material-clipboard-off-outline":"material/clipboard-off-outline.svg","material-clipboard-off":"material/clipboard-off.svg","material-clipboard-outline":"material/clipboard-outline.svg","material-clipboard-play-multiple-outline":"material/clipboard-play-multiple-outline.svg","material-clipboard-play-multiple":"material/clipboard-play-multiple.svg","material-clipboard-play-outline":"material/clipboard-play-outline.svg","material-clipboard-play":"material/clipboard-play.svg","material-clipboard-plus-outline":"material/clipboard-plus-outline.svg","material-clipboard-plus":"material/clipboard-plus.svg","material-clipboard-pulse-outline":"material/clipboard-pulse-outline.svg","material-clipboard-pulse":"material/clipboard-pulse.svg","material-clipboard-remove-outline":"material/clipboard-remove-outline.svg","material-clipboard-remove":"material/clipboard-remove.svg","material-clipboard-search-outline":"material/clipboard-search-outline.svg","material-clipboard-search":"material/clipboard-search.svg","material-clipboard-text-clock-outline":"material/clipboard-text-clock-outline.svg","material-clipboard-text-clock":"material/clipboard-text-clock.svg","material-clipboard-text-multiple-outline":"material/clipboard-text-multiple-outline.svg","material-clipboard-text-multiple":"material/clipboard-text-multiple.svg","material-clipboard-text-off-outline":"material/clipboard-text-off-outline.svg","material-clipboard-text-off":"material/clipboard-text-off.svg","material-clipboard-text-outline":"material/clipboard-text-outline.svg","material-clipboard-text-play-outline":"material/clipboard-text-play-outline.svg","material-clipboard-text-play":"material/clipboard-text-play.svg","material-clipboard-text-search-outline":"material/clipboard-text-search-outline.svg","material-clipboard-text-search":"material/clipboard-text-search.svg","material-clipboard-text":"material/clipboard-text.svg","material-clipboard":"material/clipboard.svg","material-clippy":"material/clippy.svg","material-clock-alert-outline":"material/clock-alert-outline.svg","material-clock-alert":"material/clock-alert.svg","material-clock-check-outline":"material/clock-check-outline.svg","material-clock-check":"material/clock-check.svg","material-clock-digital":"material/clock-digital.svg","material-clock-edit-outline":"material/clock-edit-outline.svg","material-clock-edit":"material/clock-edit.svg","material-clock-end":"material/clock-end.svg","material-clock-fast":"material/clock-fast.svg","material-clock-in":"material/clock-in.svg","material-clock-minus-outline":"material/clock-minus-outline.svg","material-clock-minus":"material/clock-minus.svg","material-clock-out":"material/clock-out.svg","material-clock-outline":"material/clock-outline.svg","material-clock-plus-outline":"material/clock-plus-outline.svg","material-clock-plus":"material/clock-plus.svg","material-clock-remove-outline":"material/clock-remove-outline.svg","material-clock-remove":"material/clock-remove.svg","material-clock-star-four-points-outline":"material/clock-star-four-points-outline.svg","material-clock-star-four-points":"material/clock-star-four-points.svg","material-clock-start":"material/clock-start.svg","material-clock-time-eight-outline":"material/clock-time-eight-outline.svg","material-clock-time-eight":"material/clock-time-eight.svg","material-clock-time-eleven-outline":"material/clock-time-eleven-outline.svg","material-clock-time-eleven":"material/clock-time-eleven.svg","material-clock-time-five-outline":"material/clock-time-five-outline.svg","material-clock-time-five":"material/clock-time-five.svg","material-clock-time-four-outline":"material/clock-time-four-outline.svg","material-clock-time-four":"material/clock-time-four.svg","material-clock-time-nine-outline":"material/clock-time-nine-outline.svg","material-clock-time-nine":"material/clock-time-nine.svg","material-clock-time-one-outline":"material/clock-time-one-outline.svg","material-clock-time-one":"material/clock-time-one.svg","material-clock-time-seven-outline":"material/clock-time-seven-outline.svg","material-clock-time-seven":"material/clock-time-seven.svg","material-clock-time-six-outline":"material/clock-time-six-outline.svg","material-clock-time-six":"material/clock-time-six.svg","material-clock-time-ten-outline":"material/clock-time-ten-outline.svg","material-clock-time-ten":"material/clock-time-ten.svg","material-clock-time-three-outline":"material/clock-time-three-outline.svg","material-clock-time-three":"material/clock-time-three.svg","material-clock-time-twelve-outline":"material/clock-time-twelve-outline.svg","material-clock-time-twelve":"material/clock-time-twelve.svg","material-clock-time-two-outline":"material/clock-time-two-outline.svg","material-clock-time-two":"material/clock-time-two.svg","material-clock":"material/clock.svg","material-close-box-multiple-outline":"material/close-box-multiple-outline.svg","material-close-box-multiple":"material/close-box-multiple.svg","material-close-box-outline":"material/close-box-outline.svg","material-close-box":"material/close-box.svg","material-close-circle-multiple-outline":"material/close-circle-multiple-outline.svg","material-close-circle-multiple":"material/close-circle-multiple.svg","material-close-circle-outline":"material/close-circle-outline.svg","material-close-circle":"material/close-circle.svg","material-close-network-outline":"material/close-network-outline.svg","material-close-network":"material/close-network.svg","material-close-octagon-outline":"material/close-octagon-outline.svg","material-close-octagon":"material/close-octagon.svg","material-close-outline":"material/close-outline.svg","material-close-thick":"material/close-thick.svg","material-close":"material/close.svg","material-closed-caption-outline":"material/closed-caption-outline.svg","material-closed-caption":"material/closed-caption.svg","material-cloud-alert-outline":"material/cloud-alert-outline.svg","material-cloud-alert":"material/cloud-alert.svg","material-cloud-arrow-down-outline":"material/cloud-arrow-down-outline.svg","material-cloud-arrow-down":"material/cloud-arrow-down.svg","material-cloud-arrow-left-outline":"material/cloud-arrow-left-outline.svg","material-cloud-arrow-left":"material/cloud-arrow-left.svg","material-cloud-arrow-right-outline":"material/cloud-arrow-right-outline.svg","material-cloud-arrow-right":"material/cloud-arrow-right.svg","material-cloud-arrow-up-outline":"material/cloud-arrow-up-outline.svg","material-cloud-arrow-up":"material/cloud-arrow-up.svg","material-cloud-braces":"material/cloud-braces.svg","material-cloud-cancel-outline":"material/cloud-cancel-outline.svg","material-cloud-cancel":"material/cloud-cancel.svg","material-cloud-check-outline":"material/cloud-check-outline.svg","material-cloud-check-variant-outline":"material/cloud-check-variant-outline.svg","material-cloud-check-variant":"material/cloud-check-variant.svg","material-cloud-check":"material/cloud-check.svg","material-cloud-circle-outline":"material/cloud-circle-outline.svg","material-cloud-circle":"material/cloud-circle.svg","material-cloud-clock-outline":"material/cloud-clock-outline.svg","material-cloud-clock":"material/cloud-clock.svg","material-cloud-cog-outline":"material/cloud-cog-outline.svg","material-cloud-cog":"material/cloud-cog.svg","material-cloud-download-outline":"material/cloud-download-outline.svg","material-cloud-download":"material/cloud-download.svg","material-cloud-key-outline":"material/cloud-key-outline.svg","material-cloud-key":"material/cloud-key.svg","material-cloud-lock-open-outline":"material/cloud-lock-open-outline.svg","material-cloud-lock-open":"material/cloud-lock-open.svg","material-cloud-lock-outline":"material/cloud-lock-outline.svg","material-cloud-lock":"material/cloud-lock.svg","material-cloud-minus-outline":"material/cloud-minus-outline.svg","material-cloud-minus":"material/cloud-minus.svg","material-cloud-off-outline":"material/cloud-off-outline.svg","material-cloud-off":"material/cloud-off.svg","material-cloud-outline":"material/cloud-outline.svg","material-cloud-percent-outline":"material/cloud-percent-outline.svg","material-cloud-percent":"material/cloud-percent.svg","material-cloud-plus-outline":"material/cloud-plus-outline.svg","material-cloud-plus":"material/cloud-plus.svg","material-cloud-print-outline":"material/cloud-print-outline.svg","material-cloud-print":"material/cloud-print.svg","material-cloud-question-outline":"material/cloud-question-outline.svg","material-cloud-question":"material/cloud-question.svg","material-cloud-refresh-outline":"material/cloud-refresh-outline.svg","material-cloud-refresh-variant-outline":"material/cloud-refresh-variant-outline.svg","material-cloud-refresh-variant":"material/cloud-refresh-variant.svg","material-cloud-refresh":"material/cloud-refresh.svg","material-cloud-remove-outline":"material/cloud-remove-outline.svg","material-cloud-remove":"material/cloud-remove.svg","material-cloud-search-outline":"material/cloud-search-outline.svg","material-cloud-search":"material/cloud-search.svg","material-cloud-sync-outline":"material/cloud-sync-outline.svg","material-cloud-sync":"material/cloud-sync.svg","material-cloud-tags":"material/cloud-tags.svg","material-cloud-upload-outline":"material/cloud-upload-outline.svg","material-cloud-upload":"material/cloud-upload.svg","material-cloud":"material/cloud.svg","material-clouds":"material/clouds.svg","material-clover-outline":"material/clover-outline.svg","material-clover":"material/clover.svg","material-coach-lamp-variant":"material/coach-lamp-variant.svg","material-coach-lamp":"material/coach-lamp.svg","material-coat-rack":"material/coat-rack.svg","material-code-array":"material/code-array.svg","material-code-block-braces":"material/code-block-braces.svg","material-code-block-brackets":"material/code-block-brackets.svg","material-code-block-parentheses":"material/code-block-parentheses.svg","material-code-block-tags":"material/code-block-tags.svg","material-code-braces-box":"material/code-braces-box.svg","material-code-braces":"material/code-braces.svg","material-code-brackets":"material/code-brackets.svg","material-code-equal":"material/code-equal.svg","material-code-greater-than-or-equal":"material/code-greater-than-or-equal.svg","material-code-greater-than":"material/code-greater-than.svg","material-code-json":"material/code-json.svg","material-code-less-than-or-equal":"material/code-less-than-or-equal.svg","material-code-less-than":"material/code-less-than.svg","material-code-not-equal-variant":"material/code-not-equal-variant.svg","material-code-not-equal":"material/code-not-equal.svg","material-code-parentheses-box":"material/code-parentheses-box.svg","material-code-parentheses":"material/code-parentheses.svg","material-code-string":"material/code-string.svg","material-code-tags-check":"material/code-tags-check.svg","material-code-tags":"material/code-tags.svg","material-codepen":"material/codepen.svg","material-coffee-maker-check-outline":"material/coffee-maker-check-outline.svg","material-coffee-maker-check":"material/coffee-maker-check.svg","material-coffee-maker-outline":"material/coffee-maker-outline.svg","material-coffee-maker":"material/coffee-maker.svg","material-coffee-off-outline":"material/coffee-off-outline.svg","material-coffee-off":"material/coffee-off.svg","material-coffee-outline":"material/coffee-outline.svg","material-coffee-to-go-outline":"material/coffee-to-go-outline.svg","material-coffee-to-go":"material/coffee-to-go.svg","material-coffee":"material/coffee.svg","material-coffin":"material/coffin.svg","material-cog-box":"material/cog-box.svg","material-cog-clockwise":"material/cog-clockwise.svg","material-cog-counterclockwise":"material/cog-counterclockwise.svg","material-cog-off-outline":"material/cog-off-outline.svg","material-cog-off":"material/cog-off.svg","material-cog-outline":"material/cog-outline.svg","material-cog-pause-outline":"material/cog-pause-outline.svg","material-cog-pause":"material/cog-pause.svg","material-cog-play-outline":"material/cog-play-outline.svg","material-cog-play":"material/cog-play.svg","material-cog-refresh-outline":"material/cog-refresh-outline.svg","material-cog-refresh":"material/cog-refresh.svg","material-cog-stop-outline":"material/cog-stop-outline.svg","material-cog-stop":"material/cog-stop.svg","material-cog-sync-outline":"material/cog-sync-outline.svg","material-cog-sync":"material/cog-sync.svg","material-cog-transfer-outline":"material/cog-transfer-outline.svg","material-cog-transfer":"material/cog-transfer.svg","material-cog":"material/cog.svg","material-cogs":"material/cogs.svg","material-collage":"material/collage.svg","material-collapse-all-outline":"material/collapse-all-outline.svg","material-collapse-all":"material/collapse-all.svg","material-color-helper":"material/color-helper.svg","material-comma-box-outline":"material/comma-box-outline.svg","material-comma-box":"material/comma-box.svg","material-comma-circle-outline":"material/comma-circle-outline.svg","material-comma-circle":"material/comma-circle.svg","material-comma":"material/comma.svg","material-comment-account-outline":"material/comment-account-outline.svg","material-comment-account":"material/comment-account.svg","material-comment-alert-outline":"material/comment-alert-outline.svg","material-comment-alert":"material/comment-alert.svg","material-comment-arrow-left-outline":"material/comment-arrow-left-outline.svg","material-comment-arrow-left":"material/comment-arrow-left.svg","material-comment-arrow-right-outline":"material/comment-arrow-right-outline.svg","material-comment-arrow-right":"material/comment-arrow-right.svg","material-comment-bookmark-outline":"material/comment-bookmark-outline.svg","material-comment-bookmark":"material/comment-bookmark.svg","material-comment-check-outline":"material/comment-check-outline.svg","material-comment-check":"material/comment-check.svg","material-comment-edit-outline":"material/comment-edit-outline.svg","material-comment-edit":"material/comment-edit.svg","material-comment-eye-outline":"material/comment-eye-outline.svg","material-comment-eye":"material/comment-eye.svg","material-comment-flash-outline":"material/comment-flash-outline.svg","material-comment-flash":"material/comment-flash.svg","material-comment-minus-outline":"material/comment-minus-outline.svg","material-comment-minus":"material/comment-minus.svg","material-comment-multiple-outline":"material/comment-multiple-outline.svg","material-comment-multiple":"material/comment-multiple.svg","material-comment-off-outline":"material/comment-off-outline.svg","material-comment-off":"material/comment-off.svg","material-comment-outline":"material/comment-outline.svg","material-comment-plus-outline":"material/comment-plus-outline.svg","material-comment-plus":"material/comment-plus.svg","material-comment-processing-outline":"material/comment-processing-outline.svg","material-comment-processing":"material/comment-processing.svg","material-comment-question-outline":"material/comment-question-outline.svg","material-comment-question":"material/comment-question.svg","material-comment-quote-outline":"material/comment-quote-outline.svg","material-comment-quote":"material/comment-quote.svg","material-comment-remove-outline":"material/comment-remove-outline.svg","material-comment-remove":"material/comment-remove.svg","material-comment-search-outline":"material/comment-search-outline.svg","material-comment-search":"material/comment-search.svg","material-comment-text-multiple-outline":"material/comment-text-multiple-outline.svg","material-comment-text-multiple":"material/comment-text-multiple.svg","material-comment-text-outline":"material/comment-text-outline.svg","material-comment-text":"material/comment-text.svg","material-comment":"material/comment.svg","material-compare-horizontal":"material/compare-horizontal.svg","material-compare-remove":"material/compare-remove.svg","material-compare-vertical":"material/compare-vertical.svg","material-compare":"material/compare.svg","material-compass-off-outline":"material/compass-off-outline.svg","material-compass-off":"material/compass-off.svg","material-compass-outline":"material/compass-outline.svg","material-compass-rose":"material/compass-rose.svg","material-compass":"material/compass.svg","material-compost":"material/compost.svg","material-cone-off":"material/cone-off.svg","material-cone":"material/cone.svg","material-connection":"material/connection.svg","material-console-line":"material/console-line.svg","material-console-network-outline":"material/console-network-outline.svg","material-console-network":"material/console-network.svg","material-console":"material/console.svg","material-consolidate":"material/consolidate.svg","material-contactless-payment-circle-outline":"material/contactless-payment-circle-outline.svg","material-contactless-payment-circle":"material/contactless-payment-circle.svg","material-contactless-payment":"material/contactless-payment.svg","material-contacts-outline":"material/contacts-outline.svg","material-contacts":"material/contacts.svg","material-contain-end":"material/contain-end.svg","material-contain-start":"material/contain-start.svg","material-contain":"material/contain.svg","material-content-copy":"material/content-copy.svg","material-content-cut":"material/content-cut.svg","material-content-duplicate":"material/content-duplicate.svg","material-content-paste":"material/content-paste.svg","material-content-save-alert-outline":"material/content-save-alert-outline.svg","material-content-save-alert":"material/content-save-alert.svg","material-content-save-all-outline":"material/content-save-all-outline.svg","material-content-save-all":"material/content-save-all.svg","material-content-save-check-outline":"material/content-save-check-outline.svg","material-content-save-check":"material/content-save-check.svg","material-content-save-cog-outline":"material/content-save-cog-outline.svg","material-content-save-cog":"material/content-save-cog.svg","material-content-save-edit-outline":"material/content-save-edit-outline.svg","material-content-save-edit":"material/content-save-edit.svg","material-content-save-minus-outline":"material/content-save-minus-outline.svg","material-content-save-minus":"material/content-save-minus.svg","material-content-save-move-outline":"material/content-save-move-outline.svg","material-content-save-move":"material/content-save-move.svg","material-content-save-off-outline":"material/content-save-off-outline.svg","material-content-save-off":"material/content-save-off.svg","material-content-save-outline":"material/content-save-outline.svg","material-content-save-plus-outline":"material/content-save-plus-outline.svg","material-content-save-plus":"material/content-save-plus.svg","material-content-save-settings-outline":"material/content-save-settings-outline.svg","material-content-save-settings":"material/content-save-settings.svg","material-content-save":"material/content-save.svg","material-contrast-box":"material/contrast-box.svg","material-contrast-circle":"material/contrast-circle.svg","material-contrast":"material/contrast.svg","material-controller-classic-outline":"material/controller-classic-outline.svg","material-controller-classic":"material/controller-classic.svg","material-controller-off":"material/controller-off.svg","material-controller":"material/controller.svg","material-cookie-alert-outline":"material/cookie-alert-outline.svg","material-cookie-alert":"material/cookie-alert.svg","material-cookie-check-outline":"material/cookie-check-outline.svg","material-cookie-check":"material/cookie-check.svg","material-cookie-clock-outline":"material/cookie-clock-outline.svg","material-cookie-clock":"material/cookie-clock.svg","material-cookie-cog-outline":"material/cookie-cog-outline.svg","material-cookie-cog":"material/cookie-cog.svg","material-cookie-edit-outline":"material/cookie-edit-outline.svg","material-cookie-edit":"material/cookie-edit.svg","material-cookie-lock-outline":"material/cookie-lock-outline.svg","material-cookie-lock":"material/cookie-lock.svg","material-cookie-minus-outline":"material/cookie-minus-outline.svg","material-cookie-minus":"material/cookie-minus.svg","material-cookie-off-outline":"material/cookie-off-outline.svg","material-cookie-off":"material/cookie-off.svg","material-cookie-outline":"material/cookie-outline.svg","material-cookie-plus-outline":"material/cookie-plus-outline.svg","material-cookie-plus":"material/cookie-plus.svg","material-cookie-refresh-outline":"material/cookie-refresh-outline.svg","material-cookie-refresh":"material/cookie-refresh.svg","material-cookie-remove-outline":"material/cookie-remove-outline.svg","material-cookie-remove":"material/cookie-remove.svg","material-cookie-settings-outline":"material/cookie-settings-outline.svg","material-cookie-settings":"material/cookie-settings.svg","material-cookie":"material/cookie.svg","material-coolant-temperature":"material/coolant-temperature.svg","material-copyleft":"material/copyleft.svg","material-copyright":"material/copyright.svg","material-cordova":"material/cordova.svg","material-corn-off":"material/corn-off.svg","material-corn":"material/corn.svg","material-cosine-wave":"material/cosine-wave.svg","material-counter":"material/counter.svg","material-countertop-outline":"material/countertop-outline.svg","material-countertop":"material/countertop.svg","material-cow-off":"material/cow-off.svg","material-cow":"material/cow.svg","material-cpu-32-bit":"material/cpu-32-bit.svg","material-cpu-64-bit":"material/cpu-64-bit.svg","material-cradle-outline":"material/cradle-outline.svg","material-cradle":"material/cradle.svg","material-crane":"material/crane.svg","material-creation-outline":"material/creation-outline.svg","material-creation":"material/creation.svg","material-creative-commons":"material/creative-commons.svg","material-credit-card-check-outline":"material/credit-card-check-outline.svg","material-credit-card-check":"material/credit-card-check.svg","material-credit-card-chip-outline":"material/credit-card-chip-outline.svg","material-credit-card-chip":"material/credit-card-chip.svg","material-credit-card-clock-outline":"material/credit-card-clock-outline.svg","material-credit-card-clock":"material/credit-card-clock.svg","material-credit-card-edit-outline":"material/credit-card-edit-outline.svg","material-credit-card-edit":"material/credit-card-edit.svg","material-credit-card-fast-outline":"material/credit-card-fast-outline.svg","material-credit-card-fast":"material/credit-card-fast.svg","material-credit-card-lock-outline":"material/credit-card-lock-outline.svg","material-credit-card-lock":"material/credit-card-lock.svg","material-credit-card-marker-outline":"material/credit-card-marker-outline.svg","material-credit-card-marker":"material/credit-card-marker.svg","material-credit-card-minus-outline":"material/credit-card-minus-outline.svg","material-credit-card-minus":"material/credit-card-minus.svg","material-credit-card-multiple-outline":"material/credit-card-multiple-outline.svg","material-credit-card-multiple":"material/credit-card-multiple.svg","material-credit-card-off-outline":"material/credit-card-off-outline.svg","material-credit-card-off":"material/credit-card-off.svg","material-credit-card-outline":"material/credit-card-outline.svg","material-credit-card-plus-outline":"material/credit-card-plus-outline.svg","material-credit-card-plus":"material/credit-card-plus.svg","material-credit-card-refresh-outline":"material/credit-card-refresh-outline.svg","material-credit-card-refresh":"material/credit-card-refresh.svg","material-credit-card-refund-outline":"material/credit-card-refund-outline.svg","material-credit-card-refund":"material/credit-card-refund.svg","material-credit-card-remove-outline":"material/credit-card-remove-outline.svg","material-credit-card-remove":"material/credit-card-remove.svg","material-credit-card-scan-outline":"material/credit-card-scan-outline.svg","material-credit-card-scan":"material/credit-card-scan.svg","material-credit-card-search-outline":"material/credit-card-search-outline.svg","material-credit-card-search":"material/credit-card-search.svg","material-credit-card-settings-outline":"material/credit-card-settings-outline.svg","material-credit-card-settings":"material/credit-card-settings.svg","material-credit-card-sync-outline":"material/credit-card-sync-outline.svg","material-credit-card-sync":"material/credit-card-sync.svg","material-credit-card-wireless-off-outline":"material/credit-card-wireless-off-outline.svg","material-credit-card-wireless-off":"material/credit-card-wireless-off.svg","material-credit-card-wireless-outline":"material/credit-card-wireless-outline.svg","material-credit-card-wireless":"material/credit-card-wireless.svg","material-credit-card":"material/credit-card.svg","material-cricket":"material/cricket.svg","material-crop-free":"material/crop-free.svg","material-crop-landscape":"material/crop-landscape.svg","material-crop-portrait":"material/crop-portrait.svg","material-crop-rotate":"material/crop-rotate.svg","material-crop-square":"material/crop-square.svg","material-crop":"material/crop.svg","material-cross-bolnisi":"material/cross-bolnisi.svg","material-cross-celtic":"material/cross-celtic.svg","material-cross-outline":"material/cross-outline.svg","material-cross":"material/cross.svg","material-crosshairs-gps":"material/crosshairs-gps.svg","material-crosshairs-off":"material/crosshairs-off.svg","material-crosshairs-question":"material/crosshairs-question.svg","material-crosshairs":"material/crosshairs.svg","material-crowd":"material/crowd.svg","material-crown-circle-outline":"material/crown-circle-outline.svg","material-crown-circle":"material/crown-circle.svg","material-crown-outline":"material/crown-outline.svg","material-crown":"material/crown.svg","material-cryengine":"material/cryengine.svg","material-crystal-ball":"material/crystal-ball.svg","material-cube-off-outline":"material/cube-off-outline.svg","material-cube-off":"material/cube-off.svg","material-cube-outline":"material/cube-outline.svg","material-cube-scan":"material/cube-scan.svg","material-cube-send":"material/cube-send.svg","material-cube-unfolded":"material/cube-unfolded.svg","material-cube":"material/cube.svg","material-cup-off-outline":"material/cup-off-outline.svg","material-cup-off":"material/cup-off.svg","material-cup-outline":"material/cup-outline.svg","material-cup-water":"material/cup-water.svg","material-cup":"material/cup.svg","material-cupboard-outline":"material/cupboard-outline.svg","material-cupboard":"material/cupboard.svg","material-cupcake":"material/cupcake.svg","material-curling":"material/curling.svg","material-currency-bdt":"material/currency-bdt.svg","material-currency-brl":"material/currency-brl.svg","material-currency-btc":"material/currency-btc.svg","material-currency-cny":"material/currency-cny.svg","material-currency-eth":"material/currency-eth.svg","material-currency-eur-off":"material/currency-eur-off.svg","material-currency-eur":"material/currency-eur.svg","material-currency-fra":"material/currency-fra.svg","material-currency-gbp":"material/currency-gbp.svg","material-currency-ils":"material/currency-ils.svg","material-currency-inr":"material/currency-inr.svg","material-currency-jpy":"material/currency-jpy.svg","material-currency-krw":"material/currency-krw.svg","material-currency-kzt":"material/currency-kzt.svg","material-currency-mnt":"material/currency-mnt.svg","material-currency-ngn":"material/currency-ngn.svg","material-currency-php":"material/currency-php.svg","material-currency-rial":"material/currency-rial.svg","material-currency-rub":"material/currency-rub.svg","material-currency-rupee":"material/currency-rupee.svg","material-currency-sign":"material/currency-sign.svg","material-currency-thb":"material/currency-thb.svg","material-currency-try":"material/currency-try.svg","material-currency-twd":"material/currency-twd.svg","material-currency-uah":"material/currency-uah.svg","material-currency-usd-off":"material/currency-usd-off.svg","material-currency-usd":"material/currency-usd.svg","material-current-ac":"material/current-ac.svg","material-current-dc":"material/current-dc.svg","material-cursor-default-click-outline":"material/cursor-default-click-outline.svg","material-cursor-default-click":"material/cursor-default-click.svg","material-cursor-default-gesture-outline":"material/cursor-default-gesture-outline.svg","material-cursor-default-gesture":"material/cursor-default-gesture.svg","material-cursor-default-outline":"material/cursor-default-outline.svg","material-cursor-default":"material/cursor-default.svg","material-cursor-move":"material/cursor-move.svg","material-cursor-pointer":"material/cursor-pointer.svg","material-cursor-text":"material/cursor-text.svg","material-curtains-closed":"material/curtains-closed.svg","material-curtains":"material/curtains.svg","material-cylinder-off":"material/cylinder-off.svg","material-cylinder":"material/cylinder.svg","material-dance-ballroom":"material/dance-ballroom.svg","material-dance-pole":"material/dance-pole.svg","material-data-matrix-edit":"material/data-matrix-edit.svg","material-data-matrix-minus":"material/data-matrix-minus.svg","material-data-matrix-plus":"material/data-matrix-plus.svg","material-data-matrix-remove":"material/data-matrix-remove.svg","material-data-matrix-scan":"material/data-matrix-scan.svg","material-data-matrix":"material/data-matrix.svg","material-database-alert-outline":"material/database-alert-outline.svg","material-database-alert":"material/database-alert.svg","material-database-arrow-down-outline":"material/database-arrow-down-outline.svg","material-database-arrow-down":"material/database-arrow-down.svg","material-database-arrow-left-outline":"material/database-arrow-left-outline.svg","material-database-arrow-left":"material/database-arrow-left.svg","material-database-arrow-right-outline":"material/database-arrow-right-outline.svg","material-database-arrow-right":"material/database-arrow-right.svg","material-database-arrow-up-outline":"material/database-arrow-up-outline.svg","material-database-arrow-up":"material/database-arrow-up.svg","material-database-check-outline":"material/database-check-outline.svg","material-database-check":"material/database-check.svg","material-database-clock-outline":"material/database-clock-outline.svg","material-database-clock":"material/database-clock.svg","material-database-cog-outline":"material/database-cog-outline.svg","material-database-cog":"material/database-cog.svg","material-database-edit-outline":"material/database-edit-outline.svg","material-database-edit":"material/database-edit.svg","material-database-export-outline":"material/database-export-outline.svg","material-database-export":"material/database-export.svg","material-database-eye-off-outline":"material/database-eye-off-outline.svg","material-database-eye-off":"material/database-eye-off.svg","material-database-eye-outline":"material/database-eye-outline.svg","material-database-eye":"material/database-eye.svg","material-database-import-outline":"material/database-import-outline.svg","material-database-import":"material/database-import.svg","material-database-lock-outline":"material/database-lock-outline.svg","material-database-lock":"material/database-lock.svg","material-database-marker-outline":"material/database-marker-outline.svg","material-database-marker":"material/database-marker.svg","material-database-minus-outline":"material/database-minus-outline.svg","material-database-minus":"material/database-minus.svg","material-database-off-outline":"material/database-off-outline.svg","material-database-off":"material/database-off.svg","material-database-outline":"material/database-outline.svg","material-database-plus-outline":"material/database-plus-outline.svg","material-database-plus":"material/database-plus.svg","material-database-refresh-outline":"material/database-refresh-outline.svg","material-database-refresh":"material/database-refresh.svg","material-database-remove-outline":"material/database-remove-outline.svg","material-database-remove":"material/database-remove.svg","material-database-search-outline":"material/database-search-outline.svg","material-database-search":"material/database-search.svg","material-database-settings-outline":"material/database-settings-outline.svg","material-database-settings":"material/database-settings.svg","material-database-sync-outline":"material/database-sync-outline.svg","material-database-sync":"material/database-sync.svg","material-database":"material/database.svg","material-death-star-variant":"material/death-star-variant.svg","material-death-star":"material/death-star.svg","material-deathly-hallows":"material/deathly-hallows.svg","material-debian":"material/debian.svg","material-debug-step-into":"material/debug-step-into.svg","material-debug-step-out":"material/debug-step-out.svg","material-debug-step-over":"material/debug-step-over.svg","material-decagram-outline":"material/decagram-outline.svg","material-decagram":"material/decagram.svg","material-decimal-comma-decrease":"material/decimal-comma-decrease.svg","material-decimal-comma-increase":"material/decimal-comma-increase.svg","material-decimal-comma":"material/decimal-comma.svg","material-decimal-decrease":"material/decimal-decrease.svg","material-decimal-increase":"material/decimal-increase.svg","material-decimal":"material/decimal.svg","material-delete-alert-outline":"material/delete-alert-outline.svg","material-delete-alert":"material/delete-alert.svg","material-delete-circle-outline":"material/delete-circle-outline.svg","material-delete-circle":"material/delete-circle.svg","material-delete-clock-outline":"material/delete-clock-outline.svg","material-delete-clock":"material/delete-clock.svg","material-delete-empty-outline":"material/delete-empty-outline.svg","material-delete-empty":"material/delete-empty.svg","material-delete-forever-outline":"material/delete-forever-outline.svg","material-delete-forever":"material/delete-forever.svg","material-delete-off-outline":"material/delete-off-outline.svg","material-delete-off":"material/delete-off.svg","material-delete-outline":"material/delete-outline.svg","material-delete-restore":"material/delete-restore.svg","material-delete-sweep-outline":"material/delete-sweep-outline.svg","material-delete-sweep":"material/delete-sweep.svg","material-delete-variant":"material/delete-variant.svg","material-delete":"material/delete.svg","material-delta":"material/delta.svg","material-desk-lamp-off":"material/desk-lamp-off.svg","material-desk-lamp-on":"material/desk-lamp-on.svg","material-desk-lamp":"material/desk-lamp.svg","material-desk":"material/desk.svg","material-deskphone":"material/deskphone.svg","material-desktop-classic":"material/desktop-classic.svg","material-desktop-tower-monitor":"material/desktop-tower-monitor.svg","material-desktop-tower":"material/desktop-tower.svg","material-details":"material/details.svg","material-dev-to":"material/dev-to.svg","material-developer-board":"material/developer-board.svg","material-deviantart":"material/deviantart.svg","material-devices":"material/devices.svg","material-dharmachakra":"material/dharmachakra.svg","material-diabetes":"material/diabetes.svg","material-dialpad":"material/dialpad.svg","material-diameter-outline":"material/diameter-outline.svg","material-diameter-variant":"material/diameter-variant.svg","material-diameter":"material/diameter.svg","material-diamond-outline":"material/diamond-outline.svg","material-diamond-stone":"material/diamond-stone.svg","material-diamond":"material/diamond.svg","material-diaper-outline":"material/diaper-outline.svg","material-dice-1-outline":"material/dice-1-outline.svg","material-dice-1":"material/dice-1.svg","material-dice-2-outline":"material/dice-2-outline.svg","material-dice-2":"material/dice-2.svg","material-dice-3-outline":"material/dice-3-outline.svg","material-dice-3":"material/dice-3.svg","material-dice-4-outline":"material/dice-4-outline.svg","material-dice-4":"material/dice-4.svg","material-dice-5-outline":"material/dice-5-outline.svg","material-dice-5":"material/dice-5.svg","material-dice-6-outline":"material/dice-6-outline.svg","material-dice-6":"material/dice-6.svg","material-dice-d10-outline":"material/dice-d10-outline.svg","material-dice-d10":"material/dice-d10.svg","material-dice-d12-outline":"material/dice-d12-outline.svg","material-dice-d12":"material/dice-d12.svg","material-dice-d20-outline":"material/dice-d20-outline.svg","material-dice-d20":"material/dice-d20.svg","material-dice-d4-outline":"material/dice-d4-outline.svg","material-dice-d4":"material/dice-d4.svg","material-dice-d6-outline":"material/dice-d6-outline.svg","material-dice-d6":"material/dice-d6.svg","material-dice-d8-outline":"material/dice-d8-outline.svg","material-dice-d8":"material/dice-d8.svg","material-dice-multiple-outline":"material/dice-multiple-outline.svg","material-dice-multiple":"material/dice-multiple.svg","material-digital-ocean":"material/digital-ocean.svg","material-dip-switch":"material/dip-switch.svg","material-directions-fork":"material/directions-fork.svg","material-directions":"material/directions.svg","material-disc-alert":"material/disc-alert.svg","material-disc-player":"material/disc-player.svg","material-disc":"material/disc.svg","material-dishwasher-alert":"material/dishwasher-alert.svg","material-dishwasher-off":"material/dishwasher-off.svg","material-dishwasher":"material/dishwasher.svg","material-disqus":"material/disqus.svg","material-distribute-horizontal-center":"material/distribute-horizontal-center.svg","material-distribute-horizontal-left":"material/distribute-horizontal-left.svg","material-distribute-horizontal-right":"material/distribute-horizontal-right.svg","material-distribute-vertical-bottom":"material/distribute-vertical-bottom.svg","material-distribute-vertical-center":"material/distribute-vertical-center.svg","material-distribute-vertical-top":"material/distribute-vertical-top.svg","material-diversify":"material/diversify.svg","material-diving-flippers":"material/diving-flippers.svg","material-diving-helmet":"material/diving-helmet.svg","material-diving-scuba-flag":"material/diving-scuba-flag.svg","material-diving-scuba-mask":"material/diving-scuba-mask.svg","material-diving-scuba-tank-multiple":"material/diving-scuba-tank-multiple.svg","material-diving-scuba-tank":"material/diving-scuba-tank.svg","material-diving-scuba":"material/diving-scuba.svg","material-diving-snorkel":"material/diving-snorkel.svg","material-diving":"material/diving.svg","material-division-box":"material/division-box.svg","material-division":"material/division.svg","material-dlna":"material/dlna.svg","material-dna":"material/dna.svg","material-dns-outline":"material/dns-outline.svg","material-dns":"material/dns.svg","material-dock-bottom":"material/dock-bottom.svg","material-dock-left":"material/dock-left.svg","material-dock-right":"material/dock-right.svg","material-dock-top":"material/dock-top.svg","material-dock-window":"material/dock-window.svg","material-docker":"material/docker.svg","material-doctor":"material/doctor.svg","material-dog-service":"material/dog-service.svg","material-dog-side-off":"material/dog-side-off.svg","material-dog-side":"material/dog-side.svg","material-dog":"material/dog.svg","material-dolby":"material/dolby.svg","material-dolly":"material/dolly.svg","material-dolphin":"material/dolphin.svg","material-domain-off":"material/domain-off.svg","material-domain-plus":"material/domain-plus.svg","material-domain-remove":"material/domain-remove.svg","material-domain-switch":"material/domain-switch.svg","material-domain":"material/domain.svg","material-dome-light":"material/dome-light.svg","material-domino-mask":"material/domino-mask.svg","material-donkey":"material/donkey.svg","material-door-closed-cancel":"material/door-closed-cancel.svg","material-door-closed-lock":"material/door-closed-lock.svg","material-door-closed":"material/door-closed.svg","material-door-open":"material/door-open.svg","material-door-sliding-lock":"material/door-sliding-lock.svg","material-door-sliding-open":"material/door-sliding-open.svg","material-door-sliding":"material/door-sliding.svg","material-door":"material/door.svg","material-doorbell-video":"material/doorbell-video.svg","material-doorbell":"material/doorbell.svg","material-dot-net":"material/dot-net.svg","material-dots-circle":"material/dots-circle.svg","material-dots-grid":"material/dots-grid.svg","material-dots-hexagon":"material/dots-hexagon.svg","material-dots-horizontal-circle-outline":"material/dots-horizontal-circle-outline.svg","material-dots-horizontal-circle":"material/dots-horizontal-circle.svg","material-dots-horizontal":"material/dots-horizontal.svg","material-dots-square":"material/dots-square.svg","material-dots-triangle":"material/dots-triangle.svg","material-dots-vertical-circle-outline":"material/dots-vertical-circle-outline.svg","material-dots-vertical-circle":"material/dots-vertical-circle.svg","material-dots-vertical":"material/dots-vertical.svg","material-download-box-outline":"material/download-box-outline.svg","material-download-box":"material/download-box.svg","material-download-circle-outline":"material/download-circle-outline.svg","material-download-circle":"material/download-circle.svg","material-download-lock-outline":"material/download-lock-outline.svg","material-download-lock":"material/download-lock.svg","material-download-multiple-outline":"material/download-multiple-outline.svg","material-download-multiple":"material/download-multiple.svg","material-download-network-outline":"material/download-network-outline.svg","material-download-network":"material/download-network.svg","material-download-off-outline":"material/download-off-outline.svg","material-download-off":"material/download-off.svg","material-download-outline":"material/download-outline.svg","material-download":"material/download.svg","material-drag-horizontal-variant":"material/drag-horizontal-variant.svg","material-drag-horizontal":"material/drag-horizontal.svg","material-drag-variant":"material/drag-variant.svg","material-drag-vertical-variant":"material/drag-vertical-variant.svg","material-drag-vertical":"material/drag-vertical.svg","material-drag":"material/drag.svg","material-drama-masks":"material/drama-masks.svg","material-draw-pen":"material/draw-pen.svg","material-draw":"material/draw.svg","material-drawing-box":"material/drawing-box.svg","material-drawing":"material/drawing.svg","material-dresser-outline":"material/dresser-outline.svg","material-dresser":"material/dresser.svg","material-drone":"material/drone.svg","material-dropbox":"material/dropbox.svg","material-drupal":"material/drupal.svg","material-duck":"material/duck.svg","material-dumbbell":"material/dumbbell.svg","material-dump-truck":"material/dump-truck.svg","material-ear-hearing-loop":"material/ear-hearing-loop.svg","material-ear-hearing-off":"material/ear-hearing-off.svg","material-ear-hearing":"material/ear-hearing.svg","material-earbuds-off-outline":"material/earbuds-off-outline.svg","material-earbuds-off":"material/earbuds-off.svg","material-earbuds-outline":"material/earbuds-outline.svg","material-earbuds":"material/earbuds.svg","material-earth-arrow-down":"material/earth-arrow-down.svg","material-earth-arrow-left":"material/earth-arrow-left.svg","material-earth-arrow-right":"material/earth-arrow-right.svg","material-earth-arrow-up":"material/earth-arrow-up.svg","material-earth-box-minus":"material/earth-box-minus.svg","material-earth-box-off":"material/earth-box-off.svg","material-earth-box-plus":"material/earth-box-plus.svg","material-earth-box-remove":"material/earth-box-remove.svg","material-earth-box":"material/earth-box.svg","material-earth-minus":"material/earth-minus.svg","material-earth-off":"material/earth-off.svg","material-earth-plus":"material/earth-plus.svg","material-earth-remove":"material/earth-remove.svg","material-earth":"material/earth.svg","material-egg-easter":"material/egg-easter.svg","material-egg-fried":"material/egg-fried.svg","material-egg-off-outline":"material/egg-off-outline.svg","material-egg-off":"material/egg-off.svg","material-egg-outline":"material/egg-outline.svg","material-egg":"material/egg.svg","material-eiffel-tower":"material/eiffel-tower.svg","material-eight-track":"material/eight-track.svg","material-eject-circle-outline":"material/eject-circle-outline.svg","material-eject-circle":"material/eject-circle.svg","material-eject-outline":"material/eject-outline.svg","material-eject":"material/eject.svg","material-electric-switch-closed":"material/electric-switch-closed.svg","material-electric-switch":"material/electric-switch.svg","material-electron-framework":"material/electron-framework.svg","material-elephant":"material/elephant.svg","material-elevation-decline":"material/elevation-decline.svg","material-elevation-rise":"material/elevation-rise.svg","material-elevator-down":"material/elevator-down.svg","material-elevator-passenger-off-outline":"material/elevator-passenger-off-outline.svg","material-elevator-passenger-off":"material/elevator-passenger-off.svg","material-elevator-passenger-outline":"material/elevator-passenger-outline.svg","material-elevator-passenger":"material/elevator-passenger.svg","material-elevator-up":"material/elevator-up.svg","material-elevator":"material/elevator.svg","material-ellipse-outline":"material/ellipse-outline.svg","material-ellipse":"material/ellipse.svg","material-email-alert-outline":"material/email-alert-outline.svg","material-email-alert":"material/email-alert.svg","material-email-arrow-left-outline":"material/email-arrow-left-outline.svg","material-email-arrow-left":"material/email-arrow-left.svg","material-email-arrow-right-outline":"material/email-arrow-right-outline.svg","material-email-arrow-right":"material/email-arrow-right.svg","material-email-box":"material/email-box.svg","material-email-check-outline":"material/email-check-outline.svg","material-email-check":"material/email-check.svg","material-email-edit-outline":"material/email-edit-outline.svg","material-email-edit":"material/email-edit.svg","material-email-fast-outline":"material/email-fast-outline.svg","material-email-fast":"material/email-fast.svg","material-email-heart-outline":"material/email-heart-outline.svg","material-email-lock-outline":"material/email-lock-outline.svg","material-email-lock":"material/email-lock.svg","material-email-mark-as-unread":"material/email-mark-as-unread.svg","material-email-minus-outline":"material/email-minus-outline.svg","material-email-minus":"material/email-minus.svg","material-email-multiple-outline":"material/email-multiple-outline.svg","material-email-multiple":"material/email-multiple.svg","material-email-newsletter":"material/email-newsletter.svg","material-email-off-outline":"material/email-off-outline.svg","material-email-off":"material/email-off.svg","material-email-open-heart-outline":"material/email-open-heart-outline.svg","material-email-open-multiple-outline":"material/email-open-multiple-outline.svg","material-email-open-multiple":"material/email-open-multiple.svg","material-email-open-outline":"material/email-open-outline.svg","material-email-open":"material/email-open.svg","material-email-outline":"material/email-outline.svg","material-email-plus-outline":"material/email-plus-outline.svg","material-email-plus":"material/email-plus.svg","material-email-remove-outline":"material/email-remove-outline.svg","material-email-remove":"material/email-remove.svg","material-email-seal-outline":"material/email-seal-outline.svg","material-email-seal":"material/email-seal.svg","material-email-search-outline":"material/email-search-outline.svg","material-email-search":"material/email-search.svg","material-email-sync-outline":"material/email-sync-outline.svg","material-email-sync":"material/email-sync.svg","material-email-variant":"material/email-variant.svg","material-email":"material/email.svg","material-ember":"material/ember.svg","material-emby":"material/emby.svg","material-emoticon-angry-outline":"material/emoticon-angry-outline.svg","material-emoticon-angry":"material/emoticon-angry.svg","material-emoticon-confused-outline":"material/emoticon-confused-outline.svg","material-emoticon-confused":"material/emoticon-confused.svg","material-emoticon-cool-outline":"material/emoticon-cool-outline.svg","material-emoticon-cool":"material/emoticon-cool.svg","material-emoticon-cry-outline":"material/emoticon-cry-outline.svg","material-emoticon-cry":"material/emoticon-cry.svg","material-emoticon-dead-outline":"material/emoticon-dead-outline.svg","material-emoticon-dead":"material/emoticon-dead.svg","material-emoticon-devil-outline":"material/emoticon-devil-outline.svg","material-emoticon-devil":"material/emoticon-devil.svg","material-emoticon-excited-outline":"material/emoticon-excited-outline.svg","material-emoticon-excited":"material/emoticon-excited.svg","material-emoticon-frown-outline":"material/emoticon-frown-outline.svg","material-emoticon-frown":"material/emoticon-frown.svg","material-emoticon-happy-outline":"material/emoticon-happy-outline.svg","material-emoticon-happy":"material/emoticon-happy.svg","material-emoticon-kiss-outline":"material/emoticon-kiss-outline.svg","material-emoticon-kiss":"material/emoticon-kiss.svg","material-emoticon-lol-outline":"material/emoticon-lol-outline.svg","material-emoticon-lol":"material/emoticon-lol.svg","material-emoticon-minus-outline":"material/emoticon-minus-outline.svg","material-emoticon-minus":"material/emoticon-minus.svg","material-emoticon-neutral-outline":"material/emoticon-neutral-outline.svg","material-emoticon-neutral":"material/emoticon-neutral.svg","material-emoticon-outline":"material/emoticon-outline.svg","material-emoticon-plus-outline":"material/emoticon-plus-outline.svg","material-emoticon-plus":"material/emoticon-plus.svg","material-emoticon-poop-outline":"material/emoticon-poop-outline.svg","material-emoticon-poop":"material/emoticon-poop.svg","material-emoticon-remove-outline":"material/emoticon-remove-outline.svg","material-emoticon-remove":"material/emoticon-remove.svg","material-emoticon-sad-outline":"material/emoticon-sad-outline.svg","material-emoticon-sad":"material/emoticon-sad.svg","material-emoticon-sick-outline":"material/emoticon-sick-outline.svg","material-emoticon-sick":"material/emoticon-sick.svg","material-emoticon-tongue-outline":"material/emoticon-tongue-outline.svg","material-emoticon-tongue":"material/emoticon-tongue.svg","material-emoticon-wink-outline":"material/emoticon-wink-outline.svg","material-emoticon-wink":"material/emoticon-wink.svg","material-emoticon":"material/emoticon.svg","material-engine-off-outline":"material/engine-off-outline.svg","material-engine-off":"material/engine-off.svg","material-engine-outline":"material/engine-outline.svg","material-engine":"material/engine.svg","material-epsilon":"material/epsilon.svg","material-equal-box":"material/equal-box.svg","material-equal":"material/equal.svg","material-equalizer-outline":"material/equalizer-outline.svg","material-equalizer":"material/equalizer.svg","material-eraser-variant":"material/eraser-variant.svg","material-eraser":"material/eraser.svg","material-escalator-box":"material/escalator-box.svg","material-escalator-down":"material/escalator-down.svg","material-escalator-up":"material/escalator-up.svg","material-escalator":"material/escalator.svg","material-eslint":"material/eslint.svg","material-et":"material/et.svg","material-ethereum":"material/ethereum.svg","material-ethernet-cable-off":"material/ethernet-cable-off.svg","material-ethernet-cable":"material/ethernet-cable.svg","material-ethernet-off":"material/ethernet-off.svg","material-ethernet":"material/ethernet.svg","material-ev-plug-ccs1":"material/ev-plug-ccs1.svg","material-ev-plug-ccs2":"material/ev-plug-ccs2.svg","material-ev-plug-chademo":"material/ev-plug-chademo.svg","material-ev-plug-tesla":"material/ev-plug-tesla.svg","material-ev-plug-type1":"material/ev-plug-type1.svg","material-ev-plug-type2":"material/ev-plug-type2.svg","material-ev-station":"material/ev-station.svg","material-evernote":"material/evernote.svg","material-excavator":"material/excavator.svg","material-exclamation-thick":"material/exclamation-thick.svg","material-exclamation":"material/exclamation.svg","material-exit-run":"material/exit-run.svg","material-exit-to-app":"material/exit-to-app.svg","material-expand-all-outline":"material/expand-all-outline.svg","material-expand-all":"material/expand-all.svg","material-expansion-card-variant":"material/expansion-card-variant.svg","material-expansion-card":"material/expansion-card.svg","material-exponent-box":"material/exponent-box.svg","material-exponent":"material/exponent.svg","material-export-variant":"material/export-variant.svg","material-export":"material/export.svg","material-eye-arrow-left-outline":"material/eye-arrow-left-outline.svg","material-eye-arrow-left":"material/eye-arrow-left.svg","material-eye-arrow-right-outline":"material/eye-arrow-right-outline.svg","material-eye-arrow-right":"material/eye-arrow-right.svg","material-eye-check-outline":"material/eye-check-outline.svg","material-eye-check":"material/eye-check.svg","material-eye-circle-outline":"material/eye-circle-outline.svg","material-eye-circle":"material/eye-circle.svg","material-eye-closed":"material/eye-closed.svg","material-eye-lock-open-outline":"material/eye-lock-open-outline.svg","material-eye-lock-open":"material/eye-lock-open.svg","material-eye-lock-outline":"material/eye-lock-outline.svg","material-eye-lock":"material/eye-lock.svg","material-eye-minus-outline":"material/eye-minus-outline.svg","material-eye-minus":"material/eye-minus.svg","material-eye-off-outline":"material/eye-off-outline.svg","material-eye-off":"material/eye-off.svg","material-eye-outline":"material/eye-outline.svg","material-eye-plus-outline":"material/eye-plus-outline.svg","material-eye-plus":"material/eye-plus.svg","material-eye-refresh-outline":"material/eye-refresh-outline.svg","material-eye-refresh":"material/eye-refresh.svg","material-eye-remove-outline":"material/eye-remove-outline.svg","material-eye-remove":"material/eye-remove.svg","material-eye-settings-outline":"material/eye-settings-outline.svg","material-eye-settings":"material/eye-settings.svg","material-eye":"material/eye.svg","material-eyedropper-minus":"material/eyedropper-minus.svg","material-eyedropper-off":"material/eyedropper-off.svg","material-eyedropper-plus":"material/eyedropper-plus.svg","material-eyedropper-remove":"material/eyedropper-remove.svg","material-eyedropper-variant":"material/eyedropper-variant.svg","material-eyedropper":"material/eyedropper.svg","material-face-agent":"material/face-agent.svg","material-face-man-outline":"material/face-man-outline.svg","material-face-man-profile":"material/face-man-profile.svg","material-face-man-shimmer-outline":"material/face-man-shimmer-outline.svg","material-face-man-shimmer":"material/face-man-shimmer.svg","material-face-man":"material/face-man.svg","material-face-mask-outline":"material/face-mask-outline.svg","material-face-mask":"material/face-mask.svg","material-face-recognition":"material/face-recognition.svg","material-face-woman-outline":"material/face-woman-outline.svg","material-face-woman-profile":"material/face-woman-profile.svg","material-face-woman-shimmer-outline":"material/face-woman-shimmer-outline.svg","material-face-woman-shimmer":"material/face-woman-shimmer.svg","material-face-woman":"material/face-woman.svg","material-facebook-gaming":"material/facebook-gaming.svg","material-facebook-messenger":"material/facebook-messenger.svg","material-facebook-workplace":"material/facebook-workplace.svg","material-facebook":"material/facebook.svg","material-factory":"material/factory.svg","material-family-tree":"material/family-tree.svg","material-fan-alert":"material/fan-alert.svg","material-fan-auto":"material/fan-auto.svg","material-fan-chevron-down":"material/fan-chevron-down.svg","material-fan-chevron-up":"material/fan-chevron-up.svg","material-fan-clock":"material/fan-clock.svg","material-fan-minus":"material/fan-minus.svg","material-fan-off":"material/fan-off.svg","material-fan-plus":"material/fan-plus.svg","material-fan-remove":"material/fan-remove.svg","material-fan-speed-1":"material/fan-speed-1.svg","material-fan-speed-2":"material/fan-speed-2.svg","material-fan-speed-3":"material/fan-speed-3.svg","material-fan":"material/fan.svg","material-fast-forward-10":"material/fast-forward-10.svg","material-fast-forward-15":"material/fast-forward-15.svg","material-fast-forward-30":"material/fast-forward-30.svg","material-fast-forward-45":"material/fast-forward-45.svg","material-fast-forward-5":"material/fast-forward-5.svg","material-fast-forward-60":"material/fast-forward-60.svg","material-fast-forward-outline":"material/fast-forward-outline.svg","material-fast-forward":"material/fast-forward.svg","material-faucet-variant":"material/faucet-variant.svg","material-faucet":"material/faucet.svg","material-fax":"material/fax.svg","material-feather":"material/feather.svg","material-feature-search-outline":"material/feature-search-outline.svg","material-feature-search":"material/feature-search.svg","material-fedora":"material/fedora.svg","material-fence-electric":"material/fence-electric.svg","material-fence":"material/fence.svg","material-fencing":"material/fencing.svg","material-ferris-wheel":"material/ferris-wheel.svg","material-ferry":"material/ferry.svg","material-file-account-outline":"material/file-account-outline.svg","material-file-account":"material/file-account.svg","material-file-alert-outline":"material/file-alert-outline.svg","material-file-alert":"material/file-alert.svg","material-file-arrow-left-right-outline":"material/file-arrow-left-right-outline.svg","material-file-arrow-left-right":"material/file-arrow-left-right.svg","material-file-arrow-up-down-outline":"material/file-arrow-up-down-outline.svg","material-file-arrow-up-down":"material/file-arrow-up-down.svg","material-file-cabinet":"material/file-cabinet.svg","material-file-cad-box":"material/file-cad-box.svg","material-file-cad":"material/file-cad.svg","material-file-cancel-outline":"material/file-cancel-outline.svg","material-file-cancel":"material/file-cancel.svg","material-file-certificate-outline":"material/file-certificate-outline.svg","material-file-certificate":"material/file-certificate.svg","material-file-chart-check-outline":"material/file-chart-check-outline.svg","material-file-chart-check":"material/file-chart-check.svg","material-file-chart-outline":"material/file-chart-outline.svg","material-file-chart":"material/file-chart.svg","material-file-check-outline":"material/file-check-outline.svg","material-file-check":"material/file-check.svg","material-file-clock-outline":"material/file-clock-outline.svg","material-file-clock":"material/file-clock.svg","material-file-cloud-outline":"material/file-cloud-outline.svg","material-file-cloud":"material/file-cloud.svg","material-file-code-outline":"material/file-code-outline.svg","material-file-code":"material/file-code.svg","material-file-cog-outline":"material/file-cog-outline.svg","material-file-cog":"material/file-cog.svg","material-file-compare":"material/file-compare.svg","material-file-delimited-outline":"material/file-delimited-outline.svg","material-file-delimited":"material/file-delimited.svg","material-file-document-alert-outline":"material/file-document-alert-outline.svg","material-file-document-alert":"material/file-document-alert.svg","material-file-document-arrow-right-outline":"material/file-document-arrow-right-outline.svg","material-file-document-arrow-right":"material/file-document-arrow-right.svg","material-file-document-check-outline":"material/file-document-check-outline.svg","material-file-document-check":"material/file-document-check.svg","material-file-document-edit-outline":"material/file-document-edit-outline.svg","material-file-document-edit":"material/file-document-edit.svg","material-file-document-minus-outline":"material/file-document-minus-outline.svg","material-file-document-minus":"material/file-document-minus.svg","material-file-document-multiple-outline":"material/file-document-multiple-outline.svg","material-file-document-multiple":"material/file-document-multiple.svg","material-file-document-outline":"material/file-document-outline.svg","material-file-document-plus-outline":"material/file-document-plus-outline.svg","material-file-document-plus":"material/file-document-plus.svg","material-file-document-refresh-outline":"material/file-document-refresh-outline.svg","material-file-document-refresh":"material/file-document-refresh.svg","material-file-document-remove-outline":"material/file-document-remove-outline.svg","material-file-document-remove":"material/file-document-remove.svg","material-file-document":"material/file-document.svg","material-file-download-outline":"material/file-download-outline.svg","material-file-download":"material/file-download.svg","material-file-edit-outline":"material/file-edit-outline.svg","material-file-edit":"material/file-edit.svg","material-file-excel-box-outline":"material/file-excel-box-outline.svg","material-file-excel-box":"material/file-excel-box.svg","material-file-excel-outline":"material/file-excel-outline.svg","material-file-excel":"material/file-excel.svg","material-file-export-outline":"material/file-export-outline.svg","material-file-export":"material/file-export.svg","material-file-eye-outline":"material/file-eye-outline.svg","material-file-eye":"material/file-eye.svg","material-file-find-outline":"material/file-find-outline.svg","material-file-find":"material/file-find.svg","material-file-gif-box":"material/file-gif-box.svg","material-file-hidden":"material/file-hidden.svg","material-file-image-marker-outline":"material/file-image-marker-outline.svg","material-file-image-marker":"material/file-image-marker.svg","material-file-image-minus-outline":"material/file-image-minus-outline.svg","material-file-image-minus":"material/file-image-minus.svg","material-file-image-outline":"material/file-image-outline.svg","material-file-image-plus-outline":"material/file-image-plus-outline.svg","material-file-image-plus":"material/file-image-plus.svg","material-file-image-remove-outline":"material/file-image-remove-outline.svg","material-file-image-remove":"material/file-image-remove.svg","material-file-image":"material/file-image.svg","material-file-import-outline":"material/file-import-outline.svg","material-file-import":"material/file-import.svg","material-file-jpg-box":"material/file-jpg-box.svg","material-file-key-outline":"material/file-key-outline.svg","material-file-key":"material/file-key.svg","material-file-link-outline":"material/file-link-outline.svg","material-file-link":"material/file-link.svg","material-file-lock-open-outline":"material/file-lock-open-outline.svg","material-file-lock-open":"material/file-lock-open.svg","material-file-lock-outline":"material/file-lock-outline.svg","material-file-lock":"material/file-lock.svg","material-file-marker-outline":"material/file-marker-outline.svg","material-file-marker":"material/file-marker.svg","material-file-minus-outline":"material/file-minus-outline.svg","material-file-minus":"material/file-minus.svg","material-file-move-outline":"material/file-move-outline.svg","material-file-move":"material/file-move.svg","material-file-multiple-outline":"material/file-multiple-outline.svg","material-file-multiple":"material/file-multiple.svg","material-file-music-outline":"material/file-music-outline.svg","material-file-music":"material/file-music.svg","material-file-outline":"material/file-outline.svg","material-file-pdf-box":"material/file-pdf-box.svg","material-file-percent-outline":"material/file-percent-outline.svg","material-file-percent":"material/file-percent.svg","material-file-phone-outline":"material/file-phone-outline.svg","material-file-phone":"material/file-phone.svg","material-file-plus-outline":"material/file-plus-outline.svg","material-file-plus":"material/file-plus.svg","material-file-png-box":"material/file-png-box.svg","material-file-powerpoint-box-outline":"material/file-powerpoint-box-outline.svg","material-file-powerpoint-box":"material/file-powerpoint-box.svg","material-file-powerpoint-outline":"material/file-powerpoint-outline.svg","material-file-powerpoint":"material/file-powerpoint.svg","material-file-presentation-box":"material/file-presentation-box.svg","material-file-question-outline":"material/file-question-outline.svg","material-file-question":"material/file-question.svg","material-file-refresh-outline":"material/file-refresh-outline.svg","material-file-refresh":"material/file-refresh.svg","material-file-remove-outline":"material/file-remove-outline.svg","material-file-remove":"material/file-remove.svg","material-file-replace-outline":"material/file-replace-outline.svg","material-file-replace":"material/file-replace.svg","material-file-restore-outline":"material/file-restore-outline.svg","material-file-restore":"material/file-restore.svg","material-file-rotate-left-outline":"material/file-rotate-left-outline.svg","material-file-rotate-left":"material/file-rotate-left.svg","material-file-rotate-right-outline":"material/file-rotate-right-outline.svg","material-file-rotate-right":"material/file-rotate-right.svg","material-file-search-outline":"material/file-search-outline.svg","material-file-search":"material/file-search.svg","material-file-send-outline":"material/file-send-outline.svg","material-file-send":"material/file-send.svg","material-file-settings-outline":"material/file-settings-outline.svg","material-file-settings":"material/file-settings.svg","material-file-sign":"material/file-sign.svg","material-file-star-four-points-outline":"material/file-star-four-points-outline.svg","material-file-star-four-points":"material/file-star-four-points.svg","material-file-star-outline":"material/file-star-outline.svg","material-file-star":"material/file-star.svg","material-file-swap-outline":"material/file-swap-outline.svg","material-file-swap":"material/file-swap.svg","material-file-sync-outline":"material/file-sync-outline.svg","material-file-sync":"material/file-sync.svg","material-file-table-box-multiple-outline":"material/file-table-box-multiple-outline.svg","material-file-table-box-multiple":"material/file-table-box-multiple.svg","material-file-table-box-outline":"material/file-table-box-outline.svg","material-file-table-box":"material/file-table-box.svg","material-file-table-outline":"material/file-table-outline.svg","material-file-table":"material/file-table.svg","material-file-tree-outline":"material/file-tree-outline.svg","material-file-tree":"material/file-tree.svg","material-file-undo-outline":"material/file-undo-outline.svg","material-file-undo":"material/file-undo.svg","material-file-upload-outline":"material/file-upload-outline.svg","material-file-upload":"material/file-upload.svg","material-file-video-outline":"material/file-video-outline.svg","material-file-video":"material/file-video.svg","material-file-word-box-outline":"material/file-word-box-outline.svg","material-file-word-box":"material/file-word-box.svg","material-file-word-outline":"material/file-word-outline.svg","material-file-word":"material/file-word.svg","material-file-xml-box":"material/file-xml-box.svg","material-file":"material/file.svg","material-film":"material/film.svg","material-filmstrip-box-multiple":"material/filmstrip-box-multiple.svg","material-filmstrip-box":"material/filmstrip-box.svg","material-filmstrip-off":"material/filmstrip-off.svg","material-filmstrip":"material/filmstrip.svg","material-filter-check-outline":"material/filter-check-outline.svg","material-filter-check":"material/filter-check.svg","material-filter-cog-outline":"material/filter-cog-outline.svg","material-filter-cog":"material/filter-cog.svg","material-filter-menu-outline":"material/filter-menu-outline.svg","material-filter-menu":"material/filter-menu.svg","material-filter-minus-outline":"material/filter-minus-outline.svg","material-filter-minus":"material/filter-minus.svg","material-filter-multiple-outline":"material/filter-multiple-outline.svg","material-filter-multiple":"material/filter-multiple.svg","material-filter-off-outline":"material/filter-off-outline.svg","material-filter-off":"material/filter-off.svg","material-filter-outline":"material/filter-outline.svg","material-filter-plus-outline":"material/filter-plus-outline.svg","material-filter-plus":"material/filter-plus.svg","material-filter-remove-outline":"material/filter-remove-outline.svg","material-filter-remove":"material/filter-remove.svg","material-filter-settings-outline":"material/filter-settings-outline.svg","material-filter-settings":"material/filter-settings.svg","material-filter-variant-minus":"material/filter-variant-minus.svg","material-filter-variant-plus":"material/filter-variant-plus.svg","material-filter-variant-remove":"material/filter-variant-remove.svg","material-filter-variant":"material/filter-variant.svg","material-filter":"material/filter.svg","material-finance":"material/finance.svg","material-find-replace":"material/find-replace.svg","material-fingerprint-off":"material/fingerprint-off.svg","material-fingerprint":"material/fingerprint.svg","material-fire-alert":"material/fire-alert.svg","material-fire-circle":"material/fire-circle.svg","material-fire-extinguisher":"material/fire-extinguisher.svg","material-fire-hydrant-alert":"material/fire-hydrant-alert.svg","material-fire-hydrant-off":"material/fire-hydrant-off.svg","material-fire-hydrant":"material/fire-hydrant.svg","material-fire-off":"material/fire-off.svg","material-fire-station":"material/fire-station.svg","material-fire-truck":"material/fire-truck.svg","material-fire":"material/fire.svg","material-firebase":"material/firebase.svg","material-firefox":"material/firefox.svg","material-fireplace-off":"material/fireplace-off.svg","material-fireplace":"material/fireplace.svg","material-firewire":"material/firewire.svg","material-firework-off":"material/firework-off.svg","material-firework":"material/firework.svg","material-fish-off":"material/fish-off.svg","material-fish":"material/fish.svg","material-fishbowl-outline":"material/fishbowl-outline.svg","material-fishbowl":"material/fishbowl.svg","material-fit-to-page-outline":"material/fit-to-page-outline.svg","material-fit-to-page":"material/fit-to-page.svg","material-fit-to-screen-outline":"material/fit-to-screen-outline.svg","material-fit-to-screen":"material/fit-to-screen.svg","material-flag-checkered":"material/flag-checkered.svg","material-flag-minus-outline":"material/flag-minus-outline.svg","material-flag-minus":"material/flag-minus.svg","material-flag-off-outline":"material/flag-off-outline.svg","material-flag-off":"material/flag-off.svg","material-flag-outline":"material/flag-outline.svg","material-flag-plus-outline":"material/flag-plus-outline.svg","material-flag-plus":"material/flag-plus.svg","material-flag-remove-outline":"material/flag-remove-outline.svg","material-flag-remove":"material/flag-remove.svg","material-flag-triangle":"material/flag-triangle.svg","material-flag-variant-minus-outline":"material/flag-variant-minus-outline.svg","material-flag-variant-minus":"material/flag-variant-minus.svg","material-flag-variant-off-outline":"material/flag-variant-off-outline.svg","material-flag-variant-off":"material/flag-variant-off.svg","material-flag-variant-outline":"material/flag-variant-outline.svg","material-flag-variant-plus-outline":"material/flag-variant-plus-outline.svg","material-flag-variant-plus":"material/flag-variant-plus.svg","material-flag-variant-remove-outline":"material/flag-variant-remove-outline.svg","material-flag-variant-remove":"material/flag-variant-remove.svg","material-flag-variant":"material/flag-variant.svg","material-flag":"material/flag.svg","material-flare":"material/flare.svg","material-flash-alert-outline":"material/flash-alert-outline.svg","material-flash-alert":"material/flash-alert.svg","material-flash-auto":"material/flash-auto.svg","material-flash-off-outline":"material/flash-off-outline.svg","material-flash-off":"material/flash-off.svg","material-flash-outline":"material/flash-outline.svg","material-flash-red-eye":"material/flash-red-eye.svg","material-flash-triangle-outline":"material/flash-triangle-outline.svg","material-flash-triangle":"material/flash-triangle.svg","material-flash":"material/flash.svg","material-flashlight-off":"material/flashlight-off.svg","material-flashlight":"material/flashlight.svg","material-flask-empty-minus-outline":"material/flask-empty-minus-outline.svg","material-flask-empty-minus":"material/flask-empty-minus.svg","material-flask-empty-off-outline":"material/flask-empty-off-outline.svg","material-flask-empty-off":"material/flask-empty-off.svg","material-flask-empty-outline":"material/flask-empty-outline.svg","material-flask-empty-plus-outline":"material/flask-empty-plus-outline.svg","material-flask-empty-plus":"material/flask-empty-plus.svg","material-flask-empty-remove-outline":"material/flask-empty-remove-outline.svg","material-flask-empty-remove":"material/flask-empty-remove.svg","material-flask-empty":"material/flask-empty.svg","material-flask-minus-outline":"material/flask-minus-outline.svg","material-flask-minus":"material/flask-minus.svg","material-flask-off-outline":"material/flask-off-outline.svg","material-flask-off":"material/flask-off.svg","material-flask-outline":"material/flask-outline.svg","material-flask-plus-outline":"material/flask-plus-outline.svg","material-flask-plus":"material/flask-plus.svg","material-flask-remove-outline":"material/flask-remove-outline.svg","material-flask-remove":"material/flask-remove.svg","material-flask-round-bottom-empty-outline":"material/flask-round-bottom-empty-outline.svg","material-flask-round-bottom-empty":"material/flask-round-bottom-empty.svg","material-flask-round-bottom-outline":"material/flask-round-bottom-outline.svg","material-flask-round-bottom":"material/flask-round-bottom.svg","material-flask":"material/flask.svg","material-fleur-de-lis":"material/fleur-de-lis.svg","material-flip-horizontal":"material/flip-horizontal.svg","material-flip-to-back":"material/flip-to-back.svg","material-flip-to-front":"material/flip-to-front.svg","material-flip-vertical":"material/flip-vertical.svg","material-floor-lamp-dual-outline":"material/floor-lamp-dual-outline.svg","material-floor-lamp-dual":"material/floor-lamp-dual.svg","material-floor-lamp-outline":"material/floor-lamp-outline.svg","material-floor-lamp-torchiere-outline":"material/floor-lamp-torchiere-outline.svg","material-floor-lamp-torchiere-variant-outline":"material/floor-lamp-torchiere-variant-outline.svg","material-floor-lamp-torchiere-variant":"material/floor-lamp-torchiere-variant.svg","material-floor-lamp-torchiere":"material/floor-lamp-torchiere.svg","material-floor-lamp":"material/floor-lamp.svg","material-floor-plan":"material/floor-plan.svg","material-floppy-variant":"material/floppy-variant.svg","material-floppy":"material/floppy.svg","material-flower-outline":"material/flower-outline.svg","material-flower-pollen-outline":"material/flower-pollen-outline.svg","material-flower-pollen":"material/flower-pollen.svg","material-flower-poppy":"material/flower-poppy.svg","material-flower-tulip-outline":"material/flower-tulip-outline.svg","material-flower-tulip":"material/flower-tulip.svg","material-flower":"material/flower.svg","material-focus-auto":"material/focus-auto.svg","material-focus-field-horizontal":"material/focus-field-horizontal.svg","material-focus-field-vertical":"material/focus-field-vertical.svg","material-focus-field":"material/focus-field.svg","material-folder-account-outline":"material/folder-account-outline.svg","material-folder-account":"material/folder-account.svg","material-folder-alert-outline":"material/folder-alert-outline.svg","material-folder-alert":"material/folder-alert.svg","material-folder-arrow-down-outline":"material/folder-arrow-down-outline.svg","material-folder-arrow-down":"material/folder-arrow-down.svg","material-folder-arrow-left-outline":"material/folder-arrow-left-outline.svg","material-folder-arrow-left-right-outline":"material/folder-arrow-left-right-outline.svg","material-folder-arrow-left-right":"material/folder-arrow-left-right.svg","material-folder-arrow-left":"material/folder-arrow-left.svg","material-folder-arrow-right-outline":"material/folder-arrow-right-outline.svg","material-folder-arrow-right":"material/folder-arrow-right.svg","material-folder-arrow-up-down-outline":"material/folder-arrow-up-down-outline.svg","material-folder-arrow-up-down":"material/folder-arrow-up-down.svg","material-folder-arrow-up-outline":"material/folder-arrow-up-outline.svg","material-folder-arrow-up":"material/folder-arrow-up.svg","material-folder-cancel-outline":"material/folder-cancel-outline.svg","material-folder-cancel":"material/folder-cancel.svg","material-folder-check-outline":"material/folder-check-outline.svg","material-folder-check":"material/folder-check.svg","material-folder-clock-outline":"material/folder-clock-outline.svg","material-folder-clock":"material/folder-clock.svg","material-folder-cog-outline":"material/folder-cog-outline.svg","material-folder-cog":"material/folder-cog.svg","material-folder-download-outline":"material/folder-download-outline.svg","material-folder-download":"material/folder-download.svg","material-folder-edit-outline":"material/folder-edit-outline.svg","material-folder-edit":"material/folder-edit.svg","material-folder-eye-outline":"material/folder-eye-outline.svg","material-folder-eye":"material/folder-eye.svg","material-folder-file-outline":"material/folder-file-outline.svg","material-folder-file":"material/folder-file.svg","material-folder-google-drive":"material/folder-google-drive.svg","material-folder-heart-outline":"material/folder-heart-outline.svg","material-folder-heart":"material/folder-heart.svg","material-folder-hidden":"material/folder-hidden.svg","material-folder-home-outline":"material/folder-home-outline.svg","material-folder-home":"material/folder-home.svg","material-folder-image":"material/folder-image.svg","material-folder-information-outline":"material/folder-information-outline.svg","material-folder-information":"material/folder-information.svg","material-folder-key-network-outline":"material/folder-key-network-outline.svg","material-folder-key-network":"material/folder-key-network.svg","material-folder-key-outline":"material/folder-key-outline.svg","material-folder-key":"material/folder-key.svg","material-folder-lock-open-outline":"material/folder-lock-open-outline.svg","material-folder-lock-open":"material/folder-lock-open.svg","material-folder-lock-outline":"material/folder-lock-outline.svg","material-folder-lock":"material/folder-lock.svg","material-folder-marker-outline":"material/folder-marker-outline.svg","material-folder-marker":"material/folder-marker.svg","material-folder-minus-outline":"material/folder-minus-outline.svg","material-folder-minus":"material/folder-minus.svg","material-folder-move-outline":"material/folder-move-outline.svg","material-folder-move":"material/folder-move.svg","material-folder-multiple-image":"material/folder-multiple-image.svg","material-folder-multiple-outline":"material/folder-multiple-outline.svg","material-folder-multiple-plus-outline":"material/folder-multiple-plus-outline.svg","material-folder-multiple-plus":"material/folder-multiple-plus.svg","material-folder-multiple":"material/folder-multiple.svg","material-folder-music-outline":"material/folder-music-outline.svg","material-folder-music":"material/folder-music.svg","material-folder-network-outline":"material/folder-network-outline.svg","material-folder-network":"material/folder-network.svg","material-folder-off-outline":"material/folder-off-outline.svg","material-folder-off":"material/folder-off.svg","material-folder-open-outline":"material/folder-open-outline.svg","material-folder-open":"material/folder-open.svg","material-folder-outline":"material/folder-outline.svg","material-folder-play-outline":"material/folder-play-outline.svg","material-folder-play":"material/folder-play.svg","material-folder-plus-outline":"material/folder-plus-outline.svg","material-folder-plus":"material/folder-plus.svg","material-folder-pound-outline":"material/folder-pound-outline.svg","material-folder-pound":"material/folder-pound.svg","material-folder-question-outline":"material/folder-question-outline.svg","material-folder-question":"material/folder-question.svg","material-folder-refresh-outline":"material/folder-refresh-outline.svg","material-folder-refresh":"material/folder-refresh.svg","material-folder-remove-outline":"material/folder-remove-outline.svg","material-folder-remove":"material/folder-remove.svg","material-folder-search-outline":"material/folder-search-outline.svg","material-folder-search":"material/folder-search.svg","material-folder-settings-outline":"material/folder-settings-outline.svg","material-folder-settings":"material/folder-settings.svg","material-folder-star-multiple-outline":"material/folder-star-multiple-outline.svg","material-folder-star-multiple":"material/folder-star-multiple.svg","material-folder-star-outline":"material/folder-star-outline.svg","material-folder-star":"material/folder-star.svg","material-folder-swap-outline":"material/folder-swap-outline.svg","material-folder-swap":"material/folder-swap.svg","material-folder-sync-outline":"material/folder-sync-outline.svg","material-folder-sync":"material/folder-sync.svg","material-folder-table-outline":"material/folder-table-outline.svg","material-folder-table":"material/folder-table.svg","material-folder-text-outline":"material/folder-text-outline.svg","material-folder-text":"material/folder-text.svg","material-folder-upload-outline":"material/folder-upload-outline.svg","material-folder-upload":"material/folder-upload.svg","material-folder-wrench-outline":"material/folder-wrench-outline.svg","material-folder-wrench":"material/folder-wrench.svg","material-folder-zip-outline":"material/folder-zip-outline.svg","material-folder-zip":"material/folder-zip.svg","material-folder":"material/folder.svg","material-font-awesome":"material/font-awesome.svg","material-food-apple-outline":"material/food-apple-outline.svg","material-food-apple":"material/food-apple.svg","material-food-croissant":"material/food-croissant.svg","material-food-drumstick-off-outline":"material/food-drumstick-off-outline.svg","material-food-drumstick-off":"material/food-drumstick-off.svg","material-food-drumstick-outline":"material/food-drumstick-outline.svg","material-food-drumstick":"material/food-drumstick.svg","material-food-fork-drink":"material/food-fork-drink.svg","material-food-halal":"material/food-halal.svg","material-food-hot-dog":"material/food-hot-dog.svg","material-food-kosher":"material/food-kosher.svg","material-food-off-outline":"material/food-off-outline.svg","material-food-off":"material/food-off.svg","material-food-outline":"material/food-outline.svg","material-food-steak-off":"material/food-steak-off.svg","material-food-steak":"material/food-steak.svg","material-food-takeout-box-outline":"material/food-takeout-box-outline.svg","material-food-takeout-box":"material/food-takeout-box.svg","material-food-turkey":"material/food-turkey.svg","material-food-variant-off":"material/food-variant-off.svg","material-food-variant":"material/food-variant.svg","material-food":"material/food.svg","material-foot-print":"material/foot-print.svg","material-football-australian":"material/football-australian.svg","material-football-helmet":"material/football-helmet.svg","material-football":"material/football.svg","material-forest-outline":"material/forest-outline.svg","material-forest":"material/forest.svg","material-forklift":"material/forklift.svg","material-form-dropdown":"material/form-dropdown.svg","material-form-select":"material/form-select.svg","material-form-textarea":"material/form-textarea.svg","material-form-textbox-lock":"material/form-textbox-lock.svg","material-form-textbox-password":"material/form-textbox-password.svg","material-form-textbox":"material/form-textbox.svg","material-format-align-bottom":"material/format-align-bottom.svg","material-format-align-center":"material/format-align-center.svg","material-format-align-justify":"material/format-align-justify.svg","material-format-align-left":"material/format-align-left.svg","material-format-align-middle":"material/format-align-middle.svg","material-format-align-right":"material/format-align-right.svg","material-format-align-top":"material/format-align-top.svg","material-format-annotation-minus":"material/format-annotation-minus.svg","material-format-annotation-plus":"material/format-annotation-plus.svg","material-format-bold":"material/format-bold.svg","material-format-clear":"material/format-clear.svg","material-format-color-fill":"material/format-color-fill.svg","material-format-color-highlight":"material/format-color-highlight.svg","material-format-color-marker-cancel":"material/format-color-marker-cancel.svg","material-format-color-text":"material/format-color-text.svg","material-format-columns":"material/format-columns.svg","material-format-float-center":"material/format-float-center.svg","material-format-float-left":"material/format-float-left.svg","material-format-float-none":"material/format-float-none.svg","material-format-float-right":"material/format-float-right.svg","material-format-font-size-decrease":"material/format-font-size-decrease.svg","material-format-font-size-increase":"material/format-font-size-increase.svg","material-format-font":"material/format-font.svg","material-format-header-1":"material/format-header-1.svg","material-format-header-2":"material/format-header-2.svg","material-format-header-3":"material/format-header-3.svg","material-format-header-4":"material/format-header-4.svg","material-format-header-5":"material/format-header-5.svg","material-format-header-6":"material/format-header-6.svg","material-format-header-decrease":"material/format-header-decrease.svg","material-format-header-equal":"material/format-header-equal.svg","material-format-header-increase":"material/format-header-increase.svg","material-format-header-pound":"material/format-header-pound.svg","material-format-horizontal-align-center":"material/format-horizontal-align-center.svg","material-format-horizontal-align-left":"material/format-horizontal-align-left.svg","material-format-horizontal-align-right":"material/format-horizontal-align-right.svg","material-format-indent-decrease":"material/format-indent-decrease.svg","material-format-indent-increase":"material/format-indent-increase.svg","material-format-italic":"material/format-italic.svg","material-format-letter-case-lower":"material/format-letter-case-lower.svg","material-format-letter-case-upper":"material/format-letter-case-upper.svg","material-format-letter-case":"material/format-letter-case.svg","material-format-letter-ends-with":"material/format-letter-ends-with.svg","material-format-letter-matches":"material/format-letter-matches.svg","material-format-letter-spacing-variant":"material/format-letter-spacing-variant.svg","material-format-letter-spacing":"material/format-letter-spacing.svg","material-format-letter-starts-with":"material/format-letter-starts-with.svg","material-format-line-height":"material/format-line-height.svg","material-format-line-spacing":"material/format-line-spacing.svg","material-format-line-style":"material/format-line-style.svg","material-format-line-weight":"material/format-line-weight.svg","material-format-list-bulleted-square":"material/format-list-bulleted-square.svg","material-format-list-bulleted-triangle":"material/format-list-bulleted-triangle.svg","material-format-list-bulleted-type":"material/format-list-bulleted-type.svg","material-format-list-bulleted":"material/format-list-bulleted.svg","material-format-list-checkbox":"material/format-list-checkbox.svg","material-format-list-checks":"material/format-list-checks.svg","material-format-list-group-plus":"material/format-list-group-plus.svg","material-format-list-group":"material/format-list-group.svg","material-format-list-numbered-rtl":"material/format-list-numbered-rtl.svg","material-format-list-numbered":"material/format-list-numbered.svg","material-format-list-text":"material/format-list-text.svg","material-format-overline":"material/format-overline.svg","material-format-page-break":"material/format-page-break.svg","material-format-page-split":"material/format-page-split.svg","material-format-paint":"material/format-paint.svg","material-format-paragraph-spacing":"material/format-paragraph-spacing.svg","material-format-paragraph":"material/format-paragraph.svg","material-format-pilcrow-arrow-left":"material/format-pilcrow-arrow-left.svg","material-format-pilcrow-arrow-right":"material/format-pilcrow-arrow-right.svg","material-format-pilcrow":"material/format-pilcrow.svg","material-format-quote-close-outline":"material/format-quote-close-outline.svg","material-format-quote-close":"material/format-quote-close.svg","material-format-quote-open-outline":"material/format-quote-open-outline.svg","material-format-quote-open":"material/format-quote-open.svg","material-format-rotate-90":"material/format-rotate-90.svg","material-format-section":"material/format-section.svg","material-format-size":"material/format-size.svg","material-format-strikethrough-variant":"material/format-strikethrough-variant.svg","material-format-strikethrough":"material/format-strikethrough.svg","material-format-subscript":"material/format-subscript.svg","material-format-superscript":"material/format-superscript.svg","material-format-text-rotation-angle-down":"material/format-text-rotation-angle-down.svg","material-format-text-rotation-angle-up":"material/format-text-rotation-angle-up.svg","material-format-text-rotation-down-vertical":"material/format-text-rotation-down-vertical.svg","material-format-text-rotation-down":"material/format-text-rotation-down.svg","material-format-text-rotation-none":"material/format-text-rotation-none.svg","material-format-text-rotation-up":"material/format-text-rotation-up.svg","material-format-text-rotation-vertical":"material/format-text-rotation-vertical.svg","material-format-text-variant-outline":"material/format-text-variant-outline.svg","material-format-text-variant":"material/format-text-variant.svg","material-format-text-wrapping-clip":"material/format-text-wrapping-clip.svg","material-format-text-wrapping-overflow":"material/format-text-wrapping-overflow.svg","material-format-text-wrapping-wrap":"material/format-text-wrapping-wrap.svg","material-format-text":"material/format-text.svg","material-format-textbox":"material/format-textbox.svg","material-format-title":"material/format-title.svg","material-format-underline-wavy":"material/format-underline-wavy.svg","material-format-underline":"material/format-underline.svg","material-format-vertical-align-bottom":"material/format-vertical-align-bottom.svg","material-format-vertical-align-center":"material/format-vertical-align-center.svg","material-format-vertical-align-top":"material/format-vertical-align-top.svg","material-format-wrap-inline":"material/format-wrap-inline.svg","material-format-wrap-square":"material/format-wrap-square.svg","material-format-wrap-tight":"material/format-wrap-tight.svg","material-format-wrap-top-bottom":"material/format-wrap-top-bottom.svg","material-forum-minus-outline":"material/forum-minus-outline.svg","material-forum-minus":"material/forum-minus.svg","material-forum-outline":"material/forum-outline.svg","material-forum-plus-outline":"material/forum-plus-outline.svg","material-forum-plus":"material/forum-plus.svg","material-forum-remove-outline":"material/forum-remove-outline.svg","material-forum-remove":"material/forum-remove.svg","material-forum":"material/forum.svg","material-forward":"material/forward.svg","material-forwardburger":"material/forwardburger.svg","material-fountain-pen-tip":"material/fountain-pen-tip.svg","material-fountain-pen":"material/fountain-pen.svg","material-fountain":"material/fountain.svg","material-fraction-one-half":"material/fraction-one-half.svg","material-freebsd":"material/freebsd.svg","material-french-fries":"material/french-fries.svg","material-frequently-asked-questions":"material/frequently-asked-questions.svg","material-fridge-alert-outline":"material/fridge-alert-outline.svg","material-fridge-alert":"material/fridge-alert.svg","material-fridge-bottom":"material/fridge-bottom.svg","material-fridge-industrial-alert-outline":"material/fridge-industrial-alert-outline.svg","material-fridge-industrial-alert":"material/fridge-industrial-alert.svg","material-fridge-industrial-off-outline":"material/fridge-industrial-off-outline.svg","material-fridge-industrial-off":"material/fridge-industrial-off.svg","material-fridge-industrial-outline":"material/fridge-industrial-outline.svg","material-fridge-industrial":"material/fridge-industrial.svg","material-fridge-off-outline":"material/fridge-off-outline.svg","material-fridge-off":"material/fridge-off.svg","material-fridge-outline":"material/fridge-outline.svg","material-fridge-top":"material/fridge-top.svg","material-fridge-variant-alert-outline":"material/fridge-variant-alert-outline.svg","material-fridge-variant-alert":"material/fridge-variant-alert.svg","material-fridge-variant-off-outline":"material/fridge-variant-off-outline.svg","material-fridge-variant-off":"material/fridge-variant-off.svg","material-fridge-variant-outline":"material/fridge-variant-outline.svg","material-fridge-variant":"material/fridge-variant.svg","material-fridge":"material/fridge.svg","material-fruit-cherries-off":"material/fruit-cherries-off.svg","material-fruit-cherries":"material/fruit-cherries.svg","material-fruit-citrus-off":"material/fruit-citrus-off.svg","material-fruit-citrus":"material/fruit-citrus.svg","material-fruit-grapes-outline":"material/fruit-grapes-outline.svg","material-fruit-grapes":"material/fruit-grapes.svg","material-fruit-pear":"material/fruit-pear.svg","material-fruit-pineapple":"material/fruit-pineapple.svg","material-fruit-watermelon":"material/fruit-watermelon.svg","material-fuel-cell":"material/fuel-cell.svg","material-fuel":"material/fuel.svg","material-fullscreen-exit":"material/fullscreen-exit.svg","material-fullscreen":"material/fullscreen.svg","material-function-variant":"material/function-variant.svg","material-function":"material/function.svg","material-furigana-horizontal":"material/furigana-horizontal.svg","material-furigana-vertical":"material/furigana-vertical.svg","material-fuse-alert":"material/fuse-alert.svg","material-fuse-blade":"material/fuse-blade.svg","material-fuse-off":"material/fuse-off.svg","material-fuse":"material/fuse.svg","material-gamepad-circle-down":"material/gamepad-circle-down.svg","material-gamepad-circle-left":"material/gamepad-circle-left.svg","material-gamepad-circle-outline":"material/gamepad-circle-outline.svg","material-gamepad-circle-right":"material/gamepad-circle-right.svg","material-gamepad-circle-up":"material/gamepad-circle-up.svg","material-gamepad-circle":"material/gamepad-circle.svg","material-gamepad-down":"material/gamepad-down.svg","material-gamepad-left":"material/gamepad-left.svg","material-gamepad-outline":"material/gamepad-outline.svg","material-gamepad-right":"material/gamepad-right.svg","material-gamepad-round-down":"material/gamepad-round-down.svg","material-gamepad-round-left":"material/gamepad-round-left.svg","material-gamepad-round-outline":"material/gamepad-round-outline.svg","material-gamepad-round-right":"material/gamepad-round-right.svg","material-gamepad-round-up":"material/gamepad-round-up.svg","material-gamepad-round":"material/gamepad-round.svg","material-gamepad-square-outline":"material/gamepad-square-outline.svg","material-gamepad-square":"material/gamepad-square.svg","material-gamepad-up":"material/gamepad-up.svg","material-gamepad-variant-outline":"material/gamepad-variant-outline.svg","material-gamepad-variant":"material/gamepad-variant.svg","material-gamepad":"material/gamepad.svg","material-gamma":"material/gamma.svg","material-gantry-crane":"material/gantry-crane.svg","material-garage-alert-variant":"material/garage-alert-variant.svg","material-garage-alert":"material/garage-alert.svg","material-garage-lock":"material/garage-lock.svg","material-garage-open-variant":"material/garage-open-variant.svg","material-garage-open":"material/garage-open.svg","material-garage-variant-lock":"material/garage-variant-lock.svg","material-garage-variant":"material/garage-variant.svg","material-garage":"material/garage.svg","material-gas-burner":"material/gas-burner.svg","material-gas-cylinder":"material/gas-cylinder.svg","material-gas-station-in-use-outline":"material/gas-station-in-use-outline.svg","material-gas-station-in-use":"material/gas-station-in-use.svg","material-gas-station-off-outline":"material/gas-station-off-outline.svg","material-gas-station-off":"material/gas-station-off.svg","material-gas-station-outline":"material/gas-station-outline.svg","material-gas-station":"material/gas-station.svg","material-gate-alert":"material/gate-alert.svg","material-gate-and":"material/gate-and.svg","material-gate-arrow-left":"material/gate-arrow-left.svg","material-gate-arrow-right":"material/gate-arrow-right.svg","material-gate-buffer":"material/gate-buffer.svg","material-gate-nand":"material/gate-nand.svg","material-gate-nor":"material/gate-nor.svg","material-gate-not":"material/gate-not.svg","material-gate-open":"material/gate-open.svg","material-gate-or":"material/gate-or.svg","material-gate-xnor":"material/gate-xnor.svg","material-gate-xor":"material/gate-xor.svg","material-gate":"material/gate.svg","material-gatsby":"material/gatsby.svg","material-gauge-empty":"material/gauge-empty.svg","material-gauge-full":"material/gauge-full.svg","material-gauge-low":"material/gauge-low.svg","material-gauge":"material/gauge.svg","material-gavel":"material/gavel.svg","material-gender-female":"material/gender-female.svg","material-gender-male-female-variant":"material/gender-male-female-variant.svg","material-gender-male-female":"material/gender-male-female.svg","material-gender-male":"material/gender-male.svg","material-gender-non-binary":"material/gender-non-binary.svg","material-gender-transgender":"material/gender-transgender.svg","material-generator-mobile":"material/generator-mobile.svg","material-generator-portable":"material/generator-portable.svg","material-generator-stationary":"material/generator-stationary.svg","material-gentoo":"material/gentoo.svg","material-gesture-double-tap":"material/gesture-double-tap.svg","material-gesture-pinch":"material/gesture-pinch.svg","material-gesture-spread":"material/gesture-spread.svg","material-gesture-swipe-down":"material/gesture-swipe-down.svg","material-gesture-swipe-horizontal":"material/gesture-swipe-horizontal.svg","material-gesture-swipe-left":"material/gesture-swipe-left.svg","material-gesture-swipe-right":"material/gesture-swipe-right.svg","material-gesture-swipe-up":"material/gesture-swipe-up.svg","material-gesture-swipe-vertical":"material/gesture-swipe-vertical.svg","material-gesture-swipe":"material/gesture-swipe.svg","material-gesture-tap-box":"material/gesture-tap-box.svg","material-gesture-tap-button":"material/gesture-tap-button.svg","material-gesture-tap-hold":"material/gesture-tap-hold.svg","material-gesture-tap":"material/gesture-tap.svg","material-gesture-two-double-tap":"material/gesture-two-double-tap.svg","material-gesture-two-tap":"material/gesture-two-tap.svg","material-gesture":"material/gesture.svg","material-ghost-off-outline":"material/ghost-off-outline.svg","material-ghost-off":"material/ghost-off.svg","material-ghost-outline":"material/ghost-outline.svg","material-ghost":"material/ghost.svg","material-gift-off-outline":"material/gift-off-outline.svg","material-gift-off":"material/gift-off.svg","material-gift-open-outline":"material/gift-open-outline.svg","material-gift-open":"material/gift-open.svg","material-gift-outline":"material/gift-outline.svg","material-gift":"material/gift.svg","material-git":"material/git.svg","material-github":"material/github.svg","material-gitlab":"material/gitlab.svg","material-glass-cocktail-off":"material/glass-cocktail-off.svg","material-glass-cocktail":"material/glass-cocktail.svg","material-glass-flute":"material/glass-flute.svg","material-glass-fragile":"material/glass-fragile.svg","material-glass-mug-off":"material/glass-mug-off.svg","material-glass-mug-variant-off":"material/glass-mug-variant-off.svg","material-glass-mug-variant":"material/glass-mug-variant.svg","material-glass-mug":"material/glass-mug.svg","material-glass-pint-outline":"material/glass-pint-outline.svg","material-glass-stange":"material/glass-stange.svg","material-glass-tulip":"material/glass-tulip.svg","material-glass-wine":"material/glass-wine.svg","material-glasses":"material/glasses.svg","material-globe-light-outline":"material/globe-light-outline.svg","material-globe-light":"material/globe-light.svg","material-globe-model":"material/globe-model.svg","material-gmail":"material/gmail.svg","material-gnome":"material/gnome.svg","material-go-kart-track":"material/go-kart-track.svg","material-go-kart":"material/go-kart.svg","material-gog":"material/gog.svg","material-gold":"material/gold.svg","material-golf-cart":"material/golf-cart.svg","material-golf-tee":"material/golf-tee.svg","material-golf":"material/golf.svg","material-gondola":"material/gondola.svg","material-goodreads":"material/goodreads.svg","material-google-ads":"material/google-ads.svg","material-google-analytics":"material/google-analytics.svg","material-google-assistant":"material/google-assistant.svg","material-google-cardboard":"material/google-cardboard.svg","material-google-chrome":"material/google-chrome.svg","material-google-circles-communities":"material/google-circles-communities.svg","material-google-circles-extended":"material/google-circles-extended.svg","material-google-circles-group":"material/google-circles-group.svg","material-google-circles":"material/google-circles.svg","material-google-classroom":"material/google-classroom.svg","material-google-cloud":"material/google-cloud.svg","material-google-downasaur":"material/google-downasaur.svg","material-google-drive":"material/google-drive.svg","material-google-earth":"material/google-earth.svg","material-google-fit":"material/google-fit.svg","material-google-glass":"material/google-glass.svg","material-google-hangouts":"material/google-hangouts.svg","material-google-keep":"material/google-keep.svg","material-google-lens":"material/google-lens.svg","material-google-maps":"material/google-maps.svg","material-google-my-business":"material/google-my-business.svg","material-google-nearby":"material/google-nearby.svg","material-google-play":"material/google-play.svg","material-google-plus":"material/google-plus.svg","material-google-podcast":"material/google-podcast.svg","material-google-spreadsheet":"material/google-spreadsheet.svg","material-google-street-view":"material/google-street-view.svg","material-google-translate":"material/google-translate.svg","material-google":"material/google.svg","material-gradient-horizontal":"material/gradient-horizontal.svg","material-gradient-vertical":"material/gradient-vertical.svg","material-grain":"material/grain.svg","material-graph-outline":"material/graph-outline.svg","material-graph":"material/graph.svg","material-graphql":"material/graphql.svg","material-grass":"material/grass.svg","material-grave-stone":"material/grave-stone.svg","material-grease-pencil":"material/grease-pencil.svg","material-greater-than-or-equal":"material/greater-than-or-equal.svg","material-greater-than":"material/greater-than.svg","material-greenhouse":"material/greenhouse.svg","material-grid-large":"material/grid-large.svg","material-grid-off":"material/grid-off.svg","material-grid":"material/grid.svg","material-grill-outline":"material/grill-outline.svg","material-grill":"material/grill.svg","material-group":"material/group.svg","material-guitar-acoustic":"material/guitar-acoustic.svg","material-guitar-electric":"material/guitar-electric.svg","material-guitar-pick-outline":"material/guitar-pick-outline.svg","material-guitar-pick":"material/guitar-pick.svg","material-guy-fawkes-mask":"material/guy-fawkes-mask.svg","material-gymnastics":"material/gymnastics.svg","material-hail":"material/hail.svg","material-hair-dryer-outline":"material/hair-dryer-outline.svg","material-hair-dryer":"material/hair-dryer.svg","material-halloween":"material/halloween.svg","material-hamburger-check":"material/hamburger-check.svg","material-hamburger-minus":"material/hamburger-minus.svg","material-hamburger-off":"material/hamburger-off.svg","material-hamburger-plus":"material/hamburger-plus.svg","material-hamburger-remove":"material/hamburger-remove.svg","material-hamburger":"material/hamburger.svg","material-hammer-screwdriver":"material/hammer-screwdriver.svg","material-hammer-sickle":"material/hammer-sickle.svg","material-hammer-wrench":"material/hammer-wrench.svg","material-hammer":"material/hammer.svg","material-hand-back-left-off-outline":"material/hand-back-left-off-outline.svg","material-hand-back-left-off":"material/hand-back-left-off.svg","material-hand-back-left-outline":"material/hand-back-left-outline.svg","material-hand-back-left":"material/hand-back-left.svg","material-hand-back-right-off-outline":"material/hand-back-right-off-outline.svg","material-hand-back-right-off":"material/hand-back-right-off.svg","material-hand-back-right-outline":"material/hand-back-right-outline.svg","material-hand-back-right":"material/hand-back-right.svg","material-hand-clap-off":"material/hand-clap-off.svg","material-hand-clap":"material/hand-clap.svg","material-hand-coin-outline":"material/hand-coin-outline.svg","material-hand-coin":"material/hand-coin.svg","material-hand-cycle":"material/hand-cycle.svg","material-hand-extended-outline":"material/hand-extended-outline.svg","material-hand-extended":"material/hand-extended.svg","material-hand-front-left-outline":"material/hand-front-left-outline.svg","material-hand-front-left":"material/hand-front-left.svg","material-hand-front-right-outline":"material/hand-front-right-outline.svg","material-hand-front-right":"material/hand-front-right.svg","material-hand-heart-outline":"material/hand-heart-outline.svg","material-hand-heart":"material/hand-heart.svg","material-hand-okay":"material/hand-okay.svg","material-hand-peace-variant":"material/hand-peace-variant.svg","material-hand-peace":"material/hand-peace.svg","material-hand-pointing-down":"material/hand-pointing-down.svg","material-hand-pointing-left":"material/hand-pointing-left.svg","material-hand-pointing-right":"material/hand-pointing-right.svg","material-hand-pointing-up":"material/hand-pointing-up.svg","material-hand-saw":"material/hand-saw.svg","material-hand-wash-outline":"material/hand-wash-outline.svg","material-hand-wash":"material/hand-wash.svg","material-hand-water":"material/hand-water.svg","material-hand-wave-outline":"material/hand-wave-outline.svg","material-hand-wave":"material/hand-wave.svg","material-handball":"material/handball.svg","material-handcuffs":"material/handcuffs.svg","material-hands-pray":"material/hands-pray.svg","material-handshake-outline":"material/handshake-outline.svg","material-handshake":"material/handshake.svg","material-hanger":"material/hanger.svg","material-hard-hat":"material/hard-hat.svg","material-harddisk-plus":"material/harddisk-plus.svg","material-harddisk-remove":"material/harddisk-remove.svg","material-harddisk":"material/harddisk.svg","material-hat-fedora":"material/hat-fedora.svg","material-hazard-lights":"material/hazard-lights.svg","material-hdmi-port":"material/hdmi-port.svg","material-hdr-off":"material/hdr-off.svg","material-hdr":"material/hdr.svg","material-head-alert-outline":"material/head-alert-outline.svg","material-head-alert":"material/head-alert.svg","material-head-check-outline":"material/head-check-outline.svg","material-head-check":"material/head-check.svg","material-head-cog-outline":"material/head-cog-outline.svg","material-head-cog":"material/head-cog.svg","material-head-dots-horizontal-outline":"material/head-dots-horizontal-outline.svg","material-head-dots-horizontal":"material/head-dots-horizontal.svg","material-head-flash-outline":"material/head-flash-outline.svg","material-head-flash":"material/head-flash.svg","material-head-heart-outline":"material/head-heart-outline.svg","material-head-heart":"material/head-heart.svg","material-head-lightbulb-outline":"material/head-lightbulb-outline.svg","material-head-lightbulb":"material/head-lightbulb.svg","material-head-minus-outline":"material/head-minus-outline.svg","material-head-minus":"material/head-minus.svg","material-head-outline":"material/head-outline.svg","material-head-plus-outline":"material/head-plus-outline.svg","material-head-plus":"material/head-plus.svg","material-head-question-outline":"material/head-question-outline.svg","material-head-question":"material/head-question.svg","material-head-remove-outline":"material/head-remove-outline.svg","material-head-remove":"material/head-remove.svg","material-head-snowflake-outline":"material/head-snowflake-outline.svg","material-head-snowflake":"material/head-snowflake.svg","material-head-sync-outline":"material/head-sync-outline.svg","material-head-sync":"material/head-sync.svg","material-head":"material/head.svg","material-headphones-bluetooth":"material/headphones-bluetooth.svg","material-headphones-box":"material/headphones-box.svg","material-headphones-off":"material/headphones-off.svg","material-headphones-settings":"material/headphones-settings.svg","material-headphones":"material/headphones.svg","material-headset-dock":"material/headset-dock.svg","material-headset-off":"material/headset-off.svg","material-headset":"material/headset.svg","material-heart-box-outline":"material/heart-box-outline.svg","material-heart-box":"material/heart-box.svg","material-heart-broken-outline":"material/heart-broken-outline.svg","material-heart-broken":"material/heart-broken.svg","material-heart-circle-outline":"material/heart-circle-outline.svg","material-heart-circle":"material/heart-circle.svg","material-heart-cog-outline":"material/heart-cog-outline.svg","material-heart-cog":"material/heart-cog.svg","material-heart-flash":"material/heart-flash.svg","material-heart-half-full":"material/heart-half-full.svg","material-heart-half-outline":"material/heart-half-outline.svg","material-heart-half":"material/heart-half.svg","material-heart-minus-outline":"material/heart-minus-outline.svg","material-heart-minus":"material/heart-minus.svg","material-heart-multiple-outline":"material/heart-multiple-outline.svg","material-heart-multiple":"material/heart-multiple.svg","material-heart-off-outline":"material/heart-off-outline.svg","material-heart-off":"material/heart-off.svg","material-heart-outline":"material/heart-outline.svg","material-heart-plus-outline":"material/heart-plus-outline.svg","material-heart-plus":"material/heart-plus.svg","material-heart-pulse":"material/heart-pulse.svg","material-heart-remove-outline":"material/heart-remove-outline.svg","material-heart-remove":"material/heart-remove.svg","material-heart-search":"material/heart-search.svg","material-heart-settings-outline":"material/heart-settings-outline.svg","material-heart-settings":"material/heart-settings.svg","material-heart":"material/heart.svg","material-heat-pump-outline":"material/heat-pump-outline.svg","material-heat-pump":"material/heat-pump.svg","material-heat-wave":"material/heat-wave.svg","material-heating-coil":"material/heating-coil.svg","material-helicopter":"material/helicopter.svg","material-help-box-multiple-outline":"material/help-box-multiple-outline.svg","material-help-box-multiple":"material/help-box-multiple.svg","material-help-box-outline":"material/help-box-outline.svg","material-help-box":"material/help-box.svg","material-help-circle-outline":"material/help-circle-outline.svg","material-help-circle":"material/help-circle.svg","material-help-network-outline":"material/help-network-outline.svg","material-help-network":"material/help-network.svg","material-help-rhombus-outline":"material/help-rhombus-outline.svg","material-help-rhombus":"material/help-rhombus.svg","material-help":"material/help.svg","material-hexadecimal":"material/hexadecimal.svg","material-hexagon-multiple-outline":"material/hexagon-multiple-outline.svg","material-hexagon-multiple":"material/hexagon-multiple.svg","material-hexagon-outline":"material/hexagon-outline.svg","material-hexagon-slice-1":"material/hexagon-slice-1.svg","material-hexagon-slice-2":"material/hexagon-slice-2.svg","material-hexagon-slice-3":"material/hexagon-slice-3.svg","material-hexagon-slice-4":"material/hexagon-slice-4.svg","material-hexagon-slice-5":"material/hexagon-slice-5.svg","material-hexagon-slice-6":"material/hexagon-slice-6.svg","material-hexagon":"material/hexagon.svg","material-hexagram-outline":"material/hexagram-outline.svg","material-hexagram":"material/hexagram.svg","material-high-definition-box":"material/high-definition-box.svg","material-high-definition":"material/high-definition.svg","material-highway":"material/highway.svg","material-hiking":"material/hiking.svg","material-history":"material/history.svg","material-hockey-puck":"material/hockey-puck.svg","material-hockey-sticks":"material/hockey-sticks.svg","material-hololens":"material/hololens.svg","material-home-account":"material/home-account.svg","material-home-alert-outline":"material/home-alert-outline.svg","material-home-alert":"material/home-alert.svg","material-home-analytics":"material/home-analytics.svg","material-home-assistant":"material/home-assistant.svg","material-home-automation":"material/home-automation.svg","material-home-battery-outline":"material/home-battery-outline.svg","material-home-battery":"material/home-battery.svg","material-home-circle-outline":"material/home-circle-outline.svg","material-home-circle":"material/home-circle.svg","material-home-city-outline":"material/home-city-outline.svg","material-home-city":"material/home-city.svg","material-home-clock-outline":"material/home-clock-outline.svg","material-home-clock":"material/home-clock.svg","material-home-edit-outline":"material/home-edit-outline.svg","material-home-edit":"material/home-edit.svg","material-home-export-outline":"material/home-export-outline.svg","material-home-flood":"material/home-flood.svg","material-home-floor-0":"material/home-floor-0.svg","material-home-floor-1":"material/home-floor-1.svg","material-home-floor-2":"material/home-floor-2.svg","material-home-floor-3":"material/home-floor-3.svg","material-home-floor-a":"material/home-floor-a.svg","material-home-floor-b":"material/home-floor-b.svg","material-home-floor-g":"material/home-floor-g.svg","material-home-floor-l":"material/home-floor-l.svg","material-home-floor-negative-1":"material/home-floor-negative-1.svg","material-home-group-minus":"material/home-group-minus.svg","material-home-group-plus":"material/home-group-plus.svg","material-home-group-remove":"material/home-group-remove.svg","material-home-group":"material/home-group.svg","material-home-heart":"material/home-heart.svg","material-home-import-outline":"material/home-import-outline.svg","material-home-lightbulb-outline":"material/home-lightbulb-outline.svg","material-home-lightbulb":"material/home-lightbulb.svg","material-home-lightning-bolt-outline":"material/home-lightning-bolt-outline.svg","material-home-lightning-bolt":"material/home-lightning-bolt.svg","material-home-lock-open":"material/home-lock-open.svg","material-home-lock":"material/home-lock.svg","material-home-map-marker":"material/home-map-marker.svg","material-home-minus-outline":"material/home-minus-outline.svg","material-home-minus":"material/home-minus.svg","material-home-modern":"material/home-modern.svg","material-home-off-outline":"material/home-off-outline.svg","material-home-off":"material/home-off.svg","material-home-outline":"material/home-outline.svg","material-home-percent-outline":"material/home-percent-outline.svg","material-home-percent":"material/home-percent.svg","material-home-plus-outline":"material/home-plus-outline.svg","material-home-plus":"material/home-plus.svg","material-home-remove-outline":"material/home-remove-outline.svg","material-home-remove":"material/home-remove.svg","material-home-roof":"material/home-roof.svg","material-home-search-outline":"material/home-search-outline.svg","material-home-search":"material/home-search.svg","material-home-silo-outline":"material/home-silo-outline.svg","material-home-silo":"material/home-silo.svg","material-home-sound-in-outline":"material/home-sound-in-outline.svg","material-home-sound-in":"material/home-sound-in.svg","material-home-sound-out-outline":"material/home-sound-out-outline.svg","material-home-sound-out":"material/home-sound-out.svg","material-home-switch-outline":"material/home-switch-outline.svg","material-home-switch":"material/home-switch.svg","material-home-thermometer-outline":"material/home-thermometer-outline.svg","material-home-thermometer":"material/home-thermometer.svg","material-home-variant-outline":"material/home-variant-outline.svg","material-home-variant":"material/home-variant.svg","material-home":"material/home.svg","material-hook-off":"material/hook-off.svg","material-hook":"material/hook.svg","material-hoop-house":"material/hoop-house.svg","material-hops":"material/hops.svg","material-horizontal-rotate-clockwise":"material/horizontal-rotate-clockwise.svg","material-horizontal-rotate-counterclockwise":"material/horizontal-rotate-counterclockwise.svg","material-horse-human":"material/horse-human.svg","material-horse-variant-fast":"material/horse-variant-fast.svg","material-horse-variant":"material/horse-variant.svg","material-horse":"material/horse.svg","material-horseshoe":"material/horseshoe.svg","material-hospital-box-outline":"material/hospital-box-outline.svg","material-hospital-box":"material/hospital-box.svg","material-hospital-building":"material/hospital-building.svg","material-hospital-marker":"material/hospital-marker.svg","material-hospital":"material/hospital.svg","material-hot-tub":"material/hot-tub.svg","material-hours-12":"material/hours-12.svg","material-hours-24":"material/hours-24.svg","material-hub-outline":"material/hub-outline.svg","material-hub":"material/hub.svg","material-hubspot":"material/hubspot.svg","material-hulu":"material/hulu.svg","material-human-baby-changing-table":"material/human-baby-changing-table.svg","material-human-cane":"material/human-cane.svg","material-human-capacity-decrease":"material/human-capacity-decrease.svg","material-human-capacity-increase":"material/human-capacity-increase.svg","material-human-child":"material/human-child.svg","material-human-dolly":"material/human-dolly.svg","material-human-edit":"material/human-edit.svg","material-human-female-boy":"material/human-female-boy.svg","material-human-female-dance":"material/human-female-dance.svg","material-human-female-female-child":"material/human-female-female-child.svg","material-human-female-female":"material/human-female-female.svg","material-human-female-girl":"material/human-female-girl.svg","material-human-female":"material/human-female.svg","material-human-greeting-proximity":"material/human-greeting-proximity.svg","material-human-greeting-variant":"material/human-greeting-variant.svg","material-human-greeting":"material/human-greeting.svg","material-human-handsdown":"material/human-handsdown.svg","material-human-handsup":"material/human-handsup.svg","material-human-male-board-poll":"material/human-male-board-poll.svg","material-human-male-board":"material/human-male-board.svg","material-human-male-boy":"material/human-male-boy.svg","material-human-male-child":"material/human-male-child.svg","material-human-male-female-child":"material/human-male-female-child.svg","material-human-male-female":"material/human-male-female.svg","material-human-male-girl":"material/human-male-girl.svg","material-human-male-height-variant":"material/human-male-height-variant.svg","material-human-male-height":"material/human-male-height.svg","material-human-male-male-child":"material/human-male-male-child.svg","material-human-male-male":"material/human-male-male.svg","material-human-male":"material/human-male.svg","material-human-non-binary":"material/human-non-binary.svg","material-human-pregnant":"material/human-pregnant.svg","material-human-queue":"material/human-queue.svg","material-human-scooter":"material/human-scooter.svg","material-human-walker":"material/human-walker.svg","material-human-wheelchair":"material/human-wheelchair.svg","material-human-white-cane":"material/human-white-cane.svg","material-human":"material/human.svg","material-humble-bundle":"material/humble-bundle.svg","material-hvac-off":"material/hvac-off.svg","material-hvac":"material/hvac.svg","material-hydraulic-oil-level":"material/hydraulic-oil-level.svg","material-hydraulic-oil-temperature":"material/hydraulic-oil-temperature.svg","material-hydro-power":"material/hydro-power.svg","material-hydrogen-station":"material/hydrogen-station.svg","material-ice-cream-off":"material/ice-cream-off.svg","material-ice-cream":"material/ice-cream.svg","material-ice-pop":"material/ice-pop.svg","material-id-card":"material/id-card.svg","material-identifier":"material/identifier.svg","material-ideogram-cjk-variant":"material/ideogram-cjk-variant.svg","material-ideogram-cjk":"material/ideogram-cjk.svg","material-image-album":"material/image-album.svg","material-image-area-close":"material/image-area-close.svg","material-image-area":"material/image-area.svg","material-image-auto-adjust":"material/image-auto-adjust.svg","material-image-broken-variant":"material/image-broken-variant.svg","material-image-broken":"material/image-broken.svg","material-image-check-outline":"material/image-check-outline.svg","material-image-check":"material/image-check.svg","material-image-edit-outline":"material/image-edit-outline.svg","material-image-edit":"material/image-edit.svg","material-image-filter-black-white":"material/image-filter-black-white.svg","material-image-filter-center-focus-strong-outline":"material/image-filter-center-focus-strong-outline.svg","material-image-filter-center-focus-strong":"material/image-filter-center-focus-strong.svg","material-image-filter-center-focus-weak":"material/image-filter-center-focus-weak.svg","material-image-filter-center-focus":"material/image-filter-center-focus.svg","material-image-filter-drama-outline":"material/image-filter-drama-outline.svg","material-image-filter-drama":"material/image-filter-drama.svg","material-image-filter-frames":"material/image-filter-frames.svg","material-image-filter-hdr-outline":"material/image-filter-hdr-outline.svg","material-image-filter-hdr":"material/image-filter-hdr.svg","material-image-filter-none":"material/image-filter-none.svg","material-image-filter-tilt-shift":"material/image-filter-tilt-shift.svg","material-image-filter-vintage":"material/image-filter-vintage.svg","material-image-frame":"material/image-frame.svg","material-image-lock-outline":"material/image-lock-outline.svg","material-image-lock":"material/image-lock.svg","material-image-marker-outline":"material/image-marker-outline.svg","material-image-marker":"material/image-marker.svg","material-image-minus-outline":"material/image-minus-outline.svg","material-image-minus":"material/image-minus.svg","material-image-move":"material/image-move.svg","material-image-multiple-outline":"material/image-multiple-outline.svg","material-image-multiple":"material/image-multiple.svg","material-image-off-outline":"material/image-off-outline.svg","material-image-off":"material/image-off.svg","material-image-outline":"material/image-outline.svg","material-image-plus-outline":"material/image-plus-outline.svg","material-image-plus":"material/image-plus.svg","material-image-refresh-outline":"material/image-refresh-outline.svg","material-image-refresh":"material/image-refresh.svg","material-image-remove-outline":"material/image-remove-outline.svg","material-image-remove":"material/image-remove.svg","material-image-search-outline":"material/image-search-outline.svg","material-image-search":"material/image-search.svg","material-image-size-select-actual":"material/image-size-select-actual.svg","material-image-size-select-large":"material/image-size-select-large.svg","material-image-size-select-small":"material/image-size-select-small.svg","material-image-sync-outline":"material/image-sync-outline.svg","material-image-sync":"material/image-sync.svg","material-image-text":"material/image-text.svg","material-image":"material/image.svg","material-import":"material/import.svg","material-inbox-arrow-down-outline":"material/inbox-arrow-down-outline.svg","material-inbox-arrow-down":"material/inbox-arrow-down.svg","material-inbox-arrow-up-outline":"material/inbox-arrow-up-outline.svg","material-inbox-arrow-up":"material/inbox-arrow-up.svg","material-inbox-full-outline":"material/inbox-full-outline.svg","material-inbox-full":"material/inbox-full.svg","material-inbox-multiple-outline":"material/inbox-multiple-outline.svg","material-inbox-multiple":"material/inbox-multiple.svg","material-inbox-outline":"material/inbox-outline.svg","material-inbox-remove-outline":"material/inbox-remove-outline.svg","material-inbox-remove":"material/inbox-remove.svg","material-inbox":"material/inbox.svg","material-incognito-circle-off":"material/incognito-circle-off.svg","material-incognito-circle":"material/incognito-circle.svg","material-incognito-off":"material/incognito-off.svg","material-incognito":"material/incognito.svg","material-induction":"material/induction.svg","material-infinity":"material/infinity.svg","material-information-box-outline":"material/information-box-outline.svg","material-information-box":"material/information-box.svg","material-information-off-outline":"material/information-off-outline.svg","material-information-off":"material/information-off.svg","material-information-outline":"material/information-outline.svg","material-information-slab-box-outline":"material/information-slab-box-outline.svg","material-information-slab-box":"material/information-slab-box.svg","material-information-slab-circle-outline":"material/information-slab-circle-outline.svg","material-information-slab-circle":"material/information-slab-circle.svg","material-information-slab-symbol":"material/information-slab-symbol.svg","material-information-symbol":"material/information-symbol.svg","material-information-variant-box-outline":"material/information-variant-box-outline.svg","material-information-variant-box":"material/information-variant-box.svg","material-information-variant-circle-outline":"material/information-variant-circle-outline.svg","material-information-variant-circle":"material/information-variant-circle.svg","material-information-variant":"material/information-variant.svg","material-information":"material/information.svg","material-instagram":"material/instagram.svg","material-instrument-triangle":"material/instrument-triangle.svg","material-integrated-circuit-chip":"material/integrated-circuit-chip.svg","material-invert-colors-off":"material/invert-colors-off.svg","material-invert-colors":"material/invert-colors.svg","material-invoice-arrow-left-outline":"material/invoice-arrow-left-outline.svg","material-invoice-arrow-left":"material/invoice-arrow-left.svg","material-invoice-arrow-right-outline":"material/invoice-arrow-right-outline.svg","material-invoice-arrow-right":"material/invoice-arrow-right.svg","material-invoice-check-outline":"material/invoice-check-outline.svg","material-invoice-check":"material/invoice-check.svg","material-invoice-clock-outline":"material/invoice-clock-outline.svg","material-invoice-clock":"material/invoice-clock.svg","material-invoice-edit-outline":"material/invoice-edit-outline.svg","material-invoice-edit":"material/invoice-edit.svg","material-invoice-export-outline":"material/invoice-export-outline.svg","material-invoice-fast-outline":"material/invoice-fast-outline.svg","material-invoice-fast":"material/invoice-fast.svg","material-invoice-import-outline":"material/invoice-import-outline.svg","material-invoice-import":"material/invoice-import.svg","material-invoice-list-outline":"material/invoice-list-outline.svg","material-invoice-list":"material/invoice-list.svg","material-invoice-minus-outline":"material/invoice-minus-outline.svg","material-invoice-minus":"material/invoice-minus.svg","material-invoice-multiple-outline":"material/invoice-multiple-outline.svg","material-invoice-multiple":"material/invoice-multiple.svg","material-invoice-outline":"material/invoice-outline.svg","material-invoice-plus-outline":"material/invoice-plus-outline.svg","material-invoice-plus":"material/invoice-plus.svg","material-invoice-remove-outline":"material/invoice-remove-outline.svg","material-invoice-remove":"material/invoice-remove.svg","material-invoice-send-outline":"material/invoice-send-outline.svg","material-invoice-send":"material/invoice-send.svg","material-invoice-text-arrow-left-outline":"material/invoice-text-arrow-left-outline.svg","material-invoice-text-arrow-left":"material/invoice-text-arrow-left.svg","material-invoice-text-arrow-right-outline":"material/invoice-text-arrow-right-outline.svg","material-invoice-text-arrow-right":"material/invoice-text-arrow-right.svg","material-invoice-text-check-outline":"material/invoice-text-check-outline.svg","material-invoice-text-check":"material/invoice-text-check.svg","material-invoice-text-clock-outline":"material/invoice-text-clock-outline.svg","material-invoice-text-clock":"material/invoice-text-clock.svg","material-invoice-text-edit-outline":"material/invoice-text-edit-outline.svg","material-invoice-text-edit":"material/invoice-text-edit.svg","material-invoice-text-fast-outline":"material/invoice-text-fast-outline.svg","material-invoice-text-fast":"material/invoice-text-fast.svg","material-invoice-text-minus-outline":"material/invoice-text-minus-outline.svg","material-invoice-text-minus":"material/invoice-text-minus.svg","material-invoice-text-multiple-outline":"material/invoice-text-multiple-outline.svg","material-invoice-text-multiple":"material/invoice-text-multiple.svg","material-invoice-text-outline":"material/invoice-text-outline.svg","material-invoice-text-plus-outline":"material/invoice-text-plus-outline.svg","material-invoice-text-plus":"material/invoice-text-plus.svg","material-invoice-text-remove-outline":"material/invoice-text-remove-outline.svg","material-invoice-text-remove":"material/invoice-text-remove.svg","material-invoice-text-send-outline":"material/invoice-text-send-outline.svg","material-invoice-text-send":"material/invoice-text-send.svg","material-invoice-text":"material/invoice-text.svg","material-invoice":"material/invoice.svg","material-iobroker":"material/iobroker.svg","material-ip-network-outline":"material/ip-network-outline.svg","material-ip-network":"material/ip-network.svg","material-ip-outline":"material/ip-outline.svg","material-ip":"material/ip.svg","material-ipod":"material/ipod.svg","material-iron-board":"material/iron-board.svg","material-iron-outline":"material/iron-outline.svg","material-iron":"material/iron.svg","material-island-variant":"material/island-variant.svg","material-island":"material/island.svg","material-iv-bag":"material/iv-bag.svg","material-jabber":"material/jabber.svg","material-jeepney":"material/jeepney.svg","material-jellyfish-outline":"material/jellyfish-outline.svg","material-jellyfish":"material/jellyfish.svg","material-jira":"material/jira.svg","material-jquery":"material/jquery.svg","material-jsfiddle":"material/jsfiddle.svg","material-jump-rope":"material/jump-rope.svg","material-kabaddi":"material/kabaddi.svg","material-kangaroo":"material/kangaroo.svg","material-karate":"material/karate.svg","material-kayaking":"material/kayaking.svg","material-keg":"material/keg.svg","material-kettle-alert-outline":"material/kettle-alert-outline.svg","material-kettle-alert":"material/kettle-alert.svg","material-kettle-off-outline":"material/kettle-off-outline.svg","material-kettle-off":"material/kettle-off.svg","material-kettle-outline":"material/kettle-outline.svg","material-kettle-pour-over":"material/kettle-pour-over.svg","material-kettle-steam-outline":"material/kettle-steam-outline.svg","material-kettle-steam":"material/kettle-steam.svg","material-kettle":"material/kettle.svg","material-kettlebell":"material/kettlebell.svg","material-key-alert-outline":"material/key-alert-outline.svg","material-key-alert":"material/key-alert.svg","material-key-arrow-right":"material/key-arrow-right.svg","material-key-chain-variant":"material/key-chain-variant.svg","material-key-chain":"material/key-chain.svg","material-key-change":"material/key-change.svg","material-key-link":"material/key-link.svg","material-key-minus":"material/key-minus.svg","material-key-outline":"material/key-outline.svg","material-key-plus":"material/key-plus.svg","material-key-remove":"material/key-remove.svg","material-key-star":"material/key-star.svg","material-key-variant":"material/key-variant.svg","material-key-wireless":"material/key-wireless.svg","material-key":"material/key.svg","material-keyboard-backspace":"material/keyboard-backspace.svg","material-keyboard-caps":"material/keyboard-caps.svg","material-keyboard-close-outline":"material/keyboard-close-outline.svg","material-keyboard-close":"material/keyboard-close.svg","material-keyboard-esc":"material/keyboard-esc.svg","material-keyboard-f1":"material/keyboard-f1.svg","material-keyboard-f10":"material/keyboard-f10.svg","material-keyboard-f11":"material/keyboard-f11.svg","material-keyboard-f12":"material/keyboard-f12.svg","material-keyboard-f2":"material/keyboard-f2.svg","material-keyboard-f3":"material/keyboard-f3.svg","material-keyboard-f4":"material/keyboard-f4.svg","material-keyboard-f5":"material/keyboard-f5.svg","material-keyboard-f6":"material/keyboard-f6.svg","material-keyboard-f7":"material/keyboard-f7.svg","material-keyboard-f8":"material/keyboard-f8.svg","material-keyboard-f9":"material/keyboard-f9.svg","material-keyboard-off-outline":"material/keyboard-off-outline.svg","material-keyboard-off":"material/keyboard-off.svg","material-keyboard-outline":"material/keyboard-outline.svg","material-keyboard-return":"material/keyboard-return.svg","material-keyboard-settings-outline":"material/keyboard-settings-outline.svg","material-keyboard-settings":"material/keyboard-settings.svg","material-keyboard-space":"material/keyboard-space.svg","material-keyboard-tab-reverse":"material/keyboard-tab-reverse.svg","material-keyboard-tab":"material/keyboard-tab.svg","material-keyboard-variant":"material/keyboard-variant.svg","material-keyboard":"material/keyboard.svg","material-khanda":"material/khanda.svg","material-kickstarter":"material/kickstarter.svg","material-kite-outline":"material/kite-outline.svg","material-kite":"material/kite.svg","material-kitesurfing":"material/kitesurfing.svg","material-klingon":"material/klingon.svg","material-knife-military":"material/knife-military.svg","material-knife":"material/knife.svg","material-knob":"material/knob.svg","material-koala":"material/koala.svg","material-kodi":"material/kodi.svg","material-kubernetes":"material/kubernetes.svg","material-label-multiple-outline":"material/label-multiple-outline.svg","material-label-multiple":"material/label-multiple.svg","material-label-off-outline":"material/label-off-outline.svg","material-label-off":"material/label-off.svg","material-label-outline":"material/label-outline.svg","material-label-percent-outline":"material/label-percent-outline.svg","material-label-percent":"material/label-percent.svg","material-label-variant-outline":"material/label-variant-outline.svg","material-label-variant":"material/label-variant.svg","material-label":"material/label.svg","material-ladder":"material/ladder.svg","material-ladybug":"material/ladybug.svg","material-lambda":"material/lambda.svg","material-lamp-outline":"material/lamp-outline.svg","material-lamp":"material/lamp.svg","material-lamps-outline":"material/lamps-outline.svg","material-lamps":"material/lamps.svg","material-lan-check":"material/lan-check.svg","material-lan-connect":"material/lan-connect.svg","material-lan-disconnect":"material/lan-disconnect.svg","material-lan-pending":"material/lan-pending.svg","material-lan":"material/lan.svg","material-land-fields":"material/land-fields.svg","material-land-plots-circle-variant":"material/land-plots-circle-variant.svg","material-land-plots-circle":"material/land-plots-circle.svg","material-land-plots-marker":"material/land-plots-marker.svg","material-land-plots":"material/land-plots.svg","material-land-rows-horizontal":"material/land-rows-horizontal.svg","material-land-rows-vertical":"material/land-rows-vertical.svg","material-landslide-outline":"material/landslide-outline.svg","material-landslide":"material/landslide.svg","material-language-c":"material/language-c.svg","material-language-cpp":"material/language-cpp.svg","material-language-csharp":"material/language-csharp.svg","material-language-css3":"material/language-css3.svg","material-language-fortran":"material/language-fortran.svg","material-language-go":"material/language-go.svg","material-language-haskell":"material/language-haskell.svg","material-language-html5":"material/language-html5.svg","material-language-java":"material/language-java.svg","material-language-javascript":"material/language-javascript.svg","material-language-kotlin":"material/language-kotlin.svg","material-language-lua":"material/language-lua.svg","material-language-markdown-outline":"material/language-markdown-outline.svg","material-language-markdown":"material/language-markdown.svg","material-language-php":"material/language-php.svg","material-language-python":"material/language-python.svg","material-language-r":"material/language-r.svg","material-language-ruby-on-rails":"material/language-ruby-on-rails.svg","material-language-ruby":"material/language-ruby.svg","material-language-rust":"material/language-rust.svg","material-language-swift":"material/language-swift.svg","material-language-typescript":"material/language-typescript.svg","material-language-xaml":"material/language-xaml.svg","material-laptop-account":"material/laptop-account.svg","material-laptop-off":"material/laptop-off.svg","material-laptop":"material/laptop.svg","material-laravel":"material/laravel.svg","material-laser-pointer":"material/laser-pointer.svg","material-lasso":"material/lasso.svg","material-lastpass":"material/lastpass.svg","material-latitude":"material/latitude.svg","material-launch":"material/launch.svg","material-lava-lamp":"material/lava-lamp.svg","material-layers-edit":"material/layers-edit.svg","material-layers-minus":"material/layers-minus.svg","material-layers-off-outline":"material/layers-off-outline.svg","material-layers-off":"material/layers-off.svg","material-layers-outline":"material/layers-outline.svg","material-layers-plus":"material/layers-plus.svg","material-layers-remove":"material/layers-remove.svg","material-layers-search-outline":"material/layers-search-outline.svg","material-layers-search":"material/layers-search.svg","material-layers-triple-outline":"material/layers-triple-outline.svg","material-layers-triple":"material/layers-triple.svg","material-layers":"material/layers.svg","material-lead-pencil":"material/lead-pencil.svg","material-leaf-circle-outline":"material/leaf-circle-outline.svg","material-leaf-circle":"material/leaf-circle.svg","material-leaf-maple-off":"material/leaf-maple-off.svg","material-leaf-maple":"material/leaf-maple.svg","material-leaf-off":"material/leaf-off.svg","material-leaf":"material/leaf.svg","material-leak-off":"material/leak-off.svg","material-leak":"material/leak.svg","material-lectern":"material/lectern.svg","material-led-off":"material/led-off.svg","material-led-on":"material/led-on.svg","material-led-outline":"material/led-outline.svg","material-led-strip-variant-off":"material/led-strip-variant-off.svg","material-led-strip-variant":"material/led-strip-variant.svg","material-led-strip":"material/led-strip.svg","material-led-variant-off":"material/led-variant-off.svg","material-led-variant-on":"material/led-variant-on.svg","material-led-variant-outline":"material/led-variant-outline.svg","material-leek":"material/leek.svg","material-less-than-or-equal":"material/less-than-or-equal.svg","material-less-than":"material/less-than.svg","material-library-outline":"material/library-outline.svg","material-library-shelves":"material/library-shelves.svg","material-library":"material/library.svg","material-license":"material/license.svg","material-lifebuoy":"material/lifebuoy.svg","material-light-flood-down":"material/light-flood-down.svg","material-light-flood-up":"material/light-flood-up.svg","material-light-recessed":"material/light-recessed.svg","material-light-switch-off":"material/light-switch-off.svg","material-light-switch":"material/light-switch.svg","material-lightbulb-alert-outline":"material/lightbulb-alert-outline.svg","material-lightbulb-alert":"material/lightbulb-alert.svg","material-lightbulb-auto-outline":"material/lightbulb-auto-outline.svg","material-lightbulb-auto":"material/lightbulb-auto.svg","material-lightbulb-cfl-off":"material/lightbulb-cfl-off.svg","material-lightbulb-cfl-spiral-off":"material/lightbulb-cfl-spiral-off.svg","material-lightbulb-cfl-spiral":"material/lightbulb-cfl-spiral.svg","material-lightbulb-cfl":"material/lightbulb-cfl.svg","material-lightbulb-fluorescent-tube-outline":"material/lightbulb-fluorescent-tube-outline.svg","material-lightbulb-fluorescent-tube":"material/lightbulb-fluorescent-tube.svg","material-lightbulb-group-off-outline":"material/lightbulb-group-off-outline.svg","material-lightbulb-group-off":"material/lightbulb-group-off.svg","material-lightbulb-group-outline":"material/lightbulb-group-outline.svg","material-lightbulb-group":"material/lightbulb-group.svg","material-lightbulb-multiple-off-outline":"material/lightbulb-multiple-off-outline.svg","material-lightbulb-multiple-off":"material/lightbulb-multiple-off.svg","material-lightbulb-multiple-outline":"material/lightbulb-multiple-outline.svg","material-lightbulb-multiple":"material/lightbulb-multiple.svg","material-lightbulb-night-outline":"material/lightbulb-night-outline.svg","material-lightbulb-night":"material/lightbulb-night.svg","material-lightbulb-off-outline":"material/lightbulb-off-outline.svg","material-lightbulb-off":"material/lightbulb-off.svg","material-lightbulb-on-10":"material/lightbulb-on-10.svg","material-lightbulb-on-20":"material/lightbulb-on-20.svg","material-lightbulb-on-30":"material/lightbulb-on-30.svg","material-lightbulb-on-40":"material/lightbulb-on-40.svg","material-lightbulb-on-50":"material/lightbulb-on-50.svg","material-lightbulb-on-60":"material/lightbulb-on-60.svg","material-lightbulb-on-70":"material/lightbulb-on-70.svg","material-lightbulb-on-80":"material/lightbulb-on-80.svg","material-lightbulb-on-90":"material/lightbulb-on-90.svg","material-lightbulb-on-outline":"material/lightbulb-on-outline.svg","material-lightbulb-on":"material/lightbulb-on.svg","material-lightbulb-outline":"material/lightbulb-outline.svg","material-lightbulb-question-outline":"material/lightbulb-question-outline.svg","material-lightbulb-question":"material/lightbulb-question.svg","material-lightbulb-spot-off":"material/lightbulb-spot-off.svg","material-lightbulb-spot":"material/lightbulb-spot.svg","material-lightbulb-variant-outline":"material/lightbulb-variant-outline.svg","material-lightbulb-variant":"material/lightbulb-variant.svg","material-lightbulb":"material/lightbulb.svg","material-lighthouse-on":"material/lighthouse-on.svg","material-lighthouse":"material/lighthouse.svg","material-lightning-bolt-circle":"material/lightning-bolt-circle.svg","material-lightning-bolt-outline":"material/lightning-bolt-outline.svg","material-lightning-bolt":"material/lightning-bolt.svg","material-line-scan":"material/line-scan.svg","material-lingerie":"material/lingerie.svg","material-link-box-outline":"material/link-box-outline.svg","material-link-box-variant-outline":"material/link-box-variant-outline.svg","material-link-box-variant":"material/link-box-variant.svg","material-link-box":"material/link-box.svg","material-link-circle-outline":"material/link-circle-outline.svg","material-link-circle":"material/link-circle.svg","material-link-edit":"material/link-edit.svg","material-link-lock":"material/link-lock.svg","material-link-off":"material/link-off.svg","material-link-plus":"material/link-plus.svg","material-link-variant-minus":"material/link-variant-minus.svg","material-link-variant-off":"material/link-variant-off.svg","material-link-variant-plus":"material/link-variant-plus.svg","material-link-variant-remove":"material/link-variant-remove.svg","material-link-variant":"material/link-variant.svg","material-link":"material/link.svg","material-linkedin":"material/linkedin.svg","material-linux-mint":"material/linux-mint.svg","material-linux":"material/linux.svg","material-lipstick":"material/lipstick.svg","material-liquid-spot":"material/liquid-spot.svg","material-liquor":"material/liquor.svg","material-list-box-outline":"material/list-box-outline.svg","material-list-box":"material/list-box.svg","material-list-status":"material/list-status.svg","material-litecoin":"material/litecoin.svg","material-loading":"material/loading.svg","material-location-enter":"material/location-enter.svg","material-location-exit":"material/location-exit.svg","material-lock-alert-outline":"material/lock-alert-outline.svg","material-lock-alert":"material/lock-alert.svg","material-lock-check-outline":"material/lock-check-outline.svg","material-lock-check":"material/lock-check.svg","material-lock-clock":"material/lock-clock.svg","material-lock-minus-outline":"material/lock-minus-outline.svg","material-lock-minus":"material/lock-minus.svg","material-lock-off-outline":"material/lock-off-outline.svg","material-lock-off":"material/lock-off.svg","material-lock-open-alert-outline":"material/lock-open-alert-outline.svg","material-lock-open-alert":"material/lock-open-alert.svg","material-lock-open-check-outline":"material/lock-open-check-outline.svg","material-lock-open-check":"material/lock-open-check.svg","material-lock-open-minus-outline":"material/lock-open-minus-outline.svg","material-lock-open-minus":"material/lock-open-minus.svg","material-lock-open-outline":"material/lock-open-outline.svg","material-lock-open-plus-outline":"material/lock-open-plus-outline.svg","material-lock-open-plus":"material/lock-open-plus.svg","material-lock-open-remove-outline":"material/lock-open-remove-outline.svg","material-lock-open-remove":"material/lock-open-remove.svg","material-lock-open-variant-outline":"material/lock-open-variant-outline.svg","material-lock-open-variant":"material/lock-open-variant.svg","material-lock-open":"material/lock-open.svg","material-lock-outline":"material/lock-outline.svg","material-lock-pattern":"material/lock-pattern.svg","material-lock-percent-open-outline":"material/lock-percent-open-outline.svg","material-lock-percent-open-variant-outline":"material/lock-percent-open-variant-outline.svg","material-lock-percent-open-variant":"material/lock-percent-open-variant.svg","material-lock-percent-open":"material/lock-percent-open.svg","material-lock-percent-outline":"material/lock-percent-outline.svg","material-lock-percent":"material/lock-percent.svg","material-lock-plus-outline":"material/lock-plus-outline.svg","material-lock-plus":"material/lock-plus.svg","material-lock-question":"material/lock-question.svg","material-lock-remove-outline":"material/lock-remove-outline.svg","material-lock-remove":"material/lock-remove.svg","material-lock-reset":"material/lock-reset.svg","material-lock-smart":"material/lock-smart.svg","material-lock":"material/lock.svg","material-locker-multiple":"material/locker-multiple.svg","material-locker":"material/locker.svg","material-login-variant":"material/login-variant.svg","material-login":"material/login.svg","material-logout-variant":"material/logout-variant.svg","material-logout":"material/logout.svg","material-longitude":"material/longitude.svg","material-looks":"material/looks.svg","material-lotion-outline":"material/lotion-outline.svg","material-lotion-plus-outline":"material/lotion-plus-outline.svg","material-lotion-plus":"material/lotion-plus.svg","material-lotion":"material/lotion.svg","material-loupe":"material/loupe.svg","material-lumx":"material/lumx.svg","material-lungs":"material/lungs.svg","material-mace":"material/mace.svg","material-magazine-pistol":"material/magazine-pistol.svg","material-magazine-rifle":"material/magazine-rifle.svg","material-magic-staff":"material/magic-staff.svg","material-magnet-on":"material/magnet-on.svg","material-magnet":"material/magnet.svg","material-magnify-close":"material/magnify-close.svg","material-magnify-expand":"material/magnify-expand.svg","material-magnify-minus-cursor":"material/magnify-minus-cursor.svg","material-magnify-minus-outline":"material/magnify-minus-outline.svg","material-magnify-minus":"material/magnify-minus.svg","material-magnify-plus-cursor":"material/magnify-plus-cursor.svg","material-magnify-plus-outline":"material/magnify-plus-outline.svg","material-magnify-plus":"material/magnify-plus.svg","material-magnify-remove-cursor":"material/magnify-remove-cursor.svg","material-magnify-remove-outline":"material/magnify-remove-outline.svg","material-magnify-scan":"material/magnify-scan.svg","material-magnify":"material/magnify.svg","material-mail":"material/mail.svg","material-mailbox-open-outline":"material/mailbox-open-outline.svg","material-mailbox-open-up-outline":"material/mailbox-open-up-outline.svg","material-mailbox-open-up":"material/mailbox-open-up.svg","material-mailbox-open":"material/mailbox-open.svg","material-mailbox-outline":"material/mailbox-outline.svg","material-mailbox-up-outline":"material/mailbox-up-outline.svg","material-mailbox-up":"material/mailbox-up.svg","material-mailbox":"material/mailbox.svg","material-manjaro":"material/manjaro.svg","material-map-check-outline":"material/map-check-outline.svg","material-map-check":"material/map-check.svg","material-map-clock-outline":"material/map-clock-outline.svg","material-map-clock":"material/map-clock.svg","material-map-legend":"material/map-legend.svg","material-map-marker-account-outline":"material/map-marker-account-outline.svg","material-map-marker-account":"material/map-marker-account.svg","material-map-marker-alert-outline":"material/map-marker-alert-outline.svg","material-map-marker-alert":"material/map-marker-alert.svg","material-map-marker-check-outline":"material/map-marker-check-outline.svg","material-map-marker-check":"material/map-marker-check.svg","material-map-marker-circle":"material/map-marker-circle.svg","material-map-marker-distance":"material/map-marker-distance.svg","material-map-marker-down":"material/map-marker-down.svg","material-map-marker-left-outline":"material/map-marker-left-outline.svg","material-map-marker-left":"material/map-marker-left.svg","material-map-marker-minus-outline":"material/map-marker-minus-outline.svg","material-map-marker-minus":"material/map-marker-minus.svg","material-map-marker-multiple-outline":"material/map-marker-multiple-outline.svg","material-map-marker-multiple":"material/map-marker-multiple.svg","material-map-marker-off-outline":"material/map-marker-off-outline.svg","material-map-marker-off":"material/map-marker-off.svg","material-map-marker-outline":"material/map-marker-outline.svg","material-map-marker-path":"material/map-marker-path.svg","material-map-marker-plus-outline":"material/map-marker-plus-outline.svg","material-map-marker-plus":"material/map-marker-plus.svg","material-map-marker-question-outline":"material/map-marker-question-outline.svg","material-map-marker-question":"material/map-marker-question.svg","material-map-marker-radius-outline":"material/map-marker-radius-outline.svg","material-map-marker-radius":"material/map-marker-radius.svg","material-map-marker-remove-outline":"material/map-marker-remove-outline.svg","material-map-marker-remove-variant":"material/map-marker-remove-variant.svg","material-map-marker-remove":"material/map-marker-remove.svg","material-map-marker-right-outline":"material/map-marker-right-outline.svg","material-map-marker-right":"material/map-marker-right.svg","material-map-marker-star-outline":"material/map-marker-star-outline.svg","material-map-marker-star":"material/map-marker-star.svg","material-map-marker-up":"material/map-marker-up.svg","material-map-marker":"material/map-marker.svg","material-map-minus":"material/map-minus.svg","material-map-outline":"material/map-outline.svg","material-map-plus":"material/map-plus.svg","material-map-search-outline":"material/map-search-outline.svg","material-map-search":"material/map-search.svg","material-map":"material/map.svg","material-mapbox":"material/mapbox.svg","material-margin":"material/margin.svg","material-marker-cancel":"material/marker-cancel.svg","material-marker-check":"material/marker-check.svg","material-marker":"material/marker.svg","material-mastodon":"material/mastodon.svg","material-material-design":"material/material-design.svg","material-material-ui":"material/material-ui.svg","material-math-compass":"material/math-compass.svg","material-math-cos":"material/math-cos.svg","material-math-integral-box":"material/math-integral-box.svg","material-math-integral":"material/math-integral.svg","material-math-log":"material/math-log.svg","material-math-norm-box":"material/math-norm-box.svg","material-math-norm":"material/math-norm.svg","material-math-sin":"material/math-sin.svg","material-math-tan":"material/math-tan.svg","material-matrix":"material/matrix.svg","material-medal-outline":"material/medal-outline.svg","material-medal":"material/medal.svg","material-medical-bag":"material/medical-bag.svg","material-medical-cotton-swab":"material/medical-cotton-swab.svg","material-medication-outline":"material/medication-outline.svg","material-medication":"material/medication.svg","material-meditation":"material/meditation.svg","material-memory-arrow-down":"material/memory-arrow-down.svg","material-memory":"material/memory.svg","material-menorah-fire":"material/menorah-fire.svg","material-menorah":"material/menorah.svg","material-menu-close":"material/menu-close.svg","material-menu-down-outline":"material/menu-down-outline.svg","material-menu-down":"material/menu-down.svg","material-menu-left-outline":"material/menu-left-outline.svg","material-menu-left":"material/menu-left.svg","material-menu-open":"material/menu-open.svg","material-menu-right-outline":"material/menu-right-outline.svg","material-menu-right":"material/menu-right.svg","material-menu-swap-outline":"material/menu-swap-outline.svg","material-menu-swap":"material/menu-swap.svg","material-menu-up-outline":"material/menu-up-outline.svg","material-menu-up":"material/menu-up.svg","material-menu":"material/menu.svg","material-merge":"material/merge.svg","material-message-alert-outline":"material/message-alert-outline.svg","material-message-alert":"material/message-alert.svg","material-message-arrow-left-outline":"material/message-arrow-left-outline.svg","material-message-arrow-left":"material/message-arrow-left.svg","material-message-arrow-right-outline":"material/message-arrow-right-outline.svg","material-message-arrow-right":"material/message-arrow-right.svg","material-message-badge-outline":"material/message-badge-outline.svg","material-message-badge":"material/message-badge.svg","material-message-bookmark-outline":"material/message-bookmark-outline.svg","material-message-bookmark":"material/message-bookmark.svg","material-message-bulleted-off":"material/message-bulleted-off.svg","material-message-bulleted":"material/message-bulleted.svg","material-message-check-outline":"material/message-check-outline.svg","material-message-check":"material/message-check.svg","material-message-cog-outline":"material/message-cog-outline.svg","material-message-cog":"material/message-cog.svg","material-message-draw":"material/message-draw.svg","material-message-fast-outline":"material/message-fast-outline.svg","material-message-fast":"material/message-fast.svg","material-message-flash-outline":"material/message-flash-outline.svg","material-message-flash":"material/message-flash.svg","material-message-image-outline":"material/message-image-outline.svg","material-message-image":"material/message-image.svg","material-message-lock-outline":"material/message-lock-outline.svg","material-message-lock":"material/message-lock.svg","material-message-minus-outline":"material/message-minus-outline.svg","material-message-minus":"material/message-minus.svg","material-message-off-outline":"material/message-off-outline.svg","material-message-off":"material/message-off.svg","material-message-outline":"material/message-outline.svg","material-message-plus-outline":"material/message-plus-outline.svg","material-message-plus":"material/message-plus.svg","material-message-processing-outline":"material/message-processing-outline.svg","material-message-processing":"material/message-processing.svg","material-message-question-outline":"material/message-question-outline.svg","material-message-question":"material/message-question.svg","material-message-reply-outline":"material/message-reply-outline.svg","material-message-reply-text-outline":"material/message-reply-text-outline.svg","material-message-reply-text":"material/message-reply-text.svg","material-message-reply":"material/message-reply.svg","material-message-settings-outline":"material/message-settings-outline.svg","material-message-settings":"material/message-settings.svg","material-message-star-outline":"material/message-star-outline.svg","material-message-star":"material/message-star.svg","material-message-text-clock-outline":"material/message-text-clock-outline.svg","material-message-text-clock":"material/message-text-clock.svg","material-message-text-fast-outline":"material/message-text-fast-outline.svg","material-message-text-fast":"material/message-text-fast.svg","material-message-text-lock-outline":"material/message-text-lock-outline.svg","material-message-text-lock":"material/message-text-lock.svg","material-message-text-outline":"material/message-text-outline.svg","material-message-text":"material/message-text.svg","material-message-video":"material/message-video.svg","material-message":"material/message.svg","material-meteor":"material/meteor.svg","material-meter-electric-outline":"material/meter-electric-outline.svg","material-meter-electric":"material/meter-electric.svg","material-meter-gas-outline":"material/meter-gas-outline.svg","material-meter-gas":"material/meter-gas.svg","material-metronome-tick":"material/metronome-tick.svg","material-metronome":"material/metronome.svg","material-micro-sd":"material/micro-sd.svg","material-microphone-message-off":"material/microphone-message-off.svg","material-microphone-message":"material/microphone-message.svg","material-microphone-minus":"material/microphone-minus.svg","material-microphone-off":"material/microphone-off.svg","material-microphone-outline":"material/microphone-outline.svg","material-microphone-plus":"material/microphone-plus.svg","material-microphone-question-outline":"material/microphone-question-outline.svg","material-microphone-question":"material/microphone-question.svg","material-microphone-settings":"material/microphone-settings.svg","material-microphone-variant-off":"material/microphone-variant-off.svg","material-microphone-variant":"material/microphone-variant.svg","material-microphone":"material/microphone.svg","material-microscope":"material/microscope.svg","material-microsoft-access":"material/microsoft-access.svg","material-microsoft-azure-devops":"material/microsoft-azure-devops.svg","material-microsoft-azure":"material/microsoft-azure.svg","material-microsoft-bing":"material/microsoft-bing.svg","material-microsoft-dynamics-365":"material/microsoft-dynamics-365.svg","material-microsoft-edge":"material/microsoft-edge.svg","material-microsoft-excel":"material/microsoft-excel.svg","material-microsoft-internet-explorer":"material/microsoft-internet-explorer.svg","material-microsoft-office":"material/microsoft-office.svg","material-microsoft-onedrive":"material/microsoft-onedrive.svg","material-microsoft-onenote":"material/microsoft-onenote.svg","material-microsoft-outlook":"material/microsoft-outlook.svg","material-microsoft-powerpoint":"material/microsoft-powerpoint.svg","material-microsoft-sharepoint":"material/microsoft-sharepoint.svg","material-microsoft-teams":"material/microsoft-teams.svg","material-microsoft-visual-studio-code":"material/microsoft-visual-studio-code.svg","material-microsoft-visual-studio":"material/microsoft-visual-studio.svg","material-microsoft-windows-classic":"material/microsoft-windows-classic.svg","material-microsoft-windows":"material/microsoft-windows.svg","material-microsoft-word":"material/microsoft-word.svg","material-microsoft-xbox-controller-battery-alert":"material/microsoft-xbox-controller-battery-alert.svg","material-microsoft-xbox-controller-battery-charging":"material/microsoft-xbox-controller-battery-charging.svg","material-microsoft-xbox-controller-battery-empty":"material/microsoft-xbox-controller-battery-empty.svg","material-microsoft-xbox-controller-battery-full":"material/microsoft-xbox-controller-battery-full.svg","material-microsoft-xbox-controller-battery-low":"material/microsoft-xbox-controller-battery-low.svg","material-microsoft-xbox-controller-battery-medium":"material/microsoft-xbox-controller-battery-medium.svg","material-microsoft-xbox-controller-battery-unknown":"material/microsoft-xbox-controller-battery-unknown.svg","material-microsoft-xbox-controller-menu":"material/microsoft-xbox-controller-menu.svg","material-microsoft-xbox-controller-off":"material/microsoft-xbox-controller-off.svg","material-microsoft-xbox-controller-view":"material/microsoft-xbox-controller-view.svg","material-microsoft-xbox-controller":"material/microsoft-xbox-controller.svg","material-microsoft-xbox":"material/microsoft-xbox.svg","material-microsoft":"material/microsoft.svg","material-microwave-off":"material/microwave-off.svg","material-microwave":"material/microwave.svg","material-middleware-outline":"material/middleware-outline.svg","material-middleware":"material/middleware.svg","material-midi-port":"material/midi-port.svg","material-midi":"material/midi.svg","material-mine":"material/mine.svg","material-minecraft":"material/minecraft.svg","material-mini-sd":"material/mini-sd.svg","material-minidisc":"material/minidisc.svg","material-minus-box-multiple-outline":"material/minus-box-multiple-outline.svg","material-minus-box-multiple":"material/minus-box-multiple.svg","material-minus-box-outline":"material/minus-box-outline.svg","material-minus-box":"material/minus-box.svg","material-minus-circle-multiple-outline":"material/minus-circle-multiple-outline.svg","material-minus-circle-multiple":"material/minus-circle-multiple.svg","material-minus-circle-off-outline":"material/minus-circle-off-outline.svg","material-minus-circle-off":"material/minus-circle-off.svg","material-minus-circle-outline":"material/minus-circle-outline.svg","material-minus-circle":"material/minus-circle.svg","material-minus-network-outline":"material/minus-network-outline.svg","material-minus-network":"material/minus-network.svg","material-minus-thick":"material/minus-thick.svg","material-minus":"material/minus.svg","material-mirror-rectangle":"material/mirror-rectangle.svg","material-mirror-variant":"material/mirror-variant.svg","material-mirror":"material/mirror.svg","material-mixed-martial-arts":"material/mixed-martial-arts.svg","material-mixed-reality":"material/mixed-reality.svg","material-molecule-co":"material/molecule-co.svg","material-molecule-co2":"material/molecule-co2.svg","material-molecule":"material/molecule.svg","material-monitor-account":"material/monitor-account.svg","material-monitor-arrow-down-variant":"material/monitor-arrow-down-variant.svg","material-monitor-arrow-down":"material/monitor-arrow-down.svg","material-monitor-cellphone-star":"material/monitor-cellphone-star.svg","material-monitor-cellphone":"material/monitor-cellphone.svg","material-monitor-dashboard":"material/monitor-dashboard.svg","material-monitor-edit":"material/monitor-edit.svg","material-monitor-eye":"material/monitor-eye.svg","material-monitor-lock":"material/monitor-lock.svg","material-monitor-multiple":"material/monitor-multiple.svg","material-monitor-off":"material/monitor-off.svg","material-monitor-screenshot":"material/monitor-screenshot.svg","material-monitor-share":"material/monitor-share.svg","material-monitor-shimmer":"material/monitor-shimmer.svg","material-monitor-small":"material/monitor-small.svg","material-monitor-speaker-off":"material/monitor-speaker-off.svg","material-monitor-speaker":"material/monitor-speaker.svg","material-monitor-star":"material/monitor-star.svg","material-monitor-vertical":"material/monitor-vertical.svg","material-monitor":"material/monitor.svg","material-moon-first-quarter":"material/moon-first-quarter.svg","material-moon-full":"material/moon-full.svg","material-moon-last-quarter":"material/moon-last-quarter.svg","material-moon-new":"material/moon-new.svg","material-moon-waning-crescent":"material/moon-waning-crescent.svg","material-moon-waning-gibbous":"material/moon-waning-gibbous.svg","material-moon-waxing-crescent":"material/moon-waxing-crescent.svg","material-moon-waxing-gibbous":"material/moon-waxing-gibbous.svg","material-moped-electric-outline":"material/moped-electric-outline.svg","material-moped-electric":"material/moped-electric.svg","material-moped-outline":"material/moped-outline.svg","material-moped":"material/moped.svg","material-more":"material/more.svg","material-mortar-pestle-plus":"material/mortar-pestle-plus.svg","material-mortar-pestle":"material/mortar-pestle.svg","material-mosque-outline":"material/mosque-outline.svg","material-mosque":"material/mosque.svg","material-mother-heart":"material/mother-heart.svg","material-mother-nurse":"material/mother-nurse.svg","material-motion-outline":"material/motion-outline.svg","material-motion-pause-outline":"material/motion-pause-outline.svg","material-motion-pause":"material/motion-pause.svg","material-motion-play-outline":"material/motion-play-outline.svg","material-motion-play":"material/motion-play.svg","material-motion-sensor-off":"material/motion-sensor-off.svg","material-motion-sensor":"material/motion-sensor.svg","material-motion":"material/motion.svg","material-motorbike-electric":"material/motorbike-electric.svg","material-motorbike-off":"material/motorbike-off.svg","material-motorbike":"material/motorbike.svg","material-mouse-bluetooth":"material/mouse-bluetooth.svg","material-mouse-left-click-outline":"material/mouse-left-click-outline.svg","material-mouse-left-click":"material/mouse-left-click.svg","material-mouse-move-down":"material/mouse-move-down.svg","material-mouse-move-up":"material/mouse-move-up.svg","material-mouse-move-vertical":"material/mouse-move-vertical.svg","material-mouse-off":"material/mouse-off.svg","material-mouse-outline":"material/mouse-outline.svg","material-mouse-right-click-outline":"material/mouse-right-click-outline.svg","material-mouse-right-click":"material/mouse-right-click.svg","material-mouse-scroll-wheel":"material/mouse-scroll-wheel.svg","material-mouse-variant-off":"material/mouse-variant-off.svg","material-mouse-variant":"material/mouse-variant.svg","material-mouse":"material/mouse.svg","material-move-resize-variant":"material/move-resize-variant.svg","material-move-resize":"material/move-resize.svg","material-movie-check-outline":"material/movie-check-outline.svg","material-movie-check":"material/movie-check.svg","material-movie-cog-outline":"material/movie-cog-outline.svg","material-movie-cog":"material/movie-cog.svg","material-movie-edit-outline":"material/movie-edit-outline.svg","material-movie-edit":"material/movie-edit.svg","material-movie-filter-outline":"material/movie-filter-outline.svg","material-movie-filter":"material/movie-filter.svg","material-movie-minus-outline":"material/movie-minus-outline.svg","material-movie-minus":"material/movie-minus.svg","material-movie-off-outline":"material/movie-off-outline.svg","material-movie-off":"material/movie-off.svg","material-movie-open-check-outline":"material/movie-open-check-outline.svg","material-movie-open-check":"material/movie-open-check.svg","material-movie-open-cog-outline":"material/movie-open-cog-outline.svg","material-movie-open-cog":"material/movie-open-cog.svg","material-movie-open-edit-outline":"material/movie-open-edit-outline.svg","material-movie-open-edit":"material/movie-open-edit.svg","material-movie-open-minus-outline":"material/movie-open-minus-outline.svg","material-movie-open-minus":"material/movie-open-minus.svg","material-movie-open-off-outline":"material/movie-open-off-outline.svg","material-movie-open-off":"material/movie-open-off.svg","material-movie-open-outline":"material/movie-open-outline.svg","material-movie-open-play-outline":"material/movie-open-play-outline.svg","material-movie-open-play":"material/movie-open-play.svg","material-movie-open-plus-outline":"material/movie-open-plus-outline.svg","material-movie-open-plus":"material/movie-open-plus.svg","material-movie-open-remove-outline":"material/movie-open-remove-outline.svg","material-movie-open-remove":"material/movie-open-remove.svg","material-movie-open-settings-outline":"material/movie-open-settings-outline.svg","material-movie-open-settings":"material/movie-open-settings.svg","material-movie-open-star-outline":"material/movie-open-star-outline.svg","material-movie-open-star":"material/movie-open-star.svg","material-movie-open":"material/movie-open.svg","material-movie-outline":"material/movie-outline.svg","material-movie-play-outline":"material/movie-play-outline.svg","material-movie-play":"material/movie-play.svg","material-movie-plus-outline":"material/movie-plus-outline.svg","material-movie-plus":"material/movie-plus.svg","material-movie-remove-outline":"material/movie-remove-outline.svg","material-movie-remove":"material/movie-remove.svg","material-movie-roll":"material/movie-roll.svg","material-movie-search-outline":"material/movie-search-outline.svg","material-movie-search":"material/movie-search.svg","material-movie-settings-outline":"material/movie-settings-outline.svg","material-movie-settings":"material/movie-settings.svg","material-movie-star-outline":"material/movie-star-outline.svg","material-movie-star":"material/movie-star.svg","material-movie":"material/movie.svg","material-mower-bag-on":"material/mower-bag-on.svg","material-mower-bag":"material/mower-bag.svg","material-mower-on":"material/mower-on.svg","material-mower":"material/mower.svg","material-muffin":"material/muffin.svg","material-multicast":"material/multicast.svg","material-multimedia":"material/multimedia.svg","material-multiplication-box":"material/multiplication-box.svg","material-multiplication":"material/multiplication.svg","material-mushroom-off-outline":"material/mushroom-off-outline.svg","material-mushroom-off":"material/mushroom-off.svg","material-mushroom-outline":"material/mushroom-outline.svg","material-mushroom":"material/mushroom.svg","material-music-accidental-double-flat":"material/music-accidental-double-flat.svg","material-music-accidental-double-sharp":"material/music-accidental-double-sharp.svg","material-music-accidental-flat":"material/music-accidental-flat.svg","material-music-accidental-natural":"material/music-accidental-natural.svg","material-music-accidental-sharp":"material/music-accidental-sharp.svg","material-music-box-multiple-outline":"material/music-box-multiple-outline.svg","material-music-box-multiple":"material/music-box-multiple.svg","material-music-box-outline":"material/music-box-outline.svg","material-music-box":"material/music-box.svg","material-music-circle-outline":"material/music-circle-outline.svg","material-music-circle":"material/music-circle.svg","material-music-clef-alto":"material/music-clef-alto.svg","material-music-clef-bass":"material/music-clef-bass.svg","material-music-clef-treble":"material/music-clef-treble.svg","material-music-note-bluetooth-off":"material/music-note-bluetooth-off.svg","material-music-note-bluetooth":"material/music-note-bluetooth.svg","material-music-note-eighth-dotted":"material/music-note-eighth-dotted.svg","material-music-note-eighth":"material/music-note-eighth.svg","material-music-note-half-dotted":"material/music-note-half-dotted.svg","material-music-note-half":"material/music-note-half.svg","material-music-note-minus":"material/music-note-minus.svg","material-music-note-off-outline":"material/music-note-off-outline.svg","material-music-note-off":"material/music-note-off.svg","material-music-note-outline":"material/music-note-outline.svg","material-music-note-plus":"material/music-note-plus.svg","material-music-note-quarter-dotted":"material/music-note-quarter-dotted.svg","material-music-note-quarter":"material/music-note-quarter.svg","material-music-note-sixteenth-dotted":"material/music-note-sixteenth-dotted.svg","material-music-note-sixteenth":"material/music-note-sixteenth.svg","material-music-note-whole-dotted":"material/music-note-whole-dotted.svg","material-music-note-whole":"material/music-note-whole.svg","material-music-note":"material/music-note.svg","material-music-off":"material/music-off.svg","material-music-rest-eighth":"material/music-rest-eighth.svg","material-music-rest-half":"material/music-rest-half.svg","material-music-rest-quarter":"material/music-rest-quarter.svg","material-music-rest-sixteenth":"material/music-rest-sixteenth.svg","material-music-rest-whole":"material/music-rest-whole.svg","material-music":"material/music.svg","material-mustache":"material/mustache.svg","material-nail":"material/nail.svg","material-nas":"material/nas.svg","material-nativescript":"material/nativescript.svg","material-nature-outline":"material/nature-outline.svg","material-nature-people-outline":"material/nature-people-outline.svg","material-nature-people":"material/nature-people.svg","material-nature":"material/nature.svg","material-navigation-outline":"material/navigation-outline.svg","material-navigation-variant-outline":"material/navigation-variant-outline.svg","material-navigation-variant":"material/navigation-variant.svg","material-navigation":"material/navigation.svg","material-near-me":"material/near-me.svg","material-necklace":"material/necklace.svg","material-needle-off":"material/needle-off.svg","material-needle":"material/needle.svg","material-netflix":"material/netflix.svg","material-network-off-outline":"material/network-off-outline.svg","material-network-off":"material/network-off.svg","material-network-outline":"material/network-outline.svg","material-network-pos":"material/network-pos.svg","material-network-strength-1-alert":"material/network-strength-1-alert.svg","material-network-strength-1":"material/network-strength-1.svg","material-network-strength-2-alert":"material/network-strength-2-alert.svg","material-network-strength-2":"material/network-strength-2.svg","material-network-strength-3-alert":"material/network-strength-3-alert.svg","material-network-strength-3":"material/network-strength-3.svg","material-network-strength-4-alert":"material/network-strength-4-alert.svg","material-network-strength-4-cog":"material/network-strength-4-cog.svg","material-network-strength-4":"material/network-strength-4.svg","material-network-strength-off-outline":"material/network-strength-off-outline.svg","material-network-strength-off":"material/network-strength-off.svg","material-network-strength-outline":"material/network-strength-outline.svg","material-network":"material/network.svg","material-new-box":"material/new-box.svg","material-newspaper-check":"material/newspaper-check.svg","material-newspaper-minus":"material/newspaper-minus.svg","material-newspaper-plus":"material/newspaper-plus.svg","material-newspaper-remove":"material/newspaper-remove.svg","material-newspaper-variant-multiple-outline":"material/newspaper-variant-multiple-outline.svg","material-newspaper-variant-multiple":"material/newspaper-variant-multiple.svg","material-newspaper-variant-outline":"material/newspaper-variant-outline.svg","material-newspaper-variant":"material/newspaper-variant.svg","material-newspaper":"material/newspaper.svg","material-nfc-search-variant":"material/nfc-search-variant.svg","material-nfc-tap":"material/nfc-tap.svg","material-nfc-variant-off":"material/nfc-variant-off.svg","material-nfc-variant":"material/nfc-variant.svg","material-nfc":"material/nfc.svg","material-ninja":"material/ninja.svg","material-nintendo-game-boy":"material/nintendo-game-boy.svg","material-nintendo-switch":"material/nintendo-switch.svg","material-nintendo-wii":"material/nintendo-wii.svg","material-nintendo-wiiu":"material/nintendo-wiiu.svg","material-nix":"material/nix.svg","material-nodejs":"material/nodejs.svg","material-noodles":"material/noodles.svg","material-not-equal-variant":"material/not-equal-variant.svg","material-not-equal":"material/not-equal.svg","material-note-alert-outline":"material/note-alert-outline.svg","material-note-alert":"material/note-alert.svg","material-note-check-outline":"material/note-check-outline.svg","material-note-check":"material/note-check.svg","material-note-edit-outline":"material/note-edit-outline.svg","material-note-edit":"material/note-edit.svg","material-note-minus-outline":"material/note-minus-outline.svg","material-note-minus":"material/note-minus.svg","material-note-multiple-outline":"material/note-multiple-outline.svg","material-note-multiple":"material/note-multiple.svg","material-note-off-outline":"material/note-off-outline.svg","material-note-off":"material/note-off.svg","material-note-outline":"material/note-outline.svg","material-note-plus-outline":"material/note-plus-outline.svg","material-note-plus":"material/note-plus.svg","material-note-remove-outline":"material/note-remove-outline.svg","material-note-remove":"material/note-remove.svg","material-note-search-outline":"material/note-search-outline.svg","material-note-search":"material/note-search.svg","material-note-text-outline":"material/note-text-outline.svg","material-note-text":"material/note-text.svg","material-note":"material/note.svg","material-notebook-check-outline":"material/notebook-check-outline.svg","material-notebook-check":"material/notebook-check.svg","material-notebook-edit-outline":"material/notebook-edit-outline.svg","material-notebook-edit":"material/notebook-edit.svg","material-notebook-heart-outline":"material/notebook-heart-outline.svg","material-notebook-heart":"material/notebook-heart.svg","material-notebook-minus-outline":"material/notebook-minus-outline.svg","material-notebook-minus":"material/notebook-minus.svg","material-notebook-multiple":"material/notebook-multiple.svg","material-notebook-outline":"material/notebook-outline.svg","material-notebook-plus-outline":"material/notebook-plus-outline.svg","material-notebook-plus":"material/notebook-plus.svg","material-notebook-remove-outline":"material/notebook-remove-outline.svg","material-notebook-remove":"material/notebook-remove.svg","material-notebook":"material/notebook.svg","material-notification-clear-all":"material/notification-clear-all.svg","material-npm":"material/npm.svg","material-nuke":"material/nuke.svg","material-null":"material/null.svg","material-numeric-0-box-multiple-outline":"material/numeric-0-box-multiple-outline.svg","material-numeric-0-box-multiple":"material/numeric-0-box-multiple.svg","material-numeric-0-box-outline":"material/numeric-0-box-outline.svg","material-numeric-0-box":"material/numeric-0-box.svg","material-numeric-0-circle-outline":"material/numeric-0-circle-outline.svg","material-numeric-0-circle":"material/numeric-0-circle.svg","material-numeric-0":"material/numeric-0.svg","material-numeric-1-box-multiple-outline":"material/numeric-1-box-multiple-outline.svg","material-numeric-1-box-multiple":"material/numeric-1-box-multiple.svg","material-numeric-1-box-outline":"material/numeric-1-box-outline.svg","material-numeric-1-box":"material/numeric-1-box.svg","material-numeric-1-circle-outline":"material/numeric-1-circle-outline.svg","material-numeric-1-circle":"material/numeric-1-circle.svg","material-numeric-1":"material/numeric-1.svg","material-numeric-10-box-multiple-outline":"material/numeric-10-box-multiple-outline.svg","material-numeric-10-box-multiple":"material/numeric-10-box-multiple.svg","material-numeric-10-box-outline":"material/numeric-10-box-outline.svg","material-numeric-10-box":"material/numeric-10-box.svg","material-numeric-10-circle-outline":"material/numeric-10-circle-outline.svg","material-numeric-10-circle":"material/numeric-10-circle.svg","material-numeric-10":"material/numeric-10.svg","material-numeric-2-box-multiple-outline":"material/numeric-2-box-multiple-outline.svg","material-numeric-2-box-multiple":"material/numeric-2-box-multiple.svg","material-numeric-2-box-outline":"material/numeric-2-box-outline.svg","material-numeric-2-box":"material/numeric-2-box.svg","material-numeric-2-circle-outline":"material/numeric-2-circle-outline.svg","material-numeric-2-circle":"material/numeric-2-circle.svg","material-numeric-2":"material/numeric-2.svg","material-numeric-3-box-multiple-outline":"material/numeric-3-box-multiple-outline.svg","material-numeric-3-box-multiple":"material/numeric-3-box-multiple.svg","material-numeric-3-box-outline":"material/numeric-3-box-outline.svg","material-numeric-3-box":"material/numeric-3-box.svg","material-numeric-3-circle-outline":"material/numeric-3-circle-outline.svg","material-numeric-3-circle":"material/numeric-3-circle.svg","material-numeric-3":"material/numeric-3.svg","material-numeric-4-box-multiple-outline":"material/numeric-4-box-multiple-outline.svg","material-numeric-4-box-multiple":"material/numeric-4-box-multiple.svg","material-numeric-4-box-outline":"material/numeric-4-box-outline.svg","material-numeric-4-box":"material/numeric-4-box.svg","material-numeric-4-circle-outline":"material/numeric-4-circle-outline.svg","material-numeric-4-circle":"material/numeric-4-circle.svg","material-numeric-4":"material/numeric-4.svg","material-numeric-5-box-multiple-outline":"material/numeric-5-box-multiple-outline.svg","material-numeric-5-box-multiple":"material/numeric-5-box-multiple.svg","material-numeric-5-box-outline":"material/numeric-5-box-outline.svg","material-numeric-5-box":"material/numeric-5-box.svg","material-numeric-5-circle-outline":"material/numeric-5-circle-outline.svg","material-numeric-5-circle":"material/numeric-5-circle.svg","material-numeric-5":"material/numeric-5.svg","material-numeric-6-box-multiple-outline":"material/numeric-6-box-multiple-outline.svg","material-numeric-6-box-multiple":"material/numeric-6-box-multiple.svg","material-numeric-6-box-outline":"material/numeric-6-box-outline.svg","material-numeric-6-box":"material/numeric-6-box.svg","material-numeric-6-circle-outline":"material/numeric-6-circle-outline.svg","material-numeric-6-circle":"material/numeric-6-circle.svg","material-numeric-6":"material/numeric-6.svg","material-numeric-7-box-multiple-outline":"material/numeric-7-box-multiple-outline.svg","material-numeric-7-box-multiple":"material/numeric-7-box-multiple.svg","material-numeric-7-box-outline":"material/numeric-7-box-outline.svg","material-numeric-7-box":"material/numeric-7-box.svg","material-numeric-7-circle-outline":"material/numeric-7-circle-outline.svg","material-numeric-7-circle":"material/numeric-7-circle.svg","material-numeric-7":"material/numeric-7.svg","material-numeric-8-box-multiple-outline":"material/numeric-8-box-multiple-outline.svg","material-numeric-8-box-multiple":"material/numeric-8-box-multiple.svg","material-numeric-8-box-outline":"material/numeric-8-box-outline.svg","material-numeric-8-box":"material/numeric-8-box.svg","material-numeric-8-circle-outline":"material/numeric-8-circle-outline.svg","material-numeric-8-circle":"material/numeric-8-circle.svg","material-numeric-8":"material/numeric-8.svg","material-numeric-9-box-multiple-outline":"material/numeric-9-box-multiple-outline.svg","material-numeric-9-box-multiple":"material/numeric-9-box-multiple.svg","material-numeric-9-box-outline":"material/numeric-9-box-outline.svg","material-numeric-9-box":"material/numeric-9-box.svg","material-numeric-9-circle-outline":"material/numeric-9-circle-outline.svg","material-numeric-9-circle":"material/numeric-9-circle.svg","material-numeric-9-plus-box-multiple-outline":"material/numeric-9-plus-box-multiple-outline.svg","material-numeric-9-plus-box-multiple":"material/numeric-9-plus-box-multiple.svg","material-numeric-9-plus-box-outline":"material/numeric-9-plus-box-outline.svg","material-numeric-9-plus-box":"material/numeric-9-plus-box.svg","material-numeric-9-plus-circle-outline":"material/numeric-9-plus-circle-outline.svg","material-numeric-9-plus-circle":"material/numeric-9-plus-circle.svg","material-numeric-9-plus":"material/numeric-9-plus.svg","material-numeric-9":"material/numeric-9.svg","material-numeric-negative-1":"material/numeric-negative-1.svg","material-numeric-off":"material/numeric-off.svg","material-numeric-positive-1":"material/numeric-positive-1.svg","material-numeric":"material/numeric.svg","material-nut":"material/nut.svg","material-nutrition":"material/nutrition.svg","material-nuxt":"material/nuxt.svg","material-oar":"material/oar.svg","material-ocarina":"material/ocarina.svg","material-oci":"material/oci.svg","material-ocr":"material/ocr.svg","material-octagon-outline":"material/octagon-outline.svg","material-octagon":"material/octagon.svg","material-octagram-edit-outline":"material/octagram-edit-outline.svg","material-octagram-edit":"material/octagram-edit.svg","material-octagram-minus-outline":"material/octagram-minus-outline.svg","material-octagram-minus":"material/octagram-minus.svg","material-octagram-outline":"material/octagram-outline.svg","material-octagram-plus-outline":"material/octagram-plus-outline.svg","material-octagram-plus":"material/octagram-plus.svg","material-octagram":"material/octagram.svg","material-octahedron-off":"material/octahedron-off.svg","material-octahedron":"material/octahedron.svg","material-odnoklassniki":"material/odnoklassniki.svg","material-offer":"material/offer.svg","material-office-building-cog-outline":"material/office-building-cog-outline.svg","material-office-building-cog":"material/office-building-cog.svg","material-office-building-marker-outline":"material/office-building-marker-outline.svg","material-office-building-marker":"material/office-building-marker.svg","material-office-building-minus-outline":"material/office-building-minus-outline.svg","material-office-building-minus":"material/office-building-minus.svg","material-office-building-outline":"material/office-building-outline.svg","material-office-building-plus-outline":"material/office-building-plus-outline.svg","material-office-building-plus":"material/office-building-plus.svg","material-office-building-remove-outline":"material/office-building-remove-outline.svg","material-office-building-remove":"material/office-building-remove.svg","material-office-building":"material/office-building.svg","material-oil-lamp":"material/oil-lamp.svg","material-oil-level":"material/oil-level.svg","material-oil-temperature":"material/oil-temperature.svg","material-oil":"material/oil.svg","material-om":"material/om.svg","material-omega":"material/omega.svg","material-one-up":"material/one-up.svg","material-onepassword":"material/onepassword.svg","material-opacity":"material/opacity.svg","material-open-in-app":"material/open-in-app.svg","material-open-in-new":"material/open-in-new.svg","material-open-source-initiative":"material/open-source-initiative.svg","material-openid":"material/openid.svg","material-opera":"material/opera.svg","material-orbit-variant":"material/orbit-variant.svg","material-orbit":"material/orbit.svg","material-order-alphabetical-ascending":"material/order-alphabetical-ascending.svg","material-order-alphabetical-descending":"material/order-alphabetical-descending.svg","material-order-bool-ascending-variant":"material/order-bool-ascending-variant.svg","material-order-bool-ascending":"material/order-bool-ascending.svg","material-order-bool-descending-variant":"material/order-bool-descending-variant.svg","material-order-bool-descending":"material/order-bool-descending.svg","material-order-numeric-ascending":"material/order-numeric-ascending.svg","material-order-numeric-descending":"material/order-numeric-descending.svg","material-origin":"material/origin.svg","material-ornament-variant":"material/ornament-variant.svg","material-ornament":"material/ornament.svg","material-outdoor-lamp":"material/outdoor-lamp.svg","material-overscan":"material/overscan.svg","material-owl":"material/owl.svg","material-pac-man":"material/pac-man.svg","material-package-check":"material/package-check.svg","material-package-down":"material/package-down.svg","material-package-up":"material/package-up.svg","material-package-variant-closed-check":"material/package-variant-closed-check.svg","material-package-variant-closed-minus":"material/package-variant-closed-minus.svg","material-package-variant-closed-plus":"material/package-variant-closed-plus.svg","material-package-variant-closed-remove":"material/package-variant-closed-remove.svg","material-package-variant-closed":"material/package-variant-closed.svg","material-package-variant-minus":"material/package-variant-minus.svg","material-package-variant-plus":"material/package-variant-plus.svg","material-package-variant-remove":"material/package-variant-remove.svg","material-package-variant":"material/package-variant.svg","material-package":"material/package.svg","material-page-first":"material/page-first.svg","material-page-last":"material/page-last.svg","material-page-layout-body":"material/page-layout-body.svg","material-page-layout-footer":"material/page-layout-footer.svg","material-page-layout-header-footer":"material/page-layout-header-footer.svg","material-page-layout-header":"material/page-layout-header.svg","material-page-layout-sidebar-left":"material/page-layout-sidebar-left.svg","material-page-layout-sidebar-right":"material/page-layout-sidebar-right.svg","material-page-next-outline":"material/page-next-outline.svg","material-page-next":"material/page-next.svg","material-page-previous-outline":"material/page-previous-outline.svg","material-page-previous":"material/page-previous.svg","material-pail-minus-outline":"material/pail-minus-outline.svg","material-pail-minus":"material/pail-minus.svg","material-pail-off-outline":"material/pail-off-outline.svg","material-pail-off":"material/pail-off.svg","material-pail-outline":"material/pail-outline.svg","material-pail-plus-outline":"material/pail-plus-outline.svg","material-pail-plus":"material/pail-plus.svg","material-pail-remove-outline":"material/pail-remove-outline.svg","material-pail-remove":"material/pail-remove.svg","material-pail":"material/pail.svg","material-palette-advanced":"material/palette-advanced.svg","material-palette-outline":"material/palette-outline.svg","material-palette-swatch-outline":"material/palette-swatch-outline.svg","material-palette-swatch-variant":"material/palette-swatch-variant.svg","material-palette-swatch":"material/palette-swatch.svg","material-palette":"material/palette.svg","material-palm-tree":"material/palm-tree.svg","material-pan-bottom-left":"material/pan-bottom-left.svg","material-pan-bottom-right":"material/pan-bottom-right.svg","material-pan-down":"material/pan-down.svg","material-pan-horizontal":"material/pan-horizontal.svg","material-pan-left":"material/pan-left.svg","material-pan-right":"material/pan-right.svg","material-pan-top-left":"material/pan-top-left.svg","material-pan-top-right":"material/pan-top-right.svg","material-pan-up":"material/pan-up.svg","material-pan-vertical":"material/pan-vertical.svg","material-pan":"material/pan.svg","material-panda":"material/panda.svg","material-pandora":"material/pandora.svg","material-panorama-fisheye":"material/panorama-fisheye.svg","material-panorama-horizontal-outline":"material/panorama-horizontal-outline.svg","material-panorama-horizontal":"material/panorama-horizontal.svg","material-panorama-outline":"material/panorama-outline.svg","material-panorama-sphere-outline":"material/panorama-sphere-outline.svg","material-panorama-sphere":"material/panorama-sphere.svg","material-panorama-variant-outline":"material/panorama-variant-outline.svg","material-panorama-variant":"material/panorama-variant.svg","material-panorama-vertical-outline":"material/panorama-vertical-outline.svg","material-panorama-vertical":"material/panorama-vertical.svg","material-panorama-wide-angle-outline":"material/panorama-wide-angle-outline.svg","material-panorama-wide-angle":"material/panorama-wide-angle.svg","material-panorama":"material/panorama.svg","material-paper-cut-vertical":"material/paper-cut-vertical.svg","material-paper-roll-outline":"material/paper-roll-outline.svg","material-paper-roll":"material/paper-roll.svg","material-paperclip-check":"material/paperclip-check.svg","material-paperclip-lock":"material/paperclip-lock.svg","material-paperclip-minus":"material/paperclip-minus.svg","material-paperclip-off":"material/paperclip-off.svg","material-paperclip-plus":"material/paperclip-plus.svg","material-paperclip-remove":"material/paperclip-remove.svg","material-paperclip":"material/paperclip.svg","material-parachute-outline":"material/parachute-outline.svg","material-parachute":"material/parachute.svg","material-paragliding":"material/paragliding.svg","material-parking":"material/parking.svg","material-party-popper":"material/party-popper.svg","material-passport-alert":"material/passport-alert.svg","material-passport-biometric":"material/passport-biometric.svg","material-passport-cancel":"material/passport-cancel.svg","material-passport-check":"material/passport-check.svg","material-passport-minus":"material/passport-minus.svg","material-passport-plus":"material/passport-plus.svg","material-passport-remove":"material/passport-remove.svg","material-passport":"material/passport.svg","material-pasta":"material/pasta.svg","material-patio-heater":"material/patio-heater.svg","material-patreon":"material/patreon.svg","material-pause-box-outline":"material/pause-box-outline.svg","material-pause-box":"material/pause-box.svg","material-pause-circle-outline":"material/pause-circle-outline.svg","material-pause-circle":"material/pause-circle.svg","material-pause-octagon-outline":"material/pause-octagon-outline.svg","material-pause-octagon":"material/pause-octagon.svg","material-pause":"material/pause.svg","material-paw-off-outline":"material/paw-off-outline.svg","material-paw-off":"material/paw-off.svg","material-paw-outline":"material/paw-outline.svg","material-paw":"material/paw.svg","material-peace":"material/peace.svg","material-peanut-off-outline":"material/peanut-off-outline.svg","material-peanut-off":"material/peanut-off.svg","material-peanut-outline":"material/peanut-outline.svg","material-peanut":"material/peanut.svg","material-pen-lock":"material/pen-lock.svg","material-pen-minus":"material/pen-minus.svg","material-pen-off":"material/pen-off.svg","material-pen-plus":"material/pen-plus.svg","material-pen-remove":"material/pen-remove.svg","material-pen":"material/pen.svg","material-pencil-box-multiple-outline":"material/pencil-box-multiple-outline.svg","material-pencil-box-multiple":"material/pencil-box-multiple.svg","material-pencil-box-outline":"material/pencil-box-outline.svg","material-pencil-box":"material/pencil-box.svg","material-pencil-circle-outline":"material/pencil-circle-outline.svg","material-pencil-circle":"material/pencil-circle.svg","material-pencil-lock-outline":"material/pencil-lock-outline.svg","material-pencil-lock":"material/pencil-lock.svg","material-pencil-minus-outline":"material/pencil-minus-outline.svg","material-pencil-minus":"material/pencil-minus.svg","material-pencil-off-outline":"material/pencil-off-outline.svg","material-pencil-off":"material/pencil-off.svg","material-pencil-outline":"material/pencil-outline.svg","material-pencil-plus-outline":"material/pencil-plus-outline.svg","material-pencil-plus":"material/pencil-plus.svg","material-pencil-remove-outline":"material/pencil-remove-outline.svg","material-pencil-remove":"material/pencil-remove.svg","material-pencil-ruler-outline":"material/pencil-ruler-outline.svg","material-pencil-ruler":"material/pencil-ruler.svg","material-pencil":"material/pencil.svg","material-penguin":"material/penguin.svg","material-pentagon-outline":"material/pentagon-outline.svg","material-pentagon":"material/pentagon.svg","material-pentagram":"material/pentagram.svg","material-percent-box-outline":"material/percent-box-outline.svg","material-percent-box":"material/percent-box.svg","material-percent-circle-outline":"material/percent-circle-outline.svg","material-percent-circle":"material/percent-circle.svg","material-percent-outline":"material/percent-outline.svg","material-percent":"material/percent.svg","material-periodic-table":"material/periodic-table.svg","material-perspective-less":"material/perspective-less.svg","material-perspective-more":"material/perspective-more.svg","material-ph":"material/ph.svg","material-phone-alert-outline":"material/phone-alert-outline.svg","material-phone-alert":"material/phone-alert.svg","material-phone-bluetooth-outline":"material/phone-bluetooth-outline.svg","material-phone-bluetooth":"material/phone-bluetooth.svg","material-phone-cancel-outline":"material/phone-cancel-outline.svg","material-phone-cancel":"material/phone-cancel.svg","material-phone-check-outline":"material/phone-check-outline.svg","material-phone-check":"material/phone-check.svg","material-phone-classic-off":"material/phone-classic-off.svg","material-phone-classic":"material/phone-classic.svg","material-phone-clock":"material/phone-clock.svg","material-phone-dial-outline":"material/phone-dial-outline.svg","material-phone-dial":"material/phone-dial.svg","material-phone-forward-outline":"material/phone-forward-outline.svg","material-phone-forward":"material/phone-forward.svg","material-phone-hangup-outline":"material/phone-hangup-outline.svg","material-phone-hangup":"material/phone-hangup.svg","material-phone-in-talk-outline":"material/phone-in-talk-outline.svg","material-phone-in-talk":"material/phone-in-talk.svg","material-phone-incoming-outgoing-outline":"material/phone-incoming-outgoing-outline.svg","material-phone-incoming-outgoing":"material/phone-incoming-outgoing.svg","material-phone-incoming-outline":"material/phone-incoming-outline.svg","material-phone-incoming":"material/phone-incoming.svg","material-phone-lock-outline":"material/phone-lock-outline.svg","material-phone-lock":"material/phone-lock.svg","material-phone-log-outline":"material/phone-log-outline.svg","material-phone-log":"material/phone-log.svg","material-phone-message-outline":"material/phone-message-outline.svg","material-phone-message":"material/phone-message.svg","material-phone-minus-outline":"material/phone-minus-outline.svg","material-phone-minus":"material/phone-minus.svg","material-phone-missed-outline":"material/phone-missed-outline.svg","material-phone-missed":"material/phone-missed.svg","material-phone-off-outline":"material/phone-off-outline.svg","material-phone-off":"material/phone-off.svg","material-phone-outgoing-outline":"material/phone-outgoing-outline.svg","material-phone-outgoing":"material/phone-outgoing.svg","material-phone-outline":"material/phone-outline.svg","material-phone-paused-outline":"material/phone-paused-outline.svg","material-phone-paused":"material/phone-paused.svg","material-phone-plus-outline":"material/phone-plus-outline.svg","material-phone-plus":"material/phone-plus.svg","material-phone-refresh-outline":"material/phone-refresh-outline.svg","material-phone-refresh":"material/phone-refresh.svg","material-phone-remove-outline":"material/phone-remove-outline.svg","material-phone-remove":"material/phone-remove.svg","material-phone-return-outline":"material/phone-return-outline.svg","material-phone-return":"material/phone-return.svg","material-phone-ring-outline":"material/phone-ring-outline.svg","material-phone-ring":"material/phone-ring.svg","material-phone-rotate-landscape":"material/phone-rotate-landscape.svg","material-phone-rotate-portrait":"material/phone-rotate-portrait.svg","material-phone-settings-outline":"material/phone-settings-outline.svg","material-phone-settings":"material/phone-settings.svg","material-phone-sync-outline":"material/phone-sync-outline.svg","material-phone-sync":"material/phone-sync.svg","material-phone-voip":"material/phone-voip.svg","material-phone":"material/phone.svg","material-pi-box":"material/pi-box.svg","material-pi-hole":"material/pi-hole.svg","material-pi":"material/pi.svg","material-piano-off":"material/piano-off.svg","material-piano":"material/piano.svg","material-pickaxe":"material/pickaxe.svg","material-picture-in-picture-bottom-right-outline":"material/picture-in-picture-bottom-right-outline.svg","material-picture-in-picture-bottom-right":"material/picture-in-picture-bottom-right.svg","material-picture-in-picture-top-right-outline":"material/picture-in-picture-top-right-outline.svg","material-picture-in-picture-top-right":"material/picture-in-picture-top-right.svg","material-pier-crane":"material/pier-crane.svg","material-pier":"material/pier.svg","material-pig-variant-outline":"material/pig-variant-outline.svg","material-pig-variant":"material/pig-variant.svg","material-pig":"material/pig.svg","material-piggy-bank-outline":"material/piggy-bank-outline.svg","material-piggy-bank":"material/piggy-bank.svg","material-pill-multiple":"material/pill-multiple.svg","material-pill-off":"material/pill-off.svg","material-pill":"material/pill.svg","material-pillar":"material/pillar.svg","material-pin-off-outline":"material/pin-off-outline.svg","material-pin-off":"material/pin-off.svg","material-pin-outline":"material/pin-outline.svg","material-pin":"material/pin.svg","material-pine-tree-box":"material/pine-tree-box.svg","material-pine-tree-fire":"material/pine-tree-fire.svg","material-pine-tree-variant-outline":"material/pine-tree-variant-outline.svg","material-pine-tree-variant":"material/pine-tree-variant.svg","material-pine-tree":"material/pine-tree.svg","material-pinterest":"material/pinterest.svg","material-pinwheel-outline":"material/pinwheel-outline.svg","material-pinwheel":"material/pinwheel.svg","material-pipe-disconnected":"material/pipe-disconnected.svg","material-pipe-leak":"material/pipe-leak.svg","material-pipe-valve":"material/pipe-valve.svg","material-pipe-wrench":"material/pipe-wrench.svg","material-pipe":"material/pipe.svg","material-pirate":"material/pirate.svg","material-pistol":"material/pistol.svg","material-piston":"material/piston.svg","material-pitchfork":"material/pitchfork.svg","material-pizza":"material/pizza.svg","material-plane-car":"material/plane-car.svg","material-plane-train":"material/plane-train.svg","material-play-box-edit-outline":"material/play-box-edit-outline.svg","material-play-box-lock-open-outline":"material/play-box-lock-open-outline.svg","material-play-box-lock-open":"material/play-box-lock-open.svg","material-play-box-lock-outline":"material/play-box-lock-outline.svg","material-play-box-lock":"material/play-box-lock.svg","material-play-box-multiple-outline":"material/play-box-multiple-outline.svg","material-play-box-multiple":"material/play-box-multiple.svg","material-play-box-outline":"material/play-box-outline.svg","material-play-box":"material/play-box.svg","material-play-circle-outline":"material/play-circle-outline.svg","material-play-circle":"material/play-circle.svg","material-play-network-outline":"material/play-network-outline.svg","material-play-network":"material/play-network.svg","material-play-outline":"material/play-outline.svg","material-play-pause":"material/play-pause.svg","material-play-protected-content":"material/play-protected-content.svg","material-play-speed":"material/play-speed.svg","material-play":"material/play.svg","material-playlist-check":"material/playlist-check.svg","material-playlist-edit":"material/playlist-edit.svg","material-playlist-minus":"material/playlist-minus.svg","material-playlist-music-outline":"material/playlist-music-outline.svg","material-playlist-music":"material/playlist-music.svg","material-playlist-play":"material/playlist-play.svg","material-playlist-plus":"material/playlist-plus.svg","material-playlist-remove":"material/playlist-remove.svg","material-playlist-star":"material/playlist-star.svg","material-plex":"material/plex.svg","material-pliers":"material/pliers.svg","material-plus-box-multiple-outline":"material/plus-box-multiple-outline.svg","material-plus-box-multiple":"material/plus-box-multiple.svg","material-plus-box-outline":"material/plus-box-outline.svg","material-plus-box":"material/plus-box.svg","material-plus-circle-multiple-outline":"material/plus-circle-multiple-outline.svg","material-plus-circle-multiple":"material/plus-circle-multiple.svg","material-plus-circle-outline":"material/plus-circle-outline.svg","material-plus-circle":"material/plus-circle.svg","material-plus-lock-open":"material/plus-lock-open.svg","material-plus-lock":"material/plus-lock.svg","material-plus-minus-box":"material/plus-minus-box.svg","material-plus-minus-variant":"material/plus-minus-variant.svg","material-plus-minus":"material/plus-minus.svg","material-plus-network-outline":"material/plus-network-outline.svg","material-plus-network":"material/plus-network.svg","material-plus-outline":"material/plus-outline.svg","material-plus-thick":"material/plus-thick.svg","material-plus":"material/plus.svg","material-pocket":"material/pocket.svg","material-podcast":"material/podcast.svg","material-podium-bronze":"material/podium-bronze.svg","material-podium-gold":"material/podium-gold.svg","material-podium-silver":"material/podium-silver.svg","material-podium":"material/podium.svg","material-point-of-sale":"material/point-of-sale.svg","material-pokeball":"material/pokeball.svg","material-pokemon-go":"material/pokemon-go.svg","material-poker-chip":"material/poker-chip.svg","material-polaroid":"material/polaroid.svg","material-police-badge-outline":"material/police-badge-outline.svg","material-police-badge":"material/police-badge.svg","material-police-station":"material/police-station.svg","material-poll":"material/poll.svg","material-polo":"material/polo.svg","material-polymer":"material/polymer.svg","material-pool-thermometer":"material/pool-thermometer.svg","material-pool":"material/pool.svg","material-popcorn":"material/popcorn.svg","material-post-lamp":"material/post-lamp.svg","material-post-outline":"material/post-outline.svg","material-post":"material/post.svg","material-postage-stamp":"material/postage-stamp.svg","material-pot-mix-outline":"material/pot-mix-outline.svg","material-pot-mix":"material/pot-mix.svg","material-pot-outline":"material/pot-outline.svg","material-pot-steam-outline":"material/pot-steam-outline.svg","material-pot-steam":"material/pot-steam.svg","material-pot":"material/pot.svg","material-pound-box-outline":"material/pound-box-outline.svg","material-pound-box":"material/pound-box.svg","material-pound":"material/pound.svg","material-power-cycle":"material/power-cycle.svg","material-power-off":"material/power-off.svg","material-power-on":"material/power-on.svg","material-power-plug-battery-outline":"material/power-plug-battery-outline.svg","material-power-plug-battery":"material/power-plug-battery.svg","material-power-plug-off-outline":"material/power-plug-off-outline.svg","material-power-plug-off":"material/power-plug-off.svg","material-power-plug-outline":"material/power-plug-outline.svg","material-power-plug":"material/power-plug.svg","material-power-settings":"material/power-settings.svg","material-power-sleep":"material/power-sleep.svg","material-power-socket-au":"material/power-socket-au.svg","material-power-socket-ch":"material/power-socket-ch.svg","material-power-socket-de":"material/power-socket-de.svg","material-power-socket-eu":"material/power-socket-eu.svg","material-power-socket-fr":"material/power-socket-fr.svg","material-power-socket-it":"material/power-socket-it.svg","material-power-socket-jp":"material/power-socket-jp.svg","material-power-socket-uk":"material/power-socket-uk.svg","material-power-socket-us":"material/power-socket-us.svg","material-power-socket":"material/power-socket.svg","material-power-standby":"material/power-standby.svg","material-power":"material/power.svg","material-powershell":"material/powershell.svg","material-prescription":"material/prescription.svg","material-presentation-play":"material/presentation-play.svg","material-presentation":"material/presentation.svg","material-pretzel":"material/pretzel.svg","material-printer-3d-nozzle-alert-outline":"material/printer-3d-nozzle-alert-outline.svg","material-printer-3d-nozzle-alert":"material/printer-3d-nozzle-alert.svg","material-printer-3d-nozzle-heat-outline":"material/printer-3d-nozzle-heat-outline.svg","material-printer-3d-nozzle-heat":"material/printer-3d-nozzle-heat.svg","material-printer-3d-nozzle-off-outline":"material/printer-3d-nozzle-off-outline.svg","material-printer-3d-nozzle-off":"material/printer-3d-nozzle-off.svg","material-printer-3d-nozzle-outline":"material/printer-3d-nozzle-outline.svg","material-printer-3d-nozzle":"material/printer-3d-nozzle.svg","material-printer-3d-off":"material/printer-3d-off.svg","material-printer-3d":"material/printer-3d.svg","material-printer-alert":"material/printer-alert.svg","material-printer-check":"material/printer-check.svg","material-printer-eye":"material/printer-eye.svg","material-printer-off-outline":"material/printer-off-outline.svg","material-printer-off":"material/printer-off.svg","material-printer-outline":"material/printer-outline.svg","material-printer-pos-alert-outline":"material/printer-pos-alert-outline.svg","material-printer-pos-alert":"material/printer-pos-alert.svg","material-printer-pos-cancel-outline":"material/printer-pos-cancel-outline.svg","material-printer-pos-cancel":"material/printer-pos-cancel.svg","material-printer-pos-check-outline":"material/printer-pos-check-outline.svg","material-printer-pos-check":"material/printer-pos-check.svg","material-printer-pos-cog-outline":"material/printer-pos-cog-outline.svg","material-printer-pos-cog":"material/printer-pos-cog.svg","material-printer-pos-edit-outline":"material/printer-pos-edit-outline.svg","material-printer-pos-edit":"material/printer-pos-edit.svg","material-printer-pos-minus-outline":"material/printer-pos-minus-outline.svg","material-printer-pos-minus":"material/printer-pos-minus.svg","material-printer-pos-network-outline":"material/printer-pos-network-outline.svg","material-printer-pos-network":"material/printer-pos-network.svg","material-printer-pos-off-outline":"material/printer-pos-off-outline.svg","material-printer-pos-off":"material/printer-pos-off.svg","material-printer-pos-outline":"material/printer-pos-outline.svg","material-printer-pos-pause-outline":"material/printer-pos-pause-outline.svg","material-printer-pos-pause":"material/printer-pos-pause.svg","material-printer-pos-play-outline":"material/printer-pos-play-outline.svg","material-printer-pos-play":"material/printer-pos-play.svg","material-printer-pos-plus-outline":"material/printer-pos-plus-outline.svg","material-printer-pos-plus":"material/printer-pos-plus.svg","material-printer-pos-refresh-outline":"material/printer-pos-refresh-outline.svg","material-printer-pos-refresh":"material/printer-pos-refresh.svg","material-printer-pos-remove-outline":"material/printer-pos-remove-outline.svg","material-printer-pos-remove":"material/printer-pos-remove.svg","material-printer-pos-star-outline":"material/printer-pos-star-outline.svg","material-printer-pos-star":"material/printer-pos-star.svg","material-printer-pos-stop-outline":"material/printer-pos-stop-outline.svg","material-printer-pos-stop":"material/printer-pos-stop.svg","material-printer-pos-sync-outline":"material/printer-pos-sync-outline.svg","material-printer-pos-sync":"material/printer-pos-sync.svg","material-printer-pos-wrench-outline":"material/printer-pos-wrench-outline.svg","material-printer-pos-wrench":"material/printer-pos-wrench.svg","material-printer-pos":"material/printer-pos.svg","material-printer-search":"material/printer-search.svg","material-printer-settings":"material/printer-settings.svg","material-printer-wireless":"material/printer-wireless.svg","material-printer":"material/printer.svg","material-priority-high":"material/priority-high.svg","material-priority-low":"material/priority-low.svg","material-professional-hexagon":"material/professional-hexagon.svg","material-progress-alert":"material/progress-alert.svg","material-progress-check":"material/progress-check.svg","material-progress-clock":"material/progress-clock.svg","material-progress-close":"material/progress-close.svg","material-progress-download":"material/progress-download.svg","material-progress-helper":"material/progress-helper.svg","material-progress-pencil":"material/progress-pencil.svg","material-progress-question":"material/progress-question.svg","material-progress-star-four-points":"material/progress-star-four-points.svg","material-progress-star":"material/progress-star.svg","material-progress-tag":"material/progress-tag.svg","material-progress-upload":"material/progress-upload.svg","material-progress-wrench":"material/progress-wrench.svg","material-projector-off":"material/projector-off.svg","material-projector-screen-off-outline":"material/projector-screen-off-outline.svg","material-projector-screen-off":"material/projector-screen-off.svg","material-projector-screen-outline":"material/projector-screen-outline.svg","material-projector-screen-variant-off-outline":"material/projector-screen-variant-off-outline.svg","material-projector-screen-variant-off":"material/projector-screen-variant-off.svg","material-projector-screen-variant-outline":"material/projector-screen-variant-outline.svg","material-projector-screen-variant":"material/projector-screen-variant.svg","material-projector-screen":"material/projector-screen.svg","material-projector":"material/projector.svg","material-propane-tank-outline":"material/propane-tank-outline.svg","material-propane-tank":"material/propane-tank.svg","material-protocol":"material/protocol.svg","material-publish-off":"material/publish-off.svg","material-publish":"material/publish.svg","material-pulse":"material/pulse.svg","material-pump-off":"material/pump-off.svg","material-pump":"material/pump.svg","material-pumpkin":"material/pumpkin.svg","material-purse-outline":"material/purse-outline.svg","material-purse":"material/purse.svg","material-puzzle-check-outline":"material/puzzle-check-outline.svg","material-puzzle-check":"material/puzzle-check.svg","material-puzzle-edit-outline":"material/puzzle-edit-outline.svg","material-puzzle-edit":"material/puzzle-edit.svg","material-puzzle-heart-outline":"material/puzzle-heart-outline.svg","material-puzzle-heart":"material/puzzle-heart.svg","material-puzzle-minus-outline":"material/puzzle-minus-outline.svg","material-puzzle-minus":"material/puzzle-minus.svg","material-puzzle-outline":"material/puzzle-outline.svg","material-puzzle-plus-outline":"material/puzzle-plus-outline.svg","material-puzzle-plus":"material/puzzle-plus.svg","material-puzzle-remove-outline":"material/puzzle-remove-outline.svg","material-puzzle-remove":"material/puzzle-remove.svg","material-puzzle-star-outline":"material/puzzle-star-outline.svg","material-puzzle-star":"material/puzzle-star.svg","material-puzzle":"material/puzzle.svg","material-pyramid-off":"material/pyramid-off.svg","material-pyramid":"material/pyramid.svg","material-qi":"material/qi.svg","material-qqchat":"material/qqchat.svg","material-qrcode-edit":"material/qrcode-edit.svg","material-qrcode-minus":"material/qrcode-minus.svg","material-qrcode-plus":"material/qrcode-plus.svg","material-qrcode-remove":"material/qrcode-remove.svg","material-qrcode-scan":"material/qrcode-scan.svg","material-qrcode":"material/qrcode.svg","material-quadcopter":"material/quadcopter.svg","material-quality-high":"material/quality-high.svg","material-quality-low":"material/quality-low.svg","material-quality-medium":"material/quality-medium.svg","material-queue-first-in-last-out":"material/queue-first-in-last-out.svg","material-quora":"material/quora.svg","material-rabbit-variant-outline":"material/rabbit-variant-outline.svg","material-rabbit-variant":"material/rabbit-variant.svg","material-rabbit":"material/rabbit.svg","material-racing-helmet":"material/racing-helmet.svg","material-racquetball":"material/racquetball.svg","material-radar":"material/radar.svg","material-radiator-disabled":"material/radiator-disabled.svg","material-radiator-off":"material/radiator-off.svg","material-radiator":"material/radiator.svg","material-radio-am":"material/radio-am.svg","material-radio-fm":"material/radio-fm.svg","material-radio-handheld":"material/radio-handheld.svg","material-radio-off":"material/radio-off.svg","material-radio-tower":"material/radio-tower.svg","material-radio":"material/radio.svg","material-radioactive-circle-outline":"material/radioactive-circle-outline.svg","material-radioactive-circle":"material/radioactive-circle.svg","material-radioactive-off":"material/radioactive-off.svg","material-radioactive":"material/radioactive.svg","material-radiobox-blank":"material/radiobox-blank.svg","material-radiobox-indeterminate-variant":"material/radiobox-indeterminate-variant.svg","material-radiobox-marked":"material/radiobox-marked.svg","material-radiology-box-outline":"material/radiology-box-outline.svg","material-radiology-box":"material/radiology-box.svg","material-radius-outline":"material/radius-outline.svg","material-radius":"material/radius.svg","material-railroad-light":"material/railroad-light.svg","material-rake":"material/rake.svg","material-raspberry-pi":"material/raspberry-pi.svg","material-raw-off":"material/raw-off.svg","material-raw":"material/raw.svg","material-ray-end-arrow":"material/ray-end-arrow.svg","material-ray-end":"material/ray-end.svg","material-ray-start-arrow":"material/ray-start-arrow.svg","material-ray-start-end":"material/ray-start-end.svg","material-ray-start-vertex-end":"material/ray-start-vertex-end.svg","material-ray-start":"material/ray-start.svg","material-ray-vertex":"material/ray-vertex.svg","material-razor-double-edge":"material/razor-double-edge.svg","material-razor-single-edge":"material/razor-single-edge.svg","material-react":"material/react.svg","material-read":"material/read.svg","material-receipt-clock-outline":"material/receipt-clock-outline.svg","material-receipt-clock":"material/receipt-clock.svg","material-receipt-outline":"material/receipt-outline.svg","material-receipt-send-outline":"material/receipt-send-outline.svg","material-receipt-send":"material/receipt-send.svg","material-receipt-text-arrow-left-outline":"material/receipt-text-arrow-left-outline.svg","material-receipt-text-arrow-left":"material/receipt-text-arrow-left.svg","material-receipt-text-arrow-right-outline":"material/receipt-text-arrow-right-outline.svg","material-receipt-text-arrow-right":"material/receipt-text-arrow-right.svg","material-receipt-text-check-outline":"material/receipt-text-check-outline.svg","material-receipt-text-check":"material/receipt-text-check.svg","material-receipt-text-clock-outline":"material/receipt-text-clock-outline.svg","material-receipt-text-clock":"material/receipt-text-clock.svg","material-receipt-text-edit-outline":"material/receipt-text-edit-outline.svg","material-receipt-text-edit":"material/receipt-text-edit.svg","material-receipt-text-minus-outline":"material/receipt-text-minus-outline.svg","material-receipt-text-minus":"material/receipt-text-minus.svg","material-receipt-text-outline":"material/receipt-text-outline.svg","material-receipt-text-plus-outline":"material/receipt-text-plus-outline.svg","material-receipt-text-plus":"material/receipt-text-plus.svg","material-receipt-text-remove-outline":"material/receipt-text-remove-outline.svg","material-receipt-text-remove":"material/receipt-text-remove.svg","material-receipt-text-send-outline":"material/receipt-text-send-outline.svg","material-receipt-text-send":"material/receipt-text-send.svg","material-receipt-text":"material/receipt-text.svg","material-receipt":"material/receipt.svg","material-record-circle-outline":"material/record-circle-outline.svg","material-record-circle":"material/record-circle.svg","material-record-player":"material/record-player.svg","material-record-rec":"material/record-rec.svg","material-record":"material/record.svg","material-rectangle-outline":"material/rectangle-outline.svg","material-rectangle":"material/rectangle.svg","material-recycle-variant":"material/recycle-variant.svg","material-recycle":"material/recycle.svg","material-reddit":"material/reddit.svg","material-redhat":"material/redhat.svg","material-redo-variant":"material/redo-variant.svg","material-redo":"material/redo.svg","material-reflect-horizontal":"material/reflect-horizontal.svg","material-reflect-vertical":"material/reflect-vertical.svg","material-refresh-auto":"material/refresh-auto.svg","material-refresh-circle":"material/refresh-circle.svg","material-refresh":"material/refresh.svg","material-regex":"material/regex.svg","material-registered-trademark":"material/registered-trademark.svg","material-reiterate":"material/reiterate.svg","material-relation-many-to-many":"material/relation-many-to-many.svg","material-relation-many-to-one-or-many":"material/relation-many-to-one-or-many.svg","material-relation-many-to-one":"material/relation-many-to-one.svg","material-relation-many-to-only-one":"material/relation-many-to-only-one.svg","material-relation-many-to-zero-or-many":"material/relation-many-to-zero-or-many.svg","material-relation-many-to-zero-or-one":"material/relation-many-to-zero-or-one.svg","material-relation-one-or-many-to-many":"material/relation-one-or-many-to-many.svg","material-relation-one-or-many-to-one-or-many":"material/relation-one-or-many-to-one-or-many.svg","material-relation-one-or-many-to-one":"material/relation-one-or-many-to-one.svg","material-relation-one-or-many-to-only-one":"material/relation-one-or-many-to-only-one.svg","material-relation-one-or-many-to-zero-or-many":"material/relation-one-or-many-to-zero-or-many.svg","material-relation-one-or-many-to-zero-or-one":"material/relation-one-or-many-to-zero-or-one.svg","material-relation-one-to-many":"material/relation-one-to-many.svg","material-relation-one-to-one-or-many":"material/relation-one-to-one-or-many.svg","material-relation-one-to-one":"material/relation-one-to-one.svg","material-relation-one-to-only-one":"material/relation-one-to-only-one.svg","material-relation-one-to-zero-or-many":"material/relation-one-to-zero-or-many.svg","material-relation-one-to-zero-or-one":"material/relation-one-to-zero-or-one.svg","material-relation-only-one-to-many":"material/relation-only-one-to-many.svg","material-relation-only-one-to-one-or-many":"material/relation-only-one-to-one-or-many.svg","material-relation-only-one-to-one":"material/relation-only-one-to-one.svg","material-relation-only-one-to-only-one":"material/relation-only-one-to-only-one.svg","material-relation-only-one-to-zero-or-many":"material/relation-only-one-to-zero-or-many.svg","material-relation-only-one-to-zero-or-one":"material/relation-only-one-to-zero-or-one.svg","material-relation-zero-or-many-to-many":"material/relation-zero-or-many-to-many.svg","material-relation-zero-or-many-to-one-or-many":"material/relation-zero-or-many-to-one-or-many.svg","material-relation-zero-or-many-to-one":"material/relation-zero-or-many-to-one.svg","material-relation-zero-or-many-to-only-one":"material/relation-zero-or-many-to-only-one.svg","material-relation-zero-or-many-to-zero-or-many":"material/relation-zero-or-many-to-zero-or-many.svg","material-relation-zero-or-many-to-zero-or-one":"material/relation-zero-or-many-to-zero-or-one.svg","material-relation-zero-or-one-to-many":"material/relation-zero-or-one-to-many.svg","material-relation-zero-or-one-to-one-or-many":"material/relation-zero-or-one-to-one-or-many.svg","material-relation-zero-or-one-to-one":"material/relation-zero-or-one-to-one.svg","material-relation-zero-or-one-to-only-one":"material/relation-zero-or-one-to-only-one.svg","material-relation-zero-or-one-to-zero-or-many":"material/relation-zero-or-one-to-zero-or-many.svg","material-relation-zero-or-one-to-zero-or-one":"material/relation-zero-or-one-to-zero-or-one.svg","material-relative-scale":"material/relative-scale.svg","material-reload-alert":"material/reload-alert.svg","material-reload":"material/reload.svg","material-reminder":"material/reminder.svg","material-remote-desktop":"material/remote-desktop.svg","material-remote-off":"material/remote-off.svg","material-remote-tv-off":"material/remote-tv-off.svg","material-remote-tv":"material/remote-tv.svg","material-remote":"material/remote.svg","material-rename-box-outline":"material/rename-box-outline.svg","material-rename-box":"material/rename-box.svg","material-rename-outline":"material/rename-outline.svg","material-rename":"material/rename.svg","material-reorder-horizontal":"material/reorder-horizontal.svg","material-reorder-vertical":"material/reorder-vertical.svg","material-repeat-off":"material/repeat-off.svg","material-repeat-once":"material/repeat-once.svg","material-repeat-variant":"material/repeat-variant.svg","material-repeat":"material/repeat.svg","material-replay":"material/replay.svg","material-reply-all-outline":"material/reply-all-outline.svg","material-reply-all":"material/reply-all.svg","material-reply-circle":"material/reply-circle.svg","material-reply-outline":"material/reply-outline.svg","material-reply":"material/reply.svg","material-reproduction":"material/reproduction.svg","material-resistor-nodes":"material/resistor-nodes.svg","material-resistor":"material/resistor.svg","material-resize-bottom-right":"material/resize-bottom-right.svg","material-resize":"material/resize.svg","material-responsive":"material/responsive.svg","material-restart-alert":"material/restart-alert.svg","material-restart-off":"material/restart-off.svg","material-restart":"material/restart.svg","material-restore-alert":"material/restore-alert.svg","material-restore":"material/restore.svg","material-rewind-10":"material/rewind-10.svg","material-rewind-15":"material/rewind-15.svg","material-rewind-30":"material/rewind-30.svg","material-rewind-45":"material/rewind-45.svg","material-rewind-5":"material/rewind-5.svg","material-rewind-60":"material/rewind-60.svg","material-rewind-outline":"material/rewind-outline.svg","material-rewind":"material/rewind.svg","material-rhombus-medium-outline":"material/rhombus-medium-outline.svg","material-rhombus-medium":"material/rhombus-medium.svg","material-rhombus-outline":"material/rhombus-outline.svg","material-rhombus-split-outline":"material/rhombus-split-outline.svg","material-rhombus-split":"material/rhombus-split.svg","material-rhombus":"material/rhombus.svg","material-ribbon":"material/ribbon.svg","material-rice":"material/rice.svg","material-rickshaw-electric":"material/rickshaw-electric.svg","material-rickshaw":"material/rickshaw.svg","material-ring":"material/ring.svg","material-rivet":"material/rivet.svg","material-road-variant":"material/road-variant.svg","material-road":"material/road.svg","material-robber":"material/robber.svg","material-robot-angry-outline":"material/robot-angry-outline.svg","material-robot-angry":"material/robot-angry.svg","material-robot-confused-outline":"material/robot-confused-outline.svg","material-robot-confused":"material/robot-confused.svg","material-robot-dead-outline":"material/robot-dead-outline.svg","material-robot-dead":"material/robot-dead.svg","material-robot-excited-outline":"material/robot-excited-outline.svg","material-robot-excited":"material/robot-excited.svg","material-robot-happy-outline":"material/robot-happy-outline.svg","material-robot-happy":"material/robot-happy.svg","material-robot-industrial-outline":"material/robot-industrial-outline.svg","material-robot-industrial":"material/robot-industrial.svg","material-robot-love-outline":"material/robot-love-outline.svg","material-robot-love":"material/robot-love.svg","material-robot-mower-outline":"material/robot-mower-outline.svg","material-robot-mower":"material/robot-mower.svg","material-robot-off-outline":"material/robot-off-outline.svg","material-robot-off":"material/robot-off.svg","material-robot-outline":"material/robot-outline.svg","material-robot-vacuum-alert":"material/robot-vacuum-alert.svg","material-robot-vacuum-off":"material/robot-vacuum-off.svg","material-robot-vacuum-variant-alert":"material/robot-vacuum-variant-alert.svg","material-robot-vacuum-variant-off":"material/robot-vacuum-variant-off.svg","material-robot-vacuum-variant":"material/robot-vacuum-variant.svg","material-robot-vacuum":"material/robot-vacuum.svg","material-robot":"material/robot.svg","material-rocket-launch-outline":"material/rocket-launch-outline.svg","material-rocket-launch":"material/rocket-launch.svg","material-rocket-outline":"material/rocket-outline.svg","material-rocket":"material/rocket.svg","material-rodent":"material/rodent.svg","material-roller-shade-closed":"material/roller-shade-closed.svg","material-roller-shade":"material/roller-shade.svg","material-roller-skate-off":"material/roller-skate-off.svg","material-roller-skate":"material/roller-skate.svg","material-rollerblade-off":"material/rollerblade-off.svg","material-rollerblade":"material/rollerblade.svg","material-rollupjs":"material/rollupjs.svg","material-rolodex-outline":"material/rolodex-outline.svg","material-rolodex":"material/rolodex.svg","material-roman-numeral-1":"material/roman-numeral-1.svg","material-roman-numeral-10":"material/roman-numeral-10.svg","material-roman-numeral-2":"material/roman-numeral-2.svg","material-roman-numeral-3":"material/roman-numeral-3.svg","material-roman-numeral-4":"material/roman-numeral-4.svg","material-roman-numeral-5":"material/roman-numeral-5.svg","material-roman-numeral-6":"material/roman-numeral-6.svg","material-roman-numeral-7":"material/roman-numeral-7.svg","material-roman-numeral-8":"material/roman-numeral-8.svg","material-roman-numeral-9":"material/roman-numeral-9.svg","material-room-service-outline":"material/room-service-outline.svg","material-room-service":"material/room-service.svg","material-rotate-360":"material/rotate-360.svg","material-rotate-3d-variant":"material/rotate-3d-variant.svg","material-rotate-3d":"material/rotate-3d.svg","material-rotate-left-variant":"material/rotate-left-variant.svg","material-rotate-left":"material/rotate-left.svg","material-rotate-orbit":"material/rotate-orbit.svg","material-rotate-right-variant":"material/rotate-right-variant.svg","material-rotate-right":"material/rotate-right.svg","material-rounded-corner":"material/rounded-corner.svg","material-router-network-wireless":"material/router-network-wireless.svg","material-router-network":"material/router-network.svg","material-router-wireless-off":"material/router-wireless-off.svg","material-router-wireless-settings":"material/router-wireless-settings.svg","material-router-wireless":"material/router-wireless.svg","material-router":"material/router.svg","material-routes-clock":"material/routes-clock.svg","material-routes":"material/routes.svg","material-rowing":"material/rowing.svg","material-rss-box":"material/rss-box.svg","material-rss-off":"material/rss-off.svg","material-rss":"material/rss.svg","material-rug":"material/rug.svg","material-rugby":"material/rugby.svg","material-ruler-square-compass":"material/ruler-square-compass.svg","material-ruler-square":"material/ruler-square.svg","material-ruler":"material/ruler.svg","material-run-fast":"material/run-fast.svg","material-run":"material/run.svg","material-rv-truck":"material/rv-truck.svg","material-sack-outline":"material/sack-outline.svg","material-sack-percent":"material/sack-percent.svg","material-sack":"material/sack.svg","material-safe-square-outline":"material/safe-square-outline.svg","material-safe-square":"material/safe-square.svg","material-safe":"material/safe.svg","material-safety-goggles":"material/safety-goggles.svg","material-sail-boat-sink":"material/sail-boat-sink.svg","material-sail-boat":"material/sail-boat.svg","material-sale-outline":"material/sale-outline.svg","material-sale":"material/sale.svg","material-salesforce":"material/salesforce.svg","material-sass":"material/sass.svg","material-satellite-uplink":"material/satellite-uplink.svg","material-satellite-variant":"material/satellite-variant.svg","material-satellite":"material/satellite.svg","material-sausage-off":"material/sausage-off.svg","material-sausage":"material/sausage.svg","material-saw-blade":"material/saw-blade.svg","material-sawtooth-wave":"material/sawtooth-wave.svg","material-saxophone":"material/saxophone.svg","material-scale-balance":"material/scale-balance.svg","material-scale-bathroom":"material/scale-bathroom.svg","material-scale-off":"material/scale-off.svg","material-scale-unbalanced":"material/scale-unbalanced.svg","material-scale":"material/scale.svg","material-scan-helper":"material/scan-helper.svg","material-scanner-off":"material/scanner-off.svg","material-scanner":"material/scanner.svg","material-scatter-plot-outline":"material/scatter-plot-outline.svg","material-scatter-plot":"material/scatter-plot.svg","material-scent-off":"material/scent-off.svg","material-scent":"material/scent.svg","material-school-outline":"material/school-outline.svg","material-school":"material/school.svg","material-scissors-cutting":"material/scissors-cutting.svg","material-scooter-electric":"material/scooter-electric.svg","material-scooter":"material/scooter.svg","material-scoreboard-outline":"material/scoreboard-outline.svg","material-scoreboard":"material/scoreboard.svg","material-screen-rotation-lock":"material/screen-rotation-lock.svg","material-screen-rotation":"material/screen-rotation.svg","material-screw-flat-top":"material/screw-flat-top.svg","material-screw-lag":"material/screw-lag.svg","material-screw-machine-flat-top":"material/screw-machine-flat-top.svg","material-screw-machine-round-top":"material/screw-machine-round-top.svg","material-screw-round-top":"material/screw-round-top.svg","material-screwdriver":"material/screwdriver.svg","material-script-outline":"material/script-outline.svg","material-script-text-key-outline":"material/script-text-key-outline.svg","material-script-text-key":"material/script-text-key.svg","material-script-text-outline":"material/script-text-outline.svg","material-script-text-play-outline":"material/script-text-play-outline.svg","material-script-text-play":"material/script-text-play.svg","material-script-text":"material/script-text.svg","material-script":"material/script.svg","material-sd":"material/sd.svg","material-seal-variant":"material/seal-variant.svg","material-seal":"material/seal.svg","material-search-web":"material/search-web.svg","material-seat-flat-angled":"material/seat-flat-angled.svg","material-seat-flat":"material/seat-flat.svg","material-seat-individual-suite":"material/seat-individual-suite.svg","material-seat-legroom-extra":"material/seat-legroom-extra.svg","material-seat-legroom-normal":"material/seat-legroom-normal.svg","material-seat-legroom-reduced":"material/seat-legroom-reduced.svg","material-seat-outline":"material/seat-outline.svg","material-seat-passenger":"material/seat-passenger.svg","material-seat-recline-extra":"material/seat-recline-extra.svg","material-seat-recline-normal":"material/seat-recline-normal.svg","material-seat":"material/seat.svg","material-seatbelt":"material/seatbelt.svg","material-security-network":"material/security-network.svg","material-security":"material/security.svg","material-seed-off-outline":"material/seed-off-outline.svg","material-seed-off":"material/seed-off.svg","material-seed-outline":"material/seed-outline.svg","material-seed-plus-outline":"material/seed-plus-outline.svg","material-seed-plus":"material/seed-plus.svg","material-seed":"material/seed.svg","material-seesaw":"material/seesaw.svg","material-segment":"material/segment.svg","material-select-all":"material/select-all.svg","material-select-arrow-down":"material/select-arrow-down.svg","material-select-arrow-up":"material/select-arrow-up.svg","material-select-color":"material/select-color.svg","material-select-compare":"material/select-compare.svg","material-select-drag":"material/select-drag.svg","material-select-group":"material/select-group.svg","material-select-inverse":"material/select-inverse.svg","material-select-marker":"material/select-marker.svg","material-select-multiple-marker":"material/select-multiple-marker.svg","material-select-multiple":"material/select-multiple.svg","material-select-off":"material/select-off.svg","material-select-place":"material/select-place.svg","material-select-remove":"material/select-remove.svg","material-select-search":"material/select-search.svg","material-select":"material/select.svg","material-selection-drag":"material/selection-drag.svg","material-selection-ellipse-arrow-inside":"material/selection-ellipse-arrow-inside.svg","material-selection-ellipse-remove":"material/selection-ellipse-remove.svg","material-selection-ellipse":"material/selection-ellipse.svg","material-selection-marker":"material/selection-marker.svg","material-selection-multiple-marker":"material/selection-multiple-marker.svg","material-selection-multiple":"material/selection-multiple.svg","material-selection-off":"material/selection-off.svg","material-selection-remove":"material/selection-remove.svg","material-selection-search":"material/selection-search.svg","material-selection":"material/selection.svg","material-semantic-web":"material/semantic-web.svg","material-send-check-outline":"material/send-check-outline.svg","material-send-check":"material/send-check.svg","material-send-circle-outline":"material/send-circle-outline.svg","material-send-circle":"material/send-circle.svg","material-send-clock-outline":"material/send-clock-outline.svg","material-send-clock":"material/send-clock.svg","material-send-lock-outline":"material/send-lock-outline.svg","material-send-lock":"material/send-lock.svg","material-send-outline":"material/send-outline.svg","material-send-variant-clock-outline":"material/send-variant-clock-outline.svg","material-send-variant-clock":"material/send-variant-clock.svg","material-send-variant-outline":"material/send-variant-outline.svg","material-send-variant":"material/send-variant.svg","material-send":"material/send.svg","material-serial-port":"material/serial-port.svg","material-server-minus-outline":"material/server-minus-outline.svg","material-server-minus":"material/server-minus.svg","material-server-network-off":"material/server-network-off.svg","material-server-network-outline":"material/server-network-outline.svg","material-server-network":"material/server-network.svg","material-server-off":"material/server-off.svg","material-server-outline":"material/server-outline.svg","material-server-plus-outline":"material/server-plus-outline.svg","material-server-plus":"material/server-plus.svg","material-server-remove":"material/server-remove.svg","material-server-security":"material/server-security.svg","material-server":"material/server.svg","material-set-all":"material/set-all.svg","material-set-center-right":"material/set-center-right.svg","material-set-center":"material/set-center.svg","material-set-left-center":"material/set-left-center.svg","material-set-left-right":"material/set-left-right.svg","material-set-left":"material/set-left.svg","material-set-merge":"material/set-merge.svg","material-set-none":"material/set-none.svg","material-set-right":"material/set-right.svg","material-set-split":"material/set-split.svg","material-set-square":"material/set-square.svg","material-set-top-box":"material/set-top-box.svg","material-settings-helper":"material/settings-helper.svg","material-shaker-outline":"material/shaker-outline.svg","material-shaker":"material/shaker.svg","material-shape-circle-plus":"material/shape-circle-plus.svg","material-shape-outline":"material/shape-outline.svg","material-shape-oval-plus":"material/shape-oval-plus.svg","material-shape-plus-outline":"material/shape-plus-outline.svg","material-shape-plus":"material/shape-plus.svg","material-shape-polygon-plus":"material/shape-polygon-plus.svg","material-shape-rectangle-plus":"material/shape-rectangle-plus.svg","material-shape-square-plus":"material/shape-square-plus.svg","material-shape-square-rounded-plus":"material/shape-square-rounded-plus.svg","material-shape":"material/shape.svg","material-share-all-outline":"material/share-all-outline.svg","material-share-all":"material/share-all.svg","material-share-circle":"material/share-circle.svg","material-share-off-outline":"material/share-off-outline.svg","material-share-off":"material/share-off.svg","material-share-outline":"material/share-outline.svg","material-share-variant-outline":"material/share-variant-outline.svg","material-share-variant":"material/share-variant.svg","material-share":"material/share.svg","material-shark-fin-outline":"material/shark-fin-outline.svg","material-shark-fin":"material/shark-fin.svg","material-shark-off":"material/shark-off.svg","material-shark":"material/shark.svg","material-sheep":"material/sheep.svg","material-shield-account-outline":"material/shield-account-outline.svg","material-shield-account-variant-outline":"material/shield-account-variant-outline.svg","material-shield-account-variant":"material/shield-account-variant.svg","material-shield-account":"material/shield-account.svg","material-shield-airplane-outline":"material/shield-airplane-outline.svg","material-shield-airplane":"material/shield-airplane.svg","material-shield-alert-outline":"material/shield-alert-outline.svg","material-shield-alert":"material/shield-alert.svg","material-shield-bug-outline":"material/shield-bug-outline.svg","material-shield-bug":"material/shield-bug.svg","material-shield-car":"material/shield-car.svg","material-shield-check-outline":"material/shield-check-outline.svg","material-shield-check":"material/shield-check.svg","material-shield-cross-outline":"material/shield-cross-outline.svg","material-shield-cross":"material/shield-cross.svg","material-shield-crown-outline":"material/shield-crown-outline.svg","material-shield-crown":"material/shield-crown.svg","material-shield-edit-outline":"material/shield-edit-outline.svg","material-shield-edit":"material/shield-edit.svg","material-shield-half-full":"material/shield-half-full.svg","material-shield-half":"material/shield-half.svg","material-shield-home-outline":"material/shield-home-outline.svg","material-shield-home":"material/shield-home.svg","material-shield-key-outline":"material/shield-key-outline.svg","material-shield-key":"material/shield-key.svg","material-shield-link-variant-outline":"material/shield-link-variant-outline.svg","material-shield-link-variant":"material/shield-link-variant.svg","material-shield-lock-open-outline":"material/shield-lock-open-outline.svg","material-shield-lock-open":"material/shield-lock-open.svg","material-shield-lock-outline":"material/shield-lock-outline.svg","material-shield-lock":"material/shield-lock.svg","material-shield-moon-outline":"material/shield-moon-outline.svg","material-shield-moon":"material/shield-moon.svg","material-shield-off-outline":"material/shield-off-outline.svg","material-shield-off":"material/shield-off.svg","material-shield-outline":"material/shield-outline.svg","material-shield-plus-outline":"material/shield-plus-outline.svg","material-shield-plus":"material/shield-plus.svg","material-shield-refresh-outline":"material/shield-refresh-outline.svg","material-shield-refresh":"material/shield-refresh.svg","material-shield-remove-outline":"material/shield-remove-outline.svg","material-shield-remove":"material/shield-remove.svg","material-shield-search":"material/shield-search.svg","material-shield-star-outline":"material/shield-star-outline.svg","material-shield-star":"material/shield-star.svg","material-shield-sun-outline":"material/shield-sun-outline.svg","material-shield-sun":"material/shield-sun.svg","material-shield-sword-outline":"material/shield-sword-outline.svg","material-shield-sword":"material/shield-sword.svg","material-shield-sync-outline":"material/shield-sync-outline.svg","material-shield-sync":"material/shield-sync.svg","material-shield":"material/shield.svg","material-shimmer":"material/shimmer.svg","material-ship-wheel":"material/ship-wheel.svg","material-shipping-pallet":"material/shipping-pallet.svg","material-shoe-ballet":"material/shoe-ballet.svg","material-shoe-cleat":"material/shoe-cleat.svg","material-shoe-formal":"material/shoe-formal.svg","material-shoe-heel":"material/shoe-heel.svg","material-shoe-print":"material/shoe-print.svg","material-shoe-sneaker":"material/shoe-sneaker.svg","material-shopping-music":"material/shopping-music.svg","material-shopping-outline":"material/shopping-outline.svg","material-shopping-search-outline":"material/shopping-search-outline.svg","material-shopping-search":"material/shopping-search.svg","material-shopping":"material/shopping.svg","material-shore":"material/shore.svg","material-shovel-off":"material/shovel-off.svg","material-shovel":"material/shovel.svg","material-shower-head":"material/shower-head.svg","material-shower":"material/shower.svg","material-shredder":"material/shredder.svg","material-shuffle-disabled":"material/shuffle-disabled.svg","material-shuffle-variant":"material/shuffle-variant.svg","material-shuffle":"material/shuffle.svg","material-shuriken":"material/shuriken.svg","material-sickle":"material/sickle.svg","material-sigma-lower":"material/sigma-lower.svg","material-sigma":"material/sigma.svg","material-sign-caution":"material/sign-caution.svg","material-sign-direction-minus":"material/sign-direction-minus.svg","material-sign-direction-plus":"material/sign-direction-plus.svg","material-sign-direction-remove":"material/sign-direction-remove.svg","material-sign-direction":"material/sign-direction.svg","material-sign-language-outline":"material/sign-language-outline.svg","material-sign-language":"material/sign-language.svg","material-sign-pole":"material/sign-pole.svg","material-sign-real-estate":"material/sign-real-estate.svg","material-sign-text":"material/sign-text.svg","material-sign-yield":"material/sign-yield.svg","material-signal-2g":"material/signal-2g.svg","material-signal-3g":"material/signal-3g.svg","material-signal-4g":"material/signal-4g.svg","material-signal-5g":"material/signal-5g.svg","material-signal-cellular-1":"material/signal-cellular-1.svg","material-signal-cellular-2":"material/signal-cellular-2.svg","material-signal-cellular-3":"material/signal-cellular-3.svg","material-signal-cellular-outline":"material/signal-cellular-outline.svg","material-signal-distance-variant":"material/signal-distance-variant.svg","material-signal-hspa-plus":"material/signal-hspa-plus.svg","material-signal-hspa":"material/signal-hspa.svg","material-signal-off":"material/signal-off.svg","material-signal-variant":"material/signal-variant.svg","material-signal":"material/signal.svg","material-signature-freehand":"material/signature-freehand.svg","material-signature-image":"material/signature-image.svg","material-signature-text":"material/signature-text.svg","material-signature":"material/signature.svg","material-silo-outline":"material/silo-outline.svg","material-silo":"material/silo.svg","material-silverware-clean":"material/silverware-clean.svg","material-silverware-fork-knife":"material/silverware-fork-knife.svg","material-silverware-fork":"material/silverware-fork.svg","material-silverware-spoon":"material/silverware-spoon.svg","material-silverware-variant":"material/silverware-variant.svg","material-silverware":"material/silverware.svg","material-sim-alert-outline":"material/sim-alert-outline.svg","material-sim-alert":"material/sim-alert.svg","material-sim-off-outline":"material/sim-off-outline.svg","material-sim-off":"material/sim-off.svg","material-sim-outline":"material/sim-outline.svg","material-sim":"material/sim.svg","material-simple-icons":"material/simple-icons.svg","material-sina-weibo":"material/sina-weibo.svg","material-sine-wave":"material/sine-wave.svg","material-sitemap-outline":"material/sitemap-outline.svg","material-sitemap":"material/sitemap.svg","material-size-l":"material/size-l.svg","material-size-m":"material/size-m.svg","material-size-s":"material/size-s.svg","material-size-xl":"material/size-xl.svg","material-size-xs":"material/size-xs.svg","material-size-xxl":"material/size-xxl.svg","material-size-xxs":"material/size-xxs.svg","material-size-xxxl":"material/size-xxxl.svg","material-skate-off":"material/skate-off.svg","material-skate":"material/skate.svg","material-skateboard":"material/skateboard.svg","material-skateboarding":"material/skateboarding.svg","material-skew-less":"material/skew-less.svg","material-skew-more":"material/skew-more.svg","material-ski-cross-country":"material/ski-cross-country.svg","material-ski-water":"material/ski-water.svg","material-ski":"material/ski.svg","material-skip-backward-outline":"material/skip-backward-outline.svg","material-skip-backward":"material/skip-backward.svg","material-skip-forward-outline":"material/skip-forward-outline.svg","material-skip-forward":"material/skip-forward.svg","material-skip-next-circle-outline":"material/skip-next-circle-outline.svg","material-skip-next-circle":"material/skip-next-circle.svg","material-skip-next-outline":"material/skip-next-outline.svg","material-skip-next":"material/skip-next.svg","material-skip-previous-circle-outline":"material/skip-previous-circle-outline.svg","material-skip-previous-circle":"material/skip-previous-circle.svg","material-skip-previous-outline":"material/skip-previous-outline.svg","material-skip-previous":"material/skip-previous.svg","material-skull-crossbones-outline":"material/skull-crossbones-outline.svg","material-skull-crossbones":"material/skull-crossbones.svg","material-skull-outline":"material/skull-outline.svg","material-skull-scan-outline":"material/skull-scan-outline.svg","material-skull-scan":"material/skull-scan.svg","material-skull":"material/skull.svg","material-skype-business":"material/skype-business.svg","material-skype":"material/skype.svg","material-slack":"material/slack.svg","material-slash-forward-box":"material/slash-forward-box.svg","material-slash-forward":"material/slash-forward.svg","material-sledding":"material/sledding.svg","material-sleep-off":"material/sleep-off.svg","material-sleep":"material/sleep.svg","material-slide":"material/slide.svg","material-slope-downhill":"material/slope-downhill.svg","material-slope-uphill":"material/slope-uphill.svg","material-slot-machine-outline":"material/slot-machine-outline.svg","material-slot-machine":"material/slot-machine.svg","material-smart-card-off-outline":"material/smart-card-off-outline.svg","material-smart-card-off":"material/smart-card-off.svg","material-smart-card-outline":"material/smart-card-outline.svg","material-smart-card-reader-outline":"material/smart-card-reader-outline.svg","material-smart-card-reader":"material/smart-card-reader.svg","material-smart-card":"material/smart-card.svg","material-smog":"material/smog.svg","material-smoke-detector-alert-outline":"material/smoke-detector-alert-outline.svg","material-smoke-detector-alert":"material/smoke-detector-alert.svg","material-smoke-detector-off-outline":"material/smoke-detector-off-outline.svg","material-smoke-detector-off":"material/smoke-detector-off.svg","material-smoke-detector-outline":"material/smoke-detector-outline.svg","material-smoke-detector-variant-alert":"material/smoke-detector-variant-alert.svg","material-smoke-detector-variant-off":"material/smoke-detector-variant-off.svg","material-smoke-detector-variant":"material/smoke-detector-variant.svg","material-smoke-detector":"material/smoke-detector.svg","material-smoke":"material/smoke.svg","material-smoking-off":"material/smoking-off.svg","material-smoking-pipe-off":"material/smoking-pipe-off.svg","material-smoking-pipe":"material/smoking-pipe.svg","material-smoking":"material/smoking.svg","material-snail":"material/snail.svg","material-snake":"material/snake.svg","material-snapchat":"material/snapchat.svg","material-snowboard":"material/snowboard.svg","material-snowflake-alert":"material/snowflake-alert.svg","material-snowflake-check":"material/snowflake-check.svg","material-snowflake-melt":"material/snowflake-melt.svg","material-snowflake-off":"material/snowflake-off.svg","material-snowflake-thermometer":"material/snowflake-thermometer.svg","material-snowflake-variant":"material/snowflake-variant.svg","material-snowflake":"material/snowflake.svg","material-snowman":"material/snowman.svg","material-snowmobile":"material/snowmobile.svg","material-snowshoeing":"material/snowshoeing.svg","material-soccer-field":"material/soccer-field.svg","material-soccer":"material/soccer.svg","material-social-distance-2-meters":"material/social-distance-2-meters.svg","material-social-distance-6-feet":"material/social-distance-6-feet.svg","material-sofa-outline":"material/sofa-outline.svg","material-sofa-single-outline":"material/sofa-single-outline.svg","material-sofa-single":"material/sofa-single.svg","material-sofa":"material/sofa.svg","material-solar-panel-large":"material/solar-panel-large.svg","material-solar-panel":"material/solar-panel.svg","material-solar-power-variant-outline":"material/solar-power-variant-outline.svg","material-solar-power-variant":"material/solar-power-variant.svg","material-solar-power":"material/solar-power.svg","material-soldering-iron":"material/soldering-iron.svg","material-solid":"material/solid.svg","material-sony-playstation":"material/sony-playstation.svg","material-sort-alphabetical-ascending-variant":"material/sort-alphabetical-ascending-variant.svg","material-sort-alphabetical-ascending":"material/sort-alphabetical-ascending.svg","material-sort-alphabetical-descending-variant":"material/sort-alphabetical-descending-variant.svg","material-sort-alphabetical-descending":"material/sort-alphabetical-descending.svg","material-sort-alphabetical-variant":"material/sort-alphabetical-variant.svg","material-sort-ascending":"material/sort-ascending.svg","material-sort-bool-ascending-variant":"material/sort-bool-ascending-variant.svg","material-sort-bool-ascending":"material/sort-bool-ascending.svg","material-sort-bool-descending-variant":"material/sort-bool-descending-variant.svg","material-sort-bool-descending":"material/sort-bool-descending.svg","material-sort-calendar-ascending":"material/sort-calendar-ascending.svg","material-sort-calendar-descending":"material/sort-calendar-descending.svg","material-sort-clock-ascending-outline":"material/sort-clock-ascending-outline.svg","material-sort-clock-ascending":"material/sort-clock-ascending.svg","material-sort-clock-descending-outline":"material/sort-clock-descending-outline.svg","material-sort-clock-descending":"material/sort-clock-descending.svg","material-sort-descending":"material/sort-descending.svg","material-sort-numeric-ascending-variant":"material/sort-numeric-ascending-variant.svg","material-sort-numeric-ascending":"material/sort-numeric-ascending.svg","material-sort-numeric-descending-variant":"material/sort-numeric-descending-variant.svg","material-sort-numeric-descending":"material/sort-numeric-descending.svg","material-sort-numeric-variant":"material/sort-numeric-variant.svg","material-sort-reverse-variant":"material/sort-reverse-variant.svg","material-sort-variant-lock-open":"material/sort-variant-lock-open.svg","material-sort-variant-lock":"material/sort-variant-lock.svg","material-sort-variant-off":"material/sort-variant-off.svg","material-sort-variant-remove":"material/sort-variant-remove.svg","material-sort-variant":"material/sort-variant.svg","material-sort":"material/sort.svg","material-soundbar":"material/soundbar.svg","material-soundcloud":"material/soundcloud.svg","material-source-branch-check":"material/source-branch-check.svg","material-source-branch-minus":"material/source-branch-minus.svg","material-source-branch-plus":"material/source-branch-plus.svg","material-source-branch-refresh":"material/source-branch-refresh.svg","material-source-branch-remove":"material/source-branch-remove.svg","material-source-branch-sync":"material/source-branch-sync.svg","material-source-branch":"material/source-branch.svg","material-source-commit-end-local":"material/source-commit-end-local.svg","material-source-commit-end":"material/source-commit-end.svg","material-source-commit-local":"material/source-commit-local.svg","material-source-commit-next-local":"material/source-commit-next-local.svg","material-source-commit-start-next-local":"material/source-commit-start-next-local.svg","material-source-commit-start":"material/source-commit-start.svg","material-source-commit":"material/source-commit.svg","material-source-fork":"material/source-fork.svg","material-source-merge":"material/source-merge.svg","material-source-pull":"material/source-pull.svg","material-source-repository-multiple":"material/source-repository-multiple.svg","material-source-repository":"material/source-repository.svg","material-soy-sauce-off":"material/soy-sauce-off.svg","material-soy-sauce":"material/soy-sauce.svg","material-spa-outline":"material/spa-outline.svg","material-spa":"material/spa.svg","material-space-invaders":"material/space-invaders.svg","material-space-station":"material/space-station.svg","material-spade":"material/spade.svg","material-speaker-bluetooth":"material/speaker-bluetooth.svg","material-speaker-message":"material/speaker-message.svg","material-speaker-multiple":"material/speaker-multiple.svg","material-speaker-off":"material/speaker-off.svg","material-speaker-pause":"material/speaker-pause.svg","material-speaker-play":"material/speaker-play.svg","material-speaker-stop":"material/speaker-stop.svg","material-speaker-wireless":"material/speaker-wireless.svg","material-speaker":"material/speaker.svg","material-spear":"material/spear.svg","material-speedometer-medium":"material/speedometer-medium.svg","material-speedometer-slow":"material/speedometer-slow.svg","material-speedometer":"material/speedometer.svg","material-spellcheck":"material/spellcheck.svg","material-sphere-off":"material/sphere-off.svg","material-sphere":"material/sphere.svg","material-spider-outline":"material/spider-outline.svg","material-spider-thread":"material/spider-thread.svg","material-spider-web":"material/spider-web.svg","material-spider":"material/spider.svg","material-spirit-level":"material/spirit-level.svg","material-spoon-sugar":"material/spoon-sugar.svg","material-spotify":"material/spotify.svg","material-spotlight-beam":"material/spotlight-beam.svg","material-spotlight":"material/spotlight.svg","material-spray-bottle":"material/spray-bottle.svg","material-spray":"material/spray.svg","material-sprinkler-fire":"material/sprinkler-fire.svg","material-sprinkler-variant":"material/sprinkler-variant.svg","material-sprinkler":"material/sprinkler.svg","material-sprout-outline":"material/sprout-outline.svg","material-sprout":"material/sprout.svg","material-square-circle-outline":"material/square-circle-outline.svg","material-square-circle":"material/square-circle.svg","material-square-edit-outline":"material/square-edit-outline.svg","material-square-medium-outline":"material/square-medium-outline.svg","material-square-medium":"material/square-medium.svg","material-square-off-outline":"material/square-off-outline.svg","material-square-off":"material/square-off.svg","material-square-opacity":"material/square-opacity.svg","material-square-outline":"material/square-outline.svg","material-square-root-box":"material/square-root-box.svg","material-square-root":"material/square-root.svg","material-square-rounded-badge-outline":"material/square-rounded-badge-outline.svg","material-square-rounded-badge":"material/square-rounded-badge.svg","material-square-rounded-outline":"material/square-rounded-outline.svg","material-square-rounded":"material/square-rounded.svg","material-square-small":"material/square-small.svg","material-square-wave":"material/square-wave.svg","material-square":"material/square.svg","material-squeegee":"material/squeegee.svg","material-ssh":"material/ssh.svg","material-stack-exchange":"material/stack-exchange.svg","material-stack-overflow":"material/stack-overflow.svg","material-stackpath":"material/stackpath.svg","material-stadium-outline":"material/stadium-outline.svg","material-stadium-variant":"material/stadium-variant.svg","material-stadium":"material/stadium.svg","material-stairs-box":"material/stairs-box.svg","material-stairs-down":"material/stairs-down.svg","material-stairs-up":"material/stairs-up.svg","material-stairs":"material/stairs.svg","material-stamper":"material/stamper.svg","material-standard-definition":"material/standard-definition.svg","material-star-box-multiple-outline":"material/star-box-multiple-outline.svg","material-star-box-multiple":"material/star-box-multiple.svg","material-star-box-outline":"material/star-box-outline.svg","material-star-box":"material/star-box.svg","material-star-check-outline":"material/star-check-outline.svg","material-star-check":"material/star-check.svg","material-star-circle-outline":"material/star-circle-outline.svg","material-star-circle":"material/star-circle.svg","material-star-cog-outline":"material/star-cog-outline.svg","material-star-cog":"material/star-cog.svg","material-star-crescent":"material/star-crescent.svg","material-star-david":"material/star-david.svg","material-star-face":"material/star-face.svg","material-star-four-points-box-outline":"material/star-four-points-box-outline.svg","material-star-four-points-box":"material/star-four-points-box.svg","material-star-four-points-circle-outline":"material/star-four-points-circle-outline.svg","material-star-four-points-circle":"material/star-four-points-circle.svg","material-star-four-points-outline":"material/star-four-points-outline.svg","material-star-four-points-small":"material/star-four-points-small.svg","material-star-four-points":"material/star-four-points.svg","material-star-half-full":"material/star-half-full.svg","material-star-half":"material/star-half.svg","material-star-minus-outline":"material/star-minus-outline.svg","material-star-minus":"material/star-minus.svg","material-star-off-outline":"material/star-off-outline.svg","material-star-off":"material/star-off.svg","material-star-outline":"material/star-outline.svg","material-star-plus-outline":"material/star-plus-outline.svg","material-star-plus":"material/star-plus.svg","material-star-remove-outline":"material/star-remove-outline.svg","material-star-remove":"material/star-remove.svg","material-star-settings-outline":"material/star-settings-outline.svg","material-star-settings":"material/star-settings.svg","material-star-shooting-outline":"material/star-shooting-outline.svg","material-star-shooting":"material/star-shooting.svg","material-star-three-points-outline":"material/star-three-points-outline.svg","material-star-three-points":"material/star-three-points.svg","material-star":"material/star.svg","material-state-machine":"material/state-machine.svg","material-steam":"material/steam.svg","material-steering-off":"material/steering-off.svg","material-steering":"material/steering.svg","material-step-backward-2":"material/step-backward-2.svg","material-step-backward":"material/step-backward.svg","material-step-forward-2":"material/step-forward-2.svg","material-step-forward":"material/step-forward.svg","material-stethoscope":"material/stethoscope.svg","material-sticker-alert-outline":"material/sticker-alert-outline.svg","material-sticker-alert":"material/sticker-alert.svg","material-sticker-check-outline":"material/sticker-check-outline.svg","material-sticker-check":"material/sticker-check.svg","material-sticker-circle-outline":"material/sticker-circle-outline.svg","material-sticker-emoji":"material/sticker-emoji.svg","material-sticker-minus-outline":"material/sticker-minus-outline.svg","material-sticker-minus":"material/sticker-minus.svg","material-sticker-outline":"material/sticker-outline.svg","material-sticker-plus-outline":"material/sticker-plus-outline.svg","material-sticker-plus":"material/sticker-plus.svg","material-sticker-remove-outline":"material/sticker-remove-outline.svg","material-sticker-remove":"material/sticker-remove.svg","material-sticker-text-outline":"material/sticker-text-outline.svg","material-sticker-text":"material/sticker-text.svg","material-sticker":"material/sticker.svg","material-stocking":"material/stocking.svg","material-stomach":"material/stomach.svg","material-stool-outline":"material/stool-outline.svg","material-stool":"material/stool.svg","material-stop-circle-outline":"material/stop-circle-outline.svg","material-stop-circle":"material/stop-circle.svg","material-stop":"material/stop.svg","material-storage-tank-outline":"material/storage-tank-outline.svg","material-storage-tank":"material/storage-tank.svg","material-store-24-hour":"material/store-24-hour.svg","material-store-alert-outline":"material/store-alert-outline.svg","material-store-alert":"material/store-alert.svg","material-store-check-outline":"material/store-check-outline.svg","material-store-check":"material/store-check.svg","material-store-clock-outline":"material/store-clock-outline.svg","material-store-clock":"material/store-clock.svg","material-store-cog-outline":"material/store-cog-outline.svg","material-store-cog":"material/store-cog.svg","material-store-edit-outline":"material/store-edit-outline.svg","material-store-edit":"material/store-edit.svg","material-store-marker-outline":"material/store-marker-outline.svg","material-store-marker":"material/store-marker.svg","material-store-minus-outline":"material/store-minus-outline.svg","material-store-minus":"material/store-minus.svg","material-store-off-outline":"material/store-off-outline.svg","material-store-off":"material/store-off.svg","material-store-outline":"material/store-outline.svg","material-store-plus-outline":"material/store-plus-outline.svg","material-store-plus":"material/store-plus.svg","material-store-remove-outline":"material/store-remove-outline.svg","material-store-remove":"material/store-remove.svg","material-store-search-outline":"material/store-search-outline.svg","material-store-search":"material/store-search.svg","material-store-settings-outline":"material/store-settings-outline.svg","material-store-settings":"material/store-settings.svg","material-store":"material/store.svg","material-storefront-check-outline":"material/storefront-check-outline.svg","material-storefront-check":"material/storefront-check.svg","material-storefront-edit-outline":"material/storefront-edit-outline.svg","material-storefront-edit":"material/storefront-edit.svg","material-storefront-minus-outline":"material/storefront-minus-outline.svg","material-storefront-minus":"material/storefront-minus.svg","material-storefront-outline":"material/storefront-outline.svg","material-storefront-plus-outline":"material/storefront-plus-outline.svg","material-storefront-plus":"material/storefront-plus.svg","material-storefront-remove-outline":"material/storefront-remove-outline.svg","material-storefront-remove":"material/storefront-remove.svg","material-storefront":"material/storefront.svg","material-stove":"material/stove.svg","material-strategy":"material/strategy.svg","material-stretch-to-page-outline":"material/stretch-to-page-outline.svg","material-stretch-to-page":"material/stretch-to-page.svg","material-string-lights-off":"material/string-lights-off.svg","material-string-lights":"material/string-lights.svg","material-subdirectory-arrow-left":"material/subdirectory-arrow-left.svg","material-subdirectory-arrow-right":"material/subdirectory-arrow-right.svg","material-submarine":"material/submarine.svg","material-subtitles-outline":"material/subtitles-outline.svg","material-subtitles":"material/subtitles.svg","material-subway-alert-variant":"material/subway-alert-variant.svg","material-subway-variant":"material/subway-variant.svg","material-subway":"material/subway.svg","material-summit":"material/summit.svg","material-sun-angle-outline":"material/sun-angle-outline.svg","material-sun-angle":"material/sun-angle.svg","material-sun-clock-outline":"material/sun-clock-outline.svg","material-sun-clock":"material/sun-clock.svg","material-sun-compass":"material/sun-compass.svg","material-sun-snowflake-variant":"material/sun-snowflake-variant.svg","material-sun-snowflake":"material/sun-snowflake.svg","material-sun-thermometer-outline":"material/sun-thermometer-outline.svg","material-sun-thermometer":"material/sun-thermometer.svg","material-sun-wireless-outline":"material/sun-wireless-outline.svg","material-sun-wireless":"material/sun-wireless.svg","material-sunglasses":"material/sunglasses.svg","material-surfing":"material/surfing.svg","material-surround-sound-2-0":"material/surround-sound-2-0.svg","material-surround-sound-2-1":"material/surround-sound-2-1.svg","material-surround-sound-3-1":"material/surround-sound-3-1.svg","material-surround-sound-5-1-2":"material/surround-sound-5-1-2.svg","material-surround-sound-5-1":"material/surround-sound-5-1.svg","material-surround-sound-7-1":"material/surround-sound-7-1.svg","material-surround-sound":"material/surround-sound.svg","material-svg":"material/svg.svg","material-swap-horizontal-bold":"material/swap-horizontal-bold.svg","material-swap-horizontal-circle-outline":"material/swap-horizontal-circle-outline.svg","material-swap-horizontal-circle":"material/swap-horizontal-circle.svg","material-swap-horizontal-hidden":"material/swap-horizontal-hidden.svg","material-swap-horizontal-variant":"material/swap-horizontal-variant.svg","material-swap-horizontal":"material/swap-horizontal.svg","material-swap-vertical-bold":"material/swap-vertical-bold.svg","material-swap-vertical-circle-outline":"material/swap-vertical-circle-outline.svg","material-swap-vertical-circle":"material/swap-vertical-circle.svg","material-swap-vertical-variant":"material/swap-vertical-variant.svg","material-swap-vertical":"material/swap-vertical.svg","material-swim":"material/swim.svg","material-switch":"material/switch.svg","material-sword-cross":"material/sword-cross.svg","material-sword":"material/sword.svg","material-syllabary-hangul":"material/syllabary-hangul.svg","material-syllabary-hiragana":"material/syllabary-hiragana.svg","material-syllabary-katakana-halfwidth":"material/syllabary-katakana-halfwidth.svg","material-syllabary-katakana":"material/syllabary-katakana.svg","material-symbol":"material/symbol.svg","material-symfony":"material/symfony.svg","material-synagogue-outline":"material/synagogue-outline.svg","material-synagogue":"material/synagogue.svg","material-sync-alert":"material/sync-alert.svg","material-sync-circle":"material/sync-circle.svg","material-sync-off":"material/sync-off.svg","material-sync":"material/sync.svg","material-tab-minus":"material/tab-minus.svg","material-tab-plus":"material/tab-plus.svg","material-tab-remove":"material/tab-remove.svg","material-tab-search":"material/tab-search.svg","material-tab-unselected":"material/tab-unselected.svg","material-tab":"material/tab.svg","material-table-account":"material/table-account.svg","material-table-alert":"material/table-alert.svg","material-table-arrow-down":"material/table-arrow-down.svg","material-table-arrow-left":"material/table-arrow-left.svg","material-table-arrow-right":"material/table-arrow-right.svg","material-table-arrow-up":"material/table-arrow-up.svg","material-table-border":"material/table-border.svg","material-table-cancel":"material/table-cancel.svg","material-table-chair":"material/table-chair.svg","material-table-check":"material/table-check.svg","material-table-clock":"material/table-clock.svg","material-table-cog":"material/table-cog.svg","material-table-column-plus-after":"material/table-column-plus-after.svg","material-table-column-plus-before":"material/table-column-plus-before.svg","material-table-column-remove":"material/table-column-remove.svg","material-table-column-width":"material/table-column-width.svg","material-table-column":"material/table-column.svg","material-table-edit":"material/table-edit.svg","material-table-eye-off":"material/table-eye-off.svg","material-table-eye":"material/table-eye.svg","material-table-filter":"material/table-filter.svg","material-table-furniture":"material/table-furniture.svg","material-table-headers-eye-off":"material/table-headers-eye-off.svg","material-table-headers-eye":"material/table-headers-eye.svg","material-table-heart":"material/table-heart.svg","material-table-key":"material/table-key.svg","material-table-large-plus":"material/table-large-plus.svg","material-table-large-remove":"material/table-large-remove.svg","material-table-large":"material/table-large.svg","material-table-lock":"material/table-lock.svg","material-table-merge-cells":"material/table-merge-cells.svg","material-table-minus":"material/table-minus.svg","material-table-multiple":"material/table-multiple.svg","material-table-network":"material/table-network.svg","material-table-of-contents":"material/table-of-contents.svg","material-table-off":"material/table-off.svg","material-table-picnic":"material/table-picnic.svg","material-table-pivot":"material/table-pivot.svg","material-table-plus":"material/table-plus.svg","material-table-question":"material/table-question.svg","material-table-refresh":"material/table-refresh.svg","material-table-remove":"material/table-remove.svg","material-table-row-height":"material/table-row-height.svg","material-table-row-plus-after":"material/table-row-plus-after.svg","material-table-row-plus-before":"material/table-row-plus-before.svg","material-table-row-remove":"material/table-row-remove.svg","material-table-row":"material/table-row.svg","material-table-search":"material/table-search.svg","material-table-settings":"material/table-settings.svg","material-table-split-cell":"material/table-split-cell.svg","material-table-star":"material/table-star.svg","material-table-sync":"material/table-sync.svg","material-table-tennis":"material/table-tennis.svg","material-table":"material/table.svg","material-tablet-cellphone":"material/tablet-cellphone.svg","material-tablet-dashboard":"material/tablet-dashboard.svg","material-tablet":"material/tablet.svg","material-taco":"material/taco.svg","material-tag-arrow-down-outline":"material/tag-arrow-down-outline.svg","material-tag-arrow-down":"material/tag-arrow-down.svg","material-tag-arrow-left-outline":"material/tag-arrow-left-outline.svg","material-tag-arrow-left":"material/tag-arrow-left.svg","material-tag-arrow-right-outline":"material/tag-arrow-right-outline.svg","material-tag-arrow-right":"material/tag-arrow-right.svg","material-tag-arrow-up-outline":"material/tag-arrow-up-outline.svg","material-tag-arrow-up":"material/tag-arrow-up.svg","material-tag-check-outline":"material/tag-check-outline.svg","material-tag-check":"material/tag-check.svg","material-tag-edit-outline":"material/tag-edit-outline.svg","material-tag-edit":"material/tag-edit.svg","material-tag-faces":"material/tag-faces.svg","material-tag-heart-outline":"material/tag-heart-outline.svg","material-tag-heart":"material/tag-heart.svg","material-tag-hidden":"material/tag-hidden.svg","material-tag-minus-outline":"material/tag-minus-outline.svg","material-tag-minus":"material/tag-minus.svg","material-tag-multiple-outline":"material/tag-multiple-outline.svg","material-tag-multiple":"material/tag-multiple.svg","material-tag-off-outline":"material/tag-off-outline.svg","material-tag-off":"material/tag-off.svg","material-tag-outline":"material/tag-outline.svg","material-tag-plus-outline":"material/tag-plus-outline.svg","material-tag-plus":"material/tag-plus.svg","material-tag-remove-outline":"material/tag-remove-outline.svg","material-tag-remove":"material/tag-remove.svg","material-tag-search-outline":"material/tag-search-outline.svg","material-tag-search":"material/tag-search.svg","material-tag-text-outline":"material/tag-text-outline.svg","material-tag-text":"material/tag-text.svg","material-tag":"material/tag.svg","material-tailwind":"material/tailwind.svg","material-tally-mark-1":"material/tally-mark-1.svg","material-tally-mark-2":"material/tally-mark-2.svg","material-tally-mark-3":"material/tally-mark-3.svg","material-tally-mark-4":"material/tally-mark-4.svg","material-tally-mark-5":"material/tally-mark-5.svg","material-tangram":"material/tangram.svg","material-tank":"material/tank.svg","material-tanker-truck":"material/tanker-truck.svg","material-tape-drive":"material/tape-drive.svg","material-tape-measure":"material/tape-measure.svg","material-target-account":"material/target-account.svg","material-target-variant":"material/target-variant.svg","material-target":"material/target.svg","material-taxi":"material/taxi.svg","material-tea-outline":"material/tea-outline.svg","material-tea":"material/tea.svg","material-teamviewer":"material/teamviewer.svg","material-teddy-bear":"material/teddy-bear.svg","material-telescope":"material/telescope.svg","material-television-ambient-light":"material/television-ambient-light.svg","material-television-box":"material/television-box.svg","material-television-classic-off":"material/television-classic-off.svg","material-television-classic":"material/television-classic.svg","material-television-guide":"material/television-guide.svg","material-television-off":"material/television-off.svg","material-television-pause":"material/television-pause.svg","material-television-play":"material/television-play.svg","material-television-shimmer":"material/television-shimmer.svg","material-television-speaker-off":"material/television-speaker-off.svg","material-television-speaker":"material/television-speaker.svg","material-television-stop":"material/television-stop.svg","material-television":"material/television.svg","material-temperature-celsius":"material/temperature-celsius.svg","material-temperature-fahrenheit":"material/temperature-fahrenheit.svg","material-temperature-kelvin":"material/temperature-kelvin.svg","material-temple-buddhist-outline":"material/temple-buddhist-outline.svg","material-temple-buddhist":"material/temple-buddhist.svg","material-temple-hindu-outline":"material/temple-hindu-outline.svg","material-temple-hindu":"material/temple-hindu.svg","material-tennis-ball-outline":"material/tennis-ball-outline.svg","material-tennis-ball":"material/tennis-ball.svg","material-tennis":"material/tennis.svg","material-tent":"material/tent.svg","material-terraform":"material/terraform.svg","material-terrain":"material/terrain.svg","material-test-tube-empty":"material/test-tube-empty.svg","material-test-tube-off":"material/test-tube-off.svg","material-test-tube":"material/test-tube.svg","material-text-account":"material/text-account.svg","material-text-box-check-outline":"material/text-box-check-outline.svg","material-text-box-check":"material/text-box-check.svg","material-text-box-edit-outline":"material/text-box-edit-outline.svg","material-text-box-edit":"material/text-box-edit.svg","material-text-box-minus-outline":"material/text-box-minus-outline.svg","material-text-box-minus":"material/text-box-minus.svg","material-text-box-multiple-outline":"material/text-box-multiple-outline.svg","material-text-box-multiple":"material/text-box-multiple.svg","material-text-box-outline":"material/text-box-outline.svg","material-text-box-plus-outline":"material/text-box-plus-outline.svg","material-text-box-plus":"material/text-box-plus.svg","material-text-box-remove-outline":"material/text-box-remove-outline.svg","material-text-box-remove":"material/text-box-remove.svg","material-text-box-search-outline":"material/text-box-search-outline.svg","material-text-box-search":"material/text-box-search.svg","material-text-box":"material/text-box.svg","material-text-long":"material/text-long.svg","material-text-recognition":"material/text-recognition.svg","material-text-search-variant":"material/text-search-variant.svg","material-text-search":"material/text-search.svg","material-text-shadow":"material/text-shadow.svg","material-text-short":"material/text-short.svg","material-text":"material/text.svg","material-texture-box":"material/texture-box.svg","material-texture":"material/texture.svg","material-theater":"material/theater.svg","material-theme-light-dark":"material/theme-light-dark.svg","material-thermometer-alert":"material/thermometer-alert.svg","material-thermometer-auto":"material/thermometer-auto.svg","material-thermometer-bluetooth":"material/thermometer-bluetooth.svg","material-thermometer-check":"material/thermometer-check.svg","material-thermometer-chevron-down":"material/thermometer-chevron-down.svg","material-thermometer-chevron-up":"material/thermometer-chevron-up.svg","material-thermometer-high":"material/thermometer-high.svg","material-thermometer-lines":"material/thermometer-lines.svg","material-thermometer-low":"material/thermometer-low.svg","material-thermometer-minus":"material/thermometer-minus.svg","material-thermometer-off":"material/thermometer-off.svg","material-thermometer-plus":"material/thermometer-plus.svg","material-thermometer-probe-off":"material/thermometer-probe-off.svg","material-thermometer-probe":"material/thermometer-probe.svg","material-thermometer-water":"material/thermometer-water.svg","material-thermometer":"material/thermometer.svg","material-thermostat-auto":"material/thermostat-auto.svg","material-thermostat-box-auto":"material/thermostat-box-auto.svg","material-thermostat-box":"material/thermostat-box.svg","material-thermostat-cog":"material/thermostat-cog.svg","material-thermostat":"material/thermostat.svg","material-thought-bubble-outline":"material/thought-bubble-outline.svg","material-thought-bubble":"material/thought-bubble.svg","material-thumb-down-outline":"material/thumb-down-outline.svg","material-thumb-down":"material/thumb-down.svg","material-thumb-up-outline":"material/thumb-up-outline.svg","material-thumb-up":"material/thumb-up.svg","material-thumbs-up-down-outline":"material/thumbs-up-down-outline.svg","material-thumbs-up-down":"material/thumbs-up-down.svg","material-ticket-account":"material/ticket-account.svg","material-ticket-confirmation-outline":"material/ticket-confirmation-outline.svg","material-ticket-confirmation":"material/ticket-confirmation.svg","material-ticket-outline":"material/ticket-outline.svg","material-ticket-percent-outline":"material/ticket-percent-outline.svg","material-ticket-percent":"material/ticket-percent.svg","material-ticket":"material/ticket.svg","material-tie":"material/tie.svg","material-tilde-off":"material/tilde-off.svg","material-tilde":"material/tilde.svg","material-timelapse":"material/timelapse.svg","material-timeline-alert-outline":"material/timeline-alert-outline.svg","material-timeline-alert":"material/timeline-alert.svg","material-timeline-check-outline":"material/timeline-check-outline.svg","material-timeline-check":"material/timeline-check.svg","material-timeline-clock-outline":"material/timeline-clock-outline.svg","material-timeline-clock":"material/timeline-clock.svg","material-timeline-minus-outline":"material/timeline-minus-outline.svg","material-timeline-minus":"material/timeline-minus.svg","material-timeline-outline":"material/timeline-outline.svg","material-timeline-plus-outline":"material/timeline-plus-outline.svg","material-timeline-plus":"material/timeline-plus.svg","material-timeline-question-outline":"material/timeline-question-outline.svg","material-timeline-question":"material/timeline-question.svg","material-timeline-remove-outline":"material/timeline-remove-outline.svg","material-timeline-remove":"material/timeline-remove.svg","material-timeline-text-outline":"material/timeline-text-outline.svg","material-timeline-text":"material/timeline-text.svg","material-timeline":"material/timeline.svg","material-timer-10":"material/timer-10.svg","material-timer-3":"material/timer-3.svg","material-timer-alert-outline":"material/timer-alert-outline.svg","material-timer-alert":"material/timer-alert.svg","material-timer-cancel-outline":"material/timer-cancel-outline.svg","material-timer-cancel":"material/timer-cancel.svg","material-timer-check-outline":"material/timer-check-outline.svg","material-timer-check":"material/timer-check.svg","material-timer-cog-outline":"material/timer-cog-outline.svg","material-timer-cog":"material/timer-cog.svg","material-timer-edit-outline":"material/timer-edit-outline.svg","material-timer-edit":"material/timer-edit.svg","material-timer-lock-open-outline":"material/timer-lock-open-outline.svg","material-timer-lock-open":"material/timer-lock-open.svg","material-timer-lock-outline":"material/timer-lock-outline.svg","material-timer-lock":"material/timer-lock.svg","material-timer-marker-outline":"material/timer-marker-outline.svg","material-timer-marker":"material/timer-marker.svg","material-timer-minus-outline":"material/timer-minus-outline.svg","material-timer-minus":"material/timer-minus.svg","material-timer-music-outline":"material/timer-music-outline.svg","material-timer-music":"material/timer-music.svg","material-timer-off-outline":"material/timer-off-outline.svg","material-timer-off":"material/timer-off.svg","material-timer-outline":"material/timer-outline.svg","material-timer-pause-outline":"material/timer-pause-outline.svg","material-timer-pause":"material/timer-pause.svg","material-timer-play-outline":"material/timer-play-outline.svg","material-timer-play":"material/timer-play.svg","material-timer-plus-outline":"material/timer-plus-outline.svg","material-timer-plus":"material/timer-plus.svg","material-timer-refresh-outline":"material/timer-refresh-outline.svg","material-timer-refresh":"material/timer-refresh.svg","material-timer-remove-outline":"material/timer-remove-outline.svg","material-timer-remove":"material/timer-remove.svg","material-timer-sand-complete":"material/timer-sand-complete.svg","material-timer-sand-empty":"material/timer-sand-empty.svg","material-timer-sand-full":"material/timer-sand-full.svg","material-timer-sand-paused":"material/timer-sand-paused.svg","material-timer-sand":"material/timer-sand.svg","material-timer-settings-outline":"material/timer-settings-outline.svg","material-timer-settings":"material/timer-settings.svg","material-timer-star-outline":"material/timer-star-outline.svg","material-timer-star":"material/timer-star.svg","material-timer-stop-outline":"material/timer-stop-outline.svg","material-timer-stop":"material/timer-stop.svg","material-timer-sync-outline":"material/timer-sync-outline.svg","material-timer-sync":"material/timer-sync.svg","material-timer":"material/timer.svg","material-timetable":"material/timetable.svg","material-tire":"material/tire.svg","material-toaster-off":"material/toaster-off.svg","material-toaster-oven":"material/toaster-oven.svg","material-toaster":"material/toaster.svg","material-toggle-switch-off-outline":"material/toggle-switch-off-outline.svg","material-toggle-switch-off":"material/toggle-switch-off.svg","material-toggle-switch-outline":"material/toggle-switch-outline.svg","material-toggle-switch-variant-off":"material/toggle-switch-variant-off.svg","material-toggle-switch-variant":"material/toggle-switch-variant.svg","material-toggle-switch":"material/toggle-switch.svg","material-toilet":"material/toilet.svg","material-toolbox-outline":"material/toolbox-outline.svg","material-toolbox":"material/toolbox.svg","material-tools":"material/tools.svg","material-tooltip-account":"material/tooltip-account.svg","material-tooltip-cellphone":"material/tooltip-cellphone.svg","material-tooltip-check-outline":"material/tooltip-check-outline.svg","material-tooltip-check":"material/tooltip-check.svg","material-tooltip-edit-outline":"material/tooltip-edit-outline.svg","material-tooltip-edit":"material/tooltip-edit.svg","material-tooltip-image-outline":"material/tooltip-image-outline.svg","material-tooltip-image":"material/tooltip-image.svg","material-tooltip-minus-outline":"material/tooltip-minus-outline.svg","material-tooltip-minus":"material/tooltip-minus.svg","material-tooltip-outline":"material/tooltip-outline.svg","material-tooltip-plus-outline":"material/tooltip-plus-outline.svg","material-tooltip-plus":"material/tooltip-plus.svg","material-tooltip-question-outline":"material/tooltip-question-outline.svg","material-tooltip-question":"material/tooltip-question.svg","material-tooltip-remove-outline":"material/tooltip-remove-outline.svg","material-tooltip-remove":"material/tooltip-remove.svg","material-tooltip-text-outline":"material/tooltip-text-outline.svg","material-tooltip-text":"material/tooltip-text.svg","material-tooltip":"material/tooltip.svg","material-tooth-outline":"material/tooth-outline.svg","material-tooth":"material/tooth.svg","material-toothbrush-electric":"material/toothbrush-electric.svg","material-toothbrush-paste":"material/toothbrush-paste.svg","material-toothbrush":"material/toothbrush.svg","material-torch":"material/torch.svg","material-tortoise":"material/tortoise.svg","material-toslink":"material/toslink.svg","material-touch-text-outline":"material/touch-text-outline.svg","material-tournament":"material/tournament.svg","material-tow-truck":"material/tow-truck.svg","material-tower-beach":"material/tower-beach.svg","material-tower-fire":"material/tower-fire.svg","material-town-hall":"material/town-hall.svg","material-toy-brick-marker-outline":"material/toy-brick-marker-outline.svg","material-toy-brick-marker":"material/toy-brick-marker.svg","material-toy-brick-minus-outline":"material/toy-brick-minus-outline.svg","material-toy-brick-minus":"material/toy-brick-minus.svg","material-toy-brick-outline":"material/toy-brick-outline.svg","material-toy-brick-plus-outline":"material/toy-brick-plus-outline.svg","material-toy-brick-plus":"material/toy-brick-plus.svg","material-toy-brick-remove-outline":"material/toy-brick-remove-outline.svg","material-toy-brick-remove":"material/toy-brick-remove.svg","material-toy-brick-search-outline":"material/toy-brick-search-outline.svg","material-toy-brick-search":"material/toy-brick-search.svg","material-toy-brick":"material/toy-brick.svg","material-track-light-off":"material/track-light-off.svg","material-track-light":"material/track-light.svg","material-trackpad-lock":"material/trackpad-lock.svg","material-trackpad":"material/trackpad.svg","material-tractor-variant":"material/tractor-variant.svg","material-tractor":"material/tractor.svg","material-trademark":"material/trademark.svg","material-traffic-cone":"material/traffic-cone.svg","material-traffic-light-outline":"material/traffic-light-outline.svg","material-traffic-light":"material/traffic-light.svg","material-train-bus":"material/train-bus.svg","material-train-car-autorack":"material/train-car-autorack.svg","material-train-car-box-full":"material/train-car-box-full.svg","material-train-car-box-open":"material/train-car-box-open.svg","material-train-car-box":"material/train-car-box.svg","material-train-car-caboose":"material/train-car-caboose.svg","material-train-car-centerbeam-full":"material/train-car-centerbeam-full.svg","material-train-car-centerbeam":"material/train-car-centerbeam.svg","material-train-car-container":"material/train-car-container.svg","material-train-car-flatbed-car":"material/train-car-flatbed-car.svg","material-train-car-flatbed-tank":"material/train-car-flatbed-tank.svg","material-train-car-flatbed":"material/train-car-flatbed.svg","material-train-car-gondola-full":"material/train-car-gondola-full.svg","material-train-car-gondola":"material/train-car-gondola.svg","material-train-car-hopper-covered":"material/train-car-hopper-covered.svg","material-train-car-hopper-full":"material/train-car-hopper-full.svg","material-train-car-hopper":"material/train-car-hopper.svg","material-train-car-intermodal":"material/train-car-intermodal.svg","material-train-car-passenger-door-open":"material/train-car-passenger-door-open.svg","material-train-car-passenger-door":"material/train-car-passenger-door.svg","material-train-car-passenger-variant":"material/train-car-passenger-variant.svg","material-train-car-passenger":"material/train-car-passenger.svg","material-train-car-tank":"material/train-car-tank.svg","material-train-car":"material/train-car.svg","material-train-variant":"material/train-variant.svg","material-train":"material/train.svg","material-tram-side":"material/tram-side.svg","material-tram":"material/tram.svg","material-transcribe-close":"material/transcribe-close.svg","material-transcribe":"material/transcribe.svg","material-transfer-down":"material/transfer-down.svg","material-transfer-left":"material/transfer-left.svg","material-transfer-right":"material/transfer-right.svg","material-transfer-up":"material/transfer-up.svg","material-transfer":"material/transfer.svg","material-transit-connection-horizontal":"material/transit-connection-horizontal.svg","material-transit-connection-variant":"material/transit-connection-variant.svg","material-transit-connection":"material/transit-connection.svg","material-transit-detour":"material/transit-detour.svg","material-transit-skip":"material/transit-skip.svg","material-transit-transfer":"material/transit-transfer.svg","material-transition-masked":"material/transition-masked.svg","material-transition":"material/transition.svg","material-translate-off":"material/translate-off.svg","material-translate-variant":"material/translate-variant.svg","material-translate":"material/translate.svg","material-transmission-tower-export":"material/transmission-tower-export.svg","material-transmission-tower-import":"material/transmission-tower-import.svg","material-transmission-tower-off":"material/transmission-tower-off.svg","material-transmission-tower":"material/transmission-tower.svg","material-trash-can-outline":"material/trash-can-outline.svg","material-trash-can":"material/trash-can.svg","material-tray-alert":"material/tray-alert.svg","material-tray-arrow-down":"material/tray-arrow-down.svg","material-tray-arrow-up":"material/tray-arrow-up.svg","material-tray-full":"material/tray-full.svg","material-tray-minus":"material/tray-minus.svg","material-tray-plus":"material/tray-plus.svg","material-tray-remove":"material/tray-remove.svg","material-tray":"material/tray.svg","material-treasure-chest-outline":"material/treasure-chest-outline.svg","material-treasure-chest":"material/treasure-chest.svg","material-tree-outline":"material/tree-outline.svg","material-tree":"material/tree.svg","material-trello":"material/trello.svg","material-trending-down":"material/trending-down.svg","material-trending-neutral":"material/trending-neutral.svg","material-trending-up":"material/trending-up.svg","material-triangle-down-outline":"material/triangle-down-outline.svg","material-triangle-down":"material/triangle-down.svg","material-triangle-outline":"material/triangle-outline.svg","material-triangle-small-down":"material/triangle-small-down.svg","material-triangle-small-up":"material/triangle-small-up.svg","material-triangle-wave":"material/triangle-wave.svg","material-triangle":"material/triangle.svg","material-triforce":"material/triforce.svg","material-trophy-award":"material/trophy-award.svg","material-trophy-broken":"material/trophy-broken.svg","material-trophy-outline":"material/trophy-outline.svg","material-trophy-variant-outline":"material/trophy-variant-outline.svg","material-trophy-variant":"material/trophy-variant.svg","material-trophy":"material/trophy.svg","material-truck-alert-outline":"material/truck-alert-outline.svg","material-truck-alert":"material/truck-alert.svg","material-truck-cargo-container":"material/truck-cargo-container.svg","material-truck-check-outline":"material/truck-check-outline.svg","material-truck-check":"material/truck-check.svg","material-truck-delivery-outline":"material/truck-delivery-outline.svg","material-truck-delivery":"material/truck-delivery.svg","material-truck-fast-outline":"material/truck-fast-outline.svg","material-truck-fast":"material/truck-fast.svg","material-truck-flatbed":"material/truck-flatbed.svg","material-truck-minus-outline":"material/truck-minus-outline.svg","material-truck-minus":"material/truck-minus.svg","material-truck-off-road-off":"material/truck-off-road-off.svg","material-truck-off-road":"material/truck-off-road.svg","material-truck-outline":"material/truck-outline.svg","material-truck-plus-outline":"material/truck-plus-outline.svg","material-truck-plus":"material/truck-plus.svg","material-truck-remove-outline":"material/truck-remove-outline.svg","material-truck-remove":"material/truck-remove.svg","material-truck-snowflake":"material/truck-snowflake.svg","material-truck-trailer":"material/truck-trailer.svg","material-truck":"material/truck.svg","material-trumpet":"material/trumpet.svg","material-tshirt-crew-outline":"material/tshirt-crew-outline.svg","material-tshirt-crew":"material/tshirt-crew.svg","material-tshirt-v-outline":"material/tshirt-v-outline.svg","material-tshirt-v":"material/tshirt-v.svg","material-tsunami":"material/tsunami.svg","material-tumble-dryer-alert":"material/tumble-dryer-alert.svg","material-tumble-dryer-off":"material/tumble-dryer-off.svg","material-tumble-dryer":"material/tumble-dryer.svg","material-tune-variant":"material/tune-variant.svg","material-tune-vertical-variant":"material/tune-vertical-variant.svg","material-tune-vertical":"material/tune-vertical.svg","material-tune":"material/tune.svg","material-tunnel-outline":"material/tunnel-outline.svg","material-tunnel":"material/tunnel.svg","material-turbine":"material/turbine.svg","material-turkey":"material/turkey.svg","material-turnstile-outline":"material/turnstile-outline.svg","material-turnstile":"material/turnstile.svg","material-turtle":"material/turtle.svg","material-twitch":"material/twitch.svg","material-twitter":"material/twitter.svg","material-two-factor-authentication":"material/two-factor-authentication.svg","material-typewriter":"material/typewriter.svg","material-ubisoft":"material/ubisoft.svg","material-ubuntu":"material/ubuntu.svg","material-ufo-outline":"material/ufo-outline.svg","material-ufo":"material/ufo.svg","material-ultra-high-definition":"material/ultra-high-definition.svg","material-umbraco":"material/umbraco.svg","material-umbrella-beach-outline":"material/umbrella-beach-outline.svg","material-umbrella-beach":"material/umbrella-beach.svg","material-umbrella-closed-outline":"material/umbrella-closed-outline.svg","material-umbrella-closed-variant":"material/umbrella-closed-variant.svg","material-umbrella-closed":"material/umbrella-closed.svg","material-umbrella-outline":"material/umbrella-outline.svg","material-umbrella":"material/umbrella.svg","material-underwear-outline":"material/underwear-outline.svg","material-undo-variant":"material/undo-variant.svg","material-undo":"material/undo.svg","material-unfold-less-horizontal":"material/unfold-less-horizontal.svg","material-unfold-less-vertical":"material/unfold-less-vertical.svg","material-unfold-more-horizontal":"material/unfold-more-horizontal.svg","material-unfold-more-vertical":"material/unfold-more-vertical.svg","material-ungroup":"material/ungroup.svg","material-unicode":"material/unicode.svg","material-unicorn-variant":"material/unicorn-variant.svg","material-unicorn":"material/unicorn.svg","material-unicycle":"material/unicycle.svg","material-unity":"material/unity.svg","material-unreal":"material/unreal.svg","material-update":"material/update.svg","material-upload-box-outline":"material/upload-box-outline.svg","material-upload-box":"material/upload-box.svg","material-upload-circle-outline":"material/upload-circle-outline.svg","material-upload-circle":"material/upload-circle.svg","material-upload-lock-outline":"material/upload-lock-outline.svg","material-upload-lock":"material/upload-lock.svg","material-upload-multiple-outline":"material/upload-multiple-outline.svg","material-upload-multiple":"material/upload-multiple.svg","material-upload-network-outline":"material/upload-network-outline.svg","material-upload-network":"material/upload-network.svg","material-upload-off-outline":"material/upload-off-outline.svg","material-upload-off":"material/upload-off.svg","material-upload-outline":"material/upload-outline.svg","material-upload":"material/upload.svg","material-usb-c-port":"material/usb-c-port.svg","material-usb-flash-drive-outline":"material/usb-flash-drive-outline.svg","material-usb-flash-drive":"material/usb-flash-drive.svg","material-usb-port":"material/usb-port.svg","material-usb":"material/usb.svg","material-vacuum-outline":"material/vacuum-outline.svg","material-vacuum":"material/vacuum.svg","material-valve-closed":"material/valve-closed.svg","material-valve-open":"material/valve-open.svg","material-valve":"material/valve.svg","material-van-passenger":"material/van-passenger.svg","material-van-utility":"material/van-utility.svg","material-vanish-quarter":"material/vanish-quarter.svg","material-vanish":"material/vanish.svg","material-vanity-light":"material/vanity-light.svg","material-variable-box":"material/variable-box.svg","material-variable":"material/variable.svg","material-vector-arrange-above":"material/vector-arrange-above.svg","material-vector-arrange-below":"material/vector-arrange-below.svg","material-vector-bezier":"material/vector-bezier.svg","material-vector-circle-variant":"material/vector-circle-variant.svg","material-vector-circle":"material/vector-circle.svg","material-vector-combine":"material/vector-combine.svg","material-vector-curve":"material/vector-curve.svg","material-vector-difference-ab":"material/vector-difference-ab.svg","material-vector-difference-ba":"material/vector-difference-ba.svg","material-vector-difference":"material/vector-difference.svg","material-vector-ellipse":"material/vector-ellipse.svg","material-vector-intersection":"material/vector-intersection.svg","material-vector-line":"material/vector-line.svg","material-vector-link":"material/vector-link.svg","material-vector-point-edit":"material/vector-point-edit.svg","material-vector-point-minus":"material/vector-point-minus.svg","material-vector-point-plus":"material/vector-point-plus.svg","material-vector-point-select":"material/vector-point-select.svg","material-vector-point":"material/vector-point.svg","material-vector-polygon-variant":"material/vector-polygon-variant.svg","material-vector-polygon":"material/vector-polygon.svg","material-vector-polyline-edit":"material/vector-polyline-edit.svg","material-vector-polyline-minus":"material/vector-polyline-minus.svg","material-vector-polyline-plus":"material/vector-polyline-plus.svg","material-vector-polyline-remove":"material/vector-polyline-remove.svg","material-vector-polyline":"material/vector-polyline.svg","material-vector-radius":"material/vector-radius.svg","material-vector-rectangle":"material/vector-rectangle.svg","material-vector-selection":"material/vector-selection.svg","material-vector-square-close":"material/vector-square-close.svg","material-vector-square-edit":"material/vector-square-edit.svg","material-vector-square-minus":"material/vector-square-minus.svg","material-vector-square-open":"material/vector-square-open.svg","material-vector-square-plus":"material/vector-square-plus.svg","material-vector-square-remove":"material/vector-square-remove.svg","material-vector-square":"material/vector-square.svg","material-vector-triangle":"material/vector-triangle.svg","material-vector-union":"material/vector-union.svg","material-vhs":"material/vhs.svg","material-vibrate-off":"material/vibrate-off.svg","material-vibrate":"material/vibrate.svg","material-video-2d":"material/video-2d.svg","material-video-3d-off":"material/video-3d-off.svg","material-video-3d-variant":"material/video-3d-variant.svg","material-video-3d":"material/video-3d.svg","material-video-4k-box":"material/video-4k-box.svg","material-video-account":"material/video-account.svg","material-video-box-off":"material/video-box-off.svg","material-video-box":"material/video-box.svg","material-video-check-outline":"material/video-check-outline.svg","material-video-check":"material/video-check.svg","material-video-high-definition":"material/video-high-definition.svg","material-video-image":"material/video-image.svg","material-video-input-antenna":"material/video-input-antenna.svg","material-video-input-component":"material/video-input-component.svg","material-video-input-hdmi":"material/video-input-hdmi.svg","material-video-input-scart":"material/video-input-scart.svg","material-video-input-svideo":"material/video-input-svideo.svg","material-video-marker-outline":"material/video-marker-outline.svg","material-video-marker":"material/video-marker.svg","material-video-minus-outline":"material/video-minus-outline.svg","material-video-minus":"material/video-minus.svg","material-video-off-outline":"material/video-off-outline.svg","material-video-off":"material/video-off.svg","material-video-outline":"material/video-outline.svg","material-video-plus-outline":"material/video-plus-outline.svg","material-video-plus":"material/video-plus.svg","material-video-stabilization":"material/video-stabilization.svg","material-video-standard-definition":"material/video-standard-definition.svg","material-video-switch-outline":"material/video-switch-outline.svg","material-video-switch":"material/video-switch.svg","material-video-vintage":"material/video-vintage.svg","material-video-wireless-outline":"material/video-wireless-outline.svg","material-video-wireless":"material/video-wireless.svg","material-video":"material/video.svg","material-view-agenda-outline":"material/view-agenda-outline.svg","material-view-agenda":"material/view-agenda.svg","material-view-array-outline":"material/view-array-outline.svg","material-view-array":"material/view-array.svg","material-view-carousel-outline":"material/view-carousel-outline.svg","material-view-carousel":"material/view-carousel.svg","material-view-column-outline":"material/view-column-outline.svg","material-view-column":"material/view-column.svg","material-view-comfy-outline":"material/view-comfy-outline.svg","material-view-comfy":"material/view-comfy.svg","material-view-compact-outline":"material/view-compact-outline.svg","material-view-compact":"material/view-compact.svg","material-view-dashboard-edit-outline":"material/view-dashboard-edit-outline.svg","material-view-dashboard-edit":"material/view-dashboard-edit.svg","material-view-dashboard-outline":"material/view-dashboard-outline.svg","material-view-dashboard-variant-outline":"material/view-dashboard-variant-outline.svg","material-view-dashboard-variant":"material/view-dashboard-variant.svg","material-view-dashboard":"material/view-dashboard.svg","material-view-day-outline":"material/view-day-outline.svg","material-view-day":"material/view-day.svg","material-view-gallery-outline":"material/view-gallery-outline.svg","material-view-gallery":"material/view-gallery.svg","material-view-grid-compact":"material/view-grid-compact.svg","material-view-grid-outline":"material/view-grid-outline.svg","material-view-grid-plus-outline":"material/view-grid-plus-outline.svg","material-view-grid-plus":"material/view-grid-plus.svg","material-view-grid":"material/view-grid.svg","material-view-headline":"material/view-headline.svg","material-view-list-outline":"material/view-list-outline.svg","material-view-list":"material/view-list.svg","material-view-module-outline":"material/view-module-outline.svg","material-view-module":"material/view-module.svg","material-view-parallel-outline":"material/view-parallel-outline.svg","material-view-parallel":"material/view-parallel.svg","material-view-quilt-outline":"material/view-quilt-outline.svg","material-view-quilt":"material/view-quilt.svg","material-view-sequential-outline":"material/view-sequential-outline.svg","material-view-sequential":"material/view-sequential.svg","material-view-split-horizontal":"material/view-split-horizontal.svg","material-view-split-vertical":"material/view-split-vertical.svg","material-view-stream-outline":"material/view-stream-outline.svg","material-view-stream":"material/view-stream.svg","material-view-week-outline":"material/view-week-outline.svg","material-view-week":"material/view-week.svg","material-vimeo":"material/vimeo.svg","material-violin":"material/violin.svg","material-virtual-reality":"material/virtual-reality.svg","material-virus-off-outline":"material/virus-off-outline.svg","material-virus-off":"material/virus-off.svg","material-virus-outline":"material/virus-outline.svg","material-virus":"material/virus.svg","material-vlc":"material/vlc.svg","material-voicemail":"material/voicemail.svg","material-volcano-outline":"material/volcano-outline.svg","material-volcano":"material/volcano.svg","material-volleyball":"material/volleyball.svg","material-volume-equal":"material/volume-equal.svg","material-volume-high":"material/volume-high.svg","material-volume-low":"material/volume-low.svg","material-volume-medium":"material/volume-medium.svg","material-volume-minus":"material/volume-minus.svg","material-volume-mute":"material/volume-mute.svg","material-volume-off":"material/volume-off.svg","material-volume-plus":"material/volume-plus.svg","material-volume-source":"material/volume-source.svg","material-volume-variant-off":"material/volume-variant-off.svg","material-volume-vibrate":"material/volume-vibrate.svg","material-vote-outline":"material/vote-outline.svg","material-vote":"material/vote.svg","material-vpn":"material/vpn.svg","material-vuejs":"material/vuejs.svg","material-vuetify":"material/vuetify.svg","material-walk":"material/walk.svg","material-wall-fire":"material/wall-fire.svg","material-wall-sconce-flat-outline":"material/wall-sconce-flat-outline.svg","material-wall-sconce-flat-variant-outline":"material/wall-sconce-flat-variant-outline.svg","material-wall-sconce-flat-variant":"material/wall-sconce-flat-variant.svg","material-wall-sconce-flat":"material/wall-sconce-flat.svg","material-wall-sconce-outline":"material/wall-sconce-outline.svg","material-wall-sconce-round-outline":"material/wall-sconce-round-outline.svg","material-wall-sconce-round-variant-outline":"material/wall-sconce-round-variant-outline.svg","material-wall-sconce-round-variant":"material/wall-sconce-round-variant.svg","material-wall-sconce-round":"material/wall-sconce-round.svg","material-wall-sconce":"material/wall-sconce.svg","material-wall":"material/wall.svg","material-wallet-bifold-outline":"material/wallet-bifold-outline.svg","material-wallet-bifold":"material/wallet-bifold.svg","material-wallet-giftcard":"material/wallet-giftcard.svg","material-wallet-membership":"material/wallet-membership.svg","material-wallet-outline":"material/wallet-outline.svg","material-wallet-plus-outline":"material/wallet-plus-outline.svg","material-wallet-plus":"material/wallet-plus.svg","material-wallet-travel":"material/wallet-travel.svg","material-wallet":"material/wallet.svg","material-wallpaper":"material/wallpaper.svg","material-wan":"material/wan.svg","material-wardrobe-outline":"material/wardrobe-outline.svg","material-wardrobe":"material/wardrobe.svg","material-warehouse":"material/warehouse.svg","material-washing-machine-alert":"material/washing-machine-alert.svg","material-washing-machine-off":"material/washing-machine-off.svg","material-washing-machine":"material/washing-machine.svg","material-watch-export-variant":"material/watch-export-variant.svg","material-watch-export":"material/watch-export.svg","material-watch-import-variant":"material/watch-import-variant.svg","material-watch-import":"material/watch-import.svg","material-watch-variant":"material/watch-variant.svg","material-watch-vibrate-off":"material/watch-vibrate-off.svg","material-watch-vibrate":"material/watch-vibrate.svg","material-watch":"material/watch.svg","material-water-alert-outline":"material/water-alert-outline.svg","material-water-alert":"material/water-alert.svg","material-water-boiler-alert":"material/water-boiler-alert.svg","material-water-boiler-auto":"material/water-boiler-auto.svg","material-water-boiler-off":"material/water-boiler-off.svg","material-water-boiler":"material/water-boiler.svg","material-water-check-outline":"material/water-check-outline.svg","material-water-check":"material/water-check.svg","material-water-circle":"material/water-circle.svg","material-water-minus-outline":"material/water-minus-outline.svg","material-water-minus":"material/water-minus.svg","material-water-off-outline":"material/water-off-outline.svg","material-water-off":"material/water-off.svg","material-water-opacity":"material/water-opacity.svg","material-water-outline":"material/water-outline.svg","material-water-percent-alert":"material/water-percent-alert.svg","material-water-percent":"material/water-percent.svg","material-water-plus-outline":"material/water-plus-outline.svg","material-water-plus":"material/water-plus.svg","material-water-polo":"material/water-polo.svg","material-water-pump-off":"material/water-pump-off.svg","material-water-pump":"material/water-pump.svg","material-water-remove-outline":"material/water-remove-outline.svg","material-water-remove":"material/water-remove.svg","material-water-sync":"material/water-sync.svg","material-water-thermometer-outline":"material/water-thermometer-outline.svg","material-water-thermometer":"material/water-thermometer.svg","material-water-well-outline":"material/water-well-outline.svg","material-water-well":"material/water-well.svg","material-water":"material/water.svg","material-waterfall":"material/waterfall.svg","material-watering-can-outline":"material/watering-can-outline.svg","material-watering-can":"material/watering-can.svg","material-watermark":"material/watermark.svg","material-wave-arrow-down":"material/wave-arrow-down.svg","material-wave-arrow-up":"material/wave-arrow-up.svg","material-wave-undercurrent":"material/wave-undercurrent.svg","material-wave":"material/wave.svg","material-waveform":"material/waveform.svg","material-waves-arrow-left":"material/waves-arrow-left.svg","material-waves-arrow-right":"material/waves-arrow-right.svg","material-waves-arrow-up":"material/waves-arrow-up.svg","material-waves":"material/waves.svg","material-waze":"material/waze.svg","material-weather-cloudy-alert":"material/weather-cloudy-alert.svg","material-weather-cloudy-arrow-right":"material/weather-cloudy-arrow-right.svg","material-weather-cloudy-clock":"material/weather-cloudy-clock.svg","material-weather-cloudy":"material/weather-cloudy.svg","material-weather-dust":"material/weather-dust.svg","material-weather-fog":"material/weather-fog.svg","material-weather-hail":"material/weather-hail.svg","material-weather-hazy":"material/weather-hazy.svg","material-weather-hurricane-outline":"material/weather-hurricane-outline.svg","material-weather-hurricane":"material/weather-hurricane.svg","material-weather-lightning-rainy":"material/weather-lightning-rainy.svg","material-weather-lightning":"material/weather-lightning.svg","material-weather-moonset-down":"material/weather-moonset-down.svg","material-weather-moonset-up":"material/weather-moonset-up.svg","material-weather-moonset":"material/weather-moonset.svg","material-weather-night-partly-cloudy":"material/weather-night-partly-cloudy.svg","material-weather-night":"material/weather-night.svg","material-weather-partly-cloudy":"material/weather-partly-cloudy.svg","material-weather-partly-lightning":"material/weather-partly-lightning.svg","material-weather-partly-rainy":"material/weather-partly-rainy.svg","material-weather-partly-snowy-rainy":"material/weather-partly-snowy-rainy.svg","material-weather-partly-snowy":"material/weather-partly-snowy.svg","material-weather-pouring":"material/weather-pouring.svg","material-weather-rainy":"material/weather-rainy.svg","material-weather-snowy-heavy":"material/weather-snowy-heavy.svg","material-weather-snowy-rainy":"material/weather-snowy-rainy.svg","material-weather-snowy":"material/weather-snowy.svg","material-weather-sunny-alert":"material/weather-sunny-alert.svg","material-weather-sunny-off":"material/weather-sunny-off.svg","material-weather-sunny":"material/weather-sunny.svg","material-weather-sunset-down":"material/weather-sunset-down.svg","material-weather-sunset-up":"material/weather-sunset-up.svg","material-weather-sunset":"material/weather-sunset.svg","material-weather-tornado":"material/weather-tornado.svg","material-weather-windy-variant":"material/weather-windy-variant.svg","material-weather-windy":"material/weather-windy.svg","material-web-box":"material/web-box.svg","material-web-cancel":"material/web-cancel.svg","material-web-check":"material/web-check.svg","material-web-clock":"material/web-clock.svg","material-web-minus":"material/web-minus.svg","material-web-off":"material/web-off.svg","material-web-plus":"material/web-plus.svg","material-web-refresh":"material/web-refresh.svg","material-web-remove":"material/web-remove.svg","material-web-sync":"material/web-sync.svg","material-web":"material/web.svg","material-webcam-off":"material/webcam-off.svg","material-webcam":"material/webcam.svg","material-webhook":"material/webhook.svg","material-webpack":"material/webpack.svg","material-webrtc":"material/webrtc.svg","material-wechat":"material/wechat.svg","material-weight-gram":"material/weight-gram.svg","material-weight-kilogram":"material/weight-kilogram.svg","material-weight-lifter":"material/weight-lifter.svg","material-weight-pound":"material/weight-pound.svg","material-weight":"material/weight.svg","material-whatsapp":"material/whatsapp.svg","material-wheel-barrow":"material/wheel-barrow.svg","material-wheelchair-accessibility":"material/wheelchair-accessibility.svg","material-wheelchair":"material/wheelchair.svg","material-whistle-outline":"material/whistle-outline.svg","material-whistle":"material/whistle.svg","material-white-balance-auto":"material/white-balance-auto.svg","material-white-balance-incandescent":"material/white-balance-incandescent.svg","material-white-balance-iridescent":"material/white-balance-iridescent.svg","material-white-balance-sunny":"material/white-balance-sunny.svg","material-widgets-outline":"material/widgets-outline.svg","material-widgets":"material/widgets.svg","material-wifi-alert":"material/wifi-alert.svg","material-wifi-arrow-down":"material/wifi-arrow-down.svg","material-wifi-arrow-left-right":"material/wifi-arrow-left-right.svg","material-wifi-arrow-left":"material/wifi-arrow-left.svg","material-wifi-arrow-right":"material/wifi-arrow-right.svg","material-wifi-arrow-up-down":"material/wifi-arrow-up-down.svg","material-wifi-arrow-up":"material/wifi-arrow-up.svg","material-wifi-cancel":"material/wifi-cancel.svg","material-wifi-check":"material/wifi-check.svg","material-wifi-cog":"material/wifi-cog.svg","material-wifi-lock-open":"material/wifi-lock-open.svg","material-wifi-lock":"material/wifi-lock.svg","material-wifi-marker":"material/wifi-marker.svg","material-wifi-minus":"material/wifi-minus.svg","material-wifi-off":"material/wifi-off.svg","material-wifi-plus":"material/wifi-plus.svg","material-wifi-refresh":"material/wifi-refresh.svg","material-wifi-remove":"material/wifi-remove.svg","material-wifi-settings":"material/wifi-settings.svg","material-wifi-star":"material/wifi-star.svg","material-wifi-strength-1-alert":"material/wifi-strength-1-alert.svg","material-wifi-strength-1-lock-open":"material/wifi-strength-1-lock-open.svg","material-wifi-strength-1-lock":"material/wifi-strength-1-lock.svg","material-wifi-strength-1":"material/wifi-strength-1.svg","material-wifi-strength-2-alert":"material/wifi-strength-2-alert.svg","material-wifi-strength-2-lock-open":"material/wifi-strength-2-lock-open.svg","material-wifi-strength-2-lock":"material/wifi-strength-2-lock.svg","material-wifi-strength-2":"material/wifi-strength-2.svg","material-wifi-strength-3-alert":"material/wifi-strength-3-alert.svg","material-wifi-strength-3-lock-open":"material/wifi-strength-3-lock-open.svg","material-wifi-strength-3-lock":"material/wifi-strength-3-lock.svg","material-wifi-strength-3":"material/wifi-strength-3.svg","material-wifi-strength-4-alert":"material/wifi-strength-4-alert.svg","material-wifi-strength-4-lock-open":"material/wifi-strength-4-lock-open.svg","material-wifi-strength-4-lock":"material/wifi-strength-4-lock.svg","material-wifi-strength-4":"material/wifi-strength-4.svg","material-wifi-strength-alert-outline":"material/wifi-strength-alert-outline.svg","material-wifi-strength-lock-open-outline":"material/wifi-strength-lock-open-outline.svg","material-wifi-strength-lock-outline":"material/wifi-strength-lock-outline.svg","material-wifi-strength-off-outline":"material/wifi-strength-off-outline.svg","material-wifi-strength-off":"material/wifi-strength-off.svg","material-wifi-strength-outline":"material/wifi-strength-outline.svg","material-wifi-sync":"material/wifi-sync.svg","material-wifi":"material/wifi.svg","material-wikipedia":"material/wikipedia.svg","material-wind-power-outline":"material/wind-power-outline.svg","material-wind-power":"material/wind-power.svg","material-wind-turbine-alert":"material/wind-turbine-alert.svg","material-wind-turbine-check":"material/wind-turbine-check.svg","material-wind-turbine":"material/wind-turbine.svg","material-window-close":"material/window-close.svg","material-window-closed-variant":"material/window-closed-variant.svg","material-window-closed":"material/window-closed.svg","material-window-maximize":"material/window-maximize.svg","material-window-minimize":"material/window-minimize.svg","material-window-open-variant":"material/window-open-variant.svg","material-window-open":"material/window-open.svg","material-window-restore":"material/window-restore.svg","material-window-shutter-alert":"material/window-shutter-alert.svg","material-window-shutter-auto":"material/window-shutter-auto.svg","material-window-shutter-cog":"material/window-shutter-cog.svg","material-window-shutter-open":"material/window-shutter-open.svg","material-window-shutter-settings":"material/window-shutter-settings.svg","material-window-shutter":"material/window-shutter.svg","material-windsock":"material/windsock.svg","material-wiper-wash-alert":"material/wiper-wash-alert.svg","material-wiper-wash":"material/wiper-wash.svg","material-wiper":"material/wiper.svg","material-wizard-hat":"material/wizard-hat.svg","material-wordpress":"material/wordpress.svg","material-wrap-disabled":"material/wrap-disabled.svg","material-wrap":"material/wrap.svg","material-wrench-check-outline":"material/wrench-check-outline.svg","material-wrench-check":"material/wrench-check.svg","material-wrench-clock-outline":"material/wrench-clock-outline.svg","material-wrench-clock":"material/wrench-clock.svg","material-wrench-cog-outline":"material/wrench-cog-outline.svg","material-wrench-cog":"material/wrench-cog.svg","material-wrench-outline":"material/wrench-outline.svg","material-wrench":"material/wrench.svg","material-xamarin":"material/xamarin.svg","material-xml":"material/xml.svg","material-xmpp":"material/xmpp.svg","material-yahoo":"material/yahoo.svg","material-yeast":"material/yeast.svg","material-yin-yang":"material/yin-yang.svg","material-yoga":"material/yoga.svg","material-youtube-gaming":"material/youtube-gaming.svg","material-youtube-studio":"material/youtube-studio.svg","material-youtube-subscription":"material/youtube-subscription.svg","material-youtube-tv":"material/youtube-tv.svg","material-youtube":"material/youtube.svg","material-yurt":"material/yurt.svg","material-z-wave":"material/z-wave.svg","material-zend":"material/zend.svg","material-zigbee":"material/zigbee.svg","material-zip-box-outline":"material/zip-box-outline.svg","material-zip-box":"material/zip-box.svg","material-zip-disk":"material/zip-disk.svg","material-zodiac-aquarius":"material/zodiac-aquarius.svg","material-zodiac-aries":"material/zodiac-aries.svg","material-zodiac-cancer":"material/zodiac-cancer.svg","material-zodiac-capricorn":"material/zodiac-capricorn.svg","material-zodiac-gemini":"material/zodiac-gemini.svg","material-zodiac-leo":"material/zodiac-leo.svg","material-zodiac-libra":"material/zodiac-libra.svg","material-zodiac-pisces":"material/zodiac-pisces.svg","material-zodiac-sagittarius":"material/zodiac-sagittarius.svg","material-zodiac-scorpio":"material/zodiac-scorpio.svg","material-zodiac-taurus":"material/zodiac-taurus.svg","material-zodiac-virgo":"material/zodiac-virgo.svg","octicons-accessibility-16":"octicons/accessibility-16.svg","octicons-accessibility-24":"octicons/accessibility-24.svg","octicons-accessibility-inset-16":"octicons/accessibility-inset-16.svg","octicons-accessibility-inset-24":"octicons/accessibility-inset-24.svg","octicons-ai-model-16":"octicons/ai-model-16.svg","octicons-ai-model-24":"octicons/ai-model-24.svg","octicons-alert-16":"octicons/alert-16.svg","octicons-alert-24":"octicons/alert-24.svg","octicons-alert-fill-12":"octicons/alert-fill-12.svg","octicons-alert-fill-16":"octicons/alert-fill-16.svg","octicons-alert-fill-24":"octicons/alert-fill-24.svg","octicons-apps-16":"octicons/apps-16.svg","octicons-apps-24":"octicons/apps-24.svg","octicons-archive-16":"octicons/archive-16.svg","octicons-archive-24":"octicons/archive-24.svg","octicons-arrow-both-16":"octicons/arrow-both-16.svg","octicons-arrow-both-24":"octicons/arrow-both-24.svg","octicons-arrow-down-16":"octicons/arrow-down-16.svg","octicons-arrow-down-24":"octicons/arrow-down-24.svg","octicons-arrow-down-left-16":"octicons/arrow-down-left-16.svg","octicons-arrow-down-left-24":"octicons/arrow-down-left-24.svg","octicons-arrow-down-right-16":"octicons/arrow-down-right-16.svg","octicons-arrow-down-right-24":"octicons/arrow-down-right-24.svg","octicons-arrow-left-16":"octicons/arrow-left-16.svg","octicons-arrow-left-24":"octicons/arrow-left-24.svg","octicons-arrow-right-16":"octicons/arrow-right-16.svg","octicons-arrow-right-24":"octicons/arrow-right-24.svg","octicons-arrow-switch-16":"octicons/arrow-switch-16.svg","octicons-arrow-switch-24":"octicons/arrow-switch-24.svg","octicons-arrow-up-16":"octicons/arrow-up-16.svg","octicons-arrow-up-24":"octicons/arrow-up-24.svg","octicons-arrow-up-left-16":"octicons/arrow-up-left-16.svg","octicons-arrow-up-left-24":"octicons/arrow-up-left-24.svg","octicons-arrow-up-right-16":"octicons/arrow-up-right-16.svg","octicons-arrow-up-right-24":"octicons/arrow-up-right-24.svg","octicons-beaker-16":"octicons/beaker-16.svg","octicons-beaker-24":"octicons/beaker-24.svg","octicons-bell-16":"octicons/bell-16.svg","octicons-bell-24":"octicons/bell-24.svg","octicons-bell-fill-16":"octicons/bell-fill-16.svg","octicons-bell-fill-24":"octicons/bell-fill-24.svg","octicons-bell-slash-16":"octicons/bell-slash-16.svg","octicons-bell-slash-24":"octicons/bell-slash-24.svg","octicons-blocked-16":"octicons/blocked-16.svg","octicons-blocked-24":"octicons/blocked-24.svg","octicons-bold-16":"octicons/bold-16.svg","octicons-bold-24":"octicons/bold-24.svg","octicons-book-16":"octicons/book-16.svg","octicons-book-24":"octicons/book-24.svg","octicons-bookmark-16":"octicons/bookmark-16.svg","octicons-bookmark-24":"octicons/bookmark-24.svg","octicons-bookmark-fill-24":"octicons/bookmark-fill-24.svg","octicons-bookmark-filled-16":"octicons/bookmark-filled-16.svg","octicons-bookmark-slash-16":"octicons/bookmark-slash-16.svg","octicons-bookmark-slash-24":"octicons/bookmark-slash-24.svg","octicons-bookmark-slash-fill-16":"octicons/bookmark-slash-fill-16.svg","octicons-bookmark-slash-fill-24":"octicons/bookmark-slash-fill-24.svg","octicons-briefcase-16":"octicons/briefcase-16.svg","octicons-briefcase-24":"octicons/briefcase-24.svg","octicons-broadcast-16":"octicons/broadcast-16.svg","octicons-broadcast-24":"octicons/broadcast-24.svg","octicons-browser-16":"octicons/browser-16.svg","octicons-browser-24":"octicons/browser-24.svg","octicons-bug-16":"octicons/bug-16.svg","octicons-bug-24":"octicons/bug-24.svg","octicons-cache-16":"octicons/cache-16.svg","octicons-cache-24":"octicons/cache-24.svg","octicons-calendar-16":"octicons/calendar-16.svg","octicons-calendar-24":"octicons/calendar-24.svg","octicons-check-16":"octicons/check-16.svg","octicons-check-24":"octicons/check-24.svg","octicons-check-circle-16":"octicons/check-circle-16.svg","octicons-check-circle-24":"octicons/check-circle-24.svg","octicons-check-circle-fill-12":"octicons/check-circle-fill-12.svg","octicons-check-circle-fill-16":"octicons/check-circle-fill-16.svg","octicons-check-circle-fill-24":"octicons/check-circle-fill-24.svg","octicons-checkbox-16":"octicons/checkbox-16.svg","octicons-checkbox-24":"octicons/checkbox-24.svg","octicons-checklist-16":"octicons/checklist-16.svg","octicons-checklist-24":"octicons/checklist-24.svg","octicons-chevron-down-12":"octicons/chevron-down-12.svg","octicons-chevron-down-16":"octicons/chevron-down-16.svg","octicons-chevron-down-24":"octicons/chevron-down-24.svg","octicons-chevron-left-12":"octicons/chevron-left-12.svg","octicons-chevron-left-16":"octicons/chevron-left-16.svg","octicons-chevron-left-24":"octicons/chevron-left-24.svg","octicons-chevron-right-12":"octicons/chevron-right-12.svg","octicons-chevron-right-16":"octicons/chevron-right-16.svg","octicons-chevron-right-24":"octicons/chevron-right-24.svg","octicons-chevron-up-12":"octicons/chevron-up-12.svg","octicons-chevron-up-16":"octicons/chevron-up-16.svg","octicons-chevron-up-24":"octicons/chevron-up-24.svg","octicons-circle-16":"octicons/circle-16.svg","octicons-circle-24":"octicons/circle-24.svg","octicons-circle-slash-16":"octicons/circle-slash-16.svg","octicons-circle-slash-24":"octicons/circle-slash-24.svg","octicons-clock-16":"octicons/clock-16.svg","octicons-clock-24":"octicons/clock-24.svg","octicons-clock-fill-16":"octicons/clock-fill-16.svg","octicons-clock-fill-24":"octicons/clock-fill-24.svg","octicons-cloud-16":"octicons/cloud-16.svg","octicons-cloud-24":"octicons/cloud-24.svg","octicons-cloud-offline-16":"octicons/cloud-offline-16.svg","octicons-cloud-offline-24":"octicons/cloud-offline-24.svg","octicons-code-16":"octicons/code-16.svg","octicons-code-24":"octicons/code-24.svg","octicons-code-of-conduct-16":"octicons/code-of-conduct-16.svg","octicons-code-of-conduct-24":"octicons/code-of-conduct-24.svg","octicons-code-review-16":"octicons/code-review-16.svg","octicons-code-review-24":"octicons/code-review-24.svg","octicons-code-square-16":"octicons/code-square-16.svg","octicons-code-square-24":"octicons/code-square-24.svg","octicons-codescan-16":"octicons/codescan-16.svg","octicons-codescan-24":"octicons/codescan-24.svg","octicons-codescan-checkmark-16":"octicons/codescan-checkmark-16.svg","octicons-codescan-checkmark-24":"octicons/codescan-checkmark-24.svg","octicons-codespaces-16":"octicons/codespaces-16.svg","octicons-codespaces-24":"octicons/codespaces-24.svg","octicons-columns-16":"octicons/columns-16.svg","octicons-columns-24":"octicons/columns-24.svg","octicons-command-palette-16":"octicons/command-palette-16.svg","octicons-command-palette-24":"octicons/command-palette-24.svg","octicons-comment-16":"octicons/comment-16.svg","octicons-comment-24":"octicons/comment-24.svg","octicons-comment-discussion-16":"octicons/comment-discussion-16.svg","octicons-comment-discussion-24":"octicons/comment-discussion-24.svg","octicons-container-16":"octicons/container-16.svg","octicons-container-24":"octicons/container-24.svg","octicons-copilot-16":"octicons/copilot-16.svg","octicons-copilot-24":"octicons/copilot-24.svg","octicons-copilot-48":"octicons/copilot-48.svg","octicons-copilot-96":"octicons/copilot-96.svg","octicons-copilot-error-16":"octicons/copilot-error-16.svg","octicons-copilot-warning-16":"octicons/copilot-warning-16.svg","octicons-copy-16":"octicons/copy-16.svg","octicons-copy-24":"octicons/copy-24.svg","octicons-cpu-16":"octicons/cpu-16.svg","octicons-cpu-24":"octicons/cpu-24.svg","octicons-credit-card-16":"octicons/credit-card-16.svg","octicons-credit-card-24":"octicons/credit-card-24.svg","octicons-cross-reference-16":"octicons/cross-reference-16.svg","octicons-cross-reference-24":"octicons/cross-reference-24.svg","octicons-dash-16":"octicons/dash-16.svg","octicons-dash-24":"octicons/dash-24.svg","octicons-database-16":"octicons/database-16.svg","octicons-database-24":"octicons/database-24.svg","octicons-dependabot-16":"octicons/dependabot-16.svg","octicons-dependabot-24":"octicons/dependabot-24.svg","octicons-desktop-download-16":"octicons/desktop-download-16.svg","octicons-desktop-download-24":"octicons/desktop-download-24.svg","octicons-device-camera-16":"octicons/device-camera-16.svg","octicons-device-camera-24":"octicons/device-camera-24.svg","octicons-device-camera-video-16":"octicons/device-camera-video-16.svg","octicons-device-camera-video-24":"octicons/device-camera-video-24.svg","octicons-device-desktop-16":"octicons/device-desktop-16.svg","octicons-device-desktop-24":"octicons/device-desktop-24.svg","octicons-device-mobile-16":"octicons/device-mobile-16.svg","octicons-device-mobile-24":"octicons/device-mobile-24.svg","octicons-devices-16":"octicons/devices-16.svg","octicons-devices-24":"octicons/devices-24.svg","octicons-diamond-16":"octicons/diamond-16.svg","octicons-diamond-24":"octicons/diamond-24.svg","octicons-diff-16":"octicons/diff-16.svg","octicons-diff-24":"octicons/diff-24.svg","octicons-diff-added-16":"octicons/diff-added-16.svg","octicons-diff-added-24":"octicons/diff-added-24.svg","octicons-diff-ignored-16":"octicons/diff-ignored-16.svg","octicons-diff-ignored-24":"octicons/diff-ignored-24.svg","octicons-diff-modified-16":"octicons/diff-modified-16.svg","octicons-diff-modified-24":"octicons/diff-modified-24.svg","octicons-diff-removed-16":"octicons/diff-removed-16.svg","octicons-diff-removed-24":"octicons/diff-removed-24.svg","octicons-diff-renamed-16":"octicons/diff-renamed-16.svg","octicons-diff-renamed-24":"octicons/diff-renamed-24.svg","octicons-discussion-closed-16":"octicons/discussion-closed-16.svg","octicons-discussion-closed-24":"octicons/discussion-closed-24.svg","octicons-discussion-duplicate-16":"octicons/discussion-duplicate-16.svg","octicons-discussion-duplicate-24":"octicons/discussion-duplicate-24.svg","octicons-discussion-outdated-16":"octicons/discussion-outdated-16.svg","octicons-discussion-outdated-24":"octicons/discussion-outdated-24.svg","octicons-dot-16":"octicons/dot-16.svg","octicons-dot-24":"octicons/dot-24.svg","octicons-dot-fill-16":"octicons/dot-fill-16.svg","octicons-dot-fill-24":"octicons/dot-fill-24.svg","octicons-download-16":"octicons/download-16.svg","octicons-download-24":"octicons/download-24.svg","octicons-duplicate-16":"octicons/duplicate-16.svg","octicons-duplicate-24":"octicons/duplicate-24.svg","octicons-ellipsis-16":"octicons/ellipsis-16.svg","octicons-ellipsis-24":"octicons/ellipsis-24.svg","octicons-eye-16":"octicons/eye-16.svg","octicons-eye-24":"octicons/eye-24.svg","octicons-eye-closed-16":"octicons/eye-closed-16.svg","octicons-eye-closed-24":"octicons/eye-closed-24.svg","octicons-feed-discussion-16":"octicons/feed-discussion-16.svg","octicons-feed-forked-16":"octicons/feed-forked-16.svg","octicons-feed-heart-16":"octicons/feed-heart-16.svg","octicons-feed-issue-closed-16":"octicons/feed-issue-closed-16.svg","octicons-feed-issue-draft-16":"octicons/feed-issue-draft-16.svg","octicons-feed-issue-open-16":"octicons/feed-issue-open-16.svg","octicons-feed-issue-reopen-16":"octicons/feed-issue-reopen-16.svg","octicons-feed-merged-16":"octicons/feed-merged-16.svg","octicons-feed-person-16":"octicons/feed-person-16.svg","octicons-feed-plus-16":"octicons/feed-plus-16.svg","octicons-feed-public-16":"octicons/feed-public-16.svg","octicons-feed-pull-request-closed-16":"octicons/feed-pull-request-closed-16.svg","octicons-feed-pull-request-draft-16":"octicons/feed-pull-request-draft-16.svg","octicons-feed-pull-request-open-16":"octicons/feed-pull-request-open-16.svg","octicons-feed-repo-16":"octicons/feed-repo-16.svg","octicons-feed-rocket-16":"octicons/feed-rocket-16.svg","octicons-feed-star-16":"octicons/feed-star-16.svg","octicons-feed-tag-16":"octicons/feed-tag-16.svg","octicons-feed-trophy-16":"octicons/feed-trophy-16.svg","octicons-file-16":"octicons/file-16.svg","octicons-file-24":"octicons/file-24.svg","octicons-file-added-16":"octicons/file-added-16.svg","octicons-file-added-24":"octicons/file-added-24.svg","octicons-file-badge-16":"octicons/file-badge-16.svg","octicons-file-badge-24":"octicons/file-badge-24.svg","octicons-file-binary-16":"octicons/file-binary-16.svg","octicons-file-binary-24":"octicons/file-binary-24.svg","octicons-file-code-16":"octicons/file-code-16.svg","octicons-file-code-24":"octicons/file-code-24.svg","octicons-file-diff-16":"octicons/file-diff-16.svg","octicons-file-diff-24":"octicons/file-diff-24.svg","octicons-file-directory-16":"octicons/file-directory-16.svg","octicons-file-directory-24":"octicons/file-directory-24.svg","octicons-file-directory-fill-16":"octicons/file-directory-fill-16.svg","octicons-file-directory-fill-24":"octicons/file-directory-fill-24.svg","octicons-file-directory-open-fill-16":"octicons/file-directory-open-fill-16.svg","octicons-file-directory-open-fill-24":"octicons/file-directory-open-fill-24.svg","octicons-file-directory-symlink-16":"octicons/file-directory-symlink-16.svg","octicons-file-directory-symlink-24":"octicons/file-directory-symlink-24.svg","octicons-file-media-16":"octicons/file-media-16.svg","octicons-file-media-24":"octicons/file-media-24.svg","octicons-file-moved-16":"octicons/file-moved-16.svg","octicons-file-moved-24":"octicons/file-moved-24.svg","octicons-file-removed-16":"octicons/file-removed-16.svg","octicons-file-removed-24":"octicons/file-removed-24.svg","octicons-file-submodule-16":"octicons/file-submodule-16.svg","octicons-file-submodule-24":"octicons/file-submodule-24.svg","octicons-file-symlink-file-16":"octicons/file-symlink-file-16.svg","octicons-file-symlink-file-24":"octicons/file-symlink-file-24.svg","octicons-file-zip-16":"octicons/file-zip-16.svg","octicons-file-zip-24":"octicons/file-zip-24.svg","octicons-filter-16":"octicons/filter-16.svg","octicons-filter-24":"octicons/filter-24.svg","octicons-filter-remove-16":"octicons/filter-remove-16.svg","octicons-filter-remove-24":"octicons/filter-remove-24.svg","octicons-fiscal-host-16":"octicons/fiscal-host-16.svg","octicons-fiscal-host-24":"octicons/fiscal-host-24.svg","octicons-flame-16":"octicons/flame-16.svg","octicons-flame-24":"octicons/flame-24.svg","octicons-fold-16":"octicons/fold-16.svg","octicons-fold-24":"octicons/fold-24.svg","octicons-fold-down-16":"octicons/fold-down-16.svg","octicons-fold-down-24":"octicons/fold-down-24.svg","octicons-fold-up-16":"octicons/fold-up-16.svg","octicons-fold-up-24":"octicons/fold-up-24.svg","octicons-gear-16":"octicons/gear-16.svg","octicons-gear-24":"octicons/gear-24.svg","octicons-gift-16":"octicons/gift-16.svg","octicons-gift-24":"octicons/gift-24.svg","octicons-git-branch-16":"octicons/git-branch-16.svg","octicons-git-branch-24":"octicons/git-branch-24.svg","octicons-git-commit-16":"octicons/git-commit-16.svg","octicons-git-commit-24":"octicons/git-commit-24.svg","octicons-git-compare-16":"octicons/git-compare-16.svg","octicons-git-compare-24":"octicons/git-compare-24.svg","octicons-git-merge-16":"octicons/git-merge-16.svg","octicons-git-merge-24":"octicons/git-merge-24.svg","octicons-git-merge-queue-16":"octicons/git-merge-queue-16.svg","octicons-git-merge-queue-24":"octicons/git-merge-queue-24.svg","octicons-git-pull-request-16":"octicons/git-pull-request-16.svg","octicons-git-pull-request-24":"octicons/git-pull-request-24.svg","octicons-git-pull-request-closed-16":"octicons/git-pull-request-closed-16.svg","octicons-git-pull-request-closed-24":"octicons/git-pull-request-closed-24.svg","octicons-git-pull-request-draft-16":"octicons/git-pull-request-draft-16.svg","octicons-git-pull-request-draft-24":"octicons/git-pull-request-draft-24.svg","octicons-globe-16":"octicons/globe-16.svg","octicons-globe-24":"octicons/globe-24.svg","octicons-goal-16":"octicons/goal-16.svg","octicons-goal-24":"octicons/goal-24.svg","octicons-grabber-16":"octicons/grabber-16.svg","octicons-grabber-24":"octicons/grabber-24.svg","octicons-graph-16":"octicons/graph-16.svg","octicons-graph-24":"octicons/graph-24.svg","octicons-hash-16":"octicons/hash-16.svg","octicons-hash-24":"octicons/hash-24.svg","octicons-heading-16":"octicons/heading-16.svg","octicons-heading-24":"octicons/heading-24.svg","octicons-heart-16":"octicons/heart-16.svg","octicons-heart-24":"octicons/heart-24.svg","octicons-heart-fill-16":"octicons/heart-fill-16.svg","octicons-heart-fill-24":"octicons/heart-fill-24.svg","octicons-history-16":"octicons/history-16.svg","octicons-history-24":"octicons/history-24.svg","octicons-home-16":"octicons/home-16.svg","octicons-home-24":"octicons/home-24.svg","octicons-home-fill-16":"octicons/home-fill-16.svg","octicons-home-fill-24":"octicons/home-fill-24.svg","octicons-horizontal-rule-16":"octicons/horizontal-rule-16.svg","octicons-horizontal-rule-24":"octicons/horizontal-rule-24.svg","octicons-hourglass-16":"octicons/hourglass-16.svg","octicons-hourglass-24":"octicons/hourglass-24.svg","octicons-hubot-16":"octicons/hubot-16.svg","octicons-hubot-24":"octicons/hubot-24.svg","octicons-id-badge-16":"octicons/id-badge-16.svg","octicons-id-badge-24":"octicons/id-badge-24.svg","octicons-image-16":"octicons/image-16.svg","octicons-image-24":"octicons/image-24.svg","octicons-inbox-16":"octicons/inbox-16.svg","octicons-inbox-24":"octicons/inbox-24.svg","octicons-infinity-16":"octicons/infinity-16.svg","octicons-infinity-24":"octicons/infinity-24.svg","octicons-info-16":"octicons/info-16.svg","octicons-info-24":"octicons/info-24.svg","octicons-issue-closed-16":"octicons/issue-closed-16.svg","octicons-issue-closed-24":"octicons/issue-closed-24.svg","octicons-issue-draft-16":"octicons/issue-draft-16.svg","octicons-issue-draft-24":"octicons/issue-draft-24.svg","octicons-issue-opened-16":"octicons/issue-opened-16.svg","octicons-issue-opened-24":"octicons/issue-opened-24.svg","octicons-issue-reopened-16":"octicons/issue-reopened-16.svg","octicons-issue-reopened-24":"octicons/issue-reopened-24.svg","octicons-issue-tracked-by-16":"octicons/issue-tracked-by-16.svg","octicons-issue-tracked-by-24":"octicons/issue-tracked-by-24.svg","octicons-issue-tracks-16":"octicons/issue-tracks-16.svg","octicons-issue-tracks-24":"octicons/issue-tracks-24.svg","octicons-italic-16":"octicons/italic-16.svg","octicons-italic-24":"octicons/italic-24.svg","octicons-iterations-16":"octicons/iterations-16.svg","octicons-iterations-24":"octicons/iterations-24.svg","octicons-kebab-horizontal-16":"octicons/kebab-horizontal-16.svg","octicons-kebab-horizontal-24":"octicons/kebab-horizontal-24.svg","octicons-key-16":"octicons/key-16.svg","octicons-key-24":"octicons/key-24.svg","octicons-key-asterisk-16":"octicons/key-asterisk-16.svg","octicons-key-asterisk-24":"octicons/key-asterisk-24.svg","octicons-law-16":"octicons/law-16.svg","octicons-law-24":"octicons/law-24.svg","octicons-light-bulb-16":"octicons/light-bulb-16.svg","octicons-light-bulb-24":"octicons/light-bulb-24.svg","octicons-link-16":"octicons/link-16.svg","octicons-link-24":"octicons/link-24.svg","octicons-link-external-16":"octicons/link-external-16.svg","octicons-link-external-24":"octicons/link-external-24.svg","octicons-list-ordered-16":"octicons/list-ordered-16.svg","octicons-list-ordered-24":"octicons/list-ordered-24.svg","octicons-list-unordered-16":"octicons/list-unordered-16.svg","octicons-list-unordered-24":"octicons/list-unordered-24.svg","octicons-location-16":"octicons/location-16.svg","octicons-location-24":"octicons/location-24.svg","octicons-lock-16":"octicons/lock-16.svg","octicons-lock-24":"octicons/lock-24.svg","octicons-log-16":"octicons/log-16.svg","octicons-log-24":"octicons/log-24.svg","octicons-logo-gist-16":"octicons/logo-gist-16.svg","octicons-logo-gist-24":"octicons/logo-gist-24.svg","octicons-logo-github-16":"octicons/logo-github-16.svg","octicons-logo-github-24":"octicons/logo-github-24.svg","octicons-mail-16":"octicons/mail-16.svg","octicons-mail-24":"octicons/mail-24.svg","octicons-mark-github-16":"octicons/mark-github-16.svg","octicons-mark-github-24":"octicons/mark-github-24.svg","octicons-markdown-16":"octicons/markdown-16.svg","octicons-markdown-24":"octicons/markdown-24.svg","octicons-megaphone-16":"octicons/megaphone-16.svg","octicons-megaphone-24":"octicons/megaphone-24.svg","octicons-mention-16":"octicons/mention-16.svg","octicons-mention-24":"octicons/mention-24.svg","octicons-meter-16":"octicons/meter-16.svg","octicons-meter-24":"octicons/meter-24.svg","octicons-milestone-16":"octicons/milestone-16.svg","octicons-milestone-24":"octicons/milestone-24.svg","octicons-mirror-16":"octicons/mirror-16.svg","octicons-mirror-24":"octicons/mirror-24.svg","octicons-moon-16":"octicons/moon-16.svg","octicons-moon-24":"octicons/moon-24.svg","octicons-mortar-board-16":"octicons/mortar-board-16.svg","octicons-mortar-board-24":"octicons/mortar-board-24.svg","octicons-move-to-bottom-16":"octicons/move-to-bottom-16.svg","octicons-move-to-bottom-24":"octicons/move-to-bottom-24.svg","octicons-move-to-end-16":"octicons/move-to-end-16.svg","octicons-move-to-end-24":"octicons/move-to-end-24.svg","octicons-move-to-start-16":"octicons/move-to-start-16.svg","octicons-move-to-start-24":"octicons/move-to-start-24.svg","octicons-move-to-top-16":"octicons/move-to-top-16.svg","octicons-move-to-top-24":"octicons/move-to-top-24.svg","octicons-multi-select-16":"octicons/multi-select-16.svg","octicons-multi-select-24":"octicons/multi-select-24.svg","octicons-mute-16":"octicons/mute-16.svg","octicons-mute-24":"octicons/mute-24.svg","octicons-no-entry-16":"octicons/no-entry-16.svg","octicons-no-entry-24":"octicons/no-entry-24.svg","octicons-no-entry-fill-12":"octicons/no-entry-fill-12.svg","octicons-north-star-16":"octicons/north-star-16.svg","octicons-north-star-24":"octicons/north-star-24.svg","octicons-note-16":"octicons/note-16.svg","octicons-note-24":"octicons/note-24.svg","octicons-number-16":"octicons/number-16.svg","octicons-number-24":"octicons/number-24.svg","octicons-organization-16":"octicons/organization-16.svg","octicons-organization-24":"octicons/organization-24.svg","octicons-package-16":"octicons/package-16.svg","octicons-package-24":"octicons/package-24.svg","octicons-package-dependencies-16":"octicons/package-dependencies-16.svg","octicons-package-dependencies-24":"octicons/package-dependencies-24.svg","octicons-package-dependents-16":"octicons/package-dependents-16.svg","octicons-package-dependents-24":"octicons/package-dependents-24.svg","octicons-paintbrush-16":"octicons/paintbrush-16.svg","octicons-paintbrush-24":"octicons/paintbrush-24.svg","octicons-paper-airplane-16":"octicons/paper-airplane-16.svg","octicons-paper-airplane-24":"octicons/paper-airplane-24.svg","octicons-paperclip-16":"octicons/paperclip-16.svg","octicons-paperclip-24":"octicons/paperclip-24.svg","octicons-passkey-fill-16":"octicons/passkey-fill-16.svg","octicons-passkey-fill-24":"octicons/passkey-fill-24.svg","octicons-paste-16":"octicons/paste-16.svg","octicons-paste-24":"octicons/paste-24.svg","octicons-pencil-16":"octicons/pencil-16.svg","octicons-pencil-24":"octicons/pencil-24.svg","octicons-people-16":"octicons/people-16.svg","octicons-people-24":"octicons/people-24.svg","octicons-person-16":"octicons/person-16.svg","octicons-person-24":"octicons/person-24.svg","octicons-person-add-16":"octicons/person-add-16.svg","octicons-person-add-24":"octicons/person-add-24.svg","octicons-person-fill-16":"octicons/person-fill-16.svg","octicons-person-fill-24":"octicons/person-fill-24.svg","octicons-pin-16":"octicons/pin-16.svg","octicons-pin-24":"octicons/pin-24.svg","octicons-pin-slash-16":"octicons/pin-slash-16.svg","octicons-pin-slash-24":"octicons/pin-slash-24.svg","octicons-pivot-column-16":"octicons/pivot-column-16.svg","octicons-pivot-column-24":"octicons/pivot-column-24.svg","octicons-play-16":"octicons/play-16.svg","octicons-play-24":"octicons/play-24.svg","octicons-plug-16":"octicons/plug-16.svg","octicons-plug-24":"octicons/plug-24.svg","octicons-plus-16":"octicons/plus-16.svg","octicons-plus-24":"octicons/plus-24.svg","octicons-plus-circle-16":"octicons/plus-circle-16.svg","octicons-plus-circle-24":"octicons/plus-circle-24.svg","octicons-project-16":"octicons/project-16.svg","octicons-project-24":"octicons/project-24.svg","octicons-project-roadmap-16":"octicons/project-roadmap-16.svg","octicons-project-roadmap-24":"octicons/project-roadmap-24.svg","octicons-project-symlink-16":"octicons/project-symlink-16.svg","octicons-project-symlink-24":"octicons/project-symlink-24.svg","octicons-project-template-16":"octicons/project-template-16.svg","octicons-project-template-24":"octicons/project-template-24.svg","octicons-pulse-16":"octicons/pulse-16.svg","octicons-pulse-24":"octicons/pulse-24.svg","octicons-question-16":"octicons/question-16.svg","octicons-question-24":"octicons/question-24.svg","octicons-quote-16":"octicons/quote-16.svg","octicons-quote-24":"octicons/quote-24.svg","octicons-read-16":"octicons/read-16.svg","octicons-read-24":"octicons/read-24.svg","octicons-redo-16":"octicons/redo-16.svg","octicons-redo-24":"octicons/redo-24.svg","octicons-rel-file-path-16":"octicons/rel-file-path-16.svg","octicons-rel-file-path-24":"octicons/rel-file-path-24.svg","octicons-reply-16":"octicons/reply-16.svg","octicons-reply-24":"octicons/reply-24.svg","octicons-repo-16":"octicons/repo-16.svg","octicons-repo-24":"octicons/repo-24.svg","octicons-repo-clone-16":"octicons/repo-clone-16.svg","octicons-repo-clone-24":"octicons/repo-clone-24.svg","octicons-repo-delete-24":"octicons/repo-delete-24.svg","octicons-repo-deleted-16":"octicons/repo-deleted-16.svg","octicons-repo-forked-16":"octicons/repo-forked-16.svg","octicons-repo-forked-24":"octicons/repo-forked-24.svg","octicons-repo-locked-16":"octicons/repo-locked-16.svg","octicons-repo-locked-24":"octicons/repo-locked-24.svg","octicons-repo-pull-16":"octicons/repo-pull-16.svg","octicons-repo-pull-24":"octicons/repo-pull-24.svg","octicons-repo-push-16":"octicons/repo-push-16.svg","octicons-repo-push-24":"octicons/repo-push-24.svg","octicons-repo-template-16":"octicons/repo-template-16.svg","octicons-repo-template-24":"octicons/repo-template-24.svg","octicons-report-16":"octicons/report-16.svg","octicons-report-24":"octicons/report-24.svg","octicons-rocket-16":"octicons/rocket-16.svg","octicons-rocket-24":"octicons/rocket-24.svg","octicons-rows-16":"octicons/rows-16.svg","octicons-rows-24":"octicons/rows-24.svg","octicons-rss-16":"octicons/rss-16.svg","octicons-rss-24":"octicons/rss-24.svg","octicons-ruby-16":"octicons/ruby-16.svg","octicons-ruby-24":"octicons/ruby-24.svg","octicons-screen-full-16":"octicons/screen-full-16.svg","octicons-screen-full-24":"octicons/screen-full-24.svg","octicons-screen-normal-16":"octicons/screen-normal-16.svg","octicons-screen-normal-24":"octicons/screen-normal-24.svg","octicons-search-16":"octicons/search-16.svg","octicons-search-24":"octicons/search-24.svg","octicons-server-16":"octicons/server-16.svg","octicons-server-24":"octicons/server-24.svg","octicons-share-16":"octicons/share-16.svg","octicons-share-24":"octicons/share-24.svg","octicons-share-android-16":"octicons/share-android-16.svg","octicons-share-android-24":"octicons/share-android-24.svg","octicons-shield-16":"octicons/shield-16.svg","octicons-shield-24":"octicons/shield-24.svg","octicons-shield-check-16":"octicons/shield-check-16.svg","octicons-shield-check-24":"octicons/shield-check-24.svg","octicons-shield-lock-16":"octicons/shield-lock-16.svg","octicons-shield-lock-24":"octicons/shield-lock-24.svg","octicons-shield-slash-16":"octicons/shield-slash-16.svg","octicons-shield-slash-24":"octicons/shield-slash-24.svg","octicons-shield-x-16":"octicons/shield-x-16.svg","octicons-shield-x-24":"octicons/shield-x-24.svg","octicons-sidebar-collapse-16":"octicons/sidebar-collapse-16.svg","octicons-sidebar-collapse-24":"octicons/sidebar-collapse-24.svg","octicons-sidebar-expand-16":"octicons/sidebar-expand-16.svg","octicons-sidebar-expand-24":"octicons/sidebar-expand-24.svg","octicons-sign-in-16":"octicons/sign-in-16.svg","octicons-sign-in-24":"octicons/sign-in-24.svg","octicons-sign-out-16":"octicons/sign-out-16.svg","octicons-sign-out-24":"octicons/sign-out-24.svg","octicons-single-select-16":"octicons/single-select-16.svg","octicons-single-select-24":"octicons/single-select-24.svg","octicons-skip-16":"octicons/skip-16.svg","octicons-skip-24":"octicons/skip-24.svg","octicons-skip-fill-16":"octicons/skip-fill-16.svg","octicons-skip-fill-24":"octicons/skip-fill-24.svg","octicons-sliders-16":"octicons/sliders-16.svg","octicons-sliders-24":"octicons/sliders-24.svg","octicons-smiley-16":"octicons/smiley-16.svg","octicons-smiley-24":"octicons/smiley-24.svg","octicons-sort-asc-16":"octicons/sort-asc-16.svg","octicons-sort-asc-24":"octicons/sort-asc-24.svg","octicons-sort-desc-16":"octicons/sort-desc-16.svg","octicons-sort-desc-24":"octicons/sort-desc-24.svg","octicons-sparkle-fill-16":"octicons/sparkle-fill-16.svg","octicons-sparkle-fill-24":"octicons/sparkle-fill-24.svg","octicons-sparkles-fill-16":"octicons/sparkles-fill-16.svg","octicons-sparkles-fill-24":"octicons/sparkles-fill-24.svg","octicons-sponsor-tiers-16":"octicons/sponsor-tiers-16.svg","octicons-sponsor-tiers-24":"octicons/sponsor-tiers-24.svg","octicons-square-16":"octicons/square-16.svg","octicons-square-24":"octicons/square-24.svg","octicons-square-fill-16":"octicons/square-fill-16.svg","octicons-square-fill-24":"octicons/square-fill-24.svg","octicons-squirrel-16":"octicons/squirrel-16.svg","octicons-squirrel-24":"octicons/squirrel-24.svg","octicons-stack-16":"octicons/stack-16.svg","octicons-stack-24":"octicons/stack-24.svg","octicons-star-16":"octicons/star-16.svg","octicons-star-24":"octicons/star-24.svg","octicons-star-fill-16":"octicons/star-fill-16.svg","octicons-star-fill-24":"octicons/star-fill-24.svg","octicons-stop-16":"octicons/stop-16.svg","octicons-stop-24":"octicons/stop-24.svg","octicons-stopwatch-16":"octicons/stopwatch-16.svg","octicons-stopwatch-24":"octicons/stopwatch-24.svg","octicons-strikethrough-16":"octicons/strikethrough-16.svg","octicons-strikethrough-24":"octicons/strikethrough-24.svg","octicons-sun-16":"octicons/sun-16.svg","octicons-sun-24":"octicons/sun-24.svg","octicons-sync-16":"octicons/sync-16.svg","octicons-sync-24":"octicons/sync-24.svg","octicons-tab-16":"octicons/tab-16.svg","octicons-tab-24":"octicons/tab-24.svg","octicons-tab-external-16":"octicons/tab-external-16.svg","octicons-tab-external-24":"octicons/tab-external-24.svg","octicons-table-16":"octicons/table-16.svg","octicons-table-24":"octicons/table-24.svg","octicons-tag-16":"octicons/tag-16.svg","octicons-tag-24":"octicons/tag-24.svg","octicons-tasklist-16":"octicons/tasklist-16.svg","octicons-tasklist-24":"octicons/tasklist-24.svg","octicons-telescope-16":"octicons/telescope-16.svg","octicons-telescope-24":"octicons/telescope-24.svg","octicons-telescope-fill-16":"octicons/telescope-fill-16.svg","octicons-telescope-fill-24":"octicons/telescope-fill-24.svg","octicons-terminal-16":"octicons/terminal-16.svg","octicons-terminal-24":"octicons/terminal-24.svg","octicons-three-bars-16":"octicons/three-bars-16.svg","octicons-three-bars-24":"octicons/three-bars-24.svg","octicons-thumbsdown-16":"octicons/thumbsdown-16.svg","octicons-thumbsdown-24":"octicons/thumbsdown-24.svg","octicons-thumbsup-16":"octicons/thumbsup-16.svg","octicons-thumbsup-24":"octicons/thumbsup-24.svg","octicons-tools-16":"octicons/tools-16.svg","octicons-tools-24":"octicons/tools-24.svg","octicons-tracked-by-closed-completed-16":"octicons/tracked-by-closed-completed-16.svg","octicons-tracked-by-closed-completed-24":"octicons/tracked-by-closed-completed-24.svg","octicons-tracked-by-closed-not-planned-16":"octicons/tracked-by-closed-not-planned-16.svg","octicons-tracked-by-closed-not-planned-24":"octicons/tracked-by-closed-not-planned-24.svg","octicons-trash-16":"octicons/trash-16.svg","octicons-trash-24":"octicons/trash-24.svg","octicons-triangle-down-16":"octicons/triangle-down-16.svg","octicons-triangle-down-24":"octicons/triangle-down-24.svg","octicons-triangle-left-16":"octicons/triangle-left-16.svg","octicons-triangle-left-24":"octicons/triangle-left-24.svg","octicons-triangle-right-16":"octicons/triangle-right-16.svg","octicons-triangle-right-24":"octicons/triangle-right-24.svg","octicons-triangle-up-16":"octicons/triangle-up-16.svg","octicons-triangle-up-24":"octicons/triangle-up-24.svg","octicons-trophy-16":"octicons/trophy-16.svg","octicons-trophy-24":"octicons/trophy-24.svg","octicons-typography-16":"octicons/typography-16.svg","octicons-typography-24":"octicons/typography-24.svg","octicons-undo-16":"octicons/undo-16.svg","octicons-undo-24":"octicons/undo-24.svg","octicons-unfold-16":"octicons/unfold-16.svg","octicons-unfold-24":"octicons/unfold-24.svg","octicons-unlink-16":"octicons/unlink-16.svg","octicons-unlink-24":"octicons/unlink-24.svg","octicons-unlock-16":"octicons/unlock-16.svg","octicons-unlock-24":"octicons/unlock-24.svg","octicons-unmute-16":"octicons/unmute-16.svg","octicons-unmute-24":"octicons/unmute-24.svg","octicons-unread-16":"octicons/unread-16.svg","octicons-unread-24":"octicons/unread-24.svg","octicons-unverified-16":"octicons/unverified-16.svg","octicons-unverified-24":"octicons/unverified-24.svg","octicons-upload-16":"octicons/upload-16.svg","octicons-upload-24":"octicons/upload-24.svg","octicons-verified-16":"octicons/verified-16.svg","octicons-verified-24":"octicons/verified-24.svg","octicons-versions-16":"octicons/versions-16.svg","octicons-versions-24":"octicons/versions-24.svg","octicons-video-16":"octicons/video-16.svg","octicons-video-24":"octicons/video-24.svg","octicons-webhook-16":"octicons/webhook-16.svg","octicons-workflow-16":"octicons/workflow-16.svg","octicons-workflow-24":"octicons/workflow-24.svg","octicons-x-12":"octicons/x-12.svg","octicons-x-16":"octicons/x-16.svg","octicons-x-24":"octicons/x-24.svg","octicons-x-circle-16":"octicons/x-circle-16.svg","octicons-x-circle-24":"octicons/x-circle-24.svg","octicons-x-circle-fill-12":"octicons/x-circle-fill-12.svg","octicons-x-circle-fill-16":"octicons/x-circle-fill-16.svg","octicons-x-circle-fill-24":"octicons/x-circle-fill-24.svg","octicons-zap-16":"octicons/zap-16.svg","octicons-zap-24":"octicons/zap-24.svg","octicons-zoom-in-16":"octicons/zoom-in-16.svg","octicons-zoom-in-24":"octicons/zoom-in-24.svg","octicons-zoom-out-16":"octicons/zoom-out-16.svg","octicons-zoom-out-24":"octicons/zoom-out-24.svg","simple-1001tracklists":"simple/1001tracklists.svg","simple-1and1":"simple/1and1.svg","simple-1dot1dot1dot1":"simple/1dot1dot1dot1.svg","simple-1panel":"simple/1panel.svg","simple-1password":"simple/1password.svg","simple-2fas":"simple/2fas.svg","simple-2k":"simple/2k.svg","simple-30secondsofcode":"simple/30secondsofcode.svg","simple-365datascience":"simple/365datascience.svg","simple-3m":"simple/3m.svg","simple-42":"simple/42.svg","simple-4chan":"simple/4chan.svg","simple-4d":"simple/4d.svg","simple-500px":"simple/500px.svg","simple-7zip":"simple/7zip.svg","simple-99designs":"simple/99designs.svg","simple-9gag":"simple/9gag.svg","simple-abbott":"simple/abbott.svg","simple-abbrobotstudio":"simple/abbrobotstudio.svg","simple-abbvie":"simple/abbvie.svg","simple-aboutdotme":"simple/aboutdotme.svg","simple-abstract":"simple/abstract.svg","simple-abusedotch":"simple/abusedotch.svg","simple-academia":"simple/academia.svg","simple-accenture":"simple/accenture.svg","simple-accusoft":"simple/accusoft.svg","simple-accuweather":"simple/accuweather.svg","simple-acer":"simple/acer.svg","simple-acm":"simple/acm.svg","simple-actigraph":"simple/actigraph.svg","simple-activision":"simple/activision.svg","simple-activitypub":"simple/activitypub.svg","simple-actix":"simple/actix.svg","simple-actualbudget":"simple/actualbudget.svg","simple-acura":"simple/acura.svg","simple-adafruit":"simple/adafruit.svg","simple-adblock":"simple/adblock.svg","simple-adblockplus":"simple/adblockplus.svg","simple-addydotio":"simple/addydotio.svg","simple-adguard":"simple/adguard.svg","simple-adidas":"simple/adidas.svg","simple-adminer":"simple/adminer.svg","simple-adonisjs":"simple/adonisjs.svg","simple-adp":"simple/adp.svg","simple-adroll":"simple/adroll.svg","simple-adventofcode":"simple/adventofcode.svg","simple-adyen":"simple/adyen.svg","simple-aegisauthenticator":"simple/aegisauthenticator.svg","simple-aerlingus":"simple/aerlingus.svg","simple-aeroflot":"simple/aeroflot.svg","simple-aeromexico":"simple/aeromexico.svg","simple-aerospike":"simple/aerospike.svg","simple-aew":"simple/aew.svg","simple-afdian":"simple/afdian.svg","simple-affine":"simple/affine.svg","simple-affinity":"simple/affinity.svg","simple-affinitydesigner":"simple/affinitydesigner.svg","simple-affinityphoto":"simple/affinityphoto.svg","simple-affinitypublisher":"simple/affinitypublisher.svg","simple-aframe":"simple/aframe.svg","simple-afterpay":"simple/afterpay.svg","simple-aftership":"simple/aftership.svg","simple-agora":"simple/agora.svg","simple-aib":"simple/aib.svg","simple-aidungeon":"simple/aidungeon.svg","simple-aiohttp":"simple/aiohttp.svg","simple-aiqfome":"simple/aiqfome.svg","simple-airasia":"simple/airasia.svg","simple-airbnb":"simple/airbnb.svg","simple-airbrake":"simple/airbrake.svg","simple-airbus":"simple/airbus.svg","simple-airbyte":"simple/airbyte.svg","simple-aircall":"simple/aircall.svg","simple-aircanada":"simple/aircanada.svg","simple-airchina":"simple/airchina.svg","simple-airfrance":"simple/airfrance.svg","simple-airindia":"simple/airindia.svg","simple-airplayaudio":"simple/airplayaudio.svg","simple-airplayvideo":"simple/airplayvideo.svg","simple-airserbia":"simple/airserbia.svg","simple-airtable":"simple/airtable.svg","simple-airtel":"simple/airtel.svg","simple-airtransat":"simple/airtransat.svg","simple-ajv":"simple/ajv.svg","simple-akamai":"simple/akamai.svg","simple-akasaair":"simple/akasaair.svg","simple-akaunting":"simple/akaunting.svg","simple-akiflow":"simple/akiflow.svg","simple-alacritty":"simple/alacritty.svg","simple-alamy":"simple/alamy.svg","simple-albertheijn":"simple/albertheijn.svg","simple-alby":"simple/alby.svg","simple-alchemy":"simple/alchemy.svg","simple-aldinord":"simple/aldinord.svg","simple-aldisud":"simple/aldisud.svg","simple-alfaromeo":"simple/alfaromeo.svg","simple-alfred":"simple/alfred.svg","simple-algolia":"simple/algolia.svg","simple-algorand":"simple/algorand.svg","simple-alibabacloud":"simple/alibabacloud.svg","simple-alibabadotcom":"simple/alibabadotcom.svg","simple-alienware":"simple/alienware.svg","simple-aliexpress":"simple/aliexpress.svg","simple-alipay":"simple/alipay.svg","simple-allegro":"simple/allegro.svg","simple-alliedmodders":"simple/alliedmodders.svg","simple-allocine":"simple/allocine.svg","simple-alltrails":"simple/alltrails.svg","simple-almalinux":"simple/almalinux.svg","simple-alpinedotjs":"simple/alpinedotjs.svg","simple-alpinelinux":"simple/alpinelinux.svg","simple-alternativeto":"simple/alternativeto.svg","simple-alteryx":"simple/alteryx.svg","simple-altiumdesigner":"simple/altiumdesigner.svg","simple-alwaysdata":"simple/alwaysdata.svg","simple-alx":"simple/alx.svg","simple-amazon":"simple/amazon.svg","simple-amazonalexa":"simple/amazonalexa.svg","simple-amazonapigateway":"simple/amazonapigateway.svg","simple-amazoncloudwatch":"simple/amazoncloudwatch.svg","simple-amazoncognito":"simple/amazoncognito.svg","simple-amazondocumentdb":"simple/amazondocumentdb.svg","simple-amazondynamodb":"simple/amazondynamodb.svg","simple-amazonec2":"simple/amazonec2.svg","simple-amazonecs":"simple/amazonecs.svg","simple-amazoneks":"simple/amazoneks.svg","simple-amazonelasticache":"simple/amazonelasticache.svg","simple-amazonfiretv":"simple/amazonfiretv.svg","simple-amazongames":"simple/amazongames.svg","simple-amazoniam":"simple/amazoniam.svg","simple-amazonlumberyard":"simple/amazonlumberyard.svg","simple-amazonluna":"simple/amazonluna.svg","simple-amazonmusic":"simple/amazonmusic.svg","simple-amazonpay":"simple/amazonpay.svg","simple-amazonprime":"simple/amazonprime.svg","simple-amazonrds":"simple/amazonrds.svg","simple-amazonredshift":"simple/amazonredshift.svg","simple-amazonroute53":"simple/amazonroute53.svg","simple-amazons3":"simple/amazons3.svg","simple-amazonsimpleemailservice":"simple/amazonsimpleemailservice.svg","simple-amazonsqs":"simple/amazonsqs.svg","simple-amazonwebservices":"simple/amazonwebservices.svg","simple-amd":"simple/amd.svg","simple-ameba":"simple/ameba.svg","simple-americanairlines":"simple/americanairlines.svg","simple-americanexpress":"simple/americanexpress.svg","simple-amg":"simple/amg.svg","simple-amp":"simple/amp.svg","simple-amul":"simple/amul.svg","simple-ana":"simple/ana.svg","simple-anaconda":"simple/anaconda.svg","simple-analogue":"simple/analogue.svg","simple-andela":"simple/andela.svg","simple-android":"simple/android.svg","simple-androidauto":"simple/androidauto.svg","simple-androidstudio":"simple/androidstudio.svg","simple-angular":"simple/angular.svg","simple-anilist":"simple/anilist.svg","simple-animalplanet":"simple/animalplanet.svg","simple-ankermake":"simple/ankermake.svg","simple-anki":"simple/anki.svg","simple-ansible":"simple/ansible.svg","simple-answer":"simple/answer.svg","simple-ansys":"simple/ansys.svg","simple-anta":"simple/anta.svg","simple-antdesign":"simple/antdesign.svg","simple-antena3":"simple/antena3.svg","simple-anthropic":"simple/anthropic.svg","simple-antv":"simple/antv.svg","simple-anycubic":"simple/anycubic.svg","simple-anydesk":"simple/anydesk.svg","simple-anytype":"simple/anytype.svg","simple-aol":"simple/aol.svg","simple-apache":"simple/apache.svg","simple-apacheairflow":"simple/apacheairflow.svg","simple-apacheant":"simple/apacheant.svg","simple-apachecassandra":"simple/apachecassandra.svg","simple-apachecloudstack":"simple/apachecloudstack.svg","simple-apachecordova":"simple/apachecordova.svg","simple-apachecouchdb":"simple/apachecouchdb.svg","simple-apachedolphinscheduler":"simple/apachedolphinscheduler.svg","simple-apachedruid":"simple/apachedruid.svg","simple-apacheecharts":"simple/apacheecharts.svg","simple-apacheflink":"simple/apacheflink.svg","simple-apachefreemarker":"simple/apachefreemarker.svg","simple-apachegroovy":"simple/apachegroovy.svg","simple-apacheguacamole":"simple/apacheguacamole.svg","simple-apachehadoop":"simple/apachehadoop.svg","simple-apachehbase":"simple/apachehbase.svg","simple-apachehive":"simple/apachehive.svg","simple-apachejmeter":"simple/apachejmeter.svg","simple-apachekafka":"simple/apachekafka.svg","simple-apachekylin":"simple/apachekylin.svg","simple-apachelucene":"simple/apachelucene.svg","simple-apachemaven":"simple/apachemaven.svg","simple-apachenetbeanside":"simple/apachenetbeanside.svg","simple-apachenifi":"simple/apachenifi.svg","simple-apacheopenoffice":"simple/apacheopenoffice.svg","simple-apacheparquet":"simple/apacheparquet.svg","simple-apachepulsar":"simple/apachepulsar.svg","simple-apacherocketmq":"simple/apacherocketmq.svg","simple-apachesolr":"simple/apachesolr.svg","simple-apachespark":"simple/apachespark.svg","simple-apachestorm":"simple/apachestorm.svg","simple-apachesuperset":"simple/apachesuperset.svg","simple-apachetomcat":"simple/apachetomcat.svg","simple-aparat":"simple/aparat.svg","simple-apifox":"simple/apifox.svg","simple-apmterminals":"simple/apmterminals.svg","simple-apollographql":"simple/apollographql.svg","simple-apostrophe":"simple/apostrophe.svg","simple-appgallery":"simple/appgallery.svg","simple-appian":"simple/appian.svg","simple-appium":"simple/appium.svg","simple-apple":"simple/apple.svg","simple-applearcade":"simple/applearcade.svg","simple-applemusic":"simple/applemusic.svg","simple-applenews":"simple/applenews.svg","simple-applepay":"simple/applepay.svg","simple-applepodcasts":"simple/applepodcasts.svg","simple-appletv":"simple/appletv.svg","simple-appsignal":"simple/appsignal.svg","simple-appsmith":"simple/appsmith.svg","simple-appstore":"simple/appstore.svg","simple-appveyor":"simple/appveyor.svg","simple-appwrite":"simple/appwrite.svg","simple-aqua":"simple/aqua.svg","simple-aral":"simple/aral.svg","simple-arangodb":"simple/arangodb.svg","simple-arc":"simple/arc.svg","simple-arcgis":"simple/arcgis.svg","simple-archicad":"simple/archicad.svg","simple-archiveofourown":"simple/archiveofourown.svg","simple-archlinux":"simple/archlinux.svg","simple-ardour":"simple/ardour.svg","simple-arduino":"simple/arduino.svg","simple-argo":"simple/argo.svg","simple-argos":"simple/argos.svg","simple-ariakit":"simple/ariakit.svg","simple-arkecosystem":"simple/arkecosystem.svg","simple-arlo":"simple/arlo.svg","simple-arm":"simple/arm.svg","simple-armkeil":"simple/armkeil.svg","simple-arstechnica":"simple/arstechnica.svg","simple-artifacthub":"simple/artifacthub.svg","simple-artixlinux":"simple/artixlinux.svg","simple-artstation":"simple/artstation.svg","simple-arxiv":"simple/arxiv.svg","simple-asahilinux":"simple/asahilinux.svg","simple-asana":"simple/asana.svg","simple-asciidoctor":"simple/asciidoctor.svg","simple-asciinema":"simple/asciinema.svg","simple-asda":"simple/asda.svg","simple-aseprite":"simple/aseprite.svg","simple-assemblyscript":"simple/assemblyscript.svg","simple-asterisk":"simple/asterisk.svg","simple-astonmartin":"simple/astonmartin.svg","simple-astra":"simple/astra.svg","simple-astral":"simple/astral.svg","simple-astro":"simple/astro.svg","simple-asus":"simple/asus.svg","simple-atandt":"simple/atandt.svg","simple-atari":"simple/atari.svg","simple-atlasos":"simple/atlasos.svg","simple-atlassian":"simple/atlassian.svg","simple-auchan":"simple/auchan.svg","simple-audacity":"simple/audacity.svg","simple-audi":"simple/audi.svg","simple-audible":"simple/audible.svg","simple-audiobookshelf":"simple/audiobookshelf.svg","simple-audioboom":"simple/audioboom.svg","simple-audiomack":"simple/audiomack.svg","simple-audiotechnica":"simple/audiotechnica.svg","simple-aurelia":"simple/aurelia.svg","simple-auth0":"simple/auth0.svg","simple-authelia":"simple/authelia.svg","simple-authentik":"simple/authentik.svg","simple-authy":"simple/authy.svg","simple-autocad":"simple/autocad.svg","simple-autocannon":"simple/autocannon.svg","simple-autodesk":"simple/autodesk.svg","simple-autodeskmaya":"simple/autodeskmaya.svg","simple-autodeskrevit":"simple/autodeskrevit.svg","simple-autohotkey":"simple/autohotkey.svg","simple-autoit":"simple/autoit.svg","simple-automattic":"simple/automattic.svg","simple-autoprefixer":"simple/autoprefixer.svg","simple-autozone":"simple/autozone.svg","simple-avajs":"simple/avajs.svg","simple-avast":"simple/avast.svg","simple-avianca":"simple/avianca.svg","simple-avira":"simple/avira.svg","simple-awesomelists":"simple/awesomelists.svg","simple-awesomewm":"simple/awesomewm.svg","simple-awsamplify":"simple/awsamplify.svg","simple-awselasticloadbalancing":"simple/awselasticloadbalancing.svg","simple-awsfargate":"simple/awsfargate.svg","simple-awslambda":"simple/awslambda.svg","simple-awsorganizations":"simple/awsorganizations.svg","simple-awssecretsmanager":"simple/awssecretsmanager.svg","simple-awwwards":"simple/awwwards.svg","simple-axios":"simple/axios.svg","simple-babel":"simple/babel.svg","simple-babelio":"simple/babelio.svg","simple-babylondotjs":"simple/babylondotjs.svg","simple-backblaze":"simple/backblaze.svg","simple-backbone":"simple/backbone.svg","simple-backbonedotjs":"simple/backbonedotjs.svg","simple-backendless":"simple/backendless.svg","simple-backstage":"simple/backstage.svg","simple-badoo":"simple/badoo.svg","simple-baidu":"simple/baidu.svg","simple-bakalari":"simple/bakalari.svg","simple-bamboo":"simple/bamboo.svg","simple-bambulab":"simple/bambulab.svg","simple-bandcamp":"simple/bandcamp.svg","simple-bandlab":"simple/bandlab.svg","simple-bandrautomation":"simple/bandrautomation.svg","simple-bandsintown":"simple/bandsintown.svg","simple-bankofamerica":"simple/bankofamerica.svg","simple-barclays":"simple/barclays.svg","simple-baremetrics":"simple/baremetrics.svg","simple-barmenia":"simple/barmenia.svg","simple-basecamp":"simple/basecamp.svg","simple-baserow":"simple/baserow.svg","simple-basicattentiontoken":"simple/basicattentiontoken.svg","simple-bastyon":"simple/bastyon.svg","simple-bat":"simple/bat.svg","simple-bata":"simple/bata.svg","simple-battledotnet":"simple/battledotnet.svg","simple-bazel":"simple/bazel.svg","simple-beatport":"simple/beatport.svg","simple-beats":"simple/beats.svg","simple-beatsbydre":"simple/beatsbydre.svg","simple-beatstars":"simple/beatstars.svg","simple-beekeeperstudio":"simple/beekeeperstudio.svg","simple-behance":"simple/behance.svg","simple-beijingsubway":"simple/beijingsubway.svg","simple-bem":"simple/bem.svg","simple-bentley":"simple/bentley.svg","simple-bento":"simple/bento.svg","simple-bentobox":"simple/bentobox.svg","simple-bentoml":"simple/bentoml.svg","simple-bereal":"simple/bereal.svg","simple-betfair":"simple/betfair.svg","simple-betterdiscord":"simple/betterdiscord.svg","simple-betterstack":"simple/betterstack.svg","simple-bevy":"simple/bevy.svg","simple-bigbasket":"simple/bigbasket.svg","simple-bigbluebutton":"simple/bigbluebutton.svg","simple-bigcartel":"simple/bigcartel.svg","simple-bigcommerce":"simple/bigcommerce.svg","simple-bilibili":"simple/bilibili.svg","simple-billboard":"simple/billboard.svg","simple-bim":"simple/bim.svg","simple-binance":"simple/binance.svg","simple-biolink":"simple/biolink.svg","simple-biome":"simple/biome.svg","simple-bisecthosting":"simple/bisecthosting.svg","simple-bit":"simple/bit.svg","simple-bitbucket":"simple/bitbucket.svg","simple-bitcoin":"simple/bitcoin.svg","simple-bitcoincash":"simple/bitcoincash.svg","simple-bitcoinsv":"simple/bitcoinsv.svg","simple-bitcomet":"simple/bitcomet.svg","simple-bitdefender":"simple/bitdefender.svg","simple-bitly":"simple/bitly.svg","simple-bitrise":"simple/bitrise.svg","simple-bittorrent":"simple/bittorrent.svg","simple-bitwarden":"simple/bitwarden.svg","simple-bitwig":"simple/bitwig.svg","simple-blackberry":"simple/blackberry.svg","simple-blackmagicdesign":"simple/blackmagicdesign.svg","simple-blazemeter":"simple/blazemeter.svg","simple-blazor":"simple/blazor.svg","simple-blender":"simple/blender.svg","simple-blockbench":"simple/blockbench.svg","simple-blockchaindotcom":"simple/blockchaindotcom.svg","simple-blogger":"simple/blogger.svg","simple-bloglovin":"simple/bloglovin.svg","simple-blueprint":"simple/blueprint.svg","simple-bluesky":"simple/bluesky.svg","simple-bluesound":"simple/bluesound.svg","simple-bluetooth":"simple/bluetooth.svg","simple-bmcsoftware":"simple/bmcsoftware.svg","simple-bmw":"simple/bmw.svg","simple-bnbchain":"simple/bnbchain.svg","simple-boardgamegeek":"simple/boardgamegeek.svg","simple-boat":"simple/boat.svg","simple-boehringeringelheim":"simple/boehringeringelheim.svg","simple-boeing":"simple/boeing.svg","simple-bombardier":"simple/bombardier.svg","simple-bookalope":"simple/bookalope.svg","simple-bookbub":"simple/bookbub.svg","simple-bookmeter":"simple/bookmeter.svg","simple-bookmyshow":"simple/bookmyshow.svg","simple-bookstack":"simple/bookstack.svg","simple-boost":"simple/boost.svg","simple-boosty":"simple/boosty.svg","simple-boots":"simple/boots.svg","simple-bootstrap":"simple/bootstrap.svg","simple-borgbackup":"simple/borgbackup.svg","simple-bosch":"simple/bosch.svg","simple-bose":"simple/bose.svg","simple-botblecms":"simple/botblecms.svg","simple-boulanger":"simple/boulanger.svg","simple-bower":"simple/bower.svg","simple-box":"simple/box.svg","simple-boxysvg":"simple/boxysvg.svg","simple-braintree":"simple/braintree.svg","simple-brandfolder":"simple/brandfolder.svg","simple-brave":"simple/brave.svg","simple-breaker":"simple/breaker.svg","simple-brenntag":"simple/brenntag.svg","simple-brevo":"simple/brevo.svg","simple-brex":"simple/brex.svg","simple-bricks":"simple/bricks.svg","simple-britishairways":"simple/britishairways.svg","simple-broadcom":"simple/broadcom.svg","simple-bruno":"simple/bruno.svg","simple-bsd":"simple/bsd.svg","simple-bspwm":"simple/bspwm.svg","simple-bt":"simple/bt.svg","simple-buddy":"simple/buddy.svg","simple-budibase":"simple/budibase.svg","simple-buefy":"simple/buefy.svg","simple-buffer":"simple/buffer.svg","simple-bugatti":"simple/bugatti.svg","simple-bugcrowd":"simple/bugcrowd.svg","simple-bugsnag":"simple/bugsnag.svg","simple-buhl":"simple/buhl.svg","simple-buildkite":"simple/buildkite.svg","simple-builtbybit":"simple/builtbybit.svg","simple-bukalapak":"simple/bukalapak.svg","simple-bulma":"simple/bulma.svg","simple-bun":"simple/bun.svg","simple-bungie":"simple/bungie.svg","simple-bunq":"simple/bunq.svg","simple-burgerking":"simple/burgerking.svg","simple-burpsuite":"simple/burpsuite.svg","simple-burton":"simple/burton.svg","simple-buymeacoffee":"simple/buymeacoffee.svg","simple-buysellads":"simple/buysellads.svg","simple-buzzfeed":"simple/buzzfeed.svg","simple-bvg":"simple/bvg.svg","simple-byjus":"simple/byjus.svg","simple-bytedance":"simple/bytedance.svg","simple-c":"simple/c.svg","simple-cachet":"simple/cachet.svg","simple-caddy":"simple/caddy.svg","simple-cadillac":"simple/cadillac.svg","simple-cafepress":"simple/cafepress.svg","simple-cairographics":"simple/cairographics.svg","simple-cairometro":"simple/cairometro.svg","simple-caixabank":"simple/caixabank.svg","simple-cakephp":"simple/cakephp.svg","simple-caldotcom":"simple/caldotcom.svg","simple-calendly":"simple/calendly.svg","simple-calibreweb":"simple/calibreweb.svg","simple-campaignmonitor":"simple/campaignmonitor.svg","simple-camunda":"simple/camunda.svg","simple-canonical":"simple/canonical.svg","simple-canva":"simple/canva.svg","simple-canvas":"simple/canvas.svg","simple-capacitor":"simple/capacitor.svg","simple-caprover":"simple/caprover.svg","simple-cardano":"simple/cardano.svg","simple-carlsberggroup":"simple/carlsberggroup.svg","simple-carrd":"simple/carrd.svg","simple-carrefour":"simple/carrefour.svg","simple-carthrottle":"simple/carthrottle.svg","simple-carto":"simple/carto.svg","simple-cashapp":"simple/cashapp.svg","simple-castbox":"simple/castbox.svg","simple-castorama":"simple/castorama.svg","simple-castro":"simple/castro.svg","simple-caterpillar":"simple/caterpillar.svg","simple-cbc":"simple/cbc.svg","simple-cbs":"simple/cbs.svg","simple-ccc":"simple/ccc.svg","simple-ccleaner":"simple/ccleaner.svg","simple-cdprojekt":"simple/cdprojekt.svg","simple-ce":"simple/ce.svg","simple-celery":"simple/celery.svg","simple-celestron":"simple/celestron.svg","simple-centos":"simple/centos.svg","simple-ceph":"simple/ceph.svg","simple-cesium":"simple/cesium.svg","simple-chai":"simple/chai.svg","simple-chainguard":"simple/chainguard.svg","simple-chainlink":"simple/chainlink.svg","simple-chakraui":"simple/chakraui.svg","simple-channel4":"simple/channel4.svg","simple-charles":"simple/charles.svg","simple-chartdotjs":"simple/chartdotjs.svg","simple-chartmogul":"simple/chartmogul.svg","simple-chase":"simple/chase.svg","simple-chatbot":"simple/chatbot.svg","simple-chatwoot":"simple/chatwoot.svg","simple-checkio":"simple/checkio.svg","simple-checkmarx":"simple/checkmarx.svg","simple-checkmk":"simple/checkmk.svg","simple-chedraui":"simple/chedraui.svg","simple-cheerio":"simple/cheerio.svg","simple-chef":"simple/chef.svg","simple-chemex":"simple/chemex.svg","simple-chessdotcom":"simple/chessdotcom.svg","simple-chevrolet":"simple/chevrolet.svg","simple-chianetwork":"simple/chianetwork.svg","simple-chinaeasternairlines":"simple/chinaeasternairlines.svg","simple-chinasouthernairlines":"simple/chinasouthernairlines.svg","simple-chocolatey":"simple/chocolatey.svg","simple-chromatic":"simple/chromatic.svg","simple-chromecast":"simple/chromecast.svg","simple-chromewebstore":"simple/chromewebstore.svg","simple-chrysler":"simple/chrysler.svg","simple-chupachups":"simple/chupachups.svg","simple-cilium":"simple/cilium.svg","simple-cinema4d":"simple/cinema4d.svg","simple-cinnamon":"simple/cinnamon.svg","simple-circle":"simple/circle.svg","simple-circleci":"simple/circleci.svg","simple-circuitverse":"simple/circuitverse.svg","simple-cirrusci":"simple/cirrusci.svg","simple-cisco":"simple/cisco.svg","simple-citrix":"simple/citrix.svg","simple-citroen":"simple/citroen.svg","simple-civicrm":"simple/civicrm.svg","simple-civo":"simple/civo.svg","simple-clarifai":"simple/clarifai.svg","simple-claris":"simple/claris.svg","simple-clarivate":"simple/clarivate.svg","simple-claude":"simple/claude.svg","simple-clerk":"simple/clerk.svg","simple-clevercloud":"simple/clevercloud.svg","simple-clickhouse":"simple/clickhouse.svg","simple-clickup":"simple/clickup.svg","simple-clion":"simple/clion.svg","simple-clockify":"simple/clockify.svg","simple-clojure":"simple/clojure.svg","simple-cloud66":"simple/cloud66.svg","simple-cloudbees":"simple/cloudbees.svg","simple-cloudcannon":"simple/cloudcannon.svg","simple-cloudera":"simple/cloudera.svg","simple-cloudflare":"simple/cloudflare.svg","simple-cloudflarepages":"simple/cloudflarepages.svg","simple-cloudflareworkers":"simple/cloudflareworkers.svg","simple-cloudfoundry":"simple/cloudfoundry.svg","simple-cloudinary":"simple/cloudinary.svg","simple-cloudron":"simple/cloudron.svg","simple-cloudsmith":"simple/cloudsmith.svg","simple-cloudways":"simple/cloudways.svg","simple-clubforce":"simple/clubforce.svg","simple-clubhouse":"simple/clubhouse.svg","simple-clyp":"simple/clyp.svg","simple-cmake":"simple/cmake.svg","simple-cncf":"simple/cncf.svg","simple-cnet":"simple/cnet.svg","simple-cnn":"simple/cnn.svg","simple-cocacola":"simple/cocacola.svg","simple-cockpit":"simple/cockpit.svg","simple-cockroachlabs":"simple/cockroachlabs.svg","simple-cocoapods":"simple/cocoapods.svg","simple-cocos":"simple/cocos.svg","simple-coda":"simple/coda.svg","simple-codacy":"simple/codacy.svg","simple-codeberg":"simple/codeberg.svg","simple-codeblocks":"simple/codeblocks.svg","simple-codecademy":"simple/codecademy.svg","simple-codeceptjs":"simple/codeceptjs.svg","simple-codechef":"simple/codechef.svg","simple-codeclimate":"simple/codeclimate.svg","simple-codecov":"simple/codecov.svg","simple-codecrafters":"simple/codecrafters.svg","simple-codefactor":"simple/codefactor.svg","simple-codeforces":"simple/codeforces.svg","simple-codefresh":"simple/codefresh.svg","simple-codeigniter":"simple/codeigniter.svg","simple-codeium":"simple/codeium.svg","simple-codemagic":"simple/codemagic.svg","simple-codementor":"simple/codementor.svg","simple-codemirror":"simple/codemirror.svg","simple-codenewbie":"simple/codenewbie.svg","simple-codepen":"simple/codepen.svg","simple-codeproject":"simple/codeproject.svg","simple-coder":"simple/coder.svg","simple-codersrank":"simple/codersrank.svg","simple-coderwall":"simple/coderwall.svg","simple-codesandbox":"simple/codesandbox.svg","simple-codeship":"simple/codeship.svg","simple-codesignal":"simple/codesignal.svg","simple-codestream":"simple/codestream.svg","simple-codewars":"simple/codewars.svg","simple-codingame":"simple/codingame.svg","simple-codingninjas":"simple/codingninjas.svg","simple-codio":"simple/codio.svg","simple-coffeescript":"simple/coffeescript.svg","simple-coggle":"simple/coggle.svg","simple-cognizant":"simple/cognizant.svg","simple-cohost":"simple/cohost.svg","simple-coinbase":"simple/coinbase.svg","simple-coinmarketcap":"simple/coinmarketcap.svg","simple-collaboraonline":"simple/collaboraonline.svg","simple-comicfury":"simple/comicfury.svg","simple-comma":"simple/comma.svg","simple-commerzbank":"simple/commerzbank.svg","simple-commitlint":"simple/commitlint.svg","simple-commodore":"simple/commodore.svg","simple-commonlisp":"simple/commonlisp.svg","simple-commonworkflowlanguage":"simple/commonworkflowlanguage.svg","simple-compilerexplorer":"simple/compilerexplorer.svg","simple-composer":"simple/composer.svg","simple-comptia":"simple/comptia.svg","simple-comsol":"simple/comsol.svg","simple-conan":"simple/conan.svg","simple-concourse":"simple/concourse.svg","simple-condaforge":"simple/condaforge.svg","simple-conekta":"simple/conekta.svg","simple-confluence":"simple/confluence.svg","simple-construct3":"simple/construct3.svg","simple-consul":"simple/consul.svg","simple-contabo":"simple/contabo.svg","simple-contactlesspayment":"simple/contactlesspayment.svg","simple-containerd":"simple/containerd.svg","simple-contao":"simple/contao.svg","simple-contentful":"simple/contentful.svg","simple-contentstack":"simple/contentstack.svg","simple-continente":"simple/continente.svg","simple-contributorcovenant":"simple/contributorcovenant.svg","simple-conventionalcommits":"simple/conventionalcommits.svg","simple-convertio":"simple/convertio.svg","simple-cookiecutter":"simple/cookiecutter.svg","simple-coolermaster":"simple/coolermaster.svg","simple-coop":"simple/coop.svg","simple-copaairlines":"simple/copaairlines.svg","simple-coppel":"simple/coppel.svg","simple-cora":"simple/cora.svg","simple-coreldraw":"simple/coreldraw.svg","simple-coronaengine":"simple/coronaengine.svg","simple-coronarenderer":"simple/coronarenderer.svg","simple-corsair":"simple/corsair.svg","simple-couchbase":"simple/couchbase.svg","simple-counterstrike":"simple/counterstrike.svg","simple-countingworkspro":"simple/countingworkspro.svg","simple-coursera":"simple/coursera.svg","simple-coveralls":"simple/coveralls.svg","simple-coze":"simple/coze.svg","simple-cpanel":"simple/cpanel.svg","simple-cplusplus":"simple/cplusplus.svg","simple-cplusplusbuilder":"simple/cplusplusbuilder.svg","simple-craftcms":"simple/craftcms.svg","simple-craftsman":"simple/craftsman.svg","simple-cratedb":"simple/cratedb.svg","simple-crayon":"simple/crayon.svg","simple-creality":"simple/creality.svg","simple-createreactapp":"simple/createreactapp.svg","simple-creativecommons":"simple/creativecommons.svg","simple-creativetechnology":"simple/creativetechnology.svg","simple-credly":"simple/credly.svg","simple-crehana":"simple/crehana.svg","simple-crewai":"simple/crewai.svg","simple-crewunited":"simple/crewunited.svg","simple-criticalrole":"simple/criticalrole.svg","simple-crowdin":"simple/crowdin.svg","simple-crowdsource":"simple/crowdsource.svg","simple-crunchbase":"simple/crunchbase.svg","simple-crunchyroll":"simple/crunchyroll.svg","simple-cryengine":"simple/cryengine.svg","simple-cryptomator":"simple/cryptomator.svg","simple-cryptpad":"simple/cryptpad.svg","simple-crystal":"simple/crystal.svg","simple-csdn":"simple/csdn.svg","simple-css":"simple/css.svg","simple-css3":"simple/css3.svg","simple-cssdesignawards":"simple/cssdesignawards.svg","simple-cssmodules":"simple/cssmodules.svg","simple-csswizardry":"simple/csswizardry.svg","simple-cts":"simple/cts.svg","simple-cucumber":"simple/cucumber.svg","simple-cultura":"simple/cultura.svg","simple-curl":"simple/curl.svg","simple-curseforge":"simple/curseforge.svg","simple-customink":"simple/customink.svg","simple-cyberdefenders":"simple/cyberdefenders.svg","simple-cycling74":"simple/cycling74.svg","simple-cypress":"simple/cypress.svg","simple-cytoscapedotjs":"simple/cytoscapedotjs.svg","simple-d":"simple/d.svg","simple-d3":"simple/d3.svg","simple-dacia":"simple/dacia.svg","simple-daf":"simple/daf.svg","simple-dailydotdev":"simple/dailydotdev.svg","simple-dailymotion":"simple/dailymotion.svg","simple-daisyui":"simple/daisyui.svg","simple-dapr":"simple/dapr.svg","simple-darkreader":"simple/darkreader.svg","simple-dart":"simple/dart.svg","simple-darty":"simple/darty.svg","simple-daserste":"simple/daserste.svg","simple-dash":"simple/dash.svg","simple-dashlane":"simple/dashlane.svg","simple-dask":"simple/dask.svg","simple-dassaultsystemes":"simple/dassaultsystemes.svg","simple-databricks":"simple/databricks.svg","simple-datacamp":"simple/datacamp.svg","simple-datadog":"simple/datadog.svg","simple-datadotai":"simple/datadotai.svg","simple-datagrip":"simple/datagrip.svg","simple-dataiku":"simple/dataiku.svg","simple-datastax":"simple/datastax.svg","simple-datefns":"simple/datefns.svg","simple-datev":"simple/datev.svg","simple-datocms":"simple/datocms.svg","simple-datto":"simple/datto.svg","simple-davinciresolve":"simple/davinciresolve.svg","simple-dazhongdianping":"simple/dazhongdianping.svg","simple-dazn":"simple/dazn.svg","simple-dbeaver":"simple/dbeaver.svg","simple-dblp":"simple/dblp.svg","simple-dbt":"simple/dbt.svg","simple-dcentertainment":"simple/dcentertainment.svg","simple-debian":"simple/debian.svg","simple-debridlink":"simple/debridlink.svg","simple-decapcms":"simple/decapcms.svg","simple-decentraland":"simple/decentraland.svg","simple-dedge":"simple/dedge.svg","simple-deepcool":"simple/deepcool.svg","simple-deepgram":"simple/deepgram.svg","simple-deepin":"simple/deepin.svg","simple-deepl":"simple/deepl.svg","simple-deepnote":"simple/deepnote.svg","simple-deliveroo":"simple/deliveroo.svg","simple-dell":"simple/dell.svg","simple-delonghi":"simple/delonghi.svg","simple-delphi":"simple/delphi.svg","simple-delta":"simple/delta.svg","simple-deluge":"simple/deluge.svg","simple-deno":"simple/deno.svg","simple-denon":"simple/denon.svg","simple-dependabot":"simple/dependabot.svg","simple-dependencycheck":"simple/dependencycheck.svg","simple-depositphotos":"simple/depositphotos.svg","simple-derspiegel":"simple/derspiegel.svg","simple-deutschebahn":"simple/deutschebahn.svg","simple-deutschebank":"simple/deutschebank.svg","simple-deutschepost":"simple/deutschepost.svg","simple-deutschetelekom":"simple/deutschetelekom.svg","simple-deutschewelle":"simple/deutschewelle.svg","simple-devdotto":"simple/devdotto.svg","simple-devexpress":"simple/devexpress.svg","simple-deviantart":"simple/deviantart.svg","simple-devpost":"simple/devpost.svg","simple-devrant":"simple/devrant.svg","simple-dgraph":"simple/dgraph.svg","simple-dhl":"simple/dhl.svg","simple-diagramsdotnet":"simple/diagramsdotnet.svg","simple-dialogflow":"simple/dialogflow.svg","simple-diaspora":"simple/diaspora.svg","simple-dictionarydotcom":"simple/dictionarydotcom.svg","simple-digg":"simple/digg.svg","simple-digikeyelectronics":"simple/digikeyelectronics.svg","simple-digitalocean":"simple/digitalocean.svg","simple-dinersclub":"simple/dinersclub.svg","simple-dior":"simple/dior.svg","simple-directus":"simple/directus.svg","simple-discogs":"simple/discogs.svg","simple-discord":"simple/discord.svg","simple-discourse":"simple/discourse.svg","simple-discover":"simple/discover.svg","simple-disqus":"simple/disqus.svg","simple-disroot":"simple/disroot.svg","simple-distrokid":"simple/distrokid.svg","simple-django":"simple/django.svg","simple-dji":"simple/dji.svg","simple-dlib":"simple/dlib.svg","simple-dlna":"simple/dlna.svg","simple-dm":"simple/dm.svg","simple-docker":"simple/docker.svg","simple-docsdotrs":"simple/docsdotrs.svg","simple-docsify":"simple/docsify.svg","simple-doctrine":"simple/doctrine.svg","simple-docusaurus":"simple/docusaurus.svg","simple-dogecoin":"simple/dogecoin.svg","simple-doi":"simple/doi.svg","simple-dolby":"simple/dolby.svg","simple-doordash":"simple/doordash.svg","simple-dota2":"simple/dota2.svg","simple-dotenv":"simple/dotenv.svg","simple-dotnet":"simple/dotnet.svg","simple-douban":"simple/douban.svg","simple-doubanread":"simple/doubanread.svg","simple-dovecot":"simple/dovecot.svg","simple-dovetail":"simple/dovetail.svg","simple-downdetector":"simple/downdetector.svg","simple-doxygen":"simple/doxygen.svg","simple-dpd":"simple/dpd.svg","simple-dragonframe":"simple/dragonframe.svg","simple-draugiemdotlv":"simple/draugiemdotlv.svg","simple-dreamstime":"simple/dreamstime.svg","simple-dribbble":"simple/dribbble.svg","simple-drizzle":"simple/drizzle.svg","simple-drone":"simple/drone.svg","simple-drooble":"simple/drooble.svg","simple-dropbox":"simple/dropbox.svg","simple-drupal":"simple/drupal.svg","simple-dsautomobiles":"simple/dsautomobiles.svg","simple-dts":"simple/dts.svg","simple-dtube":"simple/dtube.svg","simple-ducati":"simple/ducati.svg","simple-duckdb":"simple/duckdb.svg","simple-duckduckgo":"simple/duckduckgo.svg","simple-dungeonsanddragons":"simple/dungeonsanddragons.svg","simple-dunked":"simple/dunked.svg","simple-dunzo":"simple/dunzo.svg","simple-duolingo":"simple/duolingo.svg","simple-duplicati":"simple/duplicati.svg","simple-dvc":"simple/dvc.svg","simple-dwavesystems":"simple/dwavesystems.svg","simple-dwm":"simple/dwm.svg","simple-dynatrace":"simple/dynatrace.svg","simple-e":"simple/e.svg","simple-e3":"simple/e3.svg","simple-ea":"simple/ea.svg","simple-eac":"simple/eac.svg","simple-eagle":"simple/eagle.svg","simple-easyeda":"simple/easyeda.svg","simple-easyjet":"simple/easyjet.svg","simple-ebay":"simple/ebay.svg","simple-ebox":"simple/ebox.svg","simple-eclipseadoptium":"simple/eclipseadoptium.svg","simple-eclipseche":"simple/eclipseche.svg","simple-eclipseide":"simple/eclipseide.svg","simple-eclipsejetty":"simple/eclipsejetty.svg","simple-eclipsemosquitto":"simple/eclipsemosquitto.svg","simple-eclipsevertdotx":"simple/eclipsevertdotx.svg","simple-ecosia":"simple/ecosia.svg","simple-ecovacs":"simple/ecovacs.svg","simple-edeka":"simple/edeka.svg","simple-edgeimpulse":"simple/edgeimpulse.svg","simple-editorconfig":"simple/editorconfig.svg","simple-edotleclerc":"simple/edotleclerc.svg","simple-educative":"simple/educative.svg","simple-edx":"simple/edx.svg","simple-egghead":"simple/egghead.svg","simple-egnyte":"simple/egnyte.svg","simple-eight":"simple/eight.svg","simple-eightsleep":"simple/eightsleep.svg","simple-ejs":"simple/ejs.svg","simple-elastic":"simple/elastic.svg","simple-elasticcloud":"simple/elasticcloud.svg","simple-elasticsearch":"simple/elasticsearch.svg","simple-elasticstack":"simple/elasticstack.svg","simple-elavon":"simple/elavon.svg","simple-electron":"simple/electron.svg","simple-electronbuilder":"simple/electronbuilder.svg","simple-electronfiddle":"simple/electronfiddle.svg","simple-elegoo":"simple/elegoo.svg","simple-element":"simple/element.svg","simple-elementary":"simple/elementary.svg","simple-elementor":"simple/elementor.svg","simple-elevenlabs":"simple/elevenlabs.svg","simple-eleventy":"simple/eleventy.svg","simple-elgato":"simple/elgato.svg","simple-elixir":"simple/elixir.svg","simple-elm":"simple/elm.svg","simple-elsevier":"simple/elsevier.svg","simple-embarcadero":"simple/embarcadero.svg","simple-embark":"simple/embark.svg","simple-emberdotjs":"simple/emberdotjs.svg","simple-emby":"simple/emby.svg","simple-emirates":"simple/emirates.svg","simple-emlakjet":"simple/emlakjet.svg","simple-empirekred":"simple/empirekred.svg","simple-endeavouros":"simple/endeavouros.svg","simple-engadget":"simple/engadget.svg","simple-enpass":"simple/enpass.svg","simple-enterprisedb":"simple/enterprisedb.svg","simple-envato":"simple/envato.svg","simple-envoyproxy":"simple/envoyproxy.svg","simple-epel":"simple/epel.svg","simple-epicgames":"simple/epicgames.svg","simple-epson":"simple/epson.svg","simple-equinixmetal":"simple/equinixmetal.svg","simple-eraser":"simple/eraser.svg","simple-ericsson":"simple/ericsson.svg","simple-erlang":"simple/erlang.svg","simple-erpnext":"simple/erpnext.svg","simple-esbuild":"simple/esbuild.svg","simple-esea":"simple/esea.svg","simple-eslgaming":"simple/eslgaming.svg","simple-eslint":"simple/eslint.svg","simple-esotericsoftware":"simple/esotericsoftware.svg","simple-esphome":"simple/esphome.svg","simple-espressif":"simple/espressif.svg","simple-esri":"simple/esri.svg","simple-etcd":"simple/etcd.svg","simple-ethereum":"simple/ethereum.svg","simple-ethers":"simple/ethers.svg","simple-ethiopianairlines":"simple/ethiopianairlines.svg","simple-etihadairways":"simple/etihadairways.svg","simple-etsy":"simple/etsy.svg","simple-europeanunion":"simple/europeanunion.svg","simple-eventbrite":"simple/eventbrite.svg","simple-eventstore":"simple/eventstore.svg","simple-evernote":"simple/evernote.svg","simple-excalidraw":"simple/excalidraw.svg","simple-exercism":"simple/exercism.svg","simple-exordo":"simple/exordo.svg","simple-exoscale":"simple/exoscale.svg","simple-expedia":"simple/expedia.svg","simple-expensify":"simple/expensify.svg","simple-expertsexchange":"simple/expertsexchange.svg","simple-expo":"simple/expo.svg","simple-express":"simple/express.svg","simple-expressdotcom":"simple/expressdotcom.svg","simple-expressvpn":"simple/expressvpn.svg","simple-eyeem":"simple/eyeem.svg","simple-f1":"simple/f1.svg","simple-f5":"simple/f5.svg","simple-facebook":"simple/facebook.svg","simple-facebookgaming":"simple/facebookgaming.svg","simple-facebooklive":"simple/facebooklive.svg","simple-faceit":"simple/faceit.svg","simple-facepunch":"simple/facepunch.svg","simple-fairphone":"simple/fairphone.svg","simple-falco":"simple/falco.svg","simple-falcon":"simple/falcon.svg","simple-fampay":"simple/fampay.svg","simple-fandango":"simple/fandango.svg","simple-fandom":"simple/fandom.svg","simple-fanfou":"simple/fanfou.svg","simple-fantom":"simple/fantom.svg","simple-farcaster":"simple/farcaster.svg","simple-fareharbor":"simple/fareharbor.svg","simple-farfetch":"simple/farfetch.svg","simple-fastapi":"simple/fastapi.svg","simple-fastify":"simple/fastify.svg","simple-fastlane":"simple/fastlane.svg","simple-fastly":"simple/fastly.svg","simple-fathom":"simple/fathom.svg","simple-fauna":"simple/fauna.svg","simple-favro":"simple/favro.svg","simple-fcc":"simple/fcc.svg","simple-fdroid":"simple/fdroid.svg","simple-fedex":"simple/fedex.svg","simple-fedora":"simple/fedora.svg","simple-feedly":"simple/feedly.svg","simple-ferrari":"simple/ferrari.svg","simple-ferrarinv":"simple/ferrarinv.svg","simple-ferretdb":"simple/ferretdb.svg","simple-ffmpeg":"simple/ffmpeg.svg","simple-fi":"simple/fi.svg","simple-fiat":"simple/fiat.svg","simple-fidoalliance":"simple/fidoalliance.svg","simple-fifa":"simple/fifa.svg","simple-fig":"simple/fig.svg","simple-figma":"simple/figma.svg","simple-figshare":"simple/figshare.svg","simple-fila":"simple/fila.svg","simple-filament":"simple/filament.svg","simple-filedotio":"simple/filedotio.svg","simple-files":"simple/files.svg","simple-filezilla":"simple/filezilla.svg","simple-fineco":"simple/fineco.svg","simple-fing":"simple/fing.svg","simple-firebase":"simple/firebase.svg","simple-firefish":"simple/firefish.svg","simple-fireflyiii":"simple/fireflyiii.svg","simple-firefox":"simple/firefox.svg","simple-firefoxbrowser":"simple/firefoxbrowser.svg","simple-fireship":"simple/fireship.svg","simple-firewalla":"simple/firewalla.svg","simple-first":"simple/first.svg","simple-fishshell":"simple/fishshell.svg","simple-fitbit":"simple/fitbit.svg","simple-fivem":"simple/fivem.svg","simple-fiverr":"simple/fiverr.svg","simple-fizz":"simple/fizz.svg","simple-flashforge":"simple/flashforge.svg","simple-flask":"simple/flask.svg","simple-flat":"simple/flat.svg","simple-flathub":"simple/flathub.svg","simple-flatpak":"simple/flatpak.svg","simple-flickr":"simple/flickr.svg","simple-flightaware":"simple/flightaware.svg","simple-flipboard":"simple/flipboard.svg","simple-flipkart":"simple/flipkart.svg","simple-floatplane":"simple/floatplane.svg","simple-flood":"simple/flood.svg","simple-fluentbit":"simple/fluentbit.svg","simple-fluentd":"simple/fluentd.svg","simple-fluke":"simple/fluke.svg","simple-flutter":"simple/flutter.svg","simple-flux":"simple/flux.svg","simple-flydotio":"simple/flydotio.svg","simple-flyway":"simple/flyway.svg","simple-fmod":"simple/fmod.svg","simple-fnac":"simple/fnac.svg","simple-folium":"simple/folium.svg","simple-fonoma":"simple/fonoma.svg","simple-fontawesome":"simple/fontawesome.svg","simple-fontbase":"simple/fontbase.svg","simple-fontforge":"simple/fontforge.svg","simple-foobar2000":"simple/foobar2000.svg","simple-foodpanda":"simple/foodpanda.svg","simple-ford":"simple/ford.svg","simple-forgejo":"simple/forgejo.svg","simple-formik":"simple/formik.svg","simple-formspree":"simple/formspree.svg","simple-formstack":"simple/formstack.svg","simple-fortinet":"simple/fortinet.svg","simple-fortran":"simple/fortran.svg","simple-fossa":"simple/fossa.svg","simple-fossilscm":"simple/fossilscm.svg","simple-foundryvirtualtabletop":"simple/foundryvirtualtabletop.svg","simple-foursquare":"simple/foursquare.svg","simple-fox":"simple/fox.svg","simple-foxtel":"simple/foxtel.svg","simple-fozzy":"simple/fozzy.svg","simple-framer":"simple/framer.svg","simple-framework":"simple/framework.svg","simple-framework7":"simple/framework7.svg","simple-franprix":"simple/franprix.svg","simple-frappe":"simple/frappe.svg","simple-fraunhofergesellschaft":"simple/fraunhofergesellschaft.svg","simple-freebsd":"simple/freebsd.svg","simple-freecad":"simple/freecad.svg","simple-freecodecamp":"simple/freecodecamp.svg","simple-freedesktopdotorg":"simple/freedesktopdotorg.svg","simple-freelancer":"simple/freelancer.svg","simple-freelancermap":"simple/freelancermap.svg","simple-freenas":"simple/freenas.svg","simple-freenet":"simple/freenet.svg","simple-freepik":"simple/freepik.svg","simple-fresh":"simple/fresh.svg","simple-frontendmentor":"simple/frontendmentor.svg","simple-frontify":"simple/frontify.svg","simple-fsecure":"simple/fsecure.svg","simple-fsharp":"simple/fsharp.svg","simple-fubo":"simple/fubo.svg","simple-fueler":"simple/fueler.svg","simple-fugacloud":"simple/fugacloud.svg","simple-fujifilm":"simple/fujifilm.svg","simple-fujitsu":"simple/fujitsu.svg","simple-furaffinity":"simple/furaffinity.svg","simple-furrynetwork":"simple/furrynetwork.svg","simple-fusionauth":"simple/fusionauth.svg","simple-futurelearn":"simple/futurelearn.svg","simple-fyle":"simple/fyle.svg","simple-g2":"simple/g2.svg","simple-g2a":"simple/g2a.svg","simple-g2g":"simple/g2g.svg","simple-galaxus":"simple/galaxus.svg","simple-gamebanana":"simple/gamebanana.svg","simple-gamedeveloper":"simple/gamedeveloper.svg","simple-gamejolt":"simple/gamejolt.svg","simple-gameloft":"simple/gameloft.svg","simple-gamemaker":"simple/gamemaker.svg","simple-gamescience":"simple/gamescience.svg","simple-garmin":"simple/garmin.svg","simple-gatling":"simple/gatling.svg","simple-gatsby":"simple/gatsby.svg","simple-gcore":"simple/gcore.svg","simple-gdal":"simple/gdal.svg","simple-geeksforgeeks":"simple/geeksforgeeks.svg","simple-generalelectric":"simple/generalelectric.svg","simple-generalmotors":"simple/generalmotors.svg","simple-genius":"simple/genius.svg","simple-gentoo":"simple/gentoo.svg","simple-geocaching":"simple/geocaching.svg","simple-geode":"simple/geode.svg","simple-geopandas":"simple/geopandas.svg","simple-gerrit":"simple/gerrit.svg","simple-getx":"simple/getx.svg","simple-ghost":"simple/ghost.svg","simple-ghostery":"simple/ghostery.svg","simple-gimp":"simple/gimp.svg","simple-gin":"simple/gin.svg","simple-giphy":"simple/giphy.svg","simple-git":"simple/git.svg","simple-gitbook":"simple/gitbook.svg","simple-gitconnected":"simple/gitconnected.svg","simple-gitea":"simple/gitea.svg","simple-gitee":"simple/gitee.svg","simple-gitextensions":"simple/gitextensions.svg","simple-gitforwindows":"simple/gitforwindows.svg","simple-github":"simple/github.svg","simple-githubactions":"simple/githubactions.svg","simple-githubcopilot":"simple/githubcopilot.svg","simple-githubpages":"simple/githubpages.svg","simple-githubsponsors":"simple/githubsponsors.svg","simple-gitignoredotio":"simple/gitignoredotio.svg","simple-gitkraken":"simple/gitkraken.svg","simple-gitlab":"simple/gitlab.svg","simple-gitlfs":"simple/gitlfs.svg","simple-gitpod":"simple/gitpod.svg","simple-gitter":"simple/gitter.svg","simple-glassdoor":"simple/glassdoor.svg","simple-glide":"simple/glide.svg","simple-glitch":"simple/glitch.svg","simple-globus":"simple/globus.svg","simple-glovo":"simple/glovo.svg","simple-gltf":"simple/gltf.svg","simple-gmail":"simple/gmail.svg","simple-gmx":"simple/gmx.svg","simple-gnome":"simple/gnome.svg","simple-gnometerminal":"simple/gnometerminal.svg","simple-gnu":"simple/gnu.svg","simple-gnubash":"simple/gnubash.svg","simple-gnuemacs":"simple/gnuemacs.svg","simple-gnuicecat":"simple/gnuicecat.svg","simple-gnuprivacyguard":"simple/gnuprivacyguard.svg","simple-gnusocial":"simple/gnusocial.svg","simple-go":"simple/go.svg","simple-gocd":"simple/gocd.svg","simple-godaddy":"simple/godaddy.svg","simple-godotengine":"simple/godotengine.svg","simple-gofundme":"simple/gofundme.svg","simple-gogdotcom":"simple/gogdotcom.svg","simple-gojek":"simple/gojek.svg","simple-goland":"simple/goland.svg","simple-goldenline":"simple/goldenline.svg","simple-goldmansachs":"simple/goldmansachs.svg","simple-goodreads":"simple/goodreads.svg","simple-google":"simple/google.svg","simple-googleadmob":"simple/googleadmob.svg","simple-googleads":"simple/googleads.svg","simple-googleadsense":"simple/googleadsense.svg","simple-googleanalytics":"simple/googleanalytics.svg","simple-googleappsscript":"simple/googleappsscript.svg","simple-googleassistant":"simple/googleassistant.svg","simple-googleauthenticator":"simple/googleauthenticator.svg","simple-googlebigquery":"simple/googlebigquery.svg","simple-googlebigtable":"simple/googlebigtable.svg","simple-googlecalendar":"simple/googlecalendar.svg","simple-googlecampaignmanager360":"simple/googlecampaignmanager360.svg","simple-googlecardboard":"simple/googlecardboard.svg","simple-googlechat":"simple/googlechat.svg","simple-googlechrome":"simple/googlechrome.svg","simple-googlechronicle":"simple/googlechronicle.svg","simple-googleclassroom":"simple/googleclassroom.svg","simple-googlecloud":"simple/googlecloud.svg","simple-googlecloudcomposer":"simple/googlecloudcomposer.svg","simple-googlecloudspanner":"simple/googlecloudspanner.svg","simple-googlecloudstorage":"simple/googlecloudstorage.svg","simple-googlecolab":"simple/googlecolab.svg","simple-googlecontaineroptimizedos":"simple/googlecontaineroptimizedos.svg","simple-googledataflow":"simple/googledataflow.svg","simple-googledataproc":"simple/googledataproc.svg","simple-googledatastudio":"simple/googledatastudio.svg","simple-googledisplayandvideo360":"simple/googledisplayandvideo360.svg","simple-googledocs":"simple/googledocs.svg","simple-googledrive":"simple/googledrive.svg","simple-googleearth":"simple/googleearth.svg","simple-googleearthengine":"simple/googleearthengine.svg","simple-googlefit":"simple/googlefit.svg","simple-googlefonts":"simple/googlefonts.svg","simple-googleforms":"simple/googleforms.svg","simple-googlegemini":"simple/googlegemini.svg","simple-googlehome":"simple/googlehome.svg","simple-googlekeep":"simple/googlekeep.svg","simple-googlelens":"simple/googlelens.svg","simple-googlemaps":"simple/googlemaps.svg","simple-googlemarketingplatform":"simple/googlemarketingplatform.svg","simple-googlemeet":"simple/googlemeet.svg","simple-googlemessages":"simple/googlemessages.svg","simple-googlenearby":"simple/googlenearby.svg","simple-googlenews":"simple/googlenews.svg","simple-googlepay":"simple/googlepay.svg","simple-googlephotos":"simple/googlephotos.svg","simple-googleplay":"simple/googleplay.svg","simple-googlepubsub":"simple/googlepubsub.svg","simple-googlescholar":"simple/googlescholar.svg","simple-googlesearchconsole":"simple/googlesearchconsole.svg","simple-googlesheets":"simple/googlesheets.svg","simple-googleslides":"simple/googleslides.svg","simple-googlestreetview":"simple/googlestreetview.svg","simple-googletagmanager":"simple/googletagmanager.svg","simple-googletasks":"simple/googletasks.svg","simple-googletranslate":"simple/googletranslate.svg","simple-gotomeeting":"simple/gotomeeting.svg","simple-grab":"simple/grab.svg","simple-gradio":"simple/gradio.svg","simple-gradle":"simple/gradle.svg","simple-gradleplaypublisher":"simple/gradleplaypublisher.svg","simple-grafana":"simple/grafana.svg","simple-grammarly":"simple/grammarly.svg","simple-grandfrais":"simple/grandfrais.svg","simple-grapheneos":"simple/grapheneos.svg","simple-graphite":"simple/graphite.svg","simple-graphql":"simple/graphql.svg","simple-grav":"simple/grav.svg","simple-gravatar":"simple/gravatar.svg","simple-graylog":"simple/graylog.svg","simple-greasyfork":"simple/greasyfork.svg","simple-greatlearning":"simple/greatlearning.svg","simple-greenhouse":"simple/greenhouse.svg","simple-greensock":"simple/greensock.svg","simple-griddotai":"simple/griddotai.svg","simple-gridsome":"simple/gridsome.svg","simple-grocy":"simple/grocy.svg","simple-groupme":"simple/groupme.svg","simple-groupon":"simple/groupon.svg","simple-grubhub":"simple/grubhub.svg","simple-grunt":"simple/grunt.svg","simple-gsk":"simple/gsk.svg","simple-gsmarenadotcom":"simple/gsmarenadotcom.svg","simple-gstreamer":"simple/gstreamer.svg","simple-gtk":"simple/gtk.svg","simple-guangzhoumetro":"simple/guangzhoumetro.svg","simple-guilded":"simple/guilded.svg","simple-guitarpro":"simple/guitarpro.svg","simple-gulp":"simple/gulp.svg","simple-gumroad":"simple/gumroad.svg","simple-gumtree":"simple/gumtree.svg","simple-gunicorn":"simple/gunicorn.svg","simple-gurobi":"simple/gurobi.svg","simple-gusto":"simple/gusto.svg","simple-gutenberg":"simple/gutenberg.svg","simple-h3":"simple/h3.svg","simple-habr":"simple/habr.svg","simple-hackaday":"simple/hackaday.svg","simple-hackclub":"simple/hackclub.svg","simple-hackerearth":"simple/hackerearth.svg","simple-hackernoon":"simple/hackernoon.svg","simple-hackerone":"simple/hackerone.svg","simple-hackerrank":"simple/hackerrank.svg","simple-hackster":"simple/hackster.svg","simple-hackthebox":"simple/hackthebox.svg","simple-hal":"simple/hal.svg","simple-handlebarsdotjs":"simple/handlebarsdotjs.svg","simple-handm":"simple/handm.svg","simple-handshake":"simple/handshake.svg","simple-handshake_protocol":"simple/handshake_protocol.svg","simple-happycow":"simple/happycow.svg","simple-harbor":"simple/harbor.svg","simple-harmonyos":"simple/harmonyos.svg","simple-hashicorp":"simple/hashicorp.svg","simple-hashnode":"simple/hashnode.svg","simple-haskell":"simple/haskell.svg","simple-hasura":"simple/hasura.svg","simple-hatenabookmark":"simple/hatenabookmark.svg","simple-haveibeenpwned":"simple/haveibeenpwned.svg","simple-haxe":"simple/haxe.svg","simple-hbo":"simple/hbo.svg","simple-hcl":"simple/hcl.svg","simple-hdfcbank":"simple/hdfcbank.svg","simple-headlessui":"simple/headlessui.svg","simple-headphonezone":"simple/headphonezone.svg","simple-headspace":"simple/headspace.svg","simple-hearth":"simple/hearth.svg","simple-hearthisdotat":"simple/hearthisdotat.svg","simple-hedera":"simple/hedera.svg","simple-helium":"simple/helium.svg","simple-helix":"simple/helix.svg","simple-hellofresh":"simple/hellofresh.svg","simple-hellyhansen":"simple/hellyhansen.svg","simple-helm":"simple/helm.svg","simple-helpdesk":"simple/helpdesk.svg","simple-helpscout":"simple/helpscout.svg","simple-hepsiemlak":"simple/hepsiemlak.svg","simple-here":"simple/here.svg","simple-hermes":"simple/hermes.svg","simple-heroku":"simple/heroku.svg","simple-hetzner":"simple/hetzner.svg","simple-hevy":"simple/hevy.svg","simple-hexlet":"simple/hexlet.svg","simple-hexo":"simple/hexo.svg","simple-hey":"simple/hey.svg","simple-hibernate":"simple/hibernate.svg","simple-hibob":"simple/hibob.svg","simple-hilton":"simple/hilton.svg","simple-hiltonhotelsandresorts":"simple/hiltonhotelsandresorts.svg","simple-hitachi":"simple/hitachi.svg","simple-hive":"simple/hive.svg","simple-hive_blockchain":"simple/hive_blockchain.svg","simple-hivemq":"simple/hivemq.svg","simple-homarr":"simple/homarr.svg","simple-homeadvisor":"simple/homeadvisor.svg","simple-homeassistant":"simple/homeassistant.svg","simple-homeassistantcommunitystore":"simple/homeassistantcommunitystore.svg","simple-homebrew":"simple/homebrew.svg","simple-homebridge":"simple/homebridge.svg","simple-homepage":"simple/homepage.svg","simple-homify":"simple/homify.svg","simple-honda":"simple/honda.svg","simple-honey":"simple/honey.svg","simple-honeybadger":"simple/honeybadger.svg","simple-honeygain":"simple/honeygain.svg","simple-hono":"simple/hono.svg","simple-honor":"simple/honor.svg","simple-hootsuite":"simple/hootsuite.svg","simple-hoppscotch":"simple/hoppscotch.svg","simple-hostinger":"simple/hostinger.svg","simple-hotelsdotcom":"simple/hotelsdotcom.svg","simple-hotjar":"simple/hotjar.svg","simple-hotwire":"simple/hotwire.svg","simple-houdini":"simple/houdini.svg","simple-houzz":"simple/houzz.svg","simple-hp":"simple/hp.svg","simple-hsbc":"simple/hsbc.svg","simple-htc":"simple/htc.svg","simple-htcvive":"simple/htcvive.svg","simple-html5":"simple/html5.svg","simple-htmlacademy":"simple/htmlacademy.svg","simple-htmx":"simple/htmx.svg","simple-htop":"simple/htop.svg","simple-httpie":"simple/httpie.svg","simple-huawei":"simple/huawei.svg","simple-hubspot":"simple/hubspot.svg","simple-huggingface":"simple/huggingface.svg","simple-hugo":"simple/hugo.svg","simple-humblebundle":"simple/humblebundle.svg","simple-humhub":"simple/humhub.svg","simple-hungryjacks":"simple/hungryjacks.svg","simple-husqvarna":"simple/husqvarna.svg","simple-hyper":"simple/hyper.svg","simple-hyperskill":"simple/hyperskill.svg","simple-hyperx":"simple/hyperx.svg","simple-hypothesis":"simple/hypothesis.svg","simple-hyprland":"simple/hyprland.svg","simple-hyundai":"simple/hyundai.svg","simple-i18next":"simple/i18next.svg","simple-i3":"simple/i3.svg","simple-iata":"simple/iata.svg","simple-ibeacon":"simple/ibeacon.svg","simple-iberia":"simple/iberia.svg","simple-iced":"simple/iced.svg","simple-iceland":"simple/iceland.svg","simple-icicibank":"simple/icicibank.svg","simple-icinga":"simple/icinga.svg","simple-icloud":"simple/icloud.svg","simple-icomoon":"simple/icomoon.svg","simple-icon":"simple/icon.svg","simple-iconfinder":"simple/iconfinder.svg","simple-iconify":"simple/iconify.svg","simple-iconjar":"simple/iconjar.svg","simple-icons8":"simple/icons8.svg","simple-icq":"simple/icq.svg","simple-ieee":"simple/ieee.svg","simple-ifixit":"simple/ifixit.svg","simple-ifood":"simple/ifood.svg","simple-ifttt":"simple/ifttt.svg","simple-igdb":"simple/igdb.svg","simple-ign":"simple/ign.svg","simple-iheartradio":"simple/iheartradio.svg","simple-ikea":"simple/ikea.svg","simple-iledefrancemobilites":"simple/iledefrancemobilites.svg","simple-imagedotsc":"simple/imagedotsc.svg","simple-imagej":"simple/imagej.svg","simple-imdb":"simple/imdb.svg","simple-imessage":"simple/imessage.svg","simple-imgur":"simple/imgur.svg","simple-immer":"simple/immer.svg","simple-immich":"simple/immich.svg","simple-imou":"simple/imou.svg","simple-improvmx":"simple/improvmx.svg","simple-indeed":"simple/indeed.svg","simple-indiansuperleague":"simple/indiansuperleague.svg","simple-indiehackers":"simple/indiehackers.svg","simple-indigo":"simple/indigo.svg","simple-inductiveautomation":"simple/inductiveautomation.svg","simple-inertia":"simple/inertia.svg","simple-infiniti":"simple/infiniti.svg","simple-influxdb":"simple/influxdb.svg","simple-infomaniak":"simple/infomaniak.svg","simple-infoq":"simple/infoq.svg","simple-informatica":"simple/informatica.svg","simple-infosys":"simple/infosys.svg","simple-infracost":"simple/infracost.svg","simple-ingress":"simple/ingress.svg","simple-inkdrop":"simple/inkdrop.svg","simple-inkscape":"simple/inkscape.svg","simple-inoreader":"simple/inoreader.svg","simple-insomnia":"simple/insomnia.svg","simple-inspire":"simple/inspire.svg","simple-insta360":"simple/insta360.svg","simple-instacart":"simple/instacart.svg","simple-instagram":"simple/instagram.svg","simple-instapaper":"simple/instapaper.svg","simple-instatus":"simple/instatus.svg","simple-instructables":"simple/instructables.svg","simple-instructure":"simple/instructure.svg","simple-intel":"simple/intel.svg","simple-intellijidea":"simple/intellijidea.svg","simple-interactiondesignfoundation":"simple/interactiondesignfoundation.svg","simple-interactjs":"simple/interactjs.svg","simple-interbase":"simple/interbase.svg","simple-intercom":"simple/intercom.svg","simple-intermarche":"simple/intermarche.svg","simple-internetarchive":"simple/internetarchive.svg","simple-internetcomputer":"simple/internetcomputer.svg","simple-intigriti":"simple/intigriti.svg","simple-intuit":"simple/intuit.svg","simple-invision":"simple/invision.svg","simple-invoiceninja":"simple/invoiceninja.svg","simple-iobroker":"simple/iobroker.svg","simple-ionic":"simple/ionic.svg","simple-ionos":"simple/ionos.svg","simple-ios":"simple/ios.svg","simple-iota":"simple/iota.svg","simple-ipfs":"simple/ipfs.svg","simple-iris":"simple/iris.svg","simple-irobot":"simple/irobot.svg","simple-isc2":"simple/isc2.svg","simple-issuu":"simple/issuu.svg","simple-istio":"simple/istio.svg","simple-itchdotio":"simple/itchdotio.svg","simple-iterm2":"simple/iterm2.svg","simple-itunes":"simple/itunes.svg","simple-itvx":"simple/itvx.svg","simple-iveco":"simple/iveco.svg","simple-jabber":"simple/jabber.svg","simple-jaeger":"simple/jaeger.svg","simple-jaguar":"simple/jaguar.svg","simple-jamboard":"simple/jamboard.svg","simple-jameson":"simple/jameson.svg","simple-jamstack":"simple/jamstack.svg","simple-japanairlines":"simple/japanairlines.svg","simple-jasmine":"simple/jasmine.svg","simple-javascript":"simple/javascript.svg","simple-jbl":"simple/jbl.svg","simple-jcb":"simple/jcb.svg","simple-jeep":"simple/jeep.svg","simple-jekyll":"simple/jekyll.svg","simple-jellyfin":"simple/jellyfin.svg","simple-jenkins":"simple/jenkins.svg","simple-jest":"simple/jest.svg","simple-jet":"simple/jet.svg","simple-jetblue":"simple/jetblue.svg","simple-jetbrains":"simple/jetbrains.svg","simple-jetpackcompose":"simple/jetpackcompose.svg","simple-jfrog":"simple/jfrog.svg","simple-jfrogpipelines":"simple/jfrogpipelines.svg","simple-jhipster":"simple/jhipster.svg","simple-jinja":"simple/jinja.svg","simple-jio":"simple/jio.svg","simple-jira":"simple/jira.svg","simple-jirasoftware":"simple/jirasoftware.svg","simple-jitpack":"simple/jitpack.svg","simple-jitsi":"simple/jitsi.svg","simple-johndeere":"simple/johndeere.svg","simple-joomla":"simple/joomla.svg","simple-joplin":"simple/joplin.svg","simple-jordan":"simple/jordan.svg","simple-jouav":"simple/jouav.svg","simple-jovian":"simple/jovian.svg","simple-jpeg":"simple/jpeg.svg","simple-jquery":"simple/jquery.svg","simple-jrgroup":"simple/jrgroup.svg","simple-jsdelivr":"simple/jsdelivr.svg","simple-jsfiddle":"simple/jsfiddle.svg","simple-json":"simple/json.svg","simple-jsonwebtokens":"simple/jsonwebtokens.svg","simple-jsr":"simple/jsr.svg","simple-jss":"simple/jss.svg","simple-juce":"simple/juce.svg","simple-juejin":"simple/juejin.svg","simple-juke":"simple/juke.svg","simple-julia":"simple/julia.svg","simple-junipernetworks":"simple/junipernetworks.svg","simple-junit5":"simple/junit5.svg","simple-jupyter":"simple/jupyter.svg","simple-justeat":"simple/justeat.svg","simple-justgiving":"simple/justgiving.svg","simple-k3s":"simple/k3s.svg","simple-k6":"simple/k6.svg","simple-kaggle":"simple/kaggle.svg","simple-kagi":"simple/kagi.svg","simple-kahoot":"simple/kahoot.svg","simple-kaios":"simple/kaios.svg","simple-kakao":"simple/kakao.svg","simple-kakaotalk":"simple/kakaotalk.svg","simple-kalilinux":"simple/kalilinux.svg","simple-kamailio":"simple/kamailio.svg","simple-kaniko":"simple/kaniko.svg","simple-karlsruherverkehrsverbund":"simple/karlsruherverkehrsverbund.svg","simple-kasasmart":"simple/kasasmart.svg","simple-kashflow":"simple/kashflow.svg","simple-kaspersky":"simple/kaspersky.svg","simple-katana":"simple/katana.svg","simple-kaufland":"simple/kaufland.svg","simple-kde":"simple/kde.svg","simple-kdenlive":"simple/kdenlive.svg","simple-kdeplasma":"simple/kdeplasma.svg","simple-kedro":"simple/kedro.svg","simple-keenetic":"simple/keenetic.svg","simple-keepachangelog":"simple/keepachangelog.svg","simple-keepassxc":"simple/keepassxc.svg","simple-keeper":"simple/keeper.svg","simple-keeweb":"simple/keeweb.svg","simple-kentico":"simple/kentico.svg","simple-keras":"simple/keras.svg","simple-keybase":"simple/keybase.svg","simple-keycdn":"simple/keycdn.svg","simple-keycloak":"simple/keycloak.svg","simple-keystone":"simple/keystone.svg","simple-kfc":"simple/kfc.svg","simple-khanacademy":"simple/khanacademy.svg","simple-khronosgroup":"simple/khronosgroup.svg","simple-kia":"simple/kia.svg","simple-kibana":"simple/kibana.svg","simple-kicad":"simple/kicad.svg","simple-kick":"simple/kick.svg","simple-kickstarter":"simple/kickstarter.svg","simple-kik":"simple/kik.svg","simple-kingstontechnology":"simple/kingstontechnology.svg","simple-kinopoisk":"simple/kinopoisk.svg","simple-kinsta":"simple/kinsta.svg","simple-kirby":"simple/kirby.svg","simple-kit":"simple/kit.svg","simple-kitsu":"simple/kitsu.svg","simple-klarna":"simple/klarna.svg","simple-kleinanzeigen":"simple/kleinanzeigen.svg","simple-klm":"simple/klm.svg","simple-klook":"simple/klook.svg","simple-knative":"simple/knative.svg","simple-knexdotjs":"simple/knexdotjs.svg","simple-knime":"simple/knime.svg","simple-knip":"simple/knip.svg","simple-knowledgebase":"simple/knowledgebase.svg","simple-known":"simple/known.svg","simple-koa":"simple/koa.svg","simple-koc":"simple/koc.svg","simple-kodak":"simple/kodak.svg","simple-kodi":"simple/kodi.svg","simple-koenigsegg":"simple/koenigsegg.svg","simple-kofax":"simple/kofax.svg","simple-kofi":"simple/kofi.svg","simple-komoot":"simple/komoot.svg","simple-konami":"simple/konami.svg","simple-kong":"simple/kong.svg","simple-kongregate":"simple/kongregate.svg","simple-konva":"simple/konva.svg","simple-kotlin":"simple/kotlin.svg","simple-koyeb":"simple/koyeb.svg","simple-krita":"simple/krita.svg","simple-ktm":"simple/ktm.svg","simple-ktor":"simple/ktor.svg","simple-kuaishou":"simple/kuaishou.svg","simple-kubernetes":"simple/kubernetes.svg","simple-kubuntu":"simple/kubuntu.svg","simple-kucoin":"simple/kucoin.svg","simple-kueski":"simple/kueski.svg","simple-kuma":"simple/kuma.svg","simple-kununu":"simple/kununu.svg","simple-kuula":"simple/kuula.svg","simple-kx":"simple/kx.svg","simple-kyocera":"simple/kyocera.svg","simple-labview":"simple/labview.svg","simple-lada":"simple/lada.svg","simple-lamborghini":"simple/lamborghini.svg","simple-landrover":"simple/landrover.svg","simple-langchain":"simple/langchain.svg","simple-langflow":"simple/langflow.svg","simple-langgraph":"simple/langgraph.svg","simple-languagetool":"simple/languagetool.svg","simple-lapce":"simple/lapce.svg","simple-laragon":"simple/laragon.svg","simple-laravel":"simple/laravel.svg","simple-laravelhorizon":"simple/laravelhorizon.svg","simple-laravelnova":"simple/laravelnova.svg","simple-lastdotfm":"simple/lastdotfm.svg","simple-lastpass":"simple/lastpass.svg","simple-latex":"simple/latex.svg","simple-launchpad":"simple/launchpad.svg","simple-lazarus":"simple/lazarus.svg","simple-lazyvim":"simple/lazyvim.svg","simple-lbry":"simple/lbry.svg","simple-leaderprice":"simple/leaderprice.svg","simple-leaflet":"simple/leaflet.svg","simple-leagueoflegends":"simple/leagueoflegends.svg","simple-leanpub":"simple/leanpub.svg","simple-leetcode":"simple/leetcode.svg","simple-lefthook":"simple/lefthook.svg","simple-legacygames":"simple/legacygames.svg","simple-leica":"simple/leica.svg","simple-lemmy":"simple/lemmy.svg","simple-lemonsqueezy":"simple/lemonsqueezy.svg","simple-lenovo":"simple/lenovo.svg","simple-lens":"simple/lens.svg","simple-leptos":"simple/leptos.svg","simple-lequipe":"simple/lequipe.svg","simple-lerna":"simple/lerna.svg","simple-leroymerlin":"simple/leroymerlin.svg","simple-leslibraires":"simple/leslibraires.svg","simple-less":"simple/less.svg","simple-letsencrypt":"simple/letsencrypt.svg","simple-letterboxd":"simple/letterboxd.svg","simple-levelsdotfyi":"simple/levelsdotfyi.svg","simple-lg":"simple/lg.svg","simple-liberadotchat":"simple/liberadotchat.svg","simple-liberapay":"simple/liberapay.svg","simple-librariesdotio":"simple/librariesdotio.svg","simple-librarything":"simple/librarything.svg","simple-libreoffice":"simple/libreoffice.svg","simple-libreofficebase":"simple/libreofficebase.svg","simple-libreofficecalc":"simple/libreofficecalc.svg","simple-libreofficedraw":"simple/libreofficedraw.svg","simple-libreofficeimpress":"simple/libreofficeimpress.svg","simple-libreofficemath":"simple/libreofficemath.svg","simple-libreofficewriter":"simple/libreofficewriter.svg","simple-libretranslate":"simple/libretranslate.svg","simple-libretube":"simple/libretube.svg","simple-librewolf":"simple/librewolf.svg","simple-libuv":"simple/libuv.svg","simple-lichess":"simple/lichess.svg","simple-lidl":"simple/lidl.svg","simple-lifx":"simple/lifx.svg","simple-lightburn":"simple/lightburn.svg","simple-lighthouse":"simple/lighthouse.svg","simple-lightning":"simple/lightning.svg","simple-limesurvey":"simple/limesurvey.svg","simple-line":"simple/line.svg","simple-lineageos":"simple/lineageos.svg","simple-linear":"simple/linear.svg","simple-lining":"simple/lining.svg","simple-linkerd":"simple/linkerd.svg","simple-linkfire":"simple/linkfire.svg","simple-linksys":"simple/linksys.svg","simple-linktree":"simple/linktree.svg","simple-linphone":"simple/linphone.svg","simple-lintcode":"simple/lintcode.svg","simple-linux":"simple/linux.svg","simple-linuxcontainers":"simple/linuxcontainers.svg","simple-linuxfoundation":"simple/linuxfoundation.svg","simple-linuxmint":"simple/linuxmint.svg","simple-linuxprofessionalinstitute":"simple/linuxprofessionalinstitute.svg","simple-linuxserver":"simple/linuxserver.svg","simple-lionair":"simple/lionair.svg","simple-liquibase":"simple/liquibase.svg","simple-listmonk":"simple/listmonk.svg","simple-lit":"simple/lit.svg","simple-litecoin":"simple/litecoin.svg","simple-literal":"simple/literal.svg","simple-litiengine":"simple/litiengine.svg","simple-livechat":"simple/livechat.svg","simple-livejournal":"simple/livejournal.svg","simple-livewire":"simple/livewire.svg","simple-llvm":"simple/llvm.svg","simple-lmms":"simple/lmms.svg","simple-lobsters":"simple/lobsters.svg","simple-local":"simple/local.svg","simple-lodash":"simple/lodash.svg","simple-logitech":"simple/logitech.svg","simple-logitechg":"simple/logitechg.svg","simple-logmein":"simple/logmein.svg","simple-logseq":"simple/logseq.svg","simple-logstash":"simple/logstash.svg","simple-looker":"simple/looker.svg","simple-loom":"simple/loom.svg","simple-loop":"simple/loop.svg","simple-loopback":"simple/loopback.svg","simple-lootcrate":"simple/lootcrate.svg","simple-lospec":"simple/lospec.svg","simple-lotpolishairlines":"simple/lotpolishairlines.svg","simple-lottiefiles":"simple/lottiefiles.svg","simple-ltspice":"simple/ltspice.svg","simple-lua":"simple/lua.svg","simple-lubuntu":"simple/lubuntu.svg","simple-lucia":"simple/lucia.svg","simple-lucid":"simple/lucid.svg","simple-lucide":"simple/lucide.svg","simple-ludwig":"simple/ludwig.svg","simple-lufthansa":"simple/lufthansa.svg","simple-lumen":"simple/lumen.svg","simple-lunacy":"simple/lunacy.svg","simple-lutris":"simple/lutris.svg","simple-lvgl":"simple/lvgl.svg","simple-lydia":"simple/lydia.svg","simple-lyft":"simple/lyft.svg","simple-maas":"simple/maas.svg","simple-macos":"simple/macos.svg","simple-macpaw":"simple/macpaw.svg","simple-macys":"simple/macys.svg","simple-magasinsu":"simple/magasinsu.svg","simple-magic":"simple/magic.svg","simple-magisk":"simple/magisk.svg","simple-mahindra":"simple/mahindra.svg","simple-mailboxdotorg":"simple/mailboxdotorg.svg","simple-mailchimp":"simple/mailchimp.svg","simple-maildotcom":"simple/maildotcom.svg","simple-maildotru":"simple/maildotru.svg","simple-mailgun":"simple/mailgun.svg","simple-mailtrap":"simple/mailtrap.svg","simple-mainwp":"simple/mainwp.svg","simple-majorleaguehacking":"simple/majorleaguehacking.svg","simple-make":"simple/make.svg","simple-makerbot":"simple/makerbot.svg","simple-malt":"simple/malt.svg","simple-malwarebytes":"simple/malwarebytes.svg","simple-mambaui":"simple/mambaui.svg","simple-mamp":"simple/mamp.svg","simple-man":"simple/man.svg","simple-manageiq":"simple/manageiq.svg","simple-manjaro":"simple/manjaro.svg","simple-mantine":"simple/mantine.svg","simple-mapbox":"simple/mapbox.svg","simple-mapillary":"simple/mapillary.svg","simple-maplibre":"simple/maplibre.svg","simple-maptiler":"simple/maptiler.svg","simple-mariadb":"simple/mariadb.svg","simple-mariadbfoundation":"simple/mariadbfoundation.svg","simple-markdown":"simple/markdown.svg","simple-marko":"simple/marko.svg","simple-marriott":"simple/marriott.svg","simple-marvelapp":"simple/marvelapp.svg","simple-maserati":"simple/maserati.svg","simple-mastercard":"simple/mastercard.svg","simple-mastercomfig":"simple/mastercomfig.svg","simple-mastodon":"simple/mastodon.svg","simple-materialdesign":"simple/materialdesign.svg","simple-materialdesignicons":"simple/materialdesignicons.svg","simple-materialformkdocs":"simple/materialformkdocs.svg","simple-matillion":"simple/matillion.svg","simple-matomo":"simple/matomo.svg","simple-matrix":"simple/matrix.svg","simple-matterdotjs":"simple/matterdotjs.svg","simple-mattermost":"simple/mattermost.svg","simple-matternet":"simple/matternet.svg","simple-mautic":"simple/mautic.svg","simple-max":"simple/max.svg","simple-maxplanckgesellschaft":"simple/maxplanckgesellschaft.svg","simple-maytag":"simple/maytag.svg","simple-mazda":"simple/mazda.svg","simple-maze":"simple/maze.svg","simple-mcafee":"simple/mcafee.svg","simple-mcdonalds":"simple/mcdonalds.svg","simple-mclaren":"simple/mclaren.svg","simple-mdbook":"simple/mdbook.svg","simple-mdnwebdocs":"simple/mdnwebdocs.svg","simple-mdx":"simple/mdx.svg","simple-mediafire":"simple/mediafire.svg","simple-mediamarkt":"simple/mediamarkt.svg","simple-mediapipe":"simple/mediapipe.svg","simple-mediatek":"simple/mediatek.svg","simple-medibangpaint":"simple/medibangpaint.svg","simple-medium":"simple/medium.svg","simple-medusa":"simple/medusa.svg","simple-meetup":"simple/meetup.svg","simple-mega":"simple/mega.svg","simple-meilisearch":"simple/meilisearch.svg","simple-meituan":"simple/meituan.svg","simple-meizu":"simple/meizu.svg","simple-mendeley":"simple/mendeley.svg","simple-mentorcruise":"simple/mentorcruise.svg","simple-mercadopago":"simple/mercadopago.svg","simple-mercedes":"simple/mercedes.svg","simple-merck":"simple/merck.svg","simple-mercurial":"simple/mercurial.svg","simple-mermaid":"simple/mermaid.svg","simple-messenger":"simple/messenger.svg","simple-meta":"simple/meta.svg","simple-metabase":"simple/metabase.svg","simple-metacritic":"simple/metacritic.svg","simple-metafilter":"simple/metafilter.svg","simple-metasploit":"simple/metasploit.svg","simple-meteor":"simple/meteor.svg","simple-metro":"simple/metro.svg","simple-metrodelaciudaddemexico":"simple/metrodelaciudaddemexico.svg","simple-metrodemadrid":"simple/metrodemadrid.svg","simple-metrodeparis":"simple/metrodeparis.svg","simple-mewe":"simple/mewe.svg","simple-mg":"simple/mg.svg","simple-microbit":"simple/microbit.svg","simple-microdotblog":"simple/microdotblog.svg","simple-microeditor":"simple/microeditor.svg","simple-micropython":"simple/micropython.svg","simple-microstation":"simple/microstation.svg","simple-microstrategy":"simple/microstrategy.svg","simple-midi":"simple/midi.svg","simple-migadu":"simple/migadu.svg","simple-mihoyo":"simple/mihoyo.svg","simple-mikrotik":"simple/mikrotik.svg","simple-milanote":"simple/milanote.svg","simple-milvus":"simple/milvus.svg","simple-minds":"simple/minds.svg","simple-minetest":"simple/minetest.svg","simple-mingww64":"simple/mingww64.svg","simple-mini":"simple/mini.svg","simple-minio":"simple/minio.svg","simple-mintlify":"simple/mintlify.svg","simple-minutemailer":"simple/minutemailer.svg","simple-miraheze":"simple/miraheze.svg","simple-miro":"simple/miro.svg","simple-misskey":"simple/misskey.svg","simple-mitsubishi":"simple/mitsubishi.svg","simple-mix":"simple/mix.svg","simple-mixcloud":"simple/mixcloud.svg","simple-mixpanel":"simple/mixpanel.svg","simple-mlb":"simple/mlb.svg","simple-mlflow":"simple/mlflow.svg","simple-mobx":"simple/mobx.svg","simple-mobxstatetree":"simple/mobxstatetree.svg","simple-mocha":"simple/mocha.svg","simple-mockserviceworker":"simple/mockserviceworker.svg","simple-modal":"simple/modal.svg","simple-modin":"simple/modin.svg","simple-modrinth":"simple/modrinth.svg","simple-modx":"simple/modx.svg","simple-mojeek":"simple/mojeek.svg","simple-moleculer":"simple/moleculer.svg","simple-momenteo":"simple/momenteo.svg","simple-monero":"simple/monero.svg","simple-moneygram":"simple/moneygram.svg","simple-mongodb":"simple/mongodb.svg","simple-mongoose":"simple/mongoose.svg","simple-mongoosedotws":"simple/mongoosedotws.svg","simple-monica":"simple/monica.svg","simple-monkeytie":"simple/monkeytie.svg","simple-monkeytype":"simple/monkeytype.svg","simple-monogame":"simple/monogame.svg","simple-monoprix":"simple/monoprix.svg","simple-monster":"simple/monster.svg","simple-monzo":"simple/monzo.svg","simple-moo":"simple/moo.svg","simple-moodle":"simple/moodle.svg","simple-moonrepo":"simple/moonrepo.svg","simple-moq":"simple/moq.svg","simple-moqups":"simple/moqups.svg","simple-morrisons":"simple/morrisons.svg","simple-moscowmetro":"simple/moscowmetro.svg","simple-motorola":"simple/motorola.svg","simple-movistar":"simple/movistar.svg","simple-mozilla":"simple/mozilla.svg","simple-mpv":"simple/mpv.svg","simple-mqtt":"simple/mqtt.svg","simple-msi":"simple/msi.svg","simple-msibusiness":"simple/msibusiness.svg","simple-mta":"simple/mta.svg","simple-mtr":"simple/mtr.svg","simple-mubi":"simple/mubi.svg","simple-mui":"simple/mui.svg","simple-mulesoft":"simple/mulesoft.svg","simple-muller":"simple/muller.svg","simple-mullvad":"simple/mullvad.svg","simple-multisim":"simple/multisim.svg","simple-mumble":"simple/mumble.svg","simple-muo":"simple/muo.svg","simple-mural":"simple/mural.svg","simple-musescore":"simple/musescore.svg","simple-musicbrainz":"simple/musicbrainz.svg","simple-mxlinux":"simple/mxlinux.svg","simple-myanimelist":"simple/myanimelist.svg","simple-myget":"simple/myget.svg","simple-myob":"simple/myob.svg","simple-myspace":"simple/myspace.svg","simple-mysql":"simple/mysql.svg","simple-n26":"simple/n26.svg","simple-n8n":"simple/n8n.svg","simple-namebase":"simple/namebase.svg","simple-namecheap":"simple/namecheap.svg","simple-namemc":"simple/namemc.svg","simple-namesilo":"simple/namesilo.svg","simple-namuwiki":"simple/namuwiki.svg","simple-nano":"simple/nano.svg","simple-nanostores":"simple/nanostores.svg","simple-napster":"simple/napster.svg","simple-nasa":"simple/nasa.svg","simple-nationalgrid":"simple/nationalgrid.svg","simple-nationalrail":"simple/nationalrail.svg","simple-nativescript":"simple/nativescript.svg","simple-natsdotio":"simple/natsdotio.svg","simple-naver":"simple/naver.svg","simple-nba":"simple/nba.svg","simple-nbb":"simple/nbb.svg","simple-nbc":"simple/nbc.svg","simple-ndr":"simple/ndr.svg","simple-near":"simple/near.svg","simple-nebula":"simple/nebula.svg","simple-nec":"simple/nec.svg","simple-neo4j":"simple/neo4j.svg","simple-neovim":"simple/neovim.svg","simple-neptune":"simple/neptune.svg","simple-nestjs":"simple/nestjs.svg","simple-netapp":"simple/netapp.svg","simple-netbsd":"simple/netbsd.svg","simple-netcup":"simple/netcup.svg","simple-netdata":"simple/netdata.svg","simple-neteasecloudmusic":"simple/neteasecloudmusic.svg","simple-netflix":"simple/netflix.svg","simple-netgear":"simple/netgear.svg","simple-netlify":"simple/netlify.svg","simple-nette":"simple/nette.svg","simple-netto":"simple/netto.svg","simple-neutralinojs":"simple/neutralinojs.svg","simple-newbalance":"simple/newbalance.svg","simple-newegg":"simple/newegg.svg","simple-newjapanprowrestling":"simple/newjapanprowrestling.svg","simple-newrelic":"simple/newrelic.svg","simple-newyorktimes":"simple/newyorktimes.svg","simple-nexon":"simple/nexon.svg","simple-nextbilliondotai":"simple/nextbilliondotai.svg","simple-nextcloud":"simple/nextcloud.svg","simple-nextdns":"simple/nextdns.svg","simple-nextdoor":"simple/nextdoor.svg","simple-nextdotjs":"simple/nextdotjs.svg","simple-nextflow":"simple/nextflow.svg","simple-nextra":"simple/nextra.svg","simple-nextui":"simple/nextui.svg","simple-nexusmods":"simple/nexusmods.svg","simple-nfc":"simple/nfc.svg","simple-nfcore":"simple/nfcore.svg","simple-nginx":"simple/nginx.svg","simple-nginxproxymanager":"simple/nginxproxymanager.svg","simple-ngrok":"simple/ngrok.svg","simple-ngrx":"simple/ngrx.svg","simple-nhl":"simple/nhl.svg","simple-nicehash":"simple/nicehash.svg","simple-niconico":"simple/niconico.svg","simple-nike":"simple/nike.svg","simple-nikon":"simple/nikon.svg","simple-nim":"simple/nim.svg","simple-nissan":"simple/nissan.svg","simple-nixos":"simple/nixos.svg","simple-nodedotjs":"simple/nodedotjs.svg","simple-nodemon":"simple/nodemon.svg","simple-nodered":"simple/nodered.svg","simple-nokia":"simple/nokia.svg","simple-nomad":"simple/nomad.svg","simple-norco":"simple/norco.svg","simple-nordicsemiconductor":"simple/nordicsemiconductor.svg","simple-nordvpn":"simple/nordvpn.svg","simple-normalizedotcss":"simple/normalizedotcss.svg","simple-norton":"simple/norton.svg","simple-norwegian":"simple/norwegian.svg","simple-notepadplusplus":"simple/notepadplusplus.svg","simple-notion":"simple/notion.svg","simple-notist":"simple/notist.svg","simple-nounproject":"simple/nounproject.svg","simple-novu":"simple/novu.svg","simple-now":"simple/now.svg","simple-npm":"simple/npm.svg","simple-nrwl":"simple/nrwl.svg","simple-nsis":"simple/nsis.svg","simple-ntfy":"simple/ntfy.svg","simple-nubank":"simple/nubank.svg","simple-nucleo":"simple/nucleo.svg","simple-nuget":"simple/nuget.svg","simple-nuke":"simple/nuke.svg","simple-numba":"simple/numba.svg","simple-numpy":"simple/numpy.svg","simple-nunjucks":"simple/nunjucks.svg","simple-nushell":"simple/nushell.svg","simple-nutanix":"simple/nutanix.svg","simple-nuxt":"simple/nuxt.svg","simple-nvidia":"simple/nvidia.svg","simple-nvm":"simple/nvm.svg","simple-nx":"simple/nx.svg","simple-nxp":"simple/nxp.svg","simple-nzxt":"simple/nzxt.svg","simple-o2":"simple/o2.svg","simple-obb":"simple/obb.svg","simple-observable":"simple/observable.svg","simple-obsidian":"simple/obsidian.svg","simple-obsstudio":"simple/obsstudio.svg","simple-obtainium":"simple/obtainium.svg","simple-ocaml":"simple/ocaml.svg","simple-oclc":"simple/oclc.svg","simple-oclif":"simple/oclif.svg","simple-octanerender":"simple/octanerender.svg","simple-octave":"simple/octave.svg","simple-octobercms":"simple/octobercms.svg","simple-octoprint":"simple/octoprint.svg","simple-octopusdeploy":"simple/octopusdeploy.svg","simple-oculus":"simple/oculus.svg","simple-odin":"simple/odin.svg","simple-odnoklassniki":"simple/odnoklassniki.svg","simple-odoo":"simple/odoo.svg","simple-odysee":"simple/odysee.svg","simple-ohdear":"simple/ohdear.svg","simple-okcupid":"simple/okcupid.svg","simple-okta":"simple/okta.svg","simple-okx":"simple/okx.svg","simple-ollama":"simple/ollama.svg","simple-omadacloud":"simple/omadacloud.svg","simple-oneplus":"simple/oneplus.svg","simple-onlyfans":"simple/onlyfans.svg","simple-onlyoffice":"simple/onlyoffice.svg","simple-onnx":"simple/onnx.svg","simple-onstar":"simple/onstar.svg","simple-opel":"simple/opel.svg","simple-openaccess":"simple/openaccess.svg","simple-openai":"simple/openai.svg","simple-openaigym":"simple/openaigym.svg","simple-openapiinitiative":"simple/openapiinitiative.svg","simple-openbadges":"simple/openbadges.svg","simple-openbsd":"simple/openbsd.svg","simple-openbugbounty":"simple/openbugbounty.svg","simple-opencollective":"simple/opencollective.svg","simple-opencontainersinitiative":"simple/opencontainersinitiative.svg","simple-opencv":"simple/opencv.svg","simple-openfaas":"simple/openfaas.svg","simple-opengl":"simple/opengl.svg","simple-openhab":"simple/openhab.svg","simple-openid":"simple/openid.svg","simple-openjdk":"simple/openjdk.svg","simple-openjsfoundation":"simple/openjsfoundation.svg","simple-openlayers":"simple/openlayers.svg","simple-openmediavault":"simple/openmediavault.svg","simple-openmined":"simple/openmined.svg","simple-opennebula":"simple/opennebula.svg","simple-openproject":"simple/openproject.svg","simple-openscad":"simple/openscad.svg","simple-opensea":"simple/opensea.svg","simple-opensearch":"simple/opensearch.svg","simple-opensourcehardware":"simple/opensourcehardware.svg","simple-opensourceinitiative":"simple/opensourceinitiative.svg","simple-openssl":"simple/openssl.svg","simple-openstack":"simple/openstack.svg","simple-openstreetmap":"simple/openstreetmap.svg","simple-opensuse":"simple/opensuse.svg","simple-opentelemetry":"simple/opentelemetry.svg","simple-opentext":"simple/opentext.svg","simple-opentofu":"simple/opentofu.svg","simple-openverse":"simple/openverse.svg","simple-openvpn":"simple/openvpn.svg","simple-openwrt":"simple/openwrt.svg","simple-openzeppelin":"simple/openzeppelin.svg","simple-openzfs":"simple/openzfs.svg","simple-opera":"simple/opera.svg","simple-operagx":"simple/operagx.svg","simple-opnsense":"simple/opnsense.svg","simple-oppo":"simple/oppo.svg","simple-opsgenie":"simple/opsgenie.svg","simple-opslevel":"simple/opslevel.svg","simple-optimism":"simple/optimism.svg","simple-orange":"simple/orange.svg","simple-orcid":"simple/orcid.svg","simple-oreilly":"simple/oreilly.svg","simple-org":"simple/org.svg","simple-organicmaps":"simple/organicmaps.svg","simple-origin":"simple/origin.svg","simple-osano":"simple/osano.svg","simple-osf":"simple/osf.svg","simple-osgeo":"simple/osgeo.svg","simple-oshkosh":"simple/oshkosh.svg","simple-osmc":"simple/osmc.svg","simple-osu":"simple/osu.svg","simple-otto":"simple/otto.svg","simple-outline":"simple/outline.svg","simple-overcast":"simple/overcast.svg","simple-overleaf":"simple/overleaf.svg","simple-ovh":"simple/ovh.svg","simple-owasp":"simple/owasp.svg","simple-owncloud":"simple/owncloud.svg","simple-oxygen":"simple/oxygen.svg","simple-oyo":"simple/oyo.svg","simple-p5dotjs":"simple/p5dotjs.svg","simple-packagist":"simple/packagist.svg","simple-packer":"simple/packer.svg","simple-packt":"simple/packt.svg","simple-paddle":"simple/paddle.svg","simple-paddlepaddle":"simple/paddlepaddle.svg","simple-paddypower":"simple/paddypower.svg","simple-pagekit":"simple/pagekit.svg","simple-pagerduty":"simple/pagerduty.svg","simple-pagespeedinsights":"simple/pagespeedinsights.svg","simple-pagseguro":"simple/pagseguro.svg","simple-palantir":"simple/palantir.svg","simple-paloaltonetworks":"simple/paloaltonetworks.svg","simple-paloaltosoftware":"simple/paloaltosoftware.svg","simple-panasonic":"simple/panasonic.svg","simple-pandas":"simple/pandas.svg","simple-pandora":"simple/pandora.svg","simple-pantheon":"simple/pantheon.svg","simple-paperlessngx":"simple/paperlessngx.svg","simple-paperspace":"simple/paperspace.svg","simple-paperswithcode":"simple/paperswithcode.svg","simple-paradoxinteractive":"simple/paradoxinteractive.svg","simple-paramountplus":"simple/paramountplus.svg","simple-paritysubstrate":"simple/paritysubstrate.svg","simple-parrotsecurity":"simple/parrotsecurity.svg","simple-parsedotly":"simple/parsedotly.svg","simple-passport":"simple/passport.svg","simple-pastebin":"simple/pastebin.svg","simple-patreon":"simple/patreon.svg","simple-paychex":"simple/paychex.svg","simple-payhip":"simple/payhip.svg","simple-payloadcms":"simple/payloadcms.svg","simple-payoneer":"simple/payoneer.svg","simple-paypal":"simple/paypal.svg","simple-paytm":"simple/paytm.svg","simple-pcgamingwiki":"simple/pcgamingwiki.svg","simple-pdm":"simple/pdm.svg","simple-pdq":"simple/pdq.svg","simple-peakdesign":"simple/peakdesign.svg","simple-pearson":"simple/pearson.svg","simple-peerlist":"simple/peerlist.svg","simple-peertube":"simple/peertube.svg","simple-pegasusairlines":"simple/pegasusairlines.svg","simple-pelican":"simple/pelican.svg","simple-peloton":"simple/peloton.svg","simple-penny":"simple/penny.svg","simple-penpot":"simple/penpot.svg","simple-percy":"simple/percy.svg","simple-perforce":"simple/perforce.svg","simple-perl":"simple/perl.svg","simple-perplexity":"simple/perplexity.svg","simple-persistent":"simple/persistent.svg","simple-personio":"simple/personio.svg","simple-petsathome":"simple/petsathome.svg","simple-peugeot":"simple/peugeot.svg","simple-pexels":"simple/pexels.svg","simple-pfsense":"simple/pfsense.svg","simple-phabricator":"simple/phabricator.svg","simple-philipshue":"simple/philipshue.svg","simple-phoenixframework":"simple/phoenixframework.svg","simple-phonepe":"simple/phonepe.svg","simple-phosphoricons":"simple/phosphoricons.svg","simple-photobucket":"simple/photobucket.svg","simple-photocrowd":"simple/photocrowd.svg","simple-photon":"simple/photon.svg","simple-photopea":"simple/photopea.svg","simple-php":"simple/php.svg","simple-phpbb":"simple/phpbb.svg","simple-phpmyadmin":"simple/phpmyadmin.svg","simple-phpstorm":"simple/phpstorm.svg","simple-piaggiogroup":"simple/piaggiogroup.svg","simple-piapro":"simple/piapro.svg","simple-picardsurgeles":"simple/picardsurgeles.svg","simple-picartodottv":"simple/picartodottv.svg","simple-picnic":"simple/picnic.svg","simple-picpay":"simple/picpay.svg","simple-picrew":"simple/picrew.svg","simple-picsart":"simple/picsart.svg","simple-picxy":"simple/picxy.svg","simple-pihole":"simple/pihole.svg","simple-pimcore":"simple/pimcore.svg","simple-pinboard":"simple/pinboard.svg","simple-pinescript":"simple/pinescript.svg","simple-pinetwork":"simple/pinetwork.svg","simple-pingdom":"simple/pingdom.svg","simple-pino":"simple/pino.svg","simple-pinterest":"simple/pinterest.svg","simple-pioneerdj":"simple/pioneerdj.svg","simple-piped":"simple/piped.svg","simple-pipx":"simple/pipx.svg","simple-pivotaltracker":"simple/pivotaltracker.svg","simple-piwigo":"simple/piwigo.svg","simple-pix":"simple/pix.svg","simple-pixabay":"simple/pixabay.svg","simple-pixelfed":"simple/pixelfed.svg","simple-pixiv":"simple/pixiv.svg","simple-pixlr":"simple/pixlr.svg","simple-pkgsrc":"simple/pkgsrc.svg","simple-planet":"simple/planet.svg","simple-planetscale":"simple/planetscale.svg","simple-plangrid":"simple/plangrid.svg","simple-platformdotsh":"simple/platformdotsh.svg","simple-platformio":"simple/platformio.svg","simple-platzi":"simple/platzi.svg","simple-plausibleanalytics":"simple/plausibleanalytics.svg","simple-playcanvas":"simple/playcanvas.svg","simple-playerdotme":"simple/playerdotme.svg","simple-playerfm":"simple/playerfm.svg","simple-playstation":"simple/playstation.svg","simple-playstation2":"simple/playstation2.svg","simple-playstation3":"simple/playstation3.svg","simple-playstation4":"simple/playstation4.svg","simple-playstation5":"simple/playstation5.svg","simple-playstationportable":"simple/playstationportable.svg","simple-playstationvita":"simple/playstationvita.svg","simple-pleroma":"simple/pleroma.svg","simple-plesk":"simple/plesk.svg","simple-plex":"simple/plex.svg","simple-plotly":"simple/plotly.svg","simple-plume":"simple/plume.svg","simple-pluralsight":"simple/pluralsight.svg","simple-plurk":"simple/plurk.svg","simple-pluscodes":"simple/pluscodes.svg","simple-pm2":"simple/pm2.svg","simple-pnpm":"simple/pnpm.svg","simple-pocket":"simple/pocket.svg","simple-pocketbase":"simple/pocketbase.svg","simple-pocketcasts":"simple/pocketcasts.svg","simple-podcastaddict":"simple/podcastaddict.svg","simple-podcastindex":"simple/podcastindex.svg","simple-podman":"simple/podman.svg","simple-poe":"simple/poe.svg","simple-poetry":"simple/poetry.svg","simple-pointy":"simple/pointy.svg","simple-polars":"simple/polars.svg","simple-polestar":"simple/polestar.svg","simple-polkadot":"simple/polkadot.svg","simple-poly":"simple/poly.svg","simple-polygon":"simple/polygon.svg","simple-polymerproject":"simple/polymerproject.svg","simple-polywork":"simple/polywork.svg","simple-pond5":"simple/pond5.svg","simple-popos":"simple/popos.svg","simple-porkbun":"simple/porkbun.svg","simple-porsche":"simple/porsche.svg","simple-portainer":"simple/portainer.svg","simple-portswigger":"simple/portswigger.svg","simple-posit":"simple/posit.svg","simple-postcss":"simple/postcss.svg","simple-postgresql":"simple/postgresql.svg","simple-posthog":"simple/posthog.svg","simple-postman":"simple/postman.svg","simple-postmates":"simple/postmates.svg","simple-powers":"simple/powers.svg","simple-prdotco":"simple/prdotco.svg","simple-preact":"simple/preact.svg","simple-precommit":"simple/precommit.svg","simple-prefect":"simple/prefect.svg","simple-premierleague":"simple/premierleague.svg","simple-prepbytes":"simple/prepbytes.svg","simple-prestashop":"simple/prestashop.svg","simple-presto":"simple/presto.svg","simple-prettier":"simple/prettier.svg","simple-pretzel":"simple/pretzel.svg","simple-prevention":"simple/prevention.svg","simple-prezi":"simple/prezi.svg","simple-prime":"simple/prime.svg","simple-primefaces":"simple/primefaces.svg","simple-primeng":"simple/primeng.svg","simple-primereact":"simple/primereact.svg","simple-primevideo":"simple/primevideo.svg","simple-primevue":"simple/primevue.svg","simple-printables":"simple/printables.svg","simple-prisma":"simple/prisma.svg","simple-prismic":"simple/prismic.svg","simple-privatedivision":"simple/privatedivision.svg","simple-privateinternetaccess":"simple/privateinternetaccess.svg","simple-probot":"simple/probot.svg","simple-processingfoundation":"simple/processingfoundation.svg","simple-processwire":"simple/processwire.svg","simple-producthunt":"simple/producthunt.svg","simple-progate":"simple/progate.svg","simple-progress":"simple/progress.svg","simple-prometheus":"simple/prometheus.svg","simple-pronounsdotpage":"simple/pronounsdotpage.svg","simple-prosieben":"simple/prosieben.svg","simple-proteus":"simple/proteus.svg","simple-protocolsdotio":"simple/protocolsdotio.svg","simple-protodotio":"simple/protodotio.svg","simple-proton":"simple/proton.svg","simple-protoncalendar":"simple/protoncalendar.svg","simple-protondb":"simple/protondb.svg","simple-protondrive":"simple/protondrive.svg","simple-protonmail":"simple/protonmail.svg","simple-protonvpn":"simple/protonvpn.svg","simple-protools":"simple/protools.svg","simple-protractor":"simple/protractor.svg","simple-proxmox":"simple/proxmox.svg","simple-pterodactyl":"simple/pterodactyl.svg","simple-pubg":"simple/pubg.svg","simple-publons":"simple/publons.svg","simple-pubmed":"simple/pubmed.svg","simple-pug":"simple/pug.svg","simple-pulumi":"simple/pulumi.svg","simple-puma":"simple/puma.svg","simple-puppet":"simple/puppet.svg","simple-puppeteer":"simple/puppeteer.svg","simple-purescript":"simple/purescript.svg","simple-purgecss":"simple/purgecss.svg","simple-purism":"simple/purism.svg","simple-pushbullet":"simple/pushbullet.svg","simple-pusher":"simple/pusher.svg","simple-pwa":"simple/pwa.svg","simple-pycharm":"simple/pycharm.svg","simple-pycqa":"simple/pycqa.svg","simple-pydantic":"simple/pydantic.svg","simple-pyg":"simple/pyg.svg","simple-pypi":"simple/pypi.svg","simple-pypy":"simple/pypy.svg","simple-pyscaffold":"simple/pyscaffold.svg","simple-pysyft":"simple/pysyft.svg","simple-pytest":"simple/pytest.svg","simple-python":"simple/python.svg","simple-pythonanywhere":"simple/pythonanywhere.svg","simple-pytorch":"simple/pytorch.svg","simple-pyup":"simple/pyup.svg","simple-qantas":"simple/qantas.svg","simple-qase":"simple/qase.svg","simple-qatarairways":"simple/qatarairways.svg","simple-qbittorrent":"simple/qbittorrent.svg","simple-qemu":"simple/qemu.svg","simple-qgis":"simple/qgis.svg","simple-qi":"simple/qi.svg","simple-qiita":"simple/qiita.svg","simple-qiskit":"simple/qiskit.svg","simple-qiwi":"simple/qiwi.svg","simple-qlik":"simple/qlik.svg","simple-qmk":"simple/qmk.svg","simple-qnap":"simple/qnap.svg","simple-qq":"simple/qq.svg","simple-qt":"simple/qt.svg","simple-qualcomm":"simple/qualcomm.svg","simple-qualtrics":"simple/qualtrics.svg","simple-qualys":"simple/qualys.svg","simple-quantcast":"simple/quantcast.svg","simple-quantconnect":"simple/quantconnect.svg","simple-quarkus":"simple/quarkus.svg","simple-quarto":"simple/quarto.svg","simple-quasar":"simple/quasar.svg","simple-qubesos":"simple/qubesos.svg","simple-quest":"simple/quest.svg","simple-quickbooks":"simple/quickbooks.svg","simple-quicklook":"simple/quicklook.svg","simple-quicktime":"simple/quicktime.svg","simple-quicktype":"simple/quicktype.svg","simple-quip":"simple/quip.svg","simple-quizlet":"simple/quizlet.svg","simple-quora":"simple/quora.svg","simple-qwant":"simple/qwant.svg","simple-qwik":"simple/qwik.svg","simple-qwiklabs":"simple/qwiklabs.svg","simple-qzone":"simple/qzone.svg","simple-r":"simple/r.svg","simple-r3":"simple/r3.svg","simple-rabbitmq":"simple/rabbitmq.svg","simple-racket":"simple/racket.svg","simple-radar":"simple/radar.svg","simple-radarr":"simple/radarr.svg","simple-radixui":"simple/radixui.svg","simple-radstudio":"simple/radstudio.svg","simple-railway":"simple/railway.svg","simple-rainmeter":"simple/rainmeter.svg","simple-rakuten":"simple/rakuten.svg","simple-ram":"simple/ram.svg","simple-rancher":"simple/rancher.svg","simple-rapid":"simple/rapid.svg","simple-rarible":"simple/rarible.svg","simple-rasa":"simple/rasa.svg","simple-raspberrypi":"simple/raspberrypi.svg","simple-ravelry":"simple/ravelry.svg","simple-ray":"simple/ray.svg","simple-raycast":"simple/raycast.svg","simple-raylib":"simple/raylib.svg","simple-razer":"simple/razer.svg","simple-razorpay":"simple/razorpay.svg","simple-rclone":"simple/rclone.svg","simple-react":"simple/react.svg","simple-reactbootstrap":"simple/reactbootstrap.svg","simple-reacthookform":"simple/reacthookform.svg","simple-reactiveresume":"simple/reactiveresume.svg","simple-reactivex":"simple/reactivex.svg","simple-reactos":"simple/reactos.svg","simple-reactquery":"simple/reactquery.svg","simple-reactrouter":"simple/reactrouter.svg","simple-reacttable":"simple/reacttable.svg","simple-readdotcv":"simple/readdotcv.svg","simple-readme":"simple/readme.svg","simple-readthedocs":"simple/readthedocs.svg","simple-reason":"simple/reason.svg","simple-reasonstudios":"simple/reasonstudios.svg","simple-recoil":"simple/recoil.svg","simple-red":"simple/red.svg","simple-redash":"simple/redash.svg","simple-redbubble":"simple/redbubble.svg","simple-redbull":"simple/redbull.svg","simple-redcandlegames":"simple/redcandlegames.svg","simple-reddit":"simple/reddit.svg","simple-redhat":"simple/redhat.svg","simple-redhatopenshift":"simple/redhatopenshift.svg","simple-redis":"simple/redis.svg","simple-redmine":"simple/redmine.svg","simple-redox":"simple/redox.svg","simple-redragon":"simple/redragon.svg","simple-redsys":"simple/redsys.svg","simple-redux":"simple/redux.svg","simple-reduxsaga":"simple/reduxsaga.svg","simple-redwoodjs":"simple/redwoodjs.svg","simple-reebok":"simple/reebok.svg","simple-refine":"simple/refine.svg","simple-refinedgithub":"simple/refinedgithub.svg","simple-relay":"simple/relay.svg","simple-relianceindustrieslimited":"simple/relianceindustrieslimited.svg","simple-remark":"simple/remark.svg","simple-remedyentertainment":"simple/remedyentertainment.svg","simple-remix":"simple/remix.svg","simple-removedotbg":"simple/removedotbg.svg","simple-renault":"simple/renault.svg","simple-render":"simple/render.svg","simple-renovate":"simple/renovate.svg","simple-renpy":"simple/renpy.svg","simple-renren":"simple/renren.svg","simple-replicate":"simple/replicate.svg","simple-replit":"simple/replit.svg","simple-republicofgamers":"simple/republicofgamers.svg","simple-rescript":"simple/rescript.svg","simple-rescuetime":"simple/rescuetime.svg","simple-researchgate":"simple/researchgate.svg","simple-resend":"simple/resend.svg","simple-resharper":"simple/resharper.svg","simple-resurrectionremixos":"simple/resurrectionremixos.svg","simple-retool":"simple/retool.svg","simple-retroarch":"simple/retroarch.svg","simple-retropie":"simple/retropie.svg","simple-revanced":"simple/revanced.svg","simple-revealdotjs":"simple/revealdotjs.svg","simple-reverbnation":"simple/reverbnation.svg","simple-revoltdotchat":"simple/revoltdotchat.svg","simple-revolut":"simple/revolut.svg","simple-rewe":"simple/rewe.svg","simple-rezgo":"simple/rezgo.svg","simple-rhinoceros":"simple/rhinoceros.svg","simple-rich":"simple/rich.svg","simple-rider":"simple/rider.svg","simple-rimacautomobili":"simple/rimacautomobili.svg","simple-rime":"simple/rime.svg","simple-ring":"simple/ring.svg","simple-riotgames":"simple/riotgames.svg","simple-ripple":"simple/ripple.svg","simple-riscv":"simple/riscv.svg","simple-riseup":"simple/riseup.svg","simple-ritzcarlton":"simple/ritzcarlton.svg","simple-rive":"simple/rive.svg","simple-roadmapdotsh":"simple/roadmapdotsh.svg","simple-roamresearch":"simple/roamresearch.svg","simple-robinhood":"simple/robinhood.svg","simple-roblox":"simple/roblox.svg","simple-robloxstudio":"simple/robloxstudio.svg","simple-roboflow":"simple/roboflow.svg","simple-robotframework":"simple/robotframework.svg","simple-rocket":"simple/rocket.svg","simple-rocketdotchat":"simple/rocketdotchat.svg","simple-rocksdb":"simple/rocksdb.svg","simple-rockstargames":"simple/rockstargames.svg","simple-rockwellautomation":"simple/rockwellautomation.svg","simple-rockylinux":"simple/rockylinux.svg","simple-roku":"simple/roku.svg","simple-roll20":"simple/roll20.svg","simple-rollsroyce":"simple/rollsroyce.svg","simple-rollupdotjs":"simple/rollupdotjs.svg","simple-rook":"simple/rook.svg","simple-roon":"simple/roon.svg","simple-rootme":"simple/rootme.svg","simple-roots":"simple/roots.svg","simple-rootsbedrock":"simple/rootsbedrock.svg","simple-rootssage":"simple/rootssage.svg","simple-ros":"simple/ros.svg","simple-rossmann":"simple/rossmann.svg","simple-rotaryinternational":"simple/rotaryinternational.svg","simple-rottentomatoes":"simple/rottentomatoes.svg","simple-roundcube":"simple/roundcube.svg","simple-rsocket":"simple/rsocket.svg","simple-rss":"simple/rss.svg","simple-rstudioide":"simple/rstudioide.svg","simple-rte":"simple/rte.svg","simple-rtl":"simple/rtl.svg","simple-rtlzwei":"simple/rtlzwei.svg","simple-rtm":"simple/rtm.svg","simple-rubocop":"simple/rubocop.svg","simple-ruby":"simple/ruby.svg","simple-rubygems":"simple/rubygems.svg","simple-rubymine":"simple/rubymine.svg","simple-rubyonrails":"simple/rubyonrails.svg","simple-rubysinatra":"simple/rubysinatra.svg","simple-ruff":"simple/ruff.svg","simple-rumahweb":"simple/rumahweb.svg","simple-rumble":"simple/rumble.svg","simple-rundeck":"simple/rundeck.svg","simple-runkeeper":"simple/runkeeper.svg","simple-runkit":"simple/runkit.svg","simple-runrundotit":"simple/runrundotit.svg","simple-rust":"simple/rust.svg","simple-rustdesk":"simple/rustdesk.svg","simple-rxdb":"simple/rxdb.svg","simple-ryanair":"simple/ryanair.svg","simple-rye":"simple/rye.svg","simple-s7airlines":"simple/s7airlines.svg","simple-sabanci":"simple/sabanci.svg","simple-safari":"simple/safari.svg","simple-sage":"simple/sage.svg","simple-sahibinden":"simple/sahibinden.svg","simple-sailfishos":"simple/sailfishos.svg","simple-sailsdotjs":"simple/sailsdotjs.svg","simple-salesforce":"simple/salesforce.svg","simple-salla":"simple/salla.svg","simple-saltproject":"simple/saltproject.svg","simple-samsclub":"simple/samsclub.svg","simple-samsung":"simple/samsung.svg","simple-samsungpay":"simple/samsungpay.svg","simple-sandisk":"simple/sandisk.svg","simple-sanfranciscomunicipalrailway":"simple/sanfranciscomunicipalrailway.svg","simple-sanic":"simple/sanic.svg","simple-sanity":"simple/sanity.svg","simple-saopaulometro":"simple/saopaulometro.svg","simple-sap":"simple/sap.svg","simple-sartorius":"simple/sartorius.svg","simple-sass":"simple/sass.svg","simple-sat1":"simple/sat1.svg","simple-satellite":"simple/satellite.svg","simple-saturn":"simple/saturn.svg","simple-saucelabs":"simple/saucelabs.svg","simple-saudia":"simple/saudia.svg","simple-scala":"simple/scala.svg","simple-scalar":"simple/scalar.svg","simple-scaleway":"simple/scaleway.svg","simple-scania":"simple/scania.svg","simple-schneiderelectric":"simple/schneiderelectric.svg","simple-scikitlearn":"simple/scikitlearn.svg","simple-scilab":"simple/scilab.svg","simple-scipy":"simple/scipy.svg","simple-scopus":"simple/scopus.svg","simple-scpfoundation":"simple/scpfoundation.svg","simple-scrapbox":"simple/scrapbox.svg","simple-scrapy":"simple/scrapy.svg","simple-scratch":"simple/scratch.svg","simple-screencastify":"simple/screencastify.svg","simple-scribd":"simple/scribd.svg","simple-scrimba":"simple/scrimba.svg","simple-scrollreveal":"simple/scrollreveal.svg","simple-scrumalliance":"simple/scrumalliance.svg","simple-scrutinizerci":"simple/scrutinizerci.svg","simple-scylladb":"simple/scylladb.svg","simple-seagate":"simple/seagate.svg","simple-searxng":"simple/searxng.svg","simple-seat":"simple/seat.svg","simple-seatgeek":"simple/seatgeek.svg","simple-securityscorecard":"simple/securityscorecard.svg","simple-sefaria":"simple/sefaria.svg","simple-sega":"simple/sega.svg","simple-selenium":"simple/selenium.svg","simple-sellfy":"simple/sellfy.svg","simple-semanticrelease":"simple/semanticrelease.svg","simple-semanticscholar":"simple/semanticscholar.svg","simple-semanticui":"simple/semanticui.svg","simple-semanticuireact":"simple/semanticuireact.svg","simple-semanticweb":"simple/semanticweb.svg","simple-semaphoreci":"simple/semaphoreci.svg","simple-semrush":"simple/semrush.svg","simple-semver":"simple/semver.svg","simple-sencha":"simple/sencha.svg","simple-sendgrid":"simple/sendgrid.svg","simple-sennheiser":"simple/sennheiser.svg","simple-sensu":"simple/sensu.svg","simple-sentry":"simple/sentry.svg","simple-sepa":"simple/sepa.svg","simple-sequelize":"simple/sequelize.svg","simple-serverfault":"simple/serverfault.svg","simple-serverless":"simple/serverless.svg","simple-session":"simple/session.svg","simple-sessionize":"simple/sessionize.svg","simple-setapp":"simple/setapp.svg","simple-sfml":"simple/sfml.svg","simple-shadcnui":"simple/shadcnui.svg","simple-shadow":"simple/shadow.svg","simple-shanghaimetro":"simple/shanghaimetro.svg","simple-sharex":"simple/sharex.svg","simple-sharp":"simple/sharp.svg","simple-shazam":"simple/shazam.svg","simple-shell":"simple/shell.svg","simple-shelly":"simple/shelly.svg","simple-shenzhenmetro":"simple/shenzhenmetro.svg","simple-shieldsdotio":"simple/shieldsdotio.svg","simple-shikimori":"simple/shikimori.svg","simple-shopee":"simple/shopee.svg","simple-shopify":"simple/shopify.svg","simple-shopware":"simple/shopware.svg","simple-shortcut":"simple/shortcut.svg","simple-showpad":"simple/showpad.svg","simple-showtime":"simple/showtime.svg","simple-showwcase":"simple/showwcase.svg","simple-shutterstock":"simple/shutterstock.svg","simple-sidekiq":"simple/sidekiq.svg","simple-sidequest":"simple/sidequest.svg","simple-siemens":"simple/siemens.svg","simple-sifive":"simple/sifive.svg","simple-signal":"simple/signal.svg","simple-silverairways":"simple/silverairways.svg","simple-similarweb":"simple/similarweb.svg","simple-simkl":"simple/simkl.svg","simple-simpleanalytics":"simple/simpleanalytics.svg","simple-simpleicons":"simple/simpleicons.svg","simple-simplelogin":"simple/simplelogin.svg","simple-simplenote":"simple/simplenote.svg","simple-simplex":"simple/simplex.svg","simple-sinaweibo":"simple/sinaweibo.svg","simple-singaporeairlines":"simple/singaporeairlines.svg","simple-singlestore":"simple/singlestore.svg","simple-sitecore":"simple/sitecore.svg","simple-sitepoint":"simple/sitepoint.svg","simple-siyuan":"simple/siyuan.svg","simple-skaffold":"simple/skaffold.svg","simple-sketch":"simple/sketch.svg","simple-sketchfab":"simple/sketchfab.svg","simple-sketchup":"simple/sketchup.svg","simple-skillshare":"simple/skillshare.svg","simple-skoda":"simple/skoda.svg","simple-sky":"simple/sky.svg","simple-skypack":"simple/skypack.svg","simple-slack":"simple/slack.svg","simple-slackware":"simple/slackware.svg","simple-slashdot":"simple/slashdot.svg","simple-slickpic":"simple/slickpic.svg","simple-slides":"simple/slides.svg","simple-slideshare":"simple/slideshare.svg","simple-slint":"simple/slint.svg","simple-smart":"simple/smart.svg","simple-smartthings":"simple/smartthings.svg","simple-smashingmagazine":"simple/smashingmagazine.svg","simple-smrt":"simple/smrt.svg","simple-smugmug":"simple/smugmug.svg","simple-snapchat":"simple/snapchat.svg","simple-snapcraft":"simple/snapcraft.svg","simple-snapdragon":"simple/snapdragon.svg","simple-sncf":"simple/sncf.svg","simple-snort":"simple/snort.svg","simple-snowflake":"simple/snowflake.svg","simple-snowpack":"simple/snowpack.svg","simple-snyk":"simple/snyk.svg","simple-socialblade":"simple/socialblade.svg","simple-society6":"simple/society6.svg","simple-socket":"simple/socket.svg","simple-socketdotio":"simple/socketdotio.svg","simple-softcatala":"simple/softcatala.svg","simple-softpedia":"simple/softpedia.svg","simple-sogou":"simple/sogou.svg","simple-solana":"simple/solana.svg","simple-solid":"simple/solid.svg","simple-solidity":"simple/solidity.svg","simple-sololearn":"simple/sololearn.svg","simple-solus":"simple/solus.svg","simple-sonar":"simple/sonar.svg","simple-sonarcloud":"simple/sonarcloud.svg","simple-sonarlint":"simple/sonarlint.svg","simple-sonarqube":"simple/sonarqube.svg","simple-sonarr":"simple/sonarr.svg","simple-sonatype":"simple/sonatype.svg","simple-songkick":"simple/songkick.svg","simple-songoda":"simple/songoda.svg","simple-sonicwall":"simple/sonicwall.svg","simple-sonos":"simple/sonos.svg","simple-sony":"simple/sony.svg","simple-soriana":"simple/soriana.svg","simple-soundcharts":"simple/soundcharts.svg","simple-soundcloud":"simple/soundcloud.svg","simple-sourceengine":"simple/sourceengine.svg","simple-sourceforge":"simple/sourceforge.svg","simple-sourcehut":"simple/sourcehut.svg","simple-sourcetree":"simple/sourcetree.svg","simple-southwestairlines":"simple/southwestairlines.svg","simple-spacemacs":"simple/spacemacs.svg","simple-spaceship":"simple/spaceship.svg","simple-spacex":"simple/spacex.svg","simple-spacy":"simple/spacy.svg","simple-sparkar":"simple/sparkar.svg","simple-sparkasse":"simple/sparkasse.svg","simple-sparkfun":"simple/sparkfun.svg","simple-sparkpost":"simple/sparkpost.svg","simple-spdx":"simple/spdx.svg","simple-speakerdeck":"simple/speakerdeck.svg","simple-spectrum":"simple/spectrum.svg","simple-speedtest":"simple/speedtest.svg","simple-speedypage":"simple/speedypage.svg","simple-sphinx":"simple/sphinx.svg","simple-spigotmc":"simple/spigotmc.svg","simple-spine":"simple/spine.svg","simple-spinnaker":"simple/spinnaker.svg","simple-splunk":"simple/splunk.svg","simple-spoj":"simple/spoj.svg","simple-spond":"simple/spond.svg","simple-spotify":"simple/spotify.svg","simple-spotlight":"simple/spotlight.svg","simple-spreadshirt":"simple/spreadshirt.svg","simple-spreaker":"simple/spreaker.svg","simple-spring":"simple/spring.svg","simple-spring_creators":"simple/spring_creators.svg","simple-springboot":"simple/springboot.svg","simple-springsecurity":"simple/springsecurity.svg","simple-spyderide":"simple/spyderide.svg","simple-sqlalchemy":"simple/sqlalchemy.svg","simple-sqlite":"simple/sqlite.svg","simple-square":"simple/square.svg","simple-squareenix":"simple/squareenix.svg","simple-squarespace":"simple/squarespace.svg","simple-srgssr":"simple/srgssr.svg","simple-ssrn":"simple/ssrn.svg","simple-sst":"simple/sst.svg","simple-stackbit":"simple/stackbit.svg","simple-stackblitz":"simple/stackblitz.svg","simple-stackedit":"simple/stackedit.svg","simple-stackexchange":"simple/stackexchange.svg","simple-stackhawk":"simple/stackhawk.svg","simple-stackoverflow":"simple/stackoverflow.svg","simple-stackshare":"simple/stackshare.svg","simple-stadia":"simple/stadia.svg","simple-staffbase":"simple/staffbase.svg","simple-stagetimer":"simple/stagetimer.svg","simple-standardjs":"simple/standardjs.svg","simple-standardresume":"simple/standardresume.svg","simple-starbucks":"simple/starbucks.svg","simple-stardock":"simple/stardock.svg","simple-starlingbank":"simple/starlingbank.svg","simple-starship":"simple/starship.svg","simple-startdotgg":"simple/startdotgg.svg","simple-startpage":"simple/startpage.svg","simple-startrek":"simple/startrek.svg","simple-starz":"simple/starz.svg","simple-statamic":"simple/statamic.svg","simple-statista":"simple/statista.svg","simple-statuspage":"simple/statuspage.svg","simple-statuspal":"simple/statuspal.svg","simple-steam":"simple/steam.svg","simple-steamdb":"simple/steamdb.svg","simple-steamdeck":"simple/steamdeck.svg","simple-steamworks":"simple/steamworks.svg","simple-steelseries":"simple/steelseries.svg","simple-steem":"simple/steem.svg","simple-steemit":"simple/steemit.svg","simple-steinberg":"simple/steinberg.svg","simple-stellar":"simple/stellar.svg","simple-stencil":"simple/stencil.svg","simple-stencyl":"simple/stencyl.svg","simple-stimulus":"simple/stimulus.svg","simple-stmicroelectronics":"simple/stmicroelectronics.svg","simple-stockx":"simple/stockx.svg","simple-stopstalk":"simple/stopstalk.svg","simple-storyblok":"simple/storyblok.svg","simple-storybook":"simple/storybook.svg","simple-strapi":"simple/strapi.svg","simple-strava":"simple/strava.svg","simple-streamlabs":"simple/streamlabs.svg","simple-streamlit":"simple/streamlit.svg","simple-streamrunners":"simple/streamrunners.svg","simple-stremio":"simple/stremio.svg","simple-stripe":"simple/stripe.svg","simple-strongswan":"simple/strongswan.svg","simple-stryker":"simple/stryker.svg","simple-stubhub":"simple/stubhub.svg","simple-studio3t":"simple/studio3t.svg","simple-styledcomponents":"simple/styledcomponents.svg","simple-stylelint":"simple/stylelint.svg","simple-styleshare":"simple/styleshare.svg","simple-stylus":"simple/stylus.svg","simple-subaru":"simple/subaru.svg","simple-sublimetext":"simple/sublimetext.svg","simple-substack":"simple/substack.svg","simple-subtitleedit":"simple/subtitleedit.svg","simple-subversion":"simple/subversion.svg","simple-suckless":"simple/suckless.svg","simple-sui":"simple/sui.svg","simple-sumologic":"simple/sumologic.svg","simple-suno":"simple/suno.svg","simple-sunrise":"simple/sunrise.svg","simple-supabase":"simple/supabase.svg","simple-supercrease":"simple/supercrease.svg","simple-supermicro":"simple/supermicro.svg","simple-superuser":"simple/superuser.svg","simple-surfshark":"simple/surfshark.svg","simple-surrealdb":"simple/surrealdb.svg","simple-surveymonkey":"simple/surveymonkey.svg","simple-suse":"simple/suse.svg","simple-suzuki":"simple/suzuki.svg","simple-svelte":"simple/svelte.svg","simple-svg":"simple/svg.svg","simple-svgdotjs":"simple/svgdotjs.svg","simple-svgo":"simple/svgo.svg","simple-svgtrace":"simple/svgtrace.svg","simple-swagger":"simple/swagger.svg","simple-swarm":"simple/swarm.svg","simple-sway":"simple/sway.svg","simple-swc":"simple/swc.svg","simple-swift":"simple/swift.svg","simple-swiggy":"simple/swiggy.svg","simple-swiper":"simple/swiper.svg","simple-swr":"simple/swr.svg","simple-symantec":"simple/symantec.svg","simple-symbolab":"simple/symbolab.svg","simple-symfony":"simple/symfony.svg","simple-symphony":"simple/symphony.svg","simple-sympy":"simple/sympy.svg","simple-syncthing":"simple/syncthing.svg","simple-synology":"simple/synology.svg","simple-system76":"simple/system76.svg","simple-tabelog":"simple/tabelog.svg","simple-tablecheck":"simple/tablecheck.svg","simple-tacobell":"simple/tacobell.svg","simple-tado":"simple/tado.svg","simple-taichigraphics":"simple/taichigraphics.svg","simple-taichilang":"simple/taichilang.svg","simple-tails":"simple/tails.svg","simple-tailscale":"simple/tailscale.svg","simple-tailwindcss":"simple/tailwindcss.svg","simple-taipy":"simple/taipy.svg","simple-taketwointeractivesoftware":"simple/taketwointeractivesoftware.svg","simple-talend":"simple/talend.svg","simple-talenthouse":"simple/talenthouse.svg","simple-talos":"simple/talos.svg","simple-tamiya":"simple/tamiya.svg","simple-tampermonkey":"simple/tampermonkey.svg","simple-taobao":"simple/taobao.svg","simple-tapas":"simple/tapas.svg","simple-target":"simple/target.svg","simple-tarom":"simple/tarom.svg","simple-task":"simple/task.svg","simple-tasmota":"simple/tasmota.svg","simple-tata":"simple/tata.svg","simple-tauri":"simple/tauri.svg","simple-taxbuzz":"simple/taxbuzz.svg","simple-tcs":"simple/tcs.svg","simple-teal":"simple/teal.svg","simple-teamcity":"simple/teamcity.svg","simple-teamspeak":"simple/teamspeak.svg","simple-teamviewer":"simple/teamviewer.svg","simple-techcrunch":"simple/techcrunch.svg","simple-ted":"simple/ted.svg","simple-teepublic":"simple/teepublic.svg","simple-teespring":"simple/teespring.svg","simple-tekton":"simple/tekton.svg","simple-tele5":"simple/tele5.svg","simple-telefonica":"simple/telefonica.svg","simple-telegram":"simple/telegram.svg","simple-telegraph":"simple/telegraph.svg","simple-telequebec":"simple/telequebec.svg","simple-temporal":"simple/temporal.svg","simple-tensorflow":"simple/tensorflow.svg","simple-teradata":"simple/teradata.svg","simple-teratail":"simple/teratail.svg","simple-termius":"simple/termius.svg","simple-terraform":"simple/terraform.svg","simple-tesco":"simple/tesco.svg","simple-tesla":"simple/tesla.svg","simple-testcafe":"simple/testcafe.svg","simple-testin":"simple/testin.svg","simple-testinglibrary":"simple/testinglibrary.svg","simple-testrail":"simple/testrail.svg","simple-tether":"simple/tether.svg","simple-textpattern":"simple/textpattern.svg","simple-tga":"simple/tga.svg","simple-thangs":"simple/thangs.svg","simple-thanos":"simple/thanos.svg","simple-thealgorithms":"simple/thealgorithms.svg","simple-theboringcompany":"simple/theboringcompany.svg","simple-theconversation":"simple/theconversation.svg","simple-thefinals":"simple/thefinals.svg","simple-theguardian":"simple/theguardian.svg","simple-theirishtimes":"simple/theirishtimes.svg","simple-themighty":"simple/themighty.svg","simple-themodelsresource":"simple/themodelsresource.svg","simple-themoviedatabase":"simple/themoviedatabase.svg","simple-thenorthface":"simple/thenorthface.svg","simple-theodinproject":"simple/theodinproject.svg","simple-theregister":"simple/theregister.svg","simple-thesoundsresource":"simple/thesoundsresource.svg","simple-thespritersresource":"simple/thespritersresource.svg","simple-thewashingtonpost":"simple/thewashingtonpost.svg","simple-theweatherchannel":"simple/theweatherchannel.svg","simple-thingiverse":"simple/thingiverse.svg","simple-thinkpad":"simple/thinkpad.svg","simple-thirdweb":"simple/thirdweb.svg","simple-threadless":"simple/threadless.svg","simple-threads":"simple/threads.svg","simple-threedotjs":"simple/threedotjs.svg","simple-threema":"simple/threema.svg","simple-thumbtack":"simple/thumbtack.svg","simple-thunderbird":"simple/thunderbird.svg","simple-thunderstore":"simple/thunderstore.svg","simple-thurgauerkantonalbank":"simple/thurgauerkantonalbank.svg","simple-thymeleaf":"simple/thymeleaf.svg","simple-ticketmaster":"simple/ticketmaster.svg","simple-ticktick":"simple/ticktick.svg","simple-tidal":"simple/tidal.svg","simple-tiddlywiki":"simple/tiddlywiki.svg","simple-tide":"simple/tide.svg","simple-tidyverse":"simple/tidyverse.svg","simple-tietoevry":"simple/tietoevry.svg","simple-tiktok":"simple/tiktok.svg","simple-tildapublishing":"simple/tildapublishing.svg","simple-tile":"simple/tile.svg","simple-timescale":"simple/timescale.svg","simple-tina":"simple/tina.svg","simple-tinder":"simple/tinder.svg","simple-tindie":"simple/tindie.svg","simple-tinkercad":"simple/tinkercad.svg","simple-tinygrad":"simple/tinygrad.svg","simple-tinyletter":"simple/tinyletter.svg","simple-tistory":"simple/tistory.svg","simple-tldraw":"simple/tldraw.svg","simple-tmux":"simple/tmux.svg","simple-todoist":"simple/todoist.svg","simple-toggl":"simple/toggl.svg","simple-toggltrack":"simple/toggltrack.svg","simple-tokyometro":"simple/tokyometro.svg","simple-toll":"simple/toll.svg","simple-toml":"simple/toml.svg","simple-tomorrowland":"simple/tomorrowland.svg","simple-tomtom":"simple/tomtom.svg","simple-ton":"simple/ton.svg","simple-topcoder":"simple/topcoder.svg","simple-topdotgg":"simple/topdotgg.svg","simple-toptal":"simple/toptal.svg","simple-torbrowser":"simple/torbrowser.svg","simple-torproject":"simple/torproject.svg","simple-toshiba":"simple/toshiba.svg","simple-totvs":"simple/totvs.svg","simple-tourbox":"simple/tourbox.svg","simple-tower":"simple/tower.svg","simple-toyota":"simple/toyota.svg","simple-tplink":"simple/tplink.svg","simple-tqdm":"simple/tqdm.svg","simple-traccar":"simple/traccar.svg","simple-tradingview":"simple/tradingview.svg","simple-traefikmesh":"simple/traefikmesh.svg","simple-traefikproxy":"simple/traefikproxy.svg","simple-trailforks":"simple/trailforks.svg","simple-trainerroad":"simple/trainerroad.svg","simple-trakt":"simple/trakt.svg","simple-transifex":"simple/transifex.svg","simple-transmission":"simple/transmission.svg","simple-transportforireland":"simple/transportforireland.svg","simple-transportforlondon":"simple/transportforlondon.svg","simple-travisci":"simple/travisci.svg","simple-treehouse":"simple/treehouse.svg","simple-trello":"simple/trello.svg","simple-trendmicro":"simple/trendmicro.svg","simple-treyarch":"simple/treyarch.svg","simple-tricentis":"simple/tricentis.svg","simple-trilium":"simple/trilium.svg","simple-triller":"simple/triller.svg","simple-trillertv":"simple/trillertv.svg","simple-trimble":"simple/trimble.svg","simple-trino":"simple/trino.svg","simple-tripadvisor":"simple/tripadvisor.svg","simple-tripdotcom":"simple/tripdotcom.svg","simple-trivago":"simple/trivago.svg","simple-trivy":"simple/trivy.svg","simple-trove":"simple/trove.svg","simple-trpc":"simple/trpc.svg","simple-truenas":"simple/truenas.svg","simple-trueup":"simple/trueup.svg","simple-trulia":"simple/trulia.svg","simple-trustedshops":"simple/trustedshops.svg","simple-trustpilot":"simple/trustpilot.svg","simple-tryhackme":"simple/tryhackme.svg","simple-tryitonline":"simple/tryitonline.svg","simple-tsnode":"simple/tsnode.svg","simple-tubi":"simple/tubi.svg","simple-tui":"simple/tui.svg","simple-tumblr":"simple/tumblr.svg","simple-tunein":"simple/tunein.svg","simple-turbo":"simple/turbo.svg","simple-turborepo":"simple/turborepo.svg","simple-turbosquid":"simple/turbosquid.svg","simple-turkishairlines":"simple/turkishairlines.svg","simple-turso":"simple/turso.svg","simple-tuta":"simple/tuta.svg","simple-tv4play":"simple/tv4play.svg","simple-tvtime":"simple/tvtime.svg","simple-twilio":"simple/twilio.svg","simple-twinkly":"simple/twinkly.svg","simple-twinmotion":"simple/twinmotion.svg","simple-twitch":"simple/twitch.svg","simple-typeform":"simple/typeform.svg","simple-typeorm":"simple/typeorm.svg","simple-typer":"simple/typer.svg","simple-typescript":"simple/typescript.svg","simple-typo3":"simple/typo3.svg","simple-typst":"simple/typst.svg","simple-uber":"simple/uber.svg","simple-ubereats":"simple/ubereats.svg","simple-ubiquiti":"simple/ubiquiti.svg","simple-ubisoft":"simple/ubisoft.svg","simple-ublockorigin":"simple/ublockorigin.svg","simple-ubuntu":"simple/ubuntu.svg","simple-ubuntumate":"simple/ubuntumate.svg","simple-udacity":"simple/udacity.svg","simple-udemy":"simple/udemy.svg","simple-udotsdotnews":"simple/udotsdotnews.svg","simple-ufc":"simple/ufc.svg","simple-uikit":"simple/uikit.svg","simple-uipath":"simple/uipath.svg","simple-ukca":"simple/ukca.svg","simple-ultralytics":"simple/ultralytics.svg","simple-ulule":"simple/ulule.svg","simple-umami":"simple/umami.svg","simple-umbraco":"simple/umbraco.svg","simple-uml":"simple/uml.svg","simple-unacademy":"simple/unacademy.svg","simple-underarmour":"simple/underarmour.svg","simple-underscoredotjs":"simple/underscoredotjs.svg","simple-undertale":"simple/undertale.svg","simple-unicode":"simple/unicode.svg","simple-unilever":"simple/unilever.svg","simple-uniqlo":"simple/uniqlo.svg","simple-uniqlo_ja":"simple/uniqlo_ja.svg","simple-unitedairlines":"simple/unitedairlines.svg","simple-unitednations":"simple/unitednations.svg","simple-unity":"simple/unity.svg","simple-unjs":"simple/unjs.svg","simple-unlicense":"simple/unlicense.svg","simple-unocss":"simple/unocss.svg","simple-unpkg":"simple/unpkg.svg","simple-unraid":"simple/unraid.svg","simple-unrealengine":"simple/unrealengine.svg","simple-unsplash":"simple/unsplash.svg","simple-untappd":"simple/untappd.svg","simple-upcloud":"simple/upcloud.svg","simple-uphold":"simple/uphold.svg","simple-uplabs":"simple/uplabs.svg","simple-upptime":"simple/upptime.svg","simple-ups":"simple/ups.svg","simple-upstash":"simple/upstash.svg","simple-uptimekuma":"simple/uptimekuma.svg","simple-upwork":"simple/upwork.svg","simple-usps":"simple/usps.svg","simple-utorrent":"simple/utorrent.svg","simple-uv":"simple/uv.svg","simple-v":"simple/v.svg","simple-v0":"simple/v0.svg","simple-v2ex":"simple/v2ex.svg","simple-v8":"simple/v8.svg","simple-vaadin":"simple/vaadin.svg","simple-vagrant":"simple/vagrant.svg","simple-vala":"simple/vala.svg","simple-valorant":"simple/valorant.svg","simple-valve":"simple/valve.svg","simple-vapor":"simple/vapor.svg","simple-vault":"simple/vault.svg","simple-vaultwarden":"simple/vaultwarden.svg","simple-vauxhall":"simple/vauxhall.svg","simple-vbulletin":"simple/vbulletin.svg","simple-vectary":"simple/vectary.svg","simple-vectorlogozone":"simple/vectorlogozone.svg","simple-vectorworks":"simple/vectorworks.svg","simple-veeam":"simple/veeam.svg","simple-veed":"simple/veed.svg","simple-veepee":"simple/veepee.svg","simple-vega":"simple/vega.svg","simple-vegas":"simple/vegas.svg","simple-velog":"simple/velog.svg","simple-vencord":"simple/vencord.svg","simple-venmo":"simple/venmo.svg","simple-vercel":"simple/vercel.svg","simple-verdaccio":"simple/verdaccio.svg","simple-veritas":"simple/veritas.svg","simple-verizon":"simple/verizon.svg","simple-vespa":"simple/vespa.svg","simple-vestel":"simple/vestel.svg","simple-vexxhost":"simple/vexxhost.svg","simple-vfairs":"simple/vfairs.svg","simple-viadeo":"simple/viadeo.svg","simple-viaplay":"simple/viaplay.svg","simple-viber":"simple/viber.svg","simple-viblo":"simple/viblo.svg","simple-victoriametrics":"simple/victoriametrics.svg","simple-victronenergy":"simple/victronenergy.svg","simple-vim":"simple/vim.svg","simple-vimeo":"simple/vimeo.svg","simple-vimeolivestream":"simple/vimeolivestream.svg","simple-virgin":"simple/virgin.svg","simple-virginatlantic":"simple/virginatlantic.svg","simple-virginmedia":"simple/virginmedia.svg","simple-virtualbox":"simple/virtualbox.svg","simple-virustotal":"simple/virustotal.svg","simple-visa":"simple/visa.svg","simple-visx":"simple/visx.svg","simple-vite":"simple/vite.svg","simple-vitepress":"simple/vitepress.svg","simple-vitess":"simple/vitess.svg","simple-vitest":"simple/vitest.svg","simple-vivaldi":"simple/vivaldi.svg","simple-vivawallet":"simple/vivawallet.svg","simple-vivino":"simple/vivino.svg","simple-vivint":"simple/vivint.svg","simple-vivo":"simple/vivo.svg","simple-vk":"simple/vk.svg","simple-vlcmediaplayer":"simple/vlcmediaplayer.svg","simple-vmware":"simple/vmware.svg","simple-vodafone":"simple/vodafone.svg","simple-voidlinux":"simple/voidlinux.svg","simple-voipdotms":"simple/voipdotms.svg","simple-volkswagen":"simple/volkswagen.svg","simple-volvo":"simple/volvo.svg","simple-vonage":"simple/vonage.svg","simple-vorondesign":"simple/vorondesign.svg","simple-vowpalwabbit":"simple/vowpalwabbit.svg","simple-vox":"simple/vox.svg","simple-vrchat":"simple/vrchat.svg","simple-vsco":"simple/vsco.svg","simple-vscodium":"simple/vscodium.svg","simple-vtex":"simple/vtex.svg","simple-vuedotjs":"simple/vuedotjs.svg","simple-vuetify":"simple/vuetify.svg","simple-vulkan":"simple/vulkan.svg","simple-vultr":"simple/vultr.svg","simple-vyond":"simple/vyond.svg","simple-w3schools":"simple/w3schools.svg","simple-wacom":"simple/wacom.svg","simple-wagmi":"simple/wagmi.svg","simple-wagtail":"simple/wagtail.svg","simple-wails":"simple/wails.svg","simple-wakatime":"simple/wakatime.svg","simple-walkman":"simple/walkman.svg","simple-wallabag":"simple/wallabag.svg","simple-walletconnect":"simple/walletconnect.svg","simple-walmart":"simple/walmart.svg","simple-wantedly":"simple/wantedly.svg","simple-wappalyzer":"simple/wappalyzer.svg","simple-warnerbros":"simple/warnerbros.svg","simple-warp":"simple/warp.svg","simple-wasabi":"simple/wasabi.svg","simple-wasmcloud":"simple/wasmcloud.svg","simple-wasmer":"simple/wasmer.svg","simple-watchtower":"simple/watchtower.svg","simple-wattpad":"simple/wattpad.svg","simple-wayland":"simple/wayland.svg","simple-waze":"simple/waze.svg","simple-wazirx":"simple/wazirx.svg","simple-wearos":"simple/wearos.svg","simple-weasyl":"simple/weasyl.svg","simple-web3dotjs":"simple/web3dotjs.svg","simple-webassembly":"simple/webassembly.svg","simple-webauthn":"simple/webauthn.svg","simple-webcomponentsdotorg":"simple/webcomponentsdotorg.svg","simple-webdotde":"simple/webdotde.svg","simple-webdriverio":"simple/webdriverio.svg","simple-webex":"simple/webex.svg","simple-webflow":"simple/webflow.svg","simple-webgl":"simple/webgl.svg","simple-webgpu":"simple/webgpu.svg","simple-weblate":"simple/weblate.svg","simple-webmin":"simple/webmin.svg","simple-webmoney":"simple/webmoney.svg","simple-webpack":"simple/webpack.svg","simple-webrtc":"simple/webrtc.svg","simple-webstorm":"simple/webstorm.svg","simple-webtoon":"simple/webtoon.svg","simple-webtrees":"simple/webtrees.svg","simple-wechat":"simple/wechat.svg","simple-wegame":"simple/wegame.svg","simple-weightsandbiases":"simple/weightsandbiases.svg","simple-welcometothejungle":"simple/welcometothejungle.svg","simple-wellfound":"simple/wellfound.svg","simple-wellsfargo":"simple/wellsfargo.svg","simple-wemo":"simple/wemo.svg","simple-westerndigital":"simple/westerndigital.svg","simple-westernunion":"simple/westernunion.svg","simple-wetransfer":"simple/wetransfer.svg","simple-wezterm":"simple/wezterm.svg","simple-wgpu":"simple/wgpu.svg","simple-whatsapp":"simple/whatsapp.svg","simple-wheniwork":"simple/wheniwork.svg","simple-wikibooks":"simple/wikibooks.svg","simple-wikidata":"simple/wikidata.svg","simple-wikidotgg":"simple/wikidotgg.svg","simple-wikidotjs":"simple/wikidotjs.svg","simple-wikimediacommons":"simple/wikimediacommons.svg","simple-wikimediafoundation":"simple/wikimediafoundation.svg","simple-wikipedia":"simple/wikipedia.svg","simple-wikiquote":"simple/wikiquote.svg","simple-wikiversity":"simple/wikiversity.svg","simple-wikivoyage":"simple/wikivoyage.svg","simple-winamp":"simple/winamp.svg","simple-wine":"simple/wine.svg","simple-wipro":"simple/wipro.svg","simple-wire":"simple/wire.svg","simple-wireguard":"simple/wireguard.svg","simple-wireshark":"simple/wireshark.svg","simple-wise":"simple/wise.svg","simple-wish":"simple/wish.svg","simple-wistia":"simple/wistia.svg","simple-wix":"simple/wix.svg","simple-wizzair":"simple/wizzair.svg","simple-wolfram":"simple/wolfram.svg","simple-wolframlanguage":"simple/wolframlanguage.svg","simple-wolframmathematica":"simple/wolframmathematica.svg","simple-wondershare":"simple/wondershare.svg","simple-wondersharefilmora":"simple/wondersharefilmora.svg","simple-woo":"simple/woo.svg","simple-woocommerce":"simple/woocommerce.svg","simple-wordpress":"simple/wordpress.svg","simple-workplace":"simple/workplace.svg","simple-worldhealthorganization":"simple/worldhealthorganization.svg","simple-wpengine":"simple/wpengine.svg","simple-wpexplorer":"simple/wpexplorer.svg","simple-wprocket":"simple/wprocket.svg","simple-writedotas":"simple/writedotas.svg","simple-wwe":"simple/wwe.svg","simple-wwise":"simple/wwise.svg","simple-wxt":"simple/wxt.svg","simple-wykop":"simple/wykop.svg","simple-wyze":"simple/wyze.svg","simple-x":"simple/x.svg","simple-xampp":"simple/xampp.svg","simple-xcode":"simple/xcode.svg","simple-xdadevelopers":"simple/xdadevelopers.svg","simple-xdotorg":"simple/xdotorg.svg","simple-xendit":"simple/xendit.svg","simple-xero":"simple/xero.svg","simple-xfce":"simple/xfce.svg","simple-xiaohongshu":"simple/xiaohongshu.svg","simple-xiaomi":"simple/xiaomi.svg","simple-xing":"simple/xing.svg","simple-xml":"simple/xml.svg","simple-xmpp":"simple/xmpp.svg","simple-xo":"simple/xo.svg","simple-xrp":"simple/xrp.svg","simple-xsplit":"simple/xsplit.svg","simple-xstate":"simple/xstate.svg","simple-xubuntu":"simple/xubuntu.svg","simple-yabai":"simple/yabai.svg","simple-yale":"simple/yale.svg","simple-yamahacorporation":"simple/yamahacorporation.svg","simple-yamahamotorcorporation":"simple/yamahamotorcorporation.svg","simple-yaml":"simple/yaml.svg","simple-yandexcloud":"simple/yandexcloud.svg","simple-yarn":"simple/yarn.svg","simple-ycombinator":"simple/ycombinator.svg","simple-yelp":"simple/yelp.svg","simple-yeti":"simple/yeti.svg","simple-yii":"simple/yii.svg","simple-yoast":"simple/yoast.svg","simple-yolo":"simple/yolo.svg","simple-youhodler":"simple/youhodler.svg","simple-youtube":"simple/youtube.svg","simple-youtubegaming":"simple/youtubegaming.svg","simple-youtubekids":"simple/youtubekids.svg","simple-youtubemusic":"simple/youtubemusic.svg","simple-youtubeshorts":"simple/youtubeshorts.svg","simple-youtubestudio":"simple/youtubestudio.svg","simple-youtubetv":"simple/youtubetv.svg","simple-yr":"simple/yr.svg","simple-yubico":"simple/yubico.svg","simple-yunohost":"simple/yunohost.svg","simple-zabka":"simple/zabka.svg","simple-zaim":"simple/zaim.svg","simple-zalando":"simple/zalando.svg","simple-zalo":"simple/zalo.svg","simple-zap":"simple/zap.svg","simple-zapier":"simple/zapier.svg","simple-zara":"simple/zara.svg","simple-zazzle":"simple/zazzle.svg","simple-zcash":"simple/zcash.svg","simple-zcool":"simple/zcool.svg","simple-zdf":"simple/zdf.svg","simple-zebpay":"simple/zebpay.svg","simple-zebratechnologies":"simple/zebratechnologies.svg","simple-zedindustries":"simple/zedindustries.svg","simple-zelle":"simple/zelle.svg","simple-zend":"simple/zend.svg","simple-zendesk":"simple/zendesk.svg","simple-zenn":"simple/zenn.svg","simple-zenodo":"simple/zenodo.svg","simple-zensar":"simple/zensar.svg","simple-zerodha":"simple/zerodha.svg","simple-zerotier":"simple/zerotier.svg","simple-zettlr":"simple/zettlr.svg","simple-zhihu":"simple/zhihu.svg","simple-zig":"simple/zig.svg","simple-zigbee":"simple/zigbee.svg","simple-zigbee2mqtt":"simple/zigbee2mqtt.svg","simple-ziggo":"simple/ziggo.svg","simple-zilch":"simple/zilch.svg","simple-zillow":"simple/zillow.svg","simple-zincsearch":"simple/zincsearch.svg","simple-zingat":"simple/zingat.svg","simple-zod":"simple/zod.svg","simple-zoho":"simple/zoho.svg","simple-zoiper":"simple/zoiper.svg","simple-zomato":"simple/zomato.svg","simple-zoom":"simple/zoom.svg","simple-zorin":"simple/zorin.svg","simple-zotero":"simple/zotero.svg","simple-zsh":"simple/zsh.svg","simple-zulip":"simple/zulip.svg","simple-zyte":"simple/zyte.svg"}},"emojis":{"base":"https://raw.githubusercontent.com/twitter/twemoji/master/assets/svg/","data":{"100":"1f4af.svg","1234":"1f522.svg","8ball":"1f3b1.svg","a":"1f170.svg","ab":"1f18e.svg","abacus":"1f9ee.svg","abc":"1f524.svg","abcd":"1f521.svg","accept":"1f251.svg","accordion":"1fa97.svg","adhesive_bandage":"1fa79.svg","adult":"1f9d1.svg","adult_tone1":"1f9d1-1f3fb.svg","adult_tone2":"1f9d1-1f3fc.svg","adult_tone3":"1f9d1-1f3fd.svg","adult_tone4":"1f9d1-1f3fe.svg","adult_tone5":"1f9d1-1f3ff.svg","aerial_tramway":"1f6a1.svg","airplane":"2708.svg","airplane_arriving":"1f6ec.svg","airplane_departure":"1f6eb.svg","airplane_small":"1f6e9.svg","alarm_clock":"23f0.svg","alembic":"2697.svg","alien":"1f47d.svg","ambulance":"1f691.svg","amphora":"1f3fa.svg","anatomical_heart":"1fac0.svg","anchor":"2693.svg","angel":"1f47c.svg","angel_tone1":"1f47c-1f3fb.svg","angel_tone2":"1f47c-1f3fc.svg","angel_tone3":"1f47c-1f3fd.svg","angel_tone4":"1f47c-1f3fe.svg","angel_tone5":"1f47c-1f3ff.svg","anger":"1f4a2.svg","anger_right":"1f5ef.svg","angry":"1f620.svg","anguished":"1f627.svg","ant":"1f41c.svg","apple":"1f34e.svg","aquarius":"2652.svg","aries":"2648.svg","arrow_backward":"25c0.svg","arrow_double_down":"23ec.svg","arrow_double_up":"23eb.svg","arrow_down":"2b07.svg","arrow_down_small":"1f53d.svg","arrow_forward":"25b6.svg","arrow_heading_down":"2935.svg","arrow_heading_up":"2934.svg","arrow_left":"2b05.svg","arrow_lower_left":"2199.svg","arrow_lower_right":"2198.svg","arrow_right":"27a1.svg","arrow_right_hook":"21aa.svg","arrow_up":"2b06.svg","arrow_up_down":"2195.svg","arrow_up_small":"1f53c.svg","arrow_upper_left":"2196.svg","arrow_upper_right":"2197.svg","arrows_clockwise":"1f503.svg","arrows_counterclockwise":"1f504.svg","art":"1f3a8.svg","articulated_lorry":"1f69b.svg","artist":"1f9d1-200d-1f3a8.svg","artist_tone1":"1f9d1-1f3fb-200d-1f3a8.svg","artist_tone2":"1f9d1-1f3fc-200d-1f3a8.svg","artist_tone3":"1f9d1-1f3fd-200d-1f3a8.svg","artist_tone4":"1f9d1-1f3fe-200d-1f3a8.svg","artist_tone5":"1f9d1-1f3ff-200d-1f3a8.svg","asterisk":"2a-20e3.svg","astonished":"1f632.svg","astronaut":"1f9d1-200d-1f680.svg","astronaut_tone1":"1f9d1-1f3fb-200d-1f680.svg","astronaut_tone2":"1f9d1-1f3fc-200d-1f680.svg","astronaut_tone3":"1f9d1-1f3fd-200d-1f680.svg","astronaut_tone4":"1f9d1-1f3fe-200d-1f680.svg","astronaut_tone5":"1f9d1-1f3ff-200d-1f680.svg","athletic_shoe":"1f45f.svg","atm":"1f3e7.svg","atom":"269b.svg","auto_rickshaw":"1f6fa.svg","avocado":"1f951.svg","axe":"1fa93.svg","b":"1f171.svg","baby":"1f476.svg","baby_bottle":"1f37c.svg","baby_chick":"1f424.svg","baby_symbol":"1f6bc.svg","baby_tone1":"1f476-1f3fb.svg","baby_tone2":"1f476-1f3fc.svg","baby_tone3":"1f476-1f3fd.svg","baby_tone4":"1f476-1f3fe.svg","baby_tone5":"1f476-1f3ff.svg","back":"1f519.svg","bacon":"1f953.svg","badger":"1f9a1.svg","badminton":"1f3f8.svg","bagel":"1f96f.svg","baggage_claim":"1f6c4.svg","bald":"1f9b2.svg","ballet_shoes":"1fa70.svg","balloon":"1f388.svg","ballot_box":"1f5f3.svg","ballot_box_with_check":"2611.svg","bamboo":"1f38d.svg","banana":"1f34c.svg","bangbang":"203c.svg","banjo":"1fa95.svg","bank":"1f3e6.svg","bar_chart":"1f4ca.svg","barber":"1f488.svg","baseball":"26be.svg","basket":"1f9fa.svg","basketball":"1f3c0.svg","bat":"1f987.svg","bath":"1f6c0.svg","bath_tone1":"1f6c0-1f3fb.svg","bath_tone2":"1f6c0-1f3fc.svg","bath_tone3":"1f6c0-1f3fd.svg","bath_tone4":"1f6c0-1f3fe.svg","bath_tone5":"1f6c0-1f3ff.svg","bathtub":"1f6c1.svg","battery":"1f50b.svg","beach":"1f3d6.svg","beach_umbrella":"26f1.svg","beans":"1fad8.svg","bear":"1f43b.svg","bearded_person":"1f9d4.svg","bearded_person_tone1":"1f9d4-1f3fb.svg","bearded_person_tone2":"1f9d4-1f3fc.svg","bearded_person_tone3":"1f9d4-1f3fd.svg","bearded_person_tone4":"1f9d4-1f3fe.svg","bearded_person_tone5":"1f9d4-1f3ff.svg","beaver":"1f9ab.svg","bed":"1f6cf.svg","bee":"1f41d.svg","beer":"1f37a.svg","beers":"1f37b.svg","beetle":"1fab2.svg","beginner":"1f530.svg","bell":"1f514.svg","bell_pepper":"1fad1.svg","bellhop":"1f6ce.svg","bento":"1f371.svg","beverage_box":"1f9c3.svg","bike":"1f6b2.svg","bikini":"1f459.svg","billed_cap":"1f9e2.svg","biohazard":"2623.svg","bird":"1f426.svg","birthday":"1f382.svg","bison":"1f9ac.svg","biting_lip":"1fae6.svg","black_cat":"1f408-200d-2b1b.svg","black_circle":"26ab.svg","black_heart":"1f5a4.svg","black_joker":"1f0cf.svg","black_large_square":"2b1b.svg","black_medium_small_square":"25fe.svg","black_medium_square":"25fc.svg","black_nib":"2712.svg","black_small_square":"25aa.svg","black_square_button":"1f532.svg","blond-haired_man":"1f471-200d-2642-fe0f.svg","blond-haired_man_tone1":"1f471-1f3fb-200d-2642-fe0f.svg","blond-haired_man_tone2":"1f471-1f3fc-200d-2642-fe0f.svg","blond-haired_man_tone3":"1f471-1f3fd-200d-2642-fe0f.svg","blond-haired_man_tone4":"1f471-1f3fe-200d-2642-fe0f.svg","blond-haired_man_tone5":"1f471-1f3ff-200d-2642-fe0f.svg","blond-haired_woman":"1f471-200d-2640-fe0f.svg","blond-haired_woman_tone1":"1f471-1f3fb-200d-2640-fe0f.svg","blond-haired_woman_tone2":"1f471-1f3fc-200d-2640-fe0f.svg","blond-haired_woman_tone3":"1f471-1f3fd-200d-2640-fe0f.svg","blond-haired_woman_tone4":"1f471-1f3fe-200d-2640-fe0f.svg","blond-haired_woman_tone5":"1f471-1f3ff-200d-2640-fe0f.svg","blond_haired_person":"1f471.svg","blond_haired_person_tone1":"1f471-1f3fb.svg","blond_haired_person_tone2":"1f471-1f3fc.svg","blond_haired_person_tone3":"1f471-1f3fd.svg","blond_haired_person_tone4":"1f471-1f3fe.svg","blond_haired_person_tone5":"1f471-1f3ff.svg","blossom":"1f33c.svg","blowfish":"1f421.svg","blue_book":"1f4d8.svg","blue_car":"1f699.svg","blue_circle":"1f535.svg","blue_heart":"1f499.svg","blue_square":"1f7e6.svg","blueberries":"1fad0.svg","blush":"1f60a.svg","boar":"1f417.svg","bomb":"1f4a3.svg","bone":"1f9b4.svg","book":"1f4d6.svg","bookmark":"1f516.svg","bookmark_tabs":"1f4d1.svg","books":"1f4da.svg","boom":"1f4a5.svg","boomerang":"1fa83.svg","boot":"1f462.svg","bouquet":"1f490.svg","bow_and_arrow":"1f3f9.svg","bowl_with_spoon":"1f963.svg","bowling":"1f3b3.svg","boxing_glove":"1f94a.svg","boy":"1f466.svg","boy_tone1":"1f466-1f3fb.svg","boy_tone2":"1f466-1f3fc.svg","boy_tone3":"1f466-1f3fd.svg","boy_tone4":"1f466-1f3fe.svg","boy_tone5":"1f466-1f3ff.svg","brain":"1f9e0.svg","bread":"1f35e.svg","breast_feeding":"1f931.svg","breast_feeding_tone1":"1f931-1f3fb.svg","breast_feeding_tone2":"1f931-1f3fc.svg","breast_feeding_tone3":"1f931-1f3fd.svg","breast_feeding_tone4":"1f931-1f3fe.svg","breast_feeding_tone5":"1f931-1f3ff.svg","bricks":"1f9f1.svg","bridge_at_night":"1f309.svg","briefcase":"1f4bc.svg","briefs":"1fa72.svg","broccoli":"1f966.svg","broken_heart":"1f494.svg","broom":"1f9f9.svg","brown_circle":"1f7e4.svg","brown_heart":"1f90e.svg","brown_square":"1f7eb.svg","bubble_tea":"1f9cb.svg","bubbles":"1fae7.svg","bucket":"1faa3.svg","bug":"1f41b.svg","bulb":"1f4a1.svg","bullettrain_front":"1f685.svg","bullettrain_side":"1f684.svg","burrito":"1f32f.svg","bus":"1f68c.svg","busstop":"1f68f.svg","bust_in_silhouette":"1f464.svg","busts_in_silhouette":"1f465.svg","butter":"1f9c8.svg","butterfly":"1f98b.svg","cactus":"1f335.svg","cake":"1f370.svg","calendar":"1f4c6.svg","calendar_spiral":"1f5d3.svg","call_me":"1f919.svg","call_me_tone1":"1f919-1f3fb.svg","call_me_tone2":"1f919-1f3fc.svg","call_me_tone3":"1f919-1f3fd.svg","call_me_tone4":"1f919-1f3fe.svg","call_me_tone5":"1f919-1f3ff.svg","calling":"1f4f2.svg","camel":"1f42b.svg","camera":"1f4f7.svg","camera_with_flash":"1f4f8.svg","camping":"1f3d5.svg","cancer":"264b.svg","candle":"1f56f.svg","candy":"1f36c.svg","canned_food":"1f96b.svg","canoe":"1f6f6.svg","capital_abcd":"1f520.svg","capricorn":"2651.svg","card_box":"1f5c3.svg","card_index":"1f4c7.svg","carousel_horse":"1f3a0.svg","carpentry_saw":"1fa9a.svg","carrot":"1f955.svg","cat2":"1f408.svg","cat":"1f431.svg","cd":"1f4bf.svg","chains":"26d3.svg","chair":"1fa91.svg","champagne":"1f37e.svg","champagne_glass":"1f942.svg","chart":"1f4b9.svg","chart_with_downwards_trend":"1f4c9.svg","chart_with_upwards_trend":"1f4c8.svg","checkered_flag":"1f3c1.svg","cheese":"1f9c0.svg","cherries":"1f352.svg","cherry_blossom":"1f338.svg","chess_pawn":"265f.svg","chestnut":"1f330.svg","chicken":"1f414.svg","child":"1f9d2.svg","child_tone1":"1f9d2-1f3fb.svg","child_tone2":"1f9d2-1f3fc.svg","child_tone3":"1f9d2-1f3fd.svg","child_tone4":"1f9d2-1f3fe.svg","child_tone5":"1f9d2-1f3ff.svg","children_crossing":"1f6b8.svg","chipmunk":"1f43f.svg","chocolate_bar":"1f36b.svg","chopsticks":"1f962.svg","christmas_tree":"1f384.svg","church":"26ea.svg","cinema":"1f3a6.svg","circus_tent":"1f3aa.svg","city_dusk":"1f306.svg","city_sunset":"1f307.svg","cityscape":"1f3d9.svg","cl":"1f191.svg","clap":"1f44f.svg","clap_tone1":"1f44f-1f3fb.svg","clap_tone2":"1f44f-1f3fc.svg","clap_tone3":"1f44f-1f3fd.svg","clap_tone4":"1f44f-1f3fe.svg","clap_tone5":"1f44f-1f3ff.svg","clapper":"1f3ac.svg","classical_building":"1f3db.svg","clipboard":"1f4cb.svg","clock1030":"1f565.svg","clock10":"1f559.svg","clock1130":"1f566.svg","clock11":"1f55a.svg","clock1230":"1f567.svg","clock12":"1f55b.svg","clock130":"1f55c.svg","clock1":"1f550.svg","clock230":"1f55d.svg","clock2":"1f551.svg","clock330":"1f55e.svg","clock3":"1f552.svg","clock430":"1f55f.svg","clock4":"1f553.svg","clock530":"1f560.svg","clock5":"1f554.svg","clock630":"1f561.svg","clock6":"1f555.svg","clock730":"1f562.svg","clock7":"1f556.svg","clock830":"1f563.svg","clock8":"1f557.svg","clock930":"1f564.svg","clock9":"1f558.svg","clock":"1f570.svg","closed_book":"1f4d5.svg","closed_lock_with_key":"1f510.svg","closed_umbrella":"1f302.svg","cloud":"2601.svg","cloud_lightning":"1f329.svg","cloud_rain":"1f327.svg","cloud_snow":"1f328.svg","cloud_tornado":"1f32a.svg","clown":"1f921.svg","clubs":"2663.svg","coat":"1f9e5.svg","cockroach":"1fab3.svg","cocktail":"1f378.svg","coconut":"1f965.svg","coffee":"2615.svg","coffin":"26b0.svg","coin":"1fa99.svg","cold_face":"1f976.svg","cold_sweat":"1f630.svg","comet":"2604.svg","compass":"1f9ed.svg","compression":"1f5dc.svg","computer":"1f4bb.svg","confetti_ball":"1f38a.svg","confounded":"1f616.svg","confused":"1f615.svg","congratulations":"3297.svg","construction":"1f6a7.svg","construction_site":"1f3d7.svg","construction_worker":"1f477.svg","construction_worker_tone1":"1f477-1f3fb.svg","construction_worker_tone2":"1f477-1f3fc.svg","construction_worker_tone3":"1f477-1f3fd.svg","construction_worker_tone4":"1f477-1f3fe.svg","construction_worker_tone5":"1f477-1f3ff.svg","control_knobs":"1f39b.svg","convenience_store":"1f3ea.svg","cook":"1f9d1-200d-1f373.svg","cook_tone1":"1f9d1-1f3fb-200d-1f373.svg","cook_tone2":"1f9d1-1f3fc-200d-1f373.svg","cook_tone3":"1f9d1-1f3fd-200d-1f373.svg","cook_tone4":"1f9d1-1f3fe-200d-1f373.svg","cook_tone5":"1f9d1-1f3ff-200d-1f373.svg","cookie":"1f36a.svg","cooking":"1f373.svg","cool":"1f192.svg","copyright":"a9.svg","coral":"1fab8.svg","corn":"1f33d.svg","couch":"1f6cb.svg","couple":"1f46b.svg","couple_mm":"1f468-200d-2764-fe0f-200d-1f468.svg","couple_with_heart":"1f491.svg","couple_with_heart_man_man_tone1":"1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fb.svg","couple_with_heart_man_man_tone1_tone2":"1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fc.svg","couple_with_heart_man_man_tone1_tone3":"1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fd.svg","couple_with_heart_man_man_tone1_tone4":"1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fe.svg","couple_with_heart_man_man_tone1_tone5":"1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3ff.svg","couple_with_heart_man_man_tone2":"1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fc.svg","couple_with_heart_man_man_tone2_tone1":"1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fb.svg","couple_with_heart_man_man_tone2_tone3":"1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fd.svg","couple_with_heart_man_man_tone2_tone4":"1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fe.svg","couple_with_heart_man_man_tone2_tone5":"1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3ff.svg","couple_with_heart_man_man_tone3":"1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fd.svg","couple_with_heart_man_man_tone3_tone1":"1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fb.svg","couple_with_heart_man_man_tone3_tone2":"1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fc.svg","couple_with_heart_man_man_tone3_tone4":"1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fe.svg","couple_with_heart_man_man_tone3_tone5":"1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3ff.svg","couple_with_heart_man_man_tone4":"1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fe.svg","couple_with_heart_man_man_tone4_tone1":"1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fb.svg","couple_with_heart_man_man_tone4_tone2":"1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fc.svg","couple_with_heart_man_man_tone4_tone3":"1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fd.svg","couple_with_heart_man_man_tone4_tone5":"1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3ff.svg","couple_with_heart_man_man_tone5":"1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3ff.svg","couple_with_heart_man_man_tone5_tone1":"1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fb.svg","couple_with_heart_man_man_tone5_tone2":"1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fc.svg","couple_with_heart_man_man_tone5_tone3":"1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fd.svg","couple_with_heart_man_man_tone5_tone4":"1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fe.svg","couple_with_heart_person_person_tone1_tone2":"1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fc.svg","couple_with_heart_person_person_tone1_tone3":"1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fd.svg","couple_with_heart_person_person_tone1_tone4":"1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fe.svg","couple_with_heart_person_person_tone1_tone5":"1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3ff.svg","couple_with_heart_person_person_tone2_tone1":"1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fb.svg","couple_with_heart_person_person_tone2_tone3":"1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fd.svg","couple_with_heart_person_person_tone2_tone4":"1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fe.svg","couple_with_heart_person_person_tone2_tone5":"1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3ff.svg","couple_with_heart_person_person_tone3_tone1":"1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fb.svg","couple_with_heart_person_person_tone3_tone2":"1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fc.svg","couple_with_heart_person_person_tone3_tone4":"1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fe.svg","couple_with_heart_person_person_tone3_tone5":"1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3ff.svg","couple_with_heart_person_person_tone4_tone1":"1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fb.svg","couple_with_heart_person_person_tone4_tone2":"1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fc.svg","couple_with_heart_person_person_tone4_tone3":"1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fd.svg","couple_with_heart_person_person_tone4_tone5":"1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3ff.svg","couple_with_heart_person_person_tone5_tone1":"1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fb.svg","couple_with_heart_person_person_tone5_tone2":"1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fc.svg","couple_with_heart_person_person_tone5_tone3":"1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fd.svg","couple_with_heart_person_person_tone5_tone4":"1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fe.svg","couple_with_heart_tone1":"1f491-1f3fb.svg","couple_with_heart_tone2":"1f491-1f3fc.svg","couple_with_heart_tone3":"1f491-1f3fd.svg","couple_with_heart_tone4":"1f491-1f3fe.svg","couple_with_heart_tone5":"1f491-1f3ff.svg","couple_with_heart_woman_man":"1f469-200d-2764-fe0f-200d-1f468.svg","couple_with_heart_woman_man_tone1":"1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fb.svg","couple_with_heart_woman_man_tone1_tone2":"1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fc.svg","couple_with_heart_woman_man_tone1_tone3":"1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fd.svg","couple_with_heart_woman_man_tone1_tone4":"1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fe.svg","couple_with_heart_woman_man_tone1_tone5":"1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3ff.svg","couple_with_heart_woman_man_tone2":"1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fc.svg","couple_with_heart_woman_man_tone2_tone1":"1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fb.svg","couple_with_heart_woman_man_tone2_tone3":"1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fd.svg","couple_with_heart_woman_man_tone2_tone4":"1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fe.svg","couple_with_heart_woman_man_tone2_tone5":"1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3ff.svg","couple_with_heart_woman_man_tone3":"1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fd.svg","couple_with_heart_woman_man_tone3_tone1":"1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fb.svg","couple_with_heart_woman_man_tone3_tone2":"1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fc.svg","couple_with_heart_woman_man_tone3_tone4":"1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fe.svg","couple_with_heart_woman_man_tone3_tone5":"1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3ff.svg","couple_with_heart_woman_man_tone4":"1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fe.svg","couple_with_heart_woman_man_tone4_tone1":"1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fb.svg","couple_with_heart_woman_man_tone4_tone2":"1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fc.svg","couple_with_heart_woman_man_tone4_tone3":"1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fd.svg","couple_with_heart_woman_man_tone4_tone5":"1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3ff.svg","couple_with_heart_woman_man_tone5":"1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3ff.svg","couple_with_heart_woman_man_tone5_tone1":"1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fb.svg","couple_with_heart_woman_man_tone5_tone2":"1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fc.svg","couple_with_heart_woman_man_tone5_tone3":"1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fd.svg","couple_with_heart_woman_man_tone5_tone4":"1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fe.svg","couple_with_heart_woman_woman_tone1":"1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fb.svg","couple_with_heart_woman_woman_tone1_tone2":"1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fc.svg","couple_with_heart_woman_woman_tone1_tone3":"1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fd.svg","couple_with_heart_woman_woman_tone1_tone4":"1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fe.svg","couple_with_heart_woman_woman_tone1_tone5":"1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3ff.svg","couple_with_heart_woman_woman_tone2":"1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fc.svg","couple_with_heart_woman_woman_tone2_tone1":"1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fb.svg","couple_with_heart_woman_woman_tone2_tone3":"1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fd.svg","couple_with_heart_woman_woman_tone2_tone4":"1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fe.svg","couple_with_heart_woman_woman_tone2_tone5":"1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3ff.svg","couple_with_heart_woman_woman_tone3":"1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fd.svg","couple_with_heart_woman_woman_tone3_tone1":"1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fb.svg","couple_with_heart_woman_woman_tone3_tone2":"1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fc.svg","couple_with_heart_woman_woman_tone3_tone4":"1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fe.svg","couple_with_heart_woman_woman_tone3_tone5":"1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3ff.svg","couple_with_heart_woman_woman_tone4":"1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fe.svg","couple_with_heart_woman_woman_tone4_tone1":"1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fb.svg","couple_with_heart_woman_woman_tone4_tone2":"1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fc.svg","couple_with_heart_woman_woman_tone4_tone3":"1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fd.svg","couple_with_heart_woman_woman_tone4_tone5":"1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3ff.svg","couple_with_heart_woman_woman_tone5":"1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3ff.svg","couple_with_heart_woman_woman_tone5_tone1":"1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fb.svg","couple_with_heart_woman_woman_tone5_tone2":"1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fc.svg","couple_with_heart_woman_woman_tone5_tone3":"1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fd.svg","couple_with_heart_woman_woman_tone5_tone4":"1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fe.svg","couple_ww":"1f469-200d-2764-fe0f-200d-1f469.svg","couplekiss":"1f48f.svg","cow2":"1f404.svg","cow":"1f42e.svg","cowboy":"1f920.svg","crab":"1f980.svg","crayon":"1f58d.svg","credit_card":"1f4b3.svg","crescent_moon":"1f319.svg","cricket":"1f997.svg","cricket_game":"1f3cf.svg","crocodile":"1f40a.svg","croissant":"1f950.svg","cross":"271d.svg","crossed_flags":"1f38c.svg","crossed_swords":"2694.svg","crown":"1f451.svg","cruise_ship":"1f6f3.svg","crutch":"1fa7c.svg","cry":"1f622.svg","crying_cat_face":"1f63f.svg","crystal_ball":"1f52e.svg","cucumber":"1f952.svg","cup_with_straw":"1f964.svg","cupcake":"1f9c1.svg","cupid":"1f498.svg","curling_stone":"1f94c.svg","curly_haired":"1f9b1.svg","curly_loop":"27b0.svg","currency_exchange":"1f4b1.svg","curry":"1f35b.svg","custard":"1f36e.svg","customs":"1f6c3.svg","cut_of_meat":"1f969.svg","cyclone":"1f300.svg","dagger":"1f5e1.svg","dancer":"1f483.svg","dancer_tone1":"1f483-1f3fb.svg","dancer_tone2":"1f483-1f3fc.svg","dancer_tone3":"1f483-1f3fd.svg","dancer_tone4":"1f483-1f3fe.svg","dancer_tone5":"1f483-1f3ff.svg","dango":"1f361.svg","dark_sunglasses":"1f576.svg","dart":"1f3af.svg","dash":"1f4a8.svg","date":"1f4c5.svg","deaf_man":"1f9cf-200d-2642-fe0f.svg","deaf_man_tone1":"1f9cf-1f3fb-200d-2642-fe0f.svg","deaf_man_tone2":"1f9cf-1f3fc-200d-2642-fe0f.svg","deaf_man_tone3":"1f9cf-1f3fd-200d-2642-fe0f.svg","deaf_man_tone4":"1f9cf-1f3fe-200d-2642-fe0f.svg","deaf_man_tone5":"1f9cf-1f3ff-200d-2642-fe0f.svg","deaf_person":"1f9cf.svg","deaf_person_tone1":"1f9cf-1f3fb.svg","deaf_person_tone2":"1f9cf-1f3fc.svg","deaf_person_tone3":"1f9cf-1f3fd.svg","deaf_person_tone4":"1f9cf-1f3fe.svg","deaf_person_tone5":"1f9cf-1f3ff.svg","deaf_woman":"1f9cf-200d-2640-fe0f.svg","deaf_woman_tone1":"1f9cf-1f3fb-200d-2640-fe0f.svg","deaf_woman_tone2":"1f9cf-1f3fc-200d-2640-fe0f.svg","deaf_woman_tone3":"1f9cf-1f3fd-200d-2640-fe0f.svg","deaf_woman_tone4":"1f9cf-1f3fe-200d-2640-fe0f.svg","deaf_woman_tone5":"1f9cf-1f3ff-200d-2640-fe0f.svg","deciduous_tree":"1f333.svg","deer":"1f98c.svg","department_store":"1f3ec.svg","desert":"1f3dc.svg","desktop":"1f5a5.svg","detective":"1f575.svg","detective_tone1":"1f575-1f3fb.svg","detective_tone2":"1f575-1f3fc.svg","detective_tone3":"1f575-1f3fd.svg","detective_tone4":"1f575-1f3fe.svg","detective_tone5":"1f575-1f3ff.svg","diamond_shape_with_a_dot_inside":"1f4a0.svg","diamonds":"2666.svg","disappointed":"1f61e.svg","disappointed_relieved":"1f625.svg","disguised_face":"1f978.svg","dividers":"1f5c2.svg","diving_mask":"1f93f.svg","diya_lamp":"1fa94.svg","dizzy":"1f4ab.svg","dizzy_face":"1f635.svg","dna":"1f9ec.svg","do_not_litter":"1f6af.svg","dodo":"1f9a4.svg","dog2":"1f415.svg","dog":"1f436.svg","dollar":"1f4b5.svg","dolls":"1f38e.svg","dolphin":"1f42c.svg","door":"1f6aa.svg","dotted_line_face":"1fae5.svg","doughnut":"1f369.svg","dove":"1f54a.svg","dragon":"1f409.svg","dragon_face":"1f432.svg","dress":"1f457.svg","dromedary_camel":"1f42a.svg","drooling_face":"1f924.svg","drop_of_blood":"1fa78.svg","droplet":"1f4a7.svg","drum":"1f941.svg","duck":"1f986.svg","dumpling":"1f95f.svg","dvd":"1f4c0.svg","e-mail":"1f4e7.svg","eagle":"1f985.svg","ear":"1f442.svg","ear_of_rice":"1f33e.svg","ear_tone1":"1f442-1f3fb.svg","ear_tone2":"1f442-1f3fc.svg","ear_tone3":"1f442-1f3fd.svg","ear_tone4":"1f442-1f3fe.svg","ear_tone5":"1f442-1f3ff.svg","ear_with_hearing_aid":"1f9bb.svg","ear_with_hearing_aid_tone1":"1f9bb-1f3fb.svg","ear_with_hearing_aid_tone2":"1f9bb-1f3fc.svg","ear_with_hearing_aid_tone3":"1f9bb-1f3fd.svg","ear_with_hearing_aid_tone4":"1f9bb-1f3fe.svg","ear_with_hearing_aid_tone5":"1f9bb-1f3ff.svg","earth_africa":"1f30d.svg","earth_americas":"1f30e.svg","earth_asia":"1f30f.svg","egg":"1f95a.svg","eggplant":"1f346.svg","eight":"38-20e3.svg","eight_pointed_black_star":"2734.svg","eight_spoked_asterisk":"2733.svg","eject":"23cf.svg","electric_plug":"1f50c.svg","elephant":"1f418.svg","elevator":"1f6d7.svg","elf":"1f9dd.svg","elf_tone1":"1f9dd-1f3fb.svg","elf_tone2":"1f9dd-1f3fc.svg","elf_tone3":"1f9dd-1f3fd.svg","elf_tone4":"1f9dd-1f3fe.svg","elf_tone5":"1f9dd-1f3ff.svg","empty_nest":"1fab9.svg","end":"1f51a.svg","england":"1f3f4-e0067-e0062-e0065-e006e-e0067-e007f.svg","envelope":"2709.svg","envelope_with_arrow":"1f4e9.svg","euro":"1f4b6.svg","european_castle":"1f3f0.svg","european_post_office":"1f3e4.svg","evergreen_tree":"1f332.svg","exclamation":"2757.svg","exploding_head":"1f92f.svg","expressionless":"1f611.svg","eye":"1f441.svg","eye_in_speech_bubble":"1f441-200d-1f5e8.svg","eyeglasses":"1f453.svg","eyes":"1f440.svg","face_exhaling":"1f62e-200d-1f4a8.svg","face_holding_back_tears":"1f979.svg","face_in_clouds":"1f636-200d-1f32b-fe0f.svg","face_vomiting":"1f92e.svg","face_with_diagonal_mouth":"1fae4.svg","face_with_hand_over_mouth":"1f92d.svg","face_with_monocle":"1f9d0.svg","face_with_open_eyes_and_hand_over_mouth":"1fae2.svg","face_with_peeking_eye":"1fae3.svg","face_with_raised_eyebrow":"1f928.svg","face_with_spiral_eyes":"1f635-200d-1f4ab.svg","face_with_symbols_over_mouth":"1f92c.svg","factory":"1f3ed.svg","factory_worker":"1f9d1-200d-1f3ed.svg","factory_worker_tone1":"1f9d1-1f3fb-200d-1f3ed.svg","factory_worker_tone2":"1f9d1-1f3fc-200d-1f3ed.svg","factory_worker_tone3":"1f9d1-1f3fd-200d-1f3ed.svg","factory_worker_tone4":"1f9d1-1f3fe-200d-1f3ed.svg","factory_worker_tone5":"1f9d1-1f3ff-200d-1f3ed.svg","fairy":"1f9da.svg","fairy_tone1":"1f9da-1f3fb.svg","fairy_tone2":"1f9da-1f3fc.svg","fairy_tone3":"1f9da-1f3fd.svg","fairy_tone4":"1f9da-1f3fe.svg","fairy_tone5":"1f9da-1f3ff.svg","falafel":"1f9c6.svg","fallen_leaf":"1f342.svg","family":"1f46a.svg","family_man_boy":"1f468-200d-1f466.svg","family_man_boy_boy":"1f468-200d-1f466-200d-1f466.svg","family_man_girl":"1f468-200d-1f467.svg","family_man_girl_boy":"1f468-200d-1f467-200d-1f466.svg","family_man_girl_girl":"1f468-200d-1f467-200d-1f467.svg","family_man_woman_boy":"1f468-200d-1f469-200d-1f466.svg","family_mmb":"1f468-200d-1f468-200d-1f466.svg","family_mmbb":"1f468-200d-1f468-200d-1f466-200d-1f466.svg","family_mmg":"1f468-200d-1f468-200d-1f467.svg","family_mmgb":"1f468-200d-1f468-200d-1f467-200d-1f466.svg","family_mmgg":"1f468-200d-1f468-200d-1f467-200d-1f467.svg","family_mwbb":"1f468-200d-1f469-200d-1f466-200d-1f466.svg","family_mwg":"1f468-200d-1f469-200d-1f467.svg","family_mwgb":"1f468-200d-1f469-200d-1f467-200d-1f466.svg","family_mwgg":"1f468-200d-1f469-200d-1f467-200d-1f467.svg","family_woman_boy":"1f469-200d-1f466.svg","family_woman_boy_boy":"1f469-200d-1f466-200d-1f466.svg","family_woman_girl":"1f469-200d-1f467.svg","family_woman_girl_boy":"1f469-200d-1f467-200d-1f466.svg","family_woman_girl_girl":"1f469-200d-1f467-200d-1f467.svg","family_wwb":"1f469-200d-1f469-200d-1f466.svg","family_wwbb":"1f469-200d-1f469-200d-1f466-200d-1f466.svg","family_wwg":"1f469-200d-1f469-200d-1f467.svg","family_wwgb":"1f469-200d-1f469-200d-1f467-200d-1f466.svg","family_wwgg":"1f469-200d-1f469-200d-1f467-200d-1f467.svg","farmer":"1f9d1-200d-1f33e.svg","farmer_tone1":"1f9d1-1f3fb-200d-1f33e.svg","farmer_tone2":"1f9d1-1f3fc-200d-1f33e.svg","farmer_tone3":"1f9d1-1f3fd-200d-1f33e.svg","farmer_tone4":"1f9d1-1f3fe-200d-1f33e.svg","farmer_tone5":"1f9d1-1f3ff-200d-1f33e.svg","fast_forward":"23e9.svg","fax":"1f4e0.svg","fearful":"1f628.svg","feather":"1fab6.svg","feet":"1f43e.svg","female_sign":"2640.svg","ferris_wheel":"1f3a1.svg","ferry":"26f4.svg","field_hockey":"1f3d1.svg","file_cabinet":"1f5c4.svg","file_folder":"1f4c1.svg","film_frames":"1f39e.svg","fingers_crossed":"1f91e.svg","fingers_crossed_tone1":"1f91e-1f3fb.svg","fingers_crossed_tone2":"1f91e-1f3fc.svg","fingers_crossed_tone3":"1f91e-1f3fd.svg","fingers_crossed_tone4":"1f91e-1f3fe.svg","fingers_crossed_tone5":"1f91e-1f3ff.svg","fire":"1f525.svg","fire_engine":"1f692.svg","fire_extinguisher":"1f9ef.svg","firecracker":"1f9e8.svg","firefighter":"1f9d1-200d-1f692.svg","firefighter_tone1":"1f9d1-1f3fb-200d-1f692.svg","firefighter_tone2":"1f9d1-1f3fc-200d-1f692.svg","firefighter_tone3":"1f9d1-1f3fd-200d-1f692.svg","firefighter_tone4":"1f9d1-1f3fe-200d-1f692.svg","firefighter_tone5":"1f9d1-1f3ff-200d-1f692.svg","fireworks":"1f386.svg","first_place":"1f947.svg","first_quarter_moon":"1f313.svg","first_quarter_moon_with_face":"1f31b.svg","fish":"1f41f.svg","fish_cake":"1f365.svg","fishing_pole_and_fish":"1f3a3.svg","fist":"270a.svg","fist_tone1":"270a-1f3fb.svg","fist_tone2":"270a-1f3fc.svg","fist_tone3":"270a-1f3fd.svg","fist_tone4":"270a-1f3fe.svg","fist_tone5":"270a-1f3ff.svg","five":"35-20e3.svg","flag_ac":"1f1e6-1f1e8.svg","flag_ad":"1f1e6-1f1e9.svg","flag_ae":"1f1e6-1f1ea.svg","flag_af":"1f1e6-1f1eb.svg","flag_ag":"1f1e6-1f1ec.svg","flag_ai":"1f1e6-1f1ee.svg","flag_al":"1f1e6-1f1f1.svg","flag_am":"1f1e6-1f1f2.svg","flag_ao":"1f1e6-1f1f4.svg","flag_aq":"1f1e6-1f1f6.svg","flag_ar":"1f1e6-1f1f7.svg","flag_as":"1f1e6-1f1f8.svg","flag_at":"1f1e6-1f1f9.svg","flag_au":"1f1e6-1f1fa.svg","flag_aw":"1f1e6-1f1fc.svg","flag_ax":"1f1e6-1f1fd.svg","flag_az":"1f1e6-1f1ff.svg","flag_ba":"1f1e7-1f1e6.svg","flag_bb":"1f1e7-1f1e7.svg","flag_bd":"1f1e7-1f1e9.svg","flag_be":"1f1e7-1f1ea.svg","flag_bf":"1f1e7-1f1eb.svg","flag_bg":"1f1e7-1f1ec.svg","flag_bh":"1f1e7-1f1ed.svg","flag_bi":"1f1e7-1f1ee.svg","flag_bj":"1f1e7-1f1ef.svg","flag_bl":"1f1e7-1f1f1.svg","flag_black":"1f3f4.svg","flag_bm":"1f1e7-1f1f2.svg","flag_bn":"1f1e7-1f1f3.svg","flag_bo":"1f1e7-1f1f4.svg","flag_bq":"1f1e7-1f1f6.svg","flag_br":"1f1e7-1f1f7.svg","flag_bs":"1f1e7-1f1f8.svg","flag_bt":"1f1e7-1f1f9.svg","flag_bv":"1f1e7-1f1fb.svg","flag_bw":"1f1e7-1f1fc.svg","flag_by":"1f1e7-1f1fe.svg","flag_bz":"1f1e7-1f1ff.svg","flag_ca":"1f1e8-1f1e6.svg","flag_cc":"1f1e8-1f1e8.svg","flag_cd":"1f1e8-1f1e9.svg","flag_cf":"1f1e8-1f1eb.svg","flag_cg":"1f1e8-1f1ec.svg","flag_ch":"1f1e8-1f1ed.svg","flag_ci":"1f1e8-1f1ee.svg","flag_ck":"1f1e8-1f1f0.svg","flag_cl":"1f1e8-1f1f1.svg","flag_cm":"1f1e8-1f1f2.svg","flag_cn":"1f1e8-1f1f3.svg","flag_co":"1f1e8-1f1f4.svg","flag_cp":"1f1e8-1f1f5.svg","flag_cr":"1f1e8-1f1f7.svg","flag_cu":"1f1e8-1f1fa.svg","flag_cv":"1f1e8-1f1fb.svg","flag_cw":"1f1e8-1f1fc.svg","flag_cx":"1f1e8-1f1fd.svg","flag_cy":"1f1e8-1f1fe.svg","flag_cz":"1f1e8-1f1ff.svg","flag_de":"1f1e9-1f1ea.svg","flag_dg":"1f1e9-1f1ec.svg","flag_dj":"1f1e9-1f1ef.svg","flag_dk":"1f1e9-1f1f0.svg","flag_dm":"1f1e9-1f1f2.svg","flag_do":"1f1e9-1f1f4.svg","flag_dz":"1f1e9-1f1ff.svg","flag_ea":"1f1ea-1f1e6.svg","flag_ec":"1f1ea-1f1e8.svg","flag_ee":"1f1ea-1f1ea.svg","flag_eg":"1f1ea-1f1ec.svg","flag_eh":"1f1ea-1f1ed.svg","flag_er":"1f1ea-1f1f7.svg","flag_es":"1f1ea-1f1f8.svg","flag_et":"1f1ea-1f1f9.svg","flag_eu":"1f1ea-1f1fa.svg","flag_fi":"1f1eb-1f1ee.svg","flag_fj":"1f1eb-1f1ef.svg","flag_fk":"1f1eb-1f1f0.svg","flag_fm":"1f1eb-1f1f2.svg","flag_fo":"1f1eb-1f1f4.svg","flag_fr":"1f1eb-1f1f7.svg","flag_ga":"1f1ec-1f1e6.svg","flag_gb":"1f1ec-1f1e7.svg","flag_gd":"1f1ec-1f1e9.svg","flag_ge":"1f1ec-1f1ea.svg","flag_gf":"1f1ec-1f1eb.svg","flag_gg":"1f1ec-1f1ec.svg","flag_gh":"1f1ec-1f1ed.svg","flag_gi":"1f1ec-1f1ee.svg","flag_gl":"1f1ec-1f1f1.svg","flag_gm":"1f1ec-1f1f2.svg","flag_gn":"1f1ec-1f1f3.svg","flag_gp":"1f1ec-1f1f5.svg","flag_gq":"1f1ec-1f1f6.svg","flag_gr":"1f1ec-1f1f7.svg","flag_gs":"1f1ec-1f1f8.svg","flag_gt":"1f1ec-1f1f9.svg","flag_gu":"1f1ec-1f1fa.svg","flag_gw":"1f1ec-1f1fc.svg","flag_gy":"1f1ec-1f1fe.svg","flag_hk":"1f1ed-1f1f0.svg","flag_hm":"1f1ed-1f1f2.svg","flag_hn":"1f1ed-1f1f3.svg","flag_hr":"1f1ed-1f1f7.svg","flag_ht":"1f1ed-1f1f9.svg","flag_hu":"1f1ed-1f1fa.svg","flag_ic":"1f1ee-1f1e8.svg","flag_id":"1f1ee-1f1e9.svg","flag_ie":"1f1ee-1f1ea.svg","flag_il":"1f1ee-1f1f1.svg","flag_im":"1f1ee-1f1f2.svg","flag_in":"1f1ee-1f1f3.svg","flag_io":"1f1ee-1f1f4.svg","flag_iq":"1f1ee-1f1f6.svg","flag_ir":"1f1ee-1f1f7.svg","flag_is":"1f1ee-1f1f8.svg","flag_it":"1f1ee-1f1f9.svg","flag_je":"1f1ef-1f1ea.svg","flag_jm":"1f1ef-1f1f2.svg","flag_jo":"1f1ef-1f1f4.svg","flag_jp":"1f1ef-1f1f5.svg","flag_ke":"1f1f0-1f1ea.svg","flag_kg":"1f1f0-1f1ec.svg","flag_kh":"1f1f0-1f1ed.svg","flag_ki":"1f1f0-1f1ee.svg","flag_km":"1f1f0-1f1f2.svg","flag_kn":"1f1f0-1f1f3.svg","flag_kp":"1f1f0-1f1f5.svg","flag_kr":"1f1f0-1f1f7.svg","flag_kw":"1f1f0-1f1fc.svg","flag_ky":"1f1f0-1f1fe.svg","flag_kz":"1f1f0-1f1ff.svg","flag_la":"1f1f1-1f1e6.svg","flag_lb":"1f1f1-1f1e7.svg","flag_lc":"1f1f1-1f1e8.svg","flag_li":"1f1f1-1f1ee.svg","flag_lk":"1f1f1-1f1f0.svg","flag_lr":"1f1f1-1f1f7.svg","flag_ls":"1f1f1-1f1f8.svg","flag_lt":"1f1f1-1f1f9.svg","flag_lu":"1f1f1-1f1fa.svg","flag_lv":"1f1f1-1f1fb.svg","flag_ly":"1f1f1-1f1fe.svg","flag_ma":"1f1f2-1f1e6.svg","flag_mc":"1f1f2-1f1e8.svg","flag_md":"1f1f2-1f1e9.svg","flag_me":"1f1f2-1f1ea.svg","flag_mf":"1f1f2-1f1eb.svg","flag_mg":"1f1f2-1f1ec.svg","flag_mh":"1f1f2-1f1ed.svg","flag_mk":"1f1f2-1f1f0.svg","flag_ml":"1f1f2-1f1f1.svg","flag_mm":"1f1f2-1f1f2.svg","flag_mn":"1f1f2-1f1f3.svg","flag_mo":"1f1f2-1f1f4.svg","flag_mp":"1f1f2-1f1f5.svg","flag_mq":"1f1f2-1f1f6.svg","flag_mr":"1f1f2-1f1f7.svg","flag_ms":"1f1f2-1f1f8.svg","flag_mt":"1f1f2-1f1f9.svg","flag_mu":"1f1f2-1f1fa.svg","flag_mv":"1f1f2-1f1fb.svg","flag_mw":"1f1f2-1f1fc.svg","flag_mx":"1f1f2-1f1fd.svg","flag_my":"1f1f2-1f1fe.svg","flag_mz":"1f1f2-1f1ff.svg","flag_na":"1f1f3-1f1e6.svg","flag_nc":"1f1f3-1f1e8.svg","flag_ne":"1f1f3-1f1ea.svg","flag_nf":"1f1f3-1f1eb.svg","flag_ng":"1f1f3-1f1ec.svg","flag_ni":"1f1f3-1f1ee.svg","flag_nl":"1f1f3-1f1f1.svg","flag_no":"1f1f3-1f1f4.svg","flag_np":"1f1f3-1f1f5.svg","flag_nr":"1f1f3-1f1f7.svg","flag_nu":"1f1f3-1f1fa.svg","flag_nz":"1f1f3-1f1ff.svg","flag_om":"1f1f4-1f1f2.svg","flag_pa":"1f1f5-1f1e6.svg","flag_pe":"1f1f5-1f1ea.svg","flag_pf":"1f1f5-1f1eb.svg","flag_pg":"1f1f5-1f1ec.svg","flag_ph":"1f1f5-1f1ed.svg","flag_pk":"1f1f5-1f1f0.svg","flag_pl":"1f1f5-1f1f1.svg","flag_pm":"1f1f5-1f1f2.svg","flag_pn":"1f1f5-1f1f3.svg","flag_pr":"1f1f5-1f1f7.svg","flag_ps":"1f1f5-1f1f8.svg","flag_pt":"1f1f5-1f1f9.svg","flag_pw":"1f1f5-1f1fc.svg","flag_py":"1f1f5-1f1fe.svg","flag_qa":"1f1f6-1f1e6.svg","flag_re":"1f1f7-1f1ea.svg","flag_ro":"1f1f7-1f1f4.svg","flag_rs":"1f1f7-1f1f8.svg","flag_ru":"1f1f7-1f1fa.svg","flag_rw":"1f1f7-1f1fc.svg","flag_sa":"1f1f8-1f1e6.svg","flag_sb":"1f1f8-1f1e7.svg","flag_sc":"1f1f8-1f1e8.svg","flag_sd":"1f1f8-1f1e9.svg","flag_se":"1f1f8-1f1ea.svg","flag_sg":"1f1f8-1f1ec.svg","flag_sh":"1f1f8-1f1ed.svg","flag_si":"1f1f8-1f1ee.svg","flag_sj":"1f1f8-1f1ef.svg","flag_sk":"1f1f8-1f1f0.svg","flag_sl":"1f1f8-1f1f1.svg","flag_sm":"1f1f8-1f1f2.svg","flag_sn":"1f1f8-1f1f3.svg","flag_so":"1f1f8-1f1f4.svg","flag_sr":"1f1f8-1f1f7.svg","flag_ss":"1f1f8-1f1f8.svg","flag_st":"1f1f8-1f1f9.svg","flag_sv":"1f1f8-1f1fb.svg","flag_sx":"1f1f8-1f1fd.svg","flag_sy":"1f1f8-1f1fe.svg","flag_sz":"1f1f8-1f1ff.svg","flag_ta":"1f1f9-1f1e6.svg","flag_tc":"1f1f9-1f1e8.svg","flag_td":"1f1f9-1f1e9.svg","flag_tf":"1f1f9-1f1eb.svg","flag_tg":"1f1f9-1f1ec.svg","flag_th":"1f1f9-1f1ed.svg","flag_tj":"1f1f9-1f1ef.svg","flag_tk":"1f1f9-1f1f0.svg","flag_tl":"1f1f9-1f1f1.svg","flag_tm":"1f1f9-1f1f2.svg","flag_tn":"1f1f9-1f1f3.svg","flag_to":"1f1f9-1f1f4.svg","flag_tr":"1f1f9-1f1f7.svg","flag_tt":"1f1f9-1f1f9.svg","flag_tv":"1f1f9-1f1fb.svg","flag_tw":"1f1f9-1f1fc.svg","flag_tz":"1f1f9-1f1ff.svg","flag_ua":"1f1fa-1f1e6.svg","flag_ug":"1f1fa-1f1ec.svg","flag_um":"1f1fa-1f1f2.svg","flag_us":"1f1fa-1f1f8.svg","flag_uy":"1f1fa-1f1fe.svg","flag_uz":"1f1fa-1f1ff.svg","flag_va":"1f1fb-1f1e6.svg","flag_vc":"1f1fb-1f1e8.svg","flag_ve":"1f1fb-1f1ea.svg","flag_vg":"1f1fb-1f1ec.svg","flag_vi":"1f1fb-1f1ee.svg","flag_vn":"1f1fb-1f1f3.svg","flag_vu":"1f1fb-1f1fa.svg","flag_wf":"1f1fc-1f1eb.svg","flag_white":"1f3f3.svg","flag_ws":"1f1fc-1f1f8.svg","flag_xk":"1f1fd-1f1f0.svg","flag_ye":"1f1fe-1f1ea.svg","flag_yt":"1f1fe-1f1f9.svg","flag_za":"1f1ff-1f1e6.svg","flag_zm":"1f1ff-1f1f2.svg","flag_zw":"1f1ff-1f1fc.svg","flags":"1f38f.svg","flamingo":"1f9a9.svg","flashlight":"1f526.svg","flatbread":"1fad3.svg","fleur-de-lis":"269c.svg","floppy_disk":"1f4be.svg","flower_playing_cards":"1f3b4.svg","flushed":"1f633.svg","fly":"1fab0.svg","flying_disc":"1f94f.svg","flying_saucer":"1f6f8.svg","fog":"1f32b.svg","foggy":"1f301.svg","fondue":"1fad5.svg","foot":"1f9b6.svg","foot_tone1":"1f9b6-1f3fb.svg","foot_tone2":"1f9b6-1f3fc.svg","foot_tone3":"1f9b6-1f3fd.svg","foot_tone4":"1f9b6-1f3fe.svg","foot_tone5":"1f9b6-1f3ff.svg","football":"1f3c8.svg","footprints":"1f463.svg","fork_and_knife":"1f374.svg","fork_knife_plate":"1f37d.svg","fortune_cookie":"1f960.svg","fountain":"26f2.svg","four":"34-20e3.svg","four_leaf_clover":"1f340.svg","fox":"1f98a.svg","frame_photo":"1f5bc.svg","free":"1f193.svg","french_bread":"1f956.svg","fried_shrimp":"1f364.svg","fries":"1f35f.svg","frog":"1f438.svg","frowning2":"2639.svg","frowning":"1f626.svg","fuelpump":"26fd.svg","full_moon":"1f315.svg","full_moon_with_face":"1f31d.svg","game_die":"1f3b2.svg","garlic":"1f9c4.svg","gear":"2699.svg","gem":"1f48e.svg","gemini":"264a.svg","genie":"1f9de.svg","ghost":"1f47b.svg","gift":"1f381.svg","gift_heart":"1f49d.svg","giraffe":"1f992.svg","girl":"1f467.svg","girl_tone1":"1f467-1f3fb.svg","girl_tone2":"1f467-1f3fc.svg","girl_tone3":"1f467-1f3fd.svg","girl_tone4":"1f467-1f3fe.svg","girl_tone5":"1f467-1f3ff.svg","globe_with_meridians":"1f310.svg","gloves":"1f9e4.svg","goal":"1f945.svg","goat":"1f410.svg","goggles":"1f97d.svg","golf":"26f3.svg","gorilla":"1f98d.svg","grapes":"1f347.svg","green_apple":"1f34f.svg","green_book":"1f4d7.svg","green_circle":"1f7e2.svg","green_heart":"1f49a.svg","green_square":"1f7e9.svg","grey_exclamation":"2755.svg","grey_question":"2754.svg","grimacing":"1f62c.svg","grin":"1f601.svg","grinning":"1f600.svg","guard":"1f482.svg","guard_tone1":"1f482-1f3fb.svg","guard_tone2":"1f482-1f3fc.svg","guard_tone3":"1f482-1f3fd.svg","guard_tone4":"1f482-1f3fe.svg","guard_tone5":"1f482-1f3ff.svg","guide_dog":"1f9ae.svg","guitar":"1f3b8.svg","gun":"1f52b.svg","hamburger":"1f354.svg","hammer":"1f528.svg","hammer_pick":"2692.svg","hamsa":"1faac.svg","hamster":"1f439.svg","hand_splayed":"1f590.svg","hand_splayed_tone1":"1f590-1f3fb.svg","hand_splayed_tone2":"1f590-1f3fc.svg","hand_splayed_tone3":"1f590-1f3fd.svg","hand_splayed_tone4":"1f590-1f3fe.svg","hand_splayed_tone5":"1f590-1f3ff.svg","hand_with_index_finger_and_thumb_crossed":"1faf0.svg","hand_with_index_finger_and_thumb_crossed_tone1":"1faf0-1f3fb.svg","hand_with_index_finger_and_thumb_crossed_tone2":"1faf0-1f3fc.svg","hand_with_index_finger_and_thumb_crossed_tone3":"1faf0-1f3fd.svg","hand_with_index_finger_and_thumb_crossed_tone4":"1faf0-1f3fe.svg","hand_with_index_finger_and_thumb_crossed_tone5":"1faf0-1f3ff.svg","handbag":"1f45c.svg","handshake":"1f91d.svg","handshake_tone1":"1f91d-1f3fb.svg","handshake_tone1_tone2":"1faf1-1f3fb-200d-1faf2-1f3fc.svg","handshake_tone1_tone3":"1faf1-1f3fb-200d-1faf2-1f3fd.svg","handshake_tone1_tone4":"1faf1-1f3fb-200d-1faf2-1f3fe.svg","handshake_tone1_tone5":"1faf1-1f3fb-200d-1faf2-1f3ff.svg","handshake_tone2":"1f91d-1f3fc.svg","handshake_tone2_tone1":"1faf1-1f3fc-200d-1faf2-1f3fb.svg","handshake_tone2_tone3":"1faf1-1f3fc-200d-1faf2-1f3fd.svg","handshake_tone2_tone4":"1faf1-1f3fc-200d-1faf2-1f3fe.svg","handshake_tone2_tone5":"1faf1-1f3fc-200d-1faf2-1f3ff.svg","handshake_tone3":"1f91d-1f3fd.svg","handshake_tone3_tone1":"1faf1-1f3fd-200d-1faf2-1f3fb.svg","handshake_tone3_tone2":"1faf1-1f3fd-200d-1faf2-1f3fc.svg","handshake_tone3_tone4":"1faf1-1f3fd-200d-1faf2-1f3fe.svg","handshake_tone3_tone5":"1faf1-1f3fd-200d-1faf2-1f3ff.svg","handshake_tone4":"1f91d-1f3fe.svg","handshake_tone4_tone1":"1faf1-1f3fe-200d-1faf2-1f3fb.svg","handshake_tone4_tone2":"1faf1-1f3fe-200d-1faf2-1f3fc.svg","handshake_tone4_tone3":"1faf1-1f3fe-200d-1faf2-1f3fd.svg","handshake_tone4_tone5":"1faf1-1f3fe-200d-1faf2-1f3ff.svg","handshake_tone5":"1f91d-1f3ff.svg","handshake_tone5_tone1":"1faf1-1f3ff-200d-1faf2-1f3fb.svg","handshake_tone5_tone2":"1faf1-1f3ff-200d-1faf2-1f3fc.svg","handshake_tone5_tone3":"1faf1-1f3ff-200d-1faf2-1f3fd.svg","handshake_tone5_tone4":"1faf1-1f3ff-200d-1faf2-1f3fe.svg","hash":"23-20e3.svg","hatched_chick":"1f425.svg","hatching_chick":"1f423.svg","head_bandage":"1f915.svg","headphones":"1f3a7.svg","headstone":"1faa6.svg","health_worker":"1f9d1-200d-2695-fe0f.svg","health_worker_tone1":"1f9d1-1f3fb-200d-2695-fe0f.svg","health_worker_tone2":"1f9d1-1f3fc-200d-2695-fe0f.svg","health_worker_tone3":"1f9d1-1f3fd-200d-2695-fe0f.svg","health_worker_tone4":"1f9d1-1f3fe-200d-2695-fe0f.svg","health_worker_tone5":"1f9d1-1f3ff-200d-2695-fe0f.svg","hear_no_evil":"1f649.svg","heart":"2764.svg","heart_decoration":"1f49f.svg","heart_exclamation":"2763.svg","heart_eyes":"1f60d.svg","heart_eyes_cat":"1f63b.svg","heart_hands":"1faf6.svg","heart_hands_tone1":"1faf6-1f3fb.svg","heart_hands_tone2":"1faf6-1f3fc.svg","heart_hands_tone3":"1faf6-1f3fd.svg","heart_hands_tone4":"1faf6-1f3fe.svg","heart_hands_tone5":"1faf6-1f3ff.svg","heart_on_fire":"2764-fe0f-200d-1f525.svg","heartbeat":"1f493.svg","heartpulse":"1f497.svg","hearts":"2665.svg","heavy_check_mark":"2714.svg","heavy_division_sign":"2797.svg","heavy_dollar_sign":"1f4b2.svg","heavy_equals_sign":"1f7f0.svg","heavy_minus_sign":"2796.svg","heavy_multiplication_x":"2716.svg","heavy_plus_sign":"2795.svg","hedgehog":"1f994.svg","helicopter":"1f681.svg","helmet_with_cross":"26d1.svg","herb":"1f33f.svg","hibiscus":"1f33a.svg","high_brightness":"1f506.svg","high_heel":"1f460.svg","hiking_boot":"1f97e.svg","hindu_temple":"1f6d5.svg","hippopotamus":"1f99b.svg","hockey":"1f3d2.svg","hole":"1f573.svg","homes":"1f3d8.svg","honey_pot":"1f36f.svg","hook":"1fa9d.svg","horse":"1f434.svg","horse_racing":"1f3c7.svg","horse_racing_tone1":"1f3c7-1f3fb.svg","horse_racing_tone2":"1f3c7-1f3fc.svg","horse_racing_tone3":"1f3c7-1f3fd.svg","horse_racing_tone4":"1f3c7-1f3fe.svg","horse_racing_tone5":"1f3c7-1f3ff.svg","hospital":"1f3e5.svg","hot_face":"1f975.svg","hot_pepper":"1f336.svg","hotdog":"1f32d.svg","hotel":"1f3e8.svg","hotsprings":"2668.svg","hourglass":"231b.svg","hourglass_flowing_sand":"23f3.svg","house":"1f3e0.svg","house_abandoned":"1f3da.svg","house_with_garden":"1f3e1.svg","hugging":"1f917.svg","hushed":"1f62f.svg","hut":"1f6d6.svg","ice_cream":"1f368.svg","ice_cube":"1f9ca.svg","ice_skate":"26f8.svg","icecream":"1f366.svg","id":"1f194.svg","identification_card":"1faaa.svg","ideograph_advantage":"1f250.svg","imp":"1f47f.svg","inbox_tray":"1f4e5.svg","incoming_envelope":"1f4e8.svg","index_pointing_at_the_viewer":"1faf5.svg","index_pointing_at_the_viewer_tone1":"1faf5-1f3fb.svg","index_pointing_at_the_viewer_tone2":"1faf5-1f3fc.svg","index_pointing_at_the_viewer_tone3":"1faf5-1f3fd.svg","index_pointing_at_the_viewer_tone4":"1faf5-1f3fe.svg","index_pointing_at_the_viewer_tone5":"1faf5-1f3ff.svg","infinity":"267e.svg","information_source":"2139.svg","innocent":"1f607.svg","interrobang":"2049.svg","island":"1f3dd.svg","izakaya_lantern":"1f3ee.svg","jack_o_lantern":"1f383.svg","japan":"1f5fe.svg","japanese_castle":"1f3ef.svg","japanese_goblin":"1f47a.svg","japanese_ogre":"1f479.svg","jar":"1fad9.svg","jeans":"1f456.svg","jigsaw":"1f9e9.svg","joy":"1f602.svg","joy_cat":"1f639.svg","joystick":"1f579.svg","judge":"1f9d1-200d-2696-fe0f.svg","judge_tone1":"1f9d1-1f3fb-200d-2696-fe0f.svg","judge_tone2":"1f9d1-1f3fc-200d-2696-fe0f.svg","judge_tone3":"1f9d1-1f3fd-200d-2696-fe0f.svg","judge_tone4":"1f9d1-1f3fe-200d-2696-fe0f.svg","judge_tone5":"1f9d1-1f3ff-200d-2696-fe0f.svg","kaaba":"1f54b.svg","kangaroo":"1f998.svg","key2":"1f5dd.svg","key":"1f511.svg","keyboard":"2328.svg","keycap_ten":"1f51f.svg","kimono":"1f458.svg","kiss":"1f48b.svg","kiss_man_man_tone1":"1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg","kiss_man_man_tone1_tone2":"1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg","kiss_man_man_tone1_tone3":"1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg","kiss_man_man_tone1_tone4":"1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg","kiss_man_man_tone1_tone5":"1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg","kiss_man_man_tone2":"1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg","kiss_man_man_tone2_tone1":"1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg","kiss_man_man_tone2_tone3":"1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg","kiss_man_man_tone2_tone4":"1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg","kiss_man_man_tone2_tone5":"1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg","kiss_man_man_tone3":"1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg","kiss_man_man_tone3_tone1":"1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg","kiss_man_man_tone3_tone2":"1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg","kiss_man_man_tone3_tone4":"1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg","kiss_man_man_tone3_tone5":"1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg","kiss_man_man_tone4":"1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg","kiss_man_man_tone4_tone1":"1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg","kiss_man_man_tone4_tone2":"1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg","kiss_man_man_tone4_tone3":"1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg","kiss_man_man_tone4_tone5":"1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg","kiss_man_man_tone5":"1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg","kiss_man_man_tone5_tone1":"1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg","kiss_man_man_tone5_tone2":"1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg","kiss_man_man_tone5_tone3":"1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg","kiss_man_man_tone5_tone4":"1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg","kiss_mm":"1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.svg","kiss_person_person_tone1_tone2":"1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.svg","kiss_person_person_tone1_tone3":"1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.svg","kiss_person_person_tone1_tone4":"1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.svg","kiss_person_person_tone1_tone5":"1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.svg","kiss_person_person_tone2_tone1":"1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.svg","kiss_person_person_tone2_tone3":"1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.svg","kiss_person_person_tone2_tone4":"1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.svg","kiss_person_person_tone2_tone5":"1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.svg","kiss_person_person_tone3_tone1":"1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.svg","kiss_person_person_tone3_tone2":"1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.svg","kiss_person_person_tone3_tone4":"1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.svg","kiss_person_person_tone3_tone5":"1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.svg","kiss_person_person_tone4_tone1":"1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.svg","kiss_person_person_tone4_tone2":"1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.svg","kiss_person_person_tone4_tone3":"1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.svg","kiss_person_person_tone4_tone5":"1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.svg","kiss_person_person_tone5_tone1":"1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.svg","kiss_person_person_tone5_tone2":"1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.svg","kiss_person_person_tone5_tone3":"1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.svg","kiss_person_person_tone5_tone4":"1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.svg","kiss_tone1":"1f48f-1f3fb.svg","kiss_tone2":"1f48f-1f3fc.svg","kiss_tone3":"1f48f-1f3fd.svg","kiss_tone4":"1f48f-1f3fe.svg","kiss_tone5":"1f48f-1f3ff.svg","kiss_woman_man":"1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.svg","kiss_woman_man_tone1":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg","kiss_woman_man_tone1_tone2":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg","kiss_woman_man_tone1_tone3":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg","kiss_woman_man_tone1_tone4":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg","kiss_woman_man_tone1_tone5":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg","kiss_woman_man_tone2":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg","kiss_woman_man_tone2_tone1":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg","kiss_woman_man_tone2_tone3":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg","kiss_woman_man_tone2_tone4":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg","kiss_woman_man_tone2_tone5":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg","kiss_woman_man_tone3":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg","kiss_woman_man_tone3_tone1":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg","kiss_woman_man_tone3_tone2":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg","kiss_woman_man_tone3_tone4":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg","kiss_woman_man_tone3_tone5":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg","kiss_woman_man_tone4":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg","kiss_woman_man_tone4_tone1":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg","kiss_woman_man_tone4_tone2":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg","kiss_woman_man_tone4_tone3":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg","kiss_woman_man_tone4_tone5":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg","kiss_woman_man_tone5":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg","kiss_woman_man_tone5_tone1":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg","kiss_woman_man_tone5_tone2":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg","kiss_woman_man_tone5_tone3":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg","kiss_woman_man_tone5_tone4":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg","kiss_woman_woman_tone1":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.svg","kiss_woman_woman_tone1_tone2":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.svg","kiss_woman_woman_tone1_tone3":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.svg","kiss_woman_woman_tone1_tone4":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.svg","kiss_woman_woman_tone1_tone5":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.svg","kiss_woman_woman_tone2":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.svg","kiss_woman_woman_tone2_tone1":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.svg","kiss_woman_woman_tone2_tone3":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.svg","kiss_woman_woman_tone2_tone4":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.svg","kiss_woman_woman_tone2_tone5":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.svg","kiss_woman_woman_tone3":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.svg","kiss_woman_woman_tone3_tone1":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.svg","kiss_woman_woman_tone3_tone2":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.svg","kiss_woman_woman_tone3_tone4":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.svg","kiss_woman_woman_tone3_tone5":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.svg","kiss_woman_woman_tone4":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.svg","kiss_woman_woman_tone4_tone1":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.svg","kiss_woman_woman_tone4_tone2":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.svg","kiss_woman_woman_tone4_tone3":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.svg","kiss_woman_woman_tone4_tone5":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.svg","kiss_woman_woman_tone5":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.svg","kiss_woman_woman_tone5_tone1":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.svg","kiss_woman_woman_tone5_tone2":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.svg","kiss_woman_woman_tone5_tone3":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.svg","kiss_woman_woman_tone5_tone4":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.svg","kiss_ww":"1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.svg","kissing":"1f617.svg","kissing_cat":"1f63d.svg","kissing_closed_eyes":"1f61a.svg","kissing_heart":"1f618.svg","kissing_smiling_eyes":"1f619.svg","kite":"1fa81.svg","kiwi":"1f95d.svg","knife":"1f52a.svg","knot":"1faa2.svg","koala":"1f428.svg","koko":"1f201.svg","lab_coat":"1f97c.svg","label":"1f3f7.svg","lacrosse":"1f94d.svg","ladder":"1fa9c.svg","lady_beetle":"1f41e.svg","large_blue_diamond":"1f537.svg","large_orange_diamond":"1f536.svg","last_quarter_moon":"1f317.svg","last_quarter_moon_with_face":"1f31c.svg","laughing":"1f606.svg","leafy_green":"1f96c.svg","leaves":"1f343.svg","ledger":"1f4d2.svg","left_facing_fist":"1f91b.svg","left_facing_fist_tone1":"1f91b-1f3fb.svg","left_facing_fist_tone2":"1f91b-1f3fc.svg","left_facing_fist_tone3":"1f91b-1f3fd.svg","left_facing_fist_tone4":"1f91b-1f3fe.svg","left_facing_fist_tone5":"1f91b-1f3ff.svg","left_luggage":"1f6c5.svg","left_right_arrow":"2194.svg","leftwards_arrow_with_hook":"21a9.svg","leftwards_hand":"1faf2.svg","leftwards_hand_tone1":"1faf2-1f3fb.svg","leftwards_hand_tone2":"1faf2-1f3fc.svg","leftwards_hand_tone3":"1faf2-1f3fd.svg","leftwards_hand_tone4":"1faf2-1f3fe.svg","leftwards_hand_tone5":"1faf2-1f3ff.svg","leg":"1f9b5.svg","leg_tone1":"1f9b5-1f3fb.svg","leg_tone2":"1f9b5-1f3fc.svg","leg_tone3":"1f9b5-1f3fd.svg","leg_tone4":"1f9b5-1f3fe.svg","leg_tone5":"1f9b5-1f3ff.svg","lemon":"1f34b.svg","leo":"264c.svg","leopard":"1f406.svg","level_slider":"1f39a.svg","levitate":"1f574.svg","levitate_tone1":"1f574-1f3fb.svg","levitate_tone2":"1f574-1f3fc.svg","levitate_tone3":"1f574-1f3fd.svg","levitate_tone4":"1f574-1f3fe.svg","levitate_tone5":"1f574-1f3ff.svg","libra":"264e.svg","light_rail":"1f688.svg","link":"1f517.svg","lion_face":"1f981.svg","lips":"1f444.svg","lipstick":"1f484.svg","lizard":"1f98e.svg","llama":"1f999.svg","lobster":"1f99e.svg","lock":"1f512.svg","lock_with_ink_pen":"1f50f.svg","lollipop":"1f36d.svg","long_drum":"1fa98.svg","loop":"27bf.svg","lotus":"1fab7.svg","loud_sound":"1f50a.svg","loudspeaker":"1f4e2.svg","love_hotel":"1f3e9.svg","love_letter":"1f48c.svg","love_you_gesture":"1f91f.svg","love_you_gesture_tone1":"1f91f-1f3fb.svg","love_you_gesture_tone2":"1f91f-1f3fc.svg","love_you_gesture_tone3":"1f91f-1f3fd.svg","love_you_gesture_tone4":"1f91f-1f3fe.svg","love_you_gesture_tone5":"1f91f-1f3ff.svg","low_battery":"1faab.svg","low_brightness":"1f505.svg","luggage":"1f9f3.svg","lungs":"1fac1.svg","lying_face":"1f925.svg","m":"24c2.svg","mag":"1f50d.svg","mag_right":"1f50e.svg","mage":"1f9d9.svg","mage_tone1":"1f9d9-1f3fb.svg","mage_tone2":"1f9d9-1f3fc.svg","mage_tone3":"1f9d9-1f3fd.svg","mage_tone4":"1f9d9-1f3fe.svg","mage_tone5":"1f9d9-1f3ff.svg","magic_wand":"1fa84.svg","magnet":"1f9f2.svg","mahjong":"1f004.svg","mailbox":"1f4eb.svg","mailbox_closed":"1f4ea.svg","mailbox_with_mail":"1f4ec.svg","mailbox_with_no_mail":"1f4ed.svg","male_sign":"2642.svg","mammoth":"1f9a3.svg","man":"1f468.svg","man_artist":"1f468-200d-1f3a8.svg","man_artist_tone1":"1f468-1f3fb-200d-1f3a8.svg","man_artist_tone2":"1f468-1f3fc-200d-1f3a8.svg","man_artist_tone3":"1f468-1f3fd-200d-1f3a8.svg","man_artist_tone4":"1f468-1f3fe-200d-1f3a8.svg","man_artist_tone5":"1f468-1f3ff-200d-1f3a8.svg","man_astronaut":"1f468-200d-1f680.svg","man_astronaut_tone1":"1f468-1f3fb-200d-1f680.svg","man_astronaut_tone2":"1f468-1f3fc-200d-1f680.svg","man_astronaut_tone3":"1f468-1f3fd-200d-1f680.svg","man_astronaut_tone4":"1f468-1f3fe-200d-1f680.svg","man_astronaut_tone5":"1f468-1f3ff-200d-1f680.svg","man_bald":"1f468-200d-1f9b2.svg","man_bald_tone1":"1f468-1f3fb-200d-1f9b2.svg","man_bald_tone2":"1f468-1f3fc-200d-1f9b2.svg","man_bald_tone3":"1f468-1f3fd-200d-1f9b2.svg","man_bald_tone4":"1f468-1f3fe-200d-1f9b2.svg","man_bald_tone5":"1f468-1f3ff-200d-1f9b2.svg","man_beard":"1f9d4-200d-2642-fe0f.svg","man_biking":"1f6b4-200d-2642-fe0f.svg","man_biking_tone1":"1f6b4-1f3fb-200d-2642-fe0f.svg","man_biking_tone2":"1f6b4-1f3fc-200d-2642-fe0f.svg","man_biking_tone3":"1f6b4-1f3fd-200d-2642-fe0f.svg","man_biking_tone4":"1f6b4-1f3fe-200d-2642-fe0f.svg","man_biking_tone5":"1f6b4-1f3ff-200d-2642-fe0f.svg","man_bouncing_ball":"26f9-fe0f-200d-2642-fe0f.svg","man_bouncing_ball_tone1":"26f9-1f3fb-200d-2642-fe0f.svg","man_bouncing_ball_tone2":"26f9-1f3fc-200d-2642-fe0f.svg","man_bouncing_ball_tone3":"26f9-1f3fd-200d-2642-fe0f.svg","man_bouncing_ball_tone4":"26f9-1f3fe-200d-2642-fe0f.svg","man_bouncing_ball_tone5":"26f9-1f3ff-200d-2642-fe0f.svg","man_bowing":"1f647-200d-2642-fe0f.svg","man_bowing_tone1":"1f647-1f3fb-200d-2642-fe0f.svg","man_bowing_tone2":"1f647-1f3fc-200d-2642-fe0f.svg","man_bowing_tone3":"1f647-1f3fd-200d-2642-fe0f.svg","man_bowing_tone4":"1f647-1f3fe-200d-2642-fe0f.svg","man_bowing_tone5":"1f647-1f3ff-200d-2642-fe0f.svg","man_cartwheeling":"1f938-200d-2642-fe0f.svg","man_cartwheeling_tone1":"1f938-1f3fb-200d-2642-fe0f.svg","man_cartwheeling_tone2":"1f938-1f3fc-200d-2642-fe0f.svg","man_cartwheeling_tone3":"1f938-1f3fd-200d-2642-fe0f.svg","man_cartwheeling_tone4":"1f938-1f3fe-200d-2642-fe0f.svg","man_cartwheeling_tone5":"1f938-1f3ff-200d-2642-fe0f.svg","man_climbing":"1f9d7-200d-2642-fe0f.svg","man_climbing_tone1":"1f9d7-1f3fb-200d-2642-fe0f.svg","man_climbing_tone2":"1f9d7-1f3fc-200d-2642-fe0f.svg","man_climbing_tone3":"1f9d7-1f3fd-200d-2642-fe0f.svg","man_climbing_tone4":"1f9d7-1f3fe-200d-2642-fe0f.svg","man_climbing_tone5":"1f9d7-1f3ff-200d-2642-fe0f.svg","man_construction_worker":"1f477-200d-2642-fe0f.svg","man_construction_worker_tone1":"1f477-1f3fb-200d-2642-fe0f.svg","man_construction_worker_tone2":"1f477-1f3fc-200d-2642-fe0f.svg","man_construction_worker_tone3":"1f477-1f3fd-200d-2642-fe0f.svg","man_construction_worker_tone4":"1f477-1f3fe-200d-2642-fe0f.svg","man_construction_worker_tone5":"1f477-1f3ff-200d-2642-fe0f.svg","man_cook":"1f468-200d-1f373.svg","man_cook_tone1":"1f468-1f3fb-200d-1f373.svg","man_cook_tone2":"1f468-1f3fc-200d-1f373.svg","man_cook_tone3":"1f468-1f3fd-200d-1f373.svg","man_cook_tone4":"1f468-1f3fe-200d-1f373.svg","man_cook_tone5":"1f468-1f3ff-200d-1f373.svg","man_curly_haired":"1f468-200d-1f9b1.svg","man_curly_haired_tone1":"1f468-1f3fb-200d-1f9b1.svg","man_curly_haired_tone2":"1f468-1f3fc-200d-1f9b1.svg","man_curly_haired_tone3":"1f468-1f3fd-200d-1f9b1.svg","man_curly_haired_tone4":"1f468-1f3fe-200d-1f9b1.svg","man_curly_haired_tone5":"1f468-1f3ff-200d-1f9b1.svg","man_dancing":"1f57a.svg","man_dancing_tone1":"1f57a-1f3fb.svg","man_dancing_tone2":"1f57a-1f3fc.svg","man_dancing_tone3":"1f57a-1f3fd.svg","man_dancing_tone4":"1f57a-1f3fe.svg","man_dancing_tone5":"1f57a-1f3ff.svg","man_detective":"1f575-fe0f-200d-2642-fe0f.svg","man_detective_tone1":"1f575-1f3fb-200d-2642-fe0f.svg","man_detective_tone2":"1f575-1f3fc-200d-2642-fe0f.svg","man_detective_tone3":"1f575-1f3fd-200d-2642-fe0f.svg","man_detective_tone4":"1f575-1f3fe-200d-2642-fe0f.svg","man_detective_tone5":"1f575-1f3ff-200d-2642-fe0f.svg","man_elf":"1f9dd-200d-2642-fe0f.svg","man_elf_tone1":"1f9dd-1f3fb-200d-2642-fe0f.svg","man_elf_tone2":"1f9dd-1f3fc-200d-2642-fe0f.svg","man_elf_tone3":"1f9dd-1f3fd-200d-2642-fe0f.svg","man_elf_tone4":"1f9dd-1f3fe-200d-2642-fe0f.svg","man_elf_tone5":"1f9dd-1f3ff-200d-2642-fe0f.svg","man_facepalming":"1f926-200d-2642-fe0f.svg","man_facepalming_tone1":"1f926-1f3fb-200d-2642-fe0f.svg","man_facepalming_tone2":"1f926-1f3fc-200d-2642-fe0f.svg","man_facepalming_tone3":"1f926-1f3fd-200d-2642-fe0f.svg","man_facepalming_tone4":"1f926-1f3fe-200d-2642-fe0f.svg","man_facepalming_tone5":"1f926-1f3ff-200d-2642-fe0f.svg","man_factory_worker":"1f468-200d-1f3ed.svg","man_factory_worker_tone1":"1f468-1f3fb-200d-1f3ed.svg","man_factory_worker_tone2":"1f468-1f3fc-200d-1f3ed.svg","man_factory_worker_tone3":"1f468-1f3fd-200d-1f3ed.svg","man_factory_worker_tone4":"1f468-1f3fe-200d-1f3ed.svg","man_factory_worker_tone5":"1f468-1f3ff-200d-1f3ed.svg","man_fairy":"1f9da-200d-2642-fe0f.svg","man_fairy_tone1":"1f9da-1f3fb-200d-2642-fe0f.svg","man_fairy_tone2":"1f9da-1f3fc-200d-2642-fe0f.svg","man_fairy_tone3":"1f9da-1f3fd-200d-2642-fe0f.svg","man_fairy_tone4":"1f9da-1f3fe-200d-2642-fe0f.svg","man_fairy_tone5":"1f9da-1f3ff-200d-2642-fe0f.svg","man_farmer":"1f468-200d-1f33e.svg","man_farmer_tone1":"1f468-1f3fb-200d-1f33e.svg","man_farmer_tone2":"1f468-1f3fc-200d-1f33e.svg","man_farmer_tone3":"1f468-1f3fd-200d-1f33e.svg","man_farmer_tone4":"1f468-1f3fe-200d-1f33e.svg","man_farmer_tone5":"1f468-1f3ff-200d-1f33e.svg","man_feeding_baby":"1f468-200d-1f37c.svg","man_feeding_baby_tone1":"1f468-1f3fb-200d-1f37c.svg","man_feeding_baby_tone2":"1f468-1f3fc-200d-1f37c.svg","man_feeding_baby_tone3":"1f468-1f3fd-200d-1f37c.svg","man_feeding_baby_tone4":"1f468-1f3fe-200d-1f37c.svg","man_feeding_baby_tone5":"1f468-1f3ff-200d-1f37c.svg","man_firefighter":"1f468-200d-1f692.svg","man_firefighter_tone1":"1f468-1f3fb-200d-1f692.svg","man_firefighter_tone2":"1f468-1f3fc-200d-1f692.svg","man_firefighter_tone3":"1f468-1f3fd-200d-1f692.svg","man_firefighter_tone4":"1f468-1f3fe-200d-1f692.svg","man_firefighter_tone5":"1f468-1f3ff-200d-1f692.svg","man_frowning":"1f64d-200d-2642-fe0f.svg","man_frowning_tone1":"1f64d-1f3fb-200d-2642-fe0f.svg","man_frowning_tone2":"1f64d-1f3fc-200d-2642-fe0f.svg","man_frowning_tone3":"1f64d-1f3fd-200d-2642-fe0f.svg","man_frowning_tone4":"1f64d-1f3fe-200d-2642-fe0f.svg","man_frowning_tone5":"1f64d-1f3ff-200d-2642-fe0f.svg","man_genie":"1f9de-200d-2642-fe0f.svg","man_gesturing_no":"1f645-200d-2642-fe0f.svg","man_gesturing_no_tone1":"1f645-1f3fb-200d-2642-fe0f.svg","man_gesturing_no_tone2":"1f645-1f3fc-200d-2642-fe0f.svg","man_gesturing_no_tone3":"1f645-1f3fd-200d-2642-fe0f.svg","man_gesturing_no_tone4":"1f645-1f3fe-200d-2642-fe0f.svg","man_gesturing_no_tone5":"1f645-1f3ff-200d-2642-fe0f.svg","man_gesturing_ok":"1f646-200d-2642-fe0f.svg","man_gesturing_ok_tone1":"1f646-1f3fb-200d-2642-fe0f.svg","man_gesturing_ok_tone2":"1f646-1f3fc-200d-2642-fe0f.svg","man_gesturing_ok_tone3":"1f646-1f3fd-200d-2642-fe0f.svg","man_gesturing_ok_tone4":"1f646-1f3fe-200d-2642-fe0f.svg","man_gesturing_ok_tone5":"1f646-1f3ff-200d-2642-fe0f.svg","man_getting_face_massage":"1f486-200d-2642-fe0f.svg","man_getting_face_massage_tone1":"1f486-1f3fb-200d-2642-fe0f.svg","man_getting_face_massage_tone2":"1f486-1f3fc-200d-2642-fe0f.svg","man_getting_face_massage_tone3":"1f486-1f3fd-200d-2642-fe0f.svg","man_getting_face_massage_tone4":"1f486-1f3fe-200d-2642-fe0f.svg","man_getting_face_massage_tone5":"1f486-1f3ff-200d-2642-fe0f.svg","man_getting_haircut":"1f487-200d-2642-fe0f.svg","man_getting_haircut_tone1":"1f487-1f3fb-200d-2642-fe0f.svg","man_getting_haircut_tone2":"1f487-1f3fc-200d-2642-fe0f.svg","man_getting_haircut_tone3":"1f487-1f3fd-200d-2642-fe0f.svg","man_getting_haircut_tone4":"1f487-1f3fe-200d-2642-fe0f.svg","man_getting_haircut_tone5":"1f487-1f3ff-200d-2642-fe0f.svg","man_golfing":"1f3cc-fe0f-200d-2642-fe0f.svg","man_golfing_tone1":"1f3cc-1f3fb-200d-2642-fe0f.svg","man_golfing_tone2":"1f3cc-1f3fc-200d-2642-fe0f.svg","man_golfing_tone3":"1f3cc-1f3fd-200d-2642-fe0f.svg","man_golfing_tone4":"1f3cc-1f3fe-200d-2642-fe0f.svg","man_golfing_tone5":"1f3cc-1f3ff-200d-2642-fe0f.svg","man_guard":"1f482-200d-2642-fe0f.svg","man_guard_tone1":"1f482-1f3fb-200d-2642-fe0f.svg","man_guard_tone2":"1f482-1f3fc-200d-2642-fe0f.svg","man_guard_tone3":"1f482-1f3fd-200d-2642-fe0f.svg","man_guard_tone4":"1f482-1f3fe-200d-2642-fe0f.svg","man_guard_tone5":"1f482-1f3ff-200d-2642-fe0f.svg","man_health_worker":"1f468-200d-2695-fe0f.svg","man_health_worker_tone1":"1f468-1f3fb-200d-2695-fe0f.svg","man_health_worker_tone2":"1f468-1f3fc-200d-2695-fe0f.svg","man_health_worker_tone3":"1f468-1f3fd-200d-2695-fe0f.svg","man_health_worker_tone4":"1f468-1f3fe-200d-2695-fe0f.svg","man_health_worker_tone5":"1f468-1f3ff-200d-2695-fe0f.svg","man_in_lotus_position":"1f9d8-200d-2642-fe0f.svg","man_in_lotus_position_tone1":"1f9d8-1f3fb-200d-2642-fe0f.svg","man_in_lotus_position_tone2":"1f9d8-1f3fc-200d-2642-fe0f.svg","man_in_lotus_position_tone3":"1f9d8-1f3fd-200d-2642-fe0f.svg","man_in_lotus_position_tone4":"1f9d8-1f3fe-200d-2642-fe0f.svg","man_in_lotus_position_tone5":"1f9d8-1f3ff-200d-2642-fe0f.svg","man_in_manual_wheelchair":"1f468-200d-1f9bd.svg","man_in_manual_wheelchair_tone1":"1f468-1f3fb-200d-1f9bd.svg","man_in_manual_wheelchair_tone2":"1f468-1f3fc-200d-1f9bd.svg","man_in_manual_wheelchair_tone3":"1f468-1f3fd-200d-1f9bd.svg","man_in_manual_wheelchair_tone4":"1f468-1f3fe-200d-1f9bd.svg","man_in_manual_wheelchair_tone5":"1f468-1f3ff-200d-1f9bd.svg","man_in_motorized_wheelchair":"1f468-200d-1f9bc.svg","man_in_motorized_wheelchair_tone1":"1f468-1f3fb-200d-1f9bc.svg","man_in_motorized_wheelchair_tone2":"1f468-1f3fc-200d-1f9bc.svg","man_in_motorized_wheelchair_tone3":"1f468-1f3fd-200d-1f9bc.svg","man_in_motorized_wheelchair_tone4":"1f468-1f3fe-200d-1f9bc.svg","man_in_motorized_wheelchair_tone5":"1f468-1f3ff-200d-1f9bc.svg","man_in_santa_hat":"1f468-200d-1f384.svg","man_in_santa_hat_tone1":"1f468-1f3fb-200d-1f384.svg","man_in_santa_hat_tone2":"1f468-1f3fc-200d-1f384.svg","man_in_santa_hat_tone3":"1f468-1f3fd-200d-1f384.svg","man_in_santa_hat_tone4":"1f468-1f3fe-200d-1f384.svg","man_in_santa_hat_tone5":"1f469-1f3ff-200d-1f384.svg","man_in_steamy_room":"1f9d6-200d-2642-fe0f.svg","man_in_steamy_room_tone1":"1f9d6-1f3fb-200d-2642-fe0f.svg","man_in_steamy_room_tone2":"1f9d6-1f3fc-200d-2642-fe0f.svg","man_in_steamy_room_tone3":"1f9d6-1f3fd-200d-2642-fe0f.svg","man_in_steamy_room_tone4":"1f9d6-1f3fe-200d-2642-fe0f.svg","man_in_steamy_room_tone5":"1f9d6-1f3ff-200d-2642-fe0f.svg","man_in_tuxedo":"1f935-200d-2642-fe0f.svg","man_in_tuxedo_tone1":"1f935-1f3fb-200d-2642-fe0f.svg","man_in_tuxedo_tone2":"1f935-1f3fc-200d-2642-fe0f.svg","man_in_tuxedo_tone3":"1f935-1f3fd-200d-2642-fe0f.svg","man_in_tuxedo_tone4":"1f935-1f3fe-200d-2642-fe0f.svg","man_in_tuxedo_tone5":"1f935-1f3ff-200d-2642-fe0f.svg","man_judge":"1f468-200d-2696-fe0f.svg","man_judge_tone1":"1f468-1f3fb-200d-2696-fe0f.svg","man_judge_tone2":"1f468-1f3fc-200d-2696-fe0f.svg","man_judge_tone3":"1f468-1f3fd-200d-2696-fe0f.svg","man_judge_tone4":"1f468-1f3fe-200d-2696-fe0f.svg","man_judge_tone5":"1f468-1f3ff-200d-2696-fe0f.svg","man_juggling":"1f939-200d-2642-fe0f.svg","man_juggling_tone1":"1f939-1f3fb-200d-2642-fe0f.svg","man_juggling_tone2":"1f939-1f3fc-200d-2642-fe0f.svg","man_juggling_tone3":"1f939-1f3fd-200d-2642-fe0f.svg","man_juggling_tone4":"1f939-1f3fe-200d-2642-fe0f.svg","man_juggling_tone5":"1f939-1f3ff-200d-2642-fe0f.svg","man_kneeling":"1f9ce-200d-2642-fe0f.svg","man_kneeling_tone1":"1f9ce-1f3fb-200d-2642-fe0f.svg","man_kneeling_tone2":"1f9ce-1f3fc-200d-2642-fe0f.svg","man_kneeling_tone3":"1f9ce-1f3fd-200d-2642-fe0f.svg","man_kneeling_tone4":"1f9ce-1f3fe-200d-2642-fe0f.svg","man_kneeling_tone5":"1f9ce-1f3ff-200d-2642-fe0f.svg","man_lifting_weights":"1f3cb-fe0f-200d-2642-fe0f.svg","man_lifting_weights_tone1":"1f3cb-1f3fb-200d-2642-fe0f.svg","man_lifting_weights_tone2":"1f3cb-1f3fc-200d-2642-fe0f.svg","man_lifting_weights_tone3":"1f3cb-1f3fd-200d-2642-fe0f.svg","man_lifting_weights_tone4":"1f3cb-1f3fe-200d-2642-fe0f.svg","man_lifting_weights_tone5":"1f3cb-1f3ff-200d-2642-fe0f.svg","man_mage":"1f9d9-200d-2642-fe0f.svg","man_mage_tone1":"1f9d9-1f3fb-200d-2642-fe0f.svg","man_mage_tone2":"1f9d9-1f3fc-200d-2642-fe0f.svg","man_mage_tone3":"1f9d9-1f3fd-200d-2642-fe0f.svg","man_mage_tone4":"1f9d9-1f3fe-200d-2642-fe0f.svg","man_mage_tone5":"1f9d9-1f3ff-200d-2642-fe0f.svg","man_mechanic":"1f468-200d-1f527.svg","man_mechanic_tone1":"1f468-1f3fb-200d-1f527.svg","man_mechanic_tone2":"1f468-1f3fc-200d-1f527.svg","man_mechanic_tone3":"1f468-1f3fd-200d-1f527.svg","man_mechanic_tone4":"1f468-1f3fe-200d-1f527.svg","man_mechanic_tone5":"1f468-1f3ff-200d-1f527.svg","man_mountain_biking":"1f6b5-200d-2642-fe0f.svg","man_mountain_biking_tone1":"1f6b5-1f3fb-200d-2642-fe0f.svg","man_mountain_biking_tone2":"1f6b5-1f3fc-200d-2642-fe0f.svg","man_mountain_biking_tone3":"1f6b5-1f3fd-200d-2642-fe0f.svg","man_mountain_biking_tone4":"1f6b5-1f3fe-200d-2642-fe0f.svg","man_mountain_biking_tone5":"1f6b5-1f3ff-200d-2642-fe0f.svg","man_office_worker":"1f468-200d-1f4bc.svg","man_office_worker_tone1":"1f468-1f3fb-200d-1f4bc.svg","man_office_worker_tone2":"1f468-1f3fc-200d-1f4bc.svg","man_office_worker_tone3":"1f468-1f3fd-200d-1f4bc.svg","man_office_worker_tone4":"1f468-1f3fe-200d-1f4bc.svg","man_office_worker_tone5":"1f468-1f3ff-200d-1f4bc.svg","man_pilot":"1f468-200d-2708-fe0f.svg","man_pilot_tone1":"1f468-1f3fb-200d-2708-fe0f.svg","man_pilot_tone2":"1f468-1f3fc-200d-2708-fe0f.svg","man_pilot_tone3":"1f468-1f3fd-200d-2708-fe0f.svg","man_pilot_tone4":"1f468-1f3fe-200d-2708-fe0f.svg","man_pilot_tone5":"1f468-1f3ff-200d-2708-fe0f.svg","man_playing_handball":"1f93e-200d-2642-fe0f.svg","man_playing_handball_tone1":"1f93e-1f3fb-200d-2642-fe0f.svg","man_playing_handball_tone2":"1f93e-1f3fc-200d-2642-fe0f.svg","man_playing_handball_tone3":"1f93e-1f3fd-200d-2642-fe0f.svg","man_playing_handball_tone4":"1f93e-1f3fe-200d-2642-fe0f.svg","man_playing_handball_tone5":"1f93e-1f3ff-200d-2642-fe0f.svg","man_playing_water_polo":"1f93d-200d-2642-fe0f.svg","man_playing_water_polo_tone1":"1f93d-1f3fb-200d-2642-fe0f.svg","man_playing_water_polo_tone2":"1f93d-1f3fc-200d-2642-fe0f.svg","man_playing_water_polo_tone3":"1f93d-1f3fd-200d-2642-fe0f.svg","man_playing_water_polo_tone4":"1f93d-1f3fe-200d-2642-fe0f.svg","man_playing_water_polo_tone5":"1f93d-1f3ff-200d-2642-fe0f.svg","man_police_officer":"1f46e-200d-2642-fe0f.svg","man_police_officer_tone1":"1f46e-1f3fb-200d-2642-fe0f.svg","man_police_officer_tone2":"1f46e-1f3fc-200d-2642-fe0f.svg","man_police_officer_tone3":"1f46e-1f3fd-200d-2642-fe0f.svg","man_police_officer_tone4":"1f46e-1f3fe-200d-2642-fe0f.svg","man_police_officer_tone5":"1f46e-1f3ff-200d-2642-fe0f.svg","man_pouting":"1f64e-200d-2642-fe0f.svg","man_pouting_tone1":"1f64e-1f3fb-200d-2642-fe0f.svg","man_pouting_tone2":"1f64e-1f3fc-200d-2642-fe0f.svg","man_pouting_tone3":"1f64e-1f3fd-200d-2642-fe0f.svg","man_pouting_tone4":"1f64e-1f3fe-200d-2642-fe0f.svg","man_pouting_tone5":"1f64e-1f3ff-200d-2642-fe0f.svg","man_raising_hand":"1f64b-200d-2642-fe0f.svg","man_raising_hand_tone1":"1f64b-1f3fb-200d-2642-fe0f.svg","man_raising_hand_tone2":"1f64b-1f3fc-200d-2642-fe0f.svg","man_raising_hand_tone3":"1f64b-1f3fd-200d-2642-fe0f.svg","man_raising_hand_tone4":"1f64b-1f3fe-200d-2642-fe0f.svg","man_raising_hand_tone5":"1f64b-1f3ff-200d-2642-fe0f.svg","man_red_haired":"1f468-200d-1f9b0.svg","man_red_haired_tone1":"1f468-1f3fb-200d-1f9b0.svg","man_red_haired_tone2":"1f468-1f3fc-200d-1f9b0.svg","man_red_haired_tone3":"1f468-1f3fd-200d-1f9b0.svg","man_red_haired_tone4":"1f468-1f3fe-200d-1f9b0.svg","man_red_haired_tone5":"1f468-1f3ff-200d-1f9b0.svg","man_rowing_boat":"1f6a3-200d-2642-fe0f.svg","man_rowing_boat_tone1":"1f6a3-1f3fb-200d-2642-fe0f.svg","man_rowing_boat_tone2":"1f6a3-1f3fc-200d-2642-fe0f.svg","man_rowing_boat_tone3":"1f6a3-1f3fd-200d-2642-fe0f.svg","man_rowing_boat_tone4":"1f6a3-1f3fe-200d-2642-fe0f.svg","man_rowing_boat_tone5":"1f6a3-1f3ff-200d-2642-fe0f.svg","man_running":"1f3c3-200d-2642-fe0f.svg","man_running_tone1":"1f3c3-1f3fb-200d-2642-fe0f.svg","man_running_tone2":"1f3c3-1f3fc-200d-2642-fe0f.svg","man_running_tone3":"1f3c3-1f3fd-200d-2642-fe0f.svg","man_running_tone4":"1f3c3-1f3fe-200d-2642-fe0f.svg","man_running_tone5":"1f3c3-1f3ff-200d-2642-fe0f.svg","man_scientist":"1f468-200d-1f52c.svg","man_scientist_tone1":"1f468-1f3fb-200d-1f52c.svg","man_scientist_tone2":"1f468-1f3fc-200d-1f52c.svg","man_scientist_tone3":"1f468-1f3fd-200d-1f52c.svg","man_scientist_tone4":"1f468-1f3fe-200d-1f52c.svg","man_scientist_tone5":"1f468-1f3ff-200d-1f52c.svg","man_shrugging":"1f937-200d-2642-fe0f.svg","man_shrugging_tone1":"1f937-1f3fb-200d-2642-fe0f.svg","man_shrugging_tone2":"1f937-1f3fc-200d-2642-fe0f.svg","man_shrugging_tone3":"1f937-1f3fd-200d-2642-fe0f.svg","man_shrugging_tone4":"1f937-1f3fe-200d-2642-fe0f.svg","man_shrugging_tone5":"1f937-1f3ff-200d-2642-fe0f.svg","man_singer":"1f468-200d-1f3a4.svg","man_singer_tone1":"1f468-1f3fb-200d-1f3a4.svg","man_singer_tone2":"1f468-1f3fc-200d-1f3a4.svg","man_singer_tone3":"1f468-1f3fd-200d-1f3a4.svg","man_singer_tone4":"1f468-1f3fe-200d-1f3a4.svg","man_singer_tone5":"1f468-1f3ff-200d-1f3a4.svg","man_standing":"1f9cd-200d-2642-fe0f.svg","man_standing_tone1":"1f9cd-1f3fb-200d-2642-fe0f.svg","man_standing_tone2":"1f9cd-1f3fc-200d-2642-fe0f.svg","man_standing_tone3":"1f9cd-1f3fd-200d-2642-fe0f.svg","man_standing_tone4":"1f9cd-1f3fe-200d-2642-fe0f.svg","man_standing_tone5":"1f9cd-1f3ff-200d-2642-fe0f.svg","man_student":"1f468-200d-1f393.svg","man_student_tone1":"1f468-1f3fb-200d-1f393.svg","man_student_tone2":"1f468-1f3fc-200d-1f393.svg","man_student_tone3":"1f468-1f3fd-200d-1f393.svg","man_student_tone4":"1f468-1f3fe-200d-1f393.svg","man_student_tone5":"1f468-1f3ff-200d-1f393.svg","man_superhero":"1f9b8-200d-2642-fe0f.svg","man_superhero_tone1":"1f9b8-1f3fb-200d-2642-fe0f.svg","man_superhero_tone2":"1f9b8-1f3fc-200d-2642-fe0f.svg","man_superhero_tone3":"1f9b8-1f3fd-200d-2642-fe0f.svg","man_superhero_tone4":"1f9b8-1f3fe-200d-2642-fe0f.svg","man_superhero_tone5":"1f9b8-1f3ff-200d-2642-fe0f.svg","man_supervillain":"1f9b9-200d-2642-fe0f.svg","man_supervillain_tone1":"1f9b9-1f3fb-200d-2642-fe0f.svg","man_supervillain_tone2":"1f9b9-1f3fc-200d-2642-fe0f.svg","man_supervillain_tone3":"1f9b9-1f3fd-200d-2642-fe0f.svg","man_supervillain_tone4":"1f9b9-1f3fe-200d-2642-fe0f.svg","man_supervillain_tone5":"1f9b9-1f3ff-200d-2642-fe0f.svg","man_surfing":"1f3c4-200d-2642-fe0f.svg","man_surfing_tone1":"1f3c4-1f3fb-200d-2642-fe0f.svg","man_surfing_tone2":"1f3c4-1f3fc-200d-2642-fe0f.svg","man_surfing_tone3":"1f3c4-1f3fd-200d-2642-fe0f.svg","man_surfing_tone4":"1f3c4-1f3fe-200d-2642-fe0f.svg","man_surfing_tone5":"1f3c4-1f3ff-200d-2642-fe0f.svg","man_swimming":"1f3ca-200d-2642-fe0f.svg","man_swimming_tone1":"1f3ca-1f3fb-200d-2642-fe0f.svg","man_swimming_tone2":"1f3ca-1f3fc-200d-2642-fe0f.svg","man_swimming_tone3":"1f3ca-1f3fd-200d-2642-fe0f.svg","man_swimming_tone4":"1f3ca-1f3fe-200d-2642-fe0f.svg","man_swimming_tone5":"1f3ca-1f3ff-200d-2642-fe0f.svg","man_teacher":"1f468-200d-1f3eb.svg","man_teacher_tone1":"1f468-1f3fb-200d-1f3eb.svg","man_teacher_tone2":"1f468-1f3fc-200d-1f3eb.svg","man_teacher_tone3":"1f468-1f3fd-200d-1f3eb.svg","man_teacher_tone4":"1f468-1f3fe-200d-1f3eb.svg","man_teacher_tone5":"1f468-1f3ff-200d-1f3eb.svg","man_technologist":"1f468-200d-1f4bb.svg","man_technologist_tone1":"1f468-1f3fb-200d-1f4bb.svg","man_technologist_tone2":"1f468-1f3fc-200d-1f4bb.svg","man_technologist_tone3":"1f468-1f3fd-200d-1f4bb.svg","man_technologist_tone4":"1f468-1f3fe-200d-1f4bb.svg","man_technologist_tone5":"1f468-1f3ff-200d-1f4bb.svg","man_tipping_hand":"1f481-200d-2642-fe0f.svg","man_tipping_hand_tone1":"1f481-1f3fb-200d-2642-fe0f.svg","man_tipping_hand_tone2":"1f481-1f3fc-200d-2642-fe0f.svg","man_tipping_hand_tone3":"1f481-1f3fd-200d-2642-fe0f.svg","man_tipping_hand_tone4":"1f481-1f3fe-200d-2642-fe0f.svg","man_tipping_hand_tone5":"1f481-1f3ff-200d-2642-fe0f.svg","man_tone1":"1f468-1f3fb.svg","man_tone1_beard":"1f9d4-1f3fb-200d-2642-fe0f.svg","man_tone2":"1f468-1f3fc.svg","man_tone2_beard":"1f9d4-1f3fc-200d-2642-fe0f.svg","man_tone3":"1f468-1f3fd.svg","man_tone3_beard":"1f9d4-1f3fd-200d-2642-fe0f.svg","man_tone4":"1f468-1f3fe.svg","man_tone4_beard":"1f9d4-1f3fe-200d-2642-fe0f.svg","man_tone5":"1f468-1f3ff.svg","man_tone5_beard":"1f9d4-1f3ff-200d-2642-fe0f.svg","man_vampire":"1f9db-200d-2642-fe0f.svg","man_vampire_tone1":"1f9db-1f3fb-200d-2642-fe0f.svg","man_vampire_tone2":"1f9db-1f3fc-200d-2642-fe0f.svg","man_vampire_tone3":"1f9db-1f3fd-200d-2642-fe0f.svg","man_vampire_tone4":"1f9db-1f3fe-200d-2642-fe0f.svg","man_vampire_tone5":"1f9db-1f3ff-200d-2642-fe0f.svg","man_walking":"1f6b6-200d-2642-fe0f.svg","man_walking_tone1":"1f6b6-1f3fb-200d-2642-fe0f.svg","man_walking_tone2":"1f6b6-1f3fc-200d-2642-fe0f.svg","man_walking_tone3":"1f6b6-1f3fd-200d-2642-fe0f.svg","man_walking_tone4":"1f6b6-1f3fe-200d-2642-fe0f.svg","man_walking_tone5":"1f6b6-1f3ff-200d-2642-fe0f.svg","man_wearing_turban":"1f473-200d-2642-fe0f.svg","man_wearing_turban_tone1":"1f473-1f3fb-200d-2642-fe0f.svg","man_wearing_turban_tone2":"1f473-1f3fc-200d-2642-fe0f.svg","man_wearing_turban_tone3":"1f473-1f3fd-200d-2642-fe0f.svg","man_wearing_turban_tone4":"1f473-1f3fe-200d-2642-fe0f.svg","man_wearing_turban_tone5":"1f473-1f3ff-200d-2642-fe0f.svg","man_white_haired":"1f468-200d-1f9b3.svg","man_white_haired_tone1":"1f468-1f3fb-200d-1f9b3.svg","man_white_haired_tone2":"1f468-1f3fc-200d-1f9b3.svg","man_white_haired_tone3":"1f468-1f3fd-200d-1f9b3.svg","man_white_haired_tone4":"1f468-1f3fe-200d-1f9b3.svg","man_white_haired_tone5":"1f468-1f3ff-200d-1f9b3.svg","man_with_chinese_cap":"1f472.svg","man_with_chinese_cap_tone1":"1f472-1f3fb.svg","man_with_chinese_cap_tone2":"1f472-1f3fc.svg","man_with_chinese_cap_tone3":"1f472-1f3fd.svg","man_with_chinese_cap_tone4":"1f472-1f3fe.svg","man_with_chinese_cap_tone5":"1f472-1f3ff.svg","man_with_probing_cane":"1f468-200d-1f9af.svg","man_with_probing_cane_tone1":"1f468-1f3fb-200d-1f9af.svg","man_with_probing_cane_tone2":"1f468-1f3fc-200d-1f9af.svg","man_with_probing_cane_tone3":"1f468-1f3fd-200d-1f9af.svg","man_with_probing_cane_tone4":"1f468-1f3fe-200d-1f9af.svg","man_with_probing_cane_tone5":"1f468-1f3ff-200d-1f9af.svg","man_with_veil":"1f470-200d-2642-fe0f.svg","man_with_veil_tone1":"1f470-1f3fb-200d-2642-fe0f.svg","man_with_veil_tone2":"1f470-1f3fc-200d-2642-fe0f.svg","man_with_veil_tone3":"1f470-1f3fd-200d-2642-fe0f.svg","man_with_veil_tone4":"1f470-1f3fe-200d-2642-fe0f.svg","man_with_veil_tone5":"1f470-1f3ff-200d-2642-fe0f.svg","man_zombie":"1f9df-200d-2642-fe0f.svg","mango":"1f96d.svg","mans_shoe":"1f45e.svg","manual_wheelchair":"1f9bd.svg","map":"1f5fa.svg","maple_leaf":"1f341.svg","martial_arts_uniform":"1f94b.svg","mask":"1f637.svg","mate":"1f9c9.svg","meat_on_bone":"1f356.svg","mechanic":"1f9d1-200d-1f527.svg","mechanic_tone1":"1f9d1-1f3fb-200d-1f527.svg","mechanic_tone2":"1f9d1-1f3fc-200d-1f527.svg","mechanic_tone3":"1f9d1-1f3fd-200d-1f527.svg","mechanic_tone4":"1f9d1-1f3fe-200d-1f527.svg","mechanic_tone5":"1f9d1-1f3ff-200d-1f527.svg","mechanical_arm":"1f9be.svg","mechanical_leg":"1f9bf.svg","medal":"1f3c5.svg","medical_symbol":"2695.svg","mega":"1f4e3.svg","melon":"1f348.svg","melting_face":"1fae0.svg","men_holding_hands_tone1":"1f46c-1f3fb.svg","men_holding_hands_tone1_tone2":"1f468-1f3fb-200d-1f91d-200d-1f468-1f3fc.svg","men_holding_hands_tone1_tone3":"1f468-1f3fb-200d-1f91d-200d-1f468-1f3fd.svg","men_holding_hands_tone1_tone4":"1f468-1f3fb-200d-1f91d-200d-1f468-1f3fe.svg","men_holding_hands_tone1_tone5":"1f468-1f3fb-200d-1f91d-200d-1f468-1f3ff.svg","men_holding_hands_tone2":"1f46c-1f3fc.svg","men_holding_hands_tone2_tone1":"1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg","men_holding_hands_tone2_tone3":"1f468-1f3fc-200d-1f91d-200d-1f468-1f3fd.svg","men_holding_hands_tone2_tone4":"1f468-1f3fc-200d-1f91d-200d-1f468-1f3fe.svg","men_holding_hands_tone2_tone5":"1f468-1f3fc-200d-1f91d-200d-1f468-1f3ff.svg","men_holding_hands_tone3":"1f46c-1f3fd.svg","men_holding_hands_tone3_tone1":"1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg","men_holding_hands_tone3_tone2":"1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg","men_holding_hands_tone3_tone4":"1f468-1f3fd-200d-1f91d-200d-1f468-1f3fe.svg","men_holding_hands_tone3_tone5":"1f468-1f3fd-200d-1f91d-200d-1f468-1f3ff.svg","men_holding_hands_tone4":"1f46c-1f3fe.svg","men_holding_hands_tone4_tone1":"1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg","men_holding_hands_tone4_tone2":"1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg","men_holding_hands_tone4_tone3":"1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg","men_holding_hands_tone4_tone5":"1f468-1f3fe-200d-1f91d-200d-1f468-1f3ff.svg","men_holding_hands_tone5":"1f46c-1f3ff.svg","men_holding_hands_tone5_tone1":"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg","men_holding_hands_tone5_tone2":"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg","men_holding_hands_tone5_tone3":"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg","men_holding_hands_tone5_tone4":"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg","men_with_bunny_ears_partying":"1f46f-200d-2642-fe0f.svg","men_wrestling":"1f93c-200d-2642-fe0f.svg","mending_heart":"2764-fe0f-200d-1fa79.svg","menorah":"1f54e.svg","mens":"1f6b9.svg","mermaid":"1f9dc-200d-2640-fe0f.svg","mermaid_tone1":"1f9dc-1f3fb-200d-2640-fe0f.svg","mermaid_tone2":"1f9dc-1f3fc-200d-2640-fe0f.svg","mermaid_tone3":"1f9dc-1f3fd-200d-2640-fe0f.svg","mermaid_tone4":"1f9dc-1f3fe-200d-2640-fe0f.svg","mermaid_tone5":"1f9dc-1f3ff-200d-2640-fe0f.svg","merman":"1f9dc-200d-2642-fe0f.svg","merman_tone1":"1f9dc-1f3fb-200d-2642-fe0f.svg","merman_tone2":"1f9dc-1f3fc-200d-2642-fe0f.svg","merman_tone3":"1f9dc-1f3fd-200d-2642-fe0f.svg","merman_tone4":"1f9dc-1f3fe-200d-2642-fe0f.svg","merman_tone5":"1f9dc-1f3ff-200d-2642-fe0f.svg","merperson":"1f9dc.svg","merperson_tone1":"1f9dc-1f3fb.svg","merperson_tone2":"1f9dc-1f3fc.svg","merperson_tone3":"1f9dc-1f3fd.svg","merperson_tone4":"1f9dc-1f3fe.svg","merperson_tone5":"1f9dc-1f3ff.svg","metal":"1f918.svg","metal_tone1":"1f918-1f3fb.svg","metal_tone2":"1f918-1f3fc.svg","metal_tone3":"1f918-1f3fd.svg","metal_tone4":"1f918-1f3fe.svg","metal_tone5":"1f918-1f3ff.svg","metro":"1f687.svg","microbe":"1f9a0.svg","microphone2":"1f399.svg","microphone":"1f3a4.svg","microscope":"1f52c.svg","middle_finger":"1f595.svg","middle_finger_tone1":"1f595-1f3fb.svg","middle_finger_tone2":"1f595-1f3fc.svg","middle_finger_tone3":"1f595-1f3fd.svg","middle_finger_tone4":"1f595-1f3fe.svg","middle_finger_tone5":"1f595-1f3ff.svg","military_helmet":"1fa96.svg","military_medal":"1f396.svg","milk":"1f95b.svg","milky_way":"1f30c.svg","minibus":"1f690.svg","minidisc":"1f4bd.svg","mirror":"1fa9e.svg","mirror_ball":"1faa9.svg","mobile_phone":"1f4f1.svg","mobile_phone_off":"1f4f4.svg","money_mouth":"1f911.svg","money_with_wings":"1f4b8.svg","moneybag":"1f4b0.svg","monkey":"1f412.svg","monkey_face":"1f435.svg","monorail":"1f69d.svg","moon_cake":"1f96e.svg","mortar_board":"1f393.svg","mosque":"1f54c.svg","mosquito":"1f99f.svg","motor_scooter":"1f6f5.svg","motorboat":"1f6e5.svg","motorcycle":"1f3cd.svg","motorized_wheelchair":"1f9bc.svg","motorway":"1f6e3.svg","mount_fuji":"1f5fb.svg","mountain":"26f0.svg","mountain_cableway":"1f6a0.svg","mountain_railway":"1f69e.svg","mountain_snow":"1f3d4.svg","mouse2":"1f401.svg","mouse":"1f42d.svg","mouse_three_button":"1f5b1.svg","mouse_trap":"1faa4.svg","movie_camera":"1f3a5.svg","moyai":"1f5ff.svg","mrs_claus":"1f936.svg","mrs_claus_tone1":"1f936-1f3fb.svg","mrs_claus_tone2":"1f936-1f3fc.svg","mrs_claus_tone3":"1f936-1f3fd.svg","mrs_claus_tone4":"1f936-1f3fe.svg","mrs_claus_tone5":"1f936-1f3ff.svg","muscle":"1f4aa.svg","muscle_tone1":"1f4aa-1f3fb.svg","muscle_tone2":"1f4aa-1f3fc.svg","muscle_tone3":"1f4aa-1f3fd.svg","muscle_tone4":"1f4aa-1f3fe.svg","muscle_tone5":"1f4aa-1f3ff.svg","mushroom":"1f344.svg","musical_keyboard":"1f3b9.svg","musical_note":"1f3b5.svg","musical_score":"1f3bc.svg","mute":"1f507.svg","mx_claus":"1f9d1-200d-1f384.svg","mx_claus_tone1":"1f9d1-1f3fb-200d-1f384.svg","mx_claus_tone2":"1f9d1-1f3fc-200d-1f384.svg","mx_claus_tone3":"1f9d1-1f3fd-200d-1f384.svg","mx_claus_tone4":"1f9d1-1f3fe-200d-1f384.svg","mx_claus_tone5":"1f9d1-1f3ff-200d-1f384.svg","nail_care":"1f485.svg","nail_care_tone1":"1f485-1f3fb.svg","nail_care_tone2":"1f485-1f3fc.svg","nail_care_tone3":"1f485-1f3fd.svg","nail_care_tone4":"1f485-1f3fe.svg","nail_care_tone5":"1f485-1f3ff.svg","name_badge":"1f4db.svg","nauseated_face":"1f922.svg","nazar_amulet":"1f9ff.svg","necktie":"1f454.svg","negative_squared_cross_mark":"274e.svg","nerd":"1f913.svg","nest_with_eggs":"1faba.svg","nesting_dolls":"1fa86.svg","neutral_face":"1f610.svg","new":"1f195.svg","new_moon":"1f311.svg","new_moon_with_face":"1f31a.svg","newspaper2":"1f5de.svg","newspaper":"1f4f0.svg","ng":"1f196.svg","night_with_stars":"1f303.svg","nine":"39-20e3.svg","ninja":"1f977.svg","ninja_tone1":"1f977-1f3fb.svg","ninja_tone2":"1f977-1f3fc.svg","ninja_tone3":"1f977-1f3fd.svg","ninja_tone4":"1f977-1f3fe.svg","ninja_tone5":"1f977-1f3ff.svg","no_bell":"1f515.svg","no_bicycles":"1f6b3.svg","no_entry":"26d4.svg","no_entry_sign":"1f6ab.svg","no_mobile_phones":"1f4f5.svg","no_mouth":"1f636.svg","no_pedestrians":"1f6b7.svg","no_smoking":"1f6ad.svg","non-potable_water":"1f6b1.svg","nose":"1f443.svg","nose_tone1":"1f443-1f3fb.svg","nose_tone2":"1f443-1f3fc.svg","nose_tone3":"1f443-1f3fd.svg","nose_tone4":"1f443-1f3fe.svg","nose_tone5":"1f443-1f3ff.svg","notebook":"1f4d3.svg","notebook_with_decorative_cover":"1f4d4.svg","notepad_spiral":"1f5d2.svg","notes":"1f3b6.svg","nut_and_bolt":"1f529.svg","o2":"1f17e.svg","o":"2b55.svg","ocean":"1f30a.svg","octagonal_sign":"1f6d1.svg","octopus":"1f419.svg","oden":"1f362.svg","office":"1f3e2.svg","office_worker":"1f9d1-200d-1f4bc.svg","office_worker_tone1":"1f9d1-1f3fb-200d-1f4bc.svg","office_worker_tone2":"1f9d1-1f3fc-200d-1f4bc.svg","office_worker_tone3":"1f9d1-1f3fd-200d-1f4bc.svg","office_worker_tone4":"1f9d1-1f3fe-200d-1f4bc.svg","office_worker_tone5":"1f9d1-1f3ff-200d-1f4bc.svg","oil":"1f6e2.svg","ok":"1f197.svg","ok_hand":"1f44c.svg","ok_hand_tone1":"1f44c-1f3fb.svg","ok_hand_tone2":"1f44c-1f3fc.svg","ok_hand_tone3":"1f44c-1f3fd.svg","ok_hand_tone4":"1f44c-1f3fe.svg","ok_hand_tone5":"1f44c-1f3ff.svg","older_adult":"1f9d3.svg","older_adult_tone1":"1f9d3-1f3fb.svg","older_adult_tone2":"1f9d3-1f3fc.svg","older_adult_tone3":"1f9d3-1f3fd.svg","older_adult_tone4":"1f9d3-1f3fe.svg","older_adult_tone5":"1f9d3-1f3ff.svg","older_man":"1f474.svg","older_man_tone1":"1f474-1f3fb.svg","older_man_tone2":"1f474-1f3fc.svg","older_man_tone3":"1f474-1f3fd.svg","older_man_tone4":"1f474-1f3fe.svg","older_man_tone5":"1f474-1f3ff.svg","older_woman":"1f475.svg","older_woman_tone1":"1f475-1f3fb.svg","older_woman_tone2":"1f475-1f3fc.svg","older_woman_tone3":"1f475-1f3fd.svg","older_woman_tone4":"1f475-1f3fe.svg","older_woman_tone5":"1f475-1f3ff.svg","olive":"1fad2.svg","om_symbol":"1f549.svg","on":"1f51b.svg","oncoming_automobile":"1f698.svg","oncoming_bus":"1f68d.svg","oncoming_police_car":"1f694.svg","oncoming_taxi":"1f696.svg","one":"31-20e3.svg","one_piece_swimsuit":"1fa71.svg","onion":"1f9c5.svg","open_file_folder":"1f4c2.svg","open_hands":"1f450.svg","open_hands_tone1":"1f450-1f3fb.svg","open_hands_tone2":"1f450-1f3fc.svg","open_hands_tone3":"1f450-1f3fd.svg","open_hands_tone4":"1f450-1f3fe.svg","open_hands_tone5":"1f450-1f3ff.svg","open_mouth":"1f62e.svg","ophiuchus":"26ce.svg","orange_book":"1f4d9.svg","orange_circle":"1f7e0.svg","orange_heart":"1f9e1.svg","orange_square":"1f7e7.svg","orangutan":"1f9a7.svg","orthodox_cross":"2626.svg","otter":"1f9a6.svg","outbox_tray":"1f4e4.svg","owl":"1f989.svg","ox":"1f402.svg","oyster":"1f9aa.svg","package":"1f4e6.svg","page_facing_up":"1f4c4.svg","page_with_curl":"1f4c3.svg","pager":"1f4df.svg","paintbrush":"1f58c.svg","palm_down_hand":"1faf3.svg","palm_down_hand_tone1":"1faf3-1f3fb.svg","palm_down_hand_tone2":"1faf3-1f3fc.svg","palm_down_hand_tone3":"1faf3-1f3fd.svg","palm_down_hand_tone4":"1faf3-1f3fe.svg","palm_down_hand_tone5":"1faf3-1f3ff.svg","palm_tree":"1f334.svg","palm_up_hand":"1faf4.svg","palm_up_hand_tone1":"1faf4-1f3fb.svg","palm_up_hand_tone2":"1faf4-1f3fc.svg","palm_up_hand_tone3":"1faf4-1f3fd.svg","palm_up_hand_tone4":"1faf4-1f3fe.svg","palm_up_hand_tone5":"1faf4-1f3ff.svg","palms_up_together":"1f932.svg","palms_up_together_tone1":"1f932-1f3fb.svg","palms_up_together_tone2":"1f932-1f3fc.svg","palms_up_together_tone3":"1f932-1f3fd.svg","palms_up_together_tone4":"1f932-1f3fe.svg","palms_up_together_tone5":"1f932-1f3ff.svg","pancakes":"1f95e.svg","panda_face":"1f43c.svg","paperclip":"1f4ce.svg","paperclips":"1f587.svg","parachute":"1fa82.svg","park":"1f3de.svg","parking":"1f17f.svg","parrot":"1f99c.svg","part_alternation_mark":"303d.svg","partly_sunny":"26c5.svg","partying_face":"1f973.svg","passport_control":"1f6c2.svg","pause_button":"23f8.svg","peace":"262e.svg","peach":"1f351.svg","peacock":"1f99a.svg","peanuts":"1f95c.svg","pear":"1f350.svg","pen_ballpoint":"1f58a.svg","pen_fountain":"1f58b.svg","pencil2":"270f.svg","pencil":"1f4dd.svg","penguin":"1f427.svg","pensive":"1f614.svg","people_holding_hands":"1f9d1-200d-1f91d-200d-1f9d1.svg","people_holding_hands_tone1":"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb.svg","people_holding_hands_tone1_tone2":"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fc.svg","people_holding_hands_tone1_tone3":"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fd.svg","people_holding_hands_tone1_tone4":"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fe.svg","people_holding_hands_tone1_tone5":"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3ff.svg","people_holding_hands_tone2":"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc.svg","people_holding_hands_tone2_tone1":"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb.svg","people_holding_hands_tone2_tone3":"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fd.svg","people_holding_hands_tone2_tone4":"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fe.svg","people_holding_hands_tone2_tone5":"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3ff.svg","people_holding_hands_tone3":"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd.svg","people_holding_hands_tone3_tone1":"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb.svg","people_holding_hands_tone3_tone2":"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc.svg","people_holding_hands_tone3_tone4":"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fe.svg","people_holding_hands_tone3_tone5":"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3ff.svg","people_holding_hands_tone4":"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe.svg","people_holding_hands_tone4_tone1":"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb.svg","people_holding_hands_tone4_tone2":"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc.svg","people_holding_hands_tone4_tone3":"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd.svg","people_holding_hands_tone4_tone5":"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3ff.svg","people_holding_hands_tone5":"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff.svg","people_holding_hands_tone5_tone1":"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb.svg","people_holding_hands_tone5_tone2":"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc.svg","people_holding_hands_tone5_tone3":"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd.svg","people_holding_hands_tone5_tone4":"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe.svg","people_hugging":"1fac2.svg","people_with_bunny_ears_partying":"1f46f.svg","people_wrestling":"1f93c.svg","performing_arts":"1f3ad.svg","persevere":"1f623.svg","person_bald":"1f9d1-200d-1f9b2.svg","person_biking":"1f6b4.svg","person_biking_tone1":"1f6b4-1f3fb.svg","person_biking_tone2":"1f6b4-1f3fc.svg","person_biking_tone3":"1f6b4-1f3fd.svg","person_biking_tone4":"1f6b4-1f3fe.svg","person_biking_tone5":"1f6b4-1f3ff.svg","person_bouncing_ball":"26f9.svg","person_bouncing_ball_tone1":"26f9-1f3fb.svg","person_bouncing_ball_tone2":"26f9-1f3fc.svg","person_bouncing_ball_tone3":"26f9-1f3fd.svg","person_bouncing_ball_tone4":"26f9-1f3fe.svg","person_bouncing_ball_tone5":"26f9-1f3ff.svg","person_bowing":"1f647.svg","person_bowing_tone1":"1f647-1f3fb.svg","person_bowing_tone2":"1f647-1f3fc.svg","person_bowing_tone3":"1f647-1f3fd.svg","person_bowing_tone4":"1f647-1f3fe.svg","person_bowing_tone5":"1f647-1f3ff.svg","person_climbing":"1f9d7.svg","person_climbing_tone1":"1f9d7-1f3fb.svg","person_climbing_tone2":"1f9d7-1f3fc.svg","person_climbing_tone3":"1f9d7-1f3fd.svg","person_climbing_tone4":"1f9d7-1f3fe.svg","person_climbing_tone5":"1f9d7-1f3ff.svg","person_curly_hair":"1f9d1-200d-1f9b1.svg","person_doing_cartwheel":"1f938.svg","person_doing_cartwheel_tone1":"1f938-1f3fb.svg","person_doing_cartwheel_tone2":"1f938-1f3fc.svg","person_doing_cartwheel_tone3":"1f938-1f3fd.svg","person_doing_cartwheel_tone4":"1f938-1f3fe.svg","person_doing_cartwheel_tone5":"1f938-1f3ff.svg","person_facepalming":"1f926.svg","person_facepalming_tone1":"1f926-1f3fb.svg","person_facepalming_tone2":"1f926-1f3fc.svg","person_facepalming_tone3":"1f926-1f3fd.svg","person_facepalming_tone4":"1f926-1f3fe.svg","person_facepalming_tone5":"1f926-1f3ff.svg","person_feeding_baby":"1f9d1-200d-1f37c.svg","person_feeding_baby_tone1":"1f9d1-1f3fb-200d-1f37c.svg","person_feeding_baby_tone2":"1f9d1-1f3fc-200d-1f37c.svg","person_feeding_baby_tone3":"1f9d1-1f3fd-200d-1f37c.svg","person_feeding_baby_tone4":"1f9d1-1f3fe-200d-1f37c.svg","person_feeding_baby_tone5":"1f9d1-1f3ff-200d-1f37c.svg","person_fencing":"1f93a.svg","person_frowning":"1f64d.svg","person_frowning_tone1":"1f64d-1f3fb.svg","person_frowning_tone2":"1f64d-1f3fc.svg","person_frowning_tone3":"1f64d-1f3fd.svg","person_frowning_tone4":"1f64d-1f3fe.svg","person_frowning_tone5":"1f64d-1f3ff.svg","person_gesturing_no":"1f645.svg","person_gesturing_no_tone1":"1f645-1f3fb.svg","person_gesturing_no_tone2":"1f645-1f3fc.svg","person_gesturing_no_tone3":"1f645-1f3fd.svg","person_gesturing_no_tone4":"1f645-1f3fe.svg","person_gesturing_no_tone5":"1f645-1f3ff.svg","person_gesturing_ok":"1f646.svg","person_gesturing_ok_tone1":"1f646-1f3fb.svg","person_gesturing_ok_tone2":"1f646-1f3fc.svg","person_gesturing_ok_tone3":"1f646-1f3fd.svg","person_gesturing_ok_tone4":"1f646-1f3fe.svg","person_gesturing_ok_tone5":"1f646-1f3ff.svg","person_getting_haircut":"1f487.svg","person_getting_haircut_tone1":"1f487-1f3fb.svg","person_getting_haircut_tone2":"1f487-1f3fc.svg","person_getting_haircut_tone3":"1f487-1f3fd.svg","person_getting_haircut_tone4":"1f487-1f3fe.svg","person_getting_haircut_tone5":"1f487-1f3ff.svg","person_getting_massage":"1f486.svg","person_getting_massage_tone1":"1f486-1f3fb.svg","person_getting_massage_tone2":"1f486-1f3fc.svg","person_getting_massage_tone3":"1f486-1f3fd.svg","person_getting_massage_tone4":"1f486-1f3fe.svg","person_getting_massage_tone5":"1f486-1f3ff.svg","person_golfing":"1f3cc.svg","person_golfing_tone1":"1f3cc-1f3fb.svg","person_golfing_tone2":"1f3cc-1f3fc.svg","person_golfing_tone3":"1f3cc-1f3fd.svg","person_golfing_tone4":"1f3cc-1f3fe.svg","person_golfing_tone5":"1f3cc-1f3ff.svg","person_in_bed_tone1":"1f6cc-1f3fb.svg","person_in_bed_tone2":"1f6cc-1f3fc.svg","person_in_bed_tone3":"1f6cc-1f3fd.svg","person_in_bed_tone4":"1f6cc-1f3fe.svg","person_in_bed_tone5":"1f6cc-1f3ff.svg","person_in_lotus_position":"1f9d8.svg","person_in_lotus_position_tone1":"1f9d8-1f3fb.svg","person_in_lotus_position_tone2":"1f9d8-1f3fc.svg","person_in_lotus_position_tone3":"1f9d8-1f3fd.svg","person_in_lotus_position_tone4":"1f9d8-1f3fe.svg","person_in_lotus_position_tone5":"1f9d8-1f3ff.svg","person_in_manual_wheelchair":"1f9d1-200d-1f9bd.svg","person_in_manual_wheelchair_tone1":"1f9d1-1f3fb-200d-1f9bd.svg","person_in_manual_wheelchair_tone2":"1f9d1-1f3fc-200d-1f9bd.svg","person_in_manual_wheelchair_tone3":"1f9d1-1f3fd-200d-1f9bd.svg","person_in_manual_wheelchair_tone4":"1f9d1-1f3fe-200d-1f9bd.svg","person_in_manual_wheelchair_tone5":"1f9d1-1f3ff-200d-1f9bd.svg","person_in_motorized_wheelchair":"1f9d1-200d-1f9bc.svg","person_in_motorized_wheelchair_tone1":"1f9d1-1f3fb-200d-1f9bc.svg","person_in_motorized_wheelchair_tone2":"1f9d1-1f3fc-200d-1f9bc.svg","person_in_motorized_wheelchair_tone3":"1f9d1-1f3fd-200d-1f9bc.svg","person_in_motorized_wheelchair_tone4":"1f9d1-1f3fe-200d-1f9bc.svg","person_in_motorized_wheelchair_tone5":"1f9d1-1f3ff-200d-1f9bc.svg","person_in_steamy_room":"1f9d6.svg","person_in_steamy_room_tone1":"1f9d6-1f3fb.svg","person_in_steamy_room_tone2":"1f9d6-1f3fc.svg","person_in_steamy_room_tone3":"1f9d6-1f3fd.svg","person_in_steamy_room_tone4":"1f9d6-1f3fe.svg","person_in_steamy_room_tone5":"1f9d6-1f3ff.svg","person_in_tuxedo":"1f935.svg","person_in_tuxedo_tone1":"1f935-1f3fb.svg","person_in_tuxedo_tone2":"1f935-1f3fc.svg","person_in_tuxedo_tone3":"1f935-1f3fd.svg","person_in_tuxedo_tone4":"1f935-1f3fe.svg","person_in_tuxedo_tone5":"1f935-1f3ff.svg","person_juggling":"1f939.svg","person_juggling_tone1":"1f939-1f3fb.svg","person_juggling_tone2":"1f939-1f3fc.svg","person_juggling_tone3":"1f939-1f3fd.svg","person_juggling_tone4":"1f939-1f3fe.svg","person_juggling_tone5":"1f939-1f3ff.svg","person_kneeling":"1f9ce.svg","person_kneeling_tone1":"1f9ce-1f3fb.svg","person_kneeling_tone2":"1f9ce-1f3fc.svg","person_kneeling_tone3":"1f9ce-1f3fd.svg","person_kneeling_tone4":"1f9ce-1f3fe.svg","person_kneeling_tone5":"1f9ce-1f3ff.svg","person_lifting_weights":"1f3cb.svg","person_lifting_weights_tone1":"1f3cb-1f3fb.svg","person_lifting_weights_tone2":"1f3cb-1f3fc.svg","person_lifting_weights_tone3":"1f3cb-1f3fd.svg","person_lifting_weights_tone4":"1f3cb-1f3fe.svg","person_lifting_weights_tone5":"1f3cb-1f3ff.svg","person_mountain_biking":"1f6b5.svg","person_mountain_biking_tone1":"1f6b5-1f3fb.svg","person_mountain_biking_tone2":"1f6b5-1f3fc.svg","person_mountain_biking_tone3":"1f6b5-1f3fd.svg","person_mountain_biking_tone4":"1f6b5-1f3fe.svg","person_mountain_biking_tone5":"1f6b5-1f3ff.svg","person_playing_handball":"1f93e.svg","person_playing_handball_tone1":"1f93e-1f3fb.svg","person_playing_handball_tone2":"1f93e-1f3fc.svg","person_playing_handball_tone3":"1f93e-1f3fd.svg","person_playing_handball_tone4":"1f93e-1f3fe.svg","person_playing_handball_tone5":"1f93e-1f3ff.svg","person_playing_water_polo":"1f93d.svg","person_playing_water_polo_tone1":"1f93d-1f3fb.svg","person_playing_water_polo_tone2":"1f93d-1f3fc.svg","person_playing_water_polo_tone3":"1f93d-1f3fd.svg","person_playing_water_polo_tone4":"1f93d-1f3fe.svg","person_playing_water_polo_tone5":"1f93d-1f3ff.svg","person_pouting":"1f64e.svg","person_pouting_tone1":"1f64e-1f3fb.svg","person_pouting_tone2":"1f64e-1f3fc.svg","person_pouting_tone3":"1f64e-1f3fd.svg","person_pouting_tone4":"1f64e-1f3fe.svg","person_pouting_tone5":"1f64e-1f3ff.svg","person_raising_hand":"1f64b.svg","person_raising_hand_tone1":"1f64b-1f3fb.svg","person_raising_hand_tone2":"1f64b-1f3fc.svg","person_raising_hand_tone3":"1f64b-1f3fd.svg","person_raising_hand_tone4":"1f64b-1f3fe.svg","person_raising_hand_tone5":"1f64b-1f3ff.svg","person_red_hair":"1f9d1-200d-1f9b0.svg","person_rowing_boat":"1f6a3.svg","person_rowing_boat_tone1":"1f6a3-1f3fb.svg","person_rowing_boat_tone2":"1f6a3-1f3fc.svg","person_rowing_boat_tone3":"1f6a3-1f3fd.svg","person_rowing_boat_tone4":"1f6a3-1f3fe.svg","person_rowing_boat_tone5":"1f6a3-1f3ff.svg","person_running":"1f3c3.svg","person_running_tone1":"1f3c3-1f3fb.svg","person_running_tone2":"1f3c3-1f3fc.svg","person_running_tone3":"1f3c3-1f3fd.svg","person_running_tone4":"1f3c3-1f3fe.svg","person_running_tone5":"1f3c3-1f3ff.svg","person_shrugging":"1f937.svg","person_shrugging_tone1":"1f937-1f3fb.svg","person_shrugging_tone2":"1f937-1f3fc.svg","person_shrugging_tone3":"1f937-1f3fd.svg","person_shrugging_tone4":"1f937-1f3fe.svg","person_shrugging_tone5":"1f937-1f3ff.svg","person_standing":"1f9cd.svg","person_standing_tone1":"1f9cd-1f3fb.svg","person_standing_tone2":"1f9cd-1f3fc.svg","person_standing_tone3":"1f9cd-1f3fd.svg","person_standing_tone4":"1f9cd-1f3fe.svg","person_standing_tone5":"1f9cd-1f3ff.svg","person_surfing":"1f3c4.svg","person_surfing_tone1":"1f3c4-1f3fb.svg","person_surfing_tone2":"1f3c4-1f3fc.svg","person_surfing_tone3":"1f3c4-1f3fd.svg","person_surfing_tone4":"1f3c4-1f3fe.svg","person_surfing_tone5":"1f3c4-1f3ff.svg","person_swimming":"1f3ca.svg","person_swimming_tone1":"1f3ca-1f3fb.svg","person_swimming_tone2":"1f3ca-1f3fc.svg","person_swimming_tone3":"1f3ca-1f3fd.svg","person_swimming_tone4":"1f3ca-1f3fe.svg","person_swimming_tone5":"1f3ca-1f3ff.svg","person_tipping_hand":"1f481.svg","person_tipping_hand_tone1":"1f481-1f3fb.svg","person_tipping_hand_tone2":"1f481-1f3fc.svg","person_tipping_hand_tone3":"1f481-1f3fd.svg","person_tipping_hand_tone4":"1f481-1f3fe.svg","person_tipping_hand_tone5":"1f481-1f3ff.svg","person_tone1_bald":"1f9d1-1f3fb-200d-1f9b2.svg","person_tone1_curly_hair":"1f9d1-1f3fb-200d-1f9b1.svg","person_tone1_red_hair":"1f9d1-1f3fb-200d-1f9b0.svg","person_tone1_white_hair":"1f9d1-1f3fb-200d-1f9b3.svg","person_tone2_bald":"1f9d1-1f3fc-200d-1f9b2.svg","person_tone2_curly_hair":"1f9d1-1f3fc-200d-1f9b1.svg","person_tone2_red_hair":"1f9d1-1f3fc-200d-1f9b0.svg","person_tone2_white_hair":"1f9d1-1f3fc-200d-1f9b3.svg","person_tone3_bald":"1f9d1-1f3fd-200d-1f9b2.svg","person_tone3_curly_hair":"1f9d1-1f3fd-200d-1f9b1.svg","person_tone3_red_hair":"1f9d1-1f3fd-200d-1f9b0.svg","person_tone3_white_hair":"1f9d1-1f3fd-200d-1f9b3.svg","person_tone4_bald":"1f9d1-1f3fe-200d-1f9b2.svg","person_tone4_curly_hair":"1f9d1-1f3fe-200d-1f9b1.svg","person_tone4_red_hair":"1f9d1-1f3fe-200d-1f9b0.svg","person_tone4_white_hair":"1f9d1-1f3fe-200d-1f9b3.svg","person_tone5_bald":"1f9d1-1f3ff-200d-1f9b2.svg","person_tone5_curly_hair":"1f9d1-1f3ff-200d-1f9b1.svg","person_tone5_red_hair":"1f9d1-1f3ff-200d-1f9b0.svg","person_tone5_white_hair":"1f9d1-1f3ff-200d-1f9b3.svg","person_walking":"1f6b6.svg","person_walking_tone1":"1f6b6-1f3fb.svg","person_walking_tone2":"1f6b6-1f3fc.svg","person_walking_tone3":"1f6b6-1f3fd.svg","person_walking_tone4":"1f6b6-1f3fe.svg","person_walking_tone5":"1f6b6-1f3ff.svg","person_wearing_turban":"1f473.svg","person_wearing_turban_tone1":"1f473-1f3fb.svg","person_wearing_turban_tone2":"1f473-1f3fc.svg","person_wearing_turban_tone3":"1f473-1f3fd.svg","person_wearing_turban_tone4":"1f473-1f3fe.svg","person_wearing_turban_tone5":"1f473-1f3ff.svg","person_white_hair":"1f9d1-200d-1f9b3.svg","person_with_crown":"1fac5.svg","person_with_crown_tone1":"1fac5-1f3fb.svg","person_with_crown_tone2":"1fac5-1f3fc.svg","person_with_crown_tone3":"1fac5-1f3fd.svg","person_with_crown_tone4":"1fac5-1f3fe.svg","person_with_crown_tone5":"1fac5-1f3ff.svg","person_with_probing_cane":"1f9d1-200d-1f9af.svg","person_with_probing_cane_tone1":"1f9d1-1f3fb-200d-1f9af.svg","person_with_probing_cane_tone2":"1f9d1-1f3fc-200d-1f9af.svg","person_with_probing_cane_tone3":"1f9d1-1f3fd-200d-1f9af.svg","person_with_probing_cane_tone4":"1f9d1-1f3fe-200d-1f9af.svg","person_with_probing_cane_tone5":"1f9d1-1f3ff-200d-1f9af.svg","person_with_veil":"1f470.svg","person_with_veil_tone1":"1f470-1f3fb.svg","person_with_veil_tone2":"1f470-1f3fc.svg","person_with_veil_tone3":"1f470-1f3fd.svg","person_with_veil_tone4":"1f470-1f3fe.svg","person_with_veil_tone5":"1f470-1f3ff.svg","petri_dish":"1f9eb.svg","pick":"26cf.svg","pickup_truck":"1f6fb.svg","pie":"1f967.svg","pig2":"1f416.svg","pig":"1f437.svg","pig_nose":"1f43d.svg","pill":"1f48a.svg","pilot":"1f9d1-200d-2708-fe0f.svg","pilot_tone1":"1f9d1-1f3fb-200d-2708-fe0f.svg","pilot_tone2":"1f9d1-1f3fc-200d-2708-fe0f.svg","pilot_tone3":"1f9d1-1f3fd-200d-2708-fe0f.svg","pilot_tone4":"1f9d1-1f3fe-200d-2708-fe0f.svg","pilot_tone5":"1f9d1-1f3ff-200d-2708-fe0f.svg","pinched_fingers":"1f90c.svg","pinched_fingers_tone1":"1f90c-1f3fb.svg","pinched_fingers_tone2":"1f90c-1f3fc.svg","pinched_fingers_tone3":"1f90c-1f3fd.svg","pinched_fingers_tone4":"1f90c-1f3fe.svg","pinched_fingers_tone5":"1f90c-1f3ff.svg","pinching_hand":"1f90f.svg","pinching_hand_tone1":"1f90f-1f3fb.svg","pinching_hand_tone2":"1f90f-1f3fc.svg","pinching_hand_tone3":"1f90f-1f3fd.svg","pinching_hand_tone4":"1f90f-1f3fe.svg","pinching_hand_tone5":"1f90f-1f3ff.svg","pineapple":"1f34d.svg","ping_pong":"1f3d3.svg","pirate_flag":"1f3f4-200d-2620-fe0f.svg","pisces":"2653.svg","pizza":"1f355.svg","piñata":"1fa85.svg","placard":"1faa7.svg","place_of_worship":"1f6d0.svg","play_pause":"23ef.svg","playground_slide":"1f6dd.svg","pleading_face":"1f97a.svg","plunger":"1faa0.svg","point_down":"1f447.svg","point_down_tone1":"1f447-1f3fb.svg","point_down_tone2":"1f447-1f3fc.svg","point_down_tone3":"1f447-1f3fd.svg","point_down_tone4":"1f447-1f3fe.svg","point_down_tone5":"1f447-1f3ff.svg","point_left":"1f448.svg","point_left_tone1":"1f448-1f3fb.svg","point_left_tone2":"1f448-1f3fc.svg","point_left_tone3":"1f448-1f3fd.svg","point_left_tone4":"1f448-1f3fe.svg","point_left_tone5":"1f448-1f3ff.svg","point_right":"1f449.svg","point_right_tone1":"1f449-1f3fb.svg","point_right_tone2":"1f449-1f3fc.svg","point_right_tone3":"1f449-1f3fd.svg","point_right_tone4":"1f449-1f3fe.svg","point_right_tone5":"1f449-1f3ff.svg","point_up":"261d.svg","point_up_2":"1f446.svg","point_up_2_tone1":"1f446-1f3fb.svg","point_up_2_tone2":"1f446-1f3fc.svg","point_up_2_tone3":"1f446-1f3fd.svg","point_up_2_tone4":"1f446-1f3fe.svg","point_up_2_tone5":"1f446-1f3ff.svg","point_up_tone1":"261d-1f3fb.svg","point_up_tone2":"261d-1f3fc.svg","point_up_tone3":"261d-1f3fd.svg","point_up_tone4":"261d-1f3fe.svg","point_up_tone5":"261d-1f3ff.svg","polar_bear":"1f43b-200d-2744-fe0f.svg","police_car":"1f693.svg","police_officer":"1f46e.svg","police_officer_tone1":"1f46e-1f3fb.svg","police_officer_tone2":"1f46e-1f3fc.svg","police_officer_tone3":"1f46e-1f3fd.svg","police_officer_tone4":"1f46e-1f3fe.svg","police_officer_tone5":"1f46e-1f3ff.svg","poodle":"1f429.svg","poop":"1f4a9.svg","popcorn":"1f37f.svg","post_office":"1f3e3.svg","postal_horn":"1f4ef.svg","postbox":"1f4ee.svg","potable_water":"1f6b0.svg","potato":"1f954.svg","potted_plant":"1fab4.svg","pouch":"1f45d.svg","poultry_leg":"1f357.svg","pound":"1f4b7.svg","pouring_liquid":"1fad7.svg","pouting_cat":"1f63e.svg","pray":"1f64f.svg","pray_tone1":"1f64f-1f3fb.svg","pray_tone2":"1f64f-1f3fc.svg","pray_tone3":"1f64f-1f3fd.svg","pray_tone4":"1f64f-1f3fe.svg","pray_tone5":"1f64f-1f3ff.svg","prayer_beads":"1f4ff.svg","pregnant_man":"1fac3.svg","pregnant_man_tone1":"1fac3-1f3fb.svg","pregnant_man_tone2":"1fac3-1f3fc.svg","pregnant_man_tone3":"1fac3-1f3fd.svg","pregnant_man_tone4":"1fac3-1f3fe.svg","pregnant_man_tone5":"1fac3-1f3ff.svg","pregnant_person":"1fac4.svg","pregnant_person_tone1":"1fac4-1f3fb.svg","pregnant_person_tone2":"1fac4-1f3fc.svg","pregnant_person_tone3":"1fac4-1f3fd.svg","pregnant_person_tone4":"1fac4-1f3fe.svg","pregnant_person_tone5":"1fac4-1f3ff.svg","pregnant_woman":"1f930.svg","pregnant_woman_tone1":"1f930-1f3fb.svg","pregnant_woman_tone2":"1f930-1f3fc.svg","pregnant_woman_tone3":"1f930-1f3fd.svg","pregnant_woman_tone4":"1f930-1f3fe.svg","pregnant_woman_tone5":"1f930-1f3ff.svg","pretzel":"1f968.svg","prince":"1f934.svg","prince_tone1":"1f934-1f3fb.svg","prince_tone2":"1f934-1f3fc.svg","prince_tone3":"1f934-1f3fd.svg","prince_tone4":"1f934-1f3fe.svg","prince_tone5":"1f934-1f3ff.svg","princess":"1f478.svg","princess_tone1":"1f478-1f3fb.svg","princess_tone2":"1f478-1f3fc.svg","princess_tone3":"1f478-1f3fd.svg","princess_tone4":"1f478-1f3fe.svg","princess_tone5":"1f478-1f3ff.svg","printer":"1f5a8.svg","probing_cane":"1f9af.svg","projector":"1f4fd.svg","punch":"1f44a.svg","punch_tone1":"1f44a-1f3fb.svg","punch_tone2":"1f44a-1f3fc.svg","punch_tone3":"1f44a-1f3fd.svg","punch_tone4":"1f44a-1f3fe.svg","punch_tone5":"1f44a-1f3ff.svg","purple_circle":"1f7e3.svg","purple_heart":"1f49c.svg","purple_square":"1f7ea.svg","purse":"1f45b.svg","pushpin":"1f4cc.svg","put_litter_in_its_place":"1f6ae.svg","question":"2753.svg","rabbit2":"1f407.svg","rabbit":"1f430.svg","raccoon":"1f99d.svg","race_car":"1f3ce.svg","racehorse":"1f40e.svg","radio":"1f4fb.svg","radio_button":"1f518.svg","radioactive":"2622.svg","rage":"1f621.svg","railway_car":"1f683.svg","railway_track":"1f6e4.svg","rainbow":"1f308.svg","rainbow_flag":"1f3f3-fe0f-200d-1f308.svg","raised_back_of_hand":"1f91a.svg","raised_back_of_hand_tone1":"1f91a-1f3fb.svg","raised_back_of_hand_tone2":"1f91a-1f3fc.svg","raised_back_of_hand_tone3":"1f91a-1f3fd.svg","raised_back_of_hand_tone4":"1f91a-1f3fe.svg","raised_back_of_hand_tone5":"1f91a-1f3ff.svg","raised_hand":"270b.svg","raised_hand_tone1":"270b-1f3fb.svg","raised_hand_tone2":"270b-1f3fc.svg","raised_hand_tone3":"270b-1f3fd.svg","raised_hand_tone4":"270b-1f3fe.svg","raised_hand_tone5":"270b-1f3ff.svg","raised_hands":"1f64c.svg","raised_hands_tone1":"1f64c-1f3fb.svg","raised_hands_tone2":"1f64c-1f3fc.svg","raised_hands_tone3":"1f64c-1f3fd.svg","raised_hands_tone4":"1f64c-1f3fe.svg","raised_hands_tone5":"1f64c-1f3ff.svg","ram":"1f40f.svg","ramen":"1f35c.svg","rat":"1f400.svg","razor":"1fa92.svg","receipt":"1f9fe.svg","record_button":"23fa.svg","recycle":"267b.svg","red_car":"1f697.svg","red_circle":"1f534.svg","red_envelope":"1f9e7.svg","red_haired":"1f9b0.svg","red_square":"1f7e5.svg","regional_indicator_a":"1f1e6.svg","regional_indicator_b":"1f1e7.svg","regional_indicator_c":"1f1e8.svg","regional_indicator_d":"1f1e9.svg","regional_indicator_e":"1f1ea.svg","regional_indicator_f":"1f1eb.svg","regional_indicator_g":"1f1ec.svg","regional_indicator_h":"1f1ed.svg","regional_indicator_i":"1f1ee.svg","regional_indicator_j":"1f1ef.svg","regional_indicator_k":"1f1f0.svg","regional_indicator_l":"1f1f1.svg","regional_indicator_m":"1f1f2.svg","regional_indicator_n":"1f1f3.svg","regional_indicator_o":"1f1f4.svg","regional_indicator_p":"1f1f5.svg","regional_indicator_q":"1f1f6.svg","regional_indicator_r":"1f1f7.svg","regional_indicator_s":"1f1f8.svg","regional_indicator_t":"1f1f9.svg","regional_indicator_u":"1f1fa.svg","regional_indicator_v":"1f1fb.svg","regional_indicator_w":"1f1fc.svg","regional_indicator_x":"1f1fd.svg","regional_indicator_y":"1f1fe.svg","regional_indicator_z":"1f1ff.svg","registered":"ae.svg","relaxed":"263a.svg","relieved":"1f60c.svg","reminder_ribbon":"1f397.svg","repeat":"1f501.svg","repeat_one":"1f502.svg","restroom":"1f6bb.svg","revolving_hearts":"1f49e.svg","rewind":"23ea.svg","rhino":"1f98f.svg","ribbon":"1f380.svg","rice":"1f35a.svg","rice_ball":"1f359.svg","rice_cracker":"1f358.svg","rice_scene":"1f391.svg","right_facing_fist":"1f91c.svg","right_facing_fist_tone1":"1f91c-1f3fb.svg","right_facing_fist_tone2":"1f91c-1f3fc.svg","right_facing_fist_tone3":"1f91c-1f3fd.svg","right_facing_fist_tone4":"1f91c-1f3fe.svg","right_facing_fist_tone5":"1f91c-1f3ff.svg","rightwards_hand":"1faf1.svg","rightwards_hand_tone1":"1faf1-1f3fb.svg","rightwards_hand_tone2":"1faf1-1f3fc.svg","rightwards_hand_tone3":"1faf1-1f3fd.svg","rightwards_hand_tone4":"1faf1-1f3fe.svg","rightwards_hand_tone5":"1faf1-1f3ff.svg","ring":"1f48d.svg","ring_buoy":"1f6df.svg","ringed_planet":"1fa90.svg","robot":"1f916.svg","rock":"1faa8.svg","rocket":"1f680.svg","rofl":"1f923.svg","roll_of_paper":"1f9fb.svg","roller_coaster":"1f3a2.svg","roller_skate":"1f6fc.svg","rolling_eyes":"1f644.svg","rooster":"1f413.svg","rose":"1f339.svg","rosette":"1f3f5.svg","rotating_light":"1f6a8.svg","round_pushpin":"1f4cd.svg","rugby_football":"1f3c9.svg","running_shirt_with_sash":"1f3bd.svg","sa":"1f202.svg","safety_pin":"1f9f7.svg","safety_vest":"1f9ba.svg","sagittarius":"2650.svg","sailboat":"26f5.svg","sake":"1f376.svg","salad":"1f957.svg","salt":"1f9c2.svg","saluting_face":"1fae1.svg","sandal":"1f461.svg","sandwich":"1f96a.svg","santa":"1f385.svg","santa_tone1":"1f385-1f3fb.svg","santa_tone2":"1f385-1f3fc.svg","santa_tone3":"1f385-1f3fd.svg","santa_tone4":"1f385-1f3fe.svg","santa_tone5":"1f385-1f3ff.svg","sari":"1f97b.svg","satellite":"1f4e1.svg","satellite_orbital":"1f6f0.svg","sauropod":"1f995.svg","saxophone":"1f3b7.svg","scales":"2696.svg","scarf":"1f9e3.svg","school":"1f3eb.svg","school_satchel":"1f392.svg","scientist":"1f9d1-200d-1f52c.svg","scientist_tone1":"1f9d1-1f3fb-200d-1f52c.svg","scientist_tone2":"1f9d1-1f3fc-200d-1f52c.svg","scientist_tone3":"1f9d1-1f3fd-200d-1f52c.svg","scientist_tone4":"1f9d1-1f3fe-200d-1f52c.svg","scientist_tone5":"1f9d1-1f3ff-200d-1f52c.svg","scissors":"2702.svg","scooter":"1f6f4.svg","scorpion":"1f982.svg","scorpius":"264f.svg","scotland":"1f3f4-e0067-e0062-e0073-e0063-e0074-e007f.svg","scream":"1f631.svg","scream_cat":"1f640.svg","screwdriver":"1fa9b.svg","scroll":"1f4dc.svg","seal":"1f9ad.svg","seat":"1f4ba.svg","second_place":"1f948.svg","secret":"3299.svg","see_no_evil":"1f648.svg","seedling":"1f331.svg","selfie":"1f933.svg","selfie_tone1":"1f933-1f3fb.svg","selfie_tone2":"1f933-1f3fc.svg","selfie_tone3":"1f933-1f3fd.svg","selfie_tone4":"1f933-1f3fe.svg","selfie_tone5":"1f933-1f3ff.svg","service_dog":"1f415-200d-1f9ba.svg","seven":"37-20e3.svg","sewing_needle":"1faa1.svg","shallow_pan_of_food":"1f958.svg","shamrock":"2618.svg","shark":"1f988.svg","shaved_ice":"1f367.svg","sheep":"1f411.svg","shell":"1f41a.svg","shibuya":"e50a.svg","shield":"1f6e1.svg","shinto_shrine":"26e9.svg","ship":"1f6a2.svg","shirt":"1f455.svg","shopping_bags":"1f6cd.svg","shopping_cart":"1f6d2.svg","shorts":"1fa73.svg","shower":"1f6bf.svg","shrimp":"1f990.svg","shushing_face":"1f92b.svg","signal_strength":"1f4f6.svg","singer":"1f9d1-200d-1f3a4.svg","singer_tone1":"1f9d1-1f3fb-200d-1f3a4.svg","singer_tone2":"1f9d1-1f3fc-200d-1f3a4.svg","singer_tone3":"1f9d1-1f3fd-200d-1f3a4.svg","singer_tone4":"1f9d1-1f3fe-200d-1f3a4.svg","singer_tone5":"1f9d1-1f3ff-200d-1f3a4.svg","six":"36-20e3.svg","six_pointed_star":"1f52f.svg","skateboard":"1f6f9.svg","ski":"1f3bf.svg","skier":"26f7.svg","skier_tone1":"26f7-1f3fb.svg","skier_tone2":"26f7-1f3fc.svg","skier_tone3":"26f7-1f3fd.svg","skier_tone4":"26f7-1f3fe.svg","skier_tone5":"26f7-1f3ff.svg","skull":"1f480.svg","skull_crossbones":"2620.svg","skunk":"1f9a8.svg","sled":"1f6f7.svg","sleeping":"1f634.svg","sleeping_accommodation":"1f6cc.svg","sleepy":"1f62a.svg","slight_frown":"1f641.svg","slight_smile":"1f642.svg","slot_machine":"1f3b0.svg","sloth":"1f9a5.svg","small_blue_diamond":"1f539.svg","small_orange_diamond":"1f538.svg","small_red_triangle":"1f53a.svg","small_red_triangle_down":"1f53b.svg","smile":"1f604.svg","smile_cat":"1f638.svg","smiley":"1f603.svg","smiley_cat":"1f63a.svg","smiling_face_with_3_hearts":"1f970.svg","smiling_face_with_tear":"1f972.svg","smiling_imp":"1f608.svg","smirk":"1f60f.svg","smirk_cat":"1f63c.svg","smoking":"1f6ac.svg","snail":"1f40c.svg","snake":"1f40d.svg","sneezing_face":"1f927.svg","snowboarder":"1f3c2.svg","snowboarder_tone1":"1f3c2-1f3fb.svg","snowboarder_tone2":"1f3c2-1f3fc.svg","snowboarder_tone3":"1f3c2-1f3fd.svg","snowboarder_tone4":"1f3c2-1f3fe.svg","snowboarder_tone5":"1f3c2-1f3ff.svg","snowflake":"2744.svg","snowman2":"2603.svg","snowman":"26c4.svg","soap":"1f9fc.svg","sob":"1f62d.svg","soccer":"26bd.svg","socks":"1f9e6.svg","softball":"1f94e.svg","soon":"1f51c.svg","sos":"1f198.svg","sound":"1f509.svg","space_invader":"1f47e.svg","spades":"2660.svg","spaghetti":"1f35d.svg","sparkle":"2747.svg","sparkler":"1f387.svg","sparkles":"2728.svg","sparkling_heart":"1f496.svg","speak_no_evil":"1f64a.svg","speaker":"1f508.svg","speaking_head":"1f5e3.svg","speech_balloon":"1f4ac.svg","speech_left":"1f5e8.svg","speedboat":"1f6a4.svg","spider":"1f577.svg","spider_web":"1f578.svg","sponge":"1f9fd.svg","spoon":"1f944.svg","squeeze_bottle":"1f9f4.svg","squid":"1f991.svg","stadium":"1f3df.svg","star2":"1f31f.svg","star":"2b50.svg","star_and_crescent":"262a.svg","star_of_david":"2721.svg","star_struck":"1f929.svg","stars":"1f320.svg","station":"1f689.svg","statue_of_liberty":"1f5fd.svg","steam_locomotive":"1f682.svg","stethoscope":"1fa7a.svg","stew":"1f372.svg","stop_button":"23f9.svg","stopwatch":"23f1.svg","straight_ruler":"1f4cf.svg","strawberry":"1f353.svg","stuck_out_tongue":"1f61b.svg","stuck_out_tongue_closed_eyes":"1f61d.svg","stuck_out_tongue_winking_eye":"1f61c.svg","student":"1f9d1-200d-1f393.svg","student_tone1":"1f9d1-1f3fb-200d-1f393.svg","student_tone2":"1f9d1-1f3fc-200d-1f393.svg","student_tone3":"1f9d1-1f3fd-200d-1f393.svg","student_tone4":"1f9d1-1f3fe-200d-1f393.svg","student_tone5":"1f9d1-1f3ff-200d-1f393.svg","stuffed_flatbread":"1f959.svg","sun_with_face":"1f31e.svg","sunflower":"1f33b.svg","sunglasses":"1f60e.svg","sunny":"2600.svg","sunrise":"1f305.svg","sunrise_over_mountains":"1f304.svg","superhero":"1f9b8.svg","superhero_tone1":"1f9b8-1f3fb.svg","superhero_tone2":"1f9b8-1f3fc.svg","superhero_tone3":"1f9b8-1f3fd.svg","superhero_tone4":"1f9b8-1f3fe.svg","superhero_tone5":"1f9b8-1f3ff.svg","supervillain":"1f9b9.svg","supervillain_tone1":"1f9b9-1f3fb.svg","supervillain_tone2":"1f9b9-1f3fc.svg","supervillain_tone3":"1f9b9-1f3fd.svg","supervillain_tone4":"1f9b9-1f3fe.svg","supervillain_tone5":"1f9b9-1f3ff.svg","sushi":"1f363.svg","suspension_railway":"1f69f.svg","swan":"1f9a2.svg","sweat":"1f613.svg","sweat_drops":"1f4a6.svg","sweat_smile":"1f605.svg","sweet_potato":"1f360.svg","symbols":"1f523.svg","synagogue":"1f54d.svg","syringe":"1f489.svg","t_rex":"1f996.svg","taco":"1f32e.svg","tada":"1f389.svg","takeout_box":"1f961.svg","tamale":"1fad4.svg","tanabata_tree":"1f38b.svg","tangerine":"1f34a.svg","taurus":"2649.svg","taxi":"1f695.svg","tea":"1f375.svg","teacher":"1f9d1-200d-1f3eb.svg","teacher_tone1":"1f9d1-1f3fb-200d-1f3eb.svg","teacher_tone2":"1f9d1-1f3fc-200d-1f3eb.svg","teacher_tone3":"1f9d1-1f3fd-200d-1f3eb.svg","teacher_tone4":"1f9d1-1f3fe-200d-1f3eb.svg","teacher_tone5":"1f9d1-1f3ff-200d-1f3eb.svg","teapot":"1fad6.svg","technologist":"1f9d1-200d-1f4bb.svg","technologist_tone1":"1f9d1-1f3fb-200d-1f4bb.svg","technologist_tone2":"1f9d1-1f3fc-200d-1f4bb.svg","technologist_tone3":"1f9d1-1f3fd-200d-1f4bb.svg","technologist_tone4":"1f9d1-1f3fe-200d-1f4bb.svg","technologist_tone5":"1f9d1-1f3ff-200d-1f4bb.svg","teddy_bear":"1f9f8.svg","telephone":"260e.svg","telephone_receiver":"1f4de.svg","telescope":"1f52d.svg","tennis":"1f3be.svg","tent":"26fa.svg","test_tube":"1f9ea.svg","thermometer":"1f321.svg","thermometer_face":"1f912.svg","thinking":"1f914.svg","third_place":"1f949.svg","thong_sandal":"1fa74.svg","thought_balloon":"1f4ad.svg","thread":"1f9f5.svg","three":"33-20e3.svg","thumbsdown":"1f44e.svg","thumbsdown_tone1":"1f44e-1f3fb.svg","thumbsdown_tone2":"1f44e-1f3fc.svg","thumbsdown_tone3":"1f44e-1f3fd.svg","thumbsdown_tone4":"1f44e-1f3fe.svg","thumbsdown_tone5":"1f44e-1f3ff.svg","thumbsup":"1f44d.svg","thumbsup_tone1":"1f44d-1f3fb.svg","thumbsup_tone2":"1f44d-1f3fc.svg","thumbsup_tone3":"1f44d-1f3fd.svg","thumbsup_tone4":"1f44d-1f3fe.svg","thumbsup_tone5":"1f44d-1f3ff.svg","thunder_cloud_rain":"26c8.svg","ticket":"1f3ab.svg","tickets":"1f39f.svg","tiger2":"1f405.svg","tiger":"1f42f.svg","timer":"23f2.svg","tired_face":"1f62b.svg","tm":"2122.svg","toilet":"1f6bd.svg","tokyo_tower":"1f5fc.svg","tomato":"1f345.svg","tone1":"1f3fb.svg","tone2":"1f3fc.svg","tone3":"1f3fd.svg","tone4":"1f3fe.svg","tone5":"1f3ff.svg","tongue":"1f445.svg","toolbox":"1f9f0.svg","tools":"1f6e0.svg","tooth":"1f9b7.svg","toothbrush":"1faa5.svg","top":"1f51d.svg","tophat":"1f3a9.svg","track_next":"23ed.svg","track_previous":"23ee.svg","trackball":"1f5b2.svg","tractor":"1f69c.svg","traffic_light":"1f6a5.svg","train2":"1f686.svg","train":"1f68b.svg","tram":"1f68a.svg","transgender_flag":"1f3f3-fe0f-200d-26a7-fe0f.svg","transgender_symbol":"26a7.svg","triangular_flag_on_post":"1f6a9.svg","triangular_ruler":"1f4d0.svg","trident":"1f531.svg","triumph":"1f624.svg","troll":"1f9cc.svg","trolleybus":"1f68e.svg","trophy":"1f3c6.svg","tropical_drink":"1f379.svg","tropical_fish":"1f420.svg","truck":"1f69a.svg","trumpet":"1f3ba.svg","tulip":"1f337.svg","tumbler_glass":"1f943.svg","turkey":"1f983.svg","turtle":"1f422.svg","tv":"1f4fa.svg","twisted_rightwards_arrows":"1f500.svg","two":"32-20e3.svg","two_hearts":"1f495.svg","two_men_holding_hands":"1f46c.svg","two_women_holding_hands":"1f46d.svg","u5272":"1f239.svg","u5408":"1f234.svg","u55b6":"1f23a.svg","u6307":"1f22f.svg","u6708":"1f237.svg","u6709":"1f236.svg","u6e80":"1f235.svg","u7121":"1f21a.svg","u7533":"1f238.svg","u7981":"1f232.svg","u7a7a":"1f233.svg","umbrella2":"2602.svg","umbrella":"2614.svg","unamused":"1f612.svg","underage":"1f51e.svg","unicorn":"1f984.svg","united_nations":"1f1fa-1f1f3.svg","unlock":"1f513.svg","up":"1f199.svg","upside_down":"1f643.svg","urn":"26b1.svg","v":"270c.svg","v_tone1":"270c-1f3fb.svg","v_tone2":"270c-1f3fc.svg","v_tone3":"270c-1f3fd.svg","v_tone4":"270c-1f3fe.svg","v_tone5":"270c-1f3ff.svg","vampire":"1f9db.svg","vampire_tone1":"1f9db-1f3fb.svg","vampire_tone2":"1f9db-1f3fc.svg","vampire_tone3":"1f9db-1f3fd.svg","vampire_tone4":"1f9db-1f3fe.svg","vampire_tone5":"1f9db-1f3ff.svg","vertical_traffic_light":"1f6a6.svg","vhs":"1f4fc.svg","vibration_mode":"1f4f3.svg","video_camera":"1f4f9.svg","video_game":"1f3ae.svg","violin":"1f3bb.svg","virgo":"264d.svg","volcano":"1f30b.svg","volleyball":"1f3d0.svg","vs":"1f19a.svg","vulcan":"1f596.svg","vulcan_tone1":"1f596-1f3fb.svg","vulcan_tone2":"1f596-1f3fc.svg","vulcan_tone3":"1f596-1f3fd.svg","vulcan_tone4":"1f596-1f3fe.svg","vulcan_tone5":"1f596-1f3ff.svg","waffle":"1f9c7.svg","wales":"1f3f4-e0067-e0062-e0077-e006c-e0073-e007f.svg","waning_crescent_moon":"1f318.svg","waning_gibbous_moon":"1f316.svg","warning":"26a0.svg","wastebasket":"1f5d1.svg","watch":"231a.svg","water_buffalo":"1f403.svg","watermelon":"1f349.svg","wave":"1f44b.svg","wave_tone1":"1f44b-1f3fb.svg","wave_tone2":"1f44b-1f3fc.svg","wave_tone3":"1f44b-1f3fd.svg","wave_tone4":"1f44b-1f3fe.svg","wave_tone5":"1f44b-1f3ff.svg","wavy_dash":"3030.svg","waxing_crescent_moon":"1f312.svg","waxing_gibbous_moon":"1f314.svg","wc":"1f6be.svg","weary":"1f629.svg","wedding":"1f492.svg","whale2":"1f40b.svg","whale":"1f433.svg","wheel":"1f6de.svg","wheel_of_dharma":"2638.svg","wheelchair":"267f.svg","white_check_mark":"2705.svg","white_circle":"26aa.svg","white_flower":"1f4ae.svg","white_haired":"1f9b3.svg","white_heart":"1f90d.svg","white_large_square":"2b1c.svg","white_medium_small_square":"25fd.svg","white_medium_square":"25fb.svg","white_small_square":"25ab.svg","white_square_button":"1f533.svg","white_sun_cloud":"1f325.svg","white_sun_rain_cloud":"1f326.svg","white_sun_small_cloud":"1f324.svg","wilted_rose":"1f940.svg","wind_blowing_face":"1f32c.svg","wind_chime":"1f390.svg","window":"1fa9f.svg","wine_glass":"1f377.svg","wink":"1f609.svg","wolf":"1f43a.svg","woman":"1f469.svg","woman_and_man_holding_hands_tone1":"1f46b-1f3fb.svg","woman_and_man_holding_hands_tone1_tone2":"1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc.svg","woman_and_man_holding_hands_tone1_tone3":"1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd.svg","woman_and_man_holding_hands_tone1_tone4":"1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe.svg","woman_and_man_holding_hands_tone1_tone5":"1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff.svg","woman_and_man_holding_hands_tone2":"1f46b-1f3fc.svg","woman_and_man_holding_hands_tone2_tone1":"1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg","woman_and_man_holding_hands_tone2_tone3":"1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd.svg","woman_and_man_holding_hands_tone2_tone4":"1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe.svg","woman_and_man_holding_hands_tone2_tone5":"1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff.svg","woman_and_man_holding_hands_tone3":"1f46b-1f3fd.svg","woman_and_man_holding_hands_tone3_tone1":"1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg","woman_and_man_holding_hands_tone3_tone2":"1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg","woman_and_man_holding_hands_tone3_tone4":"1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe.svg","woman_and_man_holding_hands_tone3_tone5":"1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff.svg","woman_and_man_holding_hands_tone4":"1f46b-1f3fe.svg","woman_and_man_holding_hands_tone4_tone1":"1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg","woman_and_man_holding_hands_tone4_tone2":"1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg","woman_and_man_holding_hands_tone4_tone3":"1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg","woman_and_man_holding_hands_tone4_tone5":"1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff.svg","woman_and_man_holding_hands_tone5":"1f46b-1f3ff.svg","woman_and_man_holding_hands_tone5_tone1":"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg","woman_and_man_holding_hands_tone5_tone2":"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg","woman_and_man_holding_hands_tone5_tone3":"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg","woman_and_man_holding_hands_tone5_tone4":"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg","woman_artist":"1f469-200d-1f3a8.svg","woman_artist_tone1":"1f469-1f3fb-200d-1f3a8.svg","woman_artist_tone2":"1f469-1f3fc-200d-1f3a8.svg","woman_artist_tone3":"1f469-1f3fd-200d-1f3a8.svg","woman_artist_tone4":"1f469-1f3fe-200d-1f3a8.svg","woman_artist_tone5":"1f469-1f3ff-200d-1f3a8.svg","woman_astronaut":"1f469-200d-1f680.svg","woman_astronaut_tone1":"1f469-1f3fb-200d-1f680.svg","woman_astronaut_tone2":"1f469-1f3fc-200d-1f680.svg","woman_astronaut_tone3":"1f469-1f3fd-200d-1f680.svg","woman_astronaut_tone4":"1f469-1f3fe-200d-1f680.svg","woman_astronaut_tone5":"1f469-1f3ff-200d-1f680.svg","woman_bald":"1f469-200d-1f9b2.svg","woman_bald_tone1":"1f469-1f3fb-200d-1f9b2.svg","woman_bald_tone2":"1f469-1f3fc-200d-1f9b2.svg","woman_bald_tone3":"1f469-1f3fd-200d-1f9b2.svg","woman_bald_tone4":"1f469-1f3fe-200d-1f9b2.svg","woman_bald_tone5":"1f469-1f3ff-200d-1f9b2.svg","woman_beard":"1f9d4-200d-2640-fe0f.svg","woman_biking":"1f6b4-200d-2640-fe0f.svg","woman_biking_tone1":"1f6b4-1f3fb-200d-2640-fe0f.svg","woman_biking_tone2":"1f6b4-1f3fc-200d-2640-fe0f.svg","woman_biking_tone3":"1f6b4-1f3fd-200d-2640-fe0f.svg","woman_biking_tone4":"1f6b4-1f3fe-200d-2640-fe0f.svg","woman_biking_tone5":"1f6b4-1f3ff-200d-2640-fe0f.svg","woman_bouncing_ball":"26f9-fe0f-200d-2640-fe0f.svg","woman_bouncing_ball_tone1":"26f9-1f3fb-200d-2640-fe0f.svg","woman_bouncing_ball_tone2":"26f9-1f3fc-200d-2640-fe0f.svg","woman_bouncing_ball_tone3":"26f9-1f3fd-200d-2640-fe0f.svg","woman_bouncing_ball_tone4":"26f9-1f3fe-200d-2640-fe0f.svg","woman_bouncing_ball_tone5":"26f9-1f3ff-200d-2640-fe0f.svg","woman_bowing":"1f647-200d-2640-fe0f.svg","woman_bowing_tone1":"1f647-1f3fb-200d-2640-fe0f.svg","woman_bowing_tone2":"1f647-1f3fc-200d-2640-fe0f.svg","woman_bowing_tone3":"1f647-1f3fd-200d-2640-fe0f.svg","woman_bowing_tone4":"1f647-1f3fe-200d-2640-fe0f.svg","woman_bowing_tone5":"1f647-1f3ff-200d-2640-fe0f.svg","woman_cartwheeling":"1f938-200d-2640-fe0f.svg","woman_cartwheeling_tone1":"1f938-1f3fb-200d-2640-fe0f.svg","woman_cartwheeling_tone2":"1f938-1f3fc-200d-2640-fe0f.svg","woman_cartwheeling_tone3":"1f938-1f3fd-200d-2640-fe0f.svg","woman_cartwheeling_tone4":"1f938-1f3fe-200d-2640-fe0f.svg","woman_cartwheeling_tone5":"1f938-1f3ff-200d-2640-fe0f.svg","woman_climbing":"1f9d7-200d-2640-fe0f.svg","woman_climbing_tone1":"1f9d7-1f3fb-200d-2640-fe0f.svg","woman_climbing_tone2":"1f9d7-1f3fc-200d-2640-fe0f.svg","woman_climbing_tone3":"1f9d7-1f3fd-200d-2640-fe0f.svg","woman_climbing_tone4":"1f9d7-1f3fe-200d-2640-fe0f.svg","woman_climbing_tone5":"1f9d7-1f3ff-200d-2640-fe0f.svg","woman_construction_worker":"1f477-200d-2640-fe0f.svg","woman_construction_worker_tone1":"1f477-1f3fb-200d-2640-fe0f.svg","woman_construction_worker_tone2":"1f477-1f3fc-200d-2640-fe0f.svg","woman_construction_worker_tone3":"1f477-1f3fd-200d-2640-fe0f.svg","woman_construction_worker_tone4":"1f477-1f3fe-200d-2640-fe0f.svg","woman_construction_worker_tone5":"1f477-1f3ff-200d-2640-fe0f.svg","woman_cook":"1f469-200d-1f373.svg","woman_cook_tone1":"1f469-1f3fb-200d-1f373.svg","woman_cook_tone2":"1f469-1f3fc-200d-1f373.svg","woman_cook_tone3":"1f469-1f3fd-200d-1f373.svg","woman_cook_tone4":"1f469-1f3fe-200d-1f373.svg","woman_cook_tone5":"1f469-1f3ff-200d-1f373.svg","woman_curly_haired":"1f469-200d-1f9b1.svg","woman_curly_haired_tone1":"1f469-1f3fb-200d-1f9b1.svg","woman_curly_haired_tone2":"1f469-1f3fc-200d-1f9b1.svg","woman_curly_haired_tone3":"1f469-1f3fd-200d-1f9b1.svg","woman_curly_haired_tone4":"1f469-1f3fe-200d-1f9b1.svg","woman_curly_haired_tone5":"1f469-1f3ff-200d-1f9b1.svg","woman_detective":"1f575-fe0f-200d-2640-fe0f.svg","woman_detective_tone1":"1f575-1f3fb-200d-2640-fe0f.svg","woman_detective_tone2":"1f575-1f3fc-200d-2640-fe0f.svg","woman_detective_tone3":"1f575-1f3fd-200d-2640-fe0f.svg","woman_detective_tone4":"1f575-1f3fe-200d-2640-fe0f.svg","woman_detective_tone5":"1f575-1f3ff-200d-2640-fe0f.svg","woman_elf":"1f9dd-200d-2640-fe0f.svg","woman_elf_tone1":"1f9dd-1f3fb-200d-2640-fe0f.svg","woman_elf_tone2":"1f9dd-1f3fc-200d-2640-fe0f.svg","woman_elf_tone3":"1f9dd-1f3fd-200d-2640-fe0f.svg","woman_elf_tone4":"1f9dd-1f3fe-200d-2640-fe0f.svg","woman_elf_tone5":"1f9dd-1f3ff-200d-2640-fe0f.svg","woman_facepalming":"1f926-200d-2640-fe0f.svg","woman_facepalming_tone1":"1f926-1f3fb-200d-2640-fe0f.svg","woman_facepalming_tone2":"1f926-1f3fc-200d-2640-fe0f.svg","woman_facepalming_tone3":"1f926-1f3fd-200d-2640-fe0f.svg","woman_facepalming_tone4":"1f926-1f3fe-200d-2640-fe0f.svg","woman_facepalming_tone5":"1f926-1f3ff-200d-2640-fe0f.svg","woman_factory_worker":"1f469-200d-1f3ed.svg","woman_factory_worker_tone1":"1f469-1f3fb-200d-1f3ed.svg","woman_factory_worker_tone2":"1f469-1f3fc-200d-1f3ed.svg","woman_factory_worker_tone3":"1f469-1f3fd-200d-1f3ed.svg","woman_factory_worker_tone4":"1f469-1f3fe-200d-1f3ed.svg","woman_factory_worker_tone5":"1f469-1f3ff-200d-1f3ed.svg","woman_fairy":"1f9da-200d-2640-fe0f.svg","woman_fairy_tone1":"1f9da-1f3fb-200d-2640-fe0f.svg","woman_fairy_tone2":"1f9da-1f3fc-200d-2640-fe0f.svg","woman_fairy_tone3":"1f9da-1f3fd-200d-2640-fe0f.svg","woman_fairy_tone4":"1f9da-1f3fe-200d-2640-fe0f.svg","woman_fairy_tone5":"1f9da-1f3ff-200d-2640-fe0f.svg","woman_farmer":"1f469-200d-1f33e.svg","woman_farmer_tone1":"1f469-1f3fb-200d-1f33e.svg","woman_farmer_tone2":"1f469-1f3fc-200d-1f33e.svg","woman_farmer_tone3":"1f469-1f3fd-200d-1f33e.svg","woman_farmer_tone4":"1f469-1f3fe-200d-1f33e.svg","woman_farmer_tone5":"1f469-1f3ff-200d-1f33e.svg","woman_feeding_baby":"1f469-200d-1f37c.svg","woman_feeding_baby_tone1":"1f469-1f3fb-200d-1f37c.svg","woman_feeding_baby_tone2":"1f469-1f3fc-200d-1f37c.svg","woman_feeding_baby_tone3":"1f469-1f3fd-200d-1f37c.svg","woman_feeding_baby_tone4":"1f469-1f3fe-200d-1f37c.svg","woman_feeding_baby_tone5":"1f469-1f3ff-200d-1f37c.svg","woman_firefighter":"1f469-200d-1f692.svg","woman_firefighter_tone1":"1f469-1f3fb-200d-1f692.svg","woman_firefighter_tone2":"1f469-1f3fc-200d-1f692.svg","woman_firefighter_tone3":"1f469-1f3fd-200d-1f692.svg","woman_firefighter_tone4":"1f469-1f3fe-200d-1f692.svg","woman_firefighter_tone5":"1f469-1f3ff-200d-1f692.svg","woman_frowning":"1f64d-200d-2640-fe0f.svg","woman_frowning_tone1":"1f64d-1f3fb-200d-2640-fe0f.svg","woman_frowning_tone2":"1f64d-1f3fc-200d-2640-fe0f.svg","woman_frowning_tone3":"1f64d-1f3fd-200d-2640-fe0f.svg","woman_frowning_tone4":"1f64d-1f3fe-200d-2640-fe0f.svg","woman_frowning_tone5":"1f64d-1f3ff-200d-2640-fe0f.svg","woman_genie":"1f9de-200d-2640-fe0f.svg","woman_gesturing_no":"1f645-200d-2640-fe0f.svg","woman_gesturing_no_tone1":"1f645-1f3fb-200d-2640-fe0f.svg","woman_gesturing_no_tone2":"1f645-1f3fc-200d-2640-fe0f.svg","woman_gesturing_no_tone3":"1f645-1f3fd-200d-2640-fe0f.svg","woman_gesturing_no_tone4":"1f645-1f3fe-200d-2640-fe0f.svg","woman_gesturing_no_tone5":"1f645-1f3ff-200d-2640-fe0f.svg","woman_gesturing_ok":"1f646-200d-2640-fe0f.svg","woman_gesturing_ok_tone1":"1f646-1f3fb-200d-2640-fe0f.svg","woman_gesturing_ok_tone2":"1f646-1f3fc-200d-2640-fe0f.svg","woman_gesturing_ok_tone3":"1f646-1f3fd-200d-2640-fe0f.svg","woman_gesturing_ok_tone4":"1f646-1f3fe-200d-2640-fe0f.svg","woman_gesturing_ok_tone5":"1f646-1f3ff-200d-2640-fe0f.svg","woman_getting_face_massage":"1f486-200d-2640-fe0f.svg","woman_getting_face_massage_tone1":"1f486-1f3fb-200d-2640-fe0f.svg","woman_getting_face_massage_tone2":"1f486-1f3fc-200d-2640-fe0f.svg","woman_getting_face_massage_tone3":"1f486-1f3fd-200d-2640-fe0f.svg","woman_getting_face_massage_tone4":"1f486-1f3fe-200d-2640-fe0f.svg","woman_getting_face_massage_tone5":"1f486-1f3ff-200d-2640-fe0f.svg","woman_getting_haircut":"1f487-200d-2640-fe0f.svg","woman_getting_haircut_tone1":"1f487-1f3fb-200d-2640-fe0f.svg","woman_getting_haircut_tone2":"1f487-1f3fc-200d-2640-fe0f.svg","woman_getting_haircut_tone3":"1f487-1f3fd-200d-2640-fe0f.svg","woman_getting_haircut_tone4":"1f487-1f3fe-200d-2640-fe0f.svg","woman_getting_haircut_tone5":"1f487-1f3ff-200d-2640-fe0f.svg","woman_golfing":"1f3cc-fe0f-200d-2640-fe0f.svg","woman_golfing_tone1":"1f3cc-1f3fb-200d-2640-fe0f.svg","woman_golfing_tone2":"1f3cc-1f3fc-200d-2640-fe0f.svg","woman_golfing_tone3":"1f3cc-1f3fd-200d-2640-fe0f.svg","woman_golfing_tone4":"1f3cc-1f3fe-200d-2640-fe0f.svg","woman_golfing_tone5":"1f3cc-1f3ff-200d-2640-fe0f.svg","woman_guard":"1f482-200d-2640-fe0f.svg","woman_guard_tone1":"1f482-1f3fb-200d-2640-fe0f.svg","woman_guard_tone2":"1f482-1f3fc-200d-2640-fe0f.svg","woman_guard_tone3":"1f482-1f3fd-200d-2640-fe0f.svg","woman_guard_tone4":"1f482-1f3fe-200d-2640-fe0f.svg","woman_guard_tone5":"1f482-1f3ff-200d-2640-fe0f.svg","woman_health_worker":"1f469-200d-2695-fe0f.svg","woman_health_worker_tone1":"1f469-1f3fb-200d-2695-fe0f.svg","woman_health_worker_tone2":"1f469-1f3fc-200d-2695-fe0f.svg","woman_health_worker_tone3":"1f469-1f3fd-200d-2695-fe0f.svg","woman_health_worker_tone4":"1f469-1f3fe-200d-2695-fe0f.svg","woman_health_worker_tone5":"1f469-1f3ff-200d-2695-fe0f.svg","woman_in_lotus_position":"1f9d8-200d-2640-fe0f.svg","woman_in_lotus_position_tone1":"1f9d8-1f3fb-200d-2640-fe0f.svg","woman_in_lotus_position_tone2":"1f9d8-1f3fc-200d-2640-fe0f.svg","woman_in_lotus_position_tone3":"1f9d8-1f3fd-200d-2640-fe0f.svg","woman_in_lotus_position_tone4":"1f9d8-1f3fe-200d-2640-fe0f.svg","woman_in_lotus_position_tone5":"1f9d8-1f3ff-200d-2640-fe0f.svg","woman_in_manual_wheelchair":"1f469-200d-1f9bd.svg","woman_in_manual_wheelchair_tone1":"1f469-1f3fb-200d-1f9bd.svg","woman_in_manual_wheelchair_tone2":"1f469-1f3fc-200d-1f9bd.svg","woman_in_manual_wheelchair_tone3":"1f469-1f3fd-200d-1f9bd.svg","woman_in_manual_wheelchair_tone4":"1f469-1f3fe-200d-1f9bd.svg","woman_in_manual_wheelchair_tone5":"1f469-1f3ff-200d-1f9bd.svg","woman_in_motorized_wheelchair":"1f469-200d-1f9bc.svg","woman_in_motorized_wheelchair_tone1":"1f469-1f3fb-200d-1f9bc.svg","woman_in_motorized_wheelchair_tone2":"1f469-1f3fc-200d-1f9bc.svg","woman_in_motorized_wheelchair_tone3":"1f469-1f3fd-200d-1f9bc.svg","woman_in_motorized_wheelchair_tone4":"1f469-1f3fe-200d-1f9bc.svg","woman_in_motorized_wheelchair_tone5":"1f469-1f3ff-200d-1f9bc.svg","woman_in_santa_hat":"1f469-200d-1f384.svg","woman_in_santa_hat_tone1":"1f469-1f3fb-200d-1f384.svg","woman_in_santa_hat_tone2":"1f468-1f3ff-200d-1f384.svg","woman_in_santa_hat_tone3":"1f469-1f3fe-200d-1f384.svg","woman_in_santa_hat_tone4":"1f469-1f3fd-200d-1f384.svg","woman_in_santa_hat_tone5":"1f469-1f3fc-200d-1f384.svg","woman_in_steamy_room":"1f9d6-200d-2640-fe0f.svg","woman_in_steamy_room_tone1":"1f9d6-1f3fb-200d-2640-fe0f.svg","woman_in_steamy_room_tone2":"1f9d6-1f3fc-200d-2640-fe0f.svg","woman_in_steamy_room_tone3":"1f9d6-1f3fd-200d-2640-fe0f.svg","woman_in_steamy_room_tone4":"1f9d6-1f3fe-200d-2640-fe0f.svg","woman_in_steamy_room_tone5":"1f9d6-1f3ff-200d-2640-fe0f.svg","woman_in_tuxedo":"1f935-200d-2640-fe0f.svg","woman_in_tuxedo_tone1":"1f935-1f3fb-200d-2640-fe0f.svg","woman_in_tuxedo_tone2":"1f935-1f3fc-200d-2640-fe0f.svg","woman_in_tuxedo_tone3":"1f935-1f3fd-200d-2640-fe0f.svg","woman_in_tuxedo_tone4":"1f935-1f3fe-200d-2640-fe0f.svg","woman_in_tuxedo_tone5":"1f935-1f3ff-200d-2640-fe0f.svg","woman_judge":"1f469-200d-2696-fe0f.svg","woman_judge_tone1":"1f469-1f3fb-200d-2696-fe0f.svg","woman_judge_tone2":"1f469-1f3fc-200d-2696-fe0f.svg","woman_judge_tone3":"1f469-1f3fd-200d-2696-fe0f.svg","woman_judge_tone4":"1f469-1f3fe-200d-2696-fe0f.svg","woman_judge_tone5":"1f469-1f3ff-200d-2696-fe0f.svg","woman_juggling":"1f939-200d-2640-fe0f.svg","woman_juggling_tone1":"1f939-1f3fb-200d-2640-fe0f.svg","woman_juggling_tone2":"1f939-1f3fc-200d-2640-fe0f.svg","woman_juggling_tone3":"1f939-1f3fd-200d-2640-fe0f.svg","woman_juggling_tone4":"1f939-1f3fe-200d-2640-fe0f.svg","woman_juggling_tone5":"1f939-1f3ff-200d-2640-fe0f.svg","woman_kneeling":"1f9ce-200d-2640-fe0f.svg","woman_kneeling_tone1":"1f9ce-1f3fb-200d-2640-fe0f.svg","woman_kneeling_tone2":"1f9ce-1f3fc-200d-2640-fe0f.svg","woman_kneeling_tone3":"1f9ce-1f3fd-200d-2640-fe0f.svg","woman_kneeling_tone4":"1f9ce-1f3fe-200d-2640-fe0f.svg","woman_kneeling_tone5":"1f9ce-1f3ff-200d-2640-fe0f.svg","woman_leviate_tone2":"1f574-1f3fc-200d-2640-fe0f.svg","woman_leviate_tone3":"1f574-1f3fd-200d-2640-fe0f.svg","woman_leviate_tone4":"1f574-1f3fe-200d-2640-fe0f.svg","woman_leviate_tone5":"1f574-1f3ff-200d-2640-fe0f.svg","woman_levitate":"1f574-fe0f-200d-2640-fe0f.svg","woman_levitate_tone1":"1f574-1f3fb-200d-2640-fe0f.svg","woman_lifting_weights":"1f3cb-fe0f-200d-2640-fe0f.svg","woman_lifting_weights_tone1":"1f3cb-1f3fb-200d-2640-fe0f.svg","woman_lifting_weights_tone2":"1f3cb-1f3fc-200d-2640-fe0f.svg","woman_lifting_weights_tone3":"1f3cb-1f3fd-200d-2640-fe0f.svg","woman_lifting_weights_tone4":"1f3cb-1f3fe-200d-2640-fe0f.svg","woman_lifting_weights_tone5":"1f3cb-1f3ff-200d-2640-fe0f.svg","woman_mage":"1f9d9-200d-2640-fe0f.svg","woman_mage_tone1":"1f9d9-1f3fb-200d-2640-fe0f.svg","woman_mage_tone2":"1f9d9-1f3fc-200d-2640-fe0f.svg","woman_mage_tone3":"1f9d9-1f3fd-200d-2640-fe0f.svg","woman_mage_tone4":"1f9d9-1f3fe-200d-2640-fe0f.svg","woman_mage_tone5":"1f9d9-1f3ff-200d-2640-fe0f.svg","woman_mechanic":"1f469-200d-1f527.svg","woman_mechanic_tone1":"1f469-1f3fb-200d-1f527.svg","woman_mechanic_tone2":"1f469-1f3fc-200d-1f527.svg","woman_mechanic_tone3":"1f469-1f3fd-200d-1f527.svg","woman_mechanic_tone4":"1f469-1f3fe-200d-1f527.svg","woman_mechanic_tone5":"1f469-1f3ff-200d-1f527.svg","woman_mountain_biking":"1f6b5-200d-2640-fe0f.svg","woman_mountain_biking_tone1":"1f6b5-1f3fb-200d-2640-fe0f.svg","woman_mountain_biking_tone2":"1f6b5-1f3fc-200d-2640-fe0f.svg","woman_mountain_biking_tone3":"1f6b5-1f3fd-200d-2640-fe0f.svg","woman_mountain_biking_tone4":"1f6b5-1f3fe-200d-2640-fe0f.svg","woman_mountain_biking_tone5":"1f6b5-1f3ff-200d-2640-fe0f.svg","woman_office_worker":"1f469-200d-1f4bc.svg","woman_office_worker_tone1":"1f469-1f3fb-200d-1f4bc.svg","woman_office_worker_tone2":"1f469-1f3fc-200d-1f4bc.svg","woman_office_worker_tone3":"1f469-1f3fd-200d-1f4bc.svg","woman_office_worker_tone4":"1f469-1f3fe-200d-1f4bc.svg","woman_office_worker_tone5":"1f469-1f3ff-200d-1f4bc.svg","woman_pilot":"1f469-200d-2708-fe0f.svg","woman_pilot_tone1":"1f469-1f3fb-200d-2708-fe0f.svg","woman_pilot_tone2":"1f469-1f3fc-200d-2708-fe0f.svg","woman_pilot_tone3":"1f469-1f3fd-200d-2708-fe0f.svg","woman_pilot_tone4":"1f469-1f3fe-200d-2708-fe0f.svg","woman_pilot_tone5":"1f469-1f3ff-200d-2708-fe0f.svg","woman_playing_handball":"1f93e-200d-2640-fe0f.svg","woman_playing_handball_tone1":"1f93e-1f3fb-200d-2640-fe0f.svg","woman_playing_handball_tone2":"1f93e-1f3fc-200d-2640-fe0f.svg","woman_playing_handball_tone3":"1f93e-1f3fd-200d-2640-fe0f.svg","woman_playing_handball_tone4":"1f93e-1f3fe-200d-2640-fe0f.svg","woman_playing_handball_tone5":"1f93e-1f3ff-200d-2640-fe0f.svg","woman_playing_water_polo":"1f93d-200d-2640-fe0f.svg","woman_playing_water_polo_tone1":"1f93d-1f3fb-200d-2640-fe0f.svg","woman_playing_water_polo_tone2":"1f93d-1f3fc-200d-2640-fe0f.svg","woman_playing_water_polo_tone3":"1f93d-1f3fd-200d-2640-fe0f.svg","woman_playing_water_polo_tone4":"1f93d-1f3fe-200d-2640-fe0f.svg","woman_playing_water_polo_tone5":"1f93d-1f3ff-200d-2640-fe0f.svg","woman_police_officer":"1f46e-200d-2640-fe0f.svg","woman_police_officer_tone1":"1f46e-1f3fb-200d-2640-fe0f.svg","woman_police_officer_tone2":"1f46e-1f3fc-200d-2640-fe0f.svg","woman_police_officer_tone3":"1f46e-1f3fd-200d-2640-fe0f.svg","woman_police_officer_tone4":"1f46e-1f3fe-200d-2640-fe0f.svg","woman_police_officer_tone5":"1f46e-1f3ff-200d-2640-fe0f.svg","woman_pouting":"1f64e-200d-2640-fe0f.svg","woman_pouting_tone1":"1f64e-1f3fb-200d-2640-fe0f.svg","woman_pouting_tone2":"1f64e-1f3fc-200d-2640-fe0f.svg","woman_pouting_tone3":"1f64e-1f3fd-200d-2640-fe0f.svg","woman_pouting_tone4":"1f64e-1f3fe-200d-2640-fe0f.svg","woman_pouting_tone5":"1f64e-1f3ff-200d-2640-fe0f.svg","woman_raising_hand":"1f64b-200d-2640-fe0f.svg","woman_raising_hand_tone1":"1f64b-1f3fb-200d-2640-fe0f.svg","woman_raising_hand_tone2":"1f64b-1f3fc-200d-2640-fe0f.svg","woman_raising_hand_tone3":"1f64b-1f3fd-200d-2640-fe0f.svg","woman_raising_hand_tone4":"1f64b-1f3fe-200d-2640-fe0f.svg","woman_raising_hand_tone5":"1f64b-1f3ff-200d-2640-fe0f.svg","woman_red_haired":"1f469-200d-1f9b0.svg","woman_red_haired_tone1":"1f469-1f3fb-200d-1f9b0.svg","woman_red_haired_tone2":"1f469-1f3fc-200d-1f9b0.svg","woman_red_haired_tone3":"1f469-1f3fd-200d-1f9b0.svg","woman_red_haired_tone4":"1f469-1f3fe-200d-1f9b0.svg","woman_red_haired_tone5":"1f469-1f3ff-200d-1f9b0.svg","woman_rowing_boat":"1f6a3-200d-2640-fe0f.svg","woman_rowing_boat_tone1":"1f6a3-1f3fb-200d-2640-fe0f.svg","woman_rowing_boat_tone2":"1f6a3-1f3fc-200d-2640-fe0f.svg","woman_rowing_boat_tone3":"1f6a3-1f3fd-200d-2640-fe0f.svg","woman_rowing_boat_tone4":"1f6a3-1f3fe-200d-2640-fe0f.svg","woman_rowing_boat_tone5":"1f6a3-1f3ff-200d-2640-fe0f.svg","woman_running":"1f3c3-200d-2640-fe0f.svg","woman_running_tone1":"1f3c3-1f3fb-200d-2640-fe0f.svg","woman_running_tone2":"1f3c3-1f3fc-200d-2640-fe0f.svg","woman_running_tone3":"1f3c3-1f3fd-200d-2640-fe0f.svg","woman_running_tone4":"1f3c3-1f3fe-200d-2640-fe0f.svg","woman_running_tone5":"1f3c3-1f3ff-200d-2640-fe0f.svg","woman_scientist":"1f469-200d-1f52c.svg","woman_scientist_tone1":"1f469-1f3fb-200d-1f52c.svg","woman_scientist_tone2":"1f469-1f3fc-200d-1f52c.svg","woman_scientist_tone3":"1f469-1f3fd-200d-1f52c.svg","woman_scientist_tone4":"1f469-1f3fe-200d-1f52c.svg","woman_scientist_tone5":"1f469-1f3ff-200d-1f52c.svg","woman_shrugging":"1f937-200d-2640-fe0f.svg","woman_shrugging_tone1":"1f937-1f3fb-200d-2640-fe0f.svg","woman_shrugging_tone2":"1f937-1f3fc-200d-2640-fe0f.svg","woman_shrugging_tone3":"1f937-1f3fd-200d-2640-fe0f.svg","woman_shrugging_tone4":"1f937-1f3fe-200d-2640-fe0f.svg","woman_shrugging_tone5":"1f937-1f3ff-200d-2640-fe0f.svg","woman_singer":"1f469-200d-1f3a4.svg","woman_singer_tone1":"1f469-1f3fb-200d-1f3a4.svg","woman_singer_tone2":"1f469-1f3fc-200d-1f3a4.svg","woman_singer_tone3":"1f469-1f3fd-200d-1f3a4.svg","woman_singer_tone4":"1f469-1f3fe-200d-1f3a4.svg","woman_singer_tone5":"1f469-1f3ff-200d-1f3a4.svg","woman_standing":"1f9cd-200d-2640-fe0f.svg","woman_standing_tone1":"1f9cd-1f3fb-200d-2640-fe0f.svg","woman_standing_tone2":"1f9cd-1f3fc-200d-2640-fe0f.svg","woman_standing_tone3":"1f9cd-1f3fd-200d-2640-fe0f.svg","woman_standing_tone4":"1f9cd-1f3fe-200d-2640-fe0f.svg","woman_standing_tone5":"1f9cd-1f3ff-200d-2640-fe0f.svg","woman_student":"1f469-200d-1f393.svg","woman_student_tone1":"1f469-1f3fb-200d-1f393.svg","woman_student_tone2":"1f469-1f3fc-200d-1f393.svg","woman_student_tone3":"1f469-1f3fd-200d-1f393.svg","woman_student_tone4":"1f469-1f3fe-200d-1f393.svg","woman_student_tone5":"1f469-1f3ff-200d-1f393.svg","woman_superhero":"1f9b8-200d-2640-fe0f.svg","woman_superhero_tone1":"1f9b8-1f3fb-200d-2640-fe0f.svg","woman_superhero_tone2":"1f9b8-1f3fc-200d-2640-fe0f.svg","woman_superhero_tone3":"1f9b8-1f3fd-200d-2640-fe0f.svg","woman_superhero_tone4":"1f9b8-1f3fe-200d-2640-fe0f.svg","woman_superhero_tone5":"1f9b8-1f3ff-200d-2640-fe0f.svg","woman_supervillain":"1f9b9-200d-2640-fe0f.svg","woman_supervillain_tone1":"1f9b9-1f3fb-200d-2640-fe0f.svg","woman_supervillain_tone2":"1f9b9-1f3fc-200d-2640-fe0f.svg","woman_supervillain_tone3":"1f9b9-1f3fd-200d-2640-fe0f.svg","woman_supervillain_tone4":"1f9b9-1f3fe-200d-2640-fe0f.svg","woman_supervillain_tone5":"1f9b9-1f3ff-200d-2640-fe0f.svg","woman_surfing":"1f3c4-200d-2640-fe0f.svg","woman_surfing_tone1":"1f3c4-1f3fb-200d-2640-fe0f.svg","woman_surfing_tone2":"1f3c4-1f3fc-200d-2640-fe0f.svg","woman_surfing_tone3":"1f3c4-1f3fd-200d-2640-fe0f.svg","woman_surfing_tone4":"1f3c4-1f3fe-200d-2640-fe0f.svg","woman_surfing_tone5":"1f3c4-1f3ff-200d-2640-fe0f.svg","woman_swimming":"1f3ca-200d-2640-fe0f.svg","woman_swimming_tone1":"1f3ca-1f3fb-200d-2640-fe0f.svg","woman_swimming_tone2":"1f3ca-1f3fc-200d-2640-fe0f.svg","woman_swimming_tone3":"1f3ca-1f3fd-200d-2640-fe0f.svg","woman_swimming_tone4":"1f3ca-1f3fe-200d-2640-fe0f.svg","woman_swimming_tone5":"1f3ca-1f3ff-200d-2640-fe0f.svg","woman_teacher":"1f469-200d-1f3eb.svg","woman_teacher_tone1":"1f469-1f3fb-200d-1f3eb.svg","woman_teacher_tone2":"1f469-1f3fc-200d-1f3eb.svg","woman_teacher_tone3":"1f469-1f3fd-200d-1f3eb.svg","woman_teacher_tone4":"1f469-1f3fe-200d-1f3eb.svg","woman_teacher_tone5":"1f469-1f3ff-200d-1f3eb.svg","woman_technologist":"1f469-200d-1f4bb.svg","woman_technologist_tone1":"1f469-1f3fb-200d-1f4bb.svg","woman_technologist_tone2":"1f469-1f3fc-200d-1f4bb.svg","woman_technologist_tone3":"1f469-1f3fd-200d-1f4bb.svg","woman_technologist_tone4":"1f469-1f3fe-200d-1f4bb.svg","woman_technologist_tone5":"1f469-1f3ff-200d-1f4bb.svg","woman_tipping_hand":"1f481-200d-2640-fe0f.svg","woman_tipping_hand_tone1":"1f481-1f3fb-200d-2640-fe0f.svg","woman_tipping_hand_tone2":"1f481-1f3fc-200d-2640-fe0f.svg","woman_tipping_hand_tone3":"1f481-1f3fd-200d-2640-fe0f.svg","woman_tipping_hand_tone4":"1f481-1f3fe-200d-2640-fe0f.svg","woman_tipping_hand_tone5":"1f481-1f3ff-200d-2640-fe0f.svg","woman_tone1":"1f469-1f3fb.svg","woman_tone1_beard":"1f9d4-1f3fb-200d-2640-fe0f.svg","woman_tone2":"1f469-1f3fc.svg","woman_tone2_beard":"1f9d4-1f3fc-200d-2640-fe0f.svg","woman_tone3":"1f469-1f3fd.svg","woman_tone3_beard":"1f9d4-1f3fd-200d-2640-fe0f.svg","woman_tone4":"1f469-1f3fe.svg","woman_tone4_beard":"1f9d4-1f3fe-200d-2640-fe0f.svg","woman_tone5":"1f469-1f3ff.svg","woman_tone5_beard":"1f9d4-1f3ff-200d-2640-fe0f.svg","woman_vampire":"1f9db-200d-2640-fe0f.svg","woman_vampire_tone1":"1f9db-1f3fb-200d-2640-fe0f.svg","woman_vampire_tone2":"1f9db-1f3fc-200d-2640-fe0f.svg","woman_vampire_tone3":"1f9db-1f3fd-200d-2640-fe0f.svg","woman_vampire_tone4":"1f9db-1f3fe-200d-2640-fe0f.svg","woman_vampire_tone5":"1f9db-1f3ff-200d-2640-fe0f.svg","woman_walking":"1f6b6-200d-2640-fe0f.svg","woman_walking_tone1":"1f6b6-1f3fb-200d-2640-fe0f.svg","woman_walking_tone2":"1f6b6-1f3fc-200d-2640-fe0f.svg","woman_walking_tone3":"1f6b6-1f3fd-200d-2640-fe0f.svg","woman_walking_tone4":"1f6b6-1f3fe-200d-2640-fe0f.svg","woman_walking_tone5":"1f6b6-1f3ff-200d-2640-fe0f.svg","woman_wearing_turban":"1f473-200d-2640-fe0f.svg","woman_wearing_turban_tone1":"1f473-1f3fb-200d-2640-fe0f.svg","woman_wearing_turban_tone2":"1f473-1f3fc-200d-2640-fe0f.svg","woman_wearing_turban_tone3":"1f473-1f3fd-200d-2640-fe0f.svg","woman_wearing_turban_tone4":"1f473-1f3fe-200d-2640-fe0f.svg","woman_wearing_turban_tone5":"1f473-1f3ff-200d-2640-fe0f.svg","woman_white_haired":"1f469-200d-1f9b3.svg","woman_white_haired_tone1":"1f469-1f3fb-200d-1f9b3.svg","woman_white_haired_tone2":"1f469-1f3fc-200d-1f9b3.svg","woman_white_haired_tone3":"1f469-1f3fd-200d-1f9b3.svg","woman_white_haired_tone4":"1f469-1f3fe-200d-1f9b3.svg","woman_white_haired_tone5":"1f469-1f3ff-200d-1f9b3.svg","woman_with_headscarf":"1f9d5.svg","woman_with_headscarf_tone1":"1f9d5-1f3fb.svg","woman_with_headscarf_tone2":"1f9d5-1f3fc.svg","woman_with_headscarf_tone3":"1f9d5-1f3fd.svg","woman_with_headscarf_tone4":"1f9d5-1f3fe.svg","woman_with_headscarf_tone5":"1f9d5-1f3ff.svg","woman_with_probing_cane":"1f469-200d-1f9af.svg","woman_with_probing_cane_tone1":"1f469-1f3fb-200d-1f9af.svg","woman_with_probing_cane_tone2":"1f469-1f3fc-200d-1f9af.svg","woman_with_probing_cane_tone3":"1f469-1f3fd-200d-1f9af.svg","woman_with_probing_cane_tone4":"1f469-1f3fe-200d-1f9af.svg","woman_with_probing_cane_tone5":"1f469-1f3ff-200d-1f9af.svg","woman_with_veil":"1f470-200d-2640-fe0f.svg","woman_with_veil_tone1":"1f470-1f3fb-200d-2640-fe0f.svg","woman_with_veil_tone2":"1f470-1f3fc-200d-2640-fe0f.svg","woman_with_veil_tone3":"1f470-1f3fd-200d-2640-fe0f.svg","woman_with_veil_tone4":"1f470-1f3fe-200d-2640-fe0f.svg","woman_with_veil_tone5":"1f470-1f3ff-200d-2640-fe0f.svg","woman_zombie":"1f9df-200d-2640-fe0f.svg","womans_clothes":"1f45a.svg","womans_flat_shoe":"1f97f.svg","womans_hat":"1f452.svg","women_holding_hands_tone1":"1f46d-1f3fb.svg","women_holding_hands_tone1_tone2":"1f469-1f3fb-200d-1f91d-200d-1f469-1f3fc.svg","women_holding_hands_tone1_tone3":"1f469-1f3fb-200d-1f91d-200d-1f469-1f3fd.svg","women_holding_hands_tone1_tone4":"1f469-1f3fb-200d-1f91d-200d-1f469-1f3fe.svg","women_holding_hands_tone1_tone5":"1f469-1f3fb-200d-1f91d-200d-1f469-1f3ff.svg","women_holding_hands_tone2":"1f46d-1f3fc.svg","women_holding_hands_tone2_tone1":"1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb.svg","women_holding_hands_tone2_tone3":"1f469-1f3fc-200d-1f91d-200d-1f469-1f3fd.svg","women_holding_hands_tone2_tone4":"1f469-1f3fc-200d-1f91d-200d-1f469-1f3fe.svg","women_holding_hands_tone2_tone5":"1f469-1f3fc-200d-1f91d-200d-1f469-1f3ff.svg","women_holding_hands_tone3":"1f46d-1f3fd.svg","women_holding_hands_tone3_tone1":"1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb.svg","women_holding_hands_tone3_tone2":"1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc.svg","women_holding_hands_tone3_tone4":"1f469-1f3fd-200d-1f91d-200d-1f469-1f3fe.svg","women_holding_hands_tone3_tone5":"1f469-1f3fd-200d-1f91d-200d-1f469-1f3ff.svg","women_holding_hands_tone4":"1f46d-1f3fe.svg","women_holding_hands_tone4_tone1":"1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb.svg","women_holding_hands_tone4_tone2":"1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc.svg","women_holding_hands_tone4_tone3":"1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd.svg","women_holding_hands_tone4_tone5":"1f469-1f3fe-200d-1f91d-200d-1f469-1f3ff.svg","women_holding_hands_tone5":"1f46d-1f3ff.svg","women_holding_hands_tone5_tone1":"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb.svg","women_holding_hands_tone5_tone2":"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc.svg","women_holding_hands_tone5_tone3":"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd.svg","women_holding_hands_tone5_tone4":"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe.svg","women_with_bunny_ears_partying":"1f46f-200d-2640-fe0f.svg","women_wrestling":"1f93c-200d-2640-fe0f.svg","womens":"1f6ba.svg","wood":"1fab5.svg","woozy_face":"1f974.svg","worm":"1fab1.svg","worried":"1f61f.svg","wrench":"1f527.svg","writing_hand":"270d.svg","writing_hand_tone1":"270d-1f3fb.svg","writing_hand_tone2":"270d-1f3fc.svg","writing_hand_tone3":"270d-1f3fd.svg","writing_hand_tone4":"270d-1f3fe.svg","writing_hand_tone5":"270d-1f3ff.svg","x":"274c.svg","x_ray":"1fa7b.svg","yarn":"1f9f6.svg","yawning_face":"1f971.svg","yellow_circle":"1f7e1.svg","yellow_heart":"1f49b.svg","yellow_square":"1f7e8.svg","yen":"1f4b4.svg","yin_yang":"262f.svg","yo_yo":"1fa80.svg","yum":"1f60b.svg","zany_face":"1f92a.svg","zap":"26a1.svg","zebra":"1f993.svg","zero":"30-20e3.svg","zipper_mouth":"1f910.svg","zombie":"1f9df.svg","zzz":"1f4a4.svg"}}}�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/overrides/assets/stylesheets/����������������������������������������0000775�0000000�0000000�00000000000�14753064456�0024302�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/overrides/assets/stylesheets/custom.7c86dd97.min.css�����������������0000664�0000000�0000000�00000024504�14753064456�0030273�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������@keyframes heart{0%,40%,80%,to{transform:scale(1)}20%,60%{transform:scale(1.15)}}.md-typeset .twitter{color:#00acee}.md-typeset .mastodon{color:#897ff8}.md-typeset .mdx-video{width:auto}.md-typeset .mdx-video__inner{height:0;padding-bottom:56.138%;position:relative;width:100%}.md-typeset .mdx-video iframe{border:none;height:100%;left:0;overflow:hidden;position:absolute;top:0;width:100%}.md-typeset .mdx-heart{animation:heart 1s infinite}.md-typeset .mdx-insiders{color:#e91e63}.md-typeset .mdx-badge{font-size:.85em}.md-typeset .mdx-badge--heart{--md-typeset-a-color:#e92063;--md-accent-fg-color:#ff4281;--md-accent-fg-color--transparent:#e920631a;color:#e91e63}.md-typeset .mdx-badge--heart .twemoji{animation:heart 1s infinite}.md-typeset .mdx-badge--right{float:right;margin-left:.35em}[dir=ltr] .md-typeset .mdx-badge__icon{border-top-left-radius:.1rem}[dir=rtl] .md-typeset .mdx-badge__icon{border-top-right-radius:.1rem}[dir=ltr] .md-typeset .mdx-badge__icon{border-bottom-left-radius:.1rem}[dir=rtl] .md-typeset .mdx-badge__icon{border-bottom-right-radius:.1rem}.md-typeset .mdx-badge__icon{background:var(--md-accent-fg-color--transparent);padding:.2rem}.md-typeset .mdx-badge__icon:last-child{border-radius:.1rem}[dir=ltr] .md-typeset .mdx-badge__text{border-top-right-radius:.1rem}[dir=rtl] .md-typeset .mdx-badge__text{border-top-left-radius:.1rem}[dir=ltr] .md-typeset .mdx-badge__text{border-bottom-right-radius:.1rem}[dir=rtl] .md-typeset .mdx-badge__text{border-bottom-left-radius:.1rem}.md-typeset .mdx-badge__text{box-shadow:0 0 0 1px inset var(--md-accent-fg-color--transparent);padding:.2rem .3rem}.md-typeset .mdx-switch button{cursor:pointer;transition:opacity .25s}.md-typeset .mdx-switch button:focus,.md-typeset .mdx-switch button:hover{opacity:.75}.md-typeset .mdx-switch button>code{background-color:var(--md-primary-fg-color);color:var(--md-primary-bg-color);display:block}.md-typeset .mdx-columns ol,.md-typeset .mdx-columns ul{-moz-columns:2;column-count:2}@media screen and (max-width:29.984375em){.md-typeset .mdx-columns ol,.md-typeset .mdx-columns ul{-moz-columns:initial;columns:initial}}.md-typeset .mdx-columns li{-moz-column-break-inside:avoid;break-inside:avoid}.md-typeset .mdx-flags{margin:2em auto}.md-typeset .mdx-flags ol{list-style:none}.md-typeset .mdx-flags ol li{margin-bottom:1em}.md-typeset .mdx-flags__item{display:flex;gap:.6rem}.md-typeset .mdx-flags__content{display:flex;flex:1;flex-direction:column}.md-typeset .mdx-flags__content span{align-items:baseline;display:inline-flex;justify-content:space-between}.md-typeset .mdx-flags__content>span:nth-child(2){font-size:80%}.md-typeset .mdx-flags__content code{float:right}.md-typeset .mdx-social{height:min(27rem,80vw);position:relative}.md-typeset .mdx-social:hover .mdx-social__image{background-color:#e4e4e40d}.md-typeset .mdx-social__layer{margin-top:4rem;position:absolute;transform-style:preserve-3d;transition:.25s cubic-bezier(.7,0,.3,1)}.md-typeset .mdx-social__layer:hover .mdx-social__label{opacity:1}.md-typeset .mdx-social__layer:hover .mdx-social__image{background-color:#7f7f7ffc}.md-typeset .mdx-social__layer:hover~.mdx-social__layer{opacity:0}.md-typeset .mdx-social__image{box-shadow:-.25rem .25rem .5rem #0000000d;transform:rotate(-40deg) skew(15deg,15deg) scale(.7);transition:all .25s}.md-typeset .mdx-social__image img{display:block}.md-typeset .mdx-social__label{background-color:var(--md-default-fg-color--light);color:var(--md-default-bg-color);display:block;opacity:0;padding:.2rem .4rem;position:absolute;transition:all .25s}.md-typeset .mdx-social:hover .mdx-social__layer:nth-child(6){transform:translateY(-30px)}.md-typeset .mdx-social:hover .mdx-social__layer:nth-child(5){transform:translateY(-20px)}.md-typeset .mdx-social:hover .mdx-social__layer:nth-child(4){transform:translateY(-10px)}.md-typeset .mdx-social:hover .mdx-social__layer:nth-child(3){transform:translateY(0)}.md-typeset .mdx-social:hover .mdx-social__layer:nth-child(2){transform:translateY(10px)}.md-typeset .mdx-social:hover .mdx-social__layer:first-child{transform:translateY(20px)}.md-typeset .mdx-social:hover .mdx-social__layer:nth-child(0){transform:translateY(30px)}.md-banner{color:var(--md-footer-fg-color--lighter)}.md-banner strong{white-space:nowrap}.md-banner a,.md-banner strong{color:var(--md-footer-fg-color)}.md-banner a:focus,.md-banner a:hover{color:currentcolor}.md-banner a:focus .twemoji,.md-banner a:hover .twemoji{background-color:var(--md-footer-fg-color);box-shadow:none}.md-banner .twemoji{border-radius:100%;box-shadow:inset 0 0 0 .05rem currentcolor;display:inline-block;height:1.2rem;padding:.25rem;transition:all .25s;vertical-align:bottom;width:1.2rem}.md-banner .twemoji svg{display:block;max-height:none}.mdx-container{background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1123 258'><path d='M1124,2c0,0 0,256 0,256l-1125,0l0,-48c0,0 16,5 55,5c116,0 197,-92 325,-92c121,0 114,46 254,46c140,0 214,-167 572,-166Z' style='fill: hsla(0, 0%, 100%, 1)' /></svg>") no-repeat bottom,linear-gradient(to bottom,var(--md-primary-fg-color),#a63fd9 99%,var(--md-default-bg-color) 99%);padding-top:1rem}[data-md-color-scheme=slate] .mdx-container{background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1123 258'><path d='M1124,2c0,0 0,256 0,256l-1125,0l0,-48c0,0 16,5 55,5c116,0 197,-92 325,-92c121,0 114,46 254,46c140,0 214,-167 572,-166Z' style='fill: hsla(230, 15%, 14%, 1)' /></svg>") no-repeat bottom,linear-gradient(to bottom,var(--md-primary-fg-color),#363949 99%,var(--md-default-bg-color) 99%)}.mdx-hero{color:var(--md-primary-bg-color);margin:0 .8rem}.mdx-hero h1{color:currentcolor;font-weight:700;margin-bottom:1rem}@media screen and (max-width:29.984375em){.mdx-hero h1{font-size:1.4rem}}.mdx-hero__content{padding-bottom:6rem}@media screen and (min-width:60em){.mdx-hero{align-items:stretch;display:flex}.mdx-hero__content{margin-top:3.5rem;max-width:19rem;padding-bottom:14vw}.mdx-hero__image{order:1;transform:translateX(4rem);width:38rem}}@media screen and (min-width:76.25em){.mdx-hero__image{transform:translateX(8rem)}}.mdx-hero .md-button{color:var(--md-primary-bg-color);margin-right:.5rem;margin-top:.5rem}.mdx-hero .md-button:focus,.mdx-hero .md-button:hover{background-color:var(--md-accent-fg-color);border-color:var(--md-accent-fg-color);color:var(--md-accent-bg-color)}.mdx-hero .md-button--primary{background-color:var(--md-primary-bg-color);border-color:var(--md-primary-bg-color);color:#894da8}.md-typeset .mdx-iconsearch{background-color:var(--md-default-bg-color);border-radius:.1rem;box-shadow:var(--md-shadow-z1);position:relative;transition:box-shadow 125ms}.md-typeset .mdx-iconsearch:focus-within,.md-typeset .mdx-iconsearch:hover{box-shadow:var(--md-shadow-z2)}.md-typeset .mdx-iconsearch .md-input{background:var(--md-default-bg-color);box-shadow:none}[data-md-color-scheme=slate] .md-typeset .mdx-iconsearch .md-input{background:var(--md-code-bg-color)}.md-typeset .mdx-iconsearch-result{-webkit-backface-visibility:hidden;backface-visibility:hidden;max-height:50vh;overflow-y:auto;scrollbar-color:var(--md-default-fg-color--lighter) #0000;scrollbar-width:thin;touch-action:pan-y}.md-tooltip .md-typeset .mdx-iconsearch-result{max-height:10.25rem}.md-typeset .mdx-iconsearch-result::-webkit-scrollbar{height:.2rem;width:.2rem}.md-typeset .mdx-iconsearch-result::-webkit-scrollbar-thumb{background-color:var(--md-default-fg-color--lighter)}.md-typeset .mdx-iconsearch-result::-webkit-scrollbar-thumb:hover{background-color:var(--md-accent-fg-color)}.md-typeset .mdx-iconsearch-result__meta{color:var(--md-default-fg-color--lighter);font-size:.64rem;position:absolute;right:.6rem;top:.4rem}@media screen and (max-width:29.984375em){.md-typeset .mdx-iconsearch-result__meta{display:none}}.md-typeset .mdx-iconsearch-result__select{background-color:var(--md-default-fg-color--lightest);border:none;border-radius:.1rem;color:var(--md-default-fg-color--light);font-size:.64rem;padding-bottom:.15em;padding-top:.15em;position:absolute;right:.6rem;top:.4rem;transition:color 125ms,background-color 125ms}.md-typeset .mdx-iconsearch-result__select:focus,.md-typeset .mdx-iconsearch-result__select:hover{background-color:var(--md-accent-fg-color);color:var(--md-accent-bg-color);outline:none}.md-typeset .mdx-iconsearch-result__select+.mdx-iconsearch-result__meta{right:4.1rem}[dir=ltr] .md-typeset .mdx-iconsearch-result__list{margin-left:0}[dir=rtl] .md-typeset .mdx-iconsearch-result__list{margin-right:0}.md-typeset .mdx-iconsearch-result__list{list-style:none;margin:0;padding:0}[dir=ltr] .md-typeset .mdx-iconsearch-result__item{margin-left:0}[dir=rtl] .md-typeset .mdx-iconsearch-result__item{margin-right:0}.md-typeset .mdx-iconsearch-result__item{border-bottom:.05rem solid var(--md-default-fg-color--lightest);margin:0;padding:.2rem .6rem}.md-typeset .mdx-iconsearch-result__item:last-child{border-bottom:none}.md-typeset .mdx-iconsearch-result__item>*{margin-right:.6rem}.md-typeset .mdx-iconsearch-result__item img{height:.9rem;width:.9rem}[data-md-color-scheme=slate] .md-typeset .mdx-iconsearch-result__item img[src*=squidfunk]{filter:invert(1)}.md-typeset .mdx-premium p{margin:2em 0;text-align:center}.md-typeset .mdx-premium img{height:3.25rem}.md-typeset .mdx-premium p:last-child{display:flex;flex-wrap:wrap;justify-content:center}.md-typeset .mdx-premium p:last-child>a{display:block;flex-shrink:0}.md-typeset .mdx-sponsorship__list{margin:2em 0}.md-typeset .mdx-sponsorship__list:after{clear:both;content:"";display:block}[dir=ltr] .md-typeset .mdx-sponsorship__item{float:left}[dir=rtl] .md-typeset .mdx-sponsorship__item{float:right}.md-typeset .mdx-sponsorship__item{border-radius:100%;display:block;height:1.6rem;margin:.2rem;overflow:hidden;transform:scale(1);transition:color 125ms,transform 125ms;width:1.6rem}.md-typeset .mdx-sponsorship__item:focus,.md-typeset .mdx-sponsorship__item:hover{transform:scale(1.1)}.md-typeset .mdx-sponsorship__item:focus img,.md-typeset .mdx-sponsorship__item:hover img{filter:grayscale(0)}.md-typeset .mdx-sponsorship__item--private{background:var(--md-default-fg-color--lightest);color:var(--md-default-fg-color--lighter);font-size:.6rem;font-weight:700;line-height:1.6rem;text-align:center}.md-typeset .mdx-sponsorship__item img{display:block;filter:grayscale(100%) opacity(75%);height:auto;transition:filter 125ms;width:100%}.md-typeset .mdx-sponsorship-button{font-weight:400}.md-typeset .mdx-sponsorship-count,.md-typeset .mdx-sponsorship-total{font-weight:700}��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/overrides/assets/stylesheets/custom.7c86dd97.min.css.map�������������0000664�0000000�0000000�00000007472�14753064456�0031054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{"version":3,"sources":["src/overrides/assets/stylesheets/custom/_typeset.scss","../../../../src/overrides/assets/stylesheets/custom.scss","src/templates/assets/stylesheets/utilities/_break.scss","src/overrides/assets/stylesheets/custom/layout/_banner.scss","src/overrides/assets/stylesheets/custom/layout/_hero.scss","src/overrides/assets/stylesheets/custom/layout/_iconsearch.scss","src/overrides/assets/stylesheets/custom/layout/_sponsorship.scss"],"names":[],"mappings":"AA2BA,iBACE,cAIE,kBC7BF,CDgCA,QAEE,qBC/BF,CACF,CD0CE,qBACE,aCxCJ,CD6CE,sBACE,aC3CJ,CD+CE,uBACE,UC7CJ,CDgDI,8BAGE,QAAA,CACA,sBAAA,CAHA,iBAAA,CACA,UC5CN,CDkDI,8BAOE,WAAA,CAFA,WAAA,CAFA,MAAA,CAGA,eAAA,CALA,iBAAA,CACA,KAAA,CAEA,UC7CN,CDqDE,uBACE,2BCnDJ,CDuDE,0BACE,aCrDJ,CD2DE,uBACE,eCzDJ,CD4DI,8BACE,4BAAA,CACA,4BAAA,CACA,2CAAA,CAEA,aC3DN,CD8DM,uCACE,2BC5DR,CDiEI,8BACE,WAAA,CACA,iBC/DN,CDmEI,uCAGE,4BChEN,CD6DI,uCAGE,6BChEN,CD6DI,uCAIE,+BCjEN,CD6DI,uCAIE,gCCjEN,CD6DI,6BAEE,iDAAA,CADA,aC9DN,CDoEM,wCACE,mBClER,CDuEI,uCAEE,6BCnEN,CDiEI,uCAEE,4BCnEN,CDiEI,uCAGE,gCCpEN,CDiEI,uCAGE,+BCpEN,CDiEI,6BAIE,iEAAA,CAHA,mBClEN,CD4EE,+BACE,cAAA,CACA,uBC1EJ,CD6EI,0EACE,WC3EN,CD+EI,oCAGE,2CAAA,CADA,gCAAA,CADA,aC3EN,CDqFI,wDAEE,cAAA,CAAA,cCnFN,CCgII,0CF/CA,wDAMI,oBAAA,CAAA,eClFN,CACF,CDsFI,4BACE,8BAAA,CAAA,kBCpFN,CDyFE,uBACE,eCvFJ,CD0FI,0BACE,eCxFN,CD2FM,6BACE,iBCzFR,CD8FI,6BACE,YAAA,CACA,SC5FN,CDgGI,gCACE,YAAA,CACA,MAAA,CACA,qBC9FN,CDiGM,qCAEE,oBAAA,CADA,mBAAA,CAEA,6BC/FR,CDmGM,kDACE,aCjGR,CDqGM,qCACE,WCnGR,CDyGE,wBAEE,sBAAA,CADA,iBCtGJ,CD0GI,iDACE,0BCxGN,CD4GI,+BAEE,eAAA,CADA,iBAAA,CAGA,2BAAA,CADA,uCCzGN,CDgHQ,wDACE,SC9GV,CDkHQ,wDACE,0BChHV,CDoHQ,wDACE,SClHV,CDwHI,+BACE,yCACE,CAGF,oDAAA,CADA,mBCvHN,CD2HM,mCACE,aCzHR,CD8HI,+BAKE,kDAAA,CADA,gCAAA,CAFA,aAAA,CAIA,SAAA,CAHA,mBAAA,CAFA,iBAAA,CAMA,mBC5HN,CDiIM,8DACE,2BC/HR,CD8HM,8DACE,2BC5HR,CD2HM,8DACE,2BCzHR,CDwHM,8DACE,uBCtHR,CDqHM,8DACE,0BCnHR,CDkHM,6DACE,0BChHR,CD+GM,8DACE,0BC7GR,CE3JA,WACE,wCF8JF,CE3JE,kBAEE,kBF6JJ,CE1JE,+BAJE,+BFiKJ,CE1JI,sCAEE,kBF2JN,CEzJM,wDACE,0CAAA,CACA,eF2JR,CEtJE,oBAME,kBAAA,CACA,0CAAA,CANA,oBAAA,CAEA,aAAA,CACA,cAAA,CAIA,mBAAA,CAHA,qBAAA,CAHA,YF8JJ,CEtJI,wBACE,aAAA,CACA,eFwJN,CG3LA,eAEE,uYACE,CAFF,gBH+LF,CGpLE,4CACE,yYHsLJ,CG1KA,UAEE,gCAAA,CADA,cH8KF,CG1KE,aAGE,kBAAA,CADA,eAAA,CADA,kBH8KJ,CCpBI,0CE3JF,aAOI,gBH4KJ,CACF,CGxKE,mBACE,mBH0KJ,CC/CI,mCE7IJ,UAwBI,mBAAA,CADA,YH0KF,CGtKE,mBAGE,iBAAA,CAFA,eAAA,CACA,mBHyKJ,CGpKE,iBACE,OAAA,CAEA,0BAAA,CADA,WHuKJ,CACF,CC/DI,sCEhGA,iBACE,0BHkKJ,CACF,CG9JE,qBAGE,gCAAA,CADA,kBAAA,CADA,gBHkKJ,CG7JI,sDAEE,0CAAA,CACA,sCAAA,CAFA,+BHiKN,CG3JI,8BAEE,2CAAA,CACA,uCAAA,CAFA,aH+JN,CItPE,4BAEE,2CAAA,CACA,mBAAA,CACA,8BAAA,CAHA,iBAAA,CAIA,2BJyPJ,CItPI,2EACE,8BJwPN,CIpPI,sCACE,qCAAA,CACA,eJsPN,CInPM,mEACE,kCJqPR,CI/OE,mCAIE,kCAAA,CAAA,0BAAA,CAHA,eAAA,CACA,eAAA,CAIA,yDAAA,CACA,oBAAA,CAFA,kBJkPJ,CI7OI,+CACE,mBJ+ON,CI3OI,sDAEE,YAAA,CADA,WJ8ON,CIzOI,4DACE,oDJ2ON,CIxOM,kEACE,0CJ0OR,CIrOI,yCAKE,yCAAA,CADA,gBAAA,CAHA,iBAAA,CAEA,WAAA,CADA,SJ0ON,CC9GI,0CG9HA,yCASI,YJuON,CACF,CInOI,2CAOE,qDAAA,CACA,WAAA,CACA,mBAAA,CAHA,uCAAA,CADA,gBAAA,CADA,oBAAA,CAAA,iBAAA,CAHA,iBAAA,CAEA,WAAA,CADA,SAAA,CAQA,6CJqON,CIlOM,kGAGE,0CAAA,CADA,+BAAA,CAEA,YJmOR,CI/NM,wEACE,YJiOR,CI5NI,mDAKE,aJ6NN,CIlOI,mDAKE,cJ6NN,CIlOI,yCAME,eAAA,CAJA,QAAA,CADA,SJiON,CIxNI,mDAKE,aJyNN,CI9NI,mDAKE,cJyNN,CI9NI,yCAME,+DAAA,CAJA,QAAA,CADA,mBJ6NN,CIrNM,oDACE,kBJuNR,CInNM,2CACE,kBJqNR,CIjNM,6CAEE,YAAA,CADA,WJoNR,CIhNQ,0FACE,gBJkNV,CKnVI,2BACE,YAAA,CACA,iBLsVN,CKlVI,6BACE,cLoVN,CKhVI,sCACE,YAAA,CACA,cAAA,CACA,sBLkVN,CK/UM,wCACE,aAAA,CACA,aLiVR,CKxUI,mCACE,YL0UN,CKvUM,yCAEE,UAAA,CACA,UAAA,CAFA,aL2UR,CKpUI,6CAEE,UL6UN,CK/UI,6CAEE,WL6UN,CK/UI,mCAOE,kBAAA,CANA,aAAA,CAGA,aAAA,CACA,YAAA,CACA,eAAA,CAKA,kBAAA,CAHA,sCACE,CANF,YL4UN,CKjUM,kFACE,oBLmUR,CKhUQ,0FACE,mBLkUV,CK7TM,4CAME,+CAAA,CAFA,yCAAA,CAHA,eAAA,CACA,eAAA,CACA,kBAAA,CAEA,iBLgUR,CK3TM,uCACE,aAAA,CAGA,mCAAA,CADA,WAAA,CAEA,uBAAA,CAHA,ULgUR,CKvTE,oCACE,eLyTJ,CKrTE,sEAEE,eLuTJ","file":"custom.css"}������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/overrides/home.html��������������������������������������������������0000664�0000000�0000000�00000002315�14753064456�0022243�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{#- This file was automatically generated - do not edit -#} {% extends "main.html" %} {% block tabs %} {{ super() }} <style>.md-header{position:initial}.md-main__inner{margin:0}.md-content{display:none}@media screen and (min-width:60em){.md-sidebar--secondary{display:none}}@media screen and (min-width:76.25em){.md-sidebar--primary{display:none}}</style> <section class="mdx-container"> <div class="md-grid md-typeset"> <div class="mdx-hero"> <div class="mdx-hero__image"> <img src="assets/images/illustration.png" alt="" width="1659" height="1200" draggable="false"> </div> <div class="mdx-hero__content"> <h1>Technical documentation that just works</h1> <p>{{ config.site_description }}. Set up in 5 minutes.</p> <a href="{{ page.next_page.url | url }}" title="{{ page.next_page.title | e }}" class="md-button md-button--primary"> Quick start </a> <a href="{{ 'insiders/' | url }}" title="Material for MkDocs Insiders" class="md-button"> Get Insiders </a> </div> </div> </div> </section> {% endblock %} {% block content %}{% endblock %} {% block footer %}{% endblock %} �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/overrides/hooks/�����������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0021547�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/overrides/hooks/shortcodes.py����������������������������������������0000664�0000000�0000000�00000026031�14753064456�0024300�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations import posixpath import re from mkdocs.config.defaults import MkDocsConfig from mkdocs.structure.files import File, Files from mkdocs.structure.pages import Page from re import Match # ----------------------------------------------------------------------------- # Hooks # ----------------------------------------------------------------------------- # @todo def on_page_markdown( markdown: str, *, page: Page, config: MkDocsConfig, files: Files ): # Replace callback def replace(match: Match): type, args = match.groups() args = args.strip() if type == "version": if args.startswith("insiders-"): return _badge_for_version_insiders(args, page, files) else: return _badge_for_version(args, page, files) elif type == "sponsors": return _badge_for_sponsors(page, files) elif type == "flag": return flag(args, page, files) elif type == "option": return option(args) elif type == "setting": return setting(args) elif type == "feature": return _badge_for_feature(args, page, files) elif type == "plugin": return _badge_for_plugin(args, page, files) elif type == "extension": return _badge_for_extension(args, page, files) elif type == "utility": return _badge_for_utility(args, page, files) elif type == "example": return _badge_for_example(args, page, files) elif type == "demo": return _badge_for_demo(args, page, files) elif type == "default": if args == "none": return _badge_for_default_none(page, files) elif args == "computed": return _badge_for_default_computed(page, files) else: return _badge_for_default(args, page, files) # Otherwise, raise an error raise RuntimeError(f"Unknown shortcode: {type}") # Find and replace all external asset URLs in current page return re.sub( r"<!-- md:(\w+)(.*?) -->", replace, markdown, flags = re.I | re.M ) # ----------------------------------------------------------------------------- # Helper functions # ----------------------------------------------------------------------------- # Create a flag of a specific type def flag(args: str, page: Page, files: Files): type, *_ = args.split(" ", 1) if type == "experimental": return _badge_for_experimental(page, files) elif type == "required": return _badge_for_required(page, files) elif type == "customization": return _badge_for_customization(page, files) elif type == "metadata": return _badge_for_metadata(page, files) elif type == "multiple": return _badge_for_multiple(page, files) raise RuntimeError(f"Unknown type: {type}") # Create a linkable option def option(type: str): _, *_, name = re.split(r"[.:]", type) return f"[`{name}`](#+{type}){{ #+{type} }}\n\n" # Create a linkable setting - @todo append them to the bottom of the page def setting(type: str): _, *_, name = re.split(r"[.*]", type) return f"`{name}` {{ #{type} }}\n\n[{type}]: #{type}\n\n" # ----------------------------------------------------------------------------- # Resolve path of file relative to given page - the posixpath always includes # one additional level of `..` which we need to remove def _resolve_path(path: str, page: Page, files: Files): path, anchor, *_ = f"{path}#".split("#") path = _resolve(files.get_file_from_path(path), page) return "#".join([path, anchor]) if anchor else path # Resolve path of file relative to given page - the posixpath always includes # one additional level of `..` which we need to remove def _resolve(file: File, page: Page): path = posixpath.relpath(file.src_uri, page.file.src_uri) return posixpath.sep.join(path.split(posixpath.sep)[1:]) # ----------------------------------------------------------------------------- # Create badge def _badge(icon: str, text: str = "", type: str = ""): classes = f"mdx-badge mdx-badge--{type}" if type else "mdx-badge" return "".join([ f"<span class=\"{classes}\">", *([f"<span class=\"mdx-badge__icon\">{icon}</span>"] if icon else []), *([f"<span class=\"mdx-badge__text\">{text}</span>"] if text else []), f"</span>", ]) # Create sponsors badge def _badge_for_sponsors(page: Page, files: Files): icon = "material-heart" href = _resolve_path("insiders/index.md", page, files) return _badge( icon = f"[:{icon}:]({href} 'Sponsors only')", type = "heart" ) # Create badge for version def _badge_for_version(text: str, page: Page, files: Files): spec = text path = f"changelog/index.md#{spec}" # Return badge icon = "material-tag-outline" href = _resolve_path("conventions.md#version", page, files) return _badge( icon = f"[:{icon}:]({href} 'Minimum version')", text = f"[{text}]({_resolve_path(path, page, files)})" if spec else "" ) # Create badge for version of Insiders def _badge_for_version_insiders(text: str, page: Page, files: Files): spec = text.replace("insiders-", "") path = f"insiders/changelog/index.md#{spec}" # Return badge icon = "material-tag-heart-outline" href = _resolve_path("conventions.md#version-insiders", page, files) return _badge( icon = f"[:{icon}:]({href} 'Minimum version')", text = f"[{text}]({_resolve_path(path, page, files)})" if spec else "" ) # Create badge for feature def _badge_for_feature(text: str, page: Page, files: Files): icon = "material-toggle-switch" href = _resolve_path("conventions.md#feature", page, files) return _badge( icon = f"[:{icon}:]({href} 'Optional feature')", text = text ) # Create badge for plugin def _badge_for_plugin(text: str, page: Page, files: Files): icon = "material-floppy" href = _resolve_path("conventions.md#plugin", page, files) return _badge( icon = f"[:{icon}:]({href} 'Plugin')", text = text ) # Create badge for extension def _badge_for_extension(text: str, page: Page, files: Files): icon = "material-language-markdown" href = _resolve_path("conventions.md#extension", page, files) return _badge( icon = f"[:{icon}:]({href} 'Markdown extension')", text = text ) # Create badge for utility def _badge_for_utility(text: str, page: Page, files: Files): icon = "material-package-variant" href = _resolve_path("conventions.md#utility", page, files) return _badge( icon = f"[:{icon}:]({href} 'Third-party utility')", text = text ) # Create badge for example def _badge_for_example(text: str, page: Page, files: Files): return "\n".join([ _badge_for_example_download(text, page, files), _badge_for_example_view(text, page, files) ]) # Create badge for example view def _badge_for_example_view(text: str, page: Page, files: Files): icon = "material-folder-eye" href = f"https://mkdocs-material.github.io/examples/{text}/" return _badge( icon = f"[:{icon}:]({href} 'View example')", type = "right" ) # Create badge for example download def _badge_for_example_download(text: str, page: Page, files: Files): icon = "material-folder-download" href = f"https://mkdocs-material.github.io/examples/{text}.zip" return _badge( icon = f"[:{icon}:]({href} 'Download example files')", text = f"[`.zip`]({href})", type = "right" ) # Create badge for demo repository def _badge_for_demo(text: str, page: Page, files: Files): icon = "material-github" href = f"https://github.com/mkdocs-material/{text}" return _badge( icon = f"[:{icon}:]({href} 'Demo repository')", text = text, type = "right" ) # Create badge for default value def _badge_for_default(text: str, page: Page, files: Files): icon = "material-water" href = _resolve_path("conventions.md#default", page, files) return _badge( icon = f"[:{icon}:]({href} 'Default value')", text = text ) # Create badge for empty default value def _badge_for_default_none(page: Page, files: Files): icon = "material-water-outline" href = _resolve_path("conventions.md#default", page, files) return _badge( icon = f"[:{icon}:]({href} 'Default value is empty')" ) # Create badge for computed default value def _badge_for_default_computed(page: Page, files: Files): icon = "material-water-check" href = _resolve_path("conventions.md#default", page, files) return _badge( icon = f"[:{icon}:]({href} 'Default value is computed')" ) # Create badge for metadata property flag def _badge_for_metadata(page: Page, files: Files): icon = "material-list-box-outline" href = _resolve_path("conventions.md#metadata", page, files) return _badge( icon = f"[:{icon}:]({href} 'Metadata property')" ) # Create badge for required value flag def _badge_for_required(page: Page, files: Files): icon = "material-alert" href = _resolve_path("conventions.md#required", page, files) return _badge( icon = f"[:{icon}:]({href} 'Required value')" ) # Create badge for customization flag def _badge_for_customization(page: Page, files: Files): icon = "material-brush-variant" href = _resolve_path("conventions.md#customization", page, files) return _badge( icon = f"[:{icon}:]({href} 'Customization')" ) # Create badge for multiple instance flag def _badge_for_multiple(page: Page, files: Files): icon = "material-inbox-multiple" href = _resolve_path("conventions.md#multiple-instances", page, files) return _badge( icon = f"[:{icon}:]({href} 'Multiple instances')" ) # Create badge for experimental flag def _badge_for_experimental(page: Page, files: Files): icon = "material-flask-outline" href = _resolve_path("conventions.md#experimental", page, files) return _badge( icon = f"[:{icon}:]({href} 'Experimental')" )�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/overrides/hooks/translations.html������������������������������������0000664�0000000�0000000�00000001560�14753064456�0025160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{#- This file was automatically generated - do not edit -#} {% macro render_language(language) %} <div class="mdx-flags__item" markdown> :flag_{{ language.flag }}:{ .lg .middle } <span class="mdx-flags__content"> <span> <strong>{{ language.name }}</strong> <code>{{ language.code }}</code> </span> {% if language.miss %} <span> <a href="{{ language.link }}"> {{ language.miss | length }} translations missing </a> </span> {% else %} <small>Complete</small> {% endif %} </span> </div> {% endmacro %} {% macro render(translations, start = 1) %} <div class="mdx-columns mdx-flags" markdown> <ol markdown> {% for language in translations %} <li markdown>{{ render_language(language) }}</li> {% endfor %} </ol> </div> {% endmacro %} ������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/overrides/hooks/translations.py��������������������������������������0000664�0000000�0000000�00000013404�14753064456�0024644�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. import os import re from glob import iglob from mkdocs.config.defaults import MkDocsConfig from mkdocs.structure.pages import Page from urllib.parse import urlencode, urlparse # ----------------------------------------------------------------------------- # Hooks # ----------------------------------------------------------------------------- # Determine missing translations and render language overview in the setup # guide, including links to provide missing translations. def on_page_markdown(markdown: str, *, page: Page, config: MkDocsConfig, files): issue_url = "https://github.com/squidfunk/mkdocs-material/issues/new" if page.file.src_uri != "setup/changing-the-language.md": return # Collect all existing languages names: dict[str, str] = {} known: dict[str, dict[str, str]] = {} for path in iglob("src/templates/partials/languages/*.html"): with open(path, "r", encoding = "utf-8") as f: data = f.read() # Extract language code and name name, = re.findall(r"<!-- Translations: (.+) -->", data) code, _ = os.path.splitext(os.path.basename(path)) # Map names and available translations names[code] = name known[code] = dict(re.findall( r"^ \"([^\"]+)\": \"([^\"]*)\"(?:,|$)?", data, re.MULTILINE )) # Remove technical stuff for key in [ "direction", "search.config.pipeline", "search.config.lang", "search.config.separator" ]: if key in known[code]: del known[code][key] # Traverse all languages and compute missing translations languages = [] reference = set(known["en"]) for code, name in names.items(): miss = reference - set(known[code]) # Check each translations translations: list[str] = [] for key, value in known["en"].items(): if key in known[code]: translations.append( f" \"{key}\": \"{known[code][key]}\"" ) else: translations.append( f" \"{key}\": \"{value} ⬅️\"" ) # Assemble GitHub issue URL link = urlparse(issue_url) link = link._replace(query = urlencode({ "template": "04-add-translations.yml", "title": f"Update {name} translations", "translations": "\n".join([ "{% macro t(key) %}{{ {", ",\n".join(translations), "}[key] }}{% endmacro %}" ]), "country-flag": f":flag_{countries[code]}:" })) # Add translation languages.append({ "flag": countries[code], "code": code, "name": name, "link": link.geturl(), "miss": miss }) # Load template and render translations env = config.theme.get_env() template = env.get_template( "hooks/translations.html") translations = template.module.render( sorted(languages, key = lambda language: language["name"]) ) # Replace translation marker return markdown.replace( "<!-- hooks/translations.py -->", "\n".join( [line.lstrip() for line in translations.split("\n") ] )) # ----------------------------------------------------------------------------- # Data # ----------------------------------------------------------------------------- # Map ISO 639-1 (languages) to ISO 3166 (countries) countries = { "af": "za", "az": "az", "ar": "ae", "be": "by", "bg": "bg", "bn": "bd", "ca": "es", "cs": "cz", "da": "dk", "de": "de", "el": "gr", "en": "us", "eo": "eu", "es": "es", "et": "ee", "eu": "es", "fa": "ir", "fi": "fi", "fr": "fr", "gl": "es", "he": "il", "hi": "in", "hr": "hr", "hu": "hu", "hy": "am", "id": "id", "is": "is", "it": "it", "ja": "jp", "ka": "ge", "kn": "in", "ko": "kr", "ku-IQ": "iq", "lb": "lu", "lt": "lt", "lv": "lv", "mk": "mk", "mn": "mn", "ms": "my", "my": "mm", "nb": "no", "nl": "nl", "nn": "no", "pl": "pl", "pt-BR": "br", "pt": "pt", "ro": "ro", "ru": "ru", "sa": "in", "sh": "rs", "sq": "al", "si": "lk", "sk": "sk", "sl": "si", "sr": "rs", "sv": "se", "te": "in", "th": "th", "ta": "in", "tl": "ph", "tr": "tr", "uk": "ua", "ur": "pk", "uz": "uz", "vi": "vn", "zh": "cn", "zh-Hant": "cn", "zh-TW": "tw" } ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/overrides/main.html��������������������������������������������������0000664�0000000�0000000�00000001470�14753064456�0022240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{#- This file was automatically generated - do not edit -#} {% extends "base.html" %} {% block extrahead %} <link rel="stylesheet" href="{{ 'assets/stylesheets/custom.7c86dd97.min.css' | url }}"> {% endblock %} {% block announce %} For updates follow <strong>@squidfunk</strong> on <a rel="me" href="https://fosstodon.org/@squidfunk"> <span class="twemoji mastodon"> {% include ".icons/fontawesome/brands/mastodon.svg" %} </span> <strong>Fosstodon</strong> </a> and <a href="https://x.com/squidfunk"> <span class="twemoji twitter"> {% include ".icons/fontawesome/brands/twitter.svg" %} </span> <strong>Twitter</strong> </a> {% endblock %} {% block scripts %} {{ super() }} <script src="{{ 'assets/javascripts/custom.00e08f28.min.js' | url }}"></script> {% endblock %} ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/�������������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0020103�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/__init__.py��������������������������������������������������0000664�0000000�0000000�00000002145�14753064456�0022216�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/blog/��������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0021026�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/blog/__init__.py���������������������������������������������0000664�0000000�0000000�00000002145�14753064456�0023141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/blog/author.py�����������������������������������������������0000664�0000000�0000000�00000003332�14753064456�0022703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from mkdocs.config.base import Config from mkdocs.config.config_options import DictOfItems, Optional, SubConfig, Type # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Author class Author(Config): name = Type(str) description = Type(str) avatar = Type(str) slug = Optional(Type(str)) url = Optional(Type(str)) # ----------------------------------------------------------------------------- # Authors class Authors(Config): authors = DictOfItems(SubConfig(Author), default = {}) ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/blog/config.py�����������������������������������������������0000664�0000000�0000000�00000007634�14753064456�0022657�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from collections.abc import Callable from mkdocs.config.config_options import Choice, Deprecated, Optional, Type from mkdocs.config.base import Config from pymdownx.slugs import slugify # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Blog plugin configuration class BlogConfig(Config): enabled = Type(bool, default = True) # Settings for blog blog_dir = Type(str, default = "blog") blog_toc = Type(bool, default = False) # Settings for posts post_dir = Type(str, default = "{blog}/posts") post_date_format = Type(str, default = "long") post_url_date_format = Type(str, default = "yyyy/MM/dd") post_url_format = Type(str, default = "{date}/{slug}") post_url_max_categories = Type(int, default = 1) post_slugify = Type(Callable, default = slugify(case = "lower")) post_slugify_separator = Type(str, default = "-") post_excerpt = Choice(["optional", "required"], default = "optional") post_excerpt_max_authors = Type(int, default = 1) post_excerpt_max_categories = Type(int, default = 5) post_excerpt_separator = Type(str, default = "<!-- more -->") post_readtime = Type(bool, default = True) post_readtime_words_per_minute = Type(int, default = 265) # Settings for archive archive = Type(bool, default = True) archive_name = Type(str, default = "blog.archive") archive_date_format = Type(str, default = "yyyy") archive_url_date_format = Type(str, default = "yyyy") archive_url_format = Type(str, default = "archive/{date}") archive_toc = Optional(Type(bool)) # Settings for categories categories = Type(bool, default = True) categories_name = Type(str, default = "blog.categories") categories_url_format = Type(str, default = "category/{slug}") categories_slugify = Type(Callable, default = slugify(case = "lower")) categories_slugify_separator = Type(str, default = "-") categories_allowed = Type(list, default = []) categories_toc = Optional(Type(bool)) # Settings for authors authors = Type(bool, default = True) authors_file = Type(str, default = "{blog}/.authors.yml") # Settings for pagination pagination = Type(bool, default = True) pagination_per_page = Type(int, default = 10) pagination_url_format = Type(str, default = "page/{page}") pagination_format = Type(str, default = "~2~") pagination_if_single_page = Type(bool, default = False) pagination_keep_content = Type(bool, default = False) # Settings for drafts draft = Type(bool, default = False) draft_on_serve = Type(bool, default = True) draft_if_future_date = Type(bool, default = False) # Deprecated settings pagination_template = Deprecated(moved_to = "pagination_format") ����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/blog/plugin.py�����������������������������������������������0000664�0000000�0000000�00000120705�14753064456�0022703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations import logging import os import posixpath import yaml from babel.dates import format_date, format_datetime from copy import copy from datetime import datetime, timezone from jinja2 import pass_context from jinja2.runtime import Context from mkdocs.config.defaults import MkDocsConfig from mkdocs.exceptions import PluginError from mkdocs.plugins import BasePlugin, event_priority from mkdocs.structure import StructureItem from mkdocs.structure.files import File, Files, InclusionLevel from mkdocs.structure.nav import Link, Navigation, Section from mkdocs.structure.pages import Page from mkdocs.structure.toc import AnchorLink, TableOfContents from mkdocs.utils import copy_file, get_relative_url from paginate import Page as Pagination from shutil import rmtree from tempfile import mkdtemp from urllib.parse import urlparse from yaml import SafeLoader from .author import Authors from .config import BlogConfig from .readtime import readtime from .structure import Archive, Category, Excerpt, Post, Reference, View # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Blog plugin class BlogPlugin(BasePlugin[BlogConfig]): supports_multiple_instances = True # Initialize plugin def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) # Initialize incremental builds self.is_serve = False self.is_dirty = False # Initialize temporary directory self.temp_dir = mkdtemp() # Determine whether we're serving the site def on_startup(self, *, command, dirty): self.is_serve = command == "serve" self.is_dirty = dirty # Initialize authors and set defaults def on_config(self, config): if not self.config.enabled: return # Initialize entrypoint self.blog: View # Initialize and resolve authors, if enabled if self.config.authors: self.authors = self._resolve_authors(config) # Initialize table of contents settings if not isinstance(self.config.archive_toc, bool): self.config.archive_toc = self.config.blog_toc if not isinstance(self.config.categories_toc, bool): self.config.categories_toc = self.config.blog_toc # By default, drafts are rendered when the documentation is served, # but not when it is built, for a better user experience if self.is_serve and self.config.draft_on_serve: self.config.draft = True # Resolve and load posts and generate views (run later) - we want to allow # other plugins to add generated posts or views, so we run this plugin as # late as possible. We also need to remove the posts from the navigation # before navigation is constructed, as the entrypoint should be considered # to be the active page for each post. The URLs of posts are computed before # Markdown processing, so that when linking to and from posts, behavior is # exactly the same as with regular documentation pages. We create all pages # related to posts as part of this plugin, so we control the entire process. @event_priority(-50) def on_files(self, files, *, config): if not self.config.enabled: return # Resolve path to entrypoint and site directory root = posixpath.normpath(self.config.blog_dir) site = config.site_dir # Compute and normalize path to posts directory path = self.config.post_dir.format(blog = root) path = posixpath.normpath(path) # Adjust destination paths for media files for file in files.media_files(): if not file.src_uri.startswith(path): continue # We need to adjust destination paths for assets to remove the # purely functional posts directory prefix when building file.dest_uri = file.dest_uri.replace(path, root) file.abs_dest_path = os.path.join(site, file.dest_path) file.url = file.url.replace(path, root) # Resolve entrypoint and posts sorted by descending date - if the posts # directory or entrypoint do not exist, they are automatically created self.blog = self._resolve(files, config) self.blog.posts = sorted( self._resolve_posts(files, config), key = lambda post: post.config.date.created, reverse = True ) # Generate views for archive if self.config.archive: self.blog.views.extend( self._generate_archive(config, files) ) # Generate views for categories if self.config.categories: self.blog.views.extend(sorted( self._generate_categories(config, files), key = lambda view: view.name, reverse = False )) # Generate pages for views if self.config.pagination: for view in self._resolve_views(self.blog): for page in self._generate_pages(view, config, files): view.pages.append(page) # Ensure that entrypoint is always included in navigation self.blog.file.inclusion = InclusionLevel.INCLUDED # Attach posts and views to navigation (run later) - again, we allow other # plugins to alter the navigation before we start to attach posts and views # generated by this plugin at the correct locations in the navigation. Also, # we make sure to correct links to the parent and siblings of each page. @event_priority(-50) def on_nav(self, nav, *, config, files): if not self.config.enabled: return # If we're not building a standalone blog, the entrypoint will always # have a parent when it is included in the navigation. The parent is # essential to correctly resolve the location where the archive and # category views are attached. If the entrypoint doesn't have a parent, # we know that the author did not include it in the navigation, so we # explicitly mark it as not included. if not self.blog.parent and self.config.blog_dir != ".": self.blog.file.inclusion = InclusionLevel.NOT_IN_NAV # Attach posts to entrypoint without adding them to the navigation, so # that the entrypoint is considered to be the active page for each post self._attach(self.blog, [None, *reversed(self.blog.posts), None]) for post in self.blog.posts: post.file.inclusion = InclusionLevel.NOT_IN_NAV # Revert temporary exclusion of views from navigation for view in self._resolve_views(self.blog): view.file.inclusion = self.blog.file.inclusion for page in view.pages: page.file.inclusion = self.blog.file.inclusion # Attach views for archive if self.config.archive: title = self._translate(self.config.archive_name, config) views = [_ for _ in self.blog.views if isinstance(_, Archive)] # Attach and link views for archive if self.blog.file.inclusion.is_in_nav(): self._attach_to(self.blog, Section(title, views), nav) # Attach views for categories if self.config.categories: title = self._translate(self.config.categories_name, config) views = [_ for _ in self.blog.views if isinstance(_, Category)] # Attach and link views for categories, if any if self.blog.file.inclusion.is_in_nav() and views: self._attach_to(self.blog, Section(title, views), nav) # Attach pages for views if self.config.pagination: for view in self._resolve_views(self.blog): for at in range(1, len(view.pages)): self._attach_at(view.parent, view, view.pages[at]) # Prepare post for rendering (run later) - allow other plugins to alter # the contents or metadata of a post before it is rendered and make sure # that the post includes a separator, which is essential for rendering # excerpts that should be included in views @event_priority(-50) def on_page_markdown(self, markdown, *, page, config, files): if not self.config.enabled: return # Skip if page is not a post managed by this instance - this plugin has # support for multiple instances, which is why this check is necessary if page not in self.blog.posts: if not self.config.pagination: return # We set the contents of the view to its title if pagination should # not keep the content of the original view on paginated views if not self.config.pagination_keep_content: view = self._resolve_original(page) if view in self._resolve_views(self.blog): # If the current view is paginated, use the rendered title # of the original view in case the author set the title in # the page's contents, or it would be overridden with the # one set in mkdocs.yml, leading to inconsistent headings assert isinstance(view, View) if view != page: name = view._title_from_render or view.title return f"# {name}" # Nothing more to be done for views return # Extract and assign authors to post, if enabled if self.config.authors: for name in page.config.authors: if name not in self.authors: raise PluginError(f"Couldn't find author '{name}'") # Append to list of authors page.authors.append(self.authors[name]) # Extract settings for excerpts separator = self.config.post_excerpt_separator max_authors = self.config.post_excerpt_max_authors max_categories = self.config.post_excerpt_max_categories # Ensure presence of separator and throw, if its absent and required - # we append the separator to the end of the contents of the post, if it # is not already present, so we can remove footnotes or other content # from the excerpt without affecting the content of the excerpt if separator not in page.markdown: if self.config.post_excerpt == "required": docs = os.path.relpath(config.docs_dir) path = os.path.relpath(page.file.abs_src_path, docs) raise PluginError( f"Couldn't find '{separator}' in post '{path}' in '{docs}'" ) # Create excerpt for post and inherit authors and categories - excerpts # can contain a subset of the authors and categories of the post page.excerpt = Excerpt(page, config, files) page.excerpt.authors = page.authors[:max_authors] page.excerpt.categories = page.categories[:max_categories] # Process posts def on_page_content(self, html, *, page, config, files): if not self.config.enabled: return # Skip if page is not a post managed by this instance - this plugin has # support for multiple instances, which is why this check is necessary if page not in self.blog.posts: return # Compute readtime of post, if enabled and not explicitly set if self.config.post_readtime: words_per_minute = self.config.post_readtime_words_per_minute if not page.config.readtime: page.config.readtime = readtime(html, words_per_minute) # Register template filters for plugin def on_env(self, env, *, config, files): if not self.config.enabled: return # Transform links to point to posts and pages for post in self.blog.posts: self._generate_links(post, config, files) # Filter for formatting dates related to posts def date_filter(date: datetime): return self._format_date_for_post(date, config) # Fetch URL template filter from environment - the filter might # be overridden by other plugins, so we must retrieve and wrap it url_filter = env.filters["url"] # Patch URL template filter to add support for paginated views, i.e., # that paginated views never link to themselves but to the main view @pass_context def url_filter_with_pagination(context: Context, url: str | None): page = context["page"] # If the current page is a view, check if the URL links to the page # itself, and replace it with the URL of the main view if isinstance(page, View): view = self._resolve_original(page) if page.url == url: url = view.url # Forward to original template filter return url_filter(context, url) # Register custom template filters env.filters["date"] = date_filter env.filters["url"] = url_filter_with_pagination # Prepare view for rendering (run latest) - views are rendered last, as we # need to mutate the navigation to account for pagination. The main problem # is that we need to replace the view in the navigation, because otherwise # the view would not be considered active. @event_priority(-100) def on_page_context(self, context, *, page, config, nav): if not self.config.enabled: return # Skip if page is not a view managed by this instance - this plugin has # support for multiple instances, which is why this check is necessary view = self._resolve_original(page) if view not in self._resolve_views(self.blog): return # Render excerpts and prepare pagination posts, pagination = self._render(page) # Render pagination links def pager(args: object): return pagination.pager( format = self.config.pagination_format, show_if_single_page = self.config.pagination_if_single_page, **args ) # Assign posts and pagination to context context["posts"] = posts context["pagination"] = pager if pagination else None # Remove temporary directory on shutdown def on_shutdown(self): rmtree(self.temp_dir) # ------------------------------------------------------------------------- # Check if the given post is excluded def _is_excluded(self, post: Post): if self.config.draft: return False # If a post was not explicitly marked or unmarked as draft, and the # date should be taken into account, we automatically mark it as draft # if the publishing date is in the future. This, of course, is opt-in # and must be explicitly enabled by the author. if not isinstance(post.config.draft, bool): if self.config.draft_if_future_date: return post.config.date.created > datetime.now(timezone.utc) # Post might be a draft return bool(post.config.draft) # ------------------------------------------------------------------------- # Resolve entrypoint - the entrypoint of the blog must have been created # if it did not exist before, and hosts all posts sorted by descending date def _resolve(self, files: Files, config: MkDocsConfig): path = os.path.join(self.config.blog_dir, "index.md") path = os.path.normpath(path) # Create entrypoint, if it does not exist - note that the entrypoint is # created in the docs directory, not in the temporary directory docs = os.path.relpath(config.docs_dir) name = os.path.join(docs, path) if not os.path.isfile(name): file = self._path_to_file(path, config, temp = False) files.append(file) # Create file in docs directory self._save_to_file(file.abs_src_path, "# Blog\n\n") # Create and return entrypoint file = files.get_file_from_path(path) return View(None, file, config) # Resolve post - the caller must make sure that the given file points to an # actual post (and not a page), or behavior might be unpredictable def _resolve_post(self, file: File, config: MkDocsConfig): post = Post(file, config) # Compute path and create a temporary file for path resolution path = self._format_path_for_post(post, config) temp = self._path_to_file(path, config, temp = False) # Replace destination file system path and URL file.dest_uri = temp.dest_uri file.abs_dest_path = temp.abs_dest_path file.url = temp.url # Replace canonical URL and return post post._set_canonical_url(config.site_url) return post # Resolve posts from directory - traverse all documentation pages and filter # and yield those that are located in the posts directory def _resolve_posts(self, files: Files, config: MkDocsConfig): path = self.config.post_dir.format(blog = self.config.blog_dir) path = os.path.normpath(path) # Create posts directory, if it does not exist docs = os.path.relpath(config.docs_dir) name = os.path.join(docs, path) if not os.path.isdir(name): os.makedirs(name, exist_ok = True) # Filter posts from pages for file in files.documentation_pages(): if not file.src_path.startswith(path): continue # Temporarily remove post from navigation file.inclusion = InclusionLevel.EXCLUDED # Resolve post - in order to determine whether a post should be # excluded, we must load it and analyze its metadata. All posts # marked as drafts are excluded, except for when the author has # configured drafts to be included in the navigation. post = self._resolve_post(file, config) if not self._is_excluded(post): yield post # Resolve authors - check if there's an authors file at the configured # location, and if one was found, load and validate it def _resolve_authors(self, config: MkDocsConfig): path = self.config.authors_file.format(blog = self.config.blog_dir) path = os.path.normpath(path) # Resolve path relative to docs directory docs = os.path.relpath(config.docs_dir) file = os.path.join(docs, path) # If the authors file does not exist, return here config: Authors = Authors() if not os.path.isfile(file): return config.authors # Open file and parse as YAML with open(file, encoding = "utf-8-sig") as f: config.config_file_path = os.path.abspath(file) try: config.load_dict(yaml.load(f, SafeLoader) or {}) # The authors file could not be loaded because of a syntax error, # which we display to the author with a nice error message except Exception as e: raise PluginError( f"Error reading authors file '{path}' in '{docs}':\n" f"{e}" ) # Validate authors and throw if errors occurred errors, warnings = config.validate() for _, w in warnings: log.warning(w) for _, e in errors: raise PluginError( f"Error reading authors file '{path}' in '{docs}':\n" f"{e}" ) # Return authors return config.authors # Resolve views of the given view in pre-order def _resolve_views(self, view: View): yield view # Resolve views recursively for page in view.views: for next in self._resolve_views(page): assert isinstance(next, View) yield next # Resolve siblings of a navigation item def _resolve_siblings(self, item: StructureItem, nav: Navigation): if isinstance(item.parent, Section): return item.parent.children else: return nav.items # Resolve original page or view (e.g. for paginated views) def _resolve_original(self, page: Page): if isinstance(page, View) and page.pages: return page.pages[0] else: return page # ------------------------------------------------------------------------- # Generate views for archive - analyze posts and generate the necessary # views, taking the date format provided by the author into account def _generate_archive(self, config: MkDocsConfig, files: Files): for post in self.blog.posts: date = post.config.date.created # Compute name and path of archive view name = self._format_date_for_archive(date, config) path = self._format_path_for_archive(post, config) # Create file for view, if it does not exist file = files.get_file_from_path(path) if not file: file = self._path_to_file(path, config) files.append(file) # Create file in temporary directory self._save_to_file(file.abs_src_path, f"# {name}") # Temporarily remove view from navigation file.inclusion = InclusionLevel.EXCLUDED # Create and yield view if not isinstance(file.page, Archive): yield Archive(name, file, config) # Assign post to archive assert isinstance(file.page, Archive) file.page.posts.append(post) # Generate views for categories - analyze posts and generate the necessary # views, taking the allowed categories as set by the author into account def _generate_categories(self, config: MkDocsConfig, files: Files): for post in self.blog.posts: for name in post.config.categories: path = self._format_path_for_category(name) # Ensure category is in non-empty allow list categories = self.config.categories_allowed or [name] if name not in categories: docs = os.path.relpath(config.docs_dir) path = os.path.relpath(post.file.abs_src_path, docs) raise PluginError( f"Error reading categories of post '{path}' in " f"'{docs}': category '{name}' not in allow list" ) # Create file for view, if it does not exist file = files.get_file_from_path(path) if not file: file = self._path_to_file(path, config) files.append(file) # Create file in temporary directory self._save_to_file(file.abs_src_path, f"# {name}") # Temporarily remove view from navigation file.inclusion = InclusionLevel.EXCLUDED # Create and yield view if not isinstance(file.page, Category): yield Category(name, file, config) # Assign post to category and vice versa assert isinstance(file.page, Category) file.page.posts.append(post) post.categories.append(file.page) # Generate pages for pagination - analyze view and generate the necessary # pages, creating a chain of views for simple rendering and replacement def _generate_pages(self, view: View, config: MkDocsConfig, files: Files): yield view # Compute pagination boundaries and create pages - pages are internally # handled as copies of a view, as they map to the same source location step = self.config.pagination_per_page for at in range(step, len(view.posts), step): path = self._format_path_for_pagination(view, 1 + at // step) # Create file for view, if it does not exist file = files.get_file_from_path(path) if not file: file = self._path_to_file(path, config) files.append(file) # Copy file to temporary directory copy_file(view.file.abs_src_path, file.abs_src_path) # Temporarily remove view from navigation file.inclusion = InclusionLevel.EXCLUDED # Create and yield view if not isinstance(file.page, View): yield view.__class__(None, file, config) # Assign pages and posts to view assert isinstance(file.page, View) file.page.pages = view.pages file.page.posts = view.posts # Generate links from the given post to other posts, pages, and sections - # this can only be done once all posts and pages have been parsed def _generate_links(self, post: Post, config: MkDocsConfig, files: Files): if not post.config.links: return # Resolve path relative to docs directory for error reporting docs = os.path.relpath(config.docs_dir) path = os.path.relpath(post.file.abs_src_path, docs) # Find all links to pages and replace them with references - while all # internal links are processed, external links remain as they are for link in _find_links(post.config.links.items): url = urlparse(link.url) if url.scheme: continue # Resolve file for link, and throw if the file could not be found - # authors can link to other pages, as well as to assets or files of # any kind, but it is essential that the file that is linked to is # found, so errors are actually catched and reported file = files.get_file_from_path(url.path) if not file: log.warning( f"Error reading metadata of post '{path}' in '{docs}':\n" f"Couldn't find file for link '{url.path}'" ) continue # If the file linked to is not a page, but an asset or any other # file, we resolve the destination URL and continue if not isinstance(file.page, Page): link.url = file.url continue # Cast link to reference link.__class__ = Reference assert isinstance(link, Reference) # Assign page title, URL and metadata to link link.title = link.title or file.page.title link.url = file.page.url link.meta = copy(file.page.meta) # If the link has no fragment, we can continue - if it does, we # need to find the matching anchor in the table of contents if not url.fragment: continue # If we're running under dirty reload, MkDocs will reset all pages, # so it's not possible to resolve anchor links. Thus, the only way # to make this work is to skip the entire process of anchor link # resolution in case of a dirty reload. if self.is_dirty: continue # Resolve anchor for fragment, and throw if the anchor could not be # found - authors can link to any anchor in the table of contents anchor = _find_anchor(file.page.toc, url.fragment) if not anchor: log.warning( f"Error reading metadata of post '{path}' in '{docs}':\n" f"Couldn't find anchor '{url.fragment}' in '{url.path}'" ) # Restore link to original state link.url = url.geturl() continue # Append anchor to URL and set subtitle link.url += f"#{anchor.id}" link.meta["subtitle"] = anchor.title # ------------------------------------------------------------------------- # Attach a list of pages to each other and to the given parent item without # explicitly adding them to the navigation, which can be done by the caller def _attach(self, parent: StructureItem, pages: list[Page]): for tail, page, head in zip(pages, pages[1:], pages[2:]): # Link page to parent and siblings page.parent = parent page.previous_page = tail page.next_page = head # If the page is a view, we know that we generated it and need to # link its siblings back to the view if isinstance(page, View): view = self._resolve_original(page) if tail: tail.next_page = view if head: head.previous_page = view # Attach a page to the given parent and link it to the previous and next # page of the given host - this is exclusively used for paginated views def _attach_at(self, parent: StructureItem, host: Page, page: Page): self._attach(parent, [host.previous_page, page, host.next_page]) # Attach a section as a sibling to the given view, make sure its pages are # part of the navigation, and ensure all pages are linked correctly def _attach_to(self, view: View, section: Section, nav: Navigation): section.parent = view.parent # Resolve siblings, which are the children of the parent section, or # the top-level list of navigation items if the view is at the root of # the project, and append the given section to it. It's currently not # possible to chose the position of a section. items = self._resolve_siblings(view, nav) items.append(section) # Find last sibling that is a page, skipping sections, as we need to # append the given section after all other pages tail = next(item for item in reversed(items) if isinstance(item, Page)) head = tail.next_page # Attach section to navigation and pages to each other nav.pages.extend(section.children) self._attach(section, [tail, *section.children, head]) # ------------------------------------------------------------------------- # Render excerpts and pagination for the given view def _render(self, view: View): posts, pagination = view.posts, None # Create pagination, if enabled if self.config.pagination: at = view.pages.index(view) # Compute pagination boundaries step = self.config.pagination_per_page p, q = at * step, at * step + step # Extract posts in pagination boundaries posts = view.posts[p:q] pagination = self._render_pagination(view, (p, q)) # Render excerpts for selected posts posts = [ self._render_post(post.excerpt, view) for post in posts if post.excerpt ] # Return posts and pagination return posts, pagination # Render excerpt in the context of the given view def _render_post(self, excerpt: Excerpt, view: View): excerpt.render(view, self.config.post_excerpt_separator) # Determine whether to add posts to the table of contents of the view - # note that those settings can be changed individually for each type of # view, which is why we need to check the type of view and the table of # contents setting for that type of view toc = self.config.blog_toc if isinstance(view, Archive): toc = self.config.archive_toc if isinstance(view, Category): toc = self.config.categories_toc # Attach top-level table of contents item to view if it should be added # and both, the view and excerpt contain table of contents items if toc and excerpt.toc.items and view.toc.items: view.toc.items[0].children.append(excerpt.toc.items[0]) # Return excerpt return excerpt # Create pagination for the given view and range def _render_pagination(self, view: View, range: tuple[int, int]): p, q = range # Create URL from the given page to another page def url_maker(n: int): return get_relative_url(view.pages[n - 1].url, view.url) # Return pagination return Pagination( view.posts, page = q // (q - p), items_per_page = q - p, url_maker = url_maker ) # ------------------------------------------------------------------------- # Format path for post def _format_path_for_post(self, post: Post, config: MkDocsConfig): categories = post.config.categories[:self.config.post_url_max_categories] categories = [self._slugify_category(name) for name in categories] # Replace placeholders in format string date = post.config.date.created path = self.config.post_url_format.format( categories = "/".join(categories), date = self._format_date_for_post_url(date, config), file = post.file.name, slug = post.config.slug or self._slugify_post(post) ) # Normalize path and strip slashes at the beginning and end path = posixpath.normpath(path.strip("/")) return posixpath.join(self.config.blog_dir, f"{path}.md") # Format path for archive def _format_path_for_archive(self, post: Post, config: MkDocsConfig): date = post.config.date.created path = self.config.archive_url_format.format( date = self._format_date_for_archive_url(date, config) ) # Normalize path and strip slashes at the beginning and end path = posixpath.normpath(path.strip("/")) return posixpath.join(self.config.blog_dir, f"{path}.md") # Format path for category def _format_path_for_category(self, name: str): path = self.config.categories_url_format.format( slug = self._slugify_category(name) ) # Normalize path and strip slashes at the beginning and end path = posixpath.normpath(path.strip("/")) return posixpath.join(self.config.blog_dir, f"{path}.md") # Format path for pagination def _format_path_for_pagination(self, view: View, page: int): path = self.config.pagination_url_format.format( page = page ) # Compute base path for pagination - if the given view is an index file, # we need to pop the file name from the base so it's not part of the URL # and we need to append `index` to the path, so the paginated view is # also an index page - see https://t.ly/71MKF base, _ = posixpath.splitext(view.file.src_uri) if view.is_index: base = posixpath.dirname(base) path = posixpath.join(path, "index") # Normalize path and strip slashes at the beginning and end path = posixpath.normpath(path.strip("/")) return posixpath.join(base, f"{path}.md") # ------------------------------------------------------------------------- # Format date - if the given format string refers to a predefined format, # we format the date without a time component in order to keep sane default # behavior, since authors will not expect time to be relevant for most posts # as by our assumptions - see https://t.ly/Yi7ZC def _format_date(self, date: datetime, format: str, config: MkDocsConfig): locale: str = config.theme["language"].replace("-", "_") if format in ["full", "long", "medium", "short"]: return format_date(date, format = format, locale = locale) else: return format_datetime(date, format = format, locale = locale) # Format date for post def _format_date_for_post(self, date: datetime, config: MkDocsConfig): format = self.config.post_date_format return self._format_date(date, format, config) # Format date for post URL def _format_date_for_post_url(self, date: datetime, config: MkDocsConfig): format = self.config.post_url_date_format return self._format_date(date, format, config) # Format date for archive def _format_date_for_archive(self, date: datetime, config: MkDocsConfig): format = self.config.archive_date_format return self._format_date(date, format, config) # Format date for archive URL def _format_date_for_archive_url(self, date: datetime, config: MkDocsConfig): format = self.config.archive_url_date_format return self._format_date(date, format, config) # ------------------------------------------------------------------------- # Slugify post title def _slugify_post(self, post: Post): separator = self.config.post_slugify_separator return self.config.post_slugify(post.title, separator) # Slugify category def _slugify_category(self, name: str): separator = self.config.categories_slugify_separator return self.config.categories_slugify(name, separator) # ------------------------------------------------------------------------- # Create a file for the given path, which must point to a valid source file, # either inside the temporary directory or the docs directory def _path_to_file(self, path: str, config: MkDocsConfig, *, temp = True): assert path.endswith(".md") file = File( path, config.docs_dir if not temp else self.temp_dir, config.site_dir, config.use_directory_urls ) # Hack: mark file as generated, so other plugins don't think it's part # of the file system. This is more or less a new quasi-standard that # still needs to be adopted by MkDocs, and was introduced by the # git-revision-date-localized-plugin - see https://bit.ly/3ZUmdBx if temp: file.generated_by = "material/blog" # Return file return file # Create a file with the given content on disk def _save_to_file(self, path: str, content: str): os.makedirs(os.path.dirname(path), exist_ok = True) with open(path, "w", encoding = "utf-8") as f: f.write(content) # ------------------------------------------------------------------------- # Translate the placeholder referenced by the given key def _translate(self, key: str, config: MkDocsConfig) -> str: env = config.theme.get_env() template = env.get_template( "partials/language.html", globals = { "config": config } ) # Translate placeholder return template.module.t(key) # ----------------------------------------------------------------------------- # Helper functions # ----------------------------------------------------------------------------- # Find all links in the given list of items def _find_links(items: list[StructureItem]): for item in items: # Resolve link if isinstance(item, Link): yield item # Resolve sections recursively if isinstance(item, Section): for item in _find_links(item.children): assert isinstance(item, Link) yield item # Find anchor in table of contents for the given id def _find_anchor(toc: TableOfContents, id: str): for anchor in toc: if anchor.id == id: return anchor # Resolve anchors recursively anchor = _find_anchor(anchor.children, id) if isinstance(anchor, AnchorLink): return anchor # ----------------------------------------------------------------------------- # Data # ----------------------------------------------------------------------------- # Set up logging log = logging.getLogger("mkdocs.material.blog") �����������������������������������������������������������mkdocs-material-9.6.4/material/plugins/blog/readtime/�����������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0022620�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/blog/readtime/__init__.py������������������������������������0000664�0000000�0000000�00000004170�14753064456�0024733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. import re from math import ceil from .parser import ReadtimeParser # ----------------------------------------------------------------------------- # Functions # ----------------------------------------------------------------------------- # Compute readtime - we first used the original readtime library, but the list # of dependencies it brings with it increased the size of the Docker image by # 20 MB (packed), which is an increase of 50%. For this reason, we adapt the # original readtime algorithm to our needs - see https://t.ly/fPZ7L def readtime(html: str, words_per_minute: int): parser = ReadtimeParser() parser.feed(html) parser.close() # Extract words from text and compute readtime in seconds words = len(re.split(r"\W+", "".join(parser.text))) seconds = ceil(words / words_per_minute * 60) # Account for additional images delta = 12 for _ in range(parser.images): seconds += delta if delta > 3: delta -= 1 # Return readtime in minutes return ceil(seconds / 60) ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/blog/readtime/parser.py��������������������������������������0000664�0000000�0000000�00000005310�14753064456�0024465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from html.parser import HTMLParser # TODO: Refactor the `void` set into a common module and import it from there # and not from the search plugin. from material.plugins.search.plugin import void # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Readtime parser class ReadtimeParser(HTMLParser): # Initialize parser def __init__(self): super().__init__(convert_charrefs = True) # Tags to skip self.skip = set([ "object", # Objects "script", # Scripts "style", # Styles "svg" # SVGs ]) # Current context self.context = [] # Keep track of text and images self.text = [] self.images = 0 # Called at the start of every HTML tag def handle_starttag(self, tag, attrs): # Collect images if tag == "img": self.images += 1 # Ignore self-closing tags if tag not in void: # Add tag to context self.context.append(tag) # Called for the text contents of each tag def handle_data(self, data): # Collect text if not inside skip context if not self.skip.intersection(self.context): self.text.append(data) # Called at the end of every HTML tag def handle_endtag(self, tag): if self.context and self.context[-1] == tag: # Remove tag from context self.context.pop() ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/blog/structure/����������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0023066�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/blog/structure/__init__.py�����������������������������������0000664�0000000�0000000�00000032564�14753064456�0025211�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations import logging import os import yaml from copy import copy from markdown import Markdown from material.plugins.blog.author import Author from material.plugins.meta.plugin import MetaPlugin from mkdocs.config.defaults import MkDocsConfig from mkdocs.exceptions import PluginError from mkdocs.structure.files import File, Files from mkdocs.structure.nav import Link, Section from mkdocs.structure.pages import Page, _RelativePathTreeprocessor from mkdocs.structure.toc import get_toc from mkdocs.utils.meta import YAML_RE from re import Match from yaml import SafeLoader from .config import PostConfig from .markdown import ExcerptTreeprocessor # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Post class Post(Page): # Initialize post - posts are never listed in the navigation, which is why # they will never include a title that was manually set, so we can omit it def __init__(self, file: File, config: MkDocsConfig): super().__init__(None, file, config) # Resolve path relative to docs directory docs = os.path.relpath(config.docs_dir) path = os.path.relpath(file.abs_src_path, docs) # Read contents and metadata immediately with open(file.abs_src_path, encoding = "utf-8-sig") as f: self.markdown = f.read() # Sadly, MkDocs swallows any exceptions that occur during parsing. # Since we want to provide the best possible user experience, we # need to catch errors early and display them nicely. We decided to # drop support for MkDocs' MultiMarkdown syntax, because it is not # correctly implemented anyway. When using MultiMarkdown syntax, all # date formats are returned as strings and list are not properly # supported. Thus, we just use the relevants parts of `get_data`. match: Match = YAML_RE.match(self.markdown) if not match: raise PluginError( f"Error reading metadata of post '{path}' in '{docs}':\n" f"Expected metadata to be defined but found nothing" ) # Extract metadata and parse as YAML try: self.meta = yaml.load(match.group(1), SafeLoader) or {} self.markdown = self.markdown[match.end():].lstrip("\n") # The post's metadata could not be parsed because of a syntax error, # which we display to the author with a nice error message except Exception as e: raise PluginError( f"Error reading metadata of post '{path}' in '{docs}':\n" f"{e}" ) # Hack: if the meta plugin is registered, we need to move the call # to `on_page_markdown` here, because we need to merge the metadata # of the post with the metadata of any meta files prior to creating # the post configuration. To our current knowledge, it's the only # way to allow posts to receive metadata from meta files, because # posts must be loaded prior to constructing the navigation in # `on_files` but the meta plugin first runs in `on_page_markdown`. plugin: MetaPlugin = config.plugins.get("material/meta") if plugin: plugin.on_page_markdown( self.markdown, page = self, config = config, files = None ) # Initialize post configuration, but remove all keys that this plugin # doesn't care about, or they will be reported as invalid configuration self.config: PostConfig = PostConfig(file.abs_src_path) self.config.load_dict({ key: self.meta[key] for key in ( set(self.meta.keys()) & set(self.config.keys()) ) }) # Validate configuration and throw if errors occurred errors, warnings = self.config.validate() for _, w in warnings: log.warning(w) for k, e in errors: raise PluginError( f"Error reading metadata '{k}' of post '{path}' in '{docs}':\n" f"{e}" ) # Excerpts are subsets of posts that are used in pages like archive and # category views. They are not rendered as standalone pages, but are # rendered in the context of a view. Each post has a dedicated excerpt # instance which is reused when rendering views. self.excerpt: Excerpt = None # Initialize authors and actegories self.authors: list[Author] = [] self.categories: list[Category] = [] # Ensure template is set or use default self.meta.setdefault("template", "blog-post.html") # Ensure template hides navigation self.meta["hide"] = self.meta.get("hide", []) if "navigation" not in self.meta["hide"]: self.meta["hide"].append("navigation") # The contents and metadata were already read in the constructor (and not # in `read_source` as for pages), so this function must be set to a no-op def read_source(self, config: MkDocsConfig): pass # ----------------------------------------------------------------------------- # Excerpt class Excerpt(Page): # Initialize an excerpt for the given post - we create the Markdown parser # when intitializing the excerpt in order to improve rendering performance # for excerpts, as they are reused across several different views, because # posts might be referenced from multiple different locations def __init__(self, post: Post, config: MkDocsConfig, files: Files): self.file = copy(post.file) self.post = post # Set canonical URL, or we can't print excerpts when debugging the # blog plugin, as the `abs_url` property would be missing self._set_canonical_url(config.site_url) # Initialize configuration and metadata self.config = post.config self.meta = post.meta # Initialize authors and categories - note that views usually contain # subsets of those lists, which is why we need to manage them here self.authors: list[Author] = [] self.categories: list[Category] = [] # Initialize content after separator - allow template authors to render # posts inline or to provide a link to the post's page self.more = None # Initialize parser - note that we need to patch the configuration, # more specifically the table of contents extension config = _patch(config) self.md = Markdown( extensions = config.markdown_extensions, extension_configs = config.mdx_configs, ) # Register excerpt tree processor - this processor resolves anchors to # posts from within views, so they point to the correct location self.md.treeprocessors.register( ExcerptTreeprocessor(post), "excerpt", 0 ) # Register relative path tree processor - this processor resolves links # to other pages and assets, and is used by MkDocs itself self.md.treeprocessors.register( _RelativePathTreeprocessor(self.file, files, config), "relpath", 1 ) # Render an excerpt of the post on the given page - note that this is not # thread-safe because excerpts are shared across views, as it cuts down on # the cost of initialization. However, if in the future, we decide to render # posts and views concurrently, we must change this behavior. def render(self, page: Page, separator: str): self.file.url = page.url # Retrieve excerpt tree processor and set page as base at = self.md.treeprocessors.get_index_for_name("excerpt") processor: ExcerptTreeprocessor = self.md.treeprocessors[at] processor.base = page # Ensure that the excerpt includes a title in its content, since the # title is linked to the post when rendering - see https://t.ly/5Gg2F self.markdown = self.post.markdown if not self.post._title_from_render: self.markdown = "\n\n".join([f"# {self.post.title}", self.markdown]) # Convert Markdown to HTML and extract excerpt self.content = self.md.convert(self.markdown) self.content, *more = self.content.split(separator, 1) if more: self.more = more[0] # Extract table of contents and reset post URL - if we wouldn't reset # the excerpt URL, linking to the excerpt from the view would not work self.toc = get_toc(getattr(self.md, "toc_tokens", [])) self.file.url = self.post.url # ----------------------------------------------------------------------------- # View class View(Page): # Parent view parent: View | Section # Initialize view def __init__(self, name: str | None, file: File, config: MkDocsConfig): super().__init__(None, file, config) # Initialize name of the view - note that views never pass a title to # the parent constructor, so the author can always override the title # that is used for rendering. However, for some purposes, like for # example sorting, we need something to compare. self.name = name # Initialize posts and views self.posts: list[Post] = [] self.views: list[View] = [] # Initialize pages for pagination self.pages: list[View] = [] # Set necessary metadata def read_source(self, config: MkDocsConfig): super().read_source(config) # Ensure template is set or use default self.meta.setdefault("template", "blog.html") # ----------------------------------------------------------------------------- # Archive view class Archive(View): pass # ----------------------------------------------------------------------------- # Category view class Category(View): pass # ----------------------------------------------------------------------------- # Reference class Reference(Link): # Initialize reference - this is essentially a crossover of pages and links, # as it inherits the metadata of the page and allows for anchors def __init__(self, title: str, url: str): super().__init__(title, url) self.meta = {} # ----------------------------------------------------------------------------- # Helper functions # ----------------------------------------------------------------------------- # Patch configuration def _patch(config: MkDocsConfig): config = copy(config) # Copy parts of configuration that needs to be patched config.validation = copy(config.validation) config.validation.links = copy(config.validation.links) config.markdown_extensions = copy(config.markdown_extensions) config.mdx_configs = copy(config.mdx_configs) # Make sure that the author did not add another instance of the table of # contents extension to the configuration, as this leads to weird behavior if "markdown.extensions.toc" in config.markdown_extensions: config.markdown_extensions.remove("markdown.extensions.toc") # In order to render excerpts for posts, we need to make sure that the # table of contents extension is appropriately configured config.mdx_configs["toc"] = { **config.mdx_configs.get("toc", {}), **{ "anchorlink": True, # Render headline as clickable "baselevel": 2, # Render h1 as h2 and so forth "permalink": False, # Remove permalinks "toc_depth": 2 # Remove everything below h2 } } # Additionally, we disable link validation when rendering excerpts, because # invalid links have already been reported when rendering the page links = config.validation.links links.not_found = logging.DEBUG links.absolute_links = logging.DEBUG links.unrecognized_links = logging.DEBUG # Return patched configuration return config # ----------------------------------------------------------------------------- # Data # ----------------------------------------------------------------------------- # Set up logging log = logging.getLogger("mkdocs.material.blog") ��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/blog/structure/config.py�������������������������������������0000664�0000000�0000000�00000003354�14753064456�0024712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from mkdocs.config.base import Config from mkdocs.config.config_options import Optional, Type from .options import PostDate, PostLinks, UniqueListOfItems # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Post configuration class PostConfig(Config): authors = UniqueListOfItems(Type(str), default = []) categories = UniqueListOfItems(Type(str), default = []) date = PostDate() draft = Optional(Type(bool)) links = Optional(PostLinks()) readtime = Optional(Type(int)) slug = Optional(Type(str)) ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/blog/structure/markdown.py�����������������������������������0000664�0000000�0000000�00000004740�14753064456�0025267�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations from markdown.treeprocessors import Treeprocessor from mkdocs.structure.pages import Page from mkdocs.utils import get_relative_url from xml.etree.ElementTree import Element # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Excerpt tree processor class ExcerptTreeprocessor(Treeprocessor): # Initialize excerpt tree processor def __init__(self, page: Page, base: Page | None = None): self.page = page self.base = base # Transform HTML after Markdown processing def run(self, root: Element): assert self.base main = True # We're only interested in anchors, which is why we continue when the # link does not start with an anchor tag for el in root.iter("a"): anchor = el.get("href") if not anchor.startswith("#"): continue # The main headline should link to the post page, not to a specific # anchor, which is why we remove the anchor in that case path = get_relative_url(self.page.url, self.base.url) if main: el.set("href", path) else: el.set("href", path + anchor) # Main headline has been seen main = False ��������������������������������mkdocs-material-9.6.4/material/plugins/blog/structure/options.py������������������������������������0000664�0000000�0000000�00000011731�14753064456�0025136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from datetime import date, datetime, time, timezone from mkdocs.config.base import BaseConfigOption, Config, ValidationError from mkdocs.config.config_options import ListOfItems, T from mkdocs.structure.files import Files from mkdocs.structure.nav import ( Navigation, _add_parent_links, _data_to_navigation ) from typing import Dict # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Date dictionary class DateDict(Dict[str, datetime]): # Initialize date dictionary def __init__(self, data: dict): super().__init__(data) # Ensure presence of `date.created` self.created: datetime = data["created"] # Allow attribute access def __getattr__(self, name: str): if name in self: return self[name] # ----------------------------------------------------------------------------- # Post date option class PostDate(BaseConfigOption[DateDict]): # Initialize post dates def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) # Normalize the supported types for post dates to datetime def pre_validation(self, config: Config, key_name: str): # If the date points to a scalar value, convert it to a dictionary, as # we want to allow the author to specify custom and arbitrary dates for # posts. Currently, only the `created` date is mandatory, because it's # needed to sort posts for views. if not isinstance(config[key_name], dict): config[key_name] = { "created": config[key_name] } # Convert all date values to datetime for key, value in config[key_name].items(): # Handle datetime - since datetime is a subclass of date, we need # to check it first, or we lose the time - see https://t.ly/-KG9N if isinstance(value, datetime): # Set timezone to UTC if not set if value.tzinfo is None: config[key_name][key] = value.replace(tzinfo=timezone.utc) continue; # Handle date - we set 00:00:00 as the default time, if the author # only supplied a date, and convert it to datetime in UTC if isinstance(value, date): config[key_name][key] = datetime.combine(value, time()).replace(tzinfo=timezone.utc) # Initialize date dictionary config[key_name] = DateDict(config[key_name]) # Ensure each date value is of type datetime def run_validation(self, value: DateDict): for key in value: if not isinstance(value[key], datetime): raise ValidationError( f"Expected type: {date} or {datetime} " f"but received: {type(value[key])}" ) # Ensure presence of `date.created` if not value.created: raise ValidationError( "Expected 'created' date when using dictionary syntax" ) # Return date dictionary return value # ----------------------------------------------------------------------------- # Post links option class PostLinks(BaseConfigOption[Navigation]): # Create navigation from structured items - we don't need to provide a # configuration object to the function, because it will not be used def run_validation(self, value: object): items = _data_to_navigation(value, Files([]), None) _add_parent_links(items) # Return navigation return Navigation(items, []) # ----------------------------------------------------------------------------- # Unique list of items class UniqueListOfItems(ListOfItems[T]): # Ensure that each item is unique def run_validation(self, value: object): data = super().run_validation(value) return list(dict.fromkeys(data)) ���������������������������������������mkdocs-material-9.6.4/material/plugins/group/�������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0021237�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/group/__init__.py��������������������������������������������0000664�0000000�0000000�00000002145�14753064456�0023352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/group/config.py����������������������������������������������0000664�0000000�0000000�00000002751�14753064456�0023063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from mkdocs.config.config_options import Type from mkdocs.config.base import Config # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Group plugin configuration class GroupConfig(Config): enabled = Type(bool, default = False) plugins = Type((list, dict)) �����������������������mkdocs-material-9.6.4/material/plugins/group/plugin.py����������������������������������������������0000664�0000000�0000000�00000015705�14753064456�0023117�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations import logging from collections.abc import Callable from mkdocs.config.config_options import Plugins from mkdocs.config.defaults import MkDocsConfig from mkdocs.exceptions import PluginError from mkdocs.plugins import BasePlugin, event_priority from .config import GroupConfig # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Group plugin class GroupPlugin(BasePlugin[GroupConfig]): supports_multiple_instances = True # Initialize plugin def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) # Initialize object attributes self.is_serve = False self.is_dirty = False # Determine whether we're serving the site def on_startup(self, *, command, dirty): self.is_serve = command == "serve" self.is_dirty = dirty # If the group is enabled, conditionally load plugins - at first, this might # sound easier than it actually is, as we need to jump through some hoops to # ensure correct ordering among plugins. We're effectively initializing the # plugins that are part of the group after all MkDocs finished initializing # all other plugins, so we need to patch the order of the methods. Moreover, # we must use MkDocs existing plugin collection, or we might have collisions # with other plugins that are not part of the group. As so often, this is a # little hacky, but has huge potential making plugin configuration easier. # There's one little caveat: the `__init__` and `on_startup` methods of the # plugins that are part of the group are called after all other plugins, so # the `event_priority` decorator for `on_startup` methods is effectively # useless. However, the `on_startup` method is only intended to set up the # plugin and doesn't receive anything else than the invoked command and # whether we're running a dirty build, so there should be no problems. @event_priority(150) def on_config(self, config): if not self.config.enabled: return # Retrieve plugin collection from configuration option: Plugins = dict(config._schema)["plugins"] assert isinstance(option, Plugins) # Load all plugins in group self.plugins: dict[str, BasePlugin] = {} try: for name, plugin in self._load(option): self.plugins[name] = plugin # The plugin could not be loaded, likely because it's not installed or # misconfigured, so we raise a plugin error for a nicer error message except Exception as e: raise PluginError(str(e)) # Patch order of plugin methods for events in option.plugins.events.values(): self._patch(events, config) # Invoke `on_startup` event for plugins in group command = "serve" if self.is_serve else "build" for method in option.plugins.events["startup"]: plugin = self._get_plugin(method) # Ensure that we have a method bound to a plugin (and not a hook) if plugin and plugin in self.plugins.values(): method(command = command, dirty = self.is_dirty) # ------------------------------------------------------------------------- # Retrieve plugin instance for bound method or nothing def _get_plugin(self, method: Callable): return getattr(method, "__self__", None) # Retrieve priority of plugin method def _get_priority(self, method: Callable): return getattr(method, "mkdocs_priority", 0) # Retrieve position of plugin def _get_position(self, plugin: BasePlugin, config: MkDocsConfig) -> int: for at, (_, candidate) in enumerate(config.plugins.items()): if plugin == candidate: return at # ------------------------------------------------------------------------- # Load plugins that are part of the group def _load(self, option: Plugins): for name, data in option._parse_configs(self.config.plugins): yield option.load_plugin_with_namespace(name, data) # ------------------------------------------------------------------------- # Patch order of plugin methods - all other plugin methods are already in # the right order, so we only need to check those that are part of the group # and bubble them up into the right location. Some plugin methods may define # priorities, so we need to make sure to order correctly within those. def _patch(self, methods: list[Callable], config: MkDocsConfig): position = self._get_position(self, config) for at in reversed(range(1, len(methods))): tail = methods[at - 1] head = methods[at] # Skip if the plugin is not part of the group plugin = self._get_plugin(head) if not plugin or plugin not in self.plugins.values(): continue # Skip if the previous method has a higher priority than the current # one, because we know we can't swap them anyway if self._get_priority(tail) > self._get_priority(head): continue # Ensure that we have a method bound to a plugin (and not a hook) plugin = self._get_plugin(tail) if not plugin: continue # Both methods have the same priority, so we check if the ordering # of both methods is violated, and if it is, swap them if (position < self._get_position(plugin, config)): methods[at], methods[at - 1] = tail, head # ----------------------------------------------------------------------------- # Data # ----------------------------------------------------------------------------- # Set up logging log = logging.getLogger("mkdocs.material.group") �����������������������������������������������������������mkdocs-material-9.6.4/material/plugins/info/��������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0021036�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/info/__init__.py���������������������������������������������0000664�0000000�0000000�00000002145�14753064456�0023151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/info/config.py�����������������������������������������������0000664�0000000�0000000�00000003170�14753064456�0022656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from mkdocs.config.config_options import Type from mkdocs.config.base import Config # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Info plugin configuration class InfoConfig(Config): enabled = Type(bool, default = True) enabled_on_serve = Type(bool, default = False) # Settings for archive archive = Type(bool, default = True) archive_stop_on_violation = Type(bool, default = True) ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/info/patterns.py���������������������������������������������0000664�0000000�0000000�00000002061�14753064456�0023247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������def get_exclusion_patterns(): """ Regex patterns, which will be compared against directory and file names case-sensitively. https://docs.python.org/3/library/re.html#re.search is the matching function and scans the whole string to find any pattern match. Used with the https://pypi.org/project/regex/ module. Additional remarks for pattern creation: - The compared paths will be always in POSIX format. - Each directory path will have a / at the end to allow to distinguish them from files. - Patterns for dynamic or custom paths like Virtual Environments (venv) or build site directories are created during plugin runtime. """ return [ r"/__pycache__/", # Python cache directory r"/\.DS_Store$", # macOS r"/[^/]+\.zip$", # Generated files and folders r"/[^/]*\.cache($|/)", # .cache files and folders r"/\.vscode/", # Common autogenerated IDE directories r"/\.vs/", r"/\.idea/", ] �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/info/plugin.py�����������������������������������������������0000664�0000000�0000000�00000053336�14753064456�0022720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. import glob import json import logging import os import platform import regex import requests import site import sys import yaml from colorama import Fore, Style from importlib.metadata import distributions, version from io import BytesIO from markdown.extensions.toc import slugify from mkdocs.config.defaults import MkDocsConfig from mkdocs.plugins import BasePlugin, event_priority from mkdocs.utils import get_yaml_loader from zipfile import ZipFile, ZIP_DEFLATED from .config import InfoConfig from .patterns import get_exclusion_patterns # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Info plugin class InfoPlugin(BasePlugin[InfoConfig]): # Initialize plugin def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) # Initialize incremental builds self.is_serve = False # Initialize empty members self.exclusion_patterns = [] self.excluded_entries = [] # Determine whether we're serving the site def on_startup(self, *, command, dirty): self.is_serve = command == "serve" # Create a self-contained example (run earliest) - determine all files that # are visible to MkDocs and are used to build the site, create an archive # that contains all of them, and print a summary of the archive contents. # The author must attach this archive to the bug report. @event_priority(100) def on_config(self, config): if not self.config.enabled: return # By default, the plugin is disabled when the documentation is served, # but not when it is built. This should nicely align with the expected # user experience when creating reproductions. if not self.config.enabled_on_serve and self.is_serve: return # Resolve latest version url = "https://github.com/squidfunk/mkdocs-material/releases/latest" res = requests.get(url, allow_redirects = False) # Check if we're running the latest version _, current = res.headers.get("location").rsplit("/", 1) present = version("mkdocs-material") if not present.startswith(current): log.error("Please upgrade to the latest version.") self._help_on_versions_and_exit(present, current) # Exit if archive creation is disabled if not self.config.archive: sys.exit(1) # Print message that we're creating a bug report log.info("Started archive creation for bug report") # Check that there are no overrides in place - we need to use a little # hack to detect whether the custom_dir setting was used without parsing # mkdocs.yml again - we check at which position the directory provided # by the theme resides, and if it's not the first one, abort. if config.theme.custom_dir: log.error("Please remove 'custom_dir' setting.") self._help_on_customizations_and_exit() # Check that there are no hooks in place - hooks can alter the behavior # of MkDocs in unpredictable ways, which is why they must be considered # being customizations. Thus, we can't offer support for debugging and # must abort here. if config.hooks: log.error("Please remove 'hooks' setting.") self._help_on_customizations_and_exit() # Assure all paths that will be validated are absolute. Convert possible # relative config_file_path to absolute. Its absolute directory path is # being later used to resolve other paths. config.config_file_path = _convert_to_abs(config.config_file_path) config_file_parent = os.path.dirname(config.config_file_path) # Convert relative custom_dir path to absolute. The Theme.custom_dir # property cannot be set, therefore a helper variable is used. if config.theme.custom_dir: abs_custom_dir = _convert_to_abs( config.theme.custom_dir, abs_prefix = config_file_parent ) else: abs_custom_dir = "" # Extract the absolute path to projects plugin's directory to explicitly # support path validation and dynamic exclusion for the plugin projects_plugin = config.plugins.get("material/projects") if projects_plugin: abs_projects_dir = _convert_to_abs( projects_plugin.config.projects_dir, abs_prefix = config_file_parent ) else: abs_projects_dir = "" # MkDocs removes the INHERIT configuration key during load, and doesn't # expose the information in any way, as the parent configuration is # merged into one. To validate that the INHERIT config file will be # included in the ZIP file the current config file must be loaded again # without parsing. Each file can have their own INHERIT key, so a list # of configurations is supported. The INHERIT path is converted during # load to absolute. loaded_configs = _load_yaml(config.config_file_path) if not isinstance(loaded_configs, list): loaded_configs = [loaded_configs] # We need to make sure the user put every file in the current working # directory. To assure the reproduction inside the ZIP file can be run, # validate that the MkDocs paths are children of the current root. paths_to_validate = [ config.config_file_path, config.docs_dir, abs_custom_dir, abs_projects_dir, *[cfg.get("INHERIT", "") for cfg in loaded_configs] ] # Convert relative hook paths to absolute path for hook in config.hooks: path = _convert_to_abs(hook, abs_prefix = config_file_parent) paths_to_validate.append(path) # Remove valid paths from the list for path in list(paths_to_validate): if not path or path.startswith(os.getcwd()): paths_to_validate.remove(path) # Report the invalid paths to the user if paths_to_validate: log.error(f"One or more paths aren't children of root") self._help_on_not_in_cwd(paths_to_validate) # Create in-memory archive and prompt author for a short descriptive # name for the archive, which is also used as the directory name. Note # that the name is slugified for better readability and stripped of any # file extension that the author might have entered. archive = BytesIO() example = input("\nPlease name your bug report (2-4 words): ") example, _ = os.path.splitext(example) example = "-".join([present, slugify(example, "-")]) # Get local copy of the exclusion patterns self.exclusion_patterns = get_exclusion_patterns() self.excluded_entries = [] # Exclude the site_dir at project root if config.site_dir.startswith(os.getcwd()): self.exclusion_patterns.append(_resolve_pattern(config.site_dir)) # Exclude the Virtual Environment directory. site.getsitepackages() has # inconsistent results across operating systems, and relies on the # PREFIXES that will contain the absolute path to the activated venv. for path in site.PREFIXES: if path.startswith(os.getcwd()): self.exclusion_patterns.append(_resolve_pattern(path)) # Exclude site_dir for projects if projects_plugin: for path in glob.iglob( pathname = projects_plugin.config.projects_config_files, root_dir = abs_projects_dir, recursive = True ): current_config_file = os.path.join(abs_projects_dir, path) project_config = _get_project_config(current_config_file) pattern = _resolve_pattern(project_config.site_dir) self.exclusion_patterns.append(pattern) # Track dotpath inclusion to inform about it later contains_dotpath: bool = False # Create self-contained example from project files: list[str] = [] with ZipFile(archive, "a", ZIP_DEFLATED, False) as f: for abs_root, dirnames, filenames in os.walk(os.getcwd()): # Set and print progress indicator indicator = f"Processing: {abs_root}" print(indicator, end="\r", flush=True) # Prune the folders in-place to prevent their processing for name in list(dirnames): # Resolve the absolute directory path path = os.path.join(abs_root, name) # Exclude the directory and all subdirectories if self._is_excluded(path): dirnames.remove(name) continue # Warn about .dotdirectories if _is_dotpath(path, log_warning = True): contains_dotpath = True # Write files to the in-memory archive for name in filenames: # Resolve the absolute file path path = os.path.join(abs_root, name) # Exclude the file if self._is_excluded(path): continue # Warn about .dotfiles if _is_dotpath(path, log_warning = True): contains_dotpath = True # Resolve the relative path to create a matching structure path = os.path.relpath(path, os.path.curdir) f.write(path, os.path.join(example, path)) # Clear the line for the next indicator print(" " * len(indicator), end="\r", flush=True) # Add information on installed packages f.writestr( os.path.join(example, "requirements.lock.txt"), "\n".join(sorted([ "==".join([package.name, package.version]) for package in distributions() ])) ) # Add information on platform f.writestr( os.path.join(example, "platform.json"), json.dumps( { "system": platform.platform(), "architecture": platform.architecture(), "python": platform.python_version(), "cwd": os.getcwd(), "command": " ".join([ sys.argv[0].rsplit(os.sep, 1)[-1], *sys.argv[1:] ]), "env:$PYTHONPATH": os.getenv("PYTHONPATH", ""), "sys.path": sys.path, "excluded_entries": self.excluded_entries }, default = str, indent = 2 ) ) # Retrieve list of processed files for a in f.filelist: # Highlight .dotpaths in a more explicit manner color = (Fore.LIGHTYELLOW_EX if "/." in a.filename else Fore.LIGHTBLACK_EX) files.append("".join([ color, a.filename, " ", _size(a.compress_size) ])) # Finally, write archive to disk buffer = archive.getbuffer() with open(f"{example}.zip", "wb") as f: f.write(archive.getvalue()) # Print summary log.info("Archive successfully created:") print(Style.NORMAL) # Print archive file names files.sort() for file in files: print(f" {file}") # Print archive name print(Style.RESET_ALL) print("".join([ " ", f.name, " ", _size(buffer.nbytes, 10) ])) # Print warning when file size is excessively large print(Style.RESET_ALL) if buffer.nbytes > 1000000: log.warning("Archive exceeds recommended maximum size of 1 MB") # Print warning when file contains hidden .dotpaths if contains_dotpath: log.warning( "Archive contains dotpaths, which could contain sensitive " "information.\nPlease review them at the bottom of the list " "and share only necessary data to reproduce the issue." ) # Aaaaaand done sys.exit(1) # ------------------------------------------------------------------------- # Print help on versions and exit def _help_on_versions_and_exit(self, have, need): print(Fore.RED) print(" When reporting issues, please first upgrade to the latest") print(" version of Material for MkDocs, as the problem might already") print(" be fixed in the latest version. This helps reduce duplicate") print(" efforts and saves us maintainers time.") print(Style.NORMAL) print(f" Please update from {have} to {need}.") print(Style.RESET_ALL) print(f" pip install --upgrade --force-reinstall mkdocs-material") print(Style.NORMAL) # Exit, unless explicitly told not to if self.config.archive_stop_on_violation: sys.exit(1) # Print help on customizations and exit def _help_on_customizations_and_exit(self): print(Fore.RED) print(" When reporting issues, you must remove all customizations") print(" and check if the problem persists. If not, the problem is") print(" caused by your overrides. Please understand that we can't") print(" help you debug your customizations. Please remove:") print(Style.NORMAL) print(" - theme.custom_dir") print(" - hooks") print(Fore.YELLOW) print(" Additionally, please remove all third-party JavaScript or") print(" CSS not explicitly mentioned in our documentation:") print(Style.NORMAL) print(" - extra_css") print(" - extra_javascript") print(Fore.YELLOW) print(" If you're using customizations from the theme's documentation") print(" and you want to report a bug specific to those customizations") print(" then set the 'archive_stop_on_violation: false' option in the") print(" info plugin config.") print(Style.RESET_ALL) # Exit, unless explicitly told not to if self.config.archive_stop_on_violation: sys.exit(1) # Print help on not in current working directory and exit def _help_on_not_in_cwd(self, outside_root): print(Fore.RED) print(" The current working (root) directory:\n") print(f" {os.getcwd()}\n") print(" is not a parent of the following paths:") print(Style.NORMAL) for path in outside_root: print(f" {path}") print("\n To assure that all project files are found please adjust") print(" your config or file structure and put everything within the") print(" root directory of the project.") print("\n Please also make sure `mkdocs build` is run in the actual") print(" root directory of the project.") print(Style.RESET_ALL) # Exit, unless explicitly told not to if self.config.archive_stop_on_violation: sys.exit(1) # Check if path is excluded and should be omitted from the zip. Use pattern # matching for files and folders, and lookahead specific files in folders to # skip them. Side effect: Save excluded paths to save them in the zip file. def _is_excluded(self, abspath: str) -> bool: # Resolve the path into POSIX format to match the patterns pattern_path = _resolve_pattern(abspath, return_path = True) for pattern in self.exclusion_patterns: if regex.search(pattern, pattern_path): log.debug(f"Excluded pattern '{pattern}': {abspath}") self.excluded_entries.append(f"{pattern} - {pattern_path}") return True # File exclusion should be limited to pattern matching if os.path.isfile(abspath): return False # Projects, which don't use the projects plugin for multi-language # support could have separate build folders for each config file or # language. Therefore, we exclude them with the assumption a site_dir # contains the sitemap file. Example of such a setup: https://t.ly/DLQcy sitemap_gz = os.path.join(abspath, "sitemap.xml.gz") if os.path.exists(sitemap_gz): log.debug(f"Excluded site_dir: {abspath}") self.excluded_entries.append(f"sitemap.xml.gz - {pattern_path}") return True return False # ----------------------------------------------------------------------------- # Helper functions # ----------------------------------------------------------------------------- # Print human-readable size def _size(value, factor = 1): color = Fore.GREEN if value > 100000 * factor: color = Fore.RED elif value > 25000 * factor: color = Fore.YELLOW for unit in ["B", "kB", "MB", "GB", "TB", "PB", "EB", "ZB"]: if abs(value) < 1000.0: return f"{color}{value:3.1f} {unit}" value /= 1000.0 # Get the absolute path with set prefix. To validate if a file is inside the # current working directory it needs to be absolute, so that it is possible to # check the prefix. def _convert_to_abs(path: str, abs_prefix: str = None) -> str: if os.path.isabs(path): return path if abs_prefix is None: abs_prefix = os.getcwd() return os.path.normpath(os.path.join(abs_prefix, path)) # Get the loaded config, or a list with all loaded configs. MkDocs removes the # INHERIT configuration key during load, and doesn't expose the information in # any way, as the parent configuration is merged into one. The INHERIT path is # needed for validation. This custom YAML loader replicates MkDocs' loading # logic. Side effect: It converts the INHERIT path to absolute. def _load_yaml(abs_src_path: str): with open(abs_src_path, encoding ="utf-8-sig") as file: source = file.read() try: result = yaml.load(source, Loader = get_yaml_loader()) or {} except yaml.YAMLError: result = {} if "INHERIT" in result: relpath = result.get('INHERIT') parent_path = os.path.dirname(abs_src_path) abspath = _convert_to_abs(relpath, abs_prefix = parent_path) if os.path.exists(abspath): result["INHERIT"] = abspath log.debug(f"Loading inherited configuration file: {abspath}") parent = _load_yaml(abspath) if isinstance(parent, list): result = [result, *parent] elif isinstance(parent, dict): result = [result, parent] return result # Get a normalized POSIX path for the pattern matching with removed current # working directory prefix. Directory paths end with a '/' to allow more control # in the pattern creation for files and directories. The patterns are matched # using the search function, so they are prefixed with ^ for specificity. def _resolve_pattern(abspath: str, return_path: bool = False): path = abspath.replace(os.getcwd(), "", 1) path = path.replace(os.sep, "/").rstrip("/") if not path: return "/" # Check abspath, as the file needs to exist if not os.path.isfile(abspath): path = path + "/" return path if return_path else f"^{path}" # Get project configuration with resolved absolute paths for validation def _get_project_config(project_config_file: str): with open(project_config_file, encoding="utf-8-sig") as file: config = MkDocsConfig(config_file_path = project_config_file) config.load_file(file) # MkDocs transforms site_dir to absolute path during validation config.validate() return config # Check if the path is a .dotpath. A warning can also be issued when the param # is set. The function also returns a boolean to track results outside it. def _is_dotpath(path: str, log_warning: bool = False) -> bool: posix_path = _resolve_pattern(path, return_path = True) name = posix_path.rstrip("/").rsplit("/", 1)[-1] if name.startswith("."): if log_warning: log.warning(f"The following .dotpath will be included: {path}") return True return False # ----------------------------------------------------------------------------- # Data # ----------------------------------------------------------------------------- # Set up logging log = logging.getLogger("mkdocs.material.info") ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/meta/��������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0021031�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/meta/__init__.py���������������������������������������������0000664�0000000�0000000�00000002145�14753064456�0023144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/meta/config.py�����������������������������������������������0000664�0000000�0000000�00000003025�14753064456�0022650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from mkdocs.config.config_options import Type from mkdocs.config.base import Config # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Meta plugin configuration class MetaConfig(Config): enabled = Type(bool, default = True) # Settings for meta files meta_file = Type(str, default = ".meta.yml") �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/meta/plugin.py�����������������������������������������������0000664�0000000�0000000�00000011713�14753064456�0022704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. import logging import os import posixpath from mergedeep import Strategy, merge from mkdocs.exceptions import PluginError from mkdocs.structure.files import InclusionLevel from mkdocs.plugins import BasePlugin, event_priority from yaml import SafeLoader, load from .config import MetaConfig # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Meta plugin class MetaPlugin(BasePlugin[MetaConfig]): # Construct metadata mapping def on_files(self, files, *, config): if not self.config.enabled: return # Initialize mapping self.meta = {} # Resolve and load meta files in docs directory docs = os.path.relpath(config.docs_dir) for file in files: name = posixpath.basename(file.src_uri) if not name == self.config.meta_file: continue # Exclude meta file from site directory - explicitly excluding the # meta file allows the author to use a file name without '.' prefix file.inclusion = InclusionLevel.EXCLUDED # Open file and parse as YAML with open(file.abs_src_path, encoding = "utf-8-sig") as f: path = file.src_path try: self.meta[path] = load(f, SafeLoader) # The meta file could not be loaded because of a syntax error, # which we display to the author with a nice error message except Exception as e: raise PluginError( f"Error reading meta file '{path}' in '{docs}':\n" f"{e}" ) # Set metadata for page, if applicable (run earlier) @event_priority(50) def on_page_markdown(self, markdown, *, page, config, files): if not self.config.enabled: return # Start with a clean state, as we first need to apply all meta files # that are relevant to the current page, and then merge the page meta # on top of that to ensure that the page meta always takes precedence # over meta files - see https://t.ly/kvCRn meta = {} # Merge matching meta files in level-order strategy = Strategy.TYPESAFE_ADDITIVE for path, defaults in self.meta.items(): if not page.file.src_path.startswith(os.path.dirname(path)): continue # Skip if meta file was already merged - this happens in case of # blog posts, as they need to be merged when posts are constructed, # which is why we need to keep track of which meta files are applied # to what pages using the `__extends` key. page.meta.setdefault("__extends", []) if path in page.meta["__extends"]: continue # Try to merge metadata try: merge(meta, defaults, strategy = strategy) page.meta["__extends"].append(path) # Merging the metadata with the given strategy resulted in an error, # which we display to the author with a nice error message except Exception as e: docs = os.path.relpath(config.docs_dir) raise PluginError( f"Error merging meta file '{path}' in '{docs}':\n" f"{e}" ) # Ensure page metadata is merged last, so the author can override any # defaults from the meta files, or even remove them entirely page.meta = merge(meta, page.meta, strategy = strategy) # ----------------------------------------------------------------------------- # Data # ----------------------------------------------------------------------------- # Set up logging log = logging.getLogger("mkdocs.material.meta") �����������������������������������������������������mkdocs-material-9.6.4/material/plugins/offline/�����������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0021525�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/offline/__init__.py������������������������������������������0000664�0000000�0000000�00000002145�14753064456�0023640�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/offline/config.py��������������������������������������������0000664�0000000�0000000�00000002713�14753064456�0023347�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from mkdocs.config.config_options import Type from mkdocs.config.base import Config # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Offline plugin configuration class OfflineConfig(Config): enabled = Type(bool, default = True) �����������������������������������������������������mkdocs-material-9.6.4/material/plugins/offline/plugin.py��������������������������������������������0000664�0000000�0000000�00000005504�14753064456�0023401�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. import os from mkdocs.plugins import BasePlugin, event_priority from .config import OfflineConfig # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Offline plugin class OfflinePlugin(BasePlugin[OfflineConfig]): # Set configuration for offline build def on_config(self, config): if not self.config.enabled: return # Ensure correct resolution of links when viewing the site from the # file system by disabling directory URLs config.use_directory_urls = False # Append iframe-worker to polyfills/shims config.extra["polyfills"] = config.extra.get("polyfills", []) if not any("iframe-worker" in url for url in config.extra["polyfills"]): script = "https://unpkg.com/iframe-worker/shim" config.extra["polyfills"].append(script) # Add support for offline search (run latest) - the search index is copied # and inlined into a script, so that it can be used without a server @event_priority(-100) def on_post_build(self, *, config): if not self.config.enabled: return # Ensure presence of search index path = os.path.join(config.site_dir, "search") file = os.path.join(path, "search_index.json") if not os.path.isfile(file): return # Obtain search index contents with open(file, encoding = "utf-8") as f: data = f.read() # Inline search index contents into script file = os.path.join(path, "search_index.js") with open(file, "w", encoding = "utf-8") as f: f.write(f"var __index = {data}") ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/privacy/�����������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0021560�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/privacy/__init__.py������������������������������������������0000664�0000000�0000000�00000002145�14753064456�0023673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/privacy/config.py��������������������������������������������0000664�0000000�0000000�00000003630�14753064456�0023401�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. import os from mkdocs.config.base import Config from mkdocs.config.config_options import DictOfItems, Type # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Privacy plugin configuration class PrivacyConfig(Config): enabled = Type(bool, default = True) concurrency = Type(int, default = max(1, os.cpu_count() - 1)) # Settings for caching cache = Type(bool, default = True) cache_dir = Type(str, default = ".cache/plugin/privacy") # Settings for external assets assets = Type(bool, default = True) assets_fetch = Type(bool, default = True) assets_fetch_dir = Type(str, default = "assets/external") assets_expr_map = DictOfItems(Type(str), default = {}) ��������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/privacy/parser.py��������������������������������������������0000664�0000000�0000000�00000003643�14753064456�0023434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from html.parser import HTMLParser from xml.etree.ElementTree import Element # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Fragment parser - previously, we used lxml for fault-tolerant HTML5 parsing, # but it blows up the size of the Docker image by 20 MB. We can't just use the # built-in XML parser, as it doesn't handle HTML5 (because, yeah, it's not XML), # so we use a streaming parser and construct the element ourselves. class FragmentParser(HTMLParser): # Initialize parser def __init__(self): super().__init__(convert_charrefs = True) self.result = None # Create element def handle_starttag(self, tag, attrs): self.result = Element(tag, dict(attrs)) ���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/privacy/plugin.py��������������������������������������������0000664�0000000�0000000�00000056360�14753064456�0023442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations import errno import logging import os import posixpath import re import requests import sys from colorama import Fore, Style from concurrent.futures import Future, ThreadPoolExecutor, wait from hashlib import sha1 from mkdocs.config.config_options import ExtraScriptValue from mkdocs.config.defaults import MkDocsConfig from mkdocs.exceptions import PluginError from mkdocs.plugins import BasePlugin, event_priority from mkdocs.structure.files import File, Files from mkdocs.utils import is_error_template from re import Match from urllib.parse import ParseResult as URL, urlparse, unquote from xml.etree.ElementTree import Element, tostring from .config import PrivacyConfig from .parser import FragmentParser # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Privacy plugin class PrivacyPlugin(BasePlugin[PrivacyConfig]): # Initialize thread pools and asset collections def on_config(self, config): self.site = urlparse(config.site_url or "") if not self.config.enabled: return # Initialize thread pool self.pool = ThreadPoolExecutor(self.config.concurrency) self.pool_jobs: list[Future] = [] # Initialize collections of external assets self.assets = Files([]) self.assets_expr_map = { ".css": r"url\(\s*([\"']?)(?P<url>http?[^)'\"]+)\1\s*\)", ".js": r"[\"'](?P<url>http[^\"']+\.(?:css|js(?:on)?))[\"']", **self.config.assets_expr_map } # Process external style sheets and scripts (run latest) - run this after # all other plugins, so they can add additional assets @event_priority(-100) def on_files(self, files, *, config): if not self.config.enabled: return # Skip if external assets must not be processed if not self.config.assets: return # Find all external style sheet and script files that are provided as # part of the build (= already known to MkDocs on startup) for initiator in files.media_files(): file = None # Check if the file has dependent external assets that must be # downloaded. Create and enqueue a job for each external asset. for url in self._parse_media(initiator): if not self._is_excluded(url, initiator): file = self._queue(url, config, concurrent = True) # If site URL is not given, ensure that Mermaid.js is always # present. This is a special case, as Material for MkDocs # automatically loads Mermaid.js when a Mermaid diagram is # found in the page - https://bit.ly/36tZXsA. if "mermaid.min.js" in url.path and not config.site_url: script = ExtraScriptValue(url.geturl()) if script not in config.extra_javascript: config.extra_javascript.append(script) # The local asset references at least one external asset, which # means we must download and replace them later if file: self.assets.append(initiator) files.remove(initiator) # Process external style sheet files for path in config.extra_css: url = urlparse(path) if not self._is_excluded(url): self._queue(url, config, concurrent = True) # Process external script files for script in config.extra_javascript: if isinstance(script, str): script = ExtraScriptValue(script) # Enqueue a job if the script needs to downloaded url = urlparse(script.path) if not self._is_excluded(url): self._queue(url, config, concurrent = True) # Process external images in page (run latest) - this stage is the earliest # we can start processing external images, since images are the most common # type of external asset when writing. Thus, we create and enqueue a job for # each image we find that checks if the image needs to be downloaded. @event_priority(-100) def on_page_content(self, html, *, page, config, files): if not self.config.enabled: return # Skip if external assets must not be processed if not self.config.assets: return # Find all external images and download them if not excluded for match in re.findall( r"<img[^>]+src=['\"]?http[^>]+>", html, flags = re.I | re.M ): el = self._parse_fragment(match) # Create and enqueue job to fetch external image url = urlparse(el.get("src")) if not self._is_excluded(url, page.file): self._queue(url, config, concurrent = True) # Sync all concurrent jobs def on_env(self, env, *, config, files): if not self.config.enabled: return # Wait until all jobs until now are finished wait(self.pool_jobs) # Process external assets in template (run later) @event_priority(-50) def on_post_template(self, output_content, *, template_name, config): if not self.config.enabled: return # Skip sitemap.xml and other non-HTML files if not template_name.endswith(".html"): return # Parse and replace links to external assets in template initiator = File(template_name, config.docs_dir, config.site_dir, False) return self._parse_html(output_content, initiator, config) # Process external assets in page (run later) @event_priority(-50) def on_post_page(self, output, *, page, config): if not self.config.enabled: return # Parse and replace links to external assets return self._parse_html(output, page.file, config) # Reconcile jobs (run earlier) @event_priority(50) def on_post_build(self, *, config): if not self.config.enabled: return # Reconcile concurrent jobs and clear thread pool, as we will reuse the # same thread pool for patching all links to external assets wait(self.pool_jobs) self.pool_jobs.clear() # Spawn concurrent job to patch all links to dependent external asset # in all style sheet and script files for file in self.assets: _, extension = posixpath.splitext(file.dest_uri) if extension in [".css", ".js"]: self.pool_jobs.append(self.pool.submit( self._patch, file )) # Otherwise just copy external asset to output directory else: file.copy_file() # Reconcile concurrent jobs for the last time, so the plugins following # in the build process always have a consistent state to work with wait(self.pool_jobs) self.pool.shutdown() # ------------------------------------------------------------------------- # Check if the given URL is external def _is_external(self, url: URL): hostname = url.hostname or self.site.hostname return hostname != self.site.hostname # Check if the given URL is excluded def _is_excluded(self, url: URL, initiator: File | None = None): if not self._is_external(url): return True # Skip if external assets must not be processed if not self.config.assets: return True # If initiator is given, format for printing via = "" if initiator: via = "".join([ Fore.WHITE, Style.DIM, f"in '{initiator.src_uri}' ", Style.RESET_ALL ]) # Print warning if fetching is not enabled if not self.config.assets_fetch: log.warning(f"External file: {url.geturl()} {via}") return True # File is not excluded return False # ------------------------------------------------------------------------- # Parse a fragment def _parse_fragment(self, fragment: str): parser = FragmentParser() parser.feed(fragment) parser.close() # Check parse result and return element if isinstance(parser.result, Element): return parser.result # Otherwise, raise a plugin error - if the author accidentally used # invalid HTML inside of the tag, e.g., forget a opening or closing # quote, we need to catch this here, as we're using pretty basic # regular expression based extraction raise PluginError( f"Could not parse due to possible syntax error in HTML: \n\n" + fragment ) # Parse and extract all external assets from a media file using a preset # regular expression, and return all URLs found. def _parse_media(self, initiator: File) -> list[URL]: _, extension = posixpath.splitext(initiator.dest_uri) if extension not in self.assets_expr_map: return [] # Skip if source path is not set, which might be true for generated # files or for files that were added programatically in plugins if not initiator.abs_src_path: return [] # Find and extract all external asset URLs expr = re.compile(self.assets_expr_map[extension], flags = re.I | re.M) with open(initiator.abs_src_path, encoding = "utf-8-sig") as f: results = re.finditer(expr, f.read()) return [urlparse(result.group("url")) for result in results] # Parse template or page HTML and find all external links that need to be # replaced. Many of the assets should already be downloaded earlier, i.e., # everything that was directly referenced in the document, but there may # still exist external assets that were added by third-party plugins. def _parse_html(self, output: str, initiator: File, config: MkDocsConfig): # Resolve callback def resolve(file: File): if is_error_template(initiator.src_uri): base = urlparse(config.site_url or "/") return posixpath.join(base.path, file.url) else: return file.url_relative_to(initiator) # Replace callback def replace(match: Match): el = self._parse_fragment(match.group()) # Handle external style sheet or preconnect hint if el.tag == "link": url = urlparse(el.get("href")) if not self._is_excluded(url, initiator): rel = el.get("rel", "") # Replace external preconnect hint if rel == "preconnect": return "" # Replace external favicon, preload hint or style sheet if rel in ("icon", "preload", "stylesheet"): file = self._queue(url, config) el.set("href", resolve(file)) # Handle external script or image if el.tag == "script" or el.tag == "img": url = urlparse(el.get("src")) if not self._is_excluded(url, initiator): file = self._queue(url, config) el.set("src", resolve(file)) # Handle external image in SVG if el.tag == "image": url = urlparse(el.get("href")) if not self._is_excluded(url, initiator): file = self._queue(url, config) el.set("href", resolve(file)) # Return element as string return self._print(el) # Find and replace all external asset URLs in current page return re.sub( r"<(?:(?:a|link|image)[^>]+href|(?:script|img)[^>]+src)=['\"]?http[^>]+>", replace, output, flags = re.I | re.M ) # ------------------------------------------------------------------------- # Print element as string - what could possibly go wrong? We're parsing # HTML5 with an XML parser, and XML doesn't allow for boolean attributes, # which is why we must add a dummy value to all attributes that are not # strings before printing the element as string. def _print(self, el: Element): temp = "__temp__" for name in el.attrib: if not isinstance(el.attrib[name], str): el.attrib[name] = temp # Return void or opening tag as string, strip closing tag data = tostring(el, encoding = "unicode") return data.replace(" />", ">").replace(f"=\"{temp}\"", "") # Enqueue external asset for download, if not already done def _queue(self, url: URL, config: MkDocsConfig, concurrent = False): path = self._path_from_url(url) full = posixpath.join(self.config.assets_fetch_dir, path) # Try to retrieve existing file file = self.assets.get_file_from_path(full) if not file: # Compute path to external asset, which is sourced from the cache # directory, and generate file to register it with MkDocs as soon # as it was downloaded. This allows other plugins to apply # additional processing. file = self._path_to_file(path, config) file.url = url.geturl() # Spawn concurrent job to fetch external asset if the extension is # known and the concurrent flag is set. In that case, this function # is called in a context where no replacements are carried out, so # the caller must only ensure to reconcile the concurrent jobs. _, extension = posixpath.splitext(url.path) if extension and concurrent: self.pool_jobs.append(self.pool.submit( self._fetch, file, config )) # Fetch external asset synchronously, as it either has no extension # or is fetched from a context in which replacements are done else: self._fetch(file, config) # Register external asset as file - it might have already been # registered, and since MkDocs 1.6, trigger a deprecation warning if not self.assets.get_file_from_path(file.src_uri): self.assets.append(file) # If the URL of the external asset includes a hash fragment, add it to # the returned file, e.g. for dark/light images - see https://t.ly/7b16Y if url.fragment: file.url += f"#{url.fragment}" # Return file associated with external asset return file # Fetch external asset referenced through the given file def _fetch(self, file: File, config: MkDocsConfig): # Check if external asset needs to be downloaded if not os.path.isfile(file.abs_src_path) or not self.config.cache: path = file.abs_src_path # Download external asset log.info(f"Downloading external file: {file.url}") res = requests.get(file.url, headers = { # Set user agent explicitly, so Google Fonts gives us *.woff2 # files, which according to caniuse.com is the only format we # need to download as it covers the entire range of browsers # we're officially supporting. "User-Agent": " ".join([ "Mozilla/5.0 (Windows NT 10.0; Win64; x64)", "AppleWebKit/537.36 (KHTML, like Gecko)", "Chrome/98.0.4758.102 Safari/537.36" ]) }) # Compute expected file extension and append if missing mime = res.headers["content-type"].split(";")[0] extension = extensions.get(mime) if extension and not path.endswith(extension): path += extension # Save to file and create symlink if no extension was present self._save_to_file(path, res.content) if path != file.abs_src_path: # Creating symlinks might fail on Windows. Thus, we just print # a warning and continue - see https://bit.ly/3xYFzcZ try: os.symlink(os.path.basename(path), file.abs_src_path) except OSError as e: if e.errno != errno.EEXIST: log.warning( f"Couldn't create symbolic link: {file.src_uri}" ) # Fall back for when the symlink could not be created. This # means that the plugin will download the original file on # every build, as the content type cannot be resolved from # the file extension. file.abs_src_path = path # Resolve destination if file points to a symlink _, extension = os.path.splitext(file.abs_src_path) if os.path.isfile(file.abs_src_path): file.abs_src_path = os.path.realpath(file.abs_src_path) _, extension = os.path.splitext(file.abs_src_path) # If the symlink could not be created, we already set the correct # extension, so we need to make sure not to append it again if not file.abs_dest_path.endswith(extension): file.src_uri += extension # Compute destination file system path file.dest_uri += extension file.abs_dest_path += extension # Compute destination URL file.url = file.dest_uri # Parse and enqueue dependent external assets for url in self._parse_media(file): if not self._is_excluded(url, file): self._queue(url, config, concurrent = True) # Patch all links to external assets in the given file def _patch(self, initiator: File): with open(initiator.abs_src_path, encoding = "utf-8-sig") as f: # Replace callback def replace(match: Match): value = match.group("url") # Map URL to canonical path path = self._path_from_url(urlparse(value)) full = posixpath.join(self.config.assets_fetch_dir, path) # Try to retrieve existing file file = self.assets.get_file_from_path(full) if not file: name = os.readlink(os.path.join(self.config.cache_dir, full)) full = posixpath.join(posixpath.dirname(full), name) # Try again after resolving symlink file = self.assets.get_file_from_path(full) # This can theoretically never happen, as we're sure that we # only replace files that we successfully extracted. However, # we might have missed several cases, so it's better to throw # here than to swallow the error. if not file: log.error( "File not found. This is likely a bug in the built-in " "privacy plugin. Please create an issue with a minimal " "reproduction." ) sys.exit(1) # Create absolute URL for asset in script if file.url.endswith(".js"): url = posixpath.join(self.site.geturl(), file.url) # Create relative URL for everything else else: url = file.url_relative_to(initiator) # Switch external asset URL to local path return match.group().replace(value, url) # Resolve replacement expression according to asset type _, extension = posixpath.splitext(initiator.dest_uri) expr = re.compile(self.assets_expr_map[extension], re.I | re.M) # Resolve links to external assets in file self._save_to_file( initiator.abs_dest_path, expr.sub(replace, f.read()) ) # ------------------------------------------------------------------------- # Normalize (= canonicalize) path by removing trailing slashes, and ensure # that hidden folders (`.` after `/`) are unhidden. Otherwise MkDocs will # not consider them being part of the build and refuse to copy them. def _path_from_url(self, url: URL): path = posixpath.normpath(url.path) path = re.sub(r"/\.", "/_", path) # Compute digest of query string, as some URLs yield different results # for different query strings, e.g. https://unsplash.com/random?Coffee if url.query: name, extension = posixpath.splitext(path) # Inject digest after file name and before file extension, as # done for style sheet and script files as well digest = sha1(url.query.encode("utf-8")).hexdigest()[:8] path = f"{name}.{digest}{extension}" # Create and return URL without leading double slashes url = url._replace(scheme = "", query = "", fragment = "", path = path) return url.geturl()[2:] # Create a file for the given path def _path_to_file(self, path: str, config: MkDocsConfig): return File( posixpath.join(self.config.assets_fetch_dir, unquote(path)), os.path.abspath(self.config.cache_dir), config.site_dir, False ) # Create a file on the system with the given content def _save_to_file(self, path: str, content: str | bytes): os.makedirs(os.path.dirname(path), exist_ok = True) if isinstance(content, str): content = bytes(content, "utf-8") with open(path, "wb") as f: f.write(content) # ----------------------------------------------------------------------------- # Data # ----------------------------------------------------------------------------- # Set up logging log = logging.getLogger("mkdocs.material.privacy") # Expected file extensions extensions = { "application/javascript": ".js", "image/avif": ".avif", "image/gif": ".gif", "image/jpeg": ".jpg", "image/png": ".png", "image/svg+xml": ".svg", "image/webp": ".webp", "text/javascript": ".js", "text/css": ".css" } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/search/������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0021350�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/search/__init__.py�������������������������������������������0000664�0000000�0000000�00000002145�14753064456�0023463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/search/config.py���������������������������������������������0000664�0000000�0000000�00000004511�14753064456�0023170�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from mkdocs.config.config_options import ( Choice, Deprecated, Optional, ListOfItems, Type ) from mkdocs.config.base import Config from mkdocs.contrib.search import LangOption # ----------------------------------------------------------------------------- # Options # ----------------------------------------------------------------------------- # Options for search pipeline pipeline = ("stemmer", "stopWordFilter", "trimmer") # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Search plugin configuration class SearchConfig(Config): enabled = Type(bool, default = True) # Settings for search lang = Optional(LangOption()) separator = Optional(Type(str)) pipeline = Optional(ListOfItems(Choice(pipeline))) # Settings for text segmentation (Chinese) jieba_dict = Optional(Type(str)) jieba_dict_user = Optional(Type(str)) # Unsupported settings, originally implemented in MkDocs indexing = Deprecated(message = "Unsupported option") prebuild_index = Deprecated(message = "Unsupported option") min_search_length = Deprecated(message = "Unsupported option") ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/search/plugin.py���������������������������������������������0000664�0000000�0000000�00000046643�14753064456�0023235�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. import json import logging import os import regex as re from html import escape from html.parser import HTMLParser from mkdocs import utils from mkdocs.plugins import BasePlugin from .config import SearchConfig try: import jieba except ImportError: jieba = None # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Search plugin class SearchPlugin(BasePlugin[SearchConfig]): # Initialize plugin def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) # Initialize incremental builds self.is_dirty = False self.is_dirtyreload = False # Initialize search index cache self.search_index_prev = None # Determine whether we're serving the site def on_startup(self, *, command, dirty): self.is_dirty = dirty # Initialize plugin def on_config(self, config): if not self.config.enabled: return # Retrieve default value for language if not self.config.lang: self.config.lang = [self._translate( config, "search.config.lang" )] # Retrieve default value for separator if not self.config.separator: self.config.separator = self._translate( config, "search.config.separator" ) # Retrieve default value for pipeline if self.config.pipeline is None: self.config.pipeline = list(filter(len, re.split( r"\s*,\s*", self._translate(config, "search.config.pipeline") ))) # Initialize search index self.search_index = SearchIndex(**self.config) # Set jieba dictionary, if given if self.config.jieba_dict: path = os.path.normpath(self.config.jieba_dict) if os.path.isfile(path): jieba.set_dictionary(path) log.debug(f"Loading jieba dictionary: {path}") else: log.warning( f"Configuration error for 'search.jieba_dict': " f"'{self.config.jieba_dict}' does not exist." ) # Set jieba user dictionary, if given if self.config.jieba_dict_user: path = os.path.normpath(self.config.jieba_dict_user) if os.path.isfile(path): jieba.load_userdict(path) log.debug(f"Loading jieba user dictionary: {path}") else: log.warning( f"Configuration error for 'search.jieba_dict_user': " f"'{self.config.jieba_dict_user}' does not exist." ) # Add page to search index def on_page_context(self, context, *, page, config, nav): if not self.config.enabled: return # Index page self.search_index.add_entry_from_context(page) page.content = re.sub( r"\s?data-search-\w+=\"[^\"]+\"", "", page.content ) # Generate search index def on_post_build(self, *, config): if not self.config.enabled: return # Write search index base = os.path.join(config.site_dir, "search") path = os.path.join(base, "search_index.json") # Generate and write search index to file data = self.search_index.generate_search_index(self.search_index_prev) utils.write_file(data.encode("utf-8"), path) # Persist search index for repeated invocation if self.is_dirty: self.search_index_prev = self.search_index # Determine whether we're running under dirty reload def on_serve(self, server, *, config, builder): self.is_dirtyreload = self.is_dirty # ------------------------------------------------------------------------- # Translate the given placeholder value def _translate(self, config, value): env = config.theme.get_env() # Load language template and return translation for placeholder language = "partials/language.html" template = env.get_template(language, None, { "config": config }) return template.module.t(value) # ----------------------------------------------------------------------------- # Search index with support for additional fields class SearchIndex: # Initialize search index def __init__(self, **config): self.config = config self.entries = [] # Add page to search index def add_entry_from_context(self, page): search = page.meta.get("search") or {} if search.get("exclude"): return # Divide page content into sections parser = Parser() parser.feed(page.content) parser.close() # Add sections to index for section in parser.data: if not section.is_excluded(): self.create_entry_for_section(section, page.toc, page.url, page) # Override: graceful indexing and additional fields def create_entry_for_section(self, section, toc, url, page): item = self._find_toc_by_id(toc, section.id) if item: url = url + item.url elif section.id: url = url + "#" + section.id # Set page title as section title if none was given, which happens when # the first headline in a Markdown document is not a h1 headline. Also, # if a page title was set via front matter, use that even though a h1 # might be given or the page name was specified in nav in mkdocs.yml if not section.title: section.title = [str(page.meta.get("title", page.title))] # Compute title and text title = "".join(section.title).strip() text = "".join(section.text).strip() # Segment Chinese characters if jieba is available if jieba: title = self._segment_chinese(title) text = self._segment_chinese(text) # Create entry for section entry = { "location": url, "title": title, "text": text } # Set document tags tags = page.meta.get("tags") if isinstance(tags, list): entry["tags"] = [] for name in tags: if name and isinstance(name, (str, int, float, bool)): entry["tags"].append(str(name)) # Set document boost search = page.meta.get("search") or {} if "boost" in search: entry["boost"] = search["boost"] # Add entry to index self.entries.append(entry) # Generate search index def generate_search_index(self, prev): config = { key: self.config[key] for key in ["lang", "separator", "pipeline"] } # Hack: if we're running under dirty reload, the search index will only # include the entries for the current page. However, MkDocs > 1.4 allows # us to persist plugin state across rebuilds, which is exactly what we # do by passing the previously built index to this method. Thus, we just # remove the previous entries for the current page, and append the new # entries to the end of the index, as order doesn't matter. if prev and self.entries: path = self.entries[0]["location"] # Since we're sure that we're running under dirty reload, the list # of entries will only contain sections for a single page. Thus, we # use the first entry to remove all entries from the previous run # that belong to the current page. The rationale behind this is that # authors might add or remove section headers, so we need to make # sure that sections are synchronized correctly. entries = [ entry for entry in prev.entries if not entry["location"].startswith(path) ] # Merge previous with current entries self.entries = entries + self.entries # Otherwise just set previous entries if prev and not self.entries: self.entries = prev.entries # Return search index as JSON data = { "config": config, "docs": self.entries } return json.dumps( data, separators = (",", ":"), default = str ) # ------------------------------------------------------------------------- # Retrieve item for anchor def _find_toc_by_id(self, toc, id): for toc_item in toc: if toc_item.id == id: return toc_item # Recurse into children of item toc_item = self._find_toc_by_id(toc_item.children, id) if toc_item is not None: return toc_item # No item found return None # Find and segment Chinese characters in string def _segment_chinese(self, data): expr = re.compile(r"(\p{IsHan}+)", re.UNICODE) # Replace callback def replace(match): value = match.group(0) # Replace occurrence in original string with segmented version and # surround with zero-width whitespace for efficient indexing return "".join([ "\u200b", "\u200b".join(jieba.cut(value.encode("utf-8"))), "\u200b", ]) # Return string with segmented occurrences return expr.sub(replace, data).strip("\u200b") # ----------------------------------------------------------------------------- # HTML element class Element: """ An element with attributes, essentially a small wrapper object for the parser to access attributes in other callbacks than handle_starttag. """ # Initialize HTML element def __init__(self, tag, attrs = None): self.tag = tag self.attrs = attrs or {} # String representation def __repr__(self): return self.tag # Support comparison (compare by tag only) def __eq__(self, other): if other is Element: return self.tag == other.tag else: return self.tag == other # Support set operations def __hash__(self): return hash(self.tag) # Check whether the element should be excluded def is_excluded(self): return "data-search-exclude" in self.attrs # ----------------------------------------------------------------------------- # HTML section class Section: """ A block of text with markup, preceded by a title (with markup), i.e., a headline with a certain level (h1-h6). Internally used by the parser. """ # Initialize HTML section def __init__(self, el, depth = 0): self.el = el self.depth = depth # Initialize section data self.text = [] self.title = [] self.id = None # String representation def __repr__(self): if self.id: return "#".join([self.el.tag, self.id]) else: return self.el.tag # Check whether the section should be excluded def is_excluded(self): return self.el.is_excluded() # ----------------------------------------------------------------------------- # HTML parser class Parser(HTMLParser): """ This parser divides the given string of HTML into a list of sections, each of which are preceded by a h1-h6 level heading. A white- and blacklist of tags dictates which tags should be preserved as part of the index, and which should be ignored in their entirety. """ # Initialize HTML parser def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) # Tags to skip self.skip = set([ "object", # Objects "script", # Scripts "style" # Styles ]) # Tags to keep self.keep = set([ "p", # Paragraphs "code", "pre", # Code blocks "li", "ol", "ul", # Lists "sub", "sup" # Sub- and superscripts ]) # Current context and section self.context = [] self.section = None # All parsed sections self.data = [] # Called at the start of every HTML tag def handle_starttag(self, tag, attrs): attrs = dict(attrs) # Ignore self-closing tags el = Element(tag, attrs) if not tag in void: self.context.append(el) else: return # Handle heading if tag in ([f"h{x}" for x in range(1, 7)]): depth = len(self.context) if "id" in attrs: # Ensure top-level section if tag != "h1" and not self.data: self.section = Section(Element("hx"), depth) self.data.append(self.section) # Set identifier, if not first section self.section = Section(el, depth) if self.data: self.section.id = attrs["id"] # Append section to list self.data.append(self.section) # Handle preface - ensure top-level section if not self.section: self.section = Section(Element("hx")) self.data.append(self.section) # Handle special cases to skip for key, value in attrs.items(): # Skip block if explicitly excluded from search if key == "data-search-exclude": self.skip.add(el) return # Skip line numbers - see https://bit.ly/3GvubZx if key == "class" and value == "linenodiv": self.skip.add(el) return # Render opening tag if kept if not self.skip.intersection(self.context) and tag in self.keep: # Check whether we're inside the section title data = self.section.text if self.section.el in self.context: data = self.section.title # Append to section title or text data.append(f"<{tag}>") # Called at the end of every HTML tag def handle_endtag(self, tag): if not self.context or self.context[-1] != tag: return # Check whether we're exiting the current context, which happens when # a headline is nested in another element. In that case, we close the # current section, continuing to append data to the previous section, # which could also be a nested section – see https://bit.ly/3IxxIJZ if self.section.depth > len(self.context): for section in reversed(self.data): if section.depth <= len(self.context): # Set depth to infinity in order to denote that the current # section is exited and must never be considered again. self.section.depth = float("inf") self.section = section break # Remove element from skip list el = self.context.pop() if el in self.skip: if el.tag not in ["script", "style", "object"]: self.skip.remove(el) return # Render closing tag if kept if not self.skip.intersection(self.context) and tag in self.keep: # Check whether we're inside the section title data = self.section.text if self.section.el in self.context: data = self.section.title # Search for corresponding opening tag index = data.index(f"<{tag}>") for i in range(index + 1, len(data)): if not data[i].isspace(): index = len(data) break # Remove element if empty (or only whitespace) if len(data) > index: while len(data) > index: data.pop() # Append to section title or text else: data.append(f"</{tag}>") # Called for the text contents of each tag def handle_data(self, data): if self.skip.intersection(self.context): return # Collapse whitespace in non-pre contexts if not "pre" in self.context: if not data.isspace(): data = data.replace("\n", " ") else: data = " " # Handle preface - ensure top-level section if not self.section: self.section = Section(Element("hx")) self.data.append(self.section) # Handle section headline if self.section.el in self.context: permalink = False for el in self.context: if el.tag == "a" and el.attrs.get("class") == "headerlink": permalink = True # Ignore permalinks if not permalink: self.section.title.append( escape(data, quote = False) ) # Collapse adjacent whitespace elif data.isspace(): if not self.section.text or not self.section.text[-1].isspace(): self.section.text.append(data) elif "pre" in self.context: self.section.text.append(data) # Handle everything else else: self.section.text.append( escape(data, quote = False) ) # ----------------------------------------------------------------------------- # Data # ----------------------------------------------------------------------------- # Set up logging log = logging.getLogger("mkdocs.material.search") # Tags that are self-closing void = set([ "area", # Image map areas "base", # Document base "br", # Line breaks "col", # Table columns "embed", # External content "hr", # Horizontal rules "img", # Images "input", # Input fields "link", # Links "meta", # Metadata "param", # External parameters "source", # Image source sets "track", # Text track "wbr" # Line break opportunities ]) ���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/social/������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0021355�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/social/__init__.py�������������������������������������������0000664�0000000�0000000�00000002145�14753064456�0023470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/social/config.py���������������������������������������������0000664�0000000�0000000�00000004141�14753064456�0023174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from mkdocs.config.base import Config from mkdocs.config.config_options import Deprecated, Type # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Social plugin configuration class SocialConfig(Config): enabled = Type(bool, default = True) cache_dir = Type(str, default = ".cache/plugin/social") # Settings for social cards cards = Type(bool, default = True) cards_dir = Type(str, default = "assets/images/social") cards_layout_options = Type(dict, default = {}) # Deprecated settings cards_color = Deprecated( option_type = Type(dict, default = {}), message = "Deprecated, use 'cards_layout_options.background_color' " "and 'cards_layout_options.color' with 'default' layout" ) cards_font = Deprecated( option_type = Type(str), message = "Deprecated, use 'cards_layout_options.font_family'" ) �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/social/plugin.py���������������������������������������������0000664�0000000�0000000�00000052201�14753064456�0023225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # ----------------------------------------------------------------------------- # Disclaimer # ----------------------------------------------------------------------------- # Please note: this version of the social plugin is not actively development # anymore. Instead, Material for MkDocs Insiders ships a complete rewrite of # the plugin which is much more powerful and addresses all shortcomings of # this implementation. Additionally, the new social plugin allows to create # entirely custom social cards. You can probably imagine, that this was a lot # of work to pull off. If you run into problems, or want to have additional # functionality, please consider sponsoring the project. You can then use the # new version of the plugin immediately. # ----------------------------------------------------------------------------- import concurrent.futures import functools import logging import os import posixpath import re import requests import sys from collections import defaultdict from hashlib import md5 from html import unescape from io import BytesIO from mkdocs.commands.build import DuplicateFilter from mkdocs.exceptions import PluginError from mkdocs.plugins import BasePlugin from mkdocs.utils import write_file from shutil import copyfile from .config import SocialConfig try: from PIL import Image, ImageDraw, ImageFont except ImportError as e: import_errors = {repr(e)} else: import_errors = set() cairosvg_error: str = "" try: from cairosvg import svg2png except ImportError as e: import_errors.add(repr(e)) except OSError as e: cairosvg_error = str(e) # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Social plugin class SocialPlugin(BasePlugin[SocialConfig]): def __init__(self): self._executor = concurrent.futures.ThreadPoolExecutor(4) # Retrieve configuration def on_config(self, config): self.color = colors.get("indigo") if not self.config.enabled: self.config.cards = False if not self.config.cards: return # Check dependencies if import_errors: raise PluginError( "Required dependencies of \"social\" plugin not found:\n" + str("\n".join(map(lambda x: "- " + x, import_errors))) + "\n\n--> Install with: pip install \"mkdocs-material[imaging]\"" ) if cairosvg_error: raise PluginError( "\"cairosvg\" Python module is installed, but it crashed with:\n" + cairosvg_error + "\n\n--> Check out the troubleshooting guide: https://t.ly/MfX6u" ) # Move color options if self.config.cards_color: # Move background color to new option value = self.config.cards_color.get("fill") if value: self.config.cards_layout_options["background_color"] = value # Move color to new option value = self.config.cards_color.get("text") if value: self.config.cards_layout_options["color"] = value # Move font family to new option if self.config.cards_font: value = self.config.cards_font self.config.cards_layout_options["font_family"] = value # Check if site URL is defined if not config.site_url: log.warning( "The \"site_url\" option is not set. The cards are generated, " "but not linked, so they won't be visible on social media." ) # Ensure presence of cache directory self.cache = self.config.cache_dir if not os.path.isdir(self.cache): os.makedirs(self.cache) # Retrieve palette from theme configuration theme = config.theme if "palette" in theme: palette = theme["palette"] # Find first palette that includes primary color definition if isinstance(palette, list): for p in palette: if "primary" in p and p["primary"]: palette = p break # Set colors according to palette if "primary" in palette and palette["primary"]: primary = palette["primary"].replace(" ", "-") self.color = colors.get(primary, self.color) # Retrieve color overrides options = self.config.cards_layout_options self.color = { "fill": options.get("background_color", self.color["fill"]), "text": options.get("color", self.color["text"]) } # Retrieve logo and font self._resized_logo_promise = self._executor.submit(self._load_resized_logo, config) self.font = self._load_font(config) self._image_promises = [] # Create social cards def on_page_content(self, html, page, config, files): if not self.config.cards: return # Resolve image directory directory = self.config.cards_dir file, _ = os.path.splitext(page.file.src_path) # Resolve path of image path = "{}.png".format(os.path.join( config.site_dir, directory, file )) # Resolve path of image directory directory = os.path.dirname(path) if not os.path.isdir(directory): os.makedirs(directory) # Compute site name site_name = config.site_name # Compute page title and description title = page.meta.get("title", page.title) description = config.site_description or "" if "description" in page.meta: description = page.meta["description"] # Check type of meta title - see https://t.ly/m1Us if not isinstance(title, str): log.error( f"Page meta title of page '{page.file.src_uri}' must be a " f"string, but is of type \"{type(title)}\"." ) sys.exit(1) # Check type of meta description - see https://t.ly/m1Us if not isinstance(description, str): log.error( f"Page meta description of '{page.file.src_uri}' must be a " f"string, but is of type \"{type(description)}\"." ) sys.exit(1) # Generate social card if not in cache hash = md5("".join([ site_name, str(title), description ]).encode("utf-8")) file = os.path.join(self.cache, f"{hash.hexdigest()}.png") self._image_promises.append(self._executor.submit( self._cache_image, cache_path = file, dest_path = path, render_function = lambda: self._render_card(site_name, title, description) )) # Inject meta tags into page meta = page.meta.get("meta", []) page.meta["meta"] = meta + self._generate_meta(page, config) def on_post_build(self, config): if not self.config.cards: return # Check for exceptions for promise in self._image_promises: promise.result() # ------------------------------------------------------------------------- # Render image to cache (if not present), then copy from cache to site def _cache_image(self, cache_path, dest_path, render_function): if not os.path.isfile(cache_path): image = render_function() image.save(cache_path) # Copy file from cache copyfile(cache_path, dest_path) @functools.lru_cache(maxsize=None) def _get_font(self, kind, size): return ImageFont.truetype(self.font[kind], size) # Render social card def _render_card(self, site_name, title, description): # Render background and logo image = self._render_card_background((1200, 630), self.color["fill"]) image.alpha_composite( self._resized_logo_promise.result(), (1200 - 228, 64 - 4) ) # Render site name font = self._get_font("Bold", 36) image.alpha_composite( self._render_text((826, 48), font, site_name, 1, 20), (64 + 4, 64) ) # Render page title font = self._get_font("Bold", 92) image.alpha_composite( self._render_text((826, 328), font, title, 3, 30), (64, 160) ) # Render page description font = self._get_font("Regular", 28) image.alpha_composite( self._render_text((826, 80), font, description, 2, 14), (64 + 4, 512) ) # Return social card image return image # Render social card background def _render_card_background(self, size, fill): return Image.new(mode = "RGBA", size = size, color = fill) @functools.lru_cache(maxsize=None) def _tmp_context(self): image = Image.new(mode = "RGBA", size = (50, 50)) return ImageDraw.Draw(image) @functools.lru_cache(maxsize=None) def _text_bounding_box(self, text, font): return self._tmp_context().textbbox((0, 0), text, font = font) # Render social card text def _render_text(self, size, font, text, lmax, spacing = 0): width = size[0] lines, words = [], [] # Remove remnant HTML tags and convert HTML entities text = re.sub(r"(<[^>]+>)", "", text) text = unescape(text) # Retrieve y-offset of textbox to correct for spacing yoffset = 0 # Create drawing context and split text into lines for word in text.split(" "): combine = " ".join(words + [word]) textbox = self._text_bounding_box(combine, font = font) yoffset = textbox[1] if not words or textbox[2] <= width: words.append(word) else: lines.append(words) words = [word] # Join words for each line and create image lines.append(words) lines = [" ".join(line) for line in lines] image = Image.new(mode = "RGBA", size = size) # Create drawing context and split text into lines context = ImageDraw.Draw(image) context.text( (0, spacing / 2 - yoffset), "\n".join(lines[:lmax]), font = font, fill = self.color["text"], spacing = spacing - yoffset ) # Return text image return image # ------------------------------------------------------------------------- # Generate meta tags def _generate_meta(self, page, config): directory = self.config.cards_dir file, _ = os.path.splitext(page.file.src_uri) # Compute page title if page.is_homepage: title = config.site_name else: page_title = page.meta.get("title", page.title) title = f"{page_title} - {config.site_name}" # Compute page description description = config.site_description if "description" in page.meta: description = page.meta["description"] # Resolve image URL url = "{}.png".format(posixpath.join( config.site_url or ".", directory, file )) # Ensure forward slashes url = url.replace(os.path.sep, "/") # Return meta tags return [ # Meta tags for Open Graph { "property": "og:type", "content": "website" }, { "property": "og:title", "content": title }, { "property": "og:description", "content": description }, { "property": "og:image", "content": url }, { "property": "og:image:type", "content": "image/png" }, { "property": "og:image:width", "content": "1200" }, { "property": "og:image:height", "content": "630" }, { "property": "og:url", "content": page.canonical_url }, # Meta tags for Twitter { "name": "twitter:card", "content": "summary_large_image" }, # { "name": "twitter:site", "content": user }, # { "name": "twitter:creator", "content": user }, { "name": "twitter:title", "content": title }, { "name": "twitter:description", "content": description }, { "name": "twitter:image", "content": url } ] def _load_resized_logo(self, config, width = 144): logo = self._load_logo(config) height = int(width * logo.height / logo.width) return logo.resize((width, height)) # Retrieve logo image or icon def _load_logo(self, config): theme = config.theme # Handle images (precedence over icons) if "logo" in theme: _, extension = os.path.splitext(theme["logo"]) path = os.path.join(config.docs_dir, theme["logo"]) # Allow users to put the logo inside their custom_dir (theme["logo"] case) if theme.custom_dir: custom_dir_logo = os.path.join(theme.custom_dir, theme["logo"]) if os.path.exists(custom_dir_logo): path = custom_dir_logo # Load SVG and convert to PNG if extension == ".svg": return self._load_logo_svg(path) # Load PNG, JPEG, etc. return Image.open(path).convert("RGBA") # Handle icons icon = theme.get("icon") or {} if "logo" in icon and icon["logo"]: logo = icon["logo"] else: logo = "material/library" # Resolve path of package base = os.path.abspath(os.path.join( os.path.dirname(__file__), "../.." )) path = f"{base}/templates/.icons/{logo}.svg" # Allow users to put the logo inside their custom_dir (theme["icon"]["logo"] case) if theme.custom_dir: custom_dir_logo = os.path.join(theme.custom_dir, ".icons", f"{logo}.svg") if os.path.exists(custom_dir_logo): path = custom_dir_logo # Load icon data and fill with color return self._load_logo_svg(path, self.color["text"]) # Load SVG file and convert to PNG def _load_logo_svg(self, path, fill = None): file = BytesIO() data = open(path).read() # Fill with color, if given if fill: data = data.replace("<svg", f"<svg fill=\"{fill}\"") # Convert to PNG and return image svg2png(bytestring = data, write_to = file, scale = 10) return Image.open(file) # Retrieve font either from the card layout option or from the Material # font defintion. If no font is defined for Material or font is False # then choose a default. def _load_font(self, config): name = self.config.cards_layout_options.get("font_family") if not name: material_name = config.theme.get("font", False) if material_name is False: name = "Roboto" else: name = material_name.get("text", "Roboto") # Resolve relevant fonts font = {} for style in ["Regular", "Bold"]: font[style] = self._resolve_font(name, style) # Return available font weights with fallback return defaultdict(lambda: font["Regular"], font) # Resolve font family with specific style - if we haven't already done it, # the font family is first downloaded from Google Fonts and the styles are # saved to the cache directory. If the font cannot be resolved, the plugin # must abort with an error. def _resolve_font(self, family: str, style: str): path = os.path.join(self.config.cache_dir, "fonts", family) # Fetch font family, if it hasn't been fetched yet if not os.path.isdir(path): self._fetch_font_from_google_fonts(family) # Check for availability of font style list = sorted(os.listdir(path)) for file in list: name, _ = os.path.splitext(file) if name == style: return os.path.join(path, file) # Find regular variant of font family - we cannot rely on the fact that # fonts always have a single regular variant - some of them have several # of them, potentially prefixed with "Condensed" etc. For this reason we # use the first font we find if we find no regular one. fallback = "" for file in list: name, _ = os.path.splitext(file) # 1. Fallback: use first font if not fallback: fallback = name # 2. Fallback: use regular font - use the shortest one, i.e., prefer # "10pt Regular" over "10pt Condensed Regular". This is a heuristic. if "Regular" in name: if not fallback or len(name) < len(fallback): fallback = name # Fall back to regular font (guess if there are multiple) return self._resolve_font(family, fallback) # Fetch font family from Google Fonts def _fetch_font_from_google_fonts(self, family: str): path = os.path.join(self.config.cache_dir, "fonts") # Download manifest from Google Fonts - Google returns JSON with syntax # errors, so we just treat the response as plain text and parse out all # URLs to font files, as we're going to rename them anyway. This should # be more resilient than trying to correct the JSON syntax. url = f"https://fonts.google.com/download/list?family={family}" res = requests.get(url) # Ensure that the download succeeded if res.status_code != 200: raise PluginError( f"Couldn't find font family '{family}' on Google Fonts " f"({res.status_code}: {res.reason})" ) # Extract font URLs from manifest for match in re.findall( r"\"(https:(?:.*?)\.[ot]tf)\"", str(res.content) ): with requests.get(match) as res: res.raise_for_status() # Extract font family name and style using the content in the # response via ByteIO to avoid writing a temp file. Done to fix # problems with passing a NamedTemporaryFile to # ImageFont.truetype() on Windows, see https://t.ly/LiF_k with BytesIO(res.content) as fontdata: font = ImageFont.truetype(fontdata) name, style = font.getname() name = " ".join([name.replace(family, ""), style]).strip() target = os.path.join(path, family, f"{name}.ttf") # write file to cache write_file(res.content, target) # ----------------------------------------------------------------------------- # Data # ----------------------------------------------------------------------------- # Set up logging log = logging.getLogger("mkdocs") log.addFilter(DuplicateFilter()) # Color palette colors = { "red": { "fill": "#ef5552", "text": "#ffffff" }, "pink": { "fill": "#e92063", "text": "#ffffff" }, "purple": { "fill": "#ab47bd", "text": "#ffffff" }, "deep-purple": { "fill": "#7e56c2", "text": "#ffffff" }, "indigo": { "fill": "#4051b5", "text": "#ffffff" }, "blue": { "fill": "#2094f3", "text": "#ffffff" }, "light-blue": { "fill": "#02a6f2", "text": "#ffffff" }, "cyan": { "fill": "#00bdd6", "text": "#ffffff" }, "teal": { "fill": "#009485", "text": "#ffffff" }, "green": { "fill": "#4cae4f", "text": "#ffffff" }, "light-green": { "fill": "#8bc34b", "text": "#ffffff" }, "lime": { "fill": "#cbdc38", "text": "#000000" }, "yellow": { "fill": "#ffec3d", "text": "#000000" }, "amber": { "fill": "#ffc105", "text": "#000000" }, "orange": { "fill": "#ffa724", "text": "#000000" }, "deep-orange": { "fill": "#ff6e42", "text": "#ffffff" }, "brown": { "fill": "#795649", "text": "#ffffff" }, "grey": { "fill": "#757575", "text": "#ffffff" }, "blue-grey": { "fill": "#546d78", "text": "#ffffff" }, "black": { "fill": "#000000", "text": "#ffffff" }, "white": { "fill": "#ffffff", "text": "#000000" } } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/tags/��������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0021041�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/tags/__init__.py���������������������������������������������0000664�0000000�0000000�00000003705�14753064456�0023157�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from .structure.mapping import Mapping from .structure.tag import Tag # ----------------------------------------------------------------------------- # Functions # ----------------------------------------------------------------------------- # Return tag name for sorting def tag_name(tag: Tag, *args): return tag.name # Return casefolded tag name for sorting def tag_name_casefold(tag: Tag, *args): return tag.name.casefold() # ----------------------------------------------------------------------------- # Return item title for sorting def item_title(mapping: Mapping): # Note that this must be coerced to a string, as the title might be sourced # from metadata, which can be of any type - see https://t.ly/1AXyo return str(mapping.item.title) # Return item URL for sorting def item_url(mapping: Mapping): return mapping.item.url �����������������������������������������������������������mkdocs-material-9.6.4/material/plugins/tags/config.py�����������������������������������������������0000664�0000000�0000000�00000006270�14753064456�0022665�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from collections.abc import Callable from material.utilities.filter import FilterConfig from mkdocs.config.config_options import ( DictOfItems, Deprecated, ListOfItems, SubConfig, Type ) from mkdocs.config.base import Config from pymdownx.slugs import slugify from . import item_title, tag_name from .structure.listing import ListingConfig from .structure.tag.options import TagSet # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Tags plugin configuration class TagsConfig(Config): enabled = Type(bool, default = True) # Settings for filtering filters = SubConfig(FilterConfig) # Settings for tags tags = Type(bool, default = True) tags_slugify = Type(Callable, default = slugify(case = "lower")) tags_slugify_separator = Type(str, default = "-") tags_slugify_format = Type(str, default = "tag:{slug}") tags_sort_by = Type(Callable, default = tag_name) tags_sort_reverse = Type(bool, default = False) tags_name_property = Type(str, default = "tags") tags_name_variable = Type(str, default = "tags") tags_allowed = TagSet() # Settings for listings listings = Type(bool, default = True) listings_map = DictOfItems(SubConfig(ListingConfig), default = {}) listings_sort_by = Type(Callable, default = item_title) listings_sort_reverse = Type(bool, default = False) listings_tags_sort_by = Type(Callable, default = tag_name) listings_tags_sort_reverse = Type(bool, default = False) listings_directive = Type(str, default = "material/tags") listings_layout = Type(str, default = "default") # Deprecated settings tags_compare = Deprecated(moved_to = "tags_sort_by") tags_compare_reverse = Deprecated(moved_to = "tags_sort_reverse") tags_pages_compare = Deprecated(moved_to = "listings_sort_by") tags_pages_compare_reverse = Deprecated(moved_to = "listings_sort_reverse") tags_file = Deprecated( option_type = Type(str), message = "This setting is not required anymore" ) ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/tags/plugin.py�����������������������������������������������0000664�0000000�0000000�00000017727�14753064456�0022727�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations import logging import os import re from jinja2 import Environment from material.utilities.filter import FileFilter from mkdocs.config.defaults import MkDocsConfig from mkdocs.exceptions import PluginError from mkdocs.plugins import BasePlugin, event_priority from mkdocs.structure.pages import Page from mkdocs.utils.templates import TemplateContext from .config import TagsConfig from .renderer import Renderer from .structure.listing.manager import ListingManager from .structure.mapping.manager import MappingManager # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- class TagsPlugin(BasePlugin[TagsConfig]): """ A tags plugin. """ supports_multiple_instances = True """ This plugin supports multiple instances. """ def __init__(self, *args, **kwargs): """ Initialize the plugin. """ super().__init__(*args, **kwargs) # Initialize incremental builds self.is_serve = False # Initialize mapping and listing managers self.mappings = None self.listings = None # ------------------------------------------------------------------------- mappings: MappingManager """ Mapping manager. """ listings: ListingManager """ Listing manager. """ filter: FileFilter """ File filter. """ # ------------------------------------------------------------------------- def on_startup(self, *, command, **kwargs) -> None: """ Determine whether we're serving the site. Arguments: command: The command that is being executed. dirty: Whether dirty builds are enabled. """ self.is_serve = command == "serve" def on_config(self, config: MkDocsConfig) -> None: """ Create mapping and listing managers. """ # Retrieve toc depth, so we know the maximum level at which we can add # items to the table of contents - Python Markdown allows to set the # toc depth as a range, e.g. `2-6`, so we need to account for that as # well. We need this information for generating listings. depth = config.mdx_configs.get("toc", {}).get("toc_depth", 6) if not isinstance(depth, int) and "-" in depth: _, depth = depth.split("-") # Initialize mapping and listing managers self.mappings = MappingManager(self.config) self.listings = ListingManager(self.config, int(depth)) # Initialize file filter - the file filter is used to include or exclude # entire subsections of the documentation, allowing for using multiple # instances of the plugin alongside each other. This can be necessary # when creating multiple, potentially conflicting listings. self.filter = FileFilter(self.config.filters) # Ensure presence of attribute lists extension for extension in config.markdown_extensions: if isinstance(extension, str) and extension.endswith("attr_list"): break else: config.markdown_extensions.append("attr_list") @event_priority(-50) def on_page_markdown( self, markdown: str, *, page: Page, config: MkDocsConfig, **kwargs ) -> str: """ Collect tags and listings from page. Priority: -50 (run later) Arguments: markdown: The page's Markdown. page: The page. config: The MkDocs configuration. Returns: The page's Markdown with injection points. """ if not self.config.enabled: return # Skip if page should not be considered if not self.filter(page.file): return # Handle deprecation of `tags_file` setting if self.config.tags_file: markdown = self._handle_deprecated_tags_file(page, markdown) # Collect tags from page try: self.mappings.add(page, markdown) # Raise exception if tags could not be read except Exception as e: docs = os.path.relpath(config.docs_dir) path = os.path.relpath(page.file.abs_src_path, docs) raise PluginError( f"Error reading tags of page '{path}' in '{docs}':\n" f"{e}" ) # Collect listings from page return self.listings.add(page, markdown) @event_priority(100) def on_env( self, env: Environment, *, config: MkDocsConfig, **kwargs ) -> None: """ Populate listings. Priority: 100 (run earliest) Arguments: env: The Jinja environment. config: The MkDocs configuration. """ if not self.config.enabled: return # Populate and render all listings self.listings.populate_all(self.mappings, Renderer(env, config)) def on_page_context( self, context: TemplateContext, *, page: Page, **kwargs ) -> None: """ Add tag references to page context. Arguments: context: The template context. page: The page. """ if not self.config.enabled: return # Skip if page should not be considered if not self.filter(page.file): return # Skip if tags should not be built if not self.config.tags: return # Retrieve tags references for page mapping = self.mappings.get(page) if mapping: tags = self.config.tags_name_variable if tags not in context: context[tags] = list(self.listings & mapping) # ------------------------------------------------------------------------- def _handle_deprecated_tags_file( self, page: Page, markdown: str ) -> str: """ Handle deprecation of `tags_file` setting. Arguments: page: The page. """ directive = self.config.listings_directive if page.file.src_uri != self.config.tags_file: return markdown # Try to find the legacy tags marker and replace with directive if "[TAGS]" in markdown: markdown = markdown.replace( "[TAGS]", f"<!-- {directive} -->" ) # Try to find the directive and add it if not present pattern = r"<!--\s+{directive}".format(directive = directive) if not re.search(pattern, markdown): markdown += f"\n<!-- {directive} -->" # Return markdown return markdown # ----------------------------------------------------------------------------- # Data # ----------------------------------------------------------------------------- # Set up logging log = logging.getLogger("mkdocs.material.plugins.tags") �����������������������������������������mkdocs-material-9.6.4/material/plugins/tags/renderer/�����������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0022647�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/tags/renderer/__init__.py������������������������������������0000664�0000000�0000000�00000006762�14753064456�0024773�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations import posixpath from jinja2 import Environment from mkdocs.config.defaults import MkDocsConfig from mkdocs.structure.pages import Page from mkdocs.utils import get_relative_url # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- class Renderer: """ A renderer for tags and listings. This class implements a simple tag and listing renderer, leveraging the Jinja environment and the MkDocs configuration as provided to plugins. Note that the templates must be stored in the `fragments` and not `partials` directory, because in order to render tags and listings, we must wait for all pages to be read and processed, as we first need to collect all tags before we can render listings. Tags induce a graph, not a tree. For this reason, we consider the templates to be fragments, as they are not implicitly rendered by MkDocs, but explicitly by the plugin. """ def __init__(self, env: Environment, config: MkDocsConfig): """ Initialize renderer. Arguments: env: The Jinja environment. config: The MkDocs configuration. """ self.env = env self.config = config # ------------------------------------------------------------------------- env: Environment """ The Jinja environment. """ config: MkDocsConfig """ The MkDocs configuration. """ # ------------------------------------------------------------------------- def render(self, page: Page, name: str, **kwargs) -> str: """ Render a template. Templates are resolved from `fragments/tags`, so if you want to override templates or provide additional ones place them in this directory. Arguments: page: The page. name: The name of the template. kwargs: The template variables. Returns: The rendered template. """ path = posixpath.join("fragments", "tags", name) path = posixpath.normpath(path) # Resolve and render template template = self.env.get_template(path) return template.render( config = self.config, page = page, base_url = get_relative_url(".", page.url), **kwargs ) ��������������mkdocs-material-9.6.4/material/plugins/tags/structure/����������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0023101�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/tags/structure/__init__.py�����������������������������������0000664�0000000�0000000�00000002145�14753064456�0025214�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/tags/structure/listing/��������������������������������������0000775�0000000�0000000�00000000000�14753064456�0024552�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/tags/structure/listing/__init__.py���������������������������0000664�0000000�0000000�00000016753�14753064456�0026677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations import posixpath from collections.abc import Iterator from material.plugins.tags.structure.mapping import Mapping from material.plugins.tags.structure.tag import Tag from mkdocs.structure.pages import Page from .config import ListingConfig from .tree import ListingTree # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- class Listing: """ A listing of tags. Listings can be included on a page with the `<!-- material/tags [args] -->` directive. The arguments are passed to a YAML parser, and are expected to either be an inline listing configuration, or an identifier that points to a listing configuration in the `listings_map` setting in `mkdocs.yml`. Example 1: use inline listing configuration ``` markdown <!-- material/tags { include: [foo, bar] } --> ``` Example 2: use listing configuration from `listings_map.qux` ``` markdown <!-- material/tags qux --> ``` If no arguments are given, the default listing configuration is used, rendering all tags and mappings. In case you're using multiple instances of the tags plugin, you can use the `listings_directive` setting to change the directive name. """ def __init__(self, page: Page, id: str, config: ListingConfig): """ Initialize the listing. Arguments: page: The page the listing is embedded in. id: The listing identifier. config: The listing configuration. """ self.page = page self.id = id self.config = config self.tags = {} def __repr__(self) -> str: """ Return a printable representation of the listing. Returns: Printable representation. """ return f"Listing({repr(self.page)})" def __hash__(self) -> int: """ Return the hash of the listing. Returns: The hash. """ return hash(self.id) def __iter__(self) -> Iterator[ListingTree]: """ Iterate over the listing in pre-order. Yields: The current listing tree. """ stack = list(reversed(self.tags.values())) while stack: tree = stack.pop() yield tree # Visit subtrees in reverse, so pre-order is preserved stack += reversed([*tree]) def __and__(self, mapping: Mapping) -> Iterator[Tag]: """ Iterate over the tags of a mapping featured in the listing. When hierarchical tags are used, the set of tags is expanded to include all parent tags, but only for the inclusion check. The returned tags are always the actual tags (= leaves) of the mapping. This is done to avoid duplicate entries in the listing. If a mapping features one of the tags excluded from the listing, the entire mapping is excluded from the listing. Additionally, if a listing should only include tags within the current scope, the mapping is only included if the page is a child of the page the listing was found on. Arguments: mapping: The mapping. Yields: The current tag. """ assert isinstance(mapping, Mapping) # If the mapping is on the same page as the listing, we skip it, as # it makes no sense to link to a listing on the same page if mapping.item == self.page: return iter([]) # If the listing should only include tags within the current scope, we # check if the page is a child of the page the listing is embedded in if self.config.scope: assert isinstance(mapping.item, Page) # Note that we must use `File.src_uri` here, or we won't be able to # detect the difference between pages, and index pages in sections, # as `foo/index.md` and `foo.md` look the same when using `Page.url` base = posixpath.dirname(posixpath.normpath(self.page.file.src_uri)) if not mapping.item.file.src_uri.startswith(posixpath.join(base, "")): return iter([]) # If an exclusion list is given, expand each tag to check if the tag # itself or one of its parents is excluded from the listing if self.config.exclude: if any(mapping & self.config.exclude): return iter([]) # If an inclusion list is given, expand each tag to check if the tag # itself or one of its parents is included in the listing if self.config.include: return mapping & self.config.include # Otherwise, we can just return an iterator over the set of tags of the # mapping as is, as no expansion is required return iter(mapping.tags) # ------------------------------------------------------------------------- page: Page """ The page the listing is embedded in. """ id: str """ The listing identifier. As authors may place an arbitrary number of listings on any page, we need to be able to distinguish between them. This is done automatically. """ config: ListingConfig """ The listing configuration. """ tags: dict[Tag, ListingTree] """ The listing trees, each of which associated with a tag. """ # ------------------------------------------------------------------------- def add(self, mapping: Mapping, *, hidden = True) -> None: """ Add mapping to listing. Arguments: mapping: The mapping. hidden: Whether to add hidden tags. """ for leaf in self & mapping: tree = self.tags # Skip if hidden tags should not be rendered if not hidden and leaf.hidden: continue # Iterate over expanded tags for tag in reversed([*leaf]): if tag not in tree: tree[tag] = ListingTree(tag) # If the tag is the leaf, i.e., the actual tag we want to add, # we add the mapping to the listing tree's mappings if tag == leaf: tree[tag].mappings.append(mapping) # Otherwise, we continue walking down the tree else: tree = tree[tag].children ���������������������mkdocs-material-9.6.4/material/plugins/tags/structure/listing/config.py�����������������������������0000664�0000000�0000000�00000007205�14753064456�0026375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. import yaml from material.plugins.tags.structure.tag.options import TagSet from mkdocs.config.base import Config from mkdocs.config.config_options import Optional, Type from yaml import Dumper # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- class ListingConfig(Config): """ A listing configuration. """ scope = Type(bool, default = False) """ Whether to only include pages in the current subsection. Enabling this setting will only include pages that are on the same level or on a lower level than the page the listing is on. This allows to create a listing of tags on a page that only includes pages that are in the same subsection of the documentation. """ layout = Optional(Type(str)) """ The layout to use for rendering the listing. This setting allows to override the global setting for the layout. If this setting is not specified, the global `listings_layout` setting is used. """ include = TagSet() """ Tags to include in the listing. If this set is empty, the listing does not filter pages by tags. Otherwise, all pages that have at least one of the tags in this set will be included. """ exclude = TagSet() """ Tags to exclude from the listing. If this set is empty, the listing does not filter pages by tags. Otherwise, all pages that have at least one of the tags in this set will be excluded. """ # ----------------------------------------------------------------------------- # Functions # ----------------------------------------------------------------------------- def _representer(dumper: Dumper, config: ListingConfig): """ Return a serializable representation of a listing configuration. Arguments: dumper: The YAML dumper. config: The listing configuration. Returns: Serializable representation. """ copy = config.copy() # Convert the include and exclude tag sets to lists of strings copy.include = list(map(str, copy.include)) if copy.include else None copy.exclude = list(map(str, copy.exclude)) if copy.exclude else None # Return serializable listing configuration data = { k: v for k, v in copy.items() if v is not None } return dumper.represent_dict(data) # ----------------------------------------------------------------------------- # Register listing configuration YAML representer yaml.add_representer(ListingConfig, _representer) �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/tags/structure/listing/manager/������������������������������0000775�0000000�0000000�00000000000�14753064456�0026164�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/tags/structure/listing/manager/__init__.py�������������������0000664�0000000�0000000�00000041751�14753064456�0030305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations import logging import os import posixpath import re import yaml from collections.abc import Iterable, Iterator from material.plugins.tags.config import TagsConfig from material.plugins.tags.renderer import Renderer from material.plugins.tags.structure.listing import Listing, ListingConfig from material.plugins.tags.structure.listing.tree import ListingTree from material.plugins.tags.structure.mapping import Mapping from material.plugins.tags.structure.tag import Tag from material.plugins.tags.structure.tag.reference import TagReference from mkdocs.exceptions import PluginError from mkdocs.structure.pages import Page from mkdocs.structure.nav import Link from re import Match from urllib.parse import urlparse from . import toc # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- class ListingManager: """ A listing manager. The listing manager collects all listings from the Markdown of pages, then populates them with mappings, and renders them. Furthermore, the listing manager allows to obtain tag references for a given mapping, which are tags annotated with links to listings. """ def __init__(self, config: TagsConfig, depth: int = 6): """ Initialize the listing manager. Arguments: config: The configuration. """ self.config = config self.data = set() self.depth = depth def __repr__(self) -> str: """ Return a printable representation of the listing manager. Returns: Printable representation. """ return _print(self) def __iter__(self) -> Iterator[Listing]: """ Iterate over listings. Yields: The current listing. """ return iter(self.data) def __and__(self, mapping: Mapping) -> Iterator[TagReference]: """ Iterate over the tag references for the mapping. Arguments: mapping: The mapping. Yields: The current tag reference. """ assert isinstance(mapping, Mapping) # Iterate over sorted tags and associate tags with listings - note that # we sort the listings for the mapping by closeness, so that the first # listing in the list is the closest one to the page or link the # mapping is associated with listings = self.closest(mapping) for tag in self._sort_tags(mapping.tags): ref = TagReference(tag) # Iterate over listings and add links for listing in listings: if tag in listing & mapping: value = listing.page.url or "." # Compute URL for link - make sure to remove fragments, as # they may be present in links extracted from remote tags. # Additionally, we need to fallback to `.` if the URL is # empty (= homepage) or the links will be incorrect. url = urlparse(value, allow_fragments = False) url = url._replace(fragment = self._slugify(tag)) # Add listing link to tag reference ref.links.append( Link(listing.page.title, url.geturl()) ) # Yield tag reference yield ref # ------------------------------------------------------------------------- config: TagsConfig """ The configuration. """ data: set[Listing] """ The listings. """ depth: int """ Table of contents maximum depth. """ # ------------------------------------------------------------------------- def add(self, page: Page, markdown: str) -> str: """ Add page. This method is called by the tags plugin to retrieve all listings of a page. It will parse the page's Markdown and add injections points into the page's Markdown, which will be replaced by the renderer with the actual listing later on. Note that this method is intended to be called with the page during the `on_page_markdown` event, as it modifies the page's Markdown. Moreover, the Markdown must be explicitly passed, as we could otherwise run into inconsistencies when other plugins modify the Markdown. Arguments: page: The page. markdown: The page's Markdown. Returns: The page's Markdown with injection points. """ assert isinstance(markdown, str) # Replace callback def replace(match: Match) -> str: config = self._resolve(page, match.group(2)) # Compute listing identifier - as the author might include multiple # listings on a single page, we must make sure that the identifier # is unique, so we use the page source file path and the position # of the match within the page as an identifier. id = f"{page.file.src_uri}:{match.start()}-{match.end()}" self.data.add(Listing(page, id, config)) # Replace directive with hx headline if listings are enabled, or # remove the listing entirely from the page and table of contents if self.config.listings: return "#" * self.depth + f" {id}/name {{ #{id}/slug }}" else: return # Hack: replace directive with an hx headline to mark the injection # point for the anchor links we will generate after parsing all pages. # By using an hx headline, we can make sure that the injection point # will always be a child of the preceding headline. directive = self.config.listings_directive return re.sub( r"(<!--\s*?{directive}(.*?)\s*-->)".format(directive = directive), replace, markdown, flags = re.I | re.M | re.S ) def closest(self, mapping: Mapping) -> list[Listing]: """ Get listings for the mapping ordered by closeness. Listings are sorted by closeness to the given page, i.e. the number of common path components. This is useful for hierarchical listings, where the tags of a page point to the closest listing featuring the tag, with the option to show all listings featuring that tag. Arguments: mapping: The mapping. Returns: The listings. """ # Retrieve listings featuring tags of mapping listings: list[Listing] = [] for listing in self.data: if any(listing & mapping): listings.append(listing) # Ranking callback def rank(listing: Listing) -> int: path = posixpath.commonpath([mapping.item.url, listing.page.url]) return len(path) # Return listings ordered by closeness to mapping return sorted(listings, key = rank, reverse = True) def populate( self, listing: Listing, mappings: Iterable[Mapping], renderer: Renderer ) -> None: """ Populate listing with tags featured in the mappings. Arguments: listing: The listing. mappings: The mappings. renderer: The renderer. """ page = listing.page assert isinstance(page.content, str) # Add mappings to listing for mapping in mappings: listing.add(mapping) # Sort listings and tags - we can only do this after all mappings have # been added to the listing, because the tags inside the mappings do # not have a proper order yet, and we need to order them as specified # in the listing configuration. listing.tags = self._sort_listing_tags(listing.tags) # Render tags for listing headlines - the listing configuration allows # tp specify a custom layout, so we resolve the template for tags here name = posixpath.join(listing.config.layout, "tag.html") for tree in listing: tree.content = renderer.render(page, name, tag = tree.tag) # Sort mappings and subtrees of listing tree tree.mappings = self._sort_listing(tree.mappings) tree.children = self._sort_listing_tags(tree.children) # Replace callback def replace(match: Match) -> str: hx = match.group() # Populate listing with anchor links to tags anchors = toc.populate(listing, self._slugify) if not anchors: return # Get reference to first tag in listing head = next(iter(anchors.values())) # Replace hx with actual level of listing and listing ids with # placeholders to create a format string for the headline hx = re.sub( r"<(/?)h{}\b".format(self.depth), r"<\g<1>h{}".format(head.level), hx ) hx = re.sub( r"{id}\/(\w+)".format(id = listing.id), r"{\1}", hx, flags = re.I | re.M ) # Render listing headlines for tree in listing: tree.content = hx.format( slug = anchors[tree.tag].id, name = tree.content ) # Render listing - the listing configuration allows to specify a # custom layout, so we resolve the template for listings here name = posixpath.join(listing.config.layout, "listing.html") return "\n".join([ renderer.render(page, name, listing = tree) for tree in listing.tags.values() ]) # Hack: replace hx headlines (injection points) we added when parsing # the page's Markdown with the actual listing content. Additionally, # replace anchor links in the table of contents with the hierarchy # generated from mapping over the listing, or remove them. page.content = re.sub( r"<h{x}[^>]+{id}.*?</h{x}>".format( id = f"{listing.id}/slug", x = self.depth ), replace, page.content, flags = re.I | re.M ) def populate_all( self, mappings: Iterable[Mapping], renderer: Renderer ) -> None: """ Populate all listings with tags featured in the mappings. This method is called by the tags plugin to populate all listings with the given mappings. It will also remove the injection points from the page's Markdown. Note that this method is intended to be called during the `on_env` event, after all pages have been rendered. Arguments: mappings: The mappings. renderer: The renderer. """ for listing in self.data: self.populate(listing, mappings, renderer) # ------------------------------------------------------------------------- def _resolve(self, page: Page, args: str) -> ListingConfig: """ Resolve listing configuration. Arguments: page: The page the listing in embedded in. args: The arguments, as parsed from Markdown. Returns: The listing configuration. """ data = yaml.safe_load(args) path = page.file.abs_src_path # Try to resolve available listing configuration if isinstance(data, str): config = self.config.listings_map.get(data, None) if not config: keys = ", ".join(self.config.listings_map.keys()) raise PluginError( f"Couldn't find listing configuration: {data}. Available " f"configurations: {keys}" ) # Otherwise, handle inline listing configuration else: config = ListingConfig(config_file_path = path) config.load_dict(data or {}) # Validate listing configuration errors, warnings = config.validate() for _, w in warnings: path = os.path.relpath(path) log.warning( f"Error reading listing configuration in '{path}':\n" f"{w}" ) for _, e in errors: path = os.path.relpath(path) raise PluginError( f"Error reading listing configuration in '{path}':\n" f"{e}" ) # Inherit layout configuration, unless explicitly set if not isinstance(config.layout, str): config.layout = self.config.listings_layout # Return listing configuration return config # ------------------------------------------------------------------------- def _slugify(self, tag: Tag) -> str: """ Slugify tag. Arguments: tag: The tag. Returns: The slug. """ return self.config.tags_slugify_format.format( slug = self.config.tags_slugify( tag.name, self.config.tags_slugify_separator ) ) # ------------------------------------------------------------------------- def _sort_listing( self, mappings: Iterable[Mapping] ) -> list[Mapping]: """ Sort listing. When sorting a listing, we sort the mappings of the listing, which is why the caller must pass the mappings of the listing. That way, we can keep this implementation to be purely functional, without having to mutate the listing, which makes testing simpler. Arguments: mappings: The mappings. Returns: The sorted mappings. """ return sorted( mappings, key = self.config.listings_sort_by, reverse = self.config.listings_sort_reverse ) def _sort_listing_tags( self, children: dict[Tag, ListingTree] ) -> dict[Tag, ListingTree]: """ Sort listing tags. When sorting a listing's tags, we sort the immediate subtrees of the listing, which is why the caller must pass the children of the listing. That way, we can keep this implementation to be purely functional, without having to mutate the listing. Arguments: children: The listing trees, each of which associated with a tag. Returns: The sorted listing trees. """ return dict(sorted( children.items(), key = lambda item: self.config.listings_tags_sort_by(*item), reverse = self.config.listings_tags_sort_reverse )) def _sort_tags( self, tags: Iterable[Tag] ) -> list[Tag]: """ Sort tags. Arguments: tags: The tags. Returns: The sorted tags. """ return sorted( tags, key = self.config.tags_sort_by, reverse = self.config.tags_sort_reverse ) # ----------------------------------------------------------------------------- # Functions # ----------------------------------------------------------------------------- def _print(manager: ListingManager, indent: int = 0) -> str: """ Return a printable representation of a listing manager. Arguments: manager: The listing manager. indent: The indentation level. Returns: Printable representation. """ lines: list[str] = [] lines.append(" " * indent + f"ListingManager()") # Print listings for listing in manager: lines.append(" " * (indent + 2) + repr(listing)) # Concatenate everything return "\n".join(lines) # ----------------------------------------------------------------------------- # Data # ----------------------------------------------------------------------------- # Set up logging log = logging.getLogger("mkdocs.material.plugins.tags") �����������������������mkdocs-material-9.6.4/material/plugins/tags/structure/listing/manager/toc.py������������������������0000664�0000000�0000000�00000010406�14753064456�0027324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations from material.plugins.tags.structure.listing import Listing from material.plugins.tags.structure.tag import Tag from mkdocs.structure.pages import Page from mkdocs.structure.toc import AnchorLink from typing import Callable # ----------------------------------------------------------------------------- # Typings # ----------------------------------------------------------------------------- Slugify = Callable[[Tag], str] """ Slugify function. Arguments: tag: The tag. Returns: The slugified tag. """ # ----------------------------------------------------------------------------- # Functions # ----------------------------------------------------------------------------- def populate(listing: Listing, slugify: Slugify) -> dict[Tag, AnchorLink]: """ Populate the table of contents of the page the listing is embedded. Arguments: listing: The listing. slugify: Slugify function. Returns: The mapping of tags to anchor links. """ anchors: dict[Tag, AnchorLink] = {} # Find injection point for listing host, at = find(listing) if at == -1: return anchors # Create anchor links for tree in listing: # Iterate over expanded tags for i, tag in enumerate(reversed([*tree.tag])): if tag not in anchors: level = host.level + 1 + i # Create anchor link anchors[tag] = AnchorLink(tag.name, slugify(tag), level) if not tag.parent: continue # Relate anchor link to parent anchors[tag.parent].children.append(anchors[tag]) # Filter top-level anchor links and insert them into the page children = [anchors[tag] for tag in anchors if not tag.parent] host.children[at:at + 1] = children # Return mapping of tags to anchor links return anchors # ----------------------------------------------------------------------------- def find(listing: Listing) -> tuple[AnchorLink | None, int]: """ Find anchor link for the given listing. This function traverses the table of contents of the given page and returns the anchor's parent and index of the anchor with the given identifier. If the anchor is on the root level, and the anchor we're looking for is an injection point, an anchor to host the tags is created and returned. Arguments: lising: The listing. Returns: The anchor and index. """ page = listing.page # Traverse table of contents stack = list(page.toc) while stack: anchor = stack.pop() # Traverse children for i, child in enumerate(anchor.children): if child.id.startswith(listing.id): return anchor, i # Add child to stack stack.append(child) # Check if anchor is on the root level for i, anchor in enumerate(page.toc): if anchor.id.startswith(listing.id): # Create anchor link host = AnchorLink(page.title, page.url, 1) host.children = page.toc.items return host, i # Anchor could not be found return None, -1 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/tags/structure/listing/tree/���������������������������������0000775�0000000�0000000�00000000000�14753064456�0025511�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/tags/structure/listing/tree/__init__.py����������������������0000664�0000000�0000000�00000011344�14753064456�0027625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations from collections.abc import Iterator from functools import total_ordering from material.plugins.tags.structure.mapping import Mapping from material.plugins.tags.structure.tag import Tag # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- @total_ordering class ListingTree: """ A listing tree. This is an internal data structure that is used to render listings. It is also the immediate structure that is passed to the template. """ def __init__(self, tag: Tag): """ Initialize the listing tree. Arguments: tag: The tag. """ self.tag = tag self.content = None self.mappings = [] self.children = {} def __repr__(self) -> str: """ Return a printable representation of the listing tree. Returns: Printable representation. """ return _print(self) def __hash__(self) -> int: """ Return the hash of the listing tree. Returns: The hash. """ return hash(self.tag) def __iter__(self) -> Iterator[ListingTree]: """ Iterate over subtrees of the listing tree. Yields: The current subtree. """ return iter(self.children.values()) def __eq__(self, other: ListingTree) -> bool: """ Check if the listing tree is equal to another listing tree. Arguments: other: The other listing tree to check. Returns: Whether the listing trees are equal. """ assert isinstance(other, ListingTree) return self.tag == other.tag def __lt__(self, other: ListingTree) -> bool: """ Check if the listing tree is less than another listing tree. Arguments: other: The other listing tree to check. Returns: Whether the listing tree is less than the other listing tree. """ assert isinstance(other, ListingTree) return self.tag < other.tag # ------------------------------------------------------------------------- tag: Tag """ The tag. """ content: str | None """ The rendered content of the listing tree. This attribute holds the result of rendering the `tag.html` template, which is the rendered tag as displayed in the listing. It is essential that this is done for all tags (and nested tags) before rendering the tree, as the rendering process of the listing tree relies on this attribute. """ mappings: list[Mapping] """ The mappings associated with the tag. """ children: dict[Tag, ListingTree] """ The subtrees of the listing tree. """ # ----------------------------------------------------------------------------- # Functions # ----------------------------------------------------------------------------- def _print(tree: ListingTree, indent: int = 0) -> str: """ Return a printable representation of a listing tree. Arguments: tree: The listing tree. indent: The indentation level. Returns: Printable representation. """ lines: list[str] = [] lines.append(" " * indent + f"ListingTree({repr(tree.tag)})") # Print mappings for mapping in tree.mappings: lines.append(" " * (indent + 2) + repr(mapping)) # Print subtrees for child in tree.children.values(): lines.append(_print(child, indent + 2)) # Concatenate everything return "\n".join(lines) ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/tags/structure/mapping/��������������������������������������0000775�0000000�0000000�00000000000�14753064456�0024534�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/tags/structure/mapping/__init__.py���������������������������0000664�0000000�0000000�00000006714�14753064456�0026655�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations from collections.abc import Iterable, Iterator from material.plugins.tags.structure.tag import Tag from mkdocs.structure.nav import Link from mkdocs.structure.pages import Page # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- class Mapping: """ A mapping between a page or link and a set of tags. We use this class to store the mapping between a page or link and a set of tags. This is necessary as we don't want to store the tags directly on the page or link object, in order not to clutter the internal data structures of MkDocs, keeping the plugin as unobtrusive as possible. Links are primarily used when integrating with tags from external projects, as we can't construct a page object for them as we do for local files. """ def __init__(self, item: Page | Link, *, tags: Iterable[Tag] | None = None): """ Initialize the mapping. Tags can be passed upon initialization, but can also be added later on using the `add` or `update` method. of the `tags` attribute. Arguments: item: The page or link. tags: The tags associated with the page or link. """ self.item = item self.tags = set(tags or []) def __repr__(self) -> str: """ Return a printable representation of the mapping. Returns: Printable representation. """ return f"Mapping({repr(self.item)}, tags={self.tags})" def __and__(self, tags: set[Tag]) -> Iterator[Tag]: """ Iterate over the tags featured in the mapping. This method expands each tag in the mapping and checks whether it is equal to one of the tags in the given set. If so, the tag is yielded. Arguments: tags: The set of tags. Yields: The current tag. """ assert isinstance(tags, set) # Iterate over expanded tags for tag in self.tags: if set(tag) & tags: yield tag # ------------------------------------------------------------------------- item: Page | Link """ The page or link. """ tags: set[Tag] """ The tags associated with the page or link. """ ����������������������������������������������������mkdocs-material-9.6.4/material/plugins/tags/structure/mapping/manager/������������������������������0000775�0000000�0000000�00000000000�14753064456�0026146�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/tags/structure/mapping/manager/__init__.py�������������������0000664�0000000�0000000�00000012526�14753064456�0030265�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations from collections.abc import Iterator from material.plugins.tags.config import TagsConfig from material.plugins.tags.structure.mapping import Mapping from material.plugins.tags.structure.tag.options import TagSet from mkdocs.structure.pages import Page # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- class MappingManager: """ A mapping manager. The mapping manager is responsible for collecting all tags from the front matter of pages, and for building a tag structure from them, nothing more. """ def __init__(self, config: TagsConfig): """ Initialize the mapping manager. Arguments: config: The configuration. """ self.config = config self.format = TagSet(allowed = self.config.tags_allowed) self.data = {} def __repr__(self) -> str: """ Return a printable representation of the mapping manager. Returns: Printable representation. """ return _print(self) def __iter__(self) -> Iterator[Mapping]: """ Iterate over mappings. Yields: The current mapping. """ return iter(self.data.values()) # ------------------------------------------------------------------------- config: TagsConfig """ The configuration. """ format: TagSet """ The mapping format. This is the validator that is used to check if tags are valid, including the tags in the front matter of pages, as well as the tags defined in the configuration. Numbers and booleans are always converted to strings before creating tags, and the allow list is checked as well, if given. """ data: dict[str, Mapping] """ The mappings. """ # ------------------------------------------------------------------------- def add(self, page: Page, markdown: str) -> Mapping | None: """ Add page. This method is called by the tags plugin to retrieve all tags of a page. It extracts all tags from the front matter of the given page, and adds them to the mapping. If no tags are found, no mapping is created and nothing is returned. Note that this method is intended to be called with the page during the `on_page_markdown` event, as it reads the front matter of a page. Also, the Markdown must be explicitly passed, as we could otherwise run into inconsistencies when other plugins modify the Markdown. Arguments: page: The page. markdown: The page's Markdown. Returns: The mapping or nothing. """ assert isinstance(markdown, str) # Return nothing if page doesn't have tags tags = self.config.tags_name_property if not page.meta.get(tags, []): return # Create mapping and associate with page mapping = Mapping(page) self.data[page.url] = mapping # Retrieve and validate tags, and add to mapping for tag in self.format.validate(page.meta[tags]): mapping.tags.add(tag) # Return mapping return mapping def get(self, page: Page) -> Mapping | None: """ Get mapping for page, if any. Arguments: page: The page. Returns: The mapping or nothing. """ if page.url in self.data: return self.data[page.url] # ----------------------------------------------------------------------------- # Functions # ----------------------------------------------------------------------------- def _print(manager: MappingManager, indent: int = 0) -> str: """ Return a printable representation of a mapping manager. Arguments: manager: The mapping manager. indent: The indentation level. Returns: Printable representation. """ lines: list[str] = [] lines.append(" " * indent + f"MappingManager()") # Print mappings for mapping in manager: lines.append(" " * (indent + 2) + repr(mapping)) # Concatenate everything return "\n".join(lines) ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/tags/structure/mapping/storage/������������������������������0000775�0000000�0000000�00000000000�14753064456�0026200�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/tags/structure/mapping/storage/__init__.py�������������������0000664�0000000�0000000�00000014407�14753064456�0030317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations import json import os from collections.abc import Iterable from material.plugins.tags.config import TagsConfig from material.plugins.tags.structure.mapping import Mapping from material.plugins.tags.structure.tag import Tag from mkdocs.config.base import ValidationError from mkdocs.structure.nav import Link from mkdocs.structure.pages import Page # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- class MappingStorage: """ A mapping storage. The mapping storage allows to save and load mappings to and from a JSON file, which allows for sharing tags across multiple MkDocs projects. """ def __init__(self, config: TagsConfig): """ Initialize the mapping storage. Arguments: config: The configuration. """ self.config = config # ------------------------------------------------------------------------- config: TagsConfig """ The configuration. """ # ------------------------------------------------------------------------- def save(self, path: str, mappings: Iterable[Mapping]) -> None: """ Save mappings to file. Arguments: path: The file path. mappings: The mappings. """ path = os.path.abspath(path) os.makedirs(os.path.dirname(path), exist_ok = True) # Save serialized mappings to file with open(path, "w", encoding = "utf-8") as f: data = [_mapping_to_json(mapping) for mapping in mappings] json.dump(dict(mappings = data), f) def load(self, path: str) -> Iterable[Mapping]: """ Load mappings from file. Arguments: path: The file path. Yields: The current mapping. """ with open(path, "r", encoding = "utf-8") as f: data = json.load(f) # Ensure root dictionary if not isinstance(data, dict): raise ValidationError( f"Expected dictionary, but received: {data}" ) # Ensure mappings are iterable mappings = data.get("mappings") if not isinstance(mappings, list): raise ValidationError( f"Expected list, but received: {mappings}" ) # Create and yield mappings for mapping in mappings: yield _mapping_from_json(mapping) # ----------------------------------------------------------------------------- # Functions # ----------------------------------------------------------------------------- def _mapping_to_json(mapping: Mapping) -> dict: """ Return a serializable representation of a mapping. Arguments: mapping: The mapping. Returns: Serializable representation. """ return dict( item = _mapping_item_to_json(mapping.item), tags = [str(tag) for tag in sorted(mapping.tags)] ) def _mapping_item_to_json(item: Page | Link) -> dict: """ Return a serializable representation of a page or link. Arguments: item: The page or link. Returns: Serializable representation. """ return dict(url = item.url, title = item.title) # ------------------------------------------------------------------------- def _mapping_from_json(data: object) -> Mapping: """ Return a mapping from a serialized representation. Arguments: data: Serialized representation. Returns: The mapping. """ if not isinstance(data, dict): raise ValidationError( f"Expected dictionary, but received: {data}" ) # Ensure tags are iterable tags = data.get("tags") if not isinstance(tags, list): raise ValidationError( f"Expected list, but received: {tags}" ) # Ensure tags are valid for tag in tags: if not isinstance(tag, str): raise ValidationError( f"Expected string, but received: {tag}" ) # Create and return mapping return Mapping( _mapping_item_from_json(data.get("item")), tags = [Tag(tag) for tag in tags] ) def _mapping_item_from_json(data: object) -> Link: """ Return a link from a serialized representation. When loading a mapping, we must always return a link, as the sources of pages might not be available because we're building another project. Arguments: data: Serialized representation. Returns: The link. """ if not isinstance(data, dict): raise ValidationError( f"Expected dictionary, but received: {data}" ) # Ensure item has URL url = data.get("url") if not isinstance(url, str): raise ValidationError( f"Expected string, but received: {url}" ) # Ensure item has title title = data.get("title") if not isinstance(title, str): raise ValidationError( f"Expected string, but received: {title}" ) # Create and return item return Link(title, url) ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/tags/structure/tag/������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0023654�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/tags/structure/tag/__init__.py�������������������������������0000664�0000000�0000000�00000010047�14753064456�0025767�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations from collections.abc import Iterator from functools import total_ordering # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- @total_ordering class Tag: """ A tag. """ def __init__( self, name: str, *, parent: Tag | None = None, hidden = False ): """ Initialize the tag. Arguments: name: The tag name. parent: The parent tag. hidden: Whether the tag is hidden. """ self.name = name self.parent = parent self.hidden = hidden def __repr__(self) -> str: """ Return a printable representation of the tag. Returns: Printable representation. """ return f"Tag('{self.name}')" def __str__(self) -> str: """ Return a string representation of the tag. Returns: String representation. """ return self.name def __hash__(self) -> int: """ Return the hash of the tag. Returns: The hash. """ return hash(self.name) def __iter__(self) -> Iterator[Tag]: """ Iterate over the tag and its parent tags. Note that the first tag returned is the tag itself, followed by its parent tags in ascending order. This allows to iterate over the tag and its parents in a single loop, which is useful for generating tree or breadcrumb structures. Yields: The current tag. """ tag = self while tag: yield tag tag = tag.parent def __contains__(self, other: Tag) -> bool: """ Check if the tag contains another tag. Arguments: other: The other tag to check. Returns: Whether the tag contains the other tag. """ assert isinstance(other, Tag) return any(tag == other for tag in self) def __eq__(self, other: Tag) -> bool: """ Check if the tag is equal to another tag. Arguments: other: The other tag to check. Returns: Whether the tags are equal. """ assert isinstance(other, Tag) return self.name == other.name def __lt__(self, other: Tag) -> bool: """ Check if the tag is less than another tag. Arguments: other: The other tag to check. Returns: Whether the tag is less than the other tag. """ assert isinstance(other, Tag) return self.name < other.name # ------------------------------------------------------------------------- name: str """ The tag name. """ parent: Tag | None """ The parent tag. """ hidden: bool """ Whether the tag is hidden. """ �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/tags/structure/tag/options.py��������������������������������0000664�0000000�0000000�00000007514�14753064456�0025730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations from collections.abc import Iterable from mkdocs.config.base import BaseConfigOption, ValidationError from typing import Set from . import Tag # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- class TagSet(BaseConfigOption[Set[Tag]]): """ Setting for a set of tags. This setting describes a set of tags, and is used to validate the actual tags as defined in the front matter of pages, as well as for filters that are used to include or exclude pages from a listing and to check if a tag is allowed to be used. """ def __init__(self, *, allowed: set[Tag] = set()): """ Initialize the setting. Arguments: allowed: The tags allowed to be used. """ super().__init__() self.allowed = allowed # ------------------------------------------------------------------------- allowed: set[Tag] """ The tags allowed to be used. """ # ------------------------------------------------------------------------- def run_validation(self, value: object) -> set[Tag]: """ Validate list of tags. If the value is `None`, an empty set is returned. Otherwise, the value is expected to be a list of tags, which is converted to a set of tags. This means that tags are automatically deduplicated. Note that tags are not expanded here, as the set is intended to be checked exactly. Arguments: value: The value to validate. Returns: A set of tags. """ if value is None: return set() # Ensure tags are iterable if not isinstance(value, Iterable) or isinstance(value, str): raise ValidationError( f"Expected iterable tags, but received: {value}" ) # Ensure tags are valid tags: set[Tag] = set() for index, tag in enumerate(value): if not isinstance(tag, (str, int, float, bool)): raise ValidationError( f"Expected a {str}, {int}, {float} or {bool} " f"but received: {type(tag)} at index {index}" ) # Coerce tag to string and add to set tags.add(Tag(str(tag))) # Ensure tags are in allow list, if any if self.allowed: invalid = tags.difference(self.allowed) if invalid: raise ValidationError( "Tags not in allow list: " + ",".join([tag.name for tag in invalid]) ) # Return set of tags return tags ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/tags/structure/tag/reference/��������������������������������0000775�0000000�0000000�00000000000�14753064456�0025612�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/plugins/tags/structure/tag/reference/__init__.py���������������������0000664�0000000�0000000�00000005415�14753064456�0027730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations from material.plugins.tags.structure.tag import Tag from mkdocs.structure.nav import Link # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- class TagReference(Tag): """ A tag reference. Tag references are a subclass of tags that can have associated links, which is primarily used for linking tags to listings. The first link is used as the canonical link, which by default points to the closest listing that features the tag. This is considered to be the canonical listing. """ def __init__(self, tag: Tag, links: list[Link] | None = None): """ Initialize the tag reference. Arguments: tag: The tag. links: The links associated with the tag. """ super().__init__(**vars(tag)) self.links = links or [] def __repr__(self) -> str: """ Return a printable representation of the tag reference. Returns: Printable representation. """ return f"TagReference('{self.name}')" # ------------------------------------------------------------------------- links: list[Link] """ The links associated with the tag. """ # ------------------------------------------------------------------------- @property def url(self) -> str | None: """ Return the URL of the tag reference. Returns: The URL of the tag reference. """ if self.links: return self.links[0].url else: return None ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/�����������������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0020420�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/����������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0021611�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/����������������������������������������0000775�0000000�0000000�00000000000�14753064456�0024140�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/LICENSE.txt�����������������������������0000664�0000000�0000000�00000016403�14753064456�0025767�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Fonticons, Inc. (https://fontawesome.com) -------------------------------------------------------------------------------- Font Awesome Free License Font Awesome Free is free, open source, and GPL friendly. You can use it for commercial projects, open source projects, or really almost whatever you want. Full Font Awesome Free license: https://fontawesome.com/license/free. -------------------------------------------------------------------------------- # Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) The Font Awesome Free download is licensed under a Creative Commons Attribution 4.0 International License and applies to all icons packaged as SVG and JS file types. -------------------------------------------------------------------------------- # Fonts: SIL OFL 1.1 License In the Font Awesome Free download, the SIL OFL license applies to all icons packaged as web and desktop font files. Copyright (c) 2024 Fonticons, Inc. (https://fontawesome.com) with Reserved Font Name: "Font Awesome". This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting — in part or in whole — any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. -------------------------------------------------------------------------------- # Code: MIT License (https://opensource.org/licenses/MIT) In the Font Awesome Free download, the MIT license applies to all non-font and non-icon files. Copyright 2024 Fonticons, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- # Attribution Attribution is required by MIT, SIL OFL, and CC BY licenses. Downloaded Font Awesome Free files already contain embedded comments with sufficient attribution, so you shouldn't need to do anything additional when using these files normally. We've kept attribution comments terse, so we ask that you do not actively work to remove them from files, especially code. They're a great way for folks to learn about Font Awesome. -------------------------------------------------------------------------------- # Brand Icons All brand icons are trademarks of their respective owners. The use of these trademarks does not indicate endorsement of the trademark holder by Font Awesome, nor vice versa. **Please do not use brand logos for any purpose except to represent the company, product, or service to which they refer.** �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/���������������������������������0000775�0000000�0000000�00000000000�14753064456�0025411�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/42-group.svg���������������������0000664�0000000�0000000�00000001015�14753064456�0027506�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 96v320a160.02 160.02 0 0 0 113.138-46.862 160.019 160.019 0 0 0 34.683-174.367 160 160 0 0 0-86.591-86.592A160 160 0 0 0 320 96M0 256l160.002 160 160.001-160L160.002 96zm480 0a160 160 0 0 0 160 160V96a160.002 160.002 0 0 0-160 160"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/500px.svg������������������������0000664�0000000�0000000�00000002653�14753064456�0027014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M103.3 344.3c-6.5-14.2-6.9-18.3 7.4-23.1 25.6-8 8 9.2 43.2 49.2h.3v-93.9c1.2-50.2 44-92.2 97.7-92.2 53.9 0 97.7 43.5 97.7 96.8 0 63.4-60.8 113.2-128.5 93.3-10.5-4.2-2.1-31.7 8.5-28.6 53 0 89.4-10.1 89.4-64.4 0-61-77.1-89.6-116.9-44.6-23.5 26.4-17.6 42.1-17.6 157.6 50.7 31 118.3 22 160.4-20.1 24.8-24.8 38.5-58 38.5-93 0-35.2-13.8-68.2-38.8-93.3-24.8-24.8-57.8-38.5-93.3-38.5s-68.8 13.8-93.5 38.5c-.3.3-16 16.5-21.2 23.9l-.5.6c-3.3 4.7-6.3 9.1-20.1 6.1-6.9-1.7-14.3-5.8-14.3-11.8V20c0-5 3.9-10.5 10.5-10.5h241.3c8.3 0 8.3 11.6 8.3 15.1 0 3.9 0 15.1-8.3 15.1H130.3v132.9h.3c104.2-109.8 282.8-36 282.8 108.9 0 178.1-244.8 220.3-310.1 62.8m63.3-260.8c-.5 4.2 4.6 24.5 14.6 20.6C306 56.6 384 144.5 390.6 144.5c4.8 0 22.8-15.3 14.3-22.8-93.2-89-234.5-57-238.3-38.2M393 414.7C283 524.6 94 475.5 61 310.5c0-12.2-30.4-7.4-28.9 3.3 24 173.4 246 256.9 381.6 121.3 6.9-7.8-12.6-28.4-20.7-20.4M213.6 306.6c0 4 4.3 7.3 5.5 8.5 3 3 6.1 4.4 8.5 4.4 3.8 0 2.6.2 22.3-19.5 19.6 19.3 19.1 19.5 22.3 19.5 5.4 0 18.5-10.4 10.7-18.2L265.6 284l18.2-18.2c6.3-6.8-10.1-21.8-16.2-15.7L249.7 268c-18.6-18.8-18.4-19.5-21.5-19.5-5 0-18 11.7-12.4 17.3L234 284c-18.1 17.9-20.4 19.2-20.4 22.6"/></svg>�������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/accessible-icon.svg��������������0000664�0000000�0000000�00000001675�14753064456�0031166�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M423.9 255.8 411 413.1c-3.3 40.7-63.9 35.1-60.6-4.9l10-122.5-41.1 2.3c10.1 20.7 15.8 43.9 15.8 68.5 0 41.2-16.1 78.7-42.3 106.5l-39.3-39.3c57.9-63.7 13.1-167.2-74-167.2-25.9 0-49.5 9.9-67.2 26L73 243.2c22-20.7 50.1-35.1 81.4-40.2l75.3-85.7-42.6-24.8-51.6 46c-30 26.8-70.6-18.5-40.5-45.4l68-60.7c9.8-8.8 24.1-10.2 35.5-3.6 0 0 139.3 80.9 139.5 81.1 16.2 10.1 20.7 36 6.1 52.6L285.7 229l106.1-5.9c18.5-1.1 33.6 14.4 32.1 32.7m-64.9-154c28.1 0 50.9-22.8 50.9-50.9S387.1 0 359 0s-50.9 22.8-50.9 50.9 22.8 50.9 50.9 50.9M179.6 456.5c-80.6 0-127.4-90.6-82.7-156.1l-39.7-39.7C36.4 287 24 320.3 24 356.4c0 130.7 150.7 201.4 251.4 122.5l-39.7-39.7c-16 10.9-35.3 17.3-56.1 17.3"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/accusoft.svg���������������������0000664�0000000�0000000�00000002043�14753064456�0027740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M322.1 252v-1l-51.2-65.8s-12 1.6-25 15.1c-9 9.3-242.1 239.1-243.4 240.9-7 10 1.6 6.8 15.7 1.7.8 0 114.5-36.6 114.5-36.6.5-.6-.1-.1.6-.6-.4-5.1-.8-26.2-1-27.7-.6-5.2 2.2-6.9 7-8.9l92.6-33.8c.6-.8 88.5-81.7 90.2-83.3m160.1 120.1c13.3 16.1 20.7 13.3 30.8 9.3 3.2-1.2 115.4-47.6 117.8-48.9 8-4.3-1.7-16.7-7.2-23.4-2.1-2.5-205.1-245.6-207.2-248.3-9.7-12.2-14.3-12.9-38.4-12.8-10.2 0-106.8.5-116.5.6-19.2.1-32.9-.3-19.2 16.9C250 75 476.5 365.2 482.2 372.1m152.7 1.6c-2.3-.3-24.6-4.7-38-7.2 0 0-115 50.4-117.5 51.6-16 7.3-26.9-3.2-36.7-14.6l-57.1-74c-5.4-.9-60.4-9.6-65.3-9.3-3.1.2-9.6.8-14.4 2.9-4.9 2.1-145.2 52.8-150.2 54.7-5.1 2-11.4 3.6-11.1 7.6.2 2.5 2 2.6 4.6 3.5 2.7.8 300.9 67.6 308 69.1 15.6 3.3 38.5 10.5 53.6 1.7 2.1-1.2 123.8-76.4 125.8-77.8 5.4-4 4.3-6.8-1.7-8.2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/adn.svg��������������������������0000664�0000000�0000000�00000000715�14753064456�0026677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m248 167.5 64.9 98.8H183.1zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248m-99.8 82.7L248 115.5 99.8 338.7h30.4l33.6-51.7h168.6l33.6 51.7z"/></svg>���������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/adversal.svg���������������������0000664�0000000�0000000�00000002746�14753064456�0027744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M482.1 32H28.7C5.8 32 0 37.9 0 60.9v390.2C0 474.4 5.8 480 28.7 480h453.4c24.4 0 29.9-5.2 29.9-29.7V62.2c0-24.6-5.4-30.2-29.9-30.2M178.4 220.3c-27.5-20.2-72.1-8.7-84.2 23.4-4.3 11.1-9.3 9.5-17.5 8.3-9.7-1.5-17.2-3.2-22.5-5.5-28.8-11.4 8.6-55.3 24.9-64.3 41.1-21.4 83.4-22.2 125.3-4.8 40.9 16.8 34.5 59.2 34.5 128.5 2.7 25.8-4.3 58.3 9.3 88.8 1.9 4.4.4 7.9-2.7 10.7-8.4 6.7-39.3 2.2-46.6-7.4-1.9-2.2-1.8-3.6-3.9-6.2-3.6-3.9-7.3-2.2-11.9 1-57.4 36.4-140.3 21.4-147-43.3-3.1-29.3 12.4-57.1 39.6-71 38.2-19.5 112.2-11.8 114-30.9 1.1-10.2-1.9-20.1-11.3-27.3m286.7 222c0 15.1-11.1 9.9-17.8 9.9H52.4c-7.4 0-18.2 4.8-17.8-10.7.4-13.9 10.5-9.1 17.1-9.1 132.3-.4 264.5-.4 396.8 0 6.8 0 16.6-4.4 16.6 9.9m3.8-340.5v291c0 5.7-.7 13.9-8.1 13.9-12.4-.4-27.5 7.1-36.1-5.6-5.8-8.7-7.8-4-12.4-1.2-53.4 29.7-128.1 7.1-144.4-85.2-6.1-33.4-.7-67.1 15.7-100 11.8-23.9 56.9-76.1 136.1-30.5v-71c0-26.2-.1-26.2 26-26.2 3.1 0 6.6.4 9.7 0 10.1-.8 13.6 4.4 13.6 14.3-.1.2-.1.3-.1.5m-51.5 232.3c-19.5 47.6-72.9 43.3-90 5.2-15.1-33.3-15.5-68.2.4-101.5 16.3-34.1 59.7-35.7 81.5-4.8 20.6 28.8 14.9 84.6 8.1 101.1m-294.8 35.3c-7.5-1.3-33-3.3-33.7-27.8-.4-13.9 7.8-23 19.8-25.8 24.4-5.9 49.3-9.9 73.7-14.7 8.9-2 7.4 4.4 7.8 9.5 1.4 33-26.1 59.2-67.6 58.8"/></svg>��������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/affiliatetheme.svg���������������0000664�0000000�0000000�00000001132�14753064456�0031076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M159.7 237.4C108.4 308.3 43.1 348.2 14 326.6-15.2 304.9 2.8 230 54.2 159.1c51.3-70.9 116.6-110.8 145.7-89.2s11.1 96.6-40.2 167.5m351.2-57.3C437.1 303.5 319 367.8 246.4 323.7c-25-15.2-41.3-41.2-49-73.8-33.6 64.8-92.8 113.8-164.1 133.2 49.8 59.3 124.1 96.9 207 96.9 150 0 271.6-123.1 271.6-274.9.1-8.5-.3-16.8-1-25"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/airbnb.svg�����������������������0000664�0000000�0000000�00000002042�14753064456�0027365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 373.12c-25.24-31.67-40.08-59.43-45-83.18-22.55-88 112.61-88 90.06 0-5.45 24.25-20.29 52-45 83.18zm138.15 73.23c-42.06 18.31-83.67-10.88-119.3-50.47 103.9-130.07 46.11-200-18.85-200-54.92 0-85.16 46.51-73.28 100.5 6.93 29.19 25.23 62.39 54.43 99.5-32.53 36.05-60.55 52.69-85.15 54.92-50 7.43-89.11-41.06-71.3-91.09 15.1-39.16 111.72-231.18 115.87-241.56 15.75-30.07 25.56-57.4 59.38-57.4 32.34 0 43.4 25.94 60.37 59.87 36 70.62 89.35 177.48 114.84 239.09 13.17 33.07-1.37 71.29-37.01 86.64m47-136.12C280.27 35.93 273.13 32 224 32c-45.52 0-64.87 31.67-84.66 72.79C33.18 317.1 22.89 347.19 22 349.81-3.22 419.14 48.74 480 111.63 480c21.71 0 60.61-6.06 112.37-62.4 58.68 63.78 101.26 62.4 112.37 62.4 62.89.05 114.85-60.86 89.61-130.19.02-3.89-16.82-38.9-16.82-39.58z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/algolia.svg����������������������0000664�0000000�0000000�00000001655�14753064456�0027551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 0C116.1 0 2 112.7 0 252.1c-2 141.5 112.9 258.7 254.5 259.5 43.7.3 85.9-10.4 123.3-30.7 3.6-2 4.2-7 1.1-9.7l-24-21.2c-4.9-4.3-11.8-5.5-17.8-3-26.1 11.1-54.5 16.8-83.7 16.4-114.4-1.5-206.9-96.6-205.1-211C50.1 139.5 142.6 48.2 256 48.2h207.7v369L345.9 312.5c-3.8-3.4-9.7-2.7-12.7 1.3-18.9 25-49.7 40.6-83.9 38.2-47.5-3.3-85.9-41.5-89.5-88.9-4.2-56.6 40.6-103.9 96.3-103.9 50.4 0 91.9 38.8 96.2 88 .4 4.4 2.4 8.5 5.7 11.4l30.7 27.2c3.5 3.1 9 1.2 9.9-3.4 2.2-11.8 3-24.2 2.1-36.8-4.9-72-63.3-130-135.4-134.4-82.7-5.1-151.8 59.5-154 140.6-2.1 78.9 62.6 147 141.6 148.7 33 .7 63.6-9.6 88.3-27.6L495 509.4c6.6 5.8 17 1.2 17-7.7V9.7c0-5.4-4.4-9.7-9.7-9.7z"/></svg>�����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/alipay.svg�����������������������0000664�0000000�0000000�00000001671�14753064456�0027416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M377.74 32H70.26C31.41 32 0 63.41 0 102.26v307.48C0 448.59 31.41 480 70.26 480h307.48c38.52 0 69.76-31.08 70.26-69.6-45.96-25.62-110.59-60.34-171.6-88.44-32.07 43.97-84.14 81-148.62 81-70.59 0-93.73-45.3-97.04-76.37-3.97-39.01 14.88-81.5 99.52-81.5 35.38 0 79.35 10.25 127.13 24.96 16.53-30.09 26.45-60.34 26.45-60.34h-178.2v-16.7h92.08v-31.24H88.28v-19.01h109.44V92.34h50.92v50.42h109.44v19.01H248.63v31.24h88.77s-15.21 46.62-38.35 90.92c48.93 16.7 100.01 36.04 148.62 52.74V102.26C447.83 63.57 416.43 32 377.74 32M47.28 322.95c.99 20.17 10.25 53.73 69.93 53.73 52.07 0 92.58-39.68 117.87-72.9-44.63-18.68-84.48-31.41-109.44-31.41-67.45 0-79.35 33.06-78.36 50.58"/></svg>�����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/amazon-pay.svg�������������������0000664�0000000�0000000�00000006771�14753064456�0030221�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M14 325.3c2.3-4.2 5.2-4.9 9.7-2.5 10.4 5.6 20.6 11.4 31.2 16.7a596 596 0 0 0 127.4 46.3 617 617 0 0 0 63.2 11.8 603.3 603.3 0 0 0 95 5.2c17.4-.4 34.8-1.8 52.1-3.8a603.7 603.7 0 0 0 163.3-42.8c2.9-1.2 5.9-2 9.1-1.2 6.7 1.8 9 9 4.1 13.9a70 70 0 0 1-9.6 7.4c-30.7 21.1-64.2 36.4-99.6 47.9a473.3 473.3 0 0 1-75.1 17.6 431 431 0 0 1-53.2 4.8 21 21 0 0 0-2.5.3H308a21 21 0 0 0-2.5-.3c-3.6-.2-7.2-.3-10.7-.4a426 426 0 0 1-50.4-5.3A448.4 448.4 0 0 1 164 420a443.3 443.3 0 0 1-145.6-87c-1.8-1.6-3-3.8-4.4-5.7zM172 65.1l-4.3.6a80.9 80.9 0 0 0-38 15.1c-2.4 1.7-4.6 3.5-7.1 5.4a4.3 4.3 0 0 1-.4-1.4c-.4-2.7-.8-5.5-1.3-8.2-.7-4.6-3-6.6-7.6-6.6h-11.5c-6.9 0-8.2 1.3-8.2 8.2v209.3c0 1 0 2 .1 3 .2 3 2 4.9 4.9 5 7 .1 14.1.1 21.1 0 2.9 0 4.7-2 5-5 .1-1 .1-2 .1-3v-72.4c1.1.9 1.7 1.4 2.2 1.9 17.9 14.9 38.5 19.8 61 15.4 20.4-4 34.6-16.5 43.8-34.9 7-13.9 9.9-28.7 10.3-44.1.5-17.1-1.2-33.9-8.1-49.8-8.5-19.6-22.6-32.5-43.9-36.9-3.2-.7-6.5-1-9.8-1.5-2.8-.1-5.5-.1-8.3-.1M124.6 107a3.48 3.48 0 0 1 1.7-3.3c13.7-9.5 28.8-14.5 45.6-13.2 14.9 1.1 27.1 8.4 33.5 25.9 3.9 10.7 4.9 21.8 4.9 33 0 10.4-.8 20.6-4 30.6-6.8 21.3-22.4 29.4-42.6 28.5-14-.6-26.2-6-37.4-13.9a3.57 3.57 0 0 1-1.7-3.3c.1-14.1 0-28.1 0-42.2s.1-28 0-42.1m205.7-41.9c-1 .1-2 .3-2.9.4a148 148 0 0 0-28.9 4.1c-6.1 1.6-12 3.8-17.9 5.8-3.6 1.2-5.4 3.8-5.3 7.7.1 3.3-.1 6.6 0 9.9.1 4.8 2.1 6.1 6.8 4.9 7.8-2 15.6-4.2 23.5-5.7 12.3-2.3 24.7-3.3 37.2-1.4 6.5 1 12.6 2.9 16.8 8.4 3.7 4.8 5.1 10.5 5.3 16.4.3 8.3.2 16.6.3 24.9a8 8 0 0 1-.2 1.4c-.5-.1-.9 0-1.3-.1a180.6 180.6 0 0 0-32-4.9c-11.3-.6-22.5.1-33.3 3.9-12.9 4.5-23.3 12.3-29.4 24.9-4.7 9.8-5.4 20.2-3.9 30.7 2 14 9 24.8 21.4 31.7 11.9 6.6 24.8 7.4 37.9 5.4 15.1-2.3 28.5-8.7 40.3-18.4a7.4 7.4 0 0 1 1.6-1.1c.6 3.8 1.1 7.4 1.8 11 .6 3.1 2.5 5.1 5.4 5.2 5.4.1 10.9.1 16.3 0a4.84 4.84 0 0 0 4.8-4.7 26 26 0 0 0 .1-2.8v-106a80 80 0 0 0-.9-12.9c-1.9-12.9-7.4-23.5-19-30.4-6.7-4-14.1-6-21.8-7.1-3.6-.5-7.2-.8-10.8-1.3-3.9.1-7.9.1-11.9.1m35 127.7a3.33 3.33 0 0 1-1.5 3c-11.2 8.1-23.5 13.5-37.4 14.9-5.7.6-11.4.4-16.8-1.8a20.08 20.08 0 0 1-12.4-13.3 32.9 32.9 0 0 1-.1-19.4c2.5-8.3 8.4-13 16.4-15.6a61.3 61.3 0 0 1 24.8-2.2c8.4.7 16.6 2.3 25 3.4 1.6.2 2.1 1 2.1 2.6-.1 4.8 0 9.5 0 14.3s-.2 9.4-.1 14.1m259.9 129.4c-1-5-4.8-6.9-9.1-8.3a88.4 88.4 0 0 0-21-3.9 147.3 147.3 0 0 0-39.2 1.9c-14.3 2.7-27.9 7.3-40 15.6a13.8 13.8 0 0 0-3.7 3.5 5.1 5.1 0 0 0-.5 4c.4 1.5 2.1 1.9 3.6 1.8a16 16 0 0 0 2.2-.1c7.8-.8 15.5-1.7 23.3-2.5 11.4-1.1 22.9-1.8 34.3-.9a71.6 71.6 0 0 1 14.4 2.7c5.1 1.4 7.4 5.2 7.6 10.4.4 8-1.4 15.7-3.5 23.3-4.1 15.4-10 30.3-15.8 45.1a17.6 17.6 0 0 0-1 3c-.5 2.9 1.2 4.8 4.1 4.1a10.56 10.56 0 0 0 4.8-2.5 146 146 0 0 0 12.7-13.4c12.8-16.4 20.3-35.3 24.7-55.6.8-3.6 1.4-7.3 2.1-10.9zM493.1 199q-19.35-53.55-38.7-107.2c-2-5.7-4.2-11.3-6.3-16.9-1.1-2.9-3.2-4.8-6.4-4.8-7.6-.1-15.2-.2-22.9-.1-2.5 0-3.7 2-3.2 4.5a43 43 0 0 0 1.9 6.1q29.4 72.75 59.1 145.5c1.7 4.1 2.1 7.6.2 11.8-3.3 7.3-5.9 15-9.3 22.3-3 6.5-8 11.4-15.2 13.3a42.1 42.1 0 0 1-15.4 1.1c-2.5-.2-5-.8-7.5-1-3.4-.2-5.1 1.3-5.2 4.8q-.15 5 0 9.9c.1 5.5 2 8 7.4 8.9a108 108 0 0 0 16.9 2c17.1.4 30.7-6.5 39.5-21.4a131.6 131.6 0 0 0 9.2-18.4q35.55-89.7 70.6-179.6a26.6 26.6 0 0 0 1.6-5.5c.4-2.8-.9-4.4-3.7-4.4-6.6-.1-13.3 0-19.9 0a7.54 7.54 0 0 0-7.7 5.2c-.5 1.4-1.1 2.7-1.6 4.1l-34.8 100c-2.5 7.2-5.1 14.5-7.7 22.2-.4-1.1-.6-1.7-.9-2.4"/></svg>�������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/amazon.svg�����������������������0000664�0000000�0000000�00000001632�14753064456�0027421�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1m0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12m39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/amilia.svg�����������������������0000664�0000000�0000000�00000001456�14753064456�0027374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M240.1 32c-61.9 0-131.5 16.9-184.2 55.4-5.1 3.1-9.1 9.2-7.2 19.4 1.1 5.1 5.1 27.4 10.2 39.6 4.1 10.2 14.2 10.2 20.3 6.1 32.5-22.3 96.5-47.7 152.3-47.7 57.9 0 58.9 28.4 58.9 73.1v38.5C203 227.7 78.2 251 46.7 264.2 11.2 280.5 16.3 357.7 16.3 376s15.2 104 124.9 104c47.8 0 113.7-20.7 153.3-42.1v25.4c0 3 2.1 8.2 6.1 9.1 3.1 1 50.7 2 59.9 2s62.5.3 66.5-.7c4.1-1 5.1-6.1 5.1-9.1V168c-.1-80.3-57.9-136-192-136m50.2 348c-21.4 13.2-48.7 24.4-79.1 24.4-52.8 0-58.9-33.5-59-44.7 0-12.2-3-42.7 18.3-52.9 24.3-13.2 75.1-29.4 119.8-33.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/android.svg����������������������0000664�0000000�0000000�00000001113�14753064456�0027546�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M420.55 301.93a24 24 0 1 1 24-24 24 24 0 0 1-24 24m-265.1 0a24 24 0 1 1 24-24 24 24 0 0 1-24 24m273.7-144.48 47.94-83a10 10 0 1 0-17.27-10l-48.54 84.07a301.25 301.25 0 0 0-246.56 0l-48.54-84.07a10 10 0 1 0-17.27 10l47.94 83C64.53 202.22 8.24 285.55 0 384h576c-8.24-98.45-64.54-181.78-146.85-226.55"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/angellist.svg��������������������0000664�0000000�0000000�00000003051�14753064456�0030113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M347.1 215.4c11.7-32.6 45.4-126.9 45.4-157.1 0-26.6-15.7-48.9-43.7-48.9-44.6 0-84.6 131.7-97.1 163.1C242 144 196.6 0 156.6 0c-31.1 0-45.7 22.9-45.7 51.7 0 35.3 34.2 126.8 46.6 162-6.3-2.3-13.1-4.3-20-4.3-23.4 0-48.3 29.1-48.3 52.6 0 8.9 4.9 21.4 8 29.7-36.9 10-51.1 34.6-51.1 71.7C46 435.6 114.4 512 210.6 512c118 0 191.4-88.6 191.4-202.9 0-43.1-6.9-82-54.9-93.7M311.7 108c4-12.3 21.1-64.3 37.1-64.3 8.6 0 10.9 8.9 10.9 16 0 19.1-38.6 124.6-47.1 148l-34-6zM142.3 48.3c0-11.9 14.5-45.7 46.3 47.1l34.6 100.3c-15.6-1.3-27.7-3-35.4 1.4-10.9-28.8-45.5-119.7-45.5-148.8M140 244c29.3 0 67.1 94.6 67.1 107.4 0 5.1-4.9 11.4-10.6 11.4-20.9 0-76.9-76.9-76.9-97.7.1-7.7 12.7-21.1 20.4-21.1m184.3 186.3c-29.1 32-66.3 48.6-109.7 48.6-59.4 0-106.3-32.6-128.9-88.3-17.1-43.4 3.8-68.3 20.6-68.3 11.4 0 54.3 60.3 54.3 73.1 0 4.9-7.7 8.3-11.7 8.3-16.1 0-22.4-15.5-51.1-51.4-29.7 29.7 20.5 86.9 58.3 86.9 26.1 0 43.1-24.2 38-42 3.7 0 8.3.3 11.7-.6 1.1 27.1 9.1 59.4 41.7 61.7 0-.9 2-7.1 2-7.4 0-17.4-10.6-32.6-10.6-50.3 0-28.3 21.7-55.7 43.7-71.7 8-6 17.7-9.7 27.1-13.1 9.7-3.7 20-8 27.4-15.4-1.1-11.2-5.7-21.1-16.9-21.1-27.7 0-120.6 4-120.6-39.7 0-6.7.1-13.1 17.4-13.1 32.3 0 114.3 8 138.3 29.1 18.1 16.1 24.3 113.2-31 174.7m-98.6-126c9.7 3.1 19.7 4 29.7 6-7.4 5.4-14 12-20.3 19.1-2.8-8.5-6.2-16.8-9.4-25.1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/angrycreative.svg����������������0000664�0000000�0000000�00000004026�14753064456�0030777�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m640 238.2-3.2 28.2-34.5 2.3-2 18.1 34.5-2.3-3.2 28.2-34.4 2.2-2.3 20.1 34.4-2.2-3 26.1-64.7 4.1 12.7-113.2L527 365.2l-31.9 2-23.8-117.8 30.3-2 13.6 79.4 31.7-82.4zM426.8 371.5l28.3-1.8L468 249.6l-28.4 1.9zM162 388.1l-19.4-36-3.5 37.4-28.2 1.7 2.7-29.1c-11 18-32 34.3-56.9 35.8C23.9 399.9-3 377 .3 339.7c2.6-29.3 26.7-62.8 67.5-65.4 37.7-2.4 47.6 23.2 51.3 28.8l2.8-30.8 38.9-2.5c20.1-1.3 38.7 3.7 42.5 23.7l2.6-26.6 64.8-4.2-2.7 27.9-36.4 2.4-1.7 17.9 36.4-2.3-2.7 27.9-36.4 2.3-1.9 19.9 36.3-2.3-2.1 20.8 55-117.2 23.8-1.6L370.4 369l8.9-85.6-22.3 1.4 2.9-27.9 75-4.9-3 28-24.3 1.6-9.7 91.9-58 3.7-4.3-15.6-39.4 2.5-8 16.3zm-44.3-70.2-26.4 1.7C84.6 307.2 76.9 303 65 303.8c-19 1.2-33.3 17.5-34.6 33.3-1.4 16 7.3 32.5 28.7 31.2 12.8-.8 21.3-8.6 28.9-18.9l27-1.7zm56.1-7.7c1.2-12.9-7.6-13.6-26.1-12.4l-2.7 28.5c14.2-.9 27.5-2.1 28.8-16.1m21.1 70.8 5.8-60c-5 13.5-14.7 21.1-27.9 26.6zm135.4-45-7.9-37.8-15.8 39.3zm-170.1-74.6-4.3-17.5-39.6 2.6-8.1 18.2-31.9 2.1 57-121.9 23.9-1.6 30.7 102 9.9-104.7 27-1.8 37.8 63.6 6.5-66.6 28.5-1.9-4 41.2c7.4-13.5 22.9-44.7 63.6-47.5 40.5-2.8 52.4 29.3 53.4 30.3l3.3-32 39.3-2.7c12.7-.9 27.8.3 36.3 9.7l-4.4-11.9 32.2-2.2 12.9 43.2 23-45.7 31-2.2-43.6 78.4-4.8 44.3-28.4 1.9 4.8-44.3-15.8-43c1 22.3-9.2 40.1-32 49.6l25.2 38.8-36.4 2.4-19.2-36.8-4 38.3-28.4 1.9 3.3-31.5c-6.7 9.3-19.7 35.4-59.6 38-26.2 1.7-45.6-10.3-55.4-39.2l-4 40.3-25 1.6-37.6-63.3-6.3 66.2zm276.6-82.1c10.2-.7 17.5-2.1 21.6-4.3 4.5-2.4 7-6.4 7.6-12.1.6-5.3-.6-8.8-3.4-10.4-3.6-2.1-10.6-2.8-22.9-2zM327.7 214c5.6 5.9 12.7 8.5 21.3 7.9 4.7-.3 9.1-1.8 13.3-4.1 5.5-3 10.6-8 15.1-14.3l-34.2 2.3 2.4-23.9 63.1-4.3 1.2-12-31.2 2.1c-4.1-3.7-7.8-6.6-11.1-8.1-4-1.7-8.1-2.8-12.2-2.5-8 .5-15.3 3.6-22 9.2-7.7 6.4-12 14.5-12.9 24.4-1.1 9.6 1.4 17.3 7.2 23.3m-201.3 8.2 23.8-1.6-8.3-37.6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/angular.svg����������������������0000664�0000000�0000000�00000000667�14753064456�0027574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M185.7 268.1h76.2l-38.1-91.6zM223.8 32 16 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7zM354 373.8h-48.6l-26.2-65.4H168.6l-26.2 65.4H93.7L223.8 81.5z"/></svg>�������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/app-store-ios.svg����������������0000664�0000000�0000000�00000001624�14753064456�0030637�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48M127 384.5c-5.5 9.6-17.8 12.8-27.3 7.3-9.6-5.5-12.8-17.8-7.3-27.3l14.3-24.7q24.15-7.35 39.6 11.4zm138.9-53.9H84c-11 0-20-9-20-20s9-20 20-20h51l65.4-113.2-20.5-35.4c-5.5-9.6-2.2-21.8 7.3-27.3 9.6-5.5 21.8-2.2 27.3 7.3l8.9 15.4 8.9-15.4c5.5-9.6 17.8-12.8 27.3-7.3 9.6 5.5 12.8 17.8 7.3 27.3l-85.8 148.6h62.1c20.2 0 31.5 23.7 22.7 40m98.1 0h-29l19.6 33.9c5.5 9.6 2.2 21.8-7.3 27.3-9.6 5.5-21.8 2.2-27.3-7.3-32.9-56.9-57.5-99.7-74-128.1-16.7-29-4.8-58 7.1-67.8 13.1 22.7 32.7 56.7 58.9 102h52c11 0 20 9 20 20 0 11.1-9 20-20 20"/></svg>������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/app-store.svg��������������������0000664�0000000�0000000�00000002002�14753064456�0030036�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m255.9 120.9 9.1-15.7c5.6-9.8 18.1-13.1 27.9-7.5s13.1 18.1 7.5 27.9l-87.5 151.5h63.3c20.5 0 32 24.1 23.1 40.8H113.8c-11.3 0-20.4-9.1-20.4-20.4s9.1-20.4 20.4-20.4h52l66.6-115.4-20.8-36.1c-5.6-9.8-2.3-22.2 7.5-27.9 9.8-5.6 22.2-2.3 27.9 7.5zm-78.7 218-19.6 34c-5.6 9.8-18.1 13.1-27.9 7.5s-13.1-18.1-7.5-27.9l14.6-25.2c16.4-5.1 29.8-1.2 40.4 11.6m168.9-61.7h53.1c11.3 0 20.4 9.1 20.4 20.4s-9.1 20.4-20.4 20.4h-29.5l19.9 34.5c5.6 9.8 2.3 22.2-7.5 27.9-9.8 5.6-22.2 2.3-27.9-7.5-33.5-58.1-58.7-101.6-75.4-130.6-17.1-29.5-4.9-59.1 7.2-69.1 13.4 23 33.4 57.7 60.1 104M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8m216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/apper.svg������������������������0000664�0000000�0000000�00000003604�14753064456�0027244�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M42.1 239.1c22.2 0 29 2.8 33.5 14.6h.8v-22.9c0-11.3-4.8-15.4-17.9-15.4-11.3 0-14.4 2.5-15.1 12.8H4.8c.3-13.9 1.5-19.1 5.8-24.4C17.9 195 29.5 192 56.7 192c33 0 47.1 5 53.9 18.9 2 4.3 4 15.6 4 23.7v76.3H76.3l1.3-19.1h-1c-5.3 15.6-13.6 20.4-35.5 20.4-30.3 0-41.1-10.1-41.1-37.3 0-25.2 12.3-35.8 42.1-35.8m17.1 48.1c13.1 0 16.9-3 16.9-13.4 0-9.1-4.3-11.6-19.6-11.6-13.1 0-17.9 3-17.9 12.1-.1 10.4 3.7 12.9 20.6 12.9m77.8-94.9h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.2 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3H137zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7m57.9-60.7h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.3 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3h-39.5v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7m53.8-3.8c0-25.4 3.3-37.8 12.3-45.8 8.8-8.1 22.2-11.3 45.1-11.3 42.8 0 55.7 12.8 55.7 55.7v11.1h-75.3c-.3 2-.3 4-.3 4.8 0 16.9 4.5 21.9 20.1 21.9 13.9 0 17.9-3 17.9-13.9h37.5v2.3c0 9.8-2.5 18.9-6.8 24.7-7.3 9.8-19.6 13.6-44.3 13.6-27.5 0-41.6-3.3-50.6-12.3-8.5-8.5-11.3-21.3-11.3-50.8m76.4-11.6c-.3-1.8-.3-3.3-.3-3.8 0-12.3-3.3-14.6-19.6-14.6-14.4 0-17.1 3-18.1 15.1l-.3 3.3zm55.6-45.3h38.3l-1.8 19.9h.7c6.8-14.9 14.4-20.2 29.7-20.2 10.8 0 19.1 3.3 23.4 9.3 5.3 7.3 6.8 14.4 6.8 34 0 1.5 0 5 .2 9.3h-35c.3-1.8.3-3.3.3-4 0-15.4-2-19.4-10.3-19.4-6.3 0-10.8 3.3-13.1 9.3-1 3-1 4.3-1 12.3v68h-38.3V192.3z"/></svg>����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/apple-pay.svg��������������������0000664�0000000�0000000�00000002553�14753064456�0030027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M116.9 158.5c-7.5 8.9-19.5 15.9-31.5 14.9-1.5-12 4.4-24.8 11.3-32.6 7.5-9.1 20.6-15.6 31.3-16.1 1.2 12.4-3.7 24.7-11.1 33.8m10.9 17.2c-17.4-1-32.3 9.9-40.5 9.9-8.4 0-21-9.4-34.8-9.1-17.9.3-34.5 10.4-43.6 26.5-18.8 32.3-4.9 80 13.3 106.3 8.9 13 19.5 27.3 33.5 26.8 13.3-.5 18.5-8.6 34.5-8.6 16.1 0 20.8 8.6 34.8 8.4 14.5-.3 23.6-13 32.5-26 10.1-14.8 14.3-29.1 14.5-29.9-.3-.3-28-10.9-28.3-42.9-.3-26.8 21.9-39.5 22.9-40.3-12.5-18.6-32-20.6-38.8-21.1m100.4-36.2v194.9h30.3v-66.6h41.9c38.3 0 65.1-26.3 65.1-64.3s-26.4-64-64.1-64zm30.3 25.5h34.9c26.3 0 41.3 14 41.3 38.6s-15 38.8-41.4 38.8h-34.8zm162.2 170.9c19 0 36.6-9.6 44.6-24.9h.6v23.4h28v-97c0-28.1-22.5-46.3-57.1-46.3-32.1 0-55.9 18.4-56.8 43.6h27.3c2.3-12 13.4-19.9 28.6-19.9 18.5 0 28.9 8.6 28.9 24.5v10.8l-37.8 2.3c-35.1 2.1-54.1 16.5-54.1 41.5.1 25.2 19.7 42 47.8 42m8.2-23.1c-16.1 0-26.4-7.8-26.4-19.6 0-12.3 9.9-19.4 28.8-20.5l33.6-2.1v11c0 18.2-15.5 31.2-36 31.2m102.5 74.6c29.5 0 43.4-11.3 55.5-45.4L640 193h-30.8l-35.6 115.1h-.6L537.4 193h-31.6L557 334.9l-2.8 8.6c-4.6 14.6-12.1 20.3-25.5 20.3-2.4 0-7-.3-8.9-.5v23.4c1.8.4 9.3.7 11.6.7"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/apple.svg������������������������0000664�0000000�0000000�00000001323�14753064456�0027232�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9m-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/artstation.svg�������������������0000664�0000000�0000000�00000000742�14753064456�0030325�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m2 377.4 43 74.3A51.35 51.35 0 0 0 90.9 480h285.4l-59.2-102.6zM501.8 350 335.6 59.3A51.38 51.38 0 0 0 290.2 32h-88.4l257.3 447.6 40.7-70.5c1.9-3.2 21-29.7 2-59.1M275 304.5l-115.5-200L44 304.5z"/></svg>������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/asymmetrik.svg�������������������0000664�0000000�0000000�00000001713�14753064456�0030321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M517.5 309.2c38.8-40 58.1-80 58.5-116.1.8-65.5-59.4-118.2-169.4-135C277.9 38.4 118.1 73.6 0 140.5 52 114 110.6 92.3 170.7 82.3c74.5-20.5 153-25.4 221.3-14.8C544.5 91.3 588.8 195 490.8 299.2c-10.2 10.8-22 21.1-35 30.6L304.9 103.4 114.7 388.9c-65.6-29.4-76.5-90.2-19.1-151.2 20.8-22.2 48.3-41.9 79.5-58.1 20-12.2 39.7-22.6 62-30.7-65.1 20.3-122.7 52.9-161.6 92.9-27.7 28.6-41.4 57.1-41.7 82.9-.5 35.1 23.4 65.1 68.4 83l-34.5 51.7h101.6l22-34.4c22.2 1 45.3 0 68.6-2.7l-22.8 37.1h135.5L340 406.3c18.6-5.3 36.9-11.5 54.5-18.7l45.9 71.8H542L468.6 349c18.5-12.1 35-25.5 48.9-39.8m-187.6 80.5-25-40.6-32.7 53.3c-23.4 3.5-46.7 5.1-69.2 4.4l101.9-159.3 78.7 123c-17.2 7.4-35.3 13.9-53.7 19.2"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/atlassian.svg��������������������0000664�0000000�0000000�00000001076�14753064456�0030115�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M152.2 236.4c-7.7-8.2-19.7-7.7-24.8 2.8L1.6 490.2c-5 10 2.4 21.7 13.4 21.7h175c5.8.1 11-3.2 13.4-8.4 37.9-77.8 15.1-196.3-51.2-267.1M244.4 8.1c-122.3 193.4-8.5 348.6 65 495.5 2.5 5.1 7.7 8.4 13.4 8.4H497c11.2 0 18.4-11.8 13.4-21.7 0 0-234.5-470.6-240.4-482.3-5.3-10.6-18.8-10.8-25.6.1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/audible.svg����������������������0000664�0000000�0000000�00000001376�14753064456�0027546�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M640 199.9v54l-320 200L0 254v-54l320 200zm-194.5 72 47.1-29.4c-37.2-55.8-100.7-92.6-172.7-92.6s-135.5 36.7-172.6 92.4h.3c2.5-2.3 5.1-4.5 7.7-6.7 89.7-74.4 219.4-58.1 290.2 36.3m-220.1 18.8c16.9-11.9 36.5-18.7 57.4-18.7 34.4 0 65.2 18.4 86.4 47.6l45.4-28.4c-20.9-29.9-55.6-49.5-94.8-49.5-38.9 0-73.4 19.4-94.4 49M103.6 161.1c131.8-104.3 318.2-76.4 417.5 62.1l.7 1 48.8-30.4C517.1 112.1 424.8 58.1 319.9 58.1c-103.5 0-196.6 53.5-250.5 135.6 9.9-10.5 22.7-23.5 34.2-32.6m467 32.7"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/autoprefixer.svg�����������������0000664�0000000�0000000�00000000707�14753064456�0030653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m318.4 16-161 480h77.5l25.4-81.4h119.5L405 496h77.5zm-40.3 341.9 41.2-130.4h1.5l40.9 130.4zM640 405l-10-31.4L462.1 358l19.4 56.5zm-462.1-47L10 373.7 0 405l158.5 9.4z"/></svg>���������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/avianex.svg����������������������0000664�0000000�0000000�00000001403�14753064456�0027563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M453.1 32h-312c-38.9 0-76.2 31.2-83.3 69.7L1.2 410.3C-5.9 448.8 19.9 480 58.9 480h312c38.9 0 76.2-31.2 83.3-69.7l56.7-308.5c7-38.6-18.8-69.8-57.8-69.8m-58.2 347.3-32 13.5-115.4-110c-14.7 10-29.2 19.5-41.7 27.1l22.1 64.2-17.9 12.7-40.6-61-52.4-48.1 15.7-15.4 58 31.1c9.3-10.5 20.8-22.6 32.8-34.9L203 228.9l-68.8-99.8 18.8-28.9 8.9-4.8L265 207.8l4.9 4.5c19.4-18.8 33.8-32.4 33.8-32.4 7.7-6.5 21.5-2.9 30.7 7.9 9 10.5 10.6 24.7 2.7 31.3-1.8 1.3-15.5 11.4-35.3 25.6l4.5 7.3 94.9 119.4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/aviato.svg�����������������������0000664�0000000�0000000�00000004171�14753064456�0027420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m107.2 283.5-19-41.8H36.1l-19 41.8H0l62.2-131.4 62.2 131.4zm-45-98.1-19.6 42.5h39.2zm112.7 102.4-62.2-131.4h17.1l45.1 96 45.1-96h17zm80.6-4.3V156.4H271v127.1zm209.1-115.6v115.6h-17.3V167.9h-41.2v-11.5h99.6v11.5zM640 218.8q0 13.8-5.1 25.8c-3.4 8-8.2 15.1-14.2 21.1s-13.1 10.8-21.1 14.2q-12 5.1-25.8 5.1c-13.8 0-17.8-1.7-25.8-5.1s-15.1-8.2-21.1-14.2-10.8-13-14.2-21.1q-5.1-12-5.1-25.8c0-13.8 1.7-17.8 5.1-25.8s8.2-15.1 14.2-21.1 13-8.4 21.1-11.9q12-5.1 25.8-5.1c13.8 0 17.8 1.7 25.8 5.1s15.1 5.8 21.1 11.9c6 6 10.7 13.1 14.2 21.1q5.1 12 5.1 25.8m-15.5 0c0-7.3-1.3-14-3.9-20.3s-6.2-11.7-10.8-16.3-10-8.2-16.2-10.9-12.8-4-19.8-4-13.6 1.3-19.8 4-11.6 6.3-16.2 10.9-8.2 10-10.8 16.3-3.9 13.1-3.9 20.3c0 7.3 1.3 14 3.9 20.3s6.2 11.7 10.8 16.3 10 8.2 16.2 10.9 12.8 4 19.8 4 13.6-1.3 19.8-4 11.6-6.3 16.2-10.9 8.2-10 10.8-16.3 3.9-13.1 3.9-20.3m-94.8 96.7v-6.3l88.9-10-242.9 13.4c.6-2.2 1.1-4.6 1.4-7.2.3-2 .5-4.2.6-6.5l64.8-8.1-64.9 1.9c0-.4-.1-.7-.1-1.1-2.8-17.2-25.5-23.7-25.5-23.7l-1.1-26.3h23.8l19 41.8h17.1L348.6 152l-62.2 131.4h17.1l19-41.8h23.6L345 268s-22.7 6.5-25.5 23.7c-.1.3-.1.7-.1 1.1l-64.9-1.9 64.8 8.1c.1 2.3.3 4.4.6 6.5.3 2.6.8 5 1.4 7.2L78.4 299.2l88.9 10v6.3c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4s12.4-5.6 12.4-12.4c0-6.2-4.6-11.3-10.5-12.2v-5.8l80.3 9v5.4c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2s12.4-3.4 12.4-10.2c0-6-4.3-11-9.9-12.1v-4.9l28.4 3.2v23.7h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9V323l38.3 4.3c8.1 11.4 19 13.6 19 13.6l-.1 6.7-5.1.2-.1 12.1h4.1l.1-5h5.2l.1 5h4.1l-.1-12.1-5.1-.2-.1-6.7s10.9-2.1 19-13.6l38.3-4.3v23.2h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9v-23.7l28.4-3.2v4.9c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2s12.4-3.4 12.4-10.2c0-6-4.3-11-9.9-12.1v-5.4l80.3-9v5.8c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4s12.4-5.6 12.4-12.4c-.2-6.3-4.7-11.4-10.7-12.3m-200.8-87.6 19.6-42.5 19.6 42.5h-17.9l-1.7-40.3-1.7 40.3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/aws.svg��������������������������0000664�0000000�0000000�00000004667�14753064456�0026741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M180.41 203.01c-.72 22.65 10.6 32.68 10.88 39.05a8.16 8.16 0 0 1-4.1 6.27l-12.8 8.96a10.66 10.66 0 0 1-5.63 1.92c-.43-.02-8.19 1.83-20.48-25.61a78.6 78.6 0 0 1-62.61 29.45c-16.28.89-60.4-9.24-58.13-56.21-1.59-38.28 34.06-62.06 70.93-60.05 7.1.02 21.6.37 46.99 6.27v-15.62c2.69-26.46-14.7-46.99-44.81-43.91-2.4.01-19.4-.5-45.84 10.11-7.36 3.38-8.3 2.82-10.75 2.82-7.41 0-4.36-21.48-2.94-24.2 5.21-6.4 35.86-18.35 65.94-18.18a76.86 76.86 0 0 1 55.69 17.28 70.29 70.29 0 0 1 17.67 52.36zM93.99 235.4c32.43-.47 46.16-19.97 49.29-30.47 2.46-10.05 2.05-16.41 2.05-27.4-9.67-2.32-23.59-4.85-39.56-4.87-15.15-1.14-42.82 5.63-41.74 32.26-1.24 16.79 11.12 31.4 29.96 30.48m170.92 23.05c-7.86.72-11.52-4.86-12.68-10.37l-49.8-164.65c-.97-2.78-1.61-5.65-1.92-8.58a4.61 4.61 0 0 1 3.86-5.25c.24-.04-2.13 0 22.25 0 8.78-.88 11.64 6.03 12.55 10.37l35.72 140.83 33.16-140.83c.53-3.22 2.94-11.07 12.8-10.24h17.16c2.17-.18 11.11-.5 12.68 10.37l33.42 142.63L420.98 80.1c.48-2.18 2.72-11.37 12.68-10.37h19.72c.85-.13 6.15-.81 5.25 8.58-.43 1.85 3.41-10.66-52.75 169.9-1.15 5.51-4.82 11.09-12.68 10.37h-18.69c-10.94 1.15-12.51-9.66-12.68-10.75L328.67 110.7l-32.78 136.99c-.16 1.09-1.73 11.9-12.68 10.75h-18.3zm273.48 5.63c-5.88.01-33.92-.3-57.36-12.29a12.8 12.8 0 0 1-7.81-11.91v-10.75c0-8.45 6.2-6.9 8.83-5.89 10.04 4.06 16.48 7.14 28.81 9.6 36.65 7.53 52.77-2.3 56.72-4.48 13.15-7.81 14.19-25.68 5.25-34.95-10.48-8.79-15.48-9.12-53.13-21-4.64-1.29-43.7-13.61-43.79-52.36-.61-28.24 25.05-56.18 69.52-55.95 12.67-.01 46.43 4.13 55.57 15.62 1.35 2.09 2.02 4.55 1.92 7.04v10.11c0 4.44-1.62 6.66-4.87 6.66-7.71-.86-21.39-11.17-49.16-10.75-6.89-.36-39.89.91-38.41 24.97-.43 18.96 26.61 26.07 29.7 26.89 36.46 10.97 48.65 12.79 63.12 29.58 17.14 22.25 7.9 48.3 4.35 55.44-19.08 37.49-68.42 34.44-69.26 34.42m40.2 104.86c-70.03 51.72-171.69 79.25-258.49 79.25A469.13 469.13 0 0 1 2.83 327.46c-6.53-5.89-.77-13.96 7.17-9.47a637.37 637.37 0 0 0 316.88 84.12 630.2 630.2 0 0 0 241.59-49.55c11.78-5 21.77 7.8 10.12 16.38m29.19-33.29c-8.96-11.52-59.28-5.38-81.81-2.69-6.79.77-7.94-5.12-1.79-9.47 40.07-28.17 105.88-20.1 113.44-10.63 7.55 9.47-2.05 75.41-39.56 106.91-5.76 4.87-11.27 2.3-8.71-4.1 8.44-21.25 27.39-68.49 18.43-80.02"/></svg>�������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/bandcamp.svg���������������������0000664�0000000�0000000�00000000605�14753064456�0027700�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8m48.2 326.1h-181L207.9 178h181Z"/></svg>���������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/battle-net.svg�������������������0000664�0000000�0000000�00000005274�14753064456�0030201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448.61 225.62c26.87.18 35.57-7.43 38.92-12.37 12.47-16.32-7.06-47.6-52.85-71.33 17.76-33.58 30.11-63.68 36.34-85.3 3.38-11.83 1.09-19 .45-20.25-1.72 10.52-15.85 48.46-48.2 100.05-25-11.22-56.52-20.1-93.77-23.8-8.94-16.94-34.88-63.86-60.48-88.93C252.18 7.14 238.7 1.07 228.18.22h-.05c-13.83-1.55-22.67 5.85-27.4 11-17.2 18.53-24.33 48.87-25 84.07-7.24-12.35-17.17-24.63-28.5-25.93h-.18c-20.66-3.48-38.39 29.22-36 81.29-38.36 1.38-71 5.75-93 11.23-9.9 2.45-16.22 7.27-17.76 9.72 1-.38 22.4-9.22 111.56-9.22 5.22 53 29.75 101.82 26 93.19-9.73 15.4-38.24 62.36-47.31 97.7-5.87 22.88-4.37 37.61.15 47.14 5.57 12.75 16.41 16.72 23.2 18.26 25 5.71 55.38-3.63 86.7-21.14-7.53 12.84-13.9 28.51-9.06 39.34 7.31 19.65 44.49 18.66 88.44-9.45 20.18 32.18 40.07 57.94 55.7 74.12a39.8 39.8 0 0 0 8.75 7.09c5.14 3.21 8.58 3.37 8.58 3.37-8.24-6.75-34-38-62.54-91.78 22.22-16 45.65-38.87 67.47-69.27 122.82 4.6 143.29-24.76 148-31.64 14.67-19.88 3.43-57.44-57.32-93.69m-77.85 106.22c23.81-37.71 30.34-67.77 29.45-92.33 27.86 17.57 47.18 37.58 49.06 58.83 1.14 12.93-8.1 29.12-78.51 33.5M216.9 387.69c9.76-6.23 19.53-13.12 29.2-20.49 6.68 13.33 13.6 26.1 20.6 38.19-40.6 21.86-68.84 12.76-49.8-17.7m215-171.35c-10.29-5.34-21.16-10.34-32.38-15.05a723 723 0 0 0 22.74-36.9c39.06 24.1 45.9 53.18 9.64 51.95M279.18 398c-5.51-11.35-11-23.5-16.5-36.44 43.25 1.27 62.42-18.73 63.28-20.41 0 .07-25 15.64-62.53 12.25a719 719 0 0 0 85.06-84q13.06-15.31 24.93-31.11c-.36-.29-1.54-3-16.51-12-51.7 60.27-102.34 98-132.75 115.92-20.59-11.18-40.84-31.78-55.71-61.49-20-39.92-30-82.39-31.57-116.07 12.3.91 25.27 2.17 38.85 3.88-22.29 36.8-14.39 63-13.47 64.23 0-.07-.95-29.17 20.14-59.57a695.2 695.2 0 0 0 44.67 152.84c.93-.38 1.84.88 18.67-8.25-26.33-74.47-33.76-138.17-34-173.43 20-12.42 48.18-19.8 81.63-17.81 44.57 2.67 86.36 15.25 116.32 30.71q-10.69 15.66-23.33 32.47C365.63 152 339.1 145.84 337.5 146c.11 0 25.9 14.07 41.52 47.22a717.6 717.6 0 0 0-115.34-31.71 647 647 0 0 0-39.39-6.05c-.07.45-1.81 1.85-2.16 20.33C300 190.28 358.78 215.68 389.36 233c.74 23.55-6.95 51.61-25.41 79.57-24.6 37.31-56.39 67.23-84.77 85.43m27.4-287c-44.56-1.66-73.58 7.43-94.69 20.67 2-52.3 21.31-76.38 38.21-75.28C267 52.15 305 108.55 306.58 111m-130.65 3.1c.48 12.11 1.59 24.62 3.21 37.28-14.55-.85-28.74-1.25-42.4-1.26-.08 3.24-.12-51 24.67-49.59h.09c5.76 1.09 10.63 6.88 14.43 13.57m-28.06 162c20.76 39.7 43.3 60.57 65.25 72.31-46.79 24.76-77.53 20-84.92 4.51-.2-.21-11.13-15.3 19.67-76.81zm210.06 74.8"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/behance.svg����������������������0000664�0000000�0000000�00000001552�14753064456�0027522�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M232 237.2c31.8-15.2 48.4-38.2 48.4-74 0-70.6-52.6-87.8-113.3-87.8H0v354.4h171.8c64.4 0 124.9-30.9 124.9-102.9 0-44.5-21.1-77.4-64.7-89.7M77.9 135.9H151c28.1 0 53.4 7.9 53.4 40.5 0 30.1-19.7 42.2-47.5 42.2h-79zm83.3 233.7H77.9V272h84.9c34.3 0 56 14.3 56 50.6 0 35.8-25.9 47-57.6 47m358.5-240.7H376V94h143.7zM576 305.2c0-75.9-44.4-139.2-124.9-139.2-78.2 0-131.3 58.8-131.3 135.8 0 79.9 50.3 134.7 131.3 134.7 61.3 0 101-27.6 120.1-86.3H509c-6.7 21.9-34.3 33.5-55.7 33.5-41.3 0-63-24.2-63-65.3h185.1c.3-4.2.6-8.7.6-13.2M390.4 274c2.3-33.7 24.7-54.8 58.5-54.8 35.4 0 53.2 20.8 56.2 54.8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/bilibili.svg���������������������0000664�0000000�0000000�00000002627�14753064456�0027720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M488.6 104.1c16.7 18.1 24.4 39.7 23.3 65.7v202.4c-.4 26.4-9.2 48.1-26.5 65.1-17.2 17-39.1 25.9-65.5 26.7H92.02c-26.45-.8-48.21-9.8-65.28-27.2C9.682 419.4.767 396.5 0 368.2V169.8c.767-26 9.682-47.6 26.74-65.7C43.81 87.75 65.57 78.77 92.02 78h29.38L96.05 52.19c-5.75-5.73-8.63-13-8.63-21.79 0-8.8 2.88-16.06 8.63-21.797C101.8 2.868 109.1 0 117.9 0q13.2 0 21.9 8.603L213.1 78h88l74.5-69.397C381.7 2.868 389.2 0 398 0q13.2 0 21.9 8.603c5.7 5.737 8.6 12.997 8.6 21.797 0 8.79-2.9 16.06-8.6 21.79L394.6 78h29.3c26.4.77 48 9.75 64.7 26.1m-38.8 69.7c-.4-9.6-3.7-17.4-10.7-23.5-5.2-6.1-14-9.4-22.7-9.8H96.05c-9.59.4-17.45 3.7-23.58 9.8-6.14 6.1-9.4 13.9-9.78 23.5v194.4c0 9.2 3.26 17 9.78 23.5s14.38 9.8 23.58 9.8H416.4c9.2 0 17-3.3 23.3-9.8s9.7-14.3 10.1-23.5zm-264.3 42.7c6.3 6.3 9.7 14.1 10.1 23.2V273c-.4 9.2-3.7 16.9-9.8 23.2-6.2 6.3-14 9.5-23.6 9.5s-17.5-3.2-23.6-9.5-9.4-14-9.8-23.2v-33.3c.4-9.1 3.8-16.9 10.1-23.2s13.2-9.6 23.3-10c9.2.4 17 3.7 23.3 10m191.5 0c6.3 6.3 9.7 14.1 10.1 23.2V273c-.4 9.2-3.7 16.9-9.8 23.2s-14 9.5-23.6 9.5-17.4-3.2-23.6-9.5c-7-6.3-9.4-14-9.7-23.2v-33.3c.3-9.1 3.7-16.9 10-23.2s14.1-9.6 23.3-10c9.2.4 17 3.7 23.3 10"/></svg>���������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/bimobject.svg��������������������0000664�0000000�0000000�00000001265�14753064456�0030074�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M416 32H32C14.4 32 0 46.4 0 64v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32m-64 257.4c0 49.4-11.4 82.6-103.8 82.6h-16.9c-44.1 0-62.4-14.9-70.4-38.8h-.9V368H96V136h64v74.7h1.1c4.6-30.5 39.7-38.8 69.7-38.8h17.3c92.4 0 103.8 33.1 103.8 82.5v35zm-64-28.9v22.9c0 21.7-3.4 33.8-38.4 33.8h-45.3c-28.9 0-44.1-6.5-44.1-35.7v-19c0-29.3 15.2-35.7 44.1-35.7h45.3c35-.2 38.4 12 38.4 33.7"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/bitbucket.svg��������������������0000664�0000000�0000000�00000000746�14753064456�0030115�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M22.2 32A16 16 0 0 0 6 47.8a26 26 0 0 0 .2 2.8l67.9 412.1a21.77 21.77 0 0 0 21.3 18.2h325.7a16 16 0 0 0 16-13.4L505 50.7a16 16 0 0 0-13.2-18.3 25 25 0 0 0-2.8-.2zm285.9 297.8h-104l-28.1-147h157.3z"/></svg>��������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/bitcoin.svg����������������������0000664�0000000�0000000�00000002523�14753064456�0027563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248m-141.651-35.33c4.937-32.999-20.191-50.739-54.55-62.573l11.146-44.702-27.213-6.781-10.851 43.524c-7.154-1.783-14.502-3.464-21.803-5.13l10.929-43.81-27.198-6.781-11.153 44.686c-5.922-1.349-11.735-2.682-17.377-4.084l.031-.14-37.53-9.37-7.239 29.062s20.191 4.627 19.765 4.913c11.022 2.751 13.014 10.044 12.68 15.825l-12.696 50.925c.76.194 1.744.473 2.829.907-.907-.225-1.876-.473-2.876-.713l-17.796 71.338c-1.349 3.348-4.767 8.37-12.471 6.464.271.395-19.78-4.937-19.78-4.937l-13.51 31.147 35.414 8.827c6.588 1.651 13.045 3.379 19.4 5.006l-11.262 45.213 27.182 6.781 11.153-44.733a1038 1038 0 0 0 21.687 5.627l-11.115 44.523 27.213 6.781 11.262-45.128c46.404 8.781 81.299 5.239 95.986-36.727 11.836-33.79-.589-53.281-25.004-65.991 17.78-4.098 31.174-15.792 34.747-39.949m-62.177 87.179c-8.41 33.79-65.308 15.523-83.755 10.943l14.944-59.899c18.446 4.603 77.6 13.717 68.811 48.956m8.417-87.667c-7.673 30.736-55.031 15.12-70.393 11.292l13.548-54.327c15.363 3.828 64.836 10.973 56.845 43.035"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/bity.svg�������������������������0000664�0000000�0000000�00000001677�14753064456�0027114�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M78.4 67.2C173.8-22 324.5-24 421.5 71c14.3 14.1-6.4 37.1-22.4 21.5-84.8-82.4-215.8-80.3-298.9-3.2-16.3 15.1-36.5-8.3-21.8-22.1m98.9 418.6c19.3 5.7 29.3-23.6 7.9-30C73 421.9 9.4 306.1 37.7 194.8c5-19.6-24.9-28.1-30.2-7.1-32.1 127.4 41.1 259.8 169.8 298.1m148.1-2c121.9-40.2 192.9-166.9 164.4-291-4.5-19.7-34.9-13.8-30 7.9 24.2 107.7-37.1 217.9-143.2 253.4-21.2 7-10.4 36 8.8 29.7m-62.9-79 .2-71.8c0-8.2-6.6-14.8-14.8-14.8s-14.8 6.7-14.8 14.8l-.2 71.8c0 8.2 6.6 14.8 14.8 14.8s14.8-6.6 14.8-14.8m71-269c2.1 90.9 4.7 131.9-85.5 132.5-92.5-.7-86.9-44.3-85.5-132.5 0-21.8-32.5-19.6-32.5 0v71.6c0 69.3 60.7 90.9 118 90.1 57.3.8 118-20.8 118-90.1v-71.6c0-19.6-32.5-21.8-32.5 0"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/black-tie.svg��������������������0000664�0000000�0000000�00000000570�14753064456�0027767�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 32v448h448V32zm316.5 325.2L224 445.9l-92.5-88.7 64.5-184-64.5-86.6h184.9L252 173.2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/blackberry.svg�������������������0000664�0000000�0000000�00000001557�14753064456�0030262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M166 116.9c0 23.4-16.4 49.1-72.5 49.1H23.4l21-88.8h67.8c42.1 0 53.8 23.3 53.8 39.7m126.2-39.7h-67.8L205.7 166h70.1c53.8 0 70.1-25.7 70.1-49.1.1-16.4-11.6-39.7-53.7-39.7M88.8 208.1H21L0 296.9h70.1c56.1 0 72.5-23.4 72.5-49.1 0-16.3-11.7-39.7-53.8-39.7m180.1 0h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1 0-16.3-11.7-39.7-53.7-39.7m189.3-53.8h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7m-28 137.9h-67.8L343.7 381h70.1c56.1 0 70.1-23.4 70.1-49.1 0-16.3-11.6-39.7-53.7-39.7M240.8 346H173l-18.7 88.8h70.1c56.1 0 70.1-25.7 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/blogger-b.svg��������������������0000664�0000000�0000000�00000002122�14753064456�0027767�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M446.6 222.7c-1.8-8-6.8-15.4-12.5-18.5-1.8-1-13-2.2-25-2.7-20.1-.9-22.3-1.3-28.7-5-10.1-5.9-12.8-12.3-12.9-29.5-.1-33-13.8-63.7-40.9-91.3-19.3-19.7-40.9-33-65.5-40.5-5.9-1.8-19.1-2.4-63.3-2.9-69.4-.8-84.8.6-108.4 10C45.9 59.5 14.7 96.1 3.3 142.9 1.2 151.7.7 165.8.2 246.8c-.6 101.5.1 116.4 6.4 136.5 15.6 49.6 59.9 86.3 104.4 94.3 14.8 2.7 197.3 3.3 216 .8 32.5-4.4 58-17.5 81.9-41.9 17.3-17.7 28.1-36.8 35.2-62.1 4.9-17.6 4.5-142.8 2.5-151.7m-322.1-63.6c7.8-7.9 10-8.2 58.8-8.2 43.9 0 45.4.1 51.8 3.4 9.3 4.7 13.4 11.3 13.4 21.9 0 9.5-3.8 16.2-12.3 21.6-4.6 2.9-7.3 3.1-50.3 3.3-26.5.2-47.7-.4-50.8-1.2-16.6-4.7-22.8-28.5-10.6-40.8m191.8 199.8-14.9 2.4-77.5.9c-68.1.8-87.3-.4-90.9-2-7.1-3.1-13.8-11.7-14.9-19.4-1.1-7.3 2.6-17.3 8.2-22.4 7.1-6.4 10.2-6.6 97.3-6.7 89.6-.1 89.1-.1 97.6 7.8 12.1 11.3 9.5 31.2-4.9 39.4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/blogger.svg����������������������0000664�0000000�0000000�00000002566�14753064456�0027564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M162.4 196c4.8-4.9 6.2-5.1 36.4-5.1 27.2 0 28.1.1 32.1 2.1 5.8 2.9 8.3 7 8.3 13.6 0 5.9-2.4 10-7.6 13.4-2.8 1.8-4.5 1.9-31.1 2.1-16.4.1-29.5-.2-31.5-.8-10.3-2.9-14.1-17.7-6.6-25.3m61.4 94.5c-53.9 0-55.8.2-60.2 4.1-3.5 3.1-5.7 9.4-5.1 13.9.7 4.7 4.8 10.1 9.2 12 2.2 1 14.1 1.7 56.3 1.2l47.9-.6 9.2-1.5c9-5.1 10.5-17.4 3.1-24.4-5.3-4.7-5-4.7-60.4-4.7m223.4 130.1c-3.5 28.4-23 50.4-51.1 57.5-7.2 1.8-9.7 1.9-172.9 1.8-157.8 0-165.9-.1-172-1.8-8.4-2.2-15.6-5.5-22.3-10-5.6-3.8-13.9-11.8-17-16.4-3.8-5.6-8.2-15.3-10-22S0 420.3 0 256.3C0 93.2 0 89.7 1.8 82.6 8.1 57.9 27.7 39 53 33.4c7.3-1.6 332.1-1.9 340-.3 21.2 4.3 37.9 17.1 47.6 36.4 7.7 15.3 7-1.5 7.3 180.6.2 115.8 0 164.5-.7 170.5m-85.4-185.2c-1.1-5-4.2-9.6-7.7-11.5-1.1-.6-8-1.3-15.5-1.7-12.4-.6-13.8-.8-17.8-3.1-6.2-3.6-7.9-7.6-8-18.3 0-20.4-8.5-39.4-25.3-56.5-12-12.2-25.3-20.5-40.6-25.1-3.6-1.1-11.8-1.5-39.2-1.8-42.9-.5-52.5.4-67.1 6.2-27 10.7-46.3 33.4-53.4 62.4-1.3 5.4-1.6 14.2-1.9 64.3-.4 62.8 0 72.1 4 84.5 9.7 30.7 37.1 53.4 64.6 58.4 9.2 1.7 122.2 2.1 133.7.5 20.1-2.7 35.9-10.8 50.7-25.9 10.7-10.9 17.4-22.8 21.8-38.5 3.2-10.9 2.9-88.4 1.7-93.9"/></svg>������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/bluesky.svg����������������������0000664�0000000�0000000�00000001274�14753064456�0027614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M111.8 62.2C170.2 105.9 233 194.7 256 242.4c23-47.6 85.8-136.4 144.2-180.2 42.1-31.6 110.3-56 110.3 21.8 0 15.5-8.9 130.5-14.1 149.2-18.2 64.8-84.4 81.4-143.3 71.3C456 322 482.2 380 425.6 438c-107.4 110.2-154.3-27.6-166.3-62.9-1.7-4.9-2.6-7.8-3.3-7.8s-1.6 3-3.3 7.8c-12 35.3-59 173.1-166.3 62.9-56.5-58-30.4-116 72.5-133.5C100 314.6 33.8 298 15.7 233.1 10.4 214.4 1.5 99.4 1.5 83.9c0-77.8 68.2-53.4 110.3-21.8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/bluetooth-b.svg������������������0000664�0000000�0000000�00000001033�14753064456�0030353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m196.48 260.023 92.626-103.333L143.125 0v206.33l-86.111-86.111-31.406 31.405 108.061 108.399L25.608 368.422l31.406 31.405 86.111-86.111L145.84 512l148.552-148.644zm40.86-102.996-49.977 49.978-.338-100.295zM187.363 313.04l49.977 49.978-50.315 50.316z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/bluetooth.svg��������������������0000664�0000000�0000000�00000001052�14753064456�0030135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M292.6 171.1 249.7 214l-.3-86zm-43.2 219.8 43.1-43.1-42.9-42.9zM416 259.4C416 465 344.1 512 230.9 512S32 465 32 259.4 115.4 0 228.6 0 416 53.9 416 259.4m-158.5 0 79.4-88.6L211.8 36.5v176.9L138 139.6l-27 26.9 92.7 93-92.7 93 26.9 26.9 73.8-73.8 2.3 170 127.4-127.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/bootstrap.svg��������������������0000664�0000000�0000000�00000001667�14753064456�0030161�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M333.5 201.4c0-22.1-15.6-34.3-43-34.3h-50.4v71.2h42.5c32.8-.1 50.9-13.3 50.9-36.9M517 188.6c-9.5-30.9-10.9-68.8-9.8-98.1C508.3 60 484.5 32 452.5 32H123.7C91.6 32 67.9 60.1 69 90.5c1 29.3-.3 67.2-9.8 98.1-9.6 31-25.7 50.6-52.2 53.1v28.5c26.4 2.5 42.6 22.1 52.2 53.1 9.5 30.9 10.9 68.8 9.8 98.1-1.1 30.5 22.7 58.5 54.7 58.5h328.7c32.1 0 55.8-28.1 54.7-58.5-1-29.3.3-67.2 9.8-98.1 9.6-31 25.7-50.6 52.1-53.1v-28.5c-26.3-2.5-42.5-22.1-52-53.1M300.2 375.1h-97.9V136.8h97.4c43.3 0 71.7 23.4 71.7 59.4 0 25.3-19.1 47.9-43.5 51.8v1.3c33.2 3.6 55.5 26.6 55.5 58.3 0 42.1-31.3 67.5-83.2 67.5m-10-108.7h-50.1v78.4h52.3c34.2 0 52.3-13.7 52.3-39.5 0-25.7-18.6-38.9-54.5-38.9"/></svg>�������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/bots.svg�������������������������0000664�0000000�0000000�00000004216�14753064456�0027104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M86.344 197.834a51.77 51.77 0 0 0-41.57 20.058v-61.874a8.19 8.19 0 0 0-8.19-8.19H8.19a8.19 8.19 0 0 0-8.19 8.19v177.533a8.19 8.19 0 0 0 8.19 8.189h28.394a8.19 8.19 0 0 0 8.19-8.189v-8.088c11.628 13.373 25.874 19.769 41.573 19.769 34.6 0 61.922-26.164 61.922-73.843-.003-45.937-27.04-73.555-61.925-73.555M71.516 305.691c-9.593 0-21.221-4.942-26.745-12.5v-43.027c5.528-7.558 17.152-12.791 26.745-12.791 17.734 0 31.107 13.082 31.107 34.013 0 21.223-13.373 34.305-31.107 34.305m156.372-59.032a17.4 17.4 0 1 0 17.4 17.4 17.4 17.4 0 0 0-17.4-17.4m46.068-89.959v-44.661a13.308 13.308 0 1 0-10.237 0V156.7a107.49 107.49 0 1 0 10.237 0m85.993 107.367c0 30.531-40.792 55.281-91.112 55.281s-91.111-24.75-91.111-55.281 40.792-55.281 91.111-55.281 91.112 24.746 91.112 55.276Zm-50.163 17.4a17.4 17.4 0 1 0-17.4-17.4 17.4 17.4 0 0 0 17.4 17.399ZM580.7 250.455c-14.828-2.617-22.387-3.78-22.387-9.885 0-5.523 7.268-9.884 17.735-9.884a65.56 65.56 0 0 1 34.484 10.1 8.17 8.17 0 0 0 11.288-2.468q.106-.165.2-.333l8.611-14.886a8.2 8.2 0 0 0-2.867-11.123 99.86 99.86 0 0 0-52.014-14.138c-38.956 0-60.179 21.514-60.179 46.225 0 36.342 33.725 41.864 57.563 45.642 13.373 2.326 24.13 4.361 24.13 11.048 0 6.4-5.523 10.757-18.9 10.757-13.552 0-30.994-6.222-42.623-13.579a8.206 8.206 0 0 0-11.335 2.491 3 3 0 0 0-.1.164l-10.2 16.891a8.22 8.22 0 0 0 2.491 11.066c15.224 10.3 37.663 16.692 59.441 16.692 40.409 0 63.957-19.769 63.957-46.515.005-38.09-35.458-43.904-59.295-48.265m-95.928 60.787a8.21 8.21 0 0 0-9.521-5.938 23 23 0 0 1-4.155.387c-7.849 0-12.5-6.106-12.5-14.245V240.28h20.349a8.143 8.143 0 0 0 8.141-8.143v-22.671a8.143 8.143 0 0 0-8.141-8.143h-20.351v-30.232a8.143 8.143 0 0 0-8.143-8.143h-28.194a8.143 8.143 0 0 0-8.143 8.143v30.232H399a8.143 8.143 0 0 0-8.143 8.143v22.671A8.143 8.143 0 0 0 399 240.28h15.115v63.667c0 27.037 15.408 41.282 43.9 41.282 12.183 0 21.383-2.2 27.6-5.446a8.16 8.16 0 0 0 4.145-9.278Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/brave-reverse.svg����������������0000664�0000000�0000000�00000006261�14753064456�0030707�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M298 0c3 0 5.8 1.3 7.8 3.6l38.1 44 1.5-.3c9.2-1.6 18.6-2.2 27.7-1.2 11.6 1.4 21.5 5.4 28.9 12.9 7.7 7.8 15.4 15.8 22.6 23.6 2.5 2.7 4.9 5.2 6.9 7.4.7.8 1.4 1.5 1.9 2 3.4 3.7 4.2 8.1 2.7 11.9l-9.8 24.6 13.1 38.1c.7 2 .8 4.1.2 6.2-.1.4-.1.4-.5 2.1-.6 2.3-.6 2.3-1.5 5.8-1.6 6.3-3.5 13.3-5.4 20.9-5.6 21.6-11.2 43.2-16.4 63.4-12.9 49.9-21.4 82.7-23.4 90.9-11.1 44.5-19.9 60-48.3 80.3-24.9 17.8-76.8 53.6-86.8 60-1 .6-2 1.3-3.4 2.3-.5.4-3.2 2.2-3.9 2.7-4.9 3.3-8.3 5.5-12.1 7.3-4.7 2.2-9.3 3.5-13.9 3.5s-9.1-1.2-13.9-3.5c-3.7-1.8-7.2-3.9-12.1-7.3-.8-.5-3.4-2.4-3.9-2.7-1.4-1-2.5-1.7-3.4-2.3-10-6.4-61.9-42.1-86.8-60-28.4-20.4-37.2-35.8-48.3-80.3-2-8.2-10.5-41-23.3-90.5-5.3-20.6-10.9-42.2-16.5-63.8-2-7.6-3.8-14.6-5.4-20.9-.9-3.5-.9-3.5-1.5-5.8-.4-1.7-.4-1.7-.5-2.1-.5-2-.4-4.2.2-6.2l13.1-38.1-9.9-24.5c-1.5-3.8-.7-8.2 2-11.2 1.2-1.3 1.8-2 2.6-2.8 2-2.2 4.4-4.7 6.9-7.4 7.3-7.7 15-15.7 22.7-23.5 7.4-7.5 17.3-11.6 28.9-12.9 9.1-1.1 18.5-.5 27.7 1.2l1.5.3 38.1-44c2-2.4 4.8-3.7 7.8-3.7zm-4.7 21.1H154.7l-39.1 45.1c-2.6 3-6.7 4.3-10.6 3.2-.2-.1-.7-.2-1.5-.4-1.3-.3-2.9-.6-4.5-.9-7.4-1.3-14.9-1.8-21.7-1-7.3.9-13 3.2-16.6 6.9-7.6 7.7-15.2 15.6-22.3 23.3q-2.55 2.7-4.8 5.1l8.8 22c1 2.4 1 5 .2 7.5l-13.4 38.7c.4 1.4.5 1.9 1.2 4.8 1.6 6.3 3.5 13.3 5.4 20.9 5.6 21.6 11.2 43.2 16.4 63.4 12.9 50 21.4 82.8 23.4 91C85.7 390.8 92 402 115.8 419c24.6 17.6 76.3 53.2 85.9 59.3 1.2.8 2.5 1.6 4 2.7.6.4 3.2 2.2 3.9 2.7 4 2.8 6.7 4.4 9.2 5.6q3.3 1.5 5.1 1.5c1.8 0 2.9-.5 5.1-1.5 2.5-1.2 5.2-2.8 9.2-5.6.7-.5 3.3-2.3 3.9-2.7 1.6-1.1 2.8-1.9 4-2.7 9.6-6.1 61.3-41.7 85.9-59.3 23.8-17.1 30.2-28.2 40.1-68.3 2.1-8.3 10.5-41.1 23.3-90.7 5.3-20.6 10.9-42.2 16.5-63.8 2-7.6 3.8-14.6 5.4-20.9.7-2.9.9-3.4 1.2-4.8l-13.3-38.8c-.8-2.4-.8-5.1.2-7.5l8.8-22q-2.25-2.4-4.8-5.1c-7.2-7.6-14.7-15.5-22.3-23.3-3.7-3.7-9.3-6-16.6-6.9-6.8-.8-14.4-.3-21.7 1q-2.55.45-4.5.9c-.8.2-1.3.3-1.5.4-3.8 1.1-7.9-.2-10.6-3.2zM224 316c2.8 0 20.9 6.5 35.4 14.1s25 13 28.3 15.2 1.3 6.2-1.7 8.4-44.1 34.6-48.1 38.2-9.8 9.5-13.8 9.5-9.8-5.9-13.8-9.5-45.1-36-48.1-38.2-5.1-6.2-1.7-8.4 13.9-7.5 28.3-15.2 32.5-14.1 35.4-14.1zm.1-230.7c.7 0 8.8.2 20.5 4.2 12.3 4.2 25.7 9.4 31.9 9.4s51.9-8.9 51.9-8.9 54.2 66.7 54.2 81-6.8 18-13.7 25.4-36.8 39.8-40.7 43.9-11.9 10.5-7.1 21.8 11.7 25.8 3.9 40.4-21 24.4-29.4 22.8-28.4-12.2-35.7-17.1-30.5-24.3-30.5-31.8 24-20.8 28.4-23.9 24.7-14.8 25.1-19.4.3-6-5.7-17.4-16.7-26.7-14.9-36.8 19.1-15.4 31.5-20.2S330 145 333 143.6s2.2-2.7-6.8-3.6-34.6-4.3-46.1-1.1-31.2 8.2-32.8 10.9-3 2.7-1.4 11.8 10.1 52.8 10.9 60.6 2.4 12.9-5.8 14.8-22.1 5.2-26.8 5.2-18.6-3.3-26.8-5.2-6.6-7-5.8-14.8 9.3-51.5 10.9-60.6.2-9.2-1.4-11.8-21.3-7.6-32.8-10.9-37.1.2-46.1 1.1-9.8 2.2-6.8 3.6 26.8 10.4 39.2 15.1 29.7 10 31.5 20.2-9 25.4-14.9 36.8-6.1 12.8-5.7 17.4 20.6 16.4 25.1 19.4 28.4 16.4 28.4 23.9-23.2 27-30.5 31.8-27.2 15.4-35.7 17.1-21.7-8.2-29.4-22.8-.8-29.1 3.9-40.4-3.3-17.7-7.1-21.8-33.8-36.5-40.7-43.9-13.7-11.2-13.7-25.4S120 90 120 90s45.8 8.9 51.9 8.9 19.5-5.2 31.9-9.4 20.6-4.2 20.6-4.2h.1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/brave.svg������������������������0000664�0000000�0000000�00000005221�14753064456�0027231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M145.5 0h157l44.7 50.8s39.3-10.9 57.8 7.6 33.8 34.9 33.8 34.9l-12 29.5 15.3 43.7s-44.9 170.2-50.1 191c-10.4 40.9-17.4 56.8-46.9 77.5s-82.9 56.8-91.6 62.2c-1.9 1.2-3.9 2.5-5.9 3.9-7.5 5.1-15.8 10.8-23.5 10.8s-16.1-5.7-23.5-10.8c-2-1.4-4-2.8-5.9-3.9-8.7-5.5-62.1-41.5-91.6-62.2s-36.5-36.6-46.9-77.5c-5.3-20.8-50.1-191-50.1-191l15.3-43.7L9.2 93.3S24.5 76.9 43 58.4s57.8-7.6 57.8-7.6zM224 407.6c3.7 0 8.9-4.7 13-8.4.6-.5 1.2-1.1 1.7-1.5 4.2-3.7 47.8-37.5 51-39.8s5.4-6.5 1.9-8.7c-2.8-1.7-10-5.5-20.3-10.8-3-1.6-6.3-3.2-9.7-5-15.4-8-34.5-14.7-37.5-14.7s-22.1 6.8-37.5 14.7c-3.5 1.8-6.7 3.5-9.7 5-10.3 5.3-17.6 9.1-20.3 10.8-3.6 2.2-1.4 6.4 1.9 8.7s46.8 36.1 51 39.8c.5.5 1.1 1 1.7 1.5 4.1 3.7 9.3 8.4 13 8.4zm0-165.7c4.7 0 17.6-3 26.4-5l2-.5c7.8-1.8 7.3-6.3 6.4-13l-.3-2.4c-.6-6.1-5.8-33.1-9.1-50.3-1.1-5.8-2-10.5-2.4-12.9-1.5-8.1-.6-9.4.7-11.3.2-.3.5-.7.7-1.1 1.4-2.3 16-6.2 27.9-9.5 2.5-.7 4.8-1.3 6.9-1.9 10.6-3 32.4-.6 44.2.6 1.8.2 3.4.4 4.7.5 9.6.9 10.4 2.3 7.2 3.8-2.3 1.1-16.2 6.3-28.7 10.9-4.7 1.8-9.2 3.5-12.8 4.8-1.5.5-3 1.1-4.5 1.7-12.5 4.6-27.2 10-28.9 19.4-1.5 8.3 5.2 19.9 11.3 30.3 1.6 2.8 3.2 5.5 4.6 8.1 6.3 11.9 6.5 13.3 6.1 18.1-.4 3.9-14.5 12.7-22.4 17.6-1.8 1.1-3.3 2.1-4.2 2.7-.8.5-2.1 1.4-3.8 2.4-8.6 5.2-26.3 16-26.3 22.5 0 7.8 24.6 28.1 32.4 33.2s28.9 16.1 37.9 17.8 23-8.5 31.2-23.8c7.7-14.4 1.7-28.5-3.2-40l-.9-2.2c-4.5-10.6 1.9-17 6.2-21.3l1.4-1.4 43-45.7c1.3-1.3 2.5-2.6 3.7-3.8 5.8-5.7 10.8-10.5 10.8-22.8 0-14.9-57.5-84.5-57.5-84.5s-48.5 9.3-55.1 9.3c-5.2 0-15.3-3.5-25.8-7.1-2.7-.9-5.4-1.9-8-2.7-13-4.3-21.8-4.4-21.8-4.4s-8.7 0-21.8 4.4c-2.7.9-5.4 1.8-8 2.7-10.5 3.6-20.6 7.1-25.8 7.1-6.5 0-55.1-9.3-55.1-9.3s-57.5 69.6-57.5 84.5c0 12.3 4.9 17.1 10.8 22.8 1.2 1.2 2.5 2.4 3.7 3.8l43.1 45.8c.4.5.9.9 1.4 1.4 4.3 4.3 10.6 10.7 6.2 21.3l-.9 2.2c-4.9 11.5-11 25.6-3.2 40 8.2 15.3 22.2 25.5 31.2 23.8s30.1-12.7 37.9-17.8 32.4-25.4 32.4-33.2c0-6.5-17.7-17.3-26.3-22.5-1.7-1-3.1-1.9-3.8-2.4-.9-.6-2.4-1.5-4.2-2.7-7.9-4.9-22-13.7-22.4-17.6-.4-4.8-.3-6.2 6.1-18.1 1.3-2.5 2.9-5.3 4.6-8.1 6-10.4 12.8-22 11.3-30.3-1.7-9.4-16.4-14.8-28.9-19.4-1.6-.6-3.1-1.1-4.5-1.7-3.6-1.4-8.1-3.1-12.8-4.8h-.1c-12.5-4.7-26.4-9.9-28.7-10.9-3.2-1.5-2.3-2.8 7.2-3.8 1.3-.1 2.9-.3 4.7-.5 11.8-1.3 33.6-3.6 44.2-.6 2.1.6 4.4 1.2 6.9 1.9 11.9 3.2 26.5 7.2 27.9 9.5.2.4.5.7.7 1.1 1.3 1.9 2.2 3.2.7 11.3-.4 2.4-1.3 7.1-2.4 12.9-3.3 17.2-8.5 44.2-9.1 50.3-.1.8-.2 1.7-.3 2.4-.8 6.7-1.4 11.2 6.4 13l2 .5c8.8 2 21.8 5 26.4 5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/btc.svg��������������������������0000664�0000000�0000000�00000001677�14753064456�0026715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M310.204 242.638c27.73-14.18 45.377-39.39 41.28-81.3-5.358-57.351-52.458-76.573-114.85-81.929V0h-48.528v77.203c-12.605 0-25.525.315-38.444.63V0h-48.528v79.409c-17.842.539-38.622.276-97.37 0v51.678c38.314-.678 58.417-3.14 63.023 21.427v217.429c-2.925 19.492-18.524 16.685-53.255 16.071L3.765 443.68c88.481 0 97.37.315 97.37.315V512h48.528v-67.06c13.234.315 26.154.315 38.444.315V512h48.528v-68.005c81.299-4.412 135.647-24.894 142.895-101.467 5.671-61.446-23.32-88.862-69.326-99.89M150.608 134.553c27.415 0 113.126-8.507 113.126 48.528 0 54.515-85.71 48.212-113.126 48.212zm0 251.776V279.821c32.772 0 133.127-9.138 133.127 53.255-.001 60.186-100.355 53.253-133.127 53.253"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/buffer.svg�����������������������0000664�0000000�0000000�00000001620�14753064456�0027402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m427.84 380.67-196.5 97.82a18.6 18.6 0 0 1-14.67 0L20.16 380.67c-4-2-4-5.28 0-7.29L67.22 350a18.65 18.65 0 0 1 14.69 0l134.76 67a18.5 18.5 0 0 0 14.67 0l134.76-67a18.62 18.62 0 0 1 14.68 0l47.06 23.43c4.05 1.96 4.05 5.24 0 7.24m0-136.53-47.06-23.43a18.62 18.62 0 0 0-14.68 0l-134.76 67.08a18.68 18.68 0 0 1-14.67 0L81.91 220.71a18.65 18.65 0 0 0-14.69 0l-47.06 23.43c-4 2-4 5.29 0 7.31l196.51 97.8a18.6 18.6 0 0 0 14.67 0l196.5-97.8c4.05-2.02 4.05-5.3 0-7.31M20.16 130.42l196.5 90.29a20.08 20.08 0 0 0 14.67 0l196.51-90.29c4-1.86 4-4.89 0-6.74L231.33 33.4a19.88 19.88 0 0 0-14.67 0l-196.5 90.28c-4.05 1.85-4.05 4.88 0 6.74"/></svg>����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/buromobelexperte.svg�������������0000664�0000000�0000000�00000001156�14753064456�0031520�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 32v128h128V32zm120 120H8V40h112zm40-120v128h128V32zm120 120H168V40h112zm40-120v128h128V32zm120 120H328V40h112zM0 192v128h128V192zm120 120H8V200h112zm40-120v128h128V192zm120 120H168V200h112zm40-120v128h128V192zm120 120H328V200h112zM0 352v128h128V352zm120 120H8V360h112zm40-120v128h128V352zm120 120H168V360h112zm40-120v128h128V352z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/buy-n-large.svg������������������0000664�0000000�0000000�00000002032�14753064456�0030251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 32C133.27 32 7.79 132.32 7.79 256S133.27 480 288 480s280.21-100.32 280.21-224S442.73 32 288 32m-85.39 357.19L64.1 390.55l77.25-290.74h133.44c63.15 0 84.93 28.65 78 72.84a60 60 0 0 1-1.5 6.85 77.4 77.4 0 0 0-17.21-1.93c-42.35 0-76.69 33.88-76.69 75.65 0 37.14 27.14 68 62.93 74.45-18.24 37.16-56.16 60.92-117.71 61.52M358 207.11h32l-22.16 90.31h-35.41l-11.19-35.63-7.83 35.63h-37.83l26.63-90.31h31.34l15 36.75zm145.86 182.08H306.79L322.63 328a79 79 0 0 0 11.47.83c42.34 0 76.69-33.87 76.69-75.65 0-32.65-21-60.46-50.38-71.06l21.33-82.35h92.5l-53.05 205.36h103.87zM211.7 269.39H187l-13.8 56.47h24.7c16.14 0 32.11-3.18 37.94-26.65 5.56-22.31-7.99-29.82-24.14-29.82M233 170h-21.34L200 217.71h21.37c18 0 35.38-14.64 39.21-30.14C265.23 168.71 251.07 170 233 170"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/buysellads.svg�������������������0000664�0000000�0000000�00000000752�14753064456�0030305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m224 150.7 42.9 160.7h-85.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48m-65.3 325.3-94.5-298.7H159.8L65.3 405.3H156l111.7-91.6 24.2 91.6z"/></svg>����������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/canadian-maple-leaf.svg����������0000664�0000000�0000000�00000002063�14753064456�0031672�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M383.8 351.7c2.5-2.5 105.2-92.4 105.2-92.4l-17.5-7.5c-10-4.9-7.4-11.5-5-17.4 2.4-7.6 20.1-67.3 20.1-67.3s-47.7 10-57.7 12.5c-7.5 2.4-10-2.5-12.5-7.5s-15-32.4-15-32.4-52.6 59.9-55.1 62.3c-10 7.5-20.1 0-17.6-10 0-10 27.6-129.6 27.6-129.6s-30.1 17.4-40.1 22.4c-7.5 5-12.6 5-17.6-5C293.5 72.3 255.9 0 255.9 0s-37.5 72.3-42.5 79.8c-5 10-10 10-17.6 5-10-5-40.1-22.4-40.1-22.4S183.3 182 183.3 192c2.5 10-7.5 17.5-17.6 10-2.5-2.5-55.1-62.3-55.1-62.3S98.1 167 95.6 172s-5 9.9-12.5 7.5C73 177 25.4 167 25.4 167s17.6 59.7 20.1 67.3c2.4 6 5 12.5-5 17.4L23 259.3s102.6 89.9 105.2 92.4c5.1 5 10 7.5 5.1 22.5-5.1 15-10.1 35.1-10.1 35.1s95.2-20.1 105.3-22.6c8.7-.9 18.3 2.5 18.3 12.5S241 512 241 512h30s-5.8-102.7-5.8-112.8 9.5-13.4 18.4-12.5c10 2.5 105.2 22.6 105.2 22.6s-5-20.1-10-35.1 0-17.5 5-22.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/cc-amazon-pay.svg����������������0000664�0000000�0000000�00000007051�14753064456�0030574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M124.7 201.8c.1-11.8 0-23.5 0-35.3v-35.3c0-1.3.4-2 1.4-2.7 11.5-8 24.1-12.1 38.2-11.1 12.5.9 22.7 7 28.1 21.7 3.3 8.9 4.1 18.2 4.1 27.7 0 8.7-.7 17.3-3.4 25.6-5.7 17.8-18.7 24.7-35.7 23.9-11.7-.5-21.9-5-31.4-11.7-.9-.8-1.4-1.6-1.3-2.8m154.9 14.6c4.6 1.8 9.3 2 14.1 1.5 11.6-1.2 21.9-5.7 31.3-12.5.9-.6 1.3-1.3 1.3-2.5-.1-3.9 0-7.9 0-11.8 0-4-.1-8 0-12 0-1.4-.4-2-1.8-2.2-7-.9-13.9-2.2-20.9-2.9-7-.6-14-.3-20.8 1.9-6.7 2.2-11.7 6.2-13.7 13.1-1.6 5.4-1.6 10.8.1 16.2 1.6 5.5 5.2 9.2 10.4 11.2M576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48m-207.5 23.9c.4 1.7.9 3.4 1.6 5.1 16.5 40.6 32.9 81.3 49.5 121.9 1.4 3.5 1.7 6.4.2 9.9-2.8 6.2-4.9 12.6-7.8 18.7-2.6 5.5-6.7 9.5-12.7 11.2-4.2 1.1-8.5 1.3-12.9.9-2.1-.2-4.2-.7-6.3-.8-2.8-.2-4.2 1.1-4.3 4-.1 2.8-.1 5.6 0 8.3.1 4.6 1.6 6.7 6.2 7.5 4.7.8 9.4 1.6 14.2 1.7 14.3.3 25.7-5.4 33.1-17.9 2.9-4.9 5.6-10.1 7.7-15.4 19.8-50.1 39.5-100.3 59.2-150.5.6-1.5 1.1-3 1.3-4.6.4-2.4-.7-3.6-3.1-3.7-5.6-.1-11.1 0-16.7 0-3.1 0-5.3 1.4-6.4 4.3-.4 1.1-.9 2.3-1.3 3.4l-29.1 83.7c-2.1 6.1-4.2 12.1-6.5 18.6-.4-.9-.6-1.4-.8-1.9-10.8-29.9-21.6-59.9-32.4-89.8-1.7-4.7-3.5-9.5-5.3-14.2-.9-2.5-2.7-4-5.4-4-6.4-.1-12.8-.2-19.2-.1-2.2 0-3.3 1.6-2.8 3.7M242.4 206c1.7 11.7 7.6 20.8 18 26.6 9.9 5.5 20.7 6.2 31.7 4.6 12.7-1.9 23.9-7.3 33.8-15.5.4-.3.8-.6 1.4-1 .5 3.2.9 6.2 1.5 9.2.5 2.6 2.1 4.3 4.5 4.4 4.6.1 9.1.1 13.7 0 2.3-.1 3.8-1.6 4-3.9.1-.8.1-1.6.1-2.3v-88.8c0-3.6-.2-7.2-.7-10.8-1.6-10.8-6.2-19.7-15.9-25.4-5.6-3.3-11.8-5-18.2-5.9-3-.4-6-.7-9.1-1.1h-10c-.8.1-1.6.3-2.5.3-8.2.4-16.3 1.4-24.2 3.5-5.1 1.3-10 3.2-15 4.9-3 1-4.5 3.2-4.4 6.5.1 2.8-.1 5.6 0 8.3.1 4.1 1.8 5.2 5.7 4.1 6.5-1.7 13.1-3.5 19.7-4.8 10.3-1.9 20.7-2.7 31.1-1.2 5.4.8 10.5 2.4 14.1 7 3.1 4 4.2 8.8 4.4 13.7.3 6.9.2 13.9.3 20.8 0 .4-.1.7-.2 1.2-.4 0-.8 0-1.1-.1-8.8-2.1-17.7-3.6-26.8-4.1-9.5-.5-18.9.1-27.9 3.2-10.8 3.8-19.5 10.3-24.6 20.8-4.1 8.3-4.6 17-3.4 25.8M98.7 106.9v175.3c0 .8 0 1.7.1 2.5.2 2.5 1.7 4.1 4.1 4.2q8.85.15 17.7 0c2.5 0 4-1.7 4.1-4.1.1-.8.1-1.7.1-2.5v-60.7c.9.7 1.4 1.2 1.9 1.6 15 12.5 32.2 16.6 51.1 12.9 17.1-3.4 28.9-13.9 36.7-29.2 5.8-11.6 8.3-24.1 8.7-37 .5-14.3-1-28.4-6.8-41.7-7.1-16.4-18.9-27.3-36.7-30.9-2.7-.6-5.5-.8-8.2-1.2h-7c-1.2.2-2.4.3-3.6.5-11.7 1.4-22.3 5.8-31.8 12.7-2 1.4-3.9 3-5.9 4.5-.1-.5-.3-.8-.4-1.2-.4-2.3-.7-4.6-1.1-6.9-.6-3.9-2.5-5.5-6.4-5.6h-9.7c-5.9-.1-6.9 1-6.9 6.8M493.6 339c-2.7-.7-5.1 0-7.6 1-43.9 18.4-89.5 30.2-136.8 35.8-14.5 1.7-29.1 2.8-43.7 3.2-26.6.7-53.2-.8-79.6-4.3-17.8-2.4-35.5-5.7-53-9.9-37-8.9-72.7-21.7-106.7-38.8-8.8-4.4-17.4-9.3-26.1-14-3.8-2.1-6.2-1.5-8.2 2.1v1.7c1.2 1.6 2.2 3.4 3.7 4.8 36 32.2 76.6 56.5 122 72.9 21.9 7.9 44.4 13.7 67.3 17.5 14 2.3 28 3.8 42.2 4.5 3 .1 6 .2 9 .4.7 0 1.4.2 2.1.3h17.7c.7-.1 1.4-.3 2.1-.3 14.9-.4 29.8-1.8 44.6-4 21.4-3.2 42.4-8.1 62.9-14.7 29.6-9.6 57.7-22.4 83.4-40.1 2.8-1.9 5.7-3.8 8-6.2 4.3-4.4 2.3-10.4-3.3-11.9m50.4-27.7c-.8-4.2-4-5.8-7.6-7-5.7-1.9-11.6-2.8-17.6-3.3-11-.9-22-.4-32.8 1.6-12 2.2-23.4 6.1-33.5 13.1-1.2.8-2.4 1.8-3.1 3-.6.9-.7 2.3-.5 3.4.3 1.3 1.7 1.6 3 1.5.6 0 1.2 0 1.8-.1l19.5-2.1c9.6-.9 19.2-1.5 28.8-.8 4.1.3 8.1 1.2 12 2.2 4.3 1.1 6.2 4.4 6.4 8.7.3 6.7-1.2 13.1-2.9 19.5-3.5 12.9-8.3 25.4-13.3 37.8-.3.8-.7 1.7-.8 2.5-.4 2.5 1 4 3.4 3.5 1.4-.3 3-1.1 4-2.1 3.7-3.6 7.5-7.2 10.6-11.2 10.7-13.8 17-29.6 20.7-46.6.7-3 1.2-6.1 1.7-9.1.2-4.7.2-9.6.2-14.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/cc-amex.svg����������������������0000664�0000000�0000000�00000001534�14753064456�0027452�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48v-1.1h-61.7l-31.9-35.1-31.9 35.1H246.8V267.1H181l81.7-184.7h78.6l28.1 63.2V82.4h97.2l16.9 47.6 17-47.6H576V80c0-26.5-21.5-48-48-48H48C21.5 32 0 53.5 0 80zm440.4-21.7 42.2-46.3 42 46.3H576l-68-72.1 68-72.1h-50.6l-42 46.7-41.5-46.7h-51.4l67.5 72.5-67.4 71.6v-33.1h-83v-22.2h80.9v-32.3h-80.9v-22.4h83v-33.1h-122v143.2zm96.3-72 39.3 41.9v-83.3zm-36.3-92 36.9-100.6v100.6H576V103h-60.2l-32.2 89.3-31.9-89.3h-61.2v143.1L327.3 103h-51.2l-62.4 143.3h43l11.9-28.7h65.9l12 28.7h82.7V146L466 246.3zM282 185.4l19.5-46.9 19.4 46.9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/cc-apple-pay.svg�����������������0000664�0000000�0000000�00000002707�14753064456�0030413�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M302.2 218.4c0 17.2-10.5 27.1-29 27.1h-24.3v-54.2h24.4c18.4 0 28.9 9.8 28.9 27.1m47.5 62.6c0 8.3 7.2 13.7 18.5 13.7 14.4 0 25.2-9.1 25.2-21.9v-7.7l-23.5 1.5c-13.3.9-20.2 5.8-20.2 14.4M576 79v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48M127.8 197.2c8.4.7 16.8-4.2 22.1-10.4 5.2-6.4 8.6-15 7.7-23.7-7.4.3-16.6 4.9-21.9 11.3-4.8 5.5-8.9 14.4-7.9 22.8m60.6 74.5c-.2-.2-19.6-7.6-19.8-30-.2-18.7 15.3-27.7 16-28.2-8.8-13-22.4-14.4-27.1-14.7-12.2-.7-22.6 6.9-28.4 6.9-5.9 0-14.7-6.6-24.3-6.4-12.5.2-24.2 7.3-30.5 18.6-13.1 22.6-3.4 56 9.3 74.4 6.2 9.1 13.7 19.1 23.5 18.7 9.3-.4 13-6 24.2-6 11.3 0 14.5 6 24.3 5.9 10.2-.2 16.5-9.1 22.8-18.2 6.9-10.4 9.8-20.4 10-21m135.4-53.4c0-26.6-18.5-44.8-44.9-44.8h-51.2v136.4h21.2v-46.6h29.3c26.8 0 45.6-18.4 45.6-45m90 23.7c0-19.7-15.8-32.4-40-32.4-22.5 0-39.1 12.9-39.7 30.5h19.1c1.6-8.4 9.4-13.9 20-13.9 13 0 20.2 6 20.2 17.2v7.5l-26.4 1.6c-24.6 1.5-37.9 11.6-37.9 29.1 0 17.7 13.7 29.4 33.4 29.4 13.3 0 25.6-6.7 31.2-17.4h.4V310h19.6v-68zM516 210.9h-21.5l-24.9 80.6h-.4l-24.9-80.6H422l35.9 99.3-1.9 6c-3.2 10.2-8.5 14.2-17.9 14.2-1.7 0-4.9-.2-6.2-.3v16.4c1.2.4 6.5.5 8.1.5 20.7 0 30.4-7.9 38.9-31.8z"/></svg>���������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/cc-diners-club.svg���������������0000664�0000000�0000000�00000001440�14753064456�0030723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M239.7 79.9c-96.9 0-175.8 78.6-175.8 175.8 0 96.9 78.9 175.8 175.8 175.8 97.2 0 175.8-78.9 175.8-175.8 0-97.2-78.6-175.8-175.8-175.8m-39.9 279.6c-41.7-15.9-71.4-56.4-71.4-103.8s29.7-87.9 71.4-104.1zm79.8.3V151.6c41.7 16.2 71.4 56.7 71.4 104.1s-29.7 87.9-71.4 104.1M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48M329.7 448h-90.3c-106.2 0-193.8-85.5-193.8-190.2C45.6 143.2 133.2 64 239.4 64h90.3c105 0 200.7 79.2 200.7 193.8 0 104.7-95.7 190.2-200.7 190.2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/cc-discover.svg������������������0000664�0000000�0000000�00000002640�14753064456�0030335�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M520.4 196.1c0-7.9-5.5-12.1-15.6-12.1h-4.9v24.9h4.7c10.3 0 15.8-4.4 15.8-12.8M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48m-44.1 138.9c22.6 0 52.9-4.1 52.9 24.4 0 12.6-6.6 20.7-18.7 23.2l25.8 34.4h-19.6l-22.2-32.8h-2.2v32.8h-16zm-55.9.1h45.3v14H444v18.2h28.3V217H444v22.2h29.3V253H428zm-68.7 0 21.9 55.2 22.2-55.2h17.5l-35.5 84.2h-8.6l-35-84.2zm-55.9-3c24.7 0 44.6 20 44.6 44.6 0 24.7-20 44.6-44.6 44.6-24.7 0-44.6-20-44.6-44.6 0-24.7 20-44.6 44.6-44.6m-49.3 6.1v19c-20.1-20.1-46.8-4.7-46.8 19 0 25 27.5 38.5 46.8 19.2v19c-29.7 14.3-63.3-5.7-63.3-38.2 0-31.2 33.1-53 63.3-38m-97.2 66.3c11.4 0 22.4-15.3-3.3-24.4-15-5.5-20.2-11.4-20.2-22.7 0-23.2 30.6-31.4 49.7-14.3l-8.4 10.8c-10.4-11.6-24.9-6.2-24.9 2.5 0 4.4 2.7 6.9 12.3 10.3 18.2 6.6 23.6 12.5 23.6 25.6 0 29.5-38.8 37.4-56.6 11.3l10.3-9.9c3.7 7.1 9.9 10.8 17.5 10.8M55.4 253H32v-82h23.4c26.1 0 44.1 17 44.1 41.1 0 18.5-13.2 40.9-44.1 40.9m67.5 0h-16v-82h16zM544 433c0 8.2-6.8 15-15 15H128c189.6-35.6 382.7-139.2 416-160zM74.1 191.6c-5.2-4.9-11.6-6.6-21.9-6.6H48v54.2h4.2c10.3 0 17-2 21.9-6.4 5.7-5.2 8.9-12.8 8.9-20.7s-3.2-15.5-8.9-20.5"/></svg>������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/cc-jcb.svg�����������������������0000664�0000000�0000000�00000001724�14753064456�0027257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M431.5 244.3V212c41.2 0 38.5.2 38.5.2 7.3 1.3 13.3 7.3 13.3 16 0 8.8-6 14.5-13.3 15.8-1.2.4-3.3.3-38.5.3m42.8 20.2c-2.8-.7-3.3-.5-42.8-.5v35c39.6 0 40 .2 42.8-.5 7.5-1.5 13.5-8 13.5-17 0-8.7-6-15.5-13.5-17M576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48M182 192.3h-57c0 67.1 10.7 109.7-35.8 109.7-19.5 0-38.8-5.7-57.2-14.8v28c30 8.3 68 8.3 68 8.3 97.9 0 82-47.7 82-131.2m178.5 4.5c-63.4-16-165-14.9-165 59.3 0 77.1 108.2 73.6 165 59.2V287C312.9 311.7 253 309 253 256s59.8-55.6 107.5-31.2zM544 286.5c0-18.5-16.5-30.5-38-32v-.8c19.5-2.7 30.3-15.5 30.3-30.2 0-19-15.7-30-37-31 0 0 6.3-.3-120.3-.3v127.5h122.7c24.3.1 42.3-12.9 42.3-33.2"/></svg>��������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/cc-mastercard.svg����������������0000664�0000000�0000000�00000006073�14753064456�0030650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M482.9 410.3c0 6.8-4.6 11.7-11.2 11.7-6.8 0-11.2-5.2-11.2-11.7s4.4-11.7 11.2-11.7c6.6 0 11.2 5.2 11.2 11.7m-310.8-11.7c-7.1 0-11.2 5.2-11.2 11.7S165 422 172.1 422c6.5 0 10.9-4.9 10.9-11.7-.1-6.5-4.4-11.7-10.9-11.7m117.5-.3c-5.4 0-8.7 3.5-9.5 8.7h19.1c-.9-5.7-4.4-8.7-9.6-8.7m107.8.3c-6.8 0-10.9 5.2-10.9 11.7s4.1 11.7 10.9 11.7 11.2-4.9 11.2-11.7c0-6.5-4.4-11.7-11.2-11.7m105.9 26.1c0 .3.3.5.3 1.1 0 .3-.3.5-.3 1.1-.3.3-.3.5-.5.8-.3.3-.5.5-1.1.5-.3.3-.5.3-1.1.3-.3 0-.5 0-1.1-.3-.3 0-.5-.3-.8-.5-.3-.3-.5-.5-.5-.8-.3-.5-.3-.8-.3-1.1 0-.5 0-.8.3-1.1 0-.5.3-.8.5-1.1.3-.3.5-.3.8-.5.5-.3.8-.3 1.1-.3.5 0 .8 0 1.1.3.5.3.8.3 1.1.5s.2.6.5 1.1m-2.2 1.4c.5 0 .5-.3.8-.3.3-.3.3-.5.3-.8s0-.5-.3-.8c-.3 0-.5-.3-1.1-.3h-1.6v3.5h.8V426h.3l1.1 1.4h.8zM576 81v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V81c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48M64 220.6c0 76.5 62.1 138.5 138.5 138.5 27.2 0 53.9-8.2 76.5-23.1-72.9-59.3-72.4-171.2 0-230.5-22.6-15-49.3-23.1-76.5-23.1-76.4-.1-138.5 62-138.5 138.2m224 108.8c70.5-55 70.2-162.2 0-217.5-70.2 55.3-70.5 162.6 0 217.5m-142.3 76.3c0-8.7-5.7-14.4-14.7-14.7-4.6 0-9.5 1.4-12.8 6.5-2.4-4.1-6.5-6.5-12.2-6.5-3.8 0-7.6 1.4-10.6 5.4V392h-8.2v36.7h8.2c0-18.9-2.5-30.2 9-30.2 10.2 0 8.2 10.2 8.2 30.2h7.9c0-18.3-2.5-30.2 9-30.2 10.2 0 8.2 10 8.2 30.2h8.2v-23zm44.9-13.7h-7.9v4.4c-2.7-3.3-6.5-5.4-11.7-5.4-10.3 0-18.2 8.2-18.2 19.3 0 11.2 7.9 19.3 18.2 19.3 5.2 0 9-1.9 11.7-5.4v4.6h7.9zm40.5 25.6c0-15-22.9-8.2-22.9-15.2 0-5.7 11.9-4.8 18.5-1.1l3.3-6.5c-9.4-6.1-30.2-6-30.2 8.2 0 14.3 22.9 8.3 22.9 15 0 6.3-13.5 5.8-20.7.8l-3.5 6.3c11.2 7.6 32.6 6 32.6-7.5m35.4 9.3-2.2-6.8c-3.8 2.1-12.2 4.4-12.2-4.1v-16.6h13.1V392h-13.1v-11.2h-8.2V392h-7.6v7.3h7.6V416c0 17.6 17.3 14.4 22.6 10.9m13.3-13.4h27.5c0-16.2-7.4-22.6-17.4-22.6-10.6 0-18.2 7.9-18.2 19.3 0 20.5 22.6 23.9 33.8 14.2l-3.8-6c-7.8 6.4-19.6 5.8-21.9-4.9m59.1-21.5c-4.6-2-11.6-1.8-15.2 4.4V392h-8.2v36.7h8.2V408c0-11.6 9.5-10.1 12.8-8.4zm10.6 18.3c0-11.4 11.6-15.1 20.7-8.4l3.8-6.5c-11.6-9.1-32.7-4.1-32.7 15 0 19.8 22.4 23.8 32.7 15l-3.8-6.5c-9.2 6.5-20.7 2.6-20.7-8.6m66.7-18.3H408v4.4c-8.3-11-29.9-4.8-29.9 13.9 0 19.2 22.4 24.7 29.9 13.9v4.6h8.2zm33.7 0c-2.4-1.2-11-2.9-15.2 4.4V392h-7.9v36.7h7.9V408c0-11 9-10.3 12.8-8.4zm40.3-14.9h-7.9v19.3c-8.2-10.9-29.9-5.1-29.9 13.9 0 19.4 22.5 24.6 29.9 13.9v4.6h7.9zm7.6-75.1v4.6h.8V302h1.9v-.8h-4.6v.8zm6.6 123.8c0-.5 0-1.1-.3-1.6-.3-.3-.5-.8-.8-1.1s-.8-.5-1.1-.8c-.5 0-1.1-.3-1.6-.3-.3 0-.8.3-1.4.3-.5.3-.8.5-1.1.8-.5.3-.8.8-.8 1.1-.3.5-.3 1.1-.3 1.6 0 .3 0 .8.3 1.4 0 .3.3.8.8 1.1.3.3.5.5 1.1.8.5.3 1.1.3 1.4.3.5 0 1.1 0 1.6-.3.3-.3.8-.5 1.1-.8s.5-.8.8-1.1c.3-.6.3-1.1.3-1.4m3.2-124.7h-1.4l-1.6 3.5-1.6-3.5h-1.4v5.4h.8v-4.1l1.6 3.5h1.1l1.4-3.5v4.1h1.1zm4.4-80.5c0-76.2-62.1-138.3-138.5-138.3-27.2 0-53.9 8.2-76.5 23.1 72.1 59.3 73.2 171.5 0 230.5 22.6 15 49.5 23.1 76.5 23.1 76.4.1 138.5-61.9 138.5-138.4"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/cc-paypal.svg��������������������0000664�0000000�0000000�00000003646�14753064456�0030014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M186.3 258.2c0 12.2-9.7 21.5-22 21.5-9.2 0-16-5.2-16-15 0-12.2 9.5-22 21.7-22 9.3 0 16.3 5.7 16.3 15.5M80.5 209.7h-4.7c-1.5 0-3 1-3.2 2.7l-4.3 26.7 8.2-.3c11 0 19.5-1.5 21.5-14.2 2.3-13.4-6.2-14.9-17.5-14.9m284 0H360c-1.8 0-3 1-3.2 2.7l-4.2 26.7 8-.3c13 0 22-3 22-18-.1-10.6-9.6-11.1-18.1-11.1M576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48M128.3 215.4c0-21-16.2-28-34.7-28h-40c-2.5 0-5 2-5.2 4.7L32 294.2c-.3 2 1.2 4 3.2 4h19c2.7 0 5.2-2.9 5.5-5.7l4.5-26.6c1-7.2 13.2-4.7 18-4.7 28.6 0 46.1-17 46.1-45.8m84.2 8.8h-19c-3.8 0-4 5.5-4.2 8.2-5.8-8.5-14.2-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9 0 20.2-4.9 26.5-11.9-.5 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H200c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9m40.5 97.9 63.7-92.6c.5-.5.5-1 .5-1.7 0-1.7-1.5-3.5-3.2-3.5h-19.2c-1.7 0-3.5 1-4.5 2.5l-26.5 39-11-37.5c-.8-2.2-3-4-5.5-4h-18.7c-1.7 0-3.2 1.8-3.2 3.5 0 1.2 19.5 56.8 21.2 62.1-2.7 3.8-20.5 28.6-20.5 31.6 0 1.8 1.5 3.2 3.2 3.2h19.2c1.8-.1 3.5-1.1 4.5-2.6m159.3-106.7c0-21-16.2-28-34.7-28h-39.7c-2.7 0-5.2 2-5.5 4.7l-16.2 102c-.2 2 1.3 4 3.2 4h20.5c2 0 3.5-1.5 4-3.2l4.5-29c1-7.2 13.2-4.7 18-4.7 28.4 0 45.9-17 45.9-45.8m84.2 8.8h-19c-3.8 0-4 5.5-4.3 8.2-5.5-8.5-14-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9.3 0 20.5-4.9 26.5-11.9-.3 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H484c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9m47.5-33.3c0-2-1.5-3.5-3.2-3.5h-18.5c-1.5 0-3 1.2-3.2 2.7l-16.2 104-.3.5c0 1.8 1.5 3.5 3.5 3.5h16.5c2.5 0 5-2.9 5.2-5.7L544 191.2zm-90 51.8c-12.2 0-21.7 9.7-21.7 22 0 9.7 7 15 16.2 15 12 0 21.7-9.2 21.7-21.5.1-9.8-6.9-15.5-16.2-15.5"/></svg>������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/cc-stripe.svg��������������������0000664�0000000�0000000�00000002723�14753064456�0030027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M492.4 220.8c-8.9 0-18.7 6.7-18.7 22.7h36.7c0-16-9.3-22.7-18-22.7M375 223.4c-8.2 0-13.3 2.9-17 7l.2 52.8c3.5 3.7 8.5 6.7 16.8 6.7 13.1 0 21.9-14.3 21.9-33.4 0-18.6-9-33.2-21.9-33.1M528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48M122.2 281.1c0 25.6-20.3 40.1-49.9 40.3-12.2 0-25.6-2.4-38.8-8.1v-33.9c12 6.4 27.1 11.3 38.9 11.3 7.9 0 13.6-2.1 13.6-8.7 0-17-54-10.6-54-49.9 0-25.2 19.2-40.2 48-40.2 11.8 0 23.5 1.8 35.3 6.5v33.4c-10.8-5.8-24.5-9.1-35.3-9.1-7.5 0-12.1 2.2-12.1 7.7 0 16 54.3 8.4 54.3 50.7m68.8-56.6h-27V275c0 20.9 22.5 14.4 27 12.6v28.9c-4.7 2.6-13.3 4.7-24.9 4.7-21.1 0-36.9-15.5-36.9-36.5l.2-113.9 34.7-7.4v30.8H191zm74 2.4c-4.5-1.5-18.7-3.6-27.1 7.4v84.4h-35.5V194.2h30.7l2.2 10.5c8.3-15.3 24.9-12.2 29.6-10.5h.1zm44.1 91.8h-35.7V194.2h35.7zm0-142.9-35.7 7.6v-28.9l35.7-7.6zm74.1 145.5c-12.4 0-20-5.3-25.1-9l-.1 40.2-35.5 7.5V194.2h31.3l1.8 8.8c4.9-4.5 13.9-11.1 27.8-11.1 24.9 0 48.4 22.5 48.4 63.8 0 45.1-23.2 65.5-48.6 65.6m160.4-51.5h-69.5c1.6 16.6 13.8 21.5 27.6 21.5 14.1 0 25.2-3 34.9-7.9V312c-9.7 5.3-22.4 9.2-39.4 9.2-34.6 0-58.8-21.7-58.8-64.5 0-36.2 20.5-64.9 54.3-64.9 33.7 0 51.3 28.7 51.3 65.1 0 3.5-.3 10.9-.4 12.9"/></svg>���������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/cc-visa.svg����������������������0000664�0000000�0000000�00000002137�14753064456�0027462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M470.1 231.3s7.6 37.2 9.3 45H446c3.3-8.9 16-43.5 16-43.5-.2.3 3.3-9.1 5.3-14.9zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48M152.5 331.2 215.7 176h-42.5l-39.3 106-4.3-21.5-14-71.4c-2.3-9.9-9.4-12.7-18.2-13.1H32.7l-.7 3.1c15.8 4 29.9 9.8 42.2 17.1l35.8 135zm94.4.2L272.1 176h-40.2l-25.1 155.4zm139.9-50.8c.2-17.7-10.6-31.2-33.7-42.3-14.1-7.1-22.7-11.9-22.7-19.2.2-6.6 7.3-13.4 23.1-13.4 13.1-.3 22.7 2.8 29.9 5.9l3.6 1.7 5.5-33.6c-7.9-3.1-20.5-6.6-36-6.6-39.7 0-67.6 21.2-67.8 51.4-.3 22.3 20 34.7 35.2 42.2 15.5 7.6 20.8 12.6 20.8 19.3-.2 10.4-12.6 15.2-24.1 15.2-16 0-24.6-2.5-37.7-8.3l-5.3-2.5-5.6 34.9c9.4 4.3 26.8 8.1 44.8 8.3 42.2.1 69.7-20.8 70-53M528 331.4 495.6 176h-31.1c-9.6 0-16.9 2.8-21 12.9l-59.7 142.5H426s6.9-19.2 8.4-23.3H486c1.2 5.5 4.8 23.3 4.8 23.3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/centercode.svg�������������������0000664�0000000�0000000�00000001204�14753064456�0030242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M329.2 268.6c-3.8 35.2-35.4 60.6-70.6 56.8S198 290 201.8 254.8s35.4-60.6 70.6-56.8c35.1 3.8 60.6 35.4 56.8 70.6m-85.8 235.1C96.7 496-8.2 365.5 10.1 224.3c11.2-86.6 65.8-156.9 139.1-192 161-77.1 349.7 37.4 354.7 216.6 4.1 147-118.4 262.2-260.5 254.8m179.9-180c27.9-118-160.5-205.9-237.2-234.2-57.5 56.3-69.1 188.6-33.8 344.4 68.8 15.8 169.1-26.4 271-110.2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/centos.svg�����������������������0000664�0000000�0000000�00000002114�14753064456�0027423�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m289.6 97.5 31.6 31.7-76.3 76.5V97.5zm-162.4 31.7 76.3 76.5V97.5h-44.7zm41.5-41.6h44.7v127.9l10.8 10.8 10.8-10.8V87.6h44.7L224.2 32zm26.2 168.1-10.8-10.8H55.5v-44.8L0 255.7l55.5 55.6v-44.8h128.6zm79.3-20.7h107.9v-44.8l-31.6-31.7zm173.3 20.7L392 200.1v44.8H264.3l-10.8 10.8 10.8 10.8H392v44.8zM65.4 176.2l32.5-31.7 90.3 90.5h15.3v-15.3l-90.3-90.5 31.6-31.7H65.4zm316.7-78.7h-78.5l31.6 31.7-90.3 90.5V235h15.3l90.3-90.5 31.6 31.7zM203.5 413.9V305.8l-76.3 76.5 31.6 31.7h44.7zM65.4 235h108.8l-76.3-76.5-32.5 31.7zm316.7 100.2-31.6 31.7-90.3-90.5h-15.3v15.3l90.3 90.5-31.6 31.7h78.5zm0-58.8H274.2l76.3 76.5 31.6-31.7zm-60.9 105.8-76.3-76.5v108.1h44.7zM97.9 352.9l76.3-76.5H65.4v44.8zm181.8 70.9H235V295.9l-10.8-10.8-10.8 10.8v127.9h-44.7l55.5 55.6zm-166.5-41.6 90.3-90.5v-15.3h-15.3l-90.3 90.5-32.5-31.7v78.7h79.4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/chrome.svg�����������������������0000664�0000000�0000000�00000001336�14753064456�0027412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 256c0-46.6 12.47-90.4 34.27-128.9L144.1 318.3C166 357.5 207.9 384 256 384c14.3 0 27.1-2.3 40.8-6.6l-76.3 132.2C95.9 492.3 0 385.3 0 256m365.1 65.6c12.3-19.2 18.9-42.5 18.9-65.6 0-38.2-16.8-72.5-43.3-96h152.7c12 29.6 18.6 62.1 18.6 96 0 141.4-114.6 255.1-256 256zM477.8 128H256c-62.9 0-113.7 44.1-125.5 102.7L54.19 98.47C101 38.53 174 0 256 0c94.8 0 177.5 51.48 221.8 128M168 256c0-48.6 39.4-88 88-88s88 39.4 88 88-39.4 88-88 88-88-39.4-88-88"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/chromecast.svg�������������������0000664�0000000�0000000�00000001171�14753064456�0030262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M447.8 64H64c-23.6 0-42.7 19.1-42.7 42.7v63.9H64v-63.9h383.8v298.6H298.6V448H448c23.6 0 42.7-19.1 42.7-42.7V106.7c0-23.6-19.3-42.7-42.9-42.7M21.3 383.6v63.9h63.9c0-35.3-28.6-63.9-63.9-63.9m0-85V341c58.9 0 106.6 48.1 106.6 107h42.7c.1-82.4-66.9-149.3-149.3-149.4M213.4 448h42.7c-.5-129.5-105.3-234.3-234.8-234.6v42.4c106-.2 192 86.2 192.1 192.2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/cloudflare.svg�������������������0000664�0000000�0000000�00000002372�14753064456�0030256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m407.906 319.913-230.8-2.928a4.58 4.58 0 0 1-3.632-1.926 4.65 4.65 0 0 1-.494-4.147 6.14 6.14 0 0 1 5.361-4.076l232.94-2.936c27.631-1.26 57.546-23.574 68.022-50.784l13.286-34.542a7.9 7.9 0 0 0 .524-2.936 7.7 7.7 0 0 0-.164-1.631A151.91 151.91 0 0 0 201.257 198.4 68.12 68.12 0 0 0 94.2 269.59C41.924 271.106 0 313.728 0 366.12a96 96 0 0 0 1.029 13.958 4.51 4.51 0 0 0 4.445 3.871l426.1.051c.043 0 .08-.019.122-.02a5.61 5.61 0 0 0 5.271-4l3.273-11.265c3.9-13.4 2.448-25.8-4.1-34.9-6.016-8.392-16.05-13.328-28.234-13.902m105.95-98.813c-2.141 0-4.271.062-6.391.164a3.77 3.77 0 0 0-3.324 2.653l-9.077 31.193c-3.9 13.4-2.449 25.786 4.1 34.89 6.02 8.4 16.054 13.323 28.238 13.9l49.2 2.939a4.49 4.49 0 0 1 3.51 1.894 4.64 4.64 0 0 1 .514 4.169 6.15 6.15 0 0 1-5.351 4.075l-51.125 2.939c-27.754 1.27-57.669 23.574-68.145 50.784l-3.695 9.606a2.716 2.716 0 0 0 2.427 3.68c.046 0 .088.017.136.017h175.91a4.69 4.69 0 0 0 4.539-3.37 124.8 124.8 0 0 0 4.682-34C640 277.3 583.524 221.1 513.856 221.1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/cloudscale.svg�������������������0000664�0000000�0000000�00000001504�14753064456�0030250�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m318.1 154-9.4 7.6c-22.5-19.3-51.5-33.6-83.3-33.6C153.8 128 96 188.8 96 260.3c0 6.6.4 13.1 1.4 19.4-2-56 41.8-97.4 92.6-97.4 24.2 0 46.2 9.4 62.6 24.7l-25.2 20.4c-8.3-.9-16.8 1.8-23.1 8.1-11.1 11-11.1 28.9 0 40 11.1 11 28.9 11 40 0 6.3-6.3 9-14.9 8.1-23.1l75.2-88.8c6.3-6.5-3.3-15.9-9.5-9.6m-83.8 111.5c-5.6 5.5-14.6 5.5-20.2 0-5.6-5.6-5.6-14.6 0-20.2s14.6-5.6 20.2 0 5.6 14.7 0 20.2M224 32C100.5 32 0 132.5 0 256s100.5 224 224 224 224-100.5 224-224S347.5 32 224 32m0 384c-88.2 0-160-71.8-160-160S135.8 96 224 96s160 71.8 160 160-71.8 160-160 160"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/cloudsmith.svg�������������������0000664�0000000�0000000�00000000632�14753064456�0030306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M512 227.6v56.9L284.4 512h-56.8L0 284.4v-56.8L227.6 0h56.9zm-256 162a133.6 133.6 0 1 0 0-267.1 133.6 133.6 0 1 0 0 267.1"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/cloudversify.svg�����������������0000664�0000000�0000000�00000003033�14753064456�0030647�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 616 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M148.6 304c8.2 68.5 67.4 115.5 146 111.3 51.2 43.3 136.8 45.8 186.4-5.6 69.2 1.1 118.5-44.6 131.5-99.5 14.8-62.5-18.2-132.5-92.1-155.1-33-88.1-131.4-101.5-186.5-85-57.3 17.3-84.3 53.2-99.3 109.7-7.8 2.7-26.5 8.9-45 24.1 11.7 0 15.2 8.9 15.2 19.5v20.4c0 10.7-8.7 19.5-19.5 19.5h-20.2c-10.7 0-19.5-6-19.5-16.7V240H98.8C95 240 88 244.3 88 251.9v40.4c0 6.4 5.3 11.8 11.7 11.8h48.9zm227.4 8c-10.7 46.3 21.7 72.4 55.3 86.8C324.1 432.6 259.7 348 296 288c-33.2 21.6-33.7 71.2-29.2 92.9-17.9-12.4-53.8-32.4-57.4-79.8-3-39.9 21.5-75.7 57-93.9C297 191.4 369.9 198.7 400 248c-14.1-48-53.8-70.1-101.8-74.8 30.9-30.7 64.4-50.3 114.2-43.7 69.8 9.3 133.2 82.8 67.7 150.5 35-16.3 48.7-54.4 47.5-76.9l10.5 19.6c11.8 22 15.2 47.6 9.4 72-9.2 39-40.6 68.8-79.7 76.5-32.1 6.3-83.1-5.1-91.8-59.2M128 208H88.2c-8.9 0-16.2-7.3-16.2-16.2v-39.6c0-8.9 7.3-16.2 16.2-16.2H128c8.9 0 16.2 7.3 16.2 16.2v39.6c0 8.9-7.3 16.2-16.2 16.2M10.1 168C4.5 168 0 163.5 0 157.9v-27.8c0-5.6 4.5-10.1 10.1-10.1h27.7c5.5 0 10.1 4.5 10.1 10.1v27.8c0 5.6-4.5 10.1-10.1 10.1zM168 142.7v-21.4c0-5.1 4.2-9.3 9.3-9.3h21.4c5.1 0 9.3 4.2 9.3 9.3v21.4c0 5.1-4.2 9.3-9.3 9.3h-21.4c-5.1 0-9.3-4.2-9.3-9.3M56 235.5v25c0 6.3-5.1 11.5-11.4 11.5H19.4C13.1 272 8 266.8 8 260.5v-25c0-6.3 5.1-11.5 11.4-11.5h25.1c6.4 0 11.5 5.2 11.5 11.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/cmplid.svg�����������������������0000664�0000000�0000000�00000003474�14753064456�0027412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M226.119 388.165a3.82 3.82 0 0 0-2.294-3.5 3.95 3.95 0 0 0-1.629-.385L72.6 384.3a19.243 19.243 0 0 1-17.924-26.025l26.909-102.583a35.72 35.72 0 0 1 32.373-26h148.567a7.07 7.07 0 0 0 6.392-5.194l10.769-41.131a3.85 3.85 0 0 0-2.237-4.937 3.8 3.8 0 0 0-1.377-.261q-.094-.001-.189.005H127.38a106.8 106.8 0 0 0-96.99 77.1L3.483 358.824A57.47 57.47 0 0 0 57.314 436q1.43 0 2.86-.072h148.568a7.13 7.13 0 0 0 6.391-5.193l10.706-41.135a3.8 3.8 0 0 0 .28-1.435M306.658 81.2a3.9 3.9 0 0 0 .251-1.367 3.813 3.813 0 0 0-3.83-3.833h-41.192a7.03 7.03 0 0 0-6.387 5.2l-21.347 80.915h51.131ZM180.364 368.249H231.5l31.952-122.559h-51.131ZM511.853 79.723a3.81 3.81 0 0 0-3.8-3.661q-.089-.002-.23.007h-41a7.1 7.1 0 0 0-6.584 5.129L368.91 430.634a3.5 3.5 0 0 0-.262 1.335 3.873 3.873 0 0 0 3.864 3.863h41.169a7.07 7.07 0 0 0 6.392-5.193L511.533 81.2a3.6 3.6 0 0 0 .32-1.477M324.649 384.47h-41a7.2 7.2 0 0 0-6.392 5.194L266.52 430.8a3.7 3.7 0 0 0-.268 1.374 3.783 3.783 0 0 0 3.771 3.826c.06 0 .166 0 .3-.012h40.905a7.04 7.04 0 0 0 6.391-5.193l10.769-41.131a3.75 3.75 0 0 0-3.445-5.208c-.108 0-.217 0-.326.014Zm311.324-308.4h-41a7.07 7.07 0 0 0-6.392 5.129l-91.46 349.436a4.1 4.1 0 0 0-.229 1.347 3.87 3.87 0 0 0 3.863 3.851h41.137a7.1 7.1 0 0 0 6.392-5.193L639.68 81.2a3.6 3.6 0 0 0 .32-1.475 3.84 3.84 0 0 0-3.821-3.564q-.102-.001-.206.006ZM371.562 225.236l10.8-41.1a4.4 4.4 0 0 0 .227-1.388 3.87 3.87 0 0 0-3.861-3.842h-41.269a7.29 7.29 0 0 0-6.391 5.226l-10.834 41.1a4.4 4.4 0 0 0-.26 1.493v.206a3.776 3.776 0 0 0 3.757 3.507c.076 0 .18 0 .3-.012h41.129a7.03 7.03 0 0 0 6.402-5.19"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/codepen.svg����������������������0000664�0000000�0000000�00000001570�14753064456�0027552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m502.285 159.704-234-156c-7.987-4.915-16.511-4.96-24.571 0l-234 156C3.714 163.703 0 170.847 0 177.989v155.999c0 7.143 3.714 14.286 9.715 18.286l234 156.022c7.987 4.915 16.511 4.96 24.571 0l234-156.022c6-3.999 9.715-11.143 9.715-18.286V177.989c-.001-7.142-3.715-14.286-9.716-18.285M278 63.131l172.286 114.858-76.857 51.429L278 165.703zm-44 0v102.572l-95.429 63.715-76.857-51.429zM44 219.132l55.143 36.857L44 292.846zm190 229.715L61.714 333.989l76.857-51.429L234 346.275zm22-140.858-77.715-52 77.715-52 77.715 52zm22 140.858V346.275l95.429-63.715 76.857 51.429zm190-156.001-55.143-36.857L468 219.132z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/codiepie.svg���������������������0000664�0000000�0000000�00000001332�14753064456�0027712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 472 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M422.5 202.9c30.7 0 33.5 53.1-.3 53.1h-10.8v44.3h-26.6v-97.4zM472 352.6C429.9 444.5 350.4 504 248 504 111 504 0 393 0 256S111 8 248 8c97.4 0 172.8 53.7 218.2 138.4l-186 108.8zm-38.5 12.5-60.3-30.7c-27.1 44.3-70.4 71.4-122.4 71.4-82.5 0-149.2-66.7-149.2-148.9 0-82.5 66.7-149.2 149.2-149.2 48.4 0 88.9 23.5 116.9 63.4l59.5-34.6c-40.7-62.6-104.7-100-179.2-100-121.2 0-219.5 98.3-219.5 219.5S126.8 475.5 248 475.5c78.6 0 146.5-42.1 185.5-110.4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/confluence.svg�������������������0000664�0000000�0000000�00000001440�14753064456�0030252�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M2.3 412.2c-4.5 7.6-2.1 17.5 5.5 22.2l105.9 65.2c7.7 4.7 17.7 2.4 22.4-5.3 0-.1.1-.2.1-.2 67.1-112.2 80.5-95.9 280.9-.7 8.1 3.9 17.8.4 21.7-7.7.1-.1.1-.3.2-.4l50.4-114.1c3.6-8.1-.1-17.6-8.1-21.3-22.2-10.4-66.2-31.2-105.9-50.3C127.5 179 44.6 345.3 2.3 412.2m507.4-312.1c4.5-7.6 2.1-17.5-5.5-22.2L398.4 12.8c-7.5-5-17.6-3.1-22.6 4.4-.2.3-.4.6-.6 1-67.3 112.6-81.1 95.6-280.6.9-8.1-3.9-17.8-.4-21.7 7.7-.1.1-.1.3-.2.4L22.2 141.3c-3.6 8.1.1 17.6 8.1 21.3 22.2 10.4 66.3 31.2 106 50.4 248 120 330.8-45.4 373.4-112.9"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/connectdevelop.svg���������������0000664�0000000�0000000�00000006056�14753064456�0031151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m550.5 241-50.089-86.786c1.071-2.142 1.875-4.553 1.875-7.232 0-8.036-6.696-14.733-14.732-15.001l-55.447-95.893c.536-1.607 1.071-3.214 1.071-4.821 0-8.571-6.964-15.268-15.268-15.268-4.821 0-8.839 2.143-11.786 5.625H299.518C296.839 18.143 292.821 16 288 16s-8.839 2.143-11.518 5.625H170.411C167.464 18.143 163.447 16 158.625 16c-8.303 0-15.268 6.696-15.268 15.268 0 1.607.536 3.482 1.072 4.821l-55.983 97.233c-5.356 2.41-9.107 7.5-9.107 13.661 0 .535.268 1.071.268 1.607l-53.304 92.143c-7.232 1.339-12.59 7.5-12.59 15 0 7.232 5.089 13.393 12.054 15l55.179 95.358c-.536 1.607-.804 2.946-.804 4.821 0 7.232 5.089 13.393 12.054 14.732l51.697 89.732c-.536 1.607-1.071 3.482-1.071 5.357 0 8.571 6.964 15.268 15.268 15.268 4.821 0 8.839-2.143 11.518-5.357h106.875C279.161 493.857 283.447 496 288 496s8.839-2.143 11.518-5.357h107.143c2.678 2.946 6.696 4.821 10.982 4.821 8.571 0 15.268-6.964 15.268-15.268 0-1.607-.267-2.946-.803-4.285l51.697-90.268c6.964-1.339 12.054-7.5 12.054-14.732q0-2.41-.804-4.821l54.911-95.358c6.964-1.339 12.322-7.5 12.322-15-.002-7.232-5.092-13.393-11.788-14.732M153.535 450.732l-43.66-75.803h43.66zm0-83.839h-43.66c-.268-1.071-.804-2.142-1.339-3.214l44.999-47.41zm0-62.411-50.357 53.304c-1.339-.536-2.679-1.34-4.018-1.607L43.447 259.75c.535-1.339.535-2.679.535-4.018s0-2.41-.268-3.482l51.965-90c2.679-.268 5.357-1.072 7.768-2.679l50.089 51.965v92.946zm0-102.322-45.803-47.41c1.339-2.143 2.143-4.821 2.143-7.767 0-.268-.268-.804-.268-1.072l43.928-15.804zm0-80.625-43.66 15.804 43.66-75.536zm326.519 39.108.804 1.339L445.5 329.125l-63.75-67.232 98.036-101.518zM291.75 355.107l11.518 11.786H280.5zm-.268-11.25-83.303-85.446 79.553-84.375 83.036 87.589zm5.357 5.893 79.286-82.232 67.5 71.25-5.892 28.125H313.714zM410.411 44.393c1.071.536 2.142 1.072 3.482 1.34l57.857 100.714v.536c0 2.946.803 5.624 2.143 7.767L376.393 256l-83.035-87.589zm-9.107-2.143L287.732 162.518l-57.054-60.268 166.339-60zm-123.483 0c2.678 2.678 6.16 4.285 10.179 4.285s7.5-1.607 10.179-4.285h75L224.786 95.821 173.893 42.25zm-116.249 5.625 1.071-2.142a34 34 0 0 0 2.679-.804l51.161 53.84-54.911 19.821zm0 79.286 60.803-21.964 59.732 63.214-79.553 84.107-40.982-42.053zm0 92.678L198 257.607l-36.428 38.304zm0 87.858 42.053-44.464 82.768 85.982-17.143 17.678H161.572zm6.964 162.053c-1.607-1.607-3.482-2.678-5.893-3.482l-1.071-1.607v-89.732h99.91l-91.607 94.821zm129.911 0c-2.679-2.41-6.428-4.285-10.447-4.285s-7.767 1.875-10.447 4.285h-96.429l91.607-94.821h38.304l91.607 94.821zm120-11.786-4.286 7.5c-1.339.268-2.41.803-3.482 1.339l-89.196-91.875h114.376zm12.856-22.232 12.858-60.803h21.964zm34.822-68.839h-20.357l4.553-21.16 17.143 18.214c-.535.803-1.071 1.874-1.339 2.946m66.161-107.411-55.447 96.697c-1.339.535-2.679 1.071-4.018 1.874l-20.625-21.964 34.554-163.928 45.803 79.286c-.267 1.339-.803 2.678-.803 4.285 0 1.339.268 2.411.536 3.75"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/contao.svg�����������������������0000664�0000000�0000000�00000001370�14753064456�0027416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M45.4 305c14.4 67.1 26.4 129 68.2 175H34c-18.7 0-34-15.2-34-34V66c0-18.7 15.2-34 34-34h57.7C77.9 44.6 65.6 59.2 54.8 75.6c-45.4 70-27 146.8-9.4 229.4M478 32h-90.2c21.4 21.4 39.2 49.5 52.7 84.1l-137.1 29.3c-14.9-29-37.8-53.3-82.6-43.9-24.6 5.3-41 19.3-48.3 34.6-8.8 18.7-13.2 39.8 8.2 140.3 21.1 100.2 33.7 117.7 49.5 131.2 12.9 11.1 33.4 17 58.3 11.7 44.5-9.4 55.7-40.7 57.4-73.2l137.4-29.6c3.2 71.5-18.7 125.2-57.4 163.6H478c18.7 0 34-15.2 34-34V66c0-18.8-15.2-34-34-34"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/cotton-bureau.svg����������������0000664�0000000�0000000�00000002731�14753064456�0030724�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M474.31 330.41c-23.66 91.85-94.23 144.59-201.9 148.35V429.6c0-48 26.41-74.39 74.39-74.39 62 0 99.2-37.2 99.2-99.21 0-61.37-36.53-98.28-97.38-99.06-33-69.32-146.5-64.65-177.24 0C110.52 157.72 74 194.63 74 256c0 62.13 37.27 99.41 99.4 99.41 48 0 74.55 26.23 74.55 74.39V479c-134.43-5-211.1-85.07-211.1-223 0-141.82 81.35-223.2 223.2-223.2 114.77 0 189.84 53.2 214.69 148.81H500C473.88 71.51 388.22 8 259.82 8 105 8 12 101.19 12 255.82 12 411.14 105.19 504.34 259.82 504c128.27 0 213.87-63.81 239.67-173.59zM357 182.33c41.37 3.45 64.2 29 64.2 73.67 0 48-26.43 74.41-74.4 74.41-28.61 0-49.33-9.59-61.59-27.33 83.06-16.55 75.59-99.67 71.79-120.75m-81.68 97.36c-2.46-10.34-16.33-87 56.23-97 2.27 10.09 16.52 87.11-56.26 97zM260 132c28.61 0 49 9.67 61.44 27.61-28.36 5.48-49.36 20.59-61.59 43.45-12.23-22.86-33.23-38-61.6-43.45 12.41-17.69 33.27-27.35 61.57-27.35zm-71.52 50.72c73.17 10.57 58.91 86.81 56.49 97-72.41-9.84-59-86.95-56.25-97zM173.2 330.41c-48 0-74.4-26.4-74.4-74.41 0-44.36 22.86-70 64.22-73.67-6.75 37.2-1.38 106.53 71.65 120.75-12.14 17.63-32.84 27.3-61.14 27.3zm53.21 12.39A80.8 80.8 0 0 0 260 309.25c7.77 14.49 19.33 25.54 33.82 33.55a80.3 80.3 0 0 0-33.58 33.83c-8-14.5-19.07-26.23-33.56-33.83z"/></svg>���������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/cpanel.svg�����������������������0000664�0000000�0000000�00000003136�14753064456�0027377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M210.3 220.2c-5.6-24.8-26.9-41.2-51-41.2h-37c-7.1 0-12.5 4.5-14.3 10.9L73.1 320l24.7-.1c6.8 0 12.3-4.5 14.2-10.7l25.8-95.7h19.8c8.4 0 16.2 5.6 18.3 14.8 2.5 10.9-5.9 22.6-18.3 22.6h-10.3c-7 0-12.5 4.6-14.3 10.8l-6.4 23.8h32c37.2 0 58.3-36.2 51.7-65.3m-156.5 28h18.6c6.9 0 12.4-4.4 14.3-10.9l6.2-23.6h-40C30 213.7 9 227.8 1.7 254.8-7 288.6 18.5 320 52 320h12.4l7.1-26.1c1.2-4.4-2.2-8.3-6.4-8.3H53.8c-24.7 0-24.9-37.4 0-37.4m247.5-34.8h-77.9l-3.5 13.4c-2.4 9.6 4.5 18.5 14.2 18.5h57.5c4 0 2.4 4.3 2.1 5.3l-8.6 31.8c-.4 1.4-.9 5.3-5.5 5.3h-34.9c-5.3 0-5.3-7.9 0-7.9h21.6c6.8 0 12.3-4.6 14.2-10.8l3.5-13.2h-48.4c-39.2 0-43.6 63.8-.7 63.8l57.5.2c11.2 0 20.6-7.2 23.4-17.8l14-51.8c4.8-19.2-9.7-36.8-28.5-36.8M633.1 179h-18.9c-4.9 0-9.2 3.2-10.4 7.9L568.2 320c20.7 0 39.8-13.8 44.9-34.5l26.5-98.2c1.2-4.3-2-8.3-6.5-8.3m-236.3 34.7v.1h-48.3l-26.2 98c-1.2 4.4 2.2 8.3 6.4 8.3h18.9c4.8 0 9.2-3 10.4-7.8l17.2-64H395c12.5 0 21.4 11.8 18.1 23.4l-10.6 40c-1.2 4.3 1.9 8.3 6.4 8.3H428c4.6 0 9.1-2.9 10.3-7.8l8.8-33.1c9-33.1-15.9-65.4-50.3-65.4m98.3 74.6c-3.6 0-6-3.4-5.1-6.7l8-30c.9-3.9 3.7-6 7.8-6h32.9c2.6 0 4.6 2.4 3.9 5.1l-.7 2.6q-.9 3-3.9 3h-21.6c-7 0-12.6 4.6-14.2 10.8l-3.5 13h53.4c10.5 0 20.3-6.6 23.2-17.6l3.2-12c4.9-19.1-9.3-36.8-28.3-36.8h-47.3c-17.9 0-33.8 12-38.6 29.6l-10.8 40c-5 17.7 8.3 36.7 28.3 36.7h66.7c6.8 0 12.3-4.5 14.2-10.7l5.7-21z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/creative-commons-by.svg����������0000664�0000000�0000000�00000001420�14753064456�0032012�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M314.9 194.4v101.4h-28.3v120.5h-77.1V295.9h-28.3V194.4c0-4.4 1.6-8.2 4.6-11.3 3.1-3.1 6.9-4.7 11.3-4.7H299c4.1 0 7.8 1.6 11.1 4.7 3.1 3.2 4.8 6.9 4.8 11.3m-101.5-63.7c0-23.3 11.5-35 34.5-35s34.5 11.7 34.5 35q0 34.5-34.5 34.5c-34.5 0-34.5-11.5-34.5-34.5M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8m.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/creative-commons-nc-eu.svg�������0000664�0000000�0000000�00000001767�14753064456�0032425�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M247.7 8C103.6 8 0 124.8 0 256c0 136.3 111.7 248 247.7 248C377.9 504 496 403.1 496 256 496 117 388.4 8 247.7 8m.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-23.2 3.7-45.2 10.9-66l65.7 29.1h-4.7v29.5h23.3c0 6.2-.4 3.2-.4 19.5h-22.8v29.5h27c11.4 67 67.2 101.3 124.6 101.3 26.6 0 50.6-7.9 64.8-15.8l-10-46.1c-8.7 4.6-28.2 10.8-47.3 10.8-28.2 0-58.1-10.9-67.3-50.2h90.3l128.3 56.8c-1.5 2.1-56.2 104.3-178.8 104.3m-16.7-190.6-.5-.4.9.4zm77.2-19.5h3.7v-29.5h-70.3l-28.6-12.6c2.5-5.5 5.4-10.5 8.8-14.3 12.9-15.8 31.1-22.4 51.1-22.4 18.3 0 35.3 5.4 46.1 10l11.6-47.3c-15-6.6-37-12.4-62.3-12.4-39 0-72.2 15.8-95.9 42.3-5.3 6.1-9.8 12.9-13.9 20.1l-81.6-36.1c64.6-96.8 157.7-93.6 170.7-93.6 113 0 203 90.2 203 203.4 0 18.7-2.1 36.3-6.3 52.9z"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/creative-commons-nc-jp.svg�������0000664�0000000�0000000�00000001374�14753064456�0032417�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M247.7 8C103.6 8 0 124.8 0 256c0 136.4 111.8 248 247.7 248C377.9 504 496 403.2 496 256 496 117.2 388.5 8 247.7 8m.6 450.7c-112 0-203.6-92.5-203.6-202.7q0-31.65 9-60.3l127 56.5h-27.9v38.6h58.1l5.7 11.8v18.7h-63.8V360h63.8v56h61.7v-56h64.2v-35.7l81 36.1c-1.5 2.2-57.1 98.3-175.2 98.3m87.6-137.3h-57.6v-18.7l2.9-5.6zm6.5-51.4v-17.8h-38.6l63-116H301l-43.4 96-23-10.2-39.6-85.7h-65.8l27.3 51-81.9-36.5c27.8-44.1 82.6-98.1 173.7-98.1 112.8 0 203 90 203 203.4 0 21-2.7 40.6-7.9 59z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/creative-commons-nc.svg����������0000664�0000000�0000000�00000001643�14753064456�0032007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M247.6 8C387.4 8 496 115.9 496 256c0 147.2-118.5 248-248.4 248C113.1 504 0 393.2 0 256 0 123.1 104.7 8 247.6 8M55.8 189.1Q44.7 219.7 44.7 256c0 110.9 92.1 202.4 203.7 202.4 122.4 0 177.2-101.8 178.5-104.1l-93.4-41.6c-7.7 37.1-41.2 53-68.2 55.4v38.1h-28.8V368q-41.25-.45-75.3-29.7l34.1-34.5c31.7 29.4 86.4 31.8 86.4-2.2 0-6.2-2.2-11.2-6.6-15.1-14.2-6-1.8-.1-219.3-97.4M248.4 52.3c-38.4 0-112.4 8.7-170.5 93l94.8 42.5c10-31.3 40.4-42.9 63.8-44.3v-38.1h28.8v38.1c22.7 1.2 43.4 8.9 62 23L295 199.7c-42.7-29.9-83.5-8-70 11.1 53.4 24.1 43.8 19.8 93 41.6l127.1 56.7c4.1-17.4 6.2-35.1 6.2-53.1 0-57-19.8-105-59.3-143.9-39.3-39.9-87.2-59.8-143.6-59.8"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/creative-commons-nd.svg����������0000664�0000000�0000000�00000001106�14753064456�0032002�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8m.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3m94 144.3v42.5H162.1V197zm0 79.8v42.5H162.1v-42.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/creative-commons-pd-alt.svg������0000664�0000000�0000000�00000001466�14753064456�0032573�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M247.6 8C104.7 8 0 123.1 0 256c0 138.5 113.6 248 247.6 248C377.5 504 496 403.1 496 256 496 118.1 389.4 8 247.6 8m.8 450.8c-112.5 0-203.7-93-203.7-202.8 0-105.4 85.5-203.3 203.7-203.3 112.6 0 202.9 89.5 202.8 203.3 0 121.7-99.6 202.8-202.8 202.8M316.7 186h-53.2v137.2h53.2c21.4 0 70-5.1 70-68.6 0-63.4-48.6-68.6-70-68.6m.8 108.5h-19.9v-79.7l19.4-.1c3.8 0 35-2.1 35 39.9 0 24.6-10.5 39.9-34.5 39.9M203.7 186h-68.2v137.3h34.6V279h27c54.1 0 57.1-37.5 57.1-46.5 0-31-16.8-46.5-50.5-46.5m-4.9 67.3h-29.2v-41.6h28.3c30.9 0 28.8 41.6.9 41.6"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/creative-commons-pd.svg����������0000664�0000000�0000000�00000001540�14753064456�0032006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8m0 449.5c-139.2 0-235.8-138-190.2-267.9l78.8 35.1c-2.1 10.5-3.3 21.5-3.3 32.9 0 99 73.9 126.9 120.4 126.9 22.9 0 53.5-6.7 79.4-29.5L297 311.1c-5.5 6.3-17.6 16.7-36.3 16.7-37.8 0-53.7-39.9-53.9-71.9 230.4 102.6 216.5 96.5 217.9 96.8-34.3 62.4-100.6 104.8-176.7 104.8m194.2-150-224-100c18.8-34 54.9-30.7 74.7-11l40.4-41.6c-27.1-23.3-58-27.5-78.1-27.5-47.4 0-80.9 20.5-100.7 51.6l-74.9-33.4c36.1-54.9 98.1-91.2 168.5-91.2 111.1 0 201.5 90.4 201.5 201.5 0 18-2.4 35.4-6.8 52-.3-.1-.4-.2-.6-.4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/creative-commons-remix.svg�������0000664�0000000�0000000�00000001467�14753064456�0032537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8m.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3m161.7 207.7 4.9 2.2v70c-7.2 3.6-63.4 27.5-67.3 28.8-6.5-1.8-113.7-46.8-137.3-56.2l-64.2 26.6-63.3-27.5v-63.8l59.3-24.8c-.7-.7-.4 5-.4-70.4l67.3-29.7L361 178.5v61.6zm-70.4 81.5v-43.8h-.4v-1.8l-113.8-46.5V295l113.8 46.9v-.4zm7.5-57.6 39.9-16.4-36.8-15.5-39 16.4zm52.3 38.1v-43L355.2 298v43.4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/creative-commons-sa.svg����������0000664�0000000�0000000�00000001415�14753064456�0032007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8m.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3M137.7 221c13-83.9 80.5-95.7 108.9-95.7 99.8 0 127.5 82.5 127.5 134.2 0 63.6-41 132.9-128.9 132.9-38.9 0-99.1-20-109.4-97h62.5c1.5 30.1 19.6 45.2 54.5 45.2 23.3 0 58-18.2 58-82.8 0-82.5-49.1-80.6-56.7-80.6q-49.65 0-55.8 43.8h18.2l-49.2 49.2-49-49.2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������creative-commons-sampling-plus.svg������������������������������������������������������������������0000664�0000000�0000000�00000002532�14753064456�0034121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000�mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands�����������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8m.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3m107 205.6c-4.7 0-9 2.8-10.7 7.2l-4 9.5-11-92.8c-1.7-13.9-22-13.4-23.1.4l-4.3 51.4-5.2-68.8c-1.1-14.3-22.1-14.2-23.2 0l-3.5 44.9-5.9-94.3c-.9-14.5-22.3-14.4-23.2 0l-5.1 83.7-4.3-66.3c-.9-14.4-22.2-14.4-23.2 0l-5.3 80.2-4.1-57c-1.1-14.3-22-14.3-23.2-.2l-7.7 89.8-1.8-12.2c-1.7-11.4-17.1-13.6-22-3.3l-13.2 27.7H87.5v23.2h51.3c4.4 0 8.4-2.5 10.4-6.4l10.7 73.1c2 13.5 21.9 13 23.1-.7l3.8-43.6 5.7 78.3c1.1 14.4 22.3 14.2 23.2-.1l4.6-70.4 4.8 73.3c.9 14.4 22.3 14.4 23.2-.1l4.9-80.5 4.5 71.8c.9 14.3 22.1 14.5 23.2.2l4.6-58.6 4.9 64.4c1.1 14.3 22 14.2 23.1.1l6.8-83 2.7 22.3c1.4 11.8 17.7 14.1 22.3 3.1l18-43.4h50.5V258zm-78 5.2h-21.9v21.9c0 4.1-3.3 7.5-7.5 7.5-4.1 0-7.5-3.3-7.5-7.5v-21.9h-21.9c-4.1 0-7.5-3.3-7.5-7.5 0-4.1 3.4-7.5 7.5-7.5h21.9v-21.9c0-4.1 3.4-7.5 7.5-7.5s7.5 3.3 7.5 7.5v21.9h21.9c4.1 0 7.5 3.3 7.5 7.5 0 4.1-3.4 7.5-7.5 7.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/creative-commons-sampling.svg����0000664�0000000�0000000�00000002624�14753064456�0033221�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8m.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3m3.6 53.2c2.8-.3 11.5 1 11.5 11.5l6.6 107.2 4.9-59.3c0-6 4.7-10.6 10.6-10.6s10.6 4.7 10.6 10.6c0 2.5-.5-5.7 5.7 81.5l5.8-64.2c.3-2.9 2.9-9.3 10.2-9.3 3.8 0 9.9 2.3 10.6 8.9l11.5 96.5 5.3-12.8q2.7-6.6 10.2-6.6h58v21.3h-50.9l-18.2 44.3c-3.9 9.9-19.5 9.1-20.8-3.1l-4-31.9-7.5 92.6c-.3 3-3 9.3-10.2 9.3-3 0-9.8-2.1-10.6-9.3 0-1.9.6 5.8-6.2-77.9l-5.3 72.2c-1.1 4.8-4.8 9.3-10.6 9.3-2.9 0-9.8-2-10.6-9.3 0-1.9.5 6.7-5.8-87.7l-5.8 94.8c0 6.3-3.6 12.4-10.6 12.4-5.2 0-10.6-4.1-10.6-12l-5.8-87.7c-5.8 92.5-5.3 84-5.3 85.9-1.1 4.8-4.8 9.3-10.6 9.3-3 0-9.8-2.1-10.6-9.3 0-.7-.4-1.1-.4-2.6l-6.2-88.6L182 348c-.7 6.5-6.7 9.3-10.6 9.3-5.8 0-9.6-4.1-10.6-8.9L149.7 272c-2 4-3.5 8.4-11.1 8.4H87.2v-21.3H132l13.7-27.9c4.4-9.9 18.2-7.2 19.9 2.7l3.1 20.4 8.4-97.9c0-6 4.8-10.6 10.6-10.6.5 0 10.6-.2 10.6 12.4l4.9 69.1 6.6-92.6c0-10.1 9.5-10.6 10.2-10.6.6 0 10.6.7 10.6 10.6l5.3 80.6 6.2-97.9c.1-1.1-.6-10.3 9.9-11.5"/></svg>������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/creative-commons-share.svg�������0000664�0000000�0000000�00000001462�14753064456�0032510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8m.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3m101 132.4c7.8 0 13.7 6.1 13.7 13.7v182.5c0 7.7-6.1 13.7-13.7 13.7H214.3c-7.7 0-13.7-6-13.7-13.7v-54h-54c-7.8 0-13.7-6-13.7-13.7V131.1c0-8.2 6.6-12.7 12.4-13.7h136.4c7.7 0 13.7 6 13.7 13.7v54zM159.9 300.3h40.7V198.9c0-7.4 5.8-12.6 12-13.7h55.8v-40.3H159.9zm176.2-88.1H227.6v155.4h108.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/creative-commons-zero.svg��������0000664�0000000�0000000�00000001513�14753064456�0032362�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8m.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3m-.4 60.5c-81.9 0-102.5 77.3-102.5 142.8S166.1 398.8 248 398.8 350.5 321.5 350.5 256 329.9 113.2 248 113.2m0 53.9c3.3 0 6.4.5 9.2 1.2 5.9 5.1 8.8 12.1 3.1 21.9l-54.5 100.2c-1.7-12.7-1.9-25.1-1.9-34.4 0-28.8 2-88.9 44.1-88.9m40.8 46.2c2.9 15.4 3.3 31.4 3.3 42.7 0 28.9-2 88.9-44.1 88.9-13.5 0-32.6-7.7-20.1-26.4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/creative-commons.svg�������������0000664�0000000�0000000�00000002216�14753064456�0031406�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m245.83 214.87-33.22 17.28c-9.43-19.58-25.24-19.93-27.46-19.93-22.13 0-33.22 14.61-33.22 43.84 0 23.57 9.21 43.84 33.22 43.84 14.47 0 24.65-7.09 30.57-21.26l30.55 15.5c-6.17 11.51-25.69 38.98-65.1 38.98-22.6 0-73.96-10.32-73.96-77.05 0-58.69 43-77.06 72.63-77.06 30.72-.01 52.7 11.95 65.99 35.86m143.05 0-32.78 17.28c-9.5-19.77-25.72-19.93-27.9-19.93-22.14 0-33.22 14.61-33.22 43.84 0 23.55 9.23 43.84 33.22 43.84 14.45 0 24.65-7.09 30.54-21.26l31 15.5c-2.1 3.75-21.39 38.98-65.09 38.98-22.69 0-73.96-9.87-73.96-77.05 0-58.67 42.97-77.06 72.63-77.06 30.71-.01 52.58 11.95 65.56 35.86M247.56 8.05C104.74 8.05 0 123.11 0 256.05c0 138.49 113.6 248 247.56 248 129.93 0 248.44-100.87 248.44-248 0-137.87-106.62-248-248.44-248m.87 450.81c-112.54 0-203.7-93.04-203.7-202.81 0-105.42 85.43-203.27 203.72-203.27 112.53 0 202.82 89.46 202.82 203.26-.01 121.69-99.68 202.82-202.84 202.82"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/critical-role.svg����������������0000664�0000000�0000000�00000016230�14753064456�0030665�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M225.82 0c.26.15 216.57 124.51 217.12 124.72 3 1.18 3.7 3.46 3.7 6.56q-.11 125.17 0 250.36a5.88 5.88 0 0 1-3.38 5.78c-21.37 12-207.86 118.29-218.93 124.58h-3C142 466.34 3.08 386.56 2.93 386.48a3.29 3.29 0 0 1-1.88-3.24c0-.87 0-225.94-.05-253.1a5 5 0 0 1 2.93-4.93C27.19 112.11 213.2 6 224.07 0zM215.4 20.42l-.22-.16Q118.06 75.55 21 130.87c0 .12.08.23.13.35l30.86 11.64c-7.71 6-8.32 6-10.65 5.13-.1 0-24.17-9.28-26.8-10v230.43c.88-1.41 64.07-110.91 64.13-111 1.62-2.82 3-1.92 9.12-1.52 1.4.09 1.48.22.78 1.42-41.19 71.33-36.4 63-67.48 116.94-.81 1.4-.61 1.13 1.25 1.13h186.5c1.44 0 1.69-.23 1.7-1.64v-8.88c0-1.34 2.36-.81-18.37-1-7.46-.07-14.14-3.22-21.38-12.7-7.38-9.66-14.62-19.43-21.85-29.21-2.28-3.08-3.45-2.38-16.76-2.38-1.75 0-1.78 0-1.76 1.82.29 26.21.15 25.27 1 32.66.52 4.37 2.16 4.2 9.69 4.81 3.14.26 3.88 4.08.52 4.92-1.57.39-31.6.51-33.67-.1a2.42 2.42 0 0 1 .3-4.73c3.29-.76 6.16.81 6.66-4.44 1.3-13.66 1.17-9 1.1-79.42 0-10.82-.35-12.58-5.36-13.55-1.22-.24-3.54-.16-4.69-.55-2.88-1-2-4.84 1.77-4.85 33.67 0 46.08-1.07 56.06 4.86 7.74 4.61 12 11.48 12.51 20.4.88 14.59-6.51 22.35-15 32.59a1.46 1.46 0 0 0 0 2.22c2.6 3.25 5 6.63 7.71 9.83 27.56 33.23 24.11 30.54 41.28 33.06.89.13 1-.42 1-1.15v-11c0-1 .32-1.43 1.41-1.26a72.4 72.4 0 0 0 23.58-.3c1.08-.15 1.5.2 1.48 1.33 0 .11.88 26.69.87 26.8-.05 1.52.67 1.62 1.89 1.62h186.71Q386.51 304.6 346 234.33c2.26-.66-.4 0 6.69-1.39 2-.39 2.05-.41 3.11 1.44 7.31 12.64 77.31 134 77.37 134.06V138c-1.72.5-103.3 38.72-105.76 39.68-1.08.42-1.55.2-1.91-.88-.63-1.9-1.34-3.76-2.09-5.62-.32-.79-.09-1.13.65-1.39.1 0 95.53-35.85 103-38.77-65.42-37.57-130.56-75-196-112.6l86.82 150.39-.28.33c-9.57-.9-10.46-1.6-11.8-3.94-1-1.69-73.5-127.71-82-142.16-9.1 14.67-83.56 146.21-85.37 146.32-2.93.17-5.88.08-9.25.08q43.25-74.74 86.18-149zm51.93 129.92a38 38 0 0 0 5.54-.85c1.69-.3 2.53.2 2.6 1.92 0 .11.07 19.06-.86 20.45s-1.88 1.22-2.6-.19c-5-9.69 6.22-9.66-39.12-12-.7 0-1 .23-1 .93 0 .13 3.72 122 3.73 122.11 0 .89.52 1.2 1.21 1.51a84 84 0 0 1 8.7 4.05c7.31 4.33 11.38 10.84 12.41 19.31 1.44 11.8-2.77 35.77-32.21 37.14-2.75.13-28.26 1.08-34.14-23.25-4.66-19.26 8.26-32.7 19.89-36.4a2.45 2.45 0 0 0 2-2.66c.1-5.63 3-107.1 3.71-121.35.05-1.08-.62-1.16-1.35-1.15-32.35.52-36.75-.34-40.22 8.52-2.42 6.18-4.14 1.32-3.95.23q1.59-9 3.31-18c.4-2.11 1.43-2.61 3.43-1.86 5.59 2.11 6.72 1.7 37.25 1.92 1.73 0 1.78-.08 1.82-1.85.68-27.49.58-22.59 1-29.55a2.69 2.69 0 0 0-1.63-2.8c-5.6-2.91-8.75-7.55-8.9-13.87-.35-14.81 17.72-21.67 27.38-11.51 6.84 7.19 5.8 18.91-2.45 24.15a4.35 4.35 0 0 0-2.22 4.34c0 .59-.11-4.31 1 30.05 0 .9.43 1.12 1.24 1.11.1 0 23-.09 34.47-.37zM68.27 141.7c19.84-4.51 32.68-.56 52.49 1.69 2.76.31 3.74 1.22 3.62 4-.21 5-1.16 22.33-1.24 23.15a2.65 2.65 0 0 1-1.63 2.34c-4.06 1.7-3.61-4.45-4-7.29-3.13-22.43-73.87-32.7-74.63 25.4-.31 23.92 17 53.63 54.08 50.88 27.24-2 19-20.19 24.84-20.47a2.72 2.72 0 0 1 3 3.36c-1.83 10.85-3.42 18.95-3.45 19.15-1.54 9.17-86.7 22.09-93.35-42.06-2.71-25.85 10.44-53.37 40.27-60.15m80 87.67h-19.49a2.57 2.57 0 0 1-2.66-1.79c2.38-3.75 5.89.92 5.86-6.14-.08-25.75.21-38 .23-40.1 0-3.42-.53-4.65-3.32-4.94-7-.72-3.11-3.37-1.11-3.38 11.84-.1 22.62-.18 30.05.72 8.77 1.07 16.71 12.63 7.93 22.62-2 2.25-4 4.42-6.14 6.73.95 1.15 6.9 8.82 17.28 19.68 2.66 2.78 6.15 3.51 9.88 3.13a2.21 2.21 0 0 0 2.23-2.12c.3-3.42.26 4.73.45-40.58 0-5.65-.34-6.58-3.23-6.83-3.95-.35-4-2.26-.69-3.37l19.09-.09c.32 0 4.49.53 1 3.38 0 .05-.16 0-.24 0-3.61.26-3.94 1-4 4.62-.27 43.93.07 40.23.41 42.82.11.84.27 2.23 5.1 2.14 2.49 0 3.86 3.37 0 3.4-10.37.08-20.74 0-31.11.07-10.67 0-13.47-6.2-24.21-20.82-1.6-2.18-8.31-2.36-8.2-.37.88 16.47 0 17.78 4 17.67 4.75-.1 4.73 3.57.83 3.55zm275-10.15c-1.21 7.13.17 10.38-5.3 10.34-61.55-.42-47.82-.22-50.72-.31a18.4 18.4 0 0 1-3.63-.73c-2.53-.6 1.48-1.23-.38-5.6-1.43-3.37-2.78-6.78-4.11-10.19a1.94 1.94 0 0 0-2-1.44 138 138 0 0 0-14.58.07 2.23 2.23 0 0 0-1.62 1.06c-1.58 3.62-3.07 7.29-4.51 11-1.27 3.23 7.86 1.32 12.19 2.16 3 .57 4.53 3.72.66 3.73H322.9c-2.92 0-3.09-3.15-.74-3.21a6.3 6.3 0 0 0 5.92-3.47c1.5-3 2.8-6 4.11-9.09 18.18-42.14 17.06-40.17 18.42-41.61a1.83 1.83 0 0 1 3 0c2.93 3.34 18.4 44.71 23.62 51.92 2 2.7 5.74 2 6.36 2 3.61.13 4-1.11 4.13-4.29.09-1.87.08 1.17.07-41.24 0-4.46-2.36-3.74-5.55-4.27-.26 0-2.56-.63-.08-3.06.21-.2-.89-.24 21.7-.15 2.32 0 5.32 2.75-1.21 3.45a2.56 2.56 0 0 0-2.66 2.83c-.07 1.63-.19 38.89.29 41.21a3.06 3.06 0 0 0 3.23 2.43c13.25.43 14.92.44 16-3.41 1.67-5.78 4.13-2.52 3.73-.19zm-104.72 64.37c-4.24 0-4.42-3.39-.61-3.41 35.91-.16 28.11.38 37.19-.65 1.68-.19 2.38.24 2.25 1.89-.26 3.39-.64 6.78-1 10.16-.25 2.16-3.2 2.61-3.4-.15-.38-5.31-2.15-4.45-15.63-5.08-1.58-.07-1.64 0-1.64 1.52V304c0 1.65 0 1.6 1.62 1.47 3.12-.25 10.31.34 15.69-1.52.47-.16 3.3-1.79 3.07 1.76 0 .21-.76 10.35-1.18 11.39-.53 1.29-1.88 1.51-2.58.32-1.17-2 0-5.08-3.71-5.3-15.42-.9-12.91-2.55-12.91 6 0 12.25-.76 16.11 3.89 16.24 16.64.48 14.4 0 16.43-5.71.84-2.37 3.5-1.77 3.18.58-.44 3.21-.85 6.43-1.23 9.64 0 .36-.16 2.4-4.66 2.39-37.16-.08-34.54-.19-35.21-.31-2.72-.51-2.2-3 .22-3.45 1.1-.19 4 .54 4.16-2.56 2.44-56.22-.07-51.34-3.91-51.33zm-.41-109.52c2.46.61 3.13 1.76 2.95 4.65-.33 5.3-.34 9-.55 9.69-.66 2.23-3.15 2.12-3.34-.27-.38-4.81-3.05-7.82-7.57-9.15-26.28-7.73-32.81 15.46-27.17 30.22 5.88 15.41 22 15.92 28.86 13.78 5.92-1.85 5.88-6.5 6.91-7.58 1.23-1.3 2.25-1.84 3.12 1.1 0 .1.57 11.89-6 12.75-1.6.21-19.38 3.69-32.68-3.39-21-11.19-16.74-35.47-6.88-45.33 14-14.06 39.91-7.06 42.32-6.47zM289.8 280.14c3.28 0 3.66 3 .16 3.43-2.61.32-5-.42-5 5.46 0 2-.19 29.05.4 41.45.11 2.29 1.15 3.52 3.44 3.65 22 1.21 14.95-1.65 18.79-6.34 1.83-2.24 2.76.84 2.76 1.08.35 13.62-4 12.39-5.19 12.4l-38.16-.19c-1.93-.23-2.06-3-.42-3.38 2-.48 4.94.4 5.13-2.8 1-15.87.57-44.65.34-47.81-.27-3.77-2.8-3.27-5.68-3.71-2.47-.38-2-3.22.34-3.22 1.45-.02 17.97-.03 23.09-.02m-31.63-57.79c.07 4.08 2.86 3.46 6 3.58 2.61.1 2.53 3.41-.07 3.43-6.48 0-13.7 0-21.61-.06-3.84 0-3.38-3.35 0-3.37 4.49 0 3.24 1.61 3.41-45.54 0-5.08-3.27-3.54-4.72-4.23-2.58-1.23-1.36-3.09.41-3.15 1.29 0 20.19-.41 21.17.21s1.87 1.65-.42 2.86c-1 .52-3.86-.28-4.15 2.47 0 .21-.82 1.63-.07 43.8zm-36.91 274.27a2.93 2.93 0 0 0 3.26 0c17-9.79 182-103.57 197.42-112.51-.14-.43 11.26-.18-181.52-.27-1.22 0-1.57.37-1.53 1.56 0 .1 1.25 44.51 1.22 50.38a28.3 28.3 0 0 1-1.36 7.71c-.55 1.83.38-.5-13.5 32.23-.73 1.72-1 2.21-2-.08-4.19-10.34-8.28-20.72-12.57-31a23.6 23.6 0 0 1-2-10.79c.16-2.46.8-16.12 1.51-48 0-1.95 0-2-2-2h-183c2.58 1.63 178.32 102.57 196 112.76zm-90.9-188.75c0 2.4.36 2.79 2.76 3 11.54 1.17 21 3.74 25.64-7.32 6-14.46 2.66-34.41-12.48-38.84-2-.59-16-2.76-15.94 1.51.05 8.04.01 11.61.02 41.65m105.75-15.05c0 2.13 1.07 38.68 1.09 39.13.34 9.94-25.58 5.77-25.23-2.59.08-2 1.37-37.42 1.1-39.43-14.1 7.44-14.42 40.21 6.44 48.8a17.9 17.9 0 0 0 22.39-7.07c4.91-7.76 6.84-29.47-5.43-39a2.5 2.5 0 0 1-.36.12zm-12.28-198c-9.83 0-9.73 14.75-.07 14.87s10.1-14.88.07-14.91zm-80.15 103.83c0 1.8.41 2.4 2.17 2.58 13.62 1.39 12.51-11 12.16-13.36-1.69-11.22-14.38-10.2-14.35-7.81.05 4.5-.03 13.68.02 18.59m212.32 6.4-6.1-15.84c-2.16 5.48-4.16 10.57-6.23 15.84z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/css.svg��������������������������0000664�0000000�0000000�00000003740�14753064456�0026726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M376.3 32H0v376.3c0 19 7.6 37.2 21 50.7s31.7 21 50.7 21h304.6c19 0 37.2-7.6 50.7-21s21-31.7 21-50.7V103.7c0-19-7.6-37.2-21-50.7s-31.7-21-50.7-21m-43.9 399.4q-11.55-12.75-12-36.6h31.3c.2 14.1 5.1 21.1 14.8 21.1 4.9 0 8.4-1.6 10.5-4.7 2-3.1 3-8 3-14.8 0-5.4-1.3-9.9-4-13.4-3.5-4.2-8.1-7.5-13.2-9.5l-11.6-5.5c-10.3-4.9-17.8-10.8-22.5-17.6-4.5-6.8-6.7-16.3-6.7-28.4 0-13.6 4-24.6 11.8-33.1 8.1-8.5 19.1-12.7 33.2-12.7 13.6 0 24.1 4.2 31.5 12.5 7.5 8.4 11.5 20.3 11.8 35.9h-30.1c.2-5.1-.9-10.2-3-14.8-1.7-3.4-5-5.1-10-5.1-8.8 0-13.2 5.2-13.2 15.7 0 5.3 1.1 9.4 3.2 12.6 3.1 3.5 7 6.2 11.4 7.8l11.1 4.9c11.5 5.3 19.7 11.7 24.8 19.4s7.6 18 7.6 31c0 15.5-4 27.4-12.3 35.7-8.2 8.3-19.5 12.5-34.1 12.5s-25.6-4.2-33.4-12.7zm-101 0q-11.55-12.75-12-36.6h31.3c.2 14.1 5.1 21.1 14.8 21.1 4.9 0 8.4-1.6 10.4-4.7s3-8 3-14.8c0-5.4-1.3-9.9-3.9-13.4-3.5-4.2-8.1-7.5-13.2-9.5l-11.6-5.5c-10.3-4.9-17.8-10.8-22.5-17.6-4.5-6.8-6.7-16.3-6.7-28.4 0-13.6 4-24.6 11.8-33.1 8.1-8.5 19.1-12.7 33.2-12.7 13.6 0 24.1 4.2 31.4 12.5 7.6 8.4 11.5 20.3 11.9 35.9h-30.1c.2-5.1-.9-10.2-3-14.8-1.7-3.4-5-5.1-10-5.1-8.8 0-13.2 5.2-13.2 15.7 0 5.3 1.1 9.4 3.2 12.6 3.1 3.5 7 6.2 11.4 7.8l11.1 4.9c11.5 5.3 19.7 11.7 24.8 19.4s7.6 18 7.6 31q0 23.25-12.3 35.7c-12.3 12.45-19.5 12.5-34.1 12.5s-25.6-4.2-33.4-12.7zm-105.6 1.1c-8.4-7.7-12.5-19.2-12.5-34.5v-75.4c0-15.2 4.4-26.7 13.2-34.6 8.9-7.8 20.7-11.8 35.2-11.8 14.1 0 25.2 4 33.4 12 8.3 8 12.5 20 12.5 35.9v6h-33.1v-5.8c0-6.1-1.3-10.7-4-13.6-1.1-1.5-2.6-2.7-4.3-3.5s-3.5-1.2-5.4-1.1c-5.4 0-9.2 1.8-11.4 5.6-2.3 5.2-3.3 10.8-3 16.4v65.5c0 13.7 4.8 20.6 14.4 20.8q6.75 0 10.2-4.8c2.5-4.1 3.7-8.8 3.5-13.6v-4.9h33.1v5.1c0 10.6-2.1 19.5-6.2 26.6-4 6.9-9.9 12.5-17.1 16-7.7 3.7-16.1 5.5-24.6 5.3-14.2 0-25.5-3.9-33.8-11.6z"/></svg>��������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/css3-alt.svg���������������������0000664�0000000�0000000�00000001006�14753064456�0027560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m0 32 34.9 395.8L192 480l157.1-52.2L384 32zm313.1 80-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/css3.svg�������������������������0000664�0000000�0000000�00000000634�14753064456�0027010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m480 32-64 368-223.3 80L0 400l19.6-94.8h82l-8 40.6L210 390.2l134.1-44.4 18.8-97.1H29.5l16-82h333.7l10.5-52.7H56.3l16.3-82z"/></svg>����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/cuttlefish.svg�������������������0000664�0000000�0000000�00000001033�14753064456�0030301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 440 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M344 305.5c-17.5 31.6-57.4 54.5-96 54.5-56.6 0-104-47.4-104-104s47.4-104 104-104c38.6 0 78.5 22.9 96 54.5 13.7-50.9 41.7-93.3 87-117.8C385.7 39.1 320.5 8 248 8 111 8 0 119 0 256s111 248 248 248c72.5 0 137.7-31.1 183-80.7-45.3-24.5-73.3-66.9-87-117.8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/d-and-d-beyond.svg���������������0000664�0000000�0000000�00000010136�14753064456�0030615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M313.8 241.5c13.8 0 21-10.1 24.8-17.9-1-1.1-5-4.2-7.4-6.6-2.4 4.3-8.2 10.7-13.9 10.7-10.2 0-15.4-14.7-3.2-26.6-.5-.2-4.3-1.8-8 2.4 0-3 1-5.1 2.1-6.6-3.5 1.3-9.8 5.6-11.4 7.9.2-5.8 1.6-7.5.6-9l-.2-.2s-8.5 5.6-9.3 14.7c0 0 1.1-1.6 2.1-1.9.6-.3 1.3 0 .6 1.9-.2.6-5.8 15.7 5.1 26-.6-1.6-1.9-7.6 2.4-1.9-.3.1 5.8 7.1 15.7 7.1m52.4-21.1c0-4-4.9-4.4-5.6-4.5 2 3.9.9 7.5.2 9 2.5-.4 5.4-1.6 5.4-4.5m10.3 5.2c0-6.4-6.2-11.4-13.5-10.7 8 1.3 5.6 13.8-5 11.4 3.7-2.6 3.2-9.9-1.3-12.5 1.4 4.2-3 8.2-7.4 4.6-2.4-1.9-8-6.6-10.6-8.6-2.4-2.1-5.5-1-6.6-1.8-1.3-1.1-.5-3.8-2.2-5-1.6-.8-3-.3-4.8-1-1.6-.6-2.7-1.9-2.6-3.5-2.5 4.4 3.4 6.3 4.5 8.5 1 1.9-.8 4.8 4 8.5 14.8 11.6 9.1 8 10.4 18.1.6 4.3 4.2 6.7 6.4 7.4-2.1-1.9-2.9-6.4 0-9.3 0 13.9 19.2 13.3 23.1 6.4-2.4 1.1-7-.2-9-1.9 7.7 1 14.2-4.1 14.6-10.6m-39.4-18.4c2 .8 1.6.7 6.4 4.5 10.2-24.5 21.7-15.7 22-15.5 2.2-1.9 9.8-3.8 13.8-2.7-2.4-2.7-7.5-6.2-13.3-6.2-4.7 0-7.4 2.2-8 1.3-.8-1.4 3.2-3.4 3.2-3.4-5.4.2-9.6 6.7-11.2 5.9-1.1-.5 1.4-3.7 1.4-3.7-5.1 2.9-9.3 9.1-10.2 13 4.6-5.8 13.8-9.8 19.7-9-10.5.5-19.5 9.7-23.8 15.8m242.5 51.9c-20.7 0-40 1.3-50.3 2.1l7.4 8.2v77.2l-7.4 8.2c10.4.8 30.9 2.1 51.6 2.1 42.1 0 59.1-20.7 59.1-48.9 0-29.3-23.2-48.9-60.4-48.9m-15.1 75.6v-53.3c30.1-3.3 46.8 3.8 46.8 26.3 0 25.6-21.4 30.2-46.8 27M301.6 181c-1-3.4-.2-6.9 1.1-9.4 1 3 2.6 6.4 7.5 9-.5-2.4-.2-5.6.5-8-1.4-5.4 2.1-9.9 6.4-9.9 6.9 0 8.5 8.8 4.7 14.4 2.1 3.2 5.5 5.6 7.7 7.8 3.2-3.7 5.5-9.5 5.5-13.8 0-8.2-5.5-15.9-16.7-16.5-20-.9-20.2 16.6-20 18.9.5 5.2 3.4 7.8 3.3 7.5m-.4 6c-.5 1.8-7 3.7-10.2 6.9 4.8-1 7-.2 7.8 1.8.5 1.4-.2 3.4-.5 5.6 1.6-1.8 7-5.5 11-6.2-1-.3-3.4-.8-4.3-.8 2.9-3.4 9.3-4.5 12.8-3.7-2.2-.2-6.7 1.1-8.5 2.6 1.6.3 3 .6 4.3 1.1-2.1.8-4.8 3.4-5.8 6.1 7-5 13.1 5.2 7 8.2.8.2 2.7 0 3.5-.5-.3 1.1-1.9 3-3 3.4 2.9 0 7-1.9 8.2-4.6 0 0-1.8.6-2.6-.2s.3-4.3.3-4.3c-2.3 2.9-3.4-1.3-1.3-4.2-1-.3-3.5-.6-4.6-.5 3.2-1.1 10.4-1.8 11.2-.3.6 1.1-1 3.4-1 3.4 4-.5 8.3 1.1 6.7 5.1 2.9-1.4 5.5-5.9 4.8-10.4-.3 1-1.6 2.4-2.9 2.7.2-1.4-1-2.2-1.9-2.6 1.7-9.6-14.6-14.2-14.1-23.9-1 1.3-1.8 5-.8 7.1 2.7 3.2 8.7 6.7 10.1 12.2-2.6-6.4-15.1-11.4-14.6-20.2-1.6 1.6-2.6 7.8-1.3 11 2.4 1.4 4.5 3.8 4.8 6.1-2.2-5.1-11.4-6.1-13.9-12.2-.6 2.2-.3 5 1 6.7 0 0-2.2-.8-7-.6 1.7.6 5.1 3.5 4.8 5.2m25.9 7.4c-2.7 0-3.5-2.1-4.2-4.3 3.3 1.3 4.2 4.3 4.2 4.3m38.9 3.7-1-.6c-1.1-1-2.9-1.4-4.7-1.4-2.9 0-5.8 1.3-7.5 3.4-.8.8-1.4 1.8-2.1 2.6v15.7c3.5 2.6 7.1-2.9 3-7.2 1.5.3 4.6 2.7 5.1 3.2 0 0 2.6-.5 5-.5 2.1 0 3.9.3 5.6 1.1V196c-1.1.5-2.2 1-2.7 1.4zM79.9 305.9c17.2-4.6 16.2-18 16.2-19.9 0-20.6-24.1-25-37-25H3l8.3 8.6v29.5H0l11.4 14.6V346L3 354.6c61.7 0 73.8 1.5 86.4-5.9 6.7-4 9.9-9.8 9.9-17.6 0-5.1 2.6-18.8-19.4-25.2m-41.3-27.5c20 0 29.6-.8 29.6 9.1v3c0 12.1-19 8.8-29.6 8.8zm0 59.2V315c12.2 0 32.7-2.3 32.7 8.8v4.5h.2c0 11.2-12.5 9.3-32.9 9.3m101.2-19.3 23.1.2v-.2l14.1-21.2h-37.2v-14.9h52.4l-14.1-21v-.2l-73.5.2 7.4 8.2v77.1l-7.4 8.2h81.2l14.1-21.2-60.1.2zm214.7-60.1c-73.9 0-77.5 99.3-.3 99.3 77.9 0 74.1-99.3.3-99.3m-.3 77.5c-37.4 0-36.9-55.3.2-55.3 36.8.1 38.8 55.3-.2 55.3m-91.3-8.3 44.1-66.2h-41.7l6.1 7.2-20.5 37.2h-.3l-21-37.2 6.4-7.2h-44.9l44.1 65.8.2 19.4-7.7 8.2h42.6l-7.2-8.2zm-28.4-151.3c1.6 1.3 2.9 2.4 2.9 6.6v38.8c0 4.2-.8 5.3-2.7 6.4-.1.1-7.5 4.5-7.9 4.6h35.1c10 0 17.4-1.5 26-8.6-.6-5 .2-9.5.8-12 0-.2-1.8 1.4-2.7 3.5 0-5.7 1.6-15.4 9.6-20.5-.1 0-3.7-.8-9 1.1 2-3.1 10-7.9 10.4-7.9-8.2-26-38-22.9-32.2-22.9-30.9 0-32.6.3-39.9-4 .1.8.5 8.2 9.6 14.9m21.5 5.5c4.6 0 23.1-3.3 23.1 17.3 0 20.7-18.4 17.3-23.1 17.3zm228.9 79.6 7 8.3V312h-.3c-5.4-14.4-42.3-41.5-45.2-50.9h-31.6l7.4 8.5v76.9l-7.2 8.3h39l-7.4-8.2v-47.4h.3c3.7 10.6 44.5 42.9 48.5 55.6h21.3v-85.2l7.4-8.3zm-106.7-96.1c-32.2 0-32.8.2-39.9-4 .1.7.5 8.3 9.6 14.9 3.1 2 2.9 4.3 2.9 9.5 1.8-1.1 3.8-2.2 6.1-3-1.1 1.1-2.7 2.7-3.5 4.5 1-1.1 7.5-5.1 14.6-3.5-1.6.3-4 1.1-6.1 2.9.1 0 2.1-1.1 7.5-.3v-4.3c4.7 0 23.1-3.4 23.1 17.3 0 20.5-18.5 17.3-19.7 17.3 5.7 4.4 5.8 12 2.2 16.3h.3c33.4 0 36.7-27.3 36.7-34 0-3.8-1.1-32-33.8-33.6"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/d-and-d.svg����������������������0000664�0000000�0000000�00000011156�14753064456�0027342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M82.5 98.9c-.6-17.2 2-33.8 12.7-48.2.3 7.4 1.2 14.5 4.2 21.6 5.9-27.5 19.7-49.3 42.3-65.5-1.9 5.9-3.5 11.8-3 17.7 8.7-7.4 18.8-17.8 44.4-22.7 14.7-2.8 29.7-2 42.1 1 38.5 9.3 61 34.3 69.7 72.3 5.3 23.1.7 45-8.3 66.4-5.2 12.4-12 24.4-20.7 35.1-2-1.9-3.9-3.8-5.8-5.6-42.8-40.8-26.8-25.2-37.4-37.4-1.1-1.2-1-2.2-.1-3.6 8.3-13.5 11.8-28.2 10-44-1.1-9.8-4.3-18.9-11.3-26.2-14.5-15.3-39.2-15-53.5.6-11.4 12.5-14.1 27.4-10.9 43.6.2 1.3.4 2.7 0 3.9-3.4 13.7-4.6 27.6-2.5 41.6.1.5.1 1.1.1 1.6 0 .3-.1.5-.2 1.1-21.8-11-36-28.3-43.2-52.2-8.3 17.8-11.1 35.5-6.6 54.1-15.6-15.2-21.3-34.3-22-55.2m469.6 123.2c-11.6-11.6-25-20.4-40.1-26.6-12.8-5.2-26-7.9-39.9-7.1-10 .6-19.6 3.1-29 6.4-2.5.9-5.1 1.6-7.7 2.2-4.9 1.2-7.3-3.1-4.7-6.8 3.2-4.6 3.4-4.2 15-12 .6-.4 1.2-.8 2.2-1.5h-2.5c-.6 0-1.2.2-1.9.3-19.3 3.3-30.7 15.5-48.9 29.6-10.4 8.1-13.8 3.8-12-.5 1.4-3.5 3.3-6.7 5.1-10 1-1.8 2.3-3.4 3.5-5.1-.2-.2-.5-.3-.7-.5-27 18.3-46.7 42.4-57.7 73.3.3.3.7.6 1 .9.3-.6.5-1.2.9-1.7 10.4-12.1 22.8-21.8 36.6-29.8 18.2-10.6 37.5-18.3 58.7-20.2 4.3-.4 8.7-.1 13.1-.1-1.8.7-3.5.9-5.3 1.1-18.5 2.4-35.5 9-51.5 18.5-30.2 17.9-54.5 42.2-75.1 70.4-.3.4-.4.9-.7 1.3 14.5 5.3 24 17.3 36.1 25.6.2-.1.3-.2.4-.4l1.2-2.7c12.2-26.9 27-52.3 46.7-74.5 16.7-18.8 38-25.3 62.5-20 5.9 1.3 11.4 4.4 17.2 6.8 2.3-1.4 5.1-3.2 8-4.7 8.4-4.3 17.4-7 26.7-9 14.7-3.1 29.5-4.9 44.5-1.3v-.5c-.5-.4-1.2-.8-1.7-1.4M316.7 397.6c-39.4-33-22.8-19.5-42.7-35.6-.8.9 0-.2-1.9 3-11.2 19.1-25.5 35.3-44 47.6-10.3 6.8-21.5 11.8-34.1 11.8-21.6 0-38.2-9.5-49.4-27.8-12-19.5-13.3-40.7-8.2-62.6 7.8-33.8 30.1-55.2 38.6-64.3-18.7-6.2-33 1.7-46.4 13.9.8-13.9 4.3-26.2 11.8-37.3-24.3 10.6-45.9 25-64.8 43.9-.3-5.8 5.4-43.7 5.6-44.7.3-2.7-.6-5.3-3-7.4-24.2 24.7-44.5 51.8-56.1 84.6 7.4-5.9 14.9-11.4 23.6-16.2-8.3 22.3-19.6 52.8-7.8 101.1 4.6 19 11.9 36.8 24.1 52.3 2.9 3.7 6.3 6.9 9.5 10.3.2-.2.4-.3.6-.5-1.4-7-2.2-14.1-1.5-21.9 2.2 3.2 3.9 6 5.9 8.6 12.6 16 28.7 27.4 47.2 35.6 25 11.3 51.1 13.3 77.9 8.6 54.9-9.7 90.7-48.6 116-98.8 1-1.8.6-2.9-.9-4.2m172-46.4c-9.5-3.1-22.2-4.2-28.7-2.9 9.9 4 14.1 6.6 18.8 12 12.6 14.4 10.4 34.7-5.4 45.6-11.7 8.1-24.9 10.5-38.9 9.1-1.2-.1-2.3-.4-3-.6 2.8-3.7 6-7 8.1-10.8 9.4-16.8 5.4-42.1-8.7-56.1-2.1-2.1-4.6-3.9-7-5.9-.3 1.3-.1 2.1.1 2.8 4.2 16.6-8.1 32.4-24.8 31.8-7.6-.3-13.9-3.8-19.6-8.5-19.5-16.1-39.1-32.1-58.5-48.3-5.9-4.9-12.5-8.1-20.1-8.7-4.6-.4-9.3-.6-13.9-.9-5.9-.4-8.8-2.8-10.4-8.4-.9-3.4-1.5-6.8-2.2-10.2-1.5-8.1-6.2-13-14.3-14.2-4.4-.7-8.9-1-13.3-1.5-13-1.4-19.8-7.4-22.6-20.3-5 11-1.6 22.4 7.3 29.9 4.5 3.8 9.3 7.3 13.8 11.2 4.6 3.8 7.4 8.7 7.9 14.8.4 4.7.8 9.5 1.8 14.1 2.2 10.6 8.9 18.4 17 25.1 16.5 13.7 33 27.3 49.5 41.1 17.9 15 13.9 32.8 13 56-.9 22.9 12.2 42.9 33.5 51.2 1 .4 2 .6 3.6 1.1-15.7-18.2-10.1-44.1.7-52.3.3 2.2.4 4.3.9 6.4 9.4 44.1 45.4 64.2 85 56.9 16-2.9 30.6-8.9 42.9-19.8 2-1.8 3.7-4.1 5.9-6.5-19.3 4.6-35.8.1-50.9-10.6.7-.3 1.3-.3 1.9-.3 21.3 1.8 40.6-3.4 57-17.4 19.5-16.6 26.6-42.9 17.4-66-8.3-20.1-23.6-32.3-43.8-38.9M99.4 179.3c-5.3-9.2-13.2-15.6-22.1-21.3 13.7-.5 26.6.2 39.6 3.7-7-12.2-8.5-24.7-5-38.7 5.3 11.9 13.7 20.1 23.6 26.8 19.7 13.2 35.7 19.6 46.7 30.2 3.4 3.3 6.3 7.1 9.6 10.9-.8-2.1-1.4-4.1-2.2-6-5-10.6-13-18.6-22.6-25-1.8-1.2-2.8-2.5-3.4-4.5-3.3-12.5-3-25.1-.7-37.6 1-5.5 2.8-10.9 4.5-16.3.8-2.4 2.3-4.6 4-6.6.6 6.9 0 25.5 19.6 46 10.8 11.3 22.4 21.9 33.9 32.7 9 8.5 18.3 16.7 25.5 26.8 1.1 1.6 2.2 3.3 3.8 4.7-5-13-14.2-24.1-24.2-33.8-9.6-9.3-19.4-18.4-29.2-27.4-3.3-3-4.6-6.7-5.1-10.9-1.2-10.4 0-20.6 4.3-30.2.5-1 1.1-2 1.9-3.3.5 4.2.6 7.9 1.4 11.6 4.8 23.1 20.4 36.3 49.3 63.5 10 9.4 19.3 19.2 25.6 31.6 4.8 9.3 7.3 19 5.7 29.6-.1.6.5 1.7 1.1 2 6.2 2.6 10 6.9 9.7 14.3 7.7-2.6 12.5-8 16.4-14.5 4.2 20.2-9.1 50.3-27.2 58.7.4-4.5 5-23.4-16.5-27.7-6.8-1.3-12.8-1.3-22.9-2.1 4.7-9 10.4-20.6.5-22.4-24.9-4.6-52.8 1.9-57.8 4.6 8.2.4 16.3 1 23.5 3.3-2 6.5-4 12.7-5.8 18.9-1.9 6.5 2.1 14.6 9.3 9.6 1.2-.9 2.3-1.9 3.3-2.7-3.1 17.9-2.9 15.9-2.8 18.3.3 10.2 9.5 7.8 15.7 7.3-2.5 11.8-29.5 27.3-45.4 25.8 7-4.7 12.7-10.3 15.9-17.9q-9.75 1.2-19.2 2.4l-.3-.9c4.7-3.4 8-7.8 10.2-13.1 8.7-21.1-3.6-38-25-39.9-9.1-.8-17.8.8-25.9 5.5 6.2-15.6 17.2-26.6 32.6-34.5-15.2-4.3-8.9-2.7-24.6-6.3 14.6-9.3 30.2-13.2 46.5-14.6-5.2-3.2-48.1-3.6-70.2 20.9 7.9 1.4 15.5 2.8 23.2 4.2-23.8 7-44 19.7-62.4 35.6 1.1-4.8 2.7-9.5 3.3-14.3.6-4.5.8-9.2.1-13.6-1.5-9.4-8.9-15.1-19.7-16.3-7.9-.9-15.6.1-23.3 1.3-.9.1-1.7.3-2.9 0 15.8-14.8 36-21.7 53.1-33.5 6-4.5 6.8-8.2 3-14.9m128.4 26.8c3.3 16 12.6 25.5 23.8 24.3-4.6-11.3-12.1-19.5-23.8-24.3"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/dailymotion.svg������������������0000664�0000000�0000000�00000001361�14753064456�0030463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M298.93 267a48.4 48.4 0 0 0-24.36-6.21q-19.83 0-33.44 13.27t-13.61 33.42q0 21.16 13.28 34.6t33.43 13.44q20.5 0 34.11-13.78T322 307.47a47.13 47.13 0 0 0-6.1-23.47 44.13 44.13 0 0 0-16.97-17M0 32v448h448V32Zm374.71 373.26h-53.1v-23.89h-.67q-15.79 26.2-55.78 26.2-27.56 0-48.89-13.1a88.3 88.3 0 0 1-32.94-35.77q-11.6-22.68-11.59-50.89 0-27.56 11.76-50.22a89.9 89.9 0 0 1 32.93-35.78q21.18-13.09 47.72-13.1a80.9 80.9 0 0 1 29.74 5.21q13.28 5.21 25 17V153l55.79-12.09Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/dart-lang.svg��������������������0000664�0000000�0000000�00000001163�14753064456�0030004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M378.6 78.9c-2.8-.1-5.6-.2-8.5-.2H106l143.2-72C256.6 2.3 268 0 279.6 0c13.5 0 29.4 9.2 37 16.8l62 62zM107.3 96.5h262.8c16 0 25.4 1.4 35.4 9.3L512 212.2V421l-79.3.7zM96.5 373V110.8l323.8 323.8.7 77.4H208.8l-98.1-98.2c-11.3-11.3-14.2-15.3-14.2-40.8M78.7 105.3V373c0 3.3.1 6.3.2 9.1l-62-62C6.5 309.3 0 294.3 0 279.6c0-6.8 3.9-17.5 6.7-23.6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/dashcube.svg���������������������0000664�0000000�0000000�00000001010�14753064456�0027700�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M326.6 104H110.4c-51.1 0-91.2 43.3-91.2 93.5V427c0 50.5 40.1 85 91.2 85h227.2c51.1 0 91.2-34.5 91.2-85V0zM153.9 416.5c-17.7 0-32.4-15.1-32.4-32.8V240.8c0-17.7 14.7-32.5 32.4-32.5h140.7c17.7 0 32 14.8 32 32.5v123.5l51.1 52.3H153.9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/debian.svg�����������������������0000664�0000000�0000000�00000011125�14753064456�0027354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M380.2 245.6c3-7.6 5.5-14 5.2-24.4l-4.3 9c4.4-13.2 4-27.1 3.6-40.4-.2-6-.3-11.8 0-17.4l-1.8-.5c-1.5-45.2-40.6-93.1-75.3-109.4-30-13.8-76.1-16.2-97.3-5.8 1.3-1.1 4.2-2 6.8-2.7l.3-.1c3.3-1 6-1.7 4-2.9-19.2 1.9-24.9 5.5-31.1 9.4h-.1c-4.6 2.9-9.5 6-20.3 8.7-3.5 3.4 1.7 2 5.8.9s7.2-1.9-.1 2.4c-3.5 1-6.6 1.3-9.6 1.6h-.1c-8.3.8-15.8 1.6-30.7 17 .8 1.3 3.4-.2 5.3-1.3l.1-.1c2.3-1.4 3.4-2-1.7 4.4-19.1-2.4-60.3 43.7-69.1 59l4.6.8c-3.2 8-6.8 14.8-10 20.8-4.3 8.1-7.9 14.9-8.7 21.3-.3 5.1-1 11-1.7 17.3l-.3 3-.1.6c-3 27.3-6.7 60.8 3.9 73l-1.3 13c.6 1.2 1.1 2.3 1.6 3.5.2.4.4.8.5 1.1 1 2.1 2 4.2 3.3 6.2l-3 .2c7 22.1 10.8 22.5 15.1 22.9 4.4.4 9.3.9 18.7 24.2-2.7-.9-5.5-1.9-9.4-7.2-.5 4.1 5.8 16.3 13.1 25.8l-3.1 3.6c2.1 3.7 4.8 6.2 7.6 8.8 1 .9 2.1 1.9 3.1 2.9-11.9-6.5 3.2 13.7 11.9 25.2.8 1.1 1.5 2 2.2 2.9 1.4 1.9 2.5 3.4 2.9 4.1l2.4-4.2c-.3 6.1 4.3 13.9 13.1 24.7l7.3-.3c3 6 14 16.7 20.7 17.2l-4.4 5.8c8.1 2.6 10.3 4.3 12.7 6.2 2.6 2.1 5.4 4.3 16.1 8.1l-4.2-7.4c3.5 3 6.2 5.9 8.8 8.7l.1.1c5.2 5.6 9.9 10.6 19.7 15.3 10.7 3.7 16.6 4.7 22.7 5.8.3 0 .6.1.9.1 5.4.8 11.2 1.8 20.8 4.5-1.1-.1-2.2-.1-3.3-.1-2.3-.1-4.7-.1-7-.1-14.4-.2-29.2-.4-42.7-5.2-96.6-25.7-184.9-139-178.4-255.6-.6-9.9-.3-20.9 0-30.7.4-13.5.7-24.8-1.6-28.3l1-3.1c5.3-17.4 11.7-38.2 23.8-62.8l-.1-.2v-.1c.4.4 3.4 3.4 8.8-5.8.8-1.8 1.6-3.7 2.4-5.6.5-1.1.9-2.2 1.4-3.2 2.5-6.1 5.1-12.3 8.4-17.9l2.6-.6c1.7-10.1 17-23.8 29.8-35.2l1.1-1c5.7-5.1 10.7-9.7 13.6-13.1l.7 4.4c17-15.9 44.6-27.5 65.6-36.4l.5-.2c4.8-2 9.3-3.9 13.3-5.7-3.4 3.8 2.2 2.7 10 1 4.8-1 10.4-2.1 15.3-2.4l-3.9 2.1c-2.7 1.4-5.4 2.8-8 4.6 8.1-2 11.7-1.4 15.7-.8h.3c3.5.6 7.3 1.2 14.6.2-5.6.8-12.3 3-11.2 3.8 7.9.9 12.8-.1 17.2-1h.2c5.5-1.1 10.3-2 19.3.9l-1-4.8c7.3 2.6 12.7 4.3 17.5 5.8l.5.1c10 3 17.6 5.3 34.2 14.1 3.2.2 5.3-.5 7.4-1.2h.1c3.6-1.1 7-2.1 15.2 1.2.3.5.5 1 .7 1.4.1.2.2.5.3.7v.1c1 2.6 1.8 4.6 14.6 12.1 1.7-.7-2.7-4.7-6.4-8.2l-.1-.1c-.2-.1-.3-.3-.5-.4 32.2 17.3 67.3 54.1 78 93.5-6-11.1-5.2-5.5-4.3.5.6 4 1.2 8.1-.2 7.5 4.5 12.1 8.1 24.5 10.4 37.4l-.8-2.9-.1-.3c-3.3-11.9-9.6-34.3-19.9-49.3-.4 4.3-2.8 3.9-5.2 3.5h-.1c-3.3-.6-6.2-1.1-1.9 12.6 2.6 3.8 3.1 2.4 3.5 1.1.5-1.5.9-2.7 4.7 5.2.1 4.1 1 8.2 2.1 12.7l.1.6c.1.3.1.5.2.8l.1.6c.6 2.6 1.3 5.4 1.8 8.4-1.1-.2-2.3-2.2-3.4-4.2-1.4-2.4-2.8-4.7-3.7-3.2 2.4 11.5 6.5 17.4 8 18.3-.3.6-.6.7-1.1.7-.8 0-1.8.1-1.9 5.3.7 13.7 3.3 12.5 5.3 11.6.6-.3 1.2-.6 1.7-.4-.6 2.5-1.6 5.1-2.7 7.9-2.8 7.1-6 15.4-3.4 26.1-.8-3-2-6-3.1-8.9l-.1-.4-.6-1.5c-.3-.8-.6-1.6-.9-2.3-.6 4.4-.3 7.7-.1 10.6v.7c.4 5.3.7 10-3 19.9 4.3-14.2 3.8-26.9-.2-20.8 1 10.9-3.7 20.4-8 28.9l-.1.2c-3.6 7.1-6.8 13.5-5.9 19.3l-5.2-7.1c-7.5 10.9-7 13.3-6.5 15.5v.1c.5 1.9 1 3.8-3.4 10.8 1.7-2.9 1.3-3.6 1-4.2-.4-.8-.7-1.5 1.7-5.1-1.6.1-5.5 3.9-10.1 8.5-3.9 3.9-8.5 8.4-12.8 11.8-37.5 30.1-82.3 34-125.6 17.8.2-1-.2-2.1-3.1-4.1-36.8-28.2-58.5-52.1-50.9-107.5 2.1-1.6 3.6-5.8 5.3-10.8l.2-.4.1-.3v-.1c2.9-8.4 6.5-18.8 14.3-23.8 7.8-17.3 31.3-33.3 56.4-33.7 25.6-1.4 47.2 13.7 58.1 27.9-19.8-18.4-52.1-24-79.7-10.4-28.2 12.7-45 43.8-42.5 74.7.3-.4.6-.6.9-.8l.1-.1.1-.1c.6-.5 1.1-.9 1.4-3.3-.9 60.2 64.8 104.3 112.1 82l.6 1.3c12.7-3.5 15.9-6.5 20.3-10.7l.1-.1c2.2-2.1 4.7-4.5 8.9-7.3-.3.7-1.3 1.7-2.4 2.7-2.2 2.1-4.6 4.5-1.6 4.6 5-1.3 18.5-13.4 28.5-22.3.6-.5 1.2-1 1.7-1.5 1.5-1.3 2.8-2.5 4-3.6l.3-.3c1.9-4.2 1.6-5.6 1.3-7v-.1c-.4-1.6-.8-3.3 2.4-9.6l7.3-3.7c.8-2.1 1.5-4.1 2.2-6 .2-.6.5-1.2.7-1.8l-.4-.2zM349.3 34.3l-.2-.1zM247.8 334.1c-6-3-13.7-8.9-14.8-11.4l-.4.3c-.3.6-.5 1.3-.2 2.2-12.2-5.7-23.4-14.3-32.6-24.9 4.9 7.1 10.1 14.1 17 19.5-6.9-2.3-15.1-11.8-21.6-19.3l-.1-.1c-4.3-5-7.9-9.1-9.7-9.5 19.8 35.5 80.5 62.3 112.3 49-14.7.5-33.4.3-49.9-5.8m79.3-119.7-.1-.2c-.5-1.5-1.1-3.1-1.7-3.4 1.4-5.8 5.4-10.7 4.4 4.6-1 3.8-1.8 1.5-2.6-1m-4.2 22.2c-1.3 7.9-5 15.5-10.1 22.5.2-2-1.2-2.4-2.6-2.8-2.9-.8-5.9-1.6 5.6-16.1-.5 1.9-2.1 4.6-3.7 7.3l-.3.4c-3.6 5.9-6.7 11 4 4.3l1-1.8c2.6-4.5 5-8.8 6-13.8zm-55.6 33.9c7.1.6 14.1.6 21-1.1-2.5 2.4-5.2 4.8-8.3 7.2-11.1-1.7-21.2-6-12.7-6.1m-92.6 11.6c3.6 7.1 6.4 11.5 9 15.7l.1.2c2.3 3.7 4.4 7.1 6.8 11.7-5.1-4.2-8.7-9.5-12.5-15l-.3-.5c-1.4-2.1-2.8-4.2-4.4-6.2l1.2-5.9zm7.5-9.6c1.6 3.3 3.2 6.4 5.7 9.1l2.6 7.7-1.3-2.1c-3.2-5.3-6.3-10.6-8-16.7l.8 1.6zm238.9-41.6c-2.3 17.4-7.7 34.6-16 50.3 7.6-14.9 12.5-30.9 14.8-47.2zM35.6 110.6c.4.8 1.4.5 2.3.3 1.9-.5 3.6-.9-.1 7.6-.5.3-1 .7-1.5 1-1.4.9-2.8 1.9-3.9 3 1.9-3.8 3.5-7.4 3.2-11.9m-10.3 41.7c-.7 3.7-1.5 7.9-3.4 13.9.2-1.9 0-3.5-.2-4.9v-.1c-.4-3.4-.7-6.3 4.3-12.8-.3 1.2-.5 2.5-.7 3.8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/deezer.svg�����������������������0000664�0000000�0000000�00000001065�14753064456�0027412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M451.46 244.71H576V172H451.46Zm0-173.89v72.67H576V70.82Zm0 275.06H576V273.2H451.46ZM0 447.09h124.54v-72.67H0Zm150.47 0H275v-72.67H150.47Zm150.52 0h124.54v-72.67H301Zm150.47 0H576v-72.67H451.46ZM301 345.88h124.53V273.2H301Zm-150.52 0H275V273.2H150.47Zm0-101.17H275V172H150.47Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/delicious.svg��������������������0000664�0000000�0000000�00000001356�14753064456�0030117�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M446.5 68c-.4-1.5-.9-3-1.4-4.5-.9-2.5-2-4.8-3.3-7.1-1.4-2.4-3-4.8-4.7-6.9-2.1-2.5-4.4-4.8-6.9-6.8-1.1-.9-2.2-1.7-3.3-2.5-1.3-.9-2.6-1.7-4-2.4-1.8-1-3.6-1.8-5.5-2.5-1.7-.7-3.5-1.3-5.4-1.7-3.8-1-7.9-1.5-12-1.5H48C21.5 32 0 53.5 0 80v352c0 4.1.5 8.2 1.5 12 2 7.7 5.8 14.6 11 20.3q1.5 1.65 3.3 3.3c5.7 5.2 12.6 9 20.3 11 3.8 1 7.9 1.5 12 1.5h352c26.5 0 48-21.5 48-48V80c-.1-4.1-.6-8.2-1.6-12M416 432c0 8.8-7.2 16-16 16H224V256H32V80c0-8.8 7.2-16 16-16h176v192h192z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/deploydog.svg��������������������0000664�0000000�0000000�00000002020�14753064456�0030112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M382.2 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.6 0-33.2 16.4-33.2 32.6M188.5 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.7 0-33.2 16.4-33.2 32.6M448 96c17.5 0 32 14.4 32 32v256c0 17.5-14.4 32-32 32H64c-17.5 0-32-14.4-32-32V128c0-17.5 14.4-32 32-32zm0-32H64C28.8 64 0 92.8 0 128v256c0 35.2 28.8 64 64 64h384c35.2 0 64-28.8 64-64V128c0-35.2-28.8-64-64-64"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/deskpro.svg����������������������0000664�0000000�0000000�00000001565�14753064456�0027610�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 480 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m205.9 512 31.1-38.4c12.3-.2 25.6-1.4 36.5-6.6 38.9-18.6 38.4-61.9 38.3-63.8-.1-5-.8-4.4-28.9-37.4H362c-.2 50.1-7.3 68.5-10.2 75.7-9.4 23.7-43.9 62.8-95.2 69.4-8.7 1.1-32.8 1.2-50.7 1.1m200.4-167.7c38.6 0 58.5-13.6 73.7-30.9l-175.5-.3-17.4 31.3zm-43.6-223.9v168.3h-73.5l-32.7 55.5H250c-52.3 0-58.1-56.5-58.3-58.9-1.2-13.2-21.3-11.6-20.1 1.8 1.4 15.8 8.8 40 26.4 57.1h-91c-25.5 0-110.8-26.8-107-114V16.9C0 .9 9.7.3 15 .1h82c.2 0 .3.1.5.1 4.3-.4 50.1-2.1 50.1 43.7 0 13.3 20.2 13.4 20.2 0 0-18.2-5.5-32.8-15.8-43.7h84.2c108.7-.4 126.5 79.4 126.5 120.2m-132.5 56 64 29.3c13.3-45.5-42.2-71.7-64-29.3"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/dev.svg��������������������������0000664�0000000�0000000�00000001642�14753064456�0026713�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M120.12 208.29c-3.88-2.9-7.77-4.35-11.65-4.35H91.03v104.47h17.45c3.88 0 7.77-1.45 11.65-4.35s5.82-7.25 5.82-13.06v-69.65c-.01-5.8-1.96-10.16-5.83-13.06M404.1 32H43.9C19.7 32 .06 51.59 0 75.8v360.4C.06 460.41 19.7 480 43.9 480h360.2c24.21 0 43.84-19.59 43.9-43.8V75.8c-.06-24.21-19.7-43.8-43.9-43.8M154.2 291.19c0 18.81-11.61 47.31-48.36 47.25h-46.4V172.98h47.38c35.44 0 47.36 28.46 47.37 47.28zm100.68-88.66H201.6v38.42h32.57v29.57H201.6v38.41h53.29v29.57h-62.18c-11.16.29-20.44-8.53-20.72-19.69V193.7c-.27-11.15 8.56-20.41 19.71-20.69h63.19zm103.64 115.29c-13.2 30.75-36.85 24.63-47.44 0l-38.53-144.8h32.57l29.71 113.72 29.57-113.72h32.58z"/></svg>����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/deviantart.svg�������������������0000664�0000000�0000000�00000000710�14753064456�0030271�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m320 93.2-98.2 179.1 7.4 9.5H320v127.7H159.1l-13.5 9.2-43.7 84c-.3 0-8.6 8.6-9.2 9.2H0v-93.2l93.2-179.4-7.4-9.2H0V102.5h156l13.5-9.2 43.7-84c.3 0 8.6-8.6 9.2-9.2H320z"/></svg>��������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/dhl.svg��������������������������0000664�0000000�0000000�00000001706�14753064456�0026705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M238 301.2h58.7L319 271h-58.7zM0 282.9v6.4h81.8l4.7-6.4zM172.9 271c-8.7 0-6-3.6-4.6-5.5 2.8-3.8 7.6-10.4 10.4-14.1s2.8-5.9-2.8-5.9h-51l-41.1 55.8h100.1c33.1 0 51.5-22.5 57.2-30.3zm317.5-6.9 39.3-53.4h-62.2l-39.3 53.4zM95.3 271H0v6.4h90.6zm111-26.6c-2.8 3.8-7.5 10.4-10.3 14.2-1.4 2-4.1 5.5 4.6 5.5h45.6s7.3-10 13.5-18.4c8.4-11.4.7-35-29.2-35H112.6l-20.4 27.8h111.4c5.6 0 5.5 2.2 2.7 5.9M0 301.2h73.1l4.7-6.4H0zm323 0h58.7L404 271h-58.7c-.1 0-22.3 30.2-22.3 30.2m222 .1h95v-6.4h-90.3zm22.3-30.3-4.7 6.4H640V271zm-13.5 18.3H640v-6.4h-81.5zm-164.2-78.6-22.5 30.6h-26.2l22.5-30.6h-58.7l-39.3 53.4H409l39.3-53.4zm33.5 60.3s-4.3 5.9-6.4 8.7c-7.4 10-.9 21.6 23.2 21.6h94.3l22.3-30.3z"/></svg>����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/diaspora.svg���������������������0000664�0000000�0000000�00000001270�14753064456�0027734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M251.64 354.55c-1.4 0-88 119.9-88.7 119.9S76.34 414 76 413.25s86.6-125.7 86.6-127.4c0-2.2-129.6-44-137.6-47.1-1.3-.5 31.4-101.8 31.7-102.1.6-.7 144.4 47 145.5 47 .4 0 .9-.6 1-1.3.4-2 1-148.6 1.7-149.6.8-1.2 104.5-.7 105.1-.3 1.5 1 3.5 156.1 6.1 156.1 1.4 0 138.7-47 139.3-46.3.8.9 31.9 102.2 31.5 102.6-.9.9-140.2 47.1-140.6 48.8-.3 1.4 82.8 122.1 82.5 122.9s-85.5 63.5-86.3 63.5c-1-.2-89-125.5-90.9-125.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/digg.svg�������������������������0000664�0000000�0000000�00000001050�14753064456�0027040�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M81.7 172.3H0v174.4h132.7V96h-51zm0 133.4H50.9v-92.3h30.8zm297.2-133.4v174.4h81.8v28.5h-81.8V416H512V172.3zm81.8 133.4h-30.8v-92.3h30.8zm-235.6 41h82.1v28.5h-82.1V416h133.3V172.3H225.1zm51.2-133.3h30.8v92.3h-30.8zM153.3 96h51.3v51h-51.3zm0 76.3h51.3v174.4h-51.3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/digital-ocean.svg����������������0000664�0000000�0000000�00000001111�14753064456�0030624�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M87 481.8h73.7v-73.6H87zM25.4 346.6v61.6H87v-61.6zm466.2-169.7c-23-74.2-82.4-133.3-156.6-156.6C164.9-32.8 8 93.7 8 255.9h95.8c0-101.8 101-180.5 208.1-141.7 39.7 14.3 71.5 46.1 85.8 85.7 39.1 107-39.7 207.8-141.4 208v.3h-.3V504c162.6 0 288.8-156.8 235.6-327.1m-235.3 231v-95.3h-95.6v95.6H256v-.3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/discord.svg����������������������0000664�0000000�0000000�00000002660�14753064456�0027565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M524.531 69.836a1.5 1.5 0 0 0-.764-.7A485 485 0 0 0 404.081 32.03a1.82 1.82 0 0 0-1.923.91 338 338 0 0 0-14.9 30.6 447.9 447.9 0 0 0-134.426 0 310 310 0 0 0-15.135-30.6 1.89 1.89 0 0 0-1.924-.91 483.7 483.7 0 0 0-119.688 37.107 1.7 1.7 0 0 0-.788.676C39.068 183.651 18.186 294.69 28.43 404.354a2.02 2.02 0 0 0 .765 1.375 487.7 487.7 0 0 0 146.825 74.189 1.9 1.9 0 0 0 2.063-.676A348 348 0 0 0 208.12 430.4a1.86 1.86 0 0 0-1.019-2.588 321 321 0 0 1-45.868-21.853 1.885 1.885 0 0 1-.185-3.126 251 251 0 0 0 9.109-7.137 1.82 1.82 0 0 1 1.9-.256c96.229 43.917 200.41 43.917 295.5 0a1.81 1.81 0 0 1 1.924.233 235 235 0 0 0 9.132 7.16 1.884 1.884 0 0 1-.162 3.126 301.4 301.4 0 0 1-45.89 21.83 1.875 1.875 0 0 0-1 2.611 391 391 0 0 0 30.014 48.815 1.86 1.86 0 0 0 2.063.7A486 486 0 0 0 610.7 405.729a1.88 1.88 0 0 0 .765-1.352c12.264-126.783-20.532-236.912-86.934-334.541M222.491 337.58c-28.972 0-52.844-26.587-52.844-59.239s23.409-59.241 52.844-59.241c29.665 0 53.306 26.82 52.843 59.239 0 32.654-23.41 59.241-52.843 59.241m195.38 0c-28.971 0-52.843-26.587-52.843-59.239s23.409-59.241 52.843-59.241c29.667 0 53.307 26.82 52.844 59.239 0 32.654-23.177 59.241-52.844 59.241"/></svg>��������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/discourse.svg��������������������0000664�0000000�0000000�00000001035�14753064456�0030131�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9S348.6 32 225.9 32M224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/dochub.svg�����������������������0000664�0000000�0000000�00000000717�14753064456�0027403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 416 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M397.9 160H256V19.6zM304 192v130c0 66.8-36.5 100.1-113.3 100.1H96V84.8h94.7c12 0 23.1.8 33.1 2.5v-84C212.9 1.1 201.4 0 189.2 0H0v512h189.2C329.7 512 400 447.4 400 318.1V192z"/></svg>�������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/docker.svg�����������������������0000664�0000000�0000000�00000001463�14753064456�0027405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M349.9 236.3h-66.1v-59.4h66.1zm0-204.3h-66.1v60.7h66.1zm78.2 144.8H362v59.4h66.1zm-156.3-72.1h-66.1v60.1h66.1zm78.1 0h-66.1v60.1h66.1zm276.8 100c-14.4-9.7-47.6-13.2-73.1-8.4-3.3-24-16.7-44.9-41.1-63.7l-14-9.3-9.3 14c-18.4 27.8-23.4 73.6-3.7 103.8-8.7 4.7-25.8 11.1-48.4 10.7H2.4c-8.7 50.8 5.8 116.8 44 162.1 37.1 43.9 92.7 66.2 165.4 66.2 157.4 0 273.9-72.5 328.4-204.2 21.4.4 67.6.1 91.3-45.2 1.5-2.5 6.6-13.2 8.5-17.1zm-511.1-27.9h-66v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1zm78.1 0h-66.1v59.4h66.1zm-78.1-72.1h-66.1v60.1h66.1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/draft2digital.svg����������������0000664�0000000�0000000�00000001733�14753064456�0030656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 480 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m480 398.1-144-82.2v64.7h-91.3c30.8-35 81.8-95.9 111.8-149.3 35.2-62.6 16.1-123.4-12.8-153.3-4.4-4.6-62.2-62.9-166-41.2-59.1 12.4-89.4 43.4-104.3 67.3-13.1 20.9-17 39.8-18.2 47.7-5.5 33 19.4 67.1 56.7 67.1 31.7 0 57.3-25.7 57.3-57.4 0-27.1-19.7-52.1-48-56.8 1.8-7.3 17.7-21.1 26.3-24.7 41.1-17.3 78 5.2 83.3 33.5 8.3 44.3-37.1 90.4-69.7 127.6C84.5 328.1 18.3 396.8 0 415.9l336-.1V480zM369.9 371l47.1 27.2-47.1 27.2zM134.2 161.4c0 12.4-10 22.4-22.4 22.4s-22.4-10-22.4-22.4 10-22.4 22.4-22.4 22.4 10.1 22.4 22.4M82.5 380.5c25.6-27.4 97.7-104.7 150.8-169.9 35.1-43.1 40.3-82.4 28.4-112.7-7.4-18.8-17.5-30.2-24.3-35.7 45.3 2.1 68 23.4 82.2 38.3 0 0 42.4 48.2 5.8 113.3-37 65.9-110.9 147.5-128.5 166.7z"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/dribbble.svg���������������������0000664�0000000�0000000�00000002466�14753064456�0027707�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 8C119.252 8 8 119.252 8 256s111.252 248 248 248 248-111.252 248-248S392.748 8 256 8m163.97 114.366c29.503 36.046 47.369 81.957 47.835 131.955-6.984-1.477-77.018-15.682-147.502-6.818-5.752-14.041-11.181-26.393-18.617-41.614 78.321-31.977 113.818-77.482 118.284-83.523M396.421 97.87c-3.81 5.427-35.697 48.286-111.021 76.519-34.712-63.776-73.185-116.168-79.04-124.008 67.176-16.193 137.966 1.27 190.061 47.489m-230.48-33.25c5.585 7.659 43.438 60.116 78.537 122.509-99.087 26.313-186.36 25.934-195.834 25.809C62.38 147.205 106.678 92.573 165.941 64.62M44.17 256.323c0-2.166.043-4.322.108-6.473 9.268.19 111.92 1.513 217.706-30.146 6.064 11.868 11.857 23.915 17.174 35.949-76.599 21.575-146.194 83.527-180.531 142.306C64.794 360.405 44.17 310.73 44.17 256.323m81.807 167.113c22.127-45.233 82.178-103.622 167.579-132.756 29.74 77.283 42.039 142.053 45.189 160.638-68.112 29.013-150.015 21.053-212.768-27.882m248.38 8.489c-2.171-12.886-13.446-74.897-41.152-151.033 66.38-10.626 124.7 6.768 131.947 9.055-9.442 58.941-43.273 109.844-90.795 141.978"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/dropbox.svg����������������������0000664�0000000�0000000�00000000752�14753064456�0027613�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 528 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m264.4 116.3-132 84.3 132 84.3-132 84.3L0 284.1l132.3-84.3L0 116.3 132.3 32zM131.6 395.7l132-84.3 132 84.3-132 84.3zm132.8-111.6 132-84.3-132-83.6L395.7 32 528 116.3l-132.3 84.3L528 284.8l-132.3 84.3z"/></svg>����������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/drupal.svg�����������������������0000664�0000000�0000000�00000002737�14753064456�0027432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M303.973 108.136C268.2 72.459 234.187 38.35 224.047 0c-9.957 38.35-44.25 72.459-80.019 108.136-53.561 53.564-114.312 114.22-114.312 205.3-2.337 107.3 82.752 196.18 190.053 198.517S415.948 429.2 418.285 321.9q.091-4.231 0-8.464c0-91.08-60.751-151.736-114.312-205.3m-174.326 223a130.3 130.3 0 0 0-15.211 24.153 4.98 4.98 0 0 1-3.319 2.766h-1.659c-4.333 0-9.219-8.481-9.219-8.481-1.29-2.028-2.489-4.149-3.687-6.361l-.83-1.752c-11.247-25.72-1.475-62.318-1.475-62.318a160.6 160.6 0 0 1 23.231-49.873 291 291 0 0 1 21.022-27.657l9.219 9.219 43.512 44.434a4.98 4.98 0 0 1 0 6.638L145.78 312.33Zm96.612 127.311a67.2 67.2 0 0 1-49.781-111.915c14.2-16.871 31.528-33.464 50.334-55.313 22.309 23.785 36.875 40.1 51.164 57.986a28.4 28.4 0 0 1 2.95 4.425 65.9 65.9 0 0 1 11.984 37.981 66.65 66.65 0 0 1-66.466 66.836ZM352.371 351.6a7.74 7.74 0 0 1-6.176 5.347H344.9a11.25 11.25 0 0 1-6.269-5.07 348 348 0 0 0-39.456-48.952l-17.788-18.435-59.087-61.305a498 498 0 0 1-35.4-36.322 12 12 0 0 0-.922-1.382 35.4 35.4 0 0 1-4.7-9.219v-1.752a31.35 31.35 0 0 1 9.218-27.656c11.432-11.431 22.955-22.954 33.833-34.939 11.984 13.275 24.8 26 37.428 38.627a531 531 0 0 1 69.6 79.1 147.5 147.5 0 0 1 27.011 83.8 134.1 134.1 0 0 1-5.997 38.158"/></svg>���������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/dyalog.svg�����������������������0000664�0000000�0000000�00000000724�14753064456�0027414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 416 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 32v119.2h64V96h107.2C284.6 96 352 176.2 352 255.9 352 332 293.4 416 171.2 416H0v64h171.2C331.9 480 416 367.3 416 255.9c0-58.7-22.1-113.4-62.3-154.3C308.9 56 245.7 32 171.2 32z"/></svg>��������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/earlybirds.svg�������������������0000664�0000000�0000000�00000004121�14753064456�0030270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 480 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M313.2 47.5c1.2-13 21.3-14 36.6-8.7.9.3 26.2 9.7 19 15.2-27.9-7.4-56.4 18.2-55.6-6.5m-201 6.9c30.7-8.1 62 20 61.1-7.1-1.3-14.2-23.4-15.3-40.2-9.6-1 .3-28.7 10.5-20.9 16.7M319.4 160c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16m-159.7 0c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16m318.5 163.2c-9.9 24-40.7 11-63.9-1.2-13.5 69.1-58.1 111.4-126.3 124.2.3.9-2-.1 24 1 33.6 1.4 63.8-3.1 97.4-8-19.8-13.8-11.4-37.1-9.8-38.1 1.4-.9 14.7 1.7 21.6 11.5 8.6-12.5 28.4-14.8 30.2-13.6 1.6 1.1 6.6 20.9-6.9 34.6 4.7-.9 8.2-1.6 9.8-2.1 2.6-.8 17.7 11.3 3.1 13.3-14.3 2.3-22.6 5.1-47.1 10.8-45.9 10.7-85.9 11.8-117.7 12.8l1 11.6c3.8 18.1-23.4 24.3-27.6 6.2.8 17.9-27.1 21.8-28.4-1l-.5 5.3c-.7 18.4-28.4 17.9-28.3-.6-7.5 13.5-28.1 6.8-26.4-8.5l1.2-12.4c-36.7.9-59.7 3.1-61.8 3.1-20.9 0-20.9-31.6 0-31.6 2.4 0 27.7 1.3 63.2 2.8-61.1-15.5-103.7-55-114.9-118.2-25 12.8-57.5 26.8-68.2.8-10.5-25.4 21.5-42.6 66.8-73.4.7-6.6 1.6-13.3 2.7-19.8-14.4-19.6-11.6-36.3-16.1-60.4-16.8 2.4-23.2-9.1-23.6-23.1.3-7.3 2.1-14.9 2.4-15.4 1.1-1.8 10.1-2 12.7-2.6 6-31.7 50.6-33.2 90.9-34.5 19.7-21.8 45.2-41.5 80.9-48.3C203.3 29 215.2 8.5 216.2 8c1.7-.8 21.2 4.3 26.3 23.2 5.2-8.8 18.3-11.4 19.6-10.7 1.1.6 6.4 15-4.9 25.9 40.3 3.5 72.2 24.7 96 50.7 36.1 1.5 71.8 5.9 77.1 34 2.7.6 11.6.8 12.7 2.6.3.5 2.1 8.1 2.4 15.4-.5 13.9-6.8 25.4-23.6 23.1-3.2 17.3-2.7 32.9-8.7 47.7 2.4 11.7 4 23.8 4.8 36.4 37 25.4 70.3 42.5 60.3 66.9M207.4 159.9c.9-44-37.9-42.2-78.6-40.3-21.7 1-38.9 1.9-45.5 13.9-11.4 20.9 5.9 92.9 23.2 101.2 9.8 4.7 73.4 7.9 86.3-7.1 8.2-9.4 15-49.4 14.6-67.7m52 58.3c-4.3-12.4-6-30.1-15.3-32.7-2-.5-9-.5-11 0-10 2.8-10.8 22.1-17 37.2 15.4 0 19.3 9.7 23.7 9.7 4.3 0 6.3-11.3 19.6-14.2m135.7-84.7c-6.6-12.1-24.8-12.9-46.5-13.9-40.2-1.9-78.2-3.8-77.3 40.3-.5 18.3 5 58.3 13.2 67.8 13 14.9 76.6 11.8 86.3 7.1 15.8-7.6 36.5-78.9 24.3-101.3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/ebay.svg�������������������������0000664�0000000�0000000�00000002420�14753064456�0027050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m606 189.5-54.8 109.9-54.9-109.9h-37.5l10.9 20.6c-11.5-19-35.9-26-63.3-26-31.8 0-67.9 8.7-71.5 43.1h33.7c1.4-13.8 15.7-21.8 35-21.8 26 0 41 9.6 41 33v3.4c-12.7 0-28 .1-41.7.4-42.4.9-69.6 10-76.7 34.4q1.5-7.8 1.5-16.2c0-52.1-39.7-76.2-75.4-76.2-21.3 0-43 5.5-58.7 24.2v-80.6h-32.1v169.5c0 10.3-.6 22.9-1.1 33.1h31.5c.7-6.3 1.1-12.9 1.1-19.5 13.6 16.6 35.4 24.9 58.7 24.9 36.9 0 64.9-21.9 73.3-54.2-.5 2.8-.7 5.8-.7 9 0 24.1 21.1 45 60.6 45 26.6 0 45.8-5.7 61.9-25.5 0 6.6.3 13.3 1.1 20.2h29.8c-.7-8.2-1-17.5-1-26.8v-65.6c0-9.3-1.7-17.2-4.8-23.8l61.5 116.1-28.5 54.1h35.9L640 189.5zM243.7 313.8c-29.6 0-50.2-21.5-50.2-53.8 0-32.4 20.6-53.8 50.2-53.8 29.8 0 50.2 21.4 50.2 53.8 0 32.3-20.4 53.8-50.2 53.8m200.9-47.3c0 30-17.9 48.4-51.6 48.4-25.1 0-35-13.4-35-25.8 0-19.1 18.1-24.4 47.2-25.3 13.1-.5 27.6-.6 39.4-.6zm-411.9 1.6h128.8v-8.5c0-51.7-33.1-75.4-78.4-75.4-56.8 0-83 30.8-83 77.6 0 42.5 25.3 74 82.5 74 31.4 0 68-11.7 74.4-46.1h-33.1c-12 35.8-87.7 36.7-91.2-21.6m95-21.4H33.3c6.9-56.6 92.1-54.7 94.4 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/edge-legacy.svg������������������0000664�0000000�0000000�00000001264�14753064456�0030303�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m25.71 228.16.35-.48c0 .16 0 .32-.07.48Zm460.58 15.51c0-44-7.76-84.46-28.81-122.4C416.5 47.88 343.91 8 258.89 8 119 7.72 40.62 113.21 26.06 227.68c42.42-61.31 117.07-121.38 220.37-125 0 0 109.67 0 99.42 105H170c6.37-37.39 18.55-59 34.34-78.93-75.05 34.9-121.85 96.1-120.75 188.32.83 71.45 50.13 144.84 120.75 172 83.35 31.84 192.77 7.2 240.13-21.33V363.31c-80.87 56.49-270.87 60.92-272.26-67.57h314.08z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/edge.svg�������������������������0000664�0000000�0000000�00000002212�14753064456�0027033�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M120.1 37.44C161.1 12.23 207.7-.775 255 .002 423 .002 512 123.8 512 219.5c-.1 32.7-13 63.9-35.9 87.2-22.9 23.2-54 36.5-86.7 37-75.2 0-91.5-23.1-91.5-32 0-3.8 1.2-6.2 4.8-9.4l1-1.2.4-1.6c10.5-11.5 15.9-26.2 15.9-41.6 0-78.7-82.2-142.7-184-142.7-37.54-.3-74.54 8.9-107.52 26.9 27-57.52 82.72-97.6 91.32-103.82.8-.55.3-.84.3-.84m15.6 318.06c-1.4 30 4.6 60 16.4 87.2 13.6 26.4 32.7 51 56.5 69.3-59.5-11.5-111.49-43.9-149.4-89.3C21.12 376.3 0 318.4 0 257.9c0-51.2 62.4-94.4 136-94.4 36.6-.6 72.4 10.9 101.8 32.7l-3.6 1.2c-51.5 17.6-98.5 90.7-98.5 158.1M469.8 400l-.7.1c-11.8 18.8-25.9 35.1-42.2 49.5-30.8 28-68.1 45.5-108.8 49.9-18.6.3-36.8-3.2-53.8-11.4-25.6-10.3-47.1-30-61.6-53-14.4-23.9-21.1-51.7-19-79.6-.6-20.1 5.4-40.3 15-58.2 13.9 33.1 37.5 61.3 67.6 80.8s65.5 29.5 101.4 28.6c31 .3 62.1-6.7 90.2-20.5l1.9-.9c3.9-2.3 7.7-3.9 11.6 0 4.5 4.9 1.8 9.2-1.2 14-.2.2-.3.5-.4.7"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/elementor.svg��������������������0000664�0000000�0000000�00000000733�14753064456�0030127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M.361 256C.361 397 114 511 255 511c142 0 256-114 256-255C511 116 397 2.05 255 2.05 114 2.05.361 116 .361 256M192 150v213h-43V150zm42 0h128v43H234zm128 85v43H234v-43zm-128 85h128v43H234z"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/ello.svg�������������������������0000664�0000000�0000000�00000001162�14753064456�0027065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8m143.84 285.2C375.31 358.51 315.79 404.8 248 404.8s-127.31-46.29-143.84-111.6c-1.65-7.44 2.48-15.71 9.92-17.36s15.71 2.48 17.36 9.92c14.05 52.91 62 90.11 116.56 90.11s102.51-37.2 116.56-90.11c1.65-7.44 9.92-12.4 17.36-9.92 7.44 1.65 12.4 9.92 9.92 17.36"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/ember.svg������������������������0000664�0000000�0000000�00000004132�14753064456�0027224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M639.9 254.6c-1.1-10.7-10.7-6.8-10.7-6.8s-15.6 12.1-29.3 10.7c-13.7-1.3-9.4-32-9.4-32s3-28.1-5.1-30.4c-8.1-2.4-18 7.3-18 7.3s-12.4 13.7-18.3 31.2l-1.6.5s1.9-30.6-.3-37.6c-1.6-3.5-16.4-3.2-18.8 3s-14.2 49.2-15 67.2c0 0-23.1 19.6-43.3 22.8s-25-9.4-25-9.4 54.8-15.3 52.9-59.1-44.2-27.6-49-24c-4.6 3.5-29.4 18.4-36.6 59.7-.2 1.4-.7 7.5-.7 7.5s-21.2 14.2-33 18c0 0 33-55.6-7.3-80.9-11.4-6.8-21.3-.5-27.2 5.3 13.6-17.3 46.4-64.2 36.9-105.2-5.8-24.4-18-27.1-29.2-23.1-17 6.7-23.5 16.7-23.5 16.7s-22 32-27.1 79.5-12.6 105.1-12.6 105.1-10.5 10.2-20.2 10.7-5.4-28.7-5.4-28.7 7.5-44.6 7-52.1-1.1-11.6-9.9-14.2c-8.9-2.7-18.5 8.6-18.5 8.6s-25.5 38.7-27.7 44.6l-1.3 2.4-1.3-1.6s18-52.7.8-53.5-28.5 18.8-28.5 18.8-19.6 32.8-20.4 36.5l-1.3-1.6s8.1-38.2 6.4-47.6c-1.6-9.4-10.5-7.5-10.5-7.5s-11.3-1.3-14.2 5.9-13.7 55.3-15 70.7c0 0-28.2 20.2-46.8 20.4-18.5.3-16.7-11.8-16.7-11.8s68-23.3 49.4-69.2c-8.3-11.8-18-15.5-31.7-15.3-13.7.3-30.3 8.6-41.3 33.3-5.3 11.8-6.8 23-7.8 31.5 0 0-12.3 2.4-18.8-2.9s-10 0-10 0-11.2 14-.1 18.3 28.1 6.1 28.1 6.1c1.6 7.5 6.2 19.5 19.6 29.7 20.2 15.3 58.8-1.3 58.8-1.3l15.9-8.8s.5 14.6 12.1 16.7 16.4 1 36.5-47.9c11.8-25 12.6-23.6 12.6-23.6l1.3-.3s-9.1 46.8-5.6 59.7C187.7 319.4 203 318 203 318s8.3 2.4 15-21.2 19.6-49.9 19.6-49.9h1.6s-5.6 48.1 3 63.7 30.9 5.3 30.9 5.3 15.6-7.8 18-10.2c0 0 18.5 15.8 44.6 12.9 58.3-11.5 79.1-25.9 79.1-25.9s10 24.4 41.1 26.7c35.5 2.7 54.8-18.6 54.8-18.6s-.3 13.5 12.1 18.6 20.7-22.8 20.7-22.8l20.7-57.2h1.9s1.1 37.3 21.5 43.2 47-13.7 47-13.7 6.4-3.5 5.3-14.3m-578 5.3c.8-32 21.8-45.9 29-39 7.3 7 4.6 22-9.1 31.4-13.7 9.5-19.9 7.6-19.9 7.6m272.8-123.8s19.1-49.7 23.6-25.5-40 96.2-40 96.2c.5-16.2 16.4-70.7 16.4-70.7m22.8 138.4c-12.6 33-43.3 19.6-43.3 19.6s-3.5-11.8 6.4-44.9 33.3-20.2 33.3-20.2 16.2 12.4 3.6 45.5m84.6-14.6s-3-10.5 8.1-30.6c11-20.2 19.6-9.1 19.6-9.1s9.4 10.2-1.3 25.5-26.4 14.2-26.4 14.2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/empire.svg�����������������������0000664�0000000�0000000�00000003731�14753064456�0027417�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M287.6 54.2c-10.8-2.2-22.1-3.3-33.5-3.6V32.4c78.1 2.2 146.1 44 184.6 106.6l-15.8 9.1c-6.1-9.7-12.7-18.8-20.2-27.1l-18 15.5c-26-29.6-61.4-50.7-101.9-58.4zM53.4 322.4l23-7.7c-6.4-18.3-10-38.2-10-58.7s3.3-40.4 9.7-58.7l-22.7-7.7c3.6-10.8 8.3-21.3 13.6-31l-15.8-9.1C34 181 24.1 217.5 24.1 256s10 75 27.1 106.6l15.8-9.1c-5.3-10-9.7-20.3-13.6-31.1M213.1 434c-40.4-8-75.8-29.1-101.9-58.7l-18 15.8c-7.5-8.6-14.4-17.7-20.2-27.4l-16 9.4c38.5 62.3 106.8 104.3 184.9 106.6v-18.3c-11.3-.3-22.7-1.7-33.5-3.6zM93.3 120.9l18 15.5c26-29.6 61.4-50.7 101.9-58.4l-4.7-23.8c10.8-2.2 22.1-3.3 33.5-3.6V32.4C163.9 34.6 95.9 76.4 57.4 139l15.8 9.1c6-9.7 12.6-18.9 20.1-27.2m309.4 270.2-18-15.8c-26 29.6-61.4 50.7-101.9 58.7l4.7 23.8c-10.8 1.9-22.1 3.3-33.5 3.6v18.3c78.1-2.2 146.4-44.3 184.9-106.6l-16.1-9.4c-5.7 9.7-12.6 18.8-20.1 27.4M496 256c0 137-111 248-248 248S0 393 0 256 111 8 248 8s248 111 248 248m-12.2 0c0-130.1-105.7-235.8-235.8-235.8S12.2 125.9 12.2 256 117.9 491.8 248 491.8 483.8 386.1 483.8 256m-39-106.6-15.8 9.1c5.3 9.7 10 20.2 13.6 31l-22.7 7.7c6.4 18.3 9.7 38.2 9.7 58.7s-3.6 40.4-10 58.7l23 7.7c-3.9 10.8-8.3 21-13.6 31l15.8 9.1C462 331 471.9 294.5 471.9 256s-9.9-75-27.1-106.6m-183 177.7c16.3-3.3 30.4-11.6 40.7-23.5l51.2 44.8c11.9-13.6 21.3-29.3 27.1-46.8l-64.2-22.1c2.5-7.5 3.9-15.2 3.9-23.5s-1.4-16.1-3.9-23.5l64.5-22.1c-6.1-17.4-15.5-33.2-27.4-46.8l-51.2 44.8c-10.2-11.9-24.4-20.5-40.7-23.8l13.3-66.4c-8.6-1.9-17.7-2.8-27.1-2.8s-18.5.8-27.1 2.8l13.3 66.4c-16.3 3.3-30.4 11.9-40.7 23.8l-51.2-44.8c-11.9 13.6-21.3 29.3-27.4 46.8l64.5 22.1c-2.5 7.5-3.9 15.2-3.9 23.5s1.4 16.1 3.9 23.5l-64.2 22.1c5.8 17.4 15.2 33.2 27.1 46.8l51.2-44.8c10.2 11.9 24.4 20.2 40.7 23.5l-13.3 66.7c8.6 1.7 17.7 2.8 27.1 2.8s18.5-1.1 27.1-2.8z"/></svg>���������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/envira.svg�����������������������0000664�0000000�0000000�00000001076�14753064456�0027422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 32c477.6 0 366.6 317.3 367.1 366.3L448 480h-26l-70.4-71.2c-39 4.2-124.4 34.5-214.4-37C47 300.3 52 214.7 0 32m79.7 46c-49.7-23.5-5.2 9.2-5.2 9.2 45.2 31.2 66 73.7 90.2 119.9 31.5 60.2 79 139.7 144.2 167.7 65 28 34.2 12.5 6-8.5-28.2-21.2-68.2-87-91-130.2-31.7-60-61-118.6-144.2-158.1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/erlang.svg�����������������������0000664�0000000�0000000�00000001200�14753064456�0027373�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M87.2 53.5H0v405h100.4c-49.7-52.6-78.8-125.3-78.7-212.1-.1-76.7 24-142.7 65.5-192.9m238.2 9.7c-45.9.1-85.1 33.5-89.2 83.2h169.9c-1.1-49.7-34.5-83.1-80.7-83.2m230.7-9.6h.3l-.1-.1zm.3 0c31.4 42.7 48.7 97.5 46.2 162.7.5 6 .5 11.7 0 24.1H230.2c-.2 109.7 38.9 194.9 138.6 195.3 68.5-.3 118-51 151.9-106.1l96.4 48.2c-17.4 30.9-36.5 57.8-57.9 80.8H640v-405z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/ethereum.svg���������������������0000664�0000000�0000000�00000000554�14753064456�0027754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M311.9 260.8 160 353.6 8 260.8 160 0zM160 383.4 8 290.6 160 512l152-221.4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/etsy.svg�������������������������0000664�0000000�0000000�00000001544�14753064456�0027122�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 348c-1.75 10.75-13.75 110-15.5 132-117.879-4.299-219.895-4.743-368.5 0v-25.5c45.457-8.948 60.627-8.019 61-35.25 1.793-72.322 3.524-244.143 0-322-1.029-28.46-12.13-26.765-61-36v-25.5c73.886 2.358 255.933 8.551 362.999-3.75-3.5 38.25-7.75 126.5-7.75 126.5H332C320.947 115.665 313.241 68 277.25 68h-137c-10.25 0-10.75 3.5-10.75 9.75V241.5c58 .5 88.5-2.5 88.5-2.5 29.77-.951 27.56-8.502 40.75-65.251h25.75c-4.407 101.351-3.91 61.829-1.75 160.25H257c-9.155-40.086-9.065-61.045-39.501-61.5 0 0-21.5-2-88-2v139c0 26 14.25 38.25 44.25 38.25H263c63.636 0 66.564-24.996 98.751-99.75z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/evernote.svg���������������������0000664�0000000�0000000�00000002302�14753064456�0027756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M120.82 132.21c1.6 22.31-17.55 21.59-21.61 21.59-68.93 0-73.64-1-83.58 3.34-.56.22-.74 0-.37-.37L123.79 46.45c.38-.37.6-.22.38.37-4.35 9.99-3.35 15.09-3.35 85.39m79 308c-14.68-37.08 13-76.93 52.52-76.62 17.49 0 22.6 23.21 7.95 31.42-6.19 3.3-24.95 1.74-25.14 19.2-.05 17.09 19.67 25 31.2 24.89A45.64 45.64 0 0 0 312 393.45v-.08c0-11.63-7.79-47.22-47.54-55.34-7.72-1.54-65-6.35-68.35-50.52-3.74 16.93-17.4 63.49-43.11 69.09-8.74 1.94-69.68 7.64-112.92-36.77 0 0-18.57-15.23-28.23-57.95-3.38-15.75-9.28-39.7-11.14-62 0-18 11.14-30.45 25.07-32.2 81 0 90 2.32 101-7.8 9.82-9.24 7.8-15.5 7.8-102.78 1-8.3 7.79-30.81 53.41-24.14 6 .86 31.91 4.18 37.48 30.64l64.26 11.15c20.43 3.71 70.94 7 80.6 57.94 22.66 121.09 8.91 238.46 7.8 238.46C362.15 485.53 267.06 480 267.06 480c-18.95-.23-54.25-9.4-67.27-39.83zm80.94-204.84c-1 1.92-2.2 6 .85 7 14.09 4.93 39.75 6.84 45.88 5.53 3.11-.25 3.05-4.43 2.48-6.65-3.53-21.85-40.83-26.5-49.24-5.92z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/expeditedssl.svg�����������������0000664�0000000�0000000�00000002213�14753064456�0030625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M248 43.4C130.6 43.4 35.4 138.6 35.4 256S130.6 468.6 248 468.6 460.6 373.4 460.6 256 365.4 43.4 248 43.4m-97.4 132.9c0-53.7 43.7-97.4 97.4-97.4s97.4 43.7 97.4 97.4v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6c0-82.1-124-82.1-124 0v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6zM389.7 380c0 9.7-8 17.7-17.7 17.7H124c-9.7 0-17.7-8-17.7-17.7V238.3c0-9.7 8-17.7 17.7-17.7h248c9.7 0 17.7 8 17.7 17.7zm-248-137.3v132.9c0 2.5-1.9 4.4-4.4 4.4h-8.9c-2.5 0-4.4-1.9-4.4-4.4V242.7c0-2.5 1.9-4.4 4.4-4.4h8.9c2.5 0 4.4 1.9 4.4 4.4m141.7 48.7c0 13-7.2 24.4-17.7 30.4v31.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-31.6c-10.5-6.1-17.7-17.4-17.7-30.4 0-19.7 15.8-35.4 35.4-35.4s35.5 15.8 35.5 35.4M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8m0 478.3C121 486.3 17.7 383 17.7 256S121 25.7 248 25.7 478.3 129 478.3 256 375 486.3 248 486.3"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/facebook-f.svg�������������������0000664�0000000�0000000�00000000703�14753064456�0030126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M80 299.3V512h116V299.3h86.5l18-97.8H196v-34.6c0-51.7 20.3-71.5 72.7-71.5 16.3 0 29.4.4 37 1.2V7.9C291.4 4 256.4 0 236.2 0 129.3 0 80 50.5 80 159.4v42.1H14v97.8z"/></svg>�������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/facebook-messenger.svg�����������0000664�0000000�0000000�00000001371�14753064456�0031673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256.55 8C116.52 8 8 110.34 8 248.57c0 72.3 29.71 134.78 78.07 177.94 8.35 7.51 6.63 11.86 8.05 58.23A19.92 19.92 0 0 0 122 502.31c52.91-23.3 53.59-25.14 62.56-22.7C337.85 521.8 504 423.7 504 248.57 504 110.34 396.59 8 256.55 8m149.24 185.13-73 115.57a37.37 37.37 0 0 1-53.91 9.93l-58.08-43.47a15 15 0 0 0-18 0l-78.37 59.44c-10.46 7.93-24.16-4.6-17.11-15.67l73-115.57a37.36 37.36 0 0 1 53.91-9.93l58.06 43.46a15 15 0 0 0 18 0l78.41-59.38c10.44-7.98 24.14 4.54 17.09 15.62"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/facebook.svg���������������������0000664�0000000�0000000�00000001052�14753064456�0027701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M512 256C512 114.6 397.4 0 256 0S0 114.6 0 256c0 120 82.7 220.8 194.2 248.5V334.2h-52.8V256h52.8v-33.7c0-87.1 39.4-127.5 125-127.5 16.2 0 44.2 3.2 55.7 6.4V172c-6-.6-16.5-1-29.6-1-42 0-58.2 15.9-58.2 57.2V256h83.6l-14.4 78.2H287v175.9C413.8 494.8 512 386.9 512 256"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/fantasy-flight-games.svg���������0000664�0000000�0000000�00000002411�14753064456�0032142�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 32.86 32.86 256 256 479.14 479.14 256zM88.34 255.83c1.96-2 11.92-12.3 96.49-97.48 41.45-41.75 86.19-43.77 119.77-18.69 24.63 18.4 62.06 58.9 62.15 59 .68.74 1.07 2.86.58 3.38-11.27 11.84-22.68 23.54-33.5 34.69-34.21-32.31-40.52-38.24-48.51-43.95-17.77-12.69-41.4-10.13-56.98 5.1-2.17 2.13-1.79 3.43.12 5.35 2.94 2.95 28.1 28.33 35.09 35.78-11.95 11.6-23.66 22.97-35.69 34.66-12.02-12.54-24.48-25.53-36.54-38.11-21.39 21.09-41.69 41.11-61.85 60.99zm234.82 101.6c-35.49 35.43-78.09 38.14-106.99 20.47-22.08-13.5-39.38-32.08-72.93-66.84 12.05-12.37 23.79-24.42 35.37-36.31 33.02 31.91 37.06 36.01 44.68 42.09 18.48 14.74 42.52 13.67 59.32-1.8 3.68-3.39 3.69-3.64.14-7.24-10.59-10.73-21.19-21.44-31.77-32.18-1.32-1.34-3.03-2.48-.8-4.69 10.79-10.71 21.48-21.52 32.21-32.29.26-.26.65-.38 1.91-1.07 12.37 12.87 24.92 25.92 37.25 38.75 21.01-20.73 41.24-40.68 61.25-60.42 13.68 13.4 27.13 26.58 40.86 40.03-20.17 20.86-81.68 82.71-100.5 101.5M256 0 0 256l256 256 256-256zM16 256 256 16l240 240-240 240z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/fedex.svg������������������������0000664�0000000�0000000�00000001736�14753064456�0027234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m586 284.5 53.3-59.9h-62.4l-21.7 24.8-22.5-24.8H414v-16h56.1v-48.1H318.9V236h-.5c-9.6-11-21.5-14.8-35.4-14.8-28.4 0-49.8 19.4-57.3 44.9-18-59.4-97.4-57.6-121.9-14v-24.2H49v-26.2h60v-41.1H0V345h49v-77.5h48.9c-1.5 5.7-2.3 11.8-2.3 18.2 0 73.1 102.6 91.4 130.2 23.7h-42c-14.7 20.9-45.8 8.9-45.8-14.6h85.5c3.7 30.5 27.4 56.9 60.1 56.9 14.1 0 27-6.9 34.9-18.6h.5V345h212.2l22.1-25 22.3 25H640zm-446.7-16.6c6.1-26.3 41.7-25.6 46.5 0zm153.4 48.9c-34.6 0-34-62.8 0-62.8 32.6 0 34.5 62.8 0 62.8m167.8 19.1h-94.4V169.4h95v30.2H405v33.9h55.5v28.1h-56.1v44.7h56.1zm-45.9-39.8v-24.4h56.1v-44l50.7 57-50.7 57v-45.6zm138.6 10.3-26.1 29.5H489l45.6-51.2-45.6-51.2h39.7l26.6 29.3 25.6-29.3h38.5l-45.4 51 46 51.4h-40.5z"/></svg>����������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/fedora.svg�����������������������0000664�0000000�0000000�00000001704�14753064456�0027374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M.041 255.8C.121 132.2 100.3 32 224 32s224 100.3 224 224-100.2 223.9-223.9 224H50.93C22.84 480 .083 457.3.042 429.2H0V255.8zM342.6 192.7c0-39.7-35.6-68.5-73.2-68.5-34.9 0-65.8 26.3-70.1 59.9-.2 3.8-.4 5-.4 8.5-.1 21.1 0 42.8-.8 64.4.9 26.1 1 52.1 0 76.6 0 27.1-19.4 45.5-44.7 45.5s-45.8-20.2-45.8-45.5c.5-27.7 22.6-45.3 48.5-46.1h.2l26.3-.2V250l-26.3.2c-47.1-.4-84.58 36.5-85.94 83.4 0 45.6 37.54 82.9 83.04 82.9 43 0 78.7-33.6 82.6-75.6l.2-53.5 32.6-.3c25.3.2 25-37.8-.2-37.3l-32.4.3c0-6.4.1-12.8.1-19.2.1-12.7.1-25.4-.1-38.2.1-16.5 15.8-31.2 33.2-31.2 17.5 0 35.9 8.7 35.9 31.2 0 3.2-.1 5.1-.3 6.3-1.9 10.5 5.2 20.4 15.7 21.9 10.6 1.5 20.2-6.1 21.2-16.6.6-4.2.7-7.9.7-11.6"/></svg>������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/figma.svg������������������������0000664�0000000�0000000�00000002542�14753064456�0027220�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M14 95.792C14 42.888 56.888 0 109.793 0h164.368c52.905 0 95.793 42.888 95.793 95.792 0 33.5-17.196 62.984-43.243 80.105 26.047 17.122 43.243 46.605 43.243 80.105 0 52.905-42.888 95.793-95.793 95.793h-2.08c-24.802 0-47.403-9.426-64.415-24.891v88.263c0 53.61-44.009 96.833-97.357 96.833C57.536 512 14 469.243 14 416.207c0-33.498 17.195-62.98 43.24-80.102C31.194 318.983 14 289.5 14 256.002c0-33.5 17.196-62.983 43.243-80.105C31.196 158.776 14 129.292 14 95.792m162.288 95.795h-66.495c-35.576 0-64.415 28.84-64.415 64.415 0 35.438 28.617 64.192 64.003 64.414l.412-.001h66.495zm31.378 64.415c0 35.575 28.839 64.415 64.415 64.415h2.08c35.576 0 64.415-28.84 64.415-64.415s-28.839-64.415-64.415-64.415h-2.08c-35.576 0-64.415 28.84-64.415 64.415m-97.873 95.793-.412-.001c-35.386.221-64.003 28.975-64.003 64.413 0 35.445 29.225 64.415 64.931 64.415 36.282 0 65.979-29.436 65.979-65.455v-63.372zm0-320.417c-35.576 0-64.415 28.84-64.415 64.414 0 35.576 28.84 64.415 64.415 64.415h66.495V31.377zm97.873 128.829h66.495c35.576 0 64.415-28.839 64.415-64.415 0-35.575-28.839-64.414-64.415-64.414h-66.495z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/files-pinwheel.svg���������������0000664�0000000�0000000�00000003722�14753064456�0031051�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M253.2 246.4 136.9 130.2c-.6-.6-1-1.3-1.4-2s-.5-1.6-.5-2.4.2-1.6.5-2.4.8-1.4 1.4-2L253.3 5.1c.9-.9 2-1.5 3.2-1.7s2.5-.1 3.6.3 2.1 1.3 2.8 2.3 1.1 2.2 1.1 3.5V242c0 1.3-.3 2.5-1 3.6s-1.7 1.9-2.9 2.4-2.5.6-3.7.3-2.4-.9-3.2-1.9m40.3-4.4V107.6c0-.8.1-1.6.5-2.4s.8-1.5 1.3-2.1 1.3-1.1 2-1.4 1.6-.5 2.4-.5h134.4c1.2 0 2.5.4 3.5 1.1s1.8 1.7 2.3 2.8.6 2.4.3 3.6-.9 2.3-1.7 3.2L304 246.4c-.9.8-2 1.4-3.2 1.6s-2.4.1-3.5-.4-2.1-1.3-2.8-2.3-1.1-2.2-1.1-3.4zm30.6 35c-1.2 0-2.5-.3-3.5-1s-1.9-1.6-2.4-2.8-.6-2.4-.4-3.6.8-2.3 1.7-3.2l84.2-84.2c.6-.6 1.3-1 2-1.4s1.6-.5 2.4-.5 1.6.2 2.4.5 1.4.8 2 1.4l84.4 84.2c.9.9 1.5 2 1.7 3.2s.1 2.5-.3 3.6-1.3 2.1-2.3 2.8-2.2 1.1-3.5 1.1H324zm90.7 131-95.3-95.2c-.9-.9-1.5-2-1.7-3.2s-.1-2.5.4-3.7 1.3-2.1 2.4-2.8 2.3-1 3.5-1h95.2c1.7 0 3.2.7 4.4 1.8s1.8 2.8 1.8 4.4v95.3c0 1.2-.4 2.5-1.1 3.5s-1.7 1.8-2.8 2.3-2.4.6-3.6.3-2.3-.9-3.2-1.7M16.5 302.1h216.9c1.2 0 2.5.4 3.5 1.1s1.8 1.7 2.3 2.8.6 2.4.3 3.6-.8 2.3-1.7 3.2L129.4 421.2c-.6.6-1.3 1-2 1.4s-1.6.5-2.4.5-1.6-.2-2.4-.5-1.4-.8-2-1.4L12 312.8c-.9-.9-1.5-2-1.7-3.2s-.1-2.5.4-3.6 1.3-2.1 2.3-2.8 2.3-1 3.5-1zM264 465.3c0 .8-.2 1.6-.5 2.4s-.8 1.5-1.4 2-1.3 1-2 1.4-1.6.5-2.4.5h-128c-1.2 0-2.5-.4-3.5-1.1s-1.8-1.7-2.3-2.8-.6-2.4-.3-3.6.8-2.3 1.7-3.2l128-128c.9-.9 2-1.5 3.2-1.7s2.5-.1 3.6.3 2.1 1.3 2.8 2.3 1.1 2.2 1.1 3.5zm40-132.5 82.8 82.7c.6.6 1 1.3 1.4 2s.5 1.6.5 2.4-.2 1.6-.5 2.4-.8 1.4-1.4 2L304 507c-.9.9-2 1.5-3.2 1.7s-2.5.1-3.6-.3-2.1-1.3-2.8-2.3-1.1-2.2-1.1-3.5V337.2c0-1.2.4-2.5 1.1-3.5s1.7-1.8 2.8-2.3 2.4-.6 3.6-.3 2.3.8 3.2 1.7M78.7 122.4c0-1.2.3-2.5 1-3.5s1.7-1.8 2.8-2.3 2.4-.6 3.6-.4 2.3.8 3.2 1.7l148.5 148.5c.9.9 1.5 2 1.7 3.2s.1 2.5-.3 3.6-1.3 2.1-2.3 2.8-2.2 1.1-3.5 1.1H85c-1.7 0-3.2-.7-4.4-1.8s-1.8-2.8-1.8-4.4V122.5z"/></svg>����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/firefox-browser.svg��������������0000664�0000000�0000000�00000002472�14753064456�0031262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M130.22 127.548c.16.01.08.01 0 0m351.42 45.35c-10.61-25.5-32.08-53-48.94-61.73 13.72 26.89 21.67 53.88 24.7 74q.008.207.05.41c-27.58-68.75-74.352-96.47-112.55-156.83-14.992-23.69-10.924-25.23-13.08-24.66l-.12.07c-46.71 25.953-75.335 78.37-82.58 122.74a127.3 127.3 0 0 0-47.93 12.137 6.524 6.524 0 0 0-3.684 7.288 6.16 6.16 0 0 0 3.006 3.995 6.16 6.16 0 0 0 4.979.45l.52-.21a118.7 118.7 0 0 1 49.53-11.32c62.828-.569 97.157 44.024 107.62 62.29-13-9.15-36.35-18.19-58.82-14.28 87.74 43.86 64.2 194.536-57.39 189.2-59.464-2.61-97.07-50.981-100.53-90.8 0 0 11.25-41.95 80.62-41.95 7.5 0 28.93-20.92 29.33-27-.09-2-42.535-18.876-59.09-35.18-8.847-8.713-13.052-12.907-16.77-16.06a70 70 0 0 0-6.31-4.77 113.05 113.05 0 0 1-.691-59.63c-25.06 11.41-44.55 29.45-58.71 45.37h-.12c-9.67-12.25-9-52.65-8.43-61.08-.12-.53-7.228 3.668-8.15 4.31a168.3 168.3 0 0 0-23.84 20.43c-16.291 16.6-44.132 50.154-55.5 101.23-4.536 20.383-6.76 44.421-6.76 52.3 0 134.7 109.21 243.89 243.92 243.89 120.64 0 223.019-87.227 240.43-202.62 11.572-76.696-14.71-131.068-14.71-131.99"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/firefox.svg����������������������0000664�0000000�0000000�00000004420�14753064456�0027574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M503.52 241.48c-.12-1.56-.24-3.12-.24-4.68v-.12l-.36-4.68v-.12a246 246 0 0 0-7.32-41.15c0-.12 0-.12-.12-.24l-1.08-4c-.12-.24-.12-.48-.24-.6-.36-1.2-.72-2.52-1.08-3.72-.12-.24-.12-.6-.24-.84-.36-1.2-.72-2.4-1.08-3.48-.12-.36-.24-.6-.36-1-.36-1.2-.72-2.28-1.2-3.48l-.36-1.08c-.36-1.08-.84-2.28-1.2-3.36a8 8 0 0 0-.36-1c-.48-1.08-.84-2.28-1.32-3.36-.12-.24-.24-.6-.36-.84-.48-1.2-1-2.28-1.44-3.48 0-.12-.12-.24-.12-.36-1.56-3.84-3.24-7.68-5-11.4l-.36-.72c-.48-1-.84-1.8-1.32-2.64-.24-.48-.48-1.08-.72-1.56-.36-.84-.84-1.56-1.2-2.4-.36-.6-.6-1.2-1-1.8s-.84-1.44-1.2-2.28c-.36-.6-.72-1.32-1.08-1.92s-.84-1.44-1.2-2.16a18 18 0 0 0-1.2-2c-.36-.72-.84-1.32-1.2-2s-.84-1.32-1.2-2-.84-1.32-1.2-1.92-.84-1.44-1.32-2.16a16 16 0 0 0-1.2-1.8L463.2 119a16 16 0 0 0-1.2-1.8c-.48-.72-1.08-1.56-1.56-2.28-.36-.48-.72-1.08-1.08-1.56l-1.8-2.52c-.36-.48-.6-.84-1-1.32-1-1.32-1.8-2.52-2.76-3.72a249 249 0 0 0-23.51-26.64A187 187 0 0 0 412 62.46c-4-3.48-8.16-6.72-12.48-9.84a162.5 162.5 0 0 0-24.6-15.12c-2.4-1.32-4.8-2.52-7.2-3.72a254 254 0 0 0-55.43-19.56c-1.92-.36-3.84-.84-5.64-1.2h-.12c-1-.12-1.8-.36-2.76-.48a236.4 236.4 0 0 0-38-4h-10.63a234.6 234.6 0 0 0-45.48 5c-33.59 7.08-63.23 21.24-82.91 39-1.08 1-1.92 1.68-2.4 2.16l-.48.48h.13l-.12.12.12-.12a.12.12 0 0 0 .12-.12l-.12.12a.42.42 0 0 1 .24-.12c14.64-8.76 34.92-16 49.44-19.56l5.88-1.44c.36-.12.84-.12 1.2-.24 1.68-.36 3.36-.72 5.16-1.08.24 0 .6-.12.84-.12C250.94 20.94 319.34 40.14 367 85.61a171.5 171.5 0 0 1 26.88 32.76c30.36 49.2 27.48 111.11 3.84 147.59-34.44 53-111.35 71.27-159 24.84a84.2 84.2 0 0 1-25.56-59 74.05 74.05 0 0 1 6.24-31c1.68-3.84 13.08-25.67 18.24-24.59-13.08-2.76-37.55 2.64-54.71 28.19-15.36 22.92-14.52 58.2-5 83.28a132.9 132.9 0 0 1-12.12-39.24c-12.24-82.55 43.31-153 94.31-170.51-27.48-24-96.47-22.31-147.71 15.36-29.88 22-51.23 53.16-62.51 90.36 1.68-20.88 9.6-52.08 25.8-83.88-17.16 8.88-39 37-49.8 62.88-15.6 37.43-21 82.19-16.08 124.79.36 3.24.72 6.36 1.08 9.6 19.92 117.11 122 206.38 244.78 206.38C392.77 503.42 504 392.19 504 255c-.12-4.52-.24-9.08-.48-13.52"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/first-order-alt.svg��������������0000664�0000000�0000000�00000003224�14753064456�0031151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8m0 488.21C115.34 496.21 7.79 388.66 7.79 256S115.34 15.79 248 15.79 488.21 123.34 488.21 256 380.66 496.21 248 496.21m0-459.92C126.66 36.29 28.29 134.66 28.29 256S126.66 475.71 248 475.71 467.71 377.34 467.71 256 369.34 36.29 248 36.29m0 431.22c-116.81 0-211.51-94.69-211.51-211.51S131.19 44.49 248 44.49 459.51 139.19 459.51 256 364.81 467.51 248 467.51m186.23-162.98a191.6 191.6 0 0 1-20.13 48.69l-74.13-35.88 61.48 54.82a193.5 193.5 0 0 1-37.2 37.29l-54.8-61.57 35.88 74.27a191 191 0 0 1-48.63 20.23l-27.29-78.47 4.79 82.93c-8.61 1.18-17.4 1.8-26.33 1.8s-17.72-.62-26.33-1.8l4.76-82.46-27.15 78.03a191.4 191.4 0 0 1-48.65-20.2l35.93-74.34-54.87 61.64a193.9 193.9 0 0 1-37.22-37.28l61.59-54.9-74.26 35.93a191.6 191.6 0 0 1-20.14-48.69l77.84-27.11-82.23 4.76c-1.16-8.57-1.78-17.32-1.78-26.21 0-9 .63-17.84 1.82-26.51l82.38 4.77-77.94-27.16a191.7 191.7 0 0 1 20.23-48.67l74.22 35.92-61.52-54.86a193.9 193.9 0 0 1 37.28-37.22l54.76 61.53-35.83-74.17a191.5 191.5 0 0 1 48.65-20.13l26.87 77.25-4.71-81.61c8.61-1.18 17.39-1.8 26.32-1.8s17.71.62 26.32 1.8l-4.74 82.16 27.05-77.76c17.27 4.5 33.6 11.35 48.63 20.17l-35.82 74.12 54.72-61.47a193.1 193.1 0 0 1 37.24 37.23l-61.45 54.77 74.12-35.86a191.5 191.5 0 0 1 20.2 48.65l-77.81 27.1 82.24-4.75c1.19 8.66 1.82 17.5 1.82 26.49 0 8.88-.61 17.63-1.78 26.19l-82.12-4.75z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/first-order.svg������������������0000664�0000000�0000000�00000002610�14753064456�0030371�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M12.9 229.2c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zM224 96.6c-7.1 0-14.6.6-21.4 1.7l3.7 67.4-22-64c-14.3 3.7-27.7 9.4-40 16.6l29.4 61.4-45.1-50.9c-11.4 8.9-21.7 19.1-30.6 30.9l50.6 45.4-61.1-29.7c-7.1 12.3-12.9 25.7-16.6 40l64.3 22.6-68-4c-.9 7.1-1.4 14.6-1.4 22s.6 14.6 1.4 21.7l67.7-4-64 22.6c3.7 14.3 9.4 27.7 16.6 40.3l61.1-29.7L97.7 352c8.9 11.7 19.1 22.3 30.9 30.9l44.9-50.9-29.5 61.4c12.3 7.4 25.7 13.1 40 16.9l22.3-64.6-4 68c7.1 1.1 14.6 1.7 21.7 1.7 7.4 0 14.6-.6 21.7-1.7l-4-68.6 22.6 65.1c14.3-4 27.7-9.4 40-16.9L274.9 332l44.9 50.9c11.7-8.9 22-19.1 30.6-30.9l-50.6-45.1 61.1 29.4c7.1-12.3 12.9-25.7 16.6-40.3l-64-22.3 67.4 4c1.1-7.1 1.4-14.3 1.4-21.7s-.3-14.9-1.4-22l-67.7 4 64-22.3c-3.7-14.3-9.1-28-16.6-40.3l-60.9 29.7 50.6-45.4q-13.35-17.55-30.6-30.9l-45.1 50.9 29.4-61.1c-12.3-7.4-25.7-13.1-40-16.9L241.7 166l4-67.7c-7.1-1.2-14.3-1.7-21.7-1.7M443.4 128v256L224 512 4.6 384V128L224 0zm-17.1 10.3L224 20.9 21.7 138.3v235.1L224 491.1l202.3-117.7zM224 37.1l187.7 109.4v218.9L224 474.9 36.3 365.4V146.6zm0 50.9c-92.3 0-166.9 75.1-166.9 168 0 92.6 74.6 167.7 166.9 167.7 92 0 166.9-75.1 166.9-167.7 0-92.9-74.9-168-166.9-168"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/firstdraft.svg�������������������0000664�0000000�0000000�00000000713�14753064456�0030303�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 192h-64v128H192v128H0v-25.6h166.4v-128h128v-128H384zm-25.6 38.4v128h-128v128H64V512h192V384h128V230.4zm25.6 192h-89.6V512H320v-64h64zM0 0v384h128V256h128V128h128V0z"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/flickr.svg�����������������������0000664�0000000�0000000�00000001112�14753064456�0027377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48M144.5 319c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5m159 0c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/flipboard.svg��������������������0000664�0000000�0000000�00000000547�14753064456�0030102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 32v448h448V32zm358.4 179.2h-89.6v89.6h-89.6v89.6H89.6V121.6h268.8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/flutter.svg����������������������0000664�0000000�0000000�00000000610�14753064456�0027614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M429.5 236.3 291.7 374.1 429.5 512H272l-59.1-59.1-78.8-78.8L272 236.3zM272 0 16 256l78.8 78.8L429.5 0z"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/fly.svg��������������������������0000664�0000000�0000000�00000001655�14753064456�0026733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M197.8 427.8c12.9 11.7 33.7 33.3 33.2 50.7 0 .8-.1 1.6-.1 2.5-1.8 19.8-18.8 31.1-39.1 31-25-.1-39.9-16.8-38.7-35.8 1-16.2 20.5-36.7 32.4-47.6 2.3-2.1 2.7-2.7 5.6-3.6 3.4 0 3.9.3 6.7 2.8M331.9 67.3c-16.3-25.7-38.6-40.6-63.3-52.1C243.1 4.5 214-.2 192 0c-44.1 0-71.2 13.2-81.1 17.3C57.3 45.2 26.5 87.2 28 158.6c7.1 82.2 97 176 155.8 233.8 1.7 1.6 4.5 4.5 6.2 5.1l3.3.1c2.1-.7 1.8-.5 3.5-2.1 52.3-49.2 140.7-145.8 155.9-215.7 7-39.2 3.1-72.5-20.8-112.5M186.8 351.9c-28-51.1-65.2-130.7-69.3-189-3.4-47.5 11.4-131.2 69.3-136.7zM328.7 180c-16.4 56.8-77.3 128-118.9 170.3C237.6 298.4 275 217 277 158.4c1.6-45.9-9.8-105.8-48-131.4 88.8 18.3 115.5 98.1 99.7 153"/></svg>�����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/font-awesome.svg�����������������0000664�0000000�0000000�00000001006�14753064456�0030533�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M91.7 96c14.6-9.2 24.3-25.5 24.3-44 0-28.7-23.3-52-52-52S12 23.3 12 52c0 16.7 7.8 31.5 20 41v419h64v-64h373.6c14.6 0 26.4-11.8 26.4-26.4 0-3.7-.8-7.3-2.3-10.7L432 272l61.7-138.9c1.5-3.4 2.3-7 2.3-10.7 0-14.6-11.8-26.4-26.4-26.4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/fonticons-fi.svg�����������������0000664�0000000�0000000�00000001453�14753064456�0030533�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M114.4 224h92.4l-15.2 51.2h-76.4V433c0 8-2.8 9.2 4.4 10l59.6 5.6V483H0v-35.2l29.2-2.8c7.2-.8 9.2-3.2 9.2-10.8V278.4c0-3.2-4-3.2-8-3.2H0V224h38.4v-28.8c0-68 36.4-96 106-96 46.8 0 88.8 11.2 88.8 72.4l-69.6 8.4c.4-25.6-6-31.6-22.4-31.6-25.2 0-26 13.6-26 37.6v32c0 3.2-4.8 6-.8 6M384 483H243.2v-34.4l28-3.6c7.2-.8 10.4-2.4 10.4-10V287c0-5.6-4-9.2-9.2-10.8l-33.2-8.8 9.2-40.4h110v208c0 8-3.6 8.8 4 10l21.6 3.6zm-30-347.2 12.4 45.6-10 10-42.8-22.8-42.8 22.8-10-10 12.4-45.6-30-36.4 4.8-10h38L307.2 51H320l21.2 38.4h38l4.8 13.2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/fonticons.svg��������������������0000664�0000000�0000000�00000001521�14753064456�0030133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 32v448h448V32zm187 140.9c-18.4 0-19 9.9-19 27.4v23.3c0 2.4-3.5 4.4-.6 4.4h67.4l-11.1 37.3H168v112.9c0 5.8-2 6.7 3.2 7.3l43.5 4.1v25.1H84V389l21.3-2c5.2-.6 6.7-2.3 6.7-7.9V267.7c0-2.3-2.9-2.3-5.8-2.3H84V228h28v-21c0-49.6 26.5-70 77.3-70 34.1 0 64.7 8.2 64.7 52.8l-50.7 6.1c.3-18.7-4.4-23-16.3-23m74.3 241.8v-25.1l20.4-2.6c5.2-.6 7.6-1.7 7.6-7.3V271.8c0-4.1-2.9-6.7-6.7-7.9l-24.2-6.4 6.7-29.5h80.2v151.7c0 5.8-2.6 6.4 2.9 7.3l15.7 2.6v25.1zm80.8-255.5 9 33.2-7.3 7.3-31.2-16.6-31.2 16.6-7.3-7.3 9-33.2-21.8-24.2 3.5-9.6h27.7l15.5-28h9.3l15.5 28h27.7l3.5 9.6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/fort-awesome-alt.svg�������������0000664�0000000�0000000�00000007466�14753064456�0031335�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M208 237.4h-22.2c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7H208c2.1 0 3.7-1.6 3.7-3.7v-51.7c0-2.1-1.6-3.7-3.7-3.7m118.2 0H304c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7h22.2c2.1 0 3.7-1.6 3.7-3.7v-51.7c-.1-2.1-1.7-3.7-3.7-3.7m132-125.1c-2.3-3.2-4.6-6.4-7.1-9.5-9.8-12.5-20.8-24-32.8-34.4-4.5-3.9-9.1-7.6-13.9-11.2-1.6-1.2-3.2-2.3-4.8-3.5C372 34.1 340.3 20 306 13c-16.2-3.3-32.9-5-50-5s-33.9 1.7-50 5c-34.3 7.1-66 21.2-93.3 40.8-1.6 1.1-3.2 2.3-4.8 3.5-4.8 3.6-9.4 7.3-13.9 11.2-3 2.6-5.9 5.3-8.8 8s-5.7 5.5-8.4 8.4c-5.5 5.7-10.7 11.8-15.6 18-2.4 3.1-4.8 6.3-7.1 9.5C25.2 153 8.3 202.5 8.3 256c0 2 .1 4 .1 6 .1.7.1 1.3.1 2 .1 1.3.1 2.7.2 4 0 .8.1 1.5.1 2.3 0 1.3.1 2.5.2 3.7.1.8.1 1.6.2 2.4.1 1.1.2 2.3.3 3.5 0 .8.1 1.6.2 2.4.1 1.2.3 2.4.4 3.6.1.8.2 1.5.3 2.3.1 1.3.3 2.6.5 3.9.1.6.2 1.3.3 1.9l.9 5.7c.1.6.2 1.1.3 1.7.3 1.3.5 2.7.8 4 .2.8.3 1.6.5 2.4.2 1 .5 2.1.7 3.2.2.9.4 1.7.6 2.6.2 1 .4 2 .7 3 .2.9.5 1.8.7 2.7.3 1 .5 1.9.8 2.9.3.9.5 1.8.8 2.7.2.9.5 1.9.8 2.8s.5 1.8.8 2.7c.3 1 .6 1.9.9 2.8.6 1.6 1.1 3.3 1.7 4.9.4 1 .7 1.9 1 2.8.3 1 .7 2 1.1 3 .3.8.6 1.5.9 2.3l1.2 3c.3.7.6 1.5.9 2.2.4 1 .9 2 1.3 3l.9 2.1c.5 1 .9 2 1.4 3 .3.7.6 1.3.9 2 .5 1 1 2.1 1.5 3.1.2.6.5 1.1.8 1.7.6 1.1 1.1 2.2 1.7 3.3.1.2.2.3.3.5 2.2 4.1 4.4 8.2 6.8 12.2.2.4.5.8.7 1.2.7 1.1 1.3 2.2 2 3.3.3.5.6.9.9 1.4.6 1.1 1.3 2.1 2 3.2.3.5.6.9.9 1.4.7 1.1 1.4 2.1 2.1 3.2.2.4.5.8.8 1.2.7 1.1 1.5 2.2 2.3 3.3.2.2.3.5.5.7 37.5 51.7 94.4 88.5 160 99.4.9.1 1.7.3 2.6.4 1 .2 2.1.4 3.1.5s1.9.3 2.8.4c1 .2 2 .3 3 .4.9.1 1.9.2 2.9.3s1.9.2 2.9.3 2.1.2 3.1.3c.9.1 1.8.1 2.7.2 1.1.1 2.3.1 3.4.2.8 0 1.7.1 2.5.1 1.3 0 2.6.1 3.9.1.7.1 1.4.1 2.1.1 2 .1 4 .1 6 .1s4-.1 6-.1c.7 0 1.4-.1 2.1-.1 1.3 0 2.6 0 3.9-.1.8 0 1.7-.1 2.5-.1 1.1-.1 2.3-.1 3.4-.2.9 0 1.8-.1 2.7-.2 1-.1 2.1-.2 3.1-.3s1.9-.2 2.9-.3c.9-.1 1.9-.2 2.9-.3s2-.3 3-.4 1.9-.3 2.8-.4c1-.2 2.1-.3 3.1-.5.9-.1 1.7-.3 2.6-.4 65.6-11 122.5-47.7 160.1-102.4.2-.2.3-.5.5-.7.8-1.1 1.5-2.2 2.3-3.3.2-.4.5-.8.8-1.2.7-1.1 1.4-2.1 2.1-3.2.3-.5.6-.9.9-1.4.6-1.1 1.3-2.1 2-3.2.3-.5.6-.9.9-1.4.7-1.1 1.3-2.2 2-3.3.2-.4.5-.8.7-1.2 2.4-4 4.6-8.1 6.8-12.2.1-.2.2-.3.3-.5.6-1.1 1.1-2.2 1.7-3.3.2-.6.5-1.1.8-1.7.5-1 1-2.1 1.5-3.1.3-.7.6-1.3.9-2 .5-1 1-2 1.4-3l.9-2.1c.5-1 .9-2 1.3-3 .3-.7.6-1.5.9-2.2l1.2-3c.3-.8.6-1.5.9-2.3.4-1 .7-2 1.1-3s.7-1.9 1-2.8c.6-1.6 1.2-3.3 1.7-4.9.3-1 .6-1.9.9-2.8s.5-1.8.8-2.7c.2-.9.5-1.9.8-2.8s.6-1.8.8-2.7c.3-1 .5-1.9.8-2.9.2-.9.5-1.8.7-2.7.2-1 .5-2 .7-3 .2-.9.4-1.7.6-2.6.2-1 .5-2.1.7-3.2.2-.8.3-1.6.5-2.4.3-1.3.6-2.7.8-4 .1-.6.2-1.1.3-1.7l.9-5.7c.1-.6.2-1.3.3-1.9.1-1.3.3-2.6.5-3.9.1-.8.2-1.5.3-2.3.1-1.2.3-2.4.4-3.6 0-.8.1-1.6.2-2.4.1-1.1.2-2.3.3-3.5.1-.8.1-1.6.2-2.4.1 1.7.1.5.2-.7 0-.8.1-1.5.1-2.3.1-1.3.2-2.7.2-4 .1-.7.1-1.3.1-2 .1-2 .1-4 .1-6 0-53.5-16.9-103-45.8-143.7M448 371.5c-9.4 15.5-20.6 29.9-33.6 42.9-20.6 20.6-44.5 36.7-71.2 48-13.9 5.8-28.2 10.3-42.9 13.2v-75.8c0-58.6-88.6-58.6-88.6 0v75.8q-22.05-4.35-42.9-13.2c-26.7-11.3-50.6-27.4-71.2-48-13-13-24.2-27.4-33.6-42.9v-71.3c0-2.1 1.6-3.7 3.7-3.7h22.1c2.1 0 3.7 1.6 3.7 3.7V326h29.6V182c0-2.1 1.6-3.7 3.7-3.7h22.1c2.1 0 3.7 1.6 3.7 3.7v25.9h29.5V182c0-2.1 1.6-3.7 3.7-3.7H208c2.1 0 3.7 1.6 3.7 3.7v25.9h29.5V182c0-4.8 6.5-3.7 9.5-3.7V88.1c-4.4-2-7.4-6.7-7.4-11.5 0-16.8 25.4-16.8 25.4 0 0 4.8-3 9.4-7.4 11.5V92c6.3-1.4 12.7-2.3 19.2-2.3 9.4 0 18.4 3.5 26.3 3.5 7.2 0 15.2-3.5 19.4-3.5 2.1 0 3.7 1.6 3.7 3.7v48.4c0 5.6-18.7 6.5-22.4 6.5-8.6 0-16.6-3.5-25.4-3.5-7 0-14.1 1.2-20.8 2.8v30.7c3 0 9.5-1.1 9.5 3.7v25.9h29.5V182c0-2.1 1.6-3.7 3.7-3.7h22.2c2.1 0 3.7 1.6 3.7 3.7v25.9h29.5V182c0-2.1 1.6-3.7 3.7-3.7h22.1c2.1 0 3.7 1.6 3.7 3.7v144h29.5v-25.8c0-2.1 1.6-3.7 3.7-3.7h22.2c2.1 0 3.7 1.6 3.7 3.7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/fort-awesome.svg�����������������0000664�0000000�0000000�00000002306�14753064456�0030543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M489.2 287.9h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6V146.2c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-6-8-4.6-11.7-4.6v-38c8.3-2 17.1-3.4 25.7-3.4 10.9 0 20.9 4.3 31.4 4.3 4.6 0 27.7-1.1 27.7-8v-60c0-2.6-2-4.6-4.6-4.6-5.1 0-15.1 4.3-24 4.3-9.7 0-20.9-4.3-32.6-4.3-8 0-16 1.1-23.7 2.9v-4.9c5.4-2.6 9.1-8.3 9.1-14.3 0-20.7-31.4-20.8-31.4 0 0 6 3.7 11.7 9.1 14.3v111.7c-3.7 0-11.7-1.4-11.7 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32H128v-32c0-2.6-2-4.6-4.6-4.6H96c-2.6 0-4.6 2-4.6 4.6v178.3H54.8v-32c0-2.6-2-4.6-4.6-4.6H22.8c-2.6 0-4.6 2-4.6 4.6V512h182.9v-96c0-72.6 109.7-72.6 109.7 0v96h182.9V292.5c.1-2.6-1.9-4.6-4.5-4.6m-288.1-4.5c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6zm146.4 0c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/forumbee.svg���������������������0000664�0000000�0000000�00000001467�14753064456�0027746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M5.8 309.7C2 292.7 0 275.5 0 258.3 0 135 99.8 35 223.1 35c16.6 0 33.3 2 49.3 5.5C149 87.5 51.9 186 5.8 309.7m392.9-189.2C385 103 369 87.8 350.9 75.2c-149.6 44.3-266.3 162.1-309.7 312 12.5 18.1 28 35.6 45.2 49 43.1-151.3 161.2-271.7 312.3-315.7m15.8 252.7c15.2-25.1 25.4-53.7 29.5-82.8-79.4 42.9-145 110.6-187.6 190.3 30-4.4 58.9-15.3 84.6-31.3 35 13.1 70.9 24.3 107 33.6-9.3-36.5-20.4-74.5-33.5-109.8m29.7-145.5c-2.6-19.5-7.9-38.7-15.8-56.8C290.5 216.7 182 327.5 137.1 466c18.1 7.6 37 12.5 56.6 15.2C240 367.1 330.5 274.4 444.2 227.7"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/foursquare.svg�������������������0000664�0000000�0000000�00000001476�14753064456�0030336�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 368 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M323.1 3H49.9C12.4 3 0 31.3 0 49.1v433.8c0 20.3 12.1 27.7 18.2 30.1 6.2 2.5 22.8 4.6 32.9-7.1C180 356.5 182.2 354 182.2 354c3.1-3.4 3.4-3.1 6.8-3.1h83.4c35.1 0 40.6-25.2 44.3-39.7l48.6-243C373.8 25.8 363.1 3 323.1 3m-16.3 73.8-11.4 59.7c-1.2 6.5-9.5 13.2-16.9 13.2H172.1c-12 0-20.6 8.3-20.6 20.3v13c0 12 8.6 20.6 20.6 20.6h90.4c8.3 0 16.6 9.2 14.8 18.2-1.8 8.9-10.5 53.8-11.4 58.8-.9 4.9-6.8 13.5-16.9 13.5h-73.5c-13.5 0-17.2 1.8-26.5 12.6 0 0-8.9 11.4-89.5 108.3-.9.9-1.8.6-1.8-.3V75.9c0-7.7 6.8-16.6 16.6-16.6h219c8.2 0 15.6 7.7 13.5 17.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/free-code-camp.svg���������������0000664�0000000�0000000�00000002615�14753064456�0030705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M97.22 96.21c10.36-10.65 16-17.12 16-21.9 0-2.76-1.92-5.51-3.83-7.42a14.8 14.8 0 0 0-8.39-2.84c-8.48 0-20.92 8.79-35.84 25.69C23.68 137 2.51 182.81 3.37 250.34s17.47 117 54.06 161.87C76.22 435.86 90.62 448 100.9 448a13.55 13.55 0 0 0 8.37-3.84c1.91-2.76 3.81-5.63 3.81-8.38 0-5.63-3.86-12.2-13.2-20.55-44.45-42.33-67.32-97-67.48-165-.15-61.43 21.6-112.4 64.82-154.02m142.25 323.86c.58.37.91.55.91.55Zm93.79.55.17-.13c-.19.13-.26.18-.17.13m3.13-158.18c-16.24-4.15 50.41-82.89-68.05-177.17 0 0 15.54 49.38-62.83 159.57-74.27 104.35 23.46 168.73 34 175.23-6.73-4.35-47.4-35.7 9.55-128.64 11-18.3 25.53-34.87 43.5-72.16 0 0 15.91 22.45 7.6 71.13C287.7 364 354 342.91 355 343.94c22.75 26.78-17.72 73.51-21.58 76.55 5.49-3.65 117.71-78 33-188.1-5.99 6.01-13.8 34.2-30.03 30.05M510.88 89.69C496 72.79 483.52 64 475 64a14.8 14.8 0 0 0-8.39 2.84c-1.91 1.91-3.83 4.66-3.83 7.42 0 4.78 5.6 11.26 16 21.9 43.23 41.61 65 92.59 64.82 154.06-.16 68-23 122.63-67.48 165-9.34 8.35-13.18 14.92-13.2 20.55 0 2.75 1.9 5.62 3.81 8.38a13.6 13.6 0 0 0 8.37 3.85c10.28 0 24.68-12.13 43.47-35.79 36.59-44.85 53.14-94.38 54.06-161.87S552.32 137 510.88 89.69"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/freebsd.svg����������������������0000664�0000000�0000000�00000001433�14753064456�0027545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M303.7 96.2c11.1-11.1 115.5-77 139.2-53.2 23.7 23.7-42.1 128.1-53.2 139.2s-39.4.9-63.1-22.9c-23.8-23.7-34.1-52-22.9-63.1M109.9 68.1C73.6 47.5 22 24.6 5.6 41.1c-16.6 16.6 7.1 69.4 27.9 105.7 18.5-32.2 44.8-59.3 76.4-78.7M406.7 174c3.3 11.3 2.7 20.7-2.7 26.1-20.3 20.3-87.5-27-109.3-70.1-18-32.3-11.1-53.4 14.9-48.7 5.7-3.6 12.3-7.6 19.6-11.6-29.8-15.5-63.6-24.3-99.5-24.3-119.1 0-215.6 96.5-215.6 215.6 0 119 96.5 215.6 215.6 215.6S445.3 380.1 445.3 261c0-38.4-10.1-74.5-27.7-105.8-3.9 7-7.6 13.3-10.9 18.8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/fulcrum.svg����������������������0000664�0000000�0000000�00000001044�14753064456�0027606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m95.75 164.14-35.38 43.55L25 164.14l35.38-43.55zM144.23 0l-20.54 198.18L72.72 256l51 57.82L144.23 512V300.89L103.15 256l41.08-44.89zm79.67 164.14 35.38 43.55 35.38-43.55-35.38-43.55zm-48.48 47L216.5 256l-41.08 44.89V512L196 313.82 247 256l-51-57.82L175.42 0z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/galactic-republic.svg������������0000664�0000000�0000000�00000003344�14753064456�0031510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M248 504C111.25 504 0 392.75 0 256S111.25 8 248 8s248 111.25 248 248-111.25 248-248 248m0-479.47C120.37 24.53 16.53 128.37 16.53 256S120.37 487.47 248 487.47 479.47 383.63 479.47 256 375.63 24.53 248 24.53m27.62 21.81v24.62a185.93 185.93 0 0 1 83.57 34.54l17.39-17.36c-28.75-22.06-63.3-36.89-100.96-41.8m-55.37.07c-37.64 4.94-72.16 19.8-100.88 41.85l17.28 17.36h.08c24.07-17.84 52.55-30.06 83.52-34.67zm12.25 50.17v82.87c-10.04 2.03-19.42 5.94-27.67 11.42l-58.62-58.59-21.93 21.93 58.67 58.67c-5.47 8.23-9.45 17.59-11.47 27.62h-82.9v31h82.9c2.02 10.02 6.01 19.31 11.47 27.54l-58.67 58.69 21.93 21.93 58.62-58.62a77.9 77.9 0 0 0 27.67 11.47v82.9h31v-82.9c10.05-2.03 19.37-6.06 27.62-11.55l58.67 58.69 21.93-21.93-58.67-58.69c5.46-8.23 9.47-17.52 11.5-27.54h82.87v-31h-82.87c-2.02-10.02-6.03-19.38-11.5-27.62l58.67-58.67-21.93-21.93-58.67 58.67c-8.25-5.49-17.57-9.47-27.62-11.5V96.58zm183.24 30.72-17.36 17.36a186.34 186.34 0 0 1 34.67 83.67h24.62c-4.95-37.69-19.83-72.29-41.93-101.03m-335.55.13c-22.06 28.72-36.91 63.26-41.85 100.91h24.65c4.6-30.96 16.76-59.45 34.59-83.52zM38.34 283.67c4.92 37.64 19.75 72.18 41.8 100.9l17.36-17.39c-17.81-24.07-29.92-52.57-34.51-83.52H38.34zm394.7 0c-4.61 30.99-16.8 59.5-34.67 83.6l17.36 17.36c22.08-28.74 36.98-63.29 41.93-100.96zM136.66 406.38l-17.36 17.36c28.73 22.09 63.3 36.98 100.96 41.93v-24.64c-30.99-4.63-59.53-16.79-83.6-34.65m222.53.05c-24.09 17.84-52.58 30.08-83.57 34.67v24.57c37.67-4.92 72.21-19.79 100.96-41.85l-17.31-17.39z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/galactic-senate.svg��������������0000664�0000000�0000000�00000005466�14753064456�0031171�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M249.86 33.48v26.07C236.28 80.17 226 168.14 225.39 274.9c11.74-15.62 19.13-33.33 19.13-48.24v-16.88c-.03-5.32.75-10.53 2.19-15.65.65-2.14 1.39-4.08 2.62-5.82 1.23-1.75 3.43-3.79 6.68-3.79 3.24 0 5.45 2.05 6.68 3.79 1.23 1.75 1.97 3.68 2.62 5.82 1.44 5.12 2.22 10.33 2.19 15.65v16.88c0 14.91 7.39 32.62 19.13 48.24-.63-106.76-10.91-194.73-24.49-215.35V33.48zm-26.34 147.77c-9.52 2.15-18.7 5.19-27.46 9.08 8.9 16.12 9.76 32.64 1.71 37.29-8 4.62-21.85-4.23-31.36-19.82-11.58 8.79-21.88 19.32-30.56 31.09 14.73 9.62 22.89 22.92 18.32 30.66-4.54 7.7-20.03 7.14-35.47-.96-5.78 13.25-9.75 27.51-11.65 42.42 9.68.18 18.67 2.38 26.18 6.04 17.78-.3 32.77-1.96 40.49-4.22 5.55-26.35 23.02-48.23 46.32-59.51.73-25.55 1.88-49.67 3.48-72.07m64.96 0c1.59 22.4 2.75 46.52 3.47 72.07 23.29 11.28 40.77 33.16 46.32 59.51 7.72 2.26 22.71 3.92 40.49 4.22 7.51-3.66 16.5-5.85 26.18-6.04-1.9-14.91-5.86-29.17-11.65-42.42-15.44 8.1-30.93 8.66-35.47.96-4.57-7.74 3.6-21.05 18.32-30.66-8.68-11.77-18.98-22.3-30.56-31.09-9.51 15.59-23.36 24.44-31.36 19.82-8.05-4.65-7.19-21.16 1.71-37.29a147.5 147.5 0 0 0-27.45-9.08m-32.48 8.6c-3.23 0-5.86 8.81-6.09 19.93h-.05v16.88c0 41.42-49.01 95.04-93.49 95.04-52 0-122.75-1.45-156.37 29.17v2.51c9.42 17.12 20.58 33.17 33.18 47.97C45.7 380.26 84.77 360.4 141.2 360c45.68 1.02 79.03 20.33 90.76 40.87.01.01-.01.04 0 .05 7.67 2.14 15.85 3.23 24.04 3.21 8.19.02 16.37-1.07 24.04-3.21.01-.01-.01-.04 0-.05 11.74-20.54 45.08-39.85 90.76-40.87 56.43.39 95.49 20.26 108.02 41.35 12.6-14.8 23.76-30.86 33.18-47.97v-2.51c-33.61-30.62-104.37-29.17-156.37-29.17-44.48 0-93.49-53.62-93.49-95.04v-16.88h-.05c-.23-11.12-2.86-19.93-6.09-19.93m0 96.59c22.42 0 40.6 18.18 40.6 40.6s-18.18 40.65-40.6 40.65-40.6-18.23-40.6-40.65 18.18-40.6 40.6-40.6m0 7.64c-18.19 0-32.96 14.77-32.96 32.96S237.81 360 256 360s32.96-14.77 32.96-32.96-14.77-32.96-32.96-32.96m0 6.14c14.81 0 26.82 12.01 26.82 26.82s-12.01 26.82-26.82 26.82-26.82-12.01-26.82-26.82 12.01-26.82 26.82-26.82m-114.8 66.67c-10.19.07-21.6.36-30.5 1.66.43 4.42 1.51 18.63 7.11 29.76 9.11-2.56 18.36-3.9 27.62-3.9 41.28.94 71.48 34.35 78.26 74.47l.11 4.7c10.4 1.91 21.19 2.94 32.21 2.94 11.03 0 21.81-1.02 32.21-2.94l.11-4.7c6.78-40.12 36.98-73.53 78.26-74.47 9.26 0 18.51 1.34 27.62 3.9 5.6-11.13 6.68-25.34 7.11-29.76-8.9-1.3-20.32-1.58-30.5-1.66-18.76.42-35.19 4.17-48.61 9.67-12.54 16.03-29.16 30.03-49.58 33.07-.09.02-.17.04-.27.05-.05.01-.11.04-.16.05-5.24 1.07-10.63 1.6-16.19 1.6-5.55 0-10.95-.53-16.19-1.6-.05-.01-.11-.04-.16-.05-.1-.02-.17-.04-.27-.05-20.42-3.03-37.03-17.04-49.58-33.07-13.42-5.49-29.86-9.25-48.61-9.67"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/get-pocket.svg�������������������0000664�0000000�0000000�00000001161�14753064456�0030173�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M407.6 64h-367C18.5 64 0 82.5 0 104.6v135.2C0 364.5 99.7 464 224.2 464c124 0 223.8-99.5 223.8-224.2V104.6c0-22.4-17.7-40.6-40.4-40.6m-162 268.5c-12.4 11.8-31.4 11.1-42.4 0C89.5 223.6 88.3 227.4 88.3 209.3c0-16.9 13.8-30.7 30.7-30.7 17 0 16.1 3.8 105.2 89.3 90.6-86.9 88.6-89.3 105.5-89.3s30.7 13.8 30.7 30.7c0 17.8-2.9 15.7-114.8 123.2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/gg-circle.svg��������������������0000664�0000000�0000000�00000001126�14753064456�0027766�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M257 8C120 8 9 119 9 256s111 248 248 248 248-111 248-248S394 8 257 8m-49.5 374.8L81.8 257.1l125.7-125.7 35.2 35.4-24.2 24.2-11.1-11.1-77.2 77.2 77.2 77.2 26.6-26.6-53.1-52.9 24.4-24.4 77.2 77.2zm99-2.2-35.2-35.2 24.1-24.4 11.1 11.1 77.2-77.2-77.2-77.2-26.5 26.5 53.1 52.9-24.4 24.4-77.2-77.2 75-75L432.2 255z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/gg.svg���������������������������0000664�0000000�0000000�00000001022�14753064456�0026522�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m179.2 230.4 102.4 102.4-102.4 102.4L0 256 179.2 76.8l44.8 44.8-25.6 25.6-19.2-19.2-128 128 128 128 51.5-51.5-77.1-76.5zM332.8 76.8 230.4 179.2l102.4 102.4 25.6-25.6-77.1-76.5 51.5-51.5 128 128-128 128-19.2-19.2-25.6 25.6 44.8 44.8L512 256z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/git-alt.svg����������������������0000664�0000000�0000000�00000001353�14753064456�0027475�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/git.svg��������������������������0000664�0000000�0000000�00000002432�14753064456�0026716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M216.29 158.39H137C97 147.9 6.51 150.63 6.51 233.18c0 30.09 15 51.23 35 61-25.1 23-37 33.85-37 49.21 0 11 4.47 21.14 17.89 26.81C8.13 383.61 0 393.35 0 411.65c0 32.11 28.05 50.82 101.63 50.82 70.75 0 111.79-26.42 111.79-73.18 0-58.66-45.16-56.5-151.63-63l13.43-21.55c27.27 7.58 118.7 10 118.7-67.89 0-18.7-7.73-31.71-15-41.07l37.41-2.84zm-63.42 241.9c0 32.06-104.89 32.1-104.89 2.43 0-8.14 5.27-15 10.57-21.54 77.71 5.3 94.32 3.37 94.32 19.11m-50.81-134.58c-52.8 0-50.46-71.16 1.2-71.16 49.54 0 50.82 71.16-1.2 71.16m133.3 100.51v-32.1c26.75-3.66 27.24-2 27.24-11V203.61c0-8.5-2.05-7.38-27.24-16.26l4.47-32.92H324v168.71c0 6.51.4 7.32 6.51 8.14l20.73 2.84v32.1zm52.45-244.31c-23.17 0-36.59-13.43-36.59-36.61s13.42-35.77 36.59-35.77c23.58 0 37 12.62 37 35.77s-13.42 36.61-37 36.61M512 350.46c-17.49 8.53-43.1 16.26-66.28 16.26-48.38 0-66.67-19.5-66.67-65.46V194.75c0-5.42 1.05-4.06-31.71-4.06V154.5c35.78-4.07 50-22 54.47-66.27h38.63c0 65.83-1.34 61.81 3.26 61.81H501v40.65h-60.56v97.15c0 6.92-4.92 51.41 60.57 26.84z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/github-alt.svg�������������������0000664�0000000�0000000�00000002076�14753064456�0030177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 480 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M186.1 328.7c0 20.9-10.9 55.1-36.7 55.1s-36.7-34.2-36.7-55.1 10.9-55.1 36.7-55.1 36.7 34.2 36.7 55.1M480 278.2c0 31.9-3.2 65.7-17.5 95-37.9 76.6-142.1 74.8-216.7 74.8-75.8 0-186.2 2.7-225.6-74.8-14.6-29-20.2-63.1-20.2-95 0-41.9 13.9-81.5 41.5-113.6-5.2-15.8-7.7-32.4-7.7-48.8 0-21.5 4.9-32.3 14.6-51.8 45.3 0 74.3 9 108.8 36 29-6.9 58.8-10 88.7-10 27 0 54.2 2.9 80.4 9.2 34-26.7 63-35.2 107.8-35.2 9.8 19.5 14.6 30.3 14.6 51.8 0 16.4-2.6 32.7-7.7 48.2 27.5 32.4 39 72.3 39 114.2m-64.3 50.5c0-43.9-26.7-82.6-73.5-82.6-18.9 0-37 3.4-56 6-14.9 2.3-29.8 3.2-45.1 3.2-15.2 0-30.1-.9-45.1-3.2-18.7-2.6-37-6-56-6-46.8 0-73.5 38.7-73.5 82.6 0 87.8 80.4 101.3 150.4 101.3h48.2c70.3 0 150.6-13.4 150.6-101.3m-82.6-55.1c-25.8 0-36.7 34.2-36.7 55.1s10.9 55.1 36.7 55.1 36.7-34.2 36.7-55.1-10.9-55.1-36.7-55.1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/github.svg�����������������������0000664�0000000�0000000�00000003052�14753064456�0027414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6m-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3m44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9M244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8M97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1m-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7m32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1m-11.4-14.7c-1.6 1-1.6 3.6 0 5.9s4.3 3.3 5.6 2.3c1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/gitkraken.svg��������������������0000664�0000000�0000000�00000003031�14753064456�0030106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 592 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M565.7 118.1c-2.3-6.1-9.3-9.2-15.3-6.6-5.7 2.4-8.5 8.9-6.3 14.6 10.9 29 16.9 60.5 16.9 93.3 0 134.6-100.3 245.7-230.2 262.7V358.4c7.9-1.5 15.5-3.6 23-6.2v104c106.7-25.9 185.9-122.1 185.9-236.8 0-91.8-50.8-171.8-125.8-213.3-5.7-3.2-13-.9-15.9 5-2.7 5.5-.6 12.2 4.7 15.1 67.9 37.6 113.9 110 113.9 193.2 0 93.3-57.9 173.1-139.8 205.4v-92.2c14.2-4.5 24.9-17.7 24.9-33.5 0-13.1-6.8-24.4-17.3-30.5 8.3-79.5 44.5-58.6 44.5-83.9V170c0-38-87.9-161.8-129-164.7-2.5-.2-5-.2-7.6 0C251.1 8.3 163.2 132 163.2 170v14.8c0 25.3 36.3 4.3 44.5 83.9-10.6 6.1-17.3 17.4-17.3 30.5 0 15.8 10.6 29 24.8 33.5v92.2c-81.9-32.2-139.8-112-139.8-205.4 0-83.1 46-155.5 113.9-193.2 5.4-3 7.4-9.6 4.7-15.1-2.9-5.9-10.1-8.2-15.9-5-75 41.5-125.8 121.5-125.8 213.3 0 114.7 79.2 210.8 185.9 236.8v-104c7.6 2.5 15.1 4.6 23 6.2v123.7C131.4 465.2 31 354.1 31 219.5c0-32.8 6-64.3 16.9-93.3 2.2-5.8-.6-12.2-6.3-14.6-6-2.6-13 .4-15.3 6.6C14.5 149.7 8 183.8 8 219.5c0 155.1 122.6 281.6 276.3 287.8V361.4c6.8.4 15 .5 23.4 0v145.8C461.4 501.1 584 374.6 584 219.5c0-35.7-6.5-69.8-18.3-101.4M365.9 275.5c13 0 23.7 10.5 23.7 23.7 0 13.1-10.6 23.7-23.7 23.7-13 0-23.7-10.5-23.7-23.7 0-13.1 10.6-23.7 23.7-23.7m-139.8 47.3c-13.2 0-23.7-10.7-23.7-23.7s10.5-23.7 23.7-23.7c13.1 0 23.7 10.6 23.7 23.7 0 13-10.5 23.7-23.7 23.7"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/gitlab.svg�����������������������0000664�0000000�0000000�00000001527�14753064456�0027401�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m503.5 204.6-.7-1.8-69.7-181.78c-1.4-3.57-3.9-6.59-7.2-8.64-2.4-1.55-5.1-2.515-8-2.81s-5.7.083-8.4 1.11c-2.7 1.02-5.1 2.66-7.1 4.78-1.9 2.12-3.3 4.67-4.1 7.44l-47 144H160.8l-47.1-144c-.8-2.77-2.2-5.31-4.1-7.43-2-2.12-4.4-3.75-7.1-4.77a18.1 18.1 0 0 0-8.38-1.113 18.4 18.4 0 0 0-8.04 2.793 18.1 18.1 0 0 0-7.16 8.64L9.267 202.8l-.724 1.8a129.57 129.57 0 0 0-3.52 82c7.747 26.9 24.047 50.7 46.447 67.6l.27.2.59.4 105.97 79.5 52.6 39.7 32 24.2c3.7 1.9 8.3 4.3 13 4.3s9.3-2.4 13-4.3l32-24.2 52.6-39.7 106.7-79.9.3-.3c22.4-16.9 38.7-40.6 45.6-67.5 8.6-27 7.4-55.8-2.6-82"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/gitter.svg�����������������������0000664�0000000�0000000�00000000601�14753064456�0027425�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M66.4 322.5H16V0h50.4zM166.9 76.1h-50.4V512h50.4zm100.6 0h-50.4V512h50.4zM368 76h-50.4v247H368z"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/glide-g.svg����������������������0000664�0000000�0000000�00000001706�14753064456�0027446�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M407.1 211.2c-3.5-1.4-11.6-3.8-15.4-3.8-37.1 0-62.2 16.8-93.5 34.5l-.9-.9c7-47.3 23.5-91.9 23.5-140.4C320.8 29.1 282.6 0 212.4 0 97.3 0 39 113.7 39 198.4 39 286.3 90.3 335 177.6 335c12 0 11-1 11 3.8-16.9 128.9-90.8 133.1-90.8 94.6 0-39.2 45-58.6 45.5-61-.3-12.2-47-27.6-58.9-27.6-33.9.1-52.4 51.2-52.4 79.3C32 476 64.8 512 117.5 512c77.4 0 134-77.8 151.4-145.4 15.1-60.5 11.2-63.3 19.7-67.6 32.2-16.2 57.5-27 93.8-27 17.8 0 30.5 3.7 58.9 8.4 2.9 0 6.7-2.9 6.7-5.8 0-8-33.4-60.5-40.9-63.4m-175.3-84.4c-9.3 44.7-18.6 89.6-27.8 134.3-2.3 10.2-13.3 7.8-22 7.8-38.3 0-49-41.8-49-73.1 0-47 18-109.3 61.8-133.4 7-4.1 14.8-6.7 22.6-6.7 18.6 0 20 13.3 20 28.7-.1 14.3-2.7 28.5-5.6 42.4"/></svg>����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/glide.svg������������������������0000664�0000000�0000000�00000002046�14753064456�0027220�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M252.8 148.6c0 8.8-1.6 17.7-3.4 26.4-5.8 27.8-11.6 55.8-17.3 83.6-1.4 6.3-8.3 4.9-13.7 4.9-23.8 0-30.5-26-30.5-45.5 0-29.3 11.2-68.1 38.5-83.1 4.3-2.5 9.2-4.2 14.1-4.2 11.4 0 12.3 8.3 12.3 17.9M448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48m-64 187c0-5.1-20.8-37.7-25.5-39.5-2.2-.9-7.2-2.3-9.6-2.3-23.1 0-38.7 10.5-58.2 21.5l-.5-.5c4.3-29.4 14.6-57.2 14.6-87.4 0-44.6-23.8-62.7-67.5-62.7-71.7 0-108 70.8-108 123.5 0 54.7 32 85 86.3 85 7.5 0 6.9-.6 6.9 2.3-10.5 80.3-56.5 82.9-56.5 58.9 0-24.4 28-36.5 28.3-38-.2-7.6-29.3-17.2-36.7-17.2-21.1 0-32.7 33-32.7 50.6 0 32.3 20.4 54.7 53.3 54.7 48.2 0 83.4-49.7 94.3-91.7 9.4-37.7 7-39.4 12.3-42.1 20-10.1 35.8-16.8 58.4-16.8 11.1 0 19 2.3 36.7 5.2 1.8.1 4.1-1.7 4.1-3.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/gofore.svg�����������������������0000664�0000000�0000000�00000001210�14753064456�0027405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M324 319.8h-13.2v34.7c-24.5 23.1-56.3 35.8-89.9 35.8-73.2 0-132.4-60.2-132.4-134.4 0-74.1 59.2-134.4 132.4-134.4 35.3 0 68.6 14 93.6 39.4l62.3-63.3C335 55.3 279.7 32 220.7 32 98 32 0 132.6 0 256c0 122.5 97 224 220.7 224 63.2 0 124.5-26.2 171-82.5-2-27.6-13.4-77.7-67.7-77.7m-12.1-112.5H205.6v89H324c33.5 0 60.5 15.1 76 41.8v-30.6c0-65.2-40.4-100.2-88.1-100.2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/golang.svg�����������������������0000664�0000000�0000000�00000003267�14753064456�0027411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M400.1 194.8c-10.9 2.8-19.9 4.3-29.1 7.6-7.3 1.9-14.7 3.9-23.2 6.1l-.6.1c-4.2 1.2-4.6 1.3-8.5-3.2-4.7-5.3-8.1-8.7-14.6-11.9-19.7-9.6-38.7-6.8-56.4 4.7-21.2 13.7-32.1 34-31.8 59.2.3 25 17.4 45.5 41.2 48.9 22 2.8 39.8-4.6 53.8-20.5 2.1-2.6 4-5.3 6.1-8.3.8-1 1.5-2.1 2.3-3.3h-60.1c-6.5 0-8.1-4-5.9-9.3 4-9.7 11.5-25.9 15.9-34 .9-1.8 3.1-5.8 6.9-5.8h101.1c4.5-13.4 11.8-26.9 21.6-39.7 22.7-29.9 49.3-45.5 87.2-52 31.8-5.6 61.7-2.5 88.9 15.9 24.6 16.8 39.8 39.6 43.9 69.5 5.3 42.1-6.9 76.3-36.7 105.6-19.7 20.9-44.9 34-73.9 39.9-5.6 1-11.1 1.5-16.5 2-2.9.2-5.7.5-8.5.8-28.3-.6-54.2-8.7-76-27.4-15.3-13.3-25.9-29.6-31.1-48.5-3.7 7.3-8 14.4-14 21.1-21.6 29.6-50.9 48-87.9 52.9-30.6 4.1-58.9-1.8-83.9-20.5-23-17.5-36.1-40.5-39.5-69.2-4.1-34 5.9-65.4 26.4-91.3 22.2-29 51.5-47.4 87.3-53.9 29.3-6.2 57.3-1.9 82.6 15.3 16.5 10.9 28.3 25.8 36.1 43.9 1.9 2.8.6 4.4-3.1 5.3m-351.8 5.6c-1.25 0-1.56-.6-.94-1.6l6.55-8.4c.62-.9 2.18-1.5 3.43-1.5H168.6c1.2 0 1.5.9.9 1.8l-5.3 8.1c-.6 1-2.2 1.9-3.1 1.9zM1.246 229.1c-1.246 0-1.558-.7-.934-1.6l6.543-8.4c.624-.9 2.182-1.6 3.425-1.6H152.4c1.2 0 1.8 1 1.5 1.9l-2.5 7.5c-.3 1.2-1.5 1.9-2.8 1.9zm74.474 26.8c-.62.9-.31 1.8.93 1.8l67.95.3c.9 0 2.2-.9 2.2-2.1l.6-7.5c0-1.3-.6-2.2-1.9-2.2H83.2c-1.25 0-2.49.9-3.12 1.9zm501.48-18c-.2-2.6-.3-4.8-.7-7-5.6-30.8-34-48.3-63.6-41.4-29 6.5-47.7 24.9-54.5 54.2-5.6 24.3 6.2 48.9 28.6 58.9 17.2 7.5 34.3 6.6 50.8-1.9 24.6-13.6 38-32.7 39.6-59.5-.1-1.2-.1-2.3-.2-3.3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/goodreads-g.svg������������������0000664�0000000�0000000�00000001643�14753064456�0030331�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M42.6 403.3h2.8c12.7 0 25.5 0 38.2.1 1.6 0 3.1-.4 3.6 2.1 7.1 34.9 30 54.6 62.9 63.9 26.9 7.6 54.1 7.8 81.3 1.8 33.8-7.4 56-28.3 68-60.4 8-21.5 10.7-43.8 11-66.5.1-5.8.3-47-.2-52.8l-.9-.3c-.8 1.5-1.7 2.9-2.5 4.4-22.1 43.1-61.3 67.4-105.4 69.1-103 4-169.4-57-172-176.2-.5-23.7 1.8-46.9 8.3-69.7C58.3 47.7 112.3.6 191.6 0c61.3-.4 101.5 38.7 116.2 70.3.5 1.1 1.3 2.3 2.4 1.9V10.6h44.3c0 280.3.1 332.2.1 332.2-.1 78.5-26.7 143.7-103 162.2-69.5 16.9-159 4.8-196-57.2-8-13.5-11.8-28.3-13-44.5M188.9 36.5c-52.5-.5-108.5 40.7-115 133.8-4.1 59 14.8 122.2 71.5 148.6 27.6 12.9 74.3 15 108.3-8.7 47.6-33.2 62.7-97 54.8-154-9.7-71.1-47.8-120-119.6-119.7"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/goodreads.svg��������������������0000664�0000000�0000000�00000001772�14753064456�0030110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M299.9 191.2c5.1 37.3-4.7 79-35.9 100.7-22.3 15.5-52.8 14.1-70.8 5.7-37.1-17.3-49.5-58.6-46.8-97.2 4.3-60.9 40.9-87.9 75.3-87.5 46.9-.2 71.8 31.8 78.2 78.3M448 88v336c0 30.9-25.1 56-56 56H56c-30.9 0-56-25.1-56-56V88c0-30.9 25.1-56 56-56h336c30.9 0 56 25.1 56 56M330 313.2s-.1-34-.1-217.3h-29v40.3c-.8.3-1.2-.5-1.6-1.2-9.6-20.7-35.9-46.3-76-46-51.9.4-87.2 31.2-100.6 77.8-4.3 14.9-5.8 30.1-5.5 45.6 1.7 77.9 45.1 117.8 112.4 115.2 28.9-1.1 54.5-17 69-45.2.5-1 1.1-1.9 1.7-2.9.2.1.4.1.6.2.3 3.8.2 30.7.1 34.5-.2 14.8-2 29.5-7.2 43.5-7.8 21-22.3 34.7-44.5 39.5-17.8 3.9-35.6 3.8-53.2-1.2-21.5-6.1-36.5-19-41.1-41.8-.3-1.6-1.3-1.3-2.3-1.3h-26.8c.8 10.6 3.2 20.3 8.5 29.2 24.2 40.5 82.7 48.5 128.2 37.4 49.9-12.3 67.3-54.9 67.4-106.3"/></svg>������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/google-drive.svg�����������������0000664�0000000�0000000�00000000626�14753064456�0030521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M339 314.9 175.4 32h161.2l163.6 282.9zm-137.5 23.6L120.9 480h310.5L512 338.5zM154.1 67.4 0 338.5 80.6 480 237 208.8z"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/google-pay.svg�������������������0000664�0000000�0000000�00000003156�14753064456�0030202�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M105.72 215v41.25h57.1a49.66 49.66 0 0 1-21.14 32.6c-9.54 6.55-21.72 10.28-36 10.28-27.6 0-50.93-18.91-59.3-44.22a65.6 65.6 0 0 1 0-41c8.37-25.46 31.7-44.37 59.3-44.37a56.43 56.43 0 0 1 40.51 16.08L176.47 155a101.24 101.24 0 0 0-70.75-27.84 105.55 105.55 0 0 0-94.38 59.11 107.64 107.64 0 0 0 0 96.18v.15a105.41 105.41 0 0 0 94.38 59c28.47 0 52.55-9.53 70-25.91 20-18.61 31.41-46.15 31.41-78.91a134 134 0 0 0-1.75-21.78Zm389.41-4c-10.13-9.38-23.93-14.14-41.39-14.14-22.46 0-39.34 8.34-50.5 24.86l20.85 13.26q11.45-17 31.26-17a34.05 34.05 0 0 1 22.75 8.79 28.14 28.14 0 0 1 9.69 21.23v5.51c-9.1-5.07-20.55-7.75-34.64-7.75-16.44 0-29.65 3.88-39.49 11.77s-14.82 18.31-14.82 31.56a39.74 39.74 0 0 0 13.94 31.27c9.25 8.34 21 12.51 34.79 12.51 16.29 0 29.21-7.3 39-21.89h1v17.72h22.61V250c.07-16.55-4.92-29.66-15.05-39m-19.23 89.3a37.32 37.32 0 0 1-26.57 11.16 28.6 28.6 0 0 1-18.33-6.25 19.41 19.41 0 0 1-7.77-15.63c0-7 3.22-12.81 9.54-17.42s14.53-7 24.07-7c13.16-.16 23.46 2.84 30.8 8.78 0 10.13-3.96 18.91-11.74 26.36m-93.65-142a55.7 55.7 0 0 0-40.51-16.3h-62.67v186.74h23.63V253.1h39c16 0 29.5-5.36 40.51-15.93.88-.89 1.76-1.79 2.65-2.68a54.45 54.45 0 0 0-2.61-76.23Zm-16.58 62.23a30.65 30.65 0 0 1-23.34 9.68H302.7V165h39.63a32 32 0 0 1 22.6 9.23 33.18 33.18 0 0 1 .74 46.26ZM614.31 201l-36.54 91.7h-.45L539.9 201h-25.69L566 320.55l-29.35 64.32H561L640 201Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/google-play.svg������������������0000664�0000000�0000000�00000000775�14753064456�0030362�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M325.3 234.3 104.6 13l280.8 161.2zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256zm425.2 225.6-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8M104.6 499l280.8-161.2-60.1-60.1z"/></svg>���mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/google-plus-g.svg����������������0000664�0000000�0000000�00000001356�14753064456�0030620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M386.061 228.496c1.834 9.692 3.143 19.384 3.143 31.956C389.204 370.205 315.599 448 204.8 448c-106.084 0-192-85.915-192-192s85.916-192 192-192c51.864 0 95.083 18.859 128.611 50.292l-52.126 50.03c-14.145-13.621-39.028-29.599-76.485-29.599-65.484 0-118.92 54.221-118.92 121.277s53.436 121.277 118.92 121.277c75.961 0 104.513-54.745 108.965-82.773H204.8v-66.009h181.261zm185.406 6.437V179.2h-56.001v55.733h-55.733v56.001h55.733v55.733h56.001v-55.733H627.2v-56.001z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/google-plus.svg������������������0000664�0000000�0000000�00000001246�14753064456�0030372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 8C119.1 8 8 119.1 8 256s111.1 248 248 248 248-111.1 248-248S392.9 8 256 8m-70.7 372a124 124 0 0 1 0-248c31.3 0 60.1 11 83 32.3l-33.6 32.6c-13.2-12.9-31.3-19.1-49.4-19.1-42.9 0-77.2 35.5-77.2 78.1s34.2 78.1 77.2 78.1c32.6 0 64.9-19.1 70.1-53.3h-70.1v-42.6h116.9a109 109 0 0 1 1.9 20.7c0 70.8-47.5 121.2-118.8 121.2m230.2-106.2v35.5H380v-35.5h-35.5v-35.5H380v-35.5h35.5v35.5h35.2v35.5Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/google-scholar.svg���������������0000664�0000000�0000000�00000001260�14753064456�0031036�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M390.9 298.5s0 .1.1.1c9.2 19.4 14.4 41.1 14.4 64C405.3 445.1 338.5 512 256 512s-149.3-66.9-149.3-149.3c0-22.9 5.2-44.6 14.4-64 1.7-3.6 3.6-7.2 5.6-10.7q6.6-11.4 15-21.3c27.4-32.6 68.5-53.3 114.4-53.3 33.6 0 64.6 11.1 89.6 29.9 9.1 6.9 17.4 14.7 24.8 23.5 5.6 6.6 10.6 13.8 15 21.3 2 3.4 3.8 7 5.5 10.5zm26.4-18.8c-30.1-58.4-91-98.4-161.3-98.4s-131.2 40-161.3 98.4L0 202.7 256 0l256 202.7-94.7 77.1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/google-wallet.svg����������������0000664�0000000�0000000�00000001437�14753064456�0030701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M156.8 126.8c37.6 60.6 64.2 113.1 84.3 162.5-8.3 33.8-18.8 66.5-31.3 98.3-13.2-52.3-26.5-101.3-56-148.5 6.5-36.4 2.3-73.6 3-112.3M109.3 200H16.1c-6.5 0-10.5 7.5-6.5 12.7C51.8 267 81.3 330.5 101.3 400h103.5c-16.2-69.7-38.7-133.7-82.5-193.5-3-4-8-6.5-13-6.5m47.8-88c68.5 108 130 234.5 138.2 368H409c-12-138-68.4-265-143.2-368zm251.8-68.5c-1.8-6.8-8.2-11.5-15.2-11.5h-88.3c-5.3 0-9 5-7.8 10.3 13.2 46.5 22.3 95.5 26.5 146 48.2 86.2 79.7 178.3 90.6 270.8 15.8-60.5 25.3-133.5 25.3-203 0-73.6-12.1-145.1-31.1-212.6"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/google.svg�����������������������0000664�0000000�0000000�00000001030�14753064456�0027400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 488 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/gratipay.svg���������������������0000664�0000000�0000000�00000001034�14753064456�0027750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8m114.6 226.4-113 152.7-112.7-152.7c-8.7-11.9-19.1-50.4 13.6-72 28.1-18.1 54.6-4.2 68.5 11.9 15.9 17.9 46.6 16.9 61.7 0 13.9-16.1 40.4-30 68.1-11.9 32.9 21.6 22.6 60 13.8 72"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/grav.svg�������������������������0000664�0000000�0000000�00000003436�14753064456�0027077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M301.1 212c4.4 4.4 4.4 11.9 0 16.3l-9.7 9.7c-4.4 4.7-11.9 4.7-16.6 0l-10.5-10.5c-4.4-4.7-4.4-11.9 0-16.6l9.7-9.7c4.4-4.4 11.9-4.4 16.6 0zm-30.2-19.7c3-3 3-7.8 0-10.5-2.8-3-7.5-3-10.5 0-2.8 2.8-2.8 7.5 0 10.5 3.1 2.8 7.8 2.8 10.5 0m-26 5.3c-3 2.8-3 7.5 0 10.2 2.8 3 7.5 3 10.5 0 2.8-2.8 2.8-7.5 0-10.2-3-3-7.7-3-10.5 0m72.5-13.3c-19.9-14.4-33.8-43.2-11.9-68.1 21.6-24.9 40.7-17.2 59.8.8 11.9 11.3 29.3 24.9 17.2 48.2-12.5 23.5-45.1 33.2-65.1 19.1m47.7-44.5c-8.9-10-23.3 6.9-15.5 16.1 7.4 9 32.1 2.4 15.5-16.1M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248m-66.2 42.6c2.5-16.1-20.2-16.6-25.2-25.7-13.6-24.1-27.7-36.8-54.5-30.4 11.6-8 23.5-6.1 23.5-6.1.3-6.4 0-13-9.4-24.9 3.9-12.5.3-22.4.3-22.4 15.5-8.6 26.8-24.4 29.1-43.2 3.6-31-18.8-59.2-49.8-62.8-22.1-2.5-43.7 7.7-54.3 25.7-23.2 40.1 1.4 70.9 22.4 81.4-14.4-1.4-34.3-11.9-40.1-34.3-6.6-25.7 2.8-49.8 8.9-61.4 0 0-4.4-5.8-8-8.9 0 0-13.8 0-24.6 5.3 11.9-15.2 25.2-14.4 25.2-14.4 0-6.4-.6-14.9-3.6-21.6-5.4-11-23.8-12.9-31.7 2.8.1-.2.3-.4.4-.5-5 11.9-1.1 55.9 16.9 87.2-2.5 1.4-9.1 6.1-13 10-21.6 9.7-56.2 60.3-56.2 60.3-28.2 10.8-77.2 50.9-70.6 79.7.3 3 1.4 5.5 3 7.5-2.8 2.2-5.5 5-8.3 8.3-11.9 13.8-5.3 35.2 17.7 24.4 15.8-7.2 29.6-20.2 36.3-30.4 0 0-5.5-5-16.3-4.4 27.7-6.6 34.3-9.4 46.2-9.1 8 3.9 8-34.3 8-34.3 0-14.7-2.2-31-11.1-41.5 12.5 12.2 29.1 32.7 28 60.6-.8 18.3-15.2 23-15.2 23-9.1 16.6-43.2 65.9-30.4 106 0 0-9.7-14.9-10.2-22.1-17.4 19.4-46.5 52.3-24.6 64.5 26.6 14.7 108.8-88.6 126.2-142.3 34.6-20.8 55.4-47.3 63.9-65 22 43.5 95.3 94.5 101.1 59"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/gripfire.svg���������������������0000664�0000000�0000000�00000001602�14753064456�0027740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M112.5 301.4c0-73.8 105.1-122.5 105.1-203 0-47.1-34-88-39.1-90.4.4 3.3.6 6.7.6 10C179.1 110.1 32 171.9 32 286.6c0 49.8 32.2 79.2 66.5 108.3 65.1 46.7 78.1 71.4 78.1 86.6 0 10.1-4.8 17-4.8 22.3 13.1-16.7 17.4-31.9 17.5-46.4 0-29.6-21.7-56.3-44.2-86.5-16-22.3-32.6-42.6-32.6-69.5m205.3-39c-12.1-66.8-78-124.4-94.7-130.9l4 7.2c2.4 5.1 3.4 10.9 3.4 17.1 0 44.7-54.2 111.2-56.6 116.7-2.2 5.1-3.2 10.5-3.2 15.8 0 20.1 15.2 42.1 17.9 42.1 2.4 0 56.6-55.4 58.1-87.7 6.4 11.7 9.1 22.6 9.1 33.4 0 41.2-41.8 96.9-41.8 96.9 0 11.6 31.9 53.2 35.5 53.2 1 0 2.2-1.4 3.2-2.4 37.9-39.3 67.3-85 67.3-136.8 0-8-.7-16.2-2.2-24.6"/></svg>������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/grunt.svg������������������������0000664�0000000�0000000�00000013013�14753064456�0027267�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M61.3 189.3c-1.1 10 5.2 19.1 5.2 19.1.7-7.5 2.2-12.8 4-16.6.4 10.3 3.2 23.5 12.8 34.1 6.9 7.6 35.6 23.3 54.9 6.1 1 2.4 2.1 5.3 3 8.5 2.9 10.3-2.7 25.3-2.7 25.3s15.1-17.1 13.9-32.5c10.8-.5 21.4-8.4 21.1-19.5 0 0-18.9 10.4-35.5-8.8-9.7-11.2-40.9-42-83.1-31.8 4.3 1 8.9 2.4 13.5 4.1h-.1c-4.2 2-6.5 7.1-7 12m28.3-1.8c19.5 11 37.4 25.7 44.9 37-5.7 3.3-21.7 10.4-38-1.7-10.3-7.6-9.8-26.2-6.9-35.3m142.1 45.8c-1.2 15.5 13.9 32.5 13.9 32.5s-5.6-15-2.7-25.3c.9-3.2 2-6 3-8.5 19.3 17.3 48 1.5 54.8-6.1 9.6-10.6 12.3-23.8 12.8-34.1 1.8 3.8 3.4 9.1 4 16.6 0 0 6.4-9.1 5.2-19.1-.6-5-2.9-10-7-11.8h-.1c4.6-1.8 9.2-3.2 13.5-4.1-42.3-10.2-73.4 20.6-83.1 31.8-16.7 19.2-35.5 8.8-35.5 8.8-.2 10.9 10.4 18.9 21.2 19.3m62.7-45.8c3 9.1 3.4 27.7-7 35.4-16.3 12.1-32.2 5-37.9 1.6 7.5-11.4 25.4-26 44.9-37M160 418.5h-29.4c-5.5 0-8.2 1.6-9.5 2.9q-2.85 3-.9 8.1c3.5 9.1 11.4 16.5 13.7 18.6 3.1 2.7 7.5 4.3 11.8 4.3 4.4 0 8.3-1.7 11-4.6 7.5-8.2 11.9-17.1 13-19.8.6-1.5 1.3-4.5-.9-6.8-1.8-1.8-4.7-2.7-8.8-2.7m189.2-101.2c-2.4 17.9-13 33.8-24.6 43.7-3.1-22.7-3.7-55.5-3.7-62.4 0-14.7 9.5-24.5 12.2-26.1 2.5-1.5 5.4-3 8.3-4.6 18-9.6 40.4-21.6 40.4-43.7 0-16.2-9.3-23.2-15.4-27.8-.8-.6-1.5-1.1-2.2-1.7-2.1-1.7-3.7-3-4.3-4.4-4.4-9.8-3.6-34.2-1.7-37.6.6-.6 16.7-20.9 11.8-39.2-2-7.4-6.9-13.3-14.1-17-5.3-2.7-11.9-4.2-19.5-4.5-.1-2-.5-3.9-.9-5.9-.6-2.6-1.1-5.3-.9-8.1.4-4.7.8-9 2.2-11.3 8.4-13.3 28.8-17.6 29-17.6l12.3-2.4-8.1-9.5c-.1-.2-17.3-17.5-46.3-17.5-7.9 0-16 1.3-24.1 3.9-24.2 7.8-42.9 30.5-49.4 39.3q-4.65-1.5-9.6-2.7c-4.2-15.8 9-38.5 9-38.5s-13.6-3-33.7 15.2c-2.6-6.5-8.1-20.5-1.8-37.2C184.6 10.1 177.2 26 175 40.4c-7.6-5.4-6.7-23.1-7.2-27.6-7.5.9-29.2 21.9-28.2 48.3-2 .5-3.9 1.1-5.9 1.7-6.5-8.8-25.1-31.5-49.4-39.3-7.9-2.2-16-3.5-23.9-3.5-29 0-46.1 17.3-46.3 17.5L6 46.9l12.3 2.4c.2 0 20.6 4.3 29 17.6 1.4 2.2 1.8 6.6 2.2 11.3.2 2.8-.4 5.5-.9 8.1-.4 1.9-.8 3.9-.9 5.9q-11.55.45-19.5 4.5c-7.2 3.7-12.1 9.6-14.1 17-5 18.2 11.2 38.5 11.8 39.2 1.9 3.4 2.7 27.8-1.7 37.6-.6 1.4-2.2 2.7-4.3 4.4-.7.5-1.4 1.1-2.2 1.7-6.1 4.6-15.4 11.7-15.4 27.8 0 22.1 22.4 34.1 40.4 43.7 3 1.6 5.8 3.1 8.3 4.6 2.7 1.6 12.2 11.4 12.2 26.1 0 6.9-.6 39.7-3.7 62.4-11.6-9.9-22.2-25.9-24.6-43.8 0 0-29.2 22.6-20.6 70.8 5.2 29.5 23.2 46.1 47 54.7 8.8 19.1 29.4 45.7 67.3 49.6C143 504.3 163 512 192.2 512h.2c29.1 0 49.1-7.7 63.6-19.5 37.9-3.9 58.5-30.5 67.3-49.6 23.8-8.7 41.7-25.2 47-54.7 8.2-48.4-21.1-70.9-21.1-70.9M305.7 37.7c5.6-1.8 11.6-2.7 17.7-2.7 11 0 19.9 3 24.7 5-3.1 1.4-6.4 3.2-9.7 5.3-2.4-.4-5.6-.8-9.2-.8-10.5 0-20.5 3.1-28.7 8.9-12.3 8.7-18 16.9-20.7 22.4-2.2-1.3-4.5-2.5-7.1-3.7-1.6-.8-3.1-1.5-4.7-2.2 6.1-9.1 19.9-26.5 37.7-32.2m21 18.2c-.8 1-1.6 2.1-2.3 3.2-3.3 5.2-3.9 11.6-4.4 17.8-.5 6.4-1.1 12.5-4.4 17-4.2.8-8.1 1.7-11.5 2.7-2.3-3.1-5.6-7-10.5-11.2 1.4-4.8 5.5-16.1 13.5-22.5 5.6-4.3 12.2-6.7 19.6-7M45.6 45.3c-3.3-2.2-6.6-4-9.7-5.3 4.8-2 13.7-5 24.7-5q9.15 0 17.7 2.7c17.8 5.8 31.6 23.2 37.7 32.1-1.6.7-3.2 1.4-4.8 2.2-2.5 1.2-4.9 2.5-7.1 3.7-2.6-5.4-8.3-13.7-20.7-22.4-8.3-5.8-18.2-8.9-28.8-8.9-3.4.1-6.6.5-9 .9m44.7 40.1c-4.9 4.2-8.3 8-10.5 11.2-3.4-.9-7.3-1.9-11.5-2.7C65 89.5 64.5 83.4 64 77c-.5-6.2-1.1-12.6-4.4-17.8-.7-1.1-1.5-2.2-2.3-3.2 7.4.3 14 2.6 19.5 7 8 6.3 12.1 17.6 13.5 22.4M58.1 259.9c-2.7-1.6-5.6-3.1-8.4-4.6-14.9-8-30.2-16.3-30.2-30.5 0-11.1 4.3-14.6 8.9-18.2l.5-.4c.7-.6 1.4-1.2 2.2-1.8-.9 7.2-1.9 13.3-2.7 14.9 0 0 12.1-15 15.7-44.3 1.4-11.5-1.1-34.3-5.1-43 .2 4.9 0 9.8-.3 14.4-.4-.8-.8-1.6-1.3-2.2-3.2-4-11.8-17.5-9.4-26.6.9-3.5 3.1-6 6.7-7.8 3.8-1.9 8.8-2.9 15.1-2.9 12.3 0 25.9 3.7 32.9 6 25.1 8 55.4 30.9 64.1 37.7.2.2.4.3.4.3l5.6 3.9-3.5-5.8c-.2-.3-19.1-31.4-53.2-46.5 2-2.9 7.4-8.1 21.6-15.1 21.4-10.5 46.5-15.8 74.3-15.8 27.9 0 52.9 5.3 74.3 15.8 14.2 6.9 19.6 12.2 21.6 15.1-34 15.1-52.9 46.2-53.1 46.5l-3.5 5.8 5.6-3.9s.2-.1.4-.3c8.7-6.8 39-29.8 64.1-37.7 7-2.2 20.6-6 32.9-6 6.3 0 11.3 1 15.1 2.9 3.5 1.8 5.7 4.4 6.7 7.8 2.5 9.1-6.1 22.6-9.4 26.6-.5.6-.9 1.3-1.3 2.2-.3-4.6-.5-9.5-.3-14.4-4 8.8-6.5 31.5-5.1 43 3.6 29.3 15.7 44.3 15.7 44.3-.8-1.6-1.8-7.7-2.7-14.9.7.6 1.5 1.2 2.2 1.8l.5.4c4.6 3.7 8.9 7.1 8.9 18.2 0 14.2-15.4 22.5-30.2 30.5-2.9 1.5-5.7 3.1-8.4 4.6-8.7 5-18 16.7-19.1 34.2-.9 14.6.9 49.9 3.4 75.9-12.4 4.8-26.7 6.4-39.7 6.8-2-4.1-3.9-8.5-5.5-13.1-.7-2-19.6-51.1-26.4-62.2 5.5 39 17.5 73.7 23.5 89.6-3.5-.5-7.3-.7-11.7-.7h-117c-4.4 0-8.3.3-11.7.7 6-15.9 18.1-50.6 23.5-89.6-6.8 11.2-25.7 60.3-26.4 62.2-1.6 4.6-3.5 9-5.5 13.1-13-.4-27.2-2-39.7-6.8 2.5-26 4.3-61.2 3.4-75.9-.9-17.4-10.3-29.2-19-34.2M34.8 404.6c-12.1-20-8.7-54.1-3.7-59.1 10.9 34.4 47.2 44.3 74.4 45.4-2.7 4.2-5.2 7.6-7 10l-1.4 1.4c-7.2 7.8-8.6 18.5-4.1 31.8-22.7-.1-46.3-9.8-58.2-29.5m45.7 43.5q9 1.65 18.6 2.4c3.5 8 7.4 15.9 12.3 23.1-14.4-5.9-24.4-16-30.9-25.5M192 498.2c-60.6-.1-78.3-45.8-84.9-64.7q-5.55-15.75.9-23.1c2.9-3.3 9.5-7.2 24.6-7.2h118.8c15.1 0 21.8 3.9 24.6 7.2 4.2 4.8 4.5 12.6.9 23.1-6.6 18.8-24.3 64.6-84.9 64.7m80.6-24.6c4.9-7.2 8.8-15.1 12.3-23.1q9.6-.75 18.6-2.4c-6.5 9.5-16.5 19.6-30.9 25.5m76.6-69c-12 19.7-35.6 29.3-58.1 29.7 4.5-13.3 3.1-24.1-4.1-31.8-.4-.5-.9-1-1.4-1.5-1.8-2.4-4.3-5.8-7-10 27.2-1.2 63.5-11 74.4-45.4 5 5 8.4 39.1-3.8 59M191.9 187.7h.2c12.7-.1 27.2-17.8 27.2-17.8-9.9 6-18.8 8.1-27.3 8.3-8.5-.2-17.4-2.3-27.3-8.3 0 0 14.5 17.6 27.2 17.8m61.7 230.7h-29.4c-4.2 0-7.2.9-8.9 2.7-2.2 2.3-1.5 5.2-.9 6.7 1 2.6 5.5 11.3 13 19.3 2.7 2.9 6.6 4.5 11 4.5s8.7-1.6 11.8-4.2c2.3-2 10.2-9.2 13.7-18.1 1.3-3.3 1-6-.9-7.9-1.3-1.3-4-2.9-9.4-3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/guilded.svg����������������������0000664�0000000�0000000�00000001232�14753064456�0027545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M443.427 64H4.571c0 103.26 22.192 180.06 43.418 222.358C112.046 414.135 224 448 225.256 448a312.8 312.8 0 0 0 140.55-103.477c25.907-33.923 53.1-87.19 65.916-145.761H171.833c4.14 36.429 22.177 67.946 45.1 86.944h88.589c-17.012 28.213-48.186 54.4-80.456 69.482-31.232-13.259-69.09-46.544-96.548-98.362-26.726-53.833-27.092-105.883-27.092-105.883h336.147A626 626 0 0 0 443.427 64"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/gulp.svg�������������������������0000664�0000000�0000000�00000005341�14753064456�0027104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m209.8 391.1-14.1 24.6-4.6 80.2c0 8.9-28.3 16.1-63.1 16.1s-63.1-7.2-63.1-16.1l-5.8-79.4-14.9-25.4c41.2 17.3 126 16.7 165.6 0m-196-253.3 13.6 125.5c5.9-20 20.8-47 40-55.2 6.3-2.7 12.7-2.7 18.7.9 5.2 3 9.6 9.3 10.1 11.8 1.2 6.5-2 9.1-4.5 9.1-3 0-5.3-4.6-6.8-7.3-4.1-7.3-10.3-7.6-16.9-2.8-6.9 5-12.9 13.4-17.1 20.7-5.1 8.8-9.4 18.5-12 28.2-1.5 5.6-2.9 14.6-.6 19.9 1 2.2 2.5 3.6 4.9 3.6 5 0 12.3-6.6 15.8-10.1 4.5-4.5 10.3-11.5 12.5-16l5.2-15.5c2.6-6.8 9.9-5.6 9.9 0 0 10.2-3.7 13.6-10 34.7-5.8 19.5-7.6 25.8-7.6 25.8-.7 2.8-3.4 7.5-6.3 7.5-1.2 0-2.1-.4-2.6-1.2-1-1.4-.9-5.3-.8-6.3.2-3.2 6.3-22.2 7.3-25.2-2 2.2-4.1 4.4-6.4 6.6-5.4 5.1-14.1 11.8-21.5 11.8-3.4 0-5.6-.9-7.7-2.4l7.6 79.6c2 5 39.2 17.1 88.2 17.1 49.1 0 86.3-12.2 88.2-17.1l10.9-94.6c-5.7 5.2-12.3 11.6-19.6 14.8-5.4 2.3-17.4 3.8-17.4-5.7 0-5.2 9.1-14.8 14.4-21.5 1.4-1.7 4.7-5.9 4.7-8.1 0-2.9-6-2.2-11.7 2.5-3.2 2.7-6.2 6.3-8.7 9.7-4.3 6-6.6 11.2-8.5 15.5-6.2 14.2-4.1 8.6-9.1 22-5 13.3-4.2 11.8-5.2 14-.9 1.9-2.2 3.5-4 4.5-1.9 1-4.5.9-6.1-.3-.9-.6-1.3-1.9-1.3-3.7q0-1.35.3-2.7c1.5-6.1 7.8-18.1 15-34.3 1.6-3.7 1-2.6.8-2.3-6.2 6-10.9 8.9-14.4 10.5-5.8 2.6-13 2.6-14.5-4.1-.1-.4-.1-.8-.2-1.2-11.8 9.2-24.3 11.7-20-8.1-4.6 8.2-12.6 14.9-22.4 14.9-4.1 0-7.1-1.4-8.6-5.1-2.3-5.5 1.3-14.9 4.6-23.8 1.7-4.5 4-9.9 7.1-16.2 1.6-3.4 4.2-5.4 7.6-4.5.6.2 1.1.4 1.6.7 2.6 1.8 1.6 4.5.3 7.2-3.8 7.5-7.1 13-9.3 20.8-.9 3.3-2 9 1.5 9q3.6 0 6.9-2.4c4.6-3.4 8.3-8.5 11.1-13.5 2-3.6 4.4-8.3 5.6-12.3q.75-2.55 1.8-4.8c1.1-2.5 2.6-5.1 5.2-5.1 1.3 0 2.4.5 3.2 1.5 1.7 2.2 1.3 4.5.4 6.9-2 5.6-4.7 10.6-6.9 16.7-1.3 3.5-2.7 8-2.7 11.7 0 3.4 3.7 2.6 6.8 1.2 2.4-1.1 4.8-2.8 6.8-4.5 1.2-4.9.9-3.8 26.4-68.2 1.3-3.3 3.7-4.7 6.1-4.7 1.2 0 2.2.4 3.2 1.1 1.7 1.3 1.7 4.1 1 6.2-.7 1.9-.6 1.3-4.5 10.5-5.2 12.1-8.6 20.8-13.2 31.9-1.9 4.6-7.7 18.9-8.7 22.3-.6 2.2-1.3 5.8 1 5.8 5.4 0 19.3-13.1 23.1-17 .2-.3.5-.4.9-.6.6-1.9 1.2-3.7 1.7-5.5 1.4-3.8 2.7-8.2 5.3-11.3.8-1 1.7-1.6 2.7-1.6 2.8 0 4.2 1.2 4.2 4 0 1.1-.7 5.1-1.1 6.2q2.1-2.25 4.5-4.5c15-13.9 25.7-6.8 25.7.2 0 7.4-8.9 17.7-13.8 23.4-1.6 1.9-4.9 5.4-5 6.4 0 1.3.9 1.8 2.2 1.8 2 0 6.4-3.5 8-4.7 5-3.9 11.8-9.9 16.6-14.1l14.8-136.8c-30.5 17.1-197.6 17.2-228.3.2m229.7-8.5c0 21-231.2 21-231.2 0 0-8.8 51.8-15.9 115.6-15.9 9 0 17.8.1 26.3.4l12.6-48.7L228.1.6c1.4-1.4 5.8-.2 9.9 3.5s6.6 7.9 5.3 9.3l-.1.1L185.9 74l-10 40.7c39.9 2.6 67.6 8.1 67.6 14.6m-69.4 4.6c0-.8-.9-1.5-2.5-2.1l-.2.8c0 1.3-5 2.4-11.1 2.4s-11.1-1.1-11.1-2.4c0-.1 0-.2.1-.3l.2-.7c-1.8.6-3 1.4-3 2.3 0 2.1 6.2 3.7 13.7 3.7 7.7.1 13.9-1.6 13.9-3.7"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/hacker-news.svg������������������0000664�0000000�0000000�00000000707�14753064456�0030345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 32v448h448V32zm21.2 197.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4m218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320z"/></svg>���������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/hackerrank.svg�������������������0000664�0000000�0000000�00000002034�14753064456�0030242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M477.5 128C463 103.05 285.13 0 256.16 0S49.25 102.79 34.84 128s-14.49 230.8 0 256 192.38 128 221.32 128S463 409.08 477.49 384s14.51-231 .01-256M316.13 414.22c-4 0-40.91-35.77-38-38.69.87-.87 6.26-1.48 17.55-1.83 0-26.23.59-68.59.94-86.32 0-2-.44-3.43-.44-5.85h-79.93c0 7.1-.46 36.2 1.37 72.88.23 4.54-1.58 6-5.74 5.94-10.13 0-20.27-.11-30.41-.08-4.1 0-5.87-1.53-5.74-6.11.92-33.44 3-84-.15-212.67v-3.17c-9.67-.35-16.38-1-17.26-1.84-2.92-2.92 34.54-38.69 38.49-38.69s41.17 35.78 38.27 38.69c-.87.87-7.9 1.49-16.77 1.84v3.16c-2.42 25.75-2 79.59-2.63 105.39h80.26c0-4.55.39-34.74-1.2-83.64-.1-3.39.95-5.17 4.21-5.2 11.07-.08 22.15-.13 33.23-.06 3.46 0 4.57 1.72 4.5 5.38C333 354.64 336 341.29 336 373.69c8.87.35 16.82 1 17.69 1.84 2.88 2.91-33.62 38.69-37.58 38.69z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/hashnode.svg���������������������0000664�0000000�0000000�00000001102�14753064456�0027715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M35.19 171.1c-46.91 46-46.91 122.9 0 169.8L171.1 476.8c46 46.9 122.9 46.9 169.8 0l135.9-135.9c46.9-46.9 46.9-123.8 0-169.8L340.9 35.19c-46.9-46.91-123.8-46.91-169.8 0zM315.5 315.5c-32.9 32.8-86.1 32.8-118.9 0-32.9-32.9-32.9-86.1 0-118.9 32.8-32.9 86-32.9 118.9 0 32.8 32.8 32.8 86 0 118.9"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/hips.svg�������������������������0000664�0000000�0000000�00000003153�14753064456�0027077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M251.6 157.6c0-1.9-.9-2.8-2.8-2.8h-40.9c-1.6 0-2.7 1.4-2.7 2.8v201.8c0 1.4 1.1 2.8 2.7 2.8h40.9c1.9 0 2.8-.9 2.8-2.8zM156.5 168c-16.1-11.8-36.3-17.9-60.3-18-18.1-.1-34.6 3.7-49.8 11.4V80.2c0-1.8-.9-2.7-2.8-2.7H2.7Q0 77.5 0 80.2v279.2c0 1.9.9 2.8 2.7 2.8h41c1.9 0 2.8-.9 2.8-2.8V223.3c0-.8-2.8-27 45.8-27 48.5 0 45.8 26.1 45.8 27v122.6c0 9 7.3 16.3 16.4 16.3h27.3c1.8 0 2.7-.9 2.7-2.8V223.3c0-23.4-9.3-41.8-28-55.3m478.4 110.1c-6.8-15.7-18.4-27-34.9-34.1l-57.6-25.3c-8.6-3.6-9.2-11.2-2.6-16.1 7.4-5.5 44.3-13.9 84 6.8 1.7 1 4-.3 4-2.4v-44.7c0-1.3-.6-2.1-1.9-2.6-17.7-6.6-36.1-9.9-55.1-9.9-26.5 0-45.3 5.8-58.5 15.4-.5.4-28.4 20-22.7 53.7 3.4 19.6 15.8 34.2 37.2 43.6l53.6 23.5c11.6 5.1 15.2 13.3 12.2 21.2-3.7 9.1-13.2 13.6-36.5 13.6-24.3 0-44.7-8.9-58.4-19.1-2.1-1.4-4.4.2-4.4 2.3v34.4c0 10.4 4.9 17.3 14.6 20.7 15.6 5.5 31.6 8.2 48.2 8.2 12.7 0 25.8-1.2 36.3-4.3.7-.3 36-8.9 45.6-45.8 3.5-13.5 2.4-26.5-3.1-39.1M376.2 149.8c-31.7 0-104.2 20.1-104.2 103.5v183.5c0 .8.6 2.7 2.7 2.7h40.9c1.9 0 2.8-.9 2.8-2.7V348c16.5 12.7 35.8 19.1 57.7 19.1 60.5 0 108.7-48.5 108.7-108.7.1-60.3-48.2-108.6-108.6-108.6m0 170.9c-17.2 0-31.9-6.1-44-18.2-12.2-12.2-18.2-26.8-18.2-44 0-34.5 27.6-62.2 62.2-62.2 34.5 0 62.2 27.6 62.2 62.2.1 34.3-27.3 62.2-62.2 62.2M228.3 72.5c-15.9 0-28.8 12.9-28.9 28.9 0 15.6 12.7 28.9 28.9 28.9s28.9-13.1 28.9-28.9c0-16.2-13-28.9-28.9-28.9"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/hire-a-helper.svg����������������0000664�0000000�0000000�00000002366�14753064456�0030563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M443.1 0H71.9C67.9 37.3 37.4 67.8 0 71.7v371.5c37.4 4.9 66 32.4 71.9 68.8h372.2c3-36.4 32.5-65.8 67.9-69.8V71.7c-36.4-5.9-65-35.3-68.9-71.7m-37 404.9c-36.3 0-18.8-2-55.1-2-35.8 0-21 2-56.1 2-5.9 0-4.9-8.2 0-9.8 22.8-7.6 22.9-10.2 24.6-12.8 10.4-15.6 5.9-83 5.9-113 0-5.3-6.4-12.8-13.8-12.8H200.4c-7.4 0-13.8 7.5-13.8 12.8 0 30-4.5 97.4 5.9 113 1.7 2.5 1.8 5.2 24.6 12.8 4.9 1.6 6 9.8 0 9.8-35.1 0-20.3-2-56.1-2-36.3 0-18.8 2-55.1 2-7.9 0-5.8-10.8 0-10.8 10.2-3.4 13.5-3.5 21.7-13.8 7.7-12.9 7.9-44.4 7.9-127.8V151.3c0-22.2-12.2-28.3-28.6-32.4-8.8-2.2-4-11.8 1-11.8 36.5 0 20.6 2 57.1 2 32.7 0 16.5-2 49.2-2 3.3 0 8.5 8.3 1 10.8-4.9 1.6-27.6 3.7-27.6 39.3 0 45.6-.2 55.8 1 68.8 0 1.3 2.3 12.8 12.8 12.8h109.2c10.5 0 12.8-11.5 12.8-12.8 1.2-13 1-23.2 1-68.8 0-35.6-22.7-37.7-27.6-39.3-7.5-2.5-2.3-10.8 1-10.8 32.7 0 16.5 2 49.2 2 36.5 0 20.6-2 57.1-2 4.9 0 9.9 9.6 1 11.8-16.4 4.1-28.6 10.3-28.6 32.4v101.2c0 83.4.1 114.9 7.9 127.8 8.2 10.2 11.4 10.4 21.7 13.8 5.8 0 7.8 10.8 0 10.8"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/hive.svg�������������������������0000664�0000000�0000000�00000001751�14753064456�0027071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M260.353 254.878 131.538 33.1a2.208 2.208 0 0 0-3.829.009L.3 254.887a2.23 2.23 0 0 0 0 2.235L129.116 478.9a2.208 2.208 0 0 0 3.83-.009l127.412-221.778a2.24 2.24 0 0 0-.005-2.235m39.078-25.713a2.19 2.19 0 0 0 1.9 1.111h66.509a2.226 2.226 0 0 0 1.9-3.341L259.115 33.111a2.19 2.19 0 0 0-1.9-1.111h-66.508a2.226 2.226 0 0 0-1.9 3.341ZM511.7 254.886 384.9 33.112A2.2 2.2 0 0 0 382.99 32h-66.6a2.226 2.226 0 0 0-1.906 3.34L440.652 256 314.481 476.66a2.226 2.226 0 0 0 1.906 3.34h66.6a2.2 2.2 0 0 0 1.906-1.112L511.7 257.114a2.24 2.24 0 0 0 0-2.228m-145.684 30.031h-66.508a2.19 2.19 0 0 0-1.9 1.111l-108.8 190.631a2.226 2.226 0 0 0 1.9 3.341h66.509a2.19 2.19 0 0 0 1.9-1.111l108.8-190.631a2.226 2.226 0 0 0-1.901-3.341"/></svg>�����������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/hooli.svg������������������������0000664�0000000�0000000�00000003234�14753064456�0027246�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m144.5 352 38.3.8c-13.2-4.6-26-10.2-38.3-16.8zm57.7-5.3v5.3l-19.4.8c36.5 12.5 69.9 14.2 94.7 7.2-19.9.2-45.8-2.6-75.3-13.3m408.9-115.2c15.9 0 28.9-12.9 28.9-28.9s-12.9-24.5-28.9-24.5c-15.9 0-28.9 8.6-28.9 24.5s12.9 28.9 28.9 28.9m-29 120.5H640V241.5h-57.9zm-73.7 0h57.9V156.7L508.4 184zm-31-119.4c-18.2-18.2-50.4-17.1-50.4-17.1s-32.3-1.1-50.4 17.1c-18.2 18.2-16.8 33.9-16.8 52.6s-1.4 34.3 16.8 52.5 50.4 17.1 50.4 17.1 32.3 1.1 50.4-17.1c18.2-18.2 16.8-33.8 16.8-52.5-.1-18.8 1.3-34.5-16.8-52.6m-39.8 71.9c0 3.6-1.8 12.5-10.7 12.5s-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9s10.7 2.1 10.7 10.9zm-106.2-71.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.2-1.1-50.4 17.1c-1.9 1.9-3.7 3.9-5.3 6-38.2-29.6-72.5-46.5-102.1-61.1v-20.7l-22.5 10.6c-54.4-22.1-89-18.2-97.3.1 0 0-24.9 32.8 61.8 110.8V352h57.9v-28.6c-6.5-4.2-13-8.7-19.4-13.6-14.8-11.2-27.4-21.6-38.4-31.4v-31c13.1 14.7 30.5 31.4 53.4 50.3l4.5 3.6v-29.8c0-6.9 1.7-18.2 10.8-18.2s10.6 6.9 10.6 15V317c18 12.2 37.3 22.1 57.7 29.6v-93.9c0-18.7-13.4-37.4-40.6-37.4-15.8-.1-30.5 8.2-38.5 21.9v-54.3c41.9 20.9 83.9 46.5 99.9 58.3-10.2 14.6-9.3 28.1-9.3 43.7 0 18.7-1.4 34.3 16.8 52.5s50.4 17.1 50.4 17.1 32.3 1.1 50.4-17.1c18.2-18.2 16.7-33.8 16.7-52.5 0-18.5 1.5-34.2-16.7-52.3M65.2 184v63.3c-48.7-54.5-38.9-76-35.2-79.1 13.5-11.4 37.5-8 64.4 2.1zm226.5 120.5c0 3.6-1.8 12.5-10.7 12.5s-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9s10.7 2.1 10.7 10.9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/hornbill.svg���������������������0000664�0000000�0000000�00000002427�14753064456�0027750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M76.38 370.3a37.8 37.8 0 1 1-32.07-32.42c-78.28-111.35 52-190.53 52-190.53-5.86 43-8.24 91.16-8.24 91.16-67.31 41.49.93 64.06 39.81 72.87a140.38 140.38 0 0 0 131.66 91.94c1.92 0 3.77-.21 5.67-.28l.11 18.86c-99.22 1.39-158.7-29.14-188.94-51.6m108-327.7A37.57 37.57 0 0 0 181 21.45a37.95 37.95 0 1 0-31.17 54.22c-22.55 29.91-53.83 89.57-52.42 190l21.84-.15c0-.9-.14-1.77-.14-2.68A140.42 140.42 0 0 1 207 132.71c8-37.71 30.7-114.3 73.8-44.29 0 0 48.14 2.38 91.18 8.24 0 0-77.84-128-187.59-54.06zm304.19 134.17a37.94 37.94 0 1 0-53.84-28.7C403 126.13 344.89 99 251.28 100.33l.14 22.5c2.7-.15 5.39-.41 8.14-.41a140.37 140.37 0 0 1 130.49 88.76c39.1 9 105.06 31.58 38.46 72.54 0 0-2.34 48.13-8.21 91.16 0 0 133.45-81.16 49-194.61a37.45 37.45 0 0 0 19.31-3.5zM374.06 436.24c21.43-32.46 46.42-89.69 45.14-179.66l-19.52.14c.08 2.06.3 4.07.3 6.15a140.34 140.34 0 0 1-91.39 131.45c-8.85 38.95-31.44 106.66-72.77 39.49 0 0-48.12-2.34-91.19-8.22 0 0 79.92 131.34 191.9 51a37.5 37.5 0 0 0 3.64 14 37.93 37.93 0 1 0 33.89-54.29z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/hotjar.svg�����������������������0000664�0000000�0000000�00000001076�14753064456�0027425�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M361.5 0c0 131.6-80.7 176.8-140.2 209.4-.6.3-1.1.6-1.6.9-53.8 30.2-88.7 49.8-89.6 122H32c0-131.5 80.7-176.7 140.2-209.3C227 93.2 262.5 73 262.5 0h98.9zM301 302.6c54.8-29.8 90.3-50 90.3-123h98c0 131.6-80.7 176.7-140.2 209.4-54.8 29.8-90.3 50-90.3 123h-98c0-131.6 80.7-176.8 140.2-209.4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/houzz.svg������������������������0000664�0000000�0000000�00000000540�14753064456�0027310�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M275.9 330.7H171.3V480H17V32h109.5v104.5l305.1 85.6V480H275.9z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/html5.svg������������������������0000664�0000000�0000000�00000000735�14753064456�0027170�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m0 32 34.9 395.8L191.5 480l157.6-52.2L384 32zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1z"/></svg>�����������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/hubspot.svg����������������������0000664�0000000�0000000�00000001766�14753064456�0027630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M267.4 211.6c-25.1 23.7-40.8 57.3-40.8 94.6 0 29.3 9.7 56.3 26 78L203.1 434c-4.4-1.6-9.1-2.5-14-2.5-10.8 0-20.9 4.2-28.5 11.8s-11.8 17.8-11.8 28.6 4.2 20.9 11.8 28.5 17.8 11.6 28.5 11.6c10.8 0 20.9-3.9 28.6-11.6 7.6-7.6 11.8-17.8 11.8-28.5 0-4.2-.6-8.2-1.9-12.1l50-50.2c22 16.9 49.4 26.9 79.3 26.9 71.9 0 130-58.3 130-130.2 0-65.2-47.7-119.2-110.2-128.7V116c17.5-7.4 28.2-23.8 28.2-42.9 0-26.1-20.9-47.9-47-47.9S311.2 47 311.2 73.1c0 19.1 10.7 35.5 28.2 42.9v61.2c-15.2 2.1-29.6 6.7-42.7 13.6-27.6-20.9-117.5-85.7-168.9-124.8 1.2-4.4 2-9 2-13.8C129.8 23.4 106.3 0 77.4 0 48.6 0 25.2 23.4 25.2 52.2c0 28.9 23.4 52.3 52.2 52.3 9.8 0 18.9-2.9 26.8-7.6zm89.5 163.6c-38.1 0-69-30.9-69-69s30.9-69 69-69 69 30.9 69 69-30.9 69-69 69"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/ideal.svg������������������������0000664�0000000�0000000�00000002016�14753064456�0027207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M125.61 165.48a49.07 49.07 0 1 0 49.06 49.06 49.08 49.08 0 0 0-49.06-49.06M86.15 425.84h78.94V285.32H86.15Zm151.46-211.6c0-20-10-22.53-18.74-22.53h-14.05v45.79h14.05c9.75 0 18.74-2.81 18.74-23.26m201.69 46v-91.31h22.75v68.57h33.69C486.5 113.08 388.61 86.19 299.67 86.19h-94.83V169h14c25.6 0 41.5 17.35 41.5 45.26 0 28.81-15.52 46-41.5 46h-14v165.62h94.83c144.61 0 194.94-67.16 196.72-165.64Zm-109.75 0H273.3V169h54.43v22.73H296v10.58h30V225h-30v12.5h33.51Zm74.66 0-5.16-17.67h-29.74l-5.18 17.67h-23.66L368 168.92h32.35l27.53 91.34ZM299.65 32H32v448h267.65c161.85 0 251-79.73 251-224.52C550.62 172 518 32 299.65 32m0 426.92H53.07V53.07h246.58c142.1 0 229.9 64.61 229.9 202.41 0 134.09-81 203.44-229.9 203.44m83.86-264.85L376 219.88h16.4l-7.52-25.81Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/imdb.svg�������������������������0000664�0000000�0000000�00000003172�14753064456�0027050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M89.5 323.6H53.93V186.2H89.5zm66.6-73.1 9.1-64.3h46.3v137.4h-31v-92.7l-13.4 92.7h-21.3l-13-90.7-.1 90.7h-31.2V186.2h46.1c.5 8.3 2.8 18.1 4.3 29.4zm67.6 73.1V186.2h26.6c17 0 27 .9 33 2.4 6.1 1.7 10.7 4.2 13.9 7.9 3.1 3.3 5.1 6.6 5.8 12 .9 4.4 1.4 13.1 1.4 26.2v48.2c0 12.3-.7 20.5-1.9 24.7-1.1 4.1-3.1 7.4-6 9.7-2.8 2.4-6.4 4.1-10.7 5-4.2.8-10.6 1.3-19.1 1.3zm35.5-113.9v89.4c5.1 0 8.3-1 9.4-2.3 1.1-2 1.8-7.6 1.8-16.7v-53.3c0-6.2-.1-10.2-.7-12-.3-1.8-1.2-3-2.6-4.7-1.4 0-4.1-.4-7.9-.4m57.3 113.9V186.2h34.1v43.9c2.9-2.4 6.1-4.9 9.5-6.6 3.6-1.5 8.8-2.4 12.8-2.4 4.8 0 8.9.8 12.3 2.2 3.4 1.5 6 3.5 8 6.2 1.7 2.6 2.7 5.3 3.1 7.8.4 2.6-.2 8-.2 16.2v38.6c0 8.2.2 14.3-.8 18.4-1.1 4-3.8 7.6-7.8 9.6-4.1 3.9-8.9 5.3-14.6 5.3-4 0-9.2-.9-12.7-2.5-3.5-1.8-6.7-4.5-9.6-8l-2.1 8.7zm45.1-20.7c.7-1.8 1-6 1-12.5V255c0-5.6-.3-9.5-1.1-11.2-.7-1.9-3.7-2.7-5.8-2.7-2 0-3.4.8-4.1 2.3-.6 1.5-1 5.4-1 11.6v36.4c0 6.1.4 10 1.2 11.6.6 1.7 2.1 2.5 4.1 2.5 2.2 0 4.2-.8 5.7-2.6m56.8-270.86c15.7 1.23 28.7 15.24 28.7 31.88V448.1c0 16.4-11.9 30.4-28.2 31-.3 0-.5.9-.8.9H29.88c-.28 0-.56-.9-.84-.1C13.31 478.5 1.093 466.1 0 449.7L.019 61.78C1.08 45.88 13.82 33.09 30.26 31.1H417.7c.2 0 .5.91.7.94M30.27 41.26C19 42.01 10.02 51.01 9.257 62.4v387.3c.373 5.4 2.653 10.5 6.443 14.3 3.78 3.9 8.81 6.3 14.19 6.7H418.1c11.5-1 20.6-11.6 20.6-22.6V63.91c0-5.74-2.1-11.26-6-15.46-3.9-4.21-9.3-6.78-15-7.19z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/instagram.svg��������������������0000664�0000000�0000000�00000002267�14753064456�0030126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141m0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7m146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8m76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8M398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/instalod.svg���������������������0000664�0000000�0000000�00000000701�14753064456�0027745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M153.384 480h233.729l115.441-204.235-298.325 57.446Zm351.342-239.922L387.113 32H155.669L360.23 267.9ZM124.386 48.809 7.274 256l115.962 205.154 102.391-295.593Z"/></svg>���������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/intercom.svg���������������������0000664�0000000�0000000�00000001512�14753064456�0027751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M392 32H56C25.1 32 0 57.1 0 88v336c0 30.9 25.1 56 56 56h336c30.9 0 56-25.1 56-56V88c0-30.9-25.1-56-56-56m-108.3 82.1c0-19.8 29.9-19.8 29.9 0v199.5c0 19.8-29.9 19.8-29.9 0zm-74.6-7.5c0-19.8 29.9-19.8 29.9 0v216.5c0 19.8-29.9 19.8-29.9 0zm-74.7 7.5c0-19.8 29.9-19.8 29.9 0v199.5c0 19.8-29.9 19.8-29.9 0zM59.7 144c0-19.8 29.9-19.8 29.9 0v134.3c0 19.8-29.9 19.8-29.9 0zm323.4 227.8c-72.8 63-241.7 65.4-318.1 0-15-12.8 4.4-35.5 19.4-22.7 65.9 55.3 216.1 53.9 279.3 0 14.9-12.9 34.3 9.8 19.4 22.7m5.2-93.5c0 19.8-29.9 19.8-29.9 0V144c0-19.8 29.9-19.8 29.9 0z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/internet-explorer.svg������������0000664�0000000�0000000�00000002160�14753064456�0031617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M483.049 159.706c10.855-24.575 21.424-60.438 21.424-87.871 0-72.722-79.641-98.371-209.673-38.577-107.632-7.181-211.221 73.67-237.098 186.457 30.852-34.862 78.271-82.298 121.977-101.158C125.404 166.85 79.128 228.002 43.992 291.725 23.246 329.651 0 390.94 0 436.747c0 98.575 92.854 86.5 180.251 42.006 31.423 15.43 66.559 15.573 101.695 15.573 97.124 0 184.249-54.294 216.814-146.022H377.927c-52.509 88.593-196.819 52.996-196.819-47.436H509.9c6.407-43.581-1.655-95.715-26.851-141.162M64.559 346.877c17.711 51.15 53.703 95.871 100.266 123.304-88.741 48.94-173.267 29.096-100.266-123.304m115.977-108.873c2-55.151 50.276-94.871 103.98-94.871 53.418 0 101.981 39.72 103.981 94.871zm184.536-187.6c21.425-10.287 48.563-22.003 72.558-22.003 31.422 0 54.274 21.717 54.274 53.722 0 20.003-7.427 49.007-14.569 67.867-26.28-42.292-65.986-81.584-112.263-99.586"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/invision.svg���������������������0000664�0000000�0000000�00000001572�14753064456�0027775�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M407.4 32H40.6C18.2 32 0 50.2 0 72.6v366.8C0 461.8 18.2 480 40.6 480h366.8c22.4 0 40.6-18.2 40.6-40.6V72.6c0-22.4-18.2-40.6-40.6-40.6M176.1 145.6c.4 23.4-22.4 27.3-26.6 27.4-14.9 0-27.1-12-27.1-27 .1-35.2 53.1-35.5 53.7-.4M332.8 377c-65.6 0-34.1-74-25-106.6 14.1-46.4-45.2-59-59.9.7l-25.8 103.3H177l8.1-32.5c-31.5 51.8-94.6 44.4-94.6-4.3.1-14.3.9-14 23-104.1H81.7l9.7-35.6h76.4c-33.6 133.7-32.6 126.9-32.9 138.2 0 20.9 40.9 13.5 57.4-23.2l19.8-79.4h-32.3l9.7-35.6h68.8l-8.9 40.5c40.5-75.5 127.9-47.8 101.8 38-14.2 51.1-14.6 50.7-14.9 58.8 0 15.5 17.5 22.6 31.8-16.9L386 325c-10.5 36.7-29.4 52-53.2 52"/></svg>��������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/ioxhost.svg����������������������0000664�0000000�0000000�00000001616�14753064456�0027633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M616 160h-67.3C511.2 70.7 422.9 8 320 8 183 8 72 119 72 256c0 16.4 1.6 32.5 4.7 48H24c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h67.3c37.5 89.3 125.8 152 228.7 152 137 0 248-111 248-248 0-16.4-1.6-32.5-4.7-48H616c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24m-96 96c0 110.5-89.5 200-200 200-75.7 0-141.6-42-175.5-104H424c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24H125.8c-3.8-15.4-5.8-31.4-5.8-48 0-110.5 89.5-200 200-200 75.7 0 141.6 42 175.5 104H216c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h298.2c3.8 15.4 5.8 31.4 5.8 48m-304-24h208c13.3 0 24 10.7 24 24 0 13.2-10.7 24-24 24H216c-13.3 0-24-10.7-24-24 0-13.2 10.7-24 24-24"/></svg>������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/itch-io.svg����������������������0000664�0000000�0000000�00000002674�14753064456�0027477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M71.92 34.77C50.2 47.67 7.4 96.84 7 109.73v21.34c0 27.06 25.29 50.84 48.25 50.84 27.57 0 50.54-22.85 50.54-50 0 27.12 22.18 50 49.76 50s49-22.85 49-50c0 27.12 23.59 50 51.16 50h.5c27.57 0 51.16-22.85 51.16-50 0 27.12 21.47 50 49 50s49.76-22.85 49.76-50c0 27.12 23 50 50.54 50 23 0 48.25-23.78 48.25-50.84v-21.34c-.4-12.9-43.2-62.07-64.92-75C372.56 32.4 325.76 32 256 32S91.14 33.1 71.92 34.77m132.32 134.39c-22 38.4-77.9 38.71-99.85.25-13.17 23.14-43.17 32.07-56 27.66-3.87 40.15-13.67 237.13 17.73 269.15 80 18.67 302.08 18.12 379.76 0 31.65-32.27 21.32-232 17.75-269.15-12.92 4.44-42.88-4.6-56-27.66-22 38.52-77.85 38.1-99.85-.24-7.1 12.49-23.05 28.94-51.76 28.94a57.54 57.54 0 0 1-51.75-28.94zm-41.58 53.77c16.47 0 31.09 0 49.22 19.78a437 437 0 0 1 88.18 0C318.22 223 332.85 223 349.31 223c52.33 0 65.22 77.53 83.87 144.45 17.26 62.15-5.52 63.67-33.95 63.73-42.15-1.57-65.49-32.18-65.49-62.79-39.25 6.43-101.93 8.79-155.55 0 0 30.61-23.34 61.22-65.49 62.79-28.42-.06-51.2-1.58-33.94-63.73 18.67-67 31.56-144.45 83.88-144.45zM256 270.79s-44.38 40.77-52.35 55.21l29-1.17v25.32c0 1.55 21.34.16 23.33.16 11.65.54 23.31 1 23.31-.16v-25.28l29 1.17c-8-14.48-52.35-55.24-52.35-55.24z"/></svg>��������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/itunes-note.svg������������������0000664�0000000�0000000�00000001547�14753064456�0030413�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M381.9 388.2c-6.4 27.4-27.2 42.8-55.1 48-24.5 4.5-44.9 5.6-64.5-10.2-23.9-20.1-24.2-53.4-2.7-74.4 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 6.4-7.2 4.4-4.1 4.4-163.2 0-11.2-5.5-14.3-17-12.3-8.2 1.4-185.7 34.6-185.7 34.6-10.2 2.2-13.4 5.2-13.4 16.7 0 234.7 1.1 223.9-2.5 239.5-4.2 18.2-15.4 31.9-30.2 39.5-16.8 9.3-47.2 13.4-63.4 10.4-43.2-8.1-58.4-58-29.1-86.6 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 10.1-11.5 1.8-256.6 5.2-270.2.8-5.2 3-9.6 7.1-12.9 4.2-3.5 11.8-5.5 13.4-5.5 204-38.2 228.9-43.1 232.4-43.1 11.5-.8 18.1 6 18.1 17.6.2 344.5 1.1 326-1.8 338.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/itunes.svg�����������������������0000664�0000000�0000000�00000002206�14753064456�0027441�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M223.6 80.3C129 80.3 52.5 157 52.5 251.5S129 422.8 223.6 422.8s171.2-76.7 171.2-171.2c0-94.6-76.7-171.3-171.2-171.3m79.4 240c-3.2 13.6-13.5 21.2-27.3 23.8-12.1 2.2-22.2 2.8-31.9-5-11.8-10-12-26.4-1.4-36.8 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 3.2-3.6 2.2-2 2.2-80.8 0-5.6-2.7-7.1-8.4-6.1-4 .7-91.9 17.1-91.9 17.1-5 1.1-6.7 2.6-6.7 8.3 0 116.1.5 110.8-1.2 118.5-2.1 9-7.6 15.8-14.9 19.6-8.3 4.6-23.4 6.6-31.4 5.2-21.4-4-28.9-28.7-14.4-42.9 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 5-5.7.9-127 2.6-133.7.4-2.6 1.5-4.8 3.5-6.4 2.1-1.7 5.8-2.7 6.7-2.7 101-19 113.3-21.4 115.1-21.4 5.7-.4 9 3 9 8.7-.1 170.6.4 161.4-1 167.6M345.2 32H102.8C45.9 32 0 77.9 0 134.8v242.4C0 434.1 45.9 480 102.8 480h242.4c57 0 102.8-45.9 102.8-102.8V134.8C448 77.9 402.1 32 345.2 32M223.6 444c-106.3 0-192.5-86.2-192.5-192.5S117.3 59 223.6 59s192.5 86.2 192.5 192.5S329.9 444 223.6 444"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/java.svg�������������������������0000664�0000000�0000000�00000002534�14753064456�0027057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M277.74 312.9c9.8-6.7 23.4-12.5 23.4-12.5s-38.7 7-77.2 10.2c-47.1 3.9-97.7 4.7-123.1 1.3-60.1-8 33-30.1 33-30.1s-36.1-2.4-80.6 19c-52.5 25.4 130 37 224.5 12.1m-85.4-32.1c-19-42.7-83.1-80.2 0-145.8C296 53.2 242.84 0 242.84 0c21.5 84.5-75.6 110.1-110.7 162.6-23.9 35.9 11.7 74.4 60.2 118.2m114.6-176.2c.1 0-175.2 43.8-91.5 140.2 24.7 28.4-6.5 54-6.5 54s62.7-32.4 33.9-72.9c-26.9-37.8-47.5-56.6 64.1-121.3m-6.1 270.5a12.2 12.2 0 0 1-2 2.6c128.3-33.7 81.1-118.9 19.8-97.3a17.33 17.33 0 0 0-8.2 6.3 70.5 70.5 0 0 1 11-3c31-6.5 75.5 41.5-20.6 91.4M348 437.4s14.5 11.9-15.9 21.2c-57.9 17.5-240.8 22.8-291.6.7-18.3-7.9 16-19 26.8-21.3 11.2-2.4 17.7-2 17.7-2-20.3-14.3-131.3 28.1-56.4 40.2C232.84 509.4 401 461.3 348 437.4M124.44 396c-78.7 22 47.9 67.4 148.1 24.5a186 186 0 0 1-28.2-13.8c-44.7 8.5-65.4 9.1-106 4.5-33.5-3.8-13.9-15.2-13.9-15.2m179.8 97.2c-78.7 14.8-175.8 13.1-233.3 3.6 0-.1 11.8 9.7 72.4 13.6 92.2 5.9 233.8-3.3 237.1-46.9 0 0-6.4 16.5-76.2 29.7M260.64 353c-59.2 11.4-93.5 11.1-136.8 6.6-33.5-3.5-11.6-19.7-11.6-19.7-86.8 28.8 48.2 61.4 169.5 25.9a60.4 60.4 0 0 1-21.1-12.8"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/jedi-order.svg�������������������0000664�0000000�0000000�00000001661�14753064456�0030162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M398.5 373.6c95.9-122.1 17.2-233.1 17.2-233.1 45.4 85.8-41.4 170.5-41.4 170.5 105-171.5-60.5-271.5-60.5-271.5 96.9 72.7-10.1 190.7-10.1 190.7 85.8 158.4-68.6 230.1-68.6 230.1s-.4-16.9-2.2-85.7c4.3 4.5 34.5 36.2 34.5 36.2l-24.2-47.4 62.6-9.1-62.6-9.1 20.2-55.5-31.4 45.9c-2.2-87.7-7.8-305.1-7.9-306.9v-2.4 1-1 2.4c0 1-5.6 219-7.9 306.9l-31.4-45.9 20.2 55.5-62.6 9.1 62.6 9.1-24.2 47.4 34.5-36.2c-1.8 68.8-2.2 85.7-2.2 85.7s-154.4-71.7-68.6-230.1c0 0-107-118.1-10.1-190.7 0 0-165.5 99.9-60.5 271.5 0 0-86.8-84.8-41.4-170.5 0 0-78.7 111 17.2 233.1 0 0-26.2-16.1-49.4-77.7 0 0 16.9 183.3 222 185.7h4.1c205-2.4 222-185.7 222-185.7-23.6 61.5-49.9 77.7-49.9 77.7"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/jenkins.svg����������������������0000664�0000000�0000000�00000010625�14753064456�0027577�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M487.1 425c-1.4-11.2-19-23.1-28.2-31.9-5.1-5-29-23.1-30.4-29.9-1.4-6.6 9.7-21.5 13.3-28.9 5.1-10.7 8.8-23.7 11.3-32.6 18.8-66.1 20.7-156.9-6.2-211.2-10.2-20.6-38.6-49-56.4-62.5-42-31.7-119.6-35.3-170.1-16.6-14.1 5.2-27.8 9.8-40.1 17.1-33.1 19.4-68.3 32.5-78.1 71.6-24.2 10.8-31.5 41.8-30.3 77.8.2 7 4.1 15.8 2.7 22.4-.7 3.3-5.2 7.6-6.1 9.8-11.6 27.7-2.3 64 11.1 83.7 8.1 11.9 21.5 22.4 39.2 25.2.7 10.6 3.3 19.7 8.2 30.4 3.1 6.8 14.7 19 10.4 27.7-2.2 4.4-21 13.8-27.3 17.6C89 407.2 73.7 415 54.2 429c-12.6 9-32.3 10.2-29.2 31.1 2.1 14.1 10.1 31.6 14.7 45.8.7 2 1.4 4.1 2.1 6h422c4.9-15.3 9.7-30.9 14.6-47.2 3.4-11.4 10.2-27.8 8.7-39.7M205.9 33.7c1.8-.5 3.4.7 4.9 2.4-.2 5.2-5.4 5.1-8.9 6.8-5.4 6.7-13.4 9.8-20 17.2-6.8 7.5-14.4 27.7-23.4 30-4.5 1.1-9.7-.8-13.6-.5-10.4.7-17.7 6-28.3 7.5 13.6-29.9 56.1-54 89.3-63.4m-104.8 93.6c13.5-14.9 32.1-24.1 54.8-25.9 11.7 29.7-8.4 65-.9 97.6 2.3 9.9 10.2 25.4-2.4 25.7.3-28.3-34.8-46.3-61.3-29.6-1.8-21.5-4.9-51.7 9.8-67.8m36.7 200.2c-1-4.1-2.7-12.9-2.3-15.1 1.6-8.7 17.1-12.5 11-24.7-11.3-.1-13.8 10.2-24.1 11.3-26.7 2.6-45.6-35.4-44.4-58.4 1-19.5 17.6-38.2 40.1-35.8 16 1.8 21.4 19.2 24.5 34.7 9.2.5 22.5-.4 26.9-7.6-.6-17.5-8.8-31.6-8.2-47.7 1-30.3 17.5-57.6 4.8-87.4 13.6-30.9 53.5-55.3 83.1-70 36.6-18.3 94.9-3.7 129.3 15.8 19.7 11.1 34.4 32.7 48.3 50.7-19.5-5.8-36.1 4.2-33.1 20.3 16.3-14.9 44.2-.2 52.5 16.4 7.9 15.8 7.8 39.3 9 62.8 2.9 57-10.4 115.9-39.1 157.1-7.7 11-14.1 23-24.9 30.6-26 18.2-65.4 34.7-99.2 23.4-44.7-15-65-44.8-89.5-78.8.7 18.7 13.8 34.1 26.8 48.4 11.3 12.5 25 26.6 39.7 32.4-12.3-2.9-31.1-3.8-36.2 7.2-28.6-1.9-55.1-4.8-68.7-24.2-10.6-15.4-21.4-41.4-26.3-61.4m222 124.1c4.1-3 11.1-2.9 17.4-3.6-5.4-2.7-13-3.7-19.3-2.2-.1-4.2-2-6.8-3.2-10.2 10.6-3.8 35.5-28.5 49.6-20.3 6.7 3.9 9.5 26.2 10.1 37 .4 9-.8 18-4.5 22.8-18.8-.6-35.8-2.8-50.7-7 .9-6.1-1-12.1.6-16.5m-17.2-20c-16.8.8-26-1.2-38.3-10.8.2-.8 1.4-.5 1.5-1.4 18 8 40.8-3.3 59-4.9-7.9 5.1-14.6 11.6-22.2 17.1m-12.1 33.2c-1.6-9.4-3.5-12-2.8-20.2 25-16.6 29.7 28.6 2.8 20.2M226 438.6c-11.6-.7-48.1-14-38.5-23.7 9.4 6.5 27.5 4.9 41.3 7.3.8 4.4-2.8 10.2-2.8 16.4M57.7 497.1c-4.3-12.7-9.2-25.1-14.8-36.9 30.8-23.8 65.3-48.9 102.2-63.5 2.8-1.1 23.2 25.4 26.2 27.6 16.5 11.7 37 21 56.2 30.2 1.2 8.8 3.9 20.2 8.7 35.5.7 2.3 1.4 4.7 2.2 7.2H57.7zm240.6 5.7h-.8c.3-.2.5-.4.8-.5zm7.5-5.7c2.1-1.4 4.3-2.8 6.4-4.3 1.1 1.4 2.2 2.8 3.2 4.3zm15.1-24.7c-10.8 7.3-20.6 18.3-33.3 25.2-6 3.3-27 11.7-33.4 10.2-3.6-.8-3.9-5.3-5.4-9.5-3.1-9-10.1-23.4-10.8-37-.8-17.2-2.5-46 16-42.4 14.9 2.9 32.3 9.7 43.9 16.1 7.1 3.9 11.1 8.6 21.9 9.5-.1 1.4-.1 2.8-.2 4.3-5.9 3.9-15.3 3.8-21.8 7.1 9.5.4 17 2.7 23.5 5.9-.1 3.4-.3 7-.4 10.6m53.4 24.7h-14c-.1-3.2-2.8-5.8-6.1-5.8s-5.9 2.6-6.1 5.8h-17.4c-2.8-4.4-5.7-8.6-8.9-12.5 2.1-2.2 4-4.7 6-6.9 9 3.7 14.8-4.9 21.7-4.2 7.9.8 14.2 11.7 25.4 11zm8.7 0c.2-4 .4-7.8.6-11.5 15.6-7.3 29 1.3 35.7 11.5zm83.4-37c-2.3 11.2-5.8 24-9.9 37.1-.2-.1-.4-.1-.6-.1H428c.6-1.1 1.2-2.2 1.9-3.3-2.6-6.1-9-8.7-10.9-15.5 12.1-22.7 6.5-93.4-24.2-78.5 4.3-6.3 15.6-11.5 20.8-19.3 13 10.4 20.8 20.3 33.2 31.4 6.8 6 20 13.3 21.4 23.1.8 5.5-2.6 18.9-3.8 25.1M222.2 130.5c5.4-14.9 27.2-34.7 45-32 7.7 1.2 18 8.2 12.2 17.7-30.2-7-45.2 12.6-54.4 33.1-8.1-2-4.9-13.1-2.8-18.8m184.1 63.1c8.2-3.6 22.4-.7 29.6-5.3-4.2-11.5-10.3-21.4-9.3-37.7.5 0 1 0 1.4.1 6.8 14.2 12.7 29.2 21.4 41.7-5.7 13.5-43.6 25.4-43.1 1.2m-96.8 2.7c-6.8-10.9-19-32.5-14.5-45.3 6.5 11.9 8.6 24.4 17.8 33.3 4.1 4 12.2 9 8.2 20.2-.9 2.7-7.8 8.6-11.7 9.7-14.4 4.3-47.9.9-36.6-17.1 11.9.7 27.9 7.8 36.8-.8m27.3 70c3.8 6.6 1.4 18.7 12.1 20.6 20.2 3.4 43.6-12.3 58.1-17.8 9-15.2-.8-20.7-8.9-30.5-16.6-20-38.8-44.8-38-74.7 6.7-4.9 7.3 7.4 8.2 9.7 8.7 20.3 30.4 46.2 46.3 63.5 3.9 4.3 10.3 8.4 11 11.2 2.1 8.2-5.4 18-4.5 23.5-21.7 13.9-45.8 29.1-81.4 25.6-7.4-6.7-10.3-21.4-2.9-31.1m-201.3-9.2c-6.8-3.9-8.4-21-16.4-21.4-11.4-.7-9.3 22.2-9.3 35.5-7.8-7.1-9.2-29.1-3.5-40.3-6.6-3.2-9.5 3.6-13.1 5.9 4.7-34.1 49.8-15.8 42.3 20.3m299.6 28.8c-10.1 19.2-24.4 40.4-54 41-.6-6.2-1.1-15.6 0-19.4 22.7-2.2 36.6-13.7 54-21.6m-141.9 12.4c18.9 9.9 53.6 11 79.3 10.2 1.4 5.6 1.3 12.6 1.4 19.4-33 1.8-72-6.4-80.7-29.6m92.2 46.7c-1.7 4.3-5.3 9.3-9.8 11.1-12.1 4.9-45.6 8.7-62.4-.3-10.7-5.7-17.5-18.5-23.4-26-2.8-3.6-16.9-12.9-.2-12.9 13.1 32.7 58 29 95.8 28.1"/></svg>�����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/jira.svg�������������������������0000664�0000000�0000000�00000000763�14753064456�0027065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M490 241.7C417.1 169 320.6 71.8 248.5 0 83 164.9 6 241.7 6 241.7c-7.9 7.9-7.9 20.7 0 28.7C138.8 402.7 67.8 331.9 248.5 512c379.4-378 15.7-16.7 241.5-241.7 8-7.9 8-20.7 0-28.6m-241.5 90-76-75.7 76-75.7 76 75.7z"/></svg>�������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/joget.svg������������������������0000664�0000000�0000000�00000002073�14753064456�0027244�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M378.1 45C337.6 19.9 292.6 8 248.2 8 165 8 83.8 49.9 36.9 125.9c-71.9 116.6-35.6 269.3 81 341.2s269.3 35.6 341.2-80.9c71.9-116.6 35.6-269.4-81-341.2m51.8 323.2c-40.4 65.5-110.4 101.5-182 101.5-6.8 0-13.6-.4-20.4-1-9-13.6-19.9-33.3-23.7-42.4-5.7-13.7-27.2-45.6 31.2-67.1 51.7-19.1 176.7-16.5 208.8-17.6-4 9-8.6 17.9-13.9 26.6m-200.8-86.3c-55.5-1.4-81.7-20.8-58.5-48.2s51.1-40.7 68.9-51.2c17.9-10.5 27.3-33.7-23.6-29.7C87.3 161.5 48.6 252.1 37.6 293c-8.8-49.7-.1-102.7 28.5-149.1C128 43.4 259.6 12.2 360.1 74.1c74.8 46.1 111.2 130.9 99.3 212.7-24.9-.5-179.3-3.6-230.3-4.9m183.8-54.8c-22.7-6-57 11.3-86.7 27.2-29.7 15.8-31.1 8.2-31.1 8.2s40.2-28.1 50.7-34.5 31.9-14 13.4-24.6c-3.2-1.8-6.7-2.7-10.4-2.7-17.8 0-41.5 18.7-67.5 35.6-31.5 20.5-65.3 31.3-65.3 31.3l169.5-1.6 46.5-23.4s3.6-9.5-19.1-15.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/joomla.svg�����������������������0000664�0000000�0000000�00000002506�14753064456�0027416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M.6 92.1C.6 58.8 27.4 32 60.4 32c30 0 54.5 21.9 59.2 50.2 32.6-7.6 67.1.6 96.5 30l-44.3 44.3c-20.5-20.5-42.6-16.3-55.4-3.5-14.3 14.3-14.3 37.9 0 52.2l99.5 99.5-44 44.3c-87.7-87.2-49.7-49.7-99.8-99.7-26.8-26.5-35-64.8-24.8-98.9C20.4 144.6.6 120.7.6 92.1m129.5 116.4 44.3 44.3c10-10 89.7-89.7 99.7-99.8 14.3-14.3 37.6-14.3 51.9 0 12.8 12.8 17 35-3.5 55.4l44 44.3c31.2-31.2 38.5-67.6 28.9-101.2 29.2-4.1 51.9-29.2 51.9-59.5 0-33.2-26.8-60.1-59.8-60.1-30.3 0-55.4 22.5-59.5 51.6-33.8-9.9-71.7-1.5-98.3 25.1-18.3 19.1-71.1 71.5-99.6 99.9m266.3 152.2c8.2-32.7-.9-68.5-26.3-93.9-11.8-12.2 5 4.7-99.5-99.7l-44.3 44.3 99.7 99.7c14.3 14.3 14.3 37.6 0 51.9-12.8 12.8-35 17-55.4-3.5l-44 44.3c27.6 30.2 68 38.8 102.7 28 5.5 27.4 29.7 48.1 58.9 48.1 33 0 59.8-26.8 59.8-60.1 0-30.2-22.5-55-51.6-59.1m-84.3-53.1-44-44.3c-87 86.4-50.4 50.4-99.7 99.8-14.3 14.3-37.6 14.3-51.9 0-13.1-13.4-16.9-35.3 3.2-55.4l-44-44.3c-30.2 30.2-38 65.2-29.5 98.3-26.7 6-46.2 29.9-46.2 58.2C0 453.2 26.8 480 59.8 480c28.6 0 52.5-19.8 58.6-46.7 32.7 8.2 68.5-.6 94.2-26 32.1-32 12.2-12.4 99.5-99.7"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/js.svg���������������������������0000664�0000000�0000000�00000001454�14753064456�0026552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 32v448h448V32zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/jsfiddle.svg���������������������0000664�0000000�0000000�00000004076�14753064456�0027725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M510.634 237.462c-4.727-2.621-5.664-5.748-6.381-10.776-2.352-16.488-3.539-33.619-9.097-49.095-35.895-99.957-153.99-143.386-246.849-91.646-27.37 15.25-48.971 36.369-65.493 63.903-3.184-1.508-5.458-2.71-7.824-3.686-30.102-12.421-59.049-10.121-85.331 9.167-25.531 18.737-36.422 44.548-32.676 76.408.355 3.025-1.967 7.621-4.514 9.545-39.712 29.992-56.031 78.065-41.902 124.615 13.831 45.569 57.514 79.796 105.608 81.433 30.291 1.031 60.637.546 90.959.539 84.041-.021 168.09.531 252.12-.48 52.664-.634 96.108-36.873 108.212-87.293 11.54-48.074-11.144-97.3-56.832-122.634m21.107 156.88c-18.23 22.432-42.343 35.253-71.28 35.65-56.874.781-113.767.23-170.652.23 0 .7-163.028.159-163.728.154-43.861-.332-76.739-19.766-95.175-59.995-18.902-41.245-4.004-90.848 34.186-116.106 9.182-6.073 12.505-11.566 10.096-23.136-5.49-26.361 4.453-47.956 26.42-62.981 22.987-15.723 47.422-16.146 72.034-3.083 10.269 5.45 14.607 11.564 22.198-2.527 14.222-26.399 34.557-46.727 60.671-61.294 97.46-54.366 228.37 7.568 230.24 132.697.122 8.15 2.412 12.428 9.848 15.894 57.56 26.829 74.456 96.122 35.142 144.497m-87.789-80.499c-5.848 31.157-34.622 55.096-66.666 55.095-16.953-.001-32.058-6.545-44.079-17.705-27.697-25.713-71.141-74.98-95.937-93.387-20.056-14.888-41.99-12.333-60.272 3.782-49.996 44.071 15.859 121.775 67.063 77.188 4.548-3.96 7.84-9.543 12.744-12.844 8.184-5.509 20.766-.884 13.168 10.622-17.358 26.284-49.33 38.197-78.863 29.301-28.897-8.704-48.84-35.968-48.626-70.179 1.225-22.485 12.364-43.06 35.414-55.965 22.575-12.638 46.369-13.146 66.991 2.474C295.68 280.7 320.467 323.97 352.185 343.47c24.558 15.099 54.254 7.363 68.823-17.506 28.83-49.209-34.592-105.016-78.868-63.46-3.989 3.744-6.917 8.932-11.41 11.72-10.975 6.811-17.333-4.113-12.809-10.353 20.703-28.554 50.464-40.44 83.271-28.214 31.429 11.714 49.108 44.366 42.76 78.186"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/jxl.svg��������������������������0000664�0000000�0000000�00000001151�14753064456�0026725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M412.2 32H35.8C16 32 0 48 0 67.8v376.4C0 464 16 480 35.8 480h376.4c19.8 0 35.8-16 35.8-35.8V67.8C448 48 432 32 412.2 32m-33.6 301.7c0 40.2-32.6 72.8-72.8 72.8H70.2c0-40.2 32.6-72.8 72.8-72.8zm0-113.9c0 40.2-32.6 72.8-72.8 72.8H70.2c0-40.2 32.6-72.8 72.8-72.8zm0-113.9c0 40.2-32.6 72.8-72.8 72.8H70.2c0-40.2 32.6-72.8 72.8-72.8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/kaggle.svg�����������������������0000664�0000000�0000000�00000001020�14753064456�0027355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M304.2 501.5 158.4 320.3 298.2 185c2.6-2.7 1.7-10.5-5.3-10.5h-69.2c-3.5 0-7 1.8-10.5 5.3L80.9 313.5V7.5q0-7.5-7.5-7.5H21.5Q14 0 14 7.5v497q0 7.5 7.5 7.5h51.9q7.5 0 7.5-7.5v-109l30.8-29.3 110.5 140.6c3 3.5 6.5 5.3 10.5 5.3h66.9q5.25 0 6-3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/keybase.svg����������������������0000664�0000000�0000000�00000003334�14753064456�0027560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M286.17 419a18 18 0 1 0 18 18 18 18 0 0 0-18-18m111.92-147.6c-9.5-14.62-39.37-52.45-87.26-73.71q-9.1-4.06-18.38-7.27a78.43 78.43 0 0 0-47.88-104.13c-12.41-4.1-23.33-6-32.41-5.77-.6-2-1.89-11 9.4-35L198.66 32l-5.48 7.56c-8.69 12.06-16.92 23.55-24.34 34.89a51 51 0 0 0-8.29-1.25c-41.53-2.45-39-2.33-41.06-2.33-50.61 0-50.75 52.12-50.75 45.88l-2.36 36.68c-1.61 27 19.75 50.21 47.63 51.85l8.93.54a214 214 0 0 0-46.29 35.54C14 304.66 14 374 14 429.77v33.64l23.32-29.8a148.6 148.6 0 0 0 14.56 37.56c5.78 10.13 14.87 9.45 19.64 7.33 4.21-1.87 10-6.92 3.75-20.11a178.3 178.3 0 0 1-15.76-53.13l46.82-59.83-24.66 74.11c58.23-42.4 157.38-61.76 236.25-38.59 34.2 10.05 67.45.69 84.74-23.84.72-1 1.2-2.16 1.85-3.22a156 156 0 0 1 2.8 28.43c0 23.3-3.69 52.93-14.88 81.64-2.52 6.46 1.76 14.5 8.6 15.74 7.42 1.57 15.33-3.1 18.37-11.15C429 443 434 414 434 382.32c0-38.58-13-77.46-35.91-110.92M142.37 128.58l-15.7-.93-1.39 21.79 13.13.78a93 93 0 0 0 .32 19.57l-22.38-1.34a12.28 12.28 0 0 1-11.76-12.79L107 119c1-12.17 13.87-11.27 13.26-11.32l29.11 1.73a144 144 0 0 0-7 19.17m148.42 172.18a10.51 10.51 0 0 1-14.35-1.39l-9.68-11.49-34.42 27a8.09 8.09 0 0 1-11.13-1.08l-15.78-18.64a7.38 7.38 0 0 1 1.34-10.34l34.57-27.18-14.14-16.74-17.09 13.45a7.75 7.75 0 0 1-10.59-1s-3.72-4.42-3.8-4.53a7.38 7.38 0 0 1 1.37-10.34L214 225.19s-18.51-22-18.6-22.14a9.56 9.56 0 0 1 1.74-13.42 10.38 10.38 0 0 1 14.3 1.37l81.09 96.32a9.58 9.58 0 0 1-1.74 13.44M187.44 419a18 18 0 1 0 18 18 18 18 0 0 0-18-18"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/keycdn.svg�����������������������0000664�0000000�0000000�00000003264�14753064456�0027414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m63.8 409.3 60.5-59c32.1 42.8 71.1 66 126.6 67.4 30.5.7 60.3-7 86.4-22.4 5.1 5.3 18.5 19.5 20.9 22-32.2 20.7-69.6 31.1-108.1 30.2-43.3-1.1-84.6-16.7-117.7-44.4.3-.6-38.2 37.5-38.6 37.9 9.5 29.8-13.1 62.4-46.3 62.4C20.7 503.3 0 481.7 0 454.9c0-34.3 33.1-56.6 63.8-45.6m354.9-252.4c19.1 31.3 29.6 67.4 28.7 104-1.1 44.8-19 87.5-48.6 121 .3.3 23.8 25.2 24.1 25.5 9.6-1.3 19.2 2 25.9 9.1 11.3 12 10.9 30.9-1.1 42.4-12 11.3-30.9 10.9-42.4-1.1-6.7-7-9.4-16.8-7.6-26.3-24.9-26.6-44.4-47.2-44.4-47.2 42.7-34.1 63.3-79.6 64.4-124.2.7-28.9-7.2-57.2-21.1-82.2zM104 53.1c6.7 7 9.4 16.8 7.6 26.3l45.9 48.1c-4.7 3.8-13.3 10.4-22.8 21.3-25.4 28.5-39.6 64.8-40.7 102.9-.7 28.9 6.1 57.2 20 82.4l-22 21.5C72.7 324 63.1 287.9 64.2 250.9c1-44.6 18.3-87.6 47.5-121.1l-25.3-26.4c-9.6 1.3-19.2-2-25.9-9.1-11.3-12-10.9-30.9 1.1-42.4C73.5 40.7 92.2 41 104 53.1M464.9 8c26 0 47.1 22.4 47.1 48.3S490.9 104 464.9 104c-6.3.1-14-1.1-15.9-1.8l-62.9 59.7c-32.7-43.6-76.7-65.9-126.9-67.2-30.5-.7-60.3 6.8-86.2 22.4l-21.1-22C184.1 74.3 221.5 64 260 64.9c43.3 1.1 84.6 16.7 117.7 44.6l41.1-38.6c-1.5-4.7-2.2-9.6-2.2-14.5C416.5 29.7 438.9 8 464.9 8M256.7 113.4c5.5 0 10.9.4 16.4 1.1 78.1 9.8 133.4 81.1 123.8 159.1-9.8 78.1-81.1 133.4-159.1 123.8-78.1-9.8-133.4-81.1-123.8-159.2 9.3-72.4 70.1-124.6 142.7-124.8m-59 119.4c.6 22.7 12.2 41.8 32.4 52.2l-11 51.7h73.7l-11-51.7c20.1-10.9 32.1-29 32.4-52.2-.4-32.8-25.8-57.5-58.3-58.3-32.1.8-57.3 24.8-58.2 58.3M256 160"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/kickstarter-k.svg����������������0000664�0000000�0000000�00000001043�14753064456�0030706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m356.6 256.2 40.8-40.5c42.2-41.9 42.2-110.3 0-152.1s-111-41.9-153.2 0l-14.9 14.8C209.6 50.3 177.1 32 140.2 32 80.5 32 32 80.2 32 139.5v233C32 431.9 80.5 480 140.2 480c37.1 0 69.3-18.3 89-46.4l14.9 14.7c42.2 41.9 111 41.9 153.2 0s42.2-110.3 0-152.1l-40.8-40z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/kickstarter.svg������������������0000664�0000000�0000000�00000001177�14753064456�0030466�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm256.8 201-23.3 23.1 23.3 22.9c24.1 23.9 24.1 63 0 86.9s-63.4 23.9-87.6 0l-8.5-8.4c-11.3 16-29.7 26.5-50.9 26.5-34.1 0-61.9-27.5-61.9-61.4V189.4c0-33.8 27.7-61.4 61.9-61.4 21.1 0 39.6 10.5 50.9 26.5l8.5-8.4c24.1-23.9 63.4-23.9 87.6 0s24.1 63 0 86.9"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/korvue.svg�����������������������0000664�0000000�0000000�00000001017�14753064456�0027444�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 446 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M386.5 34h-327C26.8 34 0 60.8 0 93.5v327.1C0 453.2 26.8 480 59.5 480h327.1c33 0 59.5-26.8 59.5-59.5v-327C446 60.8 419.2 34 386.5 34M87.1 120.8h96v116l61.8-116h110.9l-81.2 132H87.1zm161.8 272.1-65.7-113.6v113.6h-96V262.1h191.5l88.6 130.8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/laravel.svg����������������������0000664�0000000�0000000�00000002251�14753064456�0027560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M107.2 0c2.5 0 4.7.8 6.7 2l94.3 54.1c2.7 1.5 4.5 3.5 5.4 5.9.9 2.2.9 4.3.9 5.6V261l69.2-39.7V121c0-2.6.6-5 2.2-7.2 1.5-2.1 3.5-3.6 5.7-4.8l94-54c1.6-.9 3.4-1.6 5.5-1.6s4 .7 5.6 1.6l95.8 55.1c2.3 1.3 3.9 3 4.9 5.3.9 2.1.9 4.2.9 5.8v107.2c0 2-.2 4.3-1.4 6.4-1.2 2.2-3 3.7-5.1 4.9l-.1.1-88 50.5v100c0 2.3-.3 4.8-1.6 7s-3.3 3.7-5.3 4.9h-.1L208.7 510c-2.2 1.2-4.5 2-7.1 2s-4.9-.9-7.1-2l-.1-.1L7.1 402l-.5-.3c-1.1-.7-2.6-1.7-3.8-2.9-1.9-1.9-2.8-4.2-2.8-7.2V65.9c0-4.8 3-7.9 5.5-9.3l95-54.6c2-1.2 4.3-2 6.8-2zM38.1 67.1l69 39.9 69.2-39.9-69.2-39.7zm353 93.2 69-39.7-69-39.7-69.1 39.7zM189.2 89 120 128.8v186.4l69.2-39.9V88.9zm-94.7 39.9L25.2 89.1v294.2l164 94.2v-79.4l-87.3-49.3-.2-.1c-1.3-.8-3.2-1.9-4.6-3.7-1.7-2.1-2.5-4.7-2.5-7.7V128.8zm214.7 92.4 69.3 39.6v-78.5l-69.3-39.9zm94.5 39.6 69.3-39.7v-78.8l-69.3 39.9v78.5zM201.6 376.1l163.8-93.2-69-39.9L133 337.1l68.6 38.9zm12.9 101.5 164-94.2v-78.8l-164 93.6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/lastfm.svg�����������������������0000664�0000000�0000000�00000001531�14753064456�0027420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m225.8 367.1-18.8-51s-30.5 34-76.2 34c-40.5 0-69.2-35.2-69.2-91.5 0-72.1 36.4-97.9 72.1-97.9 66.5 0 74.8 53.3 100.9 134.9 18.8 56.9 54 102.6 155.4 102.6 72.7 0 122-22.3 122-80.9 0-72.9-62.7-80.6-115-92.1-25.8-5.9-33.4-16.4-33.4-34 0-19.9 15.8-31.7 41.6-31.7 28.2 0 43.4 10.6 45.7 35.8l58.6-7c-4.7-52.8-41.1-74.5-100.9-74.5-52.8 0-104.4 19.9-104.4 83.9 0 39.9 19.4 65.1 68 76.8 44.9 10.6 79.8 13.8 79.8 45.7 0 21.7-21.1 30.5-61 30.5-59.2 0-83.9-31.1-97.9-73.9-32-96.8-43.6-163-161.3-163C45.7 113.8 0 168.3 0 261c0 89.1 45.7 137.2 127.9 137.2 66.2 0 97.9-31.1 97.9-31.1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/leanpub.svg����������������������0000664�0000000�0000000�00000002517�14753064456�0027565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m386.539 111.485 15.096 248.955-10.979-.275c-36.232-.824-71.64 8.783-102.657 27.997-31.016-19.214-66.424-27.997-102.657-27.997-45.564 0-82.07 10.705-123.516 27.723L93.117 129.6c28.546-11.803 61.484-18.115 92.226-18.115 41.173 0 73.836 13.175 102.657 42.544 27.723-28.271 59.013-41.721 98.539-42.544M569.07 448c-25.526 0-47.485-5.215-70.542-15.645-34.31-15.645-69.993-24.978-107.871-24.978-38.977 0-74.934 12.901-102.657 40.623-27.723-27.723-63.68-40.623-102.657-40.623-37.878 0-73.561 9.333-107.871 24.978C55.239 442.236 32.731 448 8.303 448H6.93L49.475 98.859C88.726 76.626 136.486 64 181.775 64 218.83 64 256.984 71.685 288 93.095 319.016 71.685 357.17 64 394.225 64c45.289 0 93.049 12.626 132.3 34.859zm-43.368-44.741-34.036-280.246c-30.742-13.999-67.248-21.41-101.009-21.41-38.428 0-74.385 12.077-102.657 38.702-28.272-26.625-64.228-38.702-102.657-38.702-33.761 0-70.267 7.411-101.009 21.41L50.298 403.259c47.211-19.487 82.894-33.486 135.045-33.486 37.604 0 70.817 9.606 102.657 29.644 31.84-20.038 65.052-29.644 102.657-29.644 52.151 0 87.834 13.999 135.045 33.486"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/less.svg�������������������������0000664�0000000�0000000�00000003760�14753064456�0027106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M612.7 219c0-20.5 3.2-32.6 3.2-54.6 0-34.2-12.6-45.2-40.5-45.2h-20.5v24.2h6.3c14.2 0 17.3 4.7 17.3 22.1 0 16.3-1.6 32.6-1.6 51.5 0 24.2 7.9 33.6 23.6 37.3v1.6c-15.8 3.7-23.6 13.1-23.6 37.3 0 18.9 1.6 34.2 1.6 51.5 0 17.9-3.7 22.6-17.3 22.6v.5h-6.3V393h20.5c27.8 0 40.5-11 40.5-45.2 0-22.6-3.2-34.2-3.2-54.6 0-11 6.8-22.6 27.3-23.6v-27.3c-20.5-.7-27.3-12.3-27.3-23.3m-105.6 32c-15.8-6.3-30.5-10-30.5-20.5 0-7.9 6.3-12.6 17.9-12.6s22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-21 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51s-22.5-41-43-47.8m-358.9 59.4c-3.7 0-8.4-3.2-8.4-13.1V119.1H65.2c-28.4 0-41 11-41 45.2 0 22.6 3.2 35.2 3.2 54.6 0 11-6.8 22.6-27.3 23.6v27.3c20.5.5 27.3 12.1 27.3 23.1 0 19.4-3.2 31-3.2 53.6 0 34.2 12.6 45.2 40.5 45.2h20.5v-24.2h-6.3c-13.1 0-17.3-5.3-17.3-22.6s1.6-32.1 1.6-51.5c0-24.2-7.9-33.6-23.6-37.3v-1.6c15.8-3.7 23.6-13.1 23.6-37.3 0-18.9-1.6-34.2-1.6-51.5s3.7-22.1 17.3-22.1H93v150.8c0 32.1 11 53.1 43.1 53.1 10 0 17.9-1.6 23.6-3.7l-5.3-34.2c-3.1.8-4.6.8-6.2.8M379.9 251c-16.3-6.3-31-10-31-20.5 0-7.9 6.3-12.6 17.9-12.6s22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-20.5 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51 .1-28.9-22.5-41-43-47.8m-155-68.8c-38.4 0-75.1 32.1-74.1 82.5 0 52 34.2 82.5 79.3 82.5 18.9 0 39.9-6.8 56.2-17.9l-15.8-27.8c-11.6 6.8-22.6 10-34.2 10-21 0-37.3-10-41.5-34.2H290c.5-3.7 1.6-11 1.6-19.4.6-42.6-22.6-75.7-66.7-75.7m-30 66.2c3.2-21 15.8-31 30.5-31 18.9 0 26.3 13.1 26.3 31z"/></svg>����������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/letterboxd.svg�������������������0000664�0000000�0000000�00000001541�14753064456�0030307�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M521.3 128c65.6 0 118.7 53.1 118.7 118.6s-53.1 118.6-118.7 118.6c-42.5 0-79.7-22.3-100.7-55.8 11.4-18.2 18-39.7 18-62.8s-6.6-44.6-18-62.8l.8-1.2c20.8-32.3 56.8-53.9 97.9-54.6zM320 128c42.5 0 79.7 22.3 100.7 55.8-11.4 18.2-18 39.7-18 62.8s6.6 44.6 18 62.8l-.8 1.2c-20.8 32.3-56.8 53.9-97.9 54.6h-2c-42.5 0-79.7-22.3-100.7-55.8 11.4-18.2 18-39.7 18-62.8s-6.6-44.6-18-62.8l.8-1.2c20.8-32.3 56.8-53.9 97.9-54.6zm-201.3 0c42.5 0 79.7 22.3 100.7 55.8-11.4 18.2-18 39.7-18 62.8s6.6 44.6 18 62.8l-.8 1.2c-20.8 32.3-56.8 53.9-97.9 54.6h-2C53.1 365.1 0 312.1 0 246.6S53.1 128 118.7 128"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/line.svg�������������������������0000664�0000000�0000000�00000002564�14753064456�0027070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M311 196.8v81.3c0 2.1-1.6 3.7-3.7 3.7h-13c-1.3 0-2.4-.7-3-1.5L254 230v48.2c0 2.1-1.6 3.7-3.7 3.7h-13c-2.1 0-3.7-1.6-3.7-3.7v-81.3c0-2.1 1.6-3.7 3.7-3.7h12.9c1.1 0 2.4.6 3 1.6l37.3 50.3v-48.2c0-2.1 1.6-3.7 3.7-3.7h13c2.1-.1 3.8 1.6 3.8 3.5zm-93.7-3.7h-13c-2.1 0-3.7 1.6-3.7 3.7v81.3c0 2.1 1.6 3.7 3.7 3.7h13c2.1 0 3.7-1.6 3.7-3.7v-81.3c0-1.9-1.6-3.7-3.7-3.7m-31.4 68.1h-35.6v-64.4c0-2.1-1.6-3.7-3.7-3.7h-13c-2.1 0-3.7 1.6-3.7 3.7v81.3c0 1 .3 1.8 1 2.5.7.6 1.5 1 2.5 1h52.2c2.1 0 3.7-1.6 3.7-3.7v-13c0-1.9-1.6-3.7-3.5-3.7zm193.7-68.1h-52.3c-1.9 0-3.7 1.6-3.7 3.7v81.3c0 1.9 1.6 3.7 3.7 3.7h52.2c2.1 0 3.7-1.6 3.7-3.7V265c0-2.1-1.6-3.7-3.7-3.7H344v-13.6h35.5c2.1 0 3.7-1.6 3.7-3.7v-13.1c0-2.1-1.6-3.7-3.7-3.7H344v-13.7h35.5c2.1 0 3.7-1.6 3.7-3.7v-13c-.1-1.9-1.7-3.7-3.7-3.7zM512 93.4v326c-.1 51.2-42.1 92.7-93.4 92.6h-326C41.4 511.9-.1 469.8 0 418.6v-326C.1 41.4 42.2-.1 93.4 0h326c51.2.1 92.7 42.1 92.6 93.4m-70.4 140.1c0-83.4-83.7-151.3-186.4-151.3S68.8 150.1 68.8 233.5c0 74.7 66.3 137.4 155.9 149.3 21.8 4.7 19.3 12.7 14.4 42.1-.8 4.7-3.8 18.4 16.1 10.1s107.3-63.2 146.5-108.2c27-29.7 39.9-59.8 39.9-93.1z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/linkedin-in.svg������������������0000664�0000000�0000000�00000001115�14753064456�0030331�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3M447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/linkedin.svg���������������������0000664�0000000�0000000�00000001304�14753064456�0027725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3M135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5m282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/linode.svg�����������������������0000664�0000000�0000000�00000001474�14753064456�0027412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m366.036 186.867-59.5 36.871-.838 36.871-29.329-19.273-39.384 24.3c2.238 55.211 2.483 59.271 2.51 59.5l-97.2 65.359-15.081-104.747 108.1-62.01-40.224-25.977-75.417 38.547-20.95-143.293 129.048-49.441L136.432 0 10.737 39.385 38.39 174.3l41.9 32.681-31.845 15.081 20.949 101.395 29.329 27.653-20.949 12.569 16.76 78.769L160.733 512c-10.8-74.842-11.658-78.641-11.725-78.773l77.925-55.3c16.759-12.57 15.083-10.894 15.083-10.894l.838 24.3 33.519 28.491-.838-77.093 46.927-33.519 26.815-18.435-2.514 36.033 25.139 17.6 6.7-74.579 58.657-43.575Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/linux.svg������������������������0000664�0000000�0000000�00000007266�14753064456�0027304�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M220.8 123.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5.2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4.2-.8.7-.6 1.1.3 1.3 2.3 1.1 3.4 1.7m-21.9 1.7c1.2 0 2-1.2 3-1.7 1.1-.6 3.1-.4 3.5-1.6.2-.4-.2-.9-.6-1.1-1.6-.9-3.8-.6-5.5.1-1.3.6-3.4 1.5-3.2 2.9.1 1 1.8 1.5 2.8 1.4M420 403.8c-3.6-4-5.3-11.6-7.2-19.7-1.8-8.1-3.9-16.8-10.5-22.4-1.3-1.1-2.6-2.1-4-2.9-1.3-.8-2.7-1.5-4.1-2 9.2-27.3 5.6-54.5-3.7-79.1-11.4-30.1-31.3-56.4-46.5-74.4-17.1-21.5-33.7-41.9-33.4-72C311.1 85.4 315.7.1 234.8 0 132.4-.2 158 103.4 156.9 135.2c-1.7 23.4-6.4 41.8-22.5 64.7-18.9 22.5-45.5 58.8-58.1 96.7-6 17.9-8.8 36.1-6.2 53.3-6.5 5.8-11.4 14.7-16.6 20.2-4.2 4.3-10.3 5.9-17 8.3s-14 6-18.5 14.5c-2.1 3.9-2.8 8.1-2.8 12.4 0 3.9.6 7.9 1.2 11.8 1.2 8.1 2.5 15.7.8 20.8-5.2 14.4-5.9 24.4-2.2 31.7 3.8 7.3 11.4 10.5 20.1 12.3 17.3 3.6 40.8 2.7 59.3 12.5 19.8 10.4 39.9 14.1 55.9 10.4 11.6-2.6 21.1-9.6 25.9-20.2 12.5-.1 26.3-5.4 48.3-6.6 14.9-1.2 33.6 5.3 55.1 4.1.6 2.3 1.4 4.6 2.5 6.7v.1c8.3 16.7 23.8 24.3 40.3 23 16.6-1.3 34.1-11 48.3-27.9 13.6-16.4 36-23.2 50.9-32.2 7.4-4.5 13.4-10.1 13.9-18.3.4-8.2-4.4-17.3-15.5-29.7M223.7 87.3c9.8-22.2 34.2-21.8 44-.4 6.5 14.2 3.6 30.9-4.3 40.4-1.6-.8-5.9-2.6-12.6-4.9 1.1-1.2 3.1-2.7 3.9-4.6 4.8-11.8-.2-27-9.1-27.3-7.3-.5-13.9 10.8-11.8 23-4.1-2-9.4-3.5-13-4.4-1-6.9-.3-14.6 2.9-21.8M183 75.8c10.1 0 20.8 14.2 19.1 33.5-3.5 1-7.1 2.5-10.2 4.6 1.2-8.9-3.3-20.1-9.6-19.6-8.4.7-9.8 21.2-1.8 28.1 1 .8 1.9-.2-5.9 5.5-15.6-14.6-10.5-52.1 8.4-52.1m-13.6 60.7c6.2-4.6 13.6-10 14.1-10.5 4.7-4.4 13.5-14.2 27.9-14.2 7.1 0 15.6 2.3 25.9 8.9 6.3 4.1 11.3 4.4 22.6 9.3 8.4 3.5 13.7 9.7 10.5 18.2-2.6 7.1-11 14.4-22.7 18.1-11.1 3.6-19.8 16-38.2 14.9-3.9-.2-7-1-9.6-2.1-8-3.5-12.2-10.4-20-15-8.6-4.8-13.2-10.4-14.7-15.3q-2.1-7.35 4.2-12.3m3.3 334c-2.7 35.1-43.9 34.4-75.3 18-29.9-15.8-68.6-6.5-76.5-21.9-2.4-4.7-2.4-12.7 2.6-26.4v-.2c2.4-7.6.6-16-.6-23.9-1.2-7.8-1.8-15 .9-20 3.5-6.7 8.5-9.1 14.8-11.3 10.3-3.7 11.8-3.4 19.6-9.9 5.5-5.7 9.5-12.9 14.3-18 5.1-5.5 10-8.1 17.7-6.9 8.1 1.2 15.1 6.8 21.9 16l19.6 35.6c9.5 19.9 43.1 48.4 41 68.9m-1.4-25.9c-4.1-6.6-9.6-13.6-14.4-19.6 7.1 0 14.2-2.2 16.7-8.9 2.3-6.2 0-14.9-7.4-24.9-13.5-18.2-38.3-32.5-38.3-32.5-13.5-8.4-21.1-18.7-24.6-29.9s-3-23.3-.3-35.2c5.2-22.9 18.6-45.2 27.2-59.2 2.3-1.7.8 3.2-8.7 20.8-8.5 16.1-24.4 53.3-2.6 82.4.6-20.7 5.5-41.8 13.8-61.5 12-27.4 37.3-74.9 39.3-112.7 1.1.8 4.6 3.2 6.2 4.1 4.6 2.7 8.1 6.7 12.6 10.3 12.4 10 28.5 9.2 42.4 1.2 6.2-3.5 11.2-7.5 15.9-9 9.9-3.1 17.8-8.6 22.3-15 7.7 30.4 25.7 74.3 37.2 95.7 6.1 11.4 18.3 35.5 23.6 64.6 3.3-.1 7 .4 10.9 1.4 13.8-35.7-11.7-74.2-23.3-84.9-4.7-4.6-4.9-6.6-2.6-6.5 12.6 11.2 29.2 33.7 35.2 59 2.8 11.6 3.3 23.7.4 35.7 16.4 6.8 35.9 17.9 30.7 34.8-2.2-.1-3.2 0-4.2 0 3.2-10.1-3.9-17.6-22.8-26.1-19.6-8.6-36-8.6-38.3 12.5-12.1 4.2-18.3 14.7-21.4 27.3-2.8 11.2-3.6 24.7-4.4 39.9-.5 7.7-3.6 18-6.8 29-32.1 22.9-76.7 32.9-114.3 7.2m257.4-11.5c-.9 16.8-41.2 19.9-63.2 46.5-13.2 15.7-29.4 24.4-43.6 25.5s-26.5-4.8-33.7-19.3c-4.7-11.1-2.4-23.1 1.1-36.3 3.7-14.2 9.2-28.8 9.9-40.6.8-15.2 1.7-28.5 4.2-38.7 2.6-10.3 6.6-17.2 13.7-21.1.3-.2.7-.3 1-.5.8 13.2 7.3 26.6 18.8 29.5 12.6 3.3 30.7-7.5 38.4-16.3 9-.3 15.7-.9 22.6 5.1 9.9 8.5 7.1 30.3 17.1 41.6 10.6 11.6 14 19.5 13.7 24.6M173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4s5.9-6.3 3.1-6.6-2.6 2.6-6 5.1c-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2s-18.7-4.8-24.9-9.7c-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/lyft.svg�������������������������0000664�0000000�0000000�00000001554�14753064456�0027115�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 81.1h77.8v208.7c0 33.1 15 52.8 27.2 61-12.7 11.1-51.2 20.9-80.2-2.8C7.8 334 0 310.7 0 289zm485.9 173.5v-22h23.8v-76.8h-26.1c-10.1-46.3-51.2-80.7-100.3-80.7-56.6 0-102.7 46-102.7 102.7V357c16 2.3 35.4-.3 51.7-14 17.1-14 24.8-37.2 24.8-59v-6.7h38.8v-76.8h-38.8v-23.3c0-34.6 52.2-34.6 52.2 0v77.1c0 56.6 46 102.7 102.7 102.7v-76.5c-14.5 0-26.1-11.7-26.1-25.9m-294.3-99v113c0 15.4-23.8 15.4-23.8 0v-113H91v132.7c0 23.8 8 54 45 63.9 37 9.8 58.2-10.6 58.2-10.6-2.1 13.4-14.5 23.3-34.9 25.3-15.5 1.6-35.2-3.6-45-7.8v70.3c25.1 7.5 51.5 9.8 77.6 4.7 47.1-9.1 76.8-48.4 76.8-100.8V155.1h-77.1z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/magento.svg����������������������0000664�0000000�0000000�00000000727�14753064456�0027572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M445.7 127.9V384l-63.4 36.5V164.7L223.8 73.1 65.2 164.7l.4 255.9L2.3 384V128.1L224.2 0zM255.6 420.5 224 438.9l-31.8-18.2v-256l-63.3 36.6.1 255.9 94.9 54.9 95.1-54.9v-256l-63.4-36.6z"/></svg>�����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/mailchimp.svg��������������������0000664�0000000�0000000�00000006370�14753064456�0030103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M330.61 243.52a36.2 36.2 0 0 1 9.3 0c1.66-3.83 1.95-10.43.45-17.61-2.23-10.67-5.25-17.14-11.48-16.13s-6.47 8.74-4.24 19.42c1.26 6 3.49 11.14 6 14.32zM277.05 252c4.47 2 7.2 3.26 8.28 2.13 1.89-1.94-3.48-9.39-12.12-13.09a31.44 31.44 0 0 0-30.61 3.68c-3 2.18-5.81 5.22-5.41 7.06.85 3.74 10-2.71 22.6-3.48 7-.44 12.8 1.75 17.26 3.71zm-9 5.13c-9.07 1.42-15 6.53-13.47 10.1.9.34 1.17.81 5.21-.81a37 37 0 0 1 18.72-1.95c2.92.34 4.31.52 4.94-.49 1.46-2.22-5.71-8-15.39-6.85zm54.17 17.1c3.38-6.87-10.9-13.93-14.3-7s10.92 13.88 14.32 6.97zm15.66-20.47c-7.66-.13-7.95 15.8-.26 15.93s7.98-15.81.28-15.96zm-218.79 78.9c-1.32.31-6 1.45-8.47-2.35-5.2-8 11.11-20.38 3-35.77-9.1-17.47-27.82-13.54-35.05-5.54-8.71 9.6-8.72 23.54-5 24.08 4.27.57 4.08-6.47 7.38-11.63a12.83 12.83 0 0 1 17.85-3.72c11.59 7.59 1.37 17.76 2.28 28.62 1.39 16.68 18.42 16.37 21.58 9a2.08 2.08 0 0 0-.2-2.33c.03.89.68-1.3-3.35-.39zm299.72-17.07c-3.35-11.73-2.57-9.22-6.78-20.52 2.45-3.67 15.29-24-3.07-43.25-10.4-10.92-33.9-16.54-41.1-18.54-1.5-11.39 4.65-58.7-21.52-83 20.79-21.55 33.76-45.29 33.73-65.65-.06-39.16-48.15-51-107.42-26.47l-12.55 5.33c-.06-.05-22.71-22.27-23.05-22.57C169.5-18-41.77 216.81 25.78 273.85l14.76 12.51a72.5 72.5 0 0 0-4.1 33.5c3.36 33.4 36 60.42 67.53 60.38 57.73 133.06 267.9 133.28 322.29 3 1.74-4.47 9.11-24.61 9.11-42.38s-10.09-25.27-16.53-25.27zm-316 48.16c-22.82-.61-47.46-21.15-49.91-45.51-6.17-61.31 74.26-75.27 84-12.33 4.54 29.64-4.67 58.49-34.12 57.81zM84.3 249.55C69.14 252.5 55.78 261.09 47.6 273c-4.88-4.07-14-12-15.59-15-13.01-24.85 14.24-73 33.3-100.21C112.42 90.56 186.19 39.68 220.36 48.91c5.55 1.57 23.94 22.89 23.94 22.89s-34.15 18.94-65.8 45.35c-42.66 32.85-74.89 80.59-94.2 132.4M323.18 350.7s-35.74 5.3-69.51-7.07c6.21-20.16 27 6.1 96.4-13.81 15.29-4.38 35.37-13 51-25.35a102.9 102.9 0 0 1 7.12 24.28c3.66-.66 14.25-.52 11.44 18.1-3.29 19.87-11.73 36-25.93 50.84A106.9 106.9 0 0 1 362.55 421a132.5 132.5 0 0 1-20.34 8.58c-53.51 17.48-108.3-1.74-126-43a66.3 66.3 0 0 1-3.55-9.74c-7.53-27.2-1.14-59.83 18.84-80.37 1.23-1.31 2.48-2.85 2.48-4.79a8.45 8.45 0 0 0-1.92-4.54c-7-10.13-31.19-27.4-26.33-60.83 3.5-24 24.49-40.91 44.07-39.91l5 .29c8.48.5 15.89 1.59 22.88 1.88 11.69.5 22.2-1.19 34.64-11.56 4.2-3.5 7.57-6.54 13.26-7.51a17.45 17.45 0 0 1 13.6 2.24c10 6.64 11.4 22.73 11.92 34.49.29 6.72 1.1 23 1.38 27.63.63 10.67 3.43 12.17 9.11 14 3.19 1.05 6.15 1.83 10.51 3.06 13.21 3.71 21 7.48 26 12.31a16.38 16.38 0 0 1 4.74 9.29c1.56 11.37-8.82 25.4-36.31 38.16-46.71 21.68-93.68 14.45-100.48 13.68-20.15-2.71-31.63 23.32-19.55 41.15 22.64 33.41 122.4 20 151.37-21.35.69-1 .12-1.59-.73-1-41.77 28.58-97.06 38.21-128.46 26-4.77-1.85-14.73-6.44-15.94-16.67 43.6 13.49 71 .74 71 .74s2.03-2.79-.56-2.53M171.31 157.5c16.74-19.35 37.36-36.18 55.83-45.63a.73.73 0 0 1 1 1c-1.46 2.66-4.29 8.34-5.19 12.65a.75.75 0 0 0 1.16.79c11.49-7.83 31.48-16.22 49-17.3a.77.77 0 0 1 .52 1.38 41.9 41.9 0 0 0-7.71 7.74.75.75 0 0 0 .59 1.19c12.31.09 29.66 4.4 41 10.74.76.43.22 1.91-.64 1.72-69.55-15.94-123.08 18.53-134.5 26.83a.76.76 0 0 1-1-1.12z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/mandalorian.svg������������������0000664�0000000�0000000�00000013714�14753064456�0030425�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M232.27 511.89c-1-3.26-1.69-15.83-1.39-24.58.55-15.89 1-24.72 1.4-28.76.64-6.2 2.87-20.72 3.28-21.38.6-1 .4-27.87-.24-33.13-.31-2.58-.63-11.9-.69-20.73-.13-16.47-.53-20.12-2.73-24.76-1.1-2.32-1.23-3.84-1-11.43a92 92 0 0 0-.34-12.71c-2-13-3.46-27.7-3.25-33.9s.43-7.15 2.06-9.67c3.05-4.71 6.51-14 8.62-23.27 2.26-9.86 3.88-17.18 4.59-20.74a109.5 109.5 0 0 1 4.42-15.05c2.27-6.25 2.49-15.39.37-15.39-.3 0-1.38 1.22-2.41 2.71s-4.76 4.8-8.29 7.36c-8.37 6.08-11.7 9.39-12.66 12.58s-1 7.23-.16 7.76c.34.21 1.29 2.4 2.11 4.88a28.83 28.83 0 0 1 .72 15.36c-.39 1.77-1 5.47-1.46 8.23s-1 6.46-1.25 8.22a9.85 9.85 0 0 1-1.55 4.26c-1 1-1.14.91-2.05-.53a14.9 14.9 0 0 1-1.44-4.75c-.25-1.74-1.63-7.11-3.08-11.93-3.28-10.9-3.52-16.15-1-21a14.2 14.2 0 0 0 1.67-4.61c0-2.39-2.2-5.32-7.41-9.89-7-6.18-8.63-7.92-10.23-11.3-1.71-3.6-3.06-4.06-4.54-1.54-1.78 3-2.6 9.11-3 22l-.34 12.19 2 2.25c3.21 3.7 12.07 16.45 13.78 19.83 3.41 6.74 4.34 11.69 4.41 23.56s.95 22.75 2 24.71c.36.66.51 1.35.34 1.52s.41 2.09 1.29 4.27a38.1 38.1 0 0 1 2.06 9 91 91 0 0 0 1.71 10.37c2.23 9.56 2.77 14.08 2.39 20.14-.2 3.27-.53 11.07-.73 17.32-1.31 41.76-1.85 58-2 61.21-.12 2-.39 11.51-.6 21.07-.36 16.3-1.3 27.37-2.42 28.65-.64.73-8.07-4.91-12.52-9.49-3.75-3.87-4-4.79-2.83-9.95.7-3 2.26-18.29 3.33-32.62.36-4.78.81-10.5 1-12.71.83-9.37 1.66-20.35 2.61-34.78.56-8.46 1.33-16.44 1.72-17.73s.89-9.89 1.13-19.11l.43-16.77-2.26-4.3c-1.72-3.28-4.87-6.94-13.22-15.34-6-6.07-11.84-12.3-12.91-13.85l-1.95-2.81.75-10.9c1.09-15.71 1.1-48.57 0-59.06l-.89-8.7-3.28-4.52c-5.86-8.08-5.8-7.75-6.22-33.27-.1-6.07-.38-11.5-.63-12.06-.83-1.87-3.05-2.66-8.54-3.05-8.86-.62-11-1.9-23.85-14.55-6.15-6-12.34-12-13.75-13.19-2.81-2.42-2.79-2-.56-9.63l1.35-4.65-1.69-3a32 32 0 0 0-2.59-4.07c-1.33-1.51-5.5-10.89-6-13.49a4.24 4.24 0 0 1 .87-3.9c2.23-2.86 3.4-5.68 4.45-10.73 2.33-11.19 7.74-26.09 10.6-29.22 3.18-3.47 7.7-1 9.41 5 1.34 4.79 1.37 9.79.1 18.55a101 101 0 0 0-1 11.11c0 4 .19 4.69 2.25 7.39 3.33 4.37 7.73 7.41 15.2 10.52a18.7 18.7 0 0 1 4.72 2.85c11.17 10.72 18.62 16.18 22.95 16.85 5.18.8 8 4.54 10 13.39 1.31 5.65 4 11.14 5.46 11.14a9.4 9.4 0 0 0 3.33-1.39c2-1.22 2.25-1.73 2.25-4.18a133 133 0 0 0-2-17.84c-.37-1.66-.78-4.06-.93-5.35s-.61-3.85-1-5.69c-2.55-11.16-3.65-15.46-4.1-16-1.55-2-4.08-10.2-4.93-15.92-1.64-11.11-4-14.23-12.91-17.39A43.2 43.2 0 0 1 165.24 78c-1.15-1-4-3.22-6.35-5.06s-4.41-3.53-4.6-3.76a23 23 0 0 0-2.69-2c-6.24-4.22-8.84-7-11.26-12l-2.44-5-.22-13-.22-13 6.91-6.55c3.95-3.75 8.48-7.35 10.59-8.43 3.31-1.69 4.45-1.89 11.37-2 8.53-.19 10.12 0 11.66 1.56s1.36 6.4-.29 8.5a6.7 6.7 0 0 0-1.34 2.32c0 .58-2.61 4.91-5.42 9a30.4 30.4 0 0 0-2.37 6.82c20.44 13.39 21.55 3.77 14.07 29L194 66.92c3.11-8.66 6.47-17.26 8.61-26.22.29-7.63-12-4.19-15.4-8.68-2.33-5.93 3.13-14.18 6.06-19.2 1.6-2.34 6.62-4.7 8.82-4.15.88.22 4.16-.35 7.37-1.28a45.3 45.3 0 0 1 7.55-1.68 29.6 29.6 0 0 0 6-1.29c3.65-1.11 4.5-1.17 6.35-.4a29.5 29.5 0 0 0 5.82 1.36 18.2 18.2 0 0 1 6 1.91 22.7 22.7 0 0 0 5 2.17c2.51.68 3 .57 7.05-1.67l4.35-2.4L268.32 5c10.44-.4 10.81-.47 15.26-2.68L288.16 0l2.46 1.43c1.76 1 3.14 2.73 4.85 6 2.36 4.51 2.38 4.58 1.37 7.37-.88 2.44-.89 3.3-.1 6.39a36 36 0 0 0 2.1 5.91 13.6 13.6 0 0 1 1.31 4c.31 4.33 0 5.3-2.41 6.92-2.17 1.47-7 7.91-7 9.34a14.8 14.8 0 0 1-1.07 3c-5 11.51-6.76 13.56-14.26 17-9.2 4.2-12.3 5.19-16.21 5.19-3.1 0-4 .25-4.54 1.26a18.3 18.3 0 0 1-4.09 3.71 13.6 13.6 0 0 0-4.38 4.78 5.9 5.9 0 0 1-2.49 2.91 6.9 6.9 0 0 0-2.45 1.71 68 68 0 0 1-7 5.38c-3.33 2.34-6.87 5-7.87 6A7.3 7.3 0 0 1 224 100a5.76 5.76 0 0 0-2.13 1.65c-1.31 1.39-1.49 2.11-1.14 4.6a36.5 36.5 0 0 0 1.42 5.88c1.32 3.8 1.31 7.86 0 10.57s-.89 6.65 1.35 9.59c2 2.63 2.16 4.56.71 8.84a33.5 33.5 0 0 0-1.06 8.91c0 4.88.22 6.28 1.46 8.38s1.82 2.48 3.24 2.32c2-.23 2.3-1.05 4.71-12.12 2.18-10 3.71-11.92 13.76-17.08 2.94-1.51 7.46-4 10-5.44s6.79-3.69 9.37-4.91a40.1 40.1 0 0 0 15.22-11.67c7.11-8.79 10-16.22 12.85-33.3a18.4 18.4 0 0 1 2.86-7.73 20.4 20.4 0 0 0 2.89-7.31c1-5.3 2.85-9.08 5.58-11.51 4.7-4.18 6-1.09 4.59 10.87-.46 3.86-1.1 10.33-1.44 14.38l-.61 7.36 4.45 4.09 4.45 4.09.11 8.42c.06 4.63.47 9.53.92 10.89l.82 2.47-6.43 6.28c-8.54 8.33-12.88 13.93-16.76 21.61-1.77 3.49-3.74 7.11-4.38 8-2.18 3.11-6.46 13-8.76 20.26l-2.29 7.22-7 6.49c-3.83 3.57-8 7.25-9.17 8.17-3.05 2.32-4.26 5.15-4.26 10a14.6 14.6 0 0 0 1.59 7.26 42 42 0 0 1 2.09 4.83 9.3 9.3 0 0 0 1.57 2.89c1.4 1.59 1.92 16.12.83 23.22-.68 4.48-3.63 12-4.7 12-1.79 0-4.06 9.27-5.07 20.74-.18 2-.62 5.94-1 8.7s-1 10-1.35 16.05c-.77 12.22-.19 18.77 2 23.15 3.41 6.69.52 12.69-11 22.84l-4 3.49.07 5.19a40.8 40.8 0 0 0 1.14 8.87c4.61 16 4.73 16.92 4.38 37.13-.46 26.4-.26 40.27.63 44.15a61 61 0 0 1 1.08 7c.17 2 .66 5.33 1.08 7.36.47 2.26.78 11 .79 22.74v19.06l-1.81 2.63c-2.71 3.91-15.11 13.54-15.49 12.29zm29.53-45.11c-.18-.3-.33-6.87-.33-14.59 0-14.06-.89-27.54-2.26-34.45-.4-2-.81-9.7-.9-17.06-.15-11.93-1.4-24.37-2.64-26.38-.66-1.07-3-17.66-3-21.3 0-4.23 1-6 5.28-9.13s4.86-3.14 5.48-.72c.28 1.1 1.45 5.62 2.6 10 3.93 15.12 4.14 16.27 4.05 21.74-.1 5.78-.13 6.13-1.74 17.73-1 7.07-1.17 12.39-1 28.43.17 19.4-.64 35.73-2 41.27-.71 2.78-2.8 5.48-3.43 4.43zm-71-37.58a101 101 0 0 1-1.73-10.79 101 101 0 0 0-1.73-10.79 37.5 37.5 0 0 1-1-6.49c-.31-3.19-.91-7.46-1.33-9.48-1-4.79-3.35-19.35-3.42-21.07 0-.74-.34-4.05-.7-7.36-.67-6.21-.84-27.67-.22-28.29 1-1 6.63 2.76 11.33 7.43l5.28 5.25-.45 6.47c-.25 3.56-.6 10.23-.78 14.83s-.49 9.87-.67 11.71-.61 9.36-.94 16.72c-.79 17.41-1.94 31.29-2.65 32a.62.62 0 0 1-1-.14zm-87.18-266.59c21.07 12.79 17.84 14.15 28.49 17.66 13 4.29 18.87 7.13 23.15 16.87C111.6 233.28 86.25 255 78.55 268c-31 52-6 101.59 62.75 87.21-14.18 29.23-78 28.63-98.68-4.9-24.68-39.95-22.09-118.3 61-187.66zm210.79 179c56.66 6.88 82.32-37.74 46.54-89.23 0 0-26.87-29.34-64.28-68 3-15.45 9.49-32.12 30.57-53.82 89.2 63.51 92 141.61 92.46 149.36 4.3 70.64-78.7 91.18-105.29 61.71z"/></svg>����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/markdown.svg���������������������0000664�0000000�0000000�00000001070�14753064456�0027752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M593.8 59.1H46.2C20.7 59.1 0 79.8 0 105.2v301.5c0 25.5 20.7 46.2 46.2 46.2h547.7c25.5 0 46.2-20.7 46.1-46.1V105.2c0-25.4-20.7-46.1-46.2-46.1M338.5 360.6H277v-120l-61.5 76.9-61.5-76.9v120H92.3V151.4h61.5l61.5 76.9 61.5-76.9h61.5v209.2zm135.3 3.1L381.5 256H443V151.4h61.5V256H566z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/mastodon.svg���������������������0000664�0000000�0000000�00000001606�14753064456�0027761�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M433 179.11c0-97.2-63.71-125.7-63.71-125.7-62.52-28.7-228.56-28.4-290.48 0 0 0-63.72 28.5-63.72 125.7 0 115.7-6.6 259.4 105.63 289.1 40.51 10.7 75.32 13 103.33 11.4 50.81-2.8 79.32-18.1 79.32-18.1l-1.7-36.9s-36.31 11.4-77.12 10.1c-40.41-1.4-83-4.4-89.63-54a102.5 102.5 0 0 1-.9-13.9c85.63 20.9 158.65 9.1 178.75 6.7 56.12-6.7 105-41.3 111.23-72.9 9.8-49.8 9-121.5 9-121.5m-75.12 125.2h-46.63v-114.2c0-49.7-64-51.6-64 6.9v62.5h-46.33V197c0-58.5-64-56.6-64-6.9v114.2H90.19c0-122.1-5.2-147.9 18.41-175 25.9-28.9 79.82-30.8 103.83 6.1l11.6 19.5 11.6-19.5c24.11-37.1 78.12-34.8 103.83-6.1 23.71 27.3 18.4 53 18.4 175z"/></svg>��������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/maxcdn.svg�����������������������0000664�0000000�0000000�00000000762�14753064456�0027411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M461.1 442.7h-97.4L415.6 200c2.3-10.2.9-19.5-4.4-25.7-5-6.1-13.7-9.6-24.2-9.6h-49.3l-59.5 278h-97.4l59.5-278h-83.4l-59.5 278H0l59.5-278-44.6-95.4H387c39.4 0 75.3 16.3 98.3 44.9 23.3 28.6 31.8 67.4 23.6 105.9z"/></svg>��������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/mdb.svg��������������������������0000664�0000000�0000000�00000001512�14753064456�0026673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M17.37 160.41 7 352h43.91l5.59-79.83L84.43 352h44.71l25.54-77.43 4.79 77.43H205l-12.79-191.59H146.7L106 277.74 63.67 160.41zm281 0h-47.9V352h47.9s95 .8 94.2-95.79c-.78-94.21-94.18-95.78-94.18-95.78zm-1.2 146.46V204.78s46 4.27 46.8 50.57-46.78 51.54-46.78 51.54zm238.29-74.24a56.16 56.16 0 0 0 8-38.31c-5.34-35.76-55.08-34.32-55.08-34.32h-51.9v191.58H482s87 4.79 87-63.85c0-43.14-33.52-55.08-33.52-55.08zm-51.9-31.94s13.57-1.59 16 9.59c1.43 6.66-4 12-4 12h-12v-21.57zm-.1 109.46.1-24.92V267h.08s41.58-4.73 41.19 22.43c-.33 25.65-41.35 20.74-41.35 20.74z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/medapps.svg����������������������0000664�0000000�0000000�00000002105�14753064456�0027561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M118.3 238.4c3.5-12.5 6.9-33.6 13.2-33.6 8.3 1.8 9.6 23.4 18.6 36.6 4.6-23.5 5.3-85.1 14.1-86.7 9-.7 19.7 66.5 22 77.5 9.9 4.1 48.9 6.6 48.9 6.6 1.9 7.3-24 7.6-40 7.8-4.6 14.8-5.4 27.7-11.4 28-4.7.2-8.2-28.8-17.5-49.6l-9.4 65.5c-4.4 13-15.5-22.5-21.9-39.3-3.3-.1-62.4-1.6-47.6-7.8zM228 448c21.2 0 21.2-32 0-32H92c-21.2 0-21.2 32 0 32zm-24 64c21.2 0 21.2-32 0-32h-88c-21.2 0-21.2 32 0 32zm34.2-141.5c3.2-18.9 5.2-36.4 11.9-48.8 7.9-14.7 16.1-28.1 24-41 24.6-40.4 45.9-75.2 45.9-125.5C320 69.6 248.2 0 160 0S0 69.6 0 155.2c0 50.2 21.3 85.1 45.9 125.5 7.9 12.9 16 26.3 24 41 6.7 12.5 8.7 29.8 11.9 48.9 3.5 21 36.1 15.7 32.6-5.1-3.6-21.7-5.6-40.7-15.3-58.6C66.5 246.5 33 211.3 33 155.2 33 87.3 90 32 160 32s127 55.3 127 123.2c0 56.1-33.5 91.3-66.1 151.6-9.7 18-11.7 37.4-15.3 58.6-3.4 20.6 29 26.4 32.6 5.1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/medium.svg�����������������������0000664�0000000�0000000�00000001274�14753064456�0027416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M180.5 74.262C80.813 74.262 0 155.633 0 256s80.819 181.738 180.5 181.738S361 356.373 361 256 280.191 74.262 180.5 74.262m288.25 10.646c-49.845 0-90.245 76.619-90.245 171.095s40.406 171.1 90.251 171.1 90.251-76.619 90.251-171.1H559c0-94.503-40.4-171.095-90.248-171.095Zm139.506 17.821c-17.526 0-31.735 68.628-31.735 153.274s14.2 153.274 31.735 153.274S640 340.631 640 256c0-84.649-14.215-153.271-31.742-153.271Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/medrt.svg������������������������0000664�0000000�0000000�00000002011�14753064456�0027237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 544 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M113.7 256c0 121.8 83.9 222.8 193.5 241.1-18.7 4.5-38.2 6.9-58.2 6.9C111.4 504 0 393 0 256S111.4 8 248.9 8c20.1 0 39.6 2.4 58.2 6.9C197.5 33.2 113.7 134.2 113.7 256m297.4 100.3c-77.7 55.4-179.6 47.5-240.4-14.6 5.5 14.1 12.7 27.7 21.7 40.5 61.6 88.2 182.4 109.3 269.7 47s108.1-184.3 46.5-272.6c-9-12.9-19.3-24.3-30.5-34.2 37.4 78.8 10.7 178.5-67 233.9m-218.8-244c-1.4 1-2.7 2.1-4 3.1 64.3-17.8 135.9 4 178.9 60.5 35.7 47 42.9 106.6 24.4 158 56.7-56.2 67.6-142.1 22.3-201.8-50-65.5-149.1-74.4-221.6-19.8M296 224c-4.4 0-8-3.6-8-8v-40c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v40c0 4.4-3.6 8-8 8h-40c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h40c4.4 0 8 3.6 8 8v40c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-40c0-4.4 3.6-8 8-8h40c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/meetup.svg�����������������������0000664�0000000�0000000�00000004412�14753064456�0027432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M99 414.3c1.1 5.7-2.3 11.1-8 12.3-5.4 1.1-10.9-2.3-12-8-1.1-5.4 2.3-11.1 7.7-12.3s11.1 2.3 12.3 8m143.1 71.4c-6.3 4.6-8 13.4-3.7 20 4.6 6.6 13.4 8.3 20 3.7 6.3-4.6 8-13.4 3.4-20-4.2-6.5-13.1-8.3-19.7-3.7m-86-462.3c6.3-1.4 10.3-7.7 8.9-14-1.1-6.6-7.4-10.6-13.7-9.1-6.3 1.4-10.3 7.7-9.1 14 1.4 6.6 7.6 10.6 13.9 9.1M34.4 226.3c-10-6.9-23.7-4.3-30.6 6-6.9 10-4.3 24 5.7 30.9 10 7.1 23.7 4.6 30.6-5.7 6.9-10.4 4.3-24.1-5.7-31.2m272-170.9c10.6-6.3 13.7-20 7.7-30.3-6.3-10.6-19.7-14-30-7.7s-13.7 20-7.4 30.6c6 10.3 19.4 13.7 29.7 7.4m-191.1 58c7.7-5.4 9.4-16 4.3-23.7s-15.7-9.4-23.1-4.3c-7.7 5.4-9.4 16-4.3 23.7 5.1 7.8 15.6 9.5 23.1 4.3m372.3 156c-7.4 1.7-12.3 9.1-10.6 16.9 1.4 7.4 8.9 12.3 16.3 10.6 7.4-1.4 12.3-8.9 10.6-16.6-1.5-7.4-8.9-12.3-16.3-10.9m39.7-56.8c-1.1-5.7-6.6-9.1-12-8-5.7 1.1-9.1 6.9-8 12.6 1.1 5.4 6.6 9.1 12.3 8 5.4-1.5 9.1-6.9 7.7-12.6M447 138.9c-8.6 6-10.6 17.7-4.9 26.3s17.4 10.6 26 4.9c8.3-6 10.3-17.7 4.6-26.3-5.7-8.7-17.4-10.9-25.7-4.9m-6.3 139.4c26.3 43.1 15.1 100-26.3 129.1-17.4 12.3-37.1 17.7-56.9 17.1-12 47.1-69.4 64.6-105.1 32.6-1.1.9-2.6 1.7-3.7 2.9-39.1 27.1-92.3 17.4-119.4-22.3-9.7-14.3-14.6-30.6-15.1-46.9-65.4-10.9-90-94-41.1-139.7-28.3-46.9.6-107.4 53.4-114.9C151.6 70 234.1 38.6 290.1 82c67.4-22.3 136.3 29.4 130.9 101.1 41.1 12.6 52.8 66.9 19.7 95.2m-70 74.3c-3.1-20.6-40.9-4.6-43.1-27.1-3.1-32 43.7-101.1 40-128-3.4-24-19.4-29.1-33.4-29.4-13.4-.3-16.9 2-21.4 4.6-2.9 1.7-6.6 4.9-11.7-.3-6.3-6-11.1-11.7-19.4-12.9-12.3-2-17.7 2-26.6 9.7-3.4 2.9-12 12.9-20 9.1-3.4-1.7-15.4-7.7-24-11.4-16.3-7.1-40 4.6-48.6 20-12.9 22.9-38 113.1-41.7 125.1-8.6 26.6 10.9 48.6 36.9 47.1 11.1-.6 18.3-4.6 25.4-17.4 4-7.4 41.7-107.7 44.6-112.6 2-3.4 8.9-8 14.6-5.1 5.7 3.1 6.9 9.4 6 15.1-1.1 9.7-28 70.9-28.9 77.7-3.4 22.9 26.9 26.6 38.6 4 3.7-7.1 45.7-92.6 49.4-98.3 4.3-6.3 7.4-8.3 11.7-8 3.1 0 8.3.9 7.1 10.9-1.4 9.4-35.1 72.3-38.9 87.7-4.6 20.6 6.6 41.4 24.9 50.6 11.4 5.7 62.5 15.7 58.5-11.1m5.7 92.3c-10.3 7.4-12.9 22-5.7 32.6 7.1 10.6 21.4 13.1 32 6 10.6-7.4 13.1-22 6-32.6-7.4-10.6-21.7-13.5-32.3-6"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/megaport.svg���������������������0000664�0000000�0000000�00000001176�14753064456�0027755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M214.5 209.6v66.2l33.5 33.5 33.3-33.3v-66.4l-33.4-33.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8m145.1 414.4L367 441.6l-26-19.2v-65.5l-33.4-33.4-33.4 33.4v65.5L248 441.6l-26.1-19.2v-65.5l-33.4-33.4-33.5 33.4v65.5l-26.1 19.2-26.1-19.2v-87l59.5-59.5V188l59.5-59.5V52.9l26.1-19.2L274 52.9v75.6l59.5 59.5v87.6l59.7 59.7v87.1z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/mendeley.svg���������������������0000664�0000000�0000000�00000001660�14753064456�0027737�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M624.6 325.2c-12.3-12.4-29.7-19.2-48.4-17.2-43.3-1-49.7-34.9-37.5-98.8 22.8-57.5-14.9-131.5-87.4-130.8-77.4.7-81.7 82-130.9 82-48.1 0-54-81.3-130.9-82-72.9-.8-110.1 73.3-87.4 130.8 12.2 63.9 5.8 97.8-37.5 98.8-21.2-2.3-37 6.5-53 22.5-19.9 19.7-19.3 94.8 42.6 102.6 47.1 5.9 81.6-42.9 61.2-87.8-47.3-103.7 185.9-106.1 146.5-8.2-.1.1-.2.2-.3.4-26.8 42.8 6.8 97.4 58.8 95.2 52.1 2.1 85.4-52.6 58.8-95.2-.1-.2-.2-.3-.3-.4-39.4-97.9 193.8-95.5 146.5 8.2-4.6 10-6.7 21.3-5.7 33 4.9 53.4 68.7 74.1 104.9 35.2 17.8-14.8 23.1-65.6 0-88.3m-303.9-19.1h-.6c-43.4 0-62.8-37.5-62.8-62.8 0-34.7 28.2-62.8 62.8-62.8h.6c34.7 0 62.8 28.1 62.8 62.8 0 25-19.2 62.8-62.8 62.8"/></svg>��������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/meta.svg�������������������������0000664�0000000�0000000�00000001643�14753064456�0027064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M640 317.9c0 91.3-39.4 148.5-110.3 148.5-62.6 0-95.8-34.6-156.9-136.6l-31.4-52.6c-8.3-12.5-14.5-24.2-21.2-35-20.1 33.8-47.1 83-47.1 83-67 116.6-104.6 141.2-156.9 141.2C43.42 466.4 0 409.1 0 320.5c0-143 79.78-278.1 183.9-278.1 50.2 0 93.8 24.68 144.8 89.5 37.1-50.1 78.1-89.5 130.6-89.5 99.1 0 180.7 125.7 180.7 275.5M287.4 192.2c-42.9-62.1-70.9-80.5-104.4-80.5-61.9 0-113.78 106.1-113.78 210 0 48.5 18.48 75.7 49.58 75.7 30.2 0 49-19 103.2-103.8 0 0 24.7-39.1 65.4-101.4m243.8 205.2c32.2 0 46.9-27.5 46.9-74.9 0-124.2-54.3-225.42-123.2-225.42-33.2 0-61.1 25.92-94.9 78.02 9.4 13.8 19.1 29 29.3 45.4l37.5 62.4c58.7 94.1 73.5 114.5 104.4 114.5"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/microblog.svg��������������������0000664�0000000�0000000�00000001504�14753064456�0030107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M399.36 362.23c29.49-34.69 47.1-78.34 47.1-125.79C446.46 123.49 346.86 32 224 32S1.54 123.49 1.54 236.44 101.14 440.87 224 440.87a239.3 239.3 0 0 0 79.44-13.44 7.18 7.18 0 0 1 8.12 2.56c18.58 25.09 47.61 42.74 79.89 49.92a4.42 4.42 0 0 0 5.22-3.43 4.37 4.37 0 0 0-.85-3.62 87 87 0 0 1 3.69-110.69ZM329.52 212.4l-57.3 43.49L293 324.75a6.5 6.5 0 0 1-9.94 7.22L224 290.92 164.94 332a6.51 6.51 0 0 1-9.95-7.22l20.79-68.86-57.3-43.49a6.5 6.5 0 0 1 3.8-11.68l71.88-1.51 23.66-67.92a6.5 6.5 0 0 1 12.28 0l23.66 67.92 71.88 1.51a6.5 6.5 0 0 1 3.88 11.68Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/microsoft.svg��������������������0000664�0000000�0000000�00000000573�14753064456�0030144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 32h214.6v214.6H0zm233.4 0H448v214.6H233.4zM0 265.4h214.6V480H0zm233.4 0H448V480H233.4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/mintbit.svg����������������������0000664�0000000�0000000�00000000755�14753064456�0027607�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M73.2 512v-73.1h292.5v-73.2h73.2V219.4H512V0H292.6v73.1H146.3v73.2H73.2v292.6H0V512zm73.1-219.4h73.2v73.1h-73.2zm73.2-73.1h73.1v73.1h-73.2v-73.2zm73.1 0v-73.2h73.2v73.1h-73.2zm73.1-146.4h73.2v73.2h-73.2z"/></svg>�������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/mix.svg��������������������������0000664�0000000�0000000�00000000660�14753064456�0026731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64v348.9c0 56.2 88 58.1 88 0V174.3c7.9-52.9 88-50.4 88 6.5v175.3c0 57.9 96 58 96 0V240c5.3-54.7 88-52.5 88 4.3v23.8c0 59.9 88 56.6 88 0V64z"/></svg>��������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/mixcloud.svg���������������������0000664�0000000�0000000�00000001227�14753064456�0027760�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M212.98 346.566h-33.191V195.114l6.184-21.644h-10.711l-38.135 173.096h-61.02L37.732 173.47H27.276l5.915 21.644v151.452H0V165h65.65l36.598 173.096h8.499L147.329 165h65.651zm331.479-62.977-86.025 62.066v-38.121l72.895-51.758-72.895-51.759v-38.121l86.025 62.335h9.262L640 165.896v38.121l-73.134 51.759L640 307.549v38.106l-86.279-62.066zm-114.302-11.278H248.113v-33.056h182.044z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/mixer.svg������������������������0000664�0000000�0000000�00000001302�14753064456�0027252�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M114.57 76.07a45.71 45.71 0 0 0-67.51-6.41c-17.58 16.18-19 43.52-4.75 62.77l91.78 123-92.33 124.15c-14.23 19.25-13.11 46.59 4.74 62.77a45.71 45.71 0 0 0 67.5-6.41L242.89 262.7a12.14 12.14 0 0 0 0-14.23Zm355.67 303.51-92.33-124.13 91.78-123c14.22-19.25 12.83-46.59-4.75-62.77a45.71 45.71 0 0 0-67.51 6.41l-128 172.12a12.14 12.14 0 0 0 0 14.23L398 435.94a45.71 45.71 0 0 0 67.51 6.41c17.84-16.18 18.96-43.52 4.73-62.77"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/mizuni.svg�����������������������0000664�0000000�0000000�00000001166�14753064456�0027451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8m-80 351.9c-31.4 10.6-58.8 27.3-80 48.2V136c0-22.1 17.9-40 40-40s40 17.9 40 40zm120-9.9c-12.9-2-26.2-3.1-39.8-3.1-13.8 0-27.2 1.1-40.2 3.1V136c0-22.1 17.9-40 40-40s40 17.9 40 40zm120 57.7c-21.2-20.8-48.6-37.4-80-48V136c0-22.1 17.9-40 40-40s40 17.9 40 40z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/modx.svg�������������������������0000664�0000000�0000000�00000000646�14753064456�0027107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m356 241.8 36.7 23.7V480l-133-83.8zM440 75H226.3l-23 37.8 153.5 96.5zm-89 142.8L55.2 32v214.5l46 29zM97 294.2 8 437h213.7l125-200.5z"/></svg>������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/monero.svg�����������������������0000664�0000000�0000000�00000000761�14753064456�0027435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M352 384h108.4C417 455.9 338.1 504 248 504S79 455.9 35.6 384H144V256.2L248 361l104-105zM88 336V128l159.4 159.4L408 128v208h74.8c8.5-25.1 13.2-52 13.2-80C496 119 385 8 248 8S0 119 0 256c0 28 4.6 54.9 13.2 80z"/></svg>���������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/napster.svg����������������������0000664�0000000�0000000�00000002232�14753064456�0027605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M298.3 373.6c-14.2 13.6-31.3 24.1-50.4 30.5-19-6.4-36.2-16.9-50.3-30.5zm44-199.6c20-16.9 43.6-29.2 69.6-36.2V299c0 219.4-328 217.6-328 .3V137.7c25.9 6.9 49.6 19.6 69.5 36.4 56.8-40 132.5-39.9 188.9-.1m-208.8-58.5c64.4-60 164.3-60.1 228.9-.2-7.1 3.5-13.9 7.3-20.6 11.5-58.7-30.5-129.2-30.4-187.9.1-6.3-4-13.9-8.2-20.4-11.4M43.8 93.2v69.3c-58.4 36.5-58.4 121.1.1 158.3 26.4 245.1 381.7 240.3 407.6 1.5l.3-1.7c58.7-36.3 58.9-121.7.2-158.2V93.2c-17.3.5-34 3-50.1 7.4-82-91.5-225.5-91.5-307.5.1-16.3-4.4-33.1-7-50.6-7.5M259.2 352s36-.3 61.3-1.5c10.2-.5 21.1-4 25.5-6.5 26.3-15.1 25.4-39.2 26.2-47.4-79.5-.6-99.9-3.9-113 55.4m-135.5-55.3c.8 8.2-.1 32.3 26.2 47.4 4.4 2.5 15.2 6 25.5 6.5 25.3 1.1 61.3 1.5 61.3 1.5-13.2-59.4-33.7-56.1-113-55.4m169.1 123.4c-3.2-5.3-6.9-7.3-6.9-7.3-24.8 7.3-52.2 6.9-75.9 0 0 0-2.9 1.5-6.4 6.6-2.8 4.1-3.7 9.6-3.7 9.6 29.1 17.6 67.1 17.6 96.2 0-.1-.1-.3-4-3.3-8.9"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/neos.svg�������������������������0000664�0000000�0000000�00000001202�14753064456�0027071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M415.44 512h-95.11L212.12 357.46v91.1L125.69 512H28V29.82L68.47 0h108.05l123.74 176.13V63.45L386.69 0h97.69v461.5zM38.77 35.27V496l72-52.88V194l215.5 307.64h84.79l52.35-38.17h-78.27L69 13zm82.54 466.61 80-58.78v-101l-79.76-114.4v220.94L49 501.89h72.34zM80.63 10.77l310.6 442.57h82.37V10.77h-79.75v317.56L170.91 10.77zM311 191.65l72 102.81V15.93l-72 53z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/nfc-directional.svg��������������0000664�0000000�0000000�00000007172�14753064456�0031202�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M211.8 488.6c1.6 2.5 2.1 5.6 1.4 8.5-.6 2.9-2.4 5.5-4.9 7.1-2.6 1.6-5.6 2.1-8.6 1.5-61.4-13.9-115.6-49.9-152.17-101.2C10.97 353.2-5.395 290.3 1.57 227.7 8.536 165 38.34 107.2 85.29 65.21 132.2 23.2 193-.013 256 0c1.5 0 2.1.293 4.3.863 1.4.569 1.8 1.404 3.7 2.456 1.1 1.052 1.9 2.3 2.5 3.674.5 1.374.8 2.846.8 4.327V112.3l24.5-25.91c1-1.08 2.2-1.95 3.6-2.55 1.3-.61 2.8-.94 4.3-.98 1.5-.05 2.9.2 4.3.73s2.7 1.33 3.8 2.35c1 1.02 1.9 2.24 2.5 3.6.6 1.35 1 2.81 1 4.3 0 1.48-.2 2.96-.7 4.34-.6 1.39-1.4 2.62-2.4 3.72l-44 46.6c-1.1 1.1-2.3 2-3.7 2.6-1.5.6-3 .9-5.4.9-.6 0-2.2-.3-3.6-.9s-2.7-1.5-3.7-2.6l-44.1-46.6c-2-2.16-3.1-5.07-3-8.06 0-3 1.3-6.74 3.5-7.9 2.2-2.06 5.1-3.17 8.1-3.08 3 .08 5.8 1.35 7.9 3.53l24.5 26.01V22.89c-56.4 2.75-109.8 25.84-150.47 64.98C53.58 127 28.49 179.6 23.61 235.8a233.5 233.5 0 0 0 44.07 157.9c32.42 45.5 82.02 77.5 137.02 89.9 2.9.7 5.5 2.5 7.1 5m-40.4-362.5c-.8 1.3-1.9 2.4-3.1 3.2-20.5 13.9-37.2 32.6-48.8 54.5s-17.7 46.3-17.7 71.1 6.1 49.2 17.7 70.2c11.6 22.8 28.3 41.5 48.8 55.4 2.5 1.7 4.2 4.3 4.7 7.3.6 2.9-.9 6-1.7 8.4-1.7 2.5-5.2 4.2-7.3 3.9-2.9 1.4-6 .8-8.4-.9-23.6-16-42.8-37.5-56.14-62.7-13.31-25.1-20.27-53.1-20.27-81.6 0-28.4 6.96-56.5 20.27-81.6 13.34-25.2 32.54-46.7 56.14-62.7 1.2-.8 2.6-1.4 4-1.8q2.25-.45 4.5 0c1.4.2 2.8.8 4.1 1.6s2.3 1.9 3.2 3.1c.8 1.2 1.4 2.6 1.7 4.1s.3 3 0 4.4c-.3 1.5-.8 2.9-1.7 4.1m169.5 257.4c.8-1.2 1.9-2.3 2.2-3.1v-.1c21.3-14 38-32.7 49.6-54.6 11.5-21.8 17.5-46.2 17.5-70.9s-6-49.1-17.5-71c-11.6-22.7-28.3-40.5-49.6-54.5-.3-.8-1.4-1.9-2.2-3.1-.8-1.3-1.4-2.7-1.6-4.1-1.2-1.5-.3-3 0-4.4.3-1.5.9-2.9 1.7-4.1.9-1.2 1.1-2.3 3.2-3.1 1.2-.8 2.6-1.3 4.1-1.6s2.9-.3 4.4 0 2.8.9 4.1 1.8c23.4 16 42.7 37.5 55.9 62.6 13.3 25.1 19.4 53.1 19.4 81.5 0 28.5-6.1 56.5-19.4 81.6-13.2 25.1-32.5 46.6-55.9 62.6-1.3.9-2.6 1.5-4.1 1.8s-2.9.3-4.4 0-2.9-1.7-4.1-1.6c-2.1-.8-2.3-1.9-3.2-3.1-.8-1.2-1.4-2.6-1.7-4.1-.3-1.4-1.2-2.9 0-4.4.2-1.4.8-2.8 1.6-4.1M312.3 6.307C368.5 19.04 418.7 50.28 455 95.01 485.4 132.6 504.6 178 510.3 226c5.6 48-2.4 96.7-23.2 140.3-20.9 43.6-53.6 80.5-94.5 106.3C351.7 498.3 304.4 512 256 512c-1.5 0-2.9-.3-4.3-.9-1.4-.5-2.6-1.4-3.7-2.4-1.9-1.1-1.9-2.3-2.4-3.7-.6-1.4-.9-2.8-.9-4.3v-99.2l-24.5 26c-2.1 2.2-4.9 2.6-7.9 3.6-3 .1-5.9-1.1-8.1-4-2.2-1.2-3.5-4-3.5-7-.1-3 1-5.9 3-8.1l44.1-46.6c1.3-2.2 5.1-3.4 7.3-3.4 4 0 6.9 1.2 9.1 3.4l44 46.6c2.1 2.2 3.2 5.1 3.1 8.1s-1.4 5.8-3.5 7c-2.2 2.9-5.1 4.1-8.1 4-3-1-5.9-1.4-7.9-3.6l-24.5-25.9v87.5c56.4-2.8 109.8-25.8 150.5-65 40.7-40 65.8-91.7 70.7-147.9 4.8-57.1-10.8-112.3-44.1-157.9-33.3-45.55-82-77.51-137-89.94-1.5-.33-2.8-.94-4.1-1.79-1.2-.86-2.2-1.94-3-3.2-.8-1.25-2.2-2.65-1.6-4.11-.2-1.46-.2-2.96.1-4.41.4-1.44 1-2.81 1.8-4.03.9-1.21 2-2.243 3.2-3.036 1.3-.794 2.7-1.333 4.1-1.586 1.5-.253 3-.216 4.4.109M353.1 256.1c0 31.4-17.5 61.1-49.3 83.5-2.1 1.5-4.8 2.3-7.4 2-2.7-.2-5.2-1.3-7-3.2l-70.1-69.8c-2.2-2.1-4.2-5-3.4-8 0-3 1.2-5.9 3.3-8 2.2-2.1 5-3.3 8-3.3s5.9 1.2 8 3.3l63.1 62.8c20.8-17.1 32.2-37.9 32.2-59.3 0-23.9-14.1-47-39.7-65.1-2.5-1.7-4.1-4.3-4.6-7.3-.5-2.9.1-6 1.9-8.4 1.7-2.5 4.3-4.1 7.3-4.6 2.9-.5 6 .1 8.4 1.9 31.8 22.4 49.3 52.1 49.3 83.5m-136.4 85.4c-3 .5-6-.2-8.5-1.9-31.7-22.4-50.1-52.1-50.1-83.5s18.4-61.1 50.1-83.5c2.2-1.6 4.9-2.3 7.5-2.1 2.7.3 5.1 1.4 7 3.3l70.1 69.8c2.1 2.1 3.3 5 3.3 8s-2 5.8-3.3 8c-2.1 2.1-5 3.3-7.9 3.3-3 0-6.8-1.2-8-3.3l-63.1-62.9c-20.9 17.3-32.2 38-32.2 59.4 0 23 14.1 47 39.7 65 2.4 1.8 4.1 4.4 4.6 7.4.5 2.9-.2 5.9-1.9 8.4-1.7 2.4-4.4 4.1-7.3 4.6"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/nfc-symbol.svg�������������������0000664�0000000�0000000�00000002140�14753064456�0030200�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M392.9 32.43c7.7-1.33 15.7.46 21.2 4.98C498.2 96.14 544 173.7 544 255.1c0 83.1-45.8 160.8-129.9 219.5-4.8 4-11.7 5.9-18.6 5.3-7-.6-13.5-3.6-18.4-8.5L193.7 288.7c-5.6-5.5-8.7-13-9.6-20.9 0-7.8 4-15.3 9.5-20.9 5.6-5.5 13.1-8.7 20.9-8.7 7.9 0 15.4 3.1 20.9 8.6l165.1 164.4c54.6-44.7 84.3-99.2 84.3-156.1 0-61.6-36.9-122.2-103.9-169.34-6.4-4.52-10.8-11.41-12.1-19.14-1.4-7.73.4-15.68 5-22.09 4.5-6.41 11.4-10.76 19.1-12.1m-206 447.17c-7.7 1.3-15.6-.5-22.1-5C81.67 415.9 35.84 338.2 35.84 255.1c0-81.4 45.83-158.96 128.96-217.69 5.7-4.01 12.6-5.88 19.6-5.29 6.9.59 13.4 3.6 18.3 8.51L386.1 223.3c5.6 5.5 8.7 13 8.7 20.9.1 6.9-3 15.3-8.6 20.9-5.5 5.5-13 8.7-20.9 8.7-7.8 0-16.2-3.1-20.9-8.6L179.3 100.7c-54.6 45.2-84.27 99.2-84.27 154.4 0 63.4 36.87 124 103.07 171.1 7.3 4.6 11.6 11.4 13 19.2 1.3 7.7-.5 15.7-5 22.1s-11.4 10.7-19.2 12.1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/nimblr.svg�����������������������0000664�0000000�0000000�00000001372�14753064456�0027420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M246.6 299.29c15.57 0 27.15 11.46 27.15 27s-11.62 27-27.15 27c-15.7 0-27.15-11.57-27.15-27s11.55-27 27.15-27M113 326.25c0-15.61 11.68-27 27.15-27s27.15 11.46 27.15 27-11.47 27-27.15 27c-15.44 0-27.15-11.31-27.15-27M191.76 159C157 159 89.45 178.77 59.25 227L14 0v335.48C14 433.13 93.61 512 191.76 512s177.76-78.95 177.76-176.52S290.13 159 191.76 159m0 308.12c-73.27 0-132.51-58.9-132.51-131.59s59.24-131.59 132.51-131.59 132.51 58.86 132.51 131.54S265 467.07 191.76 467.07z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/node-js.svg����������������������0000664�0000000�0000000�00000002534�14753064456�0027475�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 508c-6.7 0-13.5-1.8-19.4-5.2l-61.7-36.5c-9.2-5.2-4.7-7-1.7-8 12.3-4.3 14.8-5.2 27.9-12.7 1.4-.8 3.2-.5 4.6.4l47.4 28.1c1.7 1 4.1 1 5.7 0l184.7-106.6c1.7-1 2.8-3 2.8-5V149.3c0-2.1-1.1-4-2.9-5.1L226.8 37.7c-1.7-1-4-1-5.7 0L36.6 144.3c-1.8 1-2.9 3-2.9 5.1v213.1c0 2 1.1 4 2.9 4.9l50.6 29.2c27.5 13.7 44.3-2.4 44.3-18.7V167.5c0-3 2.4-5.3 5.4-5.3h23.4c2.9 0 5.4 2.3 5.4 5.3V378c0 36.6-20 57.6-54.7 57.6-10.7 0-19.1 0-42.5-11.6l-48.4-27.9C8.1 389.2.7 376.3.7 362.4V149.3c0-13.8 7.4-26.8 19.4-33.7L204.6 9c11.7-6.6 27.2-6.6 38.8 0l184.7 106.7c12 6.9 19.4 19.8 19.4 33.7v213.1c0 13.8-7.4 26.7-19.4 33.7L243.4 502.8c-5.9 3.4-12.6 5.2-19.4 5.2m149.1-210.1c0-39.9-27-50.5-83.7-58-57.4-7.6-63.2-11.5-63.2-24.9 0-11.1 4.9-25.9 47.4-25.9 37.9 0 51.9 8.2 57.7 33.8.5 2.4 2.7 4.2 5.2 4.2h24c1.5 0 2.9-.6 3.9-1.7s1.5-2.6 1.4-4.1c-3.7-44.1-33-64.6-92.2-64.6-52.7 0-84.1 22.2-84.1 59.5 0 40.4 31.3 51.6 81.8 56.6 60.5 5.9 65.2 14.8 65.2 26.7 0 20.6-16.6 29.4-55.5 29.4-48.9 0-59.6-12.3-63.2-36.6-.4-2.6-2.6-4.5-5.3-4.5h-23.9c-3 0-5.3 2.4-5.3 5.3 0 31.1 16.9 68.2 97.8 68.2 58.4-.1 92-23.2 92-63.4"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/node.svg�������������������������0000664�0000000�0000000�00000006276�14753064456�0027072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M316.3 452c-2.1 0-4.2-.6-6.1-1.6L291 439c-2.9-1.6-1.5-2.2-.5-2.5 3.8-1.3 4.6-1.6 8.7-4 .4-.2 1-.1 1.4.1l14.8 8.8c.5.3 1.3.3 1.8 0L375 408c.5-.3.9-.9.9-1.6v-66.7c0-.7-.3-1.3-.9-1.6l-57.8-33.3c-.5-.3-1.2-.3-1.8 0l-57.8 33.3c-.6.3-.9 1-.9 1.6v66.7c0 .6.4 1.2.9 1.5l15.8 9.1c8.6 4.3 13.9-.8 13.9-5.8v-65.9c0-.9.7-1.7 1.7-1.7h7.3c.9 0 1.7.7 1.7 1.7v65.9c0 11.5-6.2 18-17.1 18-3.3 0-6 0-13.3-3.6l-15.2-8.7c-3.7-2.2-6.1-6.2-6.1-10.5v-66.7c0-4.3 2.3-8.4 6.1-10.5l57.8-33.4c3.7-2.1 8.5-2.1 12.1 0l57.8 33.4c3.7 2.2 6.1 6.2 6.1 10.5v66.7c0 4.3-2.3 8.4-6.1 10.5l-57.8 33.4c-1.7 1.1-3.8 1.7-6 1.7m46.7-65.8c0-12.5-8.4-15.8-26.2-18.2-18-2.4-19.8-3.6-19.8-7.8 0-3.5 1.5-8.1 14.8-8.1 11.9 0 16.3 2.6 18.1 10.6.2.8.8 1.3 1.6 1.3h7.5c.5 0 .9-.2 1.2-.5.3-.4.5-.8.4-1.3-1.2-13.8-10.3-20.2-28.8-20.2-16.5 0-26.3 7-26.3 18.6 0 12.7 9.8 16.1 25.6 17.7 18.9 1.9 20.4 4.6 20.4 8.3 0 6.5-5.2 9.2-17.4 9.2-15.3 0-18.7-3.8-19.8-11.4-.1-.8-.8-1.4-1.7-1.4h-7.5c-.9 0-1.7.7-1.7 1.7 0 9.7 5.3 21.3 30.6 21.3 18.5 0 29-7.2 29-19.8m54.5-50.1c0 6.1-5 11.1-11.1 11.1s-11.1-5-11.1-11.1c0-6.3 5.2-11.1 11.1-11.1 6-.1 11.1 4.8 11.1 11.1m-1.8 0c0-5.2-4.2-9.3-9.4-9.3-5.1 0-9.3 4.1-9.3 9.3s4.2 9.4 9.3 9.4c5.2-.1 9.4-4.3 9.4-9.4m-4.5 6.2h-2.6c-.1-.6-.5-3.8-.5-3.9-.2-.7-.4-1.1-1.3-1.1h-2.2v5h-2.4v-12.5h4.3c1.5 0 4.4 0 4.4 3.3 0 2.3-1.5 2.8-2.4 3.1 1.7.1 1.8 1.2 2.1 2.8.1 1 .3 2.7.6 3.3m-2.8-8.8c0-1.7-1.2-1.7-1.8-1.7h-2v3.5h1.9c1.6 0 1.9-1.1 1.9-1.8M137.3 191c0-2.7-1.4-5.1-3.7-6.4l-61.3-35.3c-1-.6-2.2-.9-3.4-1h-.6c-1.2 0-2.3.4-3.4 1L3.7 184.6C1.4 185.9 0 188.4 0 191l.1 95c0 1.3.7 2.5 1.8 3.2s2.5.7 3.7 0L42 268.3c2.3-1.4 3.7-3.8 3.7-6.4v-44.4c0-2.6 1.4-5.1 3.7-6.4l15.5-8.9c1.2-.7 2.4-1 3.7-1s2.6.3 3.7 1l15.5 8.9c2.3 1.3 3.7 3.8 3.7 6.4v44.4c0 2.6 1.4 5.1 3.7 6.4l36.4 20.9c1.1.7 2.6.7 3.7 0 1.1-.6 1.8-1.9 1.8-3.2zM472.5 87.3v176.4c0 2.6-1.4 5.1-3.7 6.4l-61.3 35.4c-2.3 1.3-5.1 1.3-7.4 0l-61.3-35.4c-2.3-1.3-3.7-3.8-3.7-6.4v-70.8c0-2.6 1.4-5.1 3.7-6.4l61.3-35.4c2.3-1.3 5.1-1.3 7.4 0l15.3 8.8c1.7 1 3.9-.3 3.9-2.2v-94c0-2.8 3-4.6 5.5-3.2l36.5 20.4c2.3 1.2 3.8 3.7 3.8 6.4m-46 128.9c0-.7-.4-1.3-.9-1.6l-21-12.2c-.6-.3-1.3-.3-1.9 0l-21 12.2c-.6.3-.9.9-.9 1.6v24.3c0 .7.4 1.3.9 1.6l21 12.1c.6.3 1.3.3 1.8 0l21-12.1c.6-.3.9-.9.9-1.6v-24.3zm209.8-.7c2.3-1.3 3.7-3.8 3.7-6.4V192c0-2.6-1.4-5.1-3.7-6.4l-60.9-35.4c-2.3-1.3-5.1-1.3-7.4 0l-61.3 35.4c-2.3 1.3-3.7 3.8-3.7 6.4v70.8c0 2.7 1.4 5.1 3.7 6.4l60.9 34.7c2.2 1.3 5 1.3 7.3 0l36.8-20.5c2.5-1.4 2.5-5 0-6.4L550 241.6c-1.2-.7-1.9-1.9-1.9-3.2v-22.2c0-1.3.7-2.5 1.9-3.2l19.2-11.1c1.1-.7 2.6-.7 3.7 0l19.2 11.1c1.1.7 1.9 1.9 1.9 3.2v17.4c0 2.8 3.1 4.6 5.6 3.2zM559 219c-.4.3-.7.7-.7 1.2v13.6c0 .5.3 1 .7 1.2l11.8 6.8c.4.3 1 .3 1.4 0L584 235c.4-.3.7-.7.7-1.2v-13.6c0-.5-.3-1-.7-1.2l-11.8-6.8c-.4-.3-1-.3-1.4 0zm-254.2 43.5v-70.4c0-2.6-1.6-5.1-3.9-6.4l-61.1-35.2c-2.1-1.2-5-1.4-7.4 0l-61.1 35.2c-2.3 1.3-3.9 3.7-3.9 6.4v70.4c0 2.8 1.9 5.2 4 6.4l61.2 35.2c2.4 1.4 5.2 1.3 7.4 0l61-35.2c1.8-1 3.1-2.7 3.6-4.7.1-.5.2-1.1.2-1.7m-74.3-124.9-.8.5h1.1zm76.2 130.2-.4-.7v.9z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/npm.svg��������������������������0000664�0000000�0000000�00000000675�14753064456�0026734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 288h-32v-64h32zm288-128v192H288v32H160v-32H0V160zm-416 32H32v128h64v-96h32v96h32zm160 0H192v160h64v-32h64zm224 0H352v128h64v-96h32v96h32v-96h32v96h32z"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/ns8.svg��������������������������0000664�0000000�0000000�00000004410�14753064456�0026641�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M104.324 269.172h26.067v-26.178h-26.067Zm52.466-26.178-.055-26.178v-.941a39.325 39.325 0 0 0-78.644.941v.166h26.4v-.166a12.98 12.98 0 0 1 25.956 0v26.178Zm52.356 25.846a91.1 91.1 0 0 1-91.1 91.1h-.609a91.1 91.1 0 0 1-91.1-91.1H0v.166A117.33 117.33 0 0 0 117.44 386.28h.775A117.33 117.33 0 0 0 235.49 268.84v-26.012h-26.344Zm-157.233 0a65.362 65.362 0 0 0 130.723 0h-26.344a39.023 39.023 0 0 1-78.035 0v-25.957H51.968v-26.62A65.42 65.42 0 0 1 182.8 217.48v25.293h26.344V217.48a91.761 91.761 0 0 0-183.522 0v25.4h26.291Zm418.4-71.173c13.67 0 24.573 6.642 30.052 18.264l.719 1.549 23.245-11.511-.609-1.439c-8.025-19.26-28.5-31.27-53.407-31.27-23.134 0-43.611 11.4-50.972 28.447-.123 26.876-.158 23.9 0 24.85 4.7 11.013 14.555 19.37 28.668 24.241a102 102 0 0 0 19.813 3.984c5.479.72 10.626 1.384 15.829 3.1 6.364 2.1 10.46 5.257 12.84 9.851v9.851c-3.708 7.527-13.781 12.342-25.791 12.342-14.334 0-25.956-6.918-31.933-19.039l-.72-1.494-23.021 11.507.553 1.439c7.915 19.426 29.609 32.044 55.289 32.044 23.632 0 44.608-11.4 52.3-28.447l.166-25.9-.166-.664c-4.87-11.014-15.219-19.647-28.944-24.241-7.693-2.712-14.335-3.6-20.7-4.427a84 84 0 0 1-14.832-2.878c-6.31-1.937-10.4-5.092-12.619-9.63v-8.412c3.377-7.357 12.896-12.117 24.242-12.117ZM287.568 311.344h26.067v-68.4h-26.067Zm352.266-53.3c-2.933-6.254-8.3-12.01-15.441-16.714A38 38 0 0 0 637.4 226l.166-25.347-.166-.664c-7.362-15.989-26.733-26.729-48.15-26.729S548.461 184 541.1 199.992l-.166 25.347.166.664a39.64 39.64 0 0 0 13.006 15.331c-7.2 4.7-12.508 10.46-15.441 16.714l-.166 28.889.166.72c7.582 15.994 27.893 26.731 50.585 26.731s43.057-10.737 50.584-26.731l.166-28.89Zm-73.22-50.806c3.6-6.31 12.563-10.516 22.58-10.516s19.038 4.206 22.636 10.516v13.725c-3.542 6.2-12.563 10.349-22.636 10.349s-19.094-4.15-22.58-10.349Zm47.319 72.169c-3.764 6.641-13.338 10.9-24.683 10.9-11.125 0-20.976-4.372-24.684-10.9V263.25c3.708-6.309 13.5-10.515 24.684-10.515 11.345 0 20.919 4.15 24.683 10.515ZM376.4 265.962l-59.827-89.713h-29v40.623h26.51v.387l62.539 94.085H402.3V176.249h-25.9Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/nutritionix.svg������������������0000664�0000000�0000000�00000003235�14753064456�0030531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M88 8.1S221.4-.1 209 112.5c0 0 19.1-74.9 103-40.6 0 0-17.7 74-88 56 0 0 14.6-54.6 66.1-56.6 0 0-39.9-10.3-82.1 48.8 0 0-19.8-94.5-93.6-99.7 0 0 75.2 19.4 77.6 107.5 0 .1-106.4 7-104-119.8m312 315.6c0 48.5-9.7 95.3-32 132.3-42.2 30.9-105 48-168 48-62.9 0-125.8-17.1-168-48C9.7 419 0 372.2 0 323.7 0 275.3 17.7 229 40 192c42.2-30.9 97.1-48.6 160-48.6 63 0 117.8 17.6 160 48.6 22.3 37 40 83.3 40 131.7M120 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28m0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28m0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28M192 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28m0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28m0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28M264 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28m0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28m0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28M336 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28m0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28m0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28m24-39.6c-4.8-22.3-7.4-36.9-16-56-38.8-19.9-90.5-32-144-32S94.8 180.1 56 200c-8.8 19.5-11.2 33.9-16 56 42.2-7.9 98.7-14.8 160-14.8s117.8 6.9 160 14.8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/octopus-deploy.svg���������������0000664�0000000�0000000�00000002022�14753064456�0031114�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M455.6 349.2c-45.891-39.09-36.67-77.877-16.095-128.11C475.16 134.04 415.967 34.14 329.93 8.3 237.04-19.6 134.252 24.341 99.677 117.147a180.9 180.9 0 0 0-10.988 73.544c1.733 29.543 14.717 52.97 24.09 80.3 17.2 50.161-28.1 92.743-66.662 117.582-46.806 30.2-36.319 39.857-8.428 41.858 23.378 1.68 44.478-4.548 65.265-15.045 9.2-4.647 40.687-18.931 45.13-28.588-12.184 26.59-36.962 72.702-21.463 102.102 19.1 36.229 67.112-31.77 76.709-45.812 8.591-12.572 42.963-81.279 63.627-46.926 18.865 31.361 8.6 76.391 35.738 104.622 32.854 34.2 51.155-18.312 51.412-44.221.163-16.411-6.1-95.852 29.9-59.944 21.421 21.381 52.905 71.181 88.561 67.023 38.736-4.516-22.123-67.967-28.262-78.695 5.393 4.279 53.665 34.128 53.818 9.52.11-18.789-30.085-34.667-42.524-45.267"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/odnoklassniki.svg����������������0000664�0000000�0000000�00000001546�14753064456�0031010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M275.1 334c-27.4 17.4-65.1 24.3-90 26.9l20.9 20.6 76.3 76.3c27.9 28.6-17.5 73.3-45.7 45.7-19.1-19.4-47.1-47.4-76.3-76.6L84 503.4c-28.2 27.5-73.6-17.6-45.4-45.7 19.4-19.4 47.1-47.4 76.3-76.3l20.6-20.6c-24.6-2.6-62.9-9.1-90.6-26.9-32.6-21-46.9-33.3-34.3-59 7.4-14.6 27.7-26.9 54.6-5.7 0 0 36.3 28.9 94.9 28.9s94.9-28.9 94.9-28.9c26.9-21.1 47.1-8.9 54.6 5.7 12.4 25.7-1.9 38-34.5 59.1M30.3 129.7C30.3 58 88.6 0 160 0s129.7 58 129.7 129.7c0 71.4-58.3 129.4-129.7 129.4s-129.7-58-129.7-129.4m66 0c0 35.1 28.6 63.7 63.7 63.7s63.7-28.6 63.7-63.7c0-35.4-28.6-64-63.7-64s-63.7 28.6-63.7 64"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/odysee.svg�����������������������0000664�0000000�0000000�00000004257�14753064456�0027432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M406.7 463c-42.3 30.8-94.4 49-150.7 49-111.1 0-205.7-70.8-241.1-169.8 2.4 1.7 5.9 3.6 7.9 4.4 16.3 7.4 40.1-5.4 62.9-28.7 6.9-6.9 14.4-12.4 22.8-17.3 18.3-11.9 37.6-20.8 58.4-27.2 0 0 22.3 34.2 43.1 74.8s-22.3 54-27.2 54c-.3 0-.8 0-1.5-.1-11-.5-70-3-56 51.1 14.9 57.4 97.5 36.6 139.6 8.9s31.7-118.3 31.7-118.3c41.1-6.4 54 37.1 57.9 59.4.8 4.6 1.1 9.9 1.4 15.5 1.1 21.2 2.3 45.6 35.3 46.4 5.3 0 10.6-.8 15.5-2zm-95.3-23.7c-2-.5-3.5-2.5-3-5 1-2.5 3-3.5 5-3s3.5 3 3 5-2.5 3.5-5 3m-207-95.6c1.5-.5 3.5 1 4 3 0 2-1 4-3 4-1.5.5-3.5-1-4-3-.5-1.5 1-3.5 3-4M451.8 421c37.5-44.6 60.2-102.2 60.2-165 0-67.5-26.1-128.9-68.8-174.7-.1 23.5-6.1 48.2-16.8 69.2-11.9 20.3-49 58.9-69.8 78.7-.7.3-1.1.9-1.5 1.4-.2.2-.3.4-.5.6-5 6.9-4 16.8 3 21.8 21.3 15.8 56.4 45.6 59.4 72.8 3.5 34.9 27.9 75.6 34.2 86.2.8 1.3 1.3 2.1 1.4 2.4 0 2.2-.4 4.3-.8 6.5zm-61.1-170c-.5 3 1 5.9 4 6.4s5.9-1 6.4-4-1-5.9-4-6.4c-3-1-5.9 1-6.4 4m61.4-60.9-11.4 5.4-3 12.9-5.4-11.4-12.9-3 11.4-5.4 3-12.9 5.4 11.4zM395.5 41.3c-16.2 8.2-22.1 32.8-29 61.4-.3 1.4-.7 2.8-1 4.2-9.5 38.5-30.6 37.6-41.7 37.2-1.1 0-2-.1-2.9-.1-5.1 0-6-4-8.9-17.1-2.6-12.1-6.9-32-17.9-63.6-22.7-65.8-82.7-49.4-128.2-22.2-55.3 33.1-34.4 101.9-19.8 149.4.7 2.2 1.4 4.4 2 6.6-4 4-13.8 7.5-26 11.9-12.1 4.3-26.6 9.5-40.3 16.9-33.9 18-70.3 49-79.8 62.6C.7 277.8 0 267 0 256 0 114.6 114.6 0 256 0c51.4 0 99.4 15.2 139.5 41.3M58.9 189.6c-1.5-2-4.5-3-6.4-1.5s-3 4.5-1.5 6.4 4.5 3 6.4 1.5c2.5-1.5 3-4.5 1.5-6.4M327.3 64.9c2-1.5 5-.5 6.4 1.5 1.5 2.5 1 5.4-1.5 6.4-2 1.5-5 .5-6.4-1.5s-.5-5 1.5-6.4M95.1 105c-.5 1.5.5 3 2 3 1.5.5 3-.5 3-2 .5-1.5-.5-3-2-3s-3 .5-3 2m84.7-.5c-3.5-43.1 37.1-54 37.1-54 44.1-15.4 56 5.9 66.4 37.6s3 42.6-38.6 58.9-61.9-4.5-64.9-42.6zm89.6 14.9h1c2.5 0 5-2 5-5 2-6.9 1-14.4-2-20.8-1.5-2-4-3.5-6.4-2.5-3 1-4.5 4-3.5 6.9 2 4.5 3 9.9 1.5 14.9-.5 3 1.5 5.9 4.5 6.4zm-9.9-41.6c-2 0-4-1-5-3s-2-3.5-3-5c-2-2-2-5.4 0-7.4s5.4-2 7.4 0c2 2.5 3.5 5 5 7.4s.5 5.9-2.5 7.4c-.6 0-1 .2-1.3.3-.2.1-.4.2-.6.2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/old-republic.svg�����������������0000664�0000000�0000000�00000026223�14753064456�0030520�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M235.76 10.23c7.5-.31 15-.28 22.5-.09 3.61.14 7.2.4 10.79.73 4.92.27 9.79 1.03 14.67 1.62 2.93.43 5.83.98 8.75 1.46 7.9 1.33 15.67 3.28 23.39 5.4 12.24 3.47 24.19 7.92 35.76 13.21 26.56 12.24 50.94 29.21 71.63 49.88 20.03 20.09 36.72 43.55 48.89 69.19 1.13 2.59 2.44 5.1 3.47 7.74 2.81 6.43 5.39 12.97 7.58 19.63 4.14 12.33 7.34 24.99 9.42 37.83.57 3.14 1.04 6.3 1.4 9.47.55 3.83.94 7.69 1.18 11.56.83 8.34.84 16.73.77 25.1-.07 4.97-.26 9.94-.75 14.89-.24 3.38-.51 6.76-.98 10.12-.39 2.72-.63 5.46-1.11 8.17-.9 5.15-1.7 10.31-2.87 15.41-4.1 18.5-10.3 36.55-18.51 53.63-15.77 32.83-38.83 62.17-67.12 85.12a246.5 246.5 0 0 1-56.91 34.86c-6.21 2.68-12.46 5.25-18.87 7.41-3.51 1.16-7.01 2.38-10.57 3.39-6.62 1.88-13.29 3.64-20.04 5-4.66.91-9.34 1.73-14.03 2.48-5.25.66-10.5 1.44-15.79 1.74-6.69.66-13.41.84-20.12.81-6.82.03-13.65-.12-20.45-.79-3.29-.23-6.57-.5-9.83-.95-2.72-.39-5.46-.63-8.17-1.11-4.12-.72-8.25-1.37-12.35-2.22-4.25-.94-8.49-1.89-12.69-3.02-8.63-2.17-17.08-5.01-25.41-8.13-10.49-4.12-20.79-8.75-30.64-14.25-2.14-1.15-4.28-2.29-6.35-3.57-11.22-6.58-21.86-14.1-31.92-22.34-34.68-28.41-61.41-66.43-76.35-108.7-3.09-8.74-5.71-17.65-7.8-26.68-1.48-6.16-2.52-12.42-3.58-18.66-.4-2.35-.61-4.73-.95-7.09-.6-3.96-.75-7.96-1.17-11.94-.8-9.47-.71-18.99-.51-28.49.14-3.51.34-7.01.7-10.51.31-3.17.46-6.37.92-9.52.41-2.81.65-5.65 1.16-8.44.7-3.94 1.3-7.9 2.12-11.82 3.43-16.52 8.47-32.73 15.26-48.18 1.15-2.92 2.59-5.72 3.86-8.59 8.05-16.71 17.9-32.56 29.49-47.06 20-25.38 45.1-46.68 73.27-62.47 7.5-4.15 15.16-8.05 23.07-11.37 15.82-6.88 32.41-11.95 49.31-15.38 3.51-.67 7.04-1.24 10.56-1.85 2.62-.47 5.28-.7 7.91-1.08 3.53-.53 7.1-.68 10.65-1.04 2.46-.24 4.91-.36 7.36-.51m8.64 24.41c-9.23.1-18.43.99-27.57 2.23-7.3 1.08-14.53 2.6-21.71 4.3-13.91 3.5-27.48 8.34-40.46 14.42-10.46 4.99-20.59 10.7-30.18 17.22-4.18 2.92-8.4 5.8-12.34 9.03-5.08 3.97-9.98 8.17-14.68 12.59-2.51 2.24-4.81 4.7-7.22 7.06-28.22 28.79-48.44 65.39-57.5 104.69-2.04 8.44-3.54 17.02-4.44 25.65-1.1 8.89-1.44 17.85-1.41 26.8.11 7.14.38 14.28 1.22 21.37.62 7.12 1.87 14.16 3.2 21.18 1.07 4.65 2.03 9.32 3.33 13.91 6.29 23.38 16.5 45.7 30.07 65.75 8.64 12.98 18.78 24.93 29.98 35.77 16.28 15.82 35.05 29.04 55.34 39.22 7.28 3.52 14.66 6.87 22.27 9.63 5.04 1.76 10.06 3.57 15.22 4.98 11.26 3.23 22.77 5.6 34.39 7.06 2.91.29 5.81.61 8.72.9 13.82 1.08 27.74 1 41.54-.43 4.45-.6 8.92-.99 13.35-1.78 3.63-.67 7.28-1.25 10.87-2.1 4.13-.98 8.28-1.91 12.36-3.07 26.5-7.34 51.58-19.71 73.58-36.2 15.78-11.82 29.96-25.76 42.12-41.28 3.26-4.02 6.17-8.31 9.13-12.55 3.39-5.06 6.58-10.25 9.6-15.54 2.4-4.44 4.74-8.91 6.95-13.45 5.69-12.05 10.28-24.62 13.75-37.49 2.59-10.01 4.75-20.16 5.9-30.45 1.77-13.47 1.94-27.1 1.29-40.65-.29-3.89-.67-7.77-1-11.66-2.23-19.08-6.79-37.91-13.82-55.8-5.95-15.13-13.53-29.63-22.61-43.13-12.69-18.8-28.24-35.68-45.97-49.83-25.05-20-54.47-34.55-85.65-42.08-7.78-1.93-15.69-3.34-23.63-4.45-3.91-.59-7.85-.82-11.77-1.24-7.39-.57-14.81-.72-22.22-.58M139.26 83.53c13.3-8.89 28.08-15.38 43.3-20.18-3.17 1.77-6.44 3.38-9.53 5.29-11.21 6.68-21.52 14.9-30.38 24.49-6.8 7.43-12.76 15.73-17.01 24.89-3.29 6.86-5.64 14.19-6.86 21.71-.93 4.85-1.3 9.81-1.17 14.75.13 13.66 4.44 27.08 11.29 38.82 5.92 10.22 13.63 19.33 22.36 27.26 4.85 4.36 10.24 8.09 14.95 12.6 2.26 2.19 4.49 4.42 6.43 6.91 2.62 3.31 4.89 6.99 5.99 11.1.9 3.02.66 6.2.69 9.31.02 4.1-.04 8.2.03 12.3.14 3.54-.02 7.09.11 10.63.08 2.38.02 4.76.05 7.14.16 5.77.06 11.53.15 17.3.11 2.91.02 5.82.13 8.74.03 1.63.13 3.28-.03 4.91-.91.12-1.82.18-2.73.16-10.99 0-21.88-2.63-31.95-6.93-6-2.7-11.81-5.89-17.09-9.83-5.75-4.19-11.09-8.96-15.79-14.31-6.53-7.24-11.98-15.39-16.62-23.95-1.07-2.03-2.24-4.02-3.18-6.12-1.16-2.64-2.62-5.14-3.67-7.82-4.05-9.68-6.57-19.94-8.08-30.31-.49-4.44-1.09-8.88-1.2-13.35-.7-15.73.84-31.55 4.67-46.82 2.12-8.15 4.77-16.18 8.31-23.83 6.32-14.2 15.34-27.18 26.3-38.19 6.28-6.2 13.13-11.84 20.53-16.67m175.37-20.12c2.74.74 5.41 1.74 8.09 2.68 6.36 2.33 12.68 4.84 18.71 7.96 13.11 6.44 25.31 14.81 35.82 24.97 10.2 9.95 18.74 21.6 25.14 34.34 1.28 2.75 2.64 5.46 3.81 8.26 6.31 15.1 10 31.26 11.23 47.57.41 4.54.44 9.09.45 13.64.07 11.64-1.49 23.25-4.3 34.53-1.97 7.27-4.35 14.49-7.86 21.18-3.18 6.64-6.68 13.16-10.84 19.24-6.94 10.47-15.6 19.87-25.82 27.22-10.48 7.64-22.64 13.02-35.4 15.38-3.51.69-7.08 1.08-10.66 1.21-1.85.06-3.72.16-5.56-.1-.28-2.15 0-4.31-.01-6.46-.03-3.73.14-7.45.1-11.17.19-7.02.02-14.05.21-21.07.03-2.38-.03-4.76.03-7.14.17-5.07-.04-10.14.14-15.21.1-2.99-.24-6.04.51-8.96.66-2.5 1.78-4.86 3.09-7.08 4.46-7.31 11.06-12.96 17.68-18.26 5.38-4.18 10.47-8.77 15.02-13.84 7.68-8.37 14.17-17.88 18.78-28.27 2.5-5.93 4.52-12.1 5.55-18.46.86-4.37 1.06-8.83 1.01-13.27-.02-7.85-1.4-15.65-3.64-23.17-1.75-5.73-4.27-11.18-7.09-16.45-3.87-6.93-8.65-13.31-13.96-19.2-9.94-10.85-21.75-19.94-34.6-27.1-1.85-1.02-3.84-1.82-5.63-2.97m-100.8 58.45c.98-1.18 1.99-2.33 3.12-3.38-.61.93-1.27 1.81-1.95 2.68-3.1 3.88-5.54 8.31-7.03 13.06-.87 3.27-1.68 6.6-1.73 10-.07 2.52-.08 5.07.32 7.57 1.13 7.63 4.33 14.85 8.77 21.12 2 2.7 4.25 5.27 6.92 7.33 1.62 1.27 3.53 2.09 5.34 3.05 3.11 1.68 6.32 3.23 9.07 5.48 2.67 2.09 4.55 5.33 4.4 8.79-.01 73.67 0 147.34-.01 221.02 0 1.35-.08 2.7.04 4.04.13 1.48.82 2.83 1.47 4.15.86 1.66 1.78 3.34 3.18 4.62.85.77 1.97 1.4 3.15 1.24 1.5-.2 2.66-1.35 3.45-2.57.96-1.51 1.68-3.16 2.28-4.85.76-2.13.44-4.42.54-6.63.14-4.03-.02-8.06.14-12.09.03-5.89.03-11.77.06-17.66.14-3.62.03-7.24.11-10.86.15-4.03-.02-8.06.14-12.09.03-5.99.03-11.98.07-17.97.14-3.62.02-7.24.11-10.86.14-3.93-.02-7.86.14-11.78.03-5.99.03-11.98.06-17.97.16-3.94-.01-7.88.19-11.82.29 1.44.13 2.92.22 4.38.19 3.61.42 7.23.76 10.84.32 3.44.44 6.89.86 10.32.37 3.1.51 6.22.95 9.31.57 4.09.87 8.21 1.54 12.29 1.46 9.04 2.83 18.11 5.09 26.99 1.13 4.82 2.4 9.61 4 14.3 2.54 7.9 5.72 15.67 10.31 22.62 1.73 2.64 3.87 4.98 6.1 7.21.27.25.55.51.88.71.6.25 1.31-.07 1.7-.57.71-.88 1.17-1.94 1.7-2.93 4.05-7.8 8.18-15.56 12.34-23.31.7-1.31 1.44-2.62 2.56-3.61 1.75-1.57 3.84-2.69 5.98-3.63 2.88-1.22 5.9-2.19 9.03-2.42 6.58-.62 13.11.75 19.56 1.85 3.69.58 7.4 1.17 11.13 1.41 3.74.1 7.48.05 11.21-.28 8.55-.92 16.99-2.96 24.94-6.25 5.3-2.24 10.46-4.83 15.31-7.93 11.46-7.21 21.46-16.57 30.04-27.01 1.17-1.42 2.25-2.9 3.46-4.28-1.2 3.24-2.67 6.37-4.16 9.48-1.25 2.9-2.84 5.61-4.27 8.42-5.16 9.63-11.02 18.91-17.75 27.52-4.03 5.21-8.53 10.05-13.33 14.57-6.64 6.05-14.07 11.37-22.43 14.76-8.21 3.37-17.31 4.63-26.09 3.29-3.56-.58-7.01-1.69-10.41-2.88-2.79-.97-5.39-2.38-8.03-3.69-3.43-1.71-6.64-3.81-9.71-6.08 2.71 3.06 5.69 5.86 8.7 8.61 4.27 3.76 8.74 7.31 13.63 10.23 3.98 2.45 8.29 4.4 12.84 5.51 1.46.37 2.96.46 4.45.6-1.25 1.1-2.63 2.04-3.99 2.98-9.61 6.54-20.01 11.86-30.69 16.43-20.86 8.7-43.17 13.97-65.74 15.34q-6.99.36-13.98.36c-4.98-.11-9.97-.13-14.92-.65-11.2-.76-22.29-2.73-33.17-5.43-10.35-2.71-20.55-6.12-30.3-10.55-8.71-3.86-17.12-8.42-24.99-13.79-1.83-1.31-3.74-2.53-5.37-4.08 6.6-1.19 13.03-3.39 18.99-6.48 5.74-2.86 10.99-6.66 15.63-11.07 2.24-2.19 4.29-4.59 6.19-7.09-3.43 2.13-6.93 4.15-10.62 5.78-4.41 2.16-9.07 3.77-13.81 5.02-5.73 1.52-11.74 1.73-17.61 1.14-8.13-.95-15.86-4.27-22.51-8.98-4.32-2.94-8.22-6.43-11.96-10.06-9.93-10.16-18.2-21.81-25.66-33.86-3.94-6.27-7.53-12.75-11.12-19.22-1.05-2.04-2.15-4.05-3.18-6.1 2.85 2.92 5.57 5.97 8.43 8.88 8.99 8.97 18.56 17.44 29.16 24.48 7.55 4.9 15.67 9.23 24.56 11.03 3.11.73 6.32.47 9.47.81 2.77.28 5.56.2 8.34.3 5.05.06 10.11.04 15.16-.16 3.65-.16 7.27-.66 10.89-1.09 2.07-.25 4.11-.71 6.14-1.2 3.88-.95 8.11-.96 11.83.61 4.76 1.85 8.44 5.64 11.38 9.71 2.16 3.02 4.06 6.22 5.66 9.58 1.16 2.43 2.46 4.79 3.55 7.26 1 2.24 2.15 4.42 3.42 6.52.67 1.02 1.4 2.15 2.62 2.55 1.06-.75 1.71-1.91 2.28-3.03 2.1-4.16 3.42-8.65 4.89-13.05 2.02-6.59 3.78-13.27 5.19-20.02 2.21-9.25 3.25-18.72 4.54-28.13.56-3.98.83-7.99 1.31-11.97.87-10.64 1.9-21.27 2.24-31.94.08-1.86.24-3.71.25-5.57.01-4.35.25-8.69.22-13.03-.01-2.38-.01-4.76 0-7.13.05-5.07-.2-10.14-.22-15.21-.2-6.61-.71-13.2-1.29-19.78-.73-5.88-1.55-11.78-3.12-17.51-2.05-7.75-5.59-15.03-9.8-21.82-3.16-5.07-6.79-9.88-11.09-14.03-3.88-3.86-8.58-7.08-13.94-8.45-1.5-.41-3.06-.45-4.59-.64.07-2.99.7-5.93 1.26-8.85 1.59-7.71 3.8-15.3 6.76-22.6 1.52-4.03 3.41-7.9 5.39-11.72 3.45-6.56 7.62-12.79 12.46-18.46m31.27 1.7c.35-.06.71-.12 1.07-.19.19 1.79.09 3.58.1 5.37v38.13c-.01 1.74.13 3.49-.15 5.22-.36-.03-.71-.05-1.06-.05-.95-3.75-1.72-7.55-2.62-11.31-.38-1.53-.58-3.09-1.07-4.59-1.7-.24-3.43-.17-5.15-.2-5.06-.01-10.13 0-15.19-.01-1.66-.01-3.32.09-4.98-.03-.03-.39-.26-.91.16-1.18 1.28-.65 2.72-.88 4.06-1.35 3.43-1.14 6.88-2.16 10.31-3.31 1.39-.48 2.9-.72 4.16-1.54.04-.56.02-1.13-.05-1.68-1.23-.55-2.53-.87-3.81-1.28-3.13-1.03-6.29-1.96-9.41-3.02-1.79-.62-3.67-1-5.41-1.79-.03-.37-.07-.73-.11-1.09 5.09-.19 10.2.06 15.3-.12 3.36-.13 6.73.08 10.09-.07.12-.39.26-.77.37-1.16 1.08-4.94 2.33-9.83 3.39-14.75m5.97-.2c.36.05.72.12 1.08.2.98 3.85 1.73 7.76 2.71 11.61.36 1.42.56 2.88 1.03 4.27 2.53.18 5.07-.01 7.61.05 5.16.12 10.33.12 15.49.07.76-.01 1.52.03 2.28.08-.04.36-.07.72-.1 1.08-1.82.83-3.78 1.25-5.67 1.89-3.73 1.23-7.48 2.39-11.22 3.57-.57.17-1.12.42-1.67.64-.15.55-.18 1.12-.12 1.69.87.48 1.82.81 2.77 1.09 4.88 1.52 9.73 3.14 14.63 4.6.38.13.78.27 1.13.49.4.27.23.79.15 1.18-1.66.13-3.31.03-4.97.04-5.17.01-10.33-.01-15.5.01-1.61.03-3.22-.02-4.82.21-.52 1.67-.72 3.42-1.17 5.11-.94 3.57-1.52 7.24-2.54 10.78-.36.01-.71.02-1.06.06-.29-1.73-.15-3.48-.15-5.22v-38.13c.02-1.78-.08-3.58.11-5.37M65.05 168.33c1.12-2.15 2.08-4.4 3.37-6.46-1.82 7.56-2.91 15.27-3.62 23-.8 7.71-.85 15.49-.54 23.23 1.05 19.94 5.54 39.83 14.23 57.88 2.99 5.99 6.35 11.83 10.5 17.11 6.12 7.47 12.53 14.76 19.84 21.09 4.8 4.1 9.99 7.78 15.54 10.8 3.27 1.65 6.51 3.39 9.94 4.68 5.01 2.03 10.19 3.61 15.42 4.94 3.83.96 7.78 1.41 11.52 2.71 5 1.57 9.47 4.61 13.03 8.43 4.93 5.23 8.09 11.87 10.2 18.67.99 2.9 1.59 5.91 2.17 8.92.15.75.22 1.52.16 2.29-6.5 2.78-13.26 5.06-20.26 6.18-4.11.78-8.29.99-12.46 1.08-10.25.24-20.47-1.76-30.12-5.12-3.74-1.42-7.49-2.85-11.03-4.72-8.06-3.84-15.64-8.7-22.46-14.46-2.92-2.55-5.83-5.13-8.4-8.03-9.16-9.83-16.3-21.41-21.79-33.65-2.39-5.55-4.61-11.18-6.37-16.96-1.17-3.94-2.36-7.89-3.26-11.91-.75-2.94-1.22-5.95-1.87-8.92-.46-2.14-.69-4.32-1.03-6.48-.85-5.43-1.28-10.93-1.33-16.43.11-6.18.25-12.37 1.07-18.5.4-2.86.67-5.74 1.15-8.6.98-5.7 2.14-11.37 3.71-16.93 3.09-11.65 7.48-22.95 12.69-33.84m363.73-6.44c1.1 1.66 1.91 3.48 2.78 5.26 2.1 4.45 4.24 8.9 6.02 13.49 7.61 18.76 12.3 38.79 13.04 59.05.02 1.76.07 3.52.11 5.29.13 9.57-1.27 19.09-3.18 28.45-.73 3.59-1.54 7.17-2.58 10.69-4.04 14.72-10 29-18.41 41.78-8.21 12.57-19.01 23.55-31.84 31.41-5.73 3.59-11.79 6.64-18.05 9.19-5.78 2.19-11.71 4.03-17.8 5.11-6.4 1.05-12.91 1.52-19.4 1.23-7.92-.48-15.78-2.07-23.21-4.85-1.94-.8-3.94-1.46-5.84-2.33-.21-1.51.25-2.99.53-4.46 1.16-5.74 3.03-11.36 5.7-16.58 2.37-4.51 5.52-8.65 9.46-11.9 2.43-2.05 5.24-3.61 8.16-4.83 3.58-1.5 7.47-1.97 11.24-2.83 7.23-1.71 14.37-3.93 21.15-7 10.35-4.65 19.71-11.38 27.65-19.46 1.59-1.61 3.23-3.18 4.74-4.87 3.37-3.76 6.71-7.57 9.85-11.53 7.48-10.07 12.82-21.59 16.71-33.48 1.58-5.3 3.21-10.6 4.21-16.05.63-2.87 1.04-5.78 1.52-8.68.87-6.09 1.59-12.22 1.68-18.38.12-6.65.14-13.32-.53-19.94-.73-7.99-1.87-15.96-3.71-23.78"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/opencart.svg���������������������0000664�0000000�0000000�00000001171�14753064456�0027745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M423.3 440.7c0 25.3-20.3 45.6-45.6 45.6s-45.8-20.3-45.8-45.6 20.6-45.8 45.8-45.8c25.4 0 45.6 20.5 45.6 45.8m-253.9-45.8c-25.3 0-45.6 20.6-45.6 45.8s20.3 45.6 45.6 45.6 45.8-20.3 45.8-45.6-20.5-45.8-45.8-45.8m291.7-270C158.9 124.9 81.9 112.1 0 25.7c34.4 51.7 53.3 148.9 373.1 144.2 333.3-5 130 86.1 70.8 188.9 186.7-166.7 319.4-233.9 17.2-233.9"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/openid.svg�����������������������0000664�0000000�0000000�00000001027�14753064456�0027410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m271.5 432-68 32C88.5 453.7 0 392.5 0 318.2c0-71.5 82.5-131 191.7-144.3v43c-71.5 12.5-124 53-124 101.3 0 51 58.5 93.3 135.7 103v-340l68-33.2v384zM448 291l-131.3-28.5 36.8-20.7c-19.5-11.5-43.5-20-70-24.8v-43c46.2 5.5 87.7 19.5 120.3 39.3l35-19.8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/opensuse.svg���������������������0000664�0000000�0000000�00000002657�14753064456�0030005�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M471.1 102.7s-.3 18.3-.3 20.3c-9.1-3-74.4-24.1-135.7-26.3-51.9-1.8-122.8-4.3-223 57.3-19.4 12.4-73.9 46.1-99.6 109.7C7 277-.1 307 7 335.1c3.3 12.8 8.9 24.9 16.5 35.7 17.4 25 46.6 41.6 78.1 44.4 44.4 3.9 78.1-16 90-53.3 8.2-25.8 0-63.6-31.5-82.9-25.6-15.7-53.3-12.1-69.2-1.6-13.9 9.2-21.8 23.5-21.6 39.2.3 27.8 24.3 42.6 41.5 42.6 5.4 0 10.7-.9 15.8-2.7 6.5-1.8 13.3-6.5 13.3-14.9 0-12.1-11.6-14.8-16.8-13.9-2.9.5-4.5 2-11.8 2.4-2-.2-12-3.1-12-14v-.1c.2-12.3 13.2-18 25.5-16.9 32.3 2.8 47.7 40.7 28.5 65.7-18.3 23.7-76.6 23.2-99.7-20.4-26-49.2 12.7-111.2 87-98.4 33.2 5.7 83.6 35.5 102.4 104.3h45.9c-5.7-17.6-8.9-68.3 42.7-68.3 56.7 0 63.9 39.9 79.8 68.3H460c-12.8-18.3-21.7-38.7-18.9-55.8 5.6-33.8 39.7-18.4 82.4-17.4 66.5.4 102.1-27 103.1-28 3.7-3.1 6.5-15.8 7-17.7 1.3-5.1-3.2-2.4-3.2-2.4-8.7 5.2-30.5 15.2-50.9 15.6-25.3.5-76.2-25.4-81.6-28.2-.3-.4.1 1.2-11-25.5 88.4 58.3 118.3 40.5 145.2 21.7.8-.6 4.3-2.9 3.6-5.7-13.8-48.1-22.4-62.7-34.5-69.6-37-21.6-125-34.7-129.2-35.3.1-.1-.9-.3-.9.7m135.6 75.4a37.6 37.6 0 1 1-75.2-2.6 37.6 37.6 0 1 1 75.2 2.6m-36.6-27.9a26.3 26.3 0 1 0-1.7 52.5 26.3 26.3 0 1 0 1.7-52.5m4.3 28.8c-15.4 0-15.4-15.6 0-15.6s15.4 15.6 0 15.6"/></svg>���������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/opera.svg������������������������0000664�0000000�0000000�00000001276�14753064456�0027246�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M313.9 32.7c-170.2 0-252.6 223.8-147.5 355.1 36.5 45.4 88.6 75.6 147.5 75.6 36.3 0 70.3-11.1 99.4-30.4-43.8 39.2-101.9 63-165.3 63-3.9 0-8 0-11.9-.3C104.6 489.6 0 381.1 0 248 0 111 111 0 248 0h.8c63.1.3 120.7 24.1 164.4 63.1-29-19.4-63.1-30.4-99.3-30.4m101.8 397.7c-40.9 24.7-90.7 23.6-132-5.8 56.2-20.5 97.7-91.6 97.7-176.6 0-84.7-41.2-155.8-97.4-176.6 41.8-29.2 91.2-30.3 132.9-5 105.9 98.7 105.5 265.7-1.2 364"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/optin-monster.svg����������������0000664�0000000�0000000�00000011511�14753064456�0030747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M572.6 421.4c5.6-9.5 4.7-15.2-5.4-11.6-3-4.9-7-9.5-11.1-13.8 2.9-9.7-.7-14.2-10.8-9.2-4.6-3.2-10.3-6.5-15.9-9.2 0-15.1-11.6-11.6-17.6-5.7-10.4-1.5-18.7-.3-26.8 5.7.3-6.5.3-13 .3-19.7 12.6 0 40.2-11 45.9-36.2 1.4-6.8 1.6-13.8-.3-21.9-3-13.5-14.3-21.3-25.1-25.7-.8-5.9-7.6-14.3-14.9-15.9s-12.4 4.9-14.1 10.3c-8.5 0-19.2 2.8-21.1 8.4-5.4-.5-11.1-1.4-16.8-1.9 2.7-1.9 5.4-3.5 8.4-4.6 5.4-9.2 14.6-11.4 25.7-11.6V256c19.5-.5 43-5.9 53.8-18.1 12.7-13.8 14.6-37.3 12.4-55.1-2.4-17.3-9.7-37.6-24.6-48.1-8.4-5.9-21.6-.8-22.7 9.5-2.2 19.6 1.2 30-38.6 25.1-10.3-23.8-24.6-44.6-42.7-60C341 49.6 242.9 55.5 166.4 71.7c19.7 4.6 41.1 8.6 59.7 16.5-26.2 2.4-52.7 11.3-76.2 23.2-32.8 17-44 29.9-56.7 42.4 14.9-2.2 28.9-5.1 43.8-3.8-9.7 5.4-18.4 12.2-26.5 20-25.8.9-23.8-5.3-26.2-25.9-1.1-10.5-14.3-15.4-22.7-9.7-28.1 19.9-33.5 79.9-12.2 103.5 10.8 12.2 35.1 17.3 54.9 17.8-.3 1.1-.3 1.9-.3 2.7 10.8.5 19.5 2.7 24.6 11.6 3 1.1 5.7 2.7 8.1 4.6-5.4.5-11.1 1.4-16.5 1.9-3.3-6.6-13.7-8.1-21.1-8.1-1.6-5.7-6.5-12.2-14.1-10.3-6.8 1.9-14.1 10-14.9 15.9-22.5 9.5-30.1 26.8-25.1 47.6 5.3 24.8 33 36.2 45.9 36.2v19.7c-6.6-5-14.3-7.5-26.8-5.7-5.5-5.5-17.3-10.1-17.3 5.7-5.9 2.7-11.4 5.9-15.9 9.2-9.8-4.9-13.6-1.7-11.1 9.2-4.1 4.3-7.8 8.6-11.1 13.8-10.2-3.7-11 2.2-5.4 11.6-1.1 3.5-1.6 7-1.9 10.8-.5 31.6 44.6 64 73.5 65.1 17.3.5 34.6-8.4 43-23.5 113.2 4.9 226.7 4.1 340.2 0 8.1 15.1 25.4 24.3 42.7 23.5 29.2-1.1 74.3-33.5 73.5-65.1.2-3.7-.7-7.2-1.7-10.7m-73.8-254c1.1-3 2.4-8.4 2.4-14.6 0-5.9 6.8-8.1 14.1-.8 11.1 11.6 14.9 40.5 13.8 51.1-4.1-13.6-13-29-30.3-35.7m-4.6 6.7c19.5 6.2 28.6 27.6 29.7 48.9-1.1 2.7-3 5.4-4.9 7.6-5.7 5.9-15.4 10-26.2 12.2 4.3-21.3.3-47.3-12.7-63 4.9-.8 10.9-2.4 14.1-5.7m-24.1 6.8c13.8 11.9 20 39.2 14.1 63.5-4.1.5-8.1.8-11.6.8-1.9-21.9-6.8-44-14.3-64.6 3.7.3 8.1.3 11.8.3M47.5 203c-1.1-10.5 2.4-39.5 13.8-51.1 7-7.3 14.1-5.1 14.1.8 0 6.2 1.4 11.6 2.4 14.6-17.3 6.8-26.2 22.2-30.3 35.7m9.7 27.6c-1.9-2.2-3.5-4.9-4.9-7.6 1.4-21.3 10.3-42.7 29.7-48.9 3.2 3.2 9.2 4.9 14.1 5.7-13 15.7-17 41.6-12.7 63-10.8-2.2-20.5-6-26.2-12.2m47.9 14.6c-4.1 0-8.1-.3-12.7-.8-4.6-18.6-1.9-38.9 5.4-53v.3l12.2-5.1c4.9-1.9 9.7-3.8 14.9-4.9-10.7 19.7-17.4 41.3-19.8 63.5m184-162.7c41.9 0 76.2 34 76.2 75.9 0 42.2-34.3 76.2-76.2 76.2s-76.2-34-76.2-76.2c0-41.8 34.3-75.9 76.2-75.9m115.6 174.3c-.3 17.8-7 48.9-23 57-13.2 6.6-6.5-7.5-16.5-58.1 13.3.3 26.6.3 39.5 1.1m-54-1.6c.8 4.9 3.8 40.3-1.6 41.9-11.6 3.5-40 4.3-51.1-1.1-4.1-3-4.6-35.9-4.3-41.1v.3c18.9-.3 38.1-.3 57 0M278.3 309c-13 3.5-41.6 4.1-54.6-1.6-6.5-2.7-3.8-42.4-1.9-51.6 19.2-.5 38.4-.5 57.8-.8v.3c1.1 8.3 3.3 51.2-1.3 53.7m-106.5-51.1c12.2-.8 24.6-1.4 36.8-1.6-2.4 15.4-3 43.5-4.9 52.2-1.1 6.8-4.3 6.8-9.7 4.3-21.9-9.8-27.6-35.2-22.2-54.9m-35.4 31.3c7.8-1.1 15.7-1.9 23.5-2.7 1.6 6.2 3.8 11.9 7 17.6 10 17 44 35.7 45.1 7 6.2 14.9 40.8 12.2 54.9 10.8 15.7-1.4 23.8-1.4 26.8-14.3 12.4 4.3 30.8 4.1 44 3 11.3-.8 20.8-.5 24.6-8.9 1.1 5.1 1.9 11.6 4.6 16.8 10.8 21.3 37.3 1.4 46.8-31.6 8.6.8 17.6 1.9 26.5 2.7-.4 1.3-3.8 7.3 7.3 11.6-47.6 47-95.7 87.8-163.2 107-63.2-20.8-112.1-59.5-155.9-106.5 9.6-3.4 10.4-8.8 8-12.5m-21.6 172.5c-3.8 17.8-21.9 29.7-39.7 28.9-19.2-.8-46.5-17-59.2-36.5-2.7-31.1 43.8-61.3 66.2-54.6 14.9 4.3 27.8 30.8 33.5 54 0 3-.3 5.7-.8 8.2m-8.7-66c-.5-13.5-.5-27-.3-40.5h.3c2.7-1.6 5.7-3.8 7.8-6.5 6.5-1.6 13-5.1 15.1-9.2 3.3-7.1-7-7.5-5.4-12.4 2.7-1.1 5.7-2.2 7.8-3.5 29.2 29.2 58.6 56.5 97.3 77-36.8 11.3-72.4 27.6-105.9 47-1.2-18.6-7.7-35.9-16.7-51.9m337.6 64.6c-103 3.5-206.2 4.1-309.4 0 0 .3 0 .3-.3.3v-.3h.3c35.1-21.6 72.2-39.2 112.4-50.8 11.6 5.1 23 9.5 34.9 13.2 2.2.8 2.2.8 4.3 0 14.3-4.1 28.4-9.2 42.2-15.4 41.5 11.7 78.8 31.7 115.6 53m10.5-12.4c-35.9-19.5-73-35.9-111.9-47.6 38.1-20 71.9-47.3 103.5-76.7 2.2 1.4 4.6 2.4 7.6 3.2 0 .8.3 1.9.5 2.4-4.6 2.7-7.8 6.2-5.9 10.3 2.2 3.8 8.6 7.6 15.1 8.9 2.4 2.7 5.1 5.1 8.1 6.8 0 13.8-.3 27.6-.8 41.3l.3-.3c-9.3 15.9-15.5 37-16.5 51.7m105.9 6.2c-12.7 19.5-40 35.7-59.2 36.5-19.3.9-40.5-13.2-40.5-37 5.7-23.2 18.9-49.7 33.5-54 22.7-6.9 69.2 23.4 66.2 54.5M372.9 75.2c-3.8-72.1-100.8-79.7-126-23.5 44.6-24.3 90.3-15.7 126 23.5M74.8 407.1c-15.7 1.6-49.5 25.4-49.5 43.2 0 11.6 15.7 19.5 32.2 14.9 12.2-3.2 31.1-17.6 35.9-27.3 6-11.6-3.7-32.7-18.6-30.8m215.9-176.2c28.6 0 51.9-21.6 51.9-48.4 0-36.1-40.5-58.1-72.2-44.3 9.5 3 16.5 11.6 16.5 21.6 0 23.3-33.3 32-46.5 11.3-7.3 34.1 19.4 59.8 50.3 59.8M68 474.1c.5 6.5 12.2 12.7 21.6 9.5 6.8-2.7 14.6-10.5 17.3-16.2 3-7-1.1-20-9.7-18.4-8.9 1.6-29.7 16.7-29.2 25.1m433.2-67c-14.9-1.9-24.6 19.2-18.9 30.8 4.9 9.7 24.1 24.1 36.2 27.3 16.5 4.6 32.2-3.2 32.2-14.9 0-17.8-33.8-41.6-49.5-43.2M478.8 449c-8.4-1.6-12.4 11.3-9.5 18.4 2.4 5.7 10.3 13.5 17.3 16.2 9.2 3.2 21.1-3 21.3-9.5.9-8.4-20.2-23.5-29.1-25.1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/orcid.svg������������������������0000664�0000000�0000000�00000001211�14753064456�0027225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M294.75 188.19h-45.92V342h47.47c67.62 0 83.12-51.34 83.12-76.91 0-41.64-26.54-76.9-84.67-76.9M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8m-80.79 360.76h-29.84v-207.5h29.84zm-14.92-231.14a19.57 19.57 0 1 1 19.57-19.57 19.64 19.64 0 0 1-19.57 19.57M300 369h-81V161.26h80.6c76.73 0 110.44 54.83 110.44 103.85C410 318.39 368.38 369 300 369"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/osi.svg��������������������������0000664�0000000�0000000�00000002213�14753064456�0026722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M8 266.44C10.3 130.64 105.4 34 221.8 18.34c138.8-18.6 255.6 75.8 278 201.1 21.3 118.8-44 230-151.6 274-9.3 3.8-14.4 1.7-18-7.7q-26.7-69.45-53.4-139c-3.1-8.1-1-13.2 7-16.8 24.2-11 39.3-29.4 43.3-55.8a71.47 71.47 0 0 0-64.5-82.2c-39-3.4-71.8 23.7-77.5 59.7-5.2 33 11.1 63.7 41.9 77.7 9.6 4.4 11.5 8.6 7.8 18.4q-26.85 69.9-53.7 139.9c-2.6 6.9-8.3 9.3-15.5 6.5-52.6-20.3-101.4-61-130.8-119-24.9-49.2-25.2-87.7-26.8-108.7m20.9-1.9c.4 6.6.6 14.3 1.3 22.1 6.3 71.9 49.6 143.5 131 183.1 3.2 1.5 4.4.8 5.6-2.3q22.35-58.65 45-117.3c1.3-3.3.6-4.8-2.4-6.7-31.6-19.9-47.3-48.5-45.6-86 1-21.6 9.3-40.5 23.8-56.3 30-32.7 77-39.8 115.5-17.6a91.64 91.64 0 0 1 45.2 90.4c-3.6 30.6-19.3 53.9-45.7 69.8-2.7 1.6-3.5 2.9-2.3 6q22.8 58.8 45.2 117.7c1.2 3.1 2.4 3.8 5.6 2.3 35.5-16.6 65.2-40.3 88.1-72 34.8-48.2 49.1-101.9 42.3-161-13.7-117.5-119.4-214.8-255.5-198-106.1 13-195.3 102.5-197.1 225.8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/padlet.svg�����������������������0000664�0000000�0000000�00000001422�14753064456�0027402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m297.9 0 .1.001c7.6.107 14.4 4.719 17.5 11.779l132 308.52.3-.1.2.4-2.8 10-42.9 158c-3.7 16.2-19.7 26.3-35.8 22.6l-68.4-15.6-68.5 15.6c-16.1 3.7-32.1-6.4-35.8-22.6l-42.9-158-2.7-10 .1-.4L280.4 11.78c3-6.983 9.9-11.596 17.5-11.78M160.1 322.1l131 39.1 6.9 122.5 7.9-121.5 130.6-39.3.2-.1-131 25.1-8.6-320.18-5.2 320.18zM426 222.6l94.4-41h73.8l-157 247.6 31.6-109zm171.5-41.2 41.4 76.2c4 7.5-3.9 15.9-11.6 12.2l-47.6-22.7zM127.3 318.5 158.7 430 1.61 154.5c-5.902-10.4 5.518-22 15.94-16.2l151.85 84.2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/page4.svg������������������������0000664�0000000�0000000�00000001731�14753064456�0027134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M248 504C111 504 0 393 0 256S111 8 248 8c20.9 0 41.3 2.6 60.7 7.5L42.3 392H248zm0-143.6V146.8L98.6 360.4zm96 31.6v92.7c45.7-19.2 84.5-51.7 111.4-92.7zm57.4-138.2-21.2 8.4 21.2 8.3zm-20.3 54.5c-6.7 0-8 6.3-8 12.9v7.7h16.2v-10c0-5.9-2.3-10.6-8.2-10.6M496 256c0 37.3-8.2 72.7-23 104.4H344V27.3C433.3 64.8 496 153.1 496 256M360.4 143.6h68.2V96h-13.9v32.6h-13.9V99h-13.9v29.6h-12.7V96h-13.9v47.6zm68.1 185.3H402v-11c0-15.4-5.6-25.2-20.9-25.2-15.4 0-20.7 10.6-20.7 25.9v25.3h68.2v-15zm0-103-68.2 29.7V268l68.2 29.5v-16.6l-14.4-5.7v-26.5l14.4-5.9zm-4.8-68.5h-35.6V184H402v-12.2h11c8.6 15.8 1.3 35.3-18.6 35.3-22.5 0-28.3-25.3-15.5-37.7l-11.6-10.6c-16.2 17.5-12.2 63.9 27.1 63.9 34 0 44.7-35.9 29.3-65.3"/></svg>���������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/pagelines.svg��������������������0000664�0000000�0000000�00000001405�14753064456�0030101�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 312.7c-55.1 136.7-187.1 54-187.1 54-40.5 81.8-107.4 134.4-184.6 134.7-16.1 0-16.6-24.4 0-24.4 64.4-.3 120.5-42.7 157.2-110.1-41.1 15.9-118.6 27.9-161.6-82.2 109-44.9 159.1 11.2 178.3 45.5 9.9-24.4 17-50.9 21.6-79.7 0 0-139.7 21.9-149.5-98.1 119.1-47.9 152.6 76.7 152.6 76.7 1.6-16.7 3.3-52.6 3.3-53.4 0 0-106.3-73.7-38.1-165.2 124.6 43 61.4 162.4 61.4 162.4.5 1.6.5 23.8 0 33.4 0 0 45.2-89 136.4-57.5-4.2 134-141.9 106.4-141.9 106.4-4.4 27.4-11.2 53.4-20 77.5 0 0 83-91.8 172-20"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/palfed.svg�����������������������0000664�0000000�0000000�00000002031�14753064456�0027361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384.9 193.9c0-47.4-55.2-44.2-95.4-29.8-1.3 39.4-2.5 80.7-3 119.8.7 2.8 2.6 6.2 15.1 6.2 36.8 0 83.4-42.8 83.3-96.2m-194.5 72.2c.2 0 6.5-2.7 11.2-2.7 26.6 0 20.7 44.1-14.4 44.1-21.5 0-37.1-18.1-37.1-43 0-42 42.9-95.6 100.7-126.5 1-12.4 3-22 10.5-28.2 11.2-9 26.6-3.5 29.5 11.1 72.2-22.2 135.2 1 135.2 72 0 77.9-79.3 152.6-140.1 138.2-.1 39.4.9 74.4 2.7 100v.2c.2 3.4.6 12.5-5.3 19.1-9.6 10.6-33.4 10-36.4-22.3-4.1-44.4.2-206.1 1.4-242.5-21.5 15-58.5 50.3-58.5 75.9.2 2.5.4 4 .6 4.6M8 181.1s-.1 37.4 38.4 37.4h30l22.4 217.2s0 44.3 44.7 44.3h288.9s44.7-.4 44.7-44.3l22.4-217.2h30s38.4 1.2 38.4-37.4c0 0 .1-37.4-38.4-37.4h-30.1c-7.3-25.6-30.2-74.3-119.4-74.3h-28V50.3s-2.7-18.4-21.1-18.4h-85.8s-21.1 0-21.1 18.4v19.1h-28.1s-105 4.2-120.5 74.3h-29S8 142.5 8 181.1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/patreon.svg����������������������0000664�0000000�0000000�00000000774�14753064456�0027612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M489.7 153.8c-.1-65.4-51-119-110.7-138.3C304.8-8.5 207-5 136.1 28.4 50.3 68.9 23.3 157.7 22.3 246.2 21.5 319 28.7 510.6 136.9 512c80.3 1 92.3-102.5 129.5-152.3 26.4-35.5 60.5-45.5 102.4-55.9 72-17.8 121.1-74.7 121-150z"/></svg>����mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/paypal.svg�����������������������0000664�0000000�0000000�00000001511�14753064456�0027416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2M357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/perbyte.svg����������������������0000664�0000000�0000000�00000001667�14753064456�0027616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M305.314 284.578H246.6V383.3h58.711q24.423 0 38.193-13.77t13.77-36.11q0-21.826-14.032-35.335t-37.928-13.507M149.435 128.7H90.724v98.723h58.711q24.42 0 38.19-13.773t13.77-36.107q0-21.826-14.029-35.338T149.435 128.7M366.647 32H81.353A81.445 81.445 0 0 0 0 113.352v285.295A81.445 81.445 0 0 0 81.353 480h285.294A81.445 81.445 0 0 0 448 398.647V113.352A81.445 81.445 0 0 0 366.647 32m63.635 366.647a63.706 63.706 0 0 1-63.635 63.635H81.353a63.706 63.706 0 0 1-63.635-63.635V113.352a63.706 63.706 0 0 1 63.635-63.634h285.294a63.706 63.706 0 0 1 63.635 63.634ZM305.314 128.7H246.6v98.723h58.711q24.423 0 38.193-13.773t13.77-36.107q0-21.826-14.032-35.338T305.314 128.7"/></svg>�������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/periscope.svg��������������������0000664�0000000�0000000�00000001450�14753064456�0030123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8M226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4M338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4s44.8-19.9 44.8-44.4c0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/phabricator.svg������������������0000664�0000000�0000000�00000002302�14753064456�0030425�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m323 262.1-.1-13s21.7-19.8 21.1-21.2l-9.5-20c-.6-1.4-29.5-.5-29.5-.5l-9.4-9.3s.2-28.5-1.2-29.1l-20.1-9.2c-1.4-.6-20.7 21-20.7 21l-13.1-.2s-20.5-21.4-21.9-20.8l-20 8.3c-1.4.5.2 28.9.2 28.9l-9.1 9.1s-29.2-.9-29.7.4l-8.1 19.8c-.6 1.4 21 21 21 21l.1 12.9s-21.7 19.8-21.1 21.2l9.5 20c.6 1.4 29.5.5 29.5.5l9.4 9.3s-.2 31.8 1.2 32.3l20.1 8.3c1.4.6 20.7-23.5 20.7-23.5l13.1.2s20.5 23.8 21.8 23.3l20-7.5c1.4-.6-.2-32.1-.2-32.1l9.1-9.1s29.2.9 29.7-.5l8.1-19.8c.7-1.1-20.9-20.7-20.9-20.7m-44.9-8.7c.7 17.1-12.8 31.6-30.1 32.4s-32.1-12.5-32.8-29.6 12.8-31.6 30.1-32.3c17.3-.8 32.1 12.5 32.8 29.5m201.2-37.9-97-97-.1.1c-75.1-73.3-195.4-72.8-269.8 1.6-50.9 51-27.8 27.9-95.7 95.3-22.3 22.3-22.3 58.7 0 81 69.9 69.4 46.4 46 97.4 97l.1-.1c75.1 73.3 195.4 72.9 269.8-1.6 51-50.9 27.9-27.9 95.3-95.3 22.3-22.3 22.3-58.7 0-81M140.4 363.8c-59.6-59.5-59.6-156 0-215.5 59.5-59.6 156-59.5 215.6 0 59.5 59.5 59.6 156 0 215.6-59.6 59.5-156 59.4-215.6-.1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/phoenix-framework.svg������������0000664�0000000�0000000�00000005204�14753064456�0031600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M212.9 344.3c3.8-.1 22.8-1.4 25.6-2.2-2.4-2.6-43.6-1-68-49.6-4.3-8.6-7.5-17.6-6.4-27.6 2.9-25.5 32.9-30 52-18.5 36 21.6 63.3 91.3 113.7 97.5 37 4.5 84.6-17 108.2-45.4-.6-.1-.8-.2-1-.1-.4.1-.8.2-1.1.3-33.3 12.1-94.3 9.7-134.7-14.8-37.6-22.8-53.1-58.7-51.8-74.6 1.8-21.3 22.9-23.2 35.9-19.6 14.4 3.9 24.4 17.6 38.9 27.4 15.6 10.4 32.9 13.7 51.3 10.3 14.9-2.7 34.4-12.3 36.5-14.5-1.1-.1-1.8-.1-2.5-.2-6.2-.6-12.4-.8-18.5-1.7C279.8 194.5 262.1 47.4 138.5 37.9 94.2 34.5 39.1 46 2.2 72.9c-.8.6-1.5 1.2-2.2 1.8.1.2.1.3.2.5.8 0 1.6-.1 2.4-.2 6.3-1 12.5-.8 18.7.3 23.8 4.3 47.7 23.1 55.9 76.5 5.3 34.3-.7 50.8 8 86.1 19 77.1 91 107.6 127.7 106.4M75.3 64.9c-.9-1-.9-1.2-1.3-2 12.1-2.6 24.2-4.1 36.6-4.8-1.1 14.7-22.2 21.3-35.3 6.8m196.9 350.5c-42.8 1.2-92-26.7-123.5-61.4-4.6-5-16.8-20.2-18.6-23.4l.4-.4c6.6 4.1 25.7 18.6 54.8 27 24.2 7 48.1 6.3 71.6-3.3 22.7-9.3 41-.5 43.1 2.9-18.5 3.8-20.1 4.4-24 7.9-5.1 4.4-4.6 11.7 7 17.2 26.2 12.4 63-2.8 97.2 25.4 2.4 2 8.1 7.8 10.1 10.7-.1.2-.3.3-.4.5-4.8-1.5-16.4-7.5-40.2-9.3-24.7-2-46.3 5.3-77.5 6.2m174.8-252c16.4-5.2 41.3-13.4 66.5-3.3 16.1 6.5 26.2 18.7 32.1 34.6 3.5 9.4 5.1 19.7 5.1 28.7-.2 0-.4 0-.6.1-.2-.4-.4-.9-.5-1.3-5-22-29.9-43.8-67.6-29.9-50.2 18.6-130.4 9.7-176.9-48-.7-.9-2.4-1.7-1.3-3.2.1-.2 2.1.6 3 1.3 18.1 13.4 38.3 21.9 60.3 26.2 30.5 6.1 54.6 2.9 79.9-5.2m102.7 117.5c-32.4.2-33.8 50.1-103.6 64.4-18.2 3.7-38.7 4.6-44.9 4.2v-.4c2.8-1.5 14.7-2.6 29.7-16.6 7.9-7.3 15.3-15.1 22.8-22.9 19.5-20.2 41.4-42.2 81.9-39 23.1 1.8 29.3 8.2 36.1 12.7.3.2.4.5.7.9-.5 0-.7.1-.9 0-7-2.7-14.3-3.3-21.8-3.3m-12.3-24.1c-.1.2-.1.4-.2.6-28.9-4.4-48-7.9-68.5 4-17 9.9-31.4 20.5-62 24.4-27.1 3.4-45.1 2.4-66.1-8-.3-.2-.6-.4-1-.6 0-.2.1-.3.1-.5 24.9 3.8 36.4 5.1 55.5-5.8 22.3-12.9 40.1-26.6 71.3-31 29.6-4.1 51.3 2.5 70.9 16.9M268.6 97.3c-.6-.6-1.1-1.2-2.1-2.3 7.6 0 29.7-1.2 53.4 8.4 19.7 8 32.2 21 50.2 32.9 11.1 7.3 23.4 9.3 36.4 8.1 4.3-.4 8.5-1.2 12.8-1.7q.6-.15 1.5.3c-.6.4-1.2.9-1.8 1.2-8.1 4-16.7 6.3-25.6 7.1-26.1 2.6-50.3-3.7-73.4-15.4-19.3-9.9-36.4-22.9-51.4-38.6M640 335.7c-3.5 3.1-22.7 11.6-42.7 5.3-12.3-3.9-19.5-14.9-31.6-24.1-10-7.6-20.9-7.9-28.1-8.4.6-.8.9-1.2 1.2-1.4 14.8-9.2 30.5-12.2 47.3-6.5 12.5 4.2 19.2 13.5 30.4 24.2 10.8 10.4 21 9.9 23.1 10.5.1-.1.2 0 .4.4m-212.5 137c2.2 1.2 1.6 1.5 1.5 2-18.5-1.4-33.9-7.6-46.8-22.2-21.8-24.7-41.7-27.9-48.6-29.7.5-.2.8-.4 1.1-.4 13.1.1 26.1.7 38.9 3.9 25.3 6.4 35 25.4 41.6 35.3 3.2 4.8 7.3 8.3 12.3 11.1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/phoenix-squadron.svg�������������0000664�0000000�0000000�00000003402�14753064456�0031435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 63.38C142.49 27.25 201.55 7.31 260.51 8.81c29.58-.38 59.11 5.37 86.91 15.33-24.13-4.63-49-6.34-73.38-2.45C231.17 27 191 48.84 162.21 80.87c5.67-1 10.78-3.67 16-5.86 18.14-7.87 37.49-13.26 57.23-14.83 19.74-2.13 39.64-.43 59.28 1.92-14.42 2.79-29.12 4.57-43 9.59-34.43 11.07-65.27 33.16-86.3 62.63-13.8 19.71-23.63 42.86-24.67 67.13-.35 16.49 5.22 34.81 19.83 44a53.27 53.27 0 0 0 37.52 6.74c15.45-2.46 30.07-8.64 43.6-16.33 11.52-6.82 22.67-14.55 32-24.25 3.79-3.22 2.53-8.45 2.62-12.79-2.12-.34-4.38-1.11-6.3.3a203 203 0 0 1-35.82 15.37c-20 6.17-42.16 8.46-62.1.78 12.79 1.73 26.06.31 37.74-5.44 20.23-9.72 36.81-25.2 54.44-38.77a526.6 526.6 0 0 1 88.9-55.31c25.71-12 52.94-22.78 81.57-24.12-15.63 13.72-32.15 26.52-46.78 41.38-14.51 14-27.46 29.5-40.11 45.18-3.52 4.6-8.95 6.94-13.58 10.16a150.7 150.7 0 0 0-51.89 60.1c-9.33 19.68-14.5 41.85-11.77 63.65 1.94 13.69 8.71 27.59 20.9 34.91 12.9 8 29.05 8.07 43.48 5.1 32.8-7.45 61.43-28.89 81-55.84 20.44-27.52 30.52-62.2 29.16-96.35-.52-7.5-1.57-15-1.66-22.49 8 19.48 14.82 39.71 16.65 60.83 2 14.28.75 28.76-1.62 42.9-1.91 11-5.67 21.51-7.78 32.43a165 165 0 0 0 39.34-81.07 183.64 183.64 0 0 0-14.21-104.64c20.78 32 32.34 69.58 35.71 107.48.49 12.73.49 25.51 0 38.23A243.2 243.2 0 0 1 482 371.34c-26.12 47.34-68 85.63-117.19 108-78.29 36.23-174.68 31.32-248-14.68A248.34 248.34 0 0 1 25.36 366 238.3 238.3 0 0 1 0 273.08v-31.34C3.93 172 40.87 105.82 96 63.38m222 80.33a79 79 0 0 0 16-4.48c5-1.77 9.24-5.94 10.32-11.22-8.96 4.99-17.98 9.92-26.32 15.7"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/php.svg��������������������������0000664�0000000�0000000�00000002001�14753064456�0026712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 104.5c171.4 0 303.2 72.2 303.2 151.5S491.3 407.5 320 407.5c-171.4 0-303.2-72.2-303.2-151.5S148.7 104.5 320 104.5m0-16.8C143.3 87.7 0 163 0 256s143.3 168.3 320 168.3S640 349 640 256 496.7 87.7 320 87.7M218.2 242.5c-7.9 40.5-35.8 36.3-70.1 36.3l13.7-70.6c38 0 63.8-4.1 56.4 34.3M97.4 350.3h36.7l8.7-44.8c41.1 0 66.6 3 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7h-70.7zm185.7-213.6h36.5l-8.7 44.8c31.5 0 60.7-2.3 74.8 10.7 14.8 13.6 7.7 31-8.3 113.1h-37c15.4-79.4 18.3-86 12.7-92-5.4-5.8-17.7-4.6-47.4-4.6l-18.8 96.6h-36.5zM505 242.5c-8 41.1-36.7 36.3-70.1 36.3l13.7-70.6c38.2 0 63.8-4.1 56.4 34.3M384.2 350.3H421l8.7-44.8c43.2 0 67.1 2.5 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7H417z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/pied-piper-alt.svg���������������0000664�0000000�0000000�00000003526�14753064456�0030754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9zm135.9 197.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1M340.8 177c6.6 2.8 11.5 9.2 22.7 22.1 2-1.4 7.5-5.2 7.5-8.6 0-4.9-11.8-13.2-13.2-23 11.2-5.7 25.2-6 37.6-8.9 68.1-16.4 116.3-52.9 146.8-116.7C548.3 29.3 554 16.1 554.6 2l-2 2.6c-28.4 50-33 63.2-81.3 100-31.9 24.4-69.2 40.2-106.6 54.6l-6.3-.3v-21.8c-19.6 1.6-19.7-14.6-31.6-23-18.7 20.6-31.6 40.8-58.9 51.1-12.7 4.8-19.6 10-25.9 21.8 34.9-16.4 91.2-13.5 98.8-10M555.5 0l-.6 1.1-.3.9.6-.6zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9.6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9m-196.2 46.1v27.2l11.8-3.4-2.9-23.8zm-68.7-150.4 24.1 61.2 21-13.8-31.3-50.9zm84.4 154.9 2 12.4c9-1.5 58.4-6.6 58.4-14.1 0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/pied-piper-hat.svg���������������0000664�0000000�0000000�00000001475�14753064456�0030751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M640 24.9c-80.8 53.6-89.4 92.5-96.4 104.4-6.7 12.2-11.7 60.3-23.3 83.6-11.7 23.6-54.2 42.2-66.1 50-11.7 7.8-28.3 38.1-41.9 64.2-108.1-4.4-167.4 38.8-259.2 93.6 29.4-9.7 43.3-16.7 43.3-16.7 94.2-36 139.3-68.3 281.1-49.2 1.1 0 1.9.6 2.8.8 3.9 2.2 5.3 6.9 3.1 10.8l-53.9 95.8c-2.5 4.7-7.8 7.2-13.1 6.1-126.8-23.8-226.9 17.3-318.9 18.6C24.1 488 0 453.4 0 451.8c0-1.1.6-1.7 1.7-1.7 0 0 38.3 0 103.1-15.3C178.4 294.5 244 245.4 315.4 245.4c0 0 71.7 0 90.6 61.9 22.8-39.7 28.3-49.2 28.3-49.2 5.3-9.4 35-77.2 86.4-141.4 51.5-64 90.4-79.9 119.3-91.8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/pied-piper-pp.svg����������������0000664�0000000�0000000�00000001655�14753064456�0030614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M205.3 174.6c0 21.1-14.2 38.1-31.7 38.1-7.1 0-12.8-1.2-17.2-3.7v-68c4.4-2.7 10.1-4.2 17.2-4.2 17.5 0 31.7 16.9 31.7 37.8m52.6 67c-7.1 0-12.8 1.5-17.2 4.2v68c4.4 2.5 10.1 3.7 17.2 3.7 17.4 0 31.7-16.9 31.7-37.8 0-21.1-14.3-38.1-31.7-38.1M448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48M185 255.1c41 0 74.2-35.6 74.2-79.6S226 95.9 185 95.9c-12 0-24.1 3.2-34.6 8.8h-45.7V311l51.8-10.1v-50.6c8.6 3.1 18.1 4.8 28.5 4.8m158.4 25.3c0-44-33.2-79.6-73.9-79.6-3.2 0-6.4.2-9.6.7-3.7 12.5-10.1 23.8-19.2 33.4-13.8 15-32.2 23.8-51.8 24.8V416l51.8-10.1v-50.6c8.6 3.2 18.2 4.7 28.7 4.7 40.8 0 74-35.6 74-79.6"/></svg>�����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/pied-piper.svg�������������������0000664�0000000�0000000�00000001457�14753064456�0030177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 480 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M455.93 23.2c-26.7 6.8-68.14 28.49-114.58 67.46A206 206 0 0 0 240 64C125.13 64 32 157.12 32 272s93.13 208 208 208 208-93.13 208-208a207.25 207.25 0 0 0-58.75-144.81 155.4 155.4 0 0 0-17 27.4A176.16 176.16 0 0 1 417.1 272c0 97.66-79.44 177.11-177.09 177.11a175.8 175.8 0 0 1-87.63-23.4c82.94-107.33 150.79-37.77 184.31-226.65 5.79-32.62 28-94.26 126.23-160.18 8.08-5.43 2.43-18.08-6.99-15.68M125 406.4A176.66 176.66 0 0 1 62.9 272c0-97.66 79.45-177.1 177.1-177.1a174 174 0 0 1 76.63 17.75C250.64 174.76 189.77 265.52 125 406.4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/pinterest-p.svg������������������0000664�0000000�0000000�00000001420�14753064456�0030401�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/pinterest.svg��������������������0000664�0000000�0000000�00000001673�14753064456�0030156�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3.8-3.4 5-20.3 6.9-28.1.6-2.5.3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248"/></svg>���������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/pix.svg��������������������������0000664�0000000�0000000�00000001700�14753064456�0026730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M242.4 292.5c5.4-5.4 14.7-5.4 20.1 0l77 77c14.2 14.2 33.1 22 53.1 22h15.1l-97.1 97.1c-30.3 29.5-79.5 29.5-109.8 0l-97.5-97.4h9.3c20 0 38.9-7.8 53.1-22zm20.1-73.6c-6.4 5.5-14.6 5.6-20.1 0l-76.7-76.7c-14.2-15.1-33.1-22-53.1-22h-9.3l97.4-97.44c30.4-30.346 79.6-30.346 109.9 0l97.2 97.14h-15.2c-20 0-38.9 7.8-53.1 22zm-149.9-76.2c13.8 0 26.5 5.6 37.1 15.4l76.7 76.7c7.2 6.3 16.6 10.8 26.1 10.8 9.4 0 18.8-4.5 26-10.8l77-77c9.8-9.7 23.3-15.3 37.1-15.3h37.7l58.3 58.3c30.3 30.3 30.3 79.5 0 109.8l-58.3 58.3h-37.7c-13.8 0-27.3-5.6-37.1-15.4l-77-77c-13.9-13.9-38.2-13.9-52.1.1l-76.7 76.6c-10.6 9.8-23.3 15.4-37.1 15.4H80.78l-58.02-58c-30.346-30.3-30.346-79.5 0-109.8l58.02-58.1z"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/pixiv.svg������������������������0000664�0000000�0000000�00000001550�14753064456�0027272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm171.5 84c41 0 76.3 12.9 101.4 35.2 25.2 22.2 39.8 54.1 39.8 88.8.1 35.3-16.6 66.3-42.4 87-25.9 20.8-60.6 32.4-98.8 32.4-43.5 0-83.8-16.1-83.8-16.1v51.8c7.4 2.2 19.7 7 11.9 14.8h-58.8c-7.7-7.8 3.6-12.4 12.1-14.8V175.5c-19.8 15.4-29.9 28.8-35.1 38.7 6 19.4-5.3 18.5-5.3 18.5l-20.5-33S128.7 116 235.5 116m-3.6 222.9c30 0 56-11.3 73.9-29.2 17.9-18.1 27.9-41.6 28-70.2-.1-29.3-9.5-54.6-26.7-73.6-17.2-18.9-42.7-31.3-75.2-31.4-26.7-.1-59.8 9-80.2 23.7v164.9c18.6 9.3 46.8 15.9 80.2 15.8"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/playstation.svg������������������0000664�0000000�0000000�00000001550�14753064456�0030502�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M570.9 372.3c-11.3 14.2-38.8 24.3-38.8 24.3L327 470.2v-54.3l150.9-53.8c17.1-6.1 19.8-14.8 5.8-19.4-13.9-4.6-39.1-3.3-56.2 2.9L327 381.1v-56.4c23.2-7.8 47.1-13.6 75.7-16.8 40.9-4.5 90.9.6 130.2 15.5 44.2 14 49.2 34.7 38 48.9m-224.4-92.5v-139c0-16.3-3-31.3-18.3-35.6-11.7-3.8-19 7.1-19 23.4v347.9l-93.8-29.8V32c39.9 7.4 98 24.9 129.2 35.4C424.1 94.7 451 128.7 451 205.2c0 74.5-46 102.8-104.5 74.6M43.2 410.2c-45.4-12.8-53-39.5-32.3-54.8 19.1-14.2 51.7-24.9 51.7-24.9l134.5-47.8v54.5l-96.8 34.6c-17.1 6.1-19.7 14.8-5.8 19.4s39.1 3.3 56.2-2.9l46.4-16.9v48.8c-51.6 9.3-101.4 7.3-153.9-10"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/product-hunt.svg�����������������0000664�0000000�0000000�00000001027�14753064456�0030566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M326.3 218.8c0 20.5-16.7 37.2-37.2 37.2h-70.3v-74.4h70.3c20.5 0 37.2 16.7 37.2 37.2M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248m-128.1-37.2c0-47.9-38.9-86.8-86.8-86.8H169.2v248h49.6v-74.4h70.3c47.9 0 86.8-38.9 86.8-86.8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/pushed.svg�����������������������0000664�0000000�0000000�00000001333�14753064456�0027422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 432 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m407 111.9-98.5-9 14-33.4c10.4-23.5-10.8-40.4-28.7-37L22.5 76.9c-15.1 2.7-26 18.3-21.4 36.6l105.1 348.3c6.5 21.3 36.7 24.2 47.7 7l35.3-80.8 235.2-231.3c16.4-16.8 4.3-42.9-17.4-44.8M297.6 53.6c5.1-.7 7.5 2.5 5.2 7.4L286 100.9 108.6 84.6zM22.7 107.9c-3.1-5.1 1-10 6.1-9.1l248.7 22.7-96.9 230.7zM136 456.4c-2.6 4-7.9 3.1-9.4-1.2L43.5 179.7l127.7 197.6c-7 15-35.2 79.1-35.2 79.1m272.8-314.5L210.1 337.3l89.7-213.7 106.4 9.7c4 1.1 5.7 5.3 2.6 8.6"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/python.svg�����������������������0000664�0000000�0000000�00000002032�14753064456�0027450�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.8 200.5c-7.7-30.9-22.3-54.2-53.4-54.2h-40.1v47.4c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6M286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3M167.8 248.1h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4m-6.7-142.6c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4 11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/qq.svg���������������������������0000664�0000000�0000000�00000001530�14753064456�0026552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M433.754 420.445c-11.526 1.393-44.86-52.741-44.86-52.741 0 31.345-16.136 72.247-51.051 101.786 16.842 5.192 54.843 19.167 45.803 34.421-7.316 12.343-125.51 7.881-159.632 4.037-34.122 3.844-152.316 8.306-159.632-4.037-9.045-15.25 28.918-29.214 45.783-34.415-34.92-29.539-51.059-70.445-51.059-101.792 0 0-33.334 54.134-44.859 52.741-5.37-.65-12.424-29.644 9.347-99.704 10.261-33.024 21.995-60.478 40.144-105.779C60.683 98.063 108.982.006 224 0c113.737.006 163.156 96.133 160.264 214.963 18.118 45.223 29.912 72.85 40.144 105.778 21.768 70.06 14.716 99.053 9.346 99.704"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/quinscape.svg��������������������0000664�0000000�0000000�00000001147�14753064456�0030125�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M313.6 474.6h-1a158.1 158.1 0 0 1 0-316.2c94.9 0 168.2 83.1 157 176.6 4 5.1 8.2 9.6 11.2 15.3 13.4-30.3 20.3-62.4 20.3-97.7C501.1 117.5 391.6 8 256.5 8S12 117.5 12 252.6s109.5 244.6 244.5 244.6a237.4 237.4 0 0 0 70.4-10.1c-5.2-3.5-8.9-8.1-13.3-12.5m-.1-.1.4.1zm78.4-168.9a99.2 99.2 0 1 0 99.2 99.2 99.18 99.18 0 0 0-99.2-99.2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/quora.svg������������������������0000664�0000000�0000000�00000001414�14753064456�0027261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M440.5 386.7h-29.3c-1.5 13.5-10.5 30.8-33 30.8-20.5 0-35.3-14.2-49.5-35.8 44.2-34.2 74.7-87.5 74.7-153C403.5 111.2 306.8 32 205 32 105.3 32 7.3 111.7 7.3 228.7c0 134.1 131.3 221.6 249 189C276 451.3 302 480 351.5 480c81.8 0 90.8-75.3 89-93.3M297 329.2C277.5 300 253.3 277 205.5 277c-30.5 0-54.3 10-69 22.8l12.2 24.3c6.2-3 13-4 19.8-4 35.5 0 53.7 30.8 69.2 61.3-10 3-20.7 4.2-32.7 4.2-75 0-107.5-53-107.5-156.7C97.5 124.5 130 71 205 71c76.2 0 108.7 53.5 108.7 157.7.1 41.8-5.4 75.6-16.7 100.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/r-project.svg��������������������0000664�0000000�0000000�00000001472�14753064456�0030043�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 581 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M581 226.6C581 119.1 450.9 32 290.5 32S0 119.1 0 226.6C0 322.4 103.3 402 239.4 418.1V480h99.1v-61.5c24.3-2.7 47.6-7.4 69.4-13.9L448 480h112l-67.4-113.7c54.5-35.4 88.4-84.9 88.4-139.7m-466.8 14.5c0-73.5 98.9-133 220.8-133s211.9 40.7 211.9 133c0 50.1-26.5 85-70.3 106.4-2.4-1.6-4.7-2.9-6.4-3.7-10.2-5.2-27.8-10.5-27.8-10.5s86.6-6.4 86.6-92.7-90.6-87.9-90.6-87.9h-199V361c-74.1-21.5-125.2-67.1-125.2-119.9m225.1 38.3v-55.6c57.8 0 87.8-6.8 87.8 27.3 0 36.5-38.2 28.3-87.8 28.3m-.9 72.5H365c10.8 0 18.9 11.7 24 19.2-16.1 1.9-33 2.8-50.6 2.9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/raspberry-pi.svg�����������������0000664�0000000�0000000�00000007624�14753064456�0030562�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 407 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m372 232.5-3.7-6.5c.1-46.4-21.4-65.3-46.5-79.7 7.6-2 15.4-3.6 17.6-13.2 13.1-3.3 15.8-9.4 17.1-15.8 3.4-2.3 14.8-8.7 13.6-19.7 6.4-4.4 10-10.1 8.1-18.1 6.9-7.5 8.7-13.7 5.8-19.4 8.3-10.3 4.6-15.6 1.1-20.9 6.2-11.2.7-23.2-16.6-21.2-6.9-10.1-21.9-7.8-24.2-7.8-2.6-3.2-6-6-16.5-4.7-6.8-6.1-14.4-5-22.3-2.1-9.3-7.3-15.5-1.4-22.6.8C271.6.6 269 5.5 263.5 7.6c-12.3-2.6-16.1 3-22 8.9l-6.9-.1c-18.6 10.8-27.8 32.8-31.1 44.1-3.3-11.3-12.5-33.3-31.1-44.1l-6.9.1c-5.9-5.9-9.7-11.5-22-8.9-5.6-2-8.1-7-19.4-3.4-4.6-1.4-8.9-4.4-13.9-4.3-2.6.1-5.5 1-8.7 3.5-7.9-3-15.5-4-22.3 2.1-10.5-1.3-14 1.4-16.5 4.7-2.3 0-17.3-2.3-24.2 7.8C21.2 16 15.8 28 22 39.2c-3.5 5.4-7.2 10.7 1.1 20.9-2.9 5.7-1.1 11.9 5.8 19.4-1.8 8 1.8 13.7 8.1 18.1-1.2 11 10.2 17.4 13.6 19.7 1.3 6.4 4 12.4 17.1 15.8 2.2 9.5 10 11.2 17.6 13.2-25.1 14.4-46.6 33.3-46.5 79.7l-3.7 6.5c-28.8 17.2-54.7 72.7-14.2 117.7 2.6 14.1 7.1 24.2 11 35.4 5.9 45.2 44.5 66.3 54.6 68.8 14.9 11.2 30.8 21.8 52.2 29.2C159 504.2 181 512 203 512h1c22.1 0 44-7.8 64.2-28.4 21.5-7.4 37.3-18 52.2-29.2 10.2-2.5 48.7-23.6 54.6-68.8 3.9-11.2 8.4-21.3 11-35.4 40.6-45.1 14.7-100.5-14-117.7m-22.2-8c-1.5 18.7-98.9-65.1-82.1-67.9 45.7-7.5 83.6 19.2 82.1 67.9m-43 93.1c-24.5 15.8-59.8 5.6-78.8-22.8s-14.6-64.2 9.9-80 59.8-5.6 78.8 22.8 14.6 64.2-9.9 80M238.9 29.3c.8 4.2 1.8 6.8 2.9 7.6 5.4-5.8 9.8-11.7 16.8-17.3 0 3.3-1.7 6.8 2.5 9.4 3.7-5 8.8-9.5 15.5-13.3-3.2 5.6-.6 7.3 1.2 9.6 5.1-4.4 10-8.8 19.4-12.3-2.6 3.1-6.2 6.2-2.4 9.8 5.3-3.3 10.6-6.6 23.1-8.9-2.8 3.1-8.7 6.3-5.1 9.4 6.6-2.5 14-4.4 22.1-5.4-3.9 3.2-7.1 6.3-3.9 8.8 7.1-2.2 16.9-5.1 26.4-2.6l-6 6.1c-.7.8 14.1.6 23.9.8-3.6 5-7.2 9.7-9.3 18.2 1 1 5.8.4 10.4 0-4.7 9.9-12.8 12.3-14.7 16.6 2.9 2.2 6.8 1.6 11.2.1-3.4 6.9-10.4 11.7-16 17.3 1.4 1 3.9 1.6 9.7.9-5.2 5.5-11.4 10.5-18.8 15 1.3 1.5 5.8 1.5 10 1.6-6.7 6.5-15.3 9.9-23.4 14.2 4 2.7 6.9 2.1 10 2.1-5.7 4.7-15.4 7.1-24.4 10 1.7 2.7 3.4 3.4 7.1 4.1-9.5 5.3-23.2 2.9-27 5.6.9 2.7 3.6 4.4 6.7 5.8-15.4.9-57.3-.6-65.4-32.3 15.7-17.3 44.4-37.5 93.7-62.6-38.4 12.8-73 30-102 53.5-34.3-15.9-10.8-55.9 5.8-71.8m-34.4 114.6c24.2-.3 54.1 17.8 54 34.7-.1 15-21 27.1-53.8 26.9-32.1-.4-53.7-15.2-53.6-29.8 0-11.9 26.2-32.5 53.4-31.8m-123-12.8c3.7-.7 5.4-1.5 7.1-4.1-9-2.8-18.7-5.3-24.4-10 3.1 0 6 .7 10-2.1-8.1-4.3-16.7-7.7-23.4-14.2 4.2-.1 8.7 0 10-1.6-7.4-4.5-13.6-9.5-18.8-15 5.8.7 8.3.1 9.7-.9-5.6-5.6-12.7-10.4-16-17.3 4.3 1.5 8.3 2 11.2-.1-1.9-4.2-10-6.7-14.7-16.6 4.6.4 9.4 1 10.4 0-2.1-8.5-5.8-13.3-9.3-18.2 9.8-.1 24.6 0 23.9-.8l-6-6.1c9.5-2.5 19.3.4 26.4 2.6 3.2-2.5-.1-5.6-3.9-8.8 8.1 1.1 15.4 2.9 22.1 5.4 3.5-3.1-2.3-6.3-5.1-9.4 12.5 2.3 17.8 5.6 23.1 8.9 3.8-3.6.2-6.7-2.4-9.8 9.4 3.4 14.3 7.9 19.4 12.3 1.7-2.3 4.4-4 1.2-9.6 6.7 3.8 11.8 8.3 15.5 13.3 4.1-2.6 2.5-6.2 2.5-9.4 7 5.6 11.4 11.5 16.8 17.3 1.1-.8 2-3.4 2.9-7.6 16.6 15.9 40.1 55.9 6 71.8-29-23.5-63.6-40.7-102-53.5 49.3 25 78 45.3 93.7 62.6-8 31.8-50 33.2-65.4 32.3 3.1-1.4 5.8-3.2 6.7-5.8-4-2.8-17.6-.4-27.2-5.6m60.1 24.1c16.8 2.8-80.6 86.5-82.1 67.9-1.5-48.7 36.5-75.5 82.1-67.9M38.2 342c-23.7-18.8-31.3-73.7 12.6-98.3 26.5-7 9 107.8-12.6 98.3m91 98.2c-13.3 7.9-45.8 4.7-68.8-27.9-15.5-27.4-13.5-55.2-2.6-63.4 16.3-9.8 41.5 3.4 60.9 25.6 16.9 20 24.6 55.3 10.5 65.7m-26.4-119.7c-24.5-15.8-28.9-51.6-9.9-80s54.3-38.6 78.8-22.8 28.9 51.6 9.9 80c-19.1 28.4-54.4 38.6-78.8 22.8M205 496c-29.4 1.2-58.2-23.7-57.8-32.3-.4-12.7 35.8-22.6 59.3-22 23.7-1 55.6 7.5 55.7 18.9.5 11-28.8 35.9-57.2 35.4m58.9-124.9c.2 29.7-26.2 53.8-58.8 54s-59.2-23.8-59.4-53.4v-.6c-.2-29.7 26.2-53.8 58.8-54s59.2 23.8 59.4 53.4zm82.2 42.7c-25.3 34.6-59.6 35.9-72.3 26.3-13.3-12.4-3.2-50.9 15.1-72 20.9-23.3 43.3-38.5 58.9-26.6 10.5 10.3 16.7 49.1-1.7 72.3m22.9-73.2c-21.5 9.4-39-105.3-12.6-98.3 43.9 24.7 36.3 79.6 12.6 98.3"/></svg>������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/ravelry.svg����������������������0000664�0000000�0000000�00000003321�14753064456�0027615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M498.252 234.223c-1.208-10.34-1.7-20.826-3.746-31a310 310 0 0 0-9.622-36.6 184.1 184.1 0 0 0-30.874-57.5 251 251 0 0 0-18.818-21.689 237.4 237.4 0 0 0-47.113-36.116 240.8 240.8 0 0 0-56.723-24.668c-11.018-3.1-22.272-5.431-33.515-7.615-6.78-1.314-13.749-1.667-20.627-2.482-.316-.036-.6-.358-.9-.553q-16.143.009-32.288.006c-2.41.389-4.808.925-7.236 1.15a179.3 179.3 0 0 0-34.256 7.1 221.5 221.5 0 0 0-39.768 16.355 281.4 281.4 0 0 0-38.08 24.158c-6.167 4.61-12.268 9.36-17.974 14.518-10.173 9.207-20.372 18.433-29.927 28.268a244 244 0 0 0-33.648 43.95 206.5 206.5 0 0 0-20.494 44.6 198 198 0 0 0-7.691 34.759 201 201 0 0 0-1.552 35.521 300 300 0 0 0 4.425 40.24 226.9 226.9 0 0 0 16.73 53.3 210.5 210.5 0 0 0 24 39.528 213.6 213.6 0 0 0 26.358 28.416 251.3 251.3 0 0 0 41.787 30.586 288 288 0 0 0 55.9 25.277 269.5 269.5 0 0 0 40.641 9.835c6.071 1.01 12.275 1.253 18.412 1.873a4.2 4.2 0 0 1 1.19.56h32.289c2.507-.389 5-.937 7.527-1.143 16.336-1.332 32.107-5.335 47.489-10.717a220 220 0 0 0 48.952-23.818c9.749-6.447 19.395-13.077 28.737-20.1 5.785-4.348 10.988-9.5 16.3-14.457 3.964-3.7 7.764-7.578 11.51-11.5a232.2 232.2 0 0 0 31.427-41.639c9.542-16.045 17.355-32.905 22.3-50.926 2.859-10.413 4.947-21.045 7.017-31.652 1.032-5.279 1.251-10.723 1.87-16.087.036-.317.358-.6.552-.9v-37.056a9.8 9.8 0 0 1-.561-1.782m-161.117-1.15s-16.572-2.98-28.47-2.98c-27.2 0-33.57 14.9-33.57 37.04V360.8h-73.513V170.062H275.1v31.931c8.924-26.822 26.771-36.189 62.04-36.189Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/react.svg������������������������0000664�0000000�0000000�00000006007�14753064456�0027233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M418.2 177.2q-8.1-2.7-16.2-5.1c.9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2.6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5q-1.35-6.6-3-13.5c3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4M282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7M167.2 307.5c5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5 4.6 8.8 9.3 17.5 14.3 26.1m-30.3-120.3c14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26-6.3-14.9-11.6-29.5-16-43.6m27.4 68.9c6.6-13.8 13.8-27.3 21.4-40.6s15.8-26.2 24.4-38.9c15-1.1 30.3-1.7 45.9-1.7s31 .6 45.9 1.7q12.75 18.9 24.3 38.7c11.55 19.8 14.9 26.7 21.7 40.4q-10.05 20.7-21.6 40.8c-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6s-30.9-.5-45.6-1.4q-13.05-19.05-24.6-39c-11.55-19.95-14.8-26.8-21.5-40.6m180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6m14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2q-7.35-12.75-15.3-25.2c16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4M256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8M140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94m-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5m116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9m24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6.4 19.5.6 29.5.6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4m130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3m18.2-107.5c-2.8.9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4m-149.7-15c25.3 0 45.8-20.5 45.8-45.8s-20.5-45.8-45.8-45.8-45.8 20.5-45.8 45.8 20.5 45.8 45.8 45.8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/reacteurope.svg������������������0000664�0000000�0000000�00000012751�14753064456�0030456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m250.6 211.74 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3-7.1-.1-2.3-6.8-2.3 6.8-7.2.1 5.7 4.3zm63.7 0 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3-7.2-.1-2.3-6.8-2.3 6.8-7.2.1 5.7 4.3zm-91.3 50.5h-3.4c-4.8 0-3.8 4-3.8 12.1 0 4.7-2.3 6.1-5.8 6.1s-5.8-1.4-5.8-6.1v-36.6c0-4.7 2.3-6.1 5.8-6.1s5.8 1.4 5.8 6.1c0 7.2-.7 10.5 3.8 10.5h3.4c4.7-.1 3.8-3.9 3.8-12.3 0-9.9-6.7-14.1-16.8-14.1h-.2c-10.1 0-16.8 4.2-16.8 14.1V276c0 10.4 6.7 14.1 16.8 14.1h.2c10.1 0 16.8-3.8 16.8-14.1 0-9.86 1.1-13.76-3.8-13.76m-80.7 17.4h-14.7v-19.3H139c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8h-11.4v-18.3H142c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8h-21.7c-2.4-.1-3.7 1.3-3.7 3.8v59.1c0 2.5 1.3 3.8 3.8 3.8h21.9c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8m-42-18.5c4.6-2 7.3-6 7.3-12.4v-11.9c0-10.1-6.7-14.1-16.8-14.1H77.4c-2.5 0-3.8 1.3-3.8 3.8v59.1c0 2.5 1.3 3.8 3.8 3.8h3.4c2.5 0 3.8-1.3 3.8-3.8v-22.9h5.6l7.4 23.5a4.1 4.1 0 0 0 4.3 3.2h3.3c2.8 0 4-1.8 3.2-4.4zm-3.8-14c0 4.8-2.5 6.1-6.1 6.1h-5.8v-20.9h5.8c3.6 0 6.1 1.3 6.1 6.1zM176 226a3.82 3.82 0 0 0-4.2-3.4h-6.9a3.68 3.68 0 0 0-4 3.4l-11 59.2c-.5 2.7.9 4.1 3.4 4.1h3a3.74 3.74 0 0 0 4.1-3.5l1.8-11.3h12.2l1.8 11.3a3.74 3.74 0 0 0 4.1 3.5h3.5c2.6 0 3.9-1.4 3.4-4.1zm-12.3 39.3 4.7-29.7 4.7 29.7zm89.3 20.2v-53.2h7.5c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8h-25.8c-2.5 0-3.8 1.3-3.8 3.8v2.1c0 2.5 1.3 3.8 3.8 3.8h7.3v53.2c0 2.5 1.3 3.8 3.8 3.8h3.4c2.5.04 3.8-1.3 3.8-3.76zm248-.8h-19.4V258h16.1a1.89 1.89 0 0 0 2-2v-.8a1.89 1.89 0 0 0-2-2h-16.1v-25.8h19.1a1.89 1.89 0 0 0 2-2v-.8a1.77 1.77 0 0 0-2-1.9h-22.2a1.62 1.62 0 0 0-2 1.8v63a1.81 1.81 0 0 0 2 1.9H501a1.81 1.81 0 0 0 2-1.9v-.8a1.84 1.84 0 0 0-2-1.96zm-93.1-62.9h-.8c-10.1 0-15.3 4.7-15.3 14.1V276c0 9.3 5.2 14.1 15.3 14.1h.8c10.1 0 15.3-4.8 15.3-14.1v-40.1c0-9.36-5.2-14.06-15.3-14.06zm10.2 52.4c-.1 8-3 11.1-10.5 11.1s-10.5-3.1-10.5-11.1v-36.6c0-7.9 3-11.1 10.5-11.1s10.5 3.2 10.5 11.1zm-46.5-14.5c6.1-1.6 9.2-6.1 9.2-13.3v-9.7c0-9.4-5.2-14.1-15.3-14.1h-13.7a1.81 1.81 0 0 0-2 1.9v63a1.81 1.81 0 0 0 2 1.9h1.2a1.74 1.74 0 0 0 1.9-1.9v-26.9h11.6l10.4 27.2a2.32 2.32 0 0 0 2.3 1.5h1.5c1.4 0 2-1 1.5-2.3zm-6.4-3.9H355v-28.5h10.2c7.5 0 10.5 3.1 10.5 11.1v6.4c0 7.84-3 11.04-10.5 11.04zm85.9-33.1h-13.7a1.62 1.62 0 0 0-2 1.8v63a1.81 1.81 0 0 0 2 1.9h1.2a1.74 1.74 0 0 0 1.9-1.9v-26.1h10.6c10.1 0 15.3-4.8 15.3-14.1v-10.5c0-9.4-5.2-14.1-15.3-14.1m10.2 22.8c0 7.9-3 11.1-10.5 11.1h-10.2v-29.2h10.2c7.5-.1 10.5 3.1 10.5 11zM259.5 308l-2.3-6.8-2.3 6.8-7.1.1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3zm227.6-136.1a364 364 0 0 0-35.6-11.3c19.6-78 11.6-134.7-22.3-153.9C394.7-12.66 343.3 11 291 61.94q5.1 4.95 10.2 10.2c82.5-80 119.6-53.5 120.9-52.8 22.4 12.7 36 55.8 15.5 137.8a588 588 0 0 0-84.6-13C281.1 43.64 212.4 2 170.8 2 140 2 127 23 123.2 29.74c-18.1 32-13.3 84.2.1 133.8-70.5 20.3-120.7 54.1-120.3 95 .5 59.6 103.2 87.8 122.1 92.8-20.5 81.9-10.1 135.6 22.3 153.9 28 15.8 75.1 6 138.2-55.2q-5.1-4.95-10.2-10.2c-82.5 80-119.7 53.5-120.9 52.8-22.3-12.6-36-55.6-15.5-137.9 12.4 2.9 41.8 9.5 84.6 13 71.9 100.4 140.6 142 182.1 142 30.8 0 43.8-21 47.6-27.7 18-31.9 13.3-84.1-.1-133.8 152.3-43.8 156.2-130.2 33.9-176.3zM135.9 36.84c2.9-5.1 11.9-20.3 34.9-20.3 36.8 0 98.8 39.6 163.3 126.2a714 714 0 0 0-93.9.9 548 548 0 0 1 42.2-52.4Q277.3 86 272.2 81a598 598 0 0 0-50.7 64.2 570 570 0 0 0-84.4 14.6c-.2-1.4-24.3-82.2-1.2-123zm304.8 438.3c-2.9 5.1-11.8 20.3-34.9 20.3-36.7 0-98.7-39.4-163.3-126.2a695 695 0 0 0 93.9-.9 548 548 0 0 1-42.2 52.4q5.1 5.25 10.2 10.2a588.5 588.5 0 0 0 50.7-64.2c47.3-4.7 80.3-13.5 84.4-14.6 22.7 84.4 4.5 117 1.2 123m9.1-138.6c-3.6-11.9-7.7-24.1-12.4-36.4a12.67 12.67 0 0 1-10.7-5.7l-.1.1a19.6 19.6 0 0 1-5.4 3.6c5.7 14.3 10.6 28.4 14.7 42.2a535 535 0 0 1-72 13c3.5-5.3 17.2-26.2 32.2-54.2a24.6 24.6 0 0 1-6-3.2c-1.1 1.2-3.6 4.2-10.9 4.2-6.2 11.2-17.4 30.9-33.9 55.2a712 712 0 0 1-112.4 1c-7.9-11.2-21.5-31.1-36.8-57.8a21 21 0 0 1-3-1.5c-1.9 1.6-3.9 3.2-12.6 3.2 6.3 11.2 17.5 30.7 33.8 54.6a549 549 0 0 1-72.2-11.7q5.85-21 14.1-42.9c-3.2 0-5.4.2-8.4-1a17.6 17.6 0 0 1-6.9 1c-4.9 13.4-9.1 26.5-12.7 39.4C-31.7 297-12.1 216 126.7 175.64c3.6 11.9 7.7 24.1 12.4 36.4 10.4 0 12.9 3.4 14.4 5.3a12 12 0 0 1 2.3-2.2c-5.8-14.7-10.9-29.2-15.2-43.3 7-1.8 32.4-8.4 72-13-15.9 24.3-26.7 43.9-32.8 55.3a14.22 14.22 0 0 1 6.4 8 23.4 23.4 0 0 1 10.2-8.4c6.5-11.7 17.9-31.9 34.8-56.9a712 712 0 0 1 112.4-1c31.5 44.6 28.9 48.1 42.5 64.5a21.4 21.4 0 0 1 10.4-7.4c-6.4-11.4-17.6-31-34.3-55.5 40.4 4.1 65 10 72.2 11.7-4 14.4-8.9 29.2-14.6 44.2a20.7 20.7 0 0 1 6.8 4.3l.1.1a12.72 12.72 0 0 1 8.9-5.6c4.9-13.4 9.2-26.6 12.8-39.5a360 360 0 0 1 34.5 11c106.1 39.9 74 87.9 72.6 90.4-19.8 35.1-80.1 55.2-105.7 62.5m-114.4-114h-1.2a1.74 1.74 0 0 0-1.9 1.9v49.8c0 7.9-2.6 11.1-10.1 11.1s-10.1-3.1-10.1-11.1v-49.8a1.69 1.69 0 0 0-1.9-1.9H309a1.81 1.81 0 0 0-2 1.9v51.5c0 9.6 5 14.1 15.1 14.1h.4c10.1 0 15.1-4.6 15.1-14.1v-51.5a2 2 0 0 0-2.2-1.9M321.7 308l-2.3-6.8-2.3 6.8-7.1.1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3zm-31.1 7.4-2.3-6.8-2.3 6.8-7.1.1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3zm5.1-30.8h-19.4v-26.7h16.1a1.89 1.89 0 0 0 2-2v-.8a1.89 1.89 0 0 0-2-2h-16.1v-25.8h19.1a1.89 1.89 0 0 0 2-2v-.8a1.77 1.77 0 0 0-2-1.9h-22.2a1.81 1.81 0 0 0-2 1.9v63a1.81 1.81 0 0 0 2 1.9h22.5a1.77 1.77 0 0 0 2-1.9v-.8a1.83 1.83 0 0 0-2-2.06zm-7.4-99.4L286 192l-7.1.1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3-7.1-.1z"/></svg>�����������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/readme.svg�����������������������0000664�0000000�0000000�00000002370�14753064456�0027371�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M528.3 46.5H388.5c-48.1 0-89.9 33.3-100.4 80.3-10.6-47-52.3-80.3-100.4-80.3H48c-26.5 0-48 21.5-48 48v245.8c0 26.5 21.5 48 48 48h89.7c102.2 0 132.7 24.4 147.3 75 .7 2.8 5.2 2.8 6 0 14.7-50.6 45.2-75 147.3-75H528c26.5 0 48-21.5 48-48V94.6c0-26.4-21.3-47.9-47.7-48.1M242 311.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5V289c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V251zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm259.3 121.7c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5V228c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.8c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V190z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/rebel.svg������������������������0000664�0000000�0000000�00000001510�14753064456�0027220�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256.5 504C117.2 504 9 387.8 13.2 249.9 16 170.7 56.4 97.7 129.7 49.5c.3 0 1.9-.6 1.1.8-5.8 5.5-111.3 129.8-14.1 226.4 49.8 49.5 90 2.5 90 2.5 38.5-50.1-.6-125.9-.6-125.9-10-24.9-45.7-40.1-45.7-40.1l28.8-31.8c24.4 10.5 43.2 38.7 43.2 38.7.8-29.6-21.9-61.4-21.9-61.4L255.1 8l44.3 50.1c-20.5 28.8-21.9 62.6-21.9 62.6 13.8-23 43.5-39.3 43.5-39.3l28.5 31.8c-27.4 8.9-45.4 39.9-45.4 39.9-15.8 28.5-27.1 89.4.6 127.3 32.4 44.6 87.7-2.8 87.7-2.8 102.7-91.9-10.5-225-10.5-225-6.1-5.5.8-2.8.8-2.8 50.1 36.5 114.6 84.4 116.2 204.8C500.9 400.2 399 504 256.5 504"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/red-river.svg��������������������0000664�0000000�0000000�00000001270�14753064456�0030031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M353.2 32H94.8C42.4 32 0 74.4 0 126.8v258.4C0 437.6 42.4 480 94.8 480h258.4c52.4 0 94.8-42.4 94.8-94.8V126.8c0-52.4-42.4-94.8-94.8-94.8M144.9 200.9v56.3c0 27-21.9 48.9-48.9 48.9V151.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9h-56.3c-12.3-.6-24.6 11.6-24 24m176.3 72h-56.3c-12.3-.6-24.6 11.6-24 24v56.3c0 27-21.9 48.9-48.9 48.9V247.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/reddit-alien.svg�����������������0000664�0000000�0000000�00000002065�14753064456�0030476�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M373 138.6c-25.2 0-46.3-17.5-51.9-41-30.6 4.3-54.2 30.7-54.2 62.4v.2c47.4 1.8 90.6 15.1 124.9 36.3 12.6-9.7 28.4-15.5 45.5-15.5 41.3 0 74.7 33.4 74.7 74.7 0 29.8-17.4 55.5-42.7 67.5-2.4 86.8-97 156.6-213.2 156.6S45.5 410.1 43 323.4c-25.4-11.9-43-37.7-43-67.7C0 214.4 33.4 181 74.7 181c17.2 0 33 5.8 45.7 15.6 34-21.1 76.8-34.4 123.7-36.4v-.3c0-44.3 33.7-80.9 76.8-85.5C325.8 50.2 347.2 32 373 32c29.4 0 53.3 23.9 53.3 53.3s-23.9 53.3-53.3 53.3M157.5 255.3c-20.9 0-38.9 20.8-40.2 47.9s17.1 38.1 38 38.1 36.6-9.8 37.8-36.9-14.7-49.1-35.7-49.1zM395 303.1c-1.2-27.1-19.2-47.9-40.2-47.9s-36.9 22-35.7 49.1 16.9 36.9 37.8 36.9 39.3-11 38-38.1zm-60.1 70.8c1.5-3.6-1-7.7-4.9-8.1-23-2.3-47.9-3.6-73.8-3.6s-50.8 1.3-73.8 3.6c-3.9.4-6.4 4.5-4.9 8.1 12.9 30.8 43.3 52.4 78.7 52.4s65.8-21.6 78.7-52.4"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/reddit.svg�����������������������0000664�0000000�0000000�00000002265�14753064456�0027412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 256C0 114.6 114.6 0 256 0s256 114.6 256 256-114.6 256-256 256H37.1c-13.7 0-20.5-16.5-10.9-26.2L75 437C28.7 390.7 0 326.7 0 256m349.6-102.4c23.6 0 42.7-19.1 42.7-42.7s-19.1-42.7-42.7-42.7c-20.6 0-37.8 14.6-41.8 34-34.5 3.7-61.4 33-61.4 68.4v.2c-37.5 1.6-71.8 12.3-99 29.1-10.1-7.8-22.8-12.5-36.5-12.5-33 0-59.8 26.8-59.8 59.8 0 24 14.1 44.6 34.4 54.1 2 69.4 77.6 125.2 170.6 125.2s168.7-55.9 170.6-125.3c20.2-9.6 34.1-30.2 34.1-54 0-33-26.8-59.8-59.8-59.8-13.7 0-26.3 4.6-36.4 12.4-27.4-17-62.1-27.7-100-29.1v-.2c0-25.4 18.9-46.5 43.4-49.9 4.4 18.8 21.3 32.8 41.5 32.8zm-172.5 93.3c16.7 0 29.5 17.6 28.5 39.3s-13.5 29.6-30.3 29.6-31.4-8.8-30.4-30.5S160.3 247 177 247zm190.1 38.3c1 21.7-13.7 30.5-30.4 30.5s-29.3-7.9-30.3-29.6 11.8-39.3 28.5-39.3 31.2 16.6 32.1 38.3zm-48.1 56.7c-10.3 24.6-34.6 41.9-63 41.9s-52.7-17.3-63-41.9c-1.2-2.9.8-6.2 3.9-6.5 18.4-1.9 38.3-2.9 59.1-2.9s40.7 1 59.1 2.9c3.1.3 5.1 3.6 3.9 6.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/redhat.svg�����������������������0000664�0000000�0000000�00000001525�14753064456�0027404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M341.52 285.56c33.65 0 82.34-6.94 82.34-47 .22-6.74.86-1.82-20.88-96.24-4.62-19.15-8.68-27.84-42.31-44.65-26.09-13.34-82.92-35.37-99.73-35.37-15.66 0-20.2 20.17-38.87 20.17-18 0-31.31-15.06-48.12-15.06-16.14 0-26.66 11-34.78 33.62-27.5 77.55-26.28 74.27-26.12 78.27 0 24.8 97.64 106.11 228.47 106.11M429 254.84c4.65 22 4.65 24.35 4.65 27.25 0 37.66-42.33 58.56-98 58.56-125.74.08-235.91-73.65-235.91-122.33a49.55 49.55 0 0 1 4.06-19.72C58.56 200.86 0 208.93 0 260.63c0 84.67 200.63 189 359.49 189 121.79 0 152.51-55.08 152.51-98.58 0-34.21-29.59-73.05-82.93-96.24"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/renren.svg�����������������������0000664�0000000�0000000�00000001146�14753064456�0027425�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M214 169.1c0 110.4-61 205.4-147.6 247.4C30 373.2 8 317.7 8 256.6 8 133.9 97.1 32.2 214 12.5zM255 504c-42.9 0-83.3-11-118.5-30.4C193.7 437.5 239.9 382.9 255 319c15.5 63.9 61.7 118.5 118.8 154.7C338.7 493 298.3 504 255 504m190.6-87.5C359 374.5 298 279.6 298 169.1V12.5c116.9 19.7 206 121.4 206 244.1 0 61.1-22 116.6-58.4 159.9"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/replyd.svg�����������������������0000664�0000000�0000000�00000002604�14753064456�0027433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 480H128C57.6 480 0 422.4 0 352V160C0 89.6 57.6 32 128 32h192c70.4 0 128 57.6 128 128v192c0 70.4-57.6 128-128 128M193.4 273.2c-6.1-2-11.6-3.1-16.4-3.1-7.2 0-13.5 1.9-18.9 5.6s-9.6 9-12.8 15.8h-1.1l-4.2-18.3h-28v138.9h36.1v-89.7q2.25-8.1 8.7-13.2c4.3-3.4 9.8-5.1 16.2-5.1 4.6 0 9.8 1 15.6 3.1zm115.2 103.4c-3.2 2.4-7.7 4.8-13.7 7.1s-12.8 3.5-20.4 3.5c-12.2 0-21.1-3-26.5-8.9q-8.25-8.85-9-26.4h83.3c.9-4.8 1.6-9.4 2.1-13.9.5-4.4.7-8.6.7-12.5 0-10.7-1.6-19.7-4.7-26.9-3.2-7.2-7.3-13-12.5-17.2-5.2-4.3-11.1-7.3-17.8-9.2-6.7-1.8-13.5-2.8-20.6-2.8q-31.65 0-49.2 18.3c-17.55 18.3-17.5 30.5-17.5 55q0 34.2 15.6 53.7c10.4 13.1 26.8 19.6 49.2 19.6 10.7 0 20.9-1.5 30.4-4.6s17.1-6.8 22.6-11.2zm-21.8-70.3c3.8 5.4 5.3 13.1 4.6 23.1h-51.7c.9-9.4 3.7-17 8.2-22.6s11.5-8.5 21-8.5c8.2-.1 14.1 2.6 17.9 8m79.9 2.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4-9.6-5.7-16.7-5.7c-6.7 0-12 1.9-16.1 5.7s-6.1 8.9-6.1 15.4 2 11.7 6.1 15.6m0 100.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4-9.6-5.7-16.7-5.7c-6.7 0-12 1.9-16.1 5.7s-6.1 8.9-6.1 15.4c0 6.6 2 11.7 6.1 15.6"/></svg>����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/researchgate.svg�����������������0000664�0000000�0000000�00000001766�14753064456�0030601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 32v448h448V32zm262.2 334.4c-6.6 3-33.2 6-50-14.2-9.2-10.6-25.3-33.3-42.2-63.6-8.9 0-14.7 0-21.4-.6v46.4c0 23.5 6 21.2 25.8 23.9v8.1c-6.9-.3-23.1-.8-35.6-.8-13.1 0-26.1.6-33.6.8v-8.1c15.5-2.9 22-1.3 22-23.9V225c0-22.6-6.4-21-22-23.9V193c25.8 1 53.1-.6 70.9-.6 31.7 0 55.9 14.4 55.9 45.6 0 21.1-16.7 42.2-39.2 47.5 13.6 24.2 30 45.6 42.2 58.9 7.2 7.8 17.2 14.7 27.2 14.7zm22.9-135c-23.3 0-32.2-15.7-32.2-32.2V167c0-12.2 8.8-30.4 34-30.4s30.4 17.9 30.4 17.9l-10.7 7.2s-5.5-12.5-19.7-12.5c-7.9 0-19.7 7.3-19.7 19.7v26.8c0 13.4 6.6 23.3 17.9 23.3 14.1 0 21.5-10.9 21.5-26.8h-17.9v-10.7h30.4c0 20.5 4.7 49.9-34 49.9m-116.5 44.7c-9.4 0-13.6-.3-20-.8v-69.7c6.4-.6 15-.6 22.5-.6 23.3 0 37.2 12.2 37.2 34.5 0 21.9-15 36.6-39.7 36.6"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/resolving.svg��������������������0000664�0000000�0000000�00000001356�14753064456�0030147�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M281.2 278.2c46-13.3 49.6-23.5 44-43.4L314 195.5c-6.1-20.9-18.4-28.1-71.1-12.8L54.7 236.8l28.6 98.6zM248.5 8C131.4 8 33.2 88.7 7.2 197.5l221.9-63.9c34.8-10.2 54.2-11.7 79.3-8.2 36.3 6.1 52.7 25 61.4 55.2l10.7 37.8c8.2 28.1 1 50.6-23.5 73.6-19.4 17.4-31.2 24.5-61.4 33.2L203 351.8l220.4 27.1 9.7 34.2-48.1 13.3-286.8-37.3 23 80.2c36.8 22 80.3 34.7 126.3 34.7 137 0 248.5-111.4 248.5-248.3C497 119.4 385.5 8 248.5 8M38.3 388.6 0 256.8c0 48.5 14.3 93.4 38.3 131.8"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/rev.svg��������������������������0000664�0000000�0000000�00000001203�14753064456�0026722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M289.67 274.89a65.57 65.57 0 1 1-65.56-65.56 65.64 65.64 0 0 1 65.56 65.56m139.55-5.05h-.13a204.7 204.7 0 0 0-74.32-153l-45.38 26.2a157.07 157.07 0 0 1 71.81 131.84C381.2 361.5 310.73 432 224.11 432S67 361.5 67 274.88c0-81.88 63-149.27 143-156.43v39.12l108.77-62.79L210 32v38.32c-106.7 7.25-191 96-191 204.57 0 111.59 89.12 202.29 200.06 205v.11h210.16z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/rocketchat.svg�������������������0000664�0000000�0000000�00000002766�14753064456�0030274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M284.046 224.8a34.114 34.114 0 1 0 34.317 34.113 34.217 34.217 0 0 0-34.317-34.113m-110.45 0a34.114 34.114 0 1 0 34.317 34.113A34.217 34.217 0 0 0 173.6 224.8Zm220.923 0a34.114 34.114 0 1 0 34.317 34.113 34.215 34.215 0 0 0-34.317-34.113m153.807-55.319c-15.535-24.172-37.31-45.57-64.681-63.618-52.886-34.817-122.374-54-195.666-54a406 406 0 0 0-72.032 6.357 238.5 238.5 0 0 0-49.51-36.588C99.684-11.7 40.859.711 11.135 11.421A14.29 14.29 0 0 0 5.58 34.782C26.542 56.458 61.222 99.3 52.7 138.252c-33.142 33.9-51.112 74.776-51.112 117.337 0 43.372 17.97 84.248 51.112 118.148 8.526 38.956-26.154 81.816-47.116 103.491a14.284 14.284 0 0 0 5.555 23.34c29.724 10.709 88.549 23.147 155.324-10.2a238.7 238.7 0 0 0 49.51-36.589A406 406 0 0 0 288 460.14c73.313 0 142.8-19.159 195.667-53.975 27.371-18.049 49.145-39.426 64.679-63.619 17.309-26.923 26.07-55.916 26.07-86.125-.022-31.021-8.782-59.991-26.09-86.936ZM284.987 409.9a345.7 345.7 0 0 1-89.446-11.5l-20.129 19.393a184.4 184.4 0 0 1-37.138 27.585 145.8 145.8 0 0 1-52.522 14.87c.983-1.771 1.881-3.563 2.842-5.356q30.258-55.68 16.325-100.078c-32.992-25.962-52.778-59.2-52.778-95.4 0-83.1 104.254-150.469 232.846-150.469s232.867 67.373 232.867 150.469c0 83.111-104.254 150.486-232.867 150.486"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/rockrms.svg����������������������0000664�0000000�0000000�00000001034�14753064456�0027610�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8m157.4 419.5h-90l-112-131.3c-17.9-20.4-3.9-56.1 26.6-56.1h75.3l-84.6-99.3-84.3 98.9h-90L193.5 67.2c14.4-18.4 41.3-17.3 54.5 0l157.7 185.1c19 22.8 2 57.2-27.6 56.1-.6 0-74.2.2-74.2.2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/rust.svg�������������������������0000664�0000000�0000000�00000007765�14753064456�0027146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m508.52 249.75-21.82-13.51c-.17-2-.34-3.93-.55-5.88l18.72-17.5a7.35 7.35 0 0 0-2.44-12.25l-24-9c-.54-1.88-1.08-3.78-1.67-5.64l15-20.83a7.35 7.35 0 0 0-4.79-11.54l-25.42-4.15c-.9-1.73-1.79-3.45-2.73-5.15l10.68-23.42a7.35 7.35 0 0 0-6.95-10.39l-25.82.91q-1.79-2.22-3.61-4.4L439 81.84a7.36 7.36 0 0 0-8.84-8.84L405 78.93q-2.17-1.83-4.4-3.61l.91-25.82a7.35 7.35 0 0 0-10.39-7L367.7 53.23c-1.7-.94-3.43-1.84-5.15-2.73l-4.15-25.42a7.35 7.35 0 0 0-11.54-4.79L326 35.26c-1.86-.59-3.75-1.13-5.64-1.67l-9-24a7.35 7.35 0 0 0-12.25-2.44l-17.5 18.72c-1.95-.21-3.91-.38-5.88-.55L262.25 3.48a7.35 7.35 0 0 0-12.5 0L236.24 25.3c-2 .17-3.93.34-5.88.55l-17.5-18.72a7.35 7.35 0 0 0-12.25 2.44l-9 24c-1.89.55-3.79 1.08-5.66 1.68l-20.82-15a7.35 7.35 0 0 0-11.54 4.79l-4.15 25.41c-1.73.9-3.45 1.79-5.16 2.73l-23.4-10.63a7.35 7.35 0 0 0-10.39 7l.92 25.81c-1.49 1.19-3 2.39-4.42 3.61L81.84 73A7.36 7.36 0 0 0 73 81.84L78.93 107c-1.23 1.45-2.43 2.93-3.62 4.41l-25.81-.91a7.42 7.42 0 0 0-6.37 3.26 7.35 7.35 0 0 0-.57 7.13l10.66 23.41c-.94 1.7-1.83 3.43-2.73 5.16l-25.41 4.14a7.35 7.35 0 0 0-4.79 11.54l15 20.82c-.59 1.87-1.13 3.77-1.68 5.66l-24 9a7.35 7.35 0 0 0-2.44 12.25l18.72 17.5c-.21 1.95-.38 3.91-.55 5.88l-21.86 13.5a7.35 7.35 0 0 0 0 12.5l21.82 13.51c.17 2 .34 3.92.55 5.87l-18.72 17.5a7.35 7.35 0 0 0 2.44 12.25l24 9c.55 1.89 1.08 3.78 1.68 5.65l-15 20.83a7.35 7.35 0 0 0 4.79 11.54l25.42 4.15c.9 1.72 1.79 3.45 2.73 5.14l-10.63 23.43a7.35 7.35 0 0 0 .57 7.13 7.13 7.13 0 0 0 6.37 3.26l25.83-.91q1.77 2.22 3.6 4.4L73 430.16a7.36 7.36 0 0 0 8.84 8.84l25.16-5.93q2.18 1.83 4.41 3.61l-.92 25.82a7.35 7.35 0 0 0 10.39 6.95l23.43-10.68c1.69.94 3.42 1.83 5.14 2.73l4.15 25.42a7.34 7.34 0 0 0 11.54 4.78l20.83-15c1.86.6 3.76 1.13 5.65 1.68l9 24a7.36 7.36 0 0 0 12.25 2.44l17.5-18.72c1.95.21 3.92.38 5.88.55l13.51 21.82a7.35 7.35 0 0 0 12.5 0l13.51-21.82c2-.17 3.93-.34 5.88-.56l17.5 18.73a7.36 7.36 0 0 0 12.25-2.44l9-24c1.89-.55 3.78-1.08 5.65-1.68l20.82 15a7.34 7.34 0 0 0 11.54-4.78l4.15-25.42c1.72-.9 3.45-1.79 5.15-2.73l23.42 10.68a7.35 7.35 0 0 0 10.39-6.95l-.91-25.82q2.22-1.79 4.4-3.61l25.15 5.93a7.36 7.36 0 0 0 8.84-8.84L433.07 405q1.83-2.17 3.61-4.4l25.82.91a7.23 7.23 0 0 0 6.37-3.26 7.35 7.35 0 0 0 .58-7.13l-10.68-23.42c.94-1.7 1.83-3.43 2.73-5.15l25.42-4.15a7.35 7.35 0 0 0 4.79-11.54l-15-20.83c.59-1.87 1.13-3.76 1.67-5.65l24-9a7.35 7.35 0 0 0 2.44-12.25l-18.72-17.5c.21-1.95.38-3.91.55-5.87l21.82-13.51a7.35 7.35 0 0 0 0-12.5Zm-151 129.08A13.91 13.91 0 0 0 341 389.51l-7.64 35.67a187.51 187.51 0 0 1-156.36-.74l-7.64-35.66a13.87 13.87 0 0 0-16.46-10.68l-31.51 6.76a187 187 0 0 1-16.26-19.21H258.3c1.72 0 2.89-.29 2.89-1.91v-54.19c0-1.57-1.17-1.91-2.89-1.91h-44.83l.05-34.35H262c4.41 0 23.66 1.28 29.79 25.87 1.91 7.55 6.17 32.14 9.06 40 2.89 8.82 14.6 26.46 27.1 26.46H407a187 187 0 0 1-17.34 20.09Zm25.77 34.49A15.24 15.24 0 1 1 368 398.08h.44a15.23 15.23 0 0 1 14.8 15.24Zm-225.62-.68a15.24 15.24 0 1 1-15.25-15.25h.45a15.25 15.25 0 0 1 14.75 15.25Zm-88.1-178.49 32.83-14.6a13.88 13.88 0 0 0 7.06-18.33L102.69 186h26.56v119.73h-53.6a187.7 187.7 0 0 1-6.08-71.58m-11.26-36.06a15.24 15.24 0 0 1 15.23-15.25H74a15.24 15.24 0 1 1-15.67 15.24Zm155.16 24.49.05-35.32h63.26c3.28 0 23.07 3.77 23.07 18.62 0 12.29-15.19 16.7-27.68 16.7ZM399 306.71c-9.8 1.13-20.63-4.12-22-10.09-5.78-32.49-15.39-39.4-30.57-51.4 18.86-11.95 38.46-29.64 38.46-53.26 0-25.52-17.49-41.59-29.4-49.48-16.76-11-35.28-13.23-40.27-13.23h-198.9a187.5 187.5 0 0 1 104.89-59.19l23.47 24.6a13.82 13.82 0 0 0 19.6.44l26.26-25a187.51 187.51 0 0 1 128.37 91.43l-18 40.57a14 14 0 0 0 7.09 18.33l34.59 15.33a187 187 0 0 1 .4 32.54h-19.28c-1.91 0-2.69 1.27-2.69 3.13v8.82C421 301 409.31 305.58 399 306.71M240 60.21A15.24 15.24 0 0 1 255.21 45h.45A15.24 15.24 0 1 1 240 60.21M436.84 214a15.24 15.24 0 1 1 0-30.48h.44a15.24 15.24 0 0 1-.44 30.48"/></svg>�����������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/safari.svg�����������������������0000664�0000000�0000000�00000003427�14753064456�0027405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m274.69 274.69-37.38-37.38L166 346ZM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8m155.85 174.79 14.78-6.13a8 8 0 0 1 10.45 4.34 8 8 0 0 1-4.33 10.46L418 197.57a8 8 0 0 1-10.45-4.33 8 8 0 0 1 4.3-10.45M314.43 94l6.12-14.78a8 8 0 0 1 10.45-4.3 8 8 0 0 1 4.33 10.45l-6.13 14.78a8 8 0 0 1-10.45 4.33A8 8 0 0 1 314.43 94M256 60a8 8 0 0 1 8 8v16a8 8 0 0 1-8 8 8 8 0 0 1-8-8V68a8 8 0 0 1 8-8m-75 14.92a8 8 0 0 1 10.46 4.33L197.57 94a8 8 0 1 1-14.78 6.12l-6.13-14.78A8 8 0 0 1 181 74.92m-63.58 42.49a8 8 0 0 1 11.31 0L140 128.72a8 8 0 0 1 0 11.28 8 8 0 0 1-11.31 0l-11.31-11.31a8 8 0 0 1 .03-11.28ZM60 256a8 8 0 0 1 8-8h16a8 8 0 0 1 8 8 8 8 0 0 1-8 8H68a8 8 0 0 1-8-8m40.15 73.21-14.78 6.13A8 8 0 0 1 74.92 331a8 8 0 0 1 4.33-10.46L94 314.43a8 8 0 0 1 10.45 4.33 8 8 0 0 1-4.3 10.45m4.33-136A8 8 0 0 1 94 197.57l-14.78-6.12a8 8 0 0 1-4.3-10.45 8 8 0 0 1 10.45-4.33l14.78 6.13a8 8 0 0 1 4.33 10.44ZM197.57 418l-6.12 14.78a8 8 0 0 1-14.79-6.12l6.13-14.78a8 8 0 1 1 14.78 6.12M264 444a8 8 0 0 1-8 8 8 8 0 0 1-8-8v-16a8 8 0 0 1 8-8 8 8 0 0 1 8 8Zm67-6.92a8 8 0 0 1-10.46-4.33L314.43 418a8 8 0 0 1 4.33-10.45 8 8 0 0 1 10.45 4.33l6.13 14.78a8 8 0 0 1-4.34 10.42m63.58-42.49a8 8 0 0 1-11.31 0L372 383.28a8 8 0 0 1 0-11.28 8 8 0 0 1 11.31 0l11.31 11.31a8 8 0 0 1-.03 11.28ZM286.25 286.25 110.34 401.66l115.41-175.91 175.91-115.41ZM437.08 331a8 8 0 0 1-10.45 4.33l-14.78-6.13a8 8 0 0 1-4.33-10.45 8 8 0 0 1 10.48-4.32l14.78 6.12a8 8 0 0 1 4.3 10.45m6.92-67h-16a8 8 0 0 1-8-8 8 8 0 0 1 8-8h16a8 8 0 0 1 8 8 8 8 0 0 1-8 8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/salesforce.svg�������������������0000664�0000000�0000000�00000010572�14753064456�0030265�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M248.89 245.64h-26.35c.69-5.16 3.32-14.12 13.64-14.12 6.75 0 11.97 3.82 12.71 14.12m136.66-13.88c-.47 0-14.11-1.77-14.11 20s13.63 20 14.11 20c13 0 14.11-13.54 14.11-20 0-21.76-13.66-20-14.11-20m-243.22 23.76a8.63 8.63 0 0 0-3.29 7.29c0 4.78 2.08 6.05 3.29 7.05 4.7 3.7 15.07 2.12 20.93.95v-16.94c-5.32-1.07-16.73-1.96-20.93 1.65M640 232c0 87.58-80 154.39-165.36 136.43-18.37 33-70.73 70.75-132.2 41.63-41.16 96.05-177.89 92.18-213.81-5.17C8.91 428.78-50.19 266.52 53.36 205.61 18.61 126.18 76 32 167.67 32a124.24 124.24 0 0 1 98.56 48.7c20.7-21.4 49.4-34.81 81.15-34.81 42.34 0 79 23.52 98.8 58.57C539 63.78 640 132.69 640 232m-519.55 31.8c0-11.76-11.69-15.17-17.87-17.17-5.27-2.11-13.41-3.51-13.41-8.94 0-9.46 17-6.66 25.17-2.12 0 0 1.17.71 1.64-.47.24-.7 2.36-6.58 2.59-7.29a1.13 1.13 0 0 0-.7-1.41c-12.33-7.63-40.7-8.51-40.7 12.7 0 12.46 11.49 15.44 17.88 17.17 4.72 1.58 13.17 3 13.17 8.7 0 4-3.53 7.06-9.17 7.06a31.76 31.76 0 0 1-19-6.35c-.47-.23-1.42-.71-1.65.71l-2.4 7.47c-.47.94.23 1.18.23 1.41 1.75 1.4 10.3 6.59 22.82 6.59 13.17 0 21.4-7.06 21.4-18.11zm32-42.58c-10.13 0-18.66 3.17-21.4 5.18a1 1 0 0 0-.24 1.41l2.59 7.06a1 1 0 0 0 1.18.7c.65 0 6.8-4 16.93-4 4 0 7.06.71 9.18 2.36 3.6 2.8 3.06 8.29 3.06 10.58-4.79-.3-19.11-3.44-29.41 3.76a16.92 16.92 0 0 0-7.34 14.54c0 5.9 1.51 10.4 6.59 14.35 12.24 8.16 36.28 2 38.1 1.41 1.58-.32 3.53-.66 3.53-1.88v-33.88c.04-4.61.32-21.64-22.78-21.64zM199 200.24a1.11 1.11 0 0 0-1.18-1.18H188a1.11 1.11 0 0 0-1.17 1.18v79a1.11 1.11 0 0 0 1.17 1.18h9.88a1.11 1.11 0 0 0 1.18-1.18zm55.75 28.93c-2.1-2.31-6.79-7.53-17.65-7.53-3.51 0-14.16.23-20.7 8.94-6.35 7.63-6.58 18.11-6.58 21.41 0 3.12.15 14.26 7.06 21.17 2.64 2.91 9.06 8.23 22.81 8.23 10.82 0 16.47-2.35 18.58-3.76.47-.24.71-.71.24-1.88l-2.35-6.83a1.26 1.26 0 0 0-1.41-.7c-2.59.94-6.35 2.82-15.29 2.82-17.42 0-16.85-14.74-16.94-16.7h37.17a1.23 1.23 0 0 0 1.17-.94c-.29 0 2.07-14.7-6.09-24.23zm36.69 52.69c13.17 0 21.41-7.06 21.41-18.11 0-11.76-11.7-15.17-17.88-17.17-4.14-1.66-13.41-3.38-13.41-8.94 0-3.76 3.29-6.35 8.47-6.35a38.1 38.1 0 0 1 16.7 4.23s1.18.71 1.65-.47c.23-.7 2.35-6.58 2.58-7.29a1.13 1.13 0 0 0-.7-1.41c-7.91-4.9-16.74-4.94-20.23-4.94-12 0-20.46 7.29-20.46 17.64 0 12.46 11.48 15.44 17.87 17.17 6.11 2 13.17 3.26 13.17 8.7 0 4-3.52 7.06-9.17 7.06a31.8 31.8 0 0 1-19-6.35 1 1 0 0 0-1.65.71l-2.35 7.52c-.47.94.23 1.18.23 1.41 1.72 1.4 10.33 6.59 22.79 6.59zM357.09 224c0-.71-.24-1.18-1.18-1.18h-11.76c0-.14.94-8.94 4.47-12.47 4.16-4.15 11.76-1.64 12-1.64 1.17.47 1.41 0 1.64-.47l2.83-7.77c.7-.94 0-1.17-.24-1.41-5.09-2-17.35-2.87-24.46 4.24-5.48 5.48-7 13.92-8 19.52h-8.47a1.28 1.28 0 0 0-1.17 1.18l-1.42 7.76c0 .7.24 1.17 1.18 1.17h8.23c-8.51 47.9-8.75 50.21-10.35 55.52-1.08 3.62-3.29 6.9-5.88 7.76-.09 0-3.88 1.68-9.64-.24 0 0-.94-.47-1.41.71-.24.71-2.59 6.82-2.83 7.53s0 1.41.47 1.41c5.11 2 13 1.77 17.88 0 6.28-2.28 9.72-7.89 11.53-12.94 2.75-7.71 2.81-9.79 11.76-59.74h12.23a1.29 1.29 0 0 0 1.18-1.18zm53.39 16c-.56-1.68-5.1-18.11-25.17-18.11-15.25 0-23 10-25.16 18.11-1 3-3.18 14 0 23.52.09.3 4.41 18.12 25.16 18.12 14.95 0 22.9-9.61 25.17-18.12 3.21-9.61 1.01-20.52 0-23.52m45.4-16.7c-5-1.65-16.62-1.9-22.11 5.41v-4.47a1.11 1.11 0 0 0-1.18-1.17h-9.4a1.11 1.11 0 0 0-1.18 1.17v55.28a1.12 1.12 0 0 0 1.18 1.18h9.64a1.12 1.12 0 0 0 1.18-1.18v-27.77c0-2.91.05-11.37 4.46-15.05 4.9-4.9 12-3.36 13.41-3.06a1.57 1.57 0 0 0 1.41-.94 74 74 0 0 0 3.06-8 1.16 1.16 0 0 0-.47-1.41zm46.81 54.1-2.12-7.29c-.47-1.18-1.41-.71-1.41-.71-4.23 1.82-10.15 1.89-11.29 1.89-4.64 0-17.17-1.13-17.17-19.76 0-6.23 1.85-19.76 16.47-19.76a34.9 34.9 0 0 1 11.52 1.65s.94.47 1.18-.71c.94-2.59 1.64-4.47 2.59-7.53.23-.94-.47-1.17-.71-1.17-11.59-3.87-22.34-2.53-27.76 0-1.59.74-16.23 6.49-16.23 27.52 0 2.9-.58 30.11 28.94 30.11a44.5 44.5 0 0 0 15.52-2.83 1.3 1.3 0 0 0 .47-1.42zm53.87-39.52c-.8-3-5.37-16.23-22.35-16.23-16 0-23.52 10.11-25.64 18.59a38.6 38.6 0 0 0-1.65 11.76c0 25.87 18.84 29.4 29.88 29.4 10.82 0 16.46-2.35 18.58-3.76.47-.24.71-.71.24-1.88l-2.36-6.83a1.26 1.26 0 0 0-1.41-.7c-2.59.94-6.35 2.82-15.29 2.82-17.42 0-16.85-14.74-16.93-16.7h37.16a1.25 1.25 0 0 0 1.18-.94c-.24-.01.94-7.07-1.41-15.54zm-23.29-6.35c-10.33 0-13 9-13.64 14.12H546c-.88-11.92-7.62-14.13-12.73-14.13z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/sass.svg�������������������������0000664�0000000�0000000�00000006307�14753064456�0027111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M301.84 378.92c-.3.6-.6 1.08 0 0m249.13-87a131.16 131.16 0 0 0-58 13.5c-5.9-11.9-12-22.3-13-30.1-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2-1.4-6.6-14.3-6.7-24 2.5-25.29 5.9a123 123 0 0 0-5.3 19.1c-2.3 11.7-25.79 53.5-39.09 75.3-4.4-8.5-8.1-16-8.9-22-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2-1.4-6.6-14.29-6.7-24 2.5-25.3 5.9-2.7 11.4-5.3 19.1-33.89 77.3-42.08 95.4c-4.2 9.2-7.8 16.6-10.4 21.6-.4.8-.7 1.3-.9 1.7.3-.5.5-1 .5-.8-2.2 4.3-3.5 6.7-3.5 6.7v.1c-1.7 3.2-3.6 6.1-4.5 6.1-.6 0-1.9-8.4.3-19.9 4.7-24.2 15.8-61.8 15.7-63.1-.1-.7 2.1-7.2-7.3-10.7-9.1-3.3-12.4 2.2-13.2 2.2s-1.4 2-1.4 2 10.1-42.4-19.39-42.4c-18.4 0-44 20.2-56.58 38.5-7.9 4.3-25 13.6-43 23.5-6.9 3.8-14 7.7-20.7 11.4-.5-.5-.9-1-1.4-1.5-35.79-38.2-101.87-65.2-99.07-116.5 1-18.7 7.5-67.8 127.07-127.4 98-48.8 176.35-35.4 189.84-5.6 19.4 42.5-41.89 121.6-143.66 133-38.79 4.3-59.18-10.7-64.28-16.3-5.3-5.9-6.1-6.2-8.1-5.1-3.3 1.8-1.2 7 0 10.1 3 7.9 15.5 21.9 36.79 28.9 18.7 6.1 64.18 9.5 119.17-11.8 61.78-23.8 109.87-90.1 95.77-145.6C386.52 18.32 293-.18 204.57 31.22c-52.69 18.7-109.67 48.1-150.66 86.4-48.69 45.6-56.48 85.3-53.28 101.9 11.39 58.9 92.57 97.3 125.06 125.7-1.6.9-3.1 1.7-4.5 2.5-16.29 8.1-78.18 40.5-93.67 74.7-17.5 38.8 2.9 66.6 16.29 70.4 41.79 11.6 84.58-9.3 107.57-43.6s20.2-79.1 9.6-99.5c-.1-.3-.3-.5-.4-.8 4.2-2.5 8.5-5 12.8-7.5 8.29-4.9 16.39-9.4 23.49-13.3-4 10.8-6.9 23.8-8.4 42.6-1.8 22 7.3 50.5 19.1 61.7 5.2 4.9 11.49 5 15.39 5 13.8 0 20-11.4 26.89-25 8.5-16.6 16-35.9 16-35.9s-9.4 52.2 16.3 52.2c9.39 0 18.79-12.1 23-18.3v.1s.2-.4.7-1.2c1-1.5 1.5-2.4 1.5-2.4v-.3c3.8-6.5 12.1-21.4 24.59-46 16.2-31.8 31.69-71.5 31.69-71.5a201 201 0 0 0 6.2 25.8c2.8 9.5 8.7 19.9 13.4 30-3.8 5.2-6.1 8.2-6.1 8.2a.3.3 0 0 0 .1.2c-3 4-6.4 8.3-9.9 12.5-12.79 15.2-28 32.6-30 37.6-2.4 5.9-1.8 10.3 2.8 13.7 3.4 2.6 9.4 3 15.69 2.5 11.5-.8 19.6-3.6 23.5-5.4a82.2 82.2 0 0 0 20.19-10.6c12.5-9.2 20.1-22.4 19.4-39.8-.4-9.6-3.5-19.2-7.3-28.2 1.1-1.6 2.3-3.3 3.4-5C434.8 301.72 450.1 270 450.1 270a201 201 0 0 0 6.2 25.8c2.4 8.1 7.09 17 11.39 25.7-18.59 15.1-30.09 32.6-34.09 44.1-7.4 21.3-1.6 30.9 9.3 33.1 4.9 1 11.9-1.3 17.1-3.5a79.5 79.5 0 0 0 21.59-11.1c12.5-9.2 24.59-22.1 23.79-39.6-.3-7.9-2.5-15.8-5.4-23.4 15.7-6.6 36.09-10.2 62.09-7.2 55.68 6.5 66.58 41.3 64.48 55.8s-13.8 22.6-17.7 25-5.1 3.3-4.8 5.1c.5 2.6 2.3 2.5 5.6 1.9 4.6-.8 29.19-11.8 30.29-38.7 1.6-34-31.09-71.4-89-71.1zm-429.18 144.7c-18.39 20.1-44.19 27.7-55.28 21.3C54.61 451 59.31 421.42 82 400c13.8-13 31.59-25 43.39-32.4 2.7-1.6 6.6-4 11.4-6.9.8-.5 1.2-.7 1.2-.7.9-.6 1.9-1.1 2.9-1.7 8.29 30.4.3 57.2-19.1 78.3zm134.36-91.4c-6.4 15.7-19.89 55.7-28.09 53.6-7-1.8-11.3-32.3-1.4-62.3 5-15.1 15.6-33.1 21.9-40.1 10.09-11.3 21.19-14.9 23.79-10.4 3.5 5.9-12.2 49.4-16.2 59.2m111 53c-2.7 1.4-5.2 2.3-6.4 1.6-.9-.5 1.1-2.4 1.1-2.4s13.9-14.9 19.4-21.7c3.2-4 6.9-8.7 10.89-13.9 0 .5.1 1 .1 1.6-.13 17.9-17.32 30-25.12 34.8zm85.58-19.5c-2-1.4-1.7-6.1 5-20.7 2.6-5.7 8.59-15.3 19-24.5a36.2 36.2 0 0 1 1.9 10.8c-.1 22.5-16.2 30.9-25.89 34.4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/schlix.svg�����������������������0000664�0000000�0000000�00000001630�14753064456�0027424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m350.5 157.7-54.2-46.1 73.4-39 78.3 44.2zM192 122.1l45.7-28.2 34.7 34.6-55.4 29zm-65.1 6.6 31.9-22.1L176 135l-36.7 22.5zm-23.3 88.2-8.8-34.8 29.6-18.3 13.1 35.3zm-21.2-83.7 23.9-18.1 8.9 24-26.7 18.3zM59 206.5l-3.6-28.4 22.3-15.5 6.1 28.7zm-30.6 16.6 20.8-12.8 3.3 33.4-22.9 12zM1.4 268l19.2-10.2.4 38.2-21 8.8zm59.1 59.3-28.3 8.3-1.6-46.8 25.1-10.7zM99 263.2l-31.1 13-5.2-40.8L90.1 221zM123.2 377l-41.6 5.9-8.1-63.5 35.2-10.8zm28.5-139.9 21.2 57.1-46.2 13.6-13.7-54.1zm85.7 230.5-70.9-3.3-24.3-95.8 55.2-8.6zm-84.9-279.7 42.2-22.4 28 45.9-50.8 21.3zm41 94.9 61.3-18.7 52.8 86.6-79.8 11.3zm51.4-85.6 67.3-28.8 65.5 65.4-88.6 26.2z"/></svg>��������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/screenpal.svg��������������������0000664�0000000�0000000�00000003567�14753064456�0030121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M233.5 22.49C233.5 10.07 243.6 0 256 0s22.5 10.07 22.5 22.49-10.1 22.49-22.5 22.49-22.5-10.07-22.5-22.49M313.4 259c0 31.7-25.7 57.4-57.4 57.4s-57.4-25.7-57.4-57.4 25.7-57.4 57.4-57.4 57.4 25.7 57.4 57.4m23.8 91c22.3-19.9 36.5-47.3 39.9-77h119.5c-3.5 61.4-30.4 119.2-75.2 161.4-44.7 42.2-103.9 65.8-165.4 65.8s-120.7-23.6-165.44-65.8c-44.73-42.2-71.62-100-75.17-161.4H135.1c3.4 29.7 17.6 57.1 39.9 77s51.2 30.9 81.1 30.9c29 0 58.7-11 81.1-30.9M73.14 140.3c.4 12.4-9.33 22.8-21.75 23.2s-22.8-9.3-23.21-21.7c-.4-12.5 9.34-22.9 21.76-23.3 12.41-.4 22.8 9.4 23.2 21.8m365.76.7c0-12.4 10-22.5 22.5-22.5 12.4 0 22.4 10.1 22.4 22.5 0 12.5-10 22.5-22.4 22.5-12.5 0-22.5-10-22.5-22.5m-121-45.73c-17.3 13.83-39.2 22.83-61.9 22.83s-44.6-9-61.9-22.83c-17.3-14.72-28.8-35.09-32.4-57.49 15.1-6.41 30.8-11.26 46.9-14.47 0 12.57 5 24.62 13.9 33.51 8.9 8.88 20.9 13.88 33.5 13.88s24.6-5 33.5-13.88c8.9-8.89 13.9-20.94 13.9-33.51 16.1 3.21 31.8 8.06 46.9 14.47-3.6 22.4-15.1 42.77-32.4 57.49M82.78 231c-21.36 7.6-44.72 7.4-65.92-.6 1.96-16.3 5.6-32.3 10.85-47.9 5.39 3.1 11.34 5.1 17.51 6 6.17.8 12.45.4 18.46-1.2 6.01-1.7 11.65-4.4 16.59-8.2s9.09-8.5 12.2-13.9 5.14-11.4 5.95-17.5c.81-6.2.41-12.5-1.2-18.5s-4.39-11.6-8.18-16.6c-3.79-4.9-8.51-9.1-13.9-12.2a242 242 0 0 1 35.96-33.33c17.6 14.35 29.5 34.53 33.6 56.83s.1 45.4-11.2 65c-11.4 19.6-29.4 34.5-50.72 42.1m346.42.1c-21.3-7.6-39.3-22.6-50.7-42.2-11.3-19.6-15.2-42.7-11.1-65 4.1-22.2 16-42.36 33.5-56.71 13.1 9.85 25.2 21.02 36 33.31-10.7 6.4-18.4 16.7-21.5 28.8-3.2 12-2.3 24.8 4.8 35.6 6.2 10.8 16.4 18.7 28.4 22s24.9 1.7 35.7-4.3c5.3 15.5 8.9 31.6 10.9 47.8-22.1 8.1-44.6 8.3-66 .7"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/scribd.svg�����������������������0000664�0000000�0000000�00000001661�14753064456�0027404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M42.3 252.7c-16.1-19-24.7-45.9-24.8-79.9 0-100.4 75.2-153.1 167.2-153.1 98.6-1.6 156.8 49 184.3 70.6l-50.5 72.1-37.3-24.6 26.9-38.6c-36.5-24-79.4-36.5-123-35.8-50.7-.8-111.7 27.2-111.7 76.2 0 18.7 11.2 20.7 28.6 15.6 23.3-5.3 41.9.6 55.8 14 26.4 24.3 23.2 67.6-.7 91.9-29.2 29.5-85.2 27.3-114.8-8.4m317.7 5.9c-15.5-18.8-38.9-29.4-63.2-28.6-38.1-2-71.1 28-70.5 67.2-.7 16.8 6 33 18.4 44.3 14.1 13.9 33 19.7 56.3 14.4 17.4-5.1 28.6-3.1 28.6 15.6 0 4.3-.5 8.5-1.4 12.7-16.7 40.9-59.5 64.4-121.4 64.4-51.9.2-102.4-16.4-144.1-47.3l33.7-39.4-35.6-27.4L0 406.3l15.4 13.8c52.5 46.8 120.4 72.5 190.7 72.2 51.4 0 94.4-10.5 133.6-44.1 57.1-51.4 54.2-149.2 20.3-189.6"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/searchengin.svg������������������0000664�0000000�0000000�00000001667�14753064456�0030432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 460 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m220.6 130.3-67.2 28.2V43.2L98.7 233.5l54.7-24.2v130.3zm-83.2-96.7-1.3 4.7-15.2 52.9C80.6 106.7 52 145.8 52 191.5c0 52.3 34.3 95.9 83.4 105.5v53.6C57.5 340.1 0 272.4 0 191.6c0-80.5 59.8-147.2 137.4-158m311.4 447.2c-11.2 11.2-23.1 12.3-28.6 10.5-5.4-1.8-27.1-19.9-60.4-44.4-33.3-24.6-33.6-35.7-43-56.7-9.4-20.9-30.4-42.6-57.5-52.4l-9.7-14.7c-24.7 16.9-53 26.9-81.3 28.7l2.1-6.6 15.9-49.5c46.5-11.9 80.9-54 80.9-104.2 0-54.5-38.4-102.1-96-107.1V32.3C254.4 37.4 320 106.8 320 191.6c0 33.6-11.2 64.7-29 90.4l14.6 9.6c9.8 27.1 31.5 48 52.4 57.4s32.2 9.7 56.8 43c24.6 33.2 42.7 54.9 44.5 60.3s.7 17.3-10.5 28.5m-9.9-17.9c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8 8-3.6 8-8"/></svg>�������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/sellcast.svg���������������������0000664�0000000�0000000�00000002015�14753064456�0027742�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M353.4 32H94.7C42.6 32 0 74.6 0 126.6v258.7C0 437.4 42.6 480 94.7 480h258.7c52.1 0 94.7-42.6 94.7-94.6V126.6c0-52-42.6-94.6-94.7-94.6m-50 316.4c-27.9 48.2-89.9 64.9-138.2 37.2-22.9 39.8-54.9 8.6-42.3-13.2l15.7-27.2c5.9-10.3 19.2-13.9 29.5-7.9 18.6 10.8-.1-.1 18.5 10.7 27.6 15.9 63.4 6.3 79.4-21.3 15.9-27.6 6.3-63.4-21.3-79.4-17.8-10.2-.6-.4-18.6-10.6-24.6-14.2-3.4-51.9 21.6-37.5 18.6 10.8-.1-.1 18.5 10.7 48.4 28 65.1 90.3 37.2 138.5m21.8-208.8c-17 29.5-16.3 28.8-19 31.5-6.5 6.5-16.3 8.7-26.5 3.6-18.6-10.8.1.1-18.5-10.7-27.6-15.9-63.4-6.3-79.4 21.3s-6.3 63.4 21.3 79.4c0 0 18.5 10.6 18.6 10.6 24.6 14.2 3.4 51.9-21.6 37.5-18.6-10.8.1.1-18.5-10.7-48.2-27.8-64.9-90.1-37.1-138.4 27.9-48.2 89.9-64.9 138.2-37.2l4.8-8.4c14.3-24.9 52-3.3 37.7 21.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/sellsy.svg�����������������������0000664�0000000�0000000�00000002553�14753064456�0027452�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M539.71 237.308c3.064-12.257 4.29-24.821 4.29-37.384C544 107.382 468.618 32 376.076 32c-77.22 0-144.634 53.012-163.02 127.781-15.322-13.176-34.934-20.53-55.157-20.53-46.271 0-83.962 37.69-83.962 83.961 0 7.354.92 15.015 3.065 22.369-42.9 20.225-70.785 63.738-70.785 111.234C6.216 424.843 61.68 480 129.401 480h381.198c67.72 0 123.184-55.157 123.184-123.184.001-56.384-38.916-106.025-94.073-119.508M199.88 401.554c0 8.274-7.048 15.321-15.321 15.321H153.61c-8.274 0-15.321-7.048-15.321-15.321V290.626c0-8.273 7.048-15.321 15.321-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321zm89.477 0c0 8.274-7.048 15.321-15.322 15.321h-30.949c-8.274 0-15.321-7.048-15.321-15.321V270.096c0-8.274 7.048-15.321 15.321-15.321h30.949c8.274 0 15.322 7.048 15.322 15.321zm89.477 0c0 8.274-7.047 15.321-15.321 15.321h-30.949c-8.274 0-15.322-7.048-15.322-15.321V238.84c0-8.274 7.048-15.321 15.322-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321zm87.027 0c0 8.274-7.048 15.321-15.322 15.321h-28.497c-8.274 0-15.321-7.048-15.321-15.321V176.941c0-8.579 7.047-15.628 15.321-15.628h28.497c8.274 0 15.322 7.048 15.322 15.628z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/servicestack.svg�����������������0000664�0000000�0000000�00000000712�14753064456�0030620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M88 216c81.7 10.2 273.7 102.3 304 232H0c99.5-8.1 184.5-137 88-232m32-152c32.3 35.6 47.7 83.9 46.4 133.6C249.3 231.3 373.7 321.3 400 448h96C455.3 231.9 222.8 79.5 120 64"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/shirtsinbulk.svg�����������������0000664�0000000�0000000�00000003404�14753064456�0030654�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m100 410.3 30.6 13.4 4.4-9.9-30.6-13.4zm39.4 17.5 30.6 13.4 4.4-9.9-30.6-13.4zm172.1-14 4.4 9.9 30.6-13.4-4.4-9.9zM179.1 445l30.3 13.7 4.4-9.9-30.3-13.4zM60.4 392.8 91 406.2l4.4-9.6-30.6-13.7zm211.4 38.5 4.4 9.9 30.6-13.4-4.4-9.9zm-39.3 17.5 4.4 9.9 30.6-13.7-4.4-9.6zm118.4-52.2 4.4 9.6 30.6-13.4-4.4-9.9zM170 46.6h-33.5v10.5H170zm-47.2 0H89.2v10.5h33.5zm-47.3 0H42.3v10.5h33.3zm141.5 0h-33.2v10.5H217zm94.5 0H278v10.5h33.5zm47.3 0h-33.5v10.5h33.5zm-94.6 0H231v10.5h33.2zm141.5 0h-33.3v10.5h33.3zM52.8 351.1H42v33.5h10.8zm70-215.9H89.2v10.5h33.5zm-70 10.6h22.8v-10.5H42v33.5h10.8zm168.9 228.6c50.5 0 91.3-40.8 91.3-91.3 0-50.2-40.8-91.3-91.3-91.3-50.2 0-91.3 41.1-91.3 91.3 0 50.5 41.1 91.3 91.3 91.3m-48.2-111.1c0-25.4 29.5-31.8 49.6-31.8 16.9 0 29.2 5.8 44.3 12l-8.8 16.9h-.9c-6.4-9.9-24.8-13.1-35.6-13.1-9 0-29.8 1.8-29.8 14.9 0 21.6 78.5-10.2 78.5 37.9 0 25.4-31.5 31.2-51 31.2-18.1 0-32.4-2.9-47.2-12.2l9-18.4h.9c6.1 12.2 23.6 14.9 35.9 14.9 8.7 0 32.7-1.2 32.7-14.3 0-26.1-77.6 6.3-77.6-38M52.8 178.4H42V212h10.8zm342.4 206.2H406v-33.5h-10.8zM52.8 307.9H42v33.5h10.8zM0 3.7v406l221.7 98.6L448 409.7V3.7zm418.8 387.1L222 476.5 29.2 390.8V120.7h389.7v270.1zm0-299.3H29.2V32.9h389.7v58.6zm-366 130.1H42v33.5h10.8zm0 43.2H42v33.5h10.8zM170 135.2h-33.5v10.5H170zm225.2 163.1H406v-33.5h-10.8zm0-43.2H406v-33.5h-10.8zM217 135.2h-33.2v10.5H217zM395.2 212H406v-33.5h-10.8zm0 129.5H406V308h-10.8zm-131-206.3H231v10.5h33.2zm47.3 0H278v10.5h33.5zm83.7 33.6H406v-33.5h-33.5v10.5h22.8zm-36.4-33.6h-33.5v10.5h33.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/shoelace.svg���������������������0000664�0000000�0000000�00000004625�14753064456�0027724�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M404.9 331c2.2-1.1 4.4-2.3 6.5-3.7l8.3-4.8c1.5-1.1 4.4-3.4 8.7-6.7l.5-.5c3.4-3.4 7.2-5 11.3-4.9 1.8 0 3.9.5 6.4 1.5l31-27.5c.9-.7 1.7-1.3 2.6-1.8h.2c3.3-1.9 6-1.8 8.2.4 3.9 2.1 4.2 5.6.9 10.6L456.9 322c.2.5.4 1 .4 1.5.5 2.2.3 4.4-.5 6.6-.7 1.5-1.8 2.9-3.1 4.2-1.4 1.4-2.7 2.8-4.2 4.2l-18.8 13.7q-2.55 1.8-5.1 3.3-3.15 1.95-6.6 3.6c-1 .4-1.9.9-2.9 1.3-5.9 2.5-11.9 4.2-18.2 5-2.9 24.5-11.3 47.1-25.1 67.8-17.5 25.7-41.4 45.4-71.8 58.8-30.2 13.5-63 20.2-98.2 20.2-48.6-.5-88-11.4-118.2-32.8-35.1-25-52.6-57.9-52.6-99.1v-5.6c1.2-28.1 9.5-54.6 24.8-79.8 15.1-24.9 37.1-41.7 66.1-50.5q22.35-6.6 45-6.6c15.5 0 31.6 2.9 48.1 8.6s35.2 15.5 55.9 29.5l54.1 36.3c15.1 9.8 28.8 16.5 41.2 20q-3.9-37.65-27.3-64.5c-15.7-18.1-35.6-31.3-59.9-39.7l-23.3-8q-32.1-11.25-47.7-22.2c-28.2-19.1-43.8-45.2-47-78.5l-.5-9.8c0-32.1 13-58.9 39-80.5 23-19.3 50.6-29 82.5-29 24 0 45.6 6.9 64.7 20.8 19.2 14 30.1 33.8 32.6 59.4l.5 10q0 27.9-14.4 47.7c-9.8 13.2-18.5 19.9-26 19.9q-2.4-.15-4.5-.6l-34 32c-5.5 3-9.2 2.5-11.1-1.6-1.9-2.2-1.8-4.9.5-8.2l.2-.2c.5-.7 1.2-1.5 2-2.4l31.6-30q-.6-2.25-.6-4.8c0-4.1 1.6-7.6 4.9-10.4 13.8-12.4 20.8-26.7 20.8-42.8 0-16-6.1-29.5-18.2-40.4s-28.7-16.5-49.7-16.8c-26.2 0-47.8 7.9-64.7 23.7s-25.3 34.6-25.3 56.7c0 17.8 6.9 33.9 20.6 48.3 13.6 14.2 34.6 25.4 63 33.5 39.8 11.5 70.2 31 91.3 58.3 18.7 24.2 29.1 51.3 31.3 81.4 2.2-.7 4.3-1.5 6.5-2.6zM294.1 178.7c0 1.1.6 1.6 1.8 1.6.1 0 9.7-8.9 28.8-26.6 0-2.4-5.1.9-15.3 10-10.2 9.2-15.3 14.2-15.3 14.9zm8 6.4q0-1.5-1.5-1.5c-1.1 0-2.1.5-2.9 1.6-1.9-.1-3.3.1-4.2.7-.4.2-.5.5-.5.7 0 .7.5 1.3 1.5 1.6h3.3c2.9-1.1 4.4-2.2 4.4-3.3zm22.6-19.9c0-2.8-1.6-2.8-4.9 0-1.6 1.5-3.6 3.5-6 6.2-.8.6-2.6 2.2-5.3 4.9-2.8 2.9-4.2 4.7-4.2 5.3l.2 1.3c.7.2 1.2.4 1.5.4.1 0 3.3-2.9 9.5-8.7s9.3-8.9 9.3-9.3zm159.7 120-30.6 27c1.8 1 3.2 2.4 4 4.2l30.2-27c.2-1.2.1-2.2-.5-2.9-.6-.5-1.6-.9-3.1-1.3m-1.6-.9-.7-.7-27 21.9 1.6 2 26-23.1zm-116.2 79.6q-12-3.15-22.2-7.5-22.95-9.3-57-32.4L250 298.7c-15.8-10.1-30.2-17.6-43.2-22.6-13.1-4.9-26-7.3-38.6-7.3h-5.5c-32.2 1.7-57.2 13.8-75 36.2-16.6 20.8-25 45.3-25 73.6 0 31.8 12.8 56.7 38.2 74.7 25.4 18.1 60.2 27.1 104.4 27.1 34.7 0 64-6.2 87.8-18.6q35.55-18.6 55.2-49.2c9.8-15.5 15.9-31.8 18.2-48.8z"/></svg>�����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/shopify.svg����������������������0000664�0000000�0000000�00000002710�14753064456�0027613�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M388.32 104.1a4.66 4.66 0 0 0-4.4-4c-2 0-37.23-.8-37.23-.8s-21.61-20.82-29.62-28.83V503.2L442.76 472s-54.04-365.5-54.44-367.9m-99.67-33.63a116.7 116.7 0 0 0-7.21-17.61C271 32.85 255.42 22 237 22a15 15 0 0 0-4 .4c-.4-.8-1.2-1.2-1.6-2-8-8.77-18.4-12.77-30.82-12.4-24 .8-48 18-67.25 48.83-13.61 21.62-24 48.84-26.82 70.06-27.62 8.4-46.83 14.41-47.23 14.81-14 4.4-14.41 4.8-16 18-1.2 10-38 291.82-38 291.82L307.86 504V65.67a42 42 0 0 0-4.4.4s-5.6 1.6-14.81 4.4m-55.24 17.22c-16 4.8-33.63 10.4-50.84 15.61 4.8-18.82 14.41-37.63 25.62-50 4.4-4.4 10.41-9.61 17.21-12.81 6.81 14.37 8.41 33.99 8.01 47.2m-32.83-63.25A27.5 27.5 0 0 1 215 28c-6.4 3.2-12.81 8.41-18.81 14.41-15.21 16.42-26.82 42-31.62 66.45-14.42 4.41-28.83 8.81-42 12.81 8.76-38.39 41.18-96.43 78.01-97.23m-46.43 220.17c1.6 25.61 69.25 31.22 73.25 91.66 2.8 47.64-25.22 80.06-65.65 82.47-48.83 3.2-75.65-25.62-75.65-25.62l10.4-44s26.82 20.42 48.44 18.82c14-.8 19.22-12.41 18.81-20.42-2-33.62-57.24-31.62-60.84-86.86-3.2-46.44 27.22-93.27 94.47-97.68 26-1.6 39.23 4.81 39.23 4.81l-15.21 57.6s-17.21-8-37.63-6.4c-29.62 2.01-30.02 20.81-29.62 25.62m95.27-161.73c0-12-1.6-29.22-7.21-43.63 18.42 3.6 27.22 24 31.23 36.43q-10.81 3-24.02 7.2"/></svg>��������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/shopware.svg���������������������0000664�0000000�0000000�00000001430�14753064456�0027760�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M403.5 455.41A246.17 246.17 0 0 1 256 504C118.81 504 8 393 8 256 8 118.81 119 8 256 8a247.4 247.4 0 0 1 165.7 63.5 3.57 3.57 0 0 1-2.86 6.18A419 419 0 0 0 362.13 74c-129.36 0-222.4 53.47-222.4 155.35 0 109 92.13 145.88 176.83 178.73 33.64 13 65.4 25.36 87 41.59a3.58 3.58 0 0 1 0 5.72zM503 233.09a3.64 3.64 0 0 0-1.27-2.44c-51.76-43-93.62-60.48-144.48-60.48-84.13 0-80.25 52.17-80.25 53.63 0 42.6 52.06 62 112.34 84.49 31.07 11.59 63.19 23.57 92.68 39.93a3.57 3.57 0 0 0 5-1.82A249 249 0 0 0 503 233.09"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/signal-messenger.svg�������������0000664�0000000�0000000�00000003756�14753064456�0031410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 0c13.3 0 26.3 1 39.1 3l-3.7 23.7C279.9 24.9 268 24 256 24s-23.9.9-35.4 2.7L216.9 3c12.8-2 25.8-3 39.1-3m60.8 7.3-5.7 23.3c23.4 5.7 45.4 14.9 65.4 27.1L389 37.2c-22.1-13.4-46.4-23.6-72.2-29.9m90.5 42.2-14.2 19.3c19.1 14 36 30.9 50.1 50.1l19.4-14.2C447 83.6 428.4 65 407.3 49.5m67.5 73.6-20.5 12.5c12.2 20 21.4 42 27.1 65.4l23.3-5.7c-6.3-25.8-16.5-50.1-29.9-72.2m34.2 93.8-23.7 3.7c1.8 11.5 2.7 23.4 2.7 35.4s-.9 23.9-2.7 35.4l23.7 3.7c1.9-12.7 3-25.8 3-39.1s-1-26.3-3-39.1m-54.7 159.6c12.2-20 21.4-42 27.1-65.4l23.3 5.7c-6.3 25.8-16.5 50.1-29.9 72.2zm-11.1 16.6 19.4 14.2c-15.5 21.1-34.1 39.8-55.2 55.2l-14.2-19.4c19.1-14 36-30.9 50.1-50.1zm-66.7 61.2 12.5 20.5c-22.1 13.4-46.4 23.6-72.2 29.9l-5.7-23.3c23.4-5.7 45.4-14.9 65.4-27.1m-85.1 31 3.7 23.7c-12.7 1.9-25.8 3-39.1 3s-26.3-1-39.1-3l3.7-23.7c11.5 1.8 23.4 2.7 35.4 2.7s23.9-.9 35.4-2.7m-90.5-3.9-5.7 23.3c-19.4-4.7-37.9-11.6-55.3-20.5l-24.3 5.7-5.5-23.4 32.8-7.7 7.8 4c15.7 8 32.5 14.3 50.1 18.6zM90 471.3l5.5 23.4-41.6 9.7C26 510.8 1.2 486 7.6 458.2l9.7-41.6 23.4 5.4-9.7 41.7c-2.4 10.4 6.9 19.7 17.3 17.3zm-44.5-69.5-23.4-5.5 5.7-24.3c-8.9-17.3-15.8-35.9-20.5-55.3l23.3-5.7c4.3 17.6 10.6 34.4 18.6 50.1l4 7.8-7.7 32.8zM26.7 291.4 3 295.1c-2-12.8-3-25.8-3-39.1s1-26.3 3-39.1l23.7 3.7C24.9 232.1 24 244 24 256s.9 23.9 2.7 35.4m3.9-90.5-23.3-5.7c6.3-25.8 16.5-50.1 29.9-72.2l20.5 12.5c-12.2 20-21.4 42-27.1 65.4m38.3-82.1-19.4-14.1C65 83.6 83.6 65 104.7 49.5l14.2 19.4c-19.1 14-36 30.9-50.1 50.1zm66.7-61.2-12.5-20.4c22.1-13.4 46.4-23.6 72.2-29.9l5.7 23.3c-23.4 5.7-45.4 14.9-65.4 27.1zM464 256c0 114.9-93.1 208-208 208-36.4 0-70.7-9.4-100.5-25.8-2.9-1.6-6.2-2.1-9.4-1.4l-92.5 21.6 21.6-92.5c.7-3.2.2-6.5-1.4-9.4C57.4 326.7 48 292.4 48 256c0-114.9 93.1-208 208-208s208 93.1 208 208"/></svg>������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/simplybuilt.svg������������������0000664�0000000�0000000�00000001344�14753064456�0030511�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M481.2 64h-106c-14.5 0-26.6 11.8-26.6 26.3v39.6H163.3V90.3c0-14.5-12-26.3-26.6-26.3h-106C16.1 64 4.3 75.8 4.3 90.3v331.4c0 14.5 11.8 26.3 26.6 26.3h450.4c14.8 0 26.6-11.8 26.6-26.3V90.3c-.2-14.5-12-26.3-26.7-26.3M149.8 355.8c-36.6 0-66.4-29.7-66.4-66.4 0-36.9 29.7-66.6 66.4-66.6 36.9 0 66.6 29.7 66.6 66.6 0 36.7-29.7 66.4-66.6 66.4m212.4 0c-36.9 0-66.6-29.7-66.6-66.6 0-36.6 29.7-66.4 66.6-66.4 36.6 0 66.4 29.7 66.4 66.4 0 36.9-29.8 66.6-66.4 66.6"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/sistrix.svg����������������������0000664�0000000�0000000�00000001056�14753064456�0027641�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 449 301.2 300.2c20-27.9 31.9-62.2 31.9-99.2 0-93.1-74.7-168.9-166.5-168.9C74.7 32 0 107.8 0 200.9s74.7 168.9 166.5 168.9c39.8 0 76.3-14.2 105-37.9l146 148.1zM166.5 330.8c-70.6 0-128.1-58.3-128.1-129.9S95.9 71 166.5 71s128.1 58.3 128.1 129.9-57.4 129.9-128.1 129.9"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/sith.svg�������������������������0000664�0000000�0000000�00000002001�14753064456�0027072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m0 32 69.71 118.75-58.86-11.52 69.84 91.03a146.7 146.7 0 0 0 0 51.45l-69.84 91.03 58.86-11.52L0 480l118.75-69.71-11.52 58.86 91.03-69.84c17.02 3.04 34.47 3.04 51.48 0l91.03 69.84-11.52-58.86L448 480l-69.71-118.78 58.86 11.52-69.84-91.03c3.03-17.01 3.04-34.44 0-51.45l69.84-91.03-58.86 11.52L448 32l-118.75 69.71 11.52-58.9-91.06 69.87c-8.5-1.52-17.1-2.29-25.71-2.29s-17.21.78-25.71 2.29l-91.06-69.87 11.52 58.9zm224 99.78c31.8 0 63.6 12.12 87.85 36.37 48.5 48.5 48.49 127.21 0 175.7s-127.2 48.46-175.7-.03c-48.5-48.5-48.49-127.21 0-175.7 24.24-24.25 56.05-36.34 87.85-36.34m0 36.66c-22.42 0-44.83 8.52-61.92 25.61-34.18 34.18-34.19 89.68 0 123.87s89.65 34.18 123.84 0c34.18-34.18 34.19-89.68 0-123.87-17.09-17.09-39.5-25.61-61.92-25.61"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/sitrox.svg�����������������������0000664�0000000�0000000�00000001001�14753064456�0027452�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M212.439.008V0H448v128H64C64 57.6 141.755.475 212.439.008M237.256 192v.007C307.135 192.475 384 249.6 384 320H210.809v-.005C140.915 319.563 64 262.424 64 192zm-1.691 319.993C306.251 511.521 384 454.399 384 384H0v128h235.565z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/sketch.svg�����������������������0000664�0000000�0000000�00000001113�14753064456�0027407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M27.5 162.2 9 187.1h90.5l6.9-130.7zM396.3 45.7 267.7 32l135.7 147.2zM112.2 218.3l-11.2-22H9.9L234.8 458zm2-31.2h284l-81.5-88.5L256.3 33zm297.3 9.1L277.6 458l224.8-261.7h-90.9zM415.4 69 406 56.4l.9 17.3 6.1 113.4h90.3zM113.5 93.5l-4.6 85.6L244.7 32 116.1 45.7zm287.7 102.7h-290l42.4 82.9L256.3 480z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/skyatlas.svg���������������������0000664�0000000�0000000�00000001664�14753064456�0027774�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M640 329.3c0 65.9-52.5 114.4-117.5 114.4-165.9 0-196.6-249.7-359.7-249.7-146.9 0-147.1 212.2 5.6 212.2 42.5 0 90.9-17.8 125.3-42.5 5.6-4.1 16.9-16.3 22.8-16.3s10.9 5 10.9 10.9c0 7.8-13.1 19.1-18.7 24.1-40.9 35.6-100.3 61.2-154.7 61.2-83.4.1-154-59-154-144.9s67.5-149.1 152.8-149.1c185.3 0 222.5 245.9 361.9 245.9 99.9 0 94.8-139.7 3.4-139.7-17.5 0-35 11.6-46.9 11.6-8.4 0-15.9-7.2-15.9-15.6 0-11.6 5.3-23.7 5.3-36.3 0-66.6-50.9-114.7-116.9-114.7-53.1 0-80 36.9-88.8 36.9-6.2 0-11.2-5-11.2-11.2 0-5.6 4.1-10.3 7.8-14.4 25.3-28.8 64.7-43.7 102.8-43.7 79.4 0 139.1 58.4 139.1 137.8 0 6.9-.3 13.7-1.2 20.6 11.9-3.1 24.1-4.7 35.9-4.7 60.7 0 111.9 45.3 111.9 107.2"/></svg>����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/skype.svg������������������������0000664�0000000�0000000�00000001741�14753064456�0027270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M424.7 299.8c2.9-14 4.7-28.9 4.7-43.8 0-113.5-91.9-205.3-205.3-205.3-14.9 0-29.7 1.7-43.8 4.7C161.3 40.7 137.7 32 112 32 50.2 32 0 82.2 0 144c0 25.7 8.7 49.3 23.3 68.2-2.9 14-4.7 28.9-4.7 43.8 0 113.5 91.9 205.3 205.3 205.3 14.9 0 29.7-1.7 43.8-4.7 19 14.6 42.6 23.3 68.2 23.3 61.8 0 112-50.2 112-112 .1-25.6-8.6-49.2-23.2-68.1m-194.6 91.5c-65.6 0-120.5-29.2-120.5-65 0-16 9-30.6 29.5-30.6 31.2 0 34.1 44.9 88.1 44.9 25.7 0 42.3-11.4 42.3-26.3 0-18.7-16-21.6-42-28-62.5-15.4-117.8-22-117.8-87.2 0-59.2 58.6-81.1 109.1-81.1 55.1 0 110.8 21.9 110.8 55.4 0 16.9-11.4 31.8-30.3 31.8-28.3 0-29.2-33.5-75-33.5-25.7 0-42 7-42 22.5 0 19.8 20.8 21.8 69.1 33 41.4 9.3 90.7 26.8 90.7 77.6 0 59.1-57.1 86.5-112 86.5"/></svg>�������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/slack.svg������������������������0000664�0000000�0000000�00000002216�14753064456�0027230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M94.12 315.1c0 25.9-21.16 47.06-47.06 47.06S0 341 0 315.1s21.16-47.06 47.06-47.06h47.06zm23.72 0c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06v117.84c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06zm47.06-188.98c-25.9 0-47.06-21.16-47.06-47.06S139 32 164.9 32s47.06 21.16 47.06 47.06v47.06zm0 23.72c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06H47.06C21.16 243.96 0 222.8 0 196.9s21.16-47.06 47.06-47.06zm188.98 47.06c0-25.9 21.16-47.06 47.06-47.06S448 171 448 196.9s-21.16 47.06-47.06 47.06h-47.06zm-23.72 0c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06V79.06c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06zM283.1 385.88c25.9 0 47.06 21.16 47.06 47.06S309 480 283.1 480s-47.06-21.16-47.06-47.06v-47.06zm0-23.72c-25.9 0-47.06-21.16-47.06-47.06s21.16-47.06 47.06-47.06h117.84c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/slideshare.svg�������������������0000664�0000000�0000000�00000002054�14753064456�0030256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M187.7 153.7c-34 0-61.7 25.7-61.7 57.7 0 31.7 27.7 57.7 61.7 57.7s61.7-26 61.7-57.7c0-32-27.7-57.7-61.7-57.7m143.4 0c-34 0-61.7 25.7-61.7 57.7 0 31.7 27.7 57.7 61.7 57.7 34.3 0 61.7-26 61.7-57.7.1-32-27.4-57.7-61.7-57.7m156.6 90-6 4.3V49.7c0-27.4-20.6-49.7-46-49.7H76.6c-25.4 0-46 22.3-46 49.7V248c-2-1.4-4.3-2.9-6.3-4.3-15.1-10.6-25.1 4-16 17.7 18.3 22.6 53.1 50.3 106.3 72C58.3 525.1 252 555.7 248.9 457.5c0-.7.3-56.6.3-96.6 5.1 1.1 9.4 2.3 13.7 3.1 0 39.7.3 92.8.3 93.5-3.1 98.3 190.6 67.7 134.3-124 53.1-21.7 88-49.4 106.3-72 9.1-13.8-.9-28.3-16.1-17.8m-30.5 19.2c-68.9 37.4-128.3 31.1-160.6 29.7-23.7-.9-32.6 9.1-33.7 24.9-10.3-7.7-18.6-15.5-20.3-17.1-5.1-5.4-13.7-8-27.1-7.7-31.7 1.1-89.7 7.4-157.4-28V72.3c0-34.9 8.9-45.7 40.6-45.7h317.7c30.3 0 40.9 12.9 40.9 45.7v190.6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/snapchat.svg���������������������0000664�0000000�0000000�00000006315�14753064456�0027740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M496.926 366.6c-3.373-9.176-9.8-14.086-17.112-18.153a43 43 0 0 0-3.72-1.947c-2.182-1.128-4.414-2.22-6.634-3.373-22.8-12.09-40.609-27.341-52.959-45.42a103 103 0 0 1-9.089-16.12c-1.054-3.013-1-4.724-.248-6.287a10.2 10.2 0 0 1 2.914-3.038c3.918-2.591 7.96-5.22 10.7-6.993 4.885-3.162 8.754-5.667 11.246-7.44 9.362-6.547 15.909-13.5 20-21.278a42.37 42.37 0 0 0 2.1-35.191c-6.2-16.318-21.613-26.449-40.287-26.449a55.5 55.5 0 0 0-11.718 1.24 79 79 0 0 0-3.063.72c.174-11.16-.074-22.94-1.066-34.534-3.522-40.758-17.794-62.123-32.674-79.16A130.2 130.2 0 0 0 332.1 36.443C309.515 23.547 283.91 17 256 17s-53.4 6.547-76 19.443a129.7 129.7 0 0 0-33.281 26.783c-14.88 17.038-29.152 38.44-32.673 79.161-.992 11.594-1.24 23.435-1.079 34.533-1-.26-2.021-.5-3.051-.719a55.5 55.5 0 0 0-11.717-1.24c-18.687 0-34.125 10.131-40.3 26.449a42.42 42.42 0 0 0 2.046 35.228c4.105 7.774 10.652 14.731 20.014 21.278 2.48 1.736 6.361 4.24 11.246 7.44 2.641 1.711 6.5 4.216 10.28 6.72a11.05 11.05 0 0 1 3.3 3.311c.794 1.624.818 3.373-.36 6.6a102 102 0 0 1-8.94 15.785c-12.077 17.669-29.363 32.648-51.434 44.639C32.355 348.608 20.2 352.75 15.069 366.7c-3.868 10.528-1.339 22.506 8.494 32.6a49.1 49.1 0 0 0 12.4 9.387 134.3 134.3 0 0 0 30.342 12.139 20 20 0 0 1 6.126 2.741c3.583 3.137 3.075 7.861 7.849 14.78a34.5 34.5 0 0 0 8.977 9.127c10.019 6.919 21.278 7.353 33.207 7.811 10.776.41 22.989.881 36.939 5.481 5.778 1.91 11.78 5.605 18.736 9.92C194.842 480.951 217.707 495 255.973 495s61.292-14.123 78.118-24.428c6.907-4.24 12.872-7.9 18.489-9.758 13.949-4.613 26.163-5.072 36.939-5.481 11.928-.459 23.187-.893 33.206-7.812a34.6 34.6 0 0 0 10.218-11.16c3.434-5.84 3.348-9.919 6.572-12.771a19 19 0 0 1 5.753-2.629 135 135 0 0 0 30.752-12.251 48.3 48.3 0 0 0 13.019-10.193l.124-.149c9.226-9.868 11.545-21.501 7.763-31.768m-34.013 18.277c-20.745 11.458-34.533 10.23-45.259 17.137-9.114 5.865-3.72 18.513-10.342 23.076-8.134 5.617-32.177-.4-63.239 9.858-25.618 8.469-41.961 32.822-88.038 32.822s-62.036-24.3-88.076-32.884c-31-10.255-55.092-4.241-63.239-9.858-6.609-4.563-1.24-17.211-10.341-23.076-10.739-6.907-24.527-5.679-45.26-17.075-13.206-7.291-5.716-11.8-1.314-13.937 75.143-36.381 87.133-92.552 87.666-96.719.645-5.046 1.364-9.014-4.191-14.148-5.369-4.96-29.189-19.7-35.8-24.316-10.937-7.638-15.748-15.264-12.2-24.638 2.48-6.485 8.531-8.928 14.879-8.928a27.6 27.6 0 0 1 5.965.67c12 2.6 23.659 8.617 30.392 10.242a10.8 10.8 0 0 0 2.48.335c3.6 0 4.86-1.811 4.612-5.927-.768-13.132-2.628-38.725-.558-62.644 2.84-32.909 13.442-49.215 26.04-63.636 6.051-6.932 34.484-36.976 88.857-36.976s82.88 29.92 88.931 36.827c12.611 14.421 23.225 30.727 26.04 63.636 2.071 23.919.285 49.525-.558 62.644-.285 4.327 1.017 5.927 4.613 5.927a10.7 10.7 0 0 0 2.48-.335c6.745-1.624 18.4-7.638 30.4-10.242a27.6 27.6 0 0 1 5.964-.67c6.386 0 12.4 2.48 14.88 8.928 3.546 9.374-1.24 17-12.189 24.639-6.609 4.612-30.429 19.343-35.8 24.315-5.568 5.134-4.836 9.1-4.191 14.149.533 4.228 12.511 60.4 87.666 96.718 4.446 2.22 11.936 6.733-1.27 14.086"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/soundcloud.svg�������������������0000664�0000000�0000000�00000003766�14753064456�0030325�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M639.8 298.6c-1.3 23.1-11.5 44.8-28.4 60.5s-39.2 24.4-62.3 24.1h-218c-4.8 0-9.4-2-12.8-5.4s-5.3-8-5.3-12.8V130.2c-.2-4 .9-8 3.1-11.4s5.3-6.1 9-7.7c0 0 20.1-13.9 62.3-13.9 25.8 0 51.1 6.9 73.3 20.1 17.3 10.2 32.3 23.8 44.1 40.1s20 34.8 24.2 54.4c7.5-2.1 15.3-3.2 23.1-3.2 11.7-.1 23.3 2.2 34.2 6.7s20.5 11.3 28.7 19.7 14.6 18.3 18.9 29.3 6.3 22.6 5.9 34.3m-354-153.5c.1-1 0-2-.3-2.9s-.8-1.8-1.5-2.6-1.5-1.3-2.4-1.7-1.9-.6-2.9-.6-2 .2-2.9.6-1.7 1-2.4 1.7-1.2 1.6-1.5 2.6-.4 1.9-.3 2.9c-6 78.9-10.6 152.9 0 231.6.2 1.7 1 3.3 2.3 4.5s3 1.8 4.7 1.8 3.4-.6 4.7-1.8 2.1-2.8 2.3-4.5c11.3-79.4 6.6-152 0-231.6zm-44 27.3c-.2-1.8-1.1-3.5-2.4-4.7s-3.1-1.9-5-1.9-3.6.7-5 1.9-2.2 2.9-2.4 4.7c-7.9 67.9-7.9 136.5 0 204.4.3 1.8 1.2 3.4 2.5 4.5s3.1 1.8 4.8 1.8 3.5-.6 4.8-1.8 2.2-2.8 2.5-4.5c8.8-67.8 8.8-136.5.1-204.4zm-44.3-6.9c-.2-1.8-1-3.4-2.3-4.6s-3-1.8-4.8-1.8-3.5.7-4.8 1.8-2.1 2.8-2.3 4.6c-6.7 72-10.2 139.3 0 211.1 0 1.9.7 3.7 2.1 5s3.1 2.1 5 2.1 3.7-.7 5-2.1 2.1-3.1 2.1-5c10.5-72.8 7.3-138.2.1-211.1zm-44 20.6c0-1.9-.8-3.8-2.1-5.2s-3.2-2.1-5.2-2.1-3.8.8-5.2 2.1-2.1 3.2-2.1 5.2c-8.1 63.3-8.1 127.5 0 190.8.2 1.8 1 3.4 2.4 4.6s3.1 1.9 4.8 1.9 3.5-.7 4.8-1.9 2.2-2.8 2.4-4.6c8.8-63.3 8.9-127.5.3-190.8zM109 233.7c0-1.9-.8-3.8-2.1-5.1s-3.2-2.1-5.1-2.1-3.8.8-5.1 2.1-2.1 3.2-2.1 5.1c-10.5 49.2-5.5 93.9.4 143.6.3 1.6 1.1 3.1 2.3 4.2s2.8 1.7 4.5 1.7 3.2-.6 4.5-1.7 2.1-2.5 2.3-4.2c6.6-50.4 11.6-94.1.4-143.6m-44.1-7.5c-.2-1.8-1.1-3.5-2.4-4.8s-3.2-1.9-5-1.9-3.6.7-5 1.9-2.2 2.9-2.4 4.8c-9.3 50.2-6.2 94.4.3 144.5.7 7.6 13.6 7.5 14.4 0 7.2-50.9 10.5-93.8.3-144.5zm-44.6 24.6c-.2-1.8-1.1-3.5-2.4-4.8s-3.2-1.9-5-1.9-3.6.7-5 1.9-2.3 2.9-2.4 4.8c-8.5 33.7-5.9 61.6.6 95.4.2 1.7 1 3.3 2.3 4.4s2.9 1.8 4.7 1.8 3.4-.6 4.7-1.8 2.1-2.7 2.3-4.4c7.5-34.5 11.2-61.8.4-95.4z"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/sourcetree.svg�������������������0000664�0000000�0000000�00000001036�14753064456�0030312�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M427.2 203c0-112.1-90.9-203-203-203C112.1-.2 21.2 90.6 21 202.6A202.86 202.86 0 0 0 161.5 396v101.7a14.3 14.3 0 0 0 14.3 14.3h96.4a14.3 14.3 0 0 0 14.3-14.3V396.1A203.18 203.18 0 0 0 427.2 203m-271.6 0c0-90.8 137.3-90.8 137.3 0-.1 89.9-137.3 91-137.3 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/space-awesome.svg����������������0000664�0000000�0000000�00000000671�14753064456�0030667�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 256h32v256H0V352h32v-32h32v-32h32zm416 96v160H384V256h32v32h32v32h32v32zM320 64h32v384h-32v-32H192v32h-32V64h32V32h32V0h64v32h32zm-32 64h-64v64h64z"/></svg>�����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/speakap.svg����������������������0000664�0000000�0000000�00000001515�14753064456�0027560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 391.78C-15.41 303.59-8 167.42 80.64 87.64s224.8-73 304.21 15.24 72 224.36-16.64 304.14c-18.74 16.87 64 43.09 42 52.26-82.06 34.21-253.91 35-346.23-67.5zm213.31-211.6 38.5-40.86c-9.61-8.89-32-26.83-76.17-27.6-52.33-.91-95.86 28.3-96.77 80-.2 11.33.29 36.72 29.42 54.83 34.46 21.42 86.52 21.51 86 52.26-.37 21.28-26.42 25.81-38.59 25.6-3-.05-30.23-.46-47.61-24.62l-40 42.61c28.16 27 59 32.62 83.49 33.05 10.23.18 96.42.33 97.84-81 .28-15.81-2.07-39.72-28.86-56.59-34.36-21.64-85-19.45-84.43-49.75.41-23.25 31-25.37 37.53-25.26.43 0 26.62.26 39.62 17.37z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/speaker-deck.svg�����������������0000664�0000000�0000000�00000001207�14753064456�0030470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M213.86 296H100a100 100 0 0 1 0-200h132.84a40 40 0 0 1 0 80H98c-26.47 0-26.45 40 0 40h113.82a100 100 0 0 1 0 200H40a40 40 0 0 1 0-80h173.86c26.48 0 26.46-40 0-40M298 416a120.2 120.2 0 0 0 51.11-80h64.55a19.83 19.83 0 0 0 19.66-20V196a19.83 19.83 0 0 0-19.66-20H296.42a60.77 60.77 0 0 0 0-80h136.93c43.44 0 78.65 35.82 78.65 80v160c0 44.18-35.21 80-78.65 80z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/spotify.svg����������������������0000664�0000000�0000000�00000002063�14753064456�0027630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8m100.7 364.9c-4.2 0-6.8-1.3-10.7-3.6-62.4-37.6-135-39.2-206.7-24.5-3.9 1-9 2.6-11.9 2.6-9.7 0-15.8-7.7-15.8-15.8 0-10.3 6.1-15.2 13.6-16.8 81.9-18.1 165.6-16.5 237 26.2 6.1 3.9 9.7 7.4 9.7 16.5s-7.1 15.4-15.2 15.4m26.9-65.6c-5.2 0-8.7-2.3-12.3-4.2-62.5-37-155.7-51.9-238.6-29.4-4.8 1.3-7.4 2.6-11.9 2.6-10.7 0-19.4-8.7-19.4-19.4s5.2-17.8 15.5-20.7c27.8-7.8 56.2-13.6 97.8-13.6 64.9 0 127.6 16.1 177 45.5 8.1 4.8 11.3 11 11.3 19.7-.1 10.8-8.5 19.5-19.4 19.5m31-76.2c-5.2 0-8.4-1.3-12.9-3.9-71.2-42.5-198.5-52.7-280.9-29.7-3.6 1-8.1 2.6-12.9 2.6-13.2 0-23.3-10.3-23.3-23.6 0-13.6 8.4-21.3 17.4-23.9 35.2-10.3 74.6-15.2 117.5-15.2 73 0 149.5 15.2 205.4 47.8 7.8 4.5 12.9 10.7 12.9 22.6 0 13.6-11 23.3-23.2 23.3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-behance.svg���������������0000664�0000000�0000000�00000001742�14753064456�0031021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M155.3 318.4c17.2 0 31.2-6.1 31.2-25.4 0-19.7-11.7-27.4-30.3-27.5h-46v52.9zm-5.4-129.6h-39.6v44.8H153c15.1 0 25.8-6.6 25.8-22.9 0-17.7-13.7-21.9-28.9-21.9m129.5 74.8h62.2c-1.7-18.5-11.3-29.7-30.5-29.7-18.3 0-30.5 11.4-31.7 29.7M384 32H64C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64m-34.5 153h-77.8v-18.9h77.8zm-155.8 58.7c23.6 6.7 35 27.5 35 51.6 0 39-32.7 55.7-67.6 55.9H68v-192h90.5c32.9 0 61.4 9.3 61.4 47.5 0 19.3-9 28.8-26.2 37m118.7-38.6c43.5 0 67.6 34.3 67.6 75.4 0 1.6-.1 3.3-.2 5 0 .8-.1 1.5-.1 2.2H279.5c0 22.2 11.7 35.3 34.1 35.3 11.6 0 26.5-6.2 30.2-18.1h33.7c-10.4 31.9-31.9 46.8-65.1 46.8-43.8 0-71.1-29.7-71.1-73 0-41.8 28.7-73.6 71.1-73.6"/></svg>������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-bluesky.svg���������������0000664�0000000�0000000�00000001415�14753064456�0031107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm160 215.4c14.5-30 54-85.8 90.7-113.3 26.5-19.9 69.3-35.2 69.3 13.7 0 9.8-5.6 82.1-8.9 93.8-11.4 40.8-53 51.2-90 44.9 64.7 11 81.2 47.5 45.6 84-67.5 69.3-97-17.4-104.6-39.6l-.3-.9c-.9-2.6-1.4-4.1-1.8-4.1s-.9 1.5-1.8 4.1l-.3.9c-7.6 22.2-37.1 108.8-104.6 39.6-35.5-36.5-19.1-73 45.6-84-37 6.3-78.6-4.1-90-44.9-3.3-11.7-8.9-84-8.9-93.8 0-48.9 42.9-33.5 69.3-13.7 36.7 27.5 76.2 83.4 90.7 113.3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-dribbble.svg��������������0000664�0000000�0000000�00000002060�14753064456�0031173�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M165.9 132.5c-38.3 18-66.8 53.3-75.7 95.7 6.1.1 62.4.3 126.4-16.7-22.7-40.2-47.1-74.1-50.7-79m26.1-9.1c3.8 5.1 28.6 38.9 51 80 48.6-18.3 69.1-45.9 71.6-49.4-33.6-29.8-79.3-41.1-122.6-30.6M277.4 382c-2-12-10-53.8-29.2-103.6-55.1 18.8-93.8 56.4-108.1 85.6 40.5 31.6 93.3 36.7 137.3 18m-49.6-149.4C159.6 253 93.4 252.2 87.4 252v4.2c0 35.1 13.3 67.1 35.1 91.4 22.2-37.9 67.1-77.9 116.5-91.8-3.4-7.8-7.2-15.5-11.1-23.2zm72.5 136.9c30.7-20.7 52.5-53.6 58.6-91.6-4.6-1.5-42.3-12.7-85.1-5.8 17.9 49.1 25.1 89.1 26.5 97.4m-34.8-119c45.5-5.7 90.7 3.4 95.2 4.4-.3-32.3-11.8-61.9-30.9-85.1-2.9 3.9-25.8 33.2-76.3 53.9 4.8 9.8 8.3 17.8 12 26.8M384 32H64C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64M224 416a160 160 0 1 1 0-320 160 160 0 1 1 0 320"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-facebook.svg��������������0000664�0000000�0000000�00000001051�14753064456�0031176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h98.2V334.2h-52.8V256h52.8v-33.7c0-87.1 39.4-127.5 125-127.5 16.2 0 44.2 3.2 55.7 6.4V172c-6-.6-16.5-1-29.6-1-42 0-58.2 15.9-58.2 57.2V256h83.6l-14.4 78.2H255V480h129c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-font-awesome-stroke.svg���0000664�0000000�0000000�00000001320�14753064456�0033335�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 64c-17.7 0-32 14.3-32 32v320c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V96c0-17.7-14.3-32-32-32zM0 96c0-35.3 28.7-64 64-64h320c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm154 58c0 9.3-4.8 17.4-12.1 22h188.9c7.3 0 13.2 5.9 13.2 13.2 0 1.8-.4 3.7-1.1 5.4L312 264l30.9 69.4c.8 1.7 1.1 3.5 1.1 5.4 0 7.3-5.9 13.2-13.2 13.2H144v32h-32V174.5c-6.1-4.8-10-12.2-10-20.5 0-14.4 11.6-26 26-26s26 11.6 26 26"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-font-awesome.svg����������0000664�0000000�0000000�00000001150�14753064456�0032031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm90 122c0 9.3-4.8 17.4-12.1 22h188.9c7.3 0 13.2 5.9 13.2 13.2 0 1.8-.4 3.7-1.1 5.4L312 264l30.9 69.4c.7 1.7 1.1 3.5 1.1 5.4 0 7.3-5.9 13.2-13.2 13.2H144v32h-32V174.5c-6.1-4.8-10-12.2-10-20.5 0-14.4 11.6-26 26-26s26 11.6 26 26"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-git.svg�������������������0000664�0000000�0000000�00000002575�14753064456�0030224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M120.8 335.5c-5.9-.4-12.6-.8-20.2-1.3-3.3 4.1-6.6 8.4-6.6 13.5 0 18.5 65.5 18.5 65.5-1.5 0-8.3-7.4-8.7-38.8-10.7zm7.8-117.9c-32.3 0-33.7 44.5-.7 44.5 32.5 0 31.7-44.5.7-44.5M384 32H64C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64M243.9 172.2c-14.5 0-22.9-8.4-22.9-22.9s8.4-22.3 22.9-22.3c14.7 0 23.1 7.8 23.1 22.3s-8.4 22.9-23.1 22.9M149.6 195h49.5v21.6l-23.4 1.8c4.6 5.8 9.4 14 9.4 25.7 0 48.7-57.2 47.2-74.2 42.4l-8.4 13.4c5 .3 9.8.6 14.3.8 56.3 3.2 80.5 4.6 80.5 38.5 0 29.2-25.7 45.7-69.9 45.7-46 0-63.5-11.6-63.5-31.7 0-11.4 5.1-17.5 14-25.9-8.4-3.5-11.2-9.9-11.2-16.8 0-9.6 7.4-16.3 23-30.6l.2-.2c-12.4-6.1-21.8-19.3-21.8-38.1 0-51.6 56.6-53.3 81.6-46.8zm120.9 108.1 13 1.8V325h-72.4v-20.1q4.05-.6 6.9-.9c9.9-1.2 10.1-1.3 10.1-6v-74.7c0-4.4-.9-4.7-10.1-7.8-1.9-.7-4.2-1.4-6.9-2.4l2.8-20.6h52.6V298c0 4.1.2 4.6 4.1 5.1zm106.6-10.4L384 315c-10.9 5.4-26.9 10.2-41.4 10.2-30.2 0-41.7-12.2-41.7-40.9v-66.6c0-.8 0-1.4-.2-1.8-.8-1.2-4.2-.7-19.6-.7v-22.6c22.3-2.5 31.2-13.7 34-41.4h24.2c0 33.3-.6 38 .7 38.6.3.1.7 0 1.3 0h35.8v25.4h-37.8v61.6c-.2 6.3-.9 30.4 37.9 15.9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-github.svg����������������0000664�0000000�0000000�00000003271�14753064456�0030715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 96c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64zM265.8 407.7c0-1.8 0-6 .1-11.6.1-11.4.1-28.8.1-43.7 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6s-28.4 1.9-41.6 5.6c0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 9 .1 21.7.1 30.6 0 4.8.1 8.6.1 10 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3-8.4 1.5-11.5-3.7-11.5-8m-90.5-54.8c-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3-1.9.4-3.7-.4-3.9-1.7m-9.1 3.2c-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4 0 1.3-1.5 2.4-3.5 2.4m-14.3-2.2c-1.9-.4-3.2-1.9-2.8-3.2s2.4-1.9 4.1-1.5c2 .6 3.3 2.1 2.8 3.4-.4 1.3-2.4 1.9-4.1 1.3m-12.5-7.3c-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1-.9 1.1-2.8.9-4.3-.6m-8.5-10c-1.1-1.5-1.1-3.2 0-3.9 1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1-.9.6-2.6 0-3.7-1.5m-6.3-8.8c-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5-.9.9-2.4.4-3.5-.6m-6-6.4c-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6-.4.9-1.7 1.1-2.8.4"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-gitlab.svg����������������0000664�0000000�0000000�00000001620�14753064456�0030671�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96m337.5 12.5 44.6 116.4.4 1.2c5.6 16.8 7.2 35.2 2.3 52.5-5 17.2-15.4 32.4-29.8 43.3l-.2.1-68.4 51.2-54.1 40.9c-.5.2-1.1.5-1.7.8-2 1-4.4 2-6.7 2-3 0-6.8-1.8-8.3-2.8l-54.2-40.9-67.9-50.9-.4-.3-.2-.1c-14.3-10.8-24.8-26-29.7-43.3s-4.2-35.7 2.2-52.5l.5-1.2 44.7-116.4c.9-2.3 2.5-4.3 4.5-5.6 1.6-1 3.4-1.6 5.2-1.8 1.3-.7 2.1-.4 3.4.1.6.2 1.2.5 2 .7 1 .4 1.6.9 2.4 1.5.6.4 1.2 1 2.1 1.5 1.2 1.4 2.2 3 2.7 4.8l29.2 92.2H285l30.2-92.2c.5-1.8 1.4-3.4 2.6-4.8s2.8-2.4 4.5-3.1c1.7-.6 3.6-.9 5.4-.7s3.6.8 5.2 1.8c2 1.3 3.7 3.3 4.6 5.6"/></svg>����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-google-plus.svg�����������0000664�0000000�0000000�00000001301�14753064456�0031660�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 96c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64zM64 256c0-55.3 44.7-100 100-100 27 0 49.5 9.8 67 26.2l-27.1 26.1c-7.4-7.1-20.3-15.4-39.8-15.4-34.1 0-61.9 28.2-61.9 63.2 0 34.9 27.8 63.2 61.9 63.2 39.6 0 54.4-28.5 56.8-43.1H164v-34.4h94.4c1 5 1.6 10.1 1.6 16.6 0 57.1-38.3 97.6-96 97.6-55.3 0-100-44.7-100-100m291 18.2v29h-29.2v-29h-29V245h29v-29H355v29h29v29.2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-hacker-news.svg�����������0000664�0000000�0000000�00000001126�14753064456�0031637�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 96c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64zM21 229.2s.1-.1.1-.2.1-.2.2-.2c0 .1 0 .3-.1.4zM239.2 384h-31.4V281.3L128 128h37.3c41.5 77.7 48.1 95.8 54.1 112 1.6 4.3 3.1 8.5 5.2 13.6 3.2-7 5.1-11.9 7.1-17.3 5.9-15.3 12.8-33.2 53.5-108.3H320l-80.8 155.1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-instagram.svg�������������0000664�0000000�0000000�00000003033�14753064456�0031414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M194.4 211.7a53.3 53.3 0 1 0 59.3 88.7 53.3 53.3 0 1 0-59.3-88.7m142.3-68.4c-5.2-5.2-11.5-9.3-18.4-12-18.1-7.1-57.6-6.8-83.1-6.5-4.1 0-7.9.1-11.2.1s-7.2 0-11.4-.1c-25.5-.3-64.8-.7-82.9 6.5-6.9 2.7-13.1 6.8-18.4 12s-9.3 11.5-12 18.4c-7.1 18.1-6.7 57.7-6.5 83.2 0 4.1.1 7.9.1 11.1s0 7-.1 11.1c-.2 25.5-.6 65.1 6.5 83.2 2.7 6.9 6.8 13.1 12 18.4s11.5 9.3 18.4 12c18.1 7.1 57.6 6.8 83.1 6.5 4.1 0 7.9-.1 11.2-.1s7.2 0 11.4.1c25.5.3 64.8.7 82.9-6.5 6.9-2.7 13.1-6.8 18.4-12s9.3-11.5 12-18.4c7.2-18 6.8-57.4 6.5-83 0-4.2-.1-8.1-.1-11.4s0-7.1.1-11.4c.3-25.5.7-64.9-6.5-83-2.7-6.9-6.8-13.1-12-18.4zm-67.1 44.5a82 82 0 1 1-91.2 136.4 82 82 0 1 1 91.1-136.4zm29.2-1.3c-3.1-2.1-5.6-5.1-7.1-8.6s-1.8-7.3-1.1-11.1 2.6-7.1 5.2-9.8 6.1-4.5 9.8-5.2 7.6-.4 11.1 1.1 6.5 3.9 8.6 7 3.2 6.8 3.2 10.6c0 2.5-.5 5-1.4 7.3s-2.4 4.4-4.1 6.2-3.9 3.2-6.2 4.2-4.8 1.5-7.3 1.5c-3.8 0-7.5-1.1-10.6-3.2zM448 96c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64zm-91 293c-18.7 18.7-41.4 24.6-67 25.9-26.4 1.5-105.6 1.5-132 0-25.6-1.3-48.3-7.2-67-25.9s-24.6-41.4-25.8-67c-1.5-26.4-1.5-105.6 0-132 1.3-25.6 7.1-48.3 25.8-67s41.5-24.6 67-25.8c26.4-1.5 105.6-1.5 132 0 25.6 1.3 48.3 7.1 67 25.8s24.6 41.4 25.8 67c1.5 26.3 1.5 105.4 0 131.9-1.3 25.6-7.1 48.3-25.8 67z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-js.svg��������������������0000664�0000000�0000000�00000001604�14753064456�0030045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 96c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64zM180.9 444.9c-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7c0 43.6-25.6 63.5-62.9 63.5m85.8-43 34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6-39.1 0-64.4-18.6-76.7-43"/></svg>����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-lastfm.svg����������������0000664�0000000�0000000�00000002013�14753064456�0030712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 96c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64zM210.7 280.8c-1.8-5.5-3.4-10.8-5-15.9-12.9-41.9-21-68.4-58-68.4-22.4 0-45.1 16.1-45.1 61.2 0 35.2 18 57.2 43.3 57.2 28.6 0 47.6-21.3 47.6-21.3l11.7 31.9s-19.8 19.4-61.2 19.4c-51.3 0-79.9-30.1-79.9-85.8 0-57.9 28.6-92 82.5-92 67.9 0 79.3 35.3 96.4 88.4 1.4 4.4 2.9 8.9 4.4 13.5 8.8 26.8 24.2 46.2 61.2 46.2 24.9 0 38.1-5.5 38.1-19.1 0-17.5-16.9-21.2-40-26.4-3.2-.7-6.5-1.4-9.9-2.2-30.4-7.3-42.5-23.1-42.5-48 0-40 32.3-52.4 65.2-52.4 37.4 0 60.1 13.6 63 46.6l-36.7 4.4c-1.5-15.8-11-22.4-28.6-22.4-16.1 0-26 7.3-26 19.8 0 11 4.8 17.6 20.9 21.3 2.2.5 4.5 1 6.7 1.4 31.1 6.5 65.1 13.7 65.1 56.1.1 36.7-30.7 50.6-76.1 50.6-63.4 0-85.4-28.6-97.1-64.1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-letterboxd.svg������������0000664�0000000�0000000�00000001736�14753064456�0031613�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 32c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96c0-35.3 28.7-64 64-64zM105.1 187C66.4 187 35 218.3 35 257s31.4 70 70.1 70c24.8 0 46.5-12.8 59-32.2l.5-.7-.4-.6c-6.5-10.6-10.2-23.1-10.2-36.5 0-13.6 3.9-26.3 10.6-37.1-12.4-19.8-34.4-32.9-59.5-32.9m118.9 0c-24.8 0-46.5 12.8-59 32.2l-.5.7.4.6c6.5 10.6 10.2 23.1 10.2 36.5 0 13.6-3.9 26.3-10.6 37.1 12.4 19.7 34.4 32.9 59.5 32.9 24.8 0 46.5-12.8 59-32.2l.5-.7-.4-.6c-6.5-10.6-10.2-23.1-10.2-36.5 0-13.6 3.9-26.3 10.6-37.1-12.4-19.7-34.4-32.9-59.5-32.9m118.9 0c-24.8 0-46.5 12.8-59 32.2l-.5.7.4.6c6.5 10.6 10.2 23.1 10.2 36.5 0 13.6-3.9 26.3-10.6 37.1 12.4 19.8 34.4 32.9 59.5 32.9 38.7 0 70.1-31.3 70.1-70s-31.4-70-70.1-70"/></svg>����������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-odnoklassniki.svg���������0000664�0000000�0000000�00000001552�14753064456�0032303�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 137.1a39.9 39.9 0 1 0 0 79.7 39.9 39.9 0 1 0 0-79.7M384 32H64C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64M224 95.9a81 81 0 1 1 0 162.1 81 81 0 1 1 0-162.1m59.3 168.3c16.8-13.2 29.5-5.5 34.1 3.6 7.8 16-1.1 23.7-21.5 37-17.1 10.9-40.7 15.2-56.2 16.8l13 12.9 47.7 47.7c17.4 17.9-11 45.8-28.6 28.6-12-12.2-29.5-29.7-47.7-47.9l-47.7 47.9c-17.7 17.2-46-11-28.4-28.6l12.5-12.5c10.4-10.4 22.6-22.7 35.2-35.2l12.9-12.9c-15.4-1.6-39.3-5.7-56.6-16.8-20.3-13.3-29.3-20.9-21.4-37 4.6-9.1 17.3-16.8 34.1-3.6 0 0 22.7 18 59.3 18s59.3-18 59.3-18"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-pied-piper.svg������������0000664�0000000�0000000�00000001074�14753064456�0031470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 419 0 479.2l.8-328C.8 85.3 54 32 120 32h327.2c-93 28.9-189.9 94.2-253.9 168.6C122.7 282 82.6 338 32 419M448 32S305.2 98.8 261.6 199.1c-23.2 53.6-28.9 118.1-71 158.6-28.9 27.8-69.8 38.2-105.3 56.3-23.2 12-66.4 40.5-84.9 66h328.4c66 0 119.3-53.3 119.3-119.2-.1 0-.1-328.8-.1-328.8"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-pinterest.svg�������������0000664�0000000�0000000�00000001723�14753064456�0031450�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 32H64C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h72.6l-2.2-.8c-5.4-48.1-3.1-57.5 15.7-134.7 3.9-16 8.5-35 13.9-57.9 0 0-7.3-14.8-7.3-36.5 0-70.7 75.5-78 75.5-25 0 13.5-5.4 31.1-11.2 49.8-3.3 10.6-6.6 21.5-9.1 32-5.7 24.5 12.3 44.4 36.4 44.4 43.7 0 77.2-46 77.2-112.4 0-58.8-42.3-99.9-102.6-99.9C153 139 112 191.4 112 245.6c0 21.1 8.2 43.7 18.3 56 2 2.4 2.3 4.5 1.7 7-1.1 4.7-3.1 12.9-4.7 19.2-1 4-1.8 7.3-2.1 8.6-1.1 4.5-3.5 5.5-8.2 3.3-30.6-14.3-49.8-59.1-49.8-95.1C67.2 167.1 123.4 96 229.4 96c85.2 0 151.4 60.7 151.4 141.8 0 84.6-53.3 152.7-127.4 152.7-24.9 0-48.3-12.9-56.3-28.2 0 0-12.3 46.9-15.3 58.4-5 19.3-17.6 42.9-27.4 59.3H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64"/></svg>���������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-reddit.svg����������������0000664�0000000�0000000�00000002231�14753064456�0030701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32h320c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96c0-35.3 28.7-64 64-64m241.9 134.4c20.6 0 37.3-16.7 37.3-37.3s-16.7-37.3-37.3-37.3c-18 0-33.1 12.8-36.6 29.8-30.2 3.2-53.8 28.8-53.8 59.9v.2c-32.8 1.4-62.8 10.7-86.6 25.5-8.8-6.8-19.9-10.9-32-10.9-28.9 0-52.3 23.4-52.3 52.3 0 21 12.3 39 30.1 47.4 1.7 60.7 67.9 109.6 149.3 109.6s147.6-48.9 149.3-109.7c17.7-8.4 29.9-26.4 29.9-47.3 0-28.9-23.4-52.3-52.3-52.3-12 0-23 4-31.9 10.8-24-14.9-54.3-24.2-87.5-25.4v-.1c0-22.2 16.5-40.7 37.9-43.7 3.9 16.5 18.7 28.7 36.3 28.7zM155 248.1c14.6 0 25.8 15.4 25 34.4s-11.8 25.9-26.5 25.9-27.5-7.7-26.6-26.7 13.5-33.5 28.1-33.5zm166.4 33.5c.9 19-12 26.7-26.6 26.7s-25.6-6.9-26.5-25.9 10.3-34.4 25-34.4 27.3 14.6 28.1 33.5zm-42.1 49.6c-9 21.5-30.3 36.7-55.1 36.7s-46.1-15.1-55.1-36.7c-1.1-2.6.7-5.4 3.4-5.7 16.1-1.6 33.5-2.5 51.7-2.5s35.6.9 51.7 2.5c2.7.3 4.5 3.1 3.4 5.7"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-snapchat.svg��������������0000664�0000000�0000000�00000006262�14753064456�0031237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 32H64A64 64 0 0 0 0 96v320a64 64 0 0 0 64 64h320a64 64 0 0 0 64-64V96a64 64 0 0 0-64-64m-3.907 319.309-.083.1a32.4 32.4 0 0 1-8.717 6.823 90.3 90.3 0 0 1-20.586 8.2 12.7 12.7 0 0 0-3.852 1.76c-2.158 1.909-2.1 4.64-4.4 8.55a23.1 23.1 0 0 1-6.84 7.471c-6.707 4.632-14.244 4.923-22.23 5.23-7.214.274-15.39.581-24.729 3.669-3.761 1.245-7.753 3.694-12.377 6.533-11.265 6.9-26.68 16.353-52.3 16.353s-40.925-9.4-52.106-16.279c-4.657-2.888-8.675-5.362-12.543-6.64-9.339-3.08-17.516-3.4-24.729-3.67-7.986-.307-15.523-.6-22.231-5.229a23.1 23.1 0 0 1-6.01-6.11c-3.2-4.632-2.855-7.8-5.254-9.895a13.4 13.4 0 0 0-4.1-1.834 90 90 0 0 1-20.313-8.127 32.9 32.9 0 0 1-8.3-6.284c-6.583-6.757-8.276-14.776-5.686-21.824 3.436-9.338 11.571-12.111 19.4-16.262 14.776-8.027 26.348-18.055 34.433-29.884a68 68 0 0 0 5.985-10.567c.789-2.158.772-3.329.241-4.416a7.4 7.4 0 0 0-2.208-2.217 889 889 0 0 0-6.882-4.5c-3.27-2.141-5.868-3.818-7.529-4.98-6.267-4.383-10.65-9.04-13.4-14.245a28.4 28.4 0 0 1-1.369-23.584c4.134-10.924 14.469-17.706 26.978-17.706a37 37 0 0 1 7.845.83c.689.15 1.37.307 2.042.482-.108-7.43.058-15.357.722-23.119 2.358-27.261 11.912-41.589 21.874-52.994a86.8 86.8 0 0 1 22.28-17.931C188.254 100.383 205.312 96 224 96s35.828 4.383 50.944 13.016a87.2 87.2 0 0 1 22.239 17.9c9.961 11.406 19.516 25.709 21.874 52.995a231 231 0 0 1 .713 23.118 53 53 0 0 1 2.051-.481 37 37 0 0 1 7.844-.83c12.5 0 22.82 6.782 26.971 17.706a28.37 28.37 0 0 1-1.4 23.559c-2.74 5.2-7.123 9.861-13.39 14.244-1.668 1.187-4.258 2.864-7.529 4.981a877 877 0 0 0-7.164 4.682 6.9 6.9 0 0 0-1.951 2.034c-.506 1.046-.539 2.191.166 4.208a69 69 0 0 0 6.085 10.792c8.268 12.1 20.188 22.313 35.454 30.407 1.486.772 2.98 1.5 4.441 2.258.722.332 1.569.763 2.491 1.3 4.9 2.723 9.2 6.01 11.455 12.153 2.527 6.873.975 14.658-5.201 21.267m-16.719-18.461c-50.313-24.314-58.332-61.918-58.689-64.749-.431-3.379-.921-6.035 2.806-9.472 3.594-3.328 19.541-13.19 23.965-16.278 7.33-5.114 10.534-10.219 8.16-16.495-1.66-4.316-5.686-5.976-9.961-5.976a18.5 18.5 0 0 0-3.993.448c-8.035 1.743-15.838 5.769-20.354 6.857a7 7 0 0 1-1.66.224c-2.408 0-3.279-1.071-3.088-3.968.564-8.783 1.759-25.925.373-41.937-1.884-22.032-8.99-32.948-17.432-42.6-4.051-4.624-23.135-24.654-59.536-24.654S168.53 134.359 164.479 139c-8.434 9.654-15.531 20.57-17.432 42.6-1.386 16.013-.141 33.147.373 41.937.166 2.756-.68 3.968-3.088 3.968a7 7 0 0 1-1.66-.224c-4.507-1.087-12.31-5.113-20.346-6.856a18.5 18.5 0 0 0-3.993-.449c-4.25 0-8.3 1.636-9.961 5.977-2.374 6.276.847 11.381 8.168 16.494 4.425 3.088 20.371 12.958 23.966 16.279 3.719 3.437 3.237 6.093 2.805 9.471-.356 2.79-8.384 40.394-58.689 64.749-2.946 1.428-7.96 4.45.88 9.331 13.88 7.628 23.111 6.807 30.3 11.43 6.093 3.927 2.5 12.394 6.923 15.449 5.454 3.76 21.583-.266 42.335 6.6 17.433 5.744 28.116 22.015 58.963 22.015s41.788-16.3 58.938-21.973c20.795-6.865 36.89-2.839 42.336-6.6 4.433-3.055.822-11.522 6.923-15.448 7.181-4.624 16.411-3.8 30.3-11.472 8.84-4.923 3.826-7.945.854-9.43"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-steam.svg�����������������0000664�0000000�0000000�00000001624�14753064456�0030544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M165.6 309.1c18.6 7.7 27.3 28.9 19.6 47.4s-29 27.2-47.6 19.4l-28.5-11.8c5 10.6 13.8 19.4 25.4 24.2 25.2 10.5 54.1-1.4 64.6-26.5 5.1-12.1 5.1-25.5.1-37.7-5.1-12.1-14.5-21.6-26.7-26.7-12.1-5-25-4.8-36.4-.5zM448 96c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96v144.7l116.6 48.1c12-8.2 26.2-12.1 40.7-11.3l55.4-80.2v-1.1c0-48.2 39.3-87.5 87.6-87.5s87.6 39.3 87.6 87.5c0 49.2-40.9 88.7-89.6 87.5l-79 56.3c1.6 38.5-29.1 68.8-65.7 68.8-31.8 0-58.5-22.7-64.5-52.7L0 319.2V416c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64zM241.9 196.2a58.4 58.4 0 1 0 116.8 0 58.4 58.4 0 1 0-116.8 0m14.6-.1a43.9 43.9 0 1 1 87.8 0 43.9 43.9 0 1 1-87.8 0"/></svg>������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-threads.svg���������������0000664�0000000�0000000�00000002564�14753064456�0031071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm230.2 212.3c19.5 9.3 33.7 23.5 41.2 40.9 10.4 24.3 11.4 63.9-20.2 95.4-24.2 24.1-53.5 35-95.1 35.3h-.2c-46.8-.3-82.8-16.1-106.9-46.8-21.5-27.3-32.6-65.4-33-113.1v-.2c.4-47.7 11.5-85.7 33-113.1 24.2-30.7 60.2-46.5 106.9-46.8h.2c46.9.3 83.3 16 108.2 46.6 12.3 15.1 21.3 33.3 27 54.4l-26.9 7.2c-4.7-17.2-11.9-31.9-21.4-43.6-19.4-23.9-48.7-36.1-87-36.4-38 .3-66.8 12.5-85.5 36.2-17.5 22.3-26.6 54.4-26.9 95.5.3 41.1 9.4 73.3 26.9 95.5 18.7 23.8 47.4 36 85.5 36.2 34.3-.3 56.9-8.4 75.8-27.3 21.5-21.5 21.1-47.9 14.2-64-4-9.4-11.4-17.3-21.3-23.3-2.4 18-7.9 32.2-16.5 43.2-11.4 14.5-27.7 22.4-48.4 23.5-15.7.9-30.8-2.9-42.6-10.7-13.9-9.2-22-23.2-22.9-39.5-1.7-32.2 23.8-55.3 63.5-57.6 14.1-.8 27.3-.2 39.5 1.9-1.6-9.9-4.9-17.7-9.8-23.4-6.7-7.8-17.1-11.8-30.8-11.9h-.4c-11 0-26 3.1-35.6 17.6l-23-15.8c12.8-19.4 33.6-30.1 58.5-30.1h.6c41.8.3 66.6 26.3 69.1 71.8 1.4.6 2.8 1.2 4.2 1.9zm-71.8 67.5c17-.9 36.4-7.6 39.7-48.8-8.8-1.9-18.6-2.9-29-2.9q-4.8 0-9.6.3c-28.6 1.6-38.1 15.5-37.4 27.9.9 16.7 19 24.5 36.4 23.6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-tumblr.svg����������������0000664�0000000�0000000�00000001371�14753064456�0030737�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 96c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64zM256.8 416c-75.5 0-91.9-55.5-91.9-87.9v-90h-29.7c-3.4 0-6.2-2.8-6.2-6.2v-42.5c0-4.5 2.8-8.5 7.1-10 38.8-13.7 50.9-47.5 52.7-73.2.5-6.9 4.1-10.2 10-10.2h44.3c3.4 0 6.2 2.8 6.2 6.2v72h51.9c3.4 0 6.2 2.8 6.2 6.2v51.1c0 3.4-2.8 6.2-6.2 6.2h-52.1V321c0 21.4 14.8 33.5 42.5 22.4 3-1.2 5.6-2 8-1.4 2.2.5 3.6 2.1 4.6 4.9l13.8 40.2c1 3.2 2 6.7-.3 9.1-8.5 9.1-31.2 19.8-60.9 19.8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-twitter.svg���������������0000664�0000000�0000000�00000001567�14753064456�0031143�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm287.3 167.3c0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3-9-6-16.4-14.1-21.5-23.6s-7.8-20.2-7.7-31c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34 .2 2.8.2 5.7.2 8.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-upwork.svg����������������0000664�0000000�0000000�00000001612�14753064456�0030757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M56 32h336c30.9 0 56 25.1 56 56v336c0 30.9-25.1 56-56 56H56c-30.9 0-56-25.1-56-56V88c0-30.9 25.1-56 56-56m214.9 242.2c6.6-52.9 25.9-69.5 51.4-69.5 25.3 0 44.9 20.2 44.9 49.7s-19.7 49.7-44.9 49.7c-27.9 0-46.3-21.5-51.4-29.9m-26.7-41.8c-8.2-15.5-14.3-36.3-19.2-55.6h-62.9v78.1c0 28.4-12.9 49.4-38.2 49.4S84.1 283.4 84.1 255l.3-78.1H48.2V255c0 22.8 7.4 43.5 20.9 58.2 13.9 15.2 32.8 23.2 54.8 23.2 43.7 0 74.2-33.5 74.2-81.5v-52.5c4.6 17.3 15.4 50.5 36.2 79.7L215 392.6h36.8l12.8-78.4c4.2 3.5 8.7 6.6 13.4 9.4 12.3 7.8 26.4 12.2 40.9 12.6h3.4c45.1 0 80.9-34.9 80.9-81.9s-35.9-82.2-80.9-82.2c-45.4 0-70.9 29.7-78.1 60.1z"/></svg>����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-viadeo.svg����������������0000664�0000000�0000000�00000002137�14753064456�0030702�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 96c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64zM118.3 381.2c-68-73.6-19.8-196.1 81.2-196.1 13.3 0 26.6 2.1 39.1 6.7-4.3 8.4-7.3 17.6-8.4 27.1-9.7-4.1-20.2-6-30.7-6-48.8 0-84.6 41.7-84.6 88.9 0 43 28.5 78.7 69.5 85.9 61.5-24 72.9-117.6 72.9-175 0-7.3 0-14.8-.6-22.1-11.2-32.9-26.6-64.6-44.2-94.5 27.1 18.3 41.9 62.5 44.2 94.1v.4c7.7 22.5 11.8 46.2 11.8 70 0 54.1-21.9 99-68.3 128.2l-2.4.2c50 1 86.2-38.6 86.2-87.2 0-12.2-2.1-24.3-6.9-35.7 9.5-1.9 18.5-5.6 26.4-10.5 15.3 36.6 12.6 87.3-22.8 125.6-42.4 46.2-120 46.6-162.4 0m156.3-163.6c21.9-12 49.6-30.7 62.3-53 1.5-3 4.1-8.6 4.5-12-12.5 27.9-44.2 49.8-73.9 56.7-4.7-7.3-7.5-15.5-7.5-24.3 0-10.3 5.2-24.1 12.9-31.6 8.3-7.9 18-10.9 27.9-14.1 16-5.1 32.5-10.3 44.5-35.9 32.5 46.2 13.1 130.3-36.3 130.3-13.3 0-25.1-7.1-34.4-16.1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-vimeo.svg�����������������0000664�0000000�0000000�00000001444�14753064456�0030552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 96c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64zM318.5 309.5c-43.5 56.5-80.3 84.8-110.4 84.8-18.7 0-34.4-17.2-47.3-51.6q-5.7-20.85-10.5-39c-18.2-68.3-28.6-107.4-46.2-107.4-2.4 0-10.8 5-25.1 15.1L64 192c7-6.1 13.9-12.4 20.6-18.5 29.1-26.3 55.6-50.3 73.5-51.9 24.9-2.4 40.2 14.6 46 51.1 20.5 129.6 29.6 149.2 66.8 90.5 13.4-21.2 20.6-37.2 21.5-48.3 3.4-32.8-25.6-30.6-45.2-22.2 15.7-51.5 45.8-76.5 90.1-75.1 32.9 1 48.4 22.4 46.5 64-1.4 31.1-23.2 73.8-65.3 127.9"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-web-awesome-stroke.svg����0000664�0000000�0000000�00000001551�14753064456�0033152�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 64c-17.7 0-32 14.3-32 32v320c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V96c0-17.7-14.3-32-32-32zM0 96c0-35.3 28.7-64 64-64h320c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm235 81.6 53 46.4 52.2-10.4c-2.6-3.9-4.2-8.5-4.2-13.6 0-13.3 10.7-24 24-24s24 10.7 24 24c0 13-10.3 23.6-23.2 24l-56.3 125.1c-5.2 11.5-16.6 18.9-29.2 18.9H172.7c-12.6 0-24-7.4-29.2-18.9L87.2 224c-12.9-.4-23.2-11-23.2-24 0-13.3 10.7-24 24-24s24 10.7 24 24c0 5-1.5 9.7-4.2 13.6L160 224l53.1-46.4c-8.9-4.1-15-13.1-15-23.6 0-14.4 11.6-26 26-26s26 11.6 26 26c0 10.5-6.2 19.5-15.1 23.6"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-web-awesome.svg�����������0000664�0000000�0000000�00000001402�14753064456�0031640�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm171 145.6 53 46.4 52.2-10.4c-2.6-3.9-4.2-8.5-4.2-13.6 0-13.3 10.7-24 24-24s24 10.7 24 24c0 13-10.3 23.6-23.2 24l-56.3 125.1c-5.2 11.5-16.6 18.9-29.2 18.9H172.7c-12.6 0-24-7.4-29.2-18.9L87.2 224c-12.9-.4-23.2-11-23.2-24 0-13.3 10.7-24 24-24s24 10.7 24 24c0 5-1.5 9.7-4.2 13.6L160 224l53.1-46.4c-8.9-4.1-15-13.1-15-23.6 0-14.4 11.6-26 26-26s26 11.6 26 26c0 10.5-6.2 19.5-15.1 23.6"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-whatsapp.svg��������������0000664�0000000�0000000�00000002461�14753064456�0031262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M92.1 254.6c0 24.9 7 49.2 20.2 70.1l3.1 5-13.3 48.6 49.9-13.1 4.8 2.9c20.2 12 43.4 18.4 67.1 18.4h.1c72.6 0 133.3-59.1 133.3-131.8 0-35.2-15.2-68.3-40.1-93.2-25-25-58-38.7-93.2-38.7-72.7 0-131.8 59.1-131.9 131.8M274.8 330c-12.6 1.9-22.4.9-47.5-9.9-36.8-15.9-61.8-51.5-66.9-58.7-.4-.6-.7-.9-.8-1.1-2-2.6-16.2-21.5-16.2-41 0-18.4 9-27.9 13.2-32.3.3-.3.5-.5.7-.8 3.6-4 7.9-5 10.6-5 2.6 0 5.3 0 7.6.1h.8c2.3 0 5.2 0 8.1 6.8 1.2 2.9 3 7.3 4.9 11.8 3.3 8 6.7 16.3 7.3 17.6 1 2 1.7 4.3.3 6.9-3.4 6.8-6.9 10.4-9.3 13-3.1 3.2-4.5 4.7-2.3 8.6 15.3 26.3 30.6 35.4 53.9 47.1 4 2 6.3 1.7 8.6-1 2.3-2.6 9.9-11.6 12.5-15.5 2.6-4 5.3-3.3 8.9-2s23.1 10.9 27.1 12.9c.8.4 1.5.7 2.1 1 2.8 1.4 4.7 2.3 5.5 3.6.9 1.9.9 9.9-2.4 19.1-3.3 9.3-19.1 17.7-26.7 18.8M448 96c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64zM148.1 393.9 64 416l22.5-82.2c-13.9-24-21.2-51.3-21.2-79.3C65.4 167.1 136.5 96 223.9 96c42.4 0 82.2 16.5 112.2 46.5 29.9 30 47.9 69.8 47.9 112.2 0 87.4-72.7 158.5-160.1 158.5-26.6 0-52.7-6.7-75.8-19.3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-x-twitter.svg�������������0000664�0000000�0000000�00000001040�14753064456�0031372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm297.1 84L257.3 234.6 379.4 396h-95.6L209 298.1 123.3 396H75.8l111-126.9L69.7 116h98l67.7 89.5 78.2-89.5zm-37.8 251.6L153.4 142.9h-28.3l171.8 224.7h26.3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-xing.svg������������������0000664�0000000�0000000�00000001350�14753064456�0030374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 96c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64zM93.8 320.2c-5.5 0-8.7-5.3-6-10.3l49.3-86.7c.1 0 .1-.1 0-.2l-31.4-54c-3-5.6.2-10.1 6-10.1h46.6q7.8 0 12.9 8.7l31.9 55.3q-1.95 3.45-50.1 88.2c-3.5 6.2-7.7 9.1-12.6 9.1zm163.5-33.4v.2l65.5 119c2.8 5.1.1 10.1-6 10.1h-46.6c-5.5 0-9.7-2.9-12.9-8.7l-66-120.3q2.7-4.8 63.3-111.6c11.7-20.7 25.1-44.3 40.1-70.8 3.3-5.8 7.4-8.7 12.5-8.7h46.9c5.7-.1 8.8 4.7 6 10z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/square-youtube.svg���������������0000664�0000000�0000000�00000001321�14753064456�0031121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m282 256.2-95.2-54.1v108.2zM384 32H64C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64m14.4 136.1c7.6 28.6 7.6 88.2 7.6 88.2s0 59.6-7.6 88.1c-4.2 15.8-16.5 27.7-32.2 31.9C337.9 384 224 384 224 384s-113.9 0-142.2-7.6c-15.7-4.2-28-16.1-32.2-31.9-7.6-28.6-7.6-88.2-7.6-88.2s0-59.7 7.6-88.2c4.2-15.8 16.5-28.2 32.2-32.4C110.1 128 224 128 224 128s113.9 0 142.2 7.7c15.7 4.2 28 16.6 32.2 32.4"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/squarespace.svg������������������0000664�0000000�0000000�00000002525�14753064456�0030452�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M186.12 343.34c-9.65 9.65-9.65 25.29 0 34.94s25.29 9.65 34.94 0L378.24 221.1c19.29-19.29 50.57-19.29 69.86 0s19.29 50.57 0 69.86L293.95 445.1c19.27 19.29 50.53 19.31 69.82.04l.04-.04 119.25-119.24c38.59-38.59 38.59-101.14 0-139.72-38.59-38.59-101.15-38.59-139.72 0zm244.53-104.8c-9.65-9.65-25.29-9.65-34.93 0l-157.2 157.18c-19.27 19.29-50.53 19.31-69.82.05l-.05-.05c-9.64-9.64-25.27-9.65-34.92-.01l-.01.01c-9.65 9.64-9.66 25.28-.02 34.93l.02.02c38.58 38.57 101.14 38.57 139.72 0l157.2-157.2c9.65-9.65 9.65-25.29.01-34.93m-261.99 87.33 157.18-157.18c9.64-9.65 9.64-25.29 0-34.94-9.64-9.64-25.27-9.64-34.91 0L133.72 290.93c-19.28 19.29-50.56 19.3-69.85.01l-.01-.01c-19.29-19.28-19.31-50.54-.03-69.84l.03-.03L218.03 66.89c-19.28-19.29-50.55-19.3-69.85-.02l-.02.02L28.93 186.14c-38.58 38.59-38.58 101.14 0 139.72 38.6 38.59 101.13 38.59 139.73.01m-87.33-52.4c9.64 9.64 25.27 9.64 34.91 0l157.21-157.19c19.28-19.29 50.55-19.3 69.84-.02l.02.02c9.65 9.65 25.29 9.65 34.93 0 9.65-9.65 9.65-25.29 0-34.93-38.59-38.59-101.13-38.59-139.72 0L81.33 238.54c-9.65 9.64-9.65 25.28-.01 34.93z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/stack-exchange.svg���������������0000664�0000000�0000000�00000000763�14753064456�0031025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M17.7 332.3h412.7v22c0 37.7-29.3 68-65.3 68h-19L259.3 512v-89.7H83c-36 0-65.3-30.3-65.3-68zm0-23.6h412.7v-85H17.7zm0-109.4h412.7v-85H17.7zM365 0H83C47 0 17.7 30.3 17.7 67.7V90h412.7V67.7C430.3 30.3 401 0 365 0"/></svg>�������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/stack-overflow.svg���������������0000664�0000000�0000000�00000000775�14753064456�0031111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M290.7 311 95 269.7 86.8 309l195.7 41zm51-87L188.2 95.7l-25.5 30.8 153.5 128.3zm-31.2 39.7L129.2 179l-16.7 36.5L293.7 300zM262 32l-32 24 119.3 160.3 32-24zm20.5 328h-200v39.7h200zm39.7 80H42.7V320h-40v160h359.5V320h-40z"/></svg>���mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/stackpath.svg��������������������0000664�0000000�0000000�00000001741�14753064456�0030117�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M244.6 232.4c0 8.5-4.26 20.49-21.34 20.49h-19.61v-41.47h19.61c17.13 0 21.34 12.36 21.34 20.98M448 32v448H0V32zM151.3 287.84c0-21.24-12.12-34.54-46.72-44.85-20.57-7.41-26-10.91-26-18.63s7-14.61 20.41-14.61c14.09 0 20.79 8.45 20.79 18.35h30.7l.19-.57c.5-19.57-15.06-41.65-51.12-41.65-23.37 0-52.55 10.75-52.55 38.29 0 19.4 9.25 31.29 50.74 44.37 17.26 6.15 21.91 10.4 21.91 19.48 0 15.2-19.13 14.23-19.47 14.23-20.4 0-25.65-9.1-25.65-21.9h-30.8l-.18.56c-.68 31.32 28.38 45.22 56.63 45.22 29.98 0 51.12-13.55 51.12-38.29m125.38-55.63c0-25.3-18.43-45.46-53.42-45.46h-51.78v138.18h32.17v-47.36h19.61c30.25 0 53.42-15.95 53.42-45.36M297.94 325 347 186.78h-31.09L268 325zm106.52-138.22h-31.09L325.46 325h29.94z"/></svg>�������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/staylinked.svg�������������������0000664�0000000�0000000�00000001754�14753064456�0030310�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 440 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m382.7 292.5 2.7 2.7-170-167.3c-3.5-3.5-9.7-3.7-13.8-.5L144.3 171c-4.2 3.2-4.6 8.7-1.1 12.2l68.1 64.3c3.6 3.5 9.9 3.7 14 .5l.1-.1c4.1-3.2 10.4-3 14 .5l84 81.3c3.6 3.5 3.2 9-.9 12.2l-93.2 74c-4.2 3.3-10.5 3.1-14.2-.4L63.2 268c-3.5-3.5-9.7-3.7-13.9-.5L3.5 302.4c-4.2 3.2-4.7 8.7-1.2 12.2L211 510.7s7.4 6.8 17.3-.8l198-163.9c4-3.2 4.4-8.7.7-12.2zm54.5-83.4L226.7 2.5c-1.5-1.2-8-5.5-16.3 1.1L3.6 165.7c-4.2 3.2-4.8 8.7-1.2 12.2l42.3 41.7 171.7 165.1c3.7 3.5 10.1 3.7 14.3.4l50.2-38.8-.3-.3 7.7-6c4.2-3.2 4.6-8.7.9-12.2l-57.1-54.4c-3.6-3.5-10-3.7-14.2-.5l-.1.1c-4.2 3.2-10.5 3.1-14.2-.4L109 180.8c-3.6-3.5-3.1-8.9 1.1-12.2l92.2-71.5c4.1-3.2 10.3-3 13.9.5l160.4 159c3.7 3.5 10 3.7 14.1.5l45.8-35.8c4.1-3.2 4.4-8.7.7-12.2"/></svg>��������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/steam-symbol.svg�����������������0000664�0000000�0000000�00000001601�14753064456�0030544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M395.5 177.5c0 33.8-27.5 61-61 61-33.8 0-61-27.3-61-61s27.3-61 61-61c33.5 0 61 27.2 61 61m52.5.2c0 63-51 113.8-113.7 113.8L225 371.3c-4 43-40.5 76.8-84.5 76.8-40.5 0-74.7-28.8-83-67L0 358V250.7L97.2 290c15.1-9.2 32.2-13.3 52-11.5l71-101.7c.5-62.3 51.5-112.8 114-112.8C397 64 448 115 448 177.7M203 363c0-34.7-27.8-62.5-62.5-62.5q-6.75 0-13.5 1.5l26 10.5c25.5 10.2 38 39 27.7 64.5-10.2 25.5-39.2 38-64.7 27.5-10.2-4-20.5-8.3-30.7-12.2 10.5 19.7 31.2 33.2 55.2 33.2 34.7 0 62.5-27.8 62.5-62.5m207.5-185.3c0-42-34.3-76.2-76.2-76.2-42.3 0-76.5 34.2-76.5 76.2 0 42.2 34.3 76.2 76.5 76.2 41.9.1 76.2-33.9 76.2-76.2"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/steam.svg������������������������0000664�0000000�0000000�00000001762�14753064456�0027251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M496 256c0 137-111.2 248-248.4 248-113.8 0-209.6-76.3-239-180.4l95.2 39.3c6.4 32.1 34.9 56.4 68.9 56.4 39.2 0 71.9-32.4 70.2-73.5l84.5-60.2c52.1 1.3 95.8-40.9 95.8-93.5 0-51.6-42-93.5-93.7-93.5s-93.7 42-93.7 93.5v1.2L176.6 279c-15.5-.9-30.7 3.4-43.5 12.1L0 236.1C10.2 108.4 117.1 8 247.6 8 384.8 8 496 119 496 256M155.7 384.3l-30.5-12.6a52.8 52.8 0 0 0 27.2 25.8c26.9 11.2 57.8-1.6 69-28.4 5.4-13 5.5-27.3.1-40.3S206 305.6 193 300.2c-12.9-5.4-26.7-5.2-38.9-.6l31.5 13c19.8 8.2 29.2 30.9 20.9 50.7-8.3 19.9-31 29.2-50.8 21m173.8-129.9c-34.4 0-62.4-28-62.4-62.3s28-62.3 62.4-62.3 62.4 28 62.4 62.3-27.9 62.3-62.4 62.3m.1-15.6c25.9 0 46.9-21 46.9-46.8 0-25.9-21-46.8-46.9-46.8s-46.9 21-46.9 46.8c.1 25.8 21.1 46.8 46.9 46.8"/></svg>��������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/sticker-mule.svg�����������������0000664�0000000�0000000�00000003463�14753064456�0030544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M561.7 199.6c-1.3.3.3 0 0 0m-6.2-77.4c-7.7-22.3-5.1-7.2-13.4-36.9-1.6-6.5-3.6-14.5-6.2-20-4.4-8.7-4.6-7.5-4.6-9.5 0-5.3 30.7-45.3 19-46.9-5.7-.6-12.2 11.6-20.6 17-8.6 4.2-8 5-10.3 5-2.6 0-5.7-3-6.2-5-2-5.7 1.9-25.9-3.6-25.9-3.6 0-12.3 24.8-17 25.8-5.2 1.3-27.9-11.4-75.1 18-25.3 13.2-86.9 65.2-87 65.3-6.7 4.7-20 4.7-35.5 16-44.4 30.1-109.6 9.4-110.7 9-110.6-26.8-128-15.2-159 11.5-20.8 17.9-23.7 36.5-24.2 38.9-4.2 20.4 5.2 48.3 6.7 64.3 1.8 19.3-2.7 17.7 7.7 98.3.5 1 4.1 0 5.1 1.5 0 8.4-3.8 12.1-4.1 13-1.5 4.5-1.5 10.5 0 16 2.3 8.2 8.2 37.2 8.2 46.9 0 41.8.4 44 2.6 49.4 3.9 10 12.5 9.1 17 12 3.1 3.5-.5 8.5 1 12.5.5 2 3.6 4 6.2 5 9.2 3.6 27 .3 29.9-2.5 1.6-1.5.5-4.5 3.1-5 5.1 0 10.8-.5 14.4-2.5 5.1-2.5 4.1-6 1.5-10.5-.4-.8-7-13.3-9.8-16-2.1-2-5.1-3-7.2-4.5-5.8-4.9-10.3-19.4-10.3-19.5-4.6-19.4-10.3-46.3-4.1-66.8 4.6-17.2 39.5-87.7 39.6-87.8 4.1-6.5 17-11.5 27.3-7 6 1.9 19.3 22 65.4 30.9 47.9 8.7 97.4-2 112.2-2 2.8 2-1.9 13-.5 38.9 0 26.4-.4 13.7-4.1 29.9-2.2 9.7 3.4 23.2-1.5 46.9-1.4 9.8-9.9 32.7-8.2 43.4.5 1 1 2 1.5 3.5.5 4.5 1.5 8.5 4.6 10 7.3 3.6 12-3.5 9.8 11.5-.7 3.1-2.6 12 1.5 15 4.4 3.7 30.6 3.4 36.5.5 2.6-1.5 1.6-4.5 6.4-7.4 1.9-.9 11.3-.4 11.3-6.5.3-1.8-9.2-19.9-9.3-20-2.6-3.5-9.2-4.5-11.3-8-6.9-10.1-1.7-52.6.5-59.4 3-11 5.6-22.4 8.7-32.4 11-42.5 10.3-50.6 16.5-68.3.8-1.8 6.4-23.1 10.3-29.9 9.3-17 21.7-32.4 33.5-47.4 18-22.9 34-46.9 52-69.8 6.1-7 8.2-13.7 18-8 10.8 5.7 21.6 7 31.9 17 14.6 12.8 10.2 18.2 11.8 22.9 1.5 5 7.7 10.5 14.9 9.5 10.4-2 13-2.5 13.4-2.5 2.6-.5 5.7-5 7.2-8 3.1-5.5 7.2-9 7.2-16.5 0-7.7-.4-2.8-20.6-52.9"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/strava.svg�����������������������0000664�0000000�0000000�00000000611�14753064456�0027430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M158.4 0 7 292h89.2l62.2-116.1L220.1 292h88.5zm150.2 292-43.9 88.2-44.6-88.2h-67.6l112.2 220 111.5-220z"/></svg>�����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/stripe-s.svg���������������������0000664�0000000�0000000�00000001116�14753064456�0027677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M155.3 154.6c0-22.3 18.6-30.9 48.4-30.9 43.4 0 98.5 13.3 141.9 36.7V26.1C298.3 7.2 251.1 0 203.8 0 88.1 0 11 60.4 11 161.4c0 157.9 216.8 132.3 216.8 200.4 0 26.4-22.9 34.9-54.7 34.9-47.2 0-108.2-19.5-156.1-45.5v128.5a396.1 396.1 0 0 0 156 32.4c118.6 0 200.3-51 200.3-153.6 0-170.2-218-139.7-218-203.9"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/stripe.svg�����������������������0000664�0000000�0000000�00000002571�14753064456�0027445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m165 144.7-43.3 9.2-.2 142.4c0 26.3 19.8 43.3 46.1 43.3 14.6 0 25.3-2.7 31.2-5.9v-33.8c-5.7 2.3-33.7 10.5-33.7-15.7V221h33.7v-37.8h-33.7zm89.1 51.6-2.7-13.1H213v153.2h44.3V233.3c10.5-13.8 28.2-11.1 33.9-9.3v-40.8c-6-2.1-26.7-6-37.1 13.1m92.3-72.3-44.6 9.5v36.2l44.6-9.5zM44.9 228.3c0-6.9 5.8-9.6 15.1-9.7 13.5 0 30.7 4.1 44.2 11.4v-41.8c-14.7-5.8-29.4-8.1-44.1-8.1-36 0-60 18.8-60 50.2 0 49.2 67.5 41.2 67.5 62.4 0 8.2-7.1 10.9-17 10.9-14.7 0-33.7-6.1-48.6-14.2v40c16.5 7.1 33.2 10.1 48.5 10.1 36.9 0 62.3-15.8 62.3-47.8 0-52.9-67.9-43.4-67.9-63.4M640 261.6c0-45.5-22-81.4-64.2-81.4s-67.9 35.9-67.9 81.1c0 53.5 30.3 78.2 73.5 78.2 21.2 0 37.1-4.8 49.2-11.5v-33.4c-12.1 6.1-26 9.8-43.6 9.8-17.3 0-32.5-6.1-34.5-26.9h86.9c.2-2.3.6-11.6.6-15.9m-87.9-16.8c0-20 12.3-28.4 23.4-28.4 10.9 0 22.5 8.4 22.5 28.4zm-112.9-64.6c-17.4 0-28.6 8.2-34.8 13.9l-2.3-11H363v204.8l44.4-9.4.1-50.2c6.4 4.7 15.9 11.2 31.4 11.2 31.8 0 60.8-23.2 60.8-79.6.1-51.6-29.3-79.7-60.5-79.7m-10.6 122.5c-10.4 0-16.6-3.8-20.9-8.4l-.3-66c4.6-5.1 11-8.8 21.2-8.8 16.2 0 27.4 18.2 27.4 41.4.1 23.9-10.9 41.8-27.4 41.8m-126.7 33.7h44.6V183.2h-44.6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/stubber.svg����������������������0000664�0000000�0000000�00000001141�14753064456�0027575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m136.5 294.2 58.8 22.9c9.1-36.8 25.4-61.1 55-61.1 49.4 0 71.4 63.6 142.4 63.6 15.6 0 35.9-2.8 55.3-13.3V368c0 61.8-50.4 112-112.3 112H0l41.8-56L0 368l41.7-56L0 256.1l41.8-56-41.8-56L41.8 88 0 32h335.7C397.6 32 448 82.3 448 144.1v51.3c-9.2 36.3-25.9 60.6-55 60.6-49.6 0-71.6-63.5-142.4-63.5-35.9 0-95.2 14.6-114.1 101.6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/studiovinari.svg�����������������0000664�0000000�0000000�00000001371�14753064456�0030654�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m480.3 187.7 4.2 28v28l-25.1 44.1-39.8 78.4-56.1 67.5-79.1 37.8-17.7 24.5-7.7 12-9.6 4s17.3-63.6 19.4-63.6 20.3.7 20.3.7l66.7-38.6-92.5 26.1-55.9 36.8-22.8 28-6.6 1.4 20.8-73.6 6.9-5.5 20.7 12.9 88.3-45.2 56.8-51.5 14.8-68.4-125.4 23.3 15.2-18.2-173.4-53.3 81.9-10.5-166-122.9L133.5 108 32.2 0l252.9 126.6-31.5-38L378 163 234.7 64l18.7 38.4-49.6-18.1L158.3 0l194.6 122L310 66.2l108 96.4 12-8.9-21-16.4 4.2-37.8L451 89.1l29.2 24.7 11.5 4.2-7 6.2 8.5 12-13.1 7.4-10.3 20.2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/stumbleupon-circle.svg�����������0000664�0000000�0000000�00000001432�14753064456�0031746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8m0 177.5c-9.8 0-17.8 8-17.8 17.8v106.9c0 40.9-33.9 73.9-74.9 73.9-41.4 0-74.9-33.5-74.9-74.9v-46.5h57.3v45.8c0 10 8 17.8 17.8 17.8s17.8-7.9 17.8-17.8V200.1c0-40 34.2-72.1 74.7-72.1 40.7 0 74.7 32.3 74.7 72.6v23.7l-34.1 10.1-22.9-10.7v-20.6c.1-9.6-7.9-17.6-17.7-17.6m167.6 123.6c0 41.4-33.5 74.9-74.9 74.9-41.2 0-74.9-33.2-74.9-74.2V263l22.9 10.7 34.1-10.1v47.1c0 9.8 8 17.6 17.8 17.6s17.8-7.9 17.8-17.6v-48h57.3c-.1 45.9-.1 46.4-.1 46.4"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/stumbleupon.svg������������������0000664�0000000�0000000�00000001272�14753064456�0030511�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M502.9 266v69.7c0 62.1-50.3 112.4-112.4 112.4-61.8 0-112.4-49.8-112.4-111.3v-70.2l34.3 16 51.1-15.2V338c0 14.7 12 26.5 26.7 26.5S417 352.7 417 338v-72zm-224.7-58.2 34.3 16 51.1-15.2V173c0-60.5-51.1-109-112.1-109-60.8 0-112.1 48.2-112.1 108.2v162.4c0 14.9-12 26.7-26.7 26.7S86 349.5 86 334.6V266H0v69.7C0 397.7 50.3 448 112.4 448c61.6 0 112.4-49.5 112.4-110.8V176.9c0-14.7 12-26.7 26.7-26.7s26.7 12 26.7 26.7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/superpowers.svg������������������0000664�0000000�0000000�00000001132�14753064456�0030525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 32c-83.3 11-166.8 22-250 33-92 12.5-163.3 86.7-169 180-3.3 55.5 18 109.5 57.8 148.2L0 480c83.3-11 166.5-22 249.8-33 91.8-12.5 163.3-86.8 168.7-179.8 3.5-55.5-18-109.5-57.7-148.2zm-79.7 232.3c-4.2 79.5-74 139.2-152.8 134.5-79.5-4.7-140.7-71-136.3-151 4.5-79.2 74.3-139.3 153-134.5 79.3 4.7 140.5 71 136.1 151"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/supple.svg�����������������������0000664�0000000�0000000�00000003512�14753064456�0027443�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M640 262.5c0 64.1-109 116.1-243.5 116.1-24.8 0-48.6-1.8-71.1-5q11.55.6 23.4.6c134.5 0 243.5-56.9 243.5-127.1 0-29.4-19.1-56.4-51.2-78 60 21.1 98.9 55.1 98.9 93.4M47.7 227.9c-.1-70.2 108.8-127.3 243.3-127.6 7.9 0 15.6.2 23.3.5-22.5-3.2-46.3-4.9-71-4.9C108.8 96.3-.1 148.5 0 212.6c.1 38.3 39.1 72.3 99.3 93.3-32.3-21.5-51.5-48.6-51.6-78m60.2 39.9s10.5 13.2 29.3 13.2c17.9 0 28.4-11.5 28.4-25.1 0-28-40.2-25.1-40.2-39.7 0-5.4 5.3-9.1 12.5-9.1 5.7 0 11.3 2.6 11.3 6.6v3.9h14.2v-7.9c0-12.1-15.4-16.8-25.4-16.8-16.5 0-28.5 10.2-28.5 24.1 0 26.6 40.2 25.4 40.2 39.9 0 6.6-5.8 10.1-12.3 10.1-11.9 0-20.7-10.1-20.7-10.1zm120.8-73.6v54.4c0 11.3-7.1 17.8-17.8 17.8s-17.8-6.5-17.8-17.7v-54.5h-15.8v55c0 18.9 13.4 31.9 33.7 31.9 20.1 0 33.4-13 33.4-31.9v-55zm34.4 85.4h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8zm15.8-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5.1 14.7-14 14.7zm57 43h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8zm15.7-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5 14.7-14 14.7zm57.1 34.8c0 5.8 2.4 8.2 8.2 8.2h37.6c5.8 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-18.6c-1.7 0-2.6-1-2.6-2.6v-61.2c0-5.7-2.4-8.2-8.2-8.2H401v13.4h5.2c1.7 0 2.6 1 2.6 2.6v61.2zm63.4 0c0 5.8 2.4 8.2 8.2 8.2H519c5.7 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-19.7c-1.7 0-2.6-1-2.6-2.6v-20.3h27.7v-13.4H488v-22.4h19.2c1.7 0 2.6 1 2.6 2.6v5.2H524v-13c0-5.7-2.5-8.2-8.2-8.2h-51.6v13.4h7.8v63.9zm58.9-76v5.9h1.6v-5.9h2.7v-1.2h-7v1.2zm5.7-1.2v7.1h1.5v-5.7l2.3 5.7h1.3l2.3-5.7v5.7h1.5v-7.1h-2.3l-2.1 5.1-2.1-5.1z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/suse.svg�������������������������0000664�0000000�0000000�00000003700�14753064456�0027111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M593.1 192.6a10.4 10.4 0 1 1 11.4 17.4 10.4 10.4 0 1 1-11.4-17.4M546 204.8a38.5 38.5 0 1 1 75-17.6 38.5 38.5 0 1 1-75 17.6M433.7 336.7c3.2 4.6 5.8 9 7.3 13.4 1 3.1 2.4 7.3 5.5 8.9.2.1.3.2.5.2 5.7 2.1 20.3 1.7 20.3 1.7h26.8c2.3 0 22.4 0 21.9-2.3-2.4-10.8-14.9-12.7-24.4-18.3-8.7-5.2-17-11.1-20.8-21.3-2-5.2-.8-17.4 2.6-21.8 2.5-3.2 6.1-5.3 10-6.2 4.3-.9 8.8-.1 13.1.3 5.3.5 10.6 1.5 15.9 2.2 10.3 1.3 20.6 1.9 31 1.6 17.1-.5 34.2-3.2 50.4-8.7 11.3-3.8 22.4-8.9 32-16.1 10.9-8.1 8.1-7.4-3-6.2-13.3 1.4-26.6 1.6-39.9.8-12.4-.7-24.7-2.2-35.9-7.9-8.8-4.6-16.4-9.1-23.4-16.2-1-1.1-1.7-4.2.2-6.2 1.9-1.9 5.8-.8 7 .2 12.2 10.2 30.5 18.6 49.3 19.5 10.2.5 20.1.7 30.4.3 5.1-.2 12.8-.2 17.9-.3 2.6 0 9.8.7 11.2-2.1.4-.8.4-1.8.3-2.7-1.5-40.9-4.5-86.9-47.3-106.5-31.9-14.6-79.7-37.2-99.9-46.6-4.7-2.2-10.2 1.3-10.2 6.5 0 13.6.7 33.3.7 51.1-9.7-9.9-26-16.1-38.4-21.8-14.1-6.5-28.7-12-43.5-16.6-29.8-9.2-60.7-14.9-91.7-18-35.2-3.5-71-1.8-105.7 5.3-56.9 12.2-113.1 39.7-155.7 79.8-26.1 24.6-46.6 59.7-48 95.2-2 50.3 12.1 77.3 38 105.2 41.3 44.4 130.2 50.6 166.2-2 16.2-23.7 19.7-55.8 8-82-11.8-26.2-38.8-45.1-67.4-46-22.2-.7-45.9 10.6-54.5 31.1-6.5 15.7-2.8 35.1 9 47.3 4.6 4.8 10.9 8.7 17.7 7.1 4-.9 7.4-3.9 8-8 .9-6-4.4-9.9-7.6-14.5-5.8-8.3-4.7-20.9 2.7-27.9 6.2-6 15.3-7.8 23.9-7.7 8 0 16.2 1.4 23.1 5.5 9.7 5.7 16.2 16.2 18.4 27.2 6.7 33-20.2 59.9-56.6 62-18.6 1.1-37.6-3.8-52.1-15.5-36.9-29.8-45.9-90.3-3.8-122.7 40-30.7 90.4-22.8 120.2-6.8 23.8 12.8 41.5 33.6 55 56.7 6.7 11.6 12.5 23.7 17.8 36.1 5.1 11.8 9.9 23.8 20.2 32.5 6.8 5.8 15.2 5.6 24.1 5.6h50.8c6.9 0 5.2-4.6 2.2-7.7-6.7-6.9-16.4-8.4-25.4-10.9-20.5-5.6-18.4-32.8-12.7-32.8 18.3 0 18.9.6 34.9.3 23.2-.3 30.2-1.7 48.3 5 9.7 3.6 19 13.1 25.1 21.7"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/swift.svg������������������������0000664�0000000�0000000�00000003236�14753064456�0027272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 156.09c0-4.51-.08-9-.2-13.52a196 196 0 0 0-2.58-29.42 99.6 99.6 0 0 0-9.22-28A94.08 94.08 0 0 0 394.84 44a99.2 99.2 0 0 0-28-9.22 195 195 0 0 0-29.43-2.59c-4.51-.12-9-.17-13.52-.2H124.14c-4.51 0-9 .08-13.52.2-2.45.07-4.91.15-7.37.27a172 172 0 0 0-22.06 2.32 103 103 0 0 0-21.21 6.1q-3.46 1.45-6.81 3.12a94.7 94.7 0 0 0-18.39 12.32c-1.88 1.61-3.69 3.28-5.43 5A93.9 93.9 0 0 0 12 85.17a99.5 99.5 0 0 0-9.22 28 196 196 0 0 0-2.54 29.4c-.13 4.51-.18 9-.21 13.52v199.83c0 4.51.08 9 .21 13.51a196 196 0 0 0 2.58 29.42 99.3 99.3 0 0 0 9.22 28A94.3 94.3 0 0 0 53.17 468a99.5 99.5 0 0 0 28 9.21 195 195 0 0 0 29.43 2.59c4.5.12 9 .17 13.52.2h199.79c4.51 0 9-.08 13.52-.2a196.6 196.6 0 0 0 29.44-2.59 99.6 99.6 0 0 0 28-9.21A94.22 94.22 0 0 0 436 426.84a99.3 99.3 0 0 0 9.22-28 195 195 0 0 0 2.59-29.42c.12-4.5.17-9 .2-13.51V172.14c-.01-5.35-.01-10.7-.01-16.05m-69.88 241c-20-38.93-57.23-29.27-76.31-19.47-1.72 1-3.48 2-5.25 3l-.42.25c-39.5 21-92.53 22.54-145.85-.38A234.64 234.64 0 0 1 45 290.12a230.6 230.6 0 0 0 39.17 23.37c56.36 26.4 113 24.49 153 0-57-43.85-104.6-101-141.09-147.22a197 197 0 0 1-18.78-25.9c43.7 40 112.7 90.22 137.48 104.12-52.57-55.49-98.89-123.94-96.72-121.74 82.79 83.42 159.18 130.59 159.18 130.59 2.88 1.58 5 2.85 6.73 4a127 127 0 0 0 4.16-12.47c13.22-48.33-1.66-103.58-35.31-149.2C329.61 141.75 375 229.34 356.4 303.42c-.44 1.73-.95 3.4-1.44 5.09 38.52 47.4 28.04 98.17 23.13 88.59z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/symfony.svg����������������������0000664�0000000�0000000�00000002557�14753064456�0027647�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8m133.74 143.54c-11.47.41-19.4-6.45-19.77-16.87-.27-9.18 6.68-13.44 6.53-18.85-.23-6.55-10.16-6.82-12.87-6.67-39.78 1.29-48.59 57-58.89 113.85 21.43 3.15 36.65-.72 45.14-6.22 12-7.75-3.34-15.72-1.42-24.56 4-18.16 32.55-19 32 5.3-.36 17.86-25.92 41.81-77.6 35.7-10.76 59.52-18.35 115-58.2 161.72-29 34.46-58.4 39.82-71.58 40.26-24.65.85-41-12.31-41.58-29.84-.56-17 14.45-26.26 24.31-26.59 21.89-.75 30.12 25.67 14.88 34-12.09 9.71.11 12.61 2.05 12.55 10.42-.36 17.34-5.51 22.18-9 24-20 33.24-54.86 45.35-118.35 8.19-49.66 17-78 18.23-82-16.93-12.75-27.08-28.55-49.85-34.72-15.61-4.23-25.12-.63-31.81 7.83-7.92 10-5.29 23 2.37 30.7l12.63 14c15.51 17.93 24 31.87 20.8 50.62-5.06 29.93-40.72 52.9-82.88 39.94-36-11.11-42.7-36.56-38.38-50.62 7.51-24.15 42.36-11.72 34.62 13.6-2.79 8.6-4.92 8.68-6.28 13.07-4.56 14.77 41.85 28.4 51-1.39 4.47-14.52-5.3-21.71-22.25-39.85-28.47-31.75-16-65.49 2.95-79.67C204.23 140.13 251.94 197 262 205.29c37.17-109 100.53-105.46 102.43-105.53 25.16-.81 44.19 10.59 44.83 28.65.25 7.69-4.17 22.59-19.52 23.13"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/teamspeak.svg��������������������0000664�0000000�0000000�00000004024�14753064456�0030104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M152.8 37.2c-32.2 38.1-56.1 82.6-69.9 130.5 0 .2-.1.3-.1.5C43.5 184.4 16 223 16 268c0 59.6 48.4 108 108 108s108-48.4 108-108c0-53.5-38.9-97.9-90-106.5 15.7-41.8 40.4-79.6 72.3-110.7 1.8-1.6 4-2.6 6.3-3.1 37.2-11.5 76.7-13.3 114.8-5.2C454.7 67.6 534 180.7 517.1 301.3c-8.4 62.6-38.6 112.7-87.7 151.4-50.1 39.7-107.5 54.3-170.2 52.2l-24-1c12.4 2.8 25 4.9 37.6 6.3 40.7 4.2 81.4 2.1 120.1-12.5 94-35.5 149.3-102.3 162.9-202.5 4.8-52.6-5.8-105.4-30.8-152C454.6 11.3 290.8-38.4 159 32c-2.4 1.4-4.5 3.1-6.3 5.2zm156.6 396.7c-2.1 11.5-4.2 21.9-14.6 31.3 53.2-1 123.2-29.2 161.8-97.1 39.7-69.9 37.6-139.9-6.3-207.8-36.5-55.3-89.8-82.4-156.6-86.6 1.5 2.3 3.2 4.4 5.2 6.3l5.2 6.3c25.1 31.3 37.6 67.9 42.8 107.5 2.1 15.7-1 30.3-13.6 41.8-4.2 3.1-5.2 6.3-4.2 10.4l7.3 17.7 29.3 54.3c5.2 11.5 4.2 19.8-6.3 28.2-3.2 2.5-6.7 4.6-10.4 6.3l-18.8 8.4 3.1 13.6c3.1 6.3 1 12.5-3.1 17.7-2.5 2.4-3.8 5.9-3.1 9.4 2.1 11.5-2.1 19.8-12.5 25.1-2.1 1-4.2 5.2-5.2 7.3zm-133.6-3.1c16.7 11.5 34.5 20.9 53.2 26.1 24 5.2 41.8-6.3 44.9-30.3 1-8.4 5.2-14.6 12.5-17.7 7.3-4.2 8.4-7.3 2.1-13.6l-9.4-8.4 13.6-4.2c6.3-2.1 7.3-5.2 5.2-11.5-1.4-3-2.4-6.2-3.1-9.4-3.1-14.6-2.1-15.7 11.5-18.8 8.4-3.1 15.7-6.3 21.9-12.5 3.1-2.1 3.1-4.2 1-8.4l-16.7-30.3c-1-1.9-2.1-3.8-3.1-5.7-6.4-11.7-13-23.6-15.7-37.1-2.1-9.4-1-17.7 8.4-24 5.2-4.2 8.4-9.4 8.4-16.7-.4-10.1-1.5-20.3-3.1-30.3-6.3-37.6-23-68.9-51.2-95-5.2-4.2-9.4-6.3-16.7-4.2l-35.6 12.7 6 3.6c6.3 3.7 12.2 7.3 17 12.1 30.3 26.1 41.8 61.6 45.9 100.2 1 8.4 0 16.7-7.3 21.9-8.4 5.2-10.4 12.5-7.3 20.9 4.9 13.2 10.4 26 16.7 38.6l16.7 29.2c-6.3 8.4-13.6 11.5-21.9 14.6-12.5 3.1-14.6 7.3-10.4 20.9.6 1.5 1.4 2.8 2.1 4.2 2.1 5.2 1 8.4-4.2 10.4l-12.5 3.1 5.2 4.2 4.2 4.2c4.2 5.2 4.2 8.4-2.1 10.4-7.3 4.2-11.5 9.4-11.5 17.7 0 12.5-7.3 19.8-18.8 24-3.8 1-7.6 1.5-11.5 1l-34.5-2.1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/telegram.svg���������������������0000664�0000000�0000000�00000001724�14753064456�0027736�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M248 8C111.033 8 0 119.033 0 256s111.033 248 248 248 248-111.033 248-248S384.967 8 248 8m114.952 168.66c-3.732 39.215-19.881 134.378-28.1 178.3-3.476 18.584-10.322 24.816-16.948 25.425-14.4 1.326-25.338-9.517-39.287-18.661-21.827-14.308-34.158-23.215-55.346-37.177-24.485-16.135-8.612-25 5.342-39.5 3.652-3.793 67.107-61.51 68.335-66.746.153-.655.3-3.1-1.154-4.384s-3.59-.849-5.135-.5q-3.283.746-104.608 69.142-14.845 10.194-26.894 9.934c-8.855-.191-25.888-5.006-38.551-9.123-15.531-5.048-27.875-7.717-26.8-16.291q.84-6.7 18.45-13.7 108.446-47.248 144.628-62.3c68.872-28.647 83.183-33.623 92.511-33.789 2.052-.034 6.639.474 9.61 2.885a10.45 10.45 0 0 1 3.53 6.716 43.8 43.8 0 0 1 .417 9.769"/></svg>��������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/tencent-weibo.svg����������������0000664�0000000�0000000�00000001300�14753064456�0030667�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M72.3 495.8c1.4 19.9-27.6 22.2-29.7 2.9C31 368.8 73.7 259.2 144 185.5c-15.6-34 9.2-77.1 50.6-77.1 30.3 0 55.1 24.6 55.1 55.1 0 44-49.5 70.8-86.9 45.1-65.7 71.3-101.4 169.8-90.5 287.2M192 .1C66.1.1-12.3 134.3 43.7 242.4 52.4 259.8 79 246.9 70 229 23.7 136.4 91 29.8 192 29.8c75.4 0 136.9 61.4 136.9 136.9 0 90.8-86.9 153.9-167.7 133.1-19.1-4.1-25.6 24.4-6.6 29.1 110.7 23.2 204-60 204-162.3C358.6 74.7 284 .1 192 .1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/the-red-yeti.svg�����������������0000664�0000000�0000000�00000014224�14753064456�0030435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m488.23 241.7 20.7 7.1c-9.6-23.9-23.9-37-31.7-44.8l7.1-18.2c.2 0 12.3-27.8-2.5-30.7-.6-11.3-6.6-27-18.4-27-7.6-10.6-17.7-12.3-30.7-5.9a122.2 122.2 0 0 0-25.3 16.5c-5.3-6.4-3 .4-3-29.8-37.1-24.3-45.4-11.7-74.8 3l.5.5a239.4 239.4 0 0 0-68.4-13.3c-5.5-8.7-18.6-19.1-25.1-25.1l24.8 7.1c-5.5-5.5-26.8-12.9-34.2-15.2 18.2-4.1 29.8-20.8 42.5-33-34.9-10.1-67.9-5.9-97.9 11.8l12-44.2L182 0c-31.6 24.2-33 41.9-33.7 45.5-.9-2.4-6.3-19.6-15.2-27a35.12 35.12 0 0 0-.5 25.3c3 8.4 5.9 14.8 8.4 18.9-16-3.3-28.3-4.9-49.2 0h-3.7l33 14.3a194.3 194.3 0 0 0-46.7 67.4l-1.7 8.4 1.7 1.7 7.6-4.7c-3.3 11.6-5.3 19.4-6.6 25.8a200.2 200.2 0 0 0-27.8 40.3c-15 1-31.8 10.8-40.3 14.3l3 3.4 28.8 1c-.5 1-.7 2.2-1.2 3.2-7.3 6.4-39.8 37.7-33 80.7l20.2-22.4c.5 1.7.7 3.4 1.2 5.2 0 25.5.4 89.6 64.9 150.5 43.6 40 96 60.2 157.5 60.2 121.7 0 223-87.3 223-211.5 6.8-9.7-1.2 3 16.7-25.1l13 14.3 2.5-.5A182 182 0 0 0 495 255a44.7 44.7 0 0 0-6.8-13.3zM398 111.2l-.5 21.9c5.5 18.1 16.9 17.2 22.4 17.2l-3.4-4.7 22.4-5.4a242 242 0 0 1-27 0c12.8-2.1 33.3-29 43-11.3 3.4 7.6 6.4 17.2 9.3 27.8l1.7-5.9a56.4 56.4 0 0 1-1.7-15.2c5.4.5 8.8 3.4 9.3 10.1.5 6.4 1.7 14.8 3.4 25.3l4.7-11.3c4.6 0 4.5-3.6-2.5 20.7-20.9-8.7-35.1-8.4-46.5-8.4l18.2-16c-25.3 8.2-33 10.8-54.8 20.9-1.1-5.4-5-13.5-16-19.9-3.2 3.8-2.8.9-.7 14.8h-2.5a62.3 62.3 0 0 0-8.4-23.1l4.2-3.4c8.4-7.1 11.8-14.3 10.6-21.9-.5-6.4-5.4-13.5-13.5-20.7 5.6-3.4 15.2-.4 28.3 8.5m-39.6-10.1c2.7 1.9 11.4 5.4 18.9 17.2 4.2 8.4 4 9.8 3.4 11.1-.5 2.4-.5 4.3-3 7.1-1.7 2.5-5.4 4.7-11.8 7.6-7.6-13-16.5-23.6-27.8-31.2zM91 143.1l1.2-1.7c1.2-2.9 4.2-7.6 9.3-15.2l2.5-3.4-13 12.3 5.4-4.7-10.1 9.3-4.2 1.2c12.3-24.1 23.1-41.3 32.5-50.2 9.3-9.3 16-16 20.2-19.4l-6.4 1.2c-11.3-4.2-19.4-7.1-24.8-8.4 2.5-.5 3.7-.5 3.2-.5 10.3 0 17.5.5 20.9 1.2a52.4 52.4 0 0 0 16 2.5l.5-1.7-8.4-35.8 13.5 29a42.9 42.9 0 0 0 5.9-14.3c1.7-6.4 5.4-13 10.1-19.4s7.6-10.6 9.3-11.3a235 235 0 0 0-6.4 25.3l-1.7 7.1-.5 4.7 2.5 2.5C190.4 39.9 214 34 239.8 34.5l21.1.5c-11.8 13.5-27.8 21.9-48.5 24.8a201 201 0 0 1-23.4 2.9l-.2-.5-2.5-1.2a20.75 20.75 0 0 0-14 2c-2.5-.2-4.9-.5-7.1-.7l-2.5 1.7.5 1.2c2 .2 3.9.5 6.2.7l-2 3.4 3.4-.5-10.6 11.3c-4.2 3-5.4 6.4-4.2 9.3l5.4-3.4h1.2a39.4 39.4 0 0 1 25.3-15.2v-3c6.4.5 13 1 19.4 1.2 6.4 0 8.4.5 5.4 1.2a190 190 0 0 1 20.7 13.5c13.5 10.1 23.6 21.9 30 35.4 8.8 18.2 13.5 37.1 13.5 56.6a141 141 0 0 1-3 28.3 210 210 0 0 1-16 46l2.5.5c18.2-19.7 41.9-16 49.2-16l-6.4 5.9 22.4 17.7-1.7 30.7c-5.4-12.3-16.5-21.1-33-27.8 16.5 14.8 23.6 21.1 21.9 20.2-4.8-2.8-3.5-1.9-10.8-3.7 4.1 4.1 17.5 18.8 18.2 20.7l.2.2-.2.2c0 1.8 1.6-1.2-14 22.9-75.2-15.3-106.27-42.7-141.2-63.2l11.8 1.2c-11.8-18.5-15.6-17.7-38.4-26.1L149 225c-8.8-3-18.2-3-28.3.5l7.6-10.6-1.2-1.7c-14.9 4.3-19.8 9.2-22.6 11.3-1.1-5.5-2.8-12.4-12.3-28.8l-1.2 27-13.2-5c1.5-25.2 5.4-50.5 13.2-74.6m276.5 330c-49.9 25-56.1 22.4-59 23.9-29.8-11.8-50.9-31.7-63.5-58.8l30 16.5c-9.8-9.3-18.3-16.5-38.4-44.3l11.8 23.1-17.7-7.6c14.2 21.1 23.5 51.7 66.6 73.5-120.8 24.2-199-72.1-200.9-74.3a262.6 262.6 0 0 0 35.4 24.8c3.4 1.7 7.1 2.5 10.1 1.2l-16-20.7c9.2 4.2 9.5 4.5 69.1 29-42.5-20.7-73.8-40.8-93.2-60.2-.5 6.4-1.2 10.1-1.2 10.1a80.25 80.25 0 0 1 20.7 26.6c-39-18.9-57.6-47.6-71.3-82.6 49.9 55.1 118.9 37.5 120.5 37.1 34.8 16.4 69.9 23.6 113.9 10.6 3.3 0 20.3 17 25.3 39.1l4.2-3-2.5-23.6c9 9 24.9 22.6 34.4 13-15.6-5.3-23.5-9.5-29.5-31.7 4.6 4.2 7.6 9 27.8 15l1.2-1.2-10.5-14.2c11.7-4.8-3.5 1 32-10.8 4.3 34.3 9 49.2.7 89.5m115.3-214.4-2.5.5 3 9.3c-3.5 5.9-23.7 44.3-71.6 79.7-39.5 29.8-76.6 39.1-80.9 40.3l-7.6-7.1-1.2 3 14.3 16-7.1-4.7 3.4 4.2h-1.2l-21.9-13.5 9.3 26.6-19-27.9-1.2 2.5 7.6 29c-6.1-8.2-21-32.6-56.8-39.6l32.5 21.2a214.8 214.8 0 0 1-93.2-6.4c-4.2-1.2-8.9-2.5-13.5-4.2l1.2-3-44.8-22.4 26.1 22.4c-57.7 9.1-113-25.4-126.4-83.4l-2.5-16.4-22.27 22.3c19.5-57.5 25.6-57.9 51.4-70.1-9.1-5.3-1.6-3.3-38.4-9.3 15.8-5.8 33-15.4 73 5.2a18.5 18.5 0 0 1 3.7-1.7c.6-3.2.4-.8 1-11.8 3.9 10 3.6 8.7 3 9.3l1.7.5c12.7-6.5 8.9-4.5 17-8.9l-5.4 13.5 22.3-5.8-8.4 8.4 2.5 2.5c4.5-1.8 30.3 3.4 40.8 16l-23.6-2.5c39.4 23 51.5 54 55.8 69.6l1.7-1.2c-2.8-22.3-12.4-33.9-16-40.1 4.2 5 39.2 34.6 110.4 46-11.3-.5-23.1 5.4-34.9 18.9l46.7-20.2-9.3 21.9c7.6-10.1 14.8-23.6 21.2-39.6v-.5l1.2-3-1.2 16c13.5-41.8 25.3-78.5 35.4-109.7l13.5-27.8v-2l-5.4-4.2h10.1l5.9 4.2 2.5-1.2-3.4-16 12.3 18.9 41.8-20.2-14.8 13 .5 2.9 17.7-.5a184 184 0 0 1 33 4.2l-23.6 2.5-1.2 3 26.6 23.1a254 254 0 0 1 27 32c-11.2-3.3-10.3-3.4-21.2-3.4l12.3 32.5zm-6.1-71.3-3.9 13-14.3-11.8zm-254.8 7.1c1.7 10.6 4.7 17.7 8.8 21.9-9.3 6.6-27.5 13.9-46.5 16l.5 1.2a50.2 50.2 0 0 0 24.8-2.5l-7.1 13c4.2-1.7 10.1-7.1 17.7-14.8 11.9-5.5 12.7-5.1 20.2-16-12.7-6.4-15.7-13.7-18.4-18.8m3.7-102.3c-6.4-3.4-10.6 3-12.3 18.9s2.5 29.5 11.8 39.6 18.2 10.6 26.1 3 3.4-23.6-11.3-47.7a39.6 39.6 0 0 0-14.27-13.8zm-4.7 46.3c5.4 2.2 10.5 1.9 12.3-10.6v-4.7l-1.2.5c-4.3-3.1-2.5-4.5-1.7-6.2l.5-.5c-.9-1.2-5-8.1-12.5 4.7-.5-13.5.5-21.9 3-24.8 1.2-2.5 4.7-1.2 11.3 4.2 6.4 5.4 11.3 16 15.2 32.5 6.5 28-19.8 26.2-26.9 4.9m-45-5.5c1.6.3 9.3-1.1 9.3-14.8h-.5c-5.4-1.1-2.2-5.5-.7-5.9-1.7-3-3.4-4.2-5.4-4.7-8.1 0-11.6 12.7-8.1 21.2a7.51 7.51 0 0 0 5.43 4.2zM216 82.9l-2.5.5.5 3a48.94 48.94 0 0 1 26.1 5.9c-2.5-5.5-10-14.3-28.3-14.3l.5 2.5zm-71.8 49.4c21.7 16.8 16.5 21.4 46.5 23.6l-2.9-4.7a42.67 42.67 0 0 0 14.8-28.3c1.7-16-1.2-29.5-8.8-41.3l13-7.6a2.26 2.26 0 0 0-.5-1.7 14.21 14.21 0 0 0-13.5 1.7c-12.7 6.7-28 20.9-29 22.4-1.7 1.7-3.4 5.9-5.4 13.5a99.6 99.6 0 0 0-2.9 23.6c-4.7-8-10.5-6.4-19.9-5.9l7.1 7.6c-16.5 0-23.3 15.4-23.6 16 6.8 0 4.6-7.6 30-12.3-4.3-6.3-3.3-5-4.9-6.6m18.7-18.7c1.2-7.6 3.4-13 6.4-17.2 5.4-6.4 10.6-10.1 16-11.8 4.2-1.7 7.1 1.2 10.1 9.3a72.1 72.1 0 0 1 3 25.3c-.5 9.3-3.4 17.2-8.4 23.1-2.9 3.4-5.4 5.9-6.4 7.6a39.2 39.2 0 0 1-11.3-.5l-7.1-3.4-5.4-6.4c.8-10 1.3-18.8 3.1-26m42 56.1c-34.8 14.4-34.7 14-36.1 14.3-20.8 4.7-19-24.4-18.9-24.8l5.9-1.2-.5-2.5c-20.2-2.6-31 4.2-32.5 4.9.5.5 3 3.4 5.9 9.3 4.2-6.4 8.8-10.1 15.2-10.6a83.5 83.5 0 0 0 1.7 33.7c.1.5 2.6 17.4 27.5 24.1 11.3 3 27 1.2 48.9-5.4l-9.2.5c-4.2-14.8-6.4-24.8-5.9-29.5 11.3-8.8 21.9-11.3 30.7-7.6h2.5l-11.8-7.6-7.1.5c-5.9 1.2-12.3 4.2-19.4 8.4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/themeco.svg����������������������0000664�0000000�0000000�00000001702�14753064456�0027556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M202.9 8.43c9.9-5.73 26-5.82 35.95-.21L430 115.85c10 5.6 18 19.44 18 30.86V364c0 11.44-8.06 25.29-18 31L238.81 503.74c-9.93 5.66-26 5.57-35.85-.21L17.86 395.12C8 389.34 0 375.38 0 364V146.71c0-11.44 8-25.36 17.91-31.08zm-77.4 199.83c-15.94 0-31.89.14-47.83.14v101.45H96.8V280h28.7c49.71 0 49.56-71.74 0-71.74m140.14 100.29-30.73-34.64c37-7.51 34.8-65.23-10.87-65.51-16.09 0-32.17-.14-48.26-.14v101.59h19.13v-33.91h18.41l29.56 33.91h22.76zm-41.59-82.32c23.34 0 23.26 32.46 0 32.46h-29.13v-32.46zm-95.56-1.6c21.18 0 21.11 38.85 0 38.85H96.18v-38.84zm192.65-18.25c-68.46 0-71 105.8 0 105.8 69.48-.01 69.41-105.8 0-105.8m0 17.39c44.12 0 44.8 70.86 0 70.86s-44.43-70.86 0-70.86"/></svg>��������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/themeisle.svg��������������������0000664�0000000�0000000�00000006476�14753064456�0030126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M208 88.286c0-10 6.286-21.714 17.715-21.714 11.142 0 17.714 11.714 17.714 21.714 0 10.285-6.572 21.714-17.714 21.714C214.286 110 208 98.571 208 88.286m304 160c0 36.001-11.429 102.286-36.286 129.714-22.858 24.858-87.428 61.143-120.857 70.572l-1.143.286v32.571c0 16.286-12.572 30.571-29.143 30.571-10 0-19.429-5.714-24.572-14.286-5.427 8.572-14.856 14.286-24.856 14.286s-19.429-5.714-24.858-14.286c-5.142 8.572-14.571 14.286-24.57 14.286-10.286 0-19.429-5.714-24.858-14.286-5.143 8.572-14.571 14.286-24.571 14.286-18.857 0-29.429-15.714-29.429-32.857-16.286 12.285-35.715 19.428-56.571 19.428-22 0-43.429-8.285-60.286-22.857 10.285-.286 20.571-2.286 30.285-5.714-20.857-5.714-39.428-18.857-52-36.286 21.37 4.645 46.209 1.673 67.143-11.143-22-22-56.571-58.857-68.572-87.428C1.143 321.714 0 303.714 0 289.429c0-49.714 20.286-160 86.286-160 10.571 0 18.857 4.858 23.143 14.857a159 159 0 0 1 12-15.428c2-2.572 5.714-5.429 7.143-8.286 7.999-12.571 11.714-21.142 21.714-34C182.571 45.428 232 17.143 285.143 17.143c6 0 12 .285 17.714 1.143C313.714 6.571 328.857 0 344.572 0c14.571 0 29.714 6 40 16.286.857.858 1.428 2.286 1.428 3.428 0 3.714-10.285 13.429-12.857 16.286 4.286 1.429 15.714 6.858 15.714 12 0 2.857-2.857 5.143-4.571 7.143 31.429 27.714 49.429 67.143 56.286 108 4.286-5.143 10.285-8.572 17.143-8.572 10.571 0 20.857 7.144 28.571 14.001C507.143 187.143 512 221.714 512 248.286M188 89.428c0 18.286 12.571 37.143 32.286 37.143 19.714 0 32.285-18.857 32.285-37.143 0-18-12.571-36.857-32.285-36.857-19.715 0-32.286 18.858-32.286 36.857M237.714 194c0-19.714 3.714-39.143 8.571-58.286-52.039 79.534-13.531 184.571 68.858 184.571 21.428 0 42.571-7.714 60-20 2-7.429 3.714-14.857 3.714-22.572 0-14.286-6.286-21.428-20.572-21.428-4.571 0-9.143.857-13.429 1.714-63.343 12.668-107.142 3.669-107.142-63.999m-41.142 254.858c0-11.143-8.858-20.857-20.286-20.857s-20 9.715-20 20.857v32.571c0 11.143 8.571 21.142 20 21.142s20.286-9.715 20.286-21.142zm49.143 0c0-11.143-8.572-20.857-20-20.857s-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20-10 20-21.142zm49.713 0c0-11.143-8.857-20.857-20.285-20.857s-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20.285-9.715 20.285-21.142zm49.715 0c0-11.143-8.857-20.857-20.286-20.857-11.428 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.858 21.142 20.286 21.142s20.286-10 20.286-21.142zM421.714 286c-30.857 59.142-90.285 102.572-158.571 102.572-96.571 0-160.571-84.572-160.571-176.572q0-25.286 6-49.714c-20 33.715-29.714 72.572-29.714 111.429 0 60.286 24.857 121.715 71.429 160.857 5.143-9.714 14.857-16.286 26-16.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.571-14.286 24.858-14.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.857-14.286 24.858-14.286 10 0 19.428 5.714 24.857 14.286 5.143-8.571 14.571-14.286 24.572-14.286 10.857 0 20.857 6.572 25.714 16 43.427-36.286 68.569-92 71.426-148.286m10.572-99.714c0-53.714-34.571-105.714-92.572-105.714-30.285 0-58.571 15.143-78.857 36.857C240.862 183.812 233.41 254 302.286 254c28.805 0 97.357-28.538 84.286 36.857 28.857-26 45.714-65.714 45.714-104.571"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/think-peaks.svg������������������0000664�0000000�0000000�00000000645�14753064456�0030355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m465.4 409.4 87.1-150.2-32-.3-55.1 95L259.2 0 23 407.4l32 .3L259.2 55.6zm-355.3-44.1h32.1l117.4-202.5L463 511.9l32.5.1-235.8-404.6z"/></svg>�������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/threads.svg����������������������0000664�0000000�0000000�00000002502�14753064456�0027563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M331.5 235.7c2.2.9 4.2 1.9 6.3 2.8 29.2 14.1 50.6 35.2 61.8 61.4 15.7 36.5 17.2 95.8-30.3 143.2-36.2 36.2-80.3 52.5-142.6 53h-.3c-70.2-.5-124.1-24.1-160.4-70.2-32.3-41-48.9-98.1-49.5-169.6v-.5c.5-71.5 17.1-128.6 49.4-169.6 36.3-46.1 90.3-69.7 160.5-70.2h.3c70.3.5 124.9 24 162.3 69.9 18.4 22.7 32 50 40.6 81.7l-40.4 10.8c-7.1-25.8-17.8-47.8-32.2-65.4-29.2-35.8-73-54.2-130.5-54.6-57 .5-100.1 18.8-128.2 54.4C72.1 146.1 58.5 194.3 58 256c.5 61.7 14.1 109.9 40.3 143.3 28 35.6 71.2 53.9 128.2 54.4 51.4-.4 85.4-12.6 113.7-40.9 32.3-32.2 31.7-71.8 21.4-95.9-6.1-14.2-17.1-26-31.9-34.9-3.7 26.9-11.8 48.3-24.7 64.8-17.1 21.8-41.4 33.6-72.7 35.3-23.6 1.3-46.3-4.4-63.9-16-20.8-13.8-33-34.8-34.3-59.3-2.5-48.3 35.7-83 95.2-86.4 21.1-1.2 40.9-.3 59.2 2.8-2.4-14.8-7.3-26.6-14.6-35.2-10-11.7-25.6-17.7-46.2-17.8h-.7c-16.6 0-39 4.6-53.3 26.3l-34.4-23.6c19.2-29.1 50.3-45.1 87.8-45.1h.8c62.6.4 99.9 39.5 103.7 107.7l-.2.2zm-156 68.8c1.3 25.1 28.4 36.8 54.6 35.3 25.6-1.4 54.6-11.4 59.5-73.2-13.2-2.9-27.8-4.4-43.4-4.4-4.8 0-9.6.1-14.4.4-42.9 2.4-57.2 23.2-56.2 41.8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/tiktok.svg�����������������������0000664�0000000�0000000�00000000763�14753064456�0027445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 209.91a210.06 210.06 0 0 1-122.77-39.25v178.72A162.55 162.55 0 1 1 185 188.31v89.89a74.62 74.62 0 1 0 52.23 71.18V0h88a121 121 0 0 0 1.86 22.17A122.18 122.18 0 0 0 381 102.39a121.43 121.43 0 0 0 67 20.14Z"/></svg>�������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/trade-federation.svg�������������0000664�0000000�0000000�00000003054�14753064456�0031351�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M248 8.8c-137 0-248 111-248 248s111 248 248 248 248-111 248-248-111-248-248-248m0 482.8c-129.7 0-234.8-105.1-234.8-234.8S118.3 22 248 22s234.8 105.1 234.8 234.8S377.7 491.6 248 491.6m155.1-328.5v-46.8H209.3V198H54.2l36.7 46h117.7v196.8h48.8V245h83.3v-47h-83.3v-34.8h145.7zm-73.3 45.1v23.9h-82.9v197.4h-26.8V232.1H96.3l-20.1-23.9h143.9v-80.6h171.8V152h-145v56.2zm-161.3-69-12.4-20.7 2.1 23.8-23.5 5.4 23.3 5.4-2.1 24 12.3-20.5 22.2 9.5-15.7-18.1 15.8-18.1zm-29.6-19.7 9.3-11.5-12.7 5.9-8-12.4 1.7 13.9-14.3 3.8 13.7 2.7-.8 14.7 6.8-12.2 13.8 5.3zm165.4 145.2-13.1 5.6-7.3-12.2 1.3 14.2-13.9 3.2 13.9 3.2-1.2 14.2 7.3-12.2 13.1 5.5-9.4-10.7zm106.9-77.2-20.9 9.1-12-19.6 2.2 22.7-22.3 5.4 22.2 4.9-1.8 22.9 11.5-19.6 21.2 8.8-15.1-17zM248 29.9c-125.3 0-226.9 101.6-226.9 226.9S122.7 483.7 248 483.7s226.9-101.6 226.9-226.9S373.3 29.9 248 29.9M342.6 196v51h-83.3v195.7h-52.7V245.9H89.9l-40-49.9h157.4v-81.6h197.8v50.7H259.4V196zM248 43.2c60.3 0 114.8 25 153.6 65.2H202.5V190H45.1C73.1 104.8 153.4 43.2 248 43.2m0 427.1c-117.9 0-213.6-95.6-213.6-213.5 0-21.2 3.1-41.8 8.9-61.1L87.1 252h114.7v196.8h64.6V253h83.3v-62.7h-83.2v-19.2h145.6v-50.8c30.8 37 49.3 84.6 49.3 136.5.1 117.9-95.5 213.5-213.4 213.5M178.8 275l-11-21.4 1.7 24.5-23.7 3.9 23.8 5.9-3.7 23.8 13-20.9 21.5 10.8-15.8-18.8 16.9-17.1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/trello.svg�����������������������0000664�0000000�0000000�00000001257�14753064456�0027440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M392.3 32H56.1C25.1 32 0 57.1 0 88c-.1 0 0-4 0 336 0 30.9 25.1 56 56 56h336.2c30.8-.2 55.7-25.2 55.7-56V88c.1-30.8-24.8-55.8-55.6-56M197 371.3c-.2 14.7-12.1 26.6-26.9 26.6H87.4c-14.8.1-26.9-11.8-27-26.6V117.1c0-14.8 12-26.9 26.9-26.9h82.9c14.8 0 26.9 12 26.9 26.9v254.2zm193.1-112c0 14.8-12 26.9-26.9 26.9h-81c-14.8 0-26.9-12-26.9-26.9V117.2c0-14.8 12-26.9 26.8-26.9h81.1c14.8 0 26.9 12 26.9 26.9z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/tumblr.svg�����������������������0000664�0000000�0000000�00000001216�14753064456�0027437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1.8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5.9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/twitch.svg�����������������������0000664�0000000�0000000�00000000751�14753064456�0027437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M391.17 103.47h-38.63v109.7h38.63ZM285 103h-38.63v109.75H285ZM120.83 0 24.31 91.42v329.16h115.83V512l96.53-91.42h77.25L487.69 256V0Zm328.24 237.75-77.22 73.12h-77.24l-67.6 64v-64h-86.87V36.58h308.93Z"/></svg>�����������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/twitter.svg����������������������0000664�0000000�0000000�00000002070�14753064456�0027633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/typo3.svg������������������������0000664�0000000�0000000�00000001142�14753064456�0027206�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M178.7 78.4c0-24.7 5.4-32.4 13.9-39.4-69.5 8.5-149.3 34-176.3 66.4-5.4 7.7-9.3 20.8-9.3 37.1C7 246 113.8 480 191.1 480c36.3 0 97.3-59.5 146.7-139-7 2.3-11.6 2.3-18.5 2.3-57.2 0-140.6-198.5-140.6-264.9M301.5 32c-30.1 0-41.7 5.4-41.7 36.3 0 66.4 53.8 198.5 101.7 198.5 26.3 0 78.8-99.7 78.8-182.3 0-40.9-67-52.5-138.8-52.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/uber.svg�������������������������0000664�0000000�0000000�00000001225�14753064456�0027067�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M414.1 32H33.9C15.2 32 0 47.2 0 65.9V446c0 18.8 15.2 34 33.9 34H414c18.7 0 33.9-15.2 33.9-33.9V65.9C448 47.2 432.8 32 414.1 32M237.6 391.1C163 398.6 96.4 344.2 88.9 269.6h94.4V290c0 3.7 3 6.8 6.8 6.8H258c3.7 0 6.8-3 6.8-6.8v-67.9c0-3.7-3-6.8-6.8-6.8h-67.9c-3.7 0-6.8 3-6.8 6.8v20.4H88.9c7-69.4 65.4-122.2 135.1-122.2s128.1 52.8 135.1 122.2c7.5 74.5-46.9 141.1-121.5 148.6"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/ubuntu.svg�����������������������0000664�0000000�0000000�00000002030�14753064456�0027447�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M469.2 75a75.6 75.6 0 1 0-151.3 0 75.6 75.6 0 1 0 151.2 0zm-315 165.7a75.6 75.6 0 1 0-151.2 0 75.6 75.6 0 1 0 151.2 0M57 346c18.6 46.9 51 87 93 115.1s91.5 42.6 142 41.7c-14.7-18.6-22.9-41.5-23.2-65.2-6.8-.9-13.3-2.1-19.5-3.4-26.8-5.7-51.9-17.3-73.6-34s-39.3-38.1-51.7-62.5c-20.9 9.9-44.5 12.8-67.1 8.2zm395.1 89.8a75.6 75.6 0 1 0-151.2 0 75.6 75.6 0 1 0 151.2 0m-8.1-84.2c18.5 14.8 31.6 35.2 37.2 58.2 33.3-41.3 52.6-92.2 54.8-145.2s-12.5-105.4-42.2-149.4c-8.6 21.5-24 39.6-43.8 51.6 15.4 28.6 22.9 60.8 21.9 93.2s-10.7 64-28 91.6zM101.1 135.4c12.4 2.7 24.3 7.5 35.1 14.3 16.6-24.2 38.9-44.1 64.8-58s54.8-21.3 84.2-21.7c.2-5.9.9-11.9 2-17.7C290.8 35.6 298.3 20 309 6.8c-47.7-3.8-95.4 6-137.6 28.5S94.3 91.7 70.8 133.4c2.7-.2 5.3-.3 8-.3 7.5 0 15 .8 22.4 2.3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/uikit.svg������������������������0000664�0000000�0000000�00000000653�14753064456�0027263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M443.9 128v256L218 512 0 384V169.7l87.6 45.1v117l133.5 75.5 135.8-75.5v-151l-101.1-57.6 87.6-53.1zM308.6 49.1 223.8 0l-88.6 54.8 86 47.3z"/></svg>�������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/umbraco.svg����������������������0000664�0000000�0000000�00000002200�14753064456�0027554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 510 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M255.35 8C118.36 7.83 7.14 118.72 7 255.68c-.07 137 111 248.2 248 248.27 136.85 0 247.82-110.7 248-247.67S392.34 8.17 255.35 8m145 266q-1.14 40.68-14 65t-43.51 35q-30.61 10.7-85.45 10.47h-4.6q-54.78.22-85.44-10.47t-43.52-35q-12.85-24.36-14-65a225 225 0 0 1 0-30.71 418 418 0 0 1 3.6-43.88c1.88-13.39 3.57-22.58 5.4-32 1-4.88 1.28-6.42 1.82-8.45a5.09 5.09 0 0 1 4.9-3.89h.69l32 5a5.07 5.07 0 0 1 4.16 5 5 5 0 0 1 0 .77l-1.7 8.78q-2.41 13.25-4.84 33.68a381 381 0 0 0-2.64 42.15q-.28 40.43 8.13 59.83a43.87 43.87 0 0 0 31.31 25.18A243 243 0 0 0 250 340.6h10.25a242.6 242.6 0 0 0 57.27-5.16 43.86 43.86 0 0 0 31.15-25.23q8.53-19.42 8.13-59.78a388 388 0 0 0-2.6-42.15q-2.48-20.38-4.89-33.68l-1.69-8.78a5 5 0 0 1 0-.77 5 5 0 0 1 4.2-5l32-5h.82a5 5 0 0 1 4.9 3.89c.55 2.05.81 3.57 1.83 8.45 1.82 9.62 3.52 18.78 5.39 32a416 416 0 0 1 3.61 43.88 228 228 0 0 1-.04 30.73z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/uncharted.svg��������������������0000664�0000000�0000000�00000003054�14753064456�0030111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M171.73 232.813a5.38 5.38 0 0 0 4.97-3.313 48.1 48.1 0 0 1 14.9-25.256c1.243-.828 1.657-2.484 1.657-4.141a4.22 4.22 0 0 0-2.071-3.312L74.429 128.473 148.958 85a9.94 9.94 0 0 0 4.968-8.281 9.11 9.11 0 0 0-4.968-8.281L126.6 55.6a9.75 9.75 0 0 0-9.523 0l-100.2 57.966a9.94 9.94 0 0 0-4.969 8.281v115.107a9.11 9.11 0 0 0 4.969 8.281l22.358 12.835a8.83 8.83 0 0 0 4.968 1.242 9.4 9.4 0 0 0 6.625-2.484 10.8 10.8 0 0 0 2.9-7.039V164.5l115.932 67.9a4.5 4.5 0 0 0 2.07.413M323.272 377.73a12.5 12.5 0 0 0-4.969 1.242l-74.528 43.062V287.882c0-2.9-2.9-5.8-6.211-4.555a53.04 53.04 0 0 1-28.984.414 4.86 4.86 0 0 0-6.21 4.555v133.323l-74.529-43.061a8.83 8.83 0 0 0-4.969-1.242 9.63 9.63 0 0 0-9.523 9.523v26.085a9.11 9.11 0 0 0 4.969 8.281l100.2 57.553a8.83 8.83 0 0 0 4.968 1.242 11 11 0 0 0 4.969-1.242l100.2-57.553a9.94 9.94 0 0 0 4.968-8.281v-26.085c-.823-4.554-5.383-9.109-10.351-9.109M286.007 78a23 23 0 1 0-23-23 23 23 0 0 0 23 23m63.627-10.086a23 23 0 1 0 23 23 23 23 0 0 0-23-23m63.182 83.686a23 23 0 1 0-23-23 23 23 0 0 0 23 23m-63.182-9.2a23 23 0 1 0 23 23 23 23 0 0 0-23-23m-63.627 83.244a23 23 0 1 0-23-23 23 23 0 0 0 23 23.004Zm-62.074 36.358a23 23 0 1 0-23-23 23 23 0 0 0 23 23.004Zm188.883-82.358a23 23 0 1 0 23 23 23 23 0 0 0-23-22.996Zm0 72.272a23 23 0 1 0 23 23 23 23 0 0 0-23-22.996Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/uniregistry.svg������������������0000664�0000000�0000000�00000002342�14753064456�0030517�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 480c39.5 0 76.2-11.8 106.8-32.2H85.3C115.8 468.2 152.5 480 192 480m-89.1-193.1v-12.4H0v12.4c0 2.5 0 5 .1 7.4h103.1c-.2-2.4-.3-4.9-.3-7.4m20.5 57H8.5c2.6 8.5 5.8 16.8 9.6 24.8h138.3c-12.9-5.7-24.1-14.2-33-24.8m-17.7-34.7H1.3c.9 7.6 2.2 15 3.9 22.3h109.7c-4-6.9-7.2-14.4-9.2-22.3m-2.8-69.3H0v17.3h102.9zm0-173.2H0v4.9h102.9zm0-34.7H0v2.5h102.9zm0 69.3H0v7.4h102.9zm0 104H0v14.8h102.9zm0-69.3H0v9.9h102.9zm0 34.6H0V183h102.9zm166.2 160.9h109.7c1.8-7.3 3.1-14.7 3.9-22.3H278.3c-2.1 7.9-5.2 15.4-9.2 22.3m12-185.7H384V136H281.1zm0 37.2H384v-12.4H281.1zm0-74.3H384v-7.4H281.1zm0-76.7v2.5H384V32zm-203 410.9h227.7c11.8-8.7 22.7-18.6 32.2-29.7H44.9c9.6 11 21.4 21 33.2 29.7m203-371.3H384v-4.9H281.1zm0 148.5H384v-14.8H281.1zM38.8 405.7h305.3c6.7-8.5 12.6-17.6 17.8-27.2H23c5.2 9.6 9.2 18.7 15.8 27.2m188.8-37.1H367c3.7-8 5.8-16.2 8.5-24.8h-115c-8.8 10.7-20.1 19.2-32.9 24.8m53.5-81.7c0 2.5-.1 5-.4 7.4h103.1c.1-2.5.2-4.9.2-7.4v-12.4H281.1zm0-29.7H384v-17.3H281.1z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/unity.svg������������������������0000664�0000000�0000000�00000001526�14753064456�0027306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m243.583 91.603 80.112 46.781c2.88 1.642 2.985 6.199 0 7.841l-95.192 55.629a8.75 8.75 0 0 1-8.954 0l-95.192-55.629c-2.932-1.589-2.984-6.252 0-7.841l80.06-46.781V0L0 119.417v238.835l78.384-45.775v-93.563c-.052-3.338 3.823-5.722 6.703-3.921l95.192 55.629a9.09 9.09 0 0 1 4.503 7.842v111.205c.052 3.338-3.823 5.722-6.703 3.92l-80.112-46.781-78.384 45.775L224 512l204.417-119.417-78.384-45.775-80.112 46.781c-2.828 1.749-6.807-.529-6.703-3.92V278.464c0-3.338 1.833-6.305 4.503-7.842l95.193-55.629c2.827-1.748 6.806.477 6.702 3.921v93.563L448 358.252V119.417L243.583 0z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/unsplash.svg���������������������0000664�0000000�0000000�00000000567�14753064456�0027777�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 230.17V480H0V230.17h141.13v124.92h165.74V230.17ZM306.87 32H141.13v124.91h165.74Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/untappd.svg����������������������0000664�0000000�0000000�00000002461�14753064456�0027610�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M401.3 49.9c-79.8 160.1-84.6 152.5-87.9 173.2l-5.2 32.8c-1.9 12-6.6 23.5-13.7 33.4L145.6 497.1c-7.6 10.6-20.4 16.2-33.4 14.6-40.3-5-77.8-32.2-95.3-68.5-5.7-11.8-4.5-25.8 3.1-36.4l148.9-207.9c7.1-9.9 16.4-18 27.2-23.7l29.3-15.5c18.5-9.8 9.7-11.9 135.6-138.9 1-4.8 1-7.3 3.6-8 3-.7 6.6-1 6.3-4.6l-.4-4.6c-.2-1.9 1.3-3.6 3.2-3.6 4.5-.1 13.2 1.2 25.6 10 12.3 8.9 16.4 16.8 17.7 21.1.6 1.8-.6 3.7-2.4 4.2l-4.5 1.1c-3.4.9-2.5 4.4-2.3 7.4.1 2.8-2.3 3.6-6.5 6.1M230.1 36.4c3.4.9 2.5 4.4 2.3 7.4-.2 2.7 2.1 3.5 6.4 6 7.9 15.9 15.3 30.5 22.2 44 .7 1.3 2.3 1.5 3.3.5 11.2-12 24.6-26.2 40.5-42.6 1.3-1.4 1.4-3.5.1-4.9-8-8.2-16.5-16.9-25.6-26.1-1-4.7-1-7.3-3.6-8-3-.8-6.6-1-6.3-4.6.3-3.3 1.4-8.1-2.8-8.2-4.5-.1-13.2 1.1-25.6 10-12.3 8.9-16.4 16.8-17.7 21.1-1.4 4.2 3.6 4.6 6.8 5.4M620 406.7 471.2 198.8c-13.2-18.5-26.6-23.4-56.4-39.1-11.2-5.9-14.2-10.9-30.5-28.9-1-1.1-2.9-.9-3.6.5-46.3 88.8-47.1 82.8-49 94.8-1.7 10.7-1.3 20 .3 29.8 1.9 12 6.6 23.5 13.7 33.4l148.9 207.9c7.6 10.6 20.2 16.2 33.1 14.7 40.3-4.9 78-32 95.7-68.6 5.4-11.9 4.3-25.9-3.4-36.6"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/ups.svg��������������������������0000664�0000000�0000000�00000001671�14753064456�0026746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M103.2 303c-5.2 3.6-32.6 13.1-32.6-19V180H37.9v102.6c0 74.9 80.2 51.1 97.9 39V180h-32.6zM4 74.82v220.9c0 103.7 74.9 135.2 187.7 184.1 112.4-48.9 187.7-80.2 187.7-184.1V74.82c-116.3-61.6-281.8-49.6-375.4 0m358.1 220.9c0 86.6-53.2 113.6-170.4 165.3-117.5-51.8-170.5-78.7-170.5-165.3v-126.4c102.3-93.8 231.6-100 340.9-89.8zm-209.6-107.4v212.8h32.7v-68.7c24.4 7.3 71.7-2.6 71.7-78.5 0-97.4-80.7-80.92-104.4-65.6m32.7 117.3v-100.3c8.4-4.2 38.4-12.7 38.4 49.3 0 67.9-36.4 51.8-38.4 51m79.1-86.4c.1 47.3 51.6 42.5 52.2 70.4.6 23.5-30.4 23-50.8 4.9v30.1c36.2 21.5 81.9 8.1 83.2-33.5 1.7-51.5-54.1-46.6-53.4-73.2.6-20.3 30.6-20.5 48.5-2.2v-28.4c-28.5-22-79.9-9.2-79.7 31.9"/></svg>�����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/upwork.svg�����������������������0000664�0000000�0000000�00000001450�14753064456�0027461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 641 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M494.7 295.6c-50.3 0-83.5-38.9-92.8-53.9 11.9-95.3 46.8-125.4 92.8-125.4 45.5 0 80.9 36.4 80.9 89.7s-35.4 89.7-80.9 89.7zm0-237.8c-81.9 0-127.8 53.4-141 108.4-14.9-28-25.9-65.5-34.5-100.3H206v141c0 51.1-23.3 89-68.8 89s-71.6-37.8-71.6-89l.5-141H.8v141C.8 248 14.1 285.3 38.4 312c25 27.5 59.2 41.8 98.8 41.8 78.8 0 133.8-60.4 133.8-146.9v-94.8c8.2 31.2 27.8 91.1 65.3 143.6l-35 199.4h66.4l23.1-141.3c7.6 6.3 15.7 12 24.2 17 22.2 14 47.7 21.9 73.9 22.8 0 0 4 .2 6.1.2 81.2 0 145.9-62.9 145.9-147.8s-64.8-148.1-146-148.1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/usb.svg��������������������������0000664�0000000�0000000�00000001702�14753064456�0026723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M641.5 256c0 3.1-1.7 6.1-4.5 7.5L547.9 317c-1.4.8-2.8 1.4-4.5 1.4-1.4 0-3.1-.3-4.5-1.1-2.8-1.7-4.5-4.5-4.5-7.8v-35.6H295.7c25.3 39.6 40.5 106.9 69.6 106.9H392V354c0-5 3.9-8.9 8.9-8.9H490c5 0 8.9 3.9 8.9 8.9v89.1c0 5-3.9 8.9-8.9 8.9h-89.1c-5 0-8.9-3.9-8.9-8.9v-26.7h-26.7c-75.4 0-81.1-142.5-124.7-142.5H140.3c-8.1 30.6-35.9 53.5-69 53.5C32 327.3 0 295.3 0 256s32-71.3 71.3-71.3c33.1 0 61 22.8 69 53.5 39.1 0 43.9 9.5 74.6-60.4C255 88.7 273 95.7 323.8 95.7c7.5-20.9 27-35.6 50.4-35.6 29.5 0 53.5 23.9 53.5 53.5s-23.9 53.5-53.5 53.5c-23.4 0-42.9-14.8-50.4-35.6H294c-29.1 0-44.3 67.4-69.6 106.9h310.1v-35.6c0-3.3 1.7-6.1 4.5-7.8s6.4-1.4 8.9.3l89.1 53.5c2.8 1.1 4.5 4.1 4.5 7.2"/></svg>��������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/usps.svg�������������������������0000664�0000000�0000000�00000001411�14753064456�0027121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M460.3 241.7c25.8-41.3 15.2-48.8-11.7-48.8h-27c-.1 0-1.5-1.4-10.9 8-11.2 5.6-37.9 6.3-37.9 8.7 0 4.5 70.3-3.1 88.1 0 9.5 1.5-1.5 20.4-4.4 32-.5 4.5 2.4 2.3 3.8.1m-112.1 22.6c64-21.3 97.3-23.9 102-26.2 4.4-2.9-4.4-6.6-26.2-5.8-51.7 2.2-137.6 37.1-172.6 53.9l-30.7-93.3h196.6c-2.7-28.2-152.9-22.6-337.9-22.6L27 415.8c196.4-97.3 258.9-130.3 321.2-151.5M94.7 96c253.3 53.7 330 65.7 332.1 85.2 36.4 0 45.9 0 52.4 6.6 21.1 19.7-14.6 67.7-14.6 67.7-4.4 2.9-406.4 160.2-406.4 160.2h423.1L549 96z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/ussunnah.svg���������������������0000664�0000000�0000000�00000004132�14753064456�0027776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 482 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M481.9 268.1A240.9 240.9 0 1 1 .1 268a240.9 240.9 0 1 1 481.9 0zM24.5 268a216.5 216.5 0 1 0 432.9 0 216.5 216.5 0 1 0-432.9 0m385.9 63.3c-12.7 0-21.6-1.9-26.7-5.9-5.5-4.3-8.2-12.3-8.2-23.8v-96.5c0-6.5-5.2-20.2-15.7-41.2 7 0 17-9.1 30-27.2v147.8c0 11 2.4 19.4 7 25.3 3.7 4.7 10.1 8.9 19 12.6 1.2.4 2.6.9 4.1 1.4 2.9.9 6.3 2.1 10.3 3.5-1.8 2.7-8.3 4-19.9 4zm-219 0c-1.3 2.4-3.6 5.5-6.8 9.4l-18.5 22.5c-1-6.1-4-13-9.3-20.6s-9.7-11.4-13.4-11.4H53.6c3.3-5.3 4.9-8.8 4.9-10.8s-.8-5.3-2.4-9.7c-1.5-4.4-2.4-8.5-2.4-12.4 0-7.4 2.1-13.9 6.3-19.3l20-25.6-7.1-17.7L89 215.9l6.7 16.8 8-10.3c-1.8 6.4-2.6 12.3-2.6 17.7 0 4.2 2.8 13.3 8.3 27.3l16.2 40.7h17.7c2.8.4 7.7 5 14.6 13.9 1.8 2.4 4.3 5.8 7.7 10.2 1.4 1.9 2.9 3.9 4.6 6.1 1.3-2.3 2-4.6 2-7.1 0-2-1.3-6.6-4-13.4l-5.2-13.7c-4-10.6-6.1-17.7-6.1-21.3 0-6.3 1.9-12.3 5.8-17.9.5-.6 1-1.3 1.5-1.9 4.4-5.6 8.8-11.1 13.3-16.5-1.1 4.6-1.7 8.7-1.7 12 0 3.7 1.7 9.9 5.1 18.8l7.9 20.4c1.9 4.7 3 8.2 3.7 10.3h25.9l-.9-2.6c-1.4-3.9-4-7-7.7-9.3l15.6-20.1 12.3 32h13.4l-6.1-15.8c-1.5-3.9-4-7-7.7-9.3l15.7-20.1 17.3 45.2h13.4l-11.4-29.4c-1.5-3.9-4-7-7.7-9.3l15.6-20 22.4 58.7h26.2c1.5 0 3-1.1 4.5-3.1s2.2-4.1 2.2-6.3v-93.5c0-6.5-4.5-20.3-13.7-41.2 5.4 0 14.1-9.1 26.2-27.2v163.5c0 7.2.6 12 1.7 14.6 1.6 3.4 5.3 6.2 11.1 8.2-3.9 5.6-8.7 8.5-14.5 8.5H191.5zm-98-44c-2.7-6.7-4-11.7-4-15-.6 1.2-2.4 3.7-5.4 7.6-1.4 1.9-2.2 3.7-2.2 5.3 0 2.6.8 5.7 2.2 9.3l5.6 13.9c5 0 9 0 11.9-.1l-8.2-20.9zm13.5-72.4c-3-5.2-7-9.3-11.9-11.9-3.5-1.9-5.3-4.3-5.3-7.4 0-2.4 4.6-8.6 14-18.3.2 3.8 1.9 7.6 4.9 11.2 3.1 3.6 4.6 7 4.6 10.1 0 2.6-2.1 8-6.2 16.3zm-27.6 0c-3-5.2-7-9.3-11.9-11.9-3.5-1.9-5.3-4.3-5.3-7.4 0-2.4 4.6-8.6 14-18.3.2 3.8 1.9 7.6 4.9 11.2 3.1 3.6 4.6 7 4.6 10.1 0 2.6-2.1 8-6.2 16.3zm87 27.5c-3-5.2-7-9.3-11.9-11.9-3.5-1.9-5.3-4.3-5.3-7.4 0-2.4 4.6-8.6 14-18.3.2 3.8 1.9 7.6 4.9 11.2 3.1 3.6 4.6 7 4.6 10.1 0 2.6-2.1 8-6.2 16.3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/vaadin.svg�����������������������0000664�0000000�0000000�00000001713�14753064456�0027376�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224.5 140.7c1.5-17.6 4.9-52.7 49.8-52.7h98.6c20.7 0 32.1-7.8 32.1-21.6V54.1c0-12.2 9.3-22.1 21.5-22.1S448 41.9 448 54.1v36.5c0 42.9-21.5 62-66.8 62H280.7c-30.1 0-33 14.7-33 27.1 0 1.3-.1 2.5-.2 3.7-.7 12.3-10.9 22.2-23.4 22.2s-22.7-9.8-23.4-22.2c-.1-1.2-.2-2.4-.2-3.7 0-12.3-3-27.1-33-27.1H66.8c-45.3 0-66.8-19.1-66.8-62V54.1C0 41.9 9.4 32 21.6 32s21.5 9.9 21.5 22.1v12.3C43.1 80.2 54.5 88 75.2 88h98.6c44.8 0 48.3 35.1 49.8 52.7zM224 456c11.5 0 21.4-7 25.7-16.3 1.1-1.8 97.1-169.6 98.2-171.4 11.9-19.6-3.2-44.3-27.2-44.3-13.9 0-23.3 6.4-29.8 20.3L224 362l-66.9-117.7c-6.4-13.9-15.9-20.3-29.8-20.3-24 0-39.1 24.6-27.2 44.3 1.1 1.9 97.1 169.6 98.2 171.4 4.3 9.3 14.2 16.3 25.7 16.3"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/viacoin.svg����������������������0000664�0000000�0000000�00000000660�14753064456�0027564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 32h-64l-80.7 192h-94.5L64 32H0l48 112H0v48h68.5l13.8 32H0v48h102.8L192 480l89.2-208H384v-48h-82.3l13.8-32H384v-48h-48zM192 336l-27-64h54z"/></svg>��������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/viadeo.svg�����������������������0000664�0000000�0000000�00000002000�14753064456�0027371�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M276.2 150.5v.7C258.3 98.6 233.6 47.8 205.4 0c43.3 29.2 67 100 70.8 150.5m32.7 121.7c7.6 18.2 11 37.5 11 57 0 77.7-57.8 141-137.8 139.4l3.8-.3c74.2-46.7 109.3-118.6 109.3-205.1 0-38.1-6.5-75.9-18.9-112 1 11.7 1 23.7 1 35.4 0 91.8-18.1 241.6-116.6 280C95 455.2 49.4 398 49.4 329.2c0-75.6 57.4-142.3 135.4-142.3 16.8 0 33.7 3.1 49.1 9.6 1.7-15.1 6.5-29.9 13.4-43.3-19.9-7.2-41.2-10.7-62.5-10.7-161.5 0-238.7 195.9-129.9 313.7 67.9 74.6 192 73.9 259.8 0 56.6-61.3 60.9-142.4 36.4-201-12.7 8-27.1 13.9-42.2 17M418.1 11.7c-31 66.5-81.3 47.2-115.8 80.1-12.4 12-20.6 34-20.6 50.5 0 14.1 4.5 27.1 12 38.8 47.4-11 98.3-46 118.2-90.7-.7 5.5-4.8 14.4-7.2 19.2-20.3 35.7-64.6 65.6-99.7 84.9 14.8 14.4 33.7 25.8 55 25.8 79 0 110.1-134.6 58.1-208.6"/></svg>mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/viber.svg������������������������0000664�0000000�0000000�00000003150�14753064456�0027240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M444 49.9C431.3 38.2 379.9.9 265.3.4c0 0-135.1-8.1-200.9 52.3C27.8 89.3 14.9 143 13.5 209.5s-3.1 191.1 117 224.9h.1l-.1 51.6s-.8 20.9 13 25.1c16.6 5.2 26.4-10.7 42.3-27.8 8.7-9.4 20.7-23.2 29.8-33.7 82.2 6.9 145.3-8.9 152.5-11.2 16.6-5.4 110.5-17.4 125.7-142 15.8-128.6-7.6-209.8-49.8-246.5M457.9 287c-12.9 104-89 110.6-103 115.1-6 1.9-61.5 15.7-131.2 11.2 0 0-52 62.7-68.2 79-5.3 5.3-11.1 4.8-11-5.7 0-6.9.4-85.7.4-85.7q-.15 0 0 0C43.1 372.7 49.1 266.6 50.2 211.1s11.6-101 42.6-131.6c55.7-50.5 170.4-43 170.4-43 96.9.4 143.3 29.6 154.1 39.4 35.7 30.6 53.9 103.8 40.6 211.1m-139-80.8c.4 8.6-12.5 9.2-12.9.6-1.1-22-11.4-32.7-32.6-33.9-8.6-.5-7.8-13.4.7-12.9 27.9 1.5 43.4 17.5 44.8 46.2m20.3 11.3c1-42.4-25.5-75.6-75.8-79.3-8.5-.6-7.6-13.5.9-12.9 58 4.2 88.9 44.1 87.8 92.5-.1 8.6-13.1 8.2-12.9-.3m47 13.4c.1 8.6-12.9 8.7-12.9.1-.6-81.5-54.9-125.9-120.8-126.4-8.5-.1-8.5-12.9 0-12.9 73.7.5 133 51.4 133.7 139.2M374.9 329v.2c-10.8 19-31 40-51.8 33.3l-.2-.3c-21.1-5.9-70.8-31.5-102.2-56.5-16.2-12.8-31-27.9-42.4-42.4-10.3-12.9-20.7-28.2-30.8-46.6-21.3-38.5-26-55.7-26-55.7-6.7-20.8 14.2-41 33.3-51.8h.2c9.2-4.8 18-3.2 23.9 3.9 0 0 12.4 14.8 17.7 22.1 5 6.8 11.7 17.7 15.2 23.8 6.1 10.9 2.3 22-3.7 26.6l-12 9.6c-6.1 4.9-5.3 14-5.3 14s17.8 67.3 84.3 84.3c0 0 9.1.8 14-5.3l9.6-12c4.6-6 15.7-9.8 26.6-3.7 14.7 8.3 33.4 21.2 45.8 32.9 7 5.7 8.6 14.4 3.8 23.6"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/vimeo-v.svg����������������������0000664�0000000�0000000�00000001226�14753064456�0027515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M447.8 153.6c-2 43.6-32.4 103.3-91.4 179.1-60.9 79.2-112.4 118.8-154.6 118.8q-39.15 0-66.3-72.3C100.3 250 85.3 174.3 56.2 174.3c-3.4 0-15.1 7.1-35.2 21.1L0 168.2c51.6-45.3 100.9-95.7 131.8-98.5 34.9-3.4 56.3 20.5 64.4 71.5 28.7 181.5 41.4 208.9 93.6 126.7 18.7-29.6 28.8-52.1 30.2-67.6 4.8-45.9-35.8-42.8-63.3-31 22-72.1 64.1-107.1 126.2-105.1 45.8 1.2 67.5 31.1 64.9 89.4"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/vimeo.svg������������������������0000664�0000000�0000000�00000001417�14753064456�0027254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M403.2 32H44.8C20.1 32 0 52.1 0 76.8v358.4C0 459.9 20.1 480 44.8 480h358.4c24.7 0 44.8-20.1 44.8-44.8V76.8c0-24.7-20.1-44.8-44.8-44.8M377 180.8c-1.4 31.5-23.4 74.7-66 129.4-44 57.2-81.3 85.8-111.7 85.8-18.9 0-34.8-17.4-47.9-52.3-25.5-93.3-36.4-148-57.4-148-2.4 0-10.9 5.1-25.4 15.2l-15.2-19.6c37.3-32.8 72.9-69.2 95.2-71.2 25.2-2.4 40.7 14.8 46.5 51.7 20.7 131.2 29.9 151 67.6 91.6 13.5-21.4 20.8-37.7 21.8-48.9 3.5-33.2-25.9-30.9-45.8-22.4 15.9-52.1 46.3-77.4 91.2-76 33.3.9 49 22.5 47.1 64.7"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/vine.svg�������������������������0000664�0000000�0000000�00000001306�14753064456�0027073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 254.7v52.1c-18.4 4.2-36.9 6.1-52.1 6.1-36.9 77.4-103 143.8-125.1 156.2-14 7.9-27.1 8.4-42.7-.8C137 452 34.2 367.7 0 102.7h74.5C93.2 261.8 139 343.4 189.3 404.5c27.9-27.9 54.8-65.1 75.6-106.9-49.8-25.3-80.1-80.9-80.1-145.6 0-65.6 37.7-115.1 102.2-115.1 114.9 0 106.2 127.9 81.6 181.5 0 0-46.4 9.2-63.5-20.5 3.4-11.3 8.2-30.8 8.2-48.5 0-31.3-11.3-46.6-28.4-46.6-18.2 0-30.8 17.1-30.8 50 .1 79.2 59.4 118.7 129.9 101.9"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/vk.svg���������������������������0000664�0000000�0000000�00000001546�14753064456�0026560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M31.49 63.49C0 94.982 0 145.672 0 247.04v17.92c0 101.369 0 152.059 31.49 183.549C62.982 480 113.672 480 215.04 480h17.92c101.369 0 152.059 0 183.549-31.491C448 417.019 448 366.329 448 264.96v-17.92c0-101.369 0-152.059-31.491-183.55C385.019 32 334.329 32 232.96 32h-17.92C113.671 32 62.981 32 31.49 63.49M75.6 168.268h51.147c1.68 85.493 39.386 121.706 69.253 129.173V168.267h48.16V242c29.493-3.173 60.48-36.773 70.933-73.733h48.16a142.26 142.26 0 0 1-65.52 92.96 147.35 147.35 0 0 1 76.72 93.52H321.44a92.15 92.15 0 0 0-77.28-66.64v66.64h-5.787c-102.106 0-160.346-70-162.773-186.48"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/vnv.svg��������������������������0000664�0000000�0000000�00000002014�14753064456�0026740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M104.9 352c-34.1 0-46.4-30.4-46.4-30.4L2.6 210.1S-7.8 192 13 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.7-74.5c5.6-9.5 8.4-18.1 18.8-18.1h32.8c20.8 0 10.4 18.1 10.4 18.1l-55.8 111.5S174.2 352 140 352zm395 0c-34.1 0-46.4-30.4-46.4-30.4l-55.9-111.5S387.2 192 408 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.8-74.5c5.6-9.5 8.4-18.1 18.8-18.1H627c20.8 0 10.4 18.1 10.4 18.1l-55.9 111.5S569.3 352 535.1 352zM337.6 192c34.1 0 46.4 30.4 46.4 30.4l55.9 111.5s10.4 18.1-10.4 18.1h-32.8c-10.4 0-13.2-8.7-18.8-18.1l-36.7-74.5s-5.2-13.1-21.1-13.1-21.1 13.1-21.1 13.1l-36.7 74.5c-5.6 9.4-8.4 18.1-18.8 18.1h-32.9c-20.8 0-10.4-18.1-10.4-18.1l55.9-111.5s12.2-30.4 46.4-30.4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/vuejs.svg������������������������0000664�0000000�0000000�00000000612�14753064456�0027265�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M356.9 64.3H280l-56 88.6-48-88.6H0L224 448 448 64.3zm-301.2 32h53.8L224 294.5 338.4 96.3h53.8L224 384.5z"/></svg>����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/watchman-monitoring.svg����������0000664�0000000�0000000�00000002101�14753064456�0032111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 16C123.452 16 16 123.452 16 256s107.452 240 240 240 240-107.452 240-240S388.548 16 256 16M121.69 429.122C70.056 388.972 36.741 326.322 36.741 256a218.5 218.5 0 0 1 9.587-64.122l102.9-17.895-.121 10.967-13.943 2.013s-.144 12.5-.144 19.549a12.78 12.78 0 0 0 4.887 10.349l9.468 7.4Zm105.692-283.27 8.48-7.618s6.934-5.38-.143-9.344c-7.188-4.024-39.53-34.5-39.53-34.5-5.348-5.477-8.257-7.347-15.46 0 0 0-32.342 30.474-39.529 34.5-7.078 3.964-.144 9.344-.144 9.344l8.481 7.618-.048 4.369-73.507-19.176c39.644-56.938 105.532-94.3 180.018-94.3a218.75 218.75 0 0 1 164.934 75.025l-193.512 37.7Zm34.063 329.269-33.9-250.857 9.467-7.4a12.78 12.78 0 0 0 4.888-10.349c0-7.044-.144-19.549-.144-19.549l-13.943-2.013-.116-10.474 241.711 31.391a219 219 0 0 1 5.851 50.13c0 119.074-95.428 216.212-213.814 219.121"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/waze.svg�������������������������0000664�0000000�0000000�00000002353�14753064456�0027103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M502.17 201.67C516.69 287.53 471.23 369.59 389 409.8c13 34.1-12.4 70.2-48.32 70.2a51.68 51.68 0 0 1-51.57-49c-6.44.19-64.2 0-76.33-.64A51.69 51.69 0 0 1 159 479.92c-33.86-1.36-57.95-34.84-47-67.92-37.21-13.11-72.54-34.87-99.62-70.8-13-17.28-.48-41.8 20.84-41.8 46.31 0 32.22-54.17 43.15-110.26C94.8 95.2 193.12 32 288.09 32c102.48 0 197.15 70.67 214.08 169.67M373.51 388.28c42-19.18 81.33-56.71 96.29-102.14 40.48-123.09-64.15-228-181.71-228-83.45 0-170.32 55.42-186.07 136-9.53 48.91 5 131.35-68.75 131.35C58.21 358.6 91.6 378.11 127 389.54c24.66-21.8 63.87-15.47 79.83 14.34 14.22 1 79.19 1.18 87.9.82a51.69 51.69 0 0 1 78.78-16.42M205.12 187.13c0-34.74 50.84-34.75 50.84 0s-50.84 34.74-50.84 0m116.57 0c0-34.74 50.86-34.75 50.86 0s-50.86 34.75-50.86 0m-122.61 70.69c-3.44-16.94 22.18-22.18 25.62-5.21l.06.28c4.14 21.42 29.85 44 64.12 43.07 35.68-.94 59.25-22.21 64.11-42.77 4.46-16.05 28.6-10.36 25.47 6-5.23 22.18-31.21 62-91.46 62.9-42.55 0-80.88-27.84-87.9-64.25z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/web-awesome.svg������������������0000664�0000000�0000000�00000001240�14753064456�0030342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M372.2 52c0 20.9-12.4 39-30.2 47.2L448 192l104.4-20.9c-5.3-7.7-8.4-17.1-8.4-27.1 0-26.5 21.5-48 48-48s48 21.5 48 48c0 26-20.6 47.1-46.4 48L481 442.3c-10.3 23-33.2 37.7-58.4 37.7H217.4c-25.2 0-48-14.8-58.4-37.7L46.4 192C20.6 191.1 0 170 0 144c0-26.5 21.5-48 48-48s48 21.5 48 48c0 10.1-3.1 19.4-8.4 27.1L192 192l106.1-92.9c-17.7-8.3-30-26.3-30-47.1 0-28.7 23.3-52 52-52s52 23.3 52 52z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/webflow.svg����������������������0000664�0000000�0000000�00000000673�14753064456�0027605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M640 64 435.8 463.2H244l85.5-165.5h-3.8C255.1 389.3 149.9 449.5 0 463.2V300.1s95.9-5.7 152.3-64.9H0V64h171.1v140.8h3.8l70-140.8h129.4v139.9h3.8L450.7 64z"/></svg>���������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/weebly.svg�����������������������0000664�0000000�0000000�00000002277�14753064456�0027431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M425.09 65.83c-39.88 0-73.28 25.73-83.66 64.33-18.16-58.06-65.5-64.33-84.95-64.33-19.78 0-66.8 6.28-85.28 64.33-10.38-38.6-43.45-64.33-83.66-64.33C38.59 65.83 0 99.72 0 143.03c0 28.96 4.18 33.27 77.17 233.48 22.37 60.57 67.77 69.35 92.74 69.35 39.23 0 70.04-19.46 85.93-53.98 15.89 34.83 46.69 54.29 85.93 54.29 24.97 0 70.36-9.1 92.74-69.67 76.55-208.65 77.5-205.58 77.5-227.2.63-48.32-36.01-83.47-86.92-83.47m26.34 114.81-65.57 176.44c-7.92 21.49-21.22 37.22-46.24 37.22-23.44 0-37.38-12.41-44.03-33.9l-39.28-117.42h-.95L216.08 360.4c-6.96 21.5-20.9 33.6-44.02 33.6-25.02 0-38.33-15.74-46.24-37.22L60.88 181.55c-5.38-14.83-7.92-23.91-7.92-34.5 0-16.34 15.84-29.36 38.33-29.36 18.69 0 31.99 11.8 36.11 29.05l44.03 139.82h.95l44.66-136.79c6.02-19.67 16.47-32.08 38.96-32.08s32.94 12.11 38.96 32.08l44.66 136.79h.95l44.03-139.82c4.12-17.25 17.42-29.05 36.11-29.05 22.17 0 38.33 13.32 38.33 35.71-.32 7.87-4.12 16.04-7.61 27.24"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/weibo.svg������������������������0000664�0000000�0000000�00000002263�14753064456�0027242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M407 177.6c7.6-24-13.4-46.8-37.4-41.7-22 4.8-28.8-28.1-7.1-32.8 50.1-10.9 92.3 37.1 76.5 84.8-6.8 21.2-38.8 10.8-32-10.3M214.8 446.7C108.5 446.7 0 395.3 0 310.4c0-44.3 28-95.4 76.3-143.7C176 67 279.5 65.8 249.9 161c-4 13.1 12.3 5.7 12.3 6 79.5-33.6 140.5-16.8 114 51.4-3.7 9.4 1.1 10.9 8.3 13.1 135.7 42.3 34.8 215.2-169.7 215.2m143.7-146.3c-5.4-55.7-78.5-94-163.4-85.7-84.8 8.6-148.8 60.3-143.4 116s78.5 94 163.4 85.7c84.8-8.6 148.8-60.3 143.4-116M347.9 35.1c-25.9 5.6-16.8 43.7 8.3 38.3 72.3-15.2 134.8 52.8 111.7 124-7.4 24.2 29.1 37 37.4 12 31.9-99.8-55.1-195.9-157.4-174.3m-78.5 311c-17.1 38.8-66.8 60-109.1 46.3-40.8-13.1-58-53.4-40.3-89.7 17.7-35.4 63.1-55.4 103.4-45.1 42 10.8 63.1 50.2 46 88.5m-86.3-30c-12.9-5.4-30 .3-38 12.9-8.3 12.9-4.3 28 8.6 34 13.1 6 30.8.3 39.1-12.9 8-13.1 3.7-28.3-9.7-34m32.6-13.4c-5.1-1.7-11.4.6-14.3 5.4-2.9 5.1-1.4 10.6 3.7 12.9 5.1 2 11.7-.3 14.6-5.4 2.8-5.2 1.1-10.9-4-12.9"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/weixin.svg�����������������������0000664�0000000�0000000�00000002200�14753064456�0027427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M385.2 167.6c6.4 0 12.6.3 18.8 1.1C387.4 90.3 303.3 32 207.7 32 100.5 32 13 104.8 13 197.4c0 53.4 29.3 97.5 77.9 131.6l-19.3 58.6 68-34.1c24.4 4.8 43.8 9.7 68.2 9.7 6.2 0 12.1-.3 18.3-.8-4-12.9-6.2-26.6-6.2-40.8-.1-84.9 72.9-154 165.3-154m-104.5-52.9c14.5 0 24.2 9.7 24.2 24.4 0 14.5-9.7 24.2-24.2 24.2-14.8 0-29.3-9.7-29.3-24.2.1-14.7 14.6-24.4 29.3-24.4m-136.4 48.6c-14.5 0-29.3-9.7-29.3-24.2 0-14.8 14.8-24.4 29.3-24.4 14.8 0 24.4 9.7 24.4 24.4 0 14.6-9.6 24.2-24.4 24.2M563 319.4c0-77.9-77.9-141.3-165.4-141.3-92.7 0-165.4 63.4-165.4 141.3S305 460.7 397.6 460.7c19.3 0 38.9-5.1 58.6-9.9l53.4 29.3-14.8-48.6C534 402.1 563 363.2 563 319.4m-219.1-24.5c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.8 0 24.4 9.7 24.4 19.3 0 10-9.7 19.6-24.4 19.6m107.1 0c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.5 0 24.4 9.7 24.4 19.3.1 10-9.9 19.6-24.4 19.6"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/whatsapp.svg���������������������0000664�0000000�0000000�00000002156�14753064456�0027765�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157m-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1s56.2 81.2 56.1 130.5c0 101.8-84.9 184.6-186.6 184.6m101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8s-14.3 18-17.6 21.8c-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7s-12.5-30.1-17.1-41.2c-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2s-9.7 1.4-14.8 6.9c-5.1 5.6-19.4 19-19.4 46.3s19.9 53.7 22.6 57.4c2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4s4.6-24.1 3.2-26.4c-1.3-2.5-5-3.9-10.5-6.6"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/whmcs.svg������������������������0000664�0000000�0000000�00000002653�14753064456�0027261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 161v-21.3l-28.5-8.8-2.2-10.4 20.1-20.7L427 80.4l-29 7.5-7.2-7.5 7.5-28.2-19.1-11.6-21.3 21-10.7-3.2-7-26.4h-22.6l-6.2 26.4-12.1 3.2-19.7-21-19.4 11 8.1 27.7-8.1 8.4-28.5-7.5-11 19.1 20.7 21-2.9 10.4-28.5 7.8-.3 21.7 28.8 7.5 2.4 12.1-20.1 19.9 10.4 18.5 29.6-7.5 7.2 8.6-8.1 26.9 19.9 11.6 19.4-20.4 11.6 2.9 6.7 28.5 22.6.3 6.7-28.8 11.6-3.5 20.7 21.6 20.4-12.1-8.8-28 7.8-8.1 28.8 8.8 10.3-20.1-20.9-18.8 2.2-12.1zm-119.2 45.2c-31.3 0-56.8-25.4-56.8-56.8s25.4-56.8 56.8-56.8 56.8 25.4 56.8 56.8c0 31.5-25.4 56.8-56.8 56.8m72.3 16.4 46.9 14.5V277l-55.1 13.4-4.1 22.7 38.9 35.3-19.2 37.9-54-16.7-14.6 15.2 16.7 52.5-38.3 22.7-38.9-40.5-21.7 6.6-12.6 54-42.4-.5-12.6-53.6-21.7-5.6-36.4 38.4-37.4-21.7 15.2-50.5-13.7-16.1-55.5 14.1-19.7-34.8 37.9-37.4-4.8-22.8-54-14.1.5-40.9L54 219.9l5.7-19.7-38.9-39.4L41.5 125l53.6 14.1 15.2-15.7-15.2-52 36.4-20.7 36.8 39.4L191 84l11.6-52H245l11.6 45.9L234 72l-6.3-1.7-3.3 5.7-11 19.1-3.3 5.6 4.6 4.6 17.2 17.4-.3 1-23.8 6.5-6.2 1.7-.1 6.4-.2 12.9C153.8 161.6 118 204 118 254.7c0 58.3 47.3 105.7 105.7 105.7 50.5 0 92.7-35.4 103.2-82.8l13.2.2 6.9.1 1.6-6.7 5.6-24 1.9-.6 17.1 17.8 4.7 4.9 5.8-3.4 20.4-12.1 5.8-3.5-2-6.5z"/></svg>�������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/wikipedia-w.svg������������������0000664�0000000�0000000�00000001726�14753064456�0030352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m640 51.2-.3 12.2c-28.1.8-45 15.8-55.8 40.3-25 57.8-103.3 240-155.3 358.6H415l-81.9-193.1c-32.5 63.6-68.3 130-99.2 193.1-.3.3-15 0-15-.3C172 352.3 122.8 243.4 75.8 133.4 64.4 106.7 26.4 63.4.2 63.7c0-3.1-.3-10-.3-14.2h161.9v13.9c-19.2 1.1-52.8 13.3-43.3 34.2 21.9 49.7 103.6 240.3 125.6 288.6 15-29.7 57.8-109.2 75.3-142.8-13.9-28.3-58.6-133.9-72.8-160-9.7-17.8-36.1-19.4-55.8-19.7V49.8l142.5.3v13.1c-19.4.6-38.1 7.8-29.4 26.1 18.9 40 30.6 68.1 48.1 104.7 5.6-10.8 34.7-69.4 48.1-100.8 8.9-20.6-3.9-28.6-38.6-29.4.3-3.6 0-10.3.3-13.6 44.4-.3 111.1-.3 123.1-.6v13.6c-22.5.8-45.8 12.8-58.1 31.7l-59.2 122.8c6.4 16.1 63.3 142.8 69.2 156.7L559.2 91.8c-8.6-23.1-36.4-28.1-47.2-28.3V49.6l127.8 1.1z"/></svg>������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/windows.svg����������������������0000664�0000000�0000000�00000000615�14753064456�0027626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m0 93.7 183.6-25.3v177.4H0zm0 324.6 183.6 25.3V268.4H0zm203.8 28L448 480V268.4H203.8zm0-380.6v180.1H448V32z"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/wirsindhandwerk.svg��������������0000664�0000000�0000000�00000000742�14753064456�0031340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M50.772 479.812h83.36V367.847l-83.36 47.01Zm329.046 0h82.35v-64.956l-82.35-47.009Zm.006-448v219.756l-123.648-72.382-121.672 72.382V31.812H50.772v360.794l205.404-122.287 205.993 122.287V31.812Z"/></svg>������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/wix.svg��������������������������0000664�0000000�0000000�00000002610�14753064456�0026740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M393.38 131.69c0 13.03 2.08 32.69-28.68 43.83-9.52 3.45-15.95 9.66-15.95 9.66 0-31 4.72-42.22 17.4-48.86 9.75-5.11 27.23-4.63 27.23-4.63m-115.8 35.54-34.24 132.66-28.48-108.57c-7.69-31.99-20.81-48.53-48.43-48.53-27.37 0-40.66 16.18-48.43 48.53L89.52 299.89 55.28 167.23C49.73 140.51 23.86 128.96 0 131.96l65.57 247.93s21.63 1.56 32.46-3.96c14.22-7.25 20.98-12.84 29.59-46.57 7.67-30.07 29.11-118.41 31.12-124.7 4.76-14.94 11.09-13.81 15.4 0 1.97 6.3 23.45 94.63 31.12 124.7 8.6 33.73 15.37 39.32 29.59 46.57 10.82 5.52 32.46 3.96 32.46 3.96l65.57-247.93c-24.42-3.07-49.82 8.93-55.3 35.27m115.78 5.21s-4.1 6.34-13.46 11.57c-6.01 3.36-11.78 5.64-17.97 8.61-15.14 7.26-13.18 13.95-13.18 35.2v152.07s16.55 2.09 27.37-3.43c13.93-7.1 17.13-13.95 17.26-44.78V181.41l-.02.01zm163.44 84.08L640 132.78s-35.11-5.98-52.5 9.85c-13.3 12.1-24.41 29.55-54.18 72.47-.47.73-6.25 10.54-13.07 0-29.29-42.23-40.8-60.29-54.18-72.47-17.39-15.83-52.5-9.85-52.5-9.85l83.2 123.74-82.97 123.36s36.57 4.62 53.95-11.21c11.49-10.46 17.58-20.37 52.51-70.72 6.81-10.52 12.57-.77 13.07 0 29.4 42.38 39.23 58.06 53.14 70.72 17.39 15.83 53.32 11.21 53.32 11.21z"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/wizards-of-the-coast.svg���������0000664�0000000�0000000�00000020077�14753064456�0032112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M219.19 345.69c-1.9 1.38-11.07 8.44-.26 23.57 4.64 6.42 14.11 12.79 21.73 6.55 6.5-4.88 7.35-12.92.26-23.04-5.47-7.76-14.28-12.88-21.73-7.08m336.75 75.94c-.34 1.7-.55 1.67.79 0 2.09-4.19 4.19-10.21 4.98-19.9 3.14-38.49-40.33-71.49-101.34-78.03-54.73-6.02-124.38 9.17-188.8 60.49l-.26 1.57c2.62 4.98 4.98 10.74 3.4 21.21l.79.26c63.89-58.4 131.19-77.25 184.35-73.85 58.4 3.67 100.03 34.04 100.03 68.08-.01 9.96-2.63 15.72-3.94 20.17M392.28 240.42c.79 7.07 4.19 10.21 9.17 10.47 5.5.26 9.43-2.62 10.47-6.55.79-3.4 2.09-29.85 2.09-29.85s-11.26 6.55-14.93 10.47c-3.66 3.68-7.33 8.39-6.8 15.46m-50.02-151.1C137.75 89.32 13.1 226.8.79 241.2c-1.05.52-1.31.79.79 1.31 60.49 16.5 155.81 81.18 196.13 202.16l1.05.26c55.25-69.92 140.88-128.05 236.99-128.05 80.92 0 130.15 42.16 130.15 80.39 0 18.33-6.55 33.52-22.26 46.35 0 .96-.2.79.79.79 14.66-10.74 27.5-28.8 27.5-48.18 0-22.78-12.05-38.23-12.05-38.23 7.07 7.07 10.74 16.24 10.74 16.24 5.76-40.85 26.97-62.32 26.97-62.32-2.36-9.69-6.81-17.81-6.81-17.81 7.59 8.12 14.4 27.5 14.4 41.37 0 10.47-3.4 22.78-12.57 31.95l.26.52c8.12-4.98 16.5-16.76 16.5-37.97 0-15.71-4.71-25.92-4.71-25.92 5.76-5.24 11.26-9.17 15.97-11.78.79 3.4 2.09 9.69 2.36 14.93 0 1.05.79 1.83 1.05 0 .79-5.76-.26-16.24-.26-16.5 6.02-3.14 9.69-4.45 9.69-4.45C617.74 176 489.43 89.32 342.26 89.32m-99.24 289.62c-11.06 8.99-24.2 4.08-30.64-4.19-7.45-9.58-6.76-24.09 4.19-32.47 14.85-11.35 27.08-.49 31.16 5.5.28.39 12.13 16.57-4.71 31.16m2.09-136.43 9.43-17.81 11.78 70.96-12.57 6.02-24.62-28.8 14.14-26.71 3.67 4.45zm18.59 117.58-.26-.26c2.05-4.1-2.5-6.61-17.54-31.69-1.31-2.36-3.14-2.88-4.45-2.62l-.26-.52c7.86-5.76 15.45-10.21 25.4-15.71l.52.26c1.31 1.83 2.09 2.88 3.4 4.71l-.26.52c-1.05-.26-2.36-.79-5.24.26-2.09.79-7.86 3.67-12.31 7.59v1.31c1.57 2.36 3.93 6.55 5.76 9.69h.26c10.05-6.28 7.56-4.55 11.52-7.86h.26c.52 1.83.52 1.83 1.83 5.5l-.26.26c-3.06.61-4.65.34-11.52 5.5v.26c9.46 17.02 11.01 16.75 12.57 15.97l.26.26c-2.34 1.59-6.27 4.21-9.68 6.57m55.26-32.47c-3.14 1.57-6.02 2.88-9.95 4.98l-.26-.26c1.29-2.59 1.16-2.71-11.78-32.47l-.26-.26c-.15 0-8.9 3.65-9.95 7.33h-.52l-1.05-5.76.26-.52c7.29-4.56 25.53-11.64 27.76-12.57l.52.26 3.14 4.98-.26.52c-3.53-1.76-7.35.76-12.31 2.62v.26c12.31 32.01 12.67 30.64 14.66 30.64zm44.77-16.5c-4.19 1.05-5.24 1.31-9.69 2.88l-.26-.26.52-4.45c-1.05-3.4-3.14-11.52-3.67-13.62l-.26-.26c-3.4.79-8.9 2.62-12.83 3.93l-.26.26c.79 2.62 3.14 9.95 4.19 13.88.79 2.36 1.83 2.88 2.88 3.14v.52c-3.67 1.05-7.07 2.62-10.21 3.93l-.26-.26c1.05-1.31 1.05-2.88.26-4.98-1.05-3.14-8.12-23.83-9.17-27.23-.52-1.83-1.57-3.14-2.62-3.14v-.52c3.14-1.05 6.02-2.09 10.74-3.4l.26.26-.26 4.71c1.31 3.93 2.36 7.59 3.14 9.69h.26c3.93-1.31 9.43-2.88 12.83-3.93l.26-.26-2.62-9.43c-.52-1.83-1.05-3.4-2.62-3.93v-.26c4.45-1.05 7.33-1.83 10.74-2.36l.26.26c-1.05 1.31-1.05 2.88-.52 4.45 1.57 6.28 4.71 20.43 6.28 26.45.54 2.62 1.85 3.41 2.63 3.93m32.21-6.81-.26.26c-4.71.52-14.14 2.36-22.52 4.19l-.26-.26.79-4.19c-1.57-7.86-3.4-18.59-4.98-26.19-.26-1.83-.79-2.88-2.62-3.67l.79-.52c9.17-1.57 20.16-2.36 24.88-2.62l.26.26c.52 2.36.79 3.14 1.57 5.5l-.26.26c-1.14-1.14-3.34-3.2-16.24-.79l-.26.26c.26 1.57 1.05 6.55 1.57 9.95l.26.26c9.52-1.68 4.76-.06 10.74-2.36h.26c0 1.57-.26 1.83-.26 5.24h-.26c-4.81-1.03-2.15-.9-10.21 0l-.26.26c.26 2.09 1.57 9.43 2.09 12.57l.26.26c1.15.38 14.21-.65 16.24-4.71h.26c-.53 2.38-1.05 4.21-1.58 6.04m10.74-44.51c-4.45 2.36-8.12 2.88-11 2.88-.25.02-11.41 1.09-17.54-9.95-6.74-10.79-.98-25.2 5.5-31.69 8.8-8.12 23.35-10.1 28.54-17.02 8.03-10.33-13.04-22.31-29.59-5.76l-2.62-2.88 5.24-16.24c25.59-1.57 45.2-3.04 50.02 16.24.79 3.14 0 9.43-.26 12.05 0 2.62-1.83 18.85-2.09 23.04-.52 4.19-.79 18.33-.79 20.69.26 2.36.52 4.19 1.57 5.5 1.57 1.83 5.76 1.83 5.76 1.83l-.79 4.71c-11.82-1.07-10.28-.59-20.43-1.05-3.22-5.15-2.23-3.28-4.19-7.86 0 .01-4.19 3.94-7.33 5.51m37.18 21.21c-6.35-10.58-19.82-7.16-21.73 5.5-2.63 17.08 14.3 19.79 20.69 10.21l.26.26c-.52 1.83-1.83 6.02-1.83 6.28l-.52.52c-10.3 6.87-28.5-2.5-25.66-18.59 1.94-10.87 14.44-18.93 28.8-9.95l.26.52c0 1.06-.27 3.41-.27 5.25m5.77-87.73v-6.55c.69 0 19.65 3.28 27.76 7.33l-1.57 17.54s10.21-9.43 15.45-10.74c5.24-1.57 14.93 7.33 14.93 7.33l-11.26 11.26c-12.07-6.35-19.59-.08-20.69.79-5.29 38.72-8.6 42.17 4.45 46.09l-.52 4.71c-17.55-4.29-18.53-4.5-36.92-7.33l.79-4.71c7.25 0 7.48-5.32 7.59-6.81 0 0 4.98-53.16 4.98-55.25-.02-2.87-4.99-3.66-4.99-3.66m10.99 114.44c-8.12-2.09-14.14-11-10.74-20.69 3.14-9.43 12.31-12.31 18.85-10.21 9.17 2.62 12.83 11.78 10.74 19.38-2.61 8.9-9.42 13.87-18.85 11.52m42.16 9.69c-2.36-.52-7.07-2.36-8.64-2.88v-.26l1.57-1.83c.59-8.24.59-7.27.26-7.59-4.82-1.81-6.66-2.36-7.07-2.36-1.31 1.83-2.88 4.45-3.67 5.5l-.79 3.4v.26c-1.31-.26-3.93-1.31-6.02-1.57v-.26l2.62-1.83c3.4-4.71 9.95-14.14 13.88-20.16v-2.09l.52-.26c2.09.79 5.5 2.09 7.59 2.88.48.48.18-1.87-1.05 25.14-.24 1.81.02 2.6.8 3.91m-4.71-89.82c11.25-18.27 30.76-16.19 34.04-3.4L539.7 198c2.34-6.25-2.82-9.9-4.45-11.26l1.83-3.67c12.22 10.37 16.38 13.97 22.52 20.43-25.91 73.07-30.76 80.81-24.62 84.32l-1.83 4.45c-6.37-3.35-8.9-4.42-17.81-8.64l2.09-6.81c-.26-.26-3.93 3.93-9.69 3.67-19.06-1.3-22.89-31.75-9.67-52.9m29.33 79.34c0-5.71-6.34-7.89-7.86-5.24-1.31 2.09 1.05 4.98 2.88 8.38 1.57 2.62 2.62 6.28 1.05 9.43-2.64 6.34-12.4 5.31-15.45-.79 0-.7-.27.09 1.83-4.71l.79-.26c-.57 5.66 6.06 9.61 8.38 4.98 1.05-2.09-.52-5.5-2.09-8.38-1.57-2.62-3.67-6.28-1.83-9.69 2.72-5.06 11.25-4.47 14.66 2.36v.52zm21.21 13.36c-1.96-3.27-.91-2.14-4.45-4.71h-.26c-2.36 4.19-5.76 10.47-8.64 16.24-1.31 2.36-1.05 3.4-.79 3.93l-.26.26-5.76-4.45.26-.26 2.09-1.31c3.14-5.76 6.55-12.05 9.17-17.02v-.26c-2.64-1.98-1.22-1.51-6.02-1.83v-.26l3.14-3.4h.26c3.67 2.36 9.95 6.81 12.31 8.9l.26.26zm27.23-44.26-2.88-2.88c.79-2.36 1.83-4.98 2.09-7.59.75-9.74-11.52-11.84-11.52-4.98 0 4.98 7.86 19.38 7.86 27.76 0 10.21-5.76 15.71-13.88 16.5-8.38.79-20.16-10.47-20.16-10.47l4.98-14.4 2.88 2.09c-2.97 17.8 17.68 20.37 13.35 5.24-1.06-4.02-18.75-34.2 2.09-38.23 13.62-2.36 23.04 16.5 23.04 16.5zm35.62-10.21c-11-30.38-60.49-127.53-191.95-129.62-53.42-1.05-94.27 15.45-132.76 37.97l85.63-9.17-91.39 20.69 25.14 19.64-3.93-16.5c7.5-1.71 39.15-8.45 66.77-8.9l-22.26 80.39c13.61-.7 18.97-8.98 19.64-22.78l4.98-1.05.26 26.71c-22.46 3.21-37.3 6.69-49.49 9.95l13.09-43.21-61.54-36.66 2.36 8.12 10.21 4.98c6.28 18.59 19.38 56.56 20.43 58.66 1.95 4.28 3.16 5.78 12.05 4.45l1.05 4.98c-16.08 4.86-23.66 7.61-39.02 14.4l-2.36-4.71c4.4-2.94 8.73-3.94 5.5-12.83-23.7-62.5-21.48-58.14-22.78-59.44l2.36-4.45 33.52 67.3c-3.84-11.87 1.68 1.69-32.99-78.82l-41.9 88.51 4.71-13.88-35.88-42.16 27.76 93.48-11.78 8.38C95 228.58 101.05 231.87 93.23 231.52c-5.5-.26-13.62 5.5-13.62 5.5L74.63 231c30.56-23.53 31.62-24.33 58.4-42.68l4.19 7.07s-5.76 4.19-7.86 7.07c-5.9 9.28 1.67 13.28 61.8 75.68l-18.85-58.92 39.8-10.21 25.66 30.64 4.45-12.31-4.98-24.62 13.09-3.4.52 3.14 3.67-10.47-94.27 29.33 11.26-4.98-13.62-42.42 17.28-9.17 30.11 36.14 28.54-13.09c-1.41-7.47-2.47-14.5-4.71-19.64l17.28 13.88 4.71-2.09-59.18-42.68 23.08 11.5c18.98-6.07 25.23-7.47 32.21-9.69l2.62 11c-12.55 12.55 1.43 16.82 6.55 19.38l-13.62-61.01 12.05 28.28c4.19-1.31 7.33-2.09 7.33-2.09l2.62 8.64s-3.14 1.05-6.28 2.09l8.9 20.95 33.78-65.73-20.69 61.01c42.42-24.09 81.44-36.66 131.98-35.88 67.04 1.05 167.33 40.85 199.8 139.83.78 2.1-.01 2.63-.79.27M203.48 152.43s1.83-.52 4.19-1.31l9.43 7.59c-.4 0-3.44-.25-11.26 2.36zm143.76 38.5c-1.57-.6-26.46-4.81-33.26 20.69l21.73 17.02zM318.43 67.07c-58.4 0-106.05 12.05-114.96 14.4v.79c8.38 2.09 14.4 4.19 21.21 11.78l1.57.26c6.55-1.83 48.97-13.88 110.24-13.88 180.16 0 301.67 116.79 301.67 223.37v9.95c0 1.31.79 2.62 1.05.52.52-2.09.79-8.64.79-19.64.26-83.79-96.63-227.55-321.57-227.55m211.06 169.68c1.31-5.76 0-12.31-7.33-13.09-9.62-1.13-16.14 23.79-17.02 33.52-.79 5.5-1.31 14.93 6.02 14.93 4.68-.01 9.72-.91 18.33-35.36m-61.53 42.95c-2.62-.79-9.43-.79-12.57 10.47-1.83 6.81.52 13.35 6.02 14.66 3.67 1.05 8.9.52 11.78-10.74 2.62-9.94-1.83-13.61-5.23-14.39M491 300.65c1.83.52 3.14 1.05 5.76 1.83 0-1.83.52-8.38.79-12.05-1.05 1.31-5.5 8.12-6.55 9.95z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/wodu.svg�������������������������0000664�0000000�0000000�00000002530�14753064456�0027110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M178.414 339.706H141.1l-28.934-116.231h-.478l-28.46 116.231H45.2L0 168.946h37.548l27.026 116.231h.478l29.655-116.231h35.157l29.178 117.667h.479L187.5 168.946h36.831zM271.4 212.713c38.984 0 64.1 25.828 64.1 65.291 0 39.222-25.111 65.05-64.1 65.05-38.743 0-63.855-25.828-63.855-65.05.002-39.463 25.114-65.291 63.855-65.291m0 104.753c23.2 0 30.133-19.852 30.133-39.462 0-19.852-6.934-39.7-30.133-39.7-27.7 0-29.894 19.85-29.894 39.7.002 19.61 6.937 39.462 29.894 39.462m163.684 6.456h-.478c-7.893 13.392-21.765 19.132-37.548 19.132-37.31 0-55.485-32.045-55.485-66.246 0-33.243 18.415-64.095 54.767-64.095 14.589 0 28.938 6.218 36.831 18.416h.24v-62.183h33.96v170.76h-32.287zM405.428 238.3c-22.24 0-29.894 19.134-29.894 39.463 0 19.371 8.848 39.7 29.894 39.7 22.482 0 29.178-19.613 29.178-39.94 0-20.087-7.174-39.223-29.178-39.223M592.96 339.706h-32.287v-17.219h-.718c-8.609 13.87-23.436 20.567-37.786 20.567-36.113 0-45.2-20.328-45.2-50.941v-76.052h33.959V285.9c0 20.329 5.979 30.372 21.765 30.372 18.415 0 26.306-10.283 26.306-35.393v-64.818h33.961zm9.493-36.83H640v36.83h-37.547z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/wolf-pack-battalion.svg����������0000664�0000000�0000000�00000005170�14753064456�0031773�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m267.73 471.53 10.56 15.84 5.28-12.32 5.28 7V512c21.06-7.92 21.11-66.86 25.51-97.21 4.62-31.89-.88-92.81 81.37-149.11-8.88-23.61-12-49.43-2.64-80.05C421 189 447 196.21 456.43 239.73l-30.35 8.36c11.15 23 17 46.76 13.2 72.14L412 313.18l-6.16 33.43-18.47-7-8.8 33.39-19.35-7 26.39 21.11 8.8-28.15L419 364.2l7-35.63 26.39 14.52c.25-20 7-58.06-8.8-84.45l26.39 5.28c4-22.07-2.38-39.21-7.92-56.74l22.43 9.68c-.44-25.07-29.94-56.79-61.58-58.5-20.22-1.09-56.74-25.17-54.1-51.9 2-19.87 17.45-42.62 43.11-49.7-44 36.51-9.68 67.3 5.28 73.46 4.4-11.44 17.54-69.08 0-130.2-40.39 22.87-89.65 65.1-93.2 147.79l-58 38.71-3.52 93.25L369.78 220l7 7-17.59 3.52-44 38.71-15.84-5.28-28.1 49.25-3.52 119.64 21.11 15.84-32.55 15.84-32.55-15.84 21.11-15.84-3.52-119.64-28.15-49.26-15.84 5.28-44-38.71-17.58-3.51 7-7 107.33 59.82-3.52-93.25-58.06-38.71C185 65.1 135.77 22.87 95.3 0c-17.54 61.12-4.4 118.76 0 130.2 15-6.16 49.26-36.95 5.28-73.46 25.66 7.08 41.15 29.83 43.11 49.7 2.63 26.74-33.88 50.81-54.1 51.9-31.65 1.72-61.15 33.44-61.59 58.51l22.43-9.68c-5.54 17.53-11.91 34.67-7.92 56.74l26.39-5.28c-15.76 26.39-9.05 64.43-8.8 84.45l26.39-14.52 7 35.63 24.63-5.28 8.8 28.15L153.35 366 134 373l-8.8-33.43-18.47 7-6.16-33.43-27.27 7c-3.82-25.38 2-49.1 13.2-72.14l-30.35-8.36c9.4-43.52 35.47-50.77 63.34-54.1 9.36 30.62 6.24 56.45-2.64 80.05 82.25 56.3 76.75 117.23 81.37 149.11 4.4 30.35 4.45 89.29 25.51 97.21v-29.83l5.28-7 5.28 12.32 10.56-15.84 11.44 21.11 11.43-21.1zm79.17-95L331.06 366c7.47-4.36 13.76-8.42 19.35-12.32-.6 7.22-.27 13.84-3.51 22.84zm28.15-49.26c-.4 10.94-.9 21.66-1.76 31.67-7.85-1.86-15.57-3.8-21.11-7 8.24-7.94 15.55-16.32 22.87-24.68zm24.63 5.28c0-13.43-2.05-24.21-5.28-33.43a235 235 0 0 1-18.47 27.27zm3.52-80.94c19.44 12.81 27.8 33.66 29.91 56.3-12.32-4.53-24.63-9.31-36.95-10.56 5.06-12 6.65-28.14 7-45.74zm-1.76-45.74c.81 14.3 1.84 28.82 1.76 42.23 19.22-8.11 29.78-9.72 44-14.08-10.61-18.96-27.2-25.53-45.76-28.16zM165.68 376.52 181.52 366c-7.47-4.36-13.76-8.42-19.35-12.32.6 7.26.27 13.88 3.51 22.88zm-28.15-49.26c.4 10.94.9 21.66 1.76 31.67 7.85-1.86 15.57-3.8 21.11-7-8.24-7.93-15.55-16.31-22.87-24.67m-24.64 5.28c0-13.43 2-24.21 5.28-33.43a235 235 0 0 0 18.47 27.27zm-3.52-80.94c-19.44 12.81-27.8 33.66-29.91 56.3 12.32-4.53 24.63-9.31 37-10.56-5-12-6.65-28.14-7-45.74zm1.76-45.74c-.81 14.3-1.84 28.82-1.76 42.23-19.22-8.11-29.78-9.72-44-14.08 10.63-18.95 27.23-25.52 45.76-28.15"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/wordpress-simple.svg�������������0000664�0000000�0000000�00000002206�14753064456�0031451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 8C119.3 8 8 119.2 8 256c0 136.7 111.3 248 248 248s248-111.3 248-248C504 119.2 392.7 8 256 8M33 256c0-32.3 6.9-63 19.3-90.7l106.4 291.4C84.3 420.5 33 344.2 33 256m223 223c-21.9 0-43-3.2-63-9.1l66.9-194.4 68.5 187.8c.5 1.1 1 2.1 1.6 3.1-23.1 8.1-48 12.6-74 12.6m30.7-327.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-21.9 0-58.7-2.8-58.7-2.8-12-.7-13.4 17.7-1.4 18.4 0 0 11.4 1.4 23.4 2.1l34.7 95.2L200.6 393l-81.2-241.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-4.2 0-9.1-.1-14.4-.3C109.6 73 178.1 33 256 33c58 0 110.9 22.2 150.6 58.5-1-.1-1.9-.2-2.9-.2-21.9 0-37.4 19.1-37.4 39.6 0 18.4 10.6 33.9 21.9 52.3 8.5 14.8 18.4 33.9 18.4 61.5 0 19.1-7.3 41.2-17 72.1l-22.2 74.3zm81.4 297.2 68.1-196.9c12.7-31.8 17-57.2 17-79.9 0-8.2-.5-15.8-1.5-22.9 17.4 31.8 27.3 68.2 27.3 107 0 82.3-44.6 154.1-110.9 192.7"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/wordpress.svg��������������������0000664�0000000�0000000�00000002420�14753064456�0030160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m61.7 169.4 101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6m337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8.9 0 1.8.1 2.8.2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7.3 13.7.3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7m-139.9 29.3-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1M504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248m-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/wpbeginner.svg�������������������0000664�0000000�0000000�00000001404�14753064456�0030271�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M462.799 322.374C519.01 386.682 466.961 480 370.944 480c-39.602 0-78.824-17.687-100.142-50.04-6.887.356-22.702.356-29.59 0C219.848 462.381 180.588 480 141.069 480c-95.49 0-148.348-92.996-91.855-157.626C-29.925 190.523 80.479 32 256.006 32c175.632 0 285.87 158.626 206.793 290.374m-339.647-82.972h41.529v-58.075h-41.529zm217.18 86.072v-23.839c-60.506 20.915-132.355 9.198-187.589-33.971l.246 24.897c51.101 46.367 131.746 57.875 187.343 32.913m-150.753-86.072h166.058v-58.075H189.579z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/wpexplorer.svg�������������������0000664�0000000�0000000�00000001256�14753064456�0030345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M512 256c0 141.2-114.7 256-256 256C114.8 512 0 397.3 0 256S114.7 0 256 0s256 114.7 256 256m-32 0c0-123.2-100.3-224-224-224C132.5 32 32 132.5 32 256s100.5 224 224 224 224-100.5 224-224M160.9 124.6l86.9 37.1-37.1 86.9-86.9-37.1zm110 169.1 46.6 94h-14.6l-50-100-48.9 100h-14l51.1-106.9-22.3-9.4 6-14 68.6 29.1-6 14.3zm-11.8-116.3 68.6 29.4-29.4 68.3L230 246zm80.3 42.9 54.6 23.1-23.4 54.3-54.3-23.1z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/wpforms.svg����������������������0000664�0000000�0000000�00000001363�14753064456�0027632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 75.2v361.7c0 24.3-19 43.2-43.2 43.2H43.2C19.3 480 0 461.4 0 436.8V75.2C0 51.1 18.8 32 43.2 32h361.7c24 0 43.1 18.8 43.1 43.2m-37.3 361.6V75.2c0-3-2.6-5.8-5.8-5.8h-9.3L285.3 144 224 94.1 162.8 144 52.5 69.3h-9.3c-3.2 0-5.8 2.8-5.8 5.8v361.7c0 3 2.6 5.8 5.8 5.8h361.7c3.2.1 5.8-2.7 5.8-5.8M150.2 186v37H76.7v-37zm0 74.4v37.3H76.7v-37.3zm11.1-147.3 54-43.7H96.8zm210 72.9v37h-196v-37zm0 74.4v37.3h-196v-37.3zm-84.6-147.3 64.5-43.7H232.8zM371.3 335v37.3h-99.4V335z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/wpressr.svg����������������������0000664�0000000�0000000�00000002614�14753064456�0027642�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8m171.33 158.6c-15.18 34.51-30.37 69.02-45.63 103.5-2.44 5.51-6.89 8.24-12.97 8.24-23.02-.01-46.03.06-69.05-.05-5.12-.03-8.25 1.89-10.34 6.72-10.19 23.56-20.63 47-30.95 70.5-1.54 3.51-4.06 5.29-7.92 5.29-45.94-.01-91.87-.02-137.81 0-3.13 0-5.63-1.15-7.72-3.45-11.21-12.33-22.46-24.63-33.68-36.94-2.69-2.95-2.79-6.18-1.21-9.73 8.66-19.54 17.27-39.1 25.89-58.66 12.93-29.35 25.89-58.69 38.75-88.08 1.7-3.88 4.28-5.68 8.54-5.65 14.24.1 28.48.02 42.72.05 6.24.01 9.2 4.84 6.66 10.59-13.6 30.77-27.17 61.55-40.74 92.33-5.72 12.99-11.42 25.99-17.09 39-3.91 8.95 7.08 11.97 10.95 5.6.23-.37-1.42 4.18 30.01-67.69 1.36-3.1 3.41-4.4 6.77-4.39 15.21.08 30.43.02 45.64.04 5.56.01 7.91 3.64 5.66 8.75-8.33 18.96-16.71 37.9-24.98 56.89-4.98 11.43 8.08 12.49 11.28 5.33.04-.08 27.89-63.33 32.19-73.16 2.02-4.61 5.44-6.51 10.35-6.5 26.43.05 52.86 0 79.29.05 12.44.02 13.93-13.65 3.9-13.64-25.26.03-50.52.02-75.78.02-6.27 0-7.84-2.47-5.27-8.27 5.78-13.06 11.59-26.11 17.3-39.21 1.73-3.96 4.52-5.79 8.84-5.78 23.09.06 25.98.02 130.78.03 6.08-.01 8.03 2.79 5.62 8.27"/></svg>��������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/x-twitter.svg��������������������0000664�0000000�0000000�00000000651�14753064456�0030103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8l164.9-188.5L26.8 48h145.6l100.5 132.9zm-24.8 373.8h39.1L151.1 88h-42z"/></svg>���������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/xbox.svg�������������������������0000664�0000000�0000000�00000002231�14753064456�0027110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M369.9 318.2c44.3 54.3 64.7 98.8 54.4 118.7-7.9 15.1-56.7 44.6-92.6 55.9-29.6 9.3-68.4 13.3-100.4 10.2-38.2-3.7-76.9-17.4-110.1-39C93.3 445.8 87 438.3 87 423.4c0-29.9 32.9-82.3 89.2-142.1 32-33.9 76.5-73.7 81.4-72.6 9.4 2.1 84.3 75.1 112.3 109.5M188.6 143.8c-29.7-26.9-58.1-53.9-86.4-63.4-15.2-5.1-16.3-4.8-28.7 8.1-29.2 30.4-53.5 79.7-60.3 122.4-5.4 34.2-6.1 43.8-4.2 60.5 5.6 50.5 17.3 85.4 40.5 120.9 9.5 14.6 12.1 17.3 9.3 9.9-4.2-11-.3-37.5 9.5-64 14.3-39 53.9-112.9 120.3-194.4m311.6 63.5C483.3 127.3 432.7 77 425.6 77c-7.3 0-24.2 6.5-36 13.9-23.3 14.5-41 31.4-64.3 52.8C367.7 197 427.5 283.1 448.2 346c6.8 20.7 9.7 41.1 7.4 52.3-1.7 8.5-1.7 8.5 1.4 4.6 6.1-7.7 19.9-31.3 25.4-43.5 7.4-16.2 15-40.2 18.6-58.7 4.3-22.5 3.9-70.8-.8-93.4M141.3 43C189 40.5 251 77.5 255.6 78.4c.7.1 10.4-4.2 21.6-9.7 63.9-31.1 94-25.8 107.4-25.2-63.9-39.3-152.7-50-233.9-11.7-23.4 11.1-24 11.9-9.4 11.2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/xing.svg�������������������������0000664�0000000�0000000�00000001214�14753064456�0027075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M162.7 210c-1.8 3.3-25.2 44.4-70.1 123.5-4.9 8.3-10.8 12.5-17.7 12.5H9.8c-7.7 0-12.1-7.5-8.5-14.4l69-121.3q.3 0 0-.3l-43.9-75.6c-4.3-7.8.3-14.1 8.5-14.1H100c7.3 0 13.3 4.1 18 12.2zM382.6 46.1l-144 253v.3L330.2 466c3.9 7.1.2 14.1-8.5 14.1h-65.2c-7.6 0-13.6-4-18-12.2l-92.4-168.5c3.3-5.8 51.5-90.8 144.8-255.2 4.6-8.1 10.4-12.2 17.5-12.2h65.7c8 0 12.3 6.7 8.5 14.1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/y-combinator.svg�����������������0000664�0000000�0000000�00000000631�14753064456�0030535�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 32v448H0V32zM236 287.5 313.5 142h-32.7L235 233c-4.7 9.3-9 18.3-12.8 26.8L210 233l-45.2-91h-35l76.7 143.8v94.5H236z"/></svg>�������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/yahoo.svg������������������������0000664�0000000�0000000�00000000751�14753064456�0027254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M223.69 141.06 167 284.23l-56-143.17H14.93l105.83 249.13L82.19 480h94.17l140.91-338.94Zm105.4 135.79a58.22 58.22 0 1 0 58.22 58.22 58.22 58.22 0 0 0-58.22-58.22M394.65 32l-93 223.47h104.79L499.07 32Z"/></svg>�����������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/yammer.svg�����������������������0000664�0000000�0000000�00000003117�14753064456�0027426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M500.676 159.486a12.78 12.78 0 0 0-6.4-8.282 13.95 13.95 0 0 0-10.078-1.125L457.8 156.7l-.043-.2-22.3 5.785-1.243.333-.608-2.17A369.04 369.04 0 0 0 347.538 4.289a14.1 14.1 0 0 0-19.784-.463l-102.9 102.747H24.947A24.9 24.9 0 0 0 0 131.417V380.38a24.963 24.963 0 0 0 24.918 24.9h200.068L328.072 508a13.667 13.667 0 0 0 19.327 0q.189-.19.37-.385a368 368 0 0 0 69.577-107.374 403.5 403.5 0 0 0 17.3-50.8v-.028l20.406 5.336.029-.073L483.345 362a20 20 0 0 0 2.619.5 13.4 13.4 0 0 0 4.139-.072 13.5 13.5 0 0 0 10.515-9.924 415.86 415.86 0 0 0 .058-193.013ZM337.125 24.65l.013.014h-.013Zm-110.2 165.161L174.311 281.1a11.34 11.34 0 0 0-1.489 5.655v46.189a22.04 22.04 0 0 1-22.041 22h-3.4a22.07 22.07 0 0 1-22.081-21.982v-45.668a11.53 11.53 0 0 0-1.388-5.51l-51.6-92.2a21.988 21.988 0 0 1 19.264-32.726h3.268a22.06 22.06 0 0 1 19.611 11.916l36.357 70.281 37.515-70.512a22.066 22.066 0 0 1 38.556-.695 21.7 21.7 0 0 1 0 21.967Zm110.22-165.138a348.15 348.15 0 0 1 75.8 141.335l.564 1.952-114.134 29.6v-66.143a25.006 25.006 0 0 0-24.947-24.9h-19.361Zm60.5 367.305v-.043l-.014.014a347.2 347.2 0 0 1-60.177 95.227l-82.2-81.893h19.177a24.98 24.98 0 0 0 24.947-24.9v-66.2l114.6 29.862a385 385 0 0 1-16.33 47.933Zm84-52.45.015.014-50.618-13.131L299.379 292.1v-72.528l119.746-30.99 4.468-1.157 39.54-10.253 18.511-4.816a393 393 0 0 1 0 167.172Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/yandex-international.svg���������0000664�0000000�0000000�00000000550�14753064456�0032267�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M129.5 512V345.9L18.5 48h55.8l81.8 229.7L250.2 0h51.3L180.8 347.8V512z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/yandex.svg�����������������������0000664�0000000�0000000�00000000741�14753064456�0027424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M153.1 315.8 65.7 512H2l96-209.8c-45.1-22.9-75.2-64.4-75.2-141.1C22.7 53.7 90.8 0 171.7 0H254v512h-55.1V315.8zm45.8-269.3h-29.4c-44.4 0-87.4 29.4-87.4 114.6 0 82.3 39.4 108.8 87.4 108.8h29.4z"/></svg>�������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/yarn.svg�������������������������0000664�0000000�0000000�00000003123�14753064456�0027102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M393.9 345.2c-39 9.3-48.4 32.1-104 47.4 0 0-2.7 4-10.4 5.8-13.4 3.3-63.9 6-68.5 6.1-12.4.1-19.9-3.2-22-8.2-6.4-15.3 9.2-22 9.2-22-8.1-5-9-9.9-9.8-8.1-2.4 5.8-3.6 20.1-10.1 26.5-8.8 8.9-25.5 5.9-35.3.8-10.8-5.7.8-19.2.8-19.2s-5.8 3.4-10.5-3.6c-6-9.3-17.1-37.3 11.5-62-1.3-10.1-4.6-53.7 40.6-85.6 0 0-20.6-22.8-12.9-43.3 5-13.4 7-13.3 8.6-13.9 5.7-2.2 11.3-4.6 15.4-9.1 20.6-22.2 46.8-18 46.8-18s12.4-37.8 23.9-30.4c3.5 2.3 16.3 30.6 16.3 30.6s13.6-7.9 15.1-5c8.2 16 9.2 46.5 5.6 65.1-6.1 30.6-21.4 47.1-27.6 57.5-1.4 2.4 16.5 10 27.8 41.3 10.4 28.6 1.1 52.7 2.8 55.3.8 1.4 13.7.8 36.4-13.2 12.8-7.9 28.1-16.9 45.4-17 16.7-.5 17.6 19.2 4.9 22.2M496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248m-79.3 75.2c-1.7-13.6-13.2-23-28-22.8-22 .3-40.5 11.7-52.8 19.2-4.8 3-8.9 5.2-12.4 6.8 3.1-44.5-22.5-73.1-28.7-79.4 7.8-11.3 18.4-27.8 23.4-53.2 4.3-21.7 3-55.5-6.9-74.5-1.6-3.1-7.4-11.2-21-7.4-9.7-20-13-22.1-15.6-23.8-1.1-.7-23.6-16.4-41.4 28-12.2.9-31.3 5.3-47.5 22.8-2 2.2-5.9 3.8-10.1 5.4h.1c-8.4 3-12.3 9.9-16.9 22.3-6.5 17.4.2 34.6 6.8 45.7-17.8 15.9-37 39.8-35.7 82.5-34 36-11.8 73-5.6 79.6-1.6 11.1 3.7 19.4 12 23.8 12.6 6.7 30.3 9.6 43.9 2.8 4.9 5.2 13.8 10.1 30 10.1 6.8 0 58-2.9 72.6-6.5 6.8-1.6 11.5-4.5 14.6-7.1 9.8-3.1 36.8-12.3 62.2-28.7 18-11.7 24.2-14.2 37.6-17.4 12.9-3.2 21-15.1 19.4-28.2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/yelp.svg�������������������������0000664�0000000�0000000�00000002014�14753064456�0027100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m42.9 240.32 99.62 48.61c19.2 9.4 16.2 37.51-4.5 42.71L30.5 358.45a22.79 22.79 0 0 1-28.21-19.6 197.2 197.2 0 0 1 9-85.32 22.8 22.8 0 0 1 31.61-13.21m44 239.25a199.45 199.45 0 0 0 79.42 32.11A22.78 22.78 0 0 0 192.94 490l3.9-110.82c.7-21.3-25.5-31.91-39.81-16.1l-74.21 82.4a22.82 22.82 0 0 0 4.09 34.09zm145.34-109.92 58.81 94a22.93 22.93 0 0 0 34 5.5 198.4 198.4 0 0 0 52.71-67.61A23 23 0 0 0 364.17 370l-105.42-34.26c-20.31-6.5-37.81 15.8-26.51 33.91m148.33-132.23a197.4 197.4 0 0 0-50.41-69.31 22.85 22.85 0 0 0-34 4.4l-62 91.92c-11.9 17.7 4.7 40.61 25.2 34.71L366 268.63a23 23 0 0 0 14.61-31.21zM62.11 30.18a22.86 22.86 0 0 0-9.9 32l104.12 180.44c11.7 20.2 42.61 11.9 42.61-11.4V22.88a22.67 22.67 0 0 0-24.5-22.8 320.4 320.4 0 0 0-112.33 30.1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/yoast.svg������������������������0000664�0000000�0000000�00000001317�14753064456�0027273�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M91.3 76h186l-7 18.9h-179c-39.7 0-71.9 31.6-71.9 70.3v205.4c0 35.4 24.9 70.3 84 70.3V460H91.3C41.2 460 0 419.8 0 370.5V165.2C0 115.9 40.7 76 91.3 76m229.1-56h66.5C243.1 398.1 241.2 418.9 202.2 459.3c-20.8 21.6-49.3 31.7-78.3 32.7v-51.1c49.2-7.7 64.6-49.9 64.6-75.3 0-20.1.6-12.6-82.1-223.2h61.4L218.2 299zM448 161.5V460H234c6.6-9.6 10.7-16.3 12.1-19.4h182.5V161.5c0-32.5-17.1-51.9-48.2-62.9l6.7-17.6c41.7 13.6 60.9 43.1 60.9 80.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/youtube.svg����������������������0000664�0000000�0000000�00000001350�14753064456�0027625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305m-317.51 213.508V175.185l142.739 81.205z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/brands/zhihu.svg������������������������0000664�0000000�0000000�00000003264�14753064456�0027266�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M170.54 148.13v217.54l23.43.01 7.71 26.37 42.01-26.37h49.53V148.13zm97.75 193.93h-27.94l-27.9 17.51-5.08-17.47-11.9-.04V171.75h72.82zm-118.46-94.39H97.5c1.74-27.1 2.2-51.59 2.2-73.46h51.16s1.97-22.56-8.58-22.31h-88.5c3.49-13.12 7.87-26.66 13.12-40.67 0 0-24.07 0-32.27 21.57-3.39 8.9-13.21 43.14-30.7 78.12 5.89-.64 25.37-1.18 36.84-22.21 2.11-5.89 2.51-6.66 5.14-14.53h28.87c0 10.5-1.2 66.88-1.68 73.44H20.83c-11.74 0-15.56 23.62-15.56 23.62h65.58C66.45 321.1 42.83 363.12 0 396.34c20.49 5.85 40.91-.93 51-9.9 0 0 22.98-20.9 35.59-69.25l53.96 64.94s7.91-26.89-1.24-39.99c-7.58-8.92-28.06-33.06-36.79-41.81L87.9 311.95c4.36-13.98 6.99-27.55 7.87-40.67h61.65s-.09-23.62-7.59-23.62zm412.02-1.6c20.83-25.64 44.98-58.57 44.98-58.57s-18.65-14.8-27.38-4.06c-6 8.15-36.83 48.2-36.83 48.2zm-150.09-59.09c-9.01-8.25-25.91 2.13-25.91 2.13s39.52 55.04 41.12 57.45l19.46-13.73s-25.67-37.61-34.66-45.86h-.01zM640 258.35c-19.78 0-130.91.93-131.06.93v-101c4.81 0 12.42-.4 22.85-1.2 40.88-2.41 70.13-4 87.77-4.81 0 0 12.22-27.19-.59-33.44-3.07-1.18-23.17 4.58-23.17 4.58s-165.22 16.49-232.36 18.05c1.6 8.82 7.62 17.08 15.78 19.55 13.31 3.48 22.69 1.7 49.15.89 24.83-1.6 43.68-2.43 56.51-2.43v99.81H351.41s2.82 22.31 25.51 22.85h107.94v70.92c0 13.97-11.19 21.99-24.48 21.12-14.08.11-26.08-1.15-41.69-1.81 1.99 3.97 6.33 14.39 19.31 21.84 9.88 4.81 16.17 6.57 26.02 6.57 29.56 0 45.67-17.28 44.89-45.31v-73.32h122.36c9.68 0 8.7-23.78 8.7-23.78z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/��������������������������������0000775�0000000�0000000�00000000000�14753064456�0025601�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/address-book.svg����������������0000664�0000000�0000000�00000001535�14753064456�0030703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 48c8.8 0 16 7.2 16 16v384c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16zM96 0C60.7 0 32 28.7 32 64v384c0 35.3 28.7 64 64 64h288c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm144 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128m-32 32c-44.2 0-80 35.8-80 80 0 8.8 7.2 16 16 16h192c8.8 0 16-7.2 16-16 0-44.2-35.8-80-80-80zM512 80c0-8.8-7.2-16-16-16s-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16zm-16 112c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16v-64c0-8.8-7.2-16-16-16m16 144c0-8.8-7.2-16-16-16s-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/address-card.svg����������������0000664�0000000�0000000�00000001424�14753064456�0030657�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M512 80c8.8 0 16 7.2 16 16v320c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V96c0-8.8 7.2-16 16-16zM64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm144 224a64 64 0 1 0 0-128 64 64 0 1 0 0 128m-32 32c-44.2 0-80 35.8-80 80 0 8.8 7.2 16 16 16h192c8.8 0 16-7.2 16-16 0-44.2-35.8-80-80-80zm200-144c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/bell-slash.svg������������������0000664�0000000�0000000�00000001627�14753064456�0030356�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2s-6.3 25.5 4.1 33.7l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L542.6 400c2.7-7.8 1.3-16.5-3.9-23l-14.9-18.6c-28.3-35.5-43.8-79.6-43.8-125V200c0-75.8-55.5-138.6-128-150.1V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v17.9c-43.9 7-81.5 32.7-104.4 68.7zm182.9 143.3C239.6 117.1 273.3 96 312 96h16c57.4 0 104 46.6 104 104v33.4c0 32.7 6.4 64.8 18.7 94.5zM406.2 416l-60.9-48H168.4c21.2-32.8 34.4-70.3 38.4-109.1L160 222.1v11.4c0 45.4-15.5 89.5-43.8 124.9L101.3 377c-5.8 7.2-6.9 17.1-2.9 25.4S110.8 416 120 416zM384 448H256c0 17 6.7 33.3 18.7 45.3S303 512 320 512s33.3-6.7 45.3-18.7S384 465 384 448"/></svg>���������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/bell.svg������������������������0000664�0000000�0000000�00000001414�14753064456�0027240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 0c-17.7 0-32 14.3-32 32v19.2C119 66 64 130.6 64 208v25.4c0 45.4-15.5 89.5-43.8 124.9L5.3 377c-5.8 7.2-6.9 17.1-2.9 25.4S14.8 416 24 416h400c9.2 0 17.6-5.3 21.6-13.6s2.9-18.2-2.9-25.4l-14.9-18.6c-28.3-35.5-43.8-79.6-43.8-125V208c0-77.4-55-142-128-156.8V32c0-17.7-14.3-32-32-32m0 96c61.9 0 112 50.1 112 112v25.4c0 47.9 13.9 94.6 39.7 134.6H72.3c25.8-40 39.7-86.7 39.7-134.6V208c0-61.9 50.1-112 112-112m64 352H160c0 17 6.7 33.3 18.7 45.3S207 512 224 512s33.3-6.7 45.3-18.7S288 465 288 448"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/bookmark.svg��������������������0000664�0000000�0000000�00000000760�14753064456�0030132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 48C0 21.5 21.5 0 48 0v441.4l130.1-92.9c8.3-6 19.6-6 27.9 0l130 92.9V48H48V0h288c26.5 0 48 21.5 48 48v440c0 9-5 17.2-13 21.3s-17.6 3.4-24.9-1.8L192 397.5l-154.1 110c-7.3 5.2-16.9 5.9-24.9 1.8S0 497 0 488z"/></svg>����������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/building.svg��������������������0000664�0000000�0000000�00000001622�14753064456�0030120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 48c-8.8 0-16 7.2-16 16v384c0 8.8 7.2 16 16 16h80v-64c0-26.5 21.5-48 48-48s48 21.5 48 48v64h80c8.8 0 16-7.2 16-16V64c0-8.8-7.2-16-16-16zM0 64C0 28.7 28.7 0 64 0h256c35.3 0 64 28.7 64 64v384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm88 40c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v48c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16zm144-16h48c8.8 0 16 7.2 16 16v48c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16v-48c0-8.8 7.2-16 16-16M88 232c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v48c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16zm144-16h48c8.8 0 16 7.2 16 16v48c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16v-48c0-8.8 7.2-16 16-16"/></svg>��������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/calendar-check.svg��������������0000664�0000000�0000000�00000001263�14753064456�0031150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 0c13.3 0 24 10.7 24 24v40h144V24c0-13.3 10.7-24 24-24s24 10.7 24 24v40h40c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128c0-35.3 28.7-64 64-64h40V24c0-13.3 10.7-24 24-24m272 192H48v256c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16zm-71 105L217 409c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47 95-95c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/calendar-days.svg���������������0000664�0000000�0000000�00000001255�14753064456�0031034�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M152 24c0-13.3-10.7-24-24-24s-24 10.7-24 24v40H64C28.7 64 0 92.7 0 128v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64h-40V24c0-13.3-10.7-24-24-24s-24 10.7-24 24v40H152zM48 192h80v56H48zm0 104h80v64H48zm128 0h96v64h-96zm144 0h80v64h-80zm80-48h-80v-56h80zm0 160v40c0 8.8-7.2 16-16 16h-64v-56zm-128 0v56h-96v-56zm-144 0v56H64c-8.8 0-16-7.2-16-16v-40zm144-160h-96v-56h96z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/calendar-minus.svg��������������0000664�0000000�0000000�00000001175�14753064456�0031230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 0c13.3 0 24 10.7 24 24v40h144V24c0-13.3 10.7-24 24-24s24 10.7 24 24v40h40c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128c0-35.3 28.7-64 64-64h40V24c0-13.3 10.7-24 24-24m272 192H48v256c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16zM296 352H152c-13.3 0-24-10.7-24-24s10.7-24 24-24h144c13.3 0 24 10.7 24 24s-10.7 24-24 24"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/calendar-plus.svg���������������0000664�0000000�0000000�00000001331�14753064456�0031052�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M152 24c0-13.3-10.7-24-24-24s-24 10.7-24 24v40H64C28.7 64 0 92.7 0 128v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64h-40V24c0-13.3-10.7-24-24-24s-24 10.7-24 24v40H152zM48 192h352v256c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16zm176 40c-13.3 0-24 10.7-24 24v48h-48c-13.3 0-24 10.7-24 24s10.7 24 24 24h48v48c0 13.3 10.7 24 24 24s24-10.7 24-24v-48h48c13.3 0 24-10.7 24-24s-10.7-24-24-24h-48v-48c0-13.3-10.7-24-24-24"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/calendar-xmark.svg��������������0000664�0000000�0000000�00000001401�14753064456�0031207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 0c13.3 0 24 10.7 24 24v40h144V24c0-13.3 10.7-24 24-24s24 10.7 24 24v40h40c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128c0-35.3 28.7-64 64-64h40V24c0-13.3 10.7-24 24-24m272 192H48v256c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16zm-95 89-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/calendar.svg��������������������0000664�0000000�0000000�00000001040�14753064456�0030066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M152 24c0-13.3-10.7-24-24-24s-24 10.7-24 24v40H64C28.7 64 0 92.7 0 128v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64h-40V24c0-13.3-10.7-24-24-24s-24 10.7-24 24v40H152zM48 192h352v256c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/chart-bar.svg�������������������0000664�0000000�0000000�00000001271�14753064456�0030166�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M24 32c13.3 0 24 10.7 24 24v352c0 13.3 10.7 24 24 24h416c13.3 0 24 10.7 24 24s-10.7 24-24 24H72c-39.8 0-72-32.2-72-72V56c0-13.3 10.7-24 24-24m104 104c0-13.3 10.7-24 24-24h208c13.3 0 24 10.7 24 24s-10.7 24-24 24H152c-13.3 0-24-10.7-24-24m24 72h144c13.3 0 24 10.7 24 24s-10.7 24-24 24H152c-13.3 0-24-10.7-24-24s10.7-24 24-24m0 96h272c13.3 0 24 10.7 24 24s-10.7 24-24 24H152c-13.3 0-24-10.7-24-24s10.7-24 24-24"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/chess-bishop.svg����������������0000664�0000000�0000000�00000002152�14753064456�0030711�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M104 0C90.7 0 80 10.7 80 24c0 11.2 7.6 20.6 18 23.2-7.8 8-16.1 17-24.4 27C38.2 116.7 0 178.8 0 250.9c0 44.8 24.6 72.2 48 87.8V352h48v-27c0-9-5-17.2-13-21.3-18-9.3-35-24.7-35-52.7 0-55.5 29.8-106.8 62.4-145.9 16-19.2 32.1-34.8 44.2-45.5 1.9-1.7 3.7-3.2 5.3-4.6 1.7 1.4 3.4 3 5.3 4.6 12.1 10.7 28.2 26.3 44.2 45.5 5.3 6.3 10.5 13 15.5 20L159 191c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l57.8-57.8c12.8 25.9 21.2 54.3 21.2 83.8 0 28-17 43.4-35 52.7-8 4.1-13 12.3-13 21.3v27h48v-13.3c23.4-15.6 48-42.9 48-87.8 0-72.1-38.2-134.2-73.6-176.7-8.3-9.9-16.6-19-24.4-27 10.3-2.7 18-12.1 18-23.2 0-13.3-10.7-24-24-24L160 0zM52.7 464l16.6-32h181.6l16.6 32zm207.9-80h-201c-12 0-22.9 6.7-28.4 17.3L4.6 452.5c-3 5.8-4.6 12.2-4.6 18.7C0 493.8 18.2 512 40.8 512h238.5c22.5 0 40.8-18.2 40.8-40.8 0-6.5-1.6-12.9-4.6-18.7L289 401.3c-5.5-10.6-16.5-17.3-28.4-17.3"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/chess-king.svg������������������0000664�0000000�0000000�00000001632�14753064456�0030357�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M248 24c0-13.3-10.7-24-24-24s-24 10.7-24 24v32h-32c-13.3 0-24 10.7-24 24s10.7 24 24 24h32v40H59.6C26.7 144 0 170.7 0 203.6c0 8.2 1.7 16.3 4.9 23.8L59.1 352h52.3L49 208.2c-.6-1.5-1-3-1-4.6 0-6.4 5.2-11.6 11.6-11.6h328.8c6.4 0 11.6 5.2 11.6 11.6 0 1.6-.3 3.2-1 4.6L336.5 352h52.3L443 227.4c3.3-7.5 4.9-15.6 4.9-23.8 0-32.9-26.7-59.6-59.6-59.6H248v-40h32c13.3 0 24-10.7 24-24s-10.7-24-24-24h-32zM101.2 432h245.6l16.6 32H84.7l16.6-32zm283.7-30.7c-5.5-10.6-16.5-17.3-28.4-17.3h-265c-12 0-22.9 6.7-28.4 17.3l-26.5 51.2c-3 5.8-4.6 12.2-4.6 18.7 0 22.6 18.2 40.8 40.8 40.8h302.5c22.5 0 40.8-18.2 40.8-40.8 0-6.5-1.6-12.9-4.6-18.7L385 401.3z"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/chess-knight.svg����������������0000664�0000000�0000000�00000002170�14753064456�0030711�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M226.6 48H117.3l17.1 12.8c6 4.5 9.6 11.6 9.6 19.2s-3.6 14.7-9.6 19.2l-6.5 4.9c-10 7.5-16 19.3-16 31.9l-.3 91c0 10.2 4.9 19.9 13.2 25.8l1.9 1.3c9.9 7.1 23.3 7 33.2-.1l49.9-36.3c10.7-7.8 25.7-5.4 33.5 5.3s5.4 25.7-5.3 33.5l-49.9 36.3-53.8 39.1c-7.3 5.3-13 12.2-16.9 20.1H66.7c5.3-22.1 17.8-41.9 35.9-56.3-1.3-.8-2.6-1.7-3.8-2.6l-1.8-1.3c-21-15-33.4-39.2-33.3-65l.3-91c.1-19.8 6.7-38.7 18.6-53.9l-.4-.3C70.7 73 64 59.6 64 45.3 64 20.3 84.3 0 109.3 0h117.3C331.2 0 416 84.8 416 189.4c0 11.1-1 22.2-2.9 33.2l-23 129.4h-48.8l24.5-137.8c1.5-8.2 2.2-16.5 2.2-24.8C368 111.3 304.7 48 226.6 48M85.2 432l-16.5 32h310.7l-16.6-32zm315.7-30.7 26.5 51.2c3 5.8 4.6 12.2 4.6 18.7 0 22.5-18.2 40.8-40.8 40.8H56.8C34.2 512 16 493.8 16 471.2c0-6.5 1.6-12.9 4.6-18.7l26.5-51.2c5.4-10.6 16.4-17.3 28.4-17.3h297c12 0 22.9 6.7 28.4 17.3M172 128a20 20 0 1 1 0 40 20 20 0 1 1 0-40"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/chess-pawn.svg������������������0000664�0000000�0000000�00000001407�14753064456�0030374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M232 152a72 72 0 1 0-144 0 72 72 0 1 0 144 0m24 120h-12.6l10.7 80h-48.4L195 272h-70l-10.7 80H65.9l10.7-80H64c-13.3 0-24-10.7-24-24s10.7-24 24-24c-15.1-20.1-24-45-24-72C40 85.7 93.7 32 160 32s120 53.7 120 120c0 27-8.9 51.9-24 72 13.3 0 24 10.7 24 24s-10.7 24-24 24M52.7 464h214.7l-16.6-32H69.2zm207.9-80c12 0 22.9 6.7 28.4 17.3l26.5 51.2c3 5.8 4.6 12.2 4.6 18.7 0 22.5-18.2 40.8-40.8 40.8H40.8C18.2 512 0 493.8 0 471.2c0-6.5 1.6-12.9 4.6-18.7l26.5-51.2c5.4-10.6 16.4-17.3 28.4-17.3h201z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/chess-queen.svg�����������������0000664�0000000�0000000�00000002100�14753064456�0030533�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96m-95.2-8c-18.1 0-31.3 12.8-35.6 26.9-8 26.2-32.4 45.2-61.2 45.2-10 0-19.4-2.3-27.7-6.3-7.6-3.7-16.7-3.3-24 1.2-11.6 7.1-15.4 22.1-8.6 33.9L97.6 352H153L70 207.9c40.5-2.2 75.3-25.9 93.1-59.8 22 26.8 55.4 43.9 92.8 43.9s70.8-17.1 92.8-43.9c17.8 34 52.6 57.7 93.1 59.8L359 352h55.4l93.9-163.1c6.8-11.7 3-26.7-8.6-33.8-7.3-4.5-16.4-4.9-24-1.2-8.4 4-17.7 6.3-27.7 6.3-28.8 0-53.2-19-61.2-45.2-4.3-14.2-17.5-27-35.6-27-14.5 0-26.3 8.5-32.4 19.3-12.4 22-35.9 36.7-62.8 36.7s-50.4-14.8-62.8-36.7C187.1 96.5 175.4 88 160.8 88m-27.6 344h245.6l16.6 32H116.7l16.6-32zm283.7-30.7c-5.5-10.6-16.5-17.3-28.4-17.3h-265c-12 0-22.9 6.7-28.4 17.3l-26.5 51.2c-3 5.8-4.6 12.2-4.6 18.7 0 22.5 18.2 40.8 40.8 40.8h302.5c22.5 0 40.8-18.2 40.8-40.8 0-6.5-1.6-12.9-4.6-18.7L417 401.3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/chess-rook.svg������������������0000664�0000000�0000000�00000001747�14753064456�0030410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M80 80v112c0 2.5 1.2 4.9 3.2 6.4l51.2 38.4c6.8 5.1 10.4 13.4 9.5 21.9L133.5 352H85.2l9.4-85-40.2-30.2C40.3 226.2 32 209.6 32 192V72c0-22.1 17.9-40 40-40h304c22.1 0 40 17.9 40 40v120c0 17.6-8.3 34.2-22.4 44.8L353.4 267l9.4 85h-48.3l-10.4-93.3c-.9-8.4 2.7-16.8 9.5-21.9l51.2-38.4c2-1.5 3.2-3.9 3.2-6.4V80h-64v24c0 13.3-10.7 24-24 24s-24-10.7-24-24V80h-64v24c0 13.3-10.7 24-24 24s-24-10.7-24-24V80zm4.7 384h278.7l-16.6-32H101.2zm271.9-80c12 0 22.9 6.7 28.4 17.3l26.5 51.2c3 5.8 4.6 12.2 4.6 18.7 0 22.5-18.2 40.8-40.8 40.8H72.8C50.2 512 32 493.8 32 471.2c0-6.5 1.6-12.9 4.6-18.7l26.5-51.2c5.4-10.6 16.4-17.3 28.4-17.3h265zM208 288c-8.8 0-16-7.2-16-16v-48c0-17.7 14.3-32 32-32s32 14.3 32 32v48c0 8.8-7.2 16-16 16z"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/circle-check.svg����������������0000664�0000000�0000000�00000001010�14753064456�0030626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416m0 464a256 256 0 1 0 0-512 256 256 0 1 0 0 512m113-303c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-111 111-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/circle-dot.svg������������������0000664�0000000�0000000�00000000653�14753064456�0030353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 0-416 0 208 208 0 1 0 416 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m256-96a96 96 0 1 1 0 192 96 96 0 1 1 0-192"/></svg>�������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/circle-down.svg�����������������0000664�0000000�0000000�00000001146�14753064456�0030532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 464a208 208 0 1 1 0-416 208 208 0 1 1 0 416m0-464a256 256 0 1 0 0 512 256 256 0 1 0 0-512m120.9 294.6c4.5-4.2 7.1-10.1 7.1-16.3 0-12.3-10-22.3-22.3-22.3H304v-96c0-17.7-14.3-32-32-32h-32c-17.7 0-32 14.3-32 32v96h-57.7c-12.3 0-22.3 10-22.3 22.3 0 6.2 2.6 12.1 7.1 16.3l107.1 99.9c3.8 3.5 8.7 5.5 13.8 5.5s10.1-2 13.8-5.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/circle-left.svg�����������������0000664�0000000�0000000�00000001145�14753064456�0030514�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48 256a208 208 0 1 1 416 0 208 208 0 1 1-416 0m464 0a256 256 0 1 0-512 0 256 256 0 1 0 512 0M217.4 376.9c4.2 4.5 10.1 7.1 16.3 7.1 12.3 0 22.3-10 22.3-22.3V304h96c17.7 0 32-14.3 32-32v-32c0-17.7-14.3-32-32-32h-96v-57.7c0-12.3-10-22.3-22.3-22.3-6.2 0-12.1 2.6-16.3 7.1l-99.9 107.1c-3.5 3.8-5.5 8.7-5.5 13.8s2 10.1 5.5 13.8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/circle-pause.svg����������������0000664�0000000�0000000�00000001053�14753064456�0030675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 0-416 0 208 208 0 1 0 416 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m224-72v144c0 13.3-10.7 24-24 24s-24-10.7-24-24V184c0-13.3 10.7-24 24-24s24 10.7 24 24m112 0v144c0 13.3-10.7 24-24 24s-24-10.7-24-24V184c0-13.3 10.7-24 24-24s24 10.7 24 24"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/circle-play.svg�����������������0000664�0000000�0000000�00000001057�14753064456�0030531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 0-416 0 208 208 0 1 0 416 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m188.3-108.9c7.6-4.2 16.8-4.1 24.3.5l144 88c7.1 4.4 11.5 12.1 11.5 20.5s-4.4 16.1-11.5 20.5l-144 88c-7.4 4.5-16.7 4.7-24.3.5S176 352.9 176 344.2v-176c0-8.7 4.7-16.7 12.3-20.9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/circle-question.svg�������������0000664�0000000�0000000�00000001374�14753064456�0031435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 0-416 0 208 208 0 1 0 416 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m169.8-90.7c7.9-22.3 29.1-37.3 52.8-37.3h58.3c34.9 0 63.1 28.3 63.1 63.1 0 22.6-12.1 43.5-31.7 54.8L280 264.4c-.2 13-10.9 23.6-24 23.6-13.3 0-24-10.7-24-24v-13.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1 0-8.4-6.8-15.1-15.1-15.1h-58.3c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM224 352a32 32 0 1 1 64 0 32 32 0 1 1-64 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/circle-right.svg����������������0000664�0000000�0000000�00000001151�14753064456�0030674�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 1-416 0 208 208 0 1 1 416 0M0 256a256 256 0 1 0 512 0 256 256 0 1 0-512 0m294.6-104.8c-4.2-4.6-10.1-7.2-16.4-7.2-12.2 0-22.2 10-22.2 22.3V208h-96c-17.7 0-32 14.3-32 32v32c0 17.7 14.3 32 32 32h96v41.7c0 12.3 10 22.3 22.3 22.3 6.2 0 12.1-2.6 16.4-7.2l84-91c3.5-3.8 5.4-8.7 5.4-13.9s-1.9-10.1-5.4-13.9l-84-91z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/circle-stop.svg�����������������0000664�0000000�0000000�00000000754�14753064456�0030554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 0-416 0 208 208 0 1 0 416 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m192-96h128c17.7 0 32 14.3 32 32v128c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V192c0-17.7 14.3-32 32-32"/></svg>��������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/circle-up.svg�������������������0000664�0000000�0000000�00000001151�14753064456�0030203�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416m0 464a256 256 0 1 0 0-512 256 256 0 1 0 0 512M151.2 217.4c-4.6 4.2-7.2 10.1-7.2 16.4 0 12.3 10 22.3 22.3 22.3H208v96c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32v-96h41.7c12.3 0 22.3-10 22.3-22.3 0-6.2-2.6-12.1-7.2-16.4l-91-84c-3.8-3.5-8.7-5.4-13.9-5.4s-10.1 1.9-13.9 5.4l-91 84z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/circle-user.svg�����������������0000664�0000000�0000000�00000001315�14753064456�0030537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M406.5 399.6c-19.1-46.7-65-79.6-118.5-79.6h-64c-53.5 0-99.4 32.9-118.5 79.6C69.9 362.2 48 311.7 48 256c0-114.9 93.1-208 208-208s208 93.1 208 208c0 55.7-21.9 106.2-57.5 143.6m-40.1 32.7c-32 20.1-69.8 31.7-110.4 31.7s-78.4-11.6-110.5-31.7c7.3-36.7 39.7-64.3 78.5-64.3h64c38.8 0 71.2 27.6 78.5 64.3zM256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m0-272a40 40 0 1 1 0-80 40 40 0 1 1 0 80m-88-40a88 88 0 1 0 176 0 88 88 0 1 0-176 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/circle-xmark.svg����������������0000664�0000000�0000000�00000001145�14753064456�0030704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416m0 464a256 256 0 1 0 0-512 256 256 0 1 0 0 512m-81-337c-9.4 9.4-9.4 24.6 0 33.9l47 47-47 47c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l47-47 47 47c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-47-47 47-47c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-47 47-47-47c-9.4-9.4-24.6-9.4-33.9 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/circle.svg����������������������0000664�0000000�0000000�00000000600�14753064456�0027557�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 0-416 0 208 208 0 1 0 416 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/clipboard.svg�������������������0000664�0000000�0000000�00000001174�14753064456�0030264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M280 64h40c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128c0-35.3 28.7-64 64-64h49.6C121 27.5 153.3 0 192 0s71 27.5 78.4 64zM64 112c-8.8 0-16 7.2-16 16v320c0 8.8 7.2 16 16 16h256c8.8 0 16-7.2 16-16V128c0-8.8-7.2-16-16-16h-16v24c0 13.3-10.7 24-24 24H104c-13.3 0-24-10.7-24-24v-24zm128-8a24 24 0 1 0 0-48 24 24 0 1 0 0 48"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/clock.svg�����������������������0000664�0000000�0000000�00000001002�14753064456�0027406�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 1-416 0 208 208 0 1 1 416 0M0 256a256 256 0 1 0 512 0 256 256 0 1 0-512 0m232-136v136c0 8 4 15.5 10.7 20l96 64c11 7.4 25.9 4.4 33.3-6.7s4.4-25.9-6.7-33.3L280 243.2V120c0-13.3-10.7-24-24-24s-24 10.7-24 24"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/clone.svg�����������������������0000664�0000000�0000000�00000001224�14753064456�0027421�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 464h224c8.8 0 16-7.2 16-16v-64h48v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V224c0-35.3 28.7-64 64-64h64v48H64c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16m160-160h224c8.8 0 16-7.2 16-16V64c0-8.8-7.2-16-16-16H224c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16m-64-16V64c0-35.3 28.7-64 64-64h224c35.3 0 64 28.7 64 64v224c0 35.3-28.7 64-64 64H224c-35.3 0-64-28.7-64-64"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/closed-captioning.svg�����������0000664�0000000�0000000�00000001714�14753064456�0031727�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M512 80c8.8 0 16 7.2 16 16v320c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V96c0-8.8 7.2-16 16-16zM64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm136 176c14.2 0 27 6.1 35.8 16s24 10.7 33.9 1.9 10.7-24 1.9-33.9c-17.5-19.6-43.1-32-71.5-32-53 0-96 43-96 96s43 96 96 96c28.4 0 54-12.4 71.5-32 8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-8.8 9.9-21.6 16-35.8 16-26.5 0-48-21.5-48-48s21.5-48 48-48m144 48c0-26.5 21.5-48 48-48 14.2 0 27 6.1 35.8 16s24 10.7 33.9 1.9 10.7-24 1.9-33.9c-17.5-19.6-43.1-32-71.5-32-53 0-96 43-96 96s43 96 96 96c28.4 0 54-12.4 71.5-32 8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-8.8 9.9-21.6 16-35.8 16-26.5 0-48-21.5-48-48"/></svg>����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/comment-dots.svg����������������0000664�0000000�0000000�00000001776�14753064456�0030746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M168.2 384.9c-15-5.4-31.7-3.1-44.6 6.4-8.2 6-22.3 14.8-39.4 22.7 5.6-14.7 9.9-31.3 11.3-49.4 1-12.9-3.3-25.7-11.8-35.5C60.4 302.8 48 272 48 240c0-79.5 83.3-160 208-160s208 80.5 208 160-83.3 160-208 160c-31.6 0-61.3-5.5-87.8-15.1M26.3 423.8q-2.4 4.05-5.1 8.1l-.3.5-4.8 6.9c-3.5 4.7-7.3 9.3-11.3 13.5-4.6 4.6-5.9 11.4-3.4 17.4s8.3 9.9 14.8 9.9c5.1 0 10.2-.3 15.3-.8l.7-.1c4.4-.5 8.8-1.1 13.2-1.9.8-.1 1.6-.3 2.4-.5 17.8-3.5 34.9-9.5 50.1-16.1 22.9-10 42.4-21.9 54.3-30.6 31.8 11.5 67 17.9 104.1 17.9 141.4 0 256-93.1 256-208S397.4 32 256 32 0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9-1.9 24.5-11.4 46.3-21.4 62.9M144 272a32 32 0 1 0 0-64 32 32 0 1 0 0 64m144-32a32 32 0 1 0-64 0 32 32 0 1 0 64 0m80 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64"/></svg>��mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/comment.svg���������������������0000664�0000000�0000000�00000001627�14753064456�0027772�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M123.6 391.3c12.9-9.4 29.6-11.8 44.6-6.4 26.5 9.6 56.2 15.1 87.8 15.1 124.7 0 208-80.5 208-160S380.7 80 256 80 48 160.5 48 240c0 32 12.4 62.8 35.7 89.2 8.6 9.7 12.8 22.5 11.8 35.5-1.4 18.1-5.7 34.7-11.3 49.4 17-7.9 31.1-16.7 39.4-22.7zM21.2 431.9q2.7-4.05 5.1-8.1c10-16.6 19.5-38.4 21.4-62.9C17.7 326.8 0 285.1 0 240 0 125.1 114.6 32 256 32s256 93.1 256 208-114.6 208-256 208c-37.1 0-72.3-6.4-104.1-17.9-11.9 8.7-31.3 20.6-54.3 30.6-15.1 6.6-32.3 12.6-50.1 16.1-.8.2-1.6.3-2.4.5-4.4.8-8.7 1.5-13.2 1.9-.2 0-.5.1-.7.1-5.1.5-10.2.8-15.3.8-6.5 0-12.3-3.9-14.8-9.9S0 457.4 4.5 452.8c4.1-4.2 7.8-8.7 11.3-13.5q2.55-3.45 4.8-6.9l.3-.5z"/></svg>���������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/comments.svg��������������������0000664�0000000�0000000�00000002547�14753064456�0030157�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M88.2 309.1c9.8-18.3 6.8-40.8-7.5-55.8C59.4 230.9 48 204 48 176c0-63.5 63.8-128 160-128s160 64.5 160 128-63.8 128-160 128c-13.1 0-25.8-1.3-37.8-3.6-10.4-2-21.2-.6-30.7 4.2q-6.15 3.15-12.6 6c-16 7.2-32.9 13.5-49.9 18 2.8-4.6 5.4-9.1 7.9-13.6 1.1-1.9 2.2-3.9 3.2-5.9zM208 352c114.9 0 208-78.8 208-176S322.9 0 208 0 0 78.8 0 176c0 41.8 17.2 80.1 45.9 110.3-.9 1.7-1.9 3.5-2.8 5.1-10.3 18.4-22.3 36.5-36.6 52.1-6.6 7-8.3 17.2-4.6 25.9C5.8 378.3 14.4 384 24 384c43 0 86.5-13.3 122.7-29.7 4.8-2.2 9.6-4.5 14.2-6.8 15.1 3 30.9 4.5 47.1 4.5m224 128c16.2 0 31.9-1.6 47.1-4.5 4.6 2.3 9.4 4.6 14.2 6.8C529.5 498.7 573 512 616 512c9.6 0 18.2-5.7 22-14.5s2-19-4.6-25.9c-14.2-15.6-26.2-33.7-36.6-52.1-.9-1.7-1.9-3.4-2.8-5.1 28.8-30.3 46-68.6 46-110.4 0-94.4-87.9-171.5-198.2-175.8 4.1 15.2 6.2 31.2 6.2 47.8v.6c87.2 6.7 144 67.5 144 127.4 0 28-11.4 54.9-32.7 77.2-14.3 15-17.3 37.6-7.5 55.8 1.1 2 2.2 4 3.2 5.9 2.5 4.5 5.2 9 7.9 13.6-17-4.5-33.9-10.7-49.9-18q-6.45-2.85-12.6-6c-9.5-4.8-20.3-6.2-30.7-4.2-12.1 2.4-24.8 3.6-37.8 3.6-61.7 0-110-26.5-136.8-62.3-16 5.4-32.8 9.4-50 11.8C279 439.8 350 480 432 480"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/compass.svg���������������������0000664�0000000�0000000�00000001114�14753064456�0027764�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 0-416 0 208 208 0 1 0 416 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m306.7 69.1-144.3 55.5c-19.4 7.5-38.5-11.6-31-31l55.5-144.3c3.3-8.5 9.9-15.1 18.4-18.4l144.3-55.5c19.4-7.5 38.5 11.6 31 31l-55.5 144.3c-3.2 8.5-9.9 15.1-18.4 18.4M288 256a32 32 0 1 0-64 0 32 32 0 1 0 64 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/copy.svg������������������������0000664�0000000�0000000�00000001272�14753064456�0027276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 336H192c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h140.1l67.9 67.9V320c0 8.8-7.2 16-16 16m-192 48h192c35.3 0 64-28.7 64-64V115.9c0-12.7-5.1-24.9-14.1-33.9l-67.8-67.9c-9-9-21.2-14.1-33.9-14.1H192c-35.3 0-64 28.7-64 64v256c0 35.3 28.7 64 64 64M64 128c-35.3 0-64 28.7-64 64v256c0 35.3 28.7 64 64 64h192c35.3 0 64-28.7 64-64v-32h-48v32c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192c0-8.8 7.2-16 16-16h32v-48z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/copyright.svg�������������������0000664�0000000�0000000�00000001130�14753064456�0030325�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416m0 464a256 256 0 1 0 0-512 256 256 0 1 0 0 512m-56.6-199.4c-31.2-31.2-31.2-81.9 0-113.1s81.9-31.2 113.1 0c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9c-50-50-131-50-181 0s-50 131 0 181 131 50 181 0c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0c-31.2 31.2-81.9 31.2-113.1 0z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/credit-card.svg�����������������0000664�0000000�0000000�00000001236�14753064456�0030505�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M512 80c8.8 0 16 7.2 16 16v32H48V96c0-8.8 7.2-16 16-16zm16 144v192c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V224zM64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm56 304c-13.3 0-24 10.7-24 24s10.7 24 24 24h48c13.3 0 24-10.7 24-24s-10.7-24-24-24zm128 0c-13.3 0-24 10.7-24 24s10.7 24 24 24h112c13.3 0 24-10.7 24-24s-10.7-24-24-24z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/envelope-open.svg���������������0000664�0000000�0000000�00000001316�14753064456�0031077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M255.4 48.2c.2-.1.4-.2.6-.2s.4.1.6.2l204 145.8c2.1 1.5 3.4 3.9 3.4 6.5v13.6L291.5 355.7c-20.7 17-50.4 17-71.1 0L48 214.1v-13.6c0-2.6 1.2-5 3.4-6.5zM48 276.2l142 116.6c38.4 31.5 93.7 31.5 132 0l142-116.6V456c0 4.4-3.6 8-8 8H56c-4.4 0-8-3.6-8-8zM256 0c-10.2 0-20.2 3.2-28.5 9.1l-204 145.8C8.7 165.4 0 182.4 0 200.5V456c0 30.9 25.1 56 56 56h400c30.9 0 56-25.1 56-56V200.5c0-18.1-8.7-35.1-23.4-45.6L284.5 9.1C276.2 3.2 266.2 0 256 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/envelope.svg��������������������0000664�0000000�0000000�00000001121�14753064456�0030132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 112c-8.8 0-16 7.2-16 16v22.1l172.5 141.6c20.7 17 50.4 17 71.1 0L464 150.1V128c0-8.8-7.2-16-16-16zM48 212.2V384c0 8.8 7.2 16 16 16h384c8.8 0 16-7.2 16-16V212.2L322 328.8c-38.4 31.5-93.7 31.5-132 0zM0 128c0-35.3 28.7-64 64-64h384c35.3 0 64 28.7 64 64v256c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/eye-slash.svg�������������������0000664�0000000�0000000�00000002407�14753064456�0030217�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2s-6.3 25.5 4.1 33.7l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-105.2-82.4c39.6-40.6 66.4-86.1 79.9-118.4 3.3-7.9 3.3-16.7 0-24.6-14.9-35.7-46.2-87.7-93-131.1C465.5 68.8 400.8 32 320 32c-68.2 0-125 26.3-169.3 60.8zm151 118.3C226 97.7 269.5 80 320 80c65.2 0 118.8 29.6 159.9 67.7C518.4 183.5 545 226 558.6 256c-12.6 28-36.6 66.8-70.9 100.9l-53.8-42.2c9.1-17.6 14.2-37.5 14.2-58.7 0-70.7-57.3-128-128-128-32.2 0-61.7 11.9-84.2 31.5zm205.1 160.8-81.5-63.9c4.2-8.5 6.6-18.2 6.6-28.3 0-5.5-.7-10.9-2-16h2c44.2 0 80 35.8 80 80 0 9.9-1.8 19.4-5.1 28.2m9.4 130.3C378.8 425.4 350.7 432 320 432c-65.2 0-118.8-29.6-159.9-67.7C121.6 328.5 95 286 81.4 256c8.3-18.4 21.5-41.5 39.4-64.8l-37.7-29.7c-22.8 29.7-39.1 59.3-48.6 82.2-3.3 7.9-3.3 16.7 0 24.6 14.9 35.7 46.2 87.7 93 131.1 47 43.8 111.7 80.6 192.5 80.6 47.8 0 89.9-12.9 126.2-32.5zM192 256c0 70.7 57.3 128 128 128 13.3 0 26.1-2 38.2-5.8L302 334c-23.5-5.4-43.1-21.2-53.7-42.3l-56.1-44.2c-.2 2.8-.3 5.6-.3 8.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/eye.svg�������������������������0000664�0000000�0000000�00000001716�14753064456�0027111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 80c-65.2 0-118.8 29.6-159.9 67.7C89.6 183.5 63 226 49.4 256 63 286 89.6 328.5 128 364.3c41.2 38.1 94.8 67.7 160 67.7s118.8-29.6 159.9-67.7C486.4 328.5 513 286 526.6 256c-13.6-30-40.2-72.5-78.6-108.3C406.8 109.6 353.2 80 288 80M95.4 112.6C142.5 68.8 207.2 32 288 32s145.5 36.8 192.6 80.6c46.8 43.5 78.1 95.4 93 131.1 3.3 7.9 3.3 16.7 0 24.6-14.9 35.7-46.2 87.7-93 131.1C433.5 443.2 368.8 480 288 480s-145.5-36.8-192.6-80.6C48.6 356 17.3 304 2.5 268.3c-3.3-7.9-3.3-16.7 0-24.6C17.3 208 48.6 156 95.4 112.6M288 336c44.2 0 80-35.8 80-80s-35.8-80-80-80h-2c1.3 5.1 2 10.5 2 16 0 35.3-28.7 64-64 64-5.5 0-10.9-.7-16-2v2c0 44.2 35.8 80 80 80m0-208a128 128 0 1 1 0 256 128 128 0 1 1 0-256"/></svg>��������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-angry.svg������������������0000664�0000000�0000000�00000001761�14753064456�0030343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416m0 464a256 256 0 1 0 0-512 256 256 0 1 0 0 512m72.4-118.5c9.7-9 10.2-24.2 1.2-33.9-14.3-15.3-39-31.6-73.6-31.6s-59.3 16.3-73.5 31.6c-9 9.7-8.5 24.9 1.2 33.9s24.9 8.5 33.9-1.2c7.4-7.9 20-16.4 38.5-16.4s31.1 8.5 38.5 16.4c9 9.7 24.2 10.2 33.9 1.2zM176.4 272c17.7 0 32-14.3 32-32 0-1.5-.1-3-.3-4.4l10.9 3.6c8.4 2.8 17.4-1.7 20.2-10.1s-1.7-17.4-10.1-20.2l-96-32c-8.4-2.8-17.4 1.7-20.2 10.1s1.7 17.4 10.1 20.2l30.7 10.2c-5.8 5.8-9.3 13.8-9.3 22.6 0 17.7 14.3 32 32 32m192-32c0-8.9-3.6-17-9.5-22.8l30.2-10.1c8.4-2.8 12.9-11.9 10.1-20.2S387.3 174 379 176.8l-96 32c-8.4 2.8-12.9 11.9-10.1 20.2s11.9 12.9 20.2 10.1l11.7-3.9c-.2 1.5-.3 3.1-.3 4.7 0 17.7 14.3 32 32 32s32-14.3 32-32z"/></svg>���������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-dizzy.svg������������������0000664�0000000�0000000�00000001565�14753064456�0030376�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 0-416 0 208 208 0 1 0 416 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m256 32a64 64 0 1 1 0 128 64 64 0 1 1 0-128M103 135c9.4-9.4 24.6-9.4 33.9 0l23 23 23-23c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-23 23 23 23c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-23-23-23 23c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l23-23-23-23c-9.4-9.4-9.4-24.6 0-33.9m192 0c9.4-9.4 24.6-9.4 33.9 0l23 23 23-23c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-23 23 23 23c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-23-23-23 23c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l23-23-23-23c-9.4-9.4-9.4-24.6 0-33.9"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-flushed.svg����������������0000664�0000000�0000000�00000001321�14753064456�0030645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 1-416 0 208 208 0 1 1 416 0M256 0a256 256 0 1 0 0 512 256 256 0 1 0 0-512m-95.6 248a24 24 0 1 0 0-48 24 24 0 1 0 0 48m216-24a24 24 0 1 0-48 0 24 24 0 1 0 48 0M192 336c-13.3 0-24 10.7-24 24s10.7 24 24 24h128c13.3 0 24-10.7 24-24s-10.7-24-24-24zm-32-160a48 48 0 1 1 0 96 48 48 0 1 1 0-96m0 128a80 80 0 1 0 0-160 80 80 0 1 0 0 160m144-80a48 48 0 1 1 96 0 48 48 0 1 1-96 0m128 0a80 80 0 1 0-160 0 80 80 0 1 0 160 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-frown-open.svg�������������0000664�0000000�0000000�00000001173�14753064456�0031312�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 0-416 0 208 208 0 1 0 416 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m182.4 126.5c-12.4 5.2-26.5-4.1-21.1-16.4 16-36.6 52.4-62.1 94.8-62.1s78.8 25.6 94.8 62.1c5.4 12.3-8.7 21.6-21.1 16.4-22.4-9.5-47.4-14.8-73.7-14.8s-51.3 5.3-73.7 14.8m-38-174.5a32 32 0 1 1 64 0 32 32 0 1 1-64 0m192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-frown.svg������������������0000664�0000000�0000000�00000001247�14753064456�0030355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 0-416 0 208 208 0 1 0 416 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m174.6 128.1c-4.5 12.5-18.2 18.9-30.7 14.4s-18.9-18.2-14.4-30.7C146.9 319.4 198.9 288 256 288s109.1 31.4 126.6 79.9c4.5 12.5-2 26.2-14.4 30.7s-26.2-2-30.7-14.4c-9.3-25.7-40.3-48.2-81.5-48.2s-72.2 22.5-81.4 48.1M144.4 208a32 32 0 1 1 64 0 32 32 0 1 1-64 0m192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-grimace.svg����������������0000664�0000000�0000000�00000001262�14753064456�0030626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 48a208 208 0 1 0 0 416 208 208 0 1 0 0-416m256 208a256 256 0 1 1-512 0 256 256 0 1 1 512 0m-344 64c-13.3 0-24 10.7-24 24s10.7 24 24 24h8v-48zm40 48h32v-48h-32zm96 0v-48h-32v48zm32 0h8c13.3 0 24-10.7 24-24s-10.7-24-24-24h-8zm-168-80h176c30.9 0 56 25.1 56 56s-25.1 56-56 56H168c-30.9 0-56-25.1-56-56s25.1-56 56-56m-23.6-80a32 32 0 1 1 64 0 32 32 0 1 1-64 0m192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-grin-beam-sweat.svg��������0000664�0000000�0000000�00000003261�14753064456�0032202�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M476.8 126.3c20.3-5.5 35.2-23.6 35.2-45.3 0-20-28.6-60.4-41.6-77.7-3.2-4.4-9.6-4.4-12.8 0-9.5 12.6-27.1 37.2-36 57.5l-.9 2.1C417.8 69.7 416 76 416 81c0 26 21.5 47 48 47 4.4 0 8.7-.6 12.8-1.7m-81.4-85.1C355.3 15.2 307.4 0 256 0 114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256c0-35.8-7.3-69.9-20.6-100.8-8.6 3.1-17.8 4.8-27.4 4.8-8.9 0-17.6-1.5-25.7-4.2C454.7 185.5 464 219.7 464 256c0 114.9-93.1 208-208 208S48 370.9 48 256 141.1 48 256 48c48.7 0 93.4 16.7 128.9 44.7Q384 87 384 81c0-11.4 3.8-22.4 7.1-30.5 1.3-3.1 2.7-6.2 4.3-9.3M375 336.5c10.4-16.1-6.8-32.5-25.5-28.1-28.9 6.8-60.5 10.5-93.6 10.5s-64.7-3.7-93.6-10.5c-18.7-4.4-35.9 12-25.5 28.1 24.6 38.1 68.7 63.5 119.1 63.5s94.5-25.4 119.1-63.5M217.6 228.8c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2c-9.9 13.2-16.6 30.9-16.6 48.8 0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l.2-.2c.2-.2.4-.5.7-.9.6-.8 1.6-2 2.8-3.4 2.5-2.8 6-6.6 10.2-10.3 8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3 1.2 1.4 2.2 2.6 2.8 3.4.3.4.6.7.7.9zm160 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2c-9.9 13.2-16.6 30.9-16.6 48.8 0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l.2-.2c.2-.2.4-.5.7-.9.6-.8 1.6-2 2.8-3.4 2.5-2.8 6-6.6 10.2-10.3 8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3 1.2 1.4 2.2 2.6 2.8 3.4.3.4.6.7.7.9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-grin-beam.svg��������������0000664�0000000�0000000�00000002423�14753064456�0031060�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 0-416 0 208 208 0 1 0 416 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m349.5 52.4c18.7-4.4 35.9 12 25.5 28.1-24.6 38.1-68.7 63.5-119.1 63.5s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1 28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5m-131.9-79.6-.2-.2c-.2-.2-.4-.5-.7-.9-.6-.8-1.6-2-2.8-3.4-2.5-2.8-6-6.6-10.2-10.3-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3-1.2 1.4-2.2 2.6-2.8 3.4-.3.4-.6.7-.7.9l-.2.2c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8 9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8 0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8m160 0-.2-.2c-.2-.2-.4-.5-.7-.9-.6-.8-1.6-2-2.8-3.4-2.5-2.8-6-6.6-10.2-10.3-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3-1.2 1.4-2.2 2.6-2.8 3.4-.3.4-.6.7-.7.9l-.2.2c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8 9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8 0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-grin-hearts.svg������������0000664�0000000�0000000�00000001623�14753064456�0031443�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 0-416 0 208 208 0 1 0 416 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m349.5 52.4c18.7-4.4 35.9 12 25.5 28.1-24.6 38.1-68.7 63.5-119.1 63.5s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1 28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5M215.3 137.1c17.8 4.8 28.4 23.1 23.6 40.8l-17.4 65c-2.3 8.5-11.1 13.6-19.6 11.3l-65.1-17.4c-17.8-4.8-28.4-23.1-23.6-40.8s23.1-28.4 40.8-23.6l16.1 4.3 4.3-16.1c4.8-17.8 23.1-28.4 40.8-23.6zm122.3 23.6 4.3 16.1 16.1-4.3c17.8-4.8 36.1 5.8 40.8 23.6s-5.8 36.1-23.6 40.8l-65.1 17.4c-8.5 2.3-17.3-2.8-19.6-11.3l-17.4-65c-4.8-17.8 5.8-36.1 23.6-40.8s36.1 5.8 40.9 23.6z"/></svg>�������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-grin-squint-tears.svg������0000664�0000000�0000000�00000002746�14753064456�0032623�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M426.8 14.2c19.2-19.2 50.7-18.8 70.3.7s20 51 .7 70.3c-14.8 14.8-65.7 23.6-88.3 26.7-5.6.9-10.3-3.9-9.5-9.5 3.3-22.5 12-73.4 26.8-88.2M75 75c83.2-83.3 209.5-97.2 307.2-41.8-1.5 4.8-2.9 9.6-4.1 14.3-3.1 12.2-5.5 24.6-7.3 35-80.8-53.6-190.7-44.8-261.9 26.4S28.9 290 82.5 370.8c-10.5 1.8-22.9 4.2-35 7.3-4.7 1.2-9.5 2.5-14.3 4.1C-22.2 284.5-8.2 158.2 75 75m389.6 58.9c4.7-1.2 9.5-2.5 14.3-4.1 55.3 97.7 41.3 224-41.9 307.2s-209.5 97.2-307.2 41.8c1.5-4.8 2.8-9.6 4-14.3 3.1-12.2 5.5-24.6 7.3-35 80.8 53.6 190.7 44.8 261.9-26.4s80-181.1 26.4-261.9c10.5-1.8 22.9-4.2 35-7.3zm-105.4 93c10.1-16.3 33.9-16.9 37.9 1.9 9.5 44.4-3.7 93.5-39.3 129.1s-84.8 48.8-129.1 39.3c-18.7-4-18.2-27.8-1.9-37.9 25.2-15.7 50.2-35.4 73.6-58.8s43.1-48.4 58.8-73.6M92 265.3l97.4-29.7c11.6-3.5 22.5 7.3 19 19L178.7 352c-2.6 8.6-13.4 11.3-19.8 4.9-2-2-3.2-4.6-3.4-7.3l-5.1-56.1-56.1-5.1c-2.8-.3-5.4-1.5-7.3-3.4-6.3-6.3-3.6-17.2 4.9-19.8zM285 87.1c2 2 3.2 4.6 3.4 7.3l5.1 56.1 56.1 5.1c2.8.3 5.4 1.5 7.3 3.4 6.3 6.3 3.6 17.2-4.9 19.8l-97.4 29.7c-11.6 3.5-22.5-7.3-19-19L265.3 92c2.6-8.6 13.4-11.3 19.8-4.9zm-270.1 410c-19.6-19.6-20-51-.7-70.3 14.8-14.8 65.6-23.6 88.2-26.7 5.6-.9 10.3 3.9 9.5 9.5-3.2 22.5-11.9 73.5-26.7 88.3-19.2 19.1-50.7 18.7-70.3-.8"/></svg>��������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-grin-squint.svg������������0000664�0000000�0000000�00000001574�14753064456�0031505�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 0-416 0 208 208 0 1 0 416 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m349.5 52.4c18.7-4.4 35.9 12 25.5 28.1-24.6 38.1-68.7 63.5-119.1 63.5s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1 28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5m-216-161.7 89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5 0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6 0-9 9.6-14.7 17.5-10.5M396 157.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6 0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-grin-stars.svg�������������0000664�0000000�0000000�00000002120�14753064456�0031302�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416m0 464a256 256 0 1 0 0-512 256 256 0 1 0 0 512m-72.8-379.4a7.934 7.934 0 0 0-14.4 0l-16.6 34.7-38.1 5c-3.1.4-5.6 2.5-6.6 5.5s-.1 6.2 2.1 8.3l27.9 26.5-7 37.8c-.6 3 .7 6.1 3.2 7.9s5.8 2 8.5.6l33.8-18.4 33.8 18.3c2.7 1.5 6 1.3 8.5-.6s3.7-4.9 3.2-7.9l-7-37.8 27.9-26.5c2.2-2.1 3.1-5.3 2.1-8.3s-3.5-5.1-6.6-5.5l-38.1-5-16.6-34.7zm160 0a7.934 7.934 0 0 0-14.4 0l-16.6 34.7-38.1 5c-3.1.4-5.6 2.5-6.6 5.5s-.1 6.2 2.1 8.3l27.9 26.5-7 37.8c-.6 3 .7 6.1 3.2 7.9s5.8 2 8.5.6l33.8-18.4 33.8 18.3c2.7 1.5 6 1.3 8.5-.6s3.7-4.9 3.2-7.9l-7-37.8 27.9-26.5c2.2-2.1 3.1-5.3 2.1-8.3s-3.5-5.1-6.6-5.5l-38.1-5-16.6-34.7zm6.3 175.8c-28.9 6.8-60.5 10.5-93.6 10.5s-64.7-3.7-93.6-10.5c-18.7-4.4-35.9 12-25.5 28.1 24.6 38.1 68.7 63.5 119.1 63.5s94.5-25.4 119.1-63.5c10.4-16.1-6.8-32.5-25.5-28.1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-grin-tears.svg�������������0000664�0000000�0000000�00000004055�14753064456�0031275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M516.1 325.5c1 3 2.1 6 3.3 8.9 3.3 8.1 8.4 18.5 16.5 26.6 3.9 3.9 8.2 7.4 12.7 10.3C506.4 454.8 419.9 512 320 512S133.6 454.8 91.4 371.4c4.5-2.9 8.7-6.3 12.7-10.3 8.1-8.1 13.2-18.6 16.5-26.6 1.2-2.9 2.3-5.9 3.3-8.9C152.5 406.2 229.5 464 320 464s167.5-57.8 196.1-138.5M320 48c-101.4 0-185.8 72.5-204.3 168.5-6.7-3.1-14.3-4.3-22.3-3.1-6.8.9-16.2 2.4-26.6 4.4C85.3 94.5 191.6 0 320 0s234.7 94.5 253.2 217.7c-10.3-2-19.8-3.5-26.6-4.4-8-1.2-15.7.1-22.3 3.1C505.8 120.5 421.4 48 320 48M78.5 341.1C60 356.7 32 355.5 14.3 337.7c-18.7-18.7-19.1-48.8-.7-67.2 8.6-8.6 30.1-15.1 50.5-19.6 13-2.8 25.5-4.8 33.9-6 5.4-.8 9.9 3.7 9 9-3.1 21.5-11.4 70.2-25.5 84.4-.9 1-1.9 1.8-2.9 2.7zm483 0c-.8-.6-1.5-1.3-2.3-2-.2-.2-.5-.4-.7-.7-14.1-14.1-22.5-62.9-25.5-84.4-.8-5.4 3.7-9.9 9-9 1 .1 2.2.3 3.3.5 8.2 1.2 19.2 3 30.6 5.5 20.4 4.4 41.9 10.9 50.5 19.6 18.4 18.4 18 48.5-.7 67.2-17.7 17.7-45.7 19-64.2 3.4zM439 336.5c-24.6 38.1-68.7 63.5-119.1 63.5s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1 28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5c18.7-4.4 35.9 12 25.5 28.1M281.6 228.8l-.2-.2c-.2-.2-.4-.5-.7-.9-.6-.8-1.6-2-2.8-3.4-2.5-2.8-6-6.6-10.2-10.3-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3-1.2 1.4-2.2 2.6-2.8 3.4-.3.4-.6.7-.7.9l-.2.2c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8 9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8 0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8m160 0-.2-.2c-.2-.2-.4-.5-.7-.9-.6-.8-1.6-2-2.8-3.4-2.5-2.8-6-6.6-10.2-10.3-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3-1.2 1.4-2.2 2.6-2.8 3.4-.3.4-.6.7-.7.9l-.2.2c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8 9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8 0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-grin-tongue-squint.svg�����0000664�0000000�0000000�00000002234�14753064456�0032776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256c0-114.9-93.1-208-208-208S48 141.1 48 256c0 81.7 47.1 152.4 115.7 186.4-2.4-8.4-3.7-17.3-3.7-26.4v-23.3c-24-17.5-43.1-41.4-54.8-69.2-5-11.8 7-22.5 19.3-18.7 39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19c12.3-3.8 24.3 6.9 19.3 18.7-11.8 28-31.1 52-55.4 69.6V416c0 9.2-1.3 18-3.7 26.4C416.9 408.4 464 337.7 464 256M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m116-98.9c0-9 9.6-14.7 17.5-10.5l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5 0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6m262.5-10.5c7.9-4.2 17.5 1.5 17.5 10.5 0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6 0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8zM320 416v-37.4c0-14.7-11.9-26.6-26.6-26.6h-2c-11.3 0-21.1 7.9-23.6 18.9-2.8 12.6-20.8 12.6-23.6 0-2.5-11.1-12.3-18.9-23.6-18.9h-2c-14.7 0-26.6 11.9-26.6 26.6V416c0 35.3 28.7 64 64 64s64-28.7 64-64"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-grin-tongue-wink.svg�������0000664�0000000�0000000�00000002223�14753064456�0032421�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M348.3 442.4c2.4-8.4 3.7-17.3 3.7-26.4v-52.5c8.8-8 16.6-17.1 23-27 10.4-16.1-6.8-32.5-25.5-28.1-28.9 6.8-60.5 10.5-93.6 10.5s-64.7-3.7-93.6-10.5c-18.7-4.4-35.9 12-25.5 28.1 6.5 10 14.3 19.1 23.1 27.1V416c0 9.2 1.3 18 3.7 26.4C95.1 408.4 48 337.7 48 256c0-114.9 93.1-208 208-208s208 93.1 208 208c0 81.7-47.1 152.4-115.7 186.4M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m-96.4-292c10.6 0 19.9 3.8 25.4 9.7 7.6 8.1 20.2 8.5 28.3.9s8.5-20.2.9-28.3C199.7 186.8 179 180 159.6 180s-40.1 6.8-54.6 22.3c-7.6 8.1-7.1 20.7.9 28.3s20.7 7.1 28.3-.9c5.5-5.8 14.8-9.7 25.4-9.7m176.7 12a24 24 0 1 0 0-48 24 24 0 1 0 0 48m-.4-72a48 48 0 1 1 0 96 48 48 0 1 1 0-96m0 128a80 80 0 1 0 0-160 80 80 0 1 0 0 160M320 416c0 35.3-28.7 64-64 64s-64-28.7-64-64v-37.4c0-14.7 11.9-26.6 26.6-26.6h2c11.3 0 21.1 7.9 23.6 18.9 2.8 12.6 20.8 12.6 23.6 0 2.5-11.1 12.3-18.9 23.6-18.9h2c14.7 0 26.6 11.9 26.6 26.6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-grin-tongue.svg������������0000664�0000000�0000000�00000001650�14753064456�0031456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256c0-114.9-93.1-208-208-208S48 141.1 48 256c0 81.7 47.1 152.4 115.7 186.4-2.4-8.4-3.7-17.3-3.7-26.4v-52.4c-8.9-8-16.7-17.1-23.1-27.1-10.4-16.1 6.8-32.5 25.5-28.1 28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5c18.7-4.4 35.9 12 25.5 28.1-6.4 9.9-14.2 19-23 27V416c0 9.2-1.3 18-3.7 26.4C416.9 408.4 464 337.7 464 256M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m176.4-80a32 32 0 1 1 0 64 32 32 0 1 1 0-64m128 32a32 32 0 1 1 64 0 32 32 0 1 1-64 0M320 416v-37.4c0-14.7-11.9-26.6-26.6-26.6h-2c-11.3 0-21.1 7.9-23.6 18.9-2.8 12.6-20.8 12.6-23.6 0-2.5-11.1-12.3-18.9-23.6-18.9h-2c-14.7 0-26.6 11.9-26.6 26.6V416c0 35.3 28.7 64 64 64s64-28.7 64-64"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-grin-wide.svg��������������0000664�0000000�0000000�00000001267�14753064456�0031111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 0-416 0 208 208 0 1 0 416 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m349.5 52.4c18.7-4.4 35.9 12 25.5 28.1-24.6 38.1-68.7 63.5-119.1 63.5s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1 28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5M224 192c0 35.3-14.3 64-32 64s-32-28.7-32-64 14.3-64 32-64 32 28.7 32 64m96 64c-17.7 0-32-28.7-32-64s14.3-64 32-64 32 28.7 32 64-14.3 64-32 64"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-grin-wink.svg��������������0000664�0000000�0000000�00000001425�14753064456�0031125�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 0-416 0 208 208 0 1 0 416 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m349.5 52.4c18.7-4.4 35.9 12 25.5 28.1-24.6 38.1-68.7 63.5-119.1 63.5s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1 28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5M144.4 208a32 32 0 1 1 64 0 32 32 0 1 1-64 0m165.8 21.7c-7.6 8.1-20.2 8.5-28.3.9s-8.5-20.2-.9-28.3c14.5-15.5 35.2-22.3 54.6-22.3s40.1 6.8 54.6 22.3c7.6 8.1 7.1 20.7-.9 28.3s-20.7 7.1-28.3-.9c-5.5-5.8-14.8-9.7-25.4-9.7s-19.9 3.8-25.4 9.7"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-grin.svg�������������������0000664�0000000�0000000�00000001176�14753064456�0030162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 0-416 0 208 208 0 1 0 416 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m349.5 52.4c18.7-4.4 35.9 12 25.5 28.1-24.6 38.1-68.7 63.5-119.1 63.5s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1 28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5M144.4 208a32 32 0 1 1 64 0 32 32 0 1 1-64 0m192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-kiss-beam.svg��������������0000664�0000000�0000000�00000003675�14753064456�0031104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 0-416 0 208 208 0 1 0 416 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m304.7 41.7c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4-2.7 1.5-5.7 3-8.7 4.3 3.1 1.3 6 2.7 8.7 4.3 6.6 3.7 12.5 8.2 16.7 13.4 4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4-13.3 7.4-30.6 12.3-48 12.3-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l.2-.1c.2-.1.5-.3.9-.5.8-.5 2-1.2 3.4-2.1 2.8-1.9 6.5-4.5 10.2-7.6s7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1-3.7-3.1-7.4-5.7-10.2-7.6-1.4-.9-2.6-1.6-3.4-2.1-.4-.2-.7-.4-.9-.5l-.2-.1c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l.2-.1c.2-.1.5-.3.9-.5.8-.5 2-1.2 3.4-2.1 2.8-1.9 6.5-4.5 10.2-7.6s7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1-3.7-3.1-7.4-5.7-10.2-7.6-1.4-.9-2.6-1.6-3.4-2.1-.4-.2-.7-.4-.9-.5l-.2-.1c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3 6.6 3.7 12.5 8.2 16.7 13.4zm-87.1-68.9-.2-.2c-.2-.2-.4-.5-.7-.9-.6-.8-1.6-2-2.8-3.4-2.5-2.8-6-6.6-10.2-10.3-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3-1.2 1.4-2.2 2.6-2.8 3.4-.3.4-.6.7-.7.9l-.2.2c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8 9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8 0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8m160 0-.2-.2c-.2-.2-.4-.5-.7-.9-.6-.8-1.6-2-2.8-3.4-2.5-2.8-6-6.6-10.2-10.3-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3-1.2 1.4-2.2 2.6-2.8 3.4-.3.4-.6.7-.7.9l-.2.2c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8 9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8 0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-kiss-wink-heart.svg��������0000664�0000000�0000000�00000003471�14753064456�0032243�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M338.9 446.8c-25.4 11-53.4 17.2-82.9 17.2-114.9 0-208-93.1-208-208S141.1 48 256 48s208 93.1 208 208c0 22.4-3.5 43.9-10.1 64.1 3.1 4.5 5.7 9.4 7.8 14.6 12.7-1.6 25.1.4 36.2 5 9.1-26.2 14-54.4 14-83.7C512 114.6 397.4 0 256 0S0 114.6 0 256s114.6 256 256 256c35.4 0 69.1-7.2 99.7-20.2-4.8-5.5-8.5-12.2-10.4-19.7l-6.5-25.3zM296 316c0-6.9-3.1-13.2-7.3-18.3-4.3-5.2-10.1-9.7-16.7-13.4-13.3-7.4-30.6-12.3-48-12.3-3.6 0-6.8 2.5-7.7 6s.6 7.2 3.8 9l.2.1c.2.1.5.3.9.5.8.5 2 1.2 3.4 2.1 2.8 1.9 6.5 4.5 10.2 7.6s7.2 6.6 9.6 10.1c2.5 3.5 3.5 6.4 3.5 8.6s-1 5-3.5 8.6c-2.5 3.5-5.9 6.9-9.6 10.1-3.7 3.1-7.4 5.7-10.2 7.6-1.4.9-2.6 1.6-3.4 2.1-.4.2-.7.4-.9.5l-.2.1c-2.5 1.4-4.1 4.1-4.1 7s1.6 5.6 4.1 7l.2.1c.2.1.5.3.9.5.8.5 2 1.2 3.4 2.1 2.8 1.9 6.5 4.5 10.2 7.6s7.2 6.6 9.6 10.1c2.5 3.5 3.5 6.4 3.5 8.6s-1 5-3.5 8.6c-2.5 3.5-5.9 6.9-9.6 10.1-3.7 3.1-7.4 5.7-10.2 7.6-1.4.9-2.6 1.6-3.4 2.1-.4.2-.7.4-.9.5l-.2.1c-3.2 1.8-4.7 5.5-3.8 9s4.1 6 7.7 6c17.4 0 34.7-4.9 47.9-12.3 6.6-3.7 12.5-8.2 16.7-13.4 4.3-5.1 7.3-11.4 7.3-18.3s-3.1-13.2-7.3-18.3c-4.3-5.2-10.1-9.7-16.7-13.4-2.7-1.5-5.7-3-8.7-4.3 3.1-1.3 6-2.7 8.7-4.3 6.6-3.7 12.5-8.2 16.7-13.4 4.3-5.1 7.3-11.4 7.3-18.3zm-119.6-76a32 32 0 1 0 0-64 32 32 0 1 0 0 64m159.3-20c10.6 0 19.9 3.8 25.4 9.7 7.6 8.1 20.2 8.5 28.3.9s8.5-20.2.9-28.3C375.7 186.8 355 180 335.6 180s-40.1 6.8-54.6 22.3c-7.6 8.1-7.1 20.7.9 28.3s20.7 7.1 28.3-.9c5.5-5.8 14.8-9.7 25.4-9.7zM434 352.3c-6-23.2-28.8-37-51.1-30.8s-35.4 30.1-29.5 53.4l22.9 89.3c2.2 8.7 11.2 13.9 19.8 11.4l84.9-23.8c22.2-6.2 35.4-30.1 29.5-53.4s-28.8-37-51.1-30.8l-20.2 5.6-5.4-21z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-kiss.svg�������������������0000664�0000000�0000000�00000002443�14753064456�0030172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 0-416 0 208 208 0 1 0 416 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m304.7 25.7c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4-2.7 1.5-5.7 3-8.7 4.3 3.1 1.3 6 2.7 8.7 4.3 6.6 3.7 12.5 8.2 16.7 13.4 4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4-13.3 7.4-30.6 12.3-48 12.3-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l.2-.1c.2-.1.5-.3.9-.5.8-.5 2-1.2 3.4-2.1 2.8-1.9 6.5-4.5 10.2-7.6s7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1-3.7-3.1-7.4-5.7-10.2-7.6-1.4-.9-2.6-1.6-3.4-2.1l-.8-.5-.1-.1-.2-.1c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l.2-.1c.2-.1.5-.3.9-.5.8-.5 2-1.2 3.4-2.1 2.8-1.9 6.5-4.5 10.2-7.6s7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1-3.7-3.1-7.4-5.7-10.2-7.6-1.4-.9-2.6-1.6-3.4-2.1-.4-.2-.7-.4-.9-.5l-.2-.1c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3 6.6 3.7 12.5 8.2 16.7 13.4zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1-64 0m192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-laugh-beam.svg�������������0000664�0000000�0000000�00000002346�14753064456�0031225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 0-416 0 208 208 0 1 0 416 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m130.7 57.9c-4.2-13.6 7.1-25.9 21.3-25.9h212.5c14.2 0 25.5 12.4 21.3 25.9C369 368.4 318.2 408 258.2 408s-110.8-39.6-127.5-94.1m86.9-85.1-.2-.2c-.2-.2-.4-.5-.7-.9-.6-.8-1.6-2-2.8-3.4-2.5-2.8-6-6.6-10.2-10.3-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3-1.2 1.4-2.2 2.6-2.8 3.4-.3.4-.6.7-.7.9l-.2.2c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8 9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8 0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8m160 0-.2-.2c-.2-.2-.4-.5-.7-.9-.6-.8-1.6-2-2.8-3.4-2.5-2.8-6-6.6-10.2-10.3-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3-1.2 1.4-2.2 2.6-2.8 3.4-.3.4-.6.7-.7.9l-.2.2c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8 9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8 0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-laugh-squint.svg�����������0000664�0000000�0000000�00000001520�14753064456�0031635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 0-416 0 208 208 0 1 0 416 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m130.7 57.9c-4.2-13.6 7.1-25.9 21.3-25.9h212.5c14.2 0 25.5 12.4 21.3 25.9C369 368.4 318.2 408 258.2 408s-110.8-39.6-127.5-94.1m2.8-183.3 89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5 0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6 0-9 9.6-14.7 17.5-10.5M396 141.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6 0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-laugh-wink.svg�������������0000664�0000000�0000000�00000001352�14753064456�0031265�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 0-416 0 208 208 0 1 0 416 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m130.7 57.9c-4.2-13.6 7.1-25.9 21.3-25.9h212.5c14.2 0 25.5 12.4 21.3 25.9C369 368.4 318.2 408 258.2 408s-110.8-39.6-127.5-94.1M144.4 192a32 32 0 1 1 64 0 32 32 0 1 1-64 0m165.8 21.7c-7.6 8.1-20.2 8.5-28.3.9s-8.5-20.2-.9-28.3c14.5-15.5 35.2-22.3 54.6-22.3s40.1 6.8 54.6 22.3c7.6 8.1 7.1 20.7-.9 28.3s-20.7 7.1-28.3-.9c-5.5-5.8-14.8-9.7-25.4-9.7s-19.9 3.8-25.4 9.7"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-laugh.svg������������������0000664�0000000�0000000�00000001123�14753064456�0030313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 0-416 0 208 208 0 1 0 416 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m130.7 57.9c-4.2-13.6 7.1-25.9 21.3-25.9h212.5c14.2 0 25.5 12.4 21.3 25.9C369 368.4 318.2 408 258.2 408s-110.8-39.6-127.5-94.1M144.4 192a32 32 0 1 1 64 0 32 32 0 1 1-64 0m192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-meh-blank.svg��������������0000664�0000000�0000000�00000000726�14753064456�0031061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 48a208 208 0 1 0 0 416 208 208 0 1 0 0-416m256 208a256 256 0 1 1-512 0 256 256 0 1 1 512 0m-367.6-48a32 32 0 1 1 64 0 32 32 0 1 1-64 0m192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-meh.svg��������������������0000664�0000000�0000000�00000001052�14753064456�0027765�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 1-416 0 208 208 0 1 1 416 0M256 0a256 256 0 1 0 0 512 256 256 0 1 0 0-512m-79.6 240a32 32 0 1 0 0-64 32 32 0 1 0 0 64m192-32a32 32 0 1 0-64 0 32 32 0 1 0 64 0M184 328c-13.3 0-24 10.7-24 24s10.7 24 24 24h144c13.3 0 24-10.7 24-24s-10.7-24-24-24z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-rolling-eyes.svg�����������0000664�0000000�0000000�00000001606�14753064456�0031632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416m0 464a256 256 0 1 0 0-512 256 256 0 1 0 0 512m-88-136c0 13.3 10.7 24 24 24h128c13.3 0 24-10.7 24-24s-10.7-24-24-24H192c-13.3 0-24 10.7-24 24m-8-104c-26.5 0-48-21.5-48-48 0-14.3 6.3-27.2 16.2-36-.2 1.3-.2 2.6-.2 4 0 17.7 14.3 32 32 32s32-14.3 32-32c0-1.4-.1-2.7-.2-4 10 8.8 16.2 21.7 16.2 36 0 26.5-21.5 48-48 48m0 32a80 80 0 1 0 0-160 80 80 0 1 0 0 160m192-32c-26.5 0-48-21.5-48-48 0-14.3 6.3-27.2 16.2-36-.2 1.3-.2 2.6-.2 4 0 17.7 14.3 32 32 32s32-14.3 32-32c0-1.4-.1-2.7-.2-4 10 8.8 16.2 21.7 16.2 36 0 26.5-21.5 48-48 48m0 32a80 80 0 1 0 0-160 80 80 0 1 0 0 160"/></svg>��������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-sad-cry.svg����������������0000664�0000000�0000000�00000002022�14753064456�0030554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M400 406.1V288c0-13.3-10.7-24-24-24s-24 10.7-24 24v152.6c-28.7 15-61.4 23.4-96 23.4s-67.3-8.5-96-23.4V288c0-13.3-10.7-24-24-24s-24 10.7-24 24v118.1C72.6 368.2 48 315 48 256c0-114.9 93.1-208 208-208s208 93.1 208 208c0 59-24.6 112.2-64 150.1M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m-96.4-292c10.6 0 19.9 3.8 25.4 9.7 7.6 8.1 20.2 8.5 28.3.9s8.5-20.2.9-28.3C199.7 186.8 179 180 159.6 180s-40.1 6.8-54.6 22.3c-7.6 8.1-7.1 20.7.9 28.3s20.7 7.1 28.3-.9c5.5-5.8 14.8-9.7 25.4-9.7m166.6 9.7c5.5-5.8 14.8-9.7 25.4-9.7s19.9 3.8 25.4 9.7c7.6 8.1 20.2 8.5 28.3.9s8.5-20.2.9-28.3C391.7 186.8 371 180 351.6 180s-40.1 6.8-54.6 22.3c-7.6 8.1-7.1 20.7.9 28.3s20.7 7.1 28.3-.9M208 320v32c0 26.5 21.5 48 48 48s48-21.5 48-48v-32c0-26.5-21.5-48-48-48s-48 21.5-48 48"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-sad-tear.svg���������������0000664�0000000�0000000�00000001455�14753064456�0030723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M175.9 448c-35-.1-65.5-22.6-76-54.6C67.6 356.8 48 308.7 48 256c0-114.9 93.1-208 208-208s208 93.1 208 208-93.1 208-208 208c-28.4 0-55.5-5.7-80.1-16M0 256a256 256 0 1 0 512 0 256 256 0 1 0-512 0m128 113c0 26 21.5 47 48 47s48-21 48-47c0-20-28.4-60.4-41.6-77.7-3.2-4.4-9.6-4.4-12.8 0-13 17.3-41.6 57.7-41.6 77.7m128-65c-13.3 0-24 10.7-24 24s10.7 24 24 24c30.7 0 58.7 11.5 80 30.6 9.9 8.8 25 8 33.9-1.9s8-25-1.9-33.9c-29.7-26.6-69-42.8-112-42.8m47.6-96a32 32 0 1 0 64 0 32 32 0 1 0-64 0m-128 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-smile-beam.svg�������������0000664�0000000�0000000�00000002455�14753064456�0031237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 0-416 0 208 208 0 1 0 416 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m177.6 62.1c15.2 16.4 41.2 33.9 78.4 33.9s63.2-17.5 78.4-33.9c9-9.7 24.2-10.4 33.9-1.4s10.4 24.2 1.4 33.9c-22 23.8-60 49.4-113.6 49.4s-91.7-25.5-113.6-49.4c-9-9.7-8.4-24.9 1.4-33.9s24.9-8.4 33.9 1.4zm40-89.3-.2-.2c-.2-.2-.4-.5-.7-.9-.6-.8-1.6-2-2.8-3.4-2.5-2.8-6-6.6-10.2-10.3-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3-1.2 1.4-2.2 2.6-2.8 3.4-.3.4-.6.7-.7.9l-.2.2c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8 9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8 0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8m160 0-.2-.2c-.2-.2-.4-.5-.7-.9-.6-.8-1.6-2-2.8-3.4-2.5-2.8-6-6.6-10.2-10.3-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3-1.2 1.4-2.2 2.6-2.8 3.4-.3.4-.6.7-.7.9l-.2.2c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8 9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8 0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-smile-wink.svg�������������0000664�0000000�0000000�00000001463�14753064456�0031301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 0-416 0 208 208 0 1 0 416 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m177.6 62.1c15.2 16.4 41.2 33.9 78.4 33.9s63.2-17.5 78.4-33.9c9-9.7 24.2-10.4 33.9-1.4s10.4 24.2 1.4 33.9c-22 23.8-60 49.4-113.6 49.4s-91.7-25.5-113.6-49.4c-9-9.7-8.4-24.9 1.4-33.9s24.9-8.4 33.9 1.4zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1-64 0m165.8 21.7c-7.6 8.1-20.2 8.5-28.3.9s-8.5-20.2-.9-28.3c14.5-15.5 35.2-22.3 54.6-22.3s40.1 6.8 54.6 22.3c7.6 8.1 7.1 20.7-.9 28.3s-20.7 7.1-28.3-.9c-5.5-5.8-14.8-9.7-25.4-9.7s-19.9 3.8-25.4 9.7"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-smile.svg������������������0000664�0000000�0000000�00000001234�14753064456�0030327�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 0-416 0 208 208 0 1 0 416 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m177.6 62.1c15.2 16.4 41.2 33.9 78.4 33.9s63.2-17.5 78.4-33.9c9-9.7 24.2-10.4 33.9-1.4s10.4 24.2 1.4 33.9c-22 23.8-60 49.4-113.6 49.4s-91.7-25.5-113.6-49.4c-9-9.7-8.4-24.9 1.4-33.9s24.9-8.4 33.9 1.4zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1-64 0m192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-surprise.svg���������������0000664�0000000�0000000�00000001000�14753064456�0031061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 0-416 0 208 208 0 1 0 416 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m176.4-80a32 32 0 1 1 0 64 32 32 0 1 1 0-64m128 32a32 32 0 1 1 64 0 32 32 0 1 1-64 0M256 288a64 64 0 1 1 0 128 64 64 0 1 1 0-128"/></svg>mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/face-tired.svg������������������0000664�0000000�0000000�00000001737�14753064456�0030335�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 256a208 208 0 1 0-416 0 208 208 0 1 0 416 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m176.5 64.3c19.6-18.2 47.3-32.3 79.5-32.3s59.9 14.1 79.5 32.3c19 17.8 32.5 41.7 32.5 63.7 0 5.4-2.7 10.4-7.2 13.4s-10.2 3.4-15.2 1.3l-17.2-7.5c-22.8-10-47.5-15.1-72.4-15.1s-49.6 5.2-72.4 15.1l-17.2 7.5c-4.9 2.2-10.7 1.7-15.2-1.3s-7.2-8-7.2-13.4c0-22 13.5-45.9 32.5-63.7m-43-173.6 89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5 0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6 0-9 9.6-14.7 17.5-10.5M396 157.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6 0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5"/></svg>���������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/file-audio.svg������������������0000664�0000000�0000000�00000001603�14753064456�0030340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 464h256c8.8 0 16-7.2 16-16V160h-80c-17.7 0-32-14.3-32-32V48H64c-8.8 0-16 7.2-16 16v384c0 8.8 7.2 16 16 16M0 64C0 28.7 28.7 0 64 0h165.5c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm192 208v128c0 6.5-3.9 12.3-9.9 14.8s-12.9 1.1-17.4-3.5L129.4 376H112c-8.8 0-16-7.2-16-16v-48c0-8.8 7.2-16 16-16h17.4l35.3-35.3c4.6-4.6 11.5-5.9 17.4-3.5s9.9 8.3 9.9 14.8m85.8-4c11.6 20 18.2 43.3 18.2 68s-6.6 48-18.2 68c-6.6 11.5-21.3 15.4-32.8 8.8s-15.4-21.3-8.8-32.8c7.5-12.9 11.8-27.9 11.8-44s-4.3-31.1-11.8-44c-6.6-11.5-2.7-26.2 8.8-32.8s26.2-2.7 32.8 8.8"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/file-code.svg�������������������0000664�0000000�0000000�00000001457�14753064456�0030160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 464c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h160v80c0 17.7 14.3 32 32 32h80v288c0 8.8-7.2 16-16 16zM64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3l-90.6-90.5C262.7 6.7 246.5 0 229.5 0zm97 289c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L79 303c-9.4 9.4-9.4 24.6 0 33.9l48 48c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-31-31 31-31zm96-34c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l31 31-31 31c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l48-48c9.4-9.4 9.4-24.6 0-33.9l-48-48z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/file-excel.svg������������������0000664�0000000�0000000�00000001445�14753064456�0030343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48 448V64c0-8.8 7.2-16 16-16h160v80c0 17.7 14.3 32 32 32h80v288c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16M64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3l-90.6-90.5C262.7 6.7 246.5 0 229.5 0zm90.9 233.3c-8.1-10.5-23.2-12.3-33.7-4.2s-12.3 23.2-4.2 33.7l44.6 57.2-44.5 57.3c-8.1 10.5-6.3 25.5 4.2 33.7s25.5 6.3 33.7-4.2l37-47.7 37.1 47.6c8.1 10.5 23.2 12.3 33.7 4.2s12.3-23.2 4.2-33.7L222.4 320l44.5-57.3c8.1-10.5 6.3-25.5-4.2-33.7s-25.5-6.3-33.7 4.2l-37 47.7z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/file-image.svg������������������0000664�0000000�0000000�00000001433�14753064456�0030322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 464c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h160v80c0 17.7 14.3 32 32 32h80v288c0 8.8-7.2 16-16 16zM64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3l-90.6-90.5C262.7 6.7 246.5 0 229.5 0zm96 256a32 32 0 1 0-64 0 32 32 0 1 0 64 0m69.2 46.9c-3-4.3-7.9-6.9-13.2-6.9s-10.2 2.6-13.2 6.9l-41.3 59.7-11.9-19.1c-2.9-4.7-8.1-7.5-13.6-7.5s-10.6 2.8-13.6 7.5l-40 64c-3.1 4.9-3.2 11.1-.4 16.2s8.2 8.2 14 8.2h192c6 0 11.4-3.3 14.2-8.6s2.4-11.6-1-16.5l-72-104z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/file-lines.svg������������������0000664�0000000�0000000�00000001276�14753064456�0030357�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 464c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h160v80c0 17.7 14.3 32 32 32h80v288c0 8.8-7.2 16-16 16zM64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3l-90.6-90.5C262.7 6.7 246.5 0 229.5 0zm56 256c-13.3 0-24 10.7-24 24s10.7 24 24 24h144c13.3 0 24-10.7 24-24s-10.7-24-24-24zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24h144c13.3 0 24-10.7 24-24s-10.7-24-24-24z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/file-pdf.svg��������������������0000664�0000000�0000000�00000001712�14753064456�0030011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 464h48v48H64c-35.3 0-64-28.7-64-64V64C0 28.7 28.7 0 64 0h165.5c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3V304h-48V160h-80c-17.7 0-32-14.3-32-32V48H64c-8.8 0-16 7.2-16 16v384c0 8.8 7.2 16 16 16m112-112h32c30.9 0 56 25.1 56 56s-25.1 56-56 56h-16v32c0 8.8-7.2 16-16 16s-16-7.2-16-16V368c0-8.8 7.2-16 16-16m32 80c13.3 0 24-10.7 24-24s-10.7-24-24-24h-16v48zm96-80h32c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48h-32c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16m32 128c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16h-16v96zm80-112c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16s-7.2 16-16 16h-32v32h32c8.8 0 16 7.2 16 16s-7.2 16-16 16h-32v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V368"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/file-powerpoint.svg�������������0000664�0000000�0000000�00000001270�14753064456�0031445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 464c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h160v80c0 17.7 14.3 32 32 32h80v288c0 8.8-7.2 16-16 16zM64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3l-90.6-90.5C262.7 6.7 246.5 0 229.5 0zm72 208c-13.3 0-24 10.7-24 24v160c0 13.3 10.7 24 24 24s24-10.7 24-24v-32h44c42 0 76-34 76-76s-34-76-76-76zm68 104h-44v-56h44c15.5 0 28 12.5 28 28s-12.5 28-28 28"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/file-video.svg������������������0000664�0000000�0000000�00000001371�14753064456�0030347�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 464c8.8 0 16-7.2 16-16V160h-80c-17.7 0-32-14.3-32-32V48H64c-8.8 0-16 7.2-16 16v384c0 8.8 7.2 16 16 16zM0 64C0 28.7 28.7 0 64 0h165.5c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm80 224c0-17.7 14.3-32 32-32h96c17.7 0 32 14.3 32 32v16l44.9-29.9c2-1.3 4.4-2.1 6.8-2.1 6.8 0 12.3 5.5 12.3 12.3v103.4c0 6.8-5.5 12.3-12.3 12.3-2.4 0-4.8-.7-6.8-2.1L240 368v16c0 17.7-14.3 32-32 32h-96c-17.7 0-32-14.3-32-32z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/file-word.svg�������������������0000664�0000000�0000000�00000001470�14753064456�0030214�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48 448V64c0-8.8 7.2-16 16-16h160v80c0 17.7 14.3 32 32 32h80v288c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16M64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3l-90.6-90.5C262.7 6.7 246.5 0 229.5 0zm55 241.1c-3.8-12.7-17.2-19.9-29.9-16.1S69.2 242.2 73 254.9l48 160c3 10.2 12.4 17.1 23 17.1s19.9-7 23-17.1l25-83.4 25 83.4c3 10.2 12.4 17.1 23 17.1s19.9-7 23-17.1l48-160c3.8-12.7-3.4-26.1-16.1-29.9s-26.1 3.4-29.9 16.1l-25 83.4-25-83.4c-3-10.2-12.4-17.1-23-17.1s-19.9 7-23 17.1l-25 83.4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/file-zipper.svg�����������������0000664�0000000�0000000�00000001766�14753064456�0030562�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 464c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16h48v80c0 17.7 14.3 32 32 32h80v288c0 8.8-7.2 16-16 16zM64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3l-90.6-90.5C262.7 6.7 246.5 0 229.5 0zm48 112c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16m0 64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16m-6.3 71.8-23.6 88.1c-1.4 5.4-2.1 10.9-2.1 16.4 0 35.2 28.8 63.7 64 63.7s64-28.5 64-63.7c0-5.5-.7-11.1-2.1-16.4l-23.5-88.2c-3.7-14-16.4-23.8-30.9-23.8h-14.8c-14.5 0-27.2 9.7-30.9 23.8zM128 336h32c8.8 0 16 7.2 16 16s-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16s7.2-16 16-16"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/file.svg������������������������0000664�0000000�0000000�00000001032�14753064456�0027235�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 464c8.8 0 16-7.2 16-16V160h-80c-17.7 0-32-14.3-32-32V48H64c-8.8 0-16 7.2-16 16v384c0 8.8 7.2 16 16 16zM0 64C0 28.7 28.7 0 64 0h165.5c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/flag.svg������������������������0000664�0000000�0000000�00000001341�14753064456�0027232�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48 24C48 10.7 37.3 0 24 0S0 10.7 0 24v464c0 13.3 10.7 24 24 24s24-10.7 24-24V388l80.3-20.1c41.1-10.3 84.6-5.5 122.5 13.4 44.2 22.1 95.5 24.8 141.7 7.4l34.7-13c12.5-4.7 20.8-16.6 20.8-30V66c0-23-24.2-38-44.8-27.7l-9.6 4.8c-46.3 23.2-100.8 23.2-147.1 0-35.1-17.6-75.4-22-113.5-12.5L48 52zm0 77.5 96.6-24.2c27-6.7 55.5-3.6 80.4 8.8 54.9 27.4 118.7 29.7 175 6.8v241.8l-24.4 9.1c-33.7 12.6-71.2 10.7-103.4-5.4-48.2-24.1-103.3-30.1-155.6-17.1L48 338.5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/floppy-disk.svg�����������������0000664�0000000�0000000�00000001260�14753064456�0030562�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48 96v320c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16V170.5c0-4.2-1.7-8.3-4.7-11.3l33.9-33.9c12 12 18.7 28.3 18.7 45.3L448 416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96c0-35.3 28.7-64 64-64h245.5c17 0 33.3 6.7 45.3 18.7l74.5 74.5-33.9 33.9-74.6-74.4-.8-.8V184c0 13.3-10.7 24-24 24H104c-13.3 0-24-10.7-24-24V80H64c-8.8 0-16 7.2-16 16m80-16v80h144V80zm32 240a64 64 0 1 1 128 0 64 64 0 1 1-128 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/folder-closed.svg���������������0000664�0000000�0000000�00000001227�14753064456�0031046�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M251.7 127.6c10.5 10.5 24.7 16.4 39.6 16.4H448c8.8 0 16 7.2 16 16v32H48V96c0-8.8 7.2-16 16-16h133.5c4.2 0 8.3 1.7 11.3 4.7l33.9-33.9-33.9 33.9zM48 240h416v176c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16zM285.7 93.7l-43-43c-12-12-28.3-18.7-45.3-18.7H64C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H291.3c-2.1 0-4.2-.8-5.7-2.3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/folder-open.svg�����������������0000664�0000000�0000000�00000001242�14753064456�0030533�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 480h48c11.4 0 21.9-6 27.6-15.9l112-192c5.8-9.9 5.8-22.1.1-32.1s-16.2-16-27.7-16H144c-11.4 0-21.9 6-27.6 15.9L48 357.1V96c0-8.8 7.2-16 16-16h117.5c4.2 0 8.3 1.7 11.3 4.7l26.5 26.5c21 21 49.5 32.8 79.2 32.8H416c8.8 0 16 7.2 16 16v32h48v-32c0-35.3-28.7-64-64-64H298.5c-17 0-33.3-6.7-45.3-18.7l-26.5-26.6c-12-12-28.3-18.7-45.3-18.7H64C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/folder.svg����������������������0000664�0000000�0000000�00000001120�14753064456�0027567�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96c0-35.3 28.7-64 64-64h132.1c19.1 0 37.4 7.6 50.9 21.1L289.9 96H448c35.3 0 64 28.7 64 64v256c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm64-16c-8.8 0-16 7.2-16 16v320c0 8.8 7.2 16 16 16h384c8.8 0 16-7.2 16-16V160c0-8.8-7.2-16-16-16H286.6c-10.6 0-20.8-4.2-28.3-11.7L213.1 87c-4.5-4.5-10.6-7-17-7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/font-awesome.svg����������������0000664�0000000�0000000�00000001106�14753064456�0030724�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M91.7 96c14.6-9.2 24.3-25.5 24.3-44 0-28.7-23.3-52-52-52S12 23.3 12 52c0 16.7 7.8 31.5 20 41v419h48v-64h389.6c14.6 0 26.4-11.8 26.4-26.4 0-3.7-.8-7.3-2.3-10.7L432 272l61.7-138.9c1.5-3.4 2.3-7 2.3-10.7 0-14.6-11.8-26.4-26.4-26.4zM80 400V144h356.4l-48.3 108.5c-5.5 12.4-5.5 26.6 0 39L436.4 400z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/futbol.svg����������������������0000664�0000000�0000000�00000002200�14753064456�0027607�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m435.4 361.4-89.7-6c-5.2-.3-10.3 1.1-14.5 4.2s-7.2 7.4-8.4 12.5l-22 87.2c-14.4 3.2-29.4 4.8-44.8 4.8s-30.3-1.7-44.8-4.8l-22-87.2c-1.3-5-4.3-9.4-8.4-12.5s-9.3-4.5-14.5-4.2l-89.7 6C61.7 335.9 51.9 307 49 276.2l76-47.9c4.4-2.8 7.6-7 9.2-11.9s1.4-10.2-.5-15L100.4 118c19.9-22.4 44.6-40.5 72.4-52.7l69.1 57.6c4 3.3 9 5.1 14.1 5.1s10.2-1.8 14.1-5.1l69.1-57.6c27.8 12.2 52.5 30.3 72.4 52.7l-33.4 83.4c-1.9 4.8-2.1 10.1-.5 15s4.9 9.1 9.2 11.9l76.1 47.9c-3 30.8-12.7 59.7-27.6 85.2M256 48h.9-1.8zM56.7 196.2c.9-3 1.9-6.1 2.9-9.1zM132 423l3.8 2.7c-1.3-.9-2.5-1.8-3.8-2.7m248.1-.1c-1.3 1-2.6 2-4 2.9zm75.2-226.7-3-9.2c1.1 3 2.1 6.1 3 9.2M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m14.1-325.7c-8.4-6.1-19.8-6.1-28.2 0L194 221c-8.4 6.1-11.9 16.9-8.7 26.8l18.3 56.3c3.2 9.9 12.4 16.6 22.8 16.6h59.2c10.4 0 19.6-6.7 22.8-16.6l18.3-56.3c3.2-9.9-.3-20.7-8.7-26.8l-47.9-34.8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/gem.svg�������������������������0000664�0000000�0000000�00000001111�14753064456�0027064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m168.5 72 87.5 93 87.5-93zm215.4 27.1L311.5 176h129zm50 124.9H78.1L256 420.3zM71.5 176h129l-72.4-76.9zm434.3 40.1-232 256c-4.5 5-11 7.9-17.8 7.9s-13.2-2.9-17.8-7.9l-232-256c-7.7-8.5-8.3-21.2-1.5-30.4l112-152c4.5-6.1 11.7-9.8 19.3-9.8h240c7.6 0 14.8 3.6 19.3 9.8l112 152c6.8 9.2 6.1 21.9-1.5 30.4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/hand-back-fist.svg��������������0000664�0000000�0000000�00000002433�14753064456�0031077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M144 64c0-8.8 7.2-16 16-16s16 7.2 16 16c0 9.1 5.1 17.4 13.3 21.5s17.9 3.2 25.1-2.3c2.7-2 6-3.2 9.6-3.2 8.8 0 16 7.2 16 16 0 9.1 5.1 17.4 13.3 21.5s17.9 3.2 25.1-2.3c2.7-2 6-3.2 9.6-3.2 8.8 0 16 7.2 16 16 0 9.1 5.1 17.4 13.3 21.5s17.9 3.2 25.1-2.3c2.7-2 6-3.2 9.6-3.2 8.8 0 16 7.2 16 16v104c0 31.3-20 58-48 67.9-9.6 3.4-16 12.5-16 22.6V488c0 13.3 10.7 24 24 24s24-10.7 24-24V370.2c38-20.1 64-60.1 64-106.2V160c0-35.3-28.7-64-64-64-2.8 0-5.6.2-8.3.5A63.83 63.83 0 0 0 288 64c-2.8 0-5.6.2-8.3.5A63.83 63.83 0 0 0 224 32c-2.8 0-5.6.2-8.3.5A63.83 63.83 0 0 0 160 0c-35.3 0-64 28.7-64 64v64.3c-11.7 7.4-22.5 16.4-32 26.9l17.8 16.1L64 155.2l-9.4 10.5C40 181.8 32 202.8 32 224.6v12.8c0 49.6 24.2 96.1 64.8 124.5l13.8-19.7-13.8 19.7 8.9 6.2c6.9 4.8 14.4 8.6 22.3 11.3V488c0 13.3 10.7 24 24 24s24-10.7 24-24V359.9c0-12.6-9.8-23.1-22.4-23.9-7.3-.5-14.3-2.9-20.3-7.1l-13.1 18.7 13.1-18.7-8.9-6.2C96.6 303.1 80 271.3 80 237.4v-12.8c0-9.9 3.7-19.4 10.3-26.8l9.4-10.5c3.8-4.2 7.9-8.1 12.3-11.6V208c0 8.8 7.2 16 16 16s16-7.2 16-16V64"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/hand-lizard.svg�����������������0000664�0000000�0000000�00000001502�14753064456�0030515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M72 112c-13.3 0-24 10.7-24 24s10.7 24 24 24h168c35.3 0 64 28.7 64 64s-28.7 64-64 64H136c-13.3 0-24 10.7-24 24s10.7 24 24 24h152c4.5 0 8.9 1.3 12.7 3.6l64 40c7 4.4 11.3 12.1 11.3 20.4v24c0 13.3-10.7 24-24 24s-24-10.7-24-24v-10.7L281.1 384H136c-39.8 0-72-32.2-72-72s32.2-72 72-72h104c8.8 0 16-7.2 16-16s-7.2-16-16-16H72c-39.8 0-72-32.2-72-72s32.2-72 72-72h209.6c46.7 0 90.9 21.5 119.7 58.3l78.4 100.1c20.9 26.7 32.3 59.7 32.3 93.7V424c0 13.3-10.7 24-24 24s-24-10.7-24-24V316.1c0-23.2-7.8-45.8-22.1-64.1l-78.4-100.1c-19.7-25.2-49.9-39.9-81.9-39.9z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/hand-peace.svg������������������0000664�0000000�0000000�00000002374�14753064456�0030315�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M250.8 1.4c-35.2-3.7-66.6 21.8-70.3 57L174 119l-17.3-49.4C145 36.3 108.4 18.8 75.1 30.5s-50.9 48.3-39.2 81.6l52.8 150.1A79.77 79.77 0 0 0 64 320v24c0 92.8 75.2 168 168 168h48c92.8 0 168-75.2 168-168V224c0-35.3-28.7-64-64-64-7.9 0-15.4 1.4-22.4 4-10.4-21.3-32.3-36-57.6-36h-2.2l5.9-56.3c3.7-35.2-21.8-66.6-57-70.3zm-.2 155.4C243.9 166.9 240 179 240 192v50c-5.1-1.3-10.5-2-16-2h-7.4l-5.4-15.3 17-161.3c.9-8.8 8.8-15.2 17.6-14.2S261 58 260 66.8l-9.5 90.1zM111.4 85.6 165.7 240H144c-4 0-8 .3-11.9.9L81.2 96.2c-2.9-8.3 1.5-17.5 9.8-20.4s17.5 1.5 20.4 9.8M288 192c0-8.8 7.2-16 16-16s16 7.2 16 16v48c0 8.8-7.2 16-16 16s-16-7.2-16-16zm38.4 108c10.4 21.3 32.3 36 57.6 36 5.5 0 10.9-.7 16-2v10c0 66.3-53.7 120-120 120h-48c-66.3 0-120-53.7-120-120v-24c0-17.7 14.3-32 32-32h80c8.8 0 16 7.2 16 16s-7.2 16-16 16h-40c-13.3 0-24 10.7-24 24s10.7 24 24 24h40c35.3 0 64-28.7 64-64v-2c5.1 1.3 10.5 2 16 2 7.9 0 15.4-1.4 22.4-4m73.6-28c0 8.8-7.2 16-16 16s-16-7.2-16-16v-48c0-8.8 7.2-16 16-16s16 7.2 16 16v48"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/hand-point-down.svg�������������0000664�0000000�0000000�00000002137�14753064456�0031333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 448V270.4c5.2 1 10.5 1.6 16 1.6h16v176c0 8.8-7.2 16-16 16s-16-7.2-16-16m16-224c-17.7 0-32-14.3-32-32v-24c0-66.3 53.7-120 120-120h48c52.5 0 97.1 33.7 113.4 80.7-3.1-.5-6.2-.7-9.4-.7-20 0-37.9 9.2-49.7 23.6-9-4.9-19.4-7.6-30.3-7.6-15.1 0-29 5.3-40 14-11-8.8-24.9-14-40-14h-40c-13.3 0-24 10.7-24 24s10.7 24 24 24h40c8.8 0 16 7.2 16 16s-7.2 16-16 16H80M0 192c0 18 6 34.6 16 48v208c0 35.3 28.7 64 64 64s64-28.7 64-64v-82c5.1 1.3 10.5 2 16 2 25.3 0 47.2-14.7 57.6-36 7 2.6 14.5 4 22.4 4 20 0 37.9-9.2 49.7-23.6 9 4.9 19.4 7.6 30.3 7.6 35.3 0 64-28.7 64-64v-88C384 75.2 308.8 0 216 0h-48C75.2 0 0 75.2 0 168zm336 64c0 8.8-7.2 16-16 16s-16-7.2-16-16v-64c0-8.8 7.2-16 16-16s16 7.2 16 16zm-176 16c5.5 0 10.9-.7 16-2v34c0 8.8-7.2 16-16 16s-16-7.2-16-16v-32zm64-24v-40c0-8.8 7.2-16 16-16s16 7.2 16 16v64c0 8.8-7.2 16-16 16s-16-7.2-16-16z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/hand-point-left.svg�������������0000664�0000000�0000000�00000002141�14753064456�0031311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 128h177.6c-1 5.2-1.6 10.5-1.6 16v16H64c-8.8 0-16-7.2-16-16s7.2-16 16-16m224 16c0-17.7 14.3-32 32-32h24c66.3 0 120 53.7 120 120v48c0 52.5-33.7 97.1-80.7 113.4.5-3.1.7-6.2.7-9.4 0-20-9.2-37.9-23.6-49.7 4.9-9 7.6-19.4 7.6-30.3 0-15.1-5.3-29-14-40 8.8-11 14-24.9 14-40v-40c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 8.8-7.2 16-16 16s-16-7.2-16-16v-80m32-80c-18 0-34.6 6-48 16H64c-35.3 0-64 28.7-64 64s28.7 64 64 64h82c-1.3 5.1-2 10.5-2 16 0 25.3 14.7 47.2 36 57.6-2.6 7-4 14.5-4 22.4 0 20 9.2 37.9 23.6 49.7-4.9 9-7.6 19.4-7.6 30.3 0 35.3 28.7 64 64 64h88c92.8 0 168-75.2 168-168v-48c0-92.8-75.2-168-168-168zm-64 336c-8.8 0-16-7.2-16-16s7.2-16 16-16h64c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-16-176c0 5.5.7 10.9 2 16h-34c-8.8 0-16-7.2-16-16s7.2-16 16-16h32zm24 64h40c8.8 0 16 7.2 16 16s-7.2 16-16 16h-64c-8.8 0-16-7.2-16-16s7.2-16 16-16z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/hand-point-right.svg������������0000664�0000000�0000000�00000002147�14753064456�0031502�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 128H270.4c1 5.2 1.6 10.5 1.6 16v16h176c8.8 0 16-7.2 16-16s-7.2-16-16-16m-224 16c0-17.7-14.3-32-32-32h-24c-66.3 0-120 53.7-120 120v48c0 52.5 33.7 97.1 80.7 113.4-.5-3.1-.7-6.2-.7-9.4 0-20 9.2-37.9 23.6-49.7-4.9-9-7.6-19.4-7.6-30.3 0-15.1 5.3-29 14-40-8.8-11-14-24.9-14-40v-40c0-13.3 10.7-24 24-24s24 10.7 24 24v40c0 8.8 7.2 16 16 16s16-7.2 16-16v-80m-32-80c18 0 34.6 6 48 16h208c35.3 0 64 28.7 64 64s-28.7 64-64 64h-82c1.3 5.1 2 10.5 2 16 0 25.3-14.7 47.2-36 57.6 2.6 7 4 14.5 4 22.4 0 20-9.2 37.9-23.6 49.7 4.9 9 7.6 19.4 7.6 30.3 0 35.3-28.7 64-64 64h-88C75.2 448 0 372.8 0 280v-48C0 139.2 75.2 64 168 64zm64 336c8.8 0 16-7.2 16-16s-7.2-16-16-16h-64c-8.8 0-16 7.2-16 16s7.2 16 16 16zm16-176c0 5.5-.7 10.9-2 16h34c8.8 0 16-7.2 16-16s-7.2-16-16-16h-32zm-24 64h-40c-8.8 0-16 7.2-16 16s7.2 16 16 16h64c8.8 0 16-7.2 16-16s-7.2-16-16-16z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/hand-point-up.svg���������������0000664�0000000�0000000�00000002127�14753064456�0031007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 64v177.6c5.2-1 10.5-1.6 16-1.6h16V64c0-8.8-7.2-16-16-16s-16 7.2-16 16m16 224c-17.7 0-32 14.3-32 32v24c0 66.3 53.7 120 120 120h48c52.5 0 97.1-33.7 113.4-80.7-3.1.5-6.2.7-9.4.7-20 0-37.9-9.2-49.7-23.6-9 4.9-19.4 7.6-30.3 7.6-15.1 0-29-5.3-40-14-11 8.8-24.9 14-40 14h-40c-13.3 0-24-10.7-24-24s10.7-24 24-24h40c8.8 0 16-7.2 16-16s-7.2-16-16-16H80M0 320c0-18 6-34.6 16-48V64C16 28.7 44.7 0 80 0s64 28.7 64 64v82c5.1-1.3 10.5-2 16-2 25.3 0 47.2 14.7 57.6 36 7-2.6 14.5-4 22.4-4 20 0 37.9 9.2 49.7 23.6 9-4.9 19.4-7.6 30.3-7.6 35.3 0 64 28.7 64 64v88c0 92.8-75.2 168-168 168h-48C75.2 512 0 436.8 0 344zm336-64c0-8.8-7.2-16-16-16s-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16zm-176-16c5.5 0 10.9.7 16 2v-34c0-8.8-7.2-16-16-16s-16 7.2-16 16v32zm64 24v40c0 8.8 7.2 16 16 16s16-7.2 16-16v-64c0-8.8-7.2-16-16-16s-16 7.2-16 16z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/hand-pointer.svg����������������0000664�0000000�0000000�00000002461�14753064456�0030715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 64c0-8.8 7.2-16 16-16s16 7.2 16 16v136c0 10.3 6.6 19.5 16.4 22.8s20.6-.1 26.8-8.3c3-3.9 7.6-6.4 12.8-6.4 8.8 0 16 7.2 16 16 0 10.3 6.6 19.5 16.4 22.8s20.6-.1 26.8-8.3c3-3.9 7.6-6.4 12.8-6.4 7.8 0 14.3 5.6 15.7 13 1.6 8.2 7.3 15.1 15.1 18s16.7 1.6 23.3-3.6c2.7-2.1 6.1-3.4 9.9-3.4 8.8 0 16 7.2 16 16v120c0 39.8-32.2 72-72 72H211.3c-37.4 0-72.4-18.7-93.2-49.9L50.7 312.9c-4.9-7.4-2.9-17.3 4.4-22.2s17.3-2.9 22.2 4.4l38.7 58.1c5.9 8.8 16.8 12.7 26.9 9.7s17-12.4 17-23V64zm16-64c-35.3 0-64 28.7-64 64v197.7c-20.8-23.7-56.5-28.9-83.5-11-29.4 19.7-37.4 59.4-17.7 88.8l67.5 101.3C108 485.3 157.9 512 211.4 512h116.7c66.3 0 120-53.7 120-120V272c0-35.3-28.7-64-64-64-4.5 0-8.8.5-13 1.3-11.7-15.4-30.2-25.3-51-25.3-6.9 0-13.5 1.1-19.7 3.1-11.7-16.4-30.8-27.1-52.4-27.1-2.7 0-5.4.2-8 .5V64c0-35.3-28.7-64-64-64m48 304c0-8.8-7.2-16-16-16s-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16zm48-16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16v-96c0-8.8-7.2-16-16-16m80 16c0-8.8-7.2-16-16-16s-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/hand-scissors.svg���������������0000664�0000000�0000000�00000002416�14753064456�0031105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M.2 276.3c-1.2-35.3 26.4-65 61.7-66.2l3.3-.1-8.2-1.9C22.5 200.5.7 166.3 8.3 131.8s41.9-56.3 76.4-48.6l173 38.3c2.3-2.9 4.7-5.7 7.1-8.5l18.4-20.3C299.9 74.5 323.5 64 348.3 64h10.2c54.1 0 104.1 28.7 131.3 75.4l1.5 2.6c13.6 23.2 20.7 49.7 20.7 76.6V344c0 66.3-53.7 120-120 120H288c-35.3 0-64-28.7-64-64 0-2.8.2-5.6.5-8.3-19.4-11-32.5-31.8-32.5-55.7v-2.4L66.4 338c-35.3 1.2-65-26.4-66.2-61.7m63.4-18.2c-8.8.3-15.7 7.7-15.4 16.5s7.7 15.7 16.5 15.4l161.5-5.6c9.8-.3 18.7 5.3 22.7 14.2s2.2 19.3-4.5 26.4c-2.8 2.9-4.4 6.7-4.4 11 0 8.8 7.2 16 16 16 9.1 0 17.4 5.1 21.5 13.3s3.2 17.9-2.3 25.1c-2 2.7-3.2 6-3.2 9.6 0 8.8 7.2 16 16 16h104c39.8 0 72-32.2 72-72V218.6c0-18.4-4.9-36.5-14.2-52.4l-1.5-2.6c-18.6-32-52.8-51.6-89.8-51.6h-10.2c-11.3 0-22 4.8-29.6 13.1l-17.5-15.9 17.5 15.9-18.4 20.3c-.6.6-1.1 1.3-1.7 1.9l57 13.2c8.6 2 14 10.6 12 19.2s-10.6 14-19.2 12L262.8 172 74.3 130c-8.6-1.9-17.2 3.5-19.1 12.2s3.5 17.2 12.2 19.1l187.5 41.6c10.2 2.3 17.8 10.9 18.7 21.4l.1 1c.6 6.6-1.5 13.1-5.8 18.1s-10.6 7.9-17.2 8.2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/hand-spock.svg������������������0000664�0000000�0000000�00000002341�14753064456�0030351�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M170.2 80.8C161 47 180.8 12 214.6 2.4c34-9.6 69.4 10.2 79 44.2l30.3 107.1L337.1 84c6.6-34.7 40.1-57.5 74.8-50.9 31.4 6 53 33.9 52 64.9 10-2.6 20.8-2.8 31.5-.1 34.3 8.6 55.1 43.3 46.6 77.6l-55.3 221.7C469.8 464.7 409.2 512 339.6 512h-33.7c-56.9 0-112.2-19-157.2-53.9l-92-71.6c-27.9-21.7-32.9-61.9-11.2-89.8s61.9-32.9 89.8-11.2l17 13.2-51.8-131.2c-13-32.9 3.2-70.1 36-83 11.1-4.4 22.7-5.4 33.7-3.7m77.1-21.2c-2.4-8.5-11.2-13.4-19.7-11s-13.4 11.2-11 19.7l54.8 182.4c3.5 12.3-3.3 25.2-15.4 29.3s-25.3-2-30-13.9l-51.1-128c-3.2-8.2-12.5-12.3-20.8-9s-12.3 12.5-9 20.8l73.3 185.6c12 30.3-23.7 57-49.4 37l-63.1-49.1c-7-5.4-17-4.2-22.5 2.8s-4.2 17 2.8 22.5l92 71.6c36.5 28.4 81.4 43.8 127.7 43.8h33.7c47.5 0 89-32.4 100.5-78.5L495.5 164c2.1-8.6-3.1-17.3-11.6-19.4s-17.3 3.1-19.4 11.6l-26 104C435.6 271.8 425 280 413 280c-16.5 0-28.9-15-25.8-31.2L415.7 99c1.7-8.7-4-17.1-12.7-18.7s-17.1 4-18.7 12.7l-31.8 167c-2.2 11.6-12.4 20-24.2 20-11 0-20.7-7.3-23.7-17.9L247.4 59.6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/hand.svg������������������������0000664�0000000�0000000�00000002136�14753064456�0027236�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 0c-25.3 0-47.2 14.7-57.6 36-7-2.6-14.5-4-22.4-4-35.3 0-64 28.7-64 64v165.5l-2.7-2.7c-25-25-65.5-25-90.5 0s-25 65.5 0 90.5l87.7 87.7c48 48 113.1 75 181 75H304c1.5 0 3-.1 4.5-.4 91.7-6.2 165-79.4 171.1-171.1.3-1.5.4-3 .4-4.5V160c0-35.3-28.7-64-64-64-5.5 0-10.9.7-16 2v-2c0-35.3-28.7-64-64-64-7.9 0-15.4 1.4-22.4 4C303.2 14.7 281.3 0 256 0m-16 96.1V64c0-8.8 7.2-16 16-16s16 7.2 16 16v168c0 13.3 10.7 24 24 24s24-10.7 24-24V95.9c0-8.8 7.2-16 16-16s16 7.2 16 16v136c0 13.3 10.7 24 24 24s24-10.7 24-24v-72c0-8.8 7.2-16 16-16s16 7.2 16 16v172.9c-.1.6-.1 1.3-.2 1.9-3.4 69.7-59.3 125.6-129 129-.6 0-1.3.1-1.9.2h-13.4c-55.2 0-108.1-21.9-147.1-60.9l-87.7-87.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l43.7 43.7c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V96c0-8.8 7.2-16 16-16s16 7.1 16 15.9V232c0 13.3 10.7 24 24 24s24-10.7 24-24z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/handshake.svg�������������������0000664�0000000�0000000�00000003107�14753064456�0030251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m272.2 64.6-51.1 51.1c-15.3 4.2-29.5 11.9-41.5 22.5L153 161.9c-10.2 9.1-23.5 14.1-37.2 14.1H96v128c20.4.6 39.8 8.9 54.3 23.4l35.6 35.6 7 7 27 27c6.2 6.2 16.4 6.2 22.6 0 1.7-1.7 3-3.7 3.7-5.8 2.8-7.7 9.3-13.5 17.3-15.3s16.4.6 22.2 6.5l10.8 10.6c11.6 11.6 30.4 11.6 41.9 0 5.4-5.4 8.3-12.3 8.6-19.4.4-8.8 5.6-16.6 13.6-20.4s17.3-3 24.4 2.1c9.4 6.7 22.5 5.8 30.9-2.6 9.4-9.4 9.4-24.6 0-33.9L340.1 243l-35.8 33c-27.3 25.2-69.2 25.6-97 .9-31.7-28.2-32.4-77.4-1.6-106.5l70.1-66.2C303.2 78.4 339.4 64 377.1 64c36.1 0 71 13.3 97.9 37.2l30.1 26.8H624c8.8 0 16 7.2 16 16v208c0 17.7-14.3 32-32 32h-32c-11.8 0-22.2-6.4-27.7-16h-84.9c-3.4 6.7-7.9 13.1-13.5 18.7-17.1 17.1-40.8 23.8-63 20.1-3.6 7.3-8.5 14.1-14.6 20.2-27.3 27.3-70 30-100.4 8.1-25.1 20.8-62.5 19.5-86-4.1L159 404l-7-7-35.6-35.6c-5.5-5.5-12.7-8.7-20.4-9.3 0 17.6-14.4 31.9-32 31.9H32c-17.7 0-32-14.3-32-32V144c0-8.8 7.2-16 16-16h99.8c2 0 3.9-.7 5.3-2l26.5-23.6C175.5 77.7 211.4 64 248.7 64H259c4.4 0 8.9.2 13.2.6M544 320V176h-48c-5.9 0-11.6-2.2-15.9-6.1l-36.9-32.8C425 120.9 401.5 112 377.1 112c-25.4 0-49.8 9.7-68.3 27.1l-70.1 66.2c-10.3 9.8-10.1 26.3.5 35.7 9.3 8.3 23.4 8.1 32.5-.3l71.9-66.4c9.7-9 24.9-8.4 33.9 1.4s8.4 24.9-1.4 33.9l-.8.8 74.4 74.4c10 10 16.5 22.3 19.4 35.1h74.8zM64 336a16 16 0 1 0-32 0 16 16 0 1 0 32 0m528 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/hard-drive.svg������������������0000664�0000000�0000000�00000001237�14753064456�0030352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 80c-8.8 0-16 7.2-16 16v162c5.1-1.3 10.5-2 16-2h384c5.5 0 10.9.7 16 2V96c0-8.8-7.2-16-16-16zM48 320v96c0 8.8 7.2 16 16 16h384c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16m-48 0V96c0-35.3 28.7-64 64-64h384c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm280 48a24 24 0 1 1 48 0 24 24 0 1 1-48 0m120-24a24 24 0 1 1 0 48 24 24 0 1 1 0-48"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/heart.svg�����������������������0000664�0000000�0000000�00000001662�14753064456�0027432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m225.8 468.2-2.5-2.3L48.1 303.2C17.4 274.7 0 234.7 0 192.8v-3.3c0-70.4 50-130.8 119.2-144 39.4-7.6 79.7 1.5 111.8 24.1 9 6.4 17.4 13.8 25 22.3 4.2-4.8 8.7-9.2 13.5-13.3 3.7-3.2 7.5-6.2 11.5-9 32.1-22.6 72.4-31.7 111.8-24.2C462 58.6 512 119.1 512 189.5v3.3c0 41.9-17.4 81.9-48.1 110.4L288.7 465.9l-2.5 2.3c-8.2 7.6-19 11.9-30.2 11.9s-22-4.2-30.2-11.9M239.1 145c-.4-.3-.7-.7-1-1.1l-17.8-20-.1-.1c-23.1-25.9-58-37.7-92-31.2-46.6 8.9-80.2 49.5-80.2 96.9v3.3c0 28.5 11.9 55.8 32.8 75.2L256 430.7 431.2 268a102.7 102.7 0 0 0 32.8-75.2v-3.3c0-47.3-33.6-88-80.1-96.9-34-6.5-69 5.4-92 31.2l-.1.1-.1.1-17.8 20c-.3.4-.7.7-1 1.1-4.5 4.5-10.6 7-16.9 7s-12.4-2.5-16.9-7z"/></svg>������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/hospital.svg��������������������0000664�0000000�0000000�00000002067�14753064456�0030152�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M232 0c-39.8 0-72 32.2-72 72v8H72c-39.8 0-72 32.2-72 72v288c0 39.8 32.2 72 72 72h486.4c39.8 0 72-32.2 72-72V152c0-39.8-32.2-72-72-72h-88v-8c0-39.8-32.2-72-72-72zm248 128h88c13.3 0 24 10.7 24 24v40h-56c-13.3 0-24 10.7-24 24s10.7 24 24 24h56v48h-56c-13.3 0-24 10.7-24 24s10.7 24 24 24h56v104c0 13.3-10.7 24-24 24h-88V128m-408 0h88v336H77.5c-13.2 0-24-10.7-24-24V336h56c13.3 0 24-10.7 24-24s-10.7-24-24-24h-56v-48h56c13.3 0 24-10.7 24-24s-10.7-24-24-24h-56v-40c0-13.3 10.7-24 24-24zm136-56c0-13.3 10.7-24 24-24h176c13.3 0 24 10.7 24 24v392h-64v-64c0-26.5-21.5-48-48-48s-48 21.5-48 48v64h-64zm88 24v24h-24c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h24v24c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16v-24h24c8.8 0 16-7.2 16-16v-16c0-8.8-7.2-16-16-16h-24V96c0-8.8-7.2-16-16-16h-16c-8.8 0-16 7.2-16 16"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/hourglass-half.svg��������������0000664�0000000�0000000�00000001400�14753064456�0031234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 24C0 10.7 10.7 0 24 0h336c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8v19c0 40.3-16 79-44.5 107.5L225.9 256l81.5 81.5C336 366 352 404.7 352 445v19h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24s10.7-24 24-24h8v-19c0-40.3 16-79 44.5-107.5l81.6-81.5-81.6-81.5C48 146 32 107.3 32 67V48h-8C10.7 48 0 37.3 0 24m110.5 347.5c-3.9 3.9-7.5 8.1-10.7 12.5h184.4c-3.2-4.4-6.8-8.6-10.7-12.5L192 289.9l-81.5 81.5zM284.2 128C297 110.4 304 89 304 67V48H80v19c0 22.1 7 43.4 19.8 61z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/hourglass.svg�������������������0000664�0000000�0000000�00000001371�14753064456�0030333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M24 0C10.7 0 0 10.7 0 24s10.7 24 24 24h8v19c0 40.3 16 79 44.5 107.5l81.6 81.5-81.6 81.5C48 366 32 404.7 32 445v19h-8c-13.3 0-24 10.7-24 24s10.7 24 24 24h336c13.3 0 24-10.7 24-24s-10.7-24-24-24h-8v-19c0-40.3-16-79-44.5-107.5L225.9 256l81.5-81.5C336 146 352 107.3 352 67V48h8c13.3 0 24-10.7 24-24S373.3 0 360 0zm168 289.9 81.5 81.5C293 391 304 417.4 304 445v19H80v-19c0-27.6 11-54 30.5-73.5zm0-67.9-81.5-81.5C91 121 80 94.6 80 67V48h224v19c0 27.6-11 54-30.5 73.5L192 222.1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/id-badge.svg��������������������0000664�0000000�0000000�00000001250�14753064456�0027754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 48v16c0 17.7-14.3 32-32 32h-64c-17.7 0-32-14.3-32-32V48H64c-8.8 0-16 7.2-16 16v384c0 8.8 7.2 16 16 16h256c8.8 0 16-7.2 16-16V64c0-8.8-7.2-16-16-16zM0 64C0 28.7 28.7 0 64 0h256c35.3 0 64 28.7 64 64v384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm160 256h64c44.2 0 80 35.8 80 80 0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16 0-44.2 35.8-80 80-80m-32-96a64 64 0 1 1 128 0 64 64 0 1 1-128 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/id-card.svg���������������������0000664�0000000�0000000�00000001305�14753064456�0027624�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M528 160v256c0 8.8-7.2 16-16 16H320c0-44.2-35.8-80-80-80h-64c-44.2 0-80 35.8-80 80H64c-8.8 0-16-7.2-16-16V160zM64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm208 224a64 64 0 1 0-128 0 64 64 0 1 0 128 0m104-48c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/image.svg�����������������������0000664�0000000�0000000�00000001157�14753064456�0027410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 80c8.8 0 16 7.2 16 16v319.8l-5-6.5-136-176c-4.5-5.9-11.6-9.3-19-9.3s-14.4 3.4-19 9.3l-83 107.4-30.5-42.7c-4.5-6.3-11.7-10-19.5-10s-15 3.7-19.5 10.1l-80 112-4.5 6.2V96c0-8.8 7.2-16 16-16zM64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm80 192a48 48 0 1 0 0-96 48 48 0 1 0 0 96"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/images.svg����������������������0000664�0000000�0000000�00000001457�14753064456�0027576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 80h352c8.8 0 16 7.2 16 16v224c0 8.8-7.2 16-16 16h-21.2L388.1 178.9c-4.4-6.8-12-10.9-20.1-10.9s-15.7 4.1-20.1 10.9l-52.2 79.8-12.4-16.9c-4.5-6.2-11.7-9.8-19.4-9.8s-14.8 3.6-19.4 9.8L175.6 336H160c-8.8 0-16-7.2-16-16V96c0-8.8 7.2-16 16-16M96 96v224c0 35.3 28.7 64 64 64h352c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H160c-35.3 0-64 28.7-64 64m-48 24c0-13.3-10.7-24-24-24S0 106.7 0 120v224c0 75.1 60.9 136 136 136h320c13.3 0 24-10.7 24-24s-10.7-24-24-24H136c-48.6 0-88-39.4-88-88zm208 24a32 32 0 1 0-64 0 32 32 0 1 0 64 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/keyboard.svg��������������������0000664�0000000�0000000�00000003012�14753064456�0030116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 112c-8.8 0-16 7.2-16 16v256c0 8.8 7.2 16 16 16h448c8.8 0 16-7.2 16-16V128c0-8.8-7.2-16-16-16zM0 128c0-35.3 28.7-64 64-64h448c35.3 0 64 28.7 64 64v256c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm176 192h224c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16m-72-72c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16zm16-96h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16m64 96c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16zm16-96h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16m64 96c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16zm16-96h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16m64 96c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16zm16-96h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16m64 96c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16zm16-96h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/lemon.svg�����������������������0000664�0000000�0000000�00000002174�14753064456�0027440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M368 80c-3.2 0-6.2.4-8.9 1.3-19.1 5.5-46.1 10.6-74.3 3.3-57.4-14.9-124.6 7.4-174.7 57.5S37.7 259.4 52.6 316.8c7.3 28.2 2.2 55.2-3.3 74.3-.8 2.8-1.3 5.8-1.3 8.9 0 17.7 14.3 32 32 32 3.2 0 6.2-.4 8.9-1.3 19.1-5.5 46.1-10.7 74.3-3.3 57.4 14.9 124.6-7.4 174.7-57.5s72.4-117.3 57.5-174.7c-7.3-28.2-2.2-55.2 3.3-74.3.8-2.8 1.3-5.8 1.3-8.9 0-17.7-14.3-32-32-32m0-48c44.2 0 80 35.8 80 80 0 7.7-1.1 15.2-3.1 22.3-4.6 15.8-7.1 32.9-3 48.9 20.1 77.6-10.9 161.5-70 220.7s-143.1 90.2-220.7 70c-16-4.1-33-1.6-48.9 3-7.1 2-14.6 3.1-22.3 3.1-44.2 0-80-35.8-80-80 0-7.7 1.1-15.2 3.1-22.3 4.6-15.8 7.1-32.9 3-48.9C-14 251.3 17 167.3 76.2 108.2S219.3 18 296.8 38.1c16 4.1 33 1.6 48.9-3 7.1-2 14.6-3.1 22.3-3.1M246.7 167c-52 15.2-96.5 59.7-111.7 111.7-3.7 12.7-17.1 20-29.8 16.3s-20-17.1-16.3-29.8c19.8-67.7 76.6-124.5 144.3-144.3 12.7-3.7 26.1 3.6 29.8 16.3s-3.6 26.1-16.3 29.8"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/life-ring.svg�������������������0000664�0000000�0000000�00000002412�14753064456�0030175�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M385.1 419.1C349.7 447.2 304.8 464 256 464s-93.7-16.8-129.1-44.9l80.4-80.4c14.3 8.4 31 13.3 48.8 13.3s34.5-4.8 48.8-13.3l80.4 80.4zm68.1.2C489.9 374.9 512 318.1 512 256s-22.1-118.9-58.8-163.3L465 81c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-11.8 11.7C374.9 22.1 318.1 0 256 0S137.1 22.1 92.7 58.8L81 47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l11.7 11.8C22.1 137.1 0 193.9 0 256s22.1 118.9 58.8 163.3L47 431c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l11.8-11.8C137.1 489.9 193.9 512 256 512s118.9-22.1 163.3-58.8L431 465c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-11.8-11.8zm-34.1-34.1-80.4-80.4c8.4-14.3 13.3-31 13.3-48.8s-4.8-34.5-13.3-48.8l80.4-80.4C447.2 162.3 464 207.2 464 256s-16.8 93.7-44.9 129.1zm-34-292.3-80.4 80.4c-14.3-8.4-31-13.3-48.8-13.3s-34.5 4.8-48.8 13.3l-80.2-80.4C162.3 64.8 207.2 48 256 48s93.7 16.8 129.1 44.9M173.3 304.8l-80.4 80.3C64.8 349.7 48 304.8 48 256s16.8-93.7 44.9-129.1l80.4 80.4c-8.4 14.3-13.3 31-13.3 48.8s4.8 34.5 13.3 48.8zM208 256a48 48 0 1 1 96 0 48 48 0 1 1-96 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/lightbulb.svg�������������������0000664�0000000�0000000�00000001771�14753064456�0030304�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M297.2 248.9c14.4-20.6 22.8-45.7 22.8-72.9 0-70.7-57.3-128-128-128S64 105.3 64 176c0 27.2 8.4 52.3 22.8 72.9 3.7 5.3 8.1 11.3 12.8 17.7 12.9 17.7 28.3 38.9 39.8 59.8 10.4 19 15.7 38.8 18.3 57.5l-48.7.1c-2.2-12-5.9-23.7-11.8-34.5-9.9-18-22.2-34.9-34.5-51.8-5.2-7.1-10.4-14.2-15.4-21.4C27.6 247.9 16 213.3 16 176 16 78.8 94.8 0 192 0s176 78.8 176 176c0 37.3-11.6 71.9-31.4 100.3-5 7.2-10.2 14.3-15.4 21.4-12.3 16.8-24.6 33.7-34.5 51.8-5.9 10.8-9.6 22.5-11.8 34.5h-48.6c2.6-18.7 7.9-38.6 18.3-57.5 11.5-20.9 26.9-42.1 39.8-59.8 4.7-6.4 9-12.4 12.7-17.7zM192 128c-26.5 0-48 21.5-48 48 0 8.8-7.2 16-16 16s-16-7.2-16-16c0-44.2 35.8-80 80-80 8.8 0 16 7.2 16 16s-7.2 16-16 16m0 384c-44.2 0-80-35.8-80-80v-16h160v16c0 44.2-35.8 80-80 80"/></svg>�������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/map.svg�������������������������0000664�0000000�0000000�00000001211�14753064456�0027072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M565.6 36.2C572.1 40.7 576 48.1 576 56v336c0 10-6.2 18.9-15.5 22.4l-168 64c-5.2 2-10.9 2.1-16.1.3l-183.9-61.2-160 61c-7.4 2.8-15.7 1.8-22.2-2.7S0 463.9 0 456V120c0-10 6.1-18.9 15.5-22.4l168-64c5.2-2 10.9-2.1 16.1-.3l183.9 61.2 160-61c7.4-2.8 15.7-1.8 22.2 2.7zM48 136.5v284.6l120-45.7V90.8zm312 286.2V137.3l-144-48v285.4zm48-1.5 120-45.7V90.9l-120 45.6v284.6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/message.svg���������������������0000664�0000000�0000000�00000001171�14753064456�0027746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 368c26.5 0 48 21.5 48 48v16l72.5-54.4c8.3-6.2 18.4-9.6 28.8-9.6H448c8.8 0 16-7.2 16-16V64c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16v288c0 8.8 7.2 16 16 16zm48 124-.2.2-5.1 3.8-17.1 12.8c-4.8 3.6-11.3 4.2-16.8 1.5s-8.8-8.2-8.8-14.3v-80H64c-35.3 0-64-28.7-64-64V64C0 28.7 28.7 0 64 0h384c35.3 0 64 28.7 64 64v288c0 35.3-28.7 64-64 64H309.3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/money-bill-1.svg����������������0000664�0000000�0000000�00000001271�14753064456�0030530�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M112 112c0 35.3-28.7 64-64 64v160c35.3 0 64 28.7 64 64h352c0-35.3 28.7-64 64-64V176c-35.3 0-64-28.7-64-64zM0 128c0-35.3 28.7-64 64-64h448c35.3 0 64 28.7 64 64v256c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm176 128a112 112 0 1 1 224 0 112 112 0 1 1-224 0m80-48c0 8.8 7.2 16 16 16v64h-8c-8.8 0-16 7.2-16 16s7.2 16 16 16h48c8.8 0 16-7.2 16-16s-7.2-16-16-16h-8v-80c0-8.8-7.2-16-16-16h-16c-8.8 0-16 7.2-16 16"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/moon.svg������������������������0000664�0000000�0000000�00000001641�14753064456�0027274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M144.7 98.7c-21 34.1-33.1 74.3-33.1 117.3 0 98 62.8 181.4 150.4 211.7-12.4 2.8-25.3 4.3-38.6 4.3C126.6 432 48 353.3 48 256c0-68.9 39.4-128.4 96.8-157.3zm62.1-66C91.1 41.2 0 137.9 0 256c0 123.7 100 224 223.5 224 47.8 0 92-15 128.4-40.6 1.9-1.3 3.7-2.7 5.5-4 4.8-3.6 9.4-7.4 13.9-11.4 2.7-2.4 5.3-4.8 7.9-7.3 5-4.9 6.3-12.5 3.1-18.7s-10.1-9.7-17-8.5c-3.7.6-7.4 1.2-11.1 1.6-5 .5-10.1.9-15.3 1h-4c-96.8-.2-175.2-78.9-175.2-176 0-54.8 24.9-103.7 64.1-136 1-.9 2.1-1.7 3.2-2.6 4-3.2 8.2-6.2 12.5-9 3.1-2 6.3-4 9.6-5.8 6.1-3.5 9.2-10.5 7.7-17.3s-7.3-11.9-14.3-12.5c-3.6-.3-7.1-.5-10.7-.6-2.7-.1-5.5-.1-8.2-.1-3.3 0-6.5.1-9.8.2-2.3.1-4.6.2-6.9.4z"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/newspaper.svg�������������������0000664�0000000�0000000�00000002002�14753064456�0030320�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M168 80c-13.3 0-24 10.7-24 24v304c0 8.4-1.4 16.5-4.1 24H440c13.3 0 24-10.7 24-24V104c0-13.3-10.7-24-24-24zM72 480c-39.8 0-72-32.2-72-72V112c0-13.3 10.7-24 24-24s24 10.7 24 24v296c0 13.3 10.7 24 24 24s24-10.7 24-24V104c0-39.8 32.2-72 72-72h272c39.8 0 72 32.2 72 72v304c0 39.8-32.2 72-72 72zm104-344c0-13.3 10.7-24 24-24h96c13.3 0 24 10.7 24 24v80c0 13.3-10.7 24-24 24h-96c-13.3 0-24-10.7-24-24zm200-24h32c13.3 0 24 10.7 24 24s-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24s10.7-24 24-24m0 80h32c13.3 0 24 10.7 24 24s-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24s10.7-24 24-24m-176 80h208c13.3 0 24 10.7 24 24s-10.7 24-24 24H200c-13.3 0-24-10.7-24-24s10.7-24 24-24m0 80h208c13.3 0 24 10.7 24 24s-10.7 24-24 24H200c-13.3 0-24-10.7-24-24s10.7-24 24-24"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/note-sticky.svg�����������������0000664�0000000�0000000�00000001041�14753064456�0030567�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 80c-8.8 0-16 7.2-16 16v320c0 8.8 7.2 16 16 16h224v-80c0-17.7 14.3-32 32-32h80V96c0-8.8-7.2-16-16-16zm224 400H64c-35.3 0-64-28.7-64-64V96c0-35.3 28.7-64 64-64h320c35.3 0 64 28.7 64 64v229.5c0 17-6.7 33.3-18.7 45.3l-90.5 90.5c-12 12-28.3 18.7-45.3 18.7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/object-group.svg����������������0000664�0000000�0000000�00000001663�14753064456�0030730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48 115.8C38.2 107 32 94.2 32 80c0-26.5 21.5-48 48-48 14.2 0 27 6.2 35.8 16h344.4c8.8-9.8 21.6-16 35.8-16 26.5 0 48 21.5 48 48 0 14.2-6.2 27-16 35.8v280.4c9.8 8.8 16 21.6 16 35.8 0 26.5-21.5 48-48 48-14.2 0-27-6.2-35.8-16H115.8c-8.8 9.8-21.6 16-35.8 16-26.5 0-48-21.5-48-48 0-14.2 6.2-27 16-35.8zM125.3 96c-4.8 13.6-15.6 24.4-29.3 29.3v261.5c13.6 4.8 24.4 15.6 29.3 29.3h325.5c4.8-13.6 15.6-24.4 29.3-29.3V125.3c-13.6-4.8-24.4-15.6-29.3-29.3zm2.7 64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32zm128 160h32c35.3 0 64-28.7 64-64v-32h64c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H288c-17.7 0-32-14.3-32-32z"/></svg>�����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/object-ungroup.svg��������������0000664�0000000�0000000�00000003151�14753064456�0031265�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48.2 66.8c-.1-.8-.2-1.7-.2-2.5v-.2c0-8.8 7.2-16 16-16 .9 0 1.9.1 2.8.2C74.3 49.5 80 56.1 80 64c0 8.8-7.2 16-16 16-7.9 0-14.5-5.7-15.8-13.2M0 64c0 26.9 16.5 49.9 40 59.3v105.3C16.5 238.1 0 261.1 0 288c0 35.3 28.7 64 64 64 26.9 0 49.9-16.5 59.3-40h201.3c9.5 23.5 32.5 40 59.3 40 35.3 0 64-28.7 64-64 0-26.9-16.5-49.9-40-59.3V123.4c23.5-9.5 40-32.5 40-59.3 0-35.3-28.7-64-64-64-26.9 0-49.9 16.5-59.3 40L123.3 40C113.9 16.5 90.9 0 64 0 28.7 0 0 28.7 0 64m368 0a16 16 0 1 1 32 0 16 16 0 1 1-32 0m-43.3 24c6.5 16 19.3 28.9 35.3 35.3v105.3c-16 6.5-28.9 19.3-35.3 35.3H123.4c-6.5-16-19.3-28.9-35.3-35.3V123.3c16-6.5 28.9-19.3 35.3-35.3zM384 272a16 16 0 1 1 0 32 16 16 0 1 1 0-32M80 288c0 7.9-5.7 14.5-13.2 15.8-.8.1-1.7.2-2.5.2h-.2c-8.8 0-16-7.2-16-16 0-.9.1-1.9.2-2.8 1.2-7.5 7.8-13.2 15.7-13.2 8.8 0 16 7.2 16 16m391.3-40h45.4c6.5 16 19.3 28.9 35.3 35.3v105.3c-16 6.5-28.9 19.3-35.3 35.3H315.4c-6.5-16-19.3-28.9-35.3-35.3v-36.7h-48v36.7c-23.5 9.5-40 32.5-40 59.3 0 35.3 28.7 64 64 64 26.9 0 49.9-16.5 59.3-40h201.3c9.5 23.5 32.5 40 59.3 40 35.3 0 64-28.7 64-64 0-26.9-16.5-49.9-40-59.3V283.3c23.5-9.5 40-32.5 40-59.3 0-35.3-28.7-64-64-64-26.9 0-49.9 16.5-59.3 40H448v16.4c9.8 8.8 17.8 19.5 23.3 31.6m88.9-26.7a16 16 0 1 1 31.5 5.5 16 16 0 1 1-31.5-5.5M271.8 450.7a16 16 0 1 1-31.5-5.5 16 16 0 1 1 31.5 5.5m307-18.5a16 16 0 1 1-5.5 31.5 16 16 0 1 1 5.5-31.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/paper-plane.svg�����������������0000664�0000000�0000000�00000001073�14753064456�0030527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M16.1 260.2c-22.6 12.9-20.5 47.3 3.6 57.3L160 376v103.3c0 18.1 14.6 32.7 32.7 32.7 9.7 0 18.9-4.3 25.1-11.8l62-74.3 123.9 51.6c18.9 7.9 40.8-4.5 43.9-24.7l64-416c1.9-12.1-3.4-24.3-13.5-31.2s-23.3-7.5-34-1.4zm52.1 25.5L409.7 90.6 190.1 336l1.2 1zm335.1 139.7-166.6-69.5 214.1-239.3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/paste.svg�����������������������0000664�0000000�0000000�00000001463�14753064456�0027442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M104.6 48H64C28.7 48 0 76.7 0 112v272c0 35.3 28.7 64 64 64h96v-48H64c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16h16c0 17.7 14.3 32 32 32h72.4c17.6-19.6 43.2-32 71.6-32h62c-7.1-27.6-32.2-48-62-48h-40.6C211.6 20.9 188.2 0 160 0s-51.6 20.9-55.4 48m39.4 8a16 16 0 1 1 32 0 16 16 0 1 1-32 0m304 408H256c-8.8 0-16-7.2-16-16V192c0-8.8 7.2-16 16-16h140.1l67.9 67.9V448c0 8.8-7.2 16-16 16m-192 48h192c35.3 0 64-28.7 64-64V243.9c0-12.7-5.1-24.9-14.1-33.9L430 142.1c-9-9-21.2-14.1-33.9-14.1H256c-35.3 0-64 28.7-64 64v256c0 35.3 28.7 64 64 64"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/pen-to-square.svg���������������0000664�0000000�0000000�00000001664�14753064456�0031031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M441 58.9 453.1 71c9.4 9.4 9.4 24.6 0 33.9L424 134.1 377.9 88 407 58.9c9.4-9.4 24.6-9.4 33.9 0zM209.8 256.2 344 121.9l46.1 46.1-134.3 134.2c-2.9 2.9-6.5 5-10.4 6.1L186.9 325l16.7-58.5c1.1-3.9 3.2-7.5 6.1-10.4zM373.1 25 175.8 222.2c-8.7 8.7-15 19.4-18.3 31.1l-28.6 100c-2.4 8.4-.1 17.4 6.1 23.6s15.2 8.5 23.6 6.1l100-28.6c11.8-3.4 22.5-9.7 31.1-18.3L487 138.9c28.1-28.1 28.1-73.7 0-101.8L474.9 25c-28.1-28.1-73.7-28.1-101.8 0M88 64c-48.6 0-88 39.4-88 88v272c0 48.6 39.4 88 88 88h272c48.6 0 88-39.4 88-88V312c0-13.3-10.7-24-24-24s-24 10.7-24 24v112c0 22.1-17.9 40-40 40H88c-22.1 0-40-17.9-40-40V152c0-22.1 17.9-40 40-40h112c13.3 0 24-10.7 24-24s-10.7-24-24-24z"/></svg>����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/rectangle-list.svg��������������0000664�0000000�0000000�00000001566�14753064456�0031247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 80c-8.8 0-16 7.2-16 16v320c0 8.8 7.2 16 16 16h448c8.8 0 16-7.2 16-16V96c0-8.8-7.2-16-16-16zM0 96c0-35.3 28.7-64 64-64h448c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm96 64a32 32 0 1 1 64 0 32 32 0 1 1-64 0m104 0c0-13.3 10.7-24 24-24h224c13.3 0 24 10.7 24 24s-10.7 24-24 24H224c-13.3 0-24-10.7-24-24m0 96c0-13.3 10.7-24 24-24h224c13.3 0 24 10.7 24 24s-10.7 24-24 24H224c-13.3 0-24-10.7-24-24m0 96c0-13.3 10.7-24 24-24h224c13.3 0 24 10.7 24 24s-10.7 24-24 24H224c-13.3 0-24-10.7-24-24m-72-64a32 32 0 1 1 0-64 32 32 0 1 1 0 64m-32 64a32 32 0 1 1 64 0 32 32 0 1 1-64 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/rectangle-xmark.svg�������������0000664�0000000�0000000�00000001314�14753064456�0031405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 80c-8.8 0-16 7.2-16 16v320c0 8.8 7.2 16 16 16h384c8.8 0 16-7.2 16-16V96c0-8.8-7.2-16-16-16zM0 96c0-35.3 28.7-64 64-64h384c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm175 79c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/registered.svg������������������0000664�0000000�0000000�00000001166�14753064456�0030463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416m0 464a256 256 0 1 0 0-512 256 256 0 1 0 0 512m-96-360v208c0 13.3 10.7 24 24 24s24-10.7 24-24v-72h60.9l37.2 81.9c5.5 12.1 19.7 17.4 31.8 11.9s17.4-19.7 11.9-31.8l-34.1-75c21.8-14.3 36.3-39 36.3-67 0-44.2-35.8-80-80-80h-88c-13.3 0-24 10.7-24 24m48 88v-64h64c17.7 0 32 14.3 32 32s-14.3 32-32 32z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/share-from-square.svg�����������0000664�0000000�0000000�00000002302�14753064456�0031660�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M400 255.4V208c0-8.8-7.2-16-16-16h-94.5c-50.9 0-93.9 33.5-108.3 79.6-3.3-9.4-5.2-19.8-5.2-31.6 0-61.9 50.1-112 112-112h96c8.8 0 16-7.2 16-16V64.6L506 160zM336 240h16v48c0 17.7 14.3 32 32 32h3.7c7.9 0 15.5-2.9 21.4-8.2l139-125.1c7.6-6.8 11.9-16.5 11.9-26.7s-4.3-19.9-11.9-26.7L409.9 8.9C403.5 3.2 395.3 0 386.7 0 367.5 0 352 15.5 352 34.7V80h-64c-88.4 0-160 71.6-160 160 0 60.4 34.6 99.1 63.9 120.9 5.9 4.4 11.5 8.1 16.7 11.2 4.4 2.7 8.5 4.9 11.9 6.6s6.2 3 8.2 3.9c2.2 1 4.6 1.4 7.1 1.4h2.5c9.8 0 17.8-8 17.8-17.8 0-7.8-5.3-14.7-11.6-19.5-.4-.3-.7-.5-1.1-.8-1.7-1.1-3.4-2.5-5-4.1-.8-.8-1.7-1.6-2.5-2.6s-1.6-1.9-2.4-2.9c-1.8-2.5-3.5-5.3-5-8.5-2.6-6-4.3-13.3-4.3-22.4 0-36.1 29.3-65.5 65.5-65.5h46.5zM72 32C32.2 32 0 64.2 0 104v336c0 39.8 32.2 72 72 72h336c39.8 0 72-32.2 72-72v-64c0-13.3-10.7-24-24-24s-24 10.7-24 24v64c0 13.3-10.7 24-24 24H72c-13.3 0-24-10.7-24-24V104c0-13.3 10.7-24 24-24h64c13.3 0 24-10.7 24-24s-10.7-24-24-24z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/snowflake.svg�������������������0000664�0000000�0000000�00000002706�14753064456�0030320�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 0c13.3 0 24 10.7 24 24v46.1l23-23c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-57 57v76.5l66.2-38.2L335 98.5c3.4-12.8 16.6-20.4 29.4-17s20.4 16.6 17 29.4l-8.4 31.3 37.1-21.4c11.5-6.6 26.2-2.7 32.8 8.8s2.7 26.2-8.8 32.8L397 183.8l31.5 8.4c12.8 3.4 20.4 16.6 17 29.4s-16.6 20.4-29.4 17l-77.8-20.9L272 256l66.2 38.2 77.8-20.9c12.8-3.4 26 4.2 29.4 17s-4.2 26-17 29.4l-31.4 8.5 37.1 21.4c11.5 6.6 15.4 21.3 8.8 32.8s-21.3 15.4-32.8 8.8L373 369.8l8.4 31.5c3.4 12.8-4.2 26-17 29.4s-26-4.2-29.4-17l-20.9-77.8-66.1-38.3v76.5l57 57c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-23-23v46.1c0 13.3-10.7 24-24 24s-24-10.7-24-24V442l-23 23c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l57-57v-76.5L134 335.8l-20.9 77.8c-3.4 12.8-16.6 20.4-29.4 17s-20.4-16.6-17-29.4l8.3-31.4-37.1 21.4c-11.5 6.6-26.2 2.7-32.8-8.8s-2.7-26.2 8.8-32.8L51 328.2l-31.5-8.4c-12.8-3.4-20.4-16.6-17-29.4s16.6-20.4 29.4-17l77.8 20.9L176 256l-66.2-38.2-77.9 20.8c-12.8 3.4-26-4.2-29.4-17s4.2-26 17-29.4l31.5-8.4-37.1-21.4c-11.5-6.6-15.4-21.3-8.8-32.8s21.3-15.4 32.8-8.8L75 142.2l-8.4-31.5c-3.4-12.8 4.2-26 17-29.4s26 4.2 29.4 17l20.9 77.8 66.1 38.3v-76.5L143 81c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l23 23L200 24c0-13.3 10.7-24 24-24"/></svg>����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/square-caret-down.svg�����������0000664�0000000�0000000�00000001214�14753064456�0031661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 432c8.8 0 16-7.2 16-16V96c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16v320c0 8.8 7.2 16 16 16zm64-16c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96c0-35.3 28.7-64 64-64h320c35.3 0 64 28.7 64 64zm-224-64c-6.7 0-13-2.8-17.6-7.7l-104-112c-6.5-7-8.2-17.2-4.4-25.9s12.5-14.4 22-14.4h208c9.5 0 18.2 5.7 22 14.4s2.1 18.9-4.4 25.9l-104 112c-4.5 4.9-10.9 7.7-17.6 7.7"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/square-caret-left.svg�����������0000664�0000000�0000000�00000001211�14753064456�0031641�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48 416c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16V96c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16zm16 64c-35.3 0-64-28.7-64-64V96c0-35.3 28.7-64 64-64h320c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64zm64-224c0-6.7 2.8-13 7.7-17.6l112-104c7-6.5 17.2-8.2 25.9-4.4s14.4 12.5 14.4 22v208c0 9.5-5.7 18.2-14.4 22s-18.9 2.1-25.9-4.4l-112-104c-4.9-4.5-7.7-10.9-7.7-17.6"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/square-caret-right.svg����������0000664�0000000�0000000�00000001212�14753064456�0032025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M400 96c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16v320c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16zm-16-64c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96c0-35.3 28.7-64 64-64zm-64 224c0 6.7-2.8 13-7.7 17.6l-112 104c-7 6.5-17.2 8.2-25.9 4.4S160 369.5 160 360V152c0-9.5 5.7-18.2 14.4-22s18.9-2.1 25.9 4.4l112 104c4.9 4.5 7.7 10.9 7.7 17.6"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/square-caret-up.svg�������������0000664�0000000�0000000�00000001207�14753064456�0031340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 80c-8.8 0-16 7.2-16 16v320c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16V96c0-8.8-7.2-16-16-16zM0 96c0-35.3 28.7-64 64-64h320c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm224 64c6.7 0 13 2.8 17.6 7.7l104 112c6.5 7 8.2 17.2 4.4 25.9S337.5 320 328 320H120c-9.5 0-18.2-5.7-22-14.4s-2.1-18.9 4.4-25.9l104-112c4.5-4.9 10.9-7.7 17.6-7.7"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/square-check.svg����������������0000664�0000000�0000000�00000001167�14753064456�0030702�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 80c-8.8 0-16 7.2-16 16v320c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16V96c0-8.8-7.2-16-16-16zM0 96c0-35.3 28.7-64 64-64h320c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm337 113L209 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L303 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/square-full.svg�����������������0000664�0000000�0000000�00000000510�14753064456�0030556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 48v416H48V48zM48 0H0v512h512V0H48"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/square-minus.svg����������������0000664�0000000�0000000�00000001077�14753064456�0030760�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 80c-8.8 0-16 7.2-16 16v320c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16V96c0-8.8-7.2-16-16-16zM0 96c0-35.3 28.7-64 64-64h320c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm152 136h144c13.3 0 24 10.7 24 24s-10.7 24-24 24H152c-13.3 0-24-10.7-24-24s10.7-24 24-24"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/square-plus.svg�����������������0000664�0000000�0000000�00000001232�14753064456�0030601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 80c-8.8 0-16 7.2-16 16v320c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16V96c0-8.8-7.2-16-16-16zM0 96c0-35.3 28.7-64 64-64h320c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm200 248v-64h-64c-13.3 0-24-10.7-24-24s10.7-24 24-24h64v-64c0-13.3 10.7-24 24-24s24 10.7 24 24v64h64c13.3 0 24 10.7 24 24s-10.7 24-24 24h-64v64c0 13.3-10.7 24-24 24s-24-10.7-24-24"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/square.svg����������������������0000664�0000000�0000000�00000000746�14753064456�0027631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 80c8.8 0 16 7.2 16 16v320c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V96c0-8.8 7.2-16 16-16zM64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64z"/></svg>��������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/star-half-stroke.svg������������0000664�0000000�0000000�00000001401�14753064456�0031504�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M309.5 13.5C305.5 5.2 297.1 0 287.9 0s-17.6 5.2-21.6 13.5l-68.6 141.3-153.2 22.7c-9 1.3-16.5 7.6-19.3 16.3s-.5 18.1 5.9 24.5l111.1 110.1L116 483.9c-1.5 9 2.2 18.1 9.7 23.5s17.3 6 25.3 1.7l137-73.2 137 73.2c8.1 4.3 17.9 3.7 25.3-1.7s11.2-14.5 9.7-23.5l-26.4-155.5 111.2-110.2c6.5-6.4 8.7-15.9 5.9-24.5s-10.3-14.9-19.3-16.3l-153.3-22.6zM288 384.7V79.1l52.5 108.1c3.5 7.1 10.2 12.1 18.1 13.3L476.9 218 391 303c-5.5 5.5-8.1 13.3-6.8 21l20.2 119.6-105.2-56.1c-3.5-1.9-7.4-2.8-11.2-2.8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/star-half.svg�������������������0000664�0000000�0000000�00000001207�14753064456�0030203�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M293.3.6c10.9 2.5 18.6 12.2 18.6 23.4v384.7c0 8.9-4.9 17-12.7 21.2L151 509.1c-8.1 4.3-17.9 3.7-25.3-1.7s-11.2-14.5-9.7-23.5l26.2-155.6-111.1-110c-6.5-6.4-8.7-15.9-5.9-24.5s10.3-14.9 19.3-16.3l153.2-22.6 68.6-141.4c4.9-10.1 16.1-15.4 27-12.9m-29.4 127.8-28.6 58.8c-3.5 7.1-10.2 12.1-18.1 13.3L99 217.9l85.9 85.1c5.5 5.5 8.1 13.3 6.8 21l-20.3 119.7 92.5-49.4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/star.svg������������������������0000664�0000000�0000000�00000001542�14753064456�0027275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M287.9 0c9.2 0 17.6 5.2 21.6 13.5l68.6 141.3 153.2 22.6c9 1.3 16.5 7.6 19.3 16.3s.5 18.1-5.9 24.5L433.6 328.4 459.8 484c1.5 9-2.2 18.1-9.7 23.5s-17.3 6-25.3 1.7l-137-73.2L151 509.1c-8.1 4.3-17.9 3.7-25.3-1.7s-11.2-14.5-9.7-23.5l26.2-155.6L31.1 218.2c-6.5-6.4-8.7-15.9-5.9-24.5s10.3-14.9 19.3-16.3l153.2-22.6 68.6-141.3C270.4 5.2 278.7 0 287.9 0m0 79-52.5 108.2c-3.5 7.1-10.2 12.1-18.1 13.3L99 217.9l85.9 85.1c5.5 5.5 8.1 13.3 6.8 21l-20.3 119.7 105.2-56.2c7.1-3.8 15.6-3.8 22.6 0l105.2 56.2-20.2-119.6c-1.3-7.7 1.2-15.5 6.8-21l85.9-85.1-118.3-17.5c-7.8-1.2-14.6-6.1-18.1-13.3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/sun.svg�������������������������0000664�0000000�0000000�00000002374�14753064456�0027135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M375.7 19.7c-1.5-8-6.9-14.7-14.4-17.8s-16.1-2.2-22.8 2.4L256 61.1 173.5 4.2c-6.7-4.6-15.3-5.5-22.8-2.4s-12.9 9.8-14.4 17.8l-18.1 98.5-98.5 18.2c-8 1.5-14.7 6.9-17.8 14.4s-2.2 16.1 2.4 22.8L61.1 256 4.2 338.5c-4.6 6.7-5.5 15.3-2.4 22.8s9.8 13 17.8 14.4l98.5 18.1 18.1 98.5c1.5 8 6.9 14.7 14.4 17.8s16.1 2.2 22.8-2.4l82.6-56.8 82.5 56.9c6.7 4.6 15.3 5.5 22.8 2.4s12.9-9.8 14.4-17.8l18.1-98.5 98.5-18.1c8-1.5 14.7-6.9 17.8-14.4s2.2-16.1-2.4-22.8L450.9 256l56.9-82.5c4.6-6.7 5.5-15.3 2.4-22.8s-9.8-12.9-17.8-14.4l-98.5-18.1zM269.6 110l65.6-45.2 14.4 78.3c1.8 9.8 9.5 17.5 19.3 19.3l78.3 14.4-45.2 65.6c-5.7 8.2-5.7 19 0 27.2l45.2 65.6-78.3 14.4c-9.8 1.8-17.5 9.5-19.3 19.3l-14.4 78.3-65.6-45.2c-8.2-5.7-19-5.7-27.2 0l-65.6 45.2-14.4-78.3c-1.8-9.8-9.5-17.5-19.3-19.3l-78.3-14.4 45.2-65.6c5.7-8.2 5.7-19 0-27.2l-45.2-65.6 78.3-14.4c9.8-1.8 17.5-9.5 19.3-19.3l14.4-78.3 65.6 45.2c8.2 5.7 19 5.7 27.2 0M256 368a112 112 0 1 0 0-224 112 112 0 1 0 0 224m-64-112a64 64 0 1 1 128 0 64 64 0 1 1-128 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/thumbs-down.svg�����������������0000664�0000000�0000000�00000002507�14753064456�0030575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M323.8 477.2c-38.2 10.9-78.1-11.2-89-49.4l-5.7-20c-3.7-13-10.4-25-19.5-35l-51.3-56.4c-8.9-9.8-8.2-25 1.6-33.9s25-8.2 33.9 1.6l51.3 56.4c14.1 15.5 24.4 34 30.1 54.1l5.7 20c3.6 12.7 16.9 20.1 29.7 16.5s20.1-16.9 16.5-29.7l-5.7-20c-5.7-19.9-14.7-38.7-26.6-55.5-5.2-7.3-5.8-16.9-1.7-24.9s12.3-13 21.3-13H448c8.8 0 16-7.2 16-16 0-6.8-4.3-12.7-10.4-15-7.4-2.8-13-9-14.9-16.7s.1-15.8 5.3-21.7c2.5-2.8 4-6.5 4-10.6 0-7.8-5.6-14.3-13-15.7-8.2-1.6-15.1-7.3-18-15.2s-1.6-16.7 3.6-23.3c2.1-2.7 3.4-6.1 3.4-9.9 0-6.7-4.2-12.6-10.2-14.9-11.5-4.5-17.7-16.9-14.4-28.8.4-1.3.6-2.8.6-4.3 0-8.8-7.2-16-16-16h-97.5c-12.6 0-25 3.7-35.5 10.7l-61.7 41.1c-11 7.4-25.9 4.4-33.3-6.7s-4.4-25.9 6.7-33.3l61.7-41.1c18.4-12.3 40-18.8 62.1-18.8l97.5.2c34.7 0 62.9 27.6 64 62 14.6 11.7 24 29.7 24 50 0 4.5-.5 8.8-1.3 13 15.4 11.7 25.3 30.2 25.3 51 0 6.5-1 12.8-2.8 18.7 11.6 11.6 18.8 27.6 18.8 45.3 0 35.3-28.6 64-64 64h-92.3c4.7 10.4 8.7 21.2 11.8 32.2l5.7 20c10.9 38.2-11.2 78.1-49.4 89M32 384c-17.7 0-32-14.3-32-32V128c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32v224c0 17.7-14.3 32-32 32z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/thumbs-up.svg�������������������0000664�0000000�0000000�00000002503�14753064456�0030246�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M323.8 34.8c-38.2-10.9-78.1 11.2-89 49.4l-5.7 20c-3.7 13-10.4 25-19.5 35l-51.3 56.4c-8.9 9.8-8.2 25 1.6 33.9s25 8.2 33.9-1.6l51.3-56.4c14.1-15.5 24.4-34 30.1-54.1l5.7-20c3.6-12.7 16.9-20.1 29.7-16.5s20.1 16.9 16.5 29.7l-5.7 20c-5.7 19.9-14.7 38.7-26.6 55.5-5.2 7.3-5.8 16.9-1.7 24.9s12.3 13 21.3 13H448c8.8 0 16 7.2 16 16 0 6.8-4.3 12.7-10.4 15-7.4 2.8-13 9-14.9 16.7s.1 15.8 5.3 21.7c2.5 2.8 4 6.5 4 10.6 0 7.8-5.6 14.3-13 15.7-8.2 1.6-15.1 7.3-18 15.2s-1.6 16.7 3.6 23.3c2.1 2.7 3.4 6.1 3.4 9.9 0 6.7-4.2 12.6-10.2 14.9-11.5 4.5-17.7 16.9-14.4 28.8.4 1.3.6 2.8.6 4.3 0 8.8-7.2 16-16 16h-97.5c-12.6 0-25-3.7-35.5-10.7l-61.7-41.1c-11-7.4-25.9-4.4-33.3 6.7s-4.4 25.9 6.7 33.3l61.7 41.1c18.4 12.3 40 18.8 62.1 18.8H384c34.7 0 62.9-27.6 64-62 14.6-11.7 24-29.7 24-50 0-4.5-.5-8.8-1.3-13 15.4-11.7 25.3-30.2 25.3-51 0-6.5-1-12.8-2.8-18.7 11.6-11.8 18.8-27.8 18.8-45.5 0-35.3-28.6-64-64-64h-92.3c4.7-10.4 8.7-21.2 11.8-32.2l5.7-20c10.9-38.2-11.2-78.1-49.4-89M32 192c-17.7 0-32 14.3-32 32v224c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/trash-can.svg�������������������0000664�0000000�0000000�00000001603�14753064456�0030202�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m170.5 51.6-19 28.4h145l-19-28.4c-1.5-2.2-4-3.6-6.7-3.6h-93.7c-2.7 0-5.2 1.3-6.7 3.6zm147-26.6 36.7 55H424c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8v304c0 44.2-35.8 80-80 80H112c-44.2 0-80-35.8-80-80V128h-8c-13.3 0-24-10.7-24-24s10.7-24 24-24h69.8l36.7-55.1C140.9 9.4 158.4 0 177.1 0h93.7c18.7 0 36.2 9.4 46.6 24.9zM80 128v304c0 17.7 14.3 32 32 32h224c17.7 0 32-14.3 32-32V128zm80 64v208c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-8.8 7.2-16 16-16s16 7.2 16 16m80 0v208c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-8.8 7.2-16 16-16s16 7.2 16 16m80 0v208c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-8.8 7.2-16 16-16s16 7.2 16 16"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/user.svg������������������������0000664�0000000�0000000�00000001110�14753064456�0027271�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M304 128a80 80 0 1 0-160 0 80 80 0 1 0 160 0m-208 0a128 128 0 1 1 256 0 128 128 0 1 1-256 0M49.3 464h349.5c-8.9-63.3-63.3-112-129-112h-91.4c-65.7 0-120.1 48.7-129 112zM0 482.3C0 383.8 79.8 304 178.3 304h91.4c98.5 0 178.3 79.8 178.3 178.3 0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/window-maximize.svg�������������0000664�0000000�0000000�00000001041�14753064456�0031446�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M.3 89.5C.1 91.6 0 93.8 0 96v320c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64c-2.2 0-4.4.1-6.5.3-9.2.9-17.8 3.8-25.5 8.2-10.2 6-18.6 14.6-24.3 25-3.9 7.3-6.5 15.4-7.4 24M48 224h416v192c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/window-minimize.svg�������������0000664�0000000�0000000�00000000566�14753064456�0031457�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M24 432c-13.3 0-24 10.7-24 24s10.7 24 24 24h464c13.3 0 24-10.7 24-24s-10.7-24-24-24z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/regular/window-restore.svg��������������0000664�0000000�0000000�00000001160�14753064456�0031310�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M432 48H208c-17.7 0-32 14.3-32 32v16h-48V80c0-44.2 35.8-80 80-80h224c44.2 0 80 35.8 80 80v224c0 44.2-35.8 80-80 80h-16v-48h16c17.7 0 32-14.3 32-32V80c0-17.7-14.3-32-32-32M48 448c0 8.8 7.2 16 16 16h256c8.8 0 16-7.2 16-16V256H48zm16-320h256c35.3 0 64 28.7 64 64v256c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192c0-35.3 28.7-64 64-64"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/����������������������������������0000775�0000000�0000000�00000000000�14753064456�0025252�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/0.svg�����������������������������0000664�0000000�0000000�00000000712�14753064456�0026132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 192C0 103.6 71.6 32 160 32s160 71.6 160 160v128c0 88.4-71.6 160-160 160S0 408.4 0 320zm160-96c-53 0-96 43-96 96v128c0 53 43 96 96 96s96-43 96-96V192c0-53-43-96-96-96"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/1.svg�����������������������������0000664�0000000�0000000�00000000751�14753064456�0026136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 64c0-11.8-6.5-22.6-16.9-28.2s-23-5-32.8 1.6l-96 64C-.5 111.2-4.4 131 5.4 145.8s29.7 18.7 44.4 8.9L96 123.8V416H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h192c17.7 0 32-14.3 32-32s-14.3-32-32-32h-64z"/></svg>�����������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/2.svg�����������������������������0000664�0000000�0000000�00000001201�14753064456�0026126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M142.9 96c-21.5 0-42.2 8.5-57.4 23.8l-30.9 30.8c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l30.9-30.8C67.5 47.3 104.4 32 142.9 32 223 32 288 97 288 177.1c0 38.5-15.3 75.4-42.5 102.6L109.3 416H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9l190.9-190.8c15.2-15.2 23.8-35.9 23.8-57.4 0-44.8-36.3-81.1-81.1-81.1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/3.svg�����������������������������0000664�0000000�0000000�00000001223�14753064456�0026133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32h240c13.2 0 25 8.1 29.8 20.4s1.5 26.3-8.2 35.2L162.3 208H184c75.1 0 136 60.9 136 136s-60.9 136-136 136h-78.6C63 480 24.2 456 5.3 418.1l-1.9-3.8c-7.9-15.8-1.5-35 14.3-42.9s35-1.5 42.9 14.3l1.9 3.8c8.1 16.3 24.8 26.5 42.9 26.5H184c39.8 0 72-32.2 72-72s-32.2-72-72-72H80c-13.2 0-25-8.1-29.8-20.4s-1.5-26.3 8.2-35.2L189.7 96H32C14.3 96 0 81.7 0 64"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/4.svg�����������������������������0000664�0000000�0000000�00000001023�14753064456�0026132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M189 77.6c7.5-16 .7-35.1-15.3-42.6s-35.1-.7-42.6 15.3L3 322.4c-4.7 9.9-3.9 21.5 1.9 30.8S21 368 32 368h224v80c0 17.7 14.3 32 32 32s32-14.3 32-32v-80h32c17.7 0 32-14.3 32-32s-14.3-32-32-32h-32V160c0-17.7-14.3-32-32-32s-32 14.3-32 32v144H82.4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/5.svg�����������������������������0000664�0000000�0000000�00000001173�14753064456�0026141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32.5 58.3C35.3 43.1 48.5 32 64 32h192c17.7 0 32 14.3 32 32s-14.3 32-32 32H90.7L70.3 208H184c75.1 0 136 60.9 136 136s-60.9 136-136 136h-83.5c-39.4 0-75.4-22.3-93-57.5l-4.1-8.2c-7.9-15.8-1.5-35 14.3-42.9s35-1.5 42.9 14.3l4.1 8.2c6.8 13.6 20.6 22.1 35.8 22.1H184c39.8 0 72-32.2 72-72s-32.2-72-72-72H32c-9.5 0-18.5-4.2-24.6-11.5s-8.6-16.9-6.9-26.2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/6.svg�����������������������������0000664�0000000�0000000�00000001031�14753064456�0026133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M232.4 84.7c11.4-13.5 9.7-33.7-3.8-45.1s-33.7-9.7-45.1 3.8L38.6 214.7C14.7 242.9 1.1 278.4.1 315.2c0 1.4-.1 2.9-.1 4.3v.5c0 88.4 71.6 160 160 160s160-71.6 160-160c0-85.5-67.1-155.4-151.5-159.8l63.9-75.6zM256 320a96 96 0 1 1-192 0 96 96 0 1 1 192 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/7.svg�����������������������������0000664�0000000�0000000�00000000705�14753064456�0026143�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32h256c11.5 0 22 6.1 27.7 16.1s5.7 22.2-.1 32.1l-224 384c-8.9 15.3-28.5 20.4-43.8 11.5s-20.4-28.5-11.5-43.8L232.3 96H32C14.3 96 0 81.7 0 64"/></svg>�����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/8.svg�����������������������������0000664�0000000�0000000�00000001237�14753064456�0026145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M304 160c0-70.7-57.3-128-128-128h-32C73.3 32 16 89.3 16 160c0 34.6 13.7 66 36 89-31.5 23.3-52 60.8-52 103 0 70.7 57.3 128 128 128h64c70.7 0 128-57.3 128-128 0-42.2-20.5-79.7-52-103 22.3-23 36-54.4 36-89M176.1 288H192c35.3 0 64 28.7 64 64s-28.7 64-64 64h-64c-35.3 0-64-28.7-64-64s28.7-64 64-64h48.1m0-64h-32c-35.3 0-64-28.7-64-64s28.7-64 64-64h32c35.3 0 64 28.7 64 64s-28.6 64-64 64"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/9.svg�����������������������������0000664�0000000�0000000�00000001020�14753064456�0026134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 192a96 96 0 1 0 192 0 96 96 0 1 0-192 0m87.5 159.8C67.1 347.4 0 277.5 0 192 0 103.6 71.6 32 160 32s160 71.6 160 160c0 2.6-.1 5.3-.2 7.9-1.7 35.7-15.2 70-38.4 97.4l-145 171.4c-11.4 13.5-31.6 15.2-45.1 3.8s-15.2-31.6-3.8-45.1l63.9-75.6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/a.svg�����������������������������0000664�0000000�0000000�00000001000�14753064456�0026202�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M221.5 51.7C216.6 39.8 204.9 32 192 32s-24.6 7.8-29.5 19.7l-120 288-40 96c-6.8 16.3.9 35 17.2 41.8s35-.9 41.8-17.2L93.3 384h197.3l31.8 76.3c6.8 16.3 25.5 24 41.8 17.2s24-25.5 17.2-41.8l-40-96-120-288zM264 320H120l72-172.8z"/></svg>mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/address-book.svg������������������0000664�0000000�0000000�00000001400�14753064456�0030343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 0C60.7 0 32 28.7 32 64v384c0 35.3 28.7 64 64 64h288c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm112 288h64c44.2 0 80 35.8 80 80 0 8.8-7.2 16-16 16H144c-8.8 0-16-7.2-16-16 0-44.2 35.8-80 80-80m-32-96a64 64 0 1 1 128 0 64 64 0 1 1-128 0M512 80c0-8.8-7.2-16-16-16s-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16zm-16 112c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16v-64c0-8.8-7.2-16-16-16m16 144c0-8.8-7.2-16-16-16s-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/address-card.svg������������������0000664�0000000�0000000�00000001377�14753064456�0030337�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm80 256h64c44.2 0 80 35.8 80 80 0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16 0-44.2 35.8-80 80-80m-32-96a64 64 0 1 1 128 0 64 64 0 1 1-128 0m256-32h128c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16m0 64h128c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16m0 64h128c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/align-center.svg������������������0000664�0000000�0000000�00000001225�14753064456�0030343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M352 64c0-17.7-14.3-32-32-32H128c-17.7 0-32 14.3-32 32s14.3 32 32 32h192c17.7 0 32-14.3 32-32m96 128c0-17.7-14.3-32-32-32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h384c17.7 0 32-14.3 32-32M0 448c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32m352-128c0-17.7-14.3-32-32-32H128c-17.7 0-32 14.3-32 32s14.3 32 32 32h192c17.7 0 32-14.3 32-32"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/align-justify.svg�����������������0000664�0000000�0000000�00000001220�14753064456�0030553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64s14.3 32 32 32h384c17.7 0 32-14.3 32-32m0 256c0-17.7-14.3-32-32-32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h384c17.7 0 32-14.3 32-32M0 192c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32m448 256c0-17.7-14.3-32-32-32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h384c17.7 0 32-14.3 32-32"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/align-left.svg��������������������0000664�0000000�0000000�00000001220�14753064456�0030010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 64c0 17.7-14.3 32-32 32H32C14.3 96 0 81.7 0 64s14.3-32 32-32h224c17.7 0 32 14.3 32 32m0 256c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h224c17.7 0 32 14.3 32 32M0 192c0-17.7 14.3-32 32-32h384c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32m448 256c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h384c17.7 0 32 14.3 32 32"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/align-right.svg�������������������0000664�0000000�0000000�00000001224�14753064456�0030177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 64c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32s14.3-32 32-32h224c17.7 0 32 14.3 32 32m0 256c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32s14.3-32 32-32h224c17.7 0 32 14.3 32 32M0 192c0-17.7 14.3-32 32-32h384c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32m448 256c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h384c17.7 0 32 14.3 32 32"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/anchor-circle-check.svg�����������0000664�0000000�0000000�00000001676�14753064456�0031571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 96a32 32 0 1 1-64 0 32 32 0 1 1 64 0m21.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v208h-48c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7v6.1c0 88.4 71.6 160 160 160h160c8.2 0 16.3-.6 24.2-1.8-22.2-16.2-40.4-37.5-53-62.2H320V240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32zM640 368a144 144 0 1 0-288 0 144 144 0 1 0 288 0m-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l28.7 28.7 60.7-60.7c6.2-6.2 16.4-6.2 22.6 0"/></svg>������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/anchor-circle-exclamation.svg�����0000664�0000000�0000000�00000001632�14753064456�0033010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 96a32 32 0 1 1-64 0 32 32 0 1 1 64 0m21.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v208h-48c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7v6.1c0 88.4 71.6 160 160 160h160c8.2 0 16.3-.6 24.2-1.8-22.2-16.2-40.4-37.5-53-62.2H320V240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288m0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48m0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16v-80c0-8.8 7.2-16 16-16"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/anchor-circle-xmark.svg�����������0000664�0000000�0000000�00000002037�14753064456�0031626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 96a32 32 0 1 1-64 0 32 32 0 1 1 64 0m21.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v208h-48c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7v6.1c0 88.4 71.6 160 160 160h160c8.2 0 16.3-.6 24.2-1.8-22.2-16.2-40.4-37.5-53-62.2H320V240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288m59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l36.7-36.7-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l36.7 36.7 36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/anchor-lock.svg�������������������0000664�0000000�0000000�00000001732�14753064456�0030176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 96a32 32 0 1 1-64 0 32 32 0 1 1 64 0m21.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v208h-48c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7v6.1c0 88.4 71.6 160 160 160h160c8 0 15.9-.6 23.6-1.7-4.8-9-7.6-19.3-7.6-30.3v-33.3c-5.2.9-10.5 1.3-16 1.3h-48V240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H341zM528 240c17.7 0 32 14.3 32 32v48h-64v-48c0-17.7 14.3-32 32-32m-80 32v48c-17.7 0-32 14.3-32 32v128c0 17.7 14.3 32 32 32h160c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32v-48c0-44.2-35.8-80-80-80s-80 35.8-80 80"/></svg>��������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/anchor.svg������������������������0000664�0000000�0000000�00000001564�14753064456�0027253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 96a32 32 0 1 1-64 0 32 32 0 1 1 64 0m21.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v208h-48c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7v6.1c0 88.4 71.6 160 160 160h160c88.4 0 160-71.6 160-160v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-56-56c-9.4-9.4-24.6-9.4-33.9 0l-56 56c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7v6.1c0 53-43 96-96 96h-48V240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32h-10.9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/angle-down.svg��������������������0000664�0000000�0000000�00000000712�14753064456�0030026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M201.4 374.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 306.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/angle-left.svg��������������������0000664�0000000�0000000�00000000712�14753064456�0030011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256l137.3-137.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/angle-right.svg�������������������0000664�0000000�0000000�00000000713�14753064456�0030175�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M278.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 73.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/angle-up.svg����������������������0000664�0000000�0000000�00000000712�14753064456�0027503�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M201.4 137.4c12.5-12.5 32.8-12.5 45.3 0l160 160c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L224 205.3 86.6 342.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l160-160z"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/angles-down.svg�������������������0000664�0000000�0000000�00000001160�14753064456�0030207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M246.6 470.6c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L224 402.7l137.4-137.3c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-160 160zm160-352-160 160c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L224 210.7 361.4 73.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/angles-left.svg�������������������0000664�0000000�0000000�00000001156�14753064456�0030177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256l137.3-137.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160zm352-160-160 160c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L301.3 256l137.3-137.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/angles-right.svg������������������0000664�0000000�0000000�00000001162�14753064456�0030357�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M470.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 256 265.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160 160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L210.7 256 73.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/angles-up.svg���������������������0000664�0000000�0000000�00000001160�14753064456�0027664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M246.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L224 109.3l137.4 137.3c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160zm160 352-160-160c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L224 301.3l137.4 137.3c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/ankh.svg��������������������������0000664�0000000�0000000�00000001250�14753064456�0026712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 128c0-35.3 28.7-64 64-64s64 28.7 64 64c0 41.6-20.7 76.6-46.6 104.1-5.9 6.2-11.8 11.8-17.4 16.7-5.6-4.9-11.5-10.5-17.4-16.7C116.7 204.6 96 169.6 96 128M160 0C89.3 0 32 57.3 32 128c0 52.4 21.5 95.5 46.8 128H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96v160c0 17.7 14.3 32 32 32s32-14.3 32-32V320h96c17.7 0 32-14.3 32-32s-14.3-32-32-32h-46.8c25.4-32.5 46.8-75.6 46.8-128C288 57.3 230.7 0 160 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/apple-whole.svg�������������������0000664�0000000�0000000�00000001177�14753064456�0030216�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 112c-8.8 0-16-7.2-16-16V80c0-44.2 35.8-80 80-80h16c8.8 0 16 7.2 16 16v16c0 44.2-35.8 80-80 80zM0 288c0-76.3 35.7-160 112-160 27.3 0 59.7 10.3 82.7 19.3 18.8 7.3 39.9 7.3 58.7 0 22.9-8.9 55.4-19.3 82.7-19.3 76.3 0 112 83.7 112 160 0 128-80 224-160 224-16.5 0-38.1-6.6-51.5-11.3-8.1-2.8-16.9-2.8-25 0-13.4 4.7-35 11.3-51.5 11.3C80 512 0 416 0 288"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/archway.svg�����������������������0000664�0000000�0000000�00000000766�14753064456�0027442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 32C14.3 32 0 46.3 0 64s14.3 32 32 32h448c17.7 0 32-14.3 32-32s-14.3-32-32-32zm0 384c-17.7 0-32 14.3-32 32s14.3 32 32 32h128V352c0-53 43-96 96-96s96 43 96 96v128h128c17.7 0 32-14.3 32-32s-14.3-32-32-32V128H32z"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-down-1-9.svg����������������0000664�0000000�0000000�00000001667�14753064456�0030410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M450.7 38c-8.3-6-19.1-7.7-28.8-4.4l-48 16c-16.8 5.6-25.8 23.7-20.2 40.5s23.7 25.8 40.5 20.2l5.9-2v51.6h-16c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32h-16v-96c0-10.3-4.9-19.9-13.3-26zM160 480c9 0 17.5-3.8 23.6-10.4l88-96c11.9-13 11.1-33.3-2-45.2s-33.3-11.1-45.2 2L192 365.7V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v301.7l-32.4-35.3c-11.9-13-32.2-13.9-45.2-2s-13.9 32.2-2 45.2l88 96c6.1 6.6 14.6 10.4 23.6 10.4m258.3-173a32 32 0 1 1 27.4 57.9 32 32 0 1 1-27.4-57.9m-13.2 112.8-6.8 9.2c-10.5 14.2-7.5 34.2 6.7 44.8s34.2 7.5 44.8-6.7l48.8-65.8c14-18.9 21.5-41.7 21.5-65.2 0-48.6-39.4-88-88-88s-88 39.4-88 88c0 39.2 25.6 72.4 61.1 83.8z"/></svg>�������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-down-9-1.svg����������������0000664�0000000�0000000�00000001666�14753064456�0030407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 480c9 0 17.5-3.8 23.6-10.4l88-96c11.9-13 11.1-33.3-2-45.2s-33.3-11.1-45.2 2L192 365.7V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v301.7l-32.4-35.3c-11.9-13-32.2-13.9-45.2-2s-13.9 32.2-2 45.2l88 96c6.1 6.6 14.6 10.4 23.6 10.4m290.7-186c-8.3-6-19.1-7.7-28.8-4.4l-48 16c-16.8 5.6-25.8 23.7-20.2 40.5s23.7 25.8 40.5 20.2l5.9-2v51.6h-16c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32h-16v-96c0-10.3-4.9-19.9-13.3-26zM418.3 91a32 32 0 1 1 27.4 57.9A32 32 0 1 1 418.3 91m-13.2 112.8-6.8 9.2c-10.5 14.2-7.5 34.2 6.7 44.8s34.2 7.5 44.8-6.7l48.8-65.8c14-18.9 21.5-41.7 21.5-65.2 0-48.6-39.4-88-88-88s-88 39.4-88 88c0 39.2 25.6 72.4 61.1 83.8z"/></svg>��������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-down-a-z.svg����������������0000664�0000000�0000000�00000001700�14753064456�0030555�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M183.6 469.6C177.5 476.2 169 480 160 480s-17.5-3.8-23.6-10.4l-88-96c-11.9-13-11.1-33.3 2-45.2s33.3-11.1 45.2 2l32.4 35.3V64c0-17.7 14.3-32 32-32s32 14.3 32 32v301.7l32.4-35.4c11.9-13 32.2-13.9 45.2-2s13.9 32.2 2 45.2l-88 96zM320 320c0-17.7 14.3-32 32-32h128c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9L429.3 416H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H352c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9l73.4-73.3H352c-17.7 0-32-14.3-32-32m96-288c12.1 0 23.2 6.8 28.6 17.7l64 128 16 32c7.9 15.8 1.5 35-14.3 42.9s-35 1.5-42.9-14.3l-7.2-14.3h-88.4l-7.2 14.3c-7.9 15.8-27.1 22.2-42.9 14.3s-22.2-27.1-14.3-42.9l16-32 64-128C392.8 38.8 403.9 32 416 32m-20.2 144h40.4L416 135.6z"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-down-long.svg���������������0000664�0000000�0000000�00000000767�14753064456�0031041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M169.4 502.6c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 402.7V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v370.7l-73.4-73.3c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128z"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-down-short-wide.svg���������0000664�0000000�0000000�00000001530�14753064456�0032154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M151.6 469.6C145.5 476.2 137 480 128 480s-17.5-3.8-23.6-10.4l-88-96c-11.9-13-11.1-33.3 2-45.2s33.3-11.1 45.2 2L96 365.7V64c0-17.7 14.3-32 32-32s32 14.3 32 32v301.7l32.4-35.4c11.9-13 32.2-13.9 45.2-2s13.9 32.2 2 45.2l-88 96zM320 32h32c17.7 0 32 14.3 32 32s-14.3 32-32 32h-32c-17.7 0-32-14.3-32-32s14.3-32 32-32m0 128h96c17.7 0 32 14.3 32 32s-14.3 32-32 32h-96c-17.7 0-32-14.3-32-32s14.3-32 32-32m0 128h160c17.7 0 32 14.3 32 32s-14.3 32-32 32H320c-17.7 0-32-14.3-32-32s14.3-32 32-32m0 128h224c17.7 0 32 14.3 32 32s-14.3 32-32 32H320c-17.7 0-32-14.3-32-32s14.3-32 32-32"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-down-up-across-line.svg�����0000664�0000000�0000000�00000001456�14753064456�0032737�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M137.4 502.6c12.5 12.5 32.8 12.5 45.3 0l96-96c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 402.7V288h352c17.7 0 32-14.3 32-32s-14.3-32-32-32h-96V109.3l41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l41.3-41.4V224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96v114.7l-41.4-41.3c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96zM128 192h64V64c0-17.7-14.3-32-32-32s-32 14.3-32 32zm320 128h-64v128c0 17.7 14.3 32 32 32s32-14.3 32-32z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-down-up-lock.svg������������0000664�0000000�0000000�00000002003�14753064456�0031435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m150.6 502.6 96-96c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 402.7V288h256v-16c0-17.2 3.9-33.5 10.8-48H352V109.3l41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96c-6-6-14.1-9.4-22.6-9.4s-16.6 3.4-22.6 9.4l-96 96c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l41.2-41.4V224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h64v114.7l-41.4-41.3c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0zM160 192V64c0-17.7-14.3-32-32-32S96 46.3 96 64v128zm128 128v128c0 17.7 14.3 32 32 32s32-14.3 32-32V320zm240-80c17.7 0 32 14.3 32 32v48h-64v-48c0-17.7 14.3-32 32-32m-80 32v48c-17.7 0-32 14.3-32 32v128c0 17.7 14.3 32 32 32h160c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32v-48c0-44.2-35.8-80-80-80s-80 35.8-80 80"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-down-wide-short.svg���������0000664�0000000�0000000�00000001515�14753064456�0032157�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M151.6 469.6C145.5 476.2 137 480 128 480s-17.5-3.8-23.6-10.4l-88-96c-11.9-13-11.1-33.3 2-45.2s33.3-11.1 45.2 2L96 365.7V64c0-17.7 14.3-32 32-32s32 14.3 32 32v301.7l32.4-35.4c11.9-13 32.2-13.9 45.2-2s13.9 32.2 2 45.2l-88 96zM320 480c-17.7 0-32-14.3-32-32s14.3-32 32-32h32c17.7 0 32 14.3 32 32s-14.3 32-32 32zm0-128c-17.7 0-32-14.3-32-32s14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32zm0-128c-17.7 0-32-14.3-32-32s14.3-32 32-32h160c17.7 0 32 14.3 32 32s-14.3 32-32 32zm0-128c-17.7 0-32-14.3-32-32s14.3-32 32-32h224c17.7 0 32 14.3 32 32s-14.3 32-32 32z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-down-z-a.svg����������������0000664�0000000�0000000�00000001700�14753064456�0030555�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M183.6 469.6C177.5 476.2 169 480 160 480s-17.5-3.8-23.6-10.4l-88-96c-11.9-13-11.1-33.3 2-45.2s33.3-11.1 45.2 2l32.4 35.3V64c0-17.7 14.3-32 32-32s32 14.3 32 32v301.7l32.4-35.4c11.9-13 32.2-13.9 45.2-2s13.9 32.2 2 45.2l-88 96zM320 64c0-17.7 14.3-32 32-32h128c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9L429.3 160H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H352c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9L402.7 96H352c-17.7 0-32-14.3-32-32m96 192c12.1 0 23.2 6.8 28.6 17.7l64 128 16 32c7.9 15.8 1.5 35-14.3 42.9s-35 1.5-42.9-14.3l-7.2-14.3h-88.4l-7.2 14.3c-7.9 15.8-27.1 22.2-42.9 14.3s-22.2-27.1-14.3-42.9l16-32 64-128c5.4-10.8 16.5-17.7 28.6-17.7m-20.2 144h40.4L416 359.6z"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-down.svg��������������������0000664�0000000�0000000�00000000767�14753064456�0030104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M169.4 470.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 370.8V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v306.7L54.6 265.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-left-long.svg���������������0000664�0000000�0000000�00000000765�14753064456�0031022�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 288H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H109.3l73.4-73.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-128 128z"/></svg>�����������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-left.svg��������������������0000664�0000000�0000000�00000000767�14753064456�0030067�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.2 288H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H109.3l105.3-105.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-pointer.svg�����������������0000664�0000000�0000000�00000001033�14753064456�0030600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 55.2V426c0 12.2 9.9 22 22 22 6.3 0 12.4-2.7 16.6-7.5l82.6-94.5 58.1 116.3c7.9 15.8 27.1 22.2 42.9 14.3s22.2-27.1 14.3-42.9L179.8 320h118.1c12.2 0 22.1-9.9 22.1-22.1 0-6.3-2.7-12.3-7.4-16.5L38.6 37.9c-4.3-3.8-9.7-5.9-15.4-5.9C10.4 32 0 42.4 0 55.2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-right-arrow-left.svg��������0000664�0000000�0000000�00000001303�14753064456�0032315�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M438.6 150.6c12.5-12.5 12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.7 96H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h306.7l-41.4 41.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l96-96zm-333.3 352c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 416H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H109.3l41.4-41.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3l96 96z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-right-from-bracket.svg������0000664�0000000�0000000�00000001247�14753064456�0032616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M502.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l73.4 73.4H192c-17.7 0-32 14.3-32 32s14.3 32 32 32h210.7l-73.4 73.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l128-128zM160 96c17.7 0 32-14.3 32-32s-14.3-32-32-32H96C43 32 0 75 0 128v256c0 53 43 96 96 96h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H96c-17.7 0-32-14.3-32-32V128c0-17.7 14.3-32 32-32z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-right-long.svg��������������0000664�0000000�0000000�00000000770�14753064456�0031201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M502.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l73.4 73.4H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h370.7l-73.4 73.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l128-128z"/></svg>��������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-right-to-bracket.svg��������0000664�0000000�0000000�00000001250�14753064456�0032267�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M352 96h64c17.7 0 32 14.3 32 32v256c0 17.7-14.3 32-32 32h-64c-17.7 0-32 14.3-32 32s14.3 32 32 32h64c53 0 96-43 96-96V128c0-53-43-96-96-96h-64c-17.7 0-32 14.3-32 32s14.3 32 32 32m-9.4 182.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l73.4 73.4H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h210.7l-73.4 73.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l128-128z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-right-to-city.svg�����������0000664�0000000�0000000�00000002210�14753064456�0031621�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 48c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v144h40v-72c0-13.3 10.7-24 24-24s24 10.7 24 24v72h24c26.5 0 48 21.5 48 48v224c0 26.5-21.5 48-48 48H336c-26.5 0-48-21.5-48-48zm64 32v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16m16 80c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-16 112v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16m176-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-16 112v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16M166.6 153.4l80 80c12.5 12.5 12.5 32.8 0 45.3l-80 80c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l25.4-25.4H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h114.7l-25.4-25.4c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-right.svg�������������������0000664�0000000�0000000�00000000771�14753064456�0030245�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h306.7L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z"/></svg>�������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-rotate-left.svg�������������0000664�0000000�0000000�00000001126�14753064456�0031351�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M125.7 160H176c17.7 0 32 14.3 32 32s-14.3 32-32 32H48c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32s32 14.3 32 32v51.2l17.6-17.6c87.5-87.5 229.3-87.5 316.8 0s87.5 229.3 0 316.8-229.3 87.5-316.8 0c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0c62.5 62.5 163.8 62.5 226.3 0s62.5-163.8 0-226.3-163.8-62.5-226.3 0z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-rotate-right.svg������������0000664�0000000�0000000�00000001134�14753064456�0031533�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M386.3 160H336c-17.7 0-32 14.3-32 32s14.3 32 32 32h128c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v51.2l-17.6-17.6c-87.5-87.5-229.3-87.5-316.8 0s-87.5 229.3 0 316.8 229.3 87.5 316.8 0c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0c-62.5 62.5-163.8 62.5-226.3 0s-62.5-163.8 0-226.3 163.8-62.5 226.3 0z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-trend-down.svg��������������0000664�0000000�0000000�00000001067�14753064456�0031210�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 352c-17.7 0-32 14.3-32 32s14.3 32 32 32h160c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v82.7L342.6 137.4c-12.5-12.5-32.8-12.5-45.3 0L192 242.7 54.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0L320 205.3 466.7 352z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-trend-up.svg����������������0000664�0000000�0000000�00000001070�14753064456�0030657�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 160c-17.7 0-32-14.3-32-32s14.3-32 32-32h160c17.7 0 32 14.3 32 32v160c0 17.7-14.3 32-32 32s-32-14.3-32-32v-82.7L342.6 374.6c-12.5 12.5-32.8 12.5-45.3 0L192 269.3 54.6 406.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l160-160c12.5-12.5 32.8-12.5 45.3 0L320 306.7 466.7 160z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-turn-down.svg���������������0000664�0000000�0000000�00000001026�14753064456�0031057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 64C14.3 64 0 49.7 0 32S14.3 0 32 0h96c53 0 96 43 96 96v306.7l73.4-73.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-128 128c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l73.3 73.4V96c0-17.7-14.3-32-32-32z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-turn-up.svg�����������������0000664�0000000�0000000�00000001034�14753064456�0030533�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 448c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c53 0 96-43 96-96V109.3l73.4 73.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-128-128c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l73.3-73.4V416c0 17.7-14.3 32-32 32z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-up-1-9.svg������������������0000664�0000000�0000000�00000001661�14753064456�0030057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M450.7 38C459 44 464 53.7 464 64v96h16c17.7 0 32 14.3 32 32s-14.3 32-32 32h-96c-17.7 0-32-14.3-32-32s14.3-32 32-32h16v-51.6l-5.9 2c-16.8 5.6-34.9-3.5-40.5-20.2s3.5-34.9 20.2-40.5l48-16c9.8-3.3 20.5-1.6 28.8 4.4zM160 32c9 0 17.5 3.8 23.6 10.4l88 96c11.9 13 11.1 33.3-2 45.2s-33.3 11.1-45.2-2L192 146.3V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V146.3l-32.4 35.3c-11.9 13-32.2 13.9-45.2 2s-13.9-32.2-2-45.2l88-96C142.5 35.8 151 32 160 32m285.7 332.9a32 32 0 1 0-27.4-57.9 32 32 0 1 0 27.4 57.9M405 419.8c-35.4-11.4-61-44.6-61-83.8 0-48.6 39.4-88 88-88s88 39.4 88 88c0 23.5-7.5 46.3-21.5 65.2L449.7 467c-10.5 14.2-30.6 17.2-44.8 6.7s-17.2-30.6-6.7-44.8l6.8-9.2z"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-up-9-1.svg������������������0000664�0000000�0000000�00000001657�14753064456�0030064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 32c9 0 17.5 3.8 23.6 10.4l88 96c11.9 13 11.1 33.3-2 45.2s-33.3 11.1-45.2-2L192 146.3V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V146.3l-32.4 35.3c-11.9 13-32.2 13.9-45.2 2s-13.9-32.2-2-45.2l88-96C142.5 35.8 151 32 160 32m290.7 262c8.3 6 13.3 15.7 13.3 26v96h16c17.7 0 32 14.3 32 32s-14.3 32-32 32h-96c-17.7 0-32-14.3-32-32s14.3-32 32-32h16v-51.6l-5.9 2c-16.8 5.6-34.9-3.5-40.5-20.2s3.5-34.9 20.2-40.5l48-16c9.8-3.3 20.5-1.6 28.8 4.4zm-5-145.1A32 32 0 1 0 418.3 91a32 32 0 1 0 27.4 57.9M405 203.8c-35.4-11.4-61-44.6-61-83.8 0-48.6 39.4-88 88-88s88 39.4 88 88c0 23.5-7.5 46.3-21.5 65.2L449.7 251c-10.5 14.2-30.6 17.2-44.8 6.7s-17.2-30.6-6.7-44.8l6.8-9.2z"/></svg>���������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-up-a-z.svg������������������0000664�0000000�0000000�00000001705�14753064456�0030237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M183.6 42.4C177.5 35.8 169 32 160 32s-17.5 3.8-23.6 10.4l-88 96c-11.9 13-11.1 33.3 2 45.2s33.3 11.1 45.2-2l32.4-35.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V146.3l32.4 35.4c11.9 13 32.2 13.9 45.2 2s13.9-32.2 2-45.2l-88-96zM320 320c0 17.7 14.3 32 32 32h50.7l-73.4 73.4c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8h128c17.7 0 32-14.3 32-32s-14.3-32-32-32h-50.7l73.4-73.4c9.2-9.2 11.9-22.9 6.9-34.9S493 288 480 288H352c-17.7 0-32 14.3-32 32m96-288c-12.1 0-23.2 6.8-28.6 17.7l-64 128-16 32c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3l7.2-14.3h88.4l7.2 14.3c7.9 15.8 27.1 22.2 42.9 14.3s22.2-27.1 14.3-42.9l-16-32-64-128C439.2 38.8 428.1 32 416 32m-20.2 144 20.2-40.4 20.2 40.4z"/></svg>�����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-up-from-bracket.svg���������0000664�0000000�0000000�00000001242�14753064456�0032120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M246.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l73.4-73.4V320c0 17.7 14.3 32 32 32s32-14.3 32-32V109.3l73.4 73.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-128-128zM64 352c0-17.7-14.3-32-32-32S0 334.3 0 352v64c0 53 43 96 96 96h256c53 0 96-43 96-96v-64c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-up-from-ground-water.svg����0000664�0000000�0000000�00000002516�14753064456�0033130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 352c17.7 0 32-14.3 32-32V109.3l25.4 25.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-80-80c-12.5-12.5-32.8-12.5-45.3 0l-80 80c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l25.3-25.4V320c0 17.7 14.3 32 32 32m-18.5 69.9C247 437.4 219.5 448 192 448c-26.9 0-55.3-10.8-77.4-26.1-11.9-8.5-28.1-7.8-39.2 1.7-14.4 11.9-32.5 21-50.6 25.2-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25 29 15.6 61.5 25.9 94.5 25.9 31.9 0 60.6-9.9 80.4-18.9 5.8-2.7 11.1-5.3 15.6-7.7 4.5 2.4 9.7 5.1 15.6 7.7 19.8 9 48.5 18.9 80.4 18.9 33 0 65.5-10.3 94.5-25.8 13.4 8.4 33.7 19.3 58.2 25 17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2-11.1-9.4-27.3-10.1-39.2-1.7-22 15.2-50.5 26-77.4 26-27.5 0-55-10.6-77.5-26.1-11.1-7.9-25.9-7.9-37 0M192 192H48c-26.5 0-48 21.5-48 48v185c5.3-3.1 11.2-5.4 17.5-6.9 13.1-3.1 26.7-9.8 37.3-18.6 22.2-18.7 54.3-20.1 78.1-3.4 18 12.4 40.1 20.3 59.1 20.3zm384 48c0-26.5-21.5-48-48-48H384v224.5c19 0 41.2-7.9 59.2-20.3 23.8-16.7 55.8-15.4 78.1 3.4 10.6 8.8 24.2 15.6 37.3 18.6 6.3 1.5 12.1 3.8 17.5 6.9v-185z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-up-from-water-pump.svg������0000664�0000000�0000000�00000002667�14753064456�0032622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M112 0C85.5 0 64 21.5 64 48v208H48c-26.5 0-48 21.5-48 48v96c0 8 2 15.6 5.4 22.2 3.8-1.7 7.8-3.1 12-4.1 13.1-3.1 26.7-9.8 37.3-18.6 22.2-18.7 54.3-20.1 78.1-3.4 18 12.4 40.1 20.3 59.2 20.3 21.1 0 42-8.5 59.2-20.3 22.1-15.5 51.6-15.5 73.7 0 18.4 12.7 39.6 20.3 59.2 20.3 19 0 41.2-7.9 59.2-20.3 23.8-16.7 55.8-15.3 78.1 3.4 10.6 8.8 24.2 15.6 37.3 18.6 4.2 1 8.2 2.4 12 4.1 3.3-6.6 5.3-14.2 5.3-22.2v-96c0-26.5-21.5-48-48-48h-48V109.3l25.4 25.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-80-80c-12.5-12.5-32.8-12.5-45.3 0l-80 80c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l25.3-25.4V256H288V48c0-26.5-21.5-48-48-48zm194.5 421.9c-11.1-7.9-25.9-7.9-37 0-22.5 15.5-50 26.1-77.5 26.1-26.9 0-55.3-10.8-77.4-26.1-11.9-8.5-28.1-7.8-39.2 1.7-14.4 11.9-32.5 21-50.6 25.2-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25 29 15.6 61.5 25.9 94.5 25.9 31.9 0 60.6-9.9 80.4-18.9 5.8-2.7 11.1-5.3 15.6-7.7 4.5 2.4 9.7 5.1 15.6 7.7 19.8 9 48.5 18.9 80.4 18.9 33 0 65.5-10.3 94.5-25.8 13.4 8.4 33.7 19.3 58.2 25 17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2-11.1-9.4-27.3-10.1-39.2-1.7-22 15.2-50.5 26-77.4 26-27.5 0-55-10.6-77.5-26.1"/></svg>�������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-up-long.svg�����������������0000664�0000000�0000000�00000000765�14753064456�0030514�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M214.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l73.4-73.4V480c0 17.7 14.3 32 32 32s32-14.3 32-32V109.3l73.4 73.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-128-128z"/></svg>�����������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-up-right-dots.svg�����������0000664�0000000�0000000�00000001556�14753064456�0031640�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h50.7L9.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L256 109.3V160c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32zm416 80a48 48 0 1 0-96 0 48 48 0 1 0 96 0M448 208a48 48 0 1 0-96 0 48 48 0 1 0 96 0m-48 176a48 48 0 1 0 0-96 48 48 0 1 0 0 96m48 80a48 48 0 1 0-96 0 48 48 0 1 0 96 0m128 0a48 48 0 1 0-96 0 48 48 0 1 0 96 0m-304-80a48 48 0 1 0 0-96 48 48 0 1 0 0 96m48 80a48 48 0 1 0-96 0 48 48 0 1 0 96 0m-176 48a48 48 0 1 0 0-96 48 48 0 1 0 0 96m432-176a48 48 0 1 0-96 0 48 48 0 1 0 96 0m-48-80a48 48 0 1 0 0-96 48 48 0 1 0 0 96"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-up-right-from-square.svg����0000664�0000000�0000000�00000001267�14753064456�0033127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h82.7L201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L448 109.3V192c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32zM80 32C35.8 32 0 67.8 0 112v320c0 44.2 35.8 80 80 80h320c44.2 0 80-35.8 80-80V320c0-17.7-14.3-32-32-32s-32 14.3-32 32v112c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16h112c17.7 0 32-14.3 32-32s-14.3-32-32-32z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-up-short-wide.svg�����������0000664�0000000�0000000�00000001511�14753064456�0031630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M151.6 42.4C145.5 35.8 137 32 128 32s-17.5 3.8-23.6 10.4l-88 96c-11.9 13-11.1 33.3 2 45.2s33.3 11.1 45.2-2L96 146.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V146.3l32.4 35.4c11.9 13 32.2 13.9 45.2 2s13.9-32.2 2-45.2l-88-96zM320 32c-17.7 0-32 14.3-32 32s14.3 32 32 32h32c17.7 0 32-14.3 32-32s-14.3-32-32-32zm0 128c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32zm0 128c-17.7 0-32 14.3-32 32s14.3 32 32 32h160c17.7 0 32-14.3 32-32s-14.3-32-32-32zm0 128c-17.7 0-32 14.3-32 32s14.3 32 32 32h224c17.7 0 32-14.3 32-32s-14.3-32-32-32z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-up-wide-short.svg�����������0000664�0000000�0000000�00000001526�14753064456�0031636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M151.6 42.4C145.5 35.8 137 32 128 32s-17.5 3.8-23.6 10.4l-88 96c-11.9 13-11.1 33.3 2 45.2s33.3 11.1 45.2-2L96 146.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V146.3l32.4 35.4c11.9 13 32.2 13.9 45.2 2s13.9-32.2 2-45.2l-88-96zM320 480h32c17.7 0 32-14.3 32-32s-14.3-32-32-32h-32c-17.7 0-32 14.3-32 32s14.3 32 32 32m0-128h96c17.7 0 32-14.3 32-32s-14.3-32-32-32h-96c-17.7 0-32 14.3-32 32s14.3 32 32 32m0-128h160c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-17.7 0-32 14.3-32 32s14.3 32 32 32m0-128h224c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-17.7 0-32 14.3-32 32s14.3 32 32 32"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-up-z-a.svg������������������0000664�0000000�0000000�00000001705�14753064456�0030237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M183.6 42.4C177.5 35.8 169 32 160 32s-17.5 3.8-23.6 10.4l-88 96c-11.9 13-11.1 33.3 2 45.2s33.3 11.1 45.2-2l32.4-35.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V146.3l32.4 35.4c11.9 13 32.2 13.9 45.2 2s13.9-32.2 2-45.2l-88-96zM320 64c0 17.7 14.3 32 32 32h50.7l-73.4 73.4c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8h128c17.7 0 32-14.3 32-32s-14.3-32-32-32h-50.7l73.4-73.4c9.2-9.2 11.9-22.9 6.9-34.9S493 32 480 32H352c-17.7 0-32 14.3-32 32m96 192c-12.1 0-23.2 6.8-28.6 17.7l-64 128-16 32c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3l7.2-14.3h88.4l7.2 14.3c7.9 15.8 27.1 22.2 42.9 14.3s22.2-27.1 14.3-42.9l-16-32-64-128c-5.4-10.9-16.5-17.7-28.6-17.7m-20.2 144 20.2-40.4 20.2 40.4z"/></svg>�����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrow-up.svg����������������������0000664�0000000�0000000�00000000770�14753064456�0027553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M214.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 141.2V448c0 17.7 14.3 32 32 32s32-14.3 32-32V141.3l105.4 105.3c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160z"/></svg>��������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrows-down-to-line.svg�����������0000664�0000000�0000000�00000001433�14753064456�0031623�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M544 416H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h512c17.7 0 32-14.3 32-32s-14.3-32-32-32m22.6-137.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L480 274.7V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v210.7l-41.4-41.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0zm-320-45.3c-12.5-12.5-32.8-12.5-45.3 0L160 274.7V64c0-17.7-14.3-32-32-32S96 46.3 96 64v210.7l-41.4-41.3c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l96-96c12.5-12.5 12.5-32.8 0-45.3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrows-down-to-people.svg���������0000664�0000000�0000000�00000002747�14753064456�0032171�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M144 0c-13.3 0-24 10.7-24 24v118.1L97 119c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0l64-64c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-23 23-.1-118c0-13.3-10.7-24-24-24m216 200a40 40 0 1 0-80 0 40 40 0 1 0 80 0m-176 96a40 40 0 1 0-80 0 40 40 0 1 0 80 0m312 40a40 40 0 1 0 0-80 40 40 0 1 0 0 80M200 441.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-36.3-67.5c1.7-1.7 3.2-3.6 4.3-5.8l26.8-49.9V400c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32v-54.5l26.9 49.9c1.2 2.2 2.6 4.1 4.3 5.8l-36.3 67.5c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8l26.8-49.9V480c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32v-38.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-37.9-70.3c-15.3-28.5-45.1-46.3-77.5-46.3h-19.5c-16.3 0-31.9 4.5-45.4 12.6l-33.6-62.3c-15.3-28.5-45.1-46.3-77.5-46.3h-19.5c-32.4 0-62.1 17.8-77.5 46.3l-33.6 62.3c-13.5-8.1-29.1-12.6-45.4-12.6h-19.5c-32.4 0-62.1 17.8-77.5 46.3l-37.9 70.2c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8L88 441.5V480c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32zM415 153l64 64c9.4 9.4 24.6 9.4 33.9 0l64-64c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-23 23V24c0-13.3-10.7-24-24-24s-24 10.7-24 24v118.1l-23-23c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9z"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrows-left-right-to-line.svg�����0000664�0000000�0000000�00000001440�14753064456�0032717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 64c17.7 0 32 14.3 32 32v320c0 17.7-14.3 32-32 32S0 433.7 0 416V96c0-17.7 14.3-32 32-32m214.6 73.4c12.5 12.5 12.5 32.8 0 45.3L205.3 224h229.5l-41.4-41.4c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3l-96 96c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l41.3-41.3H205.2l41.4 41.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-96-96c-12.5-12.5-12.5-32.8 0-45.3l96-96c12.5-12.5 32.8-12.5 45.3 0M640 96v320c0 17.7-14.3 32-32 32s-32-14.3-32-32V96c0-17.7 14.3-32 32-32s32 14.3 32 32"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrows-left-right.svg�������������0000664�0000000�0000000�00000001151�14753064456�0031351�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m406.6 374.6 96-96c12.5-12.5 12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l41.4 41.4H109.2l41.4-41.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 288h293.5l-41.4 41.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrows-rotate.svg�����������������0000664�0000000�0000000�00000001755�14753064456�0030614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M105.1 202.6c7.7-21.8 20.2-42.3 37.8-59.8 62.5-62.5 163.8-62.5 226.3 0l17.1 17.2H352c-17.7 0-32 14.3-32 32s14.3 32 32 32h111.9c17.7 0 32-14.3 32-32V80c0-17.7-14.3-32-32-32s-32 14.3-32 32v35.2l-17.5-17.6c-87.5-87.5-229.3-87.5-316.8 0-24.4 24.4-42 53.1-52.8 83.8-5.9 16.7 2.9 34.9 19.5 40.8s34.9-2.9 40.8-19.5zM39 289.3c-5 1.5-9.8 4.2-13.7 8.2-4 4-6.7 8.8-8.1 14-.3 1.2-.6 2.5-.8 3.8-.3 1.7-.4 3.4-.4 5.1V432c0 17.7 14.3 32 32 32s32-14.3 32-32v-35.1l17.6 17.5c87.5 87.4 229.3 87.4 316.7 0 24.4-24.4 42.1-53.1 52.9-83.8 5.9-16.7-2.9-34.9-19.5-40.8s-34.9 2.9-40.8 19.5c-7.7 21.8-20.2 42.3-37.8 59.8-62.5 62.5-163.8 62.5-226.3 0l-.1-.1-17.1-17H160c17.7 0 32-14.3 32-32s-14.3-32-32-32H48.4q-2.4 0-4.8.3c-2.4.3-3.1.5-4.6 1"/></svg>�������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrows-spin.svg�������������������0000664�0000000�0000000�00000002375�14753064456�0030266�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 96c38.4 0 73.7 13.5 101.3 36.1l-32.6 32.6c-4.6 4.6-5.9 11.5-3.5 17.4s8.3 9.9 14.8 9.9h112c8.8 0 16-7.2 16-16V64c0-6.5-3.9-12.3-9.9-14.8s-12.9-1.1-17.4 3.5l-34 34C363.4 52.6 312.1 32 256 32c-10.9 0-21.5.8-32 2.3v64.9c10.3-2.1 21-3.2 32-3.2m-123.9 58.7 32.6 32.6c4.6 4.6 11.5 5.9 17.4 3.5s9.9-8.3 9.9-14.8V64c0-8.8-7.2-16-16-16H64c-6.5 0-12.3 3.9-14.8 9.9s-1.1 12.9 3.5 17.4l34 34C52.6 148.6 32 199.9 32 256c0 10.9.8 21.5 2.3 32h64.9c-2.1-10.3-3.2-21-3.2-32 0-38.4 13.5-73.7 36.1-101.3M477.7 224h-64.9c2.1 10.3 3.2 21 3.2 32 0 38.4-13.5 73.7-36.1 101.3l-32.6-32.6c-4.6-4.6-11.5-5.9-17.4-3.5s-9.9 8.3-9.9 14.8v112c0 8.8 7.2 16 16 16h112c6.5 0 12.3-3.9 14.8-9.9s1.1-12.9-3.5-17.4l-34-34C459.4 363.4 480 312.1 480 256c0-10.9-.8-21.5-2.3-32M256 416c-38.4 0-73.7-13.5-101.3-36.1l32.6-32.6c4.6-4.6 5.9-11.5 3.5-17.4s-8.3-9.9-14.8-9.9H64c-8.8 0-16 7.2-16 16v112c0 6.5 3.9 12.3 9.9 14.8s12.9 1.1 17.4-3.5l34-34C148.6 459.4 199.9 480 256 480c10.9 0 21.5-.8 32-2.3v-64.9c-10.3 2.1-21 3.2-32 3.2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrows-split-up-and-left.svg������0000664�0000000�0000000�00000001353�14753064456�0032555�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M246.6 150.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l96-96c12.5-12.5 32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L352 109.3V384c0 35.3 28.7 64 64 64h64c17.7 0 32 14.3 32 32s-14.3 32-32 32h-64c-70.7 0-128-57.3-128-128 0-35.3-28.7-64-64-64H109.3l41.4 41.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-96-96c-12.5-12.5-12.5-32.8 0-45.3l96-96c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L109.3 256H224c23.3 0 45.2 6.2 64 17.1V109.2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrows-to-circle.svg��������������0000664�0000000�0000000�00000002440�14753064456�0031167�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M9.4 9.4c12.5-12.5 32.7-12.5 45.2 0L160 114.7V96c0-17.7 14.3-32 32-32s32 14.3 32 32v96c0 4.3-.9 8.5-2.4 12.2-1.6 3.7-3.8 7.3-6.9 10.3l-.1.1c-3.1 3-6.6 5.3-10.3 6.9-3.8 1.6-7.9 2.4-12.2 2.4h-96c-17.7 0-32-14.3-32-32s14.3-32 32-32h18.7L9.4 54.6C-3.1 42.1-3.1 21.9 9.4 9.4M256 256a64 64 0 1 1 128 0 64 64 0 1 1-128 0m-141.3 96H96c-17.7 0-32-14.3-32-32s14.3-32 32-32h96.1c8.8 0 16.7 3.6 22.5 9.3l.1.1c3 3.1 5.3 6.6 6.9 10.3 1.6 3.8 2.4 7.9 2.4 12.2v96c0 17.7-14.3 32-32 32s-32-14.3-32-32v-18.7L54.6 502.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3zM416 96c0-17.7 14.3-32 32-32s32 14.3 32 32v18.7L585.4 9.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L525.3 160H544c17.7 0 32 14.3 32 32s-14.3 32-32 32h-96c-8.8 0-16.8-3.6-22.6-9.3l-.1-.1c-3-3.1-5.3-6.6-6.9-10.3s-2.4-7.8-2.4-12.2V96m109.3 256 105.3 105.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L480 397.3V416c0 17.7-14.3 32-32 32s-32-14.3-32-32v-96.1c0-4.3.9-8.4 2.4-12.2 1.6-3.8 3.9-7.3 6.9-10.4 5.8-5.8 13.7-9.3 22.5-9.4h96.1c17.7 0 32 14.3 32 32s-14.3 32-32 32h-18.7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrows-to-dot.svg�����������������0000664�0000000�0000000�00000002117�14753064456�0030515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 0c17.7 0 32 14.3 32 32v32h32c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9l-64 64c-12.5 12.5-32.8 12.5-45.3 0l-64-64c-9.2-9.2-11.9-22.9-6.9-34.9S179.1 64 192.1 64h32V32c0-17.7 14.3-32 32-32zm-86.6 393.4 64-64c12.5-12.5 32.8-12.5 45.3 0l64 64c9.2 9.2 11.9 22.9 6.9 34.9S333 448.1 320 448.1h-32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32v-32h-32c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9zM32 224h32v-32c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l64 64c12.5 12.5 12.5 32.8 0 45.3l-64 64c-9.2 9.2-22.9 11.9-34.9 6.9S64 332.9 64 319.9v-32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32zm297.4 54.6c-12.5-12.5-12.5-32.8 0-45.3l64-64c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6v32h32c17.7 0 32 14.3 32 32s-14.3 32-32 32h-32v32c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9l-64-64zM256 224a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrows-to-eye.svg�����������������0000664�0000000�0000000�00000002242�14753064456�0030510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M15 15c9.4-9.3 24.6-9.3 34 0l63 63V40c0-13.3 10.7-24 24-24s24 10.7 24 24v96c0 13.3-10.7 24-24 24H40c-13.3 0-24-10.7-24-24s10.7-24 24-24h38.1L15 49c-9.3-9.4-9.3-24.6 0-34m118.5 228.9C158.6 193.6 222.7 112 320 112s161.4 81.6 186.5 131.9c3.8 7.6 3.8 16.5 0 24.2C481.4 318.4 417.3 400 320 400s-161.4-81.6-186.5-131.9c-3.8-7.6-3.8-16.5 0-24.2M320 320a64 64 0 1 0 0-128 64 64 0 1 0 0 128M591 15c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-63 63H600c13.3 0 24 10.7 24 24s-10.7 24-24 24h-96c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24s24 10.7 24 24V78zM15 497c-9.4-9.4-9.4-24.6 0-33.9l63-63-38-.1c-13.3 0-24-10.7-24-24s10.7-24 24-24h96c13.3 0 24 10.7 24 24v96c0 13.3-10.7 24-24 24s-24-10.7-24-24v-38.1L49 497c-9.4 9.4-24.6 9.4-33.9 0zm576 0-63-63v38.1c0 13.3-10.7 24-24 24s-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h96c13.3 0 24 10.7 24 24s-10.7 24-24 24h-38.1l63 63c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrows-turn-right.svg�������������0000664�0000000�0000000�00000001465�14753064456�0031417�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M297.4 9.4c12.5-12.5 32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3l-96 96c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l41.3-41.4H128c-35.3 0-64 28.7-64 64v32c0 17.7-14.3 32-32 32S0 273.7 0 256v-32C0 153.3 57.3 96 128 96h210.7l-41.3-41.4c-12.5-12.5-12.5-32.8 0-45.3zm-96 256c12.5-12.5 32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3l-96 96c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l41.3-41.4H96c-17.7 0-32 14.3-32 32v32c0 17.7-14.3 32-32 32S0 497.7 0 480v-32c0-53 43-96 96-96h146.7l-41.4-41.4c-12.5-12.5-12.5-32.8 0-45.3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrows-turn-to-dots.svg�����������0000664�0000000�0000000�00000001553�14753064456�0031671�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M249.4 25.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L269.3 96H416c53 0 96 43 96 96v32c0 17.7-14.3 32-32 32s-32-14.3-32-32v-32c0-17.7-14.3-32-32-32H269.3l25.4 25.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-80-80c-12.5-12.5-12.5-32.8 0-45.3zm13.3 256 80 80c12.5 12.5 12.5 32.8 0 45.3l-80 80c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l25.3-25.4H96c-17.7 0-32 14.3-32 32v32c0 17.7-14.3 32-32 32S0 497.7 0 480v-32c0-53 43-96 96-96h146.7l-25.4-25.4c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0zM384 384a64 64 0 1 1 128 0 64 64 0 1 1-128 0M64 192a64 64 0 1 1 0-128 64 64 0 1 1 0 128"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrows-up-down-left-right.svg�����0000664�0000000�0000000�00000001657�14753064456�0032753�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M278.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l9.4-9.4V224H109.3l9.4-9.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-64 64c-12.5 12.5-12.5 32.8 0 45.3l64 64c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-9.4-9.4 114.7.1v114.7l-9.4-9.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l64 64c12.5 12.5 32.8 12.5 45.3 0l64-64c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-9.4 9.4.1-114.7h114.7l-9.4 9.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l64-64c12.5-12.5 12.5-32.8 0-45.3l-64-64c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l9.4 9.4L288 224V109.3l9.4 9.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-64-64z"/></svg>���������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrows-up-down.svg����������������0000664�0000000�0000000�00000001147�14753064456�0030702�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M182.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l41.4-41.4v293.5l-41.4-41.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l96-96c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 402.7V109.2l41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/arrows-up-to-line.svg�������������0000664�0000000�0000000�00000001423�14753064456�0031277�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 96h512c17.7 0 32-14.3 32-32s-14.3-32-32-32H32C14.3 32 0 46.3 0 64s14.3 32 32 32M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L96 237.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V237.3l41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0zm320 45.3c12.5 12.5 32.8 12.5 45.3 0l41.3-41.4V448c0 17.7 14.3 32 32 32s32-14.3 32-32V237.3l41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/asterisk.svg����������������������0000664�0000000�0000000�00000001221�14753064456�0027614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 32c17.7 0 32 14.3 32 32v135.5l111.5-66.9c15.2-9.1 34.8-4.2 43.9 11s4.2 34.8-11 43.9L254.2 256l114.3 68.6c15.2 9.1 20.1 28.7 11 43.9s-28.7 20.1-43.9 11l-111.6-67V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V312.5L48.5 379.4c-15.2 9.1-34.8 4.2-43.9-11s-4.2-34.8 11-43.9L129.8 256 15.5 187.4c-15.2-9.1-20.1-28.7-11-43.9s28.7-20.1 43.9-11l111.6 67V64c0-17.7 14.3-32 32-32"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/at.svg����������������������������0000664�0000000�0000000�00000001317�14753064456�0026401�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 64C150 64 64 150 64 256s86 192 192 192c17.7 0 32 14.3 32 32s-14.3 32-32 32C114.6 512 0 397.4 0 256S114.6 0 256 0s256 114.6 256 256v32c0 53-43 96-96 96-29.3 0-55.6-13.2-73.2-33.9-22.8 21-53.3 33.9-86.8 33.9-70.7 0-128-57.3-128-128s57.3-128 128-128c27.9 0 53.7 8.9 74.7 24.1 5.7-5 13.1-8.1 21.3-8.1 17.7 0 32 14.3 32 32v112c0 17.7 14.3 32 32 32s32-14.3 32-32v-32c0-106-86-192-192-192m64 192a64 64 0 1 0-128 0 64 64 0 1 0 128 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/atom.svg��������������������������0000664�0000000�0000000�00000002535�14753064456�0026740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 398.8c-11.8 5.1-23.4 9.7-34.9 13.5 16.7 33.8 31 35.7 34.9 35.7s18.1-1.9 34.9-35.7c-11.4-3.9-23.1-8.4-34.9-13.5M446 256c33 45.2 44.3 90.9 23.6 128-20.2 36.3-62.5 49.3-115.2 43.2-22 52.1-55.6 84.8-98.4 84.8s-76.4-32.7-98.4-84.8c-52.7 6.1-95-6.8-115.2-43.2C21.7 346.9 33 301.2 66 256c-33-45.2-44.3-90.9-23.6-128 20.2-36.3 62.5-49.3 115.2-43.2C179.6 32.7 213.2 0 256 0s76.4 32.7 98.4 84.8c52.7-6.1 95 6.8 115.2 43.2 20.7 37.1 9.4 82.8-23.6 128m-65.8 67.4c-1.7 14.2-3.9 28-6.7 41.2 31.8 1.4 38.6-8.7 40.2-11.7 2.3-4.2 7-17.9-11.9-48.1q-10.2 9.45-21.6 18.6m-6.7-175.9c2.8 13.1 5 26.9 6.7 41.2q11.4 9.15 21.6 18.6c18.9-30.2 14.2-44 11.9-48.1-1.6-2.9-8.4-13-40.2-11.7m-82.6-47.8C274.1 65.9 259.9 64 256 64s-18.1 1.9-34.9 35.7c11.4 3.9 23.1 8.4 34.9 13.5 11.8-5.1 23.4-9.7 34.9-13.5m-159 88.9c1.7-14.3 3.9-28 6.7-41.2-31.8-1.4-38.6 8.7-40.2 11.7-2.3 4.2-7 17.9 11.9 48.1q10.2-9.45 21.6-18.6m-21.7 116.2C91.4 335 96 348.7 98.3 352.9c1.6 2.9 8.4 13 40.2 11.7-2.8-13.1-5-26.9-6.7-41.2q-11.4-9.15-21.6-18.6M336 256a80 80 0 1 0-160 0 80 80 0 1 0 160 0m-80-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/audio-description.svg�������������0000664�0000000�0000000�00000001366�14753064456�0031423�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm149.5 141.3 72 144c5.9 11.9 1.1 26.3-10.7 32.2s-26.3 1.1-32.2-10.7l-9.4-18.9H151l-9.4 18.9c-5.9 11.9-20.3 16.7-32.2 10.7s-16.7-20.3-10.7-32.2l72-144c4.1-8.1 12.4-13.3 21.5-13.3s17.4 5.1 21.5 13.3zm-.4 106.6L192 237.7l-21.1 42.2zM304 184c0-13.3 10.7-24 24-24h56c53 0 96 43 96 96s-43 96-96 96h-56c-13.3 0-24-10.7-24-24zm48 24v96h32c26.5 0 48-21.5 48-48s-21.5-48-48-48z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/austral-sign.svg������������������0000664�0000000�0000000�00000001332�14753064456�0030403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M253.5 51.7C248.6 39.8 236.9 32 224 32s-24.6 7.8-29.5 19.7L122.7 224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h64l-13.3 32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h24l-21.5 51.7c-6.8 16.3.9 35 17.2 41.8s35-.9 41.8-17.2l31.8-76.3h197.3l31.8 76.3c6.8 16.3 25.5 24 41.8 17.2s24-25.5 17.2-41.8L392 384h24c17.7 0 32-14.3 32-32s-14.3-32-32-32h-50.7L352 288h64c17.7 0 32-14.3 32-32s-14.3-32-32-32h-90.7zM256 224h-64l32-76.8zm-90.7 64h117.3l13.4 32H152z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/award.svg�������������������������0000664�0000000�0000000�00000003173�14753064456�0027075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M173.8 5.5c11-7.3 25.4-7.3 36.4 0L228 17.2c6 3.9 13 5.8 20.1 5.4l21.3-1.3c13.2-.8 25.6 6.4 31.5 18.2l9.6 19.1c3.2 6.4 8.4 11.5 14.7 14.7l19.3 9.7c11.8 5.9 19 18.3 18.2 31.5l-1.3 21.3c-.4 7.1 1.5 14.2 5.4 20.1l11.8 17.8c7.3 11 7.3 25.4 0 36.4L366.8 228c-3.9 6-5.8 13-5.4 20.1l1.3 21.3c.8 13.2-6.4 25.6-18.2 31.5l-19.1 9.6c-6.4 3.2-11.5 8.4-14.7 14.7l-9.7 19.3c-5.9 11.8-18.3 19-31.5 18.2l-21.3-1.3c-7.1-.4-14.2 1.5-20.1 5.4l-17.8 11.8c-11 7.3-25.4 7.3-36.4 0L156 366.8c-6-3.9-13-5.8-20.1-5.4l-21.3 1.3c-13.2.8-25.6-6.4-31.5-18.2l-9.6-19.1c-3.2-6.4-8.4-11.5-14.7-14.7L39.5 301c-11.8-5.9-19-18.3-18.2-31.5l1.3-21.3c.4-7.1-1.5-14.2-5.4-20.1L5.5 210.2c-7.3-11-7.3-25.4 0-36.4L17.2 156c3.9-6 5.8-13 5.4-20.1l-1.3-21.3c-.8-13.2 6.4-25.6 18.2-31.5l19.1-9.6C65 70.2 70.2 65 73.4 58.6L83 39.5c5.9-11.8 18.3-19 31.5-18.2l21.3 1.3c7.1.4 14.2-1.5 20.1-5.4zM272 192a80 80 0 1 0-160 0 80 80 0 1 0 160 0M1.3 441.8l43.1-102.5c.2.1.3.2.4.4l9.6 19.1c11.7 23.2 36 37.3 62 35.8l21.3-1.3c.2 0 .5 0 .7.2l17.8 11.8c5.1 3.3 10.5 5.9 16.1 7.7l-37.6 89.3c-2.3 5.5-7.4 9.2-13.3 9.7s-11.6-2.2-14.8-7.2l-32.2-49.3-56.1 8.3c-5.7.8-11.4-1.5-15-6s-4.3-10.7-2.1-16zm248 60.4L211.7 413c5.6-1.8 11-4.3 16.1-7.7l17.8-11.8c.2-.1.4-.2.7-.2l21.3 1.3c26 1.5 50.3-12.6 62-35.8l9.6-19.1c.1-.2.2-.3.4-.4l43.2 102.5c2.2 5.3 1.4 11.4-2.1 16s-9.3 6.9-15 6l-56.1-8.3-32.2 49.2c-3.2 5-8.9 7.7-14.8 7.2s-11-4.3-13.3-9.7"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/b.svg�����������������������������0000664�0000000�0000000�00000001043�14753064456�0026212�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h128c70.7 0 128-57.3 128-128 0-46.5-24.8-87.3-62-109.7 18.7-22.3 30-51 30-82.3 0-70.7-57.3-128-128-128zm96 192H64V96h96c35.3 0 64 28.7 64 64s-28.7 64-64 64m-96 64h128c35.3 0 64 28.7 64 64s-28.7 64-64 64H64z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/baby-carriage.svg�����������������0000664�0000000�0000000�00000001235�14753064456�0030464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 192H.1C2.7 117.9 41.3 52.9 99 14.1c13.3-8.9 30.8-4.3 39.9 8.8zm128-32c0-35.3 28.7-64 64-64h32c17.7 0 32 14.3 32 32s-14.3 32-32 32h-32v64c0 25.2-5.8 50.2-17 73.5s-27.8 44.5-48.6 62.3-45.5 32-72.7 41.6S253.4 416 224 416s-58.5-5-85.7-14.6-51.9-23.8-72.7-41.6-37.3-39-48.6-62.3S0 249.2 0 224h384zM80 416a48 48 0 1 1 0 96 48 48 0 1 1 0-96m240 48a48 48 0 1 1 96 0 48 48 0 1 1-96 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/baby.svg��������������������������0000664�0000000�0000000�00000001520�14753064456�0026706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M152 88a72 72 0 1 1 144 0 72 72 0 1 1-144 0M39.7 144.5c13-17.9 38-21.8 55.9-8.8l36.2 26.3c26.8 19.5 59.1 30 92.2 30s65.4-10.5 92.2-30l36.2-26.4c17.9-13 42.9-9 55.9 8.8s9 42.9-8.8 55.9l-36.2 26.4c-13.6 9.9-28.1 18.2-43.3 25V288H128v-36.3c-15.2-6.7-29.7-15.1-43.3-25l-36.2-26.4c-17.9-13-21.8-38-8.8-55.9zm89.8 184.8 60.6 53-26 37.2 24.3 24.3c15.6 15.6 15.6 40.9 0 56.6s-40.9 15.6-56.6 0l-48-48C70 438.6 68.1 417 79.2 401.1l50.2-71.8zm128.5 53 60.6-53 50.2 71.8c11.1 15.9 9.2 37.5-4.5 51.2l-48 48c-15.6 15.6-40.9 15.6-56.6 0s-15.6-40.9 0-56.6l24.3-24.3-26-37.2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/backward-fast.svg�����������������0000664�0000000�0000000�00000001151�14753064456�0030502�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M493.6 445c-11.2 5.3-24.5 3.6-34.1-4.4L288 297.7V416c0 12.4-7.2 23.7-18.4 29s-24.5 3.6-34.1-4.4L64 297.7V416c0 17.7-14.3 32-32 32S0 433.7 0 416V96c0-17.7 14.3-32 32-32s32 14.3 32 32v118.3L235.5 71.4c9.5-7.9 22.8-9.7 34.1-4.4S288 83.6 288 96v118.3L459.5 71.4c9.5-7.9 22.8-9.7 34.1-4.4S512 83.6 512 96v320c0 12.4-7.2 23.7-18.4 29"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/backward-step.svg�����������������0000664�0000000�0000000�00000000761�14753064456�0030526�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M267.5 440.6c9.5 7.9 22.8 9.7 34.1 4.4s18.4-16.6 18.4-29V96c0-12.4-7.2-23.7-18.4-29s-24.5-3.6-34.1 4.4l-192 160L64 241V96c0-17.7-14.3-32-32-32S0 78.3 0 96v320c0 17.7 14.3 32 32 32s32-14.3 32-32V271l11.5 9.6z"/></svg>���������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/backward.svg����������������������0000664�0000000�0000000�00000001067�14753064456�0027555�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M459.5 440.6c9.5 7.9 22.8 9.7 34.1 4.4s18.4-16.6 18.4-29V96c0-12.4-7.2-23.7-18.4-29s-24.5-3.6-34.1 4.4L288 214.3v83.4zM256 352V96c0-12.4-7.2-23.7-18.4-29s-24.5-3.6-34.1 4.4l-192 160C4.2 237.5 0 246.5 0 256s4.2 18.5 11.5 24.6l192 160c9.5 7.9 22.8 9.7 34.1 4.4s18.4-16.6 18.4-29z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bacon.svg�������������������������0000664�0000000�0000000�00000001643�14753064456�0027061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.2 1.2c11.2-3.2 23.2-.1 31.4 8.1L518 56.7l-26.5 7.9c-58 16.6-98.1 39.6-129.6 67.4-31.2 27.5-53.2 59.1-75.1 90.9l-2.3 3.3C241.6 288.7 195 356.6 72.8 417.7l-34.9 17.5-28.5-28.6c-7.3-7.3-10.6-17.6-9-27.8s8.1-18.9 17.3-23.5c118.4-59.1 163.2-124.3 205.6-186l2.3-3.4c21.8-31.8 44.9-64.9 77.7-93.9 33.4-29.5 75.8-53.6 135.9-70.8M61.8 459l25.4-12.7c129.5-64.7 179.9-138.1 223.8-202l2.2-3.3c22.1-32.1 42.1-60.5 69.9-85.1 27.5-24.3 63.4-45.2 117.3-60.6l.2-.1 43.1-12.9 23 23c8 8 11.2 19.7 8.3 30.7s-11.3 19.6-22.2 22.7c-51.9 14.8-85.6 34.7-111.1 57.2-26.1 23-45.1 49.9-67.3 82.1l-2.2 3.2c-44.4 64.7-96.7 140.8-229.9 207.4-12.3 6.2-27.2 3.7-36.9-6z"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bacteria.svg����������������������0000664�0000000�0000000�00000005660�14753064456�0027554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M304.9.7c-9.6-2.7-19.5 2.8-22.3 12.4l-4.3 15.2c-8.3-.6-16.8 0-25.2 1.9-7.3 1.7-14.3 3.5-21.1 5.5L226.5 23c-3.9-9.1-14.5-13.4-23.6-9.5s-13.4 14.5-9.5 23.6l4.4 10.4c-16.6 6.7-31.7 14.4-45.4 22.8L147 62c-5.5-8.3-16.7-10.5-25-5s-10.5 16.7-5 25l6 9c-13.7 11-25.5 22.8-35.8 34.9l-10-8c-7.8-6.2-19.1-5-25.3 2.8s-5 19.1 2.8 25.3l11.2 9c-1.8 2.8-3.5 5.7-5.1 8.5-6.6 11.4-11.8 22.6-16 33l-8-3.2c-9.2-3.7-19.7.8-23.4 10s.8 19.7 10 23.4l10.4 4.2c-.2.8-.4 1.5-.5 2.3-2.2 9.3-3.4 17.3-4.1 23.4-.4 3.1-.6 5.7-.8 7.8-.1 1.1-.1 2-.2 2.8l-.1 1.1v.8s0 .1 29.1 1h-.1l-29.1-.8c-.1 3.1 0 6.1.2 9.1L13 282.7C3.5 285.4-2 295.4.7 304.9S13.4 320 23 317.3l15.6-4.5c7.6 13.6 18.9 25 32.6 32.6L66.7 361c-2.7 9.6 2.8 19.5 12.4 22.3s19.5-2.8 22.3-12.4l4.3-15.2c1.2.1 2.4.2 3.6.2 15.6.5 30.3-3.3 43-10.2l9 9c7 7 18.4 7 25.5 0s7-18.4 0-25.5l-7.2-7.2c9.3-12.6 15.2-27.8 16.3-44.5l7.1 3c9.1 3.9 19.7-.3 23.6-9.5s-.3-19.7-9.5-23.6l-8.6-3.7c6.4-9.9 17.3-22.4 36.9-33.3l1.3 4.4c2.7 9.6 12.7 15.1 22.3 12.4s15.1-12.7 12.4-22.3l-2.3-8.1c3.8-1.1 7.7-2.1 11.9-3.1 11.6-2.7 22.1-7.7 31.1-14.4l7.2 7.2c7 7 18.4 7 25.5 0s7-18.4 0-25.5l-9-9c7.6-13.9 11.3-30.1 10.1-46.6l15.2-4.3c9.6-2.7 15.1-12.7 12.4-22.3S370.6 64 361 66.7l-15.6 4.5c-7.7-13.9-19.1-25.1-32.6-32.6l4.5-15.6c2.7-9.6-2.8-19.5-12.4-22.3M112 272l-48-1.5c11.7.4 27.3.9 48 1.6zm16-80a32 32 0 1 1 0 64 32 32 0 1 1 0-64m64-48a16 16 0 1 1 32 0 16 16 0 1 1-32 0m130.7 345c-2.7 9.6 2.8 19.5 12.4 22.3s19.5-2.8 22.2-12.4l4.3-15.2c8.3.6 16.8 0 25.2-1.9 7.3-1.7 14.3-3.5 21.1-5.5l5.5 12.7c3.9 9.1 14.5 13.4 23.6 9.5s13.4-14.5 9.5-23.6l-4.4-10.4c16.6-6.7 31.7-14.4 45.4-22.8l5.5 8.3c5.5 8.3 16.7 10.5 25 5s10.5-16.7 5-25l-6-9c13.7-11 25.5-22.8 35.8-34.9l10 8c7.8 6.2 19.1 5 25.3-2.8s5-19.1-2.8-25.3l-11.2-9c1.8-2.8 3.5-5.7 5.1-8.5 6.6-11.4 11.8-22.6 16-33l8 3.2c9.2 3.7 19.7-.8 23.4-10s-.8-19.7-10-23.4l-10.4-4.2c.2-.8.4-1.5.5-2.3 2.2-9.3 3.4-17.3 4.1-23.4.4-3.1.6-5.7.8-7.8.1-1.1.1-2 .2-2.8l.1-1.1v-.8s0-.1-29.1-1h.1l29.1.9c.1-3.1 0-6.1-.2-9.1l15.2-4.3c9.6-2.7 15.1-12.7 12.4-22.3s-12.7-15.1-22.3-12.4l-15.6 4.5c-7.6-13.6-18.9-25-32.6-32.6l4.5-15.6c2.7-9.6-2.8-19.5-12.4-22.3s-19.5 2.8-22.3 12.4l-4.3 15.2c-1.2-.1-2.4-.2-3.6-.2-15.6-.5-30.3 3.3-43 10.2l-9-9c-7-7-18.4-7-25.5 0s-7 18.4 0 25.5l7.2 7.2c-9.3 12.6-15.2 27.8-16.3 44.5l-7.1-3c-9.1-3.9-19.7.3-23.6 9.5s.3 19.7 9.5 23.6l8.6 3.7c-6.4 9.9-17.3 22.4-36.9 33.3l-1.3-4.4c-2.7-9.6-12.7-15.1-22.3-12.4s-15.1 12.7-12.4 22.3l2.3 8.1c-3.8 1.1-7.7 2.1-11.9 3.1-11.6 2.7-22.1 7.7-31.1 14.4l-7.2-7.2c-7-7-18.4-7-25.5 0s-7 18.4 0 25.5l9 9c-7.6 13.9-11.3 30.1-10.1 46.6l-15.2 4.3c-9.6 2.7-15.1 12.7-12.4 22.2s12.7 15.1 22.3 12.4l15.6-4.5c7.7 13.9 19.1 25.1 32.6 32.6zM576 241.5c-11.7-.4-27.3-.9-48-1.6l48 1.5zM448 384a32 32 0 1 1-64 0 32 32 0 1 1 64 0"/></svg>��������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bacterium.svg���������������������0000664�0000000�0000000�00000003263�14753064456�0027752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M423.1 30.6c3.6-12.7-3.7-26-16.5-29.7s-26 3.7-29.7 16.5l-4.2 14.7c-9.8-.4-19.9.5-29.9 2.8-12.1 2.8-23.7 5.9-34.9 9.4L302 30.6c-5.2-12.2-19.3-17.8-31.5-12.6s-17.8 19.3-12.6 31.5l4.9 11.3c-22 9.4-42 20.1-60.2 31.8l-6.6-9.9c-7.4-11-22.3-14-33.3-6.7s-14 22.3-6.7 33.3l7.8 11.6c-18 15-33.7 30.8-47.3 47.1L103 157.3c-10.4-8.3-25.5-6.6-33.7 3.7s-6.6 25.5 3.7 33.7l15 12c-2.1 3.2-4.1 6.5-6 9.7-9.4 15.7-17 31-23.2 45.3l-9.9-3.9c-12.3-4.9-26.3 1.1-31.2 13.4s1.1 26.3 13.4 31.2l11.6 4.6c-.3 1.1-.6 2.1-.9 3.1-3.5 12.5-5.7 23.2-7.1 31.3-.7 4.1-1.2 7.5-1.6 10.3-.2 1.4-.3 2.6-.4 3.6l-.1 1.4-.1.6v.4s0 .1 39.2 3.7l-39.2-3.6c-.5 5-.6 10-.4 14.9l-14.7 4.2C4.7 380.6-2.7 393.8.9 406.6s16.9 20.1 29.7 16.5l13.8-3.9C55 439.9 72 457 92.9 467.7L89 481.4c-3.6 12.7 3.7 26 16.5 29.7s26-3.7 29.7-16.5l4.2-14.7c23.8 1 46.3-5.5 65.1-17.6L215 473c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-10.6-10.6c9.1-14.1 15.1-30.5 17-48.3l.1-.8c.3-1.7 1-5.1 2.3-9.8l.2-.8 12.6 5.4c12.2 5.2 26.3-.4 31.5-12.6s-.4-26.3-12.6-31.5l-11.3-4.8c9.9-14.9 24.9-31.6 48.6-46l2.1 7.5c3.6 12.7 16.9 20.1 29.7 16.5s20.1-16.9 16.5-29.7l-4-14.4c6.9-2.2 14.3-4.3 22.2-6.1 12.9-3 24.7-8 35.2-14.8L439 249c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-10.6-10.6c12.2-19 18.6-41.6 17.6-65.1l14.7-4.2c12.7-3.6 20.1-16.9 16.5-29.7S494.2 85.4 481.4 89l-13.7 3.9c-10.8-21.2-28-38-48.5-48.5zm-331 332.7L144 368zM112 320a48 48 0 1 1 96 0 48 48 0 1 1-96 0m128-136a24 24 0 1 1 0 48 24 24 0 1 1 0-48"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bag-shopping.svg������������������0000664�0000000�0000000�00000001072�14753064456�0030351�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 112c0-35.3 28.7-64 64-64s64 28.7 64 64v48H160zm-48 48H48c-26.5 0-48 21.5-48 48v208c0 53 43 96 96 96h256c53 0 96-43 96-96V208c0-26.5-21.5-48-48-48h-64v-48C336 50.1 285.9 0 224 0S112 50.1 112 112zm24 48a24 24 0 1 1 0 48 24 24 0 1 1 0-48m152 24a24 24 0 1 1 48 0 24 24 0 1 1-48 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bahai.svg�������������������������0000664�0000000�0000000�00000002665�14753064456�0027050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 0c14.5 0 27.2 9.7 30.9 23.8l23.9 89.6 75.9-53.3c11.9-8.3 27.8-7.6 39 1.7s14.6 24.9 8.4 38.1l-39.3 84 92.4 8c14.4 1.2 26.2 12 28.8 26.3s-4.9 28.5-18 34.6l-84.1 39.1 65.7 65.5c10.3 10.2 12.4 26.1 5.1 38.7s-22 18.7-36 14.9L391 386.8l8.2 92.4c1.3 14.4-7.3 27.9-20.9 32.9s-28.9.1-37.2-11.7l-53.1-76-53.1 76c-8.3 11.9-23.6 16.7-37.2 11.7s-22.2-18.5-20.9-32.9l8.2-92.4-89.6 24.1c-14 3.8-28.8-2.3-36-14.9s-5.2-28.4 5.1-38.7l65.7-65.5L46 252.7c-13.1-6.1-20.5-20.3-18-34.6s14.3-25.1 28.8-26.3l92.4-8-39.3-84c-6.1-13.1-2.7-28.8 8.4-38.1s27.1-10 39-1.7l75.9 53.3 23.9-89.6C260.8 9.7 273.5 0 288 0m0 156.2-4.8 18c-2.7 10.1-10.2 18.2-20 21.8s-20.8 2.1-29.3-3.9l-15.2-10.7 7.9 16.8c4.4 9.5 4 20.5-1.3 29.6s-14.5 15-25 15.9l-18.5 1.6 16.8 7.8c9.5 4.4 16.2 13.2 18 23.5s-1.5 20.8-8.9 28.2l-13.2 13.1 17.9-4.8c10.1-2.7 20.9-.3 28.9 6.4s12.2 16.9 11.3 27.3l-1.6 18.5 10.6-15.2c6-8.6 15.8-13.7 26.2-13.7s20.2 5.1 26.2 13.7l10.6 15.2-1.6-18.5c-.9-10.4 3.3-20.6 11.3-27.3s18.8-9.1 28.9-6.4l17.9 4.8-13.2-13.1c-7.4-7.4-10.7-17.9-8.9-28.2s8.5-19.1 18-23.5l16.8-7.8-18.5-1.6c-10.4-.9-19.7-6.8-25-15.9s-5.7-20.1-1.3-29.6l7.9-16.8-15.2 10.7c-8.6 6-19.5 7.5-29.3 3.9s-17.3-11.7-20-21.8l-4.8-18z"/></svg>���������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/baht-sign.svg���������������������0000664�0000000�0000000�00000001261�14753064456�0027647�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M144 0c-17.7 0-32 14.3-32 32v32H37.6C16.8 64 0 80.8 0 101.6v304.7c0 23 18.7 41.7 41.7 41.7H112v32c0 17.7 14.3 32 32 32s32-14.3 32-32v-32h32c61.9 0 112-50.1 112-112 0-40.1-21.1-75.3-52.7-95.1 13-18.3 20.7-40.7 20.7-64.9 0-61.9-50.1-112-112-112V32c0-17.7-14.3-32-32-32m-32 128v96H64v-96zm64 96v-96c26.5 0 48 21.5 48 48s-21.5 48-48 48m-64 64v96H64v-96zm64 96v-96h32c26.5 0 48 21.5 48 48s-21.5 48-48 48z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/ban-smoking.svg�������������������0000664�0000000�0000000�00000001514�14753064456�0030201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m99.5 144.8 79.2 79.2 96 96 92.5 92.5C335.9 434.9 297.5 448 256 448c-106 0-192-86-192-192 0-41.5 13.1-79.9 35.5-111.2M333.3 288l-32-32H384v32zm32 32H400c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16H269.3L144.8 99.5C176.1 77.1 214.5 64 256 64c106 0 192 86 192 192 0 41.5-13.1 79.9-35.5 111.2zM256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m16-416c-8.8 0-16 7.2-16 16 0 26.5 21.5 48 48 48h32c8.8 0 16 7.2 16 16s7.2 16 16 16 16-7.2 16-16c0-26.5-21.5-48-48-48h-32c-8.8 0-16-7.2-16-16s-7.2-16-16-16m-42.5 224-96-96H112c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/ban.svg���������������������������0000664�0000000�0000000�00000001015�14753064456�0026530�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M367.2 412.5 99.5 144.8C77.1 176.1 64 214.5 64 256c0 106 86 192 192 192 41.5 0 79.9-13.1 111.2-35.5m45.3-45.3C434.9 335.9 448 297.5 448 256c0-106-86-192-192-192-41.5 0-79.9 13.1-111.2 35.5zM0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bandage.svg�����������������������0000664�0000000�0000000�00000001126�14753064456�0027354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M480 416h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64h-96zM448 96H192v320h256zM64 96c-35.3 0-64 28.7-64 64v192c0 35.3 28.7 64 64 64h96V96zm184 112a24 24 0 1 1 48 0 24 24 0 1 1-48 0m120-24a24 24 0 1 1 0 48 24 24 0 1 1 0-48M248 304a24 24 0 1 1 48 0 24 24 0 1 1-48 0m120-24a24 24 0 1 1 0 48 24 24 0 1 1 0-48"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bangladeshi-taka-sign.svg���������0000664�0000000�0000000�00000001257�14753064456�0032115�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M36 32.3C18.4 30.1 2.4 42.5.2 60S10.5 93.6 28 95.8l7.9 1c16 2 28 15.6 28 31.8L64 160H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v160c0 53 43 96 96 96h32c106 0 192-86 192-192v-32c0-53-43-96-96-96h-16c-17.7 0-32 14.3-32 32s14.3 32 32 32h16c17.7 0 32 14.3 32 32v32c0 70.7-57.3 128-128 128h-32c-17.7 0-32-14.3-32-32V224h32c17.7 0 32-14.3 32-32s-14.3-32-32-32h-32v-31.5c0-48.4-36.1-89.3-84.1-95.3l-7.9-1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/barcode.svg�����������������������0000664�0000000�0000000�00000001533�14753064456�0027374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M24 32C10.7 32 0 42.7 0 56v400c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24zm88 0c-8.8 0-16 7.2-16 16v416c0 8.8 7.2 16 16 16s16-7.2 16-16V48c0-8.8-7.2-16-16-16m72 0c-13.3 0-24 10.7-24 24v400c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24zm96 0c-13.3 0-24 10.7-24 24v400c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24zm168 24v400c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-16c-13.3 0-24 10.7-24 24m-64-8v416c0 8.8 7.2 16 16 16s16-7.2 16-16V48c0-8.8-7.2-16-16-16s-16 7.2-16 16"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bars-progress.svg�����������������0000664�0000000�0000000�00000001031�14753064456�0030557�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 160H320v-32h128zM48 64C21.5 64 0 85.5 0 112v64c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-64c0-26.5-21.5-48-48-48zm400 288v32H192v-32zM48 288c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48v-64c0-26.5-21.5-48-48-48z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bars-staggered.svg����������������0000664�0000000�0000000�00000001067�14753064456�0030671�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96c0-17.7 14.3-32 32-32h384c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32m64 160c0-17.7 14.3-32 32-32h384c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-17.7 0-32-14.3-32-32m384 160c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h384c17.7 0 32 14.3 32 32"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bars.svg��������������������������0000664�0000000�0000000�00000001066�14753064456�0026725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96c0-17.7 14.3-32 32-32h384c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32m0 160c0-17.7 14.3-32 32-32h384c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32m448 160c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h384c17.7 0 32 14.3 32 32"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/baseball-bat-ball.svg�������������0000664�0000000�0000000�00000001352�14753064456�0031215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M424 0c-12.4 0-24.2 4.9-33 13.7L233.5 171.2c-10.5 10.5-19.8 22.1-27.7 34.6l-73.1 115.8c-7.3 11.5-15.8 22.2-25.5 31.9l-37.3 37.2 51.3 51.3 37.3-37.3c9.6-9.6 20.3-18.2 31.9-25.5l115.8-73.1c12.5-7.9 24.1-17.2 34.6-27.7L498.3 121c8.7-8.7 13.7-20.6 13.7-33s-4.9-24.2-13.7-33L457 13.7C448.2 4.9 436.4 0 424 0m88 432a80 80 0 1 0-160 0 80 80 0 1 0 160 0M15 399c-9.4 9.4-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L49 399c-9.4-9.4-24.6-9.4-33.9 0z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/baseball.svg����������������������0000664�0000000�0000000�00000002500�14753064456�0027535�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M62.7 223.4q-7.2.6-14.7.6c-15.6 0-30.8-2-45.2-5.9C19.2 107.1 107.1 19.2 218.1 2.8 222 17.2 224 32.4 224 48q0 7.35-.6 14.7c-.7 8.8 5.8 16.5 14.6 17.3s16.5-5.8 17.3-14.6c.5-5.7.7-11.5.7-17.3 0-16.5-1.9-32.6-5.6-47.9 1.8 0 3.7-.1 5.6-.1C397.4 0 512 114.6 512 256c0 1.9 0 3.7-.1 5.6-15.4-3.6-31.4-5.6-47.9-5.6-5.8 0-11.6.2-17.3.7-8.8.7-15.4 8.5-14.6 17.3s8.5 15.4 17.3 14.6q7.2-.6 14.7-.6c15.6 0 30.8 2 45.2 5.9-16.5 111-104.4 198.9-215.4 215.3-3.9-14.4-5.9-29.6-5.9-45.2q0-7.35.6-14.7c.7-8.8-5.8-16.5-14.6-17.3s-16.5 5.8-17.3 14.6c-.5 5.7-.7 11.5-.7 17.3 0 16.5 1.9 32.6 5.6 47.9-1.8 0-3.7.1-5.6.1C114.6 512 0 397.4 0 256c0-1.9 0-3.7.1-5.6 15.3 3.7 31.4 5.6 47.9 5.6 5.8 0 11.6-.2 17.3-.7 8.8-.7 15.4-8.5 14.6-17.3s-8.5-15.4-17.3-14.6zm58.6-15.4c-8 3.7-11.6 13.2-7.9 21.2s13.2 11.6 21.2 7.9c45.2-20.8 81.7-57.2 102.5-102.5 3.7-8 .2-17.5-7.9-21.2s-17.5-.2-21.2 7.9c-17.6 38.3-48.5 69.2-86.7 86.7m277.2 74.7c-3.7-8-13.2-11.6-21.2-7.9-45.2 20.8-81.7 57.2-102.5 102.5-3.7 8-.2 17.5 7.9 21.2s17.5.2 21.2-7.9c17.6-38.3 48.5-69.2 86.7-86.7 8-3.7 11.6-13.2 7.9-21.2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/basket-shopping.svg���������������0000664�0000000�0000000�00000001501�14753064456�0031066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M253.3 35.1c6.1-11.8 1.5-26.3-10.2-32.4s-26.3-1.5-32.4 10.2L117.6 192H32c-17.7 0-32 14.3-32 32s14.3 32 32 32l51.9 207.5C91 492 116.6 512 146 512h284c29.4 0 55-20 62.1-48.5L544 256c17.7 0 32-14.3 32-32s-14.3-32-32-32h-85.6L365.3 12.9c-6.1-11.7-20.6-16.3-32.4-10.2s-16.3 20.6-10.2 32.4L404.3 192H171.7zM192 304v96c0 8.8-7.2 16-16 16s-16-7.2-16-16v-96c0-8.8 7.2-16 16-16s16 7.2 16 16m96-16c8.8 0 16 7.2 16 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16v-96c0-8.8 7.2-16 16-16m128 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16v-96c0-8.8 7.2-16 16-16s16 7.2 16 16"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/basketball.svg��������������������0000664�0000000�0000000�00000002247�14753064456�0030104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m86.6 64 85.2 85.2C194.5 121.7 208 86.4 208 48c0-14.7-2-28.9-5.7-42.4C158.6 15 119 35.5 86.6 64M64 86.6c-28.5 32.4-49 72-58.4 115.7C19.1 206 33.3 208 48 208c38.4 0 73.7-13.5 101.3-36.1zM256 0c-7.3 0-14.6.3-21.8.9C238 16 240 31.8 240 48c0 47.3-17.1 90.5-45.4 124l61.4 61.4L425.4 64C380.2 24.2 320.9 0 256 0M48 240c-16.2 0-32-2-47.1-5.8A263 263 0 0 0 0 256c0 64.9 24.2 124.2 64 169.4L233.4 256 172 194.6C138.5 222.9 95.3 240 48 240m463.1 37.8c.6-7.2.9-14.5.9-21.8 0-64.9-24.2-124.2-64-169.4L278.6 256l61.4 61.4c33.4-28.3 76.7-45.4 124-45.4 16.2 0 32 2 47.1 5.8m-4.7 31.9c-13.5-3.7-27.7-5.7-42.4-5.7-38.4 0-73.7 13.5-101.3 36.1l85.3 85.3c28.5-32.3 49.1-71.9 58.4-115.7m-166.3 53C317.5 390.3 304 425.6 304 464c0 14.7 2 28.9 5.7 42.4 43.7-9.4 83.3-29.9 115.7-58.4l-85.2-85.2zM317.4 340 256 278.6 86.6 448c45.1 39.8 104.4 64 169.4 64 7.3 0 14.6-.3 21.8-.9C274 496 272 480.2 272 464c0-47.3 17.1-90.5 45.4-124"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bath.svg��������������������������0000664�0000000�0000000�00000001522�14753064456�0026711�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 77.3C96 70 101.9 64 109.3 64c3.5 0 6.9 1.4 9.4 3.9l14.9 14.9c-3.6 9-5.6 18.9-5.6 29.2 0 19.9 7.2 38 19.2 52-5.3 9.2-4 21.1 3.8 29 9.4 9.4 24.6 9.4 33.9 0L289 89c9.4-9.4 9.4-24.6 0-33.9-7.9-7.9-19.8-9.1-29-3.8C246 39.2 227.9 32 208 32c-10.3 0-20.2 2-29.2 5.5l-14.9-14.9C149.4 8.1 129.7 0 109.3 0 66.6 0 32 34.6 32 77.3V256c-17.7 0-32 14.3-32 32s14.3 32 32 32h448c17.7 0 32-14.3 32-32s-14.3-32-32-32H96zM32 352v16c0 28.4 12.4 54 32 71.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32v-16h256v16c0 17.7 14.3 32 32 32s32-14.3 32-32v-40.4c19.6-17.6 32-43.1 32-71.6v-16z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/battery-empty.svg�����������������0000664�0000000�0000000�00000001031�14753064456�0030574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M80 160c-8.8 0-16 7.2-16 16v160c0 8.8 7.2 16 16 16h384c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16zM0 176c0-44.2 35.8-80 80-80h384c44.2 0 80 35.8 80 80v16c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32v16c0 44.2-35.8 80-80 80H80c-44.2 0-80-35.8-80-80z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/battery-full.svg������������������0000664�0000000�0000000�00000001060�14753064456�0030402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 160c8.8 0 16 7.2 16 16v160c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16zM80 96c-44.2 0-80 35.8-80 80v160c0 44.2 35.8 80 80 80h384c44.2 0 80-35.8 80-80v-16c17.7 0 32-14.3 32-32v-64c0-17.7-14.3-32-32-32v-16c0-44.2-35.8-80-80-80zm368 96H96v128h352z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/battery-half.svg������������������0000664�0000000�0000000�00000001060�14753064456�0030352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 160c8.8 0 16 7.2 16 16v160c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16zM80 96c-44.2 0-80 35.8-80 80v160c0 44.2 35.8 80 80 80h384c44.2 0 80-35.8 80-80v-16c17.7 0 32-14.3 32-32v-64c0-17.7-14.3-32-32-32v-16c0-44.2-35.8-80-80-80zm208 96H96v128h192z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/battery-quarter.svg���������������0000664�0000000�0000000�00000001057�14753064456�0031131�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 160c8.8 0 16 7.2 16 16v160c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16zM80 96c-44.2 0-80 35.8-80 80v160c0 44.2 35.8 80 80 80h384c44.2 0 80-35.8 80-80v-16c17.7 0 32-14.3 32-32v-64c0-17.7-14.3-32-32-32v-16c0-44.2-35.8-80-80-80zm112 96H96v128h96z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/battery-three-quarters.svg��������0000664�0000000�0000000�00000001060�14753064456�0032413�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 160c8.8 0 16 7.2 16 16v160c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16zM80 96c-44.2 0-80 35.8-80 80v160c0 44.2 35.8 80 80 80h384c44.2 0 80-35.8 80-80v-16c17.7 0 32-14.3 32-32v-64c0-17.7-14.3-32-32-32v-16c0-44.2-35.8-80-80-80zm272 96H96v128h256z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bed-pulse.svg���������������������0000664�0000000�0000000�00000001561�14753064456�0027656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M483.2 9.6 524 64h92c13.3 0 24 10.7 24 24s-10.7 24-24 24H512c-7.6 0-14.7-3.6-19.2-9.6l-24.1-32.1-47 99.9c-3.7 7.8-11.3 13.1-19.9 13.7s-16.9-3.4-21.7-10.6L339.2 112H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h136c8 0 15.5 4 20 10.7l24.4 36.6 45.9-97.5C445.9 6.2 453.2 1 461.6.1s16.6 2.7 21.6 9.5M320 160h12.7l20.7 31.1c11.2 16.8 30.6 26.3 50.7 24.8s37.9-13.7 46.5-32l11.3-23.9H544c53 0 96 43 96 96v224c0 17.7-14.3 32-32 32s-32-14.3-32-32v-32H64v32c0 17.7-14.3 32-32 32S0 497.7 0 480V96c0-17.7 14.3-32 32-32s32 14.3 32 32v256h224V192c0-17.7 14.3-32 32-32m-144 0a80 80 0 1 1 0 160 80 80 0 1 1 0-160"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bed.svg���������������������������0000664�0000000�0000000�00000001013�14753064456�0026520�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 32c17.7 0 32 14.3 32 32v256h224V160c0-17.7 14.3-32 32-32h224c53 0 96 43 96 96v224c0 17.7-14.3 32-32 32s-32-14.3-32-32v-32H64v32c0 17.7-14.3 32-32 32S0 465.7 0 448V64c0-17.7 14.3-32 32-32m144 96a80 80 0 1 1 0 160 80 80 0 1 1 0-160"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/beer-mug-empty.svg����������������0000664�0000000�0000000�00000001420�14753064456�0030627�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 64c0-17.7 14.3-32 32-32h288c17.7 0 32 14.3 32 32v32h51.2c42.4 0 76.8 34.4 76.8 76.8v102.1c0 30.4-17.9 57.9-45.6 70.2L384 381.7V416c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64zm352 247.6 56.4-25.1c4.6-2.1 7.6-6.6 7.6-11.7V172.7c0-7.1-5.7-12.8-12.8-12.8l-51.2.1zM160 144c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16zm64 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16zm64 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bell-concierge.svg����������������0000664�0000000�0000000�00000001025�14753064456�0030643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M216 64c-13.3 0-24 10.7-24 24s10.7 24 24 24h16v33.3C119.6 157.2 32 252.4 32 368h448c0-115.6-87.6-210.8-200-222.7V112h16c13.3 0 24-10.7 24-24s-10.7-24-24-24h-80M24 400c-13.3 0-24 10.7-24 24s10.7 24 24 24h464c13.3 0 24-10.7 24-24s-10.7-24-24-24z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bell-slash.svg��������������������0000664�0000000�0000000�00000001435�14753064456�0030024�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2s-6.3 25.5 4.1 33.7l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-90.2-70.7c.2-.4.4-.9.6-1.3 5.2-11.5 3.1-25-5.3-34.4l-7.4-8.3c-31.2-35.2-48.5-80.5-48.5-127.6V208c0-77.4-55-142-128-156.8V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v19.2c-42.6 8.6-79 34.2-102 69.3zM406.2 416 160 222.1v4.8c0 47-17.3 92.4-48.5 127.6l-7.4 8.3c-8.4 9.4-10.4 22.9-5.3 34.4S115.4 416 128 416zm-40.9 77.3c12-12 18.7-28.3 18.7-45.3H256c0 17 6.7 33.3 18.7 45.3S303 512 320 512s33.3-6.7 45.3-18.7"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bell.svg��������������������������0000664�0000000�0000000�00000001233�14753064456�0026710�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 0c-17.7 0-32 14.3-32 32v19.2C119 66 64 130.6 64 208v18.8c0 47-17.3 92.4-48.5 127.6l-7.4 8.3c-8.4 9.4-10.4 22.9-5.3 34.4S19.4 416 32 416h384c12.6 0 24-7.4 29.2-18.9s3.1-25-5.3-34.4l-7.4-8.3c-31.2-35.2-48.5-80.5-48.5-127.6V208c0-77.4-55-142-128-156.8V32c0-17.7-14.3-32-32-32m45.3 493.3c12-12 18.7-28.3 18.7-45.3H160c0 17 6.7 33.3 18.7 45.3S207 512 224 512s33.3-6.7 45.3-18.7"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bezier-curve.svg������������������0000664�0000000�0000000�00000001713�14753064456�0030377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M296 136V88h48v48zm-8-104c-26.5 0-48 21.5-48 48v4H121.6C111.2 62.7 89.3 48 64 48 28.7 48 0 76.7 0 112s28.7 64 64 64c25.3 0 47.2-14.7 57.6-36h66.9c-58.9 39.6-98.9 105-104 180H80c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h64c26.5 0 48-21.5 48-48v-64c0-26.5-21.5-48-48-48h-3.3c5.9-67 48.5-123.4 107.5-149.1 8.6 12.7 23.2 21.1 39.8 21.1h64c16.6 0 31.1-8.4 39.8-21.1 59 25.7 101.6 82.1 107.5 149.1H496c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h64c26.5 0 48-21.5 48-48v-64c0-26.5-21.5-48-48-48h-4.5c-5-75-45.1-140.4-104-180h66.9c10.4 21.3 32.3 36 57.6 36 35.3 0 64-28.7 64-64s-28.7-64-64-64c-25.3 0-47.2 14.7-57.6 36H400v-4c0-26.5-21.5-48-48-48zM88 376h48v48H88zm416 48v-48h48v48z"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bicycle.svg�����������������������0000664�0000000�0000000�00000002127�14753064456�0027407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M312 32c-13.3 0-24 10.7-24 24s10.7 24 24 24h25.7l34.6 64H222.9l-27.4-38c-4.5-6.3-11.8-10-19.5-10h-56c-13.3 0-24 10.7-24 24s10.7 24 24 24h43.7l22.1 30.7-26.6 53.1c-10-2.5-20.5-3.8-31.2-3.8C57.3 224 0 281.3 0 352s57.3 128 128 128c65.3 0 119.1-48.9 127-112h49c8.5 0 16.3-4.5 20.7-11.8l84.8-143.5 21.7 40.1C402.4 276.3 384 312 384 352c0 70.7 57.3 128 128 128s128-57.3 128-128-57.3-128-128-128c-13.5 0-26.5 2.1-38.7 6L375.4 48.8C369.8 38.4 359 32 347.2 32zm146.6 271.7 32.3 59.7c6.3 11.7 20.9 16 32.5 9.7s16-20.9 9.7-32.5l-32.3-59.7c3.6-.6 7.4-.9 11.2-.9 39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72c0-18.6 7-35.5 18.6-48.3M133.2 368h65c-7.3 32.1-36 56-70.2 56-39.8 0-72-32.2-72-72s32.2-72 72-72c1.7 0 3.4.1 5.1.2l-24.2 48.5c-9 18.1 4.1 39.4 24.3 39.4zm33.7-48 50.7-101.3 72.9 101.2-.1.1zm90.6-128H366l-49 82.8-59.6-82.8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/binoculars.svg��������������������0000664�0000000�0000000�00000001337�14753064456�0030140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 32h32c17.7 0 32 14.3 32 32v32H96V64c0-17.7 14.3-32 32-32m64 96v320c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32v-59.1c0-34.6 9.4-68.6 27.2-98.3C40.9 267.8 49.7 242.4 53 216l7.5-60c2-16 15.6-28 31.8-28h99.8zm227.8 0c16.1 0 29.8 12 31.8 28l7.4 60c3.3 26.4 12.1 51.8 25.8 74.6 17.8 29.7 27.2 63.7 27.2 98.3V448c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V128zM320 64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32v32h-96zm-32 64v160h-64V128z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/biohazard.svg���������������������0000664�0000000�0000000�00000003132�14753064456�0027735�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M173.2 0c-1.8 0-3.5.7-4.8 2C138.5 32.3 120 74 120 120c0 26.2 6 50.9 16.6 73-22 2.4-43.8 9.1-64.2 20.5-34.5 19.3-59.1 48.9-72 82.5-.7 1.7-.5 3.7.5 5.2 2.2 3.7 7.4 4.3 10.6 1.3C64.2 254.3 158 245.1 205 324s-8.1 153.1-77.6 173.2c-4.2 1.2-6.3 5.9-4.1 9.6 1 1.6 2.6 2.7 4.5 3 36.5 5.9 75.2.1 109.7-19.2 20.4-11.4 37.4-26.5 50.5-43.8 13.1 17.3 30.1 32.4 50.5 43.8 34.5 19.3 73.3 25.2 109.7 19.2 1.9-.3 3.5-1.4 4.5-3 2.2-3.7.1-8.4-4.1-9.6C379.1 477.1 324 403 371 324s140.7-69.8 193.5-21.4c3.2 2.9 8.4 2.3 10.6-1.3 1-1.6 1.1-3.5.5-5.2-12.9-33.6-37.5-63.2-72.1-82.5a168.8 168.8 0 0 0-64.2-20.5C450 170.9 456 146.2 456 120c0-46-18.5-87.7-48.4-118-1.3-1.3-3-2-4.8-2-5 0-8.4 5.2-6.7 9.9C421.7 80.5 385.6 176 288 176S154.3 80.5 179.9 9.9c1.7-4.7-1.6-9.9-6.7-9.9M240 272a48 48 0 1 1 96 0 48 48 0 1 1-96 0m-58.3 145.6c6.3-11.8 9.8-25.1 8.6-39.8-19.5-18-34-41.4-41.2-67.8-12.5-8.1-26.2-11.8-40-12.4-9-.4-18.1.6-27.1 2.7 7.8 57.1 38.7 106.8 82.9 139.4 6.8-6.7 12.6-14.1 16.8-22.1M288 64c-28.8 0-56.3 5.9-81.2 16.5 2 8.3 5 16.2 9 23.5 6.8 12.4 16.7 23.1 30.1 30.3 13.3-4.1 27.5-6.3 42.2-6.3s28.8 2.2 42.2 6.3c13.4-7.2 23.3-17.9 30.1-30.3 4-7.3 7-15.2 9-23.5C344.3 69.9 316.8 64 288 64m138.9 246c-7.2 26.4-21.7 49.7-41.2 67.8-1.2 14.7 2.2 28.1 8.6 39.8 4.3 8 10 15.4 16.8 22.1 44.3-32.6 75.2-82.3 82.9-139.4-9-2.2-18.1-3.1-27.1-2.7-13.8.6-27.5 4.4-40 12.4"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bitcoin-sign.svg������������������0000664�0000000�0000000�00000001372�14753064456�0030363�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48 32C48 14.3 62.3 0 80 0s32 14.3 32 32v32h32V32c0-17.7 14.3-32 32-32s32 14.3 32 32v32c0 1.5-.1 3.1-.3 4.5C254.1 82.2 288 125.1 288 176c0 24.2-7.7 46.6-20.7 64.9 31.7 19.8 52.7 55 52.7 95.1 0 61.9-50.1 112-112 112v32c0 17.7-14.3 32-32 32s-32-14.3-32-32v-32h-32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32v-32h-6.3C18.7 448 0 429.3 0 406.3V101.6C0 80.8 16.8 64 37.6 64H48zm16 192h112c26.5 0 48-21.5 48-48s-21.5-48-48-48H64zm112 64H64v96h144c26.5 0 48-21.5 48-48s-21.5-48-48-48z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/blender-phone.svg�����������������0000664�0000000�0000000�00000001676�14753064456�0030527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 352 196.8 52.3C194.2 24.2 216.3 0 244.6 0h289.5c21.1 0 36.4 20.1 30.9 40.4L558.5 64H400c-8.8 0-16 7.2-16 16s7.2 16 16 16h149.8l-17.5 64H400c-8.8 0-16 7.2-16 16s7.2 16 16 16h123.6l-17.5 64H400c-8.8 0-16 7.2-16 16s7.2 16 16 16h97.5L480 352zm-16 32h288c26.5 0 48 21.5 48 48v32c0 26.5-21.5 48-48 48H208c-26.5 0-48-21.5-48-48v-32c0-26.5 21.5-48 48-48m144 96a32 32 0 1 0 0-64 32 32 0 1 0 0 64M147.5 30.7c10.8 6.7 15.3 21 10.6 33.4l-22 57.8c-4.2 10.9-14.5 17.6-25.3 16.4l-33.3-3.6c-13.6 42.2-13.6 88.4 0 130.7l33.3-3.6c10.9-1.2 21.2 5.5 25.3 16.4l22 57.8c4.7 12.4.2 26.7-10.6 33.4l-44 27.2c-9.7 6-21.9 4.2-29.8-4.3C-24.6 286-24.6 114 73.7 7.8c7.9-8.5 20.1-10.3 29.8-4.3z"/></svg>������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/blender.svg�����������������������0000664�0000000�0000000�00000001324�14753064456�0027406�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64C0 28.7 28.7 0 64 0h406.1c21.1 0 36.4 20.1 30.9 40.4L494.5 64H336c-8.8 0-16 7.2-16 16s7.2 16 16 16h149.8l-17.5 64H336c-8.8 0-16 7.2-16 16s7.2 16 16 16h123.6l-17.5 64H336c-8.8 0-16 7.2-16 16s7.2 16 16 16h97.5L416 352H160l-8.7-96H64c-35.3 0-64-28.7-64-64zm145.5 128L133.8 64H64v128zM144 384h288c26.5 0 48 21.5 48 48v32c0 26.5-21.5 48-48 48H144c-26.5 0-48-21.5-48-48v-32c0-26.5 21.5-48 48-48m144 96a32 32 0 1 0 0-64 32 32 0 1 0 0 64"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/blog.svg��������������������������0000664�0000000�0000000�00000001315�14753064456�0026716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 32c0 17.7 14.3 32 32 32 123.7 0 224 100.3 224 224 0 17.7 14.3 32 32 32s32-14.3 32-32C512 128.9 383.1 0 224 0c-17.7 0-32 14.3-32 32m0 96c0 17.7 14.3 32 32 32 70.7 0 128 57.3 128 128 0 17.7 14.3 32 32 32s32-14.3 32-32c0-106-86-192-192-192-17.7 0-32 14.3-32 32m-96 16c0-26.5-21.5-48-48-48S0 117.5 0 144v224c0 79.5 64.5 144 144 144s144-64.5 144-144-64.5-144-144-144h-16v96h16c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bold.svg��������������������������0000664�0000000�0000000�00000001125�14753064456�0026712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32h192c70.7 0 128 57.3 128 128 0 31.3-11.3 60.1-30 82.3 37.1 22.4 62 63.1 62 109.7 0 70.7-57.3 128-128 128H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h16V96H32C14.3 96 0 81.7 0 64m224 160c35.3 0 64-28.7 64-64s-28.7-64-64-64H112v128zm-112 64v128h144c35.3 0 64-28.7 64-64s-28.7-64-64-64H112"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bolt-lightning.svg����������������0000664�0000000�0000000�00000001061�14753064456�0030712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 256 28.5 28c2-16 15.6-28 31.8-28h168.6c15 0 27.1 12.1 27.1 27.1 0 3.2-.6 6.5-1.7 9.5L208 160h139.3c20.2 0 36.7 16.4 36.7 36.7 0 7.4-2.2 14.6-6.4 20.7l-192.2 281c-5.9 8.6-15.6 13.7-25.9 13.7h-2.9c-15.7 0-28.5-12.8-28.5-28.5q0-3.45.9-6.9L176 288H32c-17.7 0-32-14.3-32-32"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bolt.svg��������������������������0000664�0000000�0000000�00000001010�14753064456�0026723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M349.4 44.6c5.9-13.7 1.5-29.7-10.6-38.5s-28.6-8-39.9 1.8l-256 224c-10 8.8-13.6 22.9-8.9 35.3S50.7 288 64 288h111.5L98.6 467.4c-5.9 13.7-1.5 29.7 10.6 38.5s28.6 8 39.9-1.8l256-224c10-8.8 13.6-22.9 8.9-35.3s-16.6-20.7-30-20.7H272.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bomb.svg��������������������������0000664�0000000�0000000�00000001557�14753064456�0026722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M459.1 52.4 442.6 6.5c-1.9-3.9-6.1-6.5-10.5-6.5s-8.5 2.6-10.4 6.5l-16.5 45.9-46 16.8c-4.3 1.6-7.3 5.9-7.2 10.4 0 4.5 3 8.7 7.2 10.2l45.7 16.8 16.8 45.8c1.5 4.4 5.8 7.5 10.4 7.5s8.9-3.1 10.4-7.5l16.5-45.8 45.7-16.8c4.2-1.5 7.2-5.7 7.2-10.2 0-4.6-3-8.9-7.2-10.4zm-132.4 53c-12.5-12.5-32.8-12.5-45.3 0l-2.9 2.9c-22-8-45.8-12.3-70.5-12.3C93.1 96 0 189.1 0 304s93.1 208 208 208 208-93.1 208-208c0-24.7-4.3-48.5-12.2-70.5l2.9-2.9c12.5-12.5 12.5-32.8 0-45.3l-80-80zM200 192c-57.4 0-104 46.6-104 104v8c0 8.8-7.2 16-16 16s-16-7.2-16-16v-8c0-75.1 60.9-136 136-136h8c8.8 0 16 7.2 16 16s-7.2 16-16 16z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bone.svg��������������������������0000664�0000000�0000000�00000001413�14753064456�0026715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M153.7 144.8c6.9 16.3 20.6 31.2 38.3 31.2h192c17.7 0 31.4-14.9 38.3-31.2C434.4 116.1 462.9 96 496 96c44.2 0 80 35.8 80 80 0 30.4-17 56.9-42 70.4-3.6 1.9-6 5.5-6 9.6s2.4 7.7 6 9.6c25 13.5 42 40 42 70.4 0 44.2-35.8 80-80 80-33.1 0-61.6-20.1-73.7-48.8-6.9-16.3-20.6-31.2-38.3-31.2H192c-17.7 0-31.4 14.9-38.3 31.2C141.6 395.9 113.1 416 80 416c-44.2 0-80-35.8-80-80 0-30.4 17-56.9 42-70.4 3.6-1.9 6-5.5 6-9.6s-2.4-7.7-6-9.6c-25-13.5-42-40-42-70.4 0-44.2 35.8-80 80-80 33.1 0 61.6 20.1 73.7 48.8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bong.svg��������������������������0000664�0000000�0000000�00000001572�14753064456�0026725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 208.5c0 29.1-15.6 53.9-37.2 67.8-17.2 11.1-31.5 26.1-41.7 43.7h221.8c-10.2-17.6-24.5-32.6-41.7-43.7-21.6-13.9-37.2-38.7-37.2-67.8V64h-64zM288 64v144.5c0 5.7 3.1 10.9 7.9 14 11.2 7.2 21.5 15.5 30.9 24.8l39.3-39.3-7-7c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l24 24 24 24c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-7-7-43.3 43.3C374 314.1 384 347.9 384 384c0 39.4-11.9 76.1-32.2 106.5-9.6 14.4-26.5 21.5-43.8 21.5H76.1c-17.3 0-34.2-7.1-43.8-21.5C11.9 460.1 0 423.4 0 384c0-67.8 35.1-127.3 88.1-161.5 4.8-3.1 7.9-8.3 7.9-14V64c-17.7 0-32-14.3-32-32S78.3 0 96 0h192c17.7 0 32 14.3 32 32s-14.3 32-32 32"/></svg>��������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/book-atlas.svg��������������������0000664�0000000�0000000�00000002153�14753064456�0030030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96C0 43 43 0 96 0h320c17.7 0 32 14.3 32 32v320c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-53 0-96-43-96-96zm64 320c0 17.7 14.3 32 32 32h256v-64H96c-17.7 0-32 14.3-32 32m183.4-132.2c-3.7 3.7-6.2 4.2-7.4 4.2s-3.7-.5-7.4-4.2c-3.8-3.7-8-10-11.8-18.9-6.2-14.5-10.8-34.3-12.2-56.9h63c-1.5 22.6-6 42.4-12.2 56.9-3.8 8.9-8 15.2-11.8 18.9zm42.7-9.9c7.3-18.3 12-41.1 13.4-65.9h31.1c-4.7 27.9-21.4 51.7-44.5 65.9m0-163.8c23.2 14.2 39.9 38 44.5 65.9h-31.1c-1.4-24.7-6.1-47.5-13.4-65.9M368 192a128 128 0 1 0-256 0 128 128 0 1 0 256 0m-222.7 16h31.1c1.4 24.7 6.1 47.5 13.4 65.9-23.2-14.2-39.9-38-44.5-65.9m31.1-32h-31.1c4.7-27.9 21.4-51.7 44.5-65.9-7.3 18.3-12 41.1-13.4 65.9m56.1-75.8c3.7-3.7 6.2-4.2 7.4-4.2s3.7.5 7.4 4.2c3.8 3.7 8 10 11.8 18.9 6.2 14.5 10.8 34.3 12.2 56.9h-63c1.5-22.6 6-42.4 12.2-56.9 3.8-8.9 8-15.2 11.8-18.9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/book-bible.svg��������������������0000664�0000000�0000000�00000001244�14753064456�0030001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 0C43 0 0 43 0 96v320c0 53 43 96 96 96h320c17.7 0 32-14.3 32-32s-14.3-32-32-32v-64c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32H96m0 384h256v64H96c-17.7 0-32-14.3-32-32s14.3-32 32-32M208 80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-48v112c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16V192h-48c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16h48z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/book-bookmark.svg�����������������0000664�0000000�0000000�00000001054�14753064456�0030530�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96C0 43 43 0 96 0h96v190.7c0 13.4 15.5 20.9 26 12.5l54-43.2 54 43.2c10.5 8.4 26 .9 26-12.5V0h64c17.7 0 32 14.3 32 32v320c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-53 0-96-43-96-96zm64 320c0 17.7 14.3 32 32 32h256v-64H96c-17.7 0-32 14.3-32 32"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/book-journal-whills.svg�����������0000664�0000000�0000000�00000003267�14753064456�0031705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96C0 43 43 0 96 0h320c17.7 0 32 14.3 32 32v320c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-53 0-96-43-96-96zm64 320c0 17.7 14.3 32 32 32h256v-64H96c-17.7 0-32 14.3-32 32m90.4-234.4-21.2-21.2c-3 10.1-5.1 20.6-5.1 31.6 0 .2 0 .5.1.8s.1.5.1.8l36.9 32.4c2.5 2.1 3.4 5.8 2.3 8.9-1.3 3-4.1 5.1-7.5 5.1-1.9-.1-3.8-.8-5.2-2l-23.6-20.6C142.8 267 186.9 304 240 304s97.3-37 108.9-86.6L325.3 238c-1.4 1.2-3.3 2-5.3 2-2.2-.1-4.4-1.1-6-2.8-1.2-1.5-1.9-3.4-2-5.2.1-2.2 1.1-4.4 2.8-6l37.1-32.5c0-.3 0-.5.1-.8s.1-.5.1-.8c0-11-2.1-21.5-5.1-31.6l-21.2 21.2c-3.1 3.1-8.1 3.1-11.3 0s-3.1-8.1 0-11.2l26.4-26.5c-8.2-17-20.5-31.7-35.9-42.6-2.7-1.9-6.2 1.4-5 4.5 8.5 22.4 3.6 48-13 65.6-3.2 3.4-3.6 8.9-.9 12.7 9.8 14 12.7 31.9 7.5 48.5-5.9 19.4-22 34.1-41.9 38.3l-1.4-34.3 12.6 8.6c.6.4 1.5.6 2.3.6 1.5 0 2.7-.8 3.5-2s.6-2.8-.1-4l-8.6-14.3 18-3.6c1.8-.4 3.1-2.1 3.1-4s-1.4-3.5-3.1-3.9l-18-3.7 8.5-14.3c.8-1.2.9-2.9.1-4.1s-2-2-3.5-2h-.1c-.7.1-1.5.3-2.1.7l-14.1 9.6L244 87.9c-.1-2.2-1.9-3.9-4-3.9s-3.9 1.6-4 3.9l-4.6 110.8-12-8.1c-1.5-1.1-3.6-.9-5 .4s-1.6 3.4-.8 5l8.6 14.3-18 3.7c-1.8.4-3.1 2-3.1 3.9s1.4 3.6 3.1 4l18 3.8-8.6 14.2c-.2.6-.5 1.4-.5 2 0 1.1.5 2.1 1.2 3 .8.6 1.8 1 2.8 1 .7 0 1.6-.2 2.2-.6l10.4-7.1-1.4 32.8c-19.9-4.1-36-18.9-41.9-38.3-5.1-16.6-2.2-34.4 7.6-48.5 2.7-3.9 2.3-9.3-.9-12.7-16.6-17.5-21.6-43.1-13.1-65.5 1.2-3.1-2.3-6.4-5-4.5-15.3 10.9-27.6 25.6-35.8 42.6l26.4 26.5c3.1 3.1 3.1 8.1 0 11.2s-8.1 3.1-11.2 0z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/book-medical.svg������������������0000664�0000000�0000000�00000001256�14753064456�0030325�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96C0 43 43 0 96 0h320c17.7 0 32 14.3 32 32v320c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-53 0-96-43-96-96zm64 320c0 17.7 14.3 32 32 32h256v-64H96c-17.7 0-32 14.3-32 32m144-304v48h-48c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48v-48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/book-open-reader.svg��������������0000664�0000000�0000000�00000001137�14753064456�0031126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 96a96 96 0 1 1 192 0 96 96 0 1 1-192 0m80 152v264l-48.4-24.2c-20.9-10.4-43.5-17-66.8-19.3l-96-9.6C12.5 457.2 0 443.5 0 427V224c0-17.7 14.3-32 32-32h30.3c63.6 0 125.6 19.6 177.7 56m32 264V248c52.1-36.4 114.1-56 177.7-56H480c17.7 0 32 14.3 32 32v203c0 16.4-12.5 30.2-28.8 31.8l-96 9.6c-23.2 2.3-45.9 8.9-66.8 19.3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/book-open.svg���������������������0000664�0000000�0000000�00000001343�14753064456�0027665�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M249.6 471.5c10.8 3.8 22.4-4.1 22.4-15.5V78.6c0-4.2-1.6-8.4-5-11C247.4 52 202.4 32 144 32 93.5 32 46.3 45.3 18.1 56.1 6.8 60.5 0 71.7 0 83.8v370.3c0 11.9 12.8 20.2 24.1 16.5C55.6 460.1 105.5 448 144 448c33.9 0 79 14 105.6 23.5m76.8 0C353 462 398.1 448 432 448c38.5 0 88.4 12.1 119.9 22.6 11.3 3.8 24.1-4.6 24.1-16.5V83.8c0-12.1-6.8-23.3-18.1-27.6C529.7 45.3 482.5 32 432 32c-58.4 0-103.4 20-123 35.6-3.3 2.6-5 6.8-5 11V456c0 11.4 11.7 19.3 22.4 15.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/book-quran.svg��������������������0000664�0000000�0000000�00000001721�14753064456�0030052�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M352 0c53 0 96 43 96 96v320c0 53-43 96-96 96H32c-17.7 0-32-14.3-32-32s14.3-32 32-32v-64c-17.7 0-32-14.3-32-32V32C0 14.3 14.3 0 32 0h320m0 384H96v64h256c17.7 0 32-14.3 32-32s-14.3-32-32-32m-77.9-233.8-8.9 21.4-23.1 1.9c-5.7.5-8 7.5-3.7 11.2l17.6 15.1-5.4 22.6c-1.3 5.5 4.7 9.9 9.6 6.9l19.8-12.1 19.8 12.1c4.9 3 10.9-1.4 9.6-6.9l-5.4-22.6 17.6-15.1c4.3-3.7 2-10.8-3.7-11.2l-23.1-1.9-8.9-21.4c-2.2-5.3-9.6-5.3-11.8 0M96 192c0 70.7 57.3 128 128 128 25.6 0 49.5-7.5 69.5-20.5 3.2-2.1 4.5-6.2 3.1-9.7s-5.2-5.6-9-4.8c-6.1 1.2-12.5 1.9-19 1.9-52.4 0-94.9-42.5-94.9-94.9s42.5-94.9 94.9-94.9c6.5 0 12.8.7 19 1.9 3.8.8 7.5-1.3 9-4.8s.2-7.6-3.1-9.7c-20-13-43.9-20.5-69.5-20.5-70.7 0-128 57.3-128 128"/></svg>�����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/book-skull.svg��������������������0000664�0000000�0000000�00000001674�14753064456�0030065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96C0 43 43 0 96 0h320c17.7 0 32 14.3 32 32v320c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-53 0-96-43-96-96zm64 320c0 17.7 14.3 32 32 32h256v-64H96c-17.7 0-32 14.3-32 32m256-304c0-35.3-35.8-64-80-64s-80 28.7-80 64c0 20.9 12.6 39.5 32 51.2V176c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-12.8c19.4-11.7 32-30.3 32-51.2M208 96a16 16 0 1 1 0 32 16 16 0 1 1 0-32m48 16a16 16 0 1 1 32 0 16 16 0 1 1-32 0m-121.7 97.3c-8.1-3.5-17.5.3-21 8.4s.3 17.5 8.4 21l77.7 33.3-77.7 33.3c-8.1 3.5-11.9 12.9-8.4 21s12.9 11.9 21 8.4L240 289.4l105.7 45.3c8.1 3.5 17.5-.3 21-8.4s-.3-17.5-8.4-21L280.6 272l77.7-33.3c8.1-3.5 11.9-12.9 8.4-21s-12.9-11.9-21-8.4L240 254.6z"/></svg>��������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/book-tanakh.svg�������������������0000664�0000000�0000000�00000001656�14753064456�0030201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M352 0c53 0 96 43 96 96v320c0 53-43 96-96 96H32c-17.7 0-32-14.3-32-32s14.3-32 32-32v-64c-17.7 0-32-14.3-32-32V32C0 14.3 14.3 0 32 0h320m0 384H96v64h256c17.7 0 32-14.3 32-32s-14.3-32-32-32M138.7 208l13.9 24h-27.7l13.9-24zm-13.9-24-27.7 48c-6.2 10.7 1.5 24 13.9 24h55.4l27.7 48c6.2 10.7 21.6 10.7 27.7 0l27.7-48h55.4c12.3 0 20-13.3 13.9-24l-27.7-48 27.7-48c6.2-10.7-1.5-24-13.9-24h-55.4l-27.6-48c-6.2-10.7-21.6-10.7-27.7 0l-27.7 48H111c-12.3 0-20 13.3-13.9 24zm27.7 0 27.7-48h55.4l27.7 48-27.7 48h-55.4zm0-48-13.9 24-13.9-24h27.7zm41.6-24L208 88l13.9 24h-27.7zm69.3 24h27.7l-13.9 24-13.9-24zm13.9 72 13.9 24h-27.7l13.9-24zm-55.4 48L208 280l-13.9-24h27.7z"/></svg>����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/book.svg��������������������������0000664�0000000�0000000�00000001202�14753064456�0026720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 0C43 0 0 43 0 96v320c0 53 43 96 96 96h320c17.7 0 32-14.3 32-32s-14.3-32-32-32v-64c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32H96m0 384h256v64H96c-17.7 0-32-14.3-32-32s14.3-32 32-32m32-240c0-8.8 7.2-16 16-16h192c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16m16 48h192c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16s7.2-16 16-16"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bookmark.svg����������������������0000664�0000000�0000000�00000000714�14753064456�0027602�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 48v439.7C0 501.1 10.9 512 24.3 512c5 0 9.9-1.5 14-4.4L192 400l153.7 107.6c4.1 2.9 9 4.4 14 4.4 13.4 0 24.3-10.9 24.3-24.3V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48"/></svg>����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/border-all.svg��������������������0000664�0000000�0000000�00000000723�14753064456�0030020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 96v128H256V96zm0 192v128H256V288zm-192-64H64V96h128zM64 288h128v128H64zm0-256C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64z"/></svg>���������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/border-none.svg�������������������0000664�0000000�0000000�00000002173�14753064456�0030210�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 480a32 32 0 1 1 0-64 32 32 0 1 1 0 64m96-64a32 32 0 1 1 0 64 32 32 0 1 1 0-64m0-384a32 32 0 1 1 0 64 32 32 0 1 1 0-64m0 256a32 32 0 1 1 0-64 32 32 0 1 1 0 64m192 128a32 32 0 1 1 0 64 32 32 0 1 1 0-64m0-320a32 32 0 1 1 0-64 32 32 0 1 1 0 64m0 128a32 32 0 1 1 0 64 32 32 0 1 1 0-64m-96 256a32 32 0 1 1 0-64 32 32 0 1 1 0 64m0-448a32 32 0 1 1 0 64 32 32 0 1 1 0-64m0 256a32 32 0 1 1 0-64 32 32 0 1 1 0 64m192 128a32 32 0 1 1 0 64 32 32 0 1 1 0-64m0-384a32 32 0 1 1 0 64 32 32 0 1 1 0-64M32 96a32 32 0 1 1 0-64 32 32 0 1 1 0 64m384 128a32 32 0 1 1 0 64 32 32 0 1 1 0-64M32 288a32 32 0 1 1 0-64 32 32 0 1 1 0 64m192 32a32 32 0 1 1 0 64 32 32 0 1 1 0-64m192 64a32 32 0 1 1 0-64 32 32 0 1 1 0 64M32 320a32 32 0 1 1 0 64 32 32 0 1 1 0-64m384-128a32 32 0 1 1 0-64 32 32 0 1 1 0 64M32 128a32 32 0 1 1 0 64 32 32 0 1 1 0-64m192 64a32 32 0 1 1 0-64 32 32 0 1 1 0 64"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/border-top-left.svg���������������0000664�0000000�0000000�00000001274�14753064456�0031004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 448c0 17.7 14.3 32 32 32s32-14.3 32-32V112c0-8.8 7.2-16 16-16h336c17.7 0 32-14.3 32-32s-14.3-32-32-32H80C35.8 32 0 67.8 0 112zm160 0a32 32 0 1 0-64 0 32 32 0 1 0 64 0m192 0a32 32 0 1 0-64 0 32 32 0 1 0 64 0m-96 0a32 32 0 1 0-64 0 32 32 0 1 0 64 0m192 0a32 32 0 1 0-64 0 32 32 0 1 0 64 0m-32-160a32 32 0 1 0 0-64 32 32 0 1 0 0 64m0 32a32 32 0 1 0 0 64 32 32 0 1 0 0-64m0-128a32 32 0 1 0 0-64 32 32 0 1 0 0 64"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bore-hole.svg���������������������0000664�0000000�0000000�00000001161�14753064456�0027646�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 0c-17.7 0-32 14.3-32 32v264.6c-19.1 11.1-32 31.7-32 55.4 0 35.3 28.7 64 64 64s64-28.7 64-64c0-23.7-12.9-44.4-32-55.4V32c0-17.7-14.3-32-32-32M48 128c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48h-80c-17.7 0-32 14.3-32 32v192c0 53-43 96-96 96s-96-43-96-96V160c0-17.7-14.3-32-32-32z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bottle-droplet.svg����������������0000664�0000000�0000000�00000001267�14753064456�0030741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 0C82.7 0 72 10.7 72 24s10.7 24 24 24c4.4 0 8 3.6 8 8v64.9c0 12.2-7.2 23.1-17.2 30.1C53.7 174.1 32 212.5 32 256v192c0 35.3 28.7 64 64 64h128c35.3 0 64-28.7 64-64V256c0-43.5-21.7-81.9-54.8-105-10-7-17.2-17.9-17.2-30.1V56c0-4.4 3.6-8 8-8 13.3 0 24-10.7 24-24S237.3 0 224 0H96m64 382c-26.5 0-48-20.1-48-45 0-16.8 22.1-48.1 36.3-66.4 6-7.8 17.5-7.8 23.5 0 14.1 18.3 36.2 49.6 36.2 66.4 0 24.9-21.5 45-48 45"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bottle-water.svg������������������0000664�0000000�0000000�00000001743�14753064456�0030411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M120 0h80c13.3 0 24 10.7 24 24v40H96V24c0-13.3 10.7-24 24-24M32 167.5c0-19.5 10-37.6 26.6-47.9l15.8-9.9c14.3-9 30.8-13.7 47.7-13.7h75.8c16.9 0 33.4 4.7 47.7 13.7l15.8 9.9C278 129.9 288 148 288 167.5c0 17-7.5 32.3-19.4 42.6 12 11.6 19.4 27.9 19.4 45.9 0 19.1-8.4 36.3-21.7 48 13.3 11.7 21.7 28.9 21.7 48s-8.4 36.3-21.7 48c13.3 11.7 21.7 28.9 21.7 48 0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64 0-19.1 8.4-36.3 21.7-48C40.4 388.3 32 371.1 32 352s8.4-36.3 21.7-48C40.4 292.3 32 275.1 32 256c0-18 7.4-34.3 19.4-45.9C39.5 199.7 32 184.5 32 167.5M96 240c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16h-96c-8.8 0-16 7.2-16 16m16 112c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16z"/></svg>�����������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bowl-food.svg���������������������0000664�0000000�0000000�00000001333�14753064456�0027663�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 192c0-35.3 28.7-64 64-64h1.6C73 91.5 105.3 64 144 64c15 0 29 4.1 40.9 11.2C198.2 49.6 225.1 32 256 32s57.8 17.6 71.1 43.2C339 68.1 353 64 368 64c38.7 0 71 27.5 78.4 64h1.6c35.3 0 64 28.7 64 64 0 11.7-3.1 22.6-8.6 32H8.6C3.1 214.6 0 203.7 0 192m0 91.4C0 268.3 12.3 256 27.4 256h457.1c15.1 0 27.4 12.3 27.4 27.4 0 70.5-44.4 130.7-106.7 154.1l-1.7 14.5c-2 16-15.6 28-31.8 28H140.2c-16.1 0-29.8-12-31.8-28l-1.8-14.4C44.4 414.1 0 353.9 0 283.4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bowl-rice.svg���������������������0000664�0000000�0000000�00000002671�14753064456�0027664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M176 56c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24h-16c-13.3 0-24-10.7-24-24m24 48h16c13.3 0 24 10.7 24 24s-10.7 24-24 24h-16c-13.3 0-24-10.7-24-24s10.7-24 24-24M56 176h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H56c-13.3 0-24-10.7-24-24s10.7-24 24-24M0 283.4C0 268.3 12.3 256 27.4 256h457.1c15.1 0 27.4 12.3 27.4 27.4 0 70.5-44.4 130.7-106.7 154.1l-1.7 14.5c-2 16-15.6 28-31.8 28H140.2c-16.1 0-29.8-12-31.8-28l-1.8-14.4C44.4 414.1 0 353.9 0 283.4M224 200c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24h-16c-13.3 0-24-10.7-24-24m-96 0c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24h-16c-13.3 0-24-10.7-24-24m-24-96h16c13.3 0 24 10.7 24 24s-10.7 24-24 24h-16c-13.3 0-24-10.7-24-24s10.7-24 24-24m216 96c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24h-16c-13.3 0-24-10.7-24-24m-24-96h16c13.3 0 24 10.7 24 24s-10.7 24-24 24h-16c-13.3 0-24-10.7-24-24s10.7-24 24-24m120 96c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24h-16c-13.3 0-24-10.7-24-24m-24-96h16c13.3 0 24 10.7 24 24s-10.7 24-24 24h-16c-13.3 0-24-10.7-24-24s10.7-24 24-24m-96-72h16c13.3 0 24 10.7 24 24s-10.7 24-24 24h-16c-13.3 0-24-10.7-24-24s10.7-24 24-24"/></svg>�����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bowling-ball.svg������������������0000664�0000000�0000000�00000000716�14753064456�0030350�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512M240 80a32 32 0 1 1 0 64 32 32 0 1 1 0-64m-32 128a32 32 0 1 1 64 0 32 32 0 1 1-64 0m-64-64a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>��������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/box-archive.svg�������������������0000664�0000000�0000000�00000001036�14753064456�0030202�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 32h448c17.7 0 32 14.3 32 32v32c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32m0 128h448v256c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64zm128 80c0 8.8 7.2 16 16 16h160c8.8 0 16-7.2 16-16s-7.2-16-16-16H176c-8.8 0-16 7.2-16 16"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/box-open.svg����������������������0000664�0000000�0000000�00000001343�14753064456�0027523�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M58.9 42.1c3-6.1 9.6-9.6 16.3-8.7L320 64l244.8-30.6c6.7-.8 13.3 2.7 16.3 8.7l41.7 83.4c9 17.9-.6 39.6-19.8 45.1l-163.4 46.7c-13.9 4-28.8-1.9-36.2-14.3L320 64l-83.4 139c-7.4 12.4-22.3 18.3-36.2 14.3L37.1 170.6c-19.3-5.5-28.8-27.2-19.8-45.1zM321.1 128l54.9 91.4c14.9 24.8 44.6 36.6 72.5 28.6L576 211.6v167c0 22-15 41.2-36.4 46.6l-204.1 51c-10.2 2.6-20.9 2.6-31 0l-204.1-51C79 419.7 64 400.5 64 378.5v-167L191.6 248c27.8 8 57.6-3.8 72.5-28.6l54.8-91.4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/box-tissue.svg��������������������0000664�0000000�0000000�00000001242�14753064456�0030074�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M92.5 0H208c40 0 52 24 64 48s24 48 64 48h85.2c14.8 0 26.8 12 26.8 26.8 0 3.4-.7 6.8-1.9 10L409.6 224 384 288H128l-16-64L64.9 35.4q-.9-3.45-.9-6.9C64 12.8 76.8 0 92.5 0M79 224l16 64H80c-8.8 0-16 7.2-16 16s7.2 16 16 16h352c8.8 0 16-7.2 16-16s-7.2-16-16-16h-13.5l25.6-64H464c26.5 0 48 21.5 48 48v112H0V272c0-26.5 21.5-48 48-48zM0 416h512v48c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/box.svg���������������������������0000664�0000000�0000000�00000000714�14753064456�0026565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M50.7 58.5 0 160h208V32H93.7c-18.2 0-34.8 10.3-43 26.5M240 160h208L397.3 58.5c-8.2-16.2-24.8-26.5-43-26.5H240zm208 32H0v224c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64z"/></svg>����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/boxes-packing.svg�����������������0000664�0000000�0000000�00000001575�14753064456�0030535�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 48c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48v416c0 26.5-21.5 48-48 48H381.3c1.8-5 2.7-10.4 2.7-16V253.3c18.6-6.6 32-24.4 32-45.3v-32c0-26.5-21.5-48-48-48H256zm315.3 299.3c6.2-6.2 6.2-16.4 0-22.6l-64-64c-6.2-6.2-16.4-6.2-22.6 0l-64 64c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l36.7-36.7V432c0 8.8 7.2 16 16 16s16-7.2 16-16V310.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0M0 176c0-8.8 7.2-16 16-16h352c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H16c-8.8 0-16-7.2-16-16zm352 80v224c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V256zm-208 64c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/boxes-stacked.svg�����������������0000664�0000000�0000000�00000001475�14753064456�0030536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M248 0h-40c-26.5 0-48 21.5-48 48v112c0 35.3 28.7 64 64 64h128c35.3 0 64-28.7 64-64V48c0-26.5-21.5-48-48-48h-40v80c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16zM64 256c-35.3 0-64 28.7-64 64v128c0 35.3 28.7 64 64 64h160c35.3 0 64-28.7 64-64V320c0-35.3-28.7-64-64-64h-40v80c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16v-80zm288 256h160c35.3 0 64-28.7 64-64V320c0-35.3-28.7-64-64-64h-40v80c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16v-80h-40c-15 0-28.8 5.1-39.7 13.8 4.9 10.4 7.7 22 7.7 34.2v160c0 12.2-2.8 23.8-7.7 34.2C323.2 506.9 337 512 352 512"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/braille.svg�����������������������0000664�0000000�0000000�00000002140�14753064456�0027402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96a64 64 0 1 1 128 0A64 64 0 1 1 0 96m224 176a16 16 0 1 0 0-32 16 16 0 1 0 0 32m0-80a64 64 0 1 1 0 128 64 64 0 1 1 0-128M80 416a16 16 0 1 0-32 0 16 16 0 1 0 32 0m-80 0a64 64 0 1 1 128 0 64 64 0 1 1-128 0m240 0a16 16 0 1 0-32 0 16 16 0 1 0 32 0m-80 0a64 64 0 1 1 128 0 64 64 0 1 1-128 0M64 192a64 64 0 1 1 0 128 64 64 0 1 1 0-128M224 32a64 64 0 1 1 0 128 64 64 0 1 1 0-128m128 64a64 64 0 1 1 128 0 64 64 0 1 1-128 0m240 0a16 16 0 1 0-32 0 16 16 0 1 0 32 0m-80 0a64 64 0 1 1 128 0 64 64 0 1 1-128 0m64 176a16 16 0 1 0 0-32 16 16 0 1 0 0 32m0-80a64 64 0 1 1 0 128 64 64 0 1 1 0-128m16 224a16 16 0 1 0-32 0 16 16 0 1 0 32 0m-80 0a64 64 0 1 1 128 0 64 64 0 1 1-128 0m-96-144a16 16 0 1 0 0-32 16 16 0 1 0 0 32m0-80a64 64 0 1 1 0 128 64 64 0 1 1 0-128m16 224a16 16 0 1 0-32 0 16 16 0 1 0 32 0m-80 0a64 64 0 1 1 128 0 64 64 0 1 1-128 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/brain.svg�������������������������0000664�0000000�0000000�00000001671�14753064456�0027073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M184 0c30.9 0 56 25.1 56 56v400c0 30.9-25.1 56-56 56-28.9 0-52.7-21.9-55.7-50.1-5.2 1.4-10.7 2.1-16.3 2.1-35.3 0-64-28.7-64-64 0-7.4 1.3-14.6 3.6-21.2C21.4 367.4 0 338.2 0 304c0-31.9 18.7-59.5 45.8-72.3C37.1 220.8 32 207 32 192c0-30.7 21.6-56.3 50.4-62.6C80.8 123.9 80 118 80 112c0-29.9 20.6-55.1 48.3-62.1 3-28 26.8-49.9 55.7-49.9m144 0c28.9 0 52.6 21.9 55.7 49.9C411.5 56.9 432 82 432 112c0 6-.8 11.9-2.4 17.4 28.8 6.2 50.4 31.9 50.4 62.6 0 15-5.1 28.8-13.8 39.7 27.1 12.8 45.8 40.4 45.8 72.3 0 34.2-21.4 63.4-51.6 74.8 2.3 6.6 3.6 13.8 3.6 21.2 0 35.3-28.7 64-64 64-5.6 0-11.1-.7-16.3-2.1-3 28.2-26.8 50.1-55.7 50.1-30.9 0-56-25.1-56-56V56c0-30.9 25.1-56 56-56"/></svg>�����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/brazilian-real-sign.svg�����������0000664�0000000�0000000�00000002142�14753064456�0031624�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M400 0c17.7 0 32 14.3 32 32v18.2c12.5 2.3 24.7 6.4 36.2 12.1l10.1 5.1c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3l-10.2-5.1c-9.9-5-20.9-7.5-32-7.5h-1.7c-29.8 0-53.9 24.1-53.9 53.9 0 22 13.4 41.8 33.9 50l52 20.8c44.7 17.9 74.1 61.2 74.1 109.4v3.4c0 51.2-33.6 94.6-80 109.2V480c0 17.7-14.3 32-32 32s-32-14.3-32-32v-19.4c-15-3.5-29.4-9.7-42.3-18.3l-23.4-15.6c-14.7-9.8-18.7-29.7-8.9-44.4s29.7-18.7 44.4-8.9l23.5 15.6c10.8 7.2 23.4 11 36.3 11 27.9 0 50.5-22.6 50.5-50.5v-3.4c0-22-13.4-41.8-33.9-50l-52-20.8c-44.8-17.9-74.1-61.2-74.1-109.4 0-51.9 33.5-95.9 80-111.7V32c0-17.7 14.3-32 32-32M0 64c0-17.7 14.3-32 32-32h80c79.5 0 144 64.5 144 144 0 58.8-35.2 109.3-85.7 131.7l51.4 128.4c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8l-56-139.9H64v128c0 17.7-14.3 32-32 32S0 465.7 0 448V64m64 192h48c44.2 0 80-35.8 80-80s-35.8-80-80-80H64z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bread-slice.svg�������������������0000664�0000000�0000000�00000000660�14753064456�0030147�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 32C192 32 0 64 0 192c0 35.3 28.7 64 64 64v176c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V256c35.3 0 64-28.7 64-64C512 64 320 32 256 32"/></svg>��������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bridge-circle-check.svg�����������0000664�0000000�0000000�00000001465�14753064456�0031547�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32c-17.7 0-32 14.3-32 32s14.3 32 32 32h40v64H32v128c53 0 96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32v-64c0-53 43-96 96-96 6.3 0 12.4.6 18.3 1.7C367.1 231.8 426.9 192 496 192c42.5 0 81.6 15.1 112 40.2V160h-72V96h40c17.7 0 32-14.3 32-32s-14.3-32-32-32zm424 64v64h-80V96zm-128 0v64h-80V96zm-128 0v64h-80V96zm408 272a144 144 0 1 0-288 0 144 144 0 1 0 288 0m-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l28.7 28.7 60.7-60.7c6.2-6.2 16.4-6.2 22.6 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bridge-circle-exclamation.svg�����0000664�0000000�0000000�00000001421�14753064456�0032766�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32c-17.7 0-32 14.3-32 32s14.3 32 32 32h40v64H32v128c53 0 96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32v-64c0-53 43-96 96-96 6.3 0 12.4.6 18.3 1.7C367.1 231.8 426.9 192 496 192c42.5 0 81.6 15.1 112 40.2V160h-72V96h40c17.7 0 32-14.3 32-32s-14.3-32-32-32zm424 64v64h-80V96zm-128 0v64h-80V96zm-128 0v64h-80V96zm264 416a144 144 0 1 0 0-288 144 144 0 1 0 0 288m0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48m0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16v-80c0-8.8 7.2-16 16-16"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bridge-circle-xmark.svg�����������0000664�0000000�0000000�00000001626�14753064456�0031613�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32c-17.7 0-32 14.3-32 32s14.3 32 32 32h40v64H32v128c53 0 96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32v-64c0-53 43-96 96-96 6.3 0 12.4.6 18.3 1.7C367.1 231.8 426.9 192 496 192c42.5 0 81.6 15.1 112 40.2V160h-72V96h40c17.7 0 32-14.3 32-32s-14.3-32-32-32zm424 64v64h-80V96zm-128 0v64h-80V96zm-128 0v64h-80V96zm264 416a144 144 0 1 0 0-288 144 144 0 1 0 0 288m59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l36.7-36.7-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l36.7 36.7 36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bridge-lock.svg�������������������0000664�0000000�0000000�00000001501�14753064456�0030152�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 64c0-17.7 14.3-32 32-32h512c17.7 0 32 14.3 32 32s-14.3 32-32 32h-40v64h-8c-61.9 0-112 50.1-112 112v24.6c-9.9 5.8-18.2 14.1-23.8 24.1-17.6-20-43.4-32.7-72.2-32.7-53 0-96 43-96 96v64c0 17.7-14.3 32-32 32h-32c-17.7 0-32-14.3-32-32v-64c0-53-43-96-96-96V160h72V96H64c-17.7 0-32-14.3-32-32m376 32v64h80V96zm-48 64V96h-80v64zM152 96v64h80V96zm376 144c-17.7 0-32 14.3-32 32v48h64v-48c0-17.7-14.3-32-32-32m-80 32c0-44.2 35.8-80 80-80s80 35.8 80 80v48c17.7 0 32 14.3 32 32v128c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bridge-water.svg������������������0000664�0000000�0000000�00000002222�14753064456�0030345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96c0-17.7 14.3-32 32-32h512c17.7 0 32 14.3 32 32v35.6c0 15.7-12.7 28.4-28.4 28.4-37.3 0-67.6 30.2-67.6 67.6v124.9c-12.9 0-25.8 3.9-36.8 11.7-18 12.4-40.1 20.3-59.2 20.3V256c0-53-43-96-96-96s-96 43-96 96v128.5c-19 0-41.2-7.9-59.1-20.3-11.1-7.8-24-11.7-36.9-11.7V227.6c0-37.4-30.2-67.6-67.6-67.6C12.7 160 0 147.3 0 131.6zm306.5 293.9c22.5 15.5 50 26.1 77.5 26.1 26.9 0 55.4-10.8 77.4-26.1 11.9-8.5 28.1-7.8 39.2 1.7 14.4 11.9 32.5 21 50.6 25.2 17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25-29 15.6-61.5 25.9-94.5 25.9-31.9 0-60.6-9.9-80.4-18.9-5.8-2.7-11.1-5.3-15.6-7.7-4.5 2.4-9.7 5.1-15.6 7.7-19.8 9-48.5 18.9-80.4 18.9-33 0-65.5-10.3-94.5-25.8-13.4 8.4-33.7 19.3-58.2 25-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2 11.1-9.4 27.3-10.1 39.2-1.7 22.1 15.2 50.5 26 77.4 26 27.5 0 55-10.6 77.5-26.1 11.1-7.9 25.9-7.9 37 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bridge.svg������������������������0000664�0000000�0000000�00000001146�14753064456�0027231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 32C14.3 32 0 46.3 0 64s14.3 32 32 32h40v64H0v128c53 0 96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32v-64c0-53 43-96 96-96s96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32v-64c0-53 43-96 96-96V160h-72V96h40c17.7 0 32-14.3 32-32s-14.3-32-32-32zm424 64v64h-80V96zm-128 0v64h-80V96zm-128 0v64h-80V96z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/briefcase-medical.svg�������������0000664�0000000�0000000�00000001302�14753064456�0031306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M184 48h144c4.4 0 8 3.6 8 8v40H176V56c0-4.4 3.6-8 8-8m-56 8v40H64c-35.3 0-64 28.7-64 64v256c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64h-64V56c0-30.9-25.1-56-56-56H184c-30.9 0-56 25.1-56 56m96 152c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-48h-48c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16h48z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/briefcase.svg���������������������0000664�0000000�0000000�00000001106�14753064456�0027714�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M184 48h144c4.4 0 8 3.6 8 8v40H176V56c0-4.4 3.6-8 8-8m-56 8v40H64c-35.3 0-64 28.7-64 64v96h512v-96c0-35.3-28.7-64-64-64h-64V56c0-30.9-25.1-56-56-56H184c-30.9 0-56 25.1-56 56m384 232H320v32c0 17.7-14.3 32-32 32h-64c-17.7 0-32-14.3-32-32v-32H0v128c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/broom-ball.svg��������������������0000664�0000000�0000000�00000001467�14753064456�0030031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M566.6 9.4c12.5 12.5 12.5 32.8 0 45.3l-192 192 34.7 34.7c4.2 4.2 6.6 10 6.6 16 0 12.5-10.1 22.6-22.6 22.6h-29.1L256 211.7v-29.1c0-12.5 10.1-22.6 22.6-22.6 6 0 11.8 2.4 16 6.6l34.7 34.7 192-192c12.5-12.5 32.8-12.5 45.3 0zm-344 225.5 118.5 118.5c3.7 42.7-11.7 85.2-42.3 115.8-27.4 27.4-64.6 42.8-103.3 42.8H22.1C9.9 512 0 502.1 0 489.9c0-6.3 2.7-12.3 7.3-16.5l126.4-113.7c4.2-3.7-.4-10.4-5.4-7.9l-51.1 25.6c-6.1 3-13.2-1.4-13.2-8.2 0-31.5 12.5-61.7 34.8-84l8-8c30.6-30.6 73.1-45.9 115.8-42.3M464 352a80 80 0 1 1 0 160 80 80 0 1 1 0-160"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/broom.svg�������������������������0000664�0000000�0000000�00000001405�14753064456�0027111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M566.6 54.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-192 192-34.7-34.7c-4.2-4.2-10-6.6-16-6.6-12.5 0-22.6 10.1-22.6 22.6v29.1L364.3 320h29.1c12.5 0 22.6-10.1 22.6-22.6 0-6-2.4-11.8-6.6-16l-34.7-34.7 192-192zM341.1 353.4 222.6 234.9c-42.7-3.7-85.2 11.7-115.8 42.3l-8 8c-22.3 22.3-34.8 52.5-34.8 84 0 6.8 7.1 11.2 13.2 8.2l51.1-25.5c5-2.5 9.5 4.1 5.4 7.9L7.3 473.4C2.7 477.6 0 483.6 0 489.9 0 502.1 9.9 512 22.1 512h173.3c38.8 0 75.9-15.4 103.4-42.8 30.6-30.6 45.9-73.1 42.3-115.8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/brush.svg�������������������������0000664�0000000�0000000�00000001224�14753064456�0027115�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M162.4 6c-1.5-3.6-5-6-8.9-6h-19c-3.9 0-7.5 2.4-8.9 6l-20.7 51.7c-3.2 8-14.6 8-17.8 0L66.4 6c-1.5-3.6-5-6-8.9-6H48C21.5 0 0 21.5 0 48v208h384V48c0-26.5-21.5-48-48-48H230.5c-3.9 0-7.5 2.4-8.9 6l-20.7 51.7c-3.2 8-14.6 8-17.8 0zM0 288v32c0 35.3 28.7 64 64 64h64v64c0 35.3 28.7 64 64 64s64-28.7 64-64v-64h64c35.3 0 64-28.7 64-64v-32zm192 144a16 16 0 1 1 0 32 16 16 0 1 1 0-32"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bucket.svg������������������������0000664�0000000�0000000�00000001115�14753064456�0027246�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 152v8H48v-8C48 68.1 116.1 0 200 0h48c83.9 0 152 68.1 152 152v8h-48v-8c0-57.4-46.6-104-104-104h-48C142.6 48 96 94.6 96 152M0 224c0-17.7 14.3-32 32-32h384c17.7 0 32 14.3 32 32s-14.3 32-32 32h-5.1l-22.4 213c-2.6 24.4-23.2 43-47.7 43H107.2c-24.6 0-45.2-18.5-47.7-43L37.1 256H32c-17.7 0-32-14.3-32-32"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bug-slash.svg���������������������0000664�0000000�0000000�00000002031�14753064456�0027654�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2s-6.3 25.5 4.1 33.7l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L477.4 348.9c1.7-9.4 2.6-19 2.6-28.9h64c17.7 0 32-14.3 32-32s-14.3-32-32-32h-64.3c-1.1-14.1-5-27.5-11.1-39.5.7-.6 1.4-1.2 2.1-1.9l64-64c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-64 64c-.7.7-1.3 1.4-1.9 2.1-14.3-7.3-30.4-11.4-47.5-11.4H264c-8.3 0-16.3 1-24 2.8zM320 0c-53 0-96 43-96 96v3.6c0 15.7 12.7 28.4 28.4 28.4h135.1c15.7 0 28.4-12.7 28.4-28.4V96c0-53-43-96-96-96zM160.3 256H96c-17.7 0-32 14.3-32 32s14.3 32 32 32h64c0 24.6 5.5 47.8 15.4 68.6q-3.3 1.95-6 4.8l-64 64c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l63.1-63.1c24.5 21.8 55.8 36.2 90.3 39.6V335.5L166.7 227.3c-3.4 9-5.6 18.7-6.4 28.7M336 479.2c36.6-3.6 69.7-19.6 94.8-43.8L336 360.7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bug.svg���������������������������0000664�0000000�0000000�00000002165�14753064456�0026554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 0c53 0 96 43 96 96v3.6c0 15.7-12.7 28.4-28.4 28.4H188.5c-15.7 0-28.4-12.7-28.4-28.4V96c0-53 43-96 96-96zM41.4 105.4c12.5-12.5 32.8-12.5 45.3 0l64 64c.7.7 1.3 1.4 1.9 2.1 14.2-7.3 30.4-11.4 47.5-11.4h112c17.1 0 33.2 4.1 47.5 11.4.6-.7 1.2-1.4 1.9-2.1l64-64c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-64 64c-.7.7-1.4 1.3-2.1 1.9 6.2 12 10.1 25.3 11.1 39.5h64.3c17.7 0 32 14.3 32 32s-14.3 32-32 32h-64c0 24.6-5.5 47.8-15.4 68.6q3.3 1.95 6 4.8l64 64c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-63.1-63.1c-24.5 21.8-55.8 36.2-90.3 39.6V240c0-8.8-7.2-16-16-16s-16 7.2-16 16v239.2c-34.5-3.4-65.8-17.8-90.3-39.6l-63.1 63c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l64-64c1.9-1.9 3.9-3.4 6-4.8C101.5 367.8 96 344.6 96 320H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h64.3c1.1-14.1 5-27.5 11.1-39.5-.7-.6-1.4-1.2-2.1-1.9l-64-64c-12.5-12.5-12.5-32.8 0-45.3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bugs.svg��������������������������0000664�0000000�0000000�00000003141�14753064456�0026732�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m164.5 107.4 33.4-73.5c5.5-12.1.1-26.3-11.9-31.8S159.7 2 154.2 14L128 71.7l-26.1-57.6C96.4 2 82.1-3.3 70.1 2.1s-17.4 19.8-12 31.8l33.4 73.5c-10.2 7.1-18.2 17-22.9 28.6h-17l-4.1-20.7c-2.6-13-15.2-21.4-28.2-18.8S-2.1 111.7.5 124.7l8 40C10.7 175.9 20.6 184 32 184h32v23.3l-37.8 9.5c-9.5 2.4-16.6 10.2-17.9 19.9l-8 56c-1.9 13.1 7.2 25.3 20.4 27.2s25.3-7.2 27.2-20.4l5.7-40 18.4-4.6c10.7 19.7 31.8 33.1 56 33.1s45.3-13.4 56.1-33.2l18.4 4.6 5.7 40c1.9 13.1 14 22.2 27.2 20.4s22.2-14 20.4-27.2l-8-56c-1.4-9.7-8.5-17.5-17.9-19.9l-37.9-9.4V184h32c11.4 0 21.3-8.1 23.5-19.3l8-40c2.6-13-5.8-25.6-18.8-28.2s-25.6 5.8-28.2 18.8l-4.2 20.7h-17c-4.7-11.6-12.7-21.5-22.9-28.6zM496 286.5l65.6-47c10.8-7.7 13.3-22.7 5.6-33.5s-22.7-13.3-33.5-5.6l-51.4 36.8 6.1-62.9c1.3-13.2-8.4-24.9-21.6-26.2s-24.9 8.4-26.2 21.6l-7.8 80.3c-12.3 1-24.2 5.6-34.1 13.3l-14.7-8.5 6.8-20c4.2-12.6-2.5-26.2-15-30.4s-26.2 2.5-30.4 15L332.3 258c-3.7 10.8.8 22.8 10.7 28.5l27.7 16-11.7 20.2-37.5-10.7c-9.4-2.7-19.5.6-25.5 8.3l-34.9 44.5c-8.2 10.4-6.4 25.5 4.1 33.7s25.5 6.4 33.7-4.1l25-31.8 18.2 5.2c-.5 22.6 11 44.7 32 56.8s45.9 11 65.2-.7l13.6 13.2-15.1 37.5c-4.9 12.3 1 26.3 13.3 31.2s26.3-1 31.2-13.3l21.2-52.5c3.6-9.1 1.4-19.4-5.6-26.2l-28-27.1 11.6-20.1 27.7 16c9.9 5.7 22.5 3.7 30-4.9l27-30.7c8.7-10 7.8-25.1-2.2-33.9s-25.1-7.8-33.9 2.2l-13.9 15.9-14.7-8.5c1.7-12.4-.2-25-5.5-36.2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/building-circle-arrow-right.svg���0000664�0000000�0000000�00000002460�14753064456�0033274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 48C0 21.5 21.5 0 48 0h288c26.5 0 48 21.5 48 48v184.2c-39.1 32.3-64 81.1-64 135.8 0 49.5 20.4 94.2 53.3 126.2-8.8 10.9-22.2 17.8-37.3 17.8h-96v-80c0-26.5-21.5-48-48-48s-48 21.5-48 48v80H48c-26.5 0-48-21.5-48-48zm80 176c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16m112-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM64 112v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16m112-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16m96 256a144 144 0 1 1 288 0 144 144 0 1 1-288 0m140.7-67.3c-6.2 6.2-6.2 16.4 0 22.6l28.7 28.7H432c-8.8 0-16 7.2-16 16s7.2 16 16 16h89.4l-28.7 28.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l56-56c6.2-6.2 6.2-16.4 0-22.6l-56-56c-6.2-6.2-16.4-6.2-22.6 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/building-circle-check.svg���������0000664�0000000�0000000�00000002373�14753064456�0032107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48 0C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h96v-80c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c15.1 0 28.5-6.9 37.3-17.8-32.9-32-53.3-76.7-53.3-126.2 0-54.7 24.9-103.5 64-135.8V48c0-26.5-21.5-48-48-48zm16 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m368 272a144 144 0 1 0-288 0 144 144 0 1 0 288 0m-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l28.7 28.7 60.7-60.7c6.2-6.2 16.4-6.2 22.6 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/building-circle-exclamation.svg���0000664�0000000�0000000�00000002327�14753064456�0033335�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48 0C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h96v-80c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c15.1 0 28.5-6.9 37.3-17.8-32.9-32-53.3-76.7-53.3-126.2 0-54.7 24.9-103.5 64-135.8V48c0-26.5-21.5-48-48-48zm16 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m224 416a144 144 0 1 0 0-288 144 144 0 1 0 0 288m0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48m0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16v-80c0-8.8 7.2-16 16-16"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/building-circle-xmark.svg���������0000664�0000000�0000000�00000002534�14753064456�0032153�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48 0C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h96v-80c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c15.1 0 28.5-6.9 37.3-17.8-32.9-32-53.3-76.7-53.3-126.2 0-54.7 24.9-103.5 64-135.8V48c0-26.5-21.5-48-48-48zm16 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m224 416a144 144 0 1 0 0-288 144 144 0 1 0 0 288m59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l36.7-36.7-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l36.7 36.7 36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/building-columns.svg��������������0000664�0000000�0000000�00000001341�14753064456�0031245�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m243.4 2.6-224 96c-14 6-21.8 21-18.7 35.8S16.8 160 32 160v8c0 13.3 10.7 24 24 24h400c13.3 0 24-10.7 24-24v-8c15.2 0 28.3-10.7 31.3-25.6s-4.8-29.9-18.7-35.8l-224-96c-8-3.4-17.2-3.4-25.2 0M128 224H64v196.3c-.6.3-1.2.7-1.8 1.1l-48 32c-11.7 7.8-17 22.4-12.9 35.9S17.9 512 32 512h448c14.1 0 26.5-9.2 30.6-22.7s-1.1-28.1-12.9-35.9l-48-32c-.6-.4-1.2-.7-1.8-1.1L448 224h-64v192h-40V224h-64v192h-48V224h-64v192h-40zM256 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/building-flag.svg�����������������0000664�0000000�0000000�00000002134�14753064456�0030477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48 0C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h96v-80c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm16 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16M448 0c-17.7 0-32 14.3-32 32v480h64V192h144c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H480c0-17.7-14.3-32-32-32"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/building-lock.svg�����������������0000664�0000000�0000000�00000002377�14753064456�0030527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48 0C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h96v-80c0-26.5 21.5-48 48-48s48 21.5 48 48v80h88.6c-5.4-9.4-8.6-20.3-8.6-32V352c0-23.7 12.9-44.4 32-55.4V272c0-30.5 12.2-58.2 32-78.4V48c0-26.5-21.5-48-48-48zm16 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m192 144c17.7 0 32 14.3 32 32v48h-64v-48c0-17.7 14.3-32 32-32m-80 32v48c-17.7 0-32 14.3-32 32v128c0 17.7 14.3 32 32 32h160c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32v-48c0-44.2-35.8-80-80-80s-80 35.8-80 80"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/building-ngo.svg������������������0000664�0000000�0000000�00000002321�14753064456�0030347�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48 0C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h96v-80c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm16 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zM168 64h48c8.8 0 16 7.2 16 16s-7.2 16-16 16h-32v64h16v-16c0-8.8 7.2-16 16-16s16 7.2 16 16v24c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V80c0-8.8 7.2-16 16-16m136 32c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16s16-7.2 16-16v-32c0-8.8-7.2-16-16-16m-48 16c0-26.5 21.5-48 48-48s48 21.5 48 48v32c0 26.5-21.5 48-48 48s-48-21.5-48-48zM61.3 71.1l34.7 52V80c0-8.8 7.2-16 16-16s16 7.2 16 16v96c0 7.1-4.6 13.3-11.4 15.3s-14-.6-17.9-6.4L64 132.8V176c0 8.8-7.2 16-16 16s-16-7.2-16-16V80c0-7.1 4.6-13.3 11.4-15.3s14 .6 17.9 6.4"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/building-shield.svg���������������0000664�0000000�0000000�00000002330�14753064456�0031034�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 48C0 21.5 21.5 0 48 0h288c26.5 0 48 21.5 48 48v159l-42.4 17H272c-8.8 0-16 7.2-16 16v64c0 .9.1 1.7.2 2.6 2.3 58.1 24.1 144.8 98.7 201.5-5.8 2.5-12.2 3.9-18.9 3.9h-96v-80c0-26.5-21.5-48-48-48s-48 21.5-48 48v80H48c-26.5 0-48-21.5-48-48zm80 176c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16M64 112v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16m112-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16m167.1 113.7c5.7-2.3 12.1-2.3 17.8 0l120 48c9.1 3.7 15.1 12.5 15.1 22.3 0 63.3-25.9 168.8-134.8 214.2-5.9 2.5-12.6 2.5-18.5 0C313.9 464.8 288 359.3 288 296c0-9.8 6-18.6 15.1-22.3zM527.4 312 432 273.8v187.8c68.2-33 91.5-99 95.4-149.7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/building-un.svg�������������������0000664�0000000�0000000�00000002044�14753064456�0030210�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48 0C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h96v-80c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm16 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zM237.3 71.1l34.7 52V80c0-8.8 7.2-16 16-16s16 7.2 16 16v96c0 7.1-4.6 13.3-11.4 15.3s-14-.6-17.9-6.4l-34.7-52v43.2c0 8.8-7.2 16-16 16s-16-7.2-16-16v-96c0-7.1 4.6-13.3 11.4-15.3s14 .6 17.9 6.4zM112 80v64c0 8.8 7.2 16 16 16s16-7.2 16-16V80c0-8.8 7.2-16 16-16s16 7.2 16 16v64c0 26.5-21.5 48-48 48s-48-21.5-48-48V80c0-8.8 7.2-16 16-16s16 7.2 16 16"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/building-user.svg�����������������0000664�0000000�0000000�00000002301�14753064456�0030540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48 0C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h96v-80c0-26.5 21.5-48 48-48s48 21.5 48 48v80h89.9c-6.3-10.2-9.9-22.2-9.9-35.1 0-46.9 25.8-87.8 64-109.2V48c0-26.5-21.5-48-48-48zm16 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m304 176a80 80 0 1 0-160 0 80 80 0 1 0 160 0M352 477.1c0 19.3 15.6 34.9 34.9 34.9h218.2c19.3 0 34.9-15.6 34.9-34.9 0-51.4-41.7-93.1-93.1-93.1H445.1c-51.4 0-93.1 41.7-93.1 93.1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/building-wheat.svg����������������0000664�0000000�0000000�00000003160�14753064456�0030676�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 48C0 21.5 21.5 0 48 0h288c26.5 0 48 21.5 48 48v416c0 26.5-21.5 48-48 48h-96v-80c0-26.5-21.5-48-48-48s-48 21.5-48 48v80H48c-26.5 0-48-21.5-48-48zm80 176c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16m112-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM64 112v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16m112-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16m384 80v16c0 44.2-35.8 80-80 80h-16v-16c0-44.2 35.8-80 80-80zm0 128c0 44.2-35.8 80-80 80h-16v-16c0-44.2 35.8-80 80-80h16zm0 112c0 44.2-35.8 80-80 80h-16v-16c0-44.2 35.8-80 80-80h16zm-128 64v16h-16c-44.2 0-80-35.8-80-80v-16h16c44.2 0 80 35.8 80 80m0-96h-16c-44.2 0-80-35.8-80-80v-16h16c44.2 0 80 35.8 80 80zm0-128v16h-16c-44.2 0-80-35.8-80-80v-16h16c44.2 0 80 35.8 80 80m16-240c13.3 0 24 10.7 24 24v104c0 13.3-10.7 24-24 24s-24-10.7-24-24V56c0-13.3 10.7-24 24-24m96 64v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V96c0-13.3 10.7-24 24-24s24 10.7 24 24M456 72c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V96c0-13.3 10.7-24 24-24"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/building.svg����������������������0000664�0000000�0000000�00000001757�14753064456�0027602�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48 0C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h96v-80c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm16 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16"/></svg>�����������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bullhorn.svg����������������������0000664�0000000�0000000�00000001270�14753064456�0027620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M480 32c0-12.9-7.8-24.6-19.8-29.6S434.5.2 425.3 9.3L381.7 53c-48 48-113.1 75-181 75H64c-35.3 0-64 28.7-64 64v96c0 35.3 28.7 64 64 64v128c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V352h8.7c67.9 0 133 27 181 75l43.6 43.6c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V300.3c18.6-8.8 32-32.5 32-60.4s-13.4-51.6-32-60.4zm-64 76.7v262.6C357.2 317.8 280.5 288 200.7 288H192v-96h8.7c79.8 0 156.5-29.8 215.3-83.3"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bullseye.svg����������������������0000664�0000000�0000000�00000001003�14753064456�0027611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 256a192 192 0 1 0-384 0 192 192 0 1 0 384 0M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m256 80a80 80 0 1 0 0-160 80 80 0 1 0 0 160m0-224a144 144 0 1 1 0 288 144 144 0 1 1 0-288m-32 144a32 32 0 1 1 64 0 32 32 0 1 1-64 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/burger.svg������������������������0000664�0000000�0000000�00000001356�14753064456�0027266�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M61.1 224C45 224 32 211 32 194.9c0-1.9.2-3.7.6-5.6C37.9 168.3 78.8 32 256 32s218.1 136.3 223.4 157.3c.5 1.9.6 3.7.6 5.6 0 16.1-13 29.1-29.1 29.1zm82.9-96a16 16 0 1 0-32 0 16 16 0 1 0 32 0m240 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32M272 96a16 16 0 1 0-32 0 16 16 0 1 0 32 0M16 304c0-26.5 21.5-48 48-48h384c26.5 0 48 21.5 48 48s-21.5 48-48 48H64c-26.5 0-48-21.5-48-48m16 96c0-8.8 7.2-16 16-16h416c8.8 0 16 7.2 16 16v16c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/burst.svg�������������������������0000664�0000000�0000000�00000001457�14753064456�0027141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M37.6 4.2C28-2.3 15.2-1.1 7 7s-9.4 21-2.8 30.5l112 163.3-99.6 32.4C6.7 236.4 0 245.6 0 256s6.7 19.6 16.6 22.8l103.1 33.4-52.9 100.6c-4.9 9.3-3.2 20.7 4.3 28.1s18.8 9.2 28.1 4.3l100.6-52.9 33.4 103.1c3.2 9.9 12.4 16.6 22.8 16.6s19.6-6.7 22.8-16.6l33.4-103.1 100.6 52.9c9.3 4.9 20.7 3.2 28.1-4.3s9.2-18.8 4.3-28.1l-52.9-100.6 103.1-33.4c9.9-3.2 16.6-12.4 16.6-22.8s-6.7-19.6-16.6-22.8l-106.5-34.5 25.7-70.4c3.2-8.8 1-18.6-5.6-25.2s-16.4-8.8-25.2-5.6l-70.4 25.7-34.6-106.6C275.6 6.7 266.4 0 256 0s-19.6 6.7-22.8 16.6l-32.3 99.6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bus-simple.svg��������������������0000664�0000000�0000000�00000001261�14753064456�0030053�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 0c124.8 0 224 35.2 224 80v336c0 17.7-14.3 32-32 32v32c0 17.7-14.3 32-32 32h-32c-17.7 0-32-14.3-32-32v-32H128v32c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32v-32c-17.7 0-32-14.3-32-32V80C0 35.2 99.2 0 224 0M64 128v128c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H96c-17.7 0-32 14.3-32 32m16 272a32 32 0 1 0 0-64 32 32 0 1 0 0 64m288 0a32 32 0 1 0 0-64 32 32 0 1 0 0 64"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/bus.svg���������������������������0000664�0000000�0000000�00000001604�14753064456�0026565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 0c134.4 0 224 35.2 224 80v48c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32v160c0 17.7-14.3 32-32 32v32c0 17.7-14.3 32-32 32h-32c-17.7 0-32-14.3-32-32v-32H192v32c0 17.7-14.3 32-32 32h-32c-17.7 0-32-14.3-32-32v-32c-17.7 0-32-14.3-32-32V256c-17.7 0-32-14.3-32-32v-64c0-17.7 14.3-32 32-32V80c0-44.8 89.6-80 224-80M128 160v96c0 17.7 14.3 32 32 32h112V128H160c-17.7 0-32 14.3-32 32m176 128h112c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32H304zM144 400a32 32 0 1 0 0-64 32 32 0 1 0 0 64m288 0a32 32 0 1 0 0-64 32 32 0 1 0 0 64M384 80c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16s7.2 16 16 16h160c8.8 0 16-7.2 16-16"/></svg>����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/business-time.svg�����������������0000664�0000000�0000000�00000001427�14753064456�0030566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M184 48h144c4.4 0 8 3.6 8 8v40H176V56c0-4.4 3.6-8 8-8m-56 8v40H64c-35.3 0-64 28.7-64 64v96h360.2c32.3-39.1 81.1-64 135.8-64 5.4 0 10.7.2 16 .7V160c0-35.3-28.7-64-64-64h-64V56c0-30.9-25.1-56-56-56H184c-30.9 0-56 25.1-56 56m192 296h-96c-17.7 0-32-14.3-32-32v-32H0v128c0 35.3 28.7 64 64 64h296.2c-25.1-30.4-40.2-69.5-40.2-112 0-5.4.2-10.7.7-16zm320 16a144 144 0 1 0-288 0 144 144 0 1 0 288 0m-144-80c8.8 0 16 7.2 16 16v48h32c8.8 0 16 7.2 16 16s-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16v-64c0-8.8 7.2-16 16-16"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/c.svg�����������������������������0000664�0000000�0000000�00000001022�14753064456�0026210�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M329.1 142.9c-62.5-62.5-155.8-62.5-218.3 0s-62.5 163.8 0 226.3 155.8 62.5 218.3 0c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3c-87.5 87.5-221.3 87.5-308.8 0s-87.5-229.3 0-316.8 221.3-87.5 308.8 0c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cable-car.svg���������������������0000664�0000000�0000000�00000001605�14753064456�0027606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 0a32 32 0 1 1 0 64 32 32 0 1 1 0-64M160 56a32 32 0 1 1 64 0 32 32 0 1 1-64 0M32 288c0-35.3 28.7-64 64-64h136v-66.5l-203.1 42c-13 2.7-25.7-5.7-28.4-18.6s5.7-25.7 18.6-28.4l232-48 232-48c13-2.7 25.7 5.7 28.4 18.6s-5.7 25.7-18.6 28.4l-212.9 44V224h136c35.3 0 64 28.7 64 64v160c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64zm64 0c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16zm112 16v64c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16h-64c-8.8 0-16 7.2-16 16m144-16c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16z"/></svg>���������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cake-candles.svg������������������0000664�0000000�0000000�00000003702�14753064456�0030307�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M86.4 5.5 61.8 47.6C58 54.1 56 61.6 56 69.2V72c0 22.1 17.9 40 40 40s40-17.9 40-40v-2.8c0-7.6-2-15-5.8-21.6L105.6 5.5C103.6 2.1 100 0 96 0s-7.6 2.1-9.6 5.5m128 0-24.6 42.1c-3.8 6.5-5.8 14-5.8 21.6V72c0 22.1 17.9 40 40 40s40-17.9 40-40v-2.8c0-7.6-2-15-5.8-21.6L233.6 5.5C231.6 2.1 228 0 224 0s-7.6 2.1-9.6 5.5m103.4 42.1c-3.8 6.5-5.8 14-5.8 21.6V72c0 22.1 17.9 40 40 40s40-17.9 40-40v-2.8c0-7.6-2-15-5.8-21.6L361.6 5.5C359.6 2.1 356 0 352 0s-7.6 2.1-9.6 5.5zM128 176c0-17.7-14.3-32-32-32s-32 14.3-32 32v48c-35.3 0-64 28.7-64 64v71c8.3 5.2 18.1 9 28.8 9 13.5 0 27.2-6.1 38.4-13.4 5.4-3.5 9.9-7.1 13-9.7 1.5-1.3 2.7-2.4 3.5-3.1.4-.4.7-.6.8-.8l.1-.1c3.1-3.2 7.4-4.9 11.9-4.8s8.6 2.1 11.6 5.4l.1.1.7.7c.7.7 1.7 1.7 3.1 3 2.8 2.6 6.8 6.1 11.8 9.5 10.2 7.1 23 13.1 36.3 13.1s26.1-6 36.3-13.1c5-3.5 9-6.9 11.8-9.5 1.4-1.3 2.4-2.3 3.1-3l.7-.7.1-.1c3-3.5 7.4-5.4 12-5.4s9 2 12 5.4l.1.1.7.7c.7.7 1.7 1.7 3.1 3 2.8 2.6 6.8 6.1 11.8 9.5 10.2 7.1 23 13.1 36.3 13.1s26.1-6 36.3-13.1c5-3.5 9-6.9 11.8-9.5 1.4-1.3 2.4-2.3 3.1-3l.7-.7.1-.1c2.9-3.4 7.1-5.3 11.6-5.4s8.7 1.6 11.9 4.8l.1.1.8.8c.8.7 1.9 1.8 3.5 3.1 3.1 2.6 7.5 6.2 13 9.7 11.2 7.3 24.9 13.4 38.4 13.4 10.7 0 20.5-3.9 28.8-9v-71c0-35.3-28.7-64-64-64v-48c0-17.7-14.3-32-32-32s-32 14.3-32 32v48h-64v-48c0-17.7-14.3-32-32-32s-32 14.3-32 32v48h-64v-48zm320 218.6c-8.5 3.3-18.2 5.4-28.8 5.4-22.5 0-42.4-9.9-55.8-18.6-4.1-2.7-7.8-5.4-10.9-7.8-2.8 2.4-6.1 5-9.8 7.5C329.8 390 310.6 400 288 400s-41.8-10-54.6-18.9c-3.5-2.4-6.7-4.9-9.4-7.2-2.7 2.3-5.9 4.7-9.4 7.2-12.8 8.9-32 18.9-54.6 18.9s-41.8-10-54.6-18.9c-3.7-2.6-7-5.2-9.8-7.5-3.1 2.4-6.8 5.1-10.9 7.8-13.5 8.7-33.4 18.6-55.9 18.6-10.6 0-20.3-2.2-28.8-5.4V480c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32z"/></svg>��������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/calculator.svg��������������������0000664�0000000�0000000�00000001547�14753064456�0030133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm32 64h192c17.7 0 32 14.3 32 32v32c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V96c0-17.7 14.3-32 32-32m32 160a32 32 0 1 1-64 0 32 32 0 1 1 64 0M96 352a32 32 0 1 1 0-64 32 32 0 1 1 0 64m-32 64c0-17.7 14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-17.7 0-32-14.3-32-32m128-160a32 32 0 1 1 0-64 32 32 0 1 1 0 64m32 64a32 32 0 1 1-64 0 32 32 0 1 1 64 0m64-64a32 32 0 1 1 0-64 32 32 0 1 1 0 64m32 64a32 32 0 1 1-64 0 32 32 0 1 1 64 0m-32 128a32 32 0 1 1 0-64 32 32 0 1 1 0 64"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/calendar-check.svg����������������0000664�0000000�0000000�00000001202�14753064456�0030612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 0c17.7 0 32 14.3 32 32v32h128V32c0-17.7 14.3-32 32-32s32 14.3 32 32v32h48c26.5 0 48 21.5 48 48v48H0v-48c0-26.5 21.5-48 48-48h48V32c0-17.7 14.3-32 32-32M0 192h448v272c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48zm329 113c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-95 95-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/calendar-day.svg������������������0000664�0000000�0000000�00000001131�14753064456�0030313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 0c17.7 0 32 14.3 32 32v32h128V32c0-17.7 14.3-32 32-32s32 14.3 32 32v32h48c26.5 0 48 21.5 48 48v48H0v-48c0-26.5 21.5-48 48-48h48V32c0-17.7 14.3-32 32-32M0 192h448v272c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48zm80 64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/calendar-days.svg�����������������0000664�0000000�0000000�00000002075�14753064456�0030506�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 0c17.7 0 32 14.3 32 32v32h128V32c0-17.7 14.3-32 32-32s32 14.3 32 32v32h48c26.5 0 48 21.5 48 48v48H0v-48c0-26.5 21.5-48 48-48h48V32c0-17.7 14.3-32 32-32M0 192h448v272c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48zm64 80v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16m128 0v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16m144-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM64 400v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16m144-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm112 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/calendar-minus.svg����������������0000664�0000000�0000000�00000001120�14753064456�0030667�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 0c17.7 0 32 14.3 32 32v32h128V32c0-17.7 14.3-32 32-32s32 14.3 32 32v32h48c26.5 0 48 21.5 48 48v48H0v-48c0-26.5 21.5-48 48-48h48V32c0-17.7 14.3-32 32-32M0 192h448v272c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48zm312 184c13.3 0 24-10.7 24-24s-10.7-24-24-24H136c-13.3 0-24 10.7-24 24s10.7 24 24 24z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/calendar-plus.svg�����������������0000664�0000000�0000000�00000001262�14753064456�0030526�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 32v32H48C21.5 64 0 85.5 0 112v48h448v-48c0-26.5-21.5-48-48-48h-48V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v32H160V32c0-17.7-14.3-32-32-32S96 14.3 96 32m352 160H0v272c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48zm-224 56c13.3 0 24 10.7 24 24v56h56c13.3 0 24 10.7 24 24s-10.7 24-24 24h-56v56c0 13.3-10.7 24-24 24s-24-10.7-24-24v-56h-56c-13.3 0-24-10.7-24-24s10.7-24 24-24h56v-56c0-13.3 10.7-24 24-24"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/calendar-week.svg�����������������0000664�0000000�0000000�00000001132�14753064456�0030472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 0c17.7 0 32 14.3 32 32v32h128V32c0-17.7 14.3-32 32-32s32 14.3 32 32v32h48c26.5 0 48 21.5 48 48v48H0v-48c0-26.5 21.5-48 48-48h48V32c0-17.7 14.3-32 32-32M0 192h448v272c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48zm80 64c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h288c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/calendar-xmark.svg����������������0000664�0000000�0000000�00000001324�14753064456�0030664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 0c17.7 0 32 14.3 32 32v32h128V32c0-17.7 14.3-32 32-32s32 14.3 32 32v32h48c26.5 0 48 21.5 48 48v48H0v-48c0-26.5 21.5-48 48-48h48V32c0-17.7 14.3-32 32-32M0 192h448v272c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48zm305 113c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-47 47-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l47 47-47 47c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l47-47 47 47c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-47-47z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/calendar.svg����������������������0000664�0000000�0000000�00000000770�14753064456�0027550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 32v32H48C21.5 64 0 85.5 0 112v48h448v-48c0-26.5-21.5-48-48-48h-48V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v32H160V32c0-17.7-14.3-32-32-32S96 14.3 96 32m352 160H0v272c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48z"/></svg>��������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/camera-retro.svg������������������0000664�0000000�0000000�00000001177�14753064456�0030362�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M220.6 121.2 271.1 96H448v96H333.2c-21.9-15.1-48.5-24-77.2-24s-55.2 8.9-77.2 24H64v-64h128c9.9 0 19.7-2.3 28.6-6.8M0 128v288c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H271.1c-9.9 0-19.7 2.3-28.6 6.8L192 64h-32V48c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16v16C28.7 64 0 92.7 0 128m168 176a88 88 0 1 1 176 0 88 88 0 1 1-176 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/camera-rotate.svg�����������������0000664�0000000�0000000�00000002106�14753064456�0030516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M213.1 64.8 202.7 96H128c-35.3 0-64 28.7-64 64v256c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64h-74.7l-10.4-31.2C420.4 45.2 402.1 32 381.4 32H258.6c-20.7 0-39 13.2-45.5 32.8M448 256c0 8.8-7.2 16-16 16h-76.7c-6.2 0-11.3-5.1-11.3-11.3 0-3 1.2-5.9 3.3-8L371 229c-13.6-13.4-31.9-21-51-21-19.2 0-37.7 7.6-51.3 21.3L249 249c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l19.7-19.7C257.4 172.7 288 160 320 160c31.8 0 62.4 12.6 85 35l23.7-23.7c2.1-2.1 5-3.3 8-3.3 6.2 0 11.3 5.1 11.3 11.3zm-256 64c0-8.8 7.2-16 16-16h76.7c6.2 0 11.3 5.1 11.3 11.3 0 3-1.2 5.9-3.3 8L269 347c13.6 13.4 31.9 21 51 21 19.2 0 37.7-7.6 51.3-21.3L391 327c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-19.7 19.7C382.6 403.3 352 416 320 416c-31.8 0-62.4-12.6-85-35l-23.7 23.7c-2.1 2.1-5 3.3-8 3.3-6.2 0-11.3-5.1-11.3-11.3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/camera.svg������������������������0000664�0000000�0000000�00000001024�14753064456�0027220�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M149.1 64.8 138.7 96H64c-35.3 0-64 28.7-64 64v256c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64h-74.7l-10.4-31.2C356.4 45.2 338.1 32 317.4 32H194.6c-20.7 0-39 13.2-45.5 32.8M256 192a96 96 0 1 1 0 192 96 96 0 1 1 0-192"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/campground.svg��������������������0000664�0000000�0000000�00000001047�14753064456�0030134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M377 52c11-13.8 8.8-33.9-5-45s-33.9-8.8-45 5l-39 48.8L249 12c-11-13.8-31.2-16-45-5s-16 31.2-5 45l48 60L12.3 405.4c-8 10-12.3 22.3-12.3 35V464c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48v-23.6c0-12.7-4.3-25.1-12.3-35L329 112zm-89 396H168.5L288 291.7 407.5 448z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/candy-cane.svg��������������������0000664�0000000�0000000�00000001725�14753064456�0030002�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M348.8 131.5c3.7-2.3 7.9-3.5 12.2-3.5 12.7 0 23 10.3 23 23v5.6c0 9.9-5.1 19.1-13.5 24.3L30.1 393.7C.1 412.5-9 451.9 9.7 481.9s58.2 39.1 88.2 20.4l340.5-212.8c45.8-28.6 73.6-78.8 73.6-132.8v-5.6C512 67.6 444.4 0 361 0c-28.3 0-56 8-80.1 23l-26.8 16.7c-30 18.7-39.1 58.2-20.4 88.2s58.2 39.1 88.2 20.4l26.8-16.8zm-50.4-81.7c9.2-5.7 19.1-10.1 29.4-13.1L348 97.5c-5.7 1.4-11.2 3.7-16.3 6.8l-12.6 7.9zm88.5 52.7 46.2-46.2c8.5 6.5 16.1 14.1 22.6 22.6l-46.2 46.2c-5.1-9.6-13-17.5-22.6-22.6m28.9 59.3 61.6 20.5c-2.2 10.5-5.8 20.7-10.5 30.2l-62-20.7c6.2-8.8 10.1-19.1 11-30.1zm-86.1 82.5 60.4 37.7-30.2 18.9-60.4-37.7zm-107.2 67 60.4 37.7-30.2 18.9-60.4-37.7zm-103.2 64.4 60.4 37.7-30.2 18.9-60.4-37.7z"/></svg>�������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cannabis.svg����������������������0000664�0000000�0000000�00000002244�14753064456�0027553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 0c5.3 0 10.3 2.7 13.3 7.1 15.8 23.5 36.7 63.7 49.2 109 7.2 26.4 11.8 55.2 10.4 84 11.5-8.8 23.7-16.7 35.8-23.6 41-23.3 84.4-36.9 112.2-42.5 5.2-1 10.7.6 14.4 4.4s5.4 9.2 4.4 14.5c-5.6 27.7-19.3 70.9-42.7 111.7-9.1 15.9-19.9 31.7-32.4 46.3 27.8 6.6 52.4 17.3 67.2 25.5 5.1 2.8 8.2 8.2 8.2 14s-3.2 11.2-8.2 14c-15.2 8.4-40.9 19.5-69.8 26.1-20.2 4.6-42.9 7.2-65.2 4.6l8.3 33.1c1.5 6.1-.6 12.4-5.5 16.4s-11.6 4.6-17.2 1.9L280 417.2V488c0 13.3-10.7 24-24 24s-24-10.7-24-24v-70.8l-58.5 29.1c-5.6 2.8-12.3 2.1-17.2-1.9s-7-10.3-5.5-16.4l8.3-33.1c-22.2 2.6-45 0-65.2-4.6-28.9-6.6-54.6-17.6-69.8-26.1-5.1-2.8-8.2-8.2-8.2-14s3.2-11.2 8.2-14c14.8-8.2 39.4-18.8 67.2-25.5-12.4-14.4-23.2-30.2-32.3-46.1-23.4-40.8-37.1-84-42.7-111.7-1.1-5.2.6-10.7 4.4-14.5s9.2-5.4 14.4-4.4c27.9 5.5 71.2 19.2 112.2 42.5 12.1 6.9 24.3 14.7 35.8 23.6-1.4-28.7 3.1-57.6 10.4-84 12.5-45.3 33.4-85.5 49.2-109 3-4.4 8-7.1 13.3-7.1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/capsules.svg����������������������0000664�0000000�0000000�00000001333�14753064456�0027612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 144c0-26.5 21.5-48 48-48s48 21.5 48 48v112H64zm-64 0v224c0 61.9 50.1 112 112 112s112-50.1 112-112V189.6c1.8 19.1 8.2 38 19.8 54.8l128.5 187.3c35.5 51.7 105.3 64.3 156 28.1s63-107.5 27.5-159.2L427.3 113.3c-35.5-51.8-105.4-64.3-156-28.1-28 20-44.3 50.8-47.3 83V144c0-61.9-50.1-112-112-112S0 82.1 0 144m296.6 64.2c-16-23.3-10-55.3 11.9-71 21.2-15.1 50.5-10.3 66 12.2l67 97.6-79.9 56zM491 407.7c-.8.6-1.6 1.1-2.4 1.6l4-2.8c-.5.4-1 .8-1.6 1.2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/car-battery.svg�������������������0000664�0000000�0000000�00000001341�14753064456�0030207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M80 96c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32h96c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32h16c35.3 0 64 28.7 64 64v224c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64zm304 96c0-8.8-7.2-16-16-16s-16 7.2-16 16v32h-32c-8.8 0-16 7.2-16 16s7.2 16 16 16h32v32c0 8.8 7.2 16 16 16s16-7.2 16-16v-32h32c8.8 0 16-7.2 16-16s-7.2-16-16-16h-32zM80 240c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H96c-8.8 0-16 7.2-16 16"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/car-burst.svg���������������������0000664�0000000�0000000�00000002360�14753064456�0027676�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M176 8c-6.6 0-12.4 4-14.9 10.1l-29.4 74-76.1-23.2c-6.3-1.9-13.1.2-17.2 5.3S33.8 86.4 37 92.1l39.5 69.1-65.6 45.2c-5.4 3.7-8 10.3-6.5 16.7s6.7 11.2 13.1 12.2l78.7 12.2-5.6 79.5c-.5 6.5 3.1 12.7 9 15.5s12.9 1.8 17.8-2.6l35.3-32.5 9.5-35.4 10.4-38.6c8-29.9 30.5-52.1 57.9-60.9l41-59.2C282.8 97 297.9 84.4 315 76.1c-.4-.6-.8-1.2-1.3-1.8-4.1-5.1-10.9-7.2-17.2-5.3l-76.2 23.1-29.4-74C188.4 12 182.6 8 176 8m191.7 153.5 135.6 36.3c6.5 1.8 11.3 7.4 11.8 14.2l4.6 56.5-201.5-54 32.2-46.6c3.8-5.6 10.8-8.1 17.3-6.4m-69.9-30-47.9 69.3c-21.6 3-40.3 18.6-46.3 41l-10.4 38.6-16.6 61.8-8.3 30.9c-4.6 17.1 5.6 34.6 22.6 39.2l15.5 4.1c17.1 4.6 34.6-5.6 39.2-22.6l8.3-30.9 247.3 66.3-8.3 30.9c-4.6 17.1 5.6 34.6 22.6 39.2l15.5 4.1c17.1 4.6 34.6-5.6 39.2-22.6l8.3-30.9L595 388l10.4-38.6c6-22.4-2.5-45.2-19.6-58.7l-6.8-84c-2.7-33.7-26.4-62-59-70.8L384.2 99.7c-32.7-8.8-67.3 4-86.5 31.8zm-17 131a24 24 0 1 1-12.4 46.4 24 24 0 1 1 12.4-46.4m217.9 83.2a24 24 0 1 1 46.3 12.4 24 24 0 1 1-46.4-12.4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/car-on.svg������������������������0000664�0000000�0000000�00000001771�14753064456�0027160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M280 24c0-13.3-10.7-24-24-24s-24 10.7-24 24v80c0 13.3 10.7 24 24 24s24-10.7 24-24zm-94.2 200h140.3c6.8 0 12.8 4.3 15.1 10.6l19.1 53.4H151.7l19.1-53.4c2.3-6.4 8.3-10.6 15.1-10.6zm-75.3-10.9-28.3 79.3C62.1 300.9 48 320.8 48 344v136c0 17.7 14.3 32 32 32h16c17.7 0 32-14.3 32-32v-32h256v32c0 17.7 14.3 32 32 32h16c17.7 0 32-14.3 32-32V344c0-23.2-14.1-43.1-34.2-51.6l-28.3-79.3C390.1 181.3 360 160 326.2 160H185.9c-33.8 0-64 21.3-75.3 53.1zM128 344a24 24 0 1 1 0 48 24 24 0 1 1 0-48m232 24a24 24 0 1 1 48 0 24 24 0 1 1-48 0M39 39c-9.4 9.4-9.4 24.6 0 33.9l48 48c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L73 39c-9.4-9.4-24.6-9.4-33.9 0zm400 0-48 48c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l48-48c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0"/></svg>�������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/car-rear.svg����������������������0000664�0000000�0000000�00000001721�14753064456�0027470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M165.4 96h181.2c13.6 0 25.7 8.6 30.2 21.4l26.1 74.6H109.1l26.1-74.6c4.5-12.8 16.6-21.4 30.2-21.4m-90.6.3L39.6 196.8C16.4 206.4 0 229.3 0 256v80c0 23.7 12.9 44.4 32 55.4V448c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32v-48h256v48c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32v-56.6c19.1-11.1 32-31.7 32-55.4v-80c0-26.7-16.4-49.6-39.6-59.2L437.2 96.3C423.7 57.8 387.4 32 346.6 32H165.4c-40.8 0-77.1 25.8-90.6 64.3M208 272h96c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-96c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m-160 8c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H72c-13.3 0-24-10.7-24-24m360-24h32c13.3 0 24 10.7 24 24s-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24s10.7-24 24-24"/></svg>�����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/car-side.svg����������������������0000664�0000000�0000000�00000001411�14753064456�0027457�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M171.3 96H224v96H111.3l30.4-75.9C146.5 104 158.2 96 171.3 96M272 192V96h81.2c9.7 0 18.9 4.4 25 12l67.2 84zm256.2 1-100-125c-18.2-22.8-45.8-36-75-36H171.3C132 32 96.7 55.9 82.2 92.3L40.6 196.4C16.8 205.8 0 228.9 0 256v112c0 17.7 14.3 32 32 32h33.3c7.6 45.4 47.1 80 94.7 80s87.1-34.6 94.7-80h130.7c7.6 45.4 47.1 80 94.7 80s87.1-34.6 94.7-80h33.3c17.7 0 32-14.3 32-32v-48c0-65.2-48.8-119-111.8-127zm-93.5 175a48 48 0 1 1 90.5 32 48 48 0 1 1-90.5-32M160 336a48 48 0 1 1 0 96 48 48 0 1 1 0-96"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/car-tunnel.svg��������������������0000664�0000000�0000000�00000001511�14753064456�0030041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 0C114.6 0 0 114.6 0 256v192c0 35.3 28.7 64 64 64h42.8c-6.6-5.9-10.8-14.4-10.8-24V376c0-20.8 11.3-38.9 28.1-48.6l21-64.7c7.5-23.1 29-38.7 53.3-38.7h115.2c24.3 0 45.8 15.6 53.3 38.7l21 64.7c16.8 9.7 28.2 27.8 28.2 48.6v112c0 9.6-4.2 18.1-10.8 24h42.8c35.3 0 64-28.7 64-64V256C512 114.6 397.4 0 256 0m106.8 512c-6.6-5.9-10.8-14.4-10.8-24v-40H160v40c0 9.6-4.2 18.1-10.8 24h213.7zm-172-234.5L177 320h158l-13.8-42.5c-1.1-3.3-4.1-5.5-7.6-5.5H198.4c-3.5 0-6.5 2.2-7.6 5.5M168 408a24 24 0 1 0 0-48 24 24 0 1 0 0 48m200-24a24 24 0 1 0-48 0 24 24 0 1 0 48 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/car.svg���������������������������0000664�0000000�0000000�00000001337�14753064456�0026544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M135.2 117.4 109.1 192h293.8l-26.1-74.6c-4.5-12.8-16.6-21.4-30.2-21.4H165.4c-13.6 0-25.7 8.6-30.2 21.4m-95.6 79.4L74.8 96.3C88.3 57.8 124.6 32 165.4 32h181.2c40.8 0 77.1 25.8 90.6 64.3l35.2 100.5c23.2 9.6 39.6 32.5 39.6 59.2v192c0 17.7-14.3 32-32 32h-32c-17.7 0-32-14.3-32-32v-48H96v48c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V256c0-26.7 16.4-49.6 39.6-59.2M128 288a32 32 0 1 0-64 0 32 32 0 1 0 64 0m288 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/caravan.svg�����������������������0000664�0000000�0000000�00000001275�14753064456�0027413�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 112c0-44.2 35.8-80 80-80h336c88.4 0 160 71.6 160 160v160h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H288c0 53-43 96-96 96s-96-43-96-96H80c-44.2 0-80-35.8-80-80zm320 240h128v-96h-32c-8.8 0-16-7.2-16-16s7.2-16 16-16h32v-64c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32zM96 128c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32v-64c0-17.7-14.3-32-32-32zm96 336a48 48 0 1 0 0-96 48 48 0 1 0 0 96"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/caret-down.svg��������������������0000664�0000000�0000000�00000000676�14753064456�0030047�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M137.4 374.6c12.5 12.5 32.8 12.5 45.3 0l128-128c9.2-9.2 11.9-22.9 6.9-34.9S301 191.9 288 191.9L32 192c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l128 128z"/></svg>������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/caret-left.svg��������������������0000664�0000000�0000000�00000000672�14753064456�0030026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M9.4 278.6c-12.5-12.5-12.5-32.8 0-45.3l128-128c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6v256c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9l-128-128z"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/caret-right.svg�������������������0000664�0000000�0000000�00000000671�14753064456�0030210�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M246.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-9.2-9.2-22.9-11.9-34.9-6.9S63.9 115 63.9 128v256c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l128-128z"/></svg>�����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/caret-up.svg����������������������0000664�0000000�0000000�00000000673�14753064456�0027521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M182.6 137.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-9.2 9.2-11.9 22.9-6.9 34.9S19 320.1 32 320.1h256c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-128-128z"/></svg>���������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/carrot.svg������������������������0000664�0000000�0000000�00000001453�14753064456�0027270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M346.7 6C337.6 17 320 42.3 320 72c0 40 15.3 55.3 40 80s40 40 80 40c29.7 0 55-17.6 66-26.7 4-3.3 6-8.2 6-13.3s-2-10-6-13.2c-11.4-9.1-38.3-26.8-74-26.8-32 0-40 8-40 8s8-8 8-40c0-35.7-17.7-62.6-26.8-74-3.2-4-8.1-6-13.2-6s-10 2-13.3 6M244.6 136c-40 0-77.1 18.1-101.7 48.2l60.5 60.5c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L125.5 212v.1L2.2 477.9C-2 487-.1 497.8 7 505s17.9 9 27.1 4.8l134.7-62.4-52.1-52.1c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l60.4 60.3 100.2-46.4c46.4-21.5 76.2-68 76.2-119.2C376 194.8 317.2 136 244.6 136"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cart-arrow-down.svg���������������0000664�0000000�0000000�00000001445�14753064456�0031025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M24 0C10.7 0 0 10.7 0 24s10.7 24 24 24h45.5c3.8 0 7.1 2.7 7.9 6.5l51.6 271c6.5 34 36.2 58.5 70.7 58.5H488c13.3 0 24-10.7 24-24s-10.7-24-24-24H199.7c-11.5 0-21.4-8.2-23.6-19.5l-5.4-28.5h288.5c32.6 0 61.1-21.8 69.5-53.3l41-152.3C576.6 57 557.4 32 531.1 32H360v102.1l23-23c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-64 64c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l23 23L312 32H120.1C111 12.8 91.6 0 69.5 0zm152 512a48 48 0 1 0 0-96 48 48 0 1 0 0 96m336-48a48 48 0 1 0-96 0 48 48 0 1 0 96 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cart-flatbed-suitcase.svg���������0000664�0000000�0000000�00000001555�14753064456�0032147�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 32C0 14.3 14.3 0 32 0h16c44.2 0 80 35.8 80 80v288c0 8.8 7.2 16 16 16h464c17.7 0 32 14.3 32 32s-14.3 32-32 32h-66.7c1.8 5 2.7 10.4 2.7 16 0 26.5-21.5 48-48 48s-48-21.5-48-48c0-5.6 1-11 2.7-16H253.2c1.8 5 2.7 10.4 2.7 16 0 26.5-21.5 48-48 48s-48-21.5-48-48c0-5.6 1-11 2.7-16H144c-44.2 0-80-35.8-80-80V80c0-8.8-7.2-16-16-16H32C14.3 64 0 49.7 0 32m432 64V56c0-4.4-3.6-8-8-8h-80c-4.4 0-8 3.6-8 8v40zm-144 0V56c0-30.9 25.1-56 56-56h80c30.9 0 56 25.1 56 56v264H288zm224 224V96h16c26.5 0 48 21.5 48 48v128c0 26.5-21.5 48-48 48zM240 96h16v224h-16c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cart-flatbed.svg������������������0000664�0000000�0000000�00000001525�14753064456�0030326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 0C14.3 0 0 14.3 0 32s14.3 32 32 32h16c8.8 0 16 7.2 16 16v288c0 44.2 35.8 80 80 80h18.7c-1.8 5-2.7 10.4-2.7 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1-11-2.7-16h197.5c-1.8 5-2.7 10.4-2.7 16 0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1-11-2.7-16h66.7c17.7 0 32-14.3 32-32s-14.3-32-32-32h-464c-8.8 0-16-7.2-16-16V80C128 35.8 92.2 0 48 0zm160 80v192c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48h-96v144c0 5.9-3.2 11.3-8.5 14.1s-11.5 2.5-16.4-.8L400 163.2l-39.1 26.1c-4.9 3.3-11.2 3.6-16.4.8s-8.5-8.2-8.5-14.1V32h-96c-26.5 0-48 21.5-48 48"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cart-plus.svg���������������������0000664�0000000�0000000�00000001460�14753064456�0027706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 24C0 10.7 10.7 0 24 0h45.5c22 0 41.5 12.8 50.6 32h411c26.3 0 45.5 25 38.6 50.4l-41 152.3c-8.5 31.4-37 53.3-69.5 53.3H170.7l5.4 28.5c2.2 11.3 12.1 19.5 23.6 19.5H488c13.3 0 24 10.7 24 24s-10.7 24-24 24H199.7c-34.6 0-64.3-24.6-70.7-58.5l-51.6-271c-.7-3.8-4-6.5-7.9-6.5H24C10.7 48 0 37.3 0 24m128 440a48 48 0 1 1 96 0 48 48 0 1 1-96 0m336-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96M252 160c0 11 9 20 20 20h44v44c0 11 9 20 20 20s20-9 20-20v-44h44c11 0 20-9 20-20s-9-20-20-20h-44V96c0-11-9-20-20-20s-20 9-20 20v44h-44c-11 0-20 9-20 20"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cart-shopping.svg�����������������0000664�0000000�0000000�00000001231�14753064456�0030546�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 24C0 10.7 10.7 0 24 0h45.5c22 0 41.5 12.8 50.6 32h411c26.3 0 45.5 25 38.6 50.4l-41 152.3c-8.5 31.4-37 53.3-69.5 53.3H170.7l5.4 28.5c2.2 11.3 12.1 19.5 23.6 19.5H488c13.3 0 24 10.7 24 24s-10.7 24-24 24H199.7c-34.6 0-64.3-24.6-70.7-58.5l-51.6-271c-.7-3.8-4-6.5-7.9-6.5H24C10.7 48 0 37.3 0 24m128 440a48 48 0 1 1 96 0 48 48 0 1 1-96 0m336-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cash-register.svg�����������������0000664�0000000�0000000�00000002026�14753064456�0030533�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C46.3 0 32 14.3 32 32v64c0 17.7 14.3 32 32 32h80v32H87c-31.6 0-58.5 23.1-63.3 54.4L1.1 364.1c-.7 4.7-1.1 9.5-1.1 14.3V448c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64v-69.6c0-4.8-.4-9.6-1.1-14.4l-22.7-149.6c-4.7-31.3-31.6-54.4-63.2-54.4H208v-32h80c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32zm32 48h160c8.8 0 16 7.2 16 16s-7.2 16-16 16H96c-8.8 0-16-7.2-16-16s7.2-16 16-16M64 432c0-8.8 7.2-16 16-16h352c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16m48-168a24 24 0 1 1 0-48 24 24 0 1 1 0 48m120-24a24 24 0 1 1-48 0 24 24 0 1 1 48 0m-72 104a24 24 0 1 1 0-48 24 24 0 1 1 0 48m168-104a24 24 0 1 1-48 0 24 24 0 1 1 48 0m-72 104a24 24 0 1 1 0-48 24 24 0 1 1 0 48m168-104a24 24 0 1 1-48 0 24 24 0 1 1 48 0m-72 104a24 24 0 1 1 0-48 24 24 0 1 1 0 48"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cat.svg���������������������������0000664�0000000�0000000�00000001773�14753064456�0026552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 192h17.1c22.1 38.3 63.5 64 110.9 64 11 0 21.8-1.4 32-4v228c0 17.7-14.3 32-32 32s-32-14.3-32-32V339.2L280 448h56c17.7 0 32 14.3 32 32s-14.3 32-32 32H192c-53 0-96-43-96-96V192.5c0-16.1-12-29.8-28-31.8l-7.9-1c-17.5-2.2-30-18.2-27.8-35.7S50.5 94 68 96.2l7.9 1c48 6 84.1 46.8 84.1 95.3v85.3c34.4-51.7 93.2-85.8 160-85.8m160 26.5c-10 3.5-20.8 5.5-32 5.5-28.4 0-54-12.4-71.6-32q-5.55-6.15-9.9-13.2C357.3 164 352 146.6 352 128V10.7C352 4.8 356.7.1 362.6 0h.2c3.3 0 6.4 1.6 8.4 4.2v.1l12.8 17 27.2 36.3L416 64h64l4.8-6.4L512 21.3l12.8-17v-.1c2-2.6 5.1-4.2 8.4-4.2h.2c5.9.1 10.6 4.8 10.6 10.7V128c0 17.3-4.6 33.6-12.6 47.6-11.3 19.8-29.6 35.2-51.4 42.9M432 128a16 16 0 1 0-32 0 16 16 0 1 0 32 0m48 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32"/></svg>�����mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cedi-sign.svg���������������������0000664�0000000�0000000�00000001272�14753064456�0027637�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 32c0-17.7-14.3-32-32-32s-32 14.3-32 32v34.7C101.2 81.9 32 160.9 32 256s69.2 174.1 160 189.3V480c0 17.7 14.3 32 32 32s32-14.3 32-32v-34.7c30.9-5.2 59.2-17.7 83.2-35.8 14.1-10.6 17-30.7 6.4-44.8s-30.7-17-44.8-6.4c-13.2 9.9-28.3 17.3-44.8 21.6V132c16.4 4.2 31.6 11.6 44.8 21.6 14.1 10.6 34.2 7.8 44.8-6.4s7.8-34.2-6.4-44.8c-24-18-52.4-30.6-83.2-35.8zm-64 100v248c-55.2-14.2-96-64.3-96-124s40.8-109.8 96-124"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cent-sign.svg���������������������0000664�0000000�0000000�00000001256�14753064456�0027666�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 0c17.7 0 32 14.3 32 32v34.7c30.9 5.2 59.2 17.7 83.2 35.8 14.1 10.6 17 30.7 6.4 44.8s-30.7 17-44.8 6.4C279.4 137.5 252.9 128 224 128c-70.7 0-128 57.3-128 128s57.3 128 128 128c28.9 0 55.4-9.5 76.8-25.6 14.1-10.6 34.2-7.8 44.8 6.4s7.8 34.2-6.4 44.8c-24 18-52.4 30.6-83.2 35.8v34.7c0 17.7-14.3 32-32 32s-32-14.3-32-32v-34.7C101.2 430.1 32 351.1 32 256S101.2 81.9 192 66.7V32c0-17.7 14.3-32 32-32"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/certificate.svg�������������������0000664�0000000�0000000�00000001765�14753064456�0030266�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M211 7.3C205 1 196-1.4 187.6.8s-14.9 8.9-17.1 17.3l-15.8 62.5-62-17.5c-8.4-2.4-17.4 0-23.5 6.1s-8.5 15.1-6.1 23.5l17.5 62-62.5 15.9c-8.4 2.1-15 8.7-17.3 17.1S1 205 7.3 211l46.2 45-46.2 45c-6.3 6-8.7 15-6.5 23.4s8.9 14.9 17.3 17.1l62.5 15.8-17.5 62c-2.4 8.4 0 17.4 6.1 23.5s15.1 8.5 23.5 6.1l62-17.5 15.8 62.5c2.1 8.4 8.7 15 17.1 17.3s17.3-.2 23.4-6.4l45-46.2 45 46.2c6.1 6.2 15 8.7 23.4 6.4s14.9-8.9 17.1-17.3l15.8-62.5 62 17.5c8.4 2.4 17.4 0 23.5-6.1s8.5-15.1 6.1-23.5l-17.5-62 62.5-15.8c8.4-2.1 15-8.7 17.3-17.1s-.2-17.4-6.4-23.4l-46.2-45 46.2-45c6.2-6.1 8.7-15 6.4-23.4s-8.9-14.9-17.3-17.1l-62.5-15.8 17.5-62c2.4-8.4 0-17.4-6.1-23.5s-15.1-8.5-23.5-6.1l-62 17.5-15.9-62.5c-2.1-8.4-8.7-15-17.1-17.3S307 1 301 7.3l-45 46.2z"/></svg>�����������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/chair.svg�������������������������0000664�0000000�0000000�00000001267�14753064456�0027067�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M248 48v208h48V58.7c23.9 13.8 40 39.7 40 69.3v128h48V128C384 57.3 326.7 0 256 0h-64C121.3 0 64 57.3 64 128v128h48V128c0-29.6 16.1-55.5 40-69.3V256h48V48zM48 288c-12.1 0-23.2 6.8-28.6 17.7l-16 32c-5 9.9-4.4 21.7 1.4 31.1S20.9 384 32 384v96c0 17.7 14.3 32 32 32s32-14.3 32-32v-96h256v96c0 17.7 14.3 32 32 32s32-14.3 32-32v-96c11.1 0 21.4-5.7 27.2-15.2s6.4-21.2 1.4-31.1l-16-32c-5.4-10.9-16.5-17.7-28.6-17.7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/chalkboard-user.svg���������������0000664�0000000�0000000�00000001241�14753064456�0031037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 64c0-35.3 28.7-64 64-64h352c35.3 0 64 28.7 64 64v288c0 35.3-28.7 64-64 64H336.8c-11.8-25.5-29.9-47.5-52.4-64H384v-32c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32v32h64V64H224v49.1C205.2 102.2 183.3 96 160 96zm0 64a96 96 0 1 1 0 192 96 96 0 1 1 0-192m-26.7 224h53.3c73.7 0 133.4 59.7 133.4 133.3 0 14.7-11.9 26.7-26.7 26.7H26.7C11.9 512 0 500.1 0 485.3 0 411.7 59.7 352 133.3 352"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/chalkboard.svg��������������������0000664�0000000�0000000�00000000775�14753064456�0030076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 32c-35.3 0-64 28.7-64 64v288h64V96h384v288h64V96c0-35.3-28.7-64-64-64zm128 352v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h512c17.7 0 32-14.3 32-32s-14.3-32-32-32H416v-32c0-17.7-14.3-32-32-32H256c-17.7 0-32 14.3-32 32"/></svg>���mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/champagne-glasses.svg�������������0000664�0000000�0000000�00000001550�14753064456�0031356�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M155.6 17.3C163 3 179.9-3.6 195 1.9l125 45.6L445 1.9c15.1-5.5 32 1.1 39.4 15.4l78.8 152.9c28.8 55.8 10.3 122.3-38.5 156.6l31.4 86.2 41-15c16.6-6 35 2.5 41 19.1s-2.5 35-19.1 41L547.9 484l-71.1 26c-16.6 6.1-35-2.5-41-19.1s2.5-35 19.1-41l41-15-31.3-86.2c-59.4 5.2-116.2-34-130-95.2L320 188.8l-14.6 64.7c-13.8 61.3-70.6 100.4-130 95.2l-31.3 86.2 41 15c16.6 6 25.2 24.4 19.1 41s-24.4 25.2-41 19.1l-71-25.9-71.1-25.9c-16.6-6.1-25.2-24.4-19.1-41s24.4-25.2 41-19.1l41 15 31.3-86.2C66.5 292.5 48.1 226 76.9 170.2zm44 54.4-27.2 52.8 89.2 32.5 13.1-57.9zm240.9 0-75.1 27.4 13.1 57.9 89.2-32.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/charging-station.svg��������������0000664�0000000�0000000�00000001724�14753064456�0031240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 0C60.7 0 32 28.7 32 64v384c-17.7 0-32 14.3-32 32s14.3 32 32 32h288c17.7 0 32-14.3 32-32s-14.3-32-32-32V304h16c22.1 0 40 17.9 40 40v32c0 39.8 32.2 72 72 72s72-32.2 72-72V252.3c32.5-10.2 56-40.5 56-76.3v-32c0-8.8-7.2-16-16-16h-16V80c0-8.8-7.2-16-16-16s-16 7.2-16 16v48h-32V80c0-8.8-7.2-16-16-16s-16 7.2-16 16v48h-16c-8.8 0-16 7.2-16 16v32c0 35.8 23.5 66.1 56 76.3V376c0 13.3-10.7 24-24 24s-24-10.7-24-24v-32c0-48.6-39.4-88-88-88h-16V64c0-35.3-28.7-64-64-64zm120.9 82.7c6 4 8.5 11.5 6.3 18.3l-25 74.9H256c6.7 0 12.7 4.2 15 10.4s.5 13.3-4.6 17.7l-112 96c-5.5 4.7-13.4 5.1-19.3 1.1s-8.5-11.5-6.3-18.3l25-74.9-57.8.1c-6.7 0-12.7-4.2-15-10.4s-.5-13.3 4.6-17.7l112-96c5.5-4.7 13.4-5.1 19.3-1.1z"/></svg>��������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/chart-area.svg��������������������0000664�0000000�0000000�00000001211�14753064456�0027775�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 64c0-17.7-14.3-32-32-32S0 46.3 0 64v336c0 44.2 35.8 80 80 80h400c17.7 0 32-14.3 32-32s-14.3-32-32-32H80c-8.8 0-16-7.2-16-16zm96 288h288c17.7 0 32-14.3 32-32v-68.2c0-7.6-2.7-15-7.7-20.8l-65.8-76.8c-12.1-14.2-33.7-15-46.9-1.8l-21 21c-10 10-26.4 9.2-35.4-1.6l-39.2-47c-12.6-15.1-35.7-15.4-48.7-.6L135.9 215c-5.1 5.8-7.9 13.3-7.9 21.1v84c0 17.7 14.3 32 32 32z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/chart-bar.svg���������������������0000664�0000000�0000000�00000001265�14753064456�0027642�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 32c17.7 0 32 14.3 32 32v336c0 8.8 7.2 16 16 16h400c17.7 0 32 14.3 32 32s-14.3 32-32 32H80c-44.2 0-80-35.8-80-80V64c0-17.7 14.3-32 32-32m96 96c0-17.7 14.3-32 32-32h192c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-17.7 0-32-14.3-32-32m32 64h128c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-17.7 0-32-14.3-32-32s14.3-32 32-32m0 96h256c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-17.7 0-32-14.3-32-32s14.3-32 32-32"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/chart-column.svg������������������0000664�0000000�0000000�00000001420�14753064456�0030364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 32c17.7 0 32 14.3 32 32v336c0 8.8 7.2 16 16 16h400c17.7 0 32 14.3 32 32s-14.3 32-32 32H80c-44.2 0-80-35.8-80-80V64c0-17.7 14.3-32 32-32m128 192c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32v-64c0-17.7 14.3-32 32-32m128-64v160c0 17.7-14.3 32-32 32s-32-14.3-32-32V160c0-17.7 14.3-32 32-32s32 14.3 32 32m64 32c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32v-96c0-17.7 14.3-32 32-32m128-96v224c0 17.7-14.3 32-32 32s-32-14.3-32-32V96c0-17.7 14.3-32 32-32s32 14.3 32 32"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/chart-diagram.svg�����������������0000664�0000000�0000000�00000001501�14753064456�0030473�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M80 32c-26.5 0-48 21.5-48 48s21.5 48 48 48h152v40l-48 48h-56c-48.6 0-88 39.4-88 88v48h-8c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32v-64c0-17.7-14.3-32-32-32h-8v-48c0-22.1 17.9-40 40-40h56l48 48v40h-8c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32v-64c0-17.7-14.3-32-32-32h-8v-40l48-48h56c22.1 0 40 17.9 40 40v48h-8c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32v-64c0-17.7-14.3-32-32-32h-8v-48c0-48.6-39.4-88-88-88h-56l-48-48v-40h152c26.5 0 48-21.5 48-48s-21.5-48-48-48z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/chart-gantt.svg�������������������0000664�0000000�0000000�00000001265�14753064456�0030213�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 32c17.7 0 32 14.3 32 32v336c0 8.8 7.2 16 16 16h400c17.7 0 32 14.3 32 32s-14.3 32-32 32H80c-44.2 0-80-35.8-80-80V64c0-17.7 14.3-32 32-32m96 96c0-17.7 14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32h-96c-17.7 0-32-14.3-32-32m96 64h128c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32m160 96h64c17.7 0 32 14.3 32 32s-14.3 32-32 32h-64c-17.7 0-32-14.3-32-32s14.3-32 32-32"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/chart-line.svg��������������������0000664�0000000�0000000�00000001171�14753064456�0030021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 64c0-17.7-14.3-32-32-32S0 46.3 0 64v336c0 44.2 35.8 80 80 80h400c17.7 0 32-14.3 32-32s-14.3-32-32-32H80c-8.8 0-16-7.2-16-16zm406.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L320 210.7l-57.4-57.4c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l89.4-89.3 57.4 57.4c12.5 12.5 32.8 12.5 45.3 0l128-128z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/chart-pie.svg���������������������0000664�0000000�0000000�00000001151�14753064456�0027645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M304 240V16.6c0-9 7-16.6 16-16.6 123.7 0 224 100.3 224 224 0 9-7.6 16-16.6 16zM32 272c0-121.3 90.1-221.7 207-237.7 9.2-1.3 17 6.1 17 15.4V288l156.5 156.5c6.7 6.7 6.2 17.7-1.5 23.1-39.2 28-87.2 44.4-139 44.4-132.5 0-240-107.4-240-240m526.4 16c9.3 0 16.6 7.8 15.4 17-7.7 55.9-34.6 105.6-73.9 142.3-6 5.6-15.4 5.2-21.2-.7L320 288z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/chart-simple.svg������������������0000664�0000000�0000000�00000001133�14753064456�0030361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 80c0-26.5 21.5-48 48-48h32c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48h-32c-26.5 0-48-21.5-48-48zM0 272c0-26.5 21.5-48 48-48h32c26.5 0 48 21.5 48 48v160c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48zM368 96h32c26.5 0 48 21.5 48 48v288c0 26.5-21.5 48-48 48h-32c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/check-double.svg������������������0000664�0000000�0000000�00000001142�14753064456�0030316�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M342.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 178.7l-57.4-57.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l80 80c12.5 12.5 32.8 12.5 45.3 0zm96 128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 402.7 54.6 297.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l256-256z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/check-to-slot.svg�����������������0000664�0000000�0000000�00000001152�14753064456�0030446�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 80c0-26.5 21.5-48 48-48h288c26.5 0 48 21.5 48 48v304H96zm313 47c-9.4-9.4-24.6-9.4-33.9 0l-111 111-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0L409 161c9.4-9.4 9.4-24.6 0-33.9zM0 336c0-26.5 21.5-48 48-48h16v128h448V288h16c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/check.svg�������������������������0000664�0000000�0000000�00000000726�14753064456�0027055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7l233.4-233.3c12.5-12.5 32.8-12.5 45.3 0z"/></svg>������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cheese.svg������������������������0000664�0000000�0000000�00000000711�14753064456�0027226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M512 240.2V256H0c0-20 10-38.7 26.6-49.8L274.9 40.7c8.6-5.7 18.6-8.7 28.9-8.7 115 0 208.2 93.2 208.2 208.2m0 47.8v128c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V288z"/></svg>�������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/chess-bishop.svg������������������0000664�0000000�0000000�00000001336�14753064456�0030365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 0c-17.7 0-32 14.3-32 32 0 16.1 11.9 29.4 27.4 31.7C78.4 106.8 8 190 8 288c0 47.4 30.8 72.3 56 84.7V400h192v-27.3c25.2-12.5 56-37.4 56-84.7 0-37.3-10.2-72.4-25.3-104.1l-99.4 99.4c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l106.1-106.1c-23.2-38.1-51.8-69.5-74.2-90.9C212.1 61.4 224 48.1 224 32c0-17.7-14.3-32-32-32zM48 432 6.6 473.4c-4.2 4.2-6.6 10-6.6 16C0 501.9 10.1 512 22.6 512h274.7c12.5 0 22.6-10.1 22.6-22.6 0-6-2.4-11.8-6.6-16L272 432z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/chess-board.svg�������������������0000664�0000000�0000000�00000001107�14753064456�0030164�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm64 64v64h64V96h64v64h64V96h64v64h-64v64h64v64h-64v64h64v64h-64v-64h-64v64h-64v-64h-64v64H64v-64h64v-64H64v-64h64v-64H64V96zm64 128h64v-64h-64zm0 64v-64h-64v64zm64 0h-64v64h64zm0 0h64v-64h-64z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/chess-king.svg��������������������0000664�0000000�0000000�00000001255�14753064456�0030031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 0c17.7 0 32 14.3 32 32v16h16c17.7 0 32 14.3 32 32s-14.3 32-32 32h-16v48h152c22.1 0 40 17.9 40 40 0 5.3-1 10.5-3.1 15.4L368 400H80L3.1 215.4C1 210.5 0 205.3 0 200c0-22.1 17.9-40 40-40h152v-48h-16c-17.7 0-32-14.3-32-32s14.3-32 32-32h16V32c0-17.7 14.3-32 32-32M38.6 473.4 80 432h288l41.4 41.4c4.2 4.2 6.6 10 6.6 16 0 12.5-10.1 22.6-22.6 22.6H54.6C42.1 512 32 501.9 32 489.4c0-6 2.4-11.8 6.6-16"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/chess-knight.svg������������������0000664�0000000�0000000�00000001436�14753064456�0030366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 48 82.7 61.3c-12 12-18.7 28.2-18.7 45.2v132.4c0 10.7 5.3 20.7 14.2 26.6l10.6 7c14.3 9.6 32.7 10.7 48.1 3l3.2-1.6c2.6-1.3 5-2.8 7.3-4.5l49.4-37c6.6-5 15.7-5 22.3 0 10.2 7.7 9.9 23.1-.7 30.3L90.4 350C73.9 361.3 64 380 64 400h320l28.9-159c2.1-11.3 3.1-22.8 3.1-34.3V192C416 86 330 0 224 0H83.8C72.9 0 64 8.9 64 19.8c0 7.5 4.2 14.3 10.9 17.7zm24 68a20 20 0 1 1 40 0 20 20 0 1 1-40 0M22.6 473.4c-4.2 4.2-6.6 10-6.6 16 0 12.5 10.1 22.6 22.6 22.6h370.7c12.5 0 22.6-10.1 22.6-22.6 0-6-2.4-11.8-6.6-16L384 432H64z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/chess-pawn.svg��������������������0000664�0000000�0000000�00000001200�14753064456�0030034�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M215.5 224c29.2-18.4 48.5-50.9 48.5-88 0-57.4-46.6-104-104-104S56 78.6 56 136c0 37.1 19.4 69.6 48.5 88H96c-17.7 0-32 14.3-32 32 0 16.5 12.5 30 28.5 31.8L80 400h160l-12.5-112.2c16-1.8 28.5-15.3 28.5-31.8 0-17.7-14.3-32-32-32zM22.6 473.4c-4.2 4.2-6.6 10-6.6 16 0 12.5 10.1 22.6 22.6 22.6h242.7c12.5 0 22.6-10.1 22.6-22.6 0-6-2.4-11.8-6.6-16L256 432H64z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/chess-queen.svg�������������������0000664�0000000�0000000�00000001464�14753064456�0030220�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 0a56 56 0 1 1 0 112 56 56 0 1 1 0-112M134.1 143.8c3.3-13 15-23.8 30.2-23.8 12.3 0 22.6 7.2 27.7 17 12 23.2 36.2 39 64 39s52-15.8 64-39c5.1-9.8 15.4-17 27.7-17 15.3 0 27 10.8 30.2 23.8 7 27.8 32.2 48.3 62.1 48.3 10.8 0 21-2.7 29.8-7.4 8.4-4.4 18.9-4.5 27.6.9 13 8 17.1 25 9.2 38L399.7 400H112.3L5.4 223.6c-7.9-13-3.8-30 9.2-38 8.7-5.3 19.2-5.3 27.6-.9 8.9 4.7 19 7.4 29.8 7.4 29.9 0 55.1-20.5 62.1-48.3M112 432h288l41.4 41.4c4.2 4.2 6.6 10 6.6 16 0 12.5-10.1 22.6-22.6 22.6H86.6C74.1 512 64 501.9 64 489.4c0-6 2.4-11.8 6.6-16z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/chess-rook.svg��������������������0000664�0000000�0000000�00000001465�14753064456�0030056�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 192V48c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16v40c0 4.4 3.6 8 8 8h32c4.4 0 8-3.6 8-8V48c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16v40c0 4.4 3.6 8 8 8h32c4.4 0 8-3.6 8-8V48c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16v144c0 10.1-4.7 19.6-12.8 25.6L352 256l16 144H80l16-144-51.2-38.4c-8.1-6-12.8-15.5-12.8-25.6m176 96h32c8.8 0 16-7.2 16-16v-48c0-17.7-14.3-32-32-32s-32 14.3-32 32v48c0 8.8 7.2 16 16 16M22.6 473.4 64 432h320l41.4 41.4c4.2 4.2 6.6 10 6.6 16 0 12.5-10.1 22.6-22.6 22.6H38.6C26.1 512 16 501.9 16 489.4c0-6 2.4-11.8 6.6-16"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/chess.svg�������������������������0000664�0000000�0000000�00000002243�14753064456�0027101�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M144 16c0-8.8-7.2-16-16-16s-16 7.2-16 16v16H96c-8.8 0-16 7.2-16 16s7.2 16 16 16h16v32H60.2C49.1 96 40 105.1 40 116.2c0 2.5.5 4.9 1.3 7.3L73.8 208H72c-13.3 0-24 10.7-24 24s10.7 24 24 24h4L60 384h136l-16-128h4c13.3 0 24-10.7 24-24s-10.7-24-24-24h-1.8l32.5-84.5c.9-2.3 1.3-4.8 1.3-7.3 0-11.2-9.1-20.2-20.2-20.2H144V64h16c8.8 0 16-7.2 16-16s-7.2-16-16-16h-16zM48 416 4.8 473.6C1.7 477.8 0 482.8 0 488c0 13.3 10.7 24 24 24h208c13.3 0 24-10.7 24-24 0-5.2-1.7-10.2-4.8-14.4L208 416zm288 0-43.2 57.6c-3.1 4.2-4.8 9.2-4.8 14.4 0 13.3 10.7 24 24 24h176c13.3 0 24-10.7 24-24 0-5.2-1.7-10.2-4.8-14.4L464 416zm-32-208v51.9c0 7.8 2.8 15.3 8 21.1l27.2 31-2.2 72h125.5l-3.3-72 28.3-30.8c5.4-5.9 8.5-13.6 8.5-21.7V208c0-8.8-7.2-16-16-16h-16c-8.8 0-16 7.2-16 16v16h-24v-16c0-8.8-7.2-16-16-16h-16c-8.8 0-16 7.2-16 16v16h-24v-16c0-8.8-7.2-16-16-16h-16c-8.8 0-16 7.2-16 16m80 96c0-8.8 7.2-16 16-16s16 7.2 16 16v32h-32z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/chevron-down.svg������������������0000664�0000000�0000000�00000000712�14753064456�0030404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/chevron-left.svg������������������0000664�0000000�0000000�00000000707�14753064456�0030373�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l192 192c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256 246.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-192 192z"/></svg>���������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/chevron-right.svg�����������������0000664�0000000�0000000�00000000712�14753064456�0030552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/chevron-up.svg��������������������0000664�0000000�0000000�00000000712�14753064456�0030061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M233.4 105.4c12.5-12.5 32.8-12.5 45.3 0l192 192c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L256 173.3 86.6 342.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l192-192z"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/child-combatant.svg���������������0000664�0000000�0000000�00000001756�14753064456�0031035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M176 128a64 64 0 1 0 0-128 64 64 0 1 0 0 128m-8 352V352h16v128c0 17.7 14.3 32 32 32s32-14.3 32-32V300.5l12.9 20.5c9.4 15 29.2 19.4 44.1 10s19.4-29.2 10-44.1l-51.7-82.1c-17.6-27.9-48.3-44.9-81.2-44.9h-12.3c-33 0-63.7 16.9-81.2 44.9L36.9 287c-9.4 15-4.9 34.7 10 44.1s34.7 4.9 44.1-10l13-20.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32M448 0h-32c-8.8 0-16 7.2-16 16s7.2 16 16 16v100.3c-9.6 5.5-16 15.9-16 27.7v32c-17.7 0-32 14.3-32 32v144c0 17.7 14.3 32 32 32h16v96c0 8.8 7.2 16 16 16h59.5c10.4 0 18-9.8 15.5-19.9L484 400h44c8.8 0 16-7.2 16-16v-16c0-8.8-7.2-16-16-16h-48v-26.7l53.1-17.7c6.5-2.2 10.9-8.3 10.9-15.2v-84.5c0-8.8-7.2-16-16-16h-16c-8.8 0-16 7.2-16 16v56l-16 5.3V160c0-11.8-6.4-22.2-16-27.7V16c0-8.8-7.2-16-16-16"/></svg>������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/child-dress.svg�������������������0000664�0000000�0000000�00000001262�14753064456�0030175�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 64a64 64 0 1 0-128 0 64 64 0 1 0 128 0M88 400v80c0 17.7 14.3 32 32 32s32-14.3 32-32v-80h16v80c0 17.7 14.3 32 32 32s32-14.3 32-32v-80h17.8c10.9 0 18.6-10.7 15.2-21.1l-31.1-93.4 28.6 37.8c10.7 14.1 30.8 16.8 44.8 6.2s16.8-30.7 6.2-44.8L254.6 207c-22.4-29.6-57.5-47-94.6-47s-72.2 17.4-94.6 47L6.5 284.7c-10.7 14.1-7.9 34.2 6.2 44.8s34.2 7.9 44.8-6.2l28.7-37.8L55 378.9c-3.4 10.4 4.3 21.1 15.2 21.1z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/child-reaching.svg����������������0000664�0000000�0000000�00000001334�14753064456�0030635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 64a64 64 0 1 0-128 0 64 64 0 1 0 128 0M152.9 169.3c-23.7-8.4-44.5-24.3-58.8-45.8L74.6 94.2C64.8 79.5 45 75.6 30.2 85.4s-18.7 29.7-8.9 44.4L40.9 159c18.1 27.1 42.8 48.4 71.1 62.4V480c0 17.7 14.3 32 32 32s32-14.3 32-32v-96h32v96c0 17.7 14.3 32 32 32s32-14.3 32-32V221.6c29.1-14.2 54.4-36.2 72.7-64.2l18.2-27.9c9.6-14.8 5.4-34.6-9.4-44.3s-34.6-5.5-44.3 9.4L291 122.4c-21.8 33.4-58.9 53.6-98.8 53.6-12.6 0-24.9-2-36.6-5.8-.9-.3-1.8-.7-2.7-.9"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/child.svg�������������������������0000664�0000000�0000000�00000001130�14753064456�0027051�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 64a64 64 0 1 1 128 0 64 64 0 1 1-128 0m48 320v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V287.8L59.1 321c-9.4 15-29.2 19.4-44.1 10s-19.5-29.1-10.1-44l39.9-63.3C69.7 184 113.2 160 160 160s90.3 24 115.2 63.6l39.9 63.4c9.4 15 4.9 34.7-10 44.1s-34.7 4.9-44.1-10l-21-33.3V480c0 17.7-14.3 32-32 32s-32-14.3-32-32v-96z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/children.svg����������������������0000664�0000000�0000000�00000001774�14753064456�0027574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 0a64 64 0 1 1 0 128 64 64 0 1 1 0-128M88 480v-80H70.2c-10.9 0-18.6-10.7-15.2-21.1l31.1-93.4-28.6 37.8c-10.7 14.1-30.8 16.8-44.8 6.2s-16.8-30.7-6.2-44.8L65.4 207c22.4-29.6 57.5-47 94.6-47s72.2 17.4 94.6 47l58.9 77.7c10.7 14.1 7.9 34.2-6.2 44.8s-34.2 7.9-44.8-6.2l-28.6-37.8 31.1 93.4c3.5 10.4-4.3 21.1-15.2 21.1H232v80c0 17.7-14.3 32-32 32s-32-14.3-32-32v-80h-16v80c0 17.7-14.3 32-32 32s-32-14.3-32-32M480 0a64 64 0 1 1 0 128 64 64 0 1 1 0-128m-8 384v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V300.5L395.1 321c-9.4 15-29.2 19.4-44.1 10s-19.4-29.2-10-44.1l51.7-82.1c17.6-27.9 48.3-44.9 81.2-44.9h12.3c33 0 63.7 16.9 81.2 44.9l51.7 82.2c9.4 15 4.9 34.7-10 44.1s-34.7 4.9-44.1-10l-13-20.6V480c0 17.7-14.3 32-32 32s-32-14.3-32-32v-96z"/></svg>����mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/church.svg������������������������0000664�0000000�0000000�00000001311�14753064456�0027243�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M344 24c0-13.3-10.7-24-24-24s-24 10.7-24 24v24h-32c-13.3 0-24 10.7-24 24s10.7 24 24 24h32v46.4L183.3 210c-14.5 8.7-23.3 24.3-23.3 41.2V512h96v-96c0-35.3 28.7-64 64-64s64 28.7 64 64v96h96V251.2c0-16.9-8.8-32.5-23.3-41.2L344 142.4V96h32c13.3 0 24-10.7 24-24s-10.7-24-24-24h-32zM24.9 330.3C9.5 338.8 0 354.9 0 372.4V464c0 26.5 21.5 48 48 48h80V273.6zM592 512c26.5 0 48-21.5 48-48v-91.6c0-17.5-9.5-33.6-24.9-42.1L512 273.6V512z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-arrow-down.svg�������������0000664�0000000�0000000�00000001010�14753064456�0031321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 0a256 256 0 1 0 0 512 256 256 0 1 0 0-512M127 297c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l71 71L232 120c0-13.3 10.7-24 24-24s24 10.7 24 24v214.1l71-71c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L273 409c-9.4 9.4-24.6 9.4-33.9 0z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-arrow-left.svg�������������0000664�0000000�0000000�00000001014�14753064456�0031310�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M512 256a256 256 0 1 0-512 0 256 256 0 1 0 512 0M215 127c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-71 71 214.1.1c13.3 0 24 10.7 24 24s-10.7 24-24 24H177.9l71 71c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L103 273c-9.4-9.4-9.4-24.6 0-33.9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-arrow-right.svg������������0000664�0000000�0000000�00000001013�14753064456�0031472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 256a256 256 0 1 0 512 0 256 256 0 1 0-512 0m297 129c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l71-71L120 280c-13.3 0-24-10.7-24-24s10.7-24 24-24h214.1l-71-71c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L409 239c9.4 9.4 9.4 24.6 0 33.9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-arrow-up.svg���������������0000664�0000000�0000000�00000001016�14753064456�0031004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m129-297c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-71-71L280 392c0 13.3-10.7 24-24 24s-24-10.7-24-24V177.9l-71 71c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L239 103c9.4-9.4 24.6-9.4 33.9 0z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-check.svg������������������0000664�0000000�0000000�00000000742�14753064456�0030312�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m113-303L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-chevron-down.svg�����������0000664�0000000�0000000�00000000727�14753064456�0031651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 0a256 256 0 1 0 0 512 256 256 0 1 0 0-512M135 241c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l87 87 87-87c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L273 345c-9.4 9.4-24.6 9.4-33.9 0z"/></svg>�����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-chevron-left.svg�����������0000664�0000000�0000000�00000000732�14753064456�0031630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M512 256a256 256 0 1 0-512 0 256 256 0 1 0 512 0M271 135c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-87 87 87 87c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L167 273c-9.4-9.4-9.4-24.6 0-33.9z"/></svg>��������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-chevron-right.svg����������0000664�0000000�0000000�00000000730�14753064456�0032011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 256a256 256 0 1 0 512 0 256 256 0 1 0-512 0m241 121c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l87-87-87-87c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L345 239c9.4 9.4 9.4 24.6 0 33.9z"/></svg>����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-chevron-up.svg�������������0000664�0000000�0000000�00000000733�14753064456�0031323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m121-241c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-87-87-87 87c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L239 167c9.4-9.4 24.6-9.4 33.9 0z"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-dollar-to-slot.svg���������0000664�0000000�0000000�00000003007�14753064456�0032106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M326.7 403.7c-22.1 8-45.9 12.3-70.7 12.3s-48.7-4.4-70.7-12.3l-.8-.3c-30-11-56.8-28.7-78.6-51.4C70 314.6 48 263.9 48 208 48 93.1 141.1 0 256 0s208 93.1 208 208c0 55.9-22 106.6-57.9 144-1 1-2 2.1-3 3.1a208.8 208.8 0 0 1-76.3 48.6zM256 91.9c-11.1 0-20.1 9-20.1 20.1v6q-8.4 1.8-15.9 5.1c-15 6.8-27.9 19.4-31.1 37.7-1.8 10.2-.8 20 3.4 29 4.2 8.8 10.7 15 17.3 19.5 11.6 7.9 26.9 12.5 38.6 16l2.2.7c13.9 4.2 23.4 7.4 29.3 11.7 2.5 1.8 3.4 3.2 3.7 4s.9 2.6.2 6.7c-.6 3.5-2.5 6.4-8 8.8-6.1 2.6-16 3.9-28.8 1.9-6-1-16.7-4.6-26.2-7.9-2.2-.7-4.3-1.5-6.4-2.1-10.5-3.5-21.8 2.2-25.3 12.7s2.2 21.8 12.7 25.3c1.2.4 2.7.9 4.4 1.5 7.9 2.7 20.3 6.9 29.8 9.1v6.4c0 11.1 9 20.1 20.1 20.1s20.1-9 20.1-20.1v-5.5c5.3-1 10.5-2.5 15.4-4.6 15.7-6.7 28.4-19.7 31.6-38.7 1.8-10.4 1-20.3-3-29.4-3.9-9-10.2-15.6-16.9-20.5-12.2-8.8-28.3-13.7-40.4-17.4l-.8-.2c-14.2-4.3-23.8-7.3-29.9-11.4-2.6-1.8-3.4-3-3.6-3.5-.2-.3-.7-1.6-.1-5 .3-1.9 1.9-5.2 8.2-8.1 6.4-2.9 16.4-4.5 28.6-2.6 4.3.7 17.9 3.3 21.7 4.3 10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-4.4-1.2-14.4-3.2-21-4.4v-6.3c0-11.1-9-20.1-20.1-20.1zM48 352h16c19.5 25.9 44 47.7 72.2 64H64v32h384v-32h-72.2c28.2-16.3 52.8-38.1 72.2-64h16c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48v-64c0-26.5 21.5-48 48-48"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-dot.svg��������������������0000664�0000000�0000000�00000000574�14753064456�0030026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m0-352a96 96 0 1 1 0 192 96 96 0 1 1 0-192"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-down.svg�������������������0000664�0000000�0000000�00000001026�14753064456�0030200�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 0a256 256 0 1 0 0 512 256 256 0 1 0 0-512m-11.3 395.3-112-112c-4.6-4.6-5.9-11.5-3.5-17.4s8.3-9.9 14.8-9.9h64v-96c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32v96h64c6.5 0 12.3 3.9 14.8 9.9s1.1 12.9-3.5 17.4l-112 112c-6.2 6.2-16.4 6.2-22.6 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-exclamation.svg������������0000664�0000000�0000000�00000000730�14753064456�0031536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m0-384c13.3 0 24 10.7 24 24v112c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24m-32 224a32 32 0 1 1 64 0 32 32 0 1 1-64 0"/></svg>����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-h.svg����������������������0000664�0000000�0000000�00000001006�14753064456�0027456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m112-360v208c0 13.3-10.7 24-24 24s-24-10.7-24-24v-80H192v80c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24s24 10.7 24 24v80h128v-80c0-13.3 10.7-24 24-24s24 10.7 24 24"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-half-stroke.svg������������0000664�0000000�0000000�00000000606�14753064456�0031453�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 256c0-106-86-192-192-192v384c106 0 192-86 192-192M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0"/></svg>��������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-info.svg�������������������0000664�0000000�0000000�00000001033�14753064456�0030162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m-40-176h24v-64h-24c-13.3 0-24-10.7-24-24s10.7-24 24-24h48c13.3 0 24 10.7 24 24v88h8c13.3 0 24 10.7 24 24s-10.7 24-24 24h-80c-13.3 0-24-10.7-24-24s10.7-24 24-24m40-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-left.svg�������������������0000664�0000000�0000000�00000001030�14753064456�0030156�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M512 256a256 256 0 1 0-512 0 256 256 0 1 0 512 0m-395.3-11.3 112-112c4.6-4.6 11.5-5.9 17.4-3.5s9.9 8.3 9.9 14.8v64h96c17.7 0 32 14.3 32 32v32c0 17.7-14.3 32-32 32h-96v64c0 6.5-3.9 12.3-9.9 14.8s-12.9 1.1-17.4-3.5l-112-112c-6.2-6.2-6.2-16.4 0-22.6"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-minus.svg������������������0000664�0000000�0000000�00000000652�14753064456�0030370�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m-72-280h144c13.3 0 24 10.7 24 24s-10.7 24-24 24H184c-13.3 0-24-10.7-24-24s10.7-24 24-24"/></svg>��������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-nodes.svg������������������0000664�0000000�0000000�00000001262�14753064456�0030343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M418.4 157.9c35.3-8.3 61.6-40 61.6-77.9 0-44.2-35.8-80-80-80-43.4 0-78.7 34.5-80 77.5l-183.8 73.6C121.7 136.8 101.9 128 80 128c-44.2 0-80 35.8-80 80s35.8 80 80 80c12.2 0 23.8-2.7 34.1-7.6l145.6 127.4c-2.4 7.6-3.7 15.8-3.7 24.2 0 44.2 35.8 80 80 80s80-35.8 80-80c0-27.7-14-52.1-35.4-66.4zm-262.1 74.3c2.2-6.9 3.5-14.2 3.7-21.7L343.8 137c3.6 3.5 7.4 6.7 11.6 9.5l-37.8 207.6c-5.5 1.3-10.8 3.1-15.8 5.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-notch.svg������������������0000664�0000000�0000000�00000001113�14753064456�0030341�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M222.7 32.1c5 16.9-4.6 34.8-21.5 39.8C121.8 95.6 64 169.1 64 256c0 106 86 192 192 192s192-86 192-192c0-86.9-57.8-160.4-137.1-184.1-16.9-5-26.6-22.9-21.5-39.8s22.9-26.6 39.8-21.5C434.9 42.1 512 140 512 256c0 141.4-114.6 256-256 256S0 397.4 0 256C0 140 77.1 42.1 182.9 10.6c16.9-5 34.8 4.6 39.8 21.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-pause.svg������������������0000664�0000000�0000000�00000000776�14753064456�0030361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m-32-320v128c0 17.7-14.3 32-32 32s-32-14.3-32-32V192c0-17.7 14.3-32 32-32s32 14.3 32 32m128 0v128c0 17.7-14.3 32-32 32s-32-14.3-32-32V192c0-17.7 14.3-32 32-32s32 14.3 32 32"/></svg>��mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-play.svg�������������������0000664�0000000�0000000�00000001001�14753064456�0030167�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m188.3-108.9c-7.6 4.2-12.3 12.3-12.3 20.9v176c0 8.7 4.7 16.7 12.3 20.9s16.8 4.1 24.3-.5l144-88c7.1-4.4 11.5-12.1 11.5-20.5s-4.4-16.1-11.5-20.5l-144-88c-7.4-4.5-16.7-4.7-24.3-.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-plus.svg�������������������0000664�0000000�0000000�00000001005�14753064456�0030211�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m-24-168v-64h-64c-13.3 0-24-10.7-24-24s10.7-24 24-24h64v-64c0-13.3 10.7-24 24-24s24 10.7 24 24v64h64c13.3 0 24 10.7 24 24s-10.7 24-24 24h-64v64c0 13.3-10.7 24-24 24s-24-10.7-24-24"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-question.svg���������������0000664�0000000�0000000�00000001317�14753064456�0031103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m-86.2-346.7c7.9-22.3 29.1-37.3 52.8-37.3h58.3c34.9 0 63.1 28.3 63.1 63.1 0 22.6-12.1 43.5-31.7 54.8L280 264.4c-.2 13-10.9 23.6-24 23.6-13.3 0-24-10.7-24-24v-13.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1 0-8.4-6.8-15.1-15.1-15.1h-58.3c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM224 352a32 32 0 1 1 64 0 32 32 0 1 1-64 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-radiation.svg��������������0000664�0000000�0000000�00000001513�14753064456�0031204�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 64a192 192 0 1 1 0 384 192 192 0 1 1 0-384m0 448a256 256 0 1 0 0-512 256 256 0 1 0 0 512m-56-256c0-20.7 11.3-38.8 28-48.5l-36-62.3c-8.8-15.3-28.7-20.8-42-9-25.6 22.6-43.9 53.3-50.9 88.1-3.4 17.2 11.2 31.7 28.9 31.7zm28 48.5-36 62.4c-8.8 15.3-3.6 35.2 13.1 40.8 16 5.4 33.1 8.3 50.9 8.3s34.9-2.9 50.9-8.3c16.7-5.6 21.9-25.5 13.1-40.8l-36-62.4c-8.2 4.8-17.8 7.5-28 7.5s-19.8-2.7-28-7.5m84-48.5h72c17.7 0 32.3-14.5 28.8-31.8-7-34.8-25.3-65.5-50.9-88.1-13.2-11.7-33.1-6.3-42 9l-36 62.3c16.7 9.7 28 27.8 28 48.5zm-56 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-right.svg������������������0000664�0000000�0000000�00000001030�14753064456�0030341�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 256a256 256 0 1 0 512 0 256 256 0 1 0-512 0m395.3 11.3-112 112c-4.6 4.6-11.5 5.9-17.4 3.5s-9.9-8.3-9.9-14.8v-64h-96c-17.7 0-32-14.3-32-32v-32c0-17.7 14.3-32 32-32h96v-64c0-6.5 3.9-12.3 9.9-14.8s12.9-1.1 17.4 3.5l112 112c6.2 6.2 6.2 16.4 0 22.6"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-stop.svg�������������������0000664�0000000�0000000�00000000677�14753064456�0030231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m-64-352h128c17.7 0 32 14.3 32 32v128c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V192c0-17.7 14.3-32 32-32"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-up.svg���������������������0000664�0000000�0000000�00000001033�14753064456�0027653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m11.3-395.3 112 112c4.6 4.6 5.9 11.5 3.5 17.4s-8.3 9.9-14.8 9.9h-64v96c0 17.7-14.3 32-32 32h-32c-17.7 0-32-14.3-32-32v-96h-64c-6.5 0-12.3-3.9-14.8-9.9s-1.1-12.9 3.5-17.4l112-112c6.2-6.2 16.4-6.2 22.6 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-user.svg�������������������0000664�0000000�0000000�00000000763�14753064456�0030216�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M399 384.2c-22.1-38.4-63.6-64.2-111-64.2h-64c-47.4 0-88.9 25.8-111 64.2 35.2 39.2 86.2 63.8 143 63.8s107.8-24.7 143-63.8M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m256 16a72 72 0 1 0 0-144 72 72 0 1 0 0 144"/></svg>�������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle-xmark.svg������������������0000664�0000000�0000000�00000001070�14753064456�0030352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m-81-337c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/circle.svg������������������������0000664�0000000�0000000�00000000522�14753064456�0027233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/city.svg��������������������������0000664�0000000�0000000�00000003116�14753064456�0026744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M480 48c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v48h-64V24c0-13.3-10.7-24-24-24s-24 10.7-24 24v72h-64V24c0-13.3-10.7-24-24-24S64 10.7 64 24v72H48c-26.5 0-48 21.5-48 48v320c0 26.5 21.5 48 48 48h544c26.5 0 48-21.5 48-48V240c0-26.5-21.5-48-48-48H480zm96 320v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16m-336 48h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16m-112-16c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16zm432-144c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16zm-304-80v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16m-144-16c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16zm144 144c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16zm-144 16H80c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16m304-48v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16M400 64c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16V80c0-8.8 7.2-16 16-16zm16 112v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/clapperboard.svg������������������0000664�0000000�0000000�00000001044�14753064456�0030430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 32h-86.1l-1 1-127 127H326l1-1L453.8 32.3c-1.9-.2-3.8-.3-5.8-.3m64 128V96c0-15.1-5.3-29.1-14-40L394 160zM294.1 32H202l-1 1L73.9 160H166l1-1L294 32zM64 32C28.7 32 0 60.7 0 96v64h6.1l1-1 127-127zm448 160H0v224c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/clipboard-check.svg���������������0000664�0000000�0000000�00000001173�14753064456�0031007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128v320c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64h-37.5C269.4 26.7 233.8 0 192 0m0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64m113 209L177 401c-9.4 9.4-24.6 9.4-33.9 0L79 337c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L271 239c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/clipboard-list.svg����������������0000664�0000000�0000000�00000001343�14753064456�0030704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128v320c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64h-37.5C269.4 26.7 233.8 0 192 0m0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64M72 272a24 24 0 1 1 48 0 24 24 0 1 1-48 0m104-16h128c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16s7.2-16 16-16M72 368a24 24 0 1 1 48 0 24 24 0 1 1-48 0m88 0c0-8.8 7.2-16 16-16h128c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/clipboard-question.svg������������0000664�0000000�0000000�00000001550�14753064456�0031600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128v320c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64h-37.5C269.4 26.7 233.8 0 192 0m0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64m-86.2 165.3c7.9-22.3 29.1-37.3 52.8-37.3h58.3c34.9 0 63.1 28.3 63.1 63.1 0 22.6-12.1 43.5-31.7 54.8L216 328.4c-.2 13-10.9 23.6-24 23.6-13.3 0-24-10.7-24-24v-13.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1 0-8.4-6.8-15.1-15.1-15.1h-58.3c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM160 416a32 32 0 1 1 64 0 32 32 0 1 1-64 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/clipboard-user.svg����������������0000664�0000000�0000000�00000001165�14753064456�0030711�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128v320c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64h-37.5C269.4 26.7 233.8 0 192 0m0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64m-64 192a64 64 0 1 1 128 0 64 64 0 1 1-128 0M80 432c0-44.2 35.8-80 80-80h64c44.2 0 80 35.8 80 80 0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/clipboard.svg���������������������0000664�0000000�0000000�00000001075�14753064456�0027735�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128v320c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64h-37.5C269.4 26.7 233.8 0 192 0m0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64m-80 128h160c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/clock-rotate-left.svg�������������0000664�0000000�0000000�00000001360�14753064456�0031312�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M75 75 41 41C25.9 25.9 0 36.6 0 57.9V168c0 13.3 10.7 24 24 24h110.1c21.4 0 32.1-25.9 17-41l-30.8-30.8C155 85.5 203 64 256 64c106 0 192 86 192 192s-86 192-192 192c-40.8 0-78.6-12.7-109.7-34.4-14.5-10.1-34.4-6.6-44.6 7.9s-6.6 34.4 7.9 44.6C151.2 495 201.7 512 256 512c141.4 0 256-114.6 256-256S397.4 0 256 0C185.3 0 121.3 28.7 75 75m181 53c-13.3 0-24 10.7-24 24v104c0 6.4 2.5 12.5 7 17l72 72c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-65-65V152c0-13.3-10.7-24-24-24z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/clock.svg�������������������������0000664�0000000�0000000�00000000722�14753064456�0027067�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 0a256 256 0 1 1 0 512 256 256 0 1 1 0-512m-24 120v136c0 8 4 15.5 10.7 20l96 64c11 7.4 25.9 4.4 33.3-6.7s4.4-25.9-6.7-33.3L280 243.2V120c0-13.3-10.7-24-24-24s-24 10.7-24 24"/></svg>����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/clone.svg�������������������������0000664�0000000�0000000�00000000767�14753064456�0027105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 448H64V224h64v-64H64c-35.3 0-64 28.7-64 64v224c0 35.3 28.7 64 64 64h224c35.3 0 64-28.7 64-64v-64h-64zm-64-96h224c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H224c-35.3 0-64 28.7-64 64v224c0 35.3 28.7 64 64 64"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/closed-captioning.svg�������������0000664�0000000�0000000�00000001556�14753064456�0031404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96c0-35.3 28.7-64 64-64h448c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm200 112c14.2 0 27 6.1 35.8 16s24 10.7 33.9 1.9 10.7-24 1.9-33.9c-17.5-19.6-43.1-32-71.5-32-53 0-96 43-96 96s43 96 96 96c28.4 0 54-12.4 71.5-32 8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-8.8 9.9-21.6 16-35.8 16-26.5 0-48-21.5-48-48s21.5-48 48-48m144 48c0-26.5 21.5-48 48-48 14.2 0 27 6.1 35.8 16s24 10.7 33.9 1.9 10.7-24 1.9-33.9c-17.5-19.6-43.1-32-71.5-32-53 0-96 43-96 96s43 96 96 96c28.4 0 54-12.4 71.5-32 8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-8.8 9.9-21.6 16-35.8 16-26.5 0-48-21.5-48-48"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cloud-arrow-down.svg��������������0000664�0000000�0000000�00000001327�14753064456�0031201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M144 480C64.5 480 0 415.5 0 336c0-62.8 40.2-116.2 96.2-135.9-.1-2.7-.2-5.4-.2-8.1 0-88.4 71.6-160 160-160 59.3 0 111 32.2 138.7 80.2A95.5 95.5 0 0 1 448 96c53 0 96 43 96 96 0 12.2-2.3 23.8-6.4 34.6C596 238.4 640 290.1 640 352c0 70.7-57.3 128-128 128zm79-167 80 80c9.4 9.4 24.6 9.4 33.9 0l80-80c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-39 39V184c0-13.3-10.7-24-24-24s-24 10.7-24 24v134.1l-39-39c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cloud-arrow-up.svg����������������0000664�0000000�0000000�00000001322�14753064456�0030651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M144 480C64.5 480 0 415.5 0 336c0-62.8 40.2-116.2 96.2-135.9-.1-2.7-.2-5.4-.2-8.1 0-88.4 71.6-160 160-160 59.3 0 111 32.2 138.7 80.2A95.5 95.5 0 0 1 448 96c53 0 96 43 96 96 0 12.2-2.3 23.8-6.4 34.6C596 238.4 640 290.1 640 352c0 70.7-57.3 128-128 128zm79-217c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l39-39L296 392c0 13.3 10.7 24 24 24s24-10.7 24-24V257.9l39 39c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-80-80c-9.4-9.4-24.6-9.4-33.9 0z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cloud-bolt.svg��������������������0000664�0000000�0000000�00000001501�14753064456�0030034�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 224c0 53 43 96 96 96h47.2L290 202.5c17.6-14.1 42.6-14 60.2.2s22.8 38.6 12.8 58.8L333.7 320H416c53 0 96-43 96-96s-43-96-96-96h-1.6c1.1-5.2 1.6-10.5 1.6-16 0-44.2-35.8-80-80-80-24.3 0-46.1 10.9-60.8 28C256.5 24.3 219.1 0 176 0 114.1 0 64 50.1 64 112c0 7.1.7 14.1 1.9 20.8C27.6 145.4 0 181.5 0 224m330.1 3.6c-5.8-4.7-14.2-4.7-20.1-.1l-160 128c-5.3 4.2-7.4 11.4-5.1 17.8S153.2 384 160 384h70.1l-52.4 104.8c-3.4 6.7-1.6 14.9 4.3 19.6s14.2 4.7 20.1.1l160-128c5.3-4.2 7.4-11.4 5.1-17.8s-8.3-10.7-15.1-10.7H282l52.4-104.8c3.4-6.7 1.6-14.9-4.2-19.6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cloud-meatball.svg����������������0000664�0000000�0000000�00000002544�14753064456�0030665�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 224c0 53 43 96 96 96h44.7c9.5-23.5 32.5-40 59.3-40 2 0 3.9.1 5.8.3 11.8-14.8 29.9-24.3 50.2-24.3s38.4 9.5 50.2 24.3c1.9-.2 3.9-.3 5.8-.3 26.9 0 49.9 16.5 59.3 40H416c53 0 96-43 96-96s-43-96-96-96h-1.6c1.1-5.2 1.6-10.5 1.6-16 0-44.2-35.8-80-80-80-24.3 0-46.1 10.9-60.8 28C256.5 24.3 219.1 0 176 0 114.1 0 64 50.1 64 112c0 7.1.7 14.1 1.9 20.8C27.6 145.4 0 181.5 0 224m288 96c0-17.7-14.3-32-32-32s-32 14.3-32 32c0 1 .1 2.1.1 3.1-.7-.8-1.4-1.6-2.1-2.3-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3c.7.7 1.5 1.4 2.3 2.1-1-.1-2.1-.1-3.1-.1-17.7 0-32 14.3-32 32s14.3 32 32 32c1 0 2.1-.1 3.1-.1-.8.7-1.6 1.3-2.3 2.1-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0c.7-.7 1.4-1.5 2.1-2.3-.1 1-.1 2.1-.1 3.1 0 17.7 14.3 32 32 32s32-14.3 32-32c0-1-.1-2.1-.1-3.1.7.8 1.3 1.6 2.1 2.3 12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3c-.7-.7-1.5-1.4-2.3-2.1 1 .1 2.1.1 3.1.1 17.7 0 32-14.3 32-32s-14.3-32-32-32c-1 0-2.1.1-3.1.1.8-.7 1.6-1.3 2.3-2.1 12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0c-.7.7-1.4 1.5-2.1 2.3.1-1 .1-2.1.1-3.1M48 448a48 48 0 1 0 0-96 48 48 0 1 0 0 96m416 0a48 48 0 1 0 0-96 48 48 0 1 0 0 96"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cloud-moon-rain.svg���������������0000664�0000000�0000000�00000002407�14753064456�0031001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M481.2 0C417 0 363.5 46.5 353.7 107.6c35.4 17.6 60.2 53.3 62.1 95.1 23.2 11 42 29.7 53.1 52.7q6 .6 12.3.6c34.9 0 66.7-13.8 89.9-36.1 5.1-4.9 6.4-12.5 3.2-18.7s-10.1-9.7-17-8.6c-4.9.8-10 1.3-15.2 1.3-49 0-88.4-39.3-88.4-87.4 0-32.6 18-61.1 44.9-76.1 6.1-3.4 9.3-10.5 7.8-17.4S499.1 1 492.1.4c-3.6-.3-7.3-.5-10.9-.5zM367.9 383.9c44.2 0 80-35.8 80-80 0-39.3-28.4-72.1-65.8-78.7 1.2-5.6 1.9-11.3 1.9-17.2 0-44.2-35.8-80-80-80-17 0-32.8 5.3-45.8 14.4C241.3 114.6 210.8 96 176 96c-53 0-96 43-96 96v1.3c-45.4 7.6-80 47.1-80 94.6 0 53 43 96 96 96zM85.4 420.1c-11-7.4-25.9-4.4-33.3 6.7l-32 48c-7.4 11-4.4 25.9 6.7 33.3s25.9 4.4 33.3-6.7l32-48c7.4-11 4.4-25.9-6.7-33.3m96 0c-11-7.4-25.9-4.4-33.3 6.7l-32 48c-7.4 11-4.4 25.9 6.7 33.3s25.9 4.4 33.3-6.7l32-48c7.4-11 4.4-25.9-6.7-33.3m96 0c-11-7.4-25.9-4.4-33.3 6.7l-32 48c-7.4 11-4.4 25.9 6.7 33.3s25.9 4.4 33.3-6.7l32-48c7.4-11 4.4-25.9-6.7-33.3m96 0c-11-7.4-25.9-4.4-33.3 6.7l-32 48c-7.4 11-4.4 25.9 6.7 33.3s25.9 4.4 33.3-6.7l32-48c7.4-11 4.4-25.9-6.7-33.3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cloud-moon.svg��������������������0000664�0000000�0000000�00000001552�14753064456�0030052�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M495.8 0c5.5 0 10.9.2 16.3.7 7 .6 12.8 5.7 14.3 12.5s-1.6 13.9-7.7 17.3c-44.4 25.2-74.4 73-74.4 127.8 0 81 65.5 146.6 146.2 146.6 8.6 0 17-.7 25.1-2.1 6.9-1.2 13.8 2.2 17 8.5s1.9 13.8-3.1 18.7c-34.5 33.6-81.7 54.4-133.6 54.4-9.3 0-18.4-.7-27.4-1.9-11.2-22.6-29.8-40.9-52.6-51.7-2.7-58.5-50.3-105.3-109.2-106.7-1.7-10.4-2.6-21-2.6-31.8C304 86.1 389.8 0 495.8 0m-47.9 431.9c0 44.2-35.8 80-80 80H96c-53 0-96-43-96-96 0-47.6 34.6-87 80-94.6V320c0-53 43-96 96-96 34.9 0 65.4 18.6 82.2 46.4 13-9.1 28.8-14.4 45.8-14.4 44.2 0 80 35.8 80 80 0 5.9-.6 11.7-1.9 17.2 37.4 6.7 65.8 39.4 65.8 78.7"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cloud-rain.svg��������������������0000664�0000000�0000000�00000001701�14753064456�0030027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 320c-53 0-96-43-96-96 0-42.5 27.6-78.6 65.9-91.2-1.2-6.7-1.9-13.7-1.9-20.8C64 50.1 114.1 0 176 0c43.1 0 80.5 24.3 99.2 60 14.7-17.1 36.5-28 60.8-28 44.2 0 80 35.8 80 80 0 5.5-.6 10.8-1.6 16h1.6c53 0 96 43 96 96s-43 96-96 96zm-6.8 52c1.3-2.5 3.9-4 6.8-4s5.4 1.5 6.8 4l35.1 64.6c4.1 7.5 6.2 15.8 6.2 24.3v3c0 26.5-21.5 48-48 48s-48-21.5-48-48v-3c0-8.5 2.1-16.9 6.2-24.3zm160 0c1.3-2.5 3.9-4 6.8-4s5.4 1.5 6.8 4l35.1 64.6c4.1 7.5 6.2 15.8 6.2 24.3v3c0 26.5-21.5 48-48 48s-48-21.5-48-48v-3c0-8.5 2.1-16.9 6.2-24.3zm124.9 64.6 35.1-64.6c1.3-2.5 3.9-4 6.8-4s5.4 1.5 6.8 4l35.1 64.6c4.1 7.5 6.2 15.8 6.2 24.3v3c0 26.5-21.5 48-48 48s-48-21.5-48-48v-3c0-8.5 2.1-16.9 6.2-24.3z"/></svg>���������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cloud-showers-heavy.svg�����������0000664�0000000�0000000�00000002025�14753064456�0031702�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 320c-53 0-96-43-96-96 0-42.5 27.6-78.6 65.9-91.2-1.2-6.7-1.9-13.7-1.9-20.8C64 50.1 114.1 0 176 0c43.1 0 80.5 24.3 99.2 60 14.7-17.1 36.5-28 60.8-28 44.2 0 80 35.8 80 80 0 5.5-.6 10.8-1.6 16h1.6c53 0 96 43 96 96s-43 96-96 96zm-14.5 33.9c12.2 5.2 17.8 19.3 12.6 31.5l-48 112c-5.2 12.2-19.3 17.8-31.5 12.6s-17.9-19.3-12.7-31.5l48-112c5.2-12.2 19.3-17.8 31.5-12.6zm120 0c12.2 5.2 17.8 19.3 12.6 31.5l-48 112c-5.2 12.2-19.3 17.8-31.5 12.6s-17.8-19.3-12.6-31.5l48-112c5.2-12.2 19.3-17.8 31.5-12.6m244.6 31.5-48 112c-5.2 12.2-19.3 17.8-31.5 12.6s-17.8-19.3-12.6-31.5l48-112c5.2-12.2 19.3-17.8 31.5-12.6s17.8 19.3 12.6 31.5m-132.6-31.5c12.2 5.2 17.8 19.3 12.6 31.5l-48 112c-5.2 12.2-19.3 17.8-31.5 12.6s-17.8-19.3-12.6-31.5l48-112c5.2-12.2 19.3-17.8 31.5-12.6"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cloud-showers-water.svg�����������0000664�0000000�0000000�00000002750�14753064456�0031715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 0c38.6 0 71.9 22.8 87.2 55.7C325.7 41.1 345.8 32 368 32c38.7 0 71 27.5 78.4 64h1.6c35.3 0 64 28.7 64 64s-28.7 64-64 64H128c-35.3 0-64-28.7-64-64s28.7-64 64-64c0-53 43-96 96-96m-83.4 292.3-48 80c-6.8 11.4-21.6 15-32.9 8.2s-15.1-21.6-8.2-32.9l48-80c6.8-11.4 21.6-15.1 32.9-8.2s15.1 21.6 8.2 32.9m327.8-32.9c11.4 6.8 15 21.6 8.2 32.9l-48 80c-6.8 11.4-21.6 15-32.9 8.2s-15-21.6-8.2-32.9l48-80c6.8-11.4 21.6-15.1 32.9-8.2m-215.8 32.9-48 80c-6.8 11.4-21.6 15-32.9 8.2s-15.1-21.6-8.2-32.9l48-80c6.8-11.4 21.6-15.1 32.9-8.2s15.1 21.6 8.2 32.9m103.8-32.9c11.4 6.8 15 21.6 8.2 32.9l-48 80c-6.8 11.4-21.6 15-32.9 8.2s-15.1-21.6-8.2-32.9l48-80c6.8-11.4 21.6-15.1 32.9-8.2m-49.9 162.5c22.5 15.5 50 26.1 77.5 26.1 26.9 0 55.4-10.8 77.4-26.1 11.9-8.5 28.1-7.8 39.2 1.7 14.4 11.9 32.5 21 50.6 25.2 17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25-29 15.6-61.5 25.9-94.5 25.9-31.9 0-60.6-9.9-80.4-18.9-5.8-2.7-11.1-5.3-15.6-7.7-4.5 2.4-9.7 5.1-15.6 7.7-19.8 9-48.5 18.9-80.4 18.9-33 0-65.5-10.3-94.5-25.8-13.4 8.4-33.7 19.3-58.2 25-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2 11.1-9.4 27.3-10.1 39.2-1.7 22.1 15.2 50.5 26 77.4 26 27.5 0 55-10.6 77.5-26.1 11.1-7.9 25.9-7.9 37 0"/></svg>������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cloud-sun-rain.svg����������������0000664�0000000�0000000�00000003010�14753064456�0030625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M294.2 1.2c5.1 2.1 8.7 6.7 9.6 12.1l10.4 62.4c-23.3 10.8-42.9 28.4-56 50.3-14.6-9-31.8-14.1-50.2-14.1-53 0-96 43-96 96 0 35.5 19.3 66.6 48 83.2.8 31.8 13.2 60.7 33.1 82.7l-56 39.2c-4.5 3.2-10.3 3.8-15.4 1.6s-8.7-6.7-9.6-12.1l-14-84.6-84.7-14.1c-5.4-.9-10-4.5-12.1-9.6s-1.5-10.9 1.6-15.4L52.5 208 2.9 137.2c-3.2-4.5-3.8-10.3-1.6-15.4s6.7-8.7 12.1-9.6l84.7-14.1 14.1-84.7c.9-5.4 4.5-10 9.6-12.1s10.9-1.5 15.4 1.6L208 52.5l70.8-49.6c4.5-3.2 10.3-3.8 15.4-1.6zM208 144c13.8 0 26.7 4.4 37.1 11.9q-1.8 6.15-3 12.6c-37.9 14.6-67.2 46.6-77.8 86.4-12.5-11.8-20.3-28.4-20.3-46.9 0-35.3 28.7-64 64-64m69.4 276c11 7.4 14 22.3 6.7 33.3l-32 48c-7.4 11-22.3 14-33.3 6.7s-14-22.3-6.7-33.3l32-48c7.4-11 22.3-14 33.3-6.7m96 0c11 7.4 14 22.3 6.7 33.3l-32 48c-7.4 11-22.3 14-33.3 6.7s-14-22.3-6.7-33.3l32-48c7.4-11 22.3-14 33.3-6.7m96 0c11 7.4 14 22.3 6.7 33.3l-32 48c-7.4 11-22.3 14-33.3 6.7s-14-22.3-6.7-33.3l32-48c7.4-11 22.3-14 33.3-6.7m96 0c11 7.4 14 22.3 6.7 33.3l-32 48c-7.4 11-22.3 14-33.3 6.7s-14-22.3-6.7-33.3l32-48c7.4-11 22.3-14 33.3-6.7m74.5-116.1c0 44.2-35.8 80-80 80H288c-53 0-96-43-96-96 0-47.6 34.6-87 80-94.6V192c0-53 43-96 96-96 34.9 0 65.4 18.6 82.2 46.4 13-9.1 28.8-14.4 45.8-14.4 44.2 0 80 35.8 80 80 0 5.9-.6 11.7-1.9 17.2 37.4 6.7 65.8 39.4 65.8 78.7"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cloud-sun.svg���������������������0000664�0000000�0000000�00000002106�14753064456�0027703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M294.2 1.2c5.1 2.1 8.7 6.7 9.6 12.1L317.9 98l84.7 14.1c5.4.9 10 4.5 12.1 9.6s1.5 10.9-1.6 15.4l-38.5 55c-2.2-.1-4.4-.2-6.7-.2-23.3 0-45.1 6.2-64 17.1v-1.1c0-53-43-96-96-96s-96 43-96 96 43 96 96 96c8.1 0 15.9-1 23.4-2.9-36.6 18.1-63.3 53.1-69.8 94.9l-24.4 17c-4.5 3.2-10.3 3.8-15.4 1.6s-8.7-6.7-9.6-12.1l-14-84.5-84.7-14.1c-5.4-.9-10-4.5-12.1-9.6s-1.5-10.9 1.6-15.4L52.5 208 2.9 137.2c-3.2-4.5-3.8-10.3-1.6-15.4s6.7-8.7 12.1-9.6l84.7-14.1 14.1-84.7c.9-5.4 4.5-10 9.6-12.1s10.9-1.5 15.4 1.6L208 52.5l70.8-49.6c4.5-3.2 10.3-3.8 15.4-1.6zM144 208a64 64 0 1 1 128 0 64 64 0 1 1-128 0m495.9 223.9c0 44.2-35.8 80-80 80H288c-53 0-96-43-96-96 0-47.6 34.6-87 80-94.6V320c0-53 43-96 96-96 34.9 0 65.4 18.6 82.2 46.4 13-9.1 28.8-14.4 45.8-14.4 44.2 0 80 35.8 80 80 0 5.9-.6 11.7-1.9 17.2 37.4 6.7 65.8 39.4 65.8 78.7"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cloud.svg�������������������������0000664�0000000�0000000�00000001031�14753064456�0027074�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4 4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/clover.svg������������������������0000664�0000000�0000000�00000002703�14753064456�0027267�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M216.6 49.9C205.1 38.5 189.5 32 173.3 32 139.4 32 112 59.4 112 93.3v4.9c0 12 3.3 23.7 9.4 34l18.8 31.3c1.1 1.8 1.2 3.1 1 4.2-.2 1.2-.8 2.5-2 3.6s-2.4 1.8-3.6 2c-1 .2-2.4.1-4.2-1l-31.3-18.8c-10.3-6.2-22-9.4-34-9.4h-4.9C27.4 144 0 171.4 0 205.3c0 16.2 6.5 31.8 17.9 43.3l1.2 1.2c3.4 3.4 3.4 9 0 12.4l-1.2 1.2C6.5 274.9 0 290.5 0 306.7 0 340.6 27.4 368 61.3 368h4.9c12 0 23.7-3.3 34-9.4l31.3-18.8c1.8-1.1 3.1-1.2 4.2-1 1.2.2 2.5.8 3.6 2s1.8 2.4 2 3.6c.2 1 .1 2.4-1 4.2l-18.8 31.3c-6.2 10.3-9.4 22-9.4 34v4.9c0 33.8 27.4 61.3 61.3 61.3 16.2 0 31.8-6.5 43.3-17.9l1.2-1.2c3.4-3.4 9-3.4 12.4 0l1.2 1.2c11.5 11.5 27.1 17.9 43.3 17.9 33.8 0 61.3-27.4 61.3-61.3v-4.9c0-12-3.3-23.7-9.4-34l-18.8-31.3c-1.1-1.8-1.2-3.1-1-4.2.2-1.2.8-2.5 2-3.6s2.4-1.8 3.6-2c1-.2 2.4-.1 4.2 1l31.3 18.8c10.3 6.2 22 9.4 34 9.4h4.9c33.8 0 61.3-27.4 61.3-61.3 0-16.2-6.5-31.8-17.9-43.3l-1.2-1.2c-3.4-3.4-3.4-9 0-12.4l1.2-1.2c11.5-11.5 17.9-27.1 17.9-43.3 0-33.8-27.4-61.3-61.3-61.3H382c-12 0-23.7 3.3-34 9.4l-31.3 18.8c-1.8 1.1-3.1 1.2-4.2 1-1.2-.2-2.5-.8-3.6-2s-1.8-2.4-2-3.6c-.2-1-.1-2.4 1-4.2l18.8-31.3c6.2-10.3 9.4-22 9.4-34v-4.9C336 59.4 308.6 32 274.7 32c-16.2 0-31.8 6.5-43.3 17.9l-1.2 1.2c-3.4 3.4-9 3.4-12.4 0z"/></svg>�������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/code-branch.svg�������������������0000664�0000000�0000000�00000001427�14753064456�0030144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M80 104a24 24 0 1 0 0-48 24 24 0 1 0 0 48m80-24c0 32.8-19.7 61-48 73.3v87.8c18.8-10.9 40.7-17.1 64-17.1h96c35.3 0 64-28.7 64-64v-6.7c-28.3-12.3-48-40.5-48-73.3 0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3v6.7c0 70.7-57.3 128-128 128h-96c-35.3 0-64 28.7-64 64v6.7c28.3 12.3 48 40.5 48 73.3 0 44.2-35.8 80-80 80S0 476.2 0 432c0-32.8 19.7-61 48-73.3V153.3C19.7 141 0 112.8 0 80 0 35.8 35.8 0 80 0s80 35.8 80 80m232 0a24 24 0 1 0-48 0 24 24 0 1 0 48 0M80 456a24 24 0 1 0 0-48 24 24 0 1 0 0 48"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/code-commit.svg�������������������0000664�0000000�0000000�00000001002�14753064456�0030164�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 336a80 80 0 1 0 0-160 80 80 0 1 0 0 160m156.8-48C462 361 397.4 416 320 416s-142-55-156.8-128H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h131.2C178 151 242.6 96 320 96s142 55 156.8 128H608c17.7 0 32 14.3 32 32s-14.3 32-32 32z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/code-compare.svg������������������0000664�0000000�0000000�00000001713�14753064456�0030333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 488c0 9.5-5.6 18.1-14.2 21.9s-18.8 2.3-25.8-4.1l-80-72c-5.1-4.6-7.9-11-7.9-17.8s2.9-13.3 7.9-17.8l80-72c7-6.3 17.2-7.9 25.8-4.1S320 334.5 320 344v40h16c35.3 0 64-28.7 64-64V153.3c-28.3-12.3-48-40.5-48-73.3 0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V320c0 70.7-57.3 128-128 128h-16zM456 80a24 24 0 1 0-48 0 24 24 0 1 0 48 0M192 24c0-9.5 5.6-18.1 14.2-21.9S225-.2 232 6.2l80 72c5.1 4.6 7.9 11 7.9 17.8s-2.9 13.3-7.9 17.8l-80 72c-7 6.3-17.2 7.9-25.8 4.1S192 177.5 192 168v-40h-16c-35.3 0-64 28.7-64 64v166.7c28.3 12.3 48 40.5 48 73.3 0 44.2-35.8 80-80 80S0 476.2 0 432c0-32.8 19.7-61 48-73.3V192c0-70.7 57.3-128 128-128h16zM56 432a24 24 0 1 0 48 0 24 24 0 1 0-48 0"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/code-fork.svg���������������������0000664�0000000�0000000�00000001422�14753064456�0027643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M80 104a24 24 0 1 0 0-48 24 24 0 1 0 0 48m80-24c0 32.8-19.7 61-48 73.3V192c0 17.7 14.3 32 32 32h160c17.7 0 32-14.3 32-32v-38.7c-28.3-12.3-48-40.5-48-73.3 0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V192c0 53-43 96-96 96h-48v70.7c28.3 12.3 48 40.5 48 73.3 0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V288h-48c-53 0-96-43-96-96v-38.7C19.7 141 0 112.8 0 80 0 35.8 35.8 0 80 0s80 35.8 80 80m208 24a24 24 0 1 0 0-48 24 24 0 1 0 0 48M248 432a24 24 0 1 0-48 0 24 24 0 1 0 48 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/code-merge.svg��������������������0000664�0000000�0000000�00000001353�14753064456�0030004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M80 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48m32.4 97.2c28-12.4 47.6-40.5 47.6-73.2 0-44.2-35.8-80-80-80S0 35.8 0 80c0 32.8 19.7 61 48 73.3v205.3C19.7 371 0 399.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-32.8-19.7-61-48-73.3v-86.6c26.7 20.1 60 32 96 32h86.7c12.3 28.3 40.5 48 73.3 48 44.2 0 80-35.8 80-80s-35.8-80-80-80c-32.8 0-61 19.7-73.3 48L208 240c-49.9 0-91-38.1-95.6-86.8M80 408a24 24 0 1 1 0 48 24 24 0 1 1 0-48m264-136a24 24 0 1 1 48 0 24 24 0 1 1-48 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/code-pull-request.svg�������������0000664�0000000�0000000�00000001615�14753064456�0031350�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M305.8 2.1C314.4 5.9 320 14.5 320 24v40h16c70.7 0 128 57.3 128 128v166.7c28.3 12.3 48 40.5 48 73.3 0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V192c0-35.3-28.7-64-64-64h-16v40c0 9.5-5.6 18.1-14.2 21.9s-18.8 2.3-25.8-4.1l-80-72c-5.1-4.6-7.9-11-7.9-17.8s2.9-13.3 7.9-17.8l80-72c7-6.3 17.2-7.9 25.8-4.1M104 80a24 24 0 1 0-48 0 24 24 0 1 0 48 0m8 73.3v205.3c28.3 12.3 48 40.5 48 73.3 0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V153.3C19.7 141 0 112.8 0 80 0 35.8 35.8 0 80 0s80 35.8 80 80c0 32.8-19.7 61-48 73.3M104 432a24 24 0 1 0-48 0 24 24 0 1 0 48 0m328 24a24 24 0 1 0 0-48 24 24 0 1 0 0 48"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/code.svg��������������������������0000664�0000000�0000000�00000001355�14753064456�0026711�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M392.8 1.2c-17-4.9-34.7 5-39.6 22l-128 448c-4.9 17 5 34.7 22 39.6s34.7-5 39.6-22l128-448c4.9-17-5-34.7-22-39.6m80.6 120.1c-12.5 12.5-12.5 32.8 0 45.3l89.3 89.4-89.4 89.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l112-112c12.5-12.5 12.5-32.8 0-45.3l-112-112c-12.5-12.5-32.8-12.5-45.3 0zm-306.7 0c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3l112 112c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256l89.4-89.4c12.5-12.5 12.5-32.8 0-45.3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/coins.svg�������������������������0000664�0000000�0000000�00000003065�14753064456�0027112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M512 80c0 18-14.3 34.6-38.4 48-29.1 16.1-72.5 27.5-122.3 30.9-3.7-1.8-7.4-3.5-11.3-5-39.4-16.5-91.8-25.9-148-25.9-8.3 0-16.4.2-24.5.6l-1.1-.6C142.3 114.6 128 98 128 80c0-44.2 86-80 192-80s192 35.8 192 80m-351.3 81.1c10.2-.7 20.7-1.1 31.3-1.1 62.2 0 117.4 12.3 152.5 31.4 24.8 13.5 39.5 30.3 39.5 48.6q0 6-2.1 11.7c-4.6 13.2-17 25.3-35 35.5-.1.1-.3.1-.4.2-.3.2-.6.3-.9.5-35 19.4-90.8 32-153.6 32-59.6 0-112.9-11.3-148.2-29.1-1.9-.9-3.7-1.9-5.5-2.9C14.3 274.6 0 258 0 240c0-34.8 53.4-64.5 128-75.4 10.5-1.5 21.4-2.7 32.7-3.5M416 240c0-21.9-10.6-39.9-24.1-53.4 28.3-4.4 54.2-11.4 76.2-20.5 16.3-6.8 31.5-15.2 43.9-25.5V176c0 19.3-16.5 37.1-43.8 50.9-14.6 7.4-32.4 13.7-52.4 18.5.1-1.8.2-3.5.2-5.3zm-32 96c0 18-14.3 34.6-38.4 48-1.8 1-3.6 1.9-5.5 2.9C304.9 404.7 251.6 416 192 416c-62.8 0-118.6-12.6-153.6-32C14.3 370.6 0 354 0 336v-35.4c12.5 10.3 27.6 18.7 43.9 25.5C83.4 342.6 135.8 352 192 352s108.6-9.4 148.1-25.9c7.8-3.2 15.3-6.9 22.4-10.9 6.1-3.4 11.8-7.2 17.2-11.2 1.5-1.1 2.9-2.3 4.3-3.4V336m32 0v-57.9c19-4.2 36.5-9.5 52.1-16 16.3-6.8 31.5-15.2 43.9-25.5V272c0 10.5-5 21-14.9 30.9-16.3 16.3-45 29.7-81.3 38.4.1-1.7.2-3.5.2-5.3M192 448c56.2 0 108.6-9.4 148.1-25.9 16.3-6.8 31.5-15.2 43.9-25.5V432c0 44.2-86 80-192 80S0 476.2 0 432v-35.4c12.5 10.3 27.6 18.7 43.9 25.5C83.4 438.6 135.8 448 192 448"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/colon-sign.svg��������������������0000664�0000000�0000000�00000001740�14753064456�0030045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M255 39.8c4.3-17.1-6.1-34.5-23.3-38.8S197.2 7.1 193 24.2l-11.1 44.4C96.1 87.8 32 164.4 32 256c0 58.1 25.8 110.2 66.7 145.4L81 472.2c-4.3 17.1 6.1 34.5 23.3 38.8s34.5-6.1 38.8-23.3l13-52.1c9 3.4 18.4 6.2 28 8.2l-7.1 28.4c-4.3 17.1 6.1 34.5 23.3 38.8s34.5-6.1 38.8-23.3l10.4-41.4c33.4-4.4 64.1-17.4 89.8-36.7 14.1-10.6 17-30.7 6.4-44.8s-30.7-17-44.8-6.4c-10.2 7.7-21.7 13.9-34 18.3L321 160c9.4-.3 18.5-4.7 24.6-12.8 10.6-14.1 7.8-34.2-6.4-44.8l-3.3-2.4L351 39.8c4.3-17.1-6.1-34.5-23.3-38.8S293.2 7.1 289 24.2l-11.8 47.3c-9.3-2.7-18.8-4.6-28.6-5.9zm-91.8 103.5-45.9 183.5C103.9 306.5 96 282.2 96 256c0-48.7 27.2-91 67.2-112.7m8.6 229.5 61.1-244.6c9.9.7 19.5 2.5 28.7 5.3l-62 248.1c-9.7-1.9-19-4.8-27.8-8.8"/></svg>��������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/comment-dollar.svg����������������0000664�0000000�0000000�00000002503�14753064456�0030710�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 448c141.4 0 256-93.1 256-208S397.4 32 256 32 0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9-1.9 24.5-11.4 46.3-21.4 62.9-5.5 9.2-11.1 16.6-15.2 21.6-2.1 2.5-3.7 4.4-4.9 5.7-.6.6-1 1.1-1.3 1.4l-.3.3c-4.6 4.6-5.9 11.4-3.4 17.4s8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3 22.9-10 42.4-21.9 54.3-30.6 31.8 11.5 67 17.9 104.1 17.9zm20-312v13.9c7.5 1.2 14.6 2.9 21.1 4.7 10.7 2.8 17 13.8 14.2 24.5s-13.8 17-24.5 14.2c-11-2.9-21.6-5-31.2-5.2-7.9-.1-16 1.8-21.5 5-4.8 2.8-6.2 5.6-6.2 9.3 0 1.8.1 3.5 5.3 6.7 6.3 3.8 15.5 6.7 28.3 10.5l.7.2c11.2 3.4 25.6 7.7 37.1 15 12.9 8.1 24.3 21.3 24.6 41.6.3 20.9-10.5 36.1-24.8 45-7.2 4.5-15.2 7.3-23.2 9v13.8c0 11-9 20-20 20s-20-9-20-20v-14.6c-10.3-2.2-20-5.5-28.2-8.4-2.1-.7-4.1-1.4-6.1-2.1-10.5-3.5-16.1-14.8-12.6-25.3s14.8-16.1 25.3-12.6c2.5.8 4.9 1.7 7.2 2.4 13.6 4.6 24 8.1 35.1 8.5 8.6.3 16.5-1.6 21.4-4.7 4.1-2.5 6-5.5 5.9-10.5 0-2.9-.8-5-5.9-8.2-6.3-4-15.4-6.9-28-10.7l-1.7-.5c-10.9-3.3-24.6-7.4-35.6-14-12.7-7.7-24.6-20.5-24.7-40.7-.1-21.1 11.8-35.7 25.8-43.9 6.9-4.1 14.5-6.8 22.2-8.5v-14c0-11 9-20 20-20s20 9 20 20z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/comment-dots.svg������������������0000664�0000000�0000000�00000001341�14753064456�0030403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 448c141.4 0 256-93.1 256-208S397.4 32 256 32 0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9-1.9 24.5-11.4 46.3-21.4 62.9-5.5 9.2-11.1 16.6-15.2 21.6-2.1 2.5-3.7 4.4-4.9 5.7-.6.6-1 1.1-1.3 1.4l-.3.3c-4.6 4.6-5.9 11.4-3.4 17.4s8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3 22.9-10 42.4-21.9 54.3-30.6 31.8 11.5 67 17.9 104.1 17.9zM128 208a32 32 0 1 1 0 64 32 32 0 1 1 0-64m128 0a32 32 0 1 1 0 64 32 32 0 1 1 0-64m96 32a32 32 0 1 1 64 0 32 32 0 1 1-64 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/comment-medical.svg���������������0000664�0000000�0000000�00000001460�14753064456�0031032�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 448c141.4 0 256-93.1 256-208S397.4 32 256 32 0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9-1.9 24.5-11.4 46.3-21.4 62.9-5.5 9.2-11.1 16.6-15.2 21.6-2.1 2.5-3.7 4.4-4.9 5.7-.6.6-1 1.1-1.3 1.4l-.3.3c-4.6 4.6-5.9 11.4-3.4 17.4s8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3 22.9-10 42.4-21.9 54.3-30.6 31.8 11.5 67 17.9 104.1 17.9zm-32-288c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-48h-48c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16h48z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/comment-nodes.svg�����������������0000664�0000000�0000000�00000002256�14753064456�0030550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 448c10.8 0 21.5-.5 32-1.6.3-15.8 4.4-31.7 12.9-46.4 16-27.7 43.7-44.4 73.2-47.5l16.7-29.2c-4.3-11-6.7-22.9-6.7-35.4 0-53 43-96 96-96 9.1 0 17.8 1.3 26.2 3.6C481.1 102.1 378.6 32 256 32 114.6 32 0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9-1.9 24.5-11.4 46.3-21.4 62.9-5.5 9.2-11.1 16.6-15.2 21.6-2.1 2.5-3.7 4.4-4.9 5.7-.2.3-.4.5-.6.7-.3.3-.5.5-.6.7l-.3.3c-4.6 4.6-5.9 11.4-3.4 17.4s8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3 22.9-10 42.4-21.9 54.3-30.6 31.8 11.5 67 17.9 104.1 17.9zm72.6-32c-17.7 30.6-7.2 69.7 23.4 87.4s69.7 7.2 87.4-23.4c1.5-2.6 2.8-5.3 3.9-8h73.3c1.1 2.7 2.4 5.4 3.9 8 17.7 30.6 56.8 41.1 87.4 23.4s41.1-56.8 23.4-87.4c-13.4-23.2-39.1-34.8-64-31.4l-17.6-30.7c-11 11.7-25 20.6-40.6 25.6l16.5 28.9q-5.7 7.2-9 15.6h-73.4c-2.2-5.6-5.3-10.8-9-15.6l33-57.7c4.1.8 8.4 1.3 12.8 1.3 35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64c0 13.4 4.1 25.8 11.2 36.1l-34.6 60.5c-25-3.4-50.6 8.3-64 31.4"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/comment-slash.svg�����������������0000664�0000000�0000000�00000001476�14753064456�0030555�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2s-6.3 25.5 4.1 33.7l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-117.9-92.4C552.2 340.2 576 292.3 576 240c0-114.9-114.6-208-256-208-67.7 0-129.3 21.4-175.1 56.3zm385.2 425L82.9 161.3C70.7 185.6 64 212.2 64 240c0 45.1 17.7 86.8 47.7 120.9-1.9 24.5-11.4 46.3-21.4 62.9-5.5 9.2-11.1 16.6-15.2 21.6-2.1 2.5-3.7 4.4-4.9 5.7-.6.6-1 1.1-1.3 1.4l-.3.3c-4.6 4.6-5.9 11.4-3.4 17.4s8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3 22.9-10 42.4-21.9 54.3-30.6 31.8 11.5 67 17.9 104.1 17.9 37 0 72.3-6.4 104.1-17.9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/comment-sms.svg�������������������0000664�0000000�0000000�00000002730�14753064456�0030237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 448c141.4 0 256-93.1 256-208S397.4 32 256 32 0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9-1.9 24.5-11.4 46.3-21.4 62.9-5.5 9.2-11.1 16.6-15.2 21.6-2.1 2.5-3.7 4.4-4.9 5.7-.6.6-1 1.1-1.3 1.4l-.3.3c-4.6 4.6-5.9 11.4-3.4 17.4s8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3 22.9-10 42.4-21.9 54.3-30.6 31.8 11.5 67 17.9 104.1 17.9zM96 212.8c0-20.3 16.5-36.8 36.8-36.8H152c8.8 0 16 7.2 16 16s-7.2 16-16 16h-19.2c-2.7 0-4.8 2.2-4.8 4.8 0 1.6.8 3.1 2.2 4l29.4 19.6c10.3 6.8 16.4 18.3 16.4 30.7 0 20.3-16.5 36.8-36.8 36.8l-27.2.1c-8.8 0-16-7.2-16-16s7.2-16 16-16h27.2c2.7 0 4.8-2.2 4.8-4.8 0-1.6-.8-3.1-2.2-4l-29.4-19.6c-10.2-6.9-16.4-18.4-16.4-30.8M372.8 176H392c8.8 0 16 7.2 16 16s-7.2 16-16 16h-19.2c-2.7 0-4.8 2.2-4.8 4.8 0 1.6.8 3.1 2.2 4l29.4 19.6c10.2 6.8 16.4 18.3 16.4 30.7 0 20.3-16.5 36.8-36.8 36.8l-27.2.1c-8.8 0-16-7.2-16-16s7.2-16 16-16h27.2c2.7 0 4.8-2.2 4.8-4.8 0-1.6-.8-3.1-2.2-4l-29.4-19.6c-10.2-6.8-16.4-18.3-16.4-30.7 0-20.3 16.5-36.8 36.8-36.8zm-152 6.4 35.2 46.9 35.2-46.9c4.1-5.5 11.3-7.8 17.9-5.6S320 185.1 320 192v96c0 8.8-7.2 16-16 16s-16-7.2-16-16v-48l-19.2 25.6c-3 4-7.8 6.4-12.8 6.4s-9.8-2.4-12.8-6.4L224 240v48c0 8.8-7.2 16-16 16s-16-7.2-16-16v-96c0-6.9 4.4-13 10.9-15.2s13.7.1 17.9 5.6"/></svg>����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/comment.svg�����������������������0000664�0000000�0000000�00000001153�14753064456�0027435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M512 240c0 114.9-114.6 208-256 208-37.1 0-72.3-6.4-104.1-17.9-11.9 8.7-31.3 20.6-54.3 30.6C73.6 471.1 44.7 480 16 480c-6.5 0-12.3-3.9-14.8-9.9s-1.1-12.8 3.4-17.4l.3-.3c.3-.3.7-.7 1.3-1.4 1.1-1.2 2.8-3.1 4.9-5.7 4.1-5 9.6-12.4 15.2-21.6 10-16.6 19.5-38.4 21.4-62.9C17.7 326.8 0 285.1 0 240 0 125.1 114.6 32 256 32s256 93.1 256 208"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/comments-dollar.svg���������������0000664�0000000�0000000�00000003237�14753064456�0031100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M416 176c0 97.2-93.1 176-208 176-38.2 0-73.9-8.7-104.7-23.9-7.5 4-16 7.9-25.2 11.4C59.8 346.4 37.8 352 16 352c-6.9 0-13.1-4.5-15.2-11.1S1 327.1 6.6 323l.2-.2c.2-.2.6-.4 1.1-.8 1-.8 2.5-2 4.3-3.7 3.6-3.3 8.5-8.1 13.3-14.3 5.5-7 10.7-15.4 14.2-24.7C14.7 250.3 0 214.6 0 176 0 78.8 93.1 0 208 0s208 78.8 208 176M231.5 383C348.9 372.9 448 288.3 448 176c0-5.2-.2-10.4-.6-15.5C555.1 167.1 640 243.2 640 336c0 38.6-14.7 74.3-39.6 103.4 3.5 9.4 8.7 17.7 14.2 24.7 4.8 6.2 9.7 11 13.3 14.3 1.8 1.6 3.3 2.9 4.3 3.7.5.4.9.7 1.1.8l.2.2c5.6 4.1 7.9 11.3 5.8 17.9s-8.3 11.1-15.2 11.1c-21.8 0-43.8-5.6-62.1-12.5-9.2-3.5-17.8-7.4-25.2-11.4C505.9 503.3 470.2 512 432 512c-95.6 0-176.2-54.6-200.5-129M228 72c0-11-9-20-20-20s-20 9-20 20v14c-7.6 1.7-15.2 4.4-22.2 8.5-13.9 8.3-25.9 22.8-25.8 43.9.1 20.3 12 33.1 24.7 40.7 11 6.6 24.7 10.8 35.6 14l1.7.5c12.6 3.8 21.8 6.8 28 10.7 5.1 3.2 5.8 5.4 5.9 8.2.1 5-1.8 8-5.9 10.5-5 3.1-12.9 5-21.4 4.7-11.1-.4-21.5-3.9-35.1-8.5q-3.45-1.2-7.2-2.4c-10.5-3.5-21.8 2.2-25.3 12.6s2.2 21.8 12.6 25.3c1.9.6 4 1.3 6.1 2.1 8.3 2.9 17.9 6.2 28.2 8.4v14.6c0 11 9 20 20 20s20-9 20-20V266c8-1.7 16-4.5 23.2-9 14.3-8.9 25.1-24.1 24.8-45-.3-20.3-11.7-33.4-24.6-41.6-11.5-7.2-25.9-11.6-37.1-15l-.7-.2c-12.8-3.9-21.9-6.7-28.3-10.5-5.2-3.1-5.3-4.9-5.3-6.7 0-3.7 1.4-6.5 6.2-9.3 5.4-3.2 13.6-5.1 21.5-5 9.6.1 20.2 2.2 31.2 5.2 10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-6.5-1.7-13.7-3.4-21.1-4.7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/comments.svg����������������������0000664�0000000�0000000�00000001707�14753064456�0027625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M208 352c114.9 0 208-78.8 208-176S322.9 0 208 0 0 78.8 0 176c0 38.6 14.7 74.3 39.6 103.4-3.5 9.4-8.7 17.7-14.2 24.7-4.8 6.2-9.7 11-13.3 14.3-1.8 1.6-3.3 2.9-4.3 3.7-.5.4-.9.7-1.1.8l-.2.2C1 327.2-1.4 334.4.8 340.9S9.1 352 16 352c21.8 0 43.8-5.6 62.1-12.5 9.2-3.5 17.8-7.4 25.2-11.4C134.1 343.3 169.8 352 208 352m240-176c0 112.3-99.1 196.9-216.5 207 24.3 74.4 104.9 129 200.5 129 38.2 0 73.9-8.7 104.7-23.9 7.5 4 16 7.9 25.2 11.4 18.3 6.9 40.3 12.5 62.1 12.5 6.9 0 13.1-4.5 15.2-11.1s-.2-13.8-5.8-17.9l-.2-.2c-.2-.2-.6-.4-1.1-.8-1-.8-2.5-2-4.3-3.7-3.6-3.3-8.5-8.1-13.3-14.3-5.5-7-10.7-15.4-14.2-24.7 24.9-29 39.6-64.7 39.6-103.4 0-92.8-84.9-168.9-192.6-175.5.4 5.1.6 10.3.6 15.5z"/></svg>���������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/compact-disc.svg������������������0000664�0000000�0000000�00000001100�14753064456�0030331�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m256 32a32 32 0 1 1 0-64 32 32 0 1 1 0 64m-96-32a96 96 0 1 0 192 0 96 96 0 1 0-192 0m-64-16c0-35 17.5-71.1 45.2-98.8S205 96 240 96c8.8 0 16-7.2 16-16s-7.2-16-16-16c-45.4 0-89.2 22.3-121.5 54.5S64 194.6 64 240c0 8.8 7.2 16 16 16s16-7.2 16-16"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/compass-drafting.svg��������������0000664�0000000�0000000�00000001776�14753064456�0031247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M352 96c0 14.3-3.1 27.9-8.8 40.2l52.8 91.2c-23.7 25.3-54.2 44.1-88.5 53.6L256 192l-68 117.5c21.5 6.8 44.3 10.5 68.1 10.5 70.7 0 133.8-32.7 174.9-84 11.1-13.8 31.2-16 45-5s16 31.2 5 45c-52.9 65.8-134 108-225 108-35.4 0-69.4-6.4-100.7-18.1l-56.6 97.8c-4.7 8.1-11.7 14.7-20.1 18.9l-55.4 27.7c-5 2.5-10.9 2.2-15.6-.7S0 501.5 0 496v-55.4c0-8.4 2.2-16.7 6.5-24.1l60-103.7c-12.8-11.2-24.7-23.5-35.3-36.8-11.1-13.8-8.8-33.9 5-45s33.9-8.8 45 5c5.7 7.1 11.8 13.8 18.2 20.1l69.4-119.9C163.2 124 160 110.4 160 96c0-53 43-96 96-96s96 43 96 96m21 297.9c32.6-12.8 62.5-30.8 88.9-52.9l43.7 75.5c4.2 7.3 6.5 15.6 6.5 24.1V496c0 5.5-2.9 10.7-7.6 13.6s-10.6 3.2-15.6.7l-55.4-27.7c-8.4-4.2-15.4-10.8-20.1-18.9zM256 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64"/></svg>��mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/compass.svg�����������������������0000664�0000000�0000000�00000001036�14753064456�0027440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m50.7-186.9-144.3 55.5c-19.4 7.5-38.5-11.6-31-31l55.5-144.3c3.3-8.5 9.9-15.1 18.4-18.4l144.3-55.5c19.4-7.5 38.5 11.6 31 31l-55.5 144.3c-3.2 8.5-9.9 15.1-18.4 18.4M288 256a32 32 0 1 0-64 0 32 32 0 1 0 64 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/compress.svg����������������������0000664�0000000�0000000�00000001334�14753064456�0027627�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 64c0-17.7-14.3-32-32-32S96 46.3 96 64v64H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32zM32 320c-17.7 0-32 14.3-32 32s14.3 32 32 32h64v64c0 17.7 14.3 32 32 32s32-14.3 32-32v-96c0-17.7-14.3-32-32-32zM352 64c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7 14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32h-64zm-32 256c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32s32-14.3 32-32v-64h64c17.7 0 32-14.3 32-32s-14.3-32-32-32z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/computer-mouse.svg����������������0000664�0000000�0000000�00000000664�14753064456�0030765�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 192h176V0h-16C71.6 0 0 71.6 0 160zm0 32v128c0 88.4 71.6 160 160 160h64c88.4 0 160-71.6 160-160V224H0m384-32v-32C384 71.6 312.4 0 224 0h-16v192z"/></svg>����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/computer.svg����������������������0000664�0000000�0000000�00000001472�14753064456�0027635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 96v224H64V96zM64 32C28.7 32 0 60.7 0 96v224c0 35.3 28.7 64 64 64h117.3l-10.7 32H96c-17.7 0-32 14.3-32 32s14.3 32 32 32h256c17.7 0 32-14.3 32-32s-14.3-32-32-32h-74.7l-10.7-32H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm464 0c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h64c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm16 64h32c8.8 0 16 7.2 16 16s-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16s7.2-16 16-16m-16 80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16s-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16m32 160a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cookie-bite.svg�������������������0000664�0000000�0000000�00000001522�14753064456�0030165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M257.5 27.6c-.8-5.4-4.9-9.8-10.3-10.6-22.1-3.1-44.6.9-64.4 11.4l-74 39.5c-19.7 10.5-35.6 27-45.4 47.1l-36.7 75.6c-9.8 20.1-13 42.9-9.1 64.9l14.5 82.8c3.9 22.1 14.6 42.3 30.7 57.9l60.3 58.4c16.1 15.6 36.6 25.6 58.7 28.7l83 11.7c22.1 3.1 44.6-.9 64.4-11.4l74-39.5c19.7-10.5 35.6-27 45.4-47.2l36.7-75.5c9.8-20.1 13-42.9 9.1-64.9-.9-5.3-5.3-9.3-10.6-10.1-51.5-8.2-92.8-47.1-104.5-97.4-1.8-7.6-8-13.4-15.7-14.6-54.6-8.7-97.7-52-106.2-106.8zM208 144a32 32 0 1 1 0 64 32 32 0 1 1 0-64m-64 192a32 32 0 1 1 64 0 32 32 0 1 1-64 0m224-64a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cookie.svg������������������������0000664�0000000�0000000�00000001435�14753064456�0027247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M247.2 17c-22.1-3.1-44.6.9-64.4 11.4l-74 39.5c-19.7 10.5-35.6 27-45.4 47.1l-36.7 75.6c-9.8 20.1-13 42.9-9.1 64.9l14.5 82.8c3.9 22.1 14.6 42.3 30.7 57.9l60.3 58.4c16.1 15.6 36.6 25.6 58.7 28.7l83 11.7c22.1 3.1 44.6-.9 64.4-11.4l74-39.5c19.7-10.5 35.6-27 45.4-47.2l36.7-75.5c9.8-20.1 13-42.9 9.1-64.9l-14.6-82.8c-3.9-22.1-14.6-42.3-30.7-57.9l-60.2-58.3c-16.1-15.6-36.6-25.6-58.7-28.7zM208 144a32 32 0 1 1 0 64 32 32 0 1 1 0-64m-64 192a32 32 0 1 1 64 0 32 32 0 1 1-64 0m224-64a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/copy.svg��������������������������0000664�0000000�0000000�00000001034�14753064456�0026743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M208 0h124.1C344.8 0 357 5.1 366 14.1L433.9 82c9 9 14.1 21.2 14.1 33.9V336c0 26.5-21.5 48-48 48H208c-26.5 0-48-21.5-48-48V48c0-26.5 21.5-48 48-48M48 128h80v64H64v256h192v-32h64v48c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/copyright.svg���������������������0000664�0000000�0000000�00000001053�14753064456�0030002�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m-56.6-199.4c31.2 31.2 81.9 31.2 113.1 0 9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9c-50 50-131 50-181 0s-50-131 0-181 131-50 181 0c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0c-31.2-31.2-81.9-31.2-113.1 0s-31.2 81.9 0 113.1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/couch.svg�������������������������0000664�0000000�0000000�00000001236�14753064456�0027076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 160c0-70.7 57.3-128 128-128h256c70.7 0 128 57.3 128 128v33.6c-36.5 7.4-64 39.7-64 78.4v48H128v-48c0-38.7-27.5-71-64-78.4zm480 112c0-20.9 13.4-38.7 32-45.3 5-1.8 10.4-2.7 16-2.7 26.5 0 48 21.5 48 48v176c0 17.7-14.3 32-32 32h-32c-17.7 0-32-14.3-32-32H96c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V272c0-26.5 21.5-48 48-48 5.6 0 11 1 16 2.7 18.6 6.6 32 24.4 32 45.3v80h448v-80"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cow.svg���������������������������0000664�0000000�0000000�00000002242�14753064456�0026563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 224v192c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32v-88.2c9.9 6.6 20.6 12 32 16.1v24.2c0 8.8 7.2 16 16 16s16-7.2 16-16v-16.9c5.3.6 10.6.9 16 .9s10.7-.3 16-.9v16.9c0 8.8 7.2 16 16 16s16-7.2 16-16v-24.2c11.4-4 22.1-9.4 32-16.1V416c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V256l32 32v49.5c0 9.5 2.8 18.7 8.1 26.6L530 427c8.8 13.1 23.5 21 39.3 21 22.5 0 41.9-15.9 46.3-38l20.3-101.6c2.6-13-.3-26.5-8-37.3l-3.9-5.5V184c0-13.3-10.7-24-24-24s-24 10.7-24 24v14.4l-52.9-74.1C496 86.5 452.4 64 405.9 64H144C77.7 64 24 117.7 24 184v54C9.4 249.8 0 267.8 0 288v17.6c0 8 6.4 14.4 14.4 14.4 31.8 0 57.6-25.8 57.6-57.6V184c0-24.3 12.1-45.8 30.5-58.9-4.2 10.8-6.5 22.6-6.5 34.9zm464 112a16 16 0 1 1 32 0 16 16 0 1 1-32 0M166.6 166.6c-4.2-4.2-6.6-10-6.6-16 0-12.5 10.1-22.6 22.6-22.6h178.7c12.5 0 22.6 10.1 22.6 22.6 0 6-2.4 11.8-6.6 16L353.9 190c-21.7 21.8-51.2 34-81.9 34s-60.2-12.2-81.9-33.9l-23.4-23.4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/credit-card.svg�������������������0000664�0000000�0000000�00000001101�14753064456�0030145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v32h576V96c0-35.3-28.7-64-64-64zm512 192H0v192c0 35.3 28.7 64 64 64h448c35.3 0 64-28.7 64-64zM112 352h64c8.8 0 16 7.2 16 16s-7.2 16-16 16h-64c-8.8 0-16-7.2-16-16s7.2-16 16-16m112 16c0-8.8 7.2-16 16-16h128c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-8.8 0-16-7.2-16-16"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/crop-simple.svg�������������������0000664�0000000�0000000�00000001034�14753064456�0030223�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 32c0-17.7-14.3-32-32-32S64 14.3 64 32v32H32C14.3 64 0 78.3 0 96s14.3 32 32 32h32v256c0 35.3 28.7 64 64 64h224v-64H128zm256 448c0 17.7 14.3 32 32 32s32-14.3 32-32v-32h32c17.7 0 32-14.3 32-32s-14.3-32-32-32h-32V128c0-35.3-28.7-64-64-64H160v64h224z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/crop.svg��������������������������0000664�0000000�0000000�00000001134�14753064456�0026735�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m448 109.3 54.6-54.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L402.7 64H160v64h178.7L128 338.7V32c0-17.7-14.3-32-32-32S64 14.3 64 32v32H32C14.3 64 0 78.3 0 96s14.3 32 32 32h32v256c0 35.3 28.7 64 64 64h224v-64H173.3L384 173.3V480c0 17.7 14.3 32 32 32s32-14.3 32-32v-32h32c17.7 0 32-14.3 32-32s-14.3-32-32-32h-32z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cross.svg�������������������������0000664�0000000�0000000�00000000770�14753064456�0027130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M176 0c-26.5 0-48 21.5-48 48v80H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h80v208c0 26.5 21.5 48 48 48h32c26.5 0 48-21.5 48-48V256h80c26.5 0 48-21.5 48-48v-32c0-26.5-21.5-48-48-48h-80V48c0-26.5-21.5-48-48-48z"/></svg>��������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/crosshairs.svg��������������������0000664�0000000�0000000�00000001712�14753064456�0030154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 0c17.7 0 32 14.3 32 32v10.4c93.7 13.9 167.7 88 181.6 181.6H480c17.7 0 32 14.3 32 32s-14.3 32-32 32h-10.4c-13.9 93.7-88 167.7-181.6 181.6V480c0 17.7-14.3 32-32 32s-32-14.3-32-32v-10.4C130.3 455.7 56.3 381.7 42.4 288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h10.4C56.3 130.3 130.3 56.3 224 42.4V32c0-17.7 14.3-32 32-32M107.4 288c12.5 58.3 58.4 104.1 116.6 116.6V384c0-17.7 14.3-32 32-32s32 14.3 32 32v20.6c58.3-12.5 104.1-58.4 116.6-116.6H384c-17.7 0-32-14.3-32-32s14.3-32 32-32h20.6c-12.5-58.3-58.3-104.1-116.6-116.6V128c0 17.7-14.3 32-32 32s-32-14.3-32-32v-20.6c-58.3 12.5-104.1 58.3-116.6 116.6H128c17.7 0 32 14.3 32 32s-14.3 32-32 32zM256 224a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/crow.svg��������������������������0000664�0000000�0000000�00000001273�14753064456�0026750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M456 0c-48.6 0-88 39.4-88 88v29.2L12.5 390.6c-14 10.8-16.6 30.9-5.9 44.9s30.9 16.6 44.9 5.9l74.6-57.4h133.1l46.6 113.1c5 12.3 19.1 18.1 31.3 13.1s18.1-19.1 13.1-31.3L311.1 384h44.1l46.6 113.2c5 12.3 19.1 18.1 31.3 13.1s18.1-19.1 13.1-31.3l-42-102C484.9 354.1 544 280 544 192v-72l80.5-20.1c8.6-2.1 13.8-10.8 11.6-19.4C629 52 603.4 32 574 32h-50.1C507.7 12.5 483.3 0 456 0m0 64a24 24 0 1 1 0 48 24 24 0 1 1 0-48"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/crown.svg�������������������������0000664�0000000�0000000�00000001250�14753064456�0027121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M309 106c11.4-7 19-19.7 19-34 0-22.1-17.9-40-40-40s-40 17.9-40 40c0 14.4 7.6 27 19 34l-57.3 114.6c-9.1 18.2-32.7 23.4-48.6 10.7L72 160c5-6.7 8-15 8-24 0-22.1-17.9-40-40-40S0 113.9 0 136s17.9 40 40 40h.7l45.7 251.4c5.5 30.4 32 52.6 63 52.6h277.2c30.9 0 57.4-22.1 63-52.6L535.3 176h.7c22.1 0 40-17.9 40-40s-17.9-40-40-40-40 17.9-40 40c0 9 3 17.3 8 24l-89.1 71.3c-15.9 12.7-39.5 7.5-48.6-10.7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/crutch.svg������������������������0000664�0000000�0000000�00000001466�14753064456�0027272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M297.4 9.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0m-96 144-34.8 34.8c-12.9 12.9-21.9 29.2-25.8 47.1l-24 107.6c-1.3 5.9-4.3 11.4-8.6 15.7L9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l98.8-98.8c4.3-4.3 9.7-7.3 15.7-8.6l107.6-23.9c17.8-4 34.1-12.9 47.1-25.8l34.7-34.7.1-.1.1-.1 74.6-74.6-45.3-45.3-52.1 51.9-66.7-66.7 52.1-52.1-45.3-45.3-74.7 74.7zm22.6 67.9 66.7 66.7-12.2 12.2c-4.3 4.3-9.7 7.3-15.7 8.6l-76.7 17 17-76.7c1.3-5.9 4.3-11.4 8.6-15.7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cruzeiro-sign.svg�����������������0000664�0000000�0000000�00000001462�14753064456�0030576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 256c0-88.4 71.6-160 160-160 41 0 78.3 15.4 106.7 40.7 13.2 11.8 33.4 10.7 45.2-2.5s10.7-33.4-2.5-45.2c-39.6-35.5-92-57-149.3-57C132.3 32 32 132.3 32 256s100.3 224 224 224c57.4 0 109.7-21.6 149.3-57 13.2-11.8 14.3-32 2.5-45.2s-32-14.3-45.2-2.5C334.3 400.6 297 416 256 416V311.3c0-12.8 10.4-23.3 23.3-23.3 4.6 0 9.1 1.4 12.9 3.9l10.1 6.7c14.7 9.8 34.6 5.8 44.4-8.9s5.8-34.6-8.9-44.4l-10.1-6.7c-14.3-9.6-31.2-14.7-48.4-14.7-12.4 0-24.2 2.6-34.9 7.3-5.5-4.5-12.6-7.3-20.3-7.3-17.7 0-32 14.3-32 32v146.7C135.5 378 96 321.6 96 256"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cube.svg��������������������������0000664�0000000�0000000�00000001051�14753064456�0026706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M234.5 5.7c13.9-5 29.1-5 43.1 0l192 68.6c25.4 9.1 42.4 33.2 42.4 60.3v242.9c0 27-17 51.2-42.5 60.3l-192 68.6c-13.9 5-29.1 5-43.1 0l-192-68.6C17 428.6 0 404.5 0 377.4V134.6c0-27 17-51.2 42.5-60.3zM256 66 82.3 128 256 190l173.7-62zm32 368.6 160-57.1v-188l-160 57.1z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cubes-stacked.svg�����������������0000664�0000000�0000000�00000001705�14753064456�0030513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 64v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32M82.7 207c-15.3 8.8-20.5 28.4-11.7 43.7l32 55.4c8.8 15.3 28.4 20.5 43.7 11.7l55.4-32c15.3-8.8 20.5-28.4 11.7-43.7l-32-55.4c-8.8-15.3-28.4-20.5-43.7-11.7zM288 192c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32v-64c0-17.7-14.3-32-32-32zm64 160c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32v-64c0-17.7-14.3-32-32-32zm-192 32v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32v-64c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32M32 352c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32v-64c0-17.7-14.3-32-32-32z"/></svg>�����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/cubes.svg�������������������������0000664�0000000�0000000�00000001770�14753064456�0027101�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m290.8 48.6 78.4 29.7-81.2 31.2-81.2-31.2 78.4-29.7c1.8-.7 3.8-.7 5.7 0zM136 92.5v112.2c-1.3.4-2.6.8-3.9 1.3l-96 36.4C14.4 250.6 0 271.5 0 294.7v119.2c0 22.2 13.1 42.3 33.5 51.3l96 42.2c14.4 6.3 30.7 6.3 45.1 0L288 457.5l113.5 49.9c14.4 6.3 30.7 6.3 45.1 0l96-42.2c20.3-8.9 33.5-29.1 33.5-51.3V294.8c0-23.3-14.4-44.1-36.1-52.4L444 206c-1.3-.5-2.6-.9-3.9-1.3V92.5c0-23.3-14.4-44.1-36.1-52.4L308 3.7c-12.8-4.8-26.9-4.8-39.7 0l-96 36.4C150.4 48.4 136 69.3 136 92.5m256 118.1-82.4 31.2v-89.2L392 121zm-237.2 40.3 78.4 29.7-81.2 31.1-81.2-31.1 78.4-29.7c1.8-.7 3.8-.7 5.7 0zm18.8 204.4V354.8l82.4-31.6v95.9zm247.6-204.4c1.8-.7 3.8-.7 5.7 0l78.4 29.7-81.3 31.1-81.2-31.1zm102 170.3-77.6 34.1V354.8l82.4-31.6v90.7c0 3.2-1.9 6-4.8 7.3"/></svg>��������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/d.svg�����������������������������0000664�0000000�0000000�00000000675�14753064456�0026226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96c0-35.3 28.7-64 64-64h96c123.7 0 224 100.3 224 224S283.7 480 160 480H64c-35.3 0-64-28.7-64-64zm160 0H64v320h96c88.4 0 160-71.6 160-160S248.4 96 160 96"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/database.svg����������������������0000664�0000000�0000000�00000001274�14753064456�0027543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 80v48c0 44.2-100.3 80-224 80S0 172.2 0 128V80C0 35.8 100.3 0 224 0s224 35.8 224 80m-54.8 134.7c20.8-7.4 39.9-16.9 54.8-28.6V288c0 44.2-100.3 80-224 80S0 332.2 0 288V186.1c14.9 11.8 34 21.2 54.8 28.6C99.7 230.7 159.5 240 224 240s124.3-9.3 169.2-25.3M0 346.1c14.9 11.8 34 21.2 54.8 28.6C99.7 390.7 159.5 400 224 400s124.3-9.3 169.2-25.3c20.8-7.4 39.9-16.9 54.8-28.6V432c0 44.2-100.3 80-224 80S0 476.2 0 432z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/delete-left.svg�������������������0000664�0000000�0000000�00000001265�14753064456�0030171�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M576 128c0-35.3-28.7-64-64-64H205.3c-17 0-33.3 6.7-45.3 18.7L9.4 233.4c-6 6-9.4 14.1-9.4 22.6s3.4 16.6 9.4 22.6L160 429.3c12 12 28.3 18.7 45.3 18.7H512c35.3 0 64-28.7 64-64zm-305 47c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/democrat.svg����������������������0000664�0000000�0000000�00000003345�14753064456�0027576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32c0-8.9 3.8-20.9 6.2-27.3C71.2 1.8 74 0 77 0c1.9 0 3.8.7 5.2 2.1L128 45.7l45.8-43.6C175.2.7 177.1 0 179 0c3 0 5.8 1.8 6.8 4.7 2.4 6.5 6.2 18.4 6.2 27.3 0 26.5-21.9 42-29.5 46.6l76.2 72.6c6 5.7 13.9 8.8 22.1 8.8H512c40.3 0 78.2 19 102.4 51.2l19.2 25.6c10.6 14.1 7.7 34.2-6.4 44.8s-34.2 7.7-44.8-6.4l-19.2-25.6c-5.3-7-11.8-12.8-19.2-17V320H192l-40.4-94.3c-3.9-9.2-15.3-12.6-23.6-7l-42.1 28c-9.1 6.1-19.7 9.3-30.7 9.3h-2C23.9 256 0 232.1 0 202.7c0-12.1 4.1-23.8 11.7-33.3l75.9-94.8C78.1 67.4 64 53.2 64 32m384 320h96v128c0 17.7-14.3 32-32 32h-32c-17.7 0-32-14.3-32-32v-64H288v64c0 17.7-14.3 32-32 32h-32c-17.7 0-32-14.3-32-32V352h256M260.9 210.9c-.9-1.8-2.8-2.9-4.8-2.9s-3.9 1.1-4.8 2.9l-10.5 20.5-23.5 3.3c-2 .3-3.7 1.6-4.3 3.5s-.1 3.9 1.3 5.3l17 16-4 22.6c-.3 1.9.5 3.9 2.1 5s3.8 1.3 5.6.4l21-10.7 21 10.7c1.8.9 4 .8 5.6-.4s2.5-3.1 2.1-5l-4-22.6 17-16c1.5-1.4 2-3.4 1.3-5.3s-2.3-3.2-4.3-3.5l-23.5-3.3-10.5-20.5zm107.2-2.9c-2 0-3.9 1.1-4.8 2.9l-10.5 20.5-23.5 3.3c-2 .3-3.7 1.6-4.3 3.5s-.1 3.9 1.3 5.3l17 16-4 22.6c-.3 1.9.5 3.9 2.1 5s3.8 1.3 5.6.4l21-10.7 21 10.7c1.8.9 4 .8 5.6-.4s2.5-3.1 2.1-5l-4-22.6 17-16c1.5-1.4 2-3.4 1.4-5.3s-2.3-3.2-4.3-3.5l-23.5-3.3-10.5-20.5c-.9-1.8-2.8-2.9-4.8-2.9zm116.8 2.9c-.9-1.8-2.8-2.9-4.8-2.9s-3.9 1.1-4.8 2.9l-10.5 20.5-23.5 3.3c-2 .3-3.7 1.6-4.3 3.5s-.1 3.9 1.3 5.3l17 16-4 22.6c-.3 1.9.5 3.9 2.1 5s3.8 1.3 5.6.4l21-10.7 21 10.7c1.8.9 4 .8 5.6-.4s2.5-3.1 2.1-5l-4-22.6 17-16c1.5-1.4 2-3.4 1.4-5.3s-2.3-3.2-4.3-3.5l-23.5-3.3-10.5-20.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/desktop.svg�����������������������0000664�0000000�0000000�00000001002�14753064456�0027435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h176l-10.7 32H160c-17.7 0-32 14.3-32 32s14.3 32 32 32h256c17.7 0 32-14.3 32-32s-14.3-32-32-32h-69.3L336 416h176c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm448 64v224H64V64z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/dharmachakra.svg������������������0000664�0000000�0000000�00000003232�14753064456�0030401�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m337.8 205.7 48.6-42.5c13.8 19.3 23.4 41.9 27.4 66.2l-64.4 4.3c-2.4-10.1-6.4-19.5-11.6-28m140.1 19.5c-5.3-38.8-20.6-74.5-43.2-104.3l.8-.7C449 108.4 449.7 87.6 437 75s-33.4-12-45.2 1.5l-.7.8c-29.8-22.6-65.5-37.9-104.3-43.2l.1-1.1c1.2-17.9-13-33-30.9-33s-32.1 15.2-30.9 33l.1 1.1c-38.8 5.3-74.5 20.6-104.3 43.2l-.7-.8C108.4 63 87.6 62.3 75 75s-12 33.4 1.5 45.2l.8.7c-22.6 29.8-37.9 65.5-43.2 104.3l-1.1-.1c-17.9-1.2-33 13-33 30.9s15.2 32.1 33 30.9l1.1-.1c5.3 38.8 20.6 74.5 43.2 104.3l-.8.7C63 403.6 62.3 424.4 75 437s33.4 12 45.2-1.5l.7-.8c29.8 22.6 65.5 37.9 104.3 43.2l-.1 1.1c-1.2 17.9 13 33 30.9 33s32.1-15.2 30.9-33l-.1-1.1c38.8-5.3 74.5-20.6 104.3-43.2l.7.8c11.8 13.5 32.5 14.2 45.2 1.5s12-33.4-1.5-45.2l-.8-.7c22.6-29.8 37.9-65.5 43.2-104.3l1.1.1c17.9 1.2 33-13 33-30.9s-15.2-32.1-33-30.9zm-314.7-99.6c19.3-13.8 41.9-23.4 66.2-27.5l4.3 64.4c-10 2.4-19.5 6.4-28 11.6l-42.5-48.6zm-65 103.8c4.1-24.4 13.7-46.9 27.5-66.2l48.6 42.5c-5.3 8.5-9.2 18-11.6 28l-64.4-4.3zm27.5 119.4a159.5 159.5 0 0 1-27.5-66.2l64.4-4.3c2.4 10 6.4 19.5 11.6 28l-48.6 42.5zm103.8 65c-24.4-4.1-46.9-13.7-66.2-27.4l42.5-48.6c8.5 5.3 18 9.2 28 11.6zm119.4-27.4c-19.3 13.8-41.9 23.4-66.2 27.4l-4.3-64.4c10-2.4 19.5-6.4 28-11.6zm65-103.8c-4.1 24.4-13.7 46.9-27.4 66.2l-48.6-42.5c5.3-8.5 9.2-18 11.6-28zm-65-156.9-42.5 48.6c-8.5-5.3-18-9.2-28-11.6l4.3-64.4c24.4 4.1 46.9 13.7 66.2 27.5zM256 224a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/diagram-next.svg������������������0000664�0000000�0000000�00000001353�14753064456�0030355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M512 160c0 35.3-28.7 64-64 64H280v64h46.1c21.4 0 32.1 25.9 17 41L273 399c-9.4 9.4-24.6 9.4-33.9 0L169 329c-15.1-15.1-4.4-41 17-41h46.1v-64H64c-35.3 0-64-28.7-64-64V96c0-35.3 28.7-64 64-64h384c35.3 0 64 28.7 64 64zm-64 256v-64h-82.7l.4-.4c18.4-18.4 20.4-43.7 11-63.6H448c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64v-64c0-35.3 28.7-64 64-64h71.3c-9.4 19.9-7.4 45.2 11 63.6l.4.4H64v64h146.7l5.7 5.7c21.9 21.9 57.3 21.9 79.2 0l5.7-5.7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/diagram-predecessor.svg�����������0000664�0000000�0000000�00000001210�14753064456�0031705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 416v-64H64v64zm0 64H64c-35.3 0-64-28.7-64-64v-64c0-35.3 28.7-64 64-64h384c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64M288 160c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96c0-35.3 28.7-64 64-64h304c44.2 0 80 35.8 80 80v16h38.1c21.4 0 32.1 25.9 17 41L433 239c-9.4 9.4-24.6 9.4-33.9 0L329 169c-15.1-15.1-4.4-41 17-41h38.1v-16c0-8.8-7.2-16-16-16h-80v64z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/diagram-project.svg���������������0000664�0000000�0000000�00000001142�14753064456�0031041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 80c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v16h192V80c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48h-96c-26.5 0-48-21.5-48-48v-16H192v16c0 1.7-.1 3.4-.3 5L272 288h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48h-96c-26.5 0-48-21.5-48-48v-96c0-1.7.1-3.4.3-5L144 224H48c-26.5 0-48-21.5-48-48z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/diagram-successor.svg�������������0000664�0000000�0000000�00000001203�14753064456�0031402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M512 416v-64c0-35.3-28.7-64-64-64H64c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64M64 160V96h160v64zm224 0V96h80c8.8 0 16 7.2 16 16v16h-38.1c-21.4 0-32.1 25.9-17 41l70.1 70c9.4 9.4 24.6 9.4 33.9 0l70.1-70c15.1-15.1 4.4-41-17-41h-38v-16c0-44.2-35.8-80-80-80H64C28.7 32 0 60.7 0 96v64c0 35.3 28.7 64 64 64h160c35.3 0 64-28.7 64-64"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/diamond-turn-right.svg������������0000664�0000000�0000000�00000001225�14753064456�0031507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M227.7 11.7c15.6-15.6 40.9-15.6 56.6 0l216 216c15.6 15.6 15.6 40.9 0 56.6l-216 216c-15.6 15.6-40.9 15.6-56.6 0l-216-216c-15.6-15.6-15.6-40.9 0-56.6zm87.6 137c-4.6-4.6-11.5-5.9-17.4-3.5s-9.9 8.3-9.9 14.8v56h-64c-35.3 0-64 28.7-64 64v48c0 13.3 10.7 24 24 24s24-10.7 24-24v-48c0-8.8 7.2-16 16-16h64v56c0 6.5 3.9 12.3 9.9 14.8s12.9 1.1 17.4-3.5l80-80c6.2-6.2 6.2-16.4 0-22.6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/diamond.svg�����������������������0000664�0000000�0000000�00000000665�14753064456�0027415�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M284.3 11.7c-15.6-15.6-40.9-15.6-56.6 0l-216 216c-15.6 15.6-15.6 40.9 0 56.6l216 216c15.6 15.6 40.9 15.6 56.6 0l216-216c15.6-15.6 15.6-40.9 0-56.6z"/></svg>���������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/dice-d20.svg����������������������0000664�0000000�0000000�00000003042�14753064456�0027261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m48.7 125.8 53.2 31.9c7.8 4.7 17.8 2 22.2-5.9l77.5-139.7c3-5.4-.9-12.1-7.1-12.1-1.6 0-3.2.5-4.6 1.4l-142 97.4c-9.6 6.6-9.2 20.9.8 26.9zM16 171.7v123.5c0 8 10.4 11 14.7 4.4l60-92c5-7.6 2.6-17.8-5.2-22.5L40.2 158c-10.6-6.4-24.2 1.3-24.2 13.7M310.4 12.1 388 151.7c4.4 7.9 14.5 10.6 22.2 5.9l53.2-31.9c10-6 10.4-20.3.8-26.9L322.1 1.4c-1.4-.9-3-1.4-4.6-1.4-6.2 0-10.1 6.7-7.1 12.1M496 171.7c0-12.4-13.6-20.1-24.2-13.7l-45.3 27.2c-7.8 4.7-10.1 14.9-5.2 22.5l60 92c4.3 6.7 14.7 3.6 14.7-4.4V171.8zm-49.3 246-160.6 18.9c-8.1.9-14.1 7.8-14.1 15.9v52.8c0 3.7 3 6.8 6.8 6.8.8 0 1.6-.1 2.4-.4l172.7-64c6.1-2.2 10.1-8 10.1-14.5 0-9.3-8.1-16.5-17.3-15.4zM233.2 512c3.7 0 6.8-3 6.8-6.8v-52.6c0-8.1-6.1-14.9-14.1-15.9l-160.6-19c-9.2-1.1-17.3 6.1-17.3 15.4 0 6.5 4 12.3 10.1 14.5l172.7 64c.8.3 1.6.4 2.4.4M41.7 382.9l170.9 20.2c7.8.9 13.4-7.5 9.5-14.3l-85.7-150c-5.9-10.4-20.7-10.8-27.3-.8L30.2 358.2c-6.5 9.9-.3 23.3 11.5 24.7m439.6-24.8-78.4-120c-6.5-10-21.4-9.6-27.3.8l-85.4 149.6c-3.9 6.8 1.6 15.2 9.5 14.3l170.1-20c11.8-1.4 18-14.7 11.5-24.6zm-216.9 11 78.4-137.2c6.1-10.7-1.6-23.9-13.9-23.9H183.2c-12.3 0-20 13.3-13.9 23.9l78.4 137.2c3.7 6.4 13 6.4 16.7 0m-90-193.1h163.2c12.2 0 19.9-13.1 14-23.8l-80-144c-2.8-5.1-8.2-8.2-14-8.2h-3.2c-5.8 0-11.2 3.2-14 8.2l-80 144c-5.9 10.7 1.8 23.8 14 23.8"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/dice-d6.svg�����������������������0000664�0000000�0000000�00000001402�14753064456�0027203�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M201 10.3c14.3-7.8 31.6-7.8 46 0L422.3 106c5.1 2.8 8.3 8.2 8.3 14s-3.2 11.2-8.3 14L231.7 238c-4.8 2.6-10.5 2.6-15.3 0L25.7 134c-5.1-2.8-8.3-8.2-8.3-14s3.2-11.2 8.3-14zM23.7 170l176 96c5.1 2.8 8.3 8.2 8.3 14v216c0 5.6-3 10.9-7.8 13.8s-10.9 3-15.8.3L25 423.1C9.6 414.7 0 398.6 0 381V184c0-5.6 3-10.9 7.8-13.8s10.9-3 15.8-.3zm400.7 0c5-2.7 11-2.6 15.8.3s7.8 8.1 7.8 13.8v197c0 17.6-9.6 33.7-25 42.1L263.7 510c-5 2.7-11 2.6-15.8-.3s-7.8-8.1-7.8-13.8v-216c0-5.9 3.2-11.2 8.3-14l176-96z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/dice-five.svg���������������������0000664�0000000�0000000�00000001123�14753064456�0027623�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm64 96a32 32 0 1 1 0 64 32 32 0 1 1 0-64M96 352a32 32 0 1 1 64 0 32 32 0 1 1-64 0m128-128a32 32 0 1 1 0 64 32 32 0 1 1 0-64m64-64a32 32 0 1 1 64 0 32 32 0 1 1-64 0m32 160a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/dice-four.svg���������������������0000664�0000000�0000000�00000001057�14753064456�0027653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96c0-35.3 28.7-64 64-64h320c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm160 64a32 32 0 1 0-64 0 32 32 0 1 0 64 0m-32 224a32 32 0 1 0 0-64 32 32 0 1 0 0 64m224-224a32 32 0 1 0-64 0 32 32 0 1 0 64 0m-32 224a32 32 0 1 0 0-64 32 32 0 1 0 0 64"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/dice-one.svg����������������������0000664�0000000�0000000�00000000661�14753064456�0027461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm160 192a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/dice-six.svg����������������������0000664�0000000�0000000�00000001177�14753064456�0027506�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96c0-35.3 28.7-64 64-64h320c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm160 64a32 32 0 1 0-64 0 32 32 0 1 0 64 0m-32 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64m32 64a32 32 0 1 0-64 0 32 32 0 1 0 64 0m160-160a32 32 0 1 0 0-64 32 32 0 1 0 0 64m32 64a32 32 0 1 0-64 0 32 32 0 1 0 64 0m-32 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/dice-three.svg��������������������0000664�0000000�0000000�00000001001�14753064456�0027774�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm64 96a32 32 0 1 1 0 64 32 32 0 1 1 0-64m64 128a32 32 0 1 1 64 0 32 32 0 1 1-64 0m128 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/dice-two.svg����������������������0000664�0000000�0000000�00000000734�14753064456�0027512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96c0-35.3 28.7-64 64-64h320c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm352 256a32 32 0 1 0-64 0 32 32 0 1 0 64 0M128 192a32 32 0 1 0 0-64 32 32 0 1 0 0 64"/></svg>������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/dice.svg��������������������������0000664�0000000�0000000�00000001467�14753064456�0026707�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M274.9 34.3c-28.1-28.1-73.7-28.1-101.8 0L34.3 173.1c-28.1 28.1-28.1 73.7 0 101.8l138.8 138.8c28.1 28.1 73.7 28.1 101.8 0l138.8-138.8c28.1-28.1 28.1-73.7 0-101.8zM200 224a24 24 0 1 1 48 0 24 24 0 1 1-48 0M96 200a24 24 0 1 1 0 48 24 24 0 1 1 0-48m128 176a24 24 0 1 1 0-48 24 24 0 1 1 0 48m128-176a24 24 0 1 1 0 48 24 24 0 1 1 0-48m-128-80a24 24 0 1 1 0-48 24 24 0 1 1 0 48m96 328c0 35.3 28.7 64 64 64h192c35.3 0 64-28.7 64-64V256c0-35.3-28.7-64-64-64H461.7c11.6 36 3.1 77-25.4 105.5L320 413.8zm160-120a24 24 0 1 1 0 48 24 24 0 1 1 0-48"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/disease.svg�����������������������0000664�0000000�0000000�00000001716�14753064456�0027415�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M236.4 61.4 227 75.5c-21.3 32-59.4 48.5-97.3 42.1l-59.6-9.9C33.4 101.6 0 129.9.1 167.1c0 15.9 6.4 31.2 17.6 42.5l29.2 29.2c11 11 17.2 25.9 17.2 41.5 0 15.8-6.4 30.9-17.7 42l-13.1 12.8C22.2 345.9 16 360.7 16 376.2c0 36.8 34.1 64.2 70.1 56.2l62.3-13.8c7.7-1.7 15.7-2.6 23.6-2.6h10c27.2 0 53.7 9.3 75 26.3l30.8 24.7c10.5 8.4 23.6 13 37 13 32.7 0 59.3-26.5 59.3-59.3v-25.2c0-34.9 21.4-66.2 53.9-78.8l36.9-14.3c22.4-8.7 37.2-30.3 37.2-54.3 0-28.1-20.1-52.3-47.8-57.3l-28-5.1c-36.5-6.7-65.4-34.5-73.6-70.7l-7.1-31.5C348.9 53.4 322.1 32 291.3 32c-22 0-42.6 11-54.9 29.4M160 192a32 32 0 1 1 0 64 32 32 0 1 1 0-64m128 16a16 16 0 1 1 32 0 16 16 0 1 1-32 0m0 80a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>��������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/display.svg�����������������������0000664�0000000�0000000�00000001002�14753064456�0027431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h176l-10.7 32H160c-17.7 0-32 14.3-32 32s14.3 32 32 32h256c17.7 0 32-14.3 32-32s-14.3-32-32-32h-69.3L336 416h176c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm448 64v288H64V64z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/divide.svg������������������������0000664�0000000�0000000�00000000707�14753064456�0027243�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M272 96a48 48 0 1 0-96 0 48 48 0 1 0 96 0m0 320a48 48 0 1 0-96 0 48 48 0 1 0 96 0m128-128c17.7 0 32-14.3 32-32s-14.3-32-32-32H48c-17.7 0-32 14.3-32 32s14.3 32 32 32z"/></svg>���������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/dna.svg���������������������������0000664�0000000�0000000�00000002057�14753064456�0026541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M416 0c17.7 0 32 14.3 32 32 0 59.8-30.3 107.5-69.4 146.6-28 28-62.5 53.5-97.3 77.4l-2.5 1.7c-11.9 8.1-23.8 16.1-35.5 23.9l-1.6 1c-6 4-11.9 7.9-17.8 11.9-20.9 14-40.8 27.7-59.3 41.5h118.5c-9.8-7.4-20.1-14.7-30.7-22.1l7-4.7 3-2c15.1-10.1 30.9-20.6 46.7-31.6 25 18.1 48.9 37.3 69.4 57.7C417.7 372.5 448 420.2 448 480c0 17.7-14.3 32-32 32s-32-14.3-32-32H64c0 17.7-14.3 32-32 32S0 497.7 0 480c0-59.8 30.3-107.5 69.4-146.6 28-28 62.5-53.5 97.3-77.4-34.8-23.9-69.3-49.3-97.3-77.4C30.3 139.5 0 91.8 0 32 0 14.3 14.3 0 32 0s32 14.3 32 32h320c0-17.7 14.3-32 32-32m-77.4 384H109.4c-10.1 10.6-18.6 21.3-25.5 32h280.2c-6.8-10.7-15.3-21.4-25.5-32M109.4 128h229.2c10.1-10.7 18.6-21.3 25.5-32H83.9c6.8 10.7 15.3 21.3 25.5 32m55.4 48c18.4 13.8 38.4 27.5 59.3 41.5 20.9-14 40.8-27.7 59.3-41.5H164.9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/dog.svg���������������������������0000664�0000000�0000000�00000001446�14753064456�0026551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m309.6 158.5 23.1-138.7C334.6 8.4 344.5 0 356.1 0c7.5 0 14.5 3.5 19 9.5L392 32h52.1c12.7 0 24.9 5.1 33.9 14.1L496 64h56c13.3 0 24 10.7 24 24v24c0 44.2-35.8 80-80 80h-69.3l-5.1 30.5zM416 256.1V480c0 17.7-14.3 32-32 32h-32c-17.7 0-32-14.3-32-32V364.8c-24 12.3-51.2 19.2-80 19.2s-56-6.9-80-19.2V480c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V249.8c-28.8-10.9-51.4-35.3-59.2-66.5L1 167.8c-4.3-17.1 6.1-34.5 23.3-38.8s34.5 6.1 38.8 23.3l3.9 15.5C70.5 182 83.3 192 98 192h205.8zM464 80a16 16 0 1 0-32 0 16 16 0 1 0 32 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/dollar-sign.svg�������������������0000664�0000000�0000000�00000002222�14753064456�0030204�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 0c17.7 0 32 14.3 32 32v35.7c1.6.2 3.1.4 4.7.7.4.1.7.1 1.1.2l48 8.8c17.4 3.2 28.9 19.9 25.7 37.2s-19.9 28.9-37.2 25.7l-47.5-8.7c-31.3-4.6-58.9-1.5-78.3 6.2s-27.2 18.3-29 28.1c-2 10.7-.5 16.7 1.2 20.4 1.8 3.9 5.5 8.3 12.8 13.2 16.3 10.7 41.3 17.7 73.7 26.3l2.9.8c28.6 7.6 63.6 16.8 89.6 33.8 14.2 9.3 27.6 21.9 35.9 39.5 8.5 17.9 10.3 37.9 6.4 59.2-6.9 38-33.1 63.4-65.6 76.7-13.7 5.6-28.6 9.2-44.4 11v33.4c0 17.7-14.3 32-32 32s-32-14.3-32-32v-34.9c-.4-.1-.9-.1-1.3-.2h-.2c-24.4-3.8-64.5-14.3-91.5-26.3-16.1-7.2-23.4-26.1-16.2-42.2s26.1-23.4 42.2-16.2c20.9 9.3 55.3 18.5 75.2 21.6 31.9 4.7 58.2 2 76-5.3 16.9-6.9 24.6-16.9 26.8-28.9 1.9-10.6.4-16.7-1.3-20.4-1.9-4-5.6-8.4-13-13.3-16.4-10.7-41.5-17.7-74-26.3l-2.8-.7c-28.5-7.8-63.5-17.1-89.5-34.1-14.2-9.3-27.5-22-35.8-39.6-8.4-17.9-10.1-37.9-6.1-59.2 7.2-38.2 35.8-63 68.3-75.9 13.3-5.3 27.9-8.9 43.2-11V32c0-17.7 14.3-32 32-32"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/dolly.svg�������������������������0000664�0000000�0000000�00000001352�14753064456�0027117�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 32C0 14.3 14.3 0 32 0h72.9c27.5 0 52 17.6 60.7 43.8L257.7 320c30.1.5 56.8 14.9 74 37l202.1-67.4c16.8-5.6 34.9 3.5 40.5 20.2s-3.5 34.9-20.2 40.5L352 417.7c-.9 52.2-43.5 94.3-96 94.3-53 0-96-43-96-96 0-30.8 14.5-58.2 37-75.8L104.9 64H32C14.3 64 0 49.7 0 32m244.8 102.5c-5.5-16.8 3.7-34.9 20.5-40.3L311 79.4l19.8 60.9 60.9-19.8-19.9-60.9 45.7-14.8c16.8-5.5 34.9 3.7 40.3 20.5l49.4 152.2c5.5 16.8-3.7 34.9-20.5 40.3l-152.2 49.4c-16.8 5.5-34.9-3.7-40.3-20.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/dong-sign.svg���������������������0000664�0000000�0000000�00000001274�14753064456�0027664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 32c-17.7 0-32 14.3-32 32h-32c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v49.1c-18.8-10.9-40.7-17.1-64-17.1-70.7 0-128 57.3-128 128s57.3 128 128 128c24.5 0 47.4-6.9 66.8-18.8 5 11.1 16.2 18.8 29.2 18.8 17.7 0 32-14.3 32-32V128c17.7 0 32-14.3 32-32s-14.3-32-32-32c0-17.7-14.3-32-32-32M128 288a64 64 0 1 1 128 0 64 64 0 1 1-128 0M32 448c-17.7 0-32 14.3-32 32s14.3 32 32 32h320c17.7 0 32-14.3 32-32s-14.3-32-32-32z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/door-closed.svg�������������������0000664�0000000�0000000�00000000726�14753064456�0030212�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 64c0-35.3 28.7-64 64-64h256c35.3 0 64 28.7 64 64v384h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h64zm288 224a32 32 0 1 0 0-64 32 32 0 1 0 0 64"/></svg>������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/door-open.svg���������������������0000664�0000000�0000000�00000001133�14753064456�0027673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 32c0-9.9-4.5-19.2-12.3-25.2S289.8-1.4 280.2 1L100.3 46C79 51.3 64 70.5 64 92.5V448H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h288V32m-64 224c0 17.7-10.7 32-24 32s-24-14.3-24-32 10.7-32 24-32 24 14.3 24 32m96-128h96v352c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32s-14.3-32-32-32h-32V128c0-35.3-28.7-64-64-64h-96z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/dove.svg��������������������������0000664�0000000�0000000�00000001566�14753064456�0026740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160.8 96.5c14 17 31 30.9 49.5 42.2 25.9 15.8 53.7 25.9 77.7 31.6v-31.5c-22.2-30.3-38-67.3-39.4-110.8-.4-11.3-7.5-21.5-18.4-24.4-7.6-2-15.8-.2-21 5.8-13.3 15.4-32.7 44.6-48.4 87.2zM320 144v64c-60.8-5.1-185-43.8-219.3-157.2C97.4 40 87.9 32 76.6 32c-7.9 0-15.3 3.9-18.8 11C46.8 65.9 32 112.1 32 176c0 116.9 80.1 180.5 118.4 202.8L11.8 416.6C6.7 418 2.6 421.8.9 426.8s-.8 10.6 2.3 14.8C21.7 466.2 77.3 512 160 512c3.6 0 7.2-1.2 10-3.5l75.6-60.5H320c88.4 0 160-71.6 160-160V128l29.9-44.9c1.3-2 2.1-4.4 2.1-6.8 0-6.8-5.5-12.3-12.3-12.3H400c-44.2 0-80 35.8-80 80m80-16a16 16 0 1 1 0 32 16 16 0 1 1 0-32"/></svg>������������������������������������������������������������������������������������������������������������������������������������������down-left-and-up-right-to-center.svg����������������������������������������������������������������0000664�0000000�0000000�00000001271�14753064456�0034007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000�mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439 7c9.4-9.4 24.6-9.4 33.9 0l32 32c9.4 9.4 9.4 24.6 0 33.9l-87 87 39 39c6.9 6.9 8.9 17.2 5.2 26.2s-12.5 14.8-22.2 14.8h-144c-13.3 0-24-10.7-24-24v-144c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l39 39zM72 272h144c13.3 0 24 10.7 24 24v144c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-39-39-87 87c-9.4 9.4-24.6 9.4-33.9 0L7 473c-9.4-9.4-9.4-24.6 0-33.9l87-87L55 313c-6.9-6.9-8.9-17.2-5.2-26.2S62.3 272 72 272"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/down-long.svg���������������������0000664�0000000�0000000�00000000770�14753064456�0027703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M2 334.5c-3.8 8.8-2 19 4.6 26l136 144c4.5 4.8 10.8 7.5 17.4 7.5s12.9-2.7 17.4-7.5l136-144c6.6-7 8.4-17.2 4.6-26S305.5 320 296 320h-72V32c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32v288H24c-9.6 0-18.2 5.7-22 14.5"/></svg>��������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/download.svg����������������������0000664�0000000�0000000�00000001261�14753064456�0027602�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32v242.7l-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 274.7zM64 352c-35.3 0-64 28.7-64 64v32c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64v-32c0-35.3-28.7-64-64-64H346.5l-45.3 45.3c-25 25-65.5 25-90.5 0L165.5 352zm368 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/dragon.svg������������������������0000664�0000000�0000000�00000002233�14753064456�0027245�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m352 124.5-51.9-13c-6.5-1.6-11.3-7.1-12-13.8s2.8-13.1 8.7-16.1l40.8-20.4-43.2-32.4c-5.5-4.1-7.8-11.3-5.6-17.9S297.1 0 304 0h160c30.2 0 58.7 14.2 76.8 38.4l57.6 76.8c6.2 8.3 9.6 18.4 9.6 28.8 0 26.5-21.5 48-48 48h-21.5c-17 0-33.3-6.7-45.3-18.7L480 160h-32v21.5c0 24.8 12.8 47.9 33.8 61.1l106.6 66.6c32.1 20.1 51.6 55.2 51.6 93.1 0 60.6-49.1 109.7-109.8 109.7H32.3c-3.3 0-6.6-.4-9.6-1.4-9.2-2.8-16.7-9.6-20.3-18.5C1 488.7.2 485.2 0 481.4c-.2-3.7.3-7.3 1.3-10.7 2.8-9.2 9.6-16.7 18.6-20.4 3-1.2 6.2-2 9.5-2.2L433.3 412c8.3-.7 14.7-7.7 14.7-16.1 0-4.3-1.7-8.4-4.7-11.4l-44.4-44.4c-30-30-46.9-70.7-46.9-113.1V124.5m160-52.2v-.6zm-1.3 7.4-46.4-11.6q-.3 1.95-.3 3.9c0 13.3 10.7 24 24 24 10.6 0 19.5-6.8 22.7-16.3m-379.8 36.8c16.3-14.5 40.4-16.2 58.5-4.1l130.6 87v27.5c0 32.8 8.4 64.8 24 93H112c-6.7 0-12.7-4.2-15-10.4s-.5-13.3 4.6-17.7l69.4-59.5-152.6 23.5c-7 1.1-13.9-2.6-16.9-9S0 232.7 5.3 228z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/draw-polygon.svg������������������0000664�0000000�0000000�00000001565�14753064456�0030424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 151.4v209.1c9.7 5.6 17.8 13.7 23.4 23.4h209.1c0-.1.1-.2.1-.3l-4.5-7.9-32-56c-1.4.1-2.8.1-4.2.1-35.3 0-64-28.7-64-64s28.7-64 64-64c1.4 0 2.8 0 4.2.1l32-56 4.5-7.9-.1-.3H119.4c-5.6 9.7-13.7 17.8-23.4 23.4zM384.3 352c35.2.2 63.7 28.7 63.7 64s-28.7 64-64 64c-23.7 0-44.4-12.9-55.4-32H119.5c-11.1 19.1-31.7 32-55.4 32-35.3 0-64-28.7-64-64 0-23.7 12.9-44.4 32-55.4V151.5C12.9 140.4 0 119.7 0 96c0-35.3 28.7-64 64-64 23.7 0 44.4 12.9 55.4 32h209.1c11.1-19.1 31.7-32 55.4-32 35.3 0 64 28.7 64 64s-28.5 63.8-63.7 64l-4.5 7.9-32 56-2.3 4c4.2 8.5 6.5 18 6.5 28.1s-2.3 19.6-6.5 28.1l2.3 4 32 56 4.5 7.9z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/droplet-slash.svg�����������������0000664�0000000�0000000�00000001403�14753064456�0030552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 512c53.2 0 101.4-21.6 136.1-56.6l-298.3-235C140 257.1 128 292.3 128 320c0 106 86 192 192 192m185.2-141.3c4.4-16.2 6.8-33.1 6.8-50.7 0-91.2-130.2-262.3-166.6-308.3-6-7.5-14.9-11.7-24.5-11.7h-1.8c-9.6 0-18.5 4.2-24.5 11.7C277.8 33 240.7 81.3 205.8 136L38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2s-6.3 25.5 4.1 33.7l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7zM224 336c0 44.2 35.8 80 80 80 8.8 0 16 7.2 16 16s-7.2 16-16 16c-61.9 0-112-50.1-112-112 0-8.8 7.2-16 16-16s16 7.2 16 16"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/droplet.svg�����������������������0000664�0000000�0000000�00000001073�14753064456�0027445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 512C86 512 0 426 0 320 0 228.8 130.2 57.7 166.6 11.7c6-7.5 14.9-11.7 24.5-11.7h1.8c9.6 0 18.5 4.2 24.5 11.7C253.8 57.7 384 228.8 384 320c0 106-86 192-192 192M96 336c0-8.8-7.2-16-16-16s-16 7.2-16 16c0 61.9 50.1 112 112 112 8.8 0 16-7.2 16-16s-7.2-16-16-16c-44.2 0-80-35.8-80-80"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/drum-steelpan.svg�����������������0000664�0000000�0000000�00000001710�14753064456�0030552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 32c159.1 0 288 48 288 128v192c0 80-128.9 128-288 128S0 432 0 352V160C0 80 128.9 32 288 32m240 128c0-9.9-8-29.9-55-49.8-18.6-7.9-40.9-14.4-66-19.4l-27.8 43.6c-7.3 11.5-11.2 24.8-11.2 38.4 0 17.5 6.4 34.4 18.1 47.5l9.8 11c29.8-5.2 55.9-12.5 77.2-21.5 47.1-19.9 55-39.9 55-49.8zm-178.8 77.3c-8-26.2-32.4-45.3-61.2-45.3s-53.3 19.1-61.2 45.3c19.4 1.7 39.9 2.7 61.2 2.7s41.8-.9 61.2-2.7M169 90.8c-25.2 5-47.4 11.6-66 19.4-47 19.9-55 39.9-55 49.8s8 29.9 55 49.8c21.3 9 47.4 16.3 77.2 21.5l9.8-11c11.6-13.1 18.1-30 18.1-47.5 0-13.6-3.9-26.9-11.2-38.4zm56.3-8c-.8 4.2-1.3 8.7-1.3 13.2 0 35.3 28.7 64 64 64s64-28.7 64-64c0-4.5-.5-9-1.4-13.2C330.8 81 309.8 80 288 80s-42.8 1-62.6 2.8z"/></svg>��������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/drum.svg��������������������������0000664�0000000�0000000�00000001747�14753064456�0026753�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M501.2 76.1c11.1-7.3 14.2-22.1 6.9-33.2S486 28.7 474.9 36l-104.7 68.5C335.8 98.7 297 96 256 96 114.6 96 0 128 0 208v160c0 31.3 27.4 58.8 72 78.7V344c0-13.3 10.7-24 24-24s24 10.7 24 24v119.4c33 8.9 71.1 14.5 112 16.1V376c0-13.3 10.7-24 24-24s24 10.7 24 24v103.5c40.9-1.6 79-7.2 112-16.1V344c0-13.3 10.7-24 24-24s24 10.7 24 24v102.7c44.6-19.9 72-47.4 72-78.7V208c0-41.1-30.2-69.5-78.8-87.4l67.9-44.5zm-193.8 69.5-64.6 42.3c-11.1 7.3-14.2 22.1-6.9 33.2s22.1 14.2 33.2 6.9l111.1-72.8c14.7 3.2 27.9 7 39.4 11.5 38.8 15.1 44.4 30.7 44.4 41.3 0 .8-2.7 17.2-46 35.9-38.9 16.8-96 28.1-162 28.1s-123.1-11.3-162-28.1c-43.3-18.7-46-35.1-46-35.9 0-10.6 5.6-26.2 44.4-41.3C130.6 151.9 187.8 144 256 144c18 0 35.1.5 51.4 1.6"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/drumstick-bite.svg����������������0000664�0000000�0000000�00000001356�14753064456�0030726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 265.2c0 8.5-3.4 16.6-9.4 22.6l-26.8 26.8c-12.3 12.3-32.5 11.4-49.4 7.2Q67.5 320 60 320c-33.1 0-60 26.9-60 60s26.9 60 60 60c6.3 0 12 5.7 12 12 0 33.1 26.9 60 60 60s60-26.9 60-60c0-5-.6-9.8-1.8-14.5-4.2-16.9-5.2-37.1 7.2-49.4l26.8-26.8c6-6 14.1-9.4 22.6-9.4H336c6.3 0 12.4-.3 18.5-1 11.9-1.2 16.4-15.5 10.8-26-8.5-15.8-13.3-33.8-13.3-53 0-61.9 50.1-112 112-112 8 0 15.7.8 23.2 2.4 11.7 2.5 24.1-5.9 22-17.6C494.5 62.5 422.5 0 336 0c-97.2 0-176 78.8-176 176z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/dumbbell.svg����������������������0000664�0000000�0000000�00000001304�14753064456�0027557�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32v384c0 17.7-14.3 32-32 32h-32c-17.7 0-32-14.3-32-32v-64H64c-17.7 0-32-14.3-32-32v-64c-17.7 0-32-14.3-32-32s14.3-32 32-32v-64c0-17.7 14.3-32 32-32h32zm448 0v64h32c17.7 0 32 14.3 32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32v64c0 17.7-14.3 32-32 32h-32v64c0 17.7-14.3 32-32 32h-32c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32M416 224v64H224v-64z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/dumpster-fire.svg�����������������0000664�0000000�0000000�00000002452�14753064456�0030564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M49.7 32h90.8l-25.6 128h-94C9.3 160 0 150.7 0 139.1c0-2.1.3-4.1.9-6.1l25.9-84.1C29.9 38.9 39.2 32 49.7 32M272 160H147.5l25.6-128H272zm32 0V32h98.9l14.4 72.1c-1.7 1.1-3.3 2.4-4.8 3.8-18.4 16.4-35.4 34-50.5 52.1zm209.9-23.7c-1.7 1.6-3.4 3.2-5 4.8-10.9-11.5-22.2-22.5-33.9-33.1-7.6-6.9-17-10.8-26.6-11.8L435.5 32h90.8c10.5 0 19.8 6.9 22.9 16.9l25.9 84.1c.2.7.4 1.4.5 2.1-17.8-15-44.3-14.6-61.7 1.2m-188.7 74.4c-20.9 33.8-37.2 72.2-37.2 107.4 0 49.3 18.6 95.2 49.6 129.9H128c0 17.7-14.3 32-32 32s-32-14.3-32-32L44 288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h4l-4-32h305.5c-4.4 6.2-8.5 12.5-12.3 18.7m180.6-34.5 12.2-13.7c5.4-6.1 13.3-8.8 20.9-8.9 7.2 0 14.3 2.6 19.9 7.8 19.7 18.3 39.8 43.2 55 70.6 15.2 27.2 26.2 58.2 26.2 88.2 0 88.6-71.3 159.8-160 159.8-89.6 0-160-71.3-160-159.8 0-37.3 16-73.4 36.8-104.5 20.9-31.3 47.5-59 70.9-80.2 5.7-5.2 13.1-7.7 20.3-7.5 14.1.3 23.8 11.4 32.7 21.6 2 2.3 4 4.6 6 6.7l19 19.9zm38.2 192c0-36.5-37-73-54.8-88.4-5.4-4.7-13.1-4.7-18.5 0-17.7 15.3-54.7 51.8-54.7 88.4 0 35.3 28.7 64 64 64s64-28.7 64-64"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/dumpster.svg����������������������0000664�0000000�0000000�00000001340�14753064456�0027634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M49.7 32c-10.5 0-19.8 6.9-22.9 16.9L.9 133c-.6 2-.9 4.1-.9 6.1C0 150.7 9.3 160 20.9 160h94l25.6-128zM272 160V32h-98.9l-25.6 128zm32 0h124.5L402.9 32H304zm157.1 0h94c11.5 0 20.9-9.3 20.9-20.9 0-2.1-.3-4.1-.9-6.1l-25.9-84.1c-3.1-10-12.4-16.9-22.9-16.9h-90.8zM32 192l4 32h-4c-17.7 0-32 14.3-32 32s14.3 32 32 32h12l20 160c0 17.7 14.3 32 32 32s32-14.3 32-32h320c0 17.7 14.3 32 32 32s32-14.3 32-32l20-160h12c17.7 0 32-14.3 32-32s-14.3-32-32-32h-4l4-32z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/dungeon.svg�����������������������0000664�0000000�0000000�00000003505�14753064456�0027435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M336.6 156.5c1.3 1.1 2.7 2.2 3.9 3.3 9.3 8.2 23 10.5 33.4 3.6l67.6-45.1c11.4-7.6 14.2-23.2 5.1-33.4-16.6-18.3-35.7-34.3-56.9-47.3-11.9-7.3-26.9-1.4-32.1 11.6l-30.5 76.2c-4.5 11.1.2 23.6 9.5 31.2zM328 36.8c5.1-12.8-1.6-27.4-15-30.5C294.7 2.2 275.6 0 256 0s-38.7 2.2-57 6.4c-13.5 3-20.2 17.6-15 30.4l30.3 75.8c4.5 11.3 16.8 17.2 29 16 4.2-.4 8.4-.6 12.7-.6s8.6.2 12.7.6c12.1 1.2 24.4-4.7 29-16zM65.5 85c-9.1 10.2-6.3 25.8 5.1 33.4l67.6 45.1c10.3 6.9 24.1 4.6 33.4-3.6 1.3-1.1 2.6-2.3 4-3.3 9.3-7.5 13.9-20.1 9.5-31.2l-30.7-76.2c-5.2-12.9-20.3-18.8-32.1-11.6-21.2 13-40.3 29-56.8 47.4m314 137.1c.9 3.3 1.7 6.6 2.3 10 2.5 13 13 23.9 26.2 23.9h80c13.3 0 24.1-10.8 22.9-24-2.5-27.2-9.3-53.2-19.7-77.3-5.5-12.9-21.4-16.6-33.1-8.9l-68.6 45.7c-9.8 6.5-13.2 19.2-10 30.5zM53.9 145.8c-11.6-7.8-27.6-4-33.1 8.9C10.4 178.8 3.6 204.8 1.1 232c-1.2 13.2 9.6 24 22.9 24h80c13.3 0 23.8-10.8 26.2-23.9.6-3.4 1.4-6.7 2.3-10 3.1-11.4-.2-24-10-30.5zM104 288H24c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24m304 0c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zM24 416c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zm384 0c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zM272 192c0-8.8-7.2-16-16-16s-16 7.2-16 16v272c0 8.8 7.2 16 16 16s16-7.2 16-16zm-64 32c0-8.8-7.2-16-16-16s-16 7.2-16 16v240c0 8.8 7.2 16 16 16s16-7.2 16-16zm128 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v240c0 8.8 7.2 16 16 16s16-7.2 16-16z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/e.svg�����������������������������0000664�0000000�0000000�00000000733�14753064456�0026222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h224c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V288h160c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V96h224c17.7 0 32-14.3 32-32s-14.3-32-32-32z"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/ear-deaf.svg����������������������0000664�0000000�0000000�00000002005�14753064456�0027434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m502.6 54.6-40 40c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l40-40c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3m-320 320-128 128c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l128-128c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3M240 128c-57.6 0-105.1 43.6-111.3 99.5-1.9 17.6-17.8 30.2-35.3 28.3S63.2 238 65.1 220.5C74.8 132.5 149.4 64 240 64c97.2 0 176 78.8 176 176 0 46-17.7 87.9-46.6 119.3-12 13-17.4 24.8-17.4 34.7v6.1c0 61.9-50.1 112-112 112-17.7 0-32-14.3-32-32s14.3-32 32-32c26.5 0 48-21.5 48-48V394c0-32.9 17.4-59.6 34.4-78 18.4-20 29.6-46.6 29.6-75.9 0-61.9-50.1-112-112-112zm0 80c-17.7 0-32 14.3-32 32 0 13.3-10.7 24-24 24s-24-10.7-24-24c0-44.2 35.8-80 80-80s80 35.8 80 80c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-17.7-14.3-32-32-32"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/ear-listen.svg��������������������0000664�0000000�0000000�00000002466�14753064456�0030046�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M398.3 3.4c-15.8-7.9-35-1.5-42.9 14.3s-1.5 34.9 14.2 42.9l.4.2q.6.3 2.1 1.2c2 1.2 5 3 8.7 5.6 7.5 5.2 17.6 13.2 27.7 24.2C428.5 113.4 448 146 448 192c0 17.7 14.3 32 32 32s32-14.3 32-32c0-66-28.5-113.4-56.5-143.7-13.9-15.1-27.8-26.1-38.2-33.3-5.3-3.7-9.7-6.4-13-8.3-1.6-1-3-1.7-4-2.2-.5-.3-.9-.5-1.2-.7l-.4-.2-.2-.1h-.1L384 32zM128.7 227.5c6.2-56 53.7-99.5 111.3-99.5 61.9 0 112 50.1 112 112 0 29.3-11.2 55.9-29.6 75.9-17 18.4-34.4 45.1-34.4 78v6.1c0 26.5-21.5 48-48 48-17.7 0-32 14.3-32 32s14.3 32 32 32c61.9 0 112-50.1 112-112v-6.1c0-9.8 5.4-21.7 17.4-34.7C398.3 327.9 416 286 416 240c0-97.2-78.8-176-176-176-90.6 0-165.2 68.5-174.9 156.5-1.9 17.6 10.7 33.4 28.3 35.3s33.4-10.7 35.3-28.3M32 512a32 32 0 1 0 0-64 32 32 0 1 0 0 64m160-160a32 32 0 1 0-64 0 32 32 0 1 0 64 0m-150.6 9.4c-12.5 12.5-12.5 32.8 0 45.3l64 64c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-64-64c-12.5-12.5-32.8-12.5-45.3 0M208 240c0-17.7 14.3-32 32-32s32 14.3 32 32c0 13.3 10.7 24 24 24s24-10.7 24-24c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 13.3 10.7 24 24 24s24-10.7 24-24"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/earth-africa.svg������������������0000664�0000000�0000000�00000002170�14753064456�0030321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m177.8 63.2 10 17.4c2.8 4.8 4.2 10.3 4.2 15.9v41.4c0 3.9 1.6 7.7 4.3 10.4 6.2 6.2 16.5 5.7 22-1.2l13.6-17c4.7-5.9 12.9-7.7 19.6-4.3l15.2 7.6c3.4 1.7 7.2 2.6 11 2.6 6.5 0 12.8-2.6 17.4-7.2l3.9-3.9c2.9-2.9 7.3-3.6 11-1.8l29.2 14.6c7.8 3.9 12.6 11.8 12.6 20.5 0 10.5-7.1 19.6-17.3 22.2l-35.4 8.8c-7.4 1.8-15.1 1.5-22.4-.9l-32-10.7c-3.3-1.1-6.7-1.7-10.2-1.7-7 0-13.8 2.3-19.4 6.5L176 212c-10.1 7.6-16 19.4-16 32v28c0 26.5 21.5 48 48 48h32c8.8 0 16 7.2 16 16v48c0 17.7 14.3 32 32 32 10.1 0 19.6-4.7 25.6-12.8l25.6-34.1c8.3-11.1 12.8-24.6 12.8-38.4v-12.1c0-3.9 2.6-7.3 6.4-8.2l5.3-1.3c11.9-3 20.3-13.7 20.3-26 0-7.1-2.8-13.9-7.8-18.9l-33.5-33.5c-3.7-3.7-3.7-9.7 0-13.4 5.7-5.7 14.1-7.7 21.8-5.1l14.1 4.7c12.3 4.1 25.7-1.5 31.5-13 3.5-7 11.2-10.8 18.9-9.2l27.4 5.5C432 112.4 351.5 48 256 48c-27.7 0-54 5.4-78.2 15.2M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/earth-americas.svg����������������0000664�0000000�0000000�00000002126�14753064456�0030661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m57.7 193 9.4 16.4c8.3 14.5 21.9 25.2 38 29.8l57.9 16.5c17.2 4.9 29 20.6 29 38.5v39.9c0 11 6.2 21 16 25.9s16 14.9 16 25.9v39c0 15.6 14.9 26.9 29.9 22.6 16.1-4.6 28.6-17.5 32.7-33.8l2.8-11.2c4.2-16.9 15.2-31.4 30.3-40l8.1-4.6c15-8.5 24.2-24.5 24.2-41.7v-8.3c0-12.7-5.1-24.9-14.1-33.9l-3.9-3.9c-9-9-21.2-14.1-33.9-14.1H257c-11.1 0-22.1-2.9-31.8-8.4l-34.5-19.7c-4.3-2.5-7.6-6.5-9.2-11.2-3.2-9.6 1.1-20 10.2-24.5l5.9-3c6.6-3.3 14.3-3.9 21.3-1.5l23.2 7.7c8.2 2.7 17.2-.4 21.9-7.5 4.7-7 4.2-16.3-1.2-22.8l-13.6-16.3c-10-12-9.9-29.5.3-41.3l15.7-18.3c8.8-10.3 10.2-25 3.5-36.7l-2.4-4.2c-3.5-.2-6.9-.3-10.4-.3-92.8 0-171.5 60.9-198.2 145M464 256c0-36.8-9.6-71.4-26.4-101.5L412 164.8c-15.7 6.3-23.8 23.8-18.5 39.8l16.9 50.7c3.5 10.4 12 18.3 22.6 20.9l29.1 7.3c1.2-9 1.8-18.2 1.8-27.5zM0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/earth-asia.svg��������������������0000664�0000000�0000000�00000002546�14753064456�0030020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m51.7 295.1 31.7 6.3c7.9 1.6 16-.9 21.7-6.6l15.4-15.4c11.6-11.6 31.1-8.4 38.4 6.2l9.3 18.5c4.8 9.6 14.6 15.7 25.4 15.7 15.2 0 26.1-14.6 21.7-29.2l-6-19.9c-4.6-15.4 6.9-30.9 23-30.9h2.3c13.4 0 25.9-6.7 33.3-17.8l10.7-16.1c5.6-8.5 5.3-19.6-.8-27.7l-16.1-21.5c-10.3-13.7-3.3-33.5 13.4-37.7l17-4.3c7.5-1.9 13.6-7.2 16.5-14.4L325 59.4C303.4 52.1 280.2 48 256 48 141.1 48 48 141.1 48 256c0 13.4 1.3 26.5 3.7 39.1m407.7 4.6c-3-.3-6-.1-9 .8l-15.8 4.4c-6.7 1.9-13.8-.9-17.5-6.7l-2-3.1c-6-9.4-16.4-15.1-27.6-15.1s-21.6 5.7-27.6 15.1l-6.1 9.5c-1.4 2.2-3.4 4.1-5.7 5.3L312 330.1c-18.1 10.1-25.5 32.4-17 51.3l5.5 12.4c8.6 19.2 30.7 28.5 50.5 21.1l2.6-1c10-3.7 21.3-2.2 29.9 4.1l1.5 1.1c37.2-29.5 64.1-71.4 74.4-119.5zM0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m144.5 92.1c-2.1 8.6 3.1 17.3 11.6 19.4l32 8c8.6 2.1 17.3-3.1 19.4-11.6s-3.1-17.3-11.6-19.4l-32-8c-8.6-2.1-17.3 3.1-19.4 11.6m92-20c-2.1 8.6 3.1 17.3 11.6 19.4s17.3-3.1 19.4-11.6l8-32c2.1-8.6-3.1-17.3-11.6-19.4s-17.3 3.1-19.4 11.6zm106.7-214.4c-7.9-4-17.5-.7-21.5 7.2l-16 32c-4 7.9-.7 17.5 7.2 21.5s17.5.7 21.5-7.2l16-32c4-7.9.7-17.5-7.2-21.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/earth-europe.svg������������������0000664�0000000�0000000�00000003235�14753064456�0030376�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m266.3 48.3-33.8 25.3c-5.4 4-8.5 10.4-8.5 17.1v9.1c0 6.8 5.5 12.3 12.3 12.3 2.4 0 4.8-.7 6.8-2.1l41.8-27.9c2-1.3 4.4-2.1 6.8-2.1h1c6.2 0 11.3 5.1 11.3 11.3 0 3-1.2 5.9-3.3 8l-19.9 19.9a53 53 0 0 1-20.7 12.8l-26.5 8.8c-5.8 1.9-9.6 7.3-9.6 13.4 0 3.7-1.5 7.3-4.1 10L202 182.1c-6.4 6.4-9.9 15-9.9 24v4.3c0 16.4 13.6 29.7 29.9 29.7 11 0 21.2-6.2 26.1-16l4-8.1c2.4-4.8 7.4-7.9 12.8-7.9 4.5 0 8.7 2.1 11.4 5.7l16.3 21.7c2.1 2.9 5.5 4.5 9.1 4.5 8.4 0 13.9-8.9 10.1-16.4l-1.1-2.3c-3.5-7 0-15.5 7.5-18l21.2-7.1c7.6-2.5 12.7-9.6 12.7-17.6 0-10.3 8.3-18.6 18.6-18.6h29.4c8.8 0 16 7.2 16 16s-7.2 16-16 16h-20.7c-7.2 0-14.2 2.9-19.3 8l-4.7 4.7c-2.1 2.1-3.3 5-3.3 8 0 6.2 5.1 11.3 11.3 11.3h11.3c6 0 11.8 2.4 16 6.6l6.5 6.5c1.8 1.8 2.8 4.3 2.8 6.8s-1 5-2.8 6.8l-7.5 7.5c-3.7 3.8-5.7 8.7-5.7 13.8s2 10 5.7 13.7L408 304c10.2 10.2 24.1 16 38.6 16h7.3c6.5-20.2 10-41.7 10-64 0-111.4-87.6-202.4-197.7-207.7zm172 307.9c-3.7-2.6-8.2-4.1-13-4.1-6 0-11.8-2.4-16-6.6L396 332c-7.7-7.7-18-12-28.9-12-9.7 0-19.2-3.5-26.6-9.8L314 287.4c-11.6-9.9-26.4-15.4-41.7-15.4h-20.9c-12.6 0-25 3.7-35.5 10.7L188.5 301c-17.8 11.9-28.5 31.9-28.5 53.3v3.2c0 17 6.7 33.3 18.7 45.3l16 16c8.5 8.5 20 13.3 32 13.3H248c13.3 0 24 10.7 24 24 0 2.5.4 5 1.1 7.3 71.3-5.8 132.5-47.6 165.2-107.2M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m187.3-155.3c-6.2-6.2-16.4-6.2-22.6 0l-32 32c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l32-32c6.2-6.2 6.2-16.4 0-22.6"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/earth-oceania.svg�����������������0000664�0000000�0000000�00000002421�14753064456�0030472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m-47.4-154.7-39-13.5c-6.5-2.2-13.6-2.3-20.1-.3l-15.3 4.9c-18.5 5.9-38.5-2.4-47.5-19.5l-3.3-6.2c-10.6-20.1-2.3-45 18.2-54.7l35.3-16.8c2.3-1.1 4.4-2.8 5.9-4.8l5.3-7c7.2-9.6 18.6-15.3 30.6-15.3s23.4 5.7 30.6 15.3l4.6 6.1c2 2.6 4.9 4.5 8.1 5.1 7.8 1.6 15.7-1.5 20.4-7.9l10.4-14.2c2-2.8 5.3-4.4 8.7-4.4 4.4 0 8.4 2.7 10 6.8l10.1 25.9c2.8 7.2 6.7 14 11.5 20.2l17.9 22.8c5.8 7.4 9 16.6 9 26s-3.2 18.6-9 26l-12 15.4c-8.3 10.6-21 16.8-34.4 16.8-8.4 0-16.6-2.4-23.7-7l-25.4-16.4c-2.2-1.4-4.5-2.5-6.9-3.4zm65.2-214.8 22.2 22.2c10.1 10.1 2.9 27.3-11.3 27.3h-29.9c-5.6 0-11.1-1.2-16.2-3.4l-42.8-19c-14.3-6.3-11.9-27.3 3.4-30.3l38.5-7.7c13.1-2.6 26.7 1.5 36.1 10.9M248 432c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16s-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16m183.2-133.1 8 24c2.8 8.4-1.7 17.4-10.1 20.2s-17.4-1.7-20.2-10.1l-8-24c-2.8-8.4 1.7-17.4 10.1-20.2s17.4 1.7 20.2 10.1m-19.9 80.4-32 32c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l32-32c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/egg.svg���������������������������0000664�0000000�0000000�00000001045�14753064456�0026535�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 496C86 496 0 394 0 288 0 176 64 16 192 16s192 160 192 272c0 106-86 208-192 208m-37.2-362c6.5-6 7-16.1 1-22.6s-16.1-7-22.6-1c-23.9 21.8-41.1 52.7-52.3 84.2S64 259.7 64 288c0 8.8 7.2 16 16 16s16-7.2 16-16c0-24.5 5-54.4 15.1-82.8 10.1-28.5 25-54.1 43.7-71.2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/eject.svg�������������������������0000664�0000000�0000000�00000001044�14753064456�0027064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 32c13.5 0 26.3 5.6 35.4 15.6l176 192c12.9 14 16.2 34.3 8.6 51.8S419 320 400 320H48c-19 0-36.3-11.2-43.9-28.7s-4.3-37.7 8.6-51.8l176-192c9-9.9 21.8-15.5 35.3-15.5M0 432c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48s-21.5 48-48 48H48c-26.5 0-48-21.5-48-48"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/elevator.svg����������������������0000664�0000000�0000000�00000001662�14753064456�0027621�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m132.7 4.7-64 64c-4.6 4.6-5.9 11.5-3.5 17.4S73.5 96 80 96h128c6.5 0 12.3-3.9 14.8-9.9s1.1-12.9-3.5-17.4l-64-64c-6.2-6.2-16.4-6.2-22.6 0M64 128c-35.3 0-64 28.7-64 64v256c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V192c0-35.3-28.7-64-64-64zm96 96a48 48 0 1 1 0 96 48 48 0 1 1 0-96M80 400c0-26.5 21.5-48 48-48h64c26.5 0 48 21.5 48 48v16c0 17.7-14.3 32-32 32h-96c-17.7 0-32-14.3-32-32zm192 0c0-26.5 21.5-48 48-48h64c26.5 0 48 21.5 48 48v16c0 17.7-14.3 32-32 32h-96c-17.7 0-32-14.3-32-32zm32-128a48 48 0 1 1 96 0 48 48 0 1 1-96 0m52.7-180.7c6.2 6.2 16.4 6.2 22.6 0l64-64c4.6-4.6 5.9-11.5 3.5-17.4S438.5 0 432 0H304c-6.5 0-12.3 3.9-14.8 9.9s-1.1 12.9 3.5 17.4z"/></svg>������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/ellipsis-vertical.svg�������������0000664�0000000�0000000�00000000641�14753064456�0031427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 360a56 56 0 1 0 0 112 56 56 0 1 0 0-112m0-160a56 56 0 1 0 0 112 56 56 0 1 0 0-112m56-104A56 56 0 1 0 8 96a56 56 0 1 0 112 0"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/ellipsis.svg����������������������0000664�0000000�0000000�00000000641�14753064456�0027620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M8 256a56 56 0 1 1 112 0 56 56 0 1 1-112 0m160 0a56 56 0 1 1 112 0 56 56 0 1 1-112 0m216-56a56 56 0 1 1 0 112 56 56 0 1 1 0-112"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/envelope-circle-check.svg���������0000664�0000000�0000000�00000001452�14753064456�0032124�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4l217.6 163.2c11.4 8.5 27 8.5 38.4 0l57.4-43c23.9-59.8 79.7-103.3 146.3-109.8l13.9-10.4c12.1-9.1 19.2-23.3 19.2-38.4 0-26.5-21.5-48-48-48zm246.4 275.2a63.9 63.9 0 0 1-76.8 0L0 176v208c0 35.3 28.7 64 64 64h296.2c-25.1-30.4-40.2-69.5-40.2-112 0-5.6.3-11.1.8-16.6zM640 336a144 144 0 1 0-288 0 144 144 0 1 0 288 0m-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l28.7 28.7 60.7-60.7c6.2-6.2 16.4-6.2 22.6 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/envelope-open-text.svg������������0000664�0000000�0000000�00000001472�14753064456�0031535�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M215.4 96H96v177.4L.2 202.5c1.6-18.1 10.9-34.9 25.7-45.8L48 140.3V96c0-26.5 21.5-48 48-48h76.6l49.9-36.9C232.2 3.9 243.9 0 256 0s23.8 3.9 33.5 11l49.9 37H416c26.5 0 48 21.5 48 48v44.3l22.1 16.4c14.8 10.9 24.1 27.7 25.7 45.8L416 273.4V96H215.3zM0 448V242.1l217.6 161.2c11.1 8.2 24.6 12.7 38.4 12.7s27.3-4.4 38.4-12.7L512 242.1V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64m176-288h160c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16s7.2-16 16-16m0 64h160c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16s7.2-16 16-16"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/envelope-open.svg�����������������0000664�0000000�0000000�00000001071�14753064456�0030546�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 208.1 256 65.9l192 142.2v47.4L289.5 373c-9.7 7.2-21.4 11-33.5 11s-23.8-3.9-33.5-11L64 255.5zM256 0c-12.1 0-23.8 3.9-33.5 11L25.9 156.7C9.6 168.8 0 187.8 0 208.1V448c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V208.1c0-20.3-9.6-39.4-25.9-51.4L289.5 11C279.8 3.9 268.1 0 256 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/envelope.svg����������������������0000664�0000000�0000000�00000001031�14753064456�0027603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4l217.6 163.2c11.4 8.5 27 8.5 38.4 0l217.6-163.2c12.1-9.1 19.2-23.3 19.2-38.4 0-26.5-21.5-48-48-48zM0 176v208c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V176L294.4 339.2a63.9 63.9 0 0 1-76.8 0z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/envelopes-bulk.svg����������������0000664�0000000�0000000�00000001467�14753064456�0030736�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 0c-17.7 0-32 14.3-32 32v192h96v-32c0-35.3 28.7-64 64-64h224V32c0-17.7-14.3-32-32-32zm128 160c-17.7 0-32 14.3-32 32v32h96c35.3 0 64 28.7 64 64v128h192c17.7 0 32-14.3 32-32V192c0-17.7-14.3-32-32-32zm240 64h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16M64 256c-17.7 0-32 14.3-32 32v13l155.1 114.9c1.4 1 3.1 1.6 4.9 1.6s3.5-.6 4.9-1.6L352 301v-13c0-17.7-14.3-32-32-32zm288 84.8L216 441.6c-6.9 5.1-15.3 7.9-24 7.9s-17-2.8-24-7.9L32 340.8V480c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/equals.svg������������������������0000664�0000000�0000000�00000000711�14753064456�0027264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48 128c-17.7 0-32 14.3-32 32s14.3 32 32 32h352c17.7 0 32-14.3 32-32s-14.3-32-32-32zm0 192c-17.7 0-32 14.3-32 32s14.3 32 32 32h352c17.7 0 32-14.3 32-32s-14.3-32-32-32z"/></svg>�������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/eraser.svg������������������������0000664�0000000�0000000�00000001027�14753064456�0027254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M290.7 57.4 57.4 290.7c-25 25-25 65.5 0 90.5l80 80c12 12 28.3 18.7 45.3 18.7l105.3.1h224c17.7 0 32-14.3 32-32s-14.3-32-32-32H387.9l130.7-130.7c25-25 25-65.5 0-90.5L381.3 57.4c-25-25-65.5-25-90.5 0zm6.7 358.6H182.6l-80-80 124.7-124.7 137.4 137.4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/ethernet.svg����������������������0000664�0000000�0000000�00000001251�14753064456�0027610�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 224v192c0 17.7 14.3 32 32 32h64V336c0-8.8 7.2-16 16-16s16 7.2 16 16v112h64V336c0-8.8 7.2-16 16-16s16 7.2 16 16v112h64V336c0-8.8 7.2-16 16-16s16 7.2 16 16v112h64V336c0-8.8 7.2-16 16-16s16 7.2 16 16v112h64c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32h-32v-32c0-17.7-14.3-32-32-32h-32V96c0-17.7-14.3-32-32-32H160c-17.7 0-32 14.3-32 32v32H96c-17.7 0-32 14.3-32 32v32H32c-17.7 0-32 14.3-32 32"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/euro-sign.svg���������������������0000664�0000000�0000000�00000001352�14753064456�0027704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48.1 240c-.1 2.7-.1 5.3-.1 8v16c0 2.7 0 5.3.1 8H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h28.3C89.9 419.9 170 480 264 480h24c17.7 0 32-14.3 32-32s-14.3-32-32-32h-24c-57.9 0-108.2-32.4-133.9-80H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H112.2c-.1-2.6-.2-5.3-.2-8v-16c0-2.7.1-5.4.2-8H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H130.1c25.7-47.6 76-80 133.9-80h24c17.7 0 32-14.3 32-32s-14.3-32-32-32h-24C170 32 89.9 92.1 60.3 176H32c-17.7 0-32 14.3-32 32s14.3 32 32 32z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/exclamation.svg�������������������0000664�0000000�0000000�00000000634�14753064456�0030302�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 64c0-17.7-14.3-32-32-32S32 46.3 32 64v256c0 17.7 14.3 32 32 32s32-14.3 32-32zM64 480a40 40 0 1 0 0-80 40 40 0 1 0 0 80"/></svg>����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/expand.svg������������������������0000664�0000000�0000000�00000001327�14753064456�0027255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 32C14.3 32 0 46.3 0 64v96c0 17.7 14.3 32 32 32s32-14.3 32-32V96h64c17.7 0 32-14.3 32-32s-14.3-32-32-32zm32 320c0-17.7-14.3-32-32-32S0 334.3 0 352v96c0 17.7 14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H64zM320 32c-17.7 0-32 14.3-32 32s14.3 32 32 32h64v64c0 17.7 14.3 32 32 32s32-14.3 32-32V64c0-17.7-14.3-32-32-32zm128 320c0-17.7-14.3-32-32-32s-32 14.3-32 32v64h-64c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/explosion.svg���������������������0000664�0000000�0000000�00000001635�14753064456�0030020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M499.6 11.3c6.7-10.7 20.5-14.5 31.7-8.5s15.8 19.5 10.6 31L404.8 338.6c2.2 2.3 4.3 4.7 6.3 7.1l97.2-54.7c10.5-5.9 23.6-3.1 30.9 6.4s6.3 23-2.2 31.5l-87 87h-71.4c-13.2-37.3-48.7-64-90.5-64s-77.4 26.7-90.5 64H118l-75.7-52.2c-9.7-6.7-13.1-19.6-7.9-30.3s17.4-15.9 28.7-12.4l97.2 30.4c3-3.9 6.1-7.7 9.4-11.3l-62.3-103.8c-6.1-10.1-3.9-23.1 5.1-30.7s22.2-7.5 31.1.1L246 293.6c1.5-.4 3-.8 4.5-1.1l13.6-142.7c1.2-12.3 11.5-21.7 23.9-21.7s22.7 9.4 23.9 21.7l13.5 141.9zM64 448h480c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32zM288 0c13.3 0 24 10.7 24 24v48c0 13.3-10.7 24-24 24s-24-10.7-24-24V24c0-13.3 10.7-24 24-24"/></svg>���������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/eye-dropper.svg�������������������0000664�0000000�0000000�00000001332�14753064456�0030225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M341.6 29.2 240.1 130.8l-9.4-9.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-9.4-9.4 101.5-101.6c39-39 39-102.2 0-141.1s-102.2-39-141.1 0zM55.4 323.3c-15 15-23.4 35.4-23.4 56.6v42.4L5.4 462.2c-8.5 12.7-6.8 29.6 4 40.4s27.7 12.5 40.4 4L89.7 480h42.4c21.2 0 41.6-8.4 56.6-23.4l120.7-120.7-45.3-45.3-120.7 120.7c-3 3-7.1 4.7-11.3 4.7H96v-36.1c0-4.2 1.7-8.3 4.7-11.3l120.7-120.7-45.3-45.3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/eye-low-vision.svg����������������0000664�0000000�0000000�00000001720�14753064456�0030661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2s-6.3 25.5 4.1 33.7l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-105.2-82.4c39.6-40.6 66.4-86.1 79.9-118.4 3.3-7.9 3.3-16.7 0-24.6-14.9-35.7-46.2-87.7-93-131.1C465.5 68.8 400.8 32 320 32c-68.2 0-125 26.3-169.3 60.8zM223 149.5c48.6-44.3 123-50.8 179.3-11.7 60.8 42.4 78.9 123.2 44.2 186.9L408 294.5c8.4-19.3 10.6-41.4 4.8-63.3-11.1-41.5-47.8-69.4-88.6-71.1-5.8-.2-9.2 6.1-7.4 11.7 2.1 6.4 3.3 13.2 3.3 20.3 0 10.2-2.4 19.8-6.6 28.3zm223.1 298-363-286c-11 14.4-20.5 28.7-28.4 42.2l339 265.7c18.7-5.5 36.2-13 52.6-21.8zM34.5 268.3c14.9 35.7 46.2 87.7 93 131.1 47 43.8 111.7 80.6 192.5 80.6 3.1 0 6.1-.1 9.2-.2l-296.1-232c-1.8 6.8-1.3 14 1.4 20.5"/></svg>������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/eye-slash.svg���������������������0000664�0000000�0000000�00000002012�14753064456�0027660�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2s-6.3 25.5 4.1 33.7l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-105.2-82.4c39.6-40.6 66.4-86.1 79.9-118.4 3.3-7.9 3.3-16.7 0-24.6-14.9-35.7-46.2-87.7-93-131.1C465.5 68.8 400.8 32 320 32c-68.2 0-125 26.3-169.3 60.8zm184.3 144.4c25.5-23.3 59.6-37.5 96.9-37.5 79.5 0 144 64.5 144 144 0 24.9-6.3 48.3-17.4 68.7L408 294.5c8.4-19.3 10.6-41.4 4.8-63.3-11.1-41.5-47.8-69.4-88.6-71.1-5.8-.2-9.2 6.1-7.4 11.7 2.1 6.4 3.3 13.2 3.3 20.3 0 10.2-2.4 19.8-6.6 28.3l-90.3-70.8zM373 389.9c-16.4 6.5-34.3 10.1-53 10.1-79.5 0-144-64.5-144-144 0-6.9.5-13.6 1.4-20.2l-94.3-74.3c-22.8 29.7-39.1 59.3-48.6 82.2-3.3 7.9-3.3 16.7 0 24.6 14.9 35.7 46.2 87.7 93 131.1 47 43.8 111.7 80.6 192.5 80.6 47.8 0 89.9-12.9 126.2-32.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/eye.svg���������������������������0000664�0000000�0000000�00000001525�14753064456�0026560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 32c-80.8 0-145.5 36.8-192.6 80.6C48.6 156 17.3 208 2.5 243.7c-3.3 7.9-3.3 16.7 0 24.6C17.3 304 48.6 356 95.4 399.4 142.5 443.2 207.2 480 288 480s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1 3.3-7.9 3.3-16.7 0-24.6-14.9-35.7-46.2-87.7-93-131.1C433.5 68.8 368.8 32 288 32M144 256a144 144 0 1 1 288 0 144 144 0 1 1-288 0m144-64c0 35.3-28.7 64-64 64-7.1 0-13.9-1.2-20.3-3.3-5.5-1.8-11.9 1.6-11.7 7.4.3 6.9 1.3 13.8 3.2 20.7 13.7 51.2 66.4 81.6 117.6 67.9s81.6-66.4 67.9-117.6c-11.1-41.5-47.8-69.4-88.6-71.1-5.8-.2-9.2 6.1-7.4 11.7 2.1 6.4 3.3 13.2 3.3 20.3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/f.svg�����������������������������0000664�0000000�0000000�00000000676�14753064456�0026231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v352c0 17.7 14.3 32 32 32s32-14.3 32-32V288h160c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V96h224c17.7 0 32-14.3 32-32s-14.3-32-32-32z"/></svg>������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-angry.svg��������������������0000664�0000000�0000000�00000001707�14753064456�0030014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m338.7 139.9c6.6-5.9 7.1-16 1.2-22.6-16.1-17.9-44.2-37.3-83.9-37.3s-67.8 19.4-83.9 37.3c-5.9 6.6-5.4 16.7 1.2 22.6s16.7 5.4 22.6-1.2c11.7-13 31.6-26.7 60.1-26.7s48.4 13.7 60.1 26.7c5.9 6.6 16 7.1 22.6 1.2M176.4 272c17.7 0 32-14.3 32-32 0-1.5-.1-3-.3-4.4l10.9 3.6c8.4 2.8 17.4-1.7 20.2-10.1s-1.7-17.4-10.1-20.2l-96-32c-8.4-2.8-17.4 1.7-20.2 10.1s1.7 17.4 10.1 20.2l30.7 10.2c-5.8 5.8-9.3 13.8-9.3 22.6 0 17.7 14.3 32 32 32m192-32c0-8.9-3.6-17-9.5-22.8l30.2-10.1c8.4-2.8 12.9-11.9 10.1-20.2S387.3 174 379 176.8l-96 32c-8.4 2.8-12.9 11.9-10.1 20.2s11.9 12.9 20.2 10.1l11.7-3.9c-.2 1.5-.3 3.1-.3 4.7 0 17.7 14.3 32 32 32s32-14.3 32-32z"/></svg>���������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-dizzy.svg��������������������0000664�0000000�0000000�00000001610�14753064456�0030036�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m0-224a64 64 0 1 1 0 128 64 64 0 1 1 0-128M100.7 132.7c6.2-6.2 16.4-6.2 22.6 0l36.7 36.7 36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6L182.6 192l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L160 214.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l36.7-36.7-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6m192 0c6.2-6.2 16.4-6.2 22.6 0l36.7 36.7 36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6L374.6 192l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L352 214.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l36.7-36.7-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-flushed.svg������������������0000664�0000000�0000000�00000001117�14753064456�0030321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m176 128c0 8.8 7.2 16 16 16h128c8.8 0 16-7.2 16-16s-7.2-16-16-16H192c-8.8 0-16 7.2-16 16m-16-88a72 72 0 1 0 0-144 72 72 0 1 0 0 144m264-72a72 72 0 1 0-144 0 72 72 0 1 0 144 0m-288 0a24 24 0 1 1 48 0 24 24 0 1 1-48 0m192 0a24 24 0 1 1 48 0 24 24 0 1 1-48 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-frown-open.svg���������������0000664�0000000�0000000�00000001114�14753064456�0030756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m-79.6-336a32 32 0 1 1 0 64 32 32 0 1 1 0-64m128 32a32 32 0 1 1 64 0 32 32 0 1 1-64 0m-122 174.5c-12.4 5.2-26.5-4.1-21.1-16.4 16-36.6 52.4-62.1 94.8-62.1s78.8 25.6 94.8 62.1c5.4 12.3-8.7 21.6-21.1 16.4-22.4-9.5-47.4-14.8-73.7-14.8s-51.3 5.3-73.7 14.8"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-frown.svg��������������������0000664�0000000�0000000�00000001163�14753064456�0030023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m-96.7-123.3c-2.6 8.4-11.6 13.2-20 10.5s-13.2-11.6-10.5-20C145.2 326.1 196.3 288 256 288s110.8 38.1 127.3 91.3c2.6 8.4-2.1 17.4-10.5 20s-17.4-2.1-20-10.5C340.5 349.4 302.1 320 256 320s-84.5 29.4-96.7 68.7M144.4 208a32 32 0 1 1 64 0 32 32 0 1 1-64 0m192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-grimace.svg������������������0000664�0000000�0000000�00000001230�14753064456�0030272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m96-112h-8v-40h55.3c-3.8 22.7-23.6 40-47.3 40m47.3-56H344v-40h8c23.8 0 43.5 17.3 47.3 40m-71.3 0h-64v-40h64zm0 56h-64v-40h64zm-80-96v40h-64v-40zm0 56v40h-64v-40zm-80-16h-55.3c3.8-22.7 23.6-40 47.3-40h8zm0 56h-8c-23.8 0-43.5-17.3-47.3-40H168zm-23.6-192a32 32 0 1 1 64 0 32 32 0 1 1-64 0m192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-grin-beam-sweat.svg����������0000664�0000000�0000000�00000003033�14753064456�0031650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M476.8 126.3c-4.1 1.1-8.4 1.7-12.8 1.7-26.5 0-48-21-48-47 0-5 1.8-11.3 4.6-18.1l.9-2.1c9-20.2 26.5-44.9 36-57.5 3.2-4.4 9.6-4.4 12.8 0C483.4 20.6 512 61 512 81c0 21.7-14.9 39.8-35.2 45.3M256 0c51.4 0 99.3 15.2 139.4 41.2-1.5 3.1-3 6.2-4.3 9.3-3.4 8-7.1 19-7.1 30.5 0 44.3 36.6 79 80 79 9.6 0 18.8-1.7 27.4-4.8 13.3 30.9 20.6 65 20.6 100.8 0 141.4-114.6 256-256 256S0 397.4 0 256 114.6 0 256 0m127.8 317.8C345.3 329.4 301.9 336 256 336s-89.3-6.6-127.8-18.2c-12.3-3.7-24.3 7-19.2 18.7 24.5 56.9 81.1 96.7 147 96.7s122.5-39.8 147-96.7c5.1-11.8-6.9-22.4-19.2-18.7m-166.2-89c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2c-9.9 13.2-16.6 30.9-16.6 48.8 0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l.2-.2c.2-.2.4-.5.7-.9.6-.8 1.6-2 2.8-3.4 2.5-2.8 6-6.6 10.2-10.3 8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3 1.2 1.4 2.2 2.6 2.8 3.4.3.4.6.7.7.9zm160 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2c-9.9 13.2-16.6 30.9-16.6 48.8 0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l.2-.2c.2-.2.4-.5.7-.9.6-.8 1.6-2 2.8-3.4 2.5-2.8 6-6.6 10.2-10.3 8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3 1.2 1.4 2.2 2.6 2.8 3.4.3.4.6.7.7.9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-grin-beam.svg����������������0000664�0000000�0000000�00000002337�14753064456�0030535�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m132.1-199.2c12.3-3.8 24.3 6.9 19.3 18.7-25 59.1-83.2 100.5-151.1 100.5s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7 39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19m-170.5-84-.2-.2c-.2-.2-.4-.5-.7-.9-.6-.8-1.6-2-2.8-3.4-2.5-2.8-6-6.6-10.2-10.3-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3-1.2 1.4-2.2 2.6-2.8 3.4-.3.4-.6.7-.7.9l-.2.2c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8 9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8 0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8m160 0-.2-.2c-.2-.2-.4-.5-.7-.9-.6-.8-1.6-2-2.8-3.4-2.5-2.8-6-6.6-10.2-10.3-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3-1.2 1.4-2.2 2.6-2.8 3.4-.3.4-.6.7-.7.9l-.2.2c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8 9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8 0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-grin-hearts.svg��������������0000664�0000000�0000000�00000001537�14753064456�0031120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m132.1-199.2c12.3-3.8 24.3 6.9 19.3 18.7-25 59.1-83.2 100.5-151.1 100.5s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7 39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19M199.3 129.1c17.8 4.8 28.4 23.1 23.6 40.8l-17.4 65c-2.3 8.5-11.1 13.6-19.6 11.3l-65.1-17.4C103 224 92.4 205.7 97.2 188s23.1-28.4 40.8-23.6l16.1 4.3 4.3-16.1c4.8-17.8 23.1-28.4 40.8-23.6zm154.3 23.6 4.3 16.1 16.1-4.3c17.8-4.8 36.1 5.8 40.8 23.6s-5.8 36.1-23.6 40.8l-65.1 17.4c-8.5 2.3-17.3-2.8-19.6-11.3l-17.4-65c-4.8-17.8 5.8-36.1 23.6-40.8s36.1 5.8 40.9 23.6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-grin-squint-tears.svg��������0000664�0000000�0000000�00000003111�14753064456�0032257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M426.8 14.2c19.2-19.2 50.7-18.8 70.3.7s20 51 .7 70.3c-6.8 6.8-21.4 12.4-37.4 16.7-16.3 4.4-34.1 7.5-46.3 9.3-1.6.2-3.1.5-4.6.6-4.9.8-9.1-2.8-9.5-7.4-.1-.7 0-1.4.1-2.1 1.6-11.2 4.6-29.6 9-47 .3-1.3.7-2.6 1-3.9 4.3-15.9 9.8-30.5 16.7-37.4zm-44.7 19c-1.5 4.8-2.9 9.6-4.1 14.3-4.8 18.9-8 38.5-9.7 50.3-4 26.8 18.9 49.7 45.7 45.8 11.9-1.6 31.5-4.8 50.4-9.7 4.7-1.2 9.5-2.5 14.3-4.1 55.5 97.7 41.5 224-41.7 307.2s-209.5 97.2-307.2 41.8c1.5-4.8 2.8-9.6 4-14.3 4.8-18.9 8-38.5 9.7-50.3 4-26.8-18.9-49.7-45.7-45.8-11.9 1.6-31.5 4.8-50.4 9.7-4.7 1.2-9.5 2.5-14.3 4.1C-22.2 284.5-8.2 158.2 75 75c83.2-83.3 209.5-97.2 307.2-41.8zM51.5 410.1c18.5-5 38.8-8.3 50.9-10 .4-.1.7-.1 1-.1 5.1-.2 9.2 4.3 8.4 9.6-1.7 12.1-5 32.4-10 50.9-4.2 15.9-9.8 30.5-16.6 37.3-19.2 19.2-50.7 18.8-70.3-.7s-20-51-.7-70.3c6.8-6.8 21.4-12.4 37.4-16.7zM416.9 209c-4.7-11.9-20.8-11-26.8.3-19 35.5-45 70.8-77.5 103.3s-67.8 58.5-103.3 77.4c-11.3 6-12.2 22.1-.3 26.8 57.6 22.9 125.8 11 172.3-35.5s58.4-114.8 35.5-172.3zM87.1 285.1c2 2 4.6 3.2 7.3 3.4l56.1 5.1 5.1 56.1c.3 2.8 1.5 5.4 3.4 7.3 6.3 6.3 17.2 3.6 19.8-4.9l29.7-97.4c3.5-11.6-7.3-22.5-19-19L92 265.3c-8.6 2.6-11.3 13.4-4.9 19.8M265.3 92l-29.7 97.4c-3.5 11.6 7.3 22.5 19 19l97.4-29.7c8.6-2.6 11.3-13.4 4.9-19.8-2-2-4.6-3.2-7.3-3.4l-56.1-5.1-5.1-56.1c-.3-2.8-1.5-5.4-3.4-7.3-6.3-6.3-17.2-3.6-19.8 4.9z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-grin-squint.svg��������������0000664�0000000�0000000�00000001513�14753064456�0031147�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m132.1-199.2c12.3-3.8 24.3 6.9 19.3 18.7-25 59.1-83.2 100.5-151.1 100.5s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7 39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19M133.5 146.7l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5 0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6 0-9 9.6-14.7 17.5-10.5M396 157.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6 0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-grin-stars.svg���������������0000664�0000000�0000000�00000002106�14753064456�0030757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m407.4 75.5c5-11.8-7-22.5-19.3-18.7-39.7 12.2-84.5 19-131.8 19s-92.1-6.8-131.8-19c-12.3-3.8-24.3 6.9-19.3 18.7 25 59.1 83.2 100.5 151.1 100.5s126.2-41.4 151.1-100.5M160 120c-3.1 0-5.9 1.8-7.2 4.6l-16.6 34.7-38.1 5c-3.1.4-5.6 2.5-6.6 5.5s-.1 6.2 2.1 8.3l27.9 26.5-7 37.8c-.6 3 .7 6.1 3.2 7.9s5.8 2 8.5.6l33.8-18.4 33.8 18.3c2.7 1.5 6 1.3 8.5-.6s3.7-4.9 3.2-7.9l-7-37.8 27.9-26.5c2.2-2.1 3.1-5.3 2.1-8.3s-3.5-5.1-6.6-5.5l-38.1-5-16.6-34.7c-1.3-2.8-4.1-4.6-7.2-4.6zm192 0c-3.1 0-5.9 1.8-7.2 4.6l-16.6 34.7-38.1 5c-3.1.4-5.6 2.5-6.6 5.5s-.1 6.2 2.1 8.3l27.9 26.5-7 37.8c-.6 3 .7 6.1 3.2 7.9s5.8 2 8.5.6l33.8-18.4 33.8 18.3c2.7 1.5 6 1.3 8.5-.6s3.7-4.9 3.2-7.9l-7-37.8 27.9-26.5c2.2-2.1 3.1-5.3 2.1-8.3s-3.5-5.1-6.6-5.5l-38.1-5-16.6-34.7c-1.3-2.8-4.1-4.6-7.2-4.6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-grin-tears.svg���������������0000664�0000000�0000000�00000003733�14753064456�0030750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M548.6 371.4C506.4 454.8 419.9 512 320 512S133.6 454.8 91.4 371.4c4.5-2.9 8.7-6.3 12.7-10.3 8.1-8.1 13.2-18.6 16.5-26.6 3.6-8.8 6.5-18.4 8.8-27.5 4.6-18.2 7.7-37 9.3-48.2 3.9-26.5-18.8-49.2-45.2-45.4-6.8.9-16.2 2.4-26.6 4.4C85.3 94.5 191.6 0 320 0s234.7 94.5 253.2 217.7c-10.3-2-19.8-3.5-26.6-4.4-26.5-3.9-49.2 18.8-45.2 45.4 1.6 11.3 4.6 30 9.3 48.2 2.3 9.1 5.2 18.8 8.8 27.5 3.3 8.1 8.4 18.5 16.5 26.6 3.9 3.9 8.2 7.4 12.7 10.3zM107 254.1c-3.1 21.5-11.4 70.2-25.5 84.4-.9 1-1.9 1.8-2.9 2.7-18.6 15.5-46.6 14.3-64.3-3.5-18.7-18.7-19.1-48.8-.7-67.2 8.6-8.6 30.1-15.1 50.5-19.6 13-2.8 25.5-4.8 33.9-6 5.4-.8 9.9 3.7 9 9zm454.5 87.1c-.8-.6-1.5-1.3-2.3-2-.2-.2-.5-.4-.7-.7-14.1-14.1-22.5-62.9-25.5-84.4-.8-5.4 3.7-9.9 9-9 1 .1 2.2.3 3.3.5 8.2 1.2 19.2 3 30.6 5.5 20.4 4.4 41.9 10.9 50.5 19.6 18.4 18.4 18 48.5-.7 67.2-17.7 17.7-45.7 19-64.2 3.4zm-90.1-9.7c5-11.8-7-22.5-19.3-18.7-39.7 12.2-84.5 19-131.8 19s-92.1-6.8-131.8-19c-12.3-3.8-24.3 6.9-19.3 18.7 25 59.1 83.2 100.5 151.1 100.5s126.2-41.4 151.1-100.5M281.6 228.8c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2c-9.9 13.2-16.6 30.9-16.6 48.8 0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l.2-.2c.2-.2.4-.5.7-.9.6-.8 1.6-2 2.8-3.4 2.5-2.8 6-6.6 10.2-10.3 8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3 1.2 1.4 2.2 2.6 2.8 3.4.3.4.6.7.7.9zm160 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2c-9.9 13.2-16.6 30.9-16.6 48.8 0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l.2-.2c.2-.2.4-.5.7-.9.6-.8 1.6-2 2.8-3.4 2.5-2.8 6-6.6 10.2-10.3 8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3 1.2 1.4 2.2 2.6 2.8 3.4.3.4.6.7.7.9z"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-grin-tongue-squint.svg�������0000664�0000000�0000000�00000002157�14753064456�0032453�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 256c0 112.9 73.1 208.7 174.5 242.8C165.3 484 160 466.6 160 448v-47.3c-24-17.5-43.1-41.4-54.8-69.2-5-11.8 7-22.5 19.3-18.7 39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19c12.3-3.8 24.3 6.9 19.3 18.7-11.8 28-31.1 52-55.4 69.6V448c0 18.6-5.3 36-14.5 50.8C438.9 464.7 512 368.9 512 256 512 114.6 397.4 0 256 0S0 114.6 0 256m116-114.9c0-9 9.6-14.7 17.5-10.5l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5 0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6m262.5-10.5c7.9-4.2 17.5 1.5 17.5 10.5 0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6 0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8zM320 448v-45.4c0-14.7-11.9-26.6-26.6-26.6h-2c-11.3 0-21.1 7.9-23.6 18.9-2.8 12.6-20.8 12.6-23.6 0-2.5-11.1-12.3-18.9-23.6-18.9h-2c-14.7 0-26.6 11.9-26.6 26.6V448c0 35.3 28.7 64 64 64s64-28.7 64-64"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-grin-tongue-wink.svg���������0000664�0000000�0000000�00000002037�14753064456�0032075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M174.5 498.8C73.1 464.7 0 368.9 0 256 0 114.6 114.6 0 256 0s256 114.6 256 256c0 112.9-73.1 208.7-174.5 242.8C346.7 484 352 466.6 352 448v-46.9c24.3-17.5 43.6-41.6 55.4-69.6 5-11.8-7-22.5-19.3-18.7-39.7 12.2-84.5 19-131.8 19s-92.1-6.8-131.8-19c-12.3-3.8-24.3 6.9-19.3 18.7 11.7 27.8 30.8 51.7 54.8 69.2V448c0 18.6 5.3 36 14.5 50.8m20.7-265.2c5.3 7.1 15.3 8.5 22.4 3.2s8.5-15.3 3.2-22.4c-30.4-40.5-91.2-40.5-121.6 0-5.3 7.1-3.9 17.1 3.2 22.4s17.1 3.9 22.4-3.2c17.6-23.5 52.8-23.5 70.4 0M336 272a64 64 0 1 0 0-128 64 64 0 1 0 0 128m-16 130.6V448c0 35.3-28.7 64-64 64s-64-28.7-64-64v-45.4c0-14.7 11.9-26.6 26.6-26.6h2c11.3 0 21.1 7.9 23.6 18.9 2.8 12.6 20.8 12.6 23.6 0 2.5-11.1 12.3-18.9 23.6-18.9h2c14.7 0 26.6 11.9 26.6 26.6M336 184a24 24 0 1 1 0 48 24 24 0 1 1 0-48"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-grin-tongue.svg��������������0000664�0000000�0000000�00000001571�14753064456�0031131�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 256c0 112.9 73.1 208.7 174.5 242.8C165.3 484 160 466.6 160 448v-47.3c-24-17.5-43.1-41.4-54.8-69.2-5-11.8 7-22.5 19.3-18.7 39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19c12.3-3.8 24.3 6.9 19.3 18.7-11.8 28-31.1 52-55.4 69.6V448c0 18.6-5.3 36-14.5 50.8C438.9 464.7 512 368.9 512 256 512 114.6 397.4 0 256 0S0 114.6 0 256m176.4-80a32 32 0 1 1 0 64 32 32 0 1 1 0-64m128 32a32 32 0 1 1 64 0 32 32 0 1 1-64 0M320 448v-45.4c0-14.7-11.9-26.6-26.6-26.6h-2c-11.3 0-21.1 7.9-23.6 18.9-2.8 12.6-20.8 12.6-23.6 0-2.5-11.1-12.3-18.9-23.6-18.9h-2c-14.7 0-26.6 11.9-26.6 26.6V448c0 35.3 28.7 64 64 64s64-28.7 64-64"/></svg>���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-grin-wide.svg����������������0000664�0000000�0000000�00000001206�14753064456�0030553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m132.1-199.2c12.3-3.8 24.3 6.9 19.3 18.7-25 59.1-83.2 100.5-151.1 100.5s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7 39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19M208 192c0 35.3-14.3 64-32 64s-32-28.7-32-64 14.3-64 32-64 32 28.7 32 64m128 64c-17.7 0-32-28.7-32-64s14.3-64 32-64 32 28.7 32 64-14.3 64-32 64"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-grin-wink.svg����������������0000664�0000000�0000000�00000001300�14753064456�0030566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m132.1-199.2c12.3-3.8 24.3 6.9 19.3 18.7-25 59.1-83.2 100.5-151.1 100.5s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7 39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19m-16.9-79.2c-17.6-23.5-52.8-23.5-70.4 0-5.3 7.1-15.3 8.5-22.4 3.2s-8.5-15.3-3.2-22.4c30.4-40.5 91.2-40.5 121.6 0 5.3 7.1 3.9 17.1-3.2 22.4s-17.1 3.9-22.4-3.2M176.4 176a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-grin.svg���������������������0000664�0000000�0000000�00000001114�14753064456�0027623�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m132.1-199.2c12.3-3.8 24.3 6.9 19.3 18.7-25 59.1-83.2 100.5-151.1 100.5s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7 39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19M144.4 208a32 32 0 1 1 64 0 32 32 0 1 1-64 0m192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-kiss-beam.svg����������������0000664�0000000�0000000�00000003604�14753064456�0030545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m48.7-198.3c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4-2.7 1.5-5.7 3-8.7 4.3 3.1 1.3 6 2.7 8.7 4.3 6.6 3.7 12.5 8.2 16.7 13.4 4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4-13.3 7.4-30.6 12.3-48 12.3-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l.2-.1c.2-.1.5-.3.9-.5.8-.5 2-1.2 3.4-2.1 2.8-1.9 6.5-4.5 10.2-7.6s7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1-3.7-3.1-7.4-5.7-10.2-7.6-1.4-.9-2.6-1.6-3.4-2.1-.4-.2-.7-.4-.9-.5l-.2-.1c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l.2-.1.3-.2.6-.4c.8-.5 2-1.2 3.4-2.1 2.8-1.9 6.5-4.5 10.2-7.6s7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1-3.7-3.1-7.4-5.7-10.2-7.6-1.4-.9-2.6-1.6-3.4-2.1l-.4-.3-.5-.3-.2-.1c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3 6.6 3.7 12.5 8.2 16.7 13.4zm-87.1-84.9-.2-.2c-.2-.2-.4-.5-.7-.9-.6-.8-1.6-2-2.8-3.4-2.5-2.8-6-6.6-10.2-10.3-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3-1.2 1.4-2.2 2.6-2.8 3.4-.3.4-.6.7-.7.9l-.2.2c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8 9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8 0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8m160 0-.2-.2c-.2-.2-.4-.5-.7-.9-.6-.8-1.6-2-2.8-3.4-2.5-2.8-6-6.6-10.2-10.3-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3-1.2 1.4-2.2 2.6-2.8 3.4-.3.4-.6.7-.7.9l-.2.2c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8 9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8 0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8"/></svg>����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-kiss-wink-heart.svg����������0000664�0000000�0000000�00000003317�14753064456�0031713�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M498 339.7c9.1-26.2 14-54.4 14-83.7C512 114.6 397.4 0 256 0S0 114.6 0 256s114.6 256 256 256c35.4 0 69.1-7.2 99.7-20.2-4.8-5.5-8.5-12.2-10.4-19.7l-22.9-89.3c-10-39 11.8-80.9 51.8-92.1 37.2-10.4 73.8 10.1 87.5 44 12.7-1.6 25.1.4 36.2 5zM296 332c0 6.9-3.1 13.2-7.3 18.3-4.3 5.2-10.1 9.7-16.7 13.4-2.7 1.5-5.7 3-8.7 4.3 3.1 1.3 6 2.7 8.7 4.3 6.6 3.7 12.5 8.2 16.7 13.4 4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4-13.3 7.4-30.6 12.3-48 12.3-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l.2-.1c.2-.1.5-.3.9-.5.8-.5 2-1.2 3.4-2.1 2.8-1.9 6.5-4.5 10.2-7.6s7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1-3.7-3.1-7.4-5.7-10.2-7.6-1.4-.9-2.6-1.6-3.4-2.1l-.6-.4-.3-.2-.2-.1c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l.2-.1c.2-.1.5-.3.9-.5.8-.5 2-1.2 3.4-2.1 2.8-1.9 6.5-4.5 10.2-7.6s7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1-3.7-3.1-7.4-5.7-10.2-7.6-1.4-.9-2.6-1.6-3.4-2.1-.4-.2-.7-.4-.9-.5l-.2-.1c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3 6.6 3.7 12.5 8.2 16.7 13.4 4.3 5.1 7.3 11.4 7.3 18.3zM176.4 176a32 32 0 1 1 0 64 32 32 0 1 1 0-64m194.8 57.6c-17.6-23.5-52.8-23.5-70.4 0-5.3 7.1-15.3 8.5-22.4 3.2s-8.5-15.3-3.2-22.4c30.4-40.5 91.2-40.5 121.6 0 5.3 7.1 3.9 17.1-3.2 22.4s-17.1 3.9-22.4-3.2M434 352.3c-6-23.2-28.8-37-51.1-30.8s-35.4 30.1-29.5 53.4l22.9 89.3c2.2 8.7 11.2 13.9 19.8 11.4l84.9-23.8c22.2-6.2 35.4-30.1 29.5-53.4s-28.8-37-51.1-30.8l-20.2 5.6-5.4-21z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-kiss.svg���������������������0000664�0000000�0000000�00000002360�14753064456�0027641�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m48.7-198.3c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4-2.7 1.5-5.7 3-8.7 4.3 3.1 1.3 6 2.7 8.7 4.3 6.6 3.7 12.5 8.2 16.7 13.4 4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4-13.3 7.4-30.6 12.3-48 12.3-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l.2-.1c.2-.1.5-.3.9-.5.8-.5 2-1.2 3.4-2.1 2.8-1.9 6.5-4.5 10.2-7.6s7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1-3.7-3.1-7.4-5.7-10.2-7.6-1.4-.9-2.6-1.6-3.4-2.1-.4-.2-.7-.4-.9-.5l-.2-.1c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l.2-.1.3-.2.6-.4c.8-.5 2-1.2 3.4-2.1 2.8-1.9 6.5-4.5 10.2-7.6s7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1-3.7-3.1-7.4-5.7-10.2-7.6-1.4-.9-2.6-1.6-3.4-2.1l-.4-.3-.5-.3-.2-.1c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3 6.6 3.7 12.5 8.2 16.7 13.4zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1-64 0m192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-laugh-beam.svg���������������0000664�0000000�0000000�00000002266�14753064456�0030677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512M96.8 314.1c-3.8-13.7 7.4-26.1 21.6-26.1h275.2c14.2 0 25.5 12.4 21.6 26.1C396.2 382 332.1 432 256 432S115.8 382 96.8 314.1m120.8-101.3-.2-.2c-.2-.2-.4-.5-.7-.9-.6-.8-1.6-2-2.8-3.4-2.5-2.8-6-6.6-10.2-10.3-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3-1.2 1.4-2.2 2.6-2.8 3.4-.3.4-.6.7-.7.9l-.2.2c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8 9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8 0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8m160 0-.2-.2c-.2-.2-.4-.5-.7-.9-.6-.8-1.6-2-2.8-3.4-2.5-2.8-6-6.6-10.2-10.3-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3-1.2 1.4-2.2 2.6-2.8 3.4-.3.4-.6.7-.7.9l-.2.2c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8 9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8 0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-laugh-squint.svg�������������0000664�0000000�0000000�00000001437�14753064456�0031315�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512M96.8 314.1c-3.8-13.7 7.4-26.1 21.6-26.1h275.2c14.2 0 25.5 12.4 21.6 26.1C396.2 382 332.1 432 256 432S115.8 382 96.8 314.1m36.7-199.4 89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5 0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6 0-9 9.6-14.7 17.5-10.5M396 125.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6 0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-laugh-wink.svg���������������0000664�0000000�0000000�00000001226�14753064456�0030736�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512M96.8 314.1c-3.8-13.7 7.4-26.1 21.6-26.1h275.2c14.2 0 25.5 12.4 21.6 26.1C396.2 382 332.1 432 256 432S115.8 382 96.8 314.1M144.4 192a32 32 0 1 1 64 0 32 32 0 1 1-64 0m156.4 25.6c-5.3 7.1-15.3 8.5-22.4 3.2s-8.5-15.3-3.2-22.4c30.4-40.5 91.2-40.5 121.6 0 5.3 7.1 3.9 17.1-3.2 22.4s-17.1 3.9-22.4-3.2c-17.6-23.5-52.8-23.5-70.4 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-laugh.svg��������������������0000664�0000000�0000000�00000001041�14753064456�0027763�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512M96.8 314.1c-3.8-13.7 7.4-26.1 21.6-26.1h275.2c14.2 0 25.5 12.4 21.6 26.1C396.2 382 332.1 432 256 432S115.8 382 96.8 314.1M144.4 192a32 32 0 1 1 64 0 32 32 0 1 1-64 0m192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-meh-blank.svg����������������0000664�0000000�0000000�00000000644�14753064456�0030531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m208.4-48a32 32 0 1 0-64 0 32 32 0 1 0 64 0m128 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64"/></svg>��������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-meh.svg����������������������0000664�0000000�0000000�00000000771�14753064456�0027445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m-79.6-336a32 32 0 1 1 0 64 32 32 0 1 1 0-64m128 32a32 32 0 1 1 64 0 32 32 0 1 1-64 0M160 336h192c8.8 0 16 7.2 16 16s-7.2 16-16 16H160c-8.8 0-16-7.2-16-16s7.2-16 16-16"/></svg>�������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-rolling-eyes.svg�������������0000664�0000000�0000000�00000001425�14753064456�0031302�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m-64-144h128c8.8 0 16 7.2 16 16s-7.2 16-16 16H192c-8.8 0-16-7.2-16-16s7.2-16 16-16m32-144c0 35.3-28.7 64-64 64s-64-28.7-64-64c0-26 15.5-48.4 37.8-58.4-3.7 5.2-5.8 11.6-5.8 18.4 0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.9-2.2-13.2-5.8-18.4 22.3 10 37.8 32.4 37.8 58.4m128 64c-35.3 0-64-28.7-64-64 0-26 15.5-48.4 37.8-58.4-3.7 5.2-5.8 11.6-5.8 18.4 0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.9-2.2-13.2-5.8-18.4 22.3 10 37.8 32.4 37.8 58.4 0 35.3-28.7 64-64 64"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-sad-cry.svg������������������0000664�0000000�0000000�00000001621�14753064456�0030231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M352 493.4c-29.6 12-62.1 18.6-96 18.6s-66.4-6.6-96-18.6V288c0-8.8-7.2-16-16-16s-16 7.2-16 16v189.8C51.5 433.5 0 350.8 0 256 0 114.6 114.6 0 256 0s256 114.6 256 256c0 94.8-51.5 177.5-128 221.8V288c0-8.8-7.2-16-16-16s-16 7.2-16 16zM195.2 233.6c5.3 7.1 15.3 8.5 22.4 3.2s8.5-15.3 3.2-22.4c-30.4-40.5-91.2-40.5-121.6 0-5.3 7.1-3.9 17.1 3.2 22.4s17.1 3.9 22.4-3.2c17.6-23.5 52.8-23.5 70.4 0m121.6 0c17.6-23.5 52.8-23.5 70.4 0 5.3 7.1 15.3 8.5 22.4 3.2s8.5-15.3 3.2-22.4c-30.4-40.5-91.2-40.5-121.6 0-5.3 7.1-3.9 17.1 3.2 22.4s17.1 3.9 22.4-3.2M208 336v32c0 26.5 21.5 48 48 48s48-21.5 48-48v-32c0-26.5-21.5-48-48-48s-48 21.5-48 48"/></svg>���������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-sad-tear.svg�����������������0000664�0000000�0000000�00000001256�14753064456�0030373�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 256a256 256 0 1 0 512 0 256 256 0 1 0-512 0m240 80c0-8.8 7.2-16 16-16 45 0 85.6 20.5 115.7 53.1 6 6.5 5.6 16.6-.9 22.6s-16.6 5.6-22.6-.9c-25-27.1-57.4-42.9-92.3-42.9-8.8 0-16-7.2-16-16zm-80 80c-26.5 0-48-21-48-47 0-20 28.6-60.4 41.6-77.7 3.2-4.4 9.6-4.4 12.8 0C179.6 308.6 208 349 208 369c0 26-21.5 47-48 47m207.6-208a32 32 0 1 1-64 0 32 32 0 1 1 64 0m-192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-smile-beam.svg���������������0000664�0000000�0000000�00000002401�14753064456�0030677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m-91.9-186.5C182 346.2 212.6 368 256 368s74-21.8 91.9-42.5c5.8-6.7 15.9-7.4 22.6-1.6s7.4 15.9 1.6 22.6c-22.3 25.6-61 53.5-116.1 53.5s-93.8-27.9-116.1-53.5c-5.8-6.7-5.1-16.8 1.6-22.6s16.8-5.1 22.6 1.6m53.5-96.7-.2-.2c-.2-.2-.4-.5-.7-.9-.6-.8-1.6-2-2.8-3.4-2.5-2.8-6-6.6-10.2-10.3-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3-1.2 1.4-2.2 2.6-2.8 3.4-.3.4-.6.7-.7.9l-.2.2c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8 9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8 0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8m160 0-.2-.2c-.2-.2-.4-.5-.7-.9-.6-.8-1.6-2-2.8-3.4-2.5-2.8-6-6.6-10.2-10.3-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3-1.2 1.4-2.2 2.6-2.8 3.4-.3.4-.6.7-.7.9l-.2.2c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8 9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8 0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-smile-wink.svg���������������0000664�0000000�0000000�00000001343�14753064456�0030747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m-91.9-186.5C182 346.2 212.6 368 256 368s74-21.8 91.9-42.5c5.8-6.7 15.9-7.4 22.6-1.6s7.4 15.9 1.6 22.6c-22.3 25.6-61 53.5-116.1 53.5s-93.8-27.9-116.1-53.5c-5.8-6.7-5.1-16.8 1.6-22.6s16.8-5.1 22.6 1.6M144.4 208a32 32 0 1 1 64 0 32 32 0 1 1-64 0m156.4 25.6c-5.3 7.1-15.3 8.5-22.4 3.2s-8.5-15.3-3.2-22.4c30.4-40.5 91.2-40.5 121.6 0 5.3 7.1 3.9 17.1-3.2 22.4s-17.1 3.9-22.4-3.2c-17.6-23.5-52.8-23.5-70.4 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-smile.svg��������������������0000664�0000000�0000000�00000001156�14753064456�0030003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m-91.9-186.5C182 346.2 212.6 368 256 368s74-21.8 91.9-42.5c5.8-6.7 15.9-7.4 22.6-1.6s7.4 15.9 1.6 22.6c-22.3 25.6-61 53.5-116.1 53.5s-93.8-27.9-116.1-53.5c-5.8-6.7-5.1-16.8 1.6-22.6s16.8-5.1 22.6 1.6M144.4 208a32 32 0 1 1 64 0 32 32 0 1 1-64 0m192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-surprise.svg�����������������0000664�0000000�0000000�00000000723�14753064456�0030545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m-79.6-336a32 32 0 1 1 0 64 32 32 0 1 1 0-64m128 32a32 32 0 1 1 64 0 32 32 0 1 1-64 0M256 288a64 64 0 1 1 0 128 64 64 0 1 1 0-128"/></svg>���������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/face-tired.svg��������������������0000664�0000000�0000000�00000001767�14753064456�0030011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m-91.3-183.3c22-22 53.9-40.7 91.3-40.7s69.3 18.7 91.3 40.7c11.1 11.1 20.1 23.4 26.4 35.4 6.2 11.7 10.3 24.4 10.3 35.9 0 5.2-2.6 10.2-6.9 13.2s-9.8 3.7-14.7 1.8l-20.5-7.7C315 397.2 286.4 392 257.6 392h-3.2c-28.8 0-57.3 5.2-84.3 15.3l-20.5 7.7c-4.9 1.8-10.4 1.2-14.7-1.8s-6.9-7.9-6.9-13.2c0-11.6 4.2-24.2 10.3-35.9 6.3-12 15.3-24.3 26.4-35.4m-31.2-182 89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5 0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6 0-9 9.6-14.7 17.5-10.5M396 157.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6 0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/fan.svg���������������������������0000664�0000000�0000000�00000001437�14753064456�0026544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M258.6 0c-1.7 0-3.4.1-5.1.5C168 17 115.6 102.3 130.5 189.3c2.9 17 8.4 32.9 15.9 47.4L32 224h-2.6C13.2 224 0 237.2 0 253.4c0 1.7.1 3.4.5 5.1C17 344 102.3 396.4 189.3 381.5c17-2.9 32.9-8.4 47.4-15.9L224 480v2.6c0 16.2 13.2 29.4 29.4 29.4 1.7 0 3.4-.1 5.1-.5 85.5-16.5 137.9-101.8 123-188.8-2.9-17-8.4-32.9-15.9-47.4L480 288h2.6c16.2 0 29.4-13.2 29.4-29.4 0-1.7-.1-3.4-.5-5.1-16.5-85.5-101.8-137.9-188.8-123-17 2.9-32.9 8.4-47.4 15.9L288 32v-2.6C288 13.2 274.8 0 258.6 0M256 224a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/faucet-drip.svg�������������������0000664�0000000�0000000�00000001626�14753064456�0030203�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 0c17.7 0 32 14.3 32 32v12l96-12c17.7 0 32 14.3 32 32s-14.3 32-32 32l-96-12-31-3.9-1-.1-1 .1-31 3.9-96 12c-17.7 0-32-14.3-32-32s14.3-32 32-32l96 12V32c0-17.7 14.3-32 32-32M0 224c0-17.7 14.3-32 32-32h96l22.6-22.6c6-6 14.1-9.4 22.6-9.4h18.7v-43.8l32-4 32 4V160h18.7c8.5 0 16.6 3.4 22.6 9.4L320 192h32c88.4 0 160 71.6 160 160 0 17.7-14.3 32-32 32h-64c-17.7 0-32-14.3-32-32s-14.3-32-32-32h-36.1c-20.2 29-53.9 48-91.9 48s-71.7-19-91.9-48H32c-17.7 0-32-14.3-32-32zm436.8 199.4c1.9-4.5 6.3-7.4 11.2-7.4s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1v1.2c0 17.7-14.3 32-32 32s-32-14.3-32-32v-1.2c0-4.5.9-8.9 2.7-13.1l18.2-42.4z"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/faucet.svg������������������������0000664�0000000�0000000�00000001355�14753064456�0027246�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 96v12L96 96c-17.7 0-32 14.3-32 32s14.3 32 32 32l96-12 31-3.9 1-.1 1 .1 31 3.9 96 12c17.7 0 32-14.3 32-32s-14.3-32-32-32l-96 12V96c0-17.7-14.3-32-32-32s-32 14.3-32 32M32 256c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32h100.1c20.2 29 53.9 48 91.9 48s71.7-19 91.9-48H352c17.7 0 32 14.3 32 32s14.3 32 32 32h64c17.7 0 32-14.3 32-32 0-88.4-71.6-160-160-160h-32l-22.6-22.6c-6-6-14.1-9.4-22.6-9.4H256v-43.8l-32-4-32 4V224h-18.7c-8.5 0-16.6 3.4-22.6 9.4L128 256z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/fax.svg���������������������������0000664�0000000�0000000�00000001403�14753064456�0026547�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 64v96h64V64h194.7L416 93.3V160h64V93.3c0-17-6.7-33.3-18.7-45.3L432 18.7C420 6.7 403.7 0 386.7 0H192c-35.3 0-64 28.7-64 64M0 160v320c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H32c-17.7 0-32 14.3-32 32m480 32H128v288c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32m-224 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64m96 32a32 32 0 1 1 64 0 32 32 0 1 1-64 0m32 96a32 32 0 1 1 0 64 32 32 0 1 1 0-64m-160 32a32 32 0 1 1 64 0 32 32 0 1 1-64 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/feather-pointed.svg���������������0000664�0000000�0000000�00000001565�14753064456�0031060�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M278.5 215.6 23 471c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l74.8-74.8c7.4 4.6 15.3 8.2 23.8 10.5 44.8 12.2 114.5 13.9 182.5-31.2 12.2-8.1 5.8-25.4-8.8-25.4h-16.1c-5.1 0-9.2-4.1-9.2-9.2 0-4.1 2.7-7.6 6.5-8.8l97.7-29.3c3.4-1 6.4-3.1 8.4-6.1 4.4-6.4 8.6-12.9 12.6-19.6 6.2-10.3-1.5-23-13.5-23H377c-5.1 0-9.2-4.1-9.2-9.2 0-4.1 2.7-7.6 6.5-8.8l80.9-24.3c4.6-1.4 8.4-4.8 10.2-9.3 29.1-73.4 42.4-150.3 46.5-199.6.8-9.9-3-19.6-10-26.6S485.2-.6 475.3.2C391.5 7 228.5 40.5 137.4 131.6c-80.1 80.1-80.7 170.7-66.1 224.8 2.1 7.9 12 9.6 17.8 3.8l164.5-164.4c6.2-6.2 16.4-6.2 22.6 0 5.4 5.4 6.1 13.6 2.2 19.8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/feather.svg�����������������������0000664�0000000�0000000�00000001445�14753064456�0027415�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M278.5 215.6 23 471c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l57-57h68c49.7 0 97.9-14.4 139-41 11.1-7.2 5.5-23-7.8-23-5.1 0-9.2-4.1-9.2-9.2 0-4.1 2.7-7.6 6.5-8.8l81-24.3c2.5-.8 4.8-2.1 6.7-4l22.4-22.4c10.1-10.1 2.9-27.3-11.3-27.3H377c-5.1 0-9.2-4.1-9.2-9.2 0-4.1 2.7-7.6 6.5-8.8l112-33.6c4-1.2 7.4-3.9 9.3-7.7 10.8-21 16.4-44.5 16.4-68.6 0-41-16.3-80.3-45.3-109.3l-5.5-5.5C432.3 16.3 393 0 352 0s-80.3 16.3-109.3 45.3L139 149c-48 48-75 113.1-75 181v55.3l189.6-189.5c6.2-6.2 16.4-6.2 22.6 0 5.4 5.4 6.1 13.6 2.2 19.8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/ferry.svg�������������������������0000664�0000000�0000000�00000002462�14753064456�0027126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 0h128c17.7 0 32 14.3 32 32h75.1c20.6 0 31.6 24.3 18.1 39.8L456 96H120L98.8 71.8C85.3 56.3 96.3 32 116.9 32H192c0-17.7 14.3-32 32-32M96 128h384c17.7 0 32 14.3 32 32v123.5c0 13.3-4.2 26.3-11.9 37.2l-51.4 71.9c-1.9 1.1-3.7 2.2-5.5 3.5-15.5 10.7-34 18-51 19.9h-16.5c-17.1-1.8-35-9-50.8-19.9-22.1-15.5-51.6-15.5-73.7 0-14.8 10.2-32.5 18-50.6 19.9H184c-17-1.8-35.6-9.2-51-19.9-1.8-1.3-3.7-2.4-5.6-3.5l-51.5-71.9C68.2 309.8 64 296.8 64 283.5V160c0-17.7 14.3-32 32-32m32 64v96h320v-96zm178.5 229.9c22.5 15.5 50 26.1 77.5 26.1 26.9 0 55.3-10.8 77.4-26.1 11.9-8.5 28.1-7.8 39.2 1.7 14.4 11.9 32.5 21 50.6 25.2 17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25-29 15.6-61.5 25.9-94.5 25.9-31.9 0-60.6-9.9-80.4-18.9-5.8-2.7-11.1-5.3-15.6-7.7-4.5 2.4-9.7 5.1-15.6 7.7-19.8 9-48.5 18.9-80.4 18.9-33 0-65.5-10.3-94.5-25.8-13.4 8.4-33.7 19.3-58.2 25-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2 11.1-9.4 27.3-10.1 39.2-1.7 22.1 15.2 50.5 26 77.4 26 27.5 0 55-10.6 77.5-26.1 11.1-7.9 25.9-7.9 37 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-arrow-down.svg���������������0000664�0000000�0000000�00000001131�14753064456�0031003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0zm192 0v128h128zm-40 232v102.1l31-31c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-72 72c-9.4 9.4-24.6 9.4-33.9 0l-72-72c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l31 31L168 232c0-13.3 10.7-24 24-24s24 10.7 24 24"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-arrow-up.svg�����������������0000664�0000000�0000000�00000001124�14753064456�0030462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0zm192 0v128h128zm-40 408c0 13.3-10.7 24-24 24s-24-10.7-24-24V305.9l-31 31c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l72-72c9.4-9.4 24.6-9.4 33.9 0l72 72c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-31-31z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-audio.svg��������������������0000664�0000000�0000000�00000001717�14753064456�0030017�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0zm192 0v128h128zm2 226.3c37.1 22.4 62 63.1 62 109.7s-24.9 87.3-62 109.7c-7.6 4.6-17.4 2.1-22-5.4s-2.1-17.4 5.4-22c28-16.8 46.6-47.4 46.6-82.3s-18.6-65.5-46.5-82.3c-7.6-4.6-10-14.4-5.4-22s14.4-10 22-5.4zm-91.9 30.9c6 2.5 9.9 8.3 9.9 14.8v128c0 6.5-3.9 12.3-9.9 14.8s-12.9 1.1-17.4-3.5L113.4 376H80c-8.8 0-16-7.2-16-16v-48c0-8.8 7.2-16 16-16h33.4l35.3-35.3c4.6-4.6 11.5-5.9 17.4-3.5m51 34.9c6.6-5.9 16.7-5.3 22.6 1.3 10.1 11.2 16.3 26.2 16.3 42.6s-6.2 31.4-16.3 42.7c-5.9 6.6-16 7.1-22.6 1.3s-7.1-16-1.3-22.6c5.1-5.7 8.1-13.1 8.1-21.3s-3.1-15.7-8.1-21.3c-5.9-6.6-5.3-16.7 1.3-22.6z"/></svg>�������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-circle-check.svg�������������0000664�0000000�0000000�00000001244�14753064456�0031225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64C0 28.7 28.7 0 64 0h160v128c0 17.7 14.3 32 32 32h128v38.6c-73.9 20.9-128 88.8-128 169.4 0 59.1 29.1 111.3 73.7 143.3-3.2.5-6.4.7-9.7.7H64c-35.3 0-64-28.7-64-64zm384 64H256V0zm-96 240a144 144 0 1 1 288 0 144 144 0 1 1-288 0m211.3-43.3c-6.2-6.2-16.4-6.2-22.6 0L416 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-circle-exclamation.svg�������0000664�0000000�0000000�00000001177�14753064456�0032461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64C0 28.7 28.7 0 64 0h160v128c0 17.7 14.3 32 32 32h128v38.6c-73.9 20.9-128 88.8-128 169.4 0 59.1 29.1 111.3 73.7 143.3-3.2.5-6.4.7-9.7.7H64c-35.3 0-64-28.7-64-64zm384 64H256V0zm48 96a144 144 0 1 1 0 288 144 144 0 1 1 0-288m0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48m0-192c-8.8 0-16 7.2-16 16v80c0 8.8 7.2 16 16 16s16-7.2 16-16v-80c0-8.8-7.2-16-16-16"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-circle-minus.svg�������������0000664�0000000�0000000�00000001132�14753064456�0031277�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64C0 28.7 28.7 0 64 0h160v128c0 17.7 14.3 32 32 32h128v38.6c-73.9 20.9-128 88.8-128 169.4 0 59.1 29.1 111.3 73.7 143.3-3.2.5-6.4.7-9.7.7H64c-35.3 0-64-28.7-64-64zm384 64H256V0zm-96 240a144 144 0 1 1 288 0 144 144 0 1 1-288 0m224 0c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16s7.2 16 16 16h128c8.8 0 16-7.2 16-16"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-circle-plus.svg��������������0000664�0000000�0000000�00000001245�14753064456�0031134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64C0 28.7 28.7 0 64 0h160v128c0 17.7 14.3 32 32 32h128v38.6c-73.9 20.9-128 88.8-128 169.4 0 59.1 29.1 111.3 73.7 143.3-3.2.5-6.4.7-9.7.7H64c-35.3 0-64-28.7-64-64zm384 64H256V0zm48 96a144 144 0 1 1 0 288 144 144 0 1 1 0-288m16 80c0-8.8-7.2-16-16-16s-16 7.2-16 16v48h-48c-8.8 0-16 7.2-16 16s7.2 16 16 16h48v48c0 8.8 7.2 16 16 16s16-7.2 16-16v-48h48c8.8 0 16-7.2 16-16s-7.2-16-16-16h-48z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-circle-question.svg����������0000664�0000000�0000000�00000001527�14753064456�0032023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64C0 28.7 28.7 0 64 0h160v128c0 17.7 14.3 32 32 32h128v38.6c-73.9 20.9-128 88.8-128 169.4 0 59.1 29.1 111.3 73.7 143.3-3.2.5-6.4.7-9.7.7H64c-35.3 0-64-28.7-64-64zm384 64H256V0zm48 96a144 144 0 1 1 0 288 144 144 0 1 1 0-288m0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48m-64-142.4v6.4c0 8.8 7.2 16 16 16s16-7.2 16-16v-6.4c0-5.3 4.3-9.6 9.6-9.6h40.5c7.7 0 13.9 6.2 13.9 13.9 0 5.2-2.9 9.9-7.4 12.3l-32 16.8c-5.3 2.8-8.6 8.2-8.6 14.2V384c0 8.8 7.2 16 16 16s16-7.2 16-16v-5.1l23.5-12.3C486.6 358.7 496 343 496 326c0-25.4-20.6-45.9-45.9-45.9h-40.5c-23 0-41.6 18.6-41.6 41.6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-circle-xmark.svg�������������0000664�0000000�0000000�00000001372�14753064456�0031274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64C0 28.7 28.7 0 64 0h160v128c0 17.7 14.3 32 32 32h128v38.6c-73.9 20.9-128 88.8-128 169.4 0 59.1 29.1 111.3 73.7 143.3-3.2.5-6.4.7-9.7.7H64c-35.3 0-64-28.7-64-64zm384 64H256V0zm48 96a144 144 0 1 1 0 288 144 144 0 1 1 0-288m59.3 107.3c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L432 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l36.7 36.7-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l36.7-36.7 36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L454.6 368z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-code.svg���������������������0000664�0000000�0000000�00000001265�14753064456�0027626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0zm192 0v128h128zM153 289l-31 31 31 31c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L71 337c-9.4-9.4-9.4-24.6 0-33.9l48-48c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9zm112-34 48 48c9.4 9.4 9.4 24.6 0 33.9l-48 48c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l31-31-31-31c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-contract.svg�����������������0000664�0000000�0000000�00000001724�14753064456�0030531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0zm192 0v128h128zM80 64h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16m0 64h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16m54.2 253.8c-6.1 20.3-24.8 34.2-46 34.2H80c-8.8 0-16-7.2-16-16s7.2-16 16-16h8.2c7.1 0 13.3-4.6 15.3-11.4l14.9-49.5c3.4-11.3 13.8-19.1 25.6-19.1s22.2 7.7 25.6 19.1l11.6 38.6c7.4-6.2 16.8-9.7 26.8-9.7 15.9 0 30.4 9 37.5 23.2l4.4 8.8H304c8.8 0 16 7.2 16 16s-7.2 16-16 16h-64c-6.1 0-11.6-3.4-14.3-8.8l-8.8-17.7c-1.7-3.4-5.1-5.5-8.8-5.5s-7.2 2.1-8.8 5.5l-8.8 17.7c-2.9 5.9-9.2 9.4-15.7 8.8s-12.1-5.1-13.9-11.3L144 349z"/></svg>��������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-csv.svg����������������������0000664�0000000�0000000�00000002337�14753064456�0027510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64C0 28.7 28.7 0 64 0h160v128c0 17.7 14.3 32 32 32h128v144H176c-35.3 0-64 28.7-64 64v144H64c-35.3 0-64-28.7-64-64zm384 64H256V0zM200 352h16c22.1 0 40 17.9 40 40v8c0 8.8-7.2 16-16 16s-16-7.2-16-16v-8c0-4.4-3.6-8-8-8h-16c-4.4 0-8 3.6-8 8v80c0 4.4 3.6 8 8 8h16c4.4 0 8-3.6 8-8v-8c0-8.8 7.2-16 16-16s16 7.2 16 16v8c0 22.1-17.9 40-40 40h-16c-22.1 0-40-17.9-40-40v-80c0-22.1 17.9-40 40-40m133.1 0H368c8.8 0 16 7.2 16 16s-7.2 16-16 16h-34.9c-7.2 0-13.1 5.9-13.1 13.1 0 5.2 3 9.9 7.8 12l37.4 16.6c16.3 7.2 26.8 23.4 26.8 41.2 0 24.9-20.2 45.1-45.1 45.1H304c-8.8 0-16-7.2-16-16s7.2-16 16-16h42.9c7.2 0 13.1-5.9 13.1-13.1 0-5.2-3-9.9-7.8-12l-37.4-16.6c-16.3-7.2-26.8-23.4-26.8-41.2 0-24.9 20.2-45.1 45.1-45.1m98.9 0c8.8 0 16 7.2 16 16v31.6c0 23 5.5 45.6 16 66 10.5-20.3 16-42.9 16-66V368c0-8.8 7.2-16 16-16s16 7.2 16 16v31.6c0 34.7-10.3 68.7-29.6 97.6l-5.1 7.7c-3 4.5-8 7.1-13.3 7.1s-10.3-2.7-13.3-7.1l-5.1-7.7c-19.3-28.9-29.6-62.9-29.6-97.6V368c0-8.8 7.2-16 16-16"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-excel.svg��������������������0000664�0000000�0000000�00000001256�14753064456�0030014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0zm192 0v128h128zM155.7 250.2l36.3 51.9 36.3-51.9c7.6-10.9 22.6-13.5 33.4-5.9s13.5 22.6 5.9 33.4L221.3 344l46.4 66.2c7.6 10.9 5 25.8-5.9 33.4s-25.8 5-33.4-5.9L192 385.8l-36.3 51.9c-7.6 10.9-22.6 13.5-33.4 5.9s-13.5-22.6-5.9-33.4l46.3-66.2-46.4-66.2c-7.6-10.9-5-25.8 5.9-33.4s25.8-5 33.4 5.9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-export.svg�������������������0000664�0000000�0000000�00000001143�14753064456�0030230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64C0 28.7 28.7 0 64 0h160v128c0 17.7 14.3 32 32 32h128v128H216c-13.3 0-24 10.7-24 24s10.7 24 24 24h168v112c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm384 272v-48h110.1l-39-39c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l80 80c9.4 9.4 9.4 24.6 0 33.9l-80 80c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l39-39zm0-208H256V0z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-fragment.svg�����������������0000664�0000000�0000000�00000001013�14753064456�0030506�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64C0 28.7 28.7 0 64 0h160v128c0 17.7 14.3 32 32 32h128v288c0 35.3-28.7 64-64 64H192V384c0-35.3-28.7-64-64-64H0zm384 64H256V0zM32 352h96c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32v-96c0-17.7 14.3-32 32-32"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-half-dashed.svg��������������0000664�0000000�0000000�00000000765�14753064456�0031060�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v256h384V160H256c-17.7 0-32-14.3-32-32V0zm192 0v128h128zM0 416h64v-64H0zm288 32h-80v64h80zm-112 0H96v64h80zm-112 0H0c0 35.3 28.7 64 64 64zm256 0v64c35.3 0 64-28.7 64-64zm64-32v-64h-64v64z"/></svg>�����������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-image.svg��������������������0000664�0000000�0000000�00000001235�14753064456�0027773�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0zm192 0v128h128zM64 256a32 32 0 1 1 64 0 32 32 0 1 1-64 0m152 32c5.3 0 10.2 2.6 13.2 6.9l88 128c3.4 4.9 3.7 11.3 1 16.5S310 448 304 448H80c-5.8 0-11.1-3.1-13.9-8.1s-2.8-11.2.2-16.1l48-80c2.9-4.8 8.1-7.8 13.7-7.8s10.8 2.9 13.7 7.8l12.8 21.4 48.3-70.2c3-4.3 7.9-6.9 13.2-6.9z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-import.svg�������������������0000664�0000000�0000000�00000001152�14753064456�0030221�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 64c0-35.3 28.7-64 64-64h160v128c0 17.7 14.3 32 32 32h128v288c0 35.3-28.7 64-64 64H192c-35.3 0-64-28.7-64-64V336h174.1l-39 39c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l80-80c9.4-9.4 9.4-24.6 0-33.9l-80-80c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l39 39-174.1.1zm0 224v48H24c-13.3 0-24-10.7-24-24s10.7-24 24-24zm384-160H384V0z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-invoice-dollar.svg�����������0000664�0000000�0000000�00000002504�14753064456�0031620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0zm192 0v128h128zM64 80c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16m0 64c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16m128 72c8.8 0 16 7.2 16 16v17.3c8.5 1.2 16.7 3.1 24.1 5.1 8.5 2.3 13.6 11 11.3 19.6s-11 13.6-19.6 11.3c-11.1-3-22-5.2-32.1-5.3-8.4-.1-17.4 1.8-23.6 5.5-5.7 3.4-8.1 7.3-8.1 12.8 0 3.7 1.3 6.5 7.3 10.1 6.9 4.1 16.6 7.1 29.2 10.9l.5.1c11.3 3.4 25.3 7.6 36.3 14.6 12.1 7.6 22.4 19.7 22.7 38.2.3 19.3-9.6 33.3-22.9 41.6-7.7 4.8-16.4 7.6-25.1 9.1V440c0 8.8-7.2 16-16 16s-16-7.2-16-16v-17.8c-11.2-2.1-21.7-5.7-30.9-8.9-2.1-.7-4.2-1.4-6.2-2.1-8.4-2.8-12.9-11.9-10.1-20.2s11.9-12.9 20.2-10.1c2.5.8 4.8 1.6 7.1 2.4 13.6 4.6 24.6 8.4 36.3 8.7 9.1.3 17.9-1.7 23.7-5.3 5.1-3.2 7.9-7.3 7.8-14-.1-4.6-1.8-7.8-7.7-11.6-6.8-4.3-16.5-7.4-29-11.2l-1.6-.5c-11-3.3-24.3-7.3-34.8-13.7-12-7.2-22.6-18.9-22.7-37.3-.1-19.4 10.8-32.8 23.8-40.5 7.5-4.4 15.8-7.2 24.1-8.7v-17.3c0-8.8 7.2-16 16-16z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-invoice.svg������������������0000664�0000000�0000000�00000001402�14753064456�0030341�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0zm192 0v128h128zM80 64h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16m0 64h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16m16 96h192c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32v-64c0-17.7 14.3-32 32-32m0 32v64h192v-64zm144 160h64c8.8 0 16 7.2 16 16s-7.2 16-16 16h-64c-8.8 0-16-7.2-16-16s7.2-16 16-16"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-lines.svg��������������������0000664�0000000�0000000�00000001214�14753064456�0030020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0zm192 0v128h128zM112 256h160c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16m0 64h160c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16m0 64h160c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-medical.svg������������������0000664�0000000�0000000�00000001145�14753064456�0030307�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0zm192 0v128h128zm-96 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-48h-48c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16h48z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-pdf.svg����������������������0000664�0000000�0000000�00000001570�14753064456�0027464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64C0 28.7 28.7 0 64 0h160v128c0 17.7 14.3 32 32 32h128v144H176c-35.3 0-64 28.7-64 64v144H64c-35.3 0-64-28.7-64-64zm384 64H256V0zM176 352h32c30.9 0 56 25.1 56 56s-25.1 56-56 56h-16v32c0 8.8-7.2 16-16 16s-16-7.2-16-16V368c0-8.8 7.2-16 16-16m32 80c13.3 0 24-10.7 24-24s-10.7-24-24-24h-16v48zm96-80h32c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48h-32c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16m32 128c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16h-16v96zm80-112c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16s-7.2 16-16 16h-32v32h32c8.8 0 16 7.2 16 16s-7.2 16-16 16h-32v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V368"/></svg>����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-pen.svg����������������������0000664�0000000�0000000�00000001332�14753064456�0027471�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64C0 28.7 28.7 0 64 0h160v128c0 17.7 14.3 32 32 32h128v125.7l-86.8 86.8c-10.3 10.3-17.5 23.1-21 37.2l-18.7 74.9c-2.3 9.2-1.8 18.8 1.3 27.5L64 512c-35.3 0-64-28.7-64-64zm384 64H256V0zm165.8 107.7 14.4 14.4c15.6 15.6 15.6 40.9 0 56.6l-29.4 29.4-71-71 29.4-29.4c15.6-15.6 40.9-15.6 56.6 0M311.9 417l129.2-129.2 71 71-129.2 129.1c-4.1 4.1-9.2 7-14.9 8.4l-60.1 15c-5.5 1.4-11.2-.2-15.2-4.2s-5.6-9.7-4.2-15.2l15-60.1c1.4-5.6 4.3-10.8 8.4-14.9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-powerpoint.svg���������������0000664�0000000�0000000�00000001074�14753064456�0031120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0zm192 0v128h128zM136 240h68c42 0 76 34 76 76s-34 76-76 76h-44v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V264c0-13.3 10.7-24 24-24m68 104c15.5 0 28-12.5 28-28s-12.5-28-28-28h-44v56z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-prescription.svg�������������0000664�0000000�0000000�00000001435�14753064456�0031434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0zm192 0v128h128zM104 196h72c33.1 0 60 26.9 60 60 0 25.5-15.9 47.2-38.3 55.9l43 40.3 33.8-31c8.1-7.5 20.8-6.9 28.3 1.2s6.9 20.8-1.2 28.3l-31.6 29 31.7 29.7c8.1 7.6 8.5 20.2.9 28.3s-20.2 8.5-28.3.9l-33.9-31.8-34.9 32c-8.1 7.5-20.8 6.9-28.3-1.2s-6.9-20.8 1.2-28.3l32.6-29.9-64.8-60.8c-.9-.8-1.6-1.7-2.3-2.6h-20v44c0 11-9 20-20 20s-20-9-20-20V216c0-11 9-20 20-20zm72 80c11 0 20-9 20-20s-9-20-20-20h-52v40z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-shield.svg�������������������0000664�0000000�0000000�00000001307�14753064456�0030161�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64C0 28.7 28.7 0 64 0h160v128c0 17.7 14.3 32 32 32h128v47l-92.8 37.1c-21.3 8.5-35.2 29.1-35.2 52 0 56.6 18.9 148 94.2 208.3-9 4.8-19.3 7.6-30.2 7.6H64c-35.3 0-64-28.7-64-64zm384 64H256V0zm39.1 97.7c5.7-2.3 12.1-2.3 17.8 0l120 48c9.1 3.7 15.1 12.5 15.1 22.3 0 63.3-25.9 168.8-134.8 214.2-5.9 2.5-12.6 2.5-18.5 0C313.9 464.8 288 359.3 288 296c0-9.8 6-18.6 15.1-22.3zM527.4 312 432 273.8v187.8c68.2-33 91.5-99 95.4-149.7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-signature.svg����������������0000664�0000000�0000000�00000002221�14753064456�0030706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64v-19.3c-2.7 1.1-5.4 2-8.2 2.7l-60.1 15c-3 .7-6 1.2-9 1.4-.9.1-1.8.2-2.7.2h-64c-6.1 0-11.6-3.4-14.3-8.8l-8.8-17.7c-1.7-3.4-5.1-5.5-8.8-5.5s-7.2 2.1-8.8 5.5l-8.8 17.7c-2.9 5.9-9.2 9.4-15.7 8.8s-12.1-5.1-13.9-11.3L144 381l-9.8 32.8c-6.1 20.3-24.8 34.2-46 34.2H80c-8.8 0-16-7.2-16-16s7.2-16 16-16h8.2c7.1 0 13.3-4.6 15.3-11.4l14.9-49.5c3.4-11.3 13.8-19.1 25.6-19.1s22.2 7.8 25.6 19.1l11.6 38.6c7.4-6.2 16.8-9.7 26.8-9.7 15.9 0 30.4 9 37.5 23.2l4.4 8.8h8.9c-3.1-8.8-3.7-18.4-1.4-27.8l15-60.1c2.8-11.3 8.6-21.5 16.8-29.7l94.8-94.8V160H256c-17.7 0-32-14.3-32-32V0zm192 0v128h128zm293.8 139.7c-15.6-15.6-40.9-15.6-56.6 0l-29.4 29.4 71 71 29.4-29.4c15.6-15.6 15.6-40.9 0-56.6zM311.9 321c-4.1 4.1-7 9.2-8.4 14.9l-15 60.1c-1.4 5.5.2 11.2 4.2 15.2s9.7 5.6 15.2 4.2l60.1-15c5.6-1.4 10.8-4.3 14.9-8.4l129.2-129.3-71-71z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-video.svg��������������������0000664�0000000�0000000�00000001207�14753064456�0030016�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0zm192 0v128h128zM64 288c0-17.7 14.3-32 32-32h96c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32zm236.9 109.9L256 368v-64l44.9-29.9c2-1.3 4.4-2.1 6.8-2.1 6.8 0 12.3 5.5 12.3 12.3v103.4c0 6.8-5.5 12.3-12.3 12.3-2.4 0-4.8-.7-6.8-2.1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-waveform.svg�����������������0000664�0000000�0000000�00000001230�14753064456�0030532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 0C60.7 0 32 28.7 32 64v224h112c6.1 0 11.6 3.4 14.3 8.8l17.7 35.4 49.7-99.4c2.7-5.4 8.3-8.8 14.3-8.8s11.6 3.4 14.3 8.8l27.6 55.2H352c8.8 0 16 7.2 16 16s-7.2 16-16 16h-80c-6.1 0-11.6-3.4-14.3-8.8L240 275.8l-49.7 99.4c-2.7 5.4-8.3 8.8-14.3 8.8s-11.6-3.4-14.3-8.8L134.1 320H32v128c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V160H288c-17.7 0-32-14.3-32-32V0zm192 0v128h128z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-word.svg���������������������0000664�0000000�0000000�00000001341�14753064456�0027662�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0zm192 0v128h128zM111 257.1l26.8 89.2 31.6-90.3c3.4-9.6 12.5-16.1 22.7-16.1s19.3 6.4 22.7 16.1l31.6 90.3 26.6-89.2c3.8-12.7 17.2-19.9 29.9-16.1s19.9 17.2 16.1 29.9l-48 160c-3 10-12 16.9-22.4 17.1s-19.8-6.2-23.2-16.1L192 336.6l-33.3 95.3c-3.4 9.8-12.8 16.3-23.2 16.1s-19.5-7.1-22.4-17.1l-48-160c-3.8-12.7 3.4-26.1 16.1-29.9s26.1 3.4 29.9 16.1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file-zipper.svg�������������������0000664�0000000�0000000�00000001632�14753064456�0030223�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0zm192 0v128h128zM96 48c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16s-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16m0 64c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16s-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16m0 64c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16s-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16m-6.3 71.8c3.7-14 16.4-23.8 30.9-23.8h14.8c14.5 0 27.2 9.7 30.9 23.8l23.5 88.2c1.4 5.4 2.1 10.9 2.1 16.4 0 35.2-28.8 63.7-64 63.7s-64-28.5-64-63.7c0-5.5.7-11.1 2.1-16.4l23.5-88.2zM112 336c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16z"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/file.svg��������������������������0000664�0000000�0000000�00000000634�14753064456�0026715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64C0 28.7 28.7 0 64 0h160v128c0 17.7 14.3 32 32 32h128v288c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm384 64H256V0z"/></svg>����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/fill-drip.svg���������������������0000664�0000000�0000000�00000001544�14753064456�0027661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M41.4 9.4c12.5-12.5 32.7-12.5 45.2 0L168 90.7l53.1-53.1c28.1-28.1 73.7-28.1 101.8 0l151.4 151.5c28.1 28.1 28.1 73.7 0 101.8L283.9 481.4c-37.5 37.5-98.3 37.5-135.8 0L30.6 363.9c-37.5-37.5-37.5-98.3 0-135.8l92.1-92.1-81.3-81.4c-12.5-12.5-12.5-32.8 0-45.3zm176 221.3L168 181.3l-92.1 92.1c-4.2 4.2-7 9.3-8.4 14.6h319.2l42.3-42.3c3.1-3.1 3.1-8.2 0-11.3L277.7 82.9c-3.1-3.1-8.2-3.1-11.3 0L213.3 136l49.4 49.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0M512 512c-35.3 0-64-28.7-64-64 0-25.2 32.6-79.6 51.2-108.7 6-9.4 19.5-9.4 25.5 0C543.4 368.4 576 422.8 576 448c0 35.3-28.7 64-64 64"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/fill.svg��������������������������0000664�0000000�0000000�00000001303�14753064456�0026716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M86.6 9.4C74.1-3.1 53.9-3.1 41.4 9.4s-12.5 32.8 0 45.3l81.3 81.3-92.1 92.1c-37.5 37.5-37.5 98.3 0 135.8l117.5 117.5c37.5 37.5 98.3 37.5 135.8 0l190.4-190.5c28.1-28.1 28.1-73.7 0-101.8L322.9 37.7c-28.1-28.1-73.7-28.1-101.8 0l-53.1 53zM168 181.3l49.4 49.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L213.3 136l53.1-53.1c3.1-3.1 8.2-3.1 11.3 0l151.4 151.4c3.1 3.1 3.1 8.2 0 11.3L386.7 288H67.5c1.4-5.4 4.2-10.4 8.4-14.6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/film.svg��������������������������0000664�0000000�0000000�00000002234�14753064456�0026723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96c0-35.3 28.7-64 64-64h384c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm48 272v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16m368-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM48 240v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16m368-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM48 112v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16m368-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-256 32v64c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32v-64c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32m32 160c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32v-64c0-17.7-14.3-32-32-32z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/filter-circle-dollar.svg����������0000664�0000000�0000000�00000002525�14753064456�0031776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M3.9 22.9C10.5 8.9 24.5 0 40 0h432c15.5 0 29.5 8.9 36.1 22.9s4.6 30.5-5.2 42.5L396.4 195.6C316.2 212.1 256 283 256 368c0 27.4 6.3 53.4 17.5 76.5-1.6-.8-3.2-1.8-4.7-2.9l-64-48c-8.1-6-12.8-15.5-12.8-25.6v-79.1L9 65.3C-.7 53.4-2.8 36.8 3.9 22.9M288 368a144 144 0 1 1 288 0 144 144 0 1 1-288 0m120.8-32.6c.6-.9 1.8-2.1 4.2-3.4 5.1-2.7 12.5-4.1 18.7-4 8.2.1 17.1 1.8 26.4 4.1 8.6 2.1 17.3-3.1 19.4-11.7s-3.1-17.3-11.7-19.4c-5.6-1.4-11.6-2.7-17.9-3.7v-9.4c0-8.8-7.2-16-16-16s-16 7.2-16 16v9.5c-6.1 1.2-12.3 3.2-18 6.3-11.8 6.3-23 18.4-21.8 37.2 1 16 11.7 25.3 21.6 30.7 8.8 4.7 19.7 7.8 28.6 10.3l1.8.5c10.3 2.9 17.9 5.2 23.2 8.3 4.5 2.7 4.7 4.2 4.7 5.6.1 2.4-.5 3.7-1 4.5-.6 1-1.8 2.2-4 3.3-4.7 2.5-11.8 3.8-18.5 3.6-9.5-.3-18.5-3.1-29.9-6.8-1.9-.6-3.8-1.2-5.8-1.8-8.4-2.6-17.4 2.1-20 10.5s2.1 17.4 10.5 20c1.6.5 3.3 1 5 1.6 7 2.3 15.1 4.8 23.7 6.6v11.4c0 8.8 7.2 16 16 16s16-7.2 16-16v-10.8c6.2-1.1 12.5-3.1 18.3-6.2 12.1-6.5 22.3-18.7 21.7-36.9-.5-16.2-10.3-26.3-20.5-32.3-9.4-5.6-21.2-8.9-30.5-11.5h-.2c-10.4-2.9-18.3-5.2-23.9-8.2-4.8-2.6-4.8-4-4.8-4.5v-.1c-.1-1.9.3-2.9.8-3.6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/filter-circle-xmark.svg�����������0000664�0000000�0000000�00000001472�14753064456�0031643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M3.9 22.9C10.5 8.9 24.5 0 40 0h432c15.5 0 29.5 8.9 36.1 22.9s4.6 30.5-5.2 42.5L396.4 195.6C316.2 212.1 256 283 256 368c0 27.4 6.3 53.4 17.5 76.5-1.6-.8-3.2-1.8-4.7-2.9l-64-48c-8.1-6-12.8-15.5-12.8-25.6v-79.1L9 65.3C-.7 53.4-2.8 36.8 3.9 22.9M432 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288m59.3 107.3c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L432 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l36.7 36.7-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l36.7-36.7 36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L454.6 368z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/filter.svg������������������������0000664�0000000�0000000�00000000766�14753064456�0027271�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M3.9 54.9C10.5 40.9 24.5 32 40 32h432c15.5 0 29.5 8.9 36.1 22.9s4.6 30.5-5.2 42.5L320 320.9V448c0 12.1-6.8 23.2-17.7 28.6s-23.8 4.3-33.5-3l-64-48c-8.1-6-12.8-15.5-12.8-25.6v-79.1L9 97.3C-.7 85.4-2.8 68.8 3.9 54.9"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/fingerprint.svg�������������������0000664�0000000�0000000�00000003075�14753064456�0030327�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48 256c0-114.9 93.1-208 208-208 63.1 0 119.6 28.1 157.8 72.5 8.6 10.1 23.8 11.2 33.8 2.6s11.2-23.8 2.6-33.8C403.3 34.6 333.7 0 256 0 114.6 0 0 114.6 0 256v40c0 13.3 10.7 24 24 24s24-10.7 24-24zm458.5-52.9c-2.7-13-15.5-21.3-28.4-18.5s-21.3 15.5-18.5 28.4c2.9 13.9 4.5 28.3 4.5 43.1v40c0 13.3 10.7 24 24 24s24-10.7 24-24v-40c0-18.1-1.9-35.8-5.5-52.9zM256 80c-19 0-37.4 3-54.5 8.6-15.2 5-18.7 23.7-8.3 35.9 7.1 8.3 18.8 10.8 29.4 7.9s21.8-4.4 33.4-4.4c70.7 0 128 57.3 128 128v24.9c0 25.2-1.5 50.3-4.4 75.3-1.7 14.6 9.4 27.8 24.2 27.8 11.8 0 21.9-8.6 23.3-20.3 3.3-27.4 5-55 5-82.7v-24.9c0-97.2-78.8-176-176-176zm-105.3 68.7c-9.1-10.6-25.3-11.4-33.9-.4C93.7 178 80 215.4 80 256v24.9c0 24.2-2.6 48.4-7.8 71.9-3.4 15.6 7.9 31.2 23.9 31.2 10.5 0 19.9-7 22.2-17.3 6.4-28.1 9.7-56.8 9.7-85.8V256c0-27.2 8.5-52.4 22.9-73.1 7.2-10.4 8-24.6-.2-34.2M256 160c-53 0-96 43-96 96v24.9c0 35.9-4.6 71.5-13.8 106.1-3.8 14.3 6.7 29 21.5 29 9.5 0 17.9-6.2 20.4-15.4 10.5-39 15.9-79.2 15.9-119.7V256c0-28.7 23.3-52 52-52s52 23.3 52 52v24.9c0 36.3-3.5 72.4-10.4 107.9-2.7 13.9 7.7 27.2 21.8 27.2 10.2 0 19-7 21-17 7.7-38.8 11.6-78.3 11.6-118.1V256c0-53-43-96-96-96m24 96c0-13.3-10.7-24-24-24s-24 10.7-24 24v24.9c0 59.9-11 119.3-32.5 175.2l-5.9 15.3c-4.8 12.4 1.4 26.3 13.8 31s26.3-1.4 31-13.8l5.9-15.3A536.2 536.2 0 0 0 280 280.9z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/fire-burner.svg�������������������0000664�0000000�0000000�00000002100�14753064456�0030204�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M345.7 48.3 358 34.5c5.4-6.1 13.3-8.8 20.9-8.9 7.2 0 14.3 2.6 19.9 7.8 19.7 18.3 39.8 43.2 55 70.6 15.2 27.2 26.2 58.2 26.2 88.2 0 88.6-71.3 159.8-160 159.8-89.6 0-160-71.3-160-159.8 0-37.3 16-73.4 36.8-104.5 20.9-31.3 47.5-59 70.9-80.2 5.7-5.2 13-7.7 20.3-7.5 14.1.3 23.8 11.4 32.7 21.6 2 2.3 4 4.6 6 6.7l19 19.9zM384 240.2c0-36.5-37-73-54.8-88.4-5.4-4.7-13.1-4.7-18.5 0-17.7 15.3-54.7 51.8-54.7 88.4 0 35.3 28.7 64 64 64s64-28.7 64-64M32 288c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32s-14.3 32-32 32v64h448v-64c-17.7 0-32-14.3-32-32s14.3-32 32-32h32c17.7 0 32 14.3 32 32v96c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32v-64c0-17.7 14.3-32 32-32zm288 192a32 32 0 1 0 0-64 32 32 0 1 0 0 64m160-32a32 32 0 1 0-64 0 32 32 0 1 0 64 0m-288 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/fire-extinguisher.svg�������������0000664�0000000�0000000�00000001454�14753064456�0031440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M500.3 7.3c7.4 6 11.7 15.1 11.7 24.7v96c0 9.6-4.3 18.7-11.7 24.7s-17.2 8.5-26.6 6.6l-160-32c-12.2-2.4-21.7-11.6-24.7-23.3h-65v34.8c37.8 18 64 56.5 64 101.2v144H64V240c0-44.7 26.2-83.2 64-101.2V110c-36.2 11.1-66 36.9-82.3 70.5-5.8 11.9-20.2 16.9-32.1 11.1s-16.9-20.2-11.1-32.1C26.7 109.8 72.7 72.6 128 60.4V32c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32v24h65c3-11.7 12.5-20.9 24.7-23.4l160-32c9.4-1.9 19.1.6 26.6 6.6zM288 416v32c0 35.3-28.7 64-64 64h-96c-35.3 0-64-28.7-64-64v-32zM176 96a16 16 0 1 0 0-32 16 16 0 1 0 0 32"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/fire-flame-curved.svg�������������0000664�0000000�0000000�00000001272�14753064456�0031272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m153.6 29.9 16-21.3c4-5.4 10.4-8.6 17.1-8.6C198.4 0 208 9.6 208 21.3v22.2c0 13.1 5.4 25.7 14.9 34.7l84.7 80.8c48.8 46.6 76.4 111.2 76.4 178.7C384 434 306 512 209.7 512H192C86 512 0 426 0 320v-3.8c0-48.8 19.4-95.6 53.9-130.1l3.5-3.5c4.2-4.2 10-6.6 16-6.6 12.5 0 22.6 10.1 22.6 22.6V288c0 35.3 28.7 64 64 64s64-28.7 64-64v-3.9c0-18-7.2-35.3-19.9-48l-38.6-38.6c-24-24-37.5-56.7-37.5-90.7 0-27.7 9-54.8 25.6-76.9"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/fire-flame-simple.svg�������������0000664�0000000�0000000�00000001366�14753064456�0031277�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m372.5 256.5-.7-1.9C337.8 160.8 282 76.5 209.1 8.5l-3.3-3C202.1 2 197.1 0 192 0s-10.1 2-13.8 5.5l-3.3 3C102 76.5 46.2 160.8 12.2 254.6l-.7 1.9C3.9 277.3 0 299.4 0 321.6 0 426.7 86.8 512 192 512s192-85.3 192-190.4c0-22.2-3.9-44.2-11.5-65.1M281.7 306a73.3 73.3 0 0 1 6.2 29.5c0 53-43 96.5-96 96.5s-96-43.5-96-96.5c0-10.1 2.1-20.3 6.2-29.5l1.9-4.3c15.8-35.4 37.9-67.7 65.3-95.1l8.9-8.9c3.6-3.6 8.5-5.6 13.6-5.6s10 2 13.6 5.6l8.9 8.9c27.4 27.4 49.6 59.7 65.3 95.1l1.9 4.3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/fire.svg��������������������������0000664�0000000�0000000�00000001440�14753064456�0026717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M159.3 5.4c7.8-7.3 19.9-7.2 27.7.1 27.6 25.9 53.5 53.8 77.7 84 11-14.4 23.5-30.1 37-42.9 7.9-7.4 20.1-7.4 28 .1 34.6 33 63.9 76.6 84.5 118 20.3 40.8 33.8 82.5 33.8 111.9C448 404.2 348.2 512 224 512 98.4 512 0 404.1 0 276.5c0-38.4 17.8-85.3 45.4-131.7C73.3 97.7 112.7 48.6 159.3 5.4M225.7 416c25.3 0 47.7-7 68.8-21 42.1-29.4 53.4-88.2 28.1-134.4-4.5-9-16-9.6-22.5-2l-25.2 29.3c-6.6 7.6-18.5 7.4-24.7-.5-16.5-21-46-58.5-62.8-79.8-6.3-8-18.3-8.1-24.7-.1-33.8 42.5-50.8 69.3-50.8 99.4.1 68.5 50.7 109.1 113.8 109.1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/fish-fins.svg���������������������0000664�0000000�0000000�00000001517�14753064456�0027665�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M275.2 38.4c-10.6-8-25-8.5-36.3-1.5S222 57.3 224.6 70.3l9.7 48.6c-19.4 9-36.9 19.9-52.4 31.5-15.3 11.5-29 23.9-40.7 36.3l-93.1-54.3c-12.5-7.3-28.4-5.3-38.6 4.9s-12.5 26-5.3 38.6L50 256 4.2 336.1c-7.2 12.6-5 28.4 5.3 38.6s26.1 12.2 38.6 4.9l93.1-54.3c11.8 12.3 25.4 24.8 40.7 36.3 15.5 11.6 33 22.5 52.4 31.5l-9.7 48.6c-2.6 13 3.1 26.3 14.3 33.3s25.6 6.5 36.3-1.5l77.6-58.2c54.9-4 101.5-27 137.2-53.8 39.2-29.4 67.2-64.7 81.6-89.5 5.8-9.9 5.8-22.2 0-32.1-14.4-24.8-42.5-60.1-81.6-89.5-35.8-26.8-82.3-49.8-137.2-53.8zM384 256a32 32 0 1 1 64 0 32 32 0 1 1-64 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/fish.svg��������������������������0000664�0000000�0000000�00000001314�14753064456�0026723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M180.5 141.5C219.7 108.5 272.6 80 336 80s116.3 28.5 155.5 61.5c39.1 33 66.9 72.4 81 99.8 4.7 9.2 4.7 20.1 0 29.3-14.1 27.4-41.9 66.8-81 99.8C452.3 403.5 399.4 432 336 432s-116.3-28.5-155.5-61.5c-16.2-13.7-30.5-28.5-42.7-43.1l-89.7 52.2c-12.5 7.3-28.4 5.3-38.7-4.9s-12.4-26-5.2-38.6L50 256 4.2 175.9c-7.2-12.6-5-28.4 5.3-38.6s26.1-12.2 38.7-4.9l89.7 52.3c12.2-14.6 26.5-29.4 42.7-43.1zM448 256a32 32 0 1 0-64 0 32 32 0 1 0 64 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/flag-checkered.svg����������������0000664�0000000�0000000�00000002201�14753064456�0030612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 0c17.7 0 32 14.3 32 32v16l69-17.2c38.1-9.5 78.3-5.1 113.5 12.5 46.3 23.2 100.8 23.2 147.1 0l9.6-4.8c20.6-10.4 44.8 4.6 44.8 27.6v279.7c0 13.3-8.3 25.3-20.8 30l-34.7 13c-46.2 17.3-97.6 14.6-141.7-7.4-37.9-19-81.3-23.7-122.5-13.4L64 384v96c0 17.7-14.3 32-32 32S0 497.7 0 480V32C0 14.3 14.3 0 32 0m32 187.1 64-13.9v65.5l-64 13.9V318l48.8-12.2c5.1-1.3 10.1-2.4 15.2-3.3v-63.9l38.9-8.4c8.3-1.8 16.7-2.5 25.1-2.1v-64c13.6.4 27.2 2.6 40.4 6.4l23.6 6.9v66.7l-41.7-12.3c-7.3-2.1-14.8-3.4-22.3-3.8v71.4c21.8 1.9 43.3 6.7 64 14.4V244l22.7 6.7c13.5 4 27.3 6.4 41.3 7.4v-64.2c-7.8-.8-15.6-2.3-23.2-4.5l-40.8-12v-62c-13-3.8-25.8-8.8-38.2-15-8.2-4.1-16.9-7-25.8-8.8V164c-13-.4-26 .8-38.7 3.6l-25.3 5.6V98l-64 16zm256 148.6c16.8 1.5 33.9-.7 50-6.8l14-5.2V252l-7.9 1.8c-18.4 4.3-37.3 5.7-56.1 4.5zm64-149.4v-70.8c-20.9 6.1-42.4 9.1-64 9.1V194c13.9 1.4 28 .5 41.7-2.6l22.3-5.2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/flag-usa.svg����������������������0000664�0000000�0000000�00000002376�14753064456�0027502�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 0c17.7 0 32 14.3 32 32v16l69-17.2c38.1-9.5 78.3-5.1 113.5 12.5 46.3 23.2 100.8 23.2 147.1 0l9.6-4.8c20.6-10.4 44.8 4.6 44.8 27.6v36.1l-44.7 16.2c-42.8 15.6-90 13.9-131.6-4.6l-16.1-7.2c-20.3-9-41.8-14.7-63.6-16.9v32.2c17.4 2.1 34.4 6.7 50.6 13.9l16.1 7.2c49.2 21.9 105 23.8 155.6 5.4l33.7-12.1v62l-44.7 16.2c-42.8 15.6-90 13.9-131.6-4.6l-16.1-7.2c-40.2-17.9-85-22.5-128.1-13.3L64 203.1v32.7l70.2-15.1c36.4-7.8 74.3-3.9 108.4 11.3l16.1 7.2c49.2 21.9 105 23.8 155.6 5.4l33.7-12.3v62l-44.7 16.2c-42.8 15.6-90 13.9-131.6-4.6l-16.1-7.2c-40.2-17.9-85-22.5-128.1-13.3L64 299.1v32.7l70.2-15.1c36.4-7.8 74.3-3.9 108.4 11.3l16.1 7.2c49.2 21.9 105 23.8 155.6 5.4l33.7-12.3v33.5c0 13.3-8.3 25.3-20.8 30l-34.7 13c-46.2 17.3-97.6 14.6-141.7-7.4-37.9-19-81.3-23.7-122.5-13.4L64 400v80c0 17.7-14.3 32-32 32S0 497.7 0 480V32C0 14.3 14.3 0 32 0m80 96a16 16 0 1 0-32 0 16 16 0 1 0 32 0m32 0a16 16 0 1 0 0-32 16 16 0 1 0 0 32m-32 48a16 16 0 1 0-32 0 16 16 0 1 0 32 0m32 0a16 16 0 1 0 0-32 16 16 0 1 0 0 32"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/flag.svg��������������������������0000664�0000000�0000000�00000001101�14753064456�0026675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C64 14.3 49.7 0 32 0S0 14.3 0 32v448c0 17.7 14.3 32 32 32s32-14.3 32-32V352l64.3-16.1c41.1-10.3 84.6-5.5 122.5 13.4 44.2 22.1 95.5 24.8 141.7 7.4l34.7-13c12.5-4.7 20.8-16.6 20.8-30V66c0-23-24.2-38-44.8-27.7l-9.6 4.8c-46.3 23.2-100.8 23.2-147.1 0-35.1-17.6-75.4-22-113.5-12.5L64 48z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/flask-vial.svg��������������������0000664�0000000�0000000�00000001424�14753064456�0030025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M175 389.4c-9.8 16-15 34.3-15 53.1-10 3.5-20.8 5.5-32 5.5-53 0-96-43-96-96V64C14.3 64 0 49.7 0 32S14.3 0 32 0h192c17.7 0 32 14.3 32 32s-14.3 32-32 32v245.9l-49 79.6zM96 64v96h64V64zM352 0h160c17.7 0 32 14.3 32 32s-14.3 32-32 32v150.9l117.7 191.3a69.54 69.54 0 0 1 10.3 36.4c0 38.3-31.1 69.4-69.4 69.4H261.4c-38.3 0-69.4-31.1-69.4-69.4 0-12.8 3.6-25.4 10.3-36.4L320 214.9V64c-17.7 0-32-14.3-32-32s14.3-32 32-32zm32 64v160c0 5.9-1.6 11.7-4.7 16.8L330.5 320h171l-48.8-79.2c-3.1-5-4.7-10.8-4.7-16.8V64z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/flask.svg�������������������������0000664�0000000�0000000�00000001231�14753064456�0027070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 0H128c-17.7 0-32 14.3-32 32s14.3 32 32 32v132.8c0 11.8-3.3 23.5-9.5 33.5L10.3 406.2C3.6 417.2 0 429.7 0 442.6 0 480.9 31.1 512 69.4 512h309.2c38.3 0 69.4-31.1 69.4-69.4 0-12.8-3.6-25.4-10.3-36.4L329.5 230.4c-6.2-10.1-9.5-21.7-9.5-33.5V64c17.7 0 32-14.3 32-32S337.7 0 320 0zm-96 196.8V64h64v132.8c0 23.7 6.6 46.9 19 67.1l34.5 56.1h-171l34.5-56.1c12.4-20.2 19-43.4 19-67.1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/floppy-disk.svg�������������������0000664�0000000�0000000�00000001102�14753064456�0030226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V173.3c0-17-6.7-33.3-18.7-45.3L352 50.7c-12-12-28.3-18.7-45.3-18.7zm0 96c0-17.7 14.3-32 32-32h192c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32zm160 160a64 64 0 1 1 0 128 64 64 0 1 1 0-128"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/florin-sign.svg�������������������0000664�0000000�0000000�00000001156�14753064456�0030225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M314.7 32c-38.8 0-73.7 23.3-88.6 59.1L170.7 224H64c-17.7 0-32 14.3-32 32s14.3 32 32 32h80L98.9 396.3c-5 11.9-16.6 19.7-29.5 19.7H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h37.3c38.8 0 73.7-23.3 88.6-59.1L213.3 288H320c17.7 0 32-14.3 32-32s-14.3-32-32-32h-80l45.1-108.3c5-11.9 16.6-19.7 29.5-19.7H352c17.7 0 32-14.3 32-32s-14.3-32-32-32z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/folder-closed.svg�����������������0000664�0000000�0000000�00000000740�14753064456�0030516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 480H64c-35.3 0-64-28.7-64-64V192h512v224c0 35.3-28.7 64-64 64m64-320H0V96c0-35.3 28.7-64 64-64h128c20.1 0 39.1 9.5 51.2 25.6l19.2 25.6c6 8.1 15.5 12.8 25.6 12.8h160c35.3 0 64 28.7 64 64"/></svg>��������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/folder-minus.svg������������������0000664�0000000�0000000�00000001044�14753064456�0030376�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 480H64c-35.3 0-64-28.7-64-64V96c0-35.3 28.7-64 64-64h128c20.1 0 39.1 9.5 51.2 25.6l19.2 25.6c6 8.1 15.5 12.8 25.6 12.8h160c35.3 0 64 28.7 64 64v256c0 35.3-28.7 64-64 64M184 272c-13.3 0-24 10.7-24 24s10.7 24 24 24h144c13.3 0 24-10.7 24-24s-10.7-24-24-24z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/folder-open.svg�������������������0000664�0000000�0000000�00000001174�14753064456�0030210�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M88.7 223.8 0 375.8V96c0-35.3 28.7-64 64-64h117.5c17 0 33.3 6.7 45.3 18.7l26.5 26.5c12 12 28.3 18.7 45.3 18.7L416 96c35.3 0 64 28.7 64 64v32H144c-22.8 0-43.8 12.1-55.3 31.8m27.6 16.1c5.8-9.9 16.3-15.9 27.7-15.9h400c11.5 0 22 6.1 27.7 16.1s5.7 22.2-.1 32.1l-112 192C453.9 474 443.4 480 432 480H32c-11.5 0-22-6.1-27.7-16.1s-5.7-22.2.1-32.1l112-192z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/folder-plus.svg�������������������0000664�0000000�0000000�00000001175�14753064456�0030233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M512 416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96c0-35.3 28.7-64 64-64h128c20.1 0 39.1 9.5 51.2 25.6l19.2 25.6c6 8.1 15.5 12.8 25.6 12.8h160c35.3 0 64 28.7 64 64zm-280-40c0 13.3 10.7 24 24 24s24-10.7 24-24v-64h64c13.3 0 24-10.7 24-24s-10.7-24-24-24h-64v-64c0-13.3-10.7-24-24-24s-24 10.7-24 24v64h-64c-13.3 0-24 10.7-24 24s10.7 24 24 24h64z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/folder-tree.svg�������������������0000664�0000000�0000000�00000001321�14753064456�0030200�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C64 14.3 49.7 0 32 0S0 14.3 0 32v352c0 35.3 28.7 64 64 64h192v-64H64V160h192V96H64zm224 160c0 17.7 14.3 32 32 32h224c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32h-98.7c-8.5 0-16.6-3.4-22.6-9.4L409.4 9.4c-6-6-14.1-9.4-22.6-9.4H320c-17.7 0-32 14.3-32 32zm0 288c0 17.7 14.3 32 32 32h224c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32h-98.7c-8.5 0-16.6-3.4-22.6-9.4l-13.3-13.3c-6-6-14.1-9.4-22.6-9.4l-66.8.1c-17.7 0-32 14.3-32 32z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/folder.svg������������������������0000664�0000000�0000000�00000000720�14753064456�0027245�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 480h384c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H288c-10.1 0-19.6-4.7-25.6-12.8l-19.2-25.6C231.1 41.5 212.1 32 192 32H64C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64"/></svg>������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/font-awesome.svg������������������0000664�0000000�0000000�00000001006�14753064456�0030374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M91.7 96c14.6-9.2 24.3-25.5 24.3-44 0-28.7-23.3-52-52-52S12 23.3 12 52c0 16.7 7.8 31.5 20 41v419h64v-64h373.6c14.6 0 26.4-11.8 26.4-26.4 0-3.7-.8-7.3-2.3-10.7L432 272l61.7-138.9c1.5-3.4 2.3-7 2.3-10.7 0-14.6-11.8-26.4-26.4-26.4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/font.svg��������������������������0000664�0000000�0000000�00000001067�14753064456�0026745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M254 52.8C249.3 40.3 237.3 32 224 32s-25.3 8.3-30 20.8L57.8 416H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32h-1.8l18-48h159.6l18 48H320c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32h-25.8zM279.8 304H168.2L224 155.1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/football.svg����������������������0000664�0000000�0000000�00000002007�14753064456�0027574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M247.5 25.4c-13.5 3.3-26.4 7.2-38.6 11.7-66 24.5-112.2 66.5-142.9 116.5-18.2 29.8-30.9 62.3-39.1 95.4l237.6 237.6c13.5-3.3 26.4-7.2 38.6-11.7 66-24.5 112.2-66.5 142.9-116.5 18.3-29.8 30.9-62.3 39.1-95.3zm247.7 179.9c6.1-56.8 1.4-112.2-7.7-156.4-2.7-12.9-13-22.9-26.1-25.1-58.2-9.7-109.9-12-155.6-7.9zM206.1 496 16.8 306.7c-6.1 56.8-1.4 112.2 7.7 156.4 2.7 12.9 13 22.9 26.1 25.1 58.2 9.7 109.9 12 155.6 7.9zm54.6-331.3c6.2-6.2 16.4-6.2 22.6 0l64 64c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-64-64c-6.2-6.2-6.2-16.4 0-22.6m-48 48c6.2-6.2 16.4-6.2 22.6 0l64 64c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-64-64c-6.2-6.2-6.2-16.4 0-22.6m-48 48c6.2-6.2 16.4-6.2 22.6 0l64 64c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-64-64c-6.2-6.2-6.2-16.4 0-22.6"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/forward-fast.svg������������������0000664�0000000�0000000�00000001144�14753064456�0030372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M18.4 445c11.2 5.3 24.5 3.6 34.1-4.4L224 297.7V416c0 12.4 7.2 23.7 18.4 29s24.5 3.6 34.1-4.4L448 297.7V416c0 17.7 14.3 32 32 32s32-14.3 32-32V96c0-17.7-14.3-32-32-32s-32 14.3-32 32v118.3L276.5 71.4c-9.5-7.9-22.8-9.7-34.1-4.4S224 83.6 224 96v118.3L52.5 71.4C43 63.5 29.7 61.7 18.4 67S0 83.6 0 96v320c0 12.4 7.2 23.7 18.4 29"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/forward-step.svg������������������0000664�0000000�0000000�00000000760�14753064456�0030413�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M52.5 440.6c-9.5 7.9-22.8 9.7-34.1 4.4S0 428.4 0 416V96c0-12.4 7.2-23.7 18.4-29s24.5-3.6 34.1 4.4l192 160L256 241V96c0-17.7 14.3-32 32-32s32 14.3 32 32v320c0 17.7-14.3 32-32 32s-32-14.3-32-32V271l-11.5 9.6z"/></svg>����������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/forward.svg�����������������������0000664�0000000�0000000�00000001067�14753064456�0027443�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M52.5 440.6c-9.5 7.9-22.8 9.7-34.1 4.4S0 428.4 0 416V96c0-12.4 7.2-23.7 18.4-29s24.5-3.6 34.1 4.4L224 214.3v83.4zM256 352V96c0-12.4 7.2-23.7 18.4-29s24.5-3.6 34.1 4.4l192 160c7.3 6.1 11.5 15.1 11.5 24.6s-4.2 18.5-11.5 24.6l-192 160c-9.5 7.9-22.8 9.7-34.1 4.4S256 428.4 256 416z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/franc-sign.svg��������������������0000664�0000000�0000000�00000001035�14753064456�0030021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M80 32c-17.7 0-32 14.3-32 32v256H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h16v64c0 17.7 14.3 32 32 32s32-14.3 32-32v-64h80c17.7 0 32-14.3 32-32s-14.3-32-32-32h-80v-64h144c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V96h176c17.7 0 32-14.3 32-32s-14.3-32-32-32z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/frog.svg��������������������������0000664�0000000�0000000�00000001576�14753064456�0026741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M368 32c41.7 0 75.9 31.8 79.7 72.5l85.6 26.3c25.4 7.8 42.8 31.3 42.8 57.9 0 21.8-11.7 41.9-30.7 52.7l-144.6 82.1 92.5 92.5H544c17.7 0 32 14.3 32 32s-14.3 32-32 32h-64c-8.5 0-16.6-3.4-22.6-9.4L346.9 360.2c11.7-36 3.2-77.1-25.4-105.7-40.6-40.6-106.3-40.6-146.9-.1l-73.6 70c-6.4 6.1-6.7 16.2-.6 22.6s16.2 6.6 22.6.6l73.8-70.2.1-.1.1-.1c3.5-3.5 7.3-6.6 11.3-9.2 27.9-18.5 65.9-15.4 90.5 9.2 24.7 24.7 27.7 62.9 9 90.9-2.6 3.8-5.6 7.5-9 10.9l-37 37H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H64c-35.3 0-64-28.7-64-64C0 249.6 127 112.9 289.3 97.5 296.2 60.2 328.8 32 368 32m0 104a24 24 0 1 0 0-48 24 24 0 1 0 0 48"/></svg>����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/futbol.svg������������������������0000664�0000000�0000000�00000001756�14753064456�0027277�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m417.3 360.1-71.6-4.8c-5.2-.3-10.3 1.1-14.5 4.2s-7.2 7.4-8.4 12.5l-17.6 69.6c-15.7 4.2-32.2 6.4-49.2 6.4s-33.5-2.2-49.2-6.4L189.2 372c-1.3-5-4.3-9.4-8.4-12.5s-9.3-4.5-14.5-4.2l-71.6 4.8c-17.6-27.2-28.5-59.2-30.4-93.6l60.7-38.2c4.4-2.8 7.6-7 9.2-11.9s1.4-10.2-.5-15L107 134.8c21-25.6 48.3-45.8 79.7-57.9l55.2 46c4 3.3 9 5.1 14.1 5.1s10.2-1.8 14.1-5.1l55.2-46c31.3 12.1 58.7 32.3 79.6 57.9l-26.7 66.6c-1.9 4.8-2.1 10.1-.5 15s4.9 9.1 9.2 11.9l60.7 38.2c-1.9 34.4-12.8 66.4-30.4 93.6zM256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m14.1-325.7c-8.4-6.1-19.8-6.1-28.2 0L194 221c-8.4 6.1-11.9 16.9-8.7 26.8l18.3 56.3c3.2 9.9 12.4 16.6 22.8 16.6h59.2c10.4 0 19.6-6.7 22.8-16.6l18.3-56.3c3.2-9.9-.3-20.7-8.7-26.8l-47.9-34.8z"/></svg>������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/g.svg�����������������������������0000664�0000000�0000000�00000001132�14753064456�0026216�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 96c-88.4 0-160 71.6-160 160s71.6 160 160 160c77.4 0 142-55 156.8-128H256c-17.7 0-32-14.3-32-32s14.3-32 32-32h144c25.8 0 49.6 21.4 47.2 50.6C437.8 389.6 341.4 480 224 480 100.3 480 0 379.7 0 256S100.3 32 224 32c57.4 0 109.7 21.6 149.3 57 13.2 11.8 14.3 32 2.5 45.2s-32 14.3-45.2 2.5C302.3 111.4 265 96 224 96"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/gamepad.svg�����������������������0000664�0000000�0000000�00000001166�14753064456�0027375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 64C86 64 0 150 0 256s86 192 192 192h256c106 0 192-86 192-192S554 64 448 64zm304 104a40 40 0 1 1 0 80 40 40 0 1 1 0-80M392 304a40 40 0 1 1 80 0 40 40 0 1 1-80 0M168 200c0-13.3 10.7-24 24-24s24 10.7 24 24v32h32c13.3 0 24 10.7 24 24s-10.7 24-24 24h-32v32c0 13.3-10.7 24-24 24s-24-10.7-24-24v-32h-32c-13.3 0-24-10.7-24-24s10.7-24 24-24h32z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/gas-pump.svg����������������������0000664�0000000�0000000�00000001400�14753064456�0027517�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 64C32 28.7 60.7 0 96 0h160c35.3 0 64 28.7 64 64v192h8c48.6 0 88 39.4 88 88v32c0 13.3 10.7 24 24 24s24-10.7 24-24V222c-27.6-7.1-48-32.2-48-62V96l-32-32c-8.8-8.8-8.8-23.2 0-32s23.2-8.8 32 0l77.3 77.3c12 12 18.7 28.3 18.7 45.3v221.5c0 39.8-32.2 72-72 72s-72-32.2-72-72v-32c0-22.1-17.9-40-40-40h-8v144c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 512c-17.7 0-32-14.3-32-32s14.3-32 32-32zm64 16v96c0 8.8 7.2 16 16 16h128c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16H112c-8.8 0-16 7.2-16 16"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/gauge-high.svg��������������������0000664�0000000�0000000�00000001225�14753064456�0030000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0M288 96a32 32 0 1 0-64 0 32 32 0 1 0 64 0m-32 320c35.3 0 64-28.7 64-64 0-17.4-6.9-33.1-18.1-44.6L366 161.7c5.3-12.1-.2-26.3-12.3-31.6s-26.3.2-31.6 12.3L257.9 288H256c-35.3 0-64 28.7-64 64s28.7 64 64 64m-80-272a32 32 0 1 0-64 0 32 32 0 1 0 64 0M96 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64m352-32a32 32 0 1 0-64 0 32 32 0 1 0 64 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/gauge-simple-high.svg�������������0000664�0000000�0000000�00000000772�14753064456�0031275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m320 96c0-15.9-5.8-30.4-15.3-41.6L381.3 163c6.1-11.8 1.5-26.3-10.2-32.4s-26.2-1.5-32.4 10.2l-76.6 147.5c-2-.2-4-.3-6.1-.3-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64"/></svg>������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/gauge-simple.svg������������������0000664�0000000�0000000�00000000732�14753064456�0030354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m320 96c0-26.9-16.5-49.9-40-59.3V88c0-13.3-10.7-24-24-24s-24 10.7-24 24v204.7c-23.5 9.5-40 32.5-40 59.3 0 35.3 28.7 64 64 64s64-28.7 64-64"/></svg>��������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/gauge.svg�������������������������0000664�0000000�0000000�00000001200�14753064456�0027054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m320 96c0-26.9-16.5-49.9-40-59.3V88c0-13.3-10.7-24-24-24s-24 10.7-24 24v204.7c-23.5 9.5-40 32.5-40 59.3 0 35.3 28.7 64 64 64s64-28.7 64-64M144 176a32 32 0 1 0 0-64 32 32 0 1 0 0 64m-16 80a32 32 0 1 0-64 0 32 32 0 1 0 64 0m288 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64m-16-144a32 32 0 1 0-64 0 32 32 0 1 0 64 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/gavel.svg�������������������������0000664�0000000�0000000�00000001432�14753064456�0027071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M318.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-120 120c-12.5 12.5-12.5 32.8 0 45.3l16 16c12.5 12.5 32.8 12.5 45.3 0l4-4 106.8 106.7-4 4c-12.5 12.5-12.5 32.8 0 45.3l16 16c12.5 12.5 32.8 12.5 45.3 0l120-120c12.5-12.5 12.5-32.8 0-45.3l-16-16c-12.5-12.5-32.8-12.5-45.3 0l-4 4L330.6 74.6l4-4c12.5-12.5 12.5-32.8 0-45.3l-16-16zm-152 288c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3l48 48c12.5 12.5 32.8 12.5 45.3 0l112-112c12.5-12.5 12.5-32.8 0-45.3l-1.4-1.4 58.8-58.7-45.3-45.3-58.7 58.7-1.4-1.4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/gear.svg��������������������������0000664�0000000�0000000�00000002445�14753064456�0026716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M495.9 166.6c3.2 8.7.5 18.4-6.4 24.6l-43.3 39.4c1.1 8.3 1.7 16.8 1.7 25.4s-.6 17.1-1.7 25.4l43.3 39.4c6.9 6.2 9.6 15.9 6.4 24.6-4.4 11.9-9.7 23.3-15.8 34.3l-4.7 8.1c-6.6 11-14 21.4-22.1 31.2-5.9 7.2-15.7 9.6-24.5 6.8l-55.7-17.7c-13.4 10.3-28.2 18.9-44 25.4l-12.5 57.1c-2 9.1-9 16.3-18.2 17.8-13.8 2.3-28 3.5-42.5 3.5s-28.7-1.2-42.5-3.5c-9.2-1.5-16.2-8.7-18.2-17.8l-12.5-57.1c-15.8-6.5-30.6-15.1-44-25.4l-55.6 17.8c-8.8 2.8-18.6.3-24.5-6.8-8.1-9.8-15.5-20.2-22.1-31.2l-4.7-8.1c-6.1-11-11.4-22.4-15.8-34.3-3.2-8.7-.5-18.4 6.4-24.6l43.3-39.4c-1.1-8.4-1.7-16.9-1.7-25.5s.6-17.1 1.7-25.4l-43.3-39.4c-6.9-6.2-9.6-15.9-6.4-24.6 4.4-11.9 9.7-23.3 15.8-34.3l4.7-8.1c6.6-11 14-21.4 22.1-31.2 5.9-7.2 15.7-9.6 24.5-6.8l55.7 17.7c13.4-10.3 28.2-18.9 44-25.4l12.5-57.1c2-9.1 9-16.3 18.2-17.8C227.3 1.2 241.5 0 256 0s28.7 1.2 42.5 3.5c9.2 1.5 16.2 8.7 18.2 17.8l12.5 57.1c15.8 6.5 30.6 15.1 44 25.4l55.7-17.7c8.8-2.8 18.6-.3 24.5 6.8 8.1 9.8 15.5 20.2 22.1 31.2l4.7 8.1c6.1 11 11.4 22.4 15.8 34.3zM256 336a80 80 0 1 0 0-160 80 80 0 1 0 0 160"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/gears.svg�������������������������0000664�0000000�0000000�00000004277�14753064456�0027106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M308.5 135.3c7.1-6.3 9.9-16.2 6.2-25-2.3-5.3-4.8-10.5-7.6-15.5l-3.1-5.4c-3-5-6.3-9.9-9.8-14.6-5.7-7.6-15.7-10.1-24.7-7.1L241.3 77c-10.7-8.8-23-16-36.2-20.9l-6.1-29c-1.9-9.3-9.1-16.7-18.5-17.8-6.6-.9-13.3-1.3-20.1-1.3h-.7q-10.2 0-20.1 1.2c-9.4 1.1-16.6 8.6-18.5 17.8L115 56.1c-13.3 5-25.5 12.1-36.2 20.9l-28.3-9.2c-9-3-19-.5-24.7 7.1-3.5 4.7-6.8 9.6-9.9 14.6l-3 5.3c-2.8 5-5.3 10.2-7.6 15.6-3.7 8.7-.9 18.6 6.2 25l22.2 19.8c-1.1 6.7-1.7 13.7-1.7 20.8s.6 14.1 1.7 20.9l-22.2 19.8c-7.1 6.3-9.9 16.2-6.2 25 2.3 5.3 4.8 10.5 7.6 15.6l3 5.2c3 5.1 6.3 9.9 9.9 14.6 5.7 7.6 15.7 10.1 24.7 7.1l28.2-9.3c10.7 8.8 23 16 36.2 20.9l6.1 29.1c1.9 9.3 9.1 16.7 18.5 17.8q10.05 1.2 20.4 1.2c10.35 0 13.7-.4 20.4-1.2 9.4-1.1 16.6-8.6 18.5-17.8l6.1-29.1c13.3-5 25.5-12.1 36.2-20.9l28.2 9.3c9 3 19 .5 24.7-7.1 3.5-4.7 6.8-9.5 9.8-14.6l3.1-5.4c2.8-5 5.3-10.2 7.6-15.5 3.7-8.7.9-18.6-6.2-25l-22.2-19.8c1.1-6.8 1.7-13.8 1.7-20.9s-.6-14.1-1.7-20.9l22.2-19.8zM112 176a48 48 0 1 1 96 0 48 48 0 1 1-96 0m392.7 324.5c6.3 7.1 16.2 9.9 25 6.2 5.3-2.3 10.5-4.8 15.5-7.6l5.4-3.1c5-3 9.9-6.3 14.6-9.8 7.6-5.7 10.1-15.7 7.1-24.7l-9.3-28.2c8.8-10.7 16-23 20.9-36.2L613 391c9.3-1.9 16.7-9.1 17.8-18.5q1.2-10.05 1.2-20.4c0-10.35-.4-13.7-1.2-20.4-1.1-9.4-8.6-16.6-17.8-18.5l-29.1-6.2c-5-13.3-12.1-25.5-20.9-36.2l9.3-28.2c3-9 .5-19-7.1-24.7-4.7-3.5-9.6-6.8-14.6-9.9l-5.3-3c-5-2.8-10.2-5.3-15.6-7.6-8.7-3.7-18.6-.9-25 6.2l-19.8 22.2c-6.8-1.1-13.8-1.7-20.9-1.7s-14.1.6-20.9 1.7l-19.8-22.2c-6.3-7.1-16.2-9.9-25-6.2-5.3 2.3-10.5 4.8-15.6 7.6l-5.2 3c-5.1 3-9.9 6.3-14.6 9.9-7.6 5.7-10.1 15.7-7.1 24.7l9.3 28.2c-8.8 10.7-16 23-20.9 36.2l-29.1 6c-9.3 1.9-16.7 9.1-17.8 18.5q-1.2 10.05-1.2 20.4c0 10.35.4 13.7 1.2 20.4 1.1 9.4 8.6 16.6 17.8 18.5l29.1 6.1c5 13.3 12.1 25.5 20.9 36.2l-9.3 28.2c-3 9-.5 19 7.1 24.7 4.7 3.5 9.5 6.8 14.6 9.8l5.4 3.1c5 2.8 10.2 5.3 15.5 7.6 8.7 3.7 18.6.9 25-6.2l19.8-22.2c6.8 1.1 13.8 1.7 20.9 1.7s14.1-.6 20.9-1.7l19.8 22.2zM464 304a48 48 0 1 1 0 96 48 48 0 1 1 0-96"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/gem.svg���������������������������0000664�0000000�0000000�00000001323�14753064456�0026542�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M116.7 33.8c4.5-6.1 11.7-9.8 19.3-9.8h240c7.6 0 14.8 3.6 19.3 9.8l112 152c6.8 9.2 6.1 21.9-1.5 30.4l-232 256c-4.5 5-11 7.9-17.8 7.9s-13.2-2.9-17.8-7.9l-232-256c-7.7-8.5-8.3-21.2-1.5-30.4zm38.5 39.8c-3.3 2.5-4.2 7-2.1 10.5l57.4 95.6L63.3 192c-4.1.3-7.3 3.8-7.3 8s3.2 7.6 7.3 8l192 16h1.3l192-16c4.1-.3 7.3-3.8 7.3-8s-3.2-7.6-7.3-8l-147.1-12.2 57.4-95.6c2.1-3.5 1.2-8.1-2.1-10.5s-7.9-2-10.7 1L256 172.2l-90.1-97.6c-2.8-3-7.4-3.4-10.7-1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/genderless.svg��������������������0000664�0000000�0000000�00000000600�14753064456�0030122�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 144a112 112 0 1 1 0 224 112 112 0 1 1 0-224m0 288a176 176 0 1 0 0-352 176 176 0 1 0 0 352"/></svg>��������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/ghost.svg�������������������������0000664�0000000�0000000�00000001331�14753064456�0027115�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m40.1 467.1-11.2 9c-3.2 2.5-7.1 3.9-11.1 3.9C8 480 0 472 0 462.2V192C0 86 86 0 192 0s192 86 192 192v270.2c0 9.8-8 17.8-17.8 17.8-4 0-7.9-1.4-11.1-3.9l-11.2-9c-13.4-10.7-32.8-9-44.1 3.9l-30.5 35c-3.3 3.8-8.2 6-13.3 6s-9.9-2.2-13.3-6l-26.6-30.5c-12.7-14.6-35.4-14.6-48.2 0L141.3 506c-3.3 3.8-8.2 6-13.3 6s-9.9-2.2-13.3-6l-30.5-35c-11.3-12.9-30.7-14.6-44.1-3.9M160 192a32 32 0 1 0-64 0 32 32 0 1 0 64 0m96 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/gift.svg��������������������������0000664�0000000�0000000�00000001511�14753064456�0026722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m190.5 68.8 34.8 59.2H152c-22.1 0-40-17.9-40-40s17.9-40 40-40h2.2c14.9 0 28.8 7.9 36.3 20.8M64 88c0 14.4 3.5 28 9.6 40H32c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32v-64c0-17.7-14.3-32-32-32h-41.6c6.1-12 9.6-25.6 9.6-40 0-48.6-39.4-88-88-88h-2.2c-31.9 0-61.5 16.9-77.7 44.4L256 85.5l-24.1-41C215.7 16.9 186.1 0 154.2 0H152c-48.6 0-88 39.4-88 88m336 0c0 22.1-17.9 40-40 40h-73.3l34.8-59.2c7.6-12.9 21.4-20.8 36.3-20.8h2.2c22.1 0 40 17.9 40 40M32 288v176c0 26.5 21.5 48 48 48h144V288zm256 224h144c26.5 0 48-21.5 48-48V288H288z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/gifts.svg�������������������������0000664�0000000�0000000�00000002335�14753064456�0027112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M200.6 32C205 19.5 198.5 5.8 186 1.4S159.8 3.5 155.4 16l-10.7 30.2-9.9-29.8C130.6 3.8 117-3 104.4 1.2S85 19 89.2 31.6l8.3 25-27.4-20c-10.7-7.8-25.7-5.4-33.5 5.3s-5.4 25.7 5.3 33.5L70.2 96H48c-26.5 0-48 21.5-48 48v320c0 26.5 21.5 48 48 48h152.6c-5.4-9.4-8.6-20.3-8.6-32V256c0-29.9 20.5-55 48.2-62 1.8-31 17.1-58.2 40.1-76.1C271.7 104.7 256.9 96 240 96h-22.2l28.3-20.6c10.7-7.8 13.1-22.8 5.3-33.5s-22.8-13.1-33.5-5.3l-25.4 18.5zm162.9 153.5 29.6 38.5H344c-13.3 0-24-10.7-24-24 0-13.1 10.8-24 24.2-24 7.6 0 14.7 3.5 19.3 9.5M272 200c0 8.4 1.4 16.5 4.1 24H272c-26.5 0-48 21.5-48 48v80h192v-96h32v96h192v-80c0-26.5-21.5-48-48-48h-4.1c2.7-7.5 4.1-15.6 4.1-24 0-39.9-32.5-72-72.2-72-22.4 0-43.6 10.4-57.3 28.2L432 195.8l-30.5-39.6c-13.7-17.8-35-28.2-57.3-28.2-39.7 0-72.2 32.1-72.2 72m-48 264c0 26.5 21.5 48 48 48h144V384H224zm224 48h144c26.5 0 48-21.5 48-48v-80H448zm96-312c0 13.3-10.7 24-24 24h-49.1l29.6-38.5c4.6-5.9 11.7-9.5 19.3-9.5 13.4 0 24.2 10.9 24.2 24"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/glass-water-droplet.svg�����������0000664�0000000�0000000�00000001243�14753064456�0031673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 0C23.1 0 14.6 3.7 8.6 10.2S-.6 25.4.1 34.3l28.8 403.4c3 41.9 37.8 74.3 79.8 74.3h166.6c42 0 76.8-32.4 79.8-74.3l28.8-403.4c.6-8.9-2.4-17.6-8.5-24.1S360.9 0 352 0zm51 297.5L66.4 64h251.3L301 297.5l-13 6.5c-20.1 10.1-43.9 10.1-64 0s-43.9-10.1-64 0-43.9 10.1-64 0zM256 196c0-24-33.7-70.1-52.2-93.5-6.1-7.7-17.5-7.7-23.6 0C161.7 125.9 128 172 128 196c0 33.1 28.7 60 64 60s64-26.9 64-60"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/glass-water.svg�������������������0000664�0000000�0000000�00000001101�14753064456�0030215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 0C23.1 0 14.6 3.7 8.6 10.2S-.6 25.4.1 34.3l28.8 403.4c3 41.9 37.8 74.3 79.8 74.3h166.6c42 0 76.8-32.4 79.8-74.3l28.8-403.4c.6-8.9-2.4-17.6-8.5-24.1S360.9 0 352 0zm41 156.5L66.4 64h251.3l-6.7 92.5-24.2 12.1c-19.4 9.7-42.2 9.7-61.6 0a74.56 74.56 0 0 0-66.4 0c-19.4 9.7-42.2 9.7-61.6 0z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/glasses.svg�����������������������0000664�0000000�0000000�00000003125�14753064456�0027435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M118.6 80c-11.5 0-21.4 7.9-24 19.1L57 260.3c20.5-6.2 48.3-12.3 78.7-12.3 32.3 0 61.8 6.9 82.8 13.5 10.6 3.3 19.3 6.7 25.4 9.2 3.1 1.3 5.5 2.4 7.3 3.2.9.4 1.6.7 2.1 1l.6.3.2.1h.1l-6.3 12.7 6.3-12.7c5.8 2.9 10.4 7.3 13.5 12.7h40.6c3.1-5.3 7.7-9.8 13.5-12.7l6.3 12.7-6.3-12.7h.1l.2-.1.6-.3c.5-.2 1.2-.6 2.1-1 1.8-.8 4.2-1.9 7.3-3.2 6.1-2.6 14.8-5.9 25.4-9.2 21-6.6 50.4-13.5 82.8-13.5 30.4 0 58.2 6.1 78.7 12.3L481.4 99.1c-2.6-11.2-12.6-19.1-24-19.1-3.1 0-6.2.6-9.2 1.8l-31.3 12.5c-12.3 4.9-26.3-1.1-31.2-13.4s1.1-26.3 13.4-31.2l31.3-12.5c8.6-3.4 17.7-5.2 27-5.2 33.8 0 63.1 23.3 70.8 56.2l43.9 188c1.7 7.3 2.9 14.7 3.5 22.1.3 1.9.5 3.8.5 5.7v64c0 61.9-50.1 112-112 112h-44.3c-59.4 0-108.5-46.4-111.8-105.8l-1.4-22.2h-37.2l-1.2 22.2C264.9 433.6 215.8 480 156.3 480H112C50.1 480 0 429.9 0 368v-64c0-1.9.2-3.8.5-5.7.6-7.4 1.8-14.8 3.5-22.1l43.9-188C55.5 55.3 84.8 32 118.6 32c9.2 0 18.4 1.8 27 5.2l31.3 12.5c12.3 4.9 18.3 18.9 13.4 31.2s-18.9 18.3-31.2 13.4l-31.3-12.5c-2.9-1.2-6-1.8-9.2-1.8M64 325.4V368c0 26.5 21.5 48 48 48h44.3c25.5 0 46.5-19.9 47.9-45.3l2.5-45.6c-2.3-.8-4.9-1.7-7.5-2.5-17.2-5.4-39.9-10.5-63.6-10.5s-46.2 5.1-63.2 10.5c-3.1 1-5.9 1.9-8.5 2.9zM512 368v-42.6c-2.6-.9-5.5-1.9-8.5-2.9-17-5.4-39.5-10.5-63.2-10.5s-46.4 5.1-63.6 10.5c-2.7.8-5.2 1.7-7.5 2.5l2.5 45.6c1.4 25.4 22.5 45.3 47.9 45.3h44.3c26.5 0 48-21.5 48-48z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/globe.svg�������������������������0000664�0000000�0000000�00000002342�14753064456�0027064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M352 256c0 22.2-1.2 43.6-3.3 64H163.4c-2.2-20.4-3.3-41.8-3.3-64s1.2-43.6 3.3-64h185.3c2.2 20.4 3.3 41.8 3.3 64m28.8-64h123.1c5.3 20.5 8.1 41.9 8.1 64s-2.8 43.5-8.1 64H380.8c2.1-20.6 3.2-42 3.2-64s-1.1-43.4-3.2-64m112.6-32H376.7c-10-63.9-29.8-117.4-55.3-151.6 78.3 20.7 142 77.5 171.9 151.6zm-149.1 0H167.7c6.1-36.4 15.5-68.6 27-94.7 10.5-23.6 22.2-40.7 33.5-51.5C239.4 3.2 248.7 0 256 0s16.6 3.2 27.8 13.8c11.3 10.8 23 27.9 33.5 51.5 11.6 26 20.9 58.2 27 94.7m-209 0H18.6c30-74.1 93.6-130.9 172-151.6-25.5 34.2-45.3 87.7-55.3 151.6M8.1 192h123.1c-2.1 20.6-3.2 42-3.2 64s1.1 43.4 3.2 64H8.1C2.8 299.5 0 278.1 0 256s2.8-43.5 8.1-64m186.6 254.6c-11.6-26-20.9-58.2-27-94.6h176.6c-6.1 36.4-15.5 68.6-27 94.6-10.5 23.6-22.2 40.7-33.5 51.5-11.2 10.7-20.5 13.9-27.8 13.9s-16.6-3.2-27.8-13.8c-11.3-10.8-23-27.9-33.5-51.5zM135.3 352c10 63.9 29.8 117.4 55.3 151.6-78.4-20.7-142-77.5-172-151.6zm358.1 0c-30 74.1-93.6 130.9-171.9 151.6 25.5-34.2 45.2-87.7 55.3-151.6h116.7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/golf-ball-tee.svg�����������������0000664�0000000�0000000�00000002014�14753064456�0030402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 192c0 66.8-34.1 125.6-85.8 160H85.8C34.1 317.6 0 258.8 0 192 0 86 86 0 192 0s192 86 192 192m-141.9 64.6c0 18.5-15 33.5-33.5 33.5-4.9 0-9.1 5.1-5.4 8.4 5.9 5.2 13.7 8.4 22.1 8.4 18.5 0 33.5-15 33.5-33.5 0-8.5-3.2-16.2-8.4-22.1-3.3-3.7-8.4.5-8.4 5.4zm-52.3-49.3c-4.9 0-9.1 5.1-5.4 8.4 5.9 5.2 13.7 8.4 22.1 8.4 18.5 0 33.5-15 33.5-33.5 0-8.5-3.2-16.2-8.4-22.1-3.3-3.7-8.4.5-8.4 5.4 0 18.5-15 33.5-33.5 33.5zm113.5-17.5c0 18.5-15 33.5-33.5 33.5-4.9 0-9.1 5.1-5.4 8.4 5.9 5.2 13.7 8.4 22.1 8.4 18.5 0 33.5-15 33.5-33.5 0-8.5-3.2-16.2-8.4-22.1-3.3-3.7-8.4.5-8.4 5.4zM96 416c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32s-14.3 32-32 32h-16c-8.8 0-16 7.2-16 16v16c0 17.7-14.3 32-32 32s-32-14.3-32-32v-16c0-8.8-7.2-16-16-16h-16c-17.7 0-32-14.3-32-32"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/gopuram.svg�����������������������0000664�0000000�0000000�00000001625�14753064456�0027451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M120 0c13.3 0 24 10.7 24 24v8h40v-8c0-13.3 10.7-24 24-24s24 10.7 24 24v8h48v-8c0-13.3 10.7-24 24-24s24 10.7 24 24v8h40v-8c0-13.3 10.7-24 24-24s24 10.7 24 24v104c17.7 0 32 14.3 32 32v64c17.7 0 32 14.3 32 32v96c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32h-64V352h-32V224h-32v-96h-32v96h32v128h32v160h-80v-48c0-26.5-21.5-48-48-48s-48 21.5-48 48v48h-80V352h32V224h32v-96h-32v96h-32v128H96v160H32c-17.7 0-32-14.3-32-32v-96c0-17.7 14.3-32 32-32v-96c0-17.7 14.3-32 32-32v-64c0-17.7 14.3-32 32-32V24c0-13.3 10.7-24 24-24m136 272c-17.7 0-32 14.3-32 32v48h64v-48c0-17.7-14.3-32-32-32m-32-80v32h64v-32c0-17.7-14.3-32-32-32s-32 14.3-32 32"/></svg>�����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/graduation-cap.svg����������������0000664�0000000�0000000�00000002001�14753064456�0030662�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 32c-8.1 0-16.1 1.4-23.7 4.1L15.8 137.4C6.3 140.9 0 149.9 0 160s6.3 19.1 15.8 22.6l57.9 20.9C57.3 229.3 48 259.8 48 291.9V320c0 28.4-10.8 57.7-22.3 80.8-6.5 13-13.9 25.8-22.5 37.6-3.2 4.3-4.1 9.9-2.3 15s6 8.9 11.2 10.2l64 16c4.2 1.1 8.7.3 12.4-2s6.3-6.1 7.1-10.4c8.6-42.8 4.3-81.2-2.1-108.7-3.2-14.2-7.5-28.7-13.5-42v-24.6c0-30.2 10.2-58.7 27.9-81.5 12.9-15.5 29.6-28 49.2-35.7l157-61.7c8.2-3.2 17.5.8 20.7 9s-.8 17.5-9 20.7l-157 61.7c-12.4 4.9-23.3 12.4-32.2 21.6l159.6 57.6c7.6 2.7 15.6 4.1 23.7 4.1s16.1-1.4 23.7-4.1l280.6-101c9.5-3.4 15.8-12.5 15.8-22.6s-6.3-19.1-15.8-22.6L343.7 36.1c-7.6-2.7-15.6-4.1-23.7-4.1M128 408c0 35.3 86 72 192 72s192-36.7 192-72l-15.3-145.4L354.5 314c-11.1 4-22.8 6-34.5 6s-23.5-2-34.5-6l-142.2-51.4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/greater-than-equal.svg������������0000664�0000000�0000000�00000001050�14753064456�0031455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M52.1 93.7c-16.4-6.6-24.4-25.2-17.8-41.6s25.2-24.4 41.6-17.8l320 128C408 167.1 416 178.9 416 192s-8 24.9-20.1 29.7l-320 128c-16.4 6.6-35-1.4-41.6-17.8s1.4-35 17.8-41.6L297.8 192zM416 416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/greater-than.svg������������������0000664�0000000�0000000�00000000752�14753064456�0030360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M3.4 81.7c-7.9 15.8-1.5 35 14.3 42.9L280.5 256 17.7 387.4c-15.8 7.9-22.2 27.1-14.3 42.9s27.1 22.2 42.9 14.3l320-160c10.8-5.4 17.7-16.5 17.7-28.6s-6.8-23.2-17.7-28.6l-320-160c-15.8-7.9-35-1.5-42.9 14.3"/></svg>����������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/grip-lines-vertical.svg�����������0000664�0000000�0000000�00000000703�14753064456�0031653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 192 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 64c0-17.7-14.3-32-32-32S0 46.3 0 64v384c0 17.7 14.3 32 32 32s32-14.3 32-32zm128 0c0-17.7-14.3-32-32-32s-32 14.3-32 32v384c0 17.7 14.3 32 32 32s32-14.3 32-32z"/></svg>�������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/grip-lines.svg��������������������0000664�0000000�0000000�00000000711�14753064456�0030043�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 288c-17.7 0-32 14.3-32 32s14.3 32 32 32h384c17.7 0 32-14.3 32-32s-14.3-32-32-32zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32h384c17.7 0 32-14.3 32-32s-14.3-32-32-32z"/></svg>�������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/grip-vertical.svg�����������������0000664�0000000�0000000�00000001625�14753064456�0030547�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M40 352h48c22.1 0 40 17.9 40 40v48c0 22.1-17.9 40-40 40H40c-22.1 0-40-17.9-40-40v-48c0-22.1 17.9-40 40-40m192 0h48c22.1 0 40 17.9 40 40v48c0 22.1-17.9 40-40 40h-48c-22.1 0-40-17.9-40-40v-48c0-22.1 17.9-40 40-40M40 320c-22.1 0-40-17.9-40-40v-48c0-22.1 17.9-40 40-40h48c22.1 0 40 17.9 40 40v48c0 22.1-17.9 40-40 40zm192-128h48c22.1 0 40 17.9 40 40v48c0 22.1-17.9 40-40 40h-48c-22.1 0-40-17.9-40-40v-48c0-22.1 17.9-40 40-40M40 160c-22.1 0-40-17.9-40-40V72c0-22.1 17.9-40 40-40h48c22.1 0 40 17.9 40 40v48c0 22.1-17.9 40-40 40zM232 32h48c22.1 0 40 17.9 40 40v48c0 22.1-17.9 40-40 40h-48c-22.1 0-40-17.9-40-40V72c0-22.1 17.9-40 40-40"/></svg>�����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/grip.svg��������������������������0000664�0000000�0000000�00000001622�14753064456�0026735�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 136c0-22.1-17.9-40-40-40H40c-22.1 0-40 17.9-40 40v48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40zm0 192c0-22.1-17.9-40-40-40H40c-22.1 0-40 17.9-40 40v48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40zm32-192v48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40v-48c0-22.1-17.9-40-40-40h-48c-22.1 0-40 17.9-40 40m128 192c0-22.1-17.9-40-40-40h-48c-22.1 0-40 17.9-40 40v48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40zm32-192v48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40v-48c0-22.1-17.9-40-40-40h-48c-22.1 0-40 17.9-40 40m128 192c0-22.1-17.9-40-40-40h-48c-22.1 0-40 17.9-40 40v48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40z"/></svg>��������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/group-arrows-rotate.svg�����������0000664�0000000�0000000�00000004216�14753064456�0031741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M201.1 71.9c16.9-5 26.6-22.9 21.5-39.8s-22.9-26.6-39.8-21.5a256 256 0 0 0-60.6 27C114.3 34 105.4 32 96 32c-35.3 0-64 28.7-64 64 0 9.4 2 18.3 5.6 26.3-11.5 18.7-20.6 39-27 60.6-5 16.9 4.6 34.8 21.5 39.8s34.8-4.6 39.8-21.5c4.3-14.6 10.4-28.5 17.9-41.4 2 .2 4.1.3 6.1.3 35.3 0 64-28.7 64-64 0-2.1-.1-4.1-.3-6.1 12.9-7.5 26.8-13.6 41.4-17.9zm128-61.3c-16.9-5-34.8 4.6-39.8 21.5s4.6 34.8 21.5 39.8c14.6 4.3 28.5 10.4 41.4 17.9-.2 2-.3 4.1-.3 6.1 0 35.3 28.7 64 64 64 2.1 0 4.1-.1 6.2-.3 7.5 12.9 13.6 26.8 17.9 41.4 5 16.9 22.9 26.6 39.8 21.5s26.6-22.9 21.5-39.8a256 256 0 0 0-27-60.6c3.6-8 5.6-16.9 5.6-26.3 0-35.3-28.7-64-64-64-9.4 0-18.3 2-26.3 5.6-18.7-11.5-39-20.6-60.6-27zM71.9 310.9c-5-16.9-22.9-26.6-39.8-21.5s-26.6 22.9-21.5 39.8a256 256 0 0 0 27 60.6C34 397.7 32 406.6 32 416c0 35.3 28.7 64 64 64 9.4 0 18.3-2 26.3-5.6 18.7 11.5 39 20.6 60.6 27 16.9 5 34.8-4.6 39.8-21.5s-4.6-34.8-21.5-39.8c-14.6-4.3-28.5-10.4-41.4-17.9.2-2 .3-4.1.3-6.2 0-35.3-28.7-64-64-64-2.1 0-4.1.1-6.2.3-7.5-12.9-13.6-26.8-17.9-41.4zm429.4 18.3c5-16.9-4.6-34.8-21.5-39.8S445 294 440 310.9c-4.3 14.6-10.4 28.5-17.9 41.4-2-.2-4.1-.3-6.2-.3-35.3 0-64 28.7-64 64 0 2.1.1 4.1.3 6.2-12.9 7.5-26.8 13.6-41.4 17.9-16.9 5-26.6 22.9-21.5 39.8s22.9 26.6 39.8 21.5a256 256 0 0 0 60.6-27c8 3.6 16.9 5.6 26.3 5.6 35.3 0 64-28.7 64-64 0-9.4-2-18.3-5.6-26.3 11.5-18.7 20.6-39 27-60.6zm-308.5-72.4c0-15.6 5.6-29.9 14.9-41.1L223 231c6.6 6.6 17.8 1.9 17.8-7.4v-60.5c0-5.7-4.7-10.4-10.4-10.4h-60.5c-9.3 0-13.9 11.2-7.4 17.8l11.2 11.2c-17.9 19.8-28.9 46.2-28.9 75.1 0 43.6 24.9 81.3 61.1 99.8 11.8 6 26.3 1.4 32.3-10.4s1.4-26.3-10.4-32.3c-20.8-10.6-34.9-32.2-34.9-57zm93.1-58.6c20.8 10.6 34.9 32.2 34.9 57 0 15.6-5.6 29.9-14.9 41.1L290.6 281c-6.6-6.6-17.8-1.9-17.8 7.4v60.5c0 5.7 4.7 10.4 10.4 10.4h60.5c9.3 0 13.9-11.2 7.4-17.8l-11.2-11.2c17.9-19.8 28.9-46.2 28.9-75.1 0-43.6-24.9-81.3-61.1-99.8-11.8-6-26.3-1.4-32.3 10.4s-1.4 26.3 10.4 32.3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/guarani-sign.svg������������������0000664�0000000�0000000�00000001262�14753064456�0030360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 0c-17.7 0-32 14.3-32 32v34.7C69.2 81.9 0 160.9 0 256s69.2 174.1 160 189.3V480c0 17.7 14.3 32 32 32s32-14.3 32-32v-34.7c90.8-15.2 160-94.2 160-189.3 0-17.7-14.3-32-32-32H224v-92c22.1 5.7 41.8 17.1 57.6 32.6 12.6 12.4 32.9 12.2 45.3-.4s12.2-32.9-.5-45.3C299 92 263.5 73.3 224 66.7V32c0-17.7-14.3-32-32-32m-32 132v248c-55.2-14.2-96-64.3-96-124s40.8-109.8 96-124m64 248v-92h92c-11.6 45-47 80.4-92 92"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/guitar.svg������������������������0000664�0000000�0000000�00000001364�14753064456�0027272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M465 7c-9.4-9.4-24.6-9.4-33.9 0L383 55c-2.4 2.4-4.3 5.3-5.5 8.5l-15.4 41-77.5 77.6c-45.1-29.4-99.3-30.2-131 1.6-11 11-18 24.6-21.4 39.6-3.7 16.6-19.1 30.7-36.1 31.6-25.6 1.3-49.3 10.7-67.3 28.6-44.8 44.9-36.4 125.9 18.7 181s136.1 63.5 180.9 18.7c17.9-17.9 27.4-41.7 28.6-67.3.9-17 15-32.3 31.6-36.1 15-3.4 28.6-10.5 39.6-21.4 31.8-31.8 31-85.9 1.6-131l77.6-77.6 41-15.4c3.2-1.2 6.1-3.1 8.5-5.5l48-48c9.4-9.4 9.4-24.6 0-33.9zM208 256a48 48 0 1 1 0 96 48 48 0 1 1 0-96"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/gun.svg���������������������������0000664�0000000�0000000�00000001402�14753064456�0026561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M528 56c0-13.3-10.7-24-24-24s-24 10.7-24 24v8H32C14.3 64 0 78.3 0 96v112c0 17.7 14.3 32 32 32h10c20.8 0 36.1 19.6 31 39.8L33 440.2c-2.4 9.6-.2 19.7 5.8 27.5S54.1 480 64 480h96c14.7 0 27.5-10 31-24.2L217 352h104.5c23.7 0 44.8-14.9 52.7-37.2l26.7-74.8H432c8.5 0 16.6-3.4 22.6-9.4l22.7-22.6H544c17.7 0 32-14.3 32-32V96c0-17.7-14.3-32-32-32h-16zM321.4 304H229l16-64h105l-21 58.7c-1.1 3.2-4.2 5.3-7.5 5.3zM80 128h384c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/h.svg�����������������������������0000664�0000000�0000000�00000000717�14753064456�0026227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 256v192c0 17.7 14.3 32 32 32s32-14.3 32-32V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v128H64V64c0-17.7-14.3-32-32-32S0 46.3 0 64v384c0 17.7 14.3 32 32 32s32-14.3 32-32V256z"/></svg>�������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hammer.svg������������������������0000664�0000000�0000000�00000001473�14753064456�0027251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M413.5 237.5c-28.2 4.8-58.2-3.6-80-25.4L295.4 174c-15-15-23.4-35.2-23.4-56.4v-12.1L192.3 62c-5.3-2.9-8.6-8.6-8.3-14.7s3.9-11.5 9.5-14l47.2-21C259.1 4.2 279 0 299.2 0h18.1c36.7 0 72 14 98.7 39.1l44.6 42c24.2 22.8 33.2 55.7 26.6 86L503 183l8-8c9.4-9.4 24.6-9.4 33.9 0l24 24c9.4 9.4 9.4 24.6 0 33.9l-88 88c-9.4 9.4-24.6 9.4-33.9 0l-24-24c-9.4-9.4-9.4-24.6 0-33.9l8-8zM27.4 377.1l233.5-194.5c3.5 4.9 7.5 9.6 11.8 14l38.1 38.1c6 6 12.4 11.2 19.2 15.7L134.9 484.6C120.4 502 98.9 512 76.3 512 34.1 512 0 477.8 0 435.7c0-22.6 10.1-44.1 27.4-58.6"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hamsa.svg�������������������������0000664�0000000�0000000�00000001644�14753064456�0027071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M34.6 288H80c8.8 0 16-7.2 16-16V72c0-22.1 17.9-40 40-40s40 17.9 40 40v132c0 11 9 20 20 20s20-9 20-20V40c0-22.1 17.9-40 40-40s40 17.9 40 40v164c0 11 9 20 20 20s20-9 20-20V72c0-22.1 17.9-40 40-40s40 17.9 40 40v200c0 8.8 7.2 16 16 16h45.4c19.1 0 34.6 15.5 34.6 34.6 0 8.6-3.2 16.9-9 23.3L416.6 441c-41.1 45.2-99.4 71-160.6 71s-119.4-25.8-160.6-71L9 345.9c-5.8-6.4-9-14.7-9-23.3C0 303.5 15.5 288 34.6 288m221.4 0c-38.4 0-76.8 35.8-90.6 50.2-3.6 3.7-5.4 8.7-5.4 13.8s1.8 10.1 5.4 13.8c13.8 14.4 52.2 50.2 90.6 50.2s76.8-35.8 90.6-50.2c3.6-3.7 5.4-8.7 5.4-13.8s-1.8-10.1-5.4-13.8C332.8 323.8 294.4 288 256 288m0 32a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>��������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hand-back-fist.svg����������������0000664�0000000�0000000�00000001251�14753064456�0030545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M144 0c-26.5 0-48 21.5-48 48v128c0 8.8-7.2 16-16 16s-16-7.2-16-16v-26.7l-9 7.5C40.4 169 32 187 32 206v38c0 38 16.9 74 46.1 98.3L128 384v96c0 17.7 14.3 32 32 32h160c17.7 0 32-14.3 32-32V374.7c46.9-19 80-65 80-118.7V144c0-26.5-21.5-48-48-48-12.4 0-23.6 4.7-32.1 12.3C350 83.5 329.3 64 304 64c-12.4 0-23.6 4.7-32.1 12.3C270 51.5 249.3 32 224 32c-12.4 0-23.6 4.7-32.1 12.3C190 19.5 169.3 0 144 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hand-dots.svg���������������������0000664�0000000�0000000�00000001670�14753064456�0027660�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32v208c0 8.8-7.2 16-16 16s-16-7.2-16-16V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v272c0 1.5 0 3.1.1 4.6L67.6 283c-16-15.2-41.3-14.6-56.6 1.4s-14.6 41.3 1.4 56.6l112.4 107c43.1 41.1 100.4 64 160 64H304c97.2 0 176-78.8 176-176V128c0-17.7-14.3-32-32-32s-32 14.3-32 32v112c0 8.8-7.2 16-16 16s-16-7.2-16-16V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v176c0 8.8-7.2 16-16 16s-16-7.2-16-16zm-48 304a16 16 0 1 1 32 0 16 16 0 1 1-32 0m80 16a16 16 0 1 1 0 32 16 16 0 1 1 0-32m48-16a16 16 0 1 1 32 0 16 16 0 1 1-32 0m-16 80a16 16 0 1 1 0 32 16 16 0 1 1 0-32m-112 16a16 16 0 1 1 32 0 16 16 0 1 1-32 0m-48-48a16 16 0 1 1 0 32 16 16 0 1 1 0-32"/></svg>������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hand-fist.svg���������������������0000664�0000000�0000000�00000001663�14753064456�0027656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 0c17.7 0 32 14.3 32 32v112h-64V32c0-17.7 14.3-32 32-32M64 64c0-17.7 14.3-32 32-32s32 14.3 32 32v80H64zm192 0c0-17.7 14.3-32 32-32s32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32zm96 64c0-17.7 14.3-32 32-32s32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32zm-96 88v-.6c9.4 5.4 20.3 8.6 32 8.6 13.2 0 25.4-4 35.6-10.8 8.7 24.9 32.5 42.8 60.4 42.8 11.7 0 22.6-3.1 32-8.6v8.6c0 52.3-25.1 98.8-64 128v96c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32v-78.4c-17.3-7.9-33.2-18.8-46.9-32.5l-11.6-11.6c-24-24-37.5-56.6-37.5-90.5v-27c0-35.3 28.7-64 64-64h88c22.1 0 40 17.9 40 40s-17.9 40-40 40h-56c-8.8 0-16 7.2-16 16s7.2 16 16 16h56c39.8 0 72-32.2 72-72"/></svg>�����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hand-holding-dollar.svg�����������0000664�0000000�0000000�00000002560�14753064456�0031605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M312 24v10.5c6.4 1.2 12.6 2.7 18.2 4.2 12.8 3.4 20.4 16.6 17 29.4s-16.6 20.4-29.4 17c-10.9-2.9-21.1-4.9-30.2-5-7.3-.1-14.7 1.7-19.4 4.4-2.1 1.3-3.1 2.4-3.5 3-.3.5-.7 1.2-.7 2.8v.6c.2.2.9 1.2 3.3 2.6 5.8 3.5 14.4 6.2 27.4 10.1l.9.3c11.1 3.3 25.9 7.8 37.9 15.3 13.7 8.6 26.1 22.9 26.4 44.9.3 22.5-11.4 38.9-26.7 48.5-6.7 4.1-13.9 7-21.3 8.8V232c0 13.3-10.7 24-24 24s-24-10.7-24-24v-11.4c-9.5-2.3-18.2-5.3-25.6-7.8-2.1-.7-4.1-1.4-6-2-12.6-4.2-19.4-17.8-15.2-30.4s17.8-19.4 30.4-15.2c2.6.9 5 1.7 7.3 2.5 13.6 4.6 23.4 7.9 33.9 8.3 8 .3 15.1-1.6 19.2-4.1 1.9-1.2 2.8-2.2 3.2-2.9.4-.6.9-1.8.8-4.1v-.2c0-1 0-2.1-4-4.6-5.7-3.6-14.3-6.4-27.1-10.3l-1.9-.6c-10.8-3.2-25-7.5-36.4-14.4-13.5-8.1-26.5-22-26.6-44.1-.1-22.9 12.9-38.6 27.7-47.4 6.4-3.8 13.3-6.4 20.2-8.2L264 24c0-13.3 10.7-24 24-24s24 10.7 24 24m256.2 312.3c13.1 17.8 9.3 42.8-8.5 55.9l-126.6 93.3c-23.4 17.2-51.6 26.5-80.7 26.5H32c-17.7 0-32-14.3-32-32v-64c0-17.7 14.3-32 32-32h36.8l44.9-36c22.7-18.2 50.9-28 80-28H352c17.7 0 32 14.3 32 32s-14.3 32-32 32h-80c-8.8 0-16 7.2-16 16s7.2 16 16 16h120.6l119.7-88.2c17.8-13.1 42.8-9.3 55.9 8.5M193.6 384h-.9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hand-holding-droplet.svg����������0000664�0000000�0000000�00000001354�14753064456�0032001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M275.5 6.6C278.3 2.5 283 0 288 0s9.7 2.5 12.5 6.6l66.3 96.4c11.2 16.3 17.2 35.6 17.2 55.3v1.7c0 53-43 96-96 96s-96-43-96-96v-1.7c0-19.8 6-39 17.2-55.3zm292.7 329.7c13.1 17.8 9.3 42.8-8.5 55.9l-126.6 93.3c-23.4 17.2-51.6 26.5-80.7 26.5H32c-17.7 0-32-14.3-32-32v-64c0-17.7 14.3-32 32-32h36.8l44.9-36c22.7-18.2 50.9-28 80-28H352c17.7 0 32 14.3 32 32s-14.3 32-32 32h-80c-8.8 0-16 7.2-16 16s7.2 16 16 16h120.6l119.7-88.2c17.8-13.1 42.8-9.3 55.9 8.5M193.6 384h-.9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hand-holding-hand.svg�������������0000664�0000000�0000000�00000001605�14753064456�0031241�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M7.8 207.7c-13.1-17.8-9.3-42.8 8.5-55.9l126.6-93.3C166.2 41.3 194.5 32 223.5 32H544c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32h-36.8l-44.9 36c-22.7 18.2-50.9 28-80 28H224c-17.7 0-32-14.3-32-32s14.3-32 32-32h80c8.8 0 16-7.2 16-16s-7.2-16-16-16H183.4L63.7 216.2c-17.8 13.1-42.8 9.3-55.9-8.5M382.4 160h.9zm185.8 144.3c13.1 17.8 9.3 42.8-8.5 55.9l-126.6 93.3c-23.4 17.2-51.6 26.5-80.7 26.5H32c-17.7 0-32-14.3-32-32v-64c0-17.7 14.3-32 32-32h36.8l44.9-36c22.7-18.2 50.9-28 80-28H352c17.7 0 32 14.3 32 32s-14.3 32-32 32h-80c-8.8 0-16 7.2-16 16s7.2 16 16 16h120.6l119.7-88.2c17.8-13.1 42.8-9.3 55.9 8.5M193.6 352h-.9z"/></svg>���������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hand-holding-heart.svg������������0000664�0000000�0000000�00000001401�14753064456�0031424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M163.9 136.9c-29.4-29.8-29.4-78.2 0-108s77-29.8 106.4 0l17.7 18 17.7-18c29.4-29.8 77-29.8 106.4 0s29.4 78.2 0 108L310.5 240.1c-6.2 6.3-14.3 9.4-22.5 9.4s-16.3-3.1-22.5-9.4zm404.3 199.4c13.1 17.8 9.3 42.8-8.5 55.9l-126.6 93.3c-23.4 17.2-51.6 26.5-80.7 26.5H32c-17.7 0-32-14.3-32-32v-64c0-17.7 14.3-32 32-32h36.8l44.9-36c22.7-18.2 50.9-28 80-28H352c17.7 0 32 14.3 32 32s-14.3 32-32 32h-80c-8.8 0-16 7.2-16 16s7.2 16 16 16h120.6l119.7-88.2c17.8-13.1 42.8-9.3 55.9 8.5M193.6 384h-.9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hand-holding-medical.svg����������0000664�0000000�0000000�00000001435�14753064456�0031726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 24v56h-56c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h56v56c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24v-56h56c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24h-56V24c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24m335.7 368.2c17.8-13.1 21.6-38.1 8.5-55.9s-38.1-21.6-55.9-8.5L392.6 416H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h80c17.7 0 32-14.3 32-32s-14.3-32-32-32H193.7c-29.1 0-57.3 9.9-80 28l-44.9 36H32c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32h320.5c29 0 57.3-9.3 80.7-26.5l126.6-93.3zm-367-8.2h.9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hand-holding.svg������������������0000664�0000000�0000000�00000001103�14753064456�0030322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M559.7 392.2c17.8-13.1 21.6-38.1 8.5-55.9s-38.1-21.6-55.9-8.5L392.6 416H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h80c17.7 0 32-14.3 32-32s-14.3-32-32-32H193.7c-29.1 0-57.3 9.9-80 28l-44.9 36H32c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32h320.5c29 0 57.3-9.3 80.7-26.5l126.6-93.3zm-367-8.2h.9z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hand-lizard.svg�������������������0000664�0000000�0000000�00000001053�14753064456�0030167�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 112c0-26.5 21.5-48 48-48h238.5c36.8 0 71.2 18 92.1 48.2l113.5 164c13 18.7 19.9 41 19.9 63.8v76c0 17.7-14.3 32-32 32h-96c-17.7 0-32-14.3-32-32v-13.8L273.9 352H112c-26.5 0-48-21.5-48-48s21.5-48 48-48h128c26.5 0 48-21.5 48-48s-21.5-48-48-48H48c-26.5 0-48-21.5-48-48"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hand-middle-finger.svg������������0000664�0000000�0000000�00000001260�14753064456�0031410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M232 0c-22.1 0-40 17.9-40 40v164.2c-8.5-7.6-19.7-12.2-32-12.2-26.5 0-48 21.5-48 48v80c0 8.8-7.2 16-16 16s-16-7.2-16-16v-55.7c-2 1.4-3.9 3-5.8 4.5l-19.2 16C40.4 297 32 315 32 334v38c0 38 16.9 74 46.1 98.3l5.4 4.5c28.8 24 65 37.1 102.4 37.1l118.1.1c70.7 0 128-57.3 128-128v-96c0-26.5-21.5-48-48-48-12.4 0-23.6 4.7-32.1 12.3C350 227.5 329.3 208 304 208c-12.3 0-23.5 4.6-32 12.2V40c0-22.1-17.9-40-40-40"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hand-peace.svg��������������������0000664�0000000�0000000�00000001665�14753064456�0027770�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 0c17.7 0 32 14.3 32 32v208h-64V32c0-17.7 14.3-32 32-32m96 160c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32v-64c0-17.7 14.3-32 32-32m64 64c0-17.7 14.3-32 32-32s32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32zM93.3 51.2 175.9 240H106L34.7 76.8c-7.1-16.2.3-35 16.5-42.1s35.1.3 42.1 16.5m27 221.3-.2-.5h96c22.1 0 40 17.9 40 40s-17.9 40-40 40h-56c-8.8 0-16 7.2-16 16s7.2 16 16 16h56c39.8 0 72-32.2 72-72v-.6c9.4 5.4 20.3 8.6 32 8.6 13.2 0 25.4-4 35.6-10.8 8.7 24.9 32.5 42.8 60.4 42.8 11.7 0 22.6-3.1 32-8.6v8.6c0 88.4-71.6 160-160 160h-61.7c-42.4 0-83.1-16.9-113.1-46.9l-11.6-11.6C77.5 429.5 64 396.9 64 363v-27c0-32.7 24.6-59.7 56.3-63.5"/></svg>���������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hand-point-down.svg���������������0000664�0000000�0000000�00000001637�14753064456�0031010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 480c0 17.7 14.3 32 32 32s32-14.3 32-32V272H32zm192-160c0 17.7 14.3 32 32 32s32-14.3 32-32v-64c0-17.7-14.3-32-32-32s-32 14.3-32 32zm-64 64c17.7 0 32-14.3 32-32v-48c0-17.7-14.3-32-32-32s-32 14.3-32 32v48c0 17.7 14.3 32 32 32m160-96c0 17.7 14.3 32 32 32s32-14.3 32-32v-64c0-17.7-14.3-32-32-32s-32 14.3-32 32zm-96-88v.6c9.4-5.4 20.3-8.6 32-8.6 13.2 0 25.4 4 35.6 10.8 8.7-24.9 32.5-42.8 60.4-42.8 11.7 0 22.6 3.1 32 8.6V160C384 71.6 312.4 0 224 0h-61.7C119.8 0 79.1 16.9 49.1 46.9L37.5 58.5C13.5 82.5 0 115.1 0 149v27c0 35.3 28.7 64 64 64h88c22.1 0 40-17.9 40-40s-17.9-40-40-40H96c-8.8 0-16-7.2-16-16s7.2-16 16-16h56c39.8 0 72 32.2 72 72"/></svg>�������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hand-point-left.svg���������������0000664�0000000�0000000�00000001646�14753064456�0030773�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 96c-17.7 0-32 14.3-32 32s14.3 32 32 32h208V96zm160 192c-17.7 0-32 14.3-32 32s14.3 32 32 32h64c17.7 0 32-14.3 32-32s-14.3-32-32-32zm-64-64c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32s-14.3-32-32-32h-48c-17.7 0-32 14.3-32 32m96 160c-17.7 0-32 14.3-32 32s14.3 32 32 32h64c17.7 0 32-14.3 32-32s-14.3-32-32-32zm88-96h-.6c5.4 9.4 8.6 20.3 8.6 32 0 13.2-4 25.4-10.8 35.6 24.9 8.7 42.8 32.5 42.8 60.4 0 11.7-3.1 22.6-8.6 32h8.6c88.4 0 160-71.6 160-160v-61.7c0-42.4-16.9-83.1-46.9-113.1l-11.6-11.6C429.5 77.5 396.9 64 363 64h-27c-35.3 0-64 28.7-64 64v88c0 22.1 17.9 40 40 40s40-17.9 40-40v-56c0-8.8 7.2-16 16-16s16 7.2 16 16v56c0 39.8-32.2 72-72 72"/></svg>������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hand-point-right.svg��������������0000664�0000000�0000000�00000001646�14753064456�0031156�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M480 96c17.7 0 32 14.3 32 32s-14.3 32-32 32H272V96zM320 288c17.7 0 32 14.3 32 32s-14.3 32-32 32h-64c-17.7 0-32-14.3-32-32s14.3-32 32-32zm64-64c0 17.7-14.3 32-32 32h-48c-17.7 0-32-14.3-32-32s14.3-32 32-32h48c17.7 0 32 14.3 32 32m-96 160c17.7 0 32 14.3 32 32s-14.3 32-32 32h-64c-17.7 0-32-14.3-32-32s14.3-32 32-32zm-88-96h.6c-5.4 9.4-8.6 20.3-8.6 32 0 13.2 4 25.4 10.8 35.6-24.9 8.7-42.8 32.5-42.8 60.4 0 11.7 3.1 22.6 8.6 32H160C71.6 448 0 376.4 0 288v-61.7c0-42.4 16.9-83.1 46.9-113.1l11.6-11.6C82.5 77.5 115.1 64 149 64h27c35.3 0 64 28.7 64 64v88c0 22.1-17.9 40-40 40s-40-17.9-40-40v-56c0-8.8-7.2-16-16-16s-16 7.2-16 16v56c0 39.8 32.2 72 72 72"/></svg>������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hand-point-up.svg�����������������0000664�0000000�0000000�00000001641�14753064456�0030460�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 32C32 14.3 46.3 0 64 0s32 14.3 32 32v208H32zm192 160c0-17.7 14.3-32 32-32s32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32zm-64-64c17.7 0 32 14.3 32 32v48c0 17.7-14.3 32-32 32s-32-14.3-32-32v-48c0-17.7 14.3-32 32-32m160 96c0-17.7 14.3-32 32-32s32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32zm-96 88v-.6c9.4 5.4 20.3 8.6 32 8.6 13.2 0 25.4-4 35.6-10.8 8.7 24.9 32.5 42.8 60.4 42.8 11.7 0 22.6-3.1 32-8.6v8.6c0 88.4-71.6 160-160 160h-61.7c-42.4 0-83.1-16.9-113.1-46.9l-11.7-11.6C13.5 429.5 0 396.9 0 363v-27c0-35.3 28.7-64 64-64h88c22.1 0 40 17.9 40 40s-17.9 40-40 40H96c-8.8 0-16 7.2-16 16s7.2 16 16 16h56c39.8 0 72-32.2 72-72"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hand-pointer.svg������������������0000664�0000000�0000000�00000001527�14753064456�0030370�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 40c0-22.1 17.9-40 40-40s40 17.9 40 40v148.2c8.5-7.6 19.7-12.2 32-12.2 20.6 0 38.2 13 45 31.2 8.8-9.3 21.2-15.2 35-15.2 25.3 0 46 19.5 47.9 44.3 8.5-7.7 19.8-12.3 32.1-12.3 26.5 0 48 21.5 48 48v112c0 70.7-57.3 128-128 128h-85.3c-5 0-9.9-.3-14.7-1-55.3-5.6-106.2-34-140-79L8 336c-13.3-17.7-9.7-42.7 8-56s42.7-9.7 56 8l56 74.7zm112 264c0-8.8-7.2-16-16-16s-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16zm48-16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16v-96c0-8.8-7.2-16-16-16m80 16c0-8.8-7.2-16-16-16s-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hand-scissors.svg�����������������0000664�0000000�0000000�00000001272�14753064456�0030555�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M40 208c-22.1 0-40 17.9-40 40s17.9 40 40 40h180.2c-7.6 8.5-12.2 19.7-12.2 32 0 25.3 19.5 46 44.3 47.9-7.7 8.5-12.3 19.8-12.3 32.1 0 26.5 21.5 48 48 48h96c70.7 0 128-57.3 128-128V206.9c0-40.2-16-78.8-44.4-107.3C444.8 76.8 413.9 64 381.7 64H336c-21.3 0-39.3 13.9-45.6 33.1l74.5 23.7c8.4 2.7 13.1 11.7 10.4 20.1s-11.7 13.1-20.1 10.4L288 129.9v.1L84 65.8C62.9 59.2 40.5 70.9 33.8 92s5.1 43.5 26.2 50.2L269.5 208z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hand-sparkles.svg�����������������0000664�0000000�0000000�00000003006�14753064456�0030526�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 0c17.7 0 32 14.3 32 32v208c0 8.8 7.2 16 16 16s16-7.2 16-16V64c0-17.7 14.3-32 32-32s32 14.3 32 32v176c0 8.8 7.2 16 16 16s16-7.2 16-16V128c0-17.7 14.3-32 32-32s32 14.3 32 32v195.1c-11.9 4.8-21.3 14.9-25 27.8l-8.9 31.2-31.2 8.9c-18.3 5.3-30.9 22-30.9 41 0 18.9 12.5 35.6 30.6 40.9C448.4 497.4 409.9 512 368 512h-19.2c-59.6 0-116.9-22.9-160-64L76.4 341c-16-15.2-16.6-40.6-1.4-56.6s40.6-16.6 56.6-1.4l60.5 57.6c0-1.5-.1-3.1-.1-4.6V64c0-17.7 14.3-32 32-32s32 14.3 32 32v176c0 8.8 7.2 16 16 16s16-7.2 16-16V32c0-17.7 14.3-32 32-32m-7.3 326.6c-1.1-3.9-4.7-6.6-8.7-6.6s-7.6 2.7-8.7 6.6L288 352l-25.4 7.3c-3.9 1.1-6.6 4.7-6.6 8.7s2.7 7.6 6.6 8.7L288 384l7.3 25.4c1.1 3.9 4.7 6.6 8.7 6.6s7.6-2.7 8.7-6.6L320 384l25.4-7.3c3.9-1.1 6.6-4.7 6.6-8.7s-2.7-7.6-6.6-8.7L320 352zM104 120l48.3 13.8c4.6 1.3 7.7 5.5 7.7 10.2s-3.1 8.9-7.7 10.2L104 168l-13.8 48.3c-1.3 4.6-5.5 7.7-10.2 7.7s-8.9-3.1-10.2-7.7L56 168 7.7 154.2C3.1 152.9 0 148.7 0 144s3.1-8.9 7.7-10.2L56 120l13.8-48.3C71.1 67.1 75.3 64 80 64s8.9 3.1 10.2 7.7zm480 288 48.3 13.8c4.6 1.3 7.7 5.5 7.7 10.2s-3.1 8.9-7.7 10.2L584 456l-13.8 48.3c-1.3 4.6-5.5 7.7-10.2 7.7s-8.9-3.1-10.2-7.7L536 456l-48.3-13.8c-4.6-1.3-7.7-5.5-7.7-10.2s3.1-8.9 7.7-10.2L536 408l13.8-48.3c1.3-4.6 5.5-7.7 10.2-7.7s8.9 3.1 10.2 7.7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hand-spock.svg��������������������0000664�0000000�0000000�00000001577�14753064456�0030034�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M246.9 23.7c-4.6-17.1-22.1-27.2-39.2-22.6s-27.2 22.1-22.6 39.2L238 237.8c2.5 9.2-4.5 18.2-14 18.2-6.4 0-12-4.2-13.9-10.3l-43.5-143c-5.1-16.9-23-26.4-39.9-21.3s-26.4 23-21.3 39.9l62.8 206.4c2.4 7.9-7.2 13.8-13.2 8.1L99.6 283c-16-15.2-41.3-14.6-56.6 1.4s-14.6 41.3 1.4 56.6l112.4 107c43.1 41.1 100.4 64 160 64h19.1c.1 0 .1-.1.1-.1l.1-.1c58.3-3.5 108.6-43.2 125.3-99.7l81.2-275c5-16.9-4.7-34.7-21.6-39.8s-34.7 4.7-39.8 21.6l-37.7 128.2c-1.6 5.3-6.4 8.9-12 8.9-7.9 0-13.8-7.3-12.2-15.1l36-170.3c3.7-17.3-7.4-34.3-24.7-37.9s-34.3 7.4-37.9 24.7l-37.6 177.7c-2.6 12.2-13.3 20.9-25.8 20.9-11.9 0-22.4-8-25.4-19.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hand.svg��������������������������0000664�0000000�0000000�00000001302�14753064456�0026701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32v208c0 8.8-7.2 16-16 16s-16-7.2-16-16V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v272c0 1.5 0 3.1.1 4.6L67.6 283c-16-15.2-41.3-14.6-56.6 1.4s-14.6 41.3 1.4 56.6l112.4 107c43.1 41.1 100.4 64 160 64H304c97.2 0 176-78.8 176-176V128c0-17.7-14.3-32-32-32s-32 14.3-32 32v112c0 8.8-7.2 16-16 16s-16-7.2-16-16V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v176c0 8.8-7.2 16-16 16s-16-7.2-16-16z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/handcuffs.svg���������������������0000664�0000000�0000000�00000002065�14753064456�0027737�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M240 32a32 32 0 1 1 64 0 32 32 0 1 1-64 0m-48 16a32 32 0 1 1 0 64 32 32 0 1 1 0-64m-32 80c17.7 0 32 14.3 32 32h8c13.3 0 24 10.7 24 24v16c0 1.7-.2 3.4-.5 5.1C280.3 229.6 320 286.2 320 352c0 88.4-71.6 160-160 160S0 440.4 0 352c0-65.8 39.7-122.4 96.5-146.9-.4-1.6-.5-3.3-.5-5.1v-16c0-13.3 10.7-24 24-24h8c0-17.7 14.3-32 32-32m0 320a96 96 0 1 0 0-192 96 96 0 1 0 0 192m192-96c0-25.9-5.1-50.5-14.4-73.1 16.9-32.9 44.8-59.1 78.9-73.9-.4-1.6-.5-3.3-.5-5.1v-16c0-13.3 10.7-24 24-24h8c0-17.7 14.3-32 32-32s32 14.3 32 32h8c13.3 0 24 10.7 24 24v16c0 1.7-.2 3.4-.5 5.1 56.8 24.6 96.5 81.2 96.5 147 0 88.4-71.6 160-160 160-62 0-115.8-35.3-142.4-86.9 9.3-22.5 14.4-47.2 14.4-73.1m224 0a96 96 0 1 0-192 0 96 96 0 1 0 192 0M368 0a32 32 0 1 1 0 64 32 32 0 1 1 0-64m80 48a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hands-asl-interpreting.svg��������0000664�0000000�0000000�00000002430�14753064456�0032354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M156.6 46.3c7.9-15.8 1.5-35-14.3-42.9s-35-1.5-42.9 14.3L13.5 189.4C4.6 207.2 0 226.8 0 246.7v9.3c0 70.7 57.3 128 128 128h80v-.3c35.2-2.7 65.4-22.8 82.1-51.7 8.8-15.3 3.6-34.9-11.7-43.7s-34.9-3.6-43.7 11.7c-7 12-19.9 20-34.7 20-22.1 0-40-17.9-40-40s17.9-40 40-40c14.8 0 27.7 8 34.7 20 8.8 15.3 28.4 20.5 43.7 11.7s20.5-28.4 11.7-43.7c-12.8-22.1-33.6-39.1-58.4-47.1l80.8-22c17-4.6 27.1-22.2 22.5-39.3s-22.2-27.1-39.3-22.5l-100.8 27.5 81.6-68c13.6-11.3 15.4-31.5 4.1-45.1s-31.5-15.4-45.1-4.1L133.6 92.3zm326.8 419.4c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3l85.9-171.7c8.9-17.8 13.5-37.4 13.5-57.2v-9.3c0-70.7-57.3-128-128-128h-80v.3c-35.2 2.7-65.4 22.8-82.1 51.7-8.9 15.3-3.6 34.9 11.7 43.7s34.9 3.6 43.7-11.7c7-12 19.9-20 34.7-20 22.1 0 40 17.9 40 40s-17.9 40-40 40c-14.8 0-27.7-8-34.7-20-8.9-15.3-28.4-20.5-43.7-11.7s-20.5 28.4-11.7 43.7c12.8 22.1 33.6 39.1 58.4 47.1l-80.8 22c-17.1 4.7-27.1 22.2-22.5 39.3s22.2 27.1 39.3 22.5L445 387.5l-81.6 68c-13.6 11.3-15.4 31.5-4.1 45.1s31.5 15.4 45.1 4.1l101.9-84.9-23 46z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hands-bound.svg�������������������0000664�0000000�0000000�00000001725�14753064456�0030202�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 32C96 14.3 81.7 0 64 0S32 14.3 32 32v181.9c0 14.2 5.1 27.9 14.3 38.7l85.3 99.4H128c-13.3 0-24 10.7-24 24s10.7 24 24 24h384c13.3 0 24-10.7 24-24s-10.7-24-24-24h-3.6l85.3-99.5c9.2-10.8 14.3-24.5 14.3-38.7V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v112.8l-69.3 92.4c-5.7 7.6-16.1 9.6-24.2 4.8-9.7-5.7-12.1-18.7-5.1-27.5L473 180c10.8-13.5 8.9-33.3-4.4-44.5s-33-9.8-44.5 3.2l-46.7 52.5C361 209.7 352 233.4 352 258.1V352h-64v-93.9c0-24.6-9-48.4-25.4-66.8l-46.7-52.5c-11.5-13-31.3-14.4-44.5-3.2s-15.2 30.9-4.4 44.5l27.6 34.5c7 8.8 4.7 21.8-5.1 27.5-8.1 4.8-18.6 2.7-24.2-4.8L96 144.8V32m64 448v32h128v-32h64v32h128v-32h32c13.3 0 24-10.7 24-24s-10.7-24-24-24H128c-13.3 0-24 10.7-24 24s10.7 24 24 24z"/></svg>�������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hands-bubbles.svg�����������������0000664�0000000�0000000�00000002724�14753064456�0030511�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M416 64a32 32 0 1 0 0-64 32 32 0 1 0 0 64m96 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64M160 464a48 48 0 1 0-96 0 48 48 0 1 0 96 0M32 160l.1 72.6c.1 52.2 24 101 64 133.1-.1-1.9-.1-3.8-.1-5.7v-8c0-71.8 37-138.6 97.9-176.7l60.2-37.6c8.6-5.4 17.9-8.4 27.3-9.4l45.9-79.5c6.6-11.5 2.7-26.2-8.8-32.8s-26.2-2.7-32.8 8.8l-78 135.1c-3.3 5.7-10.7 7.7-16.4 4.4s-7.7-10.7-4.4-16.4l62-107.4c6.6-11.5 2.7-26.2-8.8-32.8S214 5 207.4 16.5l-68 117.8-43.3 75L96 160c0-17.7-14.4-32-32-32s-32 14.4-32 32m300.1-71.5L307.5 131c13.9 4.5 26.4 13.7 34.7 27 .9 1.5 1.8 2.9 2.5 4.4l28.9-50c6.6-11.5 2.7-26.2-8.8-32.8s-26.2-2.7-32.8 8.8zm46.4 63.7-26.8 46.4c-.6 6-2.1 11.8-4.3 17.4h49.8l23-39.8c6.6-11.5 2.7-26.2-8.8-32.8s-26.2-2.7-32.8 8.8zM315.1 175c-9.4-15-29.1-19.5-44.1-10.2l-60.2 37.6C159.3 234.7 128 291.2 128 352v8c0 8.9.8 17.6 2.2 26.1 35.4 8.2 61.8 40 61.8 77.9 0 6.3-.7 12.5-2.1 18.4C215.1 501 246.3 512 280 512h176c13.3 0 24-10.7 24-24s-10.7-24-24-24h-92c-6.6 0-12-5.4-12-12s5.4-12 12-12h124c13.3 0 24-10.7 24-24s-10.7-24-24-24H364c-6.6 0-12-5.4-12-12s5.4-12 12-12h156c13.3 0 24-10.7 24-24s-10.7-24-24-24H364c-6.6 0-12-5.4-12-12s5.4-12 12-12h124c13.3 0 24-10.7 24-24s-10.7-24-24-24H258.8l46.2-28.9c15-9.4 19.5-29.1 10.2-44.1z"/></svg>��������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hands-clapping.svg����������������0000664�0000000�0000000�00000002343�14753064456�0030665�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M336 16v64c0 8.8-7.2 16-16 16s-16-7.2-16-16V16c0-8.8 7.2-16 16-16s16 7.2 16 16m-98.7 7.1 32 48c4.9 7.4 2.9 17.3-4.4 22.2s-17.3 2.9-22.2-4.4l-32-48c-4.9-7.4-2.9-17.3 4.4-22.2s17.3-2.9 22.2 4.4M135 119c9.4-9.4 24.6-9.4 33.9 0l123.8 123.7c10.1 10.1 27.3 2.9 27.3-11.3V192c0-17.7 14.3-32 32-32s32 14.3 32 32v153.6c0 57.1-30 110-78.9 139.4-64 38.4-145.8 28.3-198.5-24.4L7 361c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l53 53c6.1 6.1 16 6.1 22.1 0s6.1-16 0-22.1l-93-93c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l93 93c6.1 6.1 16 6.1 22.1 0s6.1-16 0-22.1L55 185c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l117 117c6.1 6.1 16 6.1 22.1 0s6.1-16 0-22.1l-93-93c-9.4-9.4-9.4-24.6 0-33.9zm298.1 365.9c-24.2 14.5-50.9 22.1-77.7 23.1 48.1-39.6 76.6-99 76.6-162.4v-98.1c8.2-.1 16-6.4 16-16v-39.4c0-17.7 14.3-32 32-32s32 14.3 32 32v153.6c0 57.1-30 110-78.9 139.4zm-8.2-466.2c7.4 4.9 9.3 14.8 4.4 22.2l-32 48c-4.9 7.4-14.8 9.3-22.2 4.4s-9.3-14.8-4.4-22.2l32-48c4.9-7.4 14.8-9.3 22.2-4.4"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hands-holding-child.svg�����������0000664�0000000�0000000�00000002531�14753064456�0031574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 0a40 40 0 1 1 0 80 40 40 0 1 1 0-80m44.7 164.3 11.1 88.7c1.6 13.2-7.7 25.1-20.8 26.8s-25.1-7.7-26.8-20.8l-4.4-35h-7.6l-4.4 35c-1.6 13.2-13.6 22.5-26.8 20.8s-22.5-13.6-20.8-26.8l11.1-88.8-19.8 16.8c-10.1 8.6-25.3 7.3-33.8-2.8s-7.3-25.3 2.8-33.8l27.9-23.6c18.9-16 42.9-24.8 67.6-24.8s48.7 8.8 67.6 24.7l27.9 23.6c10.1 8.6 11.4 23.7 2.8 33.8s-23.7 11.4-33.8 2.8l-19.8-16.7zM40 64c22.1 0 40 17.9 40 40v160.2c0 17 6.7 33.3 18.7 45.3l51.1 51.1c8.3 8.3 21.3 9.6 31 3.1 12.9-8.6 14.7-26.9 3.7-37.8l-15.2-15.2-32-32c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l32 32 15.2 15.2 25.3 25.3c21 21 32.8 49.5 32.8 79.2V464c0 26.5-21.5 48-48 48h-66.7c-17 0-33.3-6.7-45.3-18.7l-99.8-99.9C10.1 375.4 0 351 0 325.5V104c0-22.1 17.9-40 40-40m560 0c22.1 0 40 17.9 40 40v221.5c0 25.5-10.1 49.9-28.1 67.9L512 493.3c-12 12-28.3 18.7-45.3 18.7H400c-26.5 0-48-21.5-48-48v-78.9c0-29.7 11.8-58.2 32.8-79.2l25.3-25.3 15.2-15.2 32-32c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-32 32-15.2 15.2c-11 11-9.2 29.2 3.7 37.8 9.7 6.5 22.7 5.2 31-3.1l51.1-51.1c12-12 18.7-28.3 18.7-45.3V104c0-22.1 17.9-40 40-40z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hands-holding-circle.svg����������0000664�0000000�0000000�00000002020�14753064456�0031743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 0a128 128 0 1 1 0 256 128 128 0 1 1 0-256M40 64c22.1 0 40 17.9 40 40v160.2c0 17 6.7 33.3 18.7 45.3l51.1 51.1c8.3 8.3 21.3 9.6 31 3.1 12.9-8.6 14.7-26.9 3.7-37.8l-15.2-15.2-32-32c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l32 32 15.2 15.2 25.3 25.3c21 21 32.8 49.5 32.8 79.2V464c0 26.5-21.5 48-48 48h-66.7c-17 0-33.3-6.7-45.3-18.7l-99.8-99.9C10.1 375.4 0 351 0 325.5V104c0-22.1 17.9-40 40-40m560 0c22.1 0 40 17.9 40 40v221.5c0 25.5-10.1 49.9-28.1 67.9L512 493.3c-12 12-28.3 18.7-45.3 18.7H400c-26.5 0-48-21.5-48-48v-78.9c0-29.7 11.8-58.2 32.8-79.2l25.3-25.3 15.2-15.2 32-32c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-32 32-15.2 15.2c-11 11-9.2 29.2 3.7 37.8 9.7 6.5 22.7 5.2 31-3.1l51.1-51.1c12-12 18.7-28.3 18.7-45.3V104c0-22.1 17.9-40 40-40z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hands-holding.svg�����������������0000664�0000000�0000000�00000001736�14753064456�0030521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M80 104c0-22.1-17.9-40-40-40S0 81.9 0 104v221.5c0 25.5 10.1 49.9 28.1 67.9l99.9 99.9c12 12 28.3 18.7 45.3 18.7H240c26.5 0 48-21.5 48-48v-78.9c0-29.7-11.8-58.2-32.8-79.2l-25.3-25.3-15.2-15.2-32-32c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l32 32 15.2 15.2c11 11 9.2 29.2-3.7 37.8-9.7 6.5-22.7 5.2-31-3.1l-51.2-51.1c-12-12-18.7-28.3-18.7-45.3V104m480 0v160.2c0 17-6.7 33.3-18.7 45.3l-51.1 51.1c-8.3 8.3-21.3 9.6-31 3.1-12.9-8.6-14.7-26.9-3.7-37.8l15.2-15.2 32-32c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-32 32-15.2 15.2-25.3 25.3c-21 21-32.8 49.5-32.8 79.2V464c0 26.5 21.5 48 48 48h66.7c17 0 33.3-6.7 45.3-18.7l99.9-99.9c18-18 28.1-42.4 28.1-67.9L640 224V104c0-22.1-17.9-40-40-40s-40 17.9-40 40"/></svg>����������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hands-praying.svg�����������������0000664�0000000�0000000�00000002236�14753064456�0030542�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M351.2 4.8c3.2-2 6.6-3.3 10-4.1 4.7-1 9.6-.9 14.1.1 7.7 1.8 14.8 6.5 19.4 13.6l119.9 179.8c8.8 13.1 13.4 28.6 13.4 44.4v73.5c0 6.9 4.4 13 10.9 15.2l79.2 26.4C631.2 358 640 370.2 640 384v96c0 9.9-4.6 19.3-12.5 25.4s-18.1 8.1-27.7 5.5l-168.8-45c-56-14.9-95-65.7-95-123.7V224c0-17.7 14.3-32 32-32s32 14.3 32 32v80c0 8.8 7.2 16 16 16s16-7.2 16-16v-84.9c0-7-1.8-13.8-5.3-19.8L340.3 48.1q-2.55-4.5-3.6-9.3c-1-4.7-1-9.6.1-14.1 1.9-8 6.8-15.2 14.3-19.9zm-62.4 0c7.5 4.6 12.4 11.9 14.3 19.9 1.1 4.6 1.2 9.4.1 14.1q-1.05 4.8-3.6 9.3l-86.3 151.2c-3.5 6-5.3 12.9-5.3 19.8V304c0 8.8 7.2 16 16 16s16-7.2 16-16v-80c0-17.7 14.3-32 32-32s32 14.3 32 32v118.2c0 58-39 108.7-95 123.7l-168.7 45c-9.6 2.6-19.9.5-27.7-5.5S0 490 0 480v-96c0-13.8 8.8-26 21.9-30.4l79.2-26.4c6.5-2.2 10.9-8.3 10.9-15.2v-73.5c0-15.8 4.7-31.2 13.4-44.4L245.2 14.5c4.6-7.1 11.7-11.8 19.4-13.6 4.6-1.1 9.4-1.2 14.1-.1 3.5.8 6.9 2.1 10 4.1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hands.svg�������������������������0000664�0000000�0000000�00000002411�14753064456�0027066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m544 160-.1 72.6c-.1 52.2-24 101-64 133.1.1-1.9.1-3.8.1-5.7v-8c0-71.8-37-138.6-97.9-176.7l-60.2-37.6c-8.6-5.4-17.9-8.4-27.3-9.4l-45.9-79.5c-6.6-11.5-2.7-26.2 8.8-32.8s26.2-2.7 32.8 8.8l78 135.1c3.3 5.7 10.7 7.7 16.4 4.4s7.7-10.7 4.4-16.4l-62-107.4c-6.6-11.5-2.7-26.2 8.8-32.8S362 5 368.6 16.5l68 117.8 43.3 75 .1-49.3c0-17.7 14.4-32 32-32s32 14.4 32 32M243.9 88.5l24.6 42.5c-13.9 4.5-26.4 13.7-34.7 27-.9 1.4-1.7 2.9-2.5 4.4l-28.9-50c-6.6-11.5-2.7-26.2 8.8-32.8s26.2-2.7 32.8 8.8zm-46.4 63.7 26.8 46.4c.6 6 2.1 11.8 4.3 17.4H179l-23-39.8c-6.6-11.5-2.7-26.2 8.8-32.8s26.2-2.7 32.8 8.8zm63.4 22.8c9.4-15 29.1-19.5 44.1-10.2l60.2 37.6C416.7 234.7 448 291.2 448 352v8c0 83.9-68.1 152-152 152H120c-13.3 0-24-10.7-24-24s10.7-24 24-24h92c6.6 0 12-5.4 12-12s-5.4-12-12-12H88c-13.3 0-24-10.7-24-24s10.7-24 24-24h124c6.6 0 12-5.4 12-12s-5.4-12-12-12H56c-13.3 0-24-10.7-24-24s10.7-24 24-24h156c6.6 0 12-5.4 12-12s-5.4-12-12-12H88c-13.3 0-24-10.7-24-24s10.7-24 24-24h229.2L271 219.1c-15-9.4-19.5-29.1-10.2-44.1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/handshake-angle.svg���������������0000664�0000000�0000000�00000001531�14753064456�0031005�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M544 248v3.3l69.7-69.7c21.9-21.9 21.9-57.3 0-79.2l-78.1-78c-21.9-21.9-57.3-21.9-79.2 0l-40.1 40.1c-2.7-.3-5.5-.5-8.3-.5H296c-37.1 0-67.6 28-71.6 64h-.4v120c0 22.1 17.9 40 40 40s40-17.9 40-40v-88h160c44.2 0 80 35.8 80 80zm-208-56v56c0 39.8-32.2 72-72 72s-72-32.2-72-72V129.4c-35.9 6.2-65.8 32.3-76 68.2l-16.5 57.6-73.2 73.2c-21.9 21.9-21.9 57.3 0 79.2l78.1 78.1c21.9 21.9 57.3 21.9 79.2 0l37.7-37.7c.9 0 1.8.1 2.7.1h160c26.5 0 48-21.5 48-48 0-5.6-1-11-2.7-16h2.7c26.5 0 48-21.5 48-48 0-12.8-5-24.4-13.2-33 25.7-5 45.1-27.6 45.2-54.8v-.4c-.1-30.8-25.1-55.8-56-55.8H336z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/handshake-simple-slash.svg��������0000664�0000000�0000000�00000001666�14753064456�0032331�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2s-6.3 25.5 4.1 33.7l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-135-105.8c-1.1-11.4-6.3-22.3-15.3-30.7l-134.2-123-23.4 18.2-26-20.3 77.2-60.1c7-5.4 17-4.2 22.5 2.8s4.2 17-2.8 22.5l-20.9 16.2L550.2 352H592c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48h-80.7l-3.9-2.5L434.8 79c-15.3-9.8-33.2-15-51.4-15-21.8 0-43 7.5-60 21.2l-89.7 72.6-25.8-20.3 81.8-66.2c-11.6-4.9-24.1-7.4-36.8-7.4C234 64 215.7 69.6 200 80l-35.5 23.7zM0 176v128c0 26.5 21.5 48 48 48h108.2l91.4 83.4c19.6 17.9 49.9 16.5 67.8-3.1 5.5-6.1 9.2-13.2 11.1-20.6l17 15.6c19.5 17.9 49.9 16.6 67.8-2.9.8-.8 1.5-1.7 2.2-2.6L41.2 128.5C17.9 131.8 0 151.8 0 176"/></svg>��������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/handshake-simple.svg��������������0000664�0000000�0000000�00000001665�14753064456�0031220�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m323.4 85.2-96.8 78.4c-16.1 13-19.2 36.4-7 53.1 12.9 17.8 38 21.3 55.3 7.8l99.3-77.2c7-5.4 17-4.2 22.5 2.8s4.2 17-2.8 22.5L373 188.8 550.2 352H592c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48h-80.7l-3.9-2.5L434.8 79c-15.3-9.8-33.2-15-51.4-15-21.8 0-43 7.5-60 21.2m22.8 124.4-51.7 40.2c-31.5 24.6-77.2 18.2-100.8-14.2-22.2-30.5-16.6-73.1 12.7-96.8l83.2-67.3c-11.6-4.9-24.1-7.4-36.8-7.4C234 64 215.7 69.6 200 80l-72 48H48c-26.5 0-48 21.5-48 48v128c0 26.5 21.5 48 48 48h108.2l91.4 83.4c19.6 17.9 49.9 16.5 67.8-3.1 5.5-6.1 9.2-13.2 11.1-20.6l17 15.6c19.5 17.9 49.9 16.6 67.8-2.9 4.5-4.9 7.8-10.6 9.9-16.5 19.4 13 45.8 10.3 62.1-7.5 17.9-19.5 16.6-49.9-2.9-67.8z"/></svg>���������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/handshake-slash.svg���������������0000664�0000000�0000000�00000002063�14753064456�0031032�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2s-6.3 25.5 4.1 33.7l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-135-105.8c-1.1-11.4-6.3-22.3-15.3-30.7l-134.2-123-23.4 18.2-26-20.3 77.2-60.1c7-5.4 17-4.2 22.5 2.8s4.2 17-2.8 22.5l-20.9 16.2L512 316.8V128h-.7l-3.9-2.5L434.8 79c-15.3-9.8-33.2-15-51.4-15-21.8 0-43 7.5-60 21.2l-89.7 72.6-25.8-20.3 81.8-66.2c-11.6-4.9-24.1-7.4-36.8-7.4C234 64 215.7 69.6 200 80l-35.5 23.7zM96 171.6 40.6 128H0v224c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32zm317.6 250.3L128 196.9V352h28.2l91.4 83.4c19.6 17.9 49.9 16.5 67.8-3.1 5.5-6.1 9.2-13.2 11.1-20.6l17 15.6c19.5 17.9 49.9 16.6 67.8-2.9.8-.8 1.5-1.7 2.2-2.6zM48 320a16 16 0 1 1 0 32 16 16 0 1 1 0-32m496-192v224c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V128zm32 208a16 16 0 1 1 32 0 16 16 0 1 1-32 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/handshake.svg���������������������0000664�0000000�0000000�00000002110�14753064456�0027713�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m323.4 85.2-96.8 78.4c-16.1 13-19.2 36.4-7 53.1 12.9 17.8 38 21.3 55.3 7.8l99.3-77.2c7-5.4 17-4.2 22.5 2.8s4.2 17-2.8 22.5L373 188.8l139 128V128h-.7l-3.9-2.5L434.8 79c-15.3-9.8-33.2-15-51.4-15-21.8 0-43 7.5-60 21.2m22.8 124.4-51.7 40.2c-31.5 24.6-77.2 18.2-100.8-14.2-22.2-30.5-16.6-73.1 12.7-96.8l83.2-67.3c-11.6-4.9-24.1-7.4-36.8-7.4C234 64 215.7 69.6 200 80l-72 48v224h28.2l91.4 83.4c19.6 17.9 49.9 16.5 67.8-3.1 5.5-6.1 9.2-13.2 11.1-20.6l17 15.6c19.5 17.9 49.9 16.6 67.8-2.9 4.5-4.9 7.8-10.6 9.9-16.5 19.4 13 45.8 10.3 62.1-7.5 17.9-19.5 16.6-49.9-2.9-67.8zM16 128c-8.8 0-16 7.2-16 16v208c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V128zm32 192a16 16 0 1 1 0 32 16 16 0 1 1 0-32m496-192v224c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V144c0-8.8-7.2-16-16-16zm32 208a16 16 0 1 1 32 0 16 16 0 1 1-32 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hanukiah.svg����������������������0000664�0000000�0000000�00000004220�14753064456�0027561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M314.2 3.3C309.1 12.1 296 36.6 296 56c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3m-288 48C21.1 60.1 8 84.6 8 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3M88 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3C101.1 60.1 88 84.6 88 104m82.2-52.7C165.1 60.1 152 84.6 152 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3M216 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3C229.1 60.1 216 84.6 216 104m178.2-52.7C389.1 60.1 376 84.6 376 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3M440 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3C453.1 60.1 440 84.6 440 104m82.2-52.7C517.1 60.1 504 84.6 504 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3M584 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3C597.1 60.1 584 84.6 584 104m-472 56c-8.8 0-16 7.2-16 16v112h32V176c0-8.8-7.2-16-16-16m64 0c-8.8 0-16 7.2-16 16v112h32V176c0-8.8-7.2-16-16-16m64 0c-8.8 0-16 7.2-16 16v112h32V176c0-8.8-7.2-16-16-16m160 0c-8.8 0-16 7.2-16 16v112h32V176c0-8.8-7.2-16-16-16m64 0c-8.8 0-16 7.2-16 16v112h32V176c0-8.8-7.2-16-16-16m64 0c-8.8 0-16 7.2-16 16v112h32V176c0-8.8-7.2-16-16-16m-176-16c0-17.7-14.3-32-32-32s-32 14.3-32 32v176H96c-17.7 0-32-14.3-32-32v-96c0-17.7-14.3-32-32-32S0 174.3 0 192v96c0 53 43 96 96 96h192v64H160c-17.7 0-32 14.3-32 32s14.3 32 32 32h320c17.7 0 32-14.3 32-32s-14.3-32-32-32H352v-64h192c53 0 96-43 96-96v-96c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7-14.3 32-32 32H352z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hard-drive.svg��������������������0000664�0000000�0000000�00000001116�14753064456�0030017�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96c0-35.3 28.7-64 64-64h384c35.3 0 64 28.7 64 64v184.4c-17-15.2-39.4-24.4-64-24.4H64c-24.6 0-47 9.2-64 24.4zm64 192h384c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64v-64c0-35.3 28.7-64 64-64m256 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64m128-32a32 32 0 1 0-64 0 32 32 0 1 0 64 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hashtag.svg�����������������������0000664�0000000�0000000�00000001503�14753064456�0027411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M181.3 32.4c17.4 2.9 29.2 19.4 26.3 36.8l-9.8 58.8h95.1l11.5-69.3c2.9-17.4 19.4-29.2 36.8-26.3s29.2 19.4 26.3 36.8l-9.7 58.8H416c17.7 0 32 14.3 32 32s-14.3 32-32 32h-68.9l-21.3 128H384c17.7 0 32 14.3 32 32s-14.3 32-32 32h-68.9l-11.5 69.3c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8l9.8-58.7h-95.1l-11.5 69.3c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8l9.6-58.9H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h68.9l21.3-128H64c-17.7 0-32-14.3-32-32s14.3-32 32-32h68.9l11.5-69.3c2.9-17.4 19.4-29.2 36.8-26.3zm5.8 159.6-21.3 128h95.1l21.3-128z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hat-cowboy-side.svg���������������0000664�0000000�0000000�00000001270�14753064456�0030771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m152.7 135.9-10.4 57.2c6.8-.7 13.6-1.1 20.5-1.1h10.7c39.4 0 77.8 12.1 110.1 34.7l278.8 195.1 35.1 24.6c24.4-6 42.5-28.1 42.5-54.4 0-75.8-94.7-126.6-134.6-144.7L474 83.9C468.2 53.8 441.8 32 411.1 32h-2.7c-5.6 0-11.1.7-16.5 2.2L199.2 85.5c-23.9 6.4-42 26-46.5 50.4M0 384c0 35.3 28.7 64 64 64h480L265.3 252.9c-26.9-18.8-58.9-28.9-91.8-28.9h-10.7c-60.6 0-116 34.2-143.1 88.4L13.5 325C4.6 342.7 0 362.3 0 382.2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hat-cowboy.svg��������������������0000664�0000000�0000000�00000001513�14753064456�0030047�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 64c14.4 0 22.3-7 30.8-14.4C360.4 41.1 370.7 32 392 32c49.3 0 84.4 152.2 97.9 221.9-42.1 18.2-99 34.1-169.9 34.1s-127.8-15.9-169.9-34.1C163.6 184.2 198.7 32 248 32c21.3 0 31.6 9.1 41.2 17.6C297.7 57 305.6 64 320 64M111.1 270.7c47.2 24.5 117.5 49.3 209 49.3s161.8-24.8 208.9-49.3c24.8-12.9 49.8-28.3 70.1-47.7 7.9-7.9 20.2-9.2 29.6-3.3 9.5 5.9 13.5 17.9 9.9 28.5-13.5 37.7-38.4 72.3-66.1 100.6C523.7 398.9 443.6 448 320 448s-203.6-49.1-252.5-99.2c-27.7-28.4-52.6-63-66.1-100.7-3.6-10.6.4-22.6 9.9-28.5s21.7-4.5 29.6 3.3c20.4 19.4 45.3 34.8 70.1 47.7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hat-wizard.svg��������������������0000664�0000000�0000000�00000002015�14753064456�0030043�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m64 416 104.6-235.3c15.3-34.4 40.3-63.5 72-83.7L387.5 3c3-1.9 6.5-2.9 10-2.9C407.7 0 416 8.3 416 18.6v1.6c0 2.6-.5 5.1-1.4 7.5l-59.8 149.2c-1.9 4.7-2.8 9.7-2.8 14.7 0 5.5 1.2 11 3.4 16.1L448 416H240.9l11.8-35.4 40.4-13.5c6.5-2.2 10.9-8.3 10.9-15.2s-4.4-13-10.9-15.2l-40.4-13.5-13.5-40.4c-2.2-6.4-8.3-10.8-15.2-10.8s-13 4.4-15.2 10.9l-13.5 40.4-40.4 13.5c-6.5 2.2-10.9 8.3-10.9 15.2s4.4 13 10.9 15.2l40.4 13.5 11.8 35.3zm215.6-274.5c-1.1-3.3-4.1-5.5-7.6-5.5s-6.5 2.2-7.6 5.5l-6.7 20.2-20.2 6.7c-3.3 1.1-5.5 4.1-5.5 7.6s2.2 6.5 5.5 7.6l20.2 6.7 6.7 20.2c1.1 3.3 4.1 5.5 7.6 5.5s6.5-2.2 7.6-5.5l6.7-20.2 20.2-6.7c3.3-1.1 5.5-4.1 5.5-7.6s-2.2-6.5-5.5-7.6l-20.2-6.7zM32 448h448c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/head-side-cough-slash.svg���������0000664�0000000�0000000�00000002060�14753064456�0032027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m448 325.8 44 34.5c8.1 1.4 14.8 6.8 18 14.1l42.9 33.6c10.6.4 19.5 7.6 22.2 17.4l39.1 30.6c.6 0 1.2-.1 1.8-.1 11.1 0 20.4 7.5 23.2 17.8h-3.9c6.2 8.5 6.4 20.4-.4 29-8.2 10.4-23.3 12.3-33.7 4.1L9.2 42.9C-1.2 34.7-3.1 19.6 5.1 9.2S28.4-3.1 38.8 5.1l50.8 39.8C127 16.7 173.5 0 224 0h24c95.2 0 181.2 69.3 197.3 160.2 2.3 13 6.8 25.7 15.1 36l42 52.6c6.2 7.8 9.6 17.4 9.6 27.4 0 24.2-19.6 43.8-43.8 43.8H448zM0 224.2c0-38.7 9.8-75.1 27.1-106.9l314.7 248-2.5.3c-11 1.4-19.2 10.7-19.2 21.8 0 11.6 9 21.2 20.6 21.9l62 3.9 43 33.9c-6.4 19.1-24.5 32.9-45.7 32.9h-80v8c0 13.3-10.7 24-24 24H96c-17.7 0-32-14.3-32-32v-72.7c0-16.7-6.9-32.5-17.1-45.8C16.6 322.4 0 274.1 0 224.2M616 360a24 24 0 1 1 0 48 24 24 0 1 1 0-48m-64-48a24 24 0 1 1 0 48 24 24 0 1 1 0-48m40-24a24 24 0 1 1 48 0 24 24 0 1 1-48 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/head-side-cough.svg���������������0000664�0000000�0000000�00000001656�14753064456�0030731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 224.2C0 100.6 100.2 0 224 0h24c95.2 0 181.2 69.3 197.3 160.2 2.3 13 6.8 25.7 15.1 36l42 52.6c6.2 7.8 9.6 17.4 9.6 27.4 0 24.2-19.6 43.8-43.8 43.8H448v32l-108.8 13.6c-11 1.4-19.2 10.7-19.2 21.8 0 11.6 9 21.2 20.6 21.9L448 416v16c0 26.5-21.5 48-48 48h-80v8c0 13.3-10.7 24-24 24H96c-17.7 0-32-14.3-32-32v-72.7c0-16.7-6.9-32.5-17.1-45.8C16.6 322.4 0 274.1 0 224.2m352-.2a32 32 0 1 0 0-64 32 32 0 1 0 0 64m112 160a24 24 0 1 1 48 0 24 24 0 1 1-48 0m152-24a24 24 0 1 1 0 48 24 24 0 1 1 0-48m-24 120a24 24 0 1 1 48 0 24 24 0 1 1-48 0m-40-168a24 24 0 1 1 0 48 24 24 0 1 1 0-48m40-24a24 24 0 1 1 48 0 24 24 0 1 1-48 0m-40 120a24 24 0 1 1 0 48 24 24 0 1 1 0-48"/></svg>����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/head-side-mask.svg����������������0000664�0000000�0000000�00000001535�14753064456�0030553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 224.2c0-22.2 3.2-43.6 9.2-63.9l221 160.7c-4 9.5-6.2 20-6.2 31v160H128c-17.7 0-32-14.3-32-32v-72.7c0-16.7-6.9-32.5-17.1-45.8C48.6 322.4 32 274.1 32 224.2m248.3 70.4L53 129.3C88.7 53 166.2 0 256 0h24c95.2 0 181.2 69.3 197.3 160.2 2.3 13 6.8 25.7 15.1 36l42 52.6c5.4 6.7 8.6 14.8 9.4 23.2H336c-21.7 0-41.3 8.6-55.7 22.6M336 304h208l-19.7 64H368c-8.8 0-16 7.2-16 16s7.2 16 16 16h146.5l-9.8 32H368c-8.8 0-16 7.2-16 16s7.2 16 16 16h126.8l-.9 2.8c-8.3 26.9-33.1 45.2-61.2 45.2H288V352c0-14 6-26.7 15.6-35.4 8.5-7.8 19.9-12.6 32.4-12.6m48-80a32 32 0 1 0 0-64 32 32 0 1 0 0 64"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/head-side-virus.svg���������������0000664�0000000�0000000�00000002230�14753064456�0030761�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 224.2C0 100.6 100.2 0 224 0h24c95.2 0 181.2 69.3 197.3 160.2 2.3 13 6.8 25.7 15.1 36l42 52.6c6.2 7.8 9.6 17.4 9.6 27.4 0 24.2-19.6 43.8-43.8 43.8H448v64c0 35.3-28.7 64-64 64h-64v32c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32v-72.7c0-16.7-6.9-32.5-17.1-45.8C16.6 322.4 0 274.1 0 224.2M224 64c-8.8 0-16 7.2-16 16 0 33-39.9 49.5-63.2 26.2-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6C145.5 152.1 129 192 96 192c-8.8 0-16 7.2-16 16s7.2 16 16 16c33 0 49.5 39.9 26.2 63.2-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0C168.1 286.5 208 303 208 336c0 8.8 7.2 16 16 16s16-7.2 16-16c0-33 39.9-49.5 63.2-26.2 6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6C302.5 263.9 319 224 352 224c8.8 0 16-7.2 16-16s-7.2-16-16-16c-33 0-49.5-39.9-26.2-63.2 6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0C279.9 129.5 240 113 240 80c0-8.8-7.2-16-16-16m-24 96a24 24 0 1 1 0 48 24 24 0 1 1 0-48m40 80a16 16 0 1 1 32 0 16 16 0 1 1-32 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/heading.svg�����������������������0000664�0000000�0000000�00000001222�14753064456�0027367�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32h-16v112h224V96h-16c-17.7 0-32-14.3-32-32s14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32h-16v320h16c17.7 0 32 14.3 32 32s-14.3 32-32 32h-96c-17.7 0-32-14.3-32-32s14.3-32 32-32h16V272H112v144h16c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h16V96H32C14.3 96 0 81.7 0 64"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/headphones-simple.svg�������������0000664�0000000�0000000�00000001254�14753064456�0031402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 80C141.1 80 48 173.1 48 288v104c0 13.3-10.7 24-24 24S0 405.3 0 392V288C0 146.6 114.6 32 256 32s256 114.6 256 256v104c0 13.3-10.7 24-24 24s-24-10.7-24-24V288c0-114.9-93.1-208-208-208M80 352c0-35.3 28.7-64 64-64h16c17.7 0 32 14.3 32 32v128c0 17.7-14.3 32-32 32h-16c-35.3 0-64-28.7-64-64zm288-64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64h-16c-17.7 0-32-14.3-32-32V320c0-17.7 14.3-32 32-32z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/headphones.svg��������������������0000664�0000000�0000000�00000001105�14753064456�0030106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 80C149.9 80 62.4 159.4 49.6 262c9.4-3.8 19.6-6 30.4-6 26.5 0 48 21.5 48 48v128c0 26.5-21.5 48-48 48-44.2 0-80-35.8-80-80V288C0 146.6 114.6 32 256 32s256 114.6 256 256v112c0 44.2-35.8 80-80 80-26.5 0-48-21.5-48-48V304c0-26.5 21.5-48 48-48 10.8 0 21 2.1 30.4 6C449.6 159.4 362.1 80 256 80"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/headset.svg�����������������������0000664�0000000�0000000�00000001445�14753064456�0027414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 48C141.1 48 48 141.1 48 256v40c0 13.3-10.7 24-24 24S0 309.3 0 296v-40C0 114.6 114.6 0 256 0s256 114.6 256 256v144.1c0 48.6-39.4 88-88.1 88l-110.3-.1c-8.3 14.3-23.8 24-41.6 24h-32c-26.5 0-48-21.5-48-48s21.5-48 48-48h32c17.8 0 33.3 9.7 41.6 24l110.4.1c22.1 0 40-17.9 40-40V256c0-114.9-93.1-208-208-208M144 208h16c17.7 0 32 14.3 32 32v112c0 17.7-14.3 32-32 32h-16c-35.3 0-64-28.7-64-64v-48c0-35.3 28.7-64 64-64m224 0c35.3 0 64 28.7 64 64v48c0 35.3-28.7 64-64 64h-16c-17.7 0-32-14.3-32-32V240c0-17.7 14.3-32 32-32z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/heart-circle-bolt.svg�������������0000664�0000000�0000000�00000001604�14753064456�0031274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m47.6 300.4 180.7 168.7c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176 28.3 0 55 6.7 78.7 18.5.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141-45.6-7.6-92 7.3-124.6 39.9l-12 12-12-12c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5M432 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288m47.9-225c4.3 3.7 5.4 9.9 2.6 14.9L452.4 356H488c5.2 0 9.8 3.3 11.4 8.2s-.1 10.3-4.2 13.4l-96 72c-4.5 3.4-10.8 3.2-15.1-.6s-5.4-9.9-2.6-14.9l30.1-54.1H376c-5.2 0-9.8-3.3-11.4-8.2s.1-10.3 4.2-13.4l96-72c4.5-3.4 10.8-3.2 15.1.6"/></svg>����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/heart-circle-check.svg������������0000664�0000000�0000000�00000001502�14753064456�0031406�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m47.6 300.4 180.7 168.7c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176 28.3 0 55 6.7 78.7 18.5.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141-45.6-7.6-92 7.3-124.6 39.9l-12 12-12-12c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5M576 368a144 144 0 1 0-288 0 144 144 0 1 0 288 0m-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l28.7 28.7 60.7-60.7c6.2-6.2 16.4-6.2 22.6 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/heart-circle-exclamation.svg������0000664�0000000�0000000�00000001436�14753064456�0032643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m47.6 300.4 180.7 168.7c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176 28.3 0 55 6.7 78.7 18.5.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141-45.6-7.6-92 7.3-124.6 39.9l-12 12-12-12c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5M432 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288m0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48m0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16v-80c0-8.8 7.2-16 16-16"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/heart-circle-minus.svg������������0000664�0000000�0000000�00000001370�14753064456�0031467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m47.6 300.4 180.7 168.7c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176 28.3 0 55 6.7 78.7 18.5.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141-45.6-7.6-92 7.3-124.6 39.9l-12 12-12-12c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5M576 368a144 144 0 1 0-288 0 144 144 0 1 0 288 0m-64 0c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16h128c8.8 0 16 7.2 16 16"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/heart-circle-plus.svg�������������0000664�0000000�0000000�00000001511�14753064456�0031314�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m47.6 300.4 180.7 168.7c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176 28.3 0 55 6.7 78.7 18.5.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141-45.6-7.6-92 7.3-124.6 39.9l-12 12-12-12c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5M432 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288m16-208v48h48c8.8 0 16 7.2 16 16s-7.2 16-16 16h-48v48c0 8.8-7.2 16-16 16s-16-7.2-16-16v-48h-48c-8.8 0-16-7.2-16-16s7.2-16 16-16h48v-48c0-8.8 7.2-16 16-16s16 7.2 16 16"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/heart-circle-xmark.svg������������0000664�0000000�0000000�00000001643�14753064456�0031461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m47.6 300.4 180.7 168.7c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176 28.3 0 55 6.7 78.7 18.5.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141-45.6-7.6-92 7.3-124.6 39.9l-12 12-12-12c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5M432 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288m59.3-180.7L454.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L432 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l36.7-36.7-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l36.7 36.7 36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/heart-crack.svg�������������������0000664�0000000�0000000�00000001306�14753064456�0030157�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M119.4 44.1c23.3-3.9 46.8-1.9 68.6 5.3l49.8 77.5-75.4 75.4c-1.5 1.5-2.4 3.6-2.3 5.8s1 4.2 2.6 5.7l112 104c2.9 2.7 7.4 2.9 10.5.3s3.8-7 1.7-10.4l-60.4-98.1 90.7-75.6c2.6-2.1 3.5-5.7 2.4-8.8l-22.8-63.4c28.5-16.7 62.4-23.2 95.7-17.6 69 11.4 119.5 71 119.5 140.9v5.8c0 41.5-17.2 81.2-47.6 109.5L283.7 469.1c-7.5 7-17.4 10.9-27.7 10.9s-20.2-3.9-27.7-10.9L47.6 300.4C17.2 272.1 0 232.4 0 190.9v-5.8c0-69.9 50.5-129.5 119.4-141"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/heart-pulse.svg�������������������0000664�0000000�0000000�00000001716�14753064456�0030231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M228.3 469.1 47.6 300.4c-4.2-3.9-8.2-8.1-11.9-12.4h87c22.6 0 43-13.6 51.7-34.5l10.5-25.2 49.3 109.5c3.8 8.5 12.1 14 21.4 14.1s17.8-5 22-13.3l42.4-84.9 1.7 3.4c9.5 19 28.9 31 50.1 31h104.5c-3.7 4.3-7.7 8.5-11.9 12.4L283.7 469.1c-7.5 7-17.4 10.9-27.7 10.9s-20.2-3.9-27.7-10.9M503.7 240h-132c-3 0-5.8-1.7-7.2-4.4l-23.2-46.3c-4.1-8.1-12.4-13.3-21.5-13.3s-17.4 5.1-21.5 13.3l-41.4 82.8-51-113.9c-3.9-8.7-12.7-14.3-22.2-14.1s-18.1 5.9-21.8 14.8l-31.8 76.3c-1.2 3-4.2 4.9-7.4 4.9L16 240c-2.6 0-5 .4-7.3 1.1C3 225.2 0 208.2 0 190.9v-5.8c0-69.9 50.5-129.5 119.4-141 45.6-7.6 92 7.3 124.6 39.9l12 12 12-12c32.6-32.6 79-47.5 124.6-39.9 68.9 11.5 119.4 71.1 119.4 141v5.8c0 16.9-2.8 33.5-8.3 49.1"/></svg>��������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/heart.svg�������������������������0000664�0000000�0000000�00000001060�14753064456�0027073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m47.6 300.4 180.7 168.7c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l180.7-168.7c30.4-28.3 47.6-68 47.6-109.5v-5.8c0-69.9-50.5-129.5-119.4-141-45.6-7.6-92 7.3-124.6 39.9l-12 12-12-12c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/helicopter-symbol.svg�������������0000664�0000000�0000000�00000001410�14753064456�0031430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M445.3 224H510C495.6 108.2 403.8 16.4 288 2v64.7c80.4 13.4 143.9 76.9 157.3 157.3m64.7 64h-64.7c-13.4 80.4-76.9 143.9-157.3 157.3V510c115.8-14.4 207.6-106.2 222-222M2 288c14.4 115.8 106.2 207.6 222 222v-64.7C143.6 431.9 80.1 368.4 66.7 288zm0-64h64.7C80.1 143.6 143.6 80.1 224 66.7V2C108.2 16.4 16.4 108.2 2 224m206-64c0-17.7-14.3-32-32-32s-32 14.3-32 32v192c0 17.7 14.3 32 32 32s32-14.3 32-32v-64h96v64c0 17.7 14.3 32 32 32s32-14.3 32-32V160c0-17.7-14.3-32-32-32s-32 14.3-32 32v64h-96z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/helicopter.svg��������������������0000664�0000000�0000000�00000001516�14753064456�0030134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 32c0-17.7 14.3-32 32-32h384c17.7 0 32 14.3 32 32s-14.3 32-32 32H384v64h32c88.4 0 160 71.6 160 160v64c0 17.7-14.3 32-32 32H320c-20.1 0-39.1-9.5-51.2-25.6l-71.4-95.2c-3.5-4.7-8.3-8.3-13.7-10.5L47.2 198.1c-9.5-3.8-16.7-12-19.2-22L5 83.9C2.4 73.8 10.1 64 20.5 64H48c10.1 0 19.6 4.7 25.6 12.8L112 128h208V64H160c-17.7 0-32-14.3-32-32m256 288h128v-32c0-53-43-96-96-96h-32zm246.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-3.9 3.9c-24 24-56.6 37.5-90.5 37.5L256 512c-17.7 0-32-14.3-32-32s14.3-32 32-32h280.2c17 0 33.3-6.7 45.3-18.7l3.9-3.9c12.5-12.5 32.8-12.5 45.3 0z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/helmet-safety.svg�����������������0000664�0000000�0000000�00000001261�14753064456�0030542�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 32c-17.7 0-32 14.3-32 32v101.9c0 5.6-4.5 10.1-10.1 10.1-3.6 0-7-1.9-8.8-5.1l-48-83.9C83 123.5 32 199.8 32 288v64h512v-66.4c-.9-87.2-51.7-162.4-125.1-198.6l-48 83.9c-1.8 3.2-5.2 5.1-8.8 5.1-5.6 0-10.1-4.5-10.1-10.1V64c0-17.7-14.3-32-32-32zM16.6 384C7.4 384 0 391.4 0 400.6c0 4.7 2 9.2 5.8 11.9C27.5 428.4 111.8 480 288 480s260.5-51.6 282.2-67.5c3.8-2.8 5.8-7.2 5.8-11.9 0-9.2-7.4-16.6-16.6-16.6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/helmet-un.svg���������������������0000664�0000000�0000000�00000001605�14753064456�0027673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M479.5 224C471.2 98.9 367.2 0 240 0 107.5 0 0 107.5 0 240v56.3C0 344.8 39.2 384 87.7 384h127.2l128.6 121.4c4.5 4.2 10.4 6.6 16.5 6.6h96c13.3 0 24-10.7 24-24s-10.7-24-24-24h-86.5l-1.5-1.5V288h112c17.7 0 32-14.3 32-32s-14.3-32-32-32zM320 417.2l-78-73.7 32.4-55.5H320zm-34.7-314.1 34.7 52v-43.2c0-8.8 7.2-16 16-16s16 7.2 16 16v96c0 7.1-4.6 13.3-11.4 15.3s-14-.6-17.9-6.4l-34.7-52V208c0 8.8-7.2 16-16 16s-16-7.2-16-16v-96c0-7.1 4.6-13.3 11.4-15.3s14 .6 17.9 6.4M160 112v64c0 8.8 7.2 16 16 16s16-7.2 16-16v-64c0-8.8 7.2-16 16-16s16 7.2 16 16v64c0 26.5-21.5 48-48 48s-48-21.5-48-48v-64c0-8.8 7.2-16 16-16s16 7.2 16 16"/></svg>���������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hexagon-nodes-bolt.svg������������0000664�0000000�0000000�00000002727�14753064456�0031500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M248 106.6c18.9-9 32-28.3 32-50.6 0-30.9-25.1-56-56-56s-56 25.1-56 56c0 22.3 13.1 41.6 32 50.6v98.8c-2.8 1.3-5.5 2.9-8 4.7l-80.1-45.8c1.6-20.8-8.6-41.6-27.9-52.8C57.2 96 23 105.2 7.5 132S1.2 193 28 208.5c1.3.8 2.6 1.5 4 2.1v90.8c-1.3.6-2.7 1.3-4 2.1C1.2 319-8 353.2 7.5 380s49.7 36 76.5 20.5c19.3-11.1 29.4-32 27.8-52.8l50.5-28.9c-11.5-11.2-19.9-25.6-23.8-41.7l-50.5 29c-2.6-1.8-5.2-3.3-8-4.7v-90.8c2.8-1.3 5.5-2.9 8-4.7l80.1 45.8c-.1 1.4-.2 2.8-.2 4.3 0 22.3 13.1 41.6 32 50.6v98.8c-18.9 9-32 28.3-32 50.6 0 30.9 25.1 56 56 56 30.7 0 55.6-24.7 56-55.2-7.5-12.9-13.5-26.8-17.6-41.5-4.2-4-9.1-7.3-14.4-9.9v-98.8c2.8-1.3 5.5-2.9 8-4.7l10.5 6c5.5-15.3 13.1-29.5 22.4-42.5l-9.1-5.2c.1-1.4.2-2.8.2-4.3 0-22.3-13.1-41.6-32-50.6v-98.8zM440.5 132c-15.5-26.8-49.7-36-76.5-20.5-19.3 11.1-29.4 32-27.8 52.8l-50.6 28.9c11.5 11.2 19.9 25.6 23.8 41.7l50.6-29c.4.3.8.6 1.3.9 21.7-9.5 45.6-14.8 70.8-14.8 2 0 4 0 5.9.1 12.1-17.3 13.8-40.6 2.6-60.1zM432 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288m47.9-225c4.3 3.7 5.4 9.9 2.6 14.9L452.4 356H488c5.2 0 9.8 3.3 11.4 8.2s-.1 10.3-4.2 13.4l-96 72c-4.5 3.4-10.8 3.2-15.1-.6s-5.4-9.9-2.6-14.9l30.1-54.1H376c-5.2 0-9.8-3.3-11.4-8.2s.1-10.3 4.2-13.4l96-72c4.5-3.4 10.8-3.2 15.1.6"/></svg>�����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hexagon-nodes.svg�����������������0000664�0000000�0000000�00000002345�14753064456�0030536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M248 106.6c18.9-9 32-28.3 32-50.6 0-30.9-25.1-56-56-56s-56 25.1-56 56c0 22.3 13.1 41.6 32 50.6v98.8c-2.8 1.3-5.5 2.9-8 4.7l-80.1-45.8c1.6-20.8-8.6-41.6-27.9-52.8C57.2 96 23 105.2 7.5 132S1.2 193 28 208.5c1.3.8 2.6 1.5 4 2.1v90.8c-1.3.6-2.7 1.3-4 2.1C1.2 319-8 353.2 7.5 380s49.7 36 76.5 20.5c19.3-11.1 29.4-32 27.8-52.8l50.5-28.9c-11.5-11.2-19.9-25.6-23.8-41.7l-50.5 29c-2.6-1.8-5.2-3.3-8-4.7v-90.8c2.8-1.3 5.5-2.9 8-4.7l80.1 45.8c-.1 1.4-.2 2.8-.2 4.3 0 22.3 13.1 41.6 32 50.6v98.8c-18.9 9-32 28.3-32 50.6 0 30.9 25.1 56 56 56s56-25.1 56-56c0-22.3-13.1-41.6-32-50.6v-98.8c2.8-1.3 5.5-2.9 8-4.7l80.1 45.8c-1.6 20.8 8.6 41.6 27.8 52.8 26.8 15.5 61 6.3 76.5-20.5s6.3-61-20.5-76.5c-1.3-.8-2.7-1.5-4-2.1v-90.8c1.4-.6 2.7-1.3 4-2.1 26.8-15.5 36-49.7 20.5-76.5s-49.5-36-76.3-20.5c-19.3 11.1-29.4 32-27.8 52.8l-50.6 28.9c11.5 11.2 19.9 25.6 23.8 41.7l50.6-29c2.6 1.8 5.2 3.3 8 4.7v90.8c-2.8 1.3-5.5 2.9-8 4.6l-80.1-45.8c.1-1.4.2-2.8.2-4.3 0-22.3-13.1-41.6-32-50.6v-98.8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/highlighter.svg�������������������0000664�0000000�0000000�00000001307�14753064456�0030272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m315 315 158.4-215-29.3-29.4L229 229zm-187 5v-71.7c0-15.3 7.2-29.6 19.5-38.6L420.6 8.4C428 2.9 437 0 446.2 0c11.4 0 22.4 4.5 30.5 12.6l54.8 54.8c8.1 8.1 12.6 19 12.6 30.5 0 9.2-2.9 18.2-8.4 25.6l-201.3 273c-9 12.3-23.4 19.5-38.6 19.5H224l-25.4 25.4c-12.5 12.5-32.8 12.5-45.3 0l-50.7-50.7c-12.5-12.5-12.5-32.8 0-45.3zM7 466.3l63-63 70.6 70.6-31 31c-4.5 4.5-10.6 7-17 7L24 512c-13.3 0-24-10.7-24-24v-4.7c0-6.4 2.5-12.5 7-17"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hill-avalanche.svg����������������0000664�0000000�0000000�00000001573�14753064456�0030651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.7 401.9c34.2 23.1 81.1 19.5 111.4-10.8 34.4-34.4 34.4-90.1 0-124.4-27.8-27.8-69.5-33.1-102.6-16-11.8 6.1-16.4 20.6-10.3 32.3s20.6 16.4 32.3 10.3c15.1-7.8 34-5.3 46.6 7.3 15.6 15.6 15.6 40.9 0 56.6s-40.9 15.6-56.6 0l-81.7-81.7c22.4-14.2 37.2-39.1 37.2-67.5 0-33.9-21.1-62.9-50.9-74.5 1.9-6.8 2.9-14 2.9-21.5 0-44.2-35.8-80-80-80-27.3 0-51.5 13.7-65.9 34.6-5.8-20-24.2-34.6-46.1-34.6-26.5 0-48 21.5-48 48 0 4 .5 7.9 1.4 11.6zM480 64a32 32 0 1 0-64 0 32 32 0 1 0 64 0m0 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64M68.3 87C43.1 61.8 0 79.7 0 115.3V432c0 44.2 35.8 80 80 80h316.7c35.6 0 53.5-43.1 28.3-68.3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hill-rockslide.svg����������������0000664�0000000�0000000�00000001517�14753064456�0030704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m252.4 103.8 27 48c2.8 5 8.2 8.2 13.9 8.2h53.3c5.8 0 11.1-3.1 13.9-8.2l27-48c2.7-4.9 2.7-10.8 0-15.7l-27-48c-2.8-5-8.2-8.2-13.9-8.2h-53.3c-5.8 0-11.1 3.1-13.9 8.2l-27 48c-2.7 4.9-2.7 10.8 0 15.7M68.3 87C43.1 61.8 0 79.7 0 115.3V432c0 44.2 35.8 80 80 80h316.7c35.6 0 53.5-43.1 28.3-68.3zm435.9 316.6c4.9 2.7 10.8 2.7 15.7 0l48-27c5-2.8 8.2-8.2 8.2-13.9v-53.3c0-5.8-3.1-11.1-8.2-13.9l-48-27c-4.9-2.7-10.8-2.7-15.7 0l-48 27c-5 2.8-8.2 8.2-8.2 13.9v53.3c0 5.8 3.1 11.1 8.2 13.9zM192 64a32 32 0 1 0-64 0 32 32 0 1 0 64 0m192 224a32 32 0 1 0 0-64 32 32 0 1 0 0 64"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hippo.svg�������������������������0000664�0000000�0000000�00000002471�14753064456�0027116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M407 47c9.4-9.4 24.6-9.4 33.9 0l17.2 17.2c1.9-.1 3.9-.2 5.8-.2h32c11.2 0 21.9 2.3 31.6 6.5L543 55c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-12.9 13c7.6 12.2 12 26.7 12 42.1 0 10.2 7.4 18.8 16.7 23 27.9 12.5 47.3 40.5 47.3 73 0 26.2-12.6 49.4-32 64v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-16h-64v16c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-17.6c-11.8-2.4-22.7-7.4-32-14.4-1.5-1.1-2.9-2.3-4.3-3.5-17-14.7-27.7-36.4-27.7-60.5 0-8.8-7.2-16-16-16s-16 7.2-16 16c0 44.7 26.2 83.2 64 101.2V352c0 17.7 14.3 32 32 32h32v64c0 17.7-14.3 32-32 32h-64c-17.7 0-32-14.3-32-32v-76c-19.8 7.7-41.4 12-64 12s-44.2-4.3-64-12v76c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V329.1l-18.1 40.6c-5.4 12.1-19.6 17.6-31.7 12.2s-17.5-19.5-12.1-31.6L24 300.9c5.3-11.9 8-24.7 8-37.7C32 155.7 117.2 68 223.8 64.1l.2-.1h64c41.7 0 83.4 12.1 117.2 25.7 1.7-1.8 3.5-3.6 5.3-5.2L407 81c-9.4-9.4-9.4-24.6 0-33.9zm73 185a24 24 0 1 0-48 0 24 24 0 1 0 48 0m88 24a24 24 0 1 0 0-48 24 24 0 1 0 0 48m-88-112a16 16 0 1 0-32 0 16 16 0 1 0 32 0m48 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hockey-puck.svg�������������������0000664�0000000�0000000�00000001016�14753064456�0030213�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 256C114.6 256 0 213 0 160s114.6-96 256-96 256 43 256 96-114.6 96-256 96m192.3 1.8c24.7-9.3 46.9-21 63.7-35.6V352c0 53-114.6 96-256 96S0 405 0 352V222.3c16.8 14.6 39 26.3 63.7 35.6 50.8 19 118.8 30.1 192.3 30.1s141.5-11.1 192.3-30.2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/holly-berry.svg�������������������0000664�0000000�0000000�00000002357�14753064456�0030252�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96m-80 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96m100.8 191.8c1 .1 2.1.2 3.2.2 39.8 0 72 32.2 72 72v22.7c0 16.4 16 27.9 31.6 22.8l12.8-4.3c18-6 37.3-6.5 55.6-1.5l19.4 5.3c17.9 4.9 34.4-11.6 29.5-29.5l-5.3-19.5c-5-18.3-4.4-37.6 1.5-55.6l4.3-12.8c5.2-15.5-6.4-31.6-22.8-31.6-34.6 0-62.7-28.1-62.7-62.7v-32c0-16.4-16-27.9-31.6-22.8l-12.8 4.3c-18 6-37.3 6.5-55.6 1.5l-29.6-8.1c-2.9-.8-5.9-1-8.7-.7 4.2 9.7 5.8 20.8 3.7 32.3l-6.3 34.9c-1.5 8.4-1.4 17 .5 25.3l5.3 23.9c2.8 12.7 1.1 25.2-4 35.9M127.6 234.5c-15.5-5.2-31.6 6.4-31.6 22.8v32c0 34.6-28.1 62.7-62.7 62.7-16.4 0-27.9 16-22.8 31.6l4.3 12.8c6 18 6.5 37.3 1.5 55.6L11 471.4c-4.8 18 11.6 34.4 29.5 29.6l19.5-5.4c18.3-5 37.6-4.5 55.6 1.5l12.8 4.3c15.5 5.2 31.6-6.4 31.6-22.8v-32c0-34.6 28.1-62.7 62.7-62.7 16.4 0 27.9-16 22.8-31.6l-4.3-12.8c-6-18-6.5-37.3-1.5-55.6l5.3-19.4c4.9-17.9-11.6-34.4-29.5-29.5l-19.5 5.4c-18.3 5-37.6 4.4-55.6-1.5l-12.8-4.3zM384 144a48 48 0 1 0-96 0 48 48 0 1 0 96 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/horse-head.svg��������������������0000664�0000000�0000000�00000001520�14753064456�0030010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 464V316.9c0-108.4 68.3-205.1 170.5-241.3l169.7-60.1c21.4-7.6 43.8 8.3 43.8 30.9 0 11-5.5 21.2-14.6 27.3L400 96c48.1 0 91.2 29.8 108.1 74.9l48.6 129.5c11.8 31.4 4.1 66.8-19.6 90.5-16 16-37.8 25.1-60.5 25.1h-3.4c-26.1 0-50.9-11.6-67.6-31.7l-32.3-38.7c-11.7 4.1-24.2 6.4-37.3 6.4h-.1q-9.45 0-18.6-1.5c-3.6-.6-7.2-1.4-10.7-2.3-28.9-7.8-53.1-26.8-67.8-52.2-4.4-7.6-14.2-10.3-21.9-5.8s-10.3 14.2-5.8 21.9c24 41.5 68.3 70 119.3 71.9l47.2 70.8c4 6.1 6.2 13.2 6.2 20.4 0 20.3-16.5 36.8-36.8 36.8H112c-26.5 0-48-21.5-48-48m328-240a24 24 0 1 0 0-48 24 24 0 1 0 0 48"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/horse.svg�������������������������0000664�0000000�0000000�00000001752�14753064456�0027120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 238.1V160h16l9.8 19.6c12.5 25.1 42.2 36.4 68.3 26 20.5-8.2 33.9-28 33.9-50.1V80c0-19.1-8.4-36.3-21.7-48h5.7c8.8 0 16-7.2 16-16s-7.2-16-16-16H448c-70.7 0-128 57.3-128 128H148.8c-30.7 0-57.6 16.3-72.5 40.8C33.2 174.5 0 211.4 0 256v56c0 13.3 10.7 24 24 24s24-10.7 24-24v-56c0-13.4 6.6-25.2 16.7-32.5 1.6 13 6.3 25.4 13.6 36.4l28.2 42.4c8.3 12.4 6.4 28.7-1.2 41.6-16.5 28-20.6 62.2-10 93.9l17.5 52.4c4.4 13.1 16.6 21.9 30.4 21.9h33.7c21.8 0 37.3-21.4 30.4-42.1l-20.8-62.5c-2.1-6.4-.5-13.4 4.3-18.2l12.7-12.7c13.2-13.2 20.6-31.1 20.6-49.7q0-3.45-.3-6.9l84 24c4.1 1.2 8.2 2.1 12.3 2.8L320 480c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V315.7c19.2-19.2 31.5-45.7 32-75.7zM496 64a16 16 0 1 1 0 32 16 16 0 1 1 0-32"/></svg>����������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hospital-user.svg�����������������0000664�0000000�0000000�00000001565�14753064456�0030601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48 0C21.5 0 0 21.5 0 48v208h144c8.8 0 16 7.2 16 16s-7.2 16-16 16H0v64h144c8.8 0 16 7.2 16 16s-7.2 16-16 16H0v80c0 26.5 21.5 48 48 48h217.9c-6.3-10.2-9.9-22.2-9.9-35.1 0-46.9 25.8-87.8 64-109.2V48c0-26.5-21.5-48-48-48zm104 64h16c8.8 0 16 7.2 16 16v24h24c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-24v24c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-24h-24c-8.8 0-16-7.2-16-16v-16c0-8.8 7.2-16 16-16h24V80c0-8.8 7.2-16 16-16m360 208a80 80 0 1 0-160 0 80 80 0 1 0 160 0M288 477.1c0 19.3 15.6 34.9 34.9 34.9h218.2c19.3 0 34.9-15.6 34.9-34.9 0-51.4-41.7-93.1-93.1-93.1H381.1c-51.4 0-93.1 41.7-93.1 93.1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hospital.svg����������������������0000664�0000000�0000000�00000001574�14753064456�0027625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 48c0-26.5 21.5-48 48-48h160c26.5 0 48 21.5 48 48v464h-80v-80c0-26.5-21.5-48-48-48s-48 21.5-48 48v80h-80zM48 96h112v416H48c-26.5 0-48-21.5-48-48V320h80c8.8 0 16-7.2 16-16s-7.2-16-16-16H0v-64h80c8.8 0 16-7.2 16-16s-7.2-16-16-16H0v-48c0-26.5 21.5-48 48-48m544 0c26.5 0 48 21.5 48 48v48h-80c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v64h-80c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v144c0 26.5-21.5 48-48 48H480V96zM312 64c-8.8 0-16 7.2-16 16v24h-24c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h24v24c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16v-24h24c8.8 0 16-7.2 16-16v-16c0-8.8-7.2-16-16-16h-24V80c0-8.8-7.2-16-16-16z"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hot-tub-person.svg����������������0000664�0000000�0000000�00000002403�14753064456�0030660�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M272 24c0-13.3-10.7-24-24-24s-24 10.7-24 24v5.2c0 34 14.4 66.4 39.7 89.2l16.4 14.8c15.2 13.7 23.8 33.1 23.8 53.5v13.2c0 13.3 10.7 24 24 24s24-10.7 24-24v-13.2c0-34-14.4-66.4-39.7-89.2l-16.4-14.7C280.7 69.1 272 49.7 272 29.2zM0 320v128c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V320c0-35.3-28.7-64-64-64H277.3c-13.8 0-27.3-4.5-38.4-12.8l-85.3-64C137 166.7 116.8 160 96 160c-53 0-96 43-96 96zm128 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16v-96c0-8.8 7.2-16 16-16s16 7.2 16 16m80-16c8.8 0 16 7.2 16 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16v-96c0-8.8 7.2-16 16-16m112 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16v-96c0-8.8 7.2-16 16-16s16 7.2 16 16m80-16c8.8 0 16 7.2 16 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16v-96c0-8.8 7.2-16 16-16M360 0c-13.3 0-24 10.7-24 24v5.2c0 34 14.4 66.4 39.7 89.2l16.4 14.8c15.2 13.7 23.8 33.1 23.8 53.5v13.2c0 13.3 10.7 24 24 24s24-10.7 24-24v-13.2c0-34-14.4-66.4-39.7-89.2l-16.4-14.7C392.7 69.1 384 49.7 384 29.2V24c0-13.3-10.7-24-24-24M64 128A64 64 0 1 0 64 0a64 64 0 1 0 0 128"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hotdog.svg������������������������0000664�0000000�0000000�00000002455�14753064456�0027265�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M488.6 23.4c31.2 31.2 31.2 81.9 0 113.1l-352 352c-31.2 31.2-81.9 31.2-113.1 0s-31.2-81.9 0-113.1l352-352c31.2-31.2 81.9-31.2 113.1 0m-45.3 69.3c-6.2-6.2-16.4-6.2-22.6 0-12.5 12.5-23.8 15.1-37.5 17.6l-2.5.4c-13.8 2.5-31.6 5.6-48 22-16.7 16.7-20.9 36-24.1 50.9l-.2 1c-3.4 15.6-6 26.4-15.7 36.1s-20.5 12.3-36.1 15.7l-1 .2c-14.9 3.2-34.2 7.4-50.9 24.1s-20.9 36-24.1 50.9l-.2 1c-3.4 15.6-6 26.4-15.7 36.1-9.2 9.2-18 10.8-32.7 13.4l-.9.2c-15.6 2.8-34.9 6.9-54.4 26.4-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0c12.5-12.5 23.8-15.1 37.5-17.6l2.5-.4c13.8-2.5 31.6-5.6 48-22 16.7-16.7 20.9-36 24.1-50.9l.2-1c3.4-15.6 6-26.4 15.7-36.1s20.5-12.3 36.1-15.7l1-.2c14.9-3.2 34.2-7.4 50.9-24.1s20.9-36 24.1-50.9l.2-1c3.4-15.6 6-26.4 15.7-36.1 9.2-9.2 18-10.8 32.7-13.4l.9-.2c15.6-2.8 34.9-6.9 54.4-26.4 6.2-6.2 6.2-16.4 0-22.6M191.2 479.2l288-288L495 207c10.9 10.9 17 25.6 17 41s-6.1 30.1-17 41L289 495c-10.9 10.9-25.6 17-41 17s-30.1-6.1-41-17zM17 305C6.1 294.1 0 279.4 0 264s6.1-30.1 17-41L223 17c10.9-10.9 25.6-17 41-17s30.1 6.1 41 17l15.8 15.8-288 288z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hotel.svg�������������������������0000664�0000000�0000000�00000002246�14753064456�0027112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 32C0 14.3 14.3 0 32 0h448c17.7 0 32 14.3 32 32s-14.3 32-32 32v384c17.7 0 32 14.3 32 32s-14.3 32-32 32H304v-48c0-26.5-21.5-48-48-48s-48 21.5-48 48v48H32c-17.7 0-32-14.3-32-32s14.3-32 32-32V64C14.3 64 0 49.7 0 32m96 80v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16m144-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm112 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16m-240 80c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm112 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16m144-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-40 192c13.3 0 24.3-10.9 21-23.8-10.6-41.5-48.2-72.2-93-72.2s-82.5 30.7-93 72.2c-3.3 12.8 7.8 23.8 21 23.8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hourglass-end.svg�����������������0000664�0000000�0000000�00000001271�14753064456�0030547�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 0C14.3 0 0 14.3 0 32s14.3 32 32 32v11c0 42.4 16.9 83.1 46.9 113.1l67.8 67.9-67.8 67.9C48.9 353.9 32 394.6 32 437v11c-17.7 0-32 14.3-32 32s14.3 32 32 32h320c17.7 0 32-14.3 32-32s-14.3-32-32-32v-11c0-42.4-16.9-83.1-46.9-113.1L237.3 256l67.9-67.9c30-30 46.9-70.7 46.9-113.1V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H32m64 75V64h192v11c0 25.5-10.1 49.9-28.1 67.9L192 210.7l-67.9-67.9C106.1 124.9 96 100.4 96 75"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hourglass-half.svg����������������0000664�0000000�0000000�00000001356�14753064456�0030717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 0C14.3 0 0 14.3 0 32s14.3 32 32 32v11c0 42.4 16.9 83.1 46.9 113.1l67.8 67.9-67.8 67.9C48.9 353.9 32 394.6 32 437v11c-17.7 0-32 14.3-32 32s14.3 32 32 32h320c17.7 0 32-14.3 32-32s-14.3-32-32-32v-11c0-42.4-16.9-83.1-46.9-113.1L237.3 256l67.9-67.9c30-30 46.9-70.7 46.9-113.1V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H32m64 75V64h192v11c0 19-5.6 37.4-16 53H112c-10.3-15.6-16-34-16-53m16 309c3.5-5.3 7.6-10.3 12.1-14.9l67.9-67.8 67.9 67.9c4.6 4.6 8.6 9.6 12.1 14.9z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hourglass-start.svg���������������0000664�0000000�0000000�00000001272�14753064456�0031137�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 0C14.3 0 0 14.3 0 32s14.3 32 32 32v11c0 42.4 16.9 83.1 46.9 113.1l67.8 67.9-67.8 67.9C48.9 353.9 32 394.6 32 437v11c-17.7 0-32 14.3-32 32s14.3 32 32 32h320c17.7 0 32-14.3 32-32s-14.3-32-32-32v-11c0-42.4-16.9-83.1-46.9-113.1L237.3 256l67.9-67.9c30-30 46.9-70.7 46.9-113.1V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H32m256 437v11H96v-11c0-25.5 10.1-49.9 28.1-67.9l67.9-67.8 67.9 67.9c18 18 28.1 42.4 28.1 67.9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hourglass.svg���������������������0000664�0000000�0000000�00000001427�14753064456�0030006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 32C0 14.3 14.3 0 32 0h320c17.7 0 32 14.3 32 32s-14.3 32-32 32v11c0 42.4-16.9 83.1-46.9 113.1L237.3 256l67.9 67.9c30 30 46.9 70.7 46.9 113.1v11c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32v-11c0-42.4 16.9-83.1 46.9-113.1l67.8-67.9-67.8-67.9C48.9 158.1 32 117.4 32 75V64C14.3 64 0 49.7 0 32m96 32v11c0 25.5 10.1 49.9 28.1 67.9l67.9 67.8 67.9-67.9c18-18 28.1-42.4 28.1-67.9v-11zm0 384h192v-11c0-25.5-10.1-49.9-28.1-67.9L192 301.3l-67.9 67.9c-18 18-28.1 42.4-28.1 67.9v11z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/house-chimney-crack.svg�����������0000664�0000000�0000000�00000001271�14753064456�0031632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c.2 35.5-28.5 64.3-64 64.3H326.4L288 448l80.8-67.3c7.8-6.5 7.6-18.6-.4-24.9l-117.8-92.6c-14.6-11.5-33.8 7-22.8 22L288 368l-85.5 71.2c-6.1 5-7.5 13.8-3.5 20.5l31.4 52.3H128.1c-35.3 0-64-28.7-64-64V287.6h-32c-18 0-32-14-32-32.1 0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L416 100.7V64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32v121l52.8 46.4c8 7 12 15 11 24z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/house-chimney-medical.svg���������0000664�0000000�0000000�00000001365�14753064456�0032151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c.2 35.5-28.5 64.3-64 64.3H128.1c-35.3 0-64-28.7-64-64V287.7h-32c-18 0-32-14-32-32.1 0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L416 100.7V64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32v121l52.8 46.4c8 7 12 15 11 24zM272 192c-8.8 0-16 7.2-16 16v48h-48c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48v-48c0-8.8-7.2-16-16-16z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/house-chimney-user.svg������������0000664�0000000�0000000�00000001265�14753064456�0031530�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M543.8 287.6c17 0 32-14 32-32.1 1-9-3-17-11-24L512 185V64c0-17.7-14.3-32-32-32h-32c-17.7 0-32 14.3-32 32v36.7L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24 0 18 14 32.1 32 32.1h32V448c0 35.3 28.7 64 64 64h320.4c35.5 0 64.2-28.8 64-64.3l-.7-160.2h32zM288 160a64 64 0 1 1 0 128 64 64 0 1 1 0-128M176 400c0-44.2 35.8-80 80-80h64c44.2 0 80 35.8 80 80 0 8.8-7.2 16-16 16H192c-8.8 0-16-7.2-16-16"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/house-chimney-window.svg����������0000664�0000000�0000000�00000001224�14753064456�0032054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c.2 35.5-28.5 64.3-64 64.3H128.1c-35.3 0-64-28.7-64-64V287.7h-32c-18 0-32-14-32-32.1 0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L416 100.7V64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32v121l52.8 46.4c8 7 12 15 11 24zM248 192c-13.3 0-24 10.7-24 24v80c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24v-80c0-13.3-10.7-24-24-24z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/house-chimney.svg�����������������0000664�0000000�0000000�00000001411�14753064456�0030545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M543.8 287.6c17 0 32-14 32-32.1 1-9-3-17-11-24L512 185V64c0-17.7-14.3-32-32-32h-32c-17.7 0-32 14.3-32 32v36.7L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24 0 18 14 32.1 32 32.1h32v69.7c-.1.9-.1 1.8-.1 2.8v112c0 22.1 17.9 40 40 40h16c1.2 0 2.4-.1 3.6-.2 1.5.1 3 .2 4.5.2h55.9c22.1 0 40-17.9 40-40v-88c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32v88c0 22.1 17.9 40 40 40h56.5c1.4 0 2.8 0 4.2-.1 1.1.1 2.2.1 3.3.1h16c22.1 0 40-17.9 40-40v-16.2c.3-2.6.5-5.3.5-8.1l-.7-160.2h32z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/house-circle-check.svg������������0000664�0000000�0000000�00000001424�14753064456�0031431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320.7 352c8.1-89.7 83.5-160 175.3-160 8.9 0 17.6.7 26.1 1.9L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24 0 18 14 32.1 32 32.1h32v69.7c-.1.9-.1 1.8-.1 2.8v112c0 22.1 17.9 40 40 40h16c1.2 0 2.4-.1 3.6-.2 1.5.1 3 .2 4.5.2h55.9c22.1 0 40-17.9 40-40v-88c0-17.7 14.3-32 32-32h64.7zM640 368a144 144 0 1 0-288 0 144 144 0 1 0 288 0m-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l28.7 28.7 60.7-60.7c6.2-6.2 16.4-6.2 22.6 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/house-circle-exclamation.svg������0000664�0000000�0000000�00000001360�14753064456�0032657�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320.7 352c8.1-89.7 83.5-160 175.3-160 8.9 0 17.6.7 26.1 1.9L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24 0 18 14 32.1 32 32.1h32v69.7c-.1.9-.1 1.8-.1 2.8v112c0 22.1 17.9 40 40 40h16c1.2 0 2.4-.1 3.6-.2 1.5.1 3 .2 4.5.2h55.9c22.1 0 40-17.9 40-40v-88c0-17.7 14.3-32 32-32h64.7zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288m0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48m0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16v-80c0-8.8 7.2-16 16-16"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/house-circle-xmark.svg������������0000664�0000000�0000000�00000001565�14753064456�0031504�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320.7 352c8.1-89.7 83.5-160 175.3-160 8.9 0 17.6.7 26.1 1.9L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24 0 18 14 32.1 32 32.1h32v69.7c-.1.9-.1 1.8-.1 2.8v112c0 22.1 17.9 40 40 40h16c1.2 0 2.4-.1 3.6-.2 1.5.1 3 .2 4.5.2h55.9c22.1 0 40-17.9 40-40v-88c0-17.7 14.3-32 32-32h64.7zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288m59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l36.7-36.7-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l36.7 36.7 36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/house-crack.svg�������������������0000664�0000000�0000000�00000001163�14753064456�0030200�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M543.8 287.6c17 0 32-14 32-32.1 1-9-3-17-11-24L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24 0 18 14 32.1 32 32.1h32V448c0 35.3 28.7 64 64 64h102.3L199 459.8c-4.1-6.8-2.6-15.5 3.5-20.5L288 368l-60.2-82.8c-10.9-15 8.2-33.5 22.8-22l117.9 92.6c8 6.3 8.2 18.4.4 24.9L288 448l38.4 64h122.1c35.5 0 64.2-28.8 64-64.3l-.7-160.2h32z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/house-fire.svg��������������������0000664�0000000�0000000�00000001656�14753064456�0030051�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 350.1v1.9h-32c-17.7 0-32 14.3-32 32v88c0 22.1-17.9 40-40 40h-55.9c-1.5 0-3-.1-4.5-.2-1.2.1-2.4.2-3.6.2h-16c-22.1 0-40-17.9-40-40V360c0-.9 0-1.9.1-2.8v-69.7h-32c-18 0-32-14-32-32.1 0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7l137.9 121.1c-12.3-1-25 3-34.8 11.7-35.4 31.6-65.6 67.7-87.3 102.8-20.9 33.9-37.2 72.3-37.2 107.5M480 512c-88.4 0-160-71.6-160-160 0-76.7 62.5-144.7 107.2-179.4 5-3.9 10.9-5.8 16.8-5.8 7.9-.1 16 3.1 22 9.2l46 46 11.3-11.3c11.7-11.7 30.6-12.7 42.3-1C624.5 268 640 320.2 640 352c0 88.4-71.6 160-160 160m64-111.8c0-36.5-37-73-54.8-88.4-5.4-4.7-13.1-4.7-18.5 0-17.7 15.3-54.7 51.8-54.7 88.4 0 35.3 28.7 64 64 64s64-28.7 64-64"/></svg>����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/house-flag.svg��������������������0000664�0000000�0000000�00000001170�14753064456�0030024�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M480 0c-17.7 0-32 14.3-32 32v480h64V192h112c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H512c0-17.7-14.3-32-32-32m-64 159L276.8 39.7c-12-10.3-29.7-10.3-41.7 0l-224 192C1 240.4-2.7 254.5 2 267.1S18.6 288 32 288h32v192c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32v-96c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32v96c0 17.7 14.3 32 32 32h64.9-1V159z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������house-flood-water-circle-arrow-right.svg������������������������������������������������������������0000664�0000000�0000000�00000003661�14753064456�0034770�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000�mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 144a144 144 0 1 0-288 0 144 144 0 1 0 288 0M140.7 76.7c6.2-6.2 16.4-6.2 22.6 0l56 56c6.2 6.2 6.2 16.4 0 22.6l-56 56c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l28.7-28.7H80c-8.8 0-16-7.2-16-16s7.2-16 16-16h89.4l-28.7-28.7c-6.2-6.2-6.2-16.4 0-22.6M320 144c0 57.3-27.4 108.2-69.8 140.3 11.8-3.6 23-9.4 33-16.2 22.1-15.5 51.6-15.5 73.7 0 18.4 12.7 39.6 20.3 59.2 20.3 19 0 41.2-7.9 59.2-20.3 23.8-16.7 55.8-15.4 78.1 3.4 2.1 1.7 4.2 3.3 6.5 4.9l-.3-84.4h16.6c13.9 0 26.1-8.9 30.4-22.1s-.4-27.6-11.6-35.8L419 6.1c-11.4-8.1-26.6-8.1-37.8 0L301 64.4c12.1 23.9 19 50.9 19 79.6m18.5 165.9c-11.1-7.9-25.9-7.9-37 0-22.5 15.5-50 26.1-77.5 26.1-26.9 0-55.3-10.8-77.4-26.1-11.9-8.5-28.1-7.8-39.2 1.7-14.4 11.9-32.5 21-50.6 25.2-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25 29 15.6 61.5 25.9 94.5 25.9 31.9 0 60.6-9.9 80.4-18.9 5.8-2.7 11.1-5.3 15.6-7.7 4.5 2.4 9.7 5.1 15.6 7.7 19.8 9 48.6 18.9 80.4 18.9 33 0 65.5-10.3 94.5-25.8 13.4 8.4 33.7 19.3 58.2 25 17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2-11.1-9.5-27.3-10.1-39.2-1.7-22 15.2-50.5 26-77.4 26-27.5 0-55-10.6-77.5-26.1m0 112c-11.1-7.9-25.9-7.9-37 0-22.5 15.5-50 26.1-77.5 26.1-26.9 0-55.3-10.8-77.4-26.1-11.9-8.5-28.1-7.8-39.2 1.7-14.4 11.9-32.5 21-50.6 25.2-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25 29 15.6 61.5 25.9 94.5 25.9 31.9 0 60.6-9.9 80.4-18.9 5.8-2.7 11.1-5.3 15.6-7.7 4.5 2.4 9.7 5.1 15.6 7.7 19.8 9 48.6 18.9 80.4 18.9 33 0 65.5-10.3 94.5-25.8 13.4 8.4 33.7 19.3 58.2 25 17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2-11.1-9.4-27.3-10.1-39.2-1.7-22 15.2-50.5 26-77.4 26-27.5 0-55-10.6-77.5-26.1"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/house-flood-water.svg�������������0000664�0000000�0000000�00000003311�14753064456�0031335�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M306.8 6.1c-11.2-8.1-26.4-8.1-37.6 0l-176 128c-11.2 8.2-15.9 22.6-11.6 35.8S98.1 192 112 192h16v73c1.7 1 3.3 2 4.9 3.1 18 12.4 40.1 20.3 59.2 20.3 21.1 0 42-8.5 59.2-20.3 22.1-15.5 51.6-15.5 73.7 0 18.4 12.7 39.6 20.3 59.2 20.3 19 0 41.2-7.9 59.2-20.3 1.5-1 3-2 4.5-2.9l-.3-73.2h16.6c13.9 0 26.1-8.9 30.4-22.1s-.4-27.6-11.6-35.8L307 6.1zm-37.3 303.8C247 325.4 219.5 336 192 336c-26.9 0-55.3-10.8-77.4-26.1-11.9-8.5-28.1-7.8-39.2 1.7-14.4 11.9-32.5 21-50.6 25.2-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25 29 15.6 61.5 25.9 94.5 25.9 31.9 0 60.6-9.9 80.4-18.9 5.8-2.7 11.1-5.3 15.6-7.7 4.5 2.4 9.7 5.1 15.6 7.7 19.8 9 48.5 18.9 80.4 18.9 33 0 65.5-10.3 94.5-25.8 13.4 8.4 33.7 19.3 58.2 25 17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2-11.1-9.5-27.3-10.1-39.2-1.7-22 15.2-50.5 26-77.4 26-27.5 0-55-10.6-77.5-26.1-11.1-7.9-25.9-7.9-37 0M384 448c-27.5 0-55-10.6-77.5-26.1-11.1-7.9-25.9-7.9-37 0-22.5 15.5-50 26.1-77.5 26.1-26.9 0-55.3-10.8-77.4-26.1-11.9-8.5-28.1-7.8-39.2 1.7-14.4 11.9-32.5 21-50.6 25.2-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25 29 15.6 61.5 25.9 94.5 25.9 31.9 0 60.6-9.9 80.4-18.9 5.8-2.7 11.1-5.3 15.6-7.7 4.5 2.4 9.7 5.1 15.6 7.7 19.8 9 48.5 18.9 80.4 18.9 33 0 65.5-10.3 94.5-25.8 13.4 8.4 33.7 19.3 58.2 25 17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2-11.1-9.4-27.3-10.1-39.2-1.7-22 15.2-50.5 26-77.4 26"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/house-laptop.svg������������������0000664�0000000�0000000�00000001314�14753064456�0030412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M218.3 8.5c12.3-11.3 31.2-11.3 43.4 0l208 192c6.7 6.2 10.3 14.8 10.3 23.5H336c-19.1 0-36.3 8.4-48 21.7V208c0-8.8-7.2-16-16-16h-64c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h64v128H112c-26.5 0-48-21.5-48-48V256H32c-13.2 0-25-8.1-29.8-20.3s-1.6-26.2 8.1-35.2zM352 304v144h192V304zm-48-16c0-17.7 14.3-32 32-32h224c17.7 0 32 14.3 32 32v160h32c8.8 0 16 7.2 16 16 0 26.5-21.5 48-48 48H304c-26.5 0-48-21.5-48-48 0-8.8 7.2-16 16-16h32z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/house-lock.svg��������������������0000664�0000000�0000000�00000001544�14753064456�0030050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 480c0 11.7 3.1 22.6 8.6 32h-.6c-22.1 0-40-17.9-40-40v-88c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32v88c0 22.1-17.9 40-40 40h-55.9c-1.5 0-3-.1-4.5-.2-1.2.1-2.4.2-3.6.2h-16c-22.1 0-40-17.9-40-40V360c0-.9 0-1.9.1-2.8v-69.7h-32c-18 0-32-14-32-32.1 0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7l181.3 159.3C447.2 181.7 416 223.2 416 272v24.6c-19.1 11.1-32 31.7-32 55.4zm144-240c-17.7 0-32 14.3-32 32v48h64v-48c0-17.7-14.3-32-32-32m-80 32c0-44.2 35.8-80 80-80s80 35.8 80 80v48c17.7 0 32 14.3 32 32v128c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/house-medical-circle-check.svg����0000664�0000000�0000000�00000001517�14753064456�0033030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 368c0 59.5 29.5 112.1 74.8 144H128.1c-35.3 0-64-28.7-64-64V287.6h-32c-18 0-32-14-32-32.1 0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7l212.7 186.9c-8.5-1.3-17.3-1.9-26.1-1.9-54.7 0-103.5 24.9-135.8 64H320v-48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-48c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16m32 0a144 144 0 1 1 288 0 144 144 0 1 1-288 0m211.3-43.3c-6.2-6.2-16.4-6.2-22.6 0L480 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������house-medical-circle-exclamation.svg����������������������������������������������������������������0000664�0000000�0000000�00000001457�14753064456�0034203�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000�mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 368c0 59.5 29.5 112.1 74.8 144H128.1c-35.3 0-64-28.7-64-64V287.6h-32c-18 0-32-14-32-32.1 0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7l212.7 186.9c-8.5-1.3-17.3-1.9-26.1-1.9-54.7 0-103.5 24.9-135.8 64H320v-48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-48c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16m176-144a144 144 0 1 1 0 288 144 144 0 1 1 0-288m0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48m0-192c-8.8 0-16 7.2-16 16v80c0 8.8 7.2 16 16 16s16-7.2 16-16v-80c0-8.8-7.2-16-16-16"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/house-medical-circle-xmark.svg����0000664�0000000�0000000�00000001650�14753064456�0033073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 368c0 59.5 29.5 112.1 74.8 144H128.1c-35.3 0-64-28.7-64-64V287.6h-32c-18 0-32-14-32-32.1 0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7l212.7 186.9c-8.5-1.3-17.3-1.9-26.1-1.9-54.7 0-103.5 24.9-135.8 64H320v-48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-48c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16m176-144a144 144 0 1 1 0 288 144 144 0 1 1 0-288m22.6 144 36.7-36.7c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L496 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l36.7 36.7-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l36.7-36.7 36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6z"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/house-medical-flag.svg������������0000664�0000000�0000000�00000001340�14753064456�0031417�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M480 0c17.7 0 32 14.3 32 32h112c8.8 0 16 7.2 16 16v128c0 8.8-7.2 16-16 16H512v320h-64V32c0-17.7 14.3-32 32-32M276.8 39.7 416 159v353h1H96c-17.7 0-32-14.3-32-32V288H32c-13.4 0-25.4-8.3-30-20.9s-1-26.7 9.2-35.4l224-192c12-10.3 29.7-10.3 41.7 0zM224 208v48h-48c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48v-48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/house-medical.svg�����������������0000664�0000000�0000000�00000001263�14753064456�0030514�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M543.8 287.6c17 0 32-14 32-32.1 1-9-3-17-11-24L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24 0 18 14 32.1 32 32.1h32V448c0 35.3 28.7 64 64 64h320.4c35.5 0 64.2-28.8 64-64.3l-.7-160.2h32zM256 208c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-48h-48c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16h48z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/house-signal.svg������������������0000664�0000000�0000000�00000001542�14753064456�0030373�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M357.7 8.5c-12.3-11.3-31.2-11.3-43.4 0l-208 192c-9.4 8.6-12.7 22-8.5 34 87.1 25.3 155.6 94.2 180.3 181.6L464 416c26.5 0 48-21.5 48-48V256h32c13.2 0 25-8.1 29.8-20.3s1.6-26.2-8.1-35.2zM288 208c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16h-64c-8.8 0-16-7.2-16-16zM24 256c-13.3 0-24 10.7-24 24s10.7 24 24 24c101.6 0 184 82.4 184 184 0 13.3 10.7 24 24 24s24-10.7 24-24c0-128.1-103.9-232-232-232m8 256a32 32 0 1 0 0-64 32 32 0 1 0 0 64M0 376c0 13.3 10.7 24 24 24 48.6 0 88 39.4 88 88 0 13.3 10.7 24 24 24s24-10.7 24-24c0-75.1-60.9-136-136-136-13.3 0-24 10.7-24 24"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/house-tsunami.svg�����������������0000664�0000000�0000000�00000003617�14753064456�0030603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M80.8 136.5C104.9 93.8 152.6 64 209 64c16.9 0 33.1 2.7 48.2 7.7 16.8 5.5 34.9-3.6 40.4-20.4s-3.6-34.9-20.4-40.4C255.8 3.8 232.8 0 209 0 95.2 0 0 88 0 200c0 91.6 53.5 172.1 142.2 194.1 13.4 3.8 27.5 5.9 42.2 5.9.7 0 1.4 0 2.1-.1 1.8 0 3.7.1 5.5.1 31.9 0 60.6-9.9 80.4-18.9 5.8-2.7 11.1-5.3 15.6-7.7 4.5 2.4 9.7 5.1 15.6 7.7 19.8 9 48.5 18.9 80.4 18.9 33 0 65.5-10.3 94.5-25.8 13.4 8.4 33.7 19.3 58.2 25 17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2-11.1-9.5-27.3-10.1-39.2-1.7-22 15.2-50.5 26-77.4 26-27.5 0-55-10.6-77.5-26.1-11.1-7.9-25.9-7.9-37 0-22.4 15.5-49.9 26.1-77.4 26.1h-.1c-12.4 0-24-1.5-34.9-4.3C121.6 320.2 96 287 96 248c0-48.5 39.5-88 88.4-88 13.5 0 26.1 3 37.5 8.3 16 7.5 35.1.6 42.5-15.5s.6-35.1-15.5-42.5c-19.6-9.2-41.5-14.3-64.5-14.3-40 0-76.4 15.4-103.6 40.5m252-18.1c-8.1 6-12.8 15.5-12.8 25.6v121c1.6 1 3.3 2 4.8 3.1 18.4 12.7 39.6 20.3 59.2 20.3 19 0 41.2-7.9 59.2-20.3 23.8-16.7 55.8-15.3 78.1 3.4 10.6 8.8 24.2 15.6 37.3 18.6 5.8 1.4 11.2 3.4 16.2 6.2.7-2.7 1.1-5.5 1.1-8.4l-.4-144c0-10-4.7-19.4-12.7-25.5l-95.5-72a31.95 31.95 0 0 0-38.5 0zM384 448c-27.5 0-55-10.6-77.5-26.1-11.1-7.9-25.9-7.9-37 0-22.5 15.5-50 26.1-77.5 26.1-26.9 0-55.3-10.8-77.4-26.1-11.9-8.5-28.1-7.8-39.2 1.7-14.4 11.9-32.5 21-50.6 25.2-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25 29 15.6 61.5 25.9 94.5 25.9 31.9 0 60.6-9.9 80.4-18.9 5.8-2.7 11.1-5.3 15.6-7.7 4.5 2.4 9.7 5.1 15.6 7.7 19.8 9 48.5 18.9 80.4 18.9 33 0 65.5-10.3 94.5-25.8 13.4 8.4 33.7 19.3 58.2 25 17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2-11.1-9.4-27.3-10.1-39.2-1.7-22 15.2-50.5 26-77.4 26"/></svg>�����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/house-user.svg��������������������0000664�0000000�0000000�00000001170�14753064456�0030071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c.2 35.5-28.5 64.3-64 64.3H128.1c-35.3 0-64-28.7-64-64V287.7h-32c-18 0-32-14-32-32.1 0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7l255.4 224.5c8 7 12 15 11 24M352 224a64 64 0 1 0-128 0 64 64 0 1 0 128 0m-96 96c-44.2 0-80 35.8-80 80 0 8.8 7.2 16 16 16h192c8.8 0 16-7.2 16-16 0-44.2-35.8-80-80-80z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/house.svg�������������������������0000664�0000000�0000000�00000001330�14753064456�0027113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c0 2.7-.2 5.4-.5 8.1v16.2c0 22.1-17.9 40-40 40h-16c-1.1 0-2.2 0-3.3-.1-1.4.1-2.8.1-4.2.1L416 512h-24c-22.1 0-40-17.9-40-40v-88c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32v88c0 22.1-17.9 40-40 40h-55.9c-1.5 0-3-.1-4.5-.2-1.2.1-2.4.2-3.6.2h-16c-22.1 0-40-17.9-40-40V360c0-.9 0-1.9.1-2.8v-69.7h-32c-18 0-32-14-32-32.1 0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7l255.4 224.5c8 7 12 15 11 24"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hryvnia-sign.svg������������������0000664�0000000�0000000�00000001705�14753064456�0030414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M121.9 116.2c16.4-13.1 36.8-20.2 57.7-20.2H223c27.1 0 49 21.9 49 49 0 11.5-4 22.4-11.1 31H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h123.5l-50.6 28.9c-1.7 1-3.4 2-5.1 3.1H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h20.3c-2.8 9.9-4.3 20.4-4.3 31 0 62.4 50.6 113 113 113h43.4c35.5 0 70-12.1 97.7-34.3l5.9-4.7c13.8-11 16-31.2 5-45s-31.2-16-45-5l-5.9 4.7c-16.4 13.1-36.7 20.2-57.7 20.2l-43.4.1c-27.1 0-49-21.9-49-49 0-11.5 4-22.4 11.1-31H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H228.5l50.6-28.9c1.7-1 3.4-2 5.1-3.1H352c17.7 0 32-14.3 32-32s-14.3-32-32-32h-20.3c2.8-10 4.3-20.4 4.3-31 0-62.4-50.6-113-113-113h-43.4c-35.5 0-70 12.1-97.7 34.3L76 71c-13.8 11-16 31.2-5 45s31.2 16 45 5l5.9-4.7z"/></svg>�����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/hurricane.svg���������������������0000664�0000000�0000000�00000001133�14753064456�0027751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 208C0 104.4 75.7 18.5 174.9 2.6c9.1-1.4 17.1 6 17.1 15.3v63.3c0 8.4 6.5 15.3 14.7 16.5C307 112.5 384 199 384 303.4c0 103.6-75.7 189.5-174.9 205.4-9.2 1.5-17.1-5.9-17.1-15.2v-63.3c0-8.4-6.5-15.3-14.7-16.5C77 398.9 0 312.4 0 208m288 48a96 96 0 1 0-192 0 96 96 0 1 0 192 0m-96-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/i-cursor.svg����������������������0000664�0000000�0000000�00000001530�14753064456�0027535�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M.1 29.3C-1.4 47 11.7 62.4 29.3 63.9l8 .7C70.5 67.3 96 95 96 128.3V224H64c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v95.7c0 33.3-25.5 61-58.7 63.8l-8 .7C11.7 449.6-1.4 465 .1 482.7s16.9 30.7 34.5 29.2l8-.7c34.1-2.8 64.2-18.9 85.4-42.9 21.2 24 51.2 40 85.4 42.9l8 .7c17.6 1.5 33.1-11.6 34.5-29.2s-11.6-33.1-29.2-34.5l-8-.7c-33.2-2.8-58.7-30.5-58.7-63.8V288h32c17.7 0 32-14.3 32-32s-14.3-32-32-32h-32v-95.7c0-33.3 25.5-61 58.7-63.8l8-.7c17.6-1.5 30.7-16.9 29.2-34.5S239-1.4 221.3.1l-8 .7c-34.1 2.8-64.1 18.9-85.3 42.9-21.2-24-51.2-40-85.4-42.9l-8-.7C17-1.4 1.6 11.7.1 29.3"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/i.svg�����������������������������0000664�0000000�0000000�00000000721�14753064456�0026223�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 32C14.3 32 0 46.3 0 64s14.3 32 32 32h96v320H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h256c17.7 0 32-14.3 32-32s-14.3-32-32-32h-96V96h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H32"/></svg>�����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/ice-cream.svg���������������������0000664�0000000�0000000�00000001022�14753064456�0027613�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M367.1 160c.6-5.3.9-10.6.9-16C368 64.5 303.5 0 224 0S80 64.5 80 144c0 5.4.3 10.7.9 16H80c-26.5 0-48 21.5-48 48s21.5 48 48 48h288c26.5 0 48-21.5 48-48s-21.5-48-48-48zM96 288l104.8 209.7c4.4 8.8 13.3 14.3 23.2 14.3s18.8-5.5 23.2-14.3L352 288z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/icicles.svg�����������������������0000664�0000000�0000000�00000001244�14753064456�0027407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M75.8 304.8 1 35.7c-.7-2.5-1-5-1-7.5C0 12.6 12.6 0 28.2 0h454.2C498.8 0 512 13.2 512 29.6c0 1.6-.1 3.3-.4 4.9l-77 461.6c-1.5 9.2-9.5 15.9-18.8 15.9-9.2 0-17.1-6.6-18.7-15.6L336 160l-28.8 143.9c-1.9 9.3-10.1 16.1-19.6 16.1-9.2 0-17.2-6.2-19.4-15.1L240 192l-29.4 176.2c-1.5 9.1-9.4 15.8-18.6 15.8s-17.1-6.7-18.6-15.8L144 192l-28.1 112.3c-2.3 9.2-10.6 15.7-20.1 15.7-9.3 0-17.5-6.2-20-15.2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/icons.svg�������������������������0000664�0000000�0000000�00000002162�14753064456�0027107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M500.3 7.3c7.4 6 11.7 15.1 11.7 24.7v144c0 26.5-28.7 48-64 48s-64-21.5-64-48 28.7-48 64-48V71l-96 19.2V208c0 26.5-28.7 48-64 48s-64-21.5-64-48 28.7-48 64-48V64c0-15.3 10.8-28.4 25.7-31.4l160-32c9.4-1.9 19.1.6 26.6 6.6zM74.7 304l11.8-17.8c5.9-8.9 15.9-14.2 26.6-14.2h61.7c10.7 0 20.7 5.3 26.6 14.2l11.9 17.8H240c26.5 0 48 21.5 48 48v112c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V352c0-26.5 21.5-48 48-48zM192 408a48 48 0 1 0-96 0 48 48 0 1 0 96 0m286.7-129.7L440.3 368H496c6.7 0 12.6 4.1 15 10.4s.6 13.3-4.4 17.7l-128 112c-5.6 4.9-13.9 5.3-19.9.9s-8.2-12.4-5.3-19.2l38.3-89.8H336c-6.7 0-12.6-4.1-15-10.4s-.6-13.3 4.4-17.7l128-112c5.6-4.9 13.9-5.3 19.9-.9s8.2 12.4 5.3 19.2zm-339-59.2c-6.5 6.5-17 6.5-23 0l-96.8-99.9c-28-29-26.5-76.9 5-103.9 27-23.5 68.4-19 93.4 6.5l10 10.5 9.5-10.5c25-25.5 65.9-30 93.9-6.5 31 27 32.5 74.9 4.5 103.9l-96.4 99.9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/id-badge.svg����������������������0000664�0000000�0000000�00000001136�14753064456�0027430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm96 320h64c44.2 0 80 35.8 80 80 0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16 0-44.2 35.8-80 80-80m-32-96a64 64 0 1 1 128 0 64 64 0 1 1-128 0m16-160h96c8.8 0 16 7.2 16 16s-7.2 16-16 16h-96c-8.8 0-16-7.2-16-16s7.2-16 16-16"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/id-card-clip.svg������������������0000664�0000000�0000000�00000001327�14753064456�0030226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 0h64c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32h-64c-17.7 0-32-14.3-32-32V32c0-17.7 14.3-32 32-32M64 64h128v48c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48V64h128c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128c0-35.3 28.7-64 64-64m112 373.3c0 5.9 4.8 10.7 10.7 10.7h202.7c5.9 0 10.7-4.8 10.7-10.7 0-29.5-23.9-53.3-53.3-53.3H229.5c-29.5 0-53.3 23.9-53.3 53.3zM288 352a64 64 0 1 0 0-128 64 64 0 1 0 0 128"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/id-card.svg�����������������������0000664�0000000�0000000�00000001475�14753064456�0027305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96h576c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96m0 32v288c0 35.3 28.7 64 64 64h448c35.3 0 64-28.7 64-64V128zm64 277.3c0-29.5 23.9-53.3 53.3-53.3h117.3c29.5 0 53.3 23.9 53.3 53.3 0 5.9-4.8 10.7-10.7 10.7H74.7c-5.9 0-10.7-4.8-10.7-10.7M176 192a64 64 0 1 1 0 128 64 64 0 1 1 0-128m176 16c0-8.8 7.2-16 16-16h128c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16m0 64c0-8.8 7.2-16 16-16h128c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16m0 64c0-8.8 7.2-16 16-16h128c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/igloo.svg�������������������������0000664�0000000�0000000�00000001164�14753064456�0027106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 33.8V160H48.5C100.2 82.8 188.1 32 288 32c10.8 0 21.5.6 32 1.8M352 160V39.1C424.9 55.7 487.2 99.8 527.5 160zM29.9 192H96v128H0c0-46 10.8-89.4 29.9-128M192 320h-64V192h320v128h-64v32h192v80c0 26.5-21.5 48-48 48H352V352c0-35.3-28.7-64-64-64s-64 28.7-64 64v128H48c-26.5 0-48-21.5-48-48v-80h192zm288 0V192h66.1c19.2 38.6 29.9 82 29.9 128z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/image-portrait.svg����������������0000664�0000000�0000000�00000001063�14753064456�0030717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 64c0-35.3-28.7-64-64-64H64C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64zM128 192a64 64 0 1 1 128 0 64 64 0 1 1-128 0M80 356.6c0-37.9 30.7-68.6 68.6-68.6h86.9c37.9 0 68.6 30.7 68.6 68.6 0 15.1-12.3 27.4-27.4 27.4H107.6C92.3 384 80 371.7 80 356.6"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/image.svg�������������������������0000664�0000000�0000000�00000001215�14753064456�0027054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96c0-35.3 28.7-64 64-64h384c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm323.8 106.5c-4.5-6.6-11.9-10.5-19.8-10.5s-15.4 3.9-19.8 10.5l-87 127.6-26.5-33.1c-4.6-5.7-11.5-9-18.7-9s-14.2 3.3-18.7 9l-64 80c-5.8 7.2-6.9 17.1-2.9 25.4S78.8 416 88 416h336c8.9 0 17.1-4.9 21.2-12.8s3.6-17.4-1.4-24.7zM112 192a48 48 0 1 0 0-96 48 48 0 1 0 0 96"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/images.svg������������������������0000664�0000000�0000000�00000001416�14753064456�0027242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 32c-35.3 0-64 28.7-64 64v224c0 35.3 28.7 64 64 64h352c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm236 106.7 96 144c4.9 7.4 5.4 16.8 1.2 24.6S480.9 320 472 320H200c-9.2 0-17.6-5.3-21.6-13.6s-2.9-18.2 2.9-25.4l64-80c4.6-5.7 11.4-9 18.7-9s14.2 3.3 18.7 9l17.3 21.6 56-84c4.5-6.6 12-10.6 20-10.6s15.5 4 20 10.7M192 128a32 32 0 1 1 64 0 32 32 0 1 1-64 0m-144-8c0-13.3-10.7-24-24-24S0 106.7 0 120v224c0 75.1 60.9 136 136 136h320c13.3 0 24-10.7 24-24s-10.7-24-24-24H136c-48.6 0-88-39.4-88-88z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/inbox.svg�������������������������0000664�0000000�0000000�00000001174�14753064456�0027115�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M121 32c-29.4 0-55 20-62.1 48.5l-57 227.9C.6 313.5 0 318.7 0 323.9V416c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64v-92.1c0-5.2-.6-10.4-1.9-15.5l-57-227.9C446 52 420.4 32 391 32zm0 64h270l48 192h-51.2c-12.1 0-23.2 6.8-28.6 17.7l-14.3 28.6c-5.4 10.8-16.5 17.7-28.6 17.7H195.9c-12.1 0-23.2-6.8-28.6-17.7L153 305.7c-5.4-10.8-16.5-17.7-28.6-17.7H73z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/indent.svg������������������������0000664�0000000�0000000�00000001401�14753064456�0027250�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32h384c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64m192 128c0-17.7 14.3-32 32-32h192c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32m32 96h192c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32M0 448c0-17.7 14.3-32 32-32h384c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32m127.8-179.4-102 79.3c-10.5 8.2-25.8.7-25.8-12.6V176.7c0-13.3 15.3-20.8 25.8-12.6l101.9 79.3c8.2 6.4 8.2 18.9 0 25.3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/indian-rupee-sign.svg�������������0000664�0000000�0000000�00000001276�14753064456�0031317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32h256c17.7 0 32 14.3 32 32s-14.3 32-32 32h-56.2c9.6 14.4 16.7 30.6 20.7 48h35.6c17.7 0 32 14.3 32 32s-14.3 32-32 32h-35.6c-13.2 58.3-61.9 103.2-122.2 110.9L274.6 422c14.4 10.3 17.7 30.3 7.4 44.6s-30.3 17.7-44.6 7.4l-224-160c-11.3-8-16.1-22.5-11.9-35.8S18.1 256 32 256h80c32.8 0 61-19.7 73.3-48H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h153.3C173 115.7 144.8 96 112 96H32C14.3 96 0 81.7 0 64"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/industry.svg����������������������0000664�0000000�0000000�00000000737�14753064456�0027663�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32c-17.7 0-32 14.3-32 32v368c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V152.2c0-18.2-19.4-29.7-35.4-21.1L352 215.4v-63.2c0-18.2-19.4-29.7-35.4-21.1L160 215.4V64c0-17.7-14.3-32-32-32z"/></svg>���������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/infinity.svg����������������������0000664�0000000�0000000�00000001515�14753064456�0027626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 241.1C0 161 65 96 145.1 96c38.5 0 75.4 15.3 102.6 42.5l72.3 72.2 72.2-72.2C419.5 111.3 456.4 96 494.9 96 575 96 640 161 640 241.1v29.7C640 351 575 416 494.9 416c-38.5 0-75.4-15.3-102.6-42.5L320 301.3l-72.2 72.2c-27.3 27.2-64.2 42.5-102.7 42.5C65 416 0 351 0 270.9v-29.7zM274.7 256l-72.2-72.2c-15.2-15.2-35.9-23.8-57.4-23.8-44.8 0-81.1 36.3-81.1 81.1v29.7c0 44.8 36.3 81.1 81.1 81.1 21.5 0 42.2-8.5 57.4-23.8zm90.5 0 72.2 72.2c15.2 15.2 35.9 23.8 57.4 23.8 44.8 0 81.1-36.3 81.1-81.1v-29.7c0-44.8-36.3-81.1-81.1-81.1-21.5 0-42.2 8.5-57.4 23.8L365.3 256z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/info.svg��������������������������0000664�0000000�0000000�00000000757�14753064456�0026737�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 192 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48 80a48 48 0 1 1 96 0 48 48 0 1 1-96 0M0 224c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32v224h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h32V256H32c-17.7 0-32-14.3-32-32"/></svg>�����������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/italic.svg������������������������0000664�0000000�0000000�00000000750�14753064456�0027242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 64c0-17.7 14.3-32 32-32h192c17.7 0 32 14.3 32 32s-14.3 32-32 32h-58.7L160 416h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h58.7L224 96h-64c-17.7 0-32-14.3-32-32"/></svg>������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/j.svg�����������������������������0000664�0000000�0000000�00000000707�14753064456�0026230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 32c17.7 0 32 14.3 32 32v256c0 88.4-71.6 160-160 160S0 408.4 0 320v-32c0-17.7 14.3-32 32-32s32 14.3 32 32v32c0 53 43 96 96 96s96-43 96-96V64c0-17.7 14.3-32 32-32"/></svg>���������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/jar-wheat.svg���������������������0000664�0000000�0000000�00000002012�14753064456�0027650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 32C32 14.3 46.3 0 64 0h192c17.7 0 32 14.3 32 32s-14.3 32-32 32H64c-17.7 0-32-14.3-32-32M0 160c0-35.3 28.7-64 64-64h192c35.3 0 64 28.7 64 64v288c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm112 0H69.8c-3.2 0-5.8 2.6-5.8 5.8C64 198 90 224 122.2 224h75.6c32.1 0 58.2-26 58.2-58.2 0-3.2-2.6-5.8-5.8-5.8H208c-19.1 0-36.3 8.4-48 21.7-11.7-13.3-28.9-21.7-48-21.7m48 117.7c-11.7-13.3-28.9-21.7-48-21.7H69.8c-3.2 0-5.8 2.6-5.8 5.8C64 294 90 320 122.2 320h75.6c32.1 0 58.2-26 58.2-58.2 0-3.2-2.6-5.8-5.8-5.8H208c-19.1 0-36.3 8.4-48 21.7M112 352H69.8c-3.2 0-5.8 2.6-5.8 5.8C64 390 90 416 122.2 416H144v32c0 8.8 7.2 16 16 16s16-7.2 16-16v-32h21.8c32.1 0 58.2-26 58.2-58.2 0-3.2-2.6-5.8-5.8-5.8H208c-19.1 0-36.3 8.4-48 21.7-11.7-13.3-28.9-21.7-48-21.7"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/jar.svg���������������������������0000664�0000000�0000000�00000001113�14753064456�0026543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 32C32 14.3 46.3 0 64 0h192c17.7 0 32 14.3 32 32s-14.3 32-32 32H64c-17.7 0-32-14.3-32-32M0 160c0-35.3 28.7-64 64-64h192c35.3 0 64 28.7 64 64v288c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm96 64c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/jedi.svg��������������������������0000664�0000000�0000000�00000003240�14753064456�0026705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m246 315.7-21.2-31.9c-2.1-3.2-1.7-7.4 1-10.1s6.9-3.1 10.1-1l29.5 19.7c2.1 1.4 4.9 0 5-2.6L279.7 8c.1-4.5 3.8-8 8.3-8s8.1 3.5 8.3 8l9.4 281.9c.1 2.5 2.9 3.9 5 2.6l29.5-19.7c3.2-2.1 7.4-1.7 10.1 1s3.1 6.9 1 10.1L330 315.7c-1.3 1.9-.2 4.5 2 4.9l37.6 7.5c3.7.7 6.4 4 6.4 7.8s-2.7 7.1-6.4 7.8l-37.6 7.7c-2.2.4-3.3 3-2 4.9l21.2 31.9c2.1 3.2 1.7 7.4-1 10.1s-6.9 3.1-10.1 1l-26.3-17.6c-2.2-1.4-5.1.2-5 2.8l2.1 61.5C370.6 435.2 416 382.9 416 320c0-37-15.7-70.4-40.8-93.7-7-6.5-6.5-18.6 1-24.4C410.1 175.5 432 134.3 432 88c0-16.8-2.9-33-8.2-48-4.6-13 10.2-30 21.4-22 53.5 38 92.7 94.8 107.8 160.7.5 2.1-.2 4.3-1.7 5.9L522.9 213c-4 4-1.2 10.9 4.5 10.9h26c3.4 0 6.2 2.6 6.3 6 .1 3.3.2 6.6.2 10 0 17.5-1.7 34.7-4.8 51.3-.2 1.2-.9 2.4-1.7 3.3L506.9 341c-4 4-1.2 10.9 4.5 10.9H526c4.6 0 7.7 4.8 5.7 9C487.2 450.5 394.8 512 288 512S88.8 450.5 44.3 361c-2.1-4.2 1-9 5.7-9h14.6c5.7 0 8.6-6.9 4.5-10.9l-46.5-46.5c-.9-.9-1.5-2-1.7-3.3-3.2-16.6-4.9-33.8-4.9-51.3 0-3.3.1-6.7.2-10 .1-3.4 2.9-6 6.3-6h26c5.7 0 8.6-6.9 4.5-10.9l-28.4-28.5c-1.5-1.5-2.2-3.8-1.7-5.9C38.1 112.8 77.3 56 130.8 18c11.3-8 26 8.9 21.4 22-5.3 15-8.2 31.2-8.2 48 0 46.3 21.9 87.5 55.8 113.9 7.5 5.8 8 17.9 1 24.4C175.7 249.6 160 283 160 320c0 62.9 45.4 115.2 105.1 126l2.1-61.5c.1-2.6-2.8-4.2-5-2.8l-26.3 17.6c-3.2 2.1-7.4 1.7-10.1-1s-3.1-6.9-1-10.1l21.2-31.9c1.3-1.9.2-4.5-2-4.9l-37.6-7.5c-3.7-.7-6.4-4-6.4-7.8s2.7-7.1 6.4-7.8l37.6-7.5c2.2-.4 3.3-3 2-4.9z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/jet-fighter-up.svg����������������0000664�0000000�0000000�00000001365�14753064456�0030632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M270.7 9.7C268.2 3.8 262.4 0 256 0s-12.2 3.8-14.7 9.7l-44.1 102.9c-3.4 8-5.2 16.5-5.2 25.2v77l-144 84V280c0-13.3-10.7-24-24-24S0 266.7 0 280v112c0 13.3 10.7 24 24 24s24-10.7 24-24v-8h144v32.7L133.5 468c-3.5 3-5.5 7.4-5.5 12v16c0 8.8 7.2 16 16 16h96v-64c0-8.8 7.2-16 16-16s16 7.2 16 16v64h96c8.8 0 16-7.2 16-16v-16c0-4.6-2-9-5.5-12L320 416.7V384h144v8c0 13.3 10.7 24 24 24s24-10.7 24-24V280c0-13.3-10.7-24-24-24s-24 10.7-24 24v18.8l-144-84v-77c0-8.7-1.8-17.2-5.2-25.2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/jet-fighter.svg�������������������0000664�0000000�0000000�00000001527�14753064456�0030210�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 24c0-13.3 10.7-24 24-24h112c13.3 0 24 10.7 24 24s-10.7 24-24 24h-16l104 144h116.4c7.7 0 15.3 1.4 22.5 4.1L625 234.4c9 3.4 15 12 15 21.6s-6 18.2-15 21.6l-102.1 38.3c-7.2 2.7-14.8 4.1-22.5 4.1H384L280 464h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H184c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V320h-32l-54.6 54.6c-6 6-14.1 9.4-22.6 9.4H64c-17.7 0-32-14.3-32-32v-64c-17.7 0-32-14.3-32-32s14.3-32 32-32v-64c0-17.7 14.3-32 32-32h18.7c8.5 0 16.6 3.4 22.6 9.4L160 192h32V48h-8c-13.3 0-24-10.7-24-24M80 240c-8.8 0-16 7.2-16 16s7.2 16 16 16h64c8.8 0 16-7.2 16-16s-7.2-16-16-16z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/joint.svg�������������������������0000664�0000000�0000000�00000002520�14753064456�0027115�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 32c0-17.7-14.3-32-32-32s-32 14.3-32 32v11c0 55.2 21.9 108.1 60.9 147.1l21 21c9 9 14.1 21.2 14.1 33.9v11c0 17.7 14.3 32 32 32s32-14.3 32-32v-11c0-29.7-11.8-58.2-32.8-79.2l-21-21c-27-27-42.2-63.6-42.2-101.8zm128 224c0 17.7 14.3 32 32 32s32-14.3 32-32v-11c0-55.2-21.9-108.1-60.9-147.1l-21-21c-9-9-14.1-21.2-14.1-33.9V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v11c0 29.7 11.8 58.2 32.8 79.2l21 21c27 27 42.2 63.6 42.2 101.8zM229.8 360c-4.7-2.3-10-2.7-15.2-2-37.8 5.6-75.2 14.3-106.9 22.8-26.4 7.2-49.4 14.3-65.7 19.6-8.2 2.7-14.7 4.9-19.2 6.5-2.3.8-4 1.4-5.2 1.8l-1.3.5C6.8 412.5 0 421.4 0 432s6.8 19.5 16.3 22.7l1.3.5c1.2.4 3 1.1 5.2 1.8 4.5 1.6 11 3.8 19.2 6.5 16.3 5.4 39.2 12.5 65.7 19.6C160.3 497.3 228.8 512 288 512h67.3c4.1 0 6.3-5.1 3.6-8.3L256.5 380.8c-7.4-8.9-16.5-15.9-26.7-20.8M445 512h70.3c4.1 0 6.3-5.1 3.6-8.3L416.5 380.8C401.3 362.5 378.8 352 355 352h-70.4c-4.1 0-6.2 5.1-3.5 8.3l102.4 122.9c15.2 18.3 37.7 28.8 61.5 28.8m-3.9-151.7 102.4 122.9c14.6 17.5 35.9 27.9 58.6 28.7 21.1-1.1 37.9-18.6 37.9-39.9v-80c0-22.1-17.9-40-40-40H444.7c-4.1 0-6.3 5.1-3.6 8.3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/jug-detergent.svg�����������������0000664�0000000�0000000�00000001151�14753064456�0030535�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 24c0-13.3 10.7-24 24-24h80c13.3 0 24 10.7 24 24v24h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H88c-13.3 0-24-10.7-24-24s10.7-24 24-24h8zM0 256c0-70.7 57.3-128 128-128h128c70.7 0 128 57.3 128 128v192c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm256 0v96c0 17.7 14.3 32 32 32s32-14.3 32-32v-96c0-17.7-14.3-32-32-32s-32 14.3-32 32"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/k.svg�����������������������������0000664�0000000�0000000�00000001001�14753064456�0026215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M311 86.3c12.3-12.7 12-32.9-.7-45.2s-32.9-12-45.2.7l-155.2 160L64 249V64c0-17.7-14.3-32-32-32S0 46.3 0 64v384c0 17.7 14.3 32 32 32s32-14.3 32-32V341l64.7-66.7 133 192c10.1 14.5 30 18.1 44.5 8.1s18.1-30 8.1-44.5L174.1 227.4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/kaaba.svg�������������������������0000664�0000000�0000000�00000002166�14753064456�0027037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m60 120 228 71.2L516 120 288 48.8zM278.5 1.5c6.2-1.9 12.9-1.9 19.1 0l256 80C566.9 85.6 576 98 576 112v37.2l-283.2 88.5c-3.1 1-6.4 1-9.5 0L0 149.2V112c0-14 9.1-26.4 22.5-30.5zm23.9 266.8L576 182.8v46.5l-52.8 16.5c-8.4 2.6-13.1 11.6-10.5 20s11.6 13.1 20 10.5l43.3-13.5V400c0 14-9.1 26.4-22.5 30.5l-256 80c-6.2 1.9-12.9 1.9-19.1 0l-256-80C9.1 426.4 0 414 0 400V262.8l43.2 13.5c8.4 2.6 17.4-2.1 20-10.5s-2.1-17.4-10.5-20L0 229.2v-46.5l273.7 85.5c9.3 2.9 19.3 2.9 28.6 0zm-185.5-2.6c-8.4-2.6-17.4 2.1-20 10.5s2.1 17.4 10.5 20l64 20c8.4 2.6 17.4-2.1 20-10.5s-2.1-17.4-10.5-20zm352 30.5c8.4-2.6 13.1-11.6 10.5-20s-11.6-13.1-20-10.5l-64 20c-8.4 2.6-13.1 11.6-10.5 20s11.6 13.1 20 10.5zm-224 9.5c-8.4-2.6-17.4 2.1-20 10.5s2.1 17.4 10.5 20l38.5 12c9.3 2.9 19.3 2.9 28.6 0l38.5-12c8.4-2.6 13.1-11.6 10.5-20s-11.6-13.1-20-10.5l-38.5 12c-3.1 1-6.4 1-9.5 0l-38.5-12z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/key.svg���������������������������0000664�0000000�0000000�00000001110�14753064456�0026554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M336 352c97.2 0 176-78.8 176-176S433.2 0 336 0 160 78.8 160 176c0 18.7 2.9 36.8 8.3 53.7L7 391c-4.5 4.5-7 10.6-7 17v80c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24v-40h40c13.3 0 24-10.7 24-24v-40h40c6.4 0 12.5-2.5 17-7l33.3-33.3c16.9 5.4 35 8.3 53.7 8.3m40-256a40 40 0 1 1 0 80 40 40 0 1 1 0-80"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/keyboard.svg����������������������0000664�0000000�0000000�00000003162�14753064456�0027575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 64C28.7 64 0 92.7 0 128v256c0 35.3 28.7 64 64 64h448c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64zm16 64h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16M64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m80-176c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m-16 112c0-8.8 7.2-16 16-16h224c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16zm112-208h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m-16 112c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zm112-112h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m-16 112c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zm112-112h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m-16 112c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/khanda.svg������������������������0000664�0000000�0000000�00000004321�14753064456�0027221�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M245.8 3.7c5.9-4.9 14.6-4.9 20.5 0l48 40c5.9 4.9 7.5 13.2 3.8 19.9l-.1.1-.3.6c-.3.5-.7 1.3-1.2 2.3-1 2-2.6 5-4.4 8.6-.5.9-.9 1.9-1.4 2.9C344.9 97.4 368 134 368 176s-23.1 78.6-57.3 97.8c.5 1 1 2 1.4 2.9 1.8 3.7 3.3 6.6 4.4 8.6.5 1 .9 1.8 1.2 2.3l.3.6.1.1c3.6 6.7 2 15-3.8 19.9L272 343.5v19.8l35.6-24.5 41.1-28.2c42.8-29.4 68.4-78 68.4-130 0-31.1-9.2-61.6-26.5-87.5l-2.8-4.2c-4-6-3.5-14 1.3-19.5s12.7-7 19.2-3.7L401.1 80l7.2-14.3h.1l.3.2 1 .5c.8.4 2 1.1 3.5 1.9 2.9 1.7 7 4.1 11.8 7.3 9.6 6.4 22.5 16.1 35.4 29 25.7 25.7 52.7 65.6 52.7 119.3 0 53.1-26.4 100.5-51.2 133.6-12.6 16.7-25.1 30.3-34.5 39.7-4.7 4.7-8.7 8.4-11.5 10.9-1.4 1.3-2.5 2.2-3.3 2.9l-.9.8-.3.2-.1.1-10.2-12.1 10.2 12.3c-5.1 4.3-12.4 4.9-18.2 1.6l-75.6-43-32.7 22.5 45.5 31.3c1.8-.4 3.7-.7 5.7-.7 13.3 0 24 10.7 24 24s-10.7 24-24 24c-12.2 0-22.3-9.1-23.8-21L272 423.4v28.9c9.6 5.5 16 15.9 16 27.7 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-11.8 6.4-22.2 16-27.7v-28.1l-40.3 27.7c-1.9 11.4-11.8 20.1-23.7 20.1-13.3 0-24-10.7-24-24s10.7-24 24-24c2.2 0 4.4.3 6.5.9l45.8-31.5-32.7-22.5-75.6 43c-5.8 3.3-13 2.7-18.2-1.6L112 400c-10.2 12.3-10.2 12.3-10.3 12.3l-.1-.1-.3-.2-.9-.8c-.8-.7-1.9-1.7-3.3-2.9-2.8-2.5-6.7-6.2-11.5-10.9-9.4-9.4-21.9-23-34.5-39.7C26.4 324.5 0 277.1 0 224c0-53.7 26.9-93.6 52.7-119.3 12.9-12.9 25.8-22.6 35.4-29C93 72.5 97 70 99.9 68.4c1.5-.8 2.6-1.5 3.5-1.9l1-.5.3-.2h.1L112 80l-7.2-14.3c6.5-3.2 14.3-1.7 19.2 3.7s5.3 13.4 1.3 19.5l-2.8 4.2C105.2 119 96 149.5 96 180.6c0 51.9 25.6 100.6 68.4 130l41.1 28.2 34.5 23.8v-19.1l-42.2-35.2c-5.9-4.9-7.5-13.2-3.8-19.9l.1-.1.3-.6c.3-.5.7-1.3 1.2-2.3 1-2 2.6-5 4.4-8.6.5-.9.9-1.9 1.4-2.9C167.1 254.6 144 218 144 176s23.1-78.6 57.3-97.8c-.5-1-1-2-1.4-2.9-1.8-3.7-3.3-6.6-4.4-8.6-.5-1-.9-1.8-1.2-2.3l-.3-.6-.1-.1c-3.6-6.7-2-15 3.8-19.9l48-40zm-25.6 119.2c-17 11.5-28.2 31-28.2 53.1s11.2 41.6 28.2 53.1C227 210.2 232 190.9 232 176s-5-34.2-11.8-53.1m71.5 106.2c17-11.5 28.2-31 28.2-53.1s-11.2-41.6-28.2-53.1C285 141.8 280 161.1 280 176s5 34.2 11.8 53.1z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/kip-sign.svg����������������������0000664�0000000�0000000�00000001130�14753064456�0027507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M340.8 88.3c13.4-11.5 15-31.7 3.5-45.1s-31.7-15-45.1-3.5L128 186.4V64c0-17.7-14.3-32-32-32S64 46.3 64 64v160H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v160c0 17.7 14.3 32 32 32s32-14.3 32-32V325.6l171.2 146.7c13.4 11.5 33.6 9.9 45.1-3.5s9.9-33.6-3.5-45.1L182.5 288H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H182.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/kit-medical.svg�������������������0000664�0000000�0000000�00000001164�14753064456�0030160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h32V32zm64 0v448h320V32zm384 448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64h-32v448zM256 176c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-48h-48c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16h48z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/kitchen-set.svg�������������������0000664�0000000�0000000�00000002012�14753064456�0030204�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M240 144a96 96 0 1 0-192 0 96 96 0 1 0 192 0m44.4 32c-14.5 64.1-71.9 112-140.4 112C64.5 288 0 223.5 0 144S64.5 0 144 0c68.5 0 125.9 47.9 140.4 112h71.8c8.8-9.8 21.6-16 35.8-16h104c26.5 0 48 21.5 48 48s-21.5 48-48 48H392c-14.2 0-27-6.2-35.8-16zM144 80a64 64 0 1 1 0 128 64 64 0 1 1 0-128m256 160c13.3 0 24 10.7 24 24v8h96c13.3 0 24 10.7 24 24s-10.7 24-24 24H280c-13.3 0-24-10.7-24-24s10.7-24 24-24h96v-8c0-13.3 10.7-24 24-24M288 464V352h224v112c0 26.5-21.5 48-48 48H336c-26.5 0-48-21.5-48-48M48 320h128c26.5 0 48 21.5 48 48s-21.5 48-48 48h-16c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32v-80c0-8.8 7.2-16 16-16m128 64c8.8 0 16-7.2 16-16s-7.2-16-16-16h-16v32zM24 464h176c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24s10.7-24 24-24"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/kiwi-bird.svg���������������������0000664�0000000�0000000�00000001346�14753064456�0027660�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M291.2 388.4c31.2-18.8 64.7-36.4 101.1-36.4H448c4.6 0 9.1-.2 13.6-.7l85.3 121.9c4 5.7 11.3 8.2 17.9 6.1S576 471 576 464V224c0-70.7-57.3-128-128-128h-55.7c-36.4 0-69.9-17.6-101.1-36.4C262.3 42.1 228.3 32 192 32 86 32 0 118 0 224c0 71.1 38.6 133.1 96 166.3V456c0 13.3 10.7 24 24 24s24-10.7 24-24v-46c15.3 3.9 31.4 6 48 6 5.4 0 10.7-.2 16-.7V456c0 13.3 10.7 24 24 24s24-10.7 24-24v-50.9c12.4-4.4 24.2-10 35.2-16.7M448 200a24 24 0 1 1 0 48 24 24 0 1 1 0-48"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/l.svg�����������������������������0000664�0000000�0000000�00000000632�14753064456�0026227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32c17.7 0 32 14.3 32 32v352h192c17.7 0 32 14.3 32 32s-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/land-mine-on.svg������������������0000664�0000000�0000000�00000001501�14753064456�0030246�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M344 24v144c0 13.3-10.7 24-24 24s-24-10.7-24-24V24c0-13.3 10.7-24 24-24s24 10.7 24 24M192 320c0-17.7 14.3-32 32-32h192c17.7 0 32 14.3 32 32v32H192zm-77.3 90.5c8.1-16.3 24.8-26.5 42.9-26.5h324.7c18.2 0 34.8 10.3 42.9 26.5l27.6 55.2C563.5 487 548 512 524.2 512H115.8c-23.8 0-39.3-25-28.6-46.3l27.6-55.2zM36.3 138.3c7.5-10.9 22.5-13.6 33.4-6.1l104 72c10.9 7.5 13.6 22.5 6.1 33.4s-22.5 13.6-33.4 6.1l-104-72c-10.9-7.5-13.6-22.5-6.1-33.4m534.1-6.1c10.9-7.5 25.8-4.8 33.4 6.1s4.8 25.8-6.1 33.4l-104 72c-10.9 7.5-25.8 4.8-33.4-6.1s-4.8-25.8 6.1-33.4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/landmark-dome.svg�����������������0000664�0000000�0000000�00000001275�14753064456�0030513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M248 0h16c13.3 0 24 10.7 24 24v10.7c80.4 13.4 143.9 76.9 157.3 157.3h2.7c17.7 0 32 14.3 32 32s-14.3 32-32 32H64c-17.7 0-32-14.3-32-32s14.3-32 32-32h2.7C80.1 111.6 143.6 48.1 224 34.7V24c0-13.3 10.7-24 24-24M64 288h64v128h40V288h64v128h48V288h64v128h40V288h64v132.3c.6.3 1.2.7 1.8 1.1l48 32c11.7 7.8 17 22.4 12.9 35.9S494.1 512 480 512H32c-14.1 0-26.5-9.2-30.6-22.7s1.1-28.1 12.9-35.9l48-32c.6-.4 1.2-.7 1.8-1.1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/landmark-flag.svg�����������������0000664�0000000�0000000�00000001222�14753064456�0030470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M272 0h80c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16h-80v32h192c17.7 0 32 14.3 32 32s-14.3 32-32 32H48c-17.7 0-32-14.3-32-32s14.3-32 32-32h192V16c0-8.8 7.2-16 16-16zM64 224h64v192h40V224h64v192h48V224h64v192h40V224h64v196.3c.6.3 1.2.7 1.8 1.1l48 32c11.7 7.8 17 22.4 12.9 35.9S494.1 512 480 512H32c-14.1 0-26.5-9.2-30.6-22.7s1.1-28.1 12.9-35.9l48-32c.6-.4 1.2-.7 1.8-1.1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/landmark.svg����������������������0000664�0000000�0000000�00000001250�14753064456�0027562�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M240.1 4.2c9.8-5.6 21.9-5.6 31.8 0l171.8 98.1 4.3 1.7v.9l47.9 27.4c12.6 7.2 18.8 22 15.1 36s-16.4 23.8-30.9 23.8L32 192c-14.5 0-27.2-9.8-30.9-23.8s2.5-28.8 15.1-36L64 104.9v-.9l4.4-1.6zM64 224h64v192h40V224h64v192h48V224h64v192h40V224h64v196.3c.6.3 1.2.7 1.8 1.1l48 32c11.7 7.8 17 22.4 12.9 35.9S494.1 512 480 512H32c-14.1 0-26.5-9.2-30.6-22.7s1.1-28.1 12.9-35.9l48-32c.6-.4 1.2-.7 1.8-1.1z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/language.svg����������������������0000664�0000000�0000000�00000002113�14753064456�0027553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 128c0-35.3 28.7-64 64-64h512c35.3 0 64 28.7 64 64v256c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm320 0v256h256V128zm-141.7 47.9c-3.2-7.2-10.4-11.9-18.3-11.9s-15.1 4.7-18.3 11.9l-64 144c-4.5 10.1.1 21.9 10.2 26.4s21.9-.1 26.4-10.2l8.9-20.1h73.6l8.9 20.1c4.5 10.1 16.3 14.6 26.4 10.2s14.6-16.3 10.2-26.4zM160 233.2l19 42.8h-38zM448 164c11 0 20 9 20 20v4h60c11 0 20 9 20 20s-9 20-20 20h-2l-1.6 4.5c-8.9 24.4-22.4 46.6-39.6 65.4.9.6 1.8 1.1 2.7 1.6l18.9 11.3c9.5 5.7 12.5 18 6.9 27.4s-18 12.5-27.4 6.9L467 333.8c-4.5-2.7-8.8-5.5-13.1-8.5-10.6 7.5-21.9 14-34 19.4l-3.6 1.6c-10.1 4.5-21.9-.1-26.4-10.2s.1-21.9 10.2-26.4l3.6-1.6c6.4-2.9 12.6-6.1 18.5-9.8L410 286.1c-7.8-7.8-7.8-20.5 0-28.3s20.5-7.8 28.3 0l14.6 14.6.5.5c12.4-13.1 22.5-28.3 29.8-45l-35.2.1h-72c-11 0-20-9-20-20s9-20 20-20h52v-4c0-11 9-20 20-20"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/laptop-code.svg�������������������0000664�0000000�0000000�00000001400�14753064456�0030175�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 96c0-35.3 28.7-64 64-64h384c35.3 0 64 28.7 64 64v256h-64V96H128v256H64zM0 403.2C0 392.6 8.6 384 19.2 384h601.6c10.6 0 19.2 8.6 19.2 19.2 0 42.4-34.4 76.8-76.8 76.8H76.8C34.4 480 0 445.6 0 403.2M281 209l-31 31 31 31c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-48-48c-9.4-9.4-9.4-24.6 0-33.9l48-48c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9zm112-34 48 48c9.4 9.4 9.4 24.6 0 33.9l-48 48c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l31-31-31-31c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/laptop-file.svg�������������������0000664�0000000�0000000�00000001051�14753064456�0030204�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 0C92.7 0 64 28.7 64 64v224H19.2C8.6 288 0 296.6 0 307.2 0 349.6 34.4 384 76.8 384H320v-96H128V64h320v32h64V64c0-35.3-28.7-64-64-64zm384 128H400c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h192c26.5 0 48-21.5 48-48V256h-96c-17.7 0-32-14.3-32-32zm32 0v96h96z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/laptop-medical.svg����������������0000664�0000000�0000000�00000001260�14753064456�0030665�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 96c0-35.3 28.7-64 64-64h384c35.3 0 64 28.7 64 64v256h-64V96H128v256H64zM0 403.2C0 392.6 8.6 384 19.2 384h601.6c10.6 0 19.2 8.6 19.2 19.2 0 42.4-34.4 76.8-76.8 76.8H76.8C34.4 480 0 445.6 0 403.2M288 160c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-48h-48c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16h48z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/laptop.svg������������������������0000664�0000000�0000000�00000000744�14753064456�0027277�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 32c-35.3 0-64 28.7-64 64v256h64V96h384v256h64V96c0-35.3-28.7-64-64-64zM19.2 384C8.6 384 0 392.6 0 403.2 0 445.6 34.4 480 76.8 480h486.4c42.4 0 76.8-34.4 76.8-76.8 0-10.6-8.6-19.2-19.2-19.2z"/></svg>����������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/lari-sign.svg���������������������0000664�0000000�0000000�00000001505�14753064456�0027661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M144 32c17.7 0 32 14.3 32 32v32.7c5.3-.4 10.6-.7 16-.7s10.7.2 16 .7V64c0-17.7 14.3-32 32-32s32 14.3 32 32v49.4c54.9 25.2 95.8 75.5 108.2 136.2 3.5 17.3-7.7 34.2-25 37.7s-34.2-7.7-37.7-25c-6.1-29.9-22.5-55.9-45.4-74.3v67.9c0 17.7-14.3 32-32 32s-32-14.3-32-32v-95c-5.2-.7-10.6-1-16-1s-10.8.3-16 1v95c0 17.7-14.3 32-32 32s-32-14.3-32-32V188C82.7 211.5 64 247.6 64 288c0 70.7 57.3 128 128 128h160c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h16.9C18.5 382 0 337.2 0 288c0-77.5 45.9-144.3 112-174.6V64c0-17.7 14.3-32 32-32"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/layer-group.svg�������������������0000664�0000000�0000000�00000001573�14753064456�0030247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M264.5 5.2c14.9-6.9 32.1-6.9 47 0l218.6 101c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0l-218.6-101c-8.5-4-13.9-12.5-13.9-21.8s5.4-17.9 13.9-21.8zm212.4 204.4 53.2 24.6c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0l-218.6-101c-8.5-4-13.9-12.5-13.9-21.8s5.4-17.9 13.9-21.8l53.2-24.6 152 70.2a88.1 88.1 0 0 0 73.8 0zm-152 198.2 152-70.2 53.2 24.6c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0l-218.6-101c-8.5-4-13.9-12.5-13.9-21.8s5.4-17.9 13.9-21.8l53.2-24.6 152 70.2a88.1 88.1 0 0 0 73.8 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/leaf.svg��������������������������0000664�0000000�0000000�00000001260�14753064456�0026701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M272 96c-78.6 0-145.1 51.5-167.7 122.5 33.6-17 71.5-26.5 111.7-26.5h88c8.8 0 16 7.2 16 16s-7.2 16-16 16h-88c-16.6 0-32.7 1.9-48.3 5.4-25.9 5.9-49.9 16.4-71.4 30.7C38.3 298.8 0 364.9 0 440v16c0 13.3 10.7 24 24 24s24-10.7 24-24v-16c0-48.7 20.7-92.5 53.8-123.2C121.6 392.3 190.3 448 272 448h1c132.1-.7 239-130.9 239-291.4 0-42.6-7.5-83.1-21.1-119.6-2.6-6.9-12.7-6.6-16.2-.1C455.9 72.1 418.7 96 376 96z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/left-long.svg���������������������0000664�0000000�0000000�00000000766�14753064456�0027673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M177.5 414c-8.8 3.8-19 2-26-4.6l-144-136C2.7 268.9 0 262.6 0 256s2.7-12.9 7.5-17.4l144-136c7-6.6 17.2-8.4 26-4.6s14.5 12.5 14.5 22v72h288c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H192v72c0 9.6-5.7 18.2-14.5 22"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/left-right.svg��������������������0000664�0000000�0000000�00000001130�14753064456�0030033�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M504.3 273.6c4.9-4.5 7.7-10.9 7.7-17.6s-2.8-13-7.7-17.6l-112-104c-7-6.5-17.2-8.2-25.9-4.4S352 142.5 352 152v56H160v-56c0-9.5-5.7-18.2-14.4-22s-18.9-2.1-25.9 4.4l-112 104C2.8 243 0 249.3 0 256s2.8 13 7.7 17.6l112 104c7 6.5 17.2 8.2 25.9 4.4s14.4-12.5 14.4-22v-56h192v56c0 9.5 5.7 18.2 14.4 22s18.9 2.1 25.9-4.4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/lemon.svg�������������������������0000664�0000000�0000000�00000001416�14753064456�0027107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 96c0-35.3-28.7-64-64-64-6.6 0-13 1-19 2.9-22.5 7-48.1 14.9-71 9-75.2-19.1-156.4 11-213.7 68.3S-7.2 250.8 11.9 326c5.8 22.9-2 48.4-9 71C1 403 0 409.4 0 416c0 35.3 28.7 64 64 64 6.6 0 13-1 19.1-2.9 22.5-7 48.1-14.9 71-9 75.2 19.1 156.4-11 213.7-68.3s87.5-138.5 68.3-213.7c-5.8-22.9 2-48.4 9-71 1.9-6 2.9-12.4 2.9-19.1m-235.5 31.4c-54.6 16-101.1 62.5-117.1 117.1-2.5 8.5-11.4 13.3-19.9 10.9S62.2 244 64.6 235.5c19.1-65.1 73.7-119.8 138.9-138.9 8.5-2.5 17.4 2.4 19.9 10.9s-2.4 17.4-10.9 19.9"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/less-than-equal.svg���������������0000664�0000000�0000000�00000001045�14753064456�0030776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M395.9 93.7c16.4-6.6 24.4-25.2 17.8-41.6s-25.2-24.4-41.6-17.8l-320 128C40 167.1 32 178.9 32 192s8 24.9 20.1 29.7l320 128c16.4 6.6 35-1.4 41.6-17.8s-1.4-35-17.8-41.6L150.2 192zM32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32h384c17.7 0 32-14.3 32-32s-14.3-32-32-32z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/less-than.svg���������������������0000664�0000000�0000000�00000000745�14753064456�0027677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M380.6 81.7c7.9 15.8 1.5 35-14.3 42.9L103.6 256l262.7 131.4c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3l-320-160C6.8 279.2 0 268.1 0 256s6.8-23.2 17.7-28.6l320-160c15.8-7.9 35-1.5 42.9 14.3"/></svg>���������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/life-ring.svg���������������������0000664�0000000�0000000�00000002235�14753064456�0027651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M367.2 412.5C335.9 434.9 297.5 448 256 448s-79.9-13.1-111.2-35.5l58-58c15.8 8.6 34 13.5 53.3 13.5s37.4-4.9 53.3-13.5l58 58zm90.7.8c33.8-43.4 54-98 54-157.3s-20.2-113.9-54-157.3c9-12.5 7.9-30.1-3.4-41.3S425.8 45 413.3 54C369.9 20.2 315.3 0 256 0S142.1 20.2 98.7 54c-12.5-9-30.1-7.9-41.3 3.4S45 86.2 54 98.7C20.2 142.1 0 196.7 0 256s20.2 113.9 54 157.3c-9 12.5-7.9 30.1 3.4 41.3S86.2 467 98.7 458c43.4 33.8 98 54 157.3 54s113.9-20.2 157.3-54c12.5 9 30.1 7.9 41.3-3.4s12.4-28.8 3.4-41.3zm-45.5-46.1-58-58c8.6-15.8 13.5-34 13.5-53.3s-4.9-37.4-13.5-53.3l58-58C434.9 176.1 448 214.5 448 256s-13.1 79.9-35.5 111.2zM367.2 99.5l-58 58c-15.8-8.6-34-13.5-53.3-13.5s-37.4 4.9-53.3 13.5l-58-58C176.1 77.1 214.5 64 256 64s79.9 13.1 111.2 35.5M157.5 309.3l-58 58C77.1 335.9 64 297.5 64 256s13.1-79.9 35.5-111.2l58 58c-8.6 15.8-13.5 34-13.5 53.3s4.9 37.4 13.5 53.3zM208 256a48 48 0 1 1 96 0 48 48 0 1 1-96 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/lightbulb.svg���������������������0000664�0000000�0000000�00000001264�14753064456�0027752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M272 384c9.6-31.9 29.5-59.1 49.2-86.2 5.2-7.1 10.4-14.2 15.4-21.4 19.8-28.5 31.4-63 31.4-100.3C368 78.8 289.2 0 192 0S16 78.8 16 176c0 37.3 11.6 71.9 31.4 100.3 5 7.2 10.2 14.3 15.4 21.4 19.8 27.1 39.7 54.4 49.2 86.2h160zm-80 128c44.2 0 80-35.8 80-80v-16H112v16c0 44.2 35.8 80 80 80m-80-336c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-61.9 50.1-112 112-112 8.8 0 16 7.2 16 16s-7.2 16-16 16c-44.2 0-80 35.8-80 80"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/lines-leaning.svg�����������������0000664�0000000�0000000�00000001165�14753064456�0030523�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M190.4 74.1c5.6-16.8-3.5-34.9-20.2-40.5s-34.9 3.5-40.5 20.2l-128 384c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2zm70.9-41.7c-17.4-2.9-33.9 8.9-36.8 26.3l-64 384c-2.9 17.4 8.9 33.9 26.3 36.8s33.9-8.9 36.8-26.3l64-384c2.9-17.4-8.9-33.9-26.3-36.8M352 32c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32s32-14.3 32-32V64c0-17.7-14.3-32-32-32"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/link-slash.svg��������������������0000664�0000000�0000000�00000002016�14753064456�0030037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2s-6.3 25.5 4.1 33.7l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L489.3 358.2l90.5-90.5c56.5-56.5 56.5-148 0-204.5-50-50-128.8-56.5-186.3-15.4l-1.6 1.1c-14.4 10.3-17.7 30.3-7.4 44.6s30.3 17.7 44.6 7.4l1.6-1.1c32.1-22.9 76-19.3 103.8 8.6 31.5 31.5 31.5 82.5 0 114l-96 96-31.9-25c24.3-53.8 13.5-118.3-29.6-161.4-52.2-52.3-134.5-56.2-191.3-11.7zM239 162c30.1-14.9 67.7-9.9 92.8 15.3 20 20 27.5 48.3 21.7 74.5zm167.6 254.4L220.9 270c-2.1 39.8 12.2 80.1 42.2 110 38.9 38.9 94.4 51 143.6 36.3zm-290-228.5-56.4 56.4c-56.5 56.5-56.5 148 0 204.5 50 50 128.8 56.5 186.3 15.4l1.6-1.1c14.4-10.3 17.7-30.3 7.4-44.6s-30.3-17.7-44.6-7.4l-1.6 1.1c-32.1 22.9-76 19.3-103.8-8.6C74 372 74 321 105.5 289.5l61.8-61.8-50.6-39.9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/link.svg��������������������������0000664�0000000�0000000�00000002023�14753064456�0026725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M579.8 267.7c56.5-56.5 56.5-148 0-204.5-50-50-128.8-56.5-186.3-15.4l-1.6 1.1c-14.4 10.3-17.7 30.3-7.4 44.6s30.3 17.7 44.6 7.4l1.6-1.1c32.1-22.9 76-19.3 103.8 8.6 31.5 31.5 31.5 82.5 0 114L422.3 334.8c-31.5 31.5-82.5 31.5-114 0-27.9-27.9-31.5-71.8-8.6-103.8l1.1-1.6c10.3-14.4 6.9-34.4-7.4-44.6s-34.4-6.9-44.6 7.4l-1.1 1.6C206.5 251.2 213 330 263 380c56.5 56.5 148 56.5 204.5 0zM60.2 244.3c-56.5 56.5-56.5 148 0 204.5 50 50 128.8 56.5 186.3 15.4l1.6-1.1c14.4-10.3 17.7-30.3 7.4-44.6s-30.3-17.7-44.6-7.4l-1.6 1.1c-32.1 22.9-76 19.3-103.8-8.6C74 372 74 321 105.5 289.5l112.2-112.3c31.5-31.5 82.5-31.5 114 0 27.9 27.9 31.5 71.8 8.6 103.9l-1.1 1.6c-10.3 14.4-6.9 34.4 7.4 44.6s34.4 6.9 44.6-7.4l1.1-1.6C433.5 260.8 427 182 377 132c-56.5-56.5-148-56.5-204.5 0z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/lira-sign.svg���������������������0000664�0000000�0000000�00000001463�14753064456�0027664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M112 160.4c0-35.5 28.8-64.4 64.4-64.4 6.9 0 13.8 1.1 20.4 3.3l81.2 27.1c16.8 5.6 34.9-3.5 40.5-20.2s-3.5-34.9-20.2-40.5L217 38.6c-13.1-4.4-26.8-6.6-40.6-6.6C105.5 32 48 89.5 48 160.4V192H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h16v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h14c-2.2 10.5-6.1 20.6-11.7 29.9L4.6 431.5c-5.9 9.9-6.1 22.2-.4 32.2S20.5 480 32 480h256c17.7 0 32-14.3 32-32s-14.3-32-32-32H88.5l.7-1.1c11.6-19.3 18.9-40.7 21.6-62.9H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H112v-32h112c17.7 0 32-14.3 32-32s-14.3-32-32-32H112z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/list-check.svg��������������������0000664�0000000�0000000�00000001704�14753064456�0030023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M152.1 38.2c9.9 8.9 10.7 24 1.8 33.9l-72 80c-4.4 4.9-10.6 7.8-17.2 7.9s-12.9-2.4-17.6-7L7 113c-9.3-9.4-9.3-24.6 0-34s24.6-9.4 33.9 0L63 101.1l55.1-61.2c8.9-9.9 24-10.7 33.9-1.8zm0 160c9.9 8.9 10.7 24 1.8 33.9l-72 80c-4.4 4.9-10.6 7.8-17.2 7.9s-12.9-2.4-17.6-7L7 273c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L63 261.2l55.1-61.2c8.9-9.9 24-10.7 33.9-1.8zM224 96c0-17.7 14.3-32 32-32h224c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32m0 160c0-17.7 14.3-32 32-32h224c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32m-64 160c0-17.7 14.3-32 32-32h288c17.7 0 32 14.3 32 32s-14.3 32-32 32H192c-17.7 0-32-14.3-32-32M48 368a48 48 0 1 1 0 96 48 48 0 1 1 0-96"/></svg>������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/list-ol.svg�����������������������0000664�0000000�0000000�00000001752�14753064456�0027363�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M24 56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v120h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H40c-13.3 0-24-10.7-24-24s10.7-24 24-24h16V80h-8c-13.3 0-24-10.7-24-24m62.7 285.2c-6.5-7.4-18.3-6.9-24 1.2l-11.2 15.5c-7.7 10.8-22.7 13.3-33.5 5.6S4.7 340.8 12.4 330l11.1-15.6c23.7-33.2 72.3-35.6 99.2-4.9 21.3 24.4 20.8 60.9-1.1 84.7L86.8 432H120c13.3 0 24 10.7 24 24s-10.7 24-24 24H32c-9.5 0-18.2-5.6-22-14.4s-2.1-18.9 4.3-25.9l72-78c5.3-5.8 5.4-14.6.3-20.5zM224 64h256c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32m0 160h256c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32m0 160h256c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32"/></svg>����������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/list-ul.svg�����������������������0000664�0000000�0000000�00000001227�14753064456�0027366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 144a48 48 0 1 0 0-96 48 48 0 1 0 0 96m128-80c-17.7 0-32 14.3-32 32s14.3 32 32 32h288c17.7 0 32-14.3 32-32s-14.3-32-32-32zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32h288c17.7 0 32-14.3 32-32s-14.3-32-32-32zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32h288c17.7 0 32-14.3 32-32s-14.3-32-32-32zM64 464a48 48 0 1 0 0-96 48 48 0 1 0 0 96m48-208a48 48 0 1 0-96 0 48 48 0 1 0 96 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/list.svg��������������������������0000664�0000000�0000000�00000001521�14753064456�0026745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M40 48c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V72c0-13.3-10.7-24-24-24zm152 16c-17.7 0-32 14.3-32 32s14.3 32 32 32h288c17.7 0 32-14.3 32-32s-14.3-32-32-32zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32h288c17.7 0 32-14.3 32-32s-14.3-32-32-32zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32h288c17.7 0 32-14.3 32-32s-14.3-32-32-32zM16 232v48c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24H40c-13.3 0-24 10.7-24 24m24 136c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/litecoin-sign.svg�����������������0000664�0000000�0000000�00000001037�14753064456�0030540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 64c0-17.7-14.3-32-32-32S64 46.3 64 64v149.6l-40.8 11.6c-17 4.9-26.8 22.6-22 39.6s22.6 26.8 39.6 22l23.2-6.7V448c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32s-14.3-32-32-32H128V261.9l136.8-39.1c17-4.9 26.8-22.6 22-39.6s-22.6-26.8-39.6-22L128 195.3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/location-arrow.svg����������������0000664�0000000�0000000�00000000704�14753064456�0030734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M429.6 92.1c4.9-11.9 2.1-25.6-7-34.7s-22.8-11.9-34.7-7l-352 144c-14.2 5.8-22.2 20.8-19.3 35.8S32.7 256 48 256h176v176c0 15.3 10.8 28.4 25.8 31.4s30-5.1 35.8-19.3z"/></svg>������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/location-crosshairs.svg�����������0000664�0000000�0000000�00000001277�14753064456�0031770�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 0c17.7 0 32 14.3 32 32v34.7c80.4 13.4 143.9 76.9 157.3 157.3H480c17.7 0 32 14.3 32 32s-14.3 32-32 32h-34.7c-13.4 80.4-76.9 143.9-157.3 157.3V480c0 17.7-14.3 32-32 32s-32-14.3-32-32v-34.7C143.6 431.9 80.1 368.4 66.7 288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h34.7C80.1 143.6 143.6 80.1 224 66.7V32c0-17.7 14.3-32 32-32M128 256a128 128 0 1 0 256 0 128 128 0 1 0-256 0m128-80a80 80 0 1 1 0 160 80 80 0 1 1 0-160"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/location-dot.svg������������������0000664�0000000�0000000�00000000710�14753064456�0030365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M215.7 499.2C267 435 384 279.4 384 192 384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2 12.3 15.3 35.1 15.3 47.4 0M192 128a64 64 0 1 1 0 128 64 64 0 1 1 0-128"/></svg>��������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/location-pin-lock.svg�������������0000664�0000000�0000000�00000001343�14753064456�0031316�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M215.7 499.2c11-13.8 25.1-31.7 40.3-52.3v-94.8c0-23.7 12.9-44.4 32-55.4v-24.6c0-55.6 40.5-101.7 93.6-110.5C367 70 287.7 0 192 0 86 0 0 86 0 192c0 87.4 117 243 168.3 307.2 12.3 15.3 35.1 15.3 47.4 0M192 128a64 64 0 1 1 0 128 64 64 0 1 1 0-128m208 112c17.7 0 32 14.3 32 32v48h-64v-48c0-17.7 14.3-32 32-32m-80 32v48c-17.7 0-32 14.3-32 32v128c0 17.7 14.3 32 32 32h160c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32v-48c0-44.2-35.8-80-80-80s-80 35.8-80 80"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/location-pin.svg������������������0000664�0000000�0000000�00000000625�14753064456�0030372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 192c0 87.4-117 243-168.3 307.2-12.3 15.3-35.1 15.3-47.4 0C117 435 0 279.4 0 192 0 86 86 0 192 0s192 86 192 192"/></svg>�����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/lock-open.svg���������������������0000664�0000000�0000000�00000001013�14753064456�0027655�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M352 144c0-44.2 35.8-80 80-80s80 35.8 80 80v48c0 17.7 14.3 32 32 32s32-14.3 32-32v-48C576 64.5 511.5 0 432 0S288 64.5 288 144v48H64c-35.3 0-64 28.7-64 64v192c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V256c0-35.3-28.7-64-64-64h-32z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/lock.svg��������������������������0000664�0000000�0000000�00000000762�14753064456�0026730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M144 144v48h160v-48c0-44.2-35.8-80-80-80s-80 35.8-80 80m-64 48v-48C80 64.5 144.5 0 224 0s144 64.5 144 144v48h16c35.3 0 64 28.7 64 64v192c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V256c0-35.3 28.7-64 64-64z"/></svg>��������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/locust.svg������������������������0000664�0000000�0000000�00000002004�14753064456�0027300�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M312 32c-13.3 0-24 10.7-24 24s10.7 24 24 24h16c98.7 0 180.6 71.4 197 165.4-9-3.5-18.8-5.4-29-5.4h-64.2L390 142.5c-3.4-7.9-10.8-13.4-19.3-14.4s-17 2.7-22.1 9.6l-40.9 55.5-21.7-50.7c-3.3-7.8-10.5-13.2-18.9-14.3s-16.7 2.3-22 8.9l-240 304c-8.2 10.4-6.4 25.5 4 33.7s25.5 6.4 33.7-4l79.4-100.5 43 16.4-40.5 55c-7.9 10.7-5.6 25.7 5.1 33.6s25.7 5.6 33.6-5.1l51.7-70.2h74.5l-29.3 42.3c-7.5 10.9-4.8 25.8 6.1 33.4s25.8 4.8 33.4-6.1L348 400h80.4l38.8 67.9c6.6 11.5 21.2 15.5 32.7 8.9s15.5-21.2 8.9-32.7L483.6 400H496c44.1 0 79.8-35.7 80-79.7V280c0-137-111-248-248-248zm50.5 168 17.1 40H333zm-87.7 38.1-1.4 1.9h-48.2l32.7-41.5 16.9 39.5zm-186 1.9C57.4 240 32 265.4 32 296.8c0 15.5 6.3 30 16.9 40.4l77.8-97.2zM496 288a16 16 0 1 1 0 32 16 16 0 1 1 0-32"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/lungs-virus.svg�������������������0000664�0000000�0000000�00000004030�14753064456�0030266�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 0c17.7 0 32 14.3 32 32v124.2c-8.5-7.6-19.7-12.2-32-12.2s-23.5 4.6-32 12.2V32c0-17.7 14.3-32 32-32m124.5 195.5c-16.4-16.4-41.8-18.5-60.5-6.1v-24.1C384 127 415 96 453.3 96c21.7 0 42.8 10.2 55.8 28.8 15.4 22.1 44.3 65.4 71 116.9 26.5 50.9 52.4 112.5 59.6 170.3.2 1.3.2 2.6.2 4v7c0 49.1-39.8 89-89 89q-10.95 0-21.6-2.7l-72.7-18.2c-20.9-5.2-38.7-17.1-51.5-32.9 14 1.5 28.5-3 39.2-13.8l-22.6-22.6 22.6 22.6c18.7-18.7 18.7-49.1 0-67.9-1.1-1.1-1.4-2-1.5-2.5-.1-.8-.1-1.8.4-2.9s1.2-1.9 1.8-2.3c.5-.3 1.3-.8 2.9-.8 26.5 0 48-21.5 48-48s-21.5-48-48-48c-1.6 0-2.4-.4-2.9-.8-.6-.4-1.3-1.2-1.8-2.3s-.5-2.2-.4-2.9c.1-.6.4-1.4 1.5-2.5 18.7-18.7 18.7-49.1 0-67.9zm-22.7 226.3c-6.2 6.2-16.4 6.2-22.6 0C375.9 398.5 336 415 336 448c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-33-39.9-49.5-63.2-26.2-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6C241.5 375.9 225 336 192 336c-8.8 0-16-7.2-16-16s7.2-16 16-16c33 0 49.5-39.9 26.2-63.2-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0C264.1 241.5 304 225 304 192c0-8.8 7.2-16 16-16s16 7.2 16 16c0 33 39.9 49.5 63.2 26.2 6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6C398.5 264.1 415 304 448 304c8.8 0 16 7.2 16 16s-7.2 16-16 16c-33 0-49.5 39.9-26.2 63.2 6.2 6.2 6.2 16.4 0 22.6m-238.5 69.4-72.7 18.2q-10.65 2.7-21.6 2.7c-49.1 0-89-39.8-89-89v-7c0-1.3.1-2.7.2-4 7.2-57.9 33.1-119.4 59.6-170.3 26.8-51.5 55.6-94.8 71-116.9 13-18.6 34-28.8 55.8-28.8C225 96 256 127 256 165.3v24.1c-18.6-12.4-44-10.3-60.5 6.1-18.7 18.7-18.7 49.1 0 67.9 1.1 1.1 1.4 2 1.5 2.5.1.8.1 1.8-.4 2.9s-1.2 1.9-1.8 2.3c-.5.3-1.3.8-2.9.8-26.5 0-48 21.5-48 48s21.5 48 48 48c1.6 0 2.4.4 2.9.8.6.4 1.3 1.2 1.8 2.3s.5 2.2.4 2.9c-.1.6-.4 1.4-1.5 2.5-18.7 18.7-18.7 49.1 0 67.9 10.7 10.7 25.3 15.3 39.2 13.8-12.8 15.9-30.6 27.7-51.5 32.9zM296 320a24 24 0 1 0 0-48 24 24 0 1 0 0 48m72 32a16 16 0 1 0-32 0 16 16 0 1 0 32 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/lungs.svg�������������������������0000664�0000000�0000000�00000002067�14753064456�0027130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 0c17.7 0 32 14.3 32 32v132.1c0 16.4 8.4 31.7 22.2 40.5l9.8 6.2v-45.5C384 127 415 96 453.3 96c21.7 0 42.8 10.2 55.8 28.8 15.4 22.1 44.3 65.4 71 116.9 26.5 50.9 52.4 112.5 59.6 170.3.2 1.3.2 2.6.2 4v7c0 49.1-39.8 89-89 89q-10.95 0-21.6-2.7l-72.7-18.2C414 480.5 384 442.1 384 398v-73l90.5 57.6c7.5 4.7 17.3 2.5 22.1-4.9s2.5-17.3-4.9-22.1L384 287.1v-.4l-44.1-28.1c-7.3-4.6-13.9-10.1-19.9-16.1-5.9 6-12.6 11.5-19.9 16.1L256 286.7 161.2 347l-13.5 8.6h-.1c-7.4 4.8-9.6 14.6-4.8 22.1 4.7 7.5 14.6 9.7 22.1 4.9l91.1-58V398c0 44.1-30 82.5-72.7 93.1l-72.7 18.2Q99.95 512 89 512c-49.1 0-89-39.8-89-89v-7c0-1.3.1-2.7.2-4 7.2-57.9 33.1-119.4 59.6-170.3 26.8-51.5 55.6-94.8 71-116.9 13-18.6 34-28.8 55.8-28.8 38.4 0 69.4 31 69.4 69.3v45.5l9.8-6.2c13.8-8.8 22.2-24.1 22.2-40.5V32c0-17.7 14.3-32 32-32"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/m.svg�����������������������������0000664�0000000�0000000�00000001077�14753064456�0026234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M22.7 33.4c13.5-4.1 28.1 1.1 35.9 12.9l165.4 248 165.4-248c7.8-11.7 22.4-17 35.9-12.9S448 49.9 448 64v384c0 17.7-14.3 32-32 32s-32-14.3-32-32V169.7L250.6 369.8c-5.9 8.9-15.9 14.2-26.6 14.2s-20.7-5.3-26.6-14.2L64 169.7V448c0 17.7-14.3 32-32 32S0 465.7 0 448V64c0-14.1 9.2-26.5 22.7-30.6"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/magnet.svg������������������������0000664�0000000�0000000�00000000773�14753064456�0027255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 160v96c0 123.7 100.3 224 224 224s224-100.3 224-224v-96H320v96c0 53-43 96-96 96s-96-43-96-96v-96zm0-32h128V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64zm320 0h128V64c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32z"/></svg>�����mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/magnifying-glass-arrow-right.svg��0000664�0000000�0000000�00000001221�14753064456�0033471�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M416 208c0 45.9-14.9 88.3-40 122.7l126.6 126.7c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208m-175-89c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l31 31-118.1.1c-13.3 0-24 10.7-24 24s10.7 24 24 24h118.1l-31 31c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l72-72c9.4-9.4 9.4-24.6 0-33.9z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/magnifying-glass-chart.svg��������0000664�0000000�0000000�00000001326�14753064456�0032333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M416 208c0 45.9-14.9 88.3-40 122.7l126.6 126.7c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208m-312 8v64c0 13.3 10.7 24 24 24s24-10.7 24-24v-64c0-13.3-10.7-24-24-24s-24 10.7-24 24m80-96v160c0 13.3 10.7 24 24 24s24-10.7 24-24V120c0-13.3-10.7-24-24-24s-24 10.7-24 24m80 64v96c0 13.3 10.7 24 24 24s24-10.7 24-24v-96c0-13.3-10.7-24-24-24s-24 10.7-24 24"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/magnifying-glass-dollar.svg�������0000664�0000000�0000000�00000002262�14753064456�0032507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M416 208c0 45.9-14.9 88.3-40 122.7l126.6 126.7c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208M228 104c0-11-9-20-20-20s-20 9-20 20v14c-7.6 1.7-15.2 4.4-22.2 8.5-13.9 8.3-25.9 22.8-25.8 43.9.1 20.3 12 33.1 24.7 40.7 11 6.6 24.7 10.8 35.6 14l1.7.5c12.6 3.8 21.8 6.8 28 10.7 5.1 3.2 5.8 5.4 5.9 8.2.1 5-1.8 8-5.9 10.5-5 3.1-12.9 5-21.4 4.7-11.1-.4-21.5-3.9-35.1-8.5q-3.45-1.2-7.2-2.4c-10.5-3.5-21.8 2.2-25.3 12.6s2.2 21.8 12.6 25.3c1.9.6 4 1.3 6.1 2.1 8.3 2.9 17.9 6.2 28.2 8.4v14.6c0 11 9 20 20 20s20-9 20-20V298c8-1.7 16-4.5 23.2-9 14.3-8.9 25.1-24.1 24.8-45-.3-20.3-11.7-33.4-24.6-41.6-11.5-7.2-25.9-11.6-37.1-15l-.7-.2c-12.8-3.9-21.9-6.7-28.3-10.5-5.2-3.1-5.3-4.9-5.3-6.7 0-3.7 1.4-6.5 6.2-9.3 5.4-3.2 13.6-5.1 21.5-5 9.6.1 20.2 2.2 31.2 5.2 10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-6.5-1.7-13.7-3.4-21.1-4.7v-13.9z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/magnifying-glass-location.svg�����0000664�0000000�0000000�00000001176�14753064456�0033045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M416 208c0 45.9-14.9 88.3-40 122.7l126.6 126.7c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208m-128-32c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 48.8 46.5 111.6 68.6 138.6 6 7.3 16.8 7.3 22.7 0 22.1-27 68.6-89.8 68.6-138.6zm-112 0a32 32 0 1 1 64 0 32 32 0 1 1-64 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/magnifying-glass-minus.svg��������0000664�0000000�0000000�00000001055�14753064456�0032364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M416 208c0 45.9-14.9 88.3-40 122.7l126.6 126.7c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208m-280-24c-13.3 0-24 10.7-24 24s10.7 24 24 24h144c13.3 0 24-10.7 24-24s-10.7-24-24-24z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/magnifying-glass-plus.svg���������0000664�0000000�0000000�00000001211�14753064456�0032206�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M416 208c0 45.9-14.9 88.3-40 122.7l126.6 126.7c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208m-232 88c0 13.3 10.7 24 24 24s24-10.7 24-24v-64h64c13.3 0 24-10.7 24-24s-10.7-24-24-24h-64v-64c0-13.3-10.7-24-24-24s-24 10.7-24 24v64h-64c-13.3 0-24 10.7-24 24s10.7 24 24 24h64z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/magnifying-glass.svg��������������0000664�0000000�0000000�00000001010�14753064456�0031222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M416 208c0 45.9-14.9 88.3-40 122.7l126.6 126.7c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208M208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/manat-sign.svg��������������������0000664�0000000�0000000�00000001104�14753064456�0030025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 32c-17.7 0-32 14.3-32 32v34.7C69.2 113.9 0 192.9 0 288v160c0 17.7 14.3 32 32 32s32-14.3 32-32V288c0-59.6 40.8-109.8 96-124v284c0 17.7 14.3 32 32 32s32-14.3 32-32V164c55.2 14.2 96 64.3 96 124v160c0 17.7 14.3 32 32 32s32-14.3 32-32V288c0-95.1-69.2-174.1-160-189.3V64c0-17.7-14.3-32-32-32"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/map-location-dot.svg��������������0000664�0000000�0000000�00000001520�14753064456�0031140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M408 120c0 54.6-73.1 151.9-105.2 192-7.7 9.6-22 9.6-29.6 0C241.1 271.9 168 174.6 168 120 168 53.7 221.7 0 288 0s120 53.7 120 120m8 80.4c3.5-6.9 6.7-13.8 9.6-20.6.5-1.2 1-2.5 1.5-3.7l116-46.4c15.8-6.3 32.9 5.3 32.9 22.3v270.8c0 9.8-6 18.6-15.1 22.3L416 503zm-278.4-62.1c2.4 14.1 7.2 28.3 12.8 41.5 2.9 6.8 6.1 13.7 9.6 20.6v251.4L32.9 502.7C17.1 509 0 497.4 0 480.4V209.6c0-9.8 6-18.6 15.1-22.3l122.6-49zM327.8 332c13.9-17.4 35.7-45.7 56.2-77v249.3l-192-54.9V255c20.5 31.3 42.3 59.6 56.2 77 20.5 25.6 59.1 25.6 79.6 0M288 152a40 40 0 1 0 0-80 40 40 0 1 0 0 80"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/map-location.svg������������������0000664�0000000�0000000�00000001447�14753064456�0030364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M302.8 312C334.9 271.9 408 174.6 408 120 408 53.7 354.3 0 288 0S168 53.7 168 120c0 54.6 73.1 151.9 105.2 192 7.7 9.6 22 9.6 29.6 0M416 503l144.9-58c9.1-3.6 15.1-12.5 15.1-22.3V152c0-17-17.1-28.6-32.9-22.3l-116 46.4c-.5 1.2-1 2.5-1.5 3.7-2.9 6.8-6.1 13.7-9.6 20.6zM15.1 187.3C6 191 0 199.8 0 209.6v270.8c0 17 17.1 28.6 32.9 22.3L160 451.8V200.4c-3.5-6.9-6.7-13.8-9.6-20.6-5.6-13.2-10.4-27.4-12.8-41.5L15 187.3zM384 255c-20.5 31.3-42.3 59.6-56.2 77-20.5 25.6-59.1 25.6-79.6 0-13.9-17.4-35.7-45.7-56.2-77v194.4l192 54.9z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/map-pin.svg�����������������������0000664�0000000�0000000�00000001011�14753064456�0027325�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M16 144a144 144 0 1 1 288 0 144 144 0 1 1-288 0m144-64c8.8 0 16-7.2 16-16s-7.2-16-16-16c-53 0-96 43-96 96 0 8.8 7.2 16 16 16s16-7.2 16-16c0-35.3 28.7-64 64-64m-32 400V317.1a178 178 0 0 0 64 0V480c0 17.7-14.3 32-32 32s-32-14.3-32-32"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/map.svg���������������������������0000664�0000000�0000000�00000000773�14753064456�0026557�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m384 476.1-192-54.9V35.9l192 54.9zm32-1.2V88.4l127.1-50.9c15.8-6.3 32.9 5.3 32.9 22.3v334.8c0 9.8-6 18.6-15.1 22.3L416 474.8zM15.1 95.1 160 37.2v386.5L32.9 474.5C17.1 480.8 0 469.2 0 452.2V117.4c0-9.8 6-18.6 15.1-22.3"/></svg>�����mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/marker.svg������������������������0000664�0000000�0000000�00000001224�14753064456�0027253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M481 31c-35.9-35.8-94.1-35.8-130 0l-15 15-13.1-13c-28.1-28.1-73.7-28.1-101.8 0L135 119c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l86.1-86c9.4-9.4 24.6-9.4 33.9 0L302.1 80 186.3 195.7l130 130L481 161c35.9-35.9 35.9-94.1 0-129.9zM293.7 348.3l-130-130-64.2 64.2c-48 48-80.8 109.2-94.1 175.8l-5 25c-1.6 7.9.9 16 6.6 21.7s13.8 8.1 21.7 6.6l25-5c66.6-13.3 127.8-46.1 175.8-94.1z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mars-and-venus-burst.svg����������0000664�0000000�0000000�00000002235�14753064456�0031772�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M504 0c-9.7 0-18.5 5.8-22.2 14.8S480.1 34.1 487 41l39 39-22.2 22.2C475.9 78.4 439.6 64 400 64c-88.4 0-160 71.6-160 160 0 80.2 59.1 146.7 136.1 158.2 0 .6-.1 1.2-.1 1.8v23.8h-24c-13.3 0-24 10.7-24 24s10.7 24 24 24h24v31.9c0 .1 0 0 0 0h24-24c0 13.3 10.7 24 24 24s24-10.7 24-24h-24 24v-31.9h24c13.3 0 24-10.7 24-24s-10.7-24-24-24h-24V384c0-.6 0-1.2-.1-1.8 77-11.6 136.1-78 136.1-158.2 0-31.4-9-60.7-24.7-85.4l24.7-24.7 39 39c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2v-112c0-13.3-10.7-24-24-24zM400 128a96 96 0 1 1 0 192 96 96 0 1 1 0-192M190.9 18.1C188.4 12 182.6 8 176 8s-12.4 4-14.9 10.1l-29.4 74-76.1-23.2c-6.3-1.9-13.1.2-17.2 5.3S33.8 86.4 37 92.1l39.5 69.1-65.6 45.2c-5.4 3.7-8 10.3-6.5 16.7s6.7 11.2 13.1 12.2l78.7 12.2-5.6 79.5c-.5 6.5 3.1 12.7 9 15.5s12.9 1.8 17.8-2.6l58.6-53.8 58.6 53.9c4.1 3.8 9.9 5.1 15.2 3.6C223.6 310.8 208 269.2 208 224c0-60.8 28.3-115 72.4-150.2l-60.1 18.3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mars-and-venus.svg����������������0000664�0000000�0000000�00000001405�14753064456�0030633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M337.8 14.8C341.5 5.8 350.3 0 360 0h112c13.3 0 24 10.7 24 24v112c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-39-39-24.7 24.7C407 163.3 416 192.6 416 224c0 80.2-59 146.6-136 158.2V408h24c13.3 0 24 10.7 24 24s-10.7 24-24 24h-24v32c0 13.3-10.7 24-24 24s-24-10.7-24-24v-32h-24c-13.3 0-24-10.7-24-24s10.7-24 24-24h24v-25.8c-77-11.6-136-78-136-158.2 0-88.4 71.6-160 160-160 39.6 0 75.9 14.4 103.8 38.2L382.1 80 343 41c-6.9-6.9-8.9-17.2-5.2-26.2M352 224a96 96 0 1 0-192 0 96 96 0 1 0 192 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mars-double.svg�������������������0000664�0000000�0000000�00000001767�14753064456�0030220�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M312 32c-9.7 0-18.5 5.8-22.2 14.8S288.1 66.1 295 73l33.4 33.4-52.6 52.6c-28.4-19.5-62.7-31-99.8-31C78.8 128 0 206.8 0 304s78.8 176 176 176 176-78.8 176-176c0-37-11.4-71.4-31-99.8l52.6-52.6L407 185c6.9 6.9 17.2 8.9 26.2 5.2S448 177.7 448 168V56c0-13.3-10.7-24-24-24zM64 304a112 112 0 1 1 224 0 112 112 0 1 1-224 0m304 176c97.2 0 176-78.8 176-176 0-37-11.4-71.4-31-99.8l52.6-52.6L599 185c6.9 6.9 17.2 8.9 26.2 5.2S640 177.7 640 168V56c0-13.3-10.7-24-24-24H504c-9.7 0-18.5 5.8-22.2 14.8-1.2 2.9-1.8 6-1.8 9v.4c0 6.2 2.5 12.2 7 16.8l33.4 33.4-40.4 40.3V168c0 22.6-13.6 43.1-34.6 51.7-.8.3-1.7.7-2.5 1 22.8 20.5 37.1 50.2 37.1 83.3 0 61.9-50.1 112-112 112-5.4 0-10.8-.4-16-1.1-12.9 20.4-29.1 38.3-48.1 53.1 19.8 7.8 41.4 12 64 12z"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mars-stroke-right.svg�������������0000664�0000000�0000000�00000001253�14753064456�0031356�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M208 368a112 112 0 1 0 0-224 112 112 0 1 0 0 224m174.4-88c-11.7 85.8-85.3 152-174.4 152-97.2 0-176-78.8-176-176S110.8 80 208 80c89.1 0 162.7 66.2 174.4 152H416v-56c0-13.3 10.7-24 24-24s24 10.7 24 24v56h32v-56c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l80 80c9.4 9.4 9.4 24.6 0 33.9l-80 80c-6.9 6.9-17.2 8.9-26.2 5.2S496 345.6 496 335.9v-56h-32v56c0 13.3-10.7 24-24 24s-24-10.7-24-24v-56h-33.6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mars-stroke-up.svg����������������0000664�0000000�0000000�00000001275�14753064456�0030671�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M148.7 4.7c6.2-6.2 16.4-6.2 22.6 0l64 64c4.6 4.6 5.9 11.5 3.5 17.4S230.5 96 224 96h-40v24h32c13.3 0 24 10.7 24 24s-10.7 24-24 24h-32v24c0 .6 0 1.2-.1 1.8 77 11.6 136.1 78 136.1 158.2 0 88.4-71.6 160-160 160S0 440.4 0 352c0-80.2 59.1-146.7 136.1-158.2 0-.6-.1-1.2-.1-1.8v-24h-32c-13.3 0-24-10.7-24-24s10.7-24 24-24h32V96H96c-6.5 0-12.3-3.9-14.8-9.9s-1.1-12.9 3.5-17.4zM256 352a96 96 0 1 0-192 0 96 96 0 1 0 192 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mars-stroke.svg�������������������0000664�0000000�0000000�00000001342�14753064456�0030242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M376 0c-9.7 0-18.5 5.8-22.2 14.8S352.1 34.1 359 41l33.4 33.4-22.1 22L345 71c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l25.4 25.4-28.7 28.7c-28.4-19.5-62.7-31-99.8-31-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176c0-37-11.4-71.4-31-99.8l28.6-28.6L407 201c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-25.4-25.4 22.1-22.1L471 153c6.9 6.9 17.2 8.9 26.2 5.2S512 145.7 512 136V24c0-13.3-10.7-24-24-24zM96 304a112 112 0 1 1 224 0 112 112 0 1 1-224 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mars.svg��������������������������0000664�0000000�0000000�00000001151�14753064456�0026733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M289.8 46.8c3.7-9 12.5-14.8 22.2-14.8h112c13.3 0 24 10.7 24 24v112c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-33.4-33.4-52.6 52.6c19.5 28.4 31 62.7 31 99.8 0 97.2-78.8 176-176 176S0 401.2 0 304s78.8-176 176-176c37 0 71.4 11.4 99.8 31l52.6-52.6L295 73c-6.9-6.9-8.9-17.2-5.2-26.2M176 416a112 112 0 1 0 0-224 112 112 0 1 0 0 224"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/martini-glass-citrus.svg����������0000664�0000000�0000000�00000001301�14753064456�0032047�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M432 240c53 0 96-43 96-96s-43-96-96-96c-35.5 0-66.6 19.3-83.2 48h-52.6C316 40.1 369.3 0 432 0c79.5 0 144 64.5 144 144s-64.5 144-144 144c-27.7 0-53.5-7.8-75.5-21.3l35.4-35.4c12.2 5.6 25.8 8.7 40.1 8.7M1.8 142.8c3.7-9 12.5-14.8 22.2-14.8h368c9.7 0 18.5 5.8 22.2 14.8s1.7 19.3-5.2 26.2L232 346v118h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H120c-13.3 0-24-10.7-24-24s10.7-24 24-24h64V345.9L7 169c-6.9-6.9-8.9-17.2-5.2-26.2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/martini-glass-empty.svg�����������0000664�0000000�0000000�00000001007�14753064456�0031677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 0C19.1 0 7.4 7.8 2.4 19.8S.2 45.5 9.3 54.7L224 269.3V448h-64c-17.7 0-32 14.3-32 32s14.3 32 32 32h192c17.7 0 32-14.3 32-32s-14.3-32-32-32h-64V269.3L502.6 54.6c9.2-9.2 11.9-22.9 6.9-34.9S492.9 0 480 0zm224 210.7L109.3 64h293.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/martini-glass.svg�����������������0000664�0000000�0000000�00000001013�14753064456�0030540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 0C19.1 0 7.4 7.8 2.4 19.8S.2 45.5 9.3 54.7L224 269.3V448h-64c-17.7 0-32 14.3-32 32s14.3 32 32 32h192c17.7 0 32-14.3 32-32s-14.3-32-32-32h-64V269.3L502.6 54.6c9.2-9.2 11.9-22.9 6.9-34.9S492.9 0 480 0zm141.3 128-64-64h293.5l-64 64z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mask-face.svg���������������������0000664�0000000�0000000�00000002036�14753064456�0027623�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 64c-27.2 0-53.8 8-76.4 23.1l-37.1 24.8a96.2 96.2 0 0 1-53.3 16.1H56c-30.9 0-56 25.1-56 56v85c0 55.1 37.5 103.1 90.9 116.4l108 27C233.8 435 275.4 448 320 448s86.2-13 121.1-35.5l108-27C602.5 372.1 640 324.1 640 269v-85c0-30.9-25.1-56-56-56h-97.2c-19 0-37.5-5.6-53.3-16.1l-37.1-24.8C373.8 72 347.2 64 320 64M132.3 346.3l-29.8-7.4c-32-8-54.5-36.8-54.5-69.9v-85c0-4.4 3.6-8 8-8h40v48c0 45.1 13.4 87.2 36.3 122.3m405.1-7.4-29.8 7.4c23-35.2 36.3-77.2 36.3-122.3v-48h40c4.4 0 8 3.6 8 8v85c0 33-22.5 61.8-54.5 69.9M192 208c0-8.8 7.2-16 16-16h224c8.8 0 16 7.2 16 16s-7.2 16-16 16H208c-8.8 0-16-7.2-16-16m16 48h224c8.8 0 16 7.2 16 16s-7.2 16-16 16H208c-8.8 0-16-7.2-16-16s7.2-16 16-16m16 80c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-8.8 0-16-7.2-16-16"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mask-ventilator.svg���������������0000664�0000000�0000000�00000001673�14753064456�0031122�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M159.1 176c-19.7 43.2-31.1 88.7-31.1 124.8 0 15.9 2.2 31.4 6.3 46l-31.8-7.9c-32-8-54.5-36.8-54.5-69.9v-85c0-4.4 3.6-8 8-8zm26-48H56c-30.9 0-56 25.1-56 56v85c0 55.1 37.5 103.1 90.9 116.4l71.3 17.8c22.7 30.5 55.4 54.1 93.8 66.6v-76.6c-19.7-16.4-32-40.3-32-66.9 0-49.5 43-134.4 96-134.4 52.5 0 96 84.9 96 134.4 0 26.7-12.4 50.4-32 66.8v76.6c38-12.6 70.6-36 93.5-66.4l71.6-17.9C602.5 372.1 640 324.1 640 269v-85c0-30.9-25.1-56-56-56H454.5C419.7 73.8 372.1 32 320 32c-52.6 0-100.2 41.8-134.9 96m295.6 48H584c4.4 0 8 3.6 8 8v85c0 33-22.5 61.8-54.5 69.9l-31.8 8c4.2-14.7 6.4-30.1 6.4-46.1 0-36.1-11.6-81.6-31.3-124.8zM288 320v192h64V320c0-17.7-14.3-32-32-32s-32 14.3-32 32"/></svg>���������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mask.svg��������������������������0000664�0000000�0000000�00000001104�14753064456�0026722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 64C64 64 0 160 0 272s80 176 176 176h8.4c24.2 0 46.4-13.7 57.2-35.4l23.2-46.3c4.4-8.8 13.3-14.3 23.2-14.3s18.8 5.5 23.2 14.3l23.2 46.3c10.8 21.7 33 35.4 57.2 35.4h8.4c96 0 176-64 176-176S512 64 288 64M96 256a64 64 0 1 1 128 0 64 64 0 1 1-128 0m320-64a64 64 0 1 1 0 128 64 64 0 1 1 0-128"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/masks-theater.svg�����������������0000664�0000000�0000000�00000003214�14753064456�0030543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M74.6 373.2c41.7 36.1 108 82.5 166.1 73.7 6.1-.9 12.1-2.5 18-4.5-9.2-12.3-17.3-24.4-24.2-35.4-21.9-35-28.8-75.2-25.9-113.6-20.6 4.1-39.2 13-54.7 25.4-6.5 5.2-16.3 1.3-14.8-7 6.4-33.5 33-60.9 68.2-66.3 2.6-.4 5.3-.7 7.9-.8l19.4-131.3c2-13.8 8-32.7 25-45.9 18.6-14.3 50.9-30.5 103.6-35.3l-2.4-2.1c-20.2-15.6-72.4-41.6-185.1-24.5S20.5 63 5.7 83.9C0 91.9-.8 102 .6 111.8l24.2 164.3c5.5 37.3 21.5 72.6 49.8 97.2zm87.7-219.6c4.4-3.1 10.8-2 11.8 3.3.1.5.2 1.1.3 1.6 3.2 21.8-11.6 42-33.1 45.3S99.8 192 96.6 170.3c-.1-.5-.1-1.1-.2-1.6-.6-5.4 5.2-8.4 10.3-6.7 9 3 18.8 3.9 28.7 2.4s19.1-5.3 26.8-10.8zM261.6 390c29.4 46.9 79.5 110.9 137.6 119.7s124.5-37.5 166.1-73.7c28.3-24.5 44.3-59.8 49.8-97.2l24.2-164.3c1.4-9.8.6-19.9-5.1-27.9-14.8-20.9-57.3-61.2-170-78.3s-164.8 8.9-185 24.5c-7.8 6-11.5 15.4-12.9 25.2l-24.2 164.3c-5.5 37.3-.4 75.8 19.6 107.7zm142.9-154.7c-7.7-5.5-16.8-9.3-26.8-10.8s-19.8-.6-28.7 2.4c-5.1 1.7-10.9-1.3-10.3-6.7.1-.5.1-1.1.2-1.6 3.2-21.8 23.2-36.8 44.7-33.5s36.3 23.5 33.1 45.3c-.1.5-.2 1.1-.3 1.6-1 5.3-7.4 6.4-11.8 3.3zm136.2 15.5c-1 5.3-7.4 6.4-11.8 3.3-7.7-5.5-16.8-9.3-26.8-10.8s-19.8-.6-28.7 2.4c-5.1 1.7-10.9-1.3-10.3-6.7.1-.5.1-1.1.2-1.6 3.2-21.8 23.2-36.8 44.7-33.5s36.3 23.5 33.1 45.3c-.1.5-.2 1.1-.3 1.6zM530 350.2c-19.6 44.7-66.8 72.5-116.8 64.9s-87.1-48.2-93-96.7c-1-8.3 8.9-12.1 15.2-6.7 23.9 20.8 53.6 35.3 87 40.3s66.1.1 94.9-12.8c7.6-3.4 16 3.2 12.6 10.9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mattress-pillow.svg���������������0000664�0000000�0000000�00000001004�14753064456�0031134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 64H64C28.7 64 0 92.7 0 128v256c0 35.3 28.7 64 64 64h192zm32 384h288c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H288zM64 160c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32v192c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/maximize.svg����������������������0000664�0000000�0000000�00000001532�14753064456�0027617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M200 32H56c-13.3 0-24 10.7-24 24v144c0 9.7 5.8 18.5 14.8 22.2s19.3 1.7 26.2-5.2l40-40 79 79-79 79-40-40c-6.9-6.9-17.2-8.9-26.2-5.2S32 302.3 32 312v144c0 13.3 10.7 24 24 24h144c9.7 0 18.5-5.8 22.2-14.8s1.7-19.3-5.2-26.2l-40-40 79-79 79 79-40 40c-6.9 6.9-8.9 17.2-5.2 26.2S302.3 480 312 480h144c13.3 0 24-10.7 24-24V312c0-9.7-5.8-18.5-14.8-22.2s-19.3-1.7-26.2 5.2l-40 40-79-79 79-79 40 40c6.9 6.9 17.2 8.9 26.2 5.2S480 209.7 480 200V56c0-13.3-10.7-24-24-24H312c-9.7 0-18.5 5.8-22.2 14.8S288.1 66.1 295 73l40 40-79 79-79-79 40-40c6.9-6.9 8.9-17.2 5.2-26.2S209.7 32 200 32"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/medal.svg�������������������������0000664�0000000�0000000�00000001647�14753064456�0027065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M4.1 38.2C1.4 34.2 0 29.4 0 24.6 0 11 11 0 24.6 0h109.3c11.2 0 21.7 5.9 27.4 15.5l68.5 114.1c-48.2 6.1-91.3 28.6-123.4 61.9zm503.7 0L405.6 191.5c-32.1-33.3-75.2-55.8-123.4-61.9l68.5-114.1C356.5 5.9 366.9 0 378.1 0h109.3C501 0 512 11 512 24.6c0 4.8-1.4 9.6-4.1 13.6zM80 336a176 176 0 1 1 352 0 176 176 0 1 1-352 0m184.4-94.9c-3.4-7-13.3-7-16.8 0l-22.4 45.4c-1.4 2.8-4 4.7-7 5.1l-50.2 7.3c-7.7 1.1-10.7 10.5-5.2 16l36.3 35.4c2.2 2.2 3.2 5.2 2.7 8.3l-8.6 49.9c-1.3 7.6 6.7 13.5 13.6 9.9l44.8-23.6c2.7-1.4 6-1.4 8.7 0l44.8 23.6c6.9 3.6 14.9-2.2 13.6-9.9l-8.6-49.9c-.5-3 .5-6.1 2.7-8.3l36.3-35.4c5.6-5.4 2.5-14.8-5.2-16l-50.1-7.3c-3-.4-5.7-2.4-7-5.1z"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/memory.svg������������������������0000664�0000000�0000000�00000002016�14753064456�0027302�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 64C28.7 64 0 92.7 0 128v7.4c0 6.8 4.4 12.6 10.1 16.3C23.3 160.3 32 175.1 32 192s-8.7 31.7-21.9 40.3C4.4 236 0 241.8 0 248.6V320h576v-71.4c0-6.8-4.4-12.6-10.1-16.3-13.2-8.6-21.9-23.4-21.9-40.3s8.7-31.7 21.9-40.3c5.7-3.7 10.1-9.5 10.1-16.3V128c0-35.3-28.7-64-64-64zm512 288H0v64c0 17.7 14.3 32 32 32h48v-32c0-8.8 7.2-16 16-16s16 7.2 16 16v32h96v-32c0-8.8 7.2-16 16-16s16 7.2 16 16v32h96v-32c0-8.8 7.2-16 16-16s16 7.2 16 16v32h96v-32c0-8.8 7.2-16 16-16s16 7.2 16 16v32h48c17.7 0 32-14.3 32-32zM192 160v64c0 17.7-14.3 32-32 32s-32-14.3-32-32v-64c0-17.7 14.3-32 32-32s32 14.3 32 32m128 0v64c0 17.7-14.3 32-32 32s-32-14.3-32-32v-64c0-17.7 14.3-32 32-32s32 14.3 32 32m128 0v64c0 17.7-14.3 32-32 32s-32-14.3-32-32v-64c0-17.7 14.3-32 32-32s32 14.3 32 32"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/menorah.svg�����������������������0000664�0000000�0000000�00000003616�14753064456�0027432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M20.8 7.4C22.8 2.9 27.1 0 32 0s9.2 2.9 11.2 7.4l18.1 42.3c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32S0 81.7 0 64v-1.2c0-4.5.9-8.9 2.7-13.1zm96 0c2-4.5 6.3-7.4 11.2-7.4s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1v1.2c0 17.7-14.3 32-32 32s-32-14.3-32-32v-1.2c0-4.5.9-8.9 2.7-13.1zm77.8 42.4 18.2-42.4c2-4.5 6.3-7.4 11.2-7.4s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1v1.2c0 17.7-14.3 32-32 32s-32-14.3-32-32v-1.2c0-4.5.9-8.9 2.7-13.1zM308.8 7.4c2-4.5 6.3-7.4 11.2-7.4s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1v1.2c0 17.7-14.3 32-32 32s-32-14.3-32-32v-1.2c0-4.5.9-8.9 2.7-13.1zm77.8 42.4 18.2-42.4c2-4.5 6.3-7.4 11.2-7.4s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1v1.2c0 17.7-14.3 32-32 32s-32-14.3-32-32v-1.2c0-4.5.9-8.9 2.7-13.1zM500.8 7.4c2-4.5 6.3-7.4 11.2-7.4s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1v1.2c0 17.7-14.3 32-32 32s-32-14.3-32-32v-1.2c0-4.5.9-8.9 2.7-13.1zm77.8 42.4 18.2-42.4c2-4.5 6.3-7.4 11.2-7.4s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1v1.2c0 17.7-14.3 32-32 32s-32-14.3-32-32v-1.2c0-4.5.9-8.9 2.7-13.1zM32 128c17.7 0 32 14.3 32 32v128c0 17.7 14.3 32 32 32h192V160c0-17.7 14.3-32 32-32s32 14.3 32 32v160h192c17.7 0 32-14.3 32-32V160c0-17.7 14.3-32 32-32s32 14.3 32 32v128c0 53-43 96-96 96H352v64h128c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-17.7 0-32-14.3-32-32s14.3-32 32-32h128v-64H96c-53 0-96-43-96-96V160c0-17.7 14.3-32 32-32m96 0c17.7 0 32 14.3 32 32v128H96V160c0-17.7 14.3-32 32-32m96 0c17.7 0 32 14.3 32 32v128h-64V160c0-17.7 14.3-32 32-32m192 0c17.7 0 32 14.3 32 32v128h-64V160c0-17.7 14.3-32 32-32m96 0c17.7 0 32 14.3 32 32v128h-64V160c0-17.7 14.3-32 32-32"/></svg>������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mercury.svg�����������������������0000664�0000000�0000000�00000001375�14753064456�0027467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M72.1 7C85.8-4 106-1.8 117 12c17.6 22 44.7 36 75 36s57.3-14 75-36c11.1-13.8 31.2-16 45-5s16 31.2 5 45q-11.7 14.55-26.4 26.1C337.3 109.7 368 163.3 368 224c0 89.1-66.2 162.7-152 174.4V424h32c13.3 0 24 10.7 24 24s-10.7 24-24 24h-32v16c0 13.3-10.7 24-24 24s-24-10.7-24-24v-16h-32c-13.3 0-24-10.7-24-24s10.7-24 24-24h32v-25.6C82.2 386.7 16 313.1 16 224c0-60.7 30.7-114.3 77.5-145.9-9.8-7.6-18.6-16.4-26.4-26.1-11.1-13.8-8.8-33.9 5-45M80 224a112 112 0 1 0 224 0 112 112 0 1 0-224 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/message.svg�����������������������0000664�0000000�0000000�00000000677�14753064456�0027431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v80c0 6.1 3.4 11.6 8.8 14.3s11.9 2.1 16.8-1.5L309.3 416H448c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64z"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/meteor.svg������������������������0000664�0000000�0000000�00000001240�14753064456�0027263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M493.7.9 299.4 75.6l2.3-29.3c1-12.8-12.8-21.5-24-15.1L101.3 133.4C38.6 169.7 0 236.6 0 309c0 112.1 90.9 203 203 203 72.4 0 139.4-38.6 175.7-101.3l102.1-176.4c6.5-11.1-2.2-25-15.1-24l-29.3 2.3 74.7-194.3c.6-1.5.9-3.2.9-4.8C512 6 506 0 498.5 0q-2.55 0-4.8.9M192 192a128 128 0 1 1 0 256 128 128 0 1 1 0-256m0 96a32 32 0 1 0-64 0 32 32 0 1 0 64 0m16 96a16 16 0 1 0 0-32 16 16 0 1 0 0 32"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/microchip.svg���������������������0000664�0000000�0000000�00000002024�14753064456�0027746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M176 24c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c-35.3 0-64 28.7-64 64H24c-13.3 0-24 10.7-24 24s10.7 24 24 24h40v56H24c-13.3 0-24 10.7-24 24s10.7 24 24 24h40v56H24c-13.3 0-24 10.7-24 24s10.7 24 24 24h40c0 35.3 28.7 64 64 64v40c0 13.3 10.7 24 24 24s24-10.7 24-24v-40h56v40c0 13.3 10.7 24 24 24s24-10.7 24-24v-40h56v40c0 13.3 10.7 24 24 24s24-10.7 24-24v-40c35.3 0 64-28.7 64-64h40c13.3 0 24-10.7 24-24s-10.7-24-24-24h-40v-56h40c13.3 0 24-10.7 24-24s-10.7-24-24-24h-40v-56h40c13.3 0 24-10.7 24-24s-10.7-24-24-24h-40c0-35.3-28.7-64-64-64V24c0-13.3-10.7-24-24-24s-24 10.7-24 24v40h-56V24c0-13.3-10.7-24-24-24s-24 10.7-24 24v40h-56zm-16 104h192c17.7 0 32 14.3 32 32v192c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32m192 32H160v192h192z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/microphone-lines-slash.svg��������0000664�0000000�0000000�00000001656�14753064456�0032366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2s-6.3 25.5 4.1 33.7l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L472.1 344.7c15.2-26 23.9-56.3 23.9-88.7v-40c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 21.2-5.1 41.1-14.2 58.7L416 300.8V256h-57.1l-34.5-27c2.9-3.1 7-5 11.6-5h80v-32h-80c-8.8 0-16-7.2-16-16s7.2-16 16-16h80v-32h-80c-8.8 0-16-7.2-16-16s7.2-16 16-16h80c0-53-43-96-96-96s-96 43-96 96v54.3zm362.5 407-43.1-33.9c-12.1 3.8-24.9 5.8-38.2 5.8-70.7 0-128-57.3-128-128v-8.7L144.7 210c-.5 1.9-.7 3.9-.7 6v40c0 89.1 66.2 162.7 152 174.4V464h-48c-13.3 0-24 10.7-24 24s10.7 24 24 24h144c13.3 0 24-10.7 24-24s-10.7-24-24-24h-48v-33.6c20.4-2.8 39.7-9.1 57.3-18.2z"/></svg>����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/microphone-lines.svg��������������0000664�0000000�0000000�00000001404�14753064456�0031245�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 96v160c0 53 43 96 96 96s96-43 96-96h-80c-8.8 0-16-7.2-16-16s7.2-16 16-16h80v-32h-80c-8.8 0-16-7.2-16-16s7.2-16 16-16h80v-32h-80c-8.8 0-16-7.2-16-16s7.2-16 16-16h80c0-53-43-96-96-96S96 43 96 96m224 144v16c0 70.7-57.3 128-128 128S64 326.7 64 256v-40c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 89.1 66.2 162.7 152 174.4V464h-48c-13.3 0-24 10.7-24 24s10.7 24 24 24h144c13.3 0 24-10.7 24-24s-10.7-24-24-24h-48v-33.6c85.8-11.7 152-85.3 152-174.4v-40c0-13.3-10.7-24-24-24s-24 10.7-24 24z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/microphone-slash.svg��������������0000664�0000000�0000000�00000001453�14753064456�0031251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2s-6.3 25.5 4.1 33.7l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L472.1 344.7c15.2-26 23.9-56.3 23.9-88.7v-40c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 21.2-5.1 41.1-14.2 58.7L416 300.8V96c0-53-43-96-96-96s-96 43-96 96v54.3zM344 430.4c20.4-2.8 39.7-9.1 57.3-18.2l-43.1-33.9c-12.1 3.7-24.9 5.7-38.2 5.7-70.7 0-128-57.3-128-128v-8.7L144.7 210c-.5 1.9-.7 3.9-.7 6v40c0 89.1 66.2 162.7 152 174.4V464h-48c-13.3 0-24 10.7-24 24s10.7 24 24 24h144c13.3 0 24-10.7 24-24s-10.7-24-24-24h-48z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/microphone.svg��������������������0000664�0000000�0000000�00000001210�14753064456�0030130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 0c-53 0-96 43-96 96v160c0 53 43 96 96 96s96-43 96-96V96c0-53-43-96-96-96M64 216c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 89.1 66.2 162.7 152 174.4V464h-48c-13.3 0-24 10.7-24 24s10.7 24 24 24h144c13.3 0 24-10.7 24-24s-10.7-24-24-24h-48v-33.6c85.8-11.7 152-85.3 152-174.4v-40c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 70.7-57.3 128-128 128S64 326.7 64 256z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/microscope.svg��������������������0000664�0000000�0000000�00000001345�14753064456�0030141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 32c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32 17.7 0 32 14.3 32 32v224c0 17.7-14.3 32-32 32 0 17.7-14.3 32-32 32h-32c-17.7 0-32-14.3-32-32-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32M32 448h288c70.7 0 128-57.3 128-128s-57.3-128-128-128v-64c106 0 192 86 192 192 0 49.2-18.5 94-48.9 128H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32m80-64h192c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mill-sign.svg���������������������0000664�0000000�0000000�00000001456�14753064456�0027674�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M302.1 42.8c5.9-16.6-2.7-35-19.4-40.9s-35 2.7-40.9 19.4L208 116.1c-5.7 4-11.1 8.5-16 13.5-20.3-20.7-48.7-33.6-80-33.6-19.5 0-37.8 5-53.7 13.7C52.5 101.4 42.9 96 32 96c-17.7 0-32 14.3-32 32v288c0 17.7 14.3 32 32 32s32-14.3 32-32V208c0-26.5 21.5-48 48-48s48 21.5 48 48v42.5L81.9 469.2c-5.9 16.6 2.7 35 19.4 40.9s35-2.7 40.9-19.4l21.4-60c5.3 10.3 16 17.3 28.4 17.3 17.7 0 32-14.3 32-32V261.5l35.7-100c3.9-1 8.1-1.6 12.3-1.6 26.5 0 48 21.5 48 48v208c0 17.7 14.3 32 32 32s32-14.3 32-32v-208c0-58.2-44.3-106-101.1-111.5l19.2-53.8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/minimize.svg����������������������0000664�0000000�0000000�00000002304�14753064456�0027613�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M456 224H312c-13.3 0-24-10.7-24-24V56c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l40 40 73.3-73.3C446 2 450.9 0 456 0s10 2 13.7 5.7l36.7 36.7C510 46 512 50.9 512 56s-2 10-5.7 13.7L433 143l40 40c6.9 6.9 8.9 17.2 5.2 26.2S465.7 224 456 224m0 64c9.7 0 18.5 5.8 22.2 14.8s1.7 19.3-5.2 26.2l-40 40 73.4 73.4c3.6 3.6 5.7 8.5 5.7 13.7s-2 10-5.7 13.7l-36.7 36.7c-3.7 3.5-8.6 5.5-13.7 5.5s-10-2-13.7-5.7L369 433l-40 40c-6.9 6.9-17.2 8.9-26.2 5.2S288 465.7 288 456V312c0-13.3 10.7-24 24-24zm-256 0c13.3 0 24 10.7 24 24v144c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-40-40-73.3 73.3C66 510 61.1 512 56 512s-10-2-13.7-5.7L5.7 469.7C2 466 0 461.1 0 456s2-10 5.7-13.7L79 369l-40-40c-6.9-6.9-8.9-17.2-5.2-26.2S46.3 288 56 288zM56 224c-9.7 0-18.5-5.8-22.2-14.8S32.1 189.9 39 183l40-40L5.7 69.7C2 66 0 61.1 0 56s2-10 5.7-13.7L42.3 5.7C46 2 50.9 0 56 0s10 2 13.7 5.7L143 79l40-40c6.9-6.9 17.2-8.9 26.2-5.2S224 46.3 224 56v144c0 13.3-10.7 24-24 24z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/minus.svg�������������������������0000664�0000000�0000000�00000000577�14753064456�0027137�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M432 256c0 17.7-14.3 32-32 32H48c-17.7 0-32-14.3-32-32s14.3-32 32-32h352c17.7 0 32 14.3 32 32"/></svg>���������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mitten.svg������������������������0000664�0000000�0000000�00000001131�14753064456�0027267�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M352 384H64L5.4 178.9C1.8 166.4 0 153.4 0 140.3 0 62.8 62.8 0 140.3 0h3.4c66 0 123.5 44.9 139.5 108.9l31.4 125.8 17.6-20.1c12.6-14.4 30.7-22.6 49.8-22.6h2.8c34.9 0 63.3 28.3 63.3 63.3 0 15.9-6 31.2-16.8 42.9zM32 448c0-17.7 14.3-32 32-32h288c17.7 0 32 14.3 32 32v32c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mobile-button.svg�����������������0000664�0000000�0000000�00000000661�14753064456�0030556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M80 0C44.7 0 16 28.7 16 64v384c0 35.3 28.7 64 64 64h224c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm112 400a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mobile-retro.svg������������������0000664�0000000�0000000�00000001455�14753064456�0030400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64C0 28.7 28.7 0 64 0h192c35.3 0 64 28.7 64 64v384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm64 96v64c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32v-64c0-17.7-14.3-32-32-32H96c-17.7 0-32 14.3-32 32m16 192a24 24 0 1 0 0-48 24 24 0 1 0 0 48m24 56a24 24 0 1 0-48 0 24 24 0 1 0 48 0m56-56a24 24 0 1 0 0-48 24 24 0 1 0 0 48m24 56a24 24 0 1 0-48 0 24 24 0 1 0 48 0m56-56a24 24 0 1 0 0-48 24 24 0 1 0 0 48m24 56a24 24 0 1 0-48 0 24 24 0 1 0 48 0M128 48c-8.8 0-16 7.2-16 16s7.2 16 16 16h64c8.8 0 16-7.2 16-16s-7.2-16-16-16z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mobile-screen-button.svg����������0000664�0000000�0000000�00000000705�14753064456�0032032�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M16 64C16 28.7 44.7 0 80 0h224c35.3 0 64 28.7 64 64v384c0 35.3-28.7 64-64 64H80c-35.3 0-64-28.7-64-64zm208 384a32 32 0 1 0-64 0 32 32 0 1 0 64 0m80-384H80v320h224z"/></svg>�����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mobile-screen.svg�����������������0000664�0000000�0000000�00000000762�14753064456�0030524�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M16 64C16 28.7 44.7 0 80 0h224c35.3 0 64 28.7 64 64v384c0 35.3-28.7 64-64 64H80c-35.3 0-64-28.7-64-64zm128 384c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16s-7.2-16-16-16h-64c-8.8 0-16 7.2-16 16M304 64H80v320h224z"/></svg>��������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mobile.svg������������������������0000664�0000000�0000000�00000000727�14753064456�0027250�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M80 0C44.7 0 16 28.7 16 64v384c0 35.3 28.7 64 64 64h224c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm80 432h64c8.8 0 16 7.2 16 16s-7.2 16-16 16h-64c-8.8 0-16-7.2-16-16s7.2-16 16-16"/></svg>�����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/money-bill-1-wave.svg�������������0000664�0000000�0000000�00000001546�14753064456�0031146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 112.5v309.8c0 18 10.1 35 27 41.3 87 32.5 174 10.3 261-11.9 79.8-20.3 159.6-40.7 239.3-18.9 23 6.3 48.7-9.5 48.7-33.4V89.5c0-18-10.1-35-27-41.3-87-32.3-174-10.1-261 12.1-79.8 20.3-159.6 40.6-239.3 18.8C25.6 72.8 0 88.6 0 112.5M128 416H64v-64c35.3 0 64 28.7 64 64M64 224v-64h64c0 35.3-28.7 64-64 64m384 128c0-35.3 28.7-64 64-64v64zm64-192c-35.3 0-64-28.7-64-64h64zm-128 96c0 61.9-43 112-96 112s-96-50.1-96-112 43-112 96-112 96 50.1 96 112m-132-48c0 9.7 6.9 17.7 16 19.6V276h-4c-11 0-20 9-20 20s9 20 20 20h48c11 0 20-9 20-20s-9-20-20-20h-4v-68c0-11-9-20-20-20h-16c-11 0-20 9-20 20"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/money-bill-1.svg������������������0000664�0000000�0000000�00000001314�14753064456�0030177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 64C28.7 64 0 92.7 0 128v256c0 35.3 28.7 64 64 64h448c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64zm64 320H64v-64c35.3 0 64 28.7 64 64M64 192v-64h64c0 35.3-28.7 64-64 64m384 192c0-35.3 28.7-64 64-64v64zm64-192c-35.3 0-64-28.7-64-64h64zm-336 64a112 112 0 1 1 224 0 112 112 0 1 1-224 0m76-48c0 9.7 6.9 17.7 16 19.6V276h-4c-11 0-20 9-20 20s9 20 20 20h48c11 0 20-9 20-20s-9-20-20-20h-4v-68c0-11-9-20-20-20h-16c-11 0-20 9-20 20"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/money-bill-transfer.svg�����������0000664�0000000�0000000�00000002071�14753064456�0031664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M535 41c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l64 64c4.5 4.5 7 10.6 7 17s-2.5 12.5-7 17l-64 64c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l23-23-174-.2c-13.3 0-24-10.7-24-24s10.7-24 24-24h174.1zM105 377l-23 23h174c13.3 0 24 10.7 24 24s-10.7 24-24 24H81.9l23 23c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L7 441c-4.5-4.5-7-10.6-7-17s2.5-12.5 7-17l64-64c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9zM96 64h241.9c-3.7 7.2-5.9 15.3-5.9 24 0 28.7 23.3 52 52 52h117.4c-4 17 .6 35.5 13.8 48.8 20.3 20.3 53.2 20.3 73.5 0l19.3-19.3V384c0 35.3-28.7 64-64 64H302.1c3.7-7.2 5.9-15.3 5.9-24 0-28.7-23.3-52-52-52H138.6c4-17-.6-35.5-13.8-48.8-20.3-20.3-53.2-20.3-73.5 0L32 342.5V128c0-35.3 28.7-64 64-64m64 64H96v64c35.3 0 64-28.7 64-64m384 192c-35.3 0-64 28.7-64 64h64zm-224 32a96 96 0 1 0 0-192 96 96 0 1 0 0 192"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/money-bill-trend-up.svg�����������0000664�0000000�0000000�00000001602�14753064456�0031575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M470.7 9.4c3 3.1 5.3 6.6 6.9 10.3s2.4 7.8 2.4 12.2V128c0 17.7-14.3 32-32 32s-32-14.3-32-32v-18.7L310.6 214.6c-11.8 11.8-30.8 12.6-43.5 1.7L176 138.1l-91.2 78.2c-13.4 11.5-33.6 9.9-45.1-3.5s-9.9-33.6 3.5-45.1l112-96c12-10.3 29.7-10.3 41.7 0l89.5 76.7L370.7 64H352c-17.7 0-32-14.3-32-32s14.3-32 32-32h96c8.8 0 16.8 3.6 22.6 9.3zM0 304c0-26.5 21.5-48 48-48h416c26.5 0 48 21.5 48 48v160c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48zm48 112v48h48c0-26.5-21.5-48-48-48m48-112H48v48c26.5 0 48-21.5 48-48m368 112c-26.5 0-48 21.5-48 48h48zm-48-112c0 26.5 21.5 48 48 48v-48zm-96 80a64 64 0 1 0-128 0 64 64 0 1 0 128 0"/></svg>������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/money-bill-wave.svg���������������0000664�0000000�0000000�00000001322�14753064456�0031000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 112.5v309.8c0 18 10.1 35 27 41.3 87 32.5 174 10.3 261-11.9 79.8-20.3 159.6-40.7 239.3-18.9 23 6.3 48.7-9.5 48.7-33.4V89.5c0-18-10.1-35-27-41.3-87-32.3-174-10.1-261 12.1-79.8 20.3-159.6 40.6-239.3 18.8C25.6 72.8 0 88.6 0 112.5M288 352c-44.2 0-80-43-80-96s35.8-96 80-96 80 43 80 96-35.8 96-80 96m-224 0c35.3 0 64 28.7 64 64H64zm64-208c0 35.3-28.7 64-64 64v-64zm384 160v64h-64c0-35.3 28.7-64 64-64M448 96h64v64c-35.3 0-64-28.7-64-64"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/money-bill-wheat.svg��������������0000664�0000000�0000000�00000002510�14753064456�0031146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M176 0c44.2 0 80 35.8 80 80 0 8.8-7.2 16-16 16-44.2 0-80-35.8-80-80 0-8.8 7.2-16 16-16M56 16h48c13.3 0 24 10.7 24 24s-10.7 24-24 24H56c-13.3 0-24-10.7-24-24s10.7-24 24-24M24 88h112c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24s10.7-24 24-24m8 96c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24s-10.7 24-24 24H56c-13.3 0-24-10.7-24-24M272 16c0-8.8 7.2-16 16-16 44.2 0 80 35.8 80 80 0 8.8-7.2 16-16 16-44.2 0-80-35.8-80-80M400 0c44.2 0 80 35.8 80 80 0 8.8-7.2 16-16 16-44.2 0-80-35.8-80-80 0-8.8 7.2-16 16-16m80 144c0 44.2-35.8 80-80 80-8.8 0-16-7.2-16-16 0-44.2 35.8-80 80-80 8.8 0 16 7.2 16 16m-128-16c8.8 0 16 7.2 16 16 0 44.2-35.8 80-80 80-8.8 0-16-7.2-16-16 0-44.2 35.8-80 80-80m-96 16c0 44.2-35.8 80-80 80-8.8 0-16-7.2-16-16 0-44.2 35.8-80 80-80 8.8 0 16 7.2 16 16M0 304c0-26.5 21.5-48 48-48h416c26.5 0 48 21.5 48 48v160c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48zm48 112v48h48c0-26.5-21.5-48-48-48m48-112H48v48c26.5 0 48-21.5 48-48m368 112c-26.5 0-48 21.5-48 48h48zm-48-112c0 26.5 21.5 48 48 48v-48zm-96 80a64 64 0 1 0-128 0 64 64 0 1 0 128 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/money-bill.svg��������������������0000664�0000000�0000000�00000001075�14753064456�0030045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 64C28.7 64 0 92.7 0 128v256c0 35.3 28.7 64 64 64h448c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64zm64 320H64v-64c35.3 0 64 28.7 64 64M64 192v-64h64c0 35.3-28.7 64-64 64m384 192c0-35.3 28.7-64 64-64v64zm64-192c-35.3 0-64-28.7-64-64h64zm-224-32a96 96 0 1 1 0 192 96 96 0 1 1 0-192"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/money-bills.svg�������������������0000664�0000000�0000000�00000001311�14753064456�0030221�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 96v224c0 35.3 28.7 64 64 64h416c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H160c-35.3 0-64 28.7-64 64m64 160c35.3 0 64 28.7 64 64h-64zm64-160c0 35.3-28.7 64-64 64V96zm352 160v64h-64c0-35.3 28.7-64 64-64M512 96h64v64c-35.3 0-64-28.7-64-64M288 208a80 80 0 1 1 160 0 80 80 0 1 1-160 0M48 120c0-13.3-10.7-24-24-24S0 106.7 0 120v240c0 66.3 53.7 120 120 120h400c13.3 0 24-10.7 24-24s-10.7-24-24-24H120c-39.8 0-72-32.2-72-72z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/money-check-dollar.svg������������0000664�0000000�0000000�00000002417�14753064456�0031454�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 64C28.7 64 0 92.7 0 128v256c0 35.3 28.7 64 64 64h448c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64zm208 128h224c8.8 0 16 7.2 16 16s-7.2 16-16 16H272c-8.8 0-16-7.2-16-16s7.2-16 16-16m-16 112c0-8.8 7.2-16 16-16h224c8.8 0 16 7.2 16 16s-7.2 16-16 16H272c-8.8 0-16-7.2-16-16m-92-152v13.9c7.5 1.2 14.6 2.9 21.1 4.7 10.7 2.8 17 13.8 14.2 24.5s-13.8 17-24.5 14.2c-11-2.9-21.6-5-31.2-5.2-7.9-.1-16 1.8-21.5 5-4.8 2.8-6.2 5.6-6.2 9.3 0 1.8.1 3.5 5.3 6.7 6.3 3.8 15.5 6.7 28.3 10.5l.7.2c11.2 3.4 25.6 7.7 37.1 15 12.9 8.1 24.3 21.3 24.6 41.6.3 20.9-10.5 36.1-24.8 45-7.2 4.5-15.2 7.3-23.2 9v13.8c0 11-9 20-20 20s-20-9-20-20v-14.6c-10.3-2.2-20-5.5-28.2-8.4-2.1-.7-4.1-1.4-6.1-2.1-10.5-3.5-16.1-14.8-12.6-25.3s14.8-16.1 25.3-12.6c2.5.8 4.9 1.7 7.2 2.4 13.6 4.6 24 8.1 35.1 8.5 8.6.3 16.5-1.6 21.4-4.7 4.1-2.5 6-5.5 5.9-10.5 0-2.9-.8-5-5.9-8.2-6.3-4-15.4-6.9-28-10.7l-1.7-.5c-10.9-3.3-24.6-7.4-35.6-14C88 251.8 76.1 239 76 218.8c-.1-21.1 11.8-35.7 25.8-43.9 6.9-4.1 14.5-6.8 22.2-8.5v-14c0-11 9-20 20-20s20 9 20 20z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/money-check.svg�������������������0000664�0000000�0000000�00000001234�14753064456�0030175�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 64C28.7 64 0 92.7 0 128v256c0 35.3 28.7 64 64 64h448c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64zm48 160h160c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16M96 336c0-8.8 7.2-16 16-16h352c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16m280-176h80c13.3 0 24 10.7 24 24v48c0 13.3-10.7 24-24 24h-80c-13.3 0-24-10.7-24-24v-48c0-13.3 10.7-24 24-24"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/monument.svg����������������������0000664�0000000�0000000�00000001070�14753064456�0027633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M180.7 4.7c6.2-6.2 16.4-6.2 22.6 0l80 80c2.5 2.5 4.1 5.8 4.6 9.3l40.2 322H55.9L96.1 94c.4-3.5 2-6.8 4.6-9.3zM152 272c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24zM32 448h320c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/moon.svg��������������������������0000664�0000000�0000000�00000001057�14753064456�0026746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M223.5 32C100 32 0 132.3 0 256s100 224 223.5 224c60.6 0 115.5-24.2 155.8-63.4 5-4.9 6.3-12.5 3.1-18.7s-10.1-9.7-17-8.5c-9.8 1.7-19.8 2.6-30.1 2.6-96.9 0-175.5-78.8-175.5-176 0-65.8 36-123.1 89.3-153.3 6.1-3.5 9.2-10.5 7.7-17.3s-7.3-11.9-14.3-12.5c-6.3-.5-12.6-.8-19-.8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mortar-pestle.svg�����������������0000664�0000000�0000000�00000001203�14753064456�0030565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M504.3 11.1c-11-12.7-29.8-14.8-43.3-4.9L252.3 160h144.9L502.6 54.6c11.8-11.8 12.6-30.8 1.6-43.5zM32 192c-17.7 0-32 14.3-32 32s14.3 32 32 32c0 82.5 43.4 147.7 123.9 176.2-11.1 13.9-19.4 30.3-23.9 48.1-4.4 17.1 10.3 31.7 28 31.7h192c17.7 0 32.4-14.6 28.1-31.7-4.5-17.8-12.8-34.1-23.9-48.1C436.6 403.7 480 338.5 480 256c17.7 0 32-14.3 32-32s-14.3-32-32-32z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mosque.svg������������������������0000664�0000000�0000000�00000002054�14753064456�0027305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M400 0c5 0 9.8 2.4 12.8 6.4 34.7 46.3 78.1 74.9 133.5 111.5 5.2 3.4 10.5 7 16 10.6 28.9 19.2 45.7 51.7 45.7 86.1 0 28.6-11.3 54.5-29.8 73.4H221.8c-18.4-19-29.8-44.9-29.8-73.4 0-34.4 16.7-66.9 45.7-86.1 5.4-3.6 10.8-7.1 16-10.6 55.4-36.6 98.8-65.2 133.5-111.5 3-4 7.8-6.4 12.8-6.4M288 512v-72c0-13.3-10.7-24-24-24s-24 10.7-24 24v72h-48c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32h416c17.7 0 32 14.3 32 32v128c0 17.7-14.3 32-32 32h-48v-72c0-13.3-10.7-24-24-24s-24 10.7-24 24v72h-64v-58c0-19-8.4-37-23-49.2L400 384l-25 20.8C360.4 417 352 435 352 454v58zM70.4 5.2a15.9 15.9 0 0 1 19.2 0l16 12C139.8 42.9 160 83.2 160 126v2H0v-2C0 83.2 20.2 42.9 54.4 17.2zM0 160h160v136.6c-19.1 11.1-32 31.7-32 55.4v128c0 9.6 2.1 18.6 5.8 26.8-6.6 3.4-14 5.2-21.8 5.2H48c-26.5 0-48-21.5-48-48V160"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mosquito-net.svg������������������0000664�0000000�0000000�00000003461�14753064456�0030443�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M168.8 462.3c-7.9-4-11.1-13.6-7.2-21.5l30.4-60.6V336c0-4.2 1.7-8.3 4.7-11.3l59.3-59.3v-23.1L139.2 344C87.8 395.3 0 358.9 0 286.3c0-41.1 30.6-75.8 71.4-80.9l159.9-23.9-49.6-41.3c-5.1-4.2-7-11.1-4.9-17.4l13.9-41.7-29-58.1c-4-7.9-.7-17.5 7.2-21.5s17.5-.7 21.5 7.2l32 64c1.9 3.8 2.2 8.2.9 12.2l-12.5 37.6 45.2 38v-22.6c0-14.9 10.1-27.3 23.8-31V63.6c0-4.5 3.7-8.2 8.2-8.2s8.2 3.7 8.2 8.2v43.3c13.7 3.6 23.8 16.1 23.8 31v22.6l45.4-37.8-12.6-37.6c-1.3-4-1-8.4.9-12.2l32-64c4-7.9 13.6-11.1 21.5-7.2s11.1 13.6 7.2 21.5l-29 58.1 13.9 41.7c2.1 6.2.1 13.1-4.9 17.4l-49.6 41.3 159.9 23.9c22.5 2.8 41.8 14.6 54.7 31.4-2.7 2.6-5.2 5.4-7.3 8.6-8.6-12.9-23.3-21.5-40-21.5s-31.4 8.5-40 21.5c-8.6-12.9-23.3-21.5-40-21.5-21.7 0-40 14.3-45.9 34.1-10.7 3.2-19.8 10.1-25.9 19.2l-40.2-35v23.1l32.4 32.4c-.3 2-.4 4.1-.4 6.2 0 16.7 8.5 31.4 21.5 40-4 2.6-7.5 5.9-10.6 9.5l-43-43v50c0 17.7-14.3 32-32 32s-32-14.3-32-32v-50l-32 32V384c0 2.5-.6 4.9-1.7 7.2l-32 64c-4 7.9-13.6 11.1-21.5 7.2zM512 256c8.8 0 16 7.2 16 16v16h48v-16c0-8.8 7.2-16 16-16s16 7.2 16 16v16h16c8.8 0 16 7.2 16 16s-7.2 16-16 16h-16v48h16c8.8 0 16 7.2 16 16s-7.2 16-16 16h-16v48h16c8.8 0 16 7.2 16 16s-7.2 16-16 16h-16v16c0 8.8-7.2 16-16 16s-16-7.2-16-16v-16h-48v16c0 8.8-7.2 16-16 16s-16-7.2-16-16v-16h-48v16c0 8.8-7.2 16-16 16s-16-7.2-16-16v-16h-16c-8.8 0-16-7.2-16-16s7.2-16 16-16h16v-48h-16c-8.8 0-16-7.2-16-16s7.2-16 16-16h16v-48h-16c-8.8 0-16-7.2-16-16s7.2-16 16-16h16v-16c0-8.8 7.2-16 16-16s16 7.2 16 16v16h48v-16c0-8.8 7.2-16 16-16m16 112h48v-48h-48zm0 80h48v-48h-48zm-80-128v48h48v-48zm0 80v48h48v-48z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mosquito.svg����������������������0000664�0000000�0000000�00000002267�14753064456�0027662�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M463.7 505.9c9.8-8.9 10.7-24.3 2.1-34.3l-42.1-49v-54.7c0-5.5-1.8-10.8-5.1-15.1L352 266.3v-.3l133.4 121.8c57 59.8 154.6 17.4 154.6-67.2 0-47.9-34-88.3-79.4-94.2l-153-23.9 40.8-40.9c7.8-7.8 9.4-20.1 3.9-29.8l-23.8-41.7 38.2-50.9c8-10.6 6.1-25.9-4.3-34.1s-25.2-6.3-33.2 4.4l-48 63.9c-5.9 7.9-6.6 18.6-1.7 27.2l22.7 39.4-50.2 50.3v-38.2c0-14.9-10.2-27.4-24-31V63.9c0-4.4-3.6-8-8-8s-8 3.6-8 8v57.2c-13.8 3.6-24 16.1-24 31v38.1L237.8 140l22.6-39.5c4.9-8.6 4.2-19.3-1.7-27.2l-48-63.9c-8-10.6-22.8-12.6-33.2-4.4s-12.2 23.5-4.3 34.1L211.4 90l-23.9 41.7c-5.5 9.7-3.9 22 3.9 29.8l40.8 40.9-153 23.9C34 232.3 0 272.7 0 320.6c0 84.6 97.6 127 154.6 67.1L288 266v.3l-66.5 86.4c-3.3 4.3-5.1 9.6-5.1 15.1v54.7l-42.1 49c-8.6 10.1-7.7 25.5 2.1 34.3s24.7 7.9 33.4-2.1l48-55.9c3.8-4.4 5.9-10.2 5.9-16.1v-55.4l24.3-31.6v63.1c0 17.7 14.3 32 32 32s32-14.3 32-32v-63.1l24.3 31.6v55.4c0 5.9 2.1 11.7 5.9 16.1l48 55.9c8.6 10.1 23.6 11 33.4 2.1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/motorcycle.svg��������������������0000664�0000000�0000000�00000002256�14753064456�0030160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M280 32c-13.3 0-24 10.7-24 24s10.7 24 24 24h57.7l16.4 30.3L256 192l-45.3-45.3c-12-12-28.3-18.7-45.3-18.7H64c-17.7 0-32 14.3-32 32v32h96c88.4 0 160 71.6 160 160 0 11-1.1 21.7-3.2 32h70.4c-2.1-10.3-3.2-21-3.2-32 0-52.2 25-98.6 63.7-127.8l15.4 28.6C402.4 276.3 384 312 384 352c0 70.7 57.3 128 128 128s128-57.3 128-128-57.3-128-128-128c-13.5 0-26.5 2.1-38.7 6l-55.1-102H480c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32h-20.4c-7.5 0-14.7 2.6-20.5 7.4l-47.4 39.5-14-26c-7-12.9-20.5-21-35.2-21zm182.7 279.2 28.2 52.2c6.3 11.7 20.9 16 32.5 9.7s16-20.9 9.7-32.5l-28.2-52.2c2.3-.3 4.7-.4 7.1-.4 35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64c0-15.5 5.5-29.7 14.7-40.8M187.3 376c-9.5 23.5-32.5 40-59.3 40-35.3 0-64-28.7-64-64s28.7-64 64-64c26.9 0 49.9 16.5 59.3 40h66.4c-11.2-59.2-63.2-104-125.7-104C57.3 224 0 281.3 0 352s57.3 128 128 128c62.5 0 114.5-44.8 125.8-104h-66.4zm-59.3 8a32 32 0 1 0 0-64 32 32 0 1 0 0 64"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mound.svg�������������������������0000664�0000000�0000000�00000000641�14753064456�0027116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M144.1 179.2C173.8 127.7 228.6 96 288 96s114.2 31.7 143.9 83.2L540.4 368c12.3 21.3-3.1 48-27.7 48H63.3c-24.6 0-40-26.6-27.7-48z"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mountain-city.svg�����������������0000664�0000000�0000000�00000002232�14753064456�0030572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M336 0c-26.5 0-48 21.5-48 48v92.1l71.4 118.4c2.5-1.6 5.4-2.5 8.6-2.5h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-3.5l73.8 122.4c12.4 20.6 12.9 46.3 1.2 67.3-.4.8-.9 1.6-1.4 2.3H592c26.5 0 48-21.5 48-48V240c0-26.5-21.5-48-48-48h-24v-72c0-13.3-10.7-24-24-24s-24 10.7-24 24v72h-40V48c0-26.5-21.5-48-48-48zm32 64h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16V80c0-8.8 7.2-16 16-16m-16 112c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zm160 96c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16M224 188.9l59.8 99.1H223l-48 64-24.6-41.2zm29.4-44.2C247.1 134.3 236 128 224 128s-23.1 6.3-29.4 16.7L5.1 458.9c-6.5 10.8-6.7 24.3-.7 35.3S22 512 34.5 512h379.1c12.5 0 24-6.8 30.1-17.8s5.8-24.5-.7-35.3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mountain-sun.svg������������������0000664�0000000�0000000�00000001076�14753064456�0030434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M560 160a80 80 0 1 0 0-160 80 80 0 1 0 0 160M55.9 512h523c33.8 0 61.1-27.4 61.1-61.1 0-11.2-3.1-22.2-8.9-31.8l-132-216.3C495 196.1 487.8 192 480 192s-15 4.1-19.1 10.7l-48.2 79L286.8 81c-6.6-10.6-18.3-17-30.8-17s-24.1 6.4-30.8 17L8.6 426.4C3 435.3 0 445.6 0 456.1 0 487 25 512 55.9 512"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mountain.svg����������������������0000664�0000000�0000000�00000001065�14753064456�0027627�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 32c12.5 0 24.1 6.4 30.8 17l216.6 345.4c5.6 8.9 8.6 19.2 8.6 29.7 0 30.9-25 55.9-55.9 55.9H55.9C25 480 0 455 0 424.1c0-10.5 3-20.8 8.6-29.7L225.2 49c6.6-10.6 18.3-17 30.8-17m65 192-65-103.6-79.1 126.1 18.3 24.4c6.4 8.5 19.2 8.5 25.6 0l25.6-34.1c6-8.1 15.5-12.8 25.6-12.8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mug-hot.svg�����������������������0000664�0000000�0000000�00000001544�14753064456�0027357�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M88 0C74.7 0 64 10.7 64 24c0 38.9 23.4 59.4 39.1 73.1l1.1 1c16.3 14.2 23.8 21.8 23.8 37.9 0 13.3 10.7 24 24 24s24-10.7 24-24c0-38.9-23.4-59.4-39.1-73.1l-1.1-1C119.5 47.7 112 40.1 112 24c0-13.3-10.7-24-24-24M32 192c-17.7 0-32 14.3-32 32v192c0 53 43 96 96 96h192c53 0 96-43 96-96h16c61.9 0 112-50.1 112-112s-50.1-112-112-112H32m352 64h16c26.5 0 48 21.5 48 48s-21.5 48-48 48h-16zM224 24c0-13.3-10.7-24-24-24s-24 10.7-24 24c0 38.9 23.4 59.4 39.1 73.1l1.1 1c16.3 14.2 23.8 21.8 23.8 37.9 0 13.3 10.7 24 24 24s24-10.7 24-24c0-38.9-23.4-59.4-39.1-73.1l-1.1-1C231.5 47.7 224 40.1 224 24"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/mug-saucer.svg��������������������0000664�0000000�0000000�00000001041�14753064456�0030037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 64c0-17.7 14.3-32 32-32h384c70.7 0 128 57.3 128 128s-57.3 128-128 128h-32c0 53-43 96-96 96H192c-53 0-96-43-96-96zm384 160h32c35.3 0 64-28.7 64-64s-28.7-64-64-64h-32zM32 416h512c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/music.svg�������������������������0000664�0000000�0000000�00000001036�14753064456�0027113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M499.1 6.3c8.1 6 12.9 15.6 12.9 25.7v336c0 44.2-43 80-96 80s-96-35.8-96-80 43-80 96-80c11.2 0 22 1.6 32 4.6V147l-256 76.8V432c0 44.2-43 80-96 80S0 476.2 0 432s43-80 96-80c11.2 0 22 1.6 32 4.6V128c0-14.1 9.3-26.6 22.8-30.7l320-96c9.7-2.9 20.2-1.1 28.3 5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/n.svg�����������������������������0000664�0000000�0000000�00000000762�14753064456�0026235�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M21.1 33.9c12.7-4.6 26.9-.7 35.5 9.6L320 359.6V64c0-17.7 14.3-32 32-32s32 14.3 32 32v384c0 13.5-8.4 25.5-21.1 30.1s-26.9.7-35.5-9.6L64 152.4V448c0 17.7-14.3 32-32 32S0 465.7 0 448V64c0-13.5 8.4-25.5 21.1-30.1"/></svg>��������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/naira-sign.svg��������������������0000664�0000000�0000000�00000001175�14753064456�0030027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M122.6 46.3c-7.8-11.7-22.4-17-35.9-12.9S64 49.9 64 64v192H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v128c0 17.7 14.3 32 32 32s32-14.3 32-32V320h100.2l97.2 145.8c7.8 11.7 22.4 17 35.9 12.9s22.7-16.5 22.7-30.6v-128h32c17.7 0 32-14.3 32-32s-14.3-32-32-32h-32v-192c0-17.7-14.3-32-32-32s-32 14.3-32 32v192h-57.5zM305.1 320H320v22.3zm-119.6-64H128v-86.3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/network-wired.svg�����������������0000664�0000000�0000000�00000001400�14753064456�0030567�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 64h128v64H256zM240 0c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48h48v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96v32H80c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48h160c26.5 0 48-21.5 48-48v-96c0-26.5-21.5-48-48-48h-48v-32h256v32h-48c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48h160c26.5 0 48-21.5 48-48v-96c0-26.5-21.5-48-48-48h-48v-32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H352v-32h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM96 448v-64h128v64zm320-64h128v64H416z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/neuter.svg������������������������0000664�0000000�0000000�00000000740�14753064456�0027276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M80 176a112 112 0 1 1 224 0 112 112 0 1 1-224 0m144 173.1c81.9-15 144-86.8 144-173.1C368 78.8 289.2 0 192 0S16 78.8 16 176c0 86.3 62.1 158.1 144 173.1V480c0 17.7 14.3 32 32 32s32-14.3 32-32z"/></svg>��������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/newspaper.svg���������������������0000664�0000000�0000000�00000001624�14753064456�0030002�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 96c0-35.3 28.7-64 64-64h288c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H80c-44.2 0-80-35.8-80-80V128c0-17.7 14.3-32 32-32s32 14.3 32 32v272c0 8.8 7.2 16 16 16s16-7.2 16-16zm64 24v80c0 13.3 10.7 24 24 24h112c13.3 0 24-10.7 24-24v-80c0-13.3-10.7-24-24-24H184c-13.3 0-24 10.7-24 24m208-8c0 8.8 7.2 16 16 16h48c8.8 0 16-7.2 16-16s-7.2-16-16-16h-48c-8.8 0-16 7.2-16 16m0 96c0 8.8 7.2 16 16 16h48c8.8 0 16-7.2 16-16s-7.2-16-16-16h-48c-8.8 0-16 7.2-16 16m-208 96c0 8.8 7.2 16 16 16h256c8.8 0 16-7.2 16-16s-7.2-16-16-16H176c-8.8 0-16 7.2-16 16m0 96c0 8.8 7.2 16 16 16h256c8.8 0 16-7.2 16-16s-7.2-16-16-16H176c-8.8 0-16 7.2-16 16"/></svg>������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/not-equal.svg���������������������0000664�0000000�0000000�00000001202�14753064456�0027673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M369.8 37.4c14.7 9.8 18.7 29.7 8.9 44.4L337.1 144H400c17.7 0 32 14.3 32 32s-14.3 32-32 32H294.5l-64 96H400c17.7 0 32 14.3 32 32s-14.3 32-32 32H187.8l-65.2 97.7c-9.8 14.7-29.7 18.7-44.4 8.9s-18.7-29.7-8.9-44.4l41.6-62.2H48c-17.7 0-32-14.3-32-32s14.3-32 32-32h105.5l64-96H48c-17.7 0-32-14.3-32-32s14.3-32 32-32h212.2l65.2-97.7c9.8-14.7 29.7-18.7 44.4-8.9"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/notdef.svg������������������������0000664�0000000�0000000�00000000756�14753064456�0027262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 390.3 153.5 256 64 121.7zm38.5 57.7h179.1L192 313.7zm128-192L320 390.3V121.7zm51-192h-179L192 198.3zM0 48C0 21.5 21.5 0 48 0h288c26.5 0 48 21.5 48 48v416c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48z"/></svg>������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/note-sticky.svg�������������������0000664�0000000�0000000�00000000700�14753064456�0030241�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h224V368c0-26.5 21.5-48 48-48h112V96c0-35.3-28.7-64-64-64zm384 320H336c-8.8 0-16 7.2-16 16v112l32-32 64-64z"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/notes-medical.svg�����������������0000664�0000000�0000000�00000001410�14753064456�0030513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 352V96c0-35.3 28.7-64 64-64h256c35.3 0 64 28.7 64 64v197.5c0 17-6.7 33.3-18.7 45.3l-58.5 58.5c-12 12-28.3 18.7-45.3 18.7H160c-35.3 0-64-28.7-64-64m176-224c-8.8 0-16 7.2-16 16v48h-48c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48v-48c0-8.8-7.2-16-16-16zm24 336c13.3 0 24 10.7 24 24s-10.7 24-24 24H136C60.9 512 0 451.1 0 376V152c0-13.3 10.7-24 24-24s24 10.7 24 24v224c0 48.6 39.4 88 88 88z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/o.svg�����������������������������0000664�0000000�0000000�00000000601�14753064456�0026226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 96a160 160 0 1 0 0 320 160 160 0 1 0 0-320m224 160a224 224 0 1 1-448 0 224 224 0 1 1 448 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/object-group.svg������������������0000664�0000000�0000000�00000001713�14753064456�0030375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 119.4C12.9 108.4 0 87.7 0 64 0 28.7 28.7 0 64 0c23.7 0 44.4 12.9 55.4 32h337.1C467.6 12.9 488.3 0 512 0c35.3 0 64 28.7 64 64 0 23.7-12.9 44.4-32 55.4v273.1c19.1 11.1 32 31.7 32 55.4 0 35.3-28.7 64-64 64-23.7 0-44.4-12.9-55.4-32H119.5c-11.1 19.1-31.7 32-55.4 32-35.3 0-64-28.7-64-64 0-23.7 12.9-44.4 32-55.4V119.4zM456.6 96H119.4c-5.6 9.7-13.7 17.8-23.4 23.4v273.1c9.7 5.6 17.8 13.7 23.4 23.4h337.1c5.6-9.7 13.7-17.8 23.4-23.4V119.4c-9.7-5.6-17.8-13.7-23.4-23.4zM128 160c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32zm128 160h32c35.3 0 64-28.7 64-64v-32h64c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H288c-17.7 0-32-14.3-32-32z"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/object-ungroup.svg����������������0000664�0000000�0000000�00000002165�14753064456�0030742�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 119.4C12.9 108.4 0 87.7 0 64 0 28.7 28.7 0 64 0c23.7 0 44.4 12.9 55.4 32h209.1C339.6 12.9 360.3 0 384 0c35.3 0 64 28.7 64 64 0 23.7-12.9 44.4-32 55.4v113.1c19.1 11.1 32 31.7 32 55.4 0 35.3-28.7 64-64 64-23.7 0-44.4-12.9-55.4-32H119.5c-11.1 19.1-31.7 32-55.4 32-35.3 0-64-28.7-64-64 0-23.7 12.9-44.4 32-55.4V119.4zM119.4 96c-5.6 9.7-13.7 17.8-23.4 23.4v113.1c9.7 5.6 17.8 13.7 23.4 23.4h209.1c5.6-9.7 13.7-17.8 23.4-23.4V119.4c-9.7-5.6-17.8-13.7-23.4-23.4zm192 384c-11.1 19.1-31.7 32-55.4 32-35.3 0-64-28.7-64-64 0-23.7 12.9-44.4 32-55.4V352h64v40.6c9.7 5.6 17.8 13.7 23.4 23.4h209.1c5.6-9.7 13.7-17.8 23.4-23.4V279.5c-9.7-5.6-17.8-13.7-23.4-23.4h-46c-5.4-15.4-14.6-28.9-26.5-39.6v-24.4h72.6c11.1-19.1 31.7-32 55.4-32 35.3 0 64 28.7 64 64 0 23.7-12.9 44.4-32 55.4v113.1c19.1 11.1 32 31.7 32 55.4 0 35.3-28.7 64-64 64-23.7 0-44.4-12.9-55.4-32H311.5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/oil-can.svg�����������������������0000664�0000000�0000000�00000001153�14753064456�0027315�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 128c17.7 0 32-14.3 32-32s-14.3-32-32-32H192c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v32H48c-26.5 0-48 21.5-48 48v64.8c0 19 11.2 36.2 28.5 43.9l67.5 30V368c0 26.5 21.5 48 48 48h259.1c18.4 0 35.8-7.9 48-21.7l182.4-206.6c12.3-13.9-.3-35.4-18.4-31.5L448 192l-50.5-25.2c-8.9-4.4-18.7-6.8-28.6-6.8H288v-32zM96 208v86.1l-48-21.3V208z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/oil-well.svg����������������������0000664�0000000�0000000�00000001421�14753064456�0027515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M528.3 61.3c-11.4-42.7-55.3-68-98-56.6l-15.4 4.1C397.8 13.4 387.7 31 392.3 48l24.5 91.4-108.3 28.1-6.3-18.1c-4.5-12.8-16.6-21.4-30.2-21.4s-25.7 8.6-30.2 21.4l-13.6 39L96 222.6V184c0-13.3-10.7-24-24-24s-24 10.7-24 24v264H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h512c17.7 0 32-14.3 32-32s-14.3-32-32-32H406.7L340 257.5l-62.2 16.1 27.5 78.4h-66.6l26.3-75-74.6 19.3L137.3 448H96V288.8l337.4-87.5 25.2 94c4.6 17.1 22.1 27.2 39.2 22.6l15.5-4.1c42.7-11.4 68-55.3 56.6-98zM205.1 448l11.2-32h111.4l11.2 32z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/om.svg����������������������������0000664�0000000�0000000�00000004473�14753064456�0026416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M379.3 4.7c-6.2-6.2-16.4-6.2-22.6 0l-16 16c-6.2 6.2-6.2 16.4 0 22.6l16 16c6.2 6.2 16.4 6.2 22.6 0l16-16c6.2-6.2 6.2-16.4 0-22.6zm-98.3 62c-2.2-1.5-4.9-2.5-7.7-2.7-.6 0-1.3-.1-1.9 0-3.9.2-7.4 1.7-10.1 4.2-.9.8-1.6 1.7-2.3 2.6-1.7 2.4-2.7 5.3-2.9 8.5v2.1c.2 2.2.9 4.3 1.9 6.2l.3.6c.3.6.8 1.4 1.4 2.4 1.2 2 2.9 4.8 5.1 8.2 4.4 6.7 11.1 15.5 20 24.4 17.6 17.9 45.5 36.8 83.2 36.8 31.2 0 56.6-10.4 73.9-20.2 8.7-5 15.6-9.9 20.4-13.8 2.4-1.9 4.3-3.6 5.7-4.9.7-.6 1.3-1.2 1.7-1.6l.6-.5.1-.1.1-.1c5.9-5.8 9.5-13.9 9.5-22.8 0-17.7-14.3-32-32-32-8.7 0-16.7 3.5-22.4 9.2-.1.1-.2.2-.5.4-.5.5-1.5 1.3-2.8 2.4-2.7 2.2-6.8 5.2-12.1 8.2C399.4 90.4 384.8 96 368 96c-20.8 0-42.4-7-59.5-14.6-8.4-3.7-15.4-7.5-20.3-10.3-2.4-1.4-4.3-2.5-5.6-3.3-.6-.4-1.1-.7-1.4-.9l-.3-.2zM115.2 169.6c8-6 17.9-9.6 28.8-9.6 26.5 0 48 21.5 48 48s-21.5 48-48 48h-34.2c-7.6 0-13.8 6.2-13.8 13.8 0 1.5.2 2.9.7 4.4l8 24c4.4 13.1 16.6 21.9 30.4 21.9H160c35.3 0 64 28.7 64 64s-28.7 64-64 64c-50.8 0-82.7-21.5-102.2-42.8-9.9-10.8-16.6-21.6-20.9-29.7-2.1-4-3.6-7.3-4.5-9.6-.5-1.1-.8-2-1-2.5l-.2-.5c-.3-.9-.7-1.8-1.1-2.6-1.2-2.2-2.8-4-4.7-5.4s-4.1-2.3-6.5-2.8c-1.4-.3-2.9-.3-4.4-.2-2.5.2-4.8 1-6.8 2.3-1.1.7-2.2 1.5-3.1 2.5-2.4 2.5-4.1 5.8-4.5 9.5-.1.6-.1 1.1-.1 1.7 0 .8.1 1.7.2 2.5v.1c0 .3.1.8.2 1.3.2 1.1.4 2.7.8 4.6.8 3.9 2 9.4 3.9 15.9 3.8 13 10.3 30.4 21.3 48C48.7 476.2 89.4 512 160 512c70.7 0 128-57.3 128-128 0-23.3-6.2-45.2-17.1-64h22.6c25.5 0 49.9-10.1 67.9-28.1l26.5-26.5c6-6 14.1-9.4 22.6-9.4h5.5c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32-25.7 0-41.4-12.5-51.2-25.6-5-6.7-8.4-13.4-10.5-18.6-1.1-2.5-1.8-4.6-2.2-6-.2-.7-.4-1.2-.5-1.5l-.1-.2c-.3-1.3-.8-2.6-1.5-3.8-1.1-2-2.6-3.8-4.4-5.1-2.7-2-6-3.2-9.6-3.2h-.2c-8 .1-14.6 6.1-15.6 13.9 0 .3-.1.6-.2 1.1-.1.9-.3 2.1-.4 3.6-.3 3-.6 7.3-.6 12.4 0 10.1 1.1 23.9 5.8 38.1 4.8 14.3 13.4 29.3 28.6 40.7 15.3 11.5 35.9 18.2 62.6 18.2 53 0 96-43 96-96v-96c0-53-43-96-96-96h-5.5c-25.5 0-49.9 10.1-67.9 28.1l-26.5 26.5c-6 6-14.1 9.4-22.6 9.4h-48.3c6.9-14.5 10.8-30.8 10.8-48 0-61.9-50.1-112-112-112-25.2 0-48.5 8.3-67.2 22.4-14.1 10.6-17 30.7-6.4 44.8s30.7 17 44.8 6.4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/otter.svg�������������������������0000664�0000000�0000000�00000003027�14753064456�0027132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m181.5 197.1 12.9 6.4c5.9 3 12.4 4.5 19.1 4.5 23.5 0 42.6-19.1 42.6-42.6V144c0-35.3-28.7-64-64-64h-64c-35.3 0-64 28.7-64 64v21.4c0 23.5 19.1 42.6 42.6 42.6 6.6 0 13.1-1.5 19.1-4.5l12.9-6.4 8.4-4.2-12-7.9c-4.5-3-7.1-8-7.1-13.3V168c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24v3.7c0 5.3-2.7 10.3-7.1 13.3l-11.8 7.9zm-8.6 49.4L160 240l-12.9 6.4c-12.6 6.3-26.5 9.6-40.5 9.6-3.6 0-7.1-.2-10.6-.6v.6c0 35.3 28.7 64 64 64h64c17.7 0 32 14.3 32 32s-14.3 32-32 32h160v-64c0-23.7 12.9-44.4 32-55.4 9.4-5.4 20.3-8.6 32-8.6v-16c0-26.5 21.5-48 48-48 8.8 0 16 7.2 16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16v-99.7c0-48.2-30.8-91-76.6-106.3l-8.5-2.8c-8-2.7-12.6-11.1-10.4-19.3s10.3-13.2 18.6-11.6l19.9 4c89 17.8 153 95.9 153 186.6v1.1c0 123.7-100.3 224-224 224H255.4C132 480 32 380 32 256.6v-39.8c-10.1-14.6-16-32.3-16-51.4v-22.8C6.7 139.3 0 130.5 0 120c0-13.3 10.7-24 24-24h2.8c18-37.8 56.5-64 101.2-64h64c44.7 0 83.2 26.2 101.2 64h2.8c13.3 0 24 10.7 24 24 0 10.5-6.7 19.3-16 22.6v22.8c0 1.4 0 2.8-.1 4.3 12-6.2 25.7-9.6 40.1-9.6h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-13.3 0-24 10.7-24 24v8h56.4c-15.2 17-24.4 39.4-24.4 64h-32c-42.3 0-78.2-27.4-91-65.3-5.1.9-10.3 1.3-15.6 1.3-14.1 0-27.9-3.3-40.5-9.6M96 128a16 16 0 1 1 0 32 16 16 0 1 1 0-32m112 16a16 16 0 1 1 32 0 16 16 0 1 1-32 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/outdent.svg�����������������������0000664�0000000�0000000�00000001365�14753064456�0027462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32h384c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64m192 128c0-17.7 14.3-32 32-32h192c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32m32 96h192c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32M0 448c0-17.7 14.3-32 32-32h384c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32m.2-179.4c-8.2-6.4-8.2-18.9 0-25.3L102.1 164c10.5-8.2 25.8-.7 25.8 12.6v158.6c0 13.3-15.3 20.8-25.8 12.6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/p.svg�����������������������������0000664�0000000�0000000�00000000701�14753064456�0026230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96c0-35.3 28.7-64 64-64h96c88.4 0 160 71.6 160 160s-71.6 160-160 160H64v96c0 17.7-14.3 32-32 32S0 465.7 0 448V96m64 192h96c53 0 96-43 96-96s-43-96-96-96H64z"/></svg>���������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/pager.svg�������������������������0000664�0000000�0000000�00000001227�14753064456�0027073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 128c0-35.3 28.7-64 64-64h384c35.3 0 64 28.7 64 64v256c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm64 32v64c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32v-64c0-17.7-14.3-32-32-32H96c-17.7 0-32 14.3-32 32m16 160c-13.3 0-24 10.7-24 24s10.7 24 24 24h56c13.3 0 24-10.7 24-24s-10.7-24-24-24zm136 0c-13.3 0-24 10.7-24 24s10.7 24 24 24h48c13.3 0 24-10.7 24-24s-10.7-24-24-24z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/paint-roller.svg������������������0000664�0000000�0000000�00000001153�14753064456�0030403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64C0 28.7 28.7 0 64 0h288c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm160 288c0-17.7 14.3-32 32-32v-16c0-44.2 35.8-80 80-80h144c17.7 0 32-14.3 32-32V69.5c37.3 13.2 64 48.7 64 90.5v32c0 53-43 96-96 96H272c-8.8 0-16 7.2-16 16v16c17.7 0 32 14.3 32 32v128c0 17.7-14.3 32-32 32h-64c-17.7 0-32-14.3-32-32z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/paintbrush.svg��������������������0000664�0000000�0000000�00000001145�14753064456�0030153�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M339.3 367.1c27.3-3.9 51.9-19.4 67.2-42.9L568.2 74.1c12.6-19.5 9.4-45.3-7.6-61.2s-42.9-17.3-61.5-3.3L262.4 187.2c-24 18-38.2 46.1-38.4 76.1zm-19.6 25.4-116-104.4C143.9 290.3 96 339.6 96 400c0 3.9.2 7.8.6 11.6 1.8 17.5-10.2 36.4-27.8 36.4H64c-17.7 0-32 14.3-32 32s14.3 32 32 32h144c61.9 0 112-50.1 112-112 0-2.5-.1-5-.2-7.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/palette.svg�����������������������0000664�0000000�0000000�00000001261�14753064456�0027431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M512 256v2.7c-.4 36.5-33.6 61.3-70.1 61.3H344c-26.5 0-48 21.5-48 48 0 3.4.4 6.7 1 9.9 2.1 10.2 6.5 20 10.8 29.9 6.1 13.8 12.1 27.5 12.1 42 0 31.8-21.6 60.7-53.4 62-3.5.1-7 .2-10.6.2C114.6 512 0 397.4 0 256S114.6 0 256 0s256 114.6 256 256m-384 32a32 32 0 1 0-64 0 32 32 0 1 0 64 0m0-96a32 32 0 1 0 0-64 32 32 0 1 0 0 64m160-96a32 32 0 1 0-64 0 32 32 0 1 0 64 0m96 96a32 32 0 1 0 0-64 32 32 0 1 0 0 64"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/pallet.svg������������������������0000664�0000000�0000000�00000000770�14753064456�0027260�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 320c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v64H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h576c17.7 0 32-14.3 32-32s-14.3-32-32-32h-32v-64h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H32m96 64h160v64H128zm224 0h160v64H352z"/></svg>��������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/panorama.svg����������������������0000664�0000000�0000000�00000001632�14753064456�0027573�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M45.6 32C20.4 32 0 52.4 0 77.6v356.8C0 459.6 20.4 480 45.6 480q7.65 0 14.7-2.4C74.6 472.8 177.6 440 320 440s245.4 32.8 259.6 37.6c4.7 1.6 9.7 2.4 14.7 2.4 25.2 0 45.6-20.4 45.6-45.6V77.7C640 52.4 619.6 32 594.4 32c-5 0-10 .8-14.7 2.4C565.4 39.2 462.4 72 320 72S74.6 39.2 60.4 34.4c-4.8-1.6-9.7-2.4-14.8-2.4M96 160a32 32 0 1 1 64 0 32 32 0 1 1-64 0m272 0c7.9 0 15.4 3.9 19.8 10.5L512.3 353c5.4 8 5.6 18.4.4 26.5s-14.7 12.3-24.2 10.7C442.7 382.4 385.2 376 320 376c-65.6 0-123.4 6.5-169.3 14.4-9.8 1.7-19.7-2.9-24.7-11.5s-4.3-19.4 1.9-27.2l69.4-86.7c4.6-5.7 11.4-9 18.7-9s14.2 3.3 18.7 9l26.4 33.1 87-127.6c4.5-6.6 11.9-10.5 19.8-10.5z"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/paper-plane.svg�������������������0000664�0000000�0000000�00000001152�14753064456�0030176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M498.1 5.6c10.1 7 15.4 19.1 13.5 31.2l-64 416c-1.5 9.7-7.4 18.2-16 23s-18.9 5.4-28 1.6L284 427.7l-68.5 74.1c-8.9 9.7-22.9 12.9-35.2 8.1S160 493.2 160 480v-83.6c0-4 1.5-7.8 4.2-10.8l167.6-182.8c5.8-6.3 5.6-16-.4-22s-15.7-6.4-22-.7L106 360.8l-88.3-44.2C7.1 311.3.3 300.7 0 288.9s5.9-22.8 16.1-28.7l448-256c10.7-6.1 23.9-5.5 34 1.4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/paperclip.svg���������������������0000664�0000000�0000000�00000001334�14753064456�0027753�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M364.2 83.8c-24.4-24.4-64-24.4-88.4 0l-184 184c-42.1 42.1-42.1 110.3 0 152.4s110.3 42.1 152.4 0l152-152c10.9-10.9 28.7-10.9 39.6 0s10.9 28.7 0 39.6l-152 152c-64 64-167.6 64-231.6 0s-64-167.6 0-231.6l184-184c46.3-46.3 121.3-46.3 167.6 0s46.3 121.3 0 167.6l-176 176c-28.6 28.6-75 28.6-103.6 0s-28.6-75 0-103.6l144-144c10.9-10.9 28.7-10.9 39.6 0s10.9 28.7 0 39.6l-144 144c-6.7 6.7-6.7 17.7 0 24.4s17.7 6.7 24.4 0l176-176c24.4-24.4 24.4-64 0-88.4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/parachute-box.svg�����������������0000664�0000000�0000000�00000001545�14753064456�0030542�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M383.5 192c.3-5.3.5-10.6.5-16 0-51-15.9-96-40.2-127.6C319.5 16.9 288.2 0 256 0s-63.5 16.9-87.8 48.4C143.9 80 128 125 128 176c0 5.4.2 10.7.5 16H240v128h-32c-7 0-13.7 1.5-19.7 4.2L68.2 192h28.3c-.3-5.3-.5-10.6-.5-16 0-64 22.2-121.2 57.1-159.3C62 49.3 18.6 122.6 4.2 173.6 1.5 183.1 9 192 18.9 192h6l140.3 154.3c-3.3 6.5-5.2 13.9-5.2 21.7v96c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48v-96c0-7.8-1.9-15.2-5.2-21.7L487.1 192h6c9.9 0 17.4-8.9 14.7-18.4-14.4-51-57.8-124.3-148.9-156.9C393.8 54.8 416 112.1 416 176c0 5.4-.2 10.7-.5 16h28.3L323.7 324.2c-6-2.7-12.7-4.2-19.7-4.2h-32V192z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/paragraph.svg���������������������0000664�0000000�0000000�00000000735�14753064456�0027745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 32h224c17.7 0 32 14.3 32 32s-14.3 32-32 32h-32v352c0 17.7-14.3 32-32 32s-32-14.3-32-32V96h-32v352c0 17.7-14.3 32-32 32s-32-14.3-32-32v-96h-32c-88.4 0-160-71.6-160-160S103.6 32 192 32"/></svg>�����������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/passport.svg����������������������0000664�0000000�0000000�00000002041�14753064456�0027643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64C0 28.7 28.7 0 64 0h320c35.3 0 64 28.7 64 64v384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm183 214.8c-27.9-13.2-48.4-39.4-53.7-70.8h39.1c1.6 30.4 7.7 53.8 14.6 70.8m41.3 9.2h-.6c-2.4-3.5-5.7-8.9-9.1-16.5-6-13.6-12.4-34.3-14.2-63.5h47.1c-1.8 29.2-8.1 49.9-14.2 63.5-3.4 7.6-6.7 13-9.1 16.5zm40.7-9.2c6.8-17.1 12.9-40.4 14.6-70.8h39.1c-5.3 31.4-25.8 57.6-53.7 70.8M279.6 176c-1.6-30.4-7.7-53.8-14.6-70.8 27.9 13.2 48.4 39.4 53.7 70.8zm-55.9-80h.6c2.4 3.5 5.7 8.9 9.1 16.5 6 13.6 12.4 34.3 14.2 63.5h-47.1c1.8-29.2 8.1-49.9 14.2-63.5 3.4-7.6 6.7-13 9.1-16.5zm-40.7 9.2c-6.8 17.1-12.9 40.4-14.6 70.8h-39.1c5.3-31.4 25.8-57.6 53.7-70.8M352 192a128 128 0 1 0-256 0 128 128 0 1 0 256 0M112 384c-8.8 0-16 7.2-16 16s7.2 16 16 16h224c8.8 0 16-7.2 16-16s-7.2-16-16-16z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/paste.svg�������������������������0000664�0000000�0000000�00000001211�14753064456�0027102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 0c-23.7 0-44.4 12.9-55.4 32H48C21.5 32 0 53.5 0 80v320c0 26.5 21.5 48 48 48h144V176c0-44.2 35.8-80 80-80h48V80c0-26.5-21.5-48-48-48h-56.6c-11-19.1-31.7-32-55.4-32m112 128c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h192c26.5 0 48-21.5 48-48V243.9c0-12.7-5.1-24.9-14.1-33.9L430 142.1c-9-9-21.2-14.1-33.9-14.1H272M160 40a24 24 0 1 1 0 48 24 24 0 1 1 0-48"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/pause.svg�������������������������0000664�0000000�0000000�00000000757�14753064456�0027121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48 64C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h32c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm192 0c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h32c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48z"/></svg>�����������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/paw.svg���������������������������0000664�0000000�0000000�00000001667�14753064456�0026574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M226.5 92.9c14.3 42.9-.3 86.2-32.6 96.8s-70.1-15.6-84.4-58.5.3-86.2 32.6-96.8 70.1 15.6 84.4 58.5M100.4 198.6c18.9 32.4 14.3 70.1-10.2 84.1s-59.7-.9-78.5-33.3-14.4-70.1 10.1-84.1 59.7.9 78.5 33.3zM69.2 401.2C121.6 259.9 214.7 224 256 224s134.4 35.9 186.8 177.2c3.6 9.7 5.2 20.1 5.2 30.5v1.6c0 25.8-20.9 46.7-46.7 46.7-11.5 0-22.9-1.4-34-4.2l-88-22c-15.3-3.8-31.3-3.8-46.6 0l-88 22c-11.1 2.8-22.5 4.2-34 4.2-25.8 0-46.7-20.9-46.7-46.7v-1.6c0-10.4 1.6-20.8 5.2-30.5m352.6-118.5c-24.5-14-29.1-51.7-10.2-84.1s54-47.3 78.5-33.3 29.1 51.7 10.2 84.1-54 47.3-78.5 33.3m-111.7-93c-32.3-10.6-46.9-53.9-32.6-96.8s52.1-69.1 84.4-58.5 46.9 53.9 32.6 96.8-52.1 69.1-84.4 58.5"/></svg>�������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/peace.svg�������������������������0000664�0000000�0000000�00000001141�14753064456�0027045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 445.3V323.5l-94.3 77.1c26.1 22.8 58.5 38.7 94.3 44.7M89.2 351.1 224 240.8V66.6C133.2 81.9 64 160.9 64 256c0 34.6 9.2 67.1 25.2 95.1m293.1 49.5L288 323.5v121.8c35.7-6 68.1-21.9 94.3-44.7m40.6-49.5c16-28 25.2-60.5 25.2-95.1 0-95.1-69.2-174.1-160-189.3v174.2l134.7 110.2zM0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/pen-clip.svg����������������������0000664�0000000�0000000�00000001266�14753064456�0027507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m453.3 19.3 39.4 39.4c25 25 25 65.5 0 90.5l-52.1 52.1-1-1-16-16-96-96-17-17 52.1-52.1c25-25 65.5-25 90.5 0zM241 114.9c-9.4-9.4-24.6-9.4-33.9 0L105 217c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L173.1 81c28.1-28.1 73.7-28.1 101.8 0L288 94.1l17 17 96 96 16 16 1 1-17 17-171.5 171.4c-48 48-109.2 80.8-175.8 94.1l-25 5c-7.9 1.6-16-.9-21.7-6.6s-8.1-13.8-6.6-21.7l5-25c13.3-66.6 46.1-127.8 94.1-175.8L254.1 128z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/pen-fancy.svg���������������������0000664�0000000�0000000�00000001224�14753064456�0027652�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M373.5 27.1C388.5 9.9 410.2 0 433 0c43.6 0 79 35.4 79 79 0 22.8-9.9 44.6-27.1 59.6L277.7 319l-10.3-10.3-64-64-10.4-10.4zM170.3 256.9l10.4 10.4 64 64 10.4 10.4-19.2 83.4c-3.9 17.1-16.9 30.7-33.8 35.4L24.3 510.3l95.4-95.4c2.6.7 5.4 1.1 8.3 1.1 17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32c0 2.9.4 5.6 1.1 8.3L1.7 487.6 51.5 310c4.7-16.9 18.3-29.9 35.4-33.8l83.4-19.2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/pen-nib.svg�����������������������0000664�0000000�0000000�00000001265�14753064456�0027327�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m368.4 18.3-55.7 55.8 125.2 125.2 55.7-55.7c21.9-21.9 21.9-57.3 0-79.2l-46-46.1c-21.9-21.9-57.3-21.9-79.2 0M288 94.6l-9.2 2.8-144.1 43.2c-19.9 6-35.7 21.2-42.3 41L3.8 445.8c-3.8 11.3-1 23.9 7.3 32.4l153.6-153.5c-3-6.3-4.7-13.3-4.7-20.7 0-26.5 21.5-48 48-48s48 21.5 48 48-21.5 48-48 48c-7.4 0-14.4-1.7-20.7-4.7L33.7 500.9c8.6 8.3 21.1 11.2 32.4 7.3l264.3-88.6c19.7-6.6 35-22.4 41-42.3l43.2-144.1 2.7-9.2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/pen-ruler.svg���������������������0000664�0000000�0000000�00000001636�14753064456�0027712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m469.3 19.3 23.4 23.4c25 25 25 65.5 0 90.5l-56.4 56.4-114-113.9 56.4-56.4c25-25 65.5-25 90.5 0zM44.9 353.2 299.7 98.3l114 114-254.9 254.8c-6.7 6.7-15.1 11.6-24.2 14.2L30.6 511c-8.4 2.4-17.4.1-23.6-6.1s-8.5-15.2-6.1-23.6l29.7-104c2.6-9.2 7.5-17.5 14.2-24.2zm204.5-249.8-146 146L16 161.9C-2.7 143.2-2.7 112.8 16 94l78.1-78c18.7-18.7 49.1-18.7 67.9 0l19.8 19.8c-.3.3-.7.6-1 .9l-64 64c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l64-64c.3-.3.6-.7.9-1zm159.2 159.2 45.1 45.1c-.3.3-.7.6-1 .9l-64 64c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l64-64c.3-.3.6-.7.9-1l19.8 19.9c18.7 18.7 18.7 49.1 0 67.9l-78.1 78c-18.7 18.7-49.1 18.7-67.9 0l-87.4-87.4z"/></svg>��������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/pen-to-square.svg�����������������0000664�0000000�0000000�00000001365�14753064456�0030500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M471.6 21.7c-21.9-21.9-57.3-21.9-79.2 0l-30.1 30 97.9 97.9 30.1-30.1c21.9-21.9 21.9-57.3 0-79.2zm-299.2 220c-6.1 6.1-10.8 13.6-13.5 21.9l-29.6 88.8c-2.9 8.6-.6 18.1 5.8 24.6s15.9 8.7 24.6 5.8l88.8-29.6c8.2-2.7 15.7-7.4 21.9-13.5l167.3-167.4-98-98zM96 64c-53 0-96 43-96 96v256c0 53 43 96 96 96h256c53 0 96-43 96-96v-96c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/pen.svg���������������������������0000664�0000000�0000000�00000001023�14753064456�0026551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m362.7 19.3-48.4 48.4 130 130 48.4-48.4c25-25 25-65.5 0-90.5l-39.4-39.5c-25-25-65.5-25-90.5 0zm-71 71L58.6 323.5c-10.4 10.4-18 23.3-22.2 37.4L1 481.2c-2.5 8.5-.2 17.6 6 23.8s15.3 8.5 23.7 6.1L151 475.7c14.1-4.2 27-11.8 37.4-22.2l233.3-233.2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/pencil.svg������������������������0000664�0000000�0000000�00000001571�14753064456�0027251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m410.3 231 11.3-11.3-33.9-33.9-62.1-62.1-33.9-33.9-11.3 11.3-22.6 22.6L58.6 322.9c-10.4 10.4-18 23.3-22.2 37.4L1 480.7c-2.5 8.4-.2 17.5 6.1 23.7s15.3 8.5 23.7 6.1l120.3-35.4c14.1-4.2 27-11.8 37.4-22.2l199.2-199.2zM160 399.4l-9.1 22.7c-4 3.1-8.5 5.4-13.3 6.9l-78.2 23 23-78.1c1.4-4.9 3.8-9.4 6.9-13.3l22.7-9.1v32c0 8.8 7.2 16 16 16h32zM362.7 18.7l-14.4 14.5-22.6 22.6-11.4 11.3 33.9 33.9 62.1 62.1 33.9 33.9 11.3-11.3 22.6-22.6 14.5-14.5c25-25 25-65.5 0-90.5l-39.3-39.4c-25-25-65.5-25-90.5 0zm-47.4 168-144 144c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l144-144c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6"/></svg>���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/people-arrows.svg�����������������0000664�0000000�0000000�00000002124�14753064456�0030571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 64a64 64 0 1 1 128 0 64 64 0 1 1-128 0M25.9 233.4C29.3 191.9 64 160 105.6 160h44.8c27 0 51 13.4 65.5 34.1q-4.05 2.85-7.5 6.3l-64 64c-21.9 21.9-21.9 57.3 0 79.2l47.6 47.6V464c0 26.5-21.5 48-48 48h-32c-26.5 0-48-21.5-48-48V348.3c-26.5-9.5-44.7-35.8-42.2-65.6zM448 64a64 64 0 1 1 128 0 64 64 0 1 1-128 0m-16.4 136.4c-2.3-2.3-4.9-4.4-7.5-6.3 14.5-20.7 38.6-34.1 65.5-34.1h44.8c41.6 0 76.3 31.9 79.7 73.4l4.1 49.3c2.5 29.8-15.7 56.1-42.2 65.6V464c0 26.5-21.5 48-48 48h-32c-26.5 0-48-21.5-48-48v-72.8l47.6-47.6c21.9-21.9 21.9-57.3 0-79.2zM272 240v32h96v-32c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l64 64c9.4 9.4 9.4 24.6 0 33.9l-64 64c-6.9 6.9-17.2 8.9-26.2 5.2S368 377.6 368 367.9v-32h-96v32c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-64-64c-9.4-9.4-9.4-24.6 0-33.9l64-64c6.9-6.9 17.2-8.9 26.2-5.2S272 230.3 272 240"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/people-carry-box.svg��������������0000664�0000000�0000000�00000002305�14753064456�0031163�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M80 48a48 48 0 1 1 96 0 48 48 0 1 1-96 0m64 193.7v65.1l51 51c7.1 7.1 11.8 16.2 13.4 26.1l15.2 90.9c2.9 17.4-8.9 33.9-26.3 36.8s-33.9-8.9-36.8-26.3l-14.3-85.9L66.8 320c-12-12-18.8-28.3-18.8-45.3v-88.1c0-32.4 26.2-58.6 58.6-58.6 24.1 0 46.5 12 59.9 32l47.4 71.1 10.1 5v-76.2c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v76.2l10.1-5 47.4-71.1c13.3-20 35.8-32 59.9-32 32.4 0 58.6 26.2 58.6 58.6v88.1c0 17-6.7 33.3-18.7 45.3l-79.4 79.4-14.3 85.9c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8l15.2-90.9c1.6-9.9 6.3-19 13.4-26.1l51-51v-65.1l-19 28.5c-4.6 7-11 12.6-18.5 16.3L399 316.3c-2.4 1.3-4.9 2.2-7.6 2.8-2.6.6-5.3.9-7.9.8H256.8c-2.5.1-5-.2-7.5-.7q-4.35-.9-8.1-3l-59.5-29.8c-7.5-3.7-13.8-9.4-18.5-16.3l-19-28.5zM2.3 468.1l47.8-119.5 49.2 49.2-37.6 94c-6.6 16.4-25.2 24.4-41.6 17.8s-24.4-25.1-17.8-41.5M512 0a48 48 0 1 1 0 96 48 48 0 1 1 0-96m77.9 348.6 47.8 119.5c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8l-37.6-94 49.2-49.2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/people-group.svg������������������0000664�0000000�0000000�00000002267�14753064456�0030420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M72 88a56 56 0 1 1 112 0 56 56 0 1 1-112 0m-8 157.7c-10 11.2-16 26.1-16 42.3s6 31.1 16 42.3v-84.7zm144.4-49.3C178.7 222.7 160 261.2 160 304c0 34.3 12 65.8 32 90.5V416c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32v-26.8C26.2 371.2 0 332.7 0 288c0-61.9 50.1-112 112-112h32c24 0 46.2 7.5 64.4 20.3zM448 416v-21.5c20-24.7 32-56.2 32-90.5 0-42.8-18.7-81.3-48.4-107.7C449.8 183.5 472 176 496 176h32c61.9 0 112 50.1 112 112 0 44.7-26.2 83.2-64 101.2V416c0 17.7-14.3 32-32 32h-64c-17.7 0-32-14.3-32-32m8-328a56 56 0 1 1 112 0 56 56 0 1 1-112 0m120 157.7v84.7c10-11.3 16-26.1 16-42.3s-6-31.1-16-42.3zM320 32a64 64 0 1 1 0 128 64 64 0 1 1 0-128m-80 272c0 16.2 6 31 16 42.3v-84.7c-10 11.3-16 26.1-16 42.3zm144-42.3v84.7c10-11.3 16-26.1 16-42.3s-6-31.1-16-42.3zm64 42.3c0 44.7-26.2 83.2-64 101.2V448c0 17.7-14.3 32-32 32h-64c-17.7 0-32-14.3-32-32v-42.8c-37.8-18-64-56.5-64-101.2 0-61.9 50.1-112 112-112h32c61.9 0 112 50.1 112 112"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/people-line.svg�������������������0000664�0000000�0000000�00000002275�14753064456�0030212�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M360 72a40 40 0 1 0-80 0 40 40 0 1 0 80 0M144 208a40 40 0 1 0 0-80 40 40 0 1 0 0 80M32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32h576c17.7 0 32-14.3 32-32s-14.3-32-32-32zm464-208a40 40 0 1 0 0-80 40 40 0 1 0 0 80M200 313.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-36.3-67.5c1.7-1.7 3.2-3.6 4.3-5.8l26.8-49.9V272c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32v-54.5l26.9 49.9c1.2 2.2 2.6 4.1 4.3 5.8l-36.3 67.5c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8l26.8-49.9V352c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32v-38.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-37.9-70.3c-15.3-28.5-45.1-46.3-77.5-46.3h-19.5c-16.3 0-31.9 4.5-45.4 12.6l-33.6-62.3c-15.3-28.5-45.1-46.3-77.5-46.3h-19.5c-32.4 0-62.1 17.8-77.5 46.3l-33.6 62.3c-13.5-8.1-29.1-12.6-45.4-12.6h-19.5c-32.4 0-62.1 17.8-77.5 46.3l-37.9 70.2c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8L88 313.5V352c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/people-pulling.svg����������������0000664�0000000�0000000�00000002453�14753064456�0030733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M80 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96m-16 32c-35.3 0-64 28.7-64 64v128c0 17.7 14.3 32 32 32 9.8 0 18.5-4.4 24.4-11.2l24 144.5c2.9 17.4 19.4 29.2 36.8 26.3s29.2-19.4 26.3-36.8L123.1 352h15.7l30 134.9c3.8 17.3 20.9 28.1 38.2 24.3s28.1-20.9 24.3-38.2L174 215l116.3 53.8c.5.3 1.1.5 1.6.7 8.6 3.6 18 3.1 25.9-.7 3.4-1.6 6.6-3.9 9.3-6.7 3.1-3.2 5.5-7 7.1-11.4.1-.3.2-.7.3-1l2.5-7.5c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L537 232.7l-15.3-36.8c-17.2-41.1-57.4-67.9-102-67.9-22.8 0-45.3 4.8-66.1 14l-8 3.5a128.9 128.9 0 0 0-58.1 51.6l-130.2-60.2c-12.6-5.9-26.4-8.9-40.3-8.9zm400-32a48 48 0 1 0 0-96 48 48 0 1 0 0 96M349.7 335.6l-25 62.4-59.4 59.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l61.7-61.7c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/people-robbery.svg����������������0000664�0000000�0000000�00000001666�14753064456�0030732�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M488.2 59.1C478.1 99.6 441.7 128 400 128s-78.1-28.4-88.2-68.9L303 24.2C298.8 7.1 281.4-3.3 264.2 1S236.7 22.6 241 39.8l8.7 34.9c11 44 40.2 79.6 78.3 99.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352h16v128c0 17.7 14.3 32 32 32s32-14.3 32-32V174.3c38.1-20 67.3-55.6 78.3-99.6l8.7-34.9c4.3-17.1-6.1-34.5-23.3-38.8S501.2 7.1 497 24.2l-8.7 34.9zM400 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96M80 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96m-8 32c-35.3 0-64 28.7-64 64v288c0 17.7 14.3 32 32 32s32-14.3 32-32V352h16v128c0 17.7 14.3 32 32 32s32-14.3 32-32V252.7l13 20.5c5.9 9.2 16.1 14.9 27 14.9h48c17.7 0 32-14.3 32-32s-14.3-32-32-32h-30.4l-37.4-58.9C157.6 142 132.1 128 104.7 128z"/></svg>��������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/people-roof.svg�������������������0000664�0000000�0000000�00000002420�14753064456�0030220�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m335.5 4 288 160c15.4 8.6 21 28.1 12.4 43.5s-28.1 21-43.5 12.4L320 68.6 47.5 220c-15.4 8.6-34.9 3-43.5-12.4s-3-34.9 12.4-43.5L304.5 4c9.7-5.4 21.4-5.4 31.1 0zM320 160a40 40 0 1 1 0 80 40 40 0 1 1 0-80m-176 96a40 40 0 1 1 0 80 40 40 0 1 1 0-80m312 40a40 40 0 1 1 80 0 40 40 0 1 1-80 0M226.9 491.4 200 441.5V480c0 17.7-14.3 32-32 32h-48c-17.7 0-32-14.3-32-32v-38.5l-26.9 49.9c-6.3 11.7-20.8 16-32.5 9.8s-16-20.8-9.8-32.5l37.9-70.3c15.3-28.5 45.1-46.3 77.5-46.3h19.5c16.3 0 31.9 4.5 45.4 12.6l33.6-62.3c15.3-28.5 45.1-46.3 77.5-46.3h19.5c32.4 0 62.1 17.8 77.5 46.3l33.6 62.3c13.5-8.1 29.1-12.6 45.4-12.6h19.5c32.4 0 62.1 17.8 77.5 46.3l37.9 70.3c6.3 11.7 1.9 26.2-9.8 32.5s-26.2 1.9-32.5-9.8L552 441.5V480c0 17.7-14.3 32-32 32h-48c-17.7 0-32-14.3-32-32v-38.5l-26.9 49.9c-6.3 11.7-20.8 16-32.5 9.8s-16-20.8-9.8-32.5l36.3-67.5c-1.7-1.7-3.2-3.6-4.3-5.8L376 345.5V400c0 17.7-14.3 32-32 32h-48c-17.7 0-32-14.3-32-32v-54.5l-26.9 49.9c-1.2 2.2-2.6 4.1-4.3 5.8l36.3 67.5c6.3 11.7 1.9 26.2-9.8 32.5s-26.2 1.9-32.5-9.8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/pepper-hot.svg��������������������0000664�0000000�0000000�00000001550�14753064456�0030057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M428.3 3c11.6-6.4 26.2-2.3 32.6 9.3l4.8 8.7c19.3 34.7 19.8 75.7 3.4 110 26.7 28.6 42.9 66.9 42.9 109 0 18.5-3.1 36.3-8.9 52.8-6.1 17.3-28.5 16.3-36.8-.1l-11.7-23.4c-4.1-8.1-12.4-13.3-21.5-13.3H360c-13.3 0-24-10.7-24-24v-80c0-13.3-10.7-24-24-24h-17.1c-21.3 0-30-23.9-10.8-32.9C304.7 85.4 327.7 80 352 80c28.3 0 54.8 7.3 77.8 20.2 5.5-18.2 3.7-38.4-6-55.8l-4.8-8.7c-6.4-11.6-2.3-26.2 9.3-32.6zM171.2 345.5 264 160h40v80c0 26.5 21.5 48 48 48h76.2l23.9 47.8C372.3 443.9 244.3 512 103.2 512H44.4C19.9 512 0 492.1 0 467.6c0-20.8 14.5-38.8 34.8-43.3l49.8-11.1c37.6-8.4 69.5-33.2 86.7-67.7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/percent.svg�����������������������0000664�0000000�0000000�00000000752�14753064456�0027437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M374.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-320 320c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0zM128 128a64 64 0 1 0-128 0 64 64 0 1 0 128 0m256 256a64 64 0 1 0-128 0 64 64 0 1 0 128 0"/></svg>����������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-arrow-down-to-line.svg�����0000664�0000000�0000000�00000001514�14753064456�0032744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96m-8 352v-96h16v96zm-64 0H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h576c17.7 0 32-14.3 32-32s-14.3-32-32-32H264V256.9l28.6 47.5c9.1 15.1 28.8 20 43.9 10.9s20-28.8 10.9-43.9l-58.3-97c-17.4-28.9-48.6-46.6-82.3-46.6h-29.7c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9l28.7-47.5zM464 64v242.7l-25.4-25.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l80 80c12.5 12.5 32.8 12.5 45.3 0l80-80c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L528 306.7V64c0-17.7-14.3-32-32-32s-32 14.3-32 32"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-arrow-up-from-line.svg�����0000664�0000000�0000000�00000001521�14753064456�0032740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96m-8 352v-96h16v96zm-64 0H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h576c17.7 0 32-14.3 32-32s-14.3-32-32-32H264V256.9l28.6 47.5c9.1 15.1 28.8 20 43.9 10.9s20-28.8 10.9-43.9l-58.3-97c-17.4-28.9-48.6-46.6-82.3-46.6h-29.7c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9l28.7-47.5zm478.6-326.6-80-80c-12.5-12.5-32.8-12.5-45.3 0l-80 80c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l25.4-25.4V384c0 17.7 14.3 32 32 32s32-14.3 32-32V141.3l25.4 25.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-biking.svg�����������������0000664�0000000�0000000�00000001373�14753064456�0030546�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M400 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96m27.2 64-61.8-48.8c-17.3-13.6-41.7-13.8-59.1-.3l-83.1 64.2c-30.7 23.8-28.5 70.8 4.3 91.6l60.5 38.4V416c0 17.7 14.3 32 32 32s32-14.3 32-32V288c0-10.7-5.3-20.7-14.2-26.6L295 232.9l60.3-48.5L396 217c5.7 4.5 12.7 7 20 7h64c17.7 0 32-14.3 32-32s-14.3-32-32-32zM56 384a72 72 0 1 1 144 0 72 72 0 1 1-144 0m200 0a128 128 0 1 0-256 0 128 128 0 1 0 256 0m184 0a72 72 0 1 1 144 0 72 72 0 1 1-144 0m200 0a128 128 0 1 0-256 0 128 128 0 1 0 256 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-booth.svg������������������0000664�0000000�0000000�00000002021�14753064456�0030405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 32c0-17.7-14.3-32-32-32s-32 14.3-32 32v160h64zm320 0c0-17.7-14.3-32-32-32s-32 14.3-32 32v448c0 17.7 14.3 32 32 32s32-14.3 32-32zM224 512c17.7 0 32-14.3 32-32V320h-64v160c0 17.7 14.3 32 32 32M320 0c-9.3 0-18.1 4-24.2 11s-8.8 16.3-7.5 25.5l31.2 218.6-30.9 154.6c-3.5 17.3 7.8 34.2 25.1 37.7s34.2-7.8 37.7-25.1l.7-3.6c1.3 16.4 15.1 29.4 31.9 29.4 17.7 0 32-14.3 32-32 0 17.7 14.3 32 32 32s32-14.3 32-32v-384c0-17.7-14.3-32-32-32zM112 80a48 48 0 1 0-96 0 48 48 0 1 0 96 0m0 261.3v-72.1l4.7 4.7c9 9 21.2 14.1 33.9 14.1H224c17.7 0 32-14.3 32-32s-14.3-32-32-32h-66.7l-41.6-41.6c-14.3-14.3-33.8-22.4-54-22.4C27.6 160 0 187.6 0 221.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32v-96l32 42.7V480c0 17.7 14.3 32 32 32s32-14.3 32-32v-58.7c0-10.4-3.4-20.5-9.6-28.8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-breastfeeding.svg����������0000664�0000000�0000000�00000001606�14753064456�0032104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 0a80 80 0 1 1 0 160 80 80 0 1 1 0-160m212.8 382.8L373.5 462c-16.6 20.7-46.8 24.1-67.5 7.5-17.6-14.1-22.7-38.1-13.5-57.7l-.8-.1c-38.9-5.6-74.3-25.1-99.7-54.8v-36.8c0-17.7-14.3-32-32-32s-32 14.3-32 32v48c0 .8 0 1.6.1 2.4l101.4 50.7c23.7 11.9 33.3 40.7 21.5 64.4s-40.7 33.3-64.4 21.5L27.2 427.3c-1.1-.5-2.2-1.1-3.3-1.7-4.9-2.8-9.2-6.4-12.6-10.6-4.6-5.4-7.8-11.7-9.6-18.4-3.3-12-1.9-25.2 4.8-36.6.6-1.1 1.3-2.2 2-3.2l67.1-100.7C102.3 216 147.3 192 195.4 192h75.2c46.5 0 90.1 22.5 117.2 60.3l50.7 70.9c2.2 3 4 6.1 5.5 9.4 2.9 6.7 4.3 13.8 4 20.8-.3 10.6-4.2 21-11.2 29.4M320 332a44 44 0 1 0-88 0 44 44 0 1 0 88 0"/></svg>��������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-burst.svg������������������0000664�0000000�0000000�00000002002�14753064456�0030430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M480 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96m-8 384V352h16v128c0 17.7 14.3 32 32 32s32-14.3 32-32V256.9l28.6 47.5c9.1 15.1 28.8 20 43.9 10.9s20-28.8 10.9-43.9l-58.3-97c-17.4-28.9-48.6-46.6-82.3-46.6h-29.7c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9l28.7-47.5V480c0 17.7 14.3 32 32 32s32-14.3 32-32M190.9 18.1C188.4 12 182.6 8 176 8s-12.4 4-14.9 10.1l-29.4 74-76.1-23.2c-6.3-1.9-13.1.2-17.2 5.3S33.8 86.4 37 92.1l39.5 69.1-65.6 45.2c-5.4 3.7-8 10.3-6.5 16.7s6.7 11.2 13.1 12.2l78.7 12.2-5.6 79.5c-.5 6.5 3.1 12.7 9 15.5s12.9 1.8 17.8-2.6l58.6-53.8 58.6 53.9c4.8 4.4 11.9 5.5 17.8 2.6s9.5-9 9-15.5l-5.6-79.4 50.5-7.8 24.3-40.5-55.2-38L315 92.2c3.3-5.7 2.7-12.8-1.4-17.9s-10.9-7.2-17.2-5.3l-76.1 23.1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-cane.svg�������������������0000664�0000000�0000000�00000001407�14753064456�0030207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M272 48a48 48 0 1 0-96 0 48 48 0 1 0 96 0m-8 187.3 47.4 57.1c11.3 13.6 31.5 15.5 45.1 4.2s15.5-31.5 4.2-45.1L287 162.6c-18.2-22-45.3-34.7-73.9-34.7h-35.9c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9l28.6-47.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352h16v128c0 17.7 14.3 32 32 32s32-14.3 32-32zM352 376c0-4.4 3.6-8 8-8s8 3.6 8 8v112c0 13.3 10.7 24 24 24s24-10.7 24-24V376c0-30.9-25.1-56-56-56s-56 25.1-56 56v8c0 13.3 10.7 24 24 24s24-10.7 24-24z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-chalkboard.svg�������������0000664�0000000�0000000�00000001271�14753064456�0031372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96m-8 384V352h16v128c0 17.7 14.3 32 32 32s32-14.3 32-32V192h136c17.7 0 32-14.3 32-32s-14.3-32-32-32h-16V64h192v192H384v-32h-64v48c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H368c-26.5 0-48 21.5-48 48v80H177.2c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9l28.6-47.7V480c0 17.7 14.3 32 32 32s32-14.3 32-32"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-circle-check.svg�����������0000664�0000000�0000000�00000001506�14753064456�0031615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M112 48a48 48 0 1 1 96 0 48 48 0 1 1-96 0m40 304v128c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9l-28.6 47.6c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352zm136 16a144 144 0 1 1 288 0 144 144 0 1 1-288 0m211.3-43.3c-6.2-6.2-16.4-6.2-22.6 0L416 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-circle-exclamation.svg�����0000664�0000000�0000000�00000001444�14753064456�0033045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M112 48a48 48 0 1 1 96 0 48 48 0 1 1-96 0m40 304v128c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9l-28.6 47.6c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352zm280-128a144 144 0 1 1 0 288 144 144 0 1 1 0-288m0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48m0-192c-8.8 0-16 7.2-16 16v80c0 8.8 7.2 16 16 16s16-7.2 16-16v-80c0-8.8-7.2-16-16-16"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-circle-minus.svg�����������0000664�0000000�0000000�00000001374�14753064456�0031676�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M112 48a48 48 0 1 1 96 0 48 48 0 1 1-96 0m40 304v128c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9l-28.6 47.6c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352zm136 16a144 144 0 1 1 288 0 144 144 0 1 1-288 0m224 0c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16s7.2 16 16 16h128c8.8 0 16-7.2 16-16"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-circle-plus.svg������������0000664�0000000�0000000�00000001512�14753064456�0031520�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M112 48a48 48 0 1 1 96 0 48 48 0 1 1-96 0m40 304v128c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9l-28.6 47.6c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352zm280-128a144 144 0 1 1 0 288 144 144 0 1 1 0-288m16 80c0-8.8-7.2-16-16-16s-16 7.2-16 16v48h-48c-8.8 0-16 7.2-16 16s7.2 16 16 16h48v48c0 8.8 7.2 16 16 16s16-7.2 16-16v-48h48c8.8 0 16-7.2 16-16s-7.2-16-16-16h-48z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-circle-question.svg��������0000664�0000000�0000000�00000001774�14753064456�0032416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M112 48a48 48 0 1 1 96 0 48 48 0 1 1-96 0m40 304v128c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9l-28.6 47.6c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352zm280-128a144 144 0 1 1 0 288 144 144 0 1 1 0-288m0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48m-64-142.4v6.4c0 8.8 7.2 16 16 16s16-7.2 16-16v-6.4c0-5.3 4.3-9.6 9.6-9.6h40.5c7.7 0 13.9 6.2 13.9 13.9 0 5.2-2.9 9.9-7.4 12.3l-32 16.8c-5.3 2.8-8.6 8.2-8.6 14.2V384c0 8.8 7.2 16 16 16s16-7.2 16-16v-5.1l23.5-12.3C486.6 358.7 496 343 496 326c0-25.4-20.6-45.9-45.9-45.9h-40.5c-23 0-41.6 18.6-41.6 41.6z"/></svg>����mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-circle-xmark.svg�����������0000664�0000000�0000000�00000001637�14753064456�0031667�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M112 48a48 48 0 1 1 96 0 48 48 0 1 1-96 0m40 304v128c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9l-28.6 47.6c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352zm280-128a144 144 0 1 1 0 288 144 144 0 1 1 0-288m59.3 107.3c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L432 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l36.7 36.7-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l36.7-36.7 36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L454.6 368z"/></svg>�������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-digging.svg����������������0000664�0000000�0000000�00000001553�14753064456�0030713�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M208 64a48 48 0 1 1 96 0 48 48 0 1 1-96 0M9.8 214.8c5.1-12.2 19.1-18 31.4-12.9l19.5 8.1 22.9-38.1C99.9 144.6 129.3 128 161 128c51.4 0 97 32.9 113.3 81.7l34.6 103.7 79.3 33.1 34.2-45.6c6.4-8.5 16.6-13.3 27.2-12.8s20.3 6.4 25.8 15.5l96 160c5.9 9.9 6.1 22.2.4 32.2S555.5 512 544 512H288c-11.1 0-21.4-5.7-27.2-15.2s-6.4-21.2-1.4-31.1l16-32c5.4-10.8 16.5-17.7 28.6-17.7h32l22.5-30L22.8 246.2c-12.2-5.1-18-19.1-12.9-31.4zm82.8 91.8 112 48c11.8 5 19.4 16.6 19.4 29.4v96c0 17.7-14.3 32-32 32s-32-14.3-32-32v-74.9l-60.6-26-37 111c-5.6 16.8-23.7 25.8-40.5 20.2s-25.8-23.7-20.3-40.4l48-144 11-33z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-dots-from-line.svg���������0000664�0000000�0000000�00000001735�14753064456�0032144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 176a88 88 0 1 0 0-176 88 88 0 1 0 0 176M78.7 372.9c15-12.5 50-34.4 97.3-50.1V432h224V322.7c47.3 15.8 82.3 37.7 97.3 50.1 20.4 17 50.6 14.2 67.6-6.1s14.2-50.6-6.1-67.6c-12-10-30.1-22.5-53.2-35-8.4 14.3-23.9 23.9-41.6 23.9-26.5 0-48-21.5-48-48 0-4.3.6-8.4 1.6-12.4C379.1 215.9 335.3 208 288 208c-60.2 0-114.9 12.9-160 29.9v2.1c0 26.5-21.5 48-48 48-11.8 0-22.7-4.3-31-11.4-13.1 8.1-23.7 15.9-31.7 22.5-20.4 17-23.1 47.2-6.1 67.6s47.2 23.1 67.6 6.1zM24 464c-13.3 0-24 10.7-24 24s10.7 24 24 24h528c13.3 0 24-10.7 24-24s-10.7-24-24-24zm200-184a24 24 0 1 1 48 0 24 24 0 1 1-48 0m104 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48M96 240a16 16 0 1 0-32 0 16 16 0 1 0 32 0m368 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32"/></svg>�����������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-dress-burst.svg������������0000664�0000000�0000000�00000002130�14753064456�0031550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M528 48a48 48 0 1 0-96 0 48 48 0 1 0 96 0M390.2 384H408v96c0 17.7 14.3 32 32 32s32-14.3 32-32v-96h16v96c0 17.7 14.3 32 32 32s32-14.3 32-32v-96h17.8c10.9 0 18.6-10.7 15.2-21.1l-38.3-114.8 33.9 56.3c9.1 15.1 28.8 20 43.9 10.9s20-28.8 10.9-43.9l-53.6-89.2c-20.2-33.7-56.7-54.3-96-54.3h-11.6c-39.3 0-75.7 20.6-96 54.3l-53.6 89.2c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9l33.9-56.3L375 362.9c-3.5 10.4 4.3 21.1 15.2 21.1M190.9 18.1C188.4 12 182.6 8 176 8s-12.4 4-14.9 10.1l-29.4 74-76.1-23.2c-6.3-1.9-13.1.2-17.2 5.3S33.8 86.4 37 92.1l39.5 69.1-65.6 45.2c-5.4 3.7-8 10.3-6.5 16.7s6.7 11.2 13.1 12.2l78.7 12.2-5.6 79.5c-.5 6.5 3.1 12.7 9 15.5s12.9 1.8 17.8-2.6l58.6-53.8 58.6 53.9c4.8 4.4 11.9 5.5 17.8 2.6s9.5-9 9-15.5l-5.6-79.4 50.5-7.8 24.4-40.5-55.2-38L315 92.2c3.3-5.7 2.7-12.8-1.4-17.9s-10.9-7.2-17.2-5.3l-76.1 23.1z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-dress.svg������������������0000664�0000000�0000000�00000001300�14753064456�0030411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 0a48 48 0 1 1 0 96 48 48 0 1 1 0-96M88 384H70.2c-10.9 0-18.6-10.7-15.2-21.1l38.3-114.8-33.9 56.4c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l53.6-89.2c20.3-33.7 56.7-54.3 96-54.3h11.6c39.3 0 75.7 20.6 96 54.3l53.6 89.2c9.1 15.1 4.2 34.8-10.9 43.9s-34.8 4.2-43.9-10.9l-33.9-56.3L265 362.9c3.5 10.4-4.3 21.1-15.2 21.1H232v96c0 17.7-14.3 32-32 32s-32-14.3-32-32v-96h-16v96c0 17.7-14.3 32-32 32s-32-14.3-32-32z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-drowning.svg���������������0000664�0000000�0000000�00000002327�14753064456�0031132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 64c0-17.7-14.3-32-32-32s-32 14.3-32 32v32.2c0 54.1 23.5 104 62.2 138.3l-21 146.7c7.8 2.1 15.5 3.3 22.8 3.3 21.1 0 42-8.5 59.2-20.3 22.1-15.5 51.6-15.5 73.7 0 12.4 8.5 26.1 14.8 39.7 18l17.7-97.6c10.7-1.2 21.3-3.1 31.9-5.5l105-23.9c17.2-3.9 28-21.1 24.1-38.3s-21.1-28-38.3-24.1l-105 23.8c-41 9.3-83.7 7.5-123.7-5.2-50.2-16-84.3-62.6-84.3-115.3zm128 128a64 64 0 1 0 0-128 64 64 0 1 0 0 128m-13.5 197.9c-11.1-7.9-25.9-7.9-37 0-22.5 15.5-50 26.1-77.5 26.1-26.9 0-55.3-10.8-77.4-26.1-11.9-8.5-28.1-7.8-39.2 1.7-14.4 11.9-32.5 21-50.6 25.2-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25 29 15.6 61.5 25.9 94.5 25.9 31.9 0 60.6-9.9 80.4-18.9 5.8-2.7 11.1-5.3 15.6-7.7 4.5 2.4 9.7 5.1 15.6 7.7 19.8 9 48.5 18.9 80.4 18.9 33 0 65.5-10.3 94.5-25.8 13.4 8.4 33.7 19.3 58.2 25 17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2-11.1-9.4-27.3-10.1-39.2-1.7-22 15.2-50.5 26-77.4 26-27.5 0-55-10.6-77.5-26.1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-falling-burst.svg����������0000664�0000000�0000000�00000002216�14753064456�0032051�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 32c0-17.7-14.3-32-32-32s-32 14.3-32 32v9.8c0 39-23.7 74-59.9 88.4C71.6 154.5 32 213 32 278.2V352c0 17.7 14.3 32 32 32s32-14.3 32-32v-73.8c0-10 1.6-19.8 4.5-29l160.6 248.2c9.6 14.8 29.4 19.1 44.3 9.5s19.1-29.4 9.5-44.3L222.6 320H304l38.4 51.2c10.6 14.1 30.7 17 44.8 6.4s17-30.7 6.4-44.8l-43.2-57.6c-9.1-12.1-23.3-19.2-38.4-19.2h-71.5l-56.8-80.2-.2-.3c44.7-29 72.5-79 72.5-133.6v-9.8zM96 80a48 48 0 1 0-96 0 48 48 0 1 0 96 0m368 206.1 58.6 53.9c4.8 4.4 11.9 5.5 17.8 2.6s9.5-9 9-15.5l-5.6-79.4 78.7-12.2c6.5-1 11.7-5.9 13.1-12.2s-1.1-13-6.5-16.7l-65.6-45.1L603 92.2c3.3-5.7 2.7-12.8-1.4-17.9s-10.9-7.2-17.2-5.3l-76.1 23.1-29.4-74C476.4 12 470.6 8 464 8s-12.4 4-14.9 10.1l-29.4 74-76.1-23.2c-6.3-1.9-13.1.2-17.2 5.3s-4.6 12.2-1.4 17.9l39.5 69.1-65.6 45.1c-5.4 3.7-8 10.3-6.5 16.7.1.3.1.6.2.8H312c20.1 0 39.2 7.5 53.8 20.8l18.4 2.9-1.2 17.8 36.2 48.3c2.1 2.8 3.9 5.7 5.5 8.6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-falling.svg����������������0000664�0000000�0000000�00000001331�14753064456�0030711�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 0c17.7 0 32 14.3 32 32v9.8c0 54.6-27.9 104.6-72.5 133.6l.2.3 56.8 80.3H392c15.1 0 29.3 7.1 38.4 19.2l43.2 57.6c10.6 14.1 7.7 34.2-6.4 44.8s-34.2 7.7-44.8-6.4L384 320h-97.4l92.3 142.6c9.6 14.8 5.4 34.6-9.5 44.3s-34.6 5.4-44.3-9.5L164.5 249.2c-2.9 9.2-4.5 19-4.5 29V352c0 17.7-14.3 32-32 32s-32-14.3-32-32v-73.8c0-65.1 39.6-123.7 100.1-147.9 36.2-14.5 59.9-49.5 59.9-88.5V32c0-17.7 14.3-32 32-32M112 32a48 48 0 1 1 0 96 48 48 0 1 1 0-96"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-half-dress.svg�������������0000664�0000000�0000000�00000001231�14753064456�0031324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 0a48 48 0 1 1 0 96 48 48 0 1 1 0-96m8 352V128h6.9c33.7 0 64.9 17.7 82.3 46.6l58.3 97c9.1 15.1 4.2 34.8-10.9 43.9s-34.8 4.2-43.9-10.9L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32zM58.2 182.3c19.9-33.1 55.3-53.5 93.8-54.3v352c0 17.7-14.3 32-32 32s-32-14.3-32-32v-96H70.2c-10.9 0-18.6-10.7-15.2-21.1l38.3-114.8-33.9 56.4c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-harassing.svg��������������0000664�0000000�0000000�00000002105�14753064456�0031254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96M59.4 304.5 88 256.9V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352h16v128c0 17.7 14.3 32 32 32s32-14.3 32-32V235.3l47.4 57.1c11.3 13.6 31.5 15.5 45.1 4.2s15.5-31.5 4.2-45.1L255 162.6c-18.2-22-45.3-34.7-73.9-34.7h-35.9c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9M480 240a48 48 0 1 0-96 0 48 48 0 1 0 96 0m-16 104v58.7l-41.4-41.4c-7.3-7.3-17.6-10.6-27.8-9s-18.9 8.1-23.5 17.3l-48 96c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3l28.3-56.2 54.7 54.7c12.4 12.4 29.1 19.3 46.6 19.3 36.4 0 65.9-29.5 65.9-65.9V344c0-30.9-25.1-56-56-56s-56 25.1-56 56M288 48c0 8.8 7.2 16 16 16h56c8.8 0 16-7.2 16-16s-7.2-16-16-16h-56c-8.8 0-16 7.2-16 16m-.8 49.7c-7.9-4-17.5-.7-21.5 7.2s-.7 17.5 7.2 21.5l48 24c7.9 4 17.5.7 21.5-7.2s.7-17.5-7.2-21.5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-hiking.svg�����������������0000664�0000000�0000000�00000001646�14753064456�0030557�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 48a48 48 0 1 1 96 0 48 48 0 1 1-96 0m51.3 182.7L224.2 307l49.7 49.7c9 9 14.1 21.2 14.1 33.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32v-82.7l-73.9-73.9c-15.8-15.8-22.2-38.6-16.9-60.3l20.4-84c8.3-34.1 42.7-54.9 76.7-46.4 19 4.8 35.6 16.4 46.4 32.7l28.4 42.6H336v-24c0-13.3 10.7-24 24-24s24 10.7 24 24v304c0 13.3-10.7 24-24 24s-24-10.7-24-24V272h-39.4c-16 0-31-8-39.9-21.4l-13.3-20zM81.1 471.9 117.3 334c3 4.2 6.4 8.2 10.1 11.9l41.9 41.9-26.4 100.3c-4.5 17.1-22 27.3-39.1 22.8s-27.3-22-22.8-39.1zm55.5-346-35.2 140.6c-3 12.1-14.9 19.9-27.2 17.9l-47.9-8c-14-2.3-22.9-16.3-19.2-30L31.9 155c9.5-34.8 41.1-59 77.2-59h4.2c15.6 0 27.1 14.7 23.3 29.8z"/></svg>������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-military-pointing.svg������0000664�0000000�0000000�00000001411�14753064456�0032753�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M246.9 14.1C234 15.2 224 26 224 39c0 13.8 11.2 25 25 25h151c8.8 0 16-7.2 16-16V17.4c0-9.4-8-16.7-17.3-16zM240 112c0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H241.6c-1 5.2-1.6 10.5-1.6 16M72 224c-22.1 0-40 17.9-40 40s17.9 40 40 40h152v89.4l162.8-162.9c-13.3-4.3-27.3-6.5-41.6-6.5H72m345.7 20.9L246.6 416H416v-46.3l53.6 90.6c11.2 19 35.8 25.3 54.8 14.1s25.3-35.8 14.1-54.8l-76.2-128.8c-11.2-18.9-26.6-34.5-44.6-45.9M224 448v32c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32v-32z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-military-rifle.svg���������0000664�0000000�0000000�00000002035�14753064456�0032230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 39c0-13 10-23.8 22.9-24.9L334.7 1.4C344 .7 352 8 352 17.4V48c0 8.8-7.2 16-16 16H185c-13.8 0-25-11.2-25-25m17.6 57h156.8c1 5.2 1.6 10.5 1.6 16 0 44.2-35.8 80-80 80s-80-35.8-80-80c0-5.5.6-10.8 1.6-16m228 364.3L352 369.7V480c0 1.3-.1 2.5-.2 3.8L177.5 234.9c16.6-7.1 34.6-10.9 53.3-10.9h50.4c15.9 0 31.3 2.8 45.8 7.9l94.9-164.2c-7.7-4.4-10.3-14.2-5.9-21.9s14.2-10.3 21.9-5.9l13.9 8 13.9 8c7.7 4.4 10.3 14.2 5.9 21.9L416 173.9l1.6.9c15.3 8.8 20.6 28.4 11.7 43.7L392.6 282c2 2.8 3.9 5.8 5.7 8.8l76.1 128.8c11.2 19 4.9 43.5-14.1 54.8s-43.5 4.9-54.8-14.1zM320 512H192c-17.7 0-32-14.3-32-32V369.7l-53.6 90.6c-11.2 19-35.8 25.3-54.8 14.1s-25.3-35.8-14.1-54.8l76.1-128.8c9.4-15.8 21.7-29.3 36-40L331.1 510c-3.5 1.3-7.2 2-11.1 2m-24-192a24 24 0 1 0 0-48 24 24 0 1 0 0 48"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-military-to-person.svg�����0000664�0000000�0000000�00000002323�14753064456�0033055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M71 12.5c-8.6 1-15 8.2-15 16.8 0 9.3 7.5 16.8 16.7 16.9h111.4c8.8-.1 15.9-7.2 15.9-16V16c0-9.5-8.3-17-17.8-15.9zm118.5 65.6H66.6C64.9 83.8 64 89.8 64 96c0 35.3 28.7 64 64 64s64-28.7 64-64c0-6.2-.9-12.2-2.5-17.9M32 256v32c0 17.7 14.3 32 32 32h128c1.8 0 3.5-.1 5.2-.4L53 208.6c-12.9 11.7-21 28.6-21 47.4m190.2 42.5c1.1-3.3 1.8-6.8 1.8-10.5v-32c0-35.3-28.7-64-64-64H96c-3.7 0-7.4.3-10.9.9zM384 160a64 64 0 1 0 0-128 64 64 0 1 0 0 128m-32 32c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zM215.8 450.1c5.2-4.6 8.2-11.1 8.2-18.1s-3-13.5-8.2-18.1l-64-56c-7.1-6.2-17.1-7.7-25.7-3.8S112 366.6 112 376v32H24c-13.3 0-24 10.7-24 24s10.7 24 24 24h88v32c0 9.4 5.5 18 14.1 21.9s18.6 2.4 25.7-3.8zm72.2-18.2c0 6.9 2.9 13.5 8.1 18.1l64 56.4c7.1 6.2 17.1 7.8 25.7 3.9s14.1-12.4 14.1-21.9V456h88c13.3 0 24-10.7 24-24s-10.7-24-24-24h-88v-32c0-9.4-5.5-18-14.1-21.9s-18.6-2.4-25.7 3.8l-64 56c-5.2 4.5-8.2 11.1-8.2 18z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-praying.svg����������������0000664�0000000�0000000�00000001247�14753064456�0030754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M352 64a64 64 0 1 0-128 0 64 64 0 1 0 128 0M232.7 264l22.9 31.5c6.5 8.9 16.3 14.7 27.2 16.1s21.9-1.7 30.4-8.7l88-72c17.1-14 19.6-39.2 5.6-56.3s-39.2-19.6-56.3-5.6l-55.2 45.2-26.2-36C253.6 156.7 228.6 144 202 144c-30.9 0-59.2 17.1-73.6 44.4l-48.6 92.5c-20.2 38.5-9.4 85.9 25.6 111.8l53.2 39.3H72c-22.1 0-40 17.9-40 40s17.9 40 40 40h208c17.3 0 32.6-11.1 38-27.5s-.3-34.4-14.2-44.7L187.7 354z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-pregnant.svg���������������0000664�0000000�0000000�00000001255�14753064456�0031120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 0a48 48 0 1 1 0 96 48 48 0 1 1 0-96m-72 383c-13.8-3.6-24-16.1-24-31v-55.1l-4.6 7.6c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c15-24.9 40.3-41.5 68.7-45.6 4.1-.6 8.2-1 12.5-1h16c1.4 0 2.8.1 4.1.3 35.7 2.9 65.4 29.3 72.1 65l6.1 32.5c44.3 8.6 77.7 47.5 77.7 94.3v32c0 17.7-14.3 32-32 32h-56v96c0 17.7-14.3 32-32 32s-32-14.3-32-32v-96h-16v96c0 17.7-14.3 32-32 32s-32-14.3-32-32v-97z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-rays.svg�������������������0000664�0000000�0000000�00000002006�14753064456�0030253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M208 48a48 48 0 1 1 96 0 48 48 0 1 1-96 0m40 304v128c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9l-28.6 47.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l58.3 97c9.1 15.1 4.2 34.8-10.9 43.9s-34.8 4.2-43.9-10.9L328 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352zM7 7c9.4-9.3 24.6-9.3 34 0l80 80c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L7 41c-9.3-9.4-9.3-24.6 0-34m464 0c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-80 80c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9zM7 505c-9.4-9.4-9.4-24.6 0-33.9l80-80c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L41 505c-9.4 9.4-24.6 9.4-33.9 0zm464 0-80-80c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l80 80c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-rifle.svg������������������0000664�0000000�0000000�00000001546�14753064456�0030406�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M265.2 192c25.4 0 49.8 7.1 70.8 19.9V512H144V337.7l-53.6 90.6c-11.2 19-35.8 25.3-54.8 14.1s-25.3-35.8-14.1-54.8l76.2-128.8c24.5-41.4 69-66.8 117.1-66.8zM160 80a80 80 0 1 1 160 0 80 80 0 1 1-160 0M448 0c8.8 0 16 7.2 16 16v116.3c9.6 5.5 16 15.9 16 27.7v109.3l16-5.3v-56c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v84.5c0 6.9-4.4 13-10.9 15.2L480 325.3V352h48c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16h-44l23 92.1c2.5 10.1-5.1 19.9-15.5 19.9H432c-8.8 0-16-7.2-16-16v-96h-16c-17.7 0-32-14.3-32-32V224c0-17.7 14.3-32 32-32v-32c0-11.8 6.4-22.2 16-27.7V32c-8.8 0-16-7.2-16-16s7.2-16 16-16h32"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-running.svg����������������0000664�0000000�0000000�00000001654�14753064456�0030765�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 48a48 48 0 1 0-96 0 48 48 0 1 0 96 0M125.7 175.5c9.9-9.9 23.4-15.5 37.5-15.5 1.9 0 3.8.1 5.6.3L137.6 254c-9.3 28 1.7 58.8 26.8 74.5l86.2 53.9-25.4 88.8c-4.9 17 5 34.7 22 39.6s34.7-5 39.6-22l28.7-100.4c5.9-20.6-2.6-42.6-20.7-53.9L238 299l30.9-82.4 5.1 12.3c15 35.8 49.9 59.1 88.7 59.1H384c17.7 0 32-14.3 32-32s-14.3-32-32-32h-21.3c-12.9 0-24.6-7.8-29.5-19.7l-6.3-15c-14.6-35.1-44.1-61.9-80.5-73.1l-48.7-15C186.6 97.8 175 96 163.3 96c-31 0-60.8 12.3-82.7 34.3l-23.2 23.1c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l23.1-23.1zM91.2 352H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h69.6c19 0 36.2-11.2 43.9-28.5l11.5-25.9-9.5-6a95.4 95.4 0 0 1-37.9-44.9z"/></svg>������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-shelter.svg����������������0000664�0000000�0000000�00000001473�14753064456�0030752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M271.9 4.2c-9.8-5.6-21.9-5.6-31.8 0l-224 128C6.2 137.9 0 148.5 0 160v320c0 17.7 14.3 32 32 32s32-14.3 32-32V178.6L256 68.9l192 109.7V480c0 17.7 14.3 32 32 32s32-14.3 32-32V160c0-11.5-6.2-22.1-16.1-27.8zM256 208a40 40 0 1 0 0-80 40 40 0 1 0 0 80m-8 280v-88h16v88c0 13.3 10.7 24 24 24s24-10.7 24-24V313.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-37.9-70.3c-15.3-28.5-45.1-46.3-77.5-46.3h-19.5c-32.4 0-62.1 17.8-77.5 46.3l-37.9 70.3c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8l26.8-49.9V488c0 13.3 10.7 24 24 24s24-10.7 24-24"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-skating.svg����������������0000664�0000000�0000000�00000002020�14753064456�0030731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M352 48a48 48 0 1 1 96 0 48 48 0 1 1-96 0m-224 80c0-17.7 14.3-32 32-32h159.4c43.6 0 64.6 53.4 32.8 83.1l-74.4 69.4 60.2 60.2c9 9 14.1 21.2 14.1 33.9V416c0 17.7-14.3 32-32 32s-32-14.3-32-32v-66.7l-77.9-77.8c-26.6-26.6-24.6-70.3 4.3-94.4l20.4-17-74.9-.1c-17.7 0-32-14.3-32-32M81.4 353.4l86.9-86.9c4.6 10 11 19.3 19.3 27.5l21.8 21.8-82.7 82.7c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3zm322.5 95.1c8.6 2.1 13.8 10.8 11.6 19.4l-.4 1.7c-6.2 24.9-28.6 42.4-54.3 42.4H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h88.8c11 0 20.6-7.5 23.3-18.2l.4-1.7c2.1-8.6 10.8-13.8 19.4-11.6m-268.7 29.8-6.2 3.1c-21.6 10.8-47.6 6.6-64.6-10.5L4.7 411.3c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l59.6 59.6c7.3 7.3 18.5 9.1 27.7 4.5l6.2-3.1c7.9-4 17.5-.7 21.5 7.2s.7 17.5-7.2 21.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-skiing-nordic.svg����������0000664�0000000�0000000�00000002067�14753064456�0032044�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M336 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96m-108.8 64c1.9 0 3.8.1 5.6.3L201.6 254c-9.3 28 1.7 58.8 26.8 74.5l86.2 53.9-23.3 81.6h-88.5l41.1-88.1-32.4-20.3c-7.8-4.9-14.7-10.7-20.6-17.3L132.2 464H99.8L154 206.4c4.6-1.5 9-4.1 12.7-7.8l23.1-23.1c9.9-9.9 23.4-15.5 37.5-15.5zm-105.8 38.6c.4.4.8.8 1.3 1.2L67 464H24c-13.3 0-24 10.7-24 24s10.7 24 24 24h480c39.8 0 72-32.2 72-72v-8c0-13.3-10.7-24-24-24s-24 10.7-24 24v8c0 13.3-10.7 24-24 24h-69.4l27.6-179.3c10.5-5.2 17.8-16.1 17.8-28.7 0-17.7-14.3-32-32-32h-21.3c-12.9 0-24.6-7.8-29.5-19.7l-6.3-15c-14.6-35.1-44.1-61.9-80.5-73.1l-48.7-15C250.6 97.8 239 96 227.3 96c-31 0-60.8 12.3-82.7 34.3l-23.1 23.1c-12.5 12.5-12.5 32.8 0 45.3zm308 89.4-27.1 176h-44.4l21.6-75.6c5.9-20.6-2.6-42.6-20.7-53.9L302 299l30.9-82.4 5.1 12.3c15 35.8 49.9 59.1 88.7 59.1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-skiing.svg�����������������0000664�0000000�0000000�00000002074�14753064456�0030566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M380.7 48a48 48 0 1 1 96 0 48 48 0 1 1-96 0M2.7 268.9c6.1-11.8 20.6-16.3 32.4-10.2l197.6 102.6 46.2-69.2-75.1-75.1c-14.6-14.6-20.4-33.9-18.4-52.1l108.8 52 39.3 39.3c16.2 16.2 18.7 41.5 6 60.6L289.8 391l128.7 66.8c13.6 7.1 29.8 7.2 43.6.3l15.2-7.6c11.9-5.9 26.3-1.1 32.2 10.7s1.1 26.3-10.7 32.2l-15.2 7.6c-27.5 13.7-59.9 13.5-87.2-.7l-383.5-199c-11.7-6.1-16.3-20.6-10.2-32.4M118.9 65.6l18.1 8.6 8.7-17.4c4-7.9 13.6-11.1 21.5-7.2s11.1 13.6 7.2 21.5L165.9 88l54.7 26.2c1.5-.7 3.1-1.4 4.7-2.1l83.4-33.4c34.2-13.7 72.8 4.2 84.5 39.2l17.1 51.2 52.1 26.1c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3l-58.1-29c-11.4-5.7-20-15.7-24.1-27.8l-5.8-17.3-27.3 12.1-6.8 3-6.7-3.2-153.5-73.5-9.2 18.4c-4 7.9-13.6 11.1-21.5 7.2s-11.1-13.6-7.2-21.5l9-18-17.6-8.4c-8-3.8-11.3-13.4-7.5-21.3s13.4-11.3 21.3-7.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-snowboarding.svg�����������0000664�0000000�0000000�00000002072�14753064456�0031774�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M209.7 3.4c15.8-7.9 35-1.5 42.9 14.3l25 50 42.4 8.5c19.5 3.9 37.8 12.3 53.5 24.5l126.1 98.1c14 10.9 16.5 31 5.6 44.9s-31 16.5-44.9 5.6l-72.1-56.1-71.5 31.8 33.1 27.6c23.2 19.3 33.5 50 26.7 79.4l-17.4 75.2c-2.2 9.4-8.2 16.8-16.1 21l86.5 33.1c4.6 1.8 9.4 2.6 14.3 2.6H472c13.3 0 24 10.7 24 24s-10.7 24-24 24h-28.2c-10.8 0-21.4-2-31.5-5.8L60.1 371.3c-11.5-4.4-22-11.2-30.8-20L7 329c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l22.4 22.4c4 4 8.7 7.1 14 9.1l22.4 8.6c-.8-1.6-1.5-3.2-2.1-4.9-5.6-16.8 3.5-34.9 20.2-40.5l74.2-24.9v-53.2c0-24.2 13.7-46.4 35.4-57.2l45.2-22.6-7.5-1.5c-19.4-3.9-35.9-16.5-44.7-34.1l-25-50c-7.9-15.8-1.5-35 14.3-42.9M139 350.1 298 411c-2.1-5.6-2.6-11.9-1.1-18.2l17.4-75.2c1.4-5.9-.7-12-5.3-15.9l-52.8-44v18.8c0 20.7-13.2 39-32.8 45.5zM432 0a48 48 0 1 1 0 96 48 48 0 1 1 0-96"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-swimming.svg���������������0000664�0000000�0000000�00000002217�14753064456�0031133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m309.5 178.4 138.4 118.7c-1.6.9-3.2 2-4.8 3-18 12.4-40.1 20.3-59.2 20.3-19.6 0-40.8-7.7-59.2-20.3-22.1-15.5-51.6-15.5-73.7 0-17.1 11.8-38 20.3-59.2 20.3-10.1 0-21.1-2.2-31.9-6.2C163.1 193.2 262.2 96 384 96h64c17.7 0 32 14.3 32 32s-14.3 32-32 32h-64c-26.9 0-52.3 6.6-74.5 18.4M160 160a64 64 0 1 1-128 0 64 64 0 1 1 128 0m146.5 165.9c22.5 15.5 50 26.1 77.5 26.1 26.9 0 55.4-10.8 77.4-26.1 11.9-8.5 28.1-7.8 39.2 1.7 14.4 11.9 32.5 21 50.6 25.2 17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25-29 15.6-61.5 25.9-94.5 25.9-31.9 0-60.6-9.9-80.4-18.9-5.8-2.7-11.1-5.3-15.6-7.7-4.5 2.4-9.7 5.1-15.6 7.7-19.8 9-48.5 18.9-80.4 18.9-33 0-65.5-10.3-94.5-25.8-13.4 8.4-33.7 19.3-58.2 25-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2 11.1-9.4 27.3-10.1 39.2-1.7 22.1 15.2 50.5 26 77.4 26 27.5 0 55-10.6 77.5-26.1 11.1-7.9 25.9-7.9 37 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-through-window.svg���������0000664�0000000�0000000�00000001425�14753064456�0032266�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 64h224v9.8c0 39-23.7 74-59.9 88.4C167.6 186.5 128 245 128 310.2V384H64zm288 0h224v320h-67.7l-3.7-4.5-75.2-90.2c-9.1-10.9-22.6-17.3-36.9-17.3h-71.1l-41-63.1c-.3-.5-.6-1-1-1.4 44.7-29 72.5-79 72.5-133.6v-9.8zm73 320h-45.8l42.7 64H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v352c0 26.5 21.5 48 48 48h260.2l33.2 49.8c9.8 14.7 29.7 18.7 44.4 8.9s18.7-29.7 8.9-44.4L310.5 336h74.6l40 48zm-159.5 0H192v-73.8c0-10.2 1.6-20.1 4.7-29.5zM192 128a48 48 0 1 0-96 0 48 48 0 1 0 96 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-walking-arrow-loop-left.svg0000664�0000000�0000000�00000002355�14753064456�0033767�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M208 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96m-84.3 104.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L281 232.7l-15.3-36.8c-17.2-41.1-57.4-67.9-102-67.9-22.8 0-45.3 4.8-66.1 14l-8 3.5c-32.9 14.6-58.1 42.4-69.4 76.5l-2.6 7.8c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l2.6-7.8c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5zm-30 135.1-25 62.4-59.3 59.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l61.6-61.7c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6zm347.7 119c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L461.3 384H480c88.4 0 160-71.6 160-160S568.4 64 480 64H352c-17.7 0-32 14.3-32 32s14.3 32 32 32h128c53 0 96 43 96 96s-43 96-96 96h-18.7l25.4-25.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-80 80c-12.5 12.5-12.5 32.8 0 45.3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-walking-arrow-right.svg����0000664�0000000�0000000�00000002242�14753064456�0033176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M208 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96m-84.3 104.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L281 232.7l-15.3-36.8c-17.2-41.1-57.4-67.9-102-67.9-22.8 0-45.3 4.8-66.1 14l-8 3.5c-32.9 14.6-58.1 42.4-69.4 76.5l-2.6 7.8c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l2.6-7.8c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5zm-30 135.1-25 62.4-59.3 59.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l61.6-61.7c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6zm456.9-182.2c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l25.4 25.3H384c-17.7 0-32 14.3-32 32s14.3 32 32 32h146.7l-25.4 25.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l80-80c12.5-12.5 12.5-32.8 0-45.3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������person-walking-dashed-line-arrow-right.svg����������������������������������������������������������0000664�0000000�0000000�00000002775�14753064456�0035305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000�mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M208 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96m-84.3 104.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L281 232.7l-15.3-36.8c-17.2-41.1-57.4-67.9-102-67.9-22.8 0-45.3 4.8-66.1 14l-8 3.5c-32.9 14.6-58.1 42.4-69.4 76.5l-2.6 7.8c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l2.6-7.8c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5zm-30 135.1-25 62.4-59.3 59.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l61.6-61.7c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6zm456.9-182.2c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l25.4 25.3H384c-17.7 0-32 14.3-32 32s14.3 32 32 32h146.7l-25.4 25.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l80-80c12.5-12.5 12.5-32.8 0-45.3zM392 0c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24s24-10.7 24-24V24c0-13.3-10.7-24-24-24m24 152c0-13.3-10.7-24-24-24s-24 10.7-24 24v16c0 13.3 10.7 24 24 24s24-10.7 24-24zm-24 168c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24s24-10.7 24-24v-16c0-13.3-10.7-24-24-24m24 120c0-13.3-10.7-24-24-24s-24 10.7-24 24v48c0 13.3 10.7 24 24 24s24-10.7 24-24z"/></svg>���mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-walking-luggage.svg��������0000664�0000000�0000000�00000002270�14753064456�0032345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M432 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96m-84.3 104.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L505 232.7l-15.3-36.8c-17.2-41.1-57.4-67.9-102-67.9-22.8 0-45.3 4.8-66.1 14l-8 3.5c-32.9 14.6-58.1 42.4-69.4 76.5l-2.6 7.8c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l2.6-7.8c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5zm-30 135.1-25 62.4-59.4 59.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l61.7-61.7c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6zM256 274.1c-7.7-4.4-17.4-1.8-21.9 5.9l-32 55.4-54.4-31.4c-15.3-8.8-34.9-3.6-43.7 11.7L40 426.6c-8.8 15.3-3.6 34.9 11.7 43.7l55.4 32c15.3 8.8 34.9 3.6 43.7-11.7l64-110.9c1.5-2.6 2.6-5.2 3.3-8l43.8-75.7c4.4-7.7 1.8-17.4-5.9-21.9"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-walking-with-cane.svg������0000664�0000000�0000000�00000001524�14753064456�0032612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M176 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96m-8.4 32c-36.4 0-69.6 20.5-85.9 53.1l-46.3 92.6c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3l35.4-70.7v43.2c0 17 6.7 33.3 18.7 45.3l77.3 77.2V480c0 17.7 14.3 32 32 32s32-14.3 32-32v-89.4c0-12.7-5.1-24.9-14.1-33.9l-49.9-50v-93.4l70.4 93.9c10.6 14.1 30.7 17 44.8 6.4s17-30.7 6.4-44.8l-76.8-102.4C250.7 142.2 222.2 128 192 128zm-39.3 218.8L97 472.2c-4.3 17.1 6.1 34.5 23.3 38.8s34.5-6.1 38.8-23.3l22-88.2-52.8-52.8zm322.5 158.3c5 7.3 15 9.1 22.3 4s9.1-15 4-22.3L358.9 316.1c-2.8 3.8-6.1 7.3-10.1 10.3-5 3.8-10.5 6.4-16.2 7.9z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person-walking.svg����������������0000664�0000000�0000000�00000001713�14753064456�0030735�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 48a48 48 0 1 1 96 0 48 48 0 1 1-96 0m-33.5 151.3c-1 .4-1.9.8-2.9 1.2l-8 3.5c-16.4 7.3-29 21.2-34.7 38.2l-2.6 7.8c-5.6 16.8-23.7 25.8-40.5 20.2S12 246.5 17.6 229.7l2.6-7.8c11.4-34.1 36.6-61.9 69.4-76.5l8-3.5c20.8-9.2 43.3-14 66.1-14 44.6 0 84.8 26.8 101.9 67.9l15.4 36.9 21.4 10.7c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3L247 287.3c-10.3-5.2-18.4-13.8-22.8-24.5l-9.6-23-19.3 65.5 49.5 54c5.4 5.9 9.2 13 11.2 20.8l23 92.1c4.3 17.1-6.1 34.5-23.3 38.8s-34.5-6.1-38.8-23.3l-22-88.1-70.7-77.1c-14.8-16.1-20.3-38.6-14.7-59.7l16.9-63.5zM68.7 398l25-62.4c2.1 3 4.5 5.8 7 8.6l40.7 44.4-14.5 36.2c-2.4 6-6 11.5-10.6 16.1l-61.7 61.7c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3z"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/person.svg������������������������0000664�0000000�0000000�00000001157�14753064456�0027305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M112 48a48 48 0 1 1 96 0 48 48 0 1 1-96 0m40 304v128c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9l-28.6 47.6c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l58.3 97c9.1 15.1 4.2 34.8-10.9 43.9s-34.8 4.2-43.9-10.9L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/peseta-sign.svg�������������������0000664�0000000�0000000�00000001110�14753064456�0030203�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32c-17.7 0-32 14.3-32 32v96c-17.7 0-32 14.3-32 32s14.3 32 32 32v224c0 17.7 14.3 32 32 32s32-14.3 32-32v-96h96c77.4 0 142-55 156.8-128h3.2c17.7 0 32-14.3 32-32s-14.3-32-32-32h-3.2C334 87 269.4 32 192 32zm218.5 128H96V96h96c41.8 0 77.4 26.7 90.5 64M96 224h186.5c-13.2 37.3-48.7 64-90.5 64H96z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/peso-sign.svg���������������������0000664�0000000�0000000�00000001367�14753064456�0027706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32c-17.7 0-32 14.3-32 32v64c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c-17.7 0-32 14.3-32 32s14.3 32 32 32v160c0 17.7 14.3 32 32 32s32-14.3 32-32v-64h80c68.4 0 127.7-39 156.8-96H352c17.7 0 32-14.3 32-32s-14.3-32-32-32h-.7c.5-5.3.7-10.6.7-16s-.2-10.7-.7-16h.7c17.7 0 32-14.3 32-32s-14.3-32-32-32h-19.2C303.7 71 244.4 32 176 32zm190.4 96H96V96h80c30.5 0 58.2 12.2 78.4 32M96 192h190.9c.7 5.2 1.1 10.6 1.1 16s-.4 10.8-1.1 16H96zm158.4 96c-20.2 19.8-47.9 32-78.4 32H96v-32z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/phone-flip.svg��������������������0000664�0000000�0000000�00000001071�14753064456�0030033�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M347.1 24.6c7.7-18.6 28-28.5 47.4-23.2l88 24C499.9 30.2 512 46 512 64c0 247.4-200.6 448-448 448-18 0-33.8-12.1-38.6-29.5l-24-88c-5.3-19.4 4.6-39.7 23.2-47.4l96-40c16.3-6.8 35.2-2.1 46.3 11.6l40.4 49.3c70.4-33.3 127.4-90.3 160.7-160.7L318.7 167c-13.7-11.2-18.4-30-11.6-46.3l40-96z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/phone-slash.svg�������������������0000664�0000000�0000000�00000001371�14753064456�0030216�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M228.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C76.1 30.2 64 46 64 64c0 107.4 37.8 206 100.8 283.1L9.2 469.1c-10.4 8.2-12.3 23.3-4.1 33.7s23.3 12.3 33.7 4.1l592-464c10.4-8.2 12.3-23.3 4.1-33.7s-23.3-12.3-33.7-4.1L253 278c-17.8-21.5-32.9-45.2-45-70.7l49.3-40.3c13.7-11.2 18.4-30 11.6-46.3l-40-96zm96.8 319-91.3 72C310.7 476 407.1 512 512 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L368.7 368c-15-7.1-29.3-15.2-43-24.3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/phone-volume.svg������������������0000664�0000000�0000000�00000001532�14753064456�0030412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M280 0c128.1 0 232 103.9 232 232 0 13.3-10.7 24-24 24s-24-10.7-24-24c0-101.6-82.4-184-184-184-13.3 0-24-10.7-24-24s10.7-24 24-24m8 192a32 32 0 1 1 0 64 32 32 0 1 1 0-64m-32-72c0-13.3 10.7-24 24-24 75.1 0 136 60.9 136 136 0 13.3-10.7 24-24 24s-24-10.7-24-24c0-48.6-39.4-88-88-88-13.3 0-24-10.7-24-24M117.5 1.4c19.4-5.3 39.7 4.6 47.4 23.2l40 96c6.8 16.3 2.1 35.2-11.6 46.3L144 207.3c33.3 70.4 90.3 127.4 160.7 160.7l40.3-49.3c11.2-13.7 30-18.4 46.3-11.6l96 40c18.6 7.7 28.5 28 23.2 47.4l-24 88C481.8 499.9 466 512 448 512 200.6 512 0 311.4 0 64c0-18 12.1-33.8 29.5-38.6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/phone.svg�������������������������0000664�0000000�0000000�00000001067�14753064456�0027110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64c0 247.4 200.6 448 448 448 18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368c-70.4-33.3-127.4-90.3-160.7-160.7l49.3-40.3c13.7-11.2 18.4-30 11.6-46.3l-40-96z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/photo-film.svg��������������������0000664�0000000�0000000�00000002213�14753064456�0030047�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 0h320c35.3 0 64 28.7 64 64v224c0 35.3-28.7 64-64 64H256c-35.3 0-64-28.7-64-64V64c0-35.3 28.7-64 64-64m220 106.7C471.5 100 464 96 456 96s-15.5 4-20 10.7l-56 84-17.3-21.7c-4.6-5.7-11.5-9-18.7-9s-14.2 3.3-18.7 9l-64 80c-5.8 7.2-6.9 17.1-2.9 25.4S270.8 288 280 288h272c8.9 0 17-4.9 21.2-12.7s3.7-17.3-1.2-24.6zM336 96a32 32 0 1 0-64 0 32 32 0 1 0 64 0M64 128h96v288c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32v-32h160v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192c0-35.3 28.7-64 64-64m8 64c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16v-16c0-8.8-7.2-16-16-16zm0 104c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16v-16c0-8.8-7.2-16-16-16zm0 104c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16v-16c0-8.8-7.2-16-16-16zm336 16v16c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16v-16c0-8.8-7.2-16-16-16h-16c-8.8 0-16 7.2-16 16"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/piggy-bank.svg��������������������0000664�0000000�0000000�00000001716�14753064456�0030030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M400 96v.7c-5.3-.4-10.6-.7-16-.7H256c-16.5 0-32.5 2.1-47.8 6-.1-2-.2-4-.2-6 0-53 43-96 96-96s96 43 96 96m-16 32c3.5 0 7 .1 10.4.3 4.2.3 8.4.7 12.6 1.3 17.6-20.5 43.8-33.6 73-33.6h11.5c10.4 0 18 9.8 15.5 19.9l-13.8 55.2c15.8 14.8 28.7 32.8 37.5 52.9H544c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32h-32c-9.1 12.1-19.9 22.9-32 32v64c0 17.7-14.3 32-32 32h-32c-17.7 0-32-14.3-32-32v-32H256v32c0 17.7-14.3 32-32 32h-32c-17.7 0-32-14.3-32-32v-64c-34.9-26.2-58.7-66.3-63.2-112H68c-37.6 0-68-30.4-68-68s30.4-68 68-68h4c13.3 0 24 10.7 24 24s-10.7 24-24 24h-4c-11 0-20 9-20 20s9 20 20 20h31.2c12.1-59.8 57.7-107.5 116.3-122.8 12.9-3.4 26.5-5.2 40.5-5.2zm64 136a24 24 0 1 0-48 0 24 24 0 1 0 48 0"/></svg>��������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/pills.svg�������������������������0000664�0000000�0000000�00000001351�14753064456�0027116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M112 96c-26.5 0-48 21.5-48 48v112h96V144c0-26.5-21.5-48-48-48M0 144C0 82.1 50.1 32 112 32s112 50.1 112 112v224c0 61.9-50.1 112-112 112S0 429.9 0 368zm554.9 255.4c-7.1 12.3-23.7 13.1-33.8 3.1L333.5 214.9c-10-10-9.3-26.7 3.1-33.8C360 167.7 387.1 160 416 160c88.4 0 160 71.6 160 160 0 28.9-7.7 56-21.1 79.4m-59.5 59.5C472 472.3 444.9 480 416 480c-88.4 0-160-71.6-160-160 0-28.9 7.7-56 21.1-79.4 7.1-12.3 23.7-13.1 33.8-3.1l187.6 187.6c10 10 9.3 26.7-3.1 33.8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/pizza-slice.svg�������������������0000664�0000000�0000000�00000001264�14753064456�0030230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M169.7.9c-22.8-1.6-41.9 14-47.5 34.7L110.4 80h1.6c176.7 0 320 143.3 320 320v1.6l44.4-11.8c20.8-5.5 36.3-24.7 34.7-47.5C498.5 159.5 352.5 13.5 169.7.9m230.1 409.3c.1-3.4.2-6.8.2-10.2 0-159.1-128.9-288-288-288-3.4 0-6.8.1-10.2.2L.5 491.9c-1.5 5.5.1 11.4 4.1 15.4s9.9 5.6 15.4 4.1zM176 208a32 32 0 1 1 0 64 32 32 0 1 1 0-64m64 128a32 32 0 1 1 64 0 32 32 0 1 1-64 0M96 384a32 32 0 1 1 64 0 32 32 0 1 1-64 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/place-of-worship.svg��������������0000664�0000000�0000000�00000001261�14753064456�0031152�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 109.3v108.3L183.3 242c-14.5 8.7-23.3 24.3-23.3 41.2V512h96v-96c0-35.3 28.7-64 64-64s64 28.7 64 64v96h96V283.2c0-16.9-8.8-32.5-23.3-41.2L416 217.6V109.3c0-8.5-3.4-16.6-9.4-22.6l-75.3-75.4c-6.2-6.2-16.4-6.2-22.6 0l-75.3 75.3c-6 6-9.4 14.1-9.4 22.6zm-199.1 221C9.5 338.8 0 354.9 0 372.4V464c0 26.5 21.5 48 48 48h80V273.6zM592 512c26.5 0 48-21.5 48-48v-91.6c0-17.5-9.5-33.6-24.9-42.1L512 273.6V512z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/plane-arrival.svg�����������������0000664�0000000�0000000�00000001452�14753064456�0030532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M.3 166.9 0 68c0-10.3 9.5-17.9 19.5-15.7l35.6 7.9c10.6 2.3 19.2 9.9 23 20L96 128l127.3 37.6-41.5-145.2C178.9 10.2 186.6 0 197.2 0h40.1c11.6 0 22.2 6.2 27.9 16.3l109 193.8 107.2 31.7c15.9 4.7 30.8 12.5 43.7 22.8l34.4 27.6c24 19.2 18.1 57.3-10.7 68.2-41.2 15.6-86.2 18.1-128.8 7l-298.3-77.6c-11.1-2.9-21.2-8.7-29.3-16.9L9.5 189.4c-5.9-6-9.3-14.1-9.3-22.5zM32 448h576c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32m96-80a32 32 0 1 1 64 0 32 32 0 1 1-64 0m128-16a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/plane-circle-check.svg������������0000664�0000000�0000000�00000001502�14753064456�0031402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 0c-35 0-64 59.5-64 93.7v84.6L8.1 283.4c-5 2.8-8.1 8.2-8.1 13.9v65.5c0 10.6 10.2 18.3 20.4 15.4l171.6-49v70.9l-57.6 43.2c-4 3-6.4 7.8-6.4 12.8v42c0 7.8 6.3 14 14 14 1.3 0 2.6-.2 3.9-.5L256 480l110.1 31.5c1.3.4 2.6.5 3.9.5 6 0 11.1-3.7 13.1-9-38.6-32.3-63.1-80.8-63.1-135 0-60.6 30.6-114 77.1-145.6L320 178.3V93.7C320 59.5 292 0 256 0m384 368a144 144 0 1 0-288 0 144 144 0 1 0 288 0m-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l28.7 28.7 60.7-60.7c6.2-6.2 16.4-6.2 22.6 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/plane-circle-exclamation.svg������0000664�0000000�0000000�00000001436�14753064456�0032637�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 0c-35 0-64 59.5-64 93.7v84.6L8.1 283.4c-5 2.8-8.1 8.2-8.1 13.9v65.5c0 10.6 10.2 18.3 20.4 15.4l171.6-49v70.9l-57.6 43.2c-4 3-6.4 7.8-6.4 12.8v42c0 7.8 6.3 14 14 14 1.3 0 2.6-.2 3.9-.5L256 480l110.1 31.5c1.3.4 2.6.5 3.9.5 6 0 11.1-3.7 13.1-9-38.6-32.3-63.1-80.8-63.1-135 0-60.6 30.6-114 77.1-145.6L320 178.3V93.7C320 59.5 292 0 256 0m240 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288m0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48m0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16v-80c0-8.8 7.2-16 16-16"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/plane-circle-xmark.svg������������0000664�0000000�0000000�00000001643�14753064456�0031455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 0c-35 0-64 59.5-64 93.7v84.6L8.1 283.4c-5 2.8-8.1 8.2-8.1 13.9v65.5c0 10.6 10.2 18.3 20.4 15.4l171.6-49v70.9l-57.6 43.2c-4 3-6.4 7.8-6.4 12.8v42c0 7.8 6.3 14 14 14 1.3 0 2.6-.2 3.9-.5L256 480l110.1 31.5c1.3.4 2.6.5 3.9.5 6 0 11.1-3.7 13.1-9-38.6-32.3-63.1-80.8-63.1-135 0-60.6 30.6-114 77.1-145.6L320 178.3V93.7C320 59.5 292 0 256 0m240 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288m59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l36.7-36.7-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l36.7 36.7 36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/plane-departure.svg���������������0000664�0000000�0000000�00000001323�14753064456�0031062�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M381 114.9 186.1 41.8c-16.7-6.2-35.2-5.3-51.1 2.7L89.1 67.4C78 73 77.2 88.5 87.6 95.2l146.9 94.5L136 240l-58.2-25.9c-8.7-3.9-18.8-3.7-27.3.6l-32.2 16.1c-9.3 4.7-11.8 16.8-5 24.7l73.1 85.3c6.1 7.1 15 11.2 24.3 11.2h137.7c5 0 9.9-1.2 14.3-3.4l272.9-136.4c46.5-23.3 82.5-63.3 100.8-112C645.9 75 627.2 48 600.2 48h-57.4c-20.2 0-40.2 4.8-58.2 14zM0 480c0 17.7 14.3 32 32 32h576c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/plane-lock.svg��������������������0000664�0000000�0000000�00000001565�14753064456�0030027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 93.7C192 59.5 221 0 256 0c36 0 64 59.5 64 93.7v84.6l101.8 58.2c-3.8 11.1-5.8 23.1-5.8 35.5v24.6c-17.9 10.4-30.3 29.1-31.8 50.9L320 329.1V400l57.6 43.2c4 3 6.4 7.8 6.4 12.8v42c0 7.8-6.3 14-14 14-1.3 0-2.6-.2-3.9-.5L256 480l-110.1 31.5c-1.3.4-2.6.5-3.9.5-7.8 0-14-6.3-14-14v-42c0-5 2.4-9.8 6.4-12.8L192 400v-70.9l-171.6 49c-10.2 3-20.4-4.7-20.4-15.3v-65.5c0-5.7 3.1-11 8.1-13.9L192 178.3zM528 240c-17.7 0-32 14.3-32 32v48h64v-48c0-17.7-14.3-32-32-32m-80 32c0-44.2 35.8-80 80-80s80 35.8 80 80v48c17.7 0 32 14.3 32 32v128c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/plane-slash.svg�������������������0000664�0000000�0000000�00000001437�14753064456�0030207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M514.3 192c34.2 0 93.7 29 93.7 64 0 36-59.5 64-93.7 64h-73.8l190.3 149.1c10.4 8.2 12.3 23.3 4.1 33.7s-23.3 12.3-33.7 4.1l-592-464C-1.2 34.7-3.1 19.6 5.1 9.2S28.4-3.1 38.8 5.1l199.3 156.2-40.3-140.9C194.9 10.2 202.6 0 213.2 0h56.2c11.5 0 22.1 6.2 27.8 16.1L397.7 192zM41.5 128.7l321 252.9-65.3 114.3c-5.7 10-16.3 16.1-27.8 16.1h-56.2c-10.6 0-18.3-10.2-15.4-20.4l49-171.6H144l-43.2 57.6c-3 4-7.8 6.4-12.8 6.4H46c-7.8 0-14-6.3-14-14 0-1.3.2-2.6.5-3.9L64 256 32.5 145.9c-.4-1.3-.5-2.6-.5-3.9 0-6.2 4-11.4 9.5-13.3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/plane-up.svg����������������������0000664�0000000�0000000�00000001241�14753064456�0027512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 93.7C192 59.5 221 0 256 0c36 0 64 59.5 64 93.7V160l177.8 118.5c8.9 5.9 14.2 15.9 14.2 26.6v56.7c0 10.9-10.7 18.6-21.1 15.2L320 320v80l57.6 43.2c4 3 6.4 7.8 6.4 12.8v42c0 7.8-6.3 14-14 14-1.3 0-2.6-.2-3.9-.5L256 480l-110.1 31.5c-1.3.4-2.6.5-3.9.5-7.8 0-14-6.3-14-14v-42c0-5 2.4-9.8 6.4-12.8L192 400v-80L21.1 377C10.7 380.4 0 372.7 0 361.8v-56.7c0-10.7 5.3-20.7 14.2-26.6L192 160z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/plane.svg�������������������������0000664�0000000�0000000�00000001255�14753064456�0027075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M482.3 192c34.2 0 93.7 29 93.7 64 0 36-59.5 64-93.7 64H365.7L265.2 495.9c-5.7 10-16.3 16.1-27.8 16.1h-56.2c-10.6 0-18.3-10.2-15.4-20.4l49-171.6H112l-43.2 57.6c-3 4-7.8 6.4-12.8 6.4H14c-7.8 0-14-6.3-14-14 0-1.3.2-2.6.5-3.9L32 256 .5 145.9c-.4-1.3-.5-2.6-.5-3.9 0-7.8 6.3-14 14-14h42c5 0 9.8 2.4 12.8 6.4L112 192h102.9l-49-171.6c-3-10.2 4.7-20.4 15.3-20.4h56.2c11.5 0 22.1 6.2 27.8 16.1L365.7 192z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/plant-wilt.svg��������������������0000664�0000000�0000000�00000001446�14753064456�0030073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 120c0-30.9 25.1-56 56-56s56 25.1 56 56v13c-29.3 10-48 34.5-48 70.1 0 27.9 25.3 74.8 66 111.6 3.8 3.5 8.9 5.3 14 5.3s10.2-1.8 14-5.3c40.7-36.8 66-83.7 66-111.6 0-35.6-18.7-60.2-48-70.1v-13C464 53.7 410.3 0 344 0S224 53.7 224 120v21.8c-16.7-8.8-35.8-13.8-56-13.8-66.3 0-120 53.7-120 120v13c-29.3 10-48 34.5-48 70.1 0 27.9 25.3 74.8 66 111.6 3.8 3.5 8.9 5.3 14 5.3s10.2-1.8 14-5.3c40.7-36.8 66-83.7 66-111.6 0-35.6-18.7-60.2-48-70.1v-13c0-30.9 25.1-56 56-56s56 25.1 56 56v232c0 17.7 14.3 32 32 32s32-14.3 32-32V120"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/plate-wheat.svg�������������������0000664�0000000�0000000�00000002410�14753064456�0030203�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M176 32c44.2 0 80 35.8 80 80v16c0 8.8-7.2 16-16 16-44.2 0-80-35.8-80-80V48c0-8.8 7.2-16 16-16M56 64h48c13.3 0 24 10.7 24 24s-10.7 24-24 24H56c-13.3 0-24-10.7-24-24s10.7-24 24-24m-32 72h112c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24s10.7-24 24-24m8 96c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24s-10.7 24-24 24H56c-13.3 0-24-10.7-24-24M272 48c0-8.8 7.2-16 16-16 44.2 0 80 35.8 80 80v16c0 8.8-7.2 16-16 16-44.2 0-80-35.8-80-80zm128-16c44.2 0 80 35.8 80 80v16c0 8.8-7.2 16-16 16-44.2 0-80-35.8-80-80V48c0-8.8 7.2-16 16-16m80 160v16c0 44.2-35.8 80-80 80-8.8 0-16-7.2-16-16v-16c0-44.2 35.8-80 80-80 8.8 0 16 7.2 16 16m-128-16c8.8 0 16 7.2 16 16v16c0 44.2-35.8 80-80 80-8.8 0-16-7.2-16-16v-16c0-44.2 35.8-80 80-80m-96 16v16c0 44.2-35.8 80-80 80-8.8 0-16-7.2-16-16v-16c0-44.2 35.8-80 80-80 8.8 0 16 7.2 16 16M3.5 347.6C1.6 332.9 13 320 27.8 320h456.4c14.8 0 26.2 12.9 24.4 27.6-6.3 50.2-44.4 89.4-92.6 98.4v2c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32v-2c-48.2-9-86.3-48.2-92.5-98.4"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/play.svg��������������������������0000664�0000000�0000000�00000000655�14753064456�0026746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M73 39c-14.8-9.1-33.4-9.4-48.5-.9S0 62.6 0 80v352c0 17.4 9.4 33.4 24.5 41.9S58.2 482 73 473l288-176c14.3-8.7 23-24.2 23-41s-8.7-32.2-23-41z"/></svg>�����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/plug-circle-bolt.svg��������������0000664�0000000�0000000�00000001623�14753064456�0031141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32m192 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32M32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32v-67.2c12.3-2.5 24.1-6.4 35.1-11.5-2.1-10.8-3.1-21.9-3.1-33.3 0-80.3 53.8-148 127.3-169.2.5-2.2.7-4.5.7-6.8 0-17.7-14.3-32-32-32zm400 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288m47.9-225c4.3 3.7 5.4 9.9 2.6 14.9L452.4 356H488c5.2 0 9.8 3.3 11.4 8.2s-.1 10.3-4.2 13.4l-96 72c-4.5 3.4-10.8 3.2-15.1-.6s-5.4-9.9-2.6-14.9l30.1-54.1H376c-5.2 0-9.8-3.3-11.4-8.2s.1-10.3 4.2-13.4l96-72c4.5-3.4 10.8-3.2 15.1.6"/></svg>�������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/plug-circle-check.svg�������������0000664�0000000�0000000�00000001521�14753064456�0031253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32m192 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32M32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32v-67.2c12.3-2.5 24.1-6.4 35.1-11.5-2.1-10.8-3.1-21.9-3.1-33.3 0-80.3 53.8-148 127.3-169.2.5-2.2.7-4.5.7-6.8 0-17.7-14.3-32-32-32zm544 208a144 144 0 1 0-288 0 144 144 0 1 0 288 0m-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l28.7 28.7 60.7-60.7c6.2-6.2 16.4-6.2 22.6 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/plug-circle-exclamation.svg�������0000664�0000000�0000000�00000001455�14753064456�0032510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32m192 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32M32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32v-67.2c12.3-2.5 24.1-6.4 35.1-11.5-2.1-10.8-3.1-21.9-3.1-33.3 0-80.3 53.8-148 127.3-169.2.5-2.2.7-4.5.7-6.8 0-17.7-14.3-32-32-32zm400 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288m0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48m0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16v-80c0-8.8 7.2-16 16-16"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/plug-circle-minus.svg�������������0000664�0000000�0000000�00000001407�14753064456�0031334�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32m192 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32M32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32v-67.2c12.3-2.5 24.1-6.4 35.1-11.5-2.1-10.8-3.1-21.9-3.1-33.3 0-80.3 53.8-148 127.3-169.2.5-2.2.7-4.5.7-6.8 0-17.7-14.3-32-32-32zm544 208a144 144 0 1 0-288 0 144 144 0 1 0 288 0m-64 0c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16h128c8.8 0 16 7.2 16 16"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/plug-circle-plus.svg��������������0000664�0000000�0000000�00000001530�14753064456�0031161�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32m192 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32M32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32v-67.2c12.3-2.5 24.1-6.4 35.1-11.5-2.1-10.8-3.1-21.9-3.1-33.3 0-80.3 53.8-148 127.3-169.2.5-2.2.7-4.5.7-6.8 0-17.7-14.3-32-32-32zm400 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288m16-208v48h48c8.8 0 16 7.2 16 16s-7.2 16-16 16h-48v48c0 8.8-7.2 16-16 16s-16-7.2-16-16v-48h-48c-8.8 0-16-7.2-16-16s7.2-16 16-16h48v-48c0-8.8 7.2-16 16-16s16 7.2 16 16"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/plug-circle-xmark.svg�������������0000664�0000000�0000000�00000001662�14753064456�0031326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32m192 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32M32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32v-67.2c12.3-2.5 24.1-6.4 35.1-11.5-2.1-10.8-3.1-21.9-3.1-33.3 0-80.3 53.8-148 127.3-169.2.5-2.2.7-4.5.7-6.8 0-17.7-14.3-32-32-32zm400 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288m59.3-180.7L454.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L432 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l36.7-36.7-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l36.7 36.7 36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6"/></svg>������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/plug.svg��������������������������0000664�0000000�0000000�00000001112�14753064456�0026735�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32m192 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32M32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32v-67.2C297 398 352 333.4 352 256v-32c17.7 0 32-14.3 32-32s-14.3-32-32-32z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/plus-minus.svg��������������������0000664�0000000�0000000�00000001060�14753064456�0030104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 32c0-17.7-14.3-32-32-32s-32 14.3-32 32v112H48c-17.7 0-32 14.3-32 32s14.3 32 32 32h112v112c0 17.7 14.3 32 32 32s32-14.3 32-32V208h112c17.7 0 32-14.3 32-32s-14.3-32-32-32H224zM0 480c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/plus.svg��������������������������0000664�0000000�0000000�00000000724�14753064456�0026761�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32v144H48c-17.7 0-32 14.3-32 32s14.3 32 32 32h144v144c0 17.7 14.3 32 32 32s32-14.3 32-32V288h144c17.7 0 32-14.3 32-32s-14.3-32-32-32H256z"/></svg>��������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/podcast.svg�����������������������0000664�0000000�0000000�00000002013�14753064456�0027424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M319.4 372c48.5-31.3 80.6-85.9 80.6-148 0-97.2-78.8-176-176-176S48 126.8 48 224c0 62.1 32.1 116.6 80.6 148 1.2 17.3 4 38 7.2 57.1l.2 1C56 395.8 0 316.5 0 224 0 100.3 100.3 0 224 0s224 100.3 224 224c0 92.5-56 171.9-136 206.1l.2-1.1c3.1-19.2 6-39.8 7.2-57m-2.3-38.1c-1.6-5.7-3.9-11.1-7-16.2-5.8-9.7-13.5-17-21.9-22.4 19.5-17.6 31.8-43 31.8-71.3 0-53-43-96-96-96s-96 43-96 96c0 28.3 12.3 53.8 31.8 71.3-8.4 5.4-16.1 12.7-21.9 22.4-3.1 5.1-5.4 10.5-7 16.2C99.8 307.5 80 268 80 224c0-79.5 64.5-144 144-144s144 64.5 144 144c0 44-19.8 83.5-50.9 109.9M224 312c32.9 0 64 8.6 64 43.8 0 33-12.9 104.1-20.6 132.9-5.1 19-24.5 23.4-43.4 23.4s-38.2-4.4-43.4-23.4C172.8 460.2 160 389 160 355.9c0-35.1 31.1-43.8 64-43.8zm0-144a56 56 0 1 1 0 112 56 56 0 1 1 0-112"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/poo-storm.svg���������������������0000664�0000000�0000000�00000002055�14753064456�0027734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M236.9.2c-5.5-.7-11 1.4-14.5 5.7s-4.6 10.1-2.8 15.3c2.8 8.2 4.3 16.9 4.3 26.1 0 21.7-8.5 37.2-21.9 47.6-13.8 10.8-34 17-57.8 17l-16.2.1c-35.3 0-64 28.7-64 64 0 12.2 3.4 23.5 9.3 33.2C31.7 216.2 0 252.4 0 296c0 40.9 28 75.4 65.8 85.2-5.3-18.5 1-38.5 16.2-50.7l160-128c17.6-14.1 42.6-14 60.2.2s22.8 38.6 12.8 58.8L285.7 320H304c20.4 0 38.5 12.9 45.3 32.1 3.7 10.6 3.5 21.8 0 31.9H360c48.6 0 88-39.4 88-88 0-43.6-31.7-79.8-73.3-86.8 5.9-9.7 9.3-21.1 9.3-33.2 0-35.3-28.7-64-64-64h-1.4c.9-5.4 1.4-10.9 1.4-16.6 0-48.7-36.1-88.9-83.1-95.2M282 227.6c-5.8-4.7-14.2-4.7-20.1-.1l-160 128c-5.3 4.2-7.4 11.4-5.1 17.8s8.3 10.7 15.1 10.7H182l-52.3 104.8c-3.4 6.7-1.6 14.9 4.3 19.6s14.2 4.7 20.1.1l160-128c5.3-4.2 7.4-11.4 5.1-17.8s-8.3-10.7-15.1-10.7H234l52.4-104.8c3.4-6.7 1.6-14.9-4.3-19.6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/poo.svg���������������������������0000664�0000000�0000000�00000001717�14753064456�0026576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M268.9.9c-5.5-.7-11 1.4-14.5 5.7s-4.6 10.1-2.8 15.4c2.8 8.2 4.3 16.9 4.3 26.1 0 44.1-35.7 79.9-79.8 80L160 128c-35.3 0-64 28.7-64 64 0 19.1 8.4 36.3 21.7 48H104c-39.8 0-72 32.2-72 72 0 23.2 11 43.8 28 57-34.1 5.7-60 35.3-60 71 0 39.8 32.2 72 72 72h368c39.8 0 72-32.2 72-72 0-35.7-25.9-65.3-60-71 17-13.2 28-33.8 28-57 0-39.8-32.2-72-72-72h-13.7c13.3-11.7 21.7-28.9 21.7-48 0-35.3-28.7-64-64-64h-5.5c3.5-10 5.5-20.8 5.5-32 0-48.6-36.2-88.8-83.1-95.1M192 256a32 32 0 1 1 0 64 32 32 0 1 1 0-64m96 32a32 32 0 1 1 64 0 32 32 0 1 1-64 0m64 108.3c0 2.4-.7 4.8-2.2 6.7-8.2 10.5-39.5 45-93.8 45s-85.6-34.6-93.8-45c-1.5-1.9-2.2-4.3-2.2-6.7 0-6.8 5.5-12.3 12.3-12.3h167.4c6.8 0 12.3 5.5 12.3 12.3"/></svg>�������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/poop.svg��������������������������0000664�0000000�0000000�00000001337�14753064456�0026754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M254.4 6.6c3.5-4.3 9-6.5 14.5-5.7C315.8 7.2 352 47.4 352 96c0 11.2-1.9 22-5.5 32h5.5c35.3 0 64 28.7 64 64 0 19.1-8.4 36.3-21.7 48H408c39.8 0 72 32.2 72 72 0 23.2-11 43.8-28 57 34.1 5.7 60 35.3 60 71 0 39.8-32.2 72-72 72H72c-39.8 0-72-32.2-72-72 0-35.7 25.9-65.3 60-71-17-13.2-28-33.8-28-57 0-39.8 32.2-72 72-72h13.7C104.4 228.3 96 211.1 96 192c0-35.3 28.7-64 64-64h16.2c44.1-.1 79.8-35.9 79.8-80 0-9.2-1.5-17.9-4.3-26.1-1.8-5.2-.8-11.1 2.8-15.4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/power-off.svg���������������������0000664�0000000�0000000�00000001252�14753064456�0027677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32v224c0 17.7 14.3 32 32 32s32-14.3 32-32zm-144.5 88.6c13.6-11.3 15.4-31.5 4.1-45.1s-31.5-15.4-45.1-4.1C49.7 115.4 16 181.8 16 256c0 132.5 107.5 240 240 240s240-107.5 240-240c0-74.2-33.8-140.6-86.6-184.6-13.6-11.3-33.8-9.4-45.1 4.1s-9.4 33.8 4.1 45.1c38.9 32.3 63.5 81 63.5 135.4 0 97.2-78.8 176-176 176s-176-78.8-176-176c0-54.4 24.7-103.1 63.5-135.4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/prescription-bottle-medical.svg���0000664�0000000�0000000�00000001214�14753064456�0033375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 32C0 14.3 14.3 0 32 0h320c17.7 0 32 14.3 32 32v32c0 17.7-14.3 32-32 32H32C14.3 96 0 81.7 0 64zm32 96h320v320c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64zm128 112v48h-48c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48v-48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/prescription-bottle.svg�����������0000664�0000000�0000000�00000001104�14753064456�0031777�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 32C0 14.3 14.3 0 32 0h320c17.7 0 32 14.3 32 32v32c0 17.7-14.3 32-32 32H32C14.3 96 0 81.7 0 64zm32 96h320v320c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64v-32h112c8.8 0 16-7.2 16-16s-7.2-16-16-16H32v-64h112c8.8 0 16-7.2 16-16s-7.2-16-16-16H32v-64h112c8.8 0 16-7.2 16-16s-7.2-16-16-16H32z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/prescription.svg������������������0000664�0000000�0000000�00000001261�14753064456�0030514�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 0C14.3 0 0 14.3 0 32v256c0 17.7 14.3 32 32 32s32-14.3 32-32v-64h50.7l128 128-105.3 105.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L288 397.3l105.4 105.3c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L333.3 352l105.3-105.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 306.7l-85.8-85.8C251.4 209.1 288 164.8 288 112 288 50.1 237.9 0 176 0zm144 160H64V64h112c26.5 0 48 21.5 48 48s-21.5 48-48 48"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/print.svg�������������������������0000664�0000000�0000000�00000001166�14753064456�0027133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 0C92.7 0 64 28.7 64 64v96h64V64h226.7L384 93.3V160h64V93.3c0-17-6.7-33.3-18.7-45.3L400 18.7C388 6.7 371.7 0 354.7 0zm256 352v96H128v-96zm64 32h32c17.7 0 32-14.3 32-32v-96c0-35.3-28.7-64-64-64H64c-35.3 0-64 28.7-64 64v96c0 17.7 14.3 32 32 32h32v64c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64zm-16-136a24 24 0 1 1 0 48 24 24 0 1 1 0-48"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/pump-medical.svg������������������0000664�0000000�0000000�00000001441�14753064456�0030350�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 32v96h128V96h60.1c4.2 0 8.3 1.7 11.3 4.7l33.9 33.9c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-33.9-33.9c-15-15-35.4-23.4-56.6-23.4H256c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32m-10.6 128c-33.3 0-61 25.5-63.8 58.7L35 442.7C31.9 480 61.3 512 98.8 512h186.4c37.4 0 66.9-32 63.8-69.3l-18.7-224c-2.8-33.2-30.5-58.7-63.8-58.7zM216 280v32h32c13.3 0 24 10.7 24 24s-10.7 24-24 24h-32v32c0 13.3-10.7 24-24 24s-24-10.7-24-24v-32h-32c-13.3 0-24-10.7-24-24s10.7-24 24-24h32v-32c0-13.3 10.7-24 24-24s24 10.7 24 24"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/pump-soap.svg���������������������0000664�0000000�0000000�00000001371�14753064456�0027716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 32v96h128V96h60.1c4.2 0 8.3 1.7 11.3 4.7l33.9 33.9c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-33.9-33.9c-15-15-35.4-23.4-56.6-23.4H256c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32m-10.6 128c-33.3 0-61 25.5-63.8 58.7L35 442.7C31.9 480 61.3 512 98.8 512h186.4c37.4 0 66.9-32 63.8-69.3l-18.7-224c-2.8-33.2-30.5-58.7-63.8-58.7zM256 360c0 35.3-28.7 56-64 56s-64-20.7-64-56c0-32.5 37-80.9 50.9-97.9 3.2-3.9 8.1-6.1 13.1-6.1s9.9 2.2 13.1 6.1c13.9 17 50.9 65.4 50.9 97.9"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/puzzle-piece.svg������������������0000664�0000000�0000000�00000002256�14753064456�0030414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 104.8c0-9.2-5.8-17.3-13.2-22.8-11.6-8.7-18.8-20.7-18.8-34 0-26.5 28.7-48 64-48s64 21.5 64 48c0 13.3-7.2 25.3-18.8 34-7.4 5.5-13.2 13.6-13.2 22.8 0 12.8 10.4 23.2 23.2 23.2H336c26.5 0 48 21.5 48 48v56.8c0 12.8 10.4 23.2 23.2 23.2 9.2 0 17.3-5.8 22.8-13.2 8.7-11.6 20.7-18.8 34-18.8 26.5 0 48 28.7 48 64s-21.5 64-48 64c-13.3 0-25.3-7.2-34-18.8-5.5-7.4-13.6-13.2-22.8-13.2-12.8 0-23.2 10.4-23.2 23.2V464c0 26.5-21.5 48-48 48h-56.8c-12.8 0-23.2-10.4-23.2-23.2 0-9.2 5.8-17.3 13.2-22.8 11.6-8.7 18.8-20.7 18.8-34 0-26.5-28.7-48-64-48s-64 21.5-64 48c0 13.3 7.2 25.3 18.8 34 7.4 5.5 13.2 13.6 13.2 22.8 0 12.8-10.4 23.2-23.2 23.2H48c-26.5 0-48-21.5-48-48V343.2C0 330.4 10.4 320 23.2 320c9.2 0 17.3 5.8 22.8 13.2 8.7 11.6 20.7 18.8 34 18.8 26.5 0 48-28.7 48-64s-21.5-64-48-64c-13.3 0-25.3 7.2-34 18.8-5.5 7.4-13.6 13.2-22.8 13.2C10.4 256 0 245.6 0 232.8V176c0-26.5 21.5-48 48-48h120.8c12.8 0 23.2-10.4 23.2-23.2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/q.svg�����������������������������0000664�0000000�0000000�00000001243�14753064456�0026233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 256c0 88.4 71.6 160 160 160 28.9 0 56-7.7 79.4-21.1l-72-86.4c-11.3-13.6-9.5-33.8 4.1-45.1s33.8-9.5 45.1 4.1l70.9 85.1c20.4-26.8 32.5-60.3 32.5-96.6 0-88.4-71.6-160-160-160S64 167.6 64 256m280.9 188.6C310 467 268.5 480 224 480 100.3 480 0 379.7 0 256S100.3 32 224 32s224 100.3 224 224c0 56.1-20.6 107.4-54.7 146.7l47.3 56.8c11.3 13.6 9.5 33.8-4.1 45.1s-33.8 9.5-45.1-4.1l-46.6-55.9z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/qrcode.svg������������������������0000664�0000000�0000000�00000001675�14753064456�0027261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 80c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48zm64 16v64h64V96zM0 336c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48zm64 16v64h64v-64zM304 32h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48h-96c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48m80 64h-64v64h64zM256 304c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s7.2-16 16-16 16 7.2 16 16v96c0 8.8-7.2 16-16 16h-64c-8.8 0-16-7.2-16-16s-7.2-16-16-16-16 7.2-16 16v64c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zm112 176a16 16 0 1 1 0-32 16 16 0 1 1 0 32m64 0a16 16 0 1 1 0-32 16 16 0 1 1 0 32"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/question.svg����������������������0000664�0000000�0000000�00000001212�14753064456�0027636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M80 160c0-35.3 28.7-64 64-64h32c35.3 0 64 28.7 64 64v3.6c0 21.8-11.1 42.1-29.4 53.8l-42.2 27.1a87.98 87.98 0 0 0-40.4 74v1.4c0 17.7 14.3 32 32 32s32-14.3 32-32v-1.4c0-8.2 4.2-15.8 11-20.2l42.2-27.1c36.6-23.6 58.8-64.1 58.8-107.7v-3.6c0-70.7-57.3-128-128-128h-32C73.3 32 16 89.3 16 160c0 17.7 14.3 32 32 32s32-14.3 32-32m80 320a40 40 0 1 0 0-80 40 40 0 1 0 0 80"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/quote-left.svg��������������������0000664�0000000�0000000�00000001172�14753064456�0030061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 216C0 149.7 53.7 96 120 96h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-30.9 0-56 25.1-56 56v8h64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V216m256 0c0-66.3 53.7-120 120-120h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-30.9 0-56 25.1-56 56v8h64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64h-64c-35.3 0-64-28.7-64-64V216"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/quote-right.svg�������������������0000664�0000000�0000000�00000001200�14753064456�0030234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 296c0 66.3-53.7 120-120 120h-8c-17.7 0-32-14.3-32-32s14.3-32 32-32h8c30.9 0 56-25.1 56-56v-8h-64c-35.3 0-64-28.7-64-64v-64c0-35.3 28.7-64 64-64h64c35.3 0 64 28.7 64 64v136m-256 0c0 66.3-53.7 120-120 120h-8c-17.7 0-32-14.3-32-32s14.3-32 32-32h8c30.9 0 56-25.1 56-56v-8H64c-35.3 0-64-28.7-64-64v-64c0-35.3 28.7-64 64-64h64c35.3 0 64 28.7 64 64v136"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/r.svg�����������������������������0000664�0000000�0000000�00000001035�14753064456�0026233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v352c0 17.7 14.3 32 32 32s32-14.3 32-32V320h95.3l102.5 146.4c10.1 14.5 30.1 18 44.6 7.9s18-30.1 7.9-44.6l-84.2-120.2C282.8 288.1 320 236.4 320 176c0-79.5-64.5-144-144-144zm112 224H64V96h112c44.2 0 80 35.8 80 80s-35.8 80-80 80"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/radiation.svg���������������������0000664�0000000�0000000�00000001371�14753064456�0027747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M216 186.7c-23.9 13.8-40 39.7-40 69.3H32c-17.7 0-32.2-14.4-30-31.9C10.7 154 47.8 92.7 101.3 52c14.1-10.7 33.8-5.3 42.7 10zM256 336c14.6 0 28.2-3.9 40-10.7l72 124.8c8.8 15.3 3.7 35.1-12.6 41.9-30.6 12.9-64.2 20-99.4 20s-68.9-7.1-99.4-20c-16.3-6.9-21.4-26.6-12.6-41.9l72-124.8c11.8 6.8 25.4 10.7 40 10.7m224-80H336c0-29.6-16.1-55.5-40-69.3L368 62c8.8-15.3 28.6-20.7 42.7-10 53.6 40.7 90.6 102 99.4 172.1 2.2 17.5-12.4 31.9-30 31.9zm-224-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/radio.svg�������������������������0000664�0000000�0000000�00000001423�14753064456�0027071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M494.8 47c12.7-3.7 20-17.1 16.3-29.8S494-2.8 481.2 1L51.7 126.9c-9.4 2.7-17.9 7.3-25.1 13.2C10.5 151.7 0 170.6 0 192v256c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V192c0-35.3-28.7-64-64-64H218.5zM368 240a80 80 0 1 1 0 160 80 80 0 1 1 0-160M80 256c0-8.8 7.2-16 16-16h96c8.8 0 16 7.2 16 16s-7.2 16-16 16H96c-8.8 0-16-7.2-16-16m-16 64c0-8.8 7.2-16 16-16h128c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16m16 64c0-8.8 7.2-16 16-16h96c8.8 0 16 7.2 16 16s-7.2 16-16 16H96c-8.8 0-16-7.2-16-16"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/rainbow.svg�����������������������0000664�0000000�0000000�00000001477�14753064456�0027445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 96C178.6 96 64 210.6 64 352v96c0 17.7-14.3 32-32 32S0 465.7 0 448v-96C0 175.3 143.3 32 320 32s320 143.3 320 320v96c0 17.7-14.3 32-32 32s-32-14.3-32-32v-96c0-141.4-114.6-256-256-256m0 192c-35.3 0-64 28.7-64 64v96c0 17.7-14.3 32-32 32s-32-14.3-32-32v-96c0-70.7 57.3-128 128-128s128 57.3 128 128v96c0 17.7-14.3 32-32 32s-32-14.3-32-32v-96c0-35.3-28.7-64-64-64m-160 64v96c0 17.7-14.3 32-32 32s-32-14.3-32-32v-96c0-123.7 100.3-224 224-224s224 100.3 224 224v96c0 17.7-14.3 32-32 32s-32-14.3-32-32v-96c0-88.4-71.6-160-160-160s-160 71.6-160 160"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/ranking-star.svg������������������0000664�0000000�0000000�00000001513�14753064456�0030373�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M353.8 54.1 330.2 6.3c-3.9-8.3-16.1-8.6-20.4 0l-23.6 47.8-52.3 7.5c-9.3 1.4-13.3 12.9-6.4 19.8l38 37-9 52.1c-1.4 9.3 8.2 16.5 16.8 12.2l46.9-24.8 46.6 24.4c8.6 4.3 18.3-2.9 16.8-12.2l-9-52.1 38-36.6c6.8-6.8 2.9-18.3-6.4-19.8l-52.3-7.5zM256 256c-17.7 0-32 14.3-32 32v192c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32V288c0-17.7-14.3-32-32-32zM32 320c-17.7 0-32 14.3-32 32v128c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32zm416 96v64c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32v-64c0-17.7-14.3-32-32-32H480c-17.7 0-32 14.3-32 32"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/receipt.svg�����������������������0000664�0000000�0000000�00000001637�14753064456�0027435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M14 2.2c8.5-3.9 18.5-2.5 25.6 3.6L80 40.4l40.4-34.6c9-7.7 22.3-7.7 31.2 0L192 40.4l40.4-34.6c9-7.7 22.3-7.7 31.2 0L304 40.4l40.4-34.6c7.1-6.1 17.1-7.5 25.6-3.6s14 12.4 14 21.8v464c0 9.4-5.5 17.9-14 21.8s-18.5 2.5-25.6-3.6L304 471.6l-40.4 34.6c-9 7.7-22.3 7.7-31.2 0L192 471.6l-40.4 34.6c-9 7.7-22.3 7.7-31.2 0L80 471.6l-40.4 34.6c-7.1 6.1-17.1 7.5-25.6 3.6S0 497.4 0 488V24C0 14.6 5.5 6.1 14 2.2M96 144c-8.8 0-16 7.2-16 16s7.2 16 16 16h192c8.8 0 16-7.2 16-16s-7.2-16-16-16zM80 352c0 8.8 7.2 16 16 16h192c8.8 0 16-7.2 16-16s-7.2-16-16-16H96c-8.8 0-16 7.2-16 16m16-112c-8.8 0-16 7.2-16 16s7.2 16 16 16h192c8.8 0 16-7.2 16-16s-7.2-16-16-16z"/></svg>�������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/record-vinyl.svg������������������0000664�0000000�0000000�00000000720�14753064456�0030407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m256-96a96 96 0 1 1 0 192 96 96 0 1 1 0-192m0 224a128 128 0 1 0 0-256 128 128 0 1 0 0 256m0-96a32 32 0 1 0 0-64 32 32 0 1 0 0 64"/></svg>������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/rectangle-ad.svg������������������0000664�0000000�0000000�00000001473�14753064456�0030326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm165.5 141.3 72 144c5.9 11.9 1.1 26.3-10.7 32.2s-26.3 1.1-32.2-10.7l-5.4-10.8h-90.3l-5.4 10.7c-5.9 11.9-20.3 16.7-32.2 10.7s-16.7-20.3-10.7-32.2l72-144c4.1-8.1 12.4-13.3 21.5-13.3s17.4 5.1 21.5 13.3zM208 237.7 186.8 280h42.3zM392 256a24 24 0 1 0 0 48 24 24 0 1 0 0-48m24-43.9V184c0-13.3 10.7-24 24-24s24 10.7 24 24v144c0 13.3-10.7 24-24 24-6.6 0-12.6-2.7-17-7-9.4 4.5-19.9 7-31 7-39.8 0-72-32.2-72-72s32.2-72 72-72c8.4 0 16.5 1.4 24 4.1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/rectangle-list.svg����������������0000664�0000000�0000000�00000001375�14753064456�0030716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96c0-35.3 28.7-64 64-64h448c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm128 192a32 32 0 1 0 0-64 32 32 0 1 0 0 64m32-128a32 32 0 1 0-64 0 32 32 0 1 0 64 0m-32 224a32 32 0 1 0 0-64 32 32 0 1 0 0 64m96-248c-13.3 0-24 10.7-24 24s10.7 24 24 24h224c13.3 0 24-10.7 24-24s-10.7-24-24-24zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24h224c13.3 0 24-10.7 24-24s-10.7-24-24-24zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24h224c13.3 0 24-10.7 24-24s-10.7-24-24-24z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/rectangle-xmark.svg���������������0000664�0000000�0000000�00000001155�14753064456�0031061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm111 143c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/recycle.svg�����������������������0000664�0000000�0000000�00000002402�14753064456�0027417�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M174.7 45.1C192.2 17 223 0 256 0s63.8 17 81.3 45.1l38.6 61.7 27-15.6c8.4-4.9 18.9-4.2 26.6 1.7s11.1 15.9 8.6 25.3l-23.4 87.4c-3.4 12.8-16.6 20.4-29.4 17l-87.4-23.4c-9.4-2.5-16.3-10.4-17.6-20s3.4-19.1 11.8-23.9l28.4-16.4L283 79c-5.8-9.3-16-15-27-15s-21.2 5.7-27 15l-17.5 28c-9.2 14.8-28.6 19.5-43.6 10.5-15.3-9.2-20.2-29.2-10.7-44.4zm254.8 206.8c15-9 34.4-4.3 43.6 10.5l24.4 39.1c9.4 15.1 14.4 32.4 14.6 50.2.3 53.1-42.7 96.4-95.8 96.4L320 448v32c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-64-64c-9.4-9.4-9.4-24.6 0-33.9l64-64c6.9-6.9 17.2-8.9 26.2-5.2s14.8 12.5 14.8 22.2v32h96.2c17.6 0 31.9-14.4 31.8-32 0-5.9-1.7-11.7-4.8-16.7l-24.4-39.1c-9.5-15.2-4.7-35.2 10.7-44.4m-364.6-31L36 204.2c-8.4-4.9-13.1-14.3-11.8-23.9s8.2-17.5 17.6-20l87.4-23.4c12.8-3.4 26 4.2 29.4 17l23.4 87.3c2.5 9.4-.9 19.3-8.6 25.3s-18.2 6.6-26.6 1.7l-26.5-15.3-51.5 82.4c-3.1 5-4.8 10.8-4.8 16.7-.1 17.6 14.2 32 31.8 32H128c17.7 0 32 14.3 32 32s-14.3 32-32 32H95.8C42.7 448-.3 404.8 0 351.6c.1-17.8 5.1-35.1 14.6-50.2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/registered.svg��������������������0000664�0000000�0000000�00000001076�14753064456�0030134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512m-96-360c0-13.3 10.7-24 24-24h88c44.2 0 80 35.8 80 80 0 28-14.4 52.7-36.3 67l34.1 75.1c5.5 12.1.1 26.3-11.9 31.8s-26.3.1-31.8-11.9l-37.2-82H208v72c0 13.3-10.7 24-24 24s-24-10.7-24-24V152m48 88h64c17.7 0 32-14.3 32-32s-14.3-32-32-32h-64z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/repeat.svg������������������������0000664�0000000�0000000�00000001352�14753064456�0027254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 224c0 17.7 14.3 32 32 32s32-14.3 32-32c0-53 43-96 96-96h160v32c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l64-64c12.5-12.5 12.5-32.8 0-45.3l-64-64c-9.2-9.2-22.9-11.9-34.9-6.9S320 19.1 320 32v32H160C71.6 64 0 135.6 0 224m512 64c0-17.7-14.3-32-32-32s-32 14.3-32 32c0 53-43 96-96 96H192v-32c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9l-64 64c-12.5 12.5-12.5 32.8 0 45.3l64 64c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6v-32h160c88.4 0 160-71.6 160-160z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/reply-all.svg���������������������0000664�0000000�0000000�00000001435�14753064456�0027677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M209.4 39.5c-9.1-9.6-24.3-10-33.9-.9L33.8 173.2c-19.9 18.9-19.9 50.7 0 69.6l141.7 134.6c9.6 9.1 24.8 8.7 33.9-.9s8.7-24.8-.9-33.9L66.8 208 208.5 73.4c9.6-9.1 10-24.3.9-33.9M352 64c0-12.6-7.4-24.1-19-29.2s-25-3-34.4 5.4l-160 144c-6.7 6.1-10.6 14.7-10.6 23.8s3.9 17.7 10.6 23.8l160 144c9.4 8.5 22.9 10.6 34.4 5.4s19-16.6 19-29.2v-64h32c53 0 96 43 96 96 0 30.4-12.8 47.9-22.2 56.7-5.5 5.1-9.8 12-9.8 19.5 0 10.9 8.8 19.7 19.7 19.7 2.8 0 5.6-.6 8.1-1.9C494.5 467.9 576 417.3 576 304c0-97.2-78.8-176-176-176h-48z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/reply.svg�������������������������0000664�0000000�0000000�00000001176�14753064456�0027133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M205 34.8c11.5 5.1 19 16.6 19 29.2v64h112c97.2 0 176 78.8 176 176 0 113.3-81.5 163.9-100.2 174.1-2.5 1.4-5.3 1.9-8.1 1.9-10.9 0-19.7-8.9-19.7-19.7 0-7.5 4.3-14.4 9.8-19.5 9.4-8.8 22.2-26.4 22.2-56.7 0-53-43-96-96-96h-96v64c0 12.6-7.4 24.1-19 29.2s-25 3-34.4-5.4l-160-144C3.9 225.7 0 217.1 0 208s3.9-17.7 10.6-23.8l160-144c9.4-8.5 22.9-10.6 34.4-5.4"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/republican.svg��������������������0000664�0000000�0000000�00000002705�14753064456�0030123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 192C0 103.6 71.6 32 160 32h224c88.4 0 160 71.6 160 160v64H0zm415.9-64c-2.4 0-4.7 1.3-5.7 3.4L397.6 156l-28.2 4c-2.4.3-4.4 2-5.2 4.2s-.1 4.7 1.6 6.3l20.4 19.2-4.8 27.1c-.4 2.3.6 4.7 2.5 6s4.6 1.6 6.7.5l25.2-12.8 25.2 12.8c2.2 1.1 4.8.9 6.7-.5s3-3.7 2.5-6l-4.8-27.1 20.6-19.2c1.7-1.6 2.4-4.1 1.6-6.3s-2.8-3.9-5.2-4.2l-28.2-4-12.6-24.6c-1.1-2.1-3.3-3.4-5.7-3.4m-138.3 3.4c-1.1-2.1-3.3-3.4-5.7-3.4s-4.7 1.3-5.7 3.4L253.6 156l-28.2 4c-2.4.3-4.4 2-5.2 4.2s-.1 4.7 1.6 6.3l20.4 19.2-4.8 27.1c-.4 2.3.6 4.7 2.5 6s4.6 1.6 6.7.5l25.2-12.8 25.2 12.8c2.2 1.1 4.8.9 6.7-.5s3-3.7 2.5-6l-4.8-27.1 20.6-19.2c1.7-1.6 2.4-4.1 1.6-6.3s-2.8-3.9-5.2-4.2l-28.2-4zM127.9 128c-2.4 0-4.7 1.3-5.7 3.4L109.6 156l-28.2 4c-2.4.3-4.4 2-5.2 4.2s-.1 4.7 1.6 6.3l20.4 19.2-4.8 27.1c-.4 2.3.6 4.7 2.5 6s4.6 1.6 6.7.5l25.2-12.8 25.2 12.8c2.2 1.1 4.8.9 6.7-.5s3-3.7 2.5-6l-4.8-27.1 20.6-19.2c1.7-1.6 2.4-4.1 1.6-6.3s-2.8-3.9-5.2-4.2l-28.2-4-12.6-24.6c-1.1-2.1-3.3-3.4-5.7-3.4m.1 160h416v112c0 8.8 7.2 16 16 16s16-7.2 16-16v-48c0-17.7 14.3-32 32-32s32 14.3 32 32v48c0 44.2-35.8 80-80 80s-80-35.8-80-80v-48h-32v96c0 17.7-14.3 32-32 32h-64c-17.7 0-32-14.3-32-32v-64H128v64c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V288z"/></svg>�����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/restroom.svg����������������������0000664�0000000�0000000�00000002075�14753064456�0027651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M80 48a48 48 0 1 1 96 0 48 48 0 1 1-96 0m40 304v128c0 17.7-14.3 32-32 32s-32-14.3-32-32V325.2c-8.1 9.2-21.1 13.2-33.5 9.4-16.9-5.3-26.3-23.2-21-40.1l30.9-99.1C44.9 155.3 82 128 124 128h8c42 0 79.1 27.3 91.6 67.4l30.9 99.1c5.3 16.9-4.1 34.8-21 40.1-12.4 3.9-25.4-.2-33.5-9.4V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352zM320 0c13.3 0 24 10.7 24 24v464c0 13.3-10.7 24-24 24s-24-10.7-24-24V24c0-13.3 10.7-24 24-24m144 48a48 48 0 1 1 96 0 48 48 0 1 1-96 0m-24 432v-96h-17.8c-10.9 0-18.6-10.7-15.2-21.1l9-26.9c-3.2 0-6.4-.5-9.5-1.5-16.9-5.3-26.3-23.2-21-40.1l29.7-95.2c13.2-42.3 52.4-71.2 96.8-71.2s83.6 28.9 96.8 71.2l29.7 95.2c5.3 16.9-4.1 34.8-21 40.1-3.2 1-6.4 1.5-9.5 1.5l9 26.9c3.5 10.4-4.3 21.1-15.2 21.1H584v96c0 17.7-14.3 32-32 32s-32-14.3-32-32v-96h-16v96c0 17.7-14.3 32-32 32s-32-14.3-32-32"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/retweet.svg�����������������������0000664�0000000�0000000�00000001372�14753064456�0027455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M272 416c17.7 0 32-14.3 32-32s-14.3-32-32-32H160c-17.7 0-32-14.3-32-32V192h32c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-64-64c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-9.2 9.2-11.9 22.9-6.9 34.9S19.1 192 32.1 192h32v128c0 53 43 96 96 96h112zm32-320c-17.7 0-32 14.3-32 32s14.3 32 32 32h112c17.7 0 32 14.3 32 32v128h-32c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l64 64c12.5 12.5 32.8 12.5 45.3 0l64-64c9.2-9.2 11.9-22.9 6.9-34.9S556.9 320 543.9 320h-32V192c0-53-43-96-96-96z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/ribbon.svg������������������������0000664�0000000�0000000�00000001426�14753064456�0027251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m333.2 322.8-133.9-146-53.3-58.2c7.8-5.1 37-22.6 78-22.6s70.2 17.4 78 22.6L245.7 180l85.6 93.4 27.4-29.8c16.3-17.7 25.3-40.9 25.3-65v-29.5c0-19-5.6-37.5-16.1-53.3l-40.1-60.2C312.9 13.4 287.9 0 261.2 0h-76c-25.8 0-50.1 12.5-65.1 33.5L81.9 87C70.3 103.2 64 122.8 64 142.8V164c0 23.2 8.4 45.6 23.6 63.1l56 64.2 83.3 95.6 91.8 105.3c10 11.5 26.8 14.3 40 6.8l54.5-31.1c17.8-10.2 21.6-34.3 7.7-49.4zm-128 87.8L121.9 315 27.1 418.5c-13.9 15.1-10.1 39.2 7.7 49.4l55.1 31.5c13 7.4 29.3 4.9 39.4-6.1l75.9-82.6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/right-from-bracket.svg������������0000664�0000000�0000000�00000001311�14753064456�0031456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m377.9 105.9 122.8 122.8c7.2 7.2 11.3 17.1 11.3 27.3s-4.1 20.1-11.3 27.3L377.9 406.1c-6.4 6.4-15 9.9-24 9.9-18.7 0-33.9-15.2-33.9-33.9V320H192c-17.7 0-32-14.3-32-32v-64c0-17.7 14.3-32 32-32h128v-62.1c0-18.7 15.2-33.9 33.9-33.9 9 0 17.6 3.6 24 9.9M160 96H96c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-53 0-96-43-96-96V128c0-53 43-96 96-96h64c17.7 0 32 14.3 32 32s-14.3 32-32 32"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/right-left.svg��������������������0000664�0000000�0000000�00000001275�14753064456�0030045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 96h320V32c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l96 96c6 6 9.4 14.1 9.4 22.6s-3.4 16.6-9.4 22.6l-96 96c-9.2 9.2-22.9 11.9-34.9 6.9S352 236.8 352 223.8v-64L32 160c-17.7 0-32-14.3-32-32s14.3-32 32-32m448 256c17.7 0 32 14.3 32 32s-14.3 32-32 32H160v64c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9l-96-96c-6-6-9.4-14.1-9.4-22.6s3.4-16.6 9.4-22.6l96-96c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6v64h320z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/right-long.svg��������������������0000664�0000000�0000000�00000000771�14753064456�0030052�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M334.5 414c8.8 3.8 19 2 26-4.6l144-136c4.8-4.5 7.5-10.8 7.5-17.4s-2.7-12.9-7.5-17.4l-144-136c-7-6.6-17.2-8.4-26-4.6S320 110.5 320 120v72H32c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32h288v72c0 9.6 5.7 18.2 14.5 22"/></svg>�������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/right-to-bracket.svg��������������0000664�0000000�0000000�00000001311�14753064456�0031135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m217.9 105.9 122.8 122.8c7.2 7.2 11.3 17.1 11.3 27.3s-4.1 20.1-11.3 27.3L217.9 406.1c-6.4 6.4-15 9.9-24 9.9-18.7 0-33.9-15.2-33.9-33.9V320H32c-17.7 0-32-14.3-32-32v-64c0-17.7 14.3-32 32-32h128v-62.1c0-18.7 15.2-33.9 33.9-33.9 9 0 17.6 3.6 24 9.9M352 416h64c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32h-64c-17.7 0-32-14.3-32-32s14.3-32 32-32h64c53 0 96 43 96 96v256c0 53-43 96-96 96h-64c-17.7 0-32-14.3-32-32s14.3-32 32-32"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/ring.svg��������������������������0000664�0000000�0000000�00000001506�14753064456�0026734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 208c0 7.8 4.4 18.7 17.1 30.3C126.5 214.1 188.9 200 256 200s129.5 14.1 174.9 38.3c12.7-11.6 17.1-22.5 17.1-30.3 0-12.3-10.8-32-47.9-50.6C364.9 139.8 314 128 256 128s-108.9 11.8-144.1 29.4C74.8 176 64 195.7 64 208m192 40c-47 0-89.3 7.6-122.9 19.7C166.3 280.2 208.8 288 256 288s89.7-7.8 122.9-20.3C345.3 255.6 303 248 256 248M0 208c0-49.6 39.4-85.8 83.3-107.8C129.1 77.3 190.3 64 256 64s126.9 13.3 172.7 36.2c43.9 22 83.3 58.2 83.3 107.8v96c0 49.6-39.4 85.8-83.3 107.8-45.8 22.9-107 36.2-172.7 36.2s-126.9-13.3-172.7-36.2C39.4 389.8 0 353.6 0 304z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/road-barrier.svg������������������0000664�0000000�0000000�00000001213�14753064456�0030341�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 32C14.3 32 0 46.3 0 64v384c0 17.7 14.3 32 32 32s32-14.3 32-32V266.3L149.2 96H64V64c0-17.7-14.3-32-32-32m373.2 64h-74.3l-5.4 10.7L234.8 288h74.3l5.4-10.7zm-42.4 192h74.3l5.4-10.7L533.2 96h-74.3l-5.4 10.7zm-160-192-5.4 10.7L106.8 288h74.3l5.4-10.7L277.2 96h-74.3zm288 192H576v160c0 17.7 14.3 32 32 32s32-14.3 32-32V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v53.7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/road-bridge.svg�������������������0000664�0000000�0000000�00000001515�14753064456�0030154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M352 0h256c17.7 0 32 14.3 32 32v448c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V32c0-17.7 14.3-32 32-32m128 200c-13.3 0-24 10.7-24 24v64c0 13.3 10.7 24 24 24s24-10.7 24-24v-64c0-13.3-10.7-24-24-24m24 184c0-13.3-10.7-24-24-24s-24 10.7-24 24v64c0 13.3 10.7 24 24 24s24-10.7 24-24zM480 40c-13.3 0-24 10.7-24 24v64c0 13.3 10.7 24 24 24s24-10.7 24-24V64c0-13.3-10.7-24-24-24M32 96h256v64h-40v64h40v96c-53 0-96 43-96 96v64c0 17.7-14.3 32-32 32h-32c-17.7 0-32-14.3-32-32v-64c0-53-43-96-96-96v-96h72v-64H32c-17.7 0-32-14.3-32-32s14.3-32 32-32m168 64h-80v64h80z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/road-circle-check.svg�������������0000664�0000000�0000000�00000001605�14753064456�0031234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M213.2 32H288v64c0 17.7 14.3 32 32 32s32-14.3 32-32V32h74.8c27.1 0 51.3 17.1 60.3 42.6l42.7 120.6c-10.9-2.1-22.2-3.2-33.8-3.2-59.5 0-112.1 29.6-144 74.8V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 17.7 14.3 32 32 32 2.3 0 4.6-.3 6.8-.7-4.5 15.5-6.8 31.8-6.8 48.7 0 5.4.2 10.7.7 16h-.7c-17.7 0-32 14.3-32 32v64H86.6C56.5 480 32 455.5 32 425.4c0-6.2 1.1-12.4 3.1-18.2L152.9 74.6C162 49.1 186.1 32 213.2 32M352 368a144 144 0 1 1 288 0 144 144 0 1 1-288 0m211.3-43.3c-6.2-6.2-16.4-6.2-22.6 0L480 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6"/></svg>���������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/road-circle-exclamation.svg�������0000664�0000000�0000000�00000001542�14753064456�0032463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M213.2 32H288v64c0 17.7 14.3 32 32 32s32-14.3 32-32V32h74.8c27.1 0 51.3 17.1 60.3 42.6l42.7 120.6c-10.9-2.1-22.2-3.2-33.8-3.2-59.5 0-112.1 29.6-144 74.8V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 17.7 14.3 32 32 32 2.3 0 4.6-.3 6.8-.7-4.5 15.5-6.8 31.8-6.8 48.7 0 5.4.2 10.7.7 16h-.7c-17.7 0-32 14.3-32 32v64H86.6C56.5 480 32 455.5 32 425.4c0-6.2 1.1-12.4 3.1-18.2L152.9 74.6C162 49.1 186.1 32 213.2 32M496 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288m0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48m0-192c-8.8 0-16 7.2-16 16v80c0 8.8 7.2 16 16 16s16-7.2 16-16v-80c0-8.8-7.2-16-16-16"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/road-circle-xmark.svg�������������0000664�0000000�0000000�00000001733�14753064456�0031303�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M213.2 32H288v64c0 17.7 14.3 32 32 32s32-14.3 32-32V32h74.8c27.1 0 51.3 17.1 60.3 42.6l42.7 120.6c-10.9-2.1-22.2-3.2-33.8-3.2-59.5 0-112.1 29.6-144 74.8V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 17.7 14.3 32 32 32 2.3 0 4.6-.3 6.8-.7-4.5 15.5-6.8 31.8-6.8 48.7 0 5.4.2 10.7.7 16h-.7c-17.7 0-32 14.3-32 32v64H86.6C56.5 480 32 455.5 32 425.4c0-6.2 1.1-12.4 3.1-18.2L152.9 74.6C162 49.1 186.1 32 213.2 32M496 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288m22.6 144 36.7-36.7c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L496 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l36.7 36.7-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l36.7-36.7 36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6z"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/road-lock.svg���������������������0000664�0000000�0000000�00000001560�14753064456�0027650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 32h-74.8c-27.1 0-51.3 17.1-60.3 42.6L35.1 407.2c-2.1 5.9-3.1 12-3.1 18.2 0 30.1 24.5 54.6 54.6 54.6H288v-64c0-17.7 14.3-32 32-32s32 14.3 32 32v64h32V352c0-23.7 12.9-44.4 32-55.4V272c0-58.3 44.6-106.2 101.5-111.5l-30.4-85.9C478 49.1 453.9 32 426.8 32H352v64c0 17.7-14.3 32-32 32s-32-14.3-32-32zm64 192v64c0 17.7-14.3 32-32 32s-32-14.3-32-32v-64c0-17.7 14.3-32 32-32s32 14.3 32 32m176 16c17.7 0 32 14.3 32 32v48h-64v-48c0-17.7 14.3-32 32-32m-80 32v48c-17.7 0-32 14.3-32 32v128c0 17.7 14.3 32 32 32h160c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32v-48c0-44.2-35.8-80-80-80s-80 35.8-80 80"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/road-spikes.svg�������������������0000664�0000000�0000000�00000001100�14753064456�0030204�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 116.8c0-15.8 20.5-22 29.3-8.9L192 256V116.8c0-15.8 20.5-22 29.3-8.9L320 256V116.8c0-15.8 20.5-22 29.3-8.9L448 256V116.8c0-15.8 20.5-22 29.3-8.9l129.5 194.3c14.2 21.3-1.1 49.7-26.6 49.7l-68.2.1H64zM32 384h576c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/road.svg��������������������������0000664�0000000�0000000�00000001224�14753064456�0026717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 32h-74.8c-27.1 0-51.3 17.1-60.3 42.6L3.1 407.2c-2 5.8-3.1 12-3.1 18.2C0 455.5 24.5 480 54.6 480H256v-64c0-17.7 14.3-32 32-32s32 14.3 32 32v64h201.4c30.2 0 54.6-24.5 54.6-54.6 0-6.2-1.1-12.4-3.1-18.2L455.1 74.6C446 49.1 421.9 32 394.8 32H320v64c0 17.7-14.3 32-32 32s-32-14.3-32-32zm64 192v64c0 17.7-14.3 32-32 32s-32-14.3-32-32v-64c0-17.7 14.3-32 32-32s32 14.3 32 32"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/robot.svg�������������������������0000664�0000000�0000000�00000001564�14753064456�0027126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 0c17.7 0 32 14.3 32 32v64h120c39.8 0 72 32.2 72 72v272c0 39.8-32.2 72-72 72H168c-39.8 0-72-32.2-72-72V168c0-39.8 32.2-72 72-72h120V32c0-17.7 14.3-32 32-32M208 384c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16zm96 0c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16zm96 0c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16zM264 256a40 40 0 1 0-80 0 40 40 0 1 0 80 0m152 40a40 40 0 1 0 0-80 40 40 0 1 0 0 80M48 224h16v192H48c-26.5 0-48-21.5-48-48v-96c0-26.5 21.5-48 48-48m544 0c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48h-16V224z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/rocket.svg������������������������0000664�0000000�0000000�00000001411�14753064456�0027257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M156.6 384.9 125.7 354c-8.5-8.5-11.5-20.8-7.7-32.2 3-8.9 7-20.5 11.8-33.8H24c-8.6 0-16.6-4.6-20.9-12.1s-4.2-16.7.2-24.1l52.5-88.5c13-21.9 36.5-35.3 61.9-35.3H200c2.4-4 4.8-7.7 7.2-11.3C289.1-4.1 411.1-8.1 483.9 5.3c11.6 2.1 20.6 11.2 22.8 22.8 13.4 72.9 9.3 194.8-111.4 276.7-3.5 2.4-7.3 4.8-11.3 7.2v82.3c0 25.4-13.4 49-35.3 61.9l-88.5 52.5c-7.4 4.4-16.6 4.5-24.1.2S224 496.7 224 488V380.8c-14.1 4.9-26.4 8.9-35.7 11.9-11.2 3.6-23.4.5-31.8-7.8zM384 168a40 40 0 1 0 0-80 40 40 0 1 0 0 80"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/rotate-left.svg�������������������0000664�0000000�0000000�00000001170�14753064456�0030220�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48.5 224H40c-13.3 0-24-10.7-24-24V72c0-9.7 5.8-18.5 14.8-22.2S50.1 48.1 57 55l41.6 41.6c87.6-86.5 228.7-86.2 315.8 1 87.5 87.5 87.5 229.3 0 316.8s-229.3 87.5-316.8 0c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0c62.5 62.5 163.8 62.5 226.3 0s62.5-163.8 0-226.3c-62.2-62.2-162.7-62.5-225.3-1L185 183c6.9 6.9 8.9 17.2 5.2 26.2S177.7 224 168 224z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/rotate-right.svg������������������0000664�0000000�0000000�00000001176�14753064456�0030411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M463.5 224h8.5c13.3 0 24-10.7 24-24V72c0-9.7-5.8-18.5-14.8-22.2S461.9 48.1 455 55l-41.6 41.6c-87.6-86.5-228.7-86.2-315.8 1-87.5 87.5-87.5 229.3 0 316.8s229.3 87.5 316.8 0c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0c-62.5 62.5-163.8 62.5-226.3 0s-62.5-163.8 0-226.3c62.2-62.2 162.7-62.5 225.3-1L327 183c-6.9 6.9-8.9 17.2-5.2 26.2S334.3 224 344 224z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/rotate.svg������������������������0000664�0000000�0000000�00000001620�14753064456�0027270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M142.9 142.9c-17.5 17.5-30.1 38-37.8 59.8-5.9 16.7-24.2 25.4-40.8 19.5S38.9 198 44.8 181.4c10.8-30.7 28.4-59.4 52.8-83.8 87.2-87.2 228.3-87.5 315.8-1L455 55c6.9-6.9 17.2-8.9 26.2-5.2S496 62.3 496 72v128c0 13.3-10.7 24-24 24H344c-9.7 0-18.5-5.8-22.2-14.8s-1.7-19.3 5.2-26.2l41.1-41.1c-62.6-61.5-163.1-61.2-225.3 1zM16 312c0-13.3 10.7-24 24-24h128c9.7 0 18.5 5.8 22.2 14.8s1.7 19.3-5.2 26.2l-41.1 41.1c62.6 61.5 163.1 61.2 225.3-1 17.5-17.5 30.1-38 37.8-59.8 5.9-16.7 24.2-25.4 40.8-19.5s25.4 24.2 19.5 40.8c-10.8 30.6-28.4 59.3-52.9 83.8-87.2 87.2-228.3 87.5-315.8 1L57 457c-6.9 6.9-17.2 8.9-26.2 5.2S16 449.7 16 440V312.1z"/></svg>����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/route.svg�������������������������0000664�0000000�0000000�00000001552�14753064456�0027134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M512 96c0 50.2-59.1 125.1-84.6 155-3.8 4.4-9.4 6.1-14.5 5H320c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c53 0 96 43 96 96s-43 96-96 96H139.6c8.7-9.9 19.3-22.6 30-36.8 6.3-8.4 12.8-17.6 19-27.2H416c17.7 0 32-14.3 32-32s-14.3-32-32-32h-96c-53 0-96-43-96-96s43-96 96-96h39.8c-21-31.5-39.8-67.7-39.8-96 0-53 43-96 96-96s96 43 96 96M117.1 489.1c-3.8 4.3-7.2 8.1-10.1 11.3l-1.8 2-.2-.2c-6 4.6-14.6 4-20-1.8C59.8 473 0 402.5 0 352c0-53 43-96 96-96s96 43 96 96c0 30-21.1 67-43.5 97.9-10.7 14.7-21.7 28-30.8 38.5zM128 352a32 32 0 1 0-64 0 32 32 0 1 0 64 0m288-224a32 32 0 1 0 0-64 32 32 0 1 0 0 64"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/rss.svg���������������������������0000664�0000000�0000000�00000001123�14753064456�0026577�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32 229.8 0 416 186.2 416 416 0 17.7-14.3 32-32 32s-32-14.3-32-32C384 253.6 226.4 96 32 96 14.3 96 0 81.7 0 64m0 352a64 64 0 1 1 128 0 64 64 0 1 1-128 0m32-256c159.1 0 288 128.9 288 288 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-123.7-100.3-224-224-224-17.7 0-32-14.3-32-32s14.3-32 32-32"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/ruble-sign.svg��������������������0000664�0000000�0000000�00000001127�14753064456�0030043�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 32c-17.7 0-32 14.3-32 32v192H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v32c0 17.7 14.3 32 32 32s32-14.3 32-32v-32h160c17.7 0 32-14.3 32-32s-14.3-32-32-32H128v-32h112c79.5 0 144-64.5 144-144S319.5 32 240 32zm144 224H128V96h112c44.2 0 80 35.8 80 80s-35.8 80-80 80"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/rug.svg���������������������������0000664�0000000�0000000�00000001407�14753064456�0026572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M24 64h56v384H24c-13.3 0-24-10.7-24-24s10.7-24 24-24h8v-40h-8c-13.3 0-24-10.7-24-24s10.7-24 24-24h8v-32h-8c-13.3 0-24-10.7-24-24s10.7-24 24-24h8v-32h-8c-13.3 0-24-10.7-24-24s10.7-24 24-24h8v-40h-8c-13.3 0-24-10.7-24-24s10.7-24 24-24m88 0h416v384H112zm528 24c0 13.3-10.7 24-24 24h-8v40h8c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8v32h8c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8v32h8c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8v40h8c13.3 0 24 10.7 24 24s-10.7 24-24 24h-56V64h56c13.3 0 24 10.7 24 24"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/ruler-combined.svg����������������0000664�0000000�0000000�00000001277�14753064456�0030711�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M.2 468.9C2.7 493.1 23.1 512 48 512h416c26.5 0 48-21.5 48-48v-96c0-26.5-21.5-48-48-48h-48v80c0 8.8-7.2 16-16 16s-16-7.2-16-16v-80h-64v80c0 8.8-7.2 16-16 16s-16-7.2-16-16v-80h-64v80c0 8.8-7.2 16-16 16s-16-7.2-16-16v-80h-80c-8.8 0-16-7.2-16-16s7.2-16 16-16h80v-64h-80c-8.8 0-16-7.2-16-16s7.2-16 16-16h80v-64h-80c-8.8 0-16-7.2-16-16s7.2-16 16-16h80V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 1.7.1 3.3.2 4.9"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/ruler-horizontal.svg��������������0000664�0000000�0000000�00000001145�14753064456�0031314�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 336c0 26.5 21.5 48 48 48h544c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48h-64v80c0 8.8-7.2 16-16 16s-16-7.2-16-16v-80h-64v80c0 8.8-7.2 16-16 16s-16-7.2-16-16v-80h-64v80c0 8.8-7.2 16-16 16s-16-7.2-16-16v-80h-64v80c0 8.8-7.2 16-16 16s-16-7.2-16-16v-80h-64v80c0 8.8-7.2 16-16 16s-16-7.2-16-16v-80H48c-26.5 0-48 21.5-48 48z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/ruler-vertical.svg����������������0000664�0000000�0000000�00000001061�14753064456�0030731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 48C0 21.5 21.5 0 48 0h160c26.5 0 48 21.5 48 48v48h-80c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v64h-80c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v64h-80c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v64h-80c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v48c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/ruler.svg�������������������������0000664�0000000�0000000�00000001265�14753064456�0027130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M177.9 494.1c-18.7 18.7-49.1 18.7-67.9 0l-92.1-92.2c-18.7-18.7-18.7-49.1 0-67.9l50.7-50.7 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48 41.4-41.4 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48 41.4-41.4 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48 41.4-41.4 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48L333.9 18C352.6-.7 383-.7 401.8 18l92.1 92.1c18.7 18.7 18.7 49.1 0 67.9z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/rupee-sign.svg��������������������0000664�0000000�0000000�00000002433�14753064456�0030053�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32h80c79.5 0 144 64.5 144 144 0 58.8-35.2 109.3-85.7 131.7l51.4 128.4c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8l-56-139.9H64v128c0 17.7-14.3 32-32 32S0 465.7 0 448V64m64 192h48c44.2 0 80-35.8 80-80s-35.8-80-80-80H64zm256.5 16.4c-.9 6 0 8.7.4 9.8s1.4 2.6 4.2 4.9c7.2 5.7 18.7 10 37.9 16.8l1.3.5c16 5.6 38.7 13.6 55.7 28.1 9.5 8.1 17.9 18.6 23.1 32.3 5.1 13.7 6.1 28.5 3.8 44-4.2 28.1-20.5 49.3-43.8 60.9-22.1 11-48.1 12.5-73.2 8h-.2c-9.3-1.8-20.5-5.7-29.3-9-6-2.3-12.6-4.9-17.7-6.9-2.5-1-4.6-1.8-6.3-2.5-16.5-6.4-24.6-25-18.2-41.4s24.9-24.6 41.4-18.2c2.6 1 5.2 2 7.9 3.1 4.8 1.9 9.8 3.9 15.4 6 8.8 3.3 15.3 5.4 18.7 6 15.7 2.8 26.7.8 32.9-2.3 5-2.5 8-6 9.1-13 1-6.9.2-10.5-.5-12.3-.6-1.7-1.8-3.6-4.5-5.9-6.9-5.8-18.2-10.4-36.9-17l-3-1.1c-15.5-5.4-37-13-53.3-25.9-9.5-7.5-18.3-17.6-23.7-31-5.5-13.4-6.6-28-4.4-43.2 8.4-57.1 67-78 116.9-68.9 6.9 1.3 27.3 5.8 35.4 8.4 16.9 5.2 26.3 23.2 21.1 40.1s-23.2 26.3-40.1 21.1c-4.7-1.4-22.3-5.5-27.9-6.5-14.6-2.7-25.8-.4-32.6 3.2-6.3 3.3-8.9 7.6-9.5 12z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/rupiah-sign.svg�������������������0000664�0000000�0000000�00000001277�14753064456�0030230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32h80c79.5 0 144 64.5 144 144 0 58.8-35.2 109.3-85.7 131.7l51.4 128.4c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8l-56-139.9H64v128c0 17.7-14.3 32-32 32S0 465.7 0 448V64m64 192h48c44.2 0 80-35.8 80-80s-35.8-80-80-80H64zm256-96h80c61.9 0 112 50.1 112 112s-50.1 112-112 112h-48v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V192c0-17.7 14.3-32 32-32m80 160c26.5 0 48-21.5 48-48s-21.5-48-48-48h-48v96z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/s.svg�����������������������������0000664�0000000�0000000�00000002245�14753064456�0026240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M99.1 105.4C79 114 68.2 127.2 65.2 144.8c-2.4 14.1-.7 23.2 2 29.4 2.8 6.3 7.9 12.4 16.7 18.6 19.2 13.4 48.3 22.1 84.9 32.5 1 .3 1.9.6 2.9.8 32.7 9.3 72 20.6 100.9 40.7 15.7 10.9 29.9 25.5 38.6 45.1 8.8 19.8 10.8 42 6.6 66.3-7.3 42.5-35.3 71.7-71.8 87.3-35.4 15.2-79.1 17.9-123.7 10.9h-.2c-24-3.9-62.7-17.1-87.6-25.6-4.8-1.7-9.2-3.1-12.8-4.3-16.6-5.7-25.6-23.8-20.1-40.6s23.7-25.8 40.5-20.3Q49.45 388 58 391c25.4 8.6 56.4 19.2 74.4 22.1 36.8 5.7 67.5 2.5 88.5-6.5 20.1-8.6 30.8-21.8 33.9-39.4 2.4-14.1.7-23.2-2-29.4-2.8-6.3-7.9-12.4-16.7-18.6-19.2-13.4-48.3-22.1-84.9-32.5-1-.3-1.9-.6-2.9-.8-32.7-9.3-72-20.6-100.9-40.7-15.7-10.9-29.9-25.5-38.6-45.1-8.8-19.8-10.8-42-6.6-66.3l31.5 5.5-31.6-5.4c7.3-42.5 35.3-71.7 71.8-87.3 35.4-15.2 79.1-17.9 123.7-10.9 13 2 52.4 9.6 66.6 13.4 17.1 4.5 27.2 22.1 22.7 39.2s-22.1 27.2-39.2 22.7c-11.2-3-48.1-10.2-60.1-12l4.9-31.5-4.9 31.5c-36.9-5.8-67.5-2.5-88.6 6.5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/sack-dollar.svg�������������������0000664�0000000�0000000�00000002351�14753064456�0030170�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 96H192l-47.4-71.1c-7.1-10.7.5-24.9 13.3-24.9h196.2c12.8 0 20.4 14.2 13.3 24.9zm-128 32h128c3.8 2.5 8.1 5.3 13 8.4 56.7 36.3 179 114.5 179 279.6 0 53-43 96-96 96H96c-53 0-96-43-96-96 0-165.1 122.3-243.3 179-279.6 4.8-3.1 9.2-5.9 13-8.4m84 88c0-11-9-20-20-20s-20 9-20 20v14c-7.6 1.7-15.2 4.4-22.2 8.5-13.9 8.3-25.9 22.8-25.8 43.9.1 20.3 12 33.1 24.7 40.7 11 6.6 24.7 10.8 35.6 14l1.7.5c12.6 3.8 21.8 6.8 28 10.7 5.1 3.2 5.8 5.4 5.9 8.2.1 5-1.8 8-5.9 10.5-5 3.1-12.9 5-21.4 4.7-11.1-.4-21.5-3.9-35.1-8.5q-3.45-1.2-7.2-2.4c-10.5-3.5-21.8 2.2-25.3 12.6s2.2 21.8 12.6 25.3c1.9.6 4 1.3 6.1 2.1 8.3 2.9 17.9 6.2 28.2 8.4v14.6c0 11 9 20 20 20s20-9 20-20V410c8-1.7 16-4.5 23.2-9 14.3-8.9 25.1-24.1 24.8-45-.3-20.3-11.7-33.4-24.6-41.6-11.5-7.2-25.9-11.6-37.1-15l-.7-.2c-12.8-3.9-21.9-6.7-28.3-10.5-5.2-3.1-5.3-4.9-5.3-6.7 0-3.7 1.4-6.5 6.2-9.3 5.4-3.2 13.6-5.1 21.5-5 9.6.1 20.2 2.2 31.2 5.2 10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-6.5-1.7-13.7-3.4-21.1-4.7v-13.9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/sack-xmark.svg��������������������0000664�0000000�0000000�00000001347�14753064456�0030041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 96h128l47.4-71.1c7.1-10.7-.5-24.9-13.3-24.9H157.9c-12.8 0-20.4 14.2-13.3 24.9zm128 32H192c-3.8 2.5-8.1 5.3-13 8.4C122.3 172.7 0 250.9 0 416c0 53 43 96 96 96h320c53 0 96-43 96-96 0-165.1-122.3-243.3-179-279.6-4.8-3.1-9.2-5.9-13-8.4m-30.1 208 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/sailboat.svg����������������������0000664�0000000�0000000�00000001260�14753064456�0027570�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 16c0-7 4.5-13.2 11.2-15.3s13.9.4 17.9 6.1l224 320c3.4 4.9 3.8 11.3 1.1 16.6S502 352 496 352H272c-8.8 0-16-7.2-16-16zm-43.9 80.5c7 1.9 11.9 8.2 11.9 15.5v224c0 8.8-7.2 16-16 16H80c-5.7 0-11-3-13.8-8s-2.9-11-.1-16l128-224c3.6-6.3 11-9.4 18-7.5M5.7 404.3C2.8 394.1 10.5 384 21.1 384h533.8c10.6 0 18.3 10.1 15.4 20.3l-4 14.3C550.7 473.9 500.4 512 443 512H133c-57.4 0-107.7-38.1-123.3-93.3l-4-14.3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/satellite-dish.svg����������������0000664�0000000�0000000�00000001503�14753064456�0030705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 32c0-17.7 14.3-32 32-32 159.1 0 288 128.9 288 288 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-123.7-100.3-224-224-224-17.7 0-32-14.3-32-32M60.6 220.6l104.1 104.1 28.4-28.4c-.7-2.6-1.1-5.4-1.1-8.3 0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32c-2.9 0-5.6-.4-8.3-1.1l-28.4 28.4 104.1 104.1c14.5 14.5 11.8 38.8-7.3 46.3-23.6 9.2-49.2 14.3-76.1 14.3C93.1 512 0 418.9 0 304c0-26.9 5.1-52.5 14.4-76.1 7.5-19 31.8-21.8 46.3-7.3zM224 96c106 0 192 86 192 192 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-70.7-57.3-128-128-128-17.7 0-32-14.3-32-32s14.3-32 32-32"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/satellite.svg���������������������0000664�0000000�0000000�00000001633�14753064456�0027764�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M233 7c-9.4-9.4-24.6-9.4-33.9 0l-96 96c-9.4 9.4-9.4 24.6 0 33.9l89.4 89.4-15.5 15.5c-24.7-11.4-52.1-17.8-81-17.8-31.7 0-61.5 7.7-87.8 21.2-9 4.7-10.3 16.7-3.1 23.8l107.6 107.7-16.4 16.4c-2.6-.7-5.4-1.1-8.3-1.1-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32c0-2.9-.4-5.6-1.1-8.3l16.4-16.4 107.6 107.6c7.2 7.2 19.2 5.9 23.8-3.1 13.6-26.3 21.3-56.1 21.3-87.8 0-28.9-6.4-56.3-17.8-80.9l15.5-15.5L375 409c9.4 9.4 24.6 9.4 33.9 0l96-96c9.4-9.4 9.4-24.6 0-33.9l-89.4-89.4 55-55c12.5-12.5 12.5-32.8 0-45.3l-48-48c-12.5-12.5-32.8-12.5-45.3 0l-55 55zm159 351-72.4-72.4 62.1-62.1 72.4 72.5-62.1 62.1zM226.3 192.4 153.9 120 216 57.9l72.4 72.4z"/></svg>�����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/scale-balanced.svg����������������0000664�0000000�0000000�00000001730�14753064456�0030612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 32h128c17.7 0 32 14.3 32 32s-14.3 32-32 32H398.4c-5.2 25.8-22.9 47.1-46.4 57.3V448h160c17.7 0 32 14.3 32 32s-14.3 32-32 32H128c-17.7 0-32-14.3-32-32s14.3-32 32-32h160V153.3c-23.5-10.3-41.2-31.6-46.4-57.3H128c-17.7 0-32-14.3-32-32s14.3-32 32-32h128c14.6-19.4 37.8-32 64-32s49.4 12.6 64 32m55.6 288h144.9L512 195.8zm72.4 96c-62.9 0-115.2-34-126-78.9-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8L631.3 305c5.7 9.8 9.3 21.1 6.7 32.1C627.2 382 574.9 416 512 416M126.8 195.8 54.4 320h144.9zM.9 337.1c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8L246.2 305c5.7 9.8 9.3 21.1 6.7 32.1C242 382 189.7 416 126.8 416S11.7 382 .9 337.1"/></svg>����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/scale-unbalanced-flip.svg���������0000664�0000000�0000000�00000002025�14753064456�0032103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M117.9 62.4c-16.8-5.6-25.8-23.7-20.2-40.5s23.7-25.8 40.5-20.2l113 37.7C265 15.8 290.7 0 320 0c44.2 0 80 35.8 80 80 0 3-.2 5.9-.5 8.8l122.6 40.9c16.8 5.6 25.8 23.7 20.2 40.5s-23.7 25.8-40.5 20.2l-135.4-45.2c-4.5 3.2-9.3 5.9-14.4 8.2V480c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32s14.3-32 32-32h160V153.3c-21-9.2-37.2-27-44.2-49l-125.9-42zM200.4 288 128 163.8 55.6 288h144.9zM128 384c-62.9 0-115.2-34-126-78.9-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8L247.3 273c5.7 9.8 9.3 21.1 6.7 32.1C243.2 350 190.9 384 128 384m382.8-92.2L438.4 416h144.9zm126 141.3C626 478 573.7 512 510.8 512s-115.2-34-126-78.9c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8L630.1 401c5.7 9.8 9.3 21.1 6.7 32.1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/scale-unbalanced.svg��������������0000664�0000000�0000000�00000002050�14753064456�0031151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M522.1 62.4c16.8-5.6 25.8-23.7 20.2-40.5S518.6-3.9 501.9 1.6l-113 37.7C375 15.8 349.3 0 320 0c-44.2 0-80 35.8-80 80 0 3 .2 5.9.5 8.8l-122.6 40.8c-16.8 5.6-25.8 23.7-20.2 40.5s23.7 25.8 40.5 20.2l135.5-45.2c4.5 3.2 9.3 5.9 14.4 8.2L288 480c0 17.7 14.3 32 32 32h192c17.7 0 32-14.3 32-32s-14.3-32-32-32H352V153.3c21-9.2 37.2-27 44.2-49l125.9-42zM439.6 288 512 163.8 584.4 288H439.5zm72.4 96c62.9 0 115.2-34 126-78.9 2.6-11-1-22.3-6.7-32.1l-95.2-163.2c-5-8.6-14.2-13.8-24.1-13.8s-19.1 5.3-24.1 13.8l-95.2 163.3c-5.7 9.8-9.3 21.1-6.7 32.1C396.8 350 449.1 384 512 384m-382.8-92.2L201.6 416H56.7l72.4-124.2zM3.2 433.1C14 478 66.3 512 129.2 512s115.2-34 126-78.9c2.6-11-1-22.3-6.7-32.1l-95.3-163.2c-5-8.6-14.2-13.8-24.1-13.8s-19.1 5.3-24.1 13.8L9.9 401.1c-5.7 9.8-9.3 21.1-6.7 32.1z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/school-circle-check.svg�����������0000664�0000000�0000000�00000002155�14753064456�0031577�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M337.8 5.4c-10.8-7.2-24.8-7.2-35.6 0L166.3 96H48c-26.5 0-48 21.5-48 48v320c0 26.5 21.5 48 48 48h272-64v-96c0-35.3 28.7-64 64-64h.8c3.4-37.7 18.7-72.1 42.2-99.1-12.8 7.1-27.4 11.1-43 11.1-48.6 0-88-39.4-88-88s39.4-88 88-88 88 39.4 88 88c0 18.3-5.6 35.3-15.1 49.4 29-21 64.6-33.4 103.1-33.4 59.5 0 112.1 29.6 144 74.8V144c0-26.5-21.5-48-48-48H473.7zM96 192h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16v-64c0-8.8 7.2-16 16-16m0 128h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16v-64c0-8.8 7.2-16 16-16m224-192c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16h-16v-16c0-8.8-7.2-16-16-16m320 240a144 144 0 1 0-288 0 144 144 0 1 0 288 0m-99.3-43.3c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l28.7 28.7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/school-circle-exclamation.svg�����0000664�0000000�0000000�00000002132�14753064456�0033021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M337.8 5.4c-10.8-7.2-24.8-7.2-35.6 0L166.3 96H48c-26.5 0-48 21.5-48 48v320c0 26.5 21.5 48 48 48h272-64v-96c0-35.3 28.7-64 64-64h.8c3.4-37.7 18.7-72.1 42.2-99.1-12.8 7.1-27.4 11.1-43 11.1-48.6 0-88-39.4-88-88s39.4-88 88-88 88 39.4 88 88c0 18.3-5.6 35.3-15.1 49.4 29-21 64.6-33.4 103.1-33.4 59.5 0 112.1 29.6 144 74.8V144c0-26.5-21.5-48-48-48H473.7zM96 192h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16v-64c0-8.8 7.2-16 16-16m0 128h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16v-64c0-8.8 7.2-16 16-16m224-192c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16h-16v-16c0-8.8-7.2-16-16-16m176 384a144 144 0 1 0 0-288 144 144 0 1 0 0 288m0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48m0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16v-80c0-8.8 7.2-16 16-16"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/school-circle-xmark.svg�����������0000664�0000000�0000000�00000002324�14753064456�0031642�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M337.8 5.4c-10.8-7.2-24.8-7.2-35.6 0L166.3 96H48c-26.5 0-48 21.5-48 48v320c0 26.5 21.5 48 48 48h272-64v-96c0-35.3 28.7-64 64-64h.8c3.4-37.7 18.7-72.1 42.2-99.1-12.8 7.1-27.4 11.1-43 11.1-48.6 0-88-39.4-88-88s39.4-88 88-88 88 39.4 88 88c0 18.3-5.6 35.3-15.1 49.4 29-21 64.6-33.4 103.1-33.4 59.5 0 112.1 29.6 144 74.8V144c0-26.5-21.5-48-48-48H473.7zM96 192h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16v-64c0-8.8 7.2-16 16-16m0 128h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16v-64c0-8.8 7.2-16 16-16m224-192c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16h-16v-16c0-8.8-7.2-16-16-16m176 384a144 144 0 1 0 0-288 144 144 0 1 0 0 288m22.6-144 36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l36.7-36.7-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l36.7 36.7 36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/school-flag.svg�������������������0000664�0000000�0000000�00000001705�14753064456�0030174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 0h112c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16h-79.3l89.6 64H512c35.3 0 64 28.7 64 64v224c0 35.3-28.7 64-64 64H336V400c0-26.5-21.5-48-48-48s-48 21.5-48 48v112H64c-35.3 0-64-28.7-64-64V224c0-35.3 28.7-64 64-64h101.7L256 95.5V32c0-17.7 14.3-32 32-32m48 240a48 48 0 1 0-96 0 48 48 0 1 0 96 0M80 224c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16zm368 16v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16M80 352c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16zm384 0c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16z"/></svg>�����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/school-lock.svg�������������������0000664�0000000�0000000�00000002057�14753064456�0030214�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M302.2 5.4c10.7-7.2 24.8-7.2 35.5 0l136 90.6H592c26.5 0 48 21.5 48 48v128c0-61.9-50.1-112-112-112s-112 50.1-112 112v24.6c-19.1 11.1-32 31.7-32 55.4h-64c-35.3 0-64 28.7-64 64v96h64H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h118.3zM80 208v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16H96c-8.8 0-16 7.2-16 16m0 128v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64c0-8.8-7.2-16-16-16H96c-8.8 0-16 7.2-16 16m240-72a88 88 0 1 0 0-176 88 88 0 1 0 0 176m16-120v16h16c8.8 0 16 7.2 16 16s-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16s16 7.2 16 16m192 96c-17.7 0-32 14.3-32 32v48h64v-48c0-17.7-14.3-32-32-32m-80 32c0-44.2 35.8-80 80-80s80 35.8 80 80v48c17.7 0 32 14.3 32 32v128c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/school.svg������������������������0000664�0000000�0000000�00000002003�14753064456�0027255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M337.8 5.4c-10.8-7.2-24.8-7.2-35.6 0L166.3 96H48c-26.5 0-48 21.5-48 48v320c0 26.5 21.5 48 48 48h208v-96c0-35.3 28.7-64 64-64s64 28.7 64 64v96h208c26.5 0 48-21.5 48-48V144c0-26.5-21.5-48-48-48H473.7zM96 192h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16v-64c0-8.8 7.2-16 16-16m400 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zM96 320h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16v-64c0-8.8 7.2-16 16-16m400 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zM232 176a88 88 0 1 1 176 0 88 88 0 1 1-176 0m88-48c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16h-16v-16c0-8.8-7.2-16-16-16"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/scissors.svg����������������������0000664�0000000�0000000�00000001410�14753064456�0027637�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m256 192-39.5-39.5c4.9-12.6 7.5-26.2 7.5-40.5C224 50.1 173.9 0 112 0S0 50.1 0 112s50.1 112 112 112c14.3 0 27.9-2.7 40.5-7.5L192 256l-39.5 39.5c-12.6-4.9-26.2-7.5-40.5-7.5C50.1 288 0 338.1 0 400s50.1 112 112 112 112-50.1 112-112c0-14.3-2.7-27.9-7.5-40.5L499.2 76.8c7.1-7.1 7.1-18.5 0-25.6-28.3-28.3-74.1-28.3-102.4 0zm22.6 150.6 118.2 118.2c28.3 28.3 74.1 28.3 102.4 0 7.1-7.1 7.1-18.5 0-25.6L342.6 278.6zM64 112a48 48 0 1 1 96 0 48 48 0 1 1-96 0m48 240a48 48 0 1 1 0 96 48 48 0 1 1 0-96"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/screwdriver-wrench.svg������������0000664�0000000�0000000�00000002020�14753064456�0031610�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M78.6 5c-9.5-7.4-23-6.5-31.6 2L7 47c-8.5 8.5-9.4 22-2.1 31.6l80 104c4.5 5.9 11.6 9.4 19 9.4H158l109 109c-14.7 29-10 65.4 14.3 89.6l112 112c12.5 12.5 32.8 12.5 45.3 0l64-64c12.5-12.5 12.5-32.8 0-45.3l-112-112c-24.2-24.2-60.6-29-89.6-14.3L192 158v-54.1c0-7.5-3.5-14.5-9.4-19zM19.9 396.1C7.2 408.8 0 426.1 0 444.1 0 481.6 30.4 512 67.9 512c18 0 35.3-7.2 48-19.9l117.8-117.8c-7.8-20.9-9-43.6-3.6-65.1l-61.7-61.7zM512 144c0-10.5-1.1-20.7-3.2-30.5-2.4-11.2-16.1-14.1-24.2-6l-63.9 63.9c-3 3-7.1 4.7-11.3 4.7L352 176c-8.8 0-16-7.2-16-16v-57.4c0-4.2 1.7-8.3 4.7-11.3l63.9-63.9c8.1-8.1 5.2-21.8-6-24.2C388.7 1.1 378.5 0 368 0c-79.5 0-144 64.5-144 144v.8l85.3 85.3c36-9.1 75.8.5 104 28.7l15.7 15.7c49-23 83-72.8 83-130.5M56 432a24 24 0 1 1 48 0 24 24 0 1 1-48 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/screwdriver.svg�������������������0000664�0000000�0000000�00000001155�14753064456�0030334�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M465 7c-8.5-8.5-22-9.4-31.6-2.1l-104 80c-5.9 4.5-9.4 11.6-9.4 19V158l-85.6 85.6c6.7 4.2 13 9.3 18.8 15.1s10.9 12.2 15.1 18.8l85.6-85.5H408c7.5 0 14.5-3.5 19-9.4l80-104c7.4-9.6 6.5-23.1-2.1-31.6zM121.4 281.4l-112 112c-12.5 12.5-12.5 32.8 0 45.3l64 64c12.5 12.5 32.8 12.5 45.3 0l112-112c30.2-30.2 30.2-79.1 0-109.3s-79.1-30.2-109.3 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/scroll-torah.svg������������������0000664�0000000�0000000�00000002072�14753064456�0030405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 480V32C96 14.3 74.5 0 48 0S0 14.3 0 32v448c0 17.7 21.5 32 48 32s48-14.3 48-32M512 32H128v448h384zm80-32c-26.5 0-48 14.3-48 32v448c0 17.7 21.5 32 48 32s48-14.3 48-32V32c0-17.7-21.5-32-48-32M196 313.7c0-3.2.9-6.4 2.5-9.2l28.2-48.5-28.3-48.5c-1.6-2.8-2.5-6-2.5-9.2 0-10.1 8.2-18.3 18.3-18.3h56.7l31.4-53.9c3.6-6.3 10.3-10.1 17.6-10.1s13.9 3.8 17.6 10.1L369 180h56.7c10.1 0 18.3 8.2 18.3 18.3 0 3.2-.9 6.4-2.5 9.2L413.3 256l28.3 48.5c1.6 2.8 2.5 6 2.5 9.2 0 10.1-8.2 18.3-18.3 18.3H369l-31.4 53.9C334 392.2 327.3 396 320 396s-13.9-3.8-17.6-10.1L271 332h-56.7c-10.1 0-18.3-8.2-18.3-18.3m124 54.7 21.2-36.4h-42.4zM254.5 256l30.3 52h70.4l30.3-52-30.3-52h-70.4zm144.9 23.8L383 308h32.8zm16.4-75.8H383l16.4 28.2zM320 143.6 298.8 180h42.4zM224.2 204l16.4 28.2L257 204zM257 308l-16.4-28.2-16.4 28.2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/scroll.svg������������������������0000664�0000000�0000000�00000001120�14753064456�0027263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 80v48c0 17.7 14.3 32 32 32h64V80c0-26.5-21.5-48-48-48S0 53.5 0 80m112-48c10 13.4 16 30 16 48v304c0 35.3 28.7 64 64 64s64-28.7 64-64v-5.3c0-32.4 26.3-58.7 58.7-58.7H480V128c0-53-43-96-96-96zm352 448c61.9 0 112-50.1 112-112 0-8.8-7.2-16-16-16H314.7c-14.7 0-26.7 11.9-26.7 26.7v5.3c0 53-43 96-96 96h272"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/sd-card.svg�����������������������0000664�0000000�0000000�00000001250�14753064456�0027306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 0H141.3C124.3 0 108 6.7 96 18.7L18.7 96C6.7 108 0 124.3 0 141.3V448c0 35.3 28.7 64 64 64h256c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64M160 88v48c0 13.3-10.7 24-24 24s-24-10.7-24-24V88c0-13.3 10.7-24 24-24s24 10.7 24 24m80 0v48c0 13.3-10.7 24-24 24s-24-10.7-24-24V88c0-13.3 10.7-24 24-24s24 10.7 24 24m80 0v48c0 13.3-10.7 24-24 24s-24-10.7-24-24V88c0-13.3 10.7-24 24-24s24 10.7 24 24"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/section.svg�����������������������0000664�0000000�0000000�00000003035�14753064456�0027440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64.9 96c2.2-11.6 8.8-19.8 21.1-25.4 13.8-6.2 34.8-8.9 61.2-4.5 8.8 1.4 36.1 7.1 44.1 9.3 17 4.8 34.7-5.1 39.5-22.2s-5.1-34.7-22.2-39.5c-11.1-3.1-41-9.2-50.9-10.8-34.7-5.6-69.4-3.5-98 9.4C29.9 25.8 7.5 50.9 1.6 86.5c-.1.5-.2 1.1-.2 1.6-2.2 19.7.3 37.9 8.1 54.1 7.7 16.1 19.4 28 32 36.9.6.5 1.3.9 2 1.4-21.2 13.7-37 34.6-41.8 62.5-.1.6-.2 1.1-.2 1.7-2.3 19.3.4 37.1 8.4 53 7.9 15.6 19.8 27 32.3 35.5 22.4 15.2 51.9 24 75.4 31l3.7 1.1c27.2 8.2 46.9 14.6 59.4 23.8 5.5 4 8.2 7.6 9.5 10.9 1.3 3.2 2.6 8.6.9 18.1-1.7 10.1-7.7 18-20.7 23.5-14 6-35.4 8.5-62 4.4-12.8-2.1-35.1-9.7-54.1-16.2-4.3-1.5-8.5-2.9-12.3-4.2-16.7-5.6-34.8 3.5-40.4 20.2s3.5 34.9 20.3 40.5c2.6.8 5.7 1.9 9.2 3.1 18.6 6.3 48.5 16.6 67.3 19.6h.2c34.5 5.4 68.8 3.4 97.2-8.7 29.4-12.6 52.5-36.5 58.5-71.5 3.3-19.3 1.9-37.4-5-53.9-6.3-15-16.4-26.4-27.6-35.2 16.5-13.9 28.5-33.2 32.6-58.2 3.2-19.8 1.9-38.3-4.8-55.1s-17.8-29.4-30.2-39c-22.8-17.6-53.6-27.4-77.7-35l-1.4-.5c-27.4-8.7-47.8-15.3-61.5-25-6.1-4.4-9.5-8.5-11.4-12.4-1.8-3.7-3.2-9.3-2.3-18.5zm76.7 208.5-.6-.2-1.4-.4c-27.4-8.2-47.9-14.5-61.7-23.8-6.2-4.2-9.3-7.9-11-11.3-1.5-3-2.9-7.7-2.1-15.7 1.9-9.7 7.9-17.3 20.5-22.7 14-6 35.4-8.5 62.1-4.3l16.4 2.6c6.3 2.9 11.7 6 16.2 9.5 5.5 4.2 8.4 8.2 10 12.2s2.8 10.4 1.1 20.9c-2.4 14.7-12.8 26.4-37.1 31l-12.4 2.3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/seedling.svg����������������������0000664�0000000�0000000�00000001016�14753064456�0027563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M512 32c0 113.6-84.6 207.5-194.2 222-7.1-53.4-30.6-101.6-65.3-139.3C290.8 46.3 364 0 448 0h32c17.7 0 32 14.3 32 32M0 96c0-17.7 14.3-32 32-32h32c123.7 0 224 100.3 224 224v192c0 17.7-14.3 32-32 32s-32-14.3-32-32V320C100.3 320 0 219.7 0 96"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/server.svg������������������������0000664�0000000�0000000�00000001220�14753064456�0027274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v64c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm280 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48m48 24a24 24 0 1 1 48 0 24 24 0 1 1-48 0M64 288c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64v-64c0-35.3-28.7-64-64-64zm280 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48m56 24a24 24 0 1 1 48 0 24 24 0 1 1-48 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/shapes.svg������������������������0000664�0000000�0000000�00000001134�14753064456�0027255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M315.4 15.5C309.7 5.9 299.2 0 288 0s-21.7 5.9-27.4 15.5l-96 160c-5.9 9.9-6.1 22.2-.4 32.2s16.3 16.2 27.8 16.2h192c11.5 0 22.2-6.2 27.8-16.2s5.5-22.3-.4-32.2zM288 312v144c0 22.1 17.9 40 40 40h144c22.1 0 40-17.9 40-40V312c0-22.1-17.9-40-40-40H328c-22.1 0-40 17.9-40 40M128 512a128 128 0 1 0 0-256 128 128 0 1 0 0 256"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/share-from-square.svg�������������0000664�0000000�0000000�00000001576�14753064456�0031345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M352 224h-46.5c-45 0-81.5 36.5-81.5 81.5 0 22.3 10.3 34.3 19.2 40.5 6.8 4.7 12.8 12 12.8 20.3 0 9.8-8 17.8-17.8 17.8h-2.5c-2.4 0-4.8-.4-7.1-1.4C210.8 374.8 128 333.4 128 240c0-79.5 64.5-144 144-144h80V34.7C352 15.5 367.5 0 386.7 0c8.6 0 16.8 3.2 23.2 8.9l138.2 124.4c7.6 6.8 11.9 16.5 11.9 26.7s-4.3 19.9-11.9 26.7l-139 125.1c-5.9 5.3-13.5 8.2-21.4 8.2H384c-17.7 0-32-14.3-32-32zM80 96c-8.8 0-16 7.2-16 16v320c0 8.8 7.2 16 16 16h320c8.8 0 16-7.2 16-16v-48c0-17.7 14.3-32 32-32s32 14.3 32 32v48c0 44.2-35.8 80-80 80H80c-44.2 0-80-35.8-80-80V112c0-44.2 35.8-80 80-80h48c17.7 0 32 14.3 32 32s-14.3 32-32 32z"/></svg>����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/share-nodes.svg�������������������0000664�0000000�0000000�00000001171�14753064456�0030203�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M352 224c53 0 96-43 96-96s-43-96-96-96-96 43-96 96c0 4 .2 8 .7 11.9l-94.1 47C145.4 170.2 121.9 160 96 160c-53 0-96 43-96 96s43 96 96 96c25.9 0 49.4-10.2 66.6-26.9l94.1 47c-.5 3.9-.7 7.8-.7 11.9 0 53 43 96 96 96s96-43 96-96-43-96-96-96c-25.9 0-49.4 10.2-66.6 26.9l-94.1-47c.5-3.9.7-7.8.7-11.9s-.2-8-.7-11.9l94.1-47c17.2 16.7 40.7 26.9 66.6 26.9"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/share.svg�������������������������0000664�0000000�0000000�00000001201�14753064456�0027067�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M307 34.8c-11.5 5.1-19 16.6-19 29.2v64H176C78.8 128 0 206.8 0 304c0 113.3 81.5 163.9 100.2 174.1 2.5 1.4 5.3 1.9 8.1 1.9 10.9 0 19.7-8.9 19.7-19.7 0-7.5-4.3-14.4-9.8-19.5-9.4-8.9-22.2-26.4-22.2-56.8 0-53 43-96 96-96h96v64c0 12.6 7.4 24.1 19 29.2s25 3 34.4-5.4l160-144c6.7-6.1 10.6-14.7 10.6-23.8s-3.8-17.7-10.6-23.8l-160-144a31.76 31.76 0 0 0-34.4-5.4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/sheet-plastic.svg�����������������0000664�0000000�0000000�00000001160�14753064456�0030536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 448c0 35.3 28.7 64 64 64h160V384c0-17.7 14.3-32 32-32h128V64c0-35.3-28.7-64-64-64H64C28.7 0 0 28.7 0 64zM171.3 75.3l-96 96c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l96-96c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6m96 32-160 160c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l160-160c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6M384 384H256v128z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/shekel-sign.svg�������������������0000664�0000000�0000000�00000001151�14753064456�0030202�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 32C14.3 32 0 46.3 0 64v384c0 17.7 14.3 32 32 32s32-14.3 32-32V96h128c35.3 0 64 28.7 64 64v160c0 17.7 14.3 32 32 32s32-14.3 32-32V160c0-70.7-57.3-128-128-128zm288 448c70.7 0 128-57.3 128-128V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v288c0 35.3-28.7 64-64 64H192V192c0-17.7-14.3-32-32-32s-32 14.3-32 32v256c0 17.7 14.3 32 32 32z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/shield-cat.svg��������������������0000664�0000000�0000000�00000001412�14753064456�0030006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M269.4 2.9C265.2 1 260.7 0 256 0s-9.2 1-13.4 2.9L54.3 82.8c-22 9.3-38.4 31-38.3 57.2.5 99.2 41.3 280.7 213.6 363.2 16.7 8 36.1 8 52.8 0C454.7 420.7 495.5 239.2 496 140c.1-26.2-16.3-47.9-38.3-57.2zM160 154.4c0-5.8 4.7-10.4 10.4-10.4h.2c3.4 0 6.5 1.6 8.5 4.3l40 53.3c3 4 7.8 6.4 12.8 6.4h48c5 0 9.8-2.4 12.8-6.4l40-53.3c2-2.7 5.2-4.3 8.5-4.3h.2c5.8 0 10.4 4.7 10.4 10.4L352 272c0 53-43 96-96 96s-96-43-96-96zM216 288a16 16 0 1 0 0-32 16 16 0 1 0 0 32m96-16a16 16 0 1 0-32 0 16 16 0 1 0 32 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/shield-dog.svg��������������������0000664�0000000�0000000�00000001534�14753064456�0030015�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M269.4 2.9C265.2 1 260.7 0 256 0s-9.2 1-13.4 2.9L54.3 82.8c-22 9.3-38.4 31-38.3 57.2.5 99.2 41.3 280.7 213.6 363.2 16.7 8 36.1 8 52.8 0C454.7 420.7 495.5 239.2 496 140c.1-26.2-16.3-47.9-38.3-57.2zM160.9 286.2c4.8 1.2 9.9 1.8 15.1 1.8 35.3 0 64-28.7 64-64v-64h44.2c12.1 0 23.2 6.8 28.6 17.7L320 192h64c8.8 0 16 7.2 16 16v32c0 44.2-35.8 80-80 80h-48v50.7c0 7.3-5.9 13.3-13.3 13.3-1.8 0-3.6-.4-5.2-1.1l-98.7-42.3c-6.6-2.8-10.8-9.3-10.8-16.4 0-2.8.6-5.5 1.9-8zM160 160h48v64c0 17.7-14.3 32-32 32s-32-14.3-32-32v-48c0-8.8 7.2-16 16-16m128 48a16 16 0 1 0-32 0 16 16 0 1 0 32 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/shield-halved.svg�����������������0000664�0000000�0000000�00000001033�14753064456�0030501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 0c4.6 0 9.2 1 13.4 2.9l188.3 79.9c22 9.3 38.4 31 38.3 57.2-.5 99.2-41.3 280.7-213.6 363.2-16.7 8-36.1 8-52.8 0C57.3 420.7 16.5 239.2 16 140c-.1-26.2 16.3-47.9 38.3-57.2L242.7 2.9C246.8 1 251.4 0 256 0m0 66.8v378.1C394 378 431.1 230.1 432 141.4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/shield-heart.svg������������������0000664�0000000�0000000�00000001327�14753064456�0030347�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M269.4 2.9C265.2 1 260.7 0 256 0s-9.2 1-13.4 2.9L54.3 82.8c-22 9.3-38.4 31-38.3 57.2.5 99.2 41.3 280.7 213.6 363.2 16.7 8 36.1 8 52.8 0C454.7 420.7 495.5 239.2 496 140c.1-26.2-16.3-47.9-38.3-57.2zM144 221.3c0-33.8 27.4-61.3 61.3-61.3 16.2 0 31.8 6.5 43.3 17.9l7.4 7.4 7.4-7.4c11.5-11.5 27.1-17.9 43.3-17.9 33.8 0 61.3 27.4 61.3 61.3 0 16.2-6.5 31.8-17.9 43.3l-82.7 82.7c-6.2 6.2-16.4 6.2-22.6 0l-82.7-82.7c-11.5-11.5-17.9-27.1-17.9-43.3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/shield-virus.svg������������������0000664�0000000�0000000�00000002100�14753064456�0030402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M269.4 2.9C265.2 1 260.7 0 256 0s-9.2 1-13.4 2.9L54.3 82.8c-22 9.3-38.4 31-38.3 57.2.5 99.2 41.3 280.7 213.6 363.2 16.7 8 36.1 8 52.8 0C454.7 420.7 495.5 239.2 496 140c.1-26.2-16.3-47.9-38.3-57.2zM256 112c8.8 0 16 7.2 16 16 0 33 39.9 49.5 63.2 26.2 6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6C334.5 200.1 351 240 384 240c8.8 0 16 7.2 16 16s-7.2 16-16 16c-33 0-49.5 39.9-26.2 63.2 6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0C311.9 334.5 272 351 272 384c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-33-39.9-49.5-63.2-26.2-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6C177.5 311.9 161 272 128 272c-8.8 0-16-7.2-16-16s7.2-16 16-16c33 0 49.5-39.9 26.2-63.2-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0C200.1 177.5 240 161 240 128c0-8.8 7.2-16 16-16m-24 144a24 24 0 1 0 0-48 24 24 0 1 0 0 48m72 32a16 16 0 1 0-32 0 16 16 0 1 0 32 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/shield.svg������������������������0000664�0000000�0000000�00000000757�14753064456�0027254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 0c4.6 0 9.2 1 13.4 2.9l188.3 79.9c22 9.3 38.4 31 38.3 57.2-.5 99.2-41.3 280.7-213.6 363.2-16.7 8-36.1 8-52.8 0C57.3 420.7 16.5 239.2 16 140c-.1-26.2 16.3-47.9 38.3-57.2L242.7 2.9C246.8 1 251.4 0 256 0"/></svg>�����������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/ship.svg��������������������������0000664�0000000�0000000�00000002351�14753064456�0026737�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 32c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v32h48c26.5 0 48 21.5 48 48v128l44.4 14.8c23.1 7.7 29.5 37.5 11.5 53.9l-101 92.6c-16.2 9.4-34.7 15.1-50.9 15.1-19.6 0-40.8-7.7-59.2-20.3-22.1-15.5-51.6-15.5-73.7 0-17.1 11.8-38 20.3-59.2 20.3-16.2 0-34.7-5.7-50.9-15.1L40 308.7c-18-16.5-11.6-46.2 11.5-53.9L96 240V112c0-26.5 21.5-48 48-48h48zm-32 186.7 107.8-35.9c13.1-4.4 27.3-4.4 40.5 0L416 218.7V128H160zm146.5 203.2c22.5 15.5 50 26.1 77.5 26.1 26.9 0 55.4-10.8 77.4-26.1 11.9-8.5 28.1-7.8 39.2 1.7 14.4 11.9 32.5 21 50.6 25.2 17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25-29 15.6-61.5 25.9-94.5 25.9-31.9 0-60.6-9.9-80.4-18.9-5.8-2.7-11.1-5.3-15.6-7.7-4.5 2.4-9.7 5.1-15.6 7.7-19.8 9-48.5 18.9-80.4 18.9-33 0-65.5-10.3-94.5-25.8-13.4 8.4-33.7 19.3-58.2 25-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2 11.1-9.4 27.3-10.1 39.2-1.7 22.1 15.2 50.5 26 77.4 26 27.5 0 55-10.6 77.5-26.1 11.1-7.9 25.9-7.9 37 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/shirt.svg�������������������������0000664�0000000�0000000�00000001315�14753064456�0027124�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M211.8 0c7.8 0 14.3 5.7 16.7 13.2C240.8 51.9 277.1 80 320 80s79.2-28.1 91.5-66.8C413.9 5.7 420.4 0 428.2 0h12.6c22.5 0 44.2 7.9 61.5 22.3l126.2 105.1c6.6 5.5 10.7 13.5 11.4 22.1s-2.1 17.1-7.8 23.6l-56 64c-11.4 13.1-31.2 14.6-44.6 3.5L480 197.7V448c0 35.3-28.7 64-64 64H224c-35.3 0-64-28.7-64-64V197.7l-51.5 42.9c-13.3 11.1-33.1 9.6-44.6-3.5l-56-64c-5.7-6.5-8.5-15-7.8-23.6s4.8-16.6 11.4-22.1L137.7 22.3C155 7.9 176.7 0 199.2 0z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/shoe-prints.svg�������������������0000664�0000000�0000000�00000001132�14753064456�0030243�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M416 0c-63.7 0-160 32-160 32v128c48 0 76 16 104 32s56 32 104 32c56.4 0 176-16 176-96S512 0 416 0M128 96c0 35.3 28.7 64 64 64h32V32h-32c-35.3 0-64 28.7-64 64m160 416c96 0 224-48 224-128s-119.6-96-176-96c-48 0-76 16-104 32s-56 32-104 32v128s96.3 32 160 32M0 416c0 35.3 28.7 64 64 64h32V352H64c-35.3 0-64 28.7-64 64"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/shop-lock.svg���������������������0000664�0000000�0000000�00000001457�14753064456�0027701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M36.8 192h412.8c20.2-19.8 47.9-32 78.4-32s58.1 12.2 78.3 31.9c18.9-1.6 33.7-17.4 33.7-36.7 0-7.3-2.2-14.4-6.2-20.4L558.2 21.4C549.3 8 534.4 0 518.3 0H121.7c-16 0-31 8-39.9 21.4L6.2 134.7c-4 6.1-6.2 13.2-6.2 20.4C0 175.5 16.5 192 36.8 192M384 224h-64v160H128V224H64v240c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V224m144 16c17.7 0 32 14.3 32 32v48h-64v-48c0-17.7 14.3-32 32-32m-80 32v48c-17.7 0-32 14.3-32 32v128c0 17.7 14.3 32 32 32h160c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32v-48c0-44.2-35.8-80-80-80s-80 35.8-80 80"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/shop-slash.svg��������������������0000664�0000000�0000000�00000001353�14753064456�0030056�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2s-6.3 25.5 4.1 33.7l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-54.8-43V224h-64v152L384 275.7V224h-64v1.5L277.2 192h325.9c20.3 0 36.8-16.5 36.8-36.8 0-7.3-2.2-14.4-6.2-20.4L558.2 21.4C549.3 8 534.4 0 518.3 0H121.7c-16 0-31 8-39.9 21.4l-7.7 11.4zm-2 186.9h85L21 112.5 6.2 134.7c-4 6.1-6.2 13.2-6.2 20.4C0 175.5 16.5 192 36.8 192M320 384H128V224H64v240c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48v-65.5l-64-50.4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/shop.svg��������������������������0000664�0000000�0000000�00000001137�14753064456�0026746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M36.8 192h566.3c20.3 0 36.8-16.5 36.8-36.8 0-7.3-2.2-14.4-6.2-20.4L558.2 21.4C549.3 8 534.4 0 518.3 0H121.7c-16 0-31 8-39.9 21.4L6.2 134.7c-4 6.1-6.2 13.2-6.2 20.4C0 175.5 16.5 192 36.8 192M64 224v240c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V224h-64v160H128V224zm448 0v256c0 17.7 14.3 32 32 32s32-14.3 32-32V224z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/shower.svg������������������������0000664�0000000�0000000�00000001614�14753064456�0027304�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 131.9C64 112.1 80.1 96 99.9 96c9.5 0 18.6 3.8 25.4 10.5l16.2 16.2c-21 38.9-17.4 87.5 10.9 123L151 247c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0L345 121c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-1.3 1.3c-35.5-28.3-84.2-31.9-123-10.9l-16.3-16.2C151.8 42.5 126.4 32 99.9 32 44.7 32 0 76.7 0 131.9V448c0 17.7 14.3 32 32 32s32-14.3 32-32zM256 352a32 32 0 1 0 0-64 32 32 0 1 0 0 64m64 64a32 32 0 1 0-64 0 32 32 0 1 0 64 0m0-128a32 32 0 1 0 0-64 32 32 0 1 0 0 64m64 64a32 32 0 1 0-64 0 32 32 0 1 0 64 0m0-128a32 32 0 1 0 0-64 32 32 0 1 0 0 64m64 64a32 32 0 1 0-64 0 32 32 0 1 0 64 0m32-32a32 32 0 1 0 0-64 32 32 0 1 0 0 64"/></svg>��������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/shrimp.svg������������������������0000664�0000000�0000000�00000001573�14753064456�0027303�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96s28.7 64 64 64h1c3.7 88.9 77 160 167 160h56V128H64c-17.7 0-32-14.3-32-32s14.3-32 32-32h400c8.8 0 16-7.2 16-16s-7.2-16-16-16zm160 424c0 13.3 10.7 24 24 24h72v-72.2l-64.1-22.4c-12.5-4.4-26.2 2.2-30.6 14.7s2.2 26.2 14.7 30.6l4.5 1.6C233 433.9 224 443.9 224 456m128 23.3c36.4-3.3 69.5-17.6 96.1-39.6l-86.5-34.6c-3 1.8-6.2 3.2-9.6 4.3zM472.6 415c24.6-30.3 39.4-68.9 39.4-111 0-12.3-1.3-24.3-3.7-35.9l-125.5 87c.8 3.4 1.2 7 1.2 10.6 0 4.6-.7 9-1.9 13.1zM336 128h-16v192h18.3c9.9 0 19.1 3.2 26.6 8.5l133.5-92.4C471.8 172.6 409.1 128 336 128m-168 64a24 24 0 1 1 48 0 24 24 0 1 1-48 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/shuffle.svg�����������������������0000664�0000000�0000000�00000001775�14753064456�0027441�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M403.8 34.4c12-5 25.7-2.2 34.9 6.9l64 64c6 6 9.4 14.1 9.4 22.6s-3.4 16.6-9.4 22.6l-64 64c-9.2 9.2-22.9 11.9-34.9 6.9S384 204.8 384 191.8v-32h-32c-10.1 0-19.6 4.7-25.6 12.8L284 229.3 244 176l31.2-41.6C293.3 110.2 321.8 96 352 96h32V64c0-12.9 7.8-24.6 19.8-29.6M164 282.7l40 53.3-31.2 41.6C154.7 401.8 126.2 416 96 416H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h64c10.1 0 19.6-4.7 25.6-12.8zm274.6 188c-9.2 9.2-22.9 11.9-34.9 6.9S383.9 461 383.9 448v-32h-32c-30.2 0-58.7-14.2-76.8-38.4L121.6 172.8c-6-8.1-15.5-12.8-25.6-12.8H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h64c30.2 0 58.7 14.2 76.8 38.4l153.6 204.8c6 8.1 15.5 12.8 25.6 12.8h32v-32c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l64 64c6 6 9.4 14.1 9.4 22.6s-3.4 16.6-9.4 22.6l-64 64z"/></svg>���mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/shuttle-space.svg�����������������0000664�0000000�0000000�00000001376�14753064456�0030563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M130 480c40.6 0 80.4-11 115.2-31.9L352 384H128v96zm222-352L245.2 63.9C210.4 43 170.6 32 130 32h-2v96zm-256 0V32H80c-26.5 0-48 21.5-48 48v48h8c-22.1 0-40 17.9-40 40v176c0 22.1 17.9 40 40 40h-8v48c0 26.5 21.5 48 48 48h16v-96h8c26.2 0 49.4-12.6 64-32h288c69.3 0 135-22.7 179.2-81.6 6.4-8.5 6.4-20.3 0-28.8C591 182.7 525.3 160 456 160H168c-14.6-19.4-37.8-32-64-32zm416 115.6v24.9c0 19.6-15.9 35.6-35.6 35.6-2.5 0-4.4-2-4.4-4.4v-87.1c0-2.5 2-4.4 4.4-4.4 19.6 0 35.6 15.9 35.6 35.6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/sign-hanging.svg������������������0000664�0000000�0000000�00000001104�14753064456�0030340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 0c17.7 0 32 14.3 32 32v32h352c17.7 0 32 14.3 32 32s-14.3 32-32 32H128v352c0 17.7-14.3 32-32 32s-32-14.3-32-32V128H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h32V32C64 14.3 78.3 0 96 0m96 160h256c17.7 0 32 14.3 32 32v160c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V192c0-17.7 14.3-32 32-32"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/signal.svg������������������������0000664�0000000�0000000�00000001344�14753064456�0027252�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M576 0c17.7 0 32 14.3 32 32v448c0 17.7-14.3 32-32 32s-32-14.3-32-32V32c0-17.7 14.3-32 32-32M448 96c17.7 0 32 14.3 32 32v352c0 17.7-14.3 32-32 32s-32-14.3-32-32V128c0-17.7 14.3-32 32-32m-96 128v256c0 17.7-14.3 32-32 32s-32-14.3-32-32V224c0-17.7 14.3-32 32-32s32 14.3 32 32m-160 64c17.7 0 32 14.3 32 32v160c0 17.7-14.3 32-32 32s-32-14.3-32-32V320c0-17.7 14.3-32 32-32M96 416v64c0 17.7-14.3 32-32 32s-32-14.3-32-32v-64c0-17.7 14.3-32 32-32s32 14.3 32 32"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/signature.svg���������������������0000664�0000000�0000000�00000002046�14753064456�0027776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 128c0-17.7 14.3-32 32-32s32 14.3 32 32v7.8c0 27.7-2.4 55.3-7.1 82.5l-84.4 25.3c-40.6 12.2-68.4 49.6-68.4 92v71.9c0 40 32.5 72.5 72.5 72.5 26 0 50-13.9 62.9-36.5l13.9-24.3c26.8-47 46.5-97.7 58.4-150.5l94.4-28.3-12.5 37.5c-3.3 9.8-1.6 20.5 4.4 28.8s15.7 13.3 26 13.3h128c17.7 0 32-14.3 32-32s-14.3-32-32-32h-83.6l18-53.9c3.8-11.3.9-23.8-7.4-32.4s-20.7-11.8-32.2-8.4l-122.5 36.8c2.4-20.7 3.6-41.4 3.6-62.3V128c0-53-43-96-96-96s-96 43-96 96v32c0 17.7 14.3 32 32 32s32-14.3 32-32zm-9.2 177 49-14.7c-10.4 33.8-24.5 66.4-42.1 97.2l-13.9 24.3c-1.5 2.6-4.3 4.3-7.4 4.3-4.7 0-8.5-3.8-8.5-8.5v-71.9c0-14.1 9.3-26.6 22.8-30.7zM24 368c-13.3 0-24 10.7-24 24s10.7 24 24 24h40.3c-.2-2.8-.3-5.6-.3-8.5V368zm592 48c13.3 0 24-10.7 24-24s-10.7-24-24-24H305.9c-6.7 16.3-14.2 32.3-22.3 48z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/signs-post.svg��������������������0000664�0000000�0000000�00000001256�14753064456�0030105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 32H64c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32h377.4c4.2 0 8.3-1.7 11.3-4.7l48-48c6.2-6.2 6.2-16.4 0-22.6l-48-48c-3-3-7.1-4.7-11.3-4.7H288c0-17.7-14.3-32-32-32s-32 14.3-32 32m256 224c0-17.7-14.3-32-32-32H288v-32h-64v32H70.6c-4.2 0-8.3 1.7-11.3 4.7l-48 48c-6.2 6.2-6.2 16.4 0 22.6l48 48c3 3 7.1 4.7 11.3 4.7H448c17.7 0 32-14.3 32-32zM288 480v-96h-64v96c0 17.7 14.3 32 32 32s32-14.3 32-32"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/sim-card.svg����������������������0000664�0000000�0000000�00000001211�14753064456�0027465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0h178.7c17 0 33.3 6.7 45.3 18.7L365.3 96c12 12 18.7 28.3 18.7 45.3V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64C0 28.7 28.7 0 64 0m32 192c-17.7 0-32 14.3-32 32v32h64v-64zM64 352h256v-64H64zm256-128c0-17.7-14.3-32-32-32h-32v64h64zm-160-32v64h64v-64zm128 256c17.7 0 32-14.3 32-32v-32h-64v64zm-128-64v64h64v-64zm-96 32c0 17.7 14.3 32 32 32h32v-64H64z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/sink.svg��������������������������0000664�0000000�0000000�00000001314�14753064456�0026736�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 96c0-17.7 14.3-32 32-32s32 14.3 32 32 14.3 32 32 32 32-14.3 32-32c0-53-43-96-96-96s-96 43-96 96v192h-64v-24c0-30.9-25.1-56-56-56H56c-13.3 0-24 10.7-24 24s10.7 24 24 24h48c4.4 0 8 3.6 8 8v24H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h448c17.7 0 32-14.3 32-32s-14.3-32-32-32h-80v-24c0-4.4 3.6-8 8-8h56c13.3 0 24-10.7 24-24s-10.7-24-24-24h-56c-30.9 0-56 25.1-56 56v24h-64zm192 320v-32H32v32c0 53 43 96 96 96h256c53 0 96-43 96-96"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/sitemap.svg�����������������������0000664�0000000�0000000�00000001455�14753064456�0027442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M208 80c0-26.5 21.5-48 48-48h64c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48h-8v40h152c30.9 0 56 25.1 56 56v32h8c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48h-64c-26.5 0-48-21.5-48-48v-64c0-26.5 21.5-48 48-48h8v-32c0-4.4-3.6-8-8-8H312v40h8c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48h-64c-26.5 0-48-21.5-48-48v-64c0-26.5 21.5-48 48-48h8v-40H112c-4.4 0-8 3.6-8 8v32h8c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48v-64c0-26.5 21.5-48 48-48h8v-32c0-30.9 25.1-56 56-56h152v-40h-8c-26.5 0-48-21.5-48-48z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/skull-crossbones.svg��������������0000664�0000000�0000000�00000001464�14753064456�0031310�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M368 128c0 44.4-25.4 83.5-64 106.4V256c0 17.7-14.3 32-32 32h-96c-17.7 0-32-14.3-32-32v-21.6c-38.6-23-64-62.1-64-106.4C80 57.3 144.5 0 224 0s144 57.3 144 128m-200 48a32 32 0 1 0 0-64 32 32 0 1 0 0 64m144-32a32 32 0 1 0-64 0 32 32 0 1 0 64 0M3.4 273.7c7.9-15.8 27.1-22.2 42.9-14.3L224 348.2l177.7-88.8c15.8-7.9 35-1.5 42.9 14.3s1.5 35-14.3 42.9L295.6 384l134.8 67.4c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3L224 419.8 46.3 508.6c-15.8 7.9-35 1.5-42.9-14.3s-1.5-35 14.3-42.9L152.4 384 17.7 316.6c-15.8-7.9-22.2-27.1-14.3-42.9"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/skull.svg�������������������������0000664�0000000�0000000�00000001152�14753064456�0027124�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M416 398.9c58.5-41.1 96-104.1 96-174.9C512 100.3 397.4 0 256 0S0 100.3 0 224c0 70.7 37.5 133.8 96 174.9V464c0 26.5 21.5 48 48 48h48v-48c0-8.8 7.2-16 16-16s16 7.2 16 16v48h64v-48c0-8.8 7.2-16 16-16s16 7.2 16 16v48h48c26.5 0 48-21.5 48-48v-65.1M96 256a64 64 0 1 1 128 0 64 64 0 1 1-128 0m256-64a64 64 0 1 1 0 128 64 64 0 1 1 0-128"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/slash.svg�������������������������0000664�0000000�0000000�00000000641�14753064456�0027106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M5.1 9.2C13.3-1.2 28.4-3.1 38.8 5.1l592 464c10.4 8.2 12.3 23.3 4.1 33.7s-23.3 12.3-33.7 4.1l-592-464C-1.2 34.7-3.1 19.6 5.1 9.2"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/sleigh.svg������������������������0000664�0000000�0000000�00000001314�14753064456�0027245�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 32C14.3 32 0 46.3 0 64s14.3 32 32 32v160c0 53 43 96 96 96v32h64v-32h192v32h64v-32c53 0 96-43 96-96v-96c17.7 0 32-14.3 32-32s-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32v41.3c0 30.2-24.5 54.7-54.7 54.7-75.5 0-145.6-38.9-185.6-102.9l-4.3-6.9C174.2 67.6 125 37.6 70.7 32.7c-2.2-.5-4.4-.7-6.7-.7H32m608 352c0-17.7-14.3-32-32-32s-32 14.3-32 32v8c0 13.3-10.7 24-24 24H64c-17.7 0-32 14.3-32 32s14.3 32 32 32h488c48.6 0 88-39.4 88-88z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/sliders.svg�����������������������0000664�0000000�0000000�00000001710�14753064456�0027437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 416c0 17.7 14.3 32 32 32h54.7c12.3 28.3 40.5 48 73.3 48s61-19.7 73.3-48H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H233.3c-12.3-28.3-40.5-48-73.3-48s-61 19.7-73.3 48H32c-17.7 0-32 14.3-32 32m128 0a32 32 0 1 1 64 0 32 32 0 1 1-64 0m192-160a32 32 0 1 1 64 0 32 32 0 1 1-64 0m32-80c-32.8 0-61 19.7-73.3 48H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h246.7c12.3 28.3 40.5 48 73.3 48s61-19.7 73.3-48H480c17.7 0 32-14.3 32-32s-14.3-32-32-32h-54.7c-12.3-28.3-40.5-48-73.3-48m-160-48a32 32 0 1 1 0-64 32 32 0 1 1 0 64m73.3-64C253 35.7 224.8 16 192 16s-61 19.7-73.3 48H32C14.3 64 0 78.3 0 96s14.3 32 32 32h86.7c12.3 28.3 40.5 48 73.3 48s61-19.7 73.3-48H480c17.7 0 32-14.3 32-32s-14.3-32-32-32z"/></svg>��������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/smog.svg��������������������������0000664�0000000�0000000�00000001575�14753064456�0026750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 144c0 79.5 64.5 144 144 144h123.3c22.6 19.9 52.2 32 84.7 32s62.1-12.1 84.7-32H496c61.9 0 112-50.1 112-112S557.9 64 496 64c-10.7 0-21 1.5-30.8 4.3C443.8 27.7 401.1 0 352 0c-32.6 0-62.4 12.2-85.1 32.3C242.1 12.1 210.5 0 176 0 96.5 0 32 64.5 32 144m584 224H280c-13.3 0-24 10.7-24 24s10.7 24 24 24h336c13.3 0 24-10.7 24-24s-10.7-24-24-24m-64 96H440c-13.3 0-24 10.7-24 24s10.7 24 24 24h112c13.3 0 24-10.7 24-24s-10.7-24-24-24m-192 0H24c-13.3 0-24 10.7-24 24s10.7 24 24 24h336c13.3 0 24-10.7 24-24s-10.7-24-24-24m-136-72c0-13.3-10.7-24-24-24H96c-13.3 0-24 10.7-24 24s10.7 24 24 24h104c13.3 0 24-10.7 24-24"/></svg>�����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/smoking.svg�����������������������0000664�0000000�0000000�00000001767�14753064456�0027455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 32v11c0 38.2 15.2 74.8 42.2 101.8l21 21c21 21 32.8 49.5 32.8 79.2v11c0 17.7-14.3 32-32 32s-32-14.3-32-32v-11c0-12.7-5.1-24.9-14.1-33.9l-21-21c-39-39-60.9-92-60.9-147.1V32c0-17.7 14.3-32 32-32s32 14.3 32 32m128 224v-11c0-38.2-15.2-74.8-42.2-101.8l-21-21c-21-21-32.8-49.5-32.8-79.2V32c0-17.7 14.3-32 32-32s32 14.3 32 32v11c0 12.7 5.1 24.9 14.1 33.9l21 21c39 39 60.9 91.9 60.9 147.1v11c0 17.7-14.3 32-32 32s-32-14.3-32-32M0 416c0-35.3 28.7-64 64-64h352c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H64c-35.3 0-64-28.7-64-64zm224 0v32h160v-32zm288-64c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32v-96c0-17.7 14.3-32 32-32m96 0c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32v-96c0-17.7 14.3-32 32-32"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/snowflake.svg���������������������0000664�0000000�0000000�00000002716�14753064456�0027772�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 0c17.7 0 32 14.3 32 32v30.1l15-15c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-49 49v70.3l61.4-35.8L335 98.4c3.4-12.8 16.6-20.4 29.4-17s20.4 16.6 17 29.4l-5.2 19.3 23.6-13.8c15.3-8.9 34.9-3.7 43.8 11.5s3.8 34.9-11.5 43.8l-25.3 14.8 21.7 5.8c12.8 3.4 20.4 16.6 17 29.4s-16.6 20.4-29.4 17l-67.7-18.1-60.9 35.5 60.9 35.5 67.7-18.1c12.8-3.4 26 4.2 29.4 17s-4.2 26-17 29.4l-21.7 5.8 25.3 14.8c15.3 8.9 20.4 28.5 11.5 43.8s-28.5 20.4-43.8 11.5l-23.6-13.8 5.2 19.3c3.4 12.8-4.2 26-17 29.4s-26-4.2-29.4-17l-17.7-66.1-61.3-35.8V382l49 49c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-15-15V480c0 17.7-14.3 32-32 32s-32-14.3-32-32v-30.1l-15 15c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l49-49v-70.3l-61.4 35.8-17.7 66.1c-3.4 12.8-16.6 20.4-29.4 17s-20.4-16.6-17-29.4l5.2-19.3-23.8 13.7c-15.3 8.9-34.9 3.7-43.8-11.5s-3.7-34.9 11.5-43.8l25.3-14.8-21.7-5.8c-12.8-3.4-20.4-16.6-17-29.4s16.6-20.4 29.4-17l67.7 18.1 61-35.4-60.9-35.5-67.7 18.1c-12.8 3.4-26-4.2-29.4-17s4.2-26 17-29.4l21.7-5.8-25.3-14.8C.6 162.7-4.5 143.1 4.4 127.9s28.5-20.4 43.8-11.5l23.6 13.8-5.2-19.3c-3.4-12.8 4.2-26 17-29.4s26 4.2 29.4 17l17.7 66.1 61.3 35.7V130l-49-49c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l15 15L192 32c0-17.7 14.3-32 32-32"/></svg>��������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/snowman.svg�����������������������0000664�0000000�0000000�00000002475�14753064456�0027465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M341.1 140.6c-2 3.9-1.6 8.6 1.2 12 7 8.5 12.9 18.1 17.2 28.4l48.5-20.8V120c0-13.3 10.7-24 24-24s24 10.7 24 24v19.6l22.5-9.7c12.2-5.2 26.3.4 31.5 12.6s-.4 26.3-12.6 31.5l-56 24-73.6 31.5q-.75 14.25-4.8 27.3c-1.2 3.8-.1 8 2.8 10.8C396.7 296.9 416 338.2 416 384c0 44.7-18.3 85-47.8 114.1-9.9 9.7-23.7 13.9-37.5 13.9H181.4c-13.9 0-27.7-4.2-37.5-13.9C114.3 469 96 428.7 96 384c0-45.8 19.3-87.1 50.1-116.3 2.9-2.8 4-6.9 2.8-10.8-2.7-8.7-4.3-17.9-4.8-27.3l-73.6-31.5-56-24c-12.1-5.3-17.8-19.4-12.6-31.6s19.3-17.8 31.5-12.6l22.6 9.7V120c0-13.3 10.7-24 24-24s24 10.7 24 24v40.2l48.6 20.8c4.3-10.3 10.1-19.9 17.2-28.4 2.8-3.4 3.3-8.1 1.2-12-7-13.4-11-28.5-11-44.6 0-53 43-96 96-96s96 43 96 96c0 16.1-4 31.2-10.9 44.6M224 96a16 16 0 1 0 0-32 16 16 0 1 0 0 32m48 128a16 16 0 1 0-32 0 16 16 0 1 0 32 0m-16 80a16 16 0 1 0 0-32 16 16 0 1 0 0 32m16 48a16 16 0 1 0-32 0 16 16 0 1 0 32 0m16-256a16 16 0 1 0 0-32 16 16 0 1 0 0 32m-48 24v3.2c0 3.2.8 6.3 2.3 9l9 16.9c.9 1.7 2.7 2.8 4.7 2.8s3.8-1.1 4.7-2.8l9-16.9c1.5-2.8 2.3-5.9 2.3-9V120c0-8.8-7.2-16-16-16s-16 7.2-16 16"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/snowplow.svg����������������������0000664�0000000�0000000�00000001772�14753064456�0027672�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m298.9 64 68.6 160H256l-64-64V64zm146.2 178.7-87.4-204C347.6 15.3 324.5 0 298.9 0H176c-26.5 0-48 21.5-48 48v112H96c-17.7 0-32 14.3-32 32v106.8C26.2 316.8 0 355.3 0 400c0 61.9 50.1 112 112 112h256c61.9 0 112-50.1 112-112 0-17.2-3.9-33.5-10.8-48H512v50.7c0 17 6.7 33.3 18.7 45.3l54.6 54.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L576 402.7V235.2l57-71.2c11-13.8 8.8-33.9-5-45s-33.9-8.8-45 5l-57 71.2c-9.1 11.3-14 25.4-14 40V288h-64v-31.3c.1-2.4-.2-4.8-.6-7.1s-1.2-4.7-2.2-6.8zM368 352c26.5 0 48 21.5 48 48s-21.5 48-48 48H112c-26.5 0-48-21.5-48-48s21.5-48 48-48zm-224 48a24 24 0 1 0-48 0 24 24 0 1 0 48 0m216 24a24 24 0 1 0 0-48 24 24 0 1 0 0 48m-56-24a24 24 0 1 0-48 0 24 24 0 1 0 48 0m-104 24a24 24 0 1 0 0-48 24 24 0 1 0 0 48"/></svg>������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/soap.svg��������������������������0000664�0000000�0000000�00000001336�14753064456�0026740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M208 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96m112 160a64 64 0 1 0 0-128 64 64 0 1 0 0 128m96-224a32 32 0 1 0-64 0 32 32 0 1 0 64 0m0 160c0 27.6-11.7 52.5-30.4 70.1 36.5 13.6 62.4 48.7 62.4 89.9 0 53-43 96-96 96H160c-53 0-96-43-96-96s43-96 96-96h88.4c-15.2-17-24.4-39.4-24.4-64H96c-53 0-96 43-96 96v128c0 53 43 96 96 96h320c53 0 96-43 96-96V288c0-53-43-96-96-96m-256 96c-35.3 0-64 28.7-64 64s28.7 64 64 64h192c35.3 0 64-28.7 64-64s-28.7-64-64-64H160"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/socks.svg�������������������������0000664�0000000�0000000�00000001445�14753064456�0027121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M175.2 476.6c-9.7-18-15.2-38.7-15.2-60.6 0-40.3 19-78.2 51.2-102.4l64-48c8.1-6 12.8-15.5 12.8-25.6V96H128v144c0 20.1-9.5 39.1-25.6 51.2l-64 48C14.2 357.3 0 385.8 0 416c0 53 43 96 96 96 20.8 0 41-6.7 57.6-19.2zM128 64h160V48c0-14.5 3.9-28.2 10.7-39.9C291 3 281.9 0 272 0h-96c-26.5 0-48 21.5-48 48zm192 32v144c0 20.1-9.5 39.1-25.6 51.2l-64 48C206.2 357.3 192 385.8 192 416c0 53 43 96 96 96 20.8 0 41-6.7 57.6-19.2l115.2-86.4C493 382.2 512 344.3 512 304V96zm192-32V48c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v16z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/solar-panel.svg�������������������0000664�0000000�0000000�00000001323�14753064456�0030207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M122.2 0C91.7 0 65.5 21.5 59.5 51.4l-51.2 256C.4 347 30.6 384 71 384h217v64h-64c-17.7 0-32 14.3-32 32s14.3 32 32 32h192c17.7 0 32-14.3 32-32s-14.3-32-32-32h-64v-64h217c40.4 0 70.7-36.9 62.8-76.6l-51.2-256C574.5 21.5 548.3 0 517.8 0zm138.7 64h118.2l10.4 104h-139zm-58.6 104H101.5l20.7-104h90.4zM91.8 216h105.6l-10.3 104H71zm153.9 0h148.6l10.4 104H235.3zm196.8 0h105.6L569 320H453zm96-48H437.7L427.3 64h90.4l31.4-6.3-31.3 6.3 20.8 104z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/sort-down.svg���������������������0000664�0000000�0000000�00000000673�14753064456�0027735�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M182.6 470.6c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-9.2-9.2-11.9-22.9-6.9-34.9S19 287.9 32 287.9h256c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9l-128 128z"/></svg>���������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/sort-up.svg�����������������������0000664�0000000�0000000�00000000672�14753064456�0027411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M182.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-9.2 9.2-11.9 22.9-6.9 34.9S19 224.1 32 224.1h256c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-128-128z"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/sort.svg��������������������������0000664�0000000�0000000�00000001121�14753064456�0026755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M137.4 41.4c12.5-12.5 32.8-12.5 45.3 0l128 128c9.2 9.2 11.9 22.9 6.9 34.9S301 224.1 288 224.1L32 224c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9l128-128zm0 429.3-128-128c-9.2-9.2-11.9-22.9-6.9-34.9S19.1 288 32.1 288h256c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9l-128 128c-12.5 12.5-32.8 12.5-45.3 0z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/spa.svg���������������������������0000664�0000000�0000000�00000001367�14753064456�0026565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M183.1 235.3c33.7 20.7 62.9 48.1 85.8 80.5 7 9.9 13.4 20.3 19.1 31 5.7-10.8 12.1-21.1 19.1-31 22.9-32.4 52.1-59.8 85.8-80.5C437.6 207.8 490.1 192 546 192h9.9c11.1 0 20.1 9 20.1 20.1 0 148-119.9 267.9-267.9 267.9h-40.2C119.9 480 0 360.1 0 212.1 0 201 9 192 20.1 192H30c55.9 0 108.4 15.8 153.1 43.3M301.5 37.6c15.7 16.9 61.1 71.8 84.4 164.6-38 21.6-71.4 50.8-97.9 85.6-26.5-34.8-59.9-63.9-97.9-85.6 23.2-92.8 68.6-147.7 84.4-164.6 3.5-3.7 8.4-5.6 13.5-5.6s10 1.9 13.5 5.6"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/spaghetti-monster-flying.svg������0000664�0000000�0000000�00000005215�14753064456�0032741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M208 64a16 16 0 1 0-32 0 16 16 0 1 0 32 0m48 0c0 16.2-6 31.1-16 42.3l15.6 31.2c18.7-6 39.9-9.5 64.4-9.5s45.8 3.5 64.4 9.5l15.6-31.2c-10-11.2-16-26.1-16-42.3 0-35.3 28.7-64 64-64s64 28.7 64 64-28.7 64-64 64c-1.7 0-3.4-.1-5.1-.2L427.8 158c21.1 13.6 37.7 30.2 51.4 46.4 7.1 8.3 13.5 16.6 19.3 24l1.4 1.8c6.3 8.1 11.6 14.8 16.7 20.4 10.7 11.7 16.1 13.4 19.4 13.4 2.5 0 4.3-.6 7.1-3.3 3.7-3.5 7.1-8.8 12.5-17.4l.6-.9c4.6-7.4 11-17.6 19.4-25.7 9.7-9.3 22.9-16.7 40.4-16.7 13.3 0 24 10.7 24 24s-10.7 24-24 24c-2.5 0-4.3.6-7.1 3.3-3.7 3.5-7.1 8.8-12.5 17.4l-.6.9c-4.6 7.4-11 17.6-19.4 25.7-9.7 9.3-22.9 16.7-40.4 16.7-18.5 0-32.9-8.5-44.3-18.6-3.1 4-6.6 8.3-10.5 12.7 1.4 4.3 2.8 8.5 4 12.5.9 3 1.8 5.8 2.6 8.6 3 9.8 5.5 18.2 8.6 25.9 3.9 9.8 7.4 15.4 10.8 18.5 2.6 2.4 5.9 4.3 12.8 4.3 8.7 0 16.9-4.2 33.7-13.2 15-8 35.7-18.8 62.3-18.8 13.3 0 24 10.7 24 24s-10.7 24-24 24c-13.4 0-24.7 5.2-39.7 13.2-1 .6-2.1 1.1-3.2 1.7C559.9 414 541.4 424 520 424c-18.4 0-33.6-6.1-45.5-17.2-11.1-10.3-17.9-23.7-22.7-36-3.6-9-6.7-19.1-9.5-28.5-16.4 12.3-36.1 23.6-58.9 31.3 3.6 10.8 8.4 23.5 14.4 36.2 7.5 15.9 16.2 30.4 25.8 40.5C433 460.5 441.2 464 448 464c13.3 0 24 10.7 24 24s-10.7 24-24 24c-25.2 0-45-13.5-59.5-28.8-14.5-15.4-25.7-34.9-34.2-53-8-17-14.1-33.8-18.3-46.9-5.2.4-10.6.6-16 .6s-10.8-.2-16-.6c-4.2 13-10.3 29.9-18.3 46.9-8.5 18.1-19.8 37.6-34.2 53C237 498.5 217.2 512 192 512c-13.3 0-24-10.7-24-24s10.7-24 24-24c6.8 0 15-3.5 24.5-13.7 9.5-10.1 18.3-24.6 25.8-40.5 5.9-12.6 10.7-25.4 14.4-36.2-22.8-7.7-42.5-19-58.9-31.3-2.9 9.4-6 19.5-9.5 28.5-4.8 12.2-11.6 25.6-22.7 36-12 11.1-27.2 17.2-45.6 17.2-21.4 0-39.9-10-53.1-17.1-1.1-.6-2.2-1.2-3.2-1.7-15-8-26.3-13.2-39.7-13.2-13.3 0-24-10.7-24-24s10.7-24 24-24c26.6 0 47.3 10.8 62.3 18.8 16.8 9 25 13.2 33.7 13.2 6.8 0 10.2-1.9 12.8-4.3 3.4-3.2 7-8.8 10.8-18.5 3-7.7 5.6-16.1 8.6-25.9.8-2.7 1.7-5.6 2.6-8.6 1.2-4 2.6-8.2 4-12.5-3.9-4.5-7.4-8.8-10.5-12.7-11.4 10-25.8 18.5-44.3 18.5-17.5 0-30.7-7.4-40.4-16.7-8.4-8.1-14.8-18.3-19.4-25.7l-.6-.9c-5.4-8.6-8.8-13.9-12.5-17.4-2.8-2.7-4.6-3.3-7.1-3.3-13.3 0-24-10.7-24-24s10.7-24 24-24c17.5 0 30.7 7.4 40.4 16.7 8.4 8.1 14.8 18.3 19.4 25.7l.6.9c5.4 8.6 8.8 13.9 12.5 17.4 2.8 2.7 4.6 3.3 7.1 3.3 3.3 0 8.7-1.7 19.4-13.4 5.1-5.6 10.4-12.3 16.7-20.4l1.4-1.8c5.8-7.4 12.2-15.7 19.3-24 13.8-16.2 30.3-32.8 51.4-46.4l-15.1-30.2c-1.7.1-3.4.2-5.1.2-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64m208 0a16 16 0 1 0-32 0 16 16 0 1 0 32 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/spell-check.svg�������������������0000664�0000000�0000000�00000001633�14753064456�0030170�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M112 0C99.1 0 87.4 7.8 82.5 19.7l-66.7 160-13.3 32c-6.8 16.3.9 35 17.2 41.8s35-.9 41.8-17.2l5.2-12.3h90.7l5.1 12.3c6.8 16.3 25.5 24 41.8 17.2s24-25.5 17.2-41.8l-13.3-32-66.7-160C136.6 7.8 124.9 0 112 0m18.7 160H93.4l18.6-44.8zM256 32v192c0 17.7 14.3 32 32 32h80c44.2 0 80-35.8 80-80 0-23.1-9.8-43.8-25.4-58.4 6-11.2 9.4-24 9.4-37.6 0-44.2-35.8-80-80-80h-64c-17.7 0-32 14.3-32 32m96 64h-32V64h32c8.8 0 16 7.2 16 16s-7.2 16-16 16m-32 64h48c8.8 0 16 7.2 16 16s-7.2 16-16 16h-48zm246.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L352 434.7l-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0z"/></svg>�����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/spider.svg������������������������0000664�0000000�0000000�00000003117�14753064456�0027263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M158.4 32.6c4.8-12.4-1.4-26.3-13.8-31s-26.3 1.4-31 13.8L81.1 100c-7.9 20.7-3 44.1 12.7 59.7l57.4 57.4-80.4-26.8c-2.4-.8-4.3-2.7-5.1-5.1l-18.9-56.8C42.6 115.8 29 109 16.4 113.2S-3 131 1.2 143.6l18.9 56.8c5.6 16.7 18.7 29.8 35.4 35.4l60.6 20.2-60.5 20.2c-16.7 5.6-29.8 18.7-35.4 35.4l-19 56.8C-3 381 3.8 394.6 16.4 398.8s26.2-2.6 30.4-15.2l18.9-56.8c.8-2.4 2.7-4.3 5.1-5.1l80.4-26.8-57.5 57.4C78.1 368 73.1 391.4 81.1 412l32.5 84.6c4.8 12.4 18.6 18.5 31 13.8s18.5-18.6 13.8-31l-32.5-84.6c-1.1-3-.4-6.3 1.8-8.5l32.3-32.4c1 52.1 43.6 94.1 96 94.1s95-41.9 96-94.1l32.3 32.3c2.2 2.2 2.9 5.6 1.8 8.5l-32.5 84.6c-4.8 12.4 1.4 26.3 13.8 31s26.3-1.4 31-13.8l32.5-84.5c7.9-20.7 3-44.1-12.7-59.7l-57.4-57.4 80.4 26.8c2.4.8 4.3 2.7 5.1 5.1l18.9 56.8c4.2 12.6 17.8 19.4 30.4 15.2s19.4-17.8 15.2-30.4l-18.9-56.8c-5.6-16.7-18.7-29.8-35.4-35.4L395.9 256l60.5-20.2c16.7-5.6 29.8-18.7 35.4-35.4l18.9-56.8c4.2-12.6-2.6-26.2-15.2-30.4s-26.2 2.6-30.4 15.2l-18.9 56.8c-.8 2.4-2.7 4.3-5.1 5.1l-80.4 26.8 57.4-57.4c15.6-15.6 20.6-39 12.7-59.7l-32.4-84.6c-4.8-12.4-18.6-18.6-31-13.8s-18.5 18.6-13.8 31l32.5 84.6c1.1 3 .4 6.3-1.8 8.5L336 174.1V160c0-31.8-18.6-59.3-45.5-72.2-9.1-4.4-18.5 3.3-18.5 13.4V112c0 8.8-7.2 16-16 16s-16-7.2-16-16v-10.8c0-10.1-9.4-17.7-18.5-13.4-26.9 12.9-45.5 40.4-45.5 72.2v14.1l-48.3-48.3c-2.2-2.2-2.9-5.6-1.8-8.5l32.5-84.6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/spinner.svg�����������������������0000664�0000000�0000000�00000001141�14753064456�0027446�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M304 48a48 48 0 1 0-96 0 48 48 0 1 0 96 0m0 416a48 48 0 1 0-96 0 48 48 0 1 0 96 0M48 304a48 48 0 1 0 0-96 48 48 0 1 0 0 96m464-48a48 48 0 1 0-96 0 48 48 0 1 0 96 0M142.9 437A48 48 0 1 0 75 369.1a48 48 0 1 0 67.9 67.9m0-294.2A48 48 0 1 0 75 75a48 48 0 1 0 67.9 67.9zM369.1 437a48 48 0 1 0 67.9-67.9 48 48 0 1 0-67.9 67.9"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/splotch.svg�����������������������0000664�0000000�0000000�00000001526�14753064456�0027453�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m208.5 62.3 28.1-36.9C248.8 9.4 267.8 0 288 0c28.5 0 53.6 18.7 61.8 46l17.8 59.4c10.3 34.4 36.1 62 69.8 74.6l39.8 14.9c20.9 7.9 34.8 27.9 34.8 50.2 0 16.9-7.9 32.8-21.5 42.9l-67.3 50.5c-24.3 18.2-37.2 47.9-33.8 78.1l2.5 22.7c4.3 38.7-26 72.6-65 72.6-14.8 0-29.3-5.1-40.8-14.3l-55.4-44.3c-4.5-3.6-9.3-6.7-14.5-9.2-15.8-7.9-33.7-10.4-51-7.3l-82.8 15.1C47.8 458.2 16 431.6 16 396.5c0-13.2 4.7-26 13.1-36.2l11.2-13.4c14.6-17.4 22.6-39.4 22.6-62.1 0-18.8-5.5-37.2-15.8-53L8.8 173.5C3.1 164.7 0 154.4 0 143.9c0-33.4 30.1-58.8 63-53.2l51.3 8.7c35.9 6.1 72.2-8.2 94.2-37.1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/spoon.svg�������������������������0000664�0000000�0000000�00000000733�14753064456�0027134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M245.8 220.9c-14.5-17.6-21.8-39.2-21.8-60.8C224 80 320 0 416 0c53 0 96 43 96 96 0 96-80 192-160.2 192-21.6 0-43.2-7.3-60.8-21.8L54.6 502.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3z"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/spray-can-sparkles.svg������������0000664�0000000�0000000�00000002526�14753064456�0031517�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 32v96h128V32c0-17.7-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32m0 128c-53 0-96 43-96 96v208c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V256c0-53-43-96-96-96zm64 96a80 80 0 1 1 0 160 80 80 0 1 1 0-160M384 48c0-1.4-1-3-2.2-3.6L352 32 339.6 2.2C339 1 337.4 0 336 0s-3 1-3.6 2.2L320 32l-29.8 12.4c-1.2.6-2.2 2.2-2.2 3.6s1 3 2.2 3.6L320 64l12.4 29.8c.6 1.2 2.2 2.2 3.6 2.2s3-1 3.6-2.2L352 64l29.8-12.4c1.2-.6 2.2-2.2 2.2-3.6m76.4 45.8c.6 1.2 2.2 2.2 3.6 2.2s3-1 3.6-2.2L480 64l29.8-12.4c1.2-.6 2.2-2.2 2.2-3.6s-1-3-2.2-3.6L480 32 467.6 2.2C467 1 465.4 0 464 0s-3 1-3.6 2.2L448 32l-29.8 12.4c-1.2.6-2.2 2.2-2.2 3.6s1 3 2.2 3.6L448 64zm7.2 100.4c-.6-1.2-2.2-2.2-3.6-2.2s-3 1-3.6 2.2L448 224l-29.8 12.4c-1.2.6-2.2 2.2-2.2 3.6s1 3 2.2 3.6L448 256l12.4 29.8c.6 1.2 2.2 2.2 3.6 2.2s3-1 3.6-2.2L480 256l29.8-12.4c1.2-.6 2.2-2.2 2.2-3.6s-1-3-2.2-3.6L480 224zM448 144c0-1.4-1-3-2.2-3.6L416 128l-12.4-29.8C403 97 401.4 96 400 96s-3 1-3.6 2.2L384 128l-29.8 12.4c-1.2.6-2.2 2.2-2.2 3.6s1 3 2.2 3.6L384 160l12.4 29.8c.6 1.2 2.2 2.2 3.6 2.2s3-1 3.6-2.2L416 160l29.8-12.4c1.2-.6 2.2-2.2 2.2-3.6"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/spray-can.svg���������������������0000664�0000000�0000000�00000001336�14753064456�0027673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 0h64c17.7 0 32 14.3 32 32v96H96V32c0-17.7 14.3-32 32-32M0 256c0-53 43-96 96-96h128c53 0 96 43 96 96v208c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48zm240 80a80 80 0 1 0-160 0 80 80 0 1 0 160 0m16-272a32 32 0 1 1 64 0 32 32 0 1 1-64 0m128-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64m64 32a32 32 0 1 1 64 0 32 32 0 1 1-64 0m32 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64m-32 128a32 32 0 1 1 64 0 32 32 0 1 1-64 0m-64-128a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/square-arrow-up-right.svg���������0000664�0000000�0000000�00000001070�14753064456�0032156�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 32c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96c0-35.3 28.7-64 64-64zM160 144c-13.3 0-24 10.7-24 24s10.7 24 24 24h94.1L119 327c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l135-135L288 328c0 13.3 10.7 24 24 24s24-10.7 24-24V168c0-13.3-10.7-24-24-24z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/square-binary.svg�����������������0000664�0000000�0000000�00000001707�14753064456�0030562�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96c0-35.3 28.7-64 64-64h320c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm144 4c-24.3 0-44 19.7-44 44v48c0 24.3 19.7 44 44 44h32c24.3 0 44-19.7 44-44v-48c0-24.3-19.7-44-44-44zm-4 44c0-2.2 1.8-4 4-4h32c2.2 0 4 1.8 4 4v48c0 2.2-1.8 4-4 4h-32c-2.2 0-4-1.8-4-4zm140-44c-11 0-20 9-20 20 0 9.7 6.9 17.7 16 19.6V216c0 11 9 20 20 20s20-9 20-20v-96c0-11-9-20-20-20zM132 296c0 9.7 6.9 17.7 16 19.6V392c0 11 9 20 20 20s20-9 20-20v-96c0-11-9-20-20-20h-16c-11 0-20 9-20 20m96 24v48c0 24.3 19.7 44 44 44h32c24.3 0 44-19.7 44-44v-48c0-24.3-19.7-44-44-44h-32c-24.3 0-44 19.7-44 44m44-4h32c2.2 0 4 1.8 4 4v48c0 2.2-1.8 4-4 4h-32c-2.2 0-4-1.8-4-4v-48c0-2.2 1.8-4 4-4"/></svg>���������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/square-caret-down.svg�������������0000664�0000000�0000000�00000001054�14753064456�0031334�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 480c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64zM224 352c-6.7 0-13-2.8-17.6-7.7l-104-112c-6.5-7-8.2-17.2-4.4-25.9s12.5-14.4 22-14.4h208c9.5 0 18.2 5.7 22 14.4s2.1 18.9-4.4 25.9l-104 112c-4.5 4.9-10.9 7.7-17.6 7.7"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/square-caret-left.svg�������������0000664�0000000�0000000�00000001050�14753064456�0031313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 416c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96zm128-160c0-6.7 2.8-13 7.7-17.6l112-104c7-6.5 17.2-8.2 25.9-4.4s14.4 12.5 14.4 22v208c0 9.5-5.7 18.2-14.4 22s-18.9 2.1-25.9-4.4l-112-104c-4.9-4.5-7.7-10.9-7.7-17.6"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/square-caret-right.svg������������0000664�0000000�0000000�00000001051�14753064456�0031477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 96c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64zM320 256c0 6.7-2.8 13-7.7 17.6l-112 104c-7 6.5-17.2 8.2-25.9 4.4S160 369.5 160 360V152c0-9.5 5.7-18.2 14.4-22s18.9-2.1 25.9 4.4l112 104c4.9 4.5 7.7 10.9 7.7 17.6"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/square-caret-up.svg���������������0000664�0000000�0000000�00000001050�14753064456�0031005�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm160 128c6.7 0 13 2.8 17.6 7.7l104 112c6.5 7 8.2 17.2 4.4 25.9S337.5 320 328 320H120c-9.5 0-18.2-5.7-22-14.4s-2.1-18.9 4.4-25.9l104-112c4.5-4.9 10.9-7.7 17.6-7.7"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/square-check.svg������������������0000664�0000000�0000000�00000001027�14753064456�0030346�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm273 177L209 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L303 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/square-envelope.svg���������������0000664�0000000�0000000�00000001202�14753064456�0031101�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm154 239.7L64.2 172.4C66 156.4 79.5 144 96 144h256c16.5 0 30 12.4 31.8 28.4L230 271.7c-1.8 1.2-3.9 1.8-6 1.8s-4.2-.6-6-1.8m29.4 26.9L384 210.4V336c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V210.4l136.6 88.2c7 4.5 15.1 6.9 23.4 6.9s16.4-2.4 23.4-6.9"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/square-full.svg�������������������0000664�0000000�0000000�00000000461�14753064456�0030234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 0h512v512H0z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/square-h.svg����������������������0000664�0000000�0000000�00000001073�14753064456�0027521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm272 120v208c0 13.3-10.7 24-24 24s-24-10.7-24-24v-80H160v80c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24s24 10.7 24 24v80h128v-80c0-13.3 10.7-24 24-24s24 10.7 24 24"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/square-minus.svg������������������0000664�0000000�0000000�00000000736�14753064456�0030432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm88 200h144c13.3 0 24 10.7 24 24s-10.7 24-24 24H152c-13.3 0-24-10.7-24-24s10.7-24 24-24"/></svg>����������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/square-nfi.svg��������������������0000664�0000000�0000000�00000001501�14753064456�0030042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96c0-35.3 28.7-64 64-64h320c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm75.7 64.6C68.8 162.5 64 168.8 64 176v160c0 8.8 7.2 16 16 16s16-7.2 16-16V233.8l66.3 110.5c3.7 6.2 11.1 9.1 18 7.2s11.7-8.2 11.7-15.4v-160c0-8.8-7.2-16-16-16s-16 7.2-16 16v102.2L93.7 167.8c-3.7-6.2-11.1-9.1-18-7.2M224 176v160c0 8.8 7.2 16 16 16s16-7.2 16-16v-80h48c8.8 0 16-7.2 16-16s-7.2-16-16-16h-48v-32h48c8.8 0 16-7.2 16-16s-7.2-16-16-16h-64c-8.8 0-16 7.2-16 16m160 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v160c0 8.8 7.2 16 16 16s16-7.2 16-16z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/square-parking.svg����������������0000664�0000000�0000000�00000001046�14753064456�0030725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm128 224h48c17.7 0 32-14.3 32-32s-14.3-32-32-32h-48zm48 64h-48v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V168c0-22.1 17.9-40 40-40h72c53 0 96 43 96 96s-43 96-96 96"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/square-pen.svg��������������������0000664�0000000�0000000�00000001206�14753064456�0030052�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm261.8 107.7 14.4 14.4c15.6 15.6 15.6 40.9 0 56.6l-21.4 21.4-71-71 21.4-21.4c15.6-15.6 40.9-15.6 56.6 0M119.9 289l105.2-105.2 71 71-105.2 105.1c-4.1 4.1-9.2 7-14.9 8.4l-60.1 15c-5.5 1.4-11.2-.2-15.2-4.2s-5.6-9.7-4.2-15.2l15-60.1c1.4-5.6 4.3-10.8 8.4-14.9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/square-person-confined.svg��������0000664�0000000�0000000�00000001232�14753064456�0032360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm96 112a48 48 0 1 1 96 0 48 48 0 1 1-96 0m80 104c0-30.9 25.1-56 56-56s56 25.1 56 56v102.1c0 36.4-29.5 65.9-65.9 65.9-17.5 0-34.3-6.9-46.6-19.3L184.8 342l-28.1 56.3c-7.9 15.8-27.1 22.2-42.9 14.3s-22.2-27.1-14.3-42.9l48-96c4.6-9.2 13.3-15.6 23.5-17.3s20.5 1.7 27.8 9l41.2 41.3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/square-phone-flip.svg�������������0000664�0000000�0000000�00000001217�14753064456�0031333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 32c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96c0-35.3 28.7-64 64-64zm-90.7 96.7c-9.7-2.6-19.9 2.3-23.7 11.6l-20 48c-3.4 8.2-1 17.6 5.8 23.2l24.6 20.2c-16.6 35.2-45.1 63.7-80.3 80.3l-20.2-24.7c-5.6-6.8-15-9.2-23.2-5.8l-48 20c-9.3 3.9-14.2 14-11.6 23.7l12 44C111.1 378 119 384 128 384c123.7 0 224-100.3 224-224 0-9-6-16.9-14.7-19.3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/square-phone.svg������������������0000664�0000000�0000000�00000001205�14753064456�0030400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm90.7 96.7c9.7-2.6 19.9 2.3 23.7 11.6l20 48c3.4 8.2 1 17.6-5.8 23.2L168 231.7c16.6 35.2 45.1 63.7 80.3 80.3l20.2-24.7c5.6-6.8 15-9.2 23.2-5.8l48 20c9.3 3.9 14.2 14 11.6 23.7l-12 44C336.9 378 329 384 320 384 196.3 384 96 283.7 96 160c0-9 6-16.9 14.7-19.3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/square-plus.svg�������������������0000664�0000000�0000000�00000001072�14753064456�0030254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm136 312v-64h-64c-13.3 0-24-10.7-24-24s10.7-24 24-24h64v-64c0-13.3 10.7-24 24-24s24 10.7 24 24v64h64c13.3 0 24 10.7 24 24s-10.7 24-24 24h-64v64c0 13.3-10.7 24-24 24s-24-10.7-24-24"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/square-poll-horizontal.svg��������0000664�0000000�0000000�00000001225�14753064456�0032426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 96c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64zm-192 64c0 17.7-14.3 32-32 32h-96c-17.7 0-32-14.3-32-32s14.3-32 32-32h96c17.7 0 32 14.3 32 32m64 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H128c-17.7 0-32-14.3-32-32s14.3-32 32-32zM192 352c0 17.7-14.3 32-32 32h-32c-17.7 0-32-14.3-32-32s14.3-32 32-32h32c17.7 0 32 14.3 32 32"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/square-poll-vertical.svg����������0000664�0000000�0000000�00000001222�14753064456�0032043�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm64 192c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32v-96c0-17.7 14.3-32 32-32m64-64c0-17.7 14.3-32 32-32s32 14.3 32 32v192c0 17.7-14.3 32-32 32s-32-14.3-32-32zm128 128c17.7 0 32 14.3 32 32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32v-32c0-17.7 14.3-32 32-32"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/square-root-variable.svg����������0000664�0000000�0000000�00000001446�14753064456�0032044�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M282.6 78.1c8-27.3 33-46.1 61.4-46.1h200c17.7 0 32 14.3 32 32s-14.3 32-32 32H344L238.7 457c-3.6 12.3-14.1 21.2-26.8 22.8s-25.1-4.6-31.5-15.6L77.6 288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h45.6c22.8 0 43.8 12.1 55.3 31.8l65.2 111.8zm110.8 155.3c12.5-12.5 32.8-12.5 45.3 0l41.3 41.3 41.4-41.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L525.3 320l41.4 41.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L480 365.3l-41.4 41.4c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l41.4-41.4-41.4-41.4c-12.5-12.5-12.5-32.8 0-45.3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/square-rss.svg��������������������0000664�0000000�0000000�00000001266�14753064456�0030105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm32 104c0-13.3 10.7-24 24-24 137 0 248 111 248 248 0 13.3-10.7 24-24 24s-24-10.7-24-24c0-110.5-89.5-200-200-200-13.3 0-24-10.7-24-24m0 96c0-13.3 10.7-24 24-24 83.9 0 152 68.1 152 152 0 13.3-10.7 24-24 24s-24-10.7-24-24c0-57.4-46.6-104-104-104-13.3 0-24-10.7-24-24m0 120a32 32 0 1 1 64 0 32 32 0 1 1-64 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/square-share-nodes.svg������������0000664�0000000�0000000�00000001324�14753064456�0031501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm320 128c0 35.3-28.7 64-64 64-15.4 0-29.5-5.4-40.6-14.5L194.1 256l85.3 46.5c11-9.1 25.2-14.5 40.6-14.5 35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64c0-2.5.1-4.9.4-7.3L174.5 300c-11.7 12.3-28.2 20-46.5 20-35.3 0-64-28.7-64-64s28.7-64 64-64c18.3 0 34.8 7.7 46.5 20l81.9-44.7c-.3-2.4-.4-4.9-.4-7.3 0-35.3 28.7-64 64-64s64 28.7 64 64"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/square-up-right.svg���������������0000664�0000000�0000000�00000001167�14753064456�0031035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 32c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96c0-35.3 28.7-64 64-64zM160 160c-6.5 0-12.3 3.9-14.8 9.9s-1.1 12.9 3.5 17.4l40 40-71 71c-3.7 3.7-5.7 8.6-5.7 13.7s2 10 5.7 13.7l36.7 36.7c3.6 3.6 8.5 5.7 13.7 5.7s10-2 13.7-5.7l71-71 40 40c4.6 4.6 11.5 5.9 17.4 3.5s9.9-8.3 9.9-14.8v-144c0-8.8-7.2-16-16-16h-144z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/square-virus.svg������������������0000664�0000000�0000000�00000001766�14753064456�0030453�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm159.8 61.7c13.3 0 24 10.7 24 24 0 29.3 35.4 43.9 56.1 23.2 9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9c-20.7 20.7-6 56.1 23.2 56.1 13.3 0 24 10.7 24 24s-10.7 24-24 24c-29.3 0-43.9 35.4-23.2 56.1 9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0c-20.7-20.7-56.1-6-56.1 23.2 0 13.3-10.7 24-24 24s-24-10.7-24-24c0-29.3-35.4-43.9-56.1-23.2-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9c20.7-20.7 6-56.1-23.2-56.1-13.3 0-24-10.7-24-24s10.7-24 24-24c29.3 0 43.9-35.4 23.2-56.1-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0c20.7 20.7 56.1 6 56.1-23.2 0-13.3 10.7-24 24-24M192 256a32 32 0 1 0 0-64 32 32 0 1 0 0 64m88 32a24 24 0 1 0-48 0 24 24 0 1 0 48 0"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/square-xmark.svg������������������0000664�0000000�0000000�00000001154�14753064456�0030414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm79 143c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/square.svg������������������������0000664�0000000�0000000�00000000610�14753064456�0027270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96c0-35.3 28.7-64 64-64h320c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64z"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/staff-snake.svg�������������������0000664�0000000�0000000�00000001536�14753064456�0030202�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m222.6 43.2-.1 4.8H288c53 0 96 43 96 96s-43 96-96 96h-40v-80h40c8.8 0 16-7.2 16-16s-7.2-16-16-16h-68l-4.5 144H256c53 0 96 43 96 96s-43 96-96 96h-16v-80h16c8.8 0 16-7.2 16-16s-7.2-16-16-16h-43l-3.1 99.5-1.4 43.5v1c-.3 8.9-7.6 16-16.5 16s-16.2-7.1-16.5-16v-1l-1-31H136c-22.1 0-40-17.9-40-40s17.9-40 40-40h36l-1-32h-19c-53 0-96-43-96-96 0-47.6 34.6-87.1 80-94.7V256c0 8.8 7.2 16 16 16h16.5L164 128h-41.4c-9 18.9-28.3 32-50.6 32H56c-30.9 0-56-25.1-56-56s25.1-56 56-56h105.5l-.1-4.8L161 32v-1.9c.5-16.6 14.1-30 31-30s30.5 13.4 31 30V32zM64 112a16 16 0 1 0 0-32 16 16 0 1 0 0 32"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/stairs.svg������������������������0000664�0000000�0000000�00000001035�14753064456�0027277�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32s-14.3 32-32 32h-96v96c0 17.7-14.3 32-32 32h-96v96c0 17.7-14.3 32-32 32h-96v96c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h96v-96c0-17.7 14.3-32 32-32h96v-96c0-17.7 14.3-32 32-32h96z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/stamp.svg�������������������������0000664�0000000�0000000�00000001242�14753064456�0027116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M312 201.8c0-17.4 9.2-33.2 19.9-47C344.5 138.5 352 118.1 352 96c0-53-43-96-96-96s-96 43-96 96c0 22.1 7.5 42.5 20.1 58.8 10.7 13.8 19.9 29.6 19.9 47 0 29.9-24.3 54.2-54.2 54.2H112C50.1 256 0 306.1 0 368c0 20.9 13.4 38.7 32 45.3V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-50.7c18.6-6.6 32-24.4 32-45.3 0-61.9-50.1-112-112-112h-33.8c-29.9 0-54.2-24.3-54.2-54.2M416 416v32H96v-32z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/stapler.svg�����������������������0000664�0000000�0000000�00000001122�14753064456�0027441�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M640 299.3V432c0 26.5-21.5 48-48 48H64c-17.7 0-32-14.3-32-32s14.3-32 32-32h384v-48H96c-17.7 0-32-14.3-32-32V219.4L33.8 214C14.2 210.5 0 193.5 0 173.7c0-8.9 2.9-17.5 8.2-24.6l35.6-47.5C76.7 57.8 128.2 32 182.9 32c27 0 53.6 6.3 77.8 18.4l326.2 163.1c32.6 16.2 53.1 49.5 53.1 85.8M448 304v-16l-320-57.1V304z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/star-and-crescent.svg�������������0000664�0000000�0000000�00000001620�14753064456�0031307�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 256C0 114.6 114.6 0 256 0c33 0 64.6 6.3 93.6 17.7 7.4 2.9 11.5 10.7 9.8 18.4s-8.8 13-16.7 12.4c-4.8-.3-9.7-.5-14.6-.5-114.9 0-208 93.1-208 208s93.1 208 208 208c4.9 0 9.8-.2 14.6-.5 7.9-.5 15 4.7 16.7 12.4s-2.4 15.5-9.8 18.4C320.6 505.7 289 512 256 512 114.6 512 0 397.4 0 256m375.4-118.6c3.5-7.1 13.7-7.1 17.2 0l31.5 63.8c1.4 2.8 4.1 4.8 7.2 5.3l70.4 10.2c7.9 1.1 11 10.8 5.3 16.4l-50.9 49.6c-2.3 2.2-3.3 5.4-2.8 8.5l12 70.1c1.3 7.8-6.9 13.8-13.9 10.1l-63-33.1c-2.8-1.5-6.1-1.5-8.9 0l-63 33.1c-7 3.7-15.3-2.3-13.9-10.1l12-70.1c.5-3.1-.5-6.3-2.8-8.5L261 233.1c-5.7-5.6-2.6-15.2 5.3-16.4l70.4-10.2c3.1-.5 5.8-2.4 7.2-5.3z"/></svg>����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/star-half-stroke.svg��������������0000664�0000000�0000000�00000001332�14753064456�0031160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m288 376.4.1-.1 26.4 14.1 85.2 45.5-16.5-97.6-4.8-28.7 20.7-20.5 70.1-69.3-96.1-14.2-29.3-4.3-12.9-26.6-42.8-87.8-.1.3zm175.1 98.3c2 12-3 24.2-12.9 31.3s-23 8-33.8 2.3l-128.3-68.5-128.3 68.5c-10.8 5.7-23.9 4.8-33.8-2.3s-14.9-19.3-12.9-31.3L137.8 329 33.6 225.9c-8.6-8.5-11.7-21.2-7.9-32.7s13.7-19.9 25.7-21.7L195 150.3 259.4 18c5.4-11 16.5-18 28.8-18s23.4 7 28.8 18l64.3 132.3 143.6 21.2c12 1.8 22 10.2 25.7 21.7s.7 24.2-7.9 32.7L438.5 329z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/star-half.svg���������������������0000664�0000000�0000000�00000000743�14753064456�0027660�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 0c-12.2.1-23.3 7-28.6 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329l-24.6 145.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3L288 439.8zm141.9 512c1.1.1 2.1.1 3.2 0z"/></svg>�����������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/star-of-david.svg�����������������0000664�0000000�0000000�00000001606�14753064456�0030436�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M404.2 309.5 383.1 344h42.3l-21.1-34.5zM371.4 256l-54-88H194.6l-54 88 54 88h122.8zm65.7 0 53.4 87c3.6 5.9 5.5 12.7 5.5 19.6 0 20.7-16.8 37.4-37.4 37.4H348.8l-56.2 91.5c-7.8 12.8-21.7 20.5-36.6 20.5s-28.8-7.7-36.6-20.5L163.3 400H53.4C32.8 400 16 383.2 16 362.6c0-6.9 1.9-13.7 5.5-19.6l53.4-87-53.4-87c-3.6-5.9-5.5-12.7-5.5-19.6 0-20.6 16.8-37.4 37.4-37.4h109.8l56.2-91.5C227.2 7.7 241.1 0 256 0s28.8 7.7 36.6 20.5l56.1 91.5h109.8c20.7 0 37.4 16.8 37.4 37.4 0 6.9-1.9 13.7-5.5 19.6L437 256zm-54-88 21.1 34.5 21.2-34.5zM283 112l-27-44-27 44zm-154.1 56H86.6l21.1 34.5zm-21.1 141.5L86.6 344h42.3zM229 400l27 44 27-44z"/></svg>��������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/star-of-life.svg������������������0000664�0000000�0000000�00000001347�14753064456�0030270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M208 32c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32v140.9l122-70.4c15.3-8.8 34.9-3.6 43.7 11.7l16 27.7c8.8 15.3 3.6 34.9-11.7 43.7L352 256l122 70.4c15.3 8.8 20.6 28.4 11.7 43.7l-16 27.7c-8.8 15.3-28.4 20.6-43.7 11.7l-122-70.4V480c0 17.7-14.3 32-32 32h-32c-17.7 0-32-14.3-32-32V339.1L86 409.6c-15.3 8.8-34.9 3.6-43.7-11.7l-16-27.7c-8.8-15.3-3.6-34.9 11.7-43.7L160 256 38 185.6c-15.3-8.8-20.5-28.4-11.7-43.7l16-27.7c8.8-15.4 28.4-20.6 43.7-11.8l122 70.4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/star.svg��������������������������0000664�0000000�0000000�00000001147�14753064456�0026747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M316.9 18c-5.3-11-16.5-18-28.8-18s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329l-24.6 145.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329l104.2-103.1c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7l-143.7-21.2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/sterling-sign.svg�����������������0000664�0000000�0000000�00000001334�14753064456�0030561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M112 160.4c0-35.5 28.8-64.4 64.4-64.4 6.9 0 13.8 1.1 20.4 3.3l81.2 27.1c16.8 5.6 34.9-3.5 40.5-20.2s-3.5-34.9-20.2-40.5L217 38.6c-13.1-4.4-26.8-6.6-40.6-6.6C105.5 32 48 89.5 48 160.4V224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h16v44.5c0 17.4-4.7 34.5-13.7 49.4L4.6 431.5c-5.9 9.9-6.1 22.2-.4 32.2S20.5 480 32 480h256c17.7 0 32-14.3 32-32s-14.3-32-32-32H88.5l.7-1.1c14.9-24.9 22.8-53.4 22.8-82.4V288h112c17.7 0 32-14.3 32-32s-14.3-32-32-32H112z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/stethoscope.svg�������������������0000664�0000000�0000000�00000001514�14753064456�0030334�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M142.4 21.9c5.6 16.8-3.5 34.9-20.2 40.5L96 71.1V192c0 53 43 96 96 96s96-43 96-96V71.1l-26.1-8.7c-16.8-5.6-25.8-23.7-20.2-40.5s23.7-25.8 40.5-20.2l26.1 8.7c26.1 8.7 43.7 33.1 43.7 60.7V192c0 77.2-54.6 141.6-127.3 156.7C231 404.6 278.4 448 336 448c61.9 0 112-50.1 112-112v-70.7c-28.3-12.3-48-40.5-48-73.3 0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V336c0 97.2-78.8 176-176 176-92.9 0-168.9-71.9-175.5-163.1C87.2 334.2 32 269.6 32 192V71.1c0-27.5 17.6-52 43.8-60.7l26.1-8.7c16.8-5.6 34.9 3.5 40.5 20.2M480 224a32 32 0 1 0 0-64 32 32 0 1 0 0 64"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/stop.svg��������������������������0000664�0000000�0000000�00000000611�14753064456�0026756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 128c0-35.3 28.7-64 64-64h256c35.3 0 64 28.7 64 64v256c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64z"/></svg>�����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/stopwatch-20.svg������������������0000664�0000000�0000000�00000002126�14753064456�0030227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M176 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h16v34.4C92.3 113.8 16 200 16 304c0 114.9 93.1 208 208 208s208-93.1 208-208c0-41.8-12.3-80.7-33.5-113.2l24.1-24.1c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L355.7 143c-28.1-23-62.2-38.8-99.7-44.6V64h16c17.7 0 32-14.3 32-32S289.7 0 272 0zm112 204c28.7 0 52 23.3 52 52v96c0 28.7-23.3 52-52 52s-52-23.3-52-52v-96c0-28.7 23.3-52 52-52m-12 52v96c0 6.6 5.4 12 12 12s12-5.4 12-12v-96c0-6.6-5.4-12-12-12s-12 5.4-12 12m-116.5-12c-5.4 0-10.2 3.5-11.9 8.6l-.6 1.7c-3.5 10.5-14.8 16.1-25.3 12.6s-16.1-14.8-12.6-25.3l.6-1.7c7.2-21.5 27.2-35.9 49.8-35.9 29 0 52.5 23.5 52.5 52.5v2.2c0 13.4-4.9 26.4-13.8 36.4l-39 43.9c-6.2 7-10 15.7-10.9 24.9h43.8c11 0 20 9 20 20s-9 20-20 20h-64c-11 0-20-9-20-20v-15.7c0-20.6 7.5-40.4 21.2-55.8l39-43.9c2.4-2.7 3.7-6.2 3.7-9.8v-2.2c0-6.9-5.6-12.5-12.5-12.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/stopwatch.svg���������������������0000664�0000000�0000000�00000001224�14753064456�0030006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M176 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h16v34.4C92.3 113.8 16 200 16 304c0 114.9 93.1 208 208 208s208-93.1 208-208c0-41.8-12.3-80.7-33.5-113.2l24.1-24.1c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L355.7 143c-28.1-23-62.2-38.8-99.7-44.6V64h16c17.7 0 32-14.3 32-32S289.7 0 272 0h-96m72 192v128c0 13.3-10.7 24-24 24s-24-10.7-24-24V192c0-13.3 10.7-24 24-24s24 10.7 24 24"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/store-slash.svg�������������������0000664�0000000�0000000�00000001714�14753064456�0030242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2s-6.3 25.5 4.1 33.7l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-86.8-68V252.6c-4 1-8 1.8-12.3 2.3h-.1c-5.3.7-10.7 1.1-16.2 1.1-12.4 0-24.3-1.9-35.4-5.3V351L301.2 210.7c7-4.4 13.3-9.7 18.8-15.7 15.9 17.6 39.1 29 65.2 29 26.2 0 49.3-11.4 65.2-29 16 17.6 39.1 29 65.2 29 4.1 0 8.1-.3 12.1-.8 55.5-7.4 81.8-72.5 52.1-119.4l-57.5-90.7C517.2 5 508.1 0 498.4 0H141.6c-9.7 0-18.8 5-23.9 13.1L95 49.1zm73.4 218.1c4 .5 8.1.8 12.1.8 11 0 21.4-2 31-5.6L48.9 134.5c-6.1 40.6 19.5 82.8 63.3 88.7M160 384V250.6c-11.2 3.5-23.2 5.4-35.6 5.4-5.5 0-11-.4-16.3-1.1h-.1c-4.1-.6-8.1-1.3-12-2.3V448c0 35.3 28.7 64 64 64h320c12.9 0 24.8-3.8 34.9-10.3L365.5 384z"/></svg>����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/store.svg�������������������������0000664�0000000�0000000�00000001526�14753064456�0027133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m547.6 103.8-57.3-90.7C485.2 5 476.1 0 466.4 0H109.6c-9.7 0-18.8 5-23.9 13.1l-57.4 90.7c-29.6 46.8-3.4 111.9 51.9 119.4 4 .5 8.1.8 12.1.8 26.1 0 49.3-11.4 65.2-29 15.9 17.6 39.1 29 65.2 29s49.3-11.4 65.2-29c15.9 17.6 39.1 29 65.2 29 26.2 0 49.3-11.4 65.2-29 16 17.6 39.1 29 65.2 29 4.1 0 8.1-.3 12.1-.8 55.5-7.4 81.8-72.5 52.1-119.4zm-47.9 151.1h-.1c-5.3.7-10.7 1.1-16.2 1.1-12.4 0-24.3-1.9-35.4-5.3V384H128V250.6c-11.2 3.5-23.2 5.4-35.6 5.4-5.5 0-11-.4-16.3-1.1H76c-4.1-.6-8.1-1.3-12-2.3V448c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V252.6c-4 1-8 1.8-12.3 2.3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/street-view.svg�������������������0000664�0000000�0000000�00000002250�14753064456�0030250�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 64a64 64 0 1 0-128 0 64 64 0 1 0 128 0m-96 96c-35.3 0-64 28.7-64 64v48c0 17.7 14.3 32 32 32h1.8l11.1 99.5c1.8 16.2 15.5 28.5 31.8 28.5h38.7c16.3 0 30-12.3 31.8-28.5l11-99.5h1.8c17.7 0 32-14.3 32-32v-48c0-35.3-28.7-64-64-64zm-91.7 234.2c13-2.4 21.7-14.9 19.3-27.9s-14.9-21.7-27.9-19.3c-32.4 5.9-60.9 14.2-82 24.8-10.5 5.3-20.3 11.7-27.8 19.6C6.4 399.5 0 410.5 0 424c0 21.4 15.5 36.1 29.1 45 14.7 9.6 34.3 17.3 56.4 23.4C130.2 504.7 190.4 512 256 512s125.8-7.3 170.4-19.6c22.1-6.1 41.8-13.8 56.4-23.4 13.7-8.9 29.1-23.6 29.1-45 0-13.5-6.4-24.5-14-32.6-7.5-7.9-17.3-14.3-27.8-19.6-21-10.6-49.5-18.9-82-24.8-13-2.4-25.5 6.3-27.9 19.3s6.3 25.5 19.3 27.9c30.2 5.5 53.7 12.8 69 20.5 3.2 1.6 5.8 3.1 7.9 4.5 3.6 2.4 3.6 7.2 0 9.6-8.8 5.7-23.1 11.8-43 17.3C374.3 457 318.5 464 256 464s-118.3-7-157.7-17.9c-19.9-5.5-34.2-11.6-43-17.3-3.6-2.4-3.6-7.2 0-9.6 2.1-1.4 4.8-2.9 7.9-4.5 15.3-7.7 38.8-14.9 69-20.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/strikethrough.svg�����������������0000664�0000000�0000000�00000002147�14753064456�0030701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M161.3 144c3.2-17.2 14-30.1 33.7-38.6 21.1-9 51.8-12.3 88.6-6.5 11.9 1.9 48.8 9.1 60.1 12 17.1 4.5 34.6-5.6 39.2-22.7s-5.6-34.6-22.7-39.2c-14.3-3.8-53.6-11.4-66.6-13.4-44.7-7-88.3-4.2-123.7 10.9-36.5 15.6-64.4 44.8-71.8 87.3-.1.6-.2 1.1-.2 1.7-2.8 23.9.5 45.6 10.1 64.6 4.5 9 10.2 16.9 16.7 23.9H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h448c17.7 0 32-14.3 32-32s-14.3-32-32-32H270.1l-.4-.1-1.1-.3c-36-10.8-65.2-19.6-85.2-33.1-9.3-6.3-15-12.6-18.2-19.1-3.1-6.1-5.2-14.6-3.8-27.4zm187.6 193.2c2.7 6.5 4.4 15.8 1.9 30.1-3 17.6-13.8 30.8-33.9 39.4-21.1 9-51.7 12.3-88.5 6.5-18-2.9-49.1-13.5-74.4-22.1-5.6-1.9-11-3.7-15.9-5.4-16.8-5.6-34.9 3.5-40.5 20.3s3.5 34.9 20.3 40.5c3.6 1.2 7.9 2.7 12.7 4.3 24.9 8.5 63.6 21.7 87.6 25.6h.2c44.7 7 88.3 4.2 123.7-10.9 36.5-15.6 64.4-44.8 71.8-87.3 3.6-21 2.7-40.4-3.1-58.1h-75.7c7 5.6 11.4 11.2 13.9 17.2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/stroopwafel.svg�������������������0000664�0000000�0000000�00000002510�14753064456�0030336�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0M312.6 63.7c-6.2-6.2-16.4-6.2-22.6 0l-34 33.9-33.9-33.9c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l33.9 33.9-45.3 45.3-56.6-56.6c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l56.6 56.6-45.3 45.3-33.9-34c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l33.9 34-33.9 33.9c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l33.9-33.9 45.3 45.3-56.6 56.6c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l56.6-56.6 45.3 45.3-33.9 33.9c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l33.9-33.9 33.9 33.9c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-33.9-33.9 45.3-45.3 56.6 56.6c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-56.6-56.6 45.3-45.3 33.9 33.9c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L414.4 256l33.9-33.9c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0l-33.9 33.9-45.3-45.3 56.6-56.6c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0l-56.6 56.6-45.3-45.3 33.9-33.9c6.2-6.2 6.2-16.4 0-22.6zM142.9 256l45.3-45.3 45.2 45.3-45.3 45.3zm67.9 67.9 45.2-45.3 45.3 45.3-45.3 45.2-45.3-45.3zm67.8-67.9 45.3-45.3 45.2 45.3-45.3 45.3zm22.6-67.9L256 233.4l-45.3-45.3 45.3-45.2 45.3 45.3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/subscript.svg���������������������0000664�0000000�0000000�00000001515�14753064456�0030013�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 64C14.3 64 0 78.3 0 96s14.3 32 32 32h15.3l89.6 128-89.6 128H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h32c10.4 0 20.2-5.1 26.2-13.6L176 311.8l85.8 122.6c6 8.6 15.8 13.6 26.2 13.6h32c17.7 0 32-14.3 32-32s-14.3-32-32-32h-15.3l-89.6-128 89.6-128H320c17.7 0 32-14.3 32-32s-14.3-32-32-32h-32c-10.4 0-20.2 5.1-26.2 13.6L176 200.2 90.2 77.6C84.2 69.1 74.4 64 64 64zm448 256c0-11.1-5.7-21.4-15.2-27.2s-21.2-6.4-31.1-1.4l-32 16c-15.8 7.9-22.2 27.1-14.3 42.9C393 361.5 404.3 368 416 368v80c-17.7 0-32 14.3-32 32s14.3 32 32 32h64c17.7 0 32-14.3 32-32s-14.3-32-32-32z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/suitcase-medical.svg��������������0000664�0000000�0000000�00000001332�14753064456�0031206�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M184 48h144c4.4 0 8 3.6 8 8v40H176V56c0-4.4 3.6-8 8-8m-56 8v424h256V56c0-30.9-25.1-56-56-56H184c-30.9 0-56 25.1-56 56M96 96H64c-35.3 0-64 28.7-64 64v256c0 35.3 28.7 64 64 64h32zm320 384h32c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64h-32zM224 208c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-48v48c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-48h-48c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16h48z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/suitcase-rolling.svg��������������0000664�0000000�0000000�00000001340�14753064456�0031255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M144 56c0-4.4 3.6-8 8-8h80c4.4 0 8 3.6 8 8v72h-96zm176 72h-32V56c0-30.9-25.1-56-56-56h-80c-30.9 0-56 25.1-56 56v72H64c-35.3 0-64 28.7-64 64v224c0 35.3 28.7 64 64 64 0 17.7 14.3 32 32 32s32-14.3 32-32h128c0 17.7 14.3 32 32 32s32-14.3 32-32c35.3 0 64-28.7 64-64V192c0-35.3-28.7-64-64-64m-208 96h160c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16m0 128h160c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/suitcase.svg����������������������0000664�0000000�0000000�00000001032�14753064456�0027607�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M176 56v40h160V56c0-4.4-3.6-8-8-8H184c-4.4 0-8 3.6-8 8m-48 40V56c0-30.9 25.1-56 56-56h144c30.9 0 56 25.1 56 56v424H128V96m-64 0h32v384H64c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64m384 384h-32V96h32c35.3 0 64 28.7 64 64v256c0 35.3-28.7 64-64 64"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/sun-plant-wilt.svg����������������0000664�0000000�0000000�00000002543�14753064456�0030675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 0c-6.3 0-12 3.7-14.6 9.5l-24.8 55.4-56.7-21.7c-5.9-2.3-12.6-.8-17 3.6s-5.9 11.1-3.6 17L65 120.5 9.5 145.4C3.7 148 0 153.7 0 160s3.7 12 9.5 14.6l55.4 24.8-21.7 56.7c-2.3 5.9-.8 12.6 3.6 17s11.1 5.9 17 3.6l56.7-21.7 24.8 55.4c2.6 5.8 8.3 9.5 14.6 9.5s12-3.7 14.6-9.5l24.8-55.4 56.7 21.7c5.9 2.3 12.6.8 17-3.6s5.9-11.1 3.6-17l-21.7-56.7 55.4-24.8c5.8-2.6 9.5-8.3 9.5-14.6s-3.7-12-9.5-14.6l-55.4-24.8 21.7-56.7c2.3-5.9.8-12.6-3.6-17s-11.1-5.9-17-3.6l-56.6 21.6-24.8-55.4C172 3.7 166.3 0 160 0m0 96a64 64 0 1 1 0 128 64 64 0 1 1 0-128m32 64a32 32 0 1 0-64 0 32 32 0 1 0 64 0m312 16c0-17.7 14.3-32 32-32s32 14.3 32 32v53.4c-14.8 7.7-24 23.1-24 44.6 0 16.8 16 44 37.4 67.2 5.8 6.2 15.5 6.2 21.2 0C624 318 640 290.7 640 274c0-21.5-9.2-37-24-44.6V176c0-44.2-35.8-80-80-80s-80 35.8-80 80v22.7c-9.8-4.3-20.6-6.7-32-6.7-44.2 0-80 35.8-80 80v21.4c-14.8 7.7-24 23.1-24 44.6 0 16.8 16 44 37.4 67.2 5.8 6.2 15.5 6.2 21.2 0C400 382 416 354.7 416 338c0-21.5-9.2-37-24-44.6V272c0-17.7 14.3-32 32-32s32 14.3 32 32v176H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h576c17.7 0 32-14.3 32-32s-14.3-32-32-32H504V176"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/sun.svg���������������������������0000664�0000000�0000000�00000001600�14753064456�0026575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M361.5 1.2c5 2.1 8.6 6.6 9.6 11.9L391 121l107.9 19.8c5.3 1 9.8 4.6 11.9 9.6s1.5 10.7-1.6 15.2L446.9 256l62.3 90.3c3.1 4.5 3.7 10.2 1.6 15.2s-6.6 8.6-11.9 9.6L391 391l-19.9 107.9c-1 5.3-4.6 9.8-9.6 11.9s-10.7 1.5-15.2-1.6L256 446.9l-90.3 62.3c-4.5 3.1-10.2 3.7-15.2 1.6s-8.6-6.6-9.6-11.9L121 391 13.1 371.1c-5.3-1-9.8-4.6-11.9-9.6s-1.5-10.7 1.6-15.2L65.1 256 2.8 165.7c-3.1-4.5-3.7-10.2-1.6-15.2s6.6-8.6 11.9-9.6L121 121l19.9-107.9c1-5.3 4.6-9.8 9.6-11.9s10.7-1.5 15.2 1.6L256 65.1l90.3-62.3c4.5-3.1 10.2-3.7 15.2-1.6M160 256a96 96 0 1 1 192 0 96 96 0 1 1-192 0m224 0a128 128 0 1 0-256 0 128 128 0 1 0 256 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/superscript.svg�������������������0000664�0000000�0000000�00000001511�14753064456�0030354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M480 32c0-11.1-5.7-21.4-15.2-27.2s-21.2-6.4-31.1-1.4l-32 16c-15.8 7.9-22.2 27.1-14.3 42.9C393 73.5 404.3 80 416 80v80c-17.7 0-32 14.3-32 32s14.3 32 32 32h64c17.7 0 32-14.3 32-32s-14.3-32-32-32zM32 64C14.3 64 0 78.3 0 96s14.3 32 32 32h15.3l89.6 128-89.6 128H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h32c10.4 0 20.2-5.1 26.2-13.6L176 311.8l85.8 122.6c6 8.6 15.8 13.6 26.2 13.6h32c17.7 0 32-14.3 32-32s-14.3-32-32-32h-15.3l-89.6-128 89.6-128H320c17.7 0 32-14.3 32-32s-14.3-32-32-32h-32c-10.4 0-20.2 5.1-26.2 13.6L176 200.2 90.2 77.6C84.2 69.1 74.4 64 64 64z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/swatchbook.svg��������������������0000664�0000000�0000000�00000001164�14753064456�0030141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 32C0 14.3 14.3 0 32 0h128c17.7 0 32 14.3 32 32v384c0 53-43 96-96 96S0 469 0 416zm223.6 393.9c.3-3.3.4-6.6.4-9.9V154l75.4-75.4c12.5-12.5 32.8-12.5 45.3 0l90.5 90.5c12.5 12.5 12.5 32.8 0 45.3zM182.8 512l192-192H480c17.7 0 32 14.3 32 32v128c0 17.7-14.3 32-32 32zM128 64H64v64h64zM64 192v64h64v-64zm32 248a24 24 0 1 0 0-48 24 24 0 1 0 0 48"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/synagogue.svg���������������������0000664�0000000�0000000�00000001673�14753064456�0030003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M309.8 3.7c5.9-4.9 14.6-4.9 20.5 0l121 100.8c18.2 15.2 28.7 37.7 28.7 61.5v346H352v-96c0-17.7-14.3-32-32-32s-32 14.3-32 32v96H160V166c0-23.7 10.5-46.3 28.8-61.5zM512 512V244.5l28.1-31.2c3-3.4 7.4-5.3 11.9-5.3s8.9 1.9 11.9 5.3l63.8 70.9c7.9 8.8 12.3 20.3 12.3 32.1V448c0 35.3-28.7 64-64 64zM128 244.5V512H64c-35.3 0-64-28.7-64-64V316.3c0-11.9 4.4-23.3 12.3-32.1l63.8-70.9c3-3.4 7.4-5.3 11.9-5.3s8.9 1.9 11.9 5.3zm199-120.2c-3.1-5.4-10.9-5.4-13.9 0l-15.9 28.1-32.3-.3c-6.2-.1-10.1 6.7-7 12.1l16.4 27.8-16.4 27.8c-3.2 5.4.7 12.1 7 12.1l32.3-.3 15.8 28.1c3.1 5.4 10.9 5.4 13.9 0l15.9-28.1 32.3.3c6.2.1 10.1-6.7 7-12.1L365.7 192l16.4-27.8c3.2-5.4-.7-12.1-7-12.1l-32.3.3z"/></svg>���������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/syringe.svg�����������������������0000664�0000000�0000000�00000001520�14753064456�0027451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m441 7 32 32 32 32c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-15-15-38.2 38.1 55 55c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-72-72L295 73c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l55 55L422.1 56 407 41c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0zM210.3 155.7l61.1-61.1c.3.3.6.7 1 1l16 16 56 56 56 56 16 16 1 1-191 191a55.92 55.92 0 0 1-39.6 16.4H98l-57 57c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l57-57v-88.8c0-14.9 5.9-29.1 16.4-39.6l43.3-43.3 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57 41.4-41.4 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/t.svg�����������������������������0000664�0000000�0000000�00000000643�14753064456�0026241�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 32C14.3 32 0 46.3 0 64s14.3 32 32 32h128v352c0 17.7 14.3 32 32 32s32-14.3 32-32V96h128c17.7 0 32-14.3 32-32s-14.3-32-32-32H32"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/table-cells-column-lock.svg�������0000664�0000000�0000000�00000001331�14753064456�0032401�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96c0-35.3 28.7-64 64-64h384c35.3 0 64 28.7 64 64v65.1c-37.8 5.4-69.4 29.6-85.2 62.9H360v64h56v8.6c-19.1 11.1-32 31.7-32 55.4h-24v64h24v64H64c-35.3 0-64-28.7-64-64zm208 0v64h88V96zm240 0h-88v64h88zM208 224v64h88v-64zm0 128v64h88v-64zm320-112c-17.7 0-32 14.3-32 32v48h64v-48c0-17.7-14.3-32-32-32m-80 32c0-44.2 35.8-80 80-80s80 35.8 80 80v48c17.7 0 32 14.3 32 32v128c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/table-cells-large.svg�������������0000664�0000000�0000000�00000000723�14753064456�0031254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 96v128H288V96zm0 192v128H288V288zm-224-64H64V96h160zM64 288h160v128H64zm0-256C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64z"/></svg>���������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/table-cells-row-lock.svg����������0000664�0000000�0000000�00000001331�14753064456�0031713�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96c0-35.3 28.7-64 64-64h384c35.3 0 64 28.7 64 64v65.1c-37.8 5.4-69.4 29.6-85.2 62.9H360v64h56v8.6c-19.1 11.1-32 31.7-32 55.4h-24v64h24v64H64c-35.3 0-64-28.7-64-64zm64 128v64h88v-64zm232 0h-88v64h88zM152 352H64v64h88zm56 0v64h88v-64zm320-112c-17.7 0-32 14.3-32 32v48h64v-48c0-17.7-14.3-32-32-32m-80 32c0-44.2 35.8-80 80-80s80 35.8 80 80v48c17.7 0 32 14.3 32 32v128c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/table-cells-row-unlock.svg��������0000664�0000000�0000000�00000001313�14753064456�0032256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96c0-35.3 28.7-64 64-64h384c35.3 0 64 28.7 64 64v65.1c-37.8 5.4-69.4 29.6-85.2 62.9H360v64h56v8.6c-19.1 11.1-32 31.7-32 55.4h-24v64h24v64H64c-35.3 0-64-28.7-64-64zm64 128v64h88v-64zm232 0h-88v64h88zM152 352H64v64h88zm56 0v64h88v-64zm288-80v48h112c17.7 0 32 14.3 32 32v128c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32v-48c0-44.2 35.8-80 80-80s80 35.8 80 80h-48c0-17.7-14.3-32-32-32s-32 14.3-32 32"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/table-cells.svg�������������������0000664�0000000�0000000�00000001040�14753064456�0030155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm88 64v64H64V96zm56 0h88v64h-88zm240 0v64h-88V96zM64 224h88v64H64zm232 0v64h-88v-64zm64 0h88v64h-88zM152 352v64H64v-64zm56 0h88v64h-88zm240 0v64h-88v-64z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/table-columns.svg�����������������0000664�0000000�0000000�00000000656�14753064456�0030547�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96c0-35.3 28.7-64 64-64h384c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm64 64v256h160V160zm384 0H288v256h160z"/></svg>����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/table-list.svg��������������������0000664�0000000�0000000�00000000761�14753064456�0030037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 96c0-35.3 28.7-64 64-64h384c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm64 0v64h64V96zm384 0H192v64h256zM64 224v64h64v-64zm384 0H192v64h256zM64 352v64h64v-64zm384 0H192v64h256z"/></svg>���������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/table-tennis-paddle-ball.svg������0000664�0000000�0000000�00000001532�14753064456�0032520�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M416 288c-50.1 0-93.6 28.8-114.6 70.8L68.9 126.3l.6-.6 60.1-60.1c87.5-87.5 229.3-87.5 316.8 0 67.1 67.1 82.7 166.3 46.8 248.3C471.8 297.6 445 288 416 288M49.3 151.9l240.8 240.8c-1.4 7.5-2.1 15.3-2.1 23.3 0 23.2 6.2 44.9 16.9 63.7-3 .2-6.1.3-9.2.3H293c-33.9 0-66.5-13.5-90.5-37.5l-9.8-9.8c-13.1-13.1-34.6-12.4-46.8 1.7L88.2 501c-5.8 6.7-14.2 10.7-23 11s-17.5-3.1-23.8-9.4l-32-32c-6.3-6.3-9.7-14.9-9.4-23.7s4.3-17.2 11-23l66.6-57.7c14-12.2 14.8-33.7 1.7-46.8l-9.8-9.8C45.5 285.5 32 252.9 32 219v-2.7c0-22.8 6.1-44.9 17.3-64.3zM416 320a96 96 0 1 1 0 192 96 96 0 1 1 0-192"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/table.svg�������������������������0000664�0000000�0000000�00000000722�14753064456�0027063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 256v-96h160v96zm0 64h160v96H64zm224 96v-96h160v96zm160-160H288v-96h160zM64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64z"/></svg>����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/tablet-button.svg�����������������0000664�0000000�0000000�00000000657�14753064456�0030567�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm160 400a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>���������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/tablet-screen-button.svg����������0000664�0000000�0000000�00000000703�14753064456�0032034�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64C0 28.7 28.7 0 64 0h320c35.3 0 64 28.7 64 64v384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm256 384a32 32 0 1 0-64 0 32 32 0 1 0 64 0M384 64H64v320h320z"/></svg>�������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/tablet.svg������������������������0000664�0000000�0000000�00000000726�14753064456�0027253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v384c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm112 432h96c8.8 0 16 7.2 16 16s-7.2 16-16 16h-96c-8.8 0-16-7.2-16-16s7.2-16 16-16"/></svg>������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/tablets.svg�����������������������0000664�0000000�0000000�00000001451�14753064456�0027432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M614.3 247c-5.2 7.9-16.2 8.5-22.9 1.8L391.2 48.6c-6.7-6.7-6.2-17.8 1.8-22.9C418.1 9.4 447.9 0 480 0c88.4 0 160 71.6 160 160 0 32.1-9.4 61.9-25.7 87M567 294.3c-25 16.3-54.9 25.7-87 25.7-88.4 0-160-71.6-160-160 0-32.1 9.4-61.9 25.7-87 5.2-7.9 16.2-8.5 22.9-1.8l200.2 200.2c6.7 6.7 6.2 17.8-1.8 22.9M301.5 368c9.5 0 16.9 8.2 15 17.5C301.1 457.8 236.9 512 160 512S18.9 457.8 3.5 385.5c-2-9.3 5.5-17.5 15-17.5h283.1zm0-32h-283c-9.5 0-16.9-8.2-15-17.5C18.9 246.2 83.1 192 160 192s141.1 54.2 156.5 126.5c2 9.3-5.5 17.5-15 17.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/tachograph-digital.svg������������0000664�0000000�0000000�00000001547�14753064456�0031535�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 64C28.7 64 0 92.7 0 128v256c0 35.3 28.7 64 64 64h512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64zm32 64h224c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32v-64c0-17.7 14.3-32 32-32M64 368c0-8.8 7.2-16 16-16h256c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16m320 0c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16s-7.2 16-16 16H400c-8.8 0-16-7.2-16-16M80 288a16 16 0 1 1 0 32 16 16 0 1 1 0-32m48 16a16 16 0 1 1 32 0 16 16 0 1 1-32 0m80-16a16 16 0 1 1 0 32 16 16 0 1 1 0-32m48 16a16 16 0 1 1 32 0 16 16 0 1 1-32 0m80-16a16 16 0 1 1 0 32 16 16 0 1 1 0-32"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/tag.svg���������������������������0000664�0000000�0000000�00000000752�14753064456�0026552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 80v149.5c0 17 6.7 33.3 18.7 45.3l176 176c25 25 65.5 25 90.5 0l133.5-133.5c25-25 25-65.5 0-90.5l-176-176c-12-12-28.3-18.7-45.3-18.7L48 32C21.5 32 0 53.5 0 80m112 32a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>����������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/tags.svg��������������������������0000664�0000000�0000000�00000001257�14753064456�0026736�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m345 39.1 127.8 129.3c52.4 53 52.4 138.2 0 191.2l-112 113.3c-9.3 9.4-24.5 9.5-33.9.2s-9.5-24.5-.2-33.9l111.9-113.3c33.9-34.3 33.9-89.4 0-123.7L310.9 72.9c-9.3-9.4-9.2-24.6.2-33.9s24.6-9.2 33.9.2zM0 229.5V80c0-26.5 21.5-48 48-48h149.5c17 0 33.3 6.7 45.3 18.7l168 168c25 25 25 65.5 0 90.5L277.3 442.7c-25 25-65.5 25-90.5 0l-168-168C6.7 262.7 0 246.5 0 229.5M144 144a32 32 0 1 0-64 0 32 32 0 1 0 64 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/tape.svg��������������������������0000664�0000000�0000000�00000001002�14753064456�0026715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M380.8 416c41.5-40.7 67.2-97.3 67.2-160 0-123.7-100.3-224-224-224S0 132.3 0 256s100.3 224 224 224h320c17.7 0 32-14.3 32-32s-14.3-32-32-32zM224 160a96 96 0 1 1 0 192 96 96 0 1 1 0-192m64 96a64 64 0 1 0-128 0 64 64 0 1 0 128 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/tarp-droplet.svg������������������0000664�0000000�0000000�00000001200�14753064456�0030401�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 160c-35.3 0-64-26.9-64-60 0-24 33.7-70.1 52.2-93.5 6.1-7.7 17.5-7.7 23.6 0C318.3 29.9 352 76 352 100c0 33.1-28.7 60-64 60M64 128h133.5c13.2 37.3 48.7 64 90.5 64s77.4-26.7 90.5-64H512c35.3 0 64 28.7 64 64v160H448c-17.7 0-32 14.3-32 32v128H64c-35.3 0-64-28.7-64-64V192c0-35.3 28.7-64 64-64m384 384V384h128zM96 256a32 32 0 1 0 0-64 32 32 0 1 0 0 64"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/tarp.svg��������������������������0000664�0000000�0000000�00000000720�14753064456�0026740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M576 128c0-35.3-28.7-64-64-64H64C28.7 64 0 92.7 0 128v256c0 35.3 28.7 64 64 64h352V320c0-17.7 14.3-32 32-32h128zM448 448l128-128H448zM96 128a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/taxi.svg��������������������������0000664�0000000�0000000�00000001402�14753064456�0026735�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 0c-17.7 0-32 14.3-32 32v32.2c-38.6 2.2-72.3 27.3-85.2 64.1L39.6 228.8C16.4 238.4 0 261.3 0 288v192c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32v-48h320v48c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V288c0-26.7-16.4-49.6-39.6-59.2l-35.2-100.5c-12.9-36.8-46.6-62-85.2-64.1V32c0-17.7-14.3-32-32-32zm-26.6 128h181.2c13.6 0 25.7 8.6 30.2 21.4l26.1 74.6H109.1l26.1-74.6c4.5-12.8 16.6-21.4 30.2-21.4M96 288a32 32 0 1 1 0 64 32 32 0 1 1 0-64m288 32a32 32 0 1 1 64 0 32 32 0 1 1-64 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/teeth-open.svg��������������������0000664�0000000�0000000�00000002356�14753064456�0030051�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 32C43 32 0 75 0 128v64c0 35.3 28.7 64 64 64h448c35.3 0 64-28.7 64-64v-64c0-53-43-96-96-96zm128 64c26.5 0 48 21.5 48 48v56c0 13.3-10.7 24-24 24h-48c-13.3 0-24-10.7-24-24v-56c0-26.5 21.5-48 48-48m80 48c0-26.5 21.5-48 48-48s48 21.5 48 48v56c0 13.3-10.7 24-24 24h-48c-13.3 0-24-10.7-24-24zM96 128c26.5 0 48 21.5 48 48v24c0 13.3-10.7 24-24 24H72c-13.3 0-24-10.7-24-24v-24c0-26.5 21.5-48 48-48m336 48c0-26.5 21.5-48 48-48s48 21.5 48 48v24c0 13.3-10.7 24-24 24h-48c-13.3 0-24-10.7-24-24zM96 480h384c53 0 96-43 96-96v-32c0-35.3-28.7-64-64-64H64c-35.3 0-64 28.7-64 64v32c0 53 43 96 96 96m0-64c-26.5 0-48-21.5-48-48v-24c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24v24c0 26.5-21.5 48-48 48m80-48v-24c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24v24c0 26.5-21.5 48-48 48s-48-21.5-48-48m176 48c-26.5 0-48-21.5-48-48v-24c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24v24c0 26.5-21.5 48-48 48m80-48v-24c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24v24c0 26.5-21.5 48-48 48s-48-21.5-48-48"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/teeth.svg�������������������������0000664�0000000�0000000�00000002215�14753064456�0027104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 128c0-53 43-96 96-96h384c53 0 96 43 96 96v256c0 53-43 96-96 96H96c-53 0-96-43-96-96zm176 48v56c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24v-56c0-26.5-21.5-48-48-48s-48 21.5-48 48m176-48c-26.5 0-48 21.5-48 48v56c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24v-56c0-26.5-21.5-48-48-48M48 208v24c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24v-24c0-26.5-21.5-48-48-48s-48 21.5-48 48m48 176c26.5 0 48-21.5 48-48v-24c0-13.3-10.7-24-24-24H72c-13.3 0-24 10.7-24 24v24c0 26.5 21.5 48 48 48m80-48c0 26.5 21.5 48 48 48s48-21.5 48-48v-24c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24zm176 48c26.5 0 48-21.5 48-48v-24c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v24c0 26.5 21.5 48 48 48m80-176v24c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24v-24c0-26.5-21.5-48-48-48s-48 21.5-48 48m48 176c26.5 0 48-21.5 48-48v-24c0-13.3-10.7-24-24-24h-48c-13.3 0-24 10.7-24 24v24c0 26.5 21.5 48 48 48"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/temperature-arrow-down.svg��������0000664�0000000�0000000�00000002047�14753064456�0032430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 112c0-26.5 21.5-48 48-48s48 21.5 48 48v164.5c0 17.3 7.1 31.9 15.3 42.5 10.5 13.6 16.7 30.5 16.7 49 0 44.2-35.8 80-80 80s-80-35.8-80-80c0-18.5 6.2-35.4 16.7-48.9 8.2-10.6 15.3-25.2 15.3-42.5zM176 0C114.1 0 64 50.1 64 112v164.4c0 .1-.1.3-.2.6-.2.6-.8 1.6-1.7 2.8C43.2 304.2 32 334.8 32 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-33.2-11.2-63.8-30.1-88.1-.9-1.2-1.5-2.2-1.7-2.8-.1-.3-.2-.5-.2-.6V112C288 50.1 237.9 0 176 0m0 416c26.5 0 48-21.5 48-48 0-20.9-13.4-38.7-32-45.3V272c0-8.8-7.2-16-16-16s-16 7.2-16 16v50.7c-18.6 6.6-32 24.4-32 45.3 0 26.5 21.5 48 48 48m336-64h-32V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v288h-32c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l64 64c6 6 14.1 9.4 22.6 9.4s16.6-3.4 22.6-9.4l64-64c9.2-9.2 11.9-22.9 6.9-34.9S524.8 352 511.8 352z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/temperature-arrow-up.svg����������0000664�0000000�0000000�00000002034�14753064456�0032101�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 112c0-26.5 21.5-48 48-48s48 21.5 48 48v164.5c0 17.3 7.1 31.9 15.3 42.5 10.5 13.6 16.7 30.5 16.7 49 0 44.2-35.8 80-80 80s-80-35.8-80-80c0-18.5 6.2-35.4 16.7-48.9 8.2-10.6 15.3-25.2 15.3-42.5zM176 0C114.1 0 64 50.1 64 112v164.4c0 .1-.1.3-.2.6-.2.6-.8 1.6-1.7 2.8C43.2 304.2 32 334.8 32 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-33.2-11.2-63.8-30.1-88.1-.9-1.2-1.5-2.2-1.7-2.8-.1-.3-.2-.5-.2-.6V112C288 50.1 237.9 0 176 0m0 416c26.5 0 48-21.5 48-48 0-20.9-13.4-38.7-32-45.3V112c0-8.8-7.2-16-16-16s-16 7.2-16 16v210.7c-18.6 6.6-32 24.4-32 45.3 0 26.5 21.5 48 48 48m304-256h32c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-64-64c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8h32v288c0 17.7 14.3 32 32 32s32-14.3 32-32V160z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/temperature-empty.svg�������������0000664�0000000�0000000�00000001365�14753064456�0031471�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M112 112c0-26.5 21.5-48 48-48s48 21.5 48 48v164.5c0 17.3 7.1 31.9 15.3 42.5 10.5 13.6 16.7 30.5 16.7 49 0 44.2-35.8 80-80 80s-80-35.8-80-80c0-18.5 6.2-35.4 16.7-48.9 8.2-10.6 15.3-25.2 15.3-42.5zM160 0C98.1 0 48 50.2 48 112v164.4c0 .1-.1.3-.2.6-.2.6-.8 1.6-1.7 2.8C27.2 304.2 16 334.8 16 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-33.2-11.2-63.8-30.1-88.1-.9-1.2-1.5-2.2-1.7-2.8-.1-.3-.2-.5-.2-.6V112C272 50.2 221.9 0 160 0m0 416a48 48 0 1 0 0-96 48 48 0 1 0 0 96"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/temperature-full.svg��������������0000664�0000000�0000000�00000001514�14753064456�0031271�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 64c-26.5 0-48 21.5-48 48v164.5c0 17.3-7.1 31.9-15.3 42.5C86.2 332.6 80 349.5 80 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48M48 112C48 50.2 98.1 0 160 0s112 50.1 112 112v164.4c0 .1.1.3.2.6.2.6.8 1.6 1.7 2.8 18.9 24.4 30.1 55 30.1 88.1 0 79.5-64.5 144-144 144S16 447.5 16 368c0-33.2 11.2-63.8 30.1-88.1.9-1.2 1.5-2.2 1.7-2.8.1-.3.2-.5.2-.6zm160 256c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V112c0-8.8 7.2-16 16-16s16 7.2 16 16v210.7c18.6 6.6 32 24.4 32 45.3"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/temperature-half.svg��������������0000664�0000000�0000000�00000001514�14753064456�0031241�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 64c-26.5 0-48 21.5-48 48v164.5c0 17.3-7.1 31.9-15.3 42.5C86.2 332.6 80 349.5 80 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48M48 112C48 50.2 98.1 0 160 0s112 50.1 112 112v164.4c0 .1.1.3.2.6.2.6.8 1.6 1.7 2.8 18.9 24.4 30.1 55 30.1 88.1 0 79.5-64.5 144-144 144S16 447.5 16 368c0-33.2 11.2-63.8 30.1-88.1.9-1.2 1.5-2.2 1.7-2.8.1-.3.2-.5.2-.6zm160 256c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V208c0-8.8 7.2-16 16-16s16 7.2 16 16v114.7c18.6 6.6 32 24.4 32 45.3"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/temperature-high.svg��������������0000664�0000000�0000000�00000001653�14753064456�0031252�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M416 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64m0 128a96 96 0 1 0 0-192 96 96 0 1 0 0 192M96 112c0-26.5 21.5-48 48-48s48 21.5 48 48v164.5c0 17.3 7.1 31.9 15.3 42.5 10.5 13.6 16.7 30.5 16.7 49 0 44.2-35.8 80-80 80s-80-35.8-80-80c0-18.5 6.2-35.4 16.7-48.9 8.2-10.7 15.3-25.3 15.3-42.6zM144 0C82.1 0 32 50.2 32 112v164.4c0 .1-.1.3-.2.6-.2.6-.8 1.6-1.7 2.8C11.2 304.2 0 334.8 0 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-33.2-11.2-63.8-30.1-88.1-.9-1.2-1.5-2.2-1.7-2.8-.1-.3-.2-.5-.2-.6V112C256 50.2 205.9 0 144 0m0 416c26.5 0 48-21.5 48-48 0-20.9-13.4-38.7-32-45.3V112c0-8.8-7.2-16-16-16s-16 7.2-16 16v210.7c-18.6 6.6-32 24.4-32 45.3 0 26.5 21.5 48 48 48"/></svg>�������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/temperature-low.svg���������������0000664�0000000�0000000�00000001635�14753064456�0031134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M448 96a32 32 0 1 0-64 0 32 32 0 1 0 64 0m-128 0a96 96 0 1 1 192 0 96 96 0 1 1-192 0M144 64c-26.5 0-48 21.5-48 48v164.5c0 17.3-7.1 31.9-15.3 42.5C70.2 332.6 64 349.5 64 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48M32 112C32 50.2 82.1 0 144 0s112 50.1 112 112v164.4c0 .1.1.3.2.6.2.6.8 1.6 1.7 2.8 18.9 24.4 30.1 55 30.1 88.1 0 79.5-64.5 144-144 144S0 447.5 0 368c0-33.2 11.2-63.8 30.1-88.1.9-1.2 1.5-2.2 1.7-2.8.1-.3.2-.5.2-.6zm160 256c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V272c0-8.8 7.2-16 16-16s16 7.2 16 16v50.7c18.6 6.6 32 24.4 32 45.3"/></svg>���������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/temperature-quarter.svg�����������0000664�0000000�0000000�00000001513�14753064456�0032011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 64c-26.5 0-48 21.5-48 48v164.5c0 17.3-7.1 31.9-15.3 42.5C86.2 332.6 80 349.5 80 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48M48 112C48 50.2 98.1 0 160 0s112 50.1 112 112v164.4c0 .1.1.3.2.6.2.6.8 1.6 1.7 2.8 18.9 24.4 30.1 55 30.1 88.1 0 79.5-64.5 144-144 144S16 447.5 16 368c0-33.2 11.2-63.8 30.1-88.1.9-1.2 1.5-2.2 1.7-2.8.1-.3.2-.5.2-.6zm160 256c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V272c0-8.8 7.2-16 16-16s16 7.2 16 16v50.7c18.6 6.6 32 24.4 32 45.3"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/temperature-three-quarters.svg����0000664�0000000�0000000�00000001514�14753064456�0033302�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 64c-26.5 0-48 21.5-48 48v164.5c0 17.3-7.1 31.9-15.3 42.5C86.2 332.6 80 349.5 80 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48M48 112C48 50.2 98.1 0 160 0s112 50.1 112 112v164.4c0 .1.1.3.2.6.2.6.8 1.6 1.7 2.8 18.9 24.4 30.1 55 30.1 88.1 0 79.5-64.5 144-144 144S16 447.5 16 368c0-33.2 11.2-63.8 30.1-88.1.9-1.2 1.5-2.2 1.7-2.8.1-.3.2-.5.2-.6zm160 256c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V144c0-8.8 7.2-16 16-16s16 7.2 16 16v178.7c18.6 6.6 32 24.4 32 45.3"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/tenge-sign.svg��������������������0000664�0000000�0000000�00000001007�14753064456�0030031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32h320c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64m0 128c0-17.7 14.3-32 32-32h320c17.7 0 32 14.3 32 32s-14.3 32-32 32H224v224c0 17.7-14.3 32-32 32s-32-14.3-32-32V224H32c-17.7 0-32-14.3-32-32"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/tent-arrow-down-to-line.svg�������0000664�0000000�0000000�00000001430�14753064456�0032405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M241.8 111.9c8.9 9.9 8.1 25-1.8 33.9l-80 72c-9.1 8.2-23 8.2-32.1 0l-80-72c-9.9-8.9-10.7-24-1.8-33.9s24-10.7 33.9-1.8l39.9 36L120 24c0-13.3 10.7-24 24-24s24 10.7 24 24v122.1l39.9-36c9.9-8.9 25-8.1 33.9 1.8m122.8 22.6c11.5-8.7 27.3-8.7 38.8 0l168 128c6.6 5 11 12.5 12.3 20.7l24 160 .7 4.7c17.5.2 31.6 14.4 31.6 32 0 17.7-14.3 32-32 32L32 512c-17.7 0-32-14.3-32-32s14.3-32 32-32h127.6l.7-4.7 24-160c1.2-8.2 5.6-15.7 12.3-20.7l168-128zM384 448h80l-61.3-122.5c-1.7-3.4-5.1-5.5-8.8-5.5-5.5 0-9.9 4.4-9.9 9.9z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/tent-arrow-left-right.svg���������0000664�0000000�0000000�00000001675�14753064456�0032151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M488.1 6.2c-9.9-8.9-25-8.1-33.9 1.8s-8.1 25 1.8 33.9L489.5 72h-403L120 41.8c9.9-8.9 10.7-24 1.8-33.9s-24-10.6-33.9-1.7l-80 72C2.9 82.7 0 89.2 0 96s2.9 13.3 7.9 17.8l80 72c9.9 8.9 25 8.1 33.9-1.8s8.1-25-1.8-33.9L86.5 120h402.9l-33.5 30.2c-9.9 8.9-10.7 24-1.8 33.9s24 10.7 33.9 1.8l80-72c5.1-4.6 7.9-11 7.9-17.8S573 82.8 568 78.3l-80-72zM307.4 166.5c-11.5-8.7-27.3-8.7-38.8 0l-168 128c-6.6 5-11 12.5-12.3 20.7l-24 160c-1.4 9.2 1.3 18.6 7.4 25.6S86.7 512 96 512h160c17.7 0 32-14.3 32-32V361.9c0-5.5 4.4-9.9 9.9-9.9 3.7 0 7.2 2.1 8.8 5.5l68.4 136.8c5.4 10.8 16.5 17.7 28.6 17.7h76.2c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/tent-arrow-turn-left.svg����������0000664�0000000�0000000�00000001563�14753064456�0032020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M120.1 41.8c9.9-8.9 10.7-24 1.8-33.9s-24.1-10.6-34-1.7l-80 72C2.9 82.7 0 89.2 0 96s2.9 13.3 7.9 17.8l80 72c9.9 8.9 25 8.1 33.9-1.8s8.1-25-1.8-33.9L86.5 120H456c39.8 0 72 32.2 72 72v40c0 13.3 10.7 24 24 24s24-10.7 24-24v-40c0-66.3-53.7-120-120-120H86.5L120 41.8zm187.3 124.7c-11.5-8.7-27.3-8.7-38.8 0l-168 128c-6.6 5-11 12.5-12.3 20.7l-24 160c-1.4 9.2 1.3 18.6 7.4 25.6S86.7 512 96 512h160c17.7 0 32-14.3 32-32V361.9c0-5.5 4.4-9.9 9.9-9.9 3.7 0 7.2 2.1 8.8 5.5l68.4 136.8c5.4 10.8 16.5 17.7 28.6 17.7h76.2c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/tent-arrows-down.svg��������������0000664�0000000�0000000�00000001775�14753064456�0031237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M209.8 111.9c-8.9-9.9-24-10.7-33.9-1.8l-39.9 36V24c0-13.3-10.7-24-24-24S88 10.7 88 24v122.1l-39.9-36c-9.9-8.9-25-8.1-33.9 1.8s-8.1 25 1.8 33.9l80 72c9.1 8.2 23 8.2 32.1 0l80-72c9.9-8.9 10.7-24 1.8-33.9zm352 0c-8.9-9.9-24-10.7-33.9-1.8l-39.9 36V24c0-13.3-10.7-24-24-24s-24 10.7-24 24v122.1l-39.9-36c-9.9-8.9-25-8.1-33.9 1.8s-8.1 25 1.8 33.9l80 72c9.1 8.2 23 8.2 32.1 0l80-72c9.9-8.9 10.7-24 1.8-33.9zm-254.4 54.6c-11.5-8.7-27.3-8.7-38.8 0l-168 128c-6.6 5-11 12.5-12.3 20.7l-24 160c-1.4 9.2 1.3 18.6 7.4 25.6S86.7 512 96 512h160c17.7 0 32-14.3 32-32V361.9c0-5.5 4.4-9.9 9.9-9.9 3.7 0 7.2 2.1 8.8 5.5l68.4 136.8c5.4 10.8 16.5 17.7 28.6 17.7h76.2c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z"/></svg>���mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/tent.svg��������������������������0000664�0000000�0000000�00000001123�14753064456�0026742�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M269.4 6c11.1-8 26.1-8 37.2 0l224 160c7.4 5.3 12.2 13.5 13.2 22.5l32 288c1 9-1.9 18.1-8 24.9s-14.7 10.7-23.8 10.7H435.8c-12.1 0-23.2-6.8-28.6-17.7L306.7 293.5c-1.7-3.4-5.1-5.5-8.8-5.5-5.5 0-9.9 4.4-9.9 9.9V480c0 17.7-14.3 32-32 32H32c-9.1 0-17.8-3.9-23.8-10.7s-9-15.8-8-24.9l32-288c1-9 5.8-17.2 13.2-22.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/tents.svg�������������������������0000664�0000000�0000000�00000001476�14753064456�0027140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M396.6 6.5 235.8 129.1c9.6 1.8 18.9 5.8 27 12l168 128c13.2 10.1 22 24.9 24.5 41.4l6.2 41.5H608c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128c-11.5-8.7-27.3-8.7-38.8 0zm-153.2 160c-11.5-8.7-27.3-8.7-38.8 0l-168 128c-6.6 5-11 12.5-12.3 20.7l-24 160c-1.4 9.2 1.3 18.6 7.4 25.6S22.7 512 32 512h160c17.7 0 32-14.3 32-32V361.9c0-5.5 4.4-9.9 9.9-9.9 3.7 0 7.2 2.1 8.8 5.5l68.4 136.8c5.4 10.8 16.5 17.7 28.6 17.7h76.2c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/terminal.svg����������������������0000664�0000000�0000000�00000001025�14753064456�0027604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M9.4 86.6c-12.5-12.5-12.5-32.7 0-45.2s32.8-12.5 45.3 0l192 192c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L178.7 256zM256 416h288c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32s14.3-32 32-32"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/text-height.svg�������������������0000664�0000000�0000000�00000001456�14753064456�0030233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 128V96h64v320H96c-17.7 0-32 14.3-32 32s14.3 32 32 32h128c17.7 0 32-14.3 32-32s-14.3-32-32-32h-32V96h64v32c0 17.7 14.3 32 32 32s32-14.3 32-32V80c0-26.5-21.5-48-48-48H48C21.5 32 0 53.5 0 80v48c0 17.7 14.3 32 32 32s32-14.3 32-32m438.6-86.6c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8h32v192h-32c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l64 64c12.5 12.5 32.8 12.5 45.3 0l64-64c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8h-32v-192h32c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/text-slash.svg��������������������0000664�0000000�0000000�00000001335�14753064456�0030071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2s-6.3 25.5 4.1 33.7l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L355.7 253.5 400.2 96H503l-6 24.2c-4.3 17.1 6.1 34.5 23.3 38.8s34.5-6.1 38.8-23.3l11-44.1c7.5-30.3-15.4-59.6-46.6-59.6h-319c-22 0-41.2 15-46.6 36.4l-6.3 25.2zm168 131.7c.1-.3.2-.7.3-1L217 96h116.7l-32.4 114.8-94.5-74.1zM243.3 416H192c-17.7 0-32 14.3-32 32s14.3 32 32 32h160c17.7 0 32-14.3 32-32s-14.3-32-32-32h-42.2l17.6-62.1-54.5-42.9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/text-width.svg��������������������0000664�0000000�0000000�00000001456�14753064456�0030102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 128V96h128v128h-16c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32h-16V96h128v32c0 17.7 14.3 32 32 32s32-14.3 32-32V80c0-26.5-21.5-48-48-48H48C21.5 32 0 53.5 0 80v48c0 17.7 14.3 32 32 32s32-14.3 32-32M9.4 361.4c-12.5 12.5-12.5 32.8 0 45.3l64 64c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6v-32h192v32c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l64-64c12.5-12.5 12.5-32.8 0-45.3l-64-64c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6v32h-192v-32c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/thermometer.svg�������������������0000664�0000000�0000000�00000001307�14753064456�0030327�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 382.1v-88.8c0-14.9 5.9-29.1 16.4-39.6l27.3-27.3 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57 41.4-41.4 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57 41.4-41.4 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57 45.5-45.5C355.2 10.9 381.4 0 408.8 0 465.8 0 512 46.2 512 103.2c0 27.4-10.9 53.6-30.2 73L258.3 399.6a55.92 55.92 0 0 1-39.6 16.4h-88.8L41 505c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l89-89z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/thumbs-down.svg�������������������0000664�0000000�0000000�00000001523�14753064456�0030243�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M313.4 479.1c26-5.2 42.9-30.5 37.7-56.5l-2.3-11.4c-5.3-26.7-15.1-52.1-28.8-75.2h144c26.5 0 48-21.5 48-48 0-18.5-10.5-34.6-25.9-42.6C497 236.6 504 223.1 504 208c0-23.4-16.8-42.9-38.9-47.1 4.4-7.3 6.9-15.8 6.9-24.9 0-21.3-13.9-39.4-33.1-45.6.7-3.3 1.1-6.8 1.1-10.4 0-26.5-21.5-48-48-48h-97.5c-19 0-37.5 5.6-53.3 16.1l-38.5 25.7C176 91.6 160 121.6 160 153.7v111.2c0 29.2 13.3 56.7 36 75l7.4 5.9c26.5 21.2 44.6 51 51.2 84.2l2.3 11.4c5.2 26 30.5 42.9 56.5 37.7M32 384h64c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H32c-17.7 0-32 14.3-32 32v224c0 17.7 14.3 32 32 32"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/thumbs-up.svg���������������������0000664�0000000�0000000�00000001523�14753064456�0027720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M313.4 32.9c26 5.2 42.9 30.5 37.7 56.5l-2.3 11.4c-5.3 26.7-15.1 52.1-28.8 75.2h144c26.5 0 48 21.5 48 48 0 18.5-10.5 34.6-25.9 42.6C497 275.4 504 288.9 504 304c0 23.4-16.8 42.9-38.9 47.1 4.4 7.3 6.9 15.8 6.9 24.9 0 21.3-13.9 39.4-33.1 45.6.7 3.3 1.1 6.8 1.1 10.4 0 26.5-21.5 48-48 48h-97.5c-19 0-37.5-5.6-53.3-16.1l-38.5-25.7C176 420.4 160 390.4 160 358.3V247.1c0-29.2 13.3-56.7 36-75l7.4-5.9c26.5-21.2 44.6-51 51.2-84.2l2.3-11.4c5.2-26 30.5-42.9 56.5-37.7M32 192h64c17.7 0 32 14.3 32 32v224c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V224c0-17.7 14.3-32 32-32"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/thumbtack-slash.svg���������������0000664�0000000�0000000�00000001360�14753064456�0031065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2s-6.3 25.5 4.1 33.7l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L481.4 352c9.8-.4 18.9-5.3 24.6-13.3 6-8.3 7.7-19.1 4.4-28.8l-1-3c-13.8-41.5-42.8-74.8-79.5-94.7L418.5 64H448c17.7 0 32-14.3 32-32S465.7 0 448 0H192c-17.7 0-32 14.3-32 32s14.3 32 32 32h29.5l-6.1 79.5zM324.9 352 177.1 235.6c-20.9 18.9-37.2 43.3-46.5 71.3l-1 3c-3.3 9.8-1.6 20.5 4.4 28.8s15.7 13.3 26 13.3zM288 384v96c0 17.7 14.3 32 32 32s32-14.3 32-32v-96z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/thumbtack.svg���������������������0000664�0000000�0000000�00000001150�14753064456�0027752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 32C32 14.3 46.3 0 64 0h256c17.7 0 32 14.3 32 32s-14.3 32-32 32h-29.5l11.4 148.2c36.7 19.9 65.7 53.2 79.5 94.7l1 3c3.3 9.8 1.6 20.5-4.4 28.8S362.3 352 352 352H32c-10.3 0-19.9-4.9-26-13.3s-7.7-19.1-4.4-28.8l1-3c13.8-41.5 42.8-74.8 79.5-94.7L93.5 64H64c-17.7 0-32-14.3-32-32m128 352h64v96c0 17.7-14.3 32-32 32s-32-14.3-32-32z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/ticket-simple.svg�����������������0000664�0000000�0000000�00000001122�14753064456�0030541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 128c0-35.3 28.7-64 64-64h448c35.3 0 64 28.7 64 64v64c0 8.8-7.4 15.7-15.7 18.6C541.5 217.1 528 235 528 256s13.5 38.9 32.3 45.4c8.3 2.9 15.7 9.8 15.7 18.6v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64v-64c0-8.8 7.4-15.7 15.7-18.6C34.5 294.9 48 277 48 256s-13.5-38.9-32.3-45.4C7.4 207.7 0 200.8 0 192z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/ticket.svg������������������������0000664�0000000�0000000�00000001437�14753064456�0027263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 64C28.7 64 0 92.7 0 128v64c0 8.8 7.4 15.7 15.7 18.6C34.5 217.1 48 235 48 256s-13.5 38.9-32.3 45.4C7.4 304.3 0 311.2 0 320v64c0 35.3 28.7 64 64 64h448c35.3 0 64-28.7 64-64v-64c0-8.8-7.4-15.7-15.7-18.6C541.5 294.9 528 277 528 256s13.5-38.9 32.3-45.4c8.3-2.9 15.7-9.8 15.7-18.6v-64c0-35.3-28.7-64-64-64zm64 112v160c0 8.8 7.2 16 16 16h288c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H144c-8.8 0-16 7.2-16 16m-32-16c0-17.7 14.3-32 32-32h320c17.7 0 32 14.3 32 32v192c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/timeline.svg����������������������0000664�0000000�0000000�00000001427�14753064456�0027605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48m32 97.3c28.3-12.3 48-40.5 48-73.3 0-44.2-35.8-80-80-80S48 51.8 48 96c0 32.8 19.7 61 48 73.3V224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h256v54.7c-28.3 12.3-48 40.5-48 73.3 0 44.2 35.8 80 80 80s80-35.8 80-80c0-32.8-19.7-61-48-73.3V288h256c17.7 0 32-14.3 32-32s-14.3-32-32-32h-64v-54.7c28.3-12.3 48-40.5 48-73.3 0-44.2-35.8-80-80-80s-80 35.8-80 80c0 32.8 19.7 61 48 73.3V224H160zM488 96a24 24 0 1 1 48 0 24 24 0 1 1-48 0M320 392a24 24 0 1 1 0 48 24 24 0 1 1 0-48"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/toggle-off.svg��������������������0000664�0000000�0000000�00000001012�14753064456�0030016�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M384 128c70.7 0 128 57.3 128 128s-57.3 128-128 128H192c-70.7 0-128-57.3-128-128s57.3-128 128-128zm192 128c0-106-86-192-192-192H192C86 64 0 150 0 256s86 192 192 192h192c106 0 192-86 192-192m-384 96a96 96 0 1 0 0-192 96 96 0 1 0 0 192"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/toggle-on.svg���������������������0000664�0000000�0000000�00000000635�14753064456�0027672�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 64C86 64 0 150 0 256s86 192 192 192h192c106 0 192-86 192-192S490 64 384 64zm192 96a96 96 0 1 1 0 192 96 96 0 1 1 0-192"/></svg>���������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/toilet-paper-slash.svg������������0000664�0000000�0000000�00000001545�14753064456�0031515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2s-6.3 25.5 4.1 33.7l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-109.7-86C569.9 374 608 291.9 608 192 608 86 565 0 512 0s-96 86-96 192c0 49.1 9.2 93.9 24.4 127.9l-59-46.2c1.6-24.8 2.6-52 2.6-81.6 0-65.5 13.2-142.4 60.2-192L160 0c-24.8 0-47.4 18.8-64.4 49.6zm328.5 380.3-300.8-237C64.9 162.4 64 177 64 192c0 101.5-11.7 170.8-23 213.9-5.1 19.4-10.7 39.9-20.5 57.7-5.9 9.9-6.1 22.1-.4 32.2S36.5 512 48 512h237.9c22.3 0 45.4-12.1 55.4-36.1 7.4-17.7 17.5-47.2 26-90.6zM544 192c0 35.3-14.3 64-32 64s-32-28.7-32-64 14.3-64 32-64 32 28.7 32 64"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/toilet-paper.svg������������������0000664�0000000�0000000�00000001440�14753064456�0030377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M444.2 0c-47 49.6-60.2 126.5-60.2 192 0 158.8-27.3 247-42.7 283.9-10 24-33.2 36.1-55.4 36.1H48c-11.5 0-22.2-6.2-27.8-16.2s-5.6-22.3.4-32.2c9.8-17.7 15.4-38.2 20.5-57.7C52.3 362.8 64 293.5 64 192 64 86 107 0 160 0zM512 384c-53 0-96-86-96-192S459 0 512 0s96 86 96 192-43 192-96 192m0-128c17.7 0 32-28.7 32-64s-14.3-64-32-64-32 28.7-32 64 14.3 64 32 64m-368-48a16 16 0 1 0-32 0 16 16 0 1 0 32 0m64 0a16 16 0 1 0-32 0 16 16 0 1 0 32 0m48 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32m80-16a16 16 0 1 0-32 0 16 16 0 1 0 32 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/toilet-portable.svg���������������0000664�0000000�0000000�00000001015�14753064456�0031076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 32v32h320V32c0-17.7-14.3-32-32-32H32C14.3 0 0 14.3 0 32m24 64H0v392c0 13.3 10.7 24 24 24s24-10.7 24-24v-8h224v8c0 13.3 10.7 24 24 24s24-10.7 24-24V96H24m232 144v64c0 8.8-7.2 16-16 16s-16-7.2-16-16v-64c0-8.8 7.2-16 16-16s16 7.2 16 16"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/toilet.svg������������������������0000664�0000000�0000000�00000002116�14753064456�0027273�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M24 0C10.7 0 0 10.7 0 24s10.7 24 24 24h8v148.9c-1.9 1.4-3.8 2.9-5.6 4.4C10.9 214.5 0 232.9 0 256c0 46.9 14.3 84.1 37 112.5 14.2 17.7 31.1 31.3 48.5 41.8l-19.9 59.6c-3.3 9.8-1.6 20.5 4.4 28.8S85.7 512 96 512h256c10.3 0 19.9-4.9 26-13.3s7.7-19.1 4.4-28.8l-19.8-59.5c17.4-10.5 34.3-24.1 48.5-41.8 22.7-28.4 37-65.5 37-112.5 0-23.1-10.9-41.5-26.4-54.6-1.8-1.5-3.7-3-5.6-4.4L416 48h8c13.3 0 24-10.7 24-24S437.3 0 424 0zm360 256.3c0 1-.3 2.6-3.8 5.6-4.8 4.1-14 9-29.3 13.4C320.5 284 276.1 288 224 288s-96.5-4-126.9-12.8c-15.3-4.4-24.5-9.3-29.3-13.4-3.5-3-3.8-4.6-3.8-5.6v-.4c0-1 0-2.5 3.8-5.8 4.8-4.1 14-9 29.3-13.4C127.5 228 171.9 224 224 224s96.5 4 126.9 12.8c15.3 4.4 24.5 9.3 29.3 13.4 3.8 3.2 3.8 4.8 3.8 5.8v.4zM328.2 384l-.2.5v-.5zM112 64h32c8.8 0 16 7.2 16 16s-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16s7.2-16 16-16"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/toilets-portable.svg��������������0000664�0000000�0000000�00000001407�14753064456�0031266�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 0h192c17.7 0 32 14.3 32 32v32H0V32C0 14.3 14.3 0 32 0M0 96h256v392c0 13.3-10.7 24-24 24s-24-10.7-24-24v-8H48v8c0 13.3-10.7 24-24 24S0 501.3 0 488V96m192 128c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16v-64c0-8.8-7.2-16-16-16M352 0h192c17.7 0 32 14.3 32 32v32H320V32c0-17.7 14.3-32 32-32m-32 96h256v392c0 13.3-10.7 24-24 24s-24-10.7-24-24v-8H368v8c0 13.3-10.7 24-24 24s-24-10.7-24-24V96m192 128c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16v-64c0-8.8-7.2-16-16-16"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/toolbox.svg�����������������������0000664�0000000�0000000�00000001406�14753064456�0027462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M176 88v40h160V88c0-4.4-3.6-8-8-8H184c-4.4 0-8 3.6-8 8m-48 40V88c0-30.9 25.1-56 56-56h144c30.9 0 56 25.1 56 56v40h28.1c12.7 0 24.9 5.1 33.9 14.1l51.9 51.9c9 9 14.1 21.2 14.1 33.9V320H384v-32c0-17.7-14.3-32-32-32s-32 14.3-32 32v32H192v-32c0-17.7-14.3-32-32-32s-32 14.3-32 32v32H0v-92.1C0 215.2 5.1 203 14.1 194L66 142.1c9-9 21.2-14.1 33.9-14.1zM0 416v-64h128c0 17.7 14.3 32 32 32s32-14.3 32-32h128c0 17.7 14.3 32 32 32s32-14.3 32-32h128v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/tooth.svg�������������������������0000664�0000000�0000000�00000001443�14753064456�0027132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M186.1 52.1c-16.8-13-37.4-20.1-58.6-20.1C74.7 32 32 74.7 32 127.5v6.2c0 15.8 3.7 31.3 10.7 45.5l23.5 47.1c4.5 8.9 7.6 18.4 9.4 28.2l36.7 205.8c2 11.2 11.6 19.4 22.9 19.8s21.4-7.4 24-18.4l28.9-121.3C192.2 323.7 207 312 224 312s31.8 11.7 35.8 28.3l28.9 121.3c2.6 11.1 12.7 18.8 24 18.4s20.9-8.6 22.9-19.8l36.7-205.8c1.8-9.8 4.9-19.3 9.4-28.2l23.5-47.1c7.1-14.1 10.7-29.7 10.7-45.5v-2.1c0-55-44.6-99.6-99.6-99.6-24.1 0-47.4 8.8-65.6 24.6l-3.2 2.8L267 74.5c7 5.4 8.2 15.5 2.8 22.5s-15.5 8.2-22.5 2.8l-24.4-19-37-28.8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/torii-gate.svg��������������������0000664�0000000�0000000�00000001305�14753064456�0030036�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 80c0 26.5 21.5 48 48 48h16v64h64v-64h96v64h64v-64h96v64h64v-64h16c26.5 0 48-21.5 48-48V13.4C512 6 506 0 498.6 0c-1.7 0-3.4.3-5 1l-49 19.6C425.7 28.1 405.5 32 385.2 32H126.8c-20.4 0-40.5-3.9-59.4-11.4L18.4 1c-1.6-.6-3.3-1-5-1C6 0 0 6 0 13.4zm64 208v192c0 17.7 14.3 32 32 32s32-14.3 32-32V288h256v192c0 17.7 14.3 32 32 32s32-14.3 32-32V288h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/tornado.svg�����������������������0000664�0000000�0000000�00000001415�14753064456�0027442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 32v13.6c0 17.1 1.7 34 5 50.4h352.8c3.2-6.9 7.5-13.3 13-18.8l38.6-38.6c4.2-4.2 6.6-10 6.6-16C416 10.1 405.9 0 393.4 0H32C14.3 0 0 14.3 0 32m352.2 96H13.6c12.2 35.9 32.3 68.7 58.8 96H412l-47.2-62.9c-7.3-9.7-11.6-21.2-12.6-33.1m-226 138.2 116.4 68.5c8.2 4.8 15.8 10.7 22.5 17.3H445c2-9.8 3-19.9 3-30.1 0-23-5.3-45.5-15.3-65.9H110.2c5.2 3.6 10.5 7 16 10.2M288 384c10.3 21.4 13.8 45.5 9.9 69l-5.9 35.7c-2 12.2 7.4 23.4 19.8 23.4 5.3 0 10.4-2.1 14.2-5.9l78.2-78.2c12.8-12.8 23.1-27.7 30.4-43.9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/tower-broadcast.svg���������������0000664�0000000�0000000�00000002261�14753064456�0031074�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M80.3 44C69.8 69.9 64 98.2 64 128s5.8 58.1 16.3 84c6.6 16.4-1.3 35-17.7 41.7s-35-1.3-41.7-17.7C7.4 202.6 0 166.1 0 128S7.4 53.4 20.9 20C27.6 3.6 46.2-4.3 62.6 2.3S86.9 27.6 80.3 44m474.8-24C568.6 53.4 576 89.9 576 128s-7.4 74.6-20.9 108c-6.6 16.4-25.3 24.3-41.7 17.7s-24.3-25.3-17.7-41.7c10.5-25.9 16.3-54.2 16.3-84s-5.8-58.1-16.3-84c-6.6-16.4 1.3-35 17.7-41.7s35 1.3 41.7 17.7M352 128c0 23.7-12.9 44.4-32 55.4V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V183.4c-19.1-11.1-32-31.7-32-55.4 0-35.3 28.7-64 64-64s64 28.7 64 64M170.6 76.8C163.8 92.4 160 109.7 160 128s3.8 35.6 10.6 51.2c7.1 16.2-.3 35.1-16.5 42.1S119 221 112 204.8c-10.3-23.6-16-49.6-16-76.8s5.7-53.2 16-76.8c7.1-16.2 25.9-23.6 42.1-16.5s23.6 25.9 16.5 42.1M464 51.2c10.3 23.6 16 49.6 16 76.8s-5.7 53.2-16 76.8c-7.1 16.2-25.9 23.6-42.1 16.5s-23.6-25.9-16.5-42.1c6.8-15.6 10.6-32.9 10.6-51.2s-3.8-35.6-10.6-51.2c-7.1-16.2.3-35.1 16.5-42.1S457 35 464 51.2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/tower-cell.svg��������������������0000664�0000000�0000000�00000002541�14753064456�0030052�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M62.6 2.3C46.2-4.3 27.6 3.6 20.9 20 7.4 53.4 0 89.9 0 128s7.4 74.6 20.9 108c6.6 16.4 25.3 24.3 41.7 17.7s24.3-25.3 17.7-41.7C69.8 186.1 64 157.8 64 128s5.8-58.1 16.3-84C86.9 27.6 79 9 62.6 2.3m450.8 0C497 9 489.1 27.6 495.7 44c10.5 25.9 16.3 54.2 16.3 84s-5.8 58.1-16.3 84c-6.6 16.4 1.3 35 17.7 41.7s35-1.3 41.7-17.7c13.5-33.4 20.9-69.9 20.9-108s-7.4-74.6-20.9-108c-6.7-16.4-25.3-24.3-41.7-17.7M340.1 165.2c7.5-10.5 11.9-23.3 11.9-37.2 0-35.3-28.7-64-64-64s-64 28.7-64 64c0 13.9 4.4 26.7 11.9 37.2l-137 301.6c-7.3 16.1-.2 35.1 15.9 42.4s35.1.2 42.4-15.9l20.5-45.3h220.6l20.6 45.2c7.3 16.1 26.3 23.2 42.4 15.9s23.2-26.3 15.9-42.4zM369.2 384H206.8l14.5-32h133.3l14.5 32zM288 205.3l37.6 82.7h-75.2zM163.3 73.6c5.3-12.1-.2-26.3-12.4-31.6s-26.3.2-31.6 12.4C109.5 77 104 101.9 104 128s5.5 51 15.3 73.6c5.3 12.1 19.5 17.7 31.6 12.4s17.7-19.5 12.4-31.6c-7.3-16.6-11.3-35-11.3-54.4s4-37.8 11.3-54.4m293.4-19.2c-5.3-12.1-19.5-17.7-31.6-12.4s-17.7 19.5-12.4 31.6c7.3 16.6 11.3 35 11.3 54.4s-4 37.8-11.3 54.4c-5.3 12.1.2 26.3 12.4 31.6s26.3-.2 31.6-12.4C466.5 179 472 154.1 472 128s-5.5-51-15.3-73.6"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/tower-observation.svg�������������0000664�0000000�0000000�00000001464�14753064456�0031471�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M241.7 3.4c9-4.5 19.6-4.5 28.6 0l160 80c15.8 7.9 22.2 27.1 14.3 42.9C439 137.5 427.7 144 416 144v80c0 17.7-14.3 32-32 32h-4.9l32 192H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h68.9l32-192H128c-17.7 0-32-14.3-32-32v-80c-11.7 0-23-6.5-28.6-17.7-7.9-15.8-1.5-35 14.3-42.9zM314.5 448 256 399.2 197.5 448zM197.8 256l-4.7 28.3 62.9 52.5 62.9-52.5-4.7-28.3H197.7zm-13.9 83.2-11.2 67 45.8-38.2zM293.5 368l45.8 38.1-11.2-67zM176 128c-8.8 0-16 7.2-16 16s7.2 16 16 16h160c8.8 0 16-7.2 16-16s-7.2-16-16-16z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/tractor.svg�����������������������0000664�0000000�0000000�00000002534�14753064456�0027455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 64c0-35.3 28.7-64 64-64h106.3c26.2 0 49.7 15.9 59.4 40.2l48 119.8H480v-33.8c0-24.8 5.8-49.3 16.9-71.6l2.5-5c7.9-15.8 27.1-22.2 42.9-14.3s22.2 27.1 14.3 42.9l-2.5 5c-6.7 13.3-10.1 28-10.1 42.9v33.8h56c22.1 0 40 17.9 40 40v45.4c0 16.5-8.5 31.9-22.6 40.7l-43.3 27.1c-14.2-5.9-29.8-9.2-46.1-9.2-39.3 0-74.1 18.9-96 48h-80c0 17.7-14.3 32-32 32h-8.2c-1.7 4.8-3.7 9.5-5.8 14.1l5.8 5.8c12.5 12.5 12.5 32.8 0 45.3l-22.6 22.6c-12.5 12.5-32.8 12.5-45.3 0l-5.8-5.8c-4.6 2.2-9.3 4.1-14.1 5.8v8.2c0 17.7-14.3 32-32 32h-32c-17.7 0-32-14.3-32-32v-8.2c-4.8-1.7-9.5-3.7-14.1-5.8l-5.8 5.8c-12.5 12.5-32.8 12.5-45.3 0l-22.6-22.6c-12.5-12.5-12.5-32.8 0-45.3L46 398c-2.2-4.6-4.1-9.3-5.8-14.1l-8.2.1c-17.7 0-32-14.3-32-32v-32c0-17.7 14.3-32 32-32h8.2c1.7-4.8 3.7-9.5 5.8-14.1l-5.8-5.8c-12.5-12.5-12.5-32.8 0-45.3l22.6-22.6c9-9 21.9-11.5 33.1-7.6V64zm170.3 0H160v96h144.7zM176 256a80 80 0 1 0 0 160 80 80 0 1 0 0-160m352 192a24 24 0 1 0 0-48 24 24 0 1 0 0 48m0 64c-48.6 0-88-39.4-88-88 0-29.8 14.8-56.1 37.4-72 14.3-10.1 31.8-16 50.6-16 2.7 0 5.3.1 7.9.3 44.9 4 80.1 41.7 80.1 87.7 0 48.6-39.4 88-88 88"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/trademark.svg���������������������0000664�0000000�0000000�00000001260�14753064456�0027744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M345.6 108.8c-8.3-11-22.7-15.5-35.7-11.2S288 114.2 288 128v256c0 17.7 14.3 32 32 32s32-14.3 32-32V224l86.4 115.2c6 8.1 15.5 12.8 25.6 12.8s19.6-4.7 25.6-12.8L576 224v160c0 17.7 14.3 32 32 32s32-14.3 32-32V128c0-13.8-8.8-26-21.9-30.4s-27.5.1-35.7 11.2L464 266.7zM0 128c0 17.7 14.3 32 32 32h64v224c0 17.7 14.3 32 32 32s32-14.3 32-32V160h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/traffic-light.svg�����������������0000664�0000000�0000000�00000000773�14753064456�0030525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v288c0 88.4 71.6 160 160 160s160-71.6 160-160V64c0-35.3-28.7-64-64-64zm96 416a48 48 0 1 1 0-96 48 48 0 1 1 0 96m48-176a48 48 0 1 1-96 0 48 48 0 1 1 96 0m-48-80a48 48 0 1 1 0-96 48 48 0 1 1 0 96"/></svg>�����mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/trailer.svg�����������������������0000664�0000000�0000000�00000001675�14753064456�0027446�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48 32C21.5 32 0 53.5 0 80v256c0 26.5 21.5 48 48 48h17.1c7.8-54.3 54.4-96 110.9-96s103.1 41.7 110.9 96H608c17.7 0 32-14.3 32-32s-14.3-32-32-32h-64V80c0-26.5-21.5-48-48-48zm32 64c8.8 0 16 7.2 16 16v131.2c-11.4 5.9-22.2 12.9-32 21V112c0-8.8 7.2-16 16-16m96 128c-5.4 0-10.7.2-16 .7V112c0-8.8 7.2-16 16-16s16 7.2 16 16v112.7c-5.3-.5-10.6-.7-16-.7m80 19.2V112c0-8.8 7.2-16 16-16s16 7.2 16 16v152.2c-9.8-8.1-20.6-15.2-32-21M368 96c8.8 0 16 7.2 16 16v192c0 8.8-7.2 16-16 16s-16-7.2-16-16V112c0-8.8 7.2-16 16-16m112 16v192c0 8.8-7.2 16-16 16s-16-7.2-16-16V112c0-8.8 7.2-16 16-16s16 7.2 16 16M176 480a80 80 0 1 0 0-160 80 80 0 1 0 0 160m0-112a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/train-subway.svg������������������0000664�0000000�0000000�00000001454�14753064456�0030424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 0C43 0 0 43 0 96v256c0 48 35.2 87.7 81.1 94.9l-46 46c-7 7-2 19.1 7.9 19.1h39.7c8.5 0 16.6-3.4 22.6-9.4L160 448h128l54.6 54.6c6 6 14.1 9.4 22.6 9.4h39.7c10 0 15-12.1 7.9-19.1l-46-46c46-7.1 81.1-46.9 81.1-94.9V96c0-53-43-96-96-96zM64 128c0-17.7 14.3-32 32-32h80c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32zm208-32h80c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32h-80c-17.7 0-32-14.3-32-32v-96c0-17.7 14.3-32 32-32M64 352a32 32 0 1 1 64 0 32 32 0 1 1-64 0m288-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/train-tram.svg��������������������0000664�0000000�0000000�00000001702�14753064456�0030051�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M86.8 48c-12.2 0-23.6 5.5-31.2 15L42.7 79C34.5 89.3 19.4 91 9 82.7S-3 59.4 5.3 49L18 33C34.7 12.2 60 0 86.8 0h274.4c26.7 0 52 12.2 68.7 33l12.8 16c8.3 10.4 6.6 25.5-3.8 33.7s-25.5 6.6-33.7-3.7l-12.7-16c-7.6-9.5-19.1-15-31.2-15H248v48h40c53 0 96 43 96 96v160c0 30.6-14.3 57.8-36.6 75.4l65.5 65.5C420 500 415 512 405 512h-39.7c-8.5 0-16.6-3.4-22.6-9.4L288 448H160l-54.6 54.6c-6 6-14.1 9.4-22.6 9.4H43c-10 0-15-12.1-7.9-19.1l65.5-65.5C78.3 409.8 64 382.6 64 352V192c0-53 43-96 96-96h40V48zM160 160c-17.7 0-32 14.3-32 32v32c0 17.7 14.3 32 32 32h128c17.7 0 32-14.3 32-32v-32c0-17.7-14.3-32-32-32zm32 192a32 32 0 1 0-64 0 32 32 0 1 0 64 0m96 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64"/></svg>��������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/train.svg�������������������������0000664�0000000�0000000�00000001232�14753064456�0027106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 0C43 0 0 43 0 96v256c0 48 35.2 87.7 81.1 94.9l-46 46c-7 7-2 19.1 7.9 19.1h39.7c8.5 0 16.6-3.4 22.6-9.4L160 448h128l54.6 54.6c6 6 14.1 9.4 22.6 9.4h39.7c10 0 15-12.1 7.9-19.1l-46-46c46-7.1 81.1-46.9 81.1-94.9V96c0-53-43-96-96-96zM64 96c0-17.7 14.3-32 32-32h256c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32zm160 192a48 48 0 1 1 0 96 48 48 0 1 1 0-96"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/transgender.svg�������������������0000664�0000000�0000000�00000002011�14753064456�0030301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M112 0c6.5 0 12.3 3.9 14.8 9.9s1.1 12.9-3.5 17.4l-31 31L112 78.1l7-7c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-7 7 15.2 15.2C187.7 107.6 220.5 96 256 96s68.3 11.6 94.9 31.2l68.8-68.8-31-31c-4.6-4.6-5.9-11.5-3.5-17.4S393.5.1 400 .1h96c8.8 0 16 7.2 16 16v96c0 6.5-3.9 12.3-9.9 14.8s-12.9 1.1-17.4-3.5l-31-31-68.8 68.8c19.5 26.5 31.1 59.3 31.1 94.8 0 80.2-59 146.6-136 158.2V432h16c13.3 0 24 10.7 24 24s-10.7 24-24 24h-16v8c0 13.3-10.7 24-24 24s-24-10.7-24-24v-8h-16c-13.3 0-24-10.7-24-24s10.7-24 24-24h16v-17.8c-77-11.6-136-78-136-158.2 0-35.5 11.6-68.3 31.2-94.9L112 145.9l-7 7c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l7-7-19.8-19.7-31 31c-4.6 4.6-11.5 5.9-17.4 3.5S0 118.5 0 112V16C0 7.2 7.2 0 16 0zm240 256a96 96 0 1 0-192 0 96 96 0 1 0 192 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/trash-arrow-up.svg����������������0000664�0000000�0000000�00000001341�14753064456�0030665�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M163.8 0h120.4c12.1 0 23.2 6.8 28.6 17.7L320 32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64s14.3-32 32-32h96l7.2-14.3C140.6 6.8 151.7 0 163.8 0M32 128h384l-21.2 339c-1.6 25.3-22.6 45-47.9 45H101.1c-25.3 0-46.3-19.7-47.9-45zm192 64c-6.4 0-12.5 2.5-17 7l-80 80c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l39-39L200 408c0 13.3 10.7 24 24 24s24-10.7 24-24V273.9l39 39c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-80-80c-4.5-4.5-10.6-7-17-7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/trash-can-arrow-up.svg������������0000664�0000000�0000000�00000001317�14753064456�0031427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M163.8 0h120.4c12.1 0 23.2 6.8 28.6 17.7L320 32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64s14.3-32 32-32h96l7.2-14.3C140.6 6.8 151.7 0 163.8 0M32 128h384v320c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64zm192 64c-6.4 0-12.5 2.5-17 7l-80 80c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l39-39L200 408c0 13.3 10.7 24 24 24s24-10.7 24-24V273.9l39 39c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-80-80c-4.5-4.5-10.6-7-17-7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/trash-can.svg���������������������0000664�0000000�0000000�00000001371�14753064456�0027655�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M135.2 17.7C140.6 6.8 151.7 0 163.8 0h120.4c12.1 0 23.2 6.8 28.6 17.7L320 32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64s14.3-32 32-32h96zM32 128h384v320c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64zm96 64c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16m96 0c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16m96 0c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/trash.svg�������������������������0000664�0000000�0000000�00000001027�14753064456�0027114�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M135.2 17.7 128 32H32C14.3 32 0 46.3 0 64s14.3 32 32 32h384c17.7 0 32-14.3 32-32s-14.3-32-32-32h-96l-7.2-14.3C307.4 6.8 296.3 0 284.2 0H163.8c-12.1 0-23.2 6.8-28.6 17.7M416 128H32l21.2 339c1.6 25.3 22.6 45 47.9 45h245.8c25.3 0 46.3-19.7 47.9-45z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/tree-city.svg���������������������0000664�0000000�0000000�00000002163�14753064456�0027702�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 48c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v144h40v-72c0-13.3 10.7-24 24-24s24 10.7 24 24v72h24c26.5 0 48 21.5 48 48v224c0 26.5-21.5 48-48 48H336c-26.5 0-48-21.5-48-48zm64 32v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16m16 80c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-16 112v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16m176-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-16 112v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16M224 160c0 6-1 11-2 16 20 14 34 38 34 64 0 45-36 80-80 80h-16v160c0 18-15 32-32 32-18 0-32-14-32-32V320H80c-45 0-80-35-80-80 0-26 13-50 33-64-1-5-1-10-1-16 0-53 42-96 96-96 53 0 96 43 96 96"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/tree.svg��������������������������0000664�0000000�0000000�00000001363�14753064456�0026735�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M210.6 5.9 62 169.4c-3.9 4.2-6 9.8-6 15.5 0 12.8 10.3 23.1 23.1 23.1H104l-73.4 73.4c-4.2 4.2-6.6 10-6.6 16 0 12.5 10.1 22.6 22.6 22.6H80L5.4 409.5c-3.5 4.2-5.4 9.5-5.4 15 0 13 10.5 23.5 23.5 23.5H192v32c0 17.7 14.3 32 32 32s32-14.3 32-32v-32h168.5c13 0 23.5-10.5 23.5-23.5 0-5.5-1.9-10.8-5.4-15L368 320h33.4c12.5 0 22.6-10.1 22.6-22.6 0-6-2.4-11.8-6.6-16L344 208h24.9c12.7 0 23.1-10.3 23.1-23.1 0-5.7-2.1-11.3-6-15.5L237.4 5.9C234 2.1 229.1 0 224 0s-10 2.1-13.4 5.9"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/triangle-exclamation.svg����������0000664�0000000�0000000�00000001113�14753064456�0032076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7.2 40.1S486.3 480 472 480H40c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8.2-40.1l216-368C228.7 39.5 241.8 32 256 32m0 128c-13.3 0-24 10.7-24 24v112c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24m32 224a32 32 0 1 0-64 0 32 32 0 1 0 64 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/trophy.svg������������������������0000664�0000000�0000000�00000001675�14753064456�0027331�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M400 0H176c-26.5 0-48.1 21.8-47.1 48.2.2 5.3.4 10.6.7 15.8H24C10.7 64 0 74.7 0 88c0 92.6 33.5 157 78.5 200.7 44.3 43.1 98.3 64.8 138.1 75.8 23.4 6.5 39.4 26 39.4 45.6 0 20.9-17 37.9-37.9 37.9H192c-17.7 0-32 14.3-32 32s14.3 32 32 32h192c17.7 0 32-14.3 32-32s-14.3-32-32-32h-26.1c-20.9 0-37.9-17-37.9-37.9 0-19.6 15.9-39.2 39.4-45.6 39.9-11 93.9-32.7 138.2-75.8C542.5 245 576 180.6 576 88c0-13.3-10.7-24-24-24H446.4c.3-5.2.5-10.4.7-15.8C448.1 21.8 426.5 0 400 0M48.9 112h84.4c9.1 90.1 29.2 150.3 51.9 190.6-24.9-11-50.8-26.5-73.2-48.3-32-31.1-58-76-63-142.3zm415.2 142.3c-22.4 21.8-48.3 37.3-73.2 48.3 22.7-40.3 42.8-100.5 51.9-190.6h84.4c-5.1 66.3-31.1 111.2-63 142.3z"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/trowel-bricks.svg�����������������0000664�0000000�0000000�00000001551�14753064456�0030564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M240.8 4.8C250.3 10.6 256 20.9 256 32v72h89c3.6-13.8 16.1-24 31-24h88c26.5 0 48 21.5 48 48s-21.5 48-48 48h-88c-14.9 0-27.4-10.2-31-24h-89v72c0 11.1-5.7 21.4-15.2 27.2s-21.2 6.4-31.1 1.4l-192-96C6.8 151.2 0 140.1 0 128s6.8-23.2 17.7-28.6l192-96c9.9-5 21.7-4.4 31.1 1.4M288 256c0-17.7 14.3-32 32-32h160c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H320c-17.7 0-32-14.3-32-32zM32 384h96c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32v-64c0-17.7 14.3-32 32-32m192 0h256c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H224c-17.7 0-32-14.3-32-32v-64c0-17.7 14.3-32 32-32"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/trowel.svg������������������������0000664�0000000�0000000�00000001146�14753064456�0027311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M343.9 213.4 245.3 312l65.4 65.4c7.9 7.9 11.1 19.4 8.4 30.3s-10.8 19.6-21.5 22.9l-256 80c-11.4 3.5-23.8.5-32.2-7.9s-11.5-20.9-7.9-32.2l80-256c3.3-10.7 12-18.9 22.9-21.5s22.4.5 30.3 8.4l65.3 65.3 98.6-98.6c-14.3-14.6-14.2-38 .3-52.5l95.4-95.4c26.9-26.9 70.5-26.9 97.5 0s26.9 70.5 0 97.5l-95.4 95.4c-14.5 14.5-37.9 14.6-52.5.3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/truck-arrow-right.svg�������������0000664�0000000�0000000�00000001510�14753064456�0031363�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 48C0 21.5 21.5 0 48 0h320c26.5 0 48 21.5 48 48v48h50.7c17 0 33.3 6.7 45.3 18.7l77.3 77.3c12 12 18.7 28.3 18.7 45.3V352c17.7 0 32 14.3 32 32s-14.3 32-32 32h-32c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H48c-26.5 0-48-21.5-48-48zm416 208h128v-18.7L466.7 160H416zM160 464a48 48 0 1 0 0-96 48 48 0 1 0 0 96m368-48a48 48 0 1 0-96 0 48 48 0 1 0 96 0M257 95c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l39 39L96 168c-13.3 0-24 10.7-24 24s10.7 24 24 24h166.1l-39 39c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l80-80c9.4-9.4 9.4-24.6 0-33.9z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/truck-droplet.svg�����������������0000664�0000000�0000000�00000001417�14753064456�0030575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 48C0 21.5 21.5 0 48 0h320c26.5 0 48 21.5 48 48v48h50.7c17 0 33.3 6.7 45.3 18.7l77.3 77.3c12 12 18.7 28.3 18.7 45.3V352c17.7 0 32 14.3 32 32s-14.3 32-32 32h-32c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H48c-26.5 0-48-21.5-48-48zm416 208h128v-18.7L466.7 160H416zM160 464a48 48 0 1 0 0-96 48 48 0 1 0 0 96m368-48a48 48 0 1 0-96 0 48 48 0 1 0 96 0M208 272c39.8 0 72-29.6 72-66 0-27-39.4-82.9-59.9-110.3-6.1-8.2-18.1-8.2-24.2 0C175.4 123 136 179 136 206c0 36.5 32.2 66 72 66"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/truck-fast.svg��������������������0000664�0000000�0000000�00000001526�14753064456�0030062�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M112 0C85.5 0 64 21.5 64 48v48H16c-8.8 0-16 7.2-16 16s7.2 16 16 16h256c8.8 0 16 7.2 16 16s-7.2 16-16 16H48c-8.8 0-16 7.2-16 16s7.2 16 16 16h192c8.8 0 16 7.2 16 16s-7.2 16-16 16H16c-8.8 0-16 7.2-16 16s7.2 16 16 16h192c8.8 0 16 7.2 16 16s-7.2 16-16 16H64v128c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V237.3c0-17-6.7-33.3-18.7-45.3L512 114.7c-12-12-28.3-18.7-45.3-18.7H416V48c0-26.5-21.5-48-48-48zm432 237.3V256H416v-96h50.7zM160 368a48 48 0 1 1 0 96 48 48 0 1 1 0-96m272 48a48 48 0 1 1 96 0 48 48 0 1 1-96 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/truck-field-un.svg����������������0000664�0000000�0000000�00000002076�14753064456�0030631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 32c-35.3 0-64 28.7-64 64v32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32v32c-17.7 0-32 14.3-32 32s14.3 32 32 32h32c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h32c17.7 0 32-14.3 32-32s-14.3-32-32-32v-32c0-35.3-28.7-64-64-64h-4.2c-.4-1.1-.9-2.1-1.3-3.2L485.7 102c-10.3-23.1-33.2-38-58.5-38h-51.8c-11-19.1-31.7-32-55.4-32zm288 96h43.2l42.7 96H384zM112 384a48 48 0 1 1 96 0 48 48 0 1 1-96 0m368-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96M253.3 135.1l34.7 52v-43.2c0-8.8 7.2-16 16-16s16 7.2 16 16v96c0 7.1-4.6 13.3-11.4 15.3s-14-.6-17.9-6.4l-34.7-52V240c0 8.8-7.2 16-16 16s-16-7.2-16-16v-96c0-7.1 4.6-13.3 11.4-15.3s14 .6 17.9 6.4M128 144v64c0 8.8 7.2 16 16 16s16-7.2 16-16v-64c0-8.8 7.2-16 16-16s16 7.2 16 16v64c0 26.5-21.5 48-48 48s-48-21.5-48-48v-64c0-8.8 7.2-16 16-16s16 7.2 16 16"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/truck-field.svg�������������������0000664�0000000�0000000�00000001345�14753064456�0030207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 96c0-35.3 28.7-64 64-64h224c23.7 0 44.4 12.9 55.4 32h51.8c25.3 0 48.2 14.9 58.5 38l52.8 118.8c.5 1.1.9 2.1 1.3 3.2h4.2c35.3 0 64 28.7 64 64v32c17.7 0 32 14.3 32 32s-14.3 32-32 32h-32c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H32c-17.7 0-32-14.3-32-32s14.3-32 32-32v-32c-17.7 0-32-14.3-32-32v-96c0-17.7 14.3-32 32-32zm352 128h85.9l-42.7-96H384zM160 432a48 48 0 1 0 0-96 48 48 0 1 0 0 96m368-48a48 48 0 1 0-96 0 48 48 0 1 0 96 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/truck-front.svg�������������������0000664�0000000�0000000�00000001245�14753064456�0030253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 80C0 35.8 35.8 0 80 0h352c44.2 0 80 35.8 80 80v288c0 26.2-12.6 49.4-32 64v48c0 17.7-14.3 32-32 32h-32c-17.7 0-32-14.3-32-32v-32H128v32c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32v-48c-19.4-14.6-32-37.8-32-64zm129.9 72.2L112 224h288l-17.9-71.8C378.5 138 365.7 128 351 128H161c-14.7 0-27.5 10-31 24.2zM128 320a32 32 0 1 0-64 0 32 32 0 1 0 64 0m288 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/truck-medical.svg�����������������0000664�0000000�0000000�00000001533�14753064456�0030521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 48C0 21.5 21.5 0 48 0h320c26.5 0 48 21.5 48 48v48h50.7c17 0 33.3 6.7 45.3 18.7l77.3 77.3c12 12 18.7 28.3 18.7 45.3V352c17.7 0 32 14.3 32 32s-14.3 32-32 32h-32c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H48c-26.5 0-48-21.5-48-48zm416 208h128v-18.7L466.7 160H416zM160 464a48 48 0 1 0 0-96 48 48 0 1 0 0 96m368-48a48 48 0 1 0-96 0 48 48 0 1 0 96 0M176 80v48h-48c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-48V80c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/truck-monster.svg�����������������0000664�0000000�0000000�00000004001�14753064456�0030603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 64v64h128l-48-64zm131.2-38.4L496 128h80c17.7 0 32 14.3 32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32c-29.2-38.9-75.7-64-128-64s-98.8 25.1-128 64h-64c-29.2-38.9-75.7-64-128-64s-98.8 25.1-128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32v-64c0-17.7 14.3-32 32-32h160V48c0-26.5 21.5-48 48-48h96c20.1 0 39.1 9.5 51.2 25.6M152 256h16c12.1 0 22.1 8.9 23.8 20.6 7.6 2.2 14.9 5.3 21.7 9 9.4-7 22.8-6.3 31.3 2.3l11.3 11.3c8.6 8.6 9.3 21.9 2.3 31.3 3.7 6.8 6.8 14.1 9 21.7C279 353.9 288 363.9 288 376v16c0 12.1-8.9 22.1-20.6 23.8-2.2 7.6-5.3 14.9-9 21.7 7 9.4 6.3 22.8-2.3 31.3l-11.3 11.3c-8.6 8.6-21.9 9.3-31.3 2.2-6.8 3.7-14.1 6.8-21.7 9-1.7 11.8-11.7 20.7-23.8 20.7h-16c-12.1 0-22.1-8.9-23.8-20.6-7.6-2.2-14.9-5.3-21.7-9-9.4 7.1-22.8 6.3-31.3-2.2l-11.4-11.3c-8.6-8.6-9.3-21.9-2.3-31.3-3.7-6.9-6.8-14.1-9-21.8C40.9 414.1 32 404.1 32 392v-16c0-12.1 8.9-22.1 20.6-23.8 2.2-7.6 5.3-14.9 9-21.8-7-9.4-6.3-22.8 2.3-31.3l11.3-11.3c8.6-8.6 21.9-9.3 31.3-2.3 6.8-3.7 14.1-6.8 21.7-9 1.7-11.6 11.7-20.6 23.8-20.6zm8 176a48 48 0 1 0 0-96 48 48 0 1 0 0 96m288.2-155.4C449.9 265 459.9 256 472 256h16c12.1 0 22.1 8.9 23.8 20.6 7.6 2.2 14.9 5.3 21.8 9 9.4-7 22.8-6.3 31.3 2.3l11.3 11.3c8.6 8.6 9.3 21.9 2.2 31.3 3.7 6.8 6.8 14.1 9 21.7C599 353.9 608 363.9 608 376v16c0 12.1-8.9 22.1-20.6 23.8-2.2 7.6-5.3 14.9-9 21.7 7 9.4 6.3 22.8-2.2 31.3l-11.3 11.3c-8.6 8.6-21.9 9.3-31.3 2.2-6.9 3.7-14.1 6.8-21.8 9-1.7 11.8-11.7 20.7-23.8 20.7h-16c-12.1 0-22.1-8.9-23.8-20.6-7.6-2.2-14.9-5.3-21.7-9-9.4 7.1-22.8 6.3-31.3-2.2l-11.3-11.3c-8.6-8.6-9.3-21.9-2.2-31.3-3.7-6.9-6.8-14.1-9-21.8-11.8-1.7-20.7-11.7-20.7-23.8v-16c0-12.1 8.9-22.1 20.6-23.8 2.2-7.6 5.3-14.9 9-21.8-7-9.4-6.3-22.8 2.2-31.3l11.3-11.3c8.6-8.6 21.9-9.3 31.3-2.3 6.8-3.7 14.1-6.8 21.7-9zM528 384a48 48 0 1 0-96 0 48 48 0 1 0 96 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/truck-moving.svg������������������0000664�0000000�0000000�00000001452�14753064456�0030422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v304c0 44.2 35.8 80 80 80 26.2 0 49.4-12.6 64-32 14.6 19.4 37.8 32 64 32 44.2 0 80-35.8 80-80 0-5.5-.6-10.8-1.6-16h163.2c-1 5.2-1.6 10.5-1.6 16 0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16h1.6c17.7 0 32-14.3 32-32v-90.3c0-9.2-3.2-18.2-9-25.3l-58.8-71.8c-10.6-13-26.5-20.5-43.3-20.5L480 144V96c0-35.3-28.7-64-64-64zm521 224H480v-64h48.8c2.4 0 4.7 1.1 6.2 2.9zm-57 112a32 32 0 1 1 0 64 32 32 0 1 1 0-64m-352 32a32 32 0 1 1 64 0 32 32 0 1 1-64 0m-96-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/truck-pickup.svg������������������0000664�0000000�0000000�00000001420�14753064456�0030411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m368.6 96 76.8 96H288V96zM224 80v112H64c-17.7 0-32 14.3-32 32v64c-17.7 0-32 14.3-32 32s14.3 32 32 32h33.1c-.7 5.2-1.1 10.6-1.1 16 0 61.9 50.1 112 112 112s112-50.1 112-112c0-5.4-.4-10.8-1.1-16h66.3c-.7 5.2-1.1 10.6-1.1 16 0 61.9 50.1 112 112 112s112-50.1 112-112c0-5.4-.4-10.8-1.1-16h33.1c17.7 0 32-14.3 32-32s-14.3-32-32-32v-64c0-17.7-14.3-32-32-32h-48.6L418.6 56c-12.1-15.2-30.5-24-50-24H272c-26.5 0-48 21.5-48 48m0 288a48 48 0 1 1-96 0 48 48 0 1 1 96 0m288 0a48 48 0 1 1-96 0 48 48 0 1 1 96 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/truck-plane.svg�������������������0000664�0000000�0000000�00000001727�14753064456�0030227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M200 0c-30.6 0-56 54.7-56 86.1v106.5L7.8 274.3C2.9 277.2 0 282.4 0 288v64c0 5.1 2.4 9.8 6.4 12.8s9.3 3.9 14.1 2.5l123.4-37v81.2l-50 40c-3.8 3-6 7.6-6 12.5v32c0 5.1 2.5 10 6.6 13s9.5 3.8 14.4 2.2l91.1-30.3 90.4 30.1c-1.6-4.7-2.4-9.8-2.4-15v-32.6c-18.2-10.5-30.7-29.7-31.9-51.8l-.1-.1V86c0-31.3-24.5-86-56-86m88 176v224c0 20.9 13.4 38.7 32 45.3V488c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24v-40h160v40c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24v-42.7c18.6-6.6 32-24.4 32-45.3V176c0-26.5-21.5-48-48-48H336c-26.5 0-48 21.5-48 48m79.8 78.7c3.3-8.7 11.2-14.7 20.5-14.7h151.4c9.2 0 17.2 6 20.5 14.7L576 304H352zM568 352a24 24 0 1 1 0 48 24 24 0 1 1 0-48m-232 24a24 24 0 1 1 48 0 24 24 0 1 1-48 0"/></svg>�����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/truck-ramp-box.svg����������������0000664�0000000�0000000�00000001345�14753064456�0030651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M640 0v400c0 61.9-50.1 112-112 112-61 0-110.5-48.7-112-109.3L48.4 502.9c-17.1 4.6-34.6-5.4-39.3-22.5s5.4-34.6 22.5-39.3L352 353.8V64c0-35.3 28.7-64 64-64zm-64 400a48 48 0 1 0-96 0 48 48 0 1 0 96 0M23.1 207.7c-4.6-17.1 5.6-34.6 22.6-39.2l46.4-12.4 20.7 77.3c2.3 8.5 11.1 13.6 19.6 11.3l30.9-8.3c8.5-2.3 13.6-11.1 11.3-19.6l-20.7-77.3 46.4-12.4c17.1-4.6 34.6 5.6 39.2 22.6l41.4 154.5c4.6 17.1-5.6 34.6-22.6 39.2l-154.6 41.5c-17.1 4.6-34.6-5.6-39.2-22.6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/truck.svg�������������������������0000664�0000000�0000000�00000001216�14753064456�0027123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48 0C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V237.3c0-17-6.7-33.3-18.7-45.3L512 114.7c-12-12-28.3-18.7-45.3-18.7H416V48c0-26.5-21.5-48-48-48zm368 160h50.7l77.3 77.3V256H416zM112 416a48 48 0 1 1 96 0 48 48 0 1 1-96 0m368-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/tty.svg���������������������������0000664�0000000�0000000�00000002521�14753064456�0026613�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m38.3 241.3-23.2-40.7c-9.2-16.2-8.4-36.5 4.5-50C61.4 106.8 144.7 48 256 48s194.6 58.8 236.4 102.6c12.9 13.5 13.7 33.8 4.5 50l-23.1 40.7c-7.5 13.2-23.3 19.3-37.8 14.6l-81.1-26.6c-13.1-4.3-22-16.6-22-30.4v-54.8c-49.6-18.1-104-18.1-153.6 0v54.8c0 13.8-8.9 26.1-22 30.4l-81.2 26.5c-14.5 4.7-30.3-1.4-37.8-14.6zM32 336c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H48c-8.8 0-16-7.2-16-16zm0 96c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H48c-8.8 0-16-7.2-16-16zm112-112h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16m-304 16c0-8.8 7.2-16 16-16h224c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H144c-8.8 0-16-7.2-16-16z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/turkish-lira-sign.svg�������������0000664�0000000�0000000�00000001356�14753064456�0031354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 32c17.7 0 32 14.3 32 32v35.3l119.2-34.1c17-4.9 34.7 5 39.6 22s-5 34.7-22 39.6L128 165.9v29.4l119.2-34.1c17-4.9 34.7 5 39.6 22s-5 34.7-22 39.6L128 261.9V416h63.8c68.2 0 124.4-53.5 127.8-121.6l.4-8c.9-17.7 15.9-31.2 33.6-30.4s31.2 15.9 30.4 33.6l-.4 8C378.5 399.8 294.1 480 191.8 480H96c-17.7 0-32-14.3-32-32V280.1l-23.2 6.6c-17 4.9-34.7-5-39.6-22s5-34.7 22-39.6L64 213.6v-29.4l-23.2 6.6c-17 4.9-34.7-5-39.6-22s5-34.7 22-39.6L64 117.6V64c0-17.7 14.3-32 32-32"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/turn-down.svg���������������������0000664�0000000�0000000�00000001051�14753064456�0027725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M350 334.5c3.8 8.8 2 19-4.6 26l-136 144c-4.5 4.8-10.8 7.5-17.4 7.5s-12.9-2.7-17.4-7.5l-136-144c-6.6-7-8.4-17.2-4.6-26S46.5 320 56 320h88V128c0-17.7-14.3-32-32-32H32C14.3 96 0 81.7 0 64V32C0 14.3 14.3 0 32 0h80c70.7 0 128 57.3 128 128v192h88c9.6 0 18.2 5.7 22 14.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/turn-up.svg�����������������������0000664�0000000�0000000�00000001052�14753064456�0027403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M350 177.5c3.8-8.8 2-19-4.6-26l-136-144C204.9 2.7 198.6 0 192 0s-12.9 2.7-17.4 7.5l-136 144c-6.6 7-8.4 17.2-4.6 26S46.5 192 56 192h88v192c0 17.7-14.3 32-32 32H32c-17.7 0-32 14.3-32 32v32c0 17.7 14.3 32 32 32h80c70.7 0 128-57.3 128-128V192h88c9.6 0 18.2-5.7 22-14.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/tv.svg����������������������������0000664�0000000�0000000�00000000760�14753064456�0026427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 64v288h512V64zM0 64C0 28.7 28.7 0 64 0h512c35.3 0 64 28.7 64 64v288c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm128 384h384c17.7 0 32 14.3 32 32s-14.3 32-32 32H128c-17.7 0-32-14.3-32-32s14.3-32 32-32"/></svg>����������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/u.svg�����������������������������0000664�0000000�0000000�00000000715�14753064456�0026242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 32c17.7 0 32 14.3 32 32v224c0 70.7 57.3 128 128 128s128-57.3 128-128V64c0-17.7 14.3-32 32-32s32 14.3 32 32v224c0 106-86 192-192 192S0 394 0 288V64c0-17.7 14.3-32 32-32"/></svg>���������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/umbrella-beach.svg����������������0000664�0000000�0000000�00000001574�14753064456�0030645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m346.3 271.8-60.1-21.9L214 448H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h512c17.7 0 32-14.3 32-32s-14.3-32-32-32H282.1l64.1-176.2zm121.1-.2-3.3 9.1 67.7 24.6c18.1 6.6 38-4.2 39.6-23.4 6.5-78.5-23.9-155.5-80.8-208.5 2 8 3.2 16.3 3.4 24.8l.2 6c1.8 57-7.3 113.8-26.8 167.4M462 99.1c-1.1-34.4-22.5-64.8-54.4-77.4-.9-.4-1.9-.7-2.8-1.1-33-11.7-69.8-2.4-93.1 23.8l-4 4.5C272.4 88.3 245 134.2 226.8 184l-3.3 9.1L434 269.7l3.3-9.1c18.1-49.8 26.6-102.5 24.9-155.5zm-354.8 13.8c-11.1 15.7-2.8 36.8 15.3 43.4l71 25.8 3.3-9.1c19.5-53.6 49.1-103 87.1-145.5l4-4.5c6.2-6.9 13.1-13 20.5-18.2-79.6 2.5-154.7 42.2-201.2 108z"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/umbrella.svg����������������������0000664�0000000�0000000�00000001647�14753064456�0027606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 0c17.7 0 32 14.3 32 32v17.7C451.8 63.4 557.7 161 573.9 285.9c2 15.6-17.3 24.4-27.8 12.7-14-15.6-41.3-26.6-66.1-26.6-38.7 0-71 27.5-78.4 64.1-1.7 8.7-8.7 15.9-17.6 15.9s-15.8-7.2-17.6-15.9C359 299.5 326.7 272 288 272s-71 27.5-78.4 64.1c-1.7 8.7-8.7 15.9-17.6 15.9s-15.8-7.2-17.6-15.9C167 299.5 134.7 272 96 272c-24.8 0-52.1 11-66.1 26.7-10.5 11.7-29.8 2.8-27.8-12.8C18.3 161 124.2 63.4 256 49.7V32c0-17.7 14.3-32 32-32m0 304c12.3 0 23.5 4.6 32 12.2v114.3c0 45-36.5 81.4-81.4 81.4-30.8 0-59-17.4-72.8-45l-2.3-4.7c-7.9-15.8-1.5-35 14.3-42.9s35-1.5 42.9 14.3l2.3 4.7c3 5.9 9 9.6 15.6 9.6 9.6 0 17.4-7.8 17.4-17.4V316.2c8.5-7.6 19.7-12.2 32-12.2"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/underline.svg���������������������0000664�0000000�0000000�00000001203�14753064456�0027754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M16 64c0-17.7 14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32h-16v128c0 53 43 96 96 96s96-43 96-96V96h-16c-17.7 0-32-14.3-32-32s14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32h-16v128c0 88.4-71.6 160-160 160S64 312.4 64 224V96H48c-17.7 0-32-14.3-32-32M0 448c0-17.7 14.3-32 32-32h384c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/universal-access.svg��������������0000664�0000000�0000000�00000001526�14753064456�0031246�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 256a256 256 0 1 1 512 0 256 256 0 1 1-512 0m161.5-86.1c-12.2-5.2-26.3.4-31.5 12.6s.4 26.3 12.6 31.5l11.9 5.1c17.3 7.4 35.2 12.9 53.6 16.3v50.1c0 4.3-.7 8.6-2.1 12.6l-28.7 86.1c-4.2 12.6 2.6 26.2 15.2 30.4s26.2-2.6 30.4-15.2l24.4-73.2c1.3-3.8 4.8-6.4 8.8-6.4s7.6 2.6 8.8 6.4l24.4 73.2c4.2 12.6 17.8 19.4 30.4 15.2s19.4-17.8 15.2-30.4l-28.7-86.1q-2.1-6.15-2.1-12.6v-50.1c18.4-3.5 36.3-8.9 53.6-16.3l11.9-5.1c12.2-5.2 17.8-19.3 12.6-31.5s-19.3-17.8-31.5-12.6l-12 5.1c-26.1 11.2-54.2 17-82.7 17s-56.5-5.8-82.7-17l-11.9-5.1zM256 160a40 40 0 1 0 0-80 40 40 0 1 0 0 80"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/unlock-keyhole.svg����������������0000664�0000000�0000000�00000001170�14753064456�0030723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 64c-44.2 0-80 35.8-80 80v48h240c35.3 0 64 28.7 64 64v192c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V256c0-35.3 28.7-64 64-64h16v-48C80 64.5 144.5 0 224 0c57.5 0 107 33.7 130.1 82.3 7.6 16 .8 35.1-15.2 42.6s-35.1.8-42.6-15.2C283.4 82.6 255.9 64 224 64m32 320c17.7 0 32-14.3 32-32s-14.3-32-32-32h-64c-17.7 0-32 14.3-32 32s14.3 32 32 32z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/unlock.svg������������������������0000664�0000000�0000000�00000001043�14753064456�0027264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M144 144c0-44.2 35.8-80 80-80 31.9 0 59.4 18.6 72.3 45.7 7.6 16 26.7 22.8 42.6 15.2s22.8-26.7 15.2-42.6C331 33.7 281.5 0 224 0 144.5 0 80 64.5 80 144v48H64c-35.3 0-64 28.7-64 64v192c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V256c0-35.3-28.7-64-64-64H144z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/up-down-left-right.svg������������0000664�0000000�0000000�00000001556�14753064456�0031436�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M278.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8h32v96h-96v-32c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9l-64 64c-12.5 12.5-12.5 32.8 0 45.3l64 64c9.2 9.2 22.9 11.9 34.9 6.9S128 333 128 320v-32h96v96h-32c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l64 64c12.5 12.5 32.8 12.5 45.3 0l64-64c9.2-9.2 11.9-22.9 6.9-34.9S332.9 384 319.9 384h-32v-96h96v32c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l64-64c12.5-12.5 12.5-32.8 0-45.3l-64-64c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6v32h-96v-96h32c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/up-down.svg�����������������������0000664�0000000�0000000�00000001123�14753064456�0027361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M145.6 7.7C141 2.8 134.7 0 128 0s-13 2.8-17.6 7.7l-104 112c-6.5 7-8.2 17.2-4.4 25.9S14.5 160 24 160h56v192H24c-9.5 0-18.2 5.7-22 14.4s-2.1 18.9 4.4 25.9l104 112c4.5 4.9 10.9 7.7 17.6 7.7s13-2.8 17.6-7.7l104-112c6.5-7 8.2-17.2 4.4-25.9S241.5 352 232 352h-56V160h56c9.5 0 18.2-5.7 22-14.4s2.1-18.9-4.4-25.9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/up-long.svg�����������������������0000664�0000000�0000000�00000000766�14753064456�0027365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M318 177.5c3.8-8.8 2-19-4.6-26l-136-144C172.9 2.7 166.6 0 160 0s-12.9 2.7-17.4 7.5l-136 144c-6.6 7-8.4 17.2-4.6 26S14.4 192 24 192h72v288c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V192h72c9.6 0 18.2-5.7 22-14.5"/></svg>����������up-right-and-down-left-from-center.svg��������������������������������������������������������������0000664�0000000�0000000�00000001274�14753064456�0034333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000�mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M344 0h144c13.3 0 24 10.7 24 24v144c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-39-39-87 87c-9.4 9.4-24.6 9.4-33.9 0l-32-32c-9.4-9.4-9.4-24.6 0-33.9l87-87L327 41c-6.9-6.9-8.9-17.2-5.2-26.2S334.3 0 344 0M168 512H24c-13.3 0-24-10.7-24-24V344c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l39 39 87-87c9.4-9.4 24.6-9.4 33.9 0l32 32c9.4 9.4 9.4 24.6 0 33.9l-87 87 39 39c6.9 6.9 8.9 17.2 5.2 26.2s-12.5 14.8-22.2 14.8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/up-right-from-square.svg����������0000664�0000000�0000000�00000001327�14753064456�0031774�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M352 0c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9L370.7 96 201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L416 141.3l41.4 41.4c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V32c0-17.7-14.3-32-32-32zM80 32C35.8 32 0 67.8 0 112v320c0 44.2 35.8 80 80 80h320c44.2 0 80-35.8 80-80V320c0-17.7-14.3-32-32-32s-32 14.3-32 32v112c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16h112c17.7 0 32-14.3 32-32s-14.3-32-32-32z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/upload.svg������������������������0000664�0000000�0000000�00000001247�14753064456�0027263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 109.3V352c0 17.7-14.3 32-32 32s-32-14.3-32-32V109.3l-73.4 73.4c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l128-128c12.5-12.5 32.8-12.5 45.3 0l128 128c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0zM64 352h128c0 35.3 28.7 64 64 64s64-28.7 64-64h128c35.3 0 64 28.7 64 64v32c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64v-32c0-35.3 28.7-64 64-64m368 104a24 24 0 1 0 0-48 24 24 0 1 0 0 48"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/user-astronaut.svg����������������0000664�0000000�0000000�00000002217�14753064456�0030771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M370.7 96.1C346.1 39.5 289.7 0 224 0S101.9 39.5 77.3 96.1C60.9 97.5 48 111.2 48 128v64c0 16.8 12.9 30.5 29.3 31.9 24.6 56.6 81 96.1 146.7 96.1s122.1-39.5 146.7-96.1c16.4-1.4 29.3-15.1 29.3-31.9v-64c0-16.8-12.9-30.5-29.3-31.9M336 144v16c0 53-43 96-96 96h-32c-53 0-96-43-96-96v-16c0-26.5 21.5-48 48-48h128c26.5 0 48 21.5 48 48m-146.7 18.7-6-21.2c-.9-3.3-3.9-5.5-7.3-5.5s-6.4 2.2-7.3 5.5l-6 21.2-21.2 6c-3.3.9-5.5 3.9-5.5 7.3s2.2 6.4 5.5 7.3l21.2 6 6 21.2c.9 3.3 3.9 5.5 7.3 5.5s6.4-2.2 7.3-5.5l6-21.2 21.2-6c3.3-.9 5.5-3.9 5.5-7.3s-2.2-6.4-5.5-7.3zm-76.6 153.8C46.7 342.6 0 407 0 482.3 0 498.7 13.3 512 29.7 512H128v-64c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32v64h98.3c16.4 0 29.7-13.3 29.7-29.7 0-75.3-46.7-139.7-112.7-165.8C303.9 338.8 265.5 352 224 352s-79.9-13.2-111.3-35.5M176 448c-8.8 0-16 7.2-16 16v48h32v-48c0-8.8-7.2-16-16-16m96 32a16 16 0 1 0 0-32 16 16 0 1 0 0 32"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/user-check.svg��������������������0000664�0000000�0000000�00000001140�14753064456�0030020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 128a128 128 0 1 1 256 0 128 128 0 1 1-256 0M0 482.3C0 383.8 79.8 304 178.3 304h91.4c98.5 0 178.3 79.8 178.3 178.3 0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3M625 177 497 305c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L591 143c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/user-clock.svg��������������������0000664�0000000�0000000�00000001206�14753064456�0030041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 0a128 128 0 1 1 0 256 128 128 0 1 1 0-256m-45.7 304h91.4c20.6 0 40.4 3.5 58.8 9.9C323 331 320 349.1 320 368c0 59.5 29.5 112.1 74.8 144H29.7C13.3 512 0 498.7 0 482.3 0 383.8 79.8 304 178.3 304M352 368a144 144 0 1 1 288 0 144 144 0 1 1-288 0m144-80c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h48c8.8 0 16-7.2 16-16s-7.2-16-16-16h-32v-48c0-8.8-7.2-16-16-16"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/user-doctor.svg�������������������0000664�0000000�0000000�00000001512�14753064456�0030240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 256a128 128 0 1 0 0-256 128 128 0 1 0 0 256m-96 55.2C54 332.9 0 401.3 0 482.3 0 498.7 13.3 512 29.7 512h388.6c16.4 0 29.7-13.3 29.7-29.7 0-81-54-149.4-128-171.1V362c27.6 7.1 48 32.2 48 62v40c0 8.8-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16s7.2-16 16-16v-24c0-17.7-14.3-32-32-32s-32 14.3-32 32v24c8.8 0 16 7.2 16 16s-7.2 16-16 16h-16c-8.8 0-16-7.2-16-16v-40c0-29.8 20.4-54.9 48-62v-57.1q-9-.9-18.3-.9h-91.4q-9.3 0-18.3.9v65.4c23.1 6.9 40 28.3 40 53.7 0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.4 16.9-46.8 40-53.7zM144 448a24 24 0 1 0 0-48 24 24 0 1 0 0 48"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/user-gear.svg���������������������0000664�0000000�0000000�00000002767�14753064456�0027701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 0a128 128 0 1 1 0 256 128 128 0 1 1 0-256m-45.7 304h91.4c11.8 0 23.4 1.2 34.5 3.3-2.1 18.5 7.4 35.6 21.8 44.8-16.6 10.6-26.7 31.6-20 53.3 4 12.9 9.4 25.5 16.4 37.6s15.2 23.1 24.4 33c15.7 16.9 39.6 18.4 57.2 8.7v.9c0 9.2 2.7 18.5 7.9 26.3l-382.2.1C13.3 512 0 498.7 0 482.3 0 383.8 79.8 304 178.3 304M436 218.2c0-7 4.5-13.3 11.3-14.8 10.5-2.4 21.5-3.7 32.7-3.7s22.2 1.3 32.7 3.7c6.8 1.5 11.3 7.8 11.3 14.8v30.6c7.9 3.4 15.4 7.7 22.3 12.8l24.9-14.3c6.1-3.5 13.7-2.7 18.5 2.4 7.6 8.1 14.3 17.2 20.1 27.2s10.3 20.4 13.5 31c2.1 6.7-1.1 13.7-7.2 17.2l-25 14.4c.4 4 .7 8.1.7 12.3s-.2 8.2-.7 12.3l25 14.4c6.1 3.5 9.2 10.5 7.2 17.2-3.3 10.6-7.8 21-13.5 31s-12.5 19.1-20.1 27.2c-4.8 5.1-12.5 5.9-18.5 2.4L546.3 442c-6.9 5.1-14.3 9.4-22.3 12.8v30.6c0 7-4.5 13.3-11.3 14.8-10.5 2.4-21.5 3.7-32.7 3.7s-22.2-1.3-32.7-3.7c-6.8-1.5-11.3-7.8-11.3-14.8v-30.5c-8-3.4-15.6-7.7-22.5-12.9l-24.7 14.3c-6.1 3.5-13.7 2.7-18.5-2.4-7.6-8.1-14.3-17.2-20.1-27.2s-10.3-20.4-13.5-31c-2.1-6.7 1.1-13.7 7.2-17.2l24.8-14.3c-.4-4.1-.7-8.2-.7-12.4s.2-8.3.7-12.4L343.8 325c-6.1-3.5-9.2-10.5-7.2-17.2 3.3-10.6 7.7-21 13.5-31s12.5-19.1 20.1-27.2c4.8-5.1 12.4-5.9 18.5-2.4l24.8 14.3c6.9-5.1 14.5-9.4 22.5-12.9v-30.5zm92.1 133.5a48.1 48.1 0 1 0-96.1 0 48.1 48.1 0 1 0 96.1 0"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/user-graduate.svg�����������������0000664�0000000�0000000�00000001455�14753064456�0030550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M219.3.5c3.1-.6 6.3-.6 9.4 0l200 40C439.9 42.7 448 52.6 448 64s-8.1 21.3-19.3 23.5L352 102.9V160c0 70.7-57.3 128-128 128S96 230.7 96 160v-57.1l-48-9.6v65.1l15.7 78.4c.9 4.7-.3 9.6-3.3 13.3S52.8 256 48 256H16c-4.8 0-9.3-2.1-12.4-5.9s-4.3-8.6-3.3-13.3L16 158.4V86.6C6.5 83.3 0 74.3 0 64c0-11.4 8.1-21.3 19.3-23.5zM111.9 327.7c10.5-3.4 21.8.4 29.4 8.5l71 75.5c6.3 6.7 17 6.7 23.3 0l71-75.5c7.6-8.1 18.9-11.9 29.4-8.5 65 20.9 112 81.7 112 153.6 0 17-13.8 30.7-30.7 30.7H30.7C13.8 512 0 498.2 0 481.3c0-71.9 47-132.7 111.9-153.6"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/user-group.svg��������������������0000664�0000000�0000000�00000001404�14753064456�0030102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 128a128 128 0 1 1 256 0 128 128 0 1 1-256 0M0 482.3C0 383.8 79.8 304 178.3 304h91.4c98.5 0 178.3 79.8 178.3 178.3 0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3M609.3 512H471.5c5.4-9.4 8.6-20.3 8.6-32v-8c0-60.7-27.1-115.2-69.8-151.8 2.4-.1 4.7-.2 7.1-.2h61.4c89 0 161.2 72.2 161.2 161.3 0 17-13.8 30.7-30.7 30.7M432 256c-31 0-59-12.6-79.3-32.9 19.7-26.6 31.3-59.5 31.3-95.1 0-26.8-6.6-52.1-18.3-74.3C384.3 40.1 407.2 32 432 32c61.9 0 112 50.1 112 112s-50.1 112-112 112"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/user-injured.svg������������������0000664�0000000�0000000�00000001522�14753064456�0030407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M240 80h102.7c-7.9-19.5-20.4-36.5-36.2-49.9zm37.7-68.2C261.3 4.2 243.2 0 224 0c-53.7 0-99.7 33.1-118.7 80h81.4zM224 256c70.7 0 128-57.3 128-128 0-5.4-.3-10.8-1-16H97c-.7 5.2-1 10.6-1 16 0 70.7 57.3 128 128 128m-100 56.4c-9.7 3.1-19.1 7-28 11.7V512h147.7l-62.2-103.8zm33-7.2 47.3 78.8H272c44.2 0 80 35.8 80 80 0 18-6 34.6-16 48h82.3c16.4 0 29.7-13.3 29.7-29.7 0-98.5-79.8-178.3-178.3-178.3h-91.4c-7.2 0-14.3.4-21.3 1.3zM0 482.3C0 498.7 13.3 512 29.7 512H64V345.4C24.9 378.1 0 427.3 0 482.3M320 464c0-26.5-21.5-48-48-48h-48.5l57.1 95.2c22.4-4 39.4-23.6 39.4-47.2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/user-large-slash.svg��������������0000664�0000000�0000000�00000001103�14753064456�0031144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2s-6.3 25.5 4.1 33.7l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L381.9 274c48.5-23.2 82.1-72.7 82.1-130C464 64.5 399.5 0 320 0c-69.6 0-127.6 49.3-141.1 114.9zM545.5 512H528L284.3 320h-59C136.2 320 64 392.2 64 481.3c0 17 13.8 30.7 30.7 30.7h450.9z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/user-large.svg��������������������0000664�0000000�0000000�00000000713�14753064456�0030042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 288a144 144 0 1 0 0-288 144 144 0 1 0 0 288m-94.7 32C72.2 320 0 392.2 0 481.3c0 17 13.8 30.7 30.7 30.7h450.6c17 0 30.7-13.8 30.7-30.7 0-89.1-72.2-161.3-161.3-161.3z"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/user-lock.svg���������������������0000664�0000000�0000000�00000001257�14753064456�0027704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 256a128 128 0 1 0 0-256 128 128 0 1 0 0 256m-45.7 48C79.8 304 0 383.8 0 482.3 0 498.7 13.3 512 29.7 512h362.8c-5.4-9.4-8.6-20.3-8.6-32V352q0-3.15.3-6.3c-31-26-71-41.7-114.6-41.7h-91.4zM528 240c17.7 0 32 14.3 32 32v48h-64v-48c0-17.7 14.3-32 32-32m-80 32v48c-17.7 0-32 14.3-32 32v128c0 17.7 14.3 32 32 32h160c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32v-48c0-44.2-35.8-80-80-80s-80 35.8-80 80"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/user-minus.svg��������������������0000664�0000000�0000000�00000001050�14753064456�0030076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 128a128 128 0 1 1 256 0 128 128 0 1 1-256 0M0 482.3C0 383.8 79.8 304 178.3 304h91.4c98.5 0 178.3 79.8 178.3 178.3 0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3M472 200h144c13.3 0 24 10.7 24 24s-10.7 24-24 24H472c-13.3 0-24-10.7-24-24s10.7-24 24-24"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/user-ninja.svg��������������������0000664�0000000�0000000�00000001675�14753064456�0030057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 256c-57.2 0-105.6-37.5-122-89.3-1.1 1.3-2.2 2.6-3.5 3.8-15.8 15.8-38.8 20.7-53.6 22.1-8.1.8-14.6-5.7-13.8-13.8 1.4-14.7 6.3-37.8 22.1-53.6 5.8-5.8 12.6-10.1 19.6-13.4-7-3.2-13.8-7.6-19.6-13.4-15.8-15.7-20.6-38.7-22.1-53.5-.8-8.1 5.7-14.6 13.8-13.8 14.7 1.4 37.8 6.3 53.6 22.1 4.8 4.8 8.7 10.4 11.7 16.1C131.4 28.2 174.4 0 224 0c70.7 0 128 57.3 128 128s-57.3 128-128 128M0 482.3C0 399.5 56.4 330 132.8 309.9c6-1.6 12.2.9 15.9 5.8l62.5 83.3c6.4 8.5 19.2 8.5 25.6 0l62.5-83.3c3.7-4.9 9.9-7.4 15.9-5.8C391.6 330 448 399.5 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3M160 96c-8.8 0-16 7.2-16 16s7.2 16 16 16h128c8.8 0 16-7.2 16-16s-7.2-16-16-16z"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/user-nurse.svg��������������������0000664�0000000�0000000�00000001632�14753064456�0030105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 128V70.2c0-13.3 8.3-25.3 20.8-30l96-36c7.2-2.7 15.2-2.7 22.5 0l96 36c12.5 4.7 20.8 16.6 20.8 30V128h-.3c.2 2.6.3 5.3.3 8v40c0 70.7-57.3 128-128 128s-128-57.3-128-128v-40c0-2.7.1-5.4.3-8h-.3zm48 48c0 44.2 35.8 80 80 80s80-35.8 80-80v-16H144zm-32.1 151.7c10.5-3.4 21.8.4 29.4 8.5l71 75.5c6.3 6.7 17 6.7 23.3 0l71-75.5c7.6-8.1 18.9-11.9 29.4-8.5 65 20.9 112 81.7 112 153.6 0 17-13.8 30.7-30.7 30.7H30.7C13.8 512 0 498.2 0 481.3c0-71.9 47-132.7 111.9-153.6M208 48v16h-16c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h16v16c0 4.4 3.6 8 8 8h16c4.4 0 8-3.6 8-8V96h16c4.4 0 8-3.6 8-8V72c0-4.4-3.6-8-8-8h-16V48c0-4.4-3.6-8-8-8h-16c-4.4 0-8 3.6-8 8"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/user-pen.svg����������������������0000664�0000000�0000000�00000001352�14753064456�0027532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 256a128 128 0 1 0 0-256 128 128 0 1 0 0 256m-45.7 48C79.8 304 0 383.8 0 482.3 0 498.7 13.3 512 29.7 512h293.1c-3.1-8.8-3.7-18.4-1.4-27.8l15-60.1c2.8-11.3 8.6-21.5 16.8-29.7l40.3-40.3c-32.1-31-75.7-50.1-123.9-50.1h-91.4zm435.5-68.3c-15.6-15.6-40.9-15.6-56.6 0l-29.4 29.4 71 71 29.4-29.4c15.6-15.6 15.6-40.9 0-56.6zM375.9 417c-4.1 4.1-7 9.2-8.4 14.9l-15 60.1c-1.4 5.5.2 11.2 4.2 15.2s9.7 5.6 15.2 4.2l60.1-15c5.6-1.4 10.8-4.3 14.9-8.4l129.2-129.3-71-71z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/user-plus.svg���������������������0000664�0000000�0000000�00000001203�14753064456�0027726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 128a128 128 0 1 1 256 0 128 128 0 1 1-256 0M0 482.3C0 383.8 79.8 304 178.3 304h91.4c98.5 0 178.3 79.8 178.3 178.3 0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3M504 312v-64h-64c-13.3 0-24-10.7-24-24s10.7-24 24-24h64v-64c0-13.3 10.7-24 24-24s24 10.7 24 24v64h64c13.3 0 24 10.7 24 24s-10.7 24-24 24h-64v64c0 13.3-10.7 24-24 24s-24-10.7-24-24"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/user-secret.svg�������������������0000664�0000000�0000000�00000002101�14753064456�0030226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 16c-6.7 0-10.8-2.8-15.5-6.1C201.9 5.4 194 0 176 0c-30.5 0-52 43.7-66 89.4-47.3 8.7-78 22.8-78 38.6 0 14.3 25 27.1 64.6 35.9-.4 4-.6 8-.6 12.1 0 17 3.3 33.2 9.3 48H45.4C38 224 32 230 32 237.4c0 1.7.3 3.4 1 5l38.8 96.9C28.2 371.8 0 423.8 0 482.3 0 498.7 13.3 512 29.7 512h388.6c16.4 0 29.7-13.3 29.7-29.7 0-58.5-28.2-110.4-71.7-143l38.7-96.9c.6-1.6 1-3.3 1-5 0-7.4-6-13.4-13.4-13.4h-59.9c6-14.8 9.3-31 9.3-48 0-4.1-.2-8.1-.6-12.1C391 155.1 416 142.3 416 128c0-15.8-30.7-29.9-78-38.6C324 43.7 302.5 0 272 0c-18 0-25.9 5.4-32.5 9.9-4.8 3.3-8.8 6.1-15.5 6.1m56 208h-12.4c-16.5 0-31.1-10.6-36.3-26.2-2.3-7-12.2-7-14.5 0-5.2 15.6-19.9 26.2-36.3 26.2H168c-22.1 0-40-17.9-40-40v-14.4c28.2 4.1 61 6.4 96 6.4s67.8-2.3 96-6.4V184c0 22.1-17.9 40-40 40m-88 96 16 32-32 128-48-192zm128-32-48 192-32-128 16-32z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/user-shield.svg�������������������0000664�0000000�0000000�00000001324�14753064456�0030217�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 256a128 128 0 1 0 0-256 128 128 0 1 0 0 256m-45.7 48C79.8 304 0 383.8 0 482.3 0 498.7 13.3 512 29.7 512h388.6c1.8 0 3.5-.2 5.3-.5-76.3-55.1-99.8-141-103.1-200.2-16.1-4.8-33.1-7.3-50.7-7.3h-91.4zm308.8-78.3-120 48C358 277.4 352 286.2 352 296c0 63.3 25.9 168.8 134.8 214.2 5.9 2.5 12.6 2.5 18.5 0C614.1 464.8 640 359.3 640 296c0-9.8-6-18.6-15.1-22.3l-120-48c-5.7-2.3-12.1-2.3-17.8 0M591.4 312c-3.9 50.7-27.2 116.7-95.4 149.7V273.9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/user-slash.svg��������������������0000664�0000000�0000000�00000001112�14753064456�0030054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2s-6.3 25.5 4.1 33.7l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L353.3 251.6C407.9 237 448 187.2 448 128 448 57.3 390.7 0 320 0c-69.8 0-126.5 55.8-128 125.2zm225.5 299.2C170.5 309.4 96 387.2 96 482.3c0 16.4 13.3 29.7 29.7 29.7h388.6c3.9 0 7.6-.7 11-2.1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/user-tag.svg����������������������0000664�0000000�0000000�00000001314�14753064456�0027521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 256a128 128 0 1 0 0-256 128 128 0 1 0 0 256m-45.7 48C79.8 304 0 383.8 0 482.3 0 498.7 13.3 512 29.7 512h388.6c10 0 18.8-4.9 24.2-12.5l-99.2-99.2c-14.9-14.9-23.3-35.1-23.3-56.1v-33c-15.9-4.7-32.8-7.2-50.3-7.2zM384 224c-17.7 0-32 14.3-32 32v82.7c0 17 6.7 33.3 18.7 45.3l107.4 107.3c18.7 18.7 49.1 18.7 67.9 0l73.4-73.4c18.7-18.7 18.7-49.1 0-67.9L512 242.7c-12-12-28.3-18.7-45.3-18.7zm24 80a24 24 0 1 1 48 0 24 24 0 1 1-48 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/user-tie.svg����������������������0000664�0000000�0000000�00000001170�14753064456�0027527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 128a128 128 0 1 0 256 0 128 128 0 1 0-256 0m94.5 200.2 18.6 31-33.3 123.9-36-146.9c-2-8.1-9.8-13.4-17.9-11.3C51.9 342.4 0 405.8 0 481.3c0 17 13.8 30.7 30.7 30.7h386.6c17 0 30.7-13.8 30.7-30.7 0-75.5-51.9-138.9-121.9-156.4-8.1-2-15.9 3.3-17.9 11.3l-36 146.9-33.3-123.9 18.6-31c6.4-10.7-1.3-24.2-13.7-24.2h-39.5c-12.4 0-20.1 13.6-13.7 24.2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/user-xmark.svg��������������������0000664�0000000�0000000�00000001266�14753064456�0030076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 128a128 128 0 1 1 256 0 128 128 0 1 1-256 0M0 482.3C0 383.8 79.8 304 178.3 304h91.4c98.5 0 178.3 79.8 178.3 178.3 0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3M471 143c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/user.svg��������������������������0000664�0000000�0000000�00000000716�14753064456�0026755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 256a128 128 0 1 0 0-256 128 128 0 1 0 0 256m-45.7 48C79.8 304 0 383.8 0 482.3 0 498.7 13.3 512 29.7 512h388.6c16.4 0 29.7-13.3 29.7-29.7 0-98.5-79.8-178.3-178.3-178.3z"/></svg>��������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/users-between-lines.svg�����������0000664�0000000�0000000�00000002020�14753064456�0031665�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 24C0 10.7 10.7 0 24 0h592c13.3 0 24 10.7 24 24s-10.7 24-24 24H24C10.7 48 0 37.3 0 24m0 464c0-13.3 10.7-24 24-24h592c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24m83.2-328a64 64 0 1 1 128 0 64 64 0 1 1-128 0M32 320c0-35.3 28.7-64 64-64h96c12.2 0 23.7 3.4 33.4 9.4-37.2 15.1-65.6 47.2-75.8 86.6H64c-17.7 0-32-14.3-32-32m461.6 32c-10.3-40.1-39.6-72.6-77.7-87.4 9.4-5.5 20.4-8.6 32.1-8.6h96c35.3 0 64 28.7 64 64 0 17.7-14.3 32-32 32zm-102.4-61.6c32.1 7.4 58.1 30.9 68.9 61.6 3.5 10 5.5 20.8 5.5 32 0 17.7-14.3 32-32 32h-224c-17.7 0-32-14.3-32-32 0-11.2 1.9-22 5.5-32 10.5-29.7 35.3-52.8 66.1-60.9 7.8-2.1 16-3.1 24.5-3.1h96c7.4 0 14.7.8 21.6 2.4zm44-130.4a64 64 0 1 1 128 0 64 64 0 1 1-128 0M321.6 96a80 80 0 1 1 0 160 80 80 0 1 1 0-160"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/users-gear.svg��������������������0000664�0000000�0000000�00000004500�14753064456�0030047�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M144 160a80 80 0 1 0 0-160 80 80 0 1 0 0 160m368 0a80 80 0 1 0 0-160 80 80 0 1 0 0 160M0 298.7C0 310.4 9.6 320 21.3 320h214c-26.6-23.5-43.3-57.8-43.3-96 0-7.6.7-15 1.9-22.3-13.6-6.3-28.7-9.7-44.6-9.7h-42.7C47.8 192 0 239.8 0 298.7M320 320c24 0 45.9-8.8 62.7-23.3 2.5-3.7 5.2-7.3 8-10.7 2.7-3.3 5.7-6.1 9-8.3C410 262.3 416 243.9 416 224c0-53-43-96-96-96s-96 43-96 96 43 96 96 96m65.4 60.2c-10.3-5.9-18.1-16.2-20.8-28.2H261.4C187.7 352 128 411.7 128 485.3c0 14.7 11.9 26.7 26.7 26.7h300.6c-2.1-5.2-3.2-10.9-3.2-16.4v-3c-1.3-.7-2.7-1.5-4-2.3l-2.6 1.5c-16.8 9.7-40.5 8-54.7-9.7-4.5-5.6-8.6-11.5-12.4-17.6l-.1-.2-.1-.2-2.4-4.1-.1-.2-.1-.2c-3.4-6.2-6.4-12.6-9-19.3-8.2-21.2 2.2-42.6 19-52.3l2.7-1.5v-4.6l-2.7-1.5zM533.3 192h-42.7c-15.9 0-31 3.5-44.6 9.7 1.3 7.2 1.9 14.7 1.9 22.3 0 17.4-3.5 33.9-9.7 49 2.5.9 4.9 2 7.1 3.3l2.6 1.5c1.3-.8 2.6-1.6 4-2.3v-3c0-19.4 13.3-39.1 35.8-42.6 7.9-1.2 16-1.9 24.2-1.9s16.3.6 24.2 1.9c22.5 3.5 35.8 23.2 35.8 42.6v3c1.3.7 2.7 1.5 4 2.3l2.6-1.5c16.8-9.7 40.5-8 54.7 9.7 2.3 2.8 4.5 5.8 6.6 8.7-2.1-57.1-49-102.7-106.6-102.7zm91.3 163.9c6.3-3.6 9.5-11.1 6.8-18-2.1-5.5-4.6-10.8-7.4-15.9l-2.3-4c-3.1-5.1-6.5-9.9-10.2-14.5-4.6-5.7-12.7-6.7-19-3l-2.9 1.7c-9.2 5.3-20.4 4-29.6-1.3s-16.1-14.5-16.1-25.1v-3.4c0-7.3-4.9-13.8-12.1-14.9-6.5-1-13.1-1.5-19.9-1.5s-13.4.5-19.9 1.5c-7.2 1.1-12.1 7.6-12.1 14.9v3.4c0 10.6-6.9 19.8-16.1 25.1s-20.4 6.6-29.6 1.3l-2.9-1.7c-6.3-3.6-14.4-2.6-19 3-3.7 4.6-7.1 9.5-10.2 14.6l-2.3 3.9c-2.8 5.1-5.3 10.4-7.4 15.9-2.6 6.8.5 14.3 6.8 17.9l2.9 1.7c9.2 5.3 13.7 15.8 13.7 26.4s-4.5 21.1-13.7 26.4l-3 1.7c-6.3 3.6-9.5 11.1-6.8 17.9 2.1 5.5 4.6 10.7 7.4 15.8l2.4 4.1c3 5.1 6.4 9.9 10.1 14.5 4.6 5.7 12.7 6.7 19 3l2.9-1.7c9.2-5.3 20.4-4 29.6 1.3s16.1 14.5 16.1 25.1v3.4c0 7.3 4.9 13.8 12.1 14.9 6.5 1 13.1 1.5 19.9 1.5s13.4-.5 19.9-1.5c7.2-1.1 12.1-7.6 12.1-14.9V492c0-10.6 6.9-19.8 16.1-25.1s20.4-6.6 29.6-1.3l2.9 1.7c6.3 3.6 14.4 2.6 19-3 3.7-4.6 7.1-9.4 10.1-14.5l2.4-4.2c2.8-5.1 5.3-10.3 7.4-15.8 2.6-6.8-.5-14.3-6.8-17.9l-3-1.7c-9.2-5.3-13.7-15.8-13.7-26.4s4.5-21.1 13.7-26.4l3-1.7zM472 384a40 40 0 1 1 80 0 40 40 0 1 1-80 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/users-line.svg��������������������0000664�0000000�0000000�00000001673�14753064456�0030070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M211.2 96a64 64 0 1 0-128 0 64 64 0 1 0 128 0M32 256c0 17.7 14.3 32 32 32h85.6c10.1-39.4 38.6-71.5 75.8-86.6-9.7-6-21.2-9.4-33.4-9.4H96c-35.3 0-64 28.7-64 64m461.6 32H576c17.7 0 32-14.3 32-32 0-35.3-28.7-64-64-64h-96c-11.7 0-22.7 3.1-32.1 8.6 38.1 14.8 67.4 47.3 77.7 87.4m-102.4-61.6c-6.9-1.6-14.2-2.4-21.6-2.4h-96c-8.5 0-16.7 1.1-24.5 3.1-30.8 8.1-55.6 31.1-66.1 60.9-3.5 10-5.5 20.8-5.5 32 0 17.7 14.3 32 32 32h224c17.7 0 32-14.3 32-32 0-11.2-1.9-22-5.5-32-10.8-30.7-36.8-54.2-68.9-61.6zM563.2 96a64 64 0 1 0-128 0 64 64 0 1 0 128 0m-241.6 96a80 80 0 1 0 0-160 80 80 0 1 0 0 160M32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32h576c17.7 0 32-14.3 32-32s-14.3-32-32-32z"/></svg>���������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/users-rays.svg��������������������0000664�0000000�0000000�00000002427�14753064456�0030115�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M41 7C31.6-2.3 16.4-2.3 7 7s-9.3 24.6 0 34l72 72c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9zm558 0-72 72c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l72-72c9.4-9.4 9.4-24.6 0-33.9S608.3-2.4 599 7M7 505c9.4 9.4 24.6 9.4 33.9 0l72-72c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L7 471c-9.4 9.4-9.4 24.6 0 33.9zm592 0c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-72-72c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9zM320 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128m-107.9 80c-2.7 7.5-4.1 15.6-4.1 24 0 13.3 10.7 24 24 24h176c13.3 0 24-10.7 24-24 0-8.4-1.4-16.5-4.1-24-.5-1.4-1-2.7-1.6-4-9.4-22.3-29.8-38.9-54.3-43-3.9-.7-7.9-1-12-1h-80c-4.1 0-8.1.3-12 1-.8.1-1.7.3-2.5.5-24.9 5.1-45.1 23-53.4 46.5m-36.3-112a48 48 0 1 0 0-96 48 48 0 1 0 0 96m-26.5 32c-29.4 0-53.3 23.9-53.3 53.3 0 14.7 11.9 26.7 26.7 26.7h56.1c8-34.1 32.8-61.7 65.2-73.6-7.5-4.1-16.2-6.4-25.3-6.4h-69.3zm368 80c14.7 0 26.7-11.9 26.7-26.7 0-29.5-23.9-53.3-53.3-53.3h-69.3c-9.2 0-17.8 2.3-25.3 6.4 32.4 11.9 57.2 39.5 65.2 73.6h56.1zM464 224a48 48 0 1 0 0-96 48 48 0 1 0 0 96"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/users-rectangle.svg���������������0000664�0000000�0000000�00000002041�14753064456�0031073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M96 0C43 0 0 43 0 96v320c0 53 43 96 96 96h448c53 0 96-43 96-96V96c0-53-43-96-96-96zM64 96c0-17.7 14.3-32 32-32h448c17.7 0 32 14.3 32 32v320c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32zm159.8 80a48 48 0 1 0-96 0 48 48 0 1 0 96 0M96 309.3c0 14.7 11.9 26.7 26.7 26.7h56.1c8-34.1 32.8-61.7 65.2-73.6-7.5-4.1-16.2-6.4-25.3-6.4h-69.3c-29.5 0-53.4 23.9-53.4 53.3M461.2 336h56.1c14.7 0 26.7-11.9 26.7-26.7 0-29.5-23.9-53.3-53.3-53.3h-69.3c-9.2 0-17.8 2.3-25.3 6.4 32.4 11.9 57.2 39.5 65.2 73.6zM372 289c-3.9-.7-7.9-1-12-1h-80c-4.1 0-8.1.3-12 1-26 4.4-47.3 22.7-55.9 47-2.7 7.5-4.1 15.6-4.1 24 0 13.3 10.7 24 24 24h176c13.3 0 24-10.7 24-24 0-8.4-1.4-16.5-4.1-24-8.6-24.3-29.9-42.6-55.9-47m140-113a48 48 0 1 0-96 0 48 48 0 1 0 96 0m-192 80a64 64 0 1 0 0-128 64 64 0 1 0 0 128"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/users-slash.svg�������������������0000664�0000000�0000000�00000001731�14753064456�0030246�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2s-6.3 25.5 4.1 33.7l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L440.6 320h178.1c11.8 0 21.3-9.6 21.3-21.3 0-58.9-47.8-106.7-106.7-106.7h-42.7c-15.9 0-31 3.5-44.6 9.7 1.3 7.2 1.9 14.7 1.9 22.3 0 30.2-10.5 58-28 79.9l-25.2-19.7c13.4-16.5 21.3-37.4 21.3-60.2 0-53-43-96-96-96-31.1 0-58.7 14.8-76.3 37.7l-40.6-31.8c13-14.2 20.9-33.1 20.9-53.9 0-44.2-35.8-80-80-80-27.7 0-52.1 14.1-66.5 35.5zM106.7 192C47.8 192 0 239.8 0 298.7 0 310.4 9.6 320 21.3 320h214c-20.6-18.2-35.2-42.8-40.8-70.8L121.8 192h-15.2zm154.6 160C187.7 352 128 411.7 128 485.3c0 14.7 11.9 26.7 26.7 26.7h330.7c10.5 0 19.5-6 23.9-14.8L324.9 352zM512 160a80 80 0 1 0 0-160 80 80 0 1 0 0 160"/></svg>���������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/users-viewfinder.svg��������������0000664�0000000�0000000�00000002436�14753064456�0031301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M48 48h88c13.3 0 24-10.7 24-24S149.3 0 136 0H32C14.3 0 0 14.3 0 32v104c0 13.3 10.7 24 24 24s24-10.7 24-24zm127.8 176a48 48 0 1 0 0-96 48 48 0 1 0 0 96m-26.5 32c-29.4 0-53.3 23.9-53.3 53.3 0 14.7 11.9 26.7 26.7 26.7h56.1c8-34.1 32.8-61.7 65.2-73.6-7.5-4.1-16.2-6.4-25.3-6.4h-69.3zm368 80c14.7 0 26.7-11.9 26.7-26.7 0-29.5-23.9-53.3-53.3-53.3h-69.3c-9.2 0-17.8 2.3-25.3 6.4 32.4 11.9 57.2 39.5 65.2 73.6h56.1zm-89.4 0c-8.6-24.3-29.9-42.6-55.9-47-3.9-.7-7.9-1-12-1h-80c-4.1 0-8.1.3-12 1-26 4.4-47.3 22.7-55.9 47-2.7 7.5-4.1 15.6-4.1 24 0 13.3 10.7 24 24 24h176c13.3 0 24-10.7 24-24 0-8.4-1.4-16.5-4.1-24M464 224a48 48 0 1 0 0-96 48 48 0 1 0 0 96m-80-32a64 64 0 1 0-128 0 64 64 0 1 0 128 0M504 48h88v88c0 13.3 10.7 24 24 24s24-10.7 24-24V32c0-17.7-14.3-32-32-32H504c-13.3 0-24 10.7-24 24s10.7 24 24 24M48 464v-88c0-13.3-10.7-24-24-24S0 362.7 0 376v104c0 17.7 14.3 32 32 32h104c13.3 0 24-10.7 24-24s-10.7-24-24-24zm456 0c-13.3 0-24 10.7-24 24s10.7 24 24 24h104c17.7 0 32-14.3 32-32V376c0-13.3-10.7-24-24-24s-24 10.7-24 24v88z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/users.svg�������������������������0000664�0000000�0000000�00000001531�14753064456�0027134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M144 0a80 80 0 1 1 0 160 80 80 0 1 1 0-160m368 0a80 80 0 1 1 0 160 80 80 0 1 1 0-160M0 298.7C0 239.8 47.8 192 106.7 192h42.7c15.9 0 31 3.5 44.6 9.7-1.3 7.2-1.9 14.7-1.9 22.3 0 38.2 16.8 72.5 43.3 96H21.3C9.6 320 0 310.4 0 298.7M405.3 320h-.7c26.6-23.5 43.3-57.8 43.3-96 0-7.6-.7-15-1.9-22.3 13.6-6.3 28.7-9.7 44.6-9.7h42.7c58.9 0 106.7 47.8 106.7 106.7 0 11.8-9.6 21.3-21.3 21.3H405.4zM224 224a96 96 0 1 1 192 0 96 96 0 1 1-192 0m-96 261.3c0-73.6 59.7-133.3 133.3-133.3h117.3c73.7 0 133.4 59.7 133.4 133.3 0 14.7-11.9 26.7-26.7 26.7H154.6c-14.7 0-26.7-11.9-26.7-26.7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/utensils.svg����������������������0000664�0000000�0000000�00000001501�14753064456�0027636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M416 0c-16 0-128 32-128 176v112c0 35.3 28.7 64 64 64h32v128c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32M64 16C64 7.8 57.9 1 49.7.1S34.2 4.6 32.4 12.5L2.1 148.8C.7 155.1 0 161.5 0 167.9c0 45.9 35.1 83.6 80 87.7V480c0 17.7 14.3 32 32 32s32-14.3 32-32V255.6c44.9-4.1 80-41.8 80-87.7 0-6.4-.7-12.8-2.1-19.1L191.6 12.5c-1.8-8-9.3-13.3-17.4-12.4S160 7.8 160 16v134.2c0 5.4-4.4 9.8-9.8 9.8-5.1 0-9.3-3.9-9.8-9L127.9 14.6C127.2 6.3 120.3 0 112 0S96.8 6.3 96.1 14.6L83.7 151c-.5 5.1-4.7 9-9.8 9-5.4 0-9.8-4.4-9.8-9.8zm48.3 152h-.6l.3-.7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/v.svg�����������������������������0000664�0000000�0000000�00000000742�14753064456�0026243�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M19.7 34.5c16.3-6.8 35 .9 41.8 17.2L192 364.8 322.5 51.7c6.8-16.3 25.5-24 41.8-17.2s24 25.5 17.2 41.8l-160 384c-5 11.9-16.6 19.7-29.5 19.7s-24.6-7.8-29.5-19.7l-160-384c-6.8-16.3.9-35 17.2-41.8"/></svg>������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/van-shuttle.svg�������������������0000664�0000000�0000000�00000001231�14753064456�0030242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 104v88h96V96H72c-4.4 0-8 3.6-8 8m482 88-80.9-96H384v96zm-226 0V96h-96v96zm272 192h-16c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H48c-26.5 0-48-21.5-48-48V104c0-39.8 32.2-72 72-72h393.1c18.9 0 36.8 8.3 49 22.8L625 186.5c9.7 11.5 15 26.1 15 41.2V336c0 26.5-21.5 48-48 48m-64 0a48 48 0 1 0-96 0 48 48 0 1 0 96 0m-368 48a48 48 0 1 0 0-96 48 48 0 1 0 0 96"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/vault.svg�������������������������0000664�0000000�0000000�00000001216�14753064456�0027126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v352c0 35.3 28.7 64 64 64h16l16 32h64l16-32h224l16 32h64l16-32h16c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zm160 320a80 80 0 1 0 0-160 80 80 0 1 0 0 160m0-240a160 160 0 1 1 0 320 160 160 0 1 1 0-320m256 141.3V336c0 8.8-7.2 16-16 16s-16-7.2-16-16V221.3c-18.6-6.6-32-24.4-32-45.3 0-26.5 21.5-48 48-48s48 21.5 48 48c0 20.9-13.4 38.7-32 45.3"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/vector-square.svg�����������������0000664�0000000�0000000�00000001374�14753064456�0030600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M368 80h32v32h-32zm-16-48c-17.7 0-32 14.3-32 32H128c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v64c0 17.7 14.3 32 32 32v192c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32h192c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32v-64c0-17.7-14.3-32-32-32V160c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zM96 160c17.7 0 32-14.3 32-32h192c0 17.7 14.3 32 32 32v192c-17.7 0-32 14.3-32 32H128c0-17.7-14.3-32-32-32zM48 400h32v32H48zm320 32v-32h32v32zM48 112V80h32v32z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/venus-double.svg������������������0000664�0000000�0000000�00000001710�14753064456�0030402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 288a112 112 0 1 0 0-224 112 112 0 1 0 0 224m176-112c0 86.3-62.1 158.1-144 173.1V384h32c17.7 0 32 14.3 32 32s-14.3 32-32 32h-32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32v-32h-32c-17.7 0-32-14.3-32-32s14.3-32 32-32h32v-34.9C78.1 334.1 16 262.3 16 176 16 78.8 94.8 0 192 0s176 78.8 176 176m-24 142c14.6-15.6 26.8-33.4 36-53 18.8 14.4 42.4 23 68 23 61.9 0 112-50.1 112-112S509.9 64 448 64c-25.6 0-49.1 8.6-68 23-9.3-19.5-21.5-37.4-36-53 29.1-21.4 65.1-34 104-34 97.2 0 176 78.8 176 176 0 86.3-62.1 158.1-144 173.1V384h32c17.7 0 32 14.3 32 32s-14.3 32-32 32h-32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32v-32h-32c-17.7 0-32-14.3-32-32s14.3-32 32-32h32v-34.9c-26.6-4.9-51.1-15.7-72-31.1"/></svg>��������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/venus-mars.svg��������������������0000664�0000000�0000000�00000001761�14753064456�0030100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M176 288a112 112 0 1 0 0-224 112 112 0 1 0 0 224m176-112c0 86.3-62.1 158.1-144 173.1V384h32c17.7 0 32 14.3 32 32s-14.3 32-32 32h-32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32v-32h-32c-17.7 0-32-14.3-32-32s14.3-32 32-32h32v-34.9C62.1 334.1 0 262.3 0 176 0 78.8 78.8 0 176 0s176 78.8 176 176m-80.1 184.6c19.3-10.1 36.9-23.1 52.1-38.4 20 18.5 46.7 29.8 76.1 29.8 61.9 0 112-50.1 112-112s-50.1-112-112-112c-7.2 0-14.3.7-21.1 2-4.9-21.5-13-41.7-24-60.2 14.3-3.8 29.4-5.8 45-5.8 37 0 71.4 11.4 99.8 31l20.6-20.6L487 41c-6.9-6.9-8.9-17.2-5.2-26.2S494.3 0 504 0h112c13.3 0 24 10.7 24 24v112c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-33.4-33.4-20.6 20.6c19.5 28.4 31 62.7 31 99.8 0 97.2-78.8 176-176 176-50.5 0-96-21.3-128.1-55.4"/></svg>���������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/venus.svg�������������������������0000664�0000000�0000000�00000001075�14753064456�0027136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M80 176a112 112 0 1 1 224 0 112 112 0 1 1-224 0m144 173.1c81.9-15 144-86.8 144-173.1C368 78.8 289.2 0 192 0S16 78.8 16 176c0 86.3 62.1 158.1 144 173.1V384h-32c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v32c0 17.7 14.3 32 32 32s32-14.3 32-32v-32h32c17.7 0 32-14.3 32-32s-14.3-32-32-32h-32z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/vest-patches.svg������������������0000664�0000000�0000000�00000002336�14753064456�0030405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m151.2 69.7 55.9 167.7-11 33.1c-2.7 8.2-4.1 16.7-4.1 25.3V464c0 14.5 3.9 28.2 10.7 39.9-7.7 5.1-16.8 8.1-26.7 8.1H48c-26.5 0-48-21.5-48-48V270.5c0-9.5 2.8-18.7 8.1-26.6L56 172.1c5.3-7.9 8.1-17.1 8.1-26.6L64 128V48c0-26.5 21.5-48 48-48h6.3c18.8 0 34.1 9.7 44.1 18.8C171.6 27.2 190.8 40 224 40s52.4-12.8 61.7-21.2C295.7 9.7 311 0 329.7 0h6.3c26.5 0 48 21.5 48 48v97.5c0 9.5 2.8 18.7 8.1 26.6l47.9 71.8c5.3 7.9 8.1 17.1 8.1 26.6L448 464c0 26.5-21.5 48-48 48H272c-26.5 0-48-21.5-48-48V295.8c0-5.2.8-10.3 2.5-15.2l70.3-210.9C279.4 79.7 255.4 88 224 88s-55.4-8.3-72.8-18.3M96 456a40 40 0 1 0 0-80 40 40 0 1 0 0 80M63.5 255.5c-4.7 4.7-4.7 12.3 0 17L79 288l-15.5 15.5c-4.7 4.7-4.7 12.3 0 17s12.3 4.7 17 0L96 305l15.5 15.5c4.7 4.7 12.3 4.7 17 0s4.7-12.3 0-17L113 288l15.5-15.5c4.7-4.7 4.7-12.3 0-17s-12.3-4.7-17 0L96 271l-15.5-15.5c-4.7-4.7-12.3-4.7-17 0M304 280v40c0 8.8 7.2 16 16 16h40c13.3 0 24-10.7 24-24s-10.7-24-24-24h-8v-8c0-13.3-10.7-24-24-24s-24 10.7-24 24"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/vest.svg��������������������������0000664�0000000�0000000�00000002034�14753064456�0026753�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M207.1 237.4 151.2 69.7C168.6 79.7 192.6 88 224 88s55.4-8.3 72.8-18.3l-70.3 210.9c-1.6 4.9-2.5 10-2.5 15.2V464c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V270.5c0-9.5-2.8-18.7-8.1-26.6L392 172.1c-5.3-7.9-8.1-17.1-8.1-26.6V48c0-26.5-21.5-48-48-48h-6.3c-18.6 0-33.9 9.7-43.9 18.8C276.4 27.2 257.2 40 224 40s-52.4-12.8-61.7-21.2C152.3 9.7 137 0 118.3 0H112C85.5 0 64 21.5 64 48v97.5c0 9.5-2.8 18.7-8.1 26.6L8.1 243.9C2.8 251.8 0 261.1 0 270.5V464c0 26.5 21.5 48 48 48h128c9.9 0 19-3 26.7-8.1-6.8-11.7-10.7-25.4-10.7-39.9V295.8c0-8.6 1.4-17.1 4.1-25.3zm140.2 119.3 48 48c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-48-48c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0m-294.6 48 48-48c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6l-48 48c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/vial-circle-check.svg�������������0000664�0000000�0000000�00000001305�14753064456�0031237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32h192c17.7 0 32 14.3 32 32s-14.3 32-32 32v170.8c-20.2 28.6-32 63.5-32 101.2 0 25.2 5.3 49.1 14.8 70.8-17.3 24.9-46.2 41.2-78.8 41.2-53 0-96-43-96-96V96C14.3 96 0 81.7 0 64m96 32v96h64V96zm128 272a144 144 0 1 1 288 0 144 144 0 1 1-288 0m211.3-43.3c-6.2-6.2-16.4-6.2-22.6 0L352 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/vial-virus.svg��������������������0000664�0000000�0000000�00000002257�14753064456�0030102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 32C14.3 32 0 46.3 0 64s14.3 32 32 32v288c0 53 43 96 96 96 28.6 0 54.2-12.5 71.8-32.3.1-14.2 5.6-28.3 16.4-39.1.2-.2.1-.6-.2-.6-30.9 0-56-25.1-56-56s25.1-56 56-56c.3 0 .4-.4.2-.6-21.9-21.9-21.9-57.3 0-79.2 2.4-2.4 5-4.6 7.8-6.5V96c17.7 0 32-14.3 32-32s-14.3-32-32-32H32m64 160V96h64v96zm120 184c28.8 0 43.2 34.8 22.9 55.2-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0c20.4-20.4 55.2-5.9 55.2 22.9 0 13.3 10.7 24 24 24s24-10.7 24-24c0-28.8 34.8-43.2 55.2-22.9 9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9c-20.3-20.4-5.9-55.2 22.9-55.2 13.3 0 24-10.7 24-24s-10.7-24-24-24c-28.8 0-43.2-34.8-22.9-55.2 9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0c-20.4 20.3-55.2 5.9-55.2-22.9 0-13.3-10.7-24-24-24s-24 10.7-24 24c0 28.8-34.8 43.2-55.2 22.9-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9c20.4 20.4 5.9 55.2-22.9 55.2-13.3 0-24 10.7-24 24s10.7 24 24 24m104-88a32 32 0 1 1 0 64 32 32 0 1 1 0-64m40 96a24 24 0 1 1 48 0 24 24 0 1 1-48 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/vial.svg��������������������������0000664�0000000�0000000�00000001067�14753064456�0026732�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M342.6 9.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l9.4 9.4L28.1 342.6C10.1 360.6 0 385 0 410.5v5.5c0 53 43 96 96 96h5.5c25.5 0 49.9-10.1 67.9-28.1L448 205.3l9.4 9.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-32-32-96-96-32-32zM205.3 256 352 109.3l50.7 50.7-96 96H205.2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/vials.svg�������������������������0000664�0000000�0000000�00000001115�14753064456�0027107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32h160c17.7 0 32 14.3 32 32s-14.3 32-32 32v304c0 44.2-35.8 80-80 80s-80-35.8-80-80V96C14.3 96 0 81.7 0 64m136 32H88v160h48zm152-32c0-17.7 14.3-32 32-32h160c17.7 0 32 14.3 32 32s-14.3 32-32 32v304c0 44.2-35.8 80-80 80s-80-35.8-80-80V96c-17.7 0-32-14.3-32-32m136 32h-48v160h48z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/video-slash.svg�������������������0000664�0000000�0000000�00000001232�14753064456�0030207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2s-6.3 25.5 4.1 33.7l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-86.4-67.7 13.8 9.2c9.8 6.5 22.4 7.2 32.9 1.6S608 395.8 608 384V128c0-11.8-6.5-22.6-16.9-28.2s-23-5-32.9 1.6l-96 64-14.2 9.5v150.9l-32-25.1V128c0-35.3-28.7-64-64-64H113.9zM407 416.7 32.3 121.5c-.2 2.1-.3 4.3-.3 6.5v256c0 35.3 28.7 64 64 64h256c23.4 0 43.9-12.6 55-31.3"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/video.svg�������������������������0000664�0000000�0000000�00000001035�14753064456�0027100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 128c0-35.3 28.7-64 64-64h256c35.3 0 64 28.7 64 64v256c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm559.1-28.2c10.4 5.6 16.9 16.4 16.9 28.2v256c0 11.8-6.5 22.6-16.9 28.2s-23 5-32.9-1.6l-96-64-14.2-9.5V174.9l14.2-9.5 96-64c9.8-6.5 22.4-7.2 32.9-1.6"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/vihara.svg������������������������0000664�0000000�0000000�00000002774�14753064456�0027257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="m281 22 24.8-17.3c1.3-.9 2.7-1.8 4.1-2.4C313.1.7 316.6 0 320 0s6.9.7 10.1 2.2c1.4.7 2.8 1.5 4.1 2.4L359 22c34 23.8 71.8 41.5 111.8 52.4l23 6.3c1.8.5 3.6 1.1 5.2 2 3.2 1.7 5.9 4 8.1 6.8 3.8 4.9 5.6 11.3 4.7 17.8-.4 2.8-1.2 5.4-2.5 7.8-1.7 3.2-4 5.9-6.8 8.1-4.3 3.2-9.6 5.1-15.1 4.9h-7.5v56.1l6.4 5.1 5.2 4.1c21.1 16.7 45 29.6 70.5 38.1l28.9 9.6c1.6.5 3.2 1.2 4.6 2 3.1 1.7 5.8 4.1 7.8 6.9s3.5 6.1 4.1 9.6c.5 2.7.6 5.5.1 8.3s-1.4 5.4-2.7 7.8c-1.7 3.1-4.1 5.8-6.9 7.8s-6.1 3.5-9.6 4.1c-1.6.3-3.3.4-5 .4H544v65.9c20.5 22.8 47.4 39.2 77.4 46.7C632 403 640 412.6 640 424c0 13.3-10.7 24-24 24h-40v32c0 17.7-14.3 32-32 32s-32-14.3-32-32v-32H352v32c0 17.7-14.3 32-32 32s-32-14.3-32-32v-32H128v32c0 17.7-14.3 32-32 32s-32-14.3-32-32v-32H24c-13.3 0-24-10.7-24-24 0-11.4 8-21 18.6-23.4 30-7.6 56.9-23.9 77.4-46.7V288H56.6c-1.7 0-3.4-.1-5-.4-3.5-.7-6.8-2.1-9.6-4.1s-5.2-4.7-7-7.8c-1.3-2.4-2.3-5-2.7-7.8s-.4-5.6.1-8.3c.7-3.5 2.1-6.8 4.1-9.6s4.7-5.2 7.8-6.9c1.4-.8 3-1.5 4.6-2l28.9-9.6c25.5-8.5 49.4-21.4 70.5-38.1l5.2-4.1 6.4-5.1v-56.1h-7.5c-5.5.1-10.8-1.7-15.1-4.9-2.8-2.1-5.1-4.8-6.8-8.1-1.2-2.4-2.1-5-2.5-7.8-.9-6.5.9-12.8 4.7-17.8 2.1-2.8 4.8-5.1 8.1-6.8 1.6-.8 3.4-1.5 5.2-2l23-6.3c40.2-10.9 78-28.6 112-52.4m135 106H224v64h192zM160 288v64h320v-64H160"/></svg>����mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/virus-covid-slash.svg�������������0000664�0000000�0000000�00000002512�14753064456�0031355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2s-6.3 25.5 4.1 33.7l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L472.1 344.7c11.4-19.5 19.1-41.4 22.3-64.7H528v16c0 13.3 10.7 24 24 24s24-10.7 24-24v-80c0-13.3-10.7-24-24-24s-24 10.7-24 24v16h-33.6c-4.2-30.7-16.3-58.8-34.1-82.3l23.7-23.8 11.3 11.3c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-56.5-56.6c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9L450.1 92l-23.8 23.8c-23.5-17.9-51.6-30-82.3-34.2V48h16c13.3 0 24-10.7 24-24S373.3 0 360 0h-80c-13.3 0-24 10.7-24 24s10.7 24 24 24h16v33.6c-30.7 4.2-58.8 16.3-82.3 34.1L189.9 92l11.3-11.3c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-33.2 33zm110.4 208.4c-1.5 6-2.7 12.2-3.5 18.5H112v-16c0-13.3-10.7-24-24-24s-24 10.7-24 24v80c0 13.3 10.7 24 24 24s24-10.7 24-24v-16h33.6c4.2 30.7 16.3 58.8 34.1 82.3L156 386.1l-11.3-11.3c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l56.6 56.6c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L189.9 420l23.8-23.8c23.5 17.9 51.7 29.9 82.3 34.1v33.6h-16c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24h-16v-33.6c20.4-2.8 39.7-9.1 57.3-18.2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/virus-covid.svg�������������������0000664�0000000�0000000�00000002756�14753064456�0030257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 24c0-13.3 10.7-24 24-24h80c13.3 0 24 10.7 24 24s-10.7 24-24 24h-16v33.6c30.7 4.2 58.8 16.3 82.3 34.1L386.1 92l-11.3-11.4c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l56.6 56.6c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L420 125.9l-23.8 23.8c17.9 23.5 29.9 51.7 34.1 82.3h33.6v-16c0-13.3 10.7-24 24-24s24 10.7 24 24v80c0 13.3-10.7 24-24 24s-24-10.7-24-24v-16h-33.6c-4.2 30.7-16.3 58.8-34.1 82.3l23.8 23.8 11.3-11.3c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-56.6 56.6c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l11.4-11.4-23.8-23.8c-23.5 17.9-51.7 29.9-82.3 34.1v33.6h16c13.3 0 24 10.7 24 24s-10.7 24-24 24h-80c-13.3 0-24-10.7-24-24s10.7-24 24-24h16v-33.6c-30.7-4.2-58.8-16.3-82.3-34.1L125.9 420l11.3 11.3c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-56.6-56.5c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L92 386.1l23.8-23.8c-17.9-23.5-30-51.6-34.2-82.3H48v16c0 13.3-10.7 24-24 24S0 309.3 0 296v-80c0-13.3 10.7-24 24-24s24 10.7 24 24v16h33.6c4.2-30.7 16.3-58.8 34.1-82.3L92 125.9l-11.4 11.3c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l56.6-56.6c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L125.9 92l23.8 23.8c23.5-17.9 51.7-29.9 82.3-34.1V48h-16c-13.3 0-24-10.7-24-24m48 200a48 48 0 1 0-96 0 48 48 0 1 0 96 0m64 104a24 24 0 1 0 0-48 24 24 0 1 0 0 48"/></svg>������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/virus-slash.svg�������������������0000664�0000000�0000000�00000002104�14753064456�0030250�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2s-6.3 25.5 4.1 33.7l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-154.3-121c-2-30.1 20.8-60.1 56-60.1H544c17.7 0 32-14.3 32-32s-14.3-32-32-32h-11.5c-49.9 0-74.9-60.3-39.6-95.6l8.2-8.2c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-8.2 8.2C412.3 118.4 352 93.4 352 43.5V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v11.5c0 49.9-60.3 74.9-95.6 39.6l-8.2-8.1c-12.5-12.5-32.8-12.5-45.3 0-1.6 1.6-3.1 3.4-4.3 5.3zm225.8 177c6.9-3.9 14.9-6.1 23.4-6.1 26.5 0 48 21.5 48 48 0 4.4-.6 8.7-1.7 12.7zM402 412.7 144.7 210c-9.5 8.5-22.2 14-37.2 14H96c-17.7 0-32 14.3-32 32s14.3 32 32 32h11.5c49.9 0 74.9 60.3 39.6 95.6l-8.2 8.2c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l8.2-8.2c35.3-35.3 95.6-10.3 95.6 39.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32v-11.5c0-31.2 23.6-52.7 50-55.7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/virus.svg�������������������������0000664�0000000�0000000�00000002013�14753064456�0027137�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32v11.5c0 49.9-60.3 74.9-95.6 39.6l-8.2-8.1C107.7 62.5 87.5 62.5 75 75s-12.5 32.8 0 45.3l8.2 8.2c35.2 35.2 10.2 95.5-39.7 95.5H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h11.5c49.9 0 74.9 60.3 39.6 95.6l-8.1 8.2c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l8.2-8.2c35.3-35.3 95.6-10.3 95.6 39.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32v-11.5c0-49.9 60.3-74.9 95.6-39.6l8.2 8.2c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-8.2-8.2c-35.3-35.3-10.3-95.6 39.6-95.6h11.5c17.7 0 32-14.3 32-32s-14.3-32-32-32h-11.5c-49.9 0-74.9-60.3-39.6-95.6l8.2-8.2c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-8.2 8.2C348.3 118.4 288 93.4 288 43.5zM176 224a48 48 0 1 1 96 0 48 48 0 1 1-96 0m128 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/viruses.svg�����������������������0000664�0000000�0000000�00000003044�14753064456�0027474�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 0c13.3 0 24 10.7 24 24v13.5c0 35.6 43.1 53.5 68.3 28.3l9.5-9.5c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-9.5 9.5c-25.2 25.2-7.3 68.3 28.3 68.3H360c13.3 0 24 10.7 24 24s-10.7 24-24 24h-13.5c-35.6 0-53.5 43.1-28.3 68.3l9.5 9.5c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-9.5-9.5c-25.2-25.2-68.3-7.3-68.3 28.3V360c0 13.3-10.7 24-24 24s-24-10.7-24-24v-13.5c0-35.6-43.1-53.5-68.3-28.3l-9.5 9.5c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l9.5-9.5C91 259.1 73.1 216 37.5 216H24c-13.3 0-24-10.7-24-24s10.7-24 24-24h13.5c35.6 0 53.5-43.1 28.3-68.3l-9.5-9.5c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l9.5 9.5C124.9 91 168 73.1 168 37.5V24c0-13.3 10.7-24 24-24m48 224a16 16 0 1 0 0-32 16 16 0 1 0 0 32m-48-64a32 32 0 1 0-64 0 32 32 0 1 0 64 0m320 80c0 33 39.9 49.5 63.2 26.2 6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6C574.5 312.1 591 352 624 352c8.8 0 16 7.2 16 16s-7.2 16-16 16c-33 0-49.5 39.9-26.2 63.2 6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0C551.9 446.5 512 463 512 496c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-33-39.9-49.5-63.2-26.2-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6C417.5 423.9 401 384 368 384c-8.8 0-16-7.2-16-16s7.2-16 16-16c33 0 49.5-39.9 26.2-63.2-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0C440.1 289.5 480 273 480 240c0-8.8 7.2-16 16-16s16 7.2 16 16m0 112a32 32 0 1 0-64 0 32 32 0 1 0 64 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/voicemail.svg���������������������0000664�0000000�0000000�00000001062�14753064456�0027742�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M144 320a80 80 0 1 1 0-160 80 80 0 1 1 0 160m119.8 0c15.3-22.9 24.2-50.4 24.2-80 0-79.5-64.5-144-144-144S0 160.5 0 240s64.5 144 144 144h352c79.5 0 144-64.5 144-144S575.5 96 496 96s-144 64.5-144 144c0 29.6 8.9 57.1 24.2 80H263.7zM496 160a80 80 0 1 1 0 160 80 80 0 1 1 0-160"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/volcano.svg�����������������������0000664�0000000�0000000�00000001745�14753064456�0027443�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M160 144c-35.3 0-64-28.7-64-64s28.7-64 64-64c15.7 0 30 5.6 41.2 15C212.4 12.4 232.7 0 256 0s43.6 12.4 54.8 31c11.2-9.4 25.5-15 41.2-15 35.3 0 64 28.7 64 64s-28.7 64-64 64c-14.7 0-28.3-5-39.1-13.3l-32 48C275.3 187 266 192 256 192s-19.3-5-24.9-13.3l-32-48C188.3 139 174.7 144 160 144m-16 208 48.4-24.2c10.2-5.1 21.6-7.8 33-7.8 19.6 0 38.4 7.8 52.2 21.6l32.5 32.5c6.3 6.3 14.9 9.9 23.8 9.9 11.3 0 21.8-5.6 28-15l9.7-14.6-58.9-66.3c-9.1-10.2-22.2-16.1-35.9-16.1H235c-13.7 0-26.8 5.9-35.9 16.1l-59.9 67.4zm19.4-95.8c18.2-20.5 44.3-32.2 71.8-32.2H277c27.4 0 53.5 11.7 71.8 32.2l150.2 169c8.5 9.5 13.2 21.9 13.2 34.7 0 28.8-23.4 52.2-52.2 52.2L52.2 512C23.4 512 0 488.6 0 459.8c0-12.8 4.7-25.1 13.2-34.7l150.2-169z"/></svg>���������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/volleyball.svg��������������������0000664�0000000�0000000�00000002042�14753064456�0030136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M511.8 267.4c-26.1 8.7-53.4 13.8-81 15.1C440 177.2 399.3 78.3 327.6 10.1 434.1 41.1 512 139.5 512 256c0 3.8-.1 7.6-.2 11.4m-3.9 34.7c-5.8 32-17.6 62-34.2 88.7-97.5 48.5-217.7 42.6-311.9-24.5 23.7-36.2 55.4-67.7 94.5-91.8 79.9 43.2 170.1 50.8 251.6 27.6m-236-55.5C269.4 155.7 230.8 73.9 170 14.9 196.8 5.2 225.8 0 256 0c2.7 0 5.3 0 7.9.1 90.8 60.2 145.7 167.2 134.7 282.3-43.1-2.4-86.4-14.1-126.8-35.9zM138 28.8c20.6 18.3 38.7 39.4 53.7 62.6C95.9 136.1 30.6 220.8 7.3 316.9 2.5 297.4 0 277 0 256 0 157.2 56 71.5 138 28.8m69.6 90.5c19.5 38.6 31 81.9 32.3 127.7-77.4 47.6-129 121.9-149.7 204-24.2-20.6-44.6-45.6-59.8-73.8 6.7-108.7 71.9-209.9 177.1-257.9zM256 512c-50.7 0-98-14.7-137.8-40.2 5.6-27 14.8-53.1 27.4-77.7 86.6 60.5 192.5 74.7 287.4 46.9-46 44-108.3 71-177 71"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/volume-high.svg�������������������0000664�0000000�0000000�00000002113�14753064456�0030214�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M533.6 32.5C598.5 85.2 640 165.8 640 256s-41.5 170.7-106.4 223.5c-10.3 8.4-25.4 6.8-33.8-3.5s-6.8-25.4 3.5-33.8c54.2-44 88.7-111 88.7-186.2s-34.5-142.2-88.7-186.3c-10.3-8.4-11.8-23.5-3.5-33.8s23.5-11.8 33.8-3.5zM473.1 107c43.2 35.2 70.9 88.9 70.9 149s-27.7 113.8-70.9 149c-10.3 8.4-25.4 6.8-33.8-3.5s-6.8-25.4 3.5-33.8C475.3 341.3 496 301.1 496 256s-20.7-85.3-53.2-111.8c-10.3-8.4-11.8-23.5-3.5-33.8s23.5-11.8 33.8-3.5zm-60.5 74.5c21.5 17.6 35.4 44.4 35.4 74.5s-13.9 56.9-35.4 74.5c-10.3 8.4-25.4 6.8-33.8-3.5s-6.8-25.4 3.5-33.8C393.1 284.4 400 271 400 256s-6.9-28.4-17.7-37.3c-10.3-8.4-11.8-23.5-3.5-33.8s23.5-11.8 33.8-3.5zM301.1 34.8C312.6 40 320 51.4 320 64v384c0 12.6-7.4 24-18.9 29.2s-25 3.1-34.4-5.3L131.8 352H64c-35.3 0-64-28.7-64-64v-64c0-35.3 28.7-64 64-64h67.8L266.7 40.1c9.4-8.4 22.9-10.4 34.4-5.3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/volume-low.svg��������������������0000664�0000000�0000000�00000001251�14753064456�0030100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M301.1 34.8C312.6 40 320 51.4 320 64v384c0 12.6-7.4 24-18.9 29.2s-25 3.1-34.4-5.3L131.8 352H64c-35.3 0-64-28.7-64-64v-64c0-35.3 28.7-64 64-64h67.8L266.7 40.1c9.4-8.4 22.9-10.4 34.4-5.3m111.5 146.7c21.5 17.6 35.4 44.4 35.4 74.5s-13.9 56.9-35.4 74.5c-10.3 8.4-25.4 6.8-33.8-3.5s-6.8-25.4 3.5-33.8C393.1 284.4 400 271 400 256s-6.9-28.4-17.7-37.3c-10.3-8.4-11.8-23.5-3.5-33.8s23.5-11.8 33.8-3.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/volume-off.svg��������������������0000664�0000000�0000000�00000000714�14753064456�0030054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 64c0-12.6-7.4-24-18.9-29.2s-25-3.1-34.4 5.3L131.8 160H64c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64h67.8l134.9 119.9c9.4 8.4 22.9 10.4 34.4 5.3S320 460.6 320 448z"/></svg>����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/volume-xmark.svg������������������0000664�0000000�0000000�00000001270�14753064456�0030422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M301.1 34.8C312.6 40 320 51.4 320 64v384c0 12.6-7.4 24-18.9 29.2s-25 3.1-34.4-5.3L131.8 352H64c-35.3 0-64-28.7-64-64v-64c0-35.3 28.7-64 64-64h67.8L266.7 40.1c9.4-8.4 22.9-10.4 34.4-5.3M425 167l55 55 55-55c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-55 55 55 55c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-55-55-55 55c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l55-55-55-55c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/vr-cardboard.svg������������������0000664�0000000�0000000�00000001134�14753064456�0030340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M576 64H64C28.7 64 0 92.7 0 128v256c0 35.3 28.7 64 64 64h120.4c24.2 0 46.4-13.7 57.2-35.4l32-64c8.8-17.5 26.7-28.6 46.3-28.6s37.5 11.1 46.3 28.6l32 64c10.8 21.7 33 35.4 57.2 35.4H576c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64M96 240a64 64 0 1 1 128 0 64 64 0 1 1-128 0m384-64a64 64 0 1 1 0 128 64 64 0 1 1 0-128"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/w.svg�����������������������������0000664�0000000�0000000�00000001143�14753064456�0026240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M20.8 34c16.5-6.2 35 2.2 41.2 18.7l110.2 294L257.3 55c4-13.7 16.5-23 30.7-23s26.7 9.4 30.7 23l85.1 291.7L514 52.8c6.2-16.5 24.6-24.9 41.2-18.7s24.9 24.7 18.7 41.2l-144 384c-4.8 12.9-17.4 21.3-31.2 20.7s-25.7-9.8-29.5-23L288 178.3 206.7 457c-3.9 13.2-15.8 22.5-29.5 23s-26.3-7.8-31.2-20.7L2 75.2c-6.2-16.5 2.2-35 18.8-41.2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/walkie-talkie.svg�����������������0000664�0000000�0000000�00000001574�14753064456�0030525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M112 24c0-13.3-10.7-24-24-24S64 10.7 64 24v72H48c-26.5 0-48 21.5-48 48v156.1C0 312.8 5.1 325 14.1 334l3.9 3.9c9 9 14.1 21.2 14.1 33.9L32 464c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48v-92.1c0-12.7 5.1-24.9 14.1-33.9l3.9-3.9c9-9 14.1-21.2 14.1-33.9L384 144c0-26.5-21.5-48-48-48h-16c0-17.7-14.3-32-32-32s-32 14.3-32 32h-32c0-17.7-14.3-32-32-32s-32 14.3-32 32h-48zm0 136h160c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16m0 64h160c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16m0 64h160c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/wallet.svg������������������������0000664�0000000�0000000�00000000776�14753064456�0027275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V192c0-35.3-28.7-64-64-64H80c-8.8 0-16-7.2-16-16s7.2-16 16-16h368c17.7 0 32-14.3 32-32s-14.3-32-32-32zm352 240a32 32 0 1 1 0 64 32 32 0 1 1 0-64"/></svg>��mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/wand-magic-sparkles.svg�����������0000664�0000000�0000000�00000002153�14753064456�0031625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M234.7 42.7 197 56.8c-3 1.1-5 4-5 7.2s2 6.1 5 7.2l37.7 14.1 14.1 37.7c1.1 3 4 5 7.2 5s6.1-2 7.2-5l14.1-37.7L315 71.2c3-1.1 5-4 5-7.2s-2-6.1-5-7.2l-37.7-14.1L263.2 5c-1.1-3-4-5-7.2-5s-6.1 2-7.2 5zM46.1 395.4c-18.7 18.7-18.7 49.1 0 67.9l34.6 34.6c18.7 18.7 49.1 18.7 67.9 0l381.3-381.4c18.7-18.7 18.7-49.1 0-67.9l-34.6-34.5c-18.7-18.7-49.1-18.7-67.9 0zM484.6 82.6l-105 105-23.3-23.3 105-105zM7.5 117.2C3 118.9 0 123.2 0 128s3 9.1 7.5 10.8L64 160l21.2 56.5c1.7 4.5 6 7.5 10.8 7.5s9.1-3 10.8-7.5L128 160l56.5-21.2c4.5-1.7 7.5-6 7.5-10.8s-3-9.1-7.5-10.8L128 96l-21.2-56.5c-1.7-4.5-6-7.5-10.8-7.5s-9.1 3-10.8 7.5L64 96zm352 256c-4.5 1.7-7.5 6-7.5 10.8s3 9.1 7.5 10.8L416 416l21.2 56.5c1.7 4.5 6 7.5 10.8 7.5s9.1-3 10.8-7.5L480 416l56.5-21.2c4.5-1.7 7.5-6 7.5-10.8s-3-9.1-7.5-10.8L480 352l-21.2-56.5c-1.7-4.5-6-7.5-10.8-7.5s-9.1 3-10.8 7.5L416 352z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/wand-magic.svg��������������������0000664�0000000�0000000�00000000756�14753064456�0030012�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M14.1 463.3c-18.7-18.7-18.7-49.1 0-67.9L395.4 14.1c18.7-18.7 49.1-18.7 67.9 0l34.6 34.6c18.7 18.7 18.7 49.1 0 67.9L116.5 497.9c-18.7 18.7-49.1 18.7-67.9 0zm333.5-275.7 105-105-23.2-23.3-105 105 23.3 23.3z"/></svg>������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/wand-sparkles.svg�����������������0000664�0000000�0000000�00000002551�14753064456�0030551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M464 6.1c9.5-8.5 24-8.1 33 .9l8 8c9 9 9.4 23.5.9 33l-85.8 95.9c-2.6 2.9-4.1 6.7-4.1 10.7V176c0 8.8-7.2 16-16 16h-15.8c-4.6 0-8.9 1.9-11.9 5.3L100.7 500.9C94.3 508 85.3 512 75.8 512c-8.8 0-17.3-3.5-23.5-9.8L9.7 459.7C3.5 453.4 0 445 0 436.2c0-9.5 4-18.5 11.1-24.8l111.6-99.8c3.4-3 5.3-7.4 5.3-11.9v-27.6c0-8.8 7.2-16 16-16h34.6c3.9 0 7.7-1.5 10.7-4.1zM432 288c3.6 0 6.7 2.4 7.7 5.8l14.8 51.7 51.7 14.8c3.4 1 5.8 4.1 5.8 7.7s-2.4 6.7-5.8 7.7l-51.7 14.8-14.8 51.7c-1 3.4-4.1 5.8-7.7 5.8s-6.7-2.4-7.7-5.8l-14.8-51.7-51.7-14.8c-3.4-1-5.8-4.1-5.8-7.7s2.4-6.7 5.8-7.7l51.7-14.8 14.8-51.7c1-3.4 4.1-5.8 7.7-5.8M87.7 69.8l14.8 51.7 51.7 14.8c3.4 1 5.8 4.1 5.8 7.7s-2.4 6.7-5.8 7.7l-51.7 14.8-14.8 51.7c-1 3.4-4.1 5.8-7.7 5.8s-6.7-2.4-7.7-5.8l-14.8-51.7-51.7-14.8c-3.4-1-5.8-4.1-5.8-7.7s2.4-6.7 5.8-7.7l51.7-14.8 14.8-51.7c1-3.4 4.1-5.8 7.7-5.8s6.7 2.4 7.7 5.8M208 0c3.7 0 6.9 2.5 7.8 6.1l6.8 27.3 27.3 6.8c3.6.9 6.1 4.1 6.1 7.8s-2.5 6.9-6.1 7.8l-27.3 6.8-6.8 27.3c-.9 3.6-4.1 6.1-7.8 6.1s-6.9-2.5-7.8-6.1l-6.8-27.3-27.3-6.8c-3.6-.9-6.1-4.1-6.1-7.8s2.5-6.9 6.1-7.8l27.3-6.8 6.8-27.3c.9-3.6 4.1-6.1 7.8-6.1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/warehouse.svg���������������������0000664�0000000�0000000�00000001222�14753064456�0027772�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 488V171.3c0-26.2 15.9-49.7 40.2-59.4L308.1 4.8c7.6-3.1 16.1-3.1 23.8 0l267.9 107.1c24.3 9.7 40.2 33.3 40.2 59.4V488c0 13.3-10.7 24-24 24h-48c-13.3 0-24-10.7-24-24V224c0-17.7-14.3-32-32-32H128c-17.7 0-32 14.3-32 32v264c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24m488 24H152c-13.3 0-24-10.7-24-24v-56h384v56c0 13.3-10.7 24-24 24M128 400v-64h384v64zm0-96v-80h384v80z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/water-ladder.svg������������������0000664�0000000�0000000�00000002452�14753064456�0030351�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 127.7c0-52.8 42.9-95.7 95.7-95.7 48.3 0 89 36 95 83.9l1 8.2c2.2 17.5-10.2 33.5-27.8 35.7s-33.5-10.2-35.7-27.8l-1-8.2c-2-15.9-15.5-27.8-31.5-27.8-17.5 0-31.7 14.2-31.7 31.7V224h192v-96.3c0-52.8 42.9-95.7 95.7-95.7 48.3 0 89 36 95 83.9l1 8.2c2.2 17.5-10.2 33.5-27.8 35.7s-33.5-10.2-35.7-27.8l-1-8.2c-2-15.9-15.5-27.8-31.5-27.8-17.5 0-31.7 14.2-31.7 31.7V361c-1.6 1-3.3 2-4.8 3.1-18 12.4-40.1 20.3-59.2 20.3v-96.5H192v96.5c-19 0-41.2-7.9-59.1-20.3-1.6-1.1-3.2-2.2-4.9-3.1zm178.5 262.2c22.5 15.5 50 26.1 77.5 26.1 26.9 0 55.4-10.8 77.4-26.1 11.9-8.5 28.1-7.8 39.2 1.7 14.4 11.9 32.5 21 50.6 25.2 17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25-29 15.6-61.5 25.9-94.5 25.9-31.9 0-60.6-9.9-80.4-18.9-5.8-2.7-11.1-5.3-15.6-7.7-4.5 2.4-9.7 5.1-15.6 7.7-19.8 9-48.5 18.9-80.4 18.9-33 0-65.5-10.3-94.5-25.8-13.4 8.4-33.7 19.3-58.2 25-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2 11.1-9.4 27.3-10.1 39.2-1.7 22.1 15.2 50.5 26 77.4 26 27.5 0 55-10.6 77.5-26.1 11.1-7.9 25.9-7.9 37 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/water.svg�������������������������0000664�0000000�0000000�00000003634�14753064456�0027123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M269.5 69.9c11.1-7.9 25.9-7.9 37 0C329 85.4 356.5 96 384 96c26.9 0 55.4-10.8 77.4-26.1 11.9-8.5 28.1-7.8 39.2 1.7 14.4 11.9 32.5 21 50.6 25.2 17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25-29 15.6-61.5 25.9-94.5 25.9-31.9 0-60.6-9.9-80.4-18.9-5.8-2.7-11.1-5.3-15.6-7.7-4.5 2.4-9.7 5.1-15.6 7.7-19.8 9-48.5 18.9-80.4 18.9-33 0-65.5-10.3-94.5-25.8-13.4 8.4-33.7 19.3-58.2 25-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18-4.3 36.2-13.4 50.5-25.3 11.1-9.5 27.3-10.1 39.2-1.7C136.7 85.2 165.1 96 192 96c27.5 0 55-10.6 77.5-26.1m37 288c22.5 15.5 50 26.1 77.5 26.1 26.9 0 55.4-10.8 77.4-26.1 11.9-8.5 28.1-7.8 39.2 1.7 14.4 11.9 32.5 21 50.6 25.2 17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25-29 15.6-61.5 25.9-94.5 25.9-31.9 0-60.6-9.9-80.4-18.9-5.8-2.7-11.1-5.3-15.6-7.7-4.5 2.4-9.7 5.1-15.6 7.7-19.8 9-48.5 18.9-80.4 18.9-33 0-65.5-10.3-94.5-25.8-13.4 8.4-33.7 19.3-58.2 25-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2 11.1-9.4 27.3-10.1 39.2-1.7 22.1 15.2 50.5 26 77.4 26 27.5 0 55-10.6 77.5-26.1 11.1-7.9 25.9-7.9 37 0m0-144c22.5 15.5 50 26.1 77.5 26.1 26.9 0 55.4-10.8 77.4-26.1 11.9-8.5 28.1-7.8 39.2 1.7 14.4 11.9 32.5 21 50.6 25.2 17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25-29 15.6-61.5 25.9-94.5 25.9-31.9 0-60.6-9.9-80.4-18.9-5.8-2.7-11.1-5.3-15.6-7.7-4.5 2.4-9.7 5.1-15.6 7.7-19.8 9-48.5 18.9-80.4 18.9-33 0-65.5-10.3-94.5-25.8-13.4 8.4-33.7 19.3-58.2 25-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2 11.1-9.5 27.3-10.1 39.2-1.7 22.1 15.2 50.5 26 77.4 26 27.5 0 55-10.6 77.5-26.1 11.1-7.9 25.9-7.9 37 0"/></svg>����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/wave-square.svg�������������������0000664�0000000�0000000�00000001041�14753064456�0030227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 64c0-17.7 14.3-32 32-32h160c17.7 0 32 14.3 32 32v352h96V256c0-17.7 14.3-32 32-32h128c17.7 0 32 14.3 32 32s-14.3 32-32 32h-96v160c0 17.7-14.3 32-32 32H320c-17.7 0-32-14.3-32-32V96h-96v160c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h96z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/web-awesome.svg�������������������0000664�0000000�0000000�00000001240�14753064456�0030203�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M372.2 52c0 20.9-12.4 39-30.2 47.2L448 192l104.4-20.9c-5.3-7.7-8.4-17.1-8.4-27.1 0-26.5 21.5-48 48-48s48 21.5 48 48c0 26-20.6 47.1-46.4 48L481 442.3c-10.3 23-33.2 37.7-58.4 37.7H217.4c-25.2 0-48-14.8-58.4-37.7L46.4 192C20.6 191.1 0 170 0 144c0-26.5 21.5-48 48-48s48 21.5 48 48c0 10.1-3.1 19.4-8.4 27.1L192 192l106.1-92.9c-17.7-8.3-30-26.3-30-47.1 0-28.7 23.3-52 52-52s52 23.3 52 52z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/weight-hanging.svg����������������0000664�0000000�0000000�00000001101�14753064456�0030664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M224 96a32 32 0 1 1 64 0 32 32 0 1 1-64 0m122.5 32c3.5-10 5.5-20.8 5.5-32 0-53-43-96-96-96s-96 43-96 96c0 11.2 1.9 22 5.5 32H120c-22 0-41.2 15-46.6 36.4l-72 288c-3.6 14.3-.4 29.5 8.7 41.2S33.2 512 48 512h416c14.8 0 28.7-6.8 37.8-18.5s12.3-26.8 8.7-41.2l-72-288C433.2 143 414 128 392 128z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/weight-scale.svg������������������0000664�0000000�0000000�00000001202�14753064456�0030342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M128 176a128 128 0 1 1 256 0 128 128 0 1 1-256 0M391.8 64C359.5 24.9 310.7 0 256 0S152.5 24.9 120.2 64H64C28.7 64 0 92.7 0 128v320c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64zM296 224c0-10.6-4.1-20.2-10.9-27.4l33.6-78.3c3.5-8.1-.3-17.5-8.4-21s-17.5.3-21 8.4L255.7 184c-22 .1-39.7 18-39.7 40 0 22.1 17.9 40 40 40s40-17.9 40-40"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/wheat-awn-circle-exclamation.svg��0000664�0000000�0000000�00000002703�14753064456�0033431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M505 41c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L383 95c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l88-88zM305.5 27.3c-6.2-6.2-16.4-6.2-22.6 0l-11.4 11.3c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4-30.5 30.5c-3.4-27.3-15.5-53.8-36.5-74.8l-11.3-11.3c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4-30.5 30.5c-3.4-27.3-15.5-53.8-36.5-74.8L101.8 231c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4-68.9 68.9c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l68.9-68.9 12.2 12.2c37.5 37.5 98.3 37.5 135.8 0l11.3-11.3c6.2-6.2 6.2-16.4 0-22.6l-11.3-11.3c-21.8-21.8-49.6-34.1-78.1-36.9l31.9-31.9 12.2 12.2c22.5 22.5 53.3 31.5 82.4 27v-3.1c0-33.1 9.1-64.1 25-90.6-15.5-8.7-32.5-13.8-49.8-15.5l31.9-31.9 12.2 12.2c6 6 12.6 11.1 19.7 15.2 27.5-34 67.3-57.5 112.6-63.8q-6.15-5.7-12.9-10.5L505 137c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-59.4 59.4c-20.6-4.4-42-3.7-62.3 2.1 6.1-21.3 6.6-43.8 1.4-65.3L409 41c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-46 45.8c-3.7-5-7.8-9.8-12.4-14.3zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288m0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48m0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16v-80c0-8.8 7.2-16 16-16"/></svg>�������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/wheat-awn.svg���������������������0000664�0000000�0000000�00000002504�14753064456�0027667�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M505 41c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L383 95c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l88-88zM305.5 27.3c-6.2-6.2-16.4-6.2-22.6 0l-11.4 11.3c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4-30.5 30.5c-3.4-27.3-15.5-53.8-36.5-74.8l-11.3-11.3c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4-30.5 30.5c-3.4-27.3-15.5-53.8-36.5-74.8L101.8 231c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4-68.9 68.9c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l68.9-68.9 12.2 12.2c37.5 37.5 98.3 37.5 135.8 0l11.3-11.3c6.2-6.2 6.2-16.4 0-22.6l-11.3-11.3c-21.8-21.8-49.6-34.1-78.1-36.9l31.9-31.9 12.2 12.2c37.5 37.5 98.3 37.5 135.8 0l11.3-11.3c6.2-6.2 6.2-16.4 0-22.6L373.4 299c-21.8-21.8-49.6-34.1-78.1-36.9l31.9-31.9 12.2 12.2c37.5 37.5 98.3 37.5 135.8 0l11.3-11.4c6.2-6.2 6.2-16.4 0-22.6L475.2 197c-5.2-5.2-10.6-9.8-16.4-13.9L505 137c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-59.4 59.4c-20.6-4.4-42-3.7-62.3 2.1 6.1-21.3 6.6-43.8 1.4-65.3L409 41c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-46 45.8c-3.7-5-7.8-9.8-12.4-14.3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/wheelchair-move.svg���������������0000664�0000000�0000000�00000001417�14753064456�0031055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M320 48a48 48 0 1 1 96 0 48 48 0 1 1-96 0m-115.5 73.3c-5.4-2.5-11.7-1.9-16.4 1.7l-40.9 30.7c-14.1 10.6-34.2 7.7-44.8-6.4s-7.7-34.2 6.4-44.8l40.9-30.7c23.7-17.8 55.3-21 82.1-8.4l90.4 42.5c29.1 13.7 36.8 51.6 15.2 75.5L299.1 224h97.4c30.3 0 53 27.7 47.1 57.4l-28.2 140.9c-3.5 17.3-20.3 28.6-37.7 25.1s-28.6-20.3-25.1-37.7L377 288h-70.3c8.6 19.6 13.3 41.2 13.3 64 0 88.4-71.6 160-160 160S0 440.4 0 352s71.6-160 160-160c11.1 0 22 1.1 32.4 3.3l54.2-54.2zM160 448a96 96 0 1 0 0-192 96 96 0 1 0 0 192"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/wheelchair.svg��������������������0000664�0000000�0000000�00000001646�14753064456�0030115�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M192 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96m-71.5 151.2c12.4-4.7 18.7-18.5 14-30.9s-18.5-18.7-30.9-14C43.1 225.1 0 283.5 0 352c0 88.4 71.6 160 160 160 61.2 0 114.3-34.3 141.2-84.7 6.2-11.7 1.8-26.2-9.9-32.5s-26.2-1.8-32.5 9.9C240 440 202.8 464 160 464c-61.9 0-112-50.1-112-112 0-47.9 30.1-88.8 72.5-104.8M259.8 176l-1.9-9.7c-4.5-22.3-24-38.3-46.8-38.3-30.1 0-52.7 27.5-46.8 57l23.1 115.5c6 29.9 32.2 51.4 62.8 51.4h100.5c6.7 0 12.6 4.1 15 10.4l36.3 96.9c6 16.1 23.8 24.6 40.1 19.1l48-16c16.8-5.6 25.8-23.7 20.2-40.5s-23.7-25.8-40.5-20.2l-18.7 6.2-25.5-68c-11.7-31.2-41.6-51.9-74.9-51.9h-68.5l-9.6-48H336c17.7 0 32-14.3 32-32s-14.3-32-32-32h-76.2z"/></svg>������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/whiskey-glass.svg�����������������0000664�0000000�0000000�00000000745�14753064456�0030573�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 32c-9.3 0-18.1 4-24.2 11.1S-1 59.4.3 68.6l50 342.9C56 450.8 89.7 480 129.5 480h253c39.7 0 73.4-29.1 79.2-68.5l50-342.9c1.3-9.2-1.4-18.5-7.5-25.5S489.3 32 480 32zm55.7 192L69 96h374l-18.7 128z"/></svg>���������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/wifi.svg��������������������������0000664�0000000�0000000�00000001342�14753064456�0026731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M54.2 202.9C123.2 136.7 216.8 96 320 96s196.8 40.7 265.8 106.9c12.8 12.2 33 11.8 45.2-.9s11.8-33-.9-45.2C549.7 79.5 440.4 32 320 32S90.3 79.5 9.8 156.7C-2.9 169-3.3 189.2 8.9 202s32.5 13.2 45.2.9zM320 256c56.8 0 108.6 21.1 148.2 56 13.3 11.7 33.5 10.4 45.2-2.8s10.4-33.5-2.8-45.2C459.8 219.2 393 192 320 192s-139.8 27.2-190.5 72c-13.3 11.7-14.5 31.9-2.8 45.2s31.9 14.5 45.2 2.8c39.5-34.9 91.3-56 148.2-56zm64 160a64 64 0 1 0-128 0 64 64 0 1 0 128 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/wind.svg��������������������������0000664�0000000�0000000�00000001415�14753064456�0026735�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 32c0 17.7 14.3 32 32 32h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h320c53 0 96-43 96-96S405 0 352 0h-32c-17.7 0-32 14.3-32 32m64 352c0 17.7 14.3 32 32 32h32c53 0 96-43 96-96s-43-96-96-96H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h384c17.7 0 32 14.3 32 32s-14.3 32-32 32h-32c-17.7 0-32 14.3-32 32M128 512h32c53 0 96-43 96-96s-43-96-96-96H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h128c17.7 0 32 14.3 32 32s-14.3 32-32 32h-32c-17.7 0-32 14.3-32 32s14.3 32 32 32"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/window-maximize.svg���������������0000664�0000000�0000000�00000000734�14753064456�0031127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm32 64h320c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-17.7 0-32-14.3-32-32s14.3-32 32-32"/></svg>������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/window-minimize.svg���������������0000664�0000000�0000000�00000000566�14753064456�0031130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32h448c17.7 0 32-14.3 32-32s-14.3-32-32-32z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/window-restore.svg����������������0000664�0000000�0000000�00000001211�14753064456�0030756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M432 64H208c-8.8 0-16 7.2-16 16v16h-64V80c0-44.2 35.8-80 80-80h224c44.2 0 80 35.8 80 80v224c0 44.2-35.8 80-80 80h-16v-64h16c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16M0 192c0-35.3 28.7-64 64-64h256c35.3 0 64 28.7 64 64v256c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64zm64 32c0 17.7 14.3 32 32 32h192c17.7 0 32-14.3 32-32s-14.3-32-32-32H96c-17.7 0-32 14.3-32 32"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/wine-bottle.svg�������������������0000664�0000000�0000000�00000001430�14753064456�0030222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M393.4 9.4c12.5-12.5 32.8-12.5 45.3 0l64 64c12.5 12.5 12.5 32.8 0 45.3-11.8 11.8-30.7 12.5-43.2 1.9l-9.5 9.5-48.8 48.8c-9.2 9.2-11.5 22.9-8.6 35.6 9.4 40.9-1.9 85.6-33.8 117.5L197.3 493.3c-25 25-65.5 25-90.5 0l-88-88c-25-25-25-65.5 0-90.5l161.4-161.5c31.9-31.9 76.6-43.1 117.5-33.8 12.6 2.9 26.4.5 35.5-8.6L382 62.1l9.5-9.5c-10.6-12.6-10-31.4 1.9-43.2M99.3 347.3l65.4 65.4c6.2 6.2 16.4 6.2 22.6 0l97.4-97.4c6.2-6.2 6.2-16.4 0-22.6l-65.4-65.4c-6.2-6.2-16.4-6.2-22.6 0l-97.4 97.4c-6.2 6.2-6.2 16.4 0 22.6"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/wine-glass-empty.svg��������������0000664�0000000�0000000�00000001137�14753064456�0031202�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M64 0C47.4 0 33.5 12.8 32.1 29.3l-14 168.4c-6 72 42.5 135.2 109.9 150.6v99.6H80c-17.7 0-32 14.3-32 32s14.3 32 32 32h160c17.7 0 32-14.3 32-32s-14.3-32-32-32h-48v-99.6c67.4-15.4 115.9-78.6 109.9-150.6l-14-168.4C286.5 12.8 272.6 0 256 0zm17.9 203.1L93.4 64h133.1l11.6 139.1C242 248.8 205.9 288 160 288s-82-39.2-78.1-84.9"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/wine-glass.svg��������������������0000664�0000000�0000000�00000001047�14753064456�0030046�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32.1 29.3C33.5 12.8 47.4 0 64 0h192c16.6 0 30.5 12.8 31.9 29.3l14 168.4c6 72-42.5 135.2-109.9 150.6v99.6h48c17.7 0 32 14.3 32 32s-14.3 32-32 32H80c-17.7 0-32-14.3-32-32s14.3-32 32-32h48v-99.6C60.6 333 12.1 269.8 18.1 197.8l14-168.4zm56 98.7h143.8l-5.3-64H93.4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/won-sign.svg����������������������0000664�0000000�0000000�00000001430�14753064456�0027532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M62.4 53.9c-5.6-16.8-23.8-25.8-40.5-20.3S-3.9 57.4 1.6 74.1l50 149.9H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h40.9l56.7 170.1c4.5 13.5 17.4 22.4 31.6 21.9s26.4-10.4 29.8-24.2L233 288h46l42 167.8c3.4 13.8 15.6 23.7 29.8 24.2s27.1-8.4 31.6-21.9L439.1 288H480c17.7 0 32-14.3 32-32s-14.3-32-32-32h-19.6l50-149.9c5.6-16.8-3.5-34.9-20.2-40.5s-34.9 3.5-40.5 20.2L392.9 224h-64L287 56.2C283.5 42 270.7 32 256 32s-27.5 10-31 24.2L183 224h-64zm78 234.1H167l-11.4 45.6zM249 224l7-28.1 7 28.1zm96 64h26.6l-15.2 45.6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/worm.svg��������������������������0000664�0000000�0000000�00000001154�14753064456�0026760�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 96c0-53 43-96 96-96h38.4C439.9 0 480 40.1 480 89.6V376c0 75.1-60.9 136-136 136s-136-60.9-136-136v-80c0-22.1-17.9-40-40-40s-40 17.9-40 40v168c0 26.5-21.5 48-48 48s-48-21.5-48-48V296c0-75.1 60.9-136 136-136s136 60.9 136 136v80c0 22.1 17.9 40 40 40s40-17.9 40-40V192h-32c-53 0-96-43-96-96m144-8a24 24 0 1 0-48 0 24 24 0 1 0 48 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/wrench.svg������������������������0000664�0000000�0000000�00000001336�14753064456�0027264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M352 320c88.4 0 160-71.6 160-160 0-15.3-2.2-30.1-6.2-44.2-3.1-10.8-16.4-13.2-24.3-5.3l-76.8 76.8c-3 3-7.1 4.7-11.3 4.7H336c-8.8 0-16-7.2-16-16v-57.4c0-4.2 1.7-8.3 4.7-11.3l76.8-76.8c7.9-7.9 5.4-21.2-5.3-24.3C382.1 2.2 367.3 0 352 0c-88.4 0-160 71.6-160 160 0 19.1 3.4 37.5 9.5 54.5L19.9 396.1C7.2 408.8 0 426.1 0 444.1 0 481.6 30.4 512 67.9 512c18 0 35.3-7.2 48-19.9l181.6-181.6c17 6.2 35.4 9.5 54.5 9.5M80 408a24 24 0 1 1 0 48 24 24 0 1 1 0-48"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/x-ray.svg�������������������������0000664�0000000�0000000�00000001773�14753064456�0027043�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32h448c17.7 0 32 14.3 32 32s-14.3 32-32 32v320c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32V96C14.3 96 0 81.7 0 64m256 32c-8.8 0-16 7.2-16 16v32h-80c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v48H128c-8.8 0-16 7.2-16 16s7.2 16 16 16h112v70.6L189.1 307q-7.8-3-16.2-3h-2.1c-23.6 0-42.8 19.2-42.8 42.8 0 9.6 3.2 18.9 9.1 26.4l18.2 23.2c9.7 12.4 24.6 19.6 40.3 19.6h120.8c15.7 0 30.6-7.2 40.3-19.6l18.2-23.2c5.9-7.5 9.1-16.8 9.1-26.4 0-23.6-19.2-42.8-42.8-42.8H339c-5.5 0-11 1-16.2 3L272 326.6V256h112c8.8 0 16-7.2 16-16s-7.2-16-16-16H272v-48h80c8.8 0 16-7.2 16-16s-7.2-16-16-16h-80v-32c0-8.8-7.2-16-16-16m-48 256a16 16 0 1 1 0 32 16 16 0 1 1 0-32m80 16a16 16 0 1 1 32 0 16 16 0 1 1-32 0"/></svg>�����mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/x.svg�����������������������������0000664�0000000�0000000�00000001061�14753064456�0026240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M376.6 84.5c11.3-13.6 9.5-33.8-4.1-45.1s-33.8-9.5-45.1 4.1L192 206 56.6 43.5c-11.3-13.6-31.5-15.4-45.1-4.1S-3.9 70.9 7.4 84.5L150.3 256 7.4 427.5c-11.3 13.6-9.5 33.8 4.1 45.1s33.8 9.5 45.1-4.1L192 306l135.4 162.5c11.3 13.6 31.5 15.4 45.1 4.1s15.4-31.5 4.1-45.1L233.7 256z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/xmark.svg�������������������������0000664�0000000�0000000�00000001055�14753064456�0027116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3l105.4 105.3c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/xmarks-lines.svg������������������0000664�0000000�0000000�00000002147�14753064456�0030414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M32 32C14.3 32 0 46.3 0 64s14.3 32 32 32h576c17.7 0 32-14.3 32-32s-14.3-32-32-32zm0 384c-17.7 0-32 14.3-32 32s14.3 32 32 32h576c17.7 0 32-14.3 32-32s-14.3-32-32-32zM7 167c-9.4 9.4-9.4 24.6 0 33.9l55 55L7 311c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l55-55 55 55c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-55-55 55-55c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-55 55L41 167c-9.4-9.4-24.6-9.4-33.9 0zm258 0c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l55 55-55 55c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l55-55 55 55c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-55-55 55-55c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-55 55zm190 0c-9.4 9.4-9.4 24.6 0 33.9l55 55-55 55c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l55-55 55 55c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-55-55 55-55c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-55 55-55-55c-9.4-9.4-24.6-9.4-33.9 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/y.svg�����������������������������0000664�0000000�0000000�00000000715�14753064456�0026246�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M58 45.4C47.8 31 27.8 27.7 13.4 38S-4.3 68.2 6 82.6l154 215.7V448c0 17.7 14.3 32 32 32s32-14.3 32-32V298.3L378 82.6c10.3-14.4 6.9-34.4-7.4-44.6s-34.4-7-44.6 7.4L192 232.9z"/></svg>���������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/yen-sign.svg����������������������0000664�0000000�0000000�00000001204�14753064456�0027521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M58.6 46.3C48.8 31.5 29 27.6 14.2 37.4S-4.4 67 5.4 81.8L100.2 224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32h80v32H48c-17.7 0-32 14.3-32 32s14.3 32 32 32h80v64c0 17.7 14.3 32 32 32s32-14.3 32-32v-64h80c17.7 0 32-14.3 32-32s-14.3-32-32-32h-80v-32h80c17.7 0 32-14.3 32-32s-14.3-32-32-32h-52.2l94.8-142.2c9.8-14.7 5.8-34.6-8.9-44.4s-34.6-5.8-44.4 8.9L160 198.3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/yin-yang.svg����������������������0000664�0000000�0000000�00000001004�14753064456�0027521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M256 64c53 0 96 43 96 96s-43 96-96 96-96 43-96 96 43 96 96 96c-106 0-192-86-192-192S150 64 256 64m0 448a256 256 0 1 0 0-512 256 256 0 1 0 0 512m32-352a32 32 0 1 0-64 0 32 32 0 1 0 64 0m-64 192a32 32 0 1 1 64 0 32 32 0 1 1-64 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/fontawesome/solid/z.svg�����������������������������0000664�0000000�0000000�00000000753�14753064456�0026251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32h320c12.4 0 23.7 7.2 29 18.4s3.6 24.5-4.4 34.1L100.3 416H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-12.4 0-23.7-7.2-29-18.4s-3.6-24.5 4.4-34.1L283.7 96H32C14.3 96 0 81.7 0 64"/></svg>���������������������mkdocs-material-9.6.4/material/templates/.icons/logo-monochrome.svg���������������������������������0000664�0000000�0000000�00000000503�14753064456�0025434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> <path d="M17.029 18.772l.777 1.166-5.417 2.709L0 16.451V4.063l5.417-2.709 5.298 7.948 7.867-5.24L24 1.354V16.84l-5.417 2.709-1.554-.777zm2.023-13.827v13.253l3.949-1.975V2.97l-3.949 1.975zM5.076 2.642L1.458 4.45 12.73 21.358l3.618-1.809L5.076 2.642z" /> </svg> ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/logo.svg��������������������������������������������0000664�0000000�0000000�00000000661�14753064456�0023275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 89 89"> <path d="M3.136,17.387l0,42.932l42.932,21.467l-42.932,-64.399Z" /> <path d="M21.91,8l42.933,64.398l-18.775,9.388l-42.932,-64.399l18.774,-9.387Z" style="fill-opacity: 0.5" /> <path d="M67.535,17.387l-27.262,18.156l21.878,32.818l5.384,2.691l0,-53.665Z" /> <path d="M67.535,17.387l0,53.666l18.774,-9.388l0,-53.665l-18.774,9.387Z" style="fill-opacity: 0.25" /> </svg> �������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/�������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0023407�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/LICENSE������������������������������������0000664�0000000�0000000�00000001740�14753064456�0024416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Pictogrammers Free License -------------------------- This icon collection is released as free, open source, and GPL friendly by the [Pictogrammers](http://pictogrammers.com/) icon group. You may use it for commercial projects, open source projects, or anything really. # Icons: Apache 2.0 (https://www.apache.org/licenses/LICENSE-2.0) Some of the icons are redistributed under the Apache 2.0 license. All other icons are either redistributed under their respective licenses or are distributed under the Apache 2.0 license. # Fonts: Apache 2.0 (https://www.apache.org/licenses/LICENSE-2.0) All web and desktop fonts are distributed under the Apache 2.0 license. Web and desktop fonts contain some icons that are redistributed under the Apache 2.0 license. All other icons are either redistributed under their respective licenses or are distributed under the Apache 2.0 license. # Code: MIT (https://opensource.org/licenses/MIT) The MIT license applies to all non-font and non-icon files. ��������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ab-testing.svg�����������������������������0000664�0000000�0000000�00000000454�14753064456�0026170�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2a2 2 0 0 0-2 2v8h2V8h2v4h2V4a2 2 0 0 0-2-2zm0 2h2v2H4m18 9.5V14a2 2 0 0 0-2-2h-4v10h4a2 2 0 0 0 2-2v-1.5a1.54 1.54 0 0 0-1.5-1.5 1.54 1.54 0 0 0 1.5-1.5M20 20h-2v-2h2zm0-4h-2v-2h2M5.79 21.61l-1.58-1.22 14-18 1.58 1.22Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/abacus.svg���������������������������������0000664�0000000�0000000�00000000305�14753064456�0025364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 5h2v6H5zm5 0H8v6h2zM5 19h2v-6H5zm5-6H8v6h2v-2h5v-2h-5zm-8 8h2V3H2zM20 3v4h-7V5h-2v6h2V9h7v6h-2v-2h-2v6h2v-2h2v4h2V3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/abjad-arabic.svg���������������������������0000664�0000000�0000000�00000000622�14753064456�0026410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4c-1.92 0-3.5 1.58-3.5 3.5 0 .93.38 1.78 1 2.41-1.53 1-2.5 2.71-2.5 4.59 0 3.03 2.47 5.5 5.5 5.5 1.76 0 3.5-.46 5-1.34l-1-1.73c-1.22.7-2.6 1.07-4 1.07-1.94 0-3.5-1.55-3.5-3.5a3.49 3.49 0 0 1 2.59-3.38l5.21-1.4-.52-1.93L11.83 9c-.75-.1-1.33-.72-1.33-1.5 0-.84.66-1.5 1.5-1.5.26 0 .5.07.75.2l1-1.73C13.22 4.16 12.61 4 12 4"/></svg>��������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/abjad-hebrew.svg���������������������������0000664�0000000�0000000�00000000421�14753064456�0026440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.9 4 9 10.03a3.44 3.44 0 0 0-3 2.56L4 20h2.07l1.85-6.89c.17-.65.77-1.11 1.44-1.11h1.33l6.78 8h2.63L15 13.97a3.44 3.44 0 0 0 3-2.56L20 4h-2.07l-1.85 6.89c-.17.65-.77 1.11-1.44 1.11h-1.33L6.53 4Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/abugida-devanagari.svg���������������������0000664�0000000�0000000�00000000411�14753064456�0027617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 3v2h3c1.32 0 2.41.83 2.82 2H6v2h8v1h-2c-2.75 0-5 2.25-5 5s2.25 5 5 5c.77 0 1.45-.27 2-.7V21h2v-4h-2c-.45.62-1.17 1-2 1-1.67 0-3-1.33-3-3s1.33-3 3-3h4V9h2V7h-2.1c-.47-2.28-2.49-4-4.9-4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/abugida-thai.svg���������������������������0000664�0000000�0000000�00000000545�14753064456�0026453�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 20c0-2.56 1.87-7.58 4.86-12.75C14.29 6.5 15.08 6 16 6c1.12 0 2 .88 2 2v12h2V8c0-2.2-1.8-4-4-4-1.66 0-3.1.92-3.87 2.25-1.57 2.71-2.52 4.9-3.13 6.78V6.5C9 5.13 7.87 4 6.5 4S4 5.13 4 6.5 5.13 9 6.5 9c.17 0 .34 0 .5-.05V20M6.5 6c.29 0 .5.21.5.5s-.21.5-.5.5-.5-.21-.5-.5.21-.5.5-.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/access-point-check.svg���������������������0000664�0000000�0000000�00000001176�14753064456�0027600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.59 14.84 1.16 1.41L17 21l-2.75-3 1.16-1.16L17 18.43zm-1.52-9.91-1.41 1.41A7.96 7.96 0 0 1 20 12v.34c.68.25 1.33.62 1.88 1.09.07-.47.12-.93.12-1.43 0-2.76-1.12-5.26-2.93-7.07m-3.11 7.43c.64-.23 1.32-.36 2.04-.36 0-1.65-.67-3.15-1.76-4.24l-1.41 1.41A4 4 0 0 1 16 12c0 .12-.03.24-.04.36M12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2M6.34 6.34 4.93 4.93C3.12 6.74 2 9.24 2 12s1.12 5.26 2.93 7.07l1.41-1.41A7.94 7.94 0 0 1 4 12c0-2.21.89-4.22 2.34-5.66m1.42 1.42C6.67 8.85 6 10.35 6 12s.67 3.15 1.76 4.24l1.41-1.41C8.45 14.11 8 13.11 8 12s.45-2.11 1.17-2.83z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/access-point-minus.svg���������������������0000664�0000000�0000000�00000001113�14753064456�0027645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 12c0-1.11-.45-2.11-1.17-2.83l1.41-1.41A5.98 5.98 0 0 1 18 12c-.72 0-1.4.13-2.04.36.01-.12.04-.24.04-.36m4 .34c.68.25 1.33.62 1.88 1.09.07-.47.12-.93.12-1.43 0-2.76-1.12-5.26-2.93-7.07l-1.41 1.41A7.96 7.96 0 0 1 20 12zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2M7.76 7.76C6.67 8.85 6 10.35 6 12s.67 3.15 1.76 4.24l1.41-1.41C8.45 14.11 8 13.11 8 12s.45-2.11 1.17-2.83zM6.34 6.34 4.93 4.93C3.12 6.74 2 9.24 2 12s1.12 5.26 2.93 7.07l1.41-1.41A7.94 7.94 0 0 1 4 12c0-2.21.89-4.22 2.34-5.66M14 19h8v-2h-8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/access-point-network-off.svg���������������0000664�0000000�0000000�00000001441�14753064456�0030757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.83 13.83A4 4 0 0 0 16 11c0-1.11-.45-2.11-1.17-2.83l1.41-1.41A5.98 5.98 0 0 1 18 11c0 1.65-.67 3.15-1.76 4.24zM14 11a2 2 0 0 0-2-2c-.6 0-1.13.27-1.5.68l2.82 2.82c.41-.37.68-.9.68-1.5m3.66 5.66 1.41 1.41A9.97 9.97 0 0 0 22 11c0-2.76-1.12-5.26-2.93-7.07l-1.41 1.41A7.96 7.96 0 0 1 20 11c0 2.22-.89 4.22-2.34 5.66M22 21.18V20h-1.18zm-1.73.82.73.73L19.73 24l-2-2H15a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1H2v-2h7a1 1 0 0 1 1-1h1v-3.73l-2.66-2.66c.2.46.48.89.83 1.22l-1.41 1.41A5.98 5.98 0 0 1 6 11c0-.23 0-.46.04-.69L4.37 8.64C4.14 9.39 4 10.18 4 11c0 2.22.89 4.22 2.34 5.66l-1.41 1.41A9.97 9.97 0 0 1 2.81 7.08L1 5.27 2.28 4 3.7 5.42l1.45 1.45 1.48 1.48L8.17 9.9l2.11 2.1.72.71L18.27 20h.01l2 2zm-4.54-2L13 17.27V19h1a1 1 0 0 1 1 1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/access-point-network.svg�������������������0000664�0000000�0000000�00000001264�14753064456�0030212�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.93 3.93A9.97 9.97 0 0 0 2 11c0 2.76 1.12 5.26 2.93 7.07l1.41-1.41A7.94 7.94 0 0 1 4 11c0-2.21.89-4.22 2.34-5.66zm14.14 0-1.41 1.41A7.96 7.96 0 0 1 20 11c0 2.22-.89 4.22-2.34 5.66l1.41 1.41A9.97 9.97 0 0 0 22 11c0-2.76-1.12-5.26-2.93-7.07M7.76 6.76A5.98 5.98 0 0 0 6 11c0 1.65.67 3.15 1.76 4.24l1.41-1.41A4 4 0 0 1 8 11c0-1.11.45-2.11 1.17-2.83zm8.48 0-1.41 1.41A4 4 0 0 1 16 11c0 1.11-.45 2.11-1.17 2.83l1.41 1.41A5.98 5.98 0 0 0 18 11c0-1.65-.67-3.15-1.76-4.24M12 9a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m-1 6v4h-1a1 1 0 0 0-1 1H2v2h7a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1h7v-2h-7a1 1 0 0 0-1-1h-1v-4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/access-point-off.svg�����������������������0000664�0000000�0000000�00000001137�14753064456�0027272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.84 22.73 12.1 14H12a2 2 0 0 1-2-2v-.1l-1.6-1.61c-.25.52-.4 1.09-.4 1.71 0 1.11.45 2.11 1.17 2.83l-1.41 1.41A5.98 5.98 0 0 1 6 12c0-1.17.34-2.26.93-3.18L5.5 7.37C4.55 8.67 4 10.27 4 12c0 2.22.89 4.22 2.34 5.66l-1.41 1.41A9.97 9.97 0 0 1 2 12c0-2.28.77-4.37 2.06-6.05L1.11 3l1.28-1.27 19.72 19.73zm-4.91-10 1.6 1.6c.3-.72.47-1.5.47-2.33 0-1.65-.67-3.15-1.76-4.24l-1.41 1.41a3.99 3.99 0 0 1 1.1 3.56m3.1 3.1 1.47 1.45c.94-1.53 1.5-3.34 1.5-5.28 0-2.76-1.12-5.26-2.93-7.07l-1.41 1.41A7.96 7.96 0 0 1 20 12c0 1.39-.35 2.7-.97 3.83"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/access-point-plus.svg����������������������0000664�0000000�0000000�00000001136�14753064456�0027502�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 12c0-1.11-.45-2.11-1.17-2.83l1.41-1.41A5.98 5.98 0 0 1 18 12c-.72 0-1.4.13-2.04.36.01-.12.04-.24.04-.36m4 .34c.68.25 1.33.62 1.88 1.09.07-.47.12-.93.12-1.43 0-2.76-1.12-5.26-2.93-7.07l-1.41 1.41A7.96 7.96 0 0 1 20 12zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2M6.34 6.34 4.93 4.93C3.12 6.74 2 9.24 2 12s1.12 5.26 2.93 7.07l1.41-1.41A7.94 7.94 0 0 1 4 12c0-2.21.89-4.22 2.34-5.66m1.42 1.42C6.67 8.85 6 10.35 6 12s.67 3.15 1.76 4.24l1.41-1.41C8.45 14.11 8 13.11 8 12s.45-2.11 1.17-2.83zM19 14h-2v3h-3v2h3v3h2v-3h3v-2h-3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/access-point-remove.svg��������������������0000664�0000000�0000000�00000001272�14753064456�0030015�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 12c0-1.11-.45-2.11-1.17-2.83l1.41-1.41A5.98 5.98 0 0 1 18 12c-.72 0-1.4.13-2.04.36.01-.12.04-.24.04-.36M6.34 6.34 4.93 4.93C3.12 6.74 2 9.24 2 12s1.12 5.26 2.93 7.07l1.41-1.41A7.94 7.94 0 0 1 4 12c0-2.21.89-4.22 2.34-5.66m12.73-1.41-1.41 1.41A7.96 7.96 0 0 1 20 12v.34c.68.25 1.33.62 1.88 1.09.07-.47.12-.93.12-1.43 0-2.76-1.12-5.26-2.93-7.07M12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2M7.76 7.76C6.67 8.85 6 10.35 6 12s.67 3.15 1.76 4.24l1.41-1.41C8.45 14.11 8 13.11 8 12s.45-2.11 1.17-2.83zm12.36 6.7L18 16.59l-2.12-2.12-1.41 1.41L16.59 18l-2.12 2.12 1.41 1.41L18 19.41l2.12 2.12 1.41-1.41L19.41 18l2.12-2.12z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/access-point.svg���������������������������0000664�0000000�0000000�00000001134�14753064456�0026517�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.93 4.93A9.97 9.97 0 0 0 2 12c0 2.76 1.12 5.26 2.93 7.07l1.41-1.41A7.94 7.94 0 0 1 4 12c0-2.21.89-4.22 2.34-5.66zm14.14 0-1.41 1.41A7.96 7.96 0 0 1 20 12c0 2.22-.89 4.22-2.34 5.66l1.41 1.41A9.97 9.97 0 0 0 22 12c0-2.76-1.12-5.26-2.93-7.07M7.76 7.76A5.98 5.98 0 0 0 6 12c0 1.65.67 3.15 1.76 4.24l1.41-1.41A4 4 0 0 1 8 12c0-1.11.45-2.11 1.17-2.83zm8.48 0-1.41 1.41A4 4 0 0 1 16 12c0 1.11-.45 2.11-1.17 2.83l1.41 1.41A5.98 5.98 0 0 0 18 12c0-1.65-.67-3.15-1.76-4.24M12 10a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-alert-outline.svg������������������0000664�0000000�0000000�00000000561�14753064456�0030350�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 12V7h2v6h-2m0 4h2v-2h-2m-10-2c2.67 0 8 1.34 8 4v3H2v-3c0-2.66 5.33-4 8-4m0-9a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 10.9c-2.97 0-6.1 1.46-6.1 2.1v1.1h12.2V17c0-.64-3.13-2.1-6.1-2.1m0-9A2.1 2.1 0 0 0 7.9 8a2.1 2.1 0 0 0 2.1 2.1A2.1 2.1 0 0 0 12.1 8 2.1 2.1 0 0 0 10 5.9"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-alert.svg��������������������������0000664�0000000�0000000�00000000325�14753064456�0026671�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 4a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 10c4.42 0 8 1.79 8 4v2H2v-2c0-2.21 3.58-4 8-4m10-2V7h2v6h-2m0 4v-2h2v2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-arrow-down-outline.svg�������������0000664�0000000�0000000�00000000513�14753064456�0031335�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 18v-4h-2v4h-2l3 3 3-3zM11 4C8.8 4 7 5.8 7 8s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4m0 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0 7c-2.7 0-8 1.3-8 4v3h9.5c-.3-.6-.4-1.2-.5-1.9H4.9V17c0-.6 3.1-2.1 6.1-2.1.5 0 1 .1 1.5.1.3-.6.6-1.2 1.1-1.7-1-.2-1.9-.3-2.6-.3"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-arrow-down.svg���������������������0000664�0000000�0000000�00000000361�14753064456�0027661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 18v-4h-2v4h-2l3 3 3-3zM11 4C8.8 4 7 5.8 7 8s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4m0 10c-4.4 0-8 1.8-8 4v2h9.5c-.3-.8-.5-1.6-.5-2.5 0-1.2.3-2.3.9-3.4-.6 0-1.2-.1-1.9-.1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-arrow-left-outline.svg�������������0000664�0000000�0000000�00000000514�14753064456�0031321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 18h4v-2h-4v-2l-3 3 3 3zM11 4C8.8 4 7 5.8 7 8s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4m0 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0 7c-2.7 0-8 1.3-8 4v3h9.5c-.3-.6-.4-1.2-.5-1.9H4.9V17c0-.6 3.1-2.1 6.1-2.1.5 0 1 .1 1.5.1.3-.6.6-1.2 1.1-1.7-1-.2-1.9-.3-2.6-.3"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-arrow-left.svg���������������������0000664�0000000�0000000�00000000362�14753064456�0027645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 18h4v-2h-4v-2l-3 3 3 3zM11 4C8.8 4 7 5.8 7 8s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4m0 10c-4.4 0-8 1.8-8 4v2h9.5c-.3-.8-.5-1.6-.5-2.5 0-1.2.3-2.3.9-3.4-.6 0-1.2-.1-1.9-.1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-arrow-right-outline.svg������������0000664�0000000�0000000�00000000511�14753064456�0031501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 16h-4v2h4v2l3-3-3-3zM11 4C8.8 4 7 5.8 7 8s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4m0 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0 7c-2.7 0-8 1.3-8 4v3h9.5c-.3-.6-.4-1.2-.5-1.9H4.9V17c0-.6 3.1-2.1 6.1-2.1.5 0 1 .1 1.5.1.3-.6.6-1.2 1.1-1.7-1-.2-1.9-.3-2.6-.3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-arrow-right.svg��������������������0000664�0000000�0000000�00000000357�14753064456�0030034�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 16h-4v2h4v2l3-3-3-3zM11 4C8.8 4 7 5.8 7 8s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4m0 10c-4.4 0-8 1.8-8 4v2h9.5c-.3-.8-.5-1.6-.5-2.5 0-1.2.3-2.3.9-3.4-.6 0-1.2-.1-1.9-.1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-arrow-up-outline.svg���������������0000664�0000000�0000000�00000000512�14753064456�0031011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 17v4h2v-4h2l-3-3-3 3zM11 4C8.8 4 7 5.8 7 8s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4m0 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0 7c-2.7 0-8 1.3-8 4v3h9.5c-.3-.6-.4-1.2-.5-1.9H4.9V17c0-.6 3.1-2.1 6.1-2.1.5 0 1 .1 1.5.1.3-.6.6-1.2 1.1-1.7-1-.2-1.9-.3-2.6-.3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-arrow-up.svg�����������������������0000664�0000000�0000000�00000000360�14753064456�0027335�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 17v4h2v-4h2l-3-3-3 3zM11 4C8.8 4 7 5.8 7 8s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4m0 10c-4.4 0-8 1.8-8 4v2h9.5c-.3-.8-.5-1.6-.5-2.5 0-1.2.3-2.3.9-3.4-.6 0-1.2-.1-1.9-.1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-badge-outline.svg������������������0000664�0000000�0000000�00000000577�14753064456�0030312�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 20H4v-3c0-2.7 5.3-4 8-4 1.5 0 3.9.4 5.7 1.3-.8.3-1.4.7-2 1.2-1.1-.4-2.4-.6-3.7-.6-3 0-6.1 1.5-6.1 2.1v1.1h8.3c-.1.4-.2.9-.2 1.4zm9-.5c0 1.9-1.6 3.5-3.5 3.5S16 21.4 16 19.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5M12 6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2C9.8 4 8 5.8 8 8s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4"/></svg>���������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-badge.svg��������������������������0000664�0000000�0000000�00000000430�14753064456�0026621�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 19.5c0-2 1.1-3.8 2.7-4.7-1.3-.5-2.9-.8-4.7-.8-4.4 0-8 1.8-8 4v2h10zm5.5-3.5c-1.9 0-3.5 1.6-3.5 3.5s1.6 3.5 3.5 3.5 3.5-1.6 3.5-3.5-1.6-3.5-3.5-3.5M16 8c0 2.2-1.8 4-4 4s-4-1.8-4-4 1.8-4 4-4 4 1.8 4 4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-box-edit-outline.svg���������������0000664�0000000�0000000�00000001136�14753064456�0030753�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.7 13.58-1.28-1.28a.55.55 0 0 0-.77 0l-1 1 2.05 2.05 1-1a.55.55 0 0 0 0-.77M12 22h2.06l6.05-6.07-2.05-2.05L12 19.94zm-2-1H5c-.53 0-1.04-.21-1.41-.59C3.21 20.04 3 19.53 3 19V5c0-.53.21-1.04.59-1.41C3.96 3.21 4.47 3 5 3h14a2 2 0 0 1 2 2v5.33a2.57 2.57 0 0 0-2 .03V5H5v14h5.11l-.11.11zm4.62-6.5L12.11 17H7.5v-.75c0-1.5 3-2.25 4.5-2.25.7 0 1.73.16 2.62.5m-1.03-2.91c-.42.41-.99.66-1.59.66s-1.17-.25-1.59-.66A2.3 2.3 0 0 1 9.75 10c0-.6.25-1.17.66-1.59.42-.41.99-.66 1.59-.66s1.17.25 1.59.66c.41.42.66.99.66 1.59s-.25 1.17-.66 1.59"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-box-minus-outline.svg��������������0000664�0000000�0000000�00000001020�14753064456�0031151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.4 14.15c-.67.8-1.14 1.78-1.32 2.85H7.5v-.75c0-1.5 3-2.25 4.5-2.25.39 0 .88.05 1.4.15M19 5v7.08c.72.12 1.39.37 2 .72V5a2 2 0 0 0-2-2H5c-.53 0-1.04.21-1.41.59C3.21 3.96 3 4.47 3 5v14c0 .53.21 1.04.59 1.41.37.38.88.59 1.41.59h7.8c-.35-.61-.6-1.28-.72-2H5V5zm-7 7.25c.6 0 1.17-.25 1.59-.66.41-.42.66-.99.66-1.59s-.25-1.17-.66-1.59A2.3 2.3 0 0 0 12 7.75c-.6 0-1.17.25-1.59.66-.41.42-.66.99-.66 1.59s.25 1.17.66 1.59c.42.41.99.66 1.59.66M22 17v2h-8v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-box-multiple-outline.svg�����������0000664�0000000�0000000�00000000533�14753064456�0031661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 6H2v14a2 2 0 0 0 2 2h14v-2H4zm14.5 8.25c0-1.5-3-2.25-4.5-2.25s-4.5.75-4.5 2.25V15h9M14 10.25c1.24 0 2.25-1.01 2.25-2.25S15.24 5.75 14 5.75 11.75 6.76 11.75 8s1.01 2.25 2.25 2.25M20 2H8c-1.1 0-2 .9-2 2v12a2 2 0 0 0 2 2h12c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2m0 14H8V4h12z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-box-multiple.svg�������������������0000664�0000000�0000000�00000000427�14753064456�0030206�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 6H2v14a2 2 0 0 0 2 2h14v-2H4zm16-4a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm-3 5a3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3m-9 8v1h12v-1c0-2-4-3.1-6-3.1S8 13 8 15"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-box-outline.svg��������������������0000664�0000000�0000000�00000000503�14753064456�0030025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19H5V5h14m0-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-2.5 13.25c0-1.5-3-2.25-4.5-2.25s-4.5.75-4.5 2.25V17h9M12 12.25A2.25 2.25 0 0 0 14.25 10 2.25 2.25 0 0 0 12 7.75 2.25 2.25 0 0 0 9.75 10 2.25 2.25 0 0 0 12 12.25"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-box-plus-outline.svg���������������0000664�0000000�0000000�00000001043�14753064456�0031006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.4 14.15c-.67.8-1.14 1.78-1.32 2.85H7.5v-.75c0-1.5 3-2.25 4.5-2.25.39 0 .88.05 1.4.15M19 5v7.08c.72.12 1.39.37 2 .72V5a2 2 0 0 0-2-2H5c-.53 0-1.04.21-1.41.59C3.21 3.96 3 4.47 3 5v14c0 .53.21 1.04.59 1.41.37.38.88.59 1.41.59h7.8c-.35-.61-.6-1.28-.72-2H5V5zm-7 7.25c.6 0 1.17-.25 1.59-.66.41-.42.66-.99.66-1.59s-.25-1.17-.66-1.59A2.3 2.3 0 0 0 12 7.75c-.6 0-1.17.25-1.59.66-.41.42-.66.99-.66 1.59s.25 1.17.66 1.59c.42.41.99.66 1.59.66M17 14h2v3h3v2h-3v3h-2v-3h-3v-2h3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-box.svg����������������������������0000664�0000000�0000000�00000000365�14753064456�0026356�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 17c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1H6m9-9a3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3 3 3 0 0 1 3 3M3 5v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-cancel-outline.svg�����������������0000664�0000000�0000000�00000001075�14753064456�0030467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 4a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4m0 2a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m0 7c-2.67 0-8 1.33-8 4v3h9.5a6.5 6.5 0 0 1-.47-1.9H3.9V17c0-.64 3.13-2.1 6.1-2.1.5 0 1 .05 1.5.13a6.5 6.5 0 0 1 1.05-1.74C11.61 13.1 10.71 13 10 13m7.5 0C15 13 13 15 13 17.5s2 4.5 4.5 4.5 4.5-2 4.5-4.5-2-4.5-4.5-4.5m0 1.5c1.66 0 3 1.34 3 3 0 .56-.15 1.08-.42 1.5L16 14.92c.42-.27.94-.42 1.5-.42M14.92 16 19 20.08c-.42.27-.94.42-1.5.42-1.66 0-3-1.34-3-3 0-.56.15-1.08.42-1.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-cancel.svg�������������������������0000664�0000000�0000000�00000000723�14753064456�0027011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 4a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4m7.5 9C15 13 13 15 13 17.5s2 4.5 4.5 4.5 4.5-2 4.5-4.5-2-4.5-4.5-4.5M10 14c-4.42 0-8 1.79-8 4v2h9.5a6.5 6.5 0 0 1-.5-2.5 6.5 6.5 0 0 1 .95-3.36c-.63-.08-1.27-.14-1.95-.14m7.5.5c1.66 0 3 1.34 3 3 0 .56-.15 1.08-.42 1.5L16 14.92c.42-.27.94-.42 1.5-.42M14.92 16 19 20.08c-.42.27-.94.42-1.5.42-1.66 0-3-1.34-3-3 0-.56.15-1.08.42-1.5"/></svg>���������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-card-outline.svg�������������������0000664�0000000�0000000�00000000530�14753064456�0030146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 4C4.8 4 3 5.8 3 8s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4m0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-7 8c0-2.2 3.1-4 7-4 1.5 0 2.9.3 4 .7V17c-.8-.5-2.2-1-4-1-3.2 0-5 1.4-5 2h9v2H0zM22 4h-7c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2m0 14h-7V6h7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-card.svg���������������������������0000664�0000000�0000000�00000000372�14753064456�0026475�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 12c2.2 0 4-1.8 4-4S9.2 4 7 4 3 5.8 3 8s1.8 4 4 4m4 8v-5.3c-1.1-.4-2.5-.7-4-.7-3.9 0-7 1.8-7 4v2zm4-16c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-cash-outline.svg�������������������0000664�0000000�0000000�00000000635�14753064456�0030161�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 11.5a2.5 2.5 0 0 1 5 0 2.5 2.5 0 0 1-5 0M13 3v17h11V3zm9 13c-1.1 0-2 .9-2 2h-3a2 2 0 0 0-2-2V7c1.11 0 2-.89 2-2h3a2 2 0 0 0 2 2zM7 6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2C4.79 4 3 5.79 3 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4m0 10c-3.87 0-7 1.79-7 4v2h11v-2H2c0-.58 1.75-2 5-2 1.83 0 3.17.45 4 .95v-2.23C9.87 14.27 8.5 14 7 14"/></svg>���������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-cash.svg���������������������������0000664�0000000�0000000�00000000476�14753064456�0026507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 8c0 2.21-1.79 4-4 4s-4-1.79-4-4 1.79-4 4-4 4 1.79 4 4m0 6.72V20H0v-2c0-2.21 3.13-4 7-4 1.5 0 2.87.27 4 .72M24 20H13V3h11zm-8-8.5a2.5 2.5 0 0 1 5 0 2.5 2.5 0 0 1-5 0M22 7a2 2 0 0 1-2-2h-3c0 1.11-.89 2-2 2v9a2 2 0 0 1 2 2h3c0-1.1.9-2 2-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-check-outline.svg������������������0000664�0000000�0000000�00000000552�14753064456�0030316�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.1 12.5 1.4 1.41-6.53 6.59L12.5 17l1.4-1.41 2.07 2.08zM11 4a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m0 7c.68 0 1.5.09 2.41.26l-1.67 1.67-.74-.03c-2.97 0-6.1 1.46-6.1 2.1v1.1h6.2L13 20H3v-3c0-2.66 5.33-4 8-4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-check.svg��������������������������0000664�0000000�0000000�00000000356�14753064456�0026643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.1 12.5 1.4 1.41-6.53 6.59L12.5 17l1.4-1.41 2.07 2.08zM10 17l3 3H3v-2c0-2.21 3.58-4 8-4l1.89.11zm1-13a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-child-circle.svg�������������������0000664�0000000�0000000�00000001155�14753064456�0030106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 12a1.5 1.5 0 0 1 1.5 1.5A1.5 1.5 0 0 1 12 15a1.5 1.5 0 0 1-1.5-1.5A1.5 1.5 0 0 1 12 12m0-10a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 14c.72 0 1.4.15 2.04.5.64.3.96.7.96 1.17v1.74c1.34-.6 2-1.33 2-2.21v-4.4c0-.8-.5-1.45-1.55-2-1.05-.54-2.2-.8-3.45-.8s-2.4.26-3.45.8C7.5 11.35 7 12 7 12.8v4.4c0 .8.53 1.49 1.63 2.02 1.09.53 2.21.78 3.37.78l1-.08v-2.01L12 18c-1 0-2-.2-2.95-.61.12-.39.48-.7 1.08-.98.59-.28 1.21-.41 1.87-.41m0-12a2.5 2.5 0 0 0-2.5 2.5A2.5 2.5 0 0 0 12 9a2.5 2.5 0 0 0 2.5-2.5A2.5 2.5 0 0 0 12 4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-child-outline.svg������������������0000664�0000000�0000000�00000001056�14753064456�0030324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m0-7c2.34 0 7 1.16 7 3.5v5.13c0 .87-.69 1.61-1.66 2.16v-7.41c0-.56-2.74-1.84-5.34-1.84s-5.34 1.28-5.34 1.84v5.37c0 .25.65.71 1.62 1.1C9 19 10.93 18.56 12 18.56c1.33 0 4 .66 4 2v.83c-1.37.49-2.93.74-4 .74s-2.62-.25-4-.74c-1.63-.58-3-1.5-3-2.76V13.5c0-2.34 4.66-3.5 7-3.5m0-6.25c-.97 0-1.75.78-1.75 1.75s.78 1.75 1.75 1.75 1.75-.78 1.75-1.75-.78-1.75-1.75-1.75M12 9c-1.93 0-3.5-1.57-3.5-3.5S10.07 2 12 2s3.5 1.57 3.5 3.5S13.93 9 12 9"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-child.svg��������������������������0000664�0000000�0000000�00000000772�14753064456�0026653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3m0 7c1.63 0 3.12.35 4.5 1.05 1.34.71 2 1.56 2 2.56v5.77c0 1.12-.86 2.06-2.61 2.81V19c0-.95-.86-1.62-2.58-2.03-.56-.13-1-.19-1.31-.19-.87 0-1.7.17-2.46.52-.77.34-1.23.78-1.38 1.31 1.34.53 2.62.8 3.84.8l1-.1v2.63L12 22a9.7 9.7 0 0 1-3.89-.81c-1.75-.75-2.61-1.69-2.61-2.81v-5.77c0-1 .66-1.85 2-2.56Q9.57 9 12 9m0 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>������mkdocs-material-9.6.4/material/templates/.icons/material/account-circle-outline.svg�����������������0000664�0000000�0000000�00000001050�14753064456�0030474�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2M7.07 18.28c.43-.9 3.05-1.78 4.93-1.78s4.5.88 4.93 1.78A7.9 7.9 0 0 1 12 20c-1.86 0-3.57-.64-4.93-1.72m11.29-1.45c-1.43-1.74-4.9-2.33-6.36-2.33s-4.93.59-6.36 2.33A7.93 7.93 0 0 1 4 12c0-4.41 3.59-8 8-8s8 3.59 8 8c0 1.82-.62 3.5-1.64 4.83M12 6c-1.94 0-3.5 1.56-3.5 3.5S10.06 13 12 13s3.5-1.56 3.5-3.5S13.94 6 12 6m0 5a1.5 1.5 0 0 1-1.5-1.5A1.5 1.5 0 0 1 12 8a1.5 1.5 0 0 1 1.5 1.5A1.5 1.5 0 0 1 12 11"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-circle.svg�������������������������0000664�0000000�0000000�00000000455�14753064456�0027027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 19.2c-2.5 0-4.71-1.28-6-3.2.03-2 4-3.1 6-3.1s5.97 1.1 6 3.1a7.23 7.23 0 0 1-6 3.2M12 5a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3m0-3A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10c0-5.53-4.5-10-10-10"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-clock-outline.svg������������������0000664�0000000�0000000�00000001040�14753064456�0030325�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 14h1.5v2.82l2.44 1.41-.75 1.3L16 17.69zm1-2a5 5 0 0 0-5 5 5 5 0 0 0 5 5 5 5 0 0 0 5-5 5 5 0 0 0-5-5m0-2a7 7 0 0 1 7 7 7 7 0 0 1-7 7c-2.79 0-5.2-1.64-6.33-4H1v-3c0-2.66 5.33-4 8-4 .6 0 1.34.07 2.12.2A6.99 6.99 0 0 1 17 10m-7 7c0-.7.1-1.38.29-2-.42-.07-.86-.1-1.29-.1-2.97 0-6.1 1.46-6.1 2.1v1.1h7.19A7 7 0 0 1 10 17M9 4a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 1.9A2.1 2.1 0 0 0 6.9 8 2.1 2.1 0 0 0 9 10.1 2.1 2.1 0 0 0 11.1 8 2.1 2.1 0 0 0 9 5.9"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-clock.svg��������������������������0000664�0000000�0000000�00000000771�14753064456�0026662�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.63 14.1a7 7 0 0 1 9.27-3.47 7 7 0 0 1 3.47 9.27A6.98 6.98 0 0 1 17 24c-2.7 0-5.17-1.56-6.33-4H1v-2c.06-1.14.84-2.07 2.34-2.82S6.72 14.04 9 14c.57 0 1.11.05 1.63.1M9 4c1.12.03 2.06.42 2.81 1.17S12.93 6.86 12.93 8s-.37 2.08-1.12 2.83-1.69 1.12-2.81 1.12-2.06-.37-2.81-1.12S5.07 9.14 5.07 8s.37-2.08 1.12-2.83S7.88 4.03 9 4m8 18a5 5 0 0 0 5-5 5 5 0 0 0-5-5 5 5 0 0 0-5 5 5 5 0 0 0 5 5m-1-8h1.5v2.82l2.44 1.41-.75 1.3L16 17.69z"/></svg>�������mkdocs-material-9.6.4/material/templates/.icons/material/account-cog-outline.svg��������������������0000664�0000000�0000000�00000001634�14753064456�0030013�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 4a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4m0 2a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m7 6q-.24 0-.24.24l-.26 1.26c-.22.18-.54.34-.78.5l-1.28-.5c-.08 0-.24 0-.32.1l-.96 1.76c-.08.08-.08.24.08.32l1.04.82v1l-1.04.82c-.08.08-.16.24-.08.32l.96 1.76c.08.1.24.1.32.1l1.28-.5c.24.16.56.32.78.5l.26 1.26q0 .24.24.24h2c.08 0 .24-.08.24-.24l.16-1.26c.32-.18.64-.34.88-.5l1.22.5c.14 0 .3 0 .3-.1l1.04-1.76c.08-.08 0-.24-.08-.32l-1.04-.82v-1l1.04-.82c.08-.08.16-.24.08-.32L21.8 13.6c0-.1-.16-.1-.3-.1l-1.22.5c-.24-.16-.56-.32-.88-.5l-.16-1.26c0-.16-.16-.24-.24-.24zm-7 1c-2.67 0-8 1.33-8 4v3h9.67c-.28-.59-.48-1.23-.58-1.9H3.9V17c0-.64 3.13-2.1 6.1-2.1.43 0 .87.04 1.3.1.2-.64.47-1.24.82-1.79-.78-.13-1.52-.21-2.12-.21m8.04 2.5c.8 0 1.46.66 1.46 1.54 0 .8-.66 1.46-1.46 1.46-.88 0-1.54-.66-1.54-1.46 0-.88.66-1.54 1.54-1.54"/></svg>����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-cog.svg����������������������������0000664�0000000�0000000�00000001517�14753064456�0026336�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 4a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4m7 8a.26.26 0 0 0-.26.21l-.19 1.32c-.3.13-.59.29-.85.47l-1.24-.5c-.11 0-.24 0-.31.13l-1 1.73c-.06.11-.04.24.06.32l1.06.82a4.2 4.2 0 0 0 0 1l-1.06.82a.26.26 0 0 0-.06.32l1 1.73c.06.13.19.13.31.13l1.24-.5c.26.18.54.35.85.47l.19 1.32c.02.12.12.21.26.21h2c.11 0 .22-.09.24-.21l.19-1.32c.3-.13.57-.29.84-.47l1.23.5c.13 0 .26 0 .33-.13l1-1.73a.26.26 0 0 0-.06-.32l-1.07-.82c.02-.17.04-.33.04-.5s-.01-.33-.04-.5l1.06-.82a.26.26 0 0 0 .06-.32l-1-1.73c-.06-.13-.19-.13-.32-.13l-1.23.5c-.27-.18-.54-.35-.85-.47l-.19-1.32A.236.236 0 0 0 19 12zm-7 2c-4.42 0-8 1.79-8 4v2h9.68a7 7 0 0 1-.68-3 7 7 0 0 1 .64-2.91c-.53-.06-1.08-.09-1.64-.09m8 1.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5c-.84 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-convert-outline.svg����������������0000664�0000000�0000000�00000000776�14753064456�0030731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 0-.66.03 3.81 3.81L16.5 2.5c3.25 1.57 5.59 4.74 5.95 8.5h1.5C23.44 4.84 18.29 0 12 0m0 4c-1.93 0-3.5 1.57-3.5 3.5S10.07 11 12 11s3.5-1.57 3.5-3.5S13.93 4 12 4m0 2c.83 0 1.5.67 1.5 1.5S12.83 9 12 9s-1.5-.67-1.5-1.5S11.17 6 12 6M.05 13C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81L7.5 21.5c-3.25-1.56-5.59-4.74-5.95-8.5zM12 13c-3.87 0-7 1.57-7 3.5V18h14v-1.5c0-1.93-3.13-3.5-7-3.5m0 2c2.11 0 3.61.53 4.39 1H7.61c.78-.47 2.28-1 4.39-1"/></svg>��mkdocs-material-9.6.4/material/templates/.icons/material/account-convert.svg������������������������0000664�0000000�0000000�00000000605�14753064456�0027243�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 0-.66.03 3.81 3.81L16.5 2.5c3.25 1.57 5.59 4.74 5.95 8.5h1.5C23.44 4.84 18.29 0 12 0m0 4c-1.93 0-3.5 1.57-3.5 3.5S10.07 11 12 11s3.5-1.57 3.5-3.5S13.93 4 12 4M.05 13C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81L7.5 21.5c-3.25-1.56-5.59-4.74-5.95-8.5zM12 13c-3.87 0-7 1.57-7 3.5V18h14v-1.5c0-1.93-3.13-3.5-7-3.5"/></svg>���������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-cowboy-hat-outline.svg�������������0000664�0000000�0000000�00000000664�14753064456�0031321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 4c-.6 0-1 .4-1 1v1h-1.5l-1.4-3c-.1-.2-.2-.4-.4-.5-.5-.5-1.3-.6-2-.3l-.7.2-.7-.3c-.7-.3-1.5-.2-2 .3-.2.2-.3.4-.4.6L7.5 6H6V5c0-.6-.4-1-1-1s-1 .4-1 1v1c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V5c0-.5-.4-1-1-1M4 22v-3c0-2.67 5.33-4 8-4s8 1.33 8 4v3zm14.1-1.9V19c0-.64-3.13-2.1-6.1-2.1S5.9 18.36 5.9 19v1.1zM16 9v1c0 2.21-1.79 4-4 4s-4-1.79-4-4V9h2v1a2 2 0 1 0 4 0V9z"/></svg>����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-cowboy-hat.svg���������������������0000664�0000000�0000000�00000000537�14753064456�0027643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 22H4v-2c0-2.2 3.6-4 8-4s8 1.8 8 4M8 9h8v1c0 2.2-1.8 4-4 4s-4-1.8-4-4m11-6c-.6 0-1 .4-1 1v1h-1.5l-1.4-3c-.1-.2-.2-.4-.4-.5-.5-.5-1.3-.6-2-.3l-.7.2-.7-.3c-.7-.3-1.5-.2-2 .3-.2.2-.3.4-.4.6L7.5 6H6V5c0-.6-.4-1-1-1s-1 .4-1 1v1c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V5c0-.5-.4-1-1-1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-credit-card-outline.svg������������0000664�0000000�0000000�00000000553�14753064456�0031423�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 4C4.8 4 3 5.8 3 8s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4m0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m0 4c-3.9 0-7 1.8-7 4v2h11v-2H2c0-.6 1.8-2 5-2 1.8 0 3.2.5 4 1v-2.2c-1.1-.5-2.5-.8-4-.8M22 4h-7c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2m-6 14h-1V6h1zm6 0h-4V6h4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-credit-card.svg��������������������0000664�0000000�0000000�00000000412�14753064456�0027740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 12c2.2 0 4-1.8 4-4S9.2 4 7 4 3 5.8 3 8s1.8 4 4 4m4 8v-5.3c-1.1-.4-2.5-.7-4-.7-3.9 0-7 1.8-7 4v2zM22 4h-7c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2m-4 14h-2V6h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-details-outline.svg����������������0000664�0000000�0000000�00000000445�14753064456�0030667�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 9c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3m3 11H2v-2c0-2.21 2.69-4 6-4s6 1.79 6 4M7 9c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1m-3 9h8c0-1.1-1.79-2-4-2s-4 .9-4 2m18-6v2h-9v-2m9-4v2h-9V8m9-4v2h-9V4Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-details.svg������������������������0000664�0000000�0000000�00000000321�14753064456�0027203�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 9c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3m3 11H2v-2c0-2.21 2.69-4 6-4s6 1.79 6 4m8-6v2h-9v-2m9-4v2h-9V8m9-4v2h-9V4Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-edit-outline.svg�������������������0000664�0000000�0000000�00000000637�14753064456�0030172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 17v3h8v-1.89H3.9V17c0-.64 3.13-2.1 6.1-2.1.96.01 1.91.14 2.83.38l1.52-1.52c-1.4-.47-2.85-.73-4.35-.76-2.67 0-8 1.33-8 4m8-13C7.79 4 6 5.79 6 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4m0 6c-1.1 0-2-.89-2-2s.9-2 2-2 2 .9 2 2-.89 2-2 2m11.7 3.35-1 1-2.05-2 1-1a.55.55 0 0 1 .77 0l1.28 1.28c.21.21.21.56 0 .77M12 18.94l6.06-6.06 2.05 2-6 6.07H12z"/></svg>�������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-edit.svg���������������������������0000664�0000000�0000000�00000000501�14753064456�0026503�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.7 13.35-1 1-2.05-2.05 1-1a.55.55 0 0 1 .77 0l1.28 1.28c.21.21.21.56 0 .77M12 18.94l6.06-6.06 2.05 2.05L14.06 21H12zM12 14c-4.42 0-8 1.79-8 4v2h6v-1.89l4-4c-.66-.08-1.33-.11-2-.11m0-10a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-eye-outline.svg��������������������0000664�0000000�0000000�00000001035�14753064456�0030020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4m0-6a2 2 0 1 1 0 4c-1.11 0-2-.89-2-2s.9-2 2-2m-.73 14H2v-3c0-2.67 5.33-4 8-4 1.04 0 2.5.21 3.86.61-.86.34-1.66.81-2.36 1.39-.5-.06-1-.1-1.5-.1-2.97 0-6.1 1.46-6.1 2.1v1.1h5.32c-.02.05-.05.1-.08.15l-.29.75.29.75c.04.08.09.16.13.25M17 18c.56 0 1 .44 1 1s-.44 1-1 1-1-.44-1-1 .44-1 1-1m0-3c-2.73 0-5.06 1.66-6 4 .94 2.34 3.27 4 6 4s5.06-1.66 6-4c-.94-2.34-3.27-4-6-4m0 6.5a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-eye.svg����������������������������0000664�0000000�0000000�00000000662�14753064456�0026350�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 8c0-2.21 1.79-4 4-4s4 1.79 4 4-1.79 4-4 4-4-1.79-4-4m3.14 11.75L8.85 19l.29-.75c.7-1.75 1.94-3.11 3.47-4.03-.82-.14-1.69-.22-2.61-.22-4.42 0-8 1.79-8 4v2h7.27c-.04-.09-.09-.17-.13-.25M17 18c-.56 0-1 .44-1 1s.44 1 1 1 1-.44 1-1-.44-1-1-1m6 1c-.94 2.34-3.27 4-6 4s-5.06-1.66-6-4c.94-2.34 3.27-4 6-4s5.06 1.66 6 4m-3.5 0a2.5 2.5 0 0 0-5 0 2.5 2.5 0 0 0 5 0"/></svg>������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-file-outline.svg�������������������0000664�0000000�0000000�00000000636�14753064456�0030163�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 5C9.43 5 11 6.57 11 8.5S9.43 12 7.5 12 4 10.43 4 8.5 5.57 5 7.5 5M1 19v-2.5C1 14.57 4.46 13 7.5 13c1.18 0 2.42.24 3.5.64v1.92c-.82-.34-2.09-.56-3.5-.56C5 15 3 15.67 3 16.5v.5h8v2zm21 0h-8c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h5l4 4v9c0 .55-.45 1-1 1M15 7v10h6v-7h-3V7zM7.5 7C6.67 7 6 7.67 6 8.5S6.67 10 7.5 10 9 9.33 9 8.5 8.33 7 7.5 7"/></svg>��������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-file-text-outline.svg��������������0000664�0000000�0000000�00000000654�14753064456�0031145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 5C9.43 5 11 6.57 11 8.5S9.43 12 7.5 12 4 10.43 4 8.5 5.57 5 7.5 5M1 19v-2.5C1 14.57 4.46 13 7.5 13c1.18 0 2.42.24 3.5.64v1.92c-.82-.34-2.09-.56-3.5-.56C5 15 3 15.67 3 16.5v.5h8v2zm21 0h-8c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h5l4 4v9c0 .55-.45 1-1 1M15 7v10h6v-7h-3V7zM7.5 7C6.67 7 6 7.67 6 8.5S6.67 10 7.5 10 9 9.33 9 8.5 8.33 7 7.5 7m8.5 6h4v2h-4z"/></svg>������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-file-text.svg����������������������0000664�0000000�0000000�00000000506�14753064456�0027464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 5C9.43 5 11 6.57 11 8.5S9.43 12 7.5 12 4 10.43 4 8.5 5.57 5 7.5 5M1 19v-2.5C1 14.57 4.46 13 7.5 13c1.18 0 2.42.24 3.5.64V19zm21 0h-8c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h5l4 4v9c0 .55-.45 1-1 1m-4-9h3v-.17L18.17 7H18zm-3 2v1.5h6V12zm0 3v1.5h6V15z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-file.svg���������������������������0000664�0000000�0000000�00000000451�14753064456�0026501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 5C9.43 5 11 6.57 11 8.5S9.43 12 7.5 12 4 10.43 4 8.5 5.57 5 7.5 5M1 19v-2.5C1 14.57 4.46 13 7.5 13c1.18 0 2.42.24 3.5.64V19zm21 0h-8c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h5l4 4v9c0 .55-.45 1-1 1m-4-9h3v-.17L18.17 7H18z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-filter-outline.svg�����������������0000664�0000000�0000000�00000000576�14753064456�0030534�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17 21 1.8 1.77c.5.5 1.2.1 1.2-.49V18l2.8-3.4A1 1 0 0 0 22 13h-7c-.8 0-1.3 1-.8 1.6L17 18zm-2-1H2v-3c0-2.7 5.3-4 8-4 .6 0 1.3.1 2.1.2-.2.6-.1 1.3.1 1.9-.7-.1-1.5-.2-2.2-.2-3 0-6.1 1.5-6.1 2.1v1.1h10.6l.5.6zM10 4C7.8 4 6 5.8 6 8s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4m0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-filter.svg�������������������������0000664�0000000�0000000�00000000451�14753064456�0027047�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 4c2.2 0 4 1.8 4 4s-1.8 4-4 4-4-1.8-4-4 1.8-4 4-4m7 17 1.8 1.77c.5.5 1.2.1 1.2-.49V18l2.8-3.4A1 1 0 0 0 22 13h-7c-.8 0-1.3 1-.8 1.6L17 18zm-2-2.3-2.3-2.8c-.4-.5-.6-1.1-.6-1.7-.7-.2-1.4-.2-2.1-.2-4.4 0-8 1.8-8 4v2h13z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-group-outline.svg������������������0000664�0000000�0000000�00000001503�14753064456�0030372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 5a3.5 3.5 0 0 0-3.5 3.5A3.5 3.5 0 0 0 12 12a3.5 3.5 0 0 0 3.5-3.5A3.5 3.5 0 0 0 12 5m0 2a1.5 1.5 0 0 1 1.5 1.5A1.5 1.5 0 0 1 12 10a1.5 1.5 0 0 1-1.5-1.5A1.5 1.5 0 0 1 12 7M5.5 8A2.5 2.5 0 0 0 3 10.5c0 .94.53 1.75 1.29 2.18.36.2.77.32 1.21.32s.85-.12 1.21-.32c.37-.21.68-.51.91-.87A5.42 5.42 0 0 1 6.5 8.5v-.28c-.3-.14-.64-.22-1-.22m13 0c-.36 0-.7.08-1 .22v.28c0 1.2-.39 2.36-1.12 3.31.12.19.25.34.4.49a2.482 2.482 0 0 0 1.72.7c.44 0 .85-.12 1.21-.32.76-.43 1.29-1.24 1.29-2.18A2.5 2.5 0 0 0 18.5 8M12 14c-2.34 0-7 1.17-7 3.5V19h14v-1.5c0-2.33-4.66-3.5-7-3.5m-7.29.55C2.78 14.78 0 15.76 0 17.5V19h3v-1.93c0-1.01.69-1.85 1.71-2.52m14.58 0c1.02.67 1.71 1.51 1.71 2.52V19h3v-1.5c0-1.74-2.78-2.72-4.71-2.95M12 16c1.53 0 3.24.5 4.23 1H7.77c.99-.5 2.7-1 4.23-1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-group.svg��������������������������0000664�0000000�0000000�00000001104�14753064456�0026712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 5.5A3.5 3.5 0 0 1 15.5 9a3.5 3.5 0 0 1-3.5 3.5A3.5 3.5 0 0 1 8.5 9 3.5 3.5 0 0 1 12 5.5M5 8c.56 0 1.08.15 1.53.42-.15 1.43.27 2.85 1.13 3.96C7.16 13.34 6.16 14 5 14a3 3 0 0 1-3-3 3 3 0 0 1 3-3m14 0a3 3 0 0 1 3 3 3 3 0 0 1-3 3c-1.16 0-2.16-.66-2.66-1.62a5.54 5.54 0 0 0 1.13-3.96c.45-.27.97-.42 1.53-.42M5.5 18.25c0-2.07 2.91-3.75 6.5-3.75s6.5 1.68 6.5 3.75V20h-13zM0 20v-1.5c0-1.39 1.89-2.56 4.45-2.9-.59.68-.95 1.62-.95 2.65V20zm24 0h-3.5v-1.75c0-1.03-.36-1.97-.95-2.65 2.56.34 4.45 1.51 4.45 2.9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-hard-hat-outline.svg���������������0000664�0000000�0000000�00000000546�14753064456�0030734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 9c0 5.33-8 5.33-8 0h2c0 2.67 4 2.67 4 0m6 9v3H4v-3c0-2.67 5.33-4 8-4s8 1.33 8 4m-1.9 0c0-.64-3.13-2.1-6.1-2.1S5.9 17.36 5.9 18v1.1h12.2M12.5 2c.28 0 .5.22.5.5v3h1V3a3.89 3.89 0 0 1 2.25 3.75s.7.14.75 1.25H7c0-1.11.75-1.25.75-1.25A3.89 3.89 0 0 1 10 3v2.5h1v-3c0-.28.22-.5.5-.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-hard-hat.svg�����������������������0000664�0000000�0000000�00000000471�14753064456�0027254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 15c-4.42 0-8 1.79-8 4v2h16v-2c0-2.21-3.58-4-8-4M8 9a4 4 0 0 0 4 4 4 4 0 0 0 4-4m-4.5-7c-.3 0-.5.21-.5.5v3h-1V3s-2.25.86-2.25 3.75c0 0-.75.14-.75 1.25h10c-.05-1.11-.75-1.25-.75-1.25C16.25 3.86 14 3 14 3v2.5h-1v-3c0-.29-.19-.5-.5-.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-heart-outline.svg������������������0000664�0000000�0000000�00000000701�14753064456�0030340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5 15-.6-.5C2.4 12.6 1 11.4 1 9.9c0-1.2 1-2.2 2.2-2.2.7 0 1.4.3 1.8.8.4-.5 1.1-.8 1.8-.8C8 7.7 9 8.6 9 9.9c0 1.5-1.4 2.7-3.4 4.6zM15 4a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4m0 6.1A2.1 2.1 0 0 1 12.9 8 2.1 2.1 0 0 1 15 5.9a2.1 2.1 0 1 1 0 4.2m0 2.9c-2.67 0-8 1.33-8 4v3h16v-3c0-2.67-5.33-4-8-4m6.1 5.1H8.9V17c0-.64 3.1-2.1 6.1-2.1 2.97 0 6.1 1.46 6.1 2.1z"/></svg>���������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-heart.svg��������������������������0000664�0000000�0000000�00000000473�14753064456�0026671�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 14c-2.7 0-8 1.3-8 4v2h16v-2c0-2.7-5.3-4-8-4m0-2a4 4 0 0 0 4-4 4 4 0 0 0-4-4 4 4 0 0 0-4 4 4 4 0 0 0 4 4M5 15l-.6-.5C2.4 12.6 1 11.4 1 9.9c0-1.2 1-2.2 2.2-2.2.7 0 1.4.3 1.8.8.4-.5 1.1-.8 1.8-.8C8 7.7 9 8.6 9 9.9c0 1.5-1.4 2.7-3.4 4.6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-injury-outline.svg�����������������0000664�0000000�0000000�00000001060�14753064456�0030554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4m0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m6.39 8.56C16.71 11.7 14.53 11 12 11s-4.71.7-6.39 1.56A2.97 2.97 0 0 0 4 15.22V22h2v-6.78c0-.38.2-.72.5-.88C7.71 13.73 9.63 13 12 13c.76 0 1.47.07 2.13.2l-1.55 3.3H9.75C8.23 16.5 7 17.73 7 19.25S8.23 22 9.75 22H18c1.1 0 2-.9 2-2v-4.78c0-1.12-.61-2.15-1.61-2.66M10.94 20H9.75c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h1.89zM18 20h-4.85l2.94-6.27c.54.2 1.01.41 1.41.61.3.16.5.5.5.88z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-injury.svg�������������������������0000664�0000000�0000000�00000000636�14753064456�0027107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 6c0-2.21 1.79-4 4-4s4 1.79 4 4-1.79 4-4 4-4-1.79-4-4m9 16h1c1.1 0 2-.9 2-2v-4.78c0-1.12-.61-2.15-1.61-2.66-.43-.22-.89-.43-1.39-.62zm-4.66-5L15 11.33c-.93-.21-1.93-.33-3-.33-2.53 0-4.71.7-6.39 1.56A2.97 2.97 0 0 0 4 15.22V22h2.34c-.22-.45-.34-.96-.34-1.5C6 18.57 7.57 17 9.5 17zM10 22l1.41-3H9.5c-.83 0-1.5.67-1.5 1.5S8.67 22 9.5 22z"/></svg>��������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-key-outline.svg��������������������0000664�0000000�0000000�00000000663�14753064456�0030034�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.8 10C5.4 8.8 4.3 8 3 8c-1.7 0-3 1.3-3 3s1.3 3 3 3c1.3 0 2.4-.8 2.8-2H7v2h2v-2h2v-2zM3 12c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1m13-8c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4m0 6.1c-1.2 0-2.1-.9-2.1-2.1s.9-2.1 2.1-2.1 2.1.9 2.1 2.1-.9 2.1-2.1 2.1m0 2.9c-2.7 0-8 1.3-8 4v3h16v-3c0-2.7-5.3-4-8-4m6.1 5.1H9.9V17c0-.6 3.1-2.1 6.1-2.1s6.1 1.5 6.1 2.1z"/></svg>�����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-key.svg����������������������������0000664�0000000�0000000�00000000462�14753064456�0026354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 10v2H9v2H7v-2H5.8c-.4 1.2-1.5 2-2.8 2-1.7 0-3-1.3-3-3s1.3-3 3-3c1.3 0 2.4.8 2.8 2zm-8 0c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1m13 4c2.7 0 8 1.3 8 4v2H8v-2c0-2.7 5.3-4 8-4m0-2c-2.2 0-4-1.8-4-4s1.8-4 4-4 4 1.8 4 4-1.8 4-4 4"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-lock-open-outline.svg��������������0000664�0000000�0000000�00000000777�14753064456�0031141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4m0-6a2 2 0 1 1 0 4c-1.11 0-2-.89-2-2s.9-2 2-2m2 14H2v-3c0-2.67 5.33-4 8-4 .91 0 2.13.16 3.35.47-.09.33-.15.68-.15 1.03v.89c-.98-.29-2.1-.49-3.2-.49-2.97 0-6.1 1.46-6.1 2.1v1.1H12V20m8.8-3h-4.3v-2.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3v.5h1.3v-.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V17c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3"/></svg>�mkdocs-material-9.6.4/material/templates/.icons/material/account-lock-open.svg����������������������0000664�0000000�0000000�00000000661�14753064456�0027454�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 8c0-2.21 1.79-4 4-4s4 1.79 4 4-1.79 4-4 4-4-1.79-4-4m6 10.2c0-.96.5-1.86 1.2-2.46V14.5c0-.05.02-.11.02-.16-.99-.22-2.07-.34-3.22-.34-4.42 0-8 1.79-8 4v2h10zm10 .1v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-2.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5v.5h-1.3v-.5c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V17h4.3c.6 0 1.2.6 1.2 1.3"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-lock-outline.svg�������������������0000664�0000000�0000000�00000000771�14753064456�0030174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4m0-6a2 2 0 1 1 0 4c-1.11 0-2-.89-2-2s.9-2 2-2m2 14H2v-3c0-2.67 5.33-4 8-4 1 0 2.38.19 3.71.56-.3.56-.48 1.18-.5 1.83-.98-.29-2.1-.49-3.21-.49-2.97 0-6.1 1.46-6.1 2.1v1.1H12V20m8.8-3v-1.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V17c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3m-1.3 0h-3v-1.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3z"/></svg>�������mkdocs-material-9.6.4/material/templates/.icons/material/account-lock.svg���������������������������0000664�0000000�0000000�00000000662�14753064456�0026516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 8c0-2.21 1.79-4 4-4s4 1.79 4 4-1.79 4-4 4-4-1.79-4-4m6 10.2c0-.96.5-1.86 1.2-2.46v-.24c0-.39.07-.76.18-1.12-1.03-.24-2.17-.38-3.38-.38-4.42 0-8 1.79-8 4v2h10zm10 .1v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5V17c.6 0 1.2.6 1.2 1.3m-2.5-2.8c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V17h3z"/></svg>������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-minus-outline.svg������������������0000664�0000000�0000000�00000000515�14753064456�0030373�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 4a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4m0 1.9a2.1 2.1 0 1 1 0 4.2A2.1 2.1 0 0 1 12.9 8 2.1 2.1 0 0 1 15 5.9M1 10v2h8v-2zm14 3c-2.67 0-8 1.33-8 4v3h16v-3c0-2.67-5.33-4-8-4m0 1.9c2.97 0 6.1 1.46 6.1 2.1v1.1H8.9V17c0-.64 3.1-2.1 6.1-2.1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-minus.svg��������������������������0000664�0000000�0000000�00000000311�14753064456�0026710�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 14c-2.67 0-8 1.33-8 4v2h16v-2c0-2.67-5.33-4-8-4M1 10v2h8v-2m6 2a4 4 0 0 0 4-4 4 4 0 0 0-4-4 4 4 0 0 0-4 4 4 4 0 0 0 4 4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-multiple-check-outline.svg���������0000664�0000000�0000000�00000000637�14753064456�0032153�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 11a3 3 0 1 0-3-3 3 3 0 0 0 3 3m0-4a1 1 0 1 1-1 1 1 1 0 0 1 1-1m4.11 3.86a5 5 0 0 0 0-5.72A2.9 2.9 0 0 1 18 5a3 3 0 0 1 0 6 2.9 2.9 0 0 1-.89-.14M13 13c-6 0-6 4-6 4v2h12v-2s0-4-6-4m-4 4c0-.29.32-2 4-2 3.5 0 3.94 1.56 4 2m7 0v2h-3v-2a5.6 5.6 0 0 0-1.8-3.94C24 13.55 24 17 24 17M7.34 8.92l1.16 1.41-4.75 4.75-2.75-3 1.16-1.16 1.59 1.58z"/></svg>�������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-multiple-check.svg�����������������0000664�0000000�0000000�00000000507�14753064456�0030472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 17v2H7v-2s0-4 6-4 6 4 6 4m-3-9a3 3 0 1 0-3 3 3 3 0 0 0 3-3m3.2 5.06A5.6 5.6 0 0 1 21 17v2h3v-2s0-3.45-4.8-3.94M18 5a2.9 2.9 0 0 0-.89.14 5 5 0 0 1 0 5.72A2.9 2.9 0 0 0 18 11a3 3 0 0 0 0-6M7.34 8.92l1.16 1.41-4.75 4.75-2.75-3 1.16-1.16 1.59 1.58z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-multiple-minus-outline.svg���������0000664�0000000�0000000�00000000562�14753064456�0032226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 11a3 3 0 1 0-3-3 3 3 0 0 0 3 3m0-4a1 1 0 1 1-1 1 1 1 0 0 1 1-1m4.11 3.86a5 5 0 0 0 0-5.72A2.9 2.9 0 0 1 18 5a3 3 0 0 1 0 6 2.9 2.9 0 0 1-.89-.14M13 13c-6 0-6 4-6 4v2h12v-2s0-4-6-4m-4 4c0-.29.32-2 4-2 3.5 0 3.94 1.56 4 2m7 0v2h-3v-2a5.6 5.6 0 0 0-1.8-3.94C24 13.55 24 17 24 17M8 12H0v-2h8Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-multiple-minus.svg�����������������0000664�0000000�0000000�00000000431�14753064456�0030544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 17v2H7v-2s0-4 6-4 6 4 6 4m-3-9a3 3 0 1 0-3 3 3 3 0 0 0 3-3m3.2 5.06A5.6 5.6 0 0 1 21 17v2h3v-2s0-3.45-4.8-3.94M18 5a2.9 2.9 0 0 0-.89.14 5 5 0 0 1 0 5.72A2.9 2.9 0 0 0 18 11a3 3 0 0 0 0-6M8 10H0v2h8Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-multiple-outline.svg���������������0000664�0000000�0000000�00000000575�14753064456�0031101�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.07 10.41a5 5 0 0 0 0-5.82A3.4 3.4 0 0 1 15 4a3.5 3.5 0 0 1 0 7 3.4 3.4 0 0 1-1.93-.59M5.5 7.5A3.5 3.5 0 1 1 9 11a3.5 3.5 0 0 1-3.5-3.5m2 0A1.5 1.5 0 1 0 9 6a1.5 1.5 0 0 0-1.5 1.5M16 17v2H2v-2s0-4 7-4 7 4 7 4m-2 0c-.14-.78-1.33-2-5-2s-4.93 1.31-5 2m11.95-4A5.32 5.32 0 0 1 18 17v2h4v-2s0-3.63-6.06-4Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-multiple-plus-outline.svg����������0000664�0000000�0000000�00000000603�14753064456�0032052�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 11a3 3 0 1 0-3-3 3 3 0 0 0 3 3m0-4a1 1 0 1 1-1 1 1 1 0 0 1 1-1m4.11 3.86a5 5 0 0 0 0-5.72A2.9 2.9 0 0 1 18 5a3 3 0 0 1 0 6 2.9 2.9 0 0 1-.89-.14M13 13c-6 0-6 4-6 4v2h12v-2s0-4-6-4m-4 4c0-.29.32-2 4-2 3.5 0 3.94 1.56 4 2m7 0v2h-3v-2a5.6 5.6 0 0 0-1.8-3.94C24 13.55 24 17 24 17M8 12H5v3H3v-3H0v-2h3V7h2v3h3Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-multiple-plus.svg������������������0000664�0000000�0000000�00000000452�14753064456�0030377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 17v2H7v-2s0-4 6-4 6 4 6 4m-3-9a3 3 0 1 0-3 3 3 3 0 0 0 3-3m3.2 5.06A5.6 5.6 0 0 1 21 17v2h3v-2s0-3.45-4.8-3.94M18 5a2.9 2.9 0 0 0-.89.14 5 5 0 0 1 0 5.72A2.9 2.9 0 0 0 18 11a3 3 0 0 0 0-6M8 10H5V7H3v3H0v2h3v3h2v-3h3Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-multiple-remove-outline.svg��������0000664�0000000�0000000�00000001056�14753064456�0032367�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 17v2h-3v-2c0-1.55-.7-2.94-1.82-3.94C24 13.55 24 17 24 17M18 5c1.66 0 3 1.34 3 3a2.996 2.996 0 0 1-3.9 2.86c.57-.81.9-1.79.9-2.86 0-1.06-.33-2.05-.9-2.86.28-.09.59-.14.9-.14m-5 0c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3m6 12v2H7v-2c0-2.21 2.69-4 6-4s6 1.79 6 4M13 7c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m0 8c-2.21 0-4 .9-4 2h8c0-1.1-1.79-2-4-2M.464 13.12 2.59 11 .464 8.88 1.88 7.46 4 9.59l2.12-2.13 1.42 1.42L5.41 11l2.13 2.12-1.42 1.42L4 12.41l-2.12 2.13Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-multiple-remove.svg����������������0000664�0000000�0000000�00000000722�14753064456�0030711�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 17v2h-3v-2c0-1.55-.7-2.94-1.82-3.94C24 13.55 24 17 24 17M18 5c1.66 0 3 1.34 3 3a2.996 2.996 0 0 1-3.9 2.86c.57-.81.9-1.79.9-2.86 0-1.06-.33-2.05-.9-2.86.28-.09.59-.14.9-.14m-5 0c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3m6 12v2H7v-2c0-2.21 2.69-4 6-4s6 1.79 6 4M.464 13.12 2.59 11 .464 8.88 1.88 7.46 4 9.59l2.12-2.13 1.42 1.42L5.41 11l2.13 2.12-1.42 1.42L4 12.41l-2.12 2.13Z"/></svg>����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-multiple.svg�����������������������0000664�0000000�0000000�00000000443�14753064456�0027416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 17v2H2v-2s0-4 7-4 7 4 7 4m-3.5-9.5A3.5 3.5 0 1 0 9 11a3.5 3.5 0 0 0 3.5-3.5m3.44 5.5A5.32 5.32 0 0 1 18 17v2h4v-2s0-3.63-6.06-4M15 4a3.4 3.4 0 0 0-1.93.59 5 5 0 0 1 0 5.82A3.4 3.4 0 0 0 15 11a3.5 3.5 0 0 0 0-7"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-music-outline.svg������������������0000664�0000000�0000000�00000000707�14753064456�0030363�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 4a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m0 7c1.1 0 2.66.23 4.11.69-.61.38-1.11.91-1.5 1.54-.82-.2-1.72-.33-2.61-.33-2.97 0-6.1 1.46-6.1 2.1v1.1h8.14c.09.7.34 1.34.72 1.9H3v-3c0-2.66 5.33-4 8-4m7.5-3H22v2h-2v5.5a2.5 2.5 0 0 1-2.5 2.5 2.5 2.5 0 0 1-2.5-2.5 2.5 2.5 0 0 1 2.5-2.5c.36 0 .69.07 1 .21z"/></svg>���������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-music.svg��������������������������0000664�0000000�0000000�00000000746�14753064456�0026711�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 14c1 0 2.05.16 3.2.44-.81.87-1.2 1.89-1.2 3.06 0 .89.25 1.73.78 2.5H3v-2c0-1.19.91-2.15 2.74-2.88C7.57 14.38 9.33 14 11 14m0-2c-1.08 0-2-.39-2.82-1.17C7.38 10.05 7 9.11 7 8c0-1.08.38-2 1.18-2.82C9 4.38 9.92 4 11 4c1.11 0 2.05.38 2.83 1.18C14.61 6 15 6.92 15 8c0 1.11-.39 2.05-1.17 2.83S12.11 12 11 12m7.5-2H22v2h-2v5.5a2.5 2.5 0 0 1-2.5 2.5 2.5 2.5 0 0 1-2.5-2.5 2.5 2.5 0 0 1 2.5-2.5c.36 0 .69.07 1 .21z"/></svg>��������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-network-off-outline.svg������������0000664�0000000�0000000�00000001017�14753064456�0031477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19 15.8-3.25-3.25c1.95.62 3.25 1.71 3.25 2.95zm-5.97-5.97L8.67 5.47A3.49 3.49 0 0 1 12 3c1.93 0 3.5 1.57 3.5 3.5 0 1.57-1.04 2.89-2.47 3.33M12 8c.83 0 1.5-.67 1.5-1.5S12.83 5 12 5s-1.5.67-1.5 1.5S11.17 8 12 8m10 14h-.43l-.73.73-.73-.73H15c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1H2v-2h7c0-.55.45-1 1-1h1v-2H5v-1.5c0-1.62 2.22-3 5.23-3.38L1.11 3l1.28-1.27L22 21.34v.01l.11.11-.11.11zm-8.89-7-1-1H12c-2.11 0-3.61.53-4.39 1zm5 5-3-3H13v2h1c.55 0 1 .45 1 1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-network-off.svg��������������������0000664�0000000�0000000�00000000643�14753064456�0030026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.03 9.83 8.67 5.47A3.49 3.49 0 0 1 12 3c1.93 0 3.5 1.57 3.5 3.5 0 1.57-1.04 2.89-2.47 3.33M19 15.5c0-1.24-1.3-2.33-3.25-2.95L19 15.8zm3 6.5h-.43l-.73.73-.73-.73H15c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1H2v-2h7c0-.55.45-1 1-1h1v-2H5v-1.5c0-1.62 2.22-3 5.23-3.38L1.11 3l1.28-1.27L22 21.34v.01l.11.11-.11.11zm-3.89-2-3-3H13v2h1c.55 0 1 .45 1 1z"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-network-outline.svg����������������0000664�0000000�0000000�00000000661�14753064456�0030733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10a3.5 3.5 0 0 0 3.5-3.5A3.5 3.5 0 0 0 12 3a3.5 3.5 0 0 0-3.5 3.5A3.5 3.5 0 0 0 12 10m0-5a1.5 1.5 0 0 1 1.5 1.5A1.5 1.5 0 0 1 12 8a1.5 1.5 0 0 1-1.5-1.5A1.5 1.5 0 0 1 12 5m3 15a1 1 0 0 0-1-1h-1v-2h6v-1.5c0-1.93-3.13-3.5-7-3.5s-7 1.57-7 3.5V17h6v2h-1a1 1 0 0 0-1 1H2v2h7a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1h7v-2zm-7.39-5c.78-.47 2.28-1 4.39-1s3.61.53 4.39 1z"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-network.svg������������������������0000664�0000000�0000000�00000000454�14753064456�0027256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 17v2h1a1 1 0 0 1 1 1h7v2h-7a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1H2v-2h7a1 1 0 0 1 1-1h1v-2H5v-1.5c0-1.93 3.13-3.5 7-3.5s7 1.57 7 3.5V17zM12 3a3.5 3.5 0 0 1 3.5 3.5A3.5 3.5 0 0 1 12 10a3.5 3.5 0 0 1-3.5-3.5A3.5 3.5 0 0 1 12 3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-off-outline.svg��������������������0000664�0000000�0000000�00000000645�14753064456�0030016�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.75 7 1.28-1.25L13.26 15 20 21.72 18.73 23l-3-3H4v-3c0-1.86 2.61-3.08 5.09-3.64zM20 17v2.18l-1.9-1.9V17c0-.26-.5-.65-1.3-1L14 13.18c2.71.45 6 1.73 6 3.82M5.9 17v1.1h7.93L10.72 15c-2.53.3-4.82 1.45-4.82 2M12 4a4 4 0 0 1 4 4c0 1.95-1.4 3.58-3.25 3.93L8.07 7.25A4.004 4.004 0 0 1 12 4m0 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>�������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-off.svg����������������������������0000664�0000000�0000000�00000000440�14753064456�0026332�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4a4 4 0 0 1 4 4c0 1.95-1.4 3.58-3.25 3.93L8.07 7.25A4.004 4.004 0 0 1 12 4m.28 10 6 6L20 21.72 18.73 23l-3-3H4v-2c0-1.84 2.5-3.39 5.87-3.86L2.78 7.05l1.27-1.27zM20 18v1.18l-4.86-4.86C18 14.93 20 16.35 20 18"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-outline.svg������������������������0000664�0000000�0000000�00000000470�14753064456�0027242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m0 7c2.67 0 8 1.33 8 4v3H4v-3c0-2.67 5.33-4 8-4m0 1.9c-2.97 0-6.1 1.46-6.1 2.1v1.1h12.2V17c0-.64-3.13-2.1-6.1-2.1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-plus-outline.svg�������������������0000664�0000000�0000000�00000000535�14753064456�0030225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 4a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4m0 1.9a2.1 2.1 0 1 1 0 4.2A2.1 2.1 0 0 1 12.9 8 2.1 2.1 0 0 1 15 5.9M4 7v3H1v2h3v3h2v-3h3v-2H6V7zm11 6c-2.67 0-8 1.33-8 4v3h16v-3c0-2.67-5.33-4-8-4m0 1.9c2.97 0 6.1 1.46 6.1 2.1v1.1H8.9V17c0-.64 3.1-2.1 6.1-2.1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-plus.svg���������������������������0000664�0000000�0000000�00000000332�14753064456�0026543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 14c-2.67 0-8 1.33-8 4v2h16v-2c0-2.67-5.33-4-8-4m-9-4V7H4v3H1v2h3v3h2v-3h3v-2m6 2a4 4 0 0 0 4-4 4 4 0 0 0-4-4 4 4 0 0 0-4 4 4 4 0 0 0 4 4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-question-outline.svg���������������0000664�0000000�0000000�00000001061�14753064456�0031104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.5 14.5V16H19v-1.5zm-2-5H17V9a3 3 0 0 1 3-3 3 3 0 0 1 3 3c0 .97-.5 1.88-1.29 2.41l-.3.19c-.57.4-.91 1.01-.91 1.7v.2H19v-.2c0-1.19.6-2.3 1.59-2.95l.29-.19c.39-.26.62-.69.62-1.16A1.5 1.5 0 0 0 20 7.5 1.5 1.5 0 0 0 18.5 9zM9 13c2.67 0 8 1.34 8 4v3H1v-3c0-2.66 5.33-4 8-4m0-9a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 10.9c-2.97 0-6.1 1.46-6.1 2.1v1.1h12.2V17c0-.64-3.13-2.1-6.1-2.1m0-9A2.1 2.1 0 0 0 6.9 8 2.1 2.1 0 0 0 9 10.1 2.1 2.1 0 0 0 11.1 8 2.1 2.1 0 0 0 9 5.9"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-question.svg�����������������������0000664�0000000�0000000�00000000620�14753064456�0027427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 8a4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4 4 4 0 0 1 4 4m4 10v2H1v-2c0-2.21 3.58-4 8-4s8 1.79 8 4m3.5-3.5V16H19v-1.5zm-2-5H17V9a3 3 0 0 1 3-3 3 3 0 0 1 3 3c0 .97-.5 1.88-1.29 2.41l-.3.19c-.57.4-.91 1.01-.91 1.7v.2H19v-.2c0-1.19.6-2.3 1.59-2.95l.29-.19c.39-.26.62-.69.62-1.16A1.5 1.5 0 0 0 20 7.5 1.5 1.5 0 0 0 18.5 9z"/></svg>����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-reactivate-outline.svg�������������0000664�0000000�0000000�00000001046�14753064456�0031367�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.5 9h-5l1.86-1.86A7.99 7.99 0 0 0 12 4c-4.42 0-8 3.58-8 8 0 1.83.61 3.5 1.64 4.85 1.22-1.4 3.51-2.35 6.36-2.35s5.15.95 6.36 2.35A7.95 7.95 0 0 0 20 12h2c0 5.5-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2c3.14 0 5.95 1.45 7.78 3.72L21.5 4zM12 20c1.9 0 3.64-.66 5-1.76-.64-1.01-2.55-1.74-5-1.74s-4.36.73-5 1.74c1.36 1.1 3.1 1.76 5 1.76m0-14c1.93 0 3.5 1.57 3.5 3.5S13.93 13 12 13s-3.5-1.57-3.5-3.5S10.07 6 12 6m0 2c-.83 0-1.5.67-1.5 1.5S11.17 11 12 11s1.5-.67 1.5-1.5S12.83 8 12 8"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-reactivate.svg���������������������0000664�0000000�0000000�00000000557�14753064456�0027720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.5 9h-5l1.86-1.86A7.99 7.99 0 0 0 12 4c-4.42 0-8 3.58-8 8 0 1.83.61 3.5 1.64 4.85 1.22-1.4 3.51-2.35 6.36-2.35s5.15.95 6.36 2.35A7.95 7.95 0 0 0 20 12h2c0 5.5-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2c3.14 0 5.95 1.45 7.78 3.72L21.5 4zM12 7c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-remove-outline.svg�����������������0000664�0000000�0000000�00000000661�14753064456�0030537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m1.46 8.88 1.42-1.42L5 9.59l2.12-2.13 1.42 1.42L6.41 11l2.13 2.12-1.42 1.42L5 12.41l-2.12 2.13-1.42-1.42L3.59 11zM15 4a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 1.9A2.1 2.1 0 0 0 12.9 8a2.1 2.1 0 0 0 2.1 2.1 2.1 2.1 0 1 0 0-4.2m0 7.1c2.67 0 8 1.33 8 4v3H7v-3c0-2.67 5.33-4 8-4m0 1.9c-3 0-6.1 1.46-6.1 2.1v1.1h12.2V17c0-.64-3.13-2.1-6.1-2.1"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-remove.svg�������������������������0000664�0000000�0000000�00000000454�14753064456�0027062�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 14c2.67 0 8 1.33 8 4v2H7v-2c0-2.67 5.33-4 8-4m0-2a4 4 0 0 1-4-4 4 4 0 0 1 4-4 4 4 0 0 1 4 4 4 4 0 0 1-4 4M5 9.59l2.12-2.13 1.42 1.42L6.41 11l2.13 2.12-1.42 1.42L5 12.41l-2.12 2.13-1.42-1.42L3.59 11 1.46 8.88l1.42-1.42z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-school-outline.svg�����������������0000664�0000000�0000000�00000000535�14753064456�0030531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 10.5V6l-2.11 1.06A3.999 3.999 0 0 1 12 12a4 4 0 0 1-3.89-4.94L5 5.5 12 2l7 3.5v5zM12 9l-2-1c0 1.1.9 2 2 2s2-.9 2-2zm2.75-3.58L12.16 4.1 9.47 5.47l2.6 1.32zM12 13c2.67 0 8 1.33 8 4v3H4v-3c0-2.67 5.33-4 8-4m0 1.9c-3 0-6.1 1.46-6.1 2.1v1.1h12.2V17c0-.64-3.13-2.1-6.1-2.1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-school.svg�������������������������0000664�0000000�0000000�00000000315�14753064456�0027050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 8c0 2.21-1.79 4-4 4s-4-1.79-4-4l.11-.94L5 5.5 12 2l7 3.5v5h-1V6l-2.11 1.06zm-4 6c4.42 0 8 1.79 8 4v2H4v-2c0-2.21 3.58-4 8-4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-search-outline.svg�����������������0000664�0000000�0000000�00000001142�14753064456�0030502�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 13c-.35.59-.64 1.24-.81 1.93C6.5 15.16 3.9 16.42 3.9 17v1.1h5.3c.17.68.45 1.32.8 1.9H2v-3c0-2.66 5.33-4 8-4m0-9a4 4 0 0 1 4 4c0 .91-.31 1.75-.82 2.43-.86.32-1.63.83-2.27 1.47L10 12a4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 1.9A2.1 2.1 0 0 0 7.9 8a2.1 2.1 0 0 0 2.1 2.1A2.1 2.1 0 0 0 12.1 8 2.1 2.1 0 0 0 10 5.9m5.5 6.1c2.5 0 4.5 2 4.5 4.5 0 .88-.25 1.71-.69 2.4l3.08 3.1L21 23.39l-3.12-3.07c-.69.43-1.51.68-2.38.68-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5m0 2a2.5 2.5 0 0 0-2.5 2.5 2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-search.svg�������������������������0000664�0000000�0000000�00000000744�14753064456�0027034�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 12c2.5 0 4.5 2 4.5 4.5 0 .88-.25 1.71-.69 2.4l3.08 3.1L21 23.39l-3.12-3.07c-.69.43-1.51.68-2.38.68-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5m0 2a2.5 2.5 0 0 0-2.5 2.5 2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5M10 4a4 4 0 0 1 4 4c0 .91-.31 1.75-.82 2.43-.86.32-1.63.83-2.27 1.47L10 12a4 4 0 0 1-4-4 4 4 0 0 1 4-4M2 20v-2c0-2.12 3.31-3.86 7.5-4-.32.78-.5 1.62-.5 2.5 0 1.29.38 2.5 1 3.5z"/></svg>����������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-settings-outline.svg���������������0000664�0000000�0000000�00000000517�14753064456�0031102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4m0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.89 2-2-.89-2-2-2m0 7c2.67 0 8 1.33 8 4v3H4v-3c0-2.67 5.33-4 8-4m0 1.9c-2.97 0-6.1 1.46-6.1 2.1v1.1h12.2V17c0-.64-3.13-2.1-6.1-2.1m1 7.1h-2v2h2zm4 0h-2v2h2zm-8 0H7v2h2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-settings.svg�����������������������0000664�0000000�0000000�00000000337�14753064456�0027425�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 10c4.42 0 8 1.79 8 4v2H4v-2c0-2.21 3.58-4 8-4m-5 8h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-star-outline.svg�������������������0000664�0000000�0000000�00000000626�14753064456�0030214�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 4a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 1.9A2.1 2.1 0 0 0 12.9 8a2.1 2.1 0 0 0 2.1 2.1 2.1 2.1 0 1 0 0-4.2m0 7.1c2.67 0 8 1.33 8 4v3H7v-3c0-2.67 5.33-4 8-4m0 1.9c-3 0-6.1 1.46-6.1 2.1v1.1h12.2V17c0-.64-3.13-2.1-6.1-2.1M5 13.28l-2.5 1.49.68-2.81L1 10.08l2.87-.25L5 7.19l1.11 2.64 2.89.25-2.2 1.88.65 2.81z"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-star.svg���������������������������0000664�0000000�0000000�00000000427�14753064456�0026536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 14c-2.67 0-8 1.33-8 4v2h16v-2c0-2.67-5.33-4-8-4m0-2a4 4 0 0 0 4-4 4 4 0 0 0-4-4 4 4 0 0 0-4 4 4 4 0 0 0 4 4M5 13.28l2.45 1.49-.65-2.81L9 10.08l-2.89-.25L5 7.19 3.87 9.83 1 10.08l2.18 1.88-.68 2.81z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-supervisor-circle-outline.svg������0000664�0000000�0000000�00000001162�14753064456�0032717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.5 10c0-1.66-1.34-3-3-3-1.64 0-3 1.34-3 3 0 1.64 1.36 3 3 3 1.66 0 3-1.36 3-3m-3 1c-.54 0-1-.46-1-1 0-.56.46-1 1-1 .56 0 1 .44 1 1 0 .54-.44 1-1 1m6.5 2c1.12 0 2-.9 2-2 0-1.12-.88-2-2-2-1.1 0-2 .88-2 2 0 1.1.9 2 2 2M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2M5.85 17.11C6.53 16.57 8.12 16 9.5 16h.24c.26-.63.67-1.28 1.3-1.85-.54-.1-1.09-.15-1.54-.15-1.29 0-3.38.44-4.72 1.42C4.28 14.38 4 13.22 4 12c0-4.42 3.59-8 8-8s8 3.58 8 8c0 1.19-.27 2.33-.75 3.36-1-.59-2.36-.86-3.25-.86-1.5 0-4.5.8-4.5 2.69v2.78a7.93 7.93 0 0 1-5.65-2.86"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-supervisor-circle.svg��������������0000664�0000000�0000000�00000001106�14753064456�0031240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.47 2 2 6.5 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m3.6 6.34c1.07 0 1.93.86 1.93 1.93s-.86 1.93-1.93 1.93a1.93 1.93 0 0 1-1.93-1.93c-.01-1.07.86-1.93 1.93-1.93m-6-1.58c1.3 0 2.36 1.06 2.36 2.36S10.9 11.5 9.6 11.5s-2.36-1.08-2.36-2.38c0-1.31 1.05-2.36 2.36-2.36m0 9.13v3.75c-2.4-.75-4.3-2.6-5.14-4.96C5.5 13.56 8.13 13 9.6 13c.53 0 1.2.07 1.9.21-1.64.87-1.9 2.02-1.9 2.68M12 20c-.28 0-.54 0-.8-.04v-4.07c0-1.42 2.94-2.13 4.4-2.13 1.07 0 2.9.39 3.84 1.15C18.27 17.88 15.38 20 12 20"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-supervisor-outline.svg�������������0000664�0000000�0000000�00000000747�14753064456�0031470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 15.5c1.72 0 3.75.8 4 1.28v.72h-8v-.72c.25-.48 2.28-1.28 4-1.28m0-1.5c-1.83 0-5.5.92-5.5 2.75V19h11v-2.25c0-1.83-3.67-2.75-5.5-2.75M9 13c-2.33 0-7 1.17-7 3.5V19h7v-1.5H3.5v-1c0-.63 2.79-2.16 6.32-2a5.1 5.1 0 0 1 1.55-1.25A12.3 12.3 0 0 0 9 13m0-6.5A1.5 1.5 0 1 1 7.5 8 1.5 1.5 0 0 1 9 6.5M9 5a3 3 0 1 0 3 3 3 3 0 0 0-3-3m7.5 3.5a1 1 0 1 1-1 1 1 1 0 0 1 1-1m0-1.5A2.5 2.5 0 1 0 19 9.5 2.5 2.5 0 0 0 16.5 7"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-supervisor.svg���������������������0000664�0000000�0000000�00000000600�14753064456�0027777�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 12A2.5 2.5 0 0 0 19 9.5 2.5 2.5 0 0 0 16.5 7 2.5 2.5 0 0 0 14 9.5a2.5 2.5 0 0 0 2.5 2.5M9 11a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m7.5 3c-1.83 0-5.5.92-5.5 2.75V19h11v-2.25c0-1.83-3.67-2.75-5.5-2.75M9 13c-2.33 0-7 1.17-7 3.5V19h7v-2.25c0-.85.33-2.34 2.37-3.47C10.5 13.1 9.66 13 9 13"/></svg>��������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-switch-outline.svg�����������������0000664�0000000�0000000�00000000665�14753064456�0030547�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 9c6 0 6 4 6 4v2h-6v-2s0-1.69-1.15-3.2c-.17-.23-.38-.45-.6-.66C14.77 9.06 15.34 9 16 9m-8 2c3.5 0 3.94 1.56 4 2H4c.06-.44.5-2 4-2m0-2c-6 0-6 4-6 4v2h12v-2s0-4-6-4m1 8v2h6v-2l3 3-3 3v-2H9v2l-3-3zM8 3c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m0-2C6.34 1 5 2.34 5 4s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3m8 0c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3"/></svg>���������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-switch.svg�������������������������0000664�0000000�0000000�00000000520�14753064456�0027060�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 9c6 0 6 4 6 4v2h-6v-2s0-1.69-1.15-3.2c-.17-.23-.38-.45-.6-.66C14.77 9.06 15.34 9 16 9M2 13s0-4 6-4 6 4 6 4v2H2zm7 4v2h6v-2l3 3-3 3v-2H9v2l-3-3zM8 1C6.34 1 5 2.34 5 4s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3m8 0c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-sync-outline.svg�������������������0000664�0000000�0000000�00000001013�14753064456�0030206�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 4C8.8 4 7 5.8 7 8s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4m0 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0 7c-2.7 0-8 1.3-8 4v3h9.5c-.3-.6-.4-1.2-.5-1.9H4.9V17c0-.6 3.1-2.1 6.1-2.1.5 0 1 .1 1.5.1.3-.6.6-1.2 1.1-1.7-1-.2-1.9-.3-2.6-.3m7 7c-1.4 0-2.5-1.1-2.5-2.5 0-.4.1-.8.3-1.1l-1.1-1.1c-.4.6-.7 1.4-.7 2.2 0 2.2 1.8 4 4 4V23l2.2-2.2-2.2-2.3zm0-6.5V12l-2.2 2.2 2.2 2.2V15c1.4 0 2.5 1.1 2.5 2.5 0 .4-.1.8-.3 1.1l1.1 1.1c.4-.6.7-1.4.7-2.2 0-2.2-1.8-4-4-4"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-sync.svg���������������������������0000664�0000000�0000000�00000000661�14753064456�0026541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 4C8.8 4 7 5.8 7 8s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4m0 10c-4.4 0-8 1.8-8 4v2h9.5c-.3-.8-.5-1.6-.5-2.5 0-1.2.3-2.3.9-3.4-.6 0-1.2-.1-1.9-.1m7 6c-1.4 0-2.5-1.1-2.5-2.5 0-.4.1-.8.3-1.1l-1.1-1.1c-.4.6-.7 1.4-.7 2.2 0 2.2 1.8 4 4 4V23l2.2-2.2-2.2-2.3zm0-6.5V12l-2.2 2.2 2.2 2.2V15c1.4 0 2.5 1.1 2.5 2.5 0 .4-.1.8-.3 1.1l1.1 1.1c.4-.6.7-1.4.7-2.2 0-2.2-1.8-4-4-4"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-tag-outline.svg��������������������0000664�0000000�0000000�00000001004�14753064456�0030005�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.4 16c-.3 0-.6-.3-.6-.6s.3-.6.6-.6.6.3.6.6-.3.6-.6.6m6.4 1.8-3.6-3.6c-.2-.1-.4-.2-.6-.2h-2.8c-.4 0-.8.4-.8.8v2.8c0 .2.1.4.2.6l3.6 3.6c.1.1.3.2.6.2s.4-.1.6-.2l2.8-2.8c.1-.1.2-.3.2-.6 0-.2-.1-.4-.2-.6M10 4C7.8 4 6 5.8 6 8s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4m0 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0 7c-2.7 0-8 1.3-8 4v3h11.2l-.4-.4c-.4-.4-.7-.9-.8-1.5H3.9V17c0-.6 3.1-2.1 6.1-2.1.7 0 1.4.1 2 .2v-.3c0-.6.2-1.1.5-1.5-.9-.2-1.8-.3-2.5-.3"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-tag.svg����������������������������0000664�0000000�0000000�00000000657�14753064456�0026345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.8 17.8-3.6-3.6c-.2-.1-.4-.2-.6-.2h-2.8c-.4 0-.8.4-.8.8v2.8c0 .2.1.4.2.6l3.6 3.6c.1.1.3.2.6.2.2 0 .4-.1.6-.2l2.8-2.8c.1-.1.2-.3.2-.6 0-.2-.1-.4-.2-.6M15.4 16c-.3 0-.6-.3-.6-.6s.3-.6.6-.6.6.3.6.6-.3.6-.6.6M10 4C7.8 4 6 5.8 6 8s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4m0 10c-4.4 0-8 1.8-8 4v2h11.2l-.4-.4c-.5-.5-.8-1.2-.8-2v-2.8c0-.2 0-.4.1-.7-.7-.1-1.4-.1-2.1-.1"/></svg>���������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-tie-hat-outline.svg����������������0000664�0000000�0000000�00000001112�14753064456�0030565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 4.5C6 3.1 8.7 2 12 2s6 1.1 6 2.5c0 .4-.2.7-.5 1-.9-.9-3-1.5-5.5-1.5s-4.6.6-5.5 1.5c-.3-.3-.5-.6-.5-1m6 .5c-2.2 0-3.9.5-4.6 1.1 1.1.5 2.7.9 4.6.9s3.5-.4 4.6-.9C15.9 5.5 14.2 5 12 5m2 3c0 1.1-.9 2-2 2s-2-.9-2-2v-.1c-.7-.1-1.4-.2-2-.4V8c0 2.2 1.8 4 4 4s4-1.8 4-4c0-.2 0-.4-.1-.6-.6.2-1.3.3-2 .4.1.1.1.1.1.2m2.4 5.8-.7 1.2-.2.5c1.5.5 2.6 1.1 2.6 1.5v3.1h-4.2L13 15l.9-1.9c-.6 0-1.2-.1-1.9-.1s-1.3 0-1.9.1L11 15l-.9 5.1H5.9V17c0-.4 1.1-1 2.6-1.5l-.2-.5-.6-1.2C5.7 14.4 4 15.5 4 17v5h16v-5c0-1.5-1.7-2.6-3.6-3.2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-tie-hat.svg������������������������0000664�0000000�0000000�00000000772�14753064456�0027123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 14.5c0 1.1-.3 3.5-2.2 6.3L13 16l.9-1.9c-.6 0-1.2-.1-1.9-.1s-1.3.1-1.9.1L11 16l-.8 4.8C8.3 18.1 8 15.6 8 14.5c-2.4.7-4 2-4 3.5v4h16v-4c0-1.5-1.6-2.8-4-3.5M6 4.5C6 3.1 8.7 2 12 2s6 1.1 6 2.5c0 .4-.2.7-.5 1-.9-.9-3-1.5-5.5-1.5s-4.6.6-5.5 1.5c-.3-.3-.5-.6-.5-1m9.9 2.9c.1.2.1.4.1.6 0 2.2-1.8 4-4 4s-4-1.8-4-4c0-.2 0-.4.1-.6 1 .4 2.4.6 3.9.6s2.9-.2 3.9-.6m.7-1.3c-1.1.5-2.7.9-4.6.9s-3.5-.4-4.6-.9C8.1 5.5 9.8 5 12 5s3.9.5 4.6 1.1"/></svg>������mkdocs-material-9.6.4/material/templates/.icons/material/account-tie-outline.svg��������������������0000664�0000000�0000000�00000000642�14753064456�0030022�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.36 12.76C18.31 13.42 20 14.5 20 16v5H4v-5c0-1.5 1.69-2.58 3.65-3.24L8.27 14l.23.5c-1.5.46-2.6 1.12-2.6 1.5v3.1h4.22l.88-5.07-.94-1.88c.62-.07 1.27-.12 1.94-.12s1.32.05 1.94.12L13 14.03l.88 5.07h4.22V16c0-.38-1.1-1.04-2.6-1.5l.23-.5zM12 5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m0 6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4"/></svg>����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-tie-voice-off-outline.svg����������0000664�0000000�0000000�00000001224�14753064456�0031672�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.22 6 7.5 4.3c.46-.19.97-.3 1.5-.3 2.21 0 4 1.79 4 4 0 .53-.11 1.04-.3 1.5L11 7.78A2.1 2.1 0 0 0 9.22 6m10.84 9c3.9-3.89 3.94-9.95 0-14l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74zm-3.31-3.37c2.02-2.02 2.02-5.07 0-7.27l-1.68 1.69c.84 1.18.84 2.71 0 3.89zM2.39 1.73 1.11 3l4.03 4.03C5.06 7.34 5 7.66 5 8c0 2.21 1.79 4 4 4 .34 0 .66-.06.97-.14l2.89 2.89-.13.25-.23.5c.8.24 1.47.55 1.94.83l.66.67v3.1h-4.22L10 15.03l.94-1.88c-.62-.07-1.27-.12-1.94-.12s-1.32.05-1.94.12L8 15.03l-.88 5.07H2.9V17c0-.38 1.1-1.04 2.6-1.5l-.23-.5-.62-1.24C2.69 14.42 1 15.5 1 17v5h16v-3.11l3.84 3.84 1.27-1.27z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-tie-voice-off.svg������������������0000664�0000000�0000000�00000001110�14753064456�0030207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.7 9.5 7.5 4.3c.46-.19.96-.3 1.5-.3 2.2 0 4 1.79 4 4 0 .53-.11 1.04-.3 1.5m4.05 2.13c2.02-2.02 2.02-5.07 0-7.27l-1.68 1.69c.84 1.18.84 2.71 0 3.89zM20.06 15c3.9-3.89 3.94-9.95 0-14l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74zM2.39 1.73 1.11 3l4.02 4c-.08.34-.13.66-.13 1 0 2.21 1.79 4 4 4 .33 0 .66-.06.97-.14L13 14.87c-.07 1.19-.46 3.45-2.2 5.96L10 16l.93-1.88C10.31 14.05 9.66 14 9 14c-.68 0-1.33.05-1.95.12L8 16l-.82 4.83C5.27 18.07 5 15.6 5 14.54 2.6 15.24.994 16.5.994 18v4H17v-3.12l3.84 3.85 1.27-1.27z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-tie-voice-outline.svg��������������0000664�0000000�0000000�00000001062�14753064456�0031122�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.75 4.36c2.02 2.2 2.02 5.25 0 7.27l-1.68-1.69c.84-1.18.84-2.71 0-3.89zM20.06 1c3.94 4.05 3.9 10.11 0 14l-1.63-1.63c2.77-3.18 2.77-7.72 0-10.74zm-6.7 12.76C15.31 14.42 17 15.5 17 17v5H1v-5c0-1.5 1.69-2.58 3.65-3.24L5.27 15l.23.5c-1.5.46-2.6 1.12-2.6 1.5v3.1h4.22L8 15.03l-.94-1.88c.62-.07 1.27-.12 1.94-.12s1.32.05 1.94.12L10 15.03l.88 5.07h4.22V17c0-.38-1.1-1.04-2.6-1.5l.23-.5zM9 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m0 6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-tie-voice.svg����������������������0000664�0000000�0000000�00000000722�14753064456�0027447�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.75 4.36c2.02 2.2 2.02 5.25 0 7.27l-1.68-1.69c.84-1.18.84-2.71 0-3.89zM20.06 1c3.94 4.05 3.9 10.11 0 14l-1.63-1.63c2.77-3.18 2.77-7.72 0-10.74zM9 4c2.2 0 4 1.79 4 4s-1.8 4-4 4-4-1.79-4-4 1.79-4 4-4m4 10.54c0 1.06-.29 3.53-2.2 6.29L10 16l.93-1.88C10.31 14.05 9.66 14 9 14s-1.33.05-1.95.12L8 16l-.82 4.83C5.27 18.07 5 15.6 5 14.54 2.6 15.24.994 16.5.994 18v4H17v-4c0-1.5-1.61-2.76-4-3.46"/></svg>����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-tie-woman.svg����������������������0000664�0000000�0000000�00000000553�14753064456�0027465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.94 3A3.993 3.993 0 0 0 8 7c-.06 1.64-.19 3.47-.97 4.59C9.71 13.22 12 13 12 13s2.29.22 4.97-1.41C16.12 10.22 15.94 8.54 16 7c0-2.21-1.79-4-4-4zM8.86 13.32C6 13.93 4 15.35 4 17v4h8l-3-4H6.5m5.5 4 1.78-7.19S13 14 12 14s-1.78-.19-1.78-.19M12 21h8v-4c0-1.65-2-3.07-4.86-3.68L17.5 17H15Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-tie.svg����������������������������0000664�0000000�0000000�00000000502�14753064456�0026340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4m4 10.54c0 1.06-.28 3.53-2.19 6.29L13 15l.94-1.88c-.62-.07-1.27-.12-1.94-.12s-1.32.05-1.94.12L11 15l-.81 4.83C8.28 17.07 8 14.6 8 13.54c-2.39.7-4 1.96-4 3.46v4h16v-4c0-1.5-1.6-2.76-4-3.46"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-voice-off.svg����������������������0000664�0000000�0000000�00000000652�14753064456�0027442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3.27 3.28 2 22 20.72 20.73 22l-4-4c.17.31.27.64.27 1v2H1v-2c0-2.66 5.33-4 8-4 1.77 0 4.72.59 6.5 1.77l-4.38-4.38c-.62.39-1.34.61-2.12.61a4 4 0 0 1-4-4c0-.78.22-1.5.61-2.12zM9 5a4 4 0 0 1 4 4v.17L8.83 5zm7.76.36c2.02 2.2 2.02 5.25 0 7.27l-1.68-1.69c.84-1.18.84-2.71 0-3.89zM20.07 2c3.93 4.05 3.9 10.11 0 14l-1.63-1.63c2.77-3.18 2.77-7.72 0-10.74z"/></svg>��������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-voice.svg��������������������������0000664�0000000�0000000�00000000513�14753064456�0026666�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 5a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 10c2.67 0 8 1.34 8 4v2H1v-2c0-2.66 5.33-4 8-4m7.76-9.64c2.02 2.2 2.02 5.25 0 7.27l-1.68-1.69c.84-1.18.84-2.71 0-3.89zM20.07 2c3.93 4.05 3.9 10.11 0 14l-1.63-1.63c2.77-3.18 2.77-7.72 0-10.74z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-wrench-outline.svg�����������������0000664�0000000�0000000�00000000717�14753064456�0030532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.9 21.2-4.1-4.1c.4-1 .2-2.3-.7-3.1-.9-.9-2.2-1.1-3.3-.6l1.9 1.9-1.4 1.4-2-2c-.5 1.1-.3 2.4.6 3.4.9.9 2.1 1.1 3.1.7l4.1 4.1c.2.2.5.2.6 0l1-1c.3-.3.3-.6.2-.7M10 12c2.2 0 4-1.8 4-4s-1.8-4-4-4-4 1.8-4 4 1.8 4 4 4m0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m3 14H2v-3c0-2.7 5.3-4 8-4 .5 0 1.2.1 1.9.2-.4.5-.6 1.1-.8 1.8-.4 0-.7-.1-1.1-.1-3 0-6.1 1.5-6.1 2.1v1.1h7.6c.3.8.9 1.4 1.5 1.9"/></svg>�������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account-wrench.svg�������������������������0000664�0000000�0000000�00000000554�14753064456�0027054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.9 21.2-4.1-4.1c.4-1 .2-2.3-.7-3.1-.9-.9-2.2-1.1-3.3-.6l1.9 1.9-1.4 1.4-2-2c-.5 1.1-.3 2.4.6 3.4.9.9 2.1 1.1 3.1.7l4.1 4.1c.2.2.5.2.6 0l1-1c.3-.3.3-.6.2-.7M13 20H2v-2c0-2.2 3.6-4 8-4 .5 0 1 0 1.4.1-.3.6-.4 1.2-.4 1.9 0 1.6.8 3.1 2 4M10 4C7.8 4 6 5.8 6 8s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/account.svg��������������������������������0000664�0000000�0000000�00000000273�14753064456�0025566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 10c4.42 0 8 1.79 8 4v2H4v-2c0-2.21 3.58-4 8-4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/adjust.svg���������������������������������0000664�0000000�0000000�00000000416�14753064456�0025423�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m3-8a3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3 3 3 0 0 1 3 3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/advertisements-off.svg���������������������0000664�0000000�0000000�00000000531�14753064456�0027734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.2 9-2-2H13c1.1 0 2 .9 2 2v2.8l-2-2V9zM23 9V7h-4c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h2v2h-2.8l2 2h.8c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2h-2V9zm-.9 12.5-1.3 1.3-6.4-6.4c-.3.3-.8.6-1.4.6H9v-6.1l-2-2V17H5v-4H3v4H1V9c0-1.1.9-2 2-2h2.1l-4-4 1.3-1.3zM5 9H3v2h2zm8 5.9-2-2V15h2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/advertisements.svg�������������������������0000664�0000000�0000000�00000000435�14753064456�0027167�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 7c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h2v2h-4v2h4c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2h-2V9h4V7zM9 7v10h4c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm2 2h2v6h-2zM3 7c-1.1 0-2 .9-2 2v8h2v-4h2v4h2V9c0-1.1-.9-2-2-2zm0 2h2v2H3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/air-conditioner.svg������������������������0000664�0000000�0000000�00000001152�14753064456�0027215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.59.66c2.34-1.81 4.88.4 5.45 3.84.43 0 .85.12 1.23.34.52-.6.98-1.42.8-2.34-.42-2.15 1.99-3.89 4.28-.92 1.81 2.34-.4 4.88-3.85 5.45 0 .43-.11.86-.34 1.24.6.51 1.42.97 2.34.79 2.13-.42 3.88 1.98.91 4.28-2.34 1.81-4.88-.4-5.45-3.84-.43 0-.85-.13-1.22-.35-.52.6-.99 1.43-.81 2.35.42 2.14-1.99 3.89-4.28.92-1.82-2.35.4-4.89 3.85-5.45 0-.43.13-.85.35-1.23-.6-.51-1.42-.98-2.35-.8-2.13.42-3.88-1.98-.91-4.28M5 16h2a2 2 0 0 1 2 2v6H7v-2H5v2H3v-6a2 2 0 0 1 2-2m0 2v2h2v-2zm7.93-2H15l-2.93 8H10zM18 16h3v2h-3v4h3v2h-3a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/air-filter.svg�����������������������������0000664�0000000�0000000�00000002106�14753064456�0026165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 18.31V20a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-3.7c-.46-.18-1.05-.3-2-.3a1 1 0 0 1-1-1 1 1 0 0 1 1-1c.82 0 1.47.08 2 .21V12.3c-.46-.18-1.05-.3-2-.3a1 1 0 0 1-1-1 1 1 0 0 1 1-1c.82 0 1.47.08 2 .21V8.3C4.54 8.12 3.95 8 3 8a1 1 0 0 1-1-1 1 1 0 0 1 1-1c.82 0 1.47.08 2 .21V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v2.16c1.78.31 2.54.97 2.71 1.13.39.39.39 1.03 0 1.42s-.91.38-1.42 0c0 0-1.04-.71-3.29-.71-1.26 0-2.09.41-3.05.9-1.04.51-2.21 1.1-3.95 1.1-.36 0-.69 0-1-.04V7.95c.3.05.63.05 1 .05 1.26 0 2.09-.41 3.05-.89C14.09 6.59 15.27 6 17 6V4H7v16h10v-2c1.5 0 1.97.29 2 .31M17 10c-1.73 0-2.91.59-3.95 1.11-.96.48-1.79.89-3.05.89-.37 0-.7 0-1-.05v2.01c.31.04.64.04 1 .04 1.74 0 2.91-.59 3.95-1.1.96-.48 1.79-.9 3.05-.9 2.25 0 3.29.71 3.29.71.51.39 1.03.39 1.42 0s.39-1.02 0-1.42C21.5 11.08 20.25 10 17 10m0 4c-1.73 0-2.91.59-3.95 1.11-.96.48-1.79.89-3.05.89-.37 0-.7 0-1-.05v2.01c.31.04.64.04 1 .04 1.74 0 2.91-.59 3.95-1.1.96-.48 1.79-.9 3.05-.9 2.25 0 3.29.71 3.29.71.51.39 1.03.39 1.42 0s.39-1.02 0-1.42C21.5 15.08 20.25 14 17 14"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/air-horn.svg�������������������������������0000664�0000000�0000000�00000000561�14753064456�0025651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 2.8v6.4c0 .3-.3.6-.6.5 0 0-3.9-2.6-8.4-2.6v2.4h.2c.5 0 1 .2 1.2.6l1.3 1.8c.2.2.3.5.3.7v8c0 .7-.7 1.4-1.5 1.4h-5c-.8 0-1.5-.6-1.5-1.4v-8c0-.3.1-.5.3-.7l1.3-1.8q.45-.6 1.2-.6H8V8c-.4.5-1 .8-1.6.8C5.1 8.8 4 7.5 4 6s1.1-2.8 2.4-2.8c.6.1 1.2.4 1.6.8V2.6h2V5c4.5 0 8.4-2.6 8.4-2.6.3-.1.6.1.6.4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/air-humidifier-off.svg���������������������0000664�0000000�0000000�00000000637�14753064456�0027604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l2.7 2.7C3.3 6.3 3 7.1 3 8v14h15v-2.1l2.8 2.8zm-12.5-10 2.8 2.8c-.3.4-.8.7-1.4.7-1.1 0-2-.9-2-2 0-.6.3-1.1.6-1.5m6.4 6.4V20H5V8c0-.3.1-.6.2-.9l3 3C7.5 10.8 7 11.9 7 13c0 2.2 1.8 4 4 4 1.1 0 2.2-.5 2.9-1.2zm1-4.1c.1-1.3 2-3.3 2-3.3s2 2.2 2 3.5c0 1-.8 1.9-1.8 2zM9.2 6l-2-2H14c2.2 0 4 1.8 4 4v1h-2V8c0-1.1-.9-2-2-2z"/></svg>�������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/air-humidifier.svg�������������������������0000664�0000000�0000000�00000000532�14753064456�0027026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 9c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4m0 6c-1.1 0-2-.89-2-2s.9-2 2-2 2 .9 2 2-.89 2-2 2M7 4h7c2.21 0 4 1.79 4 4v1h-2V8a2 2 0 0 0-2-2H7c-1.1 0-2 .9-2 2v12h11v-2h2v4H3V8c0-2.21 1.79-4 4-4m12 6.5s2 2.17 2 3.5c0 1.1-.9 2-2 2s-2-.9-2-2c0-1.33 2-3.5 2-3.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/air-purifier-off.svg�����������������������0000664�0000000�0000000�00000000726�14753064456�0027303�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11c-2.4 0-2.5 1.9-4.8 2l-.2-.2V11c2.5 0 2.5-2 5-2zm1.1 10.5-1.3 1.3-2.8-2.9V22H3V8c0-.9.3-1.7.8-2.3L1.1 3l1.3-1.3zM9 13c0 1.1.9 2 2 2 .6 0 1.1-.3 1.5-.6l-2.8-2.8c-.4.3-.7.8-.7 1.4m7 4.9-2.1-2.1c-.7.7-1.8 1.2-2.9 1.2-2.2 0-4-1.8-4-4 0-1.1.5-2.2 1.2-2.9l-3-3c-.1.3-.2.6-.2.9v12h11zm5-2.9v-2c-1.7 0-2.3 1-3.3 1.5l1.1 1.1c.6-.3 1.2-.6 2.2-.6m-7-9c1.1 0 2 .9 2 2v1h2V8c0-2.2-1.8-4-4-4H7.2l2 2z"/></svg>������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/air-purifier.svg���������������������������0000664�0000000�0000000�00000000557�14753064456�0026535�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 9a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2M7 4h7a4 4 0 0 1 4 4v1h-2V8a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v12h11v-2h2v4H3V8a4 4 0 0 1 4-4m9 7c2.5 0 2.5-2 5-2v2c-2.5 0-2.5 2-5 2zm0 4c2.5 0 2.5-2 5-2v2c-2.5 0-2.5 2-5 2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/airbag.svg���������������������������������0000664�0000000�0000000�00000000602�14753064456�0025353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 8a5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5 5 5 0 0 1 5 5m-3.54 7.55L13 18.03l-2 .02-3.5 3.53L6 20.09zM17 2c1.08 0 2 .88 2 2 0 1.08-.88 2-2 2-1.08 0-2-.88-2-2 0-1.08.89-2 2-2m-2.59 13h-2.82l5.7 5.71 1.42-1.42zm.71-.71 4.29 4.3.22.21c.23-.38.37-.8.37-1.3v-8A2.5 2.5 0 0 0 17.5 7 2.5 2.5 0 0 0 15 9.5v4.67z"/></svg>������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/airballoon-outline.svg���������������������0000664�0000000�0000000�00000001316�14753064456�0027730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 23c-1.1 0-2-.9-2-2v-2h6v2c0 1.1-.9 2-2 2zm1-20c.28 0 .55 0 .81.05C13.42 4.22 14 6.26 14 9c0 2.1-1 7-1 7h-2s-1-4.9-1-7c0-2.74.58-4.78 1.19-5.95.26-.05.53-.05.81-.05m0-2c-.71 0-1.39.09-2.05.26C8.78 2.83 8 5.71 8 9c0 2.28.38 4.37 1 7 0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2 .62-2.63 1-4.72 1-7 0-3.29-.78-6.17-1.95-7.74C13.39 1.09 12.71 1 12 1M4 8c0 3.18 1.85 7.92 4.54 9.21-.54-1-.93-2.54-1.2-4.21C6.55 11.53 6 9.62 6 8c0-1.34.44-2.33 1.47-3.2.26-1.13.62-2.15 1.07-3.01C5.85 3.08 4 4.82 4 8m11.46-6.21c.45.86.81 1.88 1.07 3.01C17.56 5.67 18 6.66 18 8c0 1.62-.55 3.53-1.34 5-.27 1.67-.66 3.21-1.2 4.21C18.15 15.92 20 11.18 20 8s-1.85-4.92-4.54-6.21"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/airballoon.svg�����������������������������0000664�0000000�0000000�00000000747�14753064456�0026262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 23a2 2 0 0 1-2-2v-2h6v2a2 2 0 0 1-2 2zm1-22c.71 0 1.39.09 2.05.26C15.22 2.83 16 5.71 16 9c0 2.28-.38 4.37-1 7a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2c-.62-2.63-1-4.72-1-7 0-3.29.78-6.17 1.95-7.74C10.61 1.09 11.29 1 12 1m8 7c0 3.18-1.85 7.92-4.54 9.21C16.41 15.39 17 11.83 17 9s-.59-5.39-1.54-7.21C18.15 3.08 20 4.82 20 8M4 8c0-3.18 1.85-4.92 4.54-6.21C7.59 3.61 7 6.17 7 9s.59 6.39 1.54 8.21C5.85 15.92 4 11.18 4 8"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/material/airplane-alert.svg�������������������������0000664�0000000�0000000�00000000467�14753064456�0027037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.56 3.91c.59.59.59 1.54 0 2.12l-3.89 3.89 2.12 9.19-1.41 1.42-3.88-7.43L6.6 17l.36 2.47-1.07 1.06-1.76-3.18-3.186-1.77L2 14.5l2.5.37L8.37 11 .944 7.09 2.36 5.68l9.19 2.12 3.89-3.89c.56-.58 1.56-.58 2.12 0M20 7v6h2V7zm0 10h2v-2h-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/airplane-check.svg�������������������������0000664�0000000�0000000�00000000526�14753064456�0027001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.97 13.83A5.9 5.9 0 0 0 13.82 16l-2.27-4.37-3.89 3.87L8 18l-1.05 1.06-1.77-3.19L2 14.11l1.06-1.06 2.48.35 3.89-3.9L2 5.62l1.41-1.41 9.2 2.12 3.89-3.89a1.49 1.49 0 0 1 2.12 0c.58.59.58 1.56 0 2.12l-3.89 3.89zm5.37 2.01-3.59 3.59-1.59-1.59L15 19l2.75 3 4.75-4.75z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/airplane-clock.svg�������������������������0000664�0000000�0000000�00000000654�14753064456�0027021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 9c-.91 0-1.77.18-2.57.5l-.7-3.05 3.89-3.89c.58-.56.58-1.53 0-2.12s-1.54-.586-2.12 0l-3.89 3.89-9.2-2.12L0 3.62 7.43 7.5l-3.89 3.9-2.48-.35L0 12.11l3.18 1.76 1.77 3.19L6 16l-.34-2.5 3.89-3.87 1.02 1.96A6.995 6.995 0 0 0 16 23c3.87 0 7-3.13 7-7s-3.13-7-7-7m0 12c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5m.5-4.75V12H15v5l3.61 2.16.75-1.22z"/></svg>������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/airplane-cog.svg���������������������������0000664�0000000�0000000�00000001354�14753064456�0026474�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.73 12.81c-.97.52-1.81 1.26-2.44 2.15l-1.74-3.33-3.89 3.87L8 18l-1.05 1.06-1.77-3.19L2 14.11l1.06-1.06 2.48.35 3.89-3.9L2 5.62l1.41-1.41 9.2 2.12 3.89-3.89a1.49 1.49 0 0 1 2.12 0c.58.59.58 1.56 0 2.12l-3.89 3.89zm8.07 7.59c.1 0 .1.1 0 .2l-1 1.7c-.1.1-.2.1-.3.1l-1.2-.4c-.3.2-.5.3-.8.5l-.2 1.3c0 .1-.1.2-.2.2h-2c-.1 0-.2-.1-.3-.2l-.2-1.3c-.3-.1-.6-.3-.8-.5l-1.2.5c-.1 0-.2 0-.3-.1l-1-1.7c-.1-.1 0-.2.1-.3l1.1-.8v-1l-1.1-.8c-.1-.1-.1-.2-.1-.3l1-1.7c.1-.1.2-.1.3-.1l1.2.5c.3-.2.5-.3.8-.5l.2-1.3c0-.1.1-.2.3-.2h2c.1 0 .2.1.2.2l.2 1.3c.3.1.6.3.9.5l1.2-.5c.1 0 .3 0 .3.1l1 1.7c.1.1 0 .2-.1.3l-1.1.8v1zM20.5 19c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5.7 1.5 1.5 1.5 1.5-.7 1.5-1.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/airplane-edit.svg��������������������������0000664�0000000�0000000�00000000613�14753064456�0026646�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.55 11.63 7.66 15.5 8 18l-1.05 1.06-1.77-3.19L2 14.11l1.06-1.06 2.48.35 3.89-3.9L2 5.62l1.41-1.41 9.2 2.12 3.89-3.89a1.49 1.49 0 0 1 2.12 0c.58.59.58 1.56 0 2.12l-3.89 3.89 1.3 5.65-2.09 2.09zM13 19.96V22h2.04l6.13-6.12-2.04-2.05zm9.85-6.49-1.32-1.32c-.2-.2-.53-.2-.72 0l-.98.98 2.04 2.04.98-.98c.2-.19.2-.52 0-.72"/></svg>���������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/airplane-landing.svg�����������������������0000664�0000000�0000000�00000000374�14753064456�0027341�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.5 19h19v2h-19zm7.18-5.73 4.35 1.16 5.31 1.42c.8.21 1.62-.26 1.84-1.06.21-.79-.26-1.62-1.06-1.84l-5.31-1.42-2.76-9.03-1.93-.5v8.28L5.15 8.95l-.93-2.32-1.45-.39v5.17l1.6.43z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/airplane-marker.svg������������������������0000664�0000000�0000000�00000000703�14753064456�0027202�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.33 11.05a5.53 5.53 0 0 0-2.24 3.53l-1.54-2.95-3.89 3.87L8 18l-1.05 1.06-1.77-3.19L2 14.11l1.06-1.06 2.48.35 3.89-3.9L2 5.62l1.41-1.41 9.2 2.12 3.89-3.89a1.49 1.49 0 0 1 2.12 0c.58.59.58 1.56 0 2.12l-3.89 3.89zM22 15.5c0 2.6-3.5 6.5-3.5 6.5S15 18.1 15 15.5c0-1.9 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5m-2.3.1c0-.6-.6-1.2-1.2-1.2s-1.2.5-1.2 1.2c0 .6.5 1.2 1.2 1.2s1.3-.6 1.2-1.2"/></svg>�������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/airplane-minus.svg�������������������������0000664�0000000�0000000�00000000456�14753064456�0027061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.97 13.83A5.9 5.9 0 0 0 13.82 16l-2.27-4.37-3.89 3.87L8 18l-1.05 1.06-1.77-3.19L2 14.11l1.06-1.06 2.48.35 3.89-3.9L2 5.62l1.41-1.41 9.2 2.12 3.89-3.89a1.49 1.49 0 0 1 2.12 0c.58.59.58 1.56 0 2.12l-3.89 3.89zM15 18v2h8v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/airplane-off.svg���������������������������0000664�0000000�0000000�00000000527�14753064456�0026477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.84 22.73 18 19.9l-.62.63L16 17.89l-3.65-3.65L9.6 17l.36 2.47-1.07 1.06-1.76-3.18-3.19-1.77L5 14.5l2.5.37 2.73-2.75L6.59 8.5 3.94 7.09l.63-.63L1.11 3l1.28-1.27 19.72 19.73zM16.67 9.92l3.89-3.89c.59-.58.59-1.53 0-2.12s-1.56-.58-2.12 0L14.55 7.8 9.94 6.74l7.8 7.8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/airplane-plus.svg��������������������������0000664�0000000�0000000�00000000502�14753064456�0026701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.97 13.83A5.9 5.9 0 0 0 13.82 16l-2.27-4.37-3.89 3.87L8 18l-1.05 1.06-1.77-3.19L2 14.11l1.06-1.06 2.48.35 3.89-3.9L2 5.62l1.41-1.41 9.2 2.12 3.89-3.89a1.49 1.49 0 0 1 2.12 0c.58.59.58 1.56 0 2.12l-3.89 3.89zM20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/airplane-remove.svg������������������������0000664�0000000�0000000�00000000627�14753064456�0027223�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.97 13.83A5.9 5.9 0 0 0 13.82 16l-2.27-4.37-3.89 3.87L8 18l-1.05 1.06-1.77-3.19L2 14.11l1.06-1.06 2.48.35 3.89-3.9L2 5.62l1.41-1.41 9.2 2.12 3.89-3.89a1.49 1.49 0 0 1 2.12 0c.58.59.58 1.56 0 2.12l-3.89 3.89zm6.57 3.05-1.42-1.41L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19z"/></svg>���������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/airplane-search.svg������������������������0000664�0000000�0000000�00000000720�14753064456�0027165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.55 9.63 1.35 2.59c.6-1.05 1.51-1.91 2.6-2.48l-.77-3.29 3.89-3.89c.58-.59.58-1.56 0-2.122s-1.54-.586-2.12 0L10.61 4.33l-9.2-2.12L0 3.62 7.43 7.5l-3.89 3.9-2.48-.35L0 12.11l3.18 1.76 1.77 3.19L6 16l-.34-2.5zM16.5 11c2.5 0 4.5 2 4.5 4.5 0 .88-.25 1.71-.69 2.4l3.08 3.1L22 22.39l-3.12-3.07c-.69.43-1.51.68-2.38.68-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5m0 2a2.5 2.5 0 0 0 0 5 2.5 2.5 0 0 0 0-5"/></svg>������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/airplane-settings.svg����������������������0000664�0000000�0000000�00000000505�14753064456�0027561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.09 4.56 16.2 8.45l2.12 9.19-1.41 1.42L13 11.63 9.13 15.5 9.5 18l-1.08 1.06-1.77-3.19-3.18-1.76 1.06-1.07L7 13.4l3.9-3.9-7.43-3.88 1.42-1.41 9.19 2.12 3.89-3.89a1.49 1.49 0 0 1 2.12 0c.59.56.59 1.53 0 2.12M7 24h2v-2H7zm4 0h2v-2h-2zm4 0h2v-2h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/airplane-takeoff.svg�����������������������0000664�0000000�0000000�00000000427�14753064456�0027343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.5 19h19v2h-19zm19.57-9.36c-.21-.8-1.04-1.28-1.84-1.06L14.92 10 8 3.57l-1.91.51 4.14 7.17-4.97 1.33-1.97-1.54-1.45.39 1.82 3.16.77 1.33 1.6-.42 5.31-1.43 4.35-1.16L21 11.5c.81-.24 1.28-1.06 1.07-1.86"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/airplane.svg�������������������������������0000664�0000000�0000000�00000000435�14753064456�0025725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.56 3.91c.59.59.59 1.54 0 2.12l-3.89 3.89 2.12 9.19-1.41 1.42-3.88-7.43L9.6 17l.36 2.47-1.07 1.06-1.76-3.18-3.19-1.77L5 14.5l2.5.37L11.37 11 3.94 7.09l1.42-1.41 9.19 2.12 3.89-3.89c.56-.58 1.56-.58 2.12 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/airport.svg��������������������������������0000664�0000000�0000000�00000000422�14753064456�0025606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.97 5.92a.967.967 0 0 0-1.18-.68l-3.4.91-4.44-4.12-1.23.33 2.66 4.59-3.19.85-1.26-.98-.93.25 1.66 2.88 10.62-2.84c.52-.15.82-.68.69-1.19M21 10l-1 2h-5l-1-2 1-1h2V7h1v2h2zm1 10v2H2v-2h13v-7h5v7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alarm-bell.svg�����������������������������0000664�0000000�0000000�00000000610�14753064456�0026135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 18.66V22H5v-3.34a9.98 9.98 0 0 0 10 0M22 4a2 2 0 0 0-2-2c-.31 0-.61.07-.88.21-.3.15-.56.37-.76.64A1.997 1.997 0 0 0 20 6h.24c1.73 4.43.42 9.46-3.24 12.5-.32.25-.65.5-1 .72V21h1v-1.26c3.14-2.24 5-5.88 5-9.74 0-1.5-.28-3-.83-4.38.52-.38.83-.98.83-1.62m-4 6a8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alarm-check.svg����������������������������0000664�0000000�0000000�00000000516�14753064456�0026301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.54 14.53 8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06zM12 20a7 7 0 0 1-7-7 7 7 0 0 1 7-7 7 7 0 0 1 7 7 7 7 0 0 1-7 7m0-16a9 9 0 0 0-9 9 9 9 0 0 0 9 9 9 9 0 0 0 9-9 9 9 0 0 0-9-9m-4.12-.61L6.6 1.86 2 5.71l1.29 1.53zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alarm-light-off-outline.svg����������������0000664�0000000�0000000�00000000550�14753064456�0030556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 7.3 9 5.8c.9-.5 1.9-.8 3-.8 3.3 0 6 2.7 6 6v3.8l-2-2V11c0-2.2-1.8-4-4-4q-.75 0-1.5.3m9.6-2.5-1.4-1.4-2.1 2.1L18 6.9zm-.6 5.7v2h3v-2zm-15 0h-3v2h3zM2.4 1.7l19.7 19.7-1.3 1.3-.7-.7H4c0-1.1.9-2 2-2h12.1l-1-1H6v-8c0-.9.2-1.8.6-2.5L1.1 3zM8 17h7.1l-7-7c0 .3-.1.7-.1 1zm5-16h-2v3h2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alarm-light-off.svg������������������������0000664�0000000�0000000�00000000441�14753064456�0027100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18 14.8-9-9c.9-.5 1.9-.8 3-.8 3.3 0 6 2.7 6 6zm2.1-10-1.4-1.4-2.1 2.1L18 6.9zm-.6 5.7v2h3v-2zm-15 0h-3v2h3zM1.1 3l5.5 5.5c-.4.7-.6 1.6-.6 2.5v8h11.1l1 1H6c-1.1 0-2 .9-2 2h16.1l.7.7 1.3-1.3L2.4 1.7zM13 1h-2v3h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alarm-light-outline.svg��������������������0000664�0000000�0000000�00000000467�14753064456�0030015�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 6.9 3.87 4.78l1.41-1.41L7.4 5.5zM13 1v3h-2V1zm7.13 3.78L18 6.9l-1.4-1.4 2.12-2.13zM4.5 10.5v2h-3v-2zm15 0h3v2h-3zM6 20h12a2 2 0 0 1 2 2H4a2 2 0 0 1 2-2m6-15a6 6 0 0 1 6 6v8H6v-8a6 6 0 0 1 6-6m0 2a4 4 0 0 0-4 4v6h8v-6a4 4 0 0 0-4-4"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alarm-light.svg����������������������������0000664�0000000�0000000�00000000420�14753064456�0026325�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 6.9 3.87 4.78l1.41-1.41L7.4 5.5zM13 1v3h-2V1zm7.13 3.78L18 6.9l-1.4-1.4 2.12-2.13zM4.5 10.5v2h-3v-2zm15 0h3v2h-3zM6 20h12a2 2 0 0 1 2 2H4a2 2 0 0 1 2-2m6-15a6 6 0 0 1 6 6v8H6v-8a6 6 0 0 1 6-6"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alarm-multiple.svg�������������������������0000664�0000000�0000000�00000000730�14753064456�0027055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.29 3.25 5.16 6.72 4 5.34l4.14-3.47zM22 5.35l-1.16 1.38-4.14-3.48 1.16-1.38zM13 4a8 8 0 0 1 8 8 8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8m0 2a6 6 0 0 0-6 6 6 6 0 0 0 6 6 6 6 0 0 0 6-6 6 6 0 0 0-6-6m-1 1.5h1.5v4.53l3.22 1.47-.62 1.36L12 13zM1 14c0-2.5 1.13-4.7 2.91-6.17A10 10 0 0 0 3 12l.06 1.13L3 14c0 2.28 1.27 4.26 3.14 5.28 1.3 1.22 2.93 2.11 4.75 2.5-.61.14-1.24.22-1.89.22a8 8 0 0 1-8-8"/></svg>����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alarm-note-off.svg�������������������������0000664�0000000�0000000�00000001166�14753064456�0026743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13v2.8l1 1V15h3v-2zM2.38 1.73 1.11 3 3 4.88l-1 .83 1.29 1.53 1.12-.94.8.8c-3.26 3.75-2.86 9.44.9 12.7A8.96 8.96 0 0 0 12 22c.33 0 .67 0 1-.06v-2c-.33.06-.67.06-1 .06a7 7 0 0 1-7-7c0-1.64.57-3.23 1.63-4.5l4.78 4.8-3.91 2.32.75 1.23 4.19-2.52 3.94 3.94a2.5 2.5 0 0 0-1.13 3.35 2.5 2.5 0 0 0 3.35 1.13c.49-.25.9-.64 1.13-1.13l1.11 1.11 1.27-1.27zM12 6c3.1 0 5.83 2.03 6.71 5h2.07C19.85 6.9 16.2 4 12 4c-1.35 0-2.69.3-3.9.9l1.52 1.52C10.38 6.14 11.19 6 12 6m-.5 2.3L13 9.8V8h-1.5zM7.88 3.39 6.6 1.86l-.84.7L7.18 4zm9.52-1.53-1.29 1.53 4.6 3.86L22 5.72z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alarm-note.svg�����������������������������0000664�0000000�0000000�00000000677�14753064456�0026201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.4 1.86-1.29 1.53 4.6 3.86L22 5.72zm-10.8 0L2 5.71l1.29 1.53 4.59-3.85zM12 4a9 9 0 0 0-9 9 9 9 0 0 0 9 9c.33 0 .67 0 1-.06v-2c-.33.06-.67.06-1 .06a7 7 0 0 1-7-7 7 7 0 0 1 7-7c3.1 0 5.83 2.03 6.71 5h2.07C19.85 6.9 16.2 4 12 4m11 11h-3v5.5a2.5 2.5 0 0 1-2.5 2.5 2.5 2.5 0 0 1-2.5-2.5 2.5 2.5 0 0 1 2.5-2.5c.54 0 1.07.18 1.5.5V13h4zM11.5 8v5.25l-4 2.37.75 1.23L13 14V8z"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alarm-off.svg������������������������������0000664�0000000�0000000�00000001005�14753064456�0025770�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 3.28 6.6 1.86l-.86.71L7.16 4m9.31 14.39C15.26 19.39 13.7 20 12 20a7 7 0 0 1-7-7c0-1.7.61-3.26 1.61-4.47M2.92 2.29 1.65 3.57 3 4.9l-1.13.93 1.42 1.42 1.11-.94.8.8A8.96 8.96 0 0 0 3 13a9 9 0 0 0 9 9c2.25 0 4.31-.83 5.89-2.2l2.2 2.2 1.27-1.27L3.89 3.27zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86zM12 6a7 7 0 0 1 7 7c0 .84-.16 1.65-.43 2.4l1.52 1.52c.58-1.19.91-2.51.91-3.92a9 9 0 0 0-9-9c-1.41 0-2.73.33-3.92.91L9.6 6.43C10.35 6.16 11.16 6 12 6"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alarm-panel-outline.svg��������������������0000664�0000000�0000000�00000000450�14753064456�0027775�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 12H6v-2h3zm4.5-2h-3v2h3zm4.5 0h-3v2h3zm0-4H6v3h12zm2-1H4v14h16zm0-2c1.1 0 2 .9 2 2v14c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2zM9 13H6v2h3zm4.5 0h-3v2h3zm4.5 0h-3v2h3zm-9 3H6v2h3zm4.5 0h-3v2h3zm4.5 0h-3v2h3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alarm-panel.svg����������������������������0000664�0000000�0000000�00000000434�14753064456�0026322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2M8 19H5v-2h3zm0-3H5v-2h3zm0-3H5v-2h3zm5.5 6h-3v-2h3zm0-3h-3v-2h3zm0-3h-3v-2h3zm5.5 6h-3v-2h3zm0-3h-3v-2h3zm0-3h-3v-2h3zm0-4H5V5h14z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alarm-plus.svg�����������������������������0000664�0000000�0000000�00000000460�14753064456�0026205�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9h-2v3H8v2h3v3h2v-3h3v-2h-3m-1 8a7 7 0 0 1-7-7 7 7 0 0 1 7-7 7 7 0 0 1 7 7 7 7 0 0 1-7 7m0-16a9 9 0 0 0-9 9 9 9 0 0 0 9 9 9 9 0 0 0 9-9 9 9 0 0 0-9-9m10 1.72-4.6-3.86-1.29 1.53 4.6 3.86M7.88 3.39 6.6 1.86 2 5.71l1.29 1.53z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alarm-snooze.svg���������������������������0000664�0000000�0000000�00000000477�14753064456�0026547�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.88 3.39 6.6 1.86 2 5.71l1.29 1.53zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86zM12 4a9 9 0 0 0-9 9 9 9 0 0 0 9 9 9 9 0 0 0 9-9 9 9 0 0 0-9-9m0 16a7 7 0 0 1-7-7 7 7 0 0 1 7-7 7 7 0 0 1 7 7 7 7 0 0 1-7 7m-3-9h3.63L9 15.2V17h6v-2h-3.63L15 10.8V9H9z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alarm.svg����������������������������������0000664�0000000�0000000�00000000470�14753064456�0025225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20a7 7 0 0 1-7-7 7 7 0 0 1 7-7 7 7 0 0 1 7 7 7 7 0 0 1-7 7m0-16a9 9 0 0 0-9 9 9 9 0 0 0 9 9 9 9 0 0 0 9-9 9 9 0 0 0-9-9m.5 4H11v6l4.75 2.85.75-1.23-4-2.37zM7.88 3.39 6.6 1.86 2 5.71l1.29 1.53zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/album.svg����������������������������������0000664�0000000�0000000�00000000434�14753064456�0025231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 11a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m0 5.5c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2 4.5-4.5 4.5M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alert-box-outline.svg����������������������0000664�0000000�0000000�00000000273�14753064456�0027504�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19H5V5h14m0-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-8 12h2v2h-2zm0-8h2v6h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alert-box.svg������������������������������0000664�0000000�0000000�00000000256�14753064456�0026030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m8 10V7h-2v6zm0 4v-2h-2v2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alert-circle-check-outline.svg�������������0000664�0000000�0000000�00000000561�14753064456�0031230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.75 22.16-2.75-3L17.16 18l1.59 1.59L22.34 16l1.16 1.41zM11 15h2v2h-2zm0-8h2v6h-2zm1-5c5.5 0 10 4.5 10 10l-.08 1.31c-.61-.2-1.25-.31-1.98-.31l.06-1c0-4.42-3.58-8-8-8s-8 3.58-8 8 3.58 8 8 8c.71 0 1.39-.09 2.05-.26.08.68.28 1.32.57 1.91-.84.23-1.72.35-2.62.35-5.53 0-10-4.5-10-10S6.47 2 12 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alert-circle-check.svg���������������������0000664�0000000�0000000�00000000450�14753064456�0027550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.75 22.16-2.75-3L17.16 18l1.59 1.59L22.34 16l1.16 1.41zM13 13V7h-2v6zm0 4v-2h-2v2zM12 2c5.5 0 10 4.5 10 10l-.09 1.31A6.005 6.005 0 0 0 14 19c0 .95.22 1.85.62 2.65-.84.23-1.71.35-2.62.35-5.5 0-10-4.5-10-10S6.5 2 12 2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alert-circle-outline.svg�������������������0000664�0000000�0000000�00000000360�14753064456�0030152�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 15h2v2h-2zm0-8h2v6h-2zm1-5C6.47 2 2 6.5 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 18a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alert-circle.svg���������������������������0000664�0000000�0000000�00000000263�14753064456�0026477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 13h-2V7h2m0 10h-2v-2h2M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alert-decagram-outline.svg�����������������0000664�0000000�0000000�00000000677�14753064456�0030467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23 12-2.44 2.78.34 3.68-3.61.82-1.89 3.18L12 21l-3.4 1.47-1.89-3.18-3.61-.82.34-3.69L1 12l2.44-2.79-.34-3.68 3.61-.81L8.6 1.54 12 3l3.4-1.46 1.89 3.18 3.61.82-.34 3.68zm-2.67 0L18.5 9.89l.24-2.79L16 6.5l-1.42-2.43L12 5.18 9.42 4.07 8 6.5l-2.74.59.24 2.79L3.67 12l1.83 2.1-.24 2.8 2.74.6 1.42 2.43L12 18.81l2.58 1.11L16 17.5l2.74-.61-.24-2.79zM11 15h2v2h-2zm0-8h2v6h-2z"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alert-decagram.svg�������������������������0000664�0000000�0000000�00000000423�14753064456�0026777�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23 12-2.44-2.78.34-3.68-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68zm-10 5h-2v-2h2zm0-4h-2V7h2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alert-minus-outline.svg��������������������0000664�0000000�0000000�00000000343�14753064456�0030045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 15.5h2v2h-2zm3 3.5v-.4H5.4L12 7.3l4.11 7.14c.51-.44 1.09-.79 1.73-1.03L12 3.3 2 20.6h12.22c-.14-.51-.22-1.04-.22-1.6m-1-8.5h-2v4h2zm3 7.5v2h8v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alert-minus.svg����������������������������0000664�0000000�0000000�00000000275�14753064456�0026374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 19c0-2.79 1.91-5.13 4.5-5.8L12 2 1 21h13.35c-.22-.63-.35-1.3-.35-2m-1-1h-2v-2h2zm0-4h-2v-4h2zm11 4v2h-8v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alert-octagon-outline.svg������������������0000664�0000000�0000000�00000000336�14753064456�0030346�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.27 3 3 8.27v7.46L8.27 21h7.46C17.5 19.24 21 15.73 21 15.73V8.27L15.73 3M9.1 5h5.8L19 9.1v5.8L14.9 19H9.1L5 14.9V9.1m6 5.9h2v2h-2zm0-8h2v6h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alert-octagon.svg��������������������������0000664�0000000�0000000�00000000234�14753064456�0026666�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 13h-2V7h2m-2 8h2v2h-2m4.73-14H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alert-octagram-outline.svg�����������������0000664�0000000�0000000�00000000605�14753064456�0030510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.2 16.06 3.88 12 2.2 7.94l4.06-1.68L7.94 2.2 12 3.88l4.06-1.68 1.68 4.06 4.06 1.68L20.12 12l1.68 4.06-4.06 1.68-1.68 4.06L12 20.12 7.94 21.8l-1.68-4.06zM4.81 9l1.24 3-1.24 3 2.98 1.21L9 19.19l3-1.24 3 1.24 1.21-2.98L19.19 15l-1.24-3 1.24-3-2.98-1.21L15 4.81l-3 1.24-3-1.24-1.21 2.98zM11 15h2v2h-2zm0-8h2v6h-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alert-octagram.svg�������������������������0000664�0000000�0000000�00000000403�14753064456�0027027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.2 16.06 3.88 12 2.2 7.94l4.06-1.68L7.94 2.2 12 3.88l4.06-1.68 1.68 4.06 4.06 1.68L20.12 12l1.68 4.06-4.06 1.68-1.68 4.06L12 20.12 7.94 21.8l-1.68-4.06zM13 17v-2h-2v2zm0-4V7h-2v6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alert-outline.svg��������������������������0000664�0000000�0000000�00000000206�14753064456�0026712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2 1 21h22M12 6l7.53 13H4.47M11 10v4h2v-4m-2 6v2h2v-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alert-plus-outline.svg���������������������0000664�0000000�0000000�00000000367�14753064456�0027703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 15.5h2v2h-2zm3 3.5v-.4H5.4L12 7.3l4.11 7.14c.51-.44 1.09-.79 1.73-1.03L12 3.3 2 20.6h12.22c-.14-.51-.22-1.04-.22-1.6m-1-8.5h-2v4h2zm6 4.5v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alert-plus.svg�����������������������������0000664�0000000�0000000�00000000320�14753064456�0026213�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 19c0-2.79 1.91-5.13 4.5-5.8L12 2 1 21h13.35c-.22-.63-.35-1.3-.35-2m-1-1h-2v-2h2zm0-4h-2v-4h2zm8 1v3h3v2h-3v3h-2v-3h-3v-2h3v-3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alert-remove-outline.svg�������������������0000664�0000000�0000000�00000000514�14753064456�0030207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 15.5h2v2h-2zm3 3.5v-.4H5.4L12 7.3l4.11 7.14c.51-.44 1.09-.79 1.73-1.03L12 3.3 2 20.6h12.22c-.14-.51-.22-1.04-.22-1.6m-1-8.5h-2v4h2zm9.12 4.96L20 17.59l-2.12-2.13-1.41 1.42L18.59 19l-2.12 2.12 1.41 1.42L20 20.41l2.12 2.13 1.42-1.42L21.41 19l2.13-2.12z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alert-remove.svg���������������������������0000664�0000000�0000000�00000000447�14753064456�0026537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 19c0-2.79 1.91-5.13 4.5-5.8L12 2 1 21h13.35c-.22-.63-.35-1.3-.35-2m-1-1h-2v-2h2zm0-4h-2v-4h2zm10.54 2.88L21.41 19l2.13 2.12-1.42 1.42L20 20.41l-2.12 2.13-1.41-1.42L18.59 19l-2.12-2.12 1.41-1.41L20 17.59l2.12-2.13z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alert-rhombus-outline.svg������������������0000664�0000000�0000000�00000000371�14753064456�0030372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c-.5 0-1 .19-1.41.59l-8 8c-.79.78-.79 2.04 0 2.82l8 8c.78.79 2.04.79 2.82 0l8-8c.79-.78.79-2.04 0-2.82l-8-8C13 2.19 12.5 2 12 2m0 2 8 8-8 8-8-8m7-5v6h2V7m-2 8v2h2v-2Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alert-rhombus.svg��������������������������0000664�0000000�0000000�00000000353�14753064456�0026715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c-.5 0-1 .19-1.41.59l-8 8c-.79.78-.79 2.04 0 2.82l8 8c.78.79 2.04.79 2.82 0l8-8c.79-.78.79-2.04 0-2.82l-8-8C13 2.19 12.5 2 12 2m-1 5h2v6h-2zm0 8h2v2h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alert.svg����������������������������������0000664�0000000�0000000�00000000165�14753064456�0025241�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 14h-2V9h2m0 9h-2v-2h2M1 21h22L12 2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alien-outline.svg��������������������������0000664�0000000�0000000�00000000774�14753064456�0026705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.31 10.93c1.02 1.64.87 3.57-.35 4.35-1.22.76-3.04.05-4.07-1.59-1.02-1.64-.86-3.59.36-4.35s3.04-.05 4.06 1.59M12 17.75c2 0 2.5-.75 2.5-.75s-.5 2-2.5 2-2.5-1.97-2.5-2c0 0 .5.75 2.5.75m5.75-8.41c1.22.76 1.38 2.71.36 4.35-1.03 1.64-2.85 2.35-4.07 1.59-1.22-.78-1.37-2.71-.35-4.35s2.84-2.35 4.06-1.59M12 20c2.5 0 8-5.14 8-9s-3.59-7-8-7-8 3.14-8 7 5.5 9 8 9m0-18c5.5 0 10 4.04 10 9 0 4.08-5.68 11-10 11S2 15.08 2 11c0-4.96 4.5-9 10-9"/></svg>����mkdocs-material-9.6.4/material/templates/.icons/material/alien.svg����������������������������������0000664�0000000�0000000�00000000660�14753064456�0025222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3c4.97 0 9 3.58 9 8s-6 10-9 10-9-5.58-9-10 4.03-8 9-8m-1.69 7.93C9.29 9.29 7.47 8.58 6.25 9.34s-1.38 2.71-.36 4.35c1.03 1.64 2.85 2.35 4.07 1.59 1.22-.78 1.37-2.71.35-4.35m3.38 0c-1.02 1.64-.87 3.57.35 4.35 1.22.76 3.04.05 4.07-1.59 1.02-1.64.86-3.59-.36-4.35s-3.04-.05-4.06 1.59M12 17.75c-2 0-2.5-.75-2.5-.75 0 .03.5 2 2.5 2s2.5-2 2.5-2-.5.75-2.5.75"/></svg>��������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/align-horizontal-center.svg����������������0000664�0000000�0000000�00000000200�14753064456�0030657�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 2h2v5h8v3h-8v4h5v3h-5v5h-2v-5H6v-3h5v-4H3V7h8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/align-horizontal-distribute.svg������������0000664�0000000�0000000�00000000170�14753064456�0031563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 22H2V2h2zM22 2h-2v20h2zm-8.5 5h-3v10h3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/align-horizontal-left.svg������������������0000664�0000000�0000000�00000000164�14753064456�0030342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 22H2V2h2zM22 7H6v3h16zm-6 7H6v3h10z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/align-horizontal-right.svg�����������������0000664�0000000�0000000�00000000166�14753064456�0030527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2h2v20h-2zM2 10h16V7H2zm6 7h10v-3H8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/align-vertical-bottom.svg������������������0000664�0000000�0000000�00000000167�14753064456�0030337�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 22H2v-2h20zM10 2H7v16h3zm7 6h-3v10h3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/align-vertical-center.svg������������������0000664�0000000�0000000�00000000202�14753064456�0030301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 11h-5V6h-3v5h-4V3H7v8H1.8v2H7v8h3v-8h4v5h3v-5h5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/align-vertical-distribute.svg��������������0000664�0000000�0000000�00000000170�14753064456�0031203�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 2v2H2V2zM7 10.5v3h10v-3zM2 20v2h20v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/align-vertical-top.svg���������������������0000664�0000000�0000000�00000000162�14753064456�0027630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 2v2H2V2zM7 22h3V6H7zm7-6h3V6h-3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/all-inclusive-box-outline.svg��������������0000664�0000000�0000000�00000001150�14753064456�0031137�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 12c0 1.84-1.5 3.34-3.34 3.34-.89 0-1.72-.34-2.35-.98l-.6-.6 1.06-1.05c.27.29.6.59.6.59.34.35.81.54 1.3.54 1.01 0 1.83-.84 1.83-1.84s-.82-1.84-1.83-1.84c-.49 0-.96.2-1.3.54l-3.67 3.66c-.63.64-1.47.98-2.36.98C6.5 15.34 5 13.84 5 12s1.5-3.34 3.34-3.34c.89 0 1.73.34 2.36.98l.59.6-1.06 1.06-.59-.6c-.35-.34-.81-.54-1.3-.54-1.02 0-1.84.84-1.84 1.84s.82 1.84 1.84 1.84c.49 0 .95-.19 1.3-.54l3.67-3.66c.63-.64 1.46-.98 2.35-.98C17.5 8.66 19 10.16 19 12m2-7v14c0 1.11-.89 2-2 2H5a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2h14a2 2 0 0 1 2 2m-2 0H5v14h14z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/all-inclusive-box.svg����������������������0000664�0000000�0000000�00000001046�14753064456�0027466�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m-2.9 12.9c-1.03 0-2.01-.4-2.75-1.14l-.64-.64 1.42-1.41.63.63A1.897 1.897 0 0 0 18 12a1.9 1.9 0 0 0-1.9-1.9c-.5 0-.98.2-1.34.56l-4.11 4.1A3.85 3.85 0 0 1 7.9 15.9C5.75 15.9 4 14.15 4 12s1.75-3.9 3.9-3.9c1.04 0 2.01.4 2.75 1.14l.64.64-1.42 1.42-.63-.64c-.36-.36-.84-.56-1.34-.56a1.9 1.9 0 1 0 0 3.8c.5 0 .98-.2 1.34-.56l4.11-4.1A3.85 3.85 0 0 1 16.1 8.1c2.15 0 3.9 1.75 3.9 3.9s-1.75 3.9-3.9 3.9"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/all-inclusive.svg��������������������������0000664�0000000�0000000�00000001032�14753064456�0026673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.6 6.62c-1.44 0-2.8.56-3.77 1.53L7.8 14.39c-.64.64-1.49.99-2.4.99C3.53 15.38 2 13.87 2 12s1.53-3.38 3.4-3.38c.91 0 1.76.35 2.44 1.03l1.13 1 1.53-1.34L9.22 8.2A5.37 5.37 0 0 0 5.4 6.62C2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53l7.03-6.24c.64-.64 1.49-.99 2.4-.99 1.87 0 3.4 1.51 3.4 3.38s-1.53 3.38-3.4 3.38c-.9 0-1.76-.35-2.44-1.03L15 13.34l-1.5 1.34 1.28 1.12a5.39 5.39 0 0 0 3.82 1.57c2.98 0 5.4-2.41 5.4-5.37 0-3-2.42-5.38-5.4-5.38"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/allergy.svg��������������������������������0000664�0000000�0000000�00000001025�14753064456�0025565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.75 5.33a1.25 1.25 0 0 0-1.25 1.25v4.59h-.83V4.08a1.25 1.25 0 0 0-2.5 0v7.09h-.84V3.25a1.25 1.25 0 1 0-2.5 0v7.92H11V5.33a1.25 1.25 0 0 0-2.5 0v9.93l-3.59-2a1 1 0 0 0-.5-.14 1 1 0 0 0-.66.25l-1.08 1L9.21 21a3.3 3.3 0 0 0 2.37 1h6.09A3.33 3.33 0 0 0 21 18.67V6.58a1.25 1.25 0 0 0-1.25-1.25M11 15a1 1 0 1 1 1-1 1 1 0 0 1-1 1m2 3a1 1 0 1 1 1-1 1 1 0 0 1-1 1m5-2a1 1 0 1 1 1-1 1 1 0 0 1-1 1m-1 3a1 1 0 1 1 1-1 1 1 0 0 1-1 1m-2-4a1 1 0 1 1 1-1 1 1 0 0 1-1 1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-a-box-outline.svg��������������������0000664�0000000�0000000�00000000336�14753064456�0027700�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2zm2 0v14h14V5zm6 2h2a2 2 0 0 1 2 2v8h-2v-4h-2v4H9V9a2 2 0 0 1 2-2m0 2v2h2V9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-a-box.svg����������������������������0000664�0000000�0000000�00000000317�14753064456�0026222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2zm8 2a2 2 0 0 0-2 2v8h2v-4h2v4h2V9a2 2 0 0 0-2-2zm0 2h2v2h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-a-circle-outline.svg�����������������0000664�0000000�0000000�00000000425�14753064456�0030350�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7h2a2 2 0 0 1 2 2v8h-2v-4h-2v4H9V9a2 2 0 0 1 2-2m0 2v2h2V9zm1 11a8 8 0 0 0 8-8 8 8 0 0 0-8-8 8 8 0 0 0-8 8 8 8 0 0 0 8 8m0-18a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-a-circle.svg�������������������������0000664�0000000�0000000�00000000326�14753064456�0026673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m-1 5a2 2 0 0 0-2 2v8h2v-4h2v4h2V9a2 2 0 0 0-2-2zm0 2h2v2h-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-a.svg��������������������������������0000664�0000000�0000000�00000000213�14753064456�0025427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7a2 2 0 0 0-2 2v8h2v-4h2v4h2V9a2 2 0 0 0-2-2zm0 2h2v2h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-b-box-outline.svg��������������������0000664�0000000�0000000�00000000417�14753064456�0027701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 10.5c0 .8-.7 1.5-1.5 1.5.8 0 1.5.7 1.5 1.5V15a2 2 0 0 1-2 2H9V7h4a2 2 0 0 1 2 2zM13 15v-2h-2v2zm0-4V9h-2v2zM3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2zm2 0v14h14V5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-b-box.svg����������������������������0000664�0000000�0000000�00000000407�14753064456�0026223�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m10 7.5V9a2 2 0 0 0-2-2H9v10h4a2 2 0 0 0 2-2v-1.5c0-.8-.7-1.5-1.5-1.5.8 0 1.5-.7 1.5-1.5M13 15h-2v-2h2zm0-4h-2V9h2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-b-circle-outline.svg�����������������0000664�0000000�0000000�00000000504�14753064456�0030347�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 10.5c0 .8-.7 1.5-1.5 1.5.8 0 1.5.7 1.5 1.5V15a2 2 0 0 1-2 2H9V7h4a2 2 0 0 1 2 2zM13 15v-2h-2v2zm0-4V9h-2v2zm-1-9a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-b-circle.svg�������������������������0000664�0000000�0000000�00000000413�14753064456�0026671�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m3 8.5V9a2 2 0 0 0-2-2H9v10h4a2 2 0 0 0 2-2v-1.5c0-.8-.7-1.5-1.5-1.5.8 0 1.5-.7 1.5-1.5M13 15h-2v-2h2zm0-4h-2V9h2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-b.svg��������������������������������0000664�0000000�0000000�00000000302�14753064456�0025427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 10.5V9a2 2 0 0 0-2-2H9v10h4a2 2 0 0 0 2-2v-1.5c0-.8-.7-1.5-1.5-1.5.8 0 1.5-.7 1.5-1.5M13 15h-2v-2h2zm0-4h-2V9h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-c-box-outline.svg��������������������0000664�0000000�0000000�00000000370�14753064456�0027700�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2zm2 0v14h14V5zm6 2h2a2 2 0 0 1 2 2v1h-2V9h-2v6h2v-1h2v1a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-c-box.svg����������������������������0000664�0000000�0000000�00000000352�14753064456�0026223�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m6 4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h-2v1h-2V9h2v1h2V9a2 2 0 0 0-2-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-c-circle-outline.svg�����������������0000664�0000000�0000000�00000000455�14753064456�0030355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7h2a2 2 0 0 1 2 2v1h-2V9h-2v6h2v-1h2v1a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2m1-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-c-circle.svg�������������������������0000664�0000000�0000000�00000000360�14753064456�0026673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m-1 5a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h-2v1h-2V9h2v1h2V9a2 2 0 0 0-2-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-c.svg��������������������������������0000664�0000000�0000000�00000000245�14753064456�0025436�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h-2v1h-2V9h2v1h2V9a2 2 0 0 0-2-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-d-box-outline.svg��������������������0000664�0000000�0000000�00000000322�14753064456�0027676�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h4a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H9zm2 2v6h2V9zM3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2zm2 0v14h14V5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-d-box.svg����������������������������0000664�0000000�0000000�00000000310�14753064456�0026216�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v10h4a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zm2 2h2v6h-2zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-d-circle-outline.svg�����������������0000664�0000000�0000000�00000000406�14753064456�0030352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h4a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H9zm2 2v6h2V9zm1-7a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-d-circle.svg�������������������������0000664�0000000�0000000�00000000315�14753064456�0026674�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2M9 7v10h4a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zm2 2h2v6h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-d.svg��������������������������������0000664�0000000�0000000�00000000202�14753064456�0025430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v10h4a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zm2 2h2v6h-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-e-box-outline.svg��������������������0000664�0000000�0000000�00000000275�14753064456�0027706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h6v2h-4v2h4v2h-4v2h4v2H9zM3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2zm2 0v14h14V5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-e-box.svg����������������������������0000664�0000000�0000000�00000000265�14753064456�0026230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v10h6v-2h-4v-2h4v-2h-4V9h4V7zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-e-circle-outline.svg�����������������0000664�0000000�0000000�00000000361�14753064456�0030353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h6v2h-4v2h4v2h-4v2h4v2H9zm3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-e-circle.svg�������������������������0000664�0000000�0000000�00000000272�14753064456�0026677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2M9 7v10h6v-2h-4v-2h4v-2h-4V9h4V7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-e.svg��������������������������������0000664�0000000�0000000�00000000157�14753064456�0025442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v10h6v-2h-4v-2h4v-2h-4V9h4V7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-f-box-outline.svg��������������������0000664�0000000�0000000�00000000271�14753064456�0027703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h6v2h-4v2h3v2h-3v4H9zM3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2zm2 0v14h14V5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-f-box.svg����������������������������0000664�0000000�0000000�00000000257�14753064456�0026232�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v10h2v-4h3v-2h-3V9h4V7zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-f-circle-outline.svg�����������������0000664�0000000�0000000�00000000355�14753064456�0030357�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h6v2h-4v2h3v2h-3v4H9zm3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-f-circle.svg�������������������������0000664�0000000�0000000�00000000264�14753064456�0026701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2M9 7v10h2v-4h3v-2h-3V9h4V7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-f.svg��������������������������������0000664�0000000�0000000�00000000151�14753064456�0025435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v10h2v-4h3v-2h-3V9h4V7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-g-box-outline.svg��������������������0000664�0000000�0000000�00000000346�14753064456�0027707�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7h4v2h-4v6h2v-4h2v4a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2zm2 0v14h14V5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-g-box.svg����������������������������0000664�0000000�0000000�00000000331�14753064456�0026224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-4h-2v4h-2V9h4V7zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-g-circle-outline.svg�����������������0000664�0000000�0000000�00000000432�14753064456�0030354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7h4v2h-4v6h2v-4h2v4a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2m1-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-g-circle.svg�������������������������0000664�0000000�0000000�00000000336�14753064456�0026702�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m-1 5a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-4h-2v4h-2V9h4V7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-g.svg��������������������������������0000664�0000000�0000000�00000000223�14753064456�0025436�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-4h-2v4h-2V9h4V7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-h-box-outline.svg��������������������0000664�0000000�0000000�00000000277�14753064456�0027713�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h2v4h2V7h2v10h-2v-4h-2v4H9zM3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2zm2 0v14h14V5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-h-box.svg����������������������������0000664�0000000�0000000�00000000263�14753064456�0026231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v10h2v-4h2v4h2V7h-2v4h-2V7zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-h-circle-outline.svg�����������������0000664�0000000�0000000�00000000363�14753064456�0030360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h2v4h2V7h2v10h-2v-4h-2v4H9zm3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-h-circle.svg�������������������������0000664�0000000�0000000�00000000270�14753064456�0026700�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2M9 7v10h2v-4h2v4h2V7h-2v4h-2V7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-h.svg��������������������������������0000664�0000000�0000000�00000000155�14753064456�0025443�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v10h2v-4h2v4h2V7h-2v4h-2V7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-i-box-outline.svg��������������������0000664�0000000�0000000�00000000301�14753064456�0027700�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 7v2h-1v6h1v2h-4v-2h1V9h-1V7zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 2v14h14V5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-i-box.svg����������������������������0000664�0000000�0000000�00000000264�14753064456�0026233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 7h-4v2h1v6h-1v2h4v-2h-1V9h1zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-i-circle-outline.svg�����������������0000664�0000000�0000000�00000000365�14753064456�0030363�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 7v2h-1v6h1v2h-4v-2h1V9h-1V7zm-2-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-i-circle.svg�������������������������0000664�0000000�0000000�00000000270�14753064456�0026701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m2 5h-4v2h1v6h-1v2h4v-2h-1V9h1z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-i.svg��������������������������������0000664�0000000�0000000�00000000156�14753064456�0025445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 7v2h-1v6h1v2h-4v-2h1V9h-1V7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-j-box-outline.svg��������������������0000664�0000000�0000000�00000000323�14753064456�0027705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 7h2v8a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-1h2v1h2zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 2v14h14V5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-j-box.svg����������������������������0000664�0000000�0000000�00000000306�14753064456�0026231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 7v8h-2v-1H9v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2V7zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-j-circle-outline.svg�����������������0000664�0000000�0000000�00000000407�14753064456�0030361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 7h2v8a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-1h2v1h2zm-1-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-j-circle.svg�������������������������0000664�0000000�0000000�00000000312�14753064456�0026677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m1 5v8h-2v-1H9v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2V7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-j.svg��������������������������������0000664�0000000�0000000�00000000200�14753064456�0025434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 7v8h-2v-1H9v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2V7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-k-box-outline.svg��������������������0000664�0000000�0000000�00000000315�14753064456�0027707�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h2v3.33L13 7h2l-3 5 3 5h-2l-2-3.33V17H9zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 2v14h14V5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-k-box.svg����������������������������0000664�0000000�0000000�00000000302�14753064456�0026226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v10h2v-3.33L13 17h2l-3-5 3-5h-2l-2 3.33V7zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-k-circle-outline.svg�����������������0000664�0000000�0000000�00000000400�14753064456�0030353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h2v3.33L13 7h2l-3 5 3 5h-2l-2-3.33V17H9zm3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-k-circle.svg�������������������������0000664�0000000�0000000�00000000307�14753064456�0026704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2M9 7v10h2v-3.33L13 17h2l-3-5 3-5h-2l-2 3.33V7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-k.svg��������������������������������0000664�0000000�0000000�00000000174�14753064456�0025447�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v10h2v-3.33L13 17h2l-3-5 3-5h-2l-2 3.33V7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-l-box-outline.svg��������������������0000664�0000000�0000000�00000000260�14753064456�0027707�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h2v8h4v2H9zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 2v14h14V5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-l-box.svg����������������������������0000664�0000000�0000000�00000000246�14753064456�0026236�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v10h6v-2h-4V7zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-l-circle-outline.svg�����������������0000664�0000000�0000000�00000000343�14753064456�0030362�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h2v8h4v2H9zm3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-l-circle.svg�������������������������0000664�0000000�0000000�00000000252�14753064456�0026704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v10h6v-2h-4V7zm3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-l.svg��������������������������������0000664�0000000�0000000�00000000140�14753064456�0025441�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v10h6v-2h-4V7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-m-box-outline.svg��������������������0000664�0000000�0000000�00000000334�14753064456�0027712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h6a2 2 0 0 1 2 2v8h-2V9h-2v7h-2V9H9v8H7V9a2 2 0 0 1 2-2M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 2v14h14V5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-m-box.svg����������������������������0000664�0000000�0000000�00000000313�14753064456�0026232�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7a2 2 0 0 0-2 2v8h2V9h2v7h2V9h2v8h2V9a2 2 0 0 0-2-2zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-m-circle-outline.svg�����������������0000664�0000000�0000000�00000000417�14753064456�0030365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h6a2 2 0 0 1 2 2v8h-2V9h-2v7h-2V9H9v8H7V9a2 2 0 0 1 2-2m3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-m-circle.svg�������������������������0000664�0000000�0000000�00000000317�14753064456�0026707�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7a2 2 0 0 0-2 2v8h2V9h2v7h2V9h2v8h2V9a2 2 0 0 0-2-2zm3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-m.svg��������������������������������0000664�0000000�0000000�00000000205�14753064456�0025444�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7a2 2 0 0 0-2 2v8h2V9h2v7h2V9h2v8h2V9a2 2 0 0 0-2-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-n-box-outline.svg��������������������0000664�0000000�0000000�00000000277�14753064456�0027721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h2l2 5V7h2v10h-2l-2-5v5H9zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 2v14h14V5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-n-box.svg����������������������������0000664�0000000�0000000�00000000263�14753064456�0026237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v10h2v-5l2 5h2V7h-2v5l-2-5zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-n-circle-outline.svg�����������������0000664�0000000�0000000�00000000362�14753064456�0030365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h2l2 5V7h2v10h-2l-2-5v5H9zm3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-n-circle.svg�������������������������0000664�0000000�0000000�00000000267�14753064456�0026714�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v10h2v-5l2 5h2V7h-2v5l-2-5zm3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-n.svg��������������������������������0000664�0000000�0000000�00000000155�14753064456�0025451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v10h2v-5l2 5h2V7h-2v5l-2-5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-o-box-outline.svg��������������������0000664�0000000�0000000�00000000361�14753064456�0027714�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 2v14h14V5zm6 2h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2m0 2v6h2V9z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-o-box.svg����������������������������0000664�0000000�0000000�00000000344�14753064456�0026240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zm0 2h2v6h-2zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-o-circle-outline.svg�����������������0000664�0000000�0000000�00000000445�14753064456�0030370�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2m0 2v6h2V9zm1-7a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-o-circle.svg�������������������������0000664�0000000�0000000�00000000350�14753064456�0026706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zm0 2h2v6h-2zm1-7a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-o.svg��������������������������������0000664�0000000�0000000�00000000236�14753064456�0025452�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zm0 2h2v6h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-p-box-outline.svg��������������������0000664�0000000�0000000�00000000330�14753064456�0027711�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h4a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-2v4H9zm2 2v2h2V9zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 2v14h14V5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-p-box.svg����������������������������0000664�0000000�0000000�00000000315�14753064456�0026237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v10h2v-4h2a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zm2 2h2v2h-2zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-p-circle-outline.svg�����������������0000664�0000000�0000000�00000000413�14753064456�0030364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h4a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-2v4H9zm2 2v2h2V9zm1-7a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-p-circle.svg�������������������������0000664�0000000�0000000�00000000321�14753064456�0026705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v10h2v-4h2a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zm2 2h2v2h-2zm1-7a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-p.svg��������������������������������0000664�0000000�0000000�00000000207�14753064456�0025451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v10h2v-4h2a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zm2 2h2v2h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-q-box-outline.svg��������������������0000664�0000000�0000000�00000000366�14753064456�0027723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 4h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2m0 2v14h14V6zm6 1h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2v2h-2v-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2m0 2v6h2V9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-q-box.svg����������������������������0000664�0000000�0000000�00000000351�14753064456�0026240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2v2h2v-2a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zm0 2h2v6h-2zM5 4h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-q-circle-outline.svg�����������������0000664�0000000�0000000�00000000453�14753064456�0030371�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8m-1 3h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2v2h-2v-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2m0 2v6h2V9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-q-circle.svg�������������������������0000664�0000000�0000000�00000000356�14753064456�0026716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m-1 5a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2v2h2v-2a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zm0 2h2v6h-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-q.svg��������������������������������0000664�0000000�0000000�00000000243�14753064456�0025452�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2v2h2v-2a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zm0 2h2v6h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-r-box-outline.svg��������������������0000664�0000000�0000000�00000000362�14753064456�0027720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h4a2 2 0 0 1 2 2v2c0 .84-.5 1.55-1.24 1.85L15 17h-2l-1.2-4H11v4H9zm2 2v2h2V9zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 2v14h14V5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-r-box.svg����������������������������0000664�0000000�0000000�00000000355�14753064456�0026245�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v10h2v-4h.8l1.2 4h2l-1.24-4.15C14.5 12.55 15 11.84 15 11V9a2 2 0 0 0-2-2zm2 2h2v2h-2zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-r-circle-outline.svg�����������������0000664�0000000�0000000�00000000451�14753064456�0030370�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h4a2 2 0 0 1 2 2v2c0 .84-.5 1.55-1.24 1.85L15 17h-2l-1.2-4H11v4H9zm2 2v2h2V9zm1-7a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8c0 4.41 3.58 8 8 8a8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-r-circle.svg�������������������������0000664�0000000�0000000�00000000361�14753064456�0026713�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v10h2v-4h.8l1.2 4h2l-1.24-4.15C14.5 12.55 15 11.84 15 11V9a2 2 0 0 0-2-2zm2 2h2v2h-2zm1-7a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-r.svg��������������������������������0000664�0000000�0000000�00000000247�14753064456�0025457�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v10h2v-4h.8l1.2 4h2l-1.24-4.15C14.5 12.55 15 11.84 15 11V9a2 2 0 0 0-2-2zm2 2h2v2h-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-s-box-outline.svg��������������������0000664�0000000�0000000�00000000372�14753064456�0027722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7h4v2h-4v2h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H9v-2h4v-2h-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 2v14h14V5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-s-box.svg����������������������������0000664�0000000�0000000�00000000352�14753064456�0026243�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2v2H9v2h4a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-2V9h4V7zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-s-circle-outline.svg�����������������0000664�0000000�0000000�00000000455�14753064456�0030375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7h4v2h-4v2h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H9v-2h4v-2h-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2m1-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-s-circle.svg�������������������������0000664�0000000�0000000�00000000356�14753064456�0026720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2v2H9v2h4a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-2V9h4V7zm1-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-s.svg��������������������������������0000664�0000000�0000000�00000000244�14753064456�0025455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2v2H9v2h4a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-2V9h4V7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-t-box-outline.svg��������������������0000664�0000000�0000000�00000000266�14753064456�0027725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h6v2h-2v8h-2V9H9zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 2v14h14V5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-t-box.svg����������������������������0000664�0000000�0000000�00000000247�14753064456�0026247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v2h2v8h2V9h2V7zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-t-circle-outline.svg�����������������0000664�0000000�0000000�00000000351�14753064456�0030371�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h6v2h-2v8h-2V9H9zm3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-t-circle.svg�������������������������0000664�0000000�0000000�00000000253�14753064456�0026715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v2h2v8h2V9h2V7zm3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-t.svg��������������������������������0000664�0000000�0000000�00000000141�14753064456�0025452�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v2h2v8h2V9h2V7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-u-box-outline.svg��������������������0000664�0000000�0000000�00000000321�14753064456�0027716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h2v8h2V7h2v8a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 2v14h14V5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-u-box.svg����������������������������0000664�0000000�0000000�00000000305�14753064456�0026243�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v8a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2V7h-2v8h-2V7zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-u-circle-outline.svg�����������������0000664�0000000�0000000�00000000404�14753064456�0030371�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h2v8h2V7h2v8a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2zm3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-u-circle.svg�������������������������0000664�0000000�0000000�00000000311�14753064456�0026711�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v8a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2V7h-2v8h-2V7zm3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-u.svg��������������������������������0000664�0000000�0000000�00000000177�14753064456�0025464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v8a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2V7h-2v8h-2V7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-v-box-outline.svg��������������������0000664�0000000�0000000�00000000273�14753064456�0027725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h2l1 5 1-5h2l-2 10h-2zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 2v14h14V5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-v-box.svg����������������������������0000664�0000000�0000000�00000000261�14753064456�0026245�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9 7 2 10h2l2-10h-2l-1 5-1-5zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-v-circle-outline.svg�����������������0000664�0000000�0000000�00000000356�14753064456�0030400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h2l1 5 1-5h2l-2 10h-2zm3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-v-circle.svg�������������������������0000664�0000000�0000000�00000000265�14753064456�0026722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9 7 2 10h2l2-10h-2l-1 5-1-5zm3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-v.svg��������������������������������0000664�0000000�0000000�00000000153�14753064456�0025457�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9 7 2 10h2l2-10h-2l-1 5-1-5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-w-box-outline.svg��������������������0000664�0000000�0000000�00000000331�14753064456�0027721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 17a2 2 0 0 1-2-2V7h2v8h2V8h2v7h2V7h2v8a2 2 0 0 1-2 2zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 2v14h14V5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-w-box.svg����������������������������0000664�0000000�0000000�00000000320�14753064456�0026242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 17h6a2 2 0 0 0 2-2V7h-2v8h-2V8h-2v7H9V7H7v8a2 2 0 0 0 2 2M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-w-circle-outline.svg�����������������0000664�0000000�0000000�00000000415�14753064456�0030375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 17a2 2 0 0 1-2-2V7h2v8h2V8h2v7h2V7h2v8a2 2 0 0 1-2 2zm3-15a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-w-circle.svg�������������������������0000664�0000000�0000000�00000000325�14753064456�0026720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 17h6a2 2 0 0 0 2-2V7h-2v8h-2V8h-2v7H9V7H7v8a2 2 0 0 0 2 2m3-15a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-w.svg��������������������������������0000664�0000000�0000000�00000000206�14753064456�0025457�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 17a2 2 0 0 1-2-2V7h2v8h2V8h2v7h2V7h2v8a2 2 0 0 1-2 2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-x-box-outline.svg��������������������0000664�0000000�0000000�00000000324�14753064456�0027724�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h2l1 2.5L13 7h2l-2 5 2 5h-2l-1-2.5-1 2.5H9l2-5zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 2v14h14V5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-x-box.svg����������������������������0000664�0000000�0000000�00000000311�14753064456�0026243�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9 7 2 5-2 5h2l1-2.5 1 2.5h2l-2-5 2-5h-2l-1 2.5L11 7zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-x-circle-outline.svg�����������������0000664�0000000�0000000�00000000407�14753064456�0030377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h2l1 2.5L13 7h2l-2 5 2 5h-2l-1-2.5-1 2.5H9l2-5zm3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-x-circle.svg�������������������������0000664�0000000�0000000�00000000315�14753064456�0026720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9 7 2 5-2 5h2l1-2.5 1 2.5h2l-2-5 2-5h-2l-1 2.5L11 7zm3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-x.svg��������������������������������0000664�0000000�0000000�00000000203�14753064456�0025455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9 7 2 5-2 5h2l1-2.5 1 2.5h2l-2-5 2-5h-2l-1 2.5L11 7z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-y-box-outline.svg��������������������0000664�0000000�0000000�00000000277�14753064456�0027734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h2l1 3 1-3h2l-2 6v4h-2v-4zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 2v14h14V5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-y-box.svg����������������������������0000664�0000000�0000000�00000000264�14753064456�0026253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9 7 2 6v4h2v-4l2-6h-2l-1 3-1-3zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-y-circle-outline.svg�����������������0000664�0000000�0000000�00000000362�14753064456�0030400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h2l1 3 1-3h2l-2 6v4h-2v-4zm3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-y-circle.svg�������������������������0000664�0000000�0000000�00000000270�14753064456�0026721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9 7 2 6v4h2v-4l2-6h-2l-1 3-1-3zm3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-y.svg��������������������������������0000664�0000000�0000000�00000000156�14753064456�0025465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9 7 2 6v4h2v-4l2-6h-2l-1 3-1-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-z-box-outline.svg��������������������0000664�0000000�0000000�00000000276�14753064456�0027734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h6v2l-4 6h4v2H9v-2l4-6H9zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 2v14h14V5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-z-box.svg����������������������������0000664�0000000�0000000�00000000262�14753064456�0026252�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v2h4l-4 6v2h6v-2h-4l4-6V7zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-z-circle-outline.svg�����������������0000664�0000000�0000000�00000000361�14753064456�0030400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h6v2l-4 6h4v2H9v-2l4-6H9zm3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-z-circle.svg�������������������������0000664�0000000�0000000�00000000266�14753064456�0026727�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v2h4l-4 6v2h6v-2h-4l4-6V7zm3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha-z.svg��������������������������������0000664�0000000�0000000�00000000154�14753064456�0025464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v2h4l-4 6v2h6v-2h-4l4-6V7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alpha.svg����������������������������������0000664�0000000�0000000�00000001121�14753064456�0025210�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.08 17.8c-.46.13-.87.2-1.23.2-1.2 0-2.01-.88-2.42-2.65h-.05c-.99 1.91-2.38 2.86-4.13 2.86-1.31 0-2.36-.49-3.15-1.48S5.92 14.5 5.92 13c0-1.75.45-3.15 1.34-4.24s2.1-1.64 3.63-1.64c.82 0 1.56.23 2.2.68.64.46 1.13 1.1 1.47 1.93h.04l.71-2.4h2.56l-2.14 5.32c.24 1.24.49 2.09.77 2.54.24.45.58.68 1 .68.24 0 .43-.04.6-.11zm-4.26-5.24c-.21-1.13-.55-2.01-1.01-2.61-.45-.61-1-.91-1.63-.91-.82 0-1.48.37-1.97 1.1-.49.74-.71 1.65-.71 2.72 0 .98.19 1.79.62 2.45.42.66.99.98 1.7.98.6 0 1.15-.29 1.64-.84.5-.57.91-1.4 1.24-2.49z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alphabet-aurebesh.svg����������������������0000664�0000000�0000000�00000000220�14753064456�0027476�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4v7h11.23L22 4h-3l-5.54 5H5V4zm0 9v7h2v-5h8.46L19 20h3l-7.77-7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alphabet-cyrillic.svg����������������������0000664�0000000�0000000�00000000600�14753064456�0027514�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 6c-1.64 0-3 1.36-3 3v6c0 1.65 1.36 3 3 3h1c1.65 0 3-1.35 3-3v-3c0-1.64-1.35-3-3-3h-2c0-.56.44-1 1-1h2c1.09 0 2-.91 2-2M5 9v2h3c.57 0 1 .43 1 1H7c-1.64 0-3 1.36-3 3 0 1.65 1.36 3 3 3h4v-6c0-1.64-1.35-3-3-3m7 2h2c.57 0 1 .43 1 1v3c0 .57-.43 1-1 1h-1c-.57 0-1-.43-1-1m-8-1h2v2H7c-.57 0-1-.43-1-1s.43-1 1-1"/></svg>��������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alphabet-greek.svg�������������������������0000664�0000000�0000000�00000000721�14753064456�0027003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 6c-1.64 0-3 1.36-3 3v12h2V9c0-.57.43-1 1-1h1c.57 0 1 .43 1 1v1c0 .57-.43 1-1 1h-1v2h1c.57 0 1 .43 1 1v1c0 .57-.43 1-1 1h-1v2h1c1.65 0 3-1.35 3-3v-1c0-.82-.41-1.54-1-2 .59-.46 1-1.18 1-2V9c0-1.64-1.35-3-3-3M7 9c-1.64 0-3 1.36-3 3v3c0 1.65 1.36 3 3 3h.7c.5 0 .95-.19 1.3-.5v.5h2V9H9v.5c-.35-.31-.8-.5-1.3-.5M7 11h1c.57 0 1 .43 1 1v3c0 .57-.43 1-1 1H7c-.57 0-1-.43-1-1v-3c0-.57.43-1 1-1"/></svg>�����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alphabet-latin.svg�������������������������0000664�0000000�0000000�00000000576�14753064456�0027025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 6v12h2v-.69c.37.42.9.69 1.5.69h.5c1.65 0 3-1.35 3-3v-3c0-1.64-1.35-3-3-3h-.5c-.6 0-1.13.27-1.5.7V6M5 9v2h3c.57 0 1 .43 1 1H7c-1.64 0-3 1.36-3 3 0 1.65 1.36 3 3 3h4v-6c0-1.64-1.35-3-3-3m8 2h1c.57 0 1 .43 1 1v3c0 .57-.43 1-1 1h-1c-.57 0-1-.43-1-1v-3c0-.57.43-1 1-1m-9 3h2v2H7c-.57 0-1-.43-1-1s.43-1 1-1"/></svg>����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alphabet-piqad.svg�������������������������0000664�0000000�0000000�00000000434�14753064456�0027005�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.04 4-6.5 13.85C6.21 18.55 5.5 19 4.73 19H4v1h12c1.2 0 2.27.54 3 1.39h1c-.95-2.07-3-3.39-5.3-3.39H12c-.71 0-1.38-.37-1.76-.97-.39-.6-.44-1.35-.14-2l.48-1.03H19v-1h-1.5c-2.21 0-4-1.79-4-4s1.79-4 4-4H20V4Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alphabet-tengwar.svg�����������������������0000664�0000000�0000000�00000000407�14753064456�0027356�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10 7 2.5-4H15l-4 4zm2.5 2c-.54 0-1.04.13-1.5.35V9H8v2h1v10h2v-8.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v2c0 .83-.67 1.5-1.5 1.5H12v2h.5c1.93 0 3.5-1.57 3.5-3.5v-2c0-1.93-1.57-3.5-3.5-3.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alphabetical-off.svg�����������������������0000664�0000000�0000000�00000000601�14753064456�0027306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 16 15.31l-2-2-.35-.31L10 9.34 2.39 1.73 1.11 3 10 11.89V15a2 2 0 0 0 2 2h2a1.9 1.9 0 0 0 .89-.22l5.95 5.95M12 15v-1.11L13.11 15M16 12.78 14.22 11A2 2 0 0 1 16 12.78M20.2 17 18 14.8V13a2 2 0 0 1 2-2h2v2h-2v2h2v2M6 11H4a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h4v-4a2 2 0 0 0-2-2m0 4H4v-2h2m6-4.2L10.2 7H12Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alphabetical-variant-off.svg���������������0000664�0000000�0000000�00000000624�14753064456�0030755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.2 9-2-2H13a2 2 0 0 1 2 2v1.5a1.47 1.47 0 0 1-.36.94L13 9.8V9m10 1V9a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4.8l3.2 3.2h.8a2 2 0 0 0 2-2v-1h-2v1h-2V9h2v1m-6 4.35 7.11 7.11-1.27 1.27-6.38-6.38A2 2 0 0 1 13 17H9v-6.11l-2-2V17H5v-4H3v4H1V9a2 2 0 0 1 2-2h2.12l-4-4 1.27-1.27L9 8.34l2 2 .66.66L15 14.34M5 9H3v2h2m8 3.89L11.11 13H11v2h2Z"/></svg>������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alphabetical-variant.svg�������������������0000664�0000000�0000000�00000000530�14753064456�0030201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 7a2 2 0 0 0-2 2v8h2v-4h2v4h2V9a2 2 0 0 0-2-2zm0 2h2v2H3m12-.5V9a2 2 0 0 0-2-2H9v10h4a2 2 0 0 0 2-2v-1.5a1.54 1.54 0 0 0-1.5-1.5 1.54 1.54 0 0 0 1.5-1.5M13 15h-2v-2h2zm0-4h-2V9h2m6-2a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h-2v1h-2V9h2v1h2V9a2 2 0 0 0-2-2Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/alphabetical.svg���������������������������0000664�0000000�0000000�00000000414�14753064456�0026540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 11a2 2 0 0 1 2 2v4H4a2 2 0 0 1-2-2v-2a2 2 0 0 1 2-2zm-2 2v2h2v-2zm16 0v2h2v2h-2a2 2 0 0 1-2-2v-2a2 2 0 0 1 2-2h2v2zm-8-6v4h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V7zm0 8h2v-2h-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/altimeter.svg������������������������������0000664�0000000�0000000�00000000273�14753064456�0026120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 3v2h10V3zm2 4v2h6V7zm-7 .96v8.08L6.03 12zm20.03 0L18 12l4.03 4.04zM7 11v2h10v-2zm2 4v2h6v-2zm-2 4v2h10v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ambulance.svg������������������������������0000664�0000000�0000000�00000000632�14753064456�0026060�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 18.5a1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5 1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5m1.5-9H17V12h4.46zM6 18.5A1.5 1.5 0 0 0 7.5 17 1.5 1.5 0 0 0 6 15.5 1.5 1.5 0 0 0 4.5 17 1.5 1.5 0 0 0 6 18.5M20 8l3 4v5h-2a3 3 0 0 1-3 3 3 3 0 0 1-3-3H9a3 3 0 0 1-3 3 3 3 0 0 1-3-3H1V6c0-1.11.89-2 2-2h14v4zM8 6v3H5v2h3v3h2v-3h3V9h-3V6z"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ammunition.svg�����������������������������0000664�0000000�0000000�00000000446�14753064456�0026314�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 22h-4v-1h4zm-1-12V7h-2v3l-1 1.5V20h4v-8.5zm-1-8s-1 1-1 3v1h2V5s0-2-1-3M8 22H4v-1h4zM7 10V7H5v3l-1 1.5V20h4v-8.5zM6 2S5 3 5 5v1h2V5s0-2-1-3m14 20h-4v-1h4zm-1-12V7h-2v3l-1 1.5V20h4v-8.5zm-1-8s-1 1-1 3v1h2V5s0-2-1-3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ampersand.svg������������������������������0000664�0000000�0000000�00000001205�14753064456�0026100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.4 16.5c0-.9.3-1.8.8-2.6q.75-1.2 3-2.7c-.9-1.1-1.4-1.9-1.7-2.5-.4-.7-.5-1.3-.5-2 0-1.5.4-2.6 1.3-3.5S9.4 2 10.9 2q1.95 0 3.3 1.2c.9.8 1.3 1.8 1.3 2.9 0 .8-.2 1.5-.6 2.2q-.6 1.05-2.1 2.1l-1.4 1.1 4.3 5.2c.6-1.2.9-2.4.9-3.9h2.2c0 2.3-.5 4.2-1.6 5.7l2.8 3.3h-3l-1.3-1.5c-.7.6-1.4 1-2.3 1.3s-1.8.5-2.7.5c-1.9 0-3.4-.5-4.6-1.5-1.1-1.1-1.7-2.4-1.7-4.1m6.3 3.5q1.95 0 3.6-1.5l-4.7-5.7-.4.3C7.7 14.2 7 15.3 7 16.5c0 1.1.3 1.9 1 2.5s1.5 1 2.7 1M8.5 6.7c0 .9.5 1.9 1.6 3.2l1.6-1.1q.9-.6 1.2-1.2c.2-.4.3-.9.3-1.4 0-.6-.2-1.1-.7-1.5-.4-.4-1-.6-1.7-.6s-1.3.2-1.7.7-.6 1.1-.6 1.9"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/amplifier-off.svg��������������������������0000664�0000000�0000000�00000000643�14753064456�0026653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3 3 4.9V21h2c0 .6.4 1 1 1s1-.4 1-1h10c0 .6.4 1 1 1s1-.4 1-1h.1l1.7 1.7zM5 9V6.9L7.1 9zm7 10c-2.2 0-4-1.8-4-4 0-1.4.7-2.6 1.8-3.3l5.5 5.5c-.7 1.1-1.9 1.8-3.3 1.8m2-13v1h-2V6zm-4 0c.6 0 1 .4 1 1 0 .2-.1.4-.2.6L9.4 6.2c.2-.1.4-.2.6-.2M8.2 5l-2-2H9c0-.6.4-1 1-1h4c.6 0 1 .4 1 1h6v14.8L12.2 9H19V5zM16 6v2h-1V6zm2 0v2h-1V6z"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/amplifier.svg������������������������������0000664�0000000�0000000�00000000637�14753064456�0026106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2h4a1 1 0 0 1 1 1h6v18h-2a1 1 0 0 1-1 1 1 1 0 0 1-1-1H7a1 1 0 0 1-1 1 1 1 0 0 1-1-1H3V3h6a1 1 0 0 1 1-1M5 5v4h14V5zm2 1a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m5 0h2v1h-2zm3 0h1v2h-1zm2 0h1v2h-1zm-5 5a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4m-2-5a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1"/></svg>�������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/anchor.svg���������������������������������0000664�0000000�0000000�00000001120�14753064456�0025374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a3 3 0 0 0-3 3 3 3 0 0 0 2 2.83V9H8v2h3v8.92c-.74-.13-1.5-.34-2.21-.65-.74-.32-1.39-.71-1.97-1.18s-1.04-.98-1.38-1.54L7 15l-4-3v3c0 .97.27 1.88.82 2.72A8.2 8.2 0 0 0 6 19.95c.87.64 1.84 1.14 2.88 1.5 1.05.36 2.09.55 3.12.55s2.07-.2 3.12-.56c1.04-.36 2.01-.86 2.88-1.49.92-.64 1.63-1.38 2.18-2.23.55-.84.82-1.75.82-2.72v-3l-4 3 1.56 1.55c-.34.56-.8 1.07-1.38 1.54s-1.23.86-1.97 1.18c-.71.31-1.47.52-2.21.65V11h3V9h-3V7.82A3 3 0 0 0 15 5a3 3 0 0 0-3-3m0 2a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/android-studio.svg�������������������������0000664�0000000�0000000�00000000753�14753064456�0027062�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 2h2v2h.5A1.5 1.5 0 0 1 15 5.5V9l-.44.44 1.64 2.84C17.31 11.19 18 9.68 18 8h2c0 2.42-1.07 4.59-2.77 6.06l3.14 5.44.13 2.22-1.87-1.22-3.07-5.33c-1.06.53-2.28.83-3.56.83s-2.5-.3-3.56-.83L5.37 20.5 3.5 21.72l.13-2.22L9.44 9.44 9 9V5.5A1.5 1.5 0 0 1 10.5 4h.5zM9.44 13.43c.78.37 1.65.57 2.56.57s1.78-.2 2.56-.57L13.1 10.9h-.01c-.62.6-1.56.6-2.18 0h-.01zM12 6a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>���������������������mkdocs-material-9.6.4/material/templates/.icons/material/android.svg��������������������������������0000664�0000000�0000000�00000000727�14753064456�0025556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.61 15.15c-.46 0-.84-.37-.84-.83s.38-.82.84-.82.84.36.84.82-.38.83-.84.83m-9.2 0c-.46 0-.84-.37-.84-.83s.38-.82.84-.82.83.36.83.82-.37.83-.83.83m9.5-5.01 1.67-2.88c.09-.17.03-.38-.13-.47-.17-.1-.38-.04-.45.13l-1.71 2.91A10.15 10.15 0 0 0 12 8.91c-1.53 0-3 .33-4.27.91L6.04 6.91a.334.334 0 0 0-.47-.13c-.17.09-.22.3-.13.47l1.66 2.88C4.25 11.69 2.29 14.58 2 18h20c-.28-3.41-2.23-6.3-5.09-7.86"/></svg>�����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/angle-acute.svg����������������������������0000664�0000000�0000000�00000000350�14753064456�0026313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 19H4.09L14.18 4.43l1.64 1.14-4.54 6.56c1.61.83 2.72 2.49 2.72 4.41 0 .16 0 .31-.03.46H20zM7.91 17h4.05c.04-.15.04-.3.04-.46 0-1.26-.76-2.32-1.86-2.76z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/angle-obtuse.svg���������������������������0000664�0000000�0000000�00000000351�14753064456�0026514�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 19H9.31L4.07 5.36l1.86-.72 3.03 7.86a4.8 4.8 0 0 1 1.75-.33A4.88 4.88 0 0 1 15.58 17H21zm-10.31-2h2.89a2.85 2.85 0 0 0-2.87-2.83c-.37 0-.71.07-1.04.19z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/angle-right.svg����������������������������0000664�0000000�0000000�00000000156�14753064456�0026333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 4h2v7h6v6h7v2H5zm2 13h4v-4H7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/angular.svg��������������������������������0000664�0000000�0000000�00000000316�14753064456�0025561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 2.5 8.84 3.15-1.34 11.7L12 21.5l-7.5-4.15-1.34-11.7zm0 2.1L6.47 17h2.06l1.11-2.78h4.7L15.45 17h2.05zm1.62 7.9h-3.23L12 8.63z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/angularjs.svg������������������������������0000664�0000000�0000000�00000000401�14753064456�0026111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 2.5 8.84 3.15-1.34 11.7L12 21.5l-7.5-4.15-1.34-11.7zm0 2L5 7l1.08 9.22L12 19.5l5.92-3.28L19 7zm0 1.22L16.58 16h-1.71l-.93-2.28h-3.9L9.12 16H7.41zm1.34 6.58L12 9.07l-1.34 3.23z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/animation-outline.svg����������������������0000664�0000000�0000000�00000000340�14753064456�0027561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2a2 2 0 0 0-2 2v10h2V4h10V2zm4 4a2 2 0 0 0-2 2v10h2V8h10V6zm12 6v8h-8v-8zm0-2h-8a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/animation-play-outline.svg�����������������0000664�0000000�0000000�00000000354�14753064456�0030531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2a2 2 0 0 0-2 2v10h2V4h10V2zm4 4a2 2 0 0 0-2 2v10h2V8h10V6zm12 6v8h-8v-8zm0-2h-8a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2m-6 3v6l4-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/animation-play.svg�������������������������0000664�0000000�0000000�00000000357�14753064456�0027057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2h10v2H4v10H2V4c0-1.11.89-2 2-2m4 4h10v2H8v10H6V8c0-1.11.89-2 2-2m4 4h8c1.11 0 2 .89 2 2v8c0 1.11-.89 2-2 2h-8c-1.11 0-2-.89-2-2v-8c0-1.11.89-2 2-2m2 2v8l6-4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/animation.svg������������������������������0000664�0000000�0000000�00000000344�14753064456�0026110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2c-1.11 0-2 .89-2 2v10h2V4h10V2zm4 4c-1.11 0-2 .89-2 2v10h2V8h10V6zm4 4c-1.11 0-2 .89-2 2v8c0 1.11.89 2 2 2h8c1.11 0 2-.89 2-2v-8c0-1.11-.89-2-2-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ansible.svg��������������������������������0000664�0000000�0000000�00000000500�14753064456�0025540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m4.1 15c-.19 0-.34-.1-.55-.27l-5.16-4.17-1.73 4.34H7.17l4.37-10.51c.11-.28.35-.42.63-.42s.5.14.62.42l3.98 9.58c.04.11.07.22.07.29-.01.42-.34.74-.74.74m-3.93-8.89 2.59 6.39-3.91-3.08z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/antenna.svg��������������������������������0000664�0000000�0000000�00000001220�14753064456�0025547�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 7.5c.69 0 1.27.23 1.76.7s.74 1.07.74 1.8q0 1.575-1.5 2.28V21h-2v-8.72Q9.5 11.575 9.5 10c0-.73.26-1.33.74-1.8s1.07-.7 1.76-.7m4.69-2.2c1.25 1.25 1.92 2.81 2.01 4.7 0 1.8-.67 3.38-2.01 4.72L15.5 13.5c1-.91 1.5-2.08 1.5-3.5 0-1.33-.5-2.5-1.5-3.5zM6.09 4.08C4.5 5.67 3.7 7.64 3.7 10s.8 4.3 2.39 5.89l-1.17 1.22C3 15.08 2 12.7 2 10s1-5.06 2.92-7.09zm12.99-1.17C21 4.94 22 7.3 22 10c0 2.8-1 5.17-2.92 7.11l-1.17-1.22C19.5 14.3 20.3 12.33 20.3 10s-.8-4.33-2.39-5.92zM7.31 5.3 8.5 6.5C7.5 7.42 7 8.58 7 10c0 1.33.5 2.5 1.5 3.5l-1.19 1.22C5.97 13.38 5.3 11.8 5.3 10s.67-3.36 2.01-4.7"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/anvil.svg����������������������������������0000664�0000000�0000000�00000000251�14753064456�0025237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 5v5c4.03 2.47-.56 4.97-3 6v3h15v-3c-6.41-2.73-3.53-7 1-8V5zM2 6c.81 2.13 2.42 3.5 5 4V6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/apache-kafka.svg���������������������������0000664�0000000�0000000�00000002102�14753064456�0026417�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.54 12.97c-.68 0-1.3.25-1.78.67l-1.29-.75c.09-.29.13-.6.13-.92s-.04-.63-.1-.92l1.23-.73c.48.44 1.12.68 1.81.68 1.49 0 2.7-1.19 2.7-2.68s-1.21-2.69-2.7-2.69-2.7 1.21-2.7 2.7c0 .17.02.37.05.55l-1.25.72c-.43-.45-1-.78-1.64-.95V7.26a2.705 2.705 0 0 0 1.88-2.57C11.88 3.2 10.67 2 9.18 2S6.5 3.2 6.5 4.69c0 1.2.76 2.21 1.84 2.57v1.4a3.42 3.42 0 0 0-2.58 3.31c0 1.6 1.1 2.94 2.58 3.31v1.45A2.69 2.69 0 0 0 6.5 19.3c0 1.49 1.19 2.7 2.68 2.7s2.7-1.21 2.7-2.7c0-1.2-.79-2.22-1.88-2.57v-1.44c.64-.16 1.2-.49 1.64-.94l1.26.73c-.04.19-.06.38-.06.58 0 1.49 1.21 2.7 2.7 2.7s2.7-1.21 2.7-2.7-1.21-2.69-2.7-2.69m0-5.97c.74 0 1.33.59 1.33 1.32s-.59 1.34-1.33 1.34-1.33-.6-1.33-1.34S14.8 7 15.54 7M7.85 4.69c0-.74.59-1.34 1.33-1.34s1.32.6 1.32 1.34-.58 1.34-1.32 1.34-1.33-.6-1.33-1.34M10.5 19.3c0 .74-.58 1.34-1.32 1.34s-1.33-.6-1.33-1.34.59-1.34 1.33-1.34 1.32.6 1.32 1.34m-1.32-5.41a1.92 1.92 0 1 1 .001-3.841 1.92 1.92 0 0 1-.001 3.841M15.54 17c-.74 0-1.33-.6-1.33-1.34s.59-1.33 1.33-1.33 1.33.6 1.33 1.33S16.28 17 15.54 17"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/api-off.svg��������������������������������0000664�0000000�0000000�00000000436�14753064456�0025454�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 11H5V9h2m7-2h-2.62l1.91 2H14v.75l1.87 1.96c.08-.21.13-.46.13-.71V9a2 2 0 0 0-2-2M4.45 2.62 3 4l2.86 3H5c-1.1 0-2 .9-2 2v8h2v-4h2v4h2v-6.7l1 1.04V17h2v-3.55l7.55 7.93L21 20m-.1-3h.1v-2h-1V9h1V7h-4v2h1v4.95Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/api.svg������������������������������������0000664�0000000�0000000�00000000341�14753064456�0024677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 7H5a2 2 0 0 0-2 2v8h2v-4h2v4h2V9a2 2 0 0 0-2-2m0 4H5V9h2m7-2h-4v10h2v-4h2a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2m0 4h-2V9h2m6 0v6h1v2h-4v-2h1V9h-1V7h4v2Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/apple-finder.svg���������������������������0000664�0000000�0000000�00000001340�14753064456�0026474�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 11c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1m9-1V8c0-.55-.45-1-1-1s-1 .45-1 1v2c0 .55.45 1 1 1s1-.45 1-1m5-5v15c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2M4 20h9.06c-.1-.65-.17-1.36-.23-2.06-.27.02-.53.06-.83.06-3.76 0-5.69-2.27-5.77-2.37a1.01 1.01 0 0 1 .13-1.41 1.01 1.01 0 0 1 1.41.13C7.83 14.43 9.23 16 12 16c.27 0 .5-.03.74-.05-.03-1.2-.01-2.21 0-2.69h-1.81c-.65 0-1.18-.56-1.18-1.26.02-.25.32-4.18 1.25-7H4zm16 0V5h-7.4c-.86 2.19-1.23 5.73-1.33 6.76h1.81c.64 0 1.17.56 1.17 1.24 0 .04-.04 1.15-.01 2.6 1.3-.49 1.98-1.25 1.99-1.26a.998.998 0 1 1 1.54 1.27c-.06.07-1.22 1.44-3.45 2.07.06.82.14 1.61.26 2.32z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/apple-icloud.svg���������������������������0000664�0000000�0000000�00000000522�14753064456�0026505�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 15.04c0 2.19-1.76 3.96-3.93 3.96H5.93C3.76 19 2 17.23 2 15.04c0-1.97 1.43-3.6 3.31-3.9-.03-.14-.04-.28-.04-.43 0-1.38 1.11-2.51 2.49-2.51.61 0 1.18.23 1.61.6.77-1.75 1.76-3.36 4.54-3.36 3.37 0 4.96 2.62 4.96 5.39 0 .11 0 .23-.01.34A3.95 3.95 0 0 1 22 15.04"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/apple-ios.svg������������������������������0000664�0000000�0000000�00000001325�14753064456�0026022�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.09 16.8h1.66V9.76H2.09m.83-.92a.9.9 0 0 0 .92-.9c0-.5-.4-.9-.92-.9a.9.9 0 0 0-.92.9c0 .5.4.9.92.9m6.33-1.78C6.46 7.06 4.7 8.96 4.7 12c0 3.06 1.76 4.96 4.55 4.96s4.55-1.9 4.55-4.96c0-3.04-1.76-4.94-4.55-4.94m0 1.44c1.71 0 2.8 1.37 2.8 3.5 0 2.15-1.09 3.5-2.8 3.5S6.46 14.15 6.46 12c0-2.13 1.08-3.5 2.79-3.5m5.25 5.61c.07 1.76 1.5 2.85 3.72 2.85 2.32 0 3.78-1.14 3.78-2.96 0-1.43-.82-2.23-2.77-2.68l-1.1-.25c-1.18-.28-1.66-.65-1.66-1.29 0-.78.73-1.33 1.81-1.33 1.1 0 1.85.55 1.93 1.44h1.63c-.04-1.69-1.43-2.83-3.55-2.83-2.08 0-3.56 1.15-3.56 2.85 0 1.37.83 2.22 2.6 2.62l1.24.29c1.21.29 1.7.68 1.7 1.38 0 .8-.8 1.37-1.96 1.37s-2.05-.57-2.15-1.46z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/apple-keyboard-caps.svg��������������������0000664�0000000�0000000�00000000237�14753064456�0027755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 14V8h2.17L12 2.83 6.83 8H9v6zM12 0l10 10h-5v6H7v-6H2zM7 18h10v6H7zm8 2H9v2h6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/apple-keyboard-command.svg�����������������0000664�0000000�0000000�00000000755�14753064456�0030452�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2a4 4 0 0 1 4 4v2h4V6a4 4 0 0 1 4-4 4 4 0 0 1 4 4 4 4 0 0 1-4 4h-2v4h2a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4v-2h-4v2a4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4h2v-4H6a4 4 0 0 1-4-4 4 4 0 0 1 4-4m10 16a2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2h-2zm-2-8h-4v4h4zm-8 6a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2v-2zM8 6a2 2 0 0 0-2-2 2 2 0 0 0-2 2 2 2 0 0 0 2 2h2zm10 2a2 2 0 0 0 2-2 2 2 0 0 0-2-2 2 2 0 0 0-2 2v2z"/></svg>�������������������mkdocs-material-9.6.4/material/templates/.icons/material/apple-keyboard-control.svg�����������������0000664�0000000�0000000�00000000207�14753064456�0030504�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.78 11.78-1.42 1.41L12 6.83l-6.36 6.36-1.42-1.41L12 4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/apple-keyboard-option.svg������������������0000664�0000000�0000000�00000000201�14753064456�0030326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4h6.11l7.04 14H21v2h-6.12L7.84 6H3zm11 0h7v2h-7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/apple-keyboard-shift.svg�������������������0000664�0000000�0000000�00000000211�14753064456�0030134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 18v-6h2.17L12 6.83 6.83 12H9v6zM12 4l10 10h-5v6H7v-6H2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/apple-safari.svg���������������������������0000664�0000000�0000000�00000000742�14753064456�0026477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8c0 2.09.8 4 2.11 5.41l3.77-7.53 7.53-3.77A7.93 7.93 0 0 0 12 4m0 16a8 8 0 0 0 8-8c0-2.09-.8-4-2.11-5.41l-3.77 7.53-7.53 3.77A7.93 7.93 0 0 0 12 20m0-8-.77-.77L9.7 14.3l3.07-1.53zm0 5.5h1V19h-1zm3.88-1.61.71-.71 1.06 1.06-.71.71zM17.5 12v-1H19v1zM12 6.5h-1V5h1zM8.12 8.11l-.71.71-1.06-1.06.71-.71zM6.5 12v1H5v-1z"/></svg>������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/apple.svg����������������������������������0000664�0000000�0000000�00000001006�14753064456�0025226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.81-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/application-array-outline.svg��������������0000664�0000000�0000000�00000000322�14753064456�0031221�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 2H3c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 18H3V6h18zM6 8v10h4v-2H8v-6h2V8zm10 8h-2v2h4V8h-4v2h2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/application-array.svg����������������������0000664�0000000�0000000�00000000322�14753064456�0027544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 2H3c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-11 9H8v7h2v2H6V9h4zm8 9h-4v-2h2v-7h-2V9h4zm3-13H3V4h18z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/application-braces-outline.svg�������������0000664�0000000�0000000�00000000566�14753064456�0031354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 2H3c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 18H3V6h18zM9 8c-1.1 0-2 .9-2 2s-.9 2-2 2v2c1.1 0 2 .9 2 2s.9 2 2 2h2v-2H9v-1c0-1.1-.9-2-2-2 1.1 0 2-.9 2-2v-1h2V8m4 0c1.1 0 2 .9 2 2s.9 2 2 2v2c-1.1 0-2 .9-2 2s-.9 2-2 2h-2v-2h2v-1c0-1.1.9-2 2-2-1.1 0-2-.9-2-2v-1h-2V8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/application-braces.svg���������������������0000664�0000000�0000000�00000000637�14753064456�0027676�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 2H3c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-10 9H9v1.5c0 1.1-.9 2-2 2 1.1 0 2 .9 2 2V18h2v2H9c-1.1 0-2-.9-2-2v-.5c0-1.1-.9-2-2-2v-2c1.1 0 2-.9 2-2V11c0-1.1.9-2 2-2h2zm8 4.5c-1.1 0-2 .9-2 2v.5c0 1.1-.9 2-2 2h-2v-2h2v-1.5c0-1.1.9-2 2-2-1.1 0-2-.9-2-2V11h-2V9h2c1.1 0 2 .9 2 2v.5c0 1.1.9 2 2 2zM21 7H3V4h18z"/></svg>�������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/application-brackets-outline.svg�����������0000664�0000000�0000000�00000000350�14753064456�0031702�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 8.5 11 10l-3 3 3 3-1.5 1.5L5 13zm5 9L13 16l3-3-3-3 1.5-1.5L19 13zM21 2H3a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2m0 18H3V6h18z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/application-brackets.svg�������������������0000664�0000000�0000000�00000000365�14753064456�0030233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 2H3a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2M11 17.5 9.5 19 5 14.5 9.5 10l1.5 1.5-3 3zm3.5 1.5L13 17.5l3-3-3-3 1.5-1.5 4.5 4.5zM21 7H3V4h18z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/application-cog-outline.svg����������������0000664�0000000�0000000�00000001174�14753064456�0030661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.7 18.6v-1l1.1-.8c.1-.1.2-.2.1-.3l-1-1.7c0-.1-.2-.1-.3-.1l-1.2.5c-.3-.2-.6-.4-.9-.5l-.2-1.3c0-.1-.1-.2-.2-.2h-2c-.2 0-.3.1-.3.2l-.2 1.3c-.3.2-.5.3-.8.5l-1.2-.5c-.1 0-.2 0-.3.1l-1 1.7c0 .1 0 .2.1.3l1.1.8v1l-1.1.8c-.1.1-.2.2-.1.3l1 1.7c.1.1.2.1.3.1l1.2-.5c.2.2.5.4.8.5l.2 1.3c.1.1.2.2.3.2h2c.1 0 .2-.1.2-.2l.2-1.3c.3-.2.5-.3.8-.5l1.2.4c.1 0 .2 0 .3-.1l1-1.7c.1-.1.1-.2 0-.2zm-3.7.9c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5M12.3 22H3c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h18c1.1 0 2 .9 2 2v9.1c-.6-.6-1.3-1.1-2-1.4V6H3v14h8.3c.2.7.5 1.4 1 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/application-cog.svg������������������������0000664�0000000�0000000�00000001215�14753064456�0027200�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.7 18.6v-1l1.1-.8c.1-.1.2-.2.1-.3l-1-1.7c0-.1-.2-.1-.3-.1l-1.2.5c-.3-.2-.6-.4-.9-.5l-.2-1.3c0-.1-.1-.2-.2-.2h-2c-.2 0-.3.1-.3.2l-.2 1.3c-.3.2-.5.3-.8.5l-1.2-.5c-.1 0-.2 0-.3.1l-1 1.7c0 .1 0 .2.1.3l1.1.8v1l-1.1.8c-.1.1-.2.2-.1.3l1 1.7c.1.1.2.1.3.1l1.2-.5c.2.2.5.4.8.5l.2 1.3c.1.1.2.2.3.2h2c.1 0 .2-.1.2-.2l.2-1.3c.3-.2.5-.3.8-.5l1.2.4c.1 0 .2 0 .3-.1l1-1.7c.1-.1.1-.2 0-.2zm-3.7.9c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5M11 18c0-3.9 3.1-7 7-7 2 0 3.7.8 5 2.1V4c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h9.3c-.8-1.1-1.3-2.5-1.3-4M3 4h18v3H3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/application-edit-outline.svg���������������0000664�0000000�0000000�00000000432�14753064456�0031032�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 20v2H3c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h18c1.1 0 2 .9 2 2v8.1l-.2-.2c-.5-.5-1.1-.8-1.8-.8V6H3v14zm10.4-6.7 1.3 1.3c.2.2.2.6 0 .8l-1 1-2.1-2.1 1-1c.1-.1.2-.2.4-.2s.3.1.4.2m-.3 3.6-6 6.1H13v-2.1l6.1-6.1z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/application-edit.svg�����������������������0000664�0000000�0000000�00000000471�14753064456�0027360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11 20.1 8.2-8.2c.5-.5 1.1-.8 1.8-.8s1.3.3 1.8.8l.2.2V4c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h8zM3 4h18v3H3zm18 9.1c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6 0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-1.9 1.8-6.1 6V23h2.1l6.1-6.1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/application-export.svg���������������������0000664�0000000�0000000�00000000360�14753064456�0027751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 12h9.8l-2.5-2.5 1.4-1.4 4.9 4.9-4.9 4.9-1.4-1.4 2.5-2.5H9zm12 5.4V20H3V6h18v2.6l2 2V4c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2v-4.6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/application-import.svg���������������������0000664�0000000�0000000�00000000351�14753064456�0027742�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 12h9.8L8.3 9.5l1.4-1.4 4.9 4.9-4.9 4.9-1.4-1.4 2.5-2.5H1zM21 2H3c-1.1 0-2 .9-2 2v6.1h2V6h18v14H3v-4H1v4c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/application-outline.svg��������������������0000664�0000000�0000000�00000000246�14753064456�0030112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 2H3c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 18H3V6h18z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/application-parentheses-outline.svg��������0000664�0000000�0000000�00000000517�14753064456�0032432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 2H3c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 18H3V6h18zM15.6 8c1.5 1.3 2.4 3.1 2.4 5s-.9 3.7-2.4 5l-1.6-.6c1.3-1 2-2.7 2-4.4s-.7-3.4-2-4.4zM8.4 8l1.6.6c-1.3 1-2 2.7-2 4.4s.7 3.4 2 4.4l-1.6.6C6.9 16.7 6 14.9 6 13s.9-3.7 2.4-5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/application-parentheses.svg����������������0000664�0000000�0000000�00000000535�14753064456�0030755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 2H3c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2M10 19.4l-1.6.6C6.9 18.6 6 16.6 6 14.5s.9-4.1 2.4-5.5l1.6.6c-1.3 1.1-2 3-2 4.9s.7 3.7 2 4.9m5.6.6-1.6-.6c1.3-1.2 2-3 2-4.9s-.7-3.7-2-4.9l1.6-.6c1.5 1.4 2.4 3.4 2.4 5.5s-.9 4.1-2.4 5.5M21 7H3V4h18z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/application-settings-outline.svg�����������0000664�0000000�0000000�00000000311�14753064456�0031741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 0H3C1.9 0 1 .9 1 2v16c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2m0 18H3V4h18zM7 22h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/application-settings.svg�������������������0000664�0000000�0000000�00000000310�14753064456�0030263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 0H3C1.9 0 1 .9 1 2v16c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2m0 5H3V2h18zM7 22h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/application-variable-outline.svg�����������0000664�0000000�0000000�00000000621�14753064456�0031672�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 2H3c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 18H3V6h18zM16.6 8c1.5 1.3 2.4 3.1 2.4 5s-.9 3.7-2.4 5l-1.6-.6c1.3-1 2-2.7 2-4.4s-.7-3.4-2-4.4zM7.4 8l1.6.6c-1.3 1-2 2.7-2 4.4s.7 3.4 2 4.4l-1.6.6C5.9 16.7 5 14.9 5 13s.9-3.7 2.4-5m4.7 4 1.4-2H15l-2.2 3 1.3 3h-1.3l-.8-2-1.4 2H9l2.3-3.1L10 10h1.3z"/></svg>���������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/application-variable.svg�������������������0000664�0000000�0000000�00000000627�14753064456�0030223�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 2H3c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2M7.4 20C5.9 18.6 5 16.6 5 14.5s.9-4.1 2.4-5.5l1.6.6c-1.3 1.1-2 3-2 4.9s.7 3.7 2 4.9zm5.3-2-.8-2-1.4 2H9l2.3-3.1L10 12h1.3l.8 2 1.4-2H15l-2.2 3 1.3 3zm3.9 2-1.6-.6c1.3-1.2 2-3 2-4.9s-.7-3.7-2-4.9l1.6-.6c1.5 1.4 2.4 3.4 2.4 5.5s-.9 4.1-2.4 5.5M21 7H3V4h18z"/></svg>���������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/application.svg����������������������������0000664�0000000�0000000�00000000245�14753064456�0026434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 2H3c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 5H3V4h18z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/approximately-equal-box.svg����������������0000664�0000000�0000000�00000000746�14753064456�0030730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2M9.3 8.2c1.3 0 2.1.5 2.8.8.6.3 1.3.7 2.4.7 1 0 2-.7 2.5-1.2l.8 1.3c-.7.8-2 1.6-3.4 1.6-1.3 0-2.1-.5-2.7-.8s-1.4-.7-2.5-.7c-1 0-2 .7-2.5 1.2L6 9.8c.7-.8 2-1.6 3.3-1.6m5.3 7.6c-1.3 0-2.1-.5-2.8-.8-.6-.3-1.4-.7-2.5-.7-1 0-2 .7-2.5 1.2L6 14.1c.7-.8 2-1.6 3.3-1.6s2.1.5 2.8.8c.6.3 1.3.7 2.5.7 1 0 2-.7 2.5-1.2l.8 1.3c-.6.9-1.9 1.7-3.3 1.7"/></svg>��������������������������mkdocs-material-9.6.4/material/templates/.icons/material/approximately-equal.svg��������������������0000664�0000000�0000000�00000000647�14753064456�0030142�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.9 9.2c-.8.9-2.3 1.8-3.9 1.8-1.5 0-2.4-.5-3.2-.9-.8-.3-1.6-.8-2.9-.8-1.2 0-2.3.7-2.9 1.3L5 9.1c.9-.9 2.3-1.9 3.9-1.9 1.5 0 2.4.6 3.2.9s1.6.9 2.9.9c1.2 0 2.3-.8 2.9-1.4zm.1 4.9c-.9.9-2.3 1.9-3.9 1.9-1.5 0-2.4-.5-3.2-.9-.8-.3-1.6-.9-2.9-.9-1.2 0-2.3.8-2.9 1.4l-1-1.6c.9-.9 2.3-1.9 3.9-1.9 1.5 0 2.4.5 3.2.9.8.3 1.6.8 2.9.8 1.2 0 2.3-.8 2.9-1.4z"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/apps-box.svg�������������������������������0000664�0000000�0000000�00000000377�14753064456�0025670�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m2 4v2h2V7zm4 0v2h2V7zm4 0v2h2V7zm-8 4v2h2v-2zm4 0v2h2v-2zm4 0v2h2v-2zm-8 4v2h2v-2zm4 0v2h2v-2zm4 0v2h2v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/apps.svg�����������������������������������0000664�0000000�0000000�00000000274�14753064456�0025076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 20h4v-4h-4m0-2h4v-4h-4m-6-2h4V4h-4m6 4h4V4h-4m-6 10h4v-4h-4m-6 4h4v-4H4m0 10h4v-4H4m6 4h4v-4h-4M4 8h4V4H4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arch.svg�����������������������������������0000664�0000000�0000000�00000000714�14753064456�0025047�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c-.89 2.18-1.43 3.61-2.42 5.73.61.64 1.35 1.39 2.56 2.24-1.3-.54-2.19-1.07-2.85-1.63C8 11 6.03 14.75 2 22c3.17-1.83 5.63-2.96 7.92-3.39-.1-.42-.16-.88-.15-1.36v-.1c.05-2.03 1.11-3.59 2.36-3.48 1.25.1 2.22 1.83 2.17 3.87-.01.38-.05.75-.12 1.09 2.26.44 4.69 1.56 7.82 3.37-.62-1.14-1.17-2.16-1.69-3.13-.81-.64-1.7-1.48-3.46-2.37 1.21.3 2.08.66 2.76 1.07C14.26 7.62 13.83 6.3 12 2"/></svg>����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-alert-outline.svg������������������0000664�0000000�0000000�00000000274�14753064456�0030336�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4h16v3H2zm5.5 7h5c.28 0 .5.22.5.5V13H7v-1.5c0-.28.22-.5.5-.5M20 13V7h2v6zm0 4v-2h2v2zM3 8h2v10h10V8h2v12H3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-alert.svg��������������������������0000664�0000000�0000000�00000000266�14753064456�0026662�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4h16v3H2zm1 4h14v12H3zm4.5 3c-.28 0-.5.22-.5.5V13h6v-1.5c0-.28-.22-.5-.5-.5zM20 13V7h2v6zm0 4v-2h2v2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-arrow-down-outline.svg�������������0000664�0000000�0000000�00000000230�14753064456�0031316�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 21H4V10h2v9h12v-9h2zM3 3h18v6H3zm2 2v2h14V5m-8.5 6v3H8l4 4 4-4h-2.5v-3"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-arrow-down.svg���������������������0000664�0000000�0000000�00000000200�14753064456�0027636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h18v4H3zm1 18V8h16v13zm10-7v-3h-4v3H7l5 5 5-5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-arrow-up-outline.svg���������������0000664�0000000�0000000�00000000231�14753064456�0030774�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 21H4V10h2v9h12v-9h2zM3 3h18v6H3zm2 2v2h14V5m-8.5 12v-3H8l4-4 4 4h-2.5v3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-arrow-up.svg�����������������������0000664�0000000�0000000�00000000174�14753064456�0027325�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 21h16V8H4m10 7v3h-4v-3H7l5-5 5 5M3 3h18v4H3"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-cancel-outline.svg�����������������0000664�0000000�0000000�00000000740�14753064456�0030452�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.5 11c.28 0 .5.22.5.5V13H9v-1.5c0-.28.22-.5.5-.5zm4 1c.5 0 1 .07 1.5.18V10h-2v2.03c.17-.03.33-.03.5-.03M6 19v-9H4v11h8.5c-.26-.62-.41-1.3-.47-2zM21 9H3V3h18zm-2-4H5v2h14zm4 13.5c0 2.5-2 4.5-4.5 4.5S14 21 14 18.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5m-3 2.58L15.92 17c-.27.42-.42.94-.42 1.5 0 1.66 1.34 3 3 3 .56 0 1.08-.15 1.5-.42m1.5-2.58c0-1.66-1.34-3-3-3-.56 0-1.08.15-1.5.42L21.08 20c.27-.42.42-.94.42-1.5"/></svg>��������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-cancel.svg�������������������������0000664�0000000�0000000�00000000647�14753064456�0027003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 12c.5 0 1 .07 1.5.18V8H4v13h8.5a6.5 6.5 0 0 1 6-9M9 13v-1.5c0-.28.22-.5.5-.5h5c.28 0 .5.22.5.5V13zm12-6H3V3h18zm-2.5 7C16 14 14 16 14 18.5s2 4.5 4.5 4.5 4.5-2 4.5-4.5-2-4.5-4.5-4.5m0 7.5c-1.66 0-3-1.34-3-3 0-.56.15-1.08.42-1.5L20 21.08c-.42.27-.94.42-1.5.42m2.58-1.5L17 15.92c.42-.27.94-.42 1.5-.42 1.66 0 3 1.34 3 3 0 .56-.15 1.08-.42 1.5"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-check-outline.svg������������������0000664�0000000�0000000�00000000454�14753064456�0030304�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 3H3v6h18zm-2 4H5V5h14zm-4.5 4c.28 0 .5.22.5.5V13H9v-1.5c0-.28.22-.5.5-.5zm3.5 2.09V10h2v3.09c-.33-.05-.66-.09-1-.09s-.67.04-1 .09M13 19c0 .7.13 1.37.35 2H4V10h2v9zm9.5-1.75L17.75 22 15 19l1.16-1.16 1.59 1.59 3.59-3.59z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-check.svg��������������������������0000664�0000000�0000000�00000000422�14753064456�0026622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13c.34 0 .67.04 1 .09V8H4v13h9.35c-.22-.63-.35-1.3-.35-2 0-3.31 2.69-6 6-6M9 13v-1.5c0-.28.22-.5.5-.5h5c.28 0 .5.22.5.5V13zm12-6H3V3h18zm1.5 10.25L17.75 22 15 19l1.16-1.16 1.59 1.59 3.59-3.59z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-clock-outline.svg������������������0000664�0000000�0000000�00000000557�14753064456�0030326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H2v6h18zm-2 4H4V4h14zm-2 3c-1.31 0-2.54.37-3.59 1H8.5c-.28 0-.5.22-.5.5V12h2.26A6.94 6.94 0 0 0 9 16c0 .7.11 1.37.29 2H5V9H3v11h7.26c1.27 1.81 3.36 3 5.74 3 3.87 0 7-3.13 7-7s-3.13-7-7-7m0 12c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5m.5-4.75 2.86 1.69-.75 1.22L15 17v-5h1.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-clock.svg��������������������������0000664�0000000�0000000�00000000511�14753064456�0026637�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6H2V2h18zm-3.5 6H15v5l3.61 2.16.75-1.22-2.86-1.69zm6.5 4c0 3.87-3.13 7-7 7-2.38 0-4.47-1.19-5.74-3H3V7h16v2.68c2.36 1.13 4 3.53 4 6.32M8 12h2.26c.57-.81 1.3-1.5 2.15-2H8.5c-.28 0-.5.22-.5.5zm13 4c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-cog-outline.svg��������������������0000664�0000000�0000000�00000001304�14753064456�0027772�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 12.08V10h2v2.08c-.33-.05-.66-.08-1-.08s-.67.03-1 .08M9.5 11c-.28 0-.5.22-.5.5V13h6v-1.5c0-.28-.22-.5-.5-.5zM6 19v-9H4v11h8.3c-.19-.63-.3-1.3-.3-2zM21 9H3V3h18zm-2-4H5v2h14zm4.8 15.4c.1 0 .1.1 0 .2l-1 1.7c-.1.1-.2.1-.3.1l-1.2-.4c-.3.2-.5.3-.8.5l-.2 1.3c0 .1-.1.2-.2.2h-2c-.1 0-.2-.1-.3-.2l-.2-1.3c-.3-.1-.6-.3-.8-.5l-1.2.5c-.1 0-.2 0-.3-.1l-1-1.7c-.1-.1 0-.2.1-.3l1.1-.8v-1l-1.1-.8c-.1-.1-.1-.2-.1-.3l1-1.7c.1-.1.2-.1.3-.1l1.2.5c.3-.2.5-.3.8-.5l.2-1.3c0-.1.1-.2.3-.2h2c.1 0 .2.1.2.2l.2 1.3c.3.1.6.3.9.5l1.2-.5c.1 0 .3 0 .3.1l1 1.7c.1.1 0 .2-.1.3l-1.1.8v1zM20.5 19c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5.7 1.5 1.5 1.5 1.5-.7 1.5-1.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-cog.svg����������������������������0000664�0000000�0000000�00000001241�14753064456�0026315�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 7H3V3h18zm-9 12c0 .7.11 1.37.3 2H4V8h16v4.08c-.33-.05-.66-.08-1-.08-3.87 0-7 3.13-7 7m3-6v-1.5c0-.28-.22-.5-.5-.5h-5c-.28 0-.5.22-.5.5V13zm8.8 7.4c.1 0 .1.1 0 .2l-1 1.7c-.1.1-.2.1-.3.1l-1.2-.4c-.3.2-.5.3-.8.5l-.2 1.3c0 .1-.1.2-.2.2h-2c-.1 0-.2-.1-.3-.2l-.2-1.3c-.3-.1-.6-.3-.8-.5l-1.2.5c-.1 0-.2 0-.3-.1l-1-1.7c-.1-.1 0-.2.1-.3l1.1-.8v-1l-1.1-.8c-.1-.1-.1-.2-.1-.3l1-1.7c.1-.1.2-.1.3-.1l1.2.5c.3-.2.5-.3.8-.5l.2-1.3c0-.1.1-.2.3-.2h2c.1 0 .2.1.2.2l.2 1.3c.3.1.6.3.9.5l1.2-.5c.1 0 .3 0 .3.1l1 1.7c.1.1 0 .2-.1.3l-1.1.8v1zM20.5 19c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5.7 1.5 1.5 1.5 1.5-.7 1.5-1.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-edit-outline.svg�������������������0000664�0000000�0000000�00000000536�14753064456�0030155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 12.13V10h2v.3c-.22.12-.43.26-.61.44zM9.5 11c-.28 0-.5.22-.5.5V13h6v-1.5c0-.28-.22-.5-.5-.5zM6 10H4v11h7v-1.87l.13-.13H6zm15-1H3V3h18zm-2-4H5v2h14zm-6 14.96V22h2.04l6.13-6.12-2.04-2.05zm9.85-6.49-1.32-1.32c-.2-.2-.53-.2-.72 0l-.98.98 2.04 2.04.98-.98c.2-.19.2-.52 0-.72"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-edit.svg���������������������������0000664�0000000�0000000�00000000467�14753064456�0026503�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 10.3V8H4v13h7v-1.87l8.39-8.39c.18-.18.39-.32.61-.44M15 13H9v-1.5c0-.28.22-.5.5-.5h5c.28 0 .5.22.5.5zm6-6H3V3h18zm1.85 7.19-.98.98-2.04-2.04.98-.98c.19-.2.52-.2.72 0l1.32 1.32c.2.2.2.53 0 .72m-3.72-.36 2.04 2.04L15.04 22H13v-2.04z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-eye-outline.svg��������������������0000664�0000000�0000000�00000000641�14753064456�0030007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.5 11c.28 0 .5.22.5.5V13H9v-1.5c0-.28.22-.5.5-.5zm5.5 2.55V10h-2v3.06c.69.08 1.36.25 2 .49M21 9H3V3h18zm-2-4H5v2h14zM8.85 19H6v-9H4v11h5.78c-.24-.39-.46-.81-.64-1.25zM17 18c-.56 0-1 .44-1 1s.44 1 1 1 1-.44 1-1-.44-1-1-1m6 1c-.94 2.34-3.27 4-6 4s-5.06-1.66-6-4c.94-2.34 3.27-4 6-4s5.06 1.66 6 4m-3.5 0a2.5 2.5 0 0 0-5 0 2.5 2.5 0 0 0 5 0"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-eye.svg����������������������������0000664�0000000�0000000�00000000636�14753064456�0026336�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 7H3V3h18zM9.14 19.75c.18.44.4.86.64 1.25H4V8h16v5.55c-.94-.36-1.95-.55-3-.55-3.5 0-6.57 2.06-7.86 5.25l-.29.75zM9 13h6v-1.5c0-.28-.22-.5-.5-.5h-5c-.28 0-.5.22-.5.5zm8 5c-.56 0-1 .44-1 1s.44 1 1 1 1-.44 1-1-.44-1-1-1m6 1c-.94 2.34-3.27 4-6 4s-5.06-1.66-6-4c.94-2.34 3.27-4 6-4s5.06 1.66 6 4m-3.5 0a2.5 2.5 0 0 0-5 0 2.5 2.5 0 0 0 5 0"/></svg>��������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-lock-open-outline.svg��������������0000664�0000000�0000000�00000000644�14753064456�0031117�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.5 11c.17 0 .32.09.41.22-.35.54-.57 1.14-.65 1.78H9v-1.5c0-.28.22-.5.5-.5zM13 19H6v-9H4v11h9.03c-.03-.1-.03-.2-.03-.3zm8-10H3V3h18zm-2-4H5v2h14zm2.8 11h-4.3v-2.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3v.5h1.3v-.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V16c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3"/></svg>��������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-lock-open.svg����������������������0000664�0000000�0000000�00000000714�14753064456�0027440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 7H3V3h18zm-2 2c.34 0 .68.04 1 .11V8H4v13h9.03c-.03-.1-.03-.2-.03-.3v-3.5c0-.96.5-1.86 1.2-2.46V13.5c0-.17.04-.33.06-.5H9v-1.5c0-.28.22-.5.5-.5h5c.17 0 .32.09.41.22A4.89 4.89 0 0 1 19 9m2.8 7h-4.3v-2.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3v.5h1.3v-.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V16c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3"/></svg>����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-lock-outline.svg�������������������0000664�0000000�0000000�00000000641�14753064456�0030155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 12.06c-.21.29-.36.61-.5.94H9v-1.5c0-.28.22-.5.5-.5h5c.28 0 .5.22.5.5zM21 9H3V3h18zm-2-4H5v2h14zm-6 14H6v-9H4v11h9.03c-.03-.1-.03-.2-.03-.3zm10-1.7v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5V16c.6 0 1.2.6 1.2 1.3m-2.5-2.8c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V16h3z"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-lock.svg���������������������������0000664�0000000�0000000�00000000723�14753064456�0026501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 7H3V3h18zM9.5 11h5c.28 0 .5.22.5.5v.56A4.92 4.92 0 0 1 19 10c.34 0 .68.04 1 .11V8H4v13h9.03c-.03-.1-.03-.2-.03-.3v-3.5c0-.96.5-1.86 1.2-2.46v-.24c0-.5.12-1.03.3-1.5H9v-1.5c0-.28.22-.5.5-.5M23 17.3v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5V16c.6 0 1.2.6 1.2 1.3m-2.5-2.8c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V16h3z"/></svg>���������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-marker-outline.svg�����������������0000664�0000000�0000000�00000000575�14753064456�0030514�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.5 11c.22 0 .4.14.47.33A5.4 5.4 0 0 0 13.63 13H9v-1.5c0-.28.22-.5.5-.5zM21 9H3V3h18zm-2-4H5v2h14zM6 19v-9H4v11h11.19c-.41-.6-.83-1.28-1.19-2zm16-3.5c0 2.6-3.5 6.5-3.5 6.5S15 18.1 15 15.5c0-1.9 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5m-2.3.1c0-.6-.6-1.2-1.2-1.2s-1.2.5-1.2 1.2c0 .6.5 1.2 1.2 1.2s1.3-.6 1.2-1.2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-marker.svg�������������������������0000664�0000000�0000000�00000000631�14753064456�0027030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 7H3V3h18zm-7.37 6H9v-1.5c0-.28.22-.5.5-.5h5c.22 0 .4.14.47.33.96-.83 2.2-1.33 3.53-1.33.5 0 1 .08 1.5.22V8H4v13h11.19C14.12 19.43 13 17.35 13 15.5c0-.89.23-1.74.63-2.5M22 15.5c0 2.6-3.5 6.5-3.5 6.5S15 18.1 15 15.5c0-1.9 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5m-2.3.1c0-.6-.6-1.2-1.2-1.2s-1.2.5-1.2 1.2c0 .6.5 1.2 1.2 1.2s1.3-.6 1.2-1.2"/></svg>�������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-minus-outline.svg������������������0000664�0000000�0000000�00000000406�14753064456�0030357�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .7.13 1.37.35 2H4V10h2v9zm6-6c.34 0 .67.04 1 .09V10h-2v3.09c.33-.05.66-.09 1-.09m-9.5-2c-.28 0-.5.22-.5.5V13h6v-1.5c0-.28-.22-.5-.5-.5zM21 9H3V3h18zm-2-4H5v2h14zm-4 13v2h8v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-minus.svg��������������������������0000664�0000000�0000000�00000000350�14753064456�0026700�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13c.34 0 .67.04 1 .09V8H4v13h9.35c-.22-.63-.35-1.3-.35-2 0-3.31 2.69-6 6-6M9 13v-1.5c0-.28.22-.5.5-.5h5c.28 0 .5.22.5.5V13zm12-6H3V3h18zm2 11v2h-8v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-music-outline.svg������������������0000664�0000000�0000000�00000000436�14753064456�0030347�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 3H3v6h18zm-2 4H5V5h14zm-1 4v-1h2v1zm-3.5 0c.28 0 .5.22.5.5V13H9v-1.5c0-.28.22-.5.5-.5zm-1.24 8c-.17.47-.26.97-.26 1.5 0 .17 0 .34.03.5H4V10h2v9zM22 13v2h-2v5.5a2.5 2.5 0 0 1-5 0 2.5 2.5 0 0 1 3.5-2.29V13z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-music.svg��������������������������0000664�0000000�0000000�00000000424�14753064456�0026667�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 16.11V11H20V8H4v13h9.03c-.03-.16-.03-.33-.03-.5 0-2.14 1.5-3.93 3.5-4.39M9 13v-1.5c0-.28.22-.5.5-.5h5c.28 0 .5.22.5.5V13zm12-6H3V3h18zm1 6v2h-2v5.5a2.5 2.5 0 0 1-5 0 2.5 2.5 0 0 1 3.5-2.29V13z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-off-outline.svg��������������������0000664�0000000�0000000�00000000365�14753064456�0030002�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.2 5-2-2H21v6h-8.8l-2-2H19V5zM20 16.8V10h-2v4.8zm0 2.55v-.01l-2-2v.01L9.66 9l-2-2-1.53-1.53-3.74-3.74L1.11 3 3 4.89V9h4.11l10 10H6v-9H4v11h15.11l1.73 1.73 1.27-1.27z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-off.svg����������������������������0000664�0000000�0000000�00000000316�14753064456�0026321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.2 7-4-4H21v4zM20 8h-8.8l8.8 8.8zm0 11.35v-.01L8.66 8l-1-1-5.27-5.27L1.11 3 3 4.89V7h2.11l1 1H4v13h15.11l1.73 1.73 1.27-1.27z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-outline.svg������������������������0000664�0000000�0000000�00000000261�14753064456�0027225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 21H4V10h2v9h12v-9h2zM3 3h18v6H3zm6.5 8h5c.28 0 .5.22.5.5V13H9v-1.5c0-.28.22-.5.5-.5M5 5v2h14V5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-plus-outline.svg�������������������0000664�0000000�0000000�00000000442�14753064456�0030207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 13.09V10h2v3.09c-.33-.05-.66-.09-1-.09s-.67.04-1 .09M9.5 11c-.28 0-.5.22-.5.5V13h6v-1.5c0-.28-.22-.5-.5-.5zM21 9H3V3h18zm-2-4H5v2h14zM6 19v-9H4v11h9.35c-.22-.63-.35-1.3-.35-2zm14-1v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-plus.svg���������������������������0000664�0000000�0000000�00000000375�14753064456�0026537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 7H3V3h18zm-8 12c0 .7.13 1.37.35 2H4V8h16v5.09c-.33-.05-.66-.09-1-.09-3.31 0-6 2.69-6 6m2-6v-1.5c0-.28-.22-.5-.5-.5h-5c-.28 0-.5.22-.5.5V13zm5 5v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-refresh-outline.svg����������������0000664�0000000�0000000�00000000605�14753064456�0030663�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 12.03V10h2v2.18c-.5-.11-1-.18-1.5-.18-.17 0-.33 0-.5.03M9.5 11c-.28 0-.5.22-.5.5V13h6v-1.5c0-.28-.22-.5-.5-.5zM6 19v-9H4v11h8.5c-.26-.62-.41-1.3-.47-2zM21 9H3V3h18zm-2-4H5v2h14zm3 13.5v-4l-1.17 1.17A4 4 0 0 0 18 14.5c-2.21 0-4 1.79-4 4s1.79 4 4 4c1.68 0 3.12-1.03 3.71-2.5H20a2.5 2.5 0 1 1-.23-3.27L18 18.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-refresh.svg������������������������0000664�0000000�0000000�00000000510�14753064456�0027201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 12c.5 0 1 .07 1.5.18V8H4v13h8.5a6.5 6.5 0 0 1 6-9M9 13v-1.5c0-.28.22-.5.5-.5h5c.28 0 .5.22.5.5V13zm12-6H3V3h18zm-3 11.5 1.77-1.77A2.5 2.5 0 1 0 20 20h1.71A3.99 3.99 0 0 1 18 22.5c-2.21 0-4-1.79-4-4s1.79-4 4-4c1.11 0 2.11.45 2.83 1.17L22 14.5v4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-remove-outline.svg�����������������0000664�0000000�0000000�00000000574�14753064456�0030527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 13.09V10h2v3.09c-.33-.05-.66-.09-1-.09s-.67.04-1 .09M14.5 11h-5c-.28 0-.5.22-.5.5V13h6v-1.5c0-.28-.22-.5-.5-.5M6 19v-9H4v11h9.35c-.22-.63-.35-1.3-.35-2zM21 9H3V3h18zm-2-4H5v2h14zm3.54 11.88-1.42-1.41L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19z"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-remove.svg�������������������������0000664�0000000�0000000�00000000524�14753064456�0027045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 7H3V3h18zm-8 12c0 .7.13 1.37.35 2H4V8h16v5.09c-.33-.05-.66-.09-1-.09-3.31 0-6 2.69-6 6m2-6v-1.5c0-.28-.22-.5-.5-.5h-5c-.28 0-.5.22-.5.5V13zm7.54 3.88-1.42-1.41L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-search-outline.svg�����������������0000664�0000000�0000000�00000000577�14753064456�0030502�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.04 10q-.6.375-1.14.9c-.33.34-.63.71-.87 1.1H8v-1.5c0-.28.22-.5.5-.5zM20 8H2V2h18zm-2-4H4v2h14zM5 18V9H3v11h8.82a6.4 6.4 0 0 1-1.32-2zm18.39 3L22 22.39l-3.12-3.07c-.69.43-1.51.68-2.38.68-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 .88-.25 1.71-.69 2.4zM19 15.5a2.5 2.5 0 0 0-5 0 2.5 2.5 0 0 0 5 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-search.svg�������������������������0000664�0000000�0000000�00000000547�14753064456�0027022�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6H2V2h18zm-8.97 6H8v-1.5c0-.28.22-.5.5-.5h4.54c1.8-1.13 4.03-1.3 5.96-.5V7H3v13h8.82c-2.12-2.2-2.38-5.5-.79-8m12.36 9L22 22.39l-3.12-3.07c-.69.43-1.51.68-2.38.68-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 .88-.25 1.71-.69 2.4zM19 15.5a2.5 2.5 0 0 0-5 0 2.5 2.5 0 0 0 5 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-settings-outline.svg���������������0000664�0000000�0000000�00000000325�14753064456�0031064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 2v6h18V2zm16 4H5V4h14zm-1 3h2v11H4V9h2v9h12zm-3 1.5V12H9v-1.5c0-.28.22-.5.5-.5h5c.28 0 .5.22.5.5M7 22h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-settings.svg�����������������������0000664�0000000�0000000�00000000302�14753064456�0027402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 2v4H3V2zM4 7h16v13H4zm5 5h6v-1.5c0-.28-.22-.5-.5-.5h-5c-.28 0-.5.22-.5.5zM7 24h2v-2H7zm4 0h2v-2h-2zm4 0h2v-2h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-star-outline.svg�������������������0000664�0000000�0000000�00000000533�14753064456�0030176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 13.09V10h2v3.09c-.33-.05-.66-.09-1-.09s-.67.04-1 .09M9.5 11c-.28 0-.5.22-.5.5V13h6v-1.5c0-.28-.22-.5-.5-.5zM6 19v-9H4v11h9.35c-.22-.63-.35-1.3-.35-2zM21 9H3V3h18zm-2-4H5v2h14zm4 12.89-2.89-.25L19 15l-1.13 2.64-2.87.25 2.18 1.88-.68 2.81 2.5-1.49 2.45 1.49-.65-2.81z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-star.svg���������������������������0000664�0000000�0000000�00000000466�14753064456�0026526�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 7H3V3h18zm-8 12c0 .7.13 1.37.35 2H4V8h16v5.09c-.33-.05-.66-.09-1-.09-3.31 0-6 2.69-6 6m2-6v-1.5c0-.28-.22-.5-.5-.5h-5c-.28 0-.5.22-.5.5V13zm8 4.89-2.89-.25L19 15l-1.13 2.64-2.87.25 2.18 1.88-.68 2.81 2.5-1.49 2.45 1.49-.65-2.81z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-sync-outline.svg�������������������0000664�0000000�0000000�00000001014�14753064456�0030174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 11.18V10h2v1.03c-.16-.03-.33-.03-.5-.03-.5 0-1 .07-1.5.18m-3 .32c0-.28-.22-.5-.5-.5h-5c-.28 0-.5.22-.5.5V13h5.82l.18-.18zM6 19v-9H4v11h10.03c-.39-.61-.68-1.28-.85-2zM21 9H3V3h18zm-2-4H5v2h14zm0 8.5V12l-2.25 2.25L19 16.5V15a2.5 2.5 0 0 1 2.5 2.5c0 .4-.09.78-.26 1.12l1.09 1.09c.42-.63.67-1.39.67-2.21 0-2.21-1.79-4-4-4m0 6.5a2.5 2.5 0 0 1-2.5-2.5c0-.4.09-.78.26-1.12l-1.09-1.09c-.42.63-.67 1.39-.67 2.21 0 2.21 1.79 4 4 4V23l2.25-2.25L19 18.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/archive-sync.svg���������������������������0000664�0000000�0000000�00000000763�14753064456�0026531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 7H3V3h18zM9.5 11h5c.28 0 .5.22.5.5v1.32A6.44 6.44 0 0 1 19.5 11c.17 0 .34 0 .5.03V8H4v13h10.03A6.4 6.4 0 0 1 13 17.5c0-1.75.69-3.33 1.82-4.5H9v-1.5c0-.28.22-.5.5-.5m9.5 2.5V12l-2.25 2.25L19 16.5V15a2.5 2.5 0 0 1 2.5 2.5c0 .4-.09.78-.26 1.12l1.09 1.09c.42-.63.67-1.39.67-2.21 0-2.21-1.79-4-4-4m0 6.5a2.5 2.5 0 0 1-2.5-2.5c0-.4.09-.78.26-1.12l-1.09-1.09c-.42.63-.67 1.39-.67 2.21 0 2.21 1.79 4 4 4V23l2.25-2.25L19 18.5z"/></svg>�������������mkdocs-material-9.6.4/material/templates/.icons/material/archive.svg��������������������������������0000664�0000000�0000000�00000000231�14753064456�0025545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h18v4H3zm1 5h16v13H4zm5.5 3a.5.5 0 0 0-.5.5V13h6v-1.5a.5.5 0 0 0-.5-.5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arm-flex-outline.svg�����������������������0000664�0000000�0000000�00000000701�14753064456�0027316�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 7.76v8.49h4.08l.6-.91c1.16-1.79 3.25-2.59 4.79-2.59.53 0 .98.09 1.32.25.91.41 1.16 1.18 1.21 1.74.08 1.13-.5 2.29-1.5 2.97-.9.62-3.06 1.29-5.63 1.29-1.75 0-4.26-.31-6.75-1.7.29-2.45.88-6.42 1.88-9.54M7 3C4 7.09 3 18.34 3 18.34 5.9 20.31 9.08 21 11.87 21c2.99 0 5.52-.79 6.77-1.64 3-2.04 3.3-6.65 0-8.18-.64-.29-1.38-.43-2.17-.43-2.3 0-4.97 1.21-6.47 3.5H9V7.09h2L12 4z"/></svg>���������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arm-flex.svg�������������������������������0000664�0000000�0000000�00000000300�14753064456�0025634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 18.34S4 7.09 7 3l5 1-1 3.09H9v7.16h1c2-3.07 6.14-4.19 8.64-3.07 3.3 1.53 3 6.14 0 8.18C16.24 21 9 22.43 3 18.34"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrange-bring-forward.svg������������������0000664�0000000�0000000�00000000170�14753064456�0030306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2h14v14H2zm20 6v14H8v-4h2v2h10V10h-2V8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrange-bring-to-front.svg�����������������0000664�0000000�0000000�00000000216�14753064456�0030413�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2h9v4H9V4H4v5h2v2H2zm20 11v9h-9v-4h2v2h5v-5h-2v-2zM8 8h8v8H8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrange-send-backward.svg������������������0000664�0000000�0000000�00000000173�14753064456�0030253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2h14v14H2zm20 6v14H8v-4h10V8zM4 4v10h10V4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrange-send-to-back.svg�������������������0000664�0000000�0000000�00000000232�14753064456�0030011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2h9v9H2zm7 2H4v5h5zm13 9v9h-9v-9zm-7 7h5v-5h-5zm1-12v3h-3V8zm-5 8H8v-3h3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-all.svg������������������������������0000664�0000000�0000000�00000000464�14753064456�0026034�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 11h5l-1.5-1.5 1.42-1.42L21.84 12l-3.92 3.92-1.42-1.42L18 13h-5v5l1.5-1.5 1.42 1.42L12 21.84l-3.92-3.92L9.5 16.5 11 18v-5H6l1.5 1.5-1.42 1.42L2.16 12l3.92-3.92L7.5 9.5 6 11h5V6L9.5 7.5 8.08 6.08 12 2.16l3.92 3.92L14.5 7.5 13 6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-bottom-left-bold-box-outline.svg�����0000664�0000000�0000000�00000000325�14753064456�0032675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 16V8.9l2.1 2.1 4.1-3.9L17 10l-4.1 3.9L15 16zm13 3V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2m-2 0H5V5h14z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-bottom-left-bold-box.svg�������������0000664�0000000�0000000�00000000312�14753064456�0031214�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 21c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v14c0 1.1-.9 2-2 2zm10.3-5-2.1-2.1L17 10l-2.8-2.8-3.8 3.9-2.2-2.2V16z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-bottom-left-bold-outline.svg���������0000664�0000000�0000000�00000000321�14753064456�0032103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.36 19.78H4.22V5.64l4.25 4.24 5.65-5.66 5.66 5.66-5.66 5.66zM6.34 17.66h7.07l-2.12-2.12 5.66-5.66-2.83-2.83-5.66 5.66-2.12-2.12z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-bottom-left-thick.svg����������������0000664�0000000�0000000�00000000213�14753064456�0030610�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.5 5.69 2.81 2.81-6.37 6.39h4.95v3.42H5.69V7.11h3.43v4.95z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-bottom-left-thin-circle-outline.svg��0000664�0000000�0000000�00000000446�14753064456�0033374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20.03c4.41 0 8.03-3.62 8.03-8.03S16.41 3.97 12 3.97 3.97 7.59 3.97 12s3.62 8.03 8.03 8.03M12 22C6.46 22 2 17.54 2 12S6.46 2 12 2s10 4.46 10 10-4.46 10-10 10m-1.88-9.53L8 10.36V16h5.64l-2.11-2.12L16.5 8.9l-1.4-1.4"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-bottom-left-thin.svg�����������������0000664�0000000�0000000�00000000210�14753064456�0030445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.07 19-2.83-2.82L19 6.42 17.58 5l-9.76 9.76L5 11.94V19Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-bottom-left.svg����������������������0000664�0000000�0000000�00000000171�14753064456�0027513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 7 15.59V9H5v10h10v-2H8.41z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-bottom-right-bold-box-outline.svg����0000664�0000000�0000000�00000000325�14753064456�0033060�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 16H8.9l2.1-2.1L7 10l2.8-2.8 4.1 3.9L16 8.9zM5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2M5 5h14v14H5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-bottom-right-bold-box.svg������������0000664�0000000�0000000�00000000312�14753064456�0031377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 21H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v14c0 1.1-.9 2-2 2m-3.2-5V8.9L13.7 11 9.8 7.2 7 10l3.8 3.9L8.7 16z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-bottom-right-bold-outline.svg��������0000664�0000000�0000000�00000000317�14753064456�0032273�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.88 15.54 4.22 9.88l5.66-5.66 5.66 5.66 4.24-4.24v14.14H5.64zm7.78-4.95-2.12 2.12-5.66-5.66-2.83 2.83 5.66 5.66-2.12 2.12h7.07z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-bottom-right-thick.svg���������������0000664�0000000�0000000�00000000214�14753064456�0030774�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.89 12.06V7.11h3.42v11.2H7.11v-3.42h4.95L5.69 8.5 8.5 5.69z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-bottom-right-thin-circle-outline.svg�0000664�0000000�0000000�00000000445�14753064456�0033556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20.03c-4.41 0-8.03-3.62-8.03-8.03S7.59 3.97 12 3.97s8.03 3.62 8.03 8.03-3.62 8.03-8.03 8.03M12 22c5.54 0 10-4.46 10-10S17.54 2 12 2 2 6.46 2 12s4.46 10 10 10m1.88-9.53L16 10.36V16h-5.64l2.11-2.12L7.5 8.9l1.4-1.4"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-bottom-right-thin.svg����������������0000664�0000000�0000000�00000000206�14753064456�0030635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.93 19 2.83-2.82L5 6.42 6.42 5l9.76 9.76L19 11.94V19Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-bottom-right.svg���������������������0000664�0000000�0000000�00000000167�14753064456�0027703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 6.41 6.41 5 17 15.59V9h2v10H9v-2h6.59z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-collapse-all.svg���������������������0000664�0000000�0000000�00000000403�14753064456�0027625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.5 3.09 1.41 1.41-4.5 4.5H20v2h-7V4h2v3.59zm1.41 16.41-1.41 1.41-4.5-4.5V20h-2v-7h7v2h-3.59zM4.5 3.09 9 7.59V4h2v7H4V9h3.59l-4.5-4.5zM3.09 19.5l4.5-4.5H4v-2h7v7H9v-3.59l-4.5 4.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-collapse-down.svg��������������������0000664�0000000�0000000�00000000242�14753064456�0030025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.92 12.08 12 20l-7.92-7.92 1.42-1.41 5.5 5.5V2h2v14.17l5.5-5.51zM12 20H2v2h20v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-collapse-horizontal.svg��������������0000664�0000000�0000000�00000000241�14753064456�0031246�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 20V4h2.03v16zm-3 0V4h2.03v16zM5 8l4.03 4L5 16v-3H2v-2h3zm15 8-4-4 4-4v3h3v2h-3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-collapse-left.svg��������������������0000664�0000000�0000000�00000000236�14753064456�0030013�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.92 19.92 4 12l7.92-7.92 1.41 1.42-5.5 5.5H22v2H7.83l5.51 5.5zM4 12V2H2v20h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-collapse-right.svg�������������������0000664�0000000�0000000�00000000242�14753064456�0030173�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.08 4.08 20 12l-7.92 7.92-1.41-1.42 5.5-5.5H2v-2h14.17l-5.5-5.5zM20 12v10h2V2h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-collapse-up.svg����������������������0000664�0000000�0000000�00000000236�14753064456�0027505�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.08 11.92 12 4l7.92 7.92-1.42 1.41-5.5-5.5V22h-2V7.83l-5.5 5.5zM12 4h10V2H2v2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-collapse-vertical.svg����������������0000664�0000000�0000000�00000000226�14753064456�0030671�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 12h16v2H4zm0-3h16v2H4zm12-5-4 4-4-4h3V1h2v3zM8 19l4-4 4 4h-3v3h-2v-3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-collapse.svg�������������������������0000664�0000000�0000000�00000000252�14753064456�0027061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 3.09 15 7.59V4h-2v7h7V9h-3.59l4.5-4.5zM4 13v2h3.59l-4.5 4.5 1.41 1.41 4.5-4.5V20h2v-7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-decision-auto-outline.svg������������0000664�0000000�0000000�00000000650�14753064456�0031501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 15v-3c-.5 0-4.5.16-4.95 4.2 1.56.55 2.38 2.27 1.83 3.83a3.006 3.006 0 0 1-3.83 1.83c-1.55-.56-2.38-2.27-1.83-3.83.28-.86.98-1.53 1.83-1.83A6.75 6.75 0 0 1 19 10V7l4 4zm-5 4a1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1m-2-7.88c.58-.66 1.25-1.23 2-1.69V5h3l-4-4-4 4h3zM7.2 6h-2L2 15h1.9l.7-2h3.2l.7 2h1.9zm-2.15 5.65L6.2 8l1.15 3.65z"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-decision-auto.svg��������������������0000664�0000000�0000000�00000000555�14753064456�0030030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 5H9l4-4 4 4h-3v4.43c-.75.46-1.42 1.03-2 1.69zm-1.6 10H8.5l-.7-2H4.6l-.7 2H2l3.2-9h2zm-3.05-3.35L6.2 8l-1.15 3.65zM23 11l-4-4v3a6.747 6.747 0 0 0-7 6.17A3.006 3.006 0 0 0 10.17 20 3.006 3.006 0 0 0 14 21.83 3.01 3.01 0 0 0 15.83 18c-.3-.86-.98-1.53-1.83-1.83.47-4 4.47-4.2 4.95-4.2v3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-decision-outline.svg�����������������0000664�0000000�0000000�00000000703�14753064456�0030532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.64 13.4C8.63 12.5 7.34 12.03 6 12v3l-4-4 4-4v3c1.67 0 3.3.57 4.63 1.59a8 8 0 0 0-.99 1.81M18 15v-3c-.5 0-4.5.16-4.95 4.2 1.56.55 2.38 2.27 1.83 3.83a3.006 3.006 0 0 1-3.83 1.83c-1.55-.56-2.38-2.27-1.83-3.83.28-.86.98-1.53 1.83-1.83A6.75 6.75 0 0 1 18 10V7l4 4zm-5 4a1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1m-2-7.88c.58-.66 1.25-1.23 2-1.69V5h3l-4-4-4 4h3z"/></svg>�������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-decision.svg�������������������������0000664�0000000�0000000�00000000602�14753064456�0027053�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 5H8l4-4 4 4h-3v4.43c-.75.46-1.42 1.03-2 1.69zm11 6-4-4v3a6.747 6.747 0 0 0-7 6.17A3.006 3.006 0 0 0 9.17 20 3.006 3.006 0 0 0 13 21.83 3.01 3.01 0 0 0 14.83 18c-.3-.86-.98-1.53-1.83-1.83.47-4 4.47-4.2 4.95-4.2v3zm-11.37.59A7.63 7.63 0 0 0 6 10V7l-4 4 4 4v-3c1.34.03 2.63.5 3.64 1.4.25-.64.58-1.25.99-1.81"/></svg>������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-down-bold-box-outline.svg������������0000664�0000000�0000000�00000000266�14753064456�0031414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 17-5-5h3V8h4v4h3zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 2v14h14V5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-down-bold-box.svg��������������������0000664�0000000�0000000�00000000252�14753064456�0027732�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m7 14 5-5h-3V8h-4v4H7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-down-bold-circle-outline.svg���������0000664�0000000�0000000�00000000352�14753064456�0032061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 17-5-5h3V8h4v4h3zm0-15a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-down-bold-circle.svg�����������������0000664�0000000�0000000�00000000257�14753064456�0030410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 15 5-5h-3V8h-4v4H7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-down-bold-hexagon-outline.svg��������0000664�0000000�0000000�00000000522�14753064456�0032250�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 17-5-5h3V8h4v4h3zm9-.5c0 .38-.21.71-.53.88l-7.9 4.44c-.16.12-.36.18-.57.18s-.41-.06-.57-.18l-7.9-4.44A.99.99 0 0 1 3 16.5v-9c0-.38.21-.71.53-.88l7.9-4.44c.16-.12.36-.18.57-.18s.41.06.57.18l7.9 4.44c.32.17.53.5.53.88zM12 4.15 5 8.09v7.82l7 3.94 7-3.94V8.09z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-down-bold-outline.svg����������������0000664�0000000�0000000�00000000177�14753064456�0030627�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 11 12 21 2 11h6V3h8v8zm-10 7 5-5h-3V5h-4v8H7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-down-bold.svg������������������������0000664�0000000�0000000�00000000157�14753064456�0027150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 4h6v8h4.84L12 19.84 4.16 12H9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-down-box.svg�������������������������0000664�0000000�0000000�00000000323�14753064456�0027013�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2zm8 1v8.5L7.5 11l-1.42 1.42L12 18.34l5.92-5.92L16.5 11 13 14.5V6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-down-circle-outline.svg��������������0000664�0000000�0000000�00000000424�14753064456�0031143�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 6h2v8l3.5-3.5 1.42 1.42L12 17.84l-5.92-5.92L7.5 10.5 11 14zm1 16A10 10 0 0 1 2 12 10 10 0 0 1 12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10m0-2a8 8 0 0 0 8-8 8 8 0 0 0-8-8 8 8 0 0 0-8 8 8 8 0 0 0 8 8"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-down-circle.svg����������������������0000664�0000000�0000000�00000000331�14753064456�0027463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 6v8l-3.5-3.5-1.42 1.42L12 17.84l5.92-5.92-1.42-1.42L13 14V6zm1 16A10 10 0 0 1 2 12 10 10 0 0 1 12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-down-drop-circle-outline.svg���������0000664�0000000�0000000�00000000343�14753064456�0032105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 2a8 8 0 0 1 8 8 8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8m-5 6 5 5 5-5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-down-drop-circle.svg�����������������0000664�0000000�0000000�00000000247�14753064456�0030433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m-5 8 5 5 5-5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-down-left-bold.svg�������������������0000664�0000000�0000000�00000000235�14753064456�0030075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 3v4h-7.5C11.57 7 10 8.57 10 10.5V13h4l-6 7-6-7h4v-2.5C6 6.36 9.36 3 13.5 3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-down-left.svg������������������������0000664�0000000�0000000�00000000276�14753064456�0027164�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4v2h-6.5C11 6 9 8 9 10.5v5.67l3.09-3.08 1.41 1.41L8 20l-5.5-5.5 1.41-1.42L7 16.17V10.5A6.5 6.5 0 0 1 13.5 4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-down-right-bold.svg������������������0000664�0000000�0000000�00000000236�14753064456�0030261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 3c4.14 0 7.5 3.36 7.5 7.5V13h4l-6 7-6-7h4v-2.5C14 8.57 12.43 7 10.5 7H3V3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-down-right.svg�����������������������0000664�0000000�0000000�00000000276�14753064456�0027347�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.5 14.5 16 20l-5.5-5.5 1.41-1.41L15 16.17V10.5C15 8 13 6 10.5 6H4V4h6.5a6.5 6.5 0 0 1 6.5 6.5v5.67l3.09-3.09z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-down-thick.svg�����������������������0000664�0000000�0000000�00000000214�14753064456�0027324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 4h4v9l3.5-3.5 2.42 2.42L12 19.84l-7.92-7.92L6.5 9.5 10 13z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-down-thin-circle-outline.svg���������0000664�0000000�0000000�00000000420�14753064456�0032077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20.03c4.41 0 8.03-3.62 8.03-8.03S16.41 3.97 12 3.97 3.97 7.59 3.97 12s3.62 8.03 8.03 8.03M12 22C6.46 22 2 17.54 2 12S6.46 2 12 2s10 4.46 10 10-4.46 10-10 10m-1-8.46H8l4 3.96 4-3.96h-3V6.5h-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-down-thin.svg������������������������0000664�0000000�0000000�00000000166�14753064456�0027172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.03 13.92h4V5l2.01-.03v8.95h3.99l-5 5Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-down.svg�����������������������������0000664�0000000�0000000�00000000216�14753064456�0026226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 4h2v12l5.5-5.5 1.42 1.42L12 19.84l-7.92-7.92L5.5 10.5 11 16z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-expand-all.svg�����������������������0000664�0000000�0000000�00000000403�14753064456�0027302�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.5 13.09 1.41 1.41-4.5 4.5H10v2H3v-7h2v3.59zm1.41-3.59L9.5 10.91 5 6.41V10H3V3h7v2H6.41zm3.59 3.59 4.5 4.5V14h2v7h-7v-2h3.59l-4.5-4.5zM13.09 9.5l4.5-4.5H14V3h7v7h-2V6.41l-4.5 4.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-expand-down.svg����������������������0000664�0000000�0000000�00000000231�14753064456�0027500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 4V2H2v2h9v14.17l-5.5-5.5-1.42 1.41L12 22l7.92-7.92-1.42-1.41-5.5 5.5V4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-expand-horizontal.svg����������������0000664�0000000�0000000�00000000212�14753064456�0030721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 11h6V8l4 4-4 4v-3H9v3l-4-4 4-4zm-7 9V4h2v16zm18 0V4h2v16z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-expand-left.svg����������������������0000664�0000000�0000000�00000000231�14753064456�0027463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 22h2V2h-2v9H5.83l5.5-5.5-1.41-1.42L2 12l7.92 7.92 1.41-1.42-5.5-5.5H20z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-expand-right.svg���������������������0000664�0000000�0000000�00000000233�14753064456�0027650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2H2v20h2v-9h14.17l-5.5 5.5 1.41 1.42L22 12l-7.92-7.92-1.41 1.42 5.5 5.5H4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-expand-up.svg������������������������0000664�0000000�0000000�00000000232�14753064456�0027156�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 20v2h20v-2h-9V5.83l5.5 5.5 1.42-1.41L12 2 4.08 9.92l1.42 1.41 5.5-5.5V20z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-expand-vertical.svg������������������0000664�0000000�0000000�00000000210�14753064456�0030337�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9v6h3l-4 4-4-4h3V9H8l4-4 4 4zM4 2h16v2H4zm0 18h16v2H4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-expand.svg���������������������������0000664�0000000�0000000�00000000253�14753064456�0026537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 21v-2H6.41l4.5-4.5-1.41-1.41-4.5 4.5V14H3v7zm4.5-10.09 4.5-4.5V10h2V3h-7v2h3.59l-4.5 4.5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-horizontal-lock.svg������������������0000664�0000000�0000000�00000000455�14753064456�0030403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.8 7V5.5C14.8 4.1 13.4 3 12 3S9.2 4.1 9.2 5.5V7C8.6 7 8 7.6 8 8.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2V8.3c0-.7-.6-1.3-1.2-1.3m-1.3 0h-3V5.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3zM6 17v3l-4-4 4-4v3h12v-3l4 4-4 4v-3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-left-bold-box-outline.svg������������0000664�0000000�0000000�00000000270�14753064456�0031372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7 12 5-5v3h4v4h-4v3zm14-7v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2m-2 0H5v14h14z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-left-bold-box.svg��������������������0000664�0000000�0000000�00000000254�14753064456�0027717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 5v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2M7 12l5 5v-3h4v-4h-4V7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-left-bold-circle-outline.svg���������0000664�0000000�0000000�00000000353�14753064456�0032045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7 12 5-5v3h4v4h-4v3zm15 0a10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2a10 10 0 0 1 10 10m-2 0a8 8 0 0 0-8-8 8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-left-bold-circle.svg�����������������0000664�0000000�0000000�00000000261�14753064456�0030366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 12a10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2a10 10 0 0 1 10 10M7 12l5 5v-3h4v-4h-4V7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-left-bold-hexagon-outline.svg��������0000664�0000000�0000000�00000000524�14753064456�0032235�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7 12 5-5v3h4v4h-4v3zm14 4.5c0 .38-.21.71-.53.88l-7.9 4.44c-.16.12-.36.18-.57.18s-.41-.06-.57-.18l-7.9-4.44A.99.99 0 0 1 3 16.5v-9c0-.38.21-.71.53-.88l7.9-4.44c.16-.12.36-.18.57-.18s.41.06.57.18l7.9 4.44c.32.17.53.5.53.88zM12 4.15 5 8.09v7.82l7 3.94 7-3.94V8.09z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-left-bold-outline.svg����������������0000664�0000000�0000000�00000000177�14753064456�0030612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 22 3 12 13 2v6h8v8h-8zM6 12l5 5v-3h8v-4h-8V7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-left-bold.svg������������������������0000664�0000000�0000000�00000000160�14753064456�0027125�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 9v6h-8v4.84L4.16 12 12 4.16V9z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-left-bottom-bold.svg�����������������0000664�0000000�0000000�00000000237�14753064456�0030434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 10.5c0 4.14-3.36 7.5-7.5 7.5H11v4l-7-6 7-6v4h2.5c1.93 0 3.5-1.57 3.5-3.5V3h4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-left-bottom.svg����������������������0000664�0000000�0000000�00000000300�14753064456�0027505�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4v6.5a6.5 6.5 0 0 1-6.5 6.5H7.83l3.09 3.09L9.5 21.5 4 16l5.5-5.5 1.41 1.41L7.83 15h5.67c2.5 0 4.5-2 4.5-4.5V4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-left-box.svg�������������������������0000664�0000000�0000000�00000000323�14753064456�0026776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm-1 8H9.5L13 7.5l-1.42-1.42L5.66 12l5.92 5.92L13 16.5 9.5 13H18z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-left-circle-outline.svg��������������0000664�0000000�0000000�00000000424�14753064456�0031126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 11v2h-8l3.5 3.5-1.42 1.42L6.16 12l5.92-5.92L13.5 7.5 10 11zM2 12A10 10 0 0 1 12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12m2 0a8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8 8 8 0 0 0-8 8"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-left-circle.svg����������������������0000664�0000000�0000000�00000000330�14753064456�0027445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 12A10 10 0 0 1 12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12m16-1h-8l3.5-3.5-1.42-1.42L6.16 12l5.92 5.92 1.42-1.42L10 13h8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-left-drop-circle-outline.svg���������0000664�0000000�0000000�00000000345�14753064456�0032072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 12A10 10 0 0 0 12 2 10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10m-2 0a8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8m-6-5-5 5 5 5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-left-drop-circle.svg�����������������0000664�0000000�0000000�00000000250�14753064456�0030410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 12a10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2a10 10 0 0 1 10 10m-8-5-5 5 5 5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-left-right-bold-outline.svg����������0000664�0000000�0000000�00000000231�14753064456�0031714�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 16v6l10-10L14 2v6h-4V2L0 12l10 10v-6zm-6-2v3l-5-5 5-5v3h8V7l5 5-5 5v-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-left-right-bold.svg������������������0000664�0000000�0000000�00000000160�14753064456�0030240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 14v4l-6-6 6-6v4h8V6l6 6-6 6v-4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-left-right.svg�����������������������0000664�0000000�0000000�00000000311�14753064456�0027320�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.45 17.45 1 12l5.45-5.45 1.41 1.41L4.83 11h14.34l-3.03-3.04 1.41-1.41L23 12l-5.45 5.45-1.41-1.41L19.17 13H4.83l3.03 3.04z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-left-thick.svg�����������������������0000664�0000000�0000000�00000000215�14753064456�0027310�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 10v4h-9l3.5 3.5-2.42 2.42L4.16 12l7.92-7.92L14.5 6.5 11 10z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-left-thin-circle-outline.svg���������0000664�0000000�0000000�00000000415�14753064456�0032066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.97 12c0 4.41 3.62 8.03 8.03 8.03s8.03-3.62 8.03-8.03S16.41 3.97 12 3.97 3.97 7.59 3.97 12M2 12C2 6.46 6.46 2 12 2s10 4.46 10 10-4.46 10-10 10S2 17.54 2 12m8.46-1V8L6.5 12l3.96 4v-3h7.04v-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-left-thin.svg������������������������0000664�0000000�0000000�00000000174�14753064456�0027154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.05 16.94v-4h8.92l.03-2.01h-8.95V6.94l-5 5Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-left-top-bold.svg��������������������0000664�0000000�0000000�00000000240�14753064456�0027724�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 21h-4v-7.5c0-1.93-1.57-3.5-3.5-3.5H11v4L4 8l7-6v4h2.5c4.14 0 7.5 3.36 7.5 7.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-left-top.svg�������������������������0000664�0000000�0000000�00000000303�14753064456�0027006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 13.5V20h-2v-6.5C18 11 16 9 13.5 9H7.83l3.08 3.09L9.5 13.5 4 8l5.5-5.5 1.42 1.41L7.83 7h5.67a6.5 6.5 0 0 1 6.5 6.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-left.svg�����������������������������0000664�0000000�0000000�00000000213�14753064456�0026206�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-oscillating-off.svg������������������0000664�0000000�0000000�00000000415�14753064456�0030340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 8.1v-2c5.3.5 7 5.3 7 7.9h3l-2.9 2.9-2.9-2.9h.8c0-2.1-1.6-5.4-5-5.9m-5.2-1L2.4 1.7 1.1 3l5.2 5.2C4.7 10 4 12.4 4 14H1l4 4 4-4H6c0-1.3.6-3 1.9-4.3l13 13 1.3-1.3L9.3 8.7zm3.2-1-1.5.3L11 7.8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-oscillating.svg����������������������0000664�0000000�0000000�00000000302�14753064456�0027563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 14h3l-4 4-4-4h3c0-2.7 1.7-7.4 7-7.9v2c-3.4.5-5 3.8-5 5.9m14 0c0-2.7-1.7-7.4-7-7.9v2c3.4.6 5 3.8 5 5.9h-3l4 4 4-4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-projectile-multiple.svg��������������0000664�0000000�0000000�00000000343�14753064456�0031251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19 16 3 3-2 1-1 2-3-3v-1.94l-4-4-4 4V19l-3 3-1-2-2-1 3-3h1.94l4-4-5.97-5.97L4 7 2 2l5 2-.97.97L12 10.94l5.97-5.97L17 4l5-2-2 5-.97-.97L13.06 12l4 4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-projectile.svg�����������������������0000664�0000000�0000000�00000000221�14753064456�0027413�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22 2-2 5-.97-.97L8 17.06V19l-3 3-1-2-2-1 3-3h1.94L17.97 4.97 17 4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-right-bold-box-outline.svg�����������0000664�0000000�0000000�00000000270�14753064456�0031555�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17 12-5 5v-3H8v-4h4V7zM3 19V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2m2 0h14V5H5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-right-bold-box.svg�������������������0000664�0000000�0000000�00000000251�14753064456�0030077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 19V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2m14-7-5-5v3H8v4h4v3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-right-bold-circle-outline.svg��������0000664�0000000�0000000�00000000354�14753064456�0032231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17 12-5 5v-3H8v-4h4V7zM2 12A10 10 0 0 1 12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12m2 0a8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8 8 8 0 0 0-8 8"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-right-bold-circle.svg����������������0000664�0000000�0000000�00000000255�14753064456�0030554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 12A10 10 0 0 1 12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12m15 0-5-5v3H8v4h4v3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-right-bold-hexagon-outline.svg�������0000664�0000000�0000000�00000000525�14753064456�0032421�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17 12-5 5v-3H8v-4h4V7zm4 4.5c0 .38-.21.71-.53.88l-7.9 4.44c-.16.12-.36.18-.57.18s-.41-.06-.57-.18l-7.9-4.44A.99.99 0 0 1 3 16.5v-9c0-.38.21-.71.53-.88l7.9-4.44c.16-.12.36-.18.57-.18s.41.06.57.18l7.9 4.44c.32.17.53.5.53.88zM12 4.15 5 8.09v7.82l7 3.94 7-3.94V8.09z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-right-bold-outline.svg���������������0000664�0000000�0000000�00000000174�14753064456�0030772�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 16H3V8h8V2l10 10-10 10zm2-9v3H5v4h8v3l5-5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-right-bold.svg�����������������������0000664�0000000�0000000�00000000162�14753064456�0027312�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 15V9h8V4.16L19.84 12 12 19.84V15z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-right-bottom-bold.svg����������������0000664�0000000�0000000�00000000236�14753064456�0030616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h4v7.5c0 1.93 1.57 3.5 3.5 3.5H13v-4l7 6-7 6v-4h-2.5C6.36 18 3 14.64 3 10.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-right-bottom.svg���������������������0000664�0000000�0000000�00000000276�14753064456�0027704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20 16-5.5 5.5-1.42-1.41L16.17 17H10.5A6.5 6.5 0 0 1 4 10.5V4h2v6.5C6 13 8 15 10.5 15h5.67l-3.08-3.09 1.41-1.41z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-right-box.svg������������������������0000664�0000000�0000000�00000000324�14753064456�0027162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2zm1-8h8.5L11 16.5l1.42 1.42L18.34 12l-5.92-5.92L11 7.5l3.5 3.5H6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-right-circle-outline.svg�������������0000664�0000000�0000000�00000000430�14753064456�0031306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 13v-2h8l-3.5-3.5 1.42-1.42L17.84 12l-5.92 5.92-1.42-1.42L14 13zm16-1a10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2a10 10 0 0 1 10 10m-2 0a8 8 0 0 0-8-8 8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-right-circle.svg���������������������0000664�0000000�0000000�00000000332�14753064456�0027632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 12a10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2a10 10 0 0 1 10 10M6 13h8l-3.5 3.5 1.42 1.42L17.84 12l-5.92-5.92L10.5 7.5 14 11H6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-right-drop-circle-outline.svg��������0000664�0000000�0000000�00000000342�14753064456�0032252�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2 10 10 0 0 0 2 12m2 0a8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8 8 8 0 0 1-8-8m6 5 5-5-5-5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-right-drop-circle.svg����������������0000664�0000000�0000000�00000000246�14753064456�0030600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 12A10 10 0 0 1 12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12m8 5 5-5-5-5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-right-thick.svg����������������������0000664�0000000�0000000�00000000215�14753064456�0027473�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 10v4h9l-3.5 3.5 2.42 2.42L19.84 12l-7.92-7.92L9.5 6.5 13 10z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-right-thin-circle-outline.svg��������0000664�0000000�0000000�00000000416�14753064456�0032252�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.03 12c0-4.41-3.62-8.03-8.03-8.03S3.97 7.59 3.97 12s3.62 8.03 8.03 8.03 8.03-3.62 8.03-8.03M22 12c0 5.54-4.46 10-10 10S2 17.54 2 12 6.46 2 12 2s10 4.46 10 10m-8.46 1v3l3.96-4-3.96-4v3H6.5v2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-right-thin.svg�����������������������0000664�0000000�0000000�00000000166�14753064456�0027340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 16.94v-4H5.08l-.03-2.01H14V6.94l5 5Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-right-top-bold.svg�������������������0000664�0000000�0000000�00000000234�14753064456�0030112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 13.5C3 9.36 6.36 6 10.5 6H13V2l7 6-7 6v-4h-2.5C8.57 10 7 11.57 7 13.5V21H3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-right-top.svg������������������������0000664�0000000�0000000�00000000273�14753064456�0027177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20 8-5.5 5.5-1.41-1.41L16.17 9H10.5C8 9 6 11 6 13.5V20H4v-6.5A6.5 6.5 0 0 1 10.5 7h5.67l-3.09-3.09L14.5 2.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-right.svg����������������������������0000664�0000000�0000000�00000000217�14753064456�0026375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 11v2h12l-5.5 5.5 1.42 1.42L19.84 12l-7.92-7.92L10.5 5.5 16 11z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-split-horizontal.svg�����������������0000664�0000000�0000000�00000000215�14753064456�0030600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 18h3v-3H2v-2h20v2h-9v3h3l-4 4zm4-16L8 6h3v3H2v2h20V9h-9V6h3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-split-vertical.svg�������������������0000664�0000000�0000000�00000000213�14753064456�0030216�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 16v-3h-3v9h-2V2h2v9h3V8l4 4zM2 12l4 4v-3h3v9h2V2H9v9H6V8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-top-left-bold-box-outline.svg��������0000664�0000000�0000000�00000000324�14753064456�0032172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 8h7.1L13 10.1l4 3.9-2.8 2.8-4.1-3.9L8 15.1zm11-5H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 16H5V5h14z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-top-left-bold-box.svg����������������0000664�0000000�0000000�00000000311�14753064456�0030511�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14c1.1 0 2 .9 2 2v14c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2m3.2 5v7.1l2.1-2.1 3.8 3.9L17 14l-3.8-3.9L15.3 8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-top-left-bold-outline.svg������������0000664�0000000�0000000�00000000320�14753064456�0031400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.12 8.46 5.66 5.66-5.66 5.66-5.66-5.66-4.24 4.24V4.22h14.14zm-7.78 4.95 2.12-2.12 5.66 5.66 2.83-2.83-5.66-5.65 2.12-2.13H6.34z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-top-left-bottom-right-bold.svg�������0000664�0000000�0000000�00000000224�14753064456�0032343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.83 8.66 3 11.5V3h8.5L8.66 5.83l9.51 9.51L21 12.5V21h-8.5l2.84-2.83z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-top-left-bottom-right.svg������������0000664�0000000�0000000�00000000205�14753064456�0031424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 21h8v-8h-2v4.59L6.41 5H11V3H3v8h2V6.41L17.59 19H13z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-top-left-thick.svg�������������������0000664�0000000�0000000�00000000215�14753064456�0030110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.12 11.94v4.95H5.69V5.69h11.2v3.43h-4.95l6.37 6.38-2.81 2.81z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-top-left-thin-circle-outline.svg�����0000664�0000000�0000000�00000000443�14753064456�0032667�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3.97c4.41 0 8.03 3.62 8.03 8.03s-3.62 8.03-8.03 8.03S3.97 16.41 3.97 12 7.59 3.97 12 3.97M12 2C6.46 2 2 6.46 2 12s4.46 10 10 10 10-4.46 10-10S17.54 2 12 2m-1.88 9.53L8 13.64V8h5.64l-2.11 2.12 4.97 4.98-1.4 1.4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-top-left-thin.svg��������������������0000664�0000000�0000000�00000000207�14753064456�0027751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.07 5 9.24 7.83 19 17.59 17.58 19 7.82 9.25 5 12.07V5Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-top-left.svg�������������������������0000664�0000000�0000000�00000000171�14753064456�0027011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 17.59 17.59 19 7 8.41V15H5V5h10v2H8.41z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-top-right-bold-box-outline.svg�������0000664�0000000�0000000�00000000323�14753064456�0032354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 8v7.1L13.9 13l-4.1 3.9L7 14l4.1-3.9L8.9 8zM3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2m2 0h14v14H5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-top-right-bold-box.svg���������������0000664�0000000�0000000�00000000305�14753064456�0030677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3c1.1 0 2 .9 2 2v14c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2zM8.7 8l2.1 2.1L7 14l2.8 2.8 3.8-3.9 2.1 2.1V8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-top-right-bold-outline.svg�����������0000664�0000000�0000000�00000000322�14753064456�0031565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.64 4.22h14.14v14.14l-4.24-4.24-5.66 5.66-5.66-5.66 5.66-5.66zm12.02 2.12h-7.07l2.12 2.12-5.66 5.66 2.83 2.83 5.66-5.66 2.12 2.12z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-top-right-bottom-left-bold.svg�������0000664�0000000�0000000�00000000226�14753064456�0032345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.17 8.66 21 11.5V3h-8.5l2.84 2.83-9.51 9.51L3 12.5V21h8.5l-2.84-2.83z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-top-right-bottom-left.svg������������0000664�0000000�0000000�00000000205�14753064456�0031424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 21H3v-8h2v4.59L17.59 5H13V3h8v8h-2V6.41L6.41 19H11z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-top-right-thick.svg������������������0000664�0000000�0000000�00000000215�14753064456�0030273�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.5 18.31 5.69 15.5l6.37-6.38H7.11V5.69h11.2v11.2h-3.42v-4.95z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-top-right-thin-circle-outline.svg����0000664�0000000�0000000�00000000445�14753064456�0033054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3.97c-4.41 0-8.03 3.62-8.03 8.03s3.62 8.03 8.03 8.03 8.03-3.62 8.03-8.03S16.41 3.97 12 3.97M12 2c5.54 0 10 4.46 10 10s-4.46 10-10 10S2 17.54 2 12 6.46 2 12 2m1.88 9.53L16 13.64V8h-5.64l2.11 2.12L7.5 15.1l1.4 1.4"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-top-right-thin.svg�������������������0000664�0000000�0000000�00000000206�14753064456�0030133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.93 5 2.83 2.83L5 17.59 6.42 19l9.76-9.75L19 12.07V5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-top-right.svg������������������������0000664�0000000�0000000�00000000171�14753064456�0027174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 17.59 15.59 7H9V5h10v10h-2V8.41L6.41 19z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-u-down-left-bold.svg�����������������0000664�0000000�0000000�00000000302�14753064456�0030332�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 10.5V18h-4v-7.5C17 8.57 15.43 7 13.5 7S10 8.57 10 10.5V13h4l-6 7-6-7h4v-2.5C6 6.36 9.36 3 13.5 3S21 6.36 21 10.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-u-down-left.svg����������������������0000664�0000000�0000000�00000000316�14753064456�0027421�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 10.5V18h-2v-7.5C18 8 16 6 13.5 6S9 8 9 10.5v5.67l3.09-3.08 1.41 1.41L8 20l-5.5-5.5 1.41-1.42L7 16.17V10.5a6.5 6.5 0 1 1 13 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-u-down-right-bold.svg����������������0000664�0000000�0000000�00000000306�14753064456�0030521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 3c4.14 0 7.5 3.36 7.5 7.5V13h4l-6 7-6-7h4v-2.5C14 8.57 12.43 7 10.5 7S7 8.57 7 10.5V18H3v-7.5C3 6.36 6.36 3 10.5 3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-u-down-right.svg���������������������0000664�0000000�0000000�00000000310�14753064456�0027576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.5 14.5 16 20l-5.5-5.5 1.41-1.41L15 16.17V10.5C15 8 13 6 10.5 6S6 8 6 10.5V18H4v-7.5a6.5 6.5 0 1 1 13 0v5.67l3.09-3.09z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-u-left-bottom-bold.svg���������������0000664�0000000�0000000�00000000311�14753064456�0030667�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 10.5c0 4.14-3.36 7.5-7.5 7.5H11v4l-7-6 7-6v4h2.5c1.93 0 3.5-1.57 3.5-3.5S15.43 7 13.5 7H6V3h7.5c4.14 0 7.5 3.36 7.5 7.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-u-left-bottom.svg��������������������0000664�0000000�0000000�00000000346�14753064456�0027761�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 10.5a6.5 6.5 0 0 1-6.5 6.5H7.83l3.09 3.09L9.5 21.5 4 16l5.5-5.5 1.41 1.41L7.83 15h5.67c2.5 0 4.5-2 4.5-4.5S16 6 13.5 6H6V4h7.5a6.5 6.5 0 0 1 6.5 6.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-u-left-top-bold.svg������������������0000664�0000000�0000000�00000000304�14753064456�0030167�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.5 21H6v-4h7.5c1.93 0 3.5-1.57 3.5-3.5S15.43 10 13.5 10H11v4L4 8l7-6v4h2.5c4.14 0 7.5 3.36 7.5 7.5S17.64 21 13.5 21"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-u-left-top.svg�����������������������0000664�0000000�0000000�00000000345�14753064456�0027256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 13.5a6.5 6.5 0 0 1-6.5 6.5H6v-2h7.5c2.5 0 4.5-2 4.5-4.5S16 9 13.5 9H7.83l3.08 3.09L9.5 13.5 4 8l5.5-5.5 1.42 1.41L7.83 7h5.67a6.5 6.5 0 0 1 6.5 6.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-u-right-bottom-bold.svg��������������0000664�0000000�0000000�00000000277�14753064456�0031065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 3H18v4h-7.5C8.57 7 7 8.57 7 10.5S8.57 14 10.5 14H13v-4l7 6-7 6v-4h-2.5C6.36 18 3 14.64 3 10.5S6.36 3 10.5 3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-u-right-bottom.svg�������������������0000664�0000000�0000000�00000000310�14753064456�0030133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20 16-5.5 5.5-1.42-1.41L16.17 17H10.5a6.5 6.5 0 1 1 0-13H18v2h-7.5C8 6 6 8 6 10.5S8 15 10.5 15h5.67l-3.08-3.09 1.41-1.41z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-u-right-top-bold.svg�����������������0000664�0000000�0000000�00000000307�14753064456�0030355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 13.5C3 9.36 6.36 6 10.5 6H13V2l7 6-7 6v-4h-2.5C8.57 10 7 11.57 7 13.5S8.57 17 10.5 17H18v4h-7.5C6.36 21 3 17.64 3 13.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-u-right-top.svg����������������������0000664�0000000�0000000�00000000316�14753064456�0027437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 18H18v2h-7.5a6.5 6.5 0 1 1 0-13h5.67l-3.09-3.09L14.5 2.5 20 8l-5.5 5.5-1.41-1.41L16.17 9H10.5C8 9 6 11 6 13.5S8 18 10.5 18"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-u-up-left-bold.svg�������������������0000664�0000000�0000000�00000000312�14753064456�0030010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.5 21C9.36 21 6 17.64 6 13.5V11H2l6-7 6 7h-4v2.5c0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5V6h4v7.5c0 4.14-3.36 7.5-7.5 7.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-u-up-left.svg������������������������0000664�0000000�0000000�00000000310�14753064456�0027070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6v7.5a6.5 6.5 0 1 1-13 0V7.83l-3.09 3.09L2.5 9.5 8 4l5.5 5.5-1.41 1.41L9 7.83v5.67C9 16 11 18 13.5 18s4.5-2 4.5-4.5V6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-u-up-right-bold.svg������������������0000664�0000000�0000000�00000000302�14753064456�0030172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 13.5V6h4v7.5c0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5V11h-4l6-7 6 7h-4v2.5c0 4.14-3.36 7.5-7.5 7.5S3 17.64 3 13.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-u-up-right.svg�����������������������0000664�0000000�0000000�00000000310�14753064456�0027253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.5 9.5-1.41 1.42L17 7.83v5.67a6.5 6.5 0 1 1-13 0V6h2v7.5C6 16 8 18 10.5 18s4.5-2 4.5-4.5V7.83l-3.09 3.08L10.5 9.5 16 4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-up-bold-box-outline.svg��������������0000664�0000000�0000000�00000000270�14753064456�0031064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 7 5 5h-3v4h-4v-4H7zm7 14H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2m0-2V5H5v14z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-up-bold-box.svg����������������������0000664�0000000�0000000�00000000254�14753064456�0027411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2M12 7l-5 5h3v4h4v-4h3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-up-bold-circle-outline.svg�����������0000664�0000000�0000000�00000000354�14753064456�0031540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 7 5 5h-3v4h-4v-4H7zm0 15A10 10 0 0 1 2 12 10 10 0 0 1 12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10m0-2a8 8 0 0 0 8-8 8 8 0 0 0-8-8 8 8 0 0 0-8 8 8 8 0 0 0 8 8"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-up-bold-circle.svg�������������������0000664�0000000�0000000�00000000257�14753064456�0030065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 22A10 10 0 0 1 2 12 10 10 0 0 1 12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10m0-15-5 5h3v4h4v-4h3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-up-bold-hexagon-outline.svg����������0000664�0000000�0000000�00000000525�14753064456�0031730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 7 5 5h-3v4h-4v-4H7zm9 9.5c0 .38-.21.71-.53.88l-7.9 4.44c-.16.12-.36.18-.57.18s-.41-.06-.57-.18l-7.9-4.44A.99.99 0 0 1 3 16.5v-9c0-.38.21-.71.53-.88l7.9-4.44c.16-.12.36-.18.57-.18s.41.06.57.18l7.9 4.44c.32.17.53.5.53.88zM12 4.15 5 8.09v7.82l7 3.94 7-3.94V8.09z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-up-bold-outline.svg������������������0000664�0000000�0000000�00000000177�14753064456�0030304�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 13v8H8v-8H2L12 3l10 10zm-9-2h3v8h4v-8h3l-5-5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-up-bold.svg��������������������������0000664�0000000�0000000�00000000163�14753064456�0026622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 20H9v-8H4.16L12 4.16 19.84 12H15z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-up-box.svg���������������������������0000664�0000000�0000000�00000000324�14753064456�0026471�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2zm-8-1V9.5l3.5 3.5 1.42-1.42L12 5.66l-5.92 5.92L7.5 13 11 9.5V18z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-up-circle-outline.svg����������������0000664�0000000�0000000�00000000427�14753064456�0030623�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 18h-2v-8l-3.5 3.5-1.42-1.42L12 6.16l5.92 5.92-1.42 1.42L13 10zM12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-up-circle.svg������������������������0000664�0000000�0000000�00000000331�14753064456�0027140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 18v-8l3.5 3.5 1.42-1.42L12 6.16l-5.92 5.92L7.5 13.5 11 10v8zM12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-up-down-bold-outline.svg�������������0000664�0000000�0000000�00000000230�14753064456�0031237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 10h6L12 0 2 10h6v4H2l10 10 10-10h-6zm-2 6h3l-5 5-5-5h3V8H7l5-5 5 5h-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-up-down-bold.svg���������������������0000664�0000000�0000000�00000000160�14753064456�0027564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 8H6l6-6 6 6h-4v8h4l-6 6-6-6h4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-up-down.svg��������������������������0000664�0000000�0000000�00000000311�14753064456�0026644�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.45 17.55 12 23l-5.45-5.45 1.41-1.41L11 19.17V4.83L7.96 7.86 6.55 6.45 12 1l5.45 5.45-1.41 1.41L13 4.83v14.34l3.04-3.03z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-up-drop-circle-outline.svg�����������0000664�0000000�0000000�00000000343�14753064456�0031562�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 22a10 10 0 0 0 10-10A10 10 0 0 0 12 2 10 10 0 0 0 2 12a10 10 0 0 0 10 10m0-2a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8m5-6-5-5-5 5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-up-drop-circle.svg�������������������0000664�0000000�0000000�00000000247�14753064456�0030110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 22A10 10 0 0 1 2 12 10 10 0 0 1 12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10m5-8-5-5-5 5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-up-left-bold.svg���������������������0000664�0000000�0000000�00000000237�14753064456�0027554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.5 21C9.36 21 6 17.64 6 13.5V11H2l6-7 6 7h-4v2.5c0 1.93 1.57 3.5 3.5 3.5H21v4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-up-left.svg��������������������������0000664�0000000�0000000�00000000276�14753064456�0026641�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 18v2h-6.5A6.5 6.5 0 0 1 7 13.5V7.83l-3.09 3.09L2.5 9.5 8 4l5.5 5.5-1.41 1.41L9 7.83v5.67C9 16 11 18 13.5 18z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-up-right-bold.svg��������������������0000664�0000000�0000000�00000000240�14753064456�0027731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 21v-4h7.5c1.93 0 3.5-1.57 3.5-3.5V11h-4l6-7 6 7h-4v2.5c0 4.14-3.36 7.5-7.5 7.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-up-right.svg�������������������������0000664�0000000�0000000�00000000300�14753064456�0027010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.5 9.5-1.41 1.42L17 7.83v5.67a6.5 6.5 0 0 1-6.5 6.5H4v-2h6.5c2.5 0 4.5-2 4.5-4.5V7.83l-3.09 3.08L10.5 9.5 16 4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-up-thick.svg�������������������������0000664�0000000�0000000�00000000220�14753064456�0026776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 20h-4v-9l-3.5 3.5-2.42-2.42L12 4.16l7.92 7.92-2.42 2.42L14 11z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-up-thin-circle-outline.svg�����������0000664�0000000�0000000�00000000420�14753064456�0031554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3.97c-4.41 0-8.03 3.62-8.03 8.03s3.62 8.03 8.03 8.03 8.03-3.62 8.03-8.03S16.41 3.97 12 3.97M12 2c5.54 0 10 4.46 10 10s-4.46 10-10 10S2 17.54 2 12 6.46 2 12 2m1 8.46h3L12 6.5l-4 3.96h3v7.04h2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-up-thin.svg��������������������������0000664�0000000�0000000�00000000167�14753064456�0026650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.03 9.97h4v8.92l2.01.03V9.97h3.99l-5-5Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-up.svg�������������������������������0000664�0000000�0000000�00000000216�14753064456�0025703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 20h-2V8l-5.5 5.5-1.42-1.42L12 4.16l7.92 7.92-1.42 1.42L13 8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/arrow-vertical-lock.svg��������������������0000664�0000000�0000000�00000000457�14753064456�0030025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.8 11V9.5C18.8 8.1 17.4 7 16 7s-2.8 1.1-2.8 2.5V11c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3m-1.3 0h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3zM9 6h3L8 2 4 6h3v12H4l4 4 4-4H9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/artboard.svg�������������������������������0000664�0000000�0000000�00000000311�14753064456�0025721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 9v6H7V9zm2-6h-2v3h2zM7 3H5v3h2zm16 4h-3v2h3zm-4 0H5v10h14zM4 7H1v2h3zm19 8h-3v2h3zM4 15H1v2h3zm15 3h-2v3h2zM7 18H5v3h2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/artstation.svg�����������������������������0000664�0000000�0000000�00000000436�14753064456�0026323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m1.77 16.88 1.73 2.98c.34.68 1.04 1.14 1.83 1.14h11.46l-2.36-4.12zm20.46.02c0-.4-.12-.79-.33-1.12L15.17 4.1A2.04 2.04 0 0 0 13.35 3H9.8l10.38 18 1.64-2.86c.31-.54.41-.78.41-1.24m-9.5-2.96L8.1 5.92l-4.65 8.02z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/aspect-ratio.svg���������������������������0000664�0000000�0000000�00000000304�14753064456�0026520�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 12h-2v3h-3v2h5zM7 9h3V7H5v5h2zm14-6H3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m0 16H3V5h18z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/assistant.svg������������������������������0000664�0000000�0000000�00000000337�14753064456�0026144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h4l3 3 3-3h4a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2m-5.12 10.88L12 17l-1.88-4.12L6 11l4.12-1.88L12 5l1.88 4.12L18 11"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/asterisk-circle-outline.svg����������������0000664�0000000�0000000�00000000477�14753064456�0030701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m0 18c-4.39 0-8-3.61-8-8s3.61-8 8-8 8 3.61 8 8-3.61 8-8 8m1-9.73 2.83-1.64 1 1.74L14 12l2.83 1.63-1 1.74L13 13.73V17h-2v-3.27l-2.83 1.64-1-1.74L10 12l-2.83-1.63 1-1.74L11 10.27V7h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/asterisk.svg�������������������������������0000664�0000000�0000000�00000000326�14753064456�0025756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 13h-6.6l4.7 4.7-1.4 1.4-4.7-4.7V21h-2v-6.7L6.3 19l-1.4-1.4L9.4 13H3v-2h6.6L4.9 6.3l1.4-1.4L11 9.6V3h2v6.4l4.6-4.6L19 6.3 14.3 11H21z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/at.svg�������������������������������������0000664�0000000�0000000�00000001403�14753064456�0024532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 15c.81 0 1.5-.3 2.11-.89.59-.61.89-1.3.89-2.11s-.3-1.5-.89-2.11C13.5 9.3 12.81 9 12 9s-1.5.3-2.11.89C9.3 10.5 9 11.19 9 12s.3 1.5.89 2.11c.61.59 1.3.89 2.11.89m0-13c2.75 0 5.1 1 7.05 2.95S22 9.25 22 12v1.45c0 1-.35 1.85-1 2.55-.7.67-1.5 1-2.5 1-1.2 0-2.19-.5-2.94-1.5-1 1-2.18 1.5-3.56 1.5-1.37 0-2.55-.5-3.54-1.46C7.5 14.55 7 13.38 7 12c0-1.37.5-2.55 1.46-3.54C9.45 7.5 10.63 7 12 7c1.38 0 2.55.5 3.54 1.46C16.5 9.45 17 10.63 17 12v1.45c0 .41.16.77.46 1.08s.65.47 1.04.47c.42 0 .77-.16 1.07-.47s.43-.67.43-1.08V12c0-2.19-.77-4.07-2.35-5.65S14.19 4 12 4s-4.07.77-5.65 2.35S4 9.81 4 12s.77 4.07 2.35 5.65S9.81 20 12 20h5v2h-5c-2.75 0-5.1-1-7.05-2.95S2 14.75 2 12s1-5.1 2.95-7.05S9.25 2 12 2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/atlassian.svg������������������������������0000664�0000000�0000000�00000000636�14753064456�0026114�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.93 11.24a.58.58 0 0 0-.8-.11c-.07.06-.13.13-.17.21l-4.9 9.81c-.15.29-.03.64.26.79.08.06.18.06.27.06h6.82c.22 0 .43-.12.53-.32 1.47-3.05.56-7.68-2.01-10.44m3.6-8.93a12.99 12.99 0 0 0-.76 12.78l3.29 6.59c.11.2.31.32.53.32h6.82a.59.59 0 0 0 .59-.59c0-.09 0-.18-.06-.26 0 0-9.18-18.38-9.44-18.84a.52.52 0 0 0-.72-.25c-.11.05-.2.14-.25.25"/></svg>��������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/atm.svg������������������������������������0000664�0000000�0000000�00000000376�14753064456�0024717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 9v1.5h2.25V15h1.5v-4.5H14V9zM6 9H3a1 1 0 0 0-1 1v5h1.5v-1.5h2V15H7v-5a1 1 0 0 0-1-1m-.5 3h-2v-1.5h2zM21 9h-4.5a1 1 0 0 0-1 1v5H17v-4.5h1V14h1.5v-3.5h1V15H22v-5a1 1 0 0 0-1-1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/atom-variant.svg���������������������������0000664�0000000�0000000�00000001257�14753064456�0026537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.36 2.64c1.64 0 3 1.36 3 3 0 1.65-1.36 3-3 3-1.65 0-3-1.35-3-3 0-.3.05-.58.14-.84-1.07-.51-2.25-.8-3.5-.8a8 8 0 0 0-8 8l.04.84-1.99.21L2 12A10 10 0 0 1 12 2c1.69 0 3.28.42 4.67 1.16.49-.33 1.07-.52 1.69-.52m0 2a1 1 0 0 0-1 1 1 1 0 0 0 1 1c.56 0 1-.45 1-1 0-.56-.44-1-1-1M5.64 15.36c1.65 0 3 1.35 3 3 0 .3-.05.58-.14.84 1.07.51 2.25.8 3.5.8a8 8 0 0 0 8-8l-.04-.84 1.99-.21L22 12a10 10 0 0 1-10 10c-1.69 0-3.28-.42-4.67-1.16-.49.33-1.07.52-1.69.52-1.64 0-3-1.36-3-3 0-1.65 1.36-3 3-3m0 2c-.56 0-1 .45-1 1 0 .56.44 1 1 1a1 1 0 0 0 1-1 1 1 0 0 0-1-1M12 8a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/atom.svg�����������������������������������0000664�0000000�0000000�00000002006�14753064456�0025066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 11a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1M4.22 4.22C5.65 2.79 8.75 3.43 12 5.56c3.25-2.13 6.35-2.77 7.78-1.34s.79 4.53-1.34 7.78c2.13 3.25 2.77 6.35 1.34 7.78s-4.53.79-7.78-1.34c-3.25 2.13-6.35 2.77-7.78 1.34S3.43 15.25 5.56 12C3.43 8.75 2.79 5.65 4.22 4.22m11.32 4.24c.61.62 1.17 1.25 1.69 1.88 1.38-2.13 1.88-3.96 1.13-4.7-.74-.75-2.57-.25-4.7 1.13.63.52 1.26 1.08 1.88 1.69m-7.08 7.08c-.61-.62-1.17-1.25-1.69-1.88-1.38 2.13-1.88 3.96-1.13 4.7.74.75 2.57.25 4.7-1.13-.63-.52-1.26-1.08-1.88-1.69m-2.82-9.9c-.75.74-.25 2.57 1.13 4.7.52-.63 1.08-1.26 1.69-1.88.62-.61 1.25-1.17 1.88-1.69-2.13-1.38-3.96-1.88-4.7-1.13m4.24 8.48c.7.7 1.42 1.34 2.12 1.91.7-.57 1.42-1.21 2.12-1.91s1.34-1.42 1.91-2.12c-.57-.7-1.21-1.42-1.91-2.12S12.7 8.54 12 7.97c-.7.57-1.42 1.21-2.12 1.91S8.54 11.3 7.97 12c.57.7 1.21 1.42 1.91 2.12m8.48 4.24c.75-.74.25-2.57-1.13-4.7-.52.63-1.08 1.26-1.69 1.88-.62.61-1.25 1.17-1.88 1.69 2.13 1.38 3.96 1.88 4.7 1.13"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/attachment-check.svg�����������������������0000664�0000000�0000000�00000000667�14753064456�0027344�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.61 13.5c-.8.35-1.5.86-2.07 1.5H9.5a2.5 2.5 0 0 1 0-5H17v1.5H9.5c-.55 0-1 .45-1 1s.45 1 1 1zm-13.11-1c0-2.21 1.79-4 4-4H18a2.495 2.495 0 0 1 1.45 4.53c.6.04 1.18.17 1.72.38.52-.67.83-1.5.83-2.41 0-2.21-1.79-4-4-4H7.5C4.46 7 2 9.46 2 12.5S4.46 18 7.5 18h5.59c.09-.53.25-1.03.46-1.5H7.5c-2.21 0-4-1.79-4-4m17.84 3.34-3.59 3.59-1.59-1.59L15 19l2.75 3 4.75-4.75z"/></svg>�������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/attachment-lock.svg������������������������0000664�0000000�0000000�00000001066�14753064456�0027211�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 13c-1.4 0-2.8 1.1-2.8 2.5V17c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3v-1.5c0-1.4-1.4-2.5-2.8-2.5m0 1.2c.8 0 1.5.5 1.5 1.3V17h-3v-1.5c0-.8.7-1.3 1.5-1.3M7.5 5C4.5 5 2 7.5 2 10.5S4.5 16 7.5 16h5.7v-.5c0-.3 0-.7.1-1H7.5c-2.2 0-4-1.8-4-4s1.8-4 4-4H18c1.4 0 2.5 1.1 2.5 2.5 0 .9-.5 1.7-1.3 2.2.6.1 1.1.4 1.6.7.8-.8 1.2-1.8 1.2-2.9 0-2.2-1.8-4-4-4zm2 3C8.1 8 7 9.1 7 10.5S8.1 13 9.5 13H14q.75-1.05 1.8-1.5H9.5c-.6 0-1-.4-1-1s.4-1 1-1H17V8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/attachment-minus.svg�����������������������0000664�0000000�0000000�00000000616�14753064456�0027414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.61 13.5c-.8.35-1.5.86-2.07 1.5H9.5a2.5 2.5 0 0 1 0-5H17v1.5H9.5c-.55 0-1 .45-1 1s.45 1 1 1zm-13.11-1c0-2.21 1.79-4 4-4H18a2.495 2.495 0 0 1 1.45 4.53c.6.04 1.18.17 1.72.38.52-.67.83-1.5.83-2.41 0-2.21-1.79-4-4-4H7.5C4.46 7 2 9.46 2 12.5S4.46 18 7.5 18h5.59c.09-.53.25-1.03.46-1.5H7.5c-2.21 0-4-1.79-4-4M15 18v2h8v-2z"/></svg>������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/attachment-off.svg�������������������������0000664�0000000�0000000�00000000727�14753064456�0027036�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 10v1.5h-2.3L13.2 10zm1-1.5a2.5 2.5 0 0 1 0 5h-1.3l1.48 1.5c2.13-.11 3.82-1.85 3.82-4 0-2.21-1.79-4-4-4h-7.8l1.5 1.5zm4.11 12.96-1.27 1.27L16.11 18H7.5C4.46 18 2 15.54 2 12.5c0-2.33 1.45-4.31 3.5-5.12L1.11 3l1.28-1.27zM8.5 12.5c0 .55.45 1 1 1h2.11l-2-2H9.5c-.55 0-1 .45-1 1m6.11 4-1.5-1.5H9.5A2.5 2.5 0 0 1 7 12.5c0-1 .57-1.81 1.38-2.23L6.69 8.58A4.01 4.01 0 0 0 3.5 12.5c0 2.21 1.79 4 4 4z"/></svg>�����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/attachment-plus.svg������������������������0000664�0000000�0000000�00000000623�14753064456�0027242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 16.5h6.05c-.21.47-.37.97-.46 1.5H7.5C4.46 18 2 15.54 2 12.5S4.46 7 7.5 7H18c2.21 0 4 1.79 4 4 0 .91-.31 1.74-.83 2.41-.54-.21-1.12-.34-1.72-.38A2.495 2.495 0 0 0 18 8.5H7.5c-2.21 0-4 1.79-4 4s1.79 4 4 4m2-3c-.55 0-1-.45-1-1s.45-1 1-1H17V10H9.5a2.5 2.5 0 0 0 0 5h5.04a6 6 0 0 1 2.07-1.5zM20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/></svg>�������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/attachment-remove.svg����������������������0000664�0000000�0000000�00000000770�14753064456�0027557�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.61 13.5c-.8.35-1.5.86-2.07 1.5H9.5a2.5 2.5 0 0 1 0-5H17v1.5H9.5c-.55 0-1 .45-1 1s.45 1 1 1zm-13.11-1c0-2.21 1.79-4 4-4H18a2.495 2.495 0 0 1 1.45 4.53c.6.04 1.18.17 1.72.38.52-.67.83-1.5.83-2.41 0-2.21-1.79-4-4-4H7.5C4.46 7 2 9.46 2 12.5S4.46 18 7.5 18h5.59c.09-.53.25-1.03.46-1.5H7.5c-2.21 0-4-1.79-4-4m19.04 4.38-1.42-1.41L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19z"/></svg>��������mkdocs-material-9.6.4/material/templates/.icons/material/attachment.svg�����������������������������0000664�0000000�0000000�00000000507�14753064456�0026262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 18A5.5 5.5 0 0 1 2 12.5 5.5 5.5 0 0 1 7.5 7H18a4 4 0 0 1 4 4 4 4 0 0 1-4 4H9.5A2.5 2.5 0 0 1 7 12.5 2.5 2.5 0 0 1 9.5 10H17v1.5H9.5a1 1 0 0 0-1 1 1 1 0 0 0 1 1H18a2.5 2.5 0 0 0 2.5-2.5A2.5 2.5 0 0 0 18 8.5H7.5a4 4 0 0 0-4 4 4 4 0 0 0 4 4H17V18z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/atv.svg������������������������������������0000664�0000000�0000000�00000000557�14753064456�0024731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11c-.2 0-.4 0-.5.1L17.4 9H20V6l-3.7 1.9L13.4 5H9v2h3.6l2 2H11l-4 2-2-2H0v2h4c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4l2 2h3l3.5-6.1 1 1c-.9.7-1.5 1.9-1.5 3.1 0 2.2 1.8 4 4 4s4-1.8 4-4-1.8-4-4-4M4 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m16 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/audio-input-rca.svg������������������������0000664�0000000�0000000�00000000451�14753064456�0027131�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 6v6H5V6h2V2c0-.55.45-1 1-1s1 .45 1 1v4zm-6 8v2c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82v-2zm12-8V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v6h6V6zm-4 8v2c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/audio-input-stereo-minijack.svg������������0000664�0000000�0000000�00000000271�14753064456�0031450�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 4V3c0-.55.45-1 1-1s1 .45 1 1v1zm2 5V5h-2v4H9v6c0 1.3.84 2.4 2 2.82V22h2v-4.18c1.16-.42 2-1.52 2-2.82V9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/audio-input-xlr.svg������������������������0000664�0000000�0000000�00000000635�14753064456�0027175�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m1.5 14.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5.67 1.5 1.5 1.5 1.5-.67 1.5-1.5M9 12c0-.83-.67-1.5-1.5-1.5S6 11.17 6 12s.67 1.5 1.5 1.5S9 12.83 9 12m9 0c0-.83-.67-1.5-1.5-1.5S15 11.17 15 12s.67 1.5 1.5 1.5S18 12.83 18 12"/></svg>���������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/audio-video-off.svg������������������������0000664�0000000�0000000�00000000562�14753064456�0027110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l4 4H4c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h1v1c0 .6.4 1 1 1h2c.6 0 1-.4 1-1v-1h6v1c0 .6.4 1 1 1h1.1l3.7 3.7zM6 15H4v-1h2zm-2-3v-2h4.1l2 2zm6 3H8v-1h2zm2 0v-1h.1l1 1zm2-5v.8l6.2 6.2c1-.1 1.8-.9 1.8-2V9c0-1.1-.9-2-2-2h-9.8l3 3zm4-1c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/audio-video.svg����������������������������0000664�0000000�0000000�00000000513�14753064456�0026334�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 7H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h1v1c0 .6.4 1 1 1h2c.6 0 1-.4 1-1v-1h6v1c0 .6.4 1 1 1h2c.6 0 1-.4 1-1v-1h1a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2m-6 5H4v-2h10zm4 1a2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2M6 15H4v-1h2zm4 0H8v-1h2zm4 0h-2v-1h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/augmented-reality.svg����������������������0000664�0000000�0000000�00000000472�14753064456�0027553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zm2 6h3c.6 0 1 .5 1 1v5H9.5v-1.5h-2V15H6v-5c0-.5.4-1 1-1m6 0h3.5c.85 0 1.5.65 1.5 1.5v1c0 .6-.4 1.15-.9 1.4L18 15h-1.5l-.85-2H14.5v2H13zm-5.5 1.5V12h2v-1.5zm7 0v1h2v-1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/aurora.svg���������������������������������0000664�0000000�0000000�00000000672�14753064456�0025426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3c.55 0 1 .45 1 1v9h2V5c0-.55.45-1 1-1s1 .45 1 1v8h2V6c0-.55.45-1 1-1s1 .45 1 1v7h1.5c.17 0 .34 0 .5.05V7c0-.55.45-1 1-1s1 .45 1 1v8.5a2.5 2.5 0 0 1-2.5 2.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5H17V8c0-.55.45-1 1-1s1 .45 1 1v11h2V9c0-.55.45-1 1-1s1 .45 1 1v11c0 .55-.45 1-1 1H11.5a2.5 2.5 0 0 1 0-5h1c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H2c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/auto-download.svg��������������������������0000664�0000000�0000000�00000000303�14753064456�0026701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 17v2H11v-2zM19 4.5v5h3L16.5 15 11 9.5h3v-5zM10.7 15H8.8l-.7-2H4.9l-.7 2H2.3l3.2-9h2zm-3.05-3.35L6.5 8l-1.15 3.65z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/auto-fix.svg�������������������������������0000664�0000000�0000000�00000000660�14753064456�0025666�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 5.6 5 7l1.4-2.5L5 2l2.5 1.4L10 2 8.6 4.5 10 7zm12 9.8L22 14l-1.4 2.5L22 19l-2.5-1.4L17 19l1.4-2.5L17 14zM22 2l-1.4 2.5L22 7l-2.5-1.4L17 7l1.4-2.5L17 2l2.5 1.4zm-8.66 10.78 2.44-2.44-2.12-2.12-2.44 2.44zm1.03-5.49 2.34 2.34c.39.37.39 1.02 0 1.41L5.04 22.71c-.39.39-1.04.39-1.41 0l-2.34-2.34c-.39-.37-.39-1.02 0-1.41L12.96 7.29c.39-.39 1.04-.39 1.41 0"/></svg>��������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/auto-mode.svg������������������������������0000664�0000000�0000000�00000001004�14753064456�0026015�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.8 5.67A9.8 9.8 0 0 1 22 11h-2.06c-.2-1.43-.78-2.78-1.68-3.9zM13 2.05c1.96.19 3.81.95 5.33 2.21L16.9 5.69A8 8 0 0 0 13 4.05zm-2 .01c-1.96.2-3.81.97-5.33 2.21L7.1 5.69A8 8 0 0 1 11 4.06zM4.26 5.67l1.37 1.39v.04A8 8 0 0 0 4 11H2c.21-1.96 1-3.82 2.26-5.33M2 14v5l1.6-1.6C5.38 20.17 8.47 22 12 22c4.82 0 8.87-3.45 9.8-8h-2.05c-.89 3.45-4.03 6-7.75 6-2.95 0-5.61-1.61-7-4l2-2zm10 3 1.56-3.42L17 12l-3.44-1.56L12 7l-1.57 3.44L7 12l3.43 1.58z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/auto-upload.svg����������������������������0000664�0000000�0000000�00000000276�14753064456�0026367�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.35 12.65 6.5 9l1.15 3.65M5.5 7l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L7.5 7M11 20h11v-2H11m3-2h5v-5h3l-5.5-5.5L11 11h3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/autorenew-off.svg��������������������������0000664�0000000�0000000�00000000752�14753064456�0026715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 12c0-1-.26-1.96-.7-2.8l1.46-1.46A7.93 7.93 0 0 1 20 12c0 1.39-.36 2.68-1 3.82l-1.5-1.5c.32-.72.5-1.49.5-2.32M2.39 1.73 1.11 3 5.5 7.37C4.55 8.68 4 10.27 4 12c0 1.57.46 3.03 1.24 4.26L6.7 14.8A5.9 5.9 0 0 1 6 12c0-1.17.34-2.26.92-3.19l8.27 8.27c-.93.58-2.02.92-3.19.92v-3l-4 4 4 4v-3c1.73 0 3.32-.55 4.63-1.5l4.21 4.23 1.27-1.27zM12 6v2.8l.1.1L16 5l-4-4v3c-1.38 0-2.68.36-3.82 1l1.5 1.5c.72-.32 1.5-.5 2.32-.5"/></svg>����������������������mkdocs-material-9.6.4/material/templates/.icons/material/autorenew.svg������������������������������0000664�0000000�0000000�00000000433�14753064456�0026141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6v3l4-4-4-4v3a8 8 0 0 0-8 8c0 1.57.46 3.03 1.24 4.26L6.7 14.8A5.9 5.9 0 0 1 6 12a6 6 0 0 1 6-6m6.76 1.74L17.3 9.2c.44.84.7 1.8.7 2.8a6 6 0 0 1-6 6v-3l-4 4 4 4v-3a8 8 0 0 0 8-8c0-1.57-.46-3.03-1.24-4.26"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/av-timer.svg�������������������������������0000664�0000000�0000000�00000000672�14753064456�0025661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 17a1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1m0-14v4h2V5.08c3.39.49 6 3.39 6 6.92a7 7 0 0 1-7 7 7 7 0 0 1-7-7c0-1.68.59-3.22 1.58-4.42L12 13l1.41-1.41-6.8-6.8v.02C4.42 6.45 3 9.05 3 12a9 9 0 0 0 9 9 9 9 0 0 0 9-9 9 9 0 0 0-9-9m6 9a1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1M6 12a1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/awning-outline.svg�������������������������0000664�0000000�0000000�00000001546�14753064456�0027076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.06 7c-.43 0-.84.14-1.22.42s-.6.64-.7 1.08l-1.03 4.41c-.25 1.09-.05 2.01.58 2.82.12.12.24.24.35.34.59.57 1.24.93 2.18.93s1.69-.41 2.25-.95c.63.62 1.39.95 2.33.95.84 0 1.64-.37 2.2-.93.68.63 1.45.93 2.3.93.87 0 1.61-.33 2.24-.95.57.57 1.32.95 2.27.95s1.62-.35 2.19-.94c.09-.09.18-.19.28-.29.66-.82.86-1.77.61-2.86L20.86 8.5c-.13-.44-.36-.8-.73-1.08A1.88 1.88 0 0 0 18.94 7zm13.83 1.97 1.08 4.41c.09.43 0 .82-.28 1.17-.25.31-.56.45-.94.45-.31 0-.58-.1-.8-.34-.22-.23-.34-.5-.37-.82L16.97 9zM5.06 9h1.97l-.61 4.84C6.3 14.63 5.91 15 5.25 15c-.41 0-.72-.14-.94-.45-.28-.35-.37-.74-.28-1.17zm3.99 0H11v4.7c0 .35-.11.65-.36.92-.25.26-.56.38-.94.38-.34 0-.63-.12-.86-.41s-.34-.59-.34-.93v-.16zM13 9h1.95l.55 4.5c.08.42 0 .77-.29 1.07-.26.3-.6.43-1.01.43-.31 0-.59-.12-.84-.38a1.3 1.3 0 0 1-.36-.92z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/awning.svg���������������������������������0000664�0000000�0000000�00000000704�14753064456�0025414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.06 7c-.43 0-.84.14-1.22.42s-.6.64-.7 1.08l-1.03 4.41c-.25 1.09-.05 2.01.58 2.82.12.12.24.24.35.34.59.57 1.24.93 2.18.93s1.69-.41 2.25-.95c.63.62 1.39.95 2.33.95.84 0 1.64-.37 2.2-.93.68.63 1.45.93 2.3.93.87 0 1.61-.33 2.24-.95.57.57 1.32.95 2.27.95s1.62-.35 2.19-.94c.09-.09.18-.19.28-.29.66-.82.86-1.77.61-2.86L20.86 8.5c-.13-.44-.36-.8-.73-1.08A1.88 1.88 0 0 0 18.94 7z"/></svg>������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/aws.svg������������������������������������0000664�0000000�0000000�00000004625�14753064456�0024731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.64 10.38c0 .25.02.45.07.62.05.12.12.28.21.46.04.04.05.1.05.15 0 .07-.04.13-.13.2l-.42.28c-.06.04-.12.06-.17.06-.07 0-.13-.04-.2-.1-.09-.1-.17-.2-.24-.31-.06-.11-.13-.24-.2-.39-.52.61-1.17.92-1.96.92-.56 0-1-.16-1.33-.48-.32-.32-.49-.75-.49-1.29 0-.55.2-1 .6-1.36.41-.34.95-.52 1.63-.52.23 0 .44.02.71.06.23.03.5.08.76.14v-.48c0-.51-.1-.84-.31-1.07-.22-.21-.57-.3-1.08-.3-.24 0-.48.03-.72.08-.25.06-.49.13-.72.23-.11.04-.2.07-.23.08-.05.02-.08.02-.11.02-.09 0-.14-.06-.14-.2v-.33c0-.1.01-.18.05-.23q.045-.075.18-.12c.24-.14.51-.24.84-.32a4 4 0 0 1 1.04-.13q1.185 0 1.74.54c.37.36.55.91.55 1.64v2.15zm-2.7 1.02c.22 0 .44-.04.68-.12s.45-.23.63-.43c.11-.13.19-.27.25-.43 0-.16.05-.35.05-.58v-.27c-.2-.07-.4-.07-.62-.12a7 7 0 0 0-.62-.04c-.45 0-.77.09-.99.27s-.32.43-.32.76c0 .32.07.56.24.71.16.17.39.25.7.25m5.34.71a.6.6 0 0 1-.28-.06c-.03-.05-.08-.14-.12-.26L8.32 6.65c-.04-.15-.06-.22-.06-.27 0-.11.05-.17.16-.17h.65c.13 0 .22.02.26.07.06.04.1.13.14.26l1.11 4.4 1.04-4.4c.03-.13.07-.22.13-.26.05-.04.14-.07.25-.07h.55c.12 0 .21.02.26.07.05.04.1.13.13.26L14 11l1.14-4.46c.04-.13.09-.22.13-.26.06-.04.14-.07.26-.07h.62c.11 0 .17.06.17.17 0 .03-.01.07-.02.12 0 0-.02.08-.04.15l-1.61 5.14c-.04.14-.08.21-.15.26-.04.04-.13.07-.24.07h-.57c-.13 0-.19-.02-.27-.07a.45.45 0 0 1-.12-.26L12.27 7.5l-1.03 4.28q-.045.195-.12.27a.5.5 0 0 1-.27.06zm8.55.18c-.33 0-.7-.04-1.03-.12s-.59-.17-.76-.26a.5.5 0 0 1-.21-.19.4.4 0 0 1-.04-.18v-.34c0-.14.05-.2.15-.2h.12c.04 0 .1.05.17.08.22.1.47.18.73.23.27.05.54.08.79.08.42 0 .75-.07.97-.22.23-.17.35-.36.35-.63 0-.19-.07-.34-.18-.47-.12-.12-.35-.24-.67-.34l-.97-.3c-.48-.16-.84-.38-1.06-.68a1.58 1.58 0 0 1-.33-.97c0-.28.06-.52.18-.73.12-.22.28-.4.46-.55.22-.15.44-.26.71-.34q.39-.12.84-.12.21 0 .45.03c.14.02.28.05.42.07.14.04.26.07.38.11s.2.08.28.12c.09.05.16.1.2.16s.06.13.06.22v.32q0 .21-.15.21c-.05 0-.14-.03-.26-.08-.37-.17-.8-.26-1.27-.26-.38 0-.66.06-.89.19-.2.12-.31.32-.31.59 0 .19.07.35.2.47.13.13.38.25.73.37l.95.3c.48.14.82.36 1.03.64q.3.405.3.93c0 .28-.06.54-.17.77-.12.22-.28.42-.5.58-.19.17-.44.29-.72.38s-.62.13-.95.13m1.25 3.24C17.89 17.14 14.71 18 12 18c-3.85 0-7.3-1.42-9.91-3.77-.21-.19-.02-.44.23-.29 2.82 1.63 6.29 2.62 9.89 2.62 2.43 0 5.1-.5 7.55-1.56.37-.15.68.26.32.53M21 14.5c-.29-.37-1.86-.18-2.57-.1-.21.03-.24-.16-.05-.3 1.25-.87 3.31-.6 3.54-.33.24.3-.06 2.36-1.23 3.34-.19.15-.36.07-.28-.11.27-.68.86-2.16.59-2.5"/></svg>�����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/axe-battle.svg�����������������������������0000664�0000000�0000000�00000000405�14753064456�0026155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.47 12.43c-2.12 2.12-5.65 1.41-5.65 1.41V9.6L3.41 22 2 20.59 14.4 8.18h-4.24s-.71-3.53 1.41-5.65c2.12-2.124 5.66-1.42 5.66-1.42v4.25l.71-.71 1.41 1.41-.71.71h4.25s.7 3.54-1.42 5.66"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/axe.svg������������������������������������0000664�0000000�0000000�00000000225�14753064456�0024704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 2 10 6c0 4-2 6-6 7l-3-5-4-4zM4.11 19.84l-1.99-1.51L9.19 9 11 10.81z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/axis-arrow-info.svg������������������������0000664�0000000�0000000�00000000371�14753064456�0027156�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 2 4 4h-3v7.85l6.53 3.76L21 15.03l1.5 5.47-5.5 1.46 1.53-2.61L12 15.58l-6.53 3.77L7 21.96 1.5 20.5 3 15.03l1.47 2.58L11 13.85V6H8zm9 3h-2V3h2zm1 5v2h-4v-2h1V8h-1V6h3v4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/axis-arrow-lock.svg������������������������0000664�0000000�0000000�00000000626�14753064456�0027156�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.8 5c.6 0 1.2.6 1.2 1.3v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3V6.2c0-.6.6-1.2 1.2-1.2V3.5C16.2 2.1 17.6 1 19 1s2.8 1.1 2.8 2.5zm-1.3 0V3.5c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V5zM1.74 19.25l1.47-5.46 1.47 2.55L9 13.85V6H6l4-4 4 4h-3v7.85l7.03 4.01 1.47-2.58 1.5 5.46-5.5 1.47 1.53-2.61L10 15.58l-4.32 2.49 1.53 2.64z"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/axis-arrow.svg�����������������������������0000664�0000000�0000000�00000000323�14753064456�0026222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 2 4 4h-3v7.85l6.53 3.76L21 15.03l1.5 5.47-5.5 1.46 1.53-2.61L12 15.58l-6.53 3.77L7 21.96 1.5 20.5 3 15.03l1.47 2.58L11 13.85V6H8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/axis-lock.svg������������������������������0000664�0000000�0000000�00000000516�14753064456�0026024�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.8 5c.6 0 1.2.6 1.2 1.3v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3V6.2c0-.6.6-1.2 1.2-1.2V3.5C16.2 2.1 17.6 1 19 1s2.8 1.1 2.8 2.5zm-1.3 0V3.5c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V5zM11 13.82l9.39 5.43-1 1.75L10 15.56 3.17 19.5l-1-1.73L9 13.82V3h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/axis-x-arrow-lock.svg����������������������0000664�0000000�0000000�00000000606�14753064456�0027421�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.8 5c.6 0 1.2.6 1.2 1.3v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3V6.2c0-.6.6-1.2 1.2-1.2V3.5C16.2 2.1 17.6 1 19 1s2.8 1.1 2.8 2.5zm-1.3 0V3.5c0-.8-.7-1.3-1.5-1.3-.69 0-1.31.38-1.46 1-.04.09-.04.19-.04.3V5zM1.74 19.25l1.47-5.46 1.46 2.53L9 13.82V3h2v10.82l9.39 5.43-1 1.75L10 15.56l-4.33 2.5 1.54 2.65z"/></svg>��������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/axis-x-arrow.svg���������������������������0000664�0000000�0000000�00000000252�14753064456�0026470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.5 20.5 3 15.03l1.46 2.57L11 13.82V3h2v10.82l9.39 5.43-1 1.75L12 15.56l-6.54 3.77L7 21.96z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/axis-x-rotate-clockwise.svg����������������0000664�0000000�0000000�00000000657�14753064456�0030626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10h2.91C14.57 6.55 13.4 4 12 4c-1.58 0-2.88 3.27-3 7.42l-2 1.15V12C7 6.5 9.24 2 12 2c2.42 0 4.44 3.44 4.9 8H20l-4 4zm0 12c-1.88 0-3.53-2.08-4.38-5.16l1.75-1.01C9.87 18.31 10.86 20 12 20c1.27 0 2.36-2.11 2.79-5.08l1.21 1.2.7-.7C16 19.26 14.16 22 12 22m-9.89-3.13-1-1.74-.05-.07 10.06-5.81 1.6 1.59-10.57 6.1zM21.89 5.13l1 1.74L19.2 9h-1.43l-.27-1.34z"/></svg>���������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/axis-x-rotate-counterclockwise.svg���������0000664�0000000�0000000�00000000665�14753064456�0032225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 14 4-4 4 4h-3.1c-.46 4.56-2.48 8-4.9 8-1.88 0-3.53-2.08-4.38-5.16l1.75-1.01C9.87 18.31 10.86 20 12 20c1.4 0 2.57-2.55 2.91-6zM1.11 17.13l12.78-7.38.07.79L10.5 14h.04l-8.43 4.87zm20.78-12 1 1.74-5.01 2.89c-.09-.73-.21-1.43-.38-2.1zM12 2c2.3 0 4.23 3.1 4.82 7.32L16 8.5l-1.13 1.13C14.5 6.37 13.35 4 12 4c-1.58 0-2.88 3.27-3 7.42l-2 1.15V12C7 6.5 9.24 2 12 2"/></svg>���������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/axis-x-y-arrow-lock.svg��������������������0000664�0000000�0000000�00000000613�14753064456�0027665�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.8 5c.6 0 1.2.6 1.2 1.3v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3V6.2c0-.6.6-1.2 1.2-1.2V3.5C16.2 2.1 17.6 1 19 1s2.8 1.1 2.8 2.5zm-1.3 0V3.5c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V5zM1.74 19.25l1.47-5.46 1.47 2.55L9 13.85V3h2v10.85l6.53 3.76L19 15.03l1.5 5.47-5.5 1.46 1.53-2.61L10 15.58l-4.32 2.49 1.53 2.64z"/></svg>���������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/axis-y-arrow-lock.svg����������������������0000664�0000000�0000000�00000000543�14753064456�0027422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11 13.82 7 4.06 1.5-2.6 1.5 5.46-5.5 1.47 1.5-2.6-7-4.05-6.83 3.94-1-1.73L9 13.82V3h2zM21.8 5c.6 0 1.2.6 1.2 1.3v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3V6.2c0-.6.6-1.2 1.2-1.2V3.5C16.2 2.1 17.6 1 19 1s2.8 1.1 2.8 2.5zm-1.3 0V3.5c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/axis-y-arrow.svg���������������������������0000664�0000000�0000000�00000000253�14753064456�0026472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.5 20.5 17 21.96l1.53-2.61L12 15.58 2.61 21l-1-1.73L11 13.85V3h2v10.85l6.53 3.76L21 15.03z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/axis-y-rotate-clockwise.svg����������������0000664�0000000�0000000�00000000665�14753064456�0030626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 10 4 4 4-4h-3.1c-.46-4.56-2.48-8-4.9-8-1.88 0-3.53 2.08-4.38 5.16l1.75 1.01C9.87 5.69 10.86 4 12 4c1.4 0 2.57 2.55 2.91 6zM1.11 6.87l12.78 7.38.07-.79L10.5 10h.04L2.11 5.13zm20.78 12 1-1.74-5.01-2.89c-.09.73-.21 1.43-.38 2.1zM12 22c2.3 0 4.23-3.1 4.82-7.32l-.82.82-1.13-1.13C14.5 17.63 13.35 20 12 20c-1.58 0-2.88-3.27-3-7.42l-2-1.15V12c0 5.5 2.24 10 5 10"/></svg>���������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/axis-y-rotate-counterclockwise.svg���������0000664�0000000�0000000�00000000652�14753064456�0032222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 14h2.91c-.34 3.45-1.51 6-2.91 6-1.58 0-2.88-3.27-3-7.42l-2-1.15V12c0 5.5 2.24 10 5 10 2.42 0 4.44-3.44 4.9-8H20l-4-4zm0-12c-1.88 0-3.53 2.08-4.38 5.16l1.75 1.01C9.87 5.69 10.86 4 12 4c1.27 0 2.36 2.11 2.79 5.08L16 7.88l.7.7C16 4.74 14.16 2 12 2M2.11 5.13l-1 1.74-.05.07 10.06 5.81 1.6-1.59-10.57-6.1zm19.78 13.74 1-1.74L19.2 15h-1.43l-.27 1.34z"/></svg>��������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/axis-z-arrow-lock.svg����������������������0000664�0000000�0000000�00000000526�14753064456�0027424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.8 5c.6 0 1.2.6 1.2 1.3v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3V6.2c0-.6.6-1.2 1.2-1.2V3.5C16.2 2.1 17.6 1 19 1s2.8 1.1 2.8 2.5zm-1.3 0V3.5c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V5zM10 2l4 4h-3v7.82l9.39 5.43-1 1.75L10 15.56 3.17 19.5l-1-1.73L9 13.82V6H6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/axis-z-arrow.svg���������������������������0000664�0000000�0000000�00000000227�14753064456�0026474�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 2 4 4h-3v7.82l9.39 5.43-1 1.75L12 15.56 2.61 21l-1-1.75L11 13.82V6H8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/axis-z-rotate-clockwise.svg����������������0000664�0000000�0000000�00000000513�14753064456�0030617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14 12-4 4 4 4v-3.1c4.56-.46 8-2.48 8-4.9s-3.44-4.44-8-4.9v1.99c3.45.34 6 1.51 6 2.91s-2.55 2.57-6 2.91zM4 12c0-1.4 2.55-2.57 6-2.91V7.1c-4.56.46-8 2.48-8 4.9 0 2.16 2.74 4 6.58 4.7l-.7-.7 1.2-1.21C6.11 14.36 4 13.27 4 12m9-10h-2v11l2-2zm0 20v-1l-2-2v3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/axis-z-rotate-counterclockwise.svg���������0000664�0000000�0000000�00000000512�14753064456�0032216�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10 12 4 4-4 4v-3.1c-4.56-.46-8-2.48-8-4.9s3.44-4.44 8-4.9v1.99C6.55 9.43 4 10.6 4 12s2.55 2.57 6 2.91zm10 0c0-1.4-2.55-2.57-6-2.91V7.1c4.56.46 8 2.48 8 4.9 0 2.16-2.74 4-6.58 4.7l.7-.7-1.2-1.21C17.89 14.36 20 13.27 20 12M11 2h2v11l-2-2zm0 20v-1l2-2v3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/axis.svg�����������������������������������0000664�0000000�0000000�00000000213�14753064456�0025070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.61 21-1-1.73L11 13.85V3h2v10.85l9.39 5.42-1 1.73L12 15.58z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/babel.svg����������������������������������0000664�0000000�0000000�00000005663�14753064456�0025207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.14 2c-1.34.12-3.1.59-5.27 1.43-.59.44-1.27.87-2.03 1.29v.13c.06 0 .12-.04.2-.08.09-.01.15.02.15.11l.13-.08.07-.01.01.07c.01.06-.47.43-1.4 1.1l.06.13H7l-.16-.05c0 .05-.06.07-.2.08l.01.07.16.18c-.06 0-.13-.01-.21-.05-.31.03-.6.26-.91.68l.08.12q.39-.36.45-.36l.02.19c-.04 0-.12.05-.2.08l.16.24c.3-.34.66-.63 1.04-.86.19.05.29.09.29.17l.14-.01c1.02-.76 2.04-1.3 3.04-1.64l.01.13c-.19.28-.32.44-.39.44.01.09.05.17.1.24.02.18-.43 1.32-1.36 3.45-2.12 4.94-3.88 8.59-5.3 10.97 0 .04.03.11.08.19.35-.09.57-.17.65-.25l.1-.01.01.13.13-.01.14-.08c0 .05.05.06.12.05l.03.13c0 .14-.07.34-.23.61-.15.16-.3.5-.46 1.02V22h.13c.57-.65 1.03-1.28 1.31-1.89 1.66-.49 2.93-.96 3.81-1.44.88-.07 1.56-.3 2.02-.67l-.01-.09-.33.09h-.08l-.01-.05c.65-.1 1.1-.25 1.32-.45 1.29-.96 2.24-1.65 2.89-2.06 2-1.47 2.94-2.89 2.83-4.23-.01-.14-.46-.71-1.32-1.65-.02-.18.29-.44.9-.79l1.73-1.53c.39-.5.62-1.3.7-2.41l-.03-.26c-.06-.78-.62-1.41-1.7-1.89-.62-.43-1.74-.65-3.36-.68m2.1.87c1.29.05 1.95.27 1.99.68l-.05.13zM16 3.96c.89-.01 1.35.22 1.4.72l.1-.01v-.33l.14-.01c.36.17.52.41.54.67.02.2-.08.42-.29.69-.09.01-.14-.05-.15-.19h-.14l-.04.41c-.56.87-1 1.32-1.26 1.35-.24.32-.39.49-.45.49-.18.22-.68.6-1.5 1.12-.27.03-1.28.41-3.01 1.17-.09-.04-.18-.04-.28-.04l-.01-.12c-.02-.26.09-.57.34-.96.11-.71.28-1.12.44-1.22l1.45-3.26c-.01-.2.29-.35.93-.44l.21-.04.02.19c.62-.1 1.01-.15 1.16-.15.14-.03.28-.04.4-.04m3 .33h.04c.12.01.24.21.37.62l.01.12c-.07.01-.2-.2-.39-.62zm-8.18 2.07h.06l.02.19c-.06.01-.15.1-.25.28l-.01-.13c.12-.15.18-.27.18-.34m-4.15.1.01.04c-.05 0-.12.06-.18.1l-.09.01-.02-.11zm3.57 1.26.02.28h-.07l-.03-.27zm-.17.47c-.02.22-.07.31-.18.34l-.07.01c.08-.15.12-.25.11-.33zm-.29.68.01.06-.12.21-.13.01-.01-.06c.13-.01.19-.09.18-.21zm-.28.63-.05.31h-.07l-.02-.31zm7.07.22.28.17c.01.11-.03.14-.12.15a.6.6 0 0 0-.29-.11l-.01-.2zm-5.57.74.03.12-.27.03-.01-.11zm4.5.45c.18.09.28.18.29.25l.01.06c-.19.02-.35-.08-.51-.29zm2.16.21c.15.06.22.13.23.19l.04.51c-.06.14-.12.21-.19.21zm-3.5.06c.7-.01 1.24.15 1.6.5l.03.26c-.29.91-.66 1.44-1.04 1.6L13 14.93c-1.3.86-2 1.28-2.1 1.29-2.07 1.14-3.36 1.73-3.86 1.78h-.08c.07-.24.99-2.13 2.77-5.67.77-.07 2.03-.44 3.71-1.1l.41-.04c.11 0 .21-.01.31-.01m-2.54.41.01.06-.28.02-.01-.06zm-4.36 4.22c-.09.45-.18.69-.26.69l-.03-.07c-.02-.23.08-.43.29-.62m5.92.28.01.12c.01.06-.19.22-.59.51-1.16.57-1.84.96-2.04 1.16-1.26.44-1.88.71-1.87.81-1.12.45-1.85.77-2.19.97-.09.01-.21-.03-.37-.1-.01-.22.08-.41.31-.56.19 0 .38 0 .56.09.21-.09.57-.22 1.08-.35l-.01-.13-.41.04c.05-.07.45-.25 1.2-.56l.21-.02.01.06c-.35.03-.55.14-.58.33 0 .07.03.12.12.11.25-.18.38-.27.38-.3.5-.09 1.9-.83 4.18-2.18m-6.32.6.01.06c.01.09-.04.14-.13.15v-.06q-.015-.12.12-.15m3.14.81c.07-.03.12 0 .12.08-.16.02-.47.15-.93.42h-.07l-.01-.13c.33-.03.62-.16.86-.37zm-3.05 1 .01.08c-.06 0-.12.03-.21.08l-.13.01c-.01-.06.03-.12.12-.14zm-1.6.8.15.06c-.06.4-.17.6-.37.64a.75.75 0 0 0-.43-.11l-.02-.19c-.01-.08.04-.13.14-.15.08-.01.13.05.14.18.24-.29.37-.43.39-.43"/></svg>�����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/baby-bottle-outline.svg��������������������0000664�0000000�0000000�00000001420�14753064456�0030006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.28 2.8-.5.5c-1.34-.75-2.94-.9-4.37-.43l-.08-.07c-.97-.98-2.56-.98-3.53 0s-.98 2.56 0 3.53l.07.08c-.47 1.43-.32 3.03.43 4.37l-.5.5a1.49 1.49 0 0 0 0 2.12l1.41 1.42c.59.58 1.53.58 2.12 0l.35-.36 7.08 7.07c.58.59 1.53.59 2.12 0l5.65-5.65c.59-.59.59-1.54 0-2.13l-7.07-7.07.36-.35c.58-.59.58-1.53 0-2.12L13.4 2.79a1.5 1.5 0 0 0-2.12.01M4.25 7.05c.08-.34.22-.67.41-.98l-.8-.8a.85.85 0 0 1-.23-.37c-.13-.34-.06-.76.23-1.04s.7-.36 1.04-.23c.14.04.26.12.37.23l.8.8c.31-.19.64-.33.98-.41.86-.25 1.78-.19 2.6.17L4.42 9.65c-.36-.82-.42-1.74-.17-2.6m16.22 7.77-5.65 5.65-7.07-7.07 5.65-5.65zm-6.71-9.55-8.49 8.49-1.41-1.42 8.48-8.48zm1.06 6.36-3.19 3.19-1.06-1.06 3.19-3.19zm2.12 2.13-3.18 3.18-1.07-1.06 3.19-3.19z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/baby-bottle.svg����������������������������0000664�0000000�0000000�00000000760�14753064456�0026337�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.28 2.8-.5.5a5.5 5.5 0 0 0-4.37-.43l-.08-.07A2.5 2.5 0 0 0 2.8 6.33l.07.08a5.5 5.5 0 0 0 .43 4.37l-.5.5a1.5 1.5 0 0 0 0 2.12l1.41 1.42a1.5 1.5 0 0 0 2.12 0l.35-.36 7.08 7.07a1.5 1.5 0 0 0 2.12 0l5.65-5.65a1.5 1.5 0 0 0 0-2.12l-7.07-7.08.36-.35a1.5 1.5 0 0 0 0-2.12L13.4 2.8a1.5 1.5 0 0 0-2.12 0m2.48 2.47-8.49 8.49-1.41-1.42 8.48-8.48m2.48 7.77-3.19 3.19-1.06-1.06 3.19-3.19m3.18 3.19-3.18 3.18-1.07-1.06 3.19-3.19Z"/></svg>����������������mkdocs-material-9.6.4/material/templates/.icons/material/baby-buggy-off.svg�������������������������0000664�0000000�0000000�00000001046�14753064456�0026731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 20c0 1.11-.89 2-2 2s-2-.89-2-2 .9-2 2-2 2 .9 2 2M5 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.89 2-2-.89-2-2-2m17.11 3.46L2.39 1.73 1.11 3l8.17 8.17-3.57 4.18C5.16 16 5.62 17 6.47 17H14c.32 0 .62-.08.89-.22l5.95 5.95zM16 12.8V6.38c.58-.68.93-1.38 1.61-1.38.77 0 1.39.66 1.39 1.5V7h2v-.5C21 4.56 19.5 3 17.61 3c-.66 0-1.17.2-1.61.5-.68.41-1.12 1.09-1.53 1.57l-2.85 3.35zm-3.68-7.7c.27-.32.59-.72.98-1.1a9.6 9.6 0 0 0-3.65-.91c-.26-.01-.53-.01-.79 0-.74.03-1.48.17-2.2.37l3.81 3.81z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/baby-buggy.svg�����������������������������0000664�0000000�0000000�00000001005�14753064456�0026154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 20a2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 2 2M7 20a2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 2 2M17.61 3c-.66 0-1.17.2-1.61.5-.68.41-1.12 1.09-1.53 1.57L5.71 15.35C5.16 16 5.62 17 6.47 17H14a2 2 0 0 0 2-2V6.38c.58-.68.93-1.38 1.61-1.38.77 0 1.39.66 1.39 1.5V7h2v-.5C21 4.56 19.5 3 17.61 3m-8.75.09c-1.82.07-3.63.67-5.18 1.81l4.76 4.76 3.88-4.56c.27-.32.59-.72.98-1.1a9.6 9.6 0 0 0-3.65-.91c-.26-.01-.53-.01-.79 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/baby-carriage-off.svg����������������������0000664�0000000�0000000�00000000651�14753064456�0027372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 10c0-4.4-3.6-8-8-8v8zm-7.8 1H22c0 1.8-.6 3.5-1.7 4.9.7.6 1.1 1.5 1.2 2.4zm6.6 11.7 1.3-1.3L2.4 1.7 1.1 3l8 8H7.4l-.9-2H3v2h2.2s1.9 4.1 2.1 4.4c-1 .5-1.7 1.5-1.8 2.6-.3 1.9 1.1 3.7 3 4s3.7-1.1 4-3h2.1c.1.4.2.8.4 1.2.9 1.7 3.1 2.3 4.7 1.4zm-10.3-4.2c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5S8.2 17 9 17s1.5.7 1.5 1.5m7.6 1.5c-.9 0-1.6-.7-1.6-1.5v-.1z"/></svg>���������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/baby-carriage.svg��������������������������0000664�0000000�0000000�00000000754�14753064456�0026626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2v8h8a8 8 0 0 0-8-8m6.32 13.89A7.95 7.95 0 0 0 21 11H6.44L5.5 9H2v2h2.22s1.89 4.07 2.12 4.42C5.24 16 4.5 17.17 4.5 18.5A3.5 3.5 0 0 0 8 22c1.76 0 3.22-1.3 3.46-3h2.08c.24 1.7 1.7 3 3.46 3a3.5 3.5 0 0 0 3.5-3.5c0-1.04-.46-1.97-1.18-2.61M8 20a1.5 1.5 0 0 1-1.5-1.5A1.5 1.5 0 0 1 8 17a1.5 1.5 0 0 1 1.5 1.5A1.5 1.5 0 0 1 8 20m9 0a1.5 1.5 0 0 1-1.5-1.5A1.5 1.5 0 0 1 17 17a1.5 1.5 0 0 1 1.5 1.5A1.5 1.5 0 0 1 17 20"/></svg>��������������������mkdocs-material-9.6.4/material/templates/.icons/material/baby-face-outline.svg����������������������0000664�0000000�0000000�00000001266�14753064456�0027423�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.5 9.25a1.25 1.25 0 0 1 1.25 1.25 1.25 1.25 0 0 1-1.25 1.25 1.25 1.25 0 0 1-1.25-1.25 1.25 1.25 0 0 1 1.25-1.25m-5 0a1.25 1.25 0 0 1 1.25 1.25 1.25 1.25 0 0 1-1.25 1.25 1.25 1.25 0 0 1-1.25-1.25A1.25 1.25 0 0 1 9.5 9.25M7.5 14h9c-.76 1.77-2.5 3-4.5 3s-3.74-1.23-4.5-3M1 12c0-1.81 1.2-3.34 2.86-3.83A8.97 8.97 0 0 1 12 3a9 9 0 0 1 8.15 5.17C21.8 8.66 23 10.19 23 12s-1.2 3.34-2.85 3.83A9 9 0 0 1 12 21c-3.6 0-6.71-2.11-8.14-5.17A3.99 3.99 0 0 1 1 12m11-7a7.02 7.02 0 0 0-6.72 5H5a2 2 0 0 0-2 2 2 2 0 0 0 2 2h.28c.86 2.88 3.54 5 6.72 5a7.02 7.02 0 0 0 6.72-5H19a2 2 0 0 0 2-2 2 2 0 0 0-2-2h-.28A7.02 7.02 0 0 0 12 5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/baby-face.svg������������������������������0000664�0000000�0000000�00000001312�14753064456�0025736�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 12c0-1.81 1.2-3.34 2.86-3.83A8.97 8.97 0 0 1 12 3a9 9 0 0 1 8.15 5.17C21.8 8.66 23 10.19 23 12s-1.2 3.34-2.85 3.83A9 9 0 0 1 12 21c-3.6 0-6.71-2.11-8.14-5.17A3.99 3.99 0 0 1 1 12m13.5-2.75a1.25 1.25 0 0 0-1.25 1.25 1.25 1.25 0 0 0 1.25 1.25 1.25 1.25 0 0 0 1.25-1.25 1.25 1.25 0 0 0-1.25-1.25m-5 0a1.25 1.25 0 0 0-1.25 1.25 1.25 1.25 0 0 0 1.25 1.25 1.25 1.25 0 0 0 1.25-1.25A1.25 1.25 0 0 0 9.5 9.25M7.5 14c.76 1.77 2.5 3 4.5 3s3.74-1.23 4.5-3zM3 12c0 .82.5 1.53 1.21 1.84C4.07 13.25 4 12.63 4 12s.07-1.25.21-1.84C3.5 10.47 3 11.18 3 12m18 0c0-.82-.5-1.53-1.21-1.84.14.59.21 1.21.21 1.84s-.07 1.25-.21 1.84C20.5 13.53 21 12.82 21 12"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/baby.svg�����������������������������������0000664�0000000�0000000�00000000606�14753064456�0025047�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 4A2.5 2.5 0 0 1 21 6.5 2.5 2.5 0 0 1 18.5 9 2.5 2.5 0 0 1 16 6.5 2.5 2.5 0 0 1 18.5 4m-14 16A1.5 1.5 0 0 1 3 18.5 1.5 1.5 0 0 1 4.5 17h7a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5zm11.59-1-1.4-4H11l-4.25-4.25S9 8.25 12.5 8.25c3 0 3.35 1 3.56 1.62L18.92 18c.28.78-.14 1.64-.92 1.92-.78.27-1.64-.14-1.91-.92"/></svg>��������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/backburger.svg�����������������������������0000664�0000000�0000000�00000000233�14753064456�0026235�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5 13 4 4-1.4 1.42L1.18 12 7.6 5.58 9 7l-4 4h16v2zm16-7v2H11V6zm0 10v2H11v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/backspace-outline.svg����������������������0000664�0000000�0000000�00000000460�14753064456�0027521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 15.59 17.59 17 14 13.41 10.41 17 9 15.59 12.59 12 9 8.41 10.41 7 14 10.59 17.59 7 19 8.41 15.41 12zM22 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7c-.69 0-1.23-.36-1.59-.89L0 12l5.41-8.12C5.77 3.35 6.31 3 7 3zm0 2H7l-4.72 7L7 19h15z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/backspace-reverse-outline.svg��������������0000664�0000000�0000000�00000000461�14753064456�0031173�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 15.59 6.41 17 10 13.41 13.59 17 15 15.59 11.41 12 15 8.41 13.59 7 10 10.59 6.41 7 5 8.41 8.59 12zM2 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h15c.69 0 1.23-.36 1.59-.89L24 12l-5.41-8.12C18.23 3.35 17.69 3 17 3zm0 2h15l4.72 7L17 19H2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/backspace-reverse.svg����������������������0000664�0000000�0000000�00000000404�14753064456�0027513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 21h15c.7 0 1.2-.4 1.6-.9L24 12l-5.4-8.1c-.4-.5-.9-.9-1.6-.9H2a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2M5 8.4 6.4 7l3.6 3.6L13.6 7 15 8.4 11.4 12l3.6 3.6-1.4 1.4-3.6-3.6L6.4 17 5 15.6 8.6 12"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/backspace.svg������������������������������0000664�0000000�0000000�00000000426�14753064456�0026046�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59.89h15a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-3 12.59L17.59 17 14 13.41 10.41 17 9 15.59 12.59 12 9 8.41 10.41 7 14 10.59 17.59 7 19 8.41 15.41 12"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/backup-restore.svg�������������������������0000664�0000000�0000000�00000000445�14753064456�0027061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3a9 9 0 0 0-9 9H0l4 4 4-4H5a7 7 0 0 1 7-7 7 7 0 0 1 7 7 7 7 0 0 1-7 7c-1.5 0-2.91-.5-4.06-1.3L6.5 19.14A9.1 9.1 0 0 0 12 21a9 9 0 0 0 9-9 9 9 0 0 0-9-9m2 9a2 2 0 0 0-2-2 2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bacteria-outline.svg�����������������������0000664�0000000�0000000�00000002043�14753064456�0027356�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 2H7v2.1c-.71.15-1.27.44-1.68.81L2.7 2.29 1.29 3.71l2.95 2.94C4 7.39 4 8 4 8H2v2h2.04c.06.63.17 1.36.36 2.15l-2.72.9.63 1.9 2.69-.9c.24.51.5 1.03.82 1.53l-2.38 1.59 1.11 1.66 2.52-1.68c.56.56 1.22 1.06 1.99 1.49l-.96 1.91 1.79.9 1-2-.16-.09c.95.32 2.03.54 3.27.61V22h2v-2.07c.76-.09 1.81-.29 2.77-.74l1.52 1.52 1.41-1.42-1.33-1.34c.38-.51.63-1.15.63-1.95 0-.5-.05-.92-.12-1.32l1.57-.78-.9-1.8-1.37.69c-.55-.83-1.27-1.29-1.89-1.51l.66-1.96-1.9-.64-.76 2.28c-1.33-.13-2.12-.64-2.59-1.19l1.75-.87-.9-1.8-1.55.79a4.4 4.4 0 0 0-.72-2.02l1.55-2.32-1.66-1.11-1.41 2.12c-.48-.23-1.06-.41-1.76-.5M15 18c-2.94 0-5.19-.82-6.69-2.44C5.68 12.72 6 8.2 6 8.17v-.14C6 7.1 6.39 6 8 6c2.63 0 2.97 1.43 3 2 0 2 1.6 5 6 5 .33 0 2 .15 2 3 0 1.89-3.97 2-4 2M8.5 8A1.5 1.5 0 0 0 7 9.5 1.5 1.5 0 0 0 8.5 11 1.5 1.5 0 0 0 10 9.5 1.5 1.5 0 0 0 8.5 8m2.5 4a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m4.5 2a1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bacteria.svg�������������������������������0000664�0000000�0000000�00000001624�14753064456�0025705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 16c0-.5-.05-.92-.12-1.32l1.57-.78-.9-1.8-1.37.69c-.55-.83-1.27-1.29-1.89-1.51l.66-1.96-1.9-.64-.76 2.28c-1.33-.13-2.12-.64-2.59-1.19l1.75-.87-.9-1.8-1.55.79a4.4 4.4 0 0 0-.72-2.02l1.55-2.32-1.66-1.11-1.41 2.12c-.48-.23-1.06-.41-1.76-.5V2H7v2.1c-.71.15-1.27.44-1.68.81L2.7 2.29 1.29 3.71l2.95 2.94C4 7.39 4 8 4 8H2v2h2.04c.06.63.17 1.36.36 2.15l-2.72.9.63 1.9 2.69-.9c.24.51.5 1.03.82 1.53l-2.38 1.59 1.11 1.66 2.52-1.68c.56.56 1.22 1.06 1.99 1.49l-.96 1.91 1.79.9 1-2-.16-.09c.95.32 2.03.54 3.27.61V22h2v-2.07c.76-.09 1.81-.29 2.77-.74l1.52 1.52 1.41-1.42-1.33-1.34c.38-.51.63-1.15.63-1.95M8.5 11A1.5 1.5 0 0 1 7 9.5 1.5 1.5 0 0 1 8.5 8 1.5 1.5 0 0 1 10 9.5 1.5 1.5 0 0 1 8.5 11m2.5 3a1 1 0 0 1-1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1 1 1 0 0 1-1 1m4.5 3a1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5 1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5"/></svg>������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/badge-account-alert-outline.svg������������0000664�0000000�0000000�00000000506�14753064456�0031407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 3h-3v2h3v16H5V5h3V3H5a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-5 4a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m4 8H6v-1c0-1.33 2.67-2 4-2s4 .67 4 2zm0 3H6v-1h8zm-4 2H6v-1h4zm1-15H9V1h2zm8 8V7h2v6zm0 4v-2h2v2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/badge-account-alert.svg��������������������0000664�0000000�0000000�00000000476�14753064456�0027740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 3h-3v3H8V3H5a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-5 5a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m4 8H6v-1c0-1.33 2.67-2 4-2s4 .67 4 2zM11 5H9V1h2zm3 14H6v-1h8zm-4 2H6v-1h4zm9-8V7h2v6zm0 4v-2h2v2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/badge-account-horizontal-outline.svg�������0000664�0000000�0000000�00000000472�14753064456�0032473�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 9a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m4 8H4v-1c0-1.33 2.67-2 4-2s4 .67 4 2zm8-9h-6v2h6zm0 4h-6v2h6zm0 4h-6v2h6zm2-12h-8v2h8v14H2V6h8V4H2a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m-9 2h-2V2h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/badge-account-horizontal.svg���������������0000664�0000000�0000000�00000000464�14753064456�0031017�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 4h-8v3h-4V4H2a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2M8 9a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m4 8H4v-1c0-1.33 2.67-2 4-2s4 .67 4 2zm8 1h-6v-2h6zm0-4h-6v-2h6zm0-4h-6V8h6zm-7-4h-2V2h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/badge-account-outline.svg������������������0000664�0000000�0000000�00000000460�14753064456�0030301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 3h-3v2h3v16H7V5h3V3H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-5 4a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m4 8H8v-1c0-1.33 2.67-2 4-2s4 .67 4 2zm0 3H8v-1h8zm-4 2H8v-1h4zm1-15h-2V1h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/badge-account.svg��������������������������0000664�0000000�0000000�00000000451�14753064456�0026624�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 3h-3v3h-4V3H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-5 5a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m4 8H8v-1c0-1.33 2.67-2 4-2s4 .67 4 2zM13 5h-2V1h2zm3 14H8v-1h8zm-4 2H8v-1h4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/badminton.svg������������������������������0000664�0000000�0000000�00000001723�14753064456�0026106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.3 2c-.97.03-1.72.84-1.69 1.8.01.24.06.47.16.7l.29.64c.04.13-.03.27-.17.31-.09.05-.19 0-.26-.08l-.42-.55c-.33-.42-.83-.68-1.36-.69-.97-.02-1.77.75-1.79 1.71-.01.42.13.82.39 1.16l.42.5h.01c.08.13.05.29-.06.37-.09.07-.21.07-.29 0L7 7.45c-.34-.26-.75-.4-1.16-.39-.96.02-1.73.82-1.71 1.79.01.53.27 1.03.69 1.36l.57.44c.11.1.11.26-.01.35a.23.23 0 0 1-.26.05h-.01l-.61-.28c-.23-.09-.46-.15-.7-.16-.96-.03-1.77.73-1.8 1.7 0 .72.4 1.38 1.06 1.66l11.39 5.07 4.59-4.59-5.07-11.39C13.69 2.39 13 1.97 12.3 2m.83 4.1c.42-.01.8.23.96.61l3.05 6.84-3.95-3.94-.93-2.11c-.3-.63.16-1.38.87-1.4M9.85 8.85c.27 0 .52.1.71.3l4.81 4.81c.4.38.41 1.01.03 1.41-.4.4-1.02.41-1.44 0l-4.81-4.81a.987.987 0 0 1-.02-1.41c.19-.2.45-.3.72-.3m-2.72 3.32c.13 0 .27.04.37.09l2.13.94 3.94 3.94-6.86-3.05c-1.02-.44-.68-1.95.42-1.92m13.15 3.87-4.24 4.24.85.85c.76.75 1.86 1.04 2.89.77a3.02 3.02 0 0 0 2.12-2.12c.27-1.03-.02-2.13-.77-2.89z"/></svg>���������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bag-carry-on-check.svg���������������������0000664�0000000�0000000�00000000465�14753064456�0027471�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.28 16.69 2.86-2.81.7.7-3.56 3.56L13.17 16l.71-.72zM8 21a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2zM9 7h5V4a2 2 0 0 1-2-2h4v8a6 6 0 0 1 6 6 6 6 0 0 1-6 6c-1.23 0-2.37-.37-3.32-1H9zm7 5a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bag-carry-on-off.svg�����������������������0000664�0000000�0000000�00000000500�14753064456�0027154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.1 4.9 3.9 4V19c0 .5.2 1 .6 1.4s.9.6 1.4.6V10.8l1 1V21h4.2c-.1-.4-.2-.8-.2-1 0-1.2.5-2 1.6-2.6l.8.8c-.9.3-1.3 1-1.3 1.9 0 .5.2 1 .6 1.4.3.3.8.5 1.3.5.9 0 1.6-.4 1.9-1.3l1.2 1.2 1.4-1.4-17-17zM12 2c0 .5.2 1 .6 1.4s.9.6 1.4.6v3H9.8l6.2 6.2V2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bag-carry-on.svg���������������������������0000664�0000000�0000000�00000000512�14753064456�0026407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.6 21.4c.4.4.8.6 1.4.6s1-.2 1.4-.6.6-.8.6-1.4-.2-1-.6-1.4-.9-.6-1.4-.6-1 .2-1.4.6-.6.8-.6 1.4.2 1 .6 1.4M6 19c0 .5.2 1 .6 1.4s.9.6 1.4.6V7c-.5 0-1 .2-1.4.6S6 8.5 6 9zM16 2h-4c0 .5.2 1 .6 1.4s.9.6 1.4.6v3H9v14h4.2c-.2-.5-.2-.8-.2-1q0-1.2.9-2.1T16 17z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bag-checked.svg����������������������������0000664�0000000�0000000�00000000542�14753064456�0026246�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 19H2v2h20zM4 15c0 .5.2 1 .6 1.4s.9.6 1.4.6V6c-.5 0-1 .2-1.4.6S4 7.5 4 8zm9.5-9h-3c0-.4.1-.8.4-1.1s.6-.4 1.1-.4c.4 0 .8.1 1.1.4.2.3.4.7.4 1.1M7 6v11h10V6h-2q0-1.2-.9-2.1C13.2 3 12.8 3 12 3q-1.2 0-2.1.9T9 6zm11 11c.5 0 1-.2 1.4-.6s.6-.9.6-1.4V8c0-.5-.2-1-.6-1.4S18.5 6 18 6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bag-personal-off-outline.svg���������������0000664�0000000�0000000�00000000563�14753064456�0030733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 19.35 2.38 1.73 1.11 3l3.66 3.66C4.27 7.34 4 8.16 4 9v11a2 2 0 0 0 2 2h12c.56 0 1.08-.24 1.46-.65l1.38 1.38 1.27-1.27zM6 9c0-.31.08-.62.22-.89L13.11 15H6zm12 11H6v-4h2v2h1v-2h5.11L18 19.89zM16 7a2 2 0 0 1 2 2v5.8l2 2V9a4 4 0 0 0-4-4V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v.8L10.2 7zm-6-3h4v1h-4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bag-personal-off.svg�����������������������0000664�0000000�0000000�00000000456�14753064456�0027257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 19.35 2.38 1.73 1.11 3l3.66 3.66C4.27 7.34 4 8.16 4 9v11a2 2 0 0 0 2 2h12c.56 0 1.08-.24 1.46-.65l1.38 1.38 1.27-1.27zM9 16v2H8v-2H6v-1h7.11l1 1zm11-7a4 4 0 0 0-4-4V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v.8l12 12zm-6-4h-4V4h4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bag-personal-outline.svg�������������������0000664�0000000�0000000�00000000421�14753064456�0030154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 5V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v1a4 4 0 0 0-4 4v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9a4 4 0 0 0-4-4m-6-1h4v1h-4zm2 5 2 2-2 2-2-2zm6 11H6v-4h2v2h1v-2h9zm0-5H6V9a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bag-personal-plus-outline.svg��������������0000664�0000000�0000000�00000000532�14753064456�0031140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 19h-3v3h-2v-3h-3v-2h3v-3h2v3h3zM8 2c-1.1 0-2 .9-2 2v1C3.8 5 2 6.8 2 9v11c0 1.1.9 2 2 2h9.5c-.5-.6-.9-1.3-1.2-2H4v-4h2v2h1v-2h5.3c.1-.3.3-.7.5-1H4V9c0-1.1.9-2 2-2h8c1.1 0 2 .9 2 2v3.3c.6-.2 1.3-.3 2-.3V9c0-2.2-1.8-4-4-4V4c0-1.1-.9-2-2-2zm0 2h4v1H8zm2 5-2 2 2 2 2-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bag-personal-plus.svg����������������������0000664�0000000�0000000�00000000462�14753064456�0027465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 19h-3v3h-2v-3h-3v-2h3v-3h2v3h3zM8 2c-1.1 0-2 .9-2 2v1C3.8 5 2 6.8 2 9v11c0 1.1.9 2 2 2h9.5c-1-1.1-1.5-2.5-1.5-4 0-.7.1-1.4.3-2H7v2H6v-2H4v-1h8.8c1-1.8 3-3 5.2-3V9c0-2.2-1.8-4-4-4V4c0-1.1-.9-2-2-2zm0 2h4v1H8zm2 5 2 2-2 2-2-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bag-personal-tag-outline.svg���������������0000664�0000000�0000000�00000000733�14753064456�0030733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 5V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v1C3.8 5 2 6.8 2 9v11c0 1.1.9 2 2 2h11.2l-2-2H4v-4h2v2h1v-2h5v-1H4V9c0-1.1.9-2 2-2h8c1.1 0 2 .9 2 2v3h2V9c0-2.2-1.8-4-4-4m-2 0H8V4h4zm-2 4-2 2 2 2 2-2zm11.8 8.8-3.6-3.6c-.2-.1-.4-.2-.6-.2h-2.8c-.4 0-.8.4-.8.8v2.8c0 .2.1.4.2.6l3.6 3.6c.1.1.3.2.6.2.2 0 .4-.1.6-.2l2.8-2.8c.1-.1.2-.3.2-.6 0-.2-.1-.4-.2-.6M15.4 16c-.3 0-.6-.3-.6-.6s.3-.6.6-.6.6.3.6.6-.3.6-.6.6"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bag-personal-tag.svg�����������������������0000664�0000000�0000000�00000000747�14753064456�0027263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 5V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v1C3.8 5 2 6.8 2 9v11c0 1.1.9 2 2 2h11.2l-2.4-2.4c-.6-.5-.9-1.3-.9-2V16H7v2H6v-2H4v-1h8v-.2c0-1.5 1.2-2.8 2.8-2.8H18V9c0-2.2-1.8-4-4-4m-4 8-2-2 2-2 2 2zm2-8H8V4h4zm9.8 12.8-3.6-3.6c-.2-.1-.4-.2-.6-.2h-2.8c-.4 0-.8.4-.8.8v2.8c0 .2.1.4.2.6l3.6 3.6c.1.1.3.2.6.2.2 0 .4-.1.6-.2l2.8-2.8c.1-.1.2-.3.2-.6 0-.2-.1-.4-.2-.6M15.4 16c-.3 0-.6-.3-.6-.6s.3-.6.6-.6.6.3.6.6-.3.6-.6.6"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bag-personal.svg���������������������������0000664�0000000�0000000�00000000352�14753064456�0026502�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 5V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v1a4 4 0 0 0-4 4v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9a4 4 0 0 0-4-4m-6-1h4v1h-4zm2 5 2 2-2 2-2-2zm6 7H9v2H8v-2H6v-1h12z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bag-suitcase-off-outline.svg���������������0000664�0000000�0000000�00000000752�14753064456�0030730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4.77 3.28 3.5 21 21.22l-1.27 1.28L18 20.76c-.29.17-.62.24-.97.24 0 .58-.47 1-1.03 1-.5 0-1-.42-1-1H9c0 .58-.5 1-1 1-.56 0-1.03-.42-1.03-1C5.89 21 5 20.13 5 19V7.78zM9.5 18H8v-7.22L6.97 9.74V19h9.26l-.98-1h-.75v-.74l-1.75-1.76V18h-1.5v-4L9.5 12.28zm3.25-9v1.43L11.32 9zm1.75 0H16v4.67l-1.5-1.5zm2.53-3C18.11 6 19 6.88 19 8v8.68l-1.97-1.98V8h-6.7L8.31 6H9V3c0-.58.46-1 1-1h4c.54 0 1 .42 1 1v3zM10.5 3.5V6h3V3.5z"/></svg>����������������������mkdocs-material-9.6.4/material/templates/.icons/material/bag-suitcase-off.svg�����������������������0000664�0000000�0000000�00000000701�14753064456�0027245�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4.77 3.28 3.5 21 21.22l-1.27 1.28L18 20.76c-.29.17-.62.24-.97.24 0 .58-.47 1-1.03 1-.5 0-1-.42-1-1H9c0 .58-.5 1-1 1-.56 0-1.03-.42-1.03-1C5.89 21 5 20.13 5 19V7.77zM17.03 6C18.11 6 19 6.88 19 8v8.68l-3-3V9h-1.5v3.18l-1.75-1.75V9h-1.43L8.31 6H9V3c0-.58.46-1 1-1h4c.54 0 1 .42 1 1v3zM8 18h1.5v-5.73L8 10.77zm3.25 0h1.5v-2.5l-1.5-1.5zm3.25 0h.73l-.73-.73zm-1-12V3.5h-3V6z"/></svg>���������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bag-suitcase-outline.svg�������������������0000664�0000000�0000000�00000000554�14753064456�0030160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 18V9H8v9m4.75 0V9h-1.5v9M16 18V9h-1.5v9m2.53-12C18.11 6 19 6.88 19 8v11c0 1.13-.89 2-1.97 2 0 .58-.47 1-1.03 1-.5 0-1-.42-1-1H9c0 .58-.5 1-1 1-.56 0-1.03-.42-1.03-1C5.89 21 5 20.13 5 19V8c0-1.12.89-2 1.97-2H9V3c0-.58.46-1 1-1h4c.54 0 1 .42 1 1v3m-4.5-2.5V6h3V3.5M17.03 19V8H6.97v11"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bag-suitcase.svg���������������������������0000664�0000000�0000000�00000000532�14753064456�0026477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.03 6C18.11 6 19 6.88 19 8v11c0 1.13-.89 2-1.97 2 0 .58-.47 1-1.03 1-.5 0-1-.42-1-1H9c0 .58-.5 1-1 1-.56 0-1.03-.42-1.03-1C5.89 21 5 20.13 5 19V8c0-1.12.89-2 1.97-2H9V3c0-.58.46-1 1-1h4c.54 0 1 .42 1 1v3zM13.5 6V3.5h-3V6zM8 9v9h1.5V9zm6.5 0v9H16V9zm-3.25 0v9h1.5V9z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/baguette.svg�������������������������������0000664�0000000�0000000�00000001172�14753064456�0025731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 22c-1.32 0-1.85-2.36-1.96-3.3a5.56 5.56 0 0 1 .32-2.7 2.5 2.5 0 0 1 1.87-1.62c1.17-.2 2 .5 3.06.74a1.21 1.21 0 0 0 1.56-1.37C9.41 12.03 6.28 12 5 12c0-1.86 2.04-2.1 3.5-1.96a10.8 10.8 0 0 1 2.54.56c.5.17 1.08.6 1.63.56.83-.07 1-.93.64-1.56C12.44 8.12 9.97 8 8.5 8c0-2 1.73-2.38 3.39-2.08a11.6 11.6 0 0 1 2.49.79c.51.22 1.12.64 1.68.45 1.44-.44-.06-1.98-.7-2.35a6.6 6.6 0 0 0-1.42-.58c-.54-.16-1.2-.1-.71-.73a5.13 5.13 0 0 1 2.73-1.24c1.89-.44 4.5-.52 4.96 1.86a5.3 5.3 0 0 1-.85 3.58 39 39 0 0 1-6.85 8.63 36.6 36.6 0 0 1-4.6 3.99C7.62 21.04 6.3 22 5 22"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/balcony.svg��������������������������������0000664�0000000�0000000�00000000417�14753064456�0025561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 10v2H8v-2zm6 2v-2h-2v2zm5 2v8H3v-8h1v-4c0-4.42 3.58-8 8-8s8 3.58 8 8v4zM7 16H5v4h2zm4 0H9v4h2zm0-11.92C8.16 4.56 6 7.03 6 10v4h5zM13 14h5v-4c0-2.97-2.16-5.44-5-5.92zm2 2h-2v4h2zm4 0h-2v4h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/balloon.svg��������������������������������0000664�0000000�0000000�00000000365�14753064456�0025562�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.16 12.74 14 14h-1.5c-.15 2.71-.5 5.41-1 8.08l-1-.16c.5-2.62.84-5.26 1-7.92H10l.84-1.26C8.64 11.79 7 8.36 7 6a5 5 0 0 1 5-5 5 5 0 0 1 5 5c0 2.36-1.64 5.79-3.84 6.74"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ballot-outline.svg�������������������������0000664�0000000�0000000�00000000354�14753064456�0027064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 7.5h5v2h-5zm0 7h5v2h-5zM19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm0 16V5H5v14zM11 6v5H6V6zm-1 4V7H7v3zm1 3v5H6v-5zm-1 4v-3H7v3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ballot-recount-outline.svg�����������������0000664�0000000�0000000�00000000750�14753064456�0030541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 18v-5h5v5zm1-4v3h3v-3zm6-6.5h5v2h-5zM5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6.17c-.5-.11-1-.17-1.5-.17H19V5H5v14h8.17c.17.72.46 1.39.83 2zm6-15v5H6V6zm-1 4V7H7v3zm9 2v1.5a4 4 0 0 1 4 4c0 .82-.25 1.58-.67 2.21l-1.09-1.09c.17-.34.26-.72.26-1.12A2.5 2.5 0 0 0 19 15v1.5l-2.25-2.25zm0 11v-1.5a4 4 0 0 1-4-4c0-.82.25-1.58.67-2.21l1.09 1.09c-.17.34-.26.72-.26 1.12A2.5 2.5 0 0 0 19 20v-1.5l2.25 2.25z"/></svg>������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ballot-recount.svg�������������������������0000664�0000000�0000000�00000000763�14753064456�0027070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 12v1.5a4 4 0 0 1 4 4c0 .82-.25 1.58-.67 2.21l-1.09-1.09c.17-.34.26-.72.26-1.12A2.5 2.5 0 0 0 19 15v1.5l-2.25-2.25zm0 11v-1.5a4 4 0 0 1-4-4c0-.82.25-1.58.67-2.21l1.09 1.09c-.17.34-.26.72-.26 1.12A2.5 2.5 0 0 0 19 20v-1.5l2.25 2.25zm-9-6H7v-3h3zm0-10v3H7V7zM5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6.17c-.5-.11-1-.17-1.5-.17a6.5 6.5 0 0 0-6.5 6.5c0 1.29.38 2.5 1 3.5zm8-11.5h5v-2h-5zM11 13H6v5h5zm0-7H6v5h5z"/></svg>�������������mkdocs-material-9.6.4/material/templates/.icons/material/ballot.svg���������������������������������0000664�0000000�0000000�00000000342�14753064456�0025404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9.5h5v-2h-5zm0 7h5v-2h-5zm6 4.5H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2M6 11h5V6H6zm1-4h3v3H7zM6 18h5v-5H6zm1-4h3v3H7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bandage.svg��������������������������������0000664�0000000�0000000�00000001303�14753064456�0025506�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.73 12 3.98-3.96c.39-.39.39-1.04 0-1.41l-4.34-4.34c-.37-.39-1.02-.39-1.41 0L12 6.27 8 2.29a1.001 1.001 0 0 0-1.41 0L2.25 6.63c-.39.37-.39 1.02 0 1.41L6.23 12l-3.98 4c-.39.39-.39 1 0 1.41l4.34 4.34c.41.39 1.02.39 1.41 0l4-3.98 3.96 3.98c.2.2.45.29.71.29s.51-.1.71-.29l4.34-4.34c.39-.41.39-1.02 0-1.41zM12 9a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m-4.71 1.96L3.66 7.34l3.63-3.63 3.62 3.62zM10 13a1 1 0 0 1-1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1 1 1 0 0 1-1 1m2 2a1 1 0 0 1-1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1 1 1 0 0 1-1 1m2-4a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m2.66 9.34-3.63-3.62 3.63-3.63 3.62 3.62z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bank-check.svg�����������������������������0000664�0000000�0000000�00000000425�14753064456�0026117�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.8 21.2-2.8-3 1.2-1.2 1.6 1.6 3.6-3.6 1.2 1.4zM13 10h-3v7h2.1c.1-.8.5-1.6.9-2.3zm3 0v2.3c.6-.2 1.3-.3 2-.3.3 0 .7 0 1 .1V10zm-3.9 9H2v3h11.5c-.7-.8-1.2-1.9-1.4-3M21 6l-9.5-5L2 6v2h19zM7 17v-7H4v7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bank-circle-outline.svg��������������������0000664�0000000�0000000�00000000406�14753064456�0027757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4c4.4 0 8 3.6 8 8s-3.6 8-8 8-8-3.6-8-8 3.6-8 8-8m0-2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m5 15H7v-2h10zm-9-3v-3h2v3zm3 0v-3h2v3zm3 0v-3h2v3zm3-4H7V8.5L12 6l5 2.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bank-circle.svg����������������������������0000664�0000000�0000000�00000000323�14753064456�0026300�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m5 15H7v-2h10zm-9-3v-3h2v3zm3 0v-3h2v3zm3 0v-3h2v3zm3-4H7V8.5L12 6l5 2.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bank-minus.svg�����������������������������0000664�0000000�0000000�00000000364�14753064456�0026177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 17h8v2h-8zM11.5 1 21 6v2H2V6zm4.5 9h3v2.08L18 12c-.7 0-1.37.12-2 .34zM2 22v-3h10.08c.19 1.14.71 2.17 1.45 3zm8-12h3v4.68c-.46.69-.78 1.47-.92 2.32H10zm-6 0h3v7H4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bank-off-outline.svg�����������������������0000664�0000000�0000000�00000000367�14753064456�0027276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.8 22.7 19.1 21H2v-2h15.1l-4.6-4.6V17h-2v-4.6L6.1 8H2V6l1.4-.7L1.1 3l1.3-1.3 19.7 19.7zM4.5 10v7h2v-7zm7-6.7L16.7 6H9.2l2 2H21V6l-9.5-5-4.8 2.5L8.2 5zm7 12V10h-2v3.3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bank-off.svg�������������������������������0000664�0000000�0000000�00000000342�14753064456�0025612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.8 22.7-.7-.7H2v-3h15.1L13 14.9V17h-3v-5.1L6.1 8H2V6l1.4-.7L1.1 3l1.3-1.3 19.7 19.7zM4 10v7h3v-7zm17-2V6l-9.5-5-4.8 2.5L11.2 8zm-2 7.8V10h-3v2.8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bank-outline.svg���������������������������0000664�0000000�0000000�00000000257�14753064456�0026524�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 10h-2v7h2zm6 0h-2v7h2zm8.5 9H2v2h19zm-2.5-9h-2v7h2zm-7-6.74L16.71 6H6.29zm0-2.26L2 6v2h19V6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bank-plus.svg������������������������������0000664�0000000�0000000�00000000410�14753064456�0026017�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 14h2v3h3v2h-3v3h-2v-3h-3v-2h3zM11.5 1 21 6v2H2V6zm4.5 9h3v2.08L18 12c-.7 0-1.37.12-2 .34zM2 22v-3h10.08c.19 1.14.71 2.17 1.45 3zm8-12h3v4.68c-.46.69-.78 1.47-.92 2.32H10zm-6 0h3v7H4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bank-remove.svg����������������������������0000664�0000000�0000000�00000000536�14753064456�0026342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.46 15.88 1.42-1.42L18 16.59l2.12-2.13 1.42 1.42L19.41 18l2.13 2.12-1.42 1.42L18 19.41l-2.12 2.13-1.42-1.42L16.59 18zM11.5 1 21 6v2H2V6zm4.5 9h3v2.08L18 12c-.7 0-1.37.12-2 .34zM2 22v-3h10.08c.19 1.14.71 2.17 1.45 3zm8-12h3v4.68c-.46.69-.78 1.47-.92 2.32H10zm-6 0h3v7H4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bank-transfer-in.svg�����������������������0000664�0000000�0000000�00000000265�14753064456�0027274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 15v-3h3v-2l4 3.5L5 17v-2zm20-6.3V10H10V8.7L16 5zM10 17h12v2H10zm5-6h2v5h-2zm-4 0h2v5h-2zm8 0h2v5h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bank-transfer-out.svg����������������������0000664�0000000�0000000�00000000261�14753064456�0027471�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 15v-3h3v-2l4 3.5-4 3.5v-2zm-1-6.3V10H2V8.7L8 5zM2 17h12v2H2zm5-6h2v5H7zm-4 0h2v5H3zm8 0h2v5h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bank-transfer.svg��������������������������0000664�0000000�0000000�00000000342�14753064456�0026664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 14v-3h3V9l4 3.5-4 3.5v-2zm-1-6.3V9H2V7.7L8 4zM7 10h2v5H7zm-4 0h2v5H3zm10 0v2.5l-2 1.8V10zm-3.9 6-.6.5 1.7 1.5H2v-2zm7.9-1v3h-3v2l-4-3.5 4-3.5v2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bank.svg�����������������������������������0000664�0000000�0000000�00000000221�14753064456�0025036�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.5 1 2 6v2h19V6m-5 4v7h3v-7M2 22h19v-3H2m8-9v7h3v-7m-9 0v7h3v-7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/barcode-off.svg����������������������������0000664�0000000�0000000�00000000532�14753064456�0026277�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.84 22.73 16 17.89V18h-2v-2.11l-2-2V18h-1v-5.11l-1-1V18H7V8.89l-1-1V18H5V6.89L1.11 3l1.28-1.27L7 6.34l3 3 1 1 1 1 2 2.01v-.01l2 2v.01l1 1v-.01L18.66 18h-.01l3.46 3.46zM16 6h-2v4.8l2 2zm-4 0h-1v1.8l1 1zm8 0h-3v7.8l3 3zm2 12V6h-1v11.8l.2.2zM10 6h-.8l.8.8zM2 18h2V6H2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/barcode-scan.svg���������������������������0000664�0000000�0000000�00000000426�14753064456�0026453�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 6h2v12H4zm3 0h1v12H7zm2 0h3v12H9zm4 0h1v12h-1zm3 0h2v12h-2zm3 0h1v12h-1zM2 4v4H0V4a2 2 0 0 1 2-2h4v2zm20-2a2 2 0 0 1 2 2v4h-2V4h-4V2zM2 16v4h4v2H2a2 2 0 0 1-2-2v-4zm20 4v-4h2v4a2 2 0 0 1-2 2h-4v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/barcode.svg��������������������������������0000664�0000000�0000000�00000000246�14753064456�0025531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 6h2v12H2zm3 0h1v12H5zm2 0h3v12H7zm4 0h1v12h-1zm3 0h2v12h-2zm3 0h3v12h-3zm4 0h1v12h-1z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/barley-off.svg�����������������������������0000664�0000000�0000000�00000001410�14753064456�0026152�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.96 1.21c-.66 1.55-1.32 3.1-1.31 4.61.01.6.12 1.18.29 1.8a3.4 3.4 0 0 0-.27-.45C9.83 6 8.17 5 6.5 4c0 .8 0 1.59.18 2.36L13 12.68V10.7c1.5-.9 2.92-1.82 3.67-2.87.83-1.16.83-2.5.83-3.83-1.67 1-3.33 2-4.17 3.17-.1.14-.18.28-.26.42.18-.63.29-1.27.28-1.9-.01-1.51-.7-3-1.39-4.48M3.28 5.5 2 6.77l4.64 4.64c.11.59.31 1.14.69 1.67.75 1.05 2.17 1.97 3.67 2.87v2.28l-.33-.56c-.84-1.17-2.5-2.17-4.17-3.17 0 1.33 0 2.67.83 3.83.75 1.05 2.17 1.97 3.67 2.87V23h2v-1.8c.74-.44 1.45-.89 2.07-1.36l3.66 3.66L20 22.22C14 16.23 9.1 11.32 3.28 5.5M17.5 9.25c-1.67 1-3.33 2-4.17 3.17l-.21.37L15 14.66c.67-.5 1.27-1.02 1.67-1.58.83-1.16.83-2.5.83-3.83m0 5.25c-.57.34-1.12.68-1.65 1.03l1.44 1.44c.21-.8.21-1.64.21-2.47"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/barley.svg���������������������������������0000664�0000000�0000000�00000001357�14753064456�0025414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.33 18.33c-.83-1.16-.83-2.5-.83-3.83 1.67 1 3.33 2 4.17 3.17l.33.56v-2.28c-1.5-.9-2.92-1.82-3.67-2.87-.83-1.16-.83-2.5-.83-3.83 1.67 1 3.33 2 4.17 3.17L11 13v-2.3c-1.5-.9-2.92-1.82-3.67-2.87C6.5 6.67 6.5 5.33 6.5 4c1.67 1 3.33 2 4.17 3.17q.15.21.27.45c-.17-.62-.28-1.2-.29-1.8-.01-1.51.65-3.06 1.31-4.61.69 1.48 1.38 2.97 1.39 4.48.01.63-.1 1.27-.28 1.9.08-.14.16-.28.26-.42C14.17 6 15.83 5 17.5 4c0 1.33 0 2.67-.83 3.83C15.92 8.88 14.5 9.8 13 10.7V13l.33-.58c.84-1.17 2.5-2.17 4.17-3.17 0 1.33 0 2.67-.83 3.83-.75 1.05-2.17 1.97-3.67 2.87v2.28l.33-.56c.84-1.17 2.5-2.17 4.17-3.17 0 1.33 0 2.67-.83 3.83-.75 1.05-2.17 1.97-3.67 2.87V23h-2v-1.8c-1.5-.9-2.92-1.82-3.67-2.87"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/barn.svg�����������������������������������0000664�0000000�0000000�00000000251�14753064456�0025050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3 3 8.2V21h6l2.9-3 3.1 3h6V8.2zM7.9 20v-6l3 3zm1-7h6l-3 3zm7 7-3-3 3-3zm-.9-9H8.8V9H15z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/barrel-outline.svg�������������������������0000664�0000000�0000000�00000000670�14753064456�0027057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 13.05C9 14.68 10.34 16 12 16s3-1.32 3-2.95c0-1.31-.53-1.69-3-4.55-2.5 2.88-3 3.25-3 4.55M20 13c.55 0 1-.45 1-1s-.45-1-1-1h-1V5h1c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1h1v6H4c-.55 0-1 .45-1 1s.45 1 1 1h1v6H4c-.55 0-1 .45-1 1s.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1h-1v-6zm-3 6H7v-6c.55 0 1-.45 1-1s-.45-1-1-1V5h10v6c-.55 0-1 .45-1 1s.45 1 1 1z"/></svg>������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/barrel.svg���������������������������������0000664�0000000�0000000�00000000564�14753064456�0025404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 13c.55 0 1-.45 1-1s-.45-1-1-1h-1V5h1c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1h1v6H4c-.55 0-1 .45-1 1s.45 1 1 1h1v6H4c-.55 0-1 .45-1 1s.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1h-1v-6zm-8 3c-1.66 0-3-1.32-3-2.95 0-1.3.5-1.67 3-4.55 2.47 2.86 3 3.24 3 4.55 0 1.63-1.34 2.95-3 2.95"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/baseball-bat.svg���������������������������0000664�0000000�0000000�00000000665�14753064456�0026450�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2c-.28 0-.5.11-.71.29l-9.5 9.5c-.04.04-.07.08-2.56 3.56L4 18.59l-.29-.3C3.5 18.1 3.26 18 3 18c-.56 0-1 .44-1 1 0 .26.1.5.29.71l2 2c.39.4 1.02.41 1.42.03.4-.39.41-1.02 0-1.45l-.3-.29 3.23-3.23 3.57-2.56 9.5-9.5c.39-.39.39-1.03 0-1.42l-1-1C20.5 2.1 20.26 2 20 2m-1.5 11a2.5 2.5 0 0 0-2.5 2.5 2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5"/></svg>���������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/baseball-diamond-outline.svg���������������0000664�0000000�0000000�00000000544�14753064456�0030766�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C5 2 1 9 1 9l8.3 8.3c.44-.53 1.02-.93 1.7-1.13L7.83 13 12 8.83 16.17 13 13 16.17c.68.2 1.27.6 1.7 1.13L23 9s-4-7-11-7m5.59 9.59L12 6l-5.59 5.59-2.82-2.83C4.95 7 7.89 4 12 4c4.08 0 7.03 3 8.4 4.77zM13 13c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1m.5 7L12 21l-1.5-1v-2h3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/baseball-diamond.svg�����������������������0000664�0000000�0000000�00000000440�14753064456�0027304�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.79 12.79 2 9s4-6 10-6 10 6 10 6l-3.79 3.79L12 6.59zM13.5 18h-3v2l1.5 1 1.5-1zm3.29-3.79L14.2 16.8c-.6-.49-1.36-.8-2.2-.8s-1.6.31-2.2.8l-2.59-2.59L12 9.41zM13 14c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/baseball-outline.svg�����������������������0000664�0000000�0000000�00000001511�14753064456�0027350�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.17 2.76A10.1 10.1 0 0 1 12 2c1.31 0 2.61.26 3.83.76 1.21.5 2.31 1.24 3.24 2.17s1.67 2.03 2.17 3.24c.5 1.22.76 2.52.76 3.83 0 2.65-1.05 5.2-2.93 7.07A9.97 9.97 0 0 1 12 22a10.1 10.1 0 0 1-3.83-.76 10 10 0 0 1-3.24-2.17A9.97 9.97 0 0 1 2 12c0-2.65 1.05-5.2 2.93-7.07.93-.93 2.03-1.67 3.24-2.17m-.28 16.1a7.97 7.97 0 0 0 8.22 0l-1-1.73 1-.58A9.9 9.9 0 0 1 15.05 13H14v-2h1.05c.13-1.27.5-2.47 1.06-3.55l-1-.58 1-1.73a7.97 7.97 0 0 0-8.22 0l1 1.73-1 .57c.56 1.09.93 2.29 1.06 3.56H10v2H8.95c-.13 1.27-.5 2.47-1.06 3.56l1 .57zM5 15.88l.43-.75.73.43c.39-.79.66-1.65.77-2.56H6v-2h.93c-.11-.91-.38-1.77-.77-2.56l-.73.43L5 8.12a8.03 8.03 0 0 0 0 7.76m14-7.75-.43.74-.73-.43c-.39.79-.66 1.65-.77 2.56H18v2h-.93c.11.91.38 1.77.77 2.56l.73-.43.43.75a8.03 8.03 0 0 0 0-7.76Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/baseball.svg�������������������������������0000664�0000000�0000000�00000001554�14753064456�0025702�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c-2.5 0-4.75.9-6.5 2.4.5.41.91.87 1.3 1.36l1.09-.63 1 1.74-1 .57c.56 1.09.93 2.29 1.06 3.56H10v2H8.95c-.13 1.27-.5 2.47-1.06 3.56l1 .57-1 1.74-1.09-.63c-.39.49-.8.95-1.3 1.36 1.75 1.5 4 2.4 6.5 2.4s4.75-.9 6.5-2.4c-.5-.41-.91-.87-1.31-1.36l-1.08.63-1-1.74 1-.58A9.9 9.9 0 0 1 15.05 13H14v-2h1.05c.13-1.27.5-2.47 1.06-3.55l-1-.58 1-1.74 1.08.63c.4-.49.81-.95 1.31-1.36C16.75 2.9 14.5 2 12 2M4.12 5.85A9.94 9.94 0 0 0 2 12c0 2.32.79 4.45 2.12 6.15.34-.28.64-.6.93-.93l-.62-.35 1-1.74.73.43c.39-.79.66-1.65.77-2.56H6v-2h.93c-.11-.91-.38-1.77-.77-2.56l-.73.43-1-1.74.62-.35c-.29-.33-.59-.65-.93-.93m15.76 0c-.34.28-.64.6-.93.93l.62.35-1 1.74-.73-.43c-.39.79-.66 1.65-.77 2.56H18v2h-.93c.11.91.38 1.77.77 2.56l.73-.43 1 1.74-.62.35c.29.33.59.65.93.93A9.94 9.94 0 0 0 22 12c0-2.32-.79-4.45-2.12-6.15"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bash.svg�����������������������������������0000664�0000000�0000000�00000000360�14753064456�0025044�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 9h2.31l.32-3h2l-.32 3h2l.32-3h2l-.32 3H15v2h-1.9l-.2 2H15v2h-2.31l-.32 3h-2l.32-3h-2l-.32 3h-2l.32-3H5v-2h1.9l.2-2H5zm4.1 2-.2 2h2l.2-2M19 6h-2v8h2m0 2h-2v2h2Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/basket-check-outline.svg�������������������0000664�0000000�0000000�00000000706�14753064456�0030134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.63 16.27-3.87 3.9-1.35-1.37L15 20.22 17.75 23l5.28-5.32zM14 15c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2m-1 5c0-.34.04-.67.09-1H5.5l-2.19-8H20.7l-.84 3.07c.68.1 1.32.3 1.9.61l1.21-4.41L23 10c0-.55-.45-1-1-1h-4.79l-4.38-6.56a.997.997 0 0 0-1.66.01L6.79 9H2c-.55 0-1 .45-1 1 0 .09 0 .18.04.27l2.54 9.27c.23.84 1 1.46 1.92 1.46h7.59c-.05-.33-.09-.66-.09-1M12 4.8 14.8 9H9.2z"/></svg>����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/basket-check.svg���������������������������0000664�0000000�0000000�00000000637�14753064456�0026462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.63 16.27-3.87 3.9-1.35-1.37L15 20.22 17.75 23l5.28-5.32zM13 20c0-3.31 2.69-6 6-6 1 0 1.92.24 2.74.67l1.22-4.38L23 10c0-.55-.45-1-1-1h-4.58l-4.59-6.56a.997.997 0 0 0-1.65-.01L6.58 9H2c-.55 0-1 .45-1 1l.1.44 2.61 9.46c.33.65 1.01 1.1 1.79 1.1h7.59c-.05-.33-.09-.66-.09-1M12 4.74 15 9H9zM10 15c0-1.1.9-2 2-2s2 .9 2 2-.89 2-2 2-2-.89-2-2"/></svg>�������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/basket-fill.svg����������������������������0000664�0000000�0000000�00000000425�14753064456�0026326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 2h3v3H3zm3 5h3v3H6zm2-5h3v3H8zm9 9-5-5h3V2h4v4h3zM7.5 22c-.78 0-1.46-.45-1.79-1.1L3.1 13.44 3 13a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1l-.04.29-2.67 7.61c-.33.65-1.01 1.1-1.79 1.1zm.11-2h8.78l2.18-6H5.42z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/basket-minus-outline.svg�������������������0000664�0000000�0000000�00000000612�14753064456�0030206�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 18v2h-8v-2zm-11-5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m1.35 8H5.5c-.92 0-1.69-.62-1.92-1.46l-2.54-9.27C1 10.18 1 10.09 1 10c0-.55.45-1 1-1h4.79l4.38-6.55a.997.997 0 0 1 1.66-.01L17.21 9H22c.55 0 1 .45 1 1l-.03.27-.97 3.54c-.57-.31-1.21-.57-1.88-.7L20.7 11H3.31l2.19 8H13c0 .7.13 1.37.35 2M9.2 9h5.6L12 4.8z"/></svg>����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/basket-minus.svg���������������������������0000664�0000000�0000000�00000000527�14753064456�0026536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 18v2h-8v-2zm0-8-.04.29L22 13.8a6.005 6.005 0 0 0-9 5.2c0 .7.13 1.37.35 2H5.5c-.78 0-1.46-.45-1.79-1.1L1.1 10.44 1 10c0-.55.45-1 1-1h4.58l4.6-6.57a.997.997 0 0 1 1.65.01L17.42 9H22c.55 0 1 .45 1 1m-9 5c0-1.1-.89-2-2-2s-2 .9-2 2 .9 2 2 2 2-.89 2-2m1-6-3-4.26L9 9z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/basket-off-outline.svg���������������������0000664�0000000�0000000�00000000732�14753064456�0027630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.39 1.73 1.11 3l5.81 5.81-.13.19H2c-.55 0-1 .45-1 1 0 .09 0 .18.04.27l2.54 9.27c.23.84 1 1.46 1.92 1.46h13c.18 0 .36-.04.53-.08l1.81 1.81 1.27-1.27zM5.5 19l-2.19-8h5.8l2.15 2.15C10.5 13.44 10 14.16 10 15c0 1.1.9 2 2 2 .84 0 1.56-.5 1.85-1.26L17.11 19zM23 10l-.03.27-2.04 7.46-1.63-1.63 1.4-5.1h-6.5l-2-2h2.6L12 4.8l-1.6 2.4-1.44-1.44 2.21-3.31a.997.997 0 0 1 1.66-.01L17.21 9H22c.55 0 1 .45 1 1"/></svg>��������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/basket-off.svg�����������������������������0000664�0000000�0000000�00000000653�14753064456�0026155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23 10-.04.29-2.06 7.41L12.2 9H15l-3-4.26-1.68 2.38-1.43-1.43 2.29-3.26a.997.997 0 0 1 1.65.01L17.42 9H22c.55 0 1 .45 1 1m-.89 11.46-1.27 1.27-1.81-1.81c-.17.05-.35.08-.53.08h-13c-.78 0-1.46-.45-1.79-1.1L1.1 10.44 1 10c0-.55.45-1 1-1h4.58l.22-.31L1.11 3l1.28-1.27zm-8.26-5.72-2.59-2.59C10.5 13.44 10 14.16 10 15a2 2 0 0 0 2 2c.84 0 1.56-.5 1.85-1.26"/></svg>�������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/basket-outline.svg�������������������������0000664�0000000�0000000�00000000543�14753064456�0027060�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 9h-4.79l-4.38-6.56a.997.997 0 0 0-1.66.01L6.79 9H2c-.55 0-1 .45-1 1 0 .09 0 .18.04.27l2.54 9.27c.23.84 1 1.46 1.92 1.46h13c.92 0 1.69-.62 1.93-1.46l2.54-9.27L23 10c0-.55-.45-1-1-1M12 4.8 14.8 9H9.2zM18.5 19h-13l-2.19-8H20.7zM12 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/basket-plus-outline.svg��������������������0000664�0000000�0000000�00000000635�14753064456�0030043�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15v3h3v2h-3v3h-2v-3h-3v-2h3v-3zm-8-2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m1.35 8H5.5c-.92 0-1.69-.62-1.92-1.46l-2.54-9.27C1 10.18 1 10.09 1 10c0-.55.45-1 1-1h4.79l4.38-6.55a.997.997 0 0 1 1.66-.01L17.21 9H22c.55 0 1 .45 1 1l-.03.27-.97 3.54c-.57-.31-1.21-.57-1.88-.7L20.7 11H3.31l2.19 8H13c0 .7.13 1.37.35 2M9.2 9h5.6L12 4.8z"/></svg>���������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/basket-plus.svg����������������������������0000664�0000000�0000000�00000000553�14753064456�0026365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15v3h3v2h-3v3h-2v-3h-3v-2h3v-3zm3-5-.04.29L22 13.8a6.005 6.005 0 0 0-9 5.2c0 .7.13 1.37.35 2H5.5c-.78 0-1.46-.45-1.79-1.1L1.1 10.44 1 10c0-.55.45-1 1-1h4.58l4.6-6.57a.997.997 0 0 1 1.65.01L17.42 9H22c.55 0 1 .45 1 1m-9 5c0-1.1-.89-2-2-2s-2 .9-2 2 .9 2 2 2 2-.89 2-2m1-6-3-4.26L9 9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/basket-remove-outline.svg������������������0000664�0000000�0000000�00000000764�14753064456�0030360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.54 16.88 20.41 19l2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.41-1.42L17.59 19l-2.12-2.12 1.41-1.41L19 17.59l2.12-2.13zM12 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m1.35 8H5.5c-.92 0-1.69-.62-1.92-1.46l-2.54-9.27C1 10.18 1 10.09 1 10c0-.55.45-1 1-1h4.79l4.38-6.55a.997.997 0 0 1 1.66-.01L17.21 9H22c.55 0 1 .45 1 1l-.03.27-.97 3.54c-.57-.31-1.21-.57-1.88-.7L20.7 11H3.31l2.19 8H13c0 .7.13 1.37.35 2M9.2 9h5.6L12 4.8z"/></svg>������������mkdocs-material-9.6.4/material/templates/.icons/material/basket-remove.svg��������������������������0000664�0000000�0000000�00000000704�14753064456�0026675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.54 16.88 20.41 19l2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.41-1.42L17.59 19l-2.12-2.12 1.41-1.41L19 17.59l2.12-2.13zM23 10l-.04.29L22 13.8a6.005 6.005 0 0 0-9 5.2c0 .7.13 1.37.35 2H5.5c-.78 0-1.46-.45-1.79-1.1L1.1 10.44 1 10c0-.55.45-1 1-1h4.58l4.6-6.57a.997.997 0 0 1 1.65.01L17.42 9H22c.55 0 1 .45 1 1m-9 5c0-1.1-.89-2-2-2s-2 .9-2 2 .9 2 2 2 2-.89 2-2m1-6-3-4.26L9 9z"/></svg>������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/basket-unfill.svg��������������������������0000664�0000000�0000000�00000000426�14753064456�0026672�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 10h3V7H3zm2-5h3V2H5zm3 5h3V7H8zm9-9-5 5h3v4h4V6h3zM7.5 22c-.78 0-1.46-.45-1.79-1.1L3.1 13.44 3 13a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1l-.04.29-2.67 7.61c-.33.65-1.01 1.1-1.79 1.1zm.11-2h8.78l2.18-6H5.42z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/basket.svg���������������������������������0000664�0000000�0000000�00000000503�14753064456�0025377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.5 21c-.78 0-1.46-.45-1.79-1.1L1.1 10.44 1 10a1 1 0 0 1 1-1h4.58l4.6-6.57a.997.997 0 0 1 1.65.01L17.42 9H22a1 1 0 0 1 1 1l-.04.29-2.67 9.61c-.33.65-1.01 1.1-1.79 1.1zM12 4.74 9 9h6zM12 13a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/basketball-hoop-outline.svg����������������0000664�0000000�0000000�00000000376�14753064456�0030662�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 2H3a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h3.57L8 23l2-2 2 2 2-2 2 2 1.43-5H21a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2m0 14h-3v-2h-1V9a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2v5H6v2H3V4h18zM9 14V9h6v5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/basketball-hoop.svg������������������������0000664�0000000�0000000�00000000370�14753064456�0027177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 2H3a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h2v-4h14v4h2a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2m-4 10h-2V9H9v3H7V9a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2zM7 16v3.5L8 23l2-2 2 2 2-2 2 2 1-3.5V16z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/basketball.svg�����������������������������0000664�0000000�0000000�00000001623�14753064456�0026236�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.34 14.63c.6-.22 1.22-.33 1.88-.33q2.01 0 3.51 1.26L4.59 18.7a10.6 10.6 0 0 1-2.25-4.07M15.56 9.8c1.97 1.47 4.1 1.83 6.38 1.08.03.21.06.59.06 1.12 0 1.03-.25 2.18-.72 3.45-.47 1.26-1.05 2.28-1.73 3.05l-6.33-6.31zm-6.79 6.84c1.06 1.53 1.28 3.2.65 5.02-1.42-.41-2.69-1.05-3.75-1.93zm3.42-3.42 6.31 6.33c-2.17 1.9-4.72 2.7-7.62 2.39.21-.66.32-1.38.32-2.16 0-.62-.14-1.35-.42-2.18s-.61-1.51-.98-2.04zM8.81 14.5a6.7 6.7 0 0 0-3.23-1.59c-1.22-.23-2.39-.16-3.52.22-.03-.22-.06-.6-.06-1.13 0-1.03.25-2.18.72-3.45.47-1.26 1.05-2.28 1.73-3.05l6.66 6.69zm6.75-6.77c-1.34-1.65-1.65-3.45-.93-5.39.62.16 1.33.46 2.13.92.79.45 1.44.9 1.94 1.33zm6.1 1.65c-.6.21-1.22.32-1.88.32-1.09 0-2.14-.32-3.14-.98l3.09-3.05c.88 1.1 1.52 2.33 1.93 3.71m-9.47 1.73L5.5 4.45c2.17-1.9 4.72-2.7 7.63-2.39q-.33.99-.33 2.16c0 .72.16 1.53.49 2.44.33.9.71 1.62 1.21 2.15z"/></svg>�������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bat.svg������������������������������������0000664�0000000�0000000�00000000445�14753064456�0024701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.75 8S5 7 8 9c0 0 .5 3.75 2.5 3.75V11s.5 1 1.5 1 1.5-1 1.5-1v1.75C15.5 12.75 16 9 16 9c3-2 7.25-1 7.25-1-2 1-2.25 4.5-2.25 4.5-4 0-4 3.25-4 3.25-5-1-5 2.75-5 2.75s0-3.75-5-2.75c0 0 0-3.25-4-3.25C3 12.5 2.75 9 .75 8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bathtub-outline.svg������������������������0000664�0000000�0000000�00000001002�14753064456�0027227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 5a2 2 0 1 1 0 4c-1.11 0-2-.89-2-2s.9-2 2-2m13 8V4.83C20 3.27 18.73 2 17.17 2c-.75 0-1.47.3-2 .83l-1.25 1.25c-.16-.05-.33-.08-.51-.08-.41 0-.77.12-1.08.32l2.76 2.76c.2-.31.32-.68.32-1.08 0-.18-.03-.34-.07-.5l1.25-1.26a.828.828 0 0 1 1.41.59V13h-6.85c-.3-.21-.57-.45-.82-.72l-1.4-1.55c-.19-.23-.43-.38-.69-.5-.31-.15-.65-.23-1-.23C6 10 5 11 5 12.25V13H2v6c0 1.1.9 2 2 2 0 .55.45 1 1 1h14c.55 0 1-.45 1-1 1.1 0 2-.9 2-2v-6zm0 6H4v-4h16z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bathtub.svg��������������������������������0000664�0000000�0000000�00000000765�14753064456�0025571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 5a2 2 0 1 1 0 4c-1.11 0-2-.89-2-2s.9-2 2-2m13 8V4.83C20 3.27 18.73 2 17.17 2c-.75 0-1.47.3-2 .83l-1.25 1.25c-.16-.05-.33-.08-.51-.08-.41 0-.77.12-1.08.32l2.76 2.76c.2-.31.32-.68.32-1.08 0-.18-.03-.34-.07-.5l1.25-1.26a.828.828 0 0 1 1.41.59V13h-6.85c-.3-.21-.57-.45-.82-.72l-1.4-1.55c-.19-.23-.43-.38-.69-.5-.31-.15-.65-.23-1-.23C6 10 5 11 5 12.25V13H2v6c0 1.1.9 2 2 2 0 .55.45 1 1 1h14c.55 0 1-.45 1-1 1.1 0 2-.9 2-2v-6z"/></svg>�����������mkdocs-material-9.6.4/material/templates/.icons/material/battery-10-bluetooth.svg�������������������0000664�0000000�0000000�00000000552�14753064456�0030025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 2v2H3.33A1.33 1.33 0 0 0 2 5.33v15.34C2 21.4 2.6 22 3.33 22h9.34c.73 0 1.33-.6 1.33-1.33V5.33A1.33 1.33 0 0 0 12.67 4H11V2zM4 6h8v12H4zm15 2v3.79L16.71 9.5l-.71.71L18.79 13 16 15.79l.71.71L19 14.21V18h.5l2.85-2.86L20.21 13l2.14-2.15L19.5 8zm1 1.91.94.94-.94.94zm0 4.3.94.93-.94.94z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-10.svg�����������������������������0000664�0000000�0000000�00000000332�14753064456�0026016�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 18H8V6h8m.67-2H15V2H9v2H7.33A1.33 1.33 0 0 0 6 5.33v15.34C6 21.4 6.6 22 7.33 22h9.34A1.33 1.33 0 0 0 18 20.67V5.33C18 4.6 17.4 4 16.67 4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-20-bluetooth.svg�������������������0000664�0000000�0000000�00000000552�14753064456�0030026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 2v2H3.33A1.33 1.33 0 0 0 2 5.33v15.34C2 21.4 2.6 22 3.33 22h9.34c.73 0 1.33-.6 1.33-1.33V5.33A1.33 1.33 0 0 0 12.67 4H11V2zM4 6h8v11H4zm15 2v3.79L16.71 9.5l-.71.71L18.79 13 16 15.79l.71.71L19 14.21V18h.5l2.85-2.86L20.21 13l2.14-2.15L19.5 8zm1 1.91.94.94-.94.94zm0 4.3.94.93-.94.94z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-20.svg�����������������������������0000664�0000000�0000000�00000000332�14753064456�0026017�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 17H8V6h8m.67-2H15V2H9v2H7.33A1.33 1.33 0 0 0 6 5.33v15.34C6 21.4 6.6 22 7.33 22h9.34A1.33 1.33 0 0 0 18 20.67V5.33C18 4.6 17.4 4 16.67 4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-30-bluetooth.svg�������������������0000664�0000000�0000000�00000000551�14753064456�0030026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 2v2H3.33A1.33 1.33 0 0 0 2 5.33v15.34C2 21.4 2.6 22 3.33 22h9.34c.73 0 1.33-.6 1.33-1.33V5.33A1.33 1.33 0 0 0 12.67 4H11V2zM4 6h8v9H4zm15 2v3.79L16.71 9.5l-.71.71L18.79 13 16 15.79l.71.71L19 14.21V18h.5l2.85-2.86L20.21 13l2.14-2.15L19.5 8zm1 1.91.94.94-.94.94zm0 4.3.94.93-.94.94z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-30.svg�����������������������������0000664�0000000�0000000�00000000332�14753064456�0026020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 15H8V6h8m.67-2H15V2H9v2H7.33A1.33 1.33 0 0 0 6 5.33v15.34C6 21.4 6.6 22 7.33 22h9.34A1.33 1.33 0 0 0 18 20.67V5.33C18 4.6 17.4 4 16.67 4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-40-bluetooth.svg�������������������0000664�0000000�0000000�00000000551�14753064456�0030027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 2v2H3.33A1.33 1.33 0 0 0 2 5.33v15.34C2 21.4 2.6 22 3.33 22h9.34c.73 0 1.33-.6 1.33-1.33V5.33A1.33 1.33 0 0 0 12.67 4H11V2zM4 6h8v8H4zm15 2v3.79L16.71 9.5l-.71.71L18.79 13 16 15.79l.71.71L19 14.21V18h.5l2.85-2.86L20.21 13l2.14-2.15L19.5 8zm1 1.91.94.94-.94.94zm0 4.3.94.93-.94.94z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-40.svg�����������������������������0000664�0000000�0000000�00000000332�14753064456�0026021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 14H8V6h8m.67-2H15V2H9v2H7.33A1.33 1.33 0 0 0 6 5.33v15.34C6 21.4 6.6 22 7.33 22h9.34A1.33 1.33 0 0 0 18 20.67V5.33C18 4.6 17.4 4 16.67 4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-50-bluetooth.svg�������������������0000664�0000000�0000000�00000000551�14753064456�0030030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 2v2H3.33A1.33 1.33 0 0 0 2 5.33v15.34C2 21.4 2.6 22 3.33 22h9.34c.73 0 1.33-.6 1.33-1.33V5.33A1.33 1.33 0 0 0 12.67 4H11V2zM4 6h8v7H4zm15 2v3.79L16.71 9.5l-.71.71L18.79 13 16 15.79l.71.71L19 14.21V18h.5l2.85-2.86L20.21 13l2.14-2.15L19.5 8zm1 1.91.94.94-.94.94zm0 4.3.94.93-.94.94z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-50.svg�����������������������������0000664�0000000�0000000�00000000332�14753064456�0026022�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 13H8V6h8m.67-2H15V2H9v2H7.33A1.33 1.33 0 0 0 6 5.33v15.34C6 21.4 6.6 22 7.33 22h9.34A1.33 1.33 0 0 0 18 20.67V5.33C18 4.6 17.4 4 16.67 4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-60-bluetooth.svg�������������������0000664�0000000�0000000�00000000551�14753064456�0030031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 2v2H3.33A1.33 1.33 0 0 0 2 5.33v15.34C2 21.4 2.6 22 3.33 22h9.34c.73 0 1.33-.6 1.33-1.33V5.33A1.33 1.33 0 0 0 12.67 4H11V2zM4 6h8v6H4zm15 2v3.79L16.71 9.5l-.71.71L18.79 13 16 15.79l.71.71L19 14.21V18h.5l2.85-2.86L20.21 13l2.14-2.15L19.5 8zm1 1.91.94.94-.94.94zm0 4.3.94.93-.94.94z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-60.svg�����������������������������0000664�0000000�0000000�00000000332�14753064456�0026023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 12H8V6h8m.67-2H15V2H9v2H7.33A1.33 1.33 0 0 0 6 5.33v15.34C6 21.4 6.6 22 7.33 22h9.34A1.33 1.33 0 0 0 18 20.67V5.33C18 4.6 17.4 4 16.67 4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-70-bluetooth.svg�������������������0000664�0000000�0000000�00000000551�14753064456�0030032�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 2v2H3.33A1.33 1.33 0 0 0 2 5.33v15.34C2 21.4 2.6 22 3.33 22h9.34c.73 0 1.33-.6 1.33-1.33V5.33A1.33 1.33 0 0 0 12.67 4H11V2zM4 6h8v4H4zm15 2v3.79L16.71 9.5l-.71.71L18.79 13 16 15.79l.71.71L19 14.21V18h.5l2.85-2.86L20.21 13l2.14-2.15L19.5 8zm1 1.91.94.94-.94.94zm0 4.3.94.93-.94.94z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-70.svg�����������������������������0000664�0000000�0000000�00000000332�14753064456�0026024�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 10H8V6h8m.67-2H15V2H9v2H7.33A1.33 1.33 0 0 0 6 5.33v15.34C6 21.4 6.6 22 7.33 22h9.34A1.33 1.33 0 0 0 18 20.67V5.33C18 4.6 17.4 4 16.67 4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-80-bluetooth.svg�������������������0000664�0000000�0000000�00000000551�14753064456�0030033�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 2v2H3.33A1.33 1.33 0 0 0 2 5.33v15.34C2 21.4 2.6 22 3.33 22h9.34c.73 0 1.33-.6 1.33-1.33V5.33A1.33 1.33 0 0 0 12.67 4H11V2zM4 6h8v3H4zm15 2v3.79L16.71 9.5l-.71.71L18.79 13 16 15.79l.71.71L19 14.21V18h.5l2.85-2.86L20.21 13l2.14-2.15L19.5 8zm1 1.91.94.94-.94.94zm0 4.3.94.93-.94.94z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-80.svg�����������������������������0000664�0000000�0000000�00000000331�14753064456�0026024�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 9H8V6h8m.67-2H15V2H9v2H7.33A1.33 1.33 0 0 0 6 5.33v15.34C6 21.4 6.6 22 7.33 22h9.34A1.33 1.33 0 0 0 18 20.67V5.33C18 4.6 17.4 4 16.67 4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-90-bluetooth.svg�������������������0000664�0000000�0000000�00000000551�14753064456�0030034�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 2v2H3.33A1.33 1.33 0 0 0 2 5.33v15.34C2 21.4 2.6 22 3.33 22h9.34c.73 0 1.33-.6 1.33-1.33V5.33A1.33 1.33 0 0 0 12.67 4H11V2zM4 6h8v2H4zm15 2v3.79L16.71 9.5l-.71.71L18.79 13 16 15.79l.71.71L19 14.21V18h.5l2.85-2.86L20.21 13l2.14-2.15L19.5 8zm1 1.91.94.94-.94.94zm0 4.3.94.93-.94.94z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-90.svg�����������������������������0000664�0000000�0000000�00000000331�14753064456�0026025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 8H8V6h8m.67-2H15V2H9v2H7.33A1.33 1.33 0 0 0 6 5.33v15.34C6 21.4 6.6 22 7.33 22h9.34A1.33 1.33 0 0 0 18 20.67V5.33C18 4.6 17.4 4 16.67 4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-alert-bluetooth.svg����������������0000664�0000000�0000000�00000000511�14753064456�0030707�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 2v2H3.3C2.6 4 2 4.6 2 5.3v15.3c0 .8.6 1.4 1.3 1.4h9.3c.7 0 1.3-.6 1.3-1.3V5.3c.1-.7-.5-1.3-1.2-1.3H11V2zm14 6v3.8l-2.3-2.3-.7.7 2.8 2.8-2.8 2.8.7.7 2.3-2.3V18h.5l2.9-2.9-2.2-2.1 2.1-2.1L19.5 8zM7 8h2v6H7m13-4.1.9.9-.9 1zm0 4.3.9.9-.9 1zM7 16h2v2H7z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-alert-variant-outline.svg����������0000664�0000000�0000000�00000000357�14753064456�0032033�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 20H6V6h8m.67-2H13V2H7v2H5.33C4.6 4 4 4.6 4 5.33v15.34C4 21.4 4.6 22 5.33 22h9.34c.73 0 1.33-.6 1.33-1.33V5.33C16 4.6 15.4 4 14.67 4M21 7h-2v6h2V8m0 7h-2v2h2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-alert-variant.svg������������������0000664�0000000�0000000�00000000346�14753064456�0030354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.67 4H13V2H7v2H5.33C4.6 4 4 4.6 4 5.33v15.34C4 21.4 4.6 22 5.33 22h9.34c.73 0 1.33-.6 1.33-1.33V5.33C16 4.6 15.4 4 14.67 4M21 13h-2V7h2zm0 4h-2v-2h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-alert.svg��������������������������0000664�0000000�0000000�00000000327�14753064456�0026711�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 14h-2V8h2m0 10h-2v-2h2m3.7-12H15V2H9v2H7.3C6.6 4 6 4.6 6 5.3v15.3c0 .8.6 1.4 1.3 1.4h9.3c.7 0 1.3-.6 1.3-1.3V5.3c.1-.7-.5-1.3-1.2-1.3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-arrow-down-outline.svg�������������0000664�0000000�0000000�00000000402�14753064456�0031350�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.54 22H7.33C6.6 22 6 21.4 6 20.67V5.33C6 4.6 6.6 4 7.33 4H9V2h6v2h1.67C17.4 4 18 4.6 18 5.33V12c-.7 0-1.37.13-2 .35V6H8v14h4.35c.26.75.65 1.42 1.19 2m1.4-3.5 3 3 3-3h-2v-4h-2v4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-arrow-down.svg���������������������0000664�0000000�0000000�00000000365�14753064456�0027703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.54 22H7.33C6.6 22 6 21.4 6 20.67V5.33C6 4.6 6.6 4 7.33 4H9V2h6v2h1.67C17.4 4 18 4.6 18 5.33V12c-3.31 0-6 2.69-6 6 0 1.54.58 2.94 1.54 4m1.4-3.5 3 3 3-3h-2v-4h-2v4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-arrow-up-outline.svg���������������0000664�0000000�0000000�00000000400�14753064456�0031023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.54 22H7.33C6.6 22 6 21.4 6 20.67V5.33C6 4.6 6.6 4 7.33 4H9V2h6v2h1.67C17.4 4 18 4.6 18 5.33V12c-.7 0-1.37.13-2 .35V6H8v14h4.35c.26.75.65 1.42 1.19 2m7.4-4.5-3-3-3 3h2v4h2v-4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-arrow-up.svg�����������������������0000664�0000000�0000000�00000000363�14753064456�0027356�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.54 22H7.33C6.6 22 6 21.4 6 20.67V5.33C6 4.6 6.6 4 7.33 4H9V2h6v2h1.67C17.4 4 18 4.6 18 5.33V12c-3.31 0-6 2.69-6 6 0 1.54.58 2.94 1.54 4m7.4-4.5-3-3-3 3h2v4h2v-4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-bluetooth-variant.svg��������������0000664�0000000�0000000�00000000547�14753064456�0031255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 2v2H7.33A1.33 1.33 0 0 0 6 5.33v15.34C6 21.4 6.6 22 7.33 22h9.34A1.33 1.33 0 0 0 18 20.67V5.33C18 4.6 17.4 4 16.67 4H15V2zm2.83 6h.5l2.85 2.85L13.04 13l2.13 2.14L12.33 18h-.5v-3.79L9.54 16.5l-.71-.71L11.62 13l-2.79-2.79.71-.71 2.29 2.29zm1 1.91v1.88l.94-.94zm0 4.3v1.87l.94-.94z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-bluetooth.svg����������������������0000664�0000000�0000000�00000000536�14753064456�0027611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 2v2H3.33A1.33 1.33 0 0 0 2 5.33v15.34C2 21.4 2.6 22 3.33 22h9.34c.73 0 1.33-.6 1.33-1.33V5.33A1.33 1.33 0 0 0 12.67 4H11V2zm14 6v3.79L16.71 9.5l-.71.71L18.79 13 16 15.79l.71.71L19 14.21V18h.5l2.85-2.86L20.21 13l2.14-2.15L19.5 8zm1 1.91.94.94-.94.94zm0 4.3.94.93-.94.94z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-charging-10.svg��������������������0000664�0000000�0000000�00000000400�14753064456�0027572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.05 11h-3V4l-5 10h3v8M12 18H4l.05-12h8m.67-2h-1.67V2h-6v2H3.38a1.33 1.33 0 0 0-1.33 1.33v15.34c0 .73.6 1.33 1.33 1.33h9.34c.73 0 1.33-.6 1.33-1.33V5.33A1.33 1.33 0 0 0 12.72 4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-charging-100.svg�������������������0000664�0000000�0000000�00000000346�14753064456�0027663�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 11h-3V4l-5 10h3v8M12.67 4H11V2H5v2H3.33A1.33 1.33 0 0 0 2 5.33v15.34C2 21.4 2.6 22 3.33 22h9.34c.73 0 1.33-.6 1.33-1.33V5.33A1.33 1.33 0 0 0 12.67 4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-charging-20.svg��������������������0000664�0000000�0000000�00000000373�14753064456�0027604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.05 11h-3V4l-5 10h3v8m-6-5h-8V6h8m.67-2h-1.67V2h-6v2H3.38a1.33 1.33 0 0 0-1.33 1.33v15.34c0 .73.6 1.33 1.33 1.33h9.34c.73 0 1.33-.6 1.33-1.33V5.33A1.33 1.33 0 0 0 12.72 4"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-charging-30.svg��������������������0000664�0000000�0000000�00000000361�14753064456�0027602�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 15H4V6h8m.67-2H11V2H5v2H3.33A1.33 1.33 0 0 0 2 5.33v15.34C2 21.4 2.6 22 3.33 22h9.34c.73 0 1.33-.6 1.33-1.33V5.33A1.33 1.33 0 0 0 12.67 4M23 11h-3V4l-5 10h3v8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-charging-40.svg��������������������0000664�0000000�0000000�00000000302�14753064456�0027576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 4h-2V2H5v2H3c-.6 0-1 .4-1 1v16c0 .6.4 1 1 1h10c.6 0 1-.4 1-1V5c0-.6-.4-1-1-1m-1 10.5H4V6h8zM23 11h-3V4l-5 10h3v8"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-charging-50.svg��������������������0000664�0000000�0000000�00000000357�14753064456�0027611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 11h-3V4l-5 10h3v8m-6-9H4V6h8m.67-2H11V2H5v2H3.33A1.33 1.33 0 0 0 2 5.33v15.34C2 21.4 2.6 22 3.33 22h9.34c.73 0 1.33-.6 1.33-1.33V5.33A1.33 1.33 0 0 0 12.67 4"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-charging-60.svg��������������������0000664�0000000�0000000�00000000361�14753064456�0027605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 11H4V6h8m.67-2H11V2H5v2H3.33A1.33 1.33 0 0 0 2 5.33v15.34C2 21.4 2.6 22 3.33 22h9.34c.73 0 1.33-.6 1.33-1.33V5.33A1.33 1.33 0 0 0 12.67 4M23 11h-3V4l-5 10h3v8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-charging-70.svg��������������������0000664�0000000�0000000�00000000361�14753064456�0027606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10H4V6h8m.67-2H11V2H5v2H3.33A1.33 1.33 0 0 0 2 5.33v15.34C2 21.4 2.6 22 3.33 22h9.34c.73 0 1.33-.6 1.33-1.33V5.33A1.33 1.33 0 0 0 12.67 4M23 11h-3V4l-5 10h3v8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-charging-80.svg��������������������0000664�0000000�0000000�00000000357�14753064456�0027614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 11h-3V4l-5 10h3v8M12 9H4V6h8m.67-2H11V2H5v2H3.33A1.33 1.33 0 0 0 2 5.33v15.34C2 21.4 2.6 22 3.33 22h9.34c.73 0 1.33-.6 1.33-1.33V5.33A1.33 1.33 0 0 0 12.67 4"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-charging-90.svg��������������������0000664�0000000�0000000�00000000357�14753064456�0027615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 11h-3V4l-5 10h3v8M12 8H4V6h8m.67-2H11V2H5v2H3.33A1.33 1.33 0 0 0 2 5.33v15.34C2 21.4 2.6 22 3.33 22h9.34c.73 0 1.33-.6 1.33-1.33V5.33A1.33 1.33 0 0 0 12.67 4"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-charging-high.svg������������������0000664�0000000�0000000�00000000420�14753064456�0030273�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20H4V6h8m.67-2H11V2H5v2H3.33C2.6 4 2 4.6 2 5.33v15.34C2 21.4 2.6 22 3.33 22h9.34c.74 0 1.33-.59 1.33-1.33V5.33C14 4.6 13.4 4 12.67 4M11 16H5v3h6zm0-9H5v3h6zm0 4.5H5v3h6zM23 10h-3V3l-5 10h3v8"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-charging-low.svg�������������������0000664�0000000�0000000�00000000367�14753064456�0030167�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20H4V6h8m.67-2H11V2H5v2H3.33C2.6 4 2 4.6 2 5.33v15.34C2 21.4 2.6 22 3.33 22h9.34c.74 0 1.33-.59 1.33-1.33V5.33C14 4.6 13.4 4 12.67 4M11 16H5v3h6zm12-6h-3V3l-5 10h3v8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-charging-medium.svg����������������0000664�0000000�0000000�00000000405�14753064456�0030637�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20H4V6h8m.67-2H11V2H5v2H3.33C2.6 4 2 4.6 2 5.33v15.34C2 21.4 2.6 22 3.33 22h9.34c.74 0 1.33-.59 1.33-1.33V5.33C14 4.6 13.4 4 12.67 4M11 16H5v3h6zm0-4.5H5v3h6zM23 10h-3V3l-5 10h3v8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-charging-outline.svg���������������0000664�0000000�0000000�00000000400�14753064456�0031031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.05 11h-3V4l-5 10h3v8M12 20H4l.05-14h8m.67-2h-1.67V2h-6v2H3.38a1.33 1.33 0 0 0-1.33 1.33v15.34c0 .73.6 1.33 1.33 1.33h9.34c.73 0 1.33-.6 1.33-1.33V5.33A1.33 1.33 0 0 0 12.72 4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-charging-wireless-10.svg�����������0000664�0000000�0000000�00000000511�14753064456�0031430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.07 4.93-1.41 1.41c3.13 3.12 3.13 8.19 0 11.32l1.41 1.41c3.9-3.9 3.9-10.23 0-14.14m-2.83 2.83-1.41 1.41a4.01 4.01 0 0 1 0 5.66l1.41 1.41a6 6 0 0 0 0-8.48M13 4h-2V2H5v2H3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1m-1 14.5H4V6h8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-charging-wireless-20.svg�����������0000664�0000000�0000000�00000000507�14753064456�0031436�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.07 4.93-1.41 1.41c3.13 3.12 3.13 8.19 0 11.32l1.41 1.41c3.9-3.9 3.9-10.23 0-14.14m-2.83 2.83-1.41 1.41a4.01 4.01 0 0 1 0 5.66l1.41 1.41a6 6 0 0 0 0-8.48M13 4h-2V2H5v2H3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1m-1 13H4V6h8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-charging-wireless-30.svg�����������0000664�0000000�0000000�00000000507�14753064456�0031437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.07 4.93-1.41 1.41c3.13 3.12 3.13 8.19 0 11.32l1.41 1.41c3.9-3.9 3.9-10.23 0-14.14m-2.83 2.83-1.41 1.41a4.01 4.01 0 0 1 0 5.66l1.41 1.41a6 6 0 0 0 0-8.48M13 4h-2V2H5v2H3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1m-1 12H4V6h8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-charging-wireless-40.svg�����������0000664�0000000�0000000�00000000511�14753064456�0031433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.07 4.93-1.41 1.41c3.13 3.12 3.13 8.19 0 11.32l1.41 1.41c3.9-3.9 3.9-10.23 0-14.14m-2.83 2.83-1.41 1.41a4.01 4.01 0 0 1 0 5.66l1.41 1.41a6 6 0 0 0 0-8.48M13 4h-2V2H5v2H3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1m-1 10.5H4V6h8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-charging-wireless-50.svg�����������0000664�0000000�0000000�00000000506�14753064456�0031440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.07 4.93-1.41 1.41c3.13 3.12 3.13 8.19 0 11.32l1.41 1.41c3.9-3.9 3.9-10.23 0-14.14m-2.83 2.83-1.41 1.41a4.01 4.01 0 0 1 0 5.66l1.41 1.41a6 6 0 0 0 0-8.48M13 4h-2V2H5v2H3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1m-1 9H4V6h8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-charging-wireless-60.svg�����������0000664�0000000�0000000�00000000510�14753064456�0031434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.07 4.93-1.41 1.41c3.13 3.12 3.13 8.19 0 11.32l1.41 1.41c3.9-3.9 3.9-10.23 0-14.14m-2.83 2.83-1.41 1.41a4.01 4.01 0 0 1 0 5.66l1.41 1.41a6 6 0 0 0 0-8.48M13 4h-2V2H5v2H3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1m-1 7.6H4V6h8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-charging-wireless-70.svg�����������0000664�0000000�0000000�00000000506�14753064456�0031442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.07 4.93-1.41 1.41c3.13 3.12 3.13 8.19 0 11.32l1.41 1.41c3.9-3.9 3.9-10.23 0-14.14m-2.83 2.83-1.41 1.41a4.01 4.01 0 0 1 0 5.66l1.41 1.41a6 6 0 0 0 0-8.48M13 4h-2V2H5v2H3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1m-1 6H4V6h8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-charging-wireless-80.svg�����������0000664�0000000�0000000�00000000506�14753064456�0031443�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.07 4.93-1.41 1.41c3.13 3.12 3.13 8.19 0 11.32l1.41 1.41c3.9-3.9 3.9-10.23 0-14.14m-2.83 2.83-1.41 1.41a4.01 4.01 0 0 1 0 5.66l1.41 1.41a6 6 0 0 0 0-8.48M13 4h-2V2H5v2H3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1m-1 5H4V6h8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-charging-wireless-90.svg�����������0000664�0000000�0000000�00000000510�14753064456�0031437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.07 4.93-1.41 1.41c3.13 3.12 3.13 8.19 0 11.32l1.41 1.41c3.9-3.9 3.9-10.23 0-14.14m-2.83 2.83-1.41 1.41a4.01 4.01 0 0 1 0 5.66l1.41 1.41a6 6 0 0 0 0-8.48M13 4h-2V2H5v2H3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1m-1 3.5H4V6h8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-charging-wireless-alert.svg��������0000664�0000000�0000000�00000000503�14753064456�0032320�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 4h-2V2H5v2H3c-.6 0-1 .4-1 1v16c0 .6.4 1 1 1h10c.6 0 1-.4 1-1V5c0-.6-.4-1-1-1M9 18H7v-2h2zm0-4H7V8h2zm11.1-9.1-1.4 1.4c3.1 3.1 3.1 8.2 0 11.3l1.4 1.4c3.9-3.8 3.9-10.2 0-14.1m-2.9 2.9-1.4 1.4c1.6 1.6 1.6 4.1 0 5.7l1.4 1.4c2.4-2.4 2.4-6.2 0-8.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-charging-wireless-outline.svg������0000664�0000000�0000000�00000000507�14753064456�0032674�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.07 4.93-1.41 1.41c3.13 3.12 3.13 8.19 0 11.32l1.41 1.41c3.9-3.9 3.9-10.23 0-14.14m-2.83 2.83-1.41 1.41a4.01 4.01 0 0 1 0 5.66l1.41 1.41a6 6 0 0 0 0-8.48M13 4h-2V2H5v2H3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1m-1 16H4V6h8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-charging-wireless.svg��������������0000664�0000000�0000000�00000000467�14753064456�0031224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 4h-2V2H5v2H3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1m7.07.93-1.41 1.41c3.13 3.12 3.13 8.19 0 11.32l1.41 1.41c3.9-3.9 3.9-10.23 0-14.14m-2.83 2.83-1.41 1.41a4.01 4.01 0 0 1 0 5.66l1.41 1.41a6 6 0 0 0 0-8.48"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-charging.svg�����������������������0000664�0000000�0000000�00000000347�14753064456�0027366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.67 4H15V2H9v2H7.33A1.33 1.33 0 0 0 6 5.33v15.33C6 21.4 6.6 22 7.33 22h9.33c.74 0 1.34-.6 1.34-1.33V5.33C18 4.6 17.4 4 16.67 4M11 20v-5.5H9L13 7v5.5h2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-check-outline.svg������������������0000664�0000000�0000000�00000000450�14753064456�0030331�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.75 21.16-2.75-3L15.16 17l1.59 1.59L20.34 15l1.16 1.41zM12.35 20H8V6h8v6.35c.63-.22 1.3-.35 2-.35V5.33C18 4.6 17.4 4 16.67 4H15V2H9v2H7.33C6.6 4 6 4.6 6 5.33v15.34C6 21.4 6.6 22 7.33 22h6.21c-.54-.58-.93-1.25-1.19-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-check.svg��������������������������0000664�0000000�0000000�00000000423�14753064456�0026654�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.75 21.16-2.75-3L15.16 17l1.59 1.59L20.34 15l1.16 1.41zM12 18c0-3.31 2.69-6 6-6V5.33C18 4.6 17.4 4 16.67 4H15V2H9v2H7.33C6.6 4 6 4.6 6 5.33v15.34C6 21.4 6.6 22 7.33 22h6.21A5.93 5.93 0 0 1 12 18"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-clock-outline.svg������������������0000664�0000000�0000000�00000000610�14753064456�0030345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 9.29V5.33C18 4.6 17.4 4 16.67 4H15V2H9v2H7.33C6.6 4 6 4.6 6 5.33v15.34C6 21.4 6.6 22 7.33 22h5.08c1.05.63 2.28 1 3.59 1 3.87 0 7-3.13 7-7 0-3.17-2.11-5.85-5-6.71M8 6h8v3c-3.87 0-7 3.13-7 7 0 1.5.47 2.87 1.26 4H8zm8 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5m.5-4.75 2.86 1.69-.75 1.22L15 17v-5h1.5z"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-clock.svg��������������������������0000664�0000000�0000000�00000000523�14753064456�0026673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.5 16.25 2.86 1.69-.75 1.22L15 17v-5h1.5zM23 16c0 3.87-3.13 7-7 7-1.31 0-2.54-.37-3.59-1H7.33C6.6 22 6 21.4 6 20.67V5.33C6 4.6 6.6 4 7.33 4H9V2h6v2h1.67C17.4 4 18 4.6 18 5.33v3.96c2.89.86 5 3.54 5 6.71m-2 0c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-heart-outline.svg������������������0000664�0000000�0000000�00000000521�14753064456�0030356�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19 16.2-.6-.5c-2-1.9-3.4-3.2-3.4-4.7 0-1.2 1-2.2 2.2-2.2.7 0 1.3.3 1.8.8.5-.5 1.1-.8 1.8-.8 1.2 0 2.2 1 2.2 2.2 0 1.5-1.4 2.7-3.4 4.6zM12.7 4H11V2H5v2H3.3C2.6 4 2 4.6 2 5.3v15.3c0 .8.6 1.4 1.3 1.4h9.3c.7 0 1.3-.6 1.3-1.3V5.3c.1-.7-.5-1.3-1.2-1.3M12 20H4V6h8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-heart-variant.svg������������������0000664�0000000�0000000�00000000573�14753064456�0030352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.67 4H15V2H9v2H7.33A1.34 1.34 0 0 0 6 5.33v15.34A1.34 1.34 0 0 0 7.33 22h9.34A1.34 1.34 0 0 0 18 20.67V5.33A1.34 1.34 0 0 0 16.67 4m-4.09 11.64-.58.53-.58-.53C9.36 13.77 8 12.54 8 11a2.18 2.18 0 0 1 2.2-2.2 2.4 2.4 0 0 1 1.8.83 2.4 2.4 0 0 1 1.8-.83A2.18 2.18 0 0 1 16 11c0 1.54-1.36 2.77-3.42 4.64"/></svg>�������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-heart.svg��������������������������0000664�0000000�0000000�00000000565�14753064456�0026711�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.67 4H11V2H5v2H3.33A1.34 1.34 0 0 0 2 5.33v15.34A1.34 1.34 0 0 0 3.33 22h9.34A1.34 1.34 0 0 0 14 20.67V5.33A1.34 1.34 0 0 0 12.67 4M19 16.17l-.58-.53C16.36 13.77 15 12.54 15 11a2.18 2.18 0 0 1 2.2-2.2 2.4 2.4 0 0 1 1.8.83 2.4 2.4 0 0 1 1.8-.83A2.18 2.18 0 0 1 23 11c0 1.5-1.36 2.74-3.42 4.61Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-high.svg���������������������������0000664�0000000�0000000�00000000373�14753064456�0026522�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 20H8V6h8m.67-2H15V2H9v2H7.33C6.6 4 6 4.6 6 5.33v15.34C6 21.4 6.6 22 7.33 22h9.34c.74 0 1.33-.59 1.33-1.33V5.33C18 4.6 17.4 4 16.67 4M15 16H9v3h6zm0-9H9v3h6zm0 4.5H9v3h6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-lock-open.svg����������������������0000664�0000000�0000000�00000000734�14753064456�0027473�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.8 16h-4.3v-2.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3v.5h1.3v-.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V16c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3m-8.53 6H5.33C4.6 22 4 21.4 4 20.67V5.33C4 4.6 4.6 4 5.33 4H7V2h6v2h1.67C15.4 4 16 4.6 16 5.33v3.78c-2.14.44-3.8 2.27-3.8 4.39v1.24c-.7.6-1.2 1.5-1.2 2.46v3.5c0 .23.03.45.07.67l.01.02c.04.21.11.41.19.61"/></svg>������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-lock.svg���������������������������0000664�0000000�0000000�00000000700�14753064456�0026525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.8 16v-1.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V16c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3m-1.3 0h-3v-1.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3zm-7.23 6H5.33C4.6 22 4 21.4 4 20.67V5.33C4 4.6 4.6 4 5.33 4H7V2h6v2h1.67C15.4 4 16 4.6 16 5.33v4.78c-2.14.44-3.8 2.27-3.8 4.39v.24c-.7.6-1.2 1.5-1.2 2.46v3.5c0 .46.1.9.27 1.3"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-low.svg����������������������������0000664�0000000�0000000�00000000343�14753064456�0026401�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 20H8V6h8m.67-2H15V2H9v2H7.33C6.6 4 6 4.6 6 5.33v15.34C6 21.4 6.6 22 7.33 22h9.34c.74 0 1.33-.59 1.33-1.33V5.33C18 4.6 17.4 4 16.67 4M15 16H9v3h6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-medium.svg�������������������������0000664�0000000�0000000�00000000360�14753064456�0027057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 20H8V6h8m.67-2H15V2H9v2H7.33C6.6 4 6 4.6 6 5.33v15.34C6 21.4 6.6 22 7.33 22h9.34c.74 0 1.33-.59 1.33-1.33V5.33C18 4.6 17.4 4 16.67 4M15 16H9v3h6zm0-4.5H9v3h6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-minus-outline.svg������������������0000664�0000000�0000000�00000000365�14753064456�0030414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.54 22H7.33C6.6 22 6 21.4 6 20.67V5.33C6 4.6 6.6 4 7.33 4H9V2h6v2h1.67C17.4 4 18 4.6 18 5.33V12c-.7 0-1.37.13-2 .35V6H8v14h4.35c.26.75.65 1.42 1.19 2M22 17v2h-8v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-minus-variant.svg������������������0000664�0000000�0000000�00000000327�14753064456�0030377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.67 4C17.4 4 18 4.6 18 5.33v15.34A1.33 1.33 0 0 1 16.67 22H7.33C6.6 22 6 21.4 6 20.67V5.33A1.33 1.33 0 0 1 7.33 4H9V2h6v2zM8 12v2h8v-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-minus.svg��������������������������0000664�0000000�0000000�00000000350�14753064456�0026731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.54 22H7.33C6.6 22 6 21.4 6 20.67V5.33C6 4.6 6.6 4 7.33 4H9V2h6v2h1.67C17.4 4 18 4.6 18 5.33V12c-3.31 0-6 2.69-6 6 0 1.54.58 2.94 1.54 4M22 17v2h-8v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-negative.svg�����������������������0000664�0000000�0000000�00000000346�14753064456�0027405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.67 4A1.33 1.33 0 0 1 13 5.33v15.34c0 .73-.6 1.33-1.33 1.33H2.33C1.6 22 1 21.4 1 20.67V5.33A1.33 1.33 0 0 1 2.33 4H4V2h6v2zM15 12h8v2h-8zM3 13h8V6H3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-off-outline.svg��������������������0000664�0000000�0000000�00000000422�14753064456�0030025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 17.35 3.38 2.73 2.11 4 6 7.89v12.78A1.34 1.34 0 0 0 7.33 22h9.34A1.34 1.34 0 0 0 18 20.67v-.78l2.84 2.84 1.27-1.27M16 20H8V9.89l8 8M16 6v6.8l2 2V5.33A1.34 1.34 0 0 0 16.67 4H15V2H9v2H7.21l2 2Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-off.svg����������������������������0000664�0000000�0000000�00000000370�14753064456�0026352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 14.8 7.21 4H9V2h6v2h1.67A1.34 1.34 0 0 1 18 5.33m0 12.02L3.38 2.73 2.11 4 6 7.89v12.78A1.34 1.34 0 0 0 7.33 22h9.34A1.34 1.34 0 0 0 18 20.67v-.78l2.84 2.84 1.27-1.27Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-outline.svg������������������������0000664�0000000�0000000�00000000332�14753064456�0027255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 20H8V6h8m.67-2H15V2H9v2H7.33A1.33 1.33 0 0 0 6 5.33v15.34C6 21.4 6.6 22 7.33 22h9.34A1.33 1.33 0 0 0 18 20.67V5.33C18 4.6 17.4 4 16.67 4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-plus-outline.svg�������������������0000664�0000000�0000000�00000000411�14753064456�0030234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.54 22H7.33C6.6 22 6 21.4 6 20.67V5.33C6 4.6 6.6 4 7.33 4H9V2h6v2h1.67C17.4 4 18 4.6 18 5.33V12c-.7 0-1.37.13-2 .35V6H8v14h4.35c.26.75.65 1.42 1.19 2M22 17v2h-3v3h-2v-3h-3v-2h3v-3h2v3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-plus-variant.svg�������������������0000664�0000000�0000000�00000000354�14753064456�0030227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.67 4C17.4 4 18 4.6 18 5.33v15.34A1.33 1.33 0 0 1 16.67 22H7.33C6.6 22 6 21.4 6 20.67V5.33A1.33 1.33 0 0 1 7.33 4H9V2h6v2zM16 14v-2h-3V9h-2v3H8v2h3v3h2v-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-plus.svg���������������������������0000664�0000000�0000000�00000000374�14753064456�0026567�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.54 22H7.33C6.6 22 6 21.4 6 20.67V5.33C6 4.6 6.6 4 7.33 4H9V2h6v2h1.67C17.4 4 18 4.6 18 5.33V12c-3.31 0-6 2.69-6 6 0 1.54.58 2.94 1.54 4M22 17v2h-3v3h-2v-3h-3v-2h3v-3h2v3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-positive.svg�����������������������0000664�0000000�0000000�00000000372�14753064456�0027444�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.67 4A1.33 1.33 0 0 1 13 5.33v15.34c0 .73-.6 1.33-1.33 1.33H2.33C1.6 22 1 21.4 1 20.67V5.33A1.33 1.33 0 0 1 2.33 4H4V2h6v2zM23 14h-3v3h-2v-3h-3v-2h3V9h2v3h3zM3 13h8V6H3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-remove-outline.svg�����������������0000664�0000000�0000000�00000000532�14753064456�0030552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.54 22H7.33C6.6 22 6 21.4 6 20.67V5.33C6 4.6 6.6 4 7.33 4H9V2h6v2h1.67C17.4 4 18 4.6 18 5.33V12c-.7 0-1.37.13-2 .35V6H8v14h4.35c.26.75.65 1.42 1.19 2m8-1.88-1.42 1.42L18 19.41l-2.12 2.13-1.41-1.42L16.59 18l-2.12-2.12 1.41-1.41L18 16.59l2.12-2.12 1.42 1.41L19.41 18z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-remove.svg�������������������������0000664�0000000�0000000�00000000515�14753064456�0027076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.54 22H7.33C6.6 22 6 21.4 6 20.67V5.33C6 4.6 6.6 4 7.33 4H9V2h6v2h1.67C17.4 4 18 4.6 18 5.33V12c-3.31 0-6 2.69-6 6 0 1.54.58 2.94 1.54 4m8-1.88-1.42 1.42L18 19.41l-2.12 2.13-1.41-1.42L16.59 18l-2.12-2.12 1.41-1.41L18 16.59l2.12-2.12 1.42 1.41L19.41 18z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-sync-outline.svg�������������������0000664�0000000�0000000�00000000643�14753064456�0030234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.54 22H7.33C6.6 22 6 21.4 6 20.67V5.33C6 4.6 6.6 4 7.33 4H9V2h6v2h1.67C17.4 4 18 4.6 18 5.33V12c-.7 0-1.37.13-2 .35V6H8v14h4.35c.26.75.65 1.42 1.19 2M18 13l2.25 2.25L18 17.5V16c-1.85 0-3.06 1.96-2.24 3.62l-1.09 1.09c-1.76-2.66.14-6.21 3.33-6.21zm0 11-2.25-2.25L18 19.5V21c1.85 0 3.06-1.96 2.24-3.62l1.09-1.09c1.76 2.66-.14 6.21-3.33 6.21z"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-sync.svg���������������������������0000664�0000000�0000000�00000000626�14753064456�0026560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.54 22H7.33C6.6 22 6 21.4 6 20.67V5.33C6 4.6 6.6 4 7.33 4H9V2h6v2h1.67C17.4 4 18 4.6 18 5.33V12c-3.31 0-6 2.69-6 6 0 1.54.58 2.94 1.54 4M18 13l2.25 2.25L18 17.5V16c-1.85 0-3.06 1.96-2.24 3.62l-1.09 1.09c-1.76-2.66.14-6.21 3.33-6.21zm0 11-2.25-2.25L18 19.5V21c1.85 0 3.06-1.96 2.24-3.62l1.09-1.09c1.76 2.66-.14 6.21-3.33 6.21z"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-unknown-bluetooth.svg��������������0000664�0000000�0000000�00000001040�14753064456�0031275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 2v2H3.33A1.33 1.33 0 0 0 2 5.33v15.33C2 21.4 2.6 22 3.33 22h9.34c.73 0 1.33-.6 1.33-1.34V5.33C14 4.59 13.4 4 12.67 4H11V2zm3 4a4 4 0 0 1 4 4c0 .88-.36 1.68-.93 2.25l-.9.92c-.54.54-.92 1.01-1.08 1.83H7.05c.11-.9.51-1.72 1.12-2.33l1.24-1.26c.37-.36.59-.86.59-1.41a2 2 0 0 0-2-2 2 2 0 0 0-2 2H4a4 4 0 0 1 4-4m11 2v3.79L16.71 9.5l-.71.71L18.79 13 16 15.79l.71.71L19 14.21V18h.5l2.85-2.86L20.21 13l2.14-2.15L19.5 8zm1 1.91.94.94-.94.94zm0 4.3.94.93-.94.94zM7 17h2v2H7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery-unknown.svg������������������������0000664�0000000�0000000�00000000635�14753064456�0027303�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.07 12.25-.9.92c-.54.54-.92 1.01-1.08 1.83h-2.04c.11-.9.51-1.72 1.12-2.33l1.24-1.26c.37-.36.59-.86.59-1.41a2 2 0 0 0-2-2 2 2 0 0 0-2 2H8a4 4 0 0 1 4-4 4 4 0 0 1 4 4c0 .88-.36 1.68-.93 2.25M13 19h-2v-2h2m3.67-13H15V2H9v2H7.33A1.33 1.33 0 0 0 6 5.33v15.33C6 21.4 6.6 22 7.33 22h9.34c.73 0 1.33-.6 1.33-1.34V5.33C18 4.59 17.4 4 16.67 4"/></svg>���������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/battery.svg��������������������������������0000664�0000000�0000000�00000000320�14753064456�0025575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.67 4H15V2H9v2H7.33A1.33 1.33 0 0 0 6 5.33v15.34C6 21.4 6.6 22 7.33 22h9.34A1.33 1.33 0 0 0 18 20.67V5.33C18 4.6 17.4 4 16.67 4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/beach.svg����������������������������������0000664�0000000�0000000�00000000521�14753064456�0025170�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 18.54c2.13-.33 4.5-.54 7-.54v4H5c0-.65 3.2-2.14 8-3.1v-6.5c-.84.25-1.55.81-2 1.55a3.495 3.495 0 0 0-6 0c.03-3.58 3.5-6.52 8-6.91V7a1 1 0 0 1 1-1 1 1 0 0 1 1 1v.04c4.5.39 7.96 3.33 8 6.91a3.495 3.495 0 0 0-6 0c-.45-.74-1.16-1.3-2-1.56zM7 2a5 5 0 0 1-5 5V2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/beaker-alert-outline.svg�������������������0000664�0000000�0000000�00000000350�14753064456�0030141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h18v2c-1.1 0-2 .9-2 2v12c0 1.11-.89 2-2 2H7a2 2 0 0 1-2-2V7a2 2 0 0 0-2-2zm4 2v2h5v1H7v1h3v1H7v1h3v1H7v1h5v1H7v1h3v1H7v3h10V5zm14 8V7h2v6zm0 4v-2h2v2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/beaker-alert.svg���������������������������0000664�0000000�0000000�00000000356�14753064456�0026472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h18v2c-1.1 0-2 .9-2 2v12c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V7c0-1.1-.9-2-2-2zm4 6v1h3V9zm0 2v1h3v-1zm3 5v-1H7v1zm2-2v-1H7v1zm0-6V7H7v1zm9 5V7h2v6zm0 4v-2h2v2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/beaker-check-outline.svg�������������������0000664�0000000�0000000�00000000437�14753064456�0030115�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.75 21.16-2.75-3L16.16 17l1.59 1.59L21.34 15l1.16 1.41zM3 3h18v2c-1.1 0-2 .9-2 2v5c-.7 0-1.37.12-2 .34V5H7v2h5v1H7v1h3v1H7v1h3v1H7v1h5v1H7v1h3v1H7v3h6.08c.12.72.37 1.39.72 2H7a2 2 0 0 1-2-2V7a2 2 0 0 0-2-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/beaker-check.svg���������������������������0000664�0000000�0000000�00000000431�14753064456�0026432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.75 21.16-2.75-3L16.16 17l1.59 1.59L21.34 15l1.16 1.41zM3 3h18v2c-1.1 0-2 .9-2 2v5a6.005 6.005 0 0 0-5.2 9H7c-1.1 0-2-.9-2-2V7c0-1.1-.9-2-2-2zm4 6v1h3V9zm0 2v1h3v-1zm3 5v-1H7v1zm2-2v-1H7v1zm0-6V7H7v1z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/beaker-minus-outline.svg�������������������0000664�0000000�0000000�00000000363�14753064456�0030171�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 17v2h-8v-2M3 3h18v2c-1.1 0-2 .9-2 2v5c-.7 0-1.37.12-2 .34V5H7v2h5v1H7v1h3v1H7v1h3v1H7v1h5v1H7v1h3v1H7v3h6.08c.12.72.37 1.39.72 2H7a2 2 0 0 1-2-2V7a2 2 0 0 0-2-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/beaker-minus.svg���������������������������0000664�0000000�0000000�00000000356�14753064456�0026516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 17v2h-8v-2zM3 3h18v2c-1.1 0-2 .9-2 2v5a6.005 6.005 0 0 0-5.2 9H7c-1.1 0-2-.9-2-2V7c0-1.1-.9-2-2-2zm4 6v1h3V9zm0 2v1h3v-1zm3 5v-1H7v1zm2-2v-1H7v1zm0-6V7H7v1z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/beaker-outline.svg�������������������������0000664�0000000�0000000�00000000313�14753064456�0027033�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h18v2a2 2 0 0 0-2 2v12a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V7a2 2 0 0 0-2-2zm4 2v2h5v1H7v1h3v1H7v1h3v1H7v1h5v1H7v1h3v1H7v3h10V5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/beaker-plus-outline.svg��������������������0000664�0000000�0000000�00000000407�14753064456�0030020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 14h2v3h3v2h-3v3h-2v-3h-3v-2h3zM3 3h18v2c-1.1 0-2 .9-2 2v5c-.7 0-1.37.12-2 .34V5H7v2h5v1H7v1h3v1H7v1h3v1H7v1h5v1H7v1h3v1H7v3h6.08c.12.72.37 1.39.72 2H7a2 2 0 0 1-2-2V7a2 2 0 0 0-2-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/beaker-plus.svg����������������������������0000664�0000000�0000000�00000000401�14753064456�0026335�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 14h2v3h3v2h-3v3h-2v-3h-3v-2h3zM3 3h18v2c-1.1 0-2 .9-2 2v5a6.005 6.005 0 0 0-5.2 9H7c-1.1 0-2-.9-2-2V7c0-1.1-.9-2-2-2zm4 6v1h3V9zm0 2v1h3v-1zm3 5v-1H7v1zm2-2v-1H7v1zm0-6V7H7v1z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/beaker-question-outline.svg����������������0000664�0000000�0000000�00000000654�14753064456�0030710�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 3h18v2c-1.1 0-2 .9-2 2v12c0 1.11-.89 2-2 2H4a2 2 0 0 1-2-2V7a2 2 0 0 0-2-2zm4 2v2h5v1H4v1h3v1H4v1h3v1H4v1h5v1H4v1h3v1H4v3h10V5zm17.5 10.5V17H20v-1.5zm-2-5H18V10c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .97-.5 1.88-1.29 2.41l-.3.19c-.57.4-.91 1.02-.91 1.7v.2H20v-.2c0-1.19.6-2.3 1.59-2.95l.29-.19c.39-.26.62-.69.62-1.16 0-.82-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5z"/></svg>������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/beaker-question.svg������������������������0000664�0000000�0000000�00000000662�14753064456�0027232�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 3h18v2c-1.1 0-2 .9-2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V7c0-1.1-.9-2-2-2zm4 6v1h3V9zm0 2v1h3v-1zm3 5v-1H4v1zm2-2v-1H4v1zm0-6V7H4v1zm12.5 7.5V17H20v-1.5zm-2-5H18V10c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .97-.5 1.88-1.29 2.41l-.3.19c-.57.4-.91 1.02-.91 1.7v.2H20v-.2c0-1.19.6-2.3 1.59-2.95l.29-.19c.39-.26.62-.69.62-1.16 0-.82-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5z"/></svg>������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/beaker-remove-outline.svg������������������0000664�0000000�0000000�00000000535�14753064456�0030334�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.46 15.88 1.42-1.42L19 16.59l2.12-2.12 1.41 1.41L20.41 18l2.13 2.12-1.42 1.42L19 19.41l-2.12 2.12-1.41-1.41L17.59 18zM3 3h18v2c-1.1 0-2 .9-2 2v5c-.7 0-1.37.12-2 .34V5H7v2h5v1H7v1h3v1H7v1h3v1H7v1h5v1H7v1h3v1H7v3h6.08c.12.72.37 1.39.72 2H7a2 2 0 0 1-2-2V7a2 2 0 0 0-2-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/beaker-remove.svg��������������������������0000664�0000000�0000000�00000000527�14753064456�0026660�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.46 15.88 1.42-1.42L19 16.59l2.12-2.12 1.41 1.41L20.41 18l2.13 2.12-1.42 1.42L19 19.41l-2.12 2.12-1.41-1.41L17.59 18zM3 3h18v2c-1.1 0-2 .9-2 2v5a6.005 6.005 0 0 0-5.2 9H7c-1.1 0-2-.9-2-2V7c0-1.1-.9-2-2-2zm4 6v1h3V9zm0 2v1h3v-1zm3 5v-1H7v1zm2-2v-1H7v1zm0-6V7H7v1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/beaker.svg���������������������������������0000664�0000000�0000000�00000000320�14753064456�0025354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3v2a2 2 0 0 1 2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 1 2-2V3zm4 6h3v1H7zm0 2h3v1H7zm3 5H7v-1h3zm2-2H7v-1h5zm0-6H7V7h5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bed-clock.svg������������������������������0000664�0000000�0000000�00000000515�14753064456�0025754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.2 9.5 16 7.7V4h1.5v2.8l2.4 1.4zm3 2.2c.5.7.8 1.5.8 2.3v9h-2v-3H3v3H1V8h2v9h8v-6.4c-.6-1.1-1-2.3-1-3.6 0-3.9 3.1-7 7-7s7 3.1 7 7c0 1.8-.7 3.4-1.8 4.7M12 7c0 2.8 2.2 5 5 5s5-2.2 5-5-2.2-5-5-5-5 2.2-5 5m-5 9c1.7 0 3-1.3 3-3s-1.3-3-3-3-3 1.3-3 3 1.3 3 3 3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bed-double-outline.svg���������������������0000664�0000000�0000000�00000000450�14753064456�0027606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 5c-.5 0-1 .21-1.39.6S6 6.45 6 7v3c-.53 0-1 .19-1.41.59S4 11.47 4 12v5h1.34L6 19h1l.69-2h8.67l.64 2h1l.66-2H20v-5c0-.53-.19-1-.59-1.41S18.53 10 18 10V7c0-.55-.2-1-.61-1.4S16.5 5 16 5M8 7h3v3H8m5-3h3v3h-3m-7 2h12v3H6Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bed-double.svg�����������������������������0000664�0000000�0000000�00000000326�14753064456�0026133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 10V7a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v3a2 2 0 0 0-2 2v5h1.33L6 19h1l.67-2h8.66l.67 2h1l.67-2H20v-5a2 2 0 0 0-2-2m-7 0H8V7h3m5 3h-3V7h3Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bed-empty.svg������������������������������0000664�0000000�0000000�00000000175�14753064456�0026021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 7H5v7H3V5H1v15h2v-3h18v3h2v-9a4 4 0 0 0-4-4"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bed-king-outline.svg�����������������������0000664�0000000�0000000�00000000344�14753064456�0027266�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 10V7a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v3a2 2 0 0 0-2 2v5h1.33L4 19h1l.67-2h12.66l.67 2h1l.67-2H22v-5a2 2 0 0 0-2-2m-7-3h5v3h-5M6 7h5v3H6m14 5H4v-3h16Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bed-king.svg�������������������������������0000664�0000000�0000000�00000000445�14753064456�0025613�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 5c-.53 0-1 .21-1.41.6S4 6.45 4 7v3c-.55 0-1 .19-1.4.59S2 11.47 2 12v5h1.33L4 19h1l.67-2h12.66l.67 2h1l.67-2H22v-5c0-.53-.21-1-.6-1.41-.4-.4-.85-.59-1.4-.59V7c0-.55-.19-1-.59-1.4S18.53 5 18 5M6 7h5v3H6m7-3h5v3h-5Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bed-outline.svg����������������������������0000664�0000000�0000000�00000000411�14753064456�0026333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3m0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m12-3h-8v8H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4m2 8h-8V9h6c1.1 0 2 .9 2 2Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bed-queen-outline.svg����������������������0000664�0000000�0000000�00000000331�14753064456�0027447�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 10V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3a2 2 0 0 0-2 2v5h1.33L5 19h1l.67-2h10.66l.67 2h1l.67-2H21v-5a2 2 0 0 0-2-2M7 7h10v3H7m12 5H5v-3h14Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bed-queen.svg������������������������������0000664�0000000�0000000�00000000315�14753064456�0025774�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 10V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3a2 2 0 0 0-2 2v5h1.33L5 19h1l.67-2h10.66l.67 2h1l.67-2H21v-5a2 2 0 0 0-2-2m-2 0H7V7h10Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bed-single-outline.svg���������������������0000664�0000000�0000000�00000000332�14753064456�0027614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 10V7a2 2 0 0 0-2-2H9c-1.1 0-2 .9-2 2v3c-1.1 0-2 .9-2 2v5h1.33L7 19h1l.67-2h6.66l.67 2h1l.67-2H19v-5a2 2 0 0 0-2-2M9 7h6v3H9m8 5H7v-3h10Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bed-single.svg�����������������������������0000664�0000000�0000000�00000000321�14753064456�0026135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 10V7a2 2 0 0 0-2-2H9c-1.1 0-2 .9-2 2v3c-1.1 0-2.11.9-2 2v5h1.33L7 19h1l.67-2h6.66l.67 2h1l.67-2H19v-5a2 2 0 0 0-2-2m-2 0H9V7h6Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bed.svg������������������������������������0000664�0000000�0000000�00000000273�14753064456�0024664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 7h-8v7H3V5H1v15h2v-3h18v3h2v-9a4 4 0 0 0-4-4M7 13a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bee-flower.svg�����������������������������0000664�0000000�0000000�00000001727�14753064456�0026166�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.6 13v-.1l-.3-.3h-.1L9.6 12c.4-.3.8-.5 1.3-.5s1 .2 1.4.6.6.8.6 1.3-.1.9-.5 1.3zm-1.9 6.3c-.3-1-.1-2.2.7-3.8l1.2 3.1c.2.6 0 1-.6 1.3s-1 .1-1.3-.6m-5.6-6.2q.3-.9 1.2-.6l3.2 1.2c-1.6.8-2.8 1-3.8.7-.6-.3-.8-.7-.6-1.3m7.9-5h-1v1.4h-.4c-1.1 0-2 .4-2.8 1.2l-.4.6-1.4-.8c-.3-.1-.6-.1-1-.1-.6 0-1.2.2-1.7.6s-.9.8-1.1 1.4c-.2.7-.2 1.3 0 2 .3.7.6 1.2 1.1 1.5-.4 1.5-.1 2.8 1 3.9.8.8 1.7 1.2 2.8 1.2.5 0 .8 0 1.1-.1.6.8 1.4 1.3 2.4 1.3.3 0 .7 0 1-.1.6-.2 1-.6 1.4-1.1.4-.6.6-1.1.6-1.7 0-.4 0-.7-.1-1l-.6-1.4.6-.4c.8-.8 1.2-1.9 1.1-3.1H16v-1h-1.6q-.6-1.8-2.4-2.4zm5.3-1.3c-.2-.2-.3-.5-.3-.7 0-.3.1-.5.3-.7s.4-.3.7-.3.5.1.7.3c.2.1.3.4.3.7s-.1.5-.3.7-.4.2-.7.2-.5 0-.7-.2m3.4-2.7h-1.1l-.3-.9c-.2-.7-.6-1-1.3-1s-1.2.3-1.3 1l-.3.9h-1.1c-.6 0-1 .3-1.3.9q-.3.9.6 1.5l.9.5-.4 1.2c-.2.4-.1.8.1 1.2.3.4.6.6 1.1.6q.6 0 .9-.3l.8-.6.8.7c.2.1.5.2.9.2.5 0 .8-.2 1.1-.6.2-.4.3-.8.1-1.2L20.5 7l.8-.5q.9-.6.6-1.5c-.2-.7-.6-.9-1.2-.9"/></svg>�����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bee.svg������������������������������������0000664�0000000�0000000�00000001214�14753064456�0024661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.4 9C17 7.8 16.2 7 15 6.5V5h-1v1.4h-.4c-1.1 0-2 .4-2.8 1.2l-.4.4L9 7.5c-.3-.1-.6-.2-1-.2-.6 0-1.2.2-1.7.6-.6.4-.9.9-1.1 1.4-.2.7-.2 1.3 0 2 .3.7.6 1.2 1.1 1.5-.4 1.5-.1 2.8 1 3.9.8.8 1.7 1.2 2.8 1.2.5 0 .8 0 1.1-.1.6.8 1.4 1.3 2.4 1.3.3 0 .7 0 1-.1.6-.2 1-.6 1.4-1.1.4-.6.6-1.1.6-1.7 0-.4 0-.7-.1-1l-.5-1.6.6-.4c.8-.8 1.2-1.9 1.1-3.1H19V9zm-9.7 2.3c-.6-.3-.8-.7-.6-1.3q.3-.9 1.2-.6l3.2 1.2c-1.6.8-2.8 1-3.8.7m6.3 5.6c-.6.2-1 0-1.3-.6-.3-1-.1-2.2.7-3.8l1.2 3.1c.2.7 0 1.1-.6 1.3m1.2-5.3-.6-1.6v-.1l-.3-.3h-.1L12.6 9c.4-.3.8-.5 1.3-.5s1 .2 1.4.6.6.8.6 1.3c-.2.3-.4.8-.7 1.2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/beehive-off-outline.svg��������������������0000664�0000000�0000000�00000001434�14753064456�0027766�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m1.1 3 3.6 3.5c-1 .7-1.7 1.7-1.7 3 0 .6.2 1.2.5 1.7C2 11.6 1 12.9 1 14.5c0 1.3.7 2.3 1.7 3-.5.5-.7 1.2-.7 2C2 21.4 3.6 23 5.5 23h13c.8 0 1.5-.3 2.1-.7l.7.7 1.3-1.3-20.2-20zm8.1 8H6.5C5.7 11 5 10.3 5 9.5c0-.7.5-1.3 1.2-1.5zM9 21H5.5c-.8 0-1.5-.7-1.5-1.5S4.7 18 5.5 18H9zm.2-5H4.5c-.8 0-1.5-.7-1.5-1.5S3.7 13 4.5 13h6.7l1 1H12c-1.3 0-2.4.8-2.8 2m9.3 5H15v-3h1.2l2.9 2.9c-.2.1-.4.1-.6.1M7.1 3.9 5.7 2.5C6.3 1.6 7.3 1 8.5 1h7C17.4 1 19 2.6 19 4.5c0 .6-.2 1.2-.5 1.7C20 6.6 21 7.9 21 9.5c0 .6-.2 1.2-.5 1.7 1.4.5 2.5 1.8 2.5 3.3 0 1.3-.7 2.3-1.7 3q.45.6.6 1.2L19.2 16h.3c.8 0 1.5-.7 1.5-1.5s-.7-1.5-1.5-1.5h-3.3l-2-2h3.3c.8 0 1.5-.7 1.5-1.5S18.3 8 17.5 8h-6.3l-2-2h6.3c.8 0 1.5-.7 1.5-1.5S16.3 3 15.5 3h-7c-.6 0-1.2.4-1.4.9"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/beehive-outline.svg������������������������0000664�0000000�0000000�00000001564�14753064456�0027222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 14.5c0-1.56-1.03-2.87-2.45-3.32.28-.5.45-1.07.45-1.68 0-1.56-1.03-2.87-2.45-3.32.28-.5.45-1.07.45-1.68C19 2.57 17.43 1 15.5 1h-7C6.57 1 5 2.57 5 4.5c0 .61.17 1.18.45 1.68C4.04 6.63 3 7.94 3 9.5c0 .61.17 1.18.45 1.68C2.04 11.63 1 12.94 1 14.5c0 1.26.67 2.34 1.67 2.96-.42.57-.67 1.28-.67 2.04C2 21.43 3.57 23 5.5 23h13c1.93 0 3.5-1.57 3.5-3.5 0-.76-.25-1.47-.67-2.04 1-.62 1.67-1.7 1.67-2.96M8.5 3h7c.83 0 1.5.67 1.5 1.5S16.33 6 15.5 6h-7C7.67 6 7 5.33 7 4.5S7.67 3 8.5 3m-2 5h11c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-11C5.67 11 5 10.33 5 9.5S5.67 8 6.5 8M4 19.5c0-.83.67-1.5 1.5-1.5H9v3H5.5c-.83 0-1.5-.67-1.5-1.5M18.5 21H15v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5m1-5h-4.68c-.42-1.16-1.52-2-2.82-2s-2.4.84-2.82 2H4.5c-.83 0-1.5-.67-1.5-1.5S3.67 13 4.5 13h15c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/beekeeper.svg������������������������������0000664�0000000�0000000�00000000740�14753064456�0026060�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 5h-3c0-1.66-1.79-3-4-3S8 3.34 8 5H5c-.55 0-1 .45-1 1s.45 1 1 1v7a2 2 0 0 0 2 2h10c1.11 0 2-.89 2-2V7c.55 0 1-.45 1-1s-.45-1-1-1m-2 9H7V7h10zm-1.14-6c.08.32.14.65.14 1 0 2.21-1.79 4-4 4s-4-1.79-4-4c0-.35.06-.68.14-1h2.14c-.17.3-.28.63-.28 1 0 1.1.9 2 2 2s2-.9 2-2c0-.37-.11-.7-.28-1zM20 19v3H4v-3c0-.78.47-1.45 1.18-2H12c-2.72 0-5.81 1.29-6 2v1h12v-1c-.19-.71-3.28-2-6-2h6.82c.71.55 1.18 1.22 1.18 2"/></svg>��������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/beer-outline.svg���������������������������0000664�0000000�0000000�00000000564�14753064456�0026527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4 2 2 20h11l2-20zm2.2 2h10.6l-.3 3.23c-3.32 1.27-4.65.44-5.12.08-.25-.19-.61-.62-1.27-.92-.66-.31-1.56-.39-2.61-.07-.41.11-.73.29-1 .47zm2.66 4.11c.19 0 .3.04.41.09.23.1.44.35.9.7.86.66 2.86 1.46 6.09.51L15.2 20H7.8L6.71 9.06c.05-.06.2-.17.46-.35.33-.21.74-.43.83-.46h.03c.38-.11.64-.15.83-.14"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/beer.svg�����������������������������������0000664�0000000�0000000�00000000255�14753064456�0025047�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2h15l-2 20H6zm2.2 2 1.6 16h1L7.43 6.34C8.5 6 9.89 5.89 11 7c1.56 1.56 4.33.69 5.5.23L16.8 4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bell-alert-outline.svg���������������������0000664�0000000�0000000�00000000464�14753064456�0027634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a2 2 0 0 0-2 2 2 2 0 0 0 0 .29C7.12 5.14 5 7.82 5 11v6l-2 2v1h18v-1l-2-2v-6c0-3.18-2.12-5.86-5-6.71A2 2 0 0 0 14 4a2 2 0 0 0-2-2m0 4a5 5 0 0 1 5 5v7H7v-7a5 5 0 0 1 5-5m9 1v6h2V7zm0 8v2h2v-2zm-11 6a2 2 0 0 0 2 2 2 2 0 0 0 2-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bell-alert.svg�����������������������������0000664�0000000�0000000�00000000415�14753064456�0026153�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 7v6h-2V7m0 8h2v2h-2M12 2a2 2 0 0 0-2 2 2 2 0 0 0 0 .29C7.12 5.14 5 7.82 5 11v6l-2 2v1h18v-1l-2-2v-6c0-3.18-2.12-5.86-5-6.71A2 2 0 0 0 14 4a2 2 0 0 0-2-2m-2 19a2 2 0 0 0 2 2 2 2 0 0 0 2-2Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bell-badge-outline.svg���������������������0000664�0000000�0000000�00000000503�14753064456�0027561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 17v-5.2c-.5.1-1 .2-1.5.2H17v6H7v-7c0-2.8 2.2-5 5-5 .1-1.3.7-2.4 1.5-3.3-.3-.4-.9-.7-1.5-.7-1.1 0-2 .9-2 2v.3C7 5.2 5 7.9 5 11v6l-2 2v1h18v-1zm-9 4c0 1.1.9 2 2 2s2-.9 2-2zM21 6.5c0 1.9-1.6 3.5-3.5 3.5S14 8.4 14 6.5 15.6 3 17.5 3 21 4.6 21 6.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bell-badge.svg�����������������������������0000664�0000000�0000000�00000000537�14753064456�0026113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 6.5c0 1.93-1.57 3.5-3.5 3.5S14 8.43 14 6.5 15.57 3 17.5 3 21 4.57 21 6.5m-2 5.29c-.5.13-1 .21-1.5.21A5.51 5.51 0 0 1 12 6.5c0-1.47.58-2.8 1.5-3.79A1.93 1.93 0 0 0 12 2c-1.1 0-2 .9-2 2v.29C7.03 5.17 5 7.9 5 11v6l-2 2v1h18v-1l-2-2zM12 23c1.11 0 2-.89 2-2h-4a2 2 0 0 0 2 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bell-cancel-outline.svg��������������������0000664�0000000�0000000�00000001062�14753064456�0027745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.5 13a4.5 4.5 0 0 0-4.5 4.5 4.5 4.5 0 0 0 4.5 4.5 4.5 4.5 0 0 0 4.5-4.5 4.5 4.5 0 0 0-4.5-4.5m0 1.5a3 3 0 0 1 3 3 3 3 0 0 1-.42 1.5L16 14.92a3 3 0 0 1 1.5-.42M14.92 16 19 20.08a3 3 0 0 1-1.5.42 3 3 0 0 1-3-3 3 3 0 0 1 .42-1.5M12 2c-1.1 0-2 .9-2 2v.29C7.12 5.14 5 7.82 5 11v6l-2 2v1h8.5a6.5 6.5 0 0 1-.47-2H7v-7a5 5 0 0 1 5-5 5 5 0 0 1 5 5 7 7 0 0 1 .5 0 6.5 6.5 0 0 1 1.5.18V11c0-3.18-2.12-5.86-5-6.71V4a2 2 0 0 0-2-2m-2 19a2 2 0 0 0 2 2c.5 0 .97-.19 1.33-.5a6.5 6.5 0 0 1-1.3-1.5Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bell-cancel.svg����������������������������0000664�0000000�0000000�00000001031�14753064456�0026264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.5 13a4.5 4.5 0 0 0-4.5 4.5 4.5 4.5 0 0 0 4.5 4.5 4.5 4.5 0 0 0 4.5-4.5 4.5 4.5 0 0 0-4.5-4.5m0 1.5a3 3 0 0 1 3 3 3 3 0 0 1-.42 1.5L16 14.92a3 3 0 0 1 1.5-.42M14.92 16 19 20.08a3 3 0 0 1-1.5.42 3 3 0 0 1-3-3 3 3 0 0 1 .42-1.5M12 2c-1.1 0-2 .9-2 2v.29C7.12 5.14 5 7.82 5 11v6l-2 2v1h8.5a6.5 6.5 0 0 1-.5-2.5 6.5 6.5 0 0 1 6.5-6.5 6.5 6.5 0 0 1 1.5.18V11c0-3.18-2.12-5.86-5-6.71V4a2 2 0 0 0-2-2m-2 19a2 2 0 0 0 2 2c.5 0 .97-.19 1.33-.5a6.5 6.5 0 0 1-1.3-1.5Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bell-check-outline.svg���������������������0000664�0000000�0000000�00000000531�14753064456�0027575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.75 21.16-2.75-3L16.16 17l1.59 1.59L21.34 15l1.16 1.41zM10 21h2.8c.24.41.53.79.85 1.13-.36.53-.96.87-1.65.87a2 2 0 0 1-2-2m-7-1v-1l2-2v-6a7 7 0 0 1 5-6.71V4a2 2 0 1 1 4 0v.29A7 7 0 0 1 19 11v1.08L18 12l-1 .08V11c0-2.76-2.24-5-5-5s-5 2.24-5 5v7h5c0 .7.12 1.37.34 2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bell-check.svg�����������������������������0000664�0000000�0000000�00000000462�14753064456�0026123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.75 21.16-2.75-3L16.16 17l1.59 1.59L21.34 15l1.16 1.41zM3 20v-1l2-2v-6a7 7 0 0 1 5-6.71V4a2 2 0 1 1 4 0v.29A7 7 0 0 1 19 11v1.08L18 12a6.005 6.005 0 0 0-5.66 8zm9 3a2 2 0 0 1-2-2h2.8c.24.41.53.79.85 1.13-.36.53-.96.87-1.65.87"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bell-circle-outline.svg��������������������0000664�0000000�0000000�00000000646�14753064456�0027770�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 16H7v-1l1-1v-2.61c0-1.09.27-2.05.79-2.86C9.3 7.72 10.04 7.21 11 7v-.5a1 1 0 0 1 1-1 1 1 0 0 1 1 1V7c.96.21 1.7.72 2.21 1.53.52.81.79 1.77.79 2.86V14l1 1zm-3.5 1a1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5zM12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bell-circle.svg����������������������������0000664�0000000�0000000�00000000564�14753064456�0026312�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m5 14v-1l-1-1v-2.61c0-1.09-.27-2.05-.79-2.86C14.7 7.72 13.96 7.21 13 7v-.5a1 1 0 0 0-1-1 1 1 0 0 0-1 1V7c-.96.21-1.7.72-2.21 1.53-.52.81-.79 1.77-.79 2.86V14l-1 1v1zm-3.5 1h-3a1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bell-cog-outline.svg�����������������������0000664�0000000�0000000�00000001657�14753064456�0027302�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.72 19.5a4.2 4.2 0 0 0 0-1l1.05-.82c.1-.07.12-.18.06-.32l-1-1.72c-.06-.11-.19-.14-.3-.11l-1.25.47c-.28-.17-.53-.34-.84-.46l-.19-1.33A.25.25 0 0 0 20 14h-2c-.12 0-.23.09-.25.21l-.18 1.33c-.32.12-.57.29-.85.46l-1.22-.47c-.13-.03-.27 0-.33.11l-1 1.72c-.06.14-.03.25.06.32l1.06.82c-.02.17-.04.34-.04.5s.02.33.04.5l-1.06.82c-.09.07-.12.21-.06.32l1 1.73c.06.13.2.13.33.13l1.22-.53c.28.2.53.37.85.5l.18 1.32c.02.12.13.21.25.21h2c.13 0 .23-.09.25-.21l.19-1.32c.31-.13.56-.3.84-.5l1.25.53c.11 0 .24 0 .3-.13l1-1.73c.06-.11.04-.25-.06-.32zM19 20.75c-.96 0-1.75-.78-1.75-1.75s.79-1.75 1.75-1.75 1.75.78 1.75 1.75-.78 1.75-1.75 1.75M12.08 20H3v-1l2-2v-6c0-3.1 2-5.8 5-6.7V4c0-1.1.9-2 2-2s2 .9 2 2v.3c3 .9 5 3.6 5 6.7v1c-.69 0-1.37.11-2 .29V11c0-2.8-2.2-5-5-5s-5 2.2-5 5v7h5.08c-.05.33-.08.66-.08 1s.03.67.08 1m.22 1c.2.6.44 1.17.76 1.69-.31.19-.67.31-1.06.31-1.1 0-2-.9-2-2z"/></svg>���������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bell-cog.svg�������������������������������0000664�0000000�0000000�00000001612�14753064456�0025614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 12c-3.87 0-7 3.13-7 7 0 .34.03.67.08 1H3v-1l2-2v-6c0-3.1 2.03-5.83 5-6.71V4c0-1.1.9-2 2-2s2 .9 2 2v.29c2.97.88 5 3.61 5 6.71zm-9 9a2 2 0 0 0 2 2c.39 0 .75-.12 1.06-.31-.32-.52-.56-1.09-.76-1.69zm13.77-.68c.1.07.12.21.06.32l-1 1.73c-.06.13-.19.13-.3.13l-1.25-.53c-.28.2-.53.37-.84.5l-.19 1.32c-.02.12-.12.21-.25.21h-2c-.12 0-.23-.09-.25-.21l-.18-1.32c-.32-.13-.57-.3-.85-.5l-1.22.53c-.13 0-.27 0-.33-.13l-1-1.73a.26.26 0 0 1 .06-.32l1.06-.82c-.02-.17-.04-.33-.04-.5s.02-.33.04-.5l-1.06-.82c-.09-.07-.12-.18-.06-.32l1-1.72c.06-.11.2-.14.33-.11l1.22.47c.28-.17.53-.34.85-.46l.18-1.33c.02-.12.13-.21.25-.21h2c.13 0 .23.09.25.21l.19 1.33c.31.12.56.29.84.46l1.25-.47c.11-.03.24 0 .3.11l1 1.72c.06.14.04.25-.06.32l-1.05.82a4.3 4.3 0 0 1 0 1zM20.75 19c0-.97-.78-1.75-1.75-1.75s-1.75.78-1.75 1.75.79 1.75 1.75 1.75 1.75-.78 1.75-1.75"/></svg>����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bell-minus-outline.svg���������������������0000664�0000000�0000000�00000000503�14753064456�0027652�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c-1.1 0-2 .9-2 2v.29C7.12 5.14 5 7.82 5 11v6l-2 2v1h9.35a5.9 5.9 0 0 1-.35-2H7v-7c0-2.76 2.24-5 5-5s5 2.24 5 5v1.09a5.6 5.6 0 0 1 2 0V11c0-3.18-2.12-5.86-5-6.71V4a2 2 0 0 0-2-2m2 15v2h8v-2m-12 4a2 2 0 0 0 3.65 1.13c-.32-.34-.6-.72-.84-1.13z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bell-minus.svg�����������������������������0000664�0000000�0000000�00000000462�14753064456�0026201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 19v-2h-8v2zM12 2c-1.1 0-2 .9-2 2v.29C7.12 5.14 5 7.82 5 11v6l-2 2v1h9.35a5.9 5.9 0 0 1-.35-2c0-3.31 2.69-6 6-6 .34 0 .67.03 1 .09V11c0-3.18-2.12-5.86-5-6.71V4a2 2 0 0 0-2-2m-2 19a2 2 0 0 0 3.65 1.13c-.32-.34-.6-.72-.84-1.13z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bell-off-outline.svg�����������������������0000664�0000000�0000000�00000000564�14753064456�0027300�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3l4.72 4.72A7 7 0 0 0 5 11v6l-2 2v1h15.11l2.73 2.73zM7 18v-7c0-.61.11-1.21.34-1.77L16.11 18zm3 3h4a2 2 0 0 1-2 2 2 2 0 0 1-2-2M8.29 5.09c.53-.34 1.11-.59 1.71-.8V4a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.29c2.97.88 5 3.61 5 6.71v4.8l-2-2V11a5 5 0 0 0-5-5c-.78 0-1.55.2-2.24.56z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bell-off.svg�������������������������������0000664�0000000�0000000�00000000444�14753064456�0025620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.84 22.73 18.11 20H3v-1l2-2v-6c0-1.14.29-2.27.83-3.28L1.11 3l1.28-1.27 19.72 19.73zM19 15.8V11c0-3.1-2.03-5.83-5-6.71V4a2 2 0 0 0-2-2 2 2 0 0 0-2 2v.29c-.61.18-1.2.45-1.74.8zM12 23a2 2 0 0 0 2-2h-4a2 2 0 0 0 2 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bell-outline.svg���������������������������0000664�0000000�0000000�00000000352�14753064456�0026523�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 21h4c0 1.1-.9 2-2 2s-2-.9-2-2m11-2v1H3v-1l2-2v-6c0-3.1 2-5.8 5-6.7V4c0-1.1.9-2 2-2s2 .9 2 2v.3c3 .9 5 3.6 5 6.7v6zm-4-8c0-2.8-2.2-5-5-5s-5 2.2-5 5v7h10z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bell-plus-outline.svg����������������������0000664�0000000�0000000�00000000526�14753064456�0027507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c-1.1 0-2 .9-2 2v.29C7.12 5.14 5 7.82 5 11v6l-2 2v1h9.35a5.9 5.9 0 0 1-.35-2H7v-7c0-2.76 2.24-5 5-5s5 2.24 5 5v1.09a5.6 5.6 0 0 1 2 0V11c0-3.18-2.12-5.86-5-6.71V4a2 2 0 0 0-2-2m5 12v3h-3v2h3v3h2v-3h3v-2h-3v-3m-9 7a2 2 0 0 0 3.65 1.13c-.32-.34-.6-.72-.84-1.13Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bell-plus.svg������������������������������0000664�0000000�0000000�00000000527�14753064456�0026033�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 14v3h-3v2h3v3h2v-3h3v-2h-3v-3M12 2a2 2 0 0 0-2 2 2 2 0 0 0 0 .29C7.12 5.14 5 7.82 5 11v6l-2 2v1h9.35a6 6 0 0 1-.35-2 6 6 0 0 1 6-6 6 6 0 0 1 1 .09V11c0-3.18-2.12-5.86-5-6.71A2 2 0 0 0 14 4a2 2 0 0 0-2-2m-2 19a2 2 0 0 0 2 2 2 2 0 0 0 1.65-.87 6 6 0 0 1-.84-1.13Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bell-remove-outline.svg��������������������0000664�0000000�0000000�00000000676�14753064456�0030027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.12 14.46 18 16.59l-2.12-2.13-1.42 1.42L16.59 18l-2.13 2.12 1.42 1.42L18 19.41l2.12 2.13 1.42-1.42L19.41 18l2.13-2.12M12 2c-1.1 0-2 .9-2 2v.29C7.12 5.14 5 7.82 5 11v6l-2 2v1h9.35a5.9 5.9 0 0 1-.35-2H7v-7a5 5 0 0 1 5-5 5 5 0 0 1 5 5v1.09c.33-.05.66-.09 1-.09s.67.03 1 .09V11c0-3.18-2.12-5.86-5-6.71V4a2 2 0 0 0-2-2m-2 19a2 2 0 0 0 3.65 1.13c-.32-.34-.6-.72-.84-1.13Z"/></svg>������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bell-remove.svg����������������������������0000664�0000000�0000000�00000000633�14753064456�0026343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.12 14.46 18 16.59l-2.12-2.13-1.42 1.42L16.59 18l-2.13 2.12 1.42 1.42L18 19.41l2.12 2.13 1.42-1.42L19.41 18l2.13-2.12M12 2c-1.1 0-2 .9-2 2v.29C7.12 5.14 5 7.82 5 11v6l-2 2v1h9.35a5.9 5.9 0 0 1-.35-2c0-3.31 2.69-6 6-6 .34 0 .67.03 1 .09V11c0-3.18-2.12-5.86-5-6.71V4a2 2 0 0 0-2-2m-2 19a2 2 0 0 0 3.65 1.13c-.32-.34-.6-.72-.84-1.13Z"/></svg>�����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bell-ring-outline.svg����������������������0000664�0000000�0000000�00000000604�14753064456�0027460�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 21h4a2 2 0 0 1-2 2 2 2 0 0 1-2-2m11-2v1H3v-1l2-2v-6c0-3.1 2.03-5.83 5-6.71V4a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.29c2.97.88 5 3.61 5 6.71v6zm-4-8a5 5 0 0 0-5-5 5 5 0 0 0-5 5v7h10zm2.75-7.81-1.42 1.42A8.98 8.98 0 0 1 21 11h2c0-2.93-1.16-5.75-3.25-7.81M1 11h2c0-2.4.96-4.7 2.67-6.39L4.25 3.19A10.96 10.96 0 0 0 1 11"/></svg>����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bell-ring.svg������������������������������0000664�0000000�0000000�00000000534�14753064456�0026005�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 19v1H3v-1l2-2v-6c0-3.1 2.03-5.83 5-6.71V4a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.29c2.97.88 5 3.61 5 6.71v6zm-7 2a2 2 0 0 1-2 2 2 2 0 0 1-2-2m9.75-17.81-1.42 1.42A8.98 8.98 0 0 1 21 11h2c0-2.93-1.16-5.75-3.25-7.81M1 11h2c0-2.4.96-4.7 2.67-6.39L4.25 3.19A10.96 10.96 0 0 0 1 11"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bell-sleep-outline.svg���������������������0000664�0000000�0000000�00000000451�14753064456�0027631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 21h4a2 2 0 0 1-2 2 2 2 0 0 1-2-2m11-2v1H3v-1l2-2v-6c0-3.1 2.03-5.83 5-6.71V4a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.29c2.97.88 5 3.61 5 6.71v6zm-4-8a5 5 0 0 0-5-5 5 5 0 0 0-5 5v7h10zM9 9v2h3.24L9 13.7V16h6v-2h-3.24L15 11.3V9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bell-sleep.svg�����������������������������0000664�0000000�0000000�00000000403�14753064456�0026151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 21h4a2 2 0 0 1-2 2 2 2 0 0 1-2-2m11-2v1H3v-1l2-2v-6c0-3.1 2.03-5.83 5-6.71V4a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.29c2.97.88 5 3.61 5 6.71v6zM15 9H9v2h3.24L9 13.7V16h6v-2h-3.24L15 11.3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bell.svg�����������������������������������0000664�0000000�0000000�00000000325�14753064456�0025046�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 19v1H3v-1l2-2v-6c0-3.1 2.03-5.83 5-6.71V4a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.29c2.97.88 5 3.61 5 6.71v6zm-7 2a2 2 0 0 1-2 2 2 2 0 0 1-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bench-back.svg�����������������������������0000664�0000000�0000000�00000000314�14753064456�0026103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h1v2H1v2h2v4h2v-4h14v4h2v-4h2v-2h-4v-2h1c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm13 6v2H7v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bench.svg����������������������������������0000664�0000000�0000000�00000000156�14753064456�0025211�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 13H1v2h2v4h2v-4h14v4h2v-4h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/beta.svg�����������������������������������0000664�0000000�0000000�00000001127�14753064456�0025044�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.23 17.59v5.53H6.88V6.72c0-1.45.43-2.59 1.28-3.44C9 2.43 10.17 2 11.61 2c1.39 0 2.46.34 3.26 1 .79.68 1.18 1.62 1.18 2.81 0 .82-.26 1.59-.78 2.3s-1.19 1.2-2.02 1.47v.04c1.25.2 2.22.65 2.88 1.38.66.71.99 1.62.99 2.74 0 1.32-.46 2.4-1.37 3.23-.92.83-2.12 1.24-3.62 1.24-1.06 0-2.03-.21-2.9-.62m1.49-6.84V8.83c.87-.11 1.58-.43 2.15-.97.56-.55.84-1.16.84-1.86 0-1.38-.71-2.08-2.11-2.08-.76 0-1.35.24-1.76.73s-.61 1.17-.61 2.06v8.79c.91.53 1.8.79 2.66.79.84 0 1.5-.22 1.97-.65.47-.44.7-1.06.7-1.85 0-1.79-1.28-2.79-3.84-3.04"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/betamax.svg��������������������������������0000664�0000000�0000000�00000000430�14753064456�0025546�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2zm4 4a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m5 0h7v8h-7zm-5 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/biathlon.svg�������������������������������0000664�0000000�0000000�00000001062�14753064456�0025727�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.88 3.64c.77 0 1.4.63 1.4 1.4s-.63 1.4-1.4 1.4-1.38-.63-1.38-1.4.61-1.4 1.38-1.4M15 13h1.5v6H15zm0-4.5h1.5V10H15zm-4.96-5.9L8 2.04 6.06 8.58 3.9 11.42l3.27.95zm9.63 15.95c-.36.38-.79.95-1.27 1.15-.49.22-.86.3-1.4.3h-3.5l-.07-3c-.01-.17-.06-.33-.15-.5l-2.4-4.26.88-2.74a246 246 0 0 0 1.3 2.33c.15.17.39.3.63.3h2.21a.81.81 0 0 0 .81-.81c0-.42-.33-.76-.75-.79l-1.67-.13L12.4 7s-.4-.58-1.26-.58c-.87 0-1.14.42-1.31 1L6 20H3v2h14c1.37 0 2.53-.66 3.5-1.63zm-9.92-4.16 1.87 3 .13 2.61h-4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bicycle-basket.svg�������������������������0000664�0000000�0000000�00000001146�14753064456�0027013�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.74 13.36 2.4-5.65-1.08-2.21H10.5V4H14l.73 1.5h7.02l-1 3.5h-4.31l.67 1.37A5.002 5.002 0 0 1 24 15c0 2.76-2.24 5-5 5s-5-2.24-5-5c0-1.55.71-2.94 1.82-3.85L15 9.5 12.25 16H9.9A5 5 0 1 1 5 10c2.59 0 4.72 1.97 5 4.5h.58L8.3 9h-.8c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h2.75c.41 0 .75.34.75.75s-.34.75-.75.75h-.28zM5 11.5c-1.93 0-3.5 1.57-3.5 3.5a3.504 3.504 0 0 0 6.86 1H4v-1.5h4.47c-.25-1.7-1.71-3-3.47-3m14 0c-.43 0-.85.08-1.23.22l1.93 3.96-1.35.66-1.85-3.79c-.62.63-1 1.5-1 2.45 0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bicycle-cargo.svg��������������������������0000664�0000000�0000000�00000000774�14753064456�0026643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11.5V10l-7.5-1V5H9v1.5h3v7.8h-1L9 10c.3-.1.5-.4.5-.7 0-.4-.3-.8-.7-.8h-2c-.5 0-.8.3-.8.7s.3.8.8.8h.6l2 4.2H7.9C7.6 12.4 6 11 4 11c-2.2 0-4 1.8-4 4s1.8 4 4 4c2 0 3.6-1.4 3.9-3.2h8.6c.2-2.4 2.1-4.3 4.5-4.3M6.4 15.8c-.3 1-1.3 1.8-2.4 1.8-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5c1.1 0 2.1.7 2.4 1.8H4v1.5h2.4M21 13c-1.7 0-3 1.3-3 3s1.3 3 3 3 3-1.3 3-3-1.3-3-3-3m0 4.5c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5"/></svg>����mkdocs-material-9.6.4/material/templates/.icons/material/bicycle-electric.svg�����������������������0000664�0000000�0000000�00000001260�14753064456�0027331�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 7c-.56 0-1.09.11-1.59.28L14.46 1.5H11V3h2.54l.88 1.72L12 10.13l-1.77-4.18c.27-.1.51-.37.51-.7 0-.41-.33-.75-.74-.75H8c-.42 0-.76.34-.76.75S7.58 6 8 6h.61l2.25 5.25h-.94C9.56 8.85 7.5 7 5 7c-2.76 0-5 2.24-5 5s2.24 5 5 5c2.5 0 4.56-1.85 4.92-4.25h2.58l2.79-6.32.79 1.53A4.98 4.98 0 0 0 14 12c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5M5 15.5c-1.93 0-3.5-1.57-3.5-3.5S3.07 8.5 5 8.5c1.67 0 3.07 1.18 3.41 2.75H4v1.5h4.41A3.495 3.495 0 0 1 5 15.5m14 0c-1.93 0-3.5-1.57-3.5-3.5 0-1.08.5-2.03 1.27-2.67l1.8 3.52 1.32-.72-1.79-3.5c.29-.07.59-.13.9-.13 1.93 0 3.5 1.57 3.5 3.5s-1.57 3.5-3.5 3.5M11 20H7l6 3v-2h4l-6-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bicycle-penny-farthing.svg�����������������0000664�0000000�0000000�00000001062�14753064456�0030470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 5.06V2H12v2h1.5v1.04c-.79.07-1.56.23-2.3.46-.17-.3-.48-.5-.84-.5H7c-.55 0-1 .45-1 1s.45 1 1 1h1.05A11.5 11.5 0 0 0 3 16.18c-1.15.41-2 1.51-2 2.82 0 1.66 1.34 3 3 3s3-1.34 3-3c0-1.3-.83-2.39-2-2.81.07-1.52.46-2.94 1.14-4.19-.09.5-.14 1-.14 1.5 0 4.69 3.81 8.5 8.5 8.5s8.5-3.81 8.5-8.5c0-4.36-3.28-7.94-7.5-8.44M4 20c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m10.5 0C10.92 20 8 17.08 8 13.5c0-3.24 2.39-5.93 5.5-6.41V15h2V7.09c3.11.48 5.5 3.17 5.5 6.41 0 3.58-2.92 6.5-6.5 6.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bicycle.svg��������������������������������0000664�0000000�0000000�00000001237�14753064456�0025545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 10c-.56 0-1.09.11-1.59.28L14.46 4.5H11V6h2.54l.88 1.72L12 13.13l-1.77-4.18c.27-.1.51-.37.51-.7 0-.41-.33-.75-.74-.75H8c-.42 0-.76.34-.76.75S7.58 9 8 9h.61l2.25 5.25h-.94C9.56 11.85 7.5 10 5 10c-2.76 0-5 2.24-5 5s2.24 5 5 5c2.5 0 4.56-1.85 4.92-4.25h2.58l2.79-6.32.79 1.53A4.98 4.98 0 0 0 14 15c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5M5 18.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5c1.67 0 3.07 1.18 3.41 2.75H4v1.5h4.41A3.495 3.495 0 0 1 5 18.5m14 0c-1.93 0-3.5-1.57-3.5-3.5 0-1.08.5-2.03 1.27-2.67l1.8 3.52 1.32-.72-1.79-3.5c.29-.07.59-.13.9-.13 1.93 0 3.5 1.57 3.5 3.5s-1.57 3.5-3.5 3.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bike-fast.svg������������������������������0000664�0000000�0000000�00000001507�14753064456�0026000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 1.2c-1 0-1.8.8-1.8 1.8S15 4.8 16 4.8 17.8 4 17.8 3 17 1.2 16 1.2m-3.6 2.9c-.47 0-.9.19-1.2.5L7.5 8.29C7.19 8.6 7 9 7 9.5c0 .63.33 1.16.85 1.47L11.2 13v5H13v-6.5l-2.25-1.65 2.32-2.35L14.8 10H19V8.2h-3.2l-1.94-3.27c-.29-.5-.86-.83-1.46-.83M10 3H3c-.55 0-1-.45-1-1s.45-1 1-1h9.79c-.21.34-.38.71-.47 1.11-.86.02-1.67.34-2.32.89m-5 9c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5m0 8.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5M19 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5m0 8.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5M5.32 11H1c-.552 0-1-.45-1-1s.448-1 1-1h4.05c-.02.16-.05.33-.05.5 0 .53.12 1.04.32 1.5M6 7H2c-.55 0-1-.45-1-1s.45-1 1-1h5.97L6.09 6.87C6.05 6.91 6 6.96 6 7"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bike-pedal-clipless.svg��������������������0000664�0000000�0000000�00000000657�14753064456�0027751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.43 16.11.85-2.11H16v-1h4v-2h-4v-1h-.72l-.85-2.11C14 6.75 12.87 6 11.65 6h-2.3C8.13 6 7 6.75 6.57 7.89l-1.2 3c-.29.71-.29 1.51 0 2.22l1.2 3C7 17.25 8.13 18 9.35 18h2.3c1.22 0 2.35-.75 2.78-1.89M9.35 8h2.3c.41 0 .77.25.92.63l.55 1.37H7.88l.55-1.37c.15-.38.52-.63.92-.63m-.92 7.37L7.88 14h5.24l-.55 1.37c-.15.38-.52.63-.92.63h-2.3c-.4 0-.77-.25-.92-.63"/></svg>���������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bike-pedal-mountain.svg��������������������0000664�0000000�0000000�00000000616�14753064456�0027760�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.82 5a2 2 0 0 0-1.96 1.61l-.82 4.1c-.04.13-.04.26-.04.39v1.8c0 .13 0 .26.04.39l.82 4.1A2 2 0 0 0 6.82 19h6.56a2 2 0 0 0 1.79-1.11l1.62-3.23q.15-.315.21-.66h1v-1h2v-2h-2v-1h-1a2.5 2.5 0 0 0-.21-.66l-1.62-3.23A2 2 0 0 0 13.38 5zm0 2h.56l2.5 5-2.5 5h-.56L6 12.9v-1.8zm4.8 4-2-4h3.76L15 10.24V11zm0 2H15v.76L13.38 17H9.62z"/></svg>������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bike-pedal.svg�����������������������������0000664�0000000�0000000�00000000443�14753064456�0026126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.85 5c-.98 0-1.81.71-1.98 1.67L4 12l.87 5.33c.17.96 1 1.67 1.98 1.67h7.3c.98 0 1.82-.71 1.98-1.67l.55-3.33H18v-1h2v-2h-2v-1h-1.32l-.55-3.33c-.16-.96-1-1.67-1.98-1.67zm0 2h7.3l.67 4H6.18zm-.67 6h8.64l-.67 4h-7.3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bike.svg�����������������������������������0000664�0000000�0000000�00000001151�14753064456�0025040�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 20.5A3.5 3.5 0 0 1 1.5 17 3.5 3.5 0 0 1 5 13.5 3.5 3.5 0 0 1 8.5 17 3.5 3.5 0 0 1 5 20.5M5 12a5 5 0 0 0-5 5 5 5 0 0 0 5 5 5 5 0 0 0 5-5 5 5 0 0 0-5-5m9.8-2H19V8.2h-3.2l-1.94-3.27c-.29-.5-.86-.83-1.46-.83-.47 0-.9.19-1.2.5L7.5 8.29C7.19 8.6 7 9 7 9.5c0 .63.33 1.16.85 1.47L11.2 13v5H13v-6.5l-2.25-1.65 2.32-2.35m5.93 13a3.5 3.5 0 0 1-3.5-3.5 3.5 3.5 0 0 1 3.5-3.5 3.5 3.5 0 0 1 3.5 3.5 3.5 3.5 0 0 1-3.5 3.5m0-8.5a5 5 0 0 0-5 5 5 5 0 0 0 5 5 5 5 0 0 0 5-5 5 5 0 0 0-5-5m-3-7.2c1 0 1.8-.8 1.8-1.8S17 1.2 16 1.2 14.2 2 14.2 3 15 4.8 16 4.8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/billboard.svg������������������������������0000664�0000000�0000000�00000000405�14753064456�0026061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 22h-2v-5h2M6 22H4v-5h2M23 4v9a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h18a2 2 0 0 1 2 2m-2 0H3v9h18m-1-7h-5v2h5m-2 1h-3v2h3m-4 0H4l2.73-3.64 2 2.73.73-.54L8.2 7.82l1.71-2.27Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/billiards-rack.svg�������������������������0000664�0000000�0000000�00000001257�14753064456�0027020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.31 16.44-5.77-9.97a2.98 2.98 0 0 0-4.08-1.09c-.46.26-.83.62-1.1 1.09L3.6 16.44a2.953 2.953 0 0 0 1.09 4.06c.45.28.96.42 1.49.42h11.55a2.99 2.99 0 0 0 2.98-3c0-.52-.14-1.03-.4-1.48m-14.94.99 5.74-9.96c.27-.47.89-.65 1.35-.37.16.08.29.21.38.37l5.74 9.96c.27.48.11 1.07-.37 1.36-.15.09-.32.14-.49.14H6.21c-.55-.01-1-.46-.99-1.01 0-.17.04-.34.13-.49zm6.6-3.98c-1.1 0-1.97-.89-1.97-1.99 0-1.11.87-2 1.97-2a2 2 0 0 1 2 2c0 1.1-.9 1.99-2.02 1.99zm-2.51 4.48c-1.1 0-1.99-.89-1.99-1.99s.89-1.99 1.99-1.99 2 .89 2 1.99-.9 1.99-2 1.99m4.98 0a2 2 0 0 1-1.99-1.99 2 2 0 0 1 1.99-1.99c1.1 0 2 .89 2 1.99s-.9 1.99-2 1.99"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/billiards.svg������������������������������0000664�0000000�0000000�00000000612�14753064456�0026074�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 13h2v2h-2m0-6h2v2h-2m0 6h2a2 2 0 0 0 2-2v-1.5a1.5 1.5 0 0 0-1.5-1.5 1.5 1.5 0 0 0 1.5-1.5V9a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v1.5a1.5 1.5 0 0 0 1.5 1.5A1.5 1.5 0 0 0 9 13.5V15a2 2 0 0 0 2 2m1-16C5.92 1 1 5.92 1 12s4.92 11 11 11 11-4.92 11-11S18.08 1 12 1m0 18a7 7 0 0 1-7-7 7 7 0 0 1 7-7 7 7 0 0 1 7 7 7 7 0 0 1-7 7"/></svg>����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/binoculars.svg�����������������������������0000664�0000000�0000000�00000000357�14753064456�0026276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 6h2v7h-2zM9 20a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-5l2-9h4v7a1 1 0 0 1-1 1zm1-15H7V3h3zm5 15v-6a1 1 0 0 1-1-1V6h4l2 9v5a1 1 0 0 1-1 1h-3a1 1 0 0 1-1-1M14 5V3h3v2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bio.svg������������������������������������0000664�0000000�0000000�00000000427�14753064456�0024704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 12h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-3a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2m0 2v3h3v-3zM2 7h5a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2 2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H2V7m2 2v3h3V9zm0 8h3v-3H4zm7-4h2v6h-2zm0-4h2v2h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/biohazard.svg������������������������������0000664�0000000�0000000�00000002015�14753064456�0026071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 16.06c0 .23 0 .44-.04.64-.18-2.56-2.32-4.59-4.96-4.59-.37 0-.73.05-1.08.12.04.27.08.5.08.77 0 2.35-1.69 4.32-3.93 4.81.35 2.24 2.24 3.98 4.58 4.15-.22.04-.43.04-.65.04-2.08 0-3.93-1.06-5-2.66A6 6 0 0 1 7 22c-.22 0-.43 0-.65-.04 2.34-.17 4.22-1.9 4.58-4.15C8.68 17.32 7 15.35 7 13c0-.27.04-.5.07-.77-.34-.07-.7-.12-1.07-.12a4.97 4.97 0 0 0-4.97 4.59C1 16.5 1 16.29 1 16.06c0-3.21 2.59-5.82 5.81-5.92A5.877 5.877 0 0 1 9.06 2C7.81 2.9 7 4.34 7 6c0 1.35.56 2.59 1.47 3.5.91-.91 2.15-1.46 3.53-1.46 1.37 0 2.62.55 3.5 1.46.93-.91 1.5-2.15 1.5-3.5 0-1.66-.82-3.1-2.06-4a5.877 5.877 0 0 1 2.25 8.14c3.23.1 5.81 2.71 5.81 5.92M9.27 10.11a5 5 0 0 0 5.46 0C14 9.45 13.06 9.03 12 9.03s-2 .42-2.73 1.08M12 14.47c.82 0 1.5-.67 1.5-1.47a1.5 1.5 0 0 0-1.5-1.5 1.5 1.5 0 0 0-1.5 1.5c0 .8.67 1.47 1.5 1.47m-1.03 2.32c-.1-1.89-1.26-3.5-2.92-4.24-.02.15-.05.29-.05.45 0 1.82 1.27 3.34 2.97 3.79m4.99-4.24A4.98 4.98 0 0 0 13 16.79c1.73-.45 3-1.97 3-3.79 0-.16-.03-.3-.04-.45"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bird.svg�����������������������������������0000664�0000000�0000000�00000000514�14753064456�0025050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23 11.5-3.05-1.13c-.26-1.15-.91-1.81-.91-1.81a4.19 4.19 0 0 0-5.93 0l-1.48 1.48L5 3c-1 4 0 8 2.45 11.22L2 19.5s8.89 2 14.07-2.05c2.76-2.16 3.38-3.42 3.77-4.75zm-5.29.22c-.39.39-1.03.39-1.42 0a.996.996 0 0 1 0-1.41c.39-.39 1.03-.39 1.42 0s.39 1.02 0 1.41"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bitbucket.svg������������������������������0000664�0000000�0000000�00000000374�14753064456�0026110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.65 3C2.3 3 2 3.3 2 3.65v.12l2.73 16.5c.07.42.43.73.85.73h13.05c.31 0 .59-.22.64-.54L22 3.77a.643.643 0 0 0-.54-.73c-.03-.01-.07-.01-.11-.01zM14.1 14.95H9.94L8.81 9.07h6.3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bitcoin.svg��������������������������������0000664�0000000�0000000�00000001356�14753064456�0025564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.24 10.56c-.31 1.24-2.24.61-2.84.44l.55-2.18c.62.18 2.61.44 2.29 1.74m-3.11 1.56-.6 2.41c.74.19 3.03.92 3.37-.44.36-1.42-2.03-1.79-2.77-1.97m10.57 2.3c-1.34 5.36-6.76 8.62-12.12 7.28S.963 14.94 2.3 9.58A9.996 9.996 0 0 1 14.42 2.3c5.35 1.34 8.61 6.76 7.28 12.12m-7.49-6.37.45-1.8-1.1-.25-.44 1.73c-.29-.07-.58-.14-.88-.2l.44-1.77-1.09-.26-.45 1.79c-.24-.06-.48-.11-.7-.17l-1.51-.38-.3 1.17s.82.19.8.2c.45.11.53.39.51.64l-1.23 4.93c-.05.14-.21.32-.5.27.01.01-.8-.2-.8-.2L6.87 15l1.42.36c.27.07.53.14.79.2l-.46 1.82 1.1.28.45-1.81c.3.08.59.15.87.23l-.45 1.79 1.1.28.46-1.82c1.85.35 3.27.21 3.85-1.48.5-1.35 0-2.15-1-2.66.72-.19 1.26-.64 1.41-1.62.2-1.33-.82-2.04-2.2-2.52"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/black-mesa.svg�����������������������������0000664�0000000�0000000�00000000363�14753064456�0026131�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 2.71 6H9v-6h8l2.15 3.59c.54-1.09.85-2.3.85-3.59a8 8 0 0 0-8-8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/blender-outline.svg������������������������0000664�0000000�0000000�00000000603�14753064456�0027217�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.13 15.13 18 3h-4V2h-4v1H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h2.23l.64 4.13C6.74 16.05 6 17.43 6 19v1c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-1c0-1.57-.74-2.95-1.87-3.87M5 9V5h1.31l.62 4zm10.67-4-1.38 9H9.72L8.33 5zM16 20H8v-1c0-1.65 1.35-3 3-3h2c1.65 0 3 1.35 3 3zm-4-3c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/blender-software.svg�����������������������0000664�0000000�0000000�00000002100�14753064456�0027364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.58 3.12v.01c-.31 0-.62.09-.87.26-.5.35-.56.93-.11 1.3L14.46 7l-8.73.03h-.01C5 7.03 4.3 7.5 4.16 8.1c-.16.61.34 1.12 1.1 1.12l4.43-.01-7.93 6.09c-.76.57-.99 1.52-.52 2.12.48.61 1.49.61 2.26 0l4.3-3.53s-.07.48-.06.76c0 .29.1.85.23 1.28.29.93.78 1.78 1.46 2.53.7.77 1.57 1.39 2.57 1.83 1.03.47 2.17.71 3.34.71 1.16 0 2.31-.25 3.35-.72 1-.44 1.86-1.07 2.56-1.84.68-.75 1.17-1.61 1.46-2.53.14-.47.23-.94.29-1.41 0-.47 0-.94-.06-1.41-.13-.91-.44-1.77-.94-2.55-.44-.71-1-1.34-1.69-1.87l-6.89-5.29a1.42 1.42 0 0 0-.84-.26m2.76 6.09c1.16 0 2.25.38 3.12 1.08.44.36.79.78 1.04 1.25.27.46.44 1.01.5 1.57.04.56-.04 1.12-.23 1.66-.2.54-.52 1.04-.95 1.49-.89.9-2.13 1.42-3.48 1.42-1.34 0-2.59-.51-3.48-1.41-.43-.44-.75-.95-.95-1.49a3.9 3.9 0 0 1-.22-1.66c.05-.56.22-1.09.48-1.57.26-.47.62-.89 1.06-1.25.86-.71 1.96-1.09 3.11-1.09m.1 1.4c-.78 0-1.5.28-2.03.73-.54.46-.91 1.1-.94 1.84-.04.75.26 1.45.79 1.97.54.53 1.32.85 2.18.85s1.63-.32 2.18-.85c.53-.52.83-1.22.79-1.97-.04-.74-.41-1.38-.94-1.84-.53-.45-1.25-.73-2.03-.73"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/blender.svg��������������������������������0000664�0000000�0000000�00000000516�14753064456�0025545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.13 15.13 18 3h-4V2h-4v1H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h2.23l.64 4.13C6.74 16.05 6 17.43 6 19v1c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-1c0-1.57-.74-2.95-1.87-3.87M5 9V5h1.31l.62 4zm7 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m2.29-5H9.72L8.33 5h7.34z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/blinds-horizontal-closed.svg���������������0000664�0000000�0000000�00000000372�14753064456�0031043�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 19V3H4v16H2v2h11.25c0 .97.78 1.75 1.75 1.75s1.75-.78 1.75-1.75H22v-2zm-2-8h-2V9h2zm-4 0H6V9h8zm0 2v2H6v-2zm2 0h2v2h-2zm2-6h-2V5h2zm-4-2v2H6V5zM6 19v-2h8v2zm10 0v-2h2v2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/blinds-horizontal.svg����������������������0000664�0000000�0000000�00000000337�14753064456�0027575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 19V3H4v16H2v2h20v-2zM16 9h2v2h-2zm-2 2H6V9h8zm4-4h-2V5h2zm-4-2v2H6V5zM6 19v-6h8v1.82A1.746 1.746 0 0 0 15 18a1.746 1.746 0 0 0 1-3.18V13h2v6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/blinds-open.svg����������������������������0000664�0000000�0000000�00000000507�14753064456�0026344�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 2h18c.55 0 1 .45 1 1v2c0 .55-.45 1-1 1h-1v1c0 .55-.45 1-1 1h-6v2.17A3 3 0 0 1 15 13c0 1.66-1.34 3-3 3s-3-1.34-3-3c0-1.31.84-2.42 2-2.83V8H5c-.55 0-1-.45-1-1V6H3c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1m9 10c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/blinds-vertical-closed.svg�����������������0000664�0000000�0000000�00000000245�14753064456�0030462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 19V3H4v16H2v2h20v-2zM13 5h1.5v14H13zm-2 14H9.5V5H11zM6 5h1.5v14H6zm10.5 14V5H18v14z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/blinds-vertical.svg������������������������0000664�0000000�0000000�00000000164�14753064456�0027213�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 19V3H4v16H2v2h20v-2zm-10 0V5h4v14z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/blinds.svg���������������������������������0000664�0000000�0000000�00000000510�14753064456�0025377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 2h18a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-1v7a1 1 0 0 1-1 1h-6v2.17c1.17.41 2 1.52 2 2.83a3 3 0 0 1-3 3 3 3 0 0 1-3-3c0-1.31.83-2.42 2-2.83V14H5a1 1 0 0 1-1-1V6H3a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1m9 16a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/block-helper.svg���������������������������0000664�0000000�0000000�00000000455�14753064456�0026503�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a12 12 0 0 1 12 12 12 12 0 0 1-12 12A12 12 0 0 1 0 12 12 12 0 0 1 12 0m0 2A10 10 0 0 0 2 12c0 2.4.85 4.6 2.26 6.33L18.33 4.26A10 10 0 0 0 12 2m0 20a10 10 0 0 0 10-10c0-2.4-.85-4.6-2.26-6.33L5.67 19.74A10 10 0 0 0 12 22"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/blood-bag.svg������������������������������0000664�0000000�0000000�00000000520�14753064456�0025753�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 7c-1 0-1-1-1-1V5h-2v2h-2V6c0-1.73-1.25-5-6-5S4 4.27 4 6v13c0 .33-.1 2-2 2v2c2.93 0 4-2.39 4-4V6c0-.12.05-3 4-3 3.83 0 4 2.7 4 3v1h-2V5h-2v1s0 1-1 1-1 1-1 1v12s0 2 5 2h4c5 0 5-2 5-2V8s0-1-1-1m-6 12.4a3 3 0 0 1-3-3c0-2 3-5.4 3-5.4s3 3.4 3 5.4a3 3 0 0 1-3 3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bluetooth-audio.svg������������������������0000664�0000000�0000000�00000000615�14753064456�0027236�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.88 16.29 11 18.17v-3.76m0-8.58 1.88 1.88L11 9.58m4.71-1.87L10 2H9v7.58L4.41 5 3 6.41 8.59 12 3 17.58 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29m8.12-5.29L18.26 8c.63 1.18.99 2.55.99 4s-.36 2.82-.99 4l1.2 1.22A9.9 9.9 0 0 0 21 11.91c0-1.91-.54-3.68-1.47-5.2M14.24 12l2.32 2.33c.28-.73.44-1.51.44-2.33s-.16-1.6-.43-2.32z"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bluetooth-connect.svg����������������������0000664�0000000�0000000�00000000405�14753064456�0027563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19 10-2 2 2 2 2-2m-6.12 4.29L13 18.17v-3.76m0-8.58 1.88 1.88L13 9.58m4.71-1.87L12 2h-1v7.58L6.41 5 5 6.41 10.59 12 5 17.58 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29M7 12l-2-2-2 2 2 2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bluetooth-off.svg��������������������������0000664�0000000�0000000�00000000365�14753064456�0026711�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13 5.83 1.88 1.88-1.6 1.6 1.41 1.41 3.02-3.02L12 2h-1v5.03l2 2M5.41 4 4 5.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l4.29-4.29 2.3 2.29L20 18.59m-7-.42v-3.76l1.88 1.88"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bluetooth-settings.svg���������������������0000664�0000000�0000000�00000000413�14753064456�0027771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.88 14.29 13 16.17v-3.76zM13 3.83l1.88 1.88L13 7.59m4.71-1.88L12 0h-1v7.59L6.41 3 5 4.41 10.59 10 5 15.59 6.41 17 11 12.41V20h1l5.71-5.71-4.3-4.29zM15 24h2v-2h-2m-8 2h2v-2H7m4 2h2v-2h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bluetooth-transfer.svg���������������������0000664�0000000�0000000�00000000411�14753064456�0027753�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.71 7.71 10.41 12l4.3 4.29L9 22H8v-7.59L3.41 19 2 17.59 7.59 12 2 6.41 3.41 5 8 9.59V2h1zM10 5.83v3.76l1.88-1.88zm1.88 10.46L10 14.41v3.76zM22 8h-2v3h-2V8h-2l3-4zm0 8-3 4-3-4h2v-3h2v3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bluetooth.svg������������������������������0000664�0000000�0000000�00000000342�14753064456�0026134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.88 16.29 13 18.17v-3.76m0-8.58 1.88 1.88L13 9.58m4.71-1.87L12 2h-1v7.58L6.41 5 5 6.41 10.59 12 5 17.58 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/blur-linear.svg����������������������������0000664�0000000�0000000�00000001652�14753064456�0026350�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 17a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m0-4a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m0-4a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m4 3.5a.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5m0-4a.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5M3 3v2h18V3m-4 13.5a.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5M9 17a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m-4-3.5A1.5 1.5 0 0 0 6.5 12 1.5 1.5 0 0 0 5 10.5 1.5 1.5 0 0 0 3.5 12 1.5 1.5 0 0 0 5 13.5m0-4A1.5 1.5 0 0 0 6.5 8 1.5 1.5 0 0 0 5 6.5 1.5 1.5 0 0 0 3.5 8 1.5 1.5 0 0 0 5 9.5M3 21h18v-2H3M9 9a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m0 4a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m-4 4.5A1.5 1.5 0 0 0 6.5 16 1.5 1.5 0 0 0 5 14.5 1.5 1.5 0 0 0 3.5 16 1.5 1.5 0 0 0 5 17.5"/></svg>��������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/blur-off.svg�������������������������������0000664�0000000�0000000�00000002751�14753064456�0025651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 13.5a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5M6 17a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m4 3.5a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5m-7-11a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5M6 13a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m15 .5a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5M10 17a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1M2.5 5.27l3.78 3.78L6 9a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47a1.5 1.5 0 0 0 1.5 1.5c.74 0 1.36-.54 1.47-1.25l2.81 2.81c-.09-.03-.18-.06-.28-.06a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1c0-.1-.03-.19-.06-.28l3.78 3.78L20 20.23 3.77 4zM14 20.5a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5M18 7a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m0 4a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m0 4a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m-8-8a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m11 3.5a.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5m-11-7a.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5m4 0a.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5m-.2 8h.2a1.5 1.5 0 0 0 1.5-1.5A1.5 1.5 0 0 0 14 8.5a1.5 1.5 0 0 0-1.5 1.5v.2c.11.67.63 1.19 1.3 1.3M14 7a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1"/></svg>�����������������������mkdocs-material-9.6.4/material/templates/.icons/material/blur-radial.svg����������������������������0000664�0000000�0000000�00000001756�14753064456�0026337�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 13a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m0 3.5a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5M12 20a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m5 7.5a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5m0 4a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5m-3-6a.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5M14 9a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m-4-1.5a.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5m-3 6a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5m3 3a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5m-3-7a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5m3 3.5a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m0-4a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>������������������mkdocs-material-9.6.4/material/templates/.icons/material/blur.svg�����������������������������������0000664�0000000�0000000�00000003275�14753064456�0025103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 8.5a1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5A1.5 1.5 0 0 0 14 8.5m0 4a1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5M10 17a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m0-8.5A1.5 1.5 0 0 0 8.5 10a1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5A1.5 1.5 0 0 0 10 8.5m4 12a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5m0-3.5a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m7-3.5a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5M18 5a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m0 4a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m0 8a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m0-4a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m-8-.5A1.5 1.5 0 0 0 8.5 14a1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5M10 7a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m0-3.5a.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5m0 17a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5m-7-7a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5m11-10a.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5M14 7a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m7 3.5a.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5M6 5a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1M3 9.5a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5M6 9a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m0 8a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m0-4a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bolt.svg�����������������������������������0000664�0000000�0000000�00000000325�14753064456�0025070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 17.7V21h-4v-.7zM17 3H7v3h10zm-2 4-1 .7V7h-4v3.3L9 11v1l6-3.9zm0 4-1 .7v-2l-4 2.7v2L9 15v1l6-3.9zm0 4-1 .7v-2l-4 2.7v2L9 19v1l6-3.9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bomb-off.svg�������������������������������0000664�0000000�0000000�00000000771�14753064456�0025624�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.5 2.75c-1.8 0-3.25 1.45-3.25 3.25H10v1.29c-.69.21-1.33.52-1.92.91l9.71 9.71A6.9 6.9 0 0 0 19 14c0-3.17-2.11-5.85-5-6.71V6h-1.25a1.75 1.75 0 0 1 1.75-1.75A1.75 1.75 0 0 1 16.25 6a2.25 2.25 0 0 0 2.25 2.25c1.24 0 2.24-1.01 2.24-2.25v-.75h-1.49V6c0 .42-.34.75-.75.75-.42 0-.75-.33-.75-.75 0-1.8-1.46-3.25-3.25-3.25M3.41 6.36 2 7.77l3.55 3.55C5.2 12.14 5 13.04 5 14c0 3.86 3.13 7 7 7 .92 0 1.83-.19 2.68-.55L18.23 24l1.41-1.41z"/></svg>�������mkdocs-material-9.6.4/material/templates/.icons/material/bomb.svg�����������������������������������0000664�0000000�0000000�00000000651�14753064456�0025051�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.25 6a3.25 3.25 0 0 1 3.25-3.25A3.25 3.25 0 0 1 17.75 6c0 .42.33.75.75.75s.75-.33.75-.75v-.75h1.5V6a2.25 2.25 0 0 1-2.25 2.25A2.25 2.25 0 0 1 16.25 6a1.75 1.75 0 0 0-1.75-1.75A1.75 1.75 0 0 0 12.75 6H14v1.29c2.89.86 5 3.54 5 6.71a7 7 0 0 1-7 7 7 7 0 0 1-7-7c0-3.17 2.11-5.85 5-6.71V6zM22 6h2v1h-2zm-3-2V2h1v2zm1.91.38 1.42-1.42.71.71-1.42 1.42z"/></svg>���������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bone-off.svg�������������������������������0000664�0000000�0000000�00000000506�14753064456�0025624�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l4 4H5c-1.7 0-3 1.3-3 3 0 .8.3 1.5.8 2-.5.5-.8 1.2-.8 2 0 1.7 1.3 3 3 3s3-1.3 3-3c1.3-.1 2.6-.2 3.9-.2l8.9 8.9zM20 16.8l-6.7-6.7c.9 0 1.8-.1 2.7-.1 0-1.7 1.3-3 3-3s3 1.3 3 3c0 .8-.3 1.5-.8 2 .5.5.8 1.2.8 2 0 1.3-.8 2.4-2 2.8"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bone.svg�����������������������������������0000664�0000000�0000000�00000000543�14753064456�0025055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 14a3 3 0 0 1-3 3 3 3 0 0 1-3-3c0-.77.29-1.47.76-2-.47-.53-.76-1.23-.76-2a3 3 0 0 1 3-3 3 3 0 0 1 3 3c1.33.08 2.67.17 4 .17s2.67-.09 4-.17a3 3 0 0 1 3-3 3 3 0 0 1 3 3c0 .77-.29 1.47-.76 2 .47.53.76 1.23.76 2a3 3 0 0 1-3 3 3 3 0 0 1-3-3c-1.33-.08-2.67-.17-4-.17s-2.67.09-4 .17"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-account-outline.svg�������������������0000664�0000000�0000000�00000000372�14753064456�0030173�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 2a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm0 2h-5v5l-2.5-2.3L8 9V4H6v16h12m-5-9a2 2 0 1 1-2 2 2 2 0 0 1 2-2m4 8H9v-1c0-1.33 2.67-2 4-2s4 .67 4 2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-account.svg���������������������������0000664�0000000�0000000�00000000361�14753064456�0026514�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 2h-6v7L9.5 7.5 7 9V2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2m-4 10a2 2 0 1 1-2 2 2 2 0 0 1 2-2m4 8h-8v-1c0-1.33 2.67-2 4-2s4 .67 4 2Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-alert-outline.svg���������������������0000664�0000000�0000000�00000000323�14753064456�0027642�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 2H4c-1.1 0-2 .9-2 2v16a2 2 0 0 0 2 2h12c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2m0 18H4V4h2v8l2.5-2.25L11 12V4h5zm4-5h2v2h-2zm2-8v6h-2V7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-alert.svg�����������������������������0000664�0000000�0000000�00000000304�14753064456�0026164�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 4v16c0 1.11-.89 2-2 2H4a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2h1v7l2.5-1.5L10 9V2h6a2 2 0 0 1 2 2m2 13h2v-2h-2zm0-10v6h2V7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-alphabet.svg��������������������������0000664�0000000�0000000�00000000430�14753064456�0026635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.81 2C4.83 2.09 4 3 4 4v16c0 1.05.95 2 2 2h12c1.05 0 2-.95 2-2V4a2 2 0 0 0-2-2h-6v7L9.5 7.5 7 9V2H5.81M12 13h1a1 1 0 0 1 1 1v4h-1v-2h-1v2h-1v-4a1 1 0 0 1 1-1m0 1v1h1v-1zm3 1h3v1l-2 3h2v1h-3v-1l2-3h-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-arrow-down-outline.svg����������������0000664�0000000�0000000�00000000402�14753064456�0030630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.09 20c.12.72.37 1.39.72 2H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v9.09c-.33-.05-.66-.09-1-.09s-.67.04-1 .09V4h-5v8l-2.5-2.25L8 12V4H6v16zM20 20v-4h-2v4h-2l3 3 3-3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-arrow-down.svg������������������������0000664�0000000�0000000�00000000363�14753064456�0027161�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 1.1.3 2.12.81 3H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h1v7l2.5-1.5L12 9V2h6a2 2 0 0 1 2 2v9.09c-.33-.05-.66-.09-1-.09-3.31 0-6 2.69-6 6m7 1v-4h-2v4h-2l3 3 3-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-arrow-left-outline.svg����������������0000664�0000000�0000000�00000000403�14753064456�0030614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.09 20c.12.72.37 1.39.72 2H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v9.09c-.33-.05-.66-.09-1-.09s-.67.04-1 .09V4h-5v8l-2.5-2.25L8 12V4H6v16zM18 18v-2l-3 3 3 3v-2h4v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-arrow-left.svg������������������������0000664�0000000�0000000�00000000364�14753064456�0027145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 1.1.3 2.12.81 3H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h1v7l2.5-1.5L12 9V2h6a2 2 0 0 1 2 2v9.09c-.33-.05-.66-.09-1-.09-3.31 0-6 2.69-6 6m5-1v-2l-3 3 3 3v-2h4v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-arrow-right-outline.svg���������������0000664�0000000�0000000�00000000377�14753064456�0031011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.09 20c.12.72.37 1.39.72 2H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v9.09c-.33-.05-.66-.09-1-.09s-.67.04-1 .09V4h-5v8l-2.5-2.25L8 12V4H6v16zM23 19l-3-3v2h-4v2h4v2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-arrow-right.svg�����������������������0000664�0000000�0000000�00000000360�14753064456�0027324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 1.1.3 2.12.81 3H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h1v7l2.5-1.5L12 9V2h6a2 2 0 0 1 2 2v9.09c-.33-.05-.66-.09-1-.09-3.31 0-6 2.69-6 6m10 0-3-3v2h-4v2h4v2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-arrow-up-outline.svg������������������0000664�0000000�0000000�00000000377�14753064456�0030320�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.09 20c.12.72.37 1.39.72 2H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v9.09c-.33-.05-.66-.09-1-.09s-.67.04-1 .09V4h-5v8l-2.5-2.25L8 12V4H6v16zM19 15l-3 3h2v4h2v-4h2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-arrow-up.svg��������������������������0000664�0000000�0000000�00000000357�14753064456�0026641�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 1.1.3 2.12.81 3H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h1v7l2.5-1.5L12 9V2h6a2 2 0 0 1 2 2v9.09c-.33-.05-.66-.09-1-.09-3.31 0-6 2.69-6 6m6-4-3 3h2v4h2v-4h2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-cancel-outline.svg��������������������0000664�0000000�0000000�00000000721�14753064456�0027762�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.18 20c.18.72.47 1.39.86 2H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8.18c-.5-.11-1-.18-1.5-.18-.17 0-.33 0-.5.03V4h-5v8l-2.5-2.25L8 12V4H6v16zM23 18.5c0 2.5-2 4.5-4.5 4.5S14 21 14 18.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5m-3 2.58L15.92 17c-.27.42-.42.94-.42 1.5 0 1.66 1.34 3 3 3 .56 0 1.08-.15 1.5-.42m1.5-2.58c0-1.66-1.34-3-3-3-.56 0-1.08.15-1.5.42L21.08 20c.27-.42.42-.94.42-1.5"/></svg>�����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-cancel.svg����������������������������0000664�0000000�0000000�00000000710�14753064456�0026303�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18.5c0 1.29.39 2.5 1.04 3.5H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h1v7l2.5-1.5L12 9V2h6a2 2 0 0 1 2 2v8.18c-.5-.11-1-.18-1.5-.18a6.5 6.5 0 0 0-6.5 6.5m11 0c0 2.5-2 4.5-4.5 4.5S14 21 14 18.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5m-3 2.58L15.92 17c-.27.42-.42.94-.42 1.5 0 1.66 1.34 3 3 3 .56 0 1.08-.15 1.5-.42m1.5-2.58c0-1.66-1.34-3-3-3-.56 0-1.08.15-1.5.42L21.08 20c.27-.42.42-.94.42-1.5"/></svg>��������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-check-outline.svg���������������������0000664�0000000�0000000�00000000421�14753064456�0027607�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.75 22.16-2.75-3L15.16 18l1.59 1.59L20.34 16l1.16 1.41zM18 2c1.1 0 2 .9 2 2v9.34c-.63-.22-1.3-.34-2-.34V4h-5v8l-2.5-2.25L8 12V4H6v16h6.08c.12.72.37 1.39.72 2H6c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-check.svg�����������������������������0000664�0000000�0000000�00000000360�14753064456�0026134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.75 22.16-2.75-3L15.16 18l1.59 1.59L20.34 16l1.16 1.41zM6 22a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2h1v7l2.5-1.5L12 9V2h6a2 2 0 0 1 2 2v9.34A6.005 6.005 0 0 0 12.8 22z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-clock-outline.svg���������������������0000664�0000000�0000000�00000000655�14753064456�0027636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11.26V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v16c0 1.11.89 2 2 2h5.11c1.26 1.24 2.98 2 4.89 2 3.87 0 7-3.13 7-7 0-2.38-1.19-4.47-3-5.74M18 4v6.29c-.63-.18-1.3-.29-2-.29-1.07 0-2.09.25-3 .68V4zM6 4h2v8l2.5-2.25 1.6 1.44A7 7 0 0 0 9 17c0 1.08.25 2.09.68 3H6zm10 18c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5m.5-4.75 2.86 1.69-.75 1.22L15 18v-5h1.5z"/></svg>�����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-clock.svg�����������������������������0000664�0000000�0000000�00000000506�14753064456�0026154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.5 17.25 2.86 1.69-.75 1.22L15 18v-5h1.5zM23 17c0 3.87-3.13 7-7 7-1.91 0-3.63-.76-4.89-2H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h1v7l2.5-1.5L12 9V2h6a2 2 0 0 1 2 2v7.26c1.81 1.27 3 3.36 3 5.74m-2 0c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-cog-outline.svg�����������������������0000664�0000000�0000000�00000001254�14753064456�0027307�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 4h-5v8l-2.5-2.25L8 12V4H6v16h6.08c.1.71.31 1.38.61 2H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8.08c-.33-.05-.66-.08-1-.08s-.67.03-1 .08zm5.8 16.4c.1 0 .1.1 0 .2l-1 1.7c-.1.1-.2.1-.3.1l-1.2-.4c-.3.2-.5.3-.8.5l-.2 1.3c0 .1-.1.2-.2.2h-2c-.1 0-.2-.1-.3-.2l-.2-1.3c-.3-.1-.6-.3-.8-.5l-1.2.5c-.1 0-.2 0-.3-.1l-1-1.7c-.1-.1 0-.2.1-.3l1.1-.8v-1l-1.1-.8c-.1-.1-.1-.2-.1-.3l1-1.7c.1-.1.2-.1.3-.1l1.2.5c.3-.2.5-.3.8-.5l.2-1.3c0-.1.1-.2.3-.2h2c.1 0 .2.1.2.2l.2 1.3c.3.1.6.3.9.5l1.2-.5c.1 0 .3 0 .3.1l1 1.7c.1.1 0 .2-.1.3l-1.1.8v1zM20.5 19c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5.7 1.5 1.5 1.5 1.5-.7 1.5-1.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-cog.svg�������������������������������0000664�0000000�0000000�00000001243�14753064456�0025630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 19c0 1.08.25 2.09.68 3H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h1v7l2.5-1.5L12 9V2h6a2 2 0 0 1 2 2v8.08c-.33-.05-.66-.08-1-.08-3.87 0-7 3.13-7 7m11.8 1.4c.1 0 .1.1 0 .2l-1 1.7c-.1.1-.2.1-.3.1l-1.2-.4c-.3.2-.5.3-.8.5l-.2 1.3c0 .1-.1.2-.2.2h-2c-.1 0-.2-.1-.3-.2l-.2-1.3c-.3-.1-.6-.3-.8-.5l-1.2.5c-.1 0-.2 0-.3-.1l-1-1.7c-.1-.1 0-.2.1-.3l1.1-.8v-1l-1.1-.8c-.1-.1-.1-.2-.1-.3l1-1.7c.1-.1.2-.1.3-.1l1.2.5c.3-.2.5-.3.8-.5l.2-1.3c0-.1.1-.2.3-.2h2c.1 0 .2.1.2.2l.2 1.3c.3.1.6.3.9.5l1.2-.5c.1 0 .3 0 .3.1l1 1.7c.1.1 0 .2-.1.3l-1.1.8v1zM20.5 19c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5.7 1.5 1.5 1.5 1.5-.7 1.5-1.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-cross.svg�����������������������������0000664�0000000�0000000�00000000330�14753064456�0026205�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.81 2H7v7l2.5-1.5L12 9V2h6a2 2 0 0 1 2 2v16c0 1.05-.95 2-2 2H6c-1.05 0-2-.95-2-2V4c0-1 .83-1.91 1.81-2M13 10v3h-3v2h3v5h2v-5h3v-2h-3v-3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-edit-outline.svg����������������������0000664�0000000�0000000�00000000505�14753064456�0027462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 20h5v2H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v6.3c-.22.12-.43.26-.61.44L18 12.13V4h-5v8l-2.5-2.25L8 12V4H6zm16.85-6.53-1.32-1.32c-.2-.2-.53-.2-.72 0l-.98.98 2.04 2.04.98-.98c.2-.19.2-.52 0-.72M13 19.96V22h2.04l6.13-6.12-2.04-2.05z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-edit.svg������������������������������0000664�0000000�0000000�00000000501�14753064456�0026001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.39 10.74 11 19.13V22H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h1v7l2.5-1.5L12 9V2h6a2 2 0 0 1 2 2v6.3c-.22.12-.43.26-.61.44M13 19.96V22h2.04l6.13-6.12-2.04-2.05zm9.85-6.49-1.32-1.32c-.2-.2-.53-.2-.72 0l-.98.98 2.04 2.04.98-.98c.2-.19.2-.52 0-.72"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-education-outline.svg�����������������0000664�0000000�0000000�00000000372�14753064456�0030512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 20h7v2H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8.54l-1.5-.82-.5.28V4h-5v8l-2.5-2.25L8 12V4H6zm18-3-5.5-3-5.5 3 5.5 3zm-9 2.09v2L18.5 23l3.5-1.91v-2L18.5 21z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-education.svg�������������������������0000664�0000000�0000000�00000000371�14753064456�0027034�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.82 17 13 19.28V22H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h1v7l2.5-1.5L12 9V2h6a2 2 0 0 1 2 2v8.54l-1.5-.82zM24 17l-5.5-3-5.5 3 5.5 3zm-9 2.09v2L18.5 23l3.5-1.91v-2L18.5 21z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-heart-outline.svg���������������������0000664�0000000�0000000�00000000524�14753064456�0027641�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19 23.3-.6-.5c-2-1.9-3.4-3.1-3.4-4.6 0-1.2 1-2.2 2.2-2.2.7 0 1.4.3 1.8.8.4-.5 1.1-.8 1.8-.8 1.2 0 2.2.9 2.2 2.2 0 1.5-1.4 2.7-3.4 4.6zM18 2c1.1 0 2 .9 2 2v9.08L19 13l-1 .08V4h-5v8l-2.5-2.25L8 12V4H6v16h7.08c.12.72.37 1.39.72 2H6c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-heart.svg�����������������������������0000664�0000000�0000000�00000000501�14753064456�0026157�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19 23.3-.6-.5c-2-1.9-3.4-3.1-3.4-4.6 0-1.2 1-2.2 2.2-2.2.7 0 1.4.3 1.8.8.4-.5 1.1-.8 1.8-.8 1.2 0 2.2.9 2.2 2.2 0 1.5-1.4 2.7-3.4 4.6zM6 22a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2h1v7l2.5-1.5L12 9V2h6a2 2 0 0 1 2 2v9.08L19 13a6.005 6.005 0 0 0-5.2 9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-information-variant.svg���������������0000664�0000000�0000000�00000001030�14753064456�0031041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 2h-6v7L9.5 7.5 7 9V2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4a2 2 0 0 0-2-2m-.32 16.41c-.11.09-1.21.84-1.63 1.09-.42.29-2.05 1.22-1.79-.58.63-3.64 1.85-5.8.39-4.86-.38.23-.6.37-.74.44-.13.11-.12.1-.23-.09s-.15-.18-.01-.28c0 0 2.23-1.79 3.05-1.85.78-.07.59.89.52 1.33-.46 1.85-1.3 4.54-1.17 4.93.11.39.93-.23 1.37-.54 0 0 .06-.07.17.05.11.17.22.25.07.36m-.71-7.35c-.57 0-1.03-.46-1.03-1.03S16.4 9 16.97 9 18 9.46 18 10.03s-.46 1.03-1.03 1.03"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-lock-open-outline.svg�����������������0000664�0000000�0000000�00000000652�14753064456�0030427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 20.7c0 .46.1.9.27 1.3H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v5.11c-.32-.07-.66-.11-1-.11s-.68.04-1 .11V4h-5v8l-2.5-2.25L8 12V4H6v16h7zm8.8-4.7h-4.3v-2.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3v.5h1.3v-.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V16c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3"/></svg>��������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-lock-open.svg�������������������������0000664�0000000�0000000�00000000707�14753064456�0026753�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.2 13.5v1.24c-.7.6-1.2 1.5-1.2 2.46v3.5c0 .46.1.9.27 1.3H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h1v7l2.5-1.5L12 9V2h6a2 2 0 0 1 2 2v5.11c-.32-.07-.66-.11-1-.11-2.6 0-4.8 2.06-4.8 4.5m7.6 2.5h-4.3v-2.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3v.5h1.3v-.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V16c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3"/></svg>���������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-lock-outline.svg����������������������0000664�0000000�0000000�00000000652�14753064456�0027470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 20.7c0 .46.1.9.27 1.3H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v6.11c-.32-.07-.66-.11-1-.11s-.68.04-1 .11V4h-5v8l-2.5-2.25L8 12V4H6v16h7zm10-3.4v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5V16c.6 0 1.2.6 1.2 1.3m-2.5-2.8c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V16h3z"/></svg>��������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-lock.svg������������������������������0000664�0000000�0000000�00000000707�14753064456�0026014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.2 14.5v.24c-.7.6-1.2 1.5-1.2 2.46v3.5c0 .46.1.9.27 1.3H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h1v7l2.5-1.5L12 9V2h6a2 2 0 0 1 2 2v6.11c-.32-.07-.66-.11-1-.11-2.6 0-4.8 2.06-4.8 4.5m8.8 2.8v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5V16c.6 0 1.2.6 1.2 1.3m-2.5-2.8c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V16h3z"/></svg>���������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-marker-outline.svg��������������������0000664�0000000�0000000�00000000615�14753064456�0030020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.55 20c.45.76.95 1.44 1.36 2H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v6.22c-.5-.14-1-.22-1.5-.22-.17 0-.33 0-.5.03V4h-5v8l-2.5-2.25L8 12V4H6v16zM22 15.5c0 2.6-3.5 6.5-3.5 6.5S15 18.1 15 15.5c0-1.9 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5m-2.3.1c0-.6-.6-1.2-1.2-1.2s-1.2.5-1.2 1.2c0 .6.5 1.2 1.2 1.2s1.3-.6 1.2-1.2"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-marker.svg����������������������������0000664�0000000�0000000�00000000601�14753064456�0026336�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 15.5c0 2.28 1.7 4.91 2.91 6.5H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h1v7l2.5-1.5L12 9V2h6a2 2 0 0 1 2 2v6.22c-.5-.14-1-.22-1.5-.22-3 0-5.5 2.5-5.5 5.5m9 0c0 2.6-3.5 6.5-3.5 6.5S15 18.1 15 15.5c0-1.9 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5m-2.3.1c0-.6-.6-1.2-1.2-1.2s-1.2.5-1.2 1.2c0 .6.5 1.2 1.2 1.2s1.3-.6 1.2-1.2"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-minus-multiple-outline.svg������������0000664�0000000�0000000�00000000430�14753064456�0031516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.09 20H5V6H3v14a2 2 0 0 0 2 2h8.81a5.5 5.5 0 0 1-.72-2M19 2H9c-1.1 0-2 .9-2 2v12a2 2 0 0 0 2 2h4.09c.11-.71.35-1.39.72-2H9V4h2v6l2.5-2.25L16 10V4h3v9c.68 0 1.36.11 2 .34V4a2 2 0 0 0-2-2m4 16v2h-8v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-minus-multiple.svg��������������������0000664�0000000�0000000�00000000413�14753064456�0030042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.09 20H5V6H3v14a2 2 0 0 0 2 2h8.81a5.5 5.5 0 0 1-.72-2M19 2h-5v5l-2-1.5L10 7V2H9c-1.1 0-2 .9-2 2v12a2 2 0 0 0 2 2h4.09A6 6 0 0 1 20 13.08c.34.06.68.15 1 .26V4a2 2 0 0 0-2-2m4 16v2h-8v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-minus-outline.svg���������������������0000664�0000000�0000000�00000000366�14753064456�0027675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.09 20c.12.72.37 1.39.72 2H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v9.09c-.33-.05-.66-.09-1-.09s-.67.04-1 .09V4h-5v8l-2.5-2.25L8 12V4H6v16zM15 18v2h8v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-minus.svg�����������������������������0000664�0000000�0000000�00000000347�14753064456�0026217�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 1.1.3 2.12.81 3H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h1v7l2.5-1.5L12 9V2h6a2 2 0 0 1 2 2v9.09c-.33-.05-.66-.09-1-.09-3.31 0-6 2.69-6 6m2-1v2h8v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-multiple-outline.svg������������������0000664�0000000�0000000�00000000326�14753064456�0030371�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 2a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm0 2h-3v6l-2.5-2.25L11 10V4H9v12h10M3 20a2 2 0 0 0 2 2h12v-2H5V6H3Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-multiple.svg��������������������������0000664�0000000�0000000�00000000305�14753064456�0026711�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 18H9a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h1v5l2-1.5L14 7V2h5a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2m-2 2v2H5a2 2 0 0 1-2-2V6h2v14z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-music-outline.svg���������������������0000664�0000000�0000000�00000000440�14753064456�0027653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 20.5c0 .53.09 1.03.26 1.5H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v7h-2V4h-5v8l-2.5-2.25L8 12V4H6v16h7.04c-.01.17-.04.33-.04.5m7-7.5h-1.5v5.21a2.5 2.5 0 1 0-1 4.79 2.5 2.5 0 0 0 2.5-2.5V15h2v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-music.svg�����������������������������0000664�0000000�0000000�00000000433�14753064456�0026200�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 20.5c0 .53.09 1.03.26 1.5H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h1v7l2.5-1.5L12 9V2h6a2 2 0 0 1 2 2v7h-3.5v5.11c-2 .46-3.5 2.25-3.5 4.39m7-7.5h-1.5v5.21a2.5 2.5 0 1 0-1 4.79 2.5 2.5 0 0 0 2.5-2.5V15h2v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-off-outline.svg�����������������������0000664�0000000�0000000�00000000436�14753064456�0027312�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6 14.8-2 2V4a2 2 0 0 1 2-2h12c.24 0 .47.04.68.12L16.8 4H13v3.8L10.79 10l-.29-.25L8 12V4H6zM22.89 3 20 5.89V20c0 1.11-.89 2-2 2H6c-.58 0-1.1-.25-1.46-.65l-1.38 1.38-1.27-1.27L21.61 1.73zM18 7.89l-12 12V20h12z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-off.svg�������������������������������0000664�0000000�0000000�00000000405�14753064456�0025631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.68 2.12 12 8.8V2h6c.24 0 .46.05.68.12M9.5 7.5 7 9V2H6a2 2 0 0 0-2 2v12.8l7.88-7.87zm12.11-5.77L1.89 21.46l1.27 1.27 1.38-1.38c.36.4.88.65 1.46.65h12c1.11 0 2-.89 2-2V5.89L22.89 3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-open-blank-variant-outline.svg��������0000664�0000000�0000000�00000001110�14753064456�0032216�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 21.5c-1.35-.85-3.8-1.5-5.5-1.5-1.65 0-3.35.3-4.75 1.05-.1.05-.15.05-.25.05-.25 0-.5-.25-.5-.5V6c.6-.45 1.25-.75 2-1 1.11-.35 2.33-.5 3.5-.5 1.95 0 4.05.4 5.5 1.5 1.45-1.1 3.55-1.5 5.5-1.5 1.17 0 2.39.15 3.5.5.75.25 1.4.55 2 1v14.6c0 .25-.25.5-.5.5-.1 0-.15 0-.25-.05-1.4-.75-3.1-1.05-4.75-1.05-1.7 0-4.15.65-5.5 1.5m-1-14c-1.36-.6-3.16-1-4.5-1-1.2 0-2.4.15-3.5.5v11.5c1.1-.35 2.3-.5 3.5-.5 1.34 0 3.14.4 4.5 1zM13 19c1.36-.6 3.16-1 4.5-1 1.2 0 2.4.15 3.5.5V7c-1.1-.35-2.3-.5-3.5-.5-1.34 0-3.14.4-4.5 1z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-open-blank-variant.svg����������������0000664�0000000�0000000�00000000752�14753064456�0030554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 20c1.7 0 4.15.65 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5V6c-.6-.45-1.25-.75-2-1-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5-1.17 0-2.39.15-3.5.5-.75.25-1.4.55-2 1v14.6c0 .25.25.5.5.5.1 0 .15 0 .25-.05C3.15 20.3 4.85 20 6.5 20m5.5-.5V8c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5v11.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5"/></svg>����������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-open-outline.svg����������������������0000664�0000000�0000000�00000000336�14753064456�0027500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 4H3a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2M3 19V6h8v13zm18 0h-8V6h8zm-7-9.5h6V11h-6zm0 2.5h6v1.5h-6zm0 2.5h6V16h-6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-open-page-variant-outline.svg���������0000664�0000000�0000000�00000000747�14753064456�0032062�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19 1-5 5v11l5-4.5zm2 4v13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V6c-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5V6c-.6-.45-1.25-.75-2-1M10 18.41C8.75 18.09 7.5 18 6.5 18c-1.06 0-2.32.19-3.5.5V7.13c.91-.4 2.14-.63 3.5-.63s2.59.23 3.5.63z"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-open-page-variant.svg�����������������0000664�0000000�0000000�00000000621�14753064456�0030374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19 2-5 4.5v11l5-4.5zM6.5 5C4.55 5 2.45 5.4 1 6.5v14.66c0 .25.25.5.5.5.1 0 .15-.07.25-.07 1.35-.65 3.3-1.09 4.75-1.09 1.95 0 4.05.4 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.31 4.75 1.06.1.05.15.03.25.03.25 0 .5-.25.5-.5V6.5c-.6-.45-1.25-.75-2-1V19c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V6.5C10.55 5.4 8.45 5 6.5 5"/></svg>���������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-open-variant-outline.svg��������������0000664�0000000�0000000�00000001554�14753064456�0031145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 21.5c-1.35-.85-3.8-1.5-5.5-1.5-1.65 0-3.35.3-4.75 1.05-.1.05-.15.05-.25.05-.25 0-.5-.25-.5-.5V6c.6-.45 1.25-.75 2-1 1.11-.35 2.33-.5 3.5-.5 1.95 0 4.05.4 5.5 1.5 1.45-1.1 3.55-1.5 5.5-1.5 1.17 0 2.39.15 3.5.5.75.25 1.4.55 2 1v14.6c0 .25-.25.5-.5.5-.1 0-.15 0-.25-.05-1.4-.75-3.1-1.05-4.75-1.05-1.7 0-4.15.65-5.5 1.5m-1-14c-1.36-.6-3.16-1-4.5-1-1.2 0-2.4.15-3.5.5v11.5c1.1-.35 2.3-.5 3.5-.5 1.34 0 3.14.4 4.5 1zM13 19c1.36-.6 3.16-1 4.5-1 1.2 0 2.4.15 3.5.5V7c-1.1-.35-2.3-.5-3.5-.5-1.34 0-3.14.4-4.5 1zm1-2.65c.96-.35 2.12-.52 3.5-.52 1.04 0 1.88.08 2.5.24v-1.5a13.9 13.9 0 0 0-6 .19zm0-2.66c.96-.35 2.12-.53 3.5-.53 1.04 0 1.88.08 2.5.24v-1.5c-.87-.16-1.71-.23-2.5-.23-1.28 0-2.45.15-3.5.45zM14 11c.96-.33 2.12-.5 3.5-.5.91 0 1.76.09 2.5.28V9.23c-.87-.15-1.71-.23-2.5-.23-1.32 0-2.5.15-3.5.46z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-open-variant.svg����������������������0000664�0000000�0000000�00000001457�14753064456�0027472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 21.5c-1.35-.85-3.8-1.5-5.5-1.5-1.65 0-3.35.3-4.75 1.05-.1.05-.15.05-.25.05-.25 0-.5-.25-.5-.5V6c.6-.45 1.25-.75 2-1 1.11-.35 2.33-.5 3.5-.5 1.95 0 4.05.4 5.5 1.5 1.45-1.1 3.55-1.5 5.5-1.5 1.17 0 2.39.15 3.5.5.75.25 1.4.55 2 1v14.6c0 .25-.25.5-.5.5-.1 0-.15 0-.25-.05-1.4-.75-3.1-1.05-4.75-1.05-1.7 0-4.15.65-5.5 1.5M12 8v11.5c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5V7c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5m1 3.5c1.11-.68 2.6-1 4.5-1 .91 0 1.76.09 2.5.28V9.23c-.87-.15-1.71-.23-2.5-.23q-2.655 0-4.5.84zm4.5.17c-1.71 0-3.21.26-4.5.79v1.69c1.11-.65 2.6-.99 4.5-.99 1.04 0 1.88.08 2.5.24v-1.5c-.87-.16-1.71-.23-2.5-.23m2.5 2.9c-.87-.16-1.71-.24-2.5-.24-1.83 0-3.33.27-4.5.8v1.69c1.11-.66 2.6-.99 4.5-.99 1.04 0 1.88.08 2.5.24z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-open.svg������������������������������0000664�0000000�0000000�00000000312�14753064456�0026015�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 12h7v1.5h-7m0-4h7V11h-7m0 3.5h7V16h-7m8-12H3a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m0 15h-9V6h9"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-outline.svg���������������������������0000664�0000000�0000000�00000000266�14753064456�0026543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 2a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm0 2h-5v8l-2.5-2.25L8 12V4H6v16h12z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-play-outline.svg����������������������0000664�0000000�0000000�00000000365�14753064456�0027506�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.09 20c.12.72.37 1.39.72 2H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v9.09c-.33-.05-.66-.09-1-.09s-.67.04-1 .09V4h-5v8l-2.5-2.25L8 12V4H6v16zM17 16v6l5-3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-play.svg������������������������������0000664�0000000�0000000�00000000346�14753064456�0026030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 1.1.3 2.12.81 3H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h1v7l2.5-1.5L12 9V2h6a2 2 0 0 1 2 2v9.09c-.33-.05-.66-.09-1-.09-3.31 0-6 2.69-6 6m4-3v6l5-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-plus-multiple-outline.svg�������������0000664�0000000�0000000�00000000445�14753064456�0031354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.09 20H5V6H3v14a2 2 0 0 0 2 2h8.81a5.5 5.5 0 0 1-.72-2M19 2H9a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h4.09a5.5 5.5 0 0 1 .72-2H9V4h2v6l2.5-2.25L16 10V4h3v9a6 6 0 0 1 2 .34V4a2 2 0 0 0-2-2m1 13v3h3v2h-3v3h-2v-3h-3v-2h3v-3Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-plus-multiple.svg���������������������0000664�0000000�0000000�00000000412�14753064456�0027671�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.09 20H5V6H3v14a2 2 0 0 0 2 2h8.81a5.5 5.5 0 0 1-.72-2M19 2h-5v5l-2-1.5L10 7V2H9a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h4.09A6 6 0 0 1 21 13.34V4a2 2 0 0 0-2-2m1 13v3h3v2h-3v3h-2v-3h-3v-2h3v-3Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-plus-outline.svg����������������������0000664�0000000�0000000�00000000412�14753064456�0027515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.09 20c.12.72.37 1.39.72 2H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v9.09c-.33-.05-.66-.09-1-.09s-.67.04-1 .09V4h-5v8l-2.5-2.25L8 12V4H6v16zM20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-plus.svg������������������������������0000664�0000000�0000000�00000000373�14753064456�0026046�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 1.1.3 2.12.81 3H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h1v7l2.5-1.5L12 9V2h6a2 2 0 0 1 2 2v9.09c-.33-.05-.66-.09-1-.09-3.31 0-6 2.69-6 6m7-1v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-refresh-outline.svg�������������������0000664�0000000�0000000�00000000556�14753064456�0030201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.18 20c.18.72.47 1.39.86 2H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8.18c-.5-.11-1-.18-1.5-.18-.17 0-.33 0-.5.03V4h-5v8l-2.5-2.25L8 12V4H6v16zM22 18.5v-4l-1.17 1.17A4 4 0 0 0 18 14.5c-2.21 0-4 1.79-4 4s1.79 4 4 4c1.68 0 3.12-1.03 3.71-2.5H20a2.5 2.5 0 1 1-.23-3.27L18 18.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-refresh.svg���������������������������0000664�0000000�0000000�00000000545�14753064456�0026522�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18.5c0 1.29.39 2.5 1.04 3.5H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h1v7l2.5-1.5L12 9V2h6a2 2 0 0 1 2 2v8.18c-.5-.11-1-.18-1.5-.18a6.5 6.5 0 0 0-6.5 6.5m10 0v-4l-1.17 1.17A4 4 0 0 0 18 14.5c-2.21 0-4 1.79-4 4s1.79 4 4 4c1.68 0 3.12-1.03 3.71-2.5H20a2.5 2.5 0 1 1-.23-3.27L18 18.5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-remove-multiple-outline.svg�����������0000664�0000000�0000000�00000000573�14753064456�0031670�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.09 20H5V6H3v14a2 2 0 0 0 2 2h8.81a5.5 5.5 0 0 1-.72-2M19 2H9a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h4.09a5.5 5.5 0 0 1 .72-2H9V4h2v6l2.5-2.25L16 10V4h3v9a6 6 0 0 1 2 .34V4a2 2 0 0 0-2-2m3.54 14.88L20.41 19l2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.42-1.42L17.59 19l-2.13-2.12 1.42-1.42L19 17.59l2.12-2.13Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-remove-multiple.svg�������������������0000664�0000000�0000000�00000000540�14753064456�0030205�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.09 20H5V6H3v14a2 2 0 0 0 2 2h8.81a5.5 5.5 0 0 1-.72-2M19 2h-5v5l-2-1.5L10 7V2H9a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h4.09A6 6 0 0 1 21 13.34V4a2 2 0 0 0-2-2m3.54 14.88L20.41 19l2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.42-1.42L17.59 19l-2.13-2.12 1.42-1.42L19 17.59l2.12-2.13Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-remove-outline.svg��������������������0000664�0000000�0000000�00000000537�14753064456�0030037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.09 20c.12.72.37 1.39.72 2H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v9.09c-.33-.05-.66-.09-1-.09s-.67.04-1 .09V4h-5v8l-2.5-2.25L8 12V4H6v16zm9.45-3.12-1.42-1.41L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-remove.svg����������������������������0000664�0000000�0000000�00000000522�14753064456�0026354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 1.1.3 2.12.81 3H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h1v7l2.5-1.5L12 9V2h6a2 2 0 0 1 2 2v9.09c-.33-.05-.66-.09-1-.09-3.31 0-6 2.69-6 6m9.54-2.12-1.42-1.41L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-search-outline.svg��������������������0000664�0000000�0000000�00000000672�14753064456�0030007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 12c2.5 0 4.5 2 4.5 4.5 0 .88-.25 1.71-.69 2.4l3.08 3.1L21 23.39l-3.12-3.07c-.69.43-1.51.68-2.38.68-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5m0 2a2.5 2.5 0 0 0-2.5 2.5 2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5M13 4v8l-2.5-2.25L8 12V4H6v16h4c.54.81 1.23 1.5 2.03 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v7.81c-.58-.55-1.25-1-2-1.31V4z"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-search.svg����������������������������0000664�0000000�0000000�00000000707�14753064456�0026331�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 12c2.5 0 4.5 2 4.5 4.5 0 .88-.25 1.71-.69 2.4l3.08 3.1L21 23.39l-3.12-3.07c-.69.43-1.51.68-2.38.68-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5m0 2a2.5 2.5 0 0 0-2.5 2.5 2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h1v7l2.5-1.5L12 9V2h6a2 2 0 0 1 2 2v7.81A6.48 6.48 0 0 0 15.5 10 6.5 6.5 0 0 0 9 16.5c0 2.31 1.21 4.35 3.03 5.5z"/></svg>���������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-settings-outline.svg������������������0000664�0000000�0000000�00000000347�14753064456�0030401�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 0H6C4.89 0 4 .895 4 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V2c0-1.105-.89-2-2-2m0 18H6V2h2v8l2.5-2.25L13 10V2h5zM7 22h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-settings.svg��������������������������0000664�0000000�0000000�00000000331�14753064456�0026715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2v16c0 1.11-.89 2-2 2H6c-1.11 0-2-.89-2-2V2c0-1.105.89-2 2-2h1v7l2.5-1.5L12 7V0h6a2 2 0 0 1 2 2M7 24h2v-2H7zm8 0h2v-2h-2zm-4 0h2v-2h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-sync-outline.svg����������������������0000664�0000000�0000000�00000000751�14753064456�0027514�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.5 20c.31.75.76 1.42 1.32 2H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v7.03c-.16-.03-.33-.03-.5-.03-.5 0-1 .07-1.5.18V4h-5v8l-2.5-2.25L8 12V4H6v16zm5.5 0a2.5 2.5 0 0 1-2.5-2.5c0-.4.09-.78.26-1.12l-1.09-1.09c-.42.63-.67 1.39-.67 2.21 0 2.21 1.79 4 4 4V23l2.25-2.25L19 18.5zm0-6.5V12l-2.25 2.25L19 16.5V15a2.5 2.5 0 0 1 2.5 2.5c0 .4-.09.78-.26 1.12l1.09 1.09c.42-.63.67-1.39.67-2.21 0-2.21-1.79-4-4-4"/></svg>�����������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-sync.svg������������������������������0000664�0000000�0000000�00000000743�14753064456�0026040�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 17.5c0 1.75.69 3.33 1.82 4.5H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h1v7l2.5-1.5L12 9V2h6a2 2 0 0 1 2 2v7.03c-.16-.03-.33-.03-.5-.03a6.5 6.5 0 0 0-6.5 6.5m6 2.5a2.5 2.5 0 0 1-2.5-2.5c0-.4.09-.78.26-1.12l-1.09-1.09c-.42.63-.67 1.39-.67 2.21 0 2.21 1.79 4 4 4V23l2.25-2.25L19 18.5zm0-6.5V12l-2.25 2.25L19 16.5V15a2.5 2.5 0 0 1 2.5 2.5c0 .4-.09.78-.26 1.12l1.09 1.09c.42-.63.67-1.39.67-2.21 0-2.21-1.79-4-4-4"/></svg>�����������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book-variant.svg���������������������������0000664�0000000�0000000�00000000253�14753064456�0026524�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 4h5v8l-2.5-1.5L6 12M18 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/book.svg�����������������������������������0000664�0000000�0000000�00000000247�14753064456�0025065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 22a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2h-6v7L9.5 7.5 7 9V2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bookmark-box-multiple-outline.svg����������0000664�0000000�0000000�00000000341�14753064456�0032027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 20h14v2H4c-1.1 0-2-.9-2-2V6h2zM22 4v12c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2m-2 0H8v12h12zm-2 2h-5v7l2.5-1.5L18 13z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bookmark-box-multiple.svg������������������0000664�0000000�0000000�00000000321�14753064456�0030350�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 6H2v14c0 1.1.9 2 2 2h14v-2H4zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 10-2.5-1.5L15 12V4h5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bookmark-box-outline.svg�������������������0000664�0000000�0000000�00000000400�14753064456�0030172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14a2 2 0 0 1 2 2v14c0 .53-.21 1.04-.59 1.41-.37.38-.88.59-1.41.59H5c-.53 0-1.04-.21-1.41-.59C3.21 20.04 3 19.53 3 19V5c0-1.11.89-2 2-2m14 16V5H5v14zM17 7h-5v8l2.5-1.5L17 15z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bookmark-box.svg���������������������������0000664�0000000�0000000�00000000262�14753064456�0026523�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m-1 11-2.5-1.5L13 14V6h5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bookmark-check-outline.svg�����������������0000664�0000000�0000000�00000000317�14753064456�0030466�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.47 9.65-1.41 1.42L11 14l5.19-5.18-1.41-1.42L11 11.18M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2m0 15-5-2.18L7 18V5h10Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bookmark-check.svg�������������������������0000664�0000000�0000000�00000000261�14753064456�0027007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 3a2 2 0 0 1 2 2v16l-7-3-7 3V5a2 2 0 0 1 2-2zm-6 11 6.25-6.24-1.41-1.42L11 11.18 8.41 8.59 7 10z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bookmark-minus-outline.svg�����������������0000664�0000000�0000000�00000000244�14753064456�0030543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 11V9h6v2zm10-6v16l-7-3-7 3V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2m-2 0H7v13l5-2.18L17 18z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bookmark-minus.svg�������������������������0000664�0000000�0000000�00000000212�14753064456�0027061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 3H7a2 2 0 0 0-2 2v16l7-3 7 3V5a2 2 0 0 0-2-2m-2 8H9V9h6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bookmark-multiple-outline.svg��������������0000664�0000000�0000000�00000000303�14753064456�0031237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 1h10a2 2 0 0 1 2 2v16l-2-.87V3H7a2 2 0 0 1 2-2m6 19V7H5v13l5-2.18zm0-15a2 2 0 0 1 2 2v16l-7-3-7 3V7a2 2 0 0 1 2-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bookmark-multiple.svg����������������������0000664�0000000�0000000�00000000257�14753064456�0027572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 5a2 2 0 0 1 2 2v16l-7-3-7 3V7a2 2 0 0 1 2-2zM9 1h10a2 2 0 0 1 2 2v16l-2-.87V3H7a2 2 0 0 1 2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bookmark-music-outline.svg�����������������0000664�0000000�0000000�00000000326�14753064456�0030531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 3c-1.1 0-2 .9-2 2v16l7-3 7 3V5a2 2 0 0 0-2-2zm0 2h10v13l-5-2.18L7 18zm5 1v5.3c-.3-.2-.6-.3-1-.3a2 2 0 1 0 0 4c1.11 0 2-.89 2-2V8h2V6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bookmark-music.svg�������������������������0000664�0000000�0000000�00000000322�14753064456�0027050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 3a2 2 0 0 1 2 2v16l-7-3-7 3V5a2 2 0 0 1 2-2zm-6 8a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2V8h3V6h-4v5.27c-.29-.17-.64-.27-1-.27"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bookmark-off-outline.svg�������������������0000664�0000000�0000000�00000000343�14753064456�0030162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.28 4 2 5.27l3 3V21l7-3 4.78 2.05L18.73 22 20 20.72zM7 18v-7.73l6 5.98-1-.43zM7 5.16 5.5 3.67C5.88 3.26 6.41 3 7 3h10a2 2 0 0 1 2 2v12.16l-2-2V5H7z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bookmark-off.svg���������������������������0000664�0000000�0000000�00000000271�14753064456�0026505�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 20.72 18.73 22l-1.95-1.95L12 18l-7 3V8.27l-3-3L3.28 4zm-1-3.56V5a2 2 0 0 0-2-2H7c-.59 0-1.11.27-1.5.68z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bookmark-outline.svg�����������������������0000664�0000000�0000000�00000000224�14753064456�0027410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17 18-5-2.18L7 18V5h10m0-2H7a2 2 0 0 0-2 2v16l7-3 7 3V5a2 2 0 0 0-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bookmark-plus-outline.svg������������������0000664�0000000�0000000�00000000262�14753064456�0030373�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 18V5H7v13l5-2.18zm0-15a2 2 0 0 1 2 2v16l-7-3-7 3V5a2 2 0 0 1 2-2zm-6 4h2v2h2v2h-2v2h-2v-2H9V9h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bookmark-plus.svg��������������������������0000664�0000000�0000000�00000000234�14753064456�0026715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 3a2 2 0 0 1 2 2v16l-7-3-7 3V5a2 2 0 0 1 2-2zm-6 4v2H9v2h2v2h2v-2h2V9h-2V7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bookmark-remove-outline.svg����������������0000664�0000000�0000000�00000000413�14753064456�0030703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 3c-1.1 0-2 .9-2 2v16l7-3 7 3V5a2 2 0 0 0-2-2zm0 2h10v13l-5-2.18L7 18zm2.88 2.47L8.47 8.88 10.59 11l-2.12 2.12 1.41 1.42L12 12.42l2.12 2.11 1.42-1.41L13.42 11l2.11-2.12-1.41-1.41L12 9.59z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bookmark-remove.svg������������������������0000664�0000000�0000000�00000000363�14753064456�0027232�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 3a2 2 0 0 1 2 2v16l-7-3-7 3V5a2 2 0 0 1 2-2zM8.17 8.58 10.59 11l-2.42 2.41 1.42 1.42L12 12.41l2.41 2.42 1.42-1.42L13.41 11l2.42-2.42-1.42-1.41L12 9.58 9.59 7.17z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bookmark.svg�������������������������������0000664�0000000�0000000�00000000176�14753064456�0025741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 3H7a2 2 0 0 0-2 2v16l7-3 7 3V5a2 2 0 0 0-2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bookshelf.svg������������������������������0000664�0000000�0000000�00000000207�14753064456�0026103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 3v15h3V3zm3 2 4 13 3-1-4-13zM5 5v13h3V5zM3 19v2h18v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/boom-gate-alert-outline.svg����������������0000664�0000000�0000000�00000000656�14753064456�0030573�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.9 3c-.6-1-1.8-1.3-2.7-.7L6.9 8.2C6.6 8.1 6.3 8 6 8c-1.7 0-3 1.3-3 3v9c-.6 0-1 .4-1 1v1h8v-1c0-.6-.4-1-1-1v-8.4l10.1-5.8c1-.6 1.3-1.8.8-2.8M7.5 20h-3v-6.4c.9.5 2.1.5 3 0zM6 12.5c-.8 0-1.5-.7-1.5-1.5S5.2 9.5 6 9.5s1.5.7 1.5 1.5-.7 1.5-1.5 1.5m4.4-2.9-2.3-1 1.3-.8 2.3 1zm3.5-2-2.3-1 1.3-.8 2.3 1zm3.4-2-2.3-1 1.3-.8 2.3 1zM20 16h-2v-6h2zm0 4h-2v-2h2z"/></svg>����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/boom-gate-alert.svg������������������������0000664�0000000�0000000�00000000615�14753064456�0027111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.9 3c-.6-1-1.8-1.3-2.7-.7L6.9 8.2C6.6 8.1 6.3 8 6 8c-1.7 0-3 1.3-3 3v9c-.6 0-1 .4-1 1v1h8v-1c0-.6-.4-1-1-1v-8.4l10.1-5.8c1-.6 1.3-1.8.8-2.8M6 12.5c-.8 0-1.5-.7-1.5-1.5S5.2 9.5 6 9.5s1.5.7 1.5 1.5-.7 1.5-1.5 1.5m4.4-2.9-2.3-1 1.3-.8 2.3 1zm3.5-2-2.3-1 1.3-.8 2.3 1zm3.4-2-2.3-1 1.3-.8 2.3 1zM20 18h-2v2h2zm0-8h-2v6h2z"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/boom-gate-arrow-down-outline.svg�����������0000664�0000000�0000000�00000000747�14753064456�0031564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.86 3c.55.96.22 2.18-.74 2.73L9 11.58V20a1 1 0 0 1 1 1v1H2v-1a1 1 0 0 1 1-1v-9a3 3 0 0 1 3-3c.31 0 .62.06.92.16l10.2-5.89c.97-.56 2.19-.23 2.74.73M7.5 20v-6.4c-.93.54-2.07.54-3 0V20zM6 12.5A1.5 1.5 0 0 0 7.5 11 1.5 1.5 0 0 0 6 9.5 1.5 1.5 0 0 0 4.5 11 1.5 1.5 0 0 0 6 12.5m4.4-2.88 1.3-.75-2.3-1-1.3.75zm3.46-2 1.3-.75-2.3-1-1.3.75zm3.47-2 1.29-.75-2.29-1-1.3.75zM16 11.16h2v5.01l3-.01L17 20l-4-3.84 3 .01z"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/material/boom-gate-arrow-down.svg�������������������0000664�0000000�0000000�00000000666�14753064456�0030107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.86 3a1.995 1.995 0 0 0-2.74-.73L6.92 8.16C6.62 8.06 6.31 8 6 8a3 3 0 0 0-3 3v9a1 1 0 0 0-1 1v1h8v-1a1 1 0 0 0-1-1v-8.42l10.12-5.85c.96-.55 1.29-1.77.74-2.73M6 12.5A1.5 1.5 0 0 1 4.5 11 1.5 1.5 0 0 1 6 9.5 1.5 1.5 0 0 1 7.5 11 1.5 1.5 0 0 1 6 12.5m4.4-2.88-2.3-1 1.3-.75 2.3 1zm3.46-2-2.3-1 1.3-.75 2.3 1zm3.47-2-2.3-1 1.3-.75 2.29 1zM17 20l-5-5h3v-4h4v4h3z"/></svg>��������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/boom-gate-arrow-up-outline.svg�������������0000664�0000000�0000000�00000000733�14753064456�0031234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.86 3c.55.96.22 2.18-.74 2.73L9 11.58V20a1 1 0 0 1 1 1v1H2v-1a1 1 0 0 1 1-1v-9a3 3 0 0 1 3-3c.31 0 .62.06.92.16l10.2-5.89c.97-.56 2.19-.23 2.74.73M7.5 20v-6.4c-.93.54-2.07.54-3 0V20zM6 12.5A1.5 1.5 0 0 0 7.5 11 1.5 1.5 0 0 0 6 9.5 1.5 1.5 0 0 0 4.5 11 1.5 1.5 0 0 0 6 12.5m4.4-2.88 1.3-.75-2.3-1-1.3.75zm3.46-2 1.3-.75-2.3-1-1.3.75zm3.47-2 1.29-.75-2.29-1-1.3.75zM16 20v-5h-3l4-3.84L21 15h-3v5z"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/boom-gate-arrow-up.svg���������������������0000664�0000000�0000000�00000000670�14753064456�0027557�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.86 3a1.995 1.995 0 0 0-2.74-.73L6.92 8.16C6.62 8.06 6.31 8 6 8a3 3 0 0 0-3 3v9a1 1 0 0 0-1 1v1h8v-1a1 1 0 0 0-1-1v-8.42l10.12-5.85c.96-.55 1.29-1.77.74-2.73M6 12.5A1.5 1.5 0 0 1 4.5 11 1.5 1.5 0 0 1 6 9.5 1.5 1.5 0 0 1 7.5 11 1.5 1.5 0 0 1 6 12.5m4.4-2.88-2.3-1 1.3-.75 2.3 1zm3.46-2-2.3-1 1.3-.75 2.3 1zm3.47-2-2.3-1 1.3-.75 2.29 1zM17 11l5 5h-3v4h-4v-4h-3z"/></svg>������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/boom-gate-outline.svg����������������������0000664�0000000�0000000�00000000610�14753064456�0027454�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 9H8.22A2.97 2.97 0 0 0 4 8.8c-.64.56-1 1.36-1 2.2v9a1 1 0 0 0-1 1v1h8v-1a1 1 0 0 0-1-1v-7h11a2 2 0 0 0 2-2 2 2 0 0 0-2-2M7.5 20h-3v-6.4c.93.54 2.07.54 3 0zM6 12.5A1.5 1.5 0 0 1 4.5 11 1.5 1.5 0 0 1 6 9.5 1.5 1.5 0 0 1 7.5 11 1.5 1.5 0 0 1 6 12.5m4.5-.5L9 10h1.5l1.5 2zm4 0L13 10h1.5l1.5 2zm4 0L17 10h1.5l1.5 2z"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/boom-gate-up-outline.svg�������������������0000664�0000000�0000000�00000000622�14753064456�0030101�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.9 3c-.6-1-1.8-1.3-2.7-.7L6.9 8.2C6.6 8.1 6.3 8 6 8c-1.7 0-3 1.3-3 3v9c-.6 0-1 .4-1 1v1h8v-1c0-.6-.4-1-1-1v-8.4l10.1-5.8c1-.6 1.3-1.8.8-2.8M7.5 20h-3v-6.4c.9.5 2.1.5 3 0zM6 12.5c-.8 0-1.5-.7-1.5-1.5S5.2 9.5 6 9.5s1.5.7 1.5 1.5-.7 1.5-1.5 1.5m4.4-2.9-2.3-1 1.3-.8 2.3 1zm3.5-2-2.3-1 1.3-.8 2.3 1zm3.4-2-2.3-1 1.3-.8 2.3 1z"/></svg>��������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/boom-gate-up.svg���������������������������0000664�0000000�0000000�00000000563�14753064456�0026430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.9 3c-.6-1-1.8-1.3-2.7-.7L6.9 8.2C6.6 8.1 6.3 8 6 8c-1.7 0-3 1.3-3 3v9c-.6 0-1 .4-1 1v1h8v-1c0-.6-.4-1-1-1v-8.4l10.1-5.8c1-.6 1.3-1.8.8-2.8M6 12.5c-.8 0-1.5-.7-1.5-1.5S5.2 9.5 6 9.5s1.5.7 1.5 1.5-.7 1.5-1.5 1.5m4.4-2.9-2.3-1 1.3-.8 2.3 1zm3.5-2-2.3-1 1.3-.8 2.3 1zm3.4-2-2.3-1 1.3-.8 2.3 1z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/boom-gate.svg������������������������������0000664�0000000�0000000�00000000545�14753064456�0026006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 9H8.22A2.97 2.97 0 0 0 4 8.8c-.64.56-1 1.36-1 2.2v9a1 1 0 0 0-1 1v1h8v-1a1 1 0 0 0-1-1v-7h11a2 2 0 0 0 2-2 2 2 0 0 0-2-2M6 12.5A1.5 1.5 0 0 1 4.5 11 1.5 1.5 0 0 1 6 9.5 1.5 1.5 0 0 1 7.5 11 1.5 1.5 0 0 1 6 12.5m4.5-.5L9 10h1.5l1.5 2zm4 0L13 10h1.5l1.5 2zm4 0L17 10h1.5l1.5 2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/boombox.svg��������������������������������0000664�0000000�0000000�00000001055�14753064456�0025576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 5 5 7v1H3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1h-2V7l-2-2zm0 2h10v1H7zm4 2h2a.5.5 0 0 1 .5.5.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5.5.5 0 0 1 .5-.5m-3.5 1.5a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3m9 0a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3m-9 1.5A1.5 1.5 0 0 0 6 13.5 1.5 1.5 0 0 0 7.5 15 1.5 1.5 0 0 0 9 13.5 1.5 1.5 0 0 0 7.5 12m9 0a1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/boomerang.svg������������������������������0000664�0000000�0000000�00000000310�14753064456�0026073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2H4c-1.1 0-2 .9-2 2s.9 2 2 2h4zm8 0c2.2 0 4 1.8 4 4v6l-4 2c0-4.4-3.6-8-8-8l2-4zm0 18v-4l4-2v6c0 1.1-.9 2-2 2s-2-.9-2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bootstrap.svg������������������������������0000664�0000000�0000000�00000000734�14753064456�0026151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.79 11.5H9.72V8.19h2.47c1.26 0 1.96.56 1.96 1.59 0 1.12-.83 1.72-2.36 1.72m.37 1.13H9.72v3.64h2.56c1.56 0 2.38-.63 2.38-1.83s-.85-1.81-2.5-1.81M22 5.31v13.38C22 20.5 20.5 22 18.69 22H5.31C3.5 22 2 20.5 2 18.69V5.31C2 3.5 3.5 2 5.31 2h13.38C20.5 2 22 3.5 22 5.31m-6 9.19c0-1.38-.92-2.37-2.33-2.55v-.06c1-.18 1.79-1.18 1.79-2.26 0-1.55-1.2-2.58-2.96-2.58H8.43v10.36h4.04c2.21 0 3.53-1.09 3.53-2.91"/></svg>������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/border-all-variant.svg���������������������0000664�0000000�0000000�00000000151�14753064456�0027612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 21V3h18v18zM5 5v14h14V5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/border-all.svg�����������������������������0000664�0000000�0000000�00000000214�14753064456�0026150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 11h-6V5h6m0 14h-6v-6h6m-8-2H5V5h6m0 14H5v-6h6m-8 8h18V3H3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/border-bottom-variant.svg������������������0000664�0000000�0000000�00000000326�14753064456�0030352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 15H3v2h2m-2 4h18v-2H3m2-8H3v2h2m14-4h2V7h-2m0-2h2V3h-2M5 7H3v2h2m14 8h2v-2h-2m0-2h2v-2h-2m-2-8h-2v2h2m-4-2h-2v2h2M5 3H3v2h2m4-2H7v2h2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/border-bottom.svg��������������������������0000664�0000000�0000000�00000000420�14753064456�0026703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 15H3v2h2m-2 4h18v-2H3m2-8H3v2h2m14-4h2V7h-2m0-2h2V3h-2M5 7H3v2h2m14 8h2v-2h-2m0-2h2v-2h-2m-2-8h-2v2h2m-4-2h-2v2h2m4 6h-2v2h2m-4-6h-2v2h2M5 3H3v2h2m8 6h-2v2h2M9 3H7v2h2m4 10h-2v2h2m-4-6H7v2h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/border-color.svg���������������������������0000664�0000000�0000000�00000000276�14753064456�0026526�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.71 4.04c.39-.39.39-1.04 0-1.41L18.37.29C18-.1 17.35-.1 16.96.29L15 2.25 18.75 6m-1 1L14 3.25l-10 10V17h3.75z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/border-horizontal.svg����������������������0000664�0000000�0000000�00000000427�14753064456�0027577�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 21h2v-2h-2m-4 2h2v-2h-2m-4-2h2v-2h-2m8-6h2V7h-2m0-2h2V3h-2M3 13h18v-2H3m8 10h2v-2h-2m8-2h2v-2h-2M13 3h-2v2h2m0 2h-2v2h2m4-6h-2v2h2M9 3H7v2h2M5 3H3v2h2m2 16h2v-2H7m-4-2h2v-2H3m2-8H3v2h2M3 21h2v-2H3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/border-inside.svg��������������������������0000664�0000000�0000000�00000000372�14753064456�0026660�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 17h2v-2h-2m0 6h2v-2h-2M13 3h-2v8H3v2h8v8h2v-8h8v-2h-8m2 10h2v-2h-2m4-14h2V3h-2m0 6h2V7h-2m-2-4h-2v2h2M5 3H3v2h2m4-2H7v2h2M3 17h2v-2H3m2-8H3v2h2m2 12h2v-2H7m-4 2h2v-2H3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/border-left-variant.svg��������������������0000664�0000000�0000000�00000000337�14753064456�0030002�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 5h2V3h-2m4 18h2v-2h-2m0-6h2v-2h-2m0-6h2V3h-2m0 14h2v-2h-2m-4 6h2v-2h-2m4-10h2V7h-2M3 21h2V3H3m4 2h2V3H7m0 18h2v-2H7m4-14h2V3h-2m0 18h2v-2h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/border-left.svg����������������������������0000664�0000000�0000000�00000000432�14753064456�0026334�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 5h2V3h-2m0 10h2v-2h-2m4 10h2v-2h-2m0-6h2v-2h-2m0-6h2V3h-2m0 14h2v-2h-2m-4 6h2v-2h-2m4-10h2V7h-2M3 21h2V3H3m4 10h2v-2H7m0-6h2V3H7m0 18h2v-2H7m4-6h2v-2h-2m0-2h2V7h-2m0-2h2V3h-2m0 14h2v-2h-2m0 6h2v-2h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/border-none-variant.svg��������������������0000664�0000000�0000000�00000000406�14753064456�0030004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 5h2V3h-2m0 18h2v-2h-2M11 5h2V3h-2m8 2h2V3h-2m0 6h2V7h-2m0 14h2v-2h-2m0-6h2v-2h-2m0 6h2v-2h-2M3 5h2V3H3m0 6h2V7H3m0 6h2v-2H3m0 6h2v-2H3m0 6h2v-2H3m8 2h2v-2h-2m-4 2h2v-2H7M7 5h2V3H7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/border-none.svg����������������������������0000664�0000000�0000000�00000000503�14753064456�0026340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 5h2V3h-2m0 10h2v-2h-2m0 10h2v-2h-2M11 5h2V3h-2m8 2h2V3h-2m-8 6h2V7h-2m8 2h2V7h-2m0 14h2v-2h-2m0-6h2v-2h-2m0 6h2v-2h-2m-8-2h2v-2h-2M3 5h2V3H3m0 6h2V7H3m0 6h2v-2H3m0 6h2v-2H3m0 6h2v-2H3m8 2h2v-2h-2m0-2h2v-2h-2m-4 6h2v-2H7m0-6h2v-2H7m0-6h2V3H7z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/border-outside.svg�������������������������0000664�0000000�0000000�00000000237�14753064456�0027061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 11H7v2h2m4 2h-2v2h2m6 2H5V5h14M3 21h18V3H3m14 8h-2v2h2m-4-2h-2v2h2m0-6h-2v2h2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/border-radius.svg��������������������������0000664�0000000�0000000�00000000425�14753064456�0026673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 16c0 2.8 2.2 5 5 5h2v-2H8c-1.7 0-3-1.3-3-3v-2H3zm18-8c0-2.8-2.2-5-5-5h-2v2h2c1.7 0 3 1.3 3 3v2h2zm-5 13c2.8 0 5-2.2 5-5v-2h-2v2c0 1.7-1.3 3-3 3h-2v2zM8 3C5.2 3 3 5.2 3 8v2h2V8c0-1.7 1.3-3 3-3h2V3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/border-right-variant.svg�������������������0000664�0000000�0000000�00000000330�14753064456�0030156�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 5h2V3h-2m4 2h2V3h-2m0 18h2v-2h-2m4 2h2V3h-2M3 9h2V7H3m0 10h2v-2H3m0-2h2v-2H3m8 10h2v-2h-2m-8 2h2v-2H3M7 5h2V3H7M3 5h2V3H3m4 18h2v-2H7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/border-right.svg���������������������������0000664�0000000�0000000�00000000426�14753064456�0026522�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 9h2V7h-2m0-2h2V3h-2m0 10h2v-2h-2m4-6h2V3h-2m0 18h2v-2h-2m4 2h2V3h-2m-4 10h2v-2h-2m-4 6h2v-2h-2M3 9h2V7H3m0 10h2v-2H3m0-2h2v-2H3m8 10h2v-2h-2m-8 2h2v-2H3m4-6h2v-2H7m0-6h2V3H7M3 5h2V3H3m4 18h2v-2H7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/border-style.svg���������������������������0000664�0000000�0000000�00000000264�14753064456�0026545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 21h2v-2h-2m4 2h2v-2h-2M7 21h2v-2H7m4 2h2v-2h-2m8-2h2v-2h-2m0-2h2v-2h-2M3 3v18h2V5h16V3m-2 6h2V7h-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/border-top-variant.svg���������������������0000664�0000000�0000000�00000000336�14753064456�0027651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 21h2v-2h-2m-4 2h2v-2h-2m4-2h2v-2h-2M3 5h18V3H3m16 10h2v-2h-2m0-2h2V7h-2M3 9h2V7H3m0 6h2v-2H3m0 10h2v-2H3m0-2h2v-2H3m8 6h2v-2h-2m-4 2h2v-2H7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/border-top.svg�����������������������������0000664�0000000�0000000�00000000435�14753064456�0026207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 13h2v-2h-2m4 10h2v-2h-2M11 9h2V7h-2m4 14h2v-2h-2m4-2h2v-2h-2M3 5h18V3H3m16 10h2v-2h-2m0-2h2V7h-2m-8 10h2v-2h-2M3 9h2V7H3m0 6h2v-2H3m0 10h2v-2H3m0-2h2v-2H3m8 6h2v-2h-2m0-6h2v-2h-2m-4 2h2v-2H7m0 10h2v-2H7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/border-vertical.svg������������������������0000664�0000000�0000000�00000000426�14753064456�0027216�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 13h2v-2h-2m0 10h2v-2h-2m0-14h2V3h-2m4 6h2V7h-2m0-2h2V3h-2m0 10h2v-2h-2m0 10h2v-2h-2m-8 2h2V3h-2m8 14h2v-2h-2M7 5h2V3H7M3 17h2v-2H3m0 6h2v-2H3m0-6h2v-2H3m4 2h2v-2H7m0 10h2v-2H7M3 5h2V3H3m0 6h2V7H3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bottle-soda-classic-outline.svg������������0000664�0000000�0000000�00000000575�14753064456�0031450�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2v2h.91C10.65 5.79 9 7.5 8 9v4.77a3.007 3.007 0 0 1 0 4.46V20a2 2 0 0 0 2 2h4c1.11 0 2-.89 2-2v-1.77a3.007 3.007 0 0 1 0-4.46V9c-1-1.5-2.65-3.21-2.91-5H14V2m-2 4.5c.24.5 1.54 2 1.9 2.41L14 9v4c-.65.87-1 1.92-1 3s.35 2.13 1 3v1h-4v-1c.65-.87 1-1.92 1-3s-.35-2.13-1-3V9l.1-.09C10.46 8.5 11.76 7 12 6.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bottle-soda-classic.svg��������������������0000664�0000000�0000000�00000000336�14753064456�0027766�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 13.77a3 3 0 0 0 0 4.46V20a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-1.77a3 3 0 0 0 0-4.46V9a12.3 12.3 0 0 0 1.91-5H10V2h4v2h-.91A12.3 12.3 0 0 0 15 9Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bottle-soda-outline.svg��������������������0000664�0000000�0000000�00000000421�14753064456�0030017�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.4 9.58C12.9 7.89 13 4 13 4h1V2h-4v2h1s.1 3.89-1.4 5.58A2 2 0 0 0 9 11v9a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-9a2 2 0 0 0-.6-1.42M13 20h-2v-9l.1-.09A6.3 6.3 0 0 0 12 9.5a6.3 6.3 0 0 0 .9 1.41l.1.09Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bottle-soda.svg����������������������������0000664�0000000�0000000�00000000314�14753064456�0026343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 11v9a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-9a2 2 0 0 1 .6-1.42C11.1 7.89 11 4 11 4h-1V2h4v2h-1s-.1 3.89 1.4 5.58A2 2 0 0 1 15 11"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bottle-tonic-outline.svg�������������������0000664�0000000�0000000�00000000317�14753064456�0030211�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 4h-2l-1-2h4zm6 9v9H5v-9c0-2.76 2.24-5 5-5V6H9V5h6v1h-1v2c2.76 0 5 2.24 5 5m-2 0c0-1.65-1.35-3-3-3h-4c-1.65 0-3 1.35-3 3v7h10z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bottle-tonic-plus-outline.svg��������������0000664�0000000�0000000�00000000360�14753064456�0031170�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 4h-2l-1-2h4zm6 9v9H5v-9c0-2.76 2.24-5 5-5V6H9V5h6v1h-1v2c2.76 0 5 2.24 5 5m-2 0c0-1.65-1.35-3-3-3h-4c-1.65 0-3 1.35-3 3v7h10zm-2 3h-2v2h-2v-2H9v-2h2v-2h2v2h2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bottle-tonic-plus.svg����������������������0000664�0000000�0000000�00000000275�14753064456�0027520�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 4h-2l-1-2h4zm1 4V6h1V5H9v1h1v2c-2.76 0-5 2.24-5 5v9h14v-9c0-2.76-2.24-5-5-5m2 9h-3v3h-2v-3H8v-2h3v-3h2v3h3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bottle-tonic-skull-outline.svg�������������0000664�0000000�0000000�00000000725�14753064456�0031344�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 4h-2l-1-2h4zm1 4V6h1V5H9v1h1v2c-2.76 0-5 2.24-5 5v9h14v-9c0-2.76-2.24-5-5-5m3 12H7v-7c0-1.65 1.35-3 3-3h4c1.65 0 3 1.35 3 3zm-5-9c-2.21 0-4 1.79-4 4 0 1 .39 1.9 1 2.59V19h1.25v-1.5h1.13V19h1.25v-1.5h1.12V19H15v-1.41A3.9 3.9 0 0 0 16 15c0-2.21-1.79-4-4-4m-1.5 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m.75 1.25L12 15l.75 1.25zM13.5 15c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1"/></svg>�������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bottle-tonic-skull.svg���������������������0000664�0000000�0000000�00000000646�14753064456�0027671�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13v9H5v-9c0-2.76 2.24-5 5-5V6H9V5h6v1h-1v2c2.76 0 5 2.24 5 5m-6-9 1-2h-4l1 2zm-1 7c-2.21 0-4 1.79-4 4 0 1 .39 1.9 1 2.59V19h1.25v-1.5h1.13V19h1.25v-1.5h1.12V19H15v-1.41A3.9 3.9 0 0 0 16 15c0-2.21-1.79-4-4-4m-1.5 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m.75 1.25L12 15l.75 1.25zM13.5 15c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1"/></svg>������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bottle-tonic.svg���������������������������0000664�0000000�0000000�00000000234�14753064456�0026532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 4h-2l-1-2h4zm6 9v9H5v-9c0-2.76 2.24-5 5-5V6H9V5h6v1h-1v2c2.76 0 5 2.24 5 5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bottle-wine-outline.svg��������������������0000664�0000000�0000000�00000000723�14753064456�0030040�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.5 2c-.28 0-.5.22-.5.5V7c-.07 0-.15 0-.22.03-.96.24-1.57.97-2.02 1.86C8.3 9.76 8 10.84 8 12c.05 3 0 6.03 0 9 0 .55.45 1 1 1h6c.55 0 1-.45 1-1 .04-3 0-6 0-9 0-1.16-.26-2.24-.72-3.12-.45-.88-1.06-1.61-2.02-1.84C13.18 7 13.05 7 13 7V2.5c0-.28-.22-.5-.5-.5M12 8.85c.32 0 .63.05.78.15.07.03.42.26.72.81.28.56.5 1.36.5 2.19v8h-4v-8c0-.83.22-1.63.5-2.19.3-.55.65-.78.72-.81.14-.1.46-.15.78-.15"/></svg>���������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bottle-wine.svg����������������������������0000664�0000000�0000000�00000000275�14753064456�0026365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 22a1 1 0 0 1-1-1V11c0-2 1-3.75 2-4V2.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5V7c1 .25 2 2 2 4v10a1 1 0 0 1-1 1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bow-arrow.svg������������������������������0000664�0000000�0000000�00000000610�14753064456�0026044�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.03 6.03 20 7l2-5-5 2 .97.97-1.82 1.82C10.87 2.16 3.3 3.94 2.97 4L2 4.26l.5 1.94.79-.2 6.83 6.82L6.94 16H5l-3 3 2 1 1 2 3-3v-1.94l3.18-3.18L18 20.71l-.19.79 1.93.5.26-.97c.06-.33 1.84-7.9-2.79-13.18zM4.5 5.78c2.05-.28 6.78-.5 10.23 2.43l-3.91 3.91zM18.22 19.5l-6.34-6.32 3.91-3.91c2.93 3.45 2.71 8.18 2.43 10.23"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bow-tie.svg��������������������������������0000664�0000000�0000000�00000000174�14753064456�0025500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15 14 6 3V7l-6 3zm-6 0-6 3V7l6 3zm1-4h4v4h-4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bowl-mix-outline.svg�����������������������0000664�0000000�0000000�00000000317�14753064456�0027344�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.6 12H2v3c0 3.9 3.1 7 7 7h6c3.9 0 7-3.1 7-7v-3zm4.4 3c0 2.8-2.2 5-5 5H9c-2.8 0-5-2.2-5-5v-1h16zm-3.8-4 4.1-6.6L22 5.5 18.6 11z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bowl-mix.svg�������������������������������0000664�0000000�0000000�00000000235�14753064456�0025666�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.2 11 4.1-6.5 1.7 1-3.4 5.5zm-.6 1H2v3c0 3.9 3.1 7 7 7h6c3.9 0 7-3.1 7-7v-3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bowl-outline.svg���������������������������0000664�0000000�0000000�00000000250�14753064456�0026545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 12v3c0 3.9 3.1 7 7 7h6c3.9 0 7-3.1 7-7v-3zm2 2h16v1c0 2.8-2.2 5-5 5H9c-2.8 0-5-2.2-5-5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bowl.svg�����������������������������������0000664�0000000�0000000�00000000176�14753064456�0025077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 15c0 3.9-3.1 7-7 7H9c-3.9 0-7-3.1-7-7v-3h20z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bowling.svg��������������������������������0000664�0000000�0000000�00000000635�14753064456�0025575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m.5 9a1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5M12 5a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2M5.93 8.5c-.55.95-.22 2.17.73 2.72.96.56 2.18.23 2.74-.72.55-.97.22-2.19-.74-2.74-.95-.55-2.16-.23-2.73.74"/></svg>���������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/box-cutter-off.svg�������������������������0000664�0000000�0000000�00000000604�14753064456�0026774�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.84 22.73-7.98-7.98-.69.69-5.51-2.36c.05-.43.23-.84.56-1.17l1.4-1.41L1.11 3l1.28-1.27 19.72 19.73zm-5.43-10.52-4.25-4.25 5.25-5.25c.79-.78 2.05-.78 2.83 0l1.42 1.42c.78.78.78 2.04 0 2.83zm1.71-5.96c.38.39 1.03.39 1.42 0s.39-1.02 0-1.42c-.39-.39-1.04-.39-1.42 0-.39.4-.39 1.03 0 1.42M5 16v5.75l5.81-5.22-5-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/box-cutter.svg�����������������������������0000664�0000000�0000000�00000000473�14753064456�0026230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.22 11.91c-.33.33-.51.74-.56 1.17l5.51 2.36 8.49-8.48c.78-.79.78-2.05 0-2.83l-1.42-1.42c-.78-.78-2.04-.78-2.83 0zM5 16v5.75l5.81-5.22-5-2zM17.12 4.83c.38-.39 1.03-.39 1.42 0 .39.4.39 1.03 0 1.42s-1.04.39-1.42 0c-.39-.39-.39-1.02 0-1.42"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/box-shadow.svg�����������������������������0000664�0000000�0000000�00000000315�14753064456�0026202�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h15v15H3zm16 16h2v2h-2zm0-3h2v2h-2zm0-3h2v2h-2zm0-3h2v2h-2zm0-3h2v2h-2zm-3 12h2v2h-2zm-3 0h2v2h-2zm-3 0h2v2h-2zm-3 0h2v2H7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/box.svg������������������������������������0000664�0000000�0000000�00000001437�14753064456�0024725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.39 14.04a2.57 2.57 0 0 0-2.57-2.57 2.565 2.565 0 1 0 2.57 2.57m1.71 0a4.274 4.274 0 0 1-8.05 2A4.274 4.274 0 0 1 1 14.11V7c0-.44.39-.82.86-.82s.84.38.85.82v3.62c.72-.54 1.61-.86 2.57-.86 1.63 0 3.05.92 3.77 2.27a4.27 4.27 0 0 1 3.77-2.27c2.36 0 4.28 1.92 4.28 4.28m-9.26 0c0-1.42-1.15-2.57-2.56-2.57a2.57 2.57 0 0 0-2.57 2.57 2.565 2.565 0 0 0 5.13 0m15 2.92c.11.16.16.34.16.51 0 .26-.12.53-.34.68a.9.9 0 0 1-.51.17c-.25 0-.5-.11-.65-.32l-1.91-2.53L17.7 18c-.17.21-.42.32-.67.32-.18 0-.36-.06-.53-.17-.21-.15-.33-.43-.33-.69 0-.17.06-.35.16-.5l2.17-2.92-2.17-2.93a.83.83 0 0 1-.16-.5c0-.26.12-.51.33-.68.39-.28.91-.21 1.2.16l1.89 2.52 1.91-2.52c.26-.37.79-.44 1.16-.16.23.17.34.43.34.7 0 .17-.05.34-.16.48l-2.18 2.93z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/boxing-glove.svg���������������������������0000664�0000000�0000000�00000000327�14753064456�0026532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 16V6h3v10zM12 4H7S2 4 2 8v6c0 1.77 1 2.76 2.07 3.31A3.996 3.996 0 0 1 8 14h3v2H8a2 2 0 0 0-2 2 2 2 0 0 0 2 2h5c4 0 4-4 4-4V6s-1-2-5-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/braille.svg��������������������������������0000664�0000000�0000000�00000001151�14753064456�0025540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 8a1 1 0 0 1 1-1 1 1 0 0 1 1 1v4.47l1.21.13 4.94 2.19c.52.24.85.77.85 1.35v4.36c-.03.82-.68 1.47-1.5 1.5H8c-.38 0-.74-.15-1-.43l-4.9-4.2.74-.77c.19-.21.46-.32.74-.32h.22L7 18zm12.5-6A1.5 1.5 0 0 0 18 3.5 1.5 1.5 0 0 0 19.5 5 1.5 1.5 0 0 0 21 3.5 1.5 1.5 0 0 0 19.5 2m0 5A1.5 1.5 0 0 0 18 8.5a1.5 1.5 0 0 0 1.5 1.5A1.5 1.5 0 0 0 21 8.5 1.5 1.5 0 0 0 19.5 7m-5 0A1.5 1.5 0 0 0 13 8.5a1.5 1.5 0 0 0 1.5 1.5A1.5 1.5 0 0 0 16 8.5 1.5 1.5 0 0 0 14.5 7m5 5a1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/brain.svg����������������������������������0000664�0000000�0000000�00000003123�14753064456�0025222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.33 12.91c.09 1.55-.62 3.04-1.89 3.95l.77 1.49c.23.45.26.98.06 1.45-.19.47-.58.84-1.06 1l-.79.25a1.687 1.687 0 0 1-1.86-.55L14.44 18c-.89-.15-1.73-.53-2.44-1.1-.5.15-1 .23-1.5.23-.88 0-1.76-.27-2.5-.79-.53.16-1.07.23-1.62.22-.79.01-1.57-.15-2.3-.45a4.1 4.1 0 0 1-2.43-3.61c-.08-.72.04-1.45.35-2.11-.29-.75-.32-1.57-.07-2.33C2.3 7.11 3 6.32 3.87 5.82c.58-1.69 2.21-2.82 4-2.7 1.6-1.5 4.05-1.66 5.83-.37.42-.11.86-.17 1.3-.17 1.36-.03 2.65.57 3.5 1.64 2.04.53 3.5 2.35 3.58 4.47.05 1.11-.25 2.2-.86 3.13.07.36.11.72.11 1.09m-5-1.41c.57.07 1.02.5 1.02 1.07a1 1 0 0 1-1 1h-.63c-.32.9-.88 1.69-1.62 2.29.25.09.51.14.77.21 5.13-.07 4.53-3.2 4.53-3.25a2.59 2.59 0 0 0-2.69-2.49 1 1 0 0 1-1-1 1 1 0 0 1 1-1c1.23.03 2.41.49 3.33 1.3.05-.29.08-.59.08-.89-.06-1.24-.62-2.32-2.87-2.53-1.25-2.96-4.4-1.32-4.4-.4-.03.23.21.72.25.75a1 1 0 0 1 1 1c0 .55-.45 1-1 1-.53-.02-1.03-.22-1.43-.56-.48.31-1.03.5-1.6.56-.57.05-1.04-.35-1.07-.9a.97.97 0 0 1 .88-1.1c.16-.02.94-.14.94-.77 0-.66.25-1.29.68-1.79-.92-.25-1.91.08-2.91 1.29C6.75 5 6 5.25 5.45 7.2 4.5 7.67 4 8 3.78 9c1.08-.22 2.19-.13 3.22.25.5.19.78.75.59 1.29-.19.52-.77.78-1.29.59-.73-.32-1.55-.34-2.3-.06-.32.27-.32.83-.32 1.27 0 .74.37 1.43 1 1.83.53.27 1.12.41 1.71.4q-.225-.39-.39-.81a1.038 1.038 0 0 1 1.96-.68c.4 1.14 1.42 1.92 2.62 2.05 1.37-.07 2.59-.88 3.19-2.13.23-1.38 1.34-1.5 2.56-1.5m2 7.47-.62-1.3-.71.16 1 1.25zm-4.65-8.61a1 1 0 0 0-.91-1.03c-.71-.04-1.4.2-1.93.67-.57.58-.87 1.38-.84 2.19a1 1 0 0 0 1 1c.57 0 1-.45 1-1 0-.27.07-.54.23-.76.12-.1.27-.15.43-.15.55.03 1.02-.38 1.02-.92"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bread-slice-outline.svg��������������������0000664�0000000�0000000�00000000432�14753064456�0027756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c5.5 0 10 3.36 10 7.5 0 1.69-.74 3.25-2 4.5v8H4v-8c-1.26-1.25-2-2.81-2-4.5C2 5.36 6.5 2 12 2m6 11.14c1.24-.97 2-2.25 2-3.64C20 6.46 16.42 4 12 4S4 6.46 4 9.5c0 1.39.76 2.67 2 3.64V20h12zM8 18v-4h4v4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bread-slice.svg����������������������������0000664�0000000�0000000�00000000274�14753064456�0026305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c5.5 0 10 3.36 10 7.5 0 1.69-.74 3.25-2 4.5v8H4v-8c-1.26-1.25-2-2.81-2-4.5C2 5.36 6.5 2 12 2M8 18h4v-4H8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bridge.svg���������������������������������0000664�0000000�0000000�00000000531�14753064456�0025363�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 14v-3.09c-.72-.33-1.39-.73-2-1.2V14zm-2 4H3v-2H1v-2h2V7h2v1.43C6.8 10 9.27 11 12 11s5.2-1 7-2.57V7h2v7h2v2h-2v2h-2v-2H5zm12-7.09V14h2V9.71c-.61.47-1.28.87-2 1.2M16 14v-2.68c-.64.23-1.31.4-2 .52V14zm-3 0v-2.04L12 12l-1-.04V14zm-3 0v-2.16c-.69-.12-1.36-.29-2-.52V14z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-account-outline.svg��������������0000664�0000000�0000000�00000001025�14753064456�0031160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6c.58 0 1.05.2 1.42.59.38.41.58.86.58 1.41v11c0 .55-.2 1-.58 1.41-.37.39-.84.59-1.42.59H4c-.58 0-1.05-.2-1.42-.59C2.2 20 2 19.55 2 19V8c0-.55.2-1 .58-1.41C2.95 6.2 3.42 6 4 6h4V4c0-.58.2-1.05.58-1.42C8.95 2.2 9.42 2 10 2h4c.58 0 1.05.2 1.42.58.38.37.58.84.58 1.42v2zM4 8v11h16V8zm10-2V4h-4v2zm-2 3a2.25 2.25 0 0 1 2.25 2.25c0 1.25-1.01 2.25-2.25 2.25a2.25 2.25 0 0 1-2.25-2.25C9.75 10 10.76 9 12 9m4.5 9h-9v-1.12c0-1.25 2-2.25 4.5-2.25s4.5 1 4.5 2.25z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-account.svg����������������������0000664�0000000�0000000�00000000530�14753064456�0027503�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6h-4V4a2 2 0 0 0-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-2 .89-2 2v11a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2M10 4h4v2h-4zm2 5a2.5 2.5 0 0 1 2.5 2.5A2.5 2.5 0 0 1 12 14a2.5 2.5 0 0 1-2.5-2.5A2.5 2.5 0 0 1 12 9m5 10H7v-1.25c0-1.38 2.24-2.5 5-2.5s5 1.12 5 2.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-arrow-left-right-outline.svg�����0000664�0000000�0000000�00000000451�14753064456�0032723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2h4a2 2 0 0 1 2 2v2h4a2 2 0 0 1 2 2v5.53a5.7 5.7 0 0 0-2-1.19V8H4v11h8.08c.12.72.37 1.39.72 2H4a2 2 0 0 1-2-2V8c0-1.1.9-2 2-2h4V4c0-1.1.9-2 2-2m4 4V4h-4v2zm5 12.5V17h-4v-2h4v-1.5l3 2.5zm-2 .5h4v2h-4v1.5L14 20l3-2.5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-arrow-left-right.svg�������������0000664�0000000�0000000�00000000446�14753064456�0031252�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2h4a2 2 0 0 1 2 2v2h4a2 2 0 0 1 2 2v5.53A5.97 5.97 0 0 0 18 12a6.005 6.005 0 0 0-5.2 9H4a2 2 0 0 1-2-2V8c0-1.11.89-2 2-2h4V4c0-1.11.89-2 2-2m4 4V4h-4v2zm5 12.5V17h-4v-2h4v-1.5l3 2.5zm-2 .5h4v2h-4v1.5L14 20l3-2.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-arrow-up-down-outline.svg��������0000664�0000000�0000000�00000000451�14753064456�0032247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2h4a2 2 0 0 1 2 2v2h4a2 2 0 0 1 2 2v5.53a5.7 5.7 0 0 0-2-1.19V8H4v11h8.08c.12.72.37 1.39.72 2H4a2 2 0 0 1-2-2V8c0-1.1.9-2 2-2h4V4c0-1.1.9-2 2-2m4 4V4h-4v2zm3.5 13H19v-4h2v4h1.5L20 22zm-.5-2v4h-2v-4h-1.5l2.5-3 2.5 3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-arrow-up-down.svg����������������0000664�0000000�0000000�00000000446�14753064456�0030576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2h4a2 2 0 0 1 2 2v2h4a2 2 0 0 1 2 2v5.53A5.97 5.97 0 0 0 18 12a6.005 6.005 0 0 0-5.2 9H4a2 2 0 0 1-2-2V8c0-1.11.89-2 2-2h4V4c0-1.11.89-2 2-2m4 4V4h-4v2zm3.5 13H19v-4h2v4h1.5L20 22zm-.5-2v4h-2v-4h-1.5l2.5-3 2.5 3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-check-outline.svg����������������0000664�0000000�0000000�00000000662�14753064456�0030607�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6c.58 0 1.05.2 1.42.59.38.41.58.86.58 1.41v11c0 .55-.2 1-.58 1.41-.37.39-.84.59-1.42.59H4c-.58 0-1.05-.2-1.42-.59C2.2 20 2 19.55 2 19V8c0-.55.2-1 .58-1.41C2.95 6.2 3.42 6 4 6h4V4c0-.58.2-1.05.58-1.42C8.95 2.2 9.42 2 10 2h4c.58 0 1.05.2 1.42.58.38.37.58.84.58 1.42v2zM4 8v11h16V8zm10-2V4h-4v2zm-3.54 11.5 6.59-6.59-1.41-1.41-5.18 5.17-2.09-2.08L6.96 14z"/></svg>������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-check.svg������������������������0000664�0000000�0000000�00000000374�14753064456�0027132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2h4a2 2 0 0 1 2 2v2h4a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4V4a2 2 0 0 1 2-2m4 4V4h-4v2zm-3.5 11.5 6.59-6.59-1.41-1.41-5.18 5.17-2.09-2.08L7 14z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-clock-outline.svg����������������0000664�0000000�0000000�00000001025�14753064456�0030617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11.11V7a2 2 0 0 0-.58-1.41A1.87 1.87 0 0 0 19 5h-4V3a1.9 1.9 0 0 0-.58-1.42A1.9 1.9 0 0 0 13 1H9a1.9 1.9 0 0 0-1.42.58A1.9 1.9 0 0 0 7 3v2H3a1.87 1.87 0 0 0-1.42.59A2 2 0 0 0 1 7v11a2 2 0 0 0 .58 1.41A1.87 1.87 0 0 0 3 20h7.26A7 7 0 1 0 21 11.11M9 3h4v2H9M3 18V7h16v2.68A6.84 6.84 0 0 0 16 9a7 7 0 0 0-7 7 7 7 0 0 0 .29 2M19 20a5 5 0 0 1-6 0 4.94 4.94 0 0 1-2-4 5 5 0 0 1 5-5 4.94 4.94 0 0 1 3 1 5 5 0 0 1 0 8m-4-7h1.5v2.82l2.44 1.41-.75 1.3L15 16.69z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-clock.svg������������������������0000664�0000000�0000000�00000000433�14753064456�0027144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11.11V7a2 2 0 0 0-2-2h-4V3a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2v2H3a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h7.26A7 7 0 1 0 21 11.11M9 3h4v2H9m10 15a5 5 0 0 1-6 0 5 5 0 1 1 6 0m-4-7h1.5v2.82l2.44 1.41-.75 1.3L15 16.69z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-download-outline.svg�������������0000664�0000000�0000000�00000000352�14753064456�0031335�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 18-5-5h3V9h4v4h3zM10 2h4a2 2 0 0 1 2 2v2h4a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8c0-1.11.89-2 2-2h4V4c0-1.11.89-2 2-2m4 4V4h-4v2zM4 8v11h16V8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-download.svg���������������������0000664�0000000�0000000�00000000340�14753064456�0027655�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2h4a2 2 0 0 1 2 2v2h4a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8c0-1.11.89-2 2-2h4V4c0-1.11.89-2 2-2m4 4V4h-4v2zm-2 13 5-5h-3v-4h-4v4H7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-edit-outline.svg�����������������0000664�0000000�0000000�00000000520�14753064456�0030450�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.04 12.13c.14 0 .27.06.38.17l1.28 1.28c.22.21.22.56 0 .77l-1 1-2.05-2.05 1-1c.11-.11.25-.17.39-.17m-1.97 1.75 2.05 2.05L15.06 22H13v-2.06zM10 2h4a2 2 0 0 1 2 2v2h4a2 2 0 0 1 2 2l-2 2V8H4v11h7v2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4V4a2 2 0 0 1 2-2m4 4V4h-4v2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-edit.svg�������������������������0000664�0000000�0000000�00000000517�14753064456�0027001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2a2 2 0 0 1 2 2v2h4a2 2 0 0 1 2 2L10.85 19v2H4a2 2 0 0 1-2-2V8c0-1.11.89-2 2-2h4V4c0-1.11.89-2 2-2zm0 4V4h-4v2zm7.04 6.13c-.14 0-.28.06-.39.17l-1 1 2.05 2.05 1-1c.22-.21.22-.56 0-.77l-1.28-1.28a.53.53 0 0 0-.38-.17m-1.97 1.75L13 19.94V22h2.06l6.06-6.07z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-eye-outline.svg������������������0000664�0000000�0000000�00000000775�14753064456�0030321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 18c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1m0-3c-2.7 0-5.1 1.7-6 4 .9 2.3 3.3 4 6 4s5.1-1.7 6-4c-.9-2.3-3.3-4-6-4m0 6.5c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5m-7.9-1.8-.3-.7H4V8h16v5.6c.7.3 1.4.6 2 1.1V8c0-.5-.2-1-.6-1.4S20.6 6 20 6h-4V4c0-.6-.2-1-.6-1.4S14.6 2 14 2h-4c-.6 0-1 .2-1.4.6S8 3.4 8 4v2H4c-.6 0-1 .2-1.4.6S2 7.5 2 8v11c0 .5.2 1 .6 1.4s.8.6 1.4.6h5.8c-.3-.4-.5-.8-.7-1.3M10 4h4v2h-4z"/></svg>���mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-eye.svg��������������������������0000664�0000000�0000000�00000000722�14753064456�0026634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 18c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1m-7.9 1.7-.3-.7.3-.7c1.3-3.2 4.4-5.3 7.9-5.3 1.9 0 3.6.6 5 1.6V8c0-1.1-.9-2-2-2h-4V4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h5.8c-.3-.4-.5-.8-.7-1.3M10 4h4v2h-4zm7 11c-2.7 0-5.1 1.7-6 4 .9 2.3 3.3 4 6 4s5.1-1.7 6-4c-.9-2.3-3.3-4-6-4m0 6.5c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5"/></svg>����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-minus-outline.svg����������������0000664�0000000�0000000�00000000372�14753064456�0030663�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2h4a2 2 0 0 1 2 2v2h4a2 2 0 0 1 2 2v5.53a5.7 5.7 0 0 0-2-1.19V8H4v11h8.08c.12.72.37 1.39.72 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4V4a2 2 0 0 1 2-2m4 4V4h-4v2zm0 11h8v2h-8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-minus.svg������������������������0000664�0000000�0000000�00000000402�14753064456�0027200�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 17v2h-8v-2zM10 2h4a2 2 0 0 1 2 2v2h4a2 2 0 0 1 2 2v5.53A5.97 5.97 0 0 0 18 12a6 6 0 0 0-6 6c0 1.09.29 2.12.8 3H4a2 2 0 0 1-2-2V8c0-1.11.89-2 2-2h4V4c0-1.11.89-2 2-2m4 4V4h-4v2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-off-outline.svg������������������0000664�0000000�0000000�00000000626�14753064456�0030304�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 8v8.8l2 2V8c0-.55-.2-1-.58-1.41C21.05 6.2 20.58 6 20 6h-4V4c0-.58-.2-1.05-.58-1.42C15.05 2.2 14.58 2 14 2h-4c-.58 0-1.05.2-1.42.58C8.2 2.95 8 3.42 8 4v.8L11.2 8zM10 4h4v2h-4zM2.39 1.73 1.11 3l3 3H4c-.58 0-1.05.2-1.42.59C2.2 7 2 7.45 2 8v11c0 .55.2 1 .58 1.41.37.39.84.59 1.42.59h15.11l1.73 1.73 1.27-1.27zM4 19V8h2.11l11 11z"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-off.svg��������������������������0000664�0000000�0000000�00000000363�14753064456�0026625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.11 21.46-1.27 1.27L19.11 21H4a2 2 0 0 1-2-2V8c0-1.11.89-2 2-2h.11l-3-3 1.28-1.27zM22 18.8 8 4.8V4c0-1.11.89-2 2-2h4a2 2 0 0 1 2 2v2h4a2 2 0 0 1 2 2zM14 4h-4v2h4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-outline.svg����������������������0000664�0000000�0000000�00000000566�14753064456�0027537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6c.58 0 1.05.2 1.42.59.38.41.58.86.58 1.41v11c0 .55-.2 1-.58 1.41-.37.39-.84.59-1.42.59H4c-.58 0-1.05-.2-1.42-.59C2.2 20 2 19.55 2 19V8c0-.55.2-1 .58-1.41C2.95 6.2 3.42 6 4 6h4V4c0-.58.2-1.05.58-1.42C8.95 2.2 9.42 2 10 2h4c.58 0 1.05.2 1.42.58.38.37.58.84.58 1.42v2zM4 8v11h16V8zm10-2V4h-4v2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-plus-outline.svg�����������������0000664�0000000�0000000�00000000416�14753064456�0030512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2h4a2 2 0 0 1 2 2v2h4a2 2 0 0 1 2 2v5.53a5.7 5.7 0 0 0-2-1.19V8H4v11h8.08c.12.72.37 1.39.72 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4V4a2 2 0 0 1 2-2m4 4V4h-4v2zm0 11h3v-3h2v3h3v2h-3v3h-2v-3h-3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-plus.svg�������������������������0000664�0000000�0000000�00000000425�14753064456�0027035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 14h2v3h3v2h-3v3h-2v-3h-3v-2h3zM10 2h4a2 2 0 0 1 2 2v2h4a2 2 0 0 1 2 2v5.53A5.97 5.97 0 0 0 18 12a6 6 0 0 0-6 6c0 1.09.29 2.12.8 3H4a2 2 0 0 1-2-2V8c0-1.11.89-2 2-2h4V4c0-1.11.89-2 2-2m4 4V4h-4v2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-remove-outline.svg���������������0000664�0000000�0000000�00000000542�14753064456�0031024�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2h4a2 2 0 0 1 2 2v2h4a2 2 0 0 1 2 2v5.53a5.7 5.7 0 0 0-2-1.19V8H4v11h8.08c.12.72.37 1.39.72 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4V4a2 2 0 0 1 2-2m4 4V4h-4v2zm.46 9.88 1.42-1.42L18 16.59l2.12-2.13 1.42 1.42L19.41 18l2.13 2.12-1.42 1.42L18 19.41l-2.12 2.13-1.42-1.42L16.59 18z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-remove.svg�����������������������0000664�0000000�0000000�00000000553�14753064456�0027351�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.46 15.88 1.42-1.42L18 16.59l2.12-2.13 1.42 1.42L19.41 18l2.13 2.12-1.42 1.42L18 19.41l-2.12 2.13-1.42-1.42L16.59 18zM10 2h4a2 2 0 0 1 2 2v2h4a2 2 0 0 1 2 2v5.53A5.97 5.97 0 0 0 18 12a6 6 0 0 0-6 6c0 1.09.29 2.12.8 3H4a2 2 0 0 1-2-2V8c0-1.11.89-2 2-2h4V4c0-1.11.89-2 2-2m4 4V4h-4v2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-search-outline.svg���������������0000664�0000000�0000000�00000000732�14753064456�0030775�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2h4a2 2 0 0 1 2 2v2h4a2 2 0 0 1 2 2v5.03c-.5-.8-1.2-1.49-2-2.03V8H4v11h6.5c.31.75.76 1.42 1.31 2H4a2 2 0 0 1-2-2V8c0-1.11.89-2 2-2h4V4c0-1.11.89-2 2-2m4 4V4h-4v2zm6.31 12.9 3.08 3.1L22 23.39l-3.12-3.07c-.69.43-1.51.68-2.38.68-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 .88-.25 1.71-.69 2.4m-3.81.1a2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5 2.5 2.5 0 0 0-2.5 2.5 2.5 2.5 0 0 0 2.5 2.5"/></svg>��������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-search.svg�����������������������0000664�0000000�0000000�00000000750�14753064456�0027320�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 12c2.5 0 4.5 2 4.5 4.5 0 .88-.25 1.71-.69 2.4l3.08 3.1L22 23.39l-3.12-3.07c-.69.43-1.51.68-2.38.68-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5m0 2a2.5 2.5 0 0 0-2.5 2.5 2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5M10 2h4a2 2 0 0 1 2 2v2h4a2 2 0 0 1 2 2v5.03A6.49 6.49 0 0 0 16.5 10a6.5 6.5 0 0 0-6.5 6.5c0 1.75.69 3.33 1.81 4.5H4a2 2 0 0 1-2-2V8c0-1.11.89-2 2-2h4V4c0-1.11.89-2 2-2m4 4V4h-4v2z"/></svg>������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-upload-outline.svg���������������0000664�0000000�0000000�00000000354�14753064456�0031014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 9 5 5h-3v4h-4v-4H7zm-2-7h4a2 2 0 0 1 2 2v2h4a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8c0-1.11.89-2 2-2h4V4c0-1.11.89-2 2-2m4 4V4h-4v2zM4 8v11h16V8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-upload.svg�����������������������0000664�0000000�0000000�00000000335�14753064456�0027336�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2h4a2 2 0 0 1 2 2v2h4a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8c0-1.11.89-2 2-2h4V4c0-1.11.89-2 2-2m4 4V4h-4v2zm-2 3-5 5h3v4h4v-4h3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-variant-off-outline.svg����������0000664�0000000�0000000�00000000567�14753064456�0031752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 6.8 8.1 4.9 10 3h4l2 2v2h4c1.1 0 2 .9 2 2v5c0 .73-.41 1.37-1 1.72v2.08L17.2 14H20V9h-7.8l-2-2H14V5h-4zm12.11 14.66-1.27 1.27L19.1 21H5c-1.11 0-2-.89-2-2v-3.27c-.6-.35-1-.98-1-1.73V9c0-1.1.9-2 2-2h1.11l-4-4 1.28-1.27zM11 15h2v-.11L11.11 13H11zm-2-1v-3h.11l-2-2H4v5zm8.11 5L15 16.89V17H9v-1H5v3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-variant-off.svg������������������0000664�0000000�0000000�00000000462�14753064456�0030267�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 6.8 8.1 4.9 10 3h4l2 2v2h4c1.1 0 2 .9 2 2v3c0 1.1-.9 2-2 2h-2.8l-7-7H14V5h-4zM2.39 1.73 1.11 3l4 4H4c-1.1 0-2 .9-2 2v3c0 1.11.89 2 2 2h6v-2h.11L14 15.89V16h-4v-1H3v4c0 1.11.89 2 2 2h14.1l1.74 1.73 1.27-1.27zM21 17.8V15h-2.8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-variant-outline.svg��������������0000664�0000000�0000000�00000000446�14753064456�0031176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 7h-4V5l-2-2h-4L8 5v2H4c-1.1 0-2 .9-2 2v5c0 .75.4 1.38 1 1.73V19c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2v-3.28c.59-.35 1-.99 1-1.72V9c0-1.1-.9-2-2-2M10 5h4v2h-4zM4 9h16v5h-5v-3H9v3H4zm9 6h-2v-2h2zm6 4H5v-3h4v1h6v-1h4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase-variant.svg����������������������0000664�0000000�0000000�00000000374�14753064456�0027521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 16v-1H3v4c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2v-4h-7v1zm10-9h-4V5l-2-2h-4L8 5v2H4c-1.1 0-2 .9-2 2v3c0 1.11.89 2 2 2h6v-2h4v2h6c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2m-6 0h-4V5h4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/briefcase.svg������������������������������0000664�0000000�0000000�00000000310�14753064456�0026045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2h4a2 2 0 0 1 2 2v2h4a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8c0-1.11.89-2 2-2h4V4c0-1.11.89-2 2-2m4 4V4h-4v2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/brightness-1.svg���������������������������0000664�0000000�0000000�00000000231�14753064456�0026432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/brightness-2.svg���������������������������0000664�0000000�0000000�00000000307�14753064456�0026437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2c-1.82 0-3.53.5-5 1.35C8 5.08 10 8.3 10 12s-2 6.92-5 8.65C6.47 21.5 8.18 22 10 22a10 10 0 0 0 10-10A10 10 0 0 0 10 2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/brightness-3.svg���������������������������0000664�0000000�0000000�00000000310�14753064456�0026432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 2c-1.05 0-2.05.16-3 .46 4.06 1.27 7 5.04 7 9.54s-2.94 8.27-7 9.54c.95.3 1.95.46 3 .46a10 10 0 0 0 10-10A10 10 0 0 0 9 2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/brightness-4.svg���������������������������0000664�0000000�0000000�00000000453�14753064456�0026443�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18c-.89 0-1.74-.2-2.5-.55C11.56 16.5 13 14.42 13 12s-1.44-4.5-3.5-5.45C10.26 6.2 11.11 6 12 6a6 6 0 0 1 6 6 6 6 0 0 1-6 6m8-9.31V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/brightness-5.svg���������������������������0000664�0000000�0000000�00000000356�14753064456�0026446�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18a6 6 0 0 1-6-6 6 6 0 0 1 6-6 6 6 0 0 1 6 6 6 6 0 0 1-6 6m8-2.69L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/brightness-6.svg���������������������������0000664�0000000�0000000�00000000324�14753064456�0026442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18V6a6 6 0 0 1 6 6 6 6 0 0 1-6 6m8-2.69L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/brightness-7.svg���������������������������0000664�0000000�0000000�00000000450�14753064456�0026443�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4m0 10a6 6 0 0 1-6-6 6 6 0 0 1 6-6 6 6 0 0 1 6 6 6 6 0 0 1-6 6m8-9.31V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/brightness-auto.svg������������������������0000664�0000000�0000000�00000000356�14753064456�0027252�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.3 16-.7-2h-3.2l-.7 2H7.8L11 7h2l3.2 9zM20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12zm-9.15 3.96h2.3L12 9z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/brightness-percent.svg���������������������0000664�0000000�0000000�00000000660�14753064456�0027740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.04 8.71V4h-4.7L12 .69 8.71 4H4v4.71L.69 12 4 15.34v4.7h4.71L12 23.35l3.34-3.31h4.7v-4.7L23.35 12zM8.83 7.05c.98 0 1.77.79 1.77 1.78a1.77 1.77 0 0 1-1.77 1.77c-.99 0-1.78-.79-1.78-1.77 0-.99.79-1.78 1.78-1.78M15.22 17c-.98 0-1.77-.8-1.77-1.78a1.77 1.77 0 0 1 1.77-1.77c.98 0 1.78.79 1.78 1.77A1.78 1.78 0 0 1 15.22 17m-6.72.03L7 15.53 15.53 7l1.5 1.5z"/></svg>��������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/broadcast-off.svg��������������������������0000664�0000000�0000000�00000001054�14753064456�0026642�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.6 14.2c.3-.7.4-1.4.4-2.2 0-3.3-2.7-6-6-6-.8 0-1.6.2-2.2.4L11.4 8h.6c2.2 0 4 1.8 4 4 0 .2 0 .4-.1.6zM12 4c4.4 0 8 3.6 8 8 0 1.4-.4 2.6-1 3.7l1.5 1.5c.9-1.5 1.5-3.3 1.5-5.2 0-5.5-4.5-10-10-10-1.9 0-3.7.5-5.2 1.5L8.3 5c1.1-.7 2.3-1 3.7-1M3.3 2.5 2 3.8l2.1 2.1C2.8 7.6 2 9.7 2 12c0 3.7 2 6.9 5 8.6l1-1.7c-2.4-1.4-4-4-4-6.9 0-1.8.6-3.4 1.5-4.7L7 8.8c-.6.9-1 2-1 3.2 0 2.2 1.2 4.1 3 5.2l1-1.7c-1.2-.7-2-2-2-3.4 0-.6.2-1.2.4-1.8l1.6 1.6v.2c0 1.1.9 2 2 2h.2l7.5 7.5 1.3-1.3L4.3 3.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/broadcast.svg������������������������������0000664�0000000�0000000�00000000645�14753064456�0026077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m6 2c0-3.3-2.7-6-6-6s-6 2.7-6 6c0 2.2 1.2 4.1 3 5.2l1-1.7c-1.2-.7-2-2-2-3.4 0-2.2 1.8-4 4-4s4 1.8 4 4c0 1.5-.8 2.8-2 3.4l1 1.7c1.8-1 3-3 3-5.2M12 2C6.5 2 2 6.5 2 12c0 3.7 2 6.9 5 8.6l1-1.7c-2.4-1.4-4-4-4-6.9 0-4.4 3.6-8 8-8s8 3.6 8 8c0 3-1.6 5.5-4 6.9l1 1.7c3-1.7 5-4.9 5-8.6 0-5.5-4.5-10-10-10"/></svg>�������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/broom.svg����������������������������������0000664�0000000�0000000�00000000422�14753064456�0025244�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.36 2.72 1.42 1.42-5.72 5.71c1.07 1.54 1.22 3.39.32 4.59L9.06 8.12c1.2-.9 3.05-.75 4.59.32zM5.93 17.57c-2.01-2.01-3.24-4.41-3.58-6.65l4.88-2.09 7.44 7.44-2.09 4.88c-2.24-.34-4.64-1.57-6.65-3.58"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/brush-off.svg������������������������������0000664�0000000�0000000�00000000444�14753064456�0026025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.8 22.7-8.4-8.4-.6.7L9 12.2l.7-.7L1.1 3l1.3-1.3 19.7 19.7zM7 14c-1.7 0-3 1.3-3 3 0 1.3-1.2 2-2 2 .9 1.2 2.5 2 4 2 2.2 0 4-1.8 4-4 0-1.7-1.3-3-3-3m13.7-8c.4-.4.4-1 0-1.4l-1.3-1.3c-.4-.4-1-.4-1.4 0L12.2 9l2.8 2.8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/brush-outline.svg��������������������������0000664�0000000�0000000�00000000571�14753064456�0026733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 16c.55 0 1 .45 1 1 0 1.1-.9 2-2 2-.17 0-.33 0-.5-.05.31-.55.5-1.21.5-1.95 0-.55.45-1 1-1M18.67 3c-.26 0-.51.1-.71.29L9 12.25 11.75 15l8.96-8.96c.39-.39.39-1.04 0-1.41l-1.34-1.34c-.2-.2-.45-.29-.7-.29M7 14c-1.66 0-3 1.34-3 3 0 1.31-1.16 2-2 2 .92 1.22 2.5 2 4 2 2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/brush-variant.svg��������������������������0000664�0000000�0000000�00000000346�14753064456�0026720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 3C5.79 3 4 4.79 4 7v7c0 1.1.9 2 2 2h3v4c0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2v-4h3c1.1 0 2-.9 2-2V3zm0 2h4v2h2V5h1v4h2V5h1v5H6V7c0-1.1.9-2 2-2m-2 9v-2h12v2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/brush.svg����������������������������������0000664�0000000�0000000�00000000402�14753064456�0025247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.71 4.63-1.34-1.34c-.37-.39-1.02-.39-1.41 0L9 12.25 11.75 15l8.96-8.96c.39-.39.39-1.04 0-1.41M7 14a3 3 0 0 0-3 3c0 1.31-1.16 2-2 2 .92 1.22 2.5 2 4 2a4 4 0 0 0 4-4 3 3 0 0 0-3-3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bucket-outline.svg�������������������������0000664�0000000�0000000�00000000207�14753064456�0027061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4h18v3h-1l-2.5 14h-11L4 7H3zm14.97 3H6.03l2.12 12h7.7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bucket.svg���������������������������������0000664�0000000�0000000�00000000155�14753064456�0025406�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4h18v3h-1l-2.5 14h-11L4 7H3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/buffet.svg���������������������������������0000664�0000000�0000000�00000000471�14753064456�0025405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 14c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m6 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1M3 22l1-3H3c-.55 0-1-.45-1-1v-6c0-.55.45-1 1-1h18c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1h-1l1 3h-2l-1-3H6l-1 3zm10-9v4h7v-4zm-9 0v4h7v-4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bug-check-outline.svg����������������������0000664�0000000�0000000�00000001043�14753064456�0027433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 7h-2.81c-.45-.8-1.07-1.5-1.82-2L16 3.41 14.59 2l-2.17 2.17a6 6 0 0 0-2.83 0L7.41 2 6 3.41 7.62 5c-.75.5-1.36 1.21-1.81 2H3v2h2.09c-.06.33-.09.66-.09 1v1H3v2h2v1c0 .34.03.67.09 1H3v2h2.81A6 6 0 0 0 13 19.65V19c0-.57.09-1.14.25-1.69-.66.45-1.45.69-2.25.69-2.21 0-4-1.79-4-4v-4c0-2.21 1.79-4 4-4s4 1.79 4 4v4c0 .19 0 .39-.05.58.59-.54 1.29-.96 2.05-1.23V13h2v-2h-2v-1c0-.34-.03-.67-.09-1H19zm2.34 9-3.59 3.59L16.16 18 15 19.16l2.75 3 4.75-4.75zM13 9v2H9V9zm0 4v2H9v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bug-check.svg������������������������������0000664�0000000�0000000�00000000660�14753064456�0025762�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 7h-2.81c-.45-.8-1.07-1.5-1.82-2L16 3.41 14.59 2l-2.17 2.17a6 6 0 0 0-2.83 0L7.41 2 6 3.41 7.62 5c-.75.5-1.36 1.21-1.81 2H3v2h2.09c-.06.33-.09.66-.09 1v1H3v2h2v1c0 .34.03.67.09 1H3v2h2.81A6 6 0 0 0 13 19.65V19c0-2.54 1.61-4.8 4-5.65V13h2v-2h-2v-1c0-.34-.03-.67-.09-1H19zm-6 8H9v-2h4zm0-4H9V9h4zm4.75 11.16-2.75-3L16.16 18l1.59 1.59L21.34 16l1.16 1.41z"/></svg>��������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bug-outline.svg����������������������������0000664�0000000�0000000�00000000743�14753064456�0026366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 8h-2.81c-.45-.8-1.07-1.5-1.82-2L17 4.41 15.59 3l-2.17 2.17a6 6 0 0 0-2.83 0L8.41 3 7 4.41 8.62 6c-.75.5-1.36 1.21-1.81 2H4v2h2.09c-.06.33-.09.66-.09 1v1H4v2h2v1c0 .34.03.67.09 1H4v2h2.81A5.99 5.99 0 0 0 15 20.18c.91-.52 1.67-1.28 2.19-2.18H20v-2h-2.09c.06-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.03-.67-.09-1H20zm-4 7a4 4 0 0 1-4 4 4 4 0 0 1-4-4v-4a4 4 0 0 1 4-4 4 4 0 0 1 4 4zm-2-5v2h-4v-2zm-4 4h4v2h-4z"/></svg>�����������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bug-pause-outline.svg����������������������0000664�0000000�0000000�00000001006�14753064456�0027472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 7h-2.81c-.45-.8-1.07-1.5-1.82-2L16 3.41 14.59 2l-2.17 2.17a6 6 0 0 0-2.83 0L7.41 2 6 3.41 7.62 5c-.75.5-1.36 1.21-1.81 2H3v2h2.09c-.06.33-.09.66-.09 1v1H3v2h2v1c0 .34.03.67.09 1H3v2h2.81A6 6 0 0 0 13 19.65V19c0-.57.09-1.14.25-1.69-.66.45-1.45.69-2.25.69-2.21 0-4-1.79-4-4v-4c0-2.21 1.79-4 4-4s4 1.79 4 4v4c0 .19 0 .39-.05.58.59-.54 1.29-.96 2.05-1.23V13h2v-2h-2v-1c0-.34-.03-.67-.09-1H19zm-6 2v2H9V9zm0 4v2H9v-2zm7 3h2v6h-2m-4-6h2v6h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bug-pause.svg������������������������������0000664�0000000�0000000�00000000617�14753064456�0026024�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 7h-2.81c-.45-.8-1.07-1.5-1.82-2L16 3.41 14.59 2l-2.17 2.17a6 6 0 0 0-2.83 0L7.41 2 6 3.41 7.62 5c-.75.5-1.36 1.21-1.81 2H3v2h2.09c-.06.33-.09.66-.09 1v1H3v2h2v1c0 .34.03.67.09 1H3v2h2.81A6 6 0 0 0 13 19.65V19c0-2.54 1.61-4.8 4-5.65V13h2v-2h-2v-1c0-.34-.03-.67-.09-1H19zm-6 8H9v-2h4zm0-4H9V9h4zm7 5h2v6h-2m-4-6h2v6h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bug-play-outline.svg�����������������������0000664�0000000�0000000�00000000771�14753064456�0027332�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 7h-2.81c-.45-.8-1.07-1.5-1.82-2L16 3.41 14.59 2l-2.17 2.17a6 6 0 0 0-2.83 0L7.41 2 6 3.41 7.62 5c-.75.5-1.36 1.21-1.81 2H3v2h2.09c-.06.33-.09.66-.09 1v1H3v2h2v1c0 .34.03.67.09 1H3v2h2.81A6 6 0 0 0 13 19.65V19c0-.57.09-1.14.25-1.69-.66.45-1.45.69-2.25.69-2.21 0-4-1.79-4-4v-4c0-2.21 1.79-4 4-4s4 1.79 4 4v4c0 .19 0 .39-.05.58.59-.54 1.29-.96 2.05-1.23V13h2v-2h-2v-1c0-.34-.03-.67-.09-1H19zm-6 2v2H9V9zm0 4v2H9v-2zm4 3v6l5-3z"/></svg>�������mkdocs-material-9.6.4/material/templates/.icons/material/bug-play.svg�������������������������������0000664�0000000�0000000�00000000602�14753064456�0025646�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 7h-2.81c-.45-.8-1.07-1.5-1.82-2L16 3.41 14.59 2l-2.17 2.17a6 6 0 0 0-2.83 0L7.41 2 6 3.41 7.62 5c-.75.5-1.36 1.21-1.81 2H3v2h2.09c-.06.33-.09.66-.09 1v1H3v2h2v1c0 .34.03.67.09 1H3v2h2.81A6 6 0 0 0 13 19.65V19c0-2.54 1.61-4.8 4-5.65V13h2v-2h-2v-1c0-.34-.03-.67-.09-1H19zm-6 8H9v-2h4zm0-4H9V9h4zm4 5v6l5-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bug-stop-outline.svg�����������������������0000664�0000000�0000000�00000000772�14753064456�0027353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 7h-2.81c-.45-.8-1.07-1.5-1.82-2L16 3.41 14.59 2l-2.17 2.17a6 6 0 0 0-2.83 0L7.41 2 6 3.41 7.62 5c-.75.5-1.36 1.21-1.81 2H3v2h2.09c-.06.33-.09.66-.09 1v1H3v2h2v1c0 .34.03.67.09 1H3v2h2.81A6 6 0 0 0 13 19.65V19c0-.57.09-1.14.25-1.69-.66.45-1.45.69-2.25.69-2.21 0-4-1.79-4-4v-4c0-2.21 1.79-4 4-4s4 1.79 4 4v4c0 .19 0 .39-.05.58.59-.54 1.29-.96 2.05-1.23V13h2v-2h-2v-1c0-.34-.03-.67-.09-1H19zm-6 2v2H9V9zm0 4v2H9v-2zm3 3h6v6h-6z"/></svg>������mkdocs-material-9.6.4/material/templates/.icons/material/bug-stop.svg�������������������������������0000664�0000000�0000000�00000000603�14753064456�0025667�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 7h-2.81c-.45-.8-1.07-1.5-1.82-2L16 3.41 14.59 2l-2.17 2.17a6 6 0 0 0-2.83 0L7.41 2 6 3.41 7.62 5c-.75.5-1.36 1.21-1.81 2H3v2h2.09c-.06.33-.09.66-.09 1v1H3v2h2v1c0 .34.03.67.09 1H3v2h2.81A6 6 0 0 0 13 19.65V19c0-2.54 1.61-4.8 4-5.65V13h2v-2h-2v-1c0-.34-.03-.67-.09-1H19zm-6 8H9v-2h4zm0-4H9V9h4zm3 5h6v6h-6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bug.svg������������������������������������0000664�0000000�0000000�00000000626�14753064456�0024711�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 12h-4v-2h4m0 6h-4v-2h4m6-6h-2.81a6 6 0 0 0-1.82-1.96L17 4.41 15.59 3l-2.17 2.17a6 6 0 0 0-2.83 0L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20z"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bugle.svg����������������������������������0000664�0000000�0000000�00000000460�14753064456�0025226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 6c0 5-9 5-9 5H5c-1 0-2-1-2-1H2v4h1s1-1 2-1h1.3c-.8.5-1.3 1.2-1.3 2 0 1.8 2.3 3 5.5 3s5.5-1.2 5.5-3c0-.6-.3-1.2-.8-1.7 2.6.5 5.8 1.7 5.8 4.7h1V6zM10.5 16.7c-2.3 0-4.1-.8-4.1-1.7s1.8-1.7 4.1-1.7 4.1.8 4.1 1.7-1.8 1.7-4.1 1.7"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bulkhead-light.svg�������������������������0000664�0000000�0000000�00000001041�14753064456�0027010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2.09V2c0-.55-.45-1-1-1s-1 .45-1 1v.09a5.96 5.96 0 0 0-4.97 5.88V16c0 3 2.16 5.44 4.97 5.91V22c0 .55.45 1 1 1s1-.45 1-1v-.09A5.97 5.97 0 0 0 17.97 16V7.97C18 5 15.81 2.56 13 2.09M16 8h-1V5.4c.6.69 1 1.6 1 2.6m-2 11.44c-.59.35-1.27.56-2 .56s-1.41-.21-2-.56V16h4zM10 15V9h4v6zm-1 0h-.97V9H9zm1-10.44c.59-.35 1.27-.56 2-.56s1.41.21 2 .56V8h-4zM15 9h1v6h-1zM9 5.4V8h-.97v-.03c0-.97.37-1.88.97-2.57M8.03 16H9v2.6c-.6-.69-.97-1.6-.97-2.57zM15 18.6V16h1c0 1-.4 1.91-1 2.6"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bulldozer.svg������������������������������0000664�0000000�0000000�00000000536�14753064456�0026136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4a1 1 0 0 0-1 1v5c-.46 0-.86.31-.97.76v3.21h.26C2.65 13.37 3.3 13 4 13h9c.7 0 1.35.37 1.71.97h1.32L16 11a1 1 0 0 0-1-1h-2V8a1 1 0 0 0-1-1 1 1 0 0 0-1 1v2H9V5a1 1 0 0 0-1-1zm1 2h2v5H5zm12 5v8h5v-1l-3-1-1-6zM4 15a2 2 0 0 0-2 2 2 2 0 0 0 2 2h9a2 2 0 0 0 2-2 2 2 0 0 0-2-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bullet.svg���������������������������������0000664�0000000�0000000�00000000230�14753064456�0025412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 22h-4v-1h4zm-1-12V7h-2v3l-1 1.5V20h4v-8.5zm-1-8s-1 1-1 3v1h2V5s0-2-1-3"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bulletin-board.svg�������������������������0000664�0000000�0000000�00000000340�14753064456�0027030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.04 2.5 9.53 5h5zM4 7v13h16V7zm8-7 5 5h3a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h3zM7 18v-4h5v4zm7-1v-7h4v7zm-8-5V9h5v3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bullhorn-outline.svg�����������������������0000664�0000000�0000000�00000000361�14753064456�0027432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h1v4a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-4h3l5 4V4zm3 7.6L13 14H4v-4h9l2-1.6zm6.5-3.6c0 1.71-.96 3.26-2.5 4V8c1.53.75 2.5 2.3 2.5 4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bullhorn-variant-outline.svg���������������0000664�0000000�0000000�00000000350�14753064456�0031072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2v2L4 8V6H2v12h2v-2l2 .5v2C6 20.4 7.6 22 9.5 22s3.5-1.6 3.5-3.5v-.2l7 1.7v2h2V2zm-9 16.5c0 .8-.7 1.5-1.5 1.5S8 19.3 8 18.5V17l3 .8zm9-.5L4 14v-4l16-4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bullhorn-variant.svg�����������������������0000664�0000000�0000000�00000000325�14753064456�0027417�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2v2L4 8V6H2v12h2v-2l2 .5v2C6 20.4 7.6 22 9.5 22s3.5-1.6 3.5-3.5v-.2l7 1.7v2h2V2zm-9 16.5c0 .8-.7 1.5-1.5 1.5S8 19.3 8 18.5V17l3 .8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bullhorn.svg�������������������������������0000664�0000000�0000000�00000000325�14753064456�0025755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h1v4a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-4h3l5 4V4zm9.5 4c0 1.71-.96 3.26-2.5 4V8c1.53.75 2.5 2.3 2.5 4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bullseye-arrow.svg�������������������������0000664�0000000�0000000�00000000772�14753064456�0027112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10c0-1.16-.21-2.31-.61-3.39l-1.6 1.6c.14.59.21 1.19.21 1.79a8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8c.6 0 1.2.07 1.79.21L15.4 2.6C14.31 2.21 13.16 2 12 2m7 0-4 4v1.5l-2.55 2.55C12.3 10 12.15 10 12 10a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2c0-.15 0-.3-.05-.45L16.5 9H18l4-4h-3zm-7 4a6 6 0 0 0-6 6 6 6 0 0 0 6 6 6 6 0 0 0 6-6h-2a4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4z"/></svg>������mkdocs-material-9.6.4/material/templates/.icons/material/bullseye.svg�������������������������������0000664�0000000�0000000�00000000611�14753064456�0025752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 2a8 8 0 0 1 8 8 8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8m0 2a6 6 0 0 0-6 6 6 6 0 0 0 6 6 6 6 0 0 0 6-6 6 6 0 0 0-6-6m0 2a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bulma.svg����������������������������������0000664�0000000�0000000�00000000202�14753064456�0025222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.38 2-5 5-1.25 8.75L11.38 22l7.5-5-5-5 3.75-3.75z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bunk-bed-outline.svg�����������������������0000664�0000000�0000000�00000000701�14753064456�0027272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 2h2v7h7V3h9c2.2 0 4 1.8 4 4v16h-2v-2H3v2H1zm11 3v4h9V7c0-1.1-.9-2-2-2zm-9 6v8h7v-6h9c.7 0 1.4.2 2 .6V11zm3.5 2C7.9 13 9 14.1 9 15.5S7.9 18 6.5 18 4 16.9 4 15.5 5.1 13 6.5 13m0 1.6c-.5 0-.9.4-.9.9s.4.9.9.9.9-.4.9-.9-.4-.9-.9-.9m5.5.4v4h9v-2c0-1.1-.9-2-2-2zM6.5 3C7.9 3 9 4.1 9 5.5S7.9 8 6.5 8 4 6.9 4 5.5 5.1 3 6.5 3m0 1.6c-.5 0-.9.4-.9.9s.4.9.9.9.9-.4.9-.9-.4-.9-.9-.9"/></svg>���������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bunk-bed.svg�������������������������������0000664�0000000�0000000�00000000532�14753064456�0025617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 2v21h2v-2h18v2h2V7c0-2.21-1.79-4-4-4h-9v5H3V2m3.5 0A2.5 2.5 0 0 0 4 4.5 2.5 2.5 0 0 0 6.5 7 2.5 2.5 0 0 0 9 4.5 2.5 2.5 0 0 0 6.5 2M3 11h18v2.56c-.59-.35-1.27-.56-2-.56h-9v5H3m3.5-6A2.5 2.5 0 0 0 4 14.5 2.5 2.5 0 0 0 6.5 17 2.5 2.5 0 0 0 9 14.5 2.5 2.5 0 0 0 6.5 12"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bus-alert.svg������������������������������0000664�0000000�0000000�00000001331�14753064456�0026024�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 1a7 7 0 0 1 7 7c0 3.53-2.61 6.45-6 6.93V18c0 .84-.35 1.58-1.04 2.2V22c0 .27-.09.5-.28.71-.18.2-.42.29-.68.29h-1a.98.98 0 0 1-.73-.29.96.96 0 0 1-.31-.71v-1H5.04v1c0 .27-.1.5-.31.71-.2.2-.44.29-.73.29H3c-.26 0-.5-.09-.68-.29-.19-.21-.28-.44-.28-.71v-1.8C1.35 19.58 1 18.84 1 18V8c0-1.58.7-2.65 2.07-3.2C4.44 4.26 6.42 4 9 4l1.23.03A7.01 7.01 0 0 1 16 1m0 2a5 5 0 0 0-5 5 5 5 0 0 0 5 5 5 5 0 0 0 5-5 5 5 0 0 0-5-5m-1 7h2v2h-2zm0-6h2v5h-2zM3 13h8.09A7 7 0 0 1 9 8H3zm1.5 3c-.81 0-1.5.67-1.5 1.5A1.5 1.5 0 0 0 4.5 19c.85 0 1.5-.67 1.5-1.5A1.5 1.5 0 0 0 4.5 16m9 0c-.85 0-1.5.67-1.5 1.5a1.5 1.5 0 0 0 1.5 1.5c.81 0 1.5-.67 1.5-1.5a1.5 1.5 0 0 0-1.5-1.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bus-articulated-end.svg��������������������0000664�0000000�0000000�00000000477�14753064456�0027774�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.5 6 20 7.5 21.5 9 20 10.5l1.5 1.5-1.5 1.5 1.5 1.5h-9a3 3 0 0 1-3 3 3 3 0 0 1-3-3h-4V8c0-1.11.89-2 2-2zm-3 1.5H15V10h3.5zm-5 0h-4V10h4zM8 7.5H4V10h4zm1.5 6A1.5 1.5 0 0 0 8 15a1.5 1.5 0 0 0 1.5 1.5A1.5 1.5 0 0 0 11 15a1.5 1.5 0 0 0-1.5-1.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bus-articulated-front.svg������������������0000664�0000000�0000000�00000000700�14753064456�0030343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m1 6 1.5 1.5L1 9l1.5 1.5L1 12l1.5 1.5L1 15h2a3 3 0 0 0 3 3 3 3 0 0 0 3-3h6a3 3 0 0 0 3 3 3 3 0 0 0 3-3h2V8c0-1.11-.89-2-2-2zm3 1.5h2.5V10H4zm4 0h4V10H8zm5.5 0h4V10h-4zm5.5 0h2.5V13L19 11zm-13 6A1.5 1.5 0 0 1 7.5 15 1.5 1.5 0 0 1 6 16.5 1.5 1.5 0 0 1 4.5 15 1.5 1.5 0 0 1 6 13.5m12 0a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bus-clock.svg������������������������������0000664�0000000�0000000�00000002041�14753064456�0026007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 4v4.25l2.86 1.69-.75 1.22L15 9V4zm-.5 9c1.36 0 2.54-.5 3.5-1.47 1-.97 1.5-2.14 1.5-3.53 0-1.36-.5-2.54-1.5-3.5-.96-1-2.14-1.5-3.5-1.5-1.39 0-2.56.5-3.53 1.5C11.5 5.46 11 6.64 11 8c0 1.39.5 2.56 1.47 3.53S14.61 13 16 13m-2.5 6c.44 0 .8-.16 1.08-.46s.42-.65.42-1.04c0-.42-.14-.77-.42-1.07S13.94 16 13.5 16s-.8.13-1.08.43-.42.65-.42 1.07c0 .39.14.74.42 1.04s.64.46 1.08.46M3 13h8.11C9.7 11.64 9 10 9 8H3zm1.5 6c.44 0 .8-.16 1.08-.46S6 17.89 6 17.5c0-.42-.14-.77-.42-1.07S4.94 16 4.5 16s-.8.13-1.08.43S3 17.08 3 17.5c0 .39.14.74.42 1.04s.64.46 1.08.46M16 1c1.92 0 3.58.67 4.95 2.05C22.33 4.42 23 6.08 23 8c0 1.77-.56 3.29-1.72 4.59-1.15 1.29-2.58 2.07-4.28 2.32V18c0 .84-.33 1.58-1 2.2V22c0 .27-.11.5-.3.71-.2.2-.42.29-.7.29h-1c-.27 0-.5-.09-.71-.29A.98.98 0 0 1 13 22v-1H5v1c0 .27-.09.5-.29.71-.21.2-.44.29-.71.29H3c-.28 0-.5-.09-.7-.29-.19-.21-.3-.44-.3-.71v-1.8c-.67-.62-1-1.36-1-2.2V8c0-1.58.67-2.65 2.05-3.2C4.42 4.26 6.41 4 9 4h.61c.28 0 .48.03.61.03C11.63 2 13.55 1 16 1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bus-double-decker.svg����������������������0000664�0000000�0000000�00000000764�14753064456�0027433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4c-1.11 0-2 .89-2 2v11h2a3 3 0 0 0 3 3 3 3 0 0 0 3-3h6a3 3 0 0 0 3 3 3 3 0 0 0 3-3h2v-3c0-1.11-.89-2-2-2h-2V9.5h4V6c0-1.11-.89-2-2-2zm-.5 1.5h4V8h-4zm5.5 0h4V8H8zm5.5 0h4V8h-4zm5.5 0h2.5V8H19zm-5.5 4h4V12h-4zm-11 0h4V12h-4zm5.5 0h4V12H8zm-2 6A1.5 1.5 0 0 1 7.5 17 1.5 1.5 0 0 1 6 18.5 1.5 1.5 0 0 1 4.5 17 1.5 1.5 0 0 1 6 15.5m12 0a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5"/></svg>������������mkdocs-material-9.6.4/material/templates/.icons/material/bus-electric.svg���������������������������0000664�0000000�0000000�00000000607�14753064456�0026514�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 8H6V4h12m-1.5 10c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5m-9 0c-.8 0-1.5-.7-1.5-1.5S6.7 11 7.5 11s1.5.7 1.5 1.5S8.3 14 7.5 14M4 13c0 .9.4 1.7 1 2.2V17c0 .6.4 1 1 1h1c.6 0 1-.4 1-1v-1h8v1c0 .6.4 1 1 1h1c.6 0 1-.4 1-1v-1.8c.6-.5 1-1.3 1-2.2V4c0-3.5-3.6-4-8-4S4 .5 4 4zm3 8h4v-2l6 3h-4v2z"/></svg>�������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bus-marker.svg�����������������������������0000664�0000000�0000000�00000000735�14753064456�0026205�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c-4.42 0-8 .5-8 4v10a3 3 0 0 0 1 2.22V20a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h6a8 8 0 0 1-1-3.5 5.55 5.55 0 0 1 2.38-4.5H6V6h12v4a4 4 0 0 1 .5 0 5.3 5.3 0 0 1 1.5.22V6c0-3.5-3.58-4-8-4M7.5 14A1.5 1.5 0 1 1 6 15.5 1.5 1.5 0 0 1 7.5 14m11-2a3.54 3.54 0 0 0-3.5 3.5c0 2.6 3.5 6.5 3.5 6.5s3.5-3.9 3.5-6.5a3.54 3.54 0 0 0-3.5-3.5m0 4.8a1.2 1.2 0 1 1 0-2.4 1.29 1.29 0 0 1 1.2 1.2 1.15 1.15 0 0 1-1.2 1.2"/></svg>�����������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bus-multiple.svg���������������������������0000664�0000000�0000000�00000001054�14753064456�0026552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 5c-4.42 0-8 .5-8 4v10c0 .85.37 1.66 1 2.22V23c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.63-.56 1-1.37 1-2.22V9c0-3.5-3.58-4-8-4M5.5 20c-.83 0-1.5-.67-1.5-1.5S4.67 17 5.5 17s1.5.67 1.5 1.5S6.33 20 5.5 20m9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5m1.5-6H4V9h12zm6-9v10c0 .85-.37 1.66-1 2.22V19c0 .55-.45 1-1 1h-.12c.07-.32.12-.65.12-1V9c0-6-7-6-10-6-.91 0-2.2 0-3.54.17C7.55 1.32 10.5 1 14 1c4.42 0 8 .5 8 4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bus-school.svg�����������������������������0000664�0000000�0000000�00000000664�14753064456�0026214�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6c-1.11 0-2 .89-2 2v7h2a3 3 0 0 0 3 3 3 3 0 0 0 3-3h6a3 3 0 0 0 3 3 3 3 0 0 0 3-3h2v-3c0-1.11-.89-2-2-2h-2V8c0-1.11-.89-2-2-2zm10.5 1.5h4V10h-4zm-11 0h4V10h-4zm5.5 0h4V10H8zm-2 6A1.5 1.5 0 0 1 7.5 15 1.5 1.5 0 0 1 6 16.5 1.5 1.5 0 0 1 4.5 15 1.5 1.5 0 0 1 6 13.5m12 0a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5"/></svg>����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bus-side.svg�������������������������������0000664�0000000�0000000�00000000661�14753064456�0025646�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6c-1.11 0-2 .89-2 2v7h2a3 3 0 0 0 3 3 3 3 0 0 0 3-3h6a3 3 0 0 0 3 3 3 3 0 0 0 3-3h2V8c0-1.11-.89-2-2-2zm-.5 1.5h4V10h-4zm5.5 0h4V10H8zm5.5 0h4V10h-4zm5.5 0h2.5V13L19 11zm-13 6A1.5 1.5 0 0 1 7.5 15 1.5 1.5 0 0 1 6 16.5 1.5 1.5 0 0 1 4.5 15 1.5 1.5 0 0 1 6 13.5m12 0a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bus-sign.svg�������������������������������0000664�0000000�0000000�00000000725�14753064456�0025663�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 11h7.07A7.97 7.97 0 0 0 10 15c0 1.46.39 2.82 1.07 4H6v1c0 .27-.1.5-.29.71-.21.19-.44.29-.71.29H4c-.26 0-.5-.1-.71-.29C3.11 20.5 3 20.27 3 20v-1.78c-.61-.55-1-1.34-1-2.22V6c0-3.5 3.58-4 8-4s8 .5 8 4v1c-.69 0-1.36.09-2 .25V6H4zm1.5 6a1.499 1.499 0 0 0 1.06-2.56 1.499 1.499 0 1 0-2.12 2.12c.28.28.66.44 1.06.44m9.5 3v1h6v-1c0-.55-.45-1-1-1h-1v-5h2l2-2-2-2h-8l2 2-2 2h4v5h-1c-.55 0-1 .45-1 1"/></svg>�������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bus-stop-covered.svg�����������������������0000664�0000000�0000000�00000000514�14753064456�0027331�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 3H7V2H6a1.78 1.78 0 0 0-1.41 1H2v2h1.73C2 10.58 2 22 2 22h5V5h13m2 3.5a2.5 2.5 0 1 0-3 2.5v11h1V11a2.5 2.5 0 0 0 2-2.5m-7 3V16h-1v6h-1.5v-5h-1v5H10v-6H9v-4.5a1.5 1.5 0 0 1 1.5-1.5h3a1.5 1.5 0 0 1 1.5 1.5m-3-5A1.5 1.5 0 1 0 13.5 8 1.5 1.5 0 0 0 12 6.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bus-stop-uncovered.svg���������������������0000664�0000000�0000000�00000000472�14753064456�0027677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 22v-3H4v3H2v-8a1 1 0 0 1 1-1 1 1 0 0 1 1 1v3h3a1 1 0 0 1 1 1v4m12-11v11h-1V11a2.5 2.5 0 1 1 1 0m-5 .55V16h-1v6h-1.5v-5h-1v5H10v-6H9v-4.5a1.5 1.5 0 0 1 1.5-1.5h3a1.5 1.5 0 0 1 1.5 1.5m-3-4.95A1.5 1.5 0 1 0 13.5 8 1.5 1.5 0 0 0 12 6.5Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/bus-stop.svg�������������������������������0000664�0000000�0000000�00000000752�14753064456�0025710�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 7v9c0 .71-.38 1.36-1 1.72v1.53c0 .41-.34.75-.75.75h-.5c-.41 0-.75-.34-.75-.75V18h-7v1.25c0 .41-.34.75-.75.75h-.5c-.41 0-.75-.34-.75-.75v-1.53c-.61-.36-1-1.01-1-1.72V7c0-3 3-3 6.5-3S22 4 22 7m-9 8c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1m7 0c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1m0-8h-9v4h9zM7 9.5C6.97 8.12 5.83 7 4.45 7.05A2.5 2.5 0 0 0 2 9.6 2.51 2.51 0 0 0 4 12v8h1v-8c1.18-.24 2-1.29 2-2.5"/></svg>����������������������mkdocs-material-9.6.4/material/templates/.icons/material/bus-wrench.svg�����������������������������0000664�0000000�0000000�00000000772�14753064456�0026213�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 13V6c0-3.5-3.58-4-8-4s-8 .5-8 4v10c0 .88.39 1.67 1 2.22V20c0 .27.11.5.29.71.21.19.45.29.71.29h1c.27 0 .5-.1.71-.29.19-.21.29-.44.29-.71v-1h4a5.002 5.002 0 0 1 8-6m-4-2H6V6h12v5zm-9.56 5.56a1.499 1.499 0 1 1 2.12-2.12 1.499 1.499 0 1 1-2.12 2.12m9.06.36-2.21-2.21c-.18.39-.29.83-.29 1.29 0 1.66 1.34 3 3 3 .46 0 .9-.1 1.29-.29l4 4 1.42-1.42-4-4c.19-.39.29-.83.29-1.29 0-1.66-1.34-3-3-3-.46 0-.9.11-1.29.29l2.2 2.21-1.41 1.41Z"/></svg>������mkdocs-material-9.6.4/material/templates/.icons/material/bus.svg������������������������������������0000664�0000000�0000000�00000000656�14753064456�0024730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 11H6V6h12m-1.5 11a1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5 1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5m-9 0A1.5 1.5 0 0 1 6 15.5 1.5 1.5 0 0 1 7.5 14 1.5 1.5 0 0 1 9 15.5 1.5 1.5 0 0 1 7.5 17M4 16c0 .88.39 1.67 1 2.22V20a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h8v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1.78c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4s-8 .5-8 4z"/></svg>����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/butterfly-outline.svg����������������������0000664�0000000�0000000�00000001011�14753064456�0027616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 21h-2V6L9.03 3.97 10 3l2 2 2-2 1 1-2 2zm1-12V7a5.002 5.002 0 0 1 6 8v2c0 2.21-1.79 4-4 4-.73 0-1.41-.19-2-.54v-2c.59.35 1.27.54 2 .54 1.1 0 2-.9 2-2v-3.17c1.17-.41 2-1.52 2-2.83 0-1.65-1.33-3-3-3-1.12 0-2.16.37-3 1m-4 0c-.84-.63-1.87-1-3-1-1.67 0-3 1.35-3 3 0 1.31.84 2.42 2 2.83V17c0 1.1.9 2 2 2 .73 0 1.41-.19 2-.54v2c-.59.35-1.27.54-2 .54-2.21 0-4-1.79-4-4v-2a5.002 5.002 0 0 1 6-8zm-1 2L7.5 9.5 6 11l1.5 1.5zm9 0-1.5-1.5L15 11l1.5 1.5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/butterfly.svg������������������������������0000664�0000000�0000000�00000000604�14753064456�0026150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 21h-2V6L9.03 3.97 10 3l2 2 2-2 1 1-2 2zM7 6a5.002 5.002 0 0 0-3 9v2c0 2.21 1.79 4 4 4 .72 0 1.39-.19 1.97-.5l.03-.04V7c-.84-.63-1.87-1-3-1m-.5 6.5L5 11l1.5-1.5L8 11zM22 11c0-2.76-2.24-5-5-5-1.12 0-2.15.37-3 1v13.46c.59.35 1.27.54 2 .54 2.21 0 4-1.79 4-4v-2c1.21-.91 2-2.36 2-4m-4.5 1.5L16 11l1.5-1.5L19 11z"/></svg>����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/button-cursor.svg��������������������������0000664�0000000�0000000�00000000574�14753064456�0026764�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.1 15.3c-.1.1-.3.2-.4.3l-2.4.4 1.7 3.6c.2.4 0 .8-.4 1l-2.8 1.3c-.1.1-.2.1-.3.1-.3 0-.6-.2-.7-.4L11.2 18l-1.9 1.5c-.1.1-.3.2-.5.2-.4 0-.8-.3-.8-.8V7.5c0-.5.3-.8.8-.8.2 0 .4.1.5.2l8.7 7.4c.3.2.4.7.1 1M6 12H4V4h16v8h-1.6l2.2 1.9c.8-.3 1.3-1 1.3-1.9V4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/button-pointer.svg�������������������������0000664�0000000�0000000�00000000471�14753064456�0027123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 20.5c0 .8-.7 1.5-1.5 1.5H13c-.4 0-.7-.1-1-.4l-4-4.2.7-.8c.2-.2.5-.3.8-.3h.2L12 18V9c0-.6.4-1 1-1s1 .4 1 1v4.5l1.2.1 3.9 2.2c.5.2.9.8.9 1.3zM20 2H4c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h4v-2H4V4h16v8h-2v2h2c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cabin-a-frame.svg��������������������������0000664�0000000�0000000�00000000254�14753064456�0026513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3 4 21h16zM9 19H7.08L9 14.67zm4 0h-2v-5h2zm-2.81-7L12 7.92 13.81 12zM15 14.67 16.92 19H15z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cable-data.svg�����������������������������0000664�0000000�0000000�00000001233�14753064456�0026104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.05 3.5a3.52 3.52 0 0 0 0 4.97l8.49 8.48c.58.59.58 1.55 0 2.12-.59.59-1.54.59-2.13 0l-4.24-4.24 1.06-1.06-3.53-3.54-.36.36-1.41-1.42a1.02 1.02 0 0 0-1.43 0l-1.4 1.42c-.39.41-.39 1.02 0 1.41l1.4 1.41-.34.36L6.7 17.3l1.06-1.06L12 20.5a3.53 3.53 0 0 0 4.95 0c1.37-1.38 1.37-3.6 0-4.96L8.46 7.05c-.58-.59-.58-1.55 0-2.12.59-.59 1.54-.59 2.13 0l4.24 4.24-1.06 1.06 3.53 3.54.36-.36 1.41 1.42c.39.39 1.03.39 1.43 0l1.4-1.42c.39-.41.39-1.02 0-1.41l-1.4-1.41.34-.36L17.3 6.7l-1.06 1.06L12 3.5a3.53 3.53 0 0 0-4.95 0m-4.24 7.79 1.41-1.41 1.42 1.41-1.42 1.42m14.14 0 1.42-1.42 1.41 1.42-1.41 1.41Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cached.svg���������������������������������0000664�0000000�0000000�00000000411�14753064456�0025333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19 8-4 4h3a6 6 0 0 1-6 6c-1 0-1.97-.25-2.8-.7l-1.46 1.46A7.93 7.93 0 0 0 12 20a8 8 0 0 0 8-8h3M6 12a6 6 0 0 1 6-6c1 0 1.97.25 2.8.7l1.46-1.46A7.93 7.93 0 0 0 12 4a8 8 0 0 0-8 8H1l4 4 4-4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cactus.svg���������������������������������0000664�0000000�0000000�00000000376�14753064456�0025420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 16v5h-4v-3H9a3 3 0 0 1-3-3v-3a1 1 0 0 1 1-1 1 1 0 0 1 1 1v3c0 .56.45 1 1 1h1V6a2 2 0 0 1 2-2 2 2 0 0 1 2 2v8h1a1 1 0 0 0 1-1v-2a1 1 0 0 1 1-1 1 1 0 0 1 1 1v2a3 3 0 0 1-3 3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cake-layered.svg���������������������������0000664�0000000�0000000�00000000427�14753064456�0026461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 21v-4a2 2 0 0 0-2-2h-1v-3a2 2 0 0 0-2-2h-3V8h-2v2H8c-1.11 0-2 .89-2 2v3H5c-1.11 0-2 .89-2 2v4H1v2h22v-2M12 7a2 2 0 0 0 2-2c0-.38-.1-.73-.29-1.03L12 1l-1.72 2.97c-.18.3-.28.65-.28 1.03a2 2 0 0 0 2 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cake-variant-outline.svg�������������������0000664�0000000�0000000�00000001016�14753064456�0030150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6a2 2 0 0 0 2-2c0-.38-.1-.73-.29-1.03L12 0l-1.71 2.97c-.19.3-.29.65-.29 1.03 0 1.1.9 2 2 2m6 3h-5V7h-2v2H6c-1.66 0-3 1.34-3 3v9c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-9c0-1.66-1.34-3-3-3m1 11H5v-3c.9 0 1.76-.37 2.4-1l1.1-1.08L9.56 16c1.31 1.3 3.59 1.29 4.89 0l1.08-1.08L16.6 16c.64.63 1.5 1 2.4 1zm0-4.5c-.5 0-1-.2-1.35-.57L15.5 12.8l-2.12 2.13c-.74.74-2.03.74-2.77 0L8.5 12.8l-2.16 2.13c-.34.36-.84.57-1.34.57V12c0-.55.45-1 1-1h12c.55 0 1 .45 1 1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cake-variant.svg���������������������������0000664�0000000�0000000�00000001032�14753064456�0026471�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6a2 2 0 0 0 2-2c0-.38-.1-.73-.29-1.03L12 0l-1.71 2.97c-.19.3-.29.65-.29 1.03a2 2 0 0 0 2 2m4.6 10-1.07-1.08L14.45 16c-1.3 1.29-3.58 1.3-4.89 0L8.5 14.92 7.4 16a3.47 3.47 0 0 1-4.4.39V21a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-4.61a3.467 3.467 0 0 1-4.4-.39M18 9h-5V7h-2v2H6a3 3 0 0 0-3 3v1.54c0 1.08.88 1.96 1.96 1.96.54 0 1.04-.2 1.38-.57L8.5 12.8l2.11 2.13c.74.74 2.03.74 2.77 0l2.12-2.13 2.15 2.13c.35.37.85.57 1.38.57 1.08 0 1.97-.88 1.97-1.96V12a3 3 0 0 0-3-3"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cake.svg�����������������������������������0000664�0000000�0000000�00000000674�14753064456�0025042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.5.5c.5.25 1.5 1.9 1.5 3S12.33 5 11.5 5 10 4.85 10 3.75 11 2 11.5.5m7 8.5C21 9 23 11 23 13.5c0 1.56-.79 2.93-2 3.74V23H3v-5.76c-1.21-.81-2-2.18-2-3.74C1 11 3 9 5.5 9H10V6h3v3zM12 16a2.5 2.5 0 0 0 2.5-2.5H16a2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5h-13A2.5 2.5 0 0 0 3 13.5 2.5 2.5 0 0 0 5.5 16 2.5 2.5 0 0 0 8 13.5h1.5A2.5 2.5 0 0 0 12 16"/></svg>��������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calculator-variant-outline.svg�������������0000664�0000000�0000000�00000000532�14753064456�0031400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 16H5V5h14zM6.2 7.7h5v1.5h-5zm6.8 8.1h5v1.5h-5zm0-2.6h5v1.5h-5zM8 18h1.5v-2h2v-1.5h-2v-2H8v2H6V16h2zm6.1-7.1 1.4-1.4 1.4 1.4 1.1-1-1.4-1.4L18 7.1 16.9 6l-1.4 1.4L14.1 6 13 7.1l1.4 1.4L13 9.9z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calculator-variant.svg���������������������0000664�0000000�0000000�00000000522�14753064456�0027722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m-6 4.1L14.1 6l1.4 1.4L16.9 6 18 7.1l-1.4 1.4L18 9.9 16.9 11l-1.4-1.4-1.4 1.4L13 9.9l1.4-1.4zm-6.8.6h5v1.5h-5zm5.3 8.3h-2v2H8v-2H6v-1.5h2v-2h1.5v2h2zm6.5 1.2h-5v-1.5h5zm0-2.4h-5v-1.5h5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calculator.svg�����������������������������0000664�0000000�0000000�00000000416�14753064456�0026262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2h10a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m0 2v4h10V4zm0 6v2h2v-2zm4 0v2h2v-2zm4 0v2h2v-2zm-8 4v2h2v-2zm4 0v2h2v-2zm4 0v2h2v-2zm-8 4v2h2v-2zm4 0v2h2v-2zm4 0v2h2v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-account-outline.svg���������������0000664�0000000�0000000�00000000514�14753064456�0031010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m0 16H5V9h14zm0-12H5V5h14m-7 5c2 0 3 2.42 1.59 3.84-1.42 1.42-3.84.41-3.84-1.59C9.75 11 10.75 10 12 10m4.5 7.88V18h-9v-.12c0-1.25 2-2.25 4.5-2.25s4.5 1 4.5 2.25"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-account.svg�����������������������0000664�0000000�0000000�00000000467�14753064456�0027342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 9c2 0 3 2.42 1.59 3.84-1.42 1.42-3.84.41-3.84-1.59C9.75 10 10.75 9 12 9m4.5 9h-9v-1.12c0-1.25 2-2.25 4.5-2.25s4.5 1 4.5 2.25M19 19H5V8h14m-3-7v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2h-1V1z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-alert-outline.svg�����������������0000664�0000000�0000000�00000000335�14753064456�0030464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 16h2v2h-2zm0-6h2v4h-2zm8-7h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 2v2H5V5zM5 19V9h14v10z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-alert.svg�������������������������0000664�0000000�0000000�00000000320�14753064456�0027001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 1v2H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2h-1V1h-2v2H8V1zM5 8h14v11H5zm6 1v5h2V9zm0 7v2h2v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-arrow-left.svg��������������������0000664�0000000�0000000�00000000321�14753064456�0027755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V5a2 2 0 0 0-2-2m0 16H5V8h14zm-7-9v2h4v3h-4v2l-4-3.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-arrow-right.svg�������������������0000664�0000000�0000000�00000000322�14753064456�0030141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V5a2 2 0 0 0-2-2m0 16H5V8h14zm-7-2v-2H8v-3h4v-2l4 3.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-badge-outline.svg�����������������0000664�0000000�0000000�00000000523�14753064456�0030416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 16c-1.9 0-3.5 1.6-3.5 3.5s1.6 3.5 3.5 3.5 3.5-1.6 3.5-3.5-1.6-3.5-3.5-3.5M14 19.5c0-.17 0-.33.03-.5H5V9h14v5.03c.17-.03.33-.03.5-.03.5 0 1 .08 1.5.21V5a2 2 0 0 0-2-2h-1V1h-2v2H8V1H6v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h9.21c-.13-.5-.21-1-.21-1.5M5 5h14v2H5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-badge.svg�������������������������0000664�0000000�0000000�00000000507�14753064456�0026743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 16c-1.9 0-3.5 1.6-3.5 3.5s1.6 3.5 3.5 3.5 3.5-1.6 3.5-3.5-1.6-3.5-3.5-3.5m-5.29 5H5a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2h1V1h2v2h8V1h2v2h1a2 2 0 0 1 2 2v9.21c-.5-.13-1-.21-1.5-.21-.17 0-.33 0-.5.03V8H5v11h9.03c-.03.17-.03.33-.03.5 0 .5.08 1 .21 1.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-blank-multiple.svg����������������0000664�0000000�0000000�00000000321�14753064456�0030613�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 17V8H7v9zm0-14c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H7a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h1V1h2v2h8V1h2v2zM3 21h14v2H3a2 2 0 0 1-2-2V9h2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-blank-outline.svg�����������������0000664�0000000�0000000�00000000304�14753064456�0030440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-1V1h-2v2H8V1H6v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m0 16H5V9h14zm0-12H5V5h14z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-blank.svg�������������������������0000664�0000000�0000000�00000000265�14753064456�0026771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19H5V8h14m-3-7v2H8V1H6v2H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2h-1V1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-check-outline.svg�����������������0000664�0000000�0000000�00000000403�14753064456�0030426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m0 16H5V9h14zM5 7V5h14v2zm5.56 10.46 5.94-5.93-1.07-1.06-4.87 4.87-2.11-2.11-1.06 1.06z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-check.svg�������������������������0000664�0000000�0000000�00000000360�14753064456�0026753�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19H5V8h14m0-5h-1V1h-2v2H8V1H6v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-2.47 8.06L15.47 10l-4.88 4.88-2.12-2.12-1.06 1.06L10.59 17z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-clock-outline.svg�����������������0000664�0000000�0000000�00000000672�14753064456�0030454�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 1v2H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h6.1c1.26 1.24 2.99 2 4.9 2 3.87 0 7-3.13 7-7 0-1.91-.76-3.64-2-4.9V5a2 2 0 0 0-2-2h-1V1h-2v2H8V1M5 5h14v2H5m0 2h14v.67c-.91-.43-1.93-.67-3-.67-3.87 0-7 3.13-7 7 0 1.07.24 2.09.67 3H5m11-7.85c2.68 0 4.85 2.17 4.85 4.85s-2.17 4.85-4.85 4.85-4.85-2.17-4.85-4.85 2.17-4.85 4.85-4.85M15 13v3.69l3.19 1.84.75-1.3-2.44-1.41V13Z"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-clock.svg�������������������������0000664�0000000�0000000�00000000671�14753064456�0026776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 13h1.5v2.82l2.44 1.41-.75 1.3L15 16.69zm4-5H5v11h4.67c-.43-.91-.67-1.93-.67-3a7 7 0 0 1 7-7c1.07 0 2.09.24 3 .67zM5 21a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2h1V1h2v2h8V1h2v2h1a2 2 0 0 1 2 2v6.1c1.24 1.26 2 2.99 2 4.9a7 7 0 0 1-7 7c-1.91 0-3.64-.76-4.9-2zm11-9.85A4.85 4.85 0 0 0 11.15 16c0 2.68 2.17 4.85 4.85 4.85A4.85 4.85 0 0 0 20.85 16c0-2.68-2.17-4.85-4.85-4.85"/></svg>�����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-collapse-horizontal-outline.svg���0000664�0000000�0000000�00000000363�14753064456�0033347�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 2v2H5V5zM5 19V9h14v10zm11-8-3 3 3 3v-2h2v-2h-2zm-8 2H6v2h2v2l3-3-3-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-collapse-horizontal.svg�����������0000664�0000000�0000000�00000000343�14753064456�0031670�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19H5V8h14m-3-7v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-1V1m-7 13-3-3v2H6v2h2v2zm7-1h-2v-2l-3 3 3 3v-2h2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-cursor-outline.svg����������������0000664�0000000�0000000�00000000611�14753064456�0030667�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 9h14v2.1l2 1.7V5c0-1.1-.9-2-2-2h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8v-2H5zm14-4v2H5V5zM7 16v-5h5v5zm15.9 1.7c-.1.1-.2.2-.3.2l-1.9.4 1.3 2.8c.2.3 0 .6-.3.8l-2.1 1c-.2.1-.2.1-.3.1-.2 0-.4-.1-.5-.3l-1.3-2.8L16 21c-.1.1-.2.1-.4.1-.3 0-.6-.3-.6-.6v-9c0-.3.3-.6.6-.6.1 0 .3.1.4.1l6.8 5.8c.2.3.3.7.1.9"/></svg>�����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-cursor.svg������������������������0000664�0000000�0000000�00000000654�14753064456�0027221�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.86 17.74c-.09.11-.21.17-.33.2l-1.87.36 1.29 2.84c.16.29.02.65-.28.79l-2.14 1.01c-.09.06-.17.06-.26.06-.22 0-.43-.12-.53-.34l-1.29-2.83-1.49 1.21a.593.593 0 0 1-.96-.47V11.6c0-.33.26-.6.59-.6.15 0 .29.05.41.13l6.77 5.76c.27.23.3.61.09.85M12 15v-5H7v5zm7-12h-1V1h-2v2H8V1H6v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8v-2H5V8h14v3.06l2 1.7V5c0-1.1-.9-2-2-2"/></svg>������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-edit-outline.svg������������������0000664�0000000�0000000�00000000424�14753064456�0030301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.7 13.35-1 1-2.05-2 1-1c.2-.21.54-.22.77 0l1.28 1.28c.19.2.19.52 0 .72M12 18.94V21h2.06l6.06-6.12-2.05-2zM5 19h5v2H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h1V1h2v2h8V1h2v2h1a2 2 0 0 1 2 2v4H5zM5 5v2h14V5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-edit.svg��������������������������0000664�0000000�0000000�00000000425�14753064456�0026625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-1V1h-2v2H8V1H6v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h5v-2H5V8h14v1h2V5a2 2 0 0 0-2-2m2.7 10.35-1 1-2.05-2 1-1c.2-.21.54-.22.77 0l1.28 1.28c.19.2.19.52 0 .72M12 18.94l6.07-6.06 2.05 2L14.06 21H12z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-end-outline.svg�������������������0000664�0000000�0000000�00000000327�14753064456�0030124�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 9h14v3h2V5c0-1.1-.9-2-2-2h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h4v-2H5zm14-4v2H5V5zm-3 12h-5v2h5v3l4-4-4-4zm4-3v8h2v-8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-end.svg���������������������������0000664�0000000�0000000�00000000325�14753064456�0026445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 14v8h-2v-4l-4 4v-3h-5v-2h5v-3l4 4v-4zM5 19h4v2H5c-1.1 0-2-.9-2-2V5a2 2 0 0 1 2-2h1V.998h2V3h8V.998h2V3h1c1.11 0 2 .89 2 2v7h-2V8H5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-expand-horizontal-outline.svg�����0000664�0000000�0000000�00000000350�14753064456�0033020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 13H9v-2l-3 3 3 3v-2h6v2l3-3-3-3zm4-10h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 2v2H5V5zM5 19V9h14v10z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-expand-horizontal.svg�������������0000664�0000000�0000000�00000000326�14753064456�0031346�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19H5V8h14m-3-7v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-1V1m0 13-3-3v2H9v-2l-3 3 3 3v-2h6v2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-export-outline.svg����������������0000664�0000000�0000000�00000000347�14753064456�0030701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h3l-2-2H5V9h14v10h-1l-2 2h3c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2M5 7V5h14v2zm8 11v-6h-2v6H8l4 4 4-4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-export.svg������������������������0000664�0000000�0000000�00000000334�14753064456�0027220�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 22 4-4h-3v-6h-2v6H8zm7-19h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h3l-2-2H5V8h14v11h-1l-2 2h3c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-filter-outline.svg����������������0000664�0000000�0000000�00000000520�14753064456�0030636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-1V1h-2v2H8V1H6v2H4.75c-.44.07-.85.27-1.17.58-.31.32-.51.73-.58 1.17v14.5c.07.44.27.85.58 1.17.32.31.73.51 1.17.58H15v-2H5V9h14v2h2V5c0-1.11-.89-2-2-2m0 4H5V5h14zm-2 14 1.8 1.77c.5.5 1.2.1 1.2-.49V18l2.8-3.4A1 1 0 0 0 22 13h-7c-.8 0-1.3 1-.8 1.6L17 18z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-filter.svg������������������������0000664�0000000�0000000�00000000374�14753064456�0027170�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 1h2v2h8V1h2v2h1a2 2 0 0 1 2 2v6h-2V8H5v11h10v2H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h1zm11 20 1.8 1.77c.5.5 1.2.1 1.2-.49V18l2.8-3.4A1 1 0 0 0 22 13h-7c-.8 0-1.3 1-.8 1.6L17 18z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-heart-outline.svg�����������������0000664�0000000�0000000�00000000544�14753064456�0030462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 12.2c0 1.51-1.36 2.74-3.42 4.61l-.58.53-.58-.53C9.36 14.94 8 13.71 8 12.2c0-1.23.97-2.2 2.2-2.2.7 0 1.36.32 1.8.83.44-.51 1.1-.83 1.8-.83 1.23 0 2.2.97 2.2 2.2M21 5v14c0 1.11-.89 2-2 2H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h1V1h2v2h8V1h2v2h1a2 2 0 0 1 2 2M5 5v2h14V5zm14 14V9H5v10z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-heart.svg�������������������������0000664�0000000�0000000�00000000522�14753064456�0027001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19V8H5v11zM16 1h2v2h1a2 2 0 0 1 2 2v14c0 1.11-.89 2-2 2H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h1V1h2v2h8zm-4 16.17-.58-.53C9.36 14.77 8 13.54 8 12.03c0-1.23.97-2.2 2.2-2.2.7 0 1.36.32 1.8.83.44-.51 1.1-.83 1.8-.83 1.23 0 2.2.97 2.2 2.2 0 1.51-1.36 2.74-3.42 4.61z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-import-outline.svg����������������0000664�0000000�0000000�00000000336�14753064456�0030670�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h4v-2H5V9h14v10h-4v2h4c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2M5 7V5h14v2zm7 5-4 4h3v6h2v-6h3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-import.svg������������������������0000664�0000000�0000000�00000000324�14753064456�0027210�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 12-4 4h3v6h2v-6h3m3-13h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h4v-2H5V8h14v11h-4v2h4c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-lock-open-outline.svg�������������0000664�0000000�0000000�00000000607�14753064456�0031246�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h7v-2H5V9h14v1.1c.7.2 1.4.5 2 .9V5c0-1.1-.9-2-2-2m0 4H5V5h14zm3 14.8c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-2.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5v.5h-1.3v-.5c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V17h4.3c.6 0 1.2.6 1.2 1.3z"/></svg>�������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-lock-open.svg���������������������0000664�0000000�0000000�00000000565�14753064456�0027574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 21H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h1V1h2v2h8V1h2v2h1c1.1 0 2 .9 2 2v6c-.6-.4-1.3-.8-2-.9V8H5v11h7zm10-2.7c0-.7-.6-1.3-1.2-1.3h-4.3v-2.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3v.5h1.3v-.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V17c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-lock-outline.svg������������������0000664�0000000�0000000�00000000606�14753064456�0030306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h7v-2H5V9h14v2c.7.2 1.4.5 2 .9V5c0-1.1-.9-2-2-2m0 4H5V5h14zm1.8 10v-1.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V17c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3m-1.3 0h-3v-1.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3z"/></svg>��������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-lock.svg��������������������������0000664�0000000�0000000�00000000572�14753064456�0026633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 21H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h1V1h2v2h8V1h2v2h1c1.1 0 2 .9 2 2v7c-.6-.4-1.3-.8-2-.9V8H5v11h7zm10-2.7v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5V17c.6 0 1.2.6 1.2 1.3m-2.5-2.8c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V17h3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-minus-outline.svg�����������������0000664�0000000�0000000�00000000322�14753064456�0030504�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m0 2v2H5V5zM5 19V9h14v10zm3-6h8v2H8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-minus.svg�������������������������0000664�0000000�0000000�00000000305�14753064456�0027030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19V8H5v11zM16 1h2v2h1a2 2 0 0 1 2 2v14c0 1.11-.89 2-2 2H5a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2h1V1h2v2h8zm0 11.5v2H8v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-month-outline.svg�����������������0000664�0000000�0000000�00000000414�14753064456�0030500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 11h2v2H7zm14-6v14c0 1.11-.89 2-2 2H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h1V1h2v2h8V1h2v2h1a2 2 0 0 1 2 2M5 7h14V5H5zm14 12V9H5v10zm-4-6v-2h2v2zm-4 0v-2h2v2zm-4 2h2v2H7zm8 2v-2h2v2zm-4 0v-2h2v2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-month.svg�������������������������0000664�0000000�0000000�00000000375�14753064456�0027031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 10v2H7v-2zm4 0v2h-2v-2zm4 0v2h-2v-2zm2-7a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h1V1h2v2h8V1h2v2zm0 16V8H5v11zM9 14v2H7v-2zm4 0v2h-2v-2zm4 0v2h-2v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-multiple-check.svg����������������0000664�0000000�0000000�00000000414�14753064456�0030604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 17V8H7v9zm0-14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h1V1h2v2h8V1h2v2zm-3.47 8.06-4.44 4.44-2.68-2.68 1.06-1.06 1.62 1.62L16.47 10zM3 21h14v2H3a2 2 0 0 1-2-2V9h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-multiple.svg����������������������0000664�0000000�0000000�00000000335�14753064456�0027533�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 17V8H7v9zm0-14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h1V1h2v2h8V1h2v2zM3 21h14v2H3a2 2 0 0 1-2-2V9h2zm16-6h-4v-4h4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-multiselect-outline.svg�����������0000664�0000000�0000000�00000000364�14753064456�0031711�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 11h2v2H7zm12-8h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 2v2H5V5zM5 19V9h14v10zm6-4h2v2h-2zm4 0h2v2h-2zm0-4h2v2h-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-multiselect.svg�������������������0000664�0000000�0000000�00000000344�14753064456�0030232�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19V8H5v11zM16 1h2v2h1a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2h1V1h2v2h8zm-9 9h2v2H7zm8 0h2v2h-2zm-4 4h2v2h-2zm4 0h2v2h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-outline.svg�����������������������0000664�0000000�0000000�00000000321�14753064456�0027352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 12h5v5h-5zm7-9h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 2v2H5V5zM5 19V9h14v10z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-plus-outline.svg������������������0000664�0000000�0000000�00000000344�14753064456�0030340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 13h3v2h-3v3h-2v-3H8v-2h3v-3h2zm8-8v14c0 1.11-.89 2-2 2H5a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2h1V1h2v2h8V1h2v2h1a2 2 0 0 1 2 2M5 5v2h14V5zm14 14V9H5v10z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-plus.svg��������������������������0000664�0000000�0000000�00000000330�14753064456�0026656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19V8H5v11zM16 1h2v2h1a2 2 0 0 1 2 2v14c0 1.11-.89 2-2 2H5a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2h1V1h2v2h8zm-5 8.5h2v3h3v2h-3v3h-2v-3H8v-2h3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-question-outline.svg��������������0000664�0000000�0000000�00000001102�14753064456�0031215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.95 10c-.74 0-1.34.18-1.8.5-.44.39-.65.9-.65 1.6v.02h1.65c.01-.26.09-.47.24-.62a.88.88 0 0 1 .56-.19c.26 0 .48.09.64.25.15.17.22.4.22.66 0 .28-.06.53-.2.73-.11.21-.3.38-.52.55-.43.28-.73.55-.89.79-.17.21-.26.6-.26 1.04h1.7c0-.27.03-.49.11-.65.08-.18.22-.32.43-.47.39-.21.7-.47.95-.82.24-.36.37-.72.37-1.17 0-.67-.23-1.22-.69-1.61-.45-.41-1.07-.61-1.86-.61m-1.01 6.22V18h1.7v-1.78zM19 3h-1V1h-2v2H8V1H6v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m0 2v2H5V5zM5 19V9h14v10z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-question.svg����������������������0000664�0000000�0000000�00000001036�14753064456�0027546�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 1v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2h-1V1h-2v2H8V1zM5 8h14v11H5zm7.19 1c-.87 0-1.57.2-2.11.59-.52.41-.78.98-.77 1.77l.01.03h1.93c.01-.3.1-.53.28-.69a1 1 0 0 1 .66-.23c.31 0 .57.1.75.28.18.19.26.45.26.75 0 .32-.07.59-.23.82-.14.23-.35.43-.61.59-.51.34-.86.64-1.05.91-.2.26-.31.68-.31 1.18h2c0-.31.04-.56.13-.74s.26-.36.51-.52c.45-.24.82-.53 1.11-.93s.44-.81.44-1.31c0-.76-.27-1.37-.81-1.82-.53-.45-1.26-.68-2.19-.68M11 16v2h2v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-range-outline.svg�����������������0000664�0000000�0000000�00000000351�14753064456�0030447�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 11h2v2H7zm14-6v14c0 1.11-.89 2-2 2H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h1V1h2v2h8V1h2v2h1a2 2 0 0 1 2 2M5 7h14V5H5zm14 12V9H5v10zm-4-6h2v-2h-2zm-4 0h2v-2h-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-range.svg�������������������������0000664�0000000�0000000�00000000327�14753064456�0026775�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 10H7v2h2zm4 0h-2v2h2zm4 0h-2v2h2zm2-7h-1V1h-2v2H8V1H6v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m0 16H5V8h14z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-refresh-outline.svg���������������0000664�0000000�0000000�00000000603�14753064456�0031011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h9c-.6-.5-1.1-1.2-1.5-2H5V9h14v1.6c.7.1 1.4.3 2 .7V5c0-1.1-.9-2-2-2m0 4H5V5h14m-1 7.5c1.1 0 2.1.4 2.8 1.2l1.2-1.2v4h-4l1.8-1.8c-.5-.4-1.1-.7-1.8-.7-1.4 0-2.5 1.1-2.5 2.5S16.6 19 18 19c.8 0 1.5-.4 2-1h1.7c-.6 1.5-2 2.5-3.7 2.5-2.2 0-4-1.8-4-4s1.8-4 4-4"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-refresh.svg�����������������������0000664�0000000�0000000�00000000570�14753064456�0027337�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h9c-.6-.5-1.1-1.2-1.5-2H5V8h14v2.6c.7.1 1.4.3 2 .7V5c0-1.1-.9-2-2-2m-1 9.5c1.1 0 2.1.4 2.8 1.2l1.2-1.2v4h-4l1.8-1.8c-.5-.4-1.1-.7-1.8-.7-1.4 0-2.5 1.1-2.5 2.5S16.6 19 18 19c.8 0 1.5-.4 2-1h1.7c-.6 1.5-2 2.5-3.7 2.5-2.2 0-4-1.8-4-4s1.8-4 4-4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-remove-outline.svg����������������0000664�0000000�0000000�00000000476�14753064456�0030660�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m0 16H5V9h14zM5 7V5h14v2zm3.23 9.41 1.06 1.06 2.44-2.44 2.44 2.44 1.06-1.06-2.44-2.44 2.44-2.44-1.06-1.06-2.44 2.44-2.44-2.44-1.06 1.06 2.44 2.44z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-remove.svg������������������������0000664�0000000�0000000�00000000450�14753064456�0027173�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19H5V8h14m0-5h-1V1h-2v2H8V1H6v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2M9.31 17l2.44-2.44L14.19 17l1.06-1.06-2.44-2.44 2.44-2.44L14.19 10l-2.44 2.44L9.31 10l-1.06 1.06 2.44 2.44-2.44 2.44z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-search-outline.svg����������������0000664�0000000�0000000�00000000623�14753064456�0030622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.3 18.9c.4-.7.7-1.5.7-2.4 0-2.5-2-4.5-4.5-4.5S11 14 11 16.5s2 4.5 4.5 4.5c.9 0 1.7-.2 2.4-.7l3.1 3.1 1.4-1.4zm-3.8.1c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5M5 19V9h14v2c.8.5 1.5 1.2 2 2V5c0-1.1-.9-2-2-2h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h5.8c-.6-.6-1-1.2-1.3-2zM19 5v2H5V5z"/></svg>�������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-search.svg������������������������0000664�0000000�0000000�00000000670�14753064456�0027147�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 12c2.5 0 4.5 2 4.5 4.5 0 .88-.25 1.71-.69 2.4l3.08 3.1L21 23.39l-3.12-3.07c-.69.43-1.51.68-2.38.68-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5m0 2a2.5 2.5 0 0 0-2.5 2.5 2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5M19 8H5v11h4.5c.31.75.76 1.42 1.31 2H5a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2h1V1h2v2h8V1h2v2h1a2 2 0 0 1 2 2v8.03c-.5-.81-1.2-1.49-2-2.03z"/></svg>������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-star-four-points.svg��������������0000664�0000000�0000000�00000000567�14753064456�0031143�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.74 12.25 12 9.5l1.25 2.75L16 13.5l-2.75 1.26L12 17.5l-1.26-2.74L8 13.5zM16 3V1h2v2h1c.53 0 1.04.21 1.41.59.38.37.59.88.59 1.41v14c0 .53-.21 1.04-.59 1.41-.37.38-.88.59-1.41.59H5c-.53 0-1.04-.21-1.41-.59C3.21 20.04 3 19.53 3 19V5c0-.53.21-1.04.59-1.41C3.96 3.21 4.47 3 5 3h1V1h2v2zM5 8v11h14V8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-star-outline.svg������������������0000664�0000000�0000000�00000000373�14753064456�0030330�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 16H5V9h14zm0-12H5V5h14zm-8 6H7.8l2.6 2-1 3 2.6-1.8 2.6 1.8-1-3 2.6-2H13l-1-3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-star.svg��������������������������0000664�0000000�0000000�00000000414�14753064456�0026647�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19H5V8h14m-3-7v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2h-1V1m-7.12 11H7.27l2.92 2.11-1.11 3.45L12 15.43l2.92 2.13-1.12-3.44L16.72 12h-3.6L12 8.56z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-start-outline.svg�����������������0000664�0000000�0000000�00000000333�14753064456�0030510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13 18-4-4v3H4v-3H2v8h2v-3h5v3zm6-15h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v7h2V9h14v10h-4.2l-2 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2M5 7V5h14v2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-start.svg�������������������������0000664�0000000�0000000�00000000320�14753064456�0027027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 14h2v3h5v-3l4 4-4 4v-3H4v3H2zm17 5V8H5v4H3V5c0-1.11.89-2 2-2h1V.998h2V3h8V.998h2V3h1a2 2 0 0 1 2 2v14c0 1.1-.9 2-2 2h-6.17l2-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-sync-outline.svg������������������0000664�0000000�0000000�00000000616�14753064456�0030333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 11v1.5c3.19 0 5.09 3.55 3.33 6.21l-1.09-1.09C21.06 15.96 19.85 14 18 14v1.5l-2.25-2.25zm0 11v-1.5c-3.19 0-5.09-3.55-3.33-6.21l1.09 1.09C14.94 17.04 16.15 19 18 19v-1.5l2.25 2.25zm1-19h-1V1h-2v2H8V1H6v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h9a5.9 5.9 0 0 1-1.5-2H5V9h14v1.59c.71.11 1.39.35 2 .72V5a2 2 0 0 0-2-2m0 4H5V5h14"/></svg>������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-sync.svg��������������������������0000664�0000000�0000000�00000000603�14753064456�0026652�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 11v1.5c3.19 0 5.09 3.55 3.33 6.21l-1.09-1.09C21.06 15.96 19.85 14 18 14v1.5l-2.25-2.25zm0 11v-1.5c-3.19 0-5.09-3.55-3.33-6.21l1.09 1.09C14.94 17.04 16.15 19 18 19v-1.5l2.25 2.25zm1-19h-1V1h-2v2H8V1H6v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h9a5.9 5.9 0 0 1-1.5-2H5V8h14v2.59c.71.11 1.39.35 2 .72V5a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-text-outline.svg������������������0000664�0000000�0000000�00000000334�14753064456�0030340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m0 16H5V9h14zM5 7V5h14v2zm2 4h10v2H7zm0 4h7v2H7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-text.svg��������������������������0000664�0000000�0000000�00000000312�14753064456�0026657�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 14H7v2h7m5 3H5V8h14m0-5h-1V1h-2v2H8V1H6v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-2 7H7v2h10z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-today-outline.svg�����������������0000664�0000000�0000000�00000000321�14753064456�0030470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-1V1h-2v2H8V1H6v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2m0 16H5V9h14zm0-12H5V5h14M7 11h5v5H7"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-today.svg�������������������������0000664�0000000�0000000�00000000275�14753064456�0027023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 10h5v5H7m12 4H5V8h14m0-5h-1V1h-2v2H8V1H6v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-week-begin-outline.svg������������0000664�0000000�0000000�00000000316�14753064456�0031371�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3c1.11 0 2 .89 2 2v14c0 1.11-.89 2-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h1V1h2v2h8V1h2v2zm0 16V9H5v10zm0-12V5H5v2zM7 11h2v6H7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-week-begin.svg��������������������0000664�0000000�0000000�00000000301�14753064456�0027706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19H5V8h14m-3-7v2H8V1H6v2H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2h-1V1m-9 9H7v7h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-week-outline.svg������������������0000664�0000000�0000000�00000000314�14753064456�0030305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h1V1h2v2h8V1h2v2h1c1.11 0 2 .89 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 16h14V9H5zM5 7h14V5H5zm12 4v2H7v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-week.svg��������������������������0000664�0000000�0000000�00000000300�14753064456�0026623�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 1h2v2h8V1h2v2h1a2 2 0 0 1 2 2v14c0 1.11-.89 2-2 2H5a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2h1zM5 8v11h14V8zm2 2h10v2H7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-weekend-outline.svg���������������0000664�0000000�0000000�00000000327�14753064456�0031000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3a2 2 0 0 1 2 2v14c0 1.11-.89 2-2 2H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h1V1h2v2h8V1h2v2zm0 16V9H5v10zm0-12V5H5v2zM7 11h2v6H7zm8 0h2v6h-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar-weekend.svg�����������������������0000664�0000000�0000000�00000000315�14753064456�0027320�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19V8H5v11zM16 1h2v2h1a2 2 0 0 1 2 2v14c0 1.11-.89 2-2 2H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h1V1h2v2h8zM7 17v-7h2v7zm8-7h2v7h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/calendar.svg�������������������������������0000664�0000000�0000000�00000000303�14753064456�0025675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19H5V8h14m-3-7v2H8V1H6v2H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2h-1V1m-1 11h-5v5h5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/call-made.svg������������������������������0000664�0000000�0000000�00000000170�14753064456�0025745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/call-merge.svg�����������������������������0000664�0000000�0000000�00000000241�14753064456�0026135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 20.41 18.41 19 15 15.59 13.59 17M7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/call-missed.svg����������������������������0000664�0000000�0000000�00000000177�14753064456�0026332�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.59 7 12 14.59 6.41 9H11V7H3v8h2v-4.59l7 7 9-9"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/call-received.svg��������������������������0000664�0000000�0000000�00000000170�14753064456�0026625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 5.41 18.59 4 7 15.59V9H5v10h10v-2H8.41"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/call-split.svg�����������������������������0000664�0000000�0000000�00000000264�14753064456�0026176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14 4 2.29 2.29-2.88 2.88 1.42 1.42 2.88-2.88L20 10V4M10 4H4v6l2.29-2.29 4.71 4.7V20h2v-8.41l-5.29-5.3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camcorder-off.svg��������������������������0000664�0000000�0000000�00000000652�14753064456�0026642�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 9.4 8.8l-7-7L1.1 3l1.6 1.6C2.2 5.3 2 6.1 2 7v13c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2v-6.1l1 1V16h1.1l6.7 6.7zM5 20c-.5 0-1-.5-1-1s.5-1 1-1 1 .5 1 1-.5 1-1 1m2-10c-1.7 0-3-1.3-3-3 0-.3.1-.6.2-.9L8 9.9c-.4 0-.7.1-1 .1m.2-6L5.5 2.3Q6.25 2 7 2c2.8 0 5 2.2 5 5v1.8l-2-2C9.9 5.3 8.7 4.1 7.2 4M20 9h-7V7h7c1.1 0 2 .9 2 2v5c0 1.1-.9 2-2 2h-.8l-2-2H20z"/></svg>��������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camcorder.svg������������������������������0000664�0000000�0000000�00000000475�14753064456�0026075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2C4.24 2 2 4.24 2 7v13c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V7c0-2.76-2.24-5-5-5M5 20c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m2-10c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3m15-1v5c0 1.1-.9 2-2 2h-7v-2h7V9h-7V7h7c1.1 0 2 .9 2 2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-account.svg�������������������������0000664�0000000�0000000�00000000405�14753064456�0027011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 5h3l2-2h6l2 2h3a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2m12 12v-1c0-1.33-2.67-2-4-2s-4 .67-4 2v1zm-4-8a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-burst.svg���������������������������0000664�0000000�0000000�00000000326�14753064456�0026516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 5h2v14H1zm4 0h2v14H5zm17 0H10a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1M11 17l2.5-3.15L15.29 16l2.5-3.22L21 17z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-control.svg�������������������������0000664�0000000�0000000�00000000722�14753064456�0027037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 12c0-.81.3-1.5.89-2.11C10.5 9.3 11.19 9 12 9s1.5.3 2.11.89c.59.61.89 1.3.89 2.11s-.3 1.5-.89 2.11c-.61.59-1.3.89-2.11.89s-1.5-.3-2.11-.89C9.3 13.5 9 12.81 9 12M5.53 8.44l1.78 1.78L5.53 12l1.78 1.78-1.78 1.78L2 12zm2.91 10.03 1.78-1.78L12 18.47l1.78-1.78 1.78 1.78L12 22zm10.03-2.91-1.78-1.78L18.47 12l-1.78-1.78 1.78-1.78L22 12zM15.56 5.53l-1.78 1.78L12 5.53l-1.78 1.78-1.78-1.78L12 2z"/></svg>����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-document-off.svg��������������������0000664�0000000�0000000�00000000535�14753064456�0027747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.84 22.73-.73-.73H3v-2h15.11l-5.22-5.22.11.22H6l2-4h1.11l-1-1H8c-1.1 0-2-.9-2-2v-.11L1.11 3l1.28-1.27 19.72 19.73zM13 8c.74 0 1.38-.4 1.72-1H19v8.8l2 2V7c0-1.11-.89-2-2-2h-4.28c-.34-.59-.98-1-1.72-1 0-1.1-.9-2-2-2H8c-.76 0-1.41.43-1.75 1.05L12.5 9.3c.31-.35.5-.8.5-1.3"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-document.svg������������������������0000664�0000000�0000000�00000000363�14753064456�0027176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 7v15H3v-2h16V7h-4.28c-.34.6-.98 1-1.72 1a2 2 0 0 1-2 2H8c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h3c1.1 0 2 .9 2 2 .74 0 1.38.41 1.72 1H19c1.11 0 2 .89 2 2M6 15h7l-2-4H8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-enhance-outline.svg�����������������0000664�0000000�0000000�00000000623�14753064456�0030435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 10-.94 2.06L9 13l2.06.94L12 16l.94-2.06L15 13l-2.06-.94zm8-5h-3.17L15 3H9L7.17 5H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2m0 14H4V7h4.05l.59-.65L9.88 5h4.24l1.24 1.35.59.65H20zM12 8a5 5 0 0 0-5 5 5 5 0 0 0 5 5 5 5 0 0 0 5-5 5 5 0 0 0-5-5m0 8a3 3 0 0 1-3-3 3 3 0 0 1 3-3 3 3 0 0 1 3 3 3 3 0 0 1-3 3"/></svg>�������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-enhance.svg�������������������������0000664�0000000�0000000�00000000442�14753064456�0026757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 3 7.17 5H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-3.17L15 3m-3 15a5 5 0 0 1-5-5 5 5 0 0 1 5-5 5 5 0 0 1 5 5 5 5 0 0 1-5 5m0-1 1.25-2.75L16 13l-2.75-1.25L12 9l-1.25 2.75L8 13l2.75 1.25"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-flip-outline.svg��������������������0000664�0000000�0000000�00000000701�14753064456�0027763�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12a2 2 0 0 0 2 2h16c1.11 0 2-.89 2-2V7a2 2 0 0 0-2-2m0 14H4V7h4.05l1.83-2h4.24L16 7h4zM5 12h2.1A4.997 4.997 0 0 1 13 8.1c.76.15 1.43.49 2 .9l-1.44 1.45c-.45-.28-.98-.45-1.56-.45-1.26 0-2.4.8-2.82 2H11l-3 3zm11.91 2c-.55 2.71-3.19 4.45-5.91 3.9a5.4 5.4 0 0 1-2-.9l1.44-1.45c.46.28.99.45 1.56.45 1.27 0 2.41-.8 2.83-2H13l3-3 3 3z"/></svg>���������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-flip.svg����������������������������0000664�0000000�0000000�00000000631�14753064456�0026310�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 5h-3l-2-2H9L7 5H4c-1.1 0-2 .9-2 2v12a2 2 0 0 0 2 2h16c1.11 0 2-.89 2-2V7a2 2 0 0 0-2-2M5 12h2.1A4.997 4.997 0 0 1 13 8.1c.76.15 1.43.49 2 .9l-1.44 1.45c-.45-.28-.98-.45-1.56-.45-1.26 0-2.4.8-2.82 2H11l-3 3zm11.91 2c-.55 2.71-3.19 4.45-5.91 3.9a5.4 5.4 0 0 1-2-.9l1.44-1.45c.46.28.99.45 1.56.45 1.27 0 2.41-.8 2.83-2H13l3-3 3 3z"/></svg>�������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-front-variant.svg�������������������0000664�0000000�0000000�00000000441�14753064456�0030147�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 0h12a2 2 0 0 1 2 2v20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2m6 6a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3m-1-5v2h2V1zM6 4v12.5c0-1.38 2.69-2.5 6-2.5s6 1.12 6 2.5V4zm7 14H9v2h4v2l3-3-3-3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-front.svg���������������������������0000664�0000000�0000000�00000000443�14753064456�0026507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2h10v10.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5M17 0H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2m-5 8a2 2 0 0 0 2-2 2 2 0 0 0-2-2 2 2 0 0 0-2 2 2 2 0 0 0 2 2m2 12v2h5v-2m-9 0H5v2h5v2l3-3-3-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-gopro.svg���������������������������0000664�0000000�0000000�00000000572�14753064456�0026510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 5h-5a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h5a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2m-2.5 7.5a3 3 0 0 1-3-3 3 3 0 0 1 3-3 3 3 0 0 1 3 3 3 3 0 0 1-3 3m0-1.5A1.5 1.5 0 0 1 16 9.5 1.5 1.5 0 0 1 17.5 8 1.5 1.5 0 0 1 19 9.5a1.5 1.5 0 0 1-1.5 1.5M12 15V5H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2zm-2-3H4V7h6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-image.svg���������������������������0000664�0000000�0000000�00000000327�14753064456�0026442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 5h3l2-2h6l2 2h3a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2m9.09 4.45-2.04 2.73 1.55 2.07-.87.66-2.46-3.27L6 16h12z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-iris.svg����������������������������0000664�0000000�0000000�00000000665�14753064456�0026333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.73 15-3.9 6.76a9.984 9.984 0 0 0 8.49-2.01l-3.66-6.35M2.46 15c.92 2.92 3.15 5.26 5.99 6.34L12.12 15m-3.58-3-3.9-6.75A9.86 9.86 0 0 0 2 12c0 .68.07 1.35.2 2h7.49m12.11-4h-7.49l.29.5 4.76 8.25A9.93 9.93 0 0 0 22 12c0-.69-.07-1.36-.2-2m-.26-1c-.92-2.93-3.15-5.26-5.99-6.34L11.88 9M9.4 10.5l4.77-8.26C13.47 2.09 12.75 2 12 2c-2.4 0-4.6.84-6.32 2.25l3.66 6.35z"/></svg>���������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-lock-open-outline.svg���������������0000664�0000000�0000000�00000001103�14753064456�0030715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 20H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h3.2L9 2h6l1.8 2H20c1.1 0 2 .9 2 2v5c-.6-.4-1.3-.8-2-.9V6h-4l-1.8-2H9.9L8 6H4v12h9zM12 7c-2.8 0-5 2.2-5 5s2.2 5 5 5c.5 0 .9-.1 1.4-.2.2-.4.5-.8.8-1v-1.2c0-.2 0-.4.1-.5-.6.6-1.4 1-2.3 1-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3v.1c.4-.6 1.1-1.1 1.8-1.5C16.1 8.5 14.3 7 12 7m9.8 10h-4.3v-2.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3v.5h1.3v-.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V17c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-lock-open.svg�����������������������0000664�0000000�0000000�00000001036�14753064456�0027245�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 12c-.4.6-.6 1.3-.7 2-.6.6-1.4 1-2.3 1-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3m-2 6.2c0-.5.1-1 .4-1.4-.5.1-.9.2-1.4.2-2.8 0-5-2.2-5-5s2.2-5 5-5c2.3 0 4.1 1.5 4.8 3.6.7-.3 1.4-.6 2.2-.6 1.1 0 2.2.4 3 1V6c0-1.1-.9-2-2-2h-3l-2-2H9L7 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9zm8.8-1.2h-4.3v-2.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3v.5h1.3v-.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V17c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-lock-outline.svg��������������������0000664�0000000�0000000�00000001124�14753064456�0027761�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 18.3v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5V17c.6 0 1.2.6 1.2 1.3m-2.5-2.8c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V17h3zM20 4c1.1 0 2 .9 2 2v6c-.58-.44-1.26-.75-2-.9V6h-4.05l-1.83-2H9.88L8.05 6H4v12h9v2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h3.17L9 2h6l1.83 2zm-8 3a5.01 5.01 0 0 1 4.97 4.43c-1.68.75-2.87 2.4-2.97 4.33-.33.3-.6.67-.77 1.09-.39.1-.81.15-1.23.15-2.76 0-5-2.24-5-5s2.24-5 5-5m0 8c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-lock.svg����������������������������0000664�0000000�0000000�00000001036�14753064456�0026306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4h3l2-2h6l2 2h3c1.11 0 2 .89 2 2v6c-.84-.63-1.87-1-3-1-.79 0-1.54.18-2.21.5C16.18 9.22 14.27 7 12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5c.42 0 .84-.05 1.23-.15-.15.35-.23.74-.23 1.15v2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2m8 5c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3m11 9.3v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5V17c.6 0 1.2.6 1.2 1.3m-2.5-2.8c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V17h3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-marker-outline.svg������������������0000664�0000000�0000000�00000001065�14753064456�0030316�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 16.8c-.7 0-1.2-.6-1.2-1.2 0-.7.6-1.2 1.2-1.2s1.2.6 1.2 1.2c.1.6-.5 1.2-1.2 1.2m0-4.8c-1.9 0-3.5 1.6-3.5 3.5 0 2.6 3.5 6.5 3.5 6.5s3.5-3.9 3.5-6.5c0-1.9-1.6-3.5-3.5-3.5M9 2 7.2 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h10.5c-.4-.6-.8-1.3-1-2H4V6h4.1l1.8-2h4.2l1.8 2H20v4.2c.7.2 1.4.6 2 1.1V6c0-1.1-.9-2-2-2h-3.2L15 2zm3 5c-2.8 0-5 2.2-5 5s2.2 5 5 5c.4 0 .8 0 1.2-.1-.1-.5-.2-.9-.2-1.4v-.7c-.3.1-.7.2-1 .2-1.7 0-3-1.3-3-3s1.3-3 3-3c1.4 0 2.6 1 2.9 2.3.5-.4 1.1-.8 1.8-1C16 8.3 14.1 7 12 7"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-marker.svg��������������������������0000664�0000000�0000000�00000001047�14753064456�0026641�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 16.8c-.7 0-1.2-.6-1.2-1.2 0-.7.6-1.2 1.2-1.2s1.2.6 1.2 1.2c.1.6-.5 1.2-1.2 1.2m0-4.8c-1.9 0-3.5 1.6-3.5 3.5 0 2.6 3.5 6.5 3.5 6.5s3.5-3.9 3.5-6.5c0-1.9-1.6-3.5-3.5-3.5M9 2 7 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h10.5c-.6-.9-1.1-1.9-1.4-3.1-.3.1-.7.1-1.1.1-2.8 0-5-2.2-5-5s2.2-5 5-5c2.1 0 4 1.3 4.7 3.3q.9-.3 1.8-.3c1.3 0 2.5.5 3.5 1.3V6c0-1.1-.9-2-2-2h-3l-2-2zm2.9 7C10.3 9 9 10.4 9 12c0 1.7 1.3 3 3 3 .4 0 .7-.1 1-.2.2-1.4.9-2.6 1.9-3.5-.3-1.3-1.5-2.3-3-2.3q.15 0 0 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-metering-center.svg�����������������0000664�0000000�0000000�00000000722�14753064456�0030447�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2m0 2v12h16V6zm8 4.5a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5m0-3c2.14 0 3.93 1.5 4.39 3.5h-1.56A2.99 2.99 0 0 0 12 9c-1.31 0-2.42.83-2.83 2H7.61C8.07 9 9.86 7.5 12 7.5m0 9c-2.14 0-3.93-1.5-4.39-3.5h1.56c.41 1.17 1.52 2 2.83 2s2.42-.83 2.83-2h1.56c-.46 2-2.25 3.5-4.39 3.5"/></svg>����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-metering-matrix.svg�����������������0000664�0000000�0000000�00000000664�14753064456�0030500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2m0 2v12h16V6zm1.5 1.5H11v1.67c-.85.3-1.53.98-1.83 1.83H5.5zm13 0V11h-3.67c-.3-.85-.98-1.53-1.83-1.83V7.5zm0 9H13v-1.67c.85-.3 1.53-.98 1.83-1.83h3.67zm-13 0V13h3.67c.3.85.98 1.53 1.83 1.83v1.67zm6.5-6a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5"/></svg>����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-metering-partial.svg����������������0000664�0000000�0000000�00000000566�14753064456�0030631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2m0 2v12h16V6zm8 1.5c2.14 0 3.93 1.5 4.39 3.5h-1.56A2.99 2.99 0 0 0 12 9c-1.31 0-2.42.83-2.83 2H7.61C8.07 9 9.86 7.5 12 7.5m0 9c-2.14 0-3.93-1.5-4.39-3.5h1.56c.41 1.17 1.52 2 2.83 2s2.42-.83 2.83-2h1.56c-.46 2-2.25 3.5-4.39 3.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-metering-spot.svg�������������������0000664�0000000�0000000�00000000377�14753064456�0030162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2m0 2v12h16V6zm8 4.5a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-off-outline.svg���������������������0000664�0000000�0000000�00000001054�14753064456�0027605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 12c0 .54-.1 1.05-.26 1.54L15 11.78A3.06 3.06 0 0 0 12.22 9l-1.76-1.74c.49-.16 1-.26 1.54-.26 2.76 0 5 2.24 5 5M9.88 4h4.24l1.83 2H20v10.8l1.88 1.88c.08-.21.12-.44.12-.68V6c0-1.11-.89-2-2-2h-3.17L15 2H9L7.18 4 8.6 5.4zm12.23 17.46-1.27 1.27L18.11 20H4a2 2 0 0 1-2-2V6c0-.58.25-1.1.65-1.46L1.11 3l1.28-1.27zM9 12c0 1.66 1.34 3 3 3 .33 0 .65-.07.94-.17l-3.77-3.77c-.1.3-.17.61-.17.94m7.11 6-1.66-1.66c-.73.41-1.56.66-2.45.66-2.76 0-5-2.24-5-5 0-.89.25-1.72.66-2.45L4.11 6H4v12z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-off.svg�����������������������������0000664�0000000�0000000�00000000702�14753064456�0026127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.2 4.47 2.5 3.2 20 20.72 18.73 22l-2-2H4a2 2 0 0 1-2-2V6c0-.22.04-.43.1-.63zM7 4l2-2h6l2 2h3a2 2 0 0 1 2 2v12c0 .6-.26 1.13-.68 1.5l-4.99-5c.43-.73.67-1.59.67-2.5a5 5 0 0 0-5-5c-.91 0-1.77.24-2.5.67L5.82 4zm0 8a5 5 0 0 0 5 5c.5 0 1.03-.08 1.5-.23L11.72 15A3.064 3.064 0 0 1 9 12.28L7.23 10.5c-.15.47-.23 1-.23 1.5m5-3a3 3 0 0 1 3 3 3 3 0 0 1-.17 1L11 9.17A3 3 0 0 1 12 9"/></svg>��������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-outline.svg�������������������������0000664�0000000�0000000�00000000507�14753064456�0027037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4h-3.17L15 2H9L7.17 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m0 14H4V6h4.05l1.83-2h4.24l1.83 2H20zM12 7a5 5 0 0 0-5 5 5 5 0 0 0 5 5 5 5 0 0 0 5-5 5 5 0 0 0-5-5m0 8a3 3 0 0 1-3-3 3 3 0 0 1 3-3 3 3 0 0 1 3 3 3 3 0 0 1-3 3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-party-mode.svg����������������������0000664�0000000�0000000�00000000553�14753064456�0027442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 17c-1.63 0-3.06-.79-4-2h4a3 3 0 0 0 3-3c0-.35-.07-.69-.18-1h2.08c.06.32.1.66.1 1a5 5 0 0 1-5 5m0-10c1.63 0 3.06.79 4 2h-4a3 3 0 0 0-3 3c0 .35.07.68.18 1H7.1c-.07-.32-.1-.66-.1-1a5 5 0 0 1 5-5m8-3h-3.17L15 2H9L7.17 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-plus-outline.svg��������������������0000664�0000000�0000000�00000000530�14753064456�0030014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 6h-3.2L16 4h-6v2h5.1L17 8h4v12H5v-9H3v9c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2M8 14c0 4.45 5.39 6.69 8.54 3.54S17.45 9 13 9c-2.76 0-5 2.24-5 5m5-3a3.09 3.09 0 0 1 3 3 3.09 3.09 0 0 1-3 3 3.09 3.09 0 0 1-3-3 3.09 3.09 0 0 1 3-3M5 6h3V4H5V1H3v3H0v2h3v3h2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-plus.svg����������������������������0000664�0000000�0000000�00000000521�14753064456�0026337�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4V1h2v3h3v2H5v3H3V6H0V4m6 6V7h3V4h7l1.8 2H21c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V10m10 9c4.45 0 6.69-5.38 3.54-8.54C13.39 7.31 8 9.55 8 14c0 2.76 2.24 5 5 5m-3.2-5c0 2.85 3.45 4.28 5.46 2.26 2.02-2.01.59-5.46-2.26-5.46A3.21 3.21 0 0 0 9.8 14"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-rear-variant.svg��������������������0000664�0000000�0000000�00000000346�14753064456�0027754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 0h12a2 2 0 0 1 2 2v20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2m6 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m1 16H9v2h4v2l3-3-3-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-rear.svg����������������������������0000664�0000000�0000000�00000000366�14753064456�0026314�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6a2 2 0 0 1-2-2 2 2 0 0 1 2-2c1.09 0 2 .9 2 2a2 2 0 0 1-2 2m5-6H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2m-3 20v2h5v-2m-9 0H5v2h5v2l3-3-3-3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-retake-outline.svg������������������0000664�0000000�0000000�00000000560�14753064456�0030307�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 5h-3.17L15 3H9L7.17 5H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2m0 14H4V7h4.05l1.83-2h4.24L16 7h4zm-8-1c-1.08 0-2.14-.35-3-1l1.44-1.44c.47.29 1.01.44 1.56.44a3 3 0 0 0 3-3 3 3 0 0 0-3-3c-1.26 0-2.4.8-2.82 2H11l-3 3-3-3h2.1A4.997 4.997 0 0 1 13 8.1a5 5 0 0 1-1 9.9"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-retake.svg��������������������������0000664�0000000�0000000�00000000511�14753064456�0026626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 5h-3l-2-2H9L7 5H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2m-8 13c-1.08 0-2.14-.35-3-1l1.44-1.44c.47.29 1.01.44 1.56.44a3 3 0 0 0 3-3 3 3 0 0 0-3-3c-1.26 0-2.4.8-2.82 2H11l-3 3-3-3h2.1A4.997 4.997 0 0 1 13 8.1a5 5 0 0 1-1 9.9"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-switch-outline.svg������������������0000664�0000000�0000000�00000000374�14753064456�0030340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4h-3.2L15 2H9L7.2 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2M9.9 4h4.2l1.8 2H20v12H4V6h4.1m6.9 5H9V8.5L5.5 12 9 15.5V13h6v2.5l3.5-3.5L15 8.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-switch.svg��������������������������0000664�0000000�0000000�00000000330�14753064456�0026653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 15.5V13H9v2.5L5.5 12 9 8.5V11h6V8.5l3.5 3.5M20 4h-3.17L15 2H9L7.17 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-timer.svg���������������������������0000664�0000000�0000000�00000000604�14753064456�0026476�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.94 6.35c-.39-.39-.39-1.03 0-1.42a.996.996 0 0 1 1.41 0l6.72 5.38.35.28c.78.78.78 2.05 0 2.83s-2.05.78-2.83 0l-.28-.35zM12 20a8 8 0 0 0 8-8c0-2.21-.9-4.21-2.34-5.66l1.41-1.41A9.97 9.97 0 0 1 22 12a10 10 0 0 1-10 10A10 10 0 0 1 2 12h2a8 8 0 0 0 8 8m0-19a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-wireless-outline.svg����������������0000664�0000000�0000000�00000000622�14753064456�0030670�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 9v11H4V8h4.05l1.83-2H15V4H9L7.17 6H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9zm.67-1H22c0-3.32-2.69-6-6-6v1.33c2.58 0 4.66 2.08 4.67 4.67M18 8h1.33A3.33 3.33 0 0 0 16 4.67V6c1.11 0 2 .89 2 2M7 14a5 5 0 0 0 5 5 5 5 0 0 0 5-5 5 5 0 0 0-5-5 5 5 0 0 0-5 5m8 0a3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3 3 3 0 0 1 3 3"/></svg>��������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera-wireless.svg������������������������0000664�0000000�0000000�00000000661�14753064456�0027216�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10.8a3.2 3.2 0 0 1 3.2 3.2 3.2 3.2 0 0 1-3.2 3.2A3.2 3.2 0 0 1 8.8 14a3.2 3.2 0 0 1 3.2-3.2m4-7.47V2a6 6 0 0 1 6 6h-1.33c0-2.58-2.09-4.67-4.67-4.67M16 6V4.67c1.84 0 3.33 1.49 3.33 3.33H18c0-1.11-.89-2-2-2m1 3h5v11a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.17L9 4h6v3c1.11 0 2 .89 2 2m-5 10a5 5 0 0 0 5-5 5 5 0 0 0-5-5 5 5 0 0 0-5 5 5 5 0 0 0 5 5"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/camera.svg���������������������������������0000664�0000000�0000000�00000000427�14753064456�0025363�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4h3l2-2h6l2 2h3a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2m8 3a5 5 0 0 0-5 5 5 5 0 0 0 5 5 5 5 0 0 0 5-5 5 5 0 0 0-5-5m0 2a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/campfire.svg�������������������������������0000664�0000000�0000000�00000001406�14753064456�0025717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.9 18.5 6 1.6-.4 1.9-9.4-2.5L2.7 22l-.5-1.9 6-1.6-6.1-1.6.5-1.9 9.4 2.5 9.4-2.5.5 1.9zm.17-10.58c-.16-.22-.36-.42-.57-.59-.45-.43-1-.74-1.44-1.2C13 5.08 12.79 3.34 13.44 2c-.65.17-1.26.54-1.77.95C9.84 4.46 9.11 7.1 10 9.38c0 .07.04.15.04.24 0 .16-.11.3-.25.38a.51.51 0 0 1-.57-.23c-.8-1.03-.93-2.51-.38-3.7-1.19.99-1.84 2.65-1.73 4.22.02.36.07.71.19 1.07.11.44.29.87.52 1.25.75 1.25 2.08 2.15 3.5 2.33 1.52.2 3.14-.09 4.31-1.15 1.3-1.2 1.77-3.12 1.08-4.79l-.1-.17q-.21-.495-.57-.9zm-2.24 4.55c-.2.18-.52.36-.78.44-.79.28-1.59-.12-2.05-.6.84-.2 1.34-.84 1.5-1.48.11-.58-.11-1.05-.21-1.61-.08-.53-.07-.99.13-1.49.13.27.27.55.44.77.55.72 1.41 1.04 1.59 2 .02.13.05.22.05.33 0 .6-.24 1.24-.68 1.64"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cancel.svg���������������������������������0000664�0000000�0000000�00000000436�14753064456�0025360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2m0 2c-1.9 0-3.6.6-4.9 1.7l11.2 11.2c1-1.4 1.7-3.1 1.7-4.9 0-4.4-3.6-8-8-8m4.9 14.3L5.7 7.1C4.6 8.4 4 10.1 4 12c0 4.4 3.6 8 8 8 1.9 0 3.6-.6 4.9-1.7"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/candelabra-fire.svg������������������������0000664�0000000�0000000�00000001536�14753064456�0027134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 7c.83 0 1.5-.67 1.5-1.5S18.83 3 18 3s-1.5 1.67-1.5 2.5S17.17 7 18 7m0-1.75c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5M12 6c.83 0 1.5-.67 1.5-1.5S12.83 2 12 2s-1.5 1.67-1.5 2.5S11.17 6 12 6m0-1.75c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5M6 7c.83 0 1.5-.67 1.5-1.5S6.83 3 6 3 4.5 4.67 4.5 5.5 5.17 7 6 7m0-1.75c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5M20.5 11c0 .55-.45 1-1 1H19v2c0 1.11-.89 2-2 2h-4v4h1a2 2 0 0 1 2 2H8c0-1.1.9-2 2-2h1v-4H7a2 2 0 0 1-2-2v-2h-.5c-.55 0-1-.45-1-1s.45-1 1-1V9c0-.55.45-1 1-1h1c.55 0 1 .45 1 1v1c.55 0 1 .45 1 1s-.45 1-1 1H7v2h4v-2h-.5c-.55 0-1-.45-1-1s.45-1 1-1V8c0-.55.45-1 1-1h1c.55 0 1 .45 1 1v2c.55 0 1 .45 1 1s-.45 1-1 1H13v2h4v-2h-.5c-.55 0-1-.45-1-1s.45-1 1-1V9c0-.55.45-1 1-1h1c.55 0 1 .45 1 1v1c.55 0 1 .45 1 1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/candelabra.svg�����������������������������0000664�0000000�0000000�00000000630�14753064456�0026203�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.5 11c0 .55-.45 1-1 1H19v2c0 1.11-.89 2-2 2h-4v4h1a2 2 0 0 1 2 2H8c0-1.1.9-2 2-2h1v-4H7a2 2 0 0 1-2-2v-2h-.5c-.55 0-1-.45-1-1s.45-1 1-1H5V4l2 1v5h.5c.55 0 1 .45 1 1s-.45 1-1 1H7v2h4v-2h-.5c-.55 0-1-.45-1-1s.45-1 1-1h.5V2l2 1v7h.5c.55 0 1 .45 1 1s-.45 1-1 1H13v2h4v-2h-.5c-.55 0-1-.45-1-1s.45-1 1-1h.5V4l2 1v5h.5c.55 0 1 .45 1 1"/></svg>��������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/candle.svg���������������������������������0000664�0000000�0000000�00000000535�14753064456�0025361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.5 2c-1.66 0-3 3.34-3 5a3 3 0 0 0 3 3 3 3 0 0 0 3-3c0-1.66-1.34-5-3-5m0 4.5a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1M10 11a1 1 0 0 0-1 1v8H7a1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1 1 1 0 0 0-1 1v1a3 3 0 0 0 3 3h12a1 1 0 0 0 1-1 1 1 0 0 0-1-1h-3v-8a1 1 0 0 0-1-1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/candy-off-outline.svg����������������������0000664�0000000�0000000�00000001135�14753064456�0027453�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l6.6 6.6c-1.1 1.9-.8 4.4.8 6s4.1 1.9 6 .8l6.4 6.4zM9.9 14.1c-.8-.8-1.1-2-.7-3.1l3.8 3.8c-1.1.4-2.3.2-3.1-.7m4.9-7.8c-.3-1.1-.2-2.7 1.1-3.9.9.9 1.4 1.9 1.5 2.9 1.1-.7 2-.8 2-.8-.1.8-.4 1.5-.8 2 1 .2 2.1.7 2.9 1.5-1.2 1.2-2.8 1.4-3.9 1.1-.3-1.3-1.4-2.4-2.8-2.8M12.2 9l-1.8-1.8c1.7-.6 3.7-.2 5.1 1.2s1.8 3.3 1.2 5.1L15 11.8c-.1-.7-.3-1.4-.9-1.9s-1.2-.8-1.9-.9m-3 8.7c.3 1.1.2 2.7-1.1 3.9-.9-.9-1.4-1.9-1.5-2.9-1.1.7-2 .8-2 .8.1-.8.4-1.5.8-2-1-.2-2.1-.7-2.9-1.5 1.2-1.2 2.8-1.4 3.9-1.1.3 1.3 1.4 2.4 2.8 2.8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/candy-off.svg������������������������������0000664�0000000�0000000�00000000776�14753064456�0026010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.8 22.7-6.4-6.4c-1.9 1.1-4.4.8-6-.8s-1.9-4.1-.8-6L1.1 3l1.3-1.3 19.7 19.7zM15.5 8.5c-1.4-1.4-3.3-1.8-5.1-1.2l6.3 6.3c.6-1.8.2-3.8-1.2-5.1m2.2.7c1.1.3 2.7.1 3.9-1.1-.8-.8-1.9-1.3-2.9-1.5.4-.6.7-1.3.8-2 0 0-1 .1-2 .8-.1-1-.6-2.1-1.5-2.9-1.2 1.2-1.4 2.8-1.1 3.9 1.3.3 2.4 1.4 2.8 2.8M6.3 14.8c-1.1-.3-2.7-.1-3.9 1.1.8.8 1.9 1.3 2.9 1.5-.4.6-.7 1.3-.8 2 0 0 1-.1 2-.8.1 1 .6 2.1 1.5 2.9 1.2-1.2 1.4-2.8 1.1-3.9-1.3-.3-2.4-1.4-2.8-2.8"/></svg>��mkdocs-material-9.6.4/material/templates/.icons/material/candy-outline.svg��������������������������0000664�0000000�0000000�00000001153�14753064456�0026703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.88 9.88c1.17-1.17 3.07-1.17 4.24 0s1.17 3.07 0 4.24-3.07 1.17-4.24 0a3 3 0 0 1 0-4.24M8.46 8.46c-1.96 1.96-1.96 5.12 0 7.08s5.12 1.96 7.08 0 1.96-5.12 0-7.08-5.12-1.96-7.08 0m11.01-3.91s-.97.12-2.04.82c-.15-1.05-.65-2.1-1.5-2.95-1.25 1.25-1.4 2.8-1.1 3.92 1.39.36 2.47 1.44 2.83 2.83 1.12.3 2.68.15 3.92-1.1a5.25 5.25 0 0 0-2.9-1.49c.39-.58.7-1.25.79-2.03M4.53 19.45s.97-.12 2.04-.81c.15 1.04.65 2.09 1.5 2.94 1.25-1.24 1.4-2.8 1.1-3.92a3.96 3.96 0 0 1-2.83-2.83c-1.12-.3-2.67-.15-3.92 1.1.84.84 1.87 1.34 2.9 1.49-.39.58-.7 1.26-.79 2.03"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/candy.svg����������������������������������0000664�0000000�0000000�00000001017�14753064456�0025225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.54 8.46c1.96 1.96 1.96 5.12 0 7.08s-5.12 1.96-7.07 0-1.97-5.12 0-7.08 5.11-1.96 7.07 0m3.93-3.91s-.97.12-2.04.81a5.24 5.24 0 0 0-1.5-2.94 4.03 4.03 0 0 0-1.1 3.92c1.39.36 2.47 1.44 2.83 2.83 1.12.3 2.68.15 3.92-1.1a5.25 5.25 0 0 0-2.9-1.49c.39-.58.7-1.25.79-2.03M4.53 19.45s.97-.12 2.04-.81c.15 1.04.65 2.09 1.5 2.94 1.25-1.24 1.4-2.8 1.1-3.92a3.94 3.94 0 0 1-2.83-2.83c-1.12-.3-2.68-.15-3.92 1.1.84.84 1.87 1.34 2.9 1.49-.39.58-.7 1.26-.79 2.03"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/candycane.svg������������������������������0000664�0000000�0000000�00000000556�14753064456�0026063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 10a2 2 0 0 1-2 2 2 2 0 0 1-2-2V8c0-.63.1-1.23.27-1.8L10 9.93zm2-8c.74 0 1.44.13 2.09.38L11.97 6c-.83 0-1.53.5-1.82 1.25L7.24 4.34A6 6 0 0 1 12 2m5.76 4.31L14 10.07V8c0-.38-.1-.73-.28-1.03l2.11-3.59a6 6 0 0 1 1.93 2.93m.24 6.78-4 4V12.9l4-4zM18 20a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09l4-4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cannabis-off.svg���������������������������0000664�0000000�0000000�00000000776�14753064456�0026470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.62 13.42-2.12-2.1c2.34-2.38 5.33-3.21 5.33-3.21-.96 2.49-2.1 4.16-3.21 5.31M12 2s-1.14 2.3-1.59 5.21l3.31 3.29c.2-2.05-.11-4.87-1.72-8.5m8.84 20.73 1.27-1.27L2.39 1.73 1.11 3l7.51 7.5C6.5 8.75 4.17 8.11 4.17 8.11 5.7 12.08 7.69 14 9.28 14.97 6.47 14.59 4 16 4 16c2.68 1.19 4.64 1.23 5.94.95-1.41 1.15-1.91 2.86-1.91 2.86 1.97-.72 2.97-1.68 3.47-2.46V22h1v-4.65c.5.78 1.5 1.74 3.47 2.46 0 0-.5-1.71-1.91-2.86.33.05.71.12 1.14.14z"/></svg>��mkdocs-material-9.6.4/material/templates/.icons/material/cannabis.svg�������������������������������0000664�0000000�0000000�00000000720�14753064456�0025705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.5 22v-4.65c-.5.78-1.5 1.74-3.47 2.46 0 0 .5-1.71 1.91-2.86-1.3.28-3.26.24-5.94-.95 0 0 2.47-1.41 5.28-1.03C7.69 14 5.7 12.08 4.17 8.11c0 0 4.5 1.23 6.74 5.03C8.88 8.24 12 2 12 2c2.43 5.47 1.91 9.1 1.12 11.1 2.25-3.77 6.71-4.99 6.71-4.99-1.53 3.97-3.52 5.89-5.11 6.86C17.53 14.59 20 16 20 16c-2.68 1.19-4.64 1.23-5.94.95 1.41 1.15 1.91 2.86 1.91 2.86-1.97-.72-2.97-1.68-3.47-2.46V22z"/></svg>������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/caps-lock.svg������������������������������0000664�0000000�0000000�00000000400�14753064456�0025776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.96 13.71 12 8.29l2.03 5.43M11.14 6 6.43 18h1.93l.96-2.57h5.36l.96 2.57h1.93L12.86 6zM20 2H4c-1.11 0-2 .89-2 2v16a2 2 0 0 0 2 2h16c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2m0 18H4V4h16z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-2-plus.svg�����������������������������0000664�0000000�0000000�00000000661�14753064456�0026020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 16c0-2.4 1.1-4.5 2.7-6H3l1.5-4.5h11l.8 2.5c.6 0 1.2.1 1.7.3L16.9 5c-.2-.6-.8-1-1.4-1h-11c-.7 0-1.2.4-1.4 1L1 11v8c0 .5.5 1 1 1h1c.5 0 1-.5 1-1v-1h4.3c-.2-.6-.3-1.3-.3-2m-3.5-1c-.8 0-1.5-.7-1.5-1.5S3.7 12 4.5 12s1.5.7 1.5 1.5S5.3 15 4.5 15M16 20v-2h-3v-1h1c1.1 0 2-.9 2-2v-1c0-1.1-.9-2-2-2h-3v2h3v1h-1c-1.1 0-2 .9-2 2v3m12-3h-2v2h-2v-2h-2v-2h2v-2h2v2h2z"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-3-plus.svg�����������������������������0000664�0000000�0000000�00000000675�14753064456�0026026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.9 5c-.2-.6-.8-1-1.4-1h-11c-.7 0-1.2.4-1.4 1L1 11v8c0 .5.5 1 1 1h1c.5 0 1-.5 1-1v-1h4.3c-.2-.6-.3-1.3-.3-2 0-2.4 1.1-4.5 2.7-6H3l1.5-4.5h11l.8 2.5c.6 0 1.2.1 1.7.3zM4.5 12c.8 0 1.5.7 1.5 1.5S5.3 15 4.5 15 3 14.3 3 13.5 3.7 12 4.5 12M23 17h-2v2h-2v-2h-2v-2h2v-2h2v2h2zm-8.5-1c.8 0 1.5-1.2 1.5-2 0-1.1-.9-2-2-2h-3v2h3v1h-2v2h2v1h-3v2h3c1.1 0 2-.9 2-2 0-.8-.7-2-1.5-2"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-arrow-left.svg�������������������������0000664�0000000�0000000�00000000560�14753064456�0026756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18c0-3.31 2.69-6 6-6 1.09 0 2.12.3 3 .81V12l-2.08-6c-.2-.58-.76-1-1.42-1h-11c-.66 0-1.22.42-1.42 1L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h6.09c-.05-.33-.09-.66-.09-1M6.5 6.5h11L19 11H5zm0 9.5c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16M18 15v2h4v2h-4v2l-3-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-arrow-right.svg������������������������0000664�0000000�0000000�00000000562�14753064456�0027143�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18c0-3.31 2.69-6 6-6 1.09 0 2.12.3 3 .81V12l-2.08-6c-.2-.58-.76-1-1.42-1h-11c-.66 0-1.22.42-1.42 1L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h6.09c-.05-.33-.09-.66-.09-1M6.5 6.5h11L19 11H5zm0 9.5c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16M19 21v-2h-4v-2h4v-2l3 3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-back.svg�������������������������������0000664�0000000�0000000�00000000412�14753064456�0025570�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6 11 1-4h10l1 4m.92-5c-.21-.6-.78-1-1.42-1h-11c-.64 0-1.21.4-1.42 1L3 12v8a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-2h12v2a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-8zM7 16H5v-2h2zm12 0h-2v-2h2zm-5 0h-4v-2h4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-battery.svg����������������������������0000664�0000000�0000000�00000000251�14753064456�0026343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3v3H1v14h22V6h-3V3h-6v3h-4V3zM3 8h18v10H3zm12 2v2h-2v2h2v2h2v-2h2v-2h-2v-2zM5 12v2h6v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-brake-abs.svg��������������������������0000664�0000000�0000000�00000001615�14753064456�0026525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 12c0 3.31-1.34 6.31-3.5 8.5l-1.08-1.08c1.9-1.92 3.08-4.52 3.08-7.42 0-2.89-1.18-5.5-3.08-7.42L20.5 3.5C22.66 5.69 24 8.69 24 12m-4-2.4V8h-3.2c-.88 0-1.6.72-1.6 1.6v1.6a1.6 1.6 0 0 0 1.6 1.6h1.6v1.6h-3.2V16h3.2c.88 0 1.6-.72 1.6-1.6v-1.6a1.6 1.6 0 0 0-1.6-1.6h-1.6V9.6zM8.42 6c1.05-.63 2.27-1 3.58-1s2.53.37 3.58 1h3.11C17.05 4.16 14.66 3 12 3S6.95 4.16 5.31 6zm4.78 6c.64 0 1.2.56 1.2 1.2v1.2a1.6 1.6 0 0 1-1.6 1.6H9.6V8h3.2a1.6 1.6 0 0 1 1.6 1.6v1.2c0 .64-.56 1.2-1.2 1.2m-.4.8h-1.6v1.6h1.6zm0-3.2h-1.6v1.6h1.6zM4.58 4.58 3.5 3.5C1.34 5.69 0 8.69 0 12s1.34 6.31 3.5 8.5l1.08-1.08C2.68 17.5 1.5 14.9 1.5 12c0-2.89 1.18-5.5 3.08-7.42M7.2 16v-3.2H5.6V16H4V9.6A1.6 1.6 0 0 1 5.6 8h1.6c.88 0 1.6.72 1.6 1.6V16zm0-4.8V9.6H5.6v1.6zm8.38 6.8c-1.05.63-2.27 1-3.58 1a6.93 6.93 0 0 1-3.58-1H5.31c1.64 1.84 4.03 3 6.69 3s5.05-1.16 6.69-3z"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-brake-alert.svg������������������������0000664�0000000�0000000�00000000704�14753064456�0027065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 15h2v2h-2zm0-8h2v6h-2zm1-4a9 9 0 0 0-9 9 9 9 0 0 0 9 9 9 9 0 0 0 9-9 9 9 0 0 0-9-9m0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7m8.5 1.5c2.16-2.19 3.5-5.19 3.5-8.5s-1.34-6.31-3.5-8.5l-1.08 1.08C21.32 6.5 22.5 9.11 22.5 12c0 2.9-1.18 5.5-3.08 7.42zM4.58 19.42C2.68 17.5 1.5 14.9 1.5 12c0-2.89 1.18-5.5 3.08-7.42L3.5 3.5C1.34 5.69 0 8.69 0 12s1.34 6.31 3.5 8.5z"/></svg>������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-brake-fluid-level.svg������������������0000664�0000000�0000000�00000001225�14753064456�0030165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.5 12c0 2.9 1.18 5.5 3.08 7.42L3.5 20.5C1.34 18.31 0 15.31 0 12s1.34-6.31 3.5-8.5l1.08 1.08C2.68 6.5 1.5 9.11 1.5 12M21 12a9 9 0 1 1-18.001-.001A9 9 0 0 1 21 12M5 12c0 .44.05.86.12 1.28.18-.19.34-.28.66-.28.52 0 .61.21 1 .71S7.85 15 8.89 15c1.03 0 1.72-.79 2.11-1.29.26-.34.39-.53.61-.63.1-.05.22-.08.39-.08.5 0 .61.21 1 .71S14.08 15 15.11 15c1.04 0 1.72-.79 2.11-1.29s.48-.71 1-.71c.32 0 .48.09.66.28.07-.42.12-.84.12-1.28 0-3.86-3.14-7-7-7s-7 3.14-7 7m15.5-8.5-1.08 1.08C21.32 6.5 22.5 9.11 22.5 12c0 2.9-1.18 5.5-3.08 7.42l1.08 1.08c2.16-2.19 3.5-5.19 3.5-8.5s-1.34-6.31-3.5-8.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-brake-hold.svg�������������������������0000664�0000000�0000000�00000000615�14753064456�0026705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9m0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7m8.5 1.5c2.2-2.2 3.5-5.2 3.5-8.5s-1.3-6.3-3.5-8.5l-1.1 1.1c1.9 1.9 3.1 4.5 3.1 7.4s-1.2 5.5-3.1 7.4zM4.6 19.4c-1.9-1.9-3.1-4.5-3.1-7.4s1.2-5.5 3.1-7.4L3.5 3.5C1.3 5.7 0 8.7 0 12s1.3 6.3 3.5 8.5zM9 7v10h2v-4h2v4h2V7h-2v4h-2V7z"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-brake-low-pressure.svg�����������������0000664�0000000�0000000�00000001134�14753064456�0030423�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 12c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1m-3 0L7 9v2H3v2h4v2zm4 0 3 3v-2h4v-2h-4V9zm6.5-8.5-1.08 1.08C21.32 6.5 22.5 9.11 22.5 12c0 2.9-1.18 5.5-3.08 7.42l1.08 1.08c2.16-2.19 3.5-5.19 3.5-8.5s-1.34-6.31-3.5-8.5M5.69 9C6.81 6.64 9.22 5 12 5s5.19 1.64 6.32 4h2.18c-1.26-3.5-4.58-6-8.5-6S4.76 5.5 3.5 9zM4.58 4.58 3.5 3.5C1.34 5.69 0 8.69 0 12s1.34 6.31 3.5 8.5l1.08-1.08C2.68 17.5 1.5 14.9 1.5 12c0-2.89 1.18-5.5 3.08-7.42M18.32 15c-1.13 2.36-3.53 4-6.32 4s-5.19-1.64-6.31-4H3.5c1.26 3.5 4.58 6 8.5 6s7.24-2.5 8.5-6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-brake-parking.svg����������������������0000664�0000000�0000000�00000000651�14753064456�0027412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9m0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7m8.5 1.5c2.2-2.2 3.5-5.2 3.5-8.5s-1.3-6.3-3.5-8.5l-1.1 1.1c1.9 1.9 3.1 4.5 3.1 7.4s-1.2 5.5-3.1 7.4zM4.6 19.4c-1.9-1.9-3.1-4.5-3.1-7.4s1.2-5.5 3.1-7.4L3.5 3.5C1.3 5.7 0 8.7 0 12s1.3 6.3 3.5 8.5zM9.5 7v10h2v-4h2a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zm2 2h2v2h-2z"/></svg>���������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-brake-retarder.svg���������������������0000664�0000000�0000000�00000001525�14753064456�0027570�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9m0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7m8.5 1.5c2.2-2.2 3.5-5.2 3.5-8.5s-1.3-6.3-3.5-8.5l-1.1 1.1c1.9 1.9 3.1 4.5 3.1 7.4s-1.2 5.5-3.1 7.4zM4.6 19.4c-1.9-1.9-3.1-4.5-3.1-7.4s1.2-5.5 3.1-7.4L3.5 3.5C1.3 5.7 0 8.7 0 12s1.3 6.3 3.5 8.5zm10.7-8.9c.66 0 1.2.67 1.2 1.5 0 .81-.55 1.5-1.2 1.5-.37 0-.64-.21-.8-.39l-.03-.03-.03-.03L13.38 12l1.09-1.08.03-.03.03-.03c.21-.23.47-.36.77-.36m-6.6 0c.37 0 .64.21.8.38v.04l.06.03L10.62 12l-1.09 1.08-.03.03-.03.04c-.21.22-.47.35-.77.35-.65 0-1.2-.69-1.2-1.5s.55-1.5 1.2-1.5M15.3 9c-.72 0-1.4.31-1.88.85L12 11.25l-1.39-1.37C10.1 9.31 9.42 9 8.7 9 7.21 9 6 10.35 6 12s1.21 3 2.7 3c.72 0 1.4-.31 1.89-.85l1.41-1.4 1.39 1.37c.51.56 1.19.88 1.91.88 1.49 0 2.7-1.35 2.7-3 0-1.67-1.21-3-2.7-3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-brake-temperature.svg������������������0000664�0000000�0000000�00000001122�14753064456�0030306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10h3V8h-3V7c0-.6-.4-1-1-1s-1 .4-1 1v10.3c-.6.3-1 1-1 1.7 0 1.1.9 2 2 2s2-.9 2-2c0-.7-.4-1.4-1-1.7V14h3v-2h-3zm12 2c0 3.31-1.34 6.31-3.5 8.5l-1.08-1.08c1.9-1.92 3.08-4.52 3.08-7.42 0-2.89-1.18-5.5-3.08-7.42L20.5 3.5C22.66 5.69 24 8.69 24 12M1.5 12c0 2.9 1.18 5.5 3.08 7.42L3.5 20.5C1.34 18.31 0 15.31 0 12s1.34-6.31 3.5-8.5l1.08 1.08C2.68 6.5 1.5 9.11 1.5 12M21 12c0 3.53-2.04 6.58-5 8.05v-2.31A7.01 7.01 0 0 0 19 12c0-3.86-3.14-7-7-7s-7 3.14-7 7a7.01 7.01 0 0 0 3 5.74v2.31C5.04 18.58 3 15.53 3 12a9 9 0 0 1 18 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-brake-worn-linings.svg�����������������0000664�0000000�0000000�00000001230�14753064456�0030377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 5c3.86 0 7 3.14 7 7s-3.14 7-7 7-7-3.14-7-7 3.14-7 7-7m0-2a9 9 0 1 0 .001 18.001A9 9 0 0 0 12 3M4.58 4.58 3.5 3.5A12.3 12.3 0 0 0 .861 7.55L2.3 8a10.7 10.7 0 0 1 2.28-3.42M1.71 14.1Q1.5 13.08 1.5 12t.21-2.1L.275 9.46C.098 10.28 0 11.13 0 12s.098 1.72.275 2.54zm21.43-6.55c-.61-1.52-1.51-2.9-2.64-4.05l-1.08 1.08c.97.98 1.74 2.13 2.28 3.42zM.861 16.45C1.47 18 2.37 19.35 3.5 20.5l1.08-1.08A10.7 10.7 0 0 1 2.3 16zm18.559 2.97 1.08 1.08c1.13-1.15 2.03-2.5 2.64-4.05L21.7 16a10.7 10.7 0 0 1-2.28 3.42m2.87-9.52q.21 1.02.21 2.1t-.21 2.1l1.44.44c.17-.82.27-1.67.27-2.54s-.1-1.72-.27-2.54z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-child-seat.svg�������������������������0000664�0000000�0000000�00000000666�14753064456�0026720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 4.5C17 5.9 15.9 7 14.5 7S12 5.9 12 4.5 13.1 2 14.5 2 17 3.1 17 4.5M15 8h-.8c-2.1 0-4.1-1.2-5.1-3.1-.1-.1-.2-.2-.2-.3l-1.8.8c.5 1.4 2.1 3.2 4.4 4.1l-1.8 5-3.9-1.1L3 18.9l2 .5 1.8-3.6 4.5 1.2c1 .2 2-.3 2.4-1.2L16 9.4c.2-.7-.3-1.4-1-1.4m3.9-1-3.4 9.4c-.6 1.6-2.1 2.6-3.7 2.6-.3 0-.7 0-1-.1l-2.9-.8-.9 1.8 2 .5 1.4.4c.5.1 1 .2 1.5.2 2.5 0 4.7-1.5 5.6-3.9L21 7z"/></svg>��������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-clock.svg������������������������������0000664�0000000�0000000�00000001245�14753064456�0025770�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 8c0-3.87-3.13-7-7-7-3.53 0-6.43 2.61-6.92 6H4.5c-.66 0-1.22.42-1.42 1L1 14v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-7.68c2.36-1.13 4-3.53 4-6.32m-18.5.5h4.53c.12 1.76.89 3.34 2.08 4.5H3zm0 9.5c-.83 0-1.5-.67-1.5-1.5S3.67 15 4.5 15s1.5.67 1.5 1.5S5.33 18 4.5 18m11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5m.5-5c-1.39 0-2.56-.5-3.53-1.47S11 9.39 11 8c0-1.36.5-2.54 1.47-3.5.97-1 2.14-1.5 3.53-1.5 1.36 0 2.54.5 3.5 1.5 1 .96 1.5 2.14 1.5 3.5 0 1.39-.5 2.56-1.5 3.53-.96.97-2.14 1.47-3.5 1.47m.5-4.75 2.86 1.69-.75 1.22L15 9V4h1.5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-clutch.svg�����������������������������0000664�0000000�0000000�00000000251�14753064456�0026153�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10 18.84 4 1.86V23l-6-3v-6H5v-4h3V4l6-3v2.3l-4 1.86zM19 10h-4V5.41L12 6.8v10.4l3 1.4V14h4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-cog.svg��������������������������������0000664�0000000�0000000�00000001703�14753064456�0025444�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 5c-.66 0-1.22.42-1.42 1L3 12v8a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h5.3a7 7 0 0 1-.3-2 7 7 0 0 1 3.41-6H5l1.5-4.5h11l1.18 3.53a7 7 0 0 1 1.79.43L18.92 6c-.2-.58-.76-1-1.42-1zM17 12a.26.26 0 0 0-.26.21l-.19 1.32c-.3.13-.59.29-.85.47l-1.24-.5c-.11 0-.24 0-.31.13l-1 1.73c-.06.11-.04.24.06.32l1.06.82a4.2 4.2 0 0 0 0 1l-1.06.82a.26.26 0 0 0-.06.32l1 1.73c.06.13.19.13.31.13l1.24-.5c.26.18.54.35.85.47l.19 1.32c.02.12.12.21.26.21h2c.11 0 .22-.09.24-.21l.19-1.32c.3-.13.57-.29.84-.47l1.23.5c.13 0 .26 0 .33-.13l1-1.73a.26.26 0 0 0-.06-.32l-1.07-.82c.02-.17.04-.33.04-.5s-.01-.33-.04-.5l1.06-.82a.26.26 0 0 0 .06-.32l-1-1.73c-.06-.13-.19-.13-.32-.13l-1.23.5c-.27-.18-.54-.35-.85-.47l-.19-1.32A.236.236 0 0 0 19 12zM6.5 13A1.5 1.5 0 0 1 8 14.5 1.5 1.5 0 0 1 6.5 16 1.5 1.5 0 0 1 5 14.5 1.5 1.5 0 0 1 6.5 13M18 15.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5c-.84 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5"/></svg>�������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-connected.svg��������������������������0000664�0000000�0000000�00000001210�14753064456�0026627�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 14h14l-1.5-4.5h-11zm12.5 5a1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5 1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5m-11 0A1.5 1.5 0 0 0 8 17.5 1.5 1.5 0 0 0 6.5 16 1.5 1.5 0 0 0 5 17.5 1.5 1.5 0 0 0 6.5 19M18.92 9 21 15v8a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1H6v1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-8l2.08-6c.2-.58.77-1 1.42-1h11c.65 0 1.22.42 1.42 1M12 0c2.12 0 4.15.86 5.65 2.35l-1.42 1.42A6.02 6.02 0 0 0 12 2c-1.58 0-3.11.65-4.23 1.77L6.36 2.35A8 8 0 0 1 12 0m0 4c1.06 0 2.07.44 2.82 1.18L13.4 6.6c-.37-.37-.87-.6-1.4-.6-.5 0-1.03.23-1.4.6L9.18 5.18C9.93 4.44 10.94 4 12 4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-convertible.svg������������������������0000664�0000000�0000000�00000000622�14753064456�0027207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16 6-1 .75L17.5 10h-4V8.5H12V10H3c-1.11 0-2 .89-2 2v3h2a3 3 0 0 0 3 3 3 3 0 0 0 3-3h6a3 3 0 0 0 3 3 3 3 0 0 0 3-3h2v-3c0-1.11-.89-2-2-2h-2zM6 13.5A1.5 1.5 0 0 1 7.5 15 1.5 1.5 0 0 1 6 16.5 1.5 1.5 0 0 1 4.5 15 1.5 1.5 0 0 1 6 13.5m12 0a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5"/></svg>��������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-coolant-level.svg����������������������0000664�0000000�0000000�00000000514�14753064456�0027437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 7V5h2V3h-8v2h2v2H1v14h22V7zm2 7.42c-.29-.29-.5-.42-1-.42-.67 0-.79.21-1.29.71S17.33 16 16 16s-2.21-.79-2.71-1.29S12.67 14 12 14c-.22 0-.37.03-.5.08-.28.1-.45.29-.79.63-.5.5-1.38 1.29-2.71 1.29s-2.21-.79-2.71-1.29S4.67 14 4 14c-.5 0-.71.13-1 .42V9h18z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-cruise-control.svg���������������������0000664�0000000�0000000�00000000757�14753064456�0027654�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 15c0 2.6-1.2 4.9-3.1 6.3l-.5-.5-2.1-2.1 1.4-1.4 1.2 1.2c.5-.7.9-1.6 1-2.5H18v-2h1.9c-.2-.9-.5-1.7-1-2.5l-1.2 1.2-1.4-1.4 1.2-1.2c-.7-.5-1.6-.9-2.5-1V11h-2V9.1c-.9.2-1.7.5-2.5 1l3 3c.2 0 .3-.1.5-.1a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2c0-.2 0-.3.1-.5l-3-3c-.5.7-.9 1.6-1 2.5H10v2H8.1c.2.9.5 1.7 1 2.5l1.2-1.2 1.4 1.4-2.6 2.6C7.2 19.9 6 17.6 6 15a8 8 0 0 1 8-8 8 8 0 0 1 8 8M6.7 5.3 3.4 2 2 3.4l3.3 3.3L4 8h4V4z"/></svg>�����������������mkdocs-material-9.6.4/material/templates/.icons/material/car-defrost-front.svg����������������������0000664�0000000�0000000�00000001700�14753064456�0027465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 23c-.3 0-.5-.1-.7-.3-.4-.4-.3-1 .1-1.4.5-.4 1.7-1.8 1.7-2.9 0-.6-.4-1.2-.8-1.9-.5-.8-1.2-1.8-1.2-3 0-2.3 1.3-3.2 1.5-3.3.5-.3 1.1-.1 1.4.3.3.5.1 1.1-.3 1.4 0 0-.5.4-.5 1.6 0 .6.4 1.2.8 1.9.5.8 1.2 1.8 1.2 3 0 2.2-2.1 4.2-2.3 4.4-.4.1-.7.2-.9.2m-3.3-.3c.2-.2 2.3-2.2 2.3-4.4 0-1.2-.6-2.2-1.2-3-.4-.7-.8-1.3-.8-1.9 0-1.2.5-1.6.5-1.6.5-.3.6-.9.3-1.4s-.9-.6-1.4-.3c-.2.1-1.5 1-1.5 3.3 0 1.2.6 2.2 1.2 3 .4.7.8 1.3.8 1.9 0 1.1-1.2 2.5-1.7 2.9-.4.4-.4 1-.1 1.4.2.2.5.3.7.3.4.1.7 0 .9-.2m-4 0c.2-.2 2.3-2.2 2.3-4.4 0-1.2-.6-2.2-1.2-3-.4-.6-.8-1.2-.8-1.9 0-1.2.5-1.6.5-1.6.5-.3.6-.9.3-1.4-.2-.4-.9-.5-1.3-.3-.2.1-1.5 1-1.5 3.3 0 1.2.6 2.2 1.2 3 .4.7.8 1.3.8 1.9 0 1.1-1.2 2.5-1.7 2.9-.4.4-.4 1-.1 1.4.3.3.5.4.8.4.2 0 .5-.1.7-.3M12 3C9.4 3 1 3.3 1 7c0 2.4 1.2 8.4 1.8 11H5v-2h-.6C3.8 13.1 3 8.8 3 7c0-1 4.4-2 9-2s9 1 9 2c0 1.8-.8 6.1-1.4 9H19v2h2.2c.6-2.6 1.8-8.6 1.8-11 0-3.7-8.4-4-11-4"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-defrost-rear.svg�����������������������0000664�0000000�0000000�00000001565�14753064456�0027277�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 18.3c0 2.2-2.1 4.2-2.3 4.4s-.5.3-.7.3c-.3 0-.5-.1-.8-.4-.3-.4-.3-1 .1-1.4.5-.4 1.7-1.8 1.7-2.9 0-.6-.4-1.2-.8-1.9-.6-.8-1.2-1.8-1.2-3 0-2.3 1.3-3.2 1.5-3.3.4-.2 1.1-.1 1.3.3.3.5.2 1.1-.3 1.4 0 0-.5.4-.5 1.6 0 .7.4 1.3.8 1.9.6.8 1.2 1.8 1.2 3m2-4.9c0-1.2.5-1.6.5-1.6.5-.3.6-.9.3-1.4s-.9-.6-1.4-.3c-.2.1-1.5 1-1.5 3.3 0 1.2.6 2.2 1.2 3 .4.7.8 1.3.8 1.9 0 1.1-1.2 2.5-1.7 2.9-.4.4-.4 1-.1 1.4.2.2.5.3.7.3.4.1.7 0 .9-.2s2.3-2.2 2.3-4.4c0-1.2-.6-2.2-1.2-3-.4-.7-.8-1.3-.8-1.9M20 3H4a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h1v-2H4V5h16v11h-1v2h1a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-3.8 10.5c0-1.2.5-1.6.5-1.6.4-.3.6-.9.3-1.4-.3-.4-.9-.6-1.4-.3-.2.1-1.5 1-1.5 3.3 0 1.2.7 2.2 1.2 3 .4.7.8 1.3.8 1.9 0 1.1-1.2 2.5-1.7 2.9-.4.4-.5 1-.1 1.4.2.2.4.3.7.3.2 0 .5-.1.9-.2.2-.2 2.3-2.2 2.3-4.4 0-1.2-.7-2.2-1.2-3-.4-.7-.8-1.3-.8-1.9"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-door-lock-open.svg���������������������0000664�0000000�0000000�00000000650�14753064456�0027524�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 21H11v-5c0-.74-.4-1.39-1-1.74V14c0-1.13-.37-2.16-1-3h11V5h-8.17L7.28 9.55C6.6 9.2 5.82 9 5 9l6-6h10c.27 0 .5.11.71.29.19.21.29.45.29.71zm-3-7h-3v2h3zM7.8 16H3.5v-2.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3v.5h1.3v-.5C7.8 12.1 6.4 11 5 11s-2.8 1.1-2.8 2.5V16c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-door-lock.svg��������������������������0000664�0000000�0000000�00000000644�14753064456�0026570�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.8 17v-1.5C7.8 14.1 6.4 13 5 13s-2.8 1.1-2.8 2.5V17c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3m-1.3 0h-3v-1.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3zM21 3H11l-8 8v.44c.61-.27 1.29-.44 2-.44 2.6 0 4.8 2.06 4.8 4.5v.25c.73.61 1.2 1.53 1.2 2.55V21h11V4c0-.55-.45-1-1-1m-2 13h-3v-2h3zm1-5H5.83l6-6H20z"/></svg>��������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-door.svg�������������������������������0000664�0000000�0000000�00000000216�14753064456�0025635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 14h-3v2h3zm3 7H3V11l8-8h10a1 1 0 0 1 1 1zM11.83 5l-6 6H20V5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-electric-outline.svg�������������������0000664�0000000�0000000�00000000646�14753064456�0030150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.92 2c-.2-.58-.76-1-1.42-1h-11c-.66 0-1.21.42-1.42 1L3 8v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V8zM6.85 3h10.29l1.08 3.11H5.77zM19 13H5V8h14zM7.5 9c.83 0 1.5.67 1.5 1.5S8.33 12 7.5 12 6 11.33 6 10.5 6.67 9 7.5 9m9 0c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5M7 20h4v-2l6 3h-4v2z"/></svg>������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-electric.svg���������������������������0000664�0000000�0000000�00000000623�14753064456�0026466�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.92 2c-.2-.58-.76-1-1.42-1h-11c-.66 0-1.21.42-1.42 1L3 8v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V8zM6.5 12c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12m11 0c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5M5 7l1.5-4.5h11L19 7zm2 13h4v-2l6 3h-4v2z"/></svg>�������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-emergency.svg��������������������������0000664�0000000�0000000�00000001030�14753064456�0026643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 0v3h2V0zM7.88 1.46 6.46 2.87 8.59 5 10 3.58zm8.24 0L14 3.58 15.41 5l2.13-2.12zM12 5a2 2 0 0 0-2 2v1H6.5c-.66 0-1.22.42-1.42 1L3 15v8a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h12v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-8l-2.08-6c-.2-.58-.76-1-1.42-1H14V7a2 2 0 0 0-2-2M6.5 9.5h11L19 14H5zm0 6.5A1.5 1.5 0 0 1 8 17.5 1.5 1.5 0 0 1 6.5 19 1.5 1.5 0 0 1 5 17.5 1.5 1.5 0 0 1 6.5 16m11 0a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-esp.svg��������������������������������0000664�0000000�0000000�00000001453�14753064456�0025465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.31 6C6.95 4.16 9.34 3 12 3s5.05 1.16 6.69 3h-3.11A6.93 6.93 0 0 0 12 5c-1.31 0-2.53.37-3.58 1zm9.09 3.6V8h-3.2a1.6 1.6 0 0 0-1.6 1.6v1.6c0 .88.72 1.6 1.6 1.6h1.6v1.6H9.6V16h3.2a1.6 1.6 0 0 0 1.6-1.6v-1.6c0-.88-.72-1.6-1.6-1.6h-1.6V9.6zm4-1.6h-3.2v8h1.6v-3.2h1.6a1.6 1.6 0 0 0 1.6-1.6V9.6c0-.88-.72-1.6-1.6-1.6m0 3.2h-1.6V9.6h1.6zM8.8 9.6V8H4v8h4.8v-1.6H5.6v-1.6h3.2v-1.6H5.6V9.6zm6.78 8.4c-1.05.63-2.27 1-3.58 1a6.93 6.93 0 0 1-3.58-1H5.31c1.64 1.84 4.03 3 6.69 3s5.05-1.16 6.69-3zM20.5 3.5l-1.08 1.08C21.32 6.5 22.5 9.11 22.5 12c0 2.9-1.18 5.5-3.08 7.42l1.08 1.08c2.16-2.19 3.5-5.19 3.5-8.5s-1.34-6.31-3.5-8.5M4.58 4.58 3.5 3.5C1.34 5.69 0 8.69 0 12s1.34 6.31 3.5 8.5l1.08-1.08C2.68 17.5 1.5 14.9 1.5 12c0-2.89 1.18-5.5 3.08-7.42"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-estate.svg�����������������������������0000664�0000000�0000000�00000000640�14753064456�0026160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h13l3 4h2c1.11 0 2 .89 2 2v3h-2a3 3 0 0 1-3 3 3 3 0 0 1-3-3H9a3 3 0 0 1-3 3 3 3 0 0 1-3-3H1V8c0-1.11.89-2 2-2m-.5 1.5V10h8V7.5zm9.5 0V10h5.14l-1.89-2.5zm-6 6A1.5 1.5 0 0 0 4.5 15 1.5 1.5 0 0 0 6 16.5 1.5 1.5 0 0 0 7.5 15 1.5 1.5 0 0 0 6 13.5m12 0a1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5"/></svg>������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-hatchback.svg��������������������������0000664�0000000�0000000�00000000620�14753064456�0026601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 6H6l-5 6v3h2a3 3 0 0 0 3 3 3 3 0 0 0 3-3h6a3 3 0 0 0 3 3 3 3 0 0 0 3-3h2v-3c0-1.11-.89-2-2-2h-2zM6.5 7.5h4V10h-6zm5.5 0h3.5l1.96 2.5H12zm-6 6A1.5 1.5 0 0 1 7.5 15 1.5 1.5 0 0 1 6 16.5 1.5 1.5 0 0 1 4.5 15 1.5 1.5 0 0 1 6 13.5m12 0a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5"/></svg>����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-info.svg�������������������������������0000664�0000000�0000000�00000000506�14753064456�0025627�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 15h-2v-2h2m1 7v2h-4v-2h1v-2h-1v-2h3v4m-.08-15a1.5 1.5 0 0 0-1.42-1h-11a1.5 1.5 0 0 0-1.42 1L3 11v8a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h5a7 7 0 0 1 7-7 6.84 6.84 0 0 1 3 .68V11M6.5 15A1.5 1.5 0 1 1 8 13.5 1.5 1.5 0 0 1 6.5 15M5 10l1.5-4.5h11L19 10Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-key.svg��������������������������������0000664�0000000�0000000�00000000751�14753064456�0025466�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 0C7.3 0 6 1.3 6 3s1.3 3 3 3c1.3 0 2.4-.8 2.8-2H14v2h2V4h2V2h-6.2C11.4.8 10.3 0 9 0m0 2c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1M6.5 8c-.7 0-1.2.4-1.4 1L3 15v8c0 .6.4 1 1 1h1c.6 0 1-.4 1-1v-1h12v1c0 .6.4 1 1 1h1c.6 0 1-.4 1-1v-8l-2.1-6c-.2-.6-.8-1-1.4-1zm0 1.5h11L19 14H5zm0 6.5c.8 0 1.5.7 1.5 1.5S7.3 19 6.5 19 5 18.3 5 17.5 5.7 16 6.5 16m11 0c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5-1.5-.7-1.5-1.5.7-1.5 1.5-1.5"/></svg>�����������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-lifted-pickup.svg����������������������0000664�0000000�0000000�00000002155�14753064456�0027436�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18 14 .79.1-.02.23.47.17.15-.16c.5.26.93.66 1.21 1.16l-.17.17.2.45.23-.02c.09.29.14.59.14.9l-.1.78-.24-.01-.19.47.19.15c-.27.51-.66.93-1.16 1.21l-.17-.18-.46.2.02.24c-.28.09-.58.14-.89.14l-.79-.1.01-.25-.46-.18-.16.19c-.5-.27-.93-.66-1.21-1.16l.18-.18-.2-.46-.24.02c-.08-.28-.13-.57-.13-.88l.11-.8.23.01.19-.46-.18-.15c.27-.51.65-.92 1.15-1.21l.17.17.46-.2-.02-.22c.28-.09.58-.14.89-.14m0 1.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5M6 14l.79.1-.02.23.47.17.15-.16c.5.26.93.66 1.21 1.16l-.17.17.2.45.23-.02c.09.29.14.59.14.9l-.1.78-.25-.01-.18.47.19.15c-.27.51-.66.93-1.16 1.21l-.17-.18-.46.2.02.24c-.28.09-.58.14-.89.14l-.79-.1.01-.25-.46-.18-.16.19c-.5-.27-.93-.66-1.21-1.16l.18-.18-.2-.46-.24.02C3.05 17.6 3 17.31 3 17l.11-.8.23.01.19-.46-.18-.15c.27-.51.65-.92 1.15-1.21l.17.17.46-.2-.02-.22c.28-.09.58-.14.89-.14m0 1.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5M16 6l3 4h2c1.11 0 2 .89 2 2v3h-2c0-1.66-1.34-3-3-3s-3 1.34-3 3H9c0-1.66-1.34-3-3-3s-3 1.34-3 3H1v-5h9.5V6zm-4 1.5V10h5.46L15.5 7.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-light-alert.svg������������������������0000664�0000000�0000000�00000000560�14753064456�0027110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 7v6h-2V7zm-2 10h2v-2h-2zM1 9v2h4c.1-.7.1-1.4.2-2zm4 4H1v2h4.2c-.1-.6-.1-1.3-.2-2m.9-6.6c.1-.6.4-1 .6-1.4H1v2h4.7c.1-.2.1-.4.2-.6M1 17v2h5.6c-.4-.6-.7-1.2-.9-2zm9-12.2c-4 0-4 14.4 0 14.4s9-2.7 9-7.2-5-7.2-9-7.2m.1 12.4C9.7 16.8 9 15 9 12s.7-4.8 1.1-5.2C13 6.9 17 8.7 17 12s-4 5.1-6.9 5.2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-light-dimmed.svg�����������������������0000664�0000000�0000000�00000000536�14753064456�0027243�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 4.8c-4 0-4 14.4 0 14.4s9-2.7 9-7.2-5-7.2-9-7.2m.1 12.4C12.7 16.8 12 15 12 12s.7-4.8 1.1-5.2C16 6.9 20 8.7 20 12s-4.1 5.1-6.9 5.2M8 10.5c0 .5-.1 1-.1 1.5v.6L2.4 14l-.5-1.9zM2 7l7.4-1.9c-.2.3-.4.7-.5 1.2-.1.3-.2.7-.3 1.1L2.5 8.9zm6.2 8.5c.1.7.3 1.4.5 1.9L2.4 19l-.5-1.9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-light-fog.svg��������������������������0000664�0000000�0000000�00000000474�14753064456�0026560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 4.8c-4 0-4 14.4 0 14.4s9-2.7 9-7.2-5-7.2-9-7.2m.1 12.4C12.7 16.8 12 15 12 12s.7-4.8 1.1-5.2C16 6.9 20 8.7 20 12s-4 5.1-6.9 5.2M6 8v3h2v2H6v3h2.4c.2.7.4 1.4.6 2H6v3H4v-3H2v-2h2v-3H2v-2h2V8H2V6h2V3h2v3h3c0 .1-.1.2-.1.4-.2.5-.4 1-.5 1.6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-light-high.svg�������������������������0000664�0000000�0000000�00000000522�14753064456�0026716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 4.8c-4 0-4 14.4 0 14.4s9-2.7 9-7.2-5-7.2-9-7.2m.1 12.4C12.7 16.8 12 15 12 12s.7-4.8 1.1-5.2C16 6.9 20 8.7 20 12s-4 5.1-6.9 5.2M2 5h7.5c-.2.4-.5.8-.6 1.4-.1.2-.1.4-.2.6H2zm6 6H2V9h6.2c-.1.6-.1 1.3-.2 2m.7 6c.2.8.5 1.4.9 2H2.1v-2zm-.5-2H2v-2h6c.1.7.1 1.4.2 2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-limousine.svg��������������������������0000664�0000000�0000000�00000000506�14753064456�0026700�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m1 6 1.5 1.5L1 9l1.5 1.5L1 12l1.5 1.5L1 15h14a3 3 0 0 0 3 3 3 3 0 0 0 3-3h2v-3c0-1.11-.89-2-2-2h-2l-3-4zm3.62 1.5h5.88V10H4.12l-1-1zm7.38 0h3.5l1.96 2.5H12zm6 6a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-multiple.svg���������������������������0000664�0000000�0000000�00000001077�14753064456�0026533�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8 11 1.5-4.5h9L20 11m-1.5 5a1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5 1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5m-9 0A1.5 1.5 0 0 1 8 14.5 1.5 1.5 0 0 1 9.5 13a1.5 1.5 0 0 1 1.5 1.5A1.5 1.5 0 0 1 9.5 16M19.92 6c-.21-.6-.78-1-1.42-1h-9c-.64 0-1.21.4-1.42 1L6 12v8a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h10v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-8zm-5-3c-.21-.6-.78-1-1.42-1h-9c-.64 0-1.21.4-1.42 1L1 9v8a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-4.09A1.49 1.49 0 0 1 3.1 11c.22-.6.77-1 1.4-1h.07l.7-2H3l1.5-4.5h10.59z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-off.svg��������������������������������0000664�0000000�0000000�00000000702�14753064456�0025444�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.5 19.85 6.41 5.76l-4-4L1.11 3l3.46 3.46L3 11v8a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h10.11l4.73 4.73 1.27-1.27zM6.5 15A1.5 1.5 0 0 1 5 13.5 1.5 1.5 0 0 1 6.5 12 1.5 1.5 0 0 1 8 13.5 1.5 1.5 0 0 1 6.5 15M5 10l.78-2.33L8.11 10zm12.5-4.5L19 10h-5.8l2.92 2.92c.38-.75 1.25-1.06 2-.71.75.36 1.06 1.26.71 2-.15.29-.4.56-.71.71L21 17.8V11l-2.08-6c-.21-.6-.78-1-1.42-1H7.2l1.5 1.5z"/></svg>��������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-outline.svg����������������������������0000664�0000000�0000000�00000000567�14753064456�0026362�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.9 6c-.2-.6-.8-1-1.4-1h-11c-.7 0-1.2.4-1.4 1L3 12v8c0 .5.5 1 1 1h1c.6 0 1-.5 1-1v-1h12v1c0 .5.5 1 1 1h1c.5 0 1-.5 1-1v-8zM6.8 7h10.3l1.1 3H5.8zM19 17H5v-5h14zM7.5 13c.8 0 1.5.7 1.5 1.5S8.3 16 7.5 16 6 15.3 6 14.5 6.7 13 7.5 13m9 0c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5-1.5-.7-1.5-1.5.7-1.5 1.5-1.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-parking-lights.svg���������������������0000664�0000000�0000000�00000001021�14753064456�0027610�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.3 9.2C8.1 9.6 9 10.5 9 12s-.9 2.4-1.7 2.8c-.4-1.4-.4-4.2 0-5.6M6.5 7c-2 0-2 10 0 10s4.5-1.9 4.5-5-2.5-5-4.5-5m10.2 2.2c.3 1.4.3 4.2 0 5.6-.8-.4-1.7-1.3-1.7-2.8s.9-2.4 1.7-2.8m.8-2.2c-2 0-4.5 1.9-4.5 5s2.5 5 4.5 5 2-10 0-10M4.9 6.2 2.5 4.6 1.4 6.3 4 8c.2-.7.5-1.4.9-1.8M20 8l2.6-1.7-1.1-1.7-2.4 1.6c.3.4.7 1 .9 1.8M4 16l-2.6 1.7 1.1 1.7 2.4-1.6c-.3-.4-.7-1-.9-1.8m16.5-5v2H24v-2zm-1.4 6.8 2.4 1.6 1.1-1.7L20 16c-.2.7-.5 1.4-.9 1.8M3.5 12v-1H0v2h3.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-pickup.svg�����������������������������0000664�0000000�0000000�00000000602�14753064456�0026164�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 6h-5.5v4H1v5h2a3 3 0 0 0 3 3 3 3 0 0 0 3-3h6a3 3 0 0 0 3 3 3 3 0 0 0 3-3h2v-3c0-1.11-.89-2-2-2h-2zm-4 1.5h3.5l1.96 2.5H12zm-6 6A1.5 1.5 0 0 1 7.5 15 1.5 1.5 0 0 1 6 16.5 1.5 1.5 0 0 1 4.5 15 1.5 1.5 0 0 1 6 13.5m12 0a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5"/></svg>������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-search-outline.svg���������������������0000664�0000000�0000000�00000001065�14753064456�0027617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.29 19H6v1c0 .5-.4 1-1 1H4c-.5 0-1-.5-1-1v-8l2.1-6c.2-.6.7-1 1.4-1h11c.6 0 1.2.4 1.4 1l2.01 5.74a6.54 6.54 0 0 0-2.73-1.79L17.1 7H6.8l-1 3h8.11c-1.12.4-2.1 1.1-2.83 2H5v5h4.68c.1.71.32 1.38.61 2M6 14.5c0 .8.7 1.5 1.5 1.5S9 15.3 9 14.5 8.3 13 7.5 13 6 13.7 6 14.5m10.11-2.89c-2.5 0-4.5 2-4.5 4.5s2 4.5 4.5 4.5c.89 0 1.69-.25 2.39-.68L21.61 23 23 21.61l-3.08-3.11c.44-.68.69-1.5.69-2.39 0-2.5-2-4.5-4.5-4.5m0 2c1.39 0 2.5 1.12 2.5 2.5s-1.11 2.5-2.5 2.5-2.5-1.11-2.5-2.5 1.12-2.5 2.5-2.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-search.svg�����������������������������0000664�0000000�0000000�00000001076�14753064456�0026144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.61 16.11c0-2.08.98-3.92 2.49-5.11H5l1.5-4.5h11l1.22 3.66c.84.37 1.58.91 2.19 1.58L18.92 6c-.2-.58-.76-1-1.42-1h-11c-.66 0-1.22.42-1.42 1L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h4.29c-.43-.87-.68-1.85-.68-2.89M6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16m14.21 4.7-.01.01zm-4.6-9.09c2.5 0 4.5 2 4.5 4.5 0 .89-.25 1.71-.69 2.39L23 21.61 21.61 23l-3.11-3.07c-.7.43-1.5.68-2.39.68-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5m0 2a2.5 2.5 0 1 0 2.5 2.5c0-1.39-1.11-2.5-2.5-2.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-seat-cooler.svg������������������������0000664�0000000�0000000�00000001110�14753064456�0027101�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.8 10.2-1.4.4-1.2-.7V8.2l1.2-.7 1.4.4.3-1.1-1.1-.3.3-1.1-1.1-.3-.4 1.4-1.2.7-1.5-.9V5l1-1-.8-.8-.8.8-.8-.8-.8.8 1 1v1.3l-1.5.9-1.2-.7-.3-1.4-1.1.3.3 1.1-1.1.2.3 1.1 1.4-.4 1.2.7v1.7l-1.2.7-1.4-.4-.3 1.3 1.1.3-.3 1 1.1.3.4-1.4 1.2-.7 1.5.9v1.3l-1 1 .8.8.8-.8.8.8.8-.8-1-1v-1.3l1.5-.9 1.2.7.4 1.4 1.1-.3-.4-1.1 1.1-.3zm-6.8-2 1.5-.9 1.5.9v1.7l-1.5.9-1.5-.9zM5 18S2 10 2 6s2-4 2-4h1s1 0 1 1-1 1-1 3 3 4 3 7-3 5-3 5m10-1c1.1 0 2 .9 2 2v1c0 1.1-.9 2-2 2H9c-2 0-3-1.8-3-1.8-.2-.2-.3-.6 0-.8 0 0 3-2.5 4-2.5h5Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-seat-heater.svg������������������������0000664�0000000�0000000�00000000624�14753064456�0027077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 18S2 10 2 6s2-4 2-4h1s1 0 1 1-1 1-1 3 3 4 3 7-3 5-3 5m10-1c1.1 0 2 .9 2 2v1c0 1.1-.9 2-2 2H9c-2 0-3-1.8-3-1.8-.2-.2-.3-.6 0-.8 0 0 3-2.5 4-2.5h5M13.7 3.4l-1.4 3.4 1.4 3.4-2 4.8-1.7-1.4 1.4-3.4L10 6.8 12 2zm4.2 0-1.4 3.4 1.4 3.4-2 4.8-1.7-1.4 1.4-3.4-1.4-3.4 2-4.8zm4.1 0-1.4 3.4 1.4 3.4-2 4.8-1.7-1.4 1.4-3.4-1.4-3.4 2-4.8z"/></svg>������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-seat.svg�������������������������������0000664�0000000�0000000�00000000341�14753064456�0025625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 18S4 10 4 6s2-4 2-4h1s1 0 1 1-1 1-1 3 3 4 3 7-3 5-3 5m5-1c-1 0-4 2.5-4 2.5-.3.2-.2.5 0 .8 0 0 1 1.8 3 1.8h6c1.1 0 2-.9 2-2v-1c0-1.1-.9-2-2-2h-5Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-select.svg�����������������������������0000664�0000000�0000000�00000000574�14753064456�0026160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5 13 1.5-4.5h11L19 13m-1.5 5c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5m-11 0c-.8 0-1.5-.7-1.5-1.5S5.7 15 6.5 15s1.5.7 1.5 1.5S7.3 18 6.5 18M18.9 8c-.2-.6-.8-1-1.4-1h-11c-.7 0-1.2.4-1.4 1L3 14v8c0 .6.4 1 1 1h1c.6 0 1-.4 1-1v-1h12v1c0 .6.4 1 1 1h1c.6 0 1-.4 1-1v-8M8 1l4 4.5L16 1Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-settings.svg���������������������������0000664�0000000�0000000�00000000707�14753064456�0026537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 22h2v2h-2m-4-2h2v2h-2m-4-2h2v2H7M5 11l1.5-4.5h11L19 11m-1.5 5a1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5 1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5m-11 0A1.5 1.5 0 0 1 5 14.5 1.5 1.5 0 0 1 6.5 13 1.5 1.5 0 0 1 8 14.5 1.5 1.5 0 0 1 6.5 16M18.92 6c-.2-.58-.76-1-1.42-1h-11c-.66 0-1.22.42-1.42 1L3 12v8a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h12v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-8Z"/></svg>���������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-shift-pattern.svg����������������������0000664�0000000�0000000�00000000273�14753064456�0027465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 5H4V2h4zM4 22h4v-3H4zM14 2h-4v3h4zm-4 20h4v-3h-4zm6-20v3h4V2zm1 9h-4V7h-2v4H7V7H5v10h2v-4h4v4h2v-4h6V7h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-side.svg�������������������������������0000664�0000000�0000000�00000000656�14753064456�0025626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16 6 3 4h2c1.11 0 2 .89 2 2v3h-2a3 3 0 0 1-3 3 3 3 0 0 1-3-3H9a3 3 0 0 1-3 3 3 3 0 0 1-3-3H1v-3c0-1.11.89-2 2-2l3-4zm-5.5 1.5H6.75L4.86 10h5.64zm1.5 0V10h5.14l-1.89-2.5zm-6 6A1.5 1.5 0 0 0 4.5 15 1.5 1.5 0 0 0 6 16.5 1.5 1.5 0 0 0 7.5 15 1.5 1.5 0 0 0 6 13.5m12 0a1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5"/></svg>����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-speed-limiter.svg����������������������0000664�0000000�0000000�00000001112�14753064456�0027431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 15c0 2.6-1.2 4.9-3.1 6.3l-.5-.5-2.1-2.1 1.4-1.4 1.2 1.2c.5-.7.9-1.6 1-2.5H14v-2h1.9c-.2-.9-.5-1.7-1-2.5l-1.2 1.2-1.4-1.4 1.2-1.2c-.7-.5-1.6-.9-2.5-1V11H9V9.1c-.9.2-1.7.5-2.5 1l3 3c.2 0 .3-.1.5-.1a2 2 0 1 1 0 4c-1.11 0-2-.89-2-2 0-.2 0-.3.1-.5l-3-3c-.5.7-.9 1.6-1 2.5H6v2H4.1c.2.9.5 1.7 1 2.5l1.2-1.2 1.4 1.4-2.6 2.6C3.2 19.9 2 17.6 2 15c0-4.42 3.58-8 8-8s8 3.58 8 8m5-10c0-1.66-1.34-3-3-3s-3 1.34-3 3c0 1.3.84 2.4 2 2.82V11h2V7.82C22.16 7.4 23 6.3 23 5m-3 1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-sports.svg�����������������������������0000664�0000000�0000000�00000000656�14753064456�0026234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8.5H7L4 11H3c-1.11 0-2 .89-2 2v3h2.17c.43 1.2 1.56 2 2.83 2s2.4-.8 2.82-2h6.35c.43 1.2 1.56 2 2.83 2s2.4-.8 2.82-2H23v-1c0-1.11-1.03-1.47-2-2zM5.25 12l2.25-2h4l4 2zM6 13.5A1.5 1.5 0 0 1 7.5 15 1.5 1.5 0 0 1 6 16.5 1.5 1.5 0 0 1 4.5 15 1.5 1.5 0 0 1 6 13.5m12 0a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5"/></svg>����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-tire-alert.svg�������������������������0000664�0000000�0000000�00000000510�14753064456�0026737�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 13h2v2h-2zm0-8h2v6h-2zm6-.24c1.86 1.43 3 3.85 3 6.24a8 8 0 0 1-4.14 7H8.14A8 8 0 0 1 4 11c0-2.39 1.09-4.83 3-6.24V2H5v1.86C3.15 5.68 2 8.2 2 11s1.15 5.32 3 7.14V22h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-3.86c1.85-1.82 3-4.34 3-7.14s-1.15-5.32-3-7.14V2h-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-traction-control.svg�������������������0000664�0000000�0000000�00000001127�14753064456�0030175�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 11h1c.3 0 .5-.2.5-.5V9h8v1.5c0 .3.2.5.5.5h1c.3 0 .5-.2.5-.5V6l-1.4-4.3c-.1-.4-.5-.7-.9-.7h-7.3c-.4 0-.8.3-.9.7L9 6v4.5c0 .3.2.5.5.5m1.8-9h7.3l.9 3h-9.1zm.7 21h-2c0-.8-1.9-1.5-3.4-2.1C4.5 20.1 2 19.2 2 17c0-2.3 2.3-2.9 4.2-3.5C7.9 13.1 9 12.7 9 12h2c0 2.3-2.3 2.9-4.2 3.5-1.7.4-2.8.8-2.8 1.5 0 .8 1.9 1.5 3.4 2.1 2.1.8 4.6 1.7 4.6 3.9m10 0h-2c0-.8-1.9-1.5-3.4-2.1-2.1-.8-4.6-1.7-4.6-3.9 0-2.3 2.3-2.9 4.2-3.5 1.6-.5 2.8-.8 2.8-1.5h2c0 2.3-2.3 2.9-4.2 3.5-1.6.4-2.8.8-2.8 1.5 0 .8 1.9 1.5 3.4 2.1 2.1.8 4.6 1.7 4.6 3.9"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-turbocharger.svg�����������������������0000664�0000000�0000000�00000001343�14753064456�0027363�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 13v2h-3.68c.43-.91.68-1.92.68-3 0-3.86-3.14-7-7-7H2V3h10a9 9 0 0 1 9 9c0 .34-.03.67-.06 1zm-10 6c-3.86 0-7-3.14-7-7 0-1.07.25-2.09.69-3H2v2h1.06c-.03.33-.06.66-.06 1a9 9 0 0 0 9 9h10v-2zm4.86-6.8c-.93.74-2.14.27-2.86-.15V12c2.79-1.69 1.39-4.11 1.39-4.11s-1.06-1.85-.78 0c.17 1.18-.85 1.99-1.57 2.41l-.04-.02C12.93 7 10.13 7 10.13 7S8 7 9.74 7.69c1.11.44 1.3 1.73 1.31 2.56l-.05.03c-2.86-1.58-4.26.84-4.26.84s-1.07 1.85.4.68c.93-.73 2.14-.26 2.86.15V12c-2.79 1.7-1.39 4.12-1.39 4.12s1.06 1.85.79-.01c-.18-1.17.85-1.98 1.57-2.41l.03.03C11.07 17 13.87 17 13.87 17s2.13 0 .39-.69c-1.11-.44-1.3-1.73-1.31-2.56l.05-.02c2.86 1.58 4.26-.85 4.26-.85s1.07-1.84-.4-.68"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-wash.svg�������������������������������0000664�0000000�0000000�00000001224�14753064456�0025634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5 13 1.5-4.5h11L19 13m-1.5 5a1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5 1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5m-11 0A1.5 1.5 0 0 1 5 16.5 1.5 1.5 0 0 1 6.5 15 1.5 1.5 0 0 1 8 16.5 1.5 1.5 0 0 1 6.5 18M18.92 8c-.2-.58-.76-1-1.42-1h-11c-.66 0-1.22.42-1.42 1L3 14v8a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h12v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-8M7 5a1.5 1.5 0 0 0 1.5-1.5C8.5 2.5 7 .8 7 .8S5.5 2.5 5.5 3.5A1.5 1.5 0 0 0 7 5m5 0a1.5 1.5 0 0 0 1.5-1.5c0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7A1.5 1.5 0 0 0 12 5m5 0a1.5 1.5 0 0 0 1.5-1.5c0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7A1.5 1.5 0 0 0 17 5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-windshield-outline.svg�����������������0000664�0000000�0000000�00000000572�14753064456�0030506�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.63 15.5-2.42-9.65a1 1 0 0 0-1.07-.75c-1.34.14-5 .4-7.14.4s-5.8-.26-7.14-.4a1 1 0 0 0-1.07.75L1.37 15.5a1.5 1.5 0 0 0 1.18 1.86A61.5 61.5 0 0 0 12 18a61.5 61.5 0 0 0 9.45-.64 1.5 1.5 0 0 0 1.18-1.86M12 16a63 63 0 0 1-8.56-.5L5.5 7.18c1.5.14 4.66.32 6.5.32s5-.18 6.5-.32l2.06 8.32A63 63 0 0 1 12 16"/></svg>��������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-windshield.svg�������������������������0000664�0000000�0000000�00000000427�14753064456�0027030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.63 15.5-2.42-9.65a1 1 0 0 0-1.07-.75c-1.34.14-5 .4-7.14.4s-5.8-.26-7.14-.4a1 1 0 0 0-1.07.75L1.37 15.5a1.5 1.5 0 0 0 1.18 1.86A61.5 61.5 0 0 0 12 18a61.5 61.5 0 0 0 9.45-.64 1.5 1.5 0 0 0 1.18-1.86"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-wireless.svg���������������������������0000664�0000000�0000000�00000001125�14753064456�0026527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 5c-1.1 0-2 .9-2 2v1H6.5c-.66 0-1.22.42-1.42 1L3 15v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-6c-.2-.58-.76-1-1.42-1H14V7a2 2 0 0 0-2-2M6.5 9.5h11L19 14H5zm0 6.5c.83 0 1.5.67 1.5 1.5S7.33 19 6.5 19 5 18.33 5 17.5 5.67 16 6.5 16m11 0c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5M16.2 3.4C15 2.3 13.5 1.7 12 1.7s-3 .6-4.2 1.7L7 2.6C8.4 1.2 10.2.5 12 .5s3.6.7 5 2.1zm-.9.8-.8.8c-.7-.7-1.6-1-2.5-1s-1.8.3-2.5 1l-.8-.8c.9-.9 2.1-1.4 3.3-1.4s2.4.5 3.3 1.4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car-wrench.svg�����������������������������0000664�0000000�0000000�00000001105�14753064456�0026156�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.96 16.45c.01-.15.04-.3.04-.45v.5zM11 16c0 .71.15 1.39.42 2H6v1c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1v-8l2.08-6c.2-.58.76-1 1.42-1h11c.66 0 1.22.42 1.42 1L21 11v5c0-2.76-2.24-5-5-5s-5 2.24-5 5m-3-2.5c0-.83-.67-1.5-1.5-1.5S5 12.67 5 13.5 5.67 15 6.5 15 8 14.33 8 13.5M19 10l-1.5-4.5h-11L5 10zm3.87 11.19-4.11-4.11c.41-1.04.18-2.26-.68-3.11-.9-.91-2.25-1.09-3.34-.59l1.94 1.94-1.35 1.36-1.99-1.95c-.54 1.09-.29 2.44.59 3.35a2.91 2.91 0 0 0 3.12.68l4.11 4.1c.18.19.45.19.63 0l1.04-1.03c.22-.18.22-.5.04-.64"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/car.svg������������������������������������0000664�0000000�0000000�00000000643�14753064456�0024700�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5 11 1.5-4.5h11L19 11m-1.5 5a1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5 1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5m-11 0A1.5 1.5 0 0 1 5 14.5 1.5 1.5 0 0 1 6.5 13 1.5 1.5 0 0 1 8 14.5 1.5 1.5 0 0 1 6.5 16M18.92 6c-.2-.58-.76-1-1.42-1h-11c-.66 0-1.22.42-1.42 1L3 12v8a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h12v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-8z"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/carabiner.svg������������������������������0000664�0000000�0000000�00000001074�14753064456�0026060�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 17.5c0 .83-.67 1.5-1.5 1.5S5 18.33 5 17.5 5.67 16 6.5 16s1.5.67 1.5 1.5M18 5.59C17.79 3.54 16.18 2 14.24 2H8.88C6.95 2 5.36 3.5 5.15 5.53L5 6.59C4.92 7.34 5.5 8 6.24 8c.63 0 1.15-.47 1.23-1.09l.14-1.09c.07-.75.62-1.32 1.27-1.32h5.36c.65 0 1.2.57 1.26 1.32l1 11.06c.09.86-.5 1.62-1.25 1.62l-5.21-.68a3.46 3.46 0 0 1-1.24 2.36l6.13.82h.32c1.02 0 2.01-.44 2.71-1.22A4.22 4.22 0 0 0 19 16.65zm-6.34 2.35c-.58-.37-1.35-.19-1.72.4L6.39 14h.11c.88 0 1.68.34 2.3.88l3.26-5.22c.37-.58.19-1.35-.4-1.72"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/caravan.svg��������������������������������0000664�0000000�0000000�00000000373�14753064456�0025546�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2a3 3 0 0 0 3 3 3 3 0 0 0 3-3h8v-2h-2V9a2 2 0 0 0-2-2zm0 2h5v3H5zm8 0h4v3h-4zm-3 7a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-account-details-outline.svg�����������0000664�0000000�0000000�00000000551�14753064456�0031574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 3H2c-1.09.04-1.96.91-2 2v14c.04 1.09.91 1.96 2 2h20c1.09-.04 1.96-.91 2-2V5a2.074 2.074 0 0 0-2-2m0 16H2V5h20zm-8-2v-1.25c0-1.66-3.34-2.5-5-2.5s-5 .84-5 2.5V17zM9 7a2.5 2.5 0 0 0-2.5 2.5A2.5 2.5 0 0 0 9 12a2.5 2.5 0 0 0 2.5-2.5A2.5 2.5 0 0 0 9 7m5 0v1h6V7zm0 2v1h6V9zm0 2v1h4v-1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-account-details-star-outline.svg������0000664�0000000�0000000�00000000740�14753064456�0032543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20 22.09 2.45 1.49-.65-2.81 2.2-1.88-2.89-.25L20 16l-1.13 2.64-2.87.25 2.18 1.88-.68 2.81zM14.08 21H2a2.074 2.074 0 0 1-2-2V5c.04-1.09.91-1.96 2-2h20c1.09.04 1.96.91 2 2v10.53c-.58-.53-1.25-.92-2-1.19V5H2v14h12.08c-.05.33-.08.66-.08 1s.03.68.08 1M14 17H4v-1.25c0-1.66 3.34-2.5 5-2.5s5 .84 5 2.5zm0-6h4v1h-4zM9 7C7.63 7 6.5 8.13 6.5 9.5S7.63 12 9 12s2.5-1.13 2.5-2.5S10.37 7 9 7m5 2h6v1h-6zm0-2h6v1h-6z"/></svg>��������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-account-details-star.svg��������������0000664�0000000�0000000�00000000674�14753064456�0031074�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20 22.09 2.45 1.49-.65-2.81 2.2-1.88-2.89-.25L20 16l-1.13 2.64-2.87.25 2.18 1.88-.68 2.81zM14.08 21H2c-1.05 0-2-.95-2-2V5c0-1.05.95-2 2-2h20c1.05 0 2 .95 2 2v10.53A5.97 5.97 0 0 0 20 14c-3.31 0-6 2.69-6 6 0 .34.03.68.08 1M8 13.91C6 13.91 2 15 2 17v1h12v-1c0-2-4-3.09-6-3.09M8 6C6.35 6 5 7.35 5 9s1.35 3 3 3 3-1.35 3-3-1.35-3-3-3m13 4h-7v1h7zm1-2h-8v1h8zm0-2h-8v1h8z"/></svg>��������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-account-details.svg�������������������0000664�0000000�0000000�00000000463�14753064456�0030121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3h20c1.05 0 2 .95 2 2v14c0 1.05-.95 2-2 2H2c-1.05 0-2-.95-2-2V5c0-1.05.95-2 2-2m12 3v1h8V6zm0 2v1h8V8zm0 2v1h7v-1zm-6 3.91C6 13.91 2 15 2 17v1h12v-1c0-2-4-3.09-6-3.09M8 6a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-account-mail-outline.svg��������������0000664�0000000�0000000�00000000650�14753064456�0031071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 3H2a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m0 16H2V5h20zM21 6h-7v5h7zm-1 2-2.5 1.75L15 8V7l2.5 1.75L20 7zM9 12a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m0-4a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m6 8.59c0-2.5-3.97-3.59-6-3.59s-6 1.09-6 3.59V18h12zM5.5 16c.72-.5 2.2-1 3.5-1s2.77.5 3.5 1z"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-account-mail.svg����������������������0000664�0000000�0000000�00000000427�14753064456�0027416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 8V7l-3 2-3-2v1l3 2m4-7H2a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2M8 6a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3m6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1m8-5h-8V6h8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-account-phone-outline.svg�������������0000664�0000000�0000000�00000001022�14753064456�0031252�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 3H2a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m0 16H2V5h20zm-3-1 2-2-1.5-2h-1.65c-.22-.63-.35-1.3-.35-2s.13-1.37.35-2h1.65L21 8l-2-2c-1.3 1-2.27 2.38-2.72 4-.18.64-.28 1.31-.28 2s.1 1.36.28 2c.45 1.61 1.42 3 2.72 4M9 12a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m0-4a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m6 8.59c0-2.5-3.97-3.59-6-3.59s-6 1.09-6 3.59V18h12zM5.5 16c.72-.5 2.2-1 3.5-1s2.77.5 3.5 1z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-account-phone.svg���������������������0000664�0000000�0000000�00000000625�14753064456�0027605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 3H2a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2M8 6a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3m6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1zm3.85-4h1.65l1.5 2-2 2c-1.3-1-2.27-2.39-2.72-4-.18-.64-.28-1.31-.28-2s.1-1.36.28-2c.45-1.62 1.42-3 2.72-4l2 2-1.5 2h-1.65c-.22.63-.35 1.3-.35 2s.13 1.37.35 2"/></svg>�����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-bulleted-off-outline.svg��������������0000664�0000000�0000000�00000000502�14753064456�0031061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.59 20.87-1.42 1.42L16.88 20H4a2 2 0 0 1-2-2V6c0-.26.05-.5.14-.74l-.97-.97 1.42-1.42L3.73 4zM6.54 4H20a2 2 0 0 1 2 2v12c0 .41-.13.8-.34 1.12L20 17.46V6H8.54zM4 18h10.88l-3-3H10v-1.88L7.88 11H6V9.12l-2-2zm14-3h-.46l-2-2H18zm0-4h-4.46l-2-2H18z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-bulleted-off.svg����������������������0000664�0000000�0000000�00000000446�14753064456�0027413�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3.35 3.58 17.3 17.29-1.42 1.42L16.94 20H4a2 2 0 0 1-2-2V6c0-.28.06-.54.16-.78l-.93-.93 1.42-1.42zM6.6 4H20a2 2 0 0 1 2 2v12c0 .4-.12.77-.32 1.08L17.6 15H20v-2h-4.4l-2-2H20V9h-8.4zm3.34 9H9v2h2v-.94zm-4-4H5v2h2v-.94z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-bulleted-outline.svg������������������0000664�0000000�0000000�00000000326�14753064456�0030315�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 15h-2v-2h2zm6 0h-4v-2h4zM8 11H6V9h2zm10 0h-8V9h8zm2 9H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2M4 6v12h16V6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-bulleted-settings-outline.svg���������0000664�0000000�0000000�00000000374�14753064456�0032156�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 22v2H7v-2zm4 0v2h-2v-2zm4 0v2h-2v-2zm-5-7h-2v-2h2zm6 0h-4v-2h4zM8 11H6V9h2zm10 0h-8V9h8zm2 9H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2M4 6v12h16V6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-bulleted-settings.svg�����������������0000664�0000000�0000000�00000000353�14753064456�0030476�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 22v2H7v-2zm4 0v2h-2v-2zm4 0v2h-2v-2zm3-2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2m-9-7H9v2h2zm8 0h-6v2h6zM7 9H5v2h2zm12 0H9v2h10z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-bulleted.svg��������������������������0000664�0000000�0000000�00000000303�14753064456�0026633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2zm-9 9H9v2h2zm8 0h-6v2h6zM7 9H5v2h2zm12 0H9v2h10z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-minus-outline.svg���������������������0000664�0000000�0000000�00000000343�14753064456�0027647�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 18v2h-8v-2zm-9.91 0H4V6h16v7.09c.72.12 1.39.37 2 .72V6c0-1.11-.89-2-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h9.09c-.05-.33-.09-.66-.09-1s.04-.67.09-1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-minus.svg�����������������������������0000664�0000000�0000000�00000000330�14753064456�0026166�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 18v2h-8v-2zm-4-5c1.09 0 2.12.3 3 .81V6c0-1.11-.89-2-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h9.09c-.05-.33-.09-.66-.09-1 0-3.31 2.69-6 6-6"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-multiple-outline.svg������������������0000664�0000000�0000000�00000000441�14753064456�0030346�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 16V6H7v10zm0-12c.53 0 1.04.21 1.41.59.38.37.59.88.59 1.41v10c0 .53-.21 1.04-.59 1.41-.37.38-.88.59-1.41.59H7a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2zM3 20h15v2H3c-.53 0-1.04-.21-1.41-.59C1.21 21.04 1 20.53 1 20V9h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-multiple.svg��������������������������0000664�0000000�0000000�00000000521�14753064456�0026670�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 3c.53 0 1.04.21 1.41.59.38.37.59.88.59 1.41v10c0 .53-.21 1.04-.59 1.41-.37.38-.88.59-1.41.59H7c-.53 0-1.04-.21-1.41-.59C5.21 16.04 5 15.53 5 15V5c0-.53.21-1.04.59-1.41C5.96 3.21 6.47 3 7 3zM3 19h15v2H3c-.53 0-1.04-.21-1.41-.59C1.21 20.04 1 19.53 1 19V8h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-off-outline.svg�����������������������0000664�0000000�0000000�00000000435�14753064456�0027270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.2 6-2-2H20c1.11 0 2 .89 2 2v12c0 .24-.04.47-.12.68L20 16.8V6zm12.91 15.46-1.27 1.27L18.11 20H4a2 2 0 0 1-2-2V6c0-.58.25-1.1.65-1.46L1.11 3l1.28-1.27L6.66 6l11.99 12h.01l1.91 1.91h-.01zm-6-3.46-12-12H4v12z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-off.svg�������������������������������0000664�0000000�0000000�00000000365�14753064456�0025615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.88 18.68 7.2 4H20c1.11 0 2 .89 2 2v12c0 .24-.04.47-.12.68m-1.32 1.23h.01L2.39 1.73 1.11 3l1.54 1.54C2.25 4.9 2 5.42 2 6v12a2 2 0 0 0 2 2h14.11l2.73 2.73 1.27-1.27z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-outline.svg���������������������������0000664�0000000�0000000�00000000243�14753064456�0026515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2M4 6v12h16V6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-plus-outline.svg����������������������0000664�0000000�0000000�00000000271�14753064456�0027477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 15v3h3v2h-3v3h-2v-3h-3v-2h3v-3zm-7 3H3V6h16v7h2V6c0-1.11-.89-2-2-2H3a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h11z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-plus.svg������������������������������0000664�0000000�0000000�00000000355�14753064456�0026025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.09 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h16c1.11 0 2 .89 2 2v7.81c-.88-.51-1.91-.81-3-.81-3.31 0-6 2.69-6 6 0 .34.04.67.09 1M18 15v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-remove-outline.svg��������������������0000664�0000000�0000000�00000000513�14753064456�0030010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.41 19 2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.41-1.42L17.59 19l-2.12-2.12 1.41-1.41L19 17.59l2.12-2.12 1.42 1.41zm-7.32-1H4V6h16v7.09c.72.12 1.39.37 2 .72V6c0-1.11-.89-2-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h9.09c-.05-.33-.09-.66-.09-1s.04-.67.09-1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-remove.svg����������������������������0000664�0000000�0000000�00000000501�14753064456�0026330�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.41 19 2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.41-1.42L17.59 19l-2.12-2.12 1.41-1.41L19 17.59l2.12-2.12 1.42 1.41zM19 13c1.09 0 2.12.3 3 .81V6c0-1.11-.89-2-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h9.09c-.05-.33-.09-.66-.09-1 0-3.31 2.69-6 6-6"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-search-outline.svg��������������������0000664�0000000�0000000�00000000500�14753064456�0027754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.5 16c.87 0 1.69-.26 2.38-.7l2.44 2.44 1.42-1.42-2.44-2.43A4.481 4.481 0 0 0 11.5 7C9 7 7 9 7 11.5S9 16 11.5 16m0-7a2.5 2.5 0 0 1 0 5 2.5 2.5 0 0 1 0-5M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2m0 14H4V6h16z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-search.svg����������������������������0000664�0000000�0000000�00000000461�14753064456�0026305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.5 9a2.5 2.5 0 0 0 0 5 2.5 2.5 0 0 0 0-5M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2m-3.21 14.21-2.91-2.91c-.69.44-1.51.7-2.38.7C9 16 7 14 7 11.5S9 7 11.5 7a4.481 4.481 0 0 1 3.8 6.89l2.91 2.9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-text-outline.svg����������������������0000664�0000000�0000000�00000000273�14753064456�0027502�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2M4 6v12h16V6zm2 3h12v2H6zm0 4h10v2H6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card-text.svg������������������������������0000664�0000000�0000000�00000000260�14753064456�0026021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2M5 13v2h11v-2zm0-4v2h14V9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/card.svg�����������������������������������0000664�0000000�0000000�00000000226�14753064456�0025041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-club-outline.svg���������������������0000664�0000000�0000000�00000001120�14753064456�0027616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.6 9.5c.2-.6.4-1.3.4-2 0-3-2.2-5.5-5-5.5S7 4.5 7 7.5c0 .7.1 1.4.4 2-2.5.1-4.4 1.9-4.4 4.3C3 16.3 5 18 7.5 18c0 0 2.5 0 3.5-1 0 0 .3 2-2 5h6c-2.3-3-2-5-2-5 1 1 3.5 1 3.5 1 2.5 0 4.5-1.7 4.5-4.2 0-2.4-1.9-4.2-4.4-4.3m-.1 6.5S14 16 13 15h-2c-1 1-3.5 1-3.5 1-1.2 0-2.5-.7-2.5-2.2 0-1.3 1.1-2.3 2.5-2.3.3 0 .8.1 1.3.2.1 0 .2.1.3.1l.9-1.7c-.2-.2-.3-.4-.4-.6-.4-.6-.6-1.2-.6-2C9 5.6 10.3 4 12 4s3 1.6 3 3.5q0 1.2-.6 2.1c-.1.2-.2.3-.3.5l.9 1.7c.1 0 .2-.1.3-.1.4-.1.9-.2 1.3-.2 1.4 0 2.5 1 2.5 2.3-.1 1.5-1.4 2.2-2.6 2.2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-club.svg�����������������������������0000664�0000000�0000000�00000000524�14753064456�0026150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c2.3 0 4.3 2 4.3 4.2a4.45 4.45 0 0 1-2.26 3.8c1-.5 2.46-.5 2.46-.5 2.5 0 4.5 1.8 4.5 4.3S19 18 16.5 18c0 0-1.5 0-3.5-1 0 0-.3 2 2 5H9c2.3-3 2-5 2-5-2 1-3.5 1-3.5 1C5 18 3 16.3 3 13.8s2-4.3 4.5-4.3c0 0 1.46 0 2.46.5-.3-.17-2.17-1.23-2.26-3.8C7.7 4 9.7 2 12 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-diamond-outline.svg������������������0000664�0000000�0000000�00000000202�14753064456�0030304�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2 5 12l7 10 7-10M7.44 12 12 5.5l4.56 6.5L12 18.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-diamond.svg��������������������������0000664�0000000�0000000�00000000143�14753064456�0026633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19 12-7 10-7-10 7-10"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-heart-outline.svg��������������������0000664�0000000�0000000�00000000637�14753064456�0030010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.1 18.55-.1.1-.11-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04 1 3.57 2.36h1.86C13.46 6 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05M16.5 3c-1.74 0-3.41.81-4.5 2.08C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.41 2 8.5c0 3.77 3.4 6.86 8.55 11.53L12 21.35l1.45-1.32C18.6 15.36 22 12.27 22 8.5 22 5.41 19.58 3 16.5 3"/></svg>�������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-heart.svg����������������������������0000664�0000000�0000000�00000000362�14753064456�0026326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 21.35-1.45-1.32C5.4 15.36 2 12.27 2 8.5 2 5.41 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.08C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.41 22 8.5c0 3.77-3.4 6.86-8.55 11.53z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-outline.svg��������������������������0000664�0000000�0000000�00000000636�14753064456�0026706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.19 2.25c-.26 0-.52.06-.77.15L3.06 5.45a1.994 1.994 0 0 0-1.09 2.6L6.93 20a2 2 0 0 0 1.81 1.25c.26 0 .53-.03.79-.15l7.37-3.05a2.02 2.02 0 0 0 1.23-1.8c.01-.25-.04-.54-.13-.8L13 3.5a1.95 1.95 0 0 0-1.81-1.25m3.48 0 3.45 8.35V4.25a2 2 0 0 0-2-2m4.01 1.54v9.03l2.43-5.86a1.99 1.99 0 0 0-1.09-2.6m-10.28-.14 4.98 12.02-7.39 3.06L3.8 7.29"/></svg>��������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-playing-club-multiple-outline.svg����0000664�0000000�0000000�00000000560�14753064456�0033117�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 0H9C7.9 0 7 .9 7 2v16c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2m0 18H9V2h10zM3 4v18c0 1.1.9 2 2 2h12v-2H5V4zm11 2c-1.1 0-2 .9-2 2 0 .4.1.7.3 1H12c-1.1 0-2 .9-2 2s.9 2 2 2c.6 0 1.1-.3 1.5-.7l-1 2.7h3l-1-2.7c.4.4.9.7 1.5.7 1.1 0 2-.9 2-2s-.9-2-2-2h-.3c.2-.3.3-.6.3-1 0-1.1-.9-2-2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-playing-club-multiple.svg������������0000664�0000000�0000000�00000000541�14753064456�0031441�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4v18c0 1.1.9 2 2 2h12v-2H5V4zm16-4H9C7.9 0 7 .9 7 2v16c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2m-3 13c-.6 0-1.1-.3-1.5-.7l1 2.7h-3l1-2.7c-.4.4-.9.7-1.5.7-1.1 0-2-.9-2-2s.9-2 2-2h.3c-.2-.3-.3-.6-.3-1 0-1.1.9-2 2-2s2 .9 2 2c0 .4-.1.7-.3 1h.3c1.1 0 2 .9 2 2s-.9 2-2 2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-playing-club-outline.svg�������������0000664�0000000�0000000�00000000521�14753064456�0031263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 18H7V4h10zM12 8c-1.1 0-2 .9-2 2 0 .4.1.7.3 1H10c-1.1 0-2 .9-2 2s.9 2 2 2c.6 0 1.1-.3 1.5-.7l-1 2.7h3l-1-2.7c.4.4.9.7 1.5.7 1.1 0 2-.9 2-2s-.9-2-2-2h-.3c.2-.3.3-.7.3-1 0-1.1-.9-2-2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-playing-club.svg���������������������0000664�0000000�0000000�00000000502�14753064456�0027605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-3 13c-.6 0-1.1-.3-1.5-.7l1 2.7h-3l1-2.7c-.4.4-.9.7-1.5.7-1.1 0-2-.9-2-2s.9-2 2-2h.3c-.2-.3-.3-.7-.3-1 0-1.1.9-2 2-2s2 .9 2 2c0 .4-.1.7-.3 1h.3c1.1 0 2 .9 2 2s-.9 2-2 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-playing-diamond-multiple-outline.svg�0000664�0000000�0000000�00000000327�14753064456�0033606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 0H9C7.9 0 7 .9 7 2v16c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2m0 18H9V2h10zM3 4v18c0 1.1.9 2 2 2h12v-2H5V4zm11 1-3 5 3 5 3-5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-playing-diamond-multiple.svg���������0000664�0000000�0000000�00000000313�14753064456�0032124�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4v18c0 1.1.9 2 2 2h12v-2H5V4zm16-4H9C7.9 0 7 .9 7 2v16c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2m-5 15-3-5 3-5 3 5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-playing-diamond-outline.svg����������0000664�0000000�0000000�00000000271�14753064456�0031753�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 18H7V4h10zM12 7l-3 5 3 5 3-5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-playing-diamond.svg������������������0000664�0000000�0000000�00000000254�14753064456�0030277�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-5 15-3-5 3-5 3 5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-playing-heart-multiple-outline.svg���0000664�0000000�0000000�00000000513�14753064456�0033273�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 0H9C7.9 0 7 .9 7 2v16c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2m0 18H9V2h10zM3 4v18c0 1.1.9 2 2 2h12v-2H5V4zm9.2 3C11 7 10 8 10 9.2c0 1.5 1.4 2.7 3.4 4.6l.6.5.6-.5c2-1.9 3.4-3.1 3.4-4.6C18 7.9 17 7 15.8 7c-.7 0-1.4.3-1.8.8-.4-.5-1.1-.8-1.8-.8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-playing-heart-multiple.svg�����������0000664�0000000�0000000�00000000502�14753064456�0031614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4v18c0 1.1.9 2 2 2h12v-2H5V4zm16-4H9C7.9 0 7 .9 7 2v16c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2m-4.4 13.8-.6.5-.6-.5c-2-1.9-3.4-3.1-3.4-4.6C10 8 11 7 12.2 7c.7 0 1.4.3 1.8.8.4-.5 1.1-.8 1.8-.8C17 7 18 7.9 18 9.2c0 1.5-1.4 2.7-3.4 4.6"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-playing-heart-outline.svg������������0000664�0000000�0000000�00000000454�14753064456�0031446�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 18H7V4h10zM10.2 9C9 9 8 10 8 11.2c0 1.5 1.4 2.7 3.4 4.6l.6.5.6-.5c2-1.9 3.4-3.1 3.4-4.6C16 9.9 15 9 13.8 9c-.7 0-1.4.3-1.8.8-.4-.5-1.1-.8-1.8-.8"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-playing-heart.svg��������������������0000664�0000000�0000000�00000000443�14753064456�0027767�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-4.4 13.8-.6.5-.6-.5c-2-1.9-3.4-3.1-3.4-4.6C8 10 9 9 10.2 9c.7 0 1.4.3 1.8.8.4-.5 1.1-.8 1.8-.8 1.2 0 2.2.9 2.2 2.2 0 1.5-1.4 2.7-3.4 4.6"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-playing-outline.svg������������������0000664�0000000�0000000�00000000701�14753064456�0030340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.19 2.25c.78.01 1.52.48 1.81 1.25l5 11.95c.09.26.14.55.13.8a2.02 2.02 0 0 1-1.23 1.8L9.53 21.1c-.26.12-.53.15-.79.15A2 2 0 0 1 6.93 20L1.97 8.05c-.42-1.01.07-2.18 1.09-2.6l7.36-3.05c.25-.09.51-.15.77-.15m3.48 0h1.45a2 2 0 0 1 2 2v6.35zm5.46 1.54 1.34.57a1.99 1.99 0 0 1 1.09 2.6l-2.43 5.86zm-8.94.43L3.8 7.29 8.77 19.3l7.4-3.06zM8.65 8.54l3.23 2.41-.44 4.01-3.23-2.42z"/></svg>���������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-playing-spade-multiple-outline.svg���0000664�0000000�0000000�00000000525�14753064456�0033267�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 0H9C7.9 0 7 .9 7 2v16c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2m0 18H9V2h10zM3 4v18c0 1.1.9 2 2 2h12v-2H5V4zm11 1.7-.6.5c-2 1.9-3.4 3.1-3.4 4.6 0 1.2 1 2.2 2.2 2.2q.6 0 1.2-.3l-.9 2.3h3l-.9-2.3c.3.2.8.3 1.2.3 1.2 0 2.2-.9 2.2-2.2 0-1.5-1.4-2.7-3.4-4.6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-playing-spade-multiple.svg�����������0000664�0000000�0000000�00000000510�14753064456�0031604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4v18c0 1.1.9 2 2 2h12v-2H5V4zm16-4H9C7.9 0 7 .9 7 2v16c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2m-3.2 13q-.6 0-1.2-.3l.9 2.3h-3l.9-2.3q-.6.3-1.2.3C11 13 10 12 10 10.8c0-1.5 1.4-2.7 3.4-4.6l.6-.5.6.5c2 1.9 3.4 3.1 3.4 4.6 0 1.3-1 2.2-2.2 2.2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-playing-spade-outline.svg������������0000664�0000000�0000000�00000000465�14753064456�0031441�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 18H7V4h10zM12 7.7l-.6.5c-2 1.9-3.4 3.1-3.4 4.6C8 14 9 15 10.2 15q.6 0 1.2-.3l-.9 2.3h3l-.9-2.3c.3.2.8.3 1.2.3 1.2 0 2.2-.9 2.2-2.2 0-1.5-1.4-2.7-3.4-4.6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-playing-spade.svg��������������������0000664�0000000�0000000�00000000446�14753064456�0027763�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-3.2 13q-.6 0-1.2-.3l.9 2.3h-3l.9-2.3q-.6.3-1.2.3C9 15 8 14 8 12.8c0-1.5 1.4-2.7 3.4-4.6l.6-.5.6.5c2 1.9 3.4 3.1 3.4 4.6 0 1.3-1 2.2-2.2 2.2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-playing.svg��������������������������0000664�0000000�0000000�00000000524�14753064456�0026666�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.7 2.2h1.5c1.1 0 2 .9 2 2v6.4zm5.4 1.6 1.3.6c1 .4 1.5 1.6 1.1 2.6l-2.4 5.9zM18 15.5l-5-12c-.3-.8-1-1.2-1.8-1.2-.3 0-.5.1-.8.2L3 5.5C2 5.9 1.5 7 2 8l5 12c.3.8 1 1.2 1.8 1.2.3 0 .5 0 .8-.2l7.4-3c.8-.3 1.2-1 1.2-1.8-.1-.2-.1-.5-.2-.7m-6.6-.5-3.2-2.4.4-4 3.2 2.4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-spade-outline.svg��������������������0000664�0000000�0000000�00000000420�14753064456�0027767�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 17s.3 2-2 5h6c-2.3-3-2-5-2-5s1 1 3 1 4-2 4-4c0-5-5-7-8-12-3 5-8 7-8 12 0 2 2 4 4 4s3-1 3-1m2-3h-2s-1 2-3 2c-.9 0-2-1.1-2-2-.2-3 3.9-5.8 6-8.6 2.1 2.7 6.2 5.5 6 8.6 0 .9-1.1 2-2 2-2 0-3-2-3-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-spade.svg����������������������������0000664�0000000�0000000�00000000272�14753064456�0026317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C9 7 4 9 4 14c0 2 2 4 4 4 1 0 2 0 3-1 0 0 .32 2-2 5h6c-2-3-2-5-2-5 1 1 2 1 3 1 2 0 4-2 4-4 0-5-5-7-8-12"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards-variant.svg��������������������������0000664�0000000�0000000�00000000364�14753064456�0026671�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 2h14a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1m1 2v8h12V4zm14 13a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1h16zm0 4a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1h16z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cards.svg����������������������������������0000664�0000000�0000000�00000000616�14753064456�0025227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.47 4.35-1.34-.56v9.03l2.43-5.86c.41-1.02-.06-2.19-1.09-2.61m-19.5 3.7L6.93 20a2.01 2.01 0 0 0 1.81 1.26c.26 0 .53-.05.79-.16l7.37-3.05c.75-.31 1.21-1.05 1.23-1.79.01-.26-.04-.55-.13-.81L13 3.5a1.95 1.95 0 0 0-1.81-1.25c-.26 0-.52.06-.77.15L3.06 5.45a1.994 1.994 0 0 0-1.09 2.6m16.15-3.8a2 2 0 0 0-2-2h-1.45l3.45 8.34"/></svg>������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/carrot.svg���������������������������������0000664�0000000�0000000�00000000721�14753064456�0025422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16 10-.2 1h-2.3a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5h2.1l-1 5h-2.1a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5h1.9l-.4 2a2 2 0 0 1-2 2 2 2 0 0 1-2-2l-1-5h1.5a.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5H8.8L8 10c0-1.2.93-2.23 2.29-2.71L8.9 5.28a.997.997 0 0 1 .26-1.39 1 1 0 0 1 1.39.25l.45.66V3a1 1 0 0 1 1-1 1 1 0 0 1 1 1v2.28l1.5-1.74c.33-.42.97-.47 1.39-.11.42.35.47.98.11 1.41l-2.13 2.51C15.14 7.85 16 8.85 16 10"/></svg>�����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cart-arrow-down.svg������������������������0000664�0000000�0000000�00000000521�14753064456�0027154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 0v4H8l4 4 4-4h-2V0M1 2v2h2l3.6 7.6L5.2 14c-.1.3-.2.6-.2 1 0 1.1.9 2 2 2h12v-2H7.4c-.1 0-.2-.1-.2-.2v-.1l.9-1.7h7.4c.7 0 1.4-.4 1.7-1l3.9-7-1.7-1-3.9 7h-7L4.3 2M7 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m10 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cart-arrow-right.svg�����������������������0000664�0000000�0000000�00000000626�14753064456�0027330�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 20a2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 2 2m8-2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m-9.8-3.37q-.015.06 0 .12a.25.25 0 0 0 .25.25H19v2H7a2 2 0 0 1-2-2c0-.35.07-.69.24-1l1.36-2.41L3 4H1V2h3.27l.94 2H20a1 1 0 0 1 1 1c0 .17-.05.34-.12.5L17.3 12c-.36.62-1.03 1-1.75 1H8.1zM9 9.5h4v2l3-3-3-3v2H9z"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cart-arrow-up.svg��������������������������0000664�0000000�0000000�00000000516�14753064456�0026635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0 8 4h2v4h4V4h2M1 2v2h2l3.6 7.6L5.2 14c-.1.3-.2.6-.2 1 0 1.1.9 2 2 2h12v-2H7.4c-.1 0-.2-.1-.2-.2v-.1l.9-1.7h7.4c.7 0 1.4-.4 1.7-1l3.9-7-1.7-1-3.9 7h-7L4.3 2M7 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m10 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cart-check.svg�����������������������������0000664�0000000�0000000�00000000554�14753064456�0026140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 20c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2m8-2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m-9.8-3.2v-.1l.9-1.7h7.4c.7 0 1.4-.4 1.7-1l3.9-7-1.7-1-3.9 7h-7L4.3 2H1v2h2l3.6 7.6L5.2 14c-.1.3-.2.6-.2 1 0 1.1.9 2 2 2h12v-2H7.4c-.1 0-.2-.1-.2-.2M18 2.8l-1.4-1.4-4.8 4.8-2.6-2.6L7.8 5l4 4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cart-heart.svg�����������������������������0000664�0000000�0000000�00000000700�14753064456�0026157�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 20c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2m8-2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m-9.8-3.2v-.1l.9-1.7h7.4c.7 0 1.4-.4 1.7-1l3.9-7-1.7-1-3.9 7h-7L4.3 2H1v2h2l3.6 7.6L5.2 14c-.1.3-.2.6-.2 1 0 1.1.9 2 2 2h12v-2H7.4c-.1 0-.2-.1-.2-.2M12 9.3l-.6-.5C9.4 6.9 8 5.7 8 4.2 8 3 9 2 10.2 2c.7 0 1.4.3 1.8.8.4-.5 1.1-.8 1.8-.8C15 2 16 2.9 16 4.2c0 1.5-1.4 2.7-3.4 4.6z"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cart-minus.svg�����������������������������0000664�0000000�0000000�00000000515�14753064456�0026213�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 6V4H8v2M7 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m10 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m-9.8-3.2v-.1l.9-1.7h7.4c.7 0 1.4-.4 1.7-1l3.9-7-1.7-1-3.9 7h-7L4.3 2H1v2h2l3.6 7.6L5.2 14c-.1.3-.2.6-.2 1 0 1.1.9 2 2 2h12v-2H7.4c-.1 0-.2-.1-.2-.2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cart-off.svg�������������������������������0000664�0000000�0000000�00000000711�14753064456�0025630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.73 22.73 1.27 1.27 0 2.54l4.39 4.39 2.21 4.66-1.35 2.45c-.16.28-.25.61-.25.96a2 2 0 0 0 2 2h7.46l1.38 1.38c-.5.36-.84.95-.84 1.62a2 2 0 0 0 2 2c.67 0 1.26-.33 1.62-.84L21.46 24zM7.42 15a.25.25 0 0 1-.25-.25l.03-.12.9-1.63h2.36l2 2zm8.13-2c.75 0 1.41-.41 1.75-1.03l3.58-6.47c.08-.16.12-.33.12-.5a1 1 0 0 0-1-1H6.54zM7 18a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>�������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cart-outline.svg���������������������������0000664�0000000�0000000�00000000636�14753064456�0026543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 18a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2c0-1.11.89-2 2-2M1 2h3.27l.94 2H20a1 1 0 0 1 1 1c0 .17-.05.34-.12.5l-3.58 6.47c-.34.61-1 1.03-1.75 1.03H8.1l-.9 1.63-.03.12a.25.25 0 0 0 .25.25H19v2H7a2 2 0 0 1-2-2c0-.35.09-.68.24-.96l1.36-2.45L3 4H1zm6 16a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2c0-1.11.89-2 2-2m9-7 2.78-5H6.14l2.36 5z"/></svg>��������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cart-percent.svg���������������������������0000664�0000000�0000000�00000000726�14753064456�0026524�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 18c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m10 0c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-9.8-3.2c0 .1.1.2.2.2H19v2H7c-1.1 0-2-.9-2-2 0-.4.1-.7.2-1l1.3-2.4L3 4H1V2h3.3l4.3 9h7l3.9-7 1.7 1-3.9 7c-.3.6-1 1-1.7 1H8.1l-.9 1.6zM9.4 1c.8 0 1.4.6 1.4 1.4s-.6 1.4-1.4 1.4S8 3.2 8 2.4 8.7 1 9.4 1m5.2 8c-.8 0-1.4-.6-1.4-1.4s.6-1.4 1.4-1.4 1.4.6 1.4 1.4S15.3 9 14.6 9M9.2 9 8 7.8 14.8 1 16 2.2z"/></svg>������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cart-plus.svg������������������������������0000664�0000000�0000000�00000000537�14753064456�0026047�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 9h2V6h3V4h-3V1h-2v3H8v2h3M7 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m10 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m-9.8-3.2v-.1l.9-1.7h7.4c.7 0 1.4-.4 1.7-1l3.9-7-1.7-1-3.9 7h-7L4.3 2H1v2h2l3.6 7.6L5.2 14c-.1.3-.2.6-.2 1 0 1.1.9 2 2 2h12v-2H7.4c-.1 0-.2-.1-.2-.2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cart-remove.svg����������������������������0000664�0000000�0000000�00000000622�14753064456�0026354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.1 8.5 12 6.4 9.9 8.5 8.5 7.1 10.6 5 8.5 2.9l1.4-1.4L12 3.6l2.1-2.1 1.4 1.4L13.4 5l2.1 2.1zM7 18c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m10 0c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-9.8-3.2c0 .1.1.2.2.2H19v2H7c-1.1 0-2-.9-2-2 0-.4.1-.7.2-1l1.3-2.4L3 4H1V2h3.3l4.3 9h7l3.9-7 1.7 1-3.9 7c-.3.6-1 1-1.7 1H8.1l-.9 1.6z"/></svg>��������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cart-variant.svg���������������������������0000664�0000000�0000000�00000000746�14753064456�0026532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 20c0 1.11-.89 2-2 2a2 2 0 0 1-2-2c0-1.11.89-2 2-2a2 2 0 0 1 2 2M7 18c-1.11 0-2 .89-2 2a2 2 0 0 0 2 2c1.11 0 2-.89 2-2s-.89-2-2-2m.2-3.37-.03.12c0 .14.11.25.25.25H19v2H7a2 2 0 0 1-2-2c0-.35.09-.68.24-.96l1.36-2.45L3 4H1V2h3.27l.94 2H20c.55 0 1 .45 1 1 0 .17-.05.34-.12.5l-3.58 6.47c-.34.61-1 1.03-1.75 1.03H8.1zM8.5 11H10V9H7.56zM11 9v2h3V9zm3-1V6h-3v2zm3.11 1H15v2h1zm1.67-3H15v2h2.67zM6.14 6l.94 2H10V6z"/></svg>��������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cart.svg�����������������������������������0000664�0000000�0000000�00000000634�14753064456�0025064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 18c-1.11 0-2 .89-2 2a2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2M1 2v2h2l3.6 7.59-1.36 2.45c-.15.28-.24.61-.24.96a2 2 0 0 0 2 2h12v-2H7.42a.25.25 0 0 1-.25-.25q0-.075.03-.12L8.1 13h7.45c.75 0 1.41-.42 1.75-1.03l3.58-6.47c.07-.16.12-.33.12-.5a1 1 0 0 0-1-1H5.21l-.94-2M7 18c-1.11 0-2 .89-2 2a2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/case-sensitive-alt.svg���������������������0000664�0000000�0000000�00000000501�14753064456�0027624�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 14c0-1.5-.5-2-2-2h-2v-1c0-1 0-1-2-1v9h4c1.5 0 2-.53 2-2zm-8-2c0-1.5-.53-2-2-2H6c-1.5 0-2 .5-2 2v7h2v-3h4v3h2zm-2-5h4V5h-4zm12 2v11c0 1.11-.89 2-2 2H4a2 2 0 0 1-2-2V9c0-1.11.89-2 2-2h4V5l2-2h4l2 2v2h4a2 2 0 0 1 2 2m-6 8h2v-3h-2zM6 12h4v2H6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cash-100.svg�������������������������������0000664�0000000�0000000�00000000760�14753064456�0025347�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5h20v15H2zm18 13V7H4v11zM17 8a2 2 0 0 0 2 2v5a2 2 0 0 0-2 2H7a2 2 0 0 0-2-2v-5a2 2 0 0 0 2-2zm0 5v-1c0-1.1-.67-2-1.5-2s-1.5.9-1.5 2v1c0 1.1.67 2 1.5 2s1.5-.9 1.5-2m-1.5-2a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5.5.5 0 0 1-.5-.5v-2a.5.5 0 0 1 .5-.5M13 13v-1c0-1.1-.67-2-1.5-2s-1.5.9-1.5 2v1c0 1.1.67 2 1.5 2s1.5-.9 1.5-2m-1.5-2a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5.5.5 0 0 1-.5-.5v-2a.5.5 0 0 1 .5-.5M8 15h1v-5H8l-1 .5v1l1-.5z"/></svg>����������������mkdocs-material-9.6.4/material/templates/.icons/material/cash-check.svg�����������������������������0000664�0000000�0000000�00000000550�14753064456�0026121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6v12h10.32a6.4 6.4 0 0 1-.32-2H7a2 2 0 0 0-2-2v-4c1.11 0 2-.89 2-2h10a2 2 0 0 0 2 2v.06c.67 0 1.34.12 2 .34V6zm9 3c-1.7.03-3 1.3-3 3s1.3 2.94 3 3c.38 0 .77-.08 1.14-.23.27-1.1.72-2.14 1.83-3.16C14.85 10.28 13.59 8.97 12 9m9.63 3.27-3.87 3.9-1.35-1.37L15 16.22 17.75 19l5.28-5.32z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cash-clock.svg�����������������������������0000664�0000000�0000000�00000000733�14753064456�0026142�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.5 16.82 2.44 1.41-.75 1.3L16 17.69V14h1.5zM24 17c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-.34.03-.67.08-1H2V4h18v6.68c2.36 1.13 4 3.53 4 6.32m-13.32-3c.18-.36.37-.7.6-1.03-.09.03-.18.03-.28.03-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3c0 .25-.04.5-.1.73.94-.46 1.99-.73 3.1-.73.34 0 .67.03 1 .08V8a2 2 0 0 1-2-2H6c0 1.11-.89 2-2 2v4a2 2 0 0 1 2 2zM22 17c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cash-edit.svg������������������������������0000664�0000000�0000000�00000000730�14753064456�0025771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v3.1c-1.04 0-1.65.62-1.8.77l-.01.02-.19.18V10c-.53 0-1.04-.21-1.41-.59C17.21 9.04 17 8.53 17 8H7c0 .53-.21 1.04-.59 1.41-.37.38-.88.59-1.41.59v4c.53 0 1.04.21 1.41.59.38.37.59.88.59 1.41h6.07l-2 2H3zm9 3c.8 0 1.56.32 2.12.88a2.997 2.997 0 1 1-4.24 4.24A2.997 2.997 0 0 1 12 9m10.7 3.6-1.3-1.3c-.1-.1-.2-.2-.4-.2s-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6 0-.8M15.1 21l6-6.1-2-2.1-6.1 6.1V21z"/></svg>����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cash-fast.svg������������������������������0000664�0000000�0000000�00000000721�14753064456�0026001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.12 9.88a2.997 2.997 0 1 0-4.24 4.24 2.997 2.997 0 1 0 4.24-4.24M7 6v12h16V6zm14 8c-.53 0-1.04.21-1.41.59-.38.37-.59.88-.59 1.41h-8c0-.53-.21-1.04-.59-1.41-.37-.38-.88-.59-1.41-.59v-4c.53 0 1.04-.21 1.41-.59.38-.37.59-.88.59-1.41h8c0 .53.21 1.04.59 1.41.37.38.88.59 1.41.59zM5 8H3c-.55 0-1-.45-1-1s.45-1 1-1h2zm0 5H2c-.55 0-1-.45-1-1s.45-1 1-1h3zm0 5H1c-.552 0-1-.45-1-1s.448-1 1-1h4z"/></svg>�����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cash-lock-open.svg�������������������������0000664�0000000�0000000�00000000674�14753064456�0026742�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.8 16c.6 0 1.2.6 1.2 1.3v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-2.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5v.5h-1.3v-.5c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V16zM2 6h18v3.1L19 9c-.82 0-1.59.2-2.27.54C16.28 9.18 16 8.62 16 8H6c0 1.11-.89 2-2 2v4a2 2 0 0 1 2 2h7.04l-.04.5V18H2zm9 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3"/></svg>��������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cash-lock.svg������������������������������0000664�0000000�0000000�00000000675�14753064456�0026004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.8 15c.6 0 1.2.6 1.2 1.3v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5zm-1.3 0v-1.5c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V15zM2 6h18v3.1L19 9c-.82 0-1.59.2-2.27.54C16.28 9.18 16 8.62 16 8H6c0 1.11-.89 2-2 2v4a2 2 0 0 1 2 2h7.04l-.04.5V18H2zm9 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cash-marker.svg����������������������������0000664�0000000�0000000�00000000666�14753064456�0026335�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 16.8c-.7 0-1.2-.6-1.2-1.2 0-.7.6-1.2 1.2-1.2s1.2.6 1.2 1.2c.1.6-.5 1.2-1.2 1.2m0-4.8c-1.9 0-3.5 1.6-3.5 3.5 0 2.6 3.5 6.5 3.5 6.5s3.5-3.9 3.5-6.5c0-1.9-1.6-3.5-3.5-3.5m-3.6-.7C14.6 10 13.4 9 12 9c-1.7 0-3 1.3-3 3s1.3 3 3 3c.4 0 .7-.1 1-.2.2-1.4.9-2.6 1.9-3.5M13 16H7a2 2 0 0 0-2-2v-4a2 2 0 0 0 2-2h10a2 2 0 0 0 2 2s1 0 2 .6V6H3v12h10.5c-.2-.7-.4-1.3-.5-2"/></svg>��������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cash-minus.svg�����������������������������0000664�0000000�0000000�00000000505�14753064456�0026177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 15v2h8v-2m-8.03-3.39C14.85 10.28 13.59 8.97 12 9c-1.7.03-3 1.3-3 3s1.3 2.94 3 3c.38 0 .77-.08 1.14-.23.27-1.1.72-2.14 1.83-3.16M13 16H7a2 2 0 0 0-2-2v-4c1.11 0 2-.89 2-2h10a2 2 0 0 0 2 2v.06c.67 0 1.34.12 2 .34V6H3v12h10.32a6.4 6.4 0 0 1-.32-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cash-multiple.svg��������������������������0000664�0000000�0000000�00000000356�14753064456�0026703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 6h18v12H5zm9 3a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3M9 8a2 2 0 0 1-2 2v4a2 2 0 0 1 2 2h10a2 2 0 0 1 2-2v-4a2 2 0 0 1-2-2zm-8 2h2v10h16v2H1z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cash-off.svg�������������������������������0000664�0000000�0000000�00000000706�14753064456�0025621�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4.9v.05l.05-.01L4.11 6H3v12h13.11l4.73 4.73 1.27-1.27L4.57 3.91 2.39 1.73 1.11 3zm3.41 4.51q.3-.285.45-.66l2.3 2.3c-.11.3-.16.62-.16.95 0 .8.32 1.56.88 2.12S11.2 15 12 15c.33 0 .65-.05.95-.16L14.11 16H7c0-.53-.21-1.04-.59-1.41C6.04 14.21 5.53 14 5 14v-4c.53 0 1.04-.21 1.41-.59m11.28 5.09L21 17.8V6H9.2l2 2H17c0 .53.21 1.04.59 1.41.37.38.88.59 1.41.59v4c-.5 0-.95.18-1.31.5"/></svg>����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cash-plus.svg������������������������������0000664�0000000�0000000�00000000531�14753064456�0026026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 15v2h3v3h2v-3h3v-2h-3v-3h-2v3m-3.03-3.39C14.85 10.28 13.59 8.97 12 9c-1.7.03-3 1.3-3 3s1.3 2.94 3 3c.38 0 .77-.08 1.14-.23.27-1.1.72-2.14 1.83-3.16M13 16H7a2 2 0 0 0-2-2v-4c1.11 0 2-.89 2-2h10a2 2 0 0 0 2 2v.06c.67 0 1.34.12 2 .34V6H3v12h10.32a6.4 6.4 0 0 1-.32-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cash-refund.svg����������������������������0000664�0000000�0000000�00000000416�14753064456�0026330�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.3 8.93 9.88 6.5h5.62V10H17V5H9.88l2.42-2.43-1.06-1.07L7 5.75 11.24 10zM12 14a3 3 0 1 0 3 3 3 3 0 0 0-3-3m-9-3v12h18V11m-2 8a2 2 0 0 0-2 2H7a2 2 0 0 0-2-2v-4a2 2 0 0 0 2-2h10a2 2 0 0 0 2 2Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cash-register.svg��������������������������0000664�0000000�0000000�00000000401�14753064456�0026663�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 17h20v4H2zM6.25 7H9V6H6V3h8v3h-3v1h6.8c1 0 2 1 2.2 2l.5 7h-17l.55-7c0-1 1-2 2.2-2M13 9v2h5V9zM6 9v1h2V9zm3 0v1h2V9zm-3 2v1h2v-1zm3 0v1h2v-1zm-3 2v1h2v-1zm3 0v1h2v-1zM7 4v1h6V4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cash-remove.svg����������������������������0000664�0000000�0000000�00000000657�14753064456�0026351�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.46 18.12 1.42 1.42L19 17.41l2.12 2.13 1.42-1.42L20.41 16l2.13-2.12-1.42-1.42L19 14.59l-2.12-2.13-1.42 1.42L17.59 16m-2.62-4.38C14.86 10.28 13.58 8.97 12 9c-1.7.04-3 1.3-3 3s1.3 2.94 3 3c.39 0 .77-.08 1.14-.23.27-1.1.72-2.14 1.83-3.15M13 16H7c0-1.1-.9-2-2-2v-4c1.1 0 2-.9 2-2h10c0 1.1.9 2 2 2v.05c.67.01 1.34.13 2 .35V6H3v12h10.32a6.4 6.4 0 0 1-.32-2"/></svg>���������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cash-sync.svg������������������������������0000664�0000000�0000000�00000000751�14753064456�0026023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6v12h10.32a6.4 6.4 0 0 1-.32-2H7a2 2 0 0 0-2-2v-4c1.11 0 2-.89 2-2h10a2 2 0 0 0 2 2v.06c.67 0 1.34.12 2 .34V6zm9 3c-1.7.03-3 1.3-3 3s1.3 2.94 3 3c.38 0 .77-.08 1.14-.23.27-1.1.72-2.14 1.83-3.16C14.85 10.28 13.59 8.97 12 9m7 2 2.25 2.25L19 15.5V14c-1.85 0-3.06 1.96-2.24 3.62l-1.09 1.09c-1.76-2.66.14-6.21 3.33-6.21zm0 11-2.25-2.25L19 17.5V19c1.85 0 3.06-1.96 2.24-3.62l1.09-1.09c1.76 2.66-.14 6.21-3.33 6.21z"/></svg>�����������������������mkdocs-material-9.6.4/material/templates/.icons/material/cash.svg�����������������������������������0000664�0000000�0000000�00000000334�14753064456�0025046�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v12H3zm9 3a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3M7 8a2 2 0 0 1-2 2v4a2 2 0 0 1 2 2h10a2 2 0 0 1 2-2v-4a2 2 0 0 1-2-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cassette.svg�������������������������������0000664�0000000�0000000�00000000543�14753064456�0025745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h2l1-2h10l1 2h2a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2zm2.5 5A1.5 1.5 0 0 1 8 11.5 1.5 1.5 0 0 1 6.5 13 1.5 1.5 0 0 1 5 11.5 1.5 1.5 0 0 1 6.5 10M9 10h6v3H9zm8.5 0a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cast-audio-variant.svg���������������������0000664�0000000�0000000�00000001161�14753064456�0027622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.5 12a2.5 2.5 0 0 0-5 0c0 1 .59 1.84 1.43 2.25l-1.11 1.1A3.999 3.999 0 0 1 12 8a3.999 3.999 0 0 1 2.18 7.35l-1.1-1.1c.84-.41 1.42-1.25 1.42-2.25M12 2C6.5 2 2 6.5 2 12c0 3.06 1.38 5.8 3.54 7.63l1.07-1.06C4.71 17 3.5 14.64 3.5 12c0-4.69 3.81-8.5 8.5-8.5s8.5 3.81 8.5 8.5c0 2.64-1.21 5-3.11 6.57l1.07 1.06C20.62 17.79 22 15.06 22 12c0-5.5-4.5-10-10-10m7 10c0-3.87-3.13-7-7-7a6.995 6.995 0 0 0-4.32 12.5l1.07-1.07C7.39 15.42 6.5 13.82 6.5 12c0-3.03 2.47-5.5 5.5-5.5s5.5 2.47 5.5 5.5c0 1.82-.89 3.42-2.25 4.43l1.08 1.07A7 7 0 0 0 19 12M6 22h12l-6-6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cast-audio.svg�����������������������������0000664�0000000�0000000�00000000732�14753064456�0026163�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 11v2c5 0 9 4 9 9h2c0-6.1-4.9-11-11-11m18-9H10c-1.1 0-2 .9-2 2v6.5c1 .5 1.9 1.2 2.7 1.9.9-1.4 2.5-2.4 4.3-2.4 2.8 0 5 2.2 5 5s-2.2 5-5 5h-.2c.1.7.2 1.3.2 2h5c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-5 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m0 10c-.2 0-.5 0-.7-.1-.5-1.5-1.2-2.8-2.1-4 .4-1.1 1.5-2 2.8-2 1.7 0 3 1.3 3 3S16.7 18 15 18M2 15v2c2.8 0 5 2.2 5 5h2c0-3.9-3.1-7-7-7m0 4v3h3c0-1.7-1.3-3-3-3"/></svg>��������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cast-connected.svg�������������������������0000664�0000000�0000000�00000000454�14753064456�0027025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 3H3c-1.11 0-2 .89-2 2v3h2V5h18v14h-7v2h7a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2M1 10v2a9 9 0 0 1 9 9h2c0-6.08-4.93-11-11-11m18-3H5v1.63c3.96 1.28 7.09 4.41 8.37 8.37H19M1 14v2a5 5 0 0 1 5 5h2a7 7 0 0 0-7-7m0 4v3h3a3 3 0 0 0-3-3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cast-education.svg�������������������������0000664�0000000�0000000�00000000470�14753064456�0027034�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 3H3a2 2 0 0 0-2 2v3h2V5h18v14h-7v2h7a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2M1 18v3h3a3 3 0 0 0-3-3m0-4v2a5 5 0 0 1 5 5h2a7 7 0 0 0-7-7m0-4v2a9 9 0 0 1 9 9h2c0-6.08-4.93-11-11-11m10 1.09v2L14.5 15l3.5-1.91v-2L14.5 13zM14.5 6 9 9l5.5 3L20 9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cast-off.svg�������������������������������0000664�0000000�0000000�00000000475�14753064456�0025640�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.6 1.27.25 2.75 1.41 3.8C1.16 4.13 1 4.55 1 5v3h2V5.23L18.2 19H14v2h6.41l1.9 1.72 1.34-1.48M6.5 3l2.2 2H21v11.14l2 1.81V5a2 2 0 0 0-2-2M1 10v2a9 9 0 0 1 9 9h2c0-6.08-4.92-11-11-11m0 4v2a5 5 0 0 1 5 5h2a7 7 0 0 0-7-7m0 4v3h3a3 3 0 0 0-3-3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cast-variant.svg���������������������������0000664�0000000�0000000�00000000265�14753064456�0026527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 22h12l-6-6m9-13H3a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h4v-2H3V5h18v12h-4v2h4a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cast.svg�����������������������������������0000664�0000000�0000000�00000000376�14753064456�0025070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 10v2a9 9 0 0 1 9 9h2c0-6.08-4.93-11-11-11m0 4v2a5 5 0 0 1 5 5h2a7 7 0 0 0-7-7m0 4v3h3a3 3 0 0 0-3-3M21 3H3c-1.11 0-2 .89-2 2v3h2V5h18v14h-7v2h7a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/castle.svg���������������������������������0000664�0000000�0000000�00000000344�14753064456�0025404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 13h2v2h2v-2h2v2h2v-2h2v2h2v-5l3-3V1h2l4 2-4 2v2l3 3v12H11v-3a2 2 0 0 0-2-2 2 2 0 0 0-2 2v3H2zm16-3c-.55 0-1 .54-1 1.2V13h2v-1.8c0-.66-.45-1.2-1-1.2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cat.svg������������������������������������0000664�0000000�0000000�00000001275�14753064456�0024704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 8-1.33.09C9.81 7.07 7.4 4.5 5 4.5c0 0-1.97 2.96-.04 6.91-.55.83-.89 1.26-.96 2.25l-1.93.29.21.98 1.76-.26.14.71-1.57.94.47.89 1.45-.89C5.68 18.76 8.59 20 12 20s6.32-1.24 7.47-3.68l1.45.89.47-.89-1.57-.94.14-.71 1.76.26.21-.98-1.93-.29c-.07-.99-.41-1.42-.96-2.25C20.97 7.46 19 4.5 19 4.5c-2.4 0-4.81 2.57-5.67 3.59zm-3 3a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m6 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m-4 3h2l-.7 1.39c.2.64.76 1.11 1.45 1.11a1.5 1.5 0 0 0 1.5-1.5h.5a2 2 0 0 1-2 2c-.75 0-1.4-.41-1.75-1-.35.59-1 1-1.75 1a2 2 0 0 1-2-2h.5a1.5 1.5 0 0 0 1.5 1.5c.69 0 1.25-.47 1.45-1.11z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cctv-off.svg�������������������������������0000664�0000000�0000000�00000000634�14753064456�0025642�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.84 22.73 18.11 20H17c-1.1 0-2-.9-2-2v-1.11l-2.34-2.34-.85.49c-.95.55-2.18.22-2.73-.73l-1.5-2.6c-.4-.71-.33-1.53.1-2.14L1.11 3l1.28-1.27 19.72 19.73zM18.5 13c0-.57-.2-1.1-.53-1.5l1.97-1.15c1.01-.59 1.36-1.88.77-2.89l-1.38-2.4a2.125 2.125 0 0 0-2.89-.78l-5.67 3.29 7.09 7.09c.4-.44.64-1.02.64-1.66M2 12.62l3.5 6.06 2.53-3.18-2-3.47z"/></svg>����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cctv.svg�����������������������������������0000664�0000000�0000000�00000000565�14753064456�0025075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6.03 12.03 2 3.47-2.53 3.18L2 12.62zM17 18v-2.71c.88-.39 1.5-1.26 1.5-2.29 0-.57-.2-1.1-.53-1.5l1.97-1.15c1.01-.59 1.36-1.88.77-2.89l-1.38-2.4a2.125 2.125 0 0 0-2.89-.78L8.31 9c-.95.53-1.28 1.75-.73 2.71l1.5 2.6c.55.95 1.78 1.28 2.73.73l1.88-1.08c.25.59.72 1.07 1.31 1.33V18c0 1.1.9 2 2 2h5v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ceiling-fan-light.svg����������������������0000664�0000000�0000000�00000000672�14753064456�0027416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 3v2h3v5.27c-.62.36-1 1.02-1 1.73v1h4v-1c0-.71-.38-1.37-1-1.73V5h3V3zm-2 9c-2.21 0-4 .67-4 1.5S3.79 15 6 15s4-.67 4-1.5S8.21 12 6 12m12 0c-2.21 0-4 .67-4 1.5s1.79 1.5 4 1.5 4-.67 4-1.5-1.79-1.5-4-1.5m-8 2v1c0 .72.38 1.38 1 1.73.62.36 1.38.36 2 0 .62-.35 1-1.02 1-1.73v-1zm3 5v3h-2v-3zm2.88-2.54L18 18.59 16.59 20l-2.12-2.12zm-6.34 1.42L7.41 20 6 18.59l2.12-2.12z"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ceiling-fan.svg����������������������������0000664�0000000�0000000�00000000537�14753064456�0026311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 3v2h3v5.27c-.62.36-1 1.02-1 1.73v1h4v-1c0-.71-.38-1.37-1-1.73V5h3V3zm-2 9c-2.21 0-4 .67-4 1.5S3.79 15 6 15s4-.67 4-1.5S8.21 12 6 12m12 0c-2.21 0-4 .67-4 1.5s1.79 1.5 4 1.5 4-.67 4-1.5-1.79-1.5-4-1.5m-8 2v1c0 .72.38 1.38 1 1.73.62.36 1.38.36 2 0 .62-.35 1-1.02 1-1.73v-1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ceiling-light-multiple-outline.svg���������0000664�0000000�0000000�00000000315�14753064456�0032154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.76 13 2 4H9.24l2-4zM15 6h-2v5h-3l-4 8h16l-4-8h-3zm1 14c0 1.11-.89 2-2 2s-2-.89-2-2zm-7.79-9.89L8.76 9H11V2H9v5H6l-4 8h3.76z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ceiling-light-multiple.svg�����������������0000664�0000000�0000000�00000000256�14753064456�0030503�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 11h3V6h2v5h3l4 8H6zm6 9c0 1.11-.89 2-2 2s-2-.89-2-2zm-7.79-9.89L8.76 9H11V2H9v5H6l-4 8h3.76z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ceiling-light-outline.svg������������������0000664�0000000�0000000�00000000230�14753064456�0030317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.76 11 2 4H7.24l2-4zM13 4h-2v5H8l-4 8h16l-4-8h-3zm1 14h-4a2 2 0 1 0 4 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ceiling-light.svg��������������������������0000664�0000000�0000000�00000000204�14753064456�0026643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 9h3V4h2v5h3l4 8H4zm6 9a2 2 0 0 1-2 2 2 2 0 0 1-2-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cellphone-arrow-down-variant.svg�����������0000664�0000000�0000000�00000000307�14753064456�0031640�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18 14 5-5-1.4-1.4-2.6 2.6V3h-2v7.2l-2.6-2.6L13 9zm1 2v5c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h7v4H7v14h10v-3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cellphone-arrow-down.svg�������������������0000664�0000000�0000000�00000000270�14753064456�0030175�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 1H7a2 2 0 0 0-2 2v18a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2m0 18H7V5h10zm-1-6h-3V8h-2v5H8l4 4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cellphone-basic.svg������������������������0000664�0000000�0000000�00000000500�14753064456�0027153�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 2a1 1 0 0 0-1 1v3h-4c-1.11 0-2 .89-2 2v12c0 1.11.89 2 2 2h5c1.11 0 2-.89 2-2V8c0-.74-.4-1.38-1-1.72V3a1 1 0 0 0-1-1m-5 6h5v5h-5zm0 7h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm-4 2h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm-4 2h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cellphone-charging.svg���������������������0000664�0000000�0000000�00000000273�14753064456�0027663�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 18.5V13H9l4-7.5V11h2m2 8H7V5h10m0-4H7c-1.11 0-2 .89-2 2v18a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cellphone-check.svg������������������������0000664�0000000�0000000�00000000367�14753064456�0027162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.54 23H7a2 2 0 0 1-2-2V3c0-1.11.89-2 2-2h10a2 2 0 0 1 2 2v10c-.7 0-1.37.13-2 .35V5H7v14h6c0 1.54.58 2.94 1.54 4m3.21-.84-2.75-3L16.16 18l1.59 1.59L21.34 16l1.16 1.41z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cellphone-cog.svg��������������������������0000664�0000000�0000000�00000001445�14753064456�0026653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.82 12.5c.02-.17.04-.33.04-.5s-.02-.33-.04-.5l1.08-.81c.1-.07.1-.19.06-.32L9.93 8.64c-.06-.11-.2-.14-.31-.11l-1.28.5c-.27-.2-.56-.36-.87-.49l-.2-1.33c0-.12-.11-.21-.24-.21H5c-.15 0-.26.09-.28.21L4.5 8.53c-.29.12-.58.3-.85.47l-1.28-.5c-.12-.03-.25 0-.31.13l-1.03 1.73c-.06.14-.03.25.07.33l1.08.81c-.02.17-.03.34-.03.5 0 .17.02.33.04.5l-1.09.82c-.1.07-.1.21-.06.32l1.03 1.73c.06.13.2.13.31.13l1.28-.5c.27.18.56.34.87.47l.2 1.32c.01.12.12.21.27.21h2.04c.13 0 .24-.09.25-.21l.21-1.32c.3-.12.59-.3.86-.47l1.28.5c.12.03.25 0 .31-.13L11 13.64c.04-.11 0-.24-.08-.32zM6 13.75c-1 0-1.8-.78-1.8-1.75S5 10.25 6 10.25s1.8.78 1.8 1.75S7 13.75 6 13.75M17 1H7a2 2 0 0 0-2 2v3h2V4h10v16H7v-2H5v3a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cellphone-dock.svg�������������������������0000664�0000000�0000000�00000000260�14753064456�0027015�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 15H8V5h8m0-4H8c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2M8 23h8v-2H8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cellphone-information.svg������������������0000664�0000000�0000000�00000000277�14753064456�0030432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 7h-2v2h2zm0 4h-2v6h2zm4-10H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2m0 18H7V5h10z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cellphone-key.svg��������������������������0000664�0000000�0000000�00000000456�14753064456�0026674�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 1c-1.1 0-2 .9-2 2v4h2V4h10v16H7v-3H5v4c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM6 9c-1.7 0-3 1.3-3 3s1.3 3 3 3c1.3 0 2.4-.8 2.8-2H11v2h2v-2h2v-2H8.8C8.4 9.8 7.3 9 6 9m0 2c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cellphone-link-off.svg���������������������0000664�0000000�0000000�00000000435�14753064456�0027606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 8h-6a1 1 0 0 0-1 1v4.18l2 2V10h4v7h-2.18l3 3H23a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1M4 6.27 14.73 17H4zM1.92 1.65.65 2.92l1.82 1.82A1.9 1.9 0 0 0 2 6v11H0v3h17.73l2.35 2.35 1.27-1.27L3.89 3.62zM22 6V4H6.82l2 2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cellphone-link.svg�������������������������0000664�0000000�0000000�00000000313�14753064456�0027031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 17h-4v-7h4m1-2h-6a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1M4 6h18V4H4a2 2 0 0 0-2 2v11H0v3h14v-3H4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cellphone-lock.svg�������������������������0000664�0000000�0000000�00000000543�14753064456�0027031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 1H7a2 2 0 0 0-2 2v3h2V4h10v16H7v-2H5v3a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2M8.8 11V9.5C8.8 8.1 7.4 7 6 7S3.2 8.1 3.2 9.5V11c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3m-1.3 0h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cellphone-marker.svg�����������������������0000664�0000000�0000000�00000000616�14753064456�0027363�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 13c-1.9 0-3.5 1.61-3.5 3.5 0 2.61 3.5 6.5 3.5 6.5s3.5-3.89 3.5-6.5c0-1.89-1.6-3.5-3.5-3.5m0 4.81c-.7 0-1.2-.6-1.2-1.2 0-.7.6-1.2 1.2-1.2s1.2.59 1.2 1.2c.1.6-.5 1.2-1.2 1.2M15.91 23H7a2 2 0 0 1-2-2V3c0-1.11.89-2 2-2h10a2 2 0 0 1 2 2v8.03c-.16-.03-.33-.03-.5-.03-.5 0-1 .08-1.5.22V5H7v14h6.54c.6 1.5 1.58 2.97 2.37 4"/></svg>������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cellphone-message-off.svg������������������0000664�0000000�0000000�00000000537�14753064456�0030300�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.39 1.73 1.11 3l1.11 1.11C2.08 4.38 2 4.68 2 5v14a2 2 0 0 0 2 2h7c1.1 0 2-.9 2-2v-4.11l7.84 7.84 1.27-1.27zM11 17H4V7h1.11L11 12.89zM23 4.5v3c0 .83-.67 1.5-1.5 1.5H18l-2.9 2.9-.1-.1V4.5c0-.83.67-1.5 1.5-1.5h5c.83 0 1.5.67 1.5 1.5M10.2 7l-4-4H11c1.1 0 2 .9 2 2v4.8l-2-2V7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cellphone-message.svg����������������������0000664�0000000�0000000�00000000366�14753064456�0027530�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 17V7H4v10zm0-14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm5.5 0h5A1.5 1.5 0 0 1 23 4.5v3A1.5 1.5 0 0 1 21.5 9H18l-3 3V4.5A1.5 1.5 0 0 1 16.5 3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cellphone-nfc-off.svg����������������������0000664�0000000�0000000�00000000630�14753064456�0027414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.84 22.73-1.99-1.99C18.56 21.5 17.84 22 17 22h-2.08c-.11-1.41-.42-2.75-.95-4h2.14L7 8.89V11c-.64-.26-1.31-.47-2-.63V6.89L1.11 3l1.28-1.27 19.72 19.73zM17 5v8.8l2 2V3a2 2 0 0 0-2-2H7c-.76 0-1.41.43-1.75 1.05L8.2 5zM2 20v3h3c0-1.66-1.34-3-3-3m0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7m0-4v2a9 9 0 0 1 9 9h2c0-6.08-4.92-11-11-11"/></svg>��������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cellphone-nfc.svg��������������������������0000664�0000000�0000000�00000000450�14753064456�0026644�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 16v2a5 5 0 0 1 5 5h2a7 7 0 0 0-7-7m0 4v3h3a3 3 0 0 0-3-3m0-8v2a9 9 0 0 1 9 9h2c0-6.08-4.92-11-11-11M17 1H7a2 2 0 0 0-2 2v7.37c.69.16 1.36.37 2 .63V5h10v13h-3.03c.53 1.25.84 2.59.95 4H17a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cellphone-off.svg��������������������������0000664�0000000�0000000�00000000356�14753064456�0026655�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.38 1.73 1.11 3 5 6.89V21a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-.11l1.84 1.84 1.27-1.27M17 19H7V8.89l10 10zm0-14v8.8l2 2V3a2 2 0 0 0-2-2H7c-.72 0-1.4.37-1.76 1l3 3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cellphone-play.svg�������������������������0000664�0000000�0000000�00000000262�14753064456�0027044�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 19H7V5h10m0-4H7c-1.11 0-2 .89-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3a2 2 0 0 0-2-2m-7 8v6l4-3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cellphone-remove.svg�����������������������0000664�0000000�0000000�00000000470�14753064456�0027375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.54 16.88-1.42-1.41L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19zm-8 6.12H7a2 2 0 0 1-2-2V3c0-1.11.89-2 2-2h10a2 2 0 0 1 2 2v10c-.7 0-1.37.13-2 .35V5H7v14h6c0 1.54.58 2.94 1.54 4"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cellphone-screenshot.svg�������������������0000664�0000000�0000000�00000000312�14753064456�0030250�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 1a2 2 0 0 0-2 2v18a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2zm0 3h10v16H7zm2 2v4h1.5V7.5H13V6zm4.5 8v2.5H11V18h4v-4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cellphone-settings.svg���������������������0000664�0000000�0000000�00000000307�14753064456�0027737�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 16H8V4h8m0-4H8a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2m-1 24h2v-2h-2m-4 2h2v-2h-2m-4 2h2v-2H7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cellphone-sound.svg������������������������0000664�0000000�0000000�00000000421�14753064456�0027224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.1 8.7c1.8 1.8 1.8 4.6 0 6.5l1 1c2.5-2.3 2.5-6.1 0-8.5zM18 9.8l-1 1c.5.7.5 1.6 0 2.3l1 1c1.2-1.2 1.2-3 0-4.3M14 1H4a2 2 0 0 0-2 2v18a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2m0 19H4V4h10z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cellphone-text.svg�������������������������0000664�0000000�0000000�00000000271�14753064456�0027063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 19V5H7v14zm0-18a2 2 0 0 1 2 2v18a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V3c0-1.11.89-2 2-2zM9 7h6v2H9zm0 4h4v2H9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cellphone-wireless.svg���������������������0000664�0000000�0000000�00000000757�14753064456�0027745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.07 4.93A9.97 9.97 0 0 1 23 12c0 2.76-1.12 5.26-2.93 7.07l-1.41-1.41A7.94 7.94 0 0 0 21 12c0-2.21-.89-4.22-2.34-5.66zm-2.83 2.83A5.98 5.98 0 0 1 19 12c0 1.65-.67 3.15-1.76 4.24l-1.41-1.41A4 4 0 0 0 17 12c0-1.11-.45-2.11-1.17-2.83zM13 10a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m-1.5-9A2.5 2.5 0 0 1 14 3.5V8h-2V4H3v15h9v-3h2v4.5a2.5 2.5 0 0 1-2.5 2.5h-8A2.5 2.5 0 0 1 1 20.5v-17A2.5 2.5 0 0 1 3.5 1z"/></svg>�����������������mkdocs-material-9.6.4/material/templates/.icons/material/cellphone.svg������������������������������0000664�0000000�0000000�00000000245�14753064456�0026102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 19H7V5h10m0-4H7c-1.11 0-2 .89-2 2v18a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/centos.svg���������������������������������0000664�0000000�0000000�00000002036�14753064456�0025424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.07 14.93 22 12l-2.93-2.93V4.93h-4.14L12 2 9.07 4.93H4.93v4.14L2 12l2.93 2.93v4.14h4.14L12 22l2.93-2.93h4.14zM21.41 12l-2.34 2.34v-1.88h-5.38l-.46-.46.46-.46h5.38V9.66zm-2.75 2.76-1.34 1.33-3.21-3.22h4.55zm-6.2-1.66-.46-.45-.46.45v-.64h-.64l.46-.46-.46-.46h.64v-.64l.46.46.46-.46v.64h.64l-.45.46.45.46h-.64zm1.65-1.97 3.21-3.22 1.34 1.33v1.89zm4.55-5.78v3.3l-1.34-1.33-3.82 3.81h-.63v-.63l3.81-3.82-1.33-1.33zm-5.79 4.54V5.35h1.89l1.33 1.33zM12 2.59l2.34 2.34h-1.88v5.38l-.46.46-.46-.46V4.93H9.66zm-.87 7.3L7.91 6.68l1.33-1.33h1.89zM5.35 5.35h3.3L7.32 6.68l3.81 3.82v.63h-.63L6.68 7.32 5.35 8.65zm0 3.89 1.33-1.33 3.21 3.22H5.35zM2.59 12l2.34-2.34v1.88h5.38l.46.46-.46.46H4.93v1.88zm7.3.87-3.21 3.22-1.33-1.33v-1.89zm-4.54 5.79v-3.31l1.33 1.33 3.82-3.81h.63v.63l-3.81 3.82 1.33 1.33h-3.3m5.78-4.54v4.55H9.24l-1.33-1.34zm.87 7.3-2.34-2.34h1.88v-5.38l.46-.46.46.46v5.38h1.88zm.87-7.3 3.22 3.21-1.33 1.34h-1.89zm2.48 4.55 1.33-1.34-3.81-3.82v-.63h.63l3.82 3.81 1.33-1.33v3.31z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/certificate-outline.svg��������������������0000664�0000000�0000000�00000000410�14753064456�0030062�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13 21 2-1 2 1v-7h-4m4-5V7l-2 1-2-1v2l-2 1 2 1v2l2-1 2 1v-2l2-1m1-7H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h7v-2H4V5h16v10h-1v2h1a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-9 5H5V6h6m-2 5H5V9h4m2 5H5v-2h6Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/certificate.svg����������������������������0000664�0000000�0000000�00000000400�14753064456�0026404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3c-1.11 0-2 .89-2 2v10a2 2 0 0 0 2 2h8v5l3-3 3 3v-5h2a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H4m8 2 3 2 3-2v3.5l3 1.5-3 1.5V15l-3-2-3 2v-3.5L9 10l3-1.5zM4 5h5v2H4zm0 4h3v2H4zm0 4h5v2H4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chair-rolling.svg��������������������������0000664�0000000�0000000�00000000315�14753064456�0026661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 10v3h-3v-3zM2 13h3v-3H2zm15-8c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v8h10zM7 15H6v2h5v1l-4 4h2.8l2.2-2.2 2.2 2.2H17l-4-4v-1h5v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chair-school.svg���������������������������0000664�0000000�0000000�00000000416�14753064456�0026504�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 5v2h-5l-3.47 5H16v2h-1.54l3.71 8h-2.2l-.93-2H6.38l-1.03 2H3.1l4.13-8H7c-.45 0-.83-.3-.96-.7L2.87 3.84l.95-.34c.52-.16 1.09.13 1.26.65L7.72 12h4.38l3.47-5H12V5zM9.5 14l-2.08 4h6.69l-1.85-4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chandelier.svg�����������������������������0000664�0000000�0000000�00000001270�14753064456�0026226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 13.1c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3M9 2v1a2 2 0 0 0 2 2v4.1c.32-.06.66-.1 1-.1s.68.04 1 .1V5c1.11 0 2-.89 2-2V2zm-5 9.1c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3m16 0c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3m0 7c-.68 0-1.33-.14-1.92-.39-.48.24-1.01.39-1.58.39-1.11 0-2.09-.53-2.73-1.33-.55.23-1.14.33-1.77.33s-1.22-.1-1.77-.33c-.64.8-1.62 1.33-2.73 1.33-.57 0-1.1-.15-1.58-.39-.59.25-1.24.39-1.92.39-.27 0-.54-.04-.8-.1a5.44 5.44 0 0 0 4.3 2.1c1.33 0 2.55-.47 3.5-1.26v2.26c0 .55.45 1 1 1s1-.45 1-1v-2.26c.95.79 2.17 1.26 3.5 1.26 1.74 0 3.29-.81 4.3-2.1-.26.06-.53.1-.8.1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/charity-search.svg�������������������������0000664�0000000�0000000�00000001602�14753064456�0027035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.5 6-7.1 7.1c-.8-.9-1.2-2.2-1.4-3.9-.1-1.8.4-3.3 1.5-4.6 1.2-1.2 2.6-1.8 4.3-1.8q2.55 0 4.2 1.8l1.7 1.7c-.7.2-1.3.5-1.9.9zm5 0c2.9 0 5.4 1.9 6.2 4.6.1-.4.2-.8.2-1.3.2-1.7-.3-3.2-1.3-4.5-.5-.5-1.2-1-2-1.4q-1.35-.6-2.4-.6c-1.3 0-2.5.4-3.5 1.1L14.8 6zM11 7.9l-.4-.4c-.8.6-2.7 2.5-5.7 5.6-.2.2-.3.4-.3.7s.1.5.3.7.4.3.7.3c.2 0 .5-.1.7-.3L9 11.8c.2-1.6.9-2.9 2-3.9m-.8 8.4-1.1 1.1c-.1.1-.2.4-.2.6 0 .3.1.5.3.7s.4.3.6.3c.3 0 .5-.1.7-.3l1.1-1.1c-.5-.3-1-.8-1.4-1.3M9 13.2l-2 2c-.2.2-.3.5-.3.8s.1.5.3.7.5.3.7.3c.3 0 .5-.1.7-.3l1.2-1.3c-.3-.7-.5-1.4-.6-2.2m3.5 5-1.2 1.2c-.2.2-.3.4-.3.7s.1.5.3.7.4.3.7.3.5-.1.7-.3l1.9-1.9c-.8-.1-1.5-.3-2.1-.7m9.7-.4-1.4 1.4-2.9-2.9c-.7.4-1.5.7-2.4.7-2.5 0-4.5-2-4.5-4.5S13 8 15.5 8s4.5 2 4.5 4.5c0 .9-.3 1.7-.7 2.4zM18 12.5c0-1.4-1.1-2.5-2.5-2.5S13 11.1 13 12.5s1.1 2.5 2.5 2.5 2.5-1.1 2.5-2.5"/></svg>������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/charity.svg��������������������������������0000664�0000000�0000000�00000002030�14753064456�0025566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.75 3.94c1-.72 2.16-1.08 3.47-1.08.72 0 1.51.19 2.37.59q1.29.585 2.04 1.38c1.03 1.28 1.46 2.77 1.31 4.47-.16 1.7-.72 3.03-1.69 3.97l-7.59 7.59c-.19.19-.43.28-.71.28s-.51-.09-.7-.28a.94.94 0 0 1-.28-.7c0-.28.09-.52.28-.71l4.59-4.59c.25-.22.25-.45 0-.7s-.48-.25-.7 0l-4.59 4.59a.95.95 0 0 1-.71.28c-.28 0-.51-.09-.7-.28a.94.94 0 0 1-.28-.7c0-.28.09-.52.28-.71l4.59-4.59q.405-.375 0-.75c-.23-.25-.45-.25-.7 0l-4.59 4.64a.98.98 0 0 1-.71.28c-.28 0-.52-.09-.73-.28-.2-.19-.3-.42-.3-.7q0-.42.33-.75l4.6-4.6c.25-.25.25-.48 0-.7s-.49-.22-.71 0L6.28 14.5c-.22.2-.45.31-.7.31-.28 0-.52-.1-.7-.31-.19-.2-.29-.44-.29-.72s.1-.51.29-.7C7.94 10 9.83 8.14 10.55 7.45l3.56 3.52c.39.37.84.56 1.39.56.7 0 1.25-.28 1.66-.84.28-.41.38-.86.3-1.36s-.29-.92-.63-1.27zm2.06 6.33L10.55 6l-7.08 7.08c-.84-.85-1.32-2.15-1.43-3.92-.11-1.76.37-3.29 1.43-4.57 1.19-1.18 2.61-1.78 4.26-1.78 1.66 0 3.07.6 4.22 1.78l4.27 4.27c.19.19.28.42.28.7s-.09.52-.28.71c-.19.18-.42.28-.72.28-.27 0-.5-.1-.69-.28"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-arc.svg������������������������������0000664�0000000�0000000�00000000677�14753064456�0026006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.18 19.6-2.01-3.48c.98-.72 1.66-1.84 1.8-3.12H20a8.55 8.55 0 0 1-3.82 6.6M13 7.03V3c4.3.26 7.74 3.7 8 8h-4.03A4.49 4.49 0 0 0 13 7.03M7 12.5c0 .64.13 1.25.38 1.8L3.9 16.31A8.4 8.4 0 0 1 3 12.5C3 7.97 6.54 4.27 11 4v4.03c-2.25.25-4 2.15-4 4.47m4.5 8.5c-2.97 0-5.58-1.5-7.1-3.82l3.48-2.01A4.47 4.47 0 0 0 11.5 17c.64 0 1.25-.13 1.8-.38l2.01 3.48c-1.15.58-2.44.9-3.81.9"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-areaspline-variant.svg���������������0000664�0000000�0000000�00000000200�14753064456�0031004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 21H2V3h2v12.54L9.5 6 16 9.78l4.24-7.33 1.73 1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-areaspline.svg�����������������������0000664�0000000�0000000�00000000274�14753064456�0027355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.45 15.18 22 7.31V21H2V3h2v12.54L9.5 6 16 9.78l4.24-7.33 1.73 1-5.23 9.05-6.51-3.75L4.31 19h2.26l4.39-7.56z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-bar-stacked.svg����������������������0000664�0000000�0000000�00000000266�14753064456�0027413�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 21H2V3h2v16h2v-2h4v2h2v-3h4v3h2v-2h4zm-4-7h4v2h-4zm-6-8h4v3h-4zm4 9h-4v-5h4zM6 10h4v2H6zm4 6H6v-3h4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-bar.svg������������������������������0000664�0000000�0000000�00000000167�14753064456�0025777�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 21H2V3h2v16h2v-9h4v9h2V6h4v13h2v-5h4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-bell-curve-cumulative.svg������������0000664�0000000�0000000�00000000266�14753064456�0031447�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 19v1h18v2H2V2h2v15c3 0 6-2 8.1-5.6 3-5 6.3-7.4 9.9-7.4v2c-2.8 0-5.5 2.1-8.1 6.5C11.3 16.6 7.7 19 4 19"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-bell-curve.svg�����������������������0000664�0000000�0000000�00000000437�14753064456�0027273�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.96 11.31C10.82 8.1 11.5 6 13 6s2.18 2.1 3.04 5.31C17 14.92 18.1 19 22 19v-2c-2.2 0-3-2.46-4.03-6.2C17.08 7.46 16.15 4 13 4s-4.08 3.46-4.97 6.8C7.03 14.54 6.2 17 4 17V2H2v20h20v-2H4v-1c3.9 0 5-4.08 5.96-7.69"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-box-multiple-outline.svg�������������0000664�0000000�0000000�00000000351�14753064456�0031324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 16V4H8v12m14 0c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2m-6 16v2H4c-1.1 0-2-.9-2-2V7h2v13m12-9h2v3h-2m-3-8h2v8h-2m-3-6h2v6h-2Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-box-multiple.svg���������������������0000664�0000000�0000000�00000000334�14753064456�0027650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 20h12v2H4c-1.1 0-2-.9-2-2V7h2m18-3v12c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2M12 8h-2v6h2m3-8h-2v8h2m3-3h-2v3h2Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-box-outline.svg����������������������0000664�0000000�0000000�00000000317�14753064456�0027475�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 17H7v-7h2zm4 0h-2V7h2zm4 0h-2v-4h2zm2 2H5V5h14v14.1M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-box-plus-outline.svg�����������������0000664�0000000�0000000�00000000336�14753064456�0030457�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 5v2h-3v3h-2V7h-3V5h3V2h2v3zm-3 14H5V5h6V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6h-2zm-4-6v4h2v-4zm-4 4h2V9h-2zm-2 0v-6H7v6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-box.svg������������������������������0000664�0000000�0000000�00000000277�14753064456�0026025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2M9 17H7v-7h2zm4 0h-2V7h2zm4 0h-2v-4h2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-bubble.svg���������������������������0000664�0000000�0000000�00000000502�14753064456�0026457�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.2 11.2c1.77 0 3.2 1.43 3.2 3.2s-1.43 3.2-3.2 3.2S4 16.17 4 14.4s1.43-3.2 3.2-3.2m7.6 4.8a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m.4-12A4.8 4.8 0 0 1 20 8.8c0 2.65-2.15 4.8-4.8 4.8a4.8 4.8 0 0 1-4.8-4.8c0-2.65 2.15-4.8 4.8-4.8"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-donut-variant.svg��������������������0000664�0000000�0000000�00000001101�14753064456�0030013�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2.05c5.05.5 9 4.77 9 9.95 0 1.45-.32 2.83-.88 4.07l-2.62-1.53c.32-.79.5-1.64.5-2.54 0-3.53-2.61-6.43-6-6.92zM12 19c2.21 0 4.17-1 5.45-2.62l2.6 1.53A9.97 9.97 0 0 1 12 22C6.47 22 2 17.5 2 12a9.99 9.99 0 0 1 9-9.95v3.03C7.61 5.57 5 8.47 5 12a7 7 0 0 0 7 7m0-13a6 6 0 0 1 6 6c0 2.97-2.16 5.44-5 5.92v-3.09c1.17-.41 2-1.52 2-2.83a3 3 0 0 0-3-3l-.55.05-1.54-2.67C10.56 6.13 11.26 6 12 6m-6 6c0-1.86.85-3.5 2.18-4.62l1.54 2.67C9.27 10.57 9 11.26 9 12c0 1.31.83 2.42 2 2.83v3.09c-2.84-.48-5-2.95-5-5.92"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-donut.svg����������������������������0000664�0000000�0000000�00000000525�14753064456�0026362�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.5 2.54l2.62 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95M12 19a7 7 0 0 1-7-7c0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95a10 10 0 0 0 10 10c3.3 0 6.23-1.61 8.05-4.09l-2.6-1.53A6.89 6.89 0 0 1 12 19"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-gantt.svg����������������������������0000664�0000000�0000000�00000000234�14753064456�0026343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5h8V2h2v20h-2v-4H6v-3h4v-2H4v-3h6V8H2zm12 0h3v3h-3zm0 5h5v3h-5zm0 5h8v3h-8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-histogram.svg������������������������0000664�0000000�0000000�00000000152�14753064456�0027222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h2v10h4V7h4v4h4v4h4v6H3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-line-stacked.svg���������������������0000664�0000000�0000000�00000000235�14753064456�0027572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.45 15.18 22 6.81V21H2V3h2v16h2.57l4.39-7.56zM22 3l-.03.45L17 11l-7-5-4 6V3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-line-variant.svg���������������������0000664�0000000�0000000�00000000203�14753064456�0027613�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3.5 18.5 6-6 4 4L22 6.92 20.59 5.5l-7.09 8-4-4L2 17z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-line.svg�����������������������������0000664�0000000�0000000�00000000234�14753064456�0026155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16 11.78 4.24-7.33 1.73 1-5.23 9.05-6.51-3.75L5.46 19H22v2H2V3h2v14.54L9.5 8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-multiline.svg������������������������0000664�0000000�0000000�00000000500�14753064456�0027224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 6.92 20.59 5.5l-2.85 3.22C15.68 6.4 12.83 5 9.61 5 6.72 5 4.07 6.16 2 8l1.42 1.42C5.12 7.93 7.27 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24L13.5 13.5l-4-4L2 17l1.5 1.5 6-6 4 4 4.05-4.57c.75 1.35 1.25 2.9 1.45 4.57h2c-.22-2.32-.95-4.41-2.04-6.16z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-multiple.svg�������������������������0000664�0000000�0000000�00000000266�14753064456�0027066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 16v2H6V2h2v11.57l5.71-9 3.16 2.11 2.42-2.42 1.42 1.42-3.58 3.61-2.84-1.89L8.82 16M4 20V4H2v18h20v-2Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-pie-outline.svg����������������������0000664�0000000�0000000�00000000713�14753064456�0027462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 11h6.95q-.37-2.75-2.29-4.66Q15.75 4.43 13 4.05m-2 15.9V4.05q-3 .38-5 2.64T4 12t2 5.31q2 2.27 5 2.64m2 0q2.75-.35 4.68-2.27 1.92-1.93 2.27-4.68H13m-1 9q-2.07 0-3.9-.79-1.82-.78-3.17-2.13T2.79 15.9Q2 14.08 2 12t.79-3.9 2.14-3.17T8.1 2.79Q9.93 2 12 2t3.89.79q1.81.79 3.17 2.15 1.37 1.36 2.15 3.17Q22 9.93 22 12q0 2.05-.79 3.88-.78 1.82-2.13 3.18-1.35 1.37-3.18 2.15-1.82.79-3.9.79"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-pie.svg������������������������������0000664�0000000�0000000�00000000255�14753064456�0026006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 2v20c-5.1-.5-9-4.8-9-10s3.9-9.5 9-10m2 0v9h9c-.5-4.8-4.2-8.5-9-9m0 11v9c4.7-.5 8.5-4.2 9-9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-ppf.svg������������������������������0000664�0000000�0000000�00000000262�14753064456�0026014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 6v2c3.2 0 6.36 1.18 8.57 3.15C15.64 13 16.83 15.5 17 18h1.97A14 12.5 0 0 0 5 6m17 15H2V3h2v16h18Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-sankey-variant.svg�������������������0000664�0000000�0000000�00000000324�14753064456�0030162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4v2H4V4H2v8h2v-2c4.16 0 5.92 2.11 7.77 4.34S15.65 19 20 19v2h2v-6h-2v2c-3.41 0-4.93-1.83-6.69-3.94C11.34 10.69 9.1 8 4 8h16v2h2V4Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-sankey.svg���������������������������0000664�0000000�0000000�00000000270�14753064456�0026520�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 5H4V2H2v20h20v-2H4V9c4.09 0 6.13 2 8.29 4.21S17.09 18 22 18v-2c-4.09 0-6.13-2-8.29-4.21S8.91 7 4 7h18Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-scatter-plot-hexbin.svg��������������0000664�0000000�0000000�00000000327�14753064456�0031125�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2h2v18h18v2H2zm12 12.5L12 18H7.94l-2.02-3.5L7.94 11H12zm.08-8L12.06 10H8L6 6.5 8 3h4.06zm7.17 4L19.23 14h-4.04l-2.02-3.5L15.19 7h4.04z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-scatter-plot.svg���������������������0000664�0000000�0000000�00000000424�14753064456�0027650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2h2v18h18v2H2zm7 8a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3m4-8a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3m5 10a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-timeline-variant-shimmer.svg���������0000664�0000000�0000000�00000000677�14753064456�0032153�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 8c-1.5 0-2.3 1.4-1.9 2.5l-3.6 3.6c-.3-.1-.7-.1-1 0l-2.6-2.6c.4-1.1-.4-2.5-1.9-2.5-1.4 0-2.3 1.4-1.9 2.5L3.5 16c-1.1-.3-2.5.5-2.5 2 0 1.1.9 2 2 2 1.4 0 2.3-1.4 1.9-2.5l4.5-4.6c.3.1.7.1 1 0l2.6 2.6c-.3 1 .5 2.5 2 2.5s2.3-1.4 1.9-2.5l3.6-3.6c1.1.3 2.5-.5 2.5-1.9 0-1.1-.9-2-2-2m-6 1 .9-2.1L18 6l-2.1-.9L15 3l-.9 2.1L12 6l2.1.9zM3.5 11 4 9l2-.5L4 8l-.5-2L3 8l-2 .5L3 9z"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-timeline-variant.svg�����������������0000664�0000000�0000000�00000000676�14753064456�0030510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3 14 .5.07L8.07 9.5a1.95 1.95 0 0 1 .52-1.91c.78-.79 2.04-.79 2.82 0 .53.52.7 1.26.52 1.91l2.57 2.57.5-.07c.18 0 .35 0 .5.07l3.57-3.57C19 8.35 19 8.18 19 8a2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2c-.18 0-.35 0-.5-.07l-3.57 3.57c.07.15.07.32.07.5a2 2 0 0 1-2 2 2 2 0 0 1-2-2l.07-.5-2.57-2.57c-.32.07-.68.07-1 0L4.93 15.5 5 16a2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2"/></svg>������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-timeline.svg�������������������������0000664�0000000�0000000�00000000215�14753064456�0027033�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2h2v18h18v2H2zm5 8h10v3H7zm4 5h10v3H11zM6 4h16v4h-2V6H8v2H6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-tree.svg�����������������������������0000664�0000000�0000000�00000000216�14753064456�0026165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 6h8v16h-8zM2 4h20V2H2zm0 4h10V6H2zm7 14h3V10H9zm-7 0h5V10H2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chart-waterfall.svg������������������������0000664�0000000�0000000�00000000222�14753064456�0027204�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2h2v18h18v2H2zm15 0h3v16h-3zM6 11h3v7H6zm7-8h3v4h-3zm-3 5h3v4h-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chat-alert-outline.svg���������������������0000664�0000000�0000000�00000000465�14753064456�0027636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3C6.5 3 2 6.58 2 11a7.22 7.22 0 0 0 2.75 5.5c0 .6-.42 2.17-2.75 4.5 2.37-.11 4.64-1 6.47-2.5 1.14.33 2.34.5 3.53.5 5.5 0 10-3.58 10-8s-4.5-8-10-8m0 14c-4.42 0-8-2.69-8-6s3.58-6 8-6 8 2.69 8 6-3.58 6-8 6m-1-4v2h2v-2zm0-2h2V7h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chat-alert.svg�����������������������������0000664�0000000�0000000�00000000374�14753064456�0026160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3c5.5 0 10 3.58 10 8s-4.5 8-10 8c-1.24 0-2.43-.18-3.53-.5C5.55 21 2 21 2 21c2.33-2.33 2.7-3.9 2.75-4.5C3.05 15.07 2 13.13 2 11c0-4.42 4.5-8 10-8m-1 11v2h2v-2zm0-2h2V6h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chat-minus-outline.svg���������������������0000664�0000000�0000000�00000000563�14753064456�0027661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3c5.5 0 10 3.58 10 8 0 .58-.08 1.14-.22 1.68-.59-.3-1.23-.52-1.9-.62.08-.34.12-.7.12-1.06 0-3.31-3.58-6-8-6s-8 2.69-8 6 3.58 6 8 6l1.09-.05L13 18l.08.95L12 19c-1.19 0-2.38-.17-3.53-.5C6.64 20 4.37 20.89 2 21c2.33-2.33 2.75-3.9 2.75-4.5A7.22 7.22 0 0 1 2 11c0-4.42 4.5-8 10-8m11 14v2h-8v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chat-minus.svg�����������������������������0000664�0000000�0000000�00000000442�14753064456�0026200�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 17v2h-8v-2zM12 3c5.5 0 10 3.58 10 8 0 .58-.08 1.14-.22 1.68A6.005 6.005 0 0 0 13 18l.08.95L12 19c-1.24 0-2.43-.18-3.53-.5C5.55 21 2 21 2 21c2.33-2.33 2.7-3.9 2.75-4.5C3.05 15.07 2 13.14 2 11c0-4.42 4.5-8 10-8"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chat-outline.svg���������������������������0000664�0000000�0000000�00000000434�14753064456�0026525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3C6.5 3 2 6.58 2 11a7.22 7.22 0 0 0 2.75 5.5c0 .6-.42 2.17-2.75 4.5 2.37-.11 4.64-1 6.47-2.5 1.14.33 2.34.5 3.53.5 5.5 0 10-3.58 10-8s-4.5-8-10-8m0 14c-4.42 0-8-2.69-8-6s3.58-6 8-6 8 2.69 8 6-3.58 6-8 6"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chat-plus-outline.svg����������������������0000664�0000000�0000000�00000000605�14753064456�0027506�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3c5.5 0 10 3.58 10 8 0 .58-.08 1.14-.22 1.68-.59-.3-1.23-.52-1.9-.62.08-.34.12-.7.12-1.06 0-3.31-3.58-6-8-6s-8 2.69-8 6 3.58 6 8 6l1.09-.05L13 18l.08.95L12 19c-1.19 0-2.38-.17-3.53-.5C6.64 20 4.37 20.89 2 21c2.33-2.33 2.75-3.9 2.75-4.5A7.22 7.22 0 0 1 2 11c0-4.42 4.5-8 10-8m6 11h2v3h3v2h-3v3h-2v-3h-3v-2h3z"/></svg>���������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chat-plus.svg������������������������������0000664�0000000�0000000�00000000465�14753064456�0026035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 14h2v3h3v2h-3v3h-2v-3h-3v-2h3zM12 3c5.5 0 10 3.58 10 8 0 .58-.08 1.14-.22 1.68A6.005 6.005 0 0 0 13 18l.08.95L12 19c-1.24 0-2.43-.18-3.53-.5C5.55 21 2 21 2 21c2.33-2.33 2.7-3.9 2.75-4.5C3.05 15.07 2 13.14 2 11c0-4.42 4.5-8 10-8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chat-processing-outline.svg����������������0000664�0000000�0000000�00000000504�14753064456�0030675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3C6.5 3 2 6.58 2 11a7.22 7.22 0 0 0 2.75 5.5c0 .6-.42 2.17-2.75 4.5 2.37-.11 4.64-1 6.47-2.5 1.14.33 2.34.5 3.53.5 5.5 0 10-3.58 10-8s-4.5-8-10-8m0 14c-4.42 0-8-2.69-8-6s3.58-6 8-6 8 2.69 8 6-3.58 6-8 6m5-5v-2h-2v2zm-4 0v-2h-2v2zm-4 0v-2H7v2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chat-processing.svg������������������������0000664�0000000�0000000�00000000412�14753064456�0027216�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3c5.5 0 10 3.58 10 8s-4.5 8-10 8c-1.24 0-2.43-.18-3.53-.5C5.55 21 2 21 2 21c2.33-2.33 2.7-3.9 2.75-4.5C3.05 15.07 2 13.13 2 11c0-4.42 4.5-8 10-8m5 9v-2h-2v2zm-4 0v-2h-2v2zm-4 0v-2H7v2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chat-question-outline.svg������������������0000664�0000000�0000000�00000001015�14753064456�0030366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3C6.5 3 2 6.6 2 11c0 2.2 1.1 4.2 2.8 5.5 0 .6-.4 2.2-2.8 4.5 2.4-.1 4.6-1 6.5-2.5 1.1.3 2.3.5 3.5.5 5.5 0 10-3.6 10-8s-4.5-8-10-8m0 14c-4.4 0-8-2.7-8-6s3.6-6 8-6 8 2.7 8 6-3.6 6-8 6m.2-10.5c-.9 0-1.6.2-2.1.5-.6.4-.9 1-.8 1.7h2q0-.45.3-.6c.2-.1.4-.2.7-.2s.6.1.8.3.3.4.3.7-.1.5-.2.7c-.2.2-.4.4-.6.5-.5.3-.9.6-1.1.8-.4.3-.5.6-.5 1.1h2c0-.3.1-.5.1-.7.1-.2.3-.3.5-.5.5-.2.8-.5 1.1-.9s.4-.8.4-1.2c0-.7-.3-1.3-.8-1.7-.4-.3-1.2-.5-2.1-.5M11 13v2h2v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chat-question.svg��������������������������0000664�0000000�0000000�00000000712�14753064456�0026714�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3C6.5 3 2 6.6 2 11c0 2.1 1 4.1 2.8 5.5 0 .6-.4 2.2-2.8 4.5 0 0 3.5 0 6.5-2.5 1.1.3 2.3.5 3.5.5 5.5 0 10-3.6 10-8s-4.5-8-10-8m1 12h-2v-2h2zm1.8-5c-.3.4-.7.6-1.1.8-.3.2-.4.3-.5.5-.2.2-.2.4-.2.7h-2c0-.5.1-.8.3-1.1.2-.2.6-.5 1.1-.8.3-.1.5-.3.6-.5s.2-.5.2-.7c0-.3-.1-.5-.3-.7s-.5-.3-.8-.3-.5.1-.7.2q-.3.15-.3.6h-2c.1-.7.4-1.3.9-1.7s1.2-.5 2.1-.5 1.7.2 2.2.6.8 1 .8 1.7q.15.6-.3 1.2"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chat-remove-outline.svg��������������������0000664�0000000�0000000�00000000746�14753064456�0030026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.46 15.88 1.42-1.42L19 16.59l2.12-2.12 1.42 1.41L20.41 18l2.13 2.12-1.42 1.42L19 19.41l-2.12 2.13-1.42-1.42L17.59 18l-2.12-2.12M12 3c5.5 0 10 3.58 10 8 0 .58-.08 1.14-.22 1.68-.59-.3-1.23-.52-1.9-.62.08-.34.12-.7.12-1.06 0-3.31-3.58-6-8-6s-8 2.69-8 6 3.58 6 8 6l1.09-.05L13 18l.08.95L12 19c-1.19 0-2.38-.17-3.53-.5C6.64 20 4.37 20.89 2 21c2.33-2.33 2.75-3.9 2.75-4.5A7.22 7.22 0 0 1 2 11c0-4.42 4.5-8 10-8"/></svg>��������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chat-remove.svg����������������������������0000664�0000000�0000000�00000000625�14753064456�0026345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.46 15.88 1.42-1.42L19 16.59l2.12-2.12 1.42 1.41L20.41 18l2.13 2.12-1.42 1.42L19 19.41l-2.12 2.13-1.42-1.42L17.59 18l-2.12-2.12M12 3c5.5 0 10 3.58 10 8 0 .58-.08 1.14-.22 1.68A6.005 6.005 0 0 0 13 18l.08.95L12 19c-1.24 0-2.43-.18-3.53-.5C5.55 21 2 21 2 21c2.33-2.33 2.7-3.9 2.75-4.5C3.05 15.07 2 13.14 2 11c0-4.42 4.5-8 10-8"/></svg>�����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chat-sleep-outline.svg���������������������0000664�0000000�0000000�00000000507�14753064456�0027634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3C6.5 3 2 6.58 2 11a7.22 7.22 0 0 0 2.75 5.5c0 .6-.42 2.17-2.75 4.5 2.37-.11 4.64-1 6.47-2.5 1.14.33 2.34.5 3.53.5 5.5 0 10-3.58 10-8s-4.5-8-10-8m0 14c-4.42 0-8-2.69-8-6s3.58-6 8-6 8 2.69 8 6-3.58 6-8 6m3-10H9v2h3.24L9 12.7V15h6v-2h-3.24L15 9.3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chat-sleep.svg�����������������������������0000664�0000000�0000000�00000000411�14753064456�0026151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3C6.5 3 2 6.58 2 11c0 2.13 1.05 4.07 2.75 5.5-.05.6-.42 2.17-2.75 4.5 0 0 3.55 0 6.47-2.5 1.1.32 2.29.5 3.53.5 5.5 0 10-3.58 10-8s-4.5-8-10-8m3 6.3L11.76 13H15v2H9v-2.3L12.24 9H9V7h6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chat.svg�����������������������������������0000664�0000000�0000000�00000000342�14753064456�0025046�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3c5.5 0 10 3.58 10 8s-4.5 8-10 8c-1.24 0-2.43-.18-3.53-.5C5.55 21 2 21 2 21c2.33-2.33 2.7-3.9 2.75-4.5C3.05 15.07 2 13.13 2 11c0-4.42 4.5-8 10-8"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/check-all.svg������������������������������0000664�0000000�0000000�00000000314�14753064456�0025751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.41 13.41 6 19l1.41-1.42L1.83 12m20.41-6.42L11.66 16.17 7.5 12l-1.43 1.41L11.66 19l12-12M18 7l-1.41-1.42-6.35 6.35 1.42 1.41z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/check-bold.svg�����������������������������0000664�0000000�0000000�00000000207�14753064456�0026122�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9 20.42-6.21-6.21 2.83-2.83L9 14.77l9.88-9.89 2.83 2.83z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/check-circle-outline.svg�������������������0000664�0000000�0000000�00000000360�14753064456�0030120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/check-circle.svg���������������������������0000664�0000000�0000000�00000000267�14753064456�0026451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m-2 15-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/check-decagram-outline.svg�����������������0000664�0000000�0000000�00000000626�14753064456�0030427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23 12-2.4-2.8.3-3.7-3.6-.8-1.9-3.2L12 3 8.6 1.5 6.7 4.7l-3.6.8.3 3.7L1 12l2.4 2.8-.3 3.7 3.6.8 1.9 3.2L12 21l3.4 1.5 1.9-3.2 3.6-.8-.3-3.7zm-4.3 4.9-2.7.6-1.4 2.4-2.6-1.1-2.6 1.1L8 17.5l-2.7-.6.2-2.8L3.7 12l1.8-2.1-.2-2.8L8 6.5l1.4-2.4L12 5.2l2.6-1.1L16 6.5l2.7.6-.2 2.8 1.8 2.1-1.8 2.1zm-2.1-9.3L18 9l-8 8-4-4 1.4-1.4 2.6 2.6z"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/check-decagram.svg�������������������������0000664�0000000�0000000�00000000445�14753064456�0026751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23 12-2.44-2.78.34-3.68-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68zm-13 5-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/check-network-outline.svg������������������0000664�0000000�0000000�00000000453�14753064456�0030353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 20a1 1 0 0 0-1-1h-1v-2h4a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h4v2h-1a1 1 0 0 0-1 1H2v2h7a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1h7v-2zm-8-5V5h10v10zm1-4.63 1.24-1.24 1.69 1.7L14.76 7 16 8.5l-5.07 5.07z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/check-network.svg��������������������������0000664�0000000�0000000�00000000443�14753064456�0026675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 20a1 1 0 0 0-1-1h-1v-2h4a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h4v2h-1a1 1 0 0 0-1 1H2v2h7a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1h7v-2zm-6.75-9.92 1.16-1.16L11 10.5l3.59-3.58 1.16 1.41L11 13.08z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/check-outline.svg��������������������������0000664�0000000�0000000�00000000301�14753064456�0026654�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.78 2.2 24 6.42 8.44 22 0 13.55l4.22-4.22 4.22 4.22zm0 2.8L8.44 16.36l-4.22-4.17-1.41 1.36 5.63 5.62L21.19 6.42z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/check-underline-circle-outline.svg���������0000664�0000000�0000000�00000000417�14753064456�0032106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m-5-5h10v2H7zm3.3-3.8L8.4 9.3 7 10.7l3.3 3.3L17 7.3l-1.4-1.4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/check-underline-circle.svg�����������������0000664�0000000�0000000�00000000325�14753064456�0030427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m5 16H7v-2h10zm-6.7-4L7 10.7l1.4-1.4 1.9 1.9 5.3-5.3L17 7.3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/check-underline.svg������������������������0000664�0000000�0000000�00000000215�14753064456�0027166�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 5 9 17l-5.5-5.5 1.41-1.41L9 14.17 19.59 3.59zM3 21v-2h18v2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/check.svg����������������������������������0000664�0000000�0000000�00000000177�14753064456�0025212�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 7 9 19l-5.5-5.5 1.41-1.41L9 16.17 19.59 5.59z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbook-arrow-left.svg�������������������0000664�0000000�0000000�00000000351�14753064456�0030137�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 14h10.53c-.28.31-.53.64-.73 1H5zm16-6v4.08c.72.12 1.39.37 2 .72V5H1v14h13.08a6.5 6.5 0 0 1-.08-1c0-.34.03-.67.08-1H3V8zM5 10h7v2H5zm11 8 3-3v2h4v2h-4v2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbook-arrow-right.svg������������������0000664�0000000�0000000�00000000351�14753064456�0030322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 14h10.53c-.28.31-.53.64-.73 1H5zm16-6v4.08c.72.12 1.39.37 2 .72V5H1v14h13.08a6.5 6.5 0 0 1-.08-1c0-.34.03-.67.08-1H3V8zM5 10h7v2H5zm19 8-3-3v2h-4v2h4v2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbook.svg������������������������������0000664�0000000�0000000�00000000177�14753064456�0026065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 14h14v1H5zm16 3V8H3v9zM1 5h22v14H1zm4 5h7v2H5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbox-blank-badge-outline.svg�����������0000664�0000000�0000000�00000000452�14753064456�0031521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 4.5C23 6.43 21.43 8 19.5 8S16 6.43 16 4.5 17.57 1 19.5 1 23 2.57 23 4.5M19.5 10H19v9H5V5h9.03C14 4.84 14 4.67 14 4.5c0-.5.08-1 .21-1.5H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V9.79c-.5.13-1 .21-1.5.21"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbox-blank-badge.svg�������������������0000664�0000000�0000000�00000000434�14753064456�0030044�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 4.5C23 6.43 21.43 8 19.5 8S16 6.43 16 4.5 17.57 1 19.5 1 23 2.57 23 4.5M19.5 10A5.51 5.51 0 0 1 14 4.5c0-.5.08-1 .21-1.5H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V9.79c-.5.13-1 .21-1.5.21"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbox-blank-circle-outline.svg����������0000664�0000000�0000000�00000000327�14753064456�0031721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbox-blank-circle.svg������������������0000664�0000000�0000000�00000000231�14753064456�0030236�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbox-blank-off-outline.svg�������������0000664�0000000�0000000�00000000317�14753064456�0031231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3 3 4.9V19a2 2 0 0 0 2 2h14.1l1.74 1.73zM5 19V6.89L17.11 19zM8.2 5l-2-2H19a2 2 0 0 1 2 2v12.8l-2-2V5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbox-blank-off.svg���������������������0000664�0000000�0000000�00000000264�14753064456�0027555�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.84 22.73 19.1 21H5a2 2 0 0 1-2-2V4.9L1.11 3l1.28-1.27 19.72 19.73zM21 5a2 2 0 0 0-2-2H6.2L21 17.8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbox-blank-outline.svg�����������������0000664�0000000�0000000�00000000245�14753064456�0030461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m0 2v14H5V5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbox-blank.svg�������������������������0000664�0000000�0000000�00000000231�14753064456�0026777�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbox-intermediate-variant.svg����������0000664�0000000�0000000�00000000260�14753064456�0032026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 16H5V5h14zM7 17V7h10"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbox-intermediate.svg������������������0000664�0000000�0000000�00000000257�14753064456�0030372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m0 16H5V5h14zm-2-2H7V7h10z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbox-marked-circle-auto-outline.svg����0000664�0000000�0000000�00000000540�14753064456�0033040�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 22c.8 0 1.6-.1 2.3-.3-.4-.5-.8-1.1-1-1.8-.4.1-.9.1-1.3.1-4.4 0-8-3.6-8-8s3.6-8 8-8c.8 0 1.5.1 2.2.3l1.6-1.6C14.6 2.3 13.3 2 12 2 6.5 2 2 6.5 2 12s4.5 10 10 10M6.5 11.5l1.4-1.4 3.1 3.1 8.6-8.6L21 6 11 16zM19 14l-1.26 2.75L15 18l2.74 1.26L19 22l1.25-2.74L23 18l-2.75-1.25z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbox-marked-circle-minus-outline.svg���0000664�0000000�0000000�00000000460�14753064456�0033224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.3 21.7c-.7.2-1.5.3-2.3.3-5.5 0-10-4.5-10-10S6.5 2 12 2c1.3 0 2.6.3 3.8.7l-1.6 1.6c-.7-.2-1.4-.3-2.2-.3-4.4 0-8 3.6-8 8s3.6 8 8 8c.4 0 .9 0 1.3-.1.2.7.6 1.3 1 1.8M7.9 10.1l-1.4 1.4L11 16 21 6l-1.4-1.4-8.6 8.6zM15 17v2h8v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbox-marked-circle-outline.svg���������0000664�0000000�0000000�00000000430�14753064456�0032070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 12a8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8c.76 0 1.5.11 2.2.31l1.57-1.57A9.8 9.8 0 0 0 12 2 10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10M7.91 10.08 6.5 11.5 11 16 21 6l-1.41-1.42L11 13.17z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbox-marked-circle-plus-outline.svg����0000664�0000000�0000000�00000000504�14753064456�0033053�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.3 21.7c-.7.2-1.5.3-2.3.3-5.5 0-10-4.5-10-10S6.5 2 12 2c1.3 0 2.6.3 3.8.7l-1.6 1.6c-.7-.2-1.4-.3-2.2-.3-4.4 0-8 3.6-8 8s3.6 8 8 8c.4 0 .9 0 1.3-.1.2.7.6 1.3 1 1.8M7.9 10.1l-1.4 1.4L11 16 21 6l-1.4-1.4-8.6 8.6zM18 14v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbox-marked-circle.svg�����������������0000664�0000000�0000000�00000000305�14753064456�0030414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10 17-5-5 1.41-1.42L10 14.17l7.59-7.59L19 8m-7-6A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbox-marked-outline.svg����������������0000664�0000000�0000000�00000000315�14753064456�0030633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19H5V5h10V3H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-8h-2m-11.09-.92L6.5 11.5 11 16 21 6l-1.41-1.42L11 13.17z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbox-marked.svg������������������������0000664�0000000�0000000�00000000304�14753064456�0027154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10 17-5-5 1.41-1.42L10 14.17l7.59-7.59L19 8m0-5H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbox-multiple-blank-circle-outline.svg�0000664�0000000�0000000�00000000602�14753064456�0033546�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8m0 2c3.32 0 6 2.69 6 6 0 3.32-2.68 6-6 6a6 6 0 0 1-6-6 6 6 0 0 1 6-6M4.93 5.82A8.01 8.01 0 0 0 2 12a8 8 0 0 0 8 8c.64 0 1.27-.08 1.88-.23-1.76-.39-3.38-1.27-4.71-2.48A6 6 0 0 1 4 12c0-.3.03-.59.07-.89C4.03 10.74 4 10.37 4 10c0-1.44.32-2.87.93-4.18"/></svg>������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbox-multiple-blank-circle.svg���������0000664�0000000�0000000�00000000476�14753064456�0032102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8M4.93 5.82A8.01 8.01 0 0 0 2 12a8 8 0 0 0 8 8c.64 0 1.27-.08 1.88-.23-1.76-.39-3.38-1.27-4.71-2.48A6 6 0 0 1 4 12c0-.3.03-.59.07-.89C4.03 10.74 4 10.37 4 10c0-1.44.32-2.87.93-4.18"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbox-multiple-blank-outline.svg��������0000664�0000000�0000000�00000000301�14753064456�0032303�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 16V4H8v12zm2 0a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2h12a2 2 0 0 1 2 2zm-6 4v2H4a2 2 0 0 1-2-2V7h2v13z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbox-multiple-blank.svg����������������0000664�0000000�0000000�00000000265�14753064456�0030637�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2h12a2 2 0 0 1 2 2zm-6 4v2H4a2 2 0 0 1-2-2V7h2v13z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbox-multiple-marked-circle-outline.svg0000664�0000000�0000000�00000000675�14753064456�0033734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8h-2c0 3.32-2.68 6-6 6a6 6 0 0 1-6-6 6 6 0 0 1 6-6c.43 0 .86.05 1.27.14l1.61-1.6Q15.5 2 14 2m6.59 1.58L14 10.17l-2.38-2.38-1.41 1.42L14 13l8-8m-17.07.82A8.01 8.01 0 0 0 2 12a8 8 0 0 0 8 8c.64 0 1.27-.08 1.88-.23-1.76-.39-3.38-1.27-4.71-2.48A6 6 0 0 1 4 12c0-.3.03-.59.07-.89C4.03 10.74 4 10.37 4 10c0-1.44.32-2.87.93-4.18"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbox-multiple-marked-circle.svg��������0000664�0000000�0000000�00000000564�14753064456�0032254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8M4.93 5.82A8.01 8.01 0 0 0 2 12a8 8 0 0 0 8 8c.64 0 1.27-.08 1.88-.23-1.76-.39-3.38-1.27-4.71-2.48A6 6 0 0 1 4 12c0-.3.03-.59.07-.89C4.03 10.74 4 10.37 4 10c0-1.44.32-2.87.93-4.18m13.16.26L19.5 7.5 13 14l-3.79-3.79 1.42-1.42L13 11.17"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbox-multiple-marked-outline.svg�������0000664�0000000�0000000�00000000346�14753064456�0032470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 16v-6h2v6a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2h8v2H8v12zm-9.09-8.92L14 10.17l6.59-6.59L22 5l-8 8-4.5-4.5zM16 20v2H4a2 2 0 0 1-2-2V7h2v13z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbox-multiple-marked.svg���������������0000664�0000000�0000000�00000000344�14753064456�0031011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2h12a2 2 0 0 1 2 2zm-6 4v2H4a2 2 0 0 1-2-2V7h2v13zm-3-6 7-7-1.41-1.41L13 11.17 9.91 8.09 8.5 9.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbox-multiple-outline.svg��������������0000664�0000000�0000000�00000000375�14753064456�0031231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H8a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2m0 14H8V4h12zm-4 4v2H4a2 2 0 0 1-2-2V7h2v13zm2.53-11.94L17.47 7l-4.88 4.88-2.12-2.12-1.06 1.06L12.59 14z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkbox-outline.svg�����������������������0000664�0000000�0000000�00000000315�14753064456�0027372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m0 2v14H5V5zm-9 12-4-4 1.41-1.42L10 14.17l6.59-6.59L18 9"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkerboard-minus.svg���������������������0000664�0000000�0000000�00000000314�14753064456�0027673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 17v2h8v-2M8 16h4v-4H8zm4-4h4V8h-4zM2 2v20h11.5c-.5-.6-.9-1.3-1.2-2H8v-4H4v-4h4V8H4V4h4v4h4V4h4v4h4v4.4c.7.3 1.4.7 2 1.2V2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkerboard-plus.svg����������������������0000664�0000000�0000000�00000000356�14753064456�0027531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 17h3v2h-3v3h-2v-3h-3v-2h3v-3h2zM8 16h4v-4H8zm4-4h4V8h-4zM2 2v20h11.54c-.54-.58-.91-1.26-1.18-2H8v-4H4v-4h4V8H4V4h4v4h4V4h4v4h4v4.36c.74.27 1.42.64 2 1.18V2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkerboard-remove.svg��������������������0000664�0000000�0000000�00000000443�14753064456�0030040�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 16h4v-4H8zm4-4h4V8h-4zM2 2v20h11.5c-.5-.6-.9-1.3-1.2-2H8v-4H4v-4h4V8H4V4h4v4h4V4h4v4h4v4.4c.7.3 1.4.7 2 1.2V2zm18.1 12.5L18 16.6l-2.1-2.1-1.4 1.4 2.1 2.1-2.1 2.1 1.4 1.4 2.1-2.1 2.1 2.1 1.4-1.4-2.1-2.1 2.1-2.1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/checkerboard.svg���������������������������0000664�0000000�0000000�00000000260�14753064456�0026542�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2v20h20V2zm18 10h-4v4h4v4h-4v-4h-4v4H8v-4H4v-4h4V8H4V4h4v4h4V4h4v4h4zm-4-4v4h-4V8zm-4 4v4H8v-4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cheese-off.svg�����������������������������0000664�0000000�0000000�00000000765�14753064456�0026144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.5 1.7 2.2 3l3.9 3.9V9c1.1.2 2 1.2 2 2.5s-.9 2.2-2 2.5v7l6-3.5c0-.8.7-1.5 1.5-1.5.3 0 .6.1.8.2l.7-.4 5.2 5.2 1.3-1.3zM10.1 16c-.5 0-1-.5-1-1s.5-1 1-1 1 .5 1 1-.5 1-1 1m3.7-6.5L9.9 5.6c.3.3.7.4 1.2.4 1 0 1.8-.8 2-1.8 2.3 1 4.5 2.4 6.2 4.2-.1.2-.2.3-.2.5 0 .5.5 1 1 1 .2 0 .3 0 .4-.1.5.6.9 1.3 1.3 2l-3.5 2-1.7-1.7c.3-.3.5-.8.5-1.3 0-1.1-.9-2-2-2-.5.2-1 .4-1.3.7M9.5 5.2 7.3 3c.7 0 1.3.1 1.9.2-.1.3-.1.5-.1.8 0 .4.1.9.4 1.2"/></svg>�����������mkdocs-material-9.6.4/material/templates/.icons/material/cheese.svg���������������������������������0000664�0000000�0000000�00000001007�14753064456�0025362�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 17.5c0-.83.67-1.5 1.5-1.5.29 0 .56.09.79.23l7.46-4.3c-.4-.71-.85-1.38-1.34-2.03a.9.9 0 0 1-.41.1c-.55 0-1-.45-1-1 0-.2.08-.38.18-.54A17.7 17.7 0 0 0 12 4.25C11.85 5.24 11 6 10 6a2 2 0 0 1-2-2c0-.28.06-.55.16-.79C7.3 3.08 6.41 3 5.5 3c-.17 0-.33 0-.5.03v6.02a2.5 2.5 0 0 1 0 4.9V21l6-3.46zM14 9a2 2 0 1 1 0 4c-1.11 0-2-.89-2-2s.9-2 2-2m-5 7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m0-6c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chef-hat.svg�������������������������������0000664�0000000�0000000�00000000540�14753064456�0025606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.5 1.5c-1.77 0-3.33 1.17-3.83 2.87C8.14 4.13 7.58 4 7 4a4 4 0 0 0-4 4 4.01 4.01 0 0 0 3 3.87V19h13v-7.13c1.76-.46 3-2.05 3-3.87a4 4 0 0 0-4-4c-.58 0-1.14.13-1.67.37-.5-1.7-2.06-2.87-3.83-2.87m-.5 9h1v7h-1zm-3 2h1v5H9zm6 0h1v5h-1zM6 20v1a1 1 0 0 0 1 1h11a1 1 0 0 0 1-1v-1z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chemical-weapon.svg������������������������0000664�0000000�0000000�00000001424�14753064456�0027165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7.83A3 3 0 0 1 9 5a3 3 0 0 1 3-3 3 3 0 0 1 3 3c0 1.31-.84 2.42-2 2.83v2.81a3.66 3.66 0 0 0-2 0zm7.3 13.27a2.99 2.99 0 0 1-1.46-3.14l-2.44-1.41c.48-.46.84-1.05 1-1.73l2.44 1.41c.94-.81 2.32-.97 3.45-.32 1.44.83 1.93 2.66 1.1 4.09a2.987 2.987 0 0 1-4.09 1.1M2.7 15.9c1.13-.65 2.51-.48 3.45.32l2.45-1.41c.16.69.51 1.27 1 1.73l-2.45 1.41c.23 1.22-.32 2.5-1.45 3.15-1.44.83-3.27.34-4.1-1.1a3 3 0 0 1 1.1-4.1M14 14a2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 2 2m3 0-.03.57-1.47-.86c-.1-1.07-.67-2-1.5-2.59V9.41c1.77.78 3 2.54 3 4.59m-2.03 4.03c-.83.61-1.86.97-2.97.97s-2.14-.36-2.97-1l1.47-.83c.46.21.97.33 1.5.33s1.03-.12 1.5-.33zm-7.94-3.47L7 14c0-2.05 1.23-3.81 3-4.58v1.71c-.83.58-1.4 1.51-1.5 2.57z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chess-bishop.svg���������������������������0000664�0000000�0000000�00000000456�14753064456�0026524�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 22H5v-2h14zM17.16 8.26A8.94 8.94 0 0 1 19 13c0 2.76-3.13 5-7 5s-7-2.24-7-5c0-2.38 2.33-6.61 5.46-7.73-.3-.36-.46-.81-.46-1.27a2 2 0 0 1 2-2 2 2 0 0 1 2 2c0 .46-.16.91-.46 1.27.86.33 1.64.83 2.3 1.47l-4.55 4.55 1.42 1.42z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chess-king.svg�����������������������������0000664�0000000�0000000�00000000404�14753064456�0026161�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 22H5v-2h14zm-2-12c-1.42 0-2.74.77-3.45 2H13V7h3V5h-3V2h-2v3H8v2h3v5h-.55C9.35 10.09 6.9 9.43 5 10.54A4.013 4.013 0 0 0 3.5 16c.74 1.24 2.07 2 3.5 2h10a4 4 0 0 0 4-4 4 4 0 0 0-4-4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chess-knight.svg���������������������������0000664�0000000�0000000�00000000424�14753064456�0026517�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 22H5v-2h14zM13 2c-1.25 0-2.42.62-3.11 1.66L7 8l2 2 2.06-1.37c.44-.31 1.08-.19 1.39.27.02.03.05.06.05.1.3.59.19 1.3-.28 1.77l-4.8 4.8c-.55.56-.55 1.46.01 2.01.26.26.62.42.99.42H17V6a4 4 0 0 0-4-4"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chess-pawn.svg�����������������������������0000664�0000000�0000000�00000000371�14753064456�0026201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 22H5v-2h14zm-3-4H8l2.18-8H8V8h2.72l.07-.26A2.97 2.97 0 0 1 9.25 6.2c-.67-1.52.02-3.29 1.54-3.95 1.52-.67 3.29.02 3.95 1.54a2.99 2.99 0 0 1-1.54 3.95l.07.26H16v2h-2.18z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chess-queen.svg����������������������������0000664�0000000�0000000�00000000562�14753064456�0026353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 3a2 2 0 0 1 2 2c0 .81-.5 1.5-1.17 1.82L17 13.15V18H7v-4.85L5.17 6.82C4.5 6.5 4 5.81 4 5a2 2 0 0 1 2-2 2 2 0 0 1 2 2c0 .5-.18.95-.5 1.3l2.8 3.05.53-3.73C10.33 5.26 10 4.67 10 4a2 2 0 0 1 2-2 2 2 0 0 1 2 2c0 .67-.33 1.26-.83 1.62l.53 3.73 2.77-3.06A2 2 0 0 1 16 5a2 2 0 0 1 2-2M5 20h14v2H5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chess-rook.svg�����������������������������0000664�0000000�0000000�00000000214�14753064456�0026202�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 20h14v2H5zM17 2v3h-2V2h-2v3h-2V2H9v3H7V2H5v6h2v10h10V8h2V2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-double-down.svg��������������������0000664�0000000�0000000�00000000242�14753064456�0030007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.59 5.59 18 7l-6 6-6-6 1.41-1.41L12 10.17zm0 6L18 13l-6 6-6-6 1.41-1.41L12 16.17z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-double-left.svg��������������������0000664�0000000�0000000�00000000241�14753064456�0027771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.41 7.41 17 6l-6 6 6 6 1.41-1.41L13.83 12zm-6 0L11 6l-6 6 6 6 1.41-1.41L7.83 12z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-double-right.svg�������������������0000664�0000000�0000000�00000000235�14753064456�0030157�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.59 7.41 7 6l6 6-6 6-1.41-1.41L10.17 12zm6 0L13 6l6 6-6 6-1.41-1.41L16.17 12z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-double-up.svg����������������������0000664�0000000�0000000�00000000236�14753064456�0027467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.41 18.41 6 17l6-6 6 6-1.41 1.41L12 13.83zm0-6L6 11l6-6 6 6-1.41 1.41L12 7.83z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-down-box-outline.svg���������������0000664�0000000�0000000�00000000324�14753064456�0031003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m0 16H5V5h14zM7.41 8.29 12 12.88l4.59-4.59L18 9.71l-6 6-6-6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-down-box.svg�����������������������0000664�0000000�0000000�00000000313�14753064456�0027324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m-7 12.71-6-6 1.41-1.42L12 12.88l4.59-4.59L18 9.71z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-down-circle-outline.svg������������0000664�0000000�0000000�00000000375�14753064456�0031462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 12a10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2a10 10 0 0 1 10 10m-2 0a8 8 0 0 0-8-8 8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8M6 10l6 6 6-6-1.4-1.4-4.6 4.6-4.6-4.6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-down-circle.svg��������������������0000664�0000000�0000000�00000000300�14753064456�0027771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 12a10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2a10 10 0 0 1 10 10M6 10l6 6 6-6-1.4-1.4-4.6 4.6-4.6-4.6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-down.svg���������������������������0000664�0000000�0000000�00000000173�14753064456�0026542�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.41 8.58 12 13.17l4.59-4.59L18 10l-6 6-6-6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-left-box-outline.svg���������������0000664�0000000�0000000�00000000326�14753064456�0030770�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m0 16H5V5h14zM15.71 7.41 11.12 12l4.59 4.59L14.29 18l-6-6 6-6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-left-box.svg�����������������������0000664�0000000�0000000�00000000312�14753064456�0027306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m-3.29 13.59L14.29 18l-6-6 6-6 1.42 1.41L11.12 12z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-left-circle-outline.svg������������0000664�0000000�0000000�00000000377�14753064456�0031447�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 12a10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2a10 10 0 0 1 10 10m-2 0a8 8 0 0 0-8-8 8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8m-4.6 4.6L10.8 12l4.6-4.6L14 6l-6 6 6 6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-left-circle.svg��������������������0000664�0000000�0000000�00000000302�14753064456�0027756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 12a10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2a10 10 0 0 1 10 10m-6.6 4.6L10.8 12l4.6-4.6L14 6l-6 6 6 6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-left.svg���������������������������0000664�0000000�0000000�00000000174�14753064456�0026526�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.41 16.58 10.83 12l4.58-4.59L14 6l-6 6 6 6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-right-box-outline.svg��������������0000664�0000000�0000000�00000000323�14753064456�0031150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m0 16H5V5h14zM8.29 16.59 12.88 12 8.29 7.41 9.71 6l6 6-6 6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-right-box.svg����������������������0000664�0000000�0000000�00000000312�14753064456�0027471�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2M9.71 18l-1.42-1.41L12.88 12 8.29 7.41 9.71 6l6 6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-right-circle-outline.svg�����������0000664�0000000�0000000�00000000376�14753064456�0031631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 12a10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2a10 10 0 0 1 10 10m-2 0a8 8 0 0 0-8-8 8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8M8.6 16.6l4.6-4.6-4.6-4.6L10 6l6 6-6 6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-right-circle.svg�������������������0000664�0000000�0000000�00000000301�14753064456�0030140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 12a10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2a10 10 0 0 1 10 10m-12 6 6-6-6-6-1.4 1.4 4.6 4.6-4.6 4.6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-right.svg��������������������������0000664�0000000�0000000�00000000172�14753064456�0026707�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.59 16.58 13.17 12 8.59 7.41 10 6l6 6-6 6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-triple-down.svg��������������������0000664�0000000�0000000�00000000310�14753064456�0030030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.41 14.58 12 19.17l4.59-4.59L18 16l-6 6-6-6zm0-6L12 13.17l4.59-4.59L18 10l-6 6-6-6zm0-6L12 7.17l4.59-4.59L18 4l-6 6-6-6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-triple-left.svg��������������������0000664�0000000�0000000�00000000307�14753064456�0030021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.42 7.41 4.83 12l4.59 4.59L8 18l-6-6 6-6zm6 0L10.83 12l4.59 4.59L14 18l-6-6 6-6zm6 0L16.83 12l4.59 4.59L20 18l-6-6 6-6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-triple-right.svg�������������������0000664�0000000�0000000�00000000306�14753064456�0030203�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.58 16.59 19.17 12l-4.59-4.59L16 6l6 6-6 6zm-6 0L13.17 12 8.58 7.41 10 6l6 6-6 6zm-6 0L7.17 12 2.58 7.41 4 6l6 6-6 6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-triple-up.svg����������������������0000664�0000000�0000000�00000000304�14753064456�0027510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.59 9.42 12 4.83 7.41 9.42 6 8l6-6 6 6zm0 6L12 10.83l-4.59 4.59L6 14l6-6 6 6zm0 6L12 16.83l-4.59 4.59L6 20l6-6 6 6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-up-box-outline.svg�����������������0000664�0000000�0000000�00000000325�14753064456�0030461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m0 16H5V5h14zm-2.41-3.29L12 11.12l-4.59 4.59L6 14.29l6-6 6 6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-up-box.svg�������������������������0000664�0000000�0000000�00000000311�14753064456�0026777�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m-2.41 12.71L12 11.12l-4.59 4.59L6 14.29l6-6 6 6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-up-circle-outline.svg��������������0000664�0000000�0000000�00000000400�14753064456�0031124�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 12a10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2a10 10 0 0 1 10 10m-2 0a8 8 0 0 0-8-8 8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8M7.4 15.4l4.6-4.6 4.6 4.6L18 14l-6-6-6 6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-up-circle.svg����������������������0000664�0000000�0000000�00000000303�14753064456�0027451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 12a10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2a10 10 0 0 1 10 10M7.4 15.4l4.6-4.6 4.6 4.6L18 14l-6-6-6 6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chevron-up.svg�����������������������������0000664�0000000�0000000�00000000174�14753064456�0026220�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.41 15.41 12 10.83l4.59 4.58L18 14l-6-6-6 6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chili-alert-outline.svg��������������������0000664�0000000�0000000�00000000603�14753064456�0030001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 8.28 12.75 9 11 8 9.25 9 8 8.28c-.6.35-1 .99-1 1.72v1c0 9 8 11 8 11V10c0-.73-.4-1.37-1-1.72m-1 10.59c-1.77-1.18-3.83-3.43-4-7.44l2-1.13 2 1.15zM9.25 7.5l-1.52-.87C8.26 5.7 9.03 5 9.94 4.69 9.8 4.29 9.44 4 9 4V2c1.54 0 2.79 1.16 2.97 2.65.94.29 1.75 1.01 2.3 1.98l-1.52.87-1.75-1zM19 7v6h-2V7zm-2 8h2v2h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chili-alert.svg����������������������������0000664�0000000�0000000�00000000516�14753064456�0026327�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.25 7.5-1.52-.87C8.26 5.7 9.03 5 9.94 4.69 9.8 4.29 9.44 4 9 4V2c1.54 0 2.79 1.16 2.97 2.65.94.29 1.75 1.01 2.3 1.98l-1.52.87-1.75-1zm4.75.78L12.75 9 11 8 9.25 9 8 8.28c-.6.35-1 .99-1 1.72v1c0 9 8 11 8 11V10c0-.73-.4-1.37-1-1.72M17 7v6h2V7zm0 10h2v-2h-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chili-hot-outline.svg����������������������0000664�0000000�0000000�00000001510�14753064456�0027462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.94 4.7A.99.99 0 0 0 10 4V2c.77 0 1.47.29 2 .77V4c.45 0 .81.3.94.7-1.11.38-2.01 1.35-2.51 2.62l-1.57-.9C9.38 5.6 10.11 5 10.94 4.7M10 11c0-.77.23-1.5.6-2.09l-1.34-.76C8.5 8.44 8 9.16 8 10v1c0 7.05 4.9 9.8 7.03 10.66C12.41 19.62 10 16.2 10 11M8.94 4.7A.99.99 0 0 0 8 4V2.77C7.47 2.29 6.77 2 6 2v2c.45 0 .81.3.94.7-.83.3-1.56.9-2.08 1.72l1.57.9c.5-1.27 1.4-2.24 2.51-2.62M6 11c0-.77.23-1.5.6-2.09l-1.34-.76C4.5 8.44 4 9.16 4 10v1c0 7.05 4.9 9.8 7.03 10.66C8.41 19.62 6 16.2 6 11m14-1v12s-8-2-8-11v-1c0-.73.4-1.37 1-1.72l1.25.72L16 8l1.75 1L19 8.28c.6.35 1 .99 1 1.72m-2 8.87v-7.42l-2-1.15-2 1.13c.17 4.01 2.23 6.26 4 7.44M12.73 6.63l1.52.87 1.75-1 1.75 1 1.52-.87c-.55-.97-1.36-1.69-2.3-1.98A2.996 2.996 0 0 0 14 2v2c.44 0 .8.29.94.69-.91.31-1.68 1.01-2.21 1.94"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chili-hot.svg������������������������������0000664�0000000�0000000�00000001434�14753064456�0026012�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.43 7.32-1.57-.9C9.38 5.6 10.11 5 10.94 4.7A.99.99 0 0 0 10 4V2c.77 0 1.47.29 2 .77V4c.45 0 .81.3.94.7-1.11.38-2.01 1.35-2.51 2.62M10 11c0-.77.23-1.5.6-2.09l-1.34-.76C8.5 8.44 8 9.16 8 10v1c0 7.05 4.9 9.8 7.03 10.66C12.41 19.62 10 16.2 10 11M6.43 7.32l-1.57-.9C5.38 5.6 6.11 5 6.94 4.7A.99.99 0 0 0 6 4V2c.77 0 1.47.29 2 .77V4c.45 0 .81.3.94.7-1.11.38-2.01 1.35-2.51 2.62M6 11c0-.77.23-1.5.6-2.09l-1.34-.76C4.5 8.44 4 9.16 4 10v1c0 7.05 4.9 9.8 7.03 10.66C8.41 19.62 6 16.2 6 11m13-2.72L17.75 9 16 8l-1.75 1L13 8.28c-.6.35-1 .99-1 1.72v1c0 9 8 11 8 11V10c0-.73-.4-1.37-1-1.72m-6.27-1.65 1.52.87 1.75-1 1.75 1 1.52-.87c-.55-.97-1.36-1.69-2.3-1.98A2.996 2.996 0 0 0 14 2v2c.44 0 .8.29.94.69-.91.31-1.68 1.01-2.21 1.94"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chili-medium-outline.svg�������������������0000664�0000000�0000000�00000001126�14753064456�0030153�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.43 7.32-1.57-.9C7.38 5.6 8.11 5 8.94 4.7A.99.99 0 0 0 8 4V2c.77 0 1.47.29 2 .77V4c.45 0 .81.3.94.7-1.11.38-2.01 1.35-2.51 2.62M8 11c0-.77.23-1.5.6-2.09l-1.34-.76C6.5 8.44 6 9.16 6 10v1c0 7.05 4.9 9.8 7.03 10.66C10.41 19.62 8 16.2 8 11m10-1v12s-8-2-8-11v-1c0-.73.4-1.37 1-1.72l1.25.72L14 8l1.75 1L17 8.28c.6.35 1 .99 1 1.72m-2 8.87v-7.42l-2-1.15-2 1.13c.17 4.01 2.23 6.26 4 7.44M10.73 6.63l1.52.87 1.75-1 1.75 1 1.52-.87c-.55-.97-1.36-1.69-2.3-1.98A2.996 2.996 0 0 0 12 2v2c.44 0 .8.29.94.69-.91.31-1.68 1.01-2.21 1.94"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chili-medium.svg���������������������������0000664�0000000�0000000�00000001047�14753064456�0026500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.43 7.32-1.57-.9C7.38 5.6 8.11 5 8.94 4.7A.99.99 0 0 0 8 4V2c.77 0 1.47.29 2 .77V4c.45 0 .81.3.94.7-1.11.38-2.01 1.35-2.51 2.62M8 11c0-.77.23-1.5.6-2.09l-1.34-.76C6.5 8.44 6 9.16 6 10v1c0 7.05 4.9 9.8 7.03 10.66C10.41 19.62 8 16.2 8 11m9-2.72L15.75 9 14 8l-1.75 1L11 8.28c-.6.35-1 .99-1 1.72v1c0 9 8 11 8 11V10c0-.73-.4-1.37-1-1.72m-6.27-1.65 1.52.87 1.75-1 1.75 1 1.52-.87c-.55-.97-1.36-1.69-2.3-1.98A2.996 2.996 0 0 0 12 2v2c.44 0 .8.29.94.69-.91.31-1.68 1.01-2.21 1.94"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chili-mild-outline.svg���������������������0000664�0000000�0000000�00000000543�14753064456�0027622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.25 7.5-1.52-.87c.53-.93 1.3-1.63 2.21-1.94-.14-.4-.5-.69-.94-.69V2c1.54 0 2.79 1.16 2.97 2.65.94.29 1.75 1.01 2.3 1.98l-1.52.87-1.75-1zM16 10v12s-8-2-8-11v-1c0-.73.4-1.37 1-1.72l1.25.72L12 8l1.75 1L15 8.28c.6.35 1 .99 1 1.72m-2 1.45-2-1.15-2 1.13c.17 4.01 2.23 6.26 4 7.44z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chili-mild.svg�����������������������������0000664�0000000�0000000�00000000451�14753064456�0026143�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 10v12s-8-2-8-11v-1c0-.73.4-1.37 1-1.72l1.25.72L12 8l1.75 1L15 8.28c.6.35 1 .99 1 1.72m-4-3.5 1.75 1 1.52-.87c-.55-.97-1.36-1.69-2.3-1.98A2.996 2.996 0 0 0 10 2v2c.44 0 .8.29.94.69-.91.31-1.68 1.01-2.21 1.94l1.52.87z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chili-off-outline.svg����������������������0000664�0000000�0000000�00000000572�14753064456�0027451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 8.28c.6.35 1 .99 1 1.72v2.8l-4.5-4.51L12 8l1.75 1zM12 6.5l1.75 1 1.52-.87c-.55-.97-1.36-1.69-2.3-1.98A2.996 2.996 0 0 0 10 2v2c.44 0 .8.29.94.69-.68.23-1.28.68-1.77 1.28l1.37 1.37zm10.11 14.96-1.27 1.27L16 17.89V22s-8-2-8-11V9.9L1.11 3l1.28-1.27zM14 15.89l-3.93-3.93c.31 3.67 2.24 5.78 3.93 6.91z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chili-off.svg������������������������������0000664�0000000�0000000�00000000511�14753064456�0025765�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 8.28c.6.35 1 .99 1 1.72v2.8l-4.5-4.51L12 8l1.75 1zM12 6.5l1.75 1 1.52-.87c-.55-.97-1.36-1.69-2.3-1.98A2.996 2.996 0 0 0 10 2v2c.44 0 .8.29.94.69-.68.23-1.28.68-1.77 1.28l1.37 1.37zM2.39 1.73 1.11 3 8 9.9V11c0 9 8 11 8 11v-4.11l4.84 4.84 1.27-1.27z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/chip.svg�����������������������������������0000664�0000000�0000000�00000000310�14753064456�0025045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 4h12v1h3v2h-3v2h3v2h-3v2h3v2h-3v2h3v2h-3v1H6v-1H3v-2h3v-2H3v-2h3v-2H3V9h3V7H3V5h3zm5 11v3h1v-3zm2 0v3h1v-3zm2 0v3h1v-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/church-outline.svg�������������������������0000664�0000000�0000000�00000000543�14753064456�0027063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 12.22V9l-5-2.5V5h2V3h-2V1h-2v2H9v2h2v1.5L6 9v3.22L2 14v8h9v-4c0-.55.45-1 1-1s1 .45 1 1v4h9v-8zM20 20h-5v-2.04c0-1.69-1.35-3.06-3-3.06s-3 1.37-3 3.06V20H4v-4.79l4-1.81v-3.35L12 8l4 2.04v3.35l4 1.81zm-8-9.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/church.svg���������������������������������0000664�0000000�0000000�00000000374�14753064456�0025410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 12.22V9l-5-2.5V5h2V3h-2V1h-2v2H9v2h2v1.5L6 9v3.22L2 14v8h8v-3c0-1.1.9-2 2-2s2 .9 2 2v3h8v-8zm-6 1.28c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cigar-off.svg������������������������������0000664�0000000�0000000�00000001225�14753064456�0025765�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.84 22.73 18.11 20H18v-.11l-1-1V20h-5v-1.27a2 2 0 0 0 0-3.46V14h.11l-11-11 1.28-1.27 19.72 19.73zM14.5 9.7H16c1.07-.04 1.96.8 2 1.86V13h1.5v-1.64a3.3 3.3 0 0 0-3.45-3.16H14.5a2 2 0 0 1-1.85-2c.02-.98.85-1.77 1.81-1.75h.04V3a3.35 3.35 0 0 0 0 6.7m6 1V13H22v-2.24c0-2.14-1.22-4.1-3.15-5.03h-.03C19.58 5 19.9 4 19.8 3h-1.48a1.865 1.865 0 0 1-1.82 2.2v1.5c2.21 0 4 1.8 4 4M9.27 16c.18-.3.43-.55.73-.73V14H5a3 3 0 0 0-2.12 5.12c.57.56 1.33.88 2.12.88h5v-1.27A2.006 2.006 0 0 1 9.27 16M18 14.8l1.5 1.5V14H18zm2.5 2.5 1.5 1.5V14h-1.5zM11 16c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cigar.svg����������������������������������0000664�0000000�0000000�00000000772�14753064456�0025223�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 10.2h-1.5a2 2 0 0 1-1.85-2 1.78 1.78 0 0 1 1.85-1.75V5a3.35 3.35 0 1 0 0 6.7H16a1.93 1.93 0 0 1 2 2V15h1.5v-1.64A3.31 3.31 0 0 0 16 10.2m2.82-2.47A3.34 3.34 0 0 0 16.5 2v1.5a1.85 1.85 0 1 1 0 3.7v1.5a4 4 0 0 1 4 4.07V15H22v-2.24a5.55 5.55 0 0 0-3.15-5.03M18 16v6h1.5v-6m1 0v6H22v-6m-10 0v1.27a2 2 0 0 1 0 3.46V22h5v-6m-14.12.88A3 3 0 0 0 5 22h5v-1.27a2 2 0 0 1 0-3.46V16H5a3 3 0 0 0-2.12.88M12 19a1 1 0 1 1-1-1 1 1 0 0 1 1 1"/></svg>������mkdocs-material-9.6.4/material/templates/.icons/material/circle-box-outline.svg���������������������0000664�0000000�0000000�00000000337�14753064456�0027637�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 5v14H5V5zm0-2H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m-7 5c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/circle-box.svg�����������������������������0000664�0000000�0000000�00000000324�14753064456�0026156�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m-7 13c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/circle-double.svg��������������������������0000664�0000000�0000000�00000000515�14753064456�0026642�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 2a8 8 0 0 1 8 8 8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8m0 2a6 6 0 0 0-6 6 6 6 0 0 0 6 6 6 6 0 0 0 6-6 6 6 0 0 0-6-6m0 2a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/circle-edit-outline.svg��������������������0000664�0000000�0000000�00000000502�14753064456�0027766�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10h-2a8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8zm6.78 1a.7.7 0 0 0-.48.2l-1.22 1.21 2.5 2.5L20.8 5.7c.26-.26.26-.7 0-.95L19.25 3.2c-.13-.13-.3-.2-.47-.2m-2.41 2.12L9 12.5V15h2.5l7.37-7.38z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/circle-expand.svg��������������������������0000664�0000000�0000000�00000000500�14753064456�0026641�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16 4 4 4V4m0 12-4 4h4M8 20l-4-4v4M4 8l4-4H4m12.95 3.05a7.007 7.007 0 0 0-9.9 0 7.007 7.007 0 0 0 0 9.9 7.007 7.007 0 0 0 9.9 0c2.73-2.73 2.73-7.16 0-9.9m-1.1 8.8a5.4 5.4 0 0 1-7.7 0 5.4 5.4 0 0 1 0-7.7 5.4 5.4 0 0 1 7.7 0 5.4 5.4 0 0 1 0 7.7"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/circle-half-full.svg�����������������������0000664�0000000�0000000�00000000272�14753064456�0027242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 2a8 8 0 0 1 8 8 8 8 0 0 1-8 8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/circle-half.svg����������������������������0000664�0000000�0000000�00000000167�14753064456�0026305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/circle-medium.svg��������������������������0000664�0000000�0000000�00000000213�14753064456�0026643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/circle-multiple-outline.svg����������������0000664�0000000�0000000�00000000455�14753064456�0030703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 4a8 8 0 0 1 8 8 8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8m0 14a6 6 0 0 0 6-6 6 6 0 0 0-6-6 6 6 0 0 0-6 6 6 6 0 0 0 6 6M3 12a5.99 5.99 0 0 0 4 5.65v2.09c-3.45-.89-6-4.01-6-7.74s2.55-6.85 6-7.74v2.09C4.67 7.17 3 9.39 3 12"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/circle-multiple.svg������������������������0000664�0000000�0000000�00000000257�14753064456�0027226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 4a8 8 0 1 1-8 8 8 8 0 0 1 8-8M3 12a6 6 0 0 0 4 5.65v2.09A8 8 0 0 1 7 4.26v2.09A6 6 0 0 0 3 12"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/circle-off-outline.svg���������������������0000664�0000000�0000000�00000000667�14753064456�0027627�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3l2.95 2.95A9.95 9.95 0 0 0 2 12c0 5.5 4.5 10 10 10 2.28 0 4.37-.77 6.05-2.06l2.79 2.79zM12 20c-4.42 0-8-3.58-8-8 0-1.73.56-3.32 1.5-4.62L16.62 18.5A7.78 7.78 0 0 1 12 20M8.17 4.97 6.72 3.5C8.25 2.56 10.06 2 12 2c5.5 0 10 4.5 10 10 0 1.94-.56 3.75-1.5 5.28l-1.47-1.45c.62-1.14.97-2.44.97-3.83 0-4.42-3.58-8-8-8-1.39 0-2.69.35-3.83.97"/></svg>�������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/circle-opacity.svg�������������������������0000664�0000000�0000000�00000001023�14753064456�0027033�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 10V8h2v2zm0 2v-2h-2v2zm0-4V6h-2v2zm-2-5.16V4h2c-.63-.46-1.29-.85-2-1.16M18 4v2h2c-.58-.75-1.25-1.42-2-2m2 2v2h1.16c-.31-.71-.7-1.37-1.16-2m2 6c0-.68-.07-1.35-.2-2H20v2zm-6-6V4h-2v2zm0 10h2v-2h-2zm2 2h2v-2h-2zm-2 2h2v-2h-2zm-2 1.8c.7-.14 1.36-.36 2-.64V20h-2zm4-7.8h2v-2h-2zm-2-6h-2v2h2zm4 8h1.16c.28-.64.5-1.3.64-2H20zm-4-4h-2v2h2zm-4 6v-2h2v-2h-2v-2h2v-2h-2V8h2V6h-2V4h2V2.2c-.65-.13-1.31-.2-2-.2C6.5 2 2 6.5 2 12s4.5 10 10 10v-2h2v-2zm2 0h2v-2h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/circle-outline.svg�������������������������0000664�0000000�0000000�00000000327�14753064456�0027050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/circle-slice-1.svg�������������������������0000664�0000000�0000000�00000000347�14753064456�0026630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2m0 2c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8m0 1c1.93 0 3.68.78 4.95 2.05L12 12z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/circle-slice-2.svg�������������������������0000664�0000000�0000000�00000000335�14753064456�0026626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2m0 2c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8m0 1c3.87 0 7 3.13 7 7h-7z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/circle-slice-3.svg�������������������������0000664�0000000�0000000�00000000372�14753064456�0026630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2m0 2c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8m0 1c3.87 0 7 3.13 7 7 0 1.93-.78 3.68-2.05 4.95L12 12z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/circle-slice-4.svg�������������������������0000664�0000000�0000000�00000000346�14753064456�0026632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2m0 2c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8m0 1c3.87 0 7 3.13 7 7s-3.13 7-7 7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/circle-slice-5.svg�������������������������0000664�0000000�0000000�00000000407�14753064456�0026631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2m0 2c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8m0 1c3.87 0 7 3.13 7 7s-3.13 7-7 7c-1.93 0-3.68-.78-4.95-2.05L12 12z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/circle-slice-6.svg�������������������������0000664�0000000�0000000�00000000363�14753064456�0026633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2m0 2c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8m0 1c3.87 0 7 3.13 7 7s-3.13 7-7 7-7-3.13-7-7h7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/circle-slice-7.svg�������������������������0000664�0000000�0000000�00000000420�14753064456�0026626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2m0 2c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8m0 1c3.87 0 7 3.13 7 7s-3.13 7-7 7-7-3.13-7-7c0-1.93.78-3.68 2.05-4.95L12 12z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/circle-slice-8.svg�������������������������0000664�0000000�0000000�00000000373�14753064456�0026636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 5c3.87 0 7 3.13 7 7s-3.13 7-7 7-7-3.13-7-7 3.13-7 7-7m0-3c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2m0 2c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/circle-small.svg���������������������������0000664�0000000�0000000�00000000217�14753064456�0026477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10a2 2 0 0 0-2 2 2 2 0 0 0 2 2c1.11 0 2-.89 2-2a2 2 0 0 0-2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/circle.svg���������������������������������0000664�0000000�0000000�00000000231�14753064456�0025365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/circular-saw.svg���������������������������0000664�0000000�0000000�00000001033�14753064456�0026521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 11a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1M7.86 6.25A7 7 0 0 1 13 4c3.5 0 6.44 2.61 6.93 6H22v2h-6a3 3 0 0 0-3-3 3 3 0 0 0-3 3H2v-2h.05c.2-2.27 1.09-4.34 2.45-6zM6.73 7.89 5.06 6.77c-.53.98-.88 2.07-1 3.23h2.01c.11-.75.33-1.46.66-2.11m.67 7.51L6 14h5.79c.24.42.71.7 1.21.7s.97-.28 1.21-.7H20v1.4c-1.61-.98-1.54.35-1.54.35v1.96l-1.96 1.96c-.5-1.75-1.4-.77-1.4-.77l-1.4 1.4h-2.8c.98-1.61-.35-1.54-.35-1.54H8.59L6.63 16.8c1.75-.49.77-1.4.77-1.4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/city-switch.svg����������������������������0000664�0000000�0000000�00000000324�14753064456�0026376�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 15V9h-6V3l-3-3-3 3v2H3v10zm-2-2h-2v-2h2zm-8-8V3h2v2zm0 4V7h2v2zm0 4v-2h2v2zM7 9H5V7h2zm0 4H5v-2h2zm2 4v2h6v-2l3 3-3 3v-2H9v2l-3-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/city-variant-outline.svg�������������������0000664�0000000�0000000�00000000471�14753064456�0030221�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 23h-2v-2h2zm4-2h-2v2h2zm-4-4h-2v2h2zm-8 4H5v2h2zm0-4H5v2h2zm12 0h-2v2h2zm-4-4h-2v2h2zm4 0h-2v2h2zm2-4a2 2 0 0 1 2 2v12h-2V11H11v12H9v-8H3v8H1v-8a2 2 0 0 1 2-2h6v-2a2 2 0 0 1 2-2V7a2 2 0 0 1 2-2h2V1h2v4h2a2 2 0 0 1 2 2zm-2 0V7h-6v2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/city-variant.svg���������������������������0000664�0000000�0000000�00000000435�14753064456�0026544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 9V7a2 2 0 0 0-2-2h-1V2h-2v3h-1a2 2 0 0 0-2 2v2a2 2 0 0 0-2 2v1H5a2 2 0 0 0-2 2v8h3v-2h2v2h4v-2h2v2h2v-2h2v2h3V11a2 2 0 0 0-2-2M8 18H6v-2h2zm6 0h-2v-2h2zm0-4h-2v-2h2zm-1-5V7h4v2zm5 9h-2v-2h2zm0-4h-2v-2h2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/city.svg�����������������������������������0000664�0000000�0000000�00000000325�14753064456�0025100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 15h-2v-2h2m0 6h-2v-2h2M13 7h-2V5h2m0 6h-2V9h2m0 6h-2v-2h2m0 6h-2v-2h2m-6-6H5V9h2m0 6H5v-2h2m0 6H5v-2h2m8-6V5l-3-3-3 3v2H3v14h18V11z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-account-outline.svg��������������0000664�0000000�0000000�00000000557�14753064456�0031205�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4.18C9.6 1.84 10.7 1 12 1s2.4.84 2.82 2zm-7 0a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1M7 7V5H5v14h14V5h-2v2zm5 2a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m-4 8v-1c0-1.1 1.79-2 4-2s4 .9 4 2v1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-account.svg����������������������0000664�0000000�0000000�00000000541�14753064456�0027521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 19H6v-1.4c0-2 4-3.1 6-3.1s6 1.1 6 3.1M12 7a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3m0-4a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m7 0h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-alert-outline.svg����������������0000664�0000000�0000000�00000000450�14753064456�0030650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4.18C9.6 1.84 10.7 1 12 1s2.4.84 2.82 2zm-7 0a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1M7 7V5H5v14h14V5h-2v2zm4 2h2v4.5h-2zm0 6h2v2h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-alert.svg������������������������0000664�0000000�0000000�00000000425�14753064456�0027175�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 5a1 1 0 0 1-1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1 1 1 0 0 1-1 1m1 9h-2V8h2m0 10h-2v-2h2m6-13h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-arrow-down-outline.svg�����������0000664�0000000�0000000�00000000442�14753064456�0031641�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4.18C9.6 1.84 10.7 1 12 1s2.4.84 2.82 2zm-7 0a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1M7 7V5H5v14h14V5h-2v2zm5 11-5-5h3V9h4v4h3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-arrow-down.svg�������������������0000664�0000000�0000000�00000000420�14753064456�0030160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 18-5-5h3V9h4v4h3M12 3a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m7 0h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-arrow-left-outline.svg�����������0000664�0000000�0000000�00000000444�14753064456�0031626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4.18C9.6 1.84 10.7 1 12 1s2.4.84 2.82 2zm-7 0a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1M7 7V5H5v14h14V5h-2v2zm0 6 5 5v-3h4v-4h-4V8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-arrow-left.svg�������������������0000664�0000000�0000000�00000000424�14753064456�0030147�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 15h-4v3l-5-5 5-5v3h4m-4-8a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m7 0h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-arrow-right-outline.svg����������0000664�0000000�0000000�00000000447�14753064456�0032014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4.18C9.6 1.84 10.7 1 12 1s2.4.84 2.82 2zm-7 0a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1M7 7V5H5v14h14V5h-2v2zm9.91 6-5 5v-3h-4v-4h4V8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-arrow-right.svg������������������0000664�0000000�0000000�00000000421�14753064456�0030327�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17 13-5 5v-3H8v-4h4V8m0-5a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m7 0h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-arrow-up-outline.svg�������������0000664�0000000�0000000�00000000444�14753064456�0031320�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 8 5 5h-3v4h-4v-4H7zm7-5a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4.18C9.6 1.84 10.7 1 12 1s2.4.84 2.82 2zm-7 0a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1M7 7V5H5v14h14V5h-2v2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-arrow-up.svg���������������������0000664�0000000�0000000�00000000414�14753064456�0027640�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4.18C9.6 1.84 10.7 1 12 1s2.4.84 2.82 2zm-7 5-5 5h3v4h4v-4h3zm0-5a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-check-multiple-outline.svg�������0000664�0000000�0000000�00000000536�14753064456�0032454�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 7v14h14v2H4c-1.1 0-2-.9-2-2V7zm8.8 8.35-3.3-3.3 1.4-1.4 1.9 1.9 4.3-4.3 1.4 1.4zM20 3c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h3.18C11.6 1.84 12.7 1 14 1s2.4.84 2.82 2zm-6 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m-4 4V5H8v12h12V5h-2v2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-check-multiple.svg���������������0000664�0000000�0000000�00000000474�14753064456�0031000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 7H2v14c0 1.1.9 2 2 2h14v-2H4M20 3h-3.2c-.4-1.2-1.5-2-2.8-2s-2.4.8-2.8 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m-6 0c.6 0 1 .5 1 1s-.5 1-1 1-1-.5-1-1 .4-1 1-1m-1.7 12.1L9 11.8l1.4-1.4 1.9 1.9L17.6 7 19 8.4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-check-outline.svg����������������0000664�0000000�0000000�00000000466�14753064456�0030625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-7 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1M7 7h10V5h2v14H5V5h2zm.5 6.5L9 12l2 2 4.5-4.5L17 11l-6 6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-check.svg������������������������0000664�0000000�0000000�00000000450�14753064456�0027141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10 17-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9m-6-6a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m7 0h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-clock-outline.svg����������������0000664�0000000�0000000�00000000703�14753064456�0030635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11.11V5a2 2 0 0 0-2-2h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h6.11c1.26 1.24 2.98 2 4.89 2 3.87 0 7-3.13 7-7 0-1.91-.76-3.63-2-4.89M12 3c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1M5 19V5h2v2h10V5h2v4.68A6.995 6.995 0 0 0 9.68 19zm11 2c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5m.5-4.75 2.86 1.69-.75 1.22L15 17v-5h1.5z"/></svg>�������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-clock.svg������������������������0000664�0000000�0000000�00000000613�14753064456�0027160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.5 16.25 2.86 1.69-.75 1.22L15 17v-5h1.5zM23 16c0 3.87-3.13 7-7 7-1.91 0-3.63-.76-4.89-2H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h4.18C9.6 1.84 10.7 1 12 1s2.4.84 2.82 2H19a2 2 0 0 1 2 2v6.11c1.24 1.26 2 2.98 2 4.89M11 4c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1m10 12c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5"/></svg>���������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-edit-outline.svg�����������������0000664�0000000�0000000�00000000616�14753064456�0030472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.04 12.13c.14 0 .27.06.38.17l1.28 1.28c.22.21.22.56 0 .77l-1 1-2.05-2.05 1-1c.11-.11.25-.17.39-.17m-1.97 1.75 2.05 2.05L15.06 22H13v-2.06zM11 19l-2 2H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h4.18C9.6 1.84 10.7 1 12 1s2.4.84 2.82 2H19c1.1 0 2 .9 2 2v4l-2 2V5h-2v2H7V5H5v14zm1-16c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1"/></svg>������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-edit.svg�������������������������0000664�0000000�0000000�00000000570�14753064456�0027014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.04 12.13c.14 0 .27.06.38.17l1.28 1.28c.22.21.22.56 0 .77l-1 1-2.05-2.05 1-1c.11-.11.25-.17.39-.17m-1.97 1.75 2.05 2.05L15.06 22H13v-2.06zM19 3c1.1 0 2 .9 2 2v4L11 19v2H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h4.18C9.6 1.84 10.7 1 12 1s2.4.84 2.82 2zm-7 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-file-outline.svg�����������������0000664�0000000�0000000�00000000535�14753064456�0030464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 23a2 2 0 0 1-2-2v-9c0-1.1.9-2 2-2h4l4 4v7c0 1.11-.89 2-2 2zm0-2h6v-6.17L18.17 12H15zm4-18c1.1 0 2 .9 2 2v4.17L19.83 8H19V5h-2v2H7V5H5v14h6v2H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h4.18C9.6 1.84 10.7 1 12 1s2.4.84 2.82 2zm-7 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-file.svg�������������������������0000664�0000000�0000000�00000000534�14753064456�0027006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3c1.1 0 2 .9 2 2v4.17L19.83 8H15c-2.21 0-4 1.79-4 4v9H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h4.18C9.6 1.84 10.7 1 12 1s2.4.84 2.82 2zm-7 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m3 20a2 2 0 0 1-2-2v-9c0-1.1.9-2 2-2h4l4 4v7c0 1.11-.89 2-2 2zm6-8.17L18.17 12H18v3h3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-flow-outline.svg�����������������0000664�0000000�0000000�00000000473�14753064456�0030515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1M7 7h10V5h2v14H5V5h2zm3 9H8v-5H6l3-3 3 3h-2zm4-6h2v5h2l-3 3-3-3h2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-flow.svg�������������������������0000664�0000000�0000000�00000000450�14753064456�0027033�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-7 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m3 16-4-4h3V8h2v7h3zm-5-3H8V9H5l4-4 4 4h-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-list-outline.svg�����������������0000664�0000000�0000000�00000000601�14753064456�0030512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1M7 7h10V5h2v14H5V5h2zm5 10v-2h5v2zm0-6V9h5v2zm-4 1V9H7V8h2v4zm1.25 2c.41 0 .75.34.75.75 0 .2-.08.39-.21.52L8.12 17H10v1H7v-.92L9 15H7v-1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-list.svg�������������������������0000664�0000000�0000000�00000000552�14753064456�0027042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2M7 8h2v4H8V9H7zm3 9v1H7v-.92L9 15H7v-1h2.25c.41 0 .75.34.75.75 0 .2-.08.39-.21.52L8.12 17zm1-13c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1m6 13h-5v-2h5zm0-6h-5V9h5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-minus-outline.svg����������������0000664�0000000�0000000�00000000432�14753064456�0030674�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m7 16H5V5h2v2h10V5h2zM8 12h8v2H8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-minus.svg������������������������0000664�0000000�0000000�00000000406�14753064456�0027220�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m4 11H8v-2h8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-multiple-outline.svg�������������0000664�0000000�0000000�00000000454�14753064456�0031400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 7v14h14v2H4c-1.1 0-2-.9-2-2V7zm16-4c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h3.18C11.6 1.84 12.7 1 14 1s2.4.84 2.82 2zm-6 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m-4 4V5H8v12h12V5h-2v2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-multiple.svg���������������������0000664�0000000�0000000�00000000415�14753064456�0027720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 7H2v14c0 1.1.9 2 2 2h14v-2H4M20 3h-3.2c-.4-1.2-1.5-2-2.8-2s-2.4.8-2.8 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m-6 0c.6 0 1 .5 1 1s-.5 1-1 1-1-.5-1-1 .4-1 1-1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-off-outline.svg������������������0000664�0000000�0000000�00000000456�14753064456�0030321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.39 1.73 1.11 3 3 4.9V19a2 2 0 0 0 2 2h14.1l1.74 1.73 1.27-1.27zM5 19V6.89L17.11 19zM17 7V5h2v10.8l2 2V5a2 2 0 0 0-2-2h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H6.2l4 4zm-5-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-off.svg��������������������������0000664�0000000�0000000�00000000421�14753064456�0026634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 5a2 2 0 0 0-2-2h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H6.2L21 17.8zm-9 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m10.11 16.46-1.27 1.27L19.1 21H5a2 2 0 0 1-2-2V4.9L1.11 3l1.28-1.27z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-outline.svg����������������������0000664�0000000�0000000�00000000422�14753064456�0027542�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-7 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1M7 7h10V5h2v14H5V5h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-play-multiple-outline.svg��������0000664�0000000�0000000�00000000453�14753064456�0032342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 7v14h14v2H4c-1.1 0-2-.9-2-2V7zm16-4c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h3.2c.4-1.2 1.5-2 2.8-2s2.4.8 2.8 2zm-6 0c-.6 0-1 .5-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1m-4 4V5H8v12h12V5h-2v2m-6 8V9l5 3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-play-multiple.svg����������������0000664�0000000�0000000�00000000423�14753064456�0030662�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 21h14v2H4c-1.1 0-2-.9-2-2V7h2m18-2v12c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h3.2c.4-1.2 1.5-2 2.8-2s2.4.8 2.8 2H20c1.1 0 2 .9 2 2m-9-1c0 .5.5 1 1 1s1-.5 1-1-.4-1-1-1-1 .5-1 1m4 8-5-4v8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-play-outline.svg�����������������0000664�0000000�0000000�00000000453�14753064456�0030511�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-4.18C14.25 1.44 12.53.64 11 1.2c-.86.3-1.5.96-1.82 1.8H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-7 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1M7 7h10V5h2v14H5V5h2zm3 10V9l5 4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-play.svg�������������������������0000664�0000000�0000000�00000000427�14753064456�0027035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-4.18C14.25 1.44 12.53.64 11 1.2c-.86.3-1.5.96-1.82 1.8H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-7 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m-2 14V9l5 4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-plus-outline.svg�����������������0000664�0000000�0000000�00000000455�14753064456�0030531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1M7 7h10V5h2v14H5V5h2zm6 5h3v2h-3v3h-2v-3H8v-2h3V9h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-plus.svg�������������������������0000664�0000000�0000000�00000000434�14753064456�0027051�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-7 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m1 9h3v2h-3v3h-2v-3H8v-2h3V9h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-pulse-outline.svg����������������0000664�0000000�0000000�00000000574�14753064456�0030700�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-7 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1M5 15h3.11l1.51-2.85.76 5.77 3.69-4.71L15.89 15H19v4H5zm14-1.54h-2.47l-2.6-2.6-2.49 3.19-.94-6.97-3.33 6.38H5V5h2v1h10V5h2v8.46"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-pulse.svg������������������������0000664�0000000�0000000�00000000543�14753064456�0027217�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-7 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1M5 13.46h2.17l3.33-6.38.94 6.97 2.49-3.19 2.6 2.6H19V15h-3.11l-1.82-1.79-3.69 4.71-.76-5.77L8.11 15H5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-remove-outline.svg���������������0000664�0000000�0000000�00000000606�14753064456�0031041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m7 16H5V5h2v2h10V5h2zm-3.46-8.12L13.41 13l2.13 2.12-1.42 1.42L12 14.41l-2.12 2.13-1.41-1.42L10.59 13l-2.12-2.12 1.41-1.41L12 11.59l2.12-2.12z"/></svg>��������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-remove.svg�����������������������0000664�0000000�0000000�00000000561�14753064456�0027364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m3.54 12.12-1.42 1.42L12 14.41l-2.12 2.13-1.41-1.42L10.59 13l-2.12-2.12 1.41-1.41L12 11.59l2.12-2.12 1.42 1.41L13.41 13z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-search-outline.svg���������������0000664�0000000�0000000�00000000755�14753064456�0031016�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.03 19H5V5h2v2h10V5h2v4.5c.72.3 1.4.74 2 1.32V5a2 2 0 0 0-2-2h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h8.06c-.41-.26-.8-.55-1.16-.9-.33-.34-.63-.71-.87-1.1M12 3c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m8.31 14.9c.44-.69.69-1.52.69-2.4 0-2.5-2-4.5-4.5-4.5S12 13 12 15.5s2 4.5 4.5 4.5c.87 0 1.69-.25 2.38-.68L22 22.39 23.39 21zm-3.81.1a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5"/></svg>�������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-search.svg�����������������������0000664�0000000�0000000�00000000741�14753064456�0027334�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.9 10.9a6.505 6.505 0 0 1 9.1-.08V5a2 2 0 0 0-2-2h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h8.06c-.41-.26-.8-.55-1.16-.9a6.525 6.525 0 0 1 0-9.2M12 3c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m8.31 14.9c.44-.69.69-1.52.69-2.4 0-2.5-2-4.5-4.5-4.5S12 13 12 15.5s2 4.5 4.5 4.5c.87 0 1.69-.25 2.38-.68L22 22.39 23.39 21zm-3.81.1a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5"/></svg>�������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-text-clock-outline.svg�����������0000664�0000000�0000000�00000001023�14753064456�0031613�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11.11V5a2 2 0 0 0-2-2h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h6.11c1.26 1.24 2.98 2 4.89 2 3.87 0 7-3.13 7-7 0-1.91-.76-3.63-2-4.89M12 3c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1M5 19V5h2v2h10V5h2v4.68c-.91-.43-1.92-.68-3-.68H7v2h4.1c-.6.57-1.06 1.25-1.42 2H7v2h2.08c-.05.33-.08.66-.08 1 0 1.08.25 2.09.68 3zm11 2c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5m.5-4.75 2.86 1.69-.75 1.22L15 17v-5h1.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-text-clock.svg�������������������0000664�0000000�0000000�00000000767�14753064456�0030154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11.11V5a2 2 0 0 0-2-2h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h6.11c1.26 1.24 2.98 2 4.89 2 3.87 0 7-3.13 7-7 0-1.91-.76-3.63-2-4.89M12 3c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1M6 7h12v2H6zm3.08 10H6v-2h3.08c-.05.33-.08.66-.08 1s.03.67.08 1M6 13v-2h5.11c-.61.57-1.07 1.25-1.43 2zm10 8c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5m.5-4.75 2.86 1.69-.75 1.22L15 17v-5h1.5z"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-text-multiple-outline.svg��������0000664�0000000�0000000�00000000504�14753064456�0032356�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 7v14h14v2H4c-1.1 0-2-.9-2-2V7zm16-4c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h3.18C11.6 1.84 12.7 1 14 1s2.4.84 2.82 2zm-6 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m-4 4V5H8v12h12V5h-2v2m-3 8h-5v-2h5m3-2h-8V9h8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-text-multiple.svg����������������0000664�0000000�0000000�00000000445�14753064456�0030705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 3h-3.2c-.4-1.2-1.5-2-2.8-2s-2.4.8-2.8 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m-6 0c.6 0 1 .5 1 1s-.5 1-1 1-1-.5-1-1 .4-1 1-1m2 11H9v-2h7m3-2H9V8h10M4 21h14v2H4c-1.1 0-2-.9-2-2V7h2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-text-off-outline.svg�������������0000664�0000000�0000000�00000000543�14753064456�0031300�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 7V5h2v10.8l2 2V5a2 2 0 0 0-2-2h-4.18C14.25 1.44 12.53.64 11 1.2c-.86.3-1.5.96-1.82 1.8H6.2l4 4zm-5-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m2.2 8-2-2H17v2zM2.39 1.73 1.11 3 3 4.9V19a2 2 0 0 0 2 2h14.1l1.74 1.73 1.27-1.27zM5 19V6.89L7.11 9H7v2h2.11l2 2H7v2h6.11l4 4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-text-off.svg���������������������0000664�0000000�0000000�00000000520�14753064456�0027616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.39 1.73 1.11 3 3 4.9V19a2 2 0 0 0 2 2h14.1l1.74 1.73 1.27-1.27zM7 11h2.11l2 2H7zm7 6H7v-2h6.11l.89.89zm3-10v2h-4.8l2 2H17v2h-.8l4.8 4.8V5a2 2 0 0 0-2-2h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H6.2l4 4zm-5-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-text-outline.svg�����������������0000664�0000000�0000000�00000000471�14753064456�0030530�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-4.18C14.25 1.44 12.53.64 11 1.2c-.86.3-1.5.96-1.82 1.8H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-7 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1M7 7h10V5h2v14H5V5h2zm10 4H7V9h10zm-2 4H7v-2h8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-text-play-outline.svg������������0000664�0000000�0000000�00000000467�14753064456�0031500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-4.18C14.25 1.44 12.53.64 11 1.2c-.86.3-1.5.96-1.82 1.8H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h10v-2H5V5h2v2h10V5h2v9h2V5a2 2 0 0 0-2-2m-7 2a1 1 0 0 1-1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1 1 1 0 0 1-1 1m5 11v6l5-3zm0-5H7V9h10zm-2 4H7v-2h8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-text-play.svg��������������������0000664�0000000�0000000�00000000547�14753064456�0030022�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3a2 2 0 0 1 2 2v8.34a5.9 5.9 0 0 0-2-.34c-3.32 0-6 2.69-6 6 0 .68.11 1.36.34 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4.18c.32-.84.96-1.5 1.82-1.8 1.53-.56 3.25.24 3.82 1.8zm-7 0a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m-1 14v-2H7v2zm2-4v-2H7v2zm4-4V7H7v2zm0 7 5 3-5 3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-text-search-outline.svg����������0000664�0000000�0000000�00000001123�14753064456�0031766�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 9h-.5zM7 15h3c.08-.68.23-1.36.5-2H7zm4.9-4.1A6.53 6.53 0 0 1 16.5 9H7v2h4.82c.03-.03.05-.06.08-.1m0 9.2c.36.35.75.64 1.16.9H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h4.18c.32-.84.96-1.5 1.82-1.8 1.53-.56 3.25.24 3.82 1.8H19a2 2 0 0 1 2 2v5.82a6.4 6.4 0 0 0-2-1.32V5h-2v2H7V5H5v14h6.03c.24.39.54.76.87 1.1M11 4c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1m12.39 17L22 22.39l-3.12-3.07c-.69.43-1.51.68-2.38.68-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 .88-.25 1.71-.69 2.4zM19 15.5a2.5 2.5 0 0 0-5 0 2.5 2.5 0 0 0 5 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-text-search.svg������������������0000664�0000000�0000000�00000001076�14753064456�0030320�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.18 17H7v-2h3c.08-.68.23-1.36.5-2H7v-2h4.82c.03-.03.05-.06.08-.1A6.53 6.53 0 0 1 16.5 9H7V7h10v2h-.5c1.62 0 3.24.61 4.5 1.82V5a2 2 0 0 0-2-2h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h8.06c-.41-.26-.8-.55-1.16-.9-.9-.89-1.45-1.97-1.72-3.1M12 3c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m8.31 14.9c.44-.69.69-1.52.69-2.4 0-2.5-2-4.5-4.5-4.5S12 13 12 15.5s2 4.5 4.5 4.5c.87 0 1.69-.25 2.38-.68L22 22.39 23.39 21zm-3.81.1a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard-text.svg�������������������������0000664�0000000�0000000�00000000440�14753064456�0027047�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 9H7V7h10m0 6H7v-2h10m-3 6H7v-2h7M12 3a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m7 0h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clipboard.svg������������������������������0000664�0000000�0000000�00000000375�14753064456�0026074�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-7 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clippy.svg���������������������������������0000664�0000000�0000000�00000002002�14753064456�0025422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 15.5a2.5 2.5 0 0 1-2.5 2.5 2.5 2.5 0 0 1-2.5-2.5v-1.75a.75.75 0 0 1 .75-.75.75.75 0 0 1 .75.75v1.75a1 1 0 0 0 1 1 1 1 0 0 0 1-1v-3.61c-.87-.28-1.5-1.02-1.5-1.89 0-1.1 1-2 2.25-2s2.25.9 2.25 2c0 .87-.63 1.61-1.5 1.89zM8.25 8c1.25 0 2.25.9 2.25 2 0 .87-.63 1.61-1.5 1.89v5.36a3.25 3.25 0 0 0 3.25 3.25 3.25 3.25 0 0 0 3.25-3.25v-3.5a.75.75 0 0 1 .75-.75.75.75 0 0 1 .75.75v3.5A4.75 4.75 0 0 1 12.25 22a4.75 4.75 0 0 1-4.75-4.75v-5.36C6.63 11.61 6 10.87 6 10c0-1.1 1-2 2.25-2m1.81-1.87-.43 1.46c-.41-.22-.88-.34-1.38-.34-.91 0-1.72.4-2.22 1.02l-1.2-.9C5.46 6.57 6.41 6 7.5 5.81v-.06A3.75 3.75 0 0 1 11.25 2 3.75 3.75 0 0 1 15 5.75v.06c1.09.19 2.04.76 2.67 1.56l-1.2.9c-.5-.62-1.31-1.02-2.22-1.02-.5 0-.97.12-1.38.34l-.43-1.46c.33-.13.69-.26 1.06-.32v-.06c0-1.25-1-2.25-2.25-2.25S9 4.5 9 5.75v.06c.37.06.73.19 1.06.32m4.19 3.12c-.55 0-1 .34-1 .75s.45.75 1 .75 1-.34 1-.75-.45-.75-1-.75m-6 0c-.55 0-1 .34-1 .75s.45.75 1 .75 1-.34 1-.75-.45-.75-1-.75"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-alert-outline.svg��������������������0000664�0000000�0000000�00000000426�14753064456�0030007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7v6l5.2 3.1.8-1.2-4.5-2.7V7zm9 5v6h2v-6zm0 8v2h2v-2zm-2 0c-1.7 1.3-3.7 2-6 2-5.5 0-10-4.5-10-10S6.5 2 12 2c4.8 0 8.9 3.4 9.8 8h-2.1c-.9-3.4-4-6-7.7-6-4.4 0-8 3.6-8 8s3.6 8 8 8c2.4 0 4.5-1.1 6-2.7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-alert.svg����������������������������0000664�0000000�0000000�00000000327�14753064456�0026332�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 12h2v6h-2zm0 8h2v2h-2zM12 2C6.5 2 2 6.5 2 12s4.5 10 10 10c2.3 0 4.3-.8 6-2V10h3.8c-.9-4.6-5-8-9.8-8m4.2 14.2L11 13V7h1.5v5.2l4.5 2.7z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-check-outline.svg��������������������0000664�0000000�0000000�00000000552�14753064456�0027755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.5 17-5 5-3.5-3.5 1.5-1.5 2 2 3.5-3.5zm-10.4 2.9c-.4.1-.7.1-1.1.1-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8c0 .4 0 .7-.1 1.1.7.1 1.3.3 1.9.6.1-.6.2-1.1.2-1.7 0-5.5-4.5-10-10-10S2 6.5 2 12s4.5 10 10 10c.6 0 1.2-.1 1.7-.2-.3-.5-.5-1.2-.6-1.9m2.5-5.8-3.1-1.8V7H11v6l3.5 2.1c.3-.4.7-.7 1.1-1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-check.svg����������������������������0000664�0000000�0000000�00000000460�14753064456�0026276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.5 17-5 5-3.5-3.5 1.5-1.5 2 2 3.5-3.5zM13 19c0-1.5.5-2.8 1.4-3.9L11 13V7h1.5v5.2l3.1 1.9c1-.7 2.1-1.1 3.4-1.1 1 0 2 .3 2.8.7.1-.6.2-1.1.2-1.7 0-5.5-4.5-10-10-10S2 6.5 2 12s4.5 10 10 10c.6 0 1.2-.1 1.7-.2-.4-.8-.7-1.8-.7-2.8"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-digital.svg��������������������������0000664�0000000�0000000�00000000511�14753064456�0026633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2M2 8h20v8H2m1-7v1.5h3.25L3 15h1.75L8 10.5V9m1.25 0v1.5h1.5V9M12 9v1.5h1.5V15H15V9m2 0a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1m-2.5 1.5h2v3h-2m-8.25 0V15h1.5v-1.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-edit-outline.svg���������������������0000664�0000000�0000000�00000000601�14753064456�0027620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 13.1c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6 0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-1.9 1.8-6.1 6V23h2.1l6.1-6.1zM12.5 7v5.2l4 2.4-1 1L11 13V7zM11 21.9c-5.1-.5-9-4.8-9-9.9C2 6.5 6.5 2 12 2c5.3 0 9.6 4.1 10 9.3-.3-.1-.6-.2-1-.2s-.7.1-1 .2C19.6 7.2 16.2 4 12 4c-4.4 0-8 3.6-8 8 0 4.1 3.1 7.5 7.1 7.9l-.1.2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-edit.svg�����������������������������0000664�0000000�0000000�00000000514�14753064456�0026146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 13.1c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6 0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-1.9 1.8-6.1 6V23h2.1l6.1-6.1zm-8.1 7c-5.1-.5-9-4.8-9-9.9C2 6.5 6.5 2 12 2c5.3 0 9.6 4.1 10 9.3-.3-.1-.6-.2-1-.2-.8 0-1.4.4-1.8.8l-2.7 2.7-4-2.4V7H11v6l4.4 2.7-4.4 4.4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-end.svg������������������������������0000664�0000000�0000000�00000000507�14753064456�0025771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1C8.14 1 5 4.14 5 8a7 7 0 0 0 7 7c3.86 0 7-3.13 7-7 0-3.86-3.14-7-7-7m0 2.15c2.67 0 4.85 2.17 4.85 4.85s-2.18 4.85-4.85 4.85A4.85 4.85 0 0 1 7.15 8 4.85 4.85 0 0 1 12 3.15M11 5v3.69l3.19 1.84.75-1.3-2.44-1.41V5M15 16v3H3v2h12v3l4-4m0 0v4h2v-8h-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-fast.svg�����������������������������0000664�0000000�0000000�00000000633�14753064456�0026160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 4a8 8 0 0 1 8 8 8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8m0 2a6 6 0 0 0-6 6 6 6 0 0 0 6 6 6 6 0 0 0 6-6 6 6 0 0 0-6-6m-1 2h1.5v3.78l2.33 2.33-1.06 1.06L14 12.4zM2 18a1 1 0 0 1-1-1 1 1 0 0 1 1-1h3.83c.31.71.71 1.38 1.17 2zm1-5a1 1 0 0 1-1-1 1 1 0 0 1 1-1h2.05L5 12l.05 1zm1-5a1 1 0 0 1-1-1 1 1 0 0 1 1-1h3c-.46.62-.86 1.29-1.17 2z"/></svg>�����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-in.svg�������������������������������0000664�0000000�0000000�00000000525�14753064456�0025631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.21.79.79 2.21l4.01 4L3 8h5V3L6.21 4.8M12 8c-3.86 0-7 3.13-7 7a7 7 0 0 0 7 7c3.86 0 7-3.13 7-7a7 7 0 0 0-7-7m0 2.15c2.67 0 4.85 2.17 4.85 4.85A4.85 4.85 0 0 1 12 19.85c-2.68 0-4.85-2.17-4.85-4.85A4.85 4.85 0 0 1 12 10.15M11 12v3.69l3.19 1.84.75-1.3-2.44-1.41V12"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-minus-outline.svg��������������������0000664�0000000�0000000�00000000602�14753064456�0030027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.47 15.08 11 13V7h1.5v5.25l3.08 1.83c-.41.28-.79.62-1.11 1m-1.39 4.84c-.36.05-.71.08-1.08.08-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8c0 .37-.03.72-.08 1.08.69.1 1.33.32 1.92.64.1-.56.16-1.13.16-1.72 0-5.5-4.5-10-10-10S2 6.5 2 12s4.47 10 10 10c.59 0 1.16-.06 1.72-.16-.32-.59-.54-1.23-.64-1.92M15 18v2h8v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-minus.svg����������������������������0000664�0000000�0000000�00000000465�14753064456�0026361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.72 21.84c-.56.1-1.13.16-1.72.16-5.5 0-10-4.5-10-10S6.5 2 12 2s10 4.5 10 10c0 .59-.06 1.16-.16 1.72A5.9 5.9 0 0 0 19 13c-1.26 0-2.43.39-3.4 1.06l-3.1-1.86V7H11v6l3.43 2.11A5.96 5.96 0 0 0 13 19c0 1.03.26 2 .72 2.84M15 18v2h8v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-out.svg������������������������������0000664�0000000�0000000�00000000527�14753064456�0026034�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18 1 1.8 1.79-4.01 4 1.42 1.42 4-4L23 6V1M12 8c-3.86 0-7 3.13-7 7a7 7 0 0 0 7 7c3.86 0 7-3.13 7-7a7 7 0 0 0-7-7m0 2.15c2.67 0 4.85 2.17 4.85 4.85A4.85 4.85 0 0 1 12 19.85c-2.68 0-4.85-2.17-4.85-4.85A4.85 4.85 0 0 1 12 10.15M11 12v3.69l3.19 1.84.75-1.3-2.44-1.41V12"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-outline.svg��������������������������0000664�0000000�0000000�00000000377�14753064456�0026707�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20a8 8 0 0 0 8-8 8 8 0 0 0-8-8 8 8 0 0 0-8 8 8 8 0 0 0 8 8m0-18a10 10 0 0 1 10 10 10 10 0 0 1-10 10C6.47 22 2 17.5 2 12A10 10 0 0 1 12 2m.5 5v5.25l4.5 2.67-.75 1.23L11 13V7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-plus-outline.svg���������������������0000664�0000000�0000000�00000000626�14753064456�0027665�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.47 15.08 11 13V7h1.5v5.25l3.08 1.83c-.41.28-.79.62-1.11 1m-1.39 4.84c-.36.05-.71.08-1.08.08-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8c0 .37-.03.72-.08 1.08.69.1 1.33.32 1.92.64.1-.56.16-1.13.16-1.72 0-5.5-4.5-10-10-10S2 6.5 2 12s4.47 10 10 10c.59 0 1.16-.06 1.72-.16-.32-.59-.54-1.23-.64-1.92M18 15v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-plus.svg�����������������������������0000664�0000000�0000000�00000000511�14753064456�0026201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.72 21.84c-.56.1-1.13.16-1.72.16-5.5 0-10-4.5-10-10S6.5 2 12 2s10 4.5 10 10c0 .59-.06 1.16-.16 1.72A5.9 5.9 0 0 0 19 13c-1.26 0-2.43.39-3.4 1.06l-3.1-1.86V7H11v6l3.43 2.11A5.96 5.96 0 0 0 13 19c0 1.03.26 2 .72 2.84M18 15v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-remove-outline.svg�������������������0000664�0000000�0000000�00000000753�14753064456�0030200�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.47 15.08 11 13V7h1.5v5.25l3.08 1.83c-.41.28-.79.62-1.11 1m-1.39 4.84c-.36.05-.71.08-1.08.08-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8c0 .37-.03.72-.08 1.08.69.1 1.33.32 1.92.64.1-.56.16-1.13.16-1.72 0-5.5-4.5-10-10-10S2 6.5 2 12s4.47 10 10 10c.59 0 1.16-.06 1.72-.16-.32-.59-.54-1.23-.64-1.92m8.04-4.46L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19l2.13-2.12z"/></svg>���������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-remove.svg���������������������������0000664�0000000�0000000�00000000635�14753064456�0026522�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.72 21.84c-.56.1-1.13.16-1.72.16-5.5 0-10-4.5-10-10S6.5 2 12 2s10 4.5 10 10c0 .59-.06 1.16-.16 1.72A5.9 5.9 0 0 0 19 13c-1.26 0-2.43.39-3.4 1.06l-3.1-1.86V7H11v6l3.43 2.11A5.96 5.96 0 0 0 13 19c0 1.03.26 2 .72 2.84m7.4-6.38L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19l2.13-2.12z"/></svg>���������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-star-four-points-outline.svg���������0000664�0000000�0000000�00000000606�14753064456�0032134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20c.4 0 .7 0 1.1-.1.1.7.3 1.4.6 1.9-.5.1-1.1.2-1.7.2-5.5 0-10-4.5-10-10S6.5 2 12 2s10 4.5 10 10c0 .5-.08.97-.16 1.5l-.04.2c-.6-.3-1.2-.5-1.9-.6.1-.4.1-.7.1-1.1 0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8m.5-7.7 3.1 1.8c-.4.3-.8.6-1.1 1L11 13V7h1.5zm5.24 5.45L19 15l1.25 2.75L23 19l-2.75 1.26L19 23l-1.26-2.74L15 19z"/></svg>��������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-star-four-points.svg�����������������0000664�0000000�0000000�00000000524�14753064456�0030456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.4 15.1c-.9 1.1-1.4 2.4-1.4 3.9 0 1 .3 2 .7 2.8-.5.1-1.1.2-1.7.2-5.5 0-10-4.5-10-10S6.5 2 12 2s10 4.5 10 10c0 .5-.08.97-.16 1.5l-.04.2C21 13.3 20 13 19 13c-1.3 0-2.4.4-3.4 1.1l-3.1-1.9V7H11v6zm3.34 2.65L19 15l1.25 2.75L23 19l-2.75 1.26L19 23l-1.26-2.74L15 19z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-start.svg����������������������������0000664�0000000�0000000�00000000504�14753064456�0026355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1C8.14 1 5 4.14 5 8a7 7 0 0 0 7 7c3.86 0 7-3.13 7-7 0-3.86-3.14-7-7-7m0 2.15c2.67 0 4.85 2.17 4.85 4.85s-2.18 4.85-4.85 4.85A4.85 4.85 0 0 1 7.15 8 4.85 4.85 0 0 1 12 3.15M11 5v3.69l3.19 1.84.75-1.3-2.44-1.41V5M4 16v8h2v-3h12v3l4-4-4-4v3H6v-3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-time-eight-outline.svg���������������0000664�0000000�0000000�00000000344�14753064456�0030733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20c4.4 0 8-3.6 8-8s-3.6-8-8-8-8 3.6-8 8 3.6 8 8 8m0-18c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2m.5 10.8-4.8 2.8-.7-1.4 4-2.3V7h1.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-time-eight.svg�����������������������0000664�0000000�0000000�00000000253�14753064456�0027255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2M7.7 15.5 7 14.2l4-2.3V7h1.5v5.8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-time-eleven-outline.svg��������������0000664�0000000�0000000�00000000342�14753064456�0031107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20c4.4 0 8-3.6 8-8s-3.6-8-8-8-8 3.6-8 8 3.6 8 8 8m0-18c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2m.5 5v6H11L8.5 8.6l1.3-.8L11 10V7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-time-eleven.svg����������������������0000664�0000000�0000000�00000000257�14753064456�0027437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m.5 11H11L8.5 8.6l1.3-.8L11 10V7h1.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-time-five-outline.svg����������������0000664�0000000�0000000�00000000341�14753064456�0030561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20c4.4 0 8-3.6 8-8s-3.6-8-8-8-8 3.6-8 8 3.6 8 8 8m0-18c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2m3.3 14.2L14 17l-3-5.2V7h1.5v4.4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-time-five.svg������������������������0000664�0000000�0000000�00000000250�14753064456�0027103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m2 15-3-5.2V7h1.5v4.4l2.8 4.9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-time-four-outline.svg����������������0000664�0000000�0000000�00000000341�14753064456�0030603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20c4.4 0 8-3.6 8-8s-3.6-8-8-8-8 3.6-8 8 3.6 8 8 8m0-18c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2m5 11.9-.7 1.3-5.3-2.9V7h1.5v4.4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-time-four.svg������������������������0000664�0000000�0000000�00000000256�14753064456�0027133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m4.3 13.2L11 12.3V7h1.5v4.4l4.5 2.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-time-nine-outline.svg����������������0000664�0000000�0000000�00000000323�14753064456�0030561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20c4.4 0 8-3.6 8-8s-3.6-8-8-8-8 3.6-8 8 3.6 8 8 8m0-18c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2m.5 5v6H7v-1.5h4V7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-time-nine.svg������������������������0000664�0000000�0000000�00000000240�14753064456�0027102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m.5 11H7v-1.5h4V7h1.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-time-one-outline.svg�����������������0000664�0000000�0000000�00000000362�14753064456�0030414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20c4.42 0 8-3.58 8-8s-3.58-8-8-8-8 3.58-8 8 3.58 8 8 8m0-18c5.5 0 10 4.5 10 10s-4.5 10-10 10C6.47 22 2 17.5 2 12S6.5 2 12 2m3.3 5.8-3 5.2H11V7h1.5v2.65l1.5-2.6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-time-one.svg�������������������������0000664�0000000�0000000�00000000253�14753064456�0026736�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m.3 11H11V7h1.5v2.7L14 7.1l1.3.8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-time-seven-outline.svg���������������0000664�0000000�0000000�00000000343�14753064456�0030752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20c4.4 0 8-3.6 8-8s-3.6-8-8-8-8 3.6-8 8 3.6 8 8 8m0-18c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2m.5 5v5.2L9.8 17l-1.3-.8 2.5-4.4V7z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-time-seven.svg�����������������������0000664�0000000�0000000�00000000260�14753064456�0027273�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m.5 10.2L9.8 17l-1.3-.8 2.5-4.4V7h1.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-time-six-outline.svg�����������������0000664�0000000�0000000�00000000316�14753064456�0030435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20c4.4 0 8-3.6 8-8s-3.6-8-8-8-8 3.6-8 8 3.6 8 8 8m0-18c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2m.5 5v10H11V7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-time-six.svg�������������������������0000664�0000000�0000000�00000000232�14753064456�0026755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m.5 15H11V7h1.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-time-ten-outline.svg�����������������0000664�0000000�0000000�00000000347�14753064456�0030424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20c4.4 0 8-3.6 8-8s-3.6-8-8-8-8 3.6-8 8 3.6 8 8 8m0-18c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2m.5 11H11l-4-2.3.8-1.3 3.3 1.9V7h1.5v6Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-time-ten.svg�������������������������0000664�0000000�0000000�00000000261�14753064456�0026742�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m.5 11H11l-4-2.3.8-1.3 3.3 1.9V7h1.5v6Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-time-three-outline.svg���������������0000664�0000000�0000000�00000000327�14753064456�0030743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20c4.4 0 8-3.6 8-8s-3.6-8-8-8-8 3.6-8 8 3.6 8 8 8m0-18c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2m5 9.5V13h-6V7h1.5v4.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-time-three.svg�����������������������0000664�0000000�0000000�00000000240�14753064456�0027260�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m5 11h-6V7h1.5v4.5H17z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-time-twelve-outline.svg��������������0000664�0000000�0000000�00000000340�14753064456�0031135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20c4.42 0 8-3.58 8-8s-3.58-8-8-8-8 3.58-8 8 3.58 8 8 8m0-18c5.5 0 10 4.5 10 10s-4.5 10-10 10C6.47 22 2 17.5 2 12S6.5 2 12 2m.5 11.03H11V7h1.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-time-twelve.svg����������������������0000664�0000000�0000000�00000000232�14753064456�0027460�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m.5 11H11V7h1.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-time-two-outline.svg�����������������0000664�0000000�0000000�00000000362�14753064456�0030444�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20c4.42 0 8-3.58 8-8s-3.58-8-8-8-8 3.58-8 8 3.58 8 8 8m0-18c5.5 0 10 4.5 10 10s-4.5 10-10 10C6.47 22 2 17.5 2 12S6.5 2 12 2m.5 11H11V7h1.5v4.26l3.7-2.13.75 1.3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock-time-two.svg�������������������������0000664�0000000�0000000�00000000254�14753064456�0026767�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m.5 11H11V7h1.5v4.3l3.7-2.1.8 1.3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clock.svg����������������������������������0000664�0000000�0000000�00000000273�14753064456�0025225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m4.2 14.2L11 13V7h1.5v5.2l4.5 2.7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/close-box-multiple-outline.svg�������������0000664�0000000�0000000�00000000461�14753064456�0031332�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H8c-1.1 0-2 .9-2 2v12a2 2 0 0 0 2 2h12c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2m0 14H8V4h12zM4 6v14h14v2H4a2 2 0 0 1-2-2V6zm5.77 6.84L12.6 10 9.77 7.15l1.4-1.4L14 8.6l2.84-2.83 1.4 1.4L15.4 10l2.83 2.84-1.4 1.4L14 11.4l-2.83 2.84z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/close-box-multiple.svg���������������������0000664�0000000�0000000�00000000474�14753064456�0027661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 20h14v2H4a2 2 0 0 1-2-2V6h2zM20.22 2H7.78C6.8 2 6 2.8 6 3.78v12.44C6 17.2 6.8 18 7.78 18h12.44c.98 0 1.78-.8 1.78-1.78V3.78C22 2.8 21.2 2 20.22 2M19 13.6 17.6 15 14 11.4 10.4 15 9 13.6l3.6-3.6L9 6.4 10.4 5 14 8.6 17.6 5 19 6.4 15.4 10z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/close-box-outline.svg����������������������0000664�0000000�0000000�00000000373�14753064456�0027503�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m0 16H5V5h14zM17 8.4 13.4 12l3.6 3.6-1.4 1.4-3.6-3.6L8.4 17 7 15.6l3.6-3.6L7 8.4 8.4 7l3.6 3.6L15.6 7z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/close-box.svg������������������������������0000664�0000000�0000000�00000000356�14753064456�0026027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-3.4 14L12 13.4 8.4 17 7 15.6l3.6-3.6L7 8.4 8.4 7l3.6 3.6L15.6 7 17 8.4 13.4 12l3.6 3.6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/close-circle-multiple-outline.svg����������0000664�0000000�0000000�00000000630�14753064456�0032001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.54 9.88-1.42-1.41L15 10.59l-2.12-2.12-1.41 1.41L13.59 12l-2.12 2.12 1.41 1.42L15 13.41l2.12 2.13 1.42-1.42L16.41 12M2 12c0-2.79 1.64-5.2 4-6.32V3.5C2.5 4.76 0 8.09 0 12s2.5 7.24 6 8.5v-2.18C3.64 17.2 2 14.79 2 12m13-9c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9m0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7"/></svg>��������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/close-circle-multiple.svg������������������0000664�0000000�0000000�00000000520�14753064456�0030322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 12c0-2.79 1.64-5.2 4-6.32V3.5C2.5 4.76 0 8.09 0 12s2.5 7.24 6 8.5v-2.18C3.64 17.2 2 14.79 2 12m13-9c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9m5 12.59L18.59 17 15 13.41 11.41 17 10 15.59 13.59 12 10 8.41 11.41 7 15 10.59 18.59 7 20 8.41 16.41 12z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/close-circle-outline.svg�������������������0000664�0000000�0000000�00000000455�14753064456�0030155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m0-18C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2m2.59 6L12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/close-circle.svg���������������������������0000664�0000000�0000000�00000000364�14753064456�0026477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c5.53 0 10 4.47 10 10s-4.47 10-10 10S2 17.53 2 12 6.47 2 12 2m3.59 5L12 10.59 8.41 7 7 8.41 10.59 12 7 15.59 8.41 17 12 13.41 15.59 17 17 15.59 13.41 12 17 8.41z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/close-network-outline.svg������������������0000664�0000000�0000000�00000000553�14753064456�0030404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 20a1 1 0 0 0-1-1h-1v-2h4a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h4v2h-1a1 1 0 0 0-1 1H2v2h7a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1h7v-2zm-8-5V5h10v10zm8.54-2.88L13.41 10l2.12-2.13-1.41-1.41L12 8.59 9.88 6.46 8.47 7.87 10.59 10l-2.12 2.13 1.41 1.41L12 11.41l2.12 2.13z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/close-network.svg��������������������������0000664�0000000�0000000�00000000514�14753064456�0026724�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.59 6 12 8.59 9.41 6 8 7.41 10.59 10 8 12.59 9.41 14 12 11.41 14.59 14 16 12.59 13.41 10 16 7.41zM17 3a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-4v2h1a1 1 0 0 1 1 1h7v2h-7a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1H2v-2h7a1 1 0 0 1 1-1h1v-2H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/close-octagon-outline.svg������������������0000664�0000000�0000000�00000000471�14753064456�0030344�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.27 3 3 8.27v7.46L8.27 21h7.46C17.5 19.24 21 15.73 21 15.73V8.27L15.73 3M9.1 5h5.8L19 9.1v5.8L14.9 19H9.1L5 14.9V9.1m4.12-1.39L7.71 9.12 10.59 12l-2.88 2.88 1.41 1.41L12 13.41l2.88 2.88 1.41-1.41L13.41 12l2.88-2.88-1.41-1.41L12 10.59"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/close-octagon.svg��������������������������0000664�0000000�0000000�00000000350�14753064456�0026663�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.27 3 3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3M8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59 15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/close-outline.svg��������������������������0000664�0000000�0000000�00000000445�14753064456�0026715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 16.74 7.76 12 3 7.26 7.26 3 12 7.76 16.74 3 21 7.26 16.24 12 21 16.74 16.74 21 12 16.24 7.26 21zm9-3.33 4.74 4.75 1.42-1.42L13.41 12l4.75-4.74-1.42-1.42L12 10.59 7.26 5.84 5.84 7.26 10.59 12l-4.75 4.74 1.42 1.42z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/close-thick.svg����������������������������0000664�0000000�0000000�00000000261�14753064456�0026334�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6.91 17.09 4 12 9.09 6.91 4 4 6.91 9.09 12 4 17.09 6.91 20 12 14.91 17.09 20 20 17.09 14.91 12z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/close.svg����������������������������������0000664�0000000�0000000�00000000263�14753064456�0025236�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/closed-caption-outline.svg�����������������0000664�0000000�0000000�00000001171�14753064456�0030511�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 4c-.55 0-1 .18-1.41.57C3.2 4.96 3 5.44 3 6v12c0 .56.2 1.04.59 1.43.41.39.86.57 1.41.57h14c.5 0 1-.19 1.39-.59.41-.41.61-.88.61-1.41V6c0-.53-.2-1-.61-1.41C20 4.19 19.5 4 19 4zm-.5 1.5h15v13h-15zM7 9c-.3 0-.53.09-.72.28S6 9.7 6 10v4c0 .3.09.53.28.72S6.7 15 7 15h3c.27 0 .5-.09.71-.28.2-.19.29-.42.29-.72v-1H9.5v.5h-2v-3h2v.5H11v-1c0-.3-.09-.53-.29-.72C10.5 9.09 10.27 9 10 9zm7 0c-.27 0-.5.09-.71.28-.2.19-.29.42-.29.72v4c0 .3.09.53.29.72.21.19.44.28.71.28h3c.3 0 .53-.09.72-.28S18 14.3 18 14v-1h-1.5v.5h-2v-3h2v.5H18v-1c0-.3-.09-.53-.28-.72S17.3 9 17 9z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/closed-caption.svg�������������������������0000664�0000000�0000000�00000000521�14753064456�0027032�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 11h-1.5v-.5h-2v3h2V13H18v1a1 1 0 0 1-1 1h-3a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1m-7 1H9.5v-.5h-2v3h2V13H11v1a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1m8-6H5c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-alert-outline.svg��������������������0000664�0000000�0000000�00000001227�14753064456�0030022�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.86 12.5A4.31 4.31 0 0 0 19 11c0-1.95-.68-3.6-2.04-4.96S13.95 4 12 4c-1.58 0-3 .47-4.25 1.43s-2.08 2.19-2.5 3.72c-1.25.28-2.29.93-3.08 1.95S1 13.28 1 14.58c0 1.51.54 2.8 1.61 3.85C3.69 19.5 5 20 6.5 20h12c1.25 0 2.31-.44 3.19-1.31.87-.88 1.31-1.94 1.31-3.19q0-1.725-1.14-3m-1.59 4.77c-.48.49-1.07.73-1.77.73h-12c-.97 0-1.79-.34-2.47-1C3.34 16.29 3 15.47 3 14.5s.34-1.79 1.03-2.47C4.71 11.34 5.53 11 6.5 11H7c0-1.38.5-2.56 1.46-3.54C9.44 6.5 10.62 6 12 6s2.56.5 3.54 1.46C16.5 8.44 17 9.62 17 11v2h1.5c.7 0 1.29.24 1.77.73S21 14.8 21 15.5s-.24 1.29-.73 1.77M11 15h2v2h-2zm0-8h2v6h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-alert.svg����������������������������0000664�0000000�0000000�00000000574�14753064456�0026351�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.86 12.5A4.31 4.31 0 0 0 19 11c0-1.95-.68-3.6-2.04-4.96S13.95 4 12 4c-1.58 0-3 .47-4.25 1.43s-2.08 2.19-2.5 3.72c-1.25.28-2.29.93-3.08 1.95S1 13.28 1 14.58c0 1.51.54 2.8 1.61 3.85C3.69 19.5 5 20 6.5 20h12c1.25 0 2.31-.44 3.19-1.31.87-.88 1.31-1.94 1.31-3.19q0-1.725-1.14-3M13 17h-2v-2h2zm0-4h-2V7h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-arrow-down-outline.svg���������������0000664�0000000�0000000�00000001107�14753064456�0031007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.03 12.03C3.34 12.71 3 13.53 3 14.5s.34 1.79 1.03 2.5c.68.66 1.5 1 2.47 1h6.59c-.05.33-.09.66-.09 1s.04.67.09 1H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04S19 9.05 19 11c1.15.13 2.1.63 2.86 1.5.51.57.84 1.21 1 1.92A5.9 5.9 0 0 0 19 13h-2v-2c0-1.38-.5-2.56-1.46-3.54C14.56 6.5 13.38 6 12 6s-2.56.5-3.54 1.46C7.5 8.44 7 9.62 7 11h-.5c-.97 0-1.79.34-2.47 1.03M20 16h-2v4h-2l3 3 3-3h-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-arrow-down.svg�����������������������0000664�0000000�0000000�00000000604�14753064456�0027333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04S19 9.05 19 11c1.15.13 2.1.63 2.86 1.5.51.57.84 1.21 1 1.92A5.9 5.9 0 0 0 19 13c-3.31 0-6 2.69-6 6m7-3h-2v4h-2l3 3 3-3h-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-arrow-left-outline.svg���������������0000664�0000000�0000000�00000001105�14753064456�0030770�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04S19 9.05 19 11c1.15.13 2.1.63 2.86 1.5.51.57.84 1.21 1 1.92A5.9 5.9 0 0 0 19 13h-2v-2c0-1.38-.5-2.56-1.46-3.54C14.56 6.5 13.38 6 12 6s-2.56.5-3.54 1.46C7.5 8.44 7 9.62 7 11h-.5c-.97 0-1.79.34-2.47 1.03-.69.68-1.03 1.5-1.03 2.47s.34 1.79 1.03 2.5c.68.66 1.5 1 2.47 1h6.59c-.05.33-.09.66-.09 1m5-3-3 3 3 3v-2h4v-2h-4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-arrow-left.svg�����������������������0000664�0000000�0000000�00000000604�14753064456�0027316�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04S19 9.05 19 11c1.15.13 2.1.63 2.86 1.5.51.57.84 1.21 1 1.92A5.9 5.9 0 0 0 19 13c-3.31 0-6 2.69-6 6m5-3-3 3 3 3v-2h4v-2h-4z"/></svg>����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-arrow-right-outline.svg��������������0000664�0000000�0000000�00000001104�14753064456�0031152�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.03 12.03C3.34 12.71 3 13.53 3 14.5s.34 1.79 1.03 2.5c.68.66 1.5 1 2.47 1h6.59c-.05.33-.09.66-.09 1s.04.67.09 1H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04S19 9.05 19 11c1.15.13 2.1.63 2.86 1.5.51.57.84 1.21 1 1.92A5.9 5.9 0 0 0 19 13h-2v-2c0-1.38-.5-2.56-1.46-3.54C14.56 6.5 13.38 6 12 6s-2.56.5-3.54 1.46C7.5 8.44 7 9.62 7 11h-.5c-.97 0-1.79.34-2.47 1.03M23 19l-3-3v2h-4v2h4v2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-arrow-right.svg����������������������0000664�0000000�0000000�00000000601�14753064456�0027476�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04S19 9.05 19 11c1.15.13 2.1.63 2.86 1.5.51.57.84 1.21 1 1.92A5.9 5.9 0 0 0 19 13c-3.31 0-6 2.69-6 6m10 0-3-3v2h-4v2h4v2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-arrow-up-outline.svg�����������������0000664�0000000�0000000�00000001104�14753064456�0030461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.03 12.03C3.34 12.71 3 13.53 3 14.5s.34 1.79 1.03 2.5c.68.66 1.5 1 2.47 1h6.59c-.05.33-.09.66-.09 1s.04.67.09 1H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04S19 9.05 19 11c1.15.13 2.1.63 2.86 1.5.51.57.84 1.21 1 1.92A5.9 5.9 0 0 0 19 13h-2v-2c0-1.38-.5-2.56-1.46-3.54C14.56 6.5 13.38 6 12 6s-2.56.5-3.54 1.46C7.5 8.44 7 9.62 7 11h-.5c-.97 0-1.79.34-2.47 1.03M16 18h2v4h2v-4h2l-3-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-arrow-up.svg�������������������������0000664�0000000�0000000�00000000601�14753064456�0027005�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04S19 9.05 19 11c1.15.13 2.1.63 2.86 1.5.51.57.84 1.21 1 1.92A5.9 5.9 0 0 0 19 13c-3.31 0-6 2.69-6 6m3-1h2v4h2v-4h2l-3-3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-braces.svg���������������������������0000664�0000000�0000000�00000001153�14753064456�0026473�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.86 12.5A4.31 4.31 0 0 0 19 11c0-1.95-.68-3.6-2.04-4.96S13.95 4 12 4c-1.58 0-3 .47-4.25 1.43s-2.08 2.19-2.5 3.72c-1.25.28-2.29.93-3.08 1.95S1 13.28 1 14.58c0 1.51.54 2.8 1.61 3.85C3.69 19.5 5 20 6.5 20h12c1.25 0 2.31-.44 3.19-1.31.87-.88 1.31-1.94 1.31-3.19q0-1.725-1.14-3M10.5 10H9v1c0 1.11-.89 2-2 2a2 2 0 0 1 2 2v1h1.5v2H9a2 2 0 0 1-2-2v-1c0-.55-.45-1-1-1h-.5v-2H6c.55 0 1-.45 1-1v-1c0-1.1.9-2 2-2h1.5zm8 4H18c-.55 0-1 .45-1 1v1c0 1.11-.89 2-2 2h-1.5v-2H15v-1c0-1.1.9-2 2-2a2 2 0 0 1-2-2v-1h-1.5V8H15a2 2 0 0 1 2 2v1c0 .55.45 1 1 1h.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-cancel-outline.svg�������������������0000664�0000000�0000000�00000001443�14753064456�0030140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18.5c0 .5.07 1 .18 1.5H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04S19 9.05 19 11c1.15.13 2.1.63 2.86 1.5.24.26.43.55.6.86A6.37 6.37 0 0 0 18.5 12c-.5 0-1 .07-1.5.18V11c0-1.38-.5-2.56-1.46-3.54C14.56 6.5 13.38 6 12 6s-2.56.5-3.54 1.46C7.5 8.44 7 9.62 7 11h-.5c-.97 0-1.79.34-2.47 1.03-.69.68-1.03 1.5-1.03 2.47s.34 1.79 1.03 2.5c.68.66 1.5 1 2.47 1h5.53c-.03.17-.03.33-.03.5m11 0c0 2.5-2 4.5-4.5 4.5S14 21 14 18.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5m-3 2.58L15.92 17c-.27.42-.42.94-.42 1.5 0 1.66 1.34 3 3 3 .56 0 1.08-.15 1.5-.42m1.5-2.58c0-1.66-1.34-3-3-3-.56 0-1.08.15-1.5.42L21.08 20c.27-.42.42-.94.42-1.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-cancel.svg���������������������������0000664�0000000�0000000�00000001125�14753064456�0026460�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18.5c0 .5.07 1 .18 1.5H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04S19 9.05 19 11c1.15.13 2.1.63 2.86 1.5.24.26.43.55.6.86A6.37 6.37 0 0 0 18.5 12a6.5 6.5 0 0 0-6.5 6.5m11 0c0 2.5-2 4.5-4.5 4.5S14 21 14 18.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5m-3 2.58L15.92 17c-.27.42-.42.94-.42 1.5 0 1.66 1.34 3 3 3 .56 0 1.08-.15 1.5-.42m1.5-2.58c0-1.66-1.34-3-3-3-.56 0-1.08.15-1.5.42L21.08 20c.27-.42.42-.94.42-1.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-check-outline.svg��������������������0000664�0000000�0000000�00000001141�14753064456�0027763�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04S19 9.05 19 11c1.15.13 2.1.63 2.86 1.5.51.57.84 1.21 1 1.92A5.9 5.9 0 0 0 19 13h-2v-2c0-1.38-.5-2.56-1.46-3.54C14.56 6.5 13.38 6 12 6s-2.56.5-3.54 1.46C7.5 8.44 7 9.62 7 11h-.5c-.97 0-1.79.34-2.47 1.03-.69.68-1.03 1.5-1.03 2.47s.34 1.79 1.03 2.5c.68.66 1.5 1 2.47 1h6.59c-.05.33-.09.66-.09 1m4.75.43-1.59-1.59L15 19l2.75 3 4.75-4.75-1.16-1.41z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-check-variant-outline.svg������������0000664�0000000�0000000�00000001017�14753064456�0031427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.35 17 16 11.35 14.55 9.9l-4.22 4.23-2.1-2.1-1.43 1.42M6.5 20q-2.28 0-3.89-1.57Q1 16.85 1 14.58q0-1.95 1.17-3.48 1.18-1.53 3.08-1.95.63-2.3 2.5-3.72Q9.63 4 12 4q2.93 0 4.96 2.04Q19 8.07 19 11q1.73.2 2.86 1.5 1.14 1.28 1.14 3 0 1.88-1.31 3.19T18.5 20m-12-2h12q1.05 0 1.77-.73.73-.72.73-1.77t-.73-1.77Q19.55 13 18.5 13H17v-2q0-2.07-1.46-3.54Q14.08 6 12 6 9.93 6 8.46 7.46 7 8.93 7 11h-.5q-1.45 0-2.47 1.03Q3 13.05 3 14.5T4.03 17q1.02 1 2.47 1m5.5-6"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-check-variant.svg��������������������0000664�0000000�0000000�00000000513�14753064456�0027752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.35 17 16 11.35 14.55 9.9l-4.22 4.23-2.1-2.1-1.43 1.42M6.5 20q-2.28 0-3.89-1.57Q1 16.85 1 14.58q0-1.95 1.17-3.48 1.18-1.53 3.08-1.95.63-2.3 2.5-3.72Q9.63 4 12 4q2.93 0 4.96 2.04Q19 8.07 19 11q1.73.2 2.86 1.5 1.14 1.28 1.14 3 0 1.88-1.31 3.19T18.5 20Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-check.svg����������������������������0000664�0000000�0000000�00000000640�14753064456�0026311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04S19 9.05 19 11c1.15.13 2.1.63 2.86 1.5.51.57.84 1.21 1 1.92A5.9 5.9 0 0 0 19 13c-3.31 0-6 2.69-6 6m4.75.43-1.59-1.59L15 19l2.75 3 4.75-4.75-1.16-1.41z"/></svg>������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-circle-outline.svg�������������������0000664�0000000�0000000�00000001275�14753064456�0030157�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.5 16H16q1.25 0 2.13-.87T19 13q0-1.25-.87-2.12T16 10q-.2-1.45-1.32-2.47-1.13-1.03-2.53-1.03-1.27 0-2.31.65T8.3 9q-1.42.13-2.36 1.09T5 12.5 6.03 15q1.02 1 2.47 1m3.5 6q-2.07 0-3.9-.79-1.82-.78-3.17-2.13T2.79 15.9Q2 14.08 2 12t.79-3.9 2.14-3.17T8.1 2.79Q9.93 2 12 2t3.9.79 3.18 2.14 2.13 3.17Q22 9.93 22 12t-.79 3.9q-.78 1.83-2.13 3.18t-3.18 2.13Q14.08 22 12 22m0-2q3.33 0 5.66-2.34Q20 15.33 20 12t-2.34-5.66Q15.33 4 12 4T6.34 6.34Q4 8.68 4 12t2.34 5.66T12 20m-3.5-6q-.62 0-1.06-.44Q7 13.13 7 12.5t.44-1.06Q7.88 11 8.5 11H10v-.5q0-.82.59-1.41T12 8.5t1.41.59.59 1.41V12h2q.43 0 .71.29.29.29.29.71t-.29.71q-.28.29-.71.29m-4-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-circle.svg���������������������������0000664�0000000�0000000�00000000667�14753064456�0026506�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.5 16H16q1.25 0 2.13-.87T19 13q0-1.25-.87-2.12T16 10q-.2-1.45-1.32-2.47-1.13-1.03-2.53-1.03-1.27 0-2.31.65T8.3 9q-1.42.13-2.36 1.09T5 12.5 6.03 15q1.02 1 2.47 1m3.5 6q-2.07 0-3.9-.79-1.82-.78-3.17-2.13T2.79 15.9Q2 14.08 2 12t.79-3.9 2.14-3.17T8.1 2.79Q9.93 2 12 2t3.9.79 3.18 2.14 2.13 3.17Q22 9.93 22 12t-.79 3.9q-.78 1.83-2.13 3.18t-3.18 2.13Q14.08 22 12 22"/></svg>�������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-clock-outline.svg��������������������0000664�0000000�0000000�00000001302�14753064456�0030000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 15.5c0-.71-.16-1.36-.45-1.96a7 7 0 0 0-3.69-3.92 6.55 6.55 0 0 0-1.9-3.58C15.6 4.68 13.95 4 12 4c-1.58 0-3 .47-4.25 1.43s-2.08 2.19-2.5 3.72c-1.25.28-2.29.93-3.08 1.95S1 13.28 1 14.58c0 1.51.54 2.8 1.61 3.85C3.69 19.5 5 20 6.5 20h3.76c1.27 1.81 3.36 3 5.74 3 3.87 0 7-3.13 7-7v-.5M6.5 18c-.97 0-1.79-.34-2.47-1C3.34 16.29 3 15.47 3 14.5s.34-1.79 1.03-2.47C4.71 11.34 5.53 11 6.5 11H7c0-1.38.5-2.56 1.46-3.54C9.44 6.5 10.62 6 12 6s2.56.5 3.54 1.46c.46.47.81 1 1.05 1.57C16.4 9 16.2 9 16 9c-3.87 0-7 3.13-7 7 0 .7.11 1.37.29 2zm9.5 3c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5m.5-4.75 2.86 1.69-.75 1.22L15 17v-5h1.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-clock.svg����������������������������0000664�0000000�0000000�00000000715�14753064456�0026332�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 15.5c0-.71-.16-1.36-.45-1.96a7 7 0 0 0-3.69-3.92 6.55 6.55 0 0 0-1.9-3.58C15.6 4.68 13.95 4 12 4c-1.58 0-3 .47-4.25 1.43s-2.08 2.19-2.5 3.72c-1.25.28-2.29.93-3.08 1.95S1 13.28 1 14.58c0 1.51.54 2.8 1.61 3.85C3.69 19.5 5 20 6.5 20h3.76c1.27 1.81 3.36 3 5.74 3 3.87 0 7-3.13 7-7v-.5M16 21c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5m.5-4.75 2.86 1.69-.75 1.22L15 17v-5h1.5z"/></svg>���������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-cog-outline.svg����������������������0000664�0000000�0000000�00000002240�14753064456�0027457�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 19c0 .34.03.67.08 1H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04S19 9.05 19 11c1.15.13 2.1.63 2.86 1.5.06.05.1.13.14.19-.9-.44-1.92-.69-3-.69-.69 0-1.37.11-2 .29V11c0-1.38-.5-2.56-1.46-3.54C14.56 6.5 13.38 6 12 6s-2.56.5-3.54 1.46C7.5 8.44 7 9.62 7 11h-.5c-.97 0-1.79.34-2.47 1.03-.69.68-1.03 1.5-1.03 2.47s.34 1.79 1.03 2.5c.68.66 1.5 1 2.47 1h5.58c-.05.33-.08.66-.08 1m11.83 1.64-1 1.73c-.07.13-.2.13-.33.13l-1.23-.5c-.27.18-.54.34-.84.47l-.19 1.32c-.02.12-.13.21-.24.21h-2c-.14 0-.24-.09-.26-.21l-.19-1.32c-.31-.12-.59-.29-.85-.47l-1.24.5c-.12 0-.25 0-.31-.13l-1-1.73a.26.26 0 0 1 .06-.32l1.06-.82a4.2 4.2 0 0 1 0-1l-1.06-.82a.25.25 0 0 1-.06-.32l1-1.73c.07-.13.2-.13.31-.13l1.24.5c.26-.18.55-.34.85-.47l.19-1.32A.26.26 0 0 1 18 14h2c.11 0 .22.09.23.21l.19 1.32c.31.12.58.29.85.47l1.23-.5c.13 0 .26 0 .32.13l1 1.73c.06.11.03.24-.06.32l-1.06.82c.03.17.04.33.04.5s-.02.33-.04.5l1.07.82c.09.08.12.21.06.32M20.5 19c0-.83-.68-1.5-1.5-1.5s-1.5.67-1.5 1.5.66 1.5 1.5 1.5 1.5-.67 1.5-1.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-cog.svg������������������������������0000664�0000000�0000000�00000001715�14753064456�0026010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 19c0 .34.03.67.08 1H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04S19 9.05 19 11c1.15.13 2.1.63 2.86 1.5.06.05.1.13.14.19-.9-.44-1.92-.69-3-.69-3.87 0-7 3.13-7 7m11.83 1.64-1 1.73c-.07.13-.2.13-.33.13l-1.23-.5c-.27.18-.54.34-.84.47l-.19 1.32c-.02.12-.13.21-.24.21h-2c-.14 0-.24-.09-.26-.21l-.19-1.32c-.31-.12-.59-.29-.85-.47l-1.24.5c-.12 0-.25 0-.31-.13l-1-1.73a.26.26 0 0 1 .06-.32l1.06-.82a4.2 4.2 0 0 1 0-1l-1.06-.82a.25.25 0 0 1-.06-.32l1-1.73c.07-.13.2-.13.31-.13l1.24.5c.26-.18.55-.34.85-.47l.19-1.32A.26.26 0 0 1 18 14h2c.11 0 .22.09.23.21l.19 1.32c.31.12.58.29.85.47l1.23-.5c.13 0 .26 0 .32.13l1 1.73c.06.11.03.24-.06.32l-1.06.82c.03.17.04.33.04.5s-.02.33-.04.5l1.07.82c.09.08.12.21.06.32M20.5 19c0-.83-.68-1.5-1.5-1.5s-1.5.67-1.5 1.5.66 1.5 1.5 1.5 1.5-.67 1.5-1.5"/></svg>���������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-download-outline.svg�����������������0000664�0000000�0000000�00000001043�14753064456�0030516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 20q-2.28 0-3.89-1.57Q1 16.85 1 14.58q0-1.95 1.17-3.48 1.18-1.53 3.08-1.95.43-1.8 2.13-3.42Q9.07 4.1 11 4.1q.83 0 1.41.59.59.59.59 1.41v6.05l1.6-1.55L16 12l-4 4-4-4 1.4-1.4 1.6 1.55V6.1q-1.9.35-2.95 1.84T7 11h-.5q-1.45 0-2.47 1.03Q3 13.05 3 14.5T4.03 17q1.02 1 2.47 1h12q1.05 0 1.77-.73.73-.72.73-1.77t-.73-1.77Q19.55 13 18.5 13H17v-2q0-1.2-.55-2.24Q15.9 7.73 15 7V4.68q1.85.87 2.93 2.58Q19 9 19 11q1.73.2 2.86 1.5 1.14 1.28 1.14 3 0 1.88-1.31 3.19T18.5 20M12 11.05"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-download.svg�������������������������0000664�0000000�0000000�00000000503�14753064456�0027041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 20q-2.28 0-3.89-1.57Q1 16.85 1 14.58q0-1.95 1.17-3.48 1.18-1.53 3.08-1.95.58-2.02 2.14-3.4Q8.95 4.38 11 4.08v8.07L9.4 10.6 8 12l4 4 4-4-1.4-1.4-1.6 1.55V4.08q2.58.35 4.29 2.31T19 11q1.73.2 2.86 1.5 1.14 1.28 1.14 3 0 1.88-1.31 3.19T18.5 20Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-key-outline.svg����������������������0000664�0000000�0000000�00000001332�14753064456�0027500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.41 20H6.5c-1.5 0-2.82-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48a5.25 5.25 0 0 1 3.08-1.95c.42-1.53 1.25-2.77 2.5-3.72C9 4.5 10.42 4 12 4c1.95 0 3.61.68 4.96 2.04C18.32 7.39 19 9.05 19 11c1.15.13 2.11.63 2.86 1.5.64.73 1 1.56 1.1 2.5h-2c-.1-.5-.32-.91-.69-1.27-.48-.49-1.07-.73-1.77-.73H17v-2c0-1.38-.5-2.56-1.46-3.54C14.57 6.5 13.39 6 12 6c-1.38 0-2.56.5-3.54 1.46C7.5 8.44 7 9.62 7 11h-.5c-.97 0-1.79.34-2.47 1.03-.69.68-1.03 1.5-1.03 2.47s.34 1.8 1.03 2.5c.68.67 1.5 1 2.47 1H9c0 .72.15 1.39.41 2M23 17v2h-2v2h-2v-2h-2.2c-.4 1.2-1.5 2-2.8 2-1.7 0-3-1.3-3-3s1.3-3 3-3c1.3 0 2.4.8 2.8 2zm-8 1c0-.5-.4-1-1-1s-1 .5-1 1 .4 1 1 1 1-.5 1-1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-key.svg������������������������������0000664�0000000�0000000�00000001013�14753064456�0026017�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.41 20H6.5c-1.5 0-2.82-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48a5.25 5.25 0 0 1 3.08-1.95c.42-1.53 1.25-2.77 2.5-3.72C9 4.5 10.42 4 12 4c1.95 0 3.61.68 4.96 2.04C18.32 7.39 19 9.05 19 11c1.15.13 2.11.63 2.86 1.5.64.73 1 1.56 1.1 2.5H18a5.01 5.01 0 0 0-4-2c-2.8 0-5 2.2-5 5 0 .72.15 1.39.41 2M23 17v2h-2v2h-2v-2h-2.2c-.4 1.2-1.5 2-2.8 2-1.7 0-3-1.3-3-3s1.3-3 3-3c1.3 0 2.4.8 2.8 2zm-8 1c0-.5-.4-1-1-1s-1 .5-1 1 .4 1 1 1 1-.5 1-1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-lock-open-outline.svg����������������0000664�0000000�0000000�00000001251�14753064456�0030577�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 18H13v2H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04a6.74 6.74 0 0 1 1.78 2.99c-.71.03-1.37.22-1.96.53-.23-.78-.63-1.48-1.24-2.1C14.56 6.5 13.38 6 12 6s-2.56.5-3.54 1.46C7.5 8.44 7 9.62 7 11h-.5c-.97 0-1.79.34-2.47 1.03-.69.68-1.03 1.5-1.03 2.47s.34 1.79 1.03 2.5c.68.66 1.5 1 2.47 1m15.3-2h-4.3v-2.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3v.5h1.3v-.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V16c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-lock-open.svg������������������������0000664�0000000�0000000�00000001027�14753064456�0027123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.2 13.5v1.24c-.7.6-1.2 1.5-1.2 2.46V20H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04a6.74 6.74 0 0 1 1.78 2.99c-2.49.13-4.54 2.12-4.54 4.47m7.6 2.5h-4.3v-2.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3v.5h1.3v-.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V16c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-lock-outline.svg���������������������0000664�0000000�0000000�00000001247�14753064456�0027645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 18H13v2H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04 1.12 1.12 1.77 2.46 1.97 3.96-.7 0-1.37.19-1.98.46a4.8 4.8 0 0 0-1.41-3C14.56 6.5 13.38 6 12 6s-2.56.5-3.54 1.46C7.5 8.44 7 9.62 7 11h-.5c-.97 0-1.79.34-2.47 1.03-.69.68-1.03 1.5-1.03 2.47s.34 1.79 1.03 2.5c.68.66 1.5 1 2.47 1m16.5-.7v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5V16c.6 0 1.2.6 1.2 1.3m-2.5-2.8c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V16h3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-lock.svg�����������������������������0000664�0000000�0000000�00000001031�14753064456�0026157�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.2 14.5v.24c-.7.6-1.2 1.5-1.2 2.46V20H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04 1.12 1.12 1.77 2.46 1.97 3.96-2.57.04-4.73 2.08-4.73 4.5m8.8 2.8v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5V16c.6 0 1.2.6 1.2 1.3m-2.5-2.8c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V16h3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-minus-outline.svg��������������������0000664�0000000�0000000�00000001071�14753064456�0030043�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04S19 9.05 19 11c1.15.13 2.1.63 2.86 1.5.51.57.84 1.21 1 1.92A5.9 5.9 0 0 0 19 13h-2v-2c0-1.38-.5-2.56-1.46-3.54C14.56 6.5 13.38 6 12 6s-2.56.5-3.54 1.46C7.5 8.44 7 9.62 7 11h-.5c-.97 0-1.79.34-2.47 1.03-.69.68-1.03 1.5-1.03 2.47s.34 1.79 1.03 2.5c.68.66 1.5 1 2.47 1h6.59c-.05.33-.09.66-.09 1m2-1v2h8v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-minus.svg����������������������������0000664�0000000�0000000�00000000570�14753064456�0026371�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04S19 9.05 19 11c1.15.13 2.1.63 2.86 1.5.51.57.84 1.21 1 1.92A5.9 5.9 0 0 0 19 13c-3.31 0-6 2.69-6 6m2-1v2h8v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-off-outline.svg����������������������0000664�0000000�0000000�00000001130�14753064456�0027456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.8 22.6 17.15 20H6.5q-2.3 0-3.9-1.6T1 14.5q0-1.92 1.19-3.42 1.19-1.51 3.06-1.93.08-.2.15-.39.1-.19.15-.41L1.4 4.2l1.4-1.4 18.4 18.4M6.5 18h8.65L7.1 9.95q-.05.28-.07.55-.03.23-.03.5h-.5q-1.45 0-2.47 1.03Q3 13.05 3 14.5T4.03 17q1.02 1 2.47 1m15.1.75-1.45-1.4q.43-.35.64-.81T21 15.5q0-1.05-.73-1.77-.72-.73-1.77-.73H17v-2q0-2.07-1.46-3.54Q14.08 6 12 6q-.67 0-1.3.16-.63.17-1.2.52L8.05 5.23q.88-.6 1.86-.92Q10.9 4 12 4q2.93 0 4.96 2.04Q19 8.07 19 11q1.73.2 2.86 1.5 1.14 1.28 1.14 3 0 1-.37 1.81-.38.84-1.03 1.44m-6.77-6.72"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-off.svg������������������������������0000664�0000000�0000000�00000000540�14753064456�0026005�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.8 22.6 17.15 20H6.5q-2.3 0-3.9-1.6T1 14.5q0-1.92 1.19-3.42 1.19-1.51 3.06-1.93.08-.2.15-.39.1-.19.15-.41L1.4 4.2l1.4-1.4 18.4 18.4m.4-2.45L8.05 5.23q.88-.6 1.86-.92Q10.9 4 12 4q2.93 0 4.96 2.04Q19 8.07 19 11q1.73.2 2.86 1.5 1.14 1.28 1.14 3 0 1-.37 1.81-.38.84-1.03 1.44"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-outline.svg��������������������������0000664�0000000�0000000�00000000726�14753064456�0026720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 20q-2.28 0-3.89-1.57Q1 16.85 1 14.58q0-1.95 1.17-3.48 1.18-1.53 3.08-1.95.63-2.3 2.5-3.72Q9.63 4 12 4q2.93 0 4.96 2.04Q19 8.07 19 11q1.73.2 2.86 1.5 1.14 1.28 1.14 3 0 1.88-1.31 3.19T18.5 20m-12-2h12q1.05 0 1.77-.73.73-.72.73-1.77t-.73-1.77Q19.55 13 18.5 13H17v-2q0-2.07-1.46-3.54Q14.08 6 12 6 9.93 6 8.46 7.46 7 8.93 7 11h-.5q-1.45 0-2.47 1.03Q3 13.05 3 14.5T4.03 17q1.02 1 2.47 1m5.5-6"/></svg>������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-percent-outline.svg������������������0000664�0000000�0000000�00000001520�14753064456�0030347�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.86 12.5A4.31 4.31 0 0 0 19 11c0-1.95-.68-3.6-2.04-4.96S13.95 4 12 4c-1.58 0-3 .47-4.25 1.43s-2.08 2.19-2.5 3.72c-1.25.28-2.29.93-3.08 1.95S1 13.28 1 14.58c0 1.51.54 2.8 1.61 3.85C3.69 19.5 5 20 6.5 20h12c1.25 0 2.31-.44 3.19-1.31.87-.88 1.31-1.94 1.31-3.19q0-1.725-1.14-3m-1.59 4.77c-.48.49-1.07.73-1.77.73h-12c-.97 0-1.79-.34-2.47-1C3.34 16.29 3 15.47 3 14.5s.34-1.79 1.03-2.47C4.71 11.34 5.53 11 6.5 11H7c0-1.38.5-2.56 1.46-3.54C9.44 6.5 10.62 6 12 6s2.56.5 3.54 1.46C16.5 8.44 17 9.62 17 11v2h1.5c.7 0 1.29.24 1.77.73S21 14.8 21 15.5s-.24 1.29-.73 1.77M8.03 10.45c0-.78.64-1.42 1.42-1.42s1.42.64 1.42 1.42-.64 1.42-1.42 1.42-1.42-.64-1.42-1.42m7.94 5.1c0 .78-.64 1.42-1.42 1.42s-1.42-.64-1.42-1.42.64-1.42 1.42-1.42 1.42.64 1.42 1.42M14.8 9l1.2 1.2L9.2 17 8 15.8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-percent.svg��������������������������0000664�0000000�0000000�00000001065�14753064456�0026676�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.86 12.5A4.31 4.31 0 0 0 19 11c0-1.95-.68-3.6-2.04-4.96S13.95 4 12 4c-1.58 0-3 .47-4.25 1.43s-2.08 2.19-2.5 3.72c-1.25.28-2.29.93-3.08 1.95S1 13.28 1 14.58c0 1.51.54 2.8 1.61 3.85C3.69 19.5 5 20 6.5 20h12c1.25 0 2.31-.44 3.19-1.31.87-.88 1.31-1.94 1.31-3.19q0-1.725-1.14-3M9.45 9.03c.78 0 1.42.64 1.42 1.42s-.64 1.42-1.42 1.42-1.42-.64-1.42-1.42.64-1.42 1.42-1.42m5.1 7.94c-.78 0-1.42-.64-1.42-1.42s.64-1.42 1.42-1.42 1.42.64 1.42 1.42-.64 1.42-1.42 1.42M9.2 17 8 15.8 14.8 9l1.2 1.2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-plus-outline.svg���������������������0000664�0000000�0000000�00000001115�14753064456�0027672�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04S19 9.05 19 11c1.15.13 2.1.63 2.86 1.5.51.57.84 1.21 1 1.92A5.9 5.9 0 0 0 19 13h-2v-2c0-1.38-.5-2.56-1.46-3.54C14.56 6.5 13.38 6 12 6s-2.56.5-3.54 1.46C7.5 8.44 7 9.62 7 11h-.5c-.97 0-1.79.34-2.47 1.03-.69.68-1.03 1.5-1.03 2.47s.34 1.79 1.03 2.5c.68.66 1.5 1 2.47 1h6.59c-.05.33-.09.66-.09 1m7-1v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-plus.svg�����������������������������0000664�0000000�0000000�00000000614�14753064456�0026220�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04S19 9.05 19 11c1.15.13 2.1.63 2.86 1.5.51.57.84 1.21 1 1.92A5.9 5.9 0 0 0 19 13c-3.31 0-6 2.69-6 6m7-1v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-print-outline.svg��������������������0000664�0000000�0000000�00000001303�14753064456�0030042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 15H9v-1h6zm0 1H9v1h6zm0 2H9v1h6zm8-4.5c0 1.25-.44 2.31-1.31 3.19-.88.87-1.94 1.31-3.19 1.31H18v4H6v-4.05c-1.3-.1-2.43-.59-3.39-1.52C1.54 15.38 1 14.09 1 12.58q0-1.95 1.17-3.48C3.34 7.57 4 7.43 5.25 7.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 2 12 2c1.95 0 3.6.68 4.96 2.04S19 7.05 19 9c1.15.13 2.1.63 2.86 1.5q1.14 1.275 1.14 3M6 15.95V11h11V9c0-1.38-.5-2.56-1.46-3.54C14.56 4.5 13.38 4 12 4s-2.56.5-3.54 1.46C7.5 6.44 7 7.62 7 9h-.5c-.97 0-1.79.34-2.47 1.03-.69.68-1.03 1.5-1.03 2.47s.34 1.79 1.03 2.5c.56.54 1.22.85 1.97.95M16 13H8v7h8zm5 .5c0-.7-.24-1.29-.73-1.77S19.2 11 18.5 11H18v5h.5q1.05 0 1.77-.72c.72-.72.73-1.08.73-1.78"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-print.svg����������������������������0000664�0000000�0000000�00000000636�14753064456�0026375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.86 10.5A4.31 4.31 0 0 0 19 9c0-1.95-.68-3.6-2.04-4.96S13.95 2 12 2c-1.58 0-3 .5-4.25 1.43s-2.08 2.19-2.5 3.72C4 7.43 2.96 8.08 2.17 9.1S1 11.28 1 12.58c0 1.51.54 2.8 1.61 3.85.96.93 2.09 1.42 3.39 1.52V22h12v-4h.5c1.25 0 2.31-.44 3.19-1.31.87-.88 1.31-1.94 1.31-3.19q0-1.725-1.14-3M16 20H8v-7h8zm-1-5H9v-1h6zm0 2H9v-1h6zm0 2H9v-1h6z"/></svg>��������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-question-outline.svg�����������������0000664�0000000�0000000�00000001766�14753064456�0030572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.86 12.5A4.31 4.31 0 0 0 19 11c0-1.95-.68-3.6-2.04-4.96S13.95 4 12 4c-1.58 0-3 .47-4.25 1.43s-2.08 2.19-2.5 3.72c-1.25.28-2.29.93-3.08 1.95S1 13.28 1 14.58c0 1.51.54 2.8 1.61 3.85C3.69 19.5 5 20 6.5 20h12c1.25 0 2.31-.44 3.19-1.31.87-.88 1.31-1.94 1.31-3.19q0-1.725-1.14-3m-1.59 4.77c-.48.49-1.07.73-1.77.73h-12c-.97 0-1.79-.34-2.47-1C3.34 16.29 3 15.47 3 14.5s.34-1.79 1.03-2.47C4.71 11.34 5.53 11 6.5 11H7c0-1.38.5-2.56 1.46-3.54C9.44 6.5 10.62 6 12 6s2.56.5 3.54 1.46C16.5 8.44 17 9.62 17 11v2h1.5c.7 0 1.29.24 1.77.73S21 14.8 21 15.5s-.24 1.29-.73 1.77M11 15h2v2h-2zm3.43-6.32c.54.45.81 1.07.81 1.82 0 .5-.15.91-.44 1.32-.3.39-.67.68-1.13.93-.26.16-.43.32-.52.51A1.7 1.7 0 0 0 13 14h-2c0-.55.11-.92.3-1.18.2-.26.55-.57 1.07-.91.26-.16.47-.35.63-.59.15-.23.23-.51.23-.82 0-.32-.09-.56-.27-.74-.18-.2-.46-.29-.76-.29-.27 0-.49.08-.7.23-.15.15-.25.38-.25.69H9.28c-.05-.75.22-1.39.78-1.8C10.6 8.2 11.31 8 12.2 8c.94 0 1.69.23 2.23.68"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-question.svg�������������������������0000664�0000000�0000000�00000001325�14753064456�0027104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.86 12.5A4.31 4.31 0 0 0 19 11c0-1.95-.68-3.6-2.04-4.96S13.95 4 12 4c-1.58 0-3 .47-4.25 1.43s-2.08 2.19-2.5 3.72c-1.25.28-2.29.93-3.08 1.95S1 13.28 1 14.58c0 1.51.54 2.8 1.61 3.85C3.69 19.5 5 20 6.5 20h12c1.25 0 2.31-.44 3.19-1.31.87-.88 1.31-1.94 1.31-3.19q0-1.725-1.14-3M13 17h-2v-2h2zm1.8-5.18c-.3.39-.67.68-1.13.93-.26.16-.43.32-.52.51A1.7 1.7 0 0 0 13 14h-2c0-.55.11-.92.3-1.18.2-.26.55-.57 1.07-.91.26-.16.47-.35.63-.59.15-.23.23-.51.23-.82 0-.32-.09-.56-.27-.74-.18-.2-.46-.29-.76-.29-.27 0-.49.08-.7.23-.15.15-.25.38-.25.69H9.28c-.05-.75.22-1.39.78-1.8C10.6 8.2 11.31 8 12.2 8c.94 0 1.69.23 2.23.68s.81 1.07.81 1.82c0 .5-.15.91-.44 1.32"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-refresh-outline.svg������������������0000664�0000000�0000000�00000001300�14753064456�0030341�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18.5c0 .5.07 1 .18 1.5H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04S19 9.05 19 11c1.15.13 2.1.63 2.86 1.5.24.26.43.55.6.86A6.37 6.37 0 0 0 18.5 12c-.5 0-1 .07-1.5.18V11c0-1.38-.5-2.56-1.46-3.54C14.56 6.5 13.38 6 12 6s-2.56.5-3.54 1.46C7.5 8.44 7 9.62 7 11h-.5c-.97 0-1.79.34-2.47 1.03-.69.68-1.03 1.5-1.03 2.47s.34 1.79 1.03 2.5c.68.66 1.5 1 2.47 1h5.53c-.03.17-.03.33-.03.5m6-4c-2.21 0-4 1.79-4 4s1.79 4 4 4c1.68 0 3.12-1.03 3.71-2.5H20a2.5 2.5 0 1 1-.23-3.27L18 18.5h4v-4l-1.17 1.17A4 4 0 0 0 18 14.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-refresh-variant-outline.svg����������0000664�0000000�0000000�00000001403�14753064456�0032007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.86 12.5A4.31 4.31 0 0 0 19 11c0-1.95-.68-3.6-2.04-4.96S13.95 4 12 4c-1.58 0-3 .47-4.25 1.43s-2.08 2.19-2.5 3.72c-1.25.28-2.29.93-3.08 1.95S1 13.28 1 14.58c0 1.51.54 2.8 1.61 3.85C3.69 19.5 5 20 6.5 20h12c1.25 0 2.31-.44 3.19-1.31.87-.88 1.31-1.94 1.31-3.19q0-1.725-1.14-3m-1.59 4.77c-.48.49-1.07.73-1.77.73h-12c-.97 0-1.79-.34-2.47-1C3.34 16.29 3 15.47 3 14.5s.34-1.79 1.03-2.47C4.71 11.34 5.53 11 6.5 11H7c0-1.38.5-2.56 1.46-3.54C9.44 6.5 10.62 6 12 6s2.56.5 3.54 1.46C16.5 8.44 17 9.62 17 11v2h1.5c.7 0 1.29.24 1.77.73S21 14.8 21 15.5s-.24 1.29-.73 1.77m-5.44-7.1L16 9v4h-4l1.77-1.77A2.5 2.5 0 1 0 14 14.5h1.71A3.99 3.99 0 0 1 12 17c-2.21 0-4-1.79-4-4s1.79-4 4-4c1.11 0 2.11.45 2.83 1.17"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-refresh-variant.svg������������������0000664�0000000�0000000�00000000742�14753064456�0030337�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.86 12.5A4.31 4.31 0 0 0 19 11c0-1.95-.68-3.6-2.04-4.96S13.95 4 12 4c-1.58 0-3 .47-4.25 1.43s-2.08 2.19-2.5 3.72c-1.25.28-2.29.93-3.08 1.95S1 13.28 1 14.58c0 1.51.54 2.8 1.61 3.85C3.69 19.5 5 20 6.5 20h12c1.25 0 2.31-.44 3.19-1.31.87-.88 1.31-1.94 1.31-3.19q0-1.725-1.14-3M16 13h-4l1.77-1.77A2.5 2.5 0 1 0 14 14.5h1.71A3.99 3.99 0 0 1 12 17c-2.21 0-4-1.79-4-4s1.79-4 4-4c1.11 0 2.11.45 2.83 1.17L16 9z"/></svg>������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-refresh.svg��������������������������0000664�0000000�0000000�00000000762�14753064456�0026677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18.5c0 .5.07 1 .18 1.5H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04S19 9.05 19 11c1.15.13 2.1.63 2.86 1.5.24.26.43.55.6.86A6.37 6.37 0 0 0 18.5 12a6.5 6.5 0 0 0-6.5 6.5m6-4c-2.21 0-4 1.79-4 4s1.79 4 4 4c1.68 0 3.12-1.03 3.71-2.5H20a2.5 2.5 0 1 1-.23-3.27L18 18.5h4v-4l-1.17 1.17A4 4 0 0 0 18 14.5"/></svg>��������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-remove-outline.svg�������������������0000664�0000000�0000000�00000001244�14753064456�0030207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04S19 9.05 19 11c1.15.13 2.1.63 2.86 1.5.51.57.84 1.21 1 1.92A5.9 5.9 0 0 0 19 13h-2v-2c0-1.38-.5-2.56-1.46-3.54C14.56 6.5 13.38 6 12 6s-2.56.5-3.54 1.46C7.5 8.44 7 9.62 7 11h-.5c-.97 0-1.79.34-2.47 1.03-.69.68-1.03 1.5-1.03 2.47s.34 1.79 1.03 2.5c.68.66 1.5 1 2.47 1h6.59c-.05.33-.09.66-.09 1m8.12-3.54L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19l2.13-2.12z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-remove.svg���������������������������0000664�0000000�0000000�00000000743�14753064456�0026535�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04S19 9.05 19 11c1.15.13 2.1.63 2.86 1.5.51.57.84 1.21 1 1.92A5.9 5.9 0 0 0 19 13c-3.31 0-6 2.69-6 6m8.12-3.54L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19l2.13-2.12z"/></svg>�����������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-search-outline.svg�������������������0000664�0000000�0000000�00000001443�14753064456�0030160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.86 12.5A4.31 4.31 0 0 0 19 11c0-1.95-.68-3.6-2.04-4.96S13.95 4 12 4c-1.58 0-3 .47-4.25 1.43s-2.08 2.19-2.5 3.72c-1.25.28-2.29.93-3.08 1.95S1 13.28 1 14.58c0 1.51.54 2.8 1.61 3.85C3.69 19.5 5 20 6.5 20h12c1.25 0 2.31-.44 3.19-1.31.87-.88 1.31-1.94 1.31-3.19q0-1.725-1.14-3m-1.59 4.77c-.48.49-1.07.73-1.77.73h-12c-.97 0-1.79-.34-2.47-1C3.34 16.29 3 15.47 3 14.5s.34-1.79 1.03-2.47C4.71 11.34 5.53 11 6.5 11H7c0-1.38.5-2.56 1.46-3.54C9.44 6.5 10.62 6 12 6s2.56.5 3.54 1.46C16.5 8.44 17 9.62 17 11v2h1.5c.7 0 1.29.24 1.77.73S21 14.8 21 15.5s-.24 1.29-.73 1.77M16 12c0-2.21-1.79-4-4-4s-4 1.79-4 4 1.79 4 4 4c.74 0 1.43-.21 2-.57L16.57 18 18 16.57 15.43 14c.36-.57.57-1.26.57-2m-4 2c-1.1 0-2-.89-2-2s.9-2 2-2 2 .9 2 2-.89 2-2 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-search.svg���������������������������0000664�0000000�0000000�00000001004�14753064456�0026474�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.86 12.5A4.31 4.31 0 0 0 19 11c0-1.95-.68-3.6-2.04-4.96S13.95 4 12 4c-1.58 0-3 .47-4.25 1.43s-2.08 2.19-2.5 3.72c-1.25.28-2.29.93-3.08 1.95S1 13.28 1 14.58c0 1.51.54 2.8 1.61 3.85C3.69 19.5 5 20 6.5 20h12c1.25 0 2.31-.44 3.19-1.31.87-.88 1.31-1.94 1.31-3.19q0-1.725-1.14-3M16.57 18 14 15.43c-.57.36-1.26.57-2 .57-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4c0 .74-.21 1.43-.57 2L18 16.57zM14 12c0 1.11-.89 2-2 2s-2-.89-2-2 .9-2 2-2 2 .9 2 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-sync-outline.svg���������������������0000664�0000000�0000000�00000001352�14753064456�0027666�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.03 18c.05.7.21 1.38.47 2h-7c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04S19 9.05 19 11h.1c-.74.07-1.45.23-2.1.5V11c0-1.38-.5-2.56-1.46-3.54C14.56 6.5 13.38 6 12 6s-2.56.5-3.54 1.46C7.5 8.44 7 9.62 7 11h-.5c-.97 0-1.79.34-2.47 1.03-.69.68-1.03 1.5-1.03 2.47s.34 1.79 1.03 2.5c.68.66 1.5 1 2.47 1zM19 13.5V12l-2.25 2.25L19 16.5V15a2.5 2.5 0 0 1 2.5 2.5c0 .4-.09.78-.26 1.12l1.09 1.09c.42-.63.67-1.39.67-2.21 0-2.21-1.79-4-4-4m0 6.5a2.5 2.5 0 0 1-2.5-2.5c0-.4.09-.78.26-1.12l-1.09-1.09c-.42.63-.67 1.39-.67 2.21 0 2.21 1.79 4 4 4V23l2.25-2.25L19 18.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-sync.svg�����������������������������0000664�0000000�0000000�00000001061�14753064456�0026206�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 17.5c0 .89.18 1.73.5 2.5h-7c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C3.34 9.57 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72S10.42 4 12 4c1.95 0 3.6.68 4.96 2.04S19 9.05 19 11h.1c-3.4.23-6.1 3.05-6.1 6.5m6-4V12l-2.25 2.25L19 16.5V15a2.5 2.5 0 0 1 2.5 2.5c0 .4-.09.78-.26 1.12l1.09 1.09c.42-.63.67-1.39.67-2.21 0-2.21-1.79-4-4-4m0 6.5a2.5 2.5 0 0 1-2.5-2.5c0-.4.09-.78.26-1.12l-1.09-1.09c-.42.63-.67 1.39-.67 2.21 0 2.21 1.79 4 4 4V23l2.25-2.25L19 18.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-tags.svg�����������������������������0000664�0000000�0000000�00000000723�14753064456�0026174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.86 12.5A4.31 4.31 0 0 0 19 11c0-1.95-.68-3.6-2.04-4.96S13.95 4 12 4c-1.58 0-3 .47-4.25 1.43s-2.08 2.19-2.5 3.72c-1.25.28-2.29.93-3.08 1.95S1 13.28 1 14.58c0 1.51.54 2.8 1.61 3.85C3.69 19.5 5 20 6.5 20h12c1.25 0 2.31-.44 3.19-1.31.87-.88 1.31-1.94 1.31-3.19q0-1.725-1.14-3M10.5 16.18 9.09 17.6 4.5 13l4.59-4.6 1.41 1.42L7.32 13zm4.41 1.42-1.41-1.42L16.68 13 13.5 9.82l1.41-1.42L19.5 13z"/></svg>���������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-upload-outline.svg�������������������0000664�0000000�0000000�00000001045�14753064456�0030175�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 20q-2.28 0-3.89-1.57Q1 16.85 1 14.58q0-1.95 1.17-3.48 1.18-1.53 3.08-1.95.63-2.3 2.5-3.72Q9.63 4 12 4q2.93 0 4.96 2.04Q19 8.07 19 11q1.73.2 2.86 1.5 1.14 1.28 1.14 3 0 1.88-1.31 3.19T18.5 20H13q-.82 0-1.41-.59Q11 18.83 11 18v-5.15L9.4 14.4 8 13l4-4 4 4-1.4 1.4-1.6-1.55V18h5.5q1.05 0 1.77-.73.73-.72.73-1.77t-.73-1.77Q19.55 13 18.5 13H17v-2q0-2.07-1.46-3.54Q14.08 6 12 6 9.93 6 8.46 7.46 7 8.93 7 11h-.5q-1.45 0-2.47 1.03Q3 13.05 3 14.5T4.03 17q1.02 1 2.47 1H9v2m3-7"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud-upload.svg���������������������������0000664�0000000�0000000�00000000507�14753064456�0026522�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 20H6.5q-2.28 0-3.89-1.57Q1 16.85 1 14.58q0-1.95 1.17-3.48 1.18-1.53 3.08-1.95.63-2.3 2.5-3.72Q9.63 4 12 4q2.93 0 4.96 2.04Q19 8.07 19 11q1.73.2 2.86 1.5 1.14 1.28 1.14 3 0 1.88-1.31 3.19T18.5 20H13v-7.15l1.6 1.55L16 13l-4-4-4 4 1.4 1.4 1.6-1.55Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cloud.svg����������������������������������0000664�0000000�0000000�00000000422�14753064456�0025234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 20q-2.28 0-3.89-1.57Q1 16.85 1 14.58q0-1.95 1.17-3.48 1.18-1.53 3.08-1.95.63-2.3 2.5-3.72Q9.63 4 12 4q2.93 0 4.96 2.04Q19 8.07 19 11q1.73.2 2.86 1.5 1.14 1.28 1.14 3 0 1.88-1.31 3.19T18.5 20Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clouds.svg���������������������������������0000664�0000000�0000000�00000000731�14753064456�0025422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.19 12.07c.5-.53.81-1.25.81-2.07 0-1.7-1.3-3.16-3-3.16h-2.8C14.2 4.17 12.03 2 9.36 2c-2.05 0-3.8 1.28-4.51 3.08A3.967 3.967 0 0 0 1 9.04 3.97 3.97 0 0 0 4.96 13H8.1c-.06.33-.1.66-.1 1h-.5C5.57 14 4 15.57 4 17.5S5.57 21 7.5 21h11c2.5 0 4.5-2 4.5-4.5 0-2.24-1.66-4.09-3.81-4.43M18.5 19h-11c-.83 0-1.5-.67-1.5-1.5S6.67 16 7.5 16H10v-2c0-1.93 1.57-3.5 3.5-3.5S17 12.07 17 14h1.5a2.5 2.5 0 0 1 0 5"/></svg>���������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clover-outline.svg�������������������������0000664�0000000�0000000�00000003725�14753064456�0027106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.61 12.62.04-.04.51-.55.02-.03-.02-.03c-.16-.19-.34-.37-.5-.55l-.05-.04C8.42 8.97 7.03 7.53 5.58 7.12 5.29 7.04 5 7 4.69 7 3.19 7 2 8.25 2 9.75c0 .63.19 1.25.55 1.75.13.18.28.35.45.5-.17.15-.32.32-.45.5-.36.5-.55 1.14-.55 1.81C2 15.81 3.25 17 4.75 17c.28 0 .56-.04.83-.11 1.42-.39 2.82-1.84 5.03-4.27M8.47 12c-.9.97-1.59 1.69-2.21 2.21-.83.7-1.26.79-1.51.79-.45 0-.75-.35-.75-.69 0-.38.14-.65.33-.81L6 12l-1.67-1.5A1 1 0 0 1 4 9.75c0-.45.35-.75.69-.75.31 0 .74.1 1.57.8.62.51 1.31 1.23 2.21 2.2m-1.35 6.43c-.08.29-.12.57-.12.88C7 20.81 8.25 22 9.75 22c.63 0 1.25-.19 1.75-.55.18-.13.35-.28.5-.45.15.17.32.32.5.45.5.36 1.14.55 1.81.55 1.5 0 2.69-1.25 2.69-2.75 0-.28-.04-.56-.11-.83-.39-1.42-1.84-2.82-4.27-5.03l-.04-.04-.55-.5-.03-.03-.03.03-.55.5-.04.03c-2.41 2.2-3.85 3.59-4.26 5.05m4.88-2.9c.97.9 1.69 1.59 2.21 2.21.7.83.79 1.26.79 1.51 0 .45-.35.75-.69.75-.38 0-.65-.14-.81-.33L12 18l-1.5 1.67c-.17.2-.45.33-.75.33-.45 0-.75-.35-.75-.69 0-.31.1-.74.8-1.57.51-.62 1.23-1.31 2.2-2.21m1.39-2.91c2.2 2.41 3.58 3.85 5.04 4.26.29.08.57.12.88.12 1.5 0 2.69-1.25 2.69-2.75 0-.63-.19-1.25-.55-1.75-.13-.18-.28-.35-.45-.5.17-.15.32-.32.45-.5.36-.5.55-1.13.55-1.81C22 8.19 20.75 7 19.25 7c-.28 0-.56.04-.83.11-1.42.39-2.82 1.84-5.03 4.27l-.03.04-.53.58.53.58zm2.15-.62c.89-.97 1.59-1.69 2.2-2.21.84-.7 1.26-.79 1.51-.79.45 0 .75.35.75.69 0 .38-.14.65-.33.81L18 12l1.67 1.5c.2.18.33.45.33.75 0 .45-.35.75-.69.75-.31 0-.74-.1-1.57-.8-.61-.51-1.31-1.23-2.2-2.2m-2.92-1.38c2.41-2.2 3.85-3.59 4.26-5.04.08-.29.12-.58.12-.89C17 3.19 15.75 2 14.25 2c-.63 0-1.25.19-1.75.55-.18.13-.35.28-.5.45-.15-.17-.32-.32-.5-.45C11 2.19 10.37 2 9.69 2 8.19 2 7 3.25 7 4.75c0 .28.04.56.11.83C7.5 7 8.95 8.4 11.38 10.62l.04.03.55.5.03.03.03-.02.56-.51.03-.04M12 8.47c-.97-.9-1.69-1.59-2.21-2.21C9.09 5.43 9 5 9 4.75c0-.45.35-.75.69-.75.38 0 .65.14.81.33L12 6l1.5-1.67c.18-.2.45-.33.75-.33.45 0 .75.35.75.69 0 .31-.1.74-.8 1.57-.51.62-1.23 1.31-2.2 2.21"/></svg>�������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/clover.svg���������������������������������0000664�0000000�0000000�00000001212�14753064456�0025416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 11.18c3.3-3 5-4.54 5-6.49C17 3.19 15.75 2 14.25 2c-.86 0-1.68.36-2.25 1-.57-.64-1.39-1-2.31-1C8.19 2 7 3.25 7 4.75c0 1.89 1.7 3.43 5 6.43m-.82.82c-3-3.3-4.54-5-6.49-5C3.19 7 2 8.25 2 9.75c0 .86.36 1.68 1 2.25-.64.57-1 1.39-1 2.31C2 15.81 3.25 17 4.75 17c1.89 0 3.43-1.7 6.43-5m1.65 0c2.99 3.3 4.53 5 6.48 5 1.5 0 2.69-1.25 2.69-2.75 0-.86-.36-1.68-1-2.25.64-.57 1-1.39 1-2.31C22 8.19 20.75 7 19.25 7c-1.89 0-3.43 1.7-6.42 5m-.83.82c-3.3 3-5 4.54-5 6.49C7 20.81 8.25 22 9.75 22c.86 0 1.68-.36 2.25-1 .57.64 1.39 1 2.31 1 1.5 0 2.69-1.25 2.69-2.75 0-1.89-1.7-3.43-5-6.43"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/coach-lamp-variant.svg���������������������0000664�0000000�0000000�00000000320�14753064456�0027571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.5 2 12 4l-2 2.31L5 9h2l2.5 9 2.5 2 .5 2h1l.5-2 2.5-2L19 9h2l-5-2.69L14 4l-.5-2M9 9h8l-2.22 8h-3.56M3 14v8h8.5l-.5-2H8l-3-3v-3Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/coach-lamp.svg�����������������������������0000664�0000000�0000000�00000000255�14753064456�0026136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16 5-1-3h-2l-1 3-6 3h2l.6 3H4V7H2v10h2v-4h5l1 5 2 2 1 2h2l1-2 2-2 2-10h2m-5.84 9h-4.32L10 8h8Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/coat-rack.svg������������������������������0000664�0000000�0000000�00000000452�14753064456�0025775�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.33 7.78a1 1 0 0 0-1.67 1.11A2 2 0 1 1 13 10V7.82a3 3 0 1 0-2 0V10a2 2 0 1 1-3.66-1.11 1 1 0 1 0-1.67-1.11A4 4 0 0 0 11 13.46V20a2 2 0 0 0-2 2h6a2 2 0 0 0-2-2v-6.54a4 4 0 0 0 5.33-5.68M12 4a1 1 0 1 1-1 1 1 1 0 0 1 1-1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/code-array.svg�����������������������������0000664�0000000�0000000�00000000277�14753064456�0026164�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2zm3 1v12h4v-2H8V8h2V6zm10 10h-2v2h4V6h-4v2h2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/code-block-braces.svg����������������������0000664�0000000�0000000�00000000553�14753064456�0027372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3c-1.1 0-2 .9-2 2s-.9 2-2 2v2c1.1 0 2 .9 2 2s.9 2 2 2h2v-2H5v-1c0-1.1-.9-2-2-2 1.1 0 2-.9 2-2V5h2V3m4 0c1.1 0 2 .9 2 2s.9 2 2 2v2c-1.1 0-2 .9-2 2s-.9 2-2 2H9v-2h2v-1c0-1.1.9-2 2-2-1.1 0-2-.9-2-2V5H9V3zm11 3v12c0 1.11-.89 2-2 2H4a2 2 0 0 1-2-2v-3h2v3h16V6h-2.97V4H20c1.11 0 2 .89 2 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/code-block-brackets.svg��������������������0000664�0000000�0000000�00000000312�14753064456�0027722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3v10h4v-2H4V5h2V3zm10 8h-2v2h4V3h-4v2h2zm10-5v12c0 1.11-.89 2-2 2H4a2 2 0 0 1-2-2v-3h2v3h16V6h-2.97V4H20c1.11 0 2 .89 2 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/code-block-parentheses.svg�����������������0000664�0000000�0000000�00000000504�14753064456�0030450�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.6 3C13.1 4.3 14 6.1 14 8s-.9 3.7-2.4 5l-1.6-.6c1.3-1 2-2.7 2-4.4s-.7-3.4-2-4.4zM4.4 3l1.6.6C4.7 4.6 4 6.3 4 8s.7 3.4 2 4.4l-1.6.6C2.9 11.7 2 9.9 2 8s.9-3.7 2.4-5M22 6v12c0 1.11-.89 2-2 2H4a2 2 0 0 1-2-2v-3h2v3h16V6h-3.97V4H20c1.11 0 2 .89 2 2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/code-block-tags.svg������������������������0000664�0000000�0000000�00000000376�14753064456�0027074�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.59 3.41 7 4.82 3.82 8 7 11.18 5.59 12.6 1 8zm5.82 0L16 8l-4.59 4.6L10 11.18 13.18 8 10 4.82zM22 6v12c0 1.11-.89 2-2 2H4a2 2 0 0 1-2-2v-4h2v4h16V6h-2.97V4H20c1.11 0 2 .89 2 2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/code-braces-box.svg������������������������0000664�0000000�0000000�00000000605�14753064456�0027066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m-8 5H9v2c0 1.1-.9 2-2 2 1.1 0 2 .9 2 2v2h2v2H9c-1.1 0-2-.9-2-2v-1c0-1.1-.9-2-2-2v-2c1.1 0 2-.9 2-2V8c0-1.1.9-2 2-2h2zm8 5c-1.1 0-2 .9-2 2v1c0 1.1-.9 2-2 2h-2v-2h2v-2c0-1.1.9-2 2-2-1.1 0-2-.9-2-2V8h-2V6h2c1.1 0 2 .9 2 2v1c0 1.1.9 2 2 2z"/></svg>���������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/code-braces.svg����������������������������0000664�0000000�0000000�00000000466�14753064456�0026305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 3a2 2 0 0 0-2 2v4a2 2 0 0 1-2 2H3v2h1a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2h2v-2H8v-5a2 2 0 0 0-2-2 2 2 0 0 0 2-2V5h2V3m6 0a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2h1v2h-1a2 2 0 0 0-2 2v4a2 2 0 0 1-2 2h-2v-2h2v-5a2 2 0 0 1 2-2 2 2 0 0 1-2-2V5h-2V3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/code-brackets.svg��������������������������0000664�0000000�0000000�00000000170�14753064456�0026634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 4v2h3v12h-3v2h5V4M4 4v16h5v-2H6V6h3V4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/code-equal.svg�����������������������������0000664�0000000�0000000�00000000276�14753064456�0026154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 13h5v2H6m7-2h5v2h-5m0-6h5v2h-5M6 9h5v2H6M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/code-greater-than-or-equal.svg�������������0000664�0000000�0000000�00000000342�14753064456�0031143�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 13h5v2h-5m0-6h5v2h-5M6.91 7.41 11.5 12l-4.59 4.6-1.41-1.42L8.68 12 5.5 8.82M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/code-greater-than.svg����������������������0000664�0000000�0000000�00000000306�14753064456�0027420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.41 7.41 15 12l-4.59 4.6L9 15.18 12.18 12 9 8.82M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/code-json.svg������������������������������0000664�0000000�0000000�00000000765�14753064456�0026021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h2v2H5v5a2 2 0 0 1-2 2 2 2 0 0 1 2 2v5h2v2H5c-1.07-.27-2-.9-2-2v-4a2 2 0 0 0-2-2H0v-2h1a2 2 0 0 0 2-2V5a2 2 0 0 1 2-2m14 0a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2h1v2h-1a2 2 0 0 0-2 2v4a2 2 0 0 1-2 2h-2v-2h2v-5a2 2 0 0 1 2-2 2 2 0 0 1-2-2V5h-2V3zm-7 12a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m-4 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m8 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1"/></svg>�����������mkdocs-material-9.6.4/material/templates/.icons/material/code-less-than-or-equal.svg����������������0000664�0000000�0000000�00000000343�14753064456�0030461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 13h5v2h-5m0-6h5v2h-5m-2.91-3.59 1.41 1.41L8.32 12l3.18 3.18-1.41 1.42L5.5 12M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/code-less-than.svg�������������������������0000664�0000000�0000000�00000000306�14753064456�0026735�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.59 7.41 9 12l4.59 4.6L15 15.18 11.82 12 15 8.82M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/code-not-equal-variant.svg�����������������0000664�0000000�0000000�00000000355�14753064456�0030412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 6.5v2.83L8.33 12 11 14.67v2.83L5.5 12M13 6.43 18.57 12 13 17.57v-2.83L15.74 12 13 9.26M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/code-not-equal.svg�������������������������0000664�0000000�0000000�00000000276�14753064456�0026752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 15h2v2H6m5-4h7v2h-7m0-6h7v2h-7M6 7h2v6H6M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/code-parentheses-box.svg�������������������0000664�0000000�0000000�00000000511�14753064456�0030144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m-9 14.3-1.6.7C6.9 16.5 6 14.3 6 12s.9-4.5 2.4-6l1.6.7C8.7 7.9 8 9.9 8 12s.7 4.1 2 5.3m5.6.7-1.6-.7c1.3-1.3 2-3.2 2-5.3s-.7-4.1-2-5.3l1.6-.7c1.5 1.5 2.4 3.7 2.4 6s-.9 4.5-2.4 6"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/code-parentheses.svg�����������������������0000664�0000000�0000000�00000000435�14753064456�0027363�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.62 3C19.13 5.27 20 8.55 20 12c0 3.44-.87 6.72-2.38 9L16 19.96c1.26-1.89 2-4.83 2-7.96s-.74-6.08-2-7.97zM6.38 3 8 4.04C6.74 5.92 6 8.87 6 12s.74 6.08 2 7.96L6.38 21C4.87 18.73 4 15.45 4 12s.87-6.73 2.38-9"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/code-string.svg����������������������������0000664�0000000�0000000�00000000656�14753064456�0026355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2zm9.5 6h-1A1.5 1.5 0 0 1 10 9.5 1.5 1.5 0 0 1 11.5 8h1A1.5 1.5 0 0 1 14 9.5h2A3.5 3.5 0 0 0 12.5 6h-1A3.5 3.5 0 0 0 8 9.5a3.5 3.5 0 0 0 3.5 3.5h1a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5h-1a1.5 1.5 0 0 1-1.5-1.5H8a3.5 3.5 0 0 0 3.5 3.5h1a3.5 3.5 0 0 0 3.5-3.5 3.5 3.5 0 0 0-3.5-3.5"/></svg>����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/code-tags-check.svg������������������������0000664�0000000�0000000�00000000344�14753064456�0027052�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.59 3.41 2 8l4.59 4.6L8 11.18 4.82 8 8 4.82zm5.82 0L11 4.82 14.18 8 11 11.18l1.41 1.42L17 8zm9.18 8.18-8.09 8.09L9.83 16l-1.41 1.41 5.08 5.09L23 13z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/code-tags.svg������������������������������0000664�0000000�0000000�00000000232�14753064456�0025773�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.6 16.6 4.6-4.6-4.6-4.6L16 6l6 6-6 6zm-5.2 0L4.8 12l4.6-4.6L8 6l-6 6 6 6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/codepen.svg��������������������������������0000664�0000000�0000000�00000001556�14753064456�0025554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.21 12-1.33.89v-1.78zm3.26-2.18V7.34l-4.16 2.78 1.85 1.24zm5.23.3-4.17-2.78v2.48l2.31 1.54zm-9.39 3.76 4.16 2.78v-2.48l-2.31-1.54zm5.22.3v2.48l4.17-2.78-1.86-1.24zM12 10.74 10.12 12 12 13.26 13.88 12zM22 12c0 5.5-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2s10 4.5 10 10m-3.82-1.88v-.07l-.01-.05-.01-.05c-.01-.01-.01-.02-.02-.04l-.01-.02-.02-.04-.01-.02-.02-.03-.02-.03-.03-.03-.03-.02V9.7l-.04-.02-.01-.01-5.65-3.76a.53.53 0 0 0-.59 0L6.05 9.67v.01L6 9.7v.02l-.03.02-.03.03-.01.03-.03.03-.01.02-.02.04-.01.02-.02.04V10h-.01l-.01.05v3.9l.01.05h.01v.05c.01.01.01.02.02.04l.01.02.02.04.01.02.02.03.02.03.03.03.03.02v.02l.04.02.01.01 5.66 3.77c.08.06.19.08.29.08s.21-.03.3-.08l5.65-3.77.01-.01.04-.02v-.02l.03-.02.03-.03.02-.03.02-.03.01-.02.02-.04.01-.02.02-.04V14h.01l.01-.05v-3.83m-1.06 2.77v-1.78l-1.33.89z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/coffee-maker-check-outline.svg�������������0000664�0000000�0000000�00000000633�14753064456�0031206�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.75 21.16-2.75-3L16.16 17l1.59 1.59L21.34 15l1.16 1.41zM13 18.21c-.5.49-1.22.79-2 .79-1.65 0-3-1.35-3-3v-3h6v1.69c.5-.77 1.2-1.42 2-1.88V11H6v5c0 1.64.81 3.09 2.03 4H4V4h2v2c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V4h2V2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h10.54c-.91-1-1.48-2.33-1.54-3.79M10 9c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1"/></svg>�����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/coffee-maker-check.svg���������������������0000664�0000000�0000000�00000000543�14753064456�0027531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.75 21.16-2.75-3L16.16 17l1.59 1.59L21.34 15l1.16 1.41zM13 18c0-2.22 1.21-4.15 3-5.19V11H6v5c0 1.64.81 3.09 2.03 4H4V4h2v2c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V4h2V2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h10.54A5.93 5.93 0 0 1 13 18m-3-9c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/coffee-maker-outline.svg�������������������0000664�0000000�0000000�00000000502�14753064456�0030126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 6V4h2V2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14v-2h-4.03A4.97 4.97 0 0 0 18 16v-5H8v5c0 1.64.81 3.09 2.03 4H6V4h2v2c0 .55.45 1 1 1h8c.55 0 1-.45 1-1m-8 10v-3h6v3c0 1.65-1.35 3-3 3s-3-1.35-3-3m3-8c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/coffee-maker.svg���������������������������0000664�0000000�0000000�00000000430�14753064456�0026451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 6V4h2V2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14v-2h-4.03A4.97 4.97 0 0 0 18 16v-5H8v5c0 1.64.81 3.09 2.03 4H6V4h2v2c0 .55.45 1 1 1h8c.55 0 1-.45 1-1m-5 2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/coffee-off-outline.svg���������������������0000664�0000000�0000000�00000000472�14753064456�0027607�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2 3.27 2 2V13c0 2.21 1.79 4 4 4h6c.5 0 1-.11 1.44-.29L17.73 19H2v2h17.73l.99 1L22 20.72 3.27 2zM8 15c-1.1 0-2-.9-2-2V7.27L13.73 15zM20 3H6.81l2 2H16v7.19l1.85 1.85c.09-.34.15-.68.15-1.04v-3h2c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 5h-2V5h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/coffee-off.svg�����������������������������0000664�0000000�0000000�00000000420�14753064456�0026123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.27 2 22 20.72 20.72 22l-.99-1H2v-2h15.73l-2.29-2.29c-.44.18-.94.29-1.44.29H8c-2.21 0-4-1.79-4-4V5.27l-2-2zM22 5v3c0 1.1-.9 2-2 2h-2v3c0 .36-.06.7-.15 1.04L6.81 3H20a2 2 0 0 1 2 2m-2 0h-2v3h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/coffee-outline.svg�������������������������0000664�0000000�0000000�00000000331�14753064456�0027031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 21v-2h18v2zM20 8V5h-2v3zm0-5a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-2v3a4 4 0 0 1-4 4H8a4 4 0 0 1-4-4V3zm-4 2H6v8a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/coffee-to-go-outline.svg�������������������0000664�0000000�0000000�00000000415�14753064456�0030057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3v8a4 4 0 0 0 4 4h4a4 4 0 0 0 4-4v-1h2c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2zm2 2h8v6a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2zm10 0h2v3h-2zm1.67 8.83-1.41 1.41L17 17H3v2h14l-1.74 1.76 1.41 1.41L20.84 18z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/coffee-to-go.svg���������������������������0000664�0000000�0000000�00000000353�14753064456�0026403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 19v-2h14l-1.74-1.76 1.41-1.41L20.84 18l-4.17 4.17-1.41-1.41L17 19zM17 8V5h-2v3zm0-5a2 2 0 0 1 2 2v3c0 1.11-.89 2-2 2h-2v1a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/coffee.svg���������������������������������0000664�0000000�0000000�00000000261�14753064456�0025356�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 21h18v-2H2M20 8h-2V5h2m0-2H4v10a4 4 0 0 0 4 4h6a4 4 0 0 0 4-4v-3h2a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/coffin.svg���������������������������������0000664�0000000�0000000�00000000205�14753064456�0025371�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 22 5 8l3-6h8l3 6-3 14zm3-16v2H9v2h2v5h2v-5h2V8h-2V6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cog-box.svg��������������������������������0000664�0000000�0000000�00000001451�14753064456�0025467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.25 12c0 .23-.02.46-.05.68l1.48 1.16c.13.11.17.29.08.45l-1.4 2.42c-.09.15-.27.21-.43.15l-1.74-.7c-.36.28-.76.51-1.19.69l-.25 1.85c-.03.17-.18.3-.35.3h-2.8c-.17 0-.32-.13-.35-.3L10 16.85c-.44-.18-.83-.41-1.19-.69l-1.74.7c-.16.06-.34 0-.43-.15l-1.4-2.42a.35.35 0 0 1 .08-.45l1.48-1.16c-.03-.22-.05-.45-.05-.68s.02-.46.05-.68l-1.48-1.16a.35.35 0 0 1-.08-.45l1.4-2.42c.09-.16.27-.22.43-.16l1.74.71c.36-.28.75-.52 1.19-.69l.25-1.86c.03-.16.18-.29.35-.29h2.8c.17 0 .32.13.35.29L14 7.15c.43.17.83.41 1.19.69l1.74-.71c.16-.06.34 0 .43.16l1.4 2.42c.09.15.05.34-.08.45l-1.48 1.16c.03.22.05.45.05.68M19 3H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-7 7c-1.11 0-2 .89-2 2a2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cog-clockwise.svg��������������������������0000664�0000000�0000000�00000001473�14753064456�0026666�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3a9 9 0 0 0 0 18c2 0 3.92-.66 5.5-1.86l-1.44-1.44A6.995 6.995 0 0 1 5 12c0-3.87 3.13-7 7-7s7 3.13 7 7h-3l4 4 4-4h-3a9 9 0 0 0-9-9M7.71 13.16c-.09.07-.12.19-.07.29l.9 1.55c.06.12.18.12.28.12l1.13-.45q.36.24.75.42l.18 1.19c.02.11.12.19.22.19h1.8c.1.03.21-.06.23-.17l.18-1.18c.27-.12.53-.27.76-.45l1.12.45c.11.04.23-.01.28-.12l.9-1.5c.05-.12.02-.24-.06-.31l-1-.74q.045-.45 0-.9l1-.76c.09-.07.11-.18.06-.29l-.9-1.55c-.06-.1-.17-.14-.28-.1l-1.12.45c-.24-.17-.5-.3-.77-.42l-.17-1.19a.244.244 0 0 0-.23-.19h-1.76c-.1 0-.19.07-.21.17l-.17 1.18c-.26.12-.53.27-.76.45l-1.15-.42a.234.234 0 0 0-.29.12l-.91 1.5c-.05.12-.02.24.06.31l1 .74q-.03.225 0 .45-.015.225 0 .45l-1 .74m4.29.31c-.84 0-1.5-.68-1.5-1.5 0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cog-counterclockwise.svg�������������������0000664�0000000�0000000�00000001463�14753064456�0030265�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3a9 9 0 0 0-9 9H0l4 4 4-4H5c0-3.87 3.13-7 7-7s7 3.13 7 7a6.995 6.995 0 0 1-11.06 5.7L6.5 19.14C8.08 20.34 10 21 12 21a9 9 0 0 0 0-18m4.29 10.19-1-.74q.015-.225 0-.45.03-.225 0-.45l1-.74c.08-.07.11-.19.06-.31L15.44 9a.234.234 0 0 0-.29-.12L14 9.3c-.23-.18-.5-.33-.76-.45l-.17-1.18a.214.214 0 0 0-.21-.17H11.1c-.1 0-.21.08-.23.19l-.17 1.19c-.27.12-.53.25-.77.42l-1.12-.45a.23.23 0 0 0-.28.1l-.9 1.55c-.05.11-.03.22.06.29l1 .76q-.045.45 0 .9l-1 .74c-.08.07-.11.19-.06.31l.9 1.5c.05.11.17.16.28.12l1.12-.45c.23.18.49.33.76.45l.18 1.18c.02.11.13.2.23.17h1.8c.1 0 .21-.08.22-.19l.18-1.19q.39-.18.75-.42l1.13.45c.1 0 .22 0 .28-.12l.9-1.55c.05-.1.02-.22-.07-.29M12 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5c0 .82-.66 1.5-1.5 1.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cog-off-outline.svg������������������������0000664�0000000�0000000�00000002074�14753064456�0027130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3 4 5.88 2.34 8.73c-.13.22-.07.49.12.64L4.57 11l-.07 1 .07.97-2.11 1.66c-.19.15-.25.42-.12.64l2 3.46c.12.22.39.3.61.22l2.49-1.01c.52.4 1.06.74 1.69.99l.37 2.65c.04.24.25.42.5.42h4c.25 0 .46-.18.5-.42l.37-2.65c.51-.2.96-.48 1.39-.78l4.58 4.58zM10 11.9l2.1 2.1H12a2 2 0 0 1-2-2zm3.13 5.49L12.76 20h-1.52l-.37-2.62a5.44 5.44 0 0 1-3.01-1.76l-2.43 1.04-.75-1.3L6.8 13.8a5.55 5.55 0 0 1 0-3.6L4.69 8.65l.75-1.3.06.02 2.9 2.92C8.15 10.8 8 11.38 8 12c0 2.21 1.79 4 4 4 .62 0 1.2-.14 1.71-.4l1.12 1.12c-.52.31-1.09.54-1.7.67M10.06 6.86 8.55 5.35c.19-.09.38-.2.58-.28l.37-2.65c.04-.24.25-.42.5-.42h4c.25 0 .46.18.5.42l.37 2.65c.63.25 1.17.59 1.69.98l2.49-1c.22-.09.49 0 .61.22l2 3.46c.13.22.07.49-.12.64L19.43 11l.07 1-.07 1 2.11 1.63c.19.15.25.42.12.64l-1.16 2.02-1.46-1.45.28-.48-2.12-1.55c.4-1.17.4-2.44 0-3.61l2.11-1.55-.75-1.3-2.41 1.04a5.42 5.42 0 0 0-3.03-1.77L12.75 4h-1.5l-.37 2.61c-.28.06-.56.14-.82.25M12 8c2.21 0 4 1.79 4 4 0 .25-.03.5-.07.73l-4.66-4.66c.23-.04.48-.07.73-.07"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cog-off.svg��������������������������������0000664�0000000�0000000�00000001424�14753064456�0025451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.12 21.46 2.4 1.73 1.12 3 4 5.87 2.34 8.73c-.13.22-.07.49.12.64L4.57 11c-.04.34-.07.67-.07 1s.03.65.07.97l-2.11 1.66c-.19.15-.25.42-.12.64l2 3.46c.12.22.39.3.61.22l2.49-1.01c.52.4 1.06.74 1.69.99l.37 2.65c.04.24.25.42.5.42h4c.25 0 .46-.18.5-.42l.37-2.65c.51-.21.96-.48 1.39-.79l4.59 4.59zM12 15.5c-1.93 0-3.5-1.57-3.5-3.5 0-.5.12-.92.29-1.33l4.54 4.54c-.41.18-.83.29-1.33.29m-.26-6.97L8.56 5.35c.19-.1.37-.2.57-.28l.37-2.65c.04-.24.25-.42.5-.42h4c.25 0 .46.18.5.42l.37 2.65c.63.25 1.17.59 1.69.98l2.49-1c.22-.09.49 0 .61.22l2 3.46c.12.22.07.49-.12.64L19.43 11c.04.34.07.67.07 1s-.03.65-.07.97l2.11 1.66c.19.15.24.42.12.64l-1.16 2.02-5.03-5.03c.03-.08.03-.17.03-.26 0-1.93-1.57-3.5-3.5-3.5-.09 0-.17 0-.26.03"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cog-outline.svg����������������������������0000664�0000000�0000000�00000002015�14753064456�0026353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m-2 12c-.25 0-.46-.18-.5-.42l-.37-2.65c-.63-.25-1.17-.59-1.69-.99l-2.49 1.01c-.22.08-.49 0-.61-.22l-2-3.46a.493.493 0 0 1 .12-.64l2.11-1.66L4.5 12l.07-1-2.11-1.63a.493.493 0 0 1-.12-.64l2-3.46c.12-.22.39-.31.61-.22l2.49 1c.52-.39 1.06-.73 1.69-.98l.37-2.65c.04-.24.25-.42.5-.42h4c.25 0 .46.18.5.42l.37 2.65c.63.25 1.17.59 1.69.98l2.49-1c.22-.09.49 0 .61.22l2 3.46c.13.22.07.49-.12.64L19.43 11l.07 1-.07 1 2.11 1.63c.19.15.25.42.12.64l-2 3.46c-.12.22-.39.31-.61.22l-2.49-1c-.52.39-1.06.73-1.69.98l-.37 2.65c-.04.24-.25.42-.5.42zm1.25-18-.37 2.61c-1.2.25-2.26.89-3.03 1.78L5.44 7.35l-.75 1.3L6.8 10.2a5.55 5.55 0 0 0 0 3.6l-2.12 1.56.75 1.3 2.43-1.04c.77.88 1.82 1.52 3.01 1.76l.37 2.62h1.52l.37-2.61c1.19-.25 2.24-.89 3.01-1.77l2.43 1.04.75-1.3-2.12-1.55c.4-1.17.4-2.44 0-3.61l2.11-1.55-.75-1.3-2.41 1.04a5.42 5.42 0 0 0-3.03-1.77L12.75 4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cog-pause-outline.svg����������������������0000664�0000000�0000000�00000001727�14753064456�0027477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.54 22H10c-.25 0-.46-.18-.5-.42l-.37-2.65c-.63-.25-1.17-.59-1.69-.99l-2.49 1.01c-.22.08-.49 0-.61-.22l-2-3.46a.493.493 0 0 1 .12-.64l2.11-1.66L4.5 12l.07-1-2.11-1.63a.493.493 0 0 1-.12-.64l2-3.46c.12-.22.39-.31.61-.22l2.49 1c.52-.39 1.06-.73 1.69-.98l.37-2.65c.04-.24.25-.42.5-.42h4c.25 0 .46.18.5.42l.37 2.65c.63.25 1.17.59 1.69.98l2.49-1c.22-.09.49 0 .61.22l2 3.46c.13.22.07.49-.12.64L19.43 11l.07 1v.19c-.5-.12-1-.19-1.5-.19-.17 0-.34 0-.5.03 0-.62-.1-1.24-.3-1.83l2.11-1.55-.75-1.3-2.41 1.04a5.42 5.42 0 0 0-3.03-1.77L12.75 4h-1.5l-.37 2.61c-1.2.25-2.26.89-3.03 1.78L5.44 7.35l-.75 1.3L6.8 10.2a5.55 5.55 0 0 0 0 3.6l-2.12 1.56.75 1.3 2.43-1.04c.77.88 1.82 1.52 3.01 1.76l.37 2.62h1.11c.26.75.65 1.42 1.19 2m-1.18-6.04c-.12.04-.24.04-.36.04-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4c0 .12 0 .24-.04.36a6.05 6.05 0 0 0-3.6 3.6M14 12c0-1.1-.89-2-2-2s-2 .9-2 2 .9 2 2 2 2-.89 2-2m5 3h2v6h-2m-4-6h2v6h-2z"/></svg>�����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cog-pause.svg������������������������������0000664�0000000�0000000�00000001315�14753064456�0026013�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.53 22H10c-.25 0-.46-.18-.5-.42l-.37-2.65c-.63-.25-1.17-.59-1.69-.99l-2.49 1.01c-.22.08-.49 0-.61-.22l-2-3.46a.493.493 0 0 1 .12-.64l2.11-1.66c-.04-.32-.07-.64-.07-.97s.03-.66.07-1L2.46 9.37a.493.493 0 0 1-.12-.64l2-3.46c.12-.22.39-.31.61-.22l2.49 1c.52-.39 1.06-.73 1.69-.98l.37-2.65c.04-.24.25-.42.5-.42h4c.25 0 .46.18.5.42l.37 2.65c.63.25 1.17.59 1.69.98l2.49-1c.22-.09.49 0 .61.22l2 3.46c.12.22.07.49-.12.64L19.43 11c.04.34.07.67.07 1v.19c-.5-.12-1-.19-1.5-.19-.92 0-1.78.21-2.56.58.03-.19.06-.38.06-.58 0-1.93-1.57-3.5-3.5-3.5S8.5 10.07 8.5 12s1.57 3.5 3.5 3.5c.2 0 .39-.03.58-.06a5.97 5.97 0 0 0 .95 6.56M19 15h2v6h-2m-4-6h2v6h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cog-play-outline.svg�����������������������0000664�0000000�0000000�00000001713�14753064456�0027322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.54 22H10c-.25 0-.46-.18-.5-.42l-.37-2.65c-.63-.25-1.17-.59-1.69-.99l-2.49 1.01c-.22.08-.49 0-.61-.22l-2-3.46a.493.493 0 0 1 .12-.64l2.11-1.66L4.5 12l.07-1-2.11-1.63a.493.493 0 0 1-.12-.64l2-3.46c.12-.22.39-.31.61-.22l2.49 1c.52-.39 1.06-.73 1.69-.98l.37-2.65c.04-.24.25-.42.5-.42h4c.25 0 .46.18.5.42l.37 2.65c.63.25 1.17.59 1.69.98l2.49-1c.22-.09.49 0 .61.22l2 3.46c.13.22.07.49-.12.64L19.43 11l.07 1v.19c-.5-.12-1-.19-1.5-.19-.17 0-.34 0-.5.03 0-.62-.1-1.24-.3-1.83l2.11-1.55-.75-1.3-2.41 1.04a5.42 5.42 0 0 0-3.03-1.77L12.75 4h-1.5l-.37 2.61c-1.2.25-2.26.89-3.03 1.78L5.44 7.35l-.75 1.3L6.8 10.2a5.55 5.55 0 0 0 0 3.6l-2.12 1.56.75 1.3 2.43-1.04c.77.88 1.82 1.52 3.01 1.76l.37 2.62h1.11c.26.75.65 1.42 1.19 2m2.42-9.64c.04-.12.04-.24.04-.36 0-2.21-1.79-4-4-4s-4 1.79-4 4 1.79 4 4 4c.12 0 .24 0 .36-.04a6.05 6.05 0 0 1 3.6-3.6M12 14c-1.1 0-2-.89-2-2s.9-2 2-2 2 .9 2 2-.89 2-2 2m4 1v6l5-3z"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cog-play.svg�������������������������������0000664�0000000�0000000�00000001300�14753064456�0025635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.53 22H10c-.25 0-.46-.18-.5-.42l-.37-2.65c-.63-.25-1.17-.59-1.69-.99l-2.49 1.01c-.22.08-.49 0-.61-.22l-2-3.46a.493.493 0 0 1 .12-.64l2.11-1.66c-.04-.32-.07-.64-.07-.97s.03-.66.07-1L2.46 9.37a.493.493 0 0 1-.12-.64l2-3.46c.12-.22.39-.31.61-.22l2.49 1c.52-.39 1.06-.73 1.69-.98l.37-2.65c.04-.24.25-.42.5-.42h4c.25 0 .46.18.5.42l.37 2.65c.63.25 1.17.59 1.69.98l2.49-1c.22-.09.49 0 .61.22l2 3.46c.12.22.07.49-.12.64L19.43 11c.04.34.07.67.07 1v.19c-.5-.12-1-.19-1.5-.19-.92 0-1.78.21-2.56.58.03-.19.06-.38.06-.58 0-1.93-1.57-3.5-3.5-3.5S8.5 10.07 8.5 12s1.57 3.5 3.5 3.5c.2 0 .39-.03.58-.06a5.97 5.97 0 0 0 .95 6.56M16 15v6l5-3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cog-refresh-outline.svg��������������������0000664�0000000�0000000�00000001600�14753064456�0030006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 14.5c1.1 0 2.1.4 2.8 1.2l1.2-1.2v4h-4l1.8-1.8c-.5-.4-1.1-.7-1.8-.7-1.4 0-2.5 1.1-2.5 2.5S16.6 21 18 21c.8 0 1.5-.4 2-1h1.7c-.6 1.5-2 2.5-3.7 2.5-2.2 0-4-1.8-4-4s1.8-4 4-4M11.7 20h-.4l-.4-2.6c-1.2-.2-2.2-.9-3-1.8l-2.4 1-.8-1.3 2.1-1.6q-.6-1.8 0-3.6L4.7 8.7l.8-1.3 2.4 1q1.2-1.35 3-1.8l.3-2.6h1.5l.4 2.6c1.2.2 2.3.9 3 1.8l2.4-1 .8 1.3-2.1 1.5q.3.9.3 1.8h.5c.5 0 1 .1 1.5.2V12l-.1-1 2.1-1.6c.2-.2.2-.4.1-.6l-2-3.5c-.1-.3-.3-.3-.6-.3l-2.5 1c-.5-.4-1.1-.7-1.7-1l-.4-2.7c.1-.1-.2-.3-.4-.3h-4c-.2 0-.5.2-.5.4l-.4 2.7c-.6.2-1.1.6-1.7.9L5 5c-.3 0-.5 0-.7.3l-2 3.5c-.1.2 0 .4.2.6L4.6 11l-.1 1 .1 1-2.1 1.7c-.2.2-.2.4-.1.6l2 3.5c.1.2.3.2.6.2l2.5-1c.5.4 1.1.7 1.7 1l.4 2.7c0 .2.2.4.5.4h2.5c-.5-.7-.7-1.4-.9-2.1m4.3-7.7V12c0-2.2-1.8-4-4-4s-4 1.8-4 4 1.8 4 4 4c.7-1.7 2.2-3.1 4-3.7m-6-.3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cog-refresh.svg����������������������������0000664�0000000�0000000�00000001340�14753064456�0026332�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 14.5c1.1 0 2.1.4 2.8 1.2l1.2-1.2v4h-4l1.8-1.8c-.5-.4-1.1-.7-1.8-.7-1.4 0-2.5 1.1-2.5 2.5S16.6 21 18 21c.8 0 1.5-.4 2-1h1.7c-.6 1.5-2 2.5-3.7 2.5-2.2 0-4-1.8-4-4s1.8-4 4-4m-6.5 4c0-1.1.3-2.1.7-3H12c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5c0 .2 0 .4-.1.5.8-.3 1.6-.5 2.6-.5.5 0 1 .1 1.5.2V12c0-.3 0-.7-.1-1l2.1-1.6c.2-.2.2-.4.1-.6l-2-3.5c-.1-.3-.3-.3-.6-.3l-2.5 1c-.5-.4-1.1-.7-1.7-1l-.4-2.7c.1-.1-.2-.3-.4-.3h-4c-.2 0-.5.2-.5.4l-.4 2.7c-.6.2-1.1.6-1.7.9L5 5c-.3 0-.5 0-.7.3l-2 3.5c-.1.2 0 .4.2.6L4.6 11c0 .3-.1.7-.1 1s0 .7.1 1l-2.1 1.7c-.2.2-.2.4-.1.6l2 3.5c.1.2.3.2.6.2l2.5-1c.5.4 1.1.7 1.7 1l.4 2.7c0 .2.2.4.5.4h2.5c-.7-1.1-1.1-2.3-1.1-3.6"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cog-stop-outline.svg�����������������������0000664�0000000�0000000�00000001713�14753064456�0027342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.54 22H10c-.25 0-.46-.18-.5-.42l-.37-2.65c-.63-.25-1.17-.59-1.69-.99l-2.49 1.01c-.22.08-.49 0-.61-.22l-2-3.46a.493.493 0 0 1 .12-.64l2.11-1.66L4.5 12l.07-1-2.11-1.63a.493.493 0 0 1-.12-.64l2-3.46c.12-.22.39-.31.61-.22l2.49 1c.52-.39 1.06-.73 1.69-.98l.37-2.65c.04-.24.25-.42.5-.42h4c.25 0 .46.18.5.42l.37 2.65c.63.25 1.17.59 1.69.98l2.49-1c.22-.09.49 0 .61.22l2 3.46c.13.22.07.49-.12.64L19.43 11l.07 1v.19c-.5-.12-1-.19-1.5-.19-.17 0-.34 0-.5.03 0-.62-.1-1.24-.3-1.83l2.11-1.55-.75-1.3-2.41 1.04a5.42 5.42 0 0 0-3.03-1.77L12.75 4h-1.5l-.37 2.61c-1.2.25-2.26.89-3.03 1.78L5.44 7.35l-.75 1.3L6.8 10.2a5.55 5.55 0 0 0 0 3.6l-2.12 1.56.75 1.3 2.43-1.04c.77.88 1.82 1.52 3.01 1.76l.37 2.62h1.11c.26.75.65 1.42 1.19 2m-1.18-6.04c-.12.04-.24.04-.36.04-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4c0 .12 0 .24-.04.36a6.05 6.05 0 0 0-3.6 3.6M14 12c0-1.1-.89-2-2-2s-2 .9-2 2 .9 2 2 2 2-.89 2-2m1 3h6v6h-6z"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cog-stop.svg�������������������������������0000664�0000000�0000000�00000001301�14753064456�0025656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.53 22H10c-.25 0-.46-.18-.5-.42l-.37-2.65c-.63-.25-1.17-.59-1.69-.99l-2.49 1.01c-.22.08-.49 0-.61-.22l-2-3.46a.493.493 0 0 1 .12-.64l2.11-1.66c-.04-.32-.07-.64-.07-.97s.03-.66.07-1L2.46 9.37a.493.493 0 0 1-.12-.64l2-3.46c.12-.22.39-.31.61-.22l2.49 1c.52-.39 1.06-.73 1.69-.98l.37-2.65c.04-.24.25-.42.5-.42h4c.25 0 .46.18.5.42l.37 2.65c.63.25 1.17.59 1.69.98l2.49-1c.22-.09.49 0 .61.22l2 3.46c.12.22.07.49-.12.64L19.43 11c.04.34.07.67.07 1v.19c-.5-.12-1-.19-1.5-.19-.92 0-1.78.21-2.56.58.03-.19.06-.38.06-.58 0-1.93-1.57-3.5-3.5-3.5S8.5 10.07 8.5 12s1.57 3.5 3.5 3.5c.2 0 .39-.03.58-.06a5.97 5.97 0 0 0 .95 6.56M21 15h-6v6h6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cog-sync-outline.svg�����������������������0000664�0000000�0000000�00000001672�14753064456�0027335�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.7 20h-.4l-.4-2.6c-1.2-.2-2.2-.9-3-1.8l-2.4 1-.8-1.3 2.1-1.6q-.6-1.8 0-3.6L4.7 8.7l.8-1.3 2.4 1q1.2-1.35 3-1.8l.3-2.6h1.5l.4 2.6c1.2.2 2.3.9 3 1.8l2.4-1 .8 1.3-2.1 1.5q.3.9.3 1.8h.5c.5 0 1 .1 1.5.2V12l-.1-1 2.1-1.6c.2-.2.2-.4.1-.6l-2-3.5c-.1-.3-.3-.3-.6-.3l-2.5 1c-.5-.4-1.1-.7-1.7-1l-.4-2.7c.1-.1-.2-.3-.4-.3h-4c-.2 0-.5.2-.5.4l-.4 2.7c-.6.2-1.1.6-1.7.9L5 5c-.3 0-.5 0-.7.3l-2 3.5c-.1.2 0 .4.2.6L4.6 11l-.1 1 .1 1-2.1 1.7c-.2.2-.2.4-.1.6l2 3.5c.1.2.3.2.6.2l2.5-1c.5.4 1.1.7 1.7 1l.4 2.7c0 .2.2.4.5.4h2.5c-.5-.7-.7-1.4-.9-2.1m4.3-7.7V12c0-2.2-1.8-4-4-4s-4 1.8-4 4 1.8 4 4 4c.7-1.7 2.2-3.1 4-3.7m-6-.3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2m8 2.5V13l-2.2 2.2 2.2 2.2V16c1.4 0 2.5 1.1 2.5 2.5 0 .4-.1.8-.3 1.1l1.1 1.1c1.2-1.8.7-4.3-1.1-5.5-.6-.5-1.4-.7-2.2-.7m0 6.5c-1.4 0-2.5-1.1-2.5-2.5 0-.4.1-.8.3-1.1l-1.1-1.1c-1.2 1.8-.7 4.3 1.1 5.5.7.4 1.4.7 2.2.7V24l2.2-2.2-2.2-2.3z"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cog-sync.svg�������������������������������0000664�0000000�0000000�00000001435�14753064456�0025655�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.5 18.5c0-1.1.3-2.1.7-3H12c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5c0 .2 0 .4-.1.5.8-.3 1.6-.5 2.6-.5.5 0 1 .1 1.5.2V12c0-.3 0-.7-.1-1l2.1-1.6c.2-.2.2-.4.1-.6l-2-3.5c-.1-.3-.3-.3-.6-.3l-2.5 1c-.5-.4-1.1-.7-1.7-1l-.4-2.7c.1-.1-.2-.3-.4-.3h-4c-.2 0-.5.2-.5.4l-.4 2.7c-.6.2-1.1.6-1.7.9L5 5c-.3 0-.5 0-.7.3l-2 3.5c-.1.2 0 .4.2.6L4.6 11c0 .3-.1.7-.1 1s0 .7.1 1l-2.1 1.7c-.2.2-.2.4-.1.6l2 3.5c.1.2.3.2.6.2l2.5-1c.5.4 1.1.7 1.7 1l.4 2.7c0 .2.2.4.5.4h2.5c-.7-1.1-1.1-2.3-1.1-3.6m6.5-4V13l-2.2 2.2 2.2 2.2V16c1.4 0 2.5 1.1 2.5 2.5 0 .4-.1.8-.3 1.1l1.1 1.1c1.2-1.8.7-4.3-1.1-5.5-.6-.5-1.4-.7-2.2-.7m0 6.5c-1.4 0-2.5-1.1-2.5-2.5 0-.4.1-.8.3-1.1l-1.1-1.1c-1.2 1.8-.7 4.3 1.1 5.5.7.4 1.4.7 2.2.7V24l2.2-2.2-2.2-2.3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cog-transfer-outline.svg�������������������0000664�0000000�0000000�00000002106�14753064456�0030176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 17v-3h3v-2l4 3.5-4 3.5v-2zm2 1v3h-3v2l-4-3.5 4-3.5v2zM12 8c-2.21 0-4 1.8-4 4 0 1.91 1.35 3.54 3.21 3.92L16 11.86A3.997 3.997 0 0 0 12 8m0 6c-1.1 0-2-.89-2-2s.9-2 2-2 2 .9 2 2-.89 2-2 2m9.66-5.27-2-3.46c-.12-.22-.38-.31-.61-.22l-2.49 1c-.51-.41-1.06-.74-1.69-1l-.37-2.63A.506.506 0 0 0 14 2h-4c-.25 0-.46.18-.5.42l-.37 2.65c-.63.26-1.17.59-1.69 1L5 5.05c-.23-.09-.5 0-.61.22l-2 3.46c-.13.21-.08.49.11.64L4.57 11l-.07 1 .07 1-2.11 1.63c-.2.15-.25.43-.12.64l2 3.46c.11.27.4.38.66.27l2.5-1c.24.19.5.37.76.53l1.65-1.4c-.77-.33-1.45-.82-2-1.45l-2.41 1-.77-1.3L6.8 13.8a5.55 5.55 0 0 1 0-3.6L4.69 8.65l.75-1.3 2.41 1c.78-.9 1.83-1.53 3-1.78l.4-2.57h1.5l.37 2.62c1.17.24 2.22.88 3 1.77l2.41-1 .75 1.3-2.08 1.51c.09.26.16.53.2.8h2l2.1-1.63a.48.48 0 0 0 .16-.64M12 8c-2.21 0-4 1.8-4 4 0 1.91 1.35 3.54 3.21 3.92L16 11.86A3.997 3.997 0 0 0 12 8m0 6c-1.1 0-2-.89-2-2s.9-2 2-2 2 .9 2 2-.89 2-2 2m0-6c-2.21 0-4 1.8-4 4 0 1.91 1.35 3.54 3.21 3.92L16 11.86A3.997 3.997 0 0 0 12 8m0 6c-1.1 0-2-.89-2-2s.9-2 2-2 2 .9 2 2-.89 2-2 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cog-transfer.svg���������������������������0000664�0000000�0000000�00000001126�14753064456�0026522�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 18v-2l-4 3.5 4 3.5v-2h3v-3zm8-2.5L18 12v2h-3v3h3v2zm-.34-6.77-2-3.46c-.12-.22-.38-.31-.61-.22l-2.49 1c-.51-.41-1.06-.74-1.69-1l-.37-2.63A.506.506 0 0 0 14 2h-4c-.25 0-.46.18-.5.42l-.37 2.65c-.63.26-1.17.59-1.69 1L5 5.05c-.23-.09-.5 0-.61.22l-2 3.46c-.13.21-.08.49.11.64L4.57 11c-.04.33-.07.67-.07 1s.03.67.07 1l-2.11 1.63c-.2.15-.25.43-.12.64l2 3.46c.11.27.4.38.66.27l2.5-1c.24.19.5.37.76.53l3.51-3A3.52 3.52 0 0 1 8.5 11.8c.15-1.93 1.82-3.39 3.75-3.25 1.44.09 2.67 1.07 3.1 2.45h4.08l2.11-1.63c.19-.15.24-.43.12-.64"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cog.svg������������������������������������0000664�0000000�0000000�00000001346�14753064456�0024704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 15.5A3.5 3.5 0 0 1 8.5 12 3.5 3.5 0 0 1 12 8.5a3.5 3.5 0 0 1 3.5 3.5 3.5 3.5 0 0 1-3.5 3.5m7.43-2.53c.04-.32.07-.64.07-.97s-.03-.66-.07-1l2.11-1.63c.19-.15.24-.42.12-.64l-2-3.46c-.12-.22-.39-.31-.61-.22l-2.49 1c-.52-.39-1.06-.73-1.69-.98l-.37-2.65A.506.506 0 0 0 14 2h-4c-.25 0-.46.18-.5.42l-.37 2.65c-.63.25-1.17.59-1.69.98l-2.49-1c-.22-.09-.49 0-.61.22l-2 3.46c-.13.22-.07.49.12.64L4.57 11c-.04.34-.07.67-.07 1s.03.65.07.97l-2.11 1.66c-.19.15-.25.42-.12.64l2 3.46c.12.22.39.3.61.22l2.49-1.01c.52.4 1.06.74 1.69.99l.37 2.65c.04.24.25.42.5.42h4c.25 0 .46-.18.5-.42l.37-2.65c.63-.26 1.17-.59 1.69-.99l2.49 1.01c.22.08.49 0 .61-.22l2-3.46c.12-.22.07-.49-.12-.64z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cogs.svg�����������������������������������0000664�0000000�0000000�00000002361�14753064456�0025065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.9 18.45c1.35 0 2.45-1.1 2.45-2.45s-1.1-2.45-2.45-2.45c-1.36 0-2.45 1.1-2.45 2.45s1.09 2.45 2.45 2.45m5.2-1.77 1.48 1.16c.13.11.17.29.08.45l-1.4 2.42a.35.35 0 0 1-.43.15l-1.74-.7c-.36.28-.76.51-1.18.69l-.27 1.85c-.02.17-.17.3-.34.3h-2.8c-.18 0-.32-.13-.35-.3l-.26-1.85c-.43-.18-.82-.41-1.18-.69l-1.75.7c-.15.06-.34 0-.42-.15l-1.4-2.42a.35.35 0 0 1 .08-.45l1.48-1.16-.05-.68.05-.69-1.48-1.15a.35.35 0 0 1-.08-.45l1.4-2.42c.08-.16.27-.22.42-.16l1.75.71c.36-.28.75-.52 1.18-.69l.26-1.86c.03-.16.17-.29.35-.29h2.8c.17 0 .32.13.34.29l.27 1.86c.42.17.82.41 1.18.69l1.74-.71c.17-.06.34 0 .43.16l1.4 2.42c.09.15.05.34-.08.45l-1.48 1.15.05.69zM6.69 8.07c.87 0 1.57-.7 1.57-1.57s-.7-1.58-1.57-1.58A1.58 1.58 0 0 0 5.11 6.5c0 .87.71 1.57 1.58 1.57m3.34-1.13.97.74c.07.07.09.19.03.29l-.9 1.56c-.05.1-.17.14-.27.1l-1.12-.45-.74.44-.19 1.19c-.02.11-.11.19-.22.19h-1.8c-.12 0-.21-.08-.23-.19L5.4 9.62l-.76-.44-1.14.45c-.09.04-.2 0-.26-.1l-.9-1.56c-.06-.1-.03-.22.05-.29l.95-.74-.03-.44.03-.44-.95-.74a.23.23 0 0 1-.05-.29l.9-1.56c.06-.1.17-.14.26-.1l1.13.45.77-.44.16-1.19c.02-.11.11-.19.23-.19h1.8c.11 0 .2.08.22.19L8 3.38l.74.44 1.12-.45c.1-.04.22 0 .27.1l.9 1.56c.06.1.04.22-.03.29l-.97.74.03.44z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/collage.svg��������������������������������0000664�0000000�0000000�00000000264�14753064456�0025540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h6V3m2 0v8h8V5c0-1.11-.89-2-2-2m-6 10v8h6c1.11 0 2-.89 2-2v-6"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/collapse-all-outline.svg�������������������0000664�0000000�0000000�00000000356�14753064456�0030161�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2a2 2 0 0 0-2 2v10h2V4h10V2zm4 4a2 2 0 0 0-2 2v10h2V8h10V6zm12 6v8h-8v-8zm0-2h-8a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2m-1 7h-6v-2h6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/collapse-all.svg���������������������������0000664�0000000�0000000�00000000340�14753064456�0026475�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 4H4v10H2V4a2 2 0 0 1 2-2h10zm4 2H8a2 2 0 0 0-2 2v10h2V8h10zm4 6v8a2 2 0 0 1-2 2h-8a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2m-2 3h-8v2h8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/color-helper.svg���������������������������0000664�0000000�0000000�00000000134�14753064456�0026521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 24h24v-4H0z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comma-box-outline.svg����������������������0000664�0000000�0000000�00000000271�14753064456�0027467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10 17 2-4H9V7h6v6l-2 4zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 2v14h14V5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comma-box.svg������������������������������0000664�0000000�0000000�00000000252�14753064456�0026011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m10 10V7H9v6h3l-2 4h3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comma-circle-outline.svg�������������������0000664�0000000�0000000�00000000352�14753064456�0030140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8m-2 13h3l2-4V7H9v6h3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comma-circle.svg���������������������������0000664�0000000�0000000�00000000260�14753064456�0026461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m3 11-2 4h-3l2-4H9V7h6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comma.svg����������������������������������0000664�0000000�0000000�00000000166�14753064456�0025227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 3h9.95v9.96l-3.99 7.98H8l3.97-7.98H7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-account-outline.svg����������������0000664�0000000�0000000�00000000512�14753064456�0030677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 22a1 1 0 0 1-1-1v-3H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6.1l-3.7 3.71c-.2.19-.45.29-.7.29zm1-6v3.08L13.08 16H20V4H4v12zm6-2H8v-1c0-1.33 2.67-2 4-2s4 .67 4 2zm-4-8a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-account.svg������������������������0000664�0000000�0000000�00000000456�14753064456�0027231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 22a1 1 0 0 1-1-1v-3H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6.1l-3.7 3.71c-.2.19-.45.29-.7.29zm7-8v-1c0-1.33-2.67-2-4-2s-4 .67-4 2v1zm-4-8a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-alert-outline.svg������������������0000664�0000000�0000000�00000000400�14753064456�0030346�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 22a1 1 0 0 1-1-1v-3H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6.1l-3.7 3.71c-.2.19-.45.29-.7.29zm1-6v3.08L13.08 16H20V4H4v12zm3-6h-2V6h2zm0 4h-2v-2h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-alert.svg��������������������������0000664�0000000�0000000�00000000343�14753064456�0026677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 22c-.6 0-1-.4-1-1v-3H4c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2h-6.1l-3.7 3.7c-.2.2-.4.3-.7.3zm4-11V5h-2v6m2 4v-2h-2v2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-arrow-left-outline.svg�������������0000664�0000000�0000000�00000000425�14753064456�0031330�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v3c0 .6.4 1 1 1h.5c.2 0 .5-.1.7-.3l3.7-3.7H20c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 14h-6.9L10 19.1V16H4V4h16zm-4-5V9h-4.5l1.8-1.8L12 6l-4 4 4 4 1.2-1.2-1.7-1.8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-arrow-left.svg���������������������0000664�0000000�0000000�00000000371�14753064456�0027653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v3c0 .6.4 1 1 1h.5c.2 0 .5-.1.7-.3l3.7-3.7H20c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-4 9h-4.5l1.8 1.8L12 14l-4-4 4-4 1.2 1.2L11.5 9H16z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-arrow-right-outline.svg������������0000664�0000000�0000000�00000000423�14753064456�0031511�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v3c0 .6.4 1 1 1h.5c.2 0 .5-.1.7-.3l3.7-3.7H20c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 14h-6.9L10 19.1V16H4V4h16zM8 9v2h4.5l-1.8 1.8L12 14l4-4-4-4-1.2 1.2L12.5 9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-arrow-right.svg��������������������0000664�0000000�0000000�00000000366�14753064456�0030042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v3c0 .6.4 1 1 1h.5c.2 0 .5-.1.7-.3l3.7-3.7H20c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-8 12-1.2-1.2 1.8-1.8H8V9h4.5l-1.8-1.8L12 6l4 4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-bookmark-outline.svg���������������0000664�0000000�0000000�00000000371�14753064456�0031053�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 22c-.6 0-1-.4-1-1v-3H4c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2h-6.1l-3.7 3.7c-.2.2-.4.3-.7.3zm1-6v3.1l3.1-3.1H20V4H4v12zm8-2V6h-5v8l2.5-1.5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-bookmark.svg�����������������������0000664�0000000�0000000�00000000336�14753064456�0027377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v3c0 .6.4 1 1 1h.5c.2 0 .5-.1.7-.3l3.7-3.7H20c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-1 11-2.5-1.5L14 13V5h5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-check-outline.svg������������������0000664�0000000�0000000�00000000440�14753064456�0030320�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 22c-.55 0-1-.45-1-1v-3H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12c0 1.11-.89 2-2 2h-6.1l-3.7 3.71c-.2.19-.45.29-.7.29zm1-6v3.08L13.08 16H20V4H4v12zm5.6-10L17 7.41 10.47 14 7 10.5l1.4-1.41 2.07 2.08z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-check.svg��������������������������0000664�0000000�0000000�00000000373�14753064456�0026650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h4v3c0 .55.45 1 1 1h.5c.25 0 .5-.1.7-.29L13.9 18H20c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2m-9.53 12L7 10.5l1.4-1.41 2.07 2.08L15.6 6 17 7.41z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-edit-outline.svg�������������������0000664�0000000�0000000�00000000554�14753064456�0030176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 22c-.55 0-1-.45-1-1v-3H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12c0 1.11-.89 2-2 2h-6.1l-3.7 3.71c-.2.19-.45.29-.7.29zm1-6v3.08L13.08 16H20V4H4v12zm5.84-7.8-1.01 1.01-2.07-2.03 1.01-1.02c.2-.21.54-.22.78 0l1.29 1.25c.21.21.22.55 0 .79M8 11.91l4.17-4.19 2.07 2.08-4.16 4.2H8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-edit.svg���������������������������0000664�0000000�0000000�00000000506�14753064456�0026516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h4v3c0 .55.45 1 1 1h.5c.25 0 .5-.1.7-.29L13.9 18H20c1.1 0 2-.9 2-2V4a2 2 0 0 0-2-2M9.08 15H7v-2.09l6.17-6.19 2.07 2.08zm7.76-7.8-1.01 1.01-2.07-2.03 1.01-1.02c.2-.21.54-.22.78 0l1.29 1.25c.21.21.22.55 0 .79"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-eye-outline.svg��������������������0000664�0000000�0000000�00000000743�14753064456�0030033�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 6c.56 0 1 .44 1 1s-.44 1-1 1-1-.44-1-1 .44-1 1-1m0-3c2.73 0 5.06 1.66 6 4-.94 2.34-3.27 4-6 4s-5.06-1.66-6-4c.94-2.34 3.27-4 6-4m0 1.5A2.5 2.5 0 0 0 13.5 7 2.5 2.5 0 0 0 16 9.5 2.5 2.5 0 0 0 18.5 7 2.5 2.5 0 0 0 16 4.5m2 8.25V16h-4.92L10 19.08V16H4V6h4.27c.32-.73.73-1.4 1.23-2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h4v3a1 1 0 0 0 1 1h.5c.25 0 .5-.1.7-.29L13.9 18H18c1.11 0 2-.89 2-2v-4c-.63.33-1.3.58-2 .75"/></svg>�����������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-eye.svg����������������������������0000664�0000000�0000000�00000000762�14753064456�0026357�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 12v4c0 1.11-.89 2-2 2h-4.1l-3.7 3.71c-.2.18-.44.29-.7.29H9a1 1 0 0 1-1-1v-3H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h5.5c-.55.67-1 1.42-1.36 2.25L7.85 7l.29.75C9.43 10.94 12.5 13 16 13c1.44 0 2.8-.37 4-1m-4-6c.56 0 1 .44 1 1s-.44 1-1 1-1-.44-1-1 .44-1 1-1m0-3c2.73 0 5.06 1.66 6 4-.94 2.34-3.27 4-6 4s-5.06-1.66-6-4c.94-2.34 3.27-4 6-4m0 1.5A2.5 2.5 0 0 0 13.5 7 2.5 2.5 0 0 0 16 9.5 2.5 2.5 0 0 0 18.5 7 2.5 2.5 0 0 0 16 4.5"/></svg>��������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-flash-outline.svg������������������0000664�0000000�0000000�00000000365�14753064456�0030346�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.5 16h-2.2l1.7-4h-5v6h2v5zM15 18h-1.1l-3.7 3.7c-.2.2-.4.3-.7.3H9c-.6 0-1-.4-1-1v-3H4c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2v6h-2V4H4v12h6v3.1l3.1-3.1H15z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-flash.svg��������������������������0000664�0000000�0000000�00000000335�14753064456�0026666�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.5 16h-2.2l1.7-4h-5v6h2v5zM15 18h-1.1l-3.7 3.7c-.2.2-.4.3-.7.3H9c-.6 0-1-.4-1-1v-3H4c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2v6h-7z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-minus-outline.svg������������������0000664�0000000�0000000�00000000373�14753064456�0030403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 11H8V9h8zm6-7v12c0 1.11-.89 2-2 2h-6.1l-3.7 3.71c-.2.19-.45.29-.7.29H9c-.55 0-1-.45-1-1v-3H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2m-2 0H4v12h6v3.08L13.08 16H20z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-minus.svg��������������������������0000664�0000000�0000000�00000000324�14753064456�0026722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h4v3c0 .55.45 1 1 1h.5c.25 0 .5-.1.7-.29L13.9 18H20c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2m-4 9H8V9h8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-multiple-outline.svg���������������0000664�0000000�0000000�00000000407�14753064456�0031101�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 23a1 1 0 0 1-1-1v-3H7a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-4.1l-3.7 3.71c-.2.19-.45.29-.7.29zm1-6v3.08L16.08 17H21V7H7v10zM3 15H1V3a2 2 0 0 1 2-2h16v2H3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-multiple.svg�����������������������0000664�0000000�0000000�00000000352�14753064456�0027423�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 23a1 1 0 0 1-1-1v-3H7a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-4.1l-3.7 3.71c-.2.18-.44.29-.7.29zm-9-8H1V3a2 2 0 0 1 2-2h16v2H3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-off-outline.svg��������������������0000664�0000000�0000000�00000000464�14753064456�0030023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.2 4-2-2H20a2 2 0 0 1 2 2v12c0 .76-.43 1.41-1.05 1.75L19.2 16h.8V4zm14.91 17.46-1.27 1.27L16.11 18H13.9l-3.7 3.71c-.2.19-.45.29-.7.29H9c-.55 0-1-.45-1-1v-3H4a2 2 0 0 1-2-2V3.9L1.11 3l1.28-1.27zm-8-5.46L4 5.89V16h6v3.08L13.08 16z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-off.svg����������������������������0000664�0000000�0000000�00000000415�14753064456�0026342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.11 21.46-1.27 1.27L16.11 18H13.9l-3.7 3.71c-.2.19-.45.29-.7.29H9c-.55 0-1-.45-1-1v-3H4a2 2 0 0 1-2-2V3.9L1.11 3l1.28-1.27zM22 16V4a2 2 0 0 0-2-2H5.2l15.75 15.75c.62-.34 1.05-.99 1.05-1.75"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-outline.svg������������������������0000664�0000000�0000000�00000000347�14753064456�0027253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 22a1 1 0 0 1-1-1v-3H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6.1l-3.7 3.71c-.2.19-.45.29-.7.29zm1-6v3.08L13.08 16H20V4H4v12z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-plus-outline.svg�������������������0000664�0000000�0000000�00000000406�14753064456�0030230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 22a1 1 0 0 1-1-1v-3H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6.1l-3.7 3.71c-.2.19-.45.29-.7.29zm1-6v3.08L13.08 16H20V4H4v12zm1-10h2v3h3v2h-3v3h-2v-3H8V9h3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-plus.svg���������������������������0000664�0000000�0000000�00000000350�14753064456�0026551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 22a1 1 0 0 1-1-1v-3H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6.1l-3.7 3.71c-.2.19-.45.29-.7.29zm2-16v3H8v2h3v3h2v-3h3V9h-3V6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-processing-outline.svg�������������0000664�0000000�0000000�00000000414�14753064456�0031420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 22a1 1 0 0 1-1-1v-3H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6.1l-3.7 3.71c-.2.19-.45.29-.7.29zm1-6v3.08L13.08 16H20V4H4v12zm7-5h-2V9h2zm-4 0h-2V9h2zm-4 0H7V9h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-processing.svg���������������������0000664�0000000�0000000�00000000360�14753064456�0027743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 22a1 1 0 0 1-1-1v-3H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6.1l-3.7 3.71c-.2.19-.45.29-.7.29zm8-11V9h-2v2zm-4 0V9h-2v2zm-4 0V9H7v2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-question-outline.svg���������������0000664�0000000�0000000�00000001112�14753064456�0031107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h4v3a1 1 0 0 0 1 1h.5c.25 0 .5-.1.7-.29L13.9 18H20a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm0 2h16v12h-6.92L10 19.08V16H4zm8.19 1.5c-.89 0-1.6.18-2.14.54-.55.36-.83.96-.78 1.65h1.97c0-.28.1-.49.26-.63.2-.14.42-.21.69-.21.31 0 .58.08.76.26.18.17.27.39.27.69 0 .28-.08.53-.22.74-.17.22-.38.4-.64.54-.52.32-.86.6-1.07.84-.19.24-.29.58-.29 1.08h2c0-.28.05-.5.14-.68.09-.17.26-.32.52-.47.46-.21.84-.49 1.13-.85.29-.37.44-.76.44-1.2q0-1.05-.81-1.68c-.54-.41-1.29-.62-2.23-.62M11 12v2h2v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-question.svg�����������������������0000664�0000000�0000000�00000001063�14753064456�0027437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6.1l-3.7 3.71c-.2.19-.45.29-.7.29H9a1 1 0 0 1-1-1v-3H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m8.19 3.5c-.89 0-1.6.18-2.14.54-.55.36-.83.96-.78 1.65h1.97c0-.28.1-.49.26-.63.2-.14.42-.21.69-.21.31 0 .58.08.76.26.18.17.27.39.27.69 0 .28-.08.53-.22.74-.17.22-.38.4-.64.54-.52.32-.86.6-1.07.84-.19.24-.29.58-.29 1.08h2c0-.28.05-.5.14-.68.09-.17.26-.32.52-.47.46-.21.84-.49 1.13-.85.29-.37.44-.76.44-1.2q0-1.05-.81-1.68c-.54-.41-1.29-.62-2.23-.62M11 12v2h2v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-quote-outline.svg������������������0000664�0000000�0000000�00000000443�14753064456�0030403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 22c-.6 0-1-.4-1-1v-3H4c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2h-6.1l-3.7 3.7c-.2.2-.4.3-.7.3zm1-6v3.1l3.1-3.1H20V4H4v12zm6.3-10-1.4 3H17v4h-4V8.8L14.3 6zm-6 0L8.9 9H11v4H7V8.8L8.3 6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-quote.svg��������������������������0000664�0000000�0000000�00000000402�14753064456�0026721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v3c0 .6.4 1 1 1h.5c.2 0 .5-.1.7-.3l3.7-3.7H20c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-9 11H7V8.8L8.3 6h2L8.9 9H11zm6 0h-4V8.8L14.3 6h2l-1.4 3H17z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-remove-outline.svg�����������������0000664�0000000�0000000�00000000513�14753064456�0030541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 22a1 1 0 0 1-1-1v-3H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6.1l-3.7 3.71c-.2.19-.45.29-.7.29zm1-6v3.08L13.08 16H20V4H4v12zM9.41 6 12 8.59 14.59 6 16 7.41 13.41 10 16 12.59 14.59 14 12 11.41 9.41 14 8 12.59 10.59 10 8 7.41z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-remove.svg�������������������������0000664�0000000�0000000�00000000456�14753064456�0027072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 22a1 1 0 0 1-1-1v-3H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6.1l-3.7 3.71c-.2.19-.45.29-.7.29zm.41-16L8 7.41 10.59 10 8 12.59 9.41 14 12 11.41 14.59 14 16 12.59 13.41 10 16 7.41 14.59 6 12 8.59z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-search-outline.svg�����������������0000664�0000000�0000000�00000000715�14753064456�0030515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4h5.5a6.9 6.9 0 0 0-.46 2H4v10h6v3.08L13.08 16H18v-2.77l2 2V16a2 2 0 0 1-2 2h-4.1l-3.7 3.71c-.2.19-.45.29-.7.29H9a1 1 0 0 1-1-1v-3H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2m11.5-2C18 2 20 4 20 6.5c0 .88-.25 1.7-.69 2.39l3.1 3.11L21 13.39l-3.11-3.08c-.69.44-1.51.69-2.39.69C13 11 11 9 11 6.5S13 2 15.5 2m0 2A2.5 2.5 0 0 0 13 6.5 2.5 2.5 0 0 0 15.5 9 2.5 2.5 0 0 0 18 6.5 2.5 2.5 0 0 0 15.5 4"/></svg>���������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-search.svg�������������������������0000664�0000000�0000000�00000000745�14753064456�0027043�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 2C18 2 20 4 20 6.5c0 .88-.25 1.7-.69 2.39l3.1 3.11L21 13.39l-3.11-3.08c-.69.44-1.51.69-2.39.69C13 11 11 9 11 6.5S13 2 15.5 2m0 2A2.5 2.5 0 0 0 13 6.5 2.5 2.5 0 0 0 15.5 9 2.5 2.5 0 0 0 18 6.5 2.5 2.5 0 0 0 15.5 4M4 4h5.5c-.31.79-.5 1.64-.5 2.5a6.5 6.5 0 0 0 6.5 6.5c.68 0 1.33-.11 1.96-.31L20 15.23V16a2 2 0 0 1-2 2h-4.1l-3.7 3.71c-.2.18-.44.29-.7.29H9a1 1 0 0 1-1-1v-3H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2"/></svg>���������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-text-multiple-outline.svg����������0000664�0000000�0000000�00000000436�14753064456�0032065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 23a1 1 0 0 1-1-1v-3H7a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-4.1l-3.7 3.71c-.2.18-.44.29-.7.29zm1-6v3.08L16.08 17H21V7H7v10zM3 15H1V3a2 2 0 0 1 2-2h16v2H3zm6-6h10v2H9zm0 4h8v2H9z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-text-multiple.svg������������������0000664�0000000�0000000�00000000400�14753064456�0030377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 15H1V3a2 2 0 0 1 2-2h16v2H3zm9 8a1 1 0 0 1-1-1v-3H7a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-4.1l-3.7 3.71c-.2.18-.44.29-.7.29zM9 9v2h10V9zm0 4v2h8v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-text-outline.svg�������������������0000664�0000000�0000000�00000000376�14753064456�0030237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 22a1 1 0 0 1-1-1v-3H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6.1l-3.7 3.71c-.2.19-.45.29-.7.29zm1-6v3.08L13.08 16H20V4H4v12zM6 7h12v2H6zm0 4h9v2H6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment-text.svg���������������������������0000664�0000000�0000000�00000000356�14753064456�0026560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 22a1 1 0 0 1-1-1v-3H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6.1l-3.7 3.71c-.2.19-.45.29-.7.29zM5 5v2h14V5zm0 4v2h8V9zm0 4v2h10v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/comment.svg��������������������������������0000664�0000000�0000000�00000000312�14753064456�0025566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 22a1 1 0 0 1-1-1v-3H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6.1l-3.7 3.71c-.2.19-.45.29-.7.29z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/compare-horizontal.svg���������������������0000664�0000000�0000000�00000000172�14753064456�0027745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 14H2v2h7v3l4-4-4-4zm6-1v-3h7V8h-7V5l-4 4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/compare-remove.svg�������������������������0000664�0000000�0000000�00000000510�14753064456�0027045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 5h-5V3h5c1.1 0 2 .9 2 2v8.4c-.6-.2-1.3-.4-2-.4zm-9-4h2v22h-2v-2H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h5zm0 11-5 6h5zm5.7 2L14 12v3.7c.4-.7 1-1.2 1.7-1.7m5.4 1.5L19 17.6l-2.1-2.1-1.4 1.4 2.1 2.1-2.1 2.1 1.4 1.4 2.1-2.1 2.1 2.1 1.4-1.4-2.1-2.1 2.1-2.1z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/compare-vertical.svg�����������������������0000664�0000000�0000000�00000000174�14753064456�0027367�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 15v7h2v-7h3l-4-4-4 4zm-1-6h-3V2H8v7H5l4 4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/compare.svg��������������������������������0000664�0000000�0000000�00000000305�14753064456�0025554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-5v2h5v13l-5-6v9h5a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-9 15H5l5-6m0-9H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h5v2h2V1h-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/compass-off-outline.svg��������������������0000664�0000000�0000000�00000000711�14753064456�0030021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m1 3.5 1.28-1.25 19.47 19.47L20.5 23l-2.8-2.78A10 10 0 0 1 12 22 10 10 0 0 1 2 12c0-2.12.66-4.08 1.78-5.7zM7 17l2.39-5.09-4.16-4.17A8.03 8.03 0 0 0 4 12a8 8 0 0 0 8 8c1.56 0 3-.45 4.26-1.23l-4.17-4.16zM17 7l-2.38 5.05-2.67-2.67zm-5-5a10 10 0 0 1 10 10c0 2.1-.65 4.06-1.76 5.67l-1.44-1.45C19.56 15 20 13.55 20 12a8 8 0 0 0-8-8c-1.55 0-3 .44-4.22 1.2L6.33 3.76A9.97 9.97 0 0 1 12 2"/></svg>�������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/compass-off.svg����������������������������0000664�0000000�0000000�00000000456�14753064456�0026352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m1 3.5 1.28-1.25 19.47 19.47L20.5 23l-2.8-2.78A10 10 0 0 1 12 22 10 10 0 0 1 2 12c0-2.12.66-4.08 1.78-5.7zM6 18l6.47-3L9 11.53zM18 6l-6.44 3-5.23-5.24A9.97 9.97 0 0 1 12 2a10 10 0 0 1 10 10c0 2.1-.65 4.06-1.76 5.67L15 12.44z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/compass-outline.svg������������������������0000664�0000000�0000000�00000000466�14753064456�0027260�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7 17 3.2-6.8L17 7l-3.2 6.8zm5-5.9a.9.9 0 0 0-.9.9.9.9 0 0 0 .9.9.9.9 0 0 0 .9-.9.9.9 0 0 0-.9-.9M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/compass-rose.svg���������������������������0000664�0000000�0000000�00000000426�14753064456�0026545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15 9-3-9-3 9-9 3 9 3 3 9 3-9 9-3zM4 12l6-2 1 2zm8 8-2-6 2-1zm0-16 2 6-2 1zm2 10-1-2h7zm-5.3 3.3L5 19l1.7-3.7 1.6.5zm8.6-2L19 19l-3.7-1.7.5-1.6zM6.7 8.7 5 5l3.7 1.7-.5 1.5zm8.6-2L19 5l-1.7 3.7-1.6-.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/compass.svg��������������������������������0000664�0000000�0000000�00000000427�14753064456�0025600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.19 14.19 6 18l3.81-8.19L18 6m-6-4A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 8.9a1.1 1.1 0 0 0-1.1 1.1 1.1 1.1 0 0 0 1.1 1.1 1.1 1.1 0 0 0 1.1-1.1 1.1 1.1 0 0 0-1.1-1.1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/compost.svg��������������������������������0000664�0000000�0000000�00000001063�14753064456�0025614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.92 14a6.98 6.98 0 0 1-2.96 4.76c-.2-.83-1.43-1.51-3.04-1.7.17-1.19.52-2.3.76-2.94.38.24.82.38 1.32.38 3.55 0 3-6 3-6s-.5 1-2 1h-1a2.5 2.5 0 0 0-2.13 3.81c.66-.69 1.37-1.31 2.13-1.81-1.32 1.33-2.33 3-3 4.6-.63-1.23-1.42-2.17-2-2.6.47.2.91.5 1.33.8.11-.24.17-.51.17-.8C11.45 10.77 7 11 7 11c.31.42.5.95.5 1.5v1c0 1.1.9 2 2 2 .5 0 .95-.18 1.3-.5.23.63.4 1.35.49 2.04-1.72.15-3.04.85-3.25 1.73C6.21 17.5 5 15.39 5 13c0-3.86 3.14-7 7-7v3l5-4-5-4v3a9 9 0 0 0 0 18c4.63 0 8.44-3.5 8.94-8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cone-off.svg�������������������������������0000664�0000000�0000000�00000000745�14753064456�0025632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 7.31 9.06 5.86l2.09-3.39A.99.99 0 0 1 12 2c.33 0 .66.16.85.5l8.77 14.18a2.48 2.48 0 0 1 .28 2.02l-4.17-4.17c.08.02.17.03.27.05L12 4.9zm11.61 14.15-1.27 1.27-1.67-1.67c-2.14.77-5.06.94-7.17.94-8.7 0-10-2.5-10-4 0-.5.15-.96.4-1.35h-.02L7.11 9l-6-6 1.28-1.27zM6 14.6c1.96-.48 4.25-.6 6-.6h.11l-3.55-3.55zm11.55 4.84-3.36-3.36C13.5 16.03 12.76 16 12 16c-4.42 0-8 .9-8 2s3.58 2 8 2c2.16 0 4.11-.21 5.55-.56"/></svg>���������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cone.svg�����������������������������������0000664�0000000�0000000�00000000550�14753064456�0025054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.62 16.68 12.85 2.5A.96.96 0 0 0 12 2a.99.99 0 0 0-.85.47L2.38 16.65h.02c-.25.39-.4.85-.4 1.35 0 1.5 1.3 4 10 4 3.74 0 10-.5 10-4 0-.39-.09-.85-.38-1.32M12 4.9l6 9.68c-1.47-.35-3.4-.58-6-.58-1.75 0-4.04.12-6 .6zM12 20c-4.42 0-8-.89-8-2 0-1.1 3.58-2 8-2s8 .9 8 2c0 1.11-3.58 2-8 2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/connection.svg�����������������������������0000664�0000000�0000000�00000000513�14753064456�0026266�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.4 7.5c.8.8.8 2.1 0 2.8l-2.8 2.8-7.8-7.8 2.8-2.8c.8-.8 2.1-.8 2.8 0l1.8 1.8 3-3 1.4 1.4-3 3zm-5.8 5.8-1.4-1.4-2.8 2.8-2.1-2.1 2.8-2.8-1.4-1.4-2.8 2.8-1.5-1.4-2.8 2.8c-.8.8-.8 2.1 0 2.8l1.8 1.8-4 4 1.4 1.4 4-4 1.8 1.8c.8.8 2.1.8 2.8 0l2.8-2.8-1.4-1.4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/console-line.svg���������������������������0000664�0000000�0000000�00000000234�14753064456�0026516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19v-3h8v3zm-4.5-6L2.47 7h4.24l4.96 4.95c.58.59.58 1.55 0 2.12L6.74 19H2.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/console-network-outline.svg����������������0000664�0000000�0000000�00000000517�14753064456�0030741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 20a1 1 0 0 0-1-1h-1v-2h4a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h4v2h-1a1 1 0 0 0-1 1H2v2h7a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1h7v-2zm-8-5V5h10v10zm1-8.11 3.56 3.56L8 14h2.53l2.92-2.92c.33-.34.33-.9 0-1.26L10.5 6.89zm8 5.33h-2.67V14H16z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/console-network.svg������������������������0000664�0000000�0000000�00000000457�14753064456�0027267�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 3a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-4v2h1a1 1 0 0 1 1 1h7v2h-7a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1H2v-2h7a1 1 0 0 1 1-1h1v-2H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zM7 7l4 4-4 4h2.85l3.28-3.28c.37-.39.37-1.02 0-1.42L9.83 7zm10 6h-3v2h3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/console.svg��������������������������������0000664�0000000�0000000�00000000356�14753064456�0025576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 19V7H4v12zm0-16a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm-7 14v-2h5v2zm-3.42-4L5.57 9H8.4l3.3 3.3c.39.39.39 1.03 0 1.42L8.42 17H5.59z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/consolidate.svg����������������������������0000664�0000000�0000000�00000000354�14753064456�0026436�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 9h2V4h2v5a2 2 0 0 1-2 2h-2v2l-3-3 3-3m-4 3a2 2 0 1 0-2 2 2 2 0 0 0 2-2M2 11v5h2v-5h2v2l3-3-3-3v2H4a2 2 0 0 0-2 2m13 5-3-3-3 3h2v2a2 2 0 0 0 2 2h5v-2h-5v-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/contactless-payment-circle-outline.svg�����0000664�0000000�0000000�00000001064�14753064456�0033042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2M8.43 14.44l-1.36-.61c.28-.56.43-1.16.43-1.78 0-.66-.15-1.29-.43-1.88l1.36-.61Q9 10.775 9 12.05c0 .75-.19 1.55-.57 2.39m3.1 1.5-1.31-.65c.53-1.13.78-2.29.78-3.43 0-1.13-.25-2.17-.78-3.15l1.31-.75c.66 1.16.97 2.46.97 3.9 0 1.47-.31 2.83-.97 4.08m3.15 1.41-1.37-.7c.79-1.54 1.19-3.08 1.19-4.65s-.4-3.13-1.19-4.69l1.37-.66C15.55 8.43 16 10.22 16 12c0 1.82-.45 3.6-1.32 5.35"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/contactless-payment-circle.svg�������������0000664�0000000�0000000�00000000774�14753064456�0031374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2M8.43 14.44l-1.36-.61c.28-.56.43-1.16.43-1.78 0-.66-.15-1.29-.43-1.88l1.36-.61Q9 10.775 9 12.05c0 .75-.19 1.55-.57 2.39m3.1 1.5-1.31-.65c.53-1.13.78-2.29.78-3.43 0-1.13-.25-2.17-.78-3.15l1.31-.75c.66 1.16.97 2.46.97 3.9 0 1.47-.31 2.83-.97 4.08m3.15 1.41-1.37-.7c.79-1.54 1.19-3.08 1.19-4.65s-.4-3.13-1.19-4.69l1.37-.66C15.55 8.43 16 10.22 16 12c0 1.82-.45 3.6-1.32 5.35"/></svg>����mkdocs-material-9.6.4/material/templates/.icons/material/contactless-payment.svg��������������������0000664�0000000�0000000�00000002065�14753064456�0030130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.79 23c-.42-.17-.72-.55-.79-1-.05-.26 0-.44.4-1.16 1.5-2.7 2.27-5.75 2.23-8.84.04-3-.69-5.93-2.13-8.56-.21-.44-.4-.86-.56-1.31.06-.38.25-.73.56-.94.45-.24 1-.19 1.41.09.28.36.52.72.72 1.14A21.4 21.4 0 0 1 20.8 9c.23 1.81.26 3.65.09 5.47-.31 2.34-1 4.6-2.06 6.71-.64 1.28-1 1.82-1.38 1.82h-.66m-4.36-2.21c-.57-.16-.93-.74-.81-1.32 0-.12.31-.67.59-1.23 1.18-2.27 1.69-4.83 1.46-7.38-.14-1.83-.67-3.61-1.54-5.22-.63-1.26-.67-1.46-.3-2 .44-.49 1.17-.56 1.71-.14.72 1.06 1.29 2.22 1.71 3.44 1.28 3.79 1.08 7.92-.56 11.56-.84 1.89-1.43 2.5-2.26 2.24zm-4.5-2.23a1.31 1.31 0 0 1-.73-.86c0-.2 0-.46.45-1.26a8.99 8.99 0 0 0 0-8.68C7 6.5 7 6.24 7.53 5.76c.19-.22.47-.33.77-.29.64 0 1 .31 1.54 1.44A10.5 10.5 0 0 1 11.12 12c.04 1.81-.4 3.61-1.27 5.2-.54 1.05-.81 1.3-1.35 1.39-.19.02-.39 0-.57-.09zm-4.21-2.13c-.33-.16-.59-.43-.72-.78-.1-.35 0-.65.4-1.29.5-.68.74-1.52.69-2.36.07-.85-.16-1.69-.65-2.39A6 6 0 0 1 3 8.82c-.11-.63.31-1.23 1-1.35.54-.1.92.13 1.42.89a6.62 6.62 0 0 1 0 7.27c-.51.77-1.09 1-1.69.8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/contacts-outline.svg�����������������������0000664�0000000�0000000�00000000565�14753064456�0027431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2m0 14H4V6h16zM4 0h16v2H4m0 20h16v2H4m8-12a2.5 2.5 0 0 0 0-5 2.5 2.5 0 0 0 0 5m0-3.5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m5 7.5c0-2.1-3.31-3-5-3s-5 .9-5 3v1h10zm-8.19-.5c.61-.5 2.03-1 3.19-1 1.17 0 2.59.5 3.2 1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/contacts.svg�������������������������������0000664�0000000�0000000�00000000510�14753064456�0025742�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 0H4v2h16zM4 24h16v-2H4zM20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m-8 2.75A2.25 2.25 0 0 1 14.25 9 2.25 2.25 0 0 1 12 11.25 2.25 2.25 0 0 1 9.75 9 2.25 2.25 0 0 1 12 6.75M17 17H7v-1.5c0-1.67 3.33-2.5 5-2.5s5 .83 5 2.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/contain-end.svg����������������������������0000664�0000000�0000000�00000000213�14753064456�0026323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 17v-2h2v2zm4 0v-2h2v2zm4 0v-2h2v2zm7-14v18h-6v-2h4V5h-4V3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/contain-start.svg��������������������������0000664�0000000�0000000�00000000207�14753064456�0026715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3h6v2H4v14h4v2H2zm5 14v-2h2v2zm4 0v-2h2v2zm4 0v-2h2v2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/contain.svg��������������������������������0000664�0000000�0000000�00000000237�14753064456�0025565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3h6v2H4v14h4v2H2zm5 14v-2h2v2zm4 0v-2h2v2zm4 0v-2h2v2zm7-14v18h-6v-2h4V5h-4V3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/content-copy.svg���������������������������0000664�0000000�0000000�00000000301�14753064456�0026544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 21H8V7h11m0-2H8a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h11a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2m-3-4H4a2 2 0 0 0-2 2v14h2V3h12z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/content-cut.svg����������������������������0000664�0000000�0000000�00000000776�14753064456�0026405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19 3-6 6 2 2 7-7V3m-10 9.5a.5.5 0 0 1-.5-.5.5.5 0 0 1 .5-.5.5.5 0 0 1 .5.5.5.5 0 0 1-.5.5M6 20a2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2M6 8a2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2m3.64-.36c.23-.5.36-1.05.36-1.64a4 4 0 0 0-4-4 4 4 0 0 0-4 4 4 4 0 0 0 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1z"/></svg>��mkdocs-material-9.6.4/material/templates/.icons/material/content-duplicate.svg����������������������0000664�0000000�0000000�00000000342�14753064456�0027551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 17H4a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h12v2H4v12h7v-2l4 3-4 3zm8 4V7H8v6H6V7a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2v-2h2v2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/content-paste.svg��������������������������0000664�0000000�0000000�00000000416�14753064456�0026715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 20H5V4h2v3h10V4h2m-7-2a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m7 0h-4.18C14.4.84 13.3 0 12 0S9.6.84 9.18 2H5a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/content-save-alert-outline.svg�������������0000664�0000000�0000000�00000000372�14753064456�0031322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7zm2 16H3V5h11.2L17 7.8zm-7-7c-1.7 0-3 1.3-3 3s1.3 3 3 3 3-1.3 3-3-1.3-3-3-3M4 6h9v4H4zm19 7h-2V7h2zm0 4h-2v-2h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/content-save-alert.svg���������������������0000664�0000000�0000000�00000000346�14753064456�0027646�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9H3V5h10m-3 14c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3m5-16H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7zm8 10h-2V7h2zm0 4h-2v-2h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/content-save-all-outline.svg���������������0000664�0000000�0000000�00000000404�14753064456�0030757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 7h2v14h14v2H3a2 2 0 0 1-2-2zm18-6H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V5zm2 16H7V3h11.17L21 5.83zm-7-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3M8 4h9v4H8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/content-save-all.svg�����������������������0000664�0000000�0000000�00000000362�14753064456�0027305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 7V3H7v4zm-3 10a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m5-16 4 4v12a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2zM1 7h2v14h14v2H3a2 2 0 0 1-2-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/content-save-check-outline.svg�������������0000664�0000000�0000000�00000000530�14753064456�0031264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 12.8c-.5-.49-1.22-.8-2-.8a2.996 2.996 0 0 0-1 5.82 6.03 6.03 0 0 1 3-5.02M11.09 19H5V5h11.17L19 7.83v4.52c.75.26 1.42.65 2 1.19V7l-4-4H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6.81c-.35-.61-.6-1.28-.72-2M6 10h9V6H6zm9.75 11L13 18l1.16-1.16 1.59 1.59 3.59-3.59 1.16 1.41z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/content-save-check.svg���������������������0000664�0000000�0000000�00000000500�14753064456�0027604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 3H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h6.81c-.39-.66-.64-1.4-.74-2.16a2.994 2.994 0 0 1-1.87-3.81C9.61 13.83 10.73 13 12 13c.44 0 .88.1 1.28.29 2.29-1.79 5.55-1.7 7.72.25V7zm-2 6H5V5h10zm.75 12L13 18l1.16-1.16 1.59 1.59 3.59-3.59 1.16 1.41z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/content-save-cog-outline.svg���������������0000664�0000000�0000000�00000001334�14753064456�0030762�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.1 19c.1.7.3 1.4.6 2H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h12l4 4v4.7c-.6-.3-1.3-.5-2-.6V7.8L16.2 5H5v14zm.9-7c-1.7 0-3 1.3-3 3 0 1.3.8 2.4 2 2.8.1-2.2 1.1-4.1 2.7-5.3-.5-.3-1.1-.5-1.7-.5m3-2V6H6v4zm7.8 9.6-1 1.7c-.1.1-.2.1-.3.1l-1.2-.4c-.3.2-.5.3-.8.5l-.2 1.3c0 .1-.1.2-.2.2h-2c-.1 0-.2-.1-.3-.2l-.2-1.3c-.3-.1-.6-.3-.8-.5l-1.2.5c-.1 0-.2 0-.3-.1l-1-1.7c-.1-.1 0-.2.1-.3l1.1-.8v-1l-1.1-.8c-.1-.1-.1-.2-.1-.3l1-1.7c.1-.1.2-.1.3-.1l1.2.5c.3-.2.5-.3.8-.5l.2-1.3c0-.1.1-.2.3-.2h2c.1 0 .2.1.2.2l.2 1.3c.3.1.6.3.9.5l1.2-.5c.1 0 .3 0 .3.1l1 1.7c.1.1 0 .2-.1.3l-1.1.8v1l1.1.8c.1 0 .1.1 0 .2M19.5 18c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5.7 1.5 1.5 1.5 1.5-.7 1.5-1.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/content-save-cog.svg�����������������������0000664�0000000�0000000�00000001275�14753064456�0027311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11.7V7l-4-4H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h6.7c-.3-.7-.5-1.4-.6-2.2C9.9 18.4 9 17.3 9 16c0-1.7 1.3-3 3-3 .3 0 .6.1.9.2C14.2 11.8 16 11 18 11c1.1 0 2.1.2 3 .7M15 9H5V5h10zm6.7 9.6v-1l1.1-.8c.1-.1.2-.2.1-.3l-1-1.7c0-.1-.2-.1-.3-.1l-1.2.5c-.3-.2-.6-.4-.9-.5l-.2-1.3c0-.1-.1-.2-.2-.2h-2c-.2 0-.3.1-.3.2l-.2 1.3c-.3.2-.5.3-.8.5l-1.2-.5c-.1 0-.2 0-.3.1l-1 1.7c0 .1 0 .2.1.3l1.1.8v1l-1.1.8c-.1.1-.2.2-.1.3l1 1.7c.1.1.2.1.3.1l1.2-.5c.2.2.5.4.8.5l.2 1.3c.1.1.2.2.3.2h2c.1 0 .2-.1.2-.2l.2-1.3c.3-.2.5-.3.8-.5l1.2.4c.1 0 .2 0 .3-.1l1-1.7c.1-.1.1-.2 0-.2zm-3.7.9c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/content-save-edit-outline.svg��������������0000664�0000000�0000000�00000000543�14753064456�0031140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 19h6v2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h12l4 4v2.12l-2 2V7.83L15.17 5H4zm10-9V6H5v4zm6.42 2.3a.53.53 0 0 0-.38-.17c-.14 0-.28.06-.39.17l-1 1 2.05 2.05 1-1c.22-.21.22-.56 0-.77zM12 19.94V22h2.06l6.06-6.07-2.05-2.05zM14 15c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3h.13L14 15.13z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/content-save-edit.svg����������������������0000664�0000000�0000000�00000000541�14753064456�0027461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10 19 .14-.14A2.97 2.97 0 0 1 8 16a3 3 0 0 1 3-3c1.36 0 2.5.9 2.86 2.14L20 9V7l-4-4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6zM4 5h10v4H4zm16.04 7.13c-.14 0-.28.06-.39.17l-1 1 2.05 2.05 1-1c.22-.21.22-.56 0-.77l-1.28-1.28a.53.53 0 0 0-.38-.17m-1.97 1.75L12 19.94V22h2.06l6.06-6.07z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/content-save-minus-outline.svg�������������0000664�0000000�0000000�00000000451�14753064456�0031344�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.81c-.36-.62-.61-1.3-.73-2H5V5h11.17L19 7.83v4.25c.7.12 1.38.37 2 .73V7l-4-4zm1 3v4h9V6zm6 6c-1.66 0-3 1.34-3 3s1.34 3 3 3c0-1.89.89-3.66 2.39-4.79C13.85 12.5 13 12 12 12m2 5v2h8v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/content-save-minus.svg���������������������0000664�0000000�0000000�00000000417�14753064456�0027671�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.81c-.36-.62-.61-1.3-.73-2H12c-1.66 0-3-1.34-3-3s1.34-3 3-3c.68 0 1.34.23 1.87.65A6.02 6.02 0 0 1 18 12c1.05 0 2.09.28 3 .81V7zm-2 6H5V5h10zm-1 8v2h8v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/content-save-move-outline.svg��������������0000664�0000000�0000000�00000000475�14753064456�0031165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 17h4v-3l5 4.5-5 4.5v-3h-4zm1-4.2c-.5-.49-1.22-.8-2-.8a2.996 2.996 0 0 0-1 5.82 6.03 6.03 0 0 1 3-5.02M11.09 19H5V5h11.17L19 7.83v4.52c.75.26 1.42.65 2 1.19V7l-4-4H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6.81c-.35-.61-.6-1.28-.72-2M6 10h9V6H6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/content-save-move.svg����������������������0000664�0000000�0000000�00000000445�14753064456�0027505�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6.81c-.39-.66-.64-1.4-.74-2.16a2.994 2.994 0 0 1-1.87-3.81C9.61 13.83 10.73 13 12 13c.44 0 .88.1 1.28.29 2.29-1.79 5.55-1.7 7.72.25V7zm-2 6H5V5h10zm-2 8h4v-3l5 4.5-5 4.5v-3h-4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/content-save-off-outline.svg���������������0000664�0000000�0000000�00000000420�14753064456�0030757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.2 5-2-2H17l4 4v10.8l-2-2V7.83L16.17 5zm6.8 5V6H9.2l4 4zm7.11 11.46-1.27 1.27L19.1 21H5a2 2 0 0 1-2-2V4.9L1.11 3l1.28-1.27zm-5-2.46-2.52-2.5a2.996 2.996 0 1 1-4.09-4.09L8.11 10H6V7.89l-1-1V19z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/content-save-off.svg�����������������������0000664�0000000�0000000�00000000436�14753064456�0027311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.2 5-2-2H17l4 4v10.8L12.2 9H15V5zm13.91 16.46-1.27 1.27L19.1 21H5a2 2 0 0 1-2-2V4.9L1.11 3l1.28-1.27zM7.11 9 5 6.89V9zm7.78 7.78-3.67-3.67C9.95 13.46 9 14.61 9 16c0 1.66 1.34 3 3 3 1.39 0 2.54-.95 2.89-2.22"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/content-save-outline.svg�������������������0000664�0000000�0000000�00000000345�14753064456�0030215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V7zm2 16H5V5h11.17L19 7.83zm-7-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3M6 6h9v4H6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/content-save-plus-outline.svg��������������0000664�0000000�0000000�00000000475�14753064456�0031202�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.81c-.36-.62-.61-1.3-.73-2H5V5h11.17L19 7.83v4.25c.7.12 1.38.37 2 .73V7l-4-4zm1 3v4h9V6zm6 6c-1.66 0-3 1.34-3 3s1.34 3 3 3c0-1.89.89-3.66 2.39-4.79C13.85 12.5 13 12 12 12m5 2v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/content-save-plus.svg����������������������0000664�0000000�0000000�00000000442�14753064456�0027517�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.81c-.36-.62-.61-1.3-.73-2H12c-1.66 0-3-1.34-3-3s1.34-3 3-3c.68 0 1.34.23 1.87.65A6.02 6.02 0 0 1 18 12c1.05 0 2.09.28 3 .81V7zm-2 6H5V5h10zm2 5v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/content-save-settings-outline.svg����������0000664�0000000�0000000�00000000411�14753064456�0032045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 22h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zm2-20H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V6zm2 16H5V4h11.17L19 6.83zm-7-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3M6 5h9v4H6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/content-save-settings.svg������������������0000664�0000000�0000000�00000000371�14753064456�0030375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 8V4H5v4zm-3 10a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m5-16 4 4v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm-6 20h2v2h-2zm-4 0h2v2H7zm8 0h2v2h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/content-save.svg���������������������������0000664�0000000�0000000�00000000322�14753064456�0026533�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 9H5V5h10m-3 14a3 3 0 0 1-3-3 3 3 0 0 1 3-3 3 3 0 0 1 3 3 3 3 0 0 1-3 3m5-16H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/contrast-box.svg���������������������������0000664�0000000�0000000�00000000326�14753064456�0026554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 15.5h-5V17h5m2 2H5L19 5M5.5 7.5h2v-2H9v2h2V9H9v2H7.5V9h-2M19 3H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/contrast-circle.svg������������������������0000664�0000000�0000000�00000000430�14753064456�0027221�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20c-2.21 0-4.21-.9-5.66-2.34L17.66 6.34A8.01 8.01 0 0 1 20 12a8 8 0 0 1-8 8M6 8h2V6h1.5v2h2v1.5h-2v2H8v-2H6M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 14h5v-1.5h-5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/contrast.svg�������������������������������0000664�0000000�0000000�00000000265�14753064456�0025770�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.38 20.9a2 2 0 0 1-1.28-1.27L19.63 3.1a2 2 0 0 1 1.27 1.28zM20 16v2h-7v-2zM3 6h3V3h2v3h3v2H8v3H6V8H3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/controller-classic-outline.svg�������������0000664�0000000�0000000�00000001047�14753064456�0031411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.5 7a5.5 5.5 0 0 1 5.5 5.5 5.5 5.5 0 0 1-5.5 5.5c-1.71 0-3.23-.78-4.24-2h-2.52c-1.01 1.22-2.53 2-4.24 2A5.5 5.5 0 0 1 1 12.5 5.5 5.5 0 0 1 6.5 7zm-11 2A3.5 3.5 0 0 0 3 12.5 3.5 3.5 0 0 0 6.5 16c1.4 0 2.6-.82 3.16-2h4.68c.56 1.18 1.76 2 3.16 2a3.5 3.5 0 0 0 3.5-3.5A3.5 3.5 0 0 0 17.5 9zm-.75 1.25h1.5v1.5h1.5v1.5h-1.5v1.5h-1.5v-1.5h-1.5v-1.5h1.5zm11 2.25a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m2-2a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/controller-classic.svg���������������������0000664�0000000�0000000�00000000666�14753064456�0027742�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 7h12a5 5 0 0 1 5 5 5 5 0 0 1-5 5c-1.64 0-3.09-.79-4-2h-4c-.91 1.21-2.36 2-4 2a5 5 0 0 1-5-5 5 5 0 0 1 5-5m13.75 2.5a1.25 1.25 0 0 0-1.25 1.25A1.25 1.25 0 0 0 19.75 12 1.25 1.25 0 0 0 21 10.75a1.25 1.25 0 0 0-1.25-1.25m-2.5 2.5A1.25 1.25 0 0 0 16 13.25a1.25 1.25 0 0 0 1.25 1.25 1.25 1.25 0 0 0 1.25-1.25A1.25 1.25 0 0 0 17.25 12M5 9v2H3v2h2v2h2v-2h2v-2H7V9z"/></svg>��������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/controller-off.svg�������������������������0000664�0000000�0000000�00000001222�14753064456�0027060�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5.27 3.28 4 20 20.72 18.73 22l-6-6H7.97L5 19c-.33.3-.77.5-1.25.5A1.75 1.75 0 0 1 2 17.75v-.25l1-7.38c.1-1.03.53-1.95 1.19-2.66zM5 10v1h2v2h1v-1.73L6.73 10zm11.5-4c2.36 0 4.29 1.81 4.5 4.12l1 7.38v.25c0 .66-.36 1.25-.9 1.53L7.82 6zm0 2a.75.75 0 0 0-.75.75.75.75 0 0 0 .75.75.75.75 0 0 0 .75-.75.75.75 0 0 0-.75-.75m-1.75 1.75a.75.75 0 0 0-.75.75.75.75 0 0 0 .75.75.75.75 0 0 0 .75-.75.75.75 0 0 0-.75-.75m3.5 0a.75.75 0 0 0-.75.75.75.75 0 0 0 .75.75.75.75 0 0 0 .75-.75.75.75 0 0 0-.75-.75M16.5 11.5a.75.75 0 0 0-.75.75.75.75 0 0 0 .75.75.75.75 0 0 0 .75-.75.75.75 0 0 0-.75-.75"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/controller.svg�����������������������������0000664�0000000�0000000�00000001205�14753064456�0026311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.97 16 5 19c-.33.3-.77.5-1.25.5A1.75 1.75 0 0 1 2 17.75v-.25l1-7.38A4.524 4.524 0 0 1 7.5 6h9c2.36 0 4.29 1.81 4.5 4.12l1 7.38v.25a1.75 1.75 0 0 1-1.75 1.75c-.48 0-.92-.2-1.25-.5l-2.97-3zM7 8v2H5v1h2v2h1v-2h2v-1H8V8zm9.5 0a.75.75 0 0 0-.75.75.75.75 0 0 0 .75.75.75.75 0 0 0 .75-.75.75.75 0 0 0-.75-.75m-1.75 1.75a.75.75 0 0 0-.75.75.75.75 0 0 0 .75.75.75.75 0 0 0 .75-.75.75.75 0 0 0-.75-.75m3.5 0a.75.75 0 0 0-.75.75.75.75 0 0 0 .75.75.75.75 0 0 0 .75-.75.75.75 0 0 0-.75-.75M16.5 11.5a.75.75 0 0 0-.75.75.75.75 0 0 0 .75.75.75.75 0 0 0 .75-.75.75.75 0 0 0-.75-.75"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cookie-alert-outline.svg�������������������0000664�0000000�0000000�00000001315�14753064456�0030163�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 14.5c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5.7-1.5 1.5-1.5 1.5.7 1.5 1.5m2.9-4c.1.5.1 1 .1 1.5 0 5-4 9-9 9s-9-4-9-9 4-9 9-9c0 0 1 0 1 1v2h1s1 0 1 1v1h2s1 0 1 1v1h2s.6 0 .9.5M17 12h-1.5c-.8 0-1.5-.7-1.5-1.5V10h-1.5c-.8 0-1.5-.7-1.5-1.5V8h-.5C9.7 8 9 7.3 9 6.5V5.1c-3.1.4-5.5 2.9-5.9 6 .1-.6.7-1.1 1.4-1.1.8 0 1.5.7 1.5 1.5S5.3 13 4.5 13s-1.4-.6-1.5-1.4c0 .5 0 1 .1 1.5.4 2.7 2.5 4.9 5.1 5.6-.4-.3-.7-.7-.7-1.2 0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5c0 .7-.5 1.3-1.2 1.5 4.2.4 7.7-2.9 7.7-7m-7.5-1c-.8 0-1.5.7-1.5 1.5S8.7 14 9.5 14s1.5-.7 1.5-1.5-.7-1.5-1.5-1.5M9 7.5C9 6.7 8.3 6 7.5 6S6 6.7 6 7.5 6.7 9 7.5 9 9 8.3 9 7.5M21 17h2v-2h-2zm0-10v6h2V7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cookie-alert.svg���������������������������0000664�0000000�0000000�00000001053�14753064456�0026505�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 10h-2V9c0-1-1-1-1-1h-2V7c0-1-1-1-1-1h-1V4c0-1-1-1-1-1-5 0-9 4-9 9s4 9 9 9 9-4 9-9c0-.5 0-1-.1-1.5-.3-.5-.9-.5-.9-.5M4.5 13c-.8 0-1.5-.7-1.5-1.5S3.7 10 4.5 10s1.5.7 1.5 1.5S5.3 13 4.5 13M6 7.5C6 6.7 6.7 6 7.5 6S9 6.7 9 7.5 8.3 9 7.5 9 6 8.3 6 7.5M9 19c-.8 0-1.5-.7-1.5-1.5S8.2 16 9 16s1.5.7 1.5 1.5S9.8 19 9 19m.5-5c-.8 0-1.5-.7-1.5-1.5S8.7 11 9.5 11s1.5.7 1.5 1.5-.7 1.5-1.5 1.5m5 2c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5m6.5-1h2v2h-2zm2-8v6h-2V7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cookie-check-outline.svg�������������������0000664�0000000�0000000�00000001561�14753064456�0030134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 10h-.5c-.83 0-1.5-.67-1.5-1.5V8h-.5c-.83 0-1.5-.67-1.5-1.5V5.07C7.91 5.5 5.47 8 5.07 11.08A1.494 1.494 0 0 1 8 11.5c0 .83-.67 1.5-1.5 1.5-.79 0-1.43-.61-1.5-1.38 0 .49 0 .99.09 1.5.41 2.69 2.45 4.92 5.07 5.62A1.498 1.498 0 0 1 11 16c.83 0 1.5.67 1.5 1.5 0 .72-.5 1.32-1.18 1.46.58.04 1.14.04 1.68-.04V19c0 .66.12 1.3.32 1.89-.43.07-.87.11-1.32.11a9 9 0 0 1 0-18s1 0 1 1v2h1s1 0 1 1v1h2s1 0 1 1v1h2s.6 0 .87.5a8.4 8.4 0 0 1 .02 2.82c-.59-.2-1.23-.32-1.89-.32h-.08c.05-.32.08-.66.08-1h-1.5c-.83 0-1.5-.67-1.5-1.5V10zm0 4.5v.03c.66-.58 1.45-1.03 2.32-1.29-.24-.15-.52-.24-.82-.24-.83 0-1.5.67-1.5 1.5m-3.5-.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5M11 7.5c0-.83-.67-1.5-1.5-1.5S8 6.67 8 7.5 8.67 9 9.5 9 11 8.33 11 7.5m10.34 8.34-3.59 3.59-1.59-1.59L15 19l2.75 3 4.75-4.75z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cookie-check.svg���������������������������0000664�0000000�0000000�00000001274�14753064456�0026460�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 14.53v-.03c0-.83.67-1.5 1.5-1.5.3 0 .58.09.82.24A6.2 6.2 0 0 1 19 13c.66 0 1.3.12 1.89.32a8.444 8.444 0 0 0-.02-2.82C20.6 10 20 10 20 10h-2V9c0-1-1-1-1-1h-2V7c0-1-1-1-1-1h-1V4c0-1-1-1-1-1a9 9 0 0 0 0 18c.45 0 .89-.04 1.32-.11-.2-.59-.32-1.23-.32-1.89 0-1.78.78-3.37 2-4.47M6.5 13c-.83 0-1.5-.67-1.5-1.5S5.67 10 6.5 10s1.5.67 1.5 1.5S7.33 13 6.5 13M8 7.5C8 6.67 8.67 6 9.5 6s1.5.67 1.5 1.5S10.33 9 9.5 9 8 8.33 8 7.5M11 19c-.83 0-1.5-.67-1.5-1.5S10.17 16 11 16s1.5.67 1.5 1.5S11.83 19 11 19m.5-5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5m11 3.25L17.75 22 15 19l1.16-1.16 1.59 1.59 3.59-3.59z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cookie-clock-outline.svg�������������������0000664�0000000�0000000�00000001433�14753064456�0030150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.5 8C7.67 8 7 7.33 7 6.5S7.67 5 8.5 5s1.5.67 1.5 1.5S9.33 8 8.5 8m8 4H15v5l3.61 2.16.75-1.22-2.86-1.69zm6.5 4c0 3.87-3.13 7-7 7-2.39 0-4.5-1.2-5.77-3.04C5.62 19.57 2 15.71 2 11a9 9 0 0 1 9-9s1 0 1 1v2h1s1 0 1 1v1h2s1 0 1 1v1h2s.6 0 .87.5c.04.24.08.5.1.74A6.98 6.98 0 0 1 23 16M9.16 17.74c-.4-.27-.66-.74-.66-1.24 0-.46.21-.86.53-1.14.09-.91.35-1.77.75-2.55-.46-.26-.78-.75-.78-1.31 0-.83.67-1.5 1.5-1.5.46 0 .86.21 1.14.53.95-.76 2.1-1.27 3.36-1.45V9h-1.5c-.83 0-1.5-.67-1.5-1.5V7h-.5c-.83 0-1.5-.67-1.5-1.5V4.07C6.91 4.5 4.47 7 4.07 10.08A1.494 1.494 0 0 1 7 10.5c0 .83-.67 1.5-1.5 1.5-.79 0-1.43-.61-1.5-1.38 0 .49 0 .99.09 1.5.41 2.69 2.45 4.92 5.07 5.62M21 16c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cookie-clock.svg���������������������������0000664�0000000�0000000�00000001316�14753064456�0026473�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.97 10.24c-.02-.24-.06-.5-.1-.74C19.6 9 19 9 19 9h-2V8c0-1-1-1-1-1h-2V6c0-1-1-1-1-1h-1V3c0-1-1-1-1-1a9 9 0 0 0-9 9c0 4.71 3.62 8.57 8.23 8.96A7 7 0 0 0 16 23c3.87 0 7-3.13 7-7 0-2.39-1.2-4.5-3.03-5.76m-8.33.29c-.77.62-1.41 1.39-1.86 2.28-.46-.26-.78-.75-.78-1.31 0-.83.67-1.5 1.5-1.5.46 0 .86.21 1.14.53M5.5 12c-.83 0-1.5-.67-1.5-1.5S4.67 9 5.5 9 7 9.67 7 10.5 6.33 12 5.5 12M7 6.5C7 5.67 7.67 5 8.5 5s1.5.67 1.5 1.5S9.33 8 8.5 8 7 7.33 7 6.5m1.5 10c0-.46.21-.86.53-1.14-.03.21-.03.43-.03.64 0 .62.09 1.22.24 1.79-.44-.29-.74-.74-.74-1.29M16 21c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5m.5-4.75 2.86 1.69-.75 1.22L15 17v-5h1.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cookie-cog-outline.svg���������������������0000664�0000000�0000000�00000002203�14753064456�0027621�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.5 10c-.83 0-1.5-.67-1.5-1.5V8h-.5c-.83 0-1.5-.67-1.5-1.5V5.07C7.91 5.5 5.47 8 5.07 11.08A1.494 1.494 0 0 1 8 11.5c0 .83-.67 1.5-1.5 1.5-.79 0-1.43-.61-1.5-1.38 0 .49 0 .99.09 1.5.41 2.69 2.45 4.92 5.07 5.62A1.498 1.498 0 0 1 11 16c.59 0 1.1.35 1.34.84-.18.55-.28 1.13-.34 1.73-.17.19-.4.33-.68.39.23.04.46.04.68.04 0 .69.11 1.36.29 2H12a9 9 0 0 1 0-18s1 0 1 1v2h1s1 0 1 1v1h2s1 0 1 1v1h2s.6 0 .87.5c.09.5.13 1 .13 1.5v.29a7.4 7.4 0 0 0-2-.29h-1.5c-.83 0-1.5-.67-1.5-1.5V10zm-3 1c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5M11 7.5c0-.83-.67-1.5-1.5-1.5S8 6.67 8 7.5 8.67 9 9.5 9 11 8.33 11 7.5m12.8 12.9c.1 0 .1.1 0 .2l-1 1.7c-.1.1-.2.1-.3.1l-1.2-.4c-.3.2-.5.3-.8.5l-.2 1.3c0 .1-.1.2-.2.2h-2c-.1 0-.2-.1-.3-.2l-.2-1.3c-.3-.1-.6-.3-.8-.5l-1.2.5c-.1 0-.2 0-.3-.1l-1-1.7c-.1-.1 0-.2.1-.3l1.1-.8v-1l-1.1-.8c-.1-.1-.1-.2-.1-.3l1-1.7c.1-.1.2-.1.3-.1l1.2.5c.3-.2.5-.3.8-.5l.2-1.3c0-.1.1-.2.3-.2h2c.1 0 .2.1.2.2l.2 1.3c.3.1.6.3.9.5l1.2-.5c.1 0 .3 0 .3.1l1 1.7c.1.1 0 .2-.1.3l-1.1.8v1zM20.5 19c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5.7 1.5 1.5 1.5 1.5-.7 1.5-1.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cookie-cog.svg�����������������������������0000664�0000000�0000000�00000001747�14753064456�0026160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 12.29V12c0-.5-.04-1-.13-1.5C20.6 10 20 10 20 10h-2V9c0-1-1-1-1-1h-2V7c0-1-1-1-1-1h-1V4c0-1-1-1-1-1a9 9 0 0 0 0 18h.29a7.4 7.4 0 0 1-.29-2v-.41c-.25.25-.6.41-1 .41-.83 0-1.5-.67-1.5-1.5S10.17 16 11 16c.59 0 1.1.35 1.34.84A7 7 0 0 1 19 12c.69 0 1.36.11 2 .29M6.5 13c-.83 0-1.5-.67-1.5-1.5S5.67 10 6.5 10s1.5.67 1.5 1.5S7.33 13 6.5 13m3-4C8.67 9 8 8.33 8 7.5S8.67 6 9.5 6s1.5.67 1.5 1.5S10.33 9 9.5 9m2 5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5m11.2 5.6v-1l1.1-.8c.1-.1.2-.2.1-.3l-1-1.7c0-.1-.2-.1-.3-.1l-1.2.5c-.3-.2-.6-.4-.9-.5l-.2-1.3c0-.1-.1-.2-.2-.2h-2c-.2 0-.3.1-.3.2l-.2 1.3c-.3.2-.5.3-.8.5l-1.2-.5c-.1 0-.2 0-.3.1l-1 1.7c0 .1 0 .2.1.3l1.1.8v1l-1.1.8c-.1.1-.2.2-.1.3l1 1.7c.1.1.2.1.3.1l1.2-.5c.2.2.5.4.8.5l.2 1.3c.1.1.2.2.3.2h2c.1 0 .2-.1.2-.2l.2-1.3c.3-.2.5-.3.8-.5l1.2.4c.1 0 .2 0 .3-.1l1-1.7c.1-.1.1-.2 0-.2zm-3.7.9c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cookie-edit-outline.svg��������������������0000664�0000000�0000000�00000001600�14753064456�0027776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 6c.83 0 1.5.67 1.5 1.5S10.33 9 9.5 9 8 8.33 8 7.5 8.67 6 9.5 6m2 5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5m-.5 5a1.498 1.498 0 0 0-.84 2.74c-2.62-.7-4.66-2.93-5.07-5.62C5 12.61 5 12.11 5 11.62c.07.77.71 1.38 1.5 1.38.83 0 1.5-.67 1.5-1.5S7.33 10 6.5 10c-.68 0-1.25.46-1.43 1.08C5.47 8 7.91 5.5 11 5.07V6.5c0 .83.67 1.5 1.5 1.5h.5v.5c0 .83.67 1.5 1.5 1.5H16v.5c0 .83.67 1.5 1.5 1.5h.63l1.26-1.26c.3-.3.66-.5 1.05-.62C20.21 10 20 10 20 10h-2V9c0-1-1-1-1-1h-2V7c0-1-1-1-1-1h-1V4c0-1-1-1-1-1a9 9 0 0 0-9 9c0 4.63 3.5 8.44 8 8.94v-1.81l1.47-1.47c.03-.06.03-.11.03-.16 0-.83-.67-1.5-1.5-1.5m4-1.5c0 .19.04.36.1.53l1.93-1.93c-.17-.06-.34-.1-.53-.1-.83 0-1.5.67-1.5 1.5m7.85-1.03-1.32-1.32c-.2-.2-.53-.2-.72 0l-.98.98 2.04 2.04.98-.98c.2-.19.2-.52 0-.72M13 19.96V22h2.04l6.13-6.12-2.04-2.05z"/></svg>��������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cookie-edit.svg����������������������������0000664�0000000�0000000�00000001270�14753064456�0026324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.1 15.03c-.06-.17-.1-.34-.1-.53 0-.83.67-1.5 1.5-1.5.19 0 .36.04.53.1l2.36-2.36c.3-.3.66-.5 1.05-.62C20.21 10 20 10 20 10h-2V9c0-1-1-1-1-1h-2V7c0-1-1-1-1-1h-1V4c0-1-1-1-1-1a9 9 0 0 0-9 9c0 4.63 3.5 8.44 8 8.94v-1.81l.14-.13H11c-.83 0-1.5-.67-1.5-1.5S10.17 16 11 16s1.5.67 1.5 1.5v.14zM6.5 13c-.83 0-1.5-.67-1.5-1.5S5.67 10 6.5 10s1.5.67 1.5 1.5S7.33 13 6.5 13m3-4C8.67 9 8 8.33 8 7.5S8.67 6 9.5 6s1.5.67 1.5 1.5S10.33 9 9.5 9m2 5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5m11.35.19-.98.98-2.04-2.04.98-.98c.19-.2.52-.2.72 0l1.32 1.32c.2.2.2.53 0 .72m-3.72-.36 2.04 2.04L15.04 22H13v-2.04z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cookie-lock-outline.svg��������������������0000664�0000000�0000000�00000001577�14753064456�0030016�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 12.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5m6-2.5v.5c0 .4.16.76.41 1.03A4.5 4.5 0 0 1 18.5 11c.92 0 1.77.29 2.5.77 0-.42-.05-.85-.13-1.27C20.6 10 20 10 20 10h-2V9c0-1-1-1-1-1h-2V7c0-1-1-1-1-1h-1V4c0-1-1-1-1-1a9 9 0 0 0 0 18c.34 0 .67 0 1-.06v-2.02c-.54.08-1.1.08-1.68.04.68-.14 1.18-.74 1.18-1.46 0-.83-.67-1.5-1.5-1.5a1.498 1.498 0 0 0-.84 2.74c-2.62-.7-4.66-2.93-5.07-5.62C5 12.61 5 12.11 5 11.62c.07.77.71 1.38 1.5 1.38.83 0 1.5-.67 1.5-1.5S7.33 10 6.5 10c-.68 0-1.25.46-1.43 1.08C5.47 8 7.91 5.5 11 5.07V6.5c0 .83.67 1.5 1.5 1.5h.5v.5c0 .83.67 1.5 1.5 1.5zm-5-2.5c0-.83-.67-1.5-1.5-1.5S8 6.67 8 7.5 8.67 9 9.5 9 11 8.33 11 7.5M22 17v4c0 .55-.45 1-1 1h-5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1v-.5a2.5 2.5 0 0 1 5 0v.5c.55 0 1 .45 1 1m-2-1.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.5h3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cookie-lock.svg����������������������������0000664�0000000�0000000�00000001327�14753064456�0026332�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 11c.92 0 1.77.29 2.5.77 0-.42-.05-.85-.13-1.27C20.6 10 20 10 20 10h-2V9c0-1-1-1-1-1h-2V7c0-1-1-1-1-1h-1V4c0-1-1-1-1-1a9 9 0 0 0 0 18c.34 0 .67 0 1-.06V17c0-.92.42-1.74 1.07-2.29A4.51 4.51 0 0 1 18.5 11m-12 2c-.83 0-1.5-.67-1.5-1.5S5.67 10 6.5 10s1.5.67 1.5 1.5S7.33 13 6.5 13M8 7.5C8 6.67 8.67 6 9.5 6s1.5.67 1.5 1.5S10.33 9 9.5 9 8 8.33 8 7.5M11 19c-.83 0-1.5-.67-1.5-1.5S10.17 16 11 16s1.5.67 1.5 1.5S11.83 19 11 19m.5-5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5m9.5 2v-.5a2.5 2.5 0 0 0-5 0v.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1m-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cookie-minus-outline.svg�������������������0000664�0000000�0000000�00000001505�14753064456�0030210�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 10h-.5c-.83 0-1.5-.67-1.5-1.5V8h-.5c-.83 0-1.5-.67-1.5-1.5V5.07C7.91 5.5 5.47 8 5.07 11.08A1.494 1.494 0 0 1 8 11.5c0 .83-.67 1.5-1.5 1.5-.79 0-1.43-.61-1.5-1.38 0 .49 0 .99.09 1.5.41 2.69 2.45 4.92 5.07 5.62A1.498 1.498 0 0 1 11 16c.83 0 1.5.67 1.5 1.5 0 .72-.5 1.32-1.18 1.46.58.04 1.14.04 1.68-.04V19c0 .66.12 1.3.32 1.89-.43.07-.87.11-1.32.11a9 9 0 0 1 0-18s1 0 1 1v2h1s1 0 1 1v1h2s1 0 1 1v1h2s.6 0 .87.5a8.4 8.4 0 0 1 .02 2.82c-.59-.2-1.23-.32-1.89-.32h-.08c.05-.32.08-.66.08-1h-1.5c-.83 0-1.5-.67-1.5-1.5V10zm0 4.5v.03c.66-.58 1.45-1.03 2.32-1.29-.24-.15-.52-.24-.82-.24-.83 0-1.5.67-1.5 1.5m-4-7c0-.83-.67-1.5-1.5-1.5S8 6.67 8 7.5 8.67 9 9.5 9 11 8.33 11 7.5m.5 6.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5m3.5 4v2h8v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cookie-minus.svg���������������������������0000664�0000000�0000000�00000001225�14753064456�0026532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 14.53v-.03c0-.83.67-1.5 1.5-1.5.3 0 .58.09.82.24A6.2 6.2 0 0 1 19 13c.66 0 1.3.12 1.89.32a8.444 8.444 0 0 0-.02-2.82C20.6 10 20 10 20 10h-2V9c0-1-1-1-1-1h-2V7c0-1-1-1-1-1h-1V4c0-1-1-1-1-1a9 9 0 0 0 0 18c.45 0 .89-.04 1.32-.11-.2-.59-.32-1.23-.32-1.89 0-1.78.78-3.37 2-4.47M6.5 13c-.83 0-1.5-.67-1.5-1.5S5.67 10 6.5 10s1.5.67 1.5 1.5S7.33 13 6.5 13M8 7.5C8 6.67 8.67 6 9.5 6s1.5.67 1.5 1.5S10.33 9 9.5 9 8 8.33 8 7.5M11 19c-.83 0-1.5-.67-1.5-1.5S10.17 16 11 16s1.5.67 1.5 1.5S11.83 19 11 19m.5-5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5M23 18v2h-8v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cookie-off-outline.svg���������������������0000664�0000000�0000000�00000001635�14753064456�0027633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.93 5.73 7.45 4.25A8.9 8.9 0 0 1 12 3s1 0 1 1v2h1s1 0 1 1v1h2s1 0 1 1v1h2s.6 0 .87.5a8.896 8.896 0 0 1-1.12 6.05l-1.47-1.47c.46-.93.72-1.97.72-3.08h-1.5c-.83 0-1.5-.67-1.5-1.5V10h-1.5c-.83 0-1.5-.67-1.5-1.5V8h-.5c-.83 0-1.5-.67-1.5-1.5V5.07c-.74.11-1.43.34-2.07.66m.32.32 1.7 1.7c.02-.08.05-.16.05-.25 0-.83-.67-1.5-1.5-1.5-.09 0-.17.03-.25.05m7 7 1.7 1.7c.02-.08.05-.16.05-.25 0-.83-.67-1.5-1.5-1.5-.09 0-.17.03-.25.05m5.86 8.41-1.27 1.27-3.5-3.5A8.9 8.9 0 0 1 12 21a9 9 0 0 1-9-9c0-2 .66-3.85 1.77-5.34L1.11 3l1.28-1.27zm-6.21-3.67L12 13.9c-.15.06-.32.1-.5.1-.83 0-1.5-.67-1.5-1.5 0-.18.04-.35.1-.5L6.21 8.1c-.59.9-1 1.9-1.14 2.98A1.494 1.494 0 0 1 8 11.5c0 .83-.67 1.5-1.5 1.5-.79 0-1.43-.61-1.5-1.38 0 .49 0 .99.09 1.5.41 2.69 2.45 4.92 5.07 5.62A1.498 1.498 0 0 1 11 16c.83 0 1.5.67 1.5 1.5 0 .72-.5 1.32-1.18 1.46 1.71.16 3.29-.3 4.58-1.17"/></svg>���������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cookie-off.svg�����������������������������0000664�0000000�0000000�00000001224�14753064456�0026150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.25 6.05-1.8-1.8A8.9 8.9 0 0 1 12 3s1 0 1 1v2h1s1 0 1 1v1h2s1 0 1 1v1h2s.6 0 .87.5a8.896 8.896 0 0 1-1.12 6.05l-1.8-1.8c.02-.08.05-.16.05-.25 0-.83-.67-1.5-1.5-1.5-.09 0-.17.03-.25.05l-5.3-5.3c.02-.08.05-.16.05-.25 0-.83-.67-1.5-1.5-1.5-.09 0-.17.03-.25.05m12.86 15.41-1.27 1.27-3.5-3.5A8.9 8.9 0 0 1 12 21a9 9 0 0 1-9-9c0-2 .66-3.85 1.77-5.34L1.11 3l1.28-1.27zM8 11.5c0-.83-.67-1.5-1.5-1.5S5 10.67 5 11.5 5.67 13 6.5 13 8 12.33 8 11.5m2 1c0 .83.67 1.5 1.5 1.5.18 0 .35-.04.5-.1L10.1 12c-.06.15-.1.32-.1.5m2.5 5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5.67 1.5 1.5 1.5 1.5-.67 1.5-1.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cookie-outline.svg�������������������������0000664�0000000�0000000�00000001400�14753064456�0027051�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.87 10.5C20.6 10 20 10 20 10h-2V9c0-1-1-1-1-1h-2V7c0-1-1-1-1-1h-1V4c0-1-1-1-1-1a9 9 0 1 0 9 9c0-.5-.04-1-.13-1.5m-9.55 8.46c.68-.14 1.18-.74 1.18-1.46 0-.83-.67-1.5-1.5-1.5a1.498 1.498 0 0 0-.84 2.74c-2.62-.7-4.66-2.93-5.07-5.62C5 12.61 5 12.11 5 11.62c.07.77.71 1.38 1.5 1.38.83 0 1.5-.67 1.5-1.5S7.33 10 6.5 10c-.68 0-1.25.46-1.43 1.08C5.47 8 7.91 5.5 11 5.07V6.5c0 .83.67 1.5 1.5 1.5h.5v.5c0 .83.67 1.5 1.5 1.5H16v.5c0 .83.67 1.5 1.5 1.5H19c0 4.08-3.5 7.36-7.68 6.96M9.5 9C8.67 9 8 8.33 8 7.5S8.67 6 9.5 6s1.5.67 1.5 1.5S10.33 9 9.5 9m3.5 3.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5m5 2c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cookie-plus-outline.svg��������������������0000664�0000000�0000000�00000001572�14753064456�0030044�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 13c.3 0 .58.09.82.24-.87.26-1.66.71-2.32 1.29v-.03c0-.83.67-1.5 1.5-1.5m-.5-3v.5c0 .83.67 1.5 1.5 1.5H19c0 .34-.03.68-.08 1H19c.66 0 1.3.12 1.89.32a8.444 8.444 0 0 0-.02-2.82C20.6 10 20 10 20 10h-2V9c0-1-1-1-1-1h-2V7c0-1-1-1-1-1h-1V4c0-1-1-1-1-1a9 9 0 0 0 0 18c.45 0 .89-.04 1.32-.11-.2-.59-.32-1.23-.32-1.89v-.08c-.54.08-1.1.08-1.68.04.68-.14 1.18-.74 1.18-1.46 0-.83-.67-1.5-1.5-1.5a1.498 1.498 0 0 0-.84 2.74c-2.62-.7-4.66-2.93-5.07-5.62C5 12.61 5 12.11 5 11.62c.07.77.71 1.38 1.5 1.38.83 0 1.5-.67 1.5-1.5S7.33 10 6.5 10c-.68 0-1.25.46-1.43 1.08C5.47 8 7.91 5.5 11 5.07V6.5c0 .83.67 1.5 1.5 1.5h.5v.5c0 .83.67 1.5 1.5 1.5zm-4.5 4c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5M11 7.5c0-.83-.67-1.5-1.5-1.5S8 6.67 8 7.5 8.67 9 9.5 9 11 8.33 11 7.5M20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cookie-plus.svg����������������������������0000664�0000000�0000000�00000001251�14753064456�0026361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 14.53v-.03c0-.83.67-1.5 1.5-1.5.3 0 .58.09.82.24A6.2 6.2 0 0 1 19 13c.66 0 1.3.12 1.89.32a8.444 8.444 0 0 0-.02-2.82C20.6 10 20 10 20 10h-2V9c0-1-1-1-1-1h-2V7c0-1-1-1-1-1h-1V4c0-1-1-1-1-1a9 9 0 0 0 0 18c.45 0 .89-.04 1.32-.11-.2-.59-.32-1.23-.32-1.89 0-1.78.78-3.37 2-4.47M6.5 13c-.83 0-1.5-.67-1.5-1.5S5.67 10 6.5 10s1.5.67 1.5 1.5S7.33 13 6.5 13M8 7.5C8 6.67 8.67 6 9.5 6s1.5.67 1.5 1.5S10.33 9 9.5 9 8 8.33 8 7.5M11 19c-.83 0-1.5-.67-1.5-1.5S10.17 16 11 16s1.5.67 1.5 1.5S11.83 19 11 19m.5-5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5M23 18v2h-3v3h-2v-3h-3v-2h3v-3h2v3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cookie-refresh-outline.svg�����������������0000664�0000000�0000000�00000001550�14753064456�0030513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 12.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5m-2-5c0-.83-.67-1.5-1.5-1.5S8 6.67 8 7.5 8.67 9 9.5 9 11 8.33 11 7.5m4 2.5h1v.5c0 .83.67 1.5 1.5 1.5H19v.03c.69.06 1.36.21 2 .47V12c0-.5-.04-1-.13-1.5C20.6 10 20 10 20 10h-2V9c0-1-1-1-1-1h-2V7c0-1-1-1-1-1h-1V4c0-1-1-1-1-1a9 9 0 0 0 0 18h.5c-.26-.64-.41-1.31-.47-2-.23 0-.47 0-.71-.04.27-.06.49-.2.68-.38v-.08c0-.63.1-1.23.26-1.81a1.497 1.497 0 0 0-2.76.81c0 .5.26.97.66 1.24-2.62-.7-4.66-2.93-5.07-5.62C5 12.61 5 12.11 5 11.62c.07.77.71 1.38 1.5 1.38.83 0 1.5-.67 1.5-1.5S7.33 10 6.5 10c-.68 0-1.25.46-1.43 1.08C5.47 8 7.91 5.5 11 5.07V6.5c0 .83.67 1.5 1.5 1.5h.5v.5c0 .83.67 1.5 1.5 1.5zm7 8.5v-4l-1.17 1.17A4 4 0 0 0 18 14.5c-2.21 0-4 1.79-4 4s1.79 4 4 4c1.68 0 3.12-1.03 3.71-2.5H20a2.5 2.5 0 1 1-.23-3.27L18 18.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cookie-refresh.svg�������������������������0000664�0000000�0000000�00000001264�14753064456�0027040�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 16c.53 0 1 .28 1.26.69C13.04 14 15.54 12 18.5 12c.88 0 1.71.18 2.5.5V12c0-.5-.04-1-.13-1.5C20.6 10 20 10 20 10h-2V9c0-1-1-1-1-1h-2V7c0-1-1-1-1-1h-1V4c0-1-1-1-1-1a9 9 0 0 0 0 18h.5c-.31-.76-.5-1.56-.5-2.39-.26.24-.61.39-1 .39-.83 0-1.5-.67-1.5-1.5S10.17 16 11 16m2-3.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5m-6.5.5c-.83 0-1.5-.67-1.5-1.5S5.67 10 6.5 10s1.5.67 1.5 1.5S7.33 13 6.5 13M8 7.5C8 6.67 8.67 6 9.5 6s1.5.67 1.5 1.5S10.33 9 9.5 9 8 8.33 8 7.5m10 11 1.77-1.77A2.5 2.5 0 1 0 20 20h1.71A3.99 3.99 0 0 1 18 22.5c-2.21 0-4-1.79-4-4s1.79-4 4-4c1.11 0 2.11.45 2.83 1.17L22 14.5v4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cookie-remove-outline.svg������������������0000664�0000000�0000000�00000001724�14753064456�0030355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.32 13.24c-.87.26-1.66.71-2.32 1.29v-.03c0-.83.67-1.5 1.5-1.5.3 0 .58.09.82.24M16 10v.5c0 .83.67 1.5 1.5 1.5H19c0 .34-.03.68-.08 1H19c.66 0 1.3.12 1.89.32a8.444 8.444 0 0 0-.02-2.82C20.6 10 20 10 20 10h-2V9c0-1-1-1-1-1h-2V7c0-1-1-1-1-1h-1V4c0-1-1-1-1-1a9 9 0 0 0 0 18c.45 0 .89-.04 1.32-.11-.2-.59-.32-1.23-.32-1.89v-.08c-.54.08-1.1.08-1.68.04.68-.14 1.18-.74 1.18-1.46 0-.83-.67-1.5-1.5-1.5a1.498 1.498 0 0 0-.84 2.74c-2.62-.7-4.66-2.93-5.07-5.62C5 12.61 5 12.11 5 11.62c.07.77.71 1.38 1.5 1.38.83 0 1.5-.67 1.5-1.5S7.33 10 6.5 10c-.68 0-1.25.46-1.43 1.08C5.47 8 7.91 5.5 11 5.07V6.5c0 .83.67 1.5 1.5 1.5h.5v.5c0 .83.67 1.5 1.5 1.5zm-5-2.5c0-.83-.67-1.5-1.5-1.5S8 6.67 8 7.5 8.67 9 9.5 9 11 8.33 11 7.5m.5 6.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5m11.04 2.88-1.42-1.41L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19z"/></svg>��������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cookie-remove.svg��������������������������0000664�0000000�0000000�00000001372�14753064456�0026677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 13c.3 0 .58.09.82.24A6.2 6.2 0 0 1 19 13c.66 0 1.3.12 1.89.32a8.444 8.444 0 0 0-.02-2.82C20.6 10 20 10 20 10h-2V9c0-1-1-1-1-1h-2V7c0-1-1-1-1-1h-1V4c0-1-1-1-1-1a9 9 0 0 0 0 18c.45 0 .89-.04 1.32-.11-.2-.59-.32-1.23-.32-1.89 0-1.78.78-3.37 2-4.47v-.03c0-.83.67-1.5 1.5-1.5m-10 0c-.83 0-1.5-.67-1.5-1.5S5.67 10 6.5 10s1.5.67 1.5 1.5S7.33 13 6.5 13M8 7.5C8 6.67 8.67 6 9.5 6s1.5.67 1.5 1.5S10.33 9 9.5 9 8 8.33 8 7.5M11 19c-.83 0-1.5-.67-1.5-1.5S10.17 16 11 16s1.5.67 1.5 1.5S11.83 19 11 19m.5-5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5m8.91 5 2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.41-1.42L17.59 19l-2.12-2.12 1.41-1.41L19 17.59l2.12-2.12 1.42 1.41z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cookie-settings-outline.svg����������������0000664�0000000�0000000�00000001373�14753064456�0030720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 11.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5m-2-5c0-.83-.67-1.5-1.5-1.5S8 5.67 8 6.5 8.67 8 9.5 8 11 7.33 11 6.5M21 11a9 9 0 1 1-9-9s1 0 1 1v2h1s1 0 1 1v1h2s1 0 1 1v1h2s.6 0 .87.5c.09.5.13 1 .13 1.5m-2 0h-1.5c-.83 0-1.5-.67-1.5-1.5V9h-1.5c-.83 0-1.5-.67-1.5-1.5V7h-.5c-.83 0-1.5-.67-1.5-1.5V4.07C7.91 4.5 5.47 7 5.07 10.08A1.494 1.494 0 0 1 8 10.5c0 .83-.67 1.5-1.5 1.5-.79 0-1.43-.61-1.5-1.38 0 .49 0 .99.09 1.5.41 2.69 2.45 4.92 5.07 5.62A1.498 1.498 0 0 1 11 15c.83 0 1.5.67 1.5 1.5 0 .72-.5 1.32-1.18 1.46C15.5 18.36 19 15.08 19 11m-2.5 1c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5M7 24h2v-2H7zm8 0h2v-2h-2zm-4 0h2v-2h-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cookie-settings.svg������������������������0000664�0000000�0000000�00000001114�14753064456�0027234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.87 9.5C20.6 9 20 9 20 9h-2V8c0-1-1-1-1-1h-2V6c0-1-1-1-1-1h-1V3c0-1-1-1-1-1a9 9 0 1 0 9 9c0-.5-.04-1-.13-1.5M6.5 12c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12M8 6.5C8 5.67 8.67 5 9.5 5s1.5.67 1.5 1.5S10.33 8 9.5 8 8 7.33 8 6.5M11 18c-.83 0-1.5-.67-1.5-1.5S10.17 15 11 15s1.5.67 1.5 1.5S11.83 18 11 18m.5-5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5m5 2c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5M7 22h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cookie.svg���������������������������������0000664�0000000�0000000�00000001231�14753064456�0025376�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3a9 9 0 0 0-9 9 9 9 0 0 0 9 9 9 9 0 0 0 9-9c0-.5-.04-1-.13-1.5C20.6 10 20 10 20 10h-2V9c0-1-1-1-1-1h-2V7c0-1-1-1-1-1h-1V4c0-1-1-1-1-1M9.5 6A1.5 1.5 0 0 1 11 7.5 1.5 1.5 0 0 1 9.5 9 1.5 1.5 0 0 1 8 7.5 1.5 1.5 0 0 1 9.5 6m-3 4A1.5 1.5 0 0 1 8 11.5 1.5 1.5 0 0 1 6.5 13 1.5 1.5 0 0 1 5 11.5 1.5 1.5 0 0 1 6.5 10m5 1a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5m5 2a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5M11 16a1.5 1.5 0 0 1 1.5 1.5A1.5 1.5 0 0 1 11 19a1.5 1.5 0 0 1-1.5-1.5A1.5 1.5 0 0 1 11 16"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/coolant-temperature.svg��������������������0000664�0000000�0000000�00000002077�14753064456�0030130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.5 1A1.5 1.5 0 0 0 10 2.5v12c-.63.47-1 1.21-1 2a2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5c0-.79-.37-1.5-1-2V13h4v-2h-4V9h4V7h-4V5h4V3h-4v-.5A1.5 1.5 0 0 0 11.5 1M0 15v2c.67 0 .79.21 1.29.71S2.67 19 4 19s2.21-.79 2.71-1.29c.11-.12.2-.21.29-.3v-2.25c-.79.26-1.35.77-1.71 1.13-.5.5-.62.71-1.29.71s-.79-.21-1.29-.71S1.33 15 0 15m16 0v2c.67 0 .79.21 1.29.71S18.67 19 20 19s2.21-.79 2.71-1.29S23.33 17 24 17v-2c-1.33 0-2.21.79-2.71 1.29S20.67 17 20 17s-.79-.21-1.29-.71S17.33 15 16 15m-8 5c-1.33 0-2.21.79-2.71 1.29S4.67 22 4 22s-.79-.21-1.29-.71c-.36-.36-.92-.87-1.71-1.13v2.25c.09.09.18.18.29.3.5.5 1.38 1.29 2.71 1.29s2.21-.79 2.71-1.29S7.33 22 8 22s.79.21 1.29.71c.44.43 1.15 1.09 2.21 1.25.16.04.33.04.5.04 1.33 0 2.21-.79 2.71-1.29S15.33 22 16 22s.79.21 1.29.71S18.67 24 20 24s2.21-.79 2.71-1.29c.11-.12.2-.21.29-.3v-2.25c-.79.26-1.35.77-1.71 1.13-.5.5-.62.71-1.29.71s-.79-.21-1.29-.71S17.33 20 16 20s-2.21.79-2.71 1.29-.62.71-1.29.71c-.22 0-.37-.03-.5-.08-.28-.1-.45-.29-.79-.63C10.21 20.79 9.33 20 8 20"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/copyleft.svg�������������������������������0000664�0000000�0000000�00000001134�14753064456�0025754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.92 10.86c.12.99.2 2.24-.3 3.14-.12.27-.34.5-.59.64-.23.15-.53.22-.89.23-.42 0-.81-.14-1.14-.4a1.7 1.7 0 0 1-.34-.47c-.09-.17-.16-.36-.16-.57H8.72c.01.41.12.79.28 1.15.2.36.45.67.76.92 1.44 1.33 4.09 1.12 5.3-.37 1.31-1.67 1.28-4.59-.01-6.26-1.22-1.52-3.92-1.71-5.37-.37-.3.28-.53.62-.68 1-.19.4-.28.83-.3 1.3h1.8c0-.43.19-.86.47-1.17.29-.29.7-.49 1.15-.49.69.01 1.21.3 1.5.86.14.24.25.53.3.86M12 2C6.5 2 2 6.5 2 12c.53 13.26 19.47 13.27 20 0 0-5.5-4.5-10-10-10M4 12c.44-10.61 15.56-10.61 16 0 0 4.41-3.59 8-8 8s-8-3.59-8-8"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/copyright.svg������������������������������0000664�0000000�0000000�00000001151�14753064456�0026136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.08 10.86c.05-.33.16-.62.3-.86.3-.56.81-.85 1.5-.86.45 0 .86.2 1.15.49.28.31.47.74.47 1.17h1.8c-.02-.47-.11-.9-.3-1.3-.15-.38-.38-.72-.68-1-1.45-1.34-4.14-1.15-5.37.37-1.29 1.67-1.32 4.59-.01 6.26 1.21 1.49 3.86 1.7 5.3.37.31-.25.56-.56.76-.92.16-.36.27-.74.28-1.15H13.5c0 .21-.07.4-.16.57-.09.19-.21.34-.34.47-.33.26-.72.4-1.14.4-.36-.01-.66-.08-.89-.23a1.4 1.4 0 0 1-.59-.64c-.5-.9-.42-2.15-.3-3.14M12 2C6.5 2 2 6.5 2 12c.53 13.27 19.5 13.26 20 0 0-5.5-4.5-10-10-10m0 18c-4.41 0-8-3.59-8-8 .44-10.61 15.56-10.61 16 0 0 4.41-3.59 8-8 8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cordova.svg��������������������������������0000664�0000000�0000000�00000000706�14753064456�0025570�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.18 21.55h-3.24l.23-2.73h-1.59l-.23 2.73h-6.7l-.23-2.73H6.83l.23 2.73H3.82L2 9.73l4.55-7.28h10.9L22 9.73zM16.55 6.09h-2.93l.2 1.36h-3.64l.2-1.36H7.45L5.64 9.73 6.55 17h10.9l.91-7.27zm-1.6 8.5c-.25 0-.45-.76-.45-1.69 0-.94.2-1.7.45-1.7.26 0 .46.76.46 1.7 0 .93-.2 1.69-.46 1.69m-5.73.14c-.26 0-.46-.76-.46-1.69 0-.94.2-1.69.46-1.69.25 0 .45.75.45 1.69 0 .93-.2 1.69-.45 1.69"/></svg>����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/corn-off.svg�������������������������������0000664�0000000�0000000�00000000765�14753064456�0025651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l6.1 6.1c-.1.6-.2 1.2-.2 1.9-1.5-.6-3.2-1-5-1 5.9 2.6 4 12 10 12 2.5 0 3.7-1.5 4.6-3.5l4.3 4.3zM8.1 10l1 1H8zm.7 2h1.3l.9.9v.8c-.7-.6-1.4-1.2-2.2-1.7m5.5 7.2c-.2-1.2-.9-2.8-2.1-4.2h.9l2.1 2.1q-.3 1.2-.9 2.1M11 6v1.8L12.2 9H14V8h-2V6h1V5h-1V3c2.1 0 3.9 4 4 8.8v1l2 2c.8-2 1.9-3.9 4-4.8-1.8 0-3.5.4-5 1.1-.2-5.2-2.3-9.1-5-9.1-1.5 0-2.8 1.2-3.7 3.1l.9.9zm0-2.7V5H9.5c.5-.8 1-1.4 1.5-1.7m4 8.5-.8-.8h.8z"/></svg>�����������mkdocs-material-9.6.4/material/templates/.icons/material/corn.svg�����������������������������������0000664�0000000�0000000�00000000707�14753064456�0025075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 12H8.82c.8.5 1.53 1.07 2.18 1.68zm-4-1c.27-5.12 2.37-9 5-9 2.66 0 4.77 3.94 5 9.12 1.5-.69 3.17-1.12 5-1.12-5.75 2.57-3.75 12-10 12-6 0-4.07-9.43-10-12 1.82 0 3.5.4 5 1m4 0V9H8.24l-.21 2zm0-3V6H9.05c-.25.6-.45 1.27-.62 2zm0-3V3.3c-.55.33-1.05.92-1.5 1.7zm1-2v2h1v1h-1v2h2v1h-2v2h3v1h-3v2h2v1h-1.77c1.19 1.45 1.92 3 2.09 4.23.99-1.67 1.64-4.39 1.68-7.47C15.94 7 14.13 3 12 3"/></svg>���������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cosine-wave.svg����������������������������0000664�0000000�0000000�00000000414�14753064456�0026347�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 2v2c-1.74 0-3 4.58-4.04 8.27-1.39 5-2.7 9.73-5.96 9.73s-4.57-4.73-5.96-9.73C5 8.58 3.74 4 2 4V2c3.26 0 4.57 4.73 5.96 9.73C9 15.42 10.26 20 12 20s3-4.58 4.04-8.27C17.43 6.73 18.74 2 22 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/counter.svg��������������������������������0000664�0000000�0000000�00000001065�14753064456�0025611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2m0 2v12h7V6zm16 12V6h-1.24c.24.54.19 1.07.19 1.13-.07.67-.54 1.37-.71 1.62l-2.33 2.55 3.32-.02.01 1.22-5.2-.03-.04-1s3.05-3.23 3.2-3.52c.14-.28.71-1.95-.7-1.95-1.23.05-1.09 1.3-1.09 1.3l-1.54.01s.01-.66.38-1.31H13v12h2.58l-.01-.86.97-.01s.91-.16.92-1.05c.04-1-.81-1-.96-1-.13 0-1.07.05-1.07.87h-1.52s.04-2.06 2.59-2.06c2.6 0 2.46 2.02 2.46 2.02s.04 1.25-1.11 1.72l.52.37zM8.92 16h-1.5v-5.8l-1.8.56V9.53l3.14-1.12h.16z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/countertop-outline.svg���������������������0000664�0000000�0000000�00000000360�14753064456�0030006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 10h-4V7c0-1.66-1.34-3-3-3s-3 1.34-3 3h2c0-.55.45-1 1-1s1 .45 1 1v3H8c1.1 0 2-.9 2-2V4H4v4c0 1.1.9 2 2 2H2v2h2v8h16v-8h2zM6 6h2v2H6zm0 12v-6h5v6zm12 0h-5v-6h5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/countertop.svg�����������������������������0000664�0000000�0000000�00000000330�14753064456�0026326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 10V7c0-1.66-1.34-3-3-3s-3 1.34-3 3h2c0-.55.45-1 1-1s1 .45 1 1v3H8c1.1 0 2-.9 2-2V4H4v4c0 1.1.9 2 2 2H2v2h2v8h16v-8h2v-2zm-5 8h-2v-6h2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cow-off.svg��������������������������������0000664�0000000�0000000�00000001545�14753064456�0025475�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l5.8 5.8-.1.2c-.4-.5-1-.9-1.6-1.1-1-.3-2.9-.2-3.2.6s1.3 2 2.3 2.2c.5.1 1.2.1 1.7 0V12c0 1.3.5 2.6 1.2 3.6-.7.7-1.2 1.5-1.2 2.4 0 2.2 2.7 4 6 4 2.5 0 4.7-1 5.6-2.5l3.3 3.3zM9.4 11.2c-.3.2-.4.5-.4.8 0 .6.4 1 1 1 .3 0 .6-.1.8-.4l1.4 1.4h-.1c-1.1 0-2.2.2-3.1.6-.7-.7-1-1.6-1-2.6 0-.6.1-1.2.4-1.7zM16 18c0 1.1-1.8 2-4 2s-4-.9-4-2 1.8-2 4-2c1 0 1.9.2 2.6.5l1.4 1.4zM9.7 6.5 7.8 4.6C8.3 3.9 9 3.3 10 3l-.1.1c-.3.5-1 1.9-.2 3.4m1.6 1.6L9.7 6.5c.7-.3 1.5-.5 2.3-.5s1.6.2 2.3.5c.8-1.5 0-2.9-.2-3.3L14 3c3 1 3.2 4 2.6 5.2l.6.8c.4-.5 1-.9 1.6-1.1 1-.3 2.9-.2 3.2.6s-1.3 2-2.3 2.2c-.5.1-1.2.1-1.7 0V12c0 .8-.2 1.6-.5 2.3l-1.6-1.6c0-.2.1-.5.1-.7 0-2.2-1.8-4-4-4-.2 0-.5 0-.7.1M14 18.5c0 .3-.2.5-.5.5s-.5-.2-.5-.5.2-.5.5-.5.5.2.5.5m-3 0c0 .3-.2.5-.5.5s-.5-.2-.5-.5.2-.5.5-.5.5.2.5.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cow.svg������������������������������������0000664�0000000�0000000�00000001741�14753064456�0024723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 18a.5.5 0 0 1 .5.5.5.5 0 0 1-.5.5.5.5 0 0 1-.5-.5.5.5 0 0 1 .5-.5m3 0a.5.5 0 0 1 .5.5.5.5 0 0 1-.5.5.5.5 0 0 1-.5-.5.5.5 0 0 1 .5-.5M10 11a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m4 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m4 7c0 2.21-2.69 4-6 4s-6-1.79-6-4c0-.9.45-1.73 1.2-2.4-.75-1-1.2-2.25-1.2-3.6l.12-1.22c-.54.15-1.19.15-1.72 0-1.02-.28-2.56-1.43-2.33-2.23s2.14-.95 3.16-.65c.59.17 1.22.6 1.59 1.06l.57-.81C6.79 7.05 7 4 10 3l-.09.14c-.28.44-1 1.83-.24 3.33a6.02 6.02 0 0 1 4.66 0c.76-1.5.04-2.89-.24-3.33L14 3c3 1 3.21 4.05 2.61 5.15l.57.81c.37-.46 1-.89 1.59-1.06 1.02-.3 2.93-.15 3.16.65s-1.31 1.95-2.33 2.23c-.53.15-1.18.15-1.72 0L18 12c0 1.35-.45 2.6-1.2 3.6.75.67 1.2 1.5 1.2 2.4m-6-2c-2.21 0-4 .9-4 2s1.79 2 4 2 4-.9 4-2-1.79-2-4-2m0-2c1.12 0 2.17.21 3.07.56.58-.69.93-1.56.93-2.56a4 4 0 0 0-4-4 4 4 0 0 0-4 4c0 1 .35 1.87.93 2.56.9-.35 1.95-.56 3.07-.56m2.09-10.86"/></svg>�������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cpu-32-bit.svg�����������������������������0000664�0000000�0000000�00000000573�14753064456�0025722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 3v2H7a2 2 0 0 0-2 2v2H3v2h2v2H3v2h2v2a2 2 0 0 0 2 2h2v2h2v-2h2v2h2v-2h2a2 2 0 0 0 2-2v-2h2v-2h-2v-2h2V9h-2V7a2 2 0 0 0-2-2h-2V3h-2v2h-2V3M7 9h3.5a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H7v-1.5h3v-.75H8.5v-1.5H10v-.75H7M12.5 9H16a1 1 0 0 1 1 1v1.75a1 1 0 0 1-1 1h-2v.75h3V15h-4.5v-2.75a1 1 0 0 1 1-1h2v-.75h-3"/></svg>�������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cpu-64-bit.svg�����������������������������0000664�0000000�0000000�00000000545�14753064456�0025726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 3v2H7a2 2 0 0 0-2 2v2H3v2h2v2H3v2h2v2a2 2 0 0 0 2 2h2v2h2v-2h2v2h2v-2h2a2 2 0 0 0 2-2v-2h2v-2h-2v-2h2V9h-2V7a2 2 0 0 0-2-2h-2V3h-2v2h-2V3M8 9h3.5v1.5h-3v.75h2a1 1 0 0 1 1 1V14a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1m4.5 0H14v2h1.5V9H17v6h-1.5v-2.5h-3m-4 .25v.75H10v-.75"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cradle-outline.svg�������������������������0000664�0000000�0000000�00000000521�14753064456�0027035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 9h-6V4H8C5.8 4 4 5.8 4 8v6c0 1.1.9 2 2 2h2v2.9c-.6-.4-1.2-.8-1.7-1.3L4.9 19c1.8 1.9 4.3 3 7.1 3s5.3-1.1 7.1-2.9l-1.4-1.4c-.5.5-1 .9-1.6 1.3v-3h2c1.1 0 2-.9 2-2v-3c-.1-1.1-1-2-2.1-2m-4 10.8c-.6.2-1.3.2-2 .2s-1.4-.1-2-.2V16h4zm4-5.8H6V8c0-1.1.9-2 2-2h2v5h8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cradle.svg���������������������������������0000664�0000000�0000000�00000000462�14753064456�0025364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 9h-6V4H8C5.8 4 4 5.8 4 8v6c0 1.1.9 2 2 2h2v2.9c-.6-.4-1.2-.8-1.7-1.3L4.9 19c1.8 1.9 4.3 3 7.1 3s5.3-1.1 7.1-2.9l-1.4-1.4c-.5.5-1 .9-1.6 1.3v-3h2c1.1 0 2-.9 2-2v-3c-.1-1.1-1-2-2.1-2m-4 10.8c-.6.2-1.3.2-2 .2s-1.4-.1-2-.2V16h4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/crane.svg����������������������������������0000664�0000000�0000000�00000000777�14753064456�0025233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6V5a1 1 0 0 0-1-1H9V3H6v1H5v2h1v9H5v-2H3v2H2v2h1v4h2v-4h5v4h2v-4h1v-2h-1v-2h-2v2H9V6h8v4.62c-.47.17-.81.61-.81 1.14 0 .44.24.84.61 1.06V14h.62c.34 0 .61.28.61.62s-.27.62-.61.62c-.22 0-.42-.12-.53-.31a.62.62 0 0 0-.84-.22c-.3.16-.4.54-.23.84.33.56.94.92 1.6.92 1.01 0 1.84-.83 1.84-1.85 0-.78-.5-1.48-1.23-1.74v-.06c.38-.22.62-.62.62-1.06 0-.46-.27-.85-.65-1.06V6zM8 13.66l-1 1v-1.42l1-1zm0-2.95-1 1v-1.42l1-1zm-1-2V7.29l1-1v1.42z"/></svg>�mkdocs-material-9.6.4/material/templates/.icons/material/creation-outline.svg�����������������������0000664�0000000�0000000�00000000471�14753064456�0027413�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9 4 2.5 5.5L17 12l-5.5 2.5L9 20l-2.5-5.5L1 12l5.5-2.5zm0 4.83L8 11l-2.17 1L8 13l1 2.17L10 13l2.17-1L10 11zM19 9l-1.26-2.74L15 5l2.74-1.25L19 1l1.25 2.75L23 5l-2.75 1.26zm0 14-1.26-2.74L15 19l2.74-1.25L19 15l1.25 2.75L23 19l-2.75 1.26z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/creation.svg�������������������������������0000664�0000000�0000000�00000000402�14753064456�0025730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19 1-1.26 2.75L15 5l2.74 1.26L19 9l1.25-2.74L23 5l-2.75-1.25M9 4 6.5 9.5 1 12l5.5 2.5L9 20l2.5-5.5L17 12l-5.5-2.5M19 15l-1.26 2.74L15 19l2.74 1.25L19 23l1.25-2.75L23 19l-2.75-1.26"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/creative-commons.svg�����������������������0000664�0000000�0000000�00000001523�14753064456�0027404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.89 10.34-1.34.7c-.14-.3-.31-.51-.52-.63s-.41-.18-.58-.18c-.9 0-1.34.59-1.34 1.77 0 .54.11.97.34 1.29.22.32.55.48 1 .48.58 0 .99-.27 1.23-.86l1.23.63c-.26.49-.62.87-1.09 1.15q-.69.42-1.53.42c-.9 0-1.62-.27-2.17-.82C6.58 13.74 6.3 13 6.3 12c0-.95.28-1.7.83-2.26q.84-.84 2.1-.84c1.24-.01 2.13.48 2.66 1.44m5.77 0-1.32.7c-.14-.3-.34-.51-.53-.63q-.315-.18-.6-.18c-.89 0-1.34.59-1.34 1.77 0 .54.13.97.34 1.29.23.32.56.48 1 .48.59 0 1-.27 1.24-.86l1.25.63c-.28.49-.65.87-1.11 1.15-.47.28-.97.42-1.52.42-.9 0-1.63-.27-2.17-.82S12.09 13 12.09 12c0-.95.28-1.7.83-2.26S14.17 8.9 15 8.9c1.26-.01 2.14.48 2.66 1.44M12 3.5a8.5 8.5 0 0 1 8.5 8.5 8.5 8.5 0 0 1-8.5 8.5A8.5 8.5 0 0 1 3.5 12 8.5 8.5 0 0 1 12 3.5M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-check-outline.svg��������������0000664�0000000�0000000�00000000434�14753064456�0031042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0-.34.04-.67.09-1H3v-6h16v1c.7 0 1.37.13 2 .35V6c0-1.11-.89-2-2-2H3c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h10.09c-.05-.33-.09-.66-.09-1M3 6h16v2H3zm14.75 16L15 19l1.16-1.16 1.59 1.59 3.59-3.59 1.16 1.41z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-check.svg����������������������0000664�0000000�0000000�00000000415�14753064456�0027364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h9.09c-.06-.33-.09-.66-.09-1 0-3.31 2.69-6 6-6 1.06 0 2.09.28 3 .81V6c0-1.11-.89-2-2-2m0 7H4V8h16m-2.25 14L15 19l1.16-1.16 1.59 1.59 3.59-3.59 1.16 1.41z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-chip-outline.svg���������������0000664�0000000�0000000�00000000271�14753064456�0030707�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6v12H4V6zm0-2H4c-1.11 0-2 .89-2 2v12c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2m-9 6H6v4h5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-chip.svg�����������������������0000664�0000000�0000000�00000000257�14753064456�0027236�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4H4c-1.11 0-2 .89-2 2v12c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2M10 14H5v-4h5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-clock-outline.svg��������������0000664�0000000�0000000�00000000563�14753064456�0031063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 14h1.5v2.82l2.44 1.41-.75 1.3L16 17.69zm8 3a7 7 0 0 1-7 7c-2.79 0-5.2-1.64-6.33-4H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h16a2 2 0 0 1 2 2v6.1c1.24 1.26 2 2.99 2 4.9m-14 0c0-1.96.81-3.73 2.1-5H4v6h6.07c-.07-.33-.07-.66-.07-1m7-5a5 5 0 0 0-5 5 5 5 0 0 0 5 5 5 5 0 0 0 5-5 5 5 0 0 0-5-5m3-4V6H4v2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-clock.svg����������������������0000664�0000000�0000000�00000000471�14753064456�0027404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 14h1.5v2.82l2.44 1.41-.75 1.3L16 17.69zm8 3a7 7 0 0 1-7 7c-2.79 0-5.2-1.64-6.33-4H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h16a2 2 0 0 1 2 2v6.1c1.24 1.26 2 2.99 2 4.9m-7-5a5 5 0 0 0-5 5 5 5 0 0 0 5 5 5 5 0 0 0 5-5 5 5 0 0 0-5-5m3-2V7H4v3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-edit-outline.svg���������������0000664�0000000�0000000�00000000422�14753064456�0030707�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13 18.9 6.1-6.1 2.1 2.1-6.1 6.1H13zm8.4-7.6 1.3 1.3c.2.2.2.5 0 .7l-1 1-2.1-2 1-1c.1-.1.2-.2.4-.2s.3.1.4.2M11 18H4v-6h13.1L22 7.1V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7zM4 6h16v2H4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-edit.svg�����������������������0000664�0000000�0000000�00000000452�14753064456�0027235�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.6 11.3c.1-.1.2-.2.4-.2.1 0 .3.1.4.2l1.2 1.2c.2.2.2.6 0 .8l-1 1-2-2zM13 18.9l6-6.1 2.1 2.1-6 6.1H13zm-2 .2v-1l.6-.6 6.5-6.5H4V8h16v1.1l2-2V6c0-1.1-.9-2-2-2H4c-.5 0-1 .2-1.4.6S2 5.5 2 6v12c0 .5.2 1 .6 1.4s.9.6 1.4.6h7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-fast-outline.svg���������������0000664�0000000�0000000�00000000515�14753064456�0030722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 8c-.55 0-1-.45-1-1s.45-1 1-1h2.54C5.19 6.6 5 7.29 5 8zm2 5H2c-.55 0-1-.45-1-1s.45-1 1-1h3zm-4 5c-.552 0-1-.45-1-1s.448-1 1-1h4c0 .71.19 1.4.54 2zM21 6H9c-1.11 0-2 .89-2 2v8c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2m0 2v1H9V8zM9 16v-4h12v4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-fast.svg�����������������������0000664�0000000�0000000�00000000500�14753064456�0027237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 8c-.55 0-1-.45-1-1s.45-1 1-1h2.54C5.19 6.6 5 7.29 5 8zm2 5H2c-.55 0-1-.45-1-1s.45-1 1-1h3zm-4 5c-.552 0-1-.45-1-1s.448-1 1-1h4c0 .71.19 1.4.54 2zM21 6H9c-1.11 0-2 .89-2 2v8c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2m0 6H9V9h12z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-lock-outline.svg���������������0000664�0000000�0000000�00000000656�14753064456�0030723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.8 15v-1.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V15c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3m-1.3 0h-3v-1.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3zM13 19.7V18H4v-6h10.5c.68-1.72 2.46-3 4.5-3 1.13 0 2.17.4 3 1.04V6a2 2 0 0 0-2-2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h9.03c-.03-.1-.03-.2-.03-.3M4 6h16v2H4z"/></svg>����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-lock.svg�����������������������0000664�0000000�0000000�00000000676�14753064456�0027250�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.8 15v-1.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V15c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3m-1.3 0h-3v-1.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3zm-7.47 5H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h16c1.11 0 2 .89 2 2v4.04c-.58-.44-1.25-.78-2-.93V8H4v3h11.04c-.54.72-.84 1.58-.84 2.5v.24c-.7.6-1.2 1.5-1.2 2.46v3.5c0 .1 0 .2.03.3"/></svg>������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-marker-outline.svg�������������0000664�0000000�0000000�00000000606�14753064456�0031247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.5 18H4v-6h10.3c1-1.2 2.5-2 4.2-2 1.3 0 2.5.5 3.5 1.3V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10.6c-.4-.6-.8-1.3-1.1-2M4 6h16v2H4zm14.5 6c-1.9 0-3.5 1.6-3.5 3.5 0 2.6 3.5 6.5 3.5 6.5s3.5-3.9 3.5-6.5c0-1.9-1.6-3.5-3.5-3.5m0 4.8c-.7 0-1.2-.6-1.2-1.2 0-.7.6-1.2 1.2-1.2s1.2.6 1.2 1.2c.1.6-.5 1.2-1.2 1.2"/></svg>��������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-marker.svg���������������������0000664�0000000�0000000�00000000616�14753064456�0027573�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 12c-1.9 0-3.5 1.6-3.5 3.5 0 2.6 3.5 6.5 3.5 6.5s3.5-3.9 3.5-6.5c0-1.9-1.6-3.5-3.5-3.5m0 4.8c-.7 0-1.2-.6-1.2-1.2 0-.7.6-1.2 1.2-1.2s1.2.6 1.2 1.2c.1.6-.5 1.2-1.2 1.2M14.55 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h16c1.11 0 2 .89 2 2v5.3a5.55 5.55 0 0 0-2-1.08V8H4v3h11.39C13.96 12 13 13.66 13 15.5c0 1.5.72 3.11 1.55 4.5"/></svg>������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-minus-outline.svg��������������0000664�0000000�0000000�00000000261�14753064456�0031116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 18v2h-8v-2m3-10V6H3v2zm0 4H3v6h11v2H3a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h16c1.11 0 2 .89 2 2v7h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-minus.svg����������������������0000664�0000000�0000000�00000000343�14753064456�0027442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h9.09c-.06-.33-.09-.66-.09-1 0-3.31 2.69-6 6-6 1.06 0 2.09.28 3 .81V6c0-1.11-.89-2-2-2m0 7H4V8h16m3 10v2h-8v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-multiple-outline.svg�����������0000664�0000000�0000000�00000000314�14753064456�0031615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 8V6H7v2zm0 8v-5H7v5zm0-12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2zM3 20h15v2H3a2 2 0 0 1-2-2V9h2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-multiple.svg�������������������0000664�0000000�0000000�00000000275�14753064456�0030146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 9V6H7v3zm0-6a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zM3 19h15v2H3a2 2 0 0 1-2-2V8h2Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-off-outline.svg����������������0000664�0000000�0000000�00000000426�14753064456�0030540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m.93 4.2 1.28-1.27L20 20.72 18.73 22l-2-2H4a2 2 0 0 1-2-2V6c0-.22.04-.43.11-.62zM20 8V6H7.82l-2-2H20a2 2 0 0 1 2 2v12c0 .6-.26 1.13-.68 1.5l-1.5-1.5H20v-6h-6.18l-4-4zM4 8h.73L4 7.27zm0 4v6h10.73l-6-6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-off.svg������������������������0000664�0000000�0000000�00000000366�14753064456�0027066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.2 8-4-4H20a2 2 0 0 1 2 2v12a1.9 1.9 0 0 1-.12.68L14.2 11H20V8m.84 14.73L18.11 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 .65-1.46L1.11 3l1.28-1.27 19.72 19.73M9.11 11l-3-3H4v3Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-outline.svg��������������������0000664�0000000�0000000�00000000261�14753064456�0027765�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 8H4V6h16m0 12H4v-6h16m0-8H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-plus-outline.svg���������������0000664�0000000�0000000�00000000303�14753064456�0030743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 18h3v2h-3v3h-2v-3h-3v-2h3v-3h2zM19 8V6H3v2zm0 4H3v6h11v2H3a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h16a2 2 0 0 1 2 2v7h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-plus.svg�����������������������0000664�0000000�0000000�00000000353�14753064456�0027273�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h9.09a5.5 5.5 0 0 1-.09-1 6 6 0 0 1 6-6 5.9 5.9 0 0 1 3 .81V6a2 2 0 0 0-2-2m0 7H4V8h16m0 7v3h3v2h-3v3h-2v-3h-3v-2h3v-3Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-refresh-outline.svg������������0000664�0000000�0000000�00000000553�14753064456�0031425�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h7.68c-.11-.5-.18-1-.18-1.5 0-.17 0-.33.03-.5H4v-6h16v.32c.74.24 1.41.61 2 1.08V6a2 2 0 0 0-2-2m0 4H4V6h16zm.83 7.67L22 14.5v4h-4l1.77-1.77A2.5 2.5 0 1 0 20 20h1.71A3.99 3.99 0 0 1 18 22.5c-2.21 0-4-1.79-4-4s1.79-4 4-4c1.11 0 2.11.45 2.83 1.17"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-refresh.svg��������������������0000664�0000000�0000000�00000000535�14753064456�0027750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h7.68c-.11-.5-.18-1-.18-1.5A6.5 6.5 0 0 1 18 12c1.5 0 2.9.53 4 1.4V6c0-1.11-.89-2-2-2m0 7H4V8h16zm.83 4.67L22 14.5v4h-4l1.77-1.77A2.5 2.5 0 1 0 20 20h1.71A3.99 3.99 0 0 1 18 22.5c-2.21 0-4-1.79-4-4s1.79-4 4-4c1.11 0 2.11.45 2.83 1.17"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-refund-outline.svg�������������0000664�0000000�0000000�00000000374�14753064456�0031253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 11H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2m0 10H6v-4h12zm0-6H6v-2h12zM17 5v5h-1.5V6.5H9.88l2.42 2.43L11.24 10 7 5.75l4.24-4.25 1.06 1.07L9.88 5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-refund.svg���������������������0000664�0000000�0000000�00000000355�14753064456�0027575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 11H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2m0 6H6v-3h12m-1-9v5h-1.5V6.5H9.88l2.42 2.43L11.24 10 7 5.75l4.24-4.25 1.06 1.07L9.88 5Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-remove-outline.svg�������������0000664�0000000�0000000�00000000535�14753064456�0031264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0-.34.04-.67.09-1H3v-6h16v1c.7 0 1.37.13 2 .35V6c0-1.11-.89-2-2-2H3c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h10.09c-.05-.33-.09-.66-.09-1M3 6h16v2H3zm19.54 10.88L20.41 19l2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.41-1.42L17.59 19l-2.12-2.12 1.41-1.41L19 17.59l2.12-2.13z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-remove.svg���������������������0000664�0000000�0000000�00000000501�14753064456�0027600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h9.09a5.5 5.5 0 0 1-.09-1 6 6 0 0 1 6-6 5.9 5.9 0 0 1 3 .81V6a2 2 0 0 0-2-2m0 7H4V8h16m2.54 8.88L20.41 19l2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.42-1.42L17.59 19l-2.13-2.12 1.42-1.42L19 17.59l2.12-2.13Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-scan-outline.svg���������������0000664�0000000�0000000�00000000451�14753064456�0030710�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4h4V2H2a2 2 0 0 0-2 2v4h2zm20-2h-4v2h4v4h2V4a2 2 0 0 0-2-2M2 16H0v4a2 2 0 0 0 2 2h4v-2H2zm20 4h-4v2h4a2 2 0 0 0 2-2v-4h-2zM4 8v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2m2 8v-4h12v4zm12-8v2H6V8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-scan.svg�����������������������0000664�0000000�0000000�00000000434�14753064456�0027234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 6H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2m0 6H6V9h12M2 4h4V2H2a2 2 0 0 0-2 2v4h2zm20-2h-4v2h4v4h2V4a2 2 0 0 0-2-2M2 16H0v4a2 2 0 0 0 2 2h4v-2H2zm20 4h-4v2h4a2 2 0 0 0 2-2v-4h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-search-outline.svg�������������0000664�0000000�0000000�00000000643�14753064456�0031234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.03 12c.25-.39.54-.76.87-1.1a6.525 6.525 0 0 1 9.2 0c.35.36.64.75.9 1.16V6a2 2 0 0 0-2-2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h7.82a6.4 6.4 0 0 1-1.32-2H4v-6zM4 6h16v2H4zm16.31 11.9c.44-.69.69-1.52.69-2.4 0-2.5-2-4.5-4.5-4.5S12 13 12 15.5s2 4.5 4.5 4.5c.87 0 1.69-.25 2.38-.68L22 22.39 23.39 21zm-3.81.1a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-search.svg���������������������0000664�0000000�0000000�00000000607�14753064456�0027557�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.82 11c-2.42 2.5-2.42 6.5 0 9H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h16c1.11 0 2 .89 2 2v6.06c-.26-.41-.55-.8-.9-1.16-.34-.33-.71-.63-1.1-.87V8H4v3zm11.57 10L22 22.39l-3.12-3.07c-.69.43-1.51.68-2.38.68-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 .88-.25 1.71-.69 2.4zM19 15.5a2.5 2.5 0 0 0-5 0 2.5 2.5 0 0 0 5 0"/></svg>�������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-settings-outline.svg�����������0000664�0000000�0000000�00000000325�14753064456�0031624�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 8H4V6h16m0 12H4v-6h16m0-8H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2M7 22h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-settings.svg�������������������0000664�0000000�0000000�00000000304�14753064456�0030144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m0 7H4V8h16M7 22h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-sync-outline.svg���������������0000664�0000000�0000000�00000000734�14753064456�0030744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 18v-6h12.05c1-.63 2.18-1 3.45-1 .89 0 1.73.18 2.5.5V6a2 2 0 0 0-2-2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h9.5c-.26-.62-.42-1.3-.47-2zM4 6h16v2H4zm19 11.5c0 .82-.25 1.58-.67 2.21l-1.09-1.09c.17-.34.26-.72.26-1.12A2.5 2.5 0 0 0 19 15v1.5l-2.25-2.25L19 12v1.5c2.21 0 4 1.79 4 4m-4 1 2.25 2.25L19 23v-1.5c-2.21 0-4-1.79-4-4 0-.82.25-1.58.67-2.21l1.09 1.09c-.17.34-.26.72-.26 1.12A2.5 2.5 0 0 0 19 20z"/></svg>������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-sync.svg�����������������������0000664�0000000�0000000�00000000731�14753064456�0027264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 17.5c0 .89.18 1.73.5 2.5H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h16c1.11 0 2 .89 2 2v5.5c-.77-.32-1.61-.5-2.5-.5h.5V8H4v3h15.5a6.5 6.5 0 0 0-6.5 6.5m6 2.5a2.5 2.5 0 0 1-2.5-2.5c0-.4.09-.78.26-1.12l-1.09-1.09c-.42.63-.67 1.39-.67 2.21 0 2.21 1.79 4 4 4V23l2.25-2.25L19 18.5zm0-6.5V12l-2.25 2.25L19 16.5V15a2.5 2.5 0 0 1 2.5 2.5c0 .4-.09.78-.26 1.12l1.09 1.09c.42-.63.67-1.39.67-2.21 0-2.21-1.79-4-4-4"/></svg>���������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-wireless-off-outline.svg�������0000664�0000000�0000000�00000000701�14753064456�0032367�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c-2.15 0-4.3.69-6.1 2.08L7.32 5.5c3.13-2.26 7.52-2 10.34.83l1.41-1.41C17.12 2.96 14.56 2 12 2M3.28 4 2 5.27 7.73 11H6a2 2 0 0 0-2 2v8c0 1.11.89 2 2 2h12c.47 0 .92-.16 1.27-.46l.46.46L21 21.72M12 6c-1.13 0-2.25.31-3.23.94l1.47 1.47c1.49-.73 3.34-.49 4.59.75l1.41-1.41A5.96 5.96 0 0 0 12 6m.82 5 2 2H18v2h-1.18L20 18.18V13a2 2 0 0 0-2-2M6 13h3.73l2 2H6m0 2h7.73l4 4H6Z"/></svg>���������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-wireless-off.svg���������������0000664�0000000�0000000�00000000651�14753064456�0030716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c-2.15 0-4.3.69-6.1 2.08L7.32 5.5c3.13-2.26 7.52-2 10.34.83l1.41-1.41C17.12 2.96 14.56 2 12 2M3.28 4 2 5.27 7.73 11H6a2 2 0 0 0-2 2v8c0 1.11.89 2 2 2h12c.5 0 .92-.18 1.27-.46l.46.46L21 21.72M12 6c-1.13 0-2.25.31-3.23.94l1.47 1.47c1.49-.73 3.34-.49 4.59.75l1.41-1.41A5.96 5.96 0 0 0 12 6m.82 5 3 3H18v2.18l2 2V13a2 2 0 0 0-2-2M6 14h4.73l3 3H6Z"/></svg>���������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-wireless-outline.svg�����������0000664�0000000�0000000�00000000512�14753064456�0031617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 11H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2m0 10H6v-4h12zm0-6H6v-2h12zM4.93 4.92l1.41 1.41c3.12-3.13 8.19-3.13 11.32 0l1.41-1.41C15.17 1 8.84 1 4.93 4.92m2.83 2.83 1.41 1.41a4.01 4.01 0 0 1 5.66 0l1.41-1.41a6 6 0 0 0-8.48 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card-wireless.svg�������������������0000664�0000000�0000000�00000000501�14753064456�0030140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4.93 4.92 1.41 1.41c3.12-3.13 8.19-3.13 11.32 0l1.41-1.41C15.17 1 8.84 1 4.93 4.92m2.83 2.83 1.41 1.41a4.01 4.01 0 0 1 5.66 0l1.41-1.41a6 6 0 0 0-8.48 0M18 11H6a2 2 0 0 0-2 2v8c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2v-8a2 2 0 0 0-2-2m0 6H6v-3h12z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/credit-card.svg����������������������������0000664�0000000�0000000�00000000241�14753064456�0026306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m0 7H4V8h16Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cricket.svg��������������������������������0000664�0000000�0000000�00000000534�14753064456�0025556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.34 17.77 1.41-1.41L20 20.58 18.56 22zM18.5 2A3.5 3.5 0 0 1 22 5.5 3.5 3.5 0 0 1 18.5 9 3.5 3.5 0 0 1 15 5.5 3.5 3.5 0 0 1 18.5 2M2.24 7.11l2.83-2.83a1.02 1.02 0 0 1 1.43 0l8.47 8.49c.39.39.39 1.02 0 1.41L12.14 17a.99.99 0 0 1-1.42 0L2.24 8.53c-.39-.4-.39-1.03 0-1.42"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/crop-free.svg������������������������������0000664�0000000�0000000�00000000312�14753064456�0026006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-4v2h4v4h2V5a2 2 0 0 0-2-2m0 16h-4v2h4a2 2 0 0 0 2-2v-4h-2M5 15H3v4a2 2 0 0 0 2 2h4v-2H5M3 5v4h2V5h4V3H5a2 2 0 0 0-2 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/crop-landscape.svg�������������������������0000664�0000000�0000000�00000000241�14753064456�0027020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 17H5V7h14m0-2H5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/crop-portrait.svg��������������������������0000664�0000000�0000000�00000000241�14753064456�0026732�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 19H7V5h10m0-2H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/crop-rotate.svg����������������������������0000664�0000000�0000000�00000000550�14753064456�0026367�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.47 21.5C4.2 19.93 1.86 16.76 1.5 13H0c.5 6.16 5.66 11 11.95 11 .23 0 .44 0 .66-.03L8.8 20.15zM12.05 0c-.23 0-.44 0-.66.04l3.81 3.81 1.33-1.35c3.27 1.57 5.61 4.74 5.97 8.5H24c-.5-6.16-5.66-11-11.95-11M16 14h2V8a2 2 0 0 0-2-2h-6v2h6zm-8 2V4H6v2H4v2h2v8a2 2 0 0 0 2 2h8v2h2v-2h2v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/crop-square.svg����������������������������0000664�0000000�0000000�00000000241�14753064456�0026366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 18H6V6h12m0-2H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/crop.svg�����������������������������������0000664�0000000�0000000�00000000235�14753064456�0025073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 17V1H5v4H1v2h4v10a2 2 0 0 0 2 2h10v4h2v-4h4v-2m-6-2h2V7a2 2 0 0 0-2-2H9v2h8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cross-bolnisi.svg��������������������������0000664�0000000�0000000�00000001305�14753064456�0026715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22 7-.5-.5c-1.57 1.5-3.03 2.9-4.57 3.68-1.43.73-2.49.73-3.93.82.09-1.44.09-2.5.82-3.93.78-1.54 2.18-3 3.68-4.57L17 2c-1.68 1.23-3.36 1.83-5 1.83S8.68 3.23 7 2l-.5.5C8 4.07 9.4 5.53 10.18 7.07c.73 1.43.73 2.49.82 3.93-1.44-.09-2.5-.09-3.93-.82C5.53 9.4 4.06 8 2.5 6.5L2 7c1.23 1.68 1.83 3.36 1.83 5s-.6 3.32-1.83 5l.5.5c1.57-1.5 3.03-2.9 4.57-3.68 1.43-.73 2.49-.73 3.93-.82-.09 1.44-.09 2.5-.82 3.93-.78 1.54-2.18 3-3.68 4.57l.5.5c1.68-1.23 3.36-1.83 5-1.83s3.32.6 5 1.83l.5-.5c-1.5-1.57-2.9-3.03-3.68-4.57-.73-1.43-.73-2.49-.82-3.93 1.44.09 2.5.09 3.93.82 1.54.78 3 2.18 4.57 3.68l.5-.5c-1.23-1.68-1.83-3.36-1.83-5s.6-3.32 1.83-5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cross-celtic.svg���������������������������0000664�0000000�0000000�00000000733�14753064456�0026525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.8 8a5.97 5.97 0 0 0-4.3-4.3V2h-3v1.7A5.97 5.97 0 0 0 6.2 8H4v3h2.2a5.97 5.97 0 0 0 4.3 4.3V22h3v-6.7a5.97 5.97 0 0 0 4.3-4.3h2.17V8zm-5.76 1.53L14.5 11h1.26a4.08 4.08 0 0 1-2.26 2.26V12l-1.44-2.44L12 9.5l-.06.06L10.5 12v1.26A4.1 4.1 0 0 1 8.24 11H9.5l2.46-1.47.04-.03h-.04L9.5 8H8.24a4.08 4.08 0 0 1 2.26-2.26V7l1.44 2.44.06.06.06-.06L13.5 7V5.74c1.03.42 1.85 1.23 2.26 2.26H14.5l-2.46 1.5H12z"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cross-outline.svg��������������������������0000664�0000000�0000000�00000000230�14753064456�0026731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 6V1h-7v5H3v7h5.5v10h7V13H21V6zm3.5 5h-5.5v10h-3V11H5V8h5.5V3h3v5H19z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cross.svg����������������������������������0000664�0000000�0000000�00000000165�14753064456�0025263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 2h3v6H19v3h-5.5v11h-3V11H5V8h5.5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/crosshairs-gps.svg�������������������������0000664�0000000�0000000�00000000550�14753064456�0027077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m-8.95 5H1v-2h2.05C3.5 6.83 6.83 3.5 11 3.05V1h2v2.05c4.17.45 7.5 3.78 7.95 7.95H23v2h-2.05c-.45 4.17-3.78 7.5-7.95 7.95V23h-2v-2.05C6.83 20.5 3.5 17.17 3.05 13M12 5a7 7 0 0 0-7 7 7 7 0 0 0 7 7 7 7 0 0 0 7-7 7 7 0 0 0-7-7"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/crosshairs-off.svg�������������������������0000664�0000000�0000000�00000000645�14753064456�0027065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.94 11C20.5 6.83 17.17 3.5 13 3.06V1h-2v2.06a8.4 8.4 0 0 0-3.16.97l1.5 1.5A6.995 6.995 0 0 1 19 12c0 .94-.19 1.84-.5 2.65l1.5 1.5c.5-.96.82-2.02.95-3.15H23v-2zM3 4.27l2.04 2.04A8.9 8.9 0 0 0 3.06 11H1v2h2.06c.44 4.17 3.77 7.5 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21 21 19.73 4.27 3zm13.27 13.27a6.995 6.995 0 0 1-9.81-9.81z"/></svg>�������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/crosshairs-question.svg��������������������0000664�0000000�0000000�00000000746�14753064456�0030164�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.05 13H1v-2h2.05C3.5 6.83 6.83 3.5 11 3.05V1h2v2.05c4.17.45 7.5 3.78 7.95 7.95H23v2h-2.05c-.45 4.17-3.78 7.5-7.95 7.95V23h-2v-2.05C6.83 20.5 3.5 17.17 3.05 13M12 5c-3.87 0-7 3.13-7 7s3.13 7 7 7 7-3.13 7-7-3.13-7-7-7m-.87 12.25h1.75V15.5h-1.75zM12 6.75c-1.93 0-3.5 1.57-3.5 3.5h1.75c0-.97.78-1.75 1.75-1.75s1.75.78 1.75 1.75c0 1.75-2.62 1.53-2.62 4.38h1.75c0-1.97 2.62-2.19 2.62-4.38 0-1.93-1.57-3.5-3.5-3.5"/></svg>��������������������������mkdocs-material-9.6.4/material/templates/.icons/material/crosshairs.svg�����������������������������0000664�0000000�0000000�00000000453�14753064456�0026312�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.05 13H1v-2h2.05C3.5 6.83 6.83 3.5 11 3.05V1h2v2.05c4.17.45 7.5 3.78 7.95 7.95H23v2h-2.05c-.45 4.17-3.78 7.5-7.95 7.95V23h-2v-2.05C6.83 20.5 3.5 17.17 3.05 13M12 5a7 7 0 0 0-7 7 7 7 0 0 0 7 7 7 7 0 0 0 7-7 7 7 0 0 0-7-7"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/crowd.svg����������������������������������0000664�0000000�0000000�00000001656�14753064456�0025256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.69 9.12a.88.88 0 0 0-.65-.28c-.41 0-.72.19-.92.58s-.15.76.17 1.11q1.77 1.59 2.25 2.25c.41.56.61 1.38.61 2.44 0 1.31.5 2.28 1.5 2.95.56.44 1.17.77 1.85.99v-3.89c0-.94-.33-1.72-.96-2.35m8.92.05c-.62.62-.96 1.39-.96 2.3v3.93c.96-.34 1.76-.87 2.42-1.57.65-.7.98-1.47.98-2.41 0-1.13.19-1.94.57-2.44.09-.16.26-.36.53-.61.23-.25.47-.49.71-.71.23-.21.46-.43.68-.65l.33-.28a.9.9 0 0 0 .28-.66c0-.28-.09-.53-.28-.73s-.42-.3-.72-.3-.5.09-.69.28M12 20c.69 0 1.36-.09 2-.28v-3.57c0-.59-.18-1.05-.59-1.49Q12.795 14 12 14c-.53 0-1 .2-1.38.61-.4.39-.62.85-.62 1.45v3.66c.64.19 1.31.28 2 .28M9 8.5c0 .83-.67 1.5-1.5 1.5S6 9.33 6 8.5 6.67 7 7.5 7 9 7.67 9 8.5m9 0c0 .83-.67 1.5-1.5 1.5S15 9.33 15 8.5 15.67 7 16.5 7s1.5.67 1.5 1.5m-4.5-3c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5S11.17 4 12 4s1.5.67 1.5 1.5m0 5.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5"/></svg>����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/crown-circle-outline.svg�������������������0000664�0000000�0000000�00000000435�14753064456�0030176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.47 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8m-4-6L7 8l3 2 2-3 2 3 3-2-1 6zm.56 2c-.34 0-.56-.22-.56-.56V15h8v.44c0 .34-.22.56-.56.56z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/crown-circle.svg���������������������������0000664�0000000�0000000�00000000346�14753064456�0026522�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.47 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m4 13.44c0 .34-.22.56-.56.56H8.56c-.34 0-.56-.22-.56-.56V15h8zM16 14H8L7 8l3 2 2-3 2 3 3-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/crown-outline.svg��������������������������0000664�0000000�0000000�00000000302�14753064456�0026730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 8 3 5.2 3-2.7-.7 3.5H6.7L6 10.5l3 2.7zm0-4-3.5 6L3 5l2 11h14l2-11-5.5 5zm7 14H5v1c0 .6.4 1 1 1h12c.6 0 1-.4 1-1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/crown.svg����������������������������������0000664�0000000�0000000�00000000237�14753064456�0025262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 16 3 5l5.5 5L12 4l3.5 6L21 5l-2 11zm14 3c0 .6-.4 1-1 1H6c-.6 0-1-.4-1-1v-1h14z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cryengine.svg������������������������������0000664�0000000�0000000�00000001117�14753064456�0026113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.03 12.5c-.03.5-2.12 2.73-5.21 3.74-3.77 1.26-9.85.79-9.85-3.94 0-2.22 1.81-4.03 4.03-4.03 2.25 0 4.05 1.82 4.05 4.04 0 1.08-.47 2.13-1.18 2.87.67-.01 3.07-.18 5.34-2.06.25-.24.41-.44.48-.57.02-.05.05-.09.04-.15 0-.48-2.61-4.21-8.01-5.28 6.5.34 10.28 4.2 10.31 5.28zM12 10c-1.26 0-2.29 1.04-2.29 2.3A2.29 2.29 0 0 0 12 14.59c1.27 0 2.29-1.02 2.29-2.29 0-1.26-1.02-2.3-2.29-2.3m-8.69 2.34v.08c.1.52 1.51 2.99 6.97 4.46-6.32-.51-9.16-3.6-9.24-4.46h-.01v-.07c0-.85 3.93-4.77 9.89-5.2-4.78 1.11-7.61 4.72-7.61 5.19"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/crystal-ball.svg���������������������������0000664�0000000�0000000�00000001030�14753064456�0026513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.38 8.38 2.12.96 2.12-.96-.96 2.12.96 2.12-2.12-.96-2.12.96.96-2.12zM16.5 2.5l1.09 2.91L20.5 6.5l-2.91 1.09-1.09 2.91-1.09-2.91L12.5 6.5l2.91-1.09zM6 19h1v-1a1 1 0 0 1 1-1h.26a7.47 7.47 0 0 1-3.76-6.5A7.5 7.5 0 0 1 12 3c1.05 0 2.05.22 2.96.61l-.37.98-1.42.53Q12.6 5 12 5a5.5 5.5 0 0 0-5.5 5.5A5.5 5.5 0 0 0 12 16c2.91 0 5.3-2.27 5.5-5.13l.91-2.46.71-.27c.25.74.38 1.54.38 2.36 0 2.78-1.5 5.2-3.76 6.5H16a1 1 0 0 1 1 1v1h1a2 2 0 0 1 2 2v1H4v-1a2 2 0 0 1 2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cube-off-outline.svg�����������������������0000664�0000000�0000000�00000000702�14753064456�0027272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3 4.3 6.19l-.77.43c-.32.17-.53.5-.53.88v9c0 .38.21.71.53.88l7.9 4.44c.16.12.36.18.57.18s.41-.06.57-.18l4.71-2.65 3.56 3.56zM5 15.91v-6.7l5.29 2.97.71.71v6.4zm8 3.38v-4.4l2.82 2.81zM9 5.82 7.56 4.36l3.87-2.18c.16-.12.36-.18.57-.18s.41.06.57.18l7.9 4.44c.32.17.53.5.53.88v9c0 .35-.18.66-.47.83L19 15.8V9.21l-4.22 2.37-1.47-1.47 4.65-2.61L12 4.15z"/></svg>��������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cube-off.svg�������������������������������0000664�0000000�0000000�00000000610�14753064456�0025613�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.84 22.73-3.56-3.56-4.71 2.65c-.16.12-.36.18-.57.18s-.41-.06-.57-.18l-7.9-4.44A.99.99 0 0 1 3 16.5v-9c0-.38.21-.71.53-.88l.77-.43L1.11 3l1.28-1.27 19.72 19.73zM12 4.15l5.96 3.35-4.65 2.61 7.22 7.22c.29-.17.47-.48.47-.83v-9c0-.38-.21-.71-.53-.88l-7.9-4.44C12.41 2.06 12.21 2 12 2s-.41.06-.57.18L7.56 4.36 9 5.82z"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cube-outline.svg���������������������������0000664�0000000�0000000�00000000562�14753064456�0026526�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 16.5c0 .38-.21.71-.53.88l-7.9 4.44c-.16.12-.36.18-.57.18s-.41-.06-.57-.18l-7.9-4.44A.99.99 0 0 1 3 16.5v-9c0-.38.21-.71.53-.88l7.9-4.44c.16-.12.36-.18.57-.18s.41.06.57.18l7.9 4.44c.32.17.53.5.53.88zM12 4.15 6.04 7.5 12 10.85l5.96-3.35zM5 15.91l6 3.38v-6.71L5 9.21zm14 0v-6.7l-6 3.37v6.71z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cube-scan.svg������������������������������0000664�0000000�0000000�00000001077�14753064456�0025775�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 22v-2h3v-3h2v3.5c0 .39-.16.74-.46 1.04s-.65.46-1.04.46zM7 22H3.5c-.39 0-.74-.16-1.04-.46S2 20.89 2 20.5V17h2v3h3zM17 2h3.5c.39 0 .74.16 1.04.46s.46.65.46 1.04V7h-2V4h-3zM7 2v2H4v3H2V3.5c0-.39.16-.74.46-1.04S3.11 2 3.5 2zm6 15.25 4-2.3v-4.59l-4 2.3zm-1-6.33 4-2.29-4-2.35-4 2.35zm-5 4.03 4 2.3v-4.59l-4-2.3zm11.23-7.36c.5.32.77.75.77 1.32v6.32c0 .57-.27 1-.77 1.32l-5.48 3.18q-.75.48-1.5 0l-5.48-3.18c-.5-.32-.77-.75-.77-1.32V8.91c0-.57.27-1 .77-1.32l5.48-3.18c.25-.13.5-.19.75-.19s.5.06.75.19z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cube-send.svg������������������������������0000664�0000000�0000000�00000000351�14753064456�0025774�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 4 9 8.04v7.92L16 20l7-4.04V8.04m-7-1.73 3.8 2.19-3.8 2.19-3.79-2.19M0 7v2h7V7m4 3.11 4 2.31v4.69l-4-2.3m10-4.7v4.7l-4 2.3v-4.69M2 11v2h5v-2m-3 4v2h3v-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cube-unfolded.svg��������������������������0000664�0000000�0000000�00000000271�14753064456�0026644�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 9V4h7v5h10v7h-5v5h-7v-5H1V9zm10 7h-3v3h3zM8 9h3V6H8zm-2 5v-3H3v3zm12-3v3h3v-3zm-5 0v3h3v-3zm-5 0v3h3v-3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cube.svg�����������������������������������0000664�0000000�0000000�00000000475�14753064456�0025054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 16.5c0 .38-.21.71-.53.88l-7.9 4.44c-.16.12-.36.18-.57.18s-.41-.06-.57-.18l-7.9-4.44A.99.99 0 0 1 3 16.5v-9c0-.38.21-.71.53-.88l7.9-4.44c.16-.12.36-.18.57-.18s.41.06.57.18l7.9 4.44c.32.17.53.5.53.88zM12 4.15 6.04 7.5 12 10.85l5.96-3.35z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cup-off-outline.svg������������������������0000664�0000000�0000000�00000000357�14753064456�0027151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3.83 2 2 2h12.95L17.5 15.66l1.8 1.84L21 2M2.27 3 1 4.27 3.53 6.8 5 20.23c.13 1 .97 1.77 2 1.77h10c.47 0 .91-.18 1.26-.46L19.73 23 21 21.73M5.78 9.06 16.73 20H7Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cup-off.svg��������������������������������0000664�0000000�0000000�00000000342�14753064456�0025466�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 4.27 2.28 3 21 21.72 19.73 23l-1.46-1.46c-.34.29-.77.46-1.27.46H7a2.02 2.02 0 0 1-2-1.77L3.53 6.8zM18.32 8l.45-4H5.82l-2-2H21l-1.71 15.47L9.82 8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cup-outline.svg����������������������������0000664�0000000�0000000�00000000243�14753064456�0026373�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3 2 2 18.23c.13 1 .97 1.77 2 1.77h10c1 0 1.87-.77 2-1.77L21 2zm2.22 2h13.56L17 20H7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cup-water.svg������������������������������0000664�0000000�0000000�00000000345�14753064456�0026041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.32 8H5.67l-.44-4h13.54M12 19a3 3 0 0 1-3-3c0-2 3-5.4 3-5.4s3 3.4 3 5.4a3 3 0 0 1-3 3M3 2l2 18.23c.13 1 .97 1.77 2 1.77h10c1 0 1.87-.77 2-1.77L21 2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cup.svg������������������������������������0000664�0000000�0000000�00000000247�14753064456�0024722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.32 8H5.67l-.44-4h13.54M3 2l2 18.23c.13 1 .97 1.77 2 1.77h10c1 0 1.87-.77 2-1.77L21 2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cupboard-outline.svg�����������������������0000664�0000000�0000000�00000000355�14753064456�0027407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2c-1.1 0-2 .9-2 2v15a2 2 0 0 0 2 2v1h2v-1h6v1h2v-1c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2zm0 2h10v3H7zm0 5h10v3H7zm0 5h4v5H7zm6 0h4v5h-4zm-5 1v3h2v-3zm6 0v3h2v-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cupboard.svg�������������������������������0000664�0000000�0000000�00000000332�14753064456�0025725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 2H7c-1.1 0-2 .9-2 2v15a2 2 0 0 0 2 2v1h2v-1h6v1h2v-1c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2m-7 16H8v-3h2zm6 0h-2v-3h2zm1-6H7V9h10zm0-5H7V4h10z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cupcake.svg��������������������������������0000664�0000000�0000000�00000000505�14753064456�0025543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1.5A2.5 2.5 0 0 1 14.5 4 2.5 2.5 0 0 1 12 6.5 2.5 2.5 0 0 1 9.5 4 2.5 2.5 0 0 1 12 1.5M15.87 5C18 5 20 7 20 9c2.7 0 2.7 4 0 4H4c-2.7 0-2.7-4 0-4 0-2 2-4 4.13-4 .44 1.73 2.01 3 3.87 3s3.43-1.27 3.87-3M5 15h3l1 7H7zm5 0h4l-1 7h-2zm6 0h3l-2 7h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/curling.svg��������������������������������0000664�0000000�0000000�00000000441�14753064456�0025572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 3v2c2.5 0 3.9.05 4.72.41.54.24 1.01.8 1.53 1.59H5v2h14.62l-.73-1.45c-1.03-2.05-1.93-3.33-3.36-3.96C14.1 2.95 12.5 3 10 3m-4 8c-2.22 0-4 1.78-4 4v3c0 2.22 1.78 4 4 4h12c2.22 0 4-1.78 4-4v-3c0-2.22-1.78-4-4-4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/currency-bdt.svg���������������������������0000664�0000000�0000000�00000000705�14753064456�0026533�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.09 10.5V9h-8.5V4.5A1.5 1.5 0 0 0 8.09 3a1.5 1.5 0 0 0-1.5 1.5A1.5 1.5 0 0 0 8.09 6v3h-3v1.5h3v6.2c0 2.36 1.91 4.27 4.25 4.3 2.34-.04 4.2-1.96 4.16-4.3 0-1.59-.75-3.09-2-4.08a4 4 0 0 0-.7-.47c-.22-.1-.46-.15-.7-.15-.71 0-1.36.39-1.71 1-.19.3-.29.65-.29 1 .01 1.1.9 2 2.01 2 .62 0 1.2-.31 1.58-.8.21.47.31.98.31 1.5.04 1.5-1.14 2.75-2.66 2.8-1.53 0-2.76-1.27-2.75-2.8v-6.2z"/></svg>�����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/currency-brl.svg���������������������������0000664�0000000�0000000�00000000774�14753064456�0026547�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 15h2c0 1.08 1.37 2 3 2s3-.92 3-2c0-1.1-1.04-1.5-3.24-2.03C14.64 12.44 12 11.78 12 9c0-1.79 1.47-3.31 3.5-3.82V3h3v2.18C20.53 5.69 22 7.21 22 9h-2c0-1.08-1.37-2-3-2s-3 .92-3 2c0 1.1 1.04 1.5 3.24 2.03C19.36 11.56 22 12.22 22 15c0 1.79-1.47 3.31-3.5 3.82V21h-3v-2.18C13.47 18.31 12 16.79 12 15M2 3h3.5A5.5 5.5 0 0 1 11 8.5c0 2.19-1.29 4.09-3.14 4.97L11.64 21H9.4l-3.52-7H4v7H2zm3.5 9A3.5 3.5 0 0 0 9 8.5 3.5 3.5 0 0 0 5.5 5H4v7z"/></svg>����mkdocs-material-9.6.4/material/templates/.icons/material/currency-btc.svg���������������������������0000664�0000000�0000000�00000000452�14753064456�0026531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.06 11.57A3.9 3.9 0 0 0 18 9c0-1.86-1.27-3.43-3-3.87V3h-2v2h-2V3H9v2H6v2h2v10H6v2h3v2h2v-2h2v2h2v-2c2.21 0 4-1.79 4-4 0-1.45-.78-2.73-1.94-3.43M10 7h4c1.1 0 2 .9 2 2s-.9 2-2 2h-4zm5 10h-5v-4h5c1.1 0 2 .9 2 2s-.9 2-2 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/currency-cny.svg���������������������������0000664�0000000�0000000�00000000217�14753064456�0026551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.28 12H18v2h-5v7h-2v-7H6v-2h4.72L5 3h2.37L12 10.29 16.63 3H19z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/currency-eth.svg���������������������������0000664�0000000�0000000�00000000164�14753064456�0026541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 5h12v2H6m1 4h10v2H7m-1.5 4h13v2h-13"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/currency-eur-off.svg�����������������������0000664�0000000�0000000�00000001000�14753064456�0027312�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3 6.7 8.59c-.06.14-.13.27-.2.41H3l-1 2h4.06c-.06.33-.06.66-.06 1s0 .67.06 1H3l-1 2h4.5c1.26 3.5 4.58 6 8.5 6 1.21 0 2.36-.26 3.41-.7l2.43 2.43zM8.58 13c-.05-.33-.08-.66-.08-1s.03-.67.08-1h.53l2 2zM15 18.5c-2.5 0-4.68-1.42-5.76-3.5h3.87l3.33 3.33c-.47.1-.94.17-1.44.17M12.2 9H16l-1 2h-.8zm-1.7-1.68L8.74 5.54A8.96 8.96 0 0 1 15 3c2.3 0 4.41.87 6 2.3l-1.77 1.77A6.47 6.47 0 0 0 15 5.5c-1.74 0-3.31.7-4.5 1.82"/></svg>mkdocs-material-9.6.4/material/templates/.icons/material/currency-eur.svg���������������������������0000664�0000000�0000000�00000000631�14753064456�0026553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 18.5c-2.5 0-4.68-1.42-5.76-3.5H15l1-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15l1-2H9.24A6.49 6.49 0 0 1 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3A8.96 8.96 0 0 0 15 3c-3.92 0-7.24 2.5-8.5 6H3l-1 2h4.06c-.06.33-.06.66-.06 1s0 .67.06 1H3l-1 2h4.5c1.26 3.5 4.58 6 8.5 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57"/></svg>�������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/currency-fra.svg���������������������������0000664�0000000�0000000�00000000173�14753064456�0026531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 5V3H7v13H5v2h2v3h2v-3h4v-2H9v-3h8v-2H9V5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/currency-gbp.svg���������������������������0000664�0000000�0000000�00000000547�14753064456�0026536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 21c1.93 0 3.62-1.17 4-3l-1.75-.88C16 18.21 15.33 19 14 19H9.1c.83-1 1.5-2.34 1.5-4 0-.35-.03-.69-.1-1H14v-2H9.82C9 10.42 8 9.6 8 8a3.5 3.5 0 0 1 6.78-1.22L16.63 6c-.8-2.05-2.79-3.5-5.13-3.5C8.46 2.5 6 4.96 6 8c0 1.78.79 2.9 1.5 4H6v2h2.47c.08.31.13.64.13 1 0 2.7-2.6 4-2.6 4v2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/currency-ils.svg���������������������������0000664�0000000�0000000�00000000263�14753064456�0026550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 16a5 5 0 0 1-5 5H8V9h2v10h7a3 3 0 0 0 3-3V3h2zm-6-8v7h-2V8a3 3 0 0 0-3-3H4v16H2V3h9a5 5 0 0 1 5 5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/currency-inr.svg���������������������������0000664�0000000�0000000�00000000360�14753064456�0026547�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 3h10l-1 2h-3.26c.48.58.84 1.26 1.05 2H18l-1 2h-2a5.56 5.56 0 0 1-4.8 4.96V14h-.7l6 7H13l-6-7v-2h2.5c1.76 0 3.22-1.3 3.46-3H7l1-2h4.66C12.1 5.82 10.9 5 9.5 5H7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/currency-jpy.svg���������������������������0000664�0000000�0000000�00000000242�14753064456�0026560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.92 11H18v2h-5v2h5v2h-5v4h-2v-4H6v-2h5v-2H6v-2h4.08L5 3h2.37L12 10.29 16.63 3H19z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/currency-krw.svg���������������������������0000664�0000000�0000000�00000000542�14753064456�0026564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3h2l1.33 6h4l1.34-6h2.66l1.34 6h4L20 3h2l-1.33 6H22v2h-1.78l-.44 2H22v2h-2.67L18 21h-2.67L14 15h-4l-1.33 6H6l-1.33-6H2v-2h2.22l-.44-2H2V9h1.33zm11.11 8h-2.22l-.45 2h3.12zm-5.78 7L8 15H6.67zm1.56-7H5.78l.44 2h2.22zm7.78 7 .66-3H16zm1.55-7h-3.11l.45 2h2.22zM12 6l-.67 3h1.34z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/currency-kzt.svg���������������������������0000664�0000000�0000000�00000000161�14753064456�0026566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14v2H5zm0 3h14v2h-6v13h-2V8H5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/currency-mnt.svg���������������������������0000664�0000000�0000000�00000000314�14753064456�0026554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 5v3.62l4-1.45v2.12l-4 1.45v1.76l4-1.43v2.13l-4 1.45V21h-2v-5.62l-4 1.46v-2.13l4-1.47v-1.77l-4 1.45V10.8l4-1.45V5H5V3h14v2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/currency-ngn.svg���������������������������0000664�0000000�0000000�00000000344�14753064456�0026543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 9h2V3h2l3.42 6H16V3h2v6h2v2h-2v2h2v2h-2v6h-2l-3.43-6H8v6H6v-6H4v-2h2v-2H4zm4 0h1.13L8 7.03zm0 2v2h3.42l-1.14-2zm8 6v-2h-1.15zm-3.44-6 1.15 2H16v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/currency-php.svg���������������������������0000664�0000000�0000000�00000000462�14753064456�0026551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 2v4H3v2h2v2H3v2h2v10h2v-6h6c2.7 0 5.16-1.56 6.32-4H22v-2h-2.08c.11-.66.11-1.34 0-2H22V6h-2.68C18.16 3.56 15.7 2 13 2M7 4h6c1.57 0 3.06.74 4 2H7zm6 10H7v-2h10c-.94 1.26-2.43 2-4 2m5-5c0 .34-.04.67-.1 1H7V8h10.9c.06.33.1.66.1 1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/currency-rial.svg��������������������������0000664�0000000�0000000�00000000434�14753064456�0026710�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 17h2v2h-2zm3 0h2v2h-2zM9 4h2v11a4 4 0 0 1-4 4H5a3 3 0 0 1-3-3v-4h2v4a1 1 0 0 0 1 1h2c1.11 0 2-.89 2-2zm3 0h2v9h3V8h2v5c0 1.11-.89 2-2 2h-3c-1.11 0-2-.89-2-2zm8 6h2v7a3 3 0 0 1-3 3h-2v-2h2a1 1 0 0 0 1-1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/currency-rub.svg���������������������������0000664�0000000�0000000�00000000327�14753064456�0026552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.5 3H7v9H5v2h2v2H5v2h2v3h2v-3h4v-2H9v-2h4.5c3.04 0 5.5-2.46 5.5-5.5S16.54 3 13.5 3m0 9H9V5h4.5C15.43 5 17 6.57 17 8.5S15.43 12 13.5 12"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/currency-rupee.svg�������������������������0000664�0000000�0000000�00000000353�14753064456�0027101�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.66 7c-.56-1.18-1.76-2-3.16-2H6V3h12v2h-3.26c.48.58.84 1.26 1.05 2H18v2h-2c-.27 2.8-2.63 5-5.5 5h-.73l6.73 7h-2.77L7 14v-2h3.5c1.76 0 3.22-1.3 3.46-3H6V7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/currency-sign.svg��������������������������0000664�0000000�0000000�00000000651�14753064456�0026722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.41 3 3 4.41 5.69 7.1A7.92 7.92 0 0 0 4 12c0 1.85.63 3.55 1.69 4.9L3 19.59 4.41 21l2.69-2.69A7.92 7.92 0 0 0 12 20c1.85 0 3.55-.63 4.9-1.69L19.59 21 21 19.59l-2.69-2.69A7.92 7.92 0 0 0 20 12c0-1.85-.63-3.55-1.69-4.9L21 4.41 19.59 3 16.9 5.69A7.92 7.92 0 0 0 12 4c-1.85 0-3.55.63-4.9 1.69zM12 6c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6"/></svg>���������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/currency-thb.svg���������������������������0000664�0000000�0000000�00000000441�14753064456�0026534�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.1 11.6c.6-.7.9-1.6.9-2.6 0-1.9-1.3-3.4-3-3.9L13 5V3h-2v2H7v14h4v2h2v-2h1c2.2 0 4-1.8 4-4 0-1.5-.8-2.7-1.9-3.4M15 9c0 1.1-.9 2-2 2V7c1.1 0 2 .9 2 2M9 7h2v4H9zm0 10v-4h2v4zm5 0h-1v-4h1c1.1 0 2 .9 2 2s-.9 2-2 2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/currency-try.svg���������������������������0000664�0000000�0000000�00000000337�14753064456�0026601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 8.76V3h2v4.5L15 5v2.36l-4 2.51v2.35l4-2.5v2.36l-4 2.51V19c2.76 0 5-2.24 5-5h2c0 3.87-3.13 7-7 7H9v-5.16l-3 1.88v-2.36l3-1.86v-2.38L6 13v-2.36z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/currency-twd.svg���������������������������0000664�0000000�0000000�00000000236�14753064456�0026557�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 11h18v2h-6v6h6v2h-6a2 2 0 0 1-2-2v-6h-2.65l-4.62 8L4 20l4.04-7H3zm2-8h14v2H5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/currency-uah.svg���������������������������0000664�0000000�0000000�00000000654�14753064456�0026542�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.59 11H18V9h-1.68c.42-.66.68-1.32.68-2 0-2.63-2.5-4-5-4-2.35 0-4.47 2.06-4.71 2.29l1.42 1.42C9.19 6.23 10.71 5 12 5c1.04 0 3 .42 3 2 0 .5-.5 1.24-1.24 2H6v2h5.63c-.42.36-1.88 1.67-2.22 2H6v2h1.68c-.42.66-.68 1.32-.68 2 0 2.63 2.5 4 5 4 2.35 0 4.47-2.06 4.71-2.29l-1.42-1.42c-.47.48-2 1.71-3.29 1.71-1.04 0-3-.42-3-2 0-.5.5-1.24 1.24-2H18v-2h-5.62z"/></svg>������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/currency-usd-off.svg�����������������������0000664�0000000�0000000�00000000571�14753064456�0027326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4.27 4.28 3 21 19.72 19.73 21l-3.67-3.67c-.62.67-1.52 1.22-2.56 1.49V21h-3v-2.18C8.47 18.31 7 16.79 7 15h2c0 1.08 1.37 2 3 2 1.13 0 2.14-.44 2.65-1.08l-2.97-2.97C9.58 12.42 7 11.75 7 9c0-.23 0-.45.07-.66zm7.5.91V3h3v2.18C15.53 5.69 17 7.21 17 9h-2c0-1.08-1.37-2-3-2-.37 0-.72.05-1.05.13L9.4 5.58z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/currency-usd.svg���������������������������0000664�0000000�0000000�00000000556�14753064456�0026561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 15h2c0 1.08 1.37 2 3 2s3-.92 3-2c0-1.1-1.04-1.5-3.24-2.03C9.64 12.44 7 11.78 7 9c0-1.79 1.47-3.31 3.5-3.82V3h3v2.18C15.53 5.69 17 7.21 17 9h-2c0-1.08-1.37-2-3-2s-3 .92-3 2c0 1.1 1.04 1.5 3.24 2.03C14.36 11.56 17 12.22 17 15c0 1.79-1.47 3.31-3.5 3.82V21h-3v-2.18C8.47 18.31 7 16.79 7 15"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/current-ac.svg�����������������������������0000664�0000000�0000000�00000000420�14753064456�0026167�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.43 11C12.28 10.84 10 7 7 7s-4.68 3.18-5 4v2h9.57c.15.16 2.43 4 5.43 4s4.68-3.18 5-4v-2zM7 9c1.17 0 2.18.85 3 2H4.31c.47-.83 1.23-2 2.69-2m10 6c-1.17 0-2.18-.85-3-2h5.69c-.47.83-1.23 2-2.69 2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/current-dc.svg�����������������������������0000664�0000000�0000000�00000000176�14753064456�0026202�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 9v2h20V9zm0 4v2h5v-2zm7 0v2h6v-2zm8 0v2h5v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cursor-default-click-outline.svg�����������0000664�0000000�0000000�00000001177�14753064456�0031635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.5 11 6.38 5.37-.88.18-.64.12c-.63.13-.99.83-.71 1.4l.27.58 1.36 2.94-1.42.66-1.36-2.93-.26-.58a.985.985 0 0 0-1.52-.36l-.51.4-.71.57zm-.74-2.31a.76.76 0 0 0-.76.76V20.9c0 .42.34.76.76.76.19 0 .35-.06.48-.16l1.91-1.55 1.66 3.62c.13.27.4.43.69.43.11 0 .22 0 .33-.08l2.76-1.28c.38-.18.56-.64.36-1.01L17.28 18l2.41-.45a.9.9 0 0 0 .43-.26c.27-.32.23-.79-.12-1.08l-8.74-7.35-.01.01a.76.76 0 0 0-.49-.18M15 10V8h5v2zm-1.17-5.24 2.83-2.83 1.41 1.41-2.83 2.83zM10 0h2v5h-2zM3.93 14.66l2.83-2.83 1.41 1.41-2.83 2.83zm0-11.32 1.41-1.41 2.83 2.83-1.41 1.41zM7 10H2V8h5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cursor-default-click.svg�������������������0000664�0000000�0000000�00000000767�14753064456�0030164�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.76 8.69a.76.76 0 0 0-.76.76V20.9c0 .42.34.76.76.76.19 0 .35-.06.48-.16l1.91-1.55 1.66 3.62c.13.27.4.43.69.43.11 0 .22 0 .33-.08l2.76-1.28c.38-.18.56-.64.36-1.01L17.28 18l2.41-.45a.9.9 0 0 0 .43-.26c.27-.32.23-.79-.12-1.08l-8.74-7.35-.01.01a.76.76 0 0 0-.49-.18M15 10V8h5v2zm-1.17-5.24 2.83-2.83 1.41 1.41-2.83 2.83zM10 0h2v5h-2zM3.93 14.66l2.83-2.83 1.41 1.41-2.83 2.83zm0-11.32 1.41-1.41 2.83 2.83-1.41 1.41zM7 10H2V8h5z"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/material/cursor-default-gesture-outline.svg���������0000664�0000000�0000000�00000002025�14753064456�0032217�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.5 10.54 3.87 3.29-1.87.35.79 1.74.93 2.04-.5.23-.91-1.99-.81-1.77-1.5 1.23zM15.59 8c-.33 0-.59.27-.59.6v8.97a.593.593 0 0 0 .96.47l1.49-1.21 1.29 2.83c.1.22.31.34.53.34.09 0 .17 0 .26-.06l2.14-1.01c.3-.14.44-.5.28-.79l-1.29-2.84 1.87-.36c.12-.03.24-.09.33-.2.21-.24.18-.62-.09-.85L16 8.13a.74.74 0 0 0-.41-.13M12.5 6.73c.22-.07.67.46 1.09 1.03L15 6.71c-.13-.21-.31-.46-.53-.75-.16-.21-.88-1.03-1.81-1.16-.62-.08-1.85.26-2.06 1.81-.13.97.16 1.58.61 2.47.25.52.83 1.88.97 2.7.15.81-.12 1.38-.44 1.34-.3-.04-.54-.47-.71-.71-.14-.19-1.03-1.59-1.36-2.18-.45-.73-1.63-2.27-3.23-2.49-2.09-.28-3 1.46-3.26 2.62L1 10.06v1.82l1.93.27C2.75 15.6 4.5 16.82 5.67 17c1.25.15 2.41-.72 2.57-1.94.17-1.22-.68-3.56-3.28-4.37.14-.54.25-1.26 1.4-1.1.9.12 1.85 1.67 2.57 2.85.65 1.09 1.17 1.95 1.9 2.28.62.28 1.33.25 1.9-.07.69-.39 1.13-1.1 1.27-2.02.22-1.73-1.3-4.46-1.43-4.79-.17-.38-.45-1.02-.07-1.11m-6 8.05c-.07.33-.4.47-.62.44-.5-.06-1.22-.72-1.17-2.69 1.46.6 1.82 1.82 1.79 2.25"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cursor-default-gesture.svg�����������������0000664�0000000�0000000�00000001706�14753064456�0030547�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.59 8c-.33 0-.59.27-.59.6v8.97a.593.593 0 0 0 .96.47l1.49-1.21 1.29 2.83c.1.22.31.34.53.34.09 0 .17 0 .26-.06l2.14-1.01c.3-.14.44-.5.28-.79l-1.29-2.84 1.87-.36c.12-.03.24-.09.33-.2.21-.24.18-.62-.09-.85L16 8.13a.74.74 0 0 0-.41-.13M12.5 6.73c.22-.07.67.46 1.09 1.03L15 6.71c-.13-.21-.31-.46-.53-.75-.16-.21-.88-1.03-1.81-1.16-.62-.08-1.85.26-2.06 1.81-.13.97.16 1.58.61 2.47.25.52.83 1.88.97 2.7.15.81-.12 1.38-.44 1.34-.3-.04-.54-.47-.71-.71-.14-.19-1.03-1.59-1.36-2.18-.45-.73-1.63-2.27-3.23-2.49-2.09-.28-3 1.46-3.26 2.62L1 10.06v1.82l1.93.27C2.75 15.6 4.5 16.82 5.67 17c1.25.15 2.41-.72 2.57-1.94.17-1.22-.68-3.56-3.28-4.37.14-.54.25-1.26 1.4-1.1.9.12 1.85 1.67 2.57 2.85.65 1.09 1.17 1.95 1.9 2.28.62.28 1.33.25 1.9-.07.69-.39 1.13-1.1 1.27-2.02.22-1.73-1.3-4.46-1.43-4.79-.17-.38-.45-1.02-.07-1.11m-6 8.05c-.07.33-.4.47-.62.44-.5-.06-1.22-.72-1.17-2.69 1.46.6 1.82 1.82 1.79 2.25"/></svg>����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cursor-default-outline.svg�����������������0000664�0000000�0000000�00000000636�14753064456�0030551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.07 14.27a.997.997 0 0 1 1.33.48l2.3 4.99 1.8-.85-2.31-4.98c-.24-.5-.02-1.1.48-1.33l.28-.08 2.3-.45L8 5.12V15.9l1.82-1.47zm3.57 7.7a.99.99 0 0 1-1.33-.47l-2.18-4.74-2.51 2.02c-.17.14-.38.22-.62.22a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1c.24 0 .47.09.64.23l.01-.01 11.49 9.64a1.001 1.001 0 0 1-.44 1.75l-3.16.62 2.2 4.73c.26.5.02 1.09-.48 1.32z"/></svg>��������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cursor-default.svg�������������������������0000664�0000000�0000000�00000000444�14753064456�0027071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.64 21.97a.99.99 0 0 1-1.33-.47l-2.18-4.74-2.51 2.02c-.17.14-.38.22-.62.22a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1c.24 0 .47.09.64.23l.01-.01 11.49 9.64a1.001 1.001 0 0 1-.44 1.75l-3.16.62 2.2 4.73c.26.5.02 1.09-.48 1.32z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cursor-move.svg����������������������������0000664�0000000�0000000�00000000305�14753064456�0026407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 6v5h5V7.75L22.25 12 18 16.25V13h-5v5h3.25L12 22.25 7.75 18H11v-5H6v3.25L1.75 12 6 7.75V11h5V6H7.75L12 1.75 16.25 6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cursor-pointer.svg�������������������������0000664�0000000�0000000�00000000454�14753064456�0027126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.75 10.19.63.13 4.17 2.08c.7.23 1.16.92 1.1 1.66v.26l-.9 6.12c-.06.43-.25.83-.6 1.11-.31.3-.72.45-1.15.45h-6.88c-.49 0-.94-.18-1.27-.53L2.86 15.5l.9-1c.24-.25.62-.39.98-.37h.29L9 15V4.5a2 2 0 0 1 2-2 2 2 0 0 1 2 2v5.69z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cursor-text.svg����������������������������0000664�0000000�0000000�00000000372�14753064456�0026431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19a1 1 0 0 0 1 1h2v2h-2.5c-.55 0-1.5-.45-1.5-1 0 .55-.95 1-1.5 1H8v-2h2a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H8V2h2.5c.55 0 1.5.45 1.5 1 0-.55.95-1 1.5-1H16v2h-2a1 1 0 0 0-1 1z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/curtains-closed.svg������������������������0000664�0000000�0000000�00000000165�14753064456�0027231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 3H1V1h22zM2 22h9V4H2zM22 4h-9v18h9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/curtains.svg�������������������������������0000664�0000000�0000000�00000000237�14753064456�0025762�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 3H1V1h22zM2 22h4c0-3-2-5-2-5 6-4 7-13 7-13H2zM22 4h-9s1 9 7 13c0 0-2 2-2 5h4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cylinder-off.svg���������������������������0000664�0000000�0000000�00000001055�14753064456�0026512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.64 4.44 6.03 2.83C8.15 2.1 10.82 2 12 2c2.11 0 9 .29 9 4v11.8l-2.94-2.94c.33.11.64.24.94.39v-6.5c-1.72.88-4.18 1.14-5.83 1.22L11.18 8H12c3.87 0 7-.89 7-2s-3.13-2-7-2c-1.65 0-3.16.17-4.36.44m14.47 17.02-1.27 1.27-1.93-1.93C16.7 21.87 13.36 22 12 22c-2.11 0-9-.29-9-4V6c0-.34.08-.64.18-.93L1.11 3l1.28-1.27zM5 15.25C7.2 14.13 10.62 14 12 14h.11L7.73 9.62C6.76 9.43 5.8 9.15 5 8.75zm12.39 4.03-3.18-3.18c-.71-.06-1.43-.1-2.21-.1-3.87 0-7 .9-7 2s3.13 2 7 2c2.17 0 4.1-.28 5.39-.72"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/cylinder.svg�������������������������������0000664�0000000�0000000�00000000565�14753064456�0025747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c-2.11 0-9 .29-9 4v12c0 3.71 6.89 4 9 4s9-.29 9-4V6c0-3.71-6.89-4-9-4m0 8c1.38 0 4.8-.13 7-1.25v6.5C16.8 14.13 13.38 14 12 14s-4.8.13-7 1.25v-6.5C7.2 9.87 10.62 10 12 10m0-6c3.87 0 7 .89 7 2s-3.13 2-7 2-7-.89-7-2 3.13-2 7-2m0 16c-3.87 0-7-.89-7-2 0-1.1 3.13-2 7-2s7 .9 7 2c0 1.11-3.13 2-7 2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dance-ballroom.svg�������������������������0000664�0000000�0000000�00000001127�14753064456�0027010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 3.5c0 .83-.67 1.5-1.5 1.5S11 4.33 11 3.5 11.67 2 12.5 2s1.5.67 1.5 1.5M8.5 5C7.67 5 7 5.67 7 6.5S7.67 8 8.5 8 10 7.33 10 6.5 9.33 5 8.5 5m5.5 7-.78-2.25h2.96l2.16-1.08c.37-.17.52-.63.33-1a.737.737 0 0 0-1-.34l-.82.41-.49-.84c-.29-.65-1-1.02-1.7-.86l-2.47.53c-.69.15-1.19.78-1.19 1.5v.7l-2.43 1.62h.01c-.08.07-.19.16-.25.28l-.89 1.77-1.78.89c-.37.17-.52.64-.33 1.01a.753.753 0 0 0 1.01.33l2.22-1.11L9.6 11.5 11 13c-1 3-8 7-8 7s4 2 9 2 9-2 9-2-5-4-7-8m2.85-.91-.32.16h-1.2l.06.16c.52 1.03 1.28 2.09 2.11 3.03l-.53-3.41z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dance-pole.svg�����������������������������0000664�0000000�0000000�00000000626�14753064456�0026143�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1v1l-.77-.64L7.76 5.5l3.24 2V5.16L10.78 5 12 3.56V23h2v-9.76l1.93-1.93c2.57.4 5.2-.95 6.73-2.48l-1.42-1.42C20.1 8.56 17.7 9.61 16 9.26l-2-2.02V1m3 3a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m-6 3.76-3.9 3.9c-1.85 1.84-2.79 3.19-4.04 6.5l1.88.7c1-2.66 1.72-3.72 2.93-5.02l1.35 1.35-4.95 4.95 1.42 1.42L11 16.24Z"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/data-matrix-edit.svg�����������������������0000664�0000000�0000000�00000000634�14753064456�0027271�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 12.1c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6 0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-1.9 1.8-6.1 6V22h2.1l6.1-6.1zM8 6H6V2h2zm2 10H8v-2h2zm2-10h-2V2h2zm4-4v2h-2V2zm4 2h-2V2h2zM10 20v-2H8v-2H6v-2H4v-2h2V6H4V2H2v20h8zm-4 0H4v-2h2zm16-10h-4V8h4zm-2-4V4h2v2zm-2-2v4h-4V6h2V4zm-8 14v-2h2v-4H8V8h4v2h2v2h2v-2h2v1.1L15.1 14H14v1.1L11.1 18z"/></svg>����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/data-matrix-minus.svg����������������������0000664�0000000�0000000�00000000556�14753064456�0027502�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 2v2h-2V2zm-4 0h-2v4h2zm-2 12H8v2h2zm6-10v2h-2v2h4V4zM8 2H6v4h2zm12 0h-2v2h2zm-6.2 20H2V2h2v4h2v6H4v2h2v2h2v2h2v2h2v-2h-2v-2h2v-4H8V8h4v2h2v2h2v-2h2v2h4v1.8c-.9-.5-1.9-.8-3-.8-1.2 0-2.4.4-3.3 1H14v1.7c-.6.9-1 2.1-1 3.3 0 1.1.3 2.1.8 3M6 18H4v2h2zM22 8h-4v2h4zm0-2V4h-2v2zm-7 12v2h8v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/data-matrix-plus.svg�����������������������0000664�0000000�0000000�00000000601�14753064456�0027321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 2v2h-2V2zm-4 0h-2v4h2zm-2 12H8v2h2zm6-10v2h-2v2h4V4zM8 2H6v4h2zm12 0h-2v2h2zm-6.2 20H2V2h2v4h2v6H4v2h2v2h2v2h2v2h2v-2h-2v-2h2v-4H8V8h4v2h2v2h2v-2h2v2h4v1.8c-.9-.5-1.9-.8-3-.8-1.2 0-2.4.4-3.3 1H14v1.7c-.6.9-1 2.1-1 3.3 0 1.1.3 2.1.8 3M6 18H4v2h2zM22 8h-4v2h4zm0-2V4h-2v2zm-4 9v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/data-matrix-remove.svg���������������������0000664�0000000�0000000�00000000702�14753064456�0027635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 2v2h-2V2zm-4 0h-2v4h2zm-2 12H8v2h2zm6-10v2h-2v2h4V4zM8 2H6v4h2zm12 0h-2v2h2zm-6.2 20H2V2h2v4h2v6H4v2h2v2h2v2h2v2h2v-2h-2v-2h2v-4H8V8h4v2h2v2h2v-2h2v2h4v1.8c-.9-.5-1.9-.8-3-.8-1.2 0-2.4.4-3.3 1H14v1.7c-.6.9-1 2.1-1 3.3 0 1.1.3 2.1.8 3M6 18H4v2h2zM22 8h-4v2h4zm0-2V4h-2v2zm-.9 9.5L19 17.6l-2.1-2.1-1.4 1.4 2.1 2.1-2.1 2.1 1.4 1.4 2.1-2.1 2.1 2.1 1.4-1.4-2.1-2.1 2.1-2.1z"/></svg>��������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/data-matrix-scan.svg�����������������������0000664�0000000�0000000�00000000543�14753064456�0027267�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2h4V0H2C.9 0 0 .9 0 2v4h2zm20-2h-4v2h4v4h2V2c0-1.1-.9-2-2-2M2 18H0v4c0 1.1.9 2 2 2h4v-2H2zm20 4h-4v2h4c1.1 0 2-.9 2-2v-4h-2zM8 6V4h2v2zm2 8v-2h2v2zm6-10h2v2h-2zm2 2h2v2h-2zm0 8h2v2h-2zm2-2h-4v6h4v2H4V4h2v2h2v4H6v2h2v2h2v2h2v2h2v-2h-2v-2h2v-4h-4V6h2V4h2v4h2v2h4zM8 18v-2H6v2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/data-matrix.svg����������������������������0000664�0000000�0000000�00000000471�14753064456�0026345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2v20h20v-2h-2v-2h2v-2h-2v-2h2v-2h-4v-2h-2v2h-2v-2h-2V8H8v4h4v4h-2v2h2v2h-2v-2H8v-2H6v-2H4v-2h2V6H4V2zm4 4h2V2H6zm2 10h2v-2H8zm10-6h4V8h-4zm0-2V4h-2v2h-2v2zm-2-4V2h-2v2zm2 0h2V2h-2zm2 0v2h2V4zM10 2v4h2V2zm4 12h2v2h2v4h-4zM4 18h2v2H4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-alert-outline.svg�����������������0000664�0000000�0000000�00000000627�14753064456�0030463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 3C5.58 3 2 4.79 2 7v10c0 2.21 3.59 4 8 4s8-1.79 8-4V7c0-2.21-3.58-4-8-4m6 14c0 .5-2.13 2-6 2s-6-1.5-6-2v-2.23c1.61.78 3.72 1.23 6 1.23s4.39-.45 6-1.23zm0-4.55c-1.3.95-3.58 1.55-6 1.55s-4.7-.6-6-1.55V9.64c1.47.83 3.61 1.36 6 1.36s4.53-.53 6-1.36zM10 9C6.13 9 4 7.5 4 7s2.13-2 6-2 6 1.5 6 2-2.13 2-6 2m12-2v6h-2V7zm-2 8h2v2h-2z"/></svg>���������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-alert.svg�������������������������0000664�0000000�0000000�00000000467�14753064456�0027010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 7c0 2.21-3.58 4-8 4S2 9.21 2 7s3.58-4 8-4 8 1.79 8 4m-8 11c-4.42 0-8-1.79-8-4v3c0 2.21 3.58 4 8 4s8-1.79 8-4v-3c0 2.21-3.58 4-8 4m0-5c-4.42 0-8-1.79-8-4v3c0 2.21 3.58 4 8 4s8-1.79 8-4V9c0 2.21-3.58 4-8 4m10 4h2v-2h-2zm0-10v6h2V7z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-arrow-down-outline.svg������������0000664�0000000�0000000�00000000745�14753064456�0031454�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 13.09V7c0-2.21-3.58-4-8-4S4 4.79 4 7v10c0 2.21 3.59 4 8 4 .46 0 .9 0 1.33-.06A6 6 0 0 1 13 19v-.05c-.32.05-.65.05-1 .05-3.87 0-6-1.5-6-2v-2.23c1.61.78 3.72 1.23 6 1.23.65 0 1.27-.04 1.88-.11A5.99 5.99 0 0 1 19 13c.34 0 .67.04 1 .09m-2-.64c-1.3.95-3.58 1.55-6 1.55s-4.7-.6-6-1.55V9.64c1.47.83 3.61 1.36 6 1.36s4.53-.53 6-1.36zM12 9C8.13 9 6 7.5 6 7s2.13-2 6-2 6 1.5 6 2-2.13 2-6 2m10 11-3 3-3-3h2v-4h2v4z"/></svg>���������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-arrow-down.svg��������������������0000664�0000000�0000000�00000000664�14753064456�0027777�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13c-2.17 0-4.07 1.16-5.12 2.89-.6.07-1.23.11-1.88.11-4.42 0-8-1.79-8-4V9c0 2.21 3.58 4 8 4s8-1.79 8-4v3c0 .36-.1.71-.28 1.05C19.5 13 19.24 13 19 13m-7-2c4.42 0 8-1.79 8-4s-3.58-4-8-4-8 1.79-8 4 3.58 4 8 4m1.1 6.96c-.36.04-.73.04-1.1.04-4.42 0-8-1.79-8-4v3c0 2.21 3.58 4 8 4 .46 0 .9 0 1.33-.06A6 6 0 0 1 13 19c0-.36.04-.7.1-1.04M20 20v-4h-2v4h-2l3 3 3-3z"/></svg>����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-arrow-left-outline.svg������������0000664�0000000�0000000�00000000745�14753064456�0031437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 13.09V7c0-2.21-3.58-4-8-4S4 4.79 4 7v10c0 2.21 3.59 4 8 4 .46 0 .9 0 1.33-.06A6 6 0 0 1 13 19v-.05c-.32.05-.65.05-1 .05-3.87 0-6-1.5-6-2v-2.23c1.61.78 3.72 1.23 6 1.23.65 0 1.27-.04 1.88-.11A5.99 5.99 0 0 1 19 13c.34 0 .67.04 1 .09m-2-.64c-1.3.95-3.58 1.55-6 1.55s-4.7-.6-6-1.55V9.64c1.47.83 3.61 1.36 6 1.36s4.53-.53 6-1.36zM12 9C8.13 9 6 7.5 6 7s2.13-2 6-2 6 1.5 6 2-2.13 2-6 2m10 9v2h-4v2l-3-3 3-3v2z"/></svg>���������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-arrow-left.svg��������������������0000664�0000000�0000000�00000000664�14753064456�0027762�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 7c0-2.21 3.58-4 8-4s8 1.79 8 4-3.58 4-8 4-8-1.79-8-4m15.72 6.05c.18-.34.28-.69.28-1.05V9c0 2.21-3.58 4-8 4s-8-1.79-8-4v3c0 2.21 3.58 4 8 4 .65 0 1.28-.04 1.88-.11A5.99 5.99 0 0 1 19 13c.24 0 .5 0 .72.05m-6.62 4.91c-.36.04-.73.04-1.1.04-4.42 0-8-1.79-8-4v3c0 2.21 3.58 4 8 4 .46 0 .9 0 1.33-.06A6 6 0 0 1 13 19c0-.36.04-.7.1-1.04M18 18v-2l-3 3 3 3v-2h4v-2z"/></svg>����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-arrow-right-outline.svg�����������0000664�0000000�0000000�00000000745�14753064456�0031622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 13.09V7c0-2.21-3.58-4-8-4S4 4.79 4 7v10c0 2.21 3.59 4 8 4 .46 0 .9 0 1.33-.06A6 6 0 0 1 13 19v-.05c-.32.05-.65.05-1 .05-3.87 0-6-1.5-6-2v-2.23c1.61.78 3.72 1.23 6 1.23.65 0 1.27-.04 1.88-.11A5.99 5.99 0 0 1 19 13c.34 0 .67.04 1 .09m-2-.64c-1.3.95-3.58 1.55-6 1.55s-4.7-.6-6-1.55V9.64c1.47.83 3.61 1.36 6 1.36s4.53-.53 6-1.36zM12 9C8.13 9 6 7.5 6 7s2.13-2 6-2 6 1.5 6 2-2.13 2-6 2m8 13v-2h-4v-2h4v-2l3 3z"/></svg>���������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-arrow-right.svg�������������������0000664�0000000�0000000�00000000660�14753064456�0030141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 7c0-2.21 3.58-4 8-4s8 1.79 8 4-3.58 4-8 4-8-1.79-8-4m15.72 6.05c.18-.34.28-.69.28-1.05V9c0 2.21-3.58 4-8 4s-8-1.79-8-4v3c0 2.21 3.58 4 8 4 .65 0 1.28-.04 1.88-.11A5.99 5.99 0 0 1 19 13c.24 0 .5 0 .72.05m-6.62 4.91c-.36.04-.73.04-1.1.04-4.42 0-8-1.79-8-4v3c0 2.21 3.58 4 8 4 .46 0 .9 0 1.33-.06A6 6 0 0 1 13 19c0-.36.04-.7.1-1.04M23 19l-3-3v2h-4v2h4v2z"/></svg>��������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-arrow-up-outline.svg��������������0000664�0000000�0000000�00000000745�14753064456�0031131�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 13.09V7c0-2.21-3.58-4-8-4S4 4.79 4 7v10c0 2.21 3.59 4 8 4 .46 0 .9 0 1.33-.06A6 6 0 0 1 13 19v-.05c-.32.05-.65.05-1 .05-3.87 0-6-1.5-6-2v-2.23c1.61.78 3.72 1.23 6 1.23.65 0 1.27-.04 1.88-.11A5.99 5.99 0 0 1 19 13c.34 0 .67.04 1 .09m-2-.64c-1.3.95-3.58 1.55-6 1.55s-4.7-.6-6-1.55V9.64c1.47.83 3.61 1.36 6 1.36s4.53-.53 6-1.36zM12 9C8.13 9 6 7.5 6 7s2.13-2 6-2 6 1.5 6 2-2.13 2-6 2m10 9h-2v4h-2v-4h-2l3-3z"/></svg>���������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-arrow-up.svg����������������������0000664�0000000�0000000�00000000661�14753064456�0027451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13c-2.17 0-4.07 1.16-5.12 2.89-.6.07-1.23.11-1.88.11-4.42 0-8-1.79-8-4V9c0 2.21 3.58 4 8 4s8-1.79 8-4v3c0 .36-.1.71-.28 1.05C19.5 13 19.24 13 19 13m-7-2c4.42 0 8-1.79 8-4s-3.58-4-8-4-8 1.79-8 4 3.58 4 8 4m1.1 6.96c-.36.04-.73.04-1.1.04-4.42 0-8-1.79-8-4v3c0 2.21 3.58 4 8 4 .46 0 .9 0 1.33-.06A6 6 0 0 1 13 19c0-.36.04-.7.1-1.04M19 15l-3 3h2v4h2v-4h2z"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-check-outline.svg�����������������0000664�0000000�0000000�00000001005�14753064456�0030420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 13.09V7c0-2.21-3.58-4-8-4S4 4.79 4 7v10c0 2.21 3.59 4 8 4 .46 0 .9 0 1.33-.06A6 6 0 0 1 13 19v-.05c-.32.05-.65.05-1 .05-3.87 0-6-1.5-6-2v-2.23c1.61.78 3.72 1.23 6 1.23.65 0 1.27-.04 1.88-.11A5.99 5.99 0 0 1 19 13c.34 0 .67.04 1 .09m-2-.64c-1.3.95-3.58 1.55-6 1.55s-4.7-.6-6-1.55V9.64c1.47.83 3.61 1.36 6 1.36s4.53-.53 6-1.36zM12 9C8.13 9 6 7.5 6 7s2.13-2 6-2 6 1.5 6 2-2.13 2-6 2m10.5 8.25L17.75 22 15 19l1.16-1.16 1.59 1.59 3.59-3.59z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-check.svg�������������������������0000664�0000000�0000000�00000000546�14753064456�0026754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3c4.42 0 8 1.79 8 4s-3.58 4-8 4-8-1.79-8-4 3.58-4 8-4M4 9c0 2.21 3.58 4 8 4s8-1.79 8-4v3.08L19 12c-2.59 0-4.8 1.64-5.64 3.94L12 16c-4.42 0-8-1.79-8-4zm0 5c0 2.21 3.58 4 8 4h1c0 1.05.27 2.04.75 2.9L12 21c-4.42 0-8-1.79-8-4zm14 7.08-2.75-3 1.16-1.16L18 18.5l3.59-3.58 1.16 1.41z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-clock-outline.svg�����������������0000664�0000000�0000000�00000001156�14753064456�0030445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.5 16.25 2.86 1.69-.75 1.22L15 17v-5h1.5zM23 16c0 3.87-3.13 7-7 7a7 7 0 0 1-5.75-3C6.19 19.79 3 18.08 3 16V6c0-2.21 3.58-4 8-4s8 1.79 8 4v3.68c2.36 1.13 4 3.53 4 6.32m-6-6.92v-.44c-.23.13-.5.26-.76.36.26 0 .51.04.76.08M5 6c0 .5 2.13 2 6 2s6-1.5 6-2-2.13-2-6-2-6 1.5-6 2m0 5.45c1.07.78 2.8 1.31 4.72 1.48.61-1.26 1.6-2.31 2.82-3.01-.5.05-1.01.08-1.54.08-2.39 0-4.53-.53-6-1.36zm4.26 6.42C9.1 17.27 9 16.65 9 16c0-.39.04-.77.1-1.14-1.54-.17-2.95-.53-4.1-1.09V16c0 .42 1.5 1.5 4.26 1.87M21 16c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-clock.svg�������������������������0000664�0000000�0000000�00000001044�14753064456�0026764�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.5 16.25 2.86 1.69-.75 1.22L15 17v-5h1.5zM23 16c0 3.87-3.13 7-7 7a7 7 0 0 1-5.75-3C6.18 19.79 3 18.08 3 16v-3c0 1.88 2.58 3.44 6.06 3.88C9.03 16.59 9 16.3 9 16c0-.38.04-.75.1-1.12-3.5-.43-6.1-2-6.1-3.88V8c0 2.09 3.2 3.8 7.27 4 .6-.86 1.37-1.56 2.26-2.07-.49.04-1.03.07-1.53.07-4.42 0-8-1.79-8-4s3.58-4 8-4 8 1.79 8 4c0 1.2-1.07 2.28-2.75 3 .75.04 1.5.19 2.19.45C18.79 9 19 8.5 19 8v1.68c2.36 1.13 4 3.53 4 6.32m-2 0c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-cog-outline.svg�������������������0000664�0000000�0000000�00000001562�14753064456�0030123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 14c-2.42 0-4.7-.6-6-1.55V9.64c1.47.83 3.61 1.36 6 1.36s4.53-.53 6-1.36v2.44c.33-.05.66-.08 1-.08s.67.03 1 .08V7c0-2.21-3.58-4-8-4S4 4.79 4 7v10c0 2.21 3.59 4 8 4h.29a7.4 7.4 0 0 1-.29-2c-3.87 0-6-1.5-6-2v-2.23c1.61.78 3.72 1.23 6 1.23.24 0 .47 0 .7-.03.4-.83.95-1.56 1.62-2.16-.74.12-1.52.19-2.32.19m0-9c3.87 0 6 1.5 6 2s-2.13 2-6 2-6-1.5-6-2 2.13-2 6-2m10.7 14.6v-1l1.1-.8c.1-.1.2-.2.1-.3l-1-1.7c0-.1-.2-.1-.3-.1l-1.2.5c-.3-.2-.6-.4-.9-.5l-.2-1.3c0-.1-.1-.2-.2-.2h-2c-.2 0-.3.1-.3.2l-.2 1.3c-.3.2-.5.3-.8.5l-1.2-.5c-.1 0-.2 0-.3.1l-1 1.7c0 .1 0 .2.1.3l1.1.8v1l-1.1.8c-.1.1-.2.2-.1.3l1 1.7c.1.1.2.1.3.1l1.2-.5c.2.2.5.4.8.5l.2 1.3c.1.1.2.2.3.2h2c.1 0 .2-.1.2-.2l.2-1.3c.3-.2.5-.3.8-.5l1.2.4c.1 0 .2 0 .3-.1l1-1.7c.1-.1.1-.2 0-.2zm-3.7.9c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-cog.svg���������������������������0000664�0000000�0000000�00000001423�14753064456�0026442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 7c0-2.21 3.58-4 8-4s8 1.79 8 4-3.58 4-8 4-8-1.79-8-4m8.08 11H12c-4.42 0-8-1.79-8-4v3c0 2.21 3.58 4 8 4h.29a7.4 7.4 0 0 1-.29-2c0-.34.03-.67.08-1M20 12.08V9c0 2.21-3.58 4-8 4s-8-1.79-8-4v3c0 2.21 3.58 4 8 4h.69c1.13-2.37 3.53-4 6.31-4 .34 0 .67.03 1 .08m3.8 8.32c.1 0 .1.1 0 .2l-1 1.7c-.1.1-.2.1-.3.1l-1.2-.4c-.3.2-.5.3-.8.5l-.2 1.3c0 .1-.1.2-.2.2h-2c-.1 0-.2-.1-.3-.2l-.2-1.3c-.3-.1-.6-.3-.8-.5l-1.2.5c-.1 0-.2 0-.3-.1l-1-1.7c-.1-.1 0-.2.1-.3l1.1-.8v-1l-1.1-.8c-.1-.1-.1-.2-.1-.3l1-1.7c.1-.1.2-.1.3-.1l1.2.5c.3-.2.5-.3.8-.5l.2-1.3c0-.1.1-.2.3-.2h2c.1 0 .2.1.2.2l.2 1.3c.3.1.6.3.9.5l1.2-.5c.1 0 .3 0 .3.1l1 1.7c.1.1 0 .2-.1.3l-1.1.8v1zM20.5 19c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5.7 1.5 1.5 1.5 1.5-.7 1.5-1.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-edit-outline.svg������������������0000664�0000000�0000000�00000001037�14753064456�0030275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 16c.8 0 1.57-.07 2.31-.18l2.91-2.91C15.89 13.59 14 14 12 14c-2.42 0-4.7-.6-6-1.55V9.64c1.47.83 3.61 1.36 6 1.36s4.53-.53 6-1.36v2.49l1.39-1.39c.18-.18.39-.32.61-.44V7c0-2.21-3.58-4-8-4S4 4.79 4 7v10c0 2.04 3.06 3.72 7 3.97v-1.84l.17-.17C7.84 18.76 6 17.46 6 17v-2.23c1.61.78 3.72 1.23 6 1.23m0-11c3.87 0 6 1.5 6 2s-2.13 2-6 2-6-1.5-6-2 2.13-2 6-2m7.13 8.83 2.04 2.04L15.04 22H13v-2.04zm3.72.36-.98.98-2.04-2.04.98-.98c.19-.2.52-.2.72 0l1.32 1.32c.2.2.2.53 0 .72"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-edit.svg��������������������������0000664�0000000�0000000�00000000626�14753064456�0026623�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 14v3c0 2 3.05 3.72 7 4v-2.89l.13-.11C7.12 17.76 4 16.06 4 14m8-1c-4.42 0-8-1.79-8-4v3c0 2.21 3.58 4 8 4h1.16L17 12.12c-1.6.6-3.29.88-5 .88m0-10C7.58 3 4 4.79 4 7s3.58 4 8 4 8-1.79 8-4-3.58-4-8-4m9 8.13c-.15 0-.29.06-.39.17l-1 1 2.05 2 1-1a.54.54 0 0 0 0-.77l-1.24-1.23a.52.52 0 0 0-.38-.17m-2 1.75L13 18.94V21h2.06l6.06-6.07z"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-export-outline.svg����������������0000664�0000000�0000000�00000001041�14753064456�0030664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.86 18 1.04 1c-1.4 1.2-3.96 2-6.9 2-4.41 0-8-1.79-8-4V7c0-2.21 3.58-4 8-4 2.95 0 5.5.8 6.9 2l-1.04 1-.36.4C16.65 5.77 14.78 5 12 5 8.13 5 6 6.5 6 7s2.13 2 6 2c1.37 0 2.5-.19 3.42-.46l.96.96H13.5v1.42c-.5.05-1 .08-1.5.08-2.39 0-4.53-.53-6-1.36v2.81C7.3 13.4 9.58 14 12 14c.5 0 1-.03 1.5-.08v.58h2.88l-1 1 .12.11c-1.09.25-2.26.39-3.5.39-2.28 0-4.39-.45-6-1.23V17c0 .5 2.13 2 6 2 2.78 0 4.65-.77 5.5-1.39zm1.06-10.92L17.5 8.5 20 11h-5v2h5l-2.5 2.5 1.42 1.42L23.84 12z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-export.svg������������������������0000664�0000000�0000000�00000000660�14753064456�0027215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3C7.58 3 4 4.79 4 7s3.58 4 8 4c.5 0 1-.03 1.5-.08V9.5h2.89l-1-1L18.9 5c-1.4-1.2-3.96-2-6.9-2m6.92 4.08L17.5 8.5 20 11h-5v2h5l-2.5 2.5 1.42 1.42L23.84 12M4 9v3c0 2.21 3.58 4 8 4 1.17 0 2.26-.15 3.25-.37l1.13-1.13H13.5v-1.58c-.5.05-1 .08-1.5.08-4.42 0-8-1.79-8-4m0 5v3c0 2.21 3.58 4 8 4 2.94 0 5.5-.8 6.9-2L17 17.1c-1.39.56-3.1.9-5 .9-4.42 0-8-1.79-8-4"/></svg>��������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-eye-off-outline.svg���������������0000664�0000000�0000000�00000001323�14753064456�0030700�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 19c-.1.2-.2.4-.3.5l-4.4-4.4c2.2.5 3.9 2 4.7 3.9M12 5c3.9 0 6 1.5 6 2s-2.1 1.9-5.8 2l1.9 1.9c1.5-.2 2.9-.6 3.9-1.2v2.8c-.3.2-.6.4-1 .6q1.5 0 3 .6V7c0-2.2-3.6-4-8-4-1.9 0-3.6.3-4.9.9l1.6 1.6c.8-.3 2-.5 3.3-.5m10.1 16.5-1.3 1.3-.6-.6c-1 .5-2.1.9-3.2.9-2.7 0-5.1-1.7-6-4 .6-1.4 1.6-2.5 2.9-3.2l-1.5-1.5c-.7.4-1.3 1-1.9 1.6-1.7-.1-3.3-.5-4.6-1.2V17c0 .3 1.1 1.2 3 1.6l-.1.4.3.7c.2.4.3.7.5 1.1-3.2-.5-5.6-2-5.6-3.8V7c0-.3.1-.6.2-.9L1.1 3l1.3-1.3zm-10-7.5-3.4-3.4c-1.1-.2-2-.6-2.8-1v2.8c1.3 1 3.6 1.5 6 1.5.1.1.2.1.2.1m6.7 6.7-1.1-1.1c-.1.3-.4.4-.7.4-.6 0-1-.4-1-1 0-.3.1-.6.4-.8l-1.1-1.1c-.5.5-.8 1.1-.8 1.8 0 1.4 1.1 2.5 2.5 2.5.7.1 1.4-.2 1.8-.7"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-eye-off.svg�����������������������0000664�0000000�0000000�00000001274�14753064456�0027230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.1 10.9-7-7c1.3-.6 3-.9 4.9-.9 4.4 0 8 1.8 8 4 0 1.9-2.5 3.4-5.9 3.9m2.1 2.1h.8c.9 0 1.7.1 2.5.4.3-.4.5-.9.5-1.4V9c0 1.5-1.7 2.9-4.3 3.5zm2.2 2.2 4.4 4.4c.1-.2.2-.4.3-.5-.9-2-2.6-3.5-4.7-3.9m3.7 6.3-1.3 1.3-.6-.6c-1 .5-2.1.9-3.2.9-2.7 0-5.1-1.7-6-4 .6-1.4 1.6-2.5 2.9-3.2l-1.5-1.5c-.7.4-1.3 1-1.9 1.6-3.7-.4-6.5-2-6.5-4V9c0 2.1 3.1 3.7 7.1 4l-2.3-2.3C6 10 4 8.6 4 7c0-.3.1-.6.2-.9L1.1 3l1.3-1.3zm-3.3-.8-1.1-1.1c-.1.3-.4.4-.7.4-.6 0-1-.4-1-1 0-.3.1-.6.4-.8l-1.1-1.1c-.5.5-.8 1.1-.8 1.8 0 1.4 1.1 2.5 2.5 2.5.7.1 1.4-.2 1.8-.7M8.8 19l.3-.7c.1-.2.2-.3.2-.5-3.1-.6-5.3-2-5.3-3.8v3c0 1.8 2.4 3.3 5.7 3.8-.2-.3-.4-.7-.5-1.1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-eye-outline.svg�������������������0000664�0000000�0000000�00000001073�14753064456�0030132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.1 19.7-.3-.7.2-.4c-1.9-.5-3-1.3-3-1.6v-2.2c1.3.6 2.8 1 4.6 1.2.7-.8 1.6-1.5 2.5-2H12c-2.4 0-4.7-.6-6-1.5V9.6c1.5.8 3.6 1.4 6 1.4s4.5-.5 6-1.4v2.8c-.3.2-.6.4-1 .6q1.5 0 3 .6V7c0-2.2-3.6-4-8-4S4 4.8 4 7v10c0 1.8 2.4 3.3 5.7 3.8-.2-.3-.4-.7-.6-1.1M12 5c3.9 0 6 1.5 6 2s-2.1 2-6 2-6-1.5-6-2 2.1-2 6-2m5 13c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1m0-3c-2.7 0-5.1 1.7-6 4 .9 2.3 3.3 4 6 4s5.1-1.7 6-4c-.9-2.3-3.3-4-6-4m0 6.5c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-eye.svg���������������������������0000664�0000000�0000000�00000001024�14753064456�0026451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 12V9c0 2.2 3.6 4 8 4s8-1.8 8-4v3c0 .5-.2.9-.5 1.4-.8-.3-1.6-.4-2.5-.4-2.5 0-4.9 1.1-6.4 2.9C6.8 15.6 4 14 4 12m8-1c4.4 0 8-1.8 8-4s-3.6-4-8-4-8 1.8-8 4 3.6 4 8 4m-2.9 8.7-.3-.7.3-.7c.1-.2.2-.3.2-.5-3.1-.6-5.3-2-5.3-3.8v3c0 1.8 2.4 3.3 5.7 3.8-.2-.3-.4-.7-.6-1.1M17 18c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1m6 1c-.9 2.3-3.3 4-6 4s-5.1-1.7-6-4c.9-2.3 3.3-4 6-4s5.1 1.7 6 4m-3.5 0c0-1.4-1.1-2.5-2.5-2.5s-2.5 1.1-2.5 2.5 1.1 2.5 2.5 2.5 2.5-1.1 2.5-2.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-import-outline.svg����������������0000664�0000000�0000000�00000001025�14753064456�0030657�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.84 12-4.92 4.92L2.5 15.5 5 13H0v-2h5L2.5 8.5l1.42-1.42zM12 3C8.59 3 5.68 4.07 4.53 5.57L5 6l1.03 1.07C6 7.05 6 7 6 7c0-.5 2.13-2 6-2s6 1.5 6 2-2.13 2-6 2c-2.62 0-4.42-.69-5.32-1.28l3.12 3.12c.7.1 1.44.16 2.2.16 2.39 0 4.53-.53 6-1.36v2.81c-1.3.95-3.58 1.55-6 1.55-.96 0-1.9-.1-2.76-.27l-1.65 1.64c1.32.4 2.82.63 4.41.63 2.28 0 4.39-.45 6-1.23V17c0 .5-2.13 2-6 2s-6-1.5-6-2v-.04L5 18l-.46.43C5.69 19.93 8.6 21 12 21c4.41 0 8-1.79 8-4V7c0-2.21-3.58-4-8-4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-import.svg������������������������0000664�0000000�0000000�00000000655�14753064456�0027212�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3C8.59 3 5.69 4.07 4.54 5.57l5.25 5.25c.71.11 1.43.18 2.21.18 4.42 0 8-1.79 8-4s-3.58-4-8-4M3.92 7.08 2.5 8.5 5 11H0v2h5l-2.5 2.5 1.42 1.42L8.84 12M20 9c0 2.21-3.58 4-8 4-.66 0-1.3-.05-1.91-.13l-2.47 2.47c1.26.41 2.76.66 4.38.66 4.42 0 8-1.79 8-4m0 2c0 2.21-3.58 4-8 4-2.28 0-4.33-.5-5.79-1.25l-1.68 1.68C5.68 19.93 8.59 21 12 21c4.42 0 8-1.79 8-4"/></svg>�����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-lock-outline.svg������������������0000664�0000000�0000000�00000001171�14753064456�0030277�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 12.45V9.64c1.47.83 3.61 1.36 6 1.36s4.53-.53 6-1.36v1.41c.17-.02.33-.05.5-.05.53 0 1.03.1 1.5.26V7c0-2.21-3.58-4-8-4S4 4.79 4 7v10c0 2.21 3.59 4 8 4 .34 0 .67 0 1-.03v-2.02c-.32.05-.65.05-1 .05-3.87 0-6-1.5-6-2v-2.23c1.61.78 3.72 1.23 6 1.23.41 0 .81-.03 1.21-.06.19-.48.47-.91.86-1.24.06-.31.16-.61.27-.9-.74.13-1.53.2-2.34.2-2.42 0-4.7-.6-6-1.55M12 5c3.87 0 6 1.5 6 2s-2.13 2-6 2-6-1.5-6-2 2.13-2 6-2m9 11v-.5a2.5 2.5 0 0 0-5 0v.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1m-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-lock.svg��������������������������0000664�0000000�0000000�00000001000�14753064456�0026611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 3c4.42 0 8 1.79 8 4s-3.58 4-8 4-8-1.79-8-4 3.58-4 8-4m8 9.03a4.5 4.5 0 0 0-3.87 3.4c-1.21.36-2.63.57-4.13.57-4.42 0-8-1.79-8-4V9c0 2.21 3.58 4 8 4s8-1.79 8-4zm-5 5.68v3c-.93.19-1.94.29-3 .29-4.42 0-8-1.79-8-4v-3c0 2.21 3.58 4 8 4 1.06 0 2.07-.1 3-.29M19.5 14a2.5 2.5 0 0 1 2.5 2.5v.5a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1v-.5a2.5 2.5 0 0 1 2.5-2.5m0 1a1.5 1.5 0 0 0-1.5 1.5v.5h3v-.5a1.5 1.5 0 0 0-1.5-1.5"/></svg>mkdocs-material-9.6.4/material/templates/.icons/material/database-marker-outline.svg����������������0000664�0000000�0000000�00000001247�14753064456�0030634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 19c-3.87 0-6-1.5-6-2v-2.23c1.61.78 3.72 1.23 6 1.23.35 0 .69-.03 1.03-.05-.03-.15-.03-.3-.03-.45 0-.54.09-1.06.24-1.56-.41.06-.82.06-1.24.06-2.42 0-4.7-.6-6-1.55V9.64c1.47.83 3.61 1.36 6 1.36s4.53-.53 6-1.36v.39c.17-.03.33-.03.5-.03.5 0 1 .08 1.5.22V7c0-2.21-3.58-4-8-4S4 4.79 4 7v10c0 2.21 3.59 4 8 4 1.06 0 2.07-.11 3-.29-.38-.57-.75-1.21-1.07-1.86-.59.09-1.22.15-1.93.15m0-14c3.87 0 6 1.5 6 2s-2.13 2-6 2-6-1.5-6-2 2.13-2 6-2m6.5 7c-1.9 0-3.5 1.6-3.5 3.5 0 2.6 3.5 6.5 3.5 6.5s3.5-3.9 3.5-6.5c0-1.9-1.6-3.5-3.5-3.5m0 4.8c-.7 0-1.2-.6-1.2-1.2 0-.7.6-1.2 1.2-1.2s1.2.6 1.2 1.2c.1.6-.5 1.2-1.2 1.2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-marker.svg������������������������0000664�0000000�0000000�00000001046�14753064456�0027154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 12c-1.9 0-3.5 1.6-3.5 3.5 0 2.6 3.5 6.5 3.5 6.5s3.5-3.9 3.5-6.5c0-1.9-1.6-3.5-3.5-3.5m0 4.8c-.7 0-1.2-.6-1.2-1.2 0-.7.6-1.2 1.2-1.2s1.2.6 1.2 1.2c.1.6-.5 1.2-1.2 1.2M4 12V9c0 2.21 3.58 4 8 4 .57 0 1.13-.03 1.67-.09-.42.78-.67 1.66-.67 2.59 0 .15 0 .31.03.46-.34.04-.68.04-1.03.04-4.42 0-8-1.79-8-4m0-5c0-2.21 3.58-4 8-4s8 1.79 8 4-3.58 4-8 4-8-1.79-8-4m11 13.71c-.93.19-1.94.29-3 .29-4.42 0-8-1.79-8-4v-3c0 2.21 3.58 4 8 4 .5 0 1.03-.03 1.5-.07.4.98.94 1.94 1.5 2.78"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-minus-outline.svg�����������������0000664�0000000�0000000�00000000733�14753064456�0030505�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 13.09V7c0-2.21-3.58-4-8-4S4 4.79 4 7v10c0 2.21 3.59 4 8 4 .46 0 .9 0 1.33-.06A6 6 0 0 1 13 19v-.05c-.32.05-.65.05-1 .05-3.87 0-6-1.5-6-2v-2.23c1.61.78 3.72 1.23 6 1.23.65 0 1.27-.04 1.88-.11A5.99 5.99 0 0 1 19 13c.34 0 .67.04 1 .09m-2-.64c-1.3.95-3.58 1.55-6 1.55s-4.7-.6-6-1.55V9.64c1.47.83 3.61 1.36 6 1.36s4.53-.53 6-1.36zM12 9C8.13 9 6 7.5 6 7s2.13-2 6-2 6 1.5 6 2-2.13 2-6 2m11 9v2h-8v-2z"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-minus.svg�������������������������0000664�0000000�0000000�00000000476�14753064456�0027034�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 17v2h-8v-2M12 3c4.42 0 8 1.79 8 4s-3.58 4-8 4-8-1.79-8-4 3.58-4 8-4M4 9c0 2.21 3.58 4 8 4s8-1.79 8-4v3.08L19 12c-2.59 0-4.8 1.64-5.64 3.94L12 16c-4.42 0-8-1.79-8-4zm0 5c0 2.21 3.58 4 8 4h1c0 1.05.27 2.04.75 2.9L12 21c-4.42 0-8-1.79-8-4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-off-outline.svg�������������������0000664�0000000�0000000�00000001076�14753064456�0030125�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.39 1.73 1.11 3l3.1 3.1c-.13.29-.21.59-.21.9v10c0 2.21 3.59 4 8 4 2.3 0 4.38-.5 5.84-1.27l3 3 1.27-1.27zM6 9.64c.76.43 1.7.78 2.76 1.01L12.11 14H12c-2.42 0-4.7-.6-6-1.55zM12 19c-3.87 0-6-1.5-6-2v-2.23c1.61.78 3.72 1.23 6 1.23.68 0 1.34-.05 2-.13l2.34 2.36c-1.01.42-2.47.77-4.34.77M8.64 5.44 7.06 3.86C8.42 3.33 10.13 3 12 3c4.42 0 8 1.79 8 4v9.8l-2-2v-.03.01l-1.55-1.53c.6-.22 1.13-.49 1.55-.8V9.64c-1.03.58-2.39 1.01-3.94 1.22L12.19 9C15.94 8.94 18 7.5 18 7s-2.13-2-6-2c-1.34 0-2.46.18-3.36.44"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-off.svg���������������������������0000664�0000000�0000000�00000001006�14753064456�0026441�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.07 15.87c.59-.56.93-1.19.93-1.87v2.8zM20 9c0 1.54-1.73 2.86-4.27 3.53l2.16 2.16C19.19 14 20 13.04 20 12zm0-2c0-2.21-3.58-4-8-4-1.87 0-3.58.33-4.94.86l7 7C17.5 10.41 20 8.85 20 7M2.39 1.73 1.11 3l3.1 3.1c-.13.29-.21.59-.21.9 0 1.63 1.96 3.04 4.77 3.66l2.31 2.31C7.1 12.74 4 11.06 4 9v3c0 2.21 3.58 4 8 4 .69 0 1.35-.05 2-.13l1.66 1.68c-1.09.29-2.34.45-3.66.45-4.42 0-8-1.79-8-4v3c0 2.21 3.58 4 8 4 2.31 0 4.38-.5 5.84-1.27l3 3 1.27-1.27z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-outline.svg�����������������������0000664�0000000�0000000�00000000575�14753064456�0027360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3C7.58 3 4 4.79 4 7v10c0 2.21 3.59 4 8 4s8-1.79 8-4V7c0-2.21-3.58-4-8-4m6 14c0 .5-2.13 2-6 2s-6-1.5-6-2v-2.23c1.61.78 3.72 1.23 6 1.23s4.39-.45 6-1.23zm0-4.55c-1.3.95-3.58 1.55-6 1.55s-4.7-.6-6-1.55V9.64c1.47.83 3.61 1.36 6 1.36s4.53-.53 6-1.36zM12 9C8.13 9 6 7.5 6 7s2.13-2 6-2 6 1.5 6 2-2.13 2-6 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-plus-outline.svg������������������0000664�0000000�0000000�00000000757�14753064456�0030343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 13.09V7c0-2.21-3.58-4-8-4S4 4.79 4 7v10c0 2.21 3.59 4 8 4 .46 0 .9 0 1.33-.06A6 6 0 0 1 13 19v-.05c-.32.05-.65.05-1 .05-3.87 0-6-1.5-6-2v-2.23c1.61.78 3.72 1.23 6 1.23.65 0 1.27-.04 1.88-.11A5.99 5.99 0 0 1 19 13c.34 0 .67.04 1 .09m-2-.64c-1.3.95-3.58 1.55-6 1.55s-4.7-.6-6-1.55V9.64c1.47.83 3.61 1.36 6 1.36s4.53-.53 6-1.36zM12 9C8.13 9 6 7.5 6 7s2.13-2 6-2 6 1.5 6 2-2.13 2-6 2m11 9v2h-3v3h-2v-3h-3v-2h3v-3h2v3z"/></svg>�����������������mkdocs-material-9.6.4/material/templates/.icons/material/database-plus.svg��������������������������0000664�0000000�0000000�00000000522�14753064456�0026654�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 14h2v3h3v2h-3v3h-2v-3h-3v-2h3zM12 3c4.42 0 8 1.79 8 4s-3.58 4-8 4-8-1.79-8-4 3.58-4 8-4M4 9c0 2.21 3.58 4 8 4s8-1.79 8-4v3.08L19 12c-2.59 0-4.8 1.64-5.64 3.94L12 16c-4.42 0-8-1.79-8-4zm0 5c0 2.21 3.58 4 8 4h1c0 1.05.27 2.04.75 2.9L12 21c-4.42 0-8-1.79-8-4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-refresh-outline.svg���������������0000664�0000000�0000000�00000001065�14753064456�0031007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 12.45V9.64c1.47.83 3.61 1.36 6 1.36s4.53-.53 6-1.36v2.39c.17-.03.33-.03.5-.03.5 0 1 .07 1.5.18V7c0-2.21-3.58-4-8-4S4 4.79 4 7v10c0 2.21 3.59 4 8 4h.5c-.26-.63-.41-1.3-.47-2H12c-3.87 0-6-1.5-6-2v-2.23c1.61.78 3.72 1.23 6 1.23h.5c.35-.82.84-1.54 1.45-2.14-.63.09-1.28.14-1.95.14-2.42 0-4.7-.6-6-1.55M12 5c3.87 0 6 1.5 6 2s-2.13 2-6 2-6-1.5-6-2 2.13-2 6-2m6 13.5 1.77-1.77A2.5 2.5 0 1 0 20 20h1.71A3.99 3.99 0 0 1 18 22.5c-2.21 0-4-1.79-4-4s1.79-4 4-4c1.11 0 2.11.45 2.83 1.17L22 14.5v4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-refresh.svg�����������������������0000664�0000000�0000000�00000000752�14753064456�0027334�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3c4.42 0 8 1.79 8 4s-3.58 4-8 4-8-1.79-8-4 3.58-4 8-4M4 9c0 2.21 3.58 4 8 4 1.11 0 2.18-.11 3.14-.32-.95.86-1.64 1.99-1.96 3.28L12 16c-4.42 0-8-1.79-8-4zm16 0v2h-.5l-.6.03c.7-.6 1.1-1.29 1.1-2.03M4 14c0 2.21 3.58 4 8 4l1-.03c.09 1.06.42 2.03.95 2.91L12 21c-4.42 0-8-1.79-8-4zm15-.5c1.11 0 2.11.45 2.83 1.17L23 13.5v4h-4l1.77-1.77A2.5 2.5 0 1 0 21 19h1.71A3.99 3.99 0 0 1 19 21.5c-2.21 0-4-1.79-4-4s1.79-4 4-4"/></svg>����������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-remove-outline.svg����������������0000664�0000000�0000000�00000001103�14753064456�0030637�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 13.09V7c0-2.21-3.58-4-8-4S4 4.79 4 7v10c0 2.21 3.59 4 8 4 .46 0 .9 0 1.33-.06A6 6 0 0 1 13 19v-.05c-.32.05-.65.05-1 .05-3.87 0-6-1.5-6-2v-2.23c1.61.78 3.72 1.23 6 1.23.65 0 1.27-.04 1.88-.11A5.99 5.99 0 0 1 19 13c.34 0 .67.04 1 .09m-2-.64c-1.3.95-3.58 1.55-6 1.55s-4.7-.6-6-1.55V9.64c1.47.83 3.61 1.36 6 1.36s4.53-.53 6-1.36zM12 9C8.13 9 6 7.5 6 7s2.13-2 6-2 6 1.5 6 2-2.13 2-6 2m8.41 10 2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.41-1.42L17.59 19l-2.12-2.12 1.41-1.41L19 17.59l2.12-2.12 1.42 1.41z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-remove.svg������������������������0000664�0000000�0000000�00000000650�14753064456�0027170�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.46 15.88 1.42-1.42L19 16.59l2.12-2.12 1.41 1.41L20.41 18l2.13 2.12-1.42 1.42L19 19.41l-2.12 2.12-1.41-1.41L17.59 18zM12 3c4.42 0 8 1.79 8 4s-3.58 4-8 4-8-1.79-8-4 3.58-4 8-4M4 9c0 2.21 3.58 4 8 4s8-1.79 8-4v3.08L19 12c-2.59 0-4.8 1.64-5.64 3.94L12 16c-4.42 0-8-1.79-8-4zm0 5c0 2.21 3.58 4 8 4h1c0 1.05.27 2.04.75 2.9L12 21c-4.42 0-8-1.79-8-4z"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-search-outline.svg����������������0000664�0000000�0000000�00000001136�14753064456�0030615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 18.95c-3.23-.23-5-1.5-5-1.95v-2.23c1.13.55 2.5.92 4 1.1 0-.66.04-1.33.21-1.98-1.71-.22-3.24-.73-4.21-1.44V9.64c1.43.81 3.5 1.33 5.82 1.36.03-.03.05-.07.08-.1 2.2-2.19 5.6-2.49 8.1-.87V7c0-2.21-3.58-4-8-4S4 4.79 4 7v10c0 2.21 3.59 4 8 4 .34 0 .68 0 1-.03-.38-.25-.76-.53-1.1-.87-.35-.36-.65-.74-.9-1.15M12 5c3.87 0 6 1.5 6 2s-2.13 2-6 2-6-1.5-6-2 2.13-2 6-2m8.31 12.9c.44-.69.69-1.52.69-2.4 0-2.5-2-4.5-4.5-4.5S12 13 12 15.5s2 4.5 4.5 4.5c.87 0 1.69-.25 2.38-.68L22 22.39 23.39 21zm-3.81.1a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-search.svg������������������������0000664�0000000�0000000�00000001160�14753064456�0027135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.68 12.32a4.49 4.49 0 0 0-6.36.01 4.49 4.49 0 0 0 0 6.36 4.51 4.51 0 0 0 5.57.63L21 22.39 22.39 21l-3.09-3.11c1.13-1.77.87-4.09-.62-5.57m-1.41 4.95c-.98.98-2.56.97-3.54 0-.97-.98-.97-2.56.01-3.54.97-.97 2.55-.97 3.53 0 .97.98.97 2.56 0 3.54M10.9 20.1a6.5 6.5 0 0 1-1.48-2.32C6.27 17.25 4 15.76 4 14v3c0 2.21 3.58 4 8 4-.4-.26-.77-.56-1.1-.9M4 9v3c0 1.68 2.07 3.12 5 3.7v-.2c0-.93.2-1.85.58-2.69C6.34 12.3 4 10.79 4 9m8-6C7.58 3 4 4.79 4 7c0 2 3 3.68 6.85 4h.05c1.2-1.26 2.86-2 4.6-2 .91 0 1.81.19 2.64.56A3.22 3.22 0 0 0 20 7c0-2.21-3.58-4-8-4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-settings-outline.svg��������������0000664�0000000�0000000�00000000673�14753064456�0031215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3C7.58 3 4 4.79 4 7v10c0 1.2 1.06 2.27 2.73 3h10.54c1.67-.73 2.73-1.8 2.73-3V7c0-2.21-3.58-4-8-4m6 14c0 .5-2.13 2-6 2s-6-1.5-6-2v-2.23c1.61.78 3.72 1.23 6 1.23s4.39-.45 6-1.23zm0-4.55c-1.3.95-3.58 1.55-6 1.55s-4.7-.6-6-1.55V9.64c1.47.83 3.61 1.36 6 1.36s4.53-.53 6-1.36zM12 9C8.13 9 6 7.5 6 7s2.13-2 6-2 6 1.5 6 2-2.13 2-6 2M7 22h2v2H7zm8 0h2v2h-2zm-4 0h2v2h-2z"/></svg>���������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-settings.svg����������������������0000664�0000000�0000000�00000000506�14753064456�0027533�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 22h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zM12 3c4.42 0 8 1.79 8 4s-3.58 4-8 4-8-1.79-8-4 3.58-4 8-4M4 9c0 2.21 3.58 4 8 4s8-1.79 8-4v3c0 2.21-3.58 4-8 4s-8-1.79-8-4zm0 5c0 2.21 3.58 4 8 4s8-1.79 8-4v3c0 1.19-1.05 2.27-2.71 3H6.71C5.05 19.27 4 18.19 4 17z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-sync-outline.svg������������������0000664�0000000�0000000�00000001346�14753064456�0030327�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 16c.41 0 .81-.03 1.21-.06.19-.76.51-1.48.95-2.11-.69.11-1.42.17-2.16.17-2.42 0-4.7-.6-6-1.55V9.64c1.47.83 3.61 1.36 6 1.36s4.53-.53 6-1.36v1.55c.5-.12 1-.19 1.55-.19.15 0 .3 0 .45.03V7c0-2.21-3.58-4-8-4S4 4.79 4 7v10c0 2.21 3.59 4 8 4 .66 0 1.31-.04 1.92-.12-.35-.59-.61-1.24-.76-1.94-.37.06-.75.06-1.16.06-3.87 0-6-1.5-6-2v-2.23c1.61.78 3.72 1.23 6 1.23m0-11c3.87 0 6 1.5 6 2s-2.13 2-6 2-6-1.5-6-2 2.13-2 6-2m11 12.5c0 .82-.25 1.58-.67 2.21l-1.09-1.09c.17-.34.26-.72.26-1.12A2.5 2.5 0 0 0 19 15v1.5l-2.25-2.25L19 12v1.5c2.21 0 4 1.79 4 4m-4 1 2.25 2.25L19 23v-1.5c-2.21 0-4-1.79-4-4 0-.82.25-1.58.67-2.21l1.09 1.09c-.17.34-.26.72-.26 1.12A2.5 2.5 0 0 0 19 20z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database-sync.svg��������������������������0000664�0000000�0000000�00000001117�14753064456�0026646�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 12v1.5a4 4 0 0 1 4 4c0 .82-.25 1.58-.67 2.21l-1.09-1.09c.17-.34.26-.72.26-1.12A2.5 2.5 0 0 0 19 15v1.5l-2.25-2.25zm0 11v-1.5a4 4 0 0 1-4-4c0-.82.25-1.58.67-2.21l1.09 1.09c-.17.34-.26.72-.26 1.12A2.5 2.5 0 0 0 19 20v-1.5l2.25 2.25zM12 3c4.42 0 8 1.79 8 4s-3.58 4-8 4-8-1.79-8-4 3.58-4 8-4M4 9c0 2.21 3.58 4 8 4 1.11 0 2.17-.11 3.14-.32-.95.86-1.64 1.99-1.96 3.28L12 16c-4.42 0-8-1.79-8-4zm16 0v2h-.5l-.6.03c.7-.6 1.1-1.29 1.1-2.03M4 14c0 2.21 3.58 4 8 4l1-.03c.09 1.06.42 2.03.95 2.91L12 21c-4.42 0-8-1.79-8-4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/database.svg�������������������������������0000664�0000000�0000000�00000000415�14753064456�0025674�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3C7.58 3 4 4.79 4 7s3.58 4 8 4 8-1.79 8-4-3.58-4-8-4M4 9v3c0 2.21 3.58 4 8 4s8-1.79 8-4V9c0 2.21-3.58 4-8 4s-8-1.79-8-4m0 5v3c0 2.21 3.58 4 8 4s8-1.79 8-4v-3c0 2.21-3.58 4-8 4s-8-1.79-8-4"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/death-star-variant.svg���������������������0000664�0000000�0000000�00000000536�14753064456�0027632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.05 13h19.89c-.06.69-.2 1.36-.4 2H14v2h3v2h-2v2h-2.5v1H12c-5.18 0-9.45-3.95-9.95-9m19.89-2H2.05c.5-5.05 4.77-9 9.95-9 1.62 0 3.15.39 4.5 1.08V5h2v2H20v2h1.54c.2.64.34 1.31.4 2M12 6.75a2.5 2.5 0 0 0-2.5-2.5A2.5 2.5 0 0 0 7 6.75a2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/death-star.svg�����������������������������0000664�0000000�0000000�00000000434�14753064456�0026165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.05 13h19.9c-.5 5.05-4.76 9-9.95 9-5.18 0-9.45-3.95-9.95-9m19.9-2H2.05c.5-5.05 4.77-9 9.95-9s9.45 3.95 9.95 9M12 6.75a2.5 2.5 0 0 0-2.5-2.5A2.5 2.5 0 0 0 7 6.75a2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/deathly-hallows.svg������������������������0000664�0000000�0000000�00000000572�14753064456�0027235�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2 1 21h22zm.75 9.47c1.81.4 2.95 2.2 2.55 4.03-.3 1.25-1.3 2.25-2.55 2.53zM11.25 18c-1.81-.4-2.95-2.2-2.55-4 .3-1.28 1.3-2.28 2.55-2.56zm5.63-3.28A4.874 4.874 0 0 0 12.75 10V6.29L20.4 19.5h-7.33c2.22-.5 3.8-2.47 3.81-4.75zm-5.63-8.43V10c-2.65.4-4.48 2.88-4.07 5.54.32 1.96 1.79 3.58 3.75 4.01H3.6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/debian.svg���������������������������������0000664�0000000�0000000�00000003445�14753064456�0025360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.5 10.57-.2.37c.26-.78.11-1.63.15-2.37l-.07-.02c-.07-1.85-1.67-3.82-3.09-4.48-1.23-.57-3.12-.67-3.99-.24.12-.11.6-.15.45-.23-1.37.13-1.06.47-2.11.74-.29.28.86-.22.23.16-.56.13-.82-.12-1.65.74.07.12.53-.35.15.12-.79-.09-2.48 1.8-2.84 2.42l.19.04c-.31.77-.72 1.26-.77 1.72-.08 1.14-.45 3.21.08 3.85l-.06.53.23.45-.12.01c.58 1.83.62.04 1.39 1.94-.11-.04-.23-.08-.39-.32-.02.19.24.69.54 1.08l-.12.14c.16.31.32.38.43.49-.63-.35.57 1.13.7 1.32l.1-.17c-.02.24.17.56.53 1.01l.3-.01c.13.24.58.68.85.7l-.18.24c.69.2.33.29 1.18.59l-.17-.3c.43.37.56.7 1.17.98.85.3.96.18 1.82.43-.73 0-1.59 0-2.17-.22-3.96-1.07-7.56-5.72-7.32-10.5-.06-.97.1-2.18-.06-2.42.22-.74.48-1.64 1.01-2.71-.04-.07.09.21.36-.24.16-.36.29-.75.5-1.1l.1-.03c.11-.61 1.43-1.55 1.85-2.02v.18c.86-.81 2.4-1.35 3.26-1.73-.23.25.51-.03 1.04-.06l-.49.28c.63-.16.6.07 1.25-.03-.23.03-.5.1-.46.16.72.08.84-.22 1.51 0l-.05-.2c.94.34 1.13.28 2.14.82.36.01.4-.22.93 0 .1.16-.02.19.64.59.07-.03-.13-.22-.27-.37 1.3.71 2.75 2.22 3.18 3.84-.41-.74-.04.39-.18.33.18.49.33 1 .43 1.53-.12-.43-.39-1.48-.86-2.15-.03.43-.6-.3-.29.66.22.34.05-.35.34.25 0 .29.11.58.18.95-.1-.02-.22-.41-.3-.31.1.5.27.72.33.76-.03.08-.12-.08-.12.24.04.74.21.43.29.46-.09.37-.41.79-.25 1.42l-.2-.56c-.05.53.11.63-.13 1.28.18-.6.16-1.1-.01-.85.09.82-.65 1.45-.58 1.98l-.21-.29c-.57.83-.01.45-.4 1.06.14-.23-.07-.08.11-.36-.12.01-.55.53-.94.83-1.54 1.23-3.39 1.4-5.15.73h-.01c.01-.04 0-.09-.12-.17-1.51-1.15-2.4-2.13-2.11-4.41.25-.17.31-1.12.84-1.45.32-.71 1.28-1.36 2.31-1.38 1.05-.06 1.94.56 2.39 1.14-.82-.75-2.14-.98-3.28-.43-1.15.53-1.84 1.8-1.76 3.07.06-.07.1-.02.12-.18-.03 2.47 2.66 4.28 4.6 3.37l.03.05c.78-.22.68-.39 1.19-.75-.04.09-.34.3-.16.3.25-.06 1.03-.79 1.42-1.13.17-.38-.1-.23.15-.69l.3-.15c.17-.48.35-.75.35-1.32"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/debug-step-into.svg������������������������0000664�0000000�0000000�00000000312�14753064456�0027132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 22a2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2m1-20v11l4.5-4.5 1.42 1.42L12 16.84 5.08 9.92 6.5 8.5 11 13V2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/debug-step-out.svg�������������������������0000664�0000000�0000000�00000000312�14753064456�0026770�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 22a2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2m1-6h-2V6l-4.5 4.5-1.42-1.42L12 2.16l6.92 6.92-1.42 1.42L13 6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/debug-step-over.svg������������������������0000664�0000000�0000000�00000000437�14753064456�0027144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 14a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m11.46-5.14-1.59 6.89L15 14.16l3.8-2.38A7.97 7.97 0 0 0 12 8c-3.95 0-7.23 2.86-7.88 6.63l-1.97-.35C2.96 9.58 7.06 6 12 6c3.58 0 6.73 1.89 8.5 4.72z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/decagram-outline.svg�����������������������0000664�0000000�0000000�00000000645�14753064456�0027355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23 12-2.44 2.78.34 3.68-3.61.82-1.89 3.18L12 21l-3.4 1.47-1.89-3.18-3.61-.82.34-3.69L1 12l2.44-2.79-.34-3.68 3.61-.81L8.6 1.54 12 3l3.4-1.46 1.89 3.18 3.61.82-.34 3.68zm-2.67 0L18.5 9.89l.24-2.79L16 6.5l-1.42-2.43L12 5.18 9.42 4.07 8 6.5l-2.74.59.24 2.79L3.67 12l1.83 2.1-.24 2.8 2.74.6 1.42 2.43L12 18.81l2.58 1.11L16 17.5l2.74-.61-.24-2.79z"/></svg>�������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/decagram.svg�������������������������������0000664�0000000�0000000�00000000370�14753064456�0025673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23 12-2.44-2.78.34-3.68-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/decimal-comma-decrease.svg�����������������0000664�0000000�0000000�00000000312�14753064456�0030365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 13v3H4l-1-3a1 1 0 0 1 2 0m10 3v-2l-3 3 3 3v-2h6v-2m-9-5a3 3 0 0 1-6 0V8a3 3 0 0 1 6 0m-2 0a1 1 0 0 0-2 0v3a1 1 0 0 0 2 0Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/decimal-comma-increase.svg�����������������0000664�0000000�0000000�00000000451�14753064456�0030407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 5a3 3 0 0 0-3 3v3a3 3 0 0 0 6 0V8a3 3 0 0 0-3-3m1 6a1 1 0 0 1-2 0V8a1 1 0 0 1 2 0m6 6a3 3 0 0 0 3-3V8a3 3 0 0 0-6 0v3a3 3 0 0 0 3 3m-1-6a1 1 0 0 1 2 0v3a1 1 0 0 1-2 0m4 9v-2h-6v-2h6v-2l3 3M5 13v3H4l-1-3a1 1 0 0 1 2 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/decimal-comma.svg��������������������������0000664�0000000�0000000�00000000505�14753064456�0026620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 7a3 3 0 0 1 3 3v3a3 3 0 0 1-6 0v-3a3 3 0 0 1 3-3m0 2a1 1 0 0 0-1 1v3a1 1 0 0 0 2 0v-3a1 1 0 0 0-1-1m7-2a3 3 0 0 1 3 3v3a3 3 0 0 1-6 0v-3a3 3 0 0 1 3-3m0 2a1 1 0 0 0-1 1v3a1 1 0 0 0 2 0v-3a1 1 0 0 0-1-1M5 14a1 1 0 0 0-1 1l1 3h1v-3a1 1 0 0 0-1-1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/decimal-decrease.svg�����������������������0000664�0000000�0000000�00000000444�14753064456�0027301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 17 3 3v-2h6v-2h-6v-2zM9 5a3 3 0 0 1 3 3v3a3 3 0 0 1-3 3 3 3 0 0 1-3-3V8a3 3 0 0 1 3-3m0 2a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1 1 1 0 0 0 1-1V8a1 1 0 0 0-1-1m-5 5a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/decimal-increase.svg�����������������������0000664�0000000�0000000�00000000644�14753064456�0027321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22 17-3 3v-2h-6v-2h6v-2zM9 5a3 3 0 0 1 3 3v3a3 3 0 0 1-3 3 3 3 0 0 1-3-3V8a3 3 0 0 1 3-3m0 2a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1 1 1 0 0 0 1-1V8a1 1 0 0 0-1-1m7-2a3 3 0 0 1 3 3v3a3 3 0 0 1-3 3 3 3 0 0 1-3-3V8a3 3 0 0 1 3-3m0 2a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1 1 1 0 0 0 1-1V8a1 1 0 0 0-1-1M4 12a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1"/></svg>��������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/decimal.svg��������������������������������0000664�0000000�0000000�00000000434�14753064456�0025527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 7a3 3 0 0 0-3 3v3a3 3 0 0 0 6 0v-3a3 3 0 0 0-3-3m1 6a1 1 0 0 1-2 0v-3a1 1 0 0 1 2 0m6-3a3 3 0 0 0-3 3v3a3 3 0 0 0 6 0v-3a3 3 0 0 0-3-3m1 6a1 1 0 0 1-2 0v-3a1 1 0 0 1 2 0M6 15a1 1 0 1 1-1-1 1 1 0 0 1 1 1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/delete-alert-outline.svg�������������������0000664�0000000�0000000�00000000273�14753064456�0030156�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 19V7h12v12c0 1.1-.9 2-2 2H6c-1.1 0-2-.9-2-2M6 9v10h8V9zm7.5-5H17v2H3V4h3.5l1-1h5zM19 17v-2h2v2zm0-4V7h2v6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/delete-alert.svg���������������������������0000664�0000000�0000000�00000000257�14753064456�0026503�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 4v2H3V4h3.5l1-1h5l1 1zM4 19V7h12v12c0 1.1-.9 2-2 2H6c-1.1 0-2-.9-2-2m15-4h2v2h-2zm0-8h2v6h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/delete-circle-outline.svg������������������0000664�0000000�0000000�00000000432�14753064456�0030305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8m4 6v7a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1v-7zm-2.5-4 1 1H17v2H7V7h2.5l1-1z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/delete-circle.svg��������������������������0000664�0000000�0000000�00000000330�14753064456�0026625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c5.53 0 10 4.47 10 10s-4.47 10-10 10S2 17.53 2 12 6.47 2 12 2m5 5h-2.5l-1-1h-3l-1 1H7v2h10zM9 18h6a1 1 0 0 0 1-1v-7H8v7a1 1 0 0 0 1 1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/delete-clock-outline.svg�������������������0000664�0000000�0000000�00000000542�14753064456�0030141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 13h1.5v2.82l2.44 1.41-.75 1.3L15 16.69zm8 3c0 3.87-3.13 7-7 7-1.91 0-3.64-.76-4.9-2H8c-1.1 0-2-.9-2-2V7h12v2.29c2.89.86 5 3.54 5 6.71M9 16c0-3.87 3.13-7 7-7H8v10h1.67c-.43-.91-.67-1.93-.67-3m7-5c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5m-.5-7H19v2H5V4h3.5l1-1h5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/delete-clock.svg���������������������������0000664�0000000�0000000�00000000451�14753064456�0026463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 13h1.5v2.82l2.44 1.41-.75 1.3L15 16.69zm8 3c0 3.87-3.13 7-7 7-1.91 0-3.64-.76-4.9-2H8c-1.1 0-2-.9-2-2V7h12v2.29c2.89.86 5 3.54 5 6.71m-7-5c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5m3-7v2H5V4h3.5l1-1h5l1 1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/delete-empty-outline.svg�������������������0000664�0000000�0000000�00000000334�14753064456�0030203�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.37 8.91-1 1.73-12.13-7 1-1.73 3.04 1.75 1.36-.37 4.33 2.5.37 1.37zM6 19V7h5.07L18 11v8a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2m2 0h8v-6.8L10.46 9H8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/delete-empty.svg���������������������������0000664�0000000�0000000�00000000306�14753064456�0026525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.37 8.91-1 1.73-12.13-7 1-1.73 3.04 1.75 1.36-.37 4.33 2.5.37 1.37zM6 19V7h5.07L18 11v8a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/delete-forever-outline.svg�����������������0000664�0000000�0000000�00000000431�14753064456�0030513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.12 10.47 12 12.59l-2.13-2.12-1.41 1.41L10.59 14l-2.12 2.12 1.41 1.41L12 15.41l2.12 2.12 1.41-1.41L13.41 14l2.12-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4zM6 19a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7H6zM8 9h8v10H8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/delete-forever.svg�������������������������0000664�0000000�0000000�00000000412�14753064456�0027035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 19a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7H6zm2.46-7.12 1.41-1.41L12 12.59l2.12-2.12 1.41 1.41L13.41 14l2.12 2.12-1.41 1.41L12 15.41l-2.12 2.12-1.41-1.41L10.59 14zM15.5 4l-1-1h-5l-1 1H5v2h14V4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/delete-off-outline.svg���������������������0000664�0000000�0000000�00000000427�14753064456�0027622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5.27 3.28 4 5 5.72l.28.28 1 1 2 2L16 16.72l2 2 2 2L18.73 22l-1.46-1.46c-.34.29-.77.46-1.27.46H8c-1.1 0-2-.9-2-2V9.27zM8 19h7.73L8 11.27zM18 7v9.18l-2-2V9h-5.18l-2-2zm-2.5-3H19v2H7.82l-2-2H8.5l1-1h5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/delete-off.svg�����������������������������0000664�0000000�0000000�00000000360�14753064456�0026141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5.27 3.28 4 5 5.72l.28.28 1 1L18 18.72l2 2L18.73 22l-1.46-1.46c-.34.29-.77.46-1.27.46H8c-1.1 0-2-.9-2-2V9.27zM19 4v2H7.82l-2-2H8.5l1-1h5l1 1zm-1 3v9.18L8.82 7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/delete-outline.svg�������������������������0000664�0000000�0000000�00000000236�14753064456�0027050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 19a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7H6zM8 9h8v10H8zm7.5-5-1-1h-5l-1 1H5v2h14V4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/delete-restore.svg�������������������������0000664�0000000�0000000�00000000335�14753064456�0027054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 14h2l-4-4-4 4h2v4h4zM6 7h12v12c0 .5-.2 1-.61 1.39-.39.41-.89.61-1.39.61H8c-.5 0-1-.2-1.39-.61C6.2 20 6 19.5 6 19zm13-3v2H5V4h3.5l1-1h5l1 1z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/delete-sweep-outline.svg�������������������0000664�0000000�0000000�00000000303�14753064456�0030164�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 16h4v2h-4zm0-8h7v2h-7zm0 4h6v2h-6zm-4-2v8H5v-8zm2-2H3v10a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2zm1-3h-3l-1-1H6L5 5H2v2h12z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/delete-sweep.svg���������������������������0000664�0000000�0000000�00000000267�14753064456�0026520�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 16h4v2h-4zm0-8h7v2h-7zm0 4h6v2h-6zM3 18a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V8H3zM14 5h-3l-1-1H6L5 5H2v2h12z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/delete-variant.svg�������������������������0000664�0000000�0000000�00000000331�14753064456�0027031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.03 3 18 20.31c-.17.96-1 1.69-2 1.69H8c-1 0-1.83-.73-2-1.69L2.97 3zM5.36 5 8 20h8l2.64-15zM9 18v-4h4v4zm4-4.82L9.82 10 13 6.82 16.18 10z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/delete.svg���������������������������������0000664�0000000�0000000�00000000224�14753064456�0025370�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 4h-3.5l-1-1h-5l-1 1H5v2h14M6 19a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7H6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/delta.svg����������������������������������0000664�0000000�0000000�00000000162�14753064456�0025220�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 7.77 18.39 18H5.61zM12 4 2 20h20"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/desk-lamp-off.svg��������������������������0000664�0000000�0000000�00000000640�14753064456�0026555�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9 10.87-.2.26c.13.27.2.57.2.87a2 2 0 0 1-.47 1.28L13 20h4v2H7v-2h3.62l-4.04-6.05A2 2 0 0 1 5 12c0-1.1.9-2 2-2h.14l.39-.58L1.11 3l1.28-1.27 19.72 19.73-1.27 1.27zM18.33 7l-1.66 2.5c.68.45 1.62.27 2.08-.42S19 7.46 18.33 7m-8.76-.63L11 7.82l1-1.45c-.22 1.68.75 3.52 2.45 4.63l4.44-6.63c-1.69-1.13-3.77-1.33-5.24-.5L10.85 2 9.18 4.5l1.14.75z"/></svg>������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/desk-lamp-on.svg���������������������������0000664�0000000�0000000�00000000632�14753064456�0026420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.85 2 9.18 4.5l1.14.75L7.14 10H7c-1.1 0-2 .9-2 2a2 2 0 0 0 1.58 1.95L10.62 20H7v2h10v-2h-4l-4.47-6.72A2 2 0 0 0 9 12c0-.3-.07-.6-.2-.87L12 6.37c-.22 1.68.75 3.52 2.45 4.63l4.44-6.63c-1.69-1.13-3.77-1.33-5.24-.5zm7.48 5-1.66 2.5c.68.45 1.62.27 2.08-.42S19 7.46 18.33 7m3.37 5.58-2.12-2.13.7-.7 2.12 2.12zM23 7h-3V6h3zm-7 7v-3h1v3z"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/desk-lamp.svg������������������������������0000664�0000000�0000000�00000000532�14753064456�0026005�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.85 2 9.18 4.5l1.14.75L7.14 10H7a2 2 0 0 0-2 2 2 2 0 0 0 1.58 1.95L10.62 20H7v2h10v-2h-4l-4.47-6.72A2 2 0 0 0 9 12c0-.3-.07-.6-.2-.87L12 6.37c-.22 1.68.75 3.52 2.45 4.63l4.44-6.63c-1.69-1.13-3.77-1.33-5.24-.5zm7.48 5-1.66 2.5c.68.45 1.62.27 2.08-.42S19 7.46 18.33 7"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/desk.svg�����������������������������������0000664�0000000�0000000�00000000424�14753064456�0025056�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18c.55 0 1 .45 1 1s-.45 1-1 1v11h-2v-2h-4v2h-2V8H5v11H3V8c-.55 0-1-.45-1-1s.45-1 1-1m13 4.5v.5h2v-.5c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5m0 4v.5h2v-.5c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/deskphone.svg������������������������������0000664�0000000�0000000�00000000433�14753064456�0026110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m10 2v14h4V5zM5 5v4h8V5zm0 6v2h2v-2zm3 0v2h2v-2zm3 0v2h2v-2zm-6 3v2h2v-2zm3 0v2h2v-2zm3 0v2h2v-2zm0 3v2h2v-2zm-3 0v2h2v-2zm-3 0v2h2v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/desktop-classic.svg������������������������0000664�0000000�0000000�00000000452�14753064456�0027221�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2c-1.11 0-2 .89-2 2v8c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm0 2h12v8H6zM4 15c-1.11 0-2 .89-2 2v3c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2v-3c0-1.11-.89-2-2-2zm4 2h12v3H8zm1 .75v1.5h4v-1.5zm6 0v1.5h4v-1.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/desktop-tower-monitor.svg������������������0000664�0000000�0000000�00000000421�14753064456�0030421�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 18h-5a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1m0-10h-5v1h5zm0 2h-5v1h5zM9 15v2h1v1H5v-1h1v-2H2a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h11a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1zm3-7H3v5h9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/desktop-tower.svg��������������������������0000664�0000000�0000000�00000000266�14753064456�0026743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 2h8a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m0 2v2h8V4zm8 4H8v2h8zm0 10h-2v2h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/details.svg��������������������������������0000664�0000000�0000000�00000000161�14753064456�0025553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.38 6h11.25L12 16zM3 4l9 16 9-16z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dev-to.svg���������������������������������0000664�0000000�0000000�00000001445�14753064456�0025332�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.73 11.93c0 1.72-.02 1.83-.23 2.07-.19.17-.38.23-.76.23l-.51.01-.03-2.27-.02-2.27h.52c.35 0 .6.07.77.21.24.21.26.25.26 2.02M22 7.5v9c0 1.11-.89 2-2 2H4c-1.11 0-2-.89-2-2v-9c0-1.11.89-2 2-2h16c1.11 0 2 .89 2 2M8.93 11.73c-.03-1.84-.05-1.99-.29-2.39-.4-.68-.85-.84-2.36-.84H5v7h1.21c1.33 0 1.89-.17 2.29-.71.41-.53.5-.98.43-3.06m4.19-3.23h-1.48c-1.49 0-1.5 0-1.71.28S9.7 9.21 9.7 12v2.96l.27.27c.25.27.31.27 1.71.27h1.44v-1.19l-1.09-.04-1.1-.03V12.6l.68-.03.66-.04v-1.19h-1.39V9.7h2.24zm5.88.06c0-.06-.3-.06-.66-.06l-.68.06-.59 2.35c-.38 1.48-.62 2.27-.67 2.13-.08-.27-1.14-4.44-1.14-4.49s-.31-.05-.68-.05h-.69l.41 1.55c.2.87.59 2.28.81 3.15.34 1.35.46 1.65.75 1.94.2.22.45.36.61.36.33 0 .76-.34.9-.73C17.5 14.5 19 8.69 19 8.56"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/developer-board.svg������������������������0000664�0000000�0000000�00000000360�14753064456�0027201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 9V7h-2V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-2h2v-2h-2v-2h2v-2h-2V9zm-4 10H4V5h14zM6 13h5v4H6zm6-6h4v3h-4zM6 7h5v5H6zm6 4h4v6h-4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/deviantart.svg�����������������������������0000664�0000000�0000000�00000000176�14753064456�0026275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 6h6l2-4h4v4l-3.5 7H18v5h-6l-2 4H6v-4l3.5-7H6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/devices.svg��������������������������������0000664�0000000�0000000�00000000612�14753064456�0025551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18V4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v-2H3zm10 6H9v1.78c-.61.55-1 1.33-1 2.22s.39 1.67 1 2.22V20h4v-1.78c.61-.55 1-1.34 1-2.22s-.39-1.67-1-2.22zm-2 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5M22 8h-6c-.5 0-1 .5-1 1v10c0 .5.5 1 1 1h6c.5 0 1-.5 1-1V9c0-.5-.5-1-1-1m-1 10h-4v-8h4z"/></svg>����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dharmachakra.svg���������������������������0000664�0000000�0000000�00000001426�14753064456�0026541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 2v1c-1.73.2-3.31.9-4.6 1.94l-.76-.76L4.22 5.6l.78.75A9.04 9.04 0 0 0 3 11H2v2h1c.21 1.68.9 3.26 2 4.56l-.78.76 1.42 1.42.75-.74A9.3 9.3 0 0 0 11 21v1h2v-1a9.27 9.27 0 0 0 4.6-2l.76.74 1.42-1.42-.78-.75c1.1-1.3 1.79-2.89 2-4.57h1v-2h-1a9 9 0 0 0-2-4.64l.78-.76-1.42-1.42-.75.76A9 9 0 0 0 13 3V2zm0 3v3l-1 .5-2.19-2.15c.91-.68 2-1.18 3.19-1.35m2 0c1.16.18 2.26.64 3.2 1.35L14 8.5 13 8zM6.4 7.76 8.5 10 8 11H5c.16-1.16.7-2.3 1.39-3.25zm11.2 0c.73.95 1.21 2.06 1.4 3.24h-3l-.5-1 2.11-2.24zM12 10c1.12 0 2 .88 2 2s-.88 2-2 2-2-.88-2-2 .88-2 2-2m-7 3h3l.57 1-2.18 2.15C5.67 15.24 5.19 14.16 5 13m11 0h3a7 7 0 0 1-1.39 3.16L15.5 14zm-6 2.5 1 .5v3a7.04 7.04 0 0 1-3.2-1.43zm4 0 2.19 2.07c-.91.68-2 1.26-3.19 1.43v-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/diabetes.svg�������������������������������0000664�0000000�0000000�00000000556�14753064456�0025716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.73 2.29a1 1 0 0 1 1.41 1.41L13 6.79l.76.95 1.94 5a1.46 1.46 0 0 1-.34 1.55l-3.09 3.09a1.55 1.55 0 0 1-2.12 0l-4.6-4.6a1.37 1.37 0 0 1-.4-1l-.5-6.44h1.07a1 1 0 0 1 .75.3l.14.17 1.05 3.48m0 12.71L2 16.36l2.12-2.12 5.66 5.66M19.5 4.5S17 7.26 17 9a2.5 2.5 0 1 0 5 0c0-1.74-2.5-4.5-2.5-4.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dialpad.svg��������������������������������0000664�0000000�0000000�00000001253�14753064456�0025527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 19a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2M6 1a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m0 6a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m0 6a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m12-8a2 2 0 0 0 2-2 2 2 0 0 0-2-2 2 2 0 0 0-2 2 2 2 0 0 0 2 2m-6 8a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m6 0a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m0-6a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m-6 0a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m0-6a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/diameter-outline.svg�����������������������0000664�0000000�0000000�00000000365�14753064456�0027403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 18a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8m4-5v-2H8v2l-3-3 3-3v2h8V9l3 3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/diameter-variant.svg�����������������������0000664�0000000�0000000�00000000652�14753064456�0027367�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4.15 21.46 1.32-1.88A10.01 10.01 0 0 1 2 12 10 10 0 0 1 12 2c1.78 0 3.44.46 4.89 1.27l1.32-1.88 1.64 1.15-1.32 1.88C20.65 6.26 22 8.97 22 12a10 10 0 0 1-10 10c-1.78 0-3.44-.46-4.89-1.27l-1.32 1.88zM12 4a8 8 0 0 0-8 8c0 2.35 1 4.46 2.63 5.93l9.1-13.01A7.9 7.9 0 0 0 12 4m0 16a8 8 0 0 0 8-8c0-2.35-1-4.46-2.63-5.93l-9.1 13.01c1.11.59 2.38.92 3.73.92"/></svg>��������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/diameter.svg�������������������������������0000664�0000000�0000000�00000000272�14753064456�0025723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m5 13v-2H7v2l-3-3 3-3v2h10V9l3 3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/diamond-outline.svg������������������������0000664�0000000�0000000�00000000211�14753064456�0027212�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 2H6L2 8l10 14L22 8zM4.43 8l2.64-4h9.86l2.64 4L12 18.56z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/diamond-stone.svg��������������������������0000664�0000000�0000000�00000000261�14753064456�0026670�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 9h3l-5 7m-4-7h4l-2 8M5 9h3l2 7m5-12h2l2 3h-3m-5-3h2l1 3h-4M7 4h2L8 7H5m1-5L2 8l10 14L22 8l-4-6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/diamond.svg��������������������������������0000664�0000000�0000000�00000000147�14753064456�0025545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2 2 8l10 14L22 8l-4-6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/diaper-outline.svg�������������������������0000664�0000000�0000000�00000000656�14753064456�0027060�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 4H3c-.55 0-1 .45-1 1v5c0 5.5 4.5 10 10 10s10-4.5 10-10V5c0-.55-.45-1-1-1M4 6h16v2h-5v2h5c0 .34 0 .67-.06 1A6.996 6.996 0 0 0 13 17.94c-.33.06-.66.06-1 .06s-.67 0-1-.06A6.996 6.996 0 0 0 4.06 11C4 10.67 4 10.34 4 10h5V8H4zm11.04 11.4a4.99 4.99 0 0 1 4.37-4.36 8.18 8.18 0 0 1-4.38 4.37M4.6 13.04c2.28.27 4.1 2.08 4.37 4.37a8.12 8.12 0 0 1-4.37-4.38Z"/></svg>����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dice-1-outline.svg�������������������������0000664�0000000�0000000�00000000363�14753064456�0026651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 5v14H5V5zm0-2H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m-7 7.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dice-1.svg���������������������������������0000664�0000000�0000000�00000000320�14753064456�0025165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m7 7a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dice-2-outline.svg�������������������������0000664�0000000�0000000�00000000461�14753064456�0026651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 5v14H5V5zm0-2H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2M7.5 6C6.67 6 6 6.67 6 7.5S6.67 9 7.5 9 9 8.33 9 7.5 8.33 6 7.5 6m9 9c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dice-2.svg���������������������������������0000664�0000000�0000000�00000000416�14753064456�0025174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m2 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m10 10a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dice-3-outline.svg�������������������������0000664�0000000�0000000�00000000556�14753064456�0026657�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 5v14H5V5zm0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m-7 7.5c-.8 0-1.5.7-1.5 1.5s.7 1.5 1.5 1.5 1.5-.7 1.5-1.5-.7-1.5-1.5-1.5M7.5 6C6.7 6 6 6.7 6 7.5S6.7 9 7.5 9 9 8.3 9 7.5 8.3 6 7.5 6m9 9c-.8 0-1.5.7-1.5 1.5s.7 1.5 1.5 1.5 1.5-.7 1.5-1.5-.7-1.5-1.5-1.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dice-3.svg���������������������������������0000664�0000000�0000000�00000000512�14753064456�0025172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m7 7a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2M7 5a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m10 10a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dice-4-outline.svg�������������������������0000664�0000000�0000000�00000000700�14753064456�0026647�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 5v14H5V5zm0-2H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2M7.5 6C6.67 6 6 6.67 6 7.5S6.67 9 7.5 9 9 8.33 9 7.5 8.33 6 7.5 6m9 9c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5m0-9c-.83 0-1.5.67-1.5 1.5S15.67 9 16.5 9 18 8.33 18 7.5 17.33 6 16.5 6m-9 9c-.83 0-1.5.67-1.5 1.5S6.67 18 7.5 18 9 17.33 9 16.5 8.33 15 7.5 15"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dice-4.svg���������������������������������0000664�0000000�0000000�00000000610�14753064456�0025172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m2 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m10 10a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m0-10a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2M7 15a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dice-5-outline.svg�������������������������0000664�0000000�0000000�00000000766�14753064456�0026664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 5v14H5V5zm0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2M7.5 6C6.7 6 6 6.7 6 7.5S6.7 9 7.5 9 9 8.3 9 7.5 8.3 6 7.5 6m9 9c-.8 0-1.5.7-1.5 1.5s.7 1.5 1.5 1.5 1.5-.7 1.5-1.5-.7-1.5-1.5-1.5m0-9c-.8 0-1.5.7-1.5 1.5S15.7 9 16.5 9 18 8.3 18 7.5 17.3 6 16.5 6M12 10.5c-.8 0-1.5.7-1.5 1.5s.7 1.5 1.5 1.5 1.5-.7 1.5-1.5-.7-1.5-1.5-1.5M7.5 15c-.8 0-1.5.7-1.5 1.5S6.7 18 7.5 18 9 17.3 9 16.5 8.3 15 7.5 15"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/material/dice-5.svg���������������������������������0000664�0000000�0000000�00000000705�14753064456�0025200�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m2 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m10 10a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m0-10a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m-5 5a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m-5 5a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dice-6-outline.svg�������������������������0000664�0000000�0000000�00000001073�14753064456�0026655�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 5v14H5V5zm0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2M7.5 6C6.7 6 6 6.7 6 7.5S6.7 9 7.5 9 9 8.3 9 7.5 8.3 6 7.5 6m9 9c-.8 0-1.5.7-1.5 1.5s.7 1.5 1.5 1.5 1.5-.7 1.5-1.5-.7-1.5-1.5-1.5m0-4.5c-.8 0-1.5.7-1.5 1.5s.7 1.5 1.5 1.5S18 12.8 18 12s-.7-1.5-1.5-1.5m0-4.5c-.8 0-1.5.7-1.5 1.5S15.7 9 16.5 9 18 8.3 18 7.5 17.3 6 16.5 6m-9 4.5c-.8 0-1.5.7-1.5 1.5s.7 1.5 1.5 1.5S9 12.8 9 12s-.7-1.5-1.5-1.5m0 4.5c-.8 0-1.5.7-1.5 1.5S6.7 18 7.5 18 9 17.3 9 16.5 8.3 15 7.5 15"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dice-6.svg���������������������������������0000664�0000000�0000000�00000000777�14753064456�0025212�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m2 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m10 10a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m0-5a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m0-5a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2M7 10a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m0 5a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>�mkdocs-material-9.6.4/material/templates/.icons/material/dice-d10-outline.svg�����������������������0000664�0000000�0000000�00000001000�14753064456�0027062�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 16H9v-5.79l-1.78.55V9.53l3.14-1.12h.14zm3.57-7.79c1.43 0 2.57 1.15 2.57 2.57v2.64c0 1.42-1.14 2.58-2.57 2.58s-2.57-1.16-2.57-2.58v-2.64a2.57 2.57 0 0 1 2.57-2.57m-.01 1.44c-.59 0-1.06.48-1.06 1.06v2.79c0 .57.47 1.04 1.06 1.04.58 0 1.08-.48 1.08-1.04v-2.79c0-.59-.5-1.06-1.08-1.06M12 2c-.5 0-1 .19-1.41.59l-8 8c-.79.78-.79 2.04 0 2.82l8 8c.78.79 2.04.79 2.82 0l8-8c.79-.78.79-2.04 0-2.82l-8-8C13 2.19 12.5 2 12 2m0 2 8 8-8 8-8-8Z"/></svg>mkdocs-material-9.6.4/material/templates/.icons/material/dice-d10.svg�������������������������������0000664�0000000�0000000�00000000747�14753064456�0025426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c-.5 0-1 .19-1.41.59l-8 8c-.79.78-.79 2.04 0 2.82l8 8c.78.79 2.04.79 2.82 0l8-8c.79-.78.79-2.04 0-2.82l-8-8C13 2.19 12.5 2 12 2m2.07 6.21c1.43 0 2.57 1.15 2.57 2.57v2.64c0 1.42-1.14 2.58-2.57 2.58s-2.57-1.16-2.57-2.58v-2.64a2.57 2.57 0 0 1 2.57-2.57m-3.71.2h.14V16H9v-5.79l-1.78.55V9.53zm3.7 1.24c-.59 0-1.06.48-1.06 1.06v2.79c0 .57.47 1.04 1.06 1.04.58 0 1.08-.48 1.08-1.04v-2.79c0-.59-.5-1.06-1.08-1.06"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dice-d12-outline.svg�����������������������0000664�0000000�0000000�00000000565�14753064456�0027103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2 1.5 9.64 5.5 22h13l4-12.36zm5 18H7l-3.15-9.6L12 4.47l8.15 5.93zm0-4.25V17h-5.34v-1.09s3.57-3.46 3.57-4.51c0-1.28-1.05-1.15-1.05-1.15-.68.05-1.18.62-1.18 1.3h-1.56c.06-1.46 1.28-2.61 2.83-2.55 2.47 0 2.5 1.85 2.5 2.3 0 1.77-3.19 4.47-3.19 4.47zM10.5 17H8.89v-6.11L7 11.47v-1.28L10.31 9h.19z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dice-d12.svg�������������������������������0000664�0000000�0000000�00000000526�14753064456�0025423�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2 1.5 9.64 5.5 22h13l4-12.36zm-1.5 15H8.89v-6.11L7 11.47v-1.28L10.31 9h.19zm6.5 0h-5.34v-1.09s3.57-3.46 3.57-4.51c0-1.28-1.05-1.15-1.05-1.15-.68.05-1.18.62-1.18 1.3h-1.56c.06-1.46 1.28-2.61 2.83-2.55 2.47 0 2.5 1.85 2.5 2.3 0 1.77-3.19 4.47-3.19 4.47l3.42-.02z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dice-d20-outline.svg�����������������������0000664�0000000�0000000�00000001334�14753064456�0027075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 16.5c0 .38-.21.71-.53.88l-7.9 4.44c-.16.12-.36.18-.57.18s-.41-.06-.57-.18l-7.9-4.44A.99.99 0 0 1 3 16.5v-9c0-.38.21-.71.53-.88l7.9-4.44c.16-.12.36-.18.57-.18s.41.06.57.18l7.9 4.44c.32.17.53.5.53.88zM12 4.15 5 8.09v7.82l7 3.94 7-3.94V8.09zm2.93 4.12a2.57 2.57 0 0 1 2.57 2.57v2.66c0 1.4-1.15 2.55-2.57 2.55-1.43 0-2.57-1.15-2.57-2.55v-2.66a2.57 2.57 0 0 1 2.57-2.57m-.01 1.44c-.58 0-1.06.47-1.06 1.06v2.76c0 .59.48 1.07 1.06 1.07S16 14.12 16 13.53v-2.76c0-.59-.5-1.06-1.08-1.06m-3.47 5.05v1.2l-5.14-.03v-1.02s3.43-3.33 3.44-4.34c0-1.24-1.02-1.11-1.02-1.11s-.98.04-1.09 1.25l-1.5.05s.04-2.5 2.69-2.5c2.37 0 2.4 1.78 2.4 2.24 0 1.68-3.08 4.27-3.08 4.27z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dice-d20.svg�������������������������������0000664�0000000�0000000�00000001256�14753064456�0025423�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.47 6.62-7.9-4.44C12.41 2.06 12.21 2 12 2s-.41.06-.57.18l-7.9 4.44c-.32.17-.53.5-.53.88v9c0 .38.21.71.53.88l7.9 4.44c.16.12.36.18.57.18s.41-.06.57-.18l7.9-4.44c.32-.17.53-.5.53-.88v-9c0-.38-.21-.71-.53-.88m-9.02 9.34-5.14-.03v-1.02s3.43-3.33 3.44-4.34c0-1.24-1.02-1.11-1.02-1.11s-.98.04-1.09 1.25l-1.5.05s.04-2.5 2.69-2.5c2.37 0 2.4 1.78 2.4 2.24 0 1.68-3.08 4.27-3.08 4.27l3.3-.01zm6.05-2.46c0 1.4-1.15 2.55-2.57 2.55-1.43 0-2.57-1.15-2.57-2.55v-2.66c0-1.42 1.14-2.57 2.57-2.57s2.57 1.15 2.57 2.57zM16 10.77v2.76c0 .59-.5 1.07-1.08 1.07s-1.06-.48-1.06-1.07v-2.76c0-.59.48-1.06 1.06-1.06s1.08.47 1.08 1.06"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dice-d4-outline.svg������������������������0000664�0000000�0000000�00000000456�14753064456�0027023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.43 15.15h.86v1.21h-.86V18h-1.51v-1.64h-3.1l-.07-.95 3.16-4.99h1.52zm-3.18 0h1.67v-2.68zM22 21H2c-.36 0-.69-.19-.87-.5a.97.97 0 0 1 .02-1l10-16.5c.35-.62 1.35-.62 1.71 0l10 16.5A.993.993 0 0 1 22 21M3.78 19h16.45L12 5.43z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dice-d4.svg��������������������������������0000664�0000000�0000000�00000000434�14753064456�0025342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.25 15.15 1.67-2.68v2.68zM21.92 21H2.08c-.84 0-1.36-.92-.92-1.64l9.92-16.23c.42-.69 1.42-.69 1.84 0l9.92 16.23c.44.72-.08 1.64-.92 1.64m-7.63-5.85h-.86v-4.73h-1.52l-3.16 4.99.07.95h3.1V18h1.51v-1.64h.86z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dice-d6-outline.svg������������������������0000664�0000000�0000000�00000000634�14753064456�0027023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 2v14h14V5zm8.39 4.53c-2.5-.03-2.53 2-2.53 2s.55-.66 1.67-.66c.66 0 1.97.58 2.02 2.54.06 2.06-1.78 2.59-1.78 2.59s-3.5.86-3.47-3.34c.03-4.72 4.09-4.33 4.09-4.33zm-1.44 2.57c-.74-.1-1.12.68-1.12.68l.02.72c0 .77.54 1.33 1.15 1.33s1.05-.56 1.05-1.33-.49-1.4-1.1-1.4"/></svg>����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dice-d6.svg��������������������������������0000664�0000000�0000000�00000000630�14753064456�0025342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.05 13.5c0 .77-.44 1.33-1.05 1.33s-1.15-.56-1.15-1.33l-.02-.72s.38-.78 1.12-.68c.61 0 1.1.63 1.1 1.4M21 5v14c0 1.11-.89 2-2 2H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h14a2 2 0 0 1 2 2m-6.45 8.41c-.05-1.96-1.36-2.54-2.02-2.54-1.12 0-1.67.66-1.67.66s.03-2.03 2.53-2v-1.2s-4.06-.39-4.09 4.33c-.03 4.2 3.47 3.34 3.47 3.34s1.84-.53 1.78-2.59"/></svg>��������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dice-d8-outline.svg������������������������0000664�0000000�0000000�00000001050�14753064456�0027016�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c-.5 0-1 .19-1.41.59l-8 8c-.79.78-.79 2.04 0 2.82l8 8c.78.79 2.04.79 2.82 0l8-8c.79-.78.79-2.04 0-2.82l-8-8C13 2.19 12.5 2 12 2m0 2 8 8-8 8-8-8m8-3.75c1.31 0 2.38.95 2.38 2.13 0 .69-.38 1.3-.94 1.69.7.39 1.16 1.06 1.16 1.83 0 1.22-1.16 2.2-2.6 2.2s-2.6-.98-2.6-2.2c0-.77.46-1.44 1.16-1.83-.56-.39-.93-1-.93-1.69 0-1.18 1.06-2.13 2.37-2.13m0 4.4c-.61 0-1.1.49-1.1 1.1s.49 1.1 1.1 1.1 1.1-.49 1.1-1.1-.49-1.1-1.1-1.1m0-3.15c-.5 0-.9.45-.9 1s.4 1 .9 1 .9-.45.9-1-.4-1-.9-1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dice-d8.svg��������������������������������0000664�0000000�0000000�00000001031�14753064456�0025340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c-.5 0-1 .19-1.41.59l-8 8c-.79.78-.79 2.04 0 2.82l8 8c.78.79 2.04.79 2.82 0l8-8c.79-.78.79-2.04 0-2.82l-8-8C13 2.19 12.5 2 12 2m0 6.25c1.31 0 2.38.95 2.38 2.13 0 .69-.38 1.3-.94 1.69.7.39 1.16 1.06 1.16 1.83 0 1.22-1.16 2.2-2.6 2.2s-2.6-.98-2.6-2.2c0-.77.46-1.44 1.16-1.83-.56-.39-.93-1-.93-1.69 0-1.18 1.06-2.13 2.37-2.13m0 1.25c-.5 0-.9.45-.9 1s.4 1 .9 1 .9-.45.9-1-.4-1-.9-1m0 3.15c-.61 0-1.1.49-1.1 1.1s.49 1.1 1.1 1.1 1.1-.49 1.1-1.1-.49-1.1-1.1-1.1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dice-multiple-outline.svg������������������0000664�0000000�0000000�00000001106�14753064456�0030340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 8c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m-2 4v7H5v-7zm.78-2H4.22C3.55 10 3 10.55 3 11.22v8.56c0 .67.55 1.22 1.22 1.22h8.56c.67 0 1.22-.55 1.22-1.22v-8.56c0-.67-.55-1.22-1.22-1.22m7-7h-8.56C10.55 3 10 3.55 10 4.22V8h2V5h7v7h-3v2h3.78c.67 0 1.22-.55 1.22-1.22V4.22C21 3.55 20.45 3 19.78 3M17 8c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m0 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1M7 15c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dice-multiple.svg��������������������������0000664�0000000�0000000�00000001523�14753064456�0026666�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.78 3h-8.56C10.55 3 10 3.55 10 4.22V8h6v6h3.78c.67 0 1.22-.55 1.22-1.22V4.22C21 3.55 20.45 3 19.78 3m-7.34 3.67a1.23 1.23 0 1 1 0-2.46 1.23 1.23 0 0 1 1.23 1.23c0 .68-.55 1.23-1.23 1.23m6.12 6.11a1.23 1.23 0 1 1-.02-2.46c.68-.01 1.23.54 1.24 1.24-.01.67-.55 1.21-1.22 1.22m0-6.11a1.23 1.23 0 1 1-.02-2.46 1.231 1.231 0 0 1 .02 2.46M4.22 10h8.56A1.22 1.22 0 0 1 14 11.22v8.56c0 .67-.55 1.22-1.22 1.22H4.22C3.55 21 3 20.45 3 19.78v-8.56c0-.67.55-1.22 1.22-1.22m4.28 4.28c-.67 0-1.22.55-1.22 1.22s.55 1.22 1.22 1.22 1.22-.55 1.22-1.22a1.22 1.22 0 0 0-1.22-1.22m-3.06-3.06c-.67 0-1.22.55-1.22 1.22a1.22 1.22 0 0 0 1.22 1.22c.67 0 1.22-.55 1.22-1.22s-.55-1.22-1.22-1.22m6.11 6.11c-.67 0-1.22.55-1.22 1.22s.55 1.22 1.22 1.22a1.22 1.22 0 0 0 1.22-1.22c0-.67-.54-1.21-1.21-1.22z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/digital-ocean.svg��������������������������0000664�0000000�0000000�00000000315�14753064456�0026627�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 12H2C2 6.5 6.5 2 12 2s10 4.5 10 10-4.5 10-10 10v-4H8v-4h4v4c3.32 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6m2 6v3H5v-3zm-5-2h2v2H3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dip-switch.svg�����������������������������0000664�0000000�0000000�00000000505�14753064456�0026203�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4h4a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1m7 0h4a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1m7 0h4a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1M4 18h2v-5H4zm7-7h2V6h-2zm7 7h2v-5h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/directions-fork.svg������������������������0000664�0000000�0000000�00000000320�14753064456�0027225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4v8.5l3-3L9 13c1 1 1 2 1 2v6h4v-7s0-1-.53-2S12 10 12 10L9 6.58 11.5 4M18 4l-4.46 4.47L14 9s.93 1 1.47 2c.21.4.33.79.4 1.13L21 7"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/directions.svg�����������������������������0000664�0000000�0000000�00000000370�14753064456�0026273�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 14.5V12h-4v3H8v-4a1 1 0 0 1 1-1h5V7.5l3.5 3.5m4.21.29-9-9h-.01a.996.996 0 0 0-1.41 0l-9 9c-.39.39-.39 1.03 0 1.42l9 9c.39.38 1.02.39 1.42 0l9-9c.39-.39.39-1.03 0-1.42"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/disc-alert.svg�����������������������������0000664�0000000�0000000�00000000315�14753064456�0026156�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m0-10c-4.4 0-8 3.6-8 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8m10 9h2V7h-2m0 10h2v-2h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/disc-player.svg����������������������������0000664�0000000�0000000�00000000576�14753064456�0026354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.5 10.37a1.87 1.87 0 1 0 0-3.74c-1.04 0-1.87.83-1.87 1.87a1.87 1.87 0 0 0 1.87 1.87m0-9.37A7.5 7.5 0 0 1 22 8.5c0 2.17-.92 4.13-2.4 5.5H9.4A7.5 7.5 0 0 1 7 8.5C7 4.35 10.36 1 14.5 1M6 21v1H4v-1H2v-6h20v6h-2v1h-2v-1zm-2-3v1h9v-1zm11-1v2h2v-2zm4 0a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/disc.svg�����������������������������������0000664�0000000�0000000�00000000307�14753064456�0025052�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 14a2 2 0 0 1-2-2c0-1.11.89-2 2-2s2 .89 2 2a2 2 0 0 1-2 2m0-10a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dishwasher-alert.svg�����������������������0000664�0000000�0000000�00000000711�14753064456�0027375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 2H4c-1.1 0-2 .9-2 2v16a2 2 0 0 0 2 2h12c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2M8 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1M5 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m11 16H4V8h12zm-3.33-4.67c.02.7-.26 1.38-.76 1.88a2.7 2.7 0 0 1-3.82 0c-.5-.5-.78-1.18-.76-1.88.07-.71.3-1.39.67-2 .37-.83.81-1.6 1.33-2.33l.67-1c1.79 2.59 2.67 4.36 2.67 5.33M20 15h2v2h-2zm0-8h2v6h-2z"/></svg>�������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dishwasher-off.svg�������������������������0000664�0000000�0000000�00000000645�14753064456�0027046�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3 4 5.89V20c0 1.11.89 2 2 2h12c.58 0 1.1-.25 1.46-.65l1.38 1.38zM18 20H6V8h.11l4.39 4.37c-.19.32-.35.63-.5.96-.37.61-.6 1.29-.67 2-.02.7.26 1.38.76 1.88a2.7 2.7 0 0 0 3.82 0c.25-.24.44-.53.59-.85l3.5 3.53zM11.2 8H18v6.8l2 2V4a2 2 0 0 0-2-2H6c-.24 0-.46.05-.67.13zM10 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1"/></svg>�������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dishwasher.svg�����������������������������0000664�0000000�0000000�00000000675�14753064456�0026301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2m-8 2a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1M7 4a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m11 16H6V8h12zm-3.33-4.67c.02.7-.26 1.38-.76 1.88a2.7 2.7 0 0 1-3.82 0c-.5-.5-.78-1.18-.76-1.88.07-.71.3-1.39.67-2 .37-.83.81-1.6 1.33-2.33l.67-1c1.79 2.59 2.67 4.36 2.67 5.33"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/disqus.svg���������������������������������0000664�0000000�0000000�00000000555�14753064456�0025445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.08 22c-2.45 0-4.69-.89-6.42-2.37l-4.25.58 1.64-4.06c-.55-1.27-.89-2.65-.89-4.15 0-5.5 4.44-10 9.92-10S22 6.5 22 12s-4.44 10-9.92 10m5.42-10.03v-.03C17.5 9.06 15.46 7 11.95 7H8.16v10h3.74c3.53 0 5.6-2.14 5.6-5.03M12 14.54h-1.11V9.46H12c1.62 0 2.7.93 2.7 2.54 0 1.63-1.08 2.54-2.7 2.54"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/distribute-horizontal-center.svg�����������0000664�0000000�0000000�00000000212�14753064456�0031746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 2v3h2v14H8v3H6v-3H4V5h2V2zm8 0v5h-2v10h2v5h2v-5h2V7h-2V2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/distribute-horizontal-left.svg�������������0000664�0000000�0000000�00000000172�14753064456�0031425�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 7v10h-5v5h-2V2h2v5zM5 2H3v20h2v-3h5V5H5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/distribute-horizontal-right.svg������������0000664�0000000�0000000�00000000173�14753064456�0031611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 17V7h5V2h2v20H8v-5zm16 5h2V2h-2v3h-5v14h5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/distribute-vertical-bottom.svg�������������0000664�0000000�0000000�00000000172�14753064456�0031417�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 3h10v5h5v2H2V8h5zM2 19v2h20v-2h-3v-5H5v5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/distribute-vertical-center.svg�������������0000664�0000000�0000000�00000000213�14753064456�0031367�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 16h3v-2h14v2h3v2h-3v2H5v-2H2zm0-8h5v2h10V8h5V6h-5V4H7v2H2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/distribute-vertical-top.svg����������������0000664�0000000�0000000�00000000174�14753064456�0030717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 21H7v-5H2v-2h20v2h-5zm5-16V3H2v2h3v5h14V5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/diversify.svg������������������������������0000664�0000000�0000000�00000000423�14753064456�0026133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 2v2h-7a2 2 0 0 0-2 2v3h2V6h7v2l3-3zm0 7v2h-5v2h5v2l3-3zm-7.95 1c-1.11 0-2.01.87-2.02 2s.87 2 1.97 2c1.11 0 2-.89 2-2 0-1.09-.87-1.97-1.95-2M2 11v2h6v-2zm8 4v3a2 2 0 0 0 2 2h7v2l3-3-3-3v2h-7v-3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/diving-flippers.svg������������������������0000664�0000000�0000000�00000001133�14753064456�0027230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.28 3.66c-1-.22-1.74-1.41-2.71-1.62s-2.17.55-3.15.33a3.66 3.66 0 0 0-3.14.34L11.21 17 11 18c-.36 1.62.67 3.22 2.29 3.58 1.61.35 3.21-.67 3.57-2.29l.21-1L23 5.28a3.63 3.63 0 0 0-2.72-1.62m-5.37 15.2c-.12.55-.66.9-1.21.79-.56-.12-.91-.65-.79-1.22l.86-3.93a1 1 0 0 1 1.97.34c0 .04-.01.07-.02.11zm-5.19 2.48c-.39-.61-.64-1.29-.72-2L8.24 16c-.14-.53.17-1.08.76-1.24a.8.8 0 0 1 .22 0V3.43c-.91 0-2-.57-2.84-.37s-1.69 1.38-2.66 1.6c-1.11.1-2.11.69-2.72 1.62l5.93 13 .21 1a3.003 3.003 0 0 0 3.57 2.29h.1c-.43-.35-.81-.76-1.09-1.23"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/diving-helmet.svg��������������������������0000664�0000000�0000000�00000001001�14753064456�0026654�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 12a4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4 4 4 0 0 1 4 4m3.45-4.11-1.38.69.25.42H20v6h-1.67a7.06 7.06 0 0 1-2.12 2.6c1.64.51 2.89 1.31 3.46 2.26C18.69 21.1 15.62 22 12 22s-6.69-.9-7.67-2.14c.57-.95 1.82-1.75 3.46-2.26-.9-.68-1.63-1.57-2.12-2.6H4V9h1.68A6.95 6.95 0 0 1 9 5.68V4h6v1.68c.68.32 1.29.78 1.82 1.32l1.73-.86C19.93 5.42 20 4.1 20 2h2c0 2.06 0 4.62-2.55 5.89M17 12a5 5 0 0 0-5-5 5 5 0 0 0-5 5 5 5 0 0 0 5 5 5 5 0 0 0 5-5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/diving-scuba-flag.svg����������������������0000664�0000000�0000000�00000000150�14753064456�0027406�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2 6 17 14H2zm3-2 17 14V4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/diving-scuba-mask.svg����������������������0000664�0000000�0000000�00000000751�14753064456�0027437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 15c1.31 0 2.42.83 2.83 2H18a4 4 0 0 1 4 4v1h-2v-1a2 2 0 0 0-2-2h-3.17A2.99 2.99 0 0 1 12 21a3 3 0 0 1-3-3 3 3 0 0 1 3-3m0 2a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m6-14a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-3.15c-.42 0-.8.24-.95.63-.2.6-.67 1.08-1.28 1.28-1.04.34-2.18-.23-2.52-1.28-.15-.39-.53-.63-.95-.63H6a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm0 7V5H6v5h4.65c.25-.54.76-.91 1.35-1 .59.09 1.1.46 1.35 1z"/></svg>�����������������������mkdocs-material-9.6.4/material/templates/.icons/material/diving-scuba-tank-multiple.svg�������������0000664�0000000�0000000�00000000656�14753064456�0031276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 18.5a2.5 2.5 0 0 1-2.5 2.5 2.5 2.5 0 0 1-2.5-2.5c0-1.03.62-1.91 1.5-2.29V6H14v1.35c1.22.58 2 1.8 2 3.15V22H2V10.5c0-1.35.78-2.57 2-3.15V6H2V4h2v-.5A1.5 1.5 0 0 1 5.5 2 1.5 1.5 0 0 1 7 3.5V4h4v-.5A1.5 1.5 0 0 1 12.5 2 1.5 1.5 0 0 1 14 3.5V4h4.5a2 2 0 0 1 2 2v10.21c.88.38 1.5 1.26 1.5 2.29M11 7.35V6H7v1.35c1.22.58 2 1.8 2 3.15 0-1.35.78-2.57 2-3.15"/></svg>����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/diving-scuba-tank.svg����������������������0000664�0000000�0000000�00000000501�14753064456�0027432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 18.5a2.5 2.5 0 0 1-2.5 2.5 2.5 2.5 0 0 1-2.5-2.5c0-1.03.62-1.91 1.5-2.29V6H11v1.35c1.22.58 2 1.8 2 3.15V22H6V10.5c0-1.35.78-2.57 2-3.15V6H6V4h2v-.5A1.5 1.5 0 0 1 9.5 2 1.5 1.5 0 0 1 11 3.5V4h4.5a2 2 0 0 1 2 2v10.21c.88.38 1.5 1.26 1.5 2.29"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/diving-scuba.svg���������������������������0000664�0000000�0000000�00000000475�14753064456�0026511�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 13c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2m7.89-2.89 4.53-1.21-.78-2.9-4.53 1.21c-.8.21-1.28 1.04-1.06 1.84s1.04 1.28 1.84 1.06M20.5 5.9 23 3l-1-1-3 3-2 4-9.5 2.87c-.8.2-1.37.89-1.5 1.68L5.24 18 2.4 21.8 4 23l3-4 1.14-3.14L14 14l5-3.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/diving-snorkel.svg�������������������������0000664�0000000�0000000�00000001046�14753064456�0027064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 3H4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h3.15c.42 0 .8.24.95.63a2.003 2.003 0 0 0 2.52 1.28c.61-.2 1.08-.68 1.28-1.28.15-.39.53-.63.95-.63H16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m0 7h-4.65c-.25-.54-.76-.91-1.35-1-.59.09-1.1.46-1.35 1H4V5h12zm6-8v13.5a6.5 6.5 0 0 1-6.5 6.5c-1.71 0-3.35-.68-4.57-1.88-1.98.46-4.05-.33-5.22-2l1.91-.83c.88.93 2.22 1.21 3.38.71.2-.09.39-.2.56-.33.84-.62 1.31-1.63 1.22-2.67l1.91-.83c.41 1.87-.28 3.83-1.79 5 .76.54 1.67.83 2.6.83 2.5 0 4.5-2 4.5-4.5V2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/diving.svg���������������������������������0000664�0000000�0000000�00000000635�14753064456�0025414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.26 5.2.04-.02a1 1 0 0 1 1.41.12L16.97 8H20c.55 0 1 .45 1 1s-.45 1-1 1h-3.5c-.35 0-.65-.18-.83-.44l-1.5-1.79-2.53 2.36 2.93 2.05c.26.18.43.48.43.82v4c0 .55-.45 1-1 1s-1-.45-1-1v-3.5l-3.23-2.24a1.786 1.786 0 0 1-.17-2.8zM16.5 5c.84 0 1.5-.67 1.5-1.5S17.34 2 16.5 2 15 2.67 15 3.5 15.68 5 16.5 5M6 19H5c-1.66 0-3 1.34-3 3h4v-1.5h9V19z"/></svg>���������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/division-box.svg���������������������������0000664�0000000�0000000�00000000434�14753064456�0026543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 13v-2H7v2zm2-10a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2zm-7 4a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m0 8a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/division.svg�������������������������������0000664�0000000�0000000�00000000327�14753064456�0025756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13H5v-2h14zm-7-8a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m0 10a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dlna.svg�����������������������������������0000664�0000000�0000000�00000001557�14753064456�0025056�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.38 12.56h-8.53c-.88 0-1.75.4-2.24 1.05v-.01c-.49.68-1.29 1.12-2.2 1.12-1.49 0-2.7-1.22-2.7-2.72s1.21-2.69 2.7-2.69c.91 0 1.71.44 2.2 1.12v-.01c.49.65 1.36 1.08 2.24 1.08h8.44c.16 0 .71-.1.71-.83-.74-4.24-4.9-7.49-9.94-7.49-3.1 0-5.87 1.23-7.72 3.17-.29.44.01.57.29.61h5.51c.86 0 1.75-.42 2.24-1.07v.02c.5-.68 1.29-1.13 2.2-1.13 1.49 0 2.7 1.22 2.7 2.72s-1.21 2.7-2.7 2.7c-.91 0-1.7-.45-2.2-1.13v.01c-.49-.64-1.38-1.05-2.24-1.05H4.13h.02s-.89-.03-1.43.72C2.3 9.42 2 10.85 2 12c0 1.16.17 2.21.72 3.27.47.76 1.43.73 1.43.73h-.04 6.03c.86 0 1.75-.42 2.24-1.07v.01c.5-.68 1.29-1.13 2.2-1.13 1.49 0 2.7 1.22 2.7 2.69 0 1.5-1.21 2.73-2.7 2.73-.91 0-1.7-.45-2.2-1.13v.02c-.49-.65-1.38-1.07-2.24-1.07h-5.5c-.28.04-.58.17-.32.59 1.85 1.94 4.63 3.18 7.74 3.18 5.05 0 9.22-3.25 9.94-7.51 0-.59-.41-.73-.62-.75"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dna.svg������������������������������������0000664�0000000�0000000�00000001374�14753064456�0024677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2h2v2c0 1.44.68 2.61 1.88 3.78.86.83 2.01 1.63 3.21 2.42l-1.83 1.19C8.27 10.72 7.31 10 6.5 9.21 5.07 7.82 4 6.1 4 4zm14 0h2v2c0 2.1-1.07 3.82-2.5 5.21-1.41 1.38-3.21 2.52-4.96 3.63-1.75 1.12-3.45 2.21-4.66 3.38C6.68 17.39 6 18.56 6 20v2H4v-2c0-2.1 1.07-3.82 2.5-5.21 1.41-1.38 3.21-2.52 4.96-3.63 1.75-1.12 3.45-2.21 4.66-3.38C17.32 6.61 18 5.44 18 4zm-3.26 10.61c.99.67 1.95 1.39 2.76 2.18C18.93 16.18 20 17.9 20 20v2h-2v-2c0-1.44-.68-2.61-1.88-3.78-.86-.83-2.01-1.63-3.21-2.42zM7 3h10v1l-.06.5H7.06L7 4zm.68 3h8.64c-.24.34-.52.69-.9 1.06l-.51.44H9.07l-.49-.44c-.38-.37-.66-.72-.9-1.06m1.41 10.5h5.84l.49.44c.38.37.66.72.9 1.06H7.68c.24-.34.52-.69.9-1.06zm-2.03 3h9.88l.06.5v1H7v-1z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dns-outline.svg����������������������������0000664�0000000�0000000�00000000644�14753064456�0026375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 15v4H5v-4zm1-2H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1M7 18.5A1.5 1.5 0 0 1 5.5 17 1.5 1.5 0 0 1 7 15.5 1.5 1.5 0 0 1 8.5 17 1.5 1.5 0 0 1 7 18.5M19 5v4H5V5zm1-2H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1M7 8.5A1.5 1.5 0 0 1 5.5 7 1.5 1.5 0 0 1 7 5.5 1.5 1.5 0 0 1 8.5 7 1.5 1.5 0 0 1 7 8.5"/></svg>��������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dns.svg������������������������������������0000664�0000000�0000000�00000000524�14753064456�0024715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 9a2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2m13-6H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1M7 19a2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2m13-6H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dock-bottom.svg����������������������������0000664�0000000�0000000�00000000241�14753064456�0026347�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m0 9H4V6h16Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dock-left.svg������������������������������0000664�0000000�0000000�00000000242�14753064456�0025776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m0 14H9V6h11Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dock-right.svg�����������������������������0000664�0000000�0000000�00000000243�14753064456�0026162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m-5 14H4V6h11Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dock-top.svg�������������������������������0000664�0000000�0000000�00000000247�14753064456�0025653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 20h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2m0-9h16v7H4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dock-window.svg����������������������������0000664�0000000�0000000�00000000300�14753064456�0026346�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 18v2H4a2 2 0 0 1-2-2V8h2v10M22 6v8a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2m-2 0H8v8h12Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/docker.svg���������������������������������0000664�0000000�0000000�00000002716�14753064456�0025405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.81 10.25c-.06-.04-.56-.43-1.64-.43-.28 0-.56.03-.84.08-.21-1.4-1.38-2.11-1.43-2.14l-.29-.17-.18.27c-.24.36-.43.77-.51 1.19-.2.8-.08 1.56.33 2.21-.49.28-1.29.35-1.46.35H2.62c-.34 0-.62.28-.62.63 0 1.15.18 2.3.58 3.38.45 1.19 1.13 2.07 2 2.61.98.6 2.59.94 4.42.94.79 0 1.61-.07 2.42-.22 1.12-.2 2.2-.59 3.19-1.16A8.3 8.3 0 0 0 16.78 16c1.05-1.17 1.67-2.5 2.12-3.65h.19c1.14 0 1.85-.46 2.24-.85.26-.24.45-.53.59-.87l.08-.24zm-17.96.99h1.76c.08 0 .16-.07.16-.16V9.5c0-.08-.07-.16-.16-.16H3.85c-.09 0-.16.07-.16.16v1.58c.01.09.07.16.16.16m2.43 0h1.76c.08 0 .16-.07.16-.16V9.5c0-.08-.07-.16-.16-.16H6.28c-.09 0-.16.07-.16.16v1.58c.01.09.07.16.16.16m2.47 0h1.75c.1 0 .17-.07.17-.16V9.5c0-.08-.06-.16-.17-.16H8.75c-.08 0-.15.07-.15.16v1.58c0 .09.06.16.15.16m2.44 0h1.77c.08 0 .15-.07.15-.16V9.5c0-.08-.06-.16-.15-.16h-1.77c-.08 0-.15.07-.15.16v1.58c0 .09.07.16.15.16M6.28 9h1.76c.08 0 .16-.09.16-.18V7.25c0-.09-.07-.16-.16-.16H6.28c-.09 0-.16.06-.16.16v1.57c.01.09.07.18.16.18m2.47 0h1.75c.1 0 .17-.09.17-.18V7.25c0-.09-.06-.16-.17-.16H8.75c-.08 0-.15.06-.15.16v1.57c0 .09.06.18.15.18m2.44 0h1.77c.08 0 .15-.09.15-.18V7.25c0-.09-.07-.16-.15-.16h-1.77c-.08 0-.15.06-.15.16v1.57c0 .09.07.18.15.18m0-2.28h1.77c.08 0 .15-.07.15-.16V5c0-.1-.07-.17-.15-.17h-1.77c-.08 0-.15.06-.15.17v1.56c0 .08.07.16.15.16m2.46 4.52h1.76c.09 0 .16-.07.16-.16V9.5c0-.08-.07-.16-.16-.16h-1.76c-.08 0-.15.07-.15.16v1.58c0 .09.07.16.15.16"/></svg>��������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/doctor.svg���������������������������������0000664�0000000�0000000�00000000431�14753064456�0025420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.84 16.26C17.86 16.83 20 18.29 20 20v2H4v-2c0-1.71 2.14-3.17 5.16-3.74L12 21zM8 8h8v2a4 4 0 0 1-4 4 4 4 0 0 1-4-4zm0-1 .41-4.1a1 1 0 0 1 1-.9h5.19c.51 0 .94.39.99.9L16 7zm4-4h-1v1h-1v1h1v1h1V5h1V4h-1z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dog-service.svg����������������������������0000664�0000000�0000000�00000000436�14753064456�0026342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14 8 3 3v10h-2v-6H8l-2 3v3H4v-6l1-1v-3L2 8l1-1 2 2h2v3a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1V9zm5-3V3l-4 4 3 3 1-1 1 1 2-2zm-7.5 4.5-7-7c-.27-.28-.71-.28-1 0-.28.27-.28.71 0 1l7 7c.27.28.71.28 1 0 .28-.27.28-.71 0-1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dog-side-off.svg���������������������������0000664�0000000�0000000�00000000350�14753064456�0026371�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18 10-3-3 4-4v2l3 3-2 2-1-1zm-1 1-3-3-1 1h-.8l4.8 4.8zM2.39 1.73 1.11 3l6 6H5L3 7 2 8l3 3v3l-1 1v6h2v-3l2-3h5.11L15 16.89V21h2v-2.11l3.84 3.84 1.27-1.27z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dog-side.svg�������������������������������0000664�0000000�0000000�00000000237�14753064456�0025625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19 3-4 4 3 3 1-1 1 1 2-2-3-3zM3 7 2 8l3 3v3l-1 1v6h2v-3l2-3h7v6h2V11l-3-3-1 1H5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dog.svg������������������������������������0000664�0000000�0000000�00000001325�14753064456�0024702�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 4c-1.71 0-2.75.33-3.35.61C13.88 4.23 13 4 12 4s-1.88.23-2.65.61C8.75 4.33 7.71 4 6 4c-3 0-5 8-5 10 0 .83 1.32 1.59 3.14 1.9.64 2.24 3.66 3.95 7.36 4.1v-4.28c-.59-.37-1.5-1.04-1.5-1.72 0-1 2-1 2-1s2 0 2 1c0 .68-.91 1.35-1.5 1.72V20c3.7-.15 6.72-1.86 7.36-4.1C21.68 15.59 23 14.83 23 14c0-2-2-10-5-10M4.15 13.87c-.5-.12-.89-.26-1.15-.37.25-2.77 2.2-7.1 3.05-7.5.54 0 .95.06 1.32.11-2.1 2.31-2.93 5.93-3.22 7.76M9 12a1 1 0 0 1-1-1c0-.54.45-1 1-1a1 1 0 0 1 1 1c0 .56-.45 1-1 1m6 0a1 1 0 0 1-1-1c0-.54.45-1 1-1a1 1 0 0 1 1 1c0 .56-.45 1-1 1m4.85 1.87c-.29-1.83-1.12-5.45-3.22-7.76.37-.05.78-.11 1.32-.11.85.4 2.8 4.73 3.05 7.5-.25.11-.64.25-1.15.37"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dolby.svg����������������������������������0000664�0000000�0000000�00000000311�14753064456�0025234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5v14h20V5zm4 12H4V7h2c2.86.09 5.1 2.33 5 5 .1 2.67-2.14 4.91-5 5m14 0h-2c-2.86-.09-5.1-2.33-5-5-.1-2.67 2.14-4.91 5-5h2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dolly.svg����������������������������������0000664�0000000�0000000�00000001022�14753064456�0025246�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.97 19.88a2.01 2.01 0 0 1-2.57-1.19 1.97 1.97 0 0 1 1.19-2.56c1.04-.38 2.19.15 2.57 1.18a2.01 2.01 0 0 1-1.19 2.57M9.9 14.25c-2.07.75-3.14 3.05-2.4 5.13a4.043 4.043 0 0 0 5.16 2.37c2.07-.75 3.13-3.05 2.38-5.12-.76-2.08-3.07-3.13-5.14-2.38m6.04-9.67L9.37 7l1.38 3.74 6.57-2.41m3 5.29-4.78 1.75c.17.29.31.59.43.91s.2.65.25.97L21 15.5m-1.46-6.92-8.45 3.1.49 1.32c1.25.09 2.42.64 3.31 1.55l6.03-2.21M2 2v2h3.09l3.57 9.75a4.946 4.946 0 0 1 1.87-.69L6.5 2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dolphin.svg��������������������������������0000664�0000000�0000000�00000000467�14753064456�0025574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 7s0-4-5-4c-1.53 0-2.85.19-4 .5-.5-.44-3.74-3.191-7 .07l2.56 2.56C2.5 10.53 4 18 4 18s-3 0-3 4l4-1 4 1c0-4-3-4-3-4s.85-5.76 7-6.82V14c2 0 2.68-1.81 2.89-3H18c4 0 5-1 5-2s-2-2-3-2m-2 1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/domain-off.svg�����������������������������0000664�0000000�0000000�00000000421�14753064456�0026144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 19h4l-2-2h-2zm-2-4v-2H8v2zm0 4v-2H8v2zm-4-8V9H4v2zm0 4v-2H4v2zm0 4v-2H4v2zM1.31 1.78l21 20.91L21 24l-3-3H2V5L.09 3.09zM16 11h2v2h-2zM8 5v.91L5.11 3H12v4h10v12.92l-2-2.01V9h-8v.89L9.09 7H10V5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/domain-plus.svg����������������������������0000664�0000000�0000000�00000000534�14753064456�0026362�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 7V3H2v18h11.35a5.8 5.8 0 0 1-.35-2h-1v-2h1.35a5 5 0 0 1 .65-1.31V15h-2v-2h2v-2h-2V9h8v4.09a5.6 5.6 0 0 1 2 .72V7M6 19H4v-2h2m0-2H4v-2h2m0-2H4V9h2m0-2H4V5h2m4 14H8v-2h2m0-2H8v-2h2m0-2H8V9h2m0-2H8V5h2m6 8h2v-2h-2m0 0v2h2v-2m-2 0v2h2v-2m2 4v3h3v2h-3v3h-2v-3h-3v-2h3v-3Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/domain-remove.svg��������������������������0000664�0000000�0000000�00000000662�14753064456�0026676�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 7V3H2v18h11.35a5.8 5.8 0 0 1-.35-2h-1v-2h1.35a5 5 0 0 1 .65-1.31V15h-2v-2h2v-2h-2V9h8v4.09a5.6 5.6 0 0 1 2 .72V7M6 19H4v-2h2m0-2H4v-2h2m0-2H4V9h2m0-2H4V5h2m4 14H8v-2h2m0-2H8v-2h2m0-2H8V9h2m0-2H8V5h2m6 8h2v-2h-2m0 0v2h2v-2m-2 0v2h2v-2m4.54 5.88L20.41 19l2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.42-1.42L17.59 19l-2.13-2.12 1.42-1.42L19 17.59l2.12-2.13Z"/></svg>������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/domain-switch.svg��������������������������0000664�0000000�0000000�00000000347�14753064456�0026702�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 9h2v2h-2zm6 6V5H12V1H2v14zm-2-2h-8v-2h2V9h-2V7h8zM8 5V3h2v2zm0 4V7h2v2zm0 4v-2h2v2zM4 5V3h2v2zm0 4V7h2v2zm0 4v-2h2v2zm5 4v2h6v-2l3 3-3 3v-2H9v2l-3-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/domain.svg���������������������������������0000664�0000000�0000000�00000000356�14753064456�0025403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 15h-2v2h2m0-6h-2v2h2m2 6h-8v-2h2v-2h-2v-2h2v-2h-2V9h8M10 7H8V5h2m0 6H8V9h2m0 6H8v-2h2m0 6H8v-2h2M6 7H4V5h2m0 6H4V9h2m0 6H4v-2h2m0 6H4v-2h2m6-10V3H2v18h20V7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dome-light.svg�����������������������������0000664�0000000�0000000�00000000452�14753064456�0026162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 10a9 9 0 0 1-18 0v-.97c0-.27.11-.53.3-.73.2-.19.46-.3.73-.3H20c.25 0 .5.11.7.3.19.2.3.45.3.7zM5 10c0 3.86 3.14 7 7 7s7-3.14 7-7zm15-4v1H4V6c0-.27.1-.5.29-.71C4.5 5.1 4.73 5 5 5h5V3h4v2h5c.25 0 .5.11.7.3.19.2.3.45.3.7"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/domino-mask.svg����������������������������0000664�0000000�0000000�00000000725�14753064456�0026352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.83 9.81c-1.13-.11-2.14.57-2.37 1.69 0 .34 1.35.79 2.59.79s2.36-.79 2.36-1.01c0-.23-.78-1.35-2.58-1.47m-7.65 0c-1.8.12-2.59 1.13-2.59 1.46 0 .23 1.23 1.02 2.36 1.02s2.59-.45 2.59-.79c-.23-1.12-1.35-1.8-2.36-1.69M16.95 16c-1.91 0-3.15-2.25-4.95-2.25S8.85 16 7.05 16C4.69 16 3 13.86 3 10.04 3 7.68 3.68 7 6.71 7S10.54 8.24 12 8.24 14.36 7 17.29 7 21 7.79 21 10.04c0 3.82-1.69 5.96-4.05 5.96"/></svg>�������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/donkey.svg���������������������������������0000664�0000000�0000000�00000000553�14753064456�0025424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.34 10.35-.07-.07-.09-.09L18 7V6a.5.5 0 0 0-.5-.5c-.14 0-.28.06-.37.16L13.46 9H7c-.68 0-1.31.35-1.68.92l-2.7 2.67c-.33.45-.23 1.07.22 1.41.34.24.81.25 1.16 0l1-.93V19h3v-4h5v4h3v-5.17c0-.53.21-1.04.59-1.41L18 11l2 1c.15.08.32.13.5.13.6-.02 1.09-.52 1.08-1.13-.01-.24-.08-.47-.24-.65"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/door-closed-cancel.svg���������������������0000664�0000000�0000000�00000000610�14753064456�0027562�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 11C9 11 11 9 11 6.5S9 2 6.5 2 2 4 2 6.5 4 11 6.5 11M3.92 5 8 9.09c-.42.26-.94.41-1.5.41-1.66 0-3-1.34-3-3 0-.56.15-1.08.42-1.5M9.5 6.5c0 .56-.15 1.08-.41 1.5L5 3.92c.42-.27.94-.42 1.5-.42 1.66 0 3 1.34 3 3M10 12c.81-.54 1.5-1.23 2-2.03V19h7V5h-6.17A7 7 0 0 0 12 3h7c1.11 0 2 .89 2 2v14h1v2H2v-2h8zm6-1h2v2h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/door-closed-lock.svg�����������������������0000664�0000000�0000000�00000000426�14753064456�0027272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 11h2v2h-2zm-4-8h7a2 2 0 0 1 2 2v14h1v2H2v-2h8V5a2 2 0 0 1 2-2m0 2v14h7V5M6.2 5H2.8v-.5a1.7 1.7 0 0 1 3.4 0M7 5v-.5a2.5 2.5 0 0 0-5 0V5a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/door-closed.svg����������������������������0000664�0000000�0000000�00000000240�14753064456�0026336�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 11h2v2h-2zm-4-8h7c1.11 0 2 .89 2 2v14h1v2H2v-2h8V5c0-1.11.89-2 2-2m0 2v14h7V5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/door-open.svg������������������������������0000664�0000000�0000000�00000000244�14753064456�0026032�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3c-1.11 0-2 .89-2 2H3v14H2v2h20v-2h-1V5c0-1.11-.89-2-2-2zm0 2h7v14h-7zm-7 6h2v2H5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/door-sliding-lock.svg����������������������0000664�0000000�0000000�00000000616�14753064456�0027453�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.8 17v-1.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V17c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3m-1.3 0h-3v-1.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3zM13 11h2v2h-2zm-4 2H7v-2h2zm4 6h-1V5h5v6.44c.61-.27 1.29-.44 2-.44V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14H2v2h11zm-3 0H5V5h5z"/></svg>������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/door-sliding-open.svg����������������������0000664�0000000�0000000�00000000272�14753064456�0027462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 11v2H4v-2zm16-6h-5v14h5zM7 5H2v14h5zm15-2c1.11 0 2 .89 2 2v16H0V5c0-1.11.894-2 2-2h7v16h6V3zm-2 8h-2v2h2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/door-sliding.svg���������������������������0000664�0000000�0000000�00000000265�14753064456�0026525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 13H8v-2h2zm6-2h-2v2h2zm5 8v2H3v-2h1V5c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2v14zM11 5H6v14h5zm7 0h-5v14h5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/door.svg�����������������������������������0000664�0000000�0000000�00000000226�14753064456�0025073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 3c-1.11 0-2 .89-2 2v16h12V5c0-1.11-.89-2-2-2zm0 2h8v14H8zm5 6v2h2v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/doorbell-video.svg�������������������������0000664�0000000�0000000�00000000441�14753064456�0027035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 15c0 1.11-.89 2-2 2s-2-.89-2-2 .9-2 2-2 2 .9 2 2m4-11v16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2m-7.5 3c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5-.67-1.5-1.5-1.5-1.5.67-1.5 1.5m5.5 3H8v10h8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/doorbell.svg�������������������������������0000664�0000000�0000000�00000000324�14753064456�0025731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m4-8H8c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 18H8V4h8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dot-net.svg��������������������������������0000664�0000000�0000000�00000000337�14753064456�0025505�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 15a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m19 2h-2V9h-2V7h6v2h-2zM16 7v2h-2v2h2v2h-2v2h2v2h-4V7zm-5 0v10H9l-3-6v6H4V7h2l3 6V7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dots-circle.svg����������������������������0000664�0000000�0000000�00000000716�14753064456�0026344�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 19c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-18c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2M6 16c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-3-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m3-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m12 12c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m3-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-3-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2"/></svg>��������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dots-grid.svg������������������������������0000664�0000000�0000000�00000000772�14753064456�0026032�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 16c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2M6 16c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m12 12c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2"/></svg>������mkdocs-material-9.6.4/material/templates/.icons/material/dots-hexagon.svg���������������������������0000664�0000000�0000000�00000000617�14753064456�0026534�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 12c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2m-6 0c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2m-6 0c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2m9 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2m-6 0c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2m6-12c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2M7 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dots-horizontal-circle-outline.svg���������0000664�0000000�0000000�00000000744�14753064456�0032211�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8m0 6.5a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5m-4.5 0A1.5 1.5 0 0 1 9 12a1.5 1.5 0 0 1-1.5 1.5A1.5 1.5 0 0 1 6 12a1.5 1.5 0 0 1 1.5-1.5m9 0A1.5 1.5 0 0 1 18 12a1.5 1.5 0 0 1-1.5 1.5A1.5 1.5 0 0 1 15 12a1.5 1.5 0 0 1 1.5-1.5"/></svg>����������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dots-horizontal-circle.svg�����������������0000664�0000000�0000000�00000000651�14753064456�0030531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 8.5a1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5m-5.5 0A1.5 1.5 0 0 0 5 12a1.5 1.5 0 0 0 1.5 1.5A1.5 1.5 0 0 0 8 12a1.5 1.5 0 0 0-1.5-1.5m11 0A1.5 1.5 0 0 0 16 12a1.5 1.5 0 0 0 1.5 1.5A1.5 1.5 0 0 0 19 12a1.5 1.5 0 0 0-1.5-1.5"/></svg>���������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dots-horizontal.svg������������������������0000664�0000000�0000000�00000000406�14753064456�0027270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 12a2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2m-6 0a2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2m-6 0a2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dots-square.svg����������������������������0000664�0000000�0000000�00000000714�14753064456�0026401�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 16c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-12c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2M6 16c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m12 12c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2"/></svg>����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dots-triangle.svg��������������������������0000664�0000000�0000000�00000000554�14753064456�0026710�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 16c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m3-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-9 6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m3-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m3-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m6 12c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dots-vertical-circle-outline.svg�����������0000664�0000000�0000000�00000000745�14753064456�0031632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 12a1.5 1.5 0 0 1 1.5-1.5 1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5m0 4.5A1.5 1.5 0 0 1 12 15a1.5 1.5 0 0 1 1.5 1.5A1.5 1.5 0 0 1 12 18a1.5 1.5 0 0 1-1.5-1.5m0-9A1.5 1.5 0 0 1 12 6a1.5 1.5 0 0 1 1.5 1.5A1.5 1.5 0 0 1 12 9a1.5 1.5 0 0 1-1.5-1.5M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>���������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dots-vertical-circle.svg�������������������0000664�0000000�0000000�00000000650�14753064456�0030150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 12A10 10 0 0 1 12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12m8.5 0a1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5 1.5 1.5 0 0 0-1.5 1.5m0 5.5A1.5 1.5 0 0 0 12 19a1.5 1.5 0 0 0 1.5-1.5A1.5 1.5 0 0 0 12 16a1.5 1.5 0 0 0-1.5 1.5m0-11A1.5 1.5 0 0 0 12 8a1.5 1.5 0 0 0 1.5-1.5A1.5 1.5 0 0 0 12 5a1.5 1.5 0 0 0-1.5 1.5"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dots-vertical.svg��������������������������0000664�0000000�0000000�00000000404�14753064456�0026706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 16a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m0-6a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m0-6a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/download-box-outline.svg�������������������0000664�0000000�0000000�00000000310�14753064456�0030174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 17v-2h8v2zm8-7-4 4-4-4h2.5V7h3v3zM5 3h14a2 2 0 0 1 2 2v14c0 1.11-.89 2-2 2H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2m0 2v14h14V5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/download-box.svg���������������������������0000664�0000000�0000000�00000000273�14753064456�0026527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14a2 2 0 0 1 2 2v14c0 1.11-.89 2-2 2H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2m3 14h8v-2H8zm8-7h-2.5V7h-3v3H8l4 4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/download-circle-outline.svg����������������0000664�0000000�0000000�00000000347�14753064456�0030657�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 17v-2h8v2zm8-7-4 4-4-4h2.5V6h3v4zm-4-8c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2m0 2c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/download-circle.svg������������������������0000664�0000000�0000000�00000000257�14753064456�0027202�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2M8 17h8v-2H8zm8-7h-2.5V6h-3v4H8l4 4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/download-lock-outline.svg������������������0000664�0000000�0000000�00000000452�14753064456�0030343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 16a1.08 1.08 0 0 1 1 1v4a1.08 1.08 0 0 1-1 1h-5a1.08 1.08 0 0 1-1-1v-4a1.08 1.08 0 0 1 1-1v-1.5a2.5 2.5 0 0 1 5 0zm-1 0v-1.5a1.5 1.5 0 0 0-3 0V16zM13 5v6h1.17L12 13.17 9.83 11H11V5zm2-2H9v6H5l7 7 7-7h-4zm-1 15H5v2h9Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/download-lock.svg��������������������������0000664�0000000�0000000�00000000403�14753064456�0026662�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 20h9v-2H5m14-9h-4V3H9v6H5l7 7m10 0a1.08 1.08 0 0 1 1 1v4a1.08 1.08 0 0 1-1 1h-5a1.08 1.08 0 0 1-1-1v-4a1.08 1.08 0 0 1 1-1v-1.5a2.5 2.5 0 0 1 5 0zm-1 0v-1.5a1.5 1.5 0 0 0-3 0V16z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/download-multiple-outline.svg��������������0000664�0000000�0000000�00000000234�14753064456�0031244�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 14 7-7h-4V1H9v6H5zm0-2.83L9.83 9H11V3h2v6h1.17zM5 16v2h14v-2zm0 6v-2h14v2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/download-multiple.svg����������������������0000664�0000000�0000000�00000000177�14753064456�0027575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 1v6H5l7 7 7-7h-4V1zM5 16v2h14v-2zm0 4v2h14v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/download-network-outline.svg���������������0000664�0000000�0000000�00000000413�14753064456�0031101�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 20a1 1 0 0 0-1-1h-1v-2h4a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h4v2h-1a1 1 0 0 0-1 1H2v2h7a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1h7v-2zm-8-5V5h10v10zm5-1 4-4h-3V6h-2v4H8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/download-network.svg�����������������������0000664�0000000�0000000�00000000407�14753064456�0027427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 3a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-4v2h1a1 1 0 0 1 1 1h7v2h-7a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1H2v-2h7a1 1 0 0 1 1-1h1v-2H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm-5 11.5 4.5-4.5H13V6h-2v4H7.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/download-off-outline.svg�������������������0000664�0000000�0000000�00000000305�14753064456�0030162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3l6 6H5l7 7 1.06-1.05L16.11 18H5v2h13.11l2.73 2.73zM11 5h2v4.8l2.6 2.6L19 9h-4V3H9v2.8l2 2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/download-off.svg���������������������������0000664�0000000�0000000�00000000275�14753064456�0026513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.84 22.73 18.11 20H5v-2h11.11l-3.05-3.05L12 16 5 9h2.11l-6-6 1.28-1.27 19.72 19.73zM19 9h-4V3H9v2.8l6.6 6.6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/download-outline.svg�����������������������0000664�0000000�0000000�00000000224�14753064456�0027412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 5v6h1.17L12 13.17 9.83 11H11V5zm2-2H9v6H5l7 7 7-7h-4zm4 15H5v2h14z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/download.svg�������������������������������0000664�0000000�0000000�00000000160�14753064456�0025734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 20h14v-2H5m14-9h-4V3H9v6H5l7 7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/drag-horizontal-variant.svg����������������0000664�0000000�0000000�00000000150�14753064456�0030672�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11H3V9h18zm0 2H3v2h18z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/drag-horizontal.svg������������������������0000664�0000000�0000000�00000000302�14753064456�0027227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 15v-2h2v2zm0-4V9h2v2zm4 4v-2h2v2zm0-4V9h2v2zm4 4v-2h2v2zm0-4V9h2v2zm4 4v-2h2v2zm0-4V9h2v2zm4 4v-2h2v2zm0-4V9h2v2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/drag-variant.svg���������������������������0000664�0000000�0000000�00000000545�14753064456�0026513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.67 12-4.49 4.5-2.51-2.5 1.98-2-1.98-1.96 2.51-2.51zM12 1.33l4.47 4.49-2.51 2.51L12 6.35l-2 1.98-2.5-2.51zm0 21.34-4.47-4.49 2.51-2.51L12 17.65l2-1.98 2.5 2.51zM1.33 12l4.49-4.5L8.33 10l-1.98 2 1.98 1.96-2.51 2.51zM12 10a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/drag-vertical-variant.svg������������������0000664�0000000�0000000�00000000151�14753064456�0030313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 21H9V3h2zm4-18h-2v18h2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/drag-vertical.svg��������������������������0000664�0000000�0000000�00000000304�14753064456�0026651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 3h2v2H9zm4 0h2v2h-2zM9 7h2v2H9zm4 0h2v2h-2zm-4 4h2v2H9zm4 0h2v2h-2zm-4 4h2v2H9zm4 0h2v2h-2zm-4 4h2v2H9zm4 0h2v2h-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/drag.svg�����������������������������������0000664�0000000�0000000�00000000333�14753064456�0025044�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 19v-2h2v2zm4 0v-2h2v2zm4 0v-2h2v2zm-8-4v-2h2v2zm4 0v-2h2v2zm4 0v-2h2v2zm-8-4V9h2v2zm4 0V9h2v2zm4 0V9h2v2zM7 7V5h2v2zm4 0V5h2v2zm4 0V5h2v2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/drama-masks.svg����������������������������0000664�0000000�0000000�00000001526�14753064456�0026334�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.11 19.45a6.95 6.95 0 0 1-4.4-5.1L2.05 6.54c-.24-1.08.45-2.14 1.53-2.37l9.77-2.07.03-.01c1.07-.21 2.12.48 2.34 1.54l.35 1.67 4.35.93h.03c1.05.24 1.73 1.3 1.51 2.36l-1.66 7.82a6.993 6.993 0 0 1-8.3 5.38 6.9 6.9 0 0 1-3.89-2.34M20 8.18 10.23 6.1l-1.66 7.82v.03c-.57 2.68 1.16 5.32 3.85 5.89s5.35-1.15 5.92-3.84zm-4 8.32a2.96 2.96 0 0 1-3.17 1.39 2.97 2.97 0 0 1-2.33-2.55zM8.47 5.17 4 6.13l1.66 7.81.01.03c.15.71.45 1.35.86 1.9-.1-.77-.08-1.57.09-2.37l.43-2c-.45-.08-.84-.33-1.05-.69.06-.61.56-1.15 1.25-1.31h.25l.78-3.81c.04-.19.1-.36.19-.52m6.56 7.06c.32-.53 1-.81 1.69-.66.69.14 1.19.67 1.28 1.29-.33.52-1 .8-1.7.64-.69-.13-1.19-.66-1.27-1.27m-4.88-1.04c.32-.53.99-.81 1.68-.66.67.14 1.2.68 1.28 1.29-.33.52-1 .81-1.69.68-.69-.17-1.19-.7-1.27-1.31m1.82-6.76 1.96.42-.16-.8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/draw-pen.svg�������������������������������0000664�0000000�0000000�00000001266�14753064456�0025652�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.75 20.85c1.78-.7 1.39-2.63.49-3.85-.89-1.25-2.12-2.11-3.36-2.94A9.8 9.8 0 0 1 4.54 12c-.28-.33-.85-.94-.27-1.06.59-.12 1.61.46 2.13.68.91.38 1.81.82 2.65 1.34l1.01-1.7C8.5 10.23 6.5 9.32 4.64 9.05c-1.06-.16-2.18.06-2.54 1.21-.32.99.19 1.99.77 2.77 1.37 1.83 3.5 2.71 5.09 4.29.34.33.75.72.95 1.18.21.44.16.47-.31.47-1.24 0-2.79-.97-3.8-1.61l-1.01 1.7c1.53.94 4.09 2.41 5.96 1.79m9.21-13.52L13.29 13H11v-2.29l5.67-5.68zm3.4-.78c-.01.3-.32.61-.64.92L19.2 10l-.87-.87 2.6-2.59-.59-.59-.67.67-2.29-2.29 2.15-2.15c.24-.24.63-.24.86 0l1.43 1.43c.24.22.24.62 0 .86-.21.21-.41.41-.41.61-.02.2.18.42.38.59.29.3.58.58.57.88"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/draw.svg�����������������������������������0000664�0000000�0000000�00000001102�14753064456�0025057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.75 20.85c1.78-.7 1.39-2.63.49-3.85-.89-1.25-2.12-2.11-3.36-2.94A9.8 9.8 0 0 1 4.54 12c-.28-.33-.85-.94-.27-1.06.59-.12 1.61.46 2.13.68.91.38 1.81.82 2.65 1.34l1.01-1.7C8.5 10.23 6.5 9.32 4.64 9.05c-1.06-.16-2.18.06-2.54 1.21-.32.99.19 1.99.77 2.77 1.37 1.83 3.5 2.71 5.09 4.29.34.33.75.72.95 1.18.21.44.16.47-.31.47-1.24 0-2.79-.97-3.8-1.61l-1.01 1.7c1.53.94 4.09 2.41 5.96 1.79m11.09-15.6c.22-.22.22-.58 0-.79l-1.3-1.3a.56.56 0 0 0-.78 0l-1.02 1.02 2.08 2.08M11 10.92V13h2.08l6.15-6.15-2.08-2.08z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/drawing-box.svg����������������������������0000664�0000000�0000000�00000000436�14753064456�0026354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 18h-6v-5.79c-.66.61-1.53.99-2.5.99-2.04 0-3.7-1.66-3.7-3.7a3.7 3.7 0 0 1 3.7-3.7c2.04 0 3.7 1.66 3.7 3.7 0 .97-.38 1.84-.99 2.5H18m1-9H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/drawing.svg��������������������������������0000664�0000000�0000000�00000000323�14753064456�0025561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.5 3A5.5 5.5 0 0 1 14 8.5c0 1.33-.47 2.55-1.26 3.5H21v9h-9v-8.26c-.95.79-2.17 1.26-3.5 1.26A5.5 5.5 0 0 1 3 8.5 5.5 5.5 0 0 1 8.5 3"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dresser-outline.svg������������������������0000664�0000000�0000000�00000000357�14753064456�0027261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3c-1.1 0-2 .9-2 2v13a2 2 0 0 0 2 2v1h2v-1h12v1h2v-1c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2zm0 2h16v3H4zm6 1v1h4V6zm-6 4h16v3H4zm6 1v1h4v-1zm-6 4h16v3H4zm6 1v1h4v-1z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dresser.svg��������������������������������0000664�0000000�0000000�00000000343�14753064456�0025577�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3c-1.1 0-2 .9-2 2v3h20V5a2 2 0 0 0-2-2zm6 2h4v1h-4zM2 9v5h20V9zm8 2h4v1h-4zm-8 4v3a2 2 0 0 0 2 2v1h2v-1h12v1h2v-1c1.11 0 2-.89 2-2v-3zm8 2h4v1h-4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/drone.svg����������������������������������0000664�0000000�0000000�00000000633�14753064456�0025241�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 11h-1l-1-2h-6.25L16 12.5h-2L10.75 9H4c-.55 0-2-.45-2-1s1.5-2.5 3.5-2.5S7.67 6.5 9 7h12a1 1 0 0 1 1 1v3M10.75 6.5 14 3h2l-2.25 3.5zM18 11V9.5h1.75L19 11zM3 19a1 1 0 0 1-1-1 1 1 0 0 1 1-1 4 4 0 0 1 4 4 1 1 0 0 1-1 1 1 1 0 0 1-1-1 2 2 0 0 0-2-2m8 2a1 1 0 0 1-1 1 1 1 0 0 1-1-1 6 6 0 0 0-6-6 1 1 0 0 1-1-1 1 1 0 0 1 1-1 8 8 0 0 1 8 8"/></svg>�����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dropbox.svg��������������������������������0000664�0000000�0000000�00000000332�14753064456�0025603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3 6.2 5 3.19 5-3.19L8 3zm10 0 5 3.19 5-3.19L18 3zM3 12.55l5 3.19 5-3.19-5-3.2zm15-3.2-5 3.2 5 3.19 5-3.19zM8.03 16.8l5.01 3.2 5-3.2-5-3.19z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/drupal.svg���������������������������������0000664�0000000�0000000�00000001057�14753064456�0025422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.47 14.65c0 .64-.22 1.71-.64 2.45-.43.75-.75.96-1.39.96-.74-.11-2.13-2.24-3.08-2.34-1.18 0-3.63 2.45-5.65 2.45-1.17 0-1.6-.22-1.92-.43-.64-.43-.85-1.07-.85-1.92 0-1.6 1.49-2.98 3.3-2.98 2.35 0 3.94 2.34 5.12 2.24.95 0 2.87-1.92 3.83-1.92.96-.21 1.28.84 1.28 1.49m-3.84-9.37c-1.06-.64-2.02-.96-3.09-1.6-.63-.43-1.49-1.38-2.23-2.24-.31 1.39-.53 1.92-1.07 2.35-1.06.74-1.6 1.06-2.55 1.49C6.94 5.7 3 8.05 3 13.16S7.37 22 12.05 22c4.8 0 8.95-3.5 8.95-8.73.21-5.22-3.73-7.57-4.37-7.99"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/duck.svg�����������������������������������0000664�0000000�0000000�00000000517�14753064456�0025061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.5 5A1.5 1.5 0 0 0 7 6.5 1.5 1.5 0 0 0 8.5 8 1.5 1.5 0 0 0 10 6.5 1.5 1.5 0 0 0 8.5 5M10 2a5 5 0 0 1 5 5c0 1.7-.85 3.2-2.14 4.1 1.58.15 3.36.51 5.14 1.4 3 1.5 4-.5 4-.5s-1 9-7 9H9s-5 0-5-5c0-3 3-4 2-6-4 0-4-3.5-4-3.5 1 .5 2.24.5 3 .15A5.02 5.02 0 0 1 10 2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dumbbell.svg�������������������������������0000664�0000000�0000000�00000000515�14753064456�0025717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.57 14.86 22 13.43 20.57 12 17 15.57 8.43 7 12 3.43 10.57 2 9.14 3.43 7.71 2 5.57 4.14 4.14 2.71 2.71 4.14l1.43 1.43L2 7.71l1.43 1.43L2 10.57 3.43 12 7 8.43 15.57 17 12 20.57 13.43 22l1.43-1.43L16.29 22l2.14-2.14 1.43 1.43 1.43-1.43-1.43-1.43L22 16.29z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/dump-truck.svg�����������������������������0000664�0000000�0000000�00000000616�14753064456�0026226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 8h-5v6H2v3h1a3 3 0 0 0 3 3 3 3 0 0 0 3-3h6a3 3 0 0 0 3 3 3 3 0 0 0 3-3h2v-5zM6 18.5A1.5 1.5 0 0 1 4.5 17 1.5 1.5 0 0 1 6 15.5 1.5 1.5 0 0 1 7.5 17 1.5 1.5 0 0 1 6 18.5m12 0a1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5 1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5M17 12V9.5h2.5l1.96 2.5zm1-5h-4v6H3L1.57 8H1V6h12l1-1h4z"/></svg>������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ear-hearing-loop.svg�����������������������0000664�0000000�0000000�00000001154�14753064456�0027262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6.5a2.5 2.5 0 0 0 0 5 2.5 2.5 0 0 0 0-5M16 17v2h2v4h2v-4h2v-2zm-4.31-3.53L3.67 22 2.4 20.73l7.35-7.86c.58.34 1.25.55 1.94.6M19 9c0 1.26-.38 2.65-1.07 3.9-.93 1.65-1.98 2.48-2.85 3.15-.81.62-1.39 1.07-1.71 2.05-.6 1.82-1.37 2.84-2.73 3.55-.51.23-1.07.35-1.64.35-1.19 0-2.25-.53-3-1.35l1.43-1.43a1.98 1.98 0 0 0 2.33.63c.71-.35 1.21-.88 1.71-2.38.53-1.56 1.47-2.29 2.39-3 .79-.61 1.61-1.24 2.32-2.53C16.71 11 17 9.93 17 9c0-2.8-2.2-5-5-5S7 6.2 7 9H5c0-3.93 3.07-7 7-7s7 3.07 7 7m-.63-4.88 2.35-2.39L22 3l-2.68 2.72c-.26-.57-.58-1.11-.95-1.6"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ear-hearing-off.svg������������������������0000664�0000000�0000000�00000001330�14753064456�0027057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 4.27 2.28 3 20 20.72 18.73 22l-5.82-5.82c-.72.56-1.24 1.01-1.54 1.92-.6 1.82-1.37 2.84-2.73 3.55-.51.23-1.07.35-1.64.35a4 4 0 0 1-4-4h2a2 2 0 0 0 2 2c.29 0 .56-.06.76-.15.71-.35 1.21-.88 1.71-2.38.44-1.35 1.22-2.08 2.03-2.71L5.04 8.31C5 8.54 5 8.77 5 9H3c0-.83.14-1.61.39-2.34zm13.18 7.67C14.71 11 15 9.93 15 9c0-2.8-2.2-5-5-5-1.19 0-2.26.39-3.11 1.06L5.46 3.63C6.67 2.61 8.25 2 10 2c3.93 0 7 3.07 7 7 0 1.26-.38 2.65-1.07 3.9l-.46.75-1.44-1.45zm2.18-9.3 1.42-1.42C19.77 3.21 21 5.96 21 9c0 2.83-1.07 5.41-2.82 7.36l-1.41-1.42A9 9 0 0 0 19 9c0-2.5-1-4.74-2.64-6.36M12.5 9c0 .5-.14.93-.37 1.31L8.69 6.87c.38-.23.81-.37 1.31-.37A2.5 2.5 0 0 1 12.5 9"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ear-hearing.svg����������������������������0000664�0000000�0000000�00000001174�14753064456�0026315�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 20c-.29 0-.56-.06-.76-.15-.71-.35-1.21-.88-1.71-2.38-.53-1.56-1.47-2.29-2.39-3-.79-.61-1.61-1.24-2.32-2.53C9.29 11 9 9.93 9 9c0-2.8 2.2-5 5-5s5 2.2 5 5h2c0-3.93-3.07-7-7-7S7 5.07 7 9c0 1.26.38 2.65 1.07 3.9.93 1.65 1.98 2.48 2.85 3.15.81.62 1.39 1.07 1.71 2.05.6 1.82 1.37 2.84 2.73 3.55.51.23 1.07.35 1.64.35a4 4 0 0 0 4-4h-2a2 2 0 0 1-2 2M7.64 2.64 6.22 1.22A10.97 10.97 0 0 0 3 9c0 3.04 1.23 5.79 3.22 7.78l1.41-1.41A8.95 8.95 0 0 1 5 9c0-2.5 1-4.74 2.64-6.36M11.5 9a2.5 2.5 0 0 0 2.5 2.5A2.5 2.5 0 0 0 16.5 9 2.5 2.5 0 0 0 14 6.5 2.5 2.5 0 0 0 11.5 9"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/earbuds-off-outline.svg��������������������0000664�0000000�0000000�00000001201�14753064456�0027774�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.11 21.46-3.61-3.61v-.01l-2.92-2.91-1.49-1.49h.01l-2.54-2.54L10 9.34l-3-3L6.66 6h.01l-.57-.56-3.71-3.71L1.11 3l1.44 1.43C2.19 5 2 5.58 2 6v5c0 1 1 3 3 3 .61 0 1.32-.28 2-.73V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8.11l4.5 4.5V20c0 .55.45 1 1 1h2c.44 0 .8-.28.93-.68l2.41 2.41zM8 10.23 5.91 11.6c-.51.33-.83.4-.91.4-.7 0-1-.92-1-1V6.03c0-.03 0-.06.03-.11L8 9.89zm5.53.1-2.49-2.49C11.37 5.12 13.69 3 16.5 3 19.54 3 22 5.46 22 8.5c0 2.82-2.11 5.13-4.84 5.46l-2.49-2.49c.53.33 1.16.53 1.83.53 1.93 0 3.5-1.57 3.5-3.5S18.43 5 16.5 5 13 6.57 13 8.5c0 .67.2 1.3.53 1.83"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/earbuds-off.svg����������������������������0000664�0000000�0000000�00000000704�14753064456�0026326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10 9.34 1.56 1.57v-.01l2.54 2.55-.01-.01 1.49 1.49h.01l2.91 2.91v.01l3.61 3.61-1.27 1.27-2.41-2.4c-.13.39-.49.67-.93.67h-2c-.55 0-1-.45-1-1v-3.61l-4.5-4.5V20c0 .55-.45 1-1 1H8c-.55 0-1-.45-1-1v-6.73c-.68.45-1.39.73-2 .73-2 0-3-2-3-3V6c0-.42.19-1 .55-1.57L1.11 3l1.28-1.27L6.1 5.44M22 8.5C22 5.46 19.54 3 16.5 3c-2.81 0-5.13 2.12-5.46 4.84l6.12 6.12A5.496 5.496 0 0 0 22 8.5"/></svg>������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/earbuds-outline.svg������������������������0000664�0000000�0000000�00000001002�14753064456�0027223�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3C3 3 2 5 2 6v5c0 1 1 3 3 3 .61 0 1.32-.28 2-.73V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V8c0-2-3-5-5-5m3 7.23L5.91 11.6c-.51.33-.83.4-.91.4-.7 0-1-.92-1-1V6.03C4 5.92 4.3 5 5 5c.9 0 3 2.1 3 3zM16.5 15c.7 0 1.37-.11 2-.32V20c0 .55-.45 1-1 1h-2c-.55 0-1-.45-1-1v-5.32c.63.21 1.3.32 2 .32m0-12C13.46 3 11 5.46 11 8.5s2.46 5.5 5.5 5.5S22 11.54 22 8.5 19.54 3 16.5 3m0 9c-1.93 0-3.5-1.57-3.5-3.5S14.57 5 16.5 5 20 6.57 20 8.5 18.43 12 16.5 12"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/earbuds.svg��������������������������������0000664�0000000�0000000�00000000534�14753064456�0025557�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 8v12c0 .55-.45 1-1 1H8c-.55 0-1-.45-1-1v-6.73c-.68.45-1.39.73-2 .73-2 0-3-2-3-3V6c0-1 1-3 3-3s5 3 5 5m6.5-5C13.46 3 11 5.46 11 8.5s2.46 5.5 5.5 5.5S22 11.54 22 8.5 19.54 3 16.5 3m-2 11.68V20c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-5.32c-.63.21-1.3.32-2 .32s-1.37-.11-2-.32"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/earth-arrow-down.svg�����������������������0000664�0000000�0000000�00000000605�14753064456�0027331�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 19h2v-4h2v4h2l-3 3zm-3-1c0-2.2 1.2-4.1 3-5.2-.1-.5-.5-.8-1-.8H8v-2h2c.6 0 1-.4 1-1V7h2c1.1 0 2-.9 2-2v-.4c2.9 1.2 5 4 5 7.4v.3c.7.2 1.3.6 1.9 1.1.1-.4.1-.9.1-1.4 0-5.5-4.5-10-10-10S2 6.5 2 12s4.5 10 10 10c.5 0 1 0 1.4-.1-.9-1.1-1.4-2.4-1.4-3.9m-1 1.9c-4-.5-7-3.8-7-7.9 0-.6.1-1.2.2-1.8L9 15v1c0 1.1.9 2 2 2z"/></svg>���������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/earth-arrow-left.svg�����������������������0000664�0000000�0000000�00000000605�14753064456�0027314�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 15v2h4v2h-4v2l-3-3zm-5 3c0-2.2 1.2-4.1 3-5.2-.1-.5-.5-.8-1-.8H8v-2h2c.6 0 1-.4 1-1V7h2c1.1 0 2-.9 2-2v-.4c2.9 1.2 5 4 5 7.4v.3c.7.2 1.3.6 1.9 1.1.1-.4.1-.9.1-1.4 0-5.5-4.5-10-10-10S2 6.5 2 12s4.5 10 10 10c.5 0 1 0 1.4-.1-.9-1.1-1.4-2.4-1.4-3.9m-1 1.9c-4-.5-7-3.8-7-7.9 0-.6.1-1.2.2-1.8L9 15v1c0 1.1.9 2 2 2z"/></svg>���������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/earth-arrow-right.svg����������������������0000664�0000000�0000000�00000000607�14753064456�0027501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 21v-2h-4v-2h4v-2l3 3zm-7-3c0-2.2 1.2-4.1 3-5.2-.1-.5-.5-.8-1-.8H8v-2h2c.6 0 1-.4 1-1V7h2c1.1 0 2-.9 2-2v-.4c2.9 1.2 5 4 5 7.4v.3c.7.2 1.3.6 1.9 1.1.1-.4.1-.9.1-1.4 0-5.5-4.5-10-10-10S2 6.5 2 12s4.5 10 10 10c.5 0 1 0 1.4-.1-.9-1.1-1.4-2.4-1.4-3.9m-1 1.9c-4-.5-7-3.8-7-7.9 0-.6.1-1.2.2-1.8L9 15v1c0 1.1.9 2 2 2z"/></svg>�������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/earth-arrow-up.svg�������������������������0000664�0000000�0000000�00000000607�14753064456�0027010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 17h-2v4h-2v-4h-2l3-3zm-9 1c0-2.2 1.2-4.1 3-5.2-.1-.5-.5-.8-1-.8H8v-2h2c.6 0 1-.4 1-1V7h2c1.1 0 2-.9 2-2v-.4c2.9 1.2 5 4 5 7.4v.3c.7.2 1.3.6 1.9 1.1.1-.4.1-.9.1-1.4 0-5.5-4.5-10-10-10S2 6.5 2 12s4.5 10 10 10c.5 0 1 0 1.4-.1-.9-1.1-1.4-2.4-1.4-3.9m-1 1.9c-4-.5-7-3.8-7-7.9 0-.6.1-1.2.2-1.8L9 15v1c0 1.1.9 2 2 2z"/></svg>�������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/earth-box-minus.svg������������������������0000664�0000000�0000000�00000000531�14753064456�0027151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 17v2h-8v-2zM5 3h14a2 2 0 0 1 2 2v7.8c-.61-.35-1.28-.6-2-.72V5h-3.22c-.11 1-.95 1.79-1.98 1.79h-2v2c0 .56-.45 1-1 1h-2v2h6c.43 0 .8.27.94.65A6.01 6.01 0 0 0 12 17.83c-1.3-.04-2.2-.93-2.2-2.04v-1L5 10.29V19h7.08c.12.72.37 1.39.72 2H5a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/earth-box-off.svg��������������������������0000664�0000000�0000000�00000000565�14753064456�0026577�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23 4.27-2 2V19a2 2 0 0 1-2 2H6.27l-2 2L3 21.72 21.72 3zM5 3h14.18l-2 2h-1.4c-.11 1-.95 1.79-1.98 1.79h-2v2c0 .56-.45 1-1 1h-2v2h1.58l-1.83 1.83L5 10.29v6.89l-2 2V5c0-1.11.89-2 2-2m6.8 16v-1.21c-.63 0-1.2-.29-1.57-.75L8.27 19zm4-6.21v3h1c.89 0 1.94.59 2.2 1.39V8.27l-3.67 3.67c.28.18.47.49.47.85"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/earth-box-plus.svg�������������������������0000664�0000000�0000000�00000000554�14753064456�0027006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 14h2v3h3v2h-3v3h-2v-3h-3v-2h3zM5 3h14a2 2 0 0 1 2 2v7.8c-.61-.35-1.28-.6-2-.72V5h-3.22c-.11 1-.95 1.79-1.98 1.79h-2v2c0 .56-.45 1-1 1h-2v2h6c.43 0 .8.27.94.65A6.01 6.01 0 0 0 12 17.83c-1.3-.04-2.2-.93-2.2-2.04v-1L5 10.29V19h7.08c.12.72.37 1.39.72 2H5a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/earth-box-remove.svg�����������������������0000664�0000000�0000000�00000000714�14753064456�0027316�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.46 15.88 1.42-1.42L18 16.59l2.12-2.12 1.42 1.41L19.41 18l2.13 2.12-1.42 1.42L18 19.41l-2.12 2.13-1.42-1.42L16.59 18l-2.12-2.12M5 3h14a2 2 0 0 1 2 2v7.8c-.61-.35-1.28-.6-2-.72V5h-3.22c-.11 1-.95 1.79-1.98 1.79h-2v2c0 .56-.45 1-1 1h-2v2h6c.43 0 .8.27.94.65A6.01 6.01 0 0 0 12 17.83c-1.3-.04-2.2-.93-2.2-2.04v-1L5 10.29V19h7.08c.12.72.37 1.39.72 2H5a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2"/></svg>����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/earth-box.svg������������������������������0000664�0000000�0000000�00000000462�14753064456�0026023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zm10.78 2H19v12.18c-.26-.8-1.31-1.39-2.2-1.39h-1v-3a1 1 0 0 0-1-1h-6v-2h2a1 1 0 0 0 1-1v-2h2c1.03 0 1.87-.79 1.98-1.79M5 10.29l4.8 4.5v1a2 2 0 0 0 2 2V19H5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/earth-minus.svg����������������������������0000664�0000000�0000000�00000000620�14753064456�0026362�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 17h8v2h-8zm6-5c0-3.36-2.07-6.23-5-7.41V5c0 1.1-.9 2-2 2h-2v2c0 .55-.45 1-1 1H8v2h6c.5 0 .9.35 1 .81-1.8 1.04-3 2.98-3 5.19 0 1.5.54 2.85 1.44 3.9L12 22C6.5 22 2 17.5 2 12S6.5 2 12 2s10 4.5 10 10l-.1 1.44c-.56-.48-1.2-.85-1.9-1.1zm-9 7.93V18c-1.1 0-2-.9-2-2v-1l-4.79-4.79C4.08 10.78 4 11.38 4 12c0 4.08 3.06 7.44 7 7.93"/></svg>����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/earth-off.svg������������������������������0000664�0000000�0000000�00000001130�14753064456�0025776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22 5.27-1.5 1.48C21.46 8.28 22 10.07 22 12a10 10 0 0 1-10 10c-1.92 0-3.72-.54-5.25-1.5L5.27 22 4 20.72 20.72 4zm-4.1 12.12C19.2 15.97 20 14.08 20 12c0-1.37-.34-2.66-.95-3.78l-4.22 4.22c.11.16.17.35.17.56v3h1c.89 0 1.64.59 1.9 1.39M11 19.93V18c-.5 0-.93-.17-1.27-.46l-1.51 1.51c.85.45 1.78.75 2.78.88m4-15.34V5a2 2 0 0 1-2 2h-2v2a1 1 0 0 1-1 1H8v2h2.18l-2.09 2.09-3.88-3.88C4.08 10.78 4 11.38 4 12c0 1.74.56 3.36 1.5 4.67L4.08 18.1A9.9 9.9 0 0 1 2 12 10 10 0 0 1 12 2c2.3 0 4.41.77 6.1 2.08L16.67 5.5A8.2 8.2 0 0 0 15 4.59"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/earth-plus.svg�����������������������������0000664�0000000�0000000�00000000644�14753064456�0026220�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 14h2v3h3v2h-3v3h-2v-3h-3v-2h3zm3-2c0-3.36-2.07-6.23-5-7.41V5c0 1.1-.9 2-2 2h-2v2c0 .55-.45 1-1 1H8v2h6c.5 0 .9.35 1 .81-1.8 1.04-3 2.98-3 5.19 0 1.5.54 2.85 1.44 3.9L12 22C6.5 22 2 17.5 2 12S6.5 2 12 2s10 4.5 10 10l-.1 1.44c-.56-.48-1.2-.85-1.9-1.1zm-9 7.93V18c-1.1 0-2-.9-2-2v-1l-4.79-4.79C4.08 10.78 4 11.38 4 12c0 4.08 3.06 7.44 7 7.93"/></svg>��������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/earth-remove.svg���������������������������0000664�0000000�0000000�00000001006�14753064456�0026523�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.46 15.88 1.42-1.42L18 16.59l2.12-2.12 1.42 1.41L19.41 18l2.13 2.12-1.42 1.42L18 19.41l-2.12 2.13-1.42-1.42L16.59 18l-2.12-2.12M20 12c0-3.36-2.07-6.23-5-7.41V5c0 1.1-.9 2-2 2h-2v2c0 .55-.45 1-1 1H8v2h6c.5 0 .9.35 1 .81-1.8 1.04-3 2.98-3 5.19 0 1.5.54 2.85 1.44 3.9L12 22C6.5 22 2 17.5 2 12S6.5 2 12 2s10 4.5 10 10l-.1 1.44c-.56-.48-1.2-.85-1.9-1.1zm-9 7.93V18c-1.1 0-2-.9-2-2v-1l-4.79-4.79C4.08 10.78 4 11.38 4 12c0 4.08 3.06 7.44 7 7.93"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/earth.svg����������������������������������0000664�0000000�0000000�00000000546�14753064456�0025240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.9 17.39c-.26-.8-1.01-1.39-1.9-1.39h-1v-3a1 1 0 0 0-1-1H8v-2h2a1 1 0 0 0 1-1V7h2a2 2 0 0 0 2-2v-.41a7.984 7.984 0 0 1 2.9 12.8M11 19.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.22.21-1.79L9 15v1a2 2 0 0 0 2 2m1-16A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/egg-easter.svg�����������������������������0000664�0000000�0000000�00000001010�14753064456�0026143�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.89 6.36C8.23 3.91 10 2 12 2s3.77 1.91 5.11 4.36c-.85.21-1.61.71-2.11 1.41a3.71 3.71 0 0 0-5.2-.8c-.3.22-.58.49-.8.8-.5-.7-1.26-1.2-2.11-1.41M15 18.06l-3-3-3 3-3-3-1.27 1.27a7.504 7.504 0 0 0 9.11 5.43 7.53 7.53 0 0 0 5.43-5.43L18 15.06zm-6-2.12 3-3 3 3 3-3 1.5 1.5c-.13-2.31-.7-4.58-1.69-6.68-1.16.1-2.06 1.07-2.06 2.24h-1.5A2.25 2.25 0 0 0 12 7.75 2.25 2.25 0 0 0 9.75 10h-1.5c0-1.17-.9-2.14-2.06-2.24-.99 2.1-1.56 4.37-1.69 6.68l1.5-1.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/egg-fried.svg������������������������������0000664�0000000�0000000�00000001102�14753064456�0025753�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4.5c2.17 0 2.58.57 3.5 1.82.38.53.82 1.12 1.44 1.74.49.49.92.87 1.27 1.18 1.09.95 1.29 1.12 1.29 2.76 0 2.93 0 3.38-1.56 4.94C16 18.86 15.38 19.5 13 19.5c-1.12 0-1.5-.32-2.11-.81-.62-.5-1.46-1.19-2.89-1.19-3.04 0-3.5-3.45-3.5-5.5 0-1.35.5-3.09 1.97-3.58 1.78-.59 2.73-1.71 3.49-2.61.79-.93 1.15-1.31 2.04-1.31M12 3C9 3 9 6 6 7c-2.12.71-3 3-3 5 0 3 1 7 5 7 2 0 2 2 5 2s4-1 6-3 2-3 2-6-1-3-3-5-2-4-6-4m0 5c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4m0 2c-1.1 0-2 .9-2 2H9c0-1.65 1.35-3 3-3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/egg-off-outline.svg������������������������0000664�0000000�0000000�00000000663�14753064456�0027124�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3 6.1 8c-1 2.28-1.6 4.76-1.6 6.5 0 4.14 3.36 7.5 7.5 7.5 2.23 0 4.22-1 5.59-2.5l3.25 3.23zM12 20a5.51 5.51 0 0 1-5.5-5.5c0-1.42.45-3.25 1.13-5l8.54 8.56C15.16 19.24 13.67 20 12 20M9.36 6.16 7.92 4.72C9.1 3.11 10.5 2 12 2c4.14 0 7.5 8.36 7.5 12.5 0 .56-.07 1.1-.18 1.62l-1.82-1.83C17.38 10.46 14.28 4 12 4c-.83 0-1.78.87-2.64 2.16"/></svg>�����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/egg-off.svg��������������������������������0000664�0000000�0000000�00000000403�14753064456�0025437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l5 5c-1 2.3-1.6 4.8-1.6 6.5 0 4.1 3.4 7.5 7.5 7.5 2.2 0 4.2-1 5.6-2.5l3.2 3.2zm-2.6-7C19.5 10.4 16.1 2 12 2c-1.5 0-2.9 1.1-4.1 2.7l11.4 11.4c.1-.5.2-1 .2-1.6"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/egg-outline.svg����������������������������0000664�0000000�0000000�00000000364�14753064456�0026352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4c2.32 0 5.5 6.7 5.5 10.5 0 3.03-2.47 5.5-5.5 5.5s-5.5-2.47-5.5-5.5C6.5 10.7 9.68 4 12 4m0-2c-4.14 0-7.5 8.36-7.5 12.5S7.86 22 12 22s7.5-3.36 7.5-7.5S16.14 2 12 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/egg.svg������������������������������������0000664�0000000�0000000�00000000252�14753064456�0024671�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 14.5A7.5 7.5 0 0 1 12 22a7.5 7.5 0 0 1-7.5-7.5C4.5 10.36 7.86 2 12 2s7.5 8.36 7.5 12.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eiffel-tower.svg���������������������������0000664�0000000�0000000�00000000500�14753064456�0026513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.21 17c.44-.85.85-1.84 1.23-3H9v-2h1c.61-2.6 1-5.87 1-10h2c0 4.13.4 7.4 1 10h1v2h-.44c.38 1.16.79 2.15 1.23 3H17v2l2 3h-2.42c-.77-1.76-2.53-3-4.58-3s-3.81 1.24-4.58 3H5l2-3-.03-2zm4.38-3h-1.18a22 22 0 0 1-1.13 3h3.44c-.4-.87-.79-1.87-1.13-3"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eight-track.svg����������������������������0000664�0000000�0000000�00000000241�14753064456�0026327�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2 5 5v11l1 4c.27 1.07.9 2 2 2h8a2 2 0 0 0 2-2l1-4V5l-2-3h-2v1h-2V2zm0 4h10v10H7z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eject-circle-outline.svg�������������������0000664�0000000�0000000�00000000343�14753064456�0030136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m4.5-8L12 6l-4.5 6zm0 4h-9v-2h9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eject-circle.svg���������������������������0000664�0000000�0000000�00000000253�14753064456�0026461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m4.5 14h-9v-2h9zm-9-4L12 6l4.5 6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eject-outline.svg��������������������������0000664�0000000�0000000�00000000204�14753064456�0026673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 17h14v2H5zm7-12L5.33 15h13.34zm0 3.6 2.93 4.4H9.07z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eject.svg����������������������������������0000664�0000000�0000000�00000000156�14753064456�0025224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 5 5.33 15h13.34M5 17h14v2H5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/electric-switch-closed.svg�����������������0000664�0000000�0000000�00000000366�14753064456�0030475�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.83 11a3 3 0 0 0-5.65 0H8.82a3 3 0 0 0-5.65 0H1v2h2.17a3 3 0 0 0 5.65 0h6.36a3 3 0 0 0 5.65 0H23v-2M6 13a1 1 0 1 1 1-1 1 1 0 0 1-1 1m12 0a1 1 0 1 1 1-1 1 1 0 0 1-1 1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/electric-switch.svg������������������������0000664�0000000�0000000�00000000651�14753064456�0027223�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 11h2.17C3.58 9.83 4.69 9 6 9c.65 0 1.25.21 1.74.56l6.7-4.69 1.14 1.63-6.69 4.7c.07.25.11.52.11.8a3 3 0 0 1-3 3 2.99 2.99 0 0 1-2.83-2H1zm22 0v2h-2.17A2.99 2.99 0 0 1 18 15a3 3 0 0 1-3-3 3 3 0 0 1 3-3c1.31 0 2.42.83 2.83 2zM6 11a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m12 0a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>���������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/electron-framework.svg���������������������0000664�0000000�0000000�00000003406�14753064456�0027741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 22c-1.67 0-3.16-1.5-4.1-4.07-.07-.2.03-.43.24-.49.2-.08.42.03.49.23.81 2.23 2.07 3.56 3.37 3.56.94 0 1.87-.68 2.62-1.92a.386.386 0 0 1 .66.4C14.38 21.19 13.22 22 12 22m3.91-4.28a.4.4 0 0 1-.11-.02c-.21-.07-.3-.28-.26-.49.46-1.4.68-3.03.68-4.71 0-3.85-1.25-7.26-3.03-8.36-.25.36-.69.64-1.19.64-.76 0-1.39-.62-1.39-1.39S11.24 2 12 2c.77 0 1.4.61 1.41 1.37C15.53 4.5 17 8.21 17 12.5c0 1.75-.25 3.46-.72 4.95-.05.16-.2.27-.37.27M12 2.77c-.34 0-.62.28-.62.62s.29.61.62.61c.35 0 .64-.27.64-.61s-.29-.62-.64-.62M4.08 18.54c-.77 0-1.4-.63-1.4-1.39 0-.49.26-.93.65-1.18-.14-2.41 2.35-5.56 6.17-7.75 1.59-.9 3.25-1.55 4.82-1.88.18-.05.41.08.45.29.05.21-.08.42-.27.46-1.5.32-3.09.94-4.6 1.8-3.44 1.97-5.8 4.79-5.8 6.87.76.01 1.4.63 1.4 1.39 0 .77-.65 1.39-1.42 1.39m0-2.01c-.34 0-.62.28-.62.62 0 .35.28.62.62.62s.63-.27.63-.62c0-.34-.29-.62-.63-.62m14.42-3.09c-.07 0-.16-.03-.23-.09a.393.393 0 0 1-.04-.55c1.54-1.8 2.07-3.54 1.41-4.66-.47-.81-1.54-1.26-3.01-1.28-.22 0-.39-.18-.38-.39 0-.21.18-.37.39-.38 1.75.02 3.06.61 3.67 1.66.84 1.44.29 3.46-1.49 5.55-.08.09-.19.14-.32.14m-2 5.46c-2 0-4.56-.74-7-2.13-1.55-.89-2.93-1.98-4-3.14a.4.4 0 0 1 0-.55c.18-.14.42-.13.57.03 1.01 1.1 2.33 2.14 3.82 2.99 3.31 1.9 6.88 2.53 8.76 1.62-.08-.17-.15-.37-.15-.57 0-.77.65-1.39 1.42-1.39s1.4.62 1.4 1.39a1.396 1.396 0 0 1-2.15 1.17c-.7.39-1.61.58-2.67.58m3-1.27c.13.08.27.14.42.14a.619.619 0 1 0 0-1.24c-.35 0-.62.28-.62.62 0 .14.05.27.13.38.04.02.07.06.07.1M4.46 12c-.13 0-.26-.08-.33-.2-.9-1.55-1.05-2.99-.43-4.06.84-1.44 2.88-1.98 5.61-1.49.19.04.35.25.31.45-.03.21-.23.35-.44.3C6.82 6.59 5 7 4.37 8.13c-.48.82-.33 1.98.43 3.28.1.19.04.42-.15.53-.06.03-.12.06-.19.06m7.75 1.4a.92.92 0 0 1-.4-1.8c.5-.1 1 .21 1.1.71.09.49-.21.98-.7 1.09"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/elephant.svg�������������������������������0000664�0000000�0000000�00000000374�14753064456�0025734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 15.5a.5.5 0 0 1-.5.5.5.5 0 0 1-.5-.5v-7c0-1.93-2.07-3.5-4-3.5H6a4 4 0 0 0-4 4v10h4v-4h5v4h4v-4.5a.5.5 0 0 1 .5-.5.5.5 0 0 1 .5.5V16a3 3 0 0 0 3 3 3 3 0 0 0 3-3v-2h-2.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/elevation-decline.svg����������������������0000664�0000000�0000000�00000000267�14753064456�0027524�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 21H3v-9.75L9.45 15l3.77-2.2L21 17.29zM3 8.94V6.75l6.45 3.75 3.77-2.2L21 12.79V15l-7.78-4.5-3.77 2.17z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/elevation-rise.svg�������������������������0000664�0000000�0000000�00000000275�14753064456�0027062�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 21v-3.71l7.78-4.49 3.77 2.2L21 11.25V21zM21 8.94l-6.45 3.73-3.77-2.17L3 15v-2.21l7.78-4.49 3.77 2.2L21 6.75z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/elevator-down.svg��������������������������0000664�0000000�0000000�00000000315�14753064456�0026715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7 10 4-4H8V2H6v4H3zm10 0-4-4h3V2h2v4h3zM7 12h10a2 2 0 0 1 2 2v6c0 1.11-.89 2-2 2H7a2 2 0 0 1-2-2v-6c0-1.1.9-2 2-2m0 2v6h10v-6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/elevator-passenger-off-outline.svg���������0000664�0000000�0000000�00000000470�14753064456�0032164�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3 3 4.9V19c0 1.1.9 2 2 2h14.1l1.74 1.73zM5 19V6.89l2.65 2.65C6.71 9.71 6 10.5 6 11.5V14h1v4h3v-4h1v-1.11L17.11 19zM8.2 5l-2-2H19c1.1 0 2 .9 2 2v12.8l-2-2V5zm9.8 6h-3.8l-.74-.74L15.5 7zm-.69 3.11L16.2 13H18z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/elevator-passenger-off.svg�����������������0000664�0000000�0000000�00000000446�14753064456�0030512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.11 21.46-1.41-1.41v-.01L2.39 1.73 1.11 3 3 4.9V19c0 1.1.9 2 2 2h14.1l1.74 1.73zM11 14h-1v4H7v-4H6v-2.5c0-1 .71-1.79 1.65-1.96L11 12.89zm2.46-3.74L6.2 3H19c1.1 0 2 .9 2 2v12.8l-3.69-3.69L18 13h-1.8l-2-2H18l-2.5-4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/elevator-passenger-outline.svg�������������0000664�0000000�0000000�00000000470�14753064456�0031414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 5v14H5V5zm0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m-9 15v-4h1v-2.5c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2V14h1v4zM8.5 8.5a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5M18 11l-2.5-4-2.5 4zm-5 2 2.5 4 2.5-4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/elevator-passenger.svg���������������������0000664�0000000�0000000�00000000444�14753064456�0027740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2M8.5 6a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5m2.5 8h-1v4H7v-4H6v-2.5c0-1.1.9-2 2-2h1c1.1 0 2 .9 2 2zm4.5 3L13 13h5zM13 11l2.5-4 2.5 4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/elevator-up.svg����������������������������0000664�0000000�0000000�00000000314�14753064456�0026371�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7 2 4 4H8v4H6V6H3zm10 0-4 4h3v4h2V6h3zM7 12h10a2 2 0 0 1 2 2v6c0 1.11-.89 2-2 2H7a2 2 0 0 1-2-2v-6c0-1.1.9-2 2-2m0 2v6h10v-6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/elevator.svg�������������������������������0000664�0000000�0000000�00000000311�14753064456�0025744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7 2 4 4H8v4H6V6H3zm10 8-4-4h3V2h2v4h3zM7 12h10a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-6a2 2 0 0 1 2-2m0 2v6h10v-6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ellipse-outline.svg������������������������0000664�0000000�0000000�00000000300�14753064456�0027233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6c4.41 0 8 2.69 8 6s-3.59 6-8 6-8-2.69-8-6 3.59-6 8-6m0-2C6.5 4 2 7.58 2 12s4.5 8 10 8 10-3.58 10-8-4.5-8-10-8"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ellipse.svg��������������������������������0000664�0000000�0000000�00000000210�14753064456�0025556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4C6.5 4 2 7.58 2 12s4.5 8 10 8 10-3.58 10-8-4.5-8-10-8"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-alert-outline.svg��������������������0000664�0000000�0000000�00000000320�14753064456�0027774�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 7h-2v6h2zm0 8h-2v2h2zm-4-9c0-1.1-.9-2-2-2H2C.9 4 0 4.9 0 6v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2zm-2 0-8 5-8-5zm0 12H2V8l8 5 8-5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-alert.svg����������������������������0000664�0000000�0000000�00000000306�14753064456�0026323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18 8-8 5-8-5V6l8 5 8-5m0-2H2C.9 4 0 4.9 0 6v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2m6 3h-2v6h2zm0 8h-2v2h2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-arrow-left-outline.svg���������������0000664�0000000�0000000�00000000401�14753064456�0030747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0-.34.04-.67.09-1H4V8l8 5 8-5v5.09c.72.12 1.39.37 2 .72V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9.09c-.05-.33-.09-.66-.09-1m7-13-8 5-8-5zm-2 10v2h4v2h-4v2l-3-3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-arrow-left.svg�����������������������0000664�0000000�0000000�00000000366�14753064456�0027304�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0-3.31 2.69-6 6-6 1.1 0 2.12.3 3 .81V6a2 2 0 0 0-2-2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h9.09c-.05-.33-.09-.66-.09-1M4 8V6l8 5 8-5v2l-8 5zm14 8v2h4v2h-4v2l-3-3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-arrow-right-outline.svg��������������0000664�0000000�0000000�00000000402�14753064456�0031133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0-.34.04-.67.09-1H4V8l8 5 8-5v5.09c.72.12 1.39.37 2 .72V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9.09c-.05-.33-.09-.66-.09-1m7-13-8 5-8-5zm0 16v-2h-4v-2h4v-2l3 3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-arrow-right.svg����������������������0000664�0000000�0000000�00000000371�14753064456�0027463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0-3.31 2.69-6 6-6 1.1 0 2.12.3 3 .81V6a2 2 0 0 0-2-2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h9.09c-.05-.33-.09-.66-.09-1M4 8V6l8 5 8-5v2l-8 5zm16 14v-2h-4v-2h4v-2l3 3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-box.svg������������������������������0000664�0000000�0000000�00000000431�14753064456�0026003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zm1.4 3.5h11.2c.77 0 1.4.62 1.4 1.4v8.2a1.4 1.4 0 0 1-1.4 1.4H6.4c-.77 0-1.4-.63-1.4-1.4V7.9c0-.78.62-1.4 1.4-1.4M6 8v2l6 4 6-4V8l-6 4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-check-outline.svg��������������������0000664�0000000�0000000�00000000444�14753064456�0027751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0-.34.04-.67.09-1H4V8l8 5 8-5v5.09c.72.12 1.39.37 2 .72V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9.09c-.05-.33-.09-.66-.09-1m7-13-8 5-8-5zm-2.25 16.16-2.75-3L16.16 18l1.59 1.59L21.34 16l1.16 1.41z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-check.svg����������������������������0000664�0000000�0000000�00000000432�14753064456�0026271�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0-3.31 2.69-6 6-6 1.1 0 2.12.3 3 .81V6a2 2 0 0 0-2-2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h9.09c-.05-.33-.09-.66-.09-1M4 8V6l8 5 8-5v2l-8 5zm13.75 14.16-2.75-3L16.16 18l1.59 1.59L21.34 16l1.16 1.41z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-edit-outline.svg���������������������0000664�0000000�0000000�00000000463�14753064456�0027622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.07 13.88 13 19.94V22h2.06l6.06-6.07m1.58-2.35-1.28-1.28a.52.52 0 0 0-.38-.17c-.15.01-.29.06-.39.17l-1 1 2.05 2 1-1c.19-.2.19-.52 0-.72M11 18H4V8l8 5 8-5v2h2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7zm9-12-8 5-8-5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-edit.svg�����������������������������0000664�0000000�0000000�00000000543�14753064456�0026144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 12.13c-.15.01-.29.06-.39.17l-1 1 2.05 2 1-1c.22-.21.22-.56 0-.77l-1.24-1.23a.56.56 0 0 0-.38-.17m-2 1.75L13 19.94V22h2.06l6.06-6.07M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h7v-.89l8.24-8.22c.47-.49 1.12-.76 1.8-.76.34 0 .68.06 1 .19V6c0-1.12-.92-2-2.04-2m0 4-8 5-8-5V6l8 5 8-5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-fast-outline.svg���������������������0000664�0000000�0000000�00000000560�14753064456�0027630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 5.5H9c-1.1 0-2 .9-2 2v9a2 2 0 0 0 2 2h13c1.11 0 2-.89 2-2v-9a2 2 0 0 0-2-2m0 11H9V9.17l6.5 3.33L22 9.17zm-6.5-5.69L9 7.5h13zM5 16.5c0 .17.03.33.05.5H1c-.552 0-1-.45-1-1s.448-1 1-1h4zM3 7h2.05c-.02.17-.05.33-.05.5V9H3c-.55 0-1-.45-1-1s.45-1 1-1m-2 5c0-.55.45-1 1-1h3v2H2c-.55 0-1-.45-1-1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-fast.svg�����������������������������0000664�0000000�0000000�00000000552�14753064456�0026154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 5.5H9c-1.1 0-2 .9-2 2v9a2 2 0 0 0 2 2h13c1.11 0 2-.89 2-2v-9a2 2 0 0 0-2-2m0 3.67-6.5 3.33L9 9.17V7.5l6.5 3.31L22 7.5zM5 16.5c0 .17.03.33.05.5H1c-.552 0-1-.45-1-1s.448-1 1-1h4zM3 7h2.05c-.02.17-.05.33-.05.5V9H3c-.55 0-1-.45-1-1s.45-1 1-1m-2 5c0-.55.45-1 1-1h3v2H2c-.55 0-1-.45-1-1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-heart-outline.svg��������������������0000664�0000000�0000000�00000000625�14753064456�0030000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 9c-1.1 0-2 .92-2 2.05 0 .57.22 1.07.59 1.45L12 16l3.42-3.5c.36-.37.58-.89.58-1.45C16 9.92 15.1 9 14 9c-.54 0-1.05.23-1.41.6l-.59.6-.58-.59A2 2 0 0 0 10 9m10-5c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2zm-3.3 4.06L20 6H4l3.3 2.06c-.41.39-.75.86-.97 1.39L4 8v10h16V8l-2.33 1.45c-.22-.53-.56-1-.97-1.39"/></svg>�����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-lock-outline.svg���������������������0000664�0000000�0000000�00000000607�14753064456�0027625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18.2V18H4V8l8 5 8-5v3.44c.81.36 1.5.92 2 1.62V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h8zM20 6l-8 5-8-5zm.8 11v-1.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V17c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3m-1.3 0h-3v-1.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3z"/></svg>�������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-lock.svg�����������������������������0000664�0000000�0000000�00000000662�14753064456�0026151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18.2c0-.96.5-1.86 1.2-2.46v-.24c0-2.44 2.2-4.5 4.8-4.5 1.65 0 3.13.83 4 2.06V6a2 2 0 0 0-2-2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h8zM4 6l8 5 8-5v2l-8 5-8-5zm16.8 11v-1.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V17c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3m-1.3 0h-3v-1.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3z"/></svg>������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-mark-as-unread.svg�������������������0000664�0000000�0000000�00000000452�14753064456�0030025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.84 7h-2.62L10.5 4 4 7.41V17a2 2 0 0 1-2-2V7.17c0-.67.28-1.11.81-1.36L10.5 2l7.55 3.81c.45.28.73.69.79 1.19M7 8h13a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-9a2 2 0 0 1 2-2m13 3.67V10l-6.5 3.31L7 10v1.67L13.5 15z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-minus-outline.svg��������������������0000664�0000000�0000000�00000000370�14753064456�0030025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0-.34.04-.67.09-1H4V8l8 5 8-5v5.09c.72.12 1.39.37 2 .72V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9.09c-.05-.33-.09-.66-.09-1m7-13-8 5-8-5zm3 12v2h-8v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-minus.svg����������������������������0000664�0000000�0000000�00000000357�14753064456�0026355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0-3.31 2.69-6 6-6 1.1 0 2.12.3 3 .81V6a2 2 0 0 0-2-2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h9.09c-.05-.33-.09-.66-.09-1M4 8V6l8 5 8-5v2l-8 5zm19 10v2h-8v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-multiple-outline.svg�����������������0000664�0000000�0000000�00000000334�14753064456�0030525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 6v14h18v2H2c-1.105 0-2-.89-2-2V6zm22-2c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2zm-2 0-8 5-8-5zm0 12H6V6l8 5 8-5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-multiple.svg�������������������������0000664�0000000�0000000�00000000312�14753064456�0027044�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 6V4l-8 5-8-5v2l8 5zm0-4a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2zM2 6v14h18v2H2a2 2 0 0 1-2-2V6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-newsletter.svg�����������������������0000664�0000000�0000000�00000000443�14753064456�0027412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .64 8.23 3H5v2L2.97 6.29C2.39 6.64 2 7.27 2 8v10a2 2 0 0 0 2 2h16c1.11 0 2-.89 2-2V8c0-.73-.39-1.36-.97-1.71L19 5V3h-3.23M7 5h10v4.88L12 13 7 9.88M8 6v1.5h8V6M5 7.38v1.25L4 8m15-.62L20 8l-1 .63M8 8.5V10h8V8.5Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-off-outline.svg����������������������0000664�0000000�0000000�00000000407�14753064456�0027445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l1.5 1.5c-.3.4-.6.9-.6 1.5v12c0 1.1.9 2 2 2h14.1l2.7 2.7zM4 18V8l5.6 3.5 6.5 6.5zM9.2 6l-2-2H20c1.1 0 2 .9 2 2v12c0 .2 0 .5-.1.7L20 16.8V8l-5.4 3.4-1.2-1.2L20 6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-off.svg������������������������������0000664�0000000�0000000�00000000356�14753064456�0025773�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l1.5 1.5Q2 5.1 2 6v12c0 1.1.9 2 2 2h14.1l2.7 2.7zM4 8V6l.3.2 5.3 5.3zm9.4 2.2L7.2 4H20c1.1 0 2 .9 2 2v12c0 .2 0 .5-.1.7l-7.3-7.3L20 8V6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-open-heart-outline.svg���������������0000664�0000000�0000000�00000000661�14753064456�0030737�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 9c-1.1 0-2 .92-2 2.05 0 .57.22 1.07.59 1.45L12 16l3.42-3.5c.36-.37.58-.89.58-1.45C16 9.92 15.1 9 14 9c-.54 0-1.05.23-1.41.6l-.59.6-.58-.59A2 2 0 0 0 10 9m2-8.36 9.03 5.65c.58.35.97.98.97 1.71v10c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V8c0-.73.39-1.36.97-1.71zM4 10v8h16v-8l-2 1.25v-.2c0-.55-.12-1.1-.33-1.6L20 8l-8-5-8 5 2.33 1.45c-.21.5-.33 1.05-.33 1.6v.2z"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-open-multiple-outline.svg������������0000664�0000000�0000000�00000000406�14753064456�0031464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 8v14h18v2H2c-1.105 0-2-.89-2-2V8zm21.03-1.71L14 .64 4.97 6.29C4.39 6.64 4 7.27 4 8v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-.73-.39-1.36-.97-1.71M22 18H6v-8l8 5 8-5zm-8-5L6 8l8-5 8 5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-open-multiple.svg��������������������0000664�0000000�0000000�00000000342�14753064456�0030006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6 8 8 5 8-5-8-5zm18 0v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V8c0-.73.39-1.36.97-1.71L14 .64l9.03 5.65c.58.35.97.98.97 1.71M2 8v14h18v2H2a2 2 0 0 1-2-2V8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-open-outline.svg���������������������0000664�0000000�0000000�00000000342�14753064456�0027632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.03 6.29 12 .64 2.97 6.29C2.39 6.64 2 7.27 2 8v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-.73-.39-1.36-.97-1.71M20 18H4v-8l8 5 8-5zm-8-5L4 8l8-5 8 5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-open.svg�����������������������������0000664�0000000�0000000�00000000303�14753064456�0026152�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4 8 8 5 8-5-8-5zm18 0v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8c0-.73.39-1.36.97-1.71L12 .64l9.03 5.65c.58.35.97.98.97 1.71"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-outline.svg��������������������������0000664�0000000�0000000�00000000270�14753064456�0026673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2zm-2 0-8 5-8-5zm0 12H4V8l8 5 8-5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-plus-outline.svg���������������������0000664�0000000�0000000�00000000413�14753064456�0027653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0-.34.04-.67.09-1H4V8l8 5 8-5v5.09c.72.12 1.39.37 2 .72V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9.09c-.05-.33-.09-.66-.09-1m7-13-8 5-8-5zm0 9v3h3v2h-3v3h-2v-3h-3v-2h3v-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-plus.svg�����������������������������0000664�0000000�0000000�00000000402�14753064456�0026174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0-3.31 2.69-6 6-6 1.1 0 2.12.3 3 .81V6a2 2 0 0 0-2-2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h9.09c-.05-.33-.09-.66-.09-1M4 8V6l8 5 8-5v2l-8 5zm16 7v3h3v2h-3v3h-2v-3h-3v-2h3v-3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-remove-outline.svg�������������������0000664�0000000�0000000�00000000536�14753064456�0030173�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.09 18H4V8l8 5 8-5v5.09c.72.12 1.39.37 2 .72V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9.09c-.05-.33-.09-.66-.09-1s.04-.67.09-1M20 6l-8 5-8-5zm.41 13 2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.41-1.42L17.59 19l-2.12-2.12 1.41-1.41L19 17.59l2.12-2.12 1.42 1.41z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-remove.svg���������������������������0000664�0000000�0000000�00000000524�14753064456�0026513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.41 19 2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.41-1.42L17.59 19l-2.12-2.12 1.41-1.41L19 17.59l2.12-2.12 1.42 1.41zM13 19c0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h16a2 2 0 0 1 2 2v7.81c-.88-.51-1.9-.81-3-.81-3.31 0-6 2.69-6 6m7-11V6l-8 5-8-5v2l8 5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-seal-outline.svg���������������������0000664�0000000�0000000�00000001467�14753064456�0027626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.5 13.3c-.2-.5-.2-.9-.1-1.3H3V4.5l6 4 6-4v1.7c.6-.3 1.1-.3 1.4-.3.1-.1.3-.2.5-.3v-3c.1-.9-.6-1.6-1.5-1.6H2.6C1.7 1 1 1.7 1 2.6v9.8c0 .9.7 1.6 1.6 1.6h10.3c-.2-.2-.3-.4-.4-.7M15 3 9 7 3 3zm7.6 6.9c-.2-.6-.7-.7-1-1-.2-.3-.2-.9-.7-1.2-.5-.4-1-.2-1.4-.3s-.7-.6-1.3-.6-.9.4-1.3.6c-.4.1-.9-.1-1.4.3-.5.3-.4.8-.7 1.2-.3.3-.8.5-1 1-.2.6.2 1 .2 1.4s-.4.8-.2 1.4.7.7 1 1c.2.3.2.9.7 1.2.5.4 1 .2 1.4.3s.7.6 1.3.6.9-.4 1.3-.6c.4-.1.9.1 1.4-.3s.5-.9.7-1.2c.3-.3.8-.5 1-1 .2-.6-.2-1-.2-1.4s.4-.8.2-1.4m-4.4 4.5c-1.7 0-3-1.4-3-3s1.4-3 3-3 3 1.4 3 3-1.3 3-3 3m1.5-3.1c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5.7-1.5 1.5-1.5 1.5.7 1.5 1.5m-.2 5.8-.5 2.7-.6 3.1-2-1.9-2.4 1.1 1-5.7c.4.2.9.3 1.4.3.3.2.7.4 1 .5.2.1.5.1.8.1.5.1.9 0 1.3-.2m3.2 2.4-2-.7.4-2.2.6-.3.1-.1z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-seal.svg�����������������������������0000664�0000000�0000000�00000001541�14753064456�0026142�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.5 13.3c-.3-.9-.1-1.6 0-2-.1-.4-.3-1-.1-1.9.3-.8.8-1.2 1.1-1.5.1-.4.3-1 1.1-1.6.7-.5 1.4-.5 1.8-.5.1-.1.3-.2.5-.3V2.6c.1-.9-.6-1.6-1.5-1.6H2.6C1.7 1 1 1.7 1 2.6v9.8c0 .9.7 1.6 1.6 1.6h10.3c-.2-.2-.3-.4-.4-.7M3 5V3l6 3 6-3v2L9 8zm19.6 4.9c-.2-.6-.7-.7-1-1-.2-.3-.2-.9-.7-1.2-.5-.4-1-.2-1.4-.3s-.7-.6-1.3-.6-.9.4-1.3.6c-.4.1-.9-.1-1.4.3-.5.3-.4.8-.7 1.2-.3.3-.8.5-1 1-.2.6.2 1 .2 1.4s-.4.8-.2 1.4.7.7 1 1c.2.3.2.9.7 1.2.5.4 1 .2 1.4.3s.7.6 1.3.6.9-.4 1.3-.6c.4-.1.9.1 1.4-.3s.5-.9.7-1.2c.3-.3.8-.5 1-1 .2-.6-.2-1-.2-1.4s.4-.8.2-1.4m-4.4 4.5c-1.7 0-3-1.4-3-3s1.4-3 3-3 3 1.4 3 3-1.3 3-3 3m1.5-3.1c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5.7-1.5 1.5-1.5 1.5.7 1.5 1.5m-.2 5.8-.5 2.7-.6 3.1-2-1.9-2.4 1.1 1-5.7c.4.2.9.3 1.4.3.3.2.7.4 1 .5.2.1.5.1.8.1.5.1.9 0 1.3-.2m3.2 2.4-2-.7.4-2.2.6-.3.1-.1z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-search-outline.svg�������������������0000664�0000000�0000000�00000000673�14753064456�0030145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 11c2.5 0 4.5 2 4.5 4.5 0 .88-.25 1.71-.69 2.4l3.08 3.1L22 22.39l-3.12-3.07c-.69.43-1.51.68-2.38.68-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5m0 2a2.5 2.5 0 0 0 0 5 2.5 2.5 0 0 0 0-5m-6 5H3V8l7.62 4.76A6.49 6.49 0 0 1 16.5 9c.27 0 .54 0 .81.06L19 8v1.5c.75.31 1.42.77 2 1.32V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h8.82c-.55-.58-1-1.25-1.32-2M19 6l-8 5-8-5z"/></svg>���������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-search.svg���������������������������0000664�0000000�0000000�00000000726�14753064456�0026467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4h16a2 2 0 0 1 2 2v4.82c-1-.97-2.3-1.59-3.69-1.76L19 8V6l-8 5-8-5v2l7.62 4.76c-.41.86-.62 1.79-.62 2.74a6.5 6.5 0 0 0 1.81 4.5H3a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2m13.5 7c2.5 0 4.5 2 4.5 4.5 0 .88-.25 1.71-.69 2.4l3.08 3.1L22 22.39l-3.12-3.07c-.69.43-1.51.68-2.38.68-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5m0 2a2.5 2.5 0 0 0-2.5 2.5 2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5"/></svg>������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-sync-outline.svg���������������������0000664�0000000�0000000�00000000720�14753064456�0027645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h10.5a6.5 6.5 0 0 1-.5-2H3V8l8 5 8-5v3a7 7 0 0 1 .5 0 6.5 6.5 0 0 1 1.5.18V6c0-1.1-.9-2-2-2zm0 2h16l-8 5zm16 6-2.25 2.25L19 16.5V15a2.5 2.5 0 0 1 2.5 2.5c0 .4-.09.78-.26 1.12l1.09 1.09c.42-.63.67-1.39.67-2.21 0-2.21-1.79-4-4-4zm-3.33 3.29c-.42.63-.67 1.39-.67 2.21 0 2.21 1.79 4 4 4V23l2.25-2.25L19 18.5V20a2.5 2.5 0 0 1-2.5-2.5c0-.4.09-.78.26-1.12z"/></svg>������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-sync.svg�����������������������������0000664�0000000�0000000�00000000727�14753064456�0026177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h10.5a6.5 6.5 0 0 1-.5-2.5 6.5 6.5 0 0 1 6.5-6.5 6.5 6.5 0 0 1 1.5.18V6a2 2 0 0 0-2-2zm0 2 8 5 8-5v2l-8 5-8-5zm16 6-2.25 2.25L19 16.5V15a2.5 2.5 0 0 1 2.5 2.5c0 .4-.09.78-.26 1.12l1.09 1.09c.42-.63.67-1.39.67-2.21 0-2.21-1.79-4-4-4zm-3.33 3.29c-.42.63-.67 1.39-.67 2.21 0 2.21 1.79 4 4 4V23l2.25-2.25L19 18.5V20a2.5 2.5 0 0 1-2.5-2.5c0-.4.09-.78.26-1.12z"/></svg>�����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email-variant.svg��������������������������0000664�0000000�0000000�00000000306�14753064456�0026660�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 13 2 6.76V6c0-1.11.89-2 2-2h16a2 2 0 0 1 2 2v.75zm10 5a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9.11l2 1.25V18h16v-7.64l2-1.25z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/email.svg����������������������������������0000664�0000000�0000000�00000000257�14753064456�0025223�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20 8-8 5-8-5V6l8 5 8-5m0-2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ember.svg����������������������������������0000664�0000000�0000000�00000000730�14753064456�0025222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 14.22s-4.39 3.13-7.28 3.17c-2.88.05-2.59-1.83-2.59-1.83s10.58-3.62 7.7-10.77c-1.3-1.84-2.83-2.42-4.94-2.37-2.13.04-4.72 1.34-6.43 5.18-.82 1.84-1.05 3.58-1.22 4.9 0 0-1.92.38-2.92-.46s-1.55 0-1.55 0-1.74 2.16-.02 2.83c1.71.67 4.37.95 4.37.95.24 1.18.96 3.18 3.05 4.78 3.13 2.4 9.15-.2 9.15-.2m-7.69-8.07c.13-4.97 3.37-7.15 4.52-6.06 1.12 1.09.71 3.43-1.43 4.89-2.13 1.47-3.09 1.17-3.09 1.17"/></svg>����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emby.svg�����������������������������������0000664�0000000�0000000�00000000224�14753064456�0025062�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 2 6 7l1 1-5 5 5 5 1-1 5 5 5-5-1-1 5-5-5-5-1 1zm-1 6.5 6 3.5-6 3.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-angry-outline.svg�����������������0000664�0000000�0000000�00000000647�14753064456�0030547�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 18a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8m0-6c1.75 0 3.29.72 4.19 1.81l-1.42 1.42C14.32 16.5 13.25 16 12 16s-2.32.5-2.77 1.23l-1.42-1.42C8.71 14.72 10.25 14 12 14m-2-4.5c0 .8-.7 1.5-1.5 1.5S7 10.3 7 9.5V8zm7 0c0 .8-.7 1.5-1.5 1.5S14 10.3 14 9.5L17 8z"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-angry.svg�������������������������0000664�0000000�0000000�00000000546�14753064456�0027070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2M7 9.5V8l3 1.5c0 .8-.7 1.5-1.5 1.5S7 10.3 7 9.5m7.77 7.73C14.32 16.5 13.25 16 12 16s-2.32.5-2.77 1.23l-1.42-1.42C8.71 14.72 10.25 14 12 14s3.29.72 4.19 1.81zM17 9.5c0 .8-.7 1.5-1.5 1.5S14 10.3 14 9.5L17 8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-confused-outline.svg��������������0000664�0000000�0000000�00000000460�14753064456�0031226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 12a8 8 0 1 0-8 8 8 8 0 0 0 8-8m2 0A10 10 0 1 1 12 2a10 10 0 0 1 10 10m-6.5-4A1.5 1.5 0 1 1 14 9.5 1.54 1.54 0 0 1 15.5 8M10 9.5A1.5 1.5 0 1 1 8.5 8 1.54 1.54 0 0 1 10 9.5m7 5.5h-4a4 4 0 0 0-3.47 2L7.8 16a6 6 0 0 1 5.2-3h4Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-confused.svg����������������������0000664�0000000�0000000�00000000415�14753064456�0027551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2M8.5 8A1.5 1.5 0 1 1 7 9.5 1.54 1.54 0 0 1 8.5 8m8.5 8h-4a4 4 0 0 0-3.47 2L7.8 17a6 6 0 0 1 5.2-3h4m-1.5-3A1.5 1.5 0 1 1 17 9.5a1.54 1.54 0 0 1-1.5 1.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-cool-outline.svg������������������0000664�0000000�0000000�00000001000�14753064456�0030343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 10c0 1.38-2.12 2.5-3.5 2.5s-2.75-1.12-2.75-2.5h-1.5c0 1.38-1.37 2.5-2.75 2.5S5 11.38 5 10h-.75c-.16.64-.25 1.31-.25 2a8 8 0 0 0 8 8 8 8 0 0 0 8-8c0-.69-.09-1.36-.25-2zm-7-6C9.04 4 6.45 5.61 5.07 8h13.86C17.55 5.61 14.96 4 12 4m10 8a10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2a10 10 0 0 1 10 10m-10 5.23c-1.75 0-3.29-.73-4.19-1.81L9.23 14c.45.72 1.52 1.23 2.77 1.23s2.32-.51 2.77-1.23l1.42 1.42c-.9 1.08-2.44 1.81-4.19 1.81"/></svg>mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-cool.svg��������������������������0000664�0000000�0000000�00000000705�14753064456�0026701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.22 7.22A9.98 9.98 0 0 1 12 2c3.79 0 7.09 2.11 8.78 5.22L20 8H4zM21.4 8.6c.38 1.07.6 2.21.6 3.4a10 10 0 0 1-10 10A10 10 0 0 1 2 12c0-1.19.22-2.33.6-3.4L4 10h1c0 1.38 2.12 2.5 3.5 2.5s2.75-1.12 2.75-2.5h1.5c0 1.38 1.37 2.5 2.75 2.5S19 11.38 19 10h1zm-5.21 6.82L14.77 14c-.45.72-1.52 1.23-2.77 1.23S9.68 14.72 9.23 14l-1.42 1.42c.9 1.08 2.44 1.81 4.19 1.81s3.29-.73 4.19-1.81"/></svg>�����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-cry-outline.svg�������������������0000664�0000000�0000000�00000001250�14753064456�0030213�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.57 20c-1.34 0-2.43-1.09-2.43-2.43 0-1.07 1.18-3.07 2.43-4.76C8.82 14.5 10 16.5 10 17.57A2.43 2.43 0 0 1 7.57 20M12 2A10 10 0 0 0 2 12c0 1.75.45 3.38 1.24 4.81.16-.81.57-1.74 1.07-2.64A7.7 7.7 0 0 1 4 12a8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8c-.24 0-.47 0-.71-.04-.47.74-1.15 1.32-1.95 1.67.85.24 1.74.37 2.66.37a10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 12c-.41 0-.81.04-1.19.12.35.63.66 1.28.88 1.88H12c1.25 0 2.32.5 2.77 1.23l1.42-1.42C15.29 14.72 13.75 14 12 14m3.5-6c-.8 0-1.5.7-1.5 1.5s.7 1.5 1.5 1.5 1.5-.7 1.5-1.5S16.3 8 15.5 8M10 9.5C10 8.7 9.3 8 8.5 8S7 8.7 7 9.5 7.7 11 8.5 11s1.5-.7 1.5-1.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-cry.svg���������������������������0000664�0000000�0000000�00000001223�14753064456�0026536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.14 17.57c0-1.07 1.18-3.07 2.43-4.76C8.82 14.5 10 16.5 10 17.57A2.43 2.43 0 0 1 7.57 20c-1.34 0-2.43-1.09-2.43-2.43M22 12a10 10 0 0 1-10 10c-.92 0-1.82-.14-2.67-.37A4.42 4.42 0 0 0 12 17.57c0-.45-.11-.97-.31-1.57H12c1.25 0 2.32.5 2.77 1.23l1.42-1.42C15.29 14.72 13.75 14 12 14c-.41 0-.81.04-1.19.12-.43-.76-.96-1.59-1.62-2.49L8.71 11c.71-.13 1.29-.77 1.29-1.5C10 8.7 9.3 8 8.5 8S7 8.7 7 9.5c0 .19.04.37.11.54l-1.15 1.59C4.4 13.75 3.5 15.5 3.23 16.81 2.45 15.38 2 13.74 2 12A10 10 0 0 1 12 2a10 10 0 0 1 10 10m-5-2.5c0-.8-.7-1.5-1.5-1.5S14 8.7 14 9.5s.7 1.5 1.5 1.5 1.5-.7 1.5-1.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-dead-outline.svg������������������0000664�0000000�0000000�00000001000�14753064456�0030304�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10a10 10 0 0 0 10-10c0-5.53-4.5-10-10-10m0 18a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8m4.18-12.24-1.06 1.06-1.06-1.06L13 8.82l1.06 1.06L13 10.94 14.06 12l1.06-1.06L16.18 12l1.06-1.06-1.06-1.06 1.06-1.06zM7.82 12l1.06-1.06L9.94 12 11 10.94 9.94 9.88 11 8.82 9.94 7.76 8.88 8.82 7.82 7.76 6.76 8.82l1.06 1.06-1.06 1.06zM12 14c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5"/></svg>mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-dead.svg��������������������������0000664�0000000�0000000�00000000672�14753064456�0026645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10a10 10 0 0 0 10-10c0-5.53-4.5-10-10-10M6.76 8.82l1.06-1.06 1.06 1.06 1.06-1.06L11 8.82 9.94 9.88 11 10.94 9.94 12l-1.06-1.06L7.82 12l-1.06-1.06 1.06-1.06zm.13 8.68C7.69 15.46 9.67 14 12 14s4.31 1.46 5.11 3.5zm10.35-6.56L16.18 12l-1.06-1.06L14.06 12 13 10.94l1.06-1.06L13 8.82l1.06-1.06 1.06 1.06 1.06-1.06 1.06 1.06-1.06 1.06z"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-devil-outline.svg�����������������0000664�0000000�0000000�00000001137�14753064456�0030525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.5 2.09c.9.91 2.37 1.64 4.19 2.16A9.92 9.92 0 0 1 12 2c2.39 0 4.59.84 6.31 2.25C20.13 3.73 21.6 3 22.5 2.09c-.03 1.63-.85 3.12-2.22 4.31A9.9 9.9 0 0 1 22 12a10 10 0 0 1-10 10A10 10 0 0 1 2 12c0-2.08.63-4 1.72-5.6C2.35 5.21 1.53 3.72 1.5 2.09M20 12a8 8 0 0 0-8-8 8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8m-9.5-2c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5V8.5zm6 0c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5l3-1.5zM12 17.23c-1.75 0-3.29-.73-4.19-1.81L9.23 14c.45.72 1.52 1.23 2.77 1.23s2.32-.51 2.77-1.23l1.42 1.42c-.9 1.08-2.44 1.81-4.19 1.81"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-devil.svg�������������������������0000664�0000000�0000000�00000001050�14753064456�0027042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.5 2.09c-.9.91-2.37 1.64-4.19 2.16A9.92 9.92 0 0 0 12 2c-2.39 0-4.59.84-6.31 2.25C3.87 3.73 2.4 3 1.5 2.09c.03 1.63.85 3.12 2.22 4.31A9.9 9.9 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10c0-2.08-.63-4-1.72-5.6 1.37-1.19 2.19-2.68 2.22-4.31M7.5 8.5l3 1.5c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5zm4.5 8.73c-1.75 0-3.29-.73-4.19-1.81L9.23 14c.45.72 1.52 1.23 2.77 1.23s2.32-.51 2.77-1.23l1.42 1.42c-.9 1.08-2.44 1.81-4.19 1.81M16.5 10c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5l3-1.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-excited-outline.svg���������������0000664�0000000�0000000�00000000606�14753064456�0031047�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10a10 10 0 0 0 10-10c0-5.53-4.5-10-10-10m0 18a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8m1-10.06L14.06 11l1.06-1.06L16.18 11l1.06-1.06-2.12-2.12zm-4.12 0L9.94 11 11 9.94 8.88 7.82 6.76 9.94 7.82 11zM12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5"/></svg>��������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-excited.svg�����������������������0000664�0000000�0000000�00000000516�14753064456�0027372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10a10 10 0 0 0 10-10c0-5.53-4.5-10-10-10M8.88 7.82 11 9.94 9.94 11 8.88 9.94 7.82 11 6.76 9.94zM12 17.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5m4.18-6.5-1.06-1.06L14.06 11 13 9.94l2.12-2.12 2.12 2.12z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-frown-outline.svg�����������������0000664�0000000�0000000�00000000635�14753064456�0030557�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.47 2 2 6.5 2 12s4.47 10 10 10c5.5 0 10-4.5 10-10S17.5 2 12 2m0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8m3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5m-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11m3.5 2.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5"/></svg>���������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-frown.svg�������������������������0000664�0000000�0000000�00000000527�14753064456�0027102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.47 2 2 6.5 2 12s4.47 10 10 10c5.5 0 10-4.5 10-10S17.5 2 12 2m3.5 6c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5m-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8m-1.61 9c.8-2.04 2.78-3.5 5.11-3.5s4.31 1.46 5.11 3.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-happy-outline.svg�����������������0000664�0000000�0000000�00000000733�14753064456�0030544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 12a8 8 0 0 0-8-8 8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8m2 0a10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2a10 10 0 0 1 10 10M10 9.5c0 .8-.7 1.5-1.5 1.5S7 10.3 7 9.5 7.7 8 8.5 8s1.5.7 1.5 1.5m7 0c0 .8-.7 1.5-1.5 1.5S14 10.3 14 9.5 14.7 8 15.5 8s1.5.7 1.5 1.5m-5 7.73c-1.75 0-3.29-.73-4.19-1.81L9.23 14c.45.72 1.52 1.23 2.77 1.23s2.32-.51 2.77-1.23l1.42 1.42c-.9 1.08-2.44 1.81-4.19 1.81"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-happy.svg�������������������������0000664�0000000�0000000�00000000641�14753064456�0027065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2M7 9.5C7 8.7 7.7 8 8.5 8s1.5.7 1.5 1.5S9.3 11 8.5 11 7 10.3 7 9.5m5 7.73c-1.75 0-3.29-.73-4.19-1.81L9.23 14c.45.72 1.52 1.23 2.77 1.23s2.32-.51 2.77-1.23l1.42 1.42c-.9 1.08-2.44 1.81-4.19 1.81M15.5 11c-.8 0-1.5-.7-1.5-1.5S14.7 8 15.5 8s1.5.7 1.5 1.5-.7 1.5-1.5 1.5"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-kiss-outline.svg������������������0000664�0000000�0000000�00000001230�14753064456�0030365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 9.5c0 .8-.7 1.5-1.5 1.5S6 10.3 6 9.5 6.7 8 7.5 8 9 8.7 9 9.5m7 0c0 .8-.7 1.5-1.5 1.5S13 10.3 13 9.5 13.7 8 14.5 8s1.5.7 1.5 1.5m-2 4.62L11.88 12l-1.06 1.06 1.06 1.06-1.06 1.06 1.06 1.06-1.06 1.06 1.06 1.06L14 16.24l-1.06-1.06zM16.85 13a2.05 2.05 0 0 0-2.05 2.05c0 .57.23 1.07.6 1.45l3.5 3.5 3.5-3.5c.37-.37.6-.89.6-1.45A2.05 2.05 0 0 0 20.95 13c-.55 0-1.08.23-1.45.6l-.6.6-.6-.59c-.37-.38-.9-.61-1.45-.61M15 18.92A8 8 0 0 1 11 20a8 8 0 0 1-8-8 8 8 0 0 1 8-8c4.26 0 7.73 3.33 8 7.5.58-.31 1.26-.5 1.95-.5-.5-5.05-4.77-9-9.95-9A10 10 0 0 0 1 12a10 10 0 0 0 10 10c2 0 3.88-.6 5.45-1.62z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-kiss.svg��������������������������0000664�0000000�0000000�00000001256�14753064456�0026720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.9 18.94 15.94 16c-.18-.21-.39-.5-.39-.95a1.3 1.3 0 0 1 1.3-1.3c.34 0 .68.14.92.4l1.14 1.11 1.12-1.13c.24-.24.58-.38.92-.38a1.3 1.3 0 0 1 1.3 1.3c0 .34-.14.68-.38.92zm-1.44.68A9.93 9.93 0 0 1 11 22 10 10 0 0 1 1 12 10 10 0 0 1 11 2a10 10 0 0 1 10 10c0 .09 0 .17-.05.25-.74 0-1.45.3-1.98.82l-.07.07-.06-.05a2.76 2.76 0 0 0-1.99-.84 2.8 2.8 0 0 0-2.8 2.8c0 .73.29 1.45.82 1.98zM13 9.5c0 .8.7 1.5 1.5 1.5s1.5-.7 1.5-1.5S15.3 8 14.5 8 13 8.7 13 9.5m-4 0C9 8.7 8.3 8 7.5 8S6 8.7 6 9.5 6.7 11 7.5 11 9 10.3 9 9.5m3.94 5.68L14 14.12 11.88 12l-1.06 1.06 1.06 1.06-1.06 1.06 1.06 1.06-1.06 1.06 1.06 1.06L14 16.24z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-lol-outline.svg�������������������0000664�0000000�0000000�00000001167�14753064456�0030213�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 11v1.5h1.5V14H9v-3m3.5-5H11v3h3V7.5h-1.5M9.8 17A5.5 5.5 0 0 0 17 9.8M6.34 6.34a8 8 0 0 1 8.74-1.72 4.1 4.1 0 0 1 .65-1.9 10 10 0 0 0-13 13 4.1 4.1 0 0 1 1.9-.65 8 8 0 0 1 1.71-8.73m11.32 11.32a8 8 0 0 1-8.74 1.72 4.1 4.1 0 0 1-.65 1.9 10 10 0 0 0 13-13 4.1 4.1 0 0 1-1.9.65 8 8 0 0 1-1.71 8.73M6 11v1.5h1.5V14H9v-3m.8 6A5.5 5.5 0 0 0 17 9.8M12.5 6H11v3h3V7.5h-1.5M6 11v1.5h1.5V14H9v-3m3.5-5H11v3h3V7.5h-1.5M9.8 17A5.5 5.5 0 0 0 17 9.8M4.93 21a2 2 0 0 1-2-2 2 2 0 0 1 2-2h2v2a2 2 0 0 1-2 2.07M19.07 2.93a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-2v-2a2 2 0 0 1 2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-lol.svg���������������������������0000664�0000000�0000000�00000000706�14753064456�0026534�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.07 8.93v-4a4.06 4.06 0 0 1 .66-2.21 10 10 0 0 0-13 13 4.06 4.06 0 0 1 2.21-.66h4v4a4.06 4.06 0 0 1-.66 2.21 10 10 0 0 0 13-13 4.06 4.06 0 0 1-2.21.66M11 6h1.5v1.5H14V9h-3m-3.5 5v-1.5H6V11h3v3m6.89 1.9A5.5 5.5 0 0 1 9.8 17L17 9.8a5.5 5.5 0 0 1-1.11 6.09m-11 5.19a2 2 0 0 1-2-2 2 2 0 0 1 2-2h2v2a2 2 0 0 1-1.96 1.99M19.07 2.93a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-2v-2a2 2 0 0 1 2-2"/></svg>����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-minus-outline.svg�����������������0000664�0000000�0000000�00000001022�14753064456�0030546�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 18h8v2h-8zm-3-.5c-2.33 0-4.31-1.46-5.11-3.5h8.8a5.94 5.94 0 0 0-2.46 3.36c-.4.09-.81.14-1.23.14M8.5 11C7.67 11 7 10.33 7 9.5S7.67 8 8.5 8s1.5.67 1.5 1.5S9.33 11 8.5 11m7 0c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5M12 20l1.07-.07c.11.68.33 1.33.65 1.92-.56.1-1.14.15-1.72.15-5.53 0-10-4.5-10-10S6.47 2 12 2c5.5 0 10 4.5 10 10 0 .59-.05 1.16-.15 1.72-.59-.32-1.23-.54-1.92-.65L20 12c0-4.42-3.58-8-8-8s-8 3.58-8 8 3.58 8 8 8"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-minus.svg�������������������������0000664�0000000�0000000�00000000721�14753064456�0027076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 18h8v2h-8zM12 2c5.5 0 10 4.5 10 10 0 .59-.05 1.16-.15 1.72C21 13.26 20.03 13 19 13c-1.23 0-2.37.37-3.32 1H6.89c.8 2.04 2.78 3.5 5.11 3.5.42 0 .83-.05 1.23-.14a5.968 5.968 0 0 0 .49 4.49c-.56.1-1.13.15-1.72.15-5.5 0-10-4.5-10-10S6.47 2 12 2m3.5 6c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5S16.33 8 15.5 8m-7 0C7.67 8 7 8.67 7 9.5S7.67 11 8.5 11s1.5-.67 1.5-1.5S9.33 8 8.5 8"/></svg>�����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-neutral-outline.svg���������������0000664�0000000�0000000�00000000631�14753064456�0031072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 18a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8m-3.5-9A1.5 1.5 0 0 1 7 9.5 1.5 1.5 0 0 1 8.5 8 1.5 1.5 0 0 1 10 9.5 1.5 1.5 0 0 1 8.5 11M17 9.5a1.5 1.5 0 0 1-1.5 1.5A1.5 1.5 0 0 1 14 9.5 1.5 1.5 0 0 1 15.5 8 1.5 1.5 0 0 1 17 9.5M16 14v2H8v-2z"/></svg>�������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-neutral.svg�����������������������0000664�0000000�0000000�00000000532�14753064456�0027415�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2M7 9.5A1.5 1.5 0 0 1 8.5 8 1.5 1.5 0 0 1 10 9.5 1.5 1.5 0 0 1 8.5 11 1.5 1.5 0 0 1 7 9.5m9 6.5H8v-2h8zm-.5-5A1.5 1.5 0 0 1 14 9.5 1.5 1.5 0 0 1 15.5 8 1.5 1.5 0 0 1 17 9.5a1.5 1.5 0 0 1-1.5 1.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-outline.svg�����������������������0000664�0000000�0000000�00000000712�14753064456�0027422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 17.5c2.33 0 4.3-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5M8.5 11A1.5 1.5 0 0 0 10 9.5 1.5 1.5 0 0 0 8.5 8 1.5 1.5 0 0 0 7 9.5 1.5 1.5 0 0 0 8.5 11m7 0A1.5 1.5 0 0 0 17 9.5 1.5 1.5 0 0 0 15.5 8 1.5 1.5 0 0 0 14 9.5a1.5 1.5 0 0 0 1.5 1.5M12 20a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8m0-18C6.47 2 2 6.5 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-plus-outline.svg������������������0000664�0000000�0000000�00000001046�14753064456�0030404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 18h3v-3h2v3h3v2h-3v3h-2v-3h-3zm-3-.5c-2.33 0-4.31-1.46-5.11-3.5h8.8a5.94 5.94 0 0 0-2.46 3.36c-.4.09-.81.14-1.23.14M8.5 11C7.67 11 7 10.33 7 9.5S7.67 8 8.5 8s1.5.67 1.5 1.5S9.33 11 8.5 11m7 0c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5M12 20l1.07-.07c.11.68.33 1.33.65 1.92-.56.1-1.14.15-1.72.15-5.53 0-10-4.5-10-10S6.47 2 12 2c5.5 0 10 4.5 10 10 0 .59-.05 1.16-.15 1.72-.59-.32-1.23-.54-1.92-.65L20 12c0-4.42-3.58-8-8-8s-8 3.58-8 8 3.58 8 8 8"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-plus.svg��������������������������0000664�0000000�0000000�00000000745�14753064456�0026734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 18h3v-3h2v3h3v2h-3v3h-2v-3h-3zM12 2c5.5 0 10 4.5 10 10 0 .59-.05 1.16-.15 1.72C21 13.26 20.03 13 19 13c-1.23 0-2.37.37-3.32 1H6.89c.8 2.04 2.78 3.5 5.11 3.5.42 0 .83-.05 1.23-.14a5.968 5.968 0 0 0 .49 4.49c-.56.1-1.13.15-1.72.15-5.5 0-10-4.5-10-10S6.47 2 12 2m3.5 6c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5S16.33 8 15.5 8m-7 0C7.67 8 7 8.67 7 9.5S7.67 11 8.5 11s1.5-.67 1.5-1.5S9.33 8 8.5 8"/></svg>���������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-poop-outline.svg������������������0000664�0000000�0000000�00000003667�14753064456�0030411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.42 13.87c-.22-.46-.58-.93-1.17-1.23-.4-.25-.75-.38-1.01-.44.26-.95-.11-1.7-.62-2.26-.77-.82-1.56-.94-1.56-.94.26-.5.36-1.1.22-1.68-.16-.71-.55-1.16-1.06-1.46-.52-.31-1.16-.46-1.82-.58-.32-.06-1.65-.25-2.2-1.01-.45-.62-.46-1.74-.58-2.07-.05-.13-.12-.2-.26-.2-.21 0-.49.12-.79.32C10 2.7 8.85 3.9 8.4 5.1c-.34.9-.35 1.72-.21 2.33-.56.1-.97.28-1.13.35-.51.22-1.59 1.18-1.69 2.67-.03.44.04.89.13 1.33v.25c-.62.19-.97.4-1 .41-.32.12-.85.49-1 .69-.35.4-.58.87-.71 1.37-.29 1.09-.19 2.33.34 3.33.29.56.69 1.17 1.13 1.6 1.44 1.48 3.92 2.04 5.88 2.36.82.14 1.66.21 2.49.21 1.59 0 3.17-.27 4.63-.87 3.35-1.39 4.24-3.63 4.38-4.24.29-1.39-.07-2.7-.22-3.02m-5.37-2.54a1.008 1.008 0 1 1-.14 2.01 1 1 0 0 1-.95-1.06c.04-.53.46-.93.98-.95zm4.13 5.22c-.01.02-.48 1.95-3.49 3.19-1.22.51-2.59.76-4.06.76-.73 0-1.49-.06-2.25-.19-1.62-.26-3.88-.75-5.07-1.95-.27-.27-.59-.73-.85-1.23-.34-.63-.42-1.48-.22-2.25.08-.3.21-.56.39-.76l.02-.03c.09-.09.3-.21.38-.25l.11-.04.12-.06c.06-.04.2-.11.41-.19.46 1.26 1.61 2.15 2.92 2.15.08 0 .15-.01.23-.01a2.97 2.97 0 0 0 2.12-1.14c.53-.66.79-1.51.72-2.38-.12-1.67-1.44-3.01-3.02-3.06h-.02c-.12 0-.22 0-.31.01-.31.03-.58.11-.85.22.09-.1.17-.17.2-.19.13-.05.41-.15.79-.24L10 8.63l-.35-1.54c-.04-.19-.12-.74.16-1.46.15-.43.46-.87.77-1.25.1.27.23.53.42.77.77 1.08 2.12 1.43 3.06 1.59l.07.02c.47.08 1 .19 1.33.39.21.13.3.26.36.52.05.2.02.43-.09.64l-.52.89c-1.26.3-2.26 1.44-2.42 2.86-.2 1.81.99 3.4 2.71 3.62.12.01.24.02.35.02.71 0 1.4-.26 1.97-.75.41-.36.72-.82.92-1.33l.16.04c.1.02.27.08.55.25l.05.04.07.05c.21.08.37.26.48.5.08.17.33 1.1.13 2.05m-12.54-4.1c-.07-.55.33-1.06.89-1.13.04-.01.07-.01.11-.01.51-.01.97.36 1.03.88.06.55-.34 1.06-.9 1.13a1 1 0 0 1-1.13-.87m1.07 3.7c.29-.01.55.08.79.13 1.18.22 2.2.25 2.69.25s1.5-.03 2.67-.25c.41-.08.88-.25 1.25 0 .48.32.13 1.47-.61 2.25a4.53 4.53 0 0 1-3.31 1.38c-1.78 0-2.86-.91-3.31-1.38-.74-.78-1.09-1.93-.62-2.25.14-.09.29-.13.45-.13"/></svg>�������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-poop.svg��������������������������0000664�0000000�0000000�00000002547�14753064456�0026730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.36 2c-.21 0-.49.12-.79.32C10 2.7 8.85 3.9 8.4 5.1c-.34.9-.35 1.72-.21 2.33-.56.1-.97.28-1.13.35-.51.22-1.59 1.18-1.69 2.67-.03.52.04 1.05.2 1.55-.66.19-1.04.43-1.07.44-.32.12-.85.49-1 .69-.35.4-.58.87-.71 1.37-.29 1.09-.19 2.33.34 3.33.29.56.69 1.17 1.13 1.6 1.44 1.48 3.92 2.04 5.88 2.36 2.39.4 4.89.26 7.12-.66 3.35-1.39 4.24-3.63 4.38-4.24.29-1.39-.07-2.7-.22-3.02-.22-.46-.58-.93-1.17-1.23-.4-.25-.75-.38-1.01-.44.26-.95-.11-1.7-.62-2.26-.77-.82-1.56-.94-1.56-.94.26-.5.36-1.1.22-1.68-.16-.71-.55-1.16-1.06-1.46-.52-.31-1.16-.46-1.82-.58-.32-.06-1.65-.25-2.2-1.01-.45-.62-.46-1.74-.58-2.07-.05-.13-.12-.2-.26-.2M16 9.61c.07 0 .13.01.19.01 1.43.16 2.45 1.54 2.28 3.07s-1.47 2.65-2.9 2.49c-1.43-.18-2.45-1.53-2.28-3.07.16-1.45 1.35-2.55 2.71-2.5m-7.38 0c1.33.04 2.44 1.17 2.54 2.6.12 1.54-.95 2.87-2.38 2.98h-.01c-1.43.11-2.69-1.05-2.81-2.59-.11-1.54.96-2.87 2.39-2.98.09-.01.18-.01.27-.01m.02 1.7c-.04 0-.07 0-.11.01-.56.07-.96.58-.89 1.13a1 1 0 0 0 1.13.87c.56-.07.96-.58.9-1.13a1.01 1.01 0 0 0-1.03-.88m7.3.02c-.52.02-.94.42-.98.95a1 1 0 0 0 .95 1.06 1.008 1.008 0 1 0 .14-2.01zm-7.23 4.82c.29-.01.55.08.79.13 1.18.22 2.2.25 2.69.25s1.5-.03 2.67-.25c.41-.08.88-.25 1.25 0 .48.32.13 1.47-.61 2.25a4.53 4.53 0 0 1-3.31 1.38c-1.78 0-2.86-.91-3.31-1.38-.74-.78-1.09-1.93-.62-2.25.14-.09.29-.13.45-.13"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-remove-outline.svg����������������0000664�0000000�0000000�00000001177�14753064456�0030723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.88 15.46 19 17.59l2.12-2.12 1.42 1.41L20.41 19l2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.42-1.42L17.59 19l-2.12-2.12zM12 17.5c-2.33 0-4.31-1.46-5.11-3.5h8.8a5.94 5.94 0 0 0-2.46 3.36c-.4.09-.81.14-1.23.14M8.5 11C7.67 11 7 10.33 7 9.5S7.67 8 8.5 8s1.5.67 1.5 1.5S9.33 11 8.5 11m7 0c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5M12 20l1.07-.07c.11.68.33 1.33.65 1.92-.56.1-1.14.15-1.72.15-5.53 0-10-4.5-10-10S6.47 2 12 2c5.5 0 10 4.5 10 10 0 .59-.05 1.16-.15 1.72-.59-.32-1.23-.54-1.92-.65L20 12c0-4.42-3.58-8-8-8s-8 3.58-8 8 3.58 8 8 8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-remove.svg������������������������0000664�0000000�0000000�00000001074�14753064456�0027242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.88 15.46 19 17.59l2.12-2.12 1.42 1.41L20.41 19l2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.42-1.42L17.59 19l-2.12-2.12zM12 2c5.5 0 10 4.5 10 10 0 .59-.05 1.16-.15 1.72C21 13.26 20.03 13 19 13c-1.23 0-2.37.37-3.32 1H6.89c.8 2.04 2.78 3.5 5.11 3.5.42 0 .83-.05 1.23-.14a5.968 5.968 0 0 0 .49 4.49c-.56.1-1.13.15-1.72.15-5.5 0-10-4.5-10-10S6.47 2 12 2m3.5 6c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5S16.33 8 15.5 8m-7 0C7.67 8 7 8.67 7 9.5S7.67 11 8.5 11s1.5-.67 1.5-1.5S9.33 8 8.5 8"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-sad-outline.svg�������������������0000664�0000000�0000000�00000000732�14753064456�0030171�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 12a8 8 0 0 0-8-8 8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8m2 0a10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2a10 10 0 0 1 10 10m-6.5-4c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5-1.5-.7-1.5-1.5.7-1.5 1.5-1.5M10 9.5c0 .8-.7 1.5-1.5 1.5S7 10.3 7 9.5 7.7 8 8.5 8s1.5.7 1.5 1.5m2 4.5c1.75 0 3.29.72 4.19 1.81l-1.42 1.42C14.32 16.5 13.25 16 12 16s-2.32.5-2.77 1.23l-1.42-1.42C8.71 14.72 10.25 14 12 14"/></svg>��������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-sad.svg���������������������������0000664�0000000�0000000�00000000620�14753064456�0026510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2M7 9.5C7 8.7 7.7 8 8.5 8s1.5.7 1.5 1.5S9.3 11 8.5 11 7 10.3 7 9.5m7.77 7.73C14.32 16.5 13.25 16 12 16s-2.32.5-2.77 1.23l-1.42-1.42C8.71 14.72 10.25 14 12 14s3.29.72 4.19 1.81zM15.5 11c-.8 0-1.5-.7-1.5-1.5S14.7 8 15.5 8s1.5.7 1.5 1.5-.7 1.5-1.5 1.5"/></svg>����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-sick-outline.svg������������������0000664�0000000�0000000�00000001527�14753064456�0030356�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.32 10.56 8.38 9.5 7.32 8.44l1.06-1.06L10.5 9.5l-2.12 2.12zM4.5 9h.08C5.77 6.07 8.64 4 12 4c2.19 0 4.16.88 5.61 2.3.15-.6.45-1.3.81-1.96A9.96 9.96 0 0 0 12 2c-4.89 0-8.95 3.5-9.82 8.14C2.74 9.44 3.59 9 4.5 9M21 10.5c-.42 0-.82-.09-1.19-.22.12.55.19 1.13.19 1.72 0 4.42-3.58 8-8 8-3.36 0-6.23-2.07-7.42-5H4.5c-.5 0-1.04-.14-1.5-.4-.32-.18-.59-.42-.82-.7C3.07 18.5 7.11 22 12 22c5.5 0 10-4.5 10-10 0-.55-.06-1.09-.14-1.62a3.5 3.5 0 0 1-.86.12M21 3s-2 2.9-2 4 .9 2 2 2 2-.9 2-2-2-4-2-4m-5.38 4.38L13.5 9.5l2.12 2.12 1.06-1.06-1.06-1.06 1.06-1.06zM8.56 17c.69-1.19 1.97-2 3.44-2s2.75.81 3.44 2h1.68c-.8-2.05-2.79-3.5-5.12-3.5-.87 0-1.7.2-2.43.57L6 12c0-.5-.27-1-.75-1.29-.72-.41-1.63-.17-2.05.55-.41.74-.17 1.63.55 2.05.48.28 1.05.25 1.49 0l2.97 1.72c-.57.53-1.03 1.21-1.33 1.97z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-sick.svg��������������������������0000664�0000000�0000000�00000001170�14753064456�0026673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 9c-1.1 0-2-.9-2-2s2-4 2-4 2 2.9 2 4-.9 2-2 2m-3.5-2c0-.73.41-1.71.92-2.66A9.96 9.96 0 0 0 12 2C6.47 2 2 6.5 2 12s4.47 10 10 10c5.5 0 10-4.5 10-10 0-.55-.06-1.09-.14-1.62a3.5 3.5 0 0 1-.86.12c-1.93 0-3.5-1.57-3.5-3.5m-1.88.38 1.06 1.06-1.06 1.06 1.06 1.06-1.06 1.06L13.5 9.5zm-8.3 1.06 1.06-1.06L10.5 9.5l-2.12 2.12-1.06-1.06L8.38 9.5zM15.44 17c-.69-1.19-1.97-2-3.44-2s-2.75.81-3.44 2H6.88c.3-.76.76-1.43 1.34-2l-2.98-1.7c-.45.26-1.01.28-1.49 0a1.501 1.501 0 0 1 1.5-2.6c.48.3.75.8.75 1.3l3.57 2.06c.73-.36 1.55-.56 2.43-.56 2.33 0 4.32 1.45 5.12 3.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-tongue-outline.svg����������������0000664�0000000�0000000�00000000714�14753064456�0030723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 18a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8M9 10c-.74 0-1.39.4-1.73 1-.17-.29-.27-.64-.27-1a2 2 0 0 1 2-2 2 2 0 0 1 1.73 3c-.34-.6-.99-1-1.73-1m8 0c0 .36-.1.71-.27 1-.34-.6-.99-1-1.73-1s-1.39.4-1.73 1c-.17-.29-.27-.64-.27-1a2 2 0 0 1 2-2 2 2 0 0 1 2 2m-1 3v2h-1c0 2-.9 3-2 3s-2-1-2-3H8v-2z"/></svg>����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-tongue.svg������������������������0000664�0000000�0000000�00000000643�14753064456�0027247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m-4.73 9c-.17-.29-.27-.64-.27-1 0-1.11.89-2 2-2a2 2 0 0 1 2 2c0 .36-.1.71-.27 1-.34-.6-.99-1-1.73-1s-1.39.4-1.73 1M16 15h-1c0 2-.9 3-2 3s-2-1-2-3H8v-2h8zm.73-4c-.34-.6-.99-1-1.73-1s-1.39.4-1.73 1c-.17-.29-.27-.64-.27-1 0-1.11.89-2 2-2a2 2 0 0 1 2 2c0 .36-.1.71-.27 1"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-wink-outline.svg������������������0000664�0000000�0000000�00000000645�14753064456�0030375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 18a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8M10 9.5c0 .8-.7 1.5-1.5 1.5S7 10.3 7 9.5 7.7 8 8.5 8s1.5.7 1.5 1.5m2 7.73c-1.75 0-3.29-.73-4.19-1.81L9.23 14c.45.72 1.52 1.23 2.77 1.23s2.32-.51 2.77-1.23l1.42 1.42c-.9 1.08-2.44 1.81-4.19 1.81M17 10h-4V9h4z"/></svg>�������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon-wink.svg��������������������������0000664�0000000�0000000�00000000547�14753064456�0026721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2M7 9.5C7 8.7 7.7 8 8.5 8s1.5.7 1.5 1.5S9.3 11 8.5 11 7 10.3 7 9.5m5 7.73c-1.75 0-3.29-.73-4.19-1.81L9.23 14c.45.72 1.52 1.23 2.77 1.23s2.32-.51 2.77-1.23l1.42 1.42c-.9 1.08-2.44 1.81-4.19 1.81M17 10h-4V9h4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/emoticon.svg�������������������������������0000664�0000000�0000000�00000000621�14753064456�0025744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.47 2 2 6.5 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m3.5 6A1.5 1.5 0 0 1 17 9.5a1.5 1.5 0 0 1-1.5 1.5A1.5 1.5 0 0 1 14 9.5 1.5 1.5 0 0 1 15.5 8m-7 0A1.5 1.5 0 0 1 10 9.5 1.5 1.5 0 0 1 8.5 11 1.5 1.5 0 0 1 7 9.5 1.5 1.5 0 0 1 8.5 8m3.5 9.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.81 2.04-2.78 3.5-5.11 3.5"/></svg>���������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/engine-off-outline.svg���������������������0000664�0000000�0000000�00000000400�14753064456�0027614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.5 3.77 4.37 4.37L5 10v3H3v-3H1v8h2v-3h2v3h3l2 2h8v-.73l3.23 3.23 1.27-1.28L3.78 2.5zM16 18h-5l-2-2H7v-5l1-1h.73L16 17.27zm7-9v10h-.18L16 12.18V10h-2.18l-6-6H15v2h-3v2h6v4h2V9z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/engine-off.svg�����������������������������0000664�0000000�0000000�00000000322�14753064456�0026142�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.78 2.5 21.5 20.22l-1.27 1.28L18 19.27V20h-8l-2-2H5v-3H3v3H1v-8h2v3h2v-3l1.87-1.86L2.5 3.77zM20 9v3h-2V8h-6V6h3V4H7.82l15 15H23V9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/engine-outline.svg�������������������������0000664�0000000�0000000�00000000260�14753064456�0027050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 10h8v8h-5l-2-2H7v-5m0-7v2h3v2H7l-2 2v3H3v-3H1v8h2v-3h2v3h3l2 2h8v-4h2v3h3V9h-3v3h-2V8h-6V6h3V4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/engine.svg���������������������������������0000664�0000000�0000000�00000000232�14753064456�0025372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 4v2h3v2H7l-2 2v3H3v-3H1v8h2v-3h2v3h3l2 2h8v-4h2v3h3V9h-3v3h-2V8h-6V6h3V4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/epsilon.svg��������������������������������0000664�0000000�0000000�00000000600�14753064456�0025575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.05 7.78 1.1-1.6S14.91 5 12.77 5c-2.73 0-4.42 1.84-4.42 3.76s1.73 2.93 1.73 2.93S8 12.38 8 15c0 2.63 2.14 4 4.44 4 2.94 0 4.56-1.96 4.56-1.96l-1.4-1.54s-1.46 1.37-3.01 1.37c-1.93 0-2.38-1.18-2.38-1.95 0-1.05.33-2.27 3.62-2.27l-.01-1.88s-3.38.34-3.38-1.99c0-1.57 1.46-1.86 2.2-1.86 1.64 0 2.41.86 2.41.86"/></svg>��������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/equal-box.svg������������������������������0000664�0000000�0000000�00000000257�14753064456�0026031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 16v-2H7v2zm2-13a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2zm-2 7V8H7v2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/equal.svg����������������������������������0000664�0000000�0000000�00000000151�14753064456�0025234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 10H5V8h14zm0 6H5v-2h14z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/equalizer-outline.svg����������������������0000664�0000000�0000000�00000000235�14753064456�0027606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 21H9V3h6zm-4-2h2V5h-2zm-3 2H2V11h6zm-4-2h2v-6H4zm18 2h-6V8h6zm-4-2h2v-9h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/equalizer.svg������������������������������0000664�0000000�0000000�00000000166�14753064456�0026134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 20h4V4h-4zm-6 0h4v-8H4zM16 9v11h4V9z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eraser-variant.svg�������������������������0000664�0000000�0000000�00000000362�14753064456�0027054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.14 3c-.51 0-1.02.2-1.41.59L2.59 14.73c-.78.77-.78 2.04 0 2.83L5.03 20h7.66l8.72-8.73c.79-.77.79-2.04 0-2.83l-4.85-4.85c-.39-.39-.91-.59-1.42-.59M17 18l-2 2h7v-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eraser.svg���������������������������������0000664�0000000�0000000�00000000434�14753064456�0025412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.24 3.56 4.95 4.94c.78.79.78 2.05 0 2.84L12 20.53a4.01 4.01 0 0 1-5.66 0L2.81 17c-.78-.79-.78-2.05 0-2.84l10.6-10.6c.79-.78 2.05-.78 2.83 0M4.22 15.58l3.54 3.53c.78.79 2.04.79 2.83 0l3.53-3.53-4.95-4.95z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/escalator-box.svg��������������������������0000664�0000000�0000000�00000000353�14753064456�0026674�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm9.34 3h2.71a2 2 0 0 1 2 2c0 1.11-.89 2-2 2H16l-6 8H7.05a2 2 0 1 1 0-4h1.29z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/escalator-down.svg�������������������������0000664�0000000�0000000�00000000511�14753064456�0027047�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 8h-1.05l-12 12H4a2 2 0 1 1 0-4h1.29L7 14.29V10c0-.55.45-1 1-1h1c.55 0 1 .45 1 1v1.29L17.29 4H20c1.11 0 2 .89 2 2s-.89 2-2 2M8.5 5c.83 0 1.5.67 1.5 1.5S9.33 8 8.5 8 7 7.33 7 6.5 7.67 5 8.5 5m6.33 12.34 5.51-5.51 1.83 1.83-5.51 5.51L18.5 21H13v-5.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/escalator-up.svg���������������������������0000664�0000000�0000000�00000000511�14753064456�0026524�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 8h-1.05l-12 12H4a2 2 0 1 1 0-4h1.29L7 14.29V10c0-.55.45-1 1-1h1c.55 0 1 .45 1 1v1.29L17.29 4H20c1.11 0 2 .89 2 2s-.89 2-2 2M8.5 5c.83 0 1.5.67 1.5 1.5S9.33 8 8.5 8 7 7.33 7 6.5 7.67 5 8.5 5m11.67 10.66-5.51 5.51-1.83-1.83 5.51-5.51L16.5 12H22v5.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/escalator.svg������������������������������0000664�0000000�0000000�00000000457�14753064456�0026113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 8h-1.05l-12 12H4a2 2 0 0 1-2-2 2 2 0 0 1 2-2h1.29L7 14.29V10a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1.29L17.29 4H20a2 2 0 0 1 2 2 2 2 0 0 1-2 2M8.5 5A1.5 1.5 0 0 1 10 6.5 1.5 1.5 0 0 1 8.5 8 1.5 1.5 0 0 1 7 6.5 1.5 1.5 0 0 1 8.5 5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eslint.svg���������������������������������0000664�0000000�0000000�00000001140�14753064456�0025422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.95 9.55 3.89-2.25c.1-.05.22-.05.32 0l3.89 2.25c.1.06.16.16.16.27v4.5c0 .11-.06.21-.16.27l-3.89 2.25a.36.36 0 0 1-.32 0l-3.89-2.25a.32.32 0 0 1-.16-.27v-4.5c0-.11.06-.21.16-.27m14.17 2.05c.17.29.17.63 0 .93l-4.65 8.03c-.17.3-.47.44-.82.44h-9.3c-.35 0-.65-.15-.82-.44l-4.65-8.03a.95.95 0 0 1 0-.95L6.53 3.5c.17-.28.47-.5.82-.5h9.3c.35 0 .65.22.82.5zm-3.85 3.9V8.65c0-.12-.07-.23-.18-.29l-5.93-3.41a.33.33 0 0 0-.33 0L5.91 8.36c-.11.06-.18.17-.18.29v6.85c0 .11.07.22.18.28l5.93 3.41c.1.06.23.06.33 0l5.92-3.41a.33.33 0 0 0 .18-.28"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/et.svg�������������������������������������0000664�0000000�0000000�00000001014�14753064456�0024534�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23 8.78-1.29-1.56c-.26.2-1.18.78-1.94.78-.51 0-1.47-.25-2.32-.47C16.39 7.26 15.39 7 14.6 7c-.6 0-1.17.15-1.67.35A3.97 3.97 0 0 0 9 4c-4.42 0-7 3.58-7 8s3.58 7 8 7c2.06 0 3.93-.57 5.34-1.61l-.34 3.9 2 .18 1-11.73c.66.15 1.27.26 1.77.26 1.61 0 3.07-1.09 3.23-1.22M9 6a2 2 0 0 1 2 2 2 2 0 0 1-2 2H4.23C4.8 7.67 6.39 6 9 6m1 11c-3.31 0-6-1.69-6-5h5c1.6 0 2.83-.83 3.5-2.09.26-.2 1.35-.91 2.1-.91.34 0 .9.11 1.45.25l-.4 4.64C14.82 15.95 12.6 17 10 17"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ethereum.svg�������������������������������0000664�0000000�0000000�00000000230�14753064456�0025741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 1.75-6.25 10.5L12 16l6.25-3.75zM5.75 13.5 12 22.25l6.25-8.75L12 17.25z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ethernet-cable-off.svg���������������������0000664�0000000�0000000�00000000255�14753064456�0027564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 3h2v4h-2zM8 4h2v4h4V4h2v7h-3.18L8 6.18zm12 16.72L18.73 22 14 17.27V22h-4v-8.73l-8-8L3.28 4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ethernet-cable.svg�������������������������0000664�0000000�0000000�00000000174�14753064456�0027014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 3v4h2V3zM8 4v7h8V4h-2v4h-4V4zm2 8v10h4V12z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ethernet-off.svg���������������������������0000664�0000000�0000000�00000000462�14753064456�0026520�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.39 1.73 1.11 3l1.21 1.21c-.2.35-.32.74-.32 1.17v14.25A2.37 2.37 0 0 0 4.38 22h15.25c.15 0 .29 0 .44-.04l.77.77 1.27-1.27zM15 18h-2v-3h-2v3H9v-3H7v3H5V9h2.11L15 16.89zM9.2 6l-3-3h13.43A2.37 2.37 0 0 1 22 5.38V18.8l-3-3V9h-4V6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ethernet.svg�������������������������������0000664�0000000�0000000�00000000370�14753064456�0025746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 15h2v3h2v-3h2v3h2v-3h2v3h2V9h-4V6H9v3H5v9h2zM4.38 3h15.25A2.37 2.37 0 0 1 22 5.38v14.25A2.37 2.37 0 0 1 19.63 22H4.38A2.37 2.37 0 0 1 2 19.63V5.38C2 4.06 3.06 3 4.38 3"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ev-plug-ccs1.svg���������������������������0000664�0000000�0000000�00000001505�14753064456�0026337�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 20c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5.7-1.5 1.5-1.5 1.5.7 1.5 1.5M18 18.5c-.8 0-1.5.7-1.5 1.5s.7 1.5 1.5 1.5 1.5-.7 1.5-1.5-.7-1.5-1.5-1.5m4 1.5c0 2.2-1.8 4-4 4H6c-2.2 0-4-1.8-4-4s1.8-4 4-4h.3C4.3 14.4 3 11.8 3 9c0-5 4-9 9-9s9 4 9 9c0 2.8-1.3 5.4-3.3 7h.3c2.2 0 4 1.8 4 4m-10-4c3.9 0 7-3.1 7-7s-3.1-7-7-7-7 3.1-7 7 3.1 7 7 7m8 4c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2s.9 2 2 2h12c1.1 0 2-.9 2-2M12.9 6.3c0-1 .8-1.8 1.8-1.8s1.8.8 1.8 1.8-.8 1.8-1.8 1.8-1.8-.8-1.8-1.8m-5.4 0c0-1 .8-1.8 1.8-1.8s1.8.8 1.8 1.8-.8 1.8-1.8 1.8-1.8-.8-1.8-1.8m1.8 3.9c0 .6-.5 1.1-1.1 1.1s-1.1-.5-1.1-1.1.4-1.2 1-1.2c.7 0 1.2.6 1.2 1.2m4.5 2.5c0 1-.8 1.8-1.8 1.8s-1.8-.8-1.8-1.8.8-1.8 1.8-1.8 1.8.8 1.8 1.8m3.2-2.5c0 .6-.5 1.1-1.1 1.1s-1.1-.5-1.1-1.1.4-1.2 1.1-1.2c.6 0 1.1.6 1.1 1.2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ev-plug-ccs2.svg���������������������������0000664�0000000�0000000�00000002004�14753064456�0026333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 19c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5.7-1.5 1.5-1.5 1.5.7 1.5 1.5M18 17.5c-.8 0-1.5.7-1.5 1.5s.7 1.5 1.5 1.5 1.5-.7 1.5-1.5-.7-1.5-1.5-1.5m0-2.5h-.3c2-1.6 3.3-4.2 3.3-7s-1.3-5.4-3.3-7H6.3C4.3 2.6 3 5.2 3 8s1.3 5.4 3.3 7H6c-2.2 0-4 1.8-4 4s1.8 4 4 4h12c2.2 0 4-1.8 4-4s-1.8-4-4-4M5 8c0-1.9.8-3.7 2.1-5h9.8C18.2 4.3 19 6.1 19 8c0 3.9-3.1 7-7 7s-7-3.1-7-7m13 13H6c-1.1 0-2-.9-2-2s.9-2 2-2h12c1.1 0 2 .9 2 2s-.9 2-2 2M12.9 5.3c0 .7.6 1.3 1.3 1.3s1.3-.6 1.3-1.3S14.9 4 14.1 4c-.7 0-1.2.6-1.2 1.3m-4.3 0c0 .7.6 1.3 1.3 1.3s1.3-.6 1.3-1.3S10.6 4 9.9 4c-.8 0-1.3.6-1.3 1.3M7.7 10c1 0 1.7-.8 1.7-1.7s-.8-1.7-1.7-1.7S6 7.3 6 8.3c0 .9.8 1.7 1.7 1.7m3.9 1.7c0-.9-.8-1.7-1.7-1.7-1 0-1.7.8-1.7 1.7 0 1 .8 1.7 1.7 1.7s1.7-.7 1.7-1.7M12 10c1 0 1.7-.8 1.7-1.7s-.8-1.7-1.7-1.7-1.7.8-1.7 1.7.8 1.7 1.7 1.7m3.9 1.7c0-.9-.8-1.7-1.7-1.7-1 0-1.7.8-1.7 1.7 0 1 .8 1.7 1.7 1.7s1.7-.7 1.7-1.7M18 8.3c0-.9-.8-1.7-1.7-1.7-1 0-1.7.8-1.7 1.7 0 1 .8 1.7 1.7 1.7S18 9.2 18 8.3"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ev-plug-chademo.svg������������������������0000664�0000000�0000000�00000001507�14753064456�0027110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 9.5C6.1 9.5 5 10.6 5 12s1.1 2.5 2.5 2.5S10 13.4 10 12 8.9 9.5 7.5 9.5m9 0c-1.4 0-2.5 1.1-2.5 2.5s1.1 2.5 2.5 2.5S19 13.4 19 12s-1.1-2.5-2.5-2.5M12 4c4.4 0 8 3.6 8 8s-3.6 8-8 8-8-3.6-8-8 3.6-8 8-8m0-2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m0 3c-1.4 0-2.5 1.1-2.5 2.5S10.6 10 12 10s2.5-1.1 2.5-2.5S13.4 5 12 5m1.5 2.5c0 .2-.1.4-.2.6l-.6-.6.6-.6c.1.2.2.4.2.6m-.9-1.3-.6.6-.6-.6c.2-.1.4-.2.6-.2s.4.1.6.2m-1.9 1.9c-.1-.2-.2-.4-.2-.6s.1-.4.2-.6l.6.6zm.7.7.6-.6.6.6c-.2.1-.4.2-.6.2s-.4-.1-.6-.2M12 14c-1.4 0-2.5 1.1-2.5 2.5S10.6 19 12 19s2.5-1.1 2.5-2.5S13.4 14 12 14m1.5 2.5c0 .2-.1.4-.2.6l-.6-.6.6-.6c.1.2.2.4.2.6m-.9-1.3-.6.6-.6-.6c.2-.1.4-.2.6-.2s.4.1.6.2m-1.9 1.9c-.1-.2-.2-.4-.2-.6s.1-.4.2-.6l.6.6zm.7.7.6-.6.6.6c-.2.1-.4.2-.6.2s-.4-.1-.6-.2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ev-plug-tesla.svg��������������������������0000664�0000000�0000000�00000001416�14753064456�0026617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 9c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1m11 1c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1m5-.07V11a9 9 0 0 1-9 9h-2c-4.97 0-9-4-9-9V9.93C2 6.65 4.65 4 7.93 4h8.14C19.35 4 22 6.65 22 9.93M14.5 9a2.5 2.5 0 0 0 5 0 2.5 2.5 0 0 0-5 0m-10 0a2.5 2.5 0 0 0 5 0 2.5 2.5 0 0 0-5 0M9 17c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1m4.5 0c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5.67 1.5 1.5 1.5 1.5-.67 1.5-1.5m3.5 0c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1m2.97-5.34C19.23 12.5 18.18 13 17 13c-2.21 0-4-1.79-4-4 0-1.2.54-2.27 1.38-3H9.62c.84.73 1.38 1.8 1.38 3 0 2.21-1.79 4-4 4a3.9 3.9 0 0 1-2.97-1.34c.16 1.66.9 3.16 2.01 4.28C7.71 14.73 9.76 14 12 14s4.29.73 5.96 1.94a7.04 7.04 0 0 0 2.01-4.28"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ev-plug-type1.svg��������������������������0000664�0000000�0000000�00000000741�14753064456�0026551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9c0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2-2 .9-2 2M7 9c0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2-2 .9-2 2m2 4.2c0-.6-.6-1.2-1.2-1.2s-1.2.6-1.2 1.2.6 1.2 1.2 1.2S9 13.9 9 13.2m5 2.8c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2M12 4c4.4 0 8 3.6 8 8s-3.6 8-8 8-8-3.6-8-8 3.6-8 8-8m0-2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m5.5 11.2c0-.7-.6-1.2-1.2-1.2-.7 0-1.2.6-1.2 1.2s.6 1.2 1.2 1.2c.6.1 1.2-.5 1.2-1.2"/></svg>�������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ev-plug-type2.svg��������������������������0000664�0000000�0000000�00000001145�14753064456�0026551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.3 5C19 6.5 20 8.6 20 11c0 4.4-3.6 8-8 8s-8-3.6-8-8c0-2.4 1.1-4.5 2.7-6zm.7-2H6l-.6.5C3.2 5.4 2 8.1 2 11c0 5.5 4.5 10 10 10s10-4.5 10-10c0-2.9-1.2-5.6-3.4-7.5zm-5 4.5c0 .8.7 1.5 1.5 1.5S16 8.3 16 7.5 15.3 6 14.5 6 13 6.7 13 7.5m-5 0C8 8.3 8.7 9 9.5 9S11 8.3 11 7.5 10.3 6 9.5 6 8 6.7 8 7.5M7 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2m4.5 2c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2m.5-2c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2m4.5 2c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2m2.5-4c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ev-station.svg�����������������������������0000664�0000000�0000000�00000000700�14753064456�0026216�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.77 7.23.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33a2.5 2.5 0 0 0 2.5 2.5c.36 0 .69-.08 1-.21v7.21a1 1 0 0 1-1 1 1 1 0 0 1-1-1V14a2 2 0 0 0-2-2h-1V5a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v16h10v-7.5h1.5v5A2.5 2.5 0 0 0 18 21a2.5 2.5 0 0 0 2.5-2.5V9c0-.69-.28-1.32-.73-1.77M18 10a1 1 0 0 1-1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1 1 1 0 0 1-1 1M8 18v-4.5H6L10 6v5h2z"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/evernote.svg�������������������������������0000664�0000000�0000000�00000001115�14753064456�0025755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.09 11.63s.19-1.28.91-1.28c.76 0 1.78 1.71 1.78 1.71s-2.32-.43-2.69-.43M19 4.69c-.36-.6-2.17-1.28-3.11-1.28H13.5S12.7 2 10.88 2c-1.83 0-1.71.81-1.71 1.5v2.82l-.83.87H4.5s-1.06.72-1.06 2.25c0 1.56.48 6.91 3.69 7.41 3.8.58 4.45-1.18 4.45-1.39 0-.9.02-2.25.02-2.25s1.11 2.12 2.79 2.12 2.65.97 2.65 1.96v1.84S17 20.28 16 20.28h-2.11s-.69-.54-.69-1.28c0-.75.33-.95.73-.95.39 0 .72.04.72.04v-1.56s-3.18-.03-3.18 2.41c0 2.43 1.66 3.06 2.99 3.06h2.17s3.93-.5 3.93-8.25S19.33 5.28 19 4.69M7.5 6.31H4.26l4.06-4.09V5.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/excavator.svg������������������������������0000664�0000000�0000000�00000000657�14753064456�0026134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 18.5c.54 0 1 .46 1 1s-.46 1-1 1h-12c-.54 0-1-.46-1-1s.46-1 1-1zm0-1.5h-12C5.13 17 4 18.13 4 19.5S5.13 22 6.5 22h12a2.5 2.5 0 0 0 0-5m2.5-6h-3V7h-5l-3 4v5h12zm-9.46 0 1.96-2.5H16V11zM9.76 3.41 4.76 2 2 11.83c-.34 1.28.41 2.61 1.7 2.97l1.16.32 3.29-2.83-3.88-1.08 1.88-6.75 2.79.78c.56.29 1.77 1.1 2.53 2.13L12.5 6h.44c-1.26-1.59-3.09-2.54-3.18-2.59"/></svg>���������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/exclamation-thick.svg����������������������0000664�0000000�0000000�00000000151�14753064456�0027531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 3h4v11h-4zm0 18v-4h4v4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/exclamation.svg����������������������������0000664�0000000�0000000�00000000152�14753064456�0026432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 4h2v11h-2zm2 14v2h-2v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/exit-run.svg�������������������������������0000664�0000000�0000000�00000000700�14753064456�0025700�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.34 8.17c-.93 0-1.69-.77-1.69-1.7a1.69 1.69 0 0 1 1.69-1.69c.94 0 1.7.76 1.7 1.69s-.76 1.7-1.7 1.7M10.3 19.93l-5.93-1.18.34-1.7 4.15.85 1.35-6.86-1.52.6v2.86H7v-3.96l4.4-1.87.67-.08c.6 0 1.1.34 1.43.85l.86 1.35c.68 1.21 2.03 2.03 3.64 2.03v1.68c-1.86 0-3.56-.83-4.66-2.1l-.5 2.54 1.77 1.69V23h-1.69v-5.1l-1.78-1.69zM21 23h-2V3H6v13.11l-2-.42V1h17zM6 23H4v-3.22l2 .42z"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/exit-to-app.svg����������������������������0000664�0000000�0000000�00000000344�14753064456�0026300�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.11 0-2 .89-2 2v4h2V5h14v14H5v-4H3v4a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-8.92 12.58L11.5 17l5-5-5-5-1.42 1.41L12.67 11H3v2h9.67z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/expand-all-outline.svg���������������������0000664�0000000�0000000�00000000402�14753064456�0027626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2a2 2 0 0 0-2 2v10h2V4h10V2zm4 4a2 2 0 0 0-2 2v10h2V8h10V6zm12 6v8h-8v-8zm0-2h-8a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2m-1 7h-2v2h-2v-2h-2v-2h2v-2h2v2h2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/expand-all.svg�����������������������������0000664�0000000�0000000�00000000366�14753064456�0026162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 8H8v10H6V8a2 2 0 0 1 2-2h10zm-4-6H4a2 2 0 0 0-2 2v10h2V4h10zm8 10v8a2 2 0 0 1-2 2h-8a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2m-2 3h-3v-3h-2v3h-3v2h3v3h2v-3h3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/expansion-card-variant.svg�����������������0000664�0000000�0000000�00000000227�14753064456�0030506�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 7h2.5v10H3V8.5H2M22 7v9h-8v1H7v-1H6V7m4 2H8v3h2m3-3h-2v3h2m7-3h-5v5h5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/expansion-card.svg�������������������������0000664�0000000�0000000�00000000324�14753064456�0027042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 7v1.5h1V17h1.5V7zm4 0v9h1v1h7v-1h8V7zm11.5 2a2.5 2.5 0 0 1 2.5 2.5 2.5 2.5 0 0 1-2.5 2.5 2.5 2.5 0 0 1-2.5-2.5A2.5 2.5 0 0 1 17.5 9"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/exponent-box.svg���������������������������0000664�0000000�0000000�00000000575�14753064456�0026565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zm8.76 3h1.63l1.11 2.6L17.59 6h1.65s-1.74 4.57-2.78 6.32c-.38.57-1.11.95-1.96.93v-1.5c.46.01.75-.25 1-.62.11-.13.18-.33.24-.49zM6.41 9.59l2.8 2.79L12 9.59 13.41 11l-2.79 2.79 2.79 2.8L12 18l-2.79-2.79L6.41 18 5 16.59l2.79-2.8L5 11z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/exponent.svg�������������������������������0000664�0000000�0000000�00000000507�14753064456�0025772�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.38 3 2.39 5.75c-.22.93-.5 1.57-.77 1.95-.33.48-.56.55-.81.55v1.5c.75 0 1.55-.4 2.05-1.19C19.87 8.94 22 3 22 3h-1.62l-1.69 4.05L17 3zM3.42 8.59 2 10l4.79 4.79L2 19.59 3.41 21l4.8-4.79L13 21l1.41-1.41-4.79-4.8L14.41 10 13 8.59l-4.79 4.79-4.8-4.79z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/export-variant.svg�������������������������0000664�0000000�0000000�00000000272�14753064456�0027114�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1 8 5h3v9h2V5h3m2 18H6a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h3v2H6v12h12V9h-3V7h3a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/export.svg���������������������������������0000664�0000000�0000000�00000000275�14753064456�0025455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23 12-4-4v3h-9v2h9v3M1 18V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v3h-2V6H3v12h12v-3h2v3a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eye-arrow-left-outline.svg�����������������0000664�0000000�0000000�00000000650�14753064456�0030450�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5.36 0 .72 0 1.08-.05a6 6 0 0 1-.08-.95c0-.36.04-.72.1-1.08-.36.04-.73.08-1.1.08-3.76 0-7.17-2.14-8.82-5.5a9.821 9.821 0 0 1 17.64 0c-.12.24-.26.45-.39.68.66.16 1.29.43 1.86.82.27-.5.51-1 .71-1.5-1.73-4.39-6-7.5-11-7.5M12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3m6 6v2h4v2h-4v2l-3-3z"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eye-arrow-left.svg�������������������������0000664�0000000�0000000�00000000666�14753064456�0027002�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5.36 0 .72 0 1.08-.05a6 6 0 0 1-.08-.95c0-.56.08-1.12.24-1.66-.41.1-.82.16-1.24.16-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5c0 .29-.03.59-.08.88.66-.25 1.37-.38 2.08-.38 1.17 0 2.31.34 3.29 1 .27-.5.51-1 .71-1.5-1.73-4.39-6-7.5-11-7.5M12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3m6 6v2h4v2h-4v2l-3-3z"/></svg>��������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eye-arrow-right-outline.svg����������������0000664�0000000�0000000�00000000574�14753064456�0030640�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4.5C7 4.5 2.7 7.6 1 12c1.7 4.4 6 7.5 11 7.5h1.1c-.1-.3-.1-.6-.1-1s0-.7.1-1.1c-.4 0-.7.1-1.1.1-3.8 0-7.2-2.1-8.8-5.5 1.6-3.4 5-5.5 8.8-5.5s7.2 2.1 8.8 5.5c-.1.2-.3.4-.4.7.7.2 1.3.4 1.9.8.3-.5.5-1 .7-1.5-1.7-4.4-6-7.5-11-7.5M12 9c-1.7 0-3 1.3-3 3s1.3 3 3 3 3-1.3 3-3-1.3-3-3-3m7 12v-2h-4v-2h4v-2l3 3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eye-arrow-right.svg������������������������0000664�0000000�0000000�00000000576�14753064456�0027165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4.5C7 4.5 2.7 7.6 1 12c1.7 4.4 6 7.5 11 7.5h1.1c-.1-.3-.1-.6-.1-1 0-.6.1-1.1.2-1.7-.4.1-.8.2-1.2.2-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5c0 .3 0 .6-.1.9.7-.2 1.4-.4 2.1-.4 1.2 0 2.3.3 3.3 1 .3-.5.5-1 .7-1.5-1.7-4.4-6-7.5-11-7.5M12 9c-1.7 0-3 1.3-3 3s1.3 3 3 3 3-1.3 3-3-1.3-3-3-3m7 12v-2h-4v-2h4v-2l3 3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eye-check-outline.svg����������������������0000664�0000000�0000000�00000000623�14753064456�0027443�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.5 17-5 5-3.5-3.5 1.5-1.5 2 2 3.5-3.5zM12 9a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3m0-4.5c5 0 9.27 3.11 11 7.5-.25.65-.56 1.26-.92 1.85a5.8 5.8 0 0 0-1.9-.73l.64-1.12a9.821 9.821 0 0 0-17.64 0A9.82 9.82 0 0 0 12 17.5l1.21-.07c-.14.5-.21 1.03-.21 1.57v.46l-1 .04c-5 0-9.27-3.11-11-7.5 1.73-4.39 6-7.5 11-7.5"/></svg>�������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eye-check.svg������������������������������0000664�0000000�0000000�00000000670�14753064456�0025770�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.5 17-5 5-3.5-3.5 1.5-1.5 2 2 3.5-3.5zM12 9a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3m0 8c.5 0 .97-.07 1.42-.21-.27.71-.42 1.43-.42 2.21v.45l-1 .05c-5 0-9.27-3.11-11-7.5 1.73-4.39 6-7.5 11-7.5s9.27 3.11 11 7.5c-.25.64-.56 1.26-.92 1.85-.9-.54-1.96-.85-3.08-.85-.78 0-1.5.15-2.21.42.14-.45.21-.92.21-1.42a5 5 0 0 0-5-5 5 5 0 0 0-5 5 5 5 0 0 0 5 5"/></svg>������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eye-circle-outline.svg���������������������0000664�0000000�0000000�00000000705�14753064456�0027630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 22A10 10 0 0 1 2 12 10 10 0 0 1 12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10m0-2a8 8 0 0 0 8-8 8 8 0 0 0-8-8 8 8 0 0 0-8 8 8 8 0 0 0 8 8m0-9a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m0-3c2.63 0 5 1.57 6 4a6.505 6.505 0 0 1-8.5 3.5A6.52 6.52 0 0 1 6 12c1-2.43 3.37-4 6-4m0 1.5A2.5 2.5 0 0 0 9.5 12a2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5A2.5 2.5 0 0 0 12 9.5"/></svg>�����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eye-circle.svg�����������������������������0000664�0000000�0000000�00000001303�14753064456�0026146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 9.5A2.5 2.5 0 0 0 9.5 12a2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5A2.5 2.5 0 0 0 12 9.5m0 3.5a1 1 0 0 1-1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1 1 1 0 0 1-1 1m0-3.5A2.5 2.5 0 0 0 9.5 12a2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5A2.5 2.5 0 0 0 12 9.5m0 3.5a1 1 0 0 1-1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1 1 1 0 0 1-1 1m0-11A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 14c-2.63 0-5-1.57-6-4a6.505 6.505 0 0 1 8.5-3.5A6.52 6.52 0 0 1 18 12c-1 2.43-3.37 4-6 4m0-6.5A2.5 2.5 0 0 0 9.5 12a2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5A2.5 2.5 0 0 0 12 9.5m0 3.5a1 1 0 0 1-1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1 1 1 0 0 1-1 1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eye-closed.svg�����������������������������0000664�0000000�0000000�00000000257�14753064456�0026165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 17.5c-3.8 0-7.2-2.1-8.8-5.5H1c1.7 4.4 6 7.5 11 7.5s9.3-3.1 11-7.5h-2.2c-1.6 3.4-5 5.5-8.8 5.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eye-lock-open-outline.svg������������������0000664�0000000�0000000�00000001054�14753064456�0030254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 19.5c-5 0-9.3-3.1-11-7.5 1.7-4.4 6-7.5 11-7.5s9.3 3.1 11 7.5c-.1.4-.3.7-.5 1.1-.5-1.2-1.5-2.2-2.8-2.7C17.9 8 15.1 6.5 12 6.5c-3.8 0-7.2 2.1-8.8 5.5 1.7 3.4 5.1 5.5 8.8 5.5h.1c-.1.2-.1.5-.1.7zM12 9c-1.7 0-3 1.3-3 3s1.3 3 3 3q.6 0 1.2-.3v-.2c0-1.3.7-2.5 1.7-3.4C14.5 9.9 13.4 9 12 9m8.8 8h-4.3v-2.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3v.5h1.3v-.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V17c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eye-lock-open.svg��������������������������0000664�0000000�0000000�00000001044�14753064456�0026576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.9 11.1c-1 .8-1.7 2-1.7 3.4v.2q-.6.3-1.2.3c-1.7 0-3-1.3-3-3s1.3-3 3-3c1.4 0 2.5.9 2.9 2.1M12 18.2q0-.6.3-1.2H12c-2.8 0-5-2.2-5-5s2.2-5 5-5c2.1 0 3.9 1.3 4.7 3.2.4-.1.9-.2 1.3-.2 2.1 0 3.9 1.3 4.5 3.1.2-.3.3-.7.5-1.1-1.7-4.4-6-7.5-11-7.5S2.7 7.6 1 12c1.7 4.4 6 7.5 11 7.5zm8.8-1.2h-4.3v-2.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3v.5h1.3v-.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V17c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eye-lock-outline.svg�����������������������0000664�0000000�0000000�00000001040�14753064456�0027310�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.8 17v-1.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V17c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3m-1.3 0h-3v-1.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3zM15 12c-.9.7-1.5 1.6-1.7 2.7-.4.2-.8.3-1.3.3-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3m-3 7.5c-5 0-9.3-3.1-11-7.5 1.7-4.4 6-7.5 11-7.5s9.3 3.1 11 7.5c-.2.5-.5 1-.7 1.5-.4-.7-.9-1.3-1.6-1.7-1.7-3.3-5-5.3-8.7-5.3-3.8 0-7.2 2.1-8.8 5.5 1.7 3.4 5.1 5.5 8.8 5.5h.1c-.1.2-.1.5-.1.7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eye-lock.svg�������������������������������0000664�0000000�0000000�00000001033�14753064456�0025635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.8 17v-1.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V17c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3m-1.3 0h-3v-1.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3zM15 12c-.9.7-1.5 1.6-1.7 2.7-.4.2-.8.3-1.3.3-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3m-3 7.5c-5 0-9.3-3.1-11-7.5 1.7-4.4 6-7.5 11-7.5s9.3 3.1 11 7.5c-.2.5-.5 1-.7 1.5C21.5 12 19.8 11 18 11c-.4 0-.7.1-1.1.1C16.5 8.8 14.5 7 12 7c-2.8 0-5 2.2-5 5s2.2 5 5 5h.3q-.3.6-.3 1.2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eye-minus-outline.svg����������������������0000664�0000000�0000000�00000000542�14753064456�0027521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4.5A11.8 11.8 0 0 0 1 12a11.8 11.8 0 0 0 11 7.5h1.1a3.8 3.8 0 0 1-.1-1 4 4 0 0 1 .1-1.1H12A9.6 9.6 0 0 1 3.2 12 9.6 9.6 0 0 1 12 6.5a9.6 9.6 0 0 1 8.8 5.5l-.4.7a4.6 4.6 0 0 1 1.9.8A10 10 0 0 0 23 12a11.8 11.8 0 0 0-11-7.5M12 9a3 3 0 1 0 3 3 2.9 2.9 0 0 0-3-3m3 8.5v2h8v-2Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eye-minus.svg������������������������������0000664�0000000�0000000�00000000527�14753064456�0026047�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4.5A11.8 11.8 0 0 0 1 12a11.8 11.8 0 0 0 11 7.5h1.1a3.8 3.8 0 0 1-.1-1 10 10 0 0 1 .2-1.7L12 17a5 5 0 1 1 5-5 2.8 2.8 0 0 1-.1.9 5.2 5.2 0 0 1 2.1-.4 5.6 5.6 0 0 1 3.3 1A10 10 0 0 0 23 12a11.8 11.8 0 0 0-11-7.5M12 9a3 3 0 1 0 3 3 2.9 2.9 0 0 0-3-3m3 8.5v2h8v-2Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eye-off-outline.svg������������������������0000664�0000000�0000000�00000001042�14753064456�0027134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5.27 3.28 4 20 20.72 18.73 22l-3.08-3.08c-1.15.38-2.37.58-3.65.58-5 0-9.27-3.11-11-7.5.69-1.76 1.79-3.31 3.19-4.54zM12 9a3 3 0 0 1 3 3 3 3 0 0 1-.17 1L11 9.17A3 3 0 0 1 12 9m0-4.5c5 0 9.27 3.11 11 7.5a11.8 11.8 0 0 1-4 5.19l-1.42-1.43A9.86 9.86 0 0 0 20.82 12 9.82 9.82 0 0 0 12 6.5c-1.09 0-2.16.18-3.16.5L7.3 5.47c1.44-.62 3.03-.97 4.7-.97M3.18 12A9.82 9.82 0 0 0 12 17.5c.69 0 1.37-.07 2-.21L11.72 15A3.064 3.064 0 0 1 9 12.28L5.6 8.87c-.99.85-1.82 1.91-2.42 3.13"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eye-off.svg��������������������������������0000664�0000000�0000000�00000001027�14753064456�0025462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.83 9 15 12.16V12a3 3 0 0 0-3-3zm-4.3.8 1.55 1.55c-.05.21-.08.42-.08.65a3 3 0 0 0 3 3c.22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53a5 5 0 0 1-5-5c0-.79.2-1.53.53-2.2M2 4.27l2.28 2.28.45.45C3.08 8.3 1.78 10 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.43.42L19.73 22 21 20.73 3.27 3M12 7a5 5 0 0 1 5 5c0 .64-.13 1.26-.36 1.82l2.93 2.93c1.5-1.25 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-4 .7l2.17 2.15C10.74 7.13 11.35 7 12 7"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eye-outline.svg����������������������������0000664�0000000�0000000�00000000440�14753064456�0026365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 9a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3m0-4.5c5 0 9.27 3.11 11 7.5-1.73 4.39-6 7.5-11 7.5S2.73 16.39 1 12c1.73-4.39 6-7.5 11-7.5M3.18 12a9.821 9.821 0 0 0 17.64 0 9.821 9.821 0 0 0-17.64 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eye-plus-outline.svg�����������������������0000664�0000000�0000000�00000000671�14753064456�0027354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5.36 0 .72 0 1.08-.05a6 6 0 0 1-.08-.95c0-.36.04-.72.1-1.08-.36.04-.73.08-1.1.08-3.76 0-7.17-2.14-8.82-5.5a9.821 9.821 0 0 1 17.64 0c-.12.24-.26.45-.39.68.66.16 1.29.43 1.86.82.27-.5.51-1 .71-1.5-1.73-4.39-6-7.5-11-7.5M12 9a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3m6 5.5v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>�����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eye-plus.svg�������������������������������0000664�0000000�0000000�00000000711�14753064456�0025672�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5.36 0 .72 0 1.08-.05a6 6 0 0 1-.08-.95c0-.56.08-1.12.24-1.66-.41.1-.82.16-1.24.16a5 5 0 0 1-5-5 5 5 0 0 1 5-5 5 5 0 0 1 5 5c0 .29-.03.59-.08.88.66-.25 1.37-.38 2.08-.38 1.17 0 2.31.34 3.29 1 .27-.5.51-1 .71-1.5-1.73-4.39-6-7.5-11-7.5M12 9a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3m6 5.5v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>�������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eye-refresh-outline.svg��������������������0000664�0000000�0000000�00000000767�14753064456�0030035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 9c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3m6 9.5 1.8-1.8c-.5-.4-1.1-.7-1.8-.7-1.4 0-2.5 1.1-2.5 2.5S16.6 21 18 21c.8 0 1.5-.4 2-1h1.7c-.6 1.5-2 2.5-3.7 2.5-2.2 0-4-1.8-4-4s1.8-4 4-4c1.1 0 2.1.4 2.8 1.2l1.2-1.2v4zm-6 0c0-.3 0-.7.1-1H12c-3.8 0-7.2-2.1-8.8-5.5 1.6-3.4 5-5.5 8.8-5.5s7.2 2.1 8.8 5.5c-.1.1-.1.2-.2.4q.9.3 1.8.9c.2-.4.4-.9.6-1.3-1.7-4.4-6-7.5-11-7.5S2.7 7.6 1 12c1.7 4.4 6 7.5 11 7.5h.1c-.1-.3-.1-.7-.1-1"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/material/eye-refresh.svg����������������������������0000664�0000000�0000000�00000000772�14753064456�0026354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 9c-1.7 0-3 1.3-3 3s1.3 3 3 3 3-1.3 3-3-1.3-3-3-3m6 9.5 1.8-1.8c-.5-.4-1.1-.7-1.8-.7-1.4 0-2.5 1.1-2.5 2.5S16.6 21 18 21c.8 0 1.5-.4 2-1h1.7c-.6 1.5-2 2.5-3.7 2.5-2.2 0-4-1.8-4-4s1.8-4 4-4c1.1 0 2.1.4 2.8 1.2l1.2-1.2v4zm-5.9 1s-.1 0 0 0C7 19.5 2.7 16.4 1 12c1.7-4.4 6-7.5 11-7.5s9.3 3.1 11 7.5c-.2.4-.4.9-.6 1.3-1.1-.8-2.4-1.3-3.9-1.3-.5 0-1 .1-1.5.2V12c0-2.8-2.2-5-5-5s-5 2.2-5 5 2.2 5 5 5h.2c-.1.5-.2 1-.2 1.5 0 .3 0 .7.1 1"/></svg>������mkdocs-material-9.6.4/material/templates/.icons/material/eye-remove-outline.svg���������������������0000664�0000000�0000000�00000001021�14753064456�0027654�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.54 16.88 20.41 19l2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.41-1.42L17.59 19l-2.12-2.12 1.41-1.41L19 17.59l2.12-2.12zM12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3m0 8.5c-3.76 0-7.17-2.14-8.82-5.5a9.821 9.821 0 0 1 17.64 0c-.19.39-.41.77-.65 1.13.68.13 1.33.37 1.9.72.36-.58.67-1.2.93-1.85-1.73-4.39-6-7.5-11-7.5S2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5.35 0 .69 0 1.03-.05-.03-.15-.03-.3-.03-.45 0-.55.08-1.08.22-1.59-.4.05-.81.09-1.22.09"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eye-remove.svg�����������������������������0000664�0000000�0000000�00000001032�14753064456�0026201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.54 16.88 20.41 19l2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.41-1.42L17.59 19l-2.12-2.12 1.41-1.41L19 17.59l2.12-2.12zM12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3m0 8c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5c0 .5-.1 1-.23 1.43.69-.27 1.44-.43 2.23-.43 1.12 0 2.17.32 3.07.85.36-.58.67-1.2.93-1.85-1.73-4.39-6-7.5-11-7.5S2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5.35 0 .69 0 1.03-.05-.03-.15-.03-.3-.03-.45 0-.79.16-1.54.43-2.23-.43.13-.93.23-1.43.23"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eye-settings-outline.svg�������������������0000664�0000000�0000000�00000000615�14753064456�0030227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 9a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3m0-4.5c4.86 0 9.22 3 11 7.5-2.39 6.08-9.25 9.06-15.33 6.67C4.62 17.47 2.2 15.06 1 12c1.78-4.5 6.14-7.5 11-7.5M3.18 12c2.38 4.87 8.27 6.89 13.14 4.5a9.8 9.8 0 0 0 4.5-4.5c-2.38-4.87-8.27-6.89-13.14-4.5a9.8 9.8 0 0 0-4.5 4.5M9 22H7v2h2zm4 0h-2v2h2zm4 0h-2v2h2z"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eye-settings.svg���������������������������0000664�0000000�0000000�00000000535�14753064456�0026553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 9a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3m0 8a5 5 0 0 1-5-5 5 5 0 0 1 5-5 5 5 0 0 1 5 5 5 5 0 0 1-5 5m0-12.5c-4.86 0-9.22 3-11 7.5 2.39 6.08 9.25 9.06 15.33 6.67 3.05-1.2 5.47-3.61 6.67-6.67-1.78-4.5-6.14-7.5-11-7.5M7 22h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eye.svg������������������������������������0000664�0000000�0000000�00000000443�14753064456�0024713�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 9a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3m0 8a5 5 0 0 1-5-5 5 5 0 0 1 5-5 5 5 0 0 1 5 5 5 5 0 0 1-5 5m0-12.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eyedropper-minus.svg�����������������������0000664�0000000�0000000�00000000461�14753064456�0027440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.35 11.72-2.13 2.13-1.41-1.42-7.71 7.71L3.5 22 2 20.5l1.86-4.6 7.71-7.71-1.42-1.41 2.13-2.13zM16.76 3c1.17-1.17 3.07-1.17 4.24 0s1.17 3.07 0 4.24l-1.92 1.92-4.24-4.24zM5.56 17.03 4.5 19.5l2.47-1.06L14.4 11 13 9.6zM9 4v2H1V4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eyedropper-off.svg�������������������������0000664�0000000�0000000�00000000636�14753064456�0027063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21 7.24-1.92 1.92-4.24-4.24L16.76 3c1.17-1.17 3.07-1.17 4.24 0s1.17 3.07 0 4.24M10.94 8.82l1.42 1.42.64-.64 1.4 1.4-.64.64 1.42 1.42.63-.63 1.41 1.42 2.13-2.13-7.07-7.07-2.13 2.13 1.42 1.41zm8.92 11.47-1.28 1.28-5.95-5.96-4.53 4.53L3.5 22 2 20.5l1.86-4.6 4.53-4.53-6.53-6.52 1.28-1.28zm-8.65-6.09-1.4-1.41-4.25 4.24L4.5 19.5l2.47-1.06z"/></svg>��������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eyedropper-plus.svg������������������������0000664�0000000�0000000�00000000501�14753064456�0027263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.35 11.72-2.13 2.13-1.41-1.42-7.71 7.71L3.5 22 2 20.5l1.86-4.6 7.71-7.71-1.42-1.41 2.13-2.13zM16.76 3c1.17-1.17 3.07-1.17 4.24 0s1.17 3.07 0 4.24l-1.92 1.92-4.24-4.24zM5.56 17.03 4.5 19.5l2.47-1.06L14.4 11 13 9.6zM6 1v3h3v2H6v3H4V6H1V4h3V1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eyedropper-remove.svg����������������������0000664�0000000�0000000�00000000623�14753064456�0027602�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.35 11.72-2.13 2.13-1.41-1.42-7.71 7.71L3.5 22 2 20.5l1.86-4.6 7.71-7.71-1.42-1.41 2.13-2.13zM16.76 3c1.17-1.17 3.07-1.17 4.24 0s1.17 3.07 0 4.24l-1.92 1.92-4.24-4.24zM5.56 17.03 4.5 19.5l2.47-1.06L14.4 11 13 9.6zM8.54 2.88 6.41 5l2.13 2.12-1.42 1.42L5 6.41 2.88 8.54 1.46 7.12 3.59 5 1.46 2.88l1.42-1.41L5 3.59l2.12-2.12z"/></svg>�������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eyedropper-variant.svg���������������������0000664�0000000�0000000�00000000434�14753064456�0027751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.92 19 5 17.08 13.06 9 15 10.94m5.71-5.31-2.34-2.34c-.37-.39-1.02-.39-1.41 0l-3.12 3.12-1.93-1.91-1.41 1.41 1.42 1.42L3 16.25V21h4.75l8.92-8.92 1.42 1.42 1.41-1.41-1.92-1.92 3.12-3.12c.4-.4.4-1.05.01-1.42"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/eyedropper.svg�����������������������������0000664�0000000�0000000�00000000432�14753064456�0026305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.35 11.72-2.13 2.13-1.41-1.42-7.71 7.71L3.5 22 2 20.5l1.86-4.6 7.71-7.71-1.42-1.41 2.13-2.13zM16.76 3A3 3 0 0 1 21 3a3 3 0 0 1 0 4.24l-1.92 1.92-4.24-4.24zM5.56 17.03 4.5 19.5l2.47-1.06L14.4 11 13 9.6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/face-agent.svg�����������������������������0000664�0000000�0000000�00000001254�14753064456�0026124�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.72 14.76c.35-.85.54-1.76.54-2.76 0-.72-.11-1.41-.3-2.05-.65.15-1.33.23-2.04.23A9.07 9.07 0 0 1 9.5 6.34a9.2 9.2 0 0 1-4.73 4.88c-.04.25-.04.52-.04.78A7.27 7.27 0 0 0 12 19.27c1.05 0 2.06-.23 2.97-.64.57 1.09.83 1.63.81 1.63-1.64.55-2.91.82-3.78.82-2.42 0-4.73-.95-6.43-2.66a9 9 0 0 1-2.24-3.69H2v-4.55h1.09a9.09 9.09 0 0 1 15.33-4.6 9 9 0 0 1 2.47 4.6H22v4.55h-.06L18.38 18l-5.3-.6v-1.67h4.83zm-9.45-2.99c.3 0 .59.12.8.34a1.136 1.136 0 0 1 0 1.6c-.21.21-.5.33-.8.33-.63 0-1.14-.5-1.14-1.13s.51-1.14 1.14-1.14m5.45 0c.63 0 1.13.51 1.13 1.14s-.5 1.13-1.13 1.13-1.14-.5-1.14-1.13a1.14 1.14 0 0 1 1.14-1.14"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/face-man-outline.svg�����������������������0000664�0000000�0000000�00000001233�14753064456�0027253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.25 13A1.25 1.25 0 0 1 9 14.25 1.25 1.25 0 0 1 7.75 13 1.25 1.25 0 0 1 9 11.75 1.25 1.25 0 0 1 10.25 13M15 11.75A1.25 1.25 0 0 0 13.75 13 1.25 1.25 0 0 0 15 14.25 1.25 1.25 0 0 0 16.25 13 1.25 1.25 0 0 0 15 11.75m7 .25a10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2a10 10 0 0 1 10 10M10.66 4.12C12.06 6.44 14.6 8 17.5 8c.46 0 .91-.05 1.34-.12C17.44 5.56 14.9 4 12 4c-.46 0-.91.05-1.34.12M4.42 9.47a8.05 8.05 0 0 0 3.66-4.44 8.05 8.05 0 0 0-3.66 4.44M20 12c0-.78-.12-1.53-.33-2.24-.7.15-1.42.24-2.17.24a10 10 0 0 1-7.76-3.69A10.02 10.02 0 0 1 4 11.86V12c0 4.41 3.59 8 8 8s8-3.59 8-8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/face-man-profile.svg�����������������������0000664�0000000�0000000�00000000671�14753064456�0027241�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 6.39A9.97 9.97 0 0 0 17.42 10c.78 0 1.53-.09 2.25-.26.21.71.33 1.47.33 2.26 0 4.41-3.59 8-8 8-3 0-5.61-1.66-7-4.11L6.75 14v-1A1.25 1.25 0 0 1 8 11.75 1.25 1.25 0 0 1 9.25 13v1H12m4-2.25A1.25 1.25 0 0 0 14.75 13 1.25 1.25 0 0 0 16 14.25 1.25 1.25 0 0 0 17.25 13 1.25 1.25 0 0 0 16 11.75"/></svg>�����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/face-man-shimmer-outline.svg���������������0000664�0000000�0000000�00000001270�14753064456�0030716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.5 1-1.09 2.41L16 4.5l2.41 1.09L19.5 8l1.1-2.41L23 4.5l-2.4-1.09zM12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10c0-1.47-.33-2.87-.9-4.13l-1.24 2.7c.09.47.14.93.14 1.43 0 4.43-3.57 8-8 8s-8-3.57-8-8v-.14a10 10 0 0 0 5.74-5.55 10 10 0 0 0 9.09 3.6L17.96 8h-.46c-2.82 0-5.4-1.5-6.84-3.88.44-.07.88-.12 1.34-.12.5 0 .96.05 1.42.13l2.71-1.22A9.9 9.9 0 0 0 12 2M8.09 5a8 8 0 0 1-3.68 4.5C5.04 7.57 6.37 6 8.09 5M9 11.75A1.25 1.25 0 0 0 7.75 13 1.25 1.25 0 0 0 9 14.25 1.25 1.25 0 0 0 10.25 13 1.25 1.25 0 0 0 9 11.75m6 0A1.25 1.25 0 0 0 13.75 13 1.25 1.25 0 0 0 15 14.25 1.25 1.25 0 0 0 16.25 13 1.25 1.25 0 0 0 15 11.75"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/face-man-shimmer.svg�����������������������0000664�0000000�0000000�00000001142�14753064456�0027237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.41 3.41 16 4.5l2.41 1.09L19.5 8l1.1-2.41L23 4.5l-2.4-1.09L19.5 1M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10c0-1.47-.33-2.87-.9-4.13l-1.24 2.72c.08.46.14.91.14 1.41 0 4.43-3.57 8-8 8s-8-3.57-8-8v-.13a10 10 0 0 0 5.74-5.56A10 10 0 0 0 17.5 10a10 10 0 0 0 1.33-.09l-1.48-3.26L12.6 4.5l3.53-1.6C14.87 2.33 13.47 2 12 2m-3 9.75A1.25 1.25 0 0 0 7.75 13 1.25 1.25 0 0 0 9 14.25 1.25 1.25 0 0 0 10.25 13 1.25 1.25 0 0 0 9 11.75m6 0A1.25 1.25 0 0 0 13.75 13 1.25 1.25 0 0 0 15 14.25 1.25 1.25 0 0 0 16.25 13 1.25 1.25 0 0 0 15 11.75"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/face-man.svg�������������������������������0000664�0000000�0000000�00000000767�14753064456�0025611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 11.75A1.25 1.25 0 0 0 7.75 13 1.25 1.25 0 0 0 9 14.25 1.25 1.25 0 0 0 10.25 13 1.25 1.25 0 0 0 9 11.75m6 0A1.25 1.25 0 0 0 13.75 13 1.25 1.25 0 0 0 15 14.25 1.25 1.25 0 0 0 16.25 13 1.25 1.25 0 0 0 15 11.75M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 18c-4.41 0-8-3.59-8-8 0-.29 0-.58.05-.86 2.36-1.05 4.23-2.98 5.21-5.37a9.97 9.97 0 0 0 10.41 3.97c.21.71.33 1.47.33 2.26 0 4.41-3.59 8-8 8"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/material/face-mask-outline.svg����������������������0000664�0000000�0000000�00000001145�14753064456�0027435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15 12-2.6-.7c-.3-.1-.6-.1-.8 0L9 12v-1l2.3-.7c.4-.1.9-.1 1.4 0l2.3.7zm5.25-6c-1.46 0-2.64 1.14-2.75 2.58l-4.95-1.42c-.18-.05-.36-.08-.55-.08-.18 0-.37.03-.55.08L6.5 8.58C6.39 7.14 5.21 6 3.75 6 2.23 6 1 7.23 1 8.75v3.5C1 13.77 2.23 15 3.75 15h1.93c1.13 2.36 3.53 4 6.32 4s5.19-1.64 6.32-4h1.93c1.52 0 2.75-1.23 2.75-2.75v-3.5C23 7.23 21.77 6 20.25 6M5 13.5H3.75c-.69 0-1.25-.56-1.25-1.25v-3.5a1.25 1.25 0 0 1 2.5 0zM17 12c0 2.76-2.24 5-5 5s-5-2.24-5-5v-1.5l5-1.42 5 1.42zm4.5.25c0 .69-.56 1.25-1.25 1.25H19V8.75a1.25 1.25 0 0 1 2.5 0z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/face-mask.svg������������������������������0000664�0000000�0000000�00000001031�14753064456�0025752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.25 6c-1.46 0-2.64 1.14-2.75 2.58l-4.95-1.42c-.36-.11-.74-.11-1.1 0L6.5 8.58C6.39 7.14 5.21 6 3.75 6 2.23 6 1 7.23 1 8.75v3.5C1 13.77 2.23 15 3.75 15h1.93c1.13 2.36 3.53 4 6.32 4s5.19-1.64 6.32-4h1.93c1.52 0 2.75-1.23 2.75-2.75v-3.5C23 7.23 21.77 6 20.25 6M5 13.5H3.75c-.69 0-1.25-.56-1.25-1.25v-3.5a1.25 1.25 0 0 1 2.5 0zM15 12l-2.6-.7c-.3-.1-.6-.1-.8 0L9 12v-1l2.3-.7c.4-.1.9-.1 1.4 0l2.3.7zm6.5.25c0 .69-.56 1.25-1.25 1.25H19V8.75a1.25 1.25 0 0 1 2.5 0z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/face-recognition.svg�����������������������0000664�0000000�0000000�00000001214�14753064456�0027342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 11.75A1.25 1.25 0 0 0 7.75 13 1.25 1.25 0 0 0 9 14.25 1.25 1.25 0 0 0 10.25 13 1.25 1.25 0 0 0 9 11.75m6 0A1.25 1.25 0 0 0 13.75 13 1.25 1.25 0 0 0 15 14.25 1.25 1.25 0 0 0 16.25 13 1.25 1.25 0 0 0 15 11.75M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 18a8 8 0 0 1-8-8 4 4 0 0 1 0-.86 10.05 10.05 0 0 0 5.26-5.37A9.99 9.99 0 0 0 17.42 10c.76 0 1.51-.09 2.25-.26 1.25 4.26-1.17 8.69-5.41 9.93-.76.22-1.5.33-2.26.33M0 2a2 2 0 0 1 2-2h4v2H2v4H0zm24 20a2 2 0 0 1-2 2h-4v-2h4v-4h2zM2 24a2 2 0 0 1-2-2v-4h2v4h4v2zM22 0a2 2 0 0 1 2 2v4h-2V2h-4V0z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/face-woman-outline.svg���������������������0000664�0000000�0000000�00000001112�14753064456�0027615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12v10h20V12c0-5.5-4.5-10-10-10m0 2c2.9 0 5.44 1.56 6.84 3.88-.43.07-.88.12-1.34.12-2.9 0-5.44-1.56-6.84-3.88.43-.07.88-.12 1.34-.12M8.08 5.03a8.05 8.05 0 0 1-3.66 4.44 8.05 8.05 0 0 1 3.66-4.44M4 11.86c2.6-.98 4.69-2.99 5.74-5.55A10 10 0 0 0 17.5 10c.75 0 1.47-.09 2.17-.24.21.71.33 1.46.33 2.24 0 4.41-3.59 8-8 8s-8-3.59-8-8zM4 20v-2c.57.75 1.25 1.43 2 2zm16 0h-2c.75-.57 1.43-1.25 2-2zm-6.25-7a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0m-6 0a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/face-woman-profile.svg���������������������0000664�0000000�0000000�00000000533�14753064456�0027604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.25 13a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0M22 12c0 5.5-4.5 10-10 10H2V12C2 6.5 6.5 2 12 2s10 4.5 10 10M7 18c1.41 1.23 3 2 5 2 4.41 0 8-3.59 8-8 0-.79-.12-1.55-.33-2.26-.72.17-1.47.26-2.25.26-2 0-3.85-.6-5.42-1.61 0 0-1.46 5.37-3.97 4.61-.66-.2-1.03.31-1.03 1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/face-woman-shimmer-outline.svg�������������0000664�0000000�0000000�00000001225�14753064456�0031264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.5 1-1.09 2.41L16 4.5l2.41 1.09L19.5 8l1.1-2.41L23 4.5l-2.4-1.09M12 2C6.5 2 2 6.5 2 12v10h20V12c0-1.47-.33-2.87-.9-4.13l-1.24 2.7c.09.47.14.93.14 1.43 0 4.43-3.57 8-8 8s-8-3.57-8-8v-.14a9.93 9.93 0 0 0 5.74-5.55 10 10 0 0 0 9.09 3.6L17.96 8h-.46c-2.82 0-5.4-1.5-6.84-3.88.44-.07.88-.12 1.34-.12.5 0 .96.05 1.42.13l2.71-1.22A9.9 9.9 0 0 0 12 2M8.09 5a8.12 8.12 0 0 1-3.68 4.5C5.04 7.57 6.37 6 8.09 5M9 11.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5m6 0a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5M4 17.97c.58.77 1.26 1.45 2.03 2.03H4m16-2.03V20h-2.03c.77-.58 1.45-1.26 2.03-2.03"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/face-woman-shimmer.svg���������������������0000664�0000000�0000000�00000001121�14753064456�0027602�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.5 1-1.09 2.41L16 4.5l2.41 1.09L19.5 8l1.1-2.41L23 4.5l-2.4-1.09zM12 2C6.5 2 2 6.5 2 12v10h20V12c0-1.47-.33-2.87-.9-4.13l-1.24 2.72c.08.46.14.91.14 1.41 0 4.43-3.57 8-8 8s-8-3.57-8-8v-.13a10 10 0 0 0 5.74-5.56A10 10 0 0 0 17.5 10a10 10 0 0 0 1.33-.09l-1.48-3.26L12.6 4.5l3.53-1.6C14.87 2.33 13.47 2 12 2m-3 9.75A1.25 1.25 0 0 0 7.75 13 1.25 1.25 0 0 0 9 14.25 1.25 1.25 0 0 0 10.25 13 1.25 1.25 0 0 0 9 11.75m6 0A1.25 1.25 0 0 0 13.75 13 1.25 1.25 0 0 0 15 14.25 1.25 1.25 0 0 0 16.25 13 1.25 1.25 0 0 0 15 11.75"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/face-woman.svg�����������������������������0000664�0000000�0000000�00000000553�14753064456�0026150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.75 13a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0M22 12v10H2V12C2 6.5 6.5 2 12 2s10 4.5 10 10M4 12c0 4.41 3.59 8 8 8s8-3.59 8-8c0-.79-.12-1.55-.33-2.26A9.974 9.974 0 0 1 9.26 5.77c-.98 2.39-2.85 4.32-5.21 5.37-.05.28-.05.57-.05.86m5 2.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/facebook-gaming.svg������������������������0000664�0000000�0000000�00000000204�14753064456�0027135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 14.5v-5H21V21h-5.5v-6.5zM3 3h18v5.5H8.5v7h6V21H3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/facebook-messenger.svg���������������������0000664�0000000�0000000�00000000710�14753064456�0027665�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.36 2 2 6.13 2 11.7c0 2.91 1.19 5.44 3.14 7.17.16.13.26.35.27.57l.05 1.78c.04.57.61.94 1.13.71l1.98-.87c.17-.06.36-.09.53-.06.9.27 1.9.4 2.9.4 5.64 0 10-4.13 10-9.7S17.64 2 12 2m6 7.46-2.93 4.67c-.47.73-1.47.92-2.17.37l-2.34-1.73a.6.6 0 0 0-.72 0l-3.16 2.4c-.42.33-.97-.17-.68-.63l2.93-4.67c.47-.73 1.47-.92 2.17-.4l2.34 1.76a.6.6 0 0 0 .72 0l3.16-2.4c.42-.33.97.17.68.63"/></svg>��������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/facebook-workplace.svg���������������������0000664�0000000�0000000�00000001310�14753064456�0027661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.69 16.12c-.27.31-.74.8-1.5.8-1.06 0-1.41-.77-1.73-1.58l-1.6-3.93-1.6 3.93c-.26.66-.56 1.58-1.73 1.58s-1.46-.92-1.74-1.58L7.11 8.72h2.26l2.16 5.45 1.61-3.97c.25-.63.55-1.58 1.72-1.58 1.14 0 1.46.95 1.72 1.58l1.75 4.3c.89-1.36 1.27-3 1.05-4.61a6.7 6.7 0 0 0-2.24-4.16 6.73 6.73 0 0 0-4.42-1.67c-1.69-.01-3.33.52-4.72 1.5a8.06 8.06 0 0 0-2.88 3.98c-.52 1.6-.52 3.33 0 4.93s1.54 2.99 2.91 3.97c1.37.99 3.01 1.51 4.69 1.5.73 0 1.45-.1 2.15-.3v2.11c-.71.16-1.43.25-2.15.25-2.11 0-4.18-.66-5.9-1.9s-3-2.99-3.65-5a9.9 9.9 0 0 1-.01-6.2c.66-2.01 1.94-3.76 3.66-5C8.53 2.66 10.6 2 12.72 2c4.84 0 8.78 3.94 8.78 8.79 0 1.92-.64 3.8-1.81 5.33"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/facebook.svg�������������������������������0000664�0000000�0000000�00000000474�14753064456�0025706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2.04c-5.5 0-10 4.49-10 10.02 0 5 3.66 9.15 8.44 9.9v-7H7.9v-2.9h2.54V9.85c0-2.51 1.49-3.89 3.78-3.89 1.09 0 2.23.19 2.23.19v2.47h-1.26c-1.24 0-1.63.77-1.63 1.56v1.88h2.78l-.45 2.9h-2.33v7a10 10 0 0 0 8.44-9.9c0-5.53-4.5-10.02-10-10.02"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/factory.svg��������������������������������0000664�0000000�0000000�00000000263�14753064456�0025600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 18v2h4v-2zm0-4v2h10v-2zm6 4v2h4v-2zm6-4v2h4v-2zm0 4v2h4v-2zM2 22V8l5 4V8l5 4V8l5 4 1-10h3l1 10v10z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/family-tree.svg����������������������������0000664�0000000�0000000�00000002413�14753064456�0026346�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1a2.5 2.5 0 0 0-2.5 2.5A2.5 2.5 0 0 0 11 5.79V7H7a2 2 0 0 0-2 2v.71A2.5 2.5 0 0 0 3.5 12 2.5 2.5 0 0 0 5 14.29V15H4a2 2 0 0 0-2 2v1.21A2.5 2.5 0 0 0 .5 20.5 2.5 2.5 0 0 0 3 23a2.5 2.5 0 0 0 2.5-2.5A2.5 2.5 0 0 0 4 18.21V17h4v1.21a2.5 2.5 0 0 0-1.5 2.29A2.5 2.5 0 0 0 9 23a2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-1.5-2.29V17a2 2 0 0 0-2-2H7v-.71A2.5 2.5 0 0 0 8.5 12 2.5 2.5 0 0 0 7 9.71V9h10v.71A2.5 2.5 0 0 0 15.5 12a2.5 2.5 0 0 0 1.5 2.29V15h-1a2 2 0 0 0-2 2v1.21a2.5 2.5 0 0 0-1.5 2.29A2.5 2.5 0 0 0 15 23a2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-1.5-2.29V17h4v1.21a2.5 2.5 0 0 0-1.5 2.29A2.5 2.5 0 0 0 21 23a2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-1.5-2.29V17a2 2 0 0 0-2-2h-1v-.71A2.5 2.5 0 0 0 20.5 12 2.5 2.5 0 0 0 19 9.71V9a2 2 0 0 0-2-2h-4V5.79a2.5 2.5 0 0 0 1.5-2.29A2.5 2.5 0 0 0 12 1m0 1.5a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1M6 11a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m12 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1M3 19.5a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m6 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m6 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m6 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fan-alert.svg������������������������������0000664�0000000�0000000�00000001066�14753064456�0026004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 11c-.57 0-1 .45-1 1s.43 1 1 1c.54 0 1-.45 1-1s-.46-1-1-1m.5-9c4.5 0 4.59 3.57 2.23 4.75-.99.49-1.43 1.54-1.62 2.47.48.2.89.51 1.22.91 3.7-2 7.67-1.21 7.67 2.37 0 4.5-3.57 4.6-4.74 2.23-.5-.99-1.56-1.43-2.49-1.62-.2.48-.51.89-.91 1.23C13.85 18.03 13.06 22 9.5 22c-4.5 0-4.6-3.58-2.24-4.76.98-.49 1.42-1.53 1.62-2.45-.49-.2-.92-.52-1.24-.92C3.95 15.85 0 15.07 0 11.5 0 7 3.56 6.89 4.73 9.26c.5.99 1.55 1.42 2.48 1.61.19-.48.51-.9.92-1.22C6.14 5.96 6.93 2 10.5 2M22 13V7h2v6zm0 4v-2h2v2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fan-auto.svg�������������������������������0000664�0000000�0000000�00000001250�14753064456�0025640�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.5 2c-3.57 0-4.36 3.96-2.37 7.65-.41.32-.73.74-.92 1.22-.93-.19-1.98-.62-2.48-1.61C5.56 6.89 2 7 2 11.5c0 3.57 3.95 4.35 7.64 2.37.32.4.75.72 1.24.92-.2.92-.64 1.96-1.62 2.45C6.9 18.42 7 22 11.5 22c.81 0 1.5-.22 2-.59-.31-.74-.5-1.55-.5-2.41 0-1.41.5-2.7 1.3-3.72-.13-.31-.27-.63-.44-.94.4-.34.71-.75.91-1.23.49.1 1.01.28 1.48.56a5.997 5.997 0 0 1 5.64.07c.06-.37.11-.78.11-1.24 0-3.58-3.97-4.37-7.67-2.37-.33-.4-.74-.71-1.22-.91.19-.93.63-1.98 1.62-2.47C17.09 5.57 17 2 12.5 2m-.5 9c.54 0 1 .45 1 1s-.46 1-1 1c-.57 0-1-.45-1-1s.43-1 1-1m6 4a2 2 0 0 0-2 2v6h2v-2h2v2h2v-6c0-1.1-.9-2-2-2m-2 2h2v2h-2Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fan-chevron-down.svg�����������������������0000664�0000000�0000000�00000001235�14753064456�0027304�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0-1.41.5-2.7 1.3-3.72-.13-.31-.27-.63-.44-.94.4-.34.71-.75.91-1.23.49.1 1.01.28 1.48.56a5.997 5.997 0 0 1 5.64.07c.06-.37.11-.78.11-1.24 0-3.58-3.97-4.37-7.67-2.37-.33-.4-.74-.71-1.22-.91.19-.93.63-1.98 1.62-2.47C17.09 5.57 17 2 12.5 2c-3.57 0-4.36 3.96-2.37 7.65-.41.32-.73.74-.92 1.22-.93-.19-1.98-.62-2.48-1.61C5.56 6.89 2 7 2 11.5c0 3.57 3.95 4.35 7.64 2.37.32.4.75.72 1.24.92-.2.92-.64 1.96-1.62 2.45C6.9 18.42 7 22 11.5 22c.81 0 1.5-.22 2-.59-.31-.74-.5-1.55-.5-2.41m-1-6c-.57 0-1-.45-1-1s.43-1 1-1c.54 0 1 .45 1 1s-.46 1-1 1m7 6.17L22.17 16l1.42 1.41L19 22l-4.59-4.59L15.83 16z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fan-chevron-up.svg�������������������������0000664�0000000�0000000�00000001235�14753064456�0026761�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0-1.41.5-2.7 1.3-3.72-.13-.31-.27-.63-.44-.94.4-.34.71-.75.91-1.23.49.1 1.01.28 1.48.56a5.997 5.997 0 0 1 5.64.07c.06-.37.11-.78.11-1.24 0-3.58-3.97-4.37-7.67-2.37-.33-.4-.74-.71-1.22-.91.19-.93.63-1.98 1.62-2.47C17.09 5.57 17 2 12.5 2c-3.57 0-4.36 3.96-2.37 7.65-.41.32-.73.74-.92 1.22-.93-.19-1.98-.62-2.48-1.61C5.56 6.89 2 7 2 11.5c0 3.57 3.95 4.35 7.64 2.37.32.4.75.72 1.24.92-.2.92-.64 1.96-1.62 2.45C6.9 18.42 7 22 11.5 22c.81 0 1.5-.22 2-.59-.31-.74-.5-1.55-.5-2.41m-1-6c-.57 0-1-.45-1-1s.43-1 1-1c.54 0 1 .45 1 1s-.46 1-1 1m7 4.83L15.83 21l-1.42-1.41L19 15l4.59 4.59L22.17 21z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fan-clock.svg������������������������������0000664�0000000�0000000�00000001011�14753064456�0025756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 14h1.5v2.8l2.4 1.4-.8 1.3-3.1-1.8zm5-2.7c-.2-3.4-4-4.1-7.7-2.1q-.45-.6-1.2-.9c.2-.9.6-2 1.6-2.5C16.1 4.6 16 1 11.5 1 7.9 1 7.2 5 9.1 8.7q-.6.45-.9 1.2c-.9-.2-2-.6-2.5-1.6C4.6 5.9 1 6 1 10.5c0 3.6 4 4.3 7.7 2.4.3.4.8.7 1.2.9-.2.9-.6 2-1.6 2.5C5.9 17.4 6 21 10.5 21c.3 0 .5 0 .7-.1 1.3 1.9 3.4 3.1 5.8 3.1 3.9 0 7-3.1 7-7 0-2.4-1.2-4.5-3-5.7M11 10c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1m6 12c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fan-minus.svg������������������������������0000664�0000000�0000000�00000001166�14753064456�0026031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0-1.41.5-2.7 1.3-3.72-.13-.31-.27-.63-.44-.94.4-.34.71-.75.91-1.23.49.1 1.01.28 1.48.56a5.997 5.997 0 0 1 5.64.07c.06-.37.11-.78.11-1.24 0-3.58-3.97-4.37-7.67-2.37-.33-.4-.74-.71-1.22-.91.19-.93.63-1.98 1.62-2.47C17.09 5.57 17 2 12.5 2c-3.57 0-4.36 3.96-2.37 7.65-.41.32-.73.74-.92 1.22-.93-.19-1.98-.62-2.48-1.61C5.56 6.89 2 7 2 11.5c0 3.57 3.95 4.35 7.64 2.37.32.4.75.72 1.24.92-.2.92-.64 1.96-1.62 2.45C6.9 18.42 7 22 11.5 22c.81 0 1.5-.22 2-.59-.31-.74-.5-1.55-.5-2.41m-1-6c-.57 0-1-.45-1-1s.43-1 1-1c.54 0 1 .45 1 1s-.46 1-1 1m11 5v2h-8v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fan-off.svg��������������������������������0000664�0000000�0000000�00000000717�14753064456�0025451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.5 2C9.64 2 8.57 4.55 9.29 7.47L15 13.16c.87.21 1.81.65 2.28 1.57 1.18 2.37 4.75 2.27 4.75-2.23 0-3.58-3.98-4.37-7.68-2.37-.32-.4-.74-.71-1.22-.91.19-.93.63-1.98 1.62-2.47C17.11 5.57 17 2 12.5 2M3.28 4 2 5.27l2.47 2.46C3.22 7.74 2 8.87 2 11.5c0 3.57 3.96 4.35 7.65 2.37.32.4.75.72 1.24.92-.2.92-.64 1.96-1.62 2.45C6.91 18.42 7 22 11.5 22c2.3 0 3.44-1.64 3.44-3.79L18.73 22 20 20.72z"/></svg>�������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fan-plus.svg�������������������������������0000664�0000000�0000000�00000001211�14753064456�0025650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0-1.41.5-2.7 1.3-3.72-.13-.31-.27-.63-.44-.94.4-.34.71-.75.91-1.23.49.1 1.01.28 1.48.56a5.997 5.997 0 0 1 5.64.07c.06-.37.11-.78.11-1.24 0-3.58-3.97-4.37-7.67-2.37-.33-.4-.74-.71-1.22-.91.19-.93.63-1.98 1.62-2.47C17.09 5.57 17 2 12.5 2c-3.57 0-4.36 3.96-2.37 7.65-.41.32-.73.74-.92 1.22-.93-.19-1.98-.62-2.48-1.61C5.56 6.89 2 7 2 11.5c0 3.57 3.95 4.35 7.64 2.37.32.4.75.72 1.24.92-.2.92-.64 1.96-1.62 2.45C6.9 18.42 7 22 11.5 22c.81 0 1.5-.22 2-.59-.31-.74-.5-1.55-.5-2.41m-1-6c-.57 0-1-.45-1-1s.43-1 1-1c.54 0 1 .45 1 1s-.46 1-1 1m8 2v3h3v2h-3v3h-2v-3h-3v-2h3v-3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fan-remove.svg�����������������������������0000664�0000000�0000000�00000001340�14753064456�0026165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0-1.41.5-2.7 1.3-3.72-.13-.31-.27-.63-.44-.94.4-.34.71-.75.91-1.23.49.1 1.01.28 1.48.56a5.997 5.997 0 0 1 5.64.07c.06-.37.11-.78.11-1.24 0-3.58-3.97-4.37-7.67-2.37-.33-.4-.74-.71-1.22-.91.19-.93.63-1.98 1.62-2.47C17.09 5.57 17 2 12.5 2c-3.57 0-4.36 3.96-2.37 7.65-.41.32-.73.74-.92 1.22-.93-.19-1.98-.62-2.48-1.61C5.56 6.89 2 7 2 11.5c0 3.57 3.95 4.35 7.64 2.37.32.4.75.72 1.24.92-.2.92-.64 1.96-1.62 2.45C6.9 18.42 7 22 11.5 22c.81 0 1.5-.22 2-.59-.31-.74-.5-1.55-.5-2.41m-1-6c-.57 0-1-.45-1-1s.43-1 1-1c.54 0 1 .45 1 1s-.46 1-1 1m10.54 3.88L20.41 19l2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.41-1.42L17.59 19l-2.12-2.12 1.41-1.41L19 17.59l2.12-2.12z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fan-speed-1.svg����������������������������0000664�0000000�0000000�00000001170�14753064456�0026127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0-1.41.5-2.7 1.3-3.72-.13-.31-.27-.63-.44-.94.4-.34.71-.75.91-1.23.49.1 1.01.28 1.48.56a5.997 5.997 0 0 1 5.64.07c.06-.37.11-.78.11-1.24 0-3.58-3.97-4.37-7.67-2.37-.33-.4-.74-.71-1.22-.91.19-.93.63-1.98 1.62-2.47C17.09 5.57 17 2 12.5 2c-3.57 0-4.36 3.96-2.37 7.65-.41.32-.73.74-.92 1.22-.93-.19-1.98-.62-2.48-1.61C5.56 6.89 2 7 2 11.5c0 3.57 3.95 4.35 7.64 2.37.32.4.75.72 1.24.92-.2.92-.64 1.96-1.62 2.45C6.9 18.42 7 22 11.5 22c.81 0 1.5-.22 2-.59-.31-.74-.5-1.55-.5-2.41m-1-6c-.57 0-1-.45-1-1s.43-1 1-1c.54 0 1 .45 1 1s-.46 1-1 1m5 2v2h1v6h2v-8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fan-speed-2.svg����������������������������0000664�0000000�0000000�00000001267�14753064456�0026137�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0-1.41.5-2.7 1.3-3.72-.13-.31-.27-.63-.44-.94.4-.34.71-.75.91-1.23.49.1 1.01.28 1.48.56a5.997 5.997 0 0 1 5.64.07c.06-.37.11-.78.11-1.24 0-3.58-3.97-4.37-7.67-2.37-.33-.4-.74-.71-1.22-.91.19-.93.63-1.98 1.62-2.47C17.09 5.57 17 2 12.5 2c-3.57 0-4.36 3.96-2.37 7.65-.41.32-.73.74-.92 1.22-.93-.19-1.98-.62-2.48-1.61C5.56 6.89 2 7 2 11.5c0 3.57 3.95 4.35 7.64 2.37.32.4.75.72 1.24.92-.2.92-.64 1.96-1.62 2.45C6.9 18.42 7 22 11.5 22c.81 0 1.5-.22 2-.59-.31-.74-.5-1.55-.5-2.41m-1-6c-.57 0-1-.45-1-1s.43-1 1-1c.54 0 1 .45 1 1s-.46 1-1 1m4 2v2h3v1h-1c-1.1 0-2 .9-2 2v3h5v-2h-3v-1h1c1.11 0 2-.89 2-2v-1a2 2 0 0 0-2-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fan-speed-3.svg����������������������������0000664�0000000�0000000�00000001326�14753064456�0026134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0-1.41.5-2.7 1.3-3.72-.13-.31-.27-.63-.44-.94.4-.34.71-.75.91-1.23.49.1 1.01.28 1.48.56a5.997 5.997 0 0 1 5.64.07c.06-.37.11-.78.11-1.24 0-3.58-3.97-4.37-7.67-2.37-.33-.4-.74-.71-1.22-.91.19-.93.63-1.98 1.62-2.47C17.09 5.57 17 2 12.5 2c-3.57 0-4.36 3.96-2.37 7.65-.41.32-.73.74-.92 1.22-.93-.19-1.98-.62-2.48-1.61C5.56 6.89 2 7 2 11.5c0 3.57 3.95 4.35 7.64 2.37.32.4.75.72 1.24.92-.2.92-.64 1.96-1.62 2.45C6.9 18.42 7 22 11.5 22c.81 0 1.5-.22 2-.59-.31-.74-.5-1.55-.5-2.41m-1-6c-.57 0-1-.45-1-1s.43-1 1-1c.54 0 1 .45 1 1s-.46 1-1 1m9 8v-.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V17a2 2 0 0 0-2-2h-3v2h3v1h-2v2h2v1h-3v2h3c1.11 0 2-.89 2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fan.svg������������������������������������0000664�0000000�0000000�00000001037�14753064456�0024675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 11a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m.5-9c4.5 0 4.61 3.57 2.25 4.75-.99.49-1.43 1.54-1.62 2.47.48.2.9.51 1.22.91 3.7-2 7.68-1.21 7.68 2.37 0 4.5-3.57 4.6-4.75 2.23-.5-.99-1.56-1.43-2.49-1.62-.2.48-.51.89-.91 1.23 1.99 3.69 1.2 7.66-2.38 7.66-4.5 0-4.59-3.58-2.23-4.76.98-.49 1.42-1.53 1.62-2.45-.49-.2-.92-.52-1.24-.92C5.96 15.85 2 15.07 2 11.5 2 7 5.56 6.89 6.74 9.26c.5.99 1.55 1.42 2.48 1.61.19-.48.51-.9.92-1.22C8.15 5.96 8.94 2 12.5 2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fast-forward-10.svg������������������������0000664�0000000�0000000�00000000503�14753064456�0026743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 12v10H8v-8H6v-2zm8 2v6c0 1.11-.89 2-2 2h-2a2 2 0 0 1-2-2v-6a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2m-4 0v6h2v-6zM11.5 3c2.65 0 5.05 1 6.9 2.6L21 3v7h-7l2.62-2.62C15.23 6.22 13.46 5.5 11.5 5.5c-3.54 0-6.55 2.31-7.6 5.5l-2.37-.78C2.92 6.03 6.85 3 11.5 3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fast-forward-15.svg������������������������0000664�0000000�0000000�00000000454�14753064456�0026755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.5 3c2.65 0 5.05 1 6.9 2.6L21 3v7h-7l2.62-2.62C15.23 6.22 13.46 5.5 11.5 5.5c-3.54 0-6.55 2.31-7.6 5.5l-2.37-.78C2.92 6.03 6.85 3 11.5 3M10 12v10H8v-8H6v-2zm2 0h6v2h-4v2h2a2 2 0 0 1 2 2v2c0 1.11-.89 2-2 2h-4v-2h4v-2h-4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fast-forward-30.svg������������������������0000664�0000000�0000000�00000000632�14753064456�0026750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.5 3c-4.65 0-8.58 3.03-9.97 7.22L3.9 11c1.05-3.19 4.06-5.5 7.6-5.5 1.96 0 3.73.72 5.12 1.88L14 10h7V3l-2.6 2.6C16.55 4 14.15 3 11.5 3M19 14v6c0 1.11-.89 2-2 2h-2a2 2 0 0 1-2-2v-6a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2m-4 0v6h2v-6zm-4 6a2 2 0 0 1-2 2H5v-2h4v-2H7v-2h2v-2H5v-2h4a2 2 0 0 1 2 2v1.5A1.5 1.5 0 0 1 9.5 17a1.5 1.5 0 0 1 1.5 1.5z"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fast-forward-45.svg������������������������0000664�0000000�0000000�00000000434�14753064456�0026756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.5 3c2.6 0 5 1 6.9 2.6L21 3v7h-7l2.6-2.6c-1.4-1.2-3.2-1.9-5.1-1.9C8 5.5 4.9 7.8 3.9 11l-2.4-.8C2.9 6 6.8 3 11.5 3m1.5 9h6v2h-4v2h2c1.1 0 2 .9 2 2v2c0 1.1-.9 2-2 2h-4v-2h4v-2h-4zm-8 0v6h4v4h2V12H9v4H7v-4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fast-forward-5.svg�������������������������0000664�0000000�0000000�00000000427�14753064456�0026674�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.5 3c2.65 0 5.05 1 6.9 2.6L21 3v7h-7l2.62-2.62C15.23 6.22 13.46 5.5 11.5 5.5c-3.54 0-6.55 2.31-7.6 5.5l-2.37-.78C2.92 6.03 6.85 3 11.5 3M9 12h6v2h-4v2h2a2 2 0 0 1 2 2v2c0 1.11-.89 2-2 2H9v-2h4v-2H9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fast-forward-60.svg������������������������0000664�0000000�0000000�00000000566�14753064456�0026761�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.5 3c-4.7 0-8.6 3-10 7.2l2.4.8c1-3.2 4.1-5.5 7.6-5.5 2 0 3.7.7 5.1 1.9L14 10h7V3l-2.6 2.6C16.5 4 14.1 3 11.5 3M19 14v6c0 1.1-.9 2-2 2h-2c-1.1 0-2-.9-2-2v-6c0-1.1.9-2 2-2h2c1.1 0 2 .9 2 2m-4 0v6h2v-6zm-8-2c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2H7v-2h4v-2zm0 6h2v2H7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fast-forward-outline.svg�������������������0000664�0000000�0000000�00000000221�14753064456�0030177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15 9.9 3 2.1-3 2.1zm-9 0L9 12l-3 2.1zM13 6v12l8.5-6zM4 6v12l8.5-6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fast-forward.svg���������������������������0000664�0000000�0000000�00000000154�14753064456�0026527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 6v12l8.5-6M4 18l8.5-6L4 6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/faucet-variant.svg�������������������������0000664�0000000�0000000�00000000454�14753064456�0027044�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 21H3c0-1.1.9-2 2-2h14c1.11 0 2 .89 2 2M19 7c0-1.61-1.07-4-4-4s-4 2.39-4 4v11h2V7c0-.46.17-2 2-2s2 1.54 2 2h-.5v2h3V7zM7 12c-.55 0-1 .45-1 1v1H3v1h3v3h2v-5c0-.55-.45-1-1-1m14 2h-3v-1c0-.55-.45-1-1-1s-1 .45-1 1v5h2v-3h3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/faucet.svg���������������������������������0000664�0000000�0000000�00000000267�14753064456�0025404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 14v2h-3v-1.72zm0-1c0-1.1-1-2-2.2-2H10v-1H5v11h5v-7.09zM5 9h5V7l5.36-1.79a.932.932 0 1 0-.61-1.76L5 7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fax.svg������������������������������������0000664�0000000�0000000�00000000642�14753064456�0024710�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 9h-1V4H8v16h14v-8c0-1.66-1.34-3-3-3m-9-3h6v3h-6zm4 11h-4v-5h4zm2 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1M4.5 8A2.5 2.5 0 0 0 2 10.5v8a2.5 2.5 0 0 0 5 0v-8A2.5 2.5 0 0 0 4.5 8"/></svg>����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/feather.svg��������������������������������0000664�0000000�0000000�00000000562�14753064456�0025551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 2s-7.64-.37-13.66 7.88C3.72 16.21 2 22 2 22l1.94-1c1.44-2.5 2.19-3.53 3.6-5 2.53.74 5.17.65 7.46-2-2-.56-3.6-.43-5.96-.19C11.69 12 13.5 11.6 16 12l1-2c-1.8-.34-3-.37-4.78.04C14.19 8.65 15.56 7.87 18 8l1.21-1.93c-1.56-.11-2.5.06-4.29.5 1.61-1.46 3.08-2.12 5.22-2.25 0 0 1.05-1.89 1.86-2.32"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/feature-search-outline.svg�����������������0000664�0000000�0000000�00000000544�14753064456�0030506�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 2C13 2 11 4 11 6.5s2 4.5 4.5 4.5c.9 0 1.7-.3 2.4-.7l3.1 3.1 1.4-1.4-3.1-3.1c.4-.7.7-1.5.7-2.4C20 4 18 2 15.5 2M4 4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5l-2-2v7H4V6h5.03c.06-.7.23-1.35.47-2zm11.5 0C16.9 4 18 5.1 18 6.5S16.9 9 15.5 9 13 7.9 13 6.5 14.1 4 15.5 4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/feature-search.svg�������������������������0000664�0000000�0000000�00000000571�14753064456�0027031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 20a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h5.5c-.3.8-.5 1.6-.5 2.5 0 3.6 2.9 6.5 6.5 6.5.8 0 1.5-.1 2.1-.4L20 15zm-.7-11.1c.4-.7.7-1.5.7-2.4C20 4 18 2 15.5 2S11 4 11 6.5s2 4.5 4.5 4.5c.9 0 1.7-.3 2.4-.7l3.1 3.1 1.4-1.4zm-3.8.1C14.1 9 13 7.9 13 6.5S14.1 4 15.5 4 18 5.1 18 6.5 16.9 9 15.5 9"/></svg>���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fedora.svg���������������������������������0000664�0000000�0000000�00000001206�14753064456�0025367�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.47 2 12v7.73C2 21 3 22 4.27 22H12c5.53 0 10-4.5 10-10S17.5 2 12 2m2.03 4.12c1.68 0 3.26 1.28 3.26 3.06 0 .16 0 .32-.02.51-.05.47-.48.81-.95.75a.836.836 0 0 1-.7-.98c0-.06.01-.14.01-.28 0-1.01-.82-1.4-1.6-1.4s-1.48.66-1.48 1.4c.01.85 0 1.7 0 2.56l1.45-.02c1.12-.02 1.13 1.68 0 1.67l-1.45.01-.01 2.39c-.18 1.88-1.77 3.37-3.69 3.37-2.03 0-3.71-1.66-3.71-3.7A3.8 3.8 0 0 1 9 11.74l1.15-.01v1.67L9 13.41h-.03c-1.16.03-2.15.82-2.16 2.06 0 1.12.91 2.03 2.04 2.03 1.15 0 2.03-.83 2.03-2.03.02-2.01-.01-4.22 0-6.3 0-.12.01-.21.02-.34.19-1.54 1.57-2.71 3.13-2.71"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fence-electric.svg�������������������������0000664�0000000�0000000�00000000402�14753064456�0026774�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 9v2H7V9H5v2H3V9H1v12h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2V9h-2v2h-2V9h-2v2h-2V9h-2v2h-2V9zm-6 4h2v4H3zm4 0h2v4H7zm4 0h2v4h-2zm4 0h2v4h-2zm4 0h2v4h-2zM7 4h4V2l6 3h-4v2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fence.svg����������������������������������0000664�0000000�0000000�00000000360�14753064456�0025207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 9v2H7V9H5v2H3V9H1v12h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2V9h-2v2h-2V9h-2v2h-2V9h-2v2h-2V9zm-6 4h2v4H3zm4 0h2v4H7zm4 0h2v4h-2zm4 0h2v4h-2zm4 0h2v4h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fencing.svg��������������������������������0000664�0000000�0000000�00000000667�14753064456�0025552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4.5 17.42 1.08 1.08-2.3 2.28c-.28.29-.78.29-1.06 0s-.29-.78 0-1.06zm13.79-12V4L12 10.29 5.71 4v1.42L11.29 11 7.5 14.81c-1.18-.84-2.82-.74-3.87.31l4.25 4.25c1.05-1.05 1.15-2.69.32-3.87zm3.49 14.3-2.28-2.3-1.08 1.08 2.3 2.28c.28.29.78.29 1.06 0s.29-.78 0-1.06m-5.28-4.91-3.08-3.1-.71.71 3.1 3.08c-.84 1.18-.74 2.82.31 3.87l4.25-4.25c-1.05-1.05-2.69-1.15-3.87-.31"/></svg>�������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ferris-wheel.svg���������������������������0000664�0000000�0000000�00000002422�14753064456�0026524�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 19c.86 0 1.59.54 1.87 1.29.55-.12 1.08-.29 1.59-.52l-1.76-4.15c-.52.25-1.09.38-1.7.38s-1.18-.13-1.7-.38l-1.76 4.15c.51.23 1.04.4 1.59.52.28-.75 1.01-1.29 1.87-1.29m6.25-1.24c-.25-.34-.44-.76-.44-1.26 0-1.09.9-2 2-2l.31.03c.25-.8.38-1.65.38-2.53s-.13-1.73-.38-2.5h-.31c-1.11 0-2-.89-2-2 0-.5.16-.91.44-1.26a8.47 8.47 0 0 0-4.38-2.53C13.59 4.46 12.86 5 12 5s-1.59-.54-1.87-1.29a8.47 8.47 0 0 0-4.38 2.53c.28.35.45.79.45 1.26a2 2 0 0 1-2 2h-.32c-.25.78-.38 1.62-.38 2.5 0 .89.14 1.74.39 2.55l.31-.05c1.11 0 2 .92 2 2 0 .5-.16.93-.44 1.27.32.35.68.67 1.05.96l1.9-4.46C8.26 13.62 8 12.84 8 12a4 4 0 0 1 4-4 4 4 0 0 1 4 4c0 .84-.26 1.62-.71 2.27l1.9 4.46c.38-.29.73-.62 1.06-.97M12 23c-1 0-1.84-.74-2-1.71a9.5 9.5 0 0 1-1.85-.6L7.17 23H5l1.41-3.32a8.6 8.6 0 0 1-1.45-1.31c-.24.1-.49.13-.76.13a2 2 0 0 1-2-2c0-.62.3-1.18.77-1.55a9.49 9.49 0 0 1-.01-5.87A2.006 2.006 0 0 1 4.2 5.5c.26 0 .51.06.73.15A9.4 9.4 0 0 1 10 2.71C10.16 1.74 11 1 12 1s1.84.74 2 1.71c2 .42 3.74 1.47 5.06 2.93.23-.09.48-.14.75-.14a2 2 0 0 1 2 2 2 2 0 0 1-.77 1.57c.3.93.46 1.93.46 2.93s-.16 2-.46 2.93c.46.37.77.94.77 1.57 0 1.12-.89 2-2 2-.27 0-.52-.04-.76-.14-.44.49-.93.93-1.46 1.32L19 23h-2.17l-.98-2.31c-.6.26-1.22.47-1.85.6-.16.97-1 1.71-2 1.71"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ferry.svg����������������������������������0000664�0000000�0000000�00000000744�14753064456�0025264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 6h12v3.96L12 8 6 9.96M3.94 19H4c1.6 0 3-.88 4-2 1 1.12 2.4 2 4 2s3-.88 4-2c1 1.12 2.4 2 4 2h.05l1.9-6.69c.08-.25.05-.53-.06-.77-.13-.24-.34-.42-.6-.5L20 10.62V6a2 2 0 0 0-2-2h-3V1H9v3H6a2 2 0 0 0-2 2v4.62l-1.29.42c-.26.08-.47.26-.6.5-.11.24-.14.52-.06.77M20 21c-1.39 0-2.78-.47-4-1.33-2.44 1.71-5.56 1.71-8 0C6.78 20.53 5.39 21 4 21H2v2h2c1.37 0 2.74-.35 4-1 2.5 1.3 5.5 1.3 8 0 1.26.65 2.62 1 4 1h2v-2z"/></svg>����������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-account-outline.svg�������������������0000664�0000000�0000000�00000000364�14753064456�0030161�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V8zm4 18H6V4h7v5h5zm-5-7c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2m2 5v1H7v-1c0-1.33 2.67-2 4-2s4 .67 4 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-account.svg���������������������������0000664�0000000�0000000�00000000401�14753064456�0026474�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9h5.5L13 3.5zM6 2h8l6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2m8 18v-1c0-1.33-2.67-2-4-2s-4 .67-4 2v1zm-4-8a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-alert-outline.svg���������������������0000664�0000000�0000000�00000000274�14753064456�0027634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 17h2v-2h-2zm0-10v6h2V7M4 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V8l-6-6M4 4h7v5h5v11H4Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-alert.svg�����������������������������0000664�0000000�0000000�00000000276�14753064456�0026161�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 17h2v-2h-2zm0-10v6h2V7M4 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V8l-6-6m-1 1.5L16.5 9H11Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-arrow-left-right-outline.svg����������0000664�0000000�0000000�00000000407�14753064456�0031720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.09 20c.12.72.37 1.39.72 2H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h8l6 6v5.09c-.33-.05-.66-.09-1-.09s-.67.04-1 .09V9h-5V4H6v16zM23 17l-3-2.5V16h-4v2h4v1.5zm-5 1.5L15 21l3 2.5V22h4v-2h-4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-arrow-left-right.svg������������������0000664�0000000�0000000�00000000417�14753064456�0030244�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13c.34 0 .67.04 1 .09V8l-6-6H6c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h7.81c-.51-.88-.81-1.9-.81-3 0-3.31 2.69-6 6-6m-6-9.5L18.5 9H13zm7 16V18h-4v-2h4v-1.5l3 2.5zm-2 .5h4v2h-4v1.5L15 21l3-2.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-arrow-up-down-outline.svg�������������0000664�0000000�0000000�00000000406�14753064456�0031243�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.09 20c.12.72.37 1.39.72 2H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h8l6 6v5.09c-.33-.05-.66-.09-1-.09s-.67.04-1 .09V9h-5V4H6v16zM17 15l-2.5 3H16v4h2v-4h1.5zm5 5v-4h-2v4h-1.5l2.5 3 2.5-3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-arrow-up-down.svg���������������������0000664�0000000�0000000�00000000421�14753064456�0027563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13c.34 0 .67.04 1 .09V8l-6-6H6c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h7.81c-.51-.88-.81-1.9-.81-3 0-3.31 2.69-6 6-6m-6-9.5L18.5 9H13zM23.5 20 21 23l-2.5-3H20v-4h2v4zm-4-2H18v4h-2v-4h-1.5l2.5-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-cabinet.svg���������������������������0000664�0000000�0000000�00000000317�14753064456�0026453�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 8h-4V6h4zm6-4v16c0 1.11-.89 2-2 2H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2m-2 9H6v7h12zm0-9H6v7h12zm-4 11h-4v2h4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-cad-box.svg���������������������������0000664�0000000�0000000�00000000767�14753064456�0026374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m-7.75 2.25h1.5v1.13c.83 0 1.5.67 1.5 1.5v2.49l-.14.13 1.07 1.86c.37-.6.57-1.29.57-2h1.5A5.2 5.2 0 0 1 16 13.77l2 3.48v1.5L16.7 18l-1.86-3.22a5.18 5.18 0 0 1-5.68 0L7.3 18l-1.3.75v-1.5l3.89-6.75-.14-.13V7.88c0-.83.67-1.5 1.5-1.5m.75 1.5c-.84 0-1.26 1.02-.66 1.62A.943.943 0 1 0 12 7.88m-1 3.72-1.09 1.9c1.26.86 2.92.86 4.18 0L13 11.6c-.57.51-1.43.51-2 0"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/material/file-cad.svg�������������������������������0000664�0000000�0000000�00000001066�14753064456�0025577�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6m-1 1.5L18.5 9H13m-3.12.25h1.24v.94c.69-.01 1.26.56 1.26 1.25v2.06l-.12.13.89 1.54c.32-.5.48-1.08.47-1.67h1.26c0 1.04-.38 2.05-1.05 2.85l1.67 2.9v1.25l-1.08-.62-1.55-2.69c-.7.46-1.53.7-2.37.7s-1.66-.24-2.37-.7l-1.55 2.69-1.08.62v-1.25l3.24-5.62-.12-.13v-2.06c0-.69.57-1.26 1.26-1.25m.62 1.25c-.69 0-1.04.84-.55 1.33s1.33.15 1.33-.55c0-.43-.35-.78-.78-.78m-.84 3.1-.9 1.57c1.05.71 2.43.71 3.48 0l-.9-1.57c-.47.46-1.21.46-1.68 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-cancel-outline.svg��������������������0000664�0000000�0000000�00000000560�14753064456�0027750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14 2 6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm4 18V9h-5V4H6v16zm-6.5-10c2.5 0 4.5 2 4.5 4.5S14 19 11.5 19 7 17 7 14.5 9 10 11.5 10m0 1.5c-.56 0-1.08.15-1.5.42L14.08 16c.27-.42.42-.94.42-1.5a3 3 0 0 0-3-3m-3 3a3 3 0 0 0 3 3c.56 0 1.08-.15 1.5-.42L8.92 13c-.27.42-.42.94-.42 1.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-cancel.svg����������������������������0000664�0000000�0000000�00000000555�14753064456�0026277�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9h5.5L13 3.5zM6 2h8l6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2m4.5 9C8 11 6 13 6 15.5S8 20 10.5 20s4.5-2 4.5-4.5-2-4.5-4.5-4.5m0 1.5a3 3 0 0 1 3 3c0 .56-.15 1.08-.42 1.5L9 12.92c.42-.27.94-.42 1.5-.42m-3 3c0-.56.15-1.08.42-1.5L12 18.08c-.42.27-.94.42-1.5.42a3 3 0 0 1-3-3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-certificate-outline.svg���������������0000664�0000000�0000000�00000000470�14753064456�0031005�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 13v-2l-2 1-2-1v2l-2 1 2 1v2l2-1 2 1v-2l2-1M14 2H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h1v-2H7V4h6v4h4v10h-1v2h1a2 2 0 0 0 2-2V7m-5 6v-2l-2 1-2-1v2l-2 1 2 1v2l2-1 2 1v-2l2-1m-6 9 2-1 2 1v-5h-4m4-5v-2l-2 1-2-1v2l-2 1 2 1v2l2-1 2 1v-2l2-1Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-certificate.svg�����������������������0000664�0000000�0000000�00000000323�14753064456�0027325�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3v3l2-1 2 1v-3h3a2 2 0 0 0 2-2V7m-5 8v2l-2-1-2 1v-2l-2-1 2-1v-2l2 1 2-1v2l2 1m-3-6V3.5L17.5 8Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-chart-check-outline.svg���������������0000664�0000000�0000000�00000000374�14753064456�0030702�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.5 17-5 5-3.5-3.5 1.5-1.5 2 2 3.5-3.5zM6 2c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h7.8c-.4-.6-.6-1.3-.7-2H6V4h7v5h5v4.1c.3-.1.7-.1 1-.1s.7 0 1 .1V8l-6-6zm5 9v8h2v-8zm-4 2v6h2v-6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-chart-check.svg�����������������������0000664�0000000�0000000�00000000403�14753064456�0027216�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.5 17-5 5-3.5-3.5 1.5-1.5 2 2 3.5-3.5zM6 2c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h7.8c-.5-.9-.8-1.9-.8-3v1h-2v-8h2v7c0-3.3 2.7-6 6-6 .3 0 .7 0 1 .1V8l-6-6zm7 1.5L18.5 9H13zM7 14h2v6H7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-chart-outline.svg���������������������0000664�0000000�0000000�00000000301�14753064456�0027615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8zm4 18H6V4h7v5h5zm-9-7v6H7v-6zm6 2v4h2v-4zm-4-4v8h2v-8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-chart.svg�����������������������������0000664�0000000�0000000�00000000303�14753064456�0026142�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9h5.5L13 3.5zM6 2h8l6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2m1 18h2v-6H7zm4 0h2v-8h-2zm4 0h2v-4h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-check-outline.svg���������������������0000664�0000000�0000000�00000000367�14753064456�0027605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.5 17-5 5-3.5-3.5 1.5-1.5 2 2 3.5-3.5zm-10.41 3H6V4h7v5h5v4.09c.33-.05.66-.09 1-.09s.67.04 1 .09V8l-6-6H6a2 2 0 0 0-2 2v16c0 1.11.89 2 2 2h7.81c-.35-.61-.6-1.28-.72-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-check.svg�����������������������������0000664�0000000�0000000�00000000373�14753064456�0026125�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.5 17-5 5-3.5-3.5 1.5-1.5 2 2 3.5-3.5zM6 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h7.81c-.53-.91-.81-1.95-.81-3 0-3.31 2.69-6 6-6 .34 0 .67.03 1 .08V8l-6-6m-1 1.5L18.5 9H13Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-clock-outline.svg���������������������0000664�0000000�0000000�00000000474�14753064456�0027622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h8.41A7 7 0 0 0 16 23a7 7 0 0 0 7-7 7 7 0 0 0-5-6.7V8l-6-6zm0 2h7v5h5a7 7 0 0 0-7 7 7 7 0 0 0 1.26 4H4zm12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m-1 1v5l3.61 2.16.75-1.22-2.86-1.69V12z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-clock.svg�����������������������������0000664�0000000�0000000�00000000446�14753064456�0026144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2c-1.11 0-2 .89-2 2v16a2 2 0 0 0 2 2h8.41A7 7 0 0 0 16 23a7 7 0 0 0 7-7 7 7 0 0 0-5-6.7V8l-6-6zm7 1.5L16.5 9H11zm5 7.5a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m-1 1v5l3.61 2.16.75-1.22-2.86-1.69V12z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-cloud-outline.svg���������������������0000664�0000000�0000000�00000000472�14753064456�0027633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V8zm4 18H6V4h7v5h5zm-1-3.08c0 1.15-.93 2.08-2.08 2.08H9.5A2.5 2.5 0 0 1 7 16.5c0-1.29 1-2.35 2.23-2.5.52-1 1.56-1.67 2.77-1.67 1.5 0 2.78 1.09 3.07 2.5 1.07.1 1.93.99 1.93 2.09"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-cloud.svg�����������������������������0000664�0000000�0000000�00000000421�14753064456�0026150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9h5.5L13 3.5zM6 2h8l6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2m9.68 13a3.758 3.758 0 0 0-7-1A3.03 3.03 0 0 0 6 17a3 3 0 0 0 3 3h6.5a2.5 2.5 0 0 0 2.5-2.5c0-1.32-1.03-2.39-2.32-2.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-code-outline.svg����������������������0000664�0000000�0000000�00000000422�14753064456�0027432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V8zm4 18H6V4h7v5h5zm-8.46-4.35 2.09 2.09L10.35 19 7 15.65l3.35-3.35 1.28 1.26zm7.46 0L13.65 19l-1.27-1.26 2.09-2.09-2.09-2.09 1.27-1.26z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-code.svg������������������������������0000664�0000000�0000000�00000000423�14753064456�0025756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9h5.5L13 3.5zM6 2h8l6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2m.12 13.5 3.74 3.74 1.42-1.41-2.33-2.33 2.33-2.33-1.42-1.41zm11.16 0-3.74-3.74-1.42 1.41 2.33 2.33-2.33 2.33 1.42 1.41z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-cog-outline.svg�����������������������0000664�0000000�0000000�00000001365�14753064456�0027277�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2a2 2 0 0 0-2 2v16c0 1.11.89 2 2 2h6v-2H6V4h7v5h5v3h2V8l-6-6m4 12a.26.26 0 0 0-.26.21l-.19 1.32c-.3.13-.59.29-.85.47l-1.24-.5c-.11 0-.24 0-.31.13l-1 1.73c-.06.11-.04.24.06.32l1.06.82a4.2 4.2 0 0 0 0 1l-1.06.82a.26.26 0 0 0-.06.32l1 1.73c.06.13.19.13.31.13l1.24-.5c.26.18.54.35.85.47l.19 1.32c.02.12.12.21.26.21h2c.11 0 .22-.09.24-.21l.19-1.32c.3-.13.57-.29.84-.47l1.23.5c.13 0 .26 0 .33-.13l1-1.73a.26.26 0 0 0-.06-.32l-1.07-.82c.02-.17.04-.33.04-.5s-.01-.33-.04-.5l1.06-.82a.26.26 0 0 0 .06-.32l-1-1.73c-.06-.13-.19-.13-.32-.13l-1.23.5c-.27-.18-.54-.35-.85-.47l-.19-1.32A.236.236 0 0 0 20 14m-1 3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5c-.84 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-cog.svg�������������������������������0000664�0000000�0000000�00000001452�14753064456�0025617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2c-1.11 0-2 .89-2 2v16a2 2 0 0 0 2 2h6.68a7 7 0 0 1-.68-3 7 7 0 0 1 7-7 7 7 0 0 1 1 .08V8l-6-6zm7 1.5L18.5 9H13zM18 14a.26.26 0 0 0-.26.21l-.19 1.32c-.3.13-.59.29-.85.47l-1.24-.5c-.11 0-.24 0-.31.13l-1 1.73c-.06.11-.04.24.06.32l1.06.82a4.2 4.2 0 0 0 0 1l-1.06.82a.26.26 0 0 0-.06.32l1 1.73c.06.13.19.13.31.13l1.24-.5c.26.18.54.35.85.47l.19 1.32c.02.12.12.21.26.21h2c.11 0 .22-.09.24-.21l.19-1.32c.3-.13.57-.29.84-.47l1.23.5c.13 0 .26 0 .33-.13l1-1.73a.26.26 0 0 0-.06-.32l-1.07-.82c.02-.17.04-.33.04-.5s-.01-.33-.04-.5l1.06-.82a.26.26 0 0 0 .06-.32l-1-1.73c-.06-.13-.19-.13-.32-.13l-1.23.5c-.27-.18-.54-.35-.85-.47l-.19-1.32A.236.236 0 0 0 20 14zm1 3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5c-.84 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-compare.svg���������������������������0000664�0000000�0000000�00000000357�14753064456�0026500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 18H6v-2h4zm0-4H6v-2h4zm0-13v1H6c-1.11 0-2 .89-2 2v16a2 2 0 0 0 2 2h4v1h2V1zm10 7v12c0 1.11-.89 2-2 2h-4v-2h4v-9h-4V9h4.5L14 4.5V2zm-4 6h-2v-2h2zm0 4h-2v-2h2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-delimited-outline.svg�����������������0000664�0000000�0000000�00000000263�14753064456�0030463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8zm4 18H6V4h7v5h5zm-8-1 2-4H9v-5h6v5l-2 4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-delimited.svg�������������������������0000664�0000000�0000000�00000000264�14753064456�0027007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8zm1 14-2 4h-3l2-4H9v-5h6zm-2-7V3.5L18.5 9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-document-alert-outline.svg������������0000664�0000000�0000000�00000000321�14753064456�0031441�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 17h2v-2h-2zm0-10v6h2V7M6 16h5v2H6m0-6h8v2H6M4 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V8l-6-6M4 4h7v5h5v11H4Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-document-alert.svg��������������������0000664�0000000�0000000�00000000323�14753064456�0027766�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 17h2v-2h-2zm0-10v6h2V7zm-9 2h5.5L11 3.5zM4 2h8l6 6v12c0 1.11-.89 2-2 2H4a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2m9 16v-2H4v2zm3-4v-2H4v2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-document-arrow-right-outline.svg������0000664�0000000�0000000�00000000374�14753064456�0032607�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23 19-3-3v2h-4v2h4v2zm-9.2 3H6c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h8l6 6v5.1c-.3-.1-.7-.1-1-.1s-.7 0-1 .1V9h-5V4H6v16h7.1c.1.7.4 1.4.7 2M8 12h8v1.8c-.1.1-.2.1-.3.2H8zm0 4h5v2H8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-document-arrow-right.svg��������������0000664�0000000�0000000�00000000416�14753064456�0031127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23 19-3-3v2h-4v2h4v2zm-10 0c0-.3 0-.7.1-1H6v-2h7.8c.5-.8 1.1-1.5 1.9-2H6v-2h12v1.1c.3-.1.7-.1 1-.1s.7 0 1 .1V8l-6-6H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h7.8c-.5-.9-.8-1.9-.8-3m0-15.5L18.5 9H13z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-document-check-outline.svg������������0000664�0000000�0000000�00000000416�14753064456�0031414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.5 17-5 5-3.5-3.5 1.5-1.5 2 2 3.5-3.5zM6 2a2 2 0 0 0-2 2v16c0 1.11.89 2 2 2h7.81c-.36-.62-.61-1.3-.73-2H6V4h7v5h5v4.08c.33-.05.67-.08 1-.08.34 0 .67.03 1 .08V8l-6-6M8 12v2h8v-2m-8 4v2h5v-2Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-document-check.svg��������������������0000664�0000000�0000000�00000000474�14753064456�0027743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.5 17-5 5-3.5-3.5 1.5-1.5 2 2 3.5-3.5zM6 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h7.81c-.53-.91-.81-1.95-.81-3 0-.33.03-.67.08-1H6v-2h7.81c.46-.8 1.1-1.5 1.87-2H6v-2h12v1.08c.33-.05.67-.08 1-.08.34 0 .67.03 1 .08V8l-6-6m-1 1.5L18.5 9H13Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-document-edit-outline.svg�������������0000664�0000000�0000000�00000000433�14753064456�0031263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 12h8v2H8zm2 8H6V4h7v5h5v3.1l2-2V8l-6-6H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h4zm-2-2h4.1l.9-.9V16H8zm12.2-5c.1 0 .3.1.4.2l1.3 1.3c.2.2.2.6 0 .8l-1 1-2.1-2.1 1-1c.1-.1.2-.2.4-.2m0 3.9L14.1 23H12v-2.1l6.1-6.1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-document-edit.svg���������������������0000664�0000000�0000000�00000000526�14753064456�0027611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2c-1.11 0-2 .89-2 2v16a2 2 0 0 0 2 2h4v-1.91L12.09 18H6v-2h8.09l2-2H6v-2h12.09L20 10.09V8l-6-6zm7 1.5L18.5 9H13zm7.15 9.5a.55.55 0 0 0-.4.16l-1.02 1.02 2.09 2.08 1.02-1.01c.21-.22.21-.58 0-.79l-1.3-1.3a.54.54 0 0 0-.39-.16m-2.01 1.77L12 20.92V23h2.08l6.15-6.15z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-document-minus-outline.svg������������0000664�0000000�0000000�00000000362�14753064456�0031472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 18h-8v2h8M6 2a2 2 0 0 0-2 2v16c0 1.11.89 2 2 2h7.81c-.36-.62-.61-1.3-.73-2H6V4h7v5h5v4.08c.33-.05.67-.08 1-.08.34 0 .67.03 1 .08V8l-6-6M8 12v2h8v-2m-8 4v2h5v-2Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-document-minus.svg��������������������0000664�0000000�0000000�00000000440�14753064456�0030012�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 18h8v2h-8M6 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h7.81c-.53-.91-.81-1.95-.81-3 0-.33.03-.67.08-1H6v-2h7.81c.46-.8 1.1-1.5 1.87-2H6v-2h12v1.08c.33-.05.67-.08 1-.08.34 0 .67.03 1 .08V8l-6-6m-1 1.5L18.5 9H13Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-document-multiple-outline.svg���������0000664�0000000�0000000�00000000323�14753064456�0032167�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 0H8C6.9 0 6 .9 6 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6zm4 18H8V2h7v5h5zM4 4v18h16v2H4c-1.1 0-2-.9-2-2V4zm6 6v2h8v-2zm0 4v2h5v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-document-multiple.svg�����������������0000664�0000000�0000000�00000000331�14753064456�0030511�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4v18h16v2H4c-1.1 0-2-.9-2-2V4zm11 3h5.5L15 1.5zM8 0h8l6 6v12c0 1.11-.89 2-2 2H8a2 2 0 0 1-2-2V2c0-1.11.89-2 2-2m9 16v-2H8v2zm3-4v-2H8v2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-document-outline.svg������������������0000664�0000000�0000000�00000000262�14753064456�0030340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zm0 2h7v5h5v11H6zm2 8v2h8v-2zm0 4v2h5v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-document-plus-outline.svg�������������0000664�0000000�0000000�00000000406�14753064456�0031321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 18h-3v-3h-2v3h-3v2h3v3h2v-3h3M6 2a2 2 0 0 0-2 2v16c0 1.11.89 2 2 2h7.81c-.36-.62-.61-1.3-.73-2H6V4h7v5h5v4.08c.33-.05.67-.08 1-.08.34 0 .67.03 1 .08V8l-6-6M8 12v2h8v-2m-8 4v2h5v-2Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-document-plus.svg���������������������0000664�0000000�0000000�00000000454�14753064456�0027647�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h7.81c-.53-.91-.81-1.95-.81-3 0-.33.03-.67.08-1H6v-2h7.81c.46-.8 1.1-1.5 1.87-2H6v-2h12v1.08c.33-.05.67-.08 1-.08s.67.03 1 .08V8zm-1 7V3.5L18.5 9zm5 6v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-document-refresh-outline.svg����������0000664�0000000�0000000�00000000672�14753064456�0032001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2c-.53 0-1.04.21-1.41.59C4.21 2.96 4 3.47 4 4v16c0 .53.21 1.04.59 1.41.37.38.88.59 1.41.59h7c-.37-.6-.66-1.28-.83-2H6V4h7v5h5v3h.5c.5 0 1 .06 1.5.17V8l-6-6zm6 16c.07-.7.24-1.38.5-2H8v2zm1.81-4c.62-.64 1.36-1.15 2.19-1.5V12H8v2zm4.19.5c1.11 0 2.11.45 2.83 1.17L22 14.5v4h-4l1.77-1.77A2.5 2.5 0 1 0 20 20h1.71A3.99 3.99 0 0 1 18 22.5c-2.21 0-4-1.79-4-4s1.79-4 4-4"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-document-refresh.svg������������������0000664�0000000�0000000�00000000546�14753064456�0030324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2h8l6 6v4.17c-.5-.11-1-.17-1.5-.17H6v2h7.81c-.55.58-1 1.25-1.31 2H6v2h6v.5c0 1.29.38 2.5 1 3.5H6a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2m7 7h5.5L13 3.5zm5 5.5c1.11 0 2.11.45 2.83 1.17L22 14.5v4h-4l1.77-1.77A2.5 2.5 0 1 0 20 20h1.71A3.99 3.99 0 0 1 18 22.5c-2.21 0-4-1.79-4-4s1.79-4 4-4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-document-remove-outline.svg�����������0000664�0000000�0000000�00000000535�14753064456�0031636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.54 21.12 20.41 19l2.13-2.12-1.42-1.42L19 17.59l-2.12-2.13-1.42 1.42L17.59 19l-2.13 2.12 1.42 1.42L19 20.41l2.12 2.13M6 2a2 2 0 0 0-2 2v16c0 1.11.89 2 2 2h7.81c-.36-.62-.61-1.3-.73-2H6V4h7v5h5v4.08c.33-.05.67-.08 1-.08.34 0 .67.03 1 .08V8l-6-6M8 12v2h8v-2m-8 4v2h5v-2Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-document-remove.svg�������������������0000664�0000000�0000000�00000000613�14753064456�0030156�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.12 15.46 19 17.59l-2.12-2.13-1.42 1.42L17.59 19l-2.13 2.12 1.42 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19l2.13-2.12M6 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h7.81c-.53-.91-.81-1.95-.81-3 0-.33.03-.67.08-1H6v-2h7.81c.46-.8 1.1-1.5 1.87-2H6v-2h12v1.08c.33-.05.67-.08 1-.08.34 0 .67.03 1 .08V8l-6-6m-1 1.5L18.5 9H13Z"/></svg>���������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-document.svg��������������������������0000664�0000000�0000000�00000000265�14753064456�0026666�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9h5.5L13 3.5zM6 2h8l6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2m9 16v-2H6v2zm3-4v-2H6v2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-download-outline.svg������������������0000664�0000000�0000000�00000000263�14753064456�0030332�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14 2 6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm4 18V9h-5V4H6v16zm-6-1-4-4h2.5v-3h3v3H16z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-download.svg��������������������������0000664�0000000�0000000�00000000273�14753064456�0026656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V8zm-2 17-4-4h2.5v-3h3v3H16zm1-10V3.5L18.5 9z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-edit-outline.svg����������������������0000664�0000000�0000000�00000000376�14753064456�0027455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 20H6V4h7v5h5v3.1l2-2V8l-6-6H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h4zm10.2-7c.1 0 .3.1.4.2l1.3 1.3c.2.2.2.6 0 .8l-1 1-2.1-2.1 1-1c.1-.1.2-.2.4-.2m0 3.9L14.1 23H12v-2.1l6.1-6.1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-edit.svg������������������������������0000664�0000000�0000000�00000000415�14753064456�0025772�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h4v-1.9l10-10V8l-6-6zm7 1.5L18.5 9H13zm7.1 9.5c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6 0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-2 1.8L12 20.9V23h2.1l6.1-6.1z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-excel-box-outline.svg�����������������0000664�0000000�0000000�00000000353�14753064456�0030411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 2h14v14H5zm8 7 3.2 5h-2L12 13.2 9.8 17h-2l3.2-5-3.2-5h2l2.2 3.8L14.2 7h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-excel-box.svg�������������������������0000664�0000000�0000000�00000000332�14753064456�0026731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.2 17h-2L12 13.2 9.8 17h-2l3.2-5-3.2-5h2l2.2 3.8L14.2 7h2L13 12m6-9H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-excel-outline.svg���������������������0000664�0000000�0000000�00000000345�14753064456�0027624�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V8zm4 18H6V4h7v5h5zm-5.1-5.5 2.9 4.5H14l-2-3.4-2 3.4H8.2l2.9-4.5L8.2 10H10l2 3.4 2-3.4h1.8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-excel.svg�����������������������������0000664�0000000�0000000�00000000340�14753064456�0026142�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zm1.8 18H14l-2-3.4-2 3.4H8.2l2.9-4.5L8.2 11H10l2 3.4 2-3.4h1.8l-2.9 4.5zM13 9V3.5L18.5 9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-export-outline.svg��������������������0000664�0000000�0000000�00000000314�14753064456�0030041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8zm4 18H6V4h7v5h5zm-2-9v7.1L13.9 16l-2.8 2.8L8.3 16l2.8-2.8L8.9 11z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-export.svg����������������������������0000664�0000000�0000000�00000000326�14753064456�0026367�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6m-1 1.5L18.5 9H13m-4.07 3.22H16v7.07l-2.12-2.12L11.05 20l-2.83-2.83 2.83-2.82"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-eye-outline.svg�����������������������0000664�0000000�0000000�00000000636�14753064456�0027311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 18c.56 0 1 .44 1 1s-.44 1-1 1-1-.44-1-1 .44-1 1-1m0-3c-2.73 0-5.06 1.66-6 4 .94 2.34 3.27 4 6 4s5.06-1.66 6-4c-.94-2.34-3.27-4-6-4m0 6.5a2.5 2.5 0 0 1-2.5-2.5 2.5 2.5 0 0 1 2.5-2.5 2.5 2.5 0 0 1 2.5 2.5 2.5 2.5 0 0 1-2.5 2.5M9.27 20H6V4h7v5h5v4.07c.7.08 1.36.25 2 .49V8l-6-6H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h4.5a8.2 8.2 0 0 1-1.23-2"/></svg>��������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-eye.svg�������������������������������0000664�0000000�0000000�00000000730�14753064456�0025627�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 18c.56 0 1 .44 1 1s-.44 1-1 1-1-.44-1-1 .44-1 1-1m0-3c-2.73 0-5.06 1.66-6 4 .94 2.34 3.27 4 6 4s5.06-1.66 6-4c-.94-2.34-3.27-4-6-4m0 6.5a2.5 2.5 0 0 1-2.5-2.5 2.5 2.5 0 0 1 2.5-2.5 2.5 2.5 0 0 1 2.5 2.5 2.5 2.5 0 0 1-2.5 2.5m-7.86-1.75L8.85 19l.29-.74C10.43 15.06 13.5 13 17 13c1.05 0 2.06.21 3 .56V8l-6-6H6c-1.11 0-2 .89-2 2v16a2 2 0 0 0 2 2h4.5c-.55-.66-1-1.42-1.36-2.25M13 3.5 18.5 9H13z"/></svg>����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-find-outline.svg����������������������0000664�0000000�0000000�00000000766�14753064456�0027453�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zM6 4h7l5 5v8.58l-1.84-1.84a4.97 4.97 0 0 0-.66-6.28A4.92 4.92 0 0 0 12 8c-1.28 0-2.55.5-3.53 1.46-1.97 1.95-1.97 5.11 0 7.04.97 1 2.25 1.47 3.53 1.47.96 0 1.92-.28 2.75-.83L17.6 20H6zm8.11 11.1c-.56.56-1.31.9-2.11.9s-1.55-.33-2.11-.9C9.33 14.54 9 13.79 9 13c0-.81.32-1.56.89-2.12.56-.57 1.31-.88 2.11-.88s1.55.31 2.11.88c.56.56.89 1.31.89 2.12 0 .79-.32 1.54-.89 2.1"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/material/file-find.svg������������������������������0000664�0000000�0000000�00000000467�14753064456�0025774�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 13a3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3m11 6.59V8l-6-6H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12c.45 0 .85-.15 1.19-.4l-4.43-4.43c-.8.52-1.76.83-2.76.83a5 5 0 0 1-5-5 5 5 0 0 1 5-5 5 5 0 0 1 5 5c0 1-.31 1.96-.83 2.75z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-gif-box.svg���������������������������0000664�0000000�0000000�00000000502�14753064456�0026375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m-9 7.5H7.5v3h1V12H10v1.7c0 .7-.5 1.3-1.3 1.3H7.3c-.8 0-1.3-.7-1.3-1.3v-3.3C6 9.7 6.5 9 7.3 9h1.3c.9 0 1.4.7 1.4 1.3zm3 4.5h-1.5V9H13zm4.5-4.5H16v1h1.5V13H16v2h-1.5V9h3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-hidden.svg����������������������������0000664�0000000�0000000�00000000560�14753064456�0026301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9h1v2h-3V7h2zm5.5 0-2.12-2.12 1.25-1.25L20 8v2h-2v1h-3V9zM13 3.5V2h-1v2h1v2h-2V4H9V2H8v2H6v1H4V4c0-1.11.89-2 2-2h8l2.36 2.36-1.25 1.25zM20 20a2 2 0 0 1-2 2h-2v-2h2v-1h2zm-2-5h2v3h-2zm-6 7v-2h3v2zm-4 0v-2h3v2zm-2 0a2 2 0 0 1-2-2v-2h2v2h1v2zm-2-8h2v3H4zm0-4h2v3H4zm14 1h2v3h-2zM4 6h2v3H4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-image-marker-outline.svg��������������0000664�0000000�0000000�00000000763�14753064456�0031071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.5 12c-.83 0-1.5-.67-1.5-1.5S7.67 9 8.5 9s1.5.67 1.5 1.5S9.33 12 8.5 12m5.5 7c-.57-1.14-1-2.36-1-3.5 0-.16 0-.32.03-.47L12 14l-5 5zm-8 1V4h7v5h5v1.03c.17-.03.33-.03.5-.03.5 0 1 .08 1.5.22V8l-6-6H6a2 2 0 0 0-2 2v16c0 1.11.89 2 2 2h9.91c-.41-.56-.91-1.24-1.36-2zm16-4.5c0 2.6-3.5 6.5-3.5 6.5S15 18.1 15 15.5c0-1.9 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5m-2.3.1c0-.6-.6-1.2-1.2-1.2s-1.2.5-1.2 1.2c0 .6.5 1.2 1.2 1.2s1.3-.6 1.2-1.2"/></svg>�������������mkdocs-material-9.6.4/material/templates/.icons/material/file-image-marker.svg����������������������0000664�0000000�0000000�00000000703�14753064456�0027406�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6 20 6-6 1.03 1.03c.25-2.77 2.65-5.03 5.47-5.03.5 0 1 .08 1.5.22V8l-6-6H6c-1.11 0-2 .89-2 2v16a2 2 0 0 0 2 2h9.91c-.41-.56-.91-1.24-1.36-2zm7-16.5L18.5 9H13zM8 9a2 2 0 1 1 0 4c-1.11 0-2-.89-2-2s.9-2 2-2m10.5 3c-1.9 0-3.5 1.6-3.5 3.5 0 2.6 3.5 6.5 3.5 6.5s3.5-3.9 3.5-6.5c0-1.9-1.6-3.5-3.5-3.5m0 4.8c-.7 0-1.2-.6-1.2-1.2 0-.7.6-1.2 1.2-1.2s1.2.6 1.2 1.2c.1.6-.5 1.2-1.2 1.2"/></svg>�������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-image-minus-outline.svg���������������0000664�0000000�0000000�00000000522�14753064456�0030734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7 19 5-5 1.88 1.88c-.55.91-.88 1.98-.88 3.12zm3-8.5C10 9.67 9.33 9 8.5 9S7 9.67 7 10.5 7.67 12 8.5 12s1.5-.67 1.5-1.5m3.09 9.5H6V4h7v5h5v4.09c.33-.05.66-.09 1-.09s.67.04 1 .09V8l-6-6H6a2 2 0 0 0-2 2v16c0 1.11.89 2 2 2h7.81c-.35-.61-.6-1.28-.72-2M15 18v2h8v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-image-minus.svg�����������������������0000664�0000000�0000000�00000000505�14753064456�0027260�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.09 20H6l6-6 1.88 1.88c.62-.98 1.48-1.78 2.52-2.28L18 12v1.09c.33-.05.66-.09 1-.09s.67.04 1 .09V8l-6-6H6c-1.11 0-2 .89-2 2v16a2 2 0 0 0 2 2h7.81c-.35-.61-.6-1.28-.72-2M13 3.5 18.5 9H13zM8 9a2 2 0 1 1 0 4c-1.11 0-2-.89-2-2s.9-2 2-2m15 9v2h-8v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-image-outline.svg���������������������0000664�0000000�0000000�00000000407�14753064456�0027605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14 2 6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm4 18V9h-5V4H6v16zm-1-7v6H7l5-5 2 2m-4-5.5A1.5 1.5 0 0 1 8.5 12 1.5 1.5 0 0 1 7 10.5 1.5 1.5 0 0 1 8.5 9a1.5 1.5 0 0 1 1.5 1.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-image-plus-outline.svg����������������0000664�0000000�0000000�00000000546�14753064456�0030572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7 19 5-5 1.88 1.88c-.55.91-.88 1.98-.88 3.12zm3-8.5C10 9.67 9.33 9 8.5 9S7 9.67 7 10.5 7.67 12 8.5 12s1.5-.67 1.5-1.5m3.09 9.5H6V4h7v5h5v4.09c.33-.05.66-.09 1-.09s.67.04 1 .09V8l-6-6H6a2 2 0 0 0-2 2v16c0 1.11.89 2 2 2h7.81c-.35-.61-.6-1.28-.72-2M18 15v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-image-plus.svg������������������������0000664�0000000�0000000�00000000531�14753064456�0027107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.09 20H6l6-6 1.88 1.88c.62-.98 1.48-1.78 2.52-2.28L18 12v1.09c.33-.05.66-.09 1-.09s.67.04 1 .09V8l-6-6H6c-1.11 0-2 .89-2 2v16a2 2 0 0 0 2 2h7.81c-.35-.61-.6-1.28-.72-2M13 3.5 18.5 9H13zM8 9a2 2 0 1 1 0 4c-1.11 0-2-.89-2-2s.9-2 2-2m12 6v3h3v2h-3v3h-2v-3h-3v-2h3v-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-image-remove-outline.svg��������������0000664�0000000�0000000�00000000673�14753064456�0031105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7 19 5-5 1.88 1.88c-.55.91-.88 1.98-.88 3.12zm3-8.5C10 9.67 9.33 9 8.5 9S7 9.67 7 10.5 7.67 12 8.5 12s1.5-.67 1.5-1.5m3.09 9.5H6V4h7v5h5v4.09c.33-.05.66-.09 1-.09s.67.04 1 .09V8l-6-6H6a2 2 0 0 0-2 2v16c0 1.11.89 2 2 2h7.81c-.35-.61-.6-1.28-.72-2m8.03-4.54L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19l2.13-2.12z"/></svg>���������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-image-remove.svg����������������������0000664�0000000�0000000�00000000657�14753064456�0027432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.09 20H6l6-6 1.88 1.88c.62-.98 1.48-1.78 2.52-2.28L18 12v1.09c.33-.05.66-.09 1-.09s.67.04 1 .09V8l-6-6H6c-1.11 0-2 .89-2 2v16a2 2 0 0 0 2 2h7.81c-.35-.61-.6-1.28-.72-2M13 3.5 18.5 9H13zM8 9a2 2 0 1 1 0 4c-1.11 0-2-.89-2-2s.9-2 2-2m14.54 7.88L20.41 19l2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.41-1.42L17.59 19l-2.12-2.12 1.41-1.41L19 17.59l2.12-2.12z"/></svg>���������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-image.svg�����������������������������0000664�0000000�0000000�00000000355�14753064456�0026132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9h5.5L13 3.5zM6 2h8l6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2m0 18h12v-8l-4 4-2-2zM8 9a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-import-outline.svg��������������������0000664�0000000�0000000�00000000326�14753064456�0030035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V8zm4 18H6V4h7v5h5zm-3-8.07V19H7.93l2.12-2.12-2.83-2.83 2.83-2.83 2.83 2.83z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-import.svg����������������������������0000664�0000000�0000000�00000000324�14753064456�0026356�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6m-1 1.5L18.5 9H13m-2.95 2.22 2.83 2.83L15 11.93V19H7.93l2.12-2.12-2.83-2.83"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-jpg-box.svg���������������������������0000664�0000000�0000000�00000000623�14753064456�0026414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2M9 13.5c0 1.1-.9 1.5-2 1.5s-2-.4-2-1.5V12h1.5v1.5h1V9H9zm5-2c0 .8-.7 1.5-1.5 1.5h-1v2H10V9h2.5c.8 0 1.5.7 1.5 1.5zm5-1h-2.5v3h1V12H19v1.7c0 .7-.5 1.3-1.3 1.3h-1.3c-.8 0-1.3-.7-1.3-1.3v-3.3c-.1-.7.4-1.4 1.2-1.4h1.3c.8 0 1.3.7 1.3 1.3v.2m-7.4 0h1v1h-1z"/></svg>�������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-key-outline.svg�����������������������0000664�0000000�0000000�00000000335�14753064456�0027313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zm4 18H6V4h7v5h5m-5.17 6a3 3 0 1 0 0 2H14v2h2v-2h1v-2m-7 2a1 1 0 1 1 1-1 1 1 0 0 1-1 1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-key.svg�������������������������������0000664�0000000�0000000�00000000457�14753064456�0025643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 16c0 .6-.4 1-1 1s-1-.4-1-1 .4-1 1-1 1 .4 1 1m9-8v12c0 1.1-.9 2-2 2H6c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h8m4 13h-5.2c-.6-1.6-2.3-2.4-3.8-1.8-1.6.6-2.4 2.3-1.8 3.8s2.3 2.4 3.8 1.8c.9-.3 1.5-1 1.8-1.8H14v2h2v-2h2m.5-8L13 3.5V9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-link-outline.svg����������������������0000664�0000000�0000000�00000000630�14753064456�0027456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V8zm4 18H6V4h7v5h5zm-7-1h-.25C9.45 19 7 18.22 7 15.25s2.45-3.75 3.75-3.75H11V13h-.25c-.37 0-2.25.13-2.25 2.25 0 2.19 2 2.25 2.25 2.25H11zm3-3h-4v-1.5h4zm-1-4.5h.25c1.3 0 3.75.78 3.75 3.75S14.55 19 13.25 19H13v-1.5h.25c.37 0 2.25-.13 2.25-2.25 0-2.19-2-2.25-2.25-2.25H13z"/></svg>��������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-link.svg������������������������������0000664�0000000�0000000�00000000542�14753064456�0026003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V8zm-3 18h-1c-1.61 0-4-1.06-4-4 0-2.93 2.39-4 4-4h1v2h-1c-.46 0-2 .17-2 2 0 1.9 1.67 2 2 2h1zm4-5v2H9v-2zm-1 5h-1v-2h1c.46 0 2-.17 2-2 0-1.9-1.67-2-2-2h-1v-2h1c1.61 0 4 1.07 4 4 0 2.94-2.39 4-4 4M13 9V3.5L18.5 9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-lock-open-outline.svg�����������������0000664�0000000�0000000�00000000542�14753064456�0030412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 18.3v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-2.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5v.5h-1.3v-.5c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V17h4.3c.6 0 1.2.6 1.2 1.3M6 2c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h6v-2H6V4h7v5h5v1c.7 0 1.4.2 2 .4V8l-6-6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-lock-open.svg�������������������������0000664�0000000�0000000�00000000643�14753064456�0026737�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 18.3v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-2.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5v.5h-1.3v-.5c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V17h4.3c.6 0 1.2.6 1.2 1.3M6 2c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h6v-3.8c0-1 .4-1.7 1-2.2.1-.1.2-.1.2-.2v-1.3c0-2.7 2.4-4.5 4.8-4.5.7 0 1.4.2 2 .4V8l-6-6zm7 1.5L18.5 9H13z"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-lock-outline.svg����������������������0000664�0000000�0000000�00000000552�14753064456�0027454�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 13c-1.4 0-2.8 1.1-2.8 2.5V17c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3v-1.5c0-1.4-1.4-2.5-2.8-2.5m0 1.2c.8 0 1.5.5 1.5 1.3V17h-3v-1.5c0-.8.7-1.3 1.5-1.3M6 2c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h6v-2H6V4h7v5h5v2c.7 0 1.4.2 2 .4V8l-6-6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-lock.svg������������������������������0000664�0000000�0000000�00000000652�14753064456�0026000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 13c-1.4 0-2.8 1.1-2.8 2.5V17c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3v-1.5c0-1.4-1.4-2.5-2.8-2.5m0 1.2c.8 0 1.5.5 1.5 1.3V17h-3v-1.5c0-.8.7-1.3 1.5-1.3M6 2c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h6v-3.8c0-1 .4-1.7 1-2.2.1-.1.2-.1.2-.2v-.3c0-2.7 2.4-4.5 4.8-4.5.7 0 1.4.2 2 .4V8l-6-6zm7 1.5L18.5 9H13z"/></svg>��������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-marker-outline.svg��������������������0000664�0000000�0000000�00000000561�14753064456�0030005�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.55 20c.45.76.95 1.44 1.36 2H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h8l6 6v2.22c-.5-.14-1-.22-1.5-.22-.17 0-.33 0-.5.03V9h-5V4H6v16zM22 15.5c0 2.6-3.5 6.5-3.5 6.5S15 18.1 15 15.5c0-1.9 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5m-2.3.1c0-.6-.6-1.2-1.2-1.2s-1.2.5-1.2 1.2c0 .6.5 1.2 1.2 1.2s1.3-.6 1.2-1.2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-marker.svg����������������������������0000664�0000000�0000000�00000000610�14753064456�0026323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 10c.5 0 1 .08 1.5.22V8l-6-6H6c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h9.91C14.7 20.41 13 17.78 13 15.5c0-3 2.5-5.5 5.5-5.5M13 3.5 18.5 9H13zm5.5 8.5c-1.9 0-3.5 1.6-3.5 3.5 0 2.6 3.5 6.5 3.5 6.5s3.5-3.9 3.5-6.5c0-1.9-1.6-3.5-3.5-3.5m0 4.8c-.7 0-1.2-.6-1.2-1.2 0-.7.6-1.2 1.2-1.2s1.2.6 1.2 1.2c.1.6-.5 1.2-1.2 1.2"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-minus-outline.svg���������������������0000664�0000000�0000000�00000000336�14753064456�0027657�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.81 22H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h8l6 6v5.09c-.33-.05-.66-.09-1-.09s-.67.04-1 .09V9h-5V4H6v16h7.09c.12.72.37 1.39.72 2M23 18h-8v2h8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-minus.svg�����������������������������0000664�0000000�0000000�00000000337�14753064456�0026203�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h7.81c-.53-.91-.81-1.95-.81-3 0-3.31 2.69-6 6-6 .34 0 .67.03 1 .08V8zm-1 7V3.5L18.5 9zm10 11h-8v-2h8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-move-outline.svg����������������������0000664�0000000�0000000�00000000402�14753064456�0027464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6c-1.1 0-2 .9-2 2v16c0 .41.12.8.34 1.12.07.11.16.21.25.29.36.37.86.59 1.41.59h7.53c-.53-.58-.92-1.25-1.18-2H6V4h7v5h5v3c.7 0 1.37.12 2 .34V8zm4 21 5-4.5-3-2.7-2-1.8v3h-4v3h4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-move.svg������������������������������0000664�0000000�0000000�00000000347�14753064456�0026017�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 17h4v-3l5 4.5-5 4.5v-3h-4zm-1-8h5.5L13 3.5zM6 2h8l6 6v4.34c-.63-.22-1.3-.34-2-.34a6 6 0 0 0-6 6c0 1.54.58 2.94 1.53 4H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-multiple-outline.svg������������������0000664�0000000�0000000�00000000273�14753064456�0030357�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 0H8C6.9 0 6 .9 6 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6zm4 18H8V2h7v5h5zM4 4v18h16v2H4c-1.1 0-2-.9-2-2V4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-multiple.svg��������������������������0000664�0000000�0000000�00000000271�14753064456�0026700�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 7h5.5L15 1.5zM8 0h8l6 6v12a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2M4 4v18h16v2H4a2 2 0 0 1-2-2V4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-music-outline.svg���������������������0000664�0000000�0000000�00000000345�14753064456�0027644�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14 2 6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm4 18V9h-5V4H6v16zm-5-10v2h-2v5a2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2c.4 0 .7.1 1 .3V10z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-music.svg�����������������������������0000664�0000000�0000000�00000000342�14753064456�0026164�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zm-1 11h-2v5a2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2c.4 0 .7.1 1 .3V11h3zm0-4V3.5L18.5 9z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-outline.svg���������������������������0000664�0000000�0000000�00000000230�14753064456�0026517�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zm4 18H6V4h7v5h5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-pdf-box.svg���������������������������0000664�0000000�0000000�00000000506�14753064456�0026405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m-9.5 8.5c0 .8-.7 1.5-1.5 1.5H7v2H5.5V9H8c.8 0 1.5.7 1.5 1.5zm5 2c0 .8-.7 1.5-1.5 1.5h-2.5V9H13c.8 0 1.5.7 1.5 1.5zm4-3H17v1h1.5V13H17v2h-1.5V9h3zm-6.5 0h1v3h-1zm-5 0h1v1H7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-percent-outline.svg�������������������0000664�0000000�0000000�00000000521�14753064456�0030160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V8zm4 18H6V4h7v5h5zm-8-8.5c0 .83-.67 1.5-1.5 1.5S7 12.33 7 11.5 7.67 10 8.5 10s1.5.67 1.5 1.5m6 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5m0-6.15L8.37 19 7 17.65 14.65 10z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-percent.svg���������������������������0000664�0000000�0000000�00000000564�14753064456�0026512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14 2 6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zM7.37 20 15 12.35 13.65 11 6 18.65zM13 9h5.5L13 3.5zm-5.5 2A1.5 1.5 0 0 0 6 12.5 1.5 1.5 0 0 0 7.5 14 1.5 1.5 0 0 0 9 12.5 1.5 1.5 0 0 0 7.5 11m6 6a1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-phone-outline.svg���������������������0000664�0000000�0000000�00000000614�14753064456�0027634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V8zm4 18H6V4h7v5h5zm-9-6.67c.81 1.57 2.1 2.86 3.67 3.67l1.22-1.23c.16-.16.38-.2.57-.14.62.2 1.29.32 1.98.32.31 0 .56.24.56.55v1.95c0 .3-.25.55-.56.55C11.23 19 7 14.77 7 9.56c0-.31.25-.56.56-.56H9.5c.31 0 .56.25.56.56 0 .69.11 1.36.31 1.98.06.19.02.41-.14.57z"/></svg>��������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-phone.svg�����������������������������0000664�0000000�0000000�00000000625�14753064456�0026161�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V8zm3 17.44c0 .31-.25.56-.56.56C11.23 20 7 15.77 7 10.56c0-.31.25-.56.56-.56H9.5c.31 0 .56.25.56.56 0 .69.11 1.36.31 1.98.06.19.02.41-.14.57L9 14.33c.81 1.57 2.1 2.86 3.67 3.67l1.23-1.23c.15-.16.37-.2.56-.14.62.2 1.29.32 1.99.32.3 0 .55.24.55.55zM13 9V3.5L18.5 9z"/></svg>�����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-plus-outline.svg����������������������0000664�0000000�0000000�00000000362�14753064456�0027506�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.81 22H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h8l6 6v5.09c-.33-.05-.66-.09-1-.09s-.67.04-1 .09V9h-5V4H6v16h7.09c.12.72.37 1.39.72 2M23 18h-3v-3h-2v3h-3v2h3v3h2v-3h3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-plus.svg������������������������������0000664�0000000�0000000�00000000363�14753064456�0026032�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h7.81c-.53-.91-.81-1.95-.81-3 0-3.31 2.69-6 6-6 .34 0 .67.03 1 .08V8zm-1 7V3.5L18.5 9zm10 11h-3v3h-2v-3h-3v-2h3v-3h2v3h3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-png-box.svg���������������������������0000664�0000000�0000000�00000000613�14753064456�0026417�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2M9 11.5c0 .8-.7 1.5-1.5 1.5h-1v2H5V9h2.5c.8 0 1.5.7 1.5 1.5zm5 3.5h-1.5l-1-2.5V15H10V9h1.5l1 2.5V9H14zm5-4.5h-2.5v3h1V12H19v1.7c0 .7-.5 1.3-1.3 1.3h-1.3c-.8 0-1.3-.7-1.3-1.3v-3.3c-.1-.7.4-1.4 1.2-1.4h1.3c.8 0 1.3.7 1.3 1.3v.2zm-12.5 0h1v1h-1z"/></svg>���������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-powerpoint-box-outline.svg������������0000664�0000000�0000000�00000000605�14753064456�0031517�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 2h14v14H5zm10.1 2.88c-.65-.59-1.27-.88-2.8-.88H8v10h1.8v-3.6h2.5c1.5 0 2.16-.28 2.8-.82.64-.55.9-1.33.9-2.35 0-.97-.25-1.73-.9-2.35m-1.5 3.62c-.32.31-.7.5-1.38.5H9.8V8.4h2.3c.66 0 1.17.25 1.5.6s.5.72.5 1.24c0 .56-.18.95-.5 1.26"/></svg>���������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-powerpoint-box.svg��������������������0000664�0000000�0000000�00000000531�14753064456�0030040�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.8 13.4h2.5c1.5 0 2.16-.28 2.8-.82.64-.55.9-1.33.9-2.35 0-.97-.25-1.73-.9-2.35-.65-.59-1.27-.88-2.8-.88H8v10h1.8zM19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm-9.2 9V8.4h2.3c.66 0 1.17.25 1.5.6s.5.72.5 1.24c0 .56-.18.95-.5 1.26s-.7.5-1.38.5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-powerpoint-outline.svg����������������0000664�0000000�0000000�00000000507�14753064456�0030732�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V8zm4 18H6V4h7v5h5zm-2.8-9.2c-.5-.5-1.1-.8-2.4-.8H9v9h1.6v-3.3h2.2c1.3 0 1.8-.2 2.4-.7s.8-1.2.8-2.1-.2-1.5-.8-2.1M13.9 14c-.3.3-.6.5-1.2.5h-2.1v-3.2h2c.6 0 1 .2 1.3.5s.4.6.4 1.1-.1.8-.4 1.1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-powerpoint.svg������������������������0000664�0000000�0000000�00000000501�14753064456�0027247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.6 12.3h-2v3.2h2.1c.6 0 .9-.2 1.2-.5s.4-.6.4-1.1-.1-.8-.4-1.1-.7-.5-1.3-.5M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zm1.2 14c-.6.5-1.1.7-2.4.7h-2.2V20H9v-9h3.8c1.3 0 1.9.3 2.4.8.6.6.8 1.2.8 2.1s-.2 1.6-.8 2.1M13 9V3.5L18.5 9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-presentation-box.svg������������������0000664�0000000�0000000�00000000245�14753064456�0030347�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 16H5V8h14m0-5H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-question-outline.svg������������������0000664�0000000�0000000�00000000472�14753064456�0030374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V8zm4 18H6V4h7v5h5zm-3-7c0 1.89-2.25 2.07-2.25 3.76h-1.5c0-2.44 2.25-2.26 2.25-3.76 0-.82-.67-1.5-1.5-1.5s-1.5.68-1.5 1.5H9c0-1.65 1.34-3 3-3s3 1.35 3 3m-2.25 4.5V19h-1.5v-1.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-question.svg��������������������������0000664�0000000�0000000�00000000500�14753064456�0026707�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2c-1.11 0-2 .89-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zm7 1.5L18.5 9H13zM12 11a3 3 0 0 1 3 3c0 1.88-2.25 2.06-2.25 3.75h-1.5c0-2.44 2.25-2.25 2.25-3.75a1.5 1.5 0 0 0-1.5-1.5 1.5 1.5 0 0 0-1.5 1.5H9a3 3 0 0 1 3-3m-.75 7.5h1.5V20h-1.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-refresh-outline.svg�������������������0000664�0000000�0000000�00000000504�14753064456�0030157�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 14.5c1.11 0 2.11.45 2.83 1.17L22 14.5v4h-4l1.77-1.77A2.5 2.5 0 1 0 20 20h1.71A3.99 3.99 0 0 1 18 22.5c-2.21 0-4-1.79-4-4s1.79-4 4-4M14 2l6 6v4.17c-.5-.11-1-.17-1.5-.17H18V9h-5V4H6v16h6.17c.17.72.46 1.39.83 2H6c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-refresh.svg���������������������������0000664�0000000�0000000�00000000532�14753064456�0026503�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 14.5c1.11 0 2.11.45 2.83 1.17L22 14.5v4h-4l1.77-1.77A2.5 2.5 0 1 0 20 20h1.71A3.99 3.99 0 0 1 18 22.5c-2.21 0-4-1.79-4-4s1.79-4 4-4M13 9h5.5L13 3.5zM6 2h8l6 6v4.17c-.5-.11-1-.17-1.5-.17a6.5 6.5 0 0 0-6.5 6.5c0 1.29.37 2.5 1 3.5H6c-1.12 0-2-.9-2-2V4c0-1.11.89-2 2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-remove-outline.svg��������������������0000664�0000000�0000000�00000000506�14753064456�0030020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.81 22H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h8l6 6v5.09c-.33-.05-.66-.09-1-.09s-.67.04-1 .09V9h-5V4H6v16h7.09c.12.72.37 1.39.72 2m8.73-.88L20.41 19l2.13-2.12-1.42-1.41L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-remove.svg����������������������������0000664�0000000�0000000�00000000511�14753064456�0026337�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.12 22.54 19 20.41l-2.12 2.13-1.41-1.42L17.59 19l-2.12-2.12 1.41-1.41L19 17.59l2.12-2.12 1.42 1.41L20.41 19l2.13 2.12zM14 2H6c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h7.81c-.53-.91-.81-1.95-.81-3 0-3.31 2.69-6 6-6 .34 0 .67.03 1 .08V8zm-1 7V3.5L18.5 9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-replace-outline.svg�������������������0000664�0000000�0000000�00000000333�14753064456�0030134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14 3-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h7v2l4-3-4-3v2H4V3zm7 7v11a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2v-2h2v2h11v-9h-5V7H8v6H6V7a2 2 0 0 1 2-2h8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-replace.svg���������������������������0000664�0000000�0000000�00000000342�14753064456�0026457�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 12h5.5L14 6.5zM8 5h7l6 6v10a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2v-3h5v2l4-3-4-3v2H6V7a2 2 0 0 1 2-2m5.5-2H4v13h2v2H4a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h7.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-restore-outline.svg�������������������0000664�0000000�0000000�00000000617�14753064456�0030211�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8zm4 18H6V4h7l5 5zm-1-6.76c0 2.62-2.13 4.76-4.76 4.76-1.95 0-3.63-1.18-4.36-2.86H9.5c.61.86 1.61 1.43 2.74 1.43 1.84 0 3.33-1.5 3.33-3.33S14.08 9.9 12.24 9.9c-1.29 0-2.38.75-2.95 1.81l1.52 1.53H7V9.43l1.24 1.24a4.71 4.71 0 0 1 4-2.17c2.63-.03 4.76 2.11 4.76 4.74"/></svg>�����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-restore.svg���������������������������0000664�0000000�0000000�00000000516�14753064456�0026532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zm-2 16c-2.05 0-3.81-1.24-4.58-3h1.71c.63.9 1.68 1.5 2.87 1.5a3.5 3.5 0 0 0 3.5-3.5A3.5 3.5 0 0 0 12 9.5c-1.35 0-2.5.78-3.1 1.9l1.6 1.6h-4V9l1.3 1.3C8.69 8.92 10.23 8 12 8a5 5 0 0 1 5 5 5 5 0 0 1-5 5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-rotate-left-outline.svg���������������0000664�0000000�0000000�00000000344�14753064456�0030751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 11c0-4.42 3.58-8 8-8l1 .06v2.02L12 5c-3.31 0-6 2.69-6 6h3l-4 4-4-4zm13-4h-4c-1.1 0-2 .9-2 2v9a2 2 0 0 0 2 2h6c1.11 0 2-.89 2-2v-7zm2 11h-6V9h3v3h3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-rotate-left.svg�����������������������0000664�0000000�0000000�00000000352�14753064456�0027273�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 7h-4c-1.1 0-2 .9-2 2v9a2 2 0 0 0 2 2h6c1.11 0 2-.89 2-2v-7zm2 5h-3V9h.17L19 11.83zM4 11c0-4.42 3.58-8 8-8l1 .06v2.02L12 5c-3.31 0-6 2.69-6 6h3l-4 4-4-4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-rotate-right-outline.svg��������������0000664�0000000�0000000�00000000343�14753064456�0031133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11h3l-4 4-4-4h3c0-3.31-2.69-6-6-6l-1 .08V3.06L12 3c4.42 0 8 3.58 8 8M9 7H5c-1.1 0-2 .9-2 2v9a2 2 0 0 0 2 2h6c1.11 0 2-.89 2-2v-7zm2 11H5V9h3v3h3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-rotate-right.svg����������������������0000664�0000000�0000000�00000000350�14753064456�0027454�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 20a2 2 0 0 1-2-2V9c0-1.1.9-2 2-2h4l4 4v7c0 1.11-.89 2-2 2zm6-8.17L8.17 9H8v3h3zm9-.83h3l-4 4-4-4h3c0-3.31-2.69-6-6-6l-1 .08V3.06L12 3c4.42 0 8 3.58 8 8"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-search-outline.svg��������������������0000664�0000000�0000000�00000000663�14753064456�0027774�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h7c-.41-.25-.8-.56-1.14-.9-.33-.33-.61-.7-.86-1.1H6V4h7v5h5v1.18c.71.16 1.39.43 2 .82V8zm6.31 16.9c1.33-2.11.69-4.9-1.4-6.22-2.11-1.33-4.91-.68-6.22 1.4-1.34 2.11-.69 4.89 1.4 6.22 1.46.93 3.32.93 4.79.02L22 23.39 23.39 22zm-3.81.1a2.5 2.5 0 0 1-2.5-2.5 2.5 2.5 0 0 1 2.5-2.5 2.5 2.5 0 0 1 2.5 2.5 2.5 2.5 0 0 1-2.5 2.5"/></svg>�����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-search.svg����������������������������0000664�0000000�0000000�00000000674�14753064456�0026321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h7c-.41-.25-.8-.56-1.14-.9a6.48 6.48 0 0 1-.36-9.18C13.69 9.5 17.33 9.13 20 11V8zm-1 7V3.5L18.5 9zm7.31 9.9c1.33-2.11.69-4.9-1.4-6.22-2.11-1.33-4.91-.68-6.22 1.4-1.34 2.11-.69 4.89 1.4 6.22 1.46.93 3.32.93 4.79.02L22 23.39 23.39 22zm-3.81.1a2.5 2.5 0 0 1-2.5-2.5 2.5 2.5 0 0 1 2.5-2.5 2.5 2.5 0 0 1 2.5 2.5 2.5 2.5 0 0 1-2.5 2.5"/></svg>��������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-send-outline.svg����������������������0000664�0000000�0000000�00000000272�14753064456�0027454�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V8zm4 18H6V4h7v5h5zm-5.46-1.5v-2h-4v-2h4v-2l3 3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-send.svg������������������������������0000664�0000000�0000000�00000000277�14753064456�0026004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6c-1.11 0-2 .89-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zm-1.46 17.37v-2h-4v-1.99h4v-2l3 3zM13 9V3.5L18.5 9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-settings-outline.svg������������������0000664�0000000�0000000�00000000277�14753064456�0030370�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 0a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V6l-6-6zm0 2h7v5h5v11H6zm1 20v2h2v-2zm4 0v2h2v-2zm4 0v2h2v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-settings.svg��������������������������0000664�0000000�0000000�00000000303�14753064456�0026701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 0C4.89 0 4 .89 4 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V6l-6-6zm7 1.5L18.5 7H13zM7 22v2h2v-2zm4 0v2h2v-2zm4 0v2h2v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-sign.svg������������������������������0000664�0000000�0000000�00000000647�14753064456�0026014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.7 12.9 14 18.6h-2.3v-2.3l5.7-5.7zm3.4-.8c0 .3-.3.6-.6.9L20 15.5l-.9-.9 2.6-2.6-.6-.6-.7.7-2.3-2.3 2.2-2.1c.2-.2.6-.2.9 0l1.4 1.4c.2.2.2.6 0 .9-.2.2-.4.4-.4.6s.2.4.4.6c.3.3.6.6.5.9M3 20V4h7v5h5v1.5l2-2V8l-6-6H3c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zm8-2.9c-.2 0-.4.1-.5.1L10 15H8.5l-2.1 1.7L7 14H5.5l-1 5H6l2.9-2.6.6 2.3h1l.5-.1z"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-star-four-points-outline.svg����������0000664�0000000�0000000�00000000337�14753064456�0031761�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 11-1.26 2.75L8 15l2.74 1.26L12 19l1.25-2.74L16 15l-2.75-1.25zM6 2h8l6 6v12c0 1.1-.9 2-2 2H6c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2m0 2v16h12V9h-5V4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-star-four-points.svg������������������0000664�0000000�0000000�00000000433�14753064456�0030301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4c0-1.11.89-2 2-2h8l6 6v12c0 .53-.21 1.04-.59 1.41-.37.38-.88.59-1.41.59H6c-.53 0-1.04-.21-1.41-.59C4.21 21.04 4 20.53 4 20zm9-.5V9h5.5zM12 11l-1.26 2.75L8 15l2.74 1.26L12 19l1.25-2.74L16 15l-2.75-1.25z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-star-outline.svg����������������������0000664�0000000�0000000�00000000344�14753064456�0027474�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8zm4 18H6V4h7v5h5zm-8.5-2 .7-2.8L8 13.3l2.9-.2 1.1-2.7 1.1 2.6 2.9.2-2.2 1.9.7 2.8-2.5-1.4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-star.svg������������������������������0000664�0000000�0000000�00000000345�14753064456�0026020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8zm.5 16.9L12 17.5 9.5 19l.7-2.8L8 14.3l2.9-.2 1.1-2.7 1.1 2.6 2.9.2-2.2 1.9zM13 9V3.5L18.5 9z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-swap-outline.svg����������������������0000664�0000000�0000000�00000000272�14753064456�0027475�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17 15-3-3v2h-4v-2l-3 3 3 3v-2h4v2m0-16H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zm4 18H6V4h7v5h5Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-swap.svg������������������������������0000664�0000000�0000000�00000000272�14753064456�0026020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8m-6 10v-2h-4v2l-3-3 3-3v2h4v-2l3 3m-4-6V3.5L18.5 9Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-sync-outline.svg����������������������0000664�0000000�0000000�00000000615�14753064456�0027500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.8 22H6c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h8l6 6v3.5c-.6-.3-1.3-.4-2-.5V9h-5V4H6v16h5.5c.3.7.8 1.4 1.3 2M17 12l-2.2 2.2 2.2 2.2V15c1.4 0 2.5 1.1 2.5 2.5 0 .4-.1.8-.3 1.1l1.1 1.1c.4-.6.7-1.4.7-2.2 0-2.2-1.8-4-4-4zm2.2 8.8L17 18.5V20c-1.4 0-2.5-1.1-2.5-2.5 0-.4.1-.8.3-1.1l-1.1-1.1c-.4.6-.7 1.4-.7 2.2 0 2.2 1.8 4 4 4V23z"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-sync.svg������������������������������0000664�0000000�0000000�00000000650�14753064456�0026022�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 17.5c0-3.6 2.9-6.5 6.5-6.5.9 0 1.7.2 2.5.5V8l-6-6H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h6.8c-1.1-1.2-1.8-2.8-1.8-4.5m2-14L18.5 9H13zm4 8.5v1.5c2.2 0 4 1.8 4 4 0 .8-.2 1.6-.7 2.2l-1.1-1.1c.2-.3.3-.7.3-1.1 0-1.4-1.1-2.5-2.5-2.5v1.5l-2.2-2.2zm0 11v-1.5c-2.2 0-4-1.8-4-4 0-.8.2-1.6.7-2.2l1.1 1.1c-.2.3-.3.7-.3 1.1 0 1.4 1.1 2.5 2.5 2.5v-1.5l2.2 2.2z"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-table-box-multiple-outline.svg��������0000664�0000000�0000000�00000000424�14753064456�0032230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5v16h16v2H3c-1.1 0-2-.9-2-2V5zm18-4H7c-1.11 0-2 .89-2 2v14c0 1.1.9 2 2 2h14c1.11 0 2-.89 2-2V3c0-1.1-.9-2-2-2m0 16H7V3h14zm-10-3H8v2h3zm4 0h-3v2h3zm-4-3H8v2h3zm4 0h-3v2h3zm-4-3H8v2h3zm4 0h-3v2h3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-table-box-multiple.svg����������������0000664�0000000�0000000�00000000410�14753064456�0030546�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5v16h16v2H3c-1.1 0-2-.9-2-2V5zm18-4H7c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V3a2 2 0 0 0-2-2M11 16H8v-2h3zm0-3H8v-2h3zm0-3H8V8h3zm4 6h-3v-2h3zm0-3h-3v-2h3zm0-3h-3V8h3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-table-box-outline.svg�����������������0000664�0000000�0000000�00000000374�14753064456�0030403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2m0 16H5V5h14zM9 18H6v-2h3zm4 0h-3v-2h3zm-4-3H6v-2h3zm4 0h-3v-2h3zm-4-3H6v-2h3zm4 0h-3v-2h3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-table-box.svg�������������������������0000664�0000000�0000000�00000000346�14753064456�0026725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.11 0-2 .89-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5a2 2 0 0 0-2-2M9 18H6v-2h3zm0-3H6v-2h3zm0-3H6v-2h3zm4 6h-3v-2h3zm0-3h-3v-2h3zm0-3h-3v-2h3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-table-outline.svg���������������������0000664�0000000�0000000�00000000346�14753064456�0027614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zm4 18H6V4h7v5h5zm-8-7H7v-2h3zm4 0h-3v-2h3zm-4 3H7v-2h3zm4 0h-3v-2h3zm-4 3H7v-2h3zm4 0h-3v-2h3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-table.svg�����������������������������0000664�0000000�0000000�00000000346�14753064456�0026137�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zm-4 17H7v-2h3zm0-3H7v-2h3zm0-3H7v-2h3zm4 6h-3v-2h3zm0-3h-3v-2h3zm0-3h-3v-2h3zm-1-4V3.5L18.5 9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-tree-outline.svg����������������������0000664�0000000�0000000�00000000262�14753064456�0027461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 13H7v5h5v2H5V10h2v1h5zM8 4v2H4V4zm2-2H2v6h8zm10 9v2h-4v-2zm2-2h-8v6h8zm-2 9v2h-4v-2zm2-2h-8v6h8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-tree.svg������������������������������0000664�0000000�0000000�00000000212�14753064456�0025777�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h6v4H3zm12 7h6v4h-6zm0 7h6v4h-6zm-2-4H7v5h6v2H5V9h2v2h6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-undo-outline.svg����������������������0000664�0000000�0000000�00000000453�14753064456�0027471�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V8zm4 18H6V4h7v5h5zm-1-2.39-1.16.39a3.91 3.91 0 0 0-3.71-2.69c-.96 0-1.82.35-2.5.92L11.4 18H7v-4.4l1.76 1.76c.9-.79 2.07-1.27 3.37-1.27 2.27 0 4.2 1.48 4.87 3.52"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-undo.svg������������������������������0000664�0000000�0000000�00000000470�14753064456�0026013�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9h5.5L13 3.5zM6 2h8l6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2m6.16 12.31c-1.56 0-2.97.58-4.05 1.52L6 13.72V19h5.28l-2.13-2.12c.82-.68 1.85-1.1 3.01-1.1 2.07 0 3.84 1.35 4.45 3.22l1.39-.46c-.81-2.45-3.12-4.23-5.84-4.23"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-upload-outline.svg��������������������0000664�0000000�0000000�00000000264�14753064456�0030010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14 2 6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm4 18V9h-5V4H6v16zm-6-8 4 4h-2.5v3h-3v-3H8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-upload.svg����������������������������0000664�0000000�0000000�00000000263�14753064456�0026332�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zm-.5 14v3h-3v-3H8l4-4 4 4zM13 9V3.5L18.5 9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-video-outline.svg���������������������0000664�0000000�0000000�00000000277�14753064456�0027636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14 2 6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm4 18V9h-5V4H6v16zm-2-2-2.5-1.7V18H8v-5h5.5v1.7L16 13z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-video.svg�����������������������������0000664�0000000�0000000�00000000273�14753064456�0026155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9h5.5L13 3.5zM6 2h8l6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2m11 17v-6l-3 2.2V13H7v6h7v-2.2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-word-box-outline.svg������������������0000664�0000000�0000000�00000000375�14753064456�0030270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 2h14v14H5zm12.9 2-2.4 10H14l-2-7.5-2 7.5H8.5L6.1 7h1.7l1.54 7.5L11.3 7h1.4l1.97 7.5L16.2 7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-word-box.svg��������������������������0000664�0000000�0000000�00000000347�14753064456�0026612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 17H14l-2-7.5-2 7.5H8.5L6.1 7h1.7l1.54 7.5L11.3 7h1.4l1.97 7.5L16.2 7h1.7M19 3H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-word-outline.svg����������������������0000664�0000000�0000000�00000000374�14753064456�0027501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V8zm4 18H6V4h7v5h5zm-.65-10-2.1 9h-1.4l-1.8-6.79-1.8 6.79h-1.4l-2.2-9h1.5l1.4 6.81 1.8-6.81h1.3l1.8 6.81 1.4-6.81z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-word.svg������������������������������0000664�0000000�0000000�00000000355�14753064456�0026023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zm1.2 18h-1.4L12 13.2 10.2 20H8.8l-2.2-9h1.5l1.4 6.8 1.8-6.8h1.3l1.8 6.8 1.4-6.8h1.5zM13 9V3.5L18.5 9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file-xml-box.svg���������������������������0000664�0000000�0000000�00000000472�14753064456�0026436�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2M8 15H6.5L6 13l-.5 2H4l.75-3L4 9h1.5l.5 2 .5-2H8l-.75 3zm7.5 0H14v-4.5h-1V14h-1.5v-3.5h-1V15H9v-4c0-1.1.9-2 2-2h2.5a2 2 0 0 1 2 2zm4.5 0h-3V9h1.5v4.5H20z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/file.svg�����������������������������������0000664�0000000�0000000�00000000236�14753064456�0025050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9V3.5L18.5 9M6 2c-1.11 0-2 .89-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/film.svg�����������������������������������0000664�0000000�0000000�00000000466�14753064456�0025065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.5 3H5V1.8c0-.44.36-.8.8-.8h4.4c.44 0 .8.36.8.8V3h1.5A1.5 1.5 0 0 1 14 4.5V5h8v15h-8v.5a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 20.5v-16A1.5 1.5 0 0 1 3.5 3M18 7v2h2V7zm-4 0v2h2V7zm-4 0v2h2V7zm4 9v2h2v-2zm4 0v2h2v-2zm-8 0v2h2v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filmstrip-box-multiple.svg�����������������0000664�0000000�0000000�00000000377�14753064456�0030567�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 6H2v14a2 2 0 0 0 2 2h14v-2H4zm16-4H8a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2M10 15H8v-2h2zm0-4H8V9h2zm0-4H8V5h2zm10 8h-2v-2h2zm0-4h-2V9h2zm0-4h-2V5h2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filmstrip-box.svg��������������������������0000664�0000000�0000000�00000000343�14753064456�0026727�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3c1.1 0 2 .9 2 2v14c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2zM7 18v-2H5v2zm0-5v-2H5v2zm0-5V6H5v2zm12 10v-2h-2v2zm0-5v-2h-2v2zm0-5V6h-2v2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filmstrip-off.svg��������������������������0000664�0000000�0000000�00000000405�14753064456�0026710�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 4.27 2.28 3 21 21.72 19.73 23 16 19.27V21H8v-2H6v2H4V7.27zM18 9V7h-2v2zm0 4v-2h-2v2zm0 2h-1.18l-10-10H8V3h8v2h2V3h2v15.18l-2-2zM8 13v-1.73L7.73 11H6v2zm0 4v-2H6v2zM6 3v1.18L4.82 3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filmstrip.svg������������������������������0000664�0000000�0000000�00000000302�14753064456�0026134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 9h-2V7h2m0 6h-2v-2h2m0 6h-2v-2h2M8 9H6V7h2m0 6H6v-2h2m0 6H6v-2h2M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filter-check-outline.svg�������������������0000664�0000000�0000000�00000000547�14753064456�0030153�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19.88c.04.3-.06.62-.28.83-.4.39-1.03.39-1.42 0L7.29 16.7a.99.99 0 0 1-.29-.83v-5.12L2.21 4.62a1 1 0 0 1 .17-1.4c.19-.14.4-.22.62-.22h14c.22 0 .43.08.62.22a1 1 0 0 1 .17 1.4L13 10.75zM5.04 5 9 10.07v5.51l2 2v-7.53L14.96 5zm12.71 16L15 18l1.16-1.16 1.59 1.59 3.59-3.59 1.16 1.41z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filter-check.svg���������������������������0000664�0000000�0000000�00000000503�14753064456�0026466�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 12v7.88c.04.3-.06.62-.29.83a.996.996 0 0 1-1.41 0L8.29 18.7a.99.99 0 0 1-.29-.83V12h-.03L2.21 4.62a1 1 0 0 1 .17-1.4c.19-.14.4-.22.62-.22h14c.22 0 .43.08.62.22a1 1 0 0 1 .17 1.4L12.03 12zm5.75 9L15 18l1.16-1.16 1.59 1.59 3.59-3.59 1.16 1.41z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filter-cog-outline.svg���������������������0000664�0000000�0000000�00000001661�14753064456�0027644�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.77 19.32-1.07-.82c.02-.17.04-.33.04-.5s-.01-.33-.04-.5l1.06-.82a.26.26 0 0 0 .06-.32l-1-1.73c-.06-.13-.19-.13-.32-.13l-1.23.5c-.27-.18-.54-.35-.85-.47l-.19-1.32A.236.236 0 0 0 19 13h-2a.26.26 0 0 0-.26.21l-.19 1.32c-.3.13-.59.29-.85.47l-1.24-.5c-.11 0-.24 0-.31.13l-1 1.73c-.06.11-.04.24.06.32l1.06.82a4.2 4.2 0 0 0 0 1l-1.06.82a.26.26 0 0 0-.06.32l1 1.73c.06.13.19.13.31.13l1.24-.5c.26.18.54.35.85.47l.19 1.32c.02.12.12.21.26.21h2c.11 0 .22-.09.24-.21l.19-1.32c.3-.13.57-.29.84-.47l1.23.5c.13 0 .26 0 .33-.13l1-1.73a.26.26 0 0 0-.06-.32M18 19.5c-.84 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5m-.38-16.28c-.19-.14-.4-.22-.62-.22H3c-.22 0-.43.08-.62.22a1 1 0 0 0-.17 1.4L7 10.75v5.12c-.04.29.06.6.29.83l4.01 4.01c.1.1.2.17.35.22C11.22 20 11 19 11 18c0-1.83.72-3.59 2-4.9v-2.35l4.79-6.13a1 1 0 0 0-.17-1.4M11 10.05v7.53l-2-2v-5.52L5.04 5h9.92z"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filter-cog.svg�����������������������������0000664�0000000�0000000�00000001616�14753064456�0026167�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.77 19.32-1.07-.82c.02-.17.04-.33.04-.5s-.01-.33-.04-.5l1.06-.82a.26.26 0 0 0 .06-.32l-1-1.73c-.06-.13-.19-.13-.32-.13l-1.23.5c-.27-.18-.54-.35-.85-.47l-.19-1.32A.236.236 0 0 0 19 13h-2a.26.26 0 0 0-.26.21l-.19 1.32c-.3.13-.59.29-.85.47l-1.24-.5c-.11 0-.24 0-.31.13l-1 1.73c-.06.11-.04.24.06.32l1.06.82a4.2 4.2 0 0 0 0 1l-1.06.82a.26.26 0 0 0-.06.32l1 1.73c.06.13.19.13.31.13l1.24-.5c.26.18.54.35.85.47l.19 1.32c.02.12.12.21.26.21h2c.11 0 .22-.09.24-.21l.19-1.32c.3-.13.57-.29.84-.47l1.23.5c.13 0 .26 0 .33-.13l1-1.73a.26.26 0 0 0-.06-.32M18 19.5c-.84 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5M3 3c-.22 0-.43.08-.62.22a1 1 0 0 0-.17 1.4L7.97 12H8v5.87c-.04.29.06.6.29.83l2.01 2.01c.35.35.89.37 1.28.09-.38-.89-.58-1.84-.58-2.8 0-1.27.35-2.5 1-3.6V12h.03l5.76-7.38a1 1 0 0 0-.17-1.4c-.19-.14-.4-.22-.62-.22z"/></svg>������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filter-menu-outline.svg��������������������0000664�0000000�0000000�00000000432�14753064456�0030033�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18.88a1 1 0 0 1-.29.83 1 1 0 0 1-1.41 0l-4-4a1 1 0 0 1-.3-.84V9.75L1.21 3.62a1 1 0 0 1 .17-1.4A1 1 0 0 1 2 2h14a1 1 0 0 1 .62.22 1 1 0 0 1 .17 1.4L12 9.75zM4 4l4 5.06v5.52l2 2V9.05L14 4m-1 12 5 5 5-5Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filter-menu.svg����������������������������0000664�0000000�0000000�00000000363�14753064456�0026361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11 11 5.76-7.38a1 1 0 0 0-.17-1.4A1 1 0 0 0 16 2H2a1 1 0 0 0-.62.22 1 1 0 0 0-.17 1.4L7 11v5.87a1 1 0 0 0 .29.83l2 2a1 1 0 0 0 1.41 0 1 1 0 0 0 .3-.83zm2 5 5 5 5-5Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filter-minus-outline.svg�������������������0000664�0000000�0000000�00000000474�14753064456�0030230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 17h8v2h-8zm-2 2.88c.04.3-.06.62-.28.83-.4.39-1.03.39-1.42 0L7.29 16.7a.99.99 0 0 1-.29-.83v-5.12L2.21 4.62a1 1 0 0 1 .17-1.4c.19-.14.4-.22.62-.22h14c.22 0 .43.08.62.22a1 1 0 0 1 .17 1.4L13 10.75zM5.04 5 9 10.07v5.51l2 2v-7.53L14.96 5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filter-minus.svg���������������������������0000664�0000000�0000000�00000000426�14753064456�0026550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 12v7.88c.04.3-.06.62-.29.83a.996.996 0 0 1-1.41 0L8.29 18.7a1 1 0 0 1-.29-.84V12h-.03L2.21 4.62a1 1 0 0 1 .17-1.4c.19-.14.4-.22.62-.22h14c.22 0 .43.08.62.22a1 1 0 0 1 .17 1.4L12.03 12zm3 5h8v2h-8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filter-multiple-outline.svg����������������0000664�0000000�0000000�00000000734�14753064456�0030727�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.47 5c-.22 0-.43.08-.6.21-.44.34-.52.97-.18 1.4v.01L7 12.14v5.91l3.64 3.66c.36.39 1.02.39 1.41 0s.39-1.02.01-1.41L9 17.22v-5.77L4.27 5.39c-.19-.25-.49-.39-.8-.39m18.15-1.78c-.19-.14-.4-.22-.62-.22H7c-.22 0-.43.08-.62.22a1 1 0 0 0-.17 1.4L11 10.75v5.12c-.04.29.06.6.29.83l4.01 4.01c.39.39 1.02.39 1.41 0 .23-.21.33-.53.29-.83v-9.13l4.79-6.13a1 1 0 0 0-.17-1.4M15 10.05v7.53l-2-2v-5.52L9.04 5h9.92z"/></svg>������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filter-multiple.svg������������������������0000664�0000000�0000000�00000000660�14753064456�0027250�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.46 5c-.21 0-.42.08-.59.21-.44.34-.52.97-.18 1.4v.01L8 13.42v5.99l2.29 2.3c.39.39 1.03.39 1.42 0s.39-1.03 0-1.42L10 18.59v-5.86L4.27 5.39A1.01 1.01 0 0 0 3.46 5M16 12v7.88c.04.3-.06.62-.29.83a.996.996 0 0 1-1.41 0l-2.01-2.01a.99.99 0 0 1-.29-.83V12h-.03L6.21 4.62a1 1 0 0 1 .17-1.4c.19-.14.4-.22.62-.22h14c.22 0 .43.08.62.22a1 1 0 0 1 .17 1.4L16.03 12z"/></svg>��������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filter-off-outline.svg���������������������0000664�0000000�0000000�00000000556�14753064456�0027650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.39 1.73 1.11 3 9 10.89v4.98c-.04.29.06.6.29.83l4.01 4.01c.39.39 1.02.39 1.41 0 .23-.21.33-.53.29-.83v-2.99l5.84 5.84 1.27-1.27L15 14.35v-.01l-2-1.99-2-2.01L4.15 3.5zM6.21 3 8.2 5h8.76l-3.85 4.91L15 11.8v-1.05l4.79-6.13a1 1 0 0 0-.17-1.4c-.19-.14-.4-.22-.62-.22zM11 12.89l2 2v2.69l-2-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filter-off.svg�����������������������������0000664�0000000�0000000�00000000475�14753064456�0026173�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.39 1.73 1.11 3l8.39 8.37.47.63H10v5.87c-.04.29.06.6.29.83l2.01 2.01c.39.39 1.02.39 1.41 0 .23-.21.33-.53.29-.83v-3.99l6.84 6.84 1.27-1.27L14 13.35 9.41 8.76 4.15 3.5zM6.21 3l8.33 8.34 5.25-6.72a1 1 0 0 0-.17-1.4c-.19-.14-.4-.22-.62-.22z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filter-outline.svg�������������������������0000664�0000000�0000000�00000000461�14753064456�0027073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 19.88c.04.3-.06.62-.29.83a.996.996 0 0 1-1.41 0L9.29 16.7a.99.99 0 0 1-.29-.83v-5.12L4.21 4.62a1 1 0 0 1 .17-1.4c.19-.14.4-.22.62-.22h14c.22 0 .43.08.62.22a1 1 0 0 1 .17 1.4L15 10.75zM7.04 5 11 10.06v5.52l2 2v-7.53L16.96 5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filter-plus-outline.svg��������������������0000664�0000000�0000000�00000000520�14753064456�0030050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 17h3v-3h2v3h3v2h-3v3h-2v-3h-3zm-2 2.88c.04.3-.06.62-.28.83-.4.39-1.03.39-1.42 0L7.29 16.7a.99.99 0 0 1-.29-.83v-5.12L2.21 4.62a1 1 0 0 1 .17-1.4c.19-.14.4-.22.62-.22h14c.22 0 .43.08.62.22a1 1 0 0 1 .17 1.4L13 10.75zM5.04 5 9 10.07v5.51l2 2v-7.53L14.96 5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filter-plus.svg����������������������������0000664�0000000�0000000�00000000455�14753064456�0026402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 12v7.88c.04.3-.06.62-.29.83a.996.996 0 0 1-1.41 0L8.29 18.7a.99.99 0 0 1-.29-.83V12h-.03L2.21 4.62a1 1 0 0 1 .17-1.4c.19-.14.4-.22.62-.22h14c.22 0 .43.08.62.22a1 1 0 0 1 .17 1.4L12.03 12zm3 5h3v-3h2v3h3v2h-3v3h-2v-3h-3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filter-remove-outline.svg������������������0000664�0000000�0000000�00000000647�14753064456�0030374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.73 20.83 17.58 18l-2.85-2.83 1.42-1.41L19 16.57l2.8-2.81 1.42 1.41L20.41 18l2.81 2.83-1.42 1.41L19 19.4l-2.85 2.84zM13 19.88c.04.3-.06.62-.29.83a.996.996 0 0 1-1.41 0L7.29 16.7a.99.99 0 0 1-.29-.83v-5.12L2.21 4.62a1 1 0 0 1 .17-1.4c.19-.14.4-.22.62-.22h14c.22 0 .43.08.62.22a1 1 0 0 1 .17 1.4L13 10.75zM5.04 5 9 10.06v5.52l2 2v-7.53L14.96 5z"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filter-remove.svg��������������������������0000664�0000000�0000000�00000000604�14753064456�0026710�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.76 20.83 17.6 18l-2.84-2.83 1.41-1.41L19 16.57l2.83-2.81 1.41 1.41L20.43 18l2.81 2.83-1.41 1.41L19 19.4l-2.83 2.84zM12 12v7.88c.04.3-.06.62-.29.83a.996.996 0 0 1-1.41 0L8.29 18.7a.99.99 0 0 1-.29-.83V12h-.03L2.21 4.62a1 1 0 0 1 .17-1.4c.19-.14.4-.22.62-.22h14c.22 0 .43.08.62.22a1 1 0 0 1 .17 1.4L12.03 12z"/></svg>����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filter-settings-outline.svg����������������0000664�0000000�0000000�00000000523�14753064456�0030730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 22h2v2h-2m-4-2h2v2h-2m-4-2h2v2H7m8-4.12c.04.3-.06.62-.29.83a.996.996 0 0 1-1.41 0L9.29 16.7a.99.99 0 0 1-.29-.83v-5.12L4.21 4.62a1 1 0 0 1 .17-1.4c.19-.14.4-.22.62-.22h14c.22 0 .43.08.62.22a1 1 0 0 1 .17 1.4L15 10.75zM7.04 5 11 10.06v5.52l2 2v-7.53L16.96 5Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filter-settings.svg������������������������0000664�0000000�0000000�00000000461�14753064456�0027254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 22h2v2h-2m-4-2h2v2h-2m-4-2h2v2H7m7-12v7.88c.04.3-.06.62-.29.83a.996.996 0 0 1-1.41 0l-2.01-2.01a.99.99 0 0 1-.29-.83V12h-.03L4.21 4.62a1 1 0 0 1 .17-1.4c.19-.14.4-.22.62-.22h14c.22 0 .43.08.62.22a1 1 0 0 1 .17 1.4L14.03 12Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filter-variant-minus.svg�������������������0000664�0000000�0000000�00000000234�14753064456�0030207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 8H3V6h18zm-7.19 8H10v2h3.09c.12-.72.37-1.39.72-2M18 11H6v2h12zm5 7h-8v2h8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filter-variant-plus.svg��������������������0000664�0000000�0000000�00000000260�14753064456�0030036�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 8H3V6h18zm-7.19 8H10v2h3.09c.12-.72.37-1.39.72-2M18 11H6v2h12zm0 4v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filter-variant-remove.svg������������������0000664�0000000�0000000�00000000407�14753064456�0030353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 8H3V6h18zm-7.19 8H10v2h3.09c.12-.72.37-1.39.72-2M18 11H6v2h12zm3.12 4.46L19 17.59l-2.12-2.13-1.41 1.42L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19l2.13-2.12z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filter-variant.svg�������������������������0000664�0000000�0000000�00000000165�14753064456�0027061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 13h12v-2H6M3 6v2h18V6M10 18h4v-2h-4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/filter.svg���������������������������������0000664�0000000�0000000�00000000416�14753064456�0025416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 12v7.88c.04.3-.06.62-.29.83a.996.996 0 0 1-1.41 0l-2.01-2.01a.99.99 0 0 1-.29-.83V12h-.03L4.21 4.62a1 1 0 0 1 .17-1.4c.19-.14.4-.22.62-.22h14c.22 0 .43.08.62.22a1 1 0 0 1 .17 1.4L14.03 12z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/finance.svg��������������������������������0000664�0000000�0000000�00000000332�14753064456�0025531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6 16.5-3 2.94V11h3m5 3.66-1.57-1.34L8 14.64V7h3m5 6-3 3V3h3m2.81 9.81L17 11h5v5l-1.79-1.79L13 21.36l-3.47-3.02L5.75 22H3l6.47-6.34L13 18.64"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/find-replace.svg���������������������������0000664�0000000�0000000�00000000544�14753064456�0026464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 6c1.38 0 2.63.56 3.54 1.46L12 10h6V4l-2.05 2.05A6.98 6.98 0 0 0 11 4c-3.53 0-6.43 2.61-6.92 6H6.1A5 5 0 0 1 11 6m5.64 9.14A6.9 6.9 0 0 0 17.92 12H15.9a5 5 0 0 1-4.9 4c-1.38 0-2.63-.56-3.54-1.46L10 12H4v6l2.05-2.05A6.98 6.98 0 0 0 11 18c1.55 0 3-.5 4.14-1.36L20 21.5l1.5-1.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fingerprint-off.svg������������������������0000664�0000000�0000000�00000003123�14753064456�0027226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.5 4.77 2.78 3.5 20.5 21.22l-1.27 1.28-2.56-2.56c-1.09-.04-2.05-.34-2.85-.89-1.48-1-2.36-2.62-2.38-4.34l-1.17-1.18c-.24.32-.38.7-.38 1.12 0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.84.27.08.42.36.35.62-.05.23-.26.38-.47.38h-.13c-1.59-.46-2.63-1.05-3.72-2.12a7.28 7.28 0 0 1-2.17-5.22c0-.69.25-1.33.67-1.83L8.5 11.77c-.72.77-1.16 1.78-1.16 2.89 0 1.44.32 2.77.93 3.84.64 1.16 1.08 1.65 1.85 2.43.19.2.19.51 0 .71-.12.1-.24.15-.37.15s-.25-.05-.35-.15c-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-1.38.55-2.66 1.45-3.6L6.7 9.97c-.55.53-1.01 1.18-1.35 1.89-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64a.504.504 0 0 1-.64-.29c-.5-1.31-.73-2.62-.73-3.96 0-1.2.23-2.29.68-3.24.39-.81.91-1.54 1.55-2.16L4.97 8.24q-.585.585-1.08 1.26c-.08.15-.23.22-.39.22l-.29-.09a.517.517 0 0 1-.12-.7c.36-.5.75-.97 1.18-1.4zm16.31-.3-.23-.06C15.66 3.42 14 3 12 3c-1.97 0-3.85.47-5.56 1.41l-.15.05-.58-.57c.02-.15.11-.28.25-.36C7.82 2.5 9.86 2 12 2s4 .47 6.04 1.5c.25.15.34.45.21.69a.48.48 0 0 1-.44.28m-.66 1.18c1.5.77 2.76 1.85 3.75 3.25.16.22.1.54-.12.7-.23.16-.54.11-.7-.1a9.26 9.26 0 0 0-3.39-2.96c-2.63-1.35-5.93-1.46-8.66-.33l-.76-.76c3.07-1.41 6.87-1.35 9.88.2M12 9.27c3.12 0 5.66 2.42 5.66 5.39a.5.5 0 0 1-.5.5l-.23-.05-.21-.22-.06-.23c0-2.39-2.04-4.34-4.57-4.39l-.94-.94zm2.38 8.95c.33.23.69.4 1.09.51l-2.84-2.83c.29.92.9 1.75 1.75 2.32m4.83-3.56c0-3.77-3.25-6.83-7.25-6.83-.7 0-1.38.1-2.03.28l-.81-.81c.88-.3 1.85-.48 2.84-.48 4.54 0 8.25 3.51 8.25 7.83 0 1-.52 1.88-1.32 2.41l-.72-.72c.62-.34 1.04-.96 1.04-1.68"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fingerprint.svg����������������������������0000664�0000000�0000000�00000003213�14753064456�0026456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12 3c-1.97 0-3.85.47-5.56 1.41-.24.13-.54.04-.68-.2a.506.506 0 0 1 .2-.68C7.82 2.5 9.86 2 12 2s4 .47 6.04 1.5c.25.15.34.45.21.69a.48.48 0 0 1-.44.28M3.5 9.72c-.1 0-.2-.03-.29-.09a.517.517 0 0 1-.12-.7c.99-1.4 2.25-2.5 3.75-3.27C10 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.85 3.75 3.25.16.22.1.54-.12.7-.23.16-.54.11-.7-.1a9.26 9.26 0 0 0-3.39-2.96c-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.95-.08.15-.23.22-.39.22m6.25 12.07c-.13 0-.25-.05-.35-.15-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39a.5.5 0 0 1-.5.5.5.5 0 0 1-.5-.5c0-2.42-2.09-4.39-4.66-4.39s-4.66 1.97-4.66 4.39c0 1.44.32 2.77.93 3.84.64 1.16 1.08 1.65 1.85 2.43.19.2.19.51 0 .71-.12.1-.24.15-.37.15m7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39a.5.5 0 0 1 .5-.5.5.5 0 0 1 .5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.54.13.58.41.05.26-.13.53-.41.58-.57.11-1.07.12-1.21.12M14.91 22h-.13c-1.59-.46-2.63-1.05-3.72-2.12a7.28 7.28 0 0 1-2.17-5.22c0-1.62 1.38-2.94 3.08-2.94s3.08 1.32 3.08 2.94c0 1.07.95 1.94 2.08 1.94 1.15 0 2.08-.87 2.08-1.94 0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.46 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64a.504.504 0 0 1-.64-.29c-.5-1.31-.73-2.62-.73-3.96 0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.54 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94s-3.08-1.32-3.08-2.94c0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.84.27.08.42.36.35.62-.05.23-.26.38-.47.38"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fire-alert.svg�����������������������������0000664�0000000�0000000�00000001364�14753064456�0026166�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.66 11.2c-.23-.3-.51-.56-.77-.82-.67-.6-1.43-1.03-2.07-1.66C11.33 7.26 11 4.85 11.95 3c-.95.23-1.78.75-2.49 1.32-2.59 2.08-3.61 5.75-2.39 8.9.04.1.08.2.08.33 0 .22-.15.42-.35.5-.23.1-.47.04-.66-.12a.6.6 0 0 1-.14-.17c-1.13-1.43-1.31-3.48-.55-5.12C3.78 10 2.87 12.3 3 14.47c.06.5.12 1 .29 1.5.14.6.41 1.2.71 1.73 1.08 1.73 2.95 2.97 4.96 3.22 2.14.27 4.43-.12 6.07-1.6 1.83-1.66 2.47-4.32 1.53-6.6l-.13-.26c-.21-.46-.77-1.26-.77-1.26m-3.16 6.3c-.28.24-.74.5-1.1.6-1.12.4-2.24-.16-2.9-.82 1.19-.28 1.9-1.16 2.11-2.05.17-.8-.15-1.46-.28-2.23-.12-.74-.1-1.37.17-2.06.19.38.39.76.63 1.06.77 1 1.98 1.44 2.24 2.8.04.14.06.28.06.43.03.82-.33 1.72-.93 2.27M21 13h-2V7h2zm0 4h-2v-2h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fire-circle.svg����������������������������0000664�0000000�0000000�00000001421�14753064456�0026312�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.66 14.18c.03.11.04.22.04.32.03.65-.26 1.35-.73 1.78-.22.19-.58.39-.86.47-.88.31-1.76-.13-2.28-.64.94-.22 1.49-.9 1.67-1.61.12-.61-.13-1.12-.23-1.72-.1-.58-.08-1.07.13-1.6.15.29.31.59.5.82.6.78 1.55 1.12 1.76 2.18M22 12c0 5.5-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2s10 4.5 10 10m-4.84.56-.1-.2c-.16-.36-.61-.98-.61-.98-.18-.23-.4-.44-.6-.64-.53-.47-1.12-.8-1.63-1.29-1.17-1.14-1.43-3.01-.68-4.45-.75.18-1.4.58-1.96 1.03-2.03 1.62-2.83 4.47-1.87 6.92.03.08.06.16.06.26 0 .17-.12.32-.27.39-.19.07-.37.03-.5-.1a.32.32 0 0 1-.13-.13c-.87-1.11-1.03-2.71-.44-3.98-1.31 1.06-2.02 2.85-1.93 4.53.06.39.1.78.24 1.17.11.47.32.91.56 1.35.84 1.34 2.31 2.31 3.89 2.5 1.68.21 3.48-.09 4.77-1.24 1.44-1.3 1.94-3.37 1.2-5.14"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fire-extinguisher.svg����������������������0000664�0000000�0000000�00000000317�14753064456�0027572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 7h1.25L12 5h-1.75L6 7.5V9H4V6.5L10 3h2V2h2v1h2l1-.5v3L16 5h-2l.25 2h1.25A1.5 1.5 0 0 1 17 8.5V22H9V8.5A1.5 1.5 0 0 1 10.5 7"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fire-hydrant-alert.svg���������������������0000664�0000000�0000000�00000000473�14753064456�0027635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 7h-2v6h2zm0 8h-2v2h2zM3 15v-1H2v-2h1v-1h2v4zm14-3v-1h-2v4h2v-1h1v-2zm-1-6h-2.14C13.5 4.6 12.4 3.5 11 3.14V2H9v1.14C7.6 3.5 6.5 4.6 6.14 6H4v2h12zm0 16H4a2 2 0 0 1 2-2V9h8v11a2 2 0 0 1 2 2m-8-9a2 2 0 1 0 4 0c0-1.11-.89-2-2-2s-2 .9-2 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fire-hydrant-off.svg�����������������������0000664�0000000�0000000�00000000624�14753064456�0027276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.84 22.73 1.27-1.27L2.39 1.73 1.11 3 8 9.89V20c-1.1 0-2 .9-2 2h12a2 2 0 0 0-2-2v-2.11zM10.22 12.11l2.67 2.67c-.27.14-.57.22-.89.22a2 2 0 0 1-2-2c0-.32.08-.62.22-.89M11.2 8 8.44 5.24c.5-1.03 1.43-1.81 2.56-2.1V2h2v1.14c1.4.36 2.5 1.46 2.86 2.86H18v2zm7.8 3v1h1v2h-1v1h-.8L17 13.8V11zM5 15v-1H4v-2h1v-1h2v4zm11-2.2L12.2 9H16z"/></svg>������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fire-hydrant.svg���������������������������0000664�0000000�0000000�00000000443�14753064456�0026525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 15v-1H4v-2h1v-1h2v4zm14-3v-1h-2v4h2v-1h1v-2zm-1-6h-2.14C15.5 4.6 14.4 3.5 13 3.14V2h-2v1.14C9.6 3.5 8.5 4.6 8.14 6H6v2h12zm0 16H6c0-1.1.9-2 2-2V9h8v11a2 2 0 0 1 2 2m-8-9a2 2 0 1 0 4 0c0-1.11-.89-2-2-2s-2 .9-2 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fire-off.svg�������������������������������0000664�0000000�0000000�00000001334�14753064456�0025626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3l5.98 6C5.66 10.36 4.88 12.47 5 14.47c.06.5.12 1 .29 1.5.14.6.41 1.2.71 1.73 1.08 1.73 2.95 2.97 4.96 3.22 2.14.27 4.43-.12 6.07-1.6.07-.06.12-.14.19-.21l3.62 3.62zM8.8 14.05c-.23.1-.47.04-.66-.12a.6.6 0 0 1-.14-.17c-1-1.29-1.26-3.07-.74-4.61l1.32 1.32c0 .93.15 1.86.49 2.75.04.1.08.2.08.33 0 .22-.15.42-.35.5m5.7 3.45c-.28.24-.74.5-1.1.6-1.12.4-2.24-.16-2.9-.82 1.19-.28 1.9-1.16 2.11-2.05.05-.23.05-.47.03-.7L15 16.88c-.15.23-.31.45-.5.62m4.42-1.78L9.65 6.46c.47-.81 1.07-1.54 1.81-2.14.71-.57 1.54-1.09 2.49-1.32-.95 1.85-.62 4.26.87 5.72.64.63 1.4 1.06 2.07 1.66.26.26.54.52.77.82 0 0 .56.8.77 1.26l.13.26c.4.97.5 2 .36 3"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fire-station.svg���������������������������0000664�0000000�0000000�00000001321�14753064456�0026531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.11 10.39c.26-.24.42-.64.39-1V9.2c-.07-.39-.32-.6-.58-.83-.14-.13-.29-.25-.42-.42l-.24-.45c-.13.3-.14.58-.09.91.02.09.04.19.07.28.05.23.11.45.05.7-.09.39-.39.78-.92.91.3.29.78.52 1.27.36zM2 22V7c0-.26.11-.5.29-.71C2.5 6.11 2.74 6 3 6h4V2h10v4h4c.27 0 .5.11.71.29.19.21.29.45.29.71v15h-3v-5s0-2-4-2-4 2-4 2v5H8v-5H4v5zM14.47 7.62h.03l-.36-.37-.89-.75c-.64-.62-.79-1.68-.38-2.5-.37.1-.77.33-1.08.58-1.11.92-1.56 2.54-1.03 3.92l.04.15c0 .1-.07.19-.16.22-.09.05-.2.02-.28-.05l-.06-.08c-.49-.63-.57-1.53-.24-2.24-.72.59-1.1 1.6-1.06 2.56l.13.66c.06.28.17.53.32.78.45.74 1.26 1.29 2.13 1.4.92.1 1.92-.05 2.63-.71.79-.74 1.08-1.89.66-2.9l-.06-.12z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fire-truck.svg�����������������������������0000664�0000000�0000000�00000001007�14753064456�0026201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.04 2c-.19 0-.38.04-.54.14L5.59 8.5h3.96l7.95-4.64c.5-.28.63-.89.35-1.36-.17-.3-.47-.5-.81-.5M16 8v2H3a2 2 0 0 0-2 2h1v3H1v4h2a3 3 0 0 0 3 3 3 3 0 0 0 3-3h6a3 3 0 0 0 3 3 3 3 0 0 0 3-3h2v-6.5L19.5 8zm2 1.5h1l2.5 3v1H18zM4 12h3v3H4zm5 0h3v3H9zm5 0h2v3h-2zm-8 5.5A1.5 1.5 0 0 1 7.5 19 1.5 1.5 0 0 1 6 20.5 1.5 1.5 0 0 1 4.5 19 1.5 1.5 0 0 1 6 17.5m12 0a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fire.svg�����������������������������������0000664�0000000�0000000�00000001331�14753064456�0025053�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.66 11.2c-.23-.3-.51-.56-.77-.82-.67-.6-1.43-1.03-2.07-1.66C13.33 7.26 13 4.85 13.95 3c-.95.23-1.78.75-2.49 1.32-2.59 2.08-3.61 5.75-2.39 8.9.04.1.08.2.08.33 0 .22-.15.42-.35.5-.23.1-.47.04-.66-.12a.6.6 0 0 1-.14-.17c-1.13-1.43-1.31-3.48-.55-5.12C5.78 10 4.87 12.3 5 14.47c.06.5.12 1 .29 1.5.14.6.41 1.2.71 1.73 1.08 1.73 2.95 2.97 4.96 3.22 2.14.27 4.43-.12 6.07-1.6 1.83-1.66 2.47-4.32 1.53-6.6l-.13-.26c-.21-.46-.77-1.26-.77-1.26m-3.16 6.3c-.28.24-.74.5-1.1.6-1.12.4-2.24-.16-2.9-.82 1.19-.28 1.9-1.16 2.11-2.05.17-.8-.15-1.46-.28-2.23-.12-.74-.1-1.37.17-2.06.19.38.39.76.63 1.06.77 1 1.98 1.44 2.24 2.8.04.14.06.28.06.43.03.82-.33 1.72-.93 2.27"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/firebase.svg�������������������������������0000664�0000000�0000000�00000000440�14753064456�0025706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20 18.69-7.3 4.05q-.75.39-1.5 0L4 18.69 17.05 5.54l.35-.1c.3 0 .47.13.5.4zM9.35 5.74 4.8 13.29 6.7 1.34c.03-.27.2-.4.5-.4.2 0 .33.06.4.25l2.15 3.95zM13.85 7 4.3 16.59l7.25-12.3c.1-.2.25-.29.45-.29s.33.09.4.29z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/firefox.svg��������������������������������0000664�0000000�0000000�00000002250�14753064456�0025571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.85 6.74q.015 0 0 0M21.28 8.6c-.43-1.05-1.32-2.18-2.01-2.54.56 1.11.89 2.22 1.02 3.04v.02c-1.13-2.82-3.05-3.96-4.62-6.44-.08-.12-.17-.25-.24-.38-.04-.07-.07-.14-.11-.21-.06-.13-.12-.26-.15-.4 0-.01-.01-.02-.02-.02h-.03c-2.22 1.3-3.15 3.59-3.38 5.04-.69.04-1.37.21-1.99.51-.12.05-.17.19-.13.31.05.14.21.21.34.15.54-.26 1.14-.41 1.74-.45h.05c.08-.01.17-.01.25-.01.5-.01.97.06 1.44.2l.06.02c.1.02.17.06.25.06.05.04.11.06.16.08l.14.06c.07.03.14.06.2.09.03.02.06.03.09.05.07.04.16.07.2.11.04.02.08.05.12.07.73.45 1.34 1.07 1.75 1.81-.53-.37-1.49-.74-2.41-.58 3.6 1.81 2.63 8-2.36 7.76-.44-.01-.88-.1-1.3-.25-.1-.03-.2-.07-.29-.12-.05-.02-.12-.05-.17-.08-1.23-.63-2.24-1.82-2.38-3.27 0 0 .5-1.73 3.33-1.73.31 0 1.17-.86 1.2-1.1 0-.09-1.74-.78-2.42-1.45-.37-.36-.54-.53-.69-.66-.08-.07-.17-.13-.26-.19a4.63 4.63 0 0 1-.03-2.45C7.6 6.12 6.8 6.86 6.22 7.5c-.4-.5-.37-2.15-.35-2.5-.01 0-.3.16-.33.18-.35.25-.68.53-.98.82-.35.37-.66.74-.94 1.14-.62.91-1.12 1.95-1.34 3.04 0 .01-.1.41-.17.92l-.03.23c-.02.17-.04.32-.08.58v.41c0 5.53 4.5 10.01 10 10.01 4.97 0 9.08-3.59 9.88-8.33.02-.11.03-.24.05-.37.2-1.72-.02-3.52-.65-5.03"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fireplace-off.svg��������������������������0000664�0000000�0000000�00000000222�14753064456�0026626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 22H2v-2h20zm0-16H2V3h20zm-2 1v12h-3v-8s-2.5-1-5-1-5 1-5 1v8H4V7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fireplace.svg������������������������������0000664�0000000�0000000�00000001151�14753064456�0026060�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 22H2v-2h20zm0-16H2V3h20zm-2 1v12h-3v-8s-2.5-1-5-1-5 1-5 1v8H4V7zm-5.5 7.67h-.03l.34.55.06.12c.42 1.01.13 2.16-.66 2.9-.71.66-1.71.83-2.63.71-.87-.11-1.68-.66-2.13-1.42-.15-.23-.26-.5-.32-.76L9 16.11c-.04-.96.34-1.97 1.06-2.57-.33.72-.25 1.62.24 2.25l.06.08c.08.07.19.1.28.05.09-.03.16-.12.16-.22l-.04-.14c-.53-1.39-.08-3.01 1.03-3.93.31-.25.71-.48 1.08-.58-.41.82-.26 1.88.38 2.52l.89.73zm-1.39 2.77c.26-.24.42-.64.39-1v-.19c-.12-.6-.65-.79-1-1.25l-.24-.45c-.13.3-.14.58-.09.91.06.34.2.63.12.98-.09.39-.39.78-.92.91.3.29.78.52 1.27.36z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/firewire.svg�������������������������������0000664�0000000�0000000�00000000472�14753064456�0025747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4m3 9H9v2h6zm0 3H9v2h6zm-8.7-9.4 4.2-4.2-1.3-1.5-4.3 4.3zM4.2 8.5l4.2-4.2-1.3-1.5-4.3 4.3zM15 17H9v2h6zM13.4 6.3l4.2 4.2L21.1 7l-4.2-4.2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/firework-off.svg���������������������������0000664�0000000�0000000�00000001042�14753064456�0026525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.84 22.73-7.67-7.67-4.45 4.44-1.43-1.41c-.25.07-.49.19-.66.41-.06.07-.13.15-.13.24-.08.14-.12.26-.18.41-.11.27-.23.54-.39.78-.12.17-.25.33-.4.46-.11.11-.24.2-.37.27-.08.05-.16.1-.26.13-.6.25-1.27.21-1.9.21v-2h.9c.1 0 .18 0 .26-.06l.05-.05c.07-.08.13-.19.18-.29.08-.18.14-.36.21-.54l.04-.1c.12-.27.26-.51.44-.73.1-.13.22-.23.34-.36.12-.1.24-.2.38-.28l-1.3-1.31 4.44-4.45L1.11 3l1.28-1.27 19.72 19.73zM21 3l-8.19 1.12 7.07 7.07zm-4.5 8.74L12.26 7.5l-.76.78 4.22 4.22z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/firework.svg�������������������������������0000664�0000000�0000000�00000000732�14753064456�0025762�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5.8 16.59-1.3-1.31 7.76-7.78 4.24 4.24-7.78 7.76-1.43-1.41c-.25.07-.49.19-.66.41-.06.07-.13.15-.13.24-.08.14-.12.26-.18.41-.11.27-.23.54-.39.78-.12.17-.25.33-.4.46-.11.11-.24.2-.37.27-.08.05-.16.1-.26.13-.6.25-1.27.21-1.9.21v-2h.9c.1 0 .18 0 .26-.06l.05-.05c.07-.08.13-.19.18-.29.08-.18.14-.36.21-.54l.04-.1c.12-.27.26-.51.44-.73.1-.13.22-.23.34-.36.12-.1.24-.2.38-.28M21 3l-1.12 8.19-7.07-7.07z"/></svg>��������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fish-off.svg�������������������������������0000664�0000000�0000000�00000000675�14753064456�0025641�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.8 22.7-5.1-5.1c-.6.7-1.1 1.3-1.6 1.7-.8.7-1.4.7-2.1.7l.8-3c-3.3-.2-6.2-1.6-7-3.4-.1.5-.2.9-.4 1.2C4.7 16 3.3 16 2 16c1.1 0 1.5-1.6 1.5-3.5S3.1 9 2 9c1.3 0 2.7 0 3.3 1.2.2.3.3.8.4 1.2.3-.7 1-1.4 1.9-1.9L1.1 3l1.3-1.3 19.7 19.7zM9.8 6.6 9 5c2 0 4 0 5.3.7 1.1.6 1.8 1.6 2.4 2.7 2.9.7 5.3 2.3 5.3 4.1 0 1.3-1.2 2.5-3 3.3zM16 12c0 .6.4 1 1 1s1-.4 1-1-.4-1-1-1-1 .4-1 1"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fish.svg�����������������������������������0000664�0000000�0000000�00000000732�14753064456�0025063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 20 .76-3c-3.26-.21-6.17-1.6-7.01-3.42-.09.48-.22.92-.42 1.25C4.67 16 3.33 16 2 16c1.1 0 1.5-1.57 1.5-3.5S3.1 9 2 9c1.33 0 2.67 0 3.33 1.17.2.33.33.77.42 1.25.65-1.42 2.57-2.57 4.91-3.1L9 5c2 0 4 0 5.33.67 1.13.56 1.78 1.6 2.36 2.71 2.92.7 5.31 2.28 5.31 4.12 0 1.88-2.5 3.5-5.5 4.16-.83 1.1-1.64 2.12-2.33 2.67-.84.67-1.5.67-2.17.67m5-9a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>��������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fishbowl-outline.svg�����������������������0000664�0000000�0000000�00000001270�14753064456�0027422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.11 5H21V3H3v2h1.89A9.93 9.93 0 0 0 2 12c0 3.97 2.31 7.39 5.66 9h8.68A9.97 9.97 0 0 0 22 12c0-2.73-1.11-5.2-2.89-7M6.32 6.41 7.7 5h8.6l1.38 1.41a7.9 7.9 0 0 1 1.37 1.84A7.3 7.3 0 0 1 16 7c-2.44 1.71-5.56 1.71-8 0-.94.66-2 1.09-3.05 1.25.36-.67.82-1.29 1.37-1.84M15.85 19h-7.7A7.93 7.93 0 0 1 4 12c0-.57.07-1.14.19-1.68A8.74 8.74 0 0 0 8 9.33c2.5 1.3 5.5 1.3 8 0 1.2.62 2.5.96 3.81.99.12.54.19 1.11.19 1.68a7.93 7.93 0 0 1-4.15 7M17 14.5c0 1.38-1.68 2.5-3.75 2.5-1.16 0-2.19-.36-2.92-.84-.66.84-2 .84-3.33.84 1.1 0 1.5-1.12 1.5-2.5S8.1 12 7 12c1.33 0 2.67 0 3.37.91.69-.55 1.72-.91 2.88-.91 2.07 0 3.75 1.12 3.75 2.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fishbowl.svg�������������������������������0000664�0000000�0000000�00000001007�14753064456�0025743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.11 5H21V3H3v2h1.89A9.93 9.93 0 0 0 2 12c0 3.97 2.31 7.39 5.66 9h8.68A9.97 9.97 0 0 0 22 12c0-2.73-1.11-5.2-2.89-7m-5.86 12c-1.16 0-2.19-.36-2.92-.83-.66.83-2 .83-3.33.83 1.1 0 1.5-1.12 1.5-2.5S8.1 12 7 12c1.33 0 2.67 0 3.37.91.69-.55 1.72-.91 2.88-.91 2.07 0 3.75 1.12 3.75 2.5S15.32 17 13.25 17M16 7c-2.44 1.71-5.56 1.71-8 0-.94.66-2 1.09-3.05 1.25.36-.67.82-1.29 1.37-1.84L7.7 5h8.6l1.38 1.41a7.9 7.9 0 0 1 1.37 1.84A7.3 7.3 0 0 1 16 7"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fit-to-page-outline.svg��������������������0000664�0000000�0000000�00000000403�14753064456�0027716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2m0 18H4V4h16m-7 4v2h-2V8H9l3-3 3 3m1 7v-2h-2v-2h2V9l3 3m-9 1H8v2l-3-3 3-3v2h2m5 5-3 3-3-3h2v-2h2v2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fit-to-page.svg����������������������������0000664�0000000�0000000�00000000363�14753064456�0026246�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2m-8 2 3 3h-2v2h-2V7H9m-2 8-3-3 3-3v2h2v2H7m5 7-3-3h2v-2h2v2h2m2-2v-2h-2v-2h2V9l3 3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fit-to-screen-outline.svg������������������0000664�0000000�0000000�00000000346�14753064456�0030267�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 4h3c1.1 0 2 .9 2 2v2h-2V6h-3zM4 8V6h3V4H4c-1.1 0-2 .9-2 2v2zm16 8v2h-3v2h3c1.1 0 2-.9 2-2v-2zM7 18H4v-2H2v2c0 1.1.9 2 2 2h3zm9-8v4H8v-4zm2-2H6v8h12z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fit-to-screen.svg��������������������������0000664�0000000�0000000�00000000333�14753064456�0026606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 4h3c1.1 0 2 .9 2 2v2h-2V6h-3zM4 8V6h3V4H4c-1.1 0-2 .9-2 2v2zm16 8v2h-3v2h3c1.1 0 2-.9 2-2v-2zM7 18H4v-2H2v2c0 1.1.9 2 2 2h3zM18 8H6v8h12z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flag-checkered.svg�������������������������0000664�0000000�0000000�00000000320�14753064456�0026747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.4 6H20v10h-7l-.4-2H7v7H5V4h9zm-.4 8h2v-2h2v-2h-2V8h-2v2l-1-2V6h-2v2H9V6H7v2h2v2H7v2h2v-2h2v2h2v-2l1 2zm-3-4V8h2v2zm3 0h2v2h-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flag-minus-outline.svg���������������������0000664�0000000�0000000�00000000240�14753064456�0027643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.36 6 .4 2H18v6h-3.36l-.4-2H7V6zM14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6M23 18h-8v2h8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flag-minus.svg�����������������������������0000664�0000000�0000000�00000000175�14753064456�0026175�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.4 5H18v10h-7l-.4-2H5v7H3V3h9zM14 17h8v2h-8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flag-off-outline.svg�����������������������0000664�0000000�0000000�00000000343�14753064456�0027266�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3 5 6.89V21h2v-7h5.11l.61.61L13 16h1.11l6.73 6.73zM7 12V8.89L10.11 12zm2.2-6-2-2H14l.4 2H20v10h-.8l-2-2h.8V8h-5.24l-.4-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flag-off.svg�������������������������������0000664�0000000�0000000�00000000276�14753064456�0025616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.84 22.73 14.11 16H13l-.28-1.39-.61-.61H7v7H5V6.89L1.11 3l1.28-1.27 19.72 19.73zM20 16V6h-5.6L14 4H7.2l12 12z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flag-outline.svg���������������������������0000664�0000000�0000000�00000000222�14753064456�0026512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.36 6 .4 2H18v6h-3.36l-.4-2H7V6zM14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flag-plus-outline.svg����������������������0000664�0000000�0000000�00000000356�14753064456�0027503�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13 16-.4-2H7v7H5V4h9l.4 2H20v7.09c-.33-.05-.66-.09-1-.09s-.67.04-1 .09V8h-5.24l-.4-2H7v6h7.24l.4 2h1.05c-.77.5-1.42 1.2-1.88 2zm5-1v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flag-plus.svg������������������������������0000664�0000000�0000000�00000000250�14753064456�0026017�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 14h2v3h3v2h-3v3h-2v-3h-3v-2h3zm-4.6-9H18v7c-2.22 0-4.16 1.21-5.2 3H11l-.4-2H5v7H3V3h9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flag-remove-outline.svg��������������������0000664�0000000�0000000�00000000504�14753064456�0030010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13 16-.4-2H7v7H5V4h9l.4 2H20v7.09c-.33-.05-.66-.09-1-.09s-.67.04-1 .09V8h-5.24l-.4-2H7v6h7.24l.4 2h1.05c-.77.5-1.42 1.2-1.88 2zm8.12-.54L19 17.59l-2.12-2.13-1.41 1.42L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19l2.13-2.12z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flag-remove.svg����������������������������0000664�0000000�0000000�00000000376�14753064456�0026342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.46 15.88 1.42-1.42L18 16.59l2.12-2.13 1.42 1.42L19.41 18l2.13 2.12-1.42 1.42L18 19.41l-2.12 2.13-1.42-1.42L16.59 18zM12.4 5H18v7c-2.22 0-4.16 1.21-5.2 3H11l-.4-2H5v7H3V3h9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flag-triangle.svg��������������������������0000664�0000000�0000000�00000000152�14753064456�0026642�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2h2v20H7zm12 7-8 5.6V3.4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flag-variant-minus-outline.svg�������������0000664�0000000�0000000�00000000434�14753064456�0031312�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 3c.6 0 1 .4 1 1v.9c1.1-.5 2.5-.9 4-.9 3 0 3 2 5 2 3 0 4-2 4-2v8s-1 2-4 2-3-2-5-2c-3 0-4 2-4 2v7H5V4c0-.6.4-1 1-1m1 4.2v4.2s2-1.5 4-1.5 3 2 5 2 2-1 2-1V7.5S17 8 16 8c-2 0-3-2-5-2S7 7.2 7 7.2M15 18v2h8v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flag-variant-minus.svg���������������������0000664�0000000�0000000�00000000316�14753064456�0027634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 3c.6 0 1 .4 1 1v.9c1.1-.5 2.5-.9 4-.9 3 0 3 2 5 2 3 0 4-2 4-2v8s-1 2-4 2-3-2-5-2c-3 0-4 2-4 2v7H5V4c0-.6.4-1 1-1m9 15v2h8v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flag-variant-off-outline.svg���������������0000664�0000000�0000000�00000000515�14753064456�0030731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3 5 6.9V21h2v-7s.8-1.6 3.2-1.9l10.7 10.7zM7 11.5V8.9l1.7 1.7c-1 .4-1.7.9-1.7.9m2.4-5.3L7.8 4.6c.9-.3 2-.6 3.2-.6 3 0 3 2 5 2 3 0 4-2 4-2v8s-.8 1.5-2.9 1.9L15 11.8c.3.1.6.2 1 .2 2 0 2-1 2-1V7.5S17 8 16 8c-2 0-3-2-5-2-.5 0-1.1.1-1.6.2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flag-variant-off.svg�����������������������0000664�0000000�0000000�00000000344�14753064456�0027254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.8 22.7 10.2 12.1C7.8 12.4 7 14 7 14v7H5V6.9L1.1 3l1.3-1.3 19.7 19.7zM20 12V4s-1 2-4 2c-2 0-2-2-5-2-1.2 0-2.3.3-3.2.6l9.3 9.3C19.2 13.5 20 12 20 12"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flag-variant-outline.svg�������������������0000664�0000000�0000000�00000000425�14753064456�0030161�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 3a1 1 0 0 1 1 1v.88C8.06 4.44 9.5 4 11 4c3 0 3 2 5 2 3 0 4-2 4-2v8s-1 2-4 2-3-2-5-2c-3 0-4 2-4 2v7H5V4a1 1 0 0 1 1-1m1 4.25v4.25S9 10 11 10s3 2 5 2 2-1 2-1V7.5S17 8 16 8c-2 0-3-2-5-2S7 7.25 7 7.25"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flag-variant-plus-outline.svg��������������0000664�0000000�0000000�00000000460�14753064456�0031141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 3c.6 0 1 .4 1 1v.9c1.1-.5 2.5-.9 4-.9 3 0 3 2 5 2 3 0 4-2 4-2v8s-1 2-4 2-3-2-5-2c-3 0-4 2-4 2v7H5V4c0-.6.4-1 1-1m1 4.2v4.2s2-1.5 4-1.5 3 2 5 2 2-1 2-1V7.5S17 8 16 8c-2 0-3-2-5-2S7 7.2 7 7.2M18 15v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flag-variant-plus.svg����������������������0000664�0000000�0000000�00000000343�14753064456�0027464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 3c.6 0 1 .4 1 1v.9c1.1-.5 2.5-.9 4-.9 3 0 3 2 5 2 3 0 4-2 4-2v8s-1 2-4 2-3-2-5-2c-3 0-4 2-4 2v7H5V4c0-.6.4-1 1-1m12 12v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flag-variant-remove-outline.svg������������0000664�0000000�0000000�00000000561�14753064456�0031455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 3c.6 0 1 .4 1 1v.9c1.1-.5 2.5-.9 4-.9 3 0 3 2 5 2 3 0 4-2 4-2v8s-1 2-4 2-3-2-5-2c-3 0-4 2-4 2v7H5V4c0-.6.4-1 1-1m1 4.2v4.2s2-1.5 4-1.5 3 2 5 2 2-1 2-1V7.5S17 8 16 8c-2 0-3-2-5-2S7 7.2 7 7.2m14.1 8.3L19 17.6l-2.1-2.1-1.4 1.4 2.1 2.1-2.1 2.1 1.4 1.4 2.1-2.1 2.1 2.1 1.4-1.4-2.1-2.1 2.1-2.1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flag-variant-remove.svg��������������������0000664�0000000�0000000�00000000445�14753064456�0030001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 3c.6 0 1 .4 1 1v.9c1.1-.5 2.5-.9 4-.9 3 0 3 2 5 2 3 0 4-2 4-2v8s-1 2-4 2-3-2-5-2c-3 0-4 2-4 2v7H5V4c0-.6.4-1 1-1m15.1 12.5L19 17.6l-2.1-2.1-1.4 1.4 2.1 2.1-2.1 2.1 1.4 1.4 2.1-2.1 2.1 2.1 1.4-1.4-2.1-2.1 2.1-2.1z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flag-variant.svg���������������������������0000664�0000000�0000000�00000000305�14753064456�0026501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 3a1 1 0 0 1 1 1v.88C8.06 4.44 9.5 4 11 4c3 0 3 2 5 2 3 0 4-2 4-2v8s-1 2-4 2-3-2-5-2c-3 0-4 2-4 2v7H5V4a1 1 0 0 1 1-1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flag.svg�����������������������������������0000664�0000000�0000000�00000000162�14753064456�0025040�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.4 6 14 4H5v17h2v-7h5.6l.4 2h7V6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flare.svg����������������������������������0000664�0000000�0000000�00000000544�14753064456�0025224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 11H1v2h6zm2.17-3.24L7.05 5.64 5.64 7.05l2.12 2.12zM13 1h-2v6h2zm5.36 6.05-1.41-1.41-2.12 2.12 1.41 1.41zM17 11v2h6v-2zm-5-2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3m2.83 7.24 2.12 2.12 1.41-1.41-2.12-2.12zm-9.19.71 1.41 1.41 2.12-2.12-1.41-1.41zM11 23h2v-6h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flash-alert-outline.svg��������������������0000664�0000000�0000000�00000000243�14753064456�0030006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 2h10l-3.5 7H15L8 22v-8H5zm2 2v8h3v2.66L12 11H8.24l3.52-7M17 15h2v2h-2zm0-8h2v6h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flash-alert.svg����������������������������0000664�0000000�0000000�00000000176�14753064456�0026336�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 2v11h3v9l7-12h-4l4-8m2 13h2v2h-2zm0-8h2v6h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flash-auto.svg�����������������������������0000664�0000000�0000000�00000000244�14753064456�0026173�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.85 7.65 18 4l1.15 3.65M19 2h-2l-3.2 9h1.9l.7-2h3.2l.7 2h1.9M3 2v12h3v9l7-12H9l4-9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flash-off-outline.svg����������������������0000664�0000000�0000000�00000000302�14753064456�0027445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9 6.19-2-2V2h10l-3.5 7H17l-1.82 3.37-3.75-3.75L13.76 4H9zm10 12.54L17.73 20l-4.32-4.32L10 22v-8H7V9.27l-5-5L3.27 3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flash-off.svg������������������������������0000664�0000000�0000000�00000000242�14753064456�0025773�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 10h-4l4-8H7v2.18l8.46 8.46M3.27 3 2 4.27l5 5V13h3v9l3.58-6.14L17.73 20 19 18.73z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flash-outline.svg��������������������������0000664�0000000�0000000�00000000214�14753064456�0026677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2h10l-3.5 7H17l-7 13v-8H7zm2 2v8h3v2.66L14 11h-3.76l3.52-7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flash-red-eye.svg��������������������������0000664�0000000�0000000�00000000572�14753064456�0026561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 5c-.56 0-1 .44-1 1s.44 1 1 1 1-.44 1-1-.44-1-1-1m0-3c-2.73 0-5.06 1.66-6 4 .94 2.34 3.27 4 6 4s5.06-1.66 6-4c-.94-2.34-3.27-4-6-4m0 1.5A2.5 2.5 0 0 1 18.5 6 2.5 2.5 0 0 1 16 8.5 2.5 2.5 0 0 1 13.5 6 2.5 2.5 0 0 1 16 3.5M3 2v12h3v9l7-12H9l1.12-2.5C9.44 7.76 8.88 6.93 8.5 6c.69-1.71 2-3.12 3.61-4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flash-triangle-outline.svg�����������������0000664�0000000�0000000�00000000206�14753064456�0030503�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2 1 21h22M12 6l7.5 13h-15m9.5-5h-1.5l1.5-3h-4v4h1v3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flash-triangle.svg�������������������������0000664�0000000�0000000�00000000175�14753064456�0027033�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2 1 21h22zm-2 13v-5h4l-1.5 3.5h2l-3 5.5v-4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flash.svg����������������������������������0000664�0000000�0000000�00000000146�14753064456�0025226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2v11h3v9l7-12h-4l4-8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flashlight-off.svg�������������������������0000664�0000000�0000000�00000000271�14753064456�0027025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5.27 3.28 4 20 20.72 18.73 22 15 18.27V22H9v-9.73zM18 5l-3 5h-3.18l-5-5zm0-1H6V2h12zm-3 7v2.18L12.82 11z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flashlight.svg�����������������������������0000664�0000000�0000000�00000000266�14753064456�0026261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 10 6 5h12l-3 5zm9-6H6V2h12zM9 22V11h6v11zm3-9a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flask-empty-minus-outline.svg��������������0000664�0000000�0000000�00000000532�14753064456�0031172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 17v2h-8v-2zM5 19c0 .55.45 1 1 1h7.34c.27.75.66 1.42 1.19 2H6c-1.66 0-3-1.34-3-3 0-.6.18-1.16.5-1.64L9 7.81V6c-.55 0-1-.45-1-1V4c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v1c0 .55-.45 1-1 1v1.81l2.5 4.37c-.64.17-1.26.45-1.81.82L13 8.35V4h-2v4.35L5.18 18.43c-.11.16-.18.36-.18.57"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flask-empty-minus.svg����������������������0000664�0000000�0000000�00000000424�14753064456�0027515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 17v2h-8v-2zM6 22c-1.66 0-3-1.34-3-3 0-.6.18-1.16.5-1.64L9 7.81V6c-.55 0-1-.45-1-1V4c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v1c0 .55-.45 1-1 1v1.81l2.5 4.37C14.92 12.84 13 15.2 13 18c0 1.54.58 2.94 1.53 4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flask-empty-off-outline.svg����������������0000664�0000000�0000000�00000000520�14753064456�0030606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l6.8 6.8-4.4 7.6c-.3.4-.5 1-.5 1.6 0 1.7 1.3 3 3 3h12c.6 0 1.2-.2 1.6-.5l1.2 1.2zM18 20H6c-.6 0-1-.4-1-1 0-.2.1-.4.2-.6l4.2-7.2zc.1 0 0 0 0 0M11 7.8l-3-3V4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2v1c0 .6-.4 1-1 1v1.8l5.4 9.4-5.4-5.4-2-3.4V4h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flask-empty-off.svg������������������������0000664�0000000�0000000�00000000377�14753064456�0027143�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.8 22.7-1.2-1.2c-.5.3-1 .5-1.6.5H6c-1.7 0-3-1.3-3-3 0-.6.2-1.2.5-1.6l4.4-7.6L1.1 3l1.3-1.3 19.7 19.7zM15 7.8V6c.6 0 1-.4 1-1V4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v.8l12.4 12.4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flask-empty-outline.svg��������������������0000664�0000000�0000000�00000000532�14753064456�0030041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 19a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1c0-.21-.07-.41-.18-.57L13 8.35V4h-2v4.35L5.18 18.43c-.11.16-.18.36-.18.57m1 3a3 3 0 0 1-3-3c0-.6.18-1.16.5-1.63L9 7.81V6a1 1 0 0 1-1-1V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1v1.81l5.5 9.56c.32.47.5 1.03.5 1.63a3 3 0 0 1-3 3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flask-empty-plus-outline.svg���������������0000664�0000000�0000000�00000000555�14753064456�0031027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 14h2v3h3v2h-3v3h-2v-3h-3v-2h3zM5 19c0 .55.45 1 1 1h7.34c.27.75.66 1.42 1.19 2H6c-1.66 0-3-1.34-3-3 0-.6.18-1.16.5-1.64L9 7.81V6c-.55 0-1-.45-1-1V4c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v1c0 .55-.45 1-1 1v1.81l2.5 4.37c-.64.17-1.26.45-1.81.82L13 8.35V4h-2v4.35L5.18 18.43c-.11.16-.18.36-.18.57"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flask-empty-plus.svg�����������������������0000664�0000000�0000000�00000000447�14753064456�0027352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 14h2v3h3v2h-3v3h-2v-3h-3v-2h3zM6 22c-1.66 0-3-1.34-3-3 0-.6.18-1.16.5-1.64L9 7.81V6c-.55 0-1-.45-1-1V4c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v1c0 .55-.45 1-1 1v1.81l2.5 4.37C14.92 12.84 13 15.2 13 18c0 1.54.58 2.94 1.53 4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flask-empty-remove-outline.svg�������������0000664�0000000�0000000�00000000703�14753064456�0031334�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.46 15.88 1.42-1.42L19 16.59l2.12-2.12 1.41 1.41L20.41 18l2.13 2.12-1.42 1.42L19 19.41l-2.12 2.12-1.41-1.41L17.59 18zM5 19c0 .55.45 1 1 1h7.34c.27.75.66 1.42 1.19 2H6c-1.66 0-3-1.34-3-3 0-.6.18-1.16.5-1.64L9 7.81V6c-.55 0-1-.45-1-1V4c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v1c0 .55-.45 1-1 1v1.81l2.5 4.37c-.64.17-1.26.45-1.81.82L13 8.35V4h-2v4.35L5.18 18.43c-.11.16-.18.36-.18.57"/></svg>�������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flask-empty-remove.svg���������������������0000664�0000000�0000000�00000000575�14753064456�0027666�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.46 15.88 1.42-1.42L19 16.59l2.12-2.12 1.41 1.41L20.41 18l2.13 2.12-1.42 1.42L19 19.41l-2.12 2.12-1.41-1.41L17.59 18zM6 22c-1.66 0-3-1.34-3-3 0-.6.18-1.16.5-1.64L9 7.81V6c-.55 0-1-.45-1-1V4c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v1c0 .55-.45 1-1 1v1.81l2.5 4.37C14.92 12.84 13 15.2 13 18c0 1.54.58 2.94 1.53 4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flask-empty.svg����������������������������0000664�0000000�0000000�00000000356�14753064456�0026370�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 22a3 3 0 0 1-3-3c0-.6.18-1.16.5-1.63L9 7.81V6a1 1 0 0 1-1-1V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1v1.81l5.5 9.56c.32.47.5 1.03.5 1.63a3 3 0 0 1-3 3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flask-minus-outline.svg��������������������0000664�0000000�0000000�00000000712�14753064456�0030036�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 17v2h-8v-2zM5 19c0 .55.45 1 1 1h7.34c.27.75.66 1.42 1.19 2H6c-1.66 0-3-1.34-3-3 0-.6.18-1.16.5-1.64L9 7.81V6c-.55 0-1-.45-1-1V4c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v1c0 .55-.45 1-1 1v1.81l2.5 4.37c-.64.17-1.26.45-1.81.82L13 8.35V4h-2v4.35L5.18 18.43c-.11.16-.18.36-.18.57m8-3 .58-.58c-.37.78-.58 1.66-.58 2.58H7.73l2.66-4.61zm-.5-4c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flask-minus.svg����������������������������0000664�0000000�0000000�00000000607�14753064456�0026364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 17v2h-8v-2zM6 22c-1.66 0-3-1.34-3-3 0-.6.18-1.16.5-1.64L9 7.81V6c-.55 0-1-.45-1-1V4c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v1c0 .55-.45 1-1 1v1.81l2.5 4.37c-2 .52-3.64 2.08-4.24 4.08l-4.33-4.33-3.75 6.5c-.11.16-.18.36-.18.57 0 .55.45 1 1 1h7.34c.27.75.66 1.42 1.19 2zm7-12c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1"/></svg>�������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flask-off-outline.svg����������������������0000664�0000000�0000000�00000000560�14753064456�0027456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l6.8 6.8-4.4 7.6c-.3.4-.5 1-.5 1.6 0 1.7 1.3 3 3 3h12c.6 0 1.2-.2 1.6-.5l1.2 1.2zM18 20H6c-.6 0-1-.4-1-1 0-.2.1-.4.2-.6l4.2-7.2 4.2 4.2-.6.6-2.6-2.6L7.7 18h8.4zc.1 0 0 0 0 0M11 7.8l-3-3V4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2v1c0 .6-.4 1-1 1v1.8l5.4 9.4-5.4-5.4-2-3.4V4h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flask-off.svg������������������������������0000664�0000000�0000000�00000000501�14753064456�0025774�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l6.8 6.8-4.4 7.6c-.3.4-.5 1-.5 1.6 0 1.7 1.3 3 3 3h12c.6 0 1.2-.2 1.6-.5l1.2 1.2zM18 20H6c-.6 0-1-.4-1-1 0-.2.1-.4.2-.6L9 11.9l5 5.1.6-.6zc.1 0 0 0 0 0M8 4.8V4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2v1c0 .6-.4 1-1 1v1.8l5.4 9.4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flask-outline.svg��������������������������0000664�0000000�0000000�00000000706�14753064456�0026710�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 19a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1c0-.21-.07-.41-.18-.57L13 8.35V4h-2v4.35L5.18 18.43c-.11.16-.18.36-.18.57m1 3a3 3 0 0 1-3-3c0-.6.18-1.16.5-1.63L9 7.81V6a1 1 0 0 1-1-1V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1v1.81l5.5 9.56c.32.47.5 1.03.5 1.63a3 3 0 0 1-3 3zm7-6 1.34-1.34L16.27 18H7.73l2.66-4.61zm-.5-4a.5.5 0 0 1 .5.5.5.5 0 0 1-.5.5.5.5 0 0 1-.5-.5.5.5 0 0 1 .5-.5"/></svg>����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flask-plus-outline.svg���������������������0000664�0000000�0000000�00000000735�14753064456�0027673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 14h2v3h3v2h-3v3h-2v-3h-3v-2h3zM5 19c0 .55.45 1 1 1h7.34c.27.75.66 1.42 1.19 2H6c-1.66 0-3-1.34-3-3 0-.6.18-1.16.5-1.64L9 7.81V6c-.55 0-1-.45-1-1V4c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v1c0 .55-.45 1-1 1v1.81l2.5 4.37c-.64.17-1.26.45-1.81.82L13 8.35V4h-2v4.35L5.18 18.43c-.11.16-.18.36-.18.57m8-3 .58-.58c-.37.78-.58 1.66-.58 2.58H7.73l2.66-4.61zm-.5-4c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5"/></svg>�����������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flask-plus.svg�����������������������������0000664�0000000�0000000�00000000632�14753064456�0026212�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 14h2v3h3v2h-3v3h-2v-3h-3v-2h3zM6 22c-1.66 0-3-1.34-3-3 0-.6.18-1.16.5-1.64L9 7.81V6c-.55 0-1-.45-1-1V4c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v1c0 .55-.45 1-1 1v1.81l2.5 4.37c-2 .52-3.64 2.08-4.24 4.08l-4.33-4.33-3.75 6.5c-.11.16-.18.36-.18.57 0 .55.45 1 1 1h7.34c.27.75.66 1.42 1.19 2zm7-12c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flask-remove-outline.svg�������������������0000664�0000000�0000000�00000001063�14753064456�0030200�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.46 15.88 1.42-1.42L19 16.59l2.12-2.12 1.41 1.41L20.41 18l2.13 2.12-1.42 1.42L19 19.41l-2.12 2.12-1.41-1.41L17.59 18zM5 19c0 .55.45 1 1 1h7.34c.27.75.66 1.42 1.19 2H6c-1.66 0-3-1.34-3-3 0-.6.18-1.16.5-1.64L9 7.81V6c-.55 0-1-.45-1-1V4c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v1c0 .55-.45 1-1 1v1.81l2.5 4.37c-.64.17-1.26.45-1.81.82L13 8.35V4h-2v4.35L5.18 18.43c-.11.16-.18.36-.18.57m8-3 .58-.58c-.37.78-.58 1.66-.58 2.58H7.73l2.66-4.61zm-.5-4c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flask-remove.svg���������������������������0000664�0000000�0000000�00000000760�14753064456�0026526�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.46 15.88 1.42-1.42L19 16.59l2.12-2.12 1.41 1.41L20.41 18l2.13 2.12-1.42 1.42L19 19.41l-2.12 2.12-1.41-1.41L17.59 18zM6 22c-1.66 0-3-1.34-3-3 0-.6.18-1.16.5-1.64L9 7.81V6c-.55 0-1-.45-1-1V4c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v1c0 .55-.45 1-1 1v1.81l2.5 4.37c-2 .52-3.64 2.08-4.24 4.08l-4.33-4.33-3.75 6.5c-.11.16-.18.36-.18.57 0 .55.45 1 1 1h7.34c.27.75.66 1.42 1.19 2zm7-12c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1"/></svg>����������������mkdocs-material-9.6.4/material/templates/.icons/material/flask-round-bottom-empty-outline.svg�������0000664�0000000�0000000�00000000363�14753064456�0032472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 15c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.79 1.64-5.2 4-6.33V5c0-.55.45-1 1-1h.5l-1-2h5l-1 2h.5c.55 0 1 .45 1 1v3.67c2.36 1.13 4 3.54 4 6.33m-8-9v4.1a5 5 0 1 0 2 0V6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flask-round-bottom-empty.svg���������������0000664�0000000�0000000�00000000331�14753064456�0031010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 15c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.79 1.64-5.2 4-6.33V5c0-.55.45-1 1-1h.5l-1-2h5l-1 2h.5c.55 0 1 .45 1 1v3.67c2.36 1.13 4 3.54 4 6.33"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flask-round-bottom-outline.svg�������������0000664�0000000�0000000�00000000473�14753064456�0031340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 15c0 1.66-1.34 3-3 3s-3-1.34-3-3v-1h2v1c0 .55.45 1 1 1s1-.45 1-1v-1h2zm4 0c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.79 1.64-5.2 4-6.33V5c0-.55.45-1 1-1h.5l-1-2h5l-1 2h.5c.55 0 1 .45 1 1v3.67c2.36 1.13 4 3.54 4 6.33m-8-9v4.1a5 5 0 1 0 2 0V6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flask-round-bottom.svg���������������������0000664�0000000�0000000�00000000553�14753064456�0027662�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 15c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.79 1.64-5.2 4-6.33V5c0-.55.45-1 1-1h.5l-1-2h5l-1 2h.5c.55 0 1 .45 1 1v3.67c2.36 1.13 4 3.54 4 6.33m-8-9v4.1A5 5 0 0 0 7 15l.08.91L9 13.93 13.07 18l3.86-3.86A5.01 5.01 0 0 0 13 10.1V6zm2.07 6c.55 0 1 .45 1 1s-.45 1-1 1c-.57 0-1-.45-1-1s.43-1 1-1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flask.svg����������������������������������0000664�0000000�0000000�00000000637�14753064456�0025236�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 22a3 3 0 0 1-3-3c0-.6.18-1.16.5-1.63L9 7.81V6a1 1 0 0 1-1-1V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1v1.81l5.5 9.56c.32.47.5 1.03.5 1.63a3 3 0 0 1-3 3zm-1-3a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1c0-.21-.07-.41-.18-.57l-2.29-3.96L14 17l-5.07-5.07-3.75 6.5c-.11.16-.18.36-.18.57m8-9a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>�������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fleur-de-lis.svg���������������������������0000664�0000000�0000000�00000000430�14753064456�0026415�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2S9 4 9 7s2 5 2 9h-1s0-2-1-4c-2-4-6-2-6 1s2 3 2 3c0-3 3.5-3 3.5 0H7v2h3.5L9 20s1 1 2 0l1 2 1-2c1 1 2 0 2 0l-1.5-2H17v-2h-1.5c0-3 3.5-3 3.5 0 0 0 2 0 2-3s-4-5-6-1c-1 2-1 4-1 4h-1c0-4 2-6 2-9s-3-5-3-5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flip-horizontal.svg������������������������0000664�0000000�0000000�00000000377�14753064456�0027260�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 21h2v-2h-2m4-10h2V7h-2M3 5v14c0 1.1.9 2 2 2h4v-2H5V5h4V3H5c-1.1 0-2 .9-2 2m16-2v2h2c0-1.1-.9-2-2-2m-8 20h2V1h-2m8 16h2v-2h-2M15 5h2V3h-2m4 10h2v-2h-2m0 10c1.1 0 2-.9 2-2h-2Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flip-to-back.svg���������������������������0000664�0000000�0000000�00000000450�14753064456�0026377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 17h2v-2h-2m0-10h2V3h-2M5 7H3v12a2 2 0 0 0 2 2h12v-2H5m14-2a2 2 0 0 0 2-2h-2m0-6h2V7h-2m0 6h2v-2h-2M9 17v-2H7a2 2 0 0 0 2 2m4-14h-2v2h2m6-2v2h2a2 2 0 0 0-2-2m-6 12h-2v2h2M9 3c-1.11 0-2 .89-2 2h2m0 6H7v2h2m0-6H7v2h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flip-to-front.svg��������������������������0000664�0000000�0000000�00000000403�14753064456�0026625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 21h2v-2H7m4 2h2v-2h-2m8-4H9V5h10m0-2H9c-1.11 0-2 .89-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-4 18h2v-2h-2M3 9h2V7H3m2 14v-2H3a2 2 0 0 0 2 2m-2-4h2v-2H3m0-2h2v-2H3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flip-vertical.svg��������������������������0000664�0000000�0000000�00000000375�14753064456�0026676�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 15v2h2v-2m10 4v2h2v-2m2-16H5c-1.1 0-2 .9-2 2v4h2V5h14v4h2V5c0-1.1-.9-2-2-2m2 16h-2v2c1.1 0 2-.9 2-2M1 11v2h22v-2M7 19v2h2v-2m10-4v2h2v-2m-10 4v2h2v-2M3 19c0 1.1.9 2 2 2v-2Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/floor-lamp-dual-outline.svg����������������0000664�0000000�0000000�00000000443�14753064456�0030601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.73 10.06-1.56 1.18.83.96V20H8v2h8v-2h-3v-7.7l.85-1.04-1.58-1.19zM8.32 5.31l.91 2.88-.23.18L6.47 6.7zM9.39 2 3 6.81l6.08 4.01 2.47-1.89zm6.28 3.3 1.86 1.4L15 8.37l-.23-.17zM14.61 2l-2.17 6.95 2.48 1.87L21 6.81z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/floor-lamp-dual.svg������������������������0000664�0000000�0000000�00000000332�14753064456�0027121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.73 10.06-1.56 1.18.83.96V20H8v2h8v-2h-3v-7.7l.85-1.04-1.58-1.19zm-2.65.76L3 6.81 9.39 2l2.16 6.93zM14.61 2 21 6.81l-6.08 4.01-2.48-1.87z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/floor-lamp-outline.svg���������������������0000664�0000000�0000000�00000000212�14753064456�0027650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15 2 2 7H7l2-7m4.6 2h-3.2l-.85 3h4.9M11 10h2v10h3v2H8v-2h3Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/floor-lamp-torchiere-outline.svg�����������0000664�0000000�0000000�00000000210�14753064456�0031630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14 4-1.3 3h-1.4L10 4zm3-2H7l3 7h4zm-4 18h3v2H8v-2h3V10h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/floor-lamp-torchiere-variant-outline.svg���0000664�0000000�0000000�00000000256�14753064456�0033304�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.97 4-1.29 3h-1.36l-1.29-3zM17 2H7l3 7h4zm-1.08 20L13 15v7h-2v-7l-2.92 7H5.92l5-12h2.16l5 12z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/floor-lamp-torchiere-variant.svg�����������0000664�0000000�0000000�00000000220�14753064456�0031616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7 2 3 7h4l3-7zm8.92 20L13 15v7h-2v-7l-2.92 7H5.92l5-12h2.16l5 12z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/floor-lamp-torchiere.svg�������������������0000664�0000000�0000000�00000000163�14753064456�0030162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7 2 3 7h4l3-7zm6 18h3v2H8v-2h3V10h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/floor-lamp.svg�����������������������������0000664�0000000�0000000�00000000162�14753064456�0026177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15 2 2 7H7l2-7m2 8h2v10h3v2H8v-2h3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/floor-plan.svg�����������������������������0000664�0000000�0000000�00000000240�14753064456�0026175�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 5v5H9V5H5v8h4v-1h1v5H9v-3H5v5h7v-2h1v2h6v-2h2v4H3V3h18v12h-2v-5h-6v5h-1V9h7V5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/floppy-variant.svg�������������������������0000664�0000000�0000000�00000000330�14753064456�0027077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3v18h18V3zm9 7a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m0 5a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1 1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/floppy.svg���������������������������������0000664�0000000�0000000�00000000351�14753064456�0025440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5.5L18.5 3H17v6a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1V3zm7 1v5h3V4zm-5 8h10a1 1 0 0 1 1 1v6H6v-6a1 1 0 0 1 1-1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flower-outline.svg�������������������������0000664�0000000�0000000�00000002364�14753064456�0027110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.66 13.07c-1.74 0-3.16-1.41-3.16-3.14 0-.71.26-1.39.69-1.93-.42-.54-.69-1.22-.69-1.93 0-1.73 1.43-3.14 3.16-3.14l.43.03A3.15 3.15 0 0 1 12 1c1.31 0 2.44.81 2.91 1.96l.43-.03c1.73 0 3.16 1.41 3.16 3.14 0 .71-.26 1.39-.69 1.93.42.54.69 1.22.69 1.93 0 1.73-1.43 3.14-3.16 3.14l-.43-.03A3.15 3.15 0 0 1 12 15a3.15 3.15 0 0 1-2.91-1.96zM12 13c.62 0 1.12-.5 1.14-1.1l-.11-1.09c-.32.12-.67.19-1.03.19s-.7-.07-1-.19l-.14 1.09c.02.6.52 1.1 1.14 1.1m3.34-1.93c.63 0 1.16-.51 1.16-1.15 0-.42-.27-.84-.67-1.03l-.88-.42c-.12.74-.51 1.38-1.06 1.83l.81.57c.18.13.4.2.64.2m-.65-5.94-.82.56c.56.45.95 1.09 1.07 1.81l.88-.4c.41-.2.68-.6.68-1.03 0-.63-.53-1.14-1.16-1.14-.23 0-.45.07-.65.2M12 3c-.62 0-1.12.5-1.14 1.1L11 5.19c.3-.12.64-.19 1-.19s.71.07 1.03.19l.11-1.09C13.12 3.5 12.62 3 12 3M8.66 4.93c-.63 0-1.16.51-1.16 1.14 0 .43.27.83.67 1.03l.88.4c.12-.72.51-1.36 1.06-1.81l-.81-.56c-.18-.13-.4-.2-.64-.2M8.17 8.9c-.4.2-.67.6-.67 1.02 0 .63.53 1.14 1.16 1.14.23 0 .45-.06.65-.2l.81-.55c-.56-.45-.95-1.09-1.07-1.81zM12 22a9 9 0 0 1-9-9 9 9 0 0 1 9 9 9 9 0 0 1 9-9 9 9 0 0 1-9 9m2.44-2.44a7.04 7.04 0 0 0 4.12-4.12c-1.9.7-3.41 2.22-4.12 4.12m-9-4.12a7.04 7.04 0 0 0 4.12 4.12c-.7-1.9-2.22-3.41-4.12-4.12"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flower-pollen-outline.svg������������������0000664�0000000�0000000�00000002606�14753064456�0030376�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 6c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1M8 9c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1M6 5c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1m3-1c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1m6 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1m4 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m-4 4c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1m3.5 5.07c0 .71-.26 1.39-.69 1.93.42.54.69 1.22.69 1.93 0 1.73-1.43 3.14-3.16 3.14l-.43-.03C14.44 21.19 13.31 22 12 22s-2.44-.81-2.91-1.96l-.43.03c-1.74 0-3.16-1.41-3.16-3.14 0-.71.26-1.39.69-1.93-.42-.54-.69-1.22-.69-1.93 0-1.73 1.43-3.14 3.16-3.14l.43.03C9.56 8.81 10.69 8 12 8s2.44.81 2.91 1.96l.43-.03c1.73 0 3.16 1.41 3.16 3.14m-11 0c0 .43.27.83.67 1.03l.88.4c.12-.72.51-1.36 1.06-1.81l-.81-.56c-.18-.13-.4-.2-.64-.2-.63 0-1.16.51-1.16 1.14m2.62 4.24c-.56-.45-.95-1.09-1.07-1.81l-.88.4c-.4.2-.67.6-.67 1.02 0 .63.53 1.14 1.16 1.14.23 0 .45-.06.65-.2zm3.02 1.59-.11-1.09c-.32.12-.67.19-1.03.19s-.7-.07-1-.19l-.14 1.09c.02.6.52 1.1 1.14 1.1s1.12-.5 1.14-1.1m0-7.8c-.02-.6-.52-1.1-1.14-1.1s-1.12.5-1.14 1.1l.14 1.09c.3-.12.64-.19 1-.19s.71.07 1.03.19zm3.36 5.82c0-.42-.27-.84-.67-1.03l-.88-.42c-.12.74-.51 1.38-1.06 1.83l.81.57c.18.13.4.2.64.2.63 0 1.16-.51 1.16-1.15m0-3.85c0-.63-.53-1.14-1.16-1.14-.23 0-.45.07-.65.2l-.82.56c.56.45.95 1.09 1.07 1.81l.88-.4c.41-.2.68-.6.68-1.03"/></svg>��������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flower-pollen.svg��������������������������0000664�0000000�0000000�00000001457�14753064456�0026724�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.4 12.75a2.5 2.5 0 0 0-2.5-2.5c-.53 0-1.02.16-1.4.44v-.19a2.5 2.5 0 0 0-5 0v.19c-.38-.28-.87-.44-1.4-.44a2.5 2.5 0 0 0-2.5 2.5c0 .99.59 1.85 1.43 2.25-.84.4-1.43 1.25-1.43 2.25a2.5 2.5 0 0 0 2.5 2.5c.53 0 1.02-.17 1.4-.44v.19a2.5 2.5 0 0 0 5 0v-.19c.38.27.87.44 1.4.44a2.5 2.5 0 0 0 2.5-2.5c0-1-.59-1.85-1.43-2.25.84-.4 1.43-1.26 1.43-2.25M12 17.5a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5M11 6c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1M7 8c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1M5 6c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m3-3c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1m6 0c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1m6 2c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1m-4 2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flower-poppy.svg���������������������������0000664�0000000�0000000�00000000756�14753064456�0026603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 12A3.5 3.5 0 0 0 22 8.5 6.5 6.5 0 0 0 15.5 2 3.5 3.5 0 0 0 12 5.5 3.5 3.5 0 0 0 8.5 2 6.5 6.5 0 0 0 2 8.5 3.5 3.5 0 0 0 5.5 12 3.5 3.5 0 0 0 2 15.5 6.5 6.5 0 0 0 8.5 22a3.5 3.5 0 0 0 3.5-3.5 3.5 3.5 0 0 0 3.5 3.5 6.5 6.5 0 0 0 6.5-6.5 3.5 3.5 0 0 0-3.5-3.5M12 16a4 4 0 0 1-4-4 4 4 0 0 1 4-4 4 4 0 0 1 4 4 4 4 0 0 1-4 4m2.5-4a2.5 2.5 0 0 1-2.5 2.5A2.5 2.5 0 0 1 9.5 12 2.5 2.5 0 0 1 12 9.5a2.5 2.5 0 0 1 2.5 2.5"/></svg>������������������mkdocs-material-9.6.4/material/templates/.icons/material/flower-tulip-outline.svg�������������������0000664�0000000�0000000�00000000744�14753064456�0030243�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 13a9 9 0 0 0 9 9 9 9 0 0 0-9-9m2.44 2.44c1.91.71 3.41 2.21 4.12 4.12a6.99 6.99 0 0 1-4.12-4.12M12 22a9 9 0 0 0 9-9 9 9 0 0 0-9 9m2.42-2.43a6.88 6.88 0 0 1 4.15-4.15 7.03 7.03 0 0 1-4.15 4.15M12 14a6 6 0 0 0 6-6V3a5.9 5.9 0 0 0-2.16.39c-.55.23-1.04.57-1.45 1L12 2 9.61 4.39c-.41-.43-.9-.77-1.45-1A5.9 5.9 0 0 0 6 3v5a6 6 0 0 0 6 6M8 5.61l1.57 1.65L12 4.83l2.43 2.43L16 5.61V8a4 4 0 0 1-4 4 4 4 0 0 1-4-4z"/></svg>����������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flower-tulip.svg���������������������������0000664�0000000�0000000�00000000426�14753064456�0026563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 13a9 9 0 0 0 9 9 9 9 0 0 0-9-9m9 9a9 9 0 0 0 9-9 9 9 0 0 0-9 9m6-19v5a6 6 0 0 1-6 6 6 6 0 0 1-6-6V3c.74 0 1.47.12 2.16.39.55.23 1.04.57 1.45 1L12 2l2.39 2.39c.41-.43.9-.77 1.45-1A5.9 5.9 0 0 1 18 3"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/flower.svg���������������������������������0000664�0000000�0000000�00000001156�14753064456�0025431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 13a9 9 0 0 0 9 9c0-5-4.03-9-9-9m9-7.5A2.5 2.5 0 0 1 14.5 8a2.5 2.5 0 0 1-2.5 2.5A2.5 2.5 0 0 1 9.5 8 2.5 2.5 0 0 1 12 5.5m-6.4 4.75a2.5 2.5 0 0 0 2.5 2.5c.53 0 1.02-.17 1.4-.44v.19A2.5 2.5 0 0 0 12 15a2.5 2.5 0 0 0 2.5-2.5v-.19c.38.27.87.44 1.4.44a2.5 2.5 0 0 0 2.5-2.5c0-1-.59-1.85-1.43-2.25.84-.4 1.43-1.26 1.43-2.25a2.5 2.5 0 0 0-2.5-2.5c-.53 0-1.02.16-1.4.44V3.5A2.5 2.5 0 0 0 12 1a2.5 2.5 0 0 0-2.5 2.5v.19c-.38-.28-.87-.44-1.4-.44a2.5 2.5 0 0 0-2.5 2.5c0 .99.59 1.85 1.43 2.25-.84.4-1.43 1.25-1.43 2.25M12 22a9 9 0 0 0 9-9c-5 0-9 4-9 9"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/focus-auto.svg�����������������������������0000664�0000000�0000000�00000000446�14753064456�0026221�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19h-4v2h4c1.1 0 2-.9 2-2v-4h-2m0-12h-4v2h4v4h2V5c0-1.1-.9-2-2-2M5 5h4V3H5c-1.1 0-2 .9-2 2v4h2m0 6H3v4c0 1.1.9 2 2 2h4v-2H5zm3-8c-1.1 0-2 .9-2 2v8h2v-4h2v4h2V9c0-1.1-.9-2-2-2zm0 2h2v2H8zm5-2v10h2v-4h2v-2h-2V9h3V7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/focus-field-horizontal.svg�����������������0000664�0000000�0000000�00000000360�14753064456�0030516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19h-4v2h4c1.1 0 2-.9 2-2v-4h-2m0-12h-4v2h4v4h2V5c0-1.1-.9-2-2-2M5 5h4V3H5c-1.1 0-2 .9-2 2v4h2m0 6H3v4c0 1.1.9 2 2 2h4v-2H5zm2-4h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/focus-field-vertical.svg�������������������0000664�0000000�0000000�00000000361�14753064456�0030137�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19h-4v2h4c1.1 0 2-.9 2-2v-4h-2m0-12h-4v2h4v4h2V5c0-1.1-.9-2-2-2M5 5h4V3H5c-1.1 0-2 .9-2 2v4h2m0 6H3v4c0 1.1.9 2 2 2h4v-2H5zm6-4h2v2h-2zm0-4h2v2h-2zm0 8h2v2h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/focus-field.svg����������������������������0000664�0000000�0000000�00000000467�14753064456�0026337�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19h-4v2h4c1.1 0 2-.9 2-2v-4h-2m0-12h-4v2h4v4h2V5c0-1.1-.9-2-2-2M5 5h4V3H5c-1.1 0-2 .9-2 2v4h2m0 6H3v4c0 1.1.9 2 2 2h4v-2H5zm2-4h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zM7 7h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zm-8 8h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-account-outline.svg�����������������0000664�0000000�0000000�00000000411�14753064456�0030506�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 14c1.33 0 4 .67 4 2v1h-8v-1c0-1.33 2.67-2 4-2m0-1c1.11 0 2-.89 2-2s-.89-2-2-2a2 2 0 1 0 0 4m7-5v10c0 1.11-.89 2-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h6l2 2h8a2 2 0 0 1 2 2m-2 0H4v10h16z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-account.svg�������������������������0000664�0000000�0000000�00000000405�14753064456�0027034�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 17h-8v-1c0-1.33 2.67-2 4-2s4 .67 4 2m-4-7a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m5-3h-8l-2-2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-alert-outline.svg�������������������0000664�0000000�0000000�00000000544�14753064456�0030170�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 12h2v5h-2zm0 6h2v2h-2zm1-9c1.07 0 2.09.24 3 .67V8H3v10h6.29A7 7 0 0 1 9 16a7 7 0 0 1 7-7m7 7a7 7 0 0 1-7 7c-2.38 0-4.5-1.19-5.75-3H3a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v3.1c1.24 1.26 2 2.99 2 4.9m-7-5a5 5 0 0 0-5 5 5 5 0 0 0 5 5 5 5 0 0 0 5-5 5 5 0 0 0-5-5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-alert.svg���������������������������0000664�0000000�0000000�00000000442�14753064456�0026510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 12h2v5h-2zm0 6h2v2h-2zm8-2a7 7 0 0 1-7 7c-2.38 0-4.5-1.19-5.75-3H3a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v3.1c1.24 1.26 2 2.99 2 4.9m-7-5a5 5 0 0 0-5 5 5 5 0 0 0 5 5 5 5 0 0 0 5-5 5 5 0 0 0-5-5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-arrow-down-outline.svg��������������0000664�0000000�0000000�00000000356�14753064456�0031161�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 8v5.81c-.61-.35-1.28-.59-2-.72V8H4v10h9.09c-.05.33-.09.66-.09 1s.04.67.09 1H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2m-2 8h-2v4h-2l3 3 3-3h-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-arrow-down.svg����������������������0000664�0000000�0000000�00000000343�14753064456�0027500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 8v5.81c-.88-.51-1.9-.81-3-.81-3.31 0-6 2.69-6 6 0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2m-2 8h-2v4h-2l3 3 3-3h-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-arrow-left-outline.svg��������������0000664�0000000�0000000�00000000356�14753064456�0031144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 8v5.81c-.61-.35-1.28-.59-2-.72V8H4v10h9.09c-.05.33-.09.66-.09 1s.04.67.09 1H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2m-4 8-3 3 3 3v-2h4v-2h-4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-arrow-left-right-outline.svg��������0000664�0000000�0000000�00000000424�14753064456�0032253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v5.81c-.61-.35-1.28-.59-2-.72V8H4v10h9.09c-.05.33-.09.66-.09 1m10-2-3-2.5V16h-4v2h4v1.5zm-5 1.5L15 21l3 2.5V22h4v-2h-4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-arrow-left-right.svg����������������0000664�0000000�0000000�00000000404�14753064456�0030574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v5.81c-.88-.51-1.9-.81-3-.81-3.31 0-6 2.69-6 6m10-2-3-2.5V16h-4v2h4v1.5zm-5 1.5L15 21l3 2.5V22h4v-2h-4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-arrow-left.svg����������������������0000664�0000000�0000000�00000000343�14753064456�0027463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 8v5.81c-.88-.51-1.9-.81-3-.81-3.31 0-6 2.69-6 6 0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2m-4 8-3 3 3 3v-2h4v-2h-4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-arrow-right-outline.svg�������������0000664�0000000�0000000�00000000360�14753064456�0031322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v5.81c-.61-.35-1.28-.59-2-.72V8H4v10h9.09c-.05.33-.09.66-.09 1m10 0-3-3v2h-4v2h4v2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-arrow-right.svg���������������������0000664�0000000�0000000�00000000340�14753064456�0027643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v5.81c-.88-.51-1.9-.81-3-.81-3.31 0-6 2.69-6 6m10 0-3-3v2h-4v2h4v2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-arrow-up-down-outline.svg�����������0000664�0000000�0000000�00000000423�14753064456�0031576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v5.81c-.61-.35-1.28-.59-2-.72V8H4v10h9.09c-.05.33-.09.66-.09 1m9 1v-4h-2v4h-1.5l2.5 3 2.5-3zm-5-5-2.5 3H16v4h2v-4h1.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-arrow-up-down.svg�������������������0000664�0000000�0000000�00000000402�14753064456�0030116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v5.81c-.88-.51-1.9-.81-3-.81-3.31 0-6 2.69-6 6m4-4-2.5 3H16v4h2v-4h1.5zm5 5v-4h-2v4h-1.5l2.5 3 2.5-3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-arrow-up-outline.svg����������������0000664�0000000�0000000�00000000354�14753064456�0030634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 8v5.81c-.61-.35-1.28-.59-2-.72V8H4v10h9.09c-.05.33-.09.66-.09 1s.04.67.09 1H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2m-6 10h2v4h2v-4h2l-3-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-arrow-up.svg������������������������0000664�0000000�0000000�00000000341�14753064456�0027153�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 8v5.81c-.88-.51-1.9-.81-3-.81-3.31 0-6 2.69-6 6 0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2m-6 10h2v4h2v-4h2l-3-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-cancel-outline.svg������������������0000664�0000000�0000000�00000000701�14753064456�0030301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18.5c0 .5.07 1 .18 1.5H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v5.04c-.61-.39-1.28-.68-2-.86V8H4v10h8.03c-.03.17-.03.33-.03.5m11 0c0 2.5-2 4.5-4.5 4.5S14 21 14 18.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5m-3 2.58L15.92 17c-.27.42-.42.94-.42 1.5 0 1.66 1.34 3 3 3 .56 0 1.08-.15 1.5-.42m1.5-2.58c0-1.66-1.34-3-3-3-.56 0-1.08.15-1.5.42L21.08 20c.27-.42.42-.94.42-1.5"/></svg>���������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-cancel.svg��������������������������0000664�0000000�0000000�00000000670�14753064456�0026631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18.5c0 .5.07 1 .18 1.5H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v5.04c-1-.65-2.21-1.04-3.5-1.04a6.5 6.5 0 0 0-6.5 6.5m11 0c0 2.5-2 4.5-4.5 4.5S14 21 14 18.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5m-3 2.58L15.92 17c-.27.42-.42.94-.42 1.5 0 1.66 1.34 3 3 3 .56 0 1.08-.15 1.5-.42m1.5-2.58c0-1.66-1.34-3-3-3-.56 0-1.08.15-1.5.42L21.08 20c.27-.42.42-.94.42-1.5"/></svg>������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-check-outline.svg�������������������0000664�0000000�0000000�00000000421�14753064456�0030130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v5.81c-.61-.35-1.28-.59-2-.72V8H4v10h9.09c-.05.33-.09.66-.09 1m8.34-3.16-3.59 3.59-1.59-1.59L15 19l2.75 3 4.75-4.75z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-check.svg���������������������������0000664�0000000�0000000�00000000401�14753064456�0026451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v5.81c-.88-.51-1.9-.81-3-.81-3.31 0-6 2.69-6 6m8.34-3.16-3.59 3.59-1.59-1.59L15 19l2.75 3 4.75-4.75z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-clock-outline.svg�������������������0000664�0000000�0000000�00000000567�14753064456�0030161�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 12h1.5v4.25l2.86 1.69-.75 1.22L15 17zm4-4H3v10h6.29C9.1 17.37 9 16.7 9 16a7 7 0 0 1 7-7c1.07 0 2.09.24 3 .67zM3 20a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h6l2 2h8a2 2 0 0 1 2 2v3.1c1.24 1.26 2 2.99 2 4.9a7 7 0 0 1-7 7c-2.38 0-4.5-1.19-5.75-3zm13-9a5 5 0 0 0-5 5 5 5 0 0 0 5 5 5 5 0 0 0 5-5 5 5 0 0 0-5-5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-clock.svg���������������������������0000664�0000000�0000000�00000000463�14753064456�0026477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h7.26c1.31 1.88 3.45 3 5.74 3a7 7 0 0 0 7-7c0-1.83-.72-3.58-2-4.89V8a2 2 0 0 0-2-2h-8L9 4zm13 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m-1 1v5l3.61 2.16.75-1.22-2.86-1.69V12z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-cog-outline.svg���������������������0000664�0000000�0000000�00000001405�14753064456�0027626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h8v-2H4V8h16v4h2V8a2 2 0 0 0-2-2h-8l-2-2m8 10a.26.26 0 0 0-.26.21l-.19 1.32c-.3.13-.59.29-.85.47l-1.24-.5c-.11 0-.24 0-.31.13l-1 1.73c-.06.11-.04.24.06.32l1.06.82a4.2 4.2 0 0 0 0 1l-1.06.82a.26.26 0 0 0-.06.32l1 1.73c.06.13.19.13.31.13l1.24-.5c.26.18.54.35.85.47l.19 1.32c.02.12.12.21.26.21h2c.11 0 .22-.09.24-.21l.19-1.32c.3-.13.57-.29.84-.47l1.23.5c.13 0 .26 0 .33-.13l1-1.73a.26.26 0 0 0-.06-.32l-1.07-.82c.02-.17.04-.33.04-.5s-.01-.33-.04-.5l1.06-.82a.26.26 0 0 0 .06-.32l-1-1.73c-.06-.13-.19-.13-.32-.13l-1.23.5c-.27-.18-.54-.35-.85-.47l-.19-1.32A.236.236 0 0 0 20 14m-1 3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5c-.84 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-cog.svg�����������������������������0000664�0000000�0000000�00000001452�14753064456�0026153�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h8.08a7 7 0 0 1-.08-1 7 7 0 0 1 7-7 7 7 0 0 1 3 .69V8a2 2 0 0 0-2-2h-8l-2-2zm14 10a.26.26 0 0 0-.26.21l-.19 1.32c-.3.13-.59.29-.85.47l-1.24-.5c-.11 0-.24 0-.31.13l-1 1.73c-.06.11-.04.24.06.32l1.06.82a4.2 4.2 0 0 0 0 1l-1.06.82a.26.26 0 0 0-.06.32l1 1.73c.06.13.19.13.31.13l1.24-.5c.26.18.54.35.85.47l.19 1.32c.02.12.12.21.26.21h2c.11 0 .22-.09.24-.21l.19-1.32c.3-.13.57-.29.84-.47l1.23.5c.13 0 .26 0 .33-.13l1-1.73a.26.26 0 0 0-.06-.32l-1.07-.82c.02-.17.04-.33.04-.5s-.01-.33-.04-.5l1.06-.82a.26.26 0 0 0 .06-.32l-1-1.73c-.06-.13-.19-.13-.32-.13l-1.23.5c-.27-.18-.54-.35-.85-.47l-.19-1.32A.236.236 0 0 0 20 14zm1 3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5c-.84 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-download-outline.svg����������������0000664�0000000�0000000�00000000300�14753064456�0030656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 18H4V8h16m0-2h-8l-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2m-6 3h2v4h3l-4 4-4-4h3Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-download.svg������������������������0000664�0000000�0000000�00000000273�14753064456�0027212�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2zm-.75 7H16V9h-2v4h-3.25L15 17.25"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-edit-outline.svg��������������������0000664�0000000�0000000�00000000516�14753064456�0030005�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 18h8.13L11 19.13V20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v2.15c-.26-.09-.54-.15-.83-.15-.42 0-.81.11-1.17.3V8H4zm18.85-4.53-1.32-1.32c-.2-.2-.53-.2-.72 0l-.98.98 2.04 2.04.98-.98c.2-.19.2-.52 0-.72M13 19.96V22h2.04l6.13-6.12-2.04-2.05z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-edit.svg����������������������������0000664�0000000�0000000�00000000513�14753064456�0026325�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.39 10.74 11 19.13V20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v2.15c-.26-.09-.54-.15-.83-.15-.67 0-1.3.26-1.78.74M13 19.96V22h2.04l6.13-6.12-2.04-2.05zm9.85-6.49-1.32-1.32c-.2-.2-.53-.2-.72 0l-.98.98 2.04 2.04.98-.98c.2-.19.2-.52 0-.72"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-eye-outline.svg���������������������0000664�0000000�0000000�00000000627�14753064456�0027645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.3 20H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h6l2 2h8c1.1 0 2 .9 2 2v6.6c-.6-.4-1.3-.8-2-1.1V8H4v10h5.3c0 .1-.1.2-.1.3l-.4.7.3.7c.1.1.1.2.2.3M23 19c-.9 2.3-3.3 4-6 4s-5.1-1.7-6-4c.9-2.3 3.3-4 6-4s5.1 1.7 6 4m-3.5 0c0-1.4-1.1-2.5-2.5-2.5s-2.5 1.1-2.5 2.5 1.1 2.5 2.5 2.5 2.5-1.1 2.5-2.5M17 18c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1"/></svg>���������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-eye.svg�����������������������������0000664�0000000�0000000�00000000624�14753064456�0026165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.3 20H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h6l2 2h8c1.1 0 2 .9 2 2v6.6c-1.4-1-3.1-1.6-5-1.6-3.5 0-6.6 2.1-7.9 5.3l-.3.7.3.7c.1.1.1.2.2.3M23 19c-.9 2.3-3.3 4-6 4s-5.1-1.7-6-4c.9-2.3 3.3-4 6-4s5.1 1.7 6 4m-3.5 0c0-1.4-1.1-2.5-2.5-2.5s-2.5 1.1-2.5 2.5 1.1 2.5 2.5 2.5 2.5-1.1 2.5-2.5M17 18c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1"/></svg>������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-file-outline.svg��������������������0000664�0000000�0000000�00000000374�14753064456�0030001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 18h7v2H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v2.17l-1.59-1.58-.41-.42V8H4zm19-4v7c0 1.11-.89 2-2 2h-6a2 2 0 0 1-2-2v-9c0-1.1.9-2 2-2h4zm-2 1h-3v-3h-3v9h6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-file.svg����������������������������0000664�0000000�0000000�00000000415�14753064456�0026320�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 8c-2.21 0-4 1.79-4 4v8H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v2.17l-1.59-1.58-.58-.59zm8 6v7c0 1.11-.89 2-2 2h-6a2 2 0 0 1-2-2v-9c0-1.1.9-2 2-2h4zm-2 .83L18.17 12H18v3h3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-google-drive.svg��������������������0000664�0000000�0000000�00000000424�14753064456�0027764�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.75 9h2.39L19 14h-2.95L13.5 9.46M18.3 17h-5.55l1.4-2.5h5.12l.26.46M11.5 17l-1.1-2.14 2.84-4.96 1.5 2.66L12.25 17M20 6h-8l-2-2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-heart-outline.svg�������������������0000664�0000000�0000000�00000000515�14753064456�0030162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 18H4V8h16m0-2h-8l-2-2H4c-1.11 0-2 .89-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8a2 2 0 0 0-2-2m-7 4c-1.1 0-2 .92-2 2.05 0 .57.22 1.07.59 1.45L15 17l3.42-3.5c.36-.37.58-.89.58-1.45 0-1.13-.9-2.05-2-2.05-.54 0-1.05.23-1.41.6l-.59.6-.58-.59A2 2 0 0 0 13 10"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-heart.svg���������������������������0000664�0000000�0000000�00000000517�14753064456�0026507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6h-8l-2-2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2m-1.58 7.5L15 17l-3.41-3.5c-.37-.38-.59-.88-.59-1.45 0-1.13.9-2.05 2-2.05.54 0 1.05.23 1.42.61l.58.59.59-.6c.36-.37.87-.6 1.41-.6 1.1 0 2 .92 2 2.05 0 .56-.22 1.08-.58 1.45"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-hidden.svg��������������������������0000664�0000000�0000000�00000000513�14753064456�0026633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 4v4H6V4zM4 16v-3H2v3zm-2-4h2V9H2zm16-4h4a2 2 0 0 0-2-2h-2zm4 5h-2v3h2zm-2-4v3h2V9zM9 20v-2H6v2zm-4-2H4v-1H2v1a2 2 0 0 0 2 2h1zm15-1v1h-2v2h2c1.11 0 2-.89 2-2v-1zM4 8h1V4H4c-1.11 0-2 .89-2 2v2zm13 10h-3v2h3zm-4 0h-3v2h3zm4-12h-3v2h3zm-7 2h3V6h-1l-2-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-home-outline.svg��������������������0000664�0000000�0000000�00000000312�14753064456�0030002�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6h-8l-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2m0 12H4V8h16m-7 9v-3h2v3h2v-4h2l-5-4-5 4h2v4Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-home.svg����������������������������0000664�0000000�0000000�00000000300�14753064456�0026322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6h-8l-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2m-3 7v4h-2v-3h-2v3h-2v-4H9l5-4 5 4Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-image.svg���������������������������0000664�0000000�0000000�00000000274�14753064456�0026466�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5 17 4.5-6 3.5 4.5 2.5-3L19 17m1-11h-8l-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-information-outline.svg�������������0000664�0000000�0000000�00000000537�14753064456�0031410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11.1V8c0-1.1-.9-2-2-2h-8L9 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7.2c1.2 1.8 3.4 3 5.8 3 3.9 0 7-3.1 7-7 0-1.9-.8-3.6-2-4.9M9.3 18H3V8h16v1.7c-.9-.5-1.9-.7-3-.7-3.9 0-7 3.1-7 7 0 .7.1 1.4.3 2m6.7 3c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5m1-7h-2v-2h2zm0 6h-2v-5h2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-information.svg���������������������0000664�0000000�0000000�00000000433�14753064456�0027726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11.1V8c0-1.1-.9-2-2-2h-8L9 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7.3c1.3 1.9 3.5 3 5.7 3 3.9 0 7-3.1 7-7 0-1.8-.7-3.6-2-4.9M16 21c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5m1-1h-2v-5h2zm0-6h-2v-2h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-key-network-outline.svg�������������0000664�0000000�0000000�00000000607�14753064456�0031340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 8c-1.7 0-3 1.3-3 3s1.3 3 3 3c1.3 0 2.4-.8 2.8-2H14v2h2v-2h2v-2h-6.2c-.4-1.2-1.5-2-2.8-2m0 4c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1m6 8c0-.5-.4-1-1-1h-1v-2h6c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2h-6l-2-2H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h6v2h-1c-.6 0-1 .5-1 1H2v2h7c0 .5.4 1 1 1h4c.6 0 1-.5 1-1h7v-2zM5 15V7h14v8z"/></svg>�������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-key-network.svg���������������������0000664�0000000�0000000�00000000571�14753064456�0027663�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 5c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h5v2h-1c-.6 0-1 .4-1 1H2v2h7c0 .6.4 1 1 1h4c.6 0 1-.4 1-1h7v-2h-7c0-.6-.4-1-1-1h-1v-2h5c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2h-6l-2-2zm3 4c1.3 0 2.4.8 2.8 2H18v2h-2v2h-2v-2h-2.2c-.4 1.2-1.5 2-2.8 2-1.7 0-3-1.3-3-3s1.3-3 3-3m0 2c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-key-outline.svg���������������������0000664�0000000�0000000�00000000465�14753064456�0027653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 18H4V8h16m0-2h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2m-7.2 6c-.4-1.2-1.5-2-2.8-2-1.7 0-3 1.3-3 3s1.3 3 3 3c1.3 0 2.4-.8 2.8-2H15v2h2v-2h2v-2zM10 14c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-key.svg�����������������������������0000664�0000000�0000000�00000000445�14753064456�0026174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2m1 6c1.3 0 2.4.8 2.8 2H20v2h-2v2h-2v-2h-2.2c-.4 1.2-1.5 2-2.8 2-1.7 0-3-1.3-3-3s1.3-3 3-3m0 2c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-lock-open-outline.svg���������������0000664�0000000�0000000�00000000564�14753064456�0030752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 18h9v2H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v2.04c-.58-.44-1.25-.78-2-.93V8H4zm17.8-2h-4.3v-2.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3v.5h1.3v-.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V16c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-lock-open.svg�����������������������0000664�0000000�0000000�00000000643�14753064456�0027273�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.2 13.5v1.24c-.7.6-1.2 1.5-1.2 2.46V20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v2.04A4.9 4.9 0 0 0 19 9c-2.6 0-4.8 2.06-4.8 4.5m7.6 2.5h-4.3v-2.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3v.5h1.3v-.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V16c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-lock-outline.svg��������������������0000664�0000000�0000000�00000000567�14753064456�0030016�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v3.04c-.58-.44-1.25-.78-2-.93V8H4v10h9zm10-2.7v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5V16c.6 0 1.2.6 1.2 1.3m-2.5-2.8c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V16h3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-lock.svg����������������������������0000664�0000000�0000000�00000000635�14753064456�0026335�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v3.04A4.9 4.9 0 0 0 19 10c-2.6 0-4.8 2.06-4.8 4.5v.24c-.7.6-1.2 1.5-1.2 2.46zm10-2.7v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5V16c.6 0 1.2.6 1.2 1.3m-2.5-2.8c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V16h3z"/></svg>���������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-marker-outline.svg������������������0000664�0000000�0000000�00000000557�14753064456�0030346�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 12c1.9 0 3.5 1.6 3.5 3.5 0 2.6-3.5 6.5-3.5 6.5S15 18.1 15 15.5c0-1.9 1.6-3.5 3.5-3.5m0 4.8c.7 0 1.3-.6 1.2-1.2 0-.6-.6-1.2-1.2-1.2s-1.2.5-1.2 1.2c0 .6.5 1.2 1.2 1.2M20 8H4v10h9.5c.29.68.63 1.35 1 2H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v3.34c-.58-.5-1.26-.89-2-1.11z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-marker.svg��������������������������0000664�0000000�0000000�00000000577�14753064456�0026673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10 4 2 2h8a2 2 0 0 1 2 2v3.34c-.96-.84-2.18-1.34-3.5-1.34-3 0-5.5 2.65-5.5 5.5 0 1.47.65 3.05 1.5 4.5H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2zm8.5 8c1.9 0 3.5 1.6 3.5 3.5 0 2.6-3.5 6.5-3.5 6.5S15 18.1 15 15.5c0-1.9 1.6-3.5 3.5-3.5m0 4.8c.7 0 1.3-.6 1.2-1.2 0-.6-.6-1.2-1.2-1.2s-1.2.5-1.2 1.2c0 .6.5 1.2 1.2 1.2"/></svg>���������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-minus-outline.svg�������������������0000664�0000000�0000000�00000000347�14753064456�0030215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v5.81c-.61-.35-1.28-.59-2-.72V8H4v10h9.09c-.05.33-.09.66-.09 1m2-1v2h8v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-minus.svg���������������������������0000664�0000000�0000000�00000000327�14753064456�0026536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v5.81c-.88-.51-1.9-.81-3-.81-3.31 0-6 2.69-6 6m2-1v2h8v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-move-outline.svg��������������������0000664�0000000�0000000�00000000304�14753064456�0030021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 18H4V8h16zM12 6l-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16c1.11 0 2-.89 2-2V8a2 2 0 0 0-2-2zm-1 8v-2h4V9l4 4-4 4v-3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-move.svg����������������������������0000664�0000000�0000000�00000000267�14753064456�0026354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 18v-3h-4v-4h4V8l5 5m1-7h-8l-2-2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-multiple-image.svg������������������0000664�0000000�0000000�00000000334�14753064456�0030314�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7 15 4.5-6 3.5 4.5 2.5-3L21 15m1-11h-8l-2-2H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2M2 6H0v14a2 2 0 0 0 2 2h18v-2H2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-multiple-outline.svg����������������0000664�0000000�0000000�00000000305�14753064456�0030707�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 4a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h6l2 2zM2 6v14h18v2H2a2 2 0 0 1-2-2V6zm4 0v10h16V6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-multiple-plus-outline.svg�����������0000664�0000000�0000000�00000000352�14753064456�0031672�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 4c1.1 0 2 .9 2 2v10c0 1.1-.9 2-2 2H6c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h6l2 2zM2 6v14h18v2H2c-1.1 0-2-.9-2-2V6zm4 0v10h16V6zm8 4h2V8h2v2h2v2h-2v2h-2v-2h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-multiple-plus.svg�������������������0000664�0000000�0000000�00000000424�14753064456�0030215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 20V6H0v14c0 1.1.9 2 2 2h18v-2zM22 4h-8l-2-2H6c-.4 0-.8.1-1.1.3l-.6.6c-.2.3-.3.7-.3 1.1v12c0 .4.1.8.3 1.1.1.1.2.2.2.3q.75.6 1.5.6h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2m0 8h-3v3h-2v-3h-3v-2h3V7h2v3h3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-multiple.svg������������������������0000664�0000000�0000000�00000000275�14753064456�0027240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 4h-8l-2-2H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2M2 6H0v14a2 2 0 0 0 2 2h18v-2H2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-music-outline.svg�������������������0000664�0000000�0000000�00000000362�14753064456�0030177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 8v3h-2V8H4v10h9.78c-.4.59-.65 1.26-.74 2H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2m-3.5 5v5.21a2.5 2.5 0 1 0-1 4.79 2.5 2.5 0 0 0 2.5-2.5V15h2v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-music.svg���������������������������0000664�0000000�0000000�00000000364�14753064456�0026524�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 8v3h-5.5v5.11c-1.84.42-3.24 1.98-3.46 3.89H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2m-3.5 5v5.21a2.5 2.5 0 1 0-1 4.79 2.5 2.5 0 0 0 2.5-2.5V15h2v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-network-outline.svg�����������������0000664�0000000�0000000�00000000412�14753064456�0030544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 20c0-.55-.45-1-1-1h-1v-2h6c1.11 0 2-.89 2-2V7a2 2 0 0 0-2-2h-6l-2-2H5c-1.1 0-2 .9-2 2v10a2 2 0 0 0 2 2h6v2h-1c-.55 0-1 .45-1 1H2v2h7c0 .55.45 1 1 1h4c.55 0 1-.45 1-1h7v-2zM5 15V7h14v8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-network.svg�������������������������0000664�0000000�0000000�00000000356�14753064456�0027076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 15V5a2 2 0 0 1 2-2h6l2 2h6a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-6v2h1a1 1 0 0 1 1 1h7v2h-7a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1H2v-2h7a1 1 0 0 1 1-1h1v-2H5a2 2 0 0 1-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-off-outline.svg���������������������0000664�0000000�0000000�00000000400�14753064456�0027622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.39 1.73 1.11 3l1.53 1.53C2.25 4.9 2 5.42 2 6v12a2 2 0 0 0 2 2h14.11l2.73 2.73 1.27-1.27zM4 18V8h2.11l10 10zm7.2-10-4-4H10l2 2h8a2 2 0 0 1 2 2v10c0 .24-.04.47-.12.68L20 16.8V8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-off.svg�����������������������������0000664�0000000�0000000�00000000352�14753064456�0026153�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.11 21.46-1.27 1.27L18.11 20H4a2 2 0 0 1-2-2V6c0-.58.25-1.1.64-1.47L1.11 3l1.28-1.27zM22 18V8a2 2 0 0 0-2-2h-8l-2-2H7.2l14.68 14.68c.08-.21.12-.44.12-.68"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-open-outline.svg��������������������0000664�0000000�0000000�00000000310�14753064456�0030011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.1 10 4 18V8h17a2 2 0 0 0-2-2h-7l-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h15c.9 0 1.7-.6 1.9-1.5l2.3-8.5zM19 18H6l1.6-6h13z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-open.svg����������������������������0000664�0000000�0000000�00000000302�14753064456�0026335�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h7a2 2 0 0 1 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-outline.svg�������������������������0000664�0000000�0000000�00000000255�14753064456�0027062�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 18H4V8h16m0-2h-8l-2-2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-play-outline.svg��������������������0000664�0000000�0000000�00000000344�14753064456�0030024�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 8v5.81c-.61-.35-1.28-.59-2-.72V8H4v10h9.09c-.05.33-.09.66-.09 1s.04.67.09 1H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2m-5 14 5-3-5-3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-play.svg����������������������������0000664�0000000�0000000�00000000331�14753064456�0026343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 8v5.81c-.88-.51-1.9-.81-3-.81-3.31 0-6 2.69-6 6 0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2m-5 14 5-3-5-3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-plus-outline.svg��������������������0000664�0000000�0000000�00000000373�14753064456�0030044�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v5.81c-.61-.35-1.28-.59-2-.72V8H4v10h9.09c-.05.33-.09.66-.09 1m7-1v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-plus.svg����������������������������0000664�0000000�0000000�00000000353�14753064456�0026365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v5.81c-.88-.51-1.9-.81-3-.81-3.31 0-6 2.69-6 6m7-1v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-pound-outline.svg�������������������0000664�0000000�0000000�00000000463�14753064456�0030206�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 18H4V8h16m0-2h-8l-2-2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2m-1 6v-1h-1.5l.5-2h-1l-.5 2h-2l.5-2h-1l-.5 2H12v1h1.25l-.5 2H11v1h1.5l-.5 2h1l.5-2h2l-.5 2h1l.5-2H18v-1h-1.25l.5-2zm-3.25 2h-2l.5-2h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-pound.svg���������������������������0000664�0000000�0000000�00000000444�14753064456�0026530�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.25 13h2l-.5 2h-2zM22 8v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2m-2 4h-1.5l.5-2h-1l-.5 2h-2l.5-2h-1l-.5 2H13v1h1.25l-.5 2H12v1h1.5l-.5 2h1l.5-2h2l-.5 2h1l.5-2H19v-1h-1.25l.5-2H20z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-question-outline.svg����������������0000664�0000000�0000000�00000000474�14753064456�0030732�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 18H4V8h16m0-2h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2m-1 5.7c0 1.7-2 1.8-2 3.3h-1.3c0-2.2 2-2 2-3.3 0-.7-.6-1.3-1.3-1.3s-1.3.6-1.3 1.3h-1.3c0-1.5 1.2-2.7 2.7-2.7s2.5 1.2 2.5 2.7m-2 4V17h-1.3v-1.3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-question.svg������������������������0000664�0000000�0000000�00000000457�14753064456�0027256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2m-3.2 12h-1.5v-1.5h1.5zm0-2.2h-1.5c0-2.4 2.2-2.3 2.2-3.8 0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5H13c0-1.7 1.3-3 3-3s3 1.3 3 3c0 1.9-2.2 2.1-2.2 3.8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-refresh-outline.svg�����������������0000664�0000000�0000000�00000000501�14753064456�0030510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 14.5c1.11 0 2.11.45 2.83 1.17L22 14.5v4h-4l1.77-1.77A2.5 2.5 0 1 0 20 20h1.71A3.99 3.99 0 0 1 18 22.5c-2.21 0-4-1.79-4-4s1.79-4 4-4M20 8H4v10h8v.5c0 .5.06 1 .17 1.5H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v5a7 7 0 0 0-2-.83z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-refresh.svg�������������������������0000664�0000000�0000000�00000000517�14753064456�0027042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 14.5c1.11 0 2.11.45 2.83 1.17L22 14.5v4h-4l1.77-1.77A2.5 2.5 0 1 0 20 20h1.71A3.99 3.99 0 0 1 18 22.5c-2.21 0-4-1.79-4-4s1.79-4 4-4M10 4l2 2h8a2 2 0 0 1 2 2v5c-1-.62-2.21-1-3.5-1a6.5 6.5 0 0 0-6.5 6.5c0 .5.06 1 .17 1.5H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-remove-outline.svg������������������0000664�0000000�0000000�00000000522�14753064456�0030352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v5.81c-.61-.35-1.28-.59-2-.72V8H4v10h9.09c-.05.33-.09.66-.09 1m9.54-2.12-1.42-1.41L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-remove.svg��������������������������0000664�0000000�0000000�00000000502�14753064456�0026673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v5.81c-.88-.51-1.9-.81-3-.81-3.31 0-6 2.69-6 6m9.54-2.12-1.42-1.41L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-search-outline.svg������������������0000664�0000000�0000000�00000000654�14753064456�0030330�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 12c2.5 0 4.5 2 4.5 4.5 0 .88-.25 1.71-.69 2.4l3.08 3.1L22 23.39l-3.12-3.07c-.69.43-1.51.68-2.38.68-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5m0 2a2.5 2.5 0 0 0-2.5 2.5 2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5M19 8H3v10h7.17c.17.72.46 1.39.83 2H3a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v3.81c-.58-.55-1.25-1-2-1.31z"/></svg>������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-search.svg��������������������������0000664�0000000�0000000�00000000666�14753064456�0026656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 12c2.5 0 4.5 2 4.5 4.5 0 .88-.25 1.71-.69 2.4l3.08 3.1L22 23.39l-3.12-3.07c-.69.43-1.51.68-2.38.68-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5m0 2a2.5 2.5 0 0 0-2.5 2.5 2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5M9 4l2 2h8a2 2 0 0 1 2 2v3.81A6.48 6.48 0 0 0 16.5 10a6.5 6.5 0 0 0-6.5 6.5c0 1.29.37 2.5 1 3.5H3a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2z"/></svg>��������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-settings-outline.svg����������������0000664�0000000�0000000�00000000321�14753064456�0030712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-8l-2-2zm0 4h16v10H4zm3 14v2h2v-2zm4 0v2h2v-2zm4 0v2h2v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-settings.svg������������������������0000664�0000000�0000000�00000000304�14753064456�0027236�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-8l-2-2zm3 18v2h2v-2zm4 0v2h2v-2zm4 0v2h2v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-star-multiple-outline.svg�����������0000664�0000000�0000000�00000000447�14753064456�0031665�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 6v14h18v2H2c-1.105 0-2-.89-2-2V6zm10.78 4.05 3.03-.26L17 7l1.19 2.79 3.03.26-2.3 1.99.69 2.96L17 13.47 14.39 15l.69-2.96zM24 6v10c0 1.11-.89 2-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h6l2 2h8a2 2 0 0 1 2 2m-2 0H6v10h16z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-star-multiple.svg�������������������0000664�0000000�0000000�00000000440�14753064456�0030201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 6H0v14c0 1.11.895 2 2 2h18v-2H2zm20-2h-8l-2-2H6c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6c0-1.11-.89-2-2-2m-2.06 11L17 13.27 14.06 15l.78-3.34-2.59-2.24 3.41-.29L17 6l1.34 3.13 3.41.29-2.59 2.24z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-star-outline.svg��������������������0000664�0000000�0000000�00000000404�14753064456�0030025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.78 12.05 3.03-.26L15 9l1.19 2.79 3.03.26-2.3 1.99.69 2.96L15 15.47 12.39 17l.69-2.96zM22 8v10c0 1.11-.89 2-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h6l2 2h8a2 2 0 0 1 2 2m-2 0H4v10h16z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-star.svg����������������������������0000664�0000000�0000000�00000000366�14753064456�0026357�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6h-8l-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2m-2.06 11L15 15.28 12.06 17l.78-3.33-2.59-2.24 3.41-.29L15 8l1.34 3.14 3.41.29-2.59 2.24z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-swap-outline.svg��������������������0000664�0000000�0000000�00000000312�14753064456�0030024�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 18H4V8h16m0-2h-8l-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2m-2 7-3-3v2H9v-2l-3 3 3 3v-2h6v2Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-swap.svg����������������������������0000664�0000000�0000000�00000000277�14753064456�0026361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6h-8l-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2m-5 10v-2H9v2l-3-3 3-3v2h6v-2l3 3Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-sync-outline.svg��������������������0000664�0000000�0000000�00000000736�14753064456�0030040�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10 4 2 2h8a2 2 0 0 1 2 2v3.5a7 7 0 0 0-2-.5V8H4v10h9c.07.7.24 1.38.5 2H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2zm9 8v1.5a4 4 0 0 1 4 4c0 .82-.25 1.58-.67 2.21l-1.09-1.09c.17-.34.26-.72.26-1.12A2.5 2.5 0 0 0 19 15v1.5l-2.25-2.25-.03-.03c.06-.05.13-.09 2.28-2.22m0 11v-1.5a4 4 0 0 1-4-4c0-.82.25-1.58.67-2.21l1.09 1.09c-.17.34-.26.72-.26 1.12A2.5 2.5 0 0 0 19 20v-1.5l2.25 2.25.03.03c-.06.05-.13.09-2.28 2.22"/></svg>����������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-sync.svg����������������������������0000664�0000000�0000000�00000000670�14753064456�0026360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10 4 2 2h8a2 2 0 0 1 2 2v3.5c-.77-.32-1.61-.5-2.5-.5a6.5 6.5 0 0 0-6.5 6.5c0 .89.18 1.73.5 2.5H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2zm9 8v1.5a4 4 0 0 1 4 4c0 .82-.25 1.58-.67 2.21l-1.09-1.09c.17-.34.26-.72.26-1.12A2.5 2.5 0 0 0 19 15v1.5l-2.25-2.25zm0 11v-1.5a4 4 0 0 1-4-4c0-.82.25-1.58.67-2.21l1.09 1.09c-.17.34-.26.72-.26 1.12A2.5 2.5 0 0 0 19 20v-1.5l2.25 2.25z"/></svg>������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-table-outline.svg�������������������0000664�0000000�0000000�00000000364�14753064456�0030150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-8l-2-2zm0 4h16v10H4zm8 1v2h3V9zm4 0v2h3V9zm-4 3v2h3v-2zm4 0v2h3v-2zm-4 3v2h3v-2zm4 0v2h3v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-table.svg���������������������������0000664�0000000�0000000�00000000351�14753064456�0026467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-8l-2-2zm8 5h3v2h-3zm4 0h3v2h-3zm-4 3h3v2h-3zm4 0h3v2h-3zm-4 3h3v2h-3zm4 0h3v2h-3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-text-outline.svg��������������������0000664�0000000�0000000�00000000304�14753064456�0030037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 18H4V8h16m0-2h-8l-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2m-5 10H6v-2h9zm3-4H6v-2h12z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-text.svg����������������������������0000664�0000000�0000000�00000000270�14753064456�0026364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6h-8l-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2m-5 10H6v-2h9zm3-4H6v-2h12z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-upload-outline.svg������������������0000664�0000000�0000000�00000000304�14753064456�0030337�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 18H4V8h16m0-2h-8l-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2m-4 11h-2v-4h-3l4-4 4 4h-3Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-upload.svg��������������������������0000664�0000000�0000000�00000000270�14753064456�0026664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h6l2 2zm-9.25 7H14v4h2v-4h3.25L15 8.75"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-wrench-outline.svg������������������0000664�0000000�0000000�00000000676�14753064456�0030355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.03 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v9.5l-1.04-1.06c.01-.14.04-.29.04-.44 0-1.12-.38-2.14-1-2.97V8H4v10h7.42c.35.8.91 1.5 1.61 2m9.84 1.19-4.11-4.11c.41-1.04.18-2.26-.68-3.11-.9-.91-2.25-1.09-3.34-.59l1.94 1.94-1.35 1.36-1.99-1.95c-.54 1.09-.29 2.44.59 3.35a2.91 2.91 0 0 0 3.12.68l4.11 4.1c.18.19.45.19.63 0l1.04-1.03c.22-.18.22-.5.04-.64"/></svg>������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-wrench.svg��������������������������0000664�0000000�0000000�00000000672�14753064456�0026674�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.03 20H4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h6l2 2h8a2 2 0 0 1 2 2v9.5l-1.04-1.06c.01-.14.04-.29.04-.44 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 1.64.8 3.09 2.03 4m9.84 1.19-4.11-4.11c.41-1.04.18-2.26-.68-3.11-.9-.91-2.25-1.09-3.34-.59l1.94 1.94-1.35 1.36-1.99-1.95c-.54 1.09-.29 2.44.59 3.35a2.91 2.91 0 0 0 3.12.68l4.11 4.1c.18.19.45.19.63 0l1.04-1.03c.22-.18.22-.5.04-.64"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-zip-outline.svg���������������������0000664�0000000�0000000�00000000350�14753064456�0027656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2m0 12h-4v-2h-2v2H4V8h10v2h2V8h4zm-4-6v-2h2v2zm-2 0h2v2h-2zm4 4h-2v-2h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder-zip.svg�����������������������������0000664�0000000�0000000�00000000326�14753064456�0026204�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2m-2 6h-2v2h2v2h-2v2h-2v-2h2v-2h-2v-2h2v-2h-2V8h2v2h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/folder.svg���������������������������������0000664�0000000�0000000�00000000235�14753064456�0025403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 4H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/font-awesome.svg���������������������������0000664�0000000�0000000�00000001110�14753064456�0026525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.76 2H4.24C3 2 2 3 2 4.24v15.52C2 21 3 22 4.24 22h15.52C21 22 22 21 22 19.76V4.24C22 3 21 2 19.76 2m-2.03 12.69c0 .19-.16.27-.35.35-.74.32-1.54.61-2.38.61-1.22 0-1.78-.74-3.22-.74-1.04 0-2.13.37-3.01.77-.06.03-.11.03-.16.05v2.03c0 .08 0 .16-.03.21v.06c-.11.37-.45.64-.85.64-.51 0-.91-.41-.91-.91V8a1.49 1.49 0 0 1 .91-2.67c.83 0 1.5.67 1.5 1.5 0 .48-.23.9-.59 1.17v.83c.08-.03.16-.06.24-.11.83-.35 1.82-.64 2.75-.64 1.01 0 1.81.27 2.72.61.19.08.37.11.58.11 1.02 0 2.14-.72 2.41-.72.21 0 .4.16.4.35v6.26z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/food-apple-outline.svg���������������������0000664�0000000�0000000�00000001001�14753064456�0027623�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 10a5.27 5.27 0 0 0-7-2V3h-2v5a5.27 5.27 0 0 0-7 2c-2 3 3 12 5 12s2-1 3-1 1 1 3 1 7-9 5-12m-1.75 3.38c-.62 2.47-1.84 4.74-3.55 6.62-.2 0-.43-.1-.6-.25a3.34 3.34 0 0 0-4.2 0c-.17.15-.4.25-.6.25a15.27 15.27 0 0 1-3.55-6.61c-.25-.73-.3-1.52-.09-2.27A3.37 3.37 0 0 1 8.5 9.4c.56.01 1.11.14 1.61.39l.89.45h2l.89-.45c.5-.25 1.05-.38 1.61-.39 1.18.03 2.26.68 2.84 1.71.21.75.16 1.54-.09 2.27M11 5C5.38 8.07 4.11 3.78 4.11 3.78S6.77.19 11 5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/food-apple.svg�����������������������������0000664�0000000�0000000�00000000303�14753064456�0026152�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 10c2 3-3 12-5 12s-2-1-3-1-1 1-3 1-7-9-5-12 5-3 7-2V5C5.38 8.07 4.11 3.78 4.11 3.78S6.77.19 11 5V3h2v5c2-1 5-1 7 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/food-croissant.svg�������������������������0000664�0000000�0000000�00000000246�14753064456�0027064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22 19-3-2 3-2zm-7-4 4-6 3 4-4 3zM5 17l-3 2v-4zm4-2-3 1-4-3 3-4zm5-9 4 2-5 7h-2L6 8l4-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/food-drumstick-off-outline.svg�������������0000664�0000000�0000000�00000001331�14753064456�0031305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l7.4 7.4c-.2.3-.4.5-.6.8-1.2 1.2-1.2 2.9-.1 4l1 1c.5.5 1.3.8 2 .8s1.4-.3 2-.8c.3-.3.6-.5.9-.7l7.2 7.2zm-10.8-6.7c-.2.2-.4.2-.5.2s-.4 0-.6-.2l-1-1c-.2-.2-.2-.4-.2-.6s.1-.5.3-.7.4-.5.6-.7l2.2 2.2c-.2.3-.5.5-.8.8m.1-6.6L9.7 6.5c.4-1.4 1.3-2.6 2.7-3.5 1-.6 2.2-1 3.3-1 1.2 0 2.4.3 3.4 1 3.5 2.3 3.8 7 1.1 9.7-.8.8-1.7 1.3-2.7 1.6l-1.7-1.7c.1 0 .2-.1.4-.1 1-.1 1.9-.5 2.6-1.2.9-.9 1.4-2.2 1.2-3.5-.1-1.3-.8-2.4-2-3.2-.7-.4-1.5-.6-2.3-.6s-1.6.2-2.3.7c-1.2.7-1.9 1.9-2 3.2zm-2.6 9.2-2.5 2.4c.3.6.2 1.2-.3 1.7-.6.6-1.5.6-2.1 0-.3-.3-.4-.6-.4-1-.4 0-.7-.2-1-.4-.6-.6-.6-1.5 0-2.1.5-.5 1.1-.6 1.7-.3l2.5-2.4c.1.2.3.4.5.6l1 1c.1.2.3.4.6.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/food-drumstick-off.svg���������������������0000664�0000000�0000000�00000000726�14753064456�0027637�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.8 22.7-7.2-7.2c-.3.2-.6.4-.9.7-1.1 1.1-2.9 1.1-4 0l-1-1c-1.1-1.1-1.1-2.9.1-4 .2-.2.4-.5.6-.8L1.1 3l1.3-1.3 19.7 19.7zM8.1 16.9l-1-1c-.2-.2-.3-.4-.5-.6l-2.5 2.4c-.6-.3-1.2-.2-1.7.3-.6.6-.6 1.5 0 2.1.3.3.6.4 1 .4 0 .4.2.7.4 1 .6.6 1.5.6 2.1 0 .5-.5.6-1.1.3-1.7l2.5-2.4c-.2-.1-.4-.3-.6-.5m12.1-4.2C23 9.9 22.6 5.2 19.1 3c-2-1.3-4.7-1.3-6.7 0-1.4.9-2.3 2.1-2.7 3.5l7.8 7.8c1-.3 1.9-.8 2.7-1.6"/></svg>������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/food-drumstick-outline.svg�����������������0000664�0000000�0000000�00000001434�14753064456�0030541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.71 4c.83 0 1.62.22 2.29.66 1.14.74 1.84 1.87 2 3.18a4.37 4.37 0 0 1-1.25 3.47c-.7.69-1.59 1.13-2.57 1.23-1.91.2-3.59.96-4.84 2.23a.809.809 0 0 1-1.13 0l-.99-.99a.74.74 0 0 1-.22-.53c0-.25.11-.47.32-.68 1.21-1.22 1.95-2.84 2.13-4.7.13-1.33.84-2.47 2-3.22.66-.43 1.44-.65 2.26-.65m0-2c-1.17 0-2.34.32-3.35.97-1.76 1.13-2.73 2.89-2.9 4.71-.13 1.32-.63 2.55-1.55 3.47l-.03.03c-1.16 1.16-1.16 2.93-.07 4.01l.99.99c.55.55 1.26.82 1.97.82s1.43-.27 1.98-.82c.97-.97 2.25-1.5 3.64-1.65 1.37-.15 2.71-.75 3.77-1.8A6.27 6.27 0 0 0 19.09 3c-1.01-.67-2.19-1-3.38-1M6.26 19.86c.27.56.18 1.24-.29 1.7a1.49 1.49 0 0 1-2.55-.98 1.49 1.49 0 0 1-.98-2.55c.46-.46 1.15-.56 1.7-.29l2.48-2.43c.14.19.3.41.48.59l.99.99c.21.2.41.37.67.52z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/food-drumstick.svg�������������������������0000664�0000000�0000000�00000000747�14753064456�0027072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.16 12.73A6.27 6.27 0 0 0 19.09 3c-2.01-1.33-4.7-1.34-6.73-.03-1.76 1.13-2.73 2.89-2.9 4.71-.13 1.32-.63 2.55-1.55 3.47l-.03.03c-1.16 1.16-1.16 2.93-.07 4.01l.99.99a2.794 2.794 0 0 0 3.95 0c.97-.97 2.25-1.5 3.64-1.65 1.37-.15 2.71-.75 3.77-1.8m-13.9 7.13c.27.56.18 1.24-.29 1.7a1.49 1.49 0 0 1-2.55-.98 1.49 1.49 0 0 1-.98-2.55c.46-.46 1.15-.56 1.7-.29l2.48-2.43c.14.19.3.41.48.59l.99.99c.21.2.41.37.67.52z"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/material/food-fork-drink.svg������������������������0000664�0000000�0000000�00000000726�14753064456�0027130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3a1 1 0 0 0-1 1v5.5c0 1.69 1.03 3.13 2.5 3.72v6.28A1.5 1.5 0 0 0 6 21a1.5 1.5 0 0 0 1.5-1.5v-6.28c1.47-.59 2.5-2.03 2.5-3.72V4a1 1 0 0 0-1-1 1 1 0 0 0-1 1v4a.5.5 0 0 1-.5.5A.5.5 0 0 1 7 8V4a1 1 0 0 0-1-1 1 1 0 0 0-1 1v4a.5.5 0 0 1-.5.5A.5.5 0 0 1 4 8V4a1 1 0 0 0-1-1m16.88 0c-.13 0-.26.09-.38.16L16 5.25V9h-4v2h1l1 10h6l1-10h1V9h-4V6.34l2.5-1.5c.5-.28.63-.84.34-1.34-.21-.36-.58-.55-.96-.5"/></svg>������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/food-halal.svg�����������������������������0000664�0000000�0000000�00000000732�14753064456�0026140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 5v10c0 1.11-.89 2-2 2H4c-.55 0-1-.45-1-1v-3H1v3c0 1.66 1.34 3 3 3h1c2.21 0 4-1.79 4-4V5m14 8.38-1.23-1.23A3.9 3.9 0 0 0 19 11h-2v2h2c.5 0 1 .2 1.35.56l.35.35-1.2.69c-.46.26-.97.4-1.5.4h-1c-.56 0-1-.44-1-1V6h-2v3.81l-.62-.69C12.7 8.37 11.6 8 10.59 8H10v2h.59c.64 0 1.25.25 1.7.71l1.71 1.7V14c0 1.12-.88 2-2 2h-2v2h2c1.37 0 2.5-.7 3.17-1.76A2.5 2.5 0 0 0 17 17h1c.88 0 1.74-.23 2.5-.67l2.5-1.44Z"/></svg>��������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/food-hot-dog.svg���������������������������0000664�0000000�0000000�00000001063�14753064456�0026416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 5.77c-.15-.12-.28-.22-.41-.32l.03-.04c.78-.78.78-2.04 0-2.82s-2.04-.78-2.83 0l-.74.74a3.465 3.465 0 0 0-4.55.32L3.65 12.5a3.465 3.465 0 0 0-.32 4.55l-.74.74c-.79.79-.79 2.05 0 2.83.78.78 2.04.78 2.82 0l.04-.03c.1.13.2.26.32.41 1.36 1.34 3.58 1.34 4.95 0l10.25-10.28A3.52 3.52 0 0 0 21 5.77M4.77 15.61a1.5 1.5 0 0 1 .29-1.71l8.84-8.84a1.5 1.5 0 0 1 1.71-.29zM19.56 9.3 9.3 19.56c-.58.59-1.53.59-2.12 0-.58-.56-.58-1.56 0-2.12L17.44 7.18c.56-.58 1.56-.58 2.12 0 .59.59.59 1.54 0 2.12"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/food-kosher.svg����������������������������0000664�0000000�0000000�00000000544�14753064456�0026353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 7v2h2c.57 0 1 .43 1 1v7h2v-7c0-1.64-1.36-3-3-3zm6 0v7c0 1.65 1.36 3 3 3h4c1.65 0 3-1.35 3-3V7h-2v7c0 .57-.43 1-1 1h-4c-.57 0-1-.43-1-1v-1h1c1.65 0 3-1.35 3-3V7h-2v3c0 .57-.43 1-1 1H9V7zm11 0v2h2c.57 0 1 .43 1 1v4c0 .57-.43 1-1 1h-2v2h2c1.65 0 3-1.35 3-3v-4c0-1.64-1.35-3-3-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/food-off-outline.svg�����������������������0000664�0000000�0000000�00000000471�14753064456�0027306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 21h15v1c0 .54-.44 1-1 1H2c-.55 0-1-.46-1-1zm19.5 2.31L16 18.83V19H1v-2h13.17l-2-2H1c0-3.24 2.46-5.17 5.38-5.79L.68 3.5 2.1 2.1 13 13l2 2 6.9 6.9zM10.17 13l-2-2c-1.42.06-3.52.56-4.55 2zM23 5h-5V1h-2v4h-5l.23 2h9.56l-1 9.97 1.83 1.83z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/food-off.svg�������������������������������0000664�0000000�0000000�00000000364�14753064456�0025632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.35 8.5 11 5h5V1h2v4h5l-1.38 13.79zM1 21v1c0 .55.45 1 1 1h13c.55 0 1-.45 1-1v-1zm20.9.9L2.1 2.1.69 3.5l5.7 5.71C3.28 9.87 1 12 1 15h11.17l2 2H1v2h15v-.17l4.5 4.49z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/food-outline.svg���������������������������0000664�0000000�0000000�00000000456�14753064456�0026541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 22c0 .54.45 1 1 1h13c.56 0 1-.46 1-1v-1H1zM8.5 9C4.75 9 1 11 1 15h15c0-4-3.75-6-7.5-6m-4.88 4c1.11-1.55 3.47-2 4.88-2s3.77.45 4.88 2zM1 17h15v2H1zM18 5V1h-2v4h-5l.23 2h9.56l-1.4 14H18v2h1.72c.84 0 1.53-.65 1.63-1.47L23 5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/food-steak-off.svg�������������������������0000664�0000000�0000000�00000001463�14753064456�0026740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.39 1.73 1.11 3l4.16 4.16C5.08 7.83 5 8.53 5 9.26a7.03 7.03 0 0 0 3.74 5.93c1.36.71 2.26 2.06 2.26 3.6V19c0 1.66 1.34 3 3 3 1.68 0 2.83-.89 3.6-2.5l3.24 3.23 1.27-1.27zM14 20c-.55 0-1-.45-1-1v-.21c0-2.23-1.28-4.29-3.33-5.37A5.04 5.04 0 0 1 7 9.18V8.9l1.16 1.15c.03.1.05.2.08.3l.16-.06 1.22 1.21-.54.21c.3.33.65.61 1.06.82.67.36 1.26.81 1.77 1.32l.04-.01 1.22 1.22-.22.08c.51.82.85 1.75.98 2.71l1.27-.46c.02-.07.05-.15.07-.23l.8.8C15.47 19.68 14.68 20 14 20m1.79-12.4-3.65 1.34-2.26-2.26 3.81-1.38c1.25.47 1.84 1.42 2.1 2.3m-7.2-2.21L7.17 3.97C8.41 2.77 10.07 2 11.88 2 19 2 19 9 19 9c0 2.46-.1 4.63-.34 6.46l-1.82-1.82c.1-1.28.16-2.81.16-4.64 0-.82-.31-5-5.12-5-1.21 0-2.38.5-3.29 1.39m7.09 7.11-2.32-2.35L16 9.19c0 1.22-.03 2.27-.08 3.21z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/food-steak.svg�����������������������������0000664�0000000�0000000�00000001041�14753064456�0026160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.9 2C8 2 4.9 5.4 5 9.3c.1 2.6 1.6 4.8 3.7 5.9 1.4.7 2.3 2.1 2.3 3.6v.2c0 1.7 1.3 3 3 3 4 0 5-5 5-13 0 0 0-7-7.1-7M14 20c-.6 0-1-.4-1-1v-.2c0-2.2-1.3-4.3-3.3-5.4C8.1 12.6 7.1 11 7 9.2c0-1.3.5-2.7 1.4-3.7S10.6 4 11.8 4C16.7 4 17 8.2 17 9c0 9.9-1.7 11-3 11m1.8-12.4-7.5 2.7Q8 9.85 8 9.1c0-.7.2-1.3.5-2l5.2-1.9c1.2.6 1.8 1.5 2.1 2.4m-2.9 7.5 2.8-1c-.1 1.5-.4 2.6-.6 3.3l-1.3.5c0-1-.3-1.9-.9-2.8M16 9.2c0 1.2 0 2.3-.1 3.2l-4 1.5c-.5-.5-1.1-1-1.8-1.3-.4-.2-.8-.5-1.1-.8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/food-takeout-box-outline.svg���������������0000664�0000000�0000000�00000000376�14753064456�0031002�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.79 18-.51-7h9.46l-.51 7zM9.83 5h4.33l2.8 2.73L16.87 9H7.12l-.09-1.27zM22 7.46l-1.41-1.41L19 7.63l.03-.56L15 3H9L4.97 7.07l.03.5L3.41 6 2 7.44l3.23 3.11.7 9.45h12.14l.7-9.44z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/food-takeout-box.svg�����������������������0000664�0000000�0000000�00000000262�14753064456�0027317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.26 11h13.48l-.67 9H5.93zM9 4h5.97L19 7.38l1.59-1.59L22 7.21 19.21 10H4.79L2 7.21 3.41 5.8 5 7.38z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/food-turkey.svg����������������������������0000664�0000000�0000000�00000002025�14753064456�0026377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5.44 7.96.52-.53c.58-.58 1.54-.58 2.14.04l.02.03c.49.5 1.14.74 1.85.81.97.09 1.91.61 2.53 1.55.68 1.08.67 2.52-.04 3.59a3.322 3.322 0 0 1-5.18.55c-.56-.55-.88-1.26-.96-2-.08-.73-.37-1.42-.88-1.93-.58-.57-.58-1.53 0-2.11M9.64 16c-1.17 0-2.26-.45-3.07-1.28-.7-.72-1.14-1.62-1.25-2.6-.03-.3-.12-.69-.36-1.05C4.36 11.9 4 12.9 4 14c0 1.64.8 3.09 2.03 4H19v-1c0-3.6-2.39-6.65-5.66-7.65.89 1.4.87 3.27-.04 4.65-.8 1.25-2.18 2-3.66 2m5.14-8.44h1.27c.87 0 1.63.61 1.63 1.7V10h1.25V9c0-1.5-1.33-2.64-2.88-2.64h-1.27c-.83 0-1.54-.82-1.54-1.66s.71-1.46 1.54-1.46V2C13.24 2 12 3.24 12 4.78s1.24 2.78 2.78 2.78M4.5 7.55c.06-.1.14-.2.23-.3l.52-.52c.09-.09.19-.16.29-.23L4.13 5.07c.14-.27.09-.62-.13-.85a.767.767 0 0 0-1.07 0c-.14.14-.21.31-.22.49-.18.01-.35.08-.49.22-.29.29-.29.77 0 1.07.23.22.57.27.85.13zm13.89-3.16c.51-.51.83-1.2.83-1.97h-1.25c0 .83-.7 1.53-1.53 1.53v1.24c1.86 0 3.32 1.52 3.32 3.38V11H21V8.57a4.61 4.61 0 0 0-2.61-4.18M5 21h14c1.11 0 2-.89 2-2H3a2 2 0 0 0 2 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/food-variant-off.svg�����������������������0000664�0000000�0000000�00000000575�14753064456�0027300�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.28 3 1 4.27l2.31 2.31c-.4 2.12-.76 4.22-.98 6.25C2 16 2 19 2 22h7c0-3 0-6-.33-9.17-.04-.33-.09-.68-.13-1.02L12.73 16H11v2c0 2.21 1.79 4 4 4h3c.23 0 .45 0 .67-.06L19.73 23 21 21.72M4.82 3l2.71 2.71c-.03-.24-.08-.47-.13-.71H8V3H7m13.55 8.23L17.8 16l3.79 3.76c.27-.55.41-1.15.41-1.76v-2h-2.13l2.24-3.87Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/food-variant.svg���������������������������0000664�0000000�0000000�00000000376�14753064456�0026527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 18a4 4 0 0 1-4 4h-3a4 4 0 0 1-4-4v-2h6.79l2.76-4.77 1.56.9L19.87 16H22zM9 22H2c0-3 0-6 .33-9.17C2.6 10.3 3.08 7.66 3.6 5H3V3h5v2h-.6c.52 2.66 1 5.3 1.27 7.83C9 16 9 19 9 22"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/food.svg�����������������������������������0000664�0000000�0000000�00000000463�14753064456�0025062�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.06 23h1.66c.84 0 1.53-.65 1.63-1.47L23 5.05h-5V1h-1.97v4.05h-4.97l.3 2.34c1.71.47 3.31 1.32 4.27 2.26 1.44 1.42 2.43 2.89 2.43 5.29zM1 22v-1h15.03v1c0 .54-.45 1-1.03 1H2c-.55 0-1-.46-1-1m15.03-7C16.03 7 1 7 1 15zM1 17h15v2H1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/foot-print.svg�����������������������������0000664�0000000�0000000�00000000746�14753064456�0026240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 2a2 2 0 1 1-2 2 2 2 0 0 1 2-2m-3.96 1a1.5 1.5 0 1 1-1.5 1.5 1.5 1.5 0 0 1 1.5-1.5M9.09 4.5a1 1 0 1 1-1 1 1 1 0 0 1 1-1M7.04 6a1 1 0 1 1-1 1 1 1 0 0 1 1-1m7.49 6A2.5 2.5 0 0 0 17 9.24 2.6 2.6 0 0 0 14.39 7h-2.48a6 6 0 0 0-5.79 4.4 2 2 0 0 0 .11 1.4 6.8 6.8 0 0 1 .68 2.96 6.9 6.9 0 0 1-.69 2.79 1.92 1.92 0 0 0 .08 1.76 3.62 3.62 0 0 0 3.89 1.6 3.5 3.5 0 0 0 2.17-5.28 2.8 2.8 0 0 1-.45-1.63s-.23-3 2.62-3"/></svg>��������������������������mkdocs-material-9.6.4/material/templates/.icons/material/football-australian.svg��������������������0000664�0000000�0000000�00000000662�14753064456�0030077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 7.5c1.67-1.63 3.79-2.81 5.87-3.32C18 3 21 6 19.82 10.63c-.51 2.08-1.69 4.2-3.32 5.87-1.67 1.63-3.79 2.81-5.87 3.32C6 21 3 18 4.18 13.37c.51-2.08 1.69-4.2 3.32-5.87m3.12 3.76-.36.36 2.12 2.12.36-.36zm1-1-.36.36 2.12 2.12.36-.36zm-2 2-.36.36 2.12 2.12.36-.36zm3.01-2.98-.35.35 2.12 2.12.35-.35zm-4 4-.35.35 2.12 2.12.35-.35zm5-5-.35.35 2.12 2.12.35-.35z"/></svg>������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/football-helmet.svg������������������������0000664�0000000�0000000�00000000673�14753064456�0027214�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.5 12a1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5m0-9c4.69 0 8.5 3.58 8.5 8 0 1.62 0 3-.91 5C17 16 16 20 12.5 20c-2.18 0-3.23-1.72-3.45-4h-.81l-1.28 4.3a1 1 0 0 1-1.12.7H3a1 1 0 0 1-1-1 1 1 0 0 1 1-1v-3a1 1 0 0 1-1-1 1 1 0 0 1 1-1h3.75l.48-1.61c-.51-.25-1.1-.39-1.73-.39h-.43L5 11c0-4.42 3.81-8 8.5-8M5 16v3h.26l.89-3z"/></svg>���������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/football.svg�������������������������������0000664�0000000�0000000�00000000713�14753064456�0025733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.39 21 3 15.61c0 1.09.04 2.1.2 3.02.15.92.3 1.47.51 1.66.19.21.73.36 1.64.52s1.92.19 3.04.19M15.5 9.89 9.89 15.5 8.5 14.11l5.61-5.61zM3.29 13.08l7.63 7.63c2.78-.5 4.98-1.56 6.61-3.18 1.62-1.63 2.68-3.83 3.18-6.61l-7.63-7.63c-2.78.5-4.98 1.56-6.61 3.18s-2.68 3.83-3.18 6.61M15.61 3 21 8.39c0-1.09-.04-2.1-.19-3.02-.16-.92-.31-1.47-.52-1.66-.19-.21-.73-.36-1.64-.51S16.73 3 15.61 3"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/forest-outline.svg�������������������������0000664�0000000�0000000�00000000354�14753064456�0027111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.19 18H24l-3.86-6H22L15 2l-2.39 3.41L17.92 13h-1.95zM16 12 9 2 2 12h1.86L0 18h7v4h4v-4h7l-3.86-6zm-3.84-2H10.5l3.84 6H3.67l3.86-6H5.84L9 5.5zm.84 9v3h4v-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/forest.svg���������������������������������0000664�0000000�0000000�00000000275�14753064456�0025436�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 12 9 2 2 12h1.86L0 18h7v4h4v-4h7l-3.86-6zm4.14 0H22L15 2l-2.39 3.41L17.92 13h-1.95l3.22 5H24zM13 19h4v3h-4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/forklift.svg�������������������������������0000664�0000000�0000000�00000000622�14753064456�0025750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 4v7H4c-1.11 0-2 .89-2 2v4a3 3 0 0 0 3 3 3 3 0 0 0 3-3h2a3 3 0 0 0 3 3 3 3 0 0 0 3-3v-4l-4-9zm11 1v14h5v-1.5h-3.5V5zm-9.5.5h3.7l3.3 7.5h-7zM5 15.5A1.5 1.5 0 0 1 6.5 17 1.5 1.5 0 0 1 5 18.5 1.5 1.5 0 0 1 3.5 17 1.5 1.5 0 0 1 5 15.5m8 0a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5"/></svg>��������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/form-dropdown.svg��������������������������0000664�0000000�0000000�00000000371�14753064456�0026726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 5h3l-1.5 2zM3 2h18a2 2 0 0 1 2 2v4c0 1.11-.89 2-2 2h-5v10c0 1.11-.89 2-2 2H3a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2m0 2v4h11V4zm18 4V4h-5v4zM3 20h11V10H3zm2-8h7v2H5zm0 4h7v2H5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/form-select.svg����������������������������0000664�0000000�0000000�00000000330�14753064456�0026344�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 5h3l-1.5 2zM5 2h14a2 2 0 0 1 2 2v16c0 1.11-.89 2-2 2H5a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2m0 2v4h14V4zm0 16h14V10H5zm2-8h10v2H7zm0 4h10v2H7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/form-textarea.svg��������������������������0000664�0000000�0000000�00000000424�14753064456�0026706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9H4v14H2V7h11m10 2V7h-6V5a1 1 0 0 1 1-1h2V2h-2.5C17 2 16 2.45 16 3c0-.55-.95-1-1.5-1H12v2h2a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1h-2v2h2.5c.55 0 1.5-.45 1.5-1 0 .55.95 1 1.5 1H20v-2h-2a1 1 0 0 1-1-1V9Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/form-textbox-lock.svg����������������������0000664�0000000�0000000�00000001037�14753064456�0027515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 7h4v2H4v6h2v2H2zm8 0h12v5c-.58-.44-1.26-.75-2-.9V9H10v6h4.25c-.69 0-1.25.56-1.25 1.25V17h-3v2c0 .55.45 1 1 1h2v2h-2.5c-.55 0-1.5-.45-1.5-1 0 .55-.95 1-1.5 1H5v-2h2c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1H5V2h2.5C8.05 2 9 2.45 9 3c0-.55.95-1 1.5-1H13v2h-2c-.55 0-1 .45-1 1zm11.8 10c.6 0 1.2.6 1.2 1.3v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5zm-1.3 0v-1.5c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V17z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/form-textbox-password.svg������������������0000664�0000000�0000000�00000000716�14753064456�0030432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 7h5v10h-5v2a1 1 0 0 0 1 1h2v2h-2.5c-.55 0-1.5-.45-1.5-1 0 .55-.95 1-1.5 1H12v-2h2a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1h-2V2h2.5c.55 0 1.5.45 1.5 1 0-.55.95-1 1.5-1H20v2h-2a1 1 0 0 0-1 1zM2 7h11v2H4v6h9v2H2zm18 8V9h-3v6zM8.5 12A1.5 1.5 0 0 0 7 10.5 1.5 1.5 0 0 0 5.5 12 1.5 1.5 0 0 0 7 13.5 1.5 1.5 0 0 0 8.5 12m4.5-1.11c-.61-.56-1.56-.51-2.12.11-.56.6-.51 1.55.12 2.11.55.52 1.43.52 2 0z"/></svg>��������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/form-textbox.svg���������������������������0000664�0000000�0000000�00000000446�14753064456�0026572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 7h5v10h-5v2a1 1 0 0 0 1 1h2v2h-2.5c-.55 0-1.5-.45-1.5-1 0 .55-.95 1-1.5 1H12v-2h2a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1h-2V2h2.5c.55 0 1.5.45 1.5 1 0-.55.95-1 1.5-1H20v2h-2a1 1 0 0 0-1 1zM2 7h11v2H4v6h9v2H2zm18 8V9h-3v6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-align-bottom.svg��������������������0000664�0000000�0000000�00000000243�14753064456�0030011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13 9 2.5-2.5 1.42 1.42L12 12.84 7.08 7.92 8.5 6.5 11 9V3h2zM3 15h18v2H3zm0 4h10v2H3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-align-center.svg��������������������0000664�0000000�0000000�00000000214�14753064456�0027763�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h18v2H3zm4 4h10v2H7zm-4 4h18v2H3zm4 4h10v2H7zm-4 4h18v2H3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-align-justify.svg�������������������0000664�0000000�0000000�00000000212�14753064456�0030176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h18v2H3zm0 4h18v2H3zm0 4h18v2H3zm0 4h18v2H3zm0 4h18v2H3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-align-left.svg����������������������0000664�0000000�0000000�00000000212�14753064456�0027433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h18v2H3zm0 4h12v2H3zm0 4h18v2H3zm0 4h12v2H3zm0 4h18v2H3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-align-middle.svg��������������������0000664�0000000�0000000�00000000303�14753064456�0027740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13 6 2-2 1.42 1.42L12 9.84 7.58 5.42 9 4l2 2V2h2zM3 11h18v2H3zm10 7v4h-2v-4l-2 2-1.42-1.42L12 14.16l4.42 4.42L15 20z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-align-right.svg���������������������0000664�0000000�0000000�00000000214�14753064456�0027620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h18v2H3zm6 4h12v2H9zm-6 4h18v2H3zm6 4h12v2H9zm-6 4h18v2H3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-align-top.svg�����������������������0000664�0000000�0000000�00000000246�14753064456�0027312�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13 15 2.5 2.5 1.42-1.42L12 11.16l-4.92 4.92L8.5 17.5 11 15v6h2zM3 3h18v2H3zm0 4h10v2H3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-annotation-minus.svg����������������0000664�0000000�0000000�00000000232�14753064456�0030716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 7h-2L3 21h2.2l1.1-3h6.2l1.1 3H16zm-3.4 9 2.4-6.3 2.4 6.3zM22 7h-8V5h8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-annotation-plus.svg�����������������0000664�0000000�0000000�00000000251�14753064456�0030547�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.5 7h2L16 21h-2.4l-1.1-3H6.3l-1.1 3H3zm-1.4 9h4.8L9.5 9.7zM22 5v2h-3v3h-2V7h-3V5h3V2h2v3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-bold.svg����������������������������0000664�0000000�0000000�00000000466�14753064456�0026344�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.5 15.5H10v-3h3.5A1.5 1.5 0 0 1 15 14a1.5 1.5 0 0 1-1.5 1.5m-3.5-9h3A1.5 1.5 0 0 1 14.5 8 1.5 1.5 0 0 1 13 9.5h-3m5.6 1.29c.97-.68 1.65-1.79 1.65-2.79 0-2.26-1.75-4-4-4H7v14h7.04c2.1 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-clear.svg���������������������������0000664�0000000�0000000�00000000311�14753064456�0026477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 5v.18L8.82 8h2.4l-.72 1.68 2.1 2.1L14.21 8H20V5zM3.27 5 2 6.27l6.97 6.97L6.5 19h3l1.57-3.66L16.73 21 18 19.73 3.55 5.27z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-color-fill.svg����������������������0000664�0000000�0000000�00000000500�14753064456�0027453�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 11.5s-2 2.17-2 3.5a2 2 0 0 0 2 2 2 2 0 0 0 2-2c0-1.33-2-3.5-2-3.5M5.21 10 10 5.21 14.79 10m1.77-1.06L7.62 0 6.21 1.41l2.38 2.38-5.15 5.15c-.59.56-.59 1.53 0 2.12l5.5 5.5c.29.29.68.44 1.06.44s.77-.15 1.06-.44l5.5-5.5c.59-.59.59-1.56 0-2.12"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-color-highlight.svg�����������������0000664�0000000�0000000�00000000424�14753064456�0030501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4 17 2.75-2.75-.03-.02c-.58-.59-.58-1.54 0-2.12l4.74-4.74 4.24 4.24-4.74 4.74c-.57.58-1.5.58-2.09.02l-.63.63zM15.91 2.91c.59-.58 1.54-.58 2.12 0l2.13 2.12c.58.59.58 1.54 0 2.13l-3.3 3.29-4.24-4.24z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-color-marker-cancel.svg�������������0000664�0000000�0000000�00000000767�14753064456�0031250�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 8C14 8 12 10 12 12.5s2 4.5 4.5 4.5 4.5-2 4.5-4.5S19 8 16.5 8m0 7.5c-1.7 0-3-1.3-3-3 0-.6.2-1.1.4-1.5l4.1 4.1c-.4.2-.9.4-1.5.4m2.6-1.5L15 9.9c.4-.3.9-.4 1.5-.4 1.7 0 3 1.3 3 3 0 .6-.2 1.1-.4 1.5m-7-6.3-1.5-1.5 3.3-3.3c.6-.6 1.5-.6 2.1 0L18.2 5c.4.4.5.8.4 1.3-.6-.2-1.3-.3-2-.3-1.8 0-3.3.7-4.5 1.7m-1.6 7.2L9 16.3c-.6.6-1.5.6-2.1 0l-.7.7H2l2.8-2.8c-.6-.6-.6-1.5 0-2.1l4.7-4.7L11.1 9c-.7 1-1.1 2.2-1.1 3.5 0 .8.2 1.6.5 2.4"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/material/format-color-text.svg����������������������0000664�0000000�0000000�00000000226�14753064456�0027516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.62 12 12 5.67 14.37 12M11 3 5.5 17h2.25l1.12-3h6.25l1.13 3h2.25L13 3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-columns.svg�������������������������0000664�0000000�0000000�00000000311�14753064456�0027071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h8v2H3zm10 0h8v2h-8zM3 7h8v2H3zm10 0h8v2h-8zM3 11h8v2H3zm10 0h8v2h-8zM3 15h8v2H3zm10 0h8v2h-8zM3 19h8v2H3zm10 0h8v2h-8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-float-center.svg��������������������0000664�0000000�0000000�00000000176�14753064456�0030005�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h6v6H9zM3 3h18v2H3zm0 12h18v2H3zm0 4h14v2H3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-float-left.svg����������������������0000664�0000000�0000000�00000000230�14753064456�0027446�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 7h6v6H3zm0-4h18v2H3zm18 4v2H11V7zm0 4v2H11v-2zM3 15h14v2H3zm0 4h18v2H3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-float-none.svg����������������������0000664�0000000�0000000�00000000214�14753064456�0027455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 7h6v6H3zm0-4h18v2H3zm18 8v2H11v-2zM3 15h14v2H3zm0 4h18v2H3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-float-right.svg���������������������0000664�0000000�0000000�00000000231�14753064456�0027632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 7h6v6h-6zM3 3h18v2H3zm10 4v2H3V7zm-4 4v2H3v-2zm-6 4h14v2H3zm0 4h18v2H3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-font-size-decrease.svg��������������0000664�0000000�0000000�00000000320�14753064456�0031100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.12 14 7.5 7.67 9.87 14M6.5 5 1 19h2.25l1.12-3h6.25l1.13 3H14L8.5 5zM18 17l5-5.07-1.41-1.43L19 13.1V7h-2v6.1l-2.59-2.6L13 11.93z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-font-size-increase.svg��������������0000664�0000000�0000000�00000000320�14753064456�0031116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.12 14 7.5 7.67 9.87 14M6.5 5 1 19h2.25l1.12-3h6.25l1.13 3H14L8.5 5zM18 7l-5 5.07 1.41 1.43L17 10.9V17h2v-6.1l2.59 2.6L23 12.07z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-font.svg����������������������������0000664�0000000�0000000�00000000317�14753064456�0026365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 8h3v12h1v1h-4v-1h1v-3h-4l-1.5 3H14v1h-4v-1h1zm1 1-3.5 7H18zM5 3h5c1.11 0 2 .89 2 2v11H9v-5H6v5H3V5c0-1.11.89-2 2-2m1 2v4h3V5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-header-1.svg������������������������0000664�0000000�0000000�00000000231�14753064456�0027000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4h2v6h4V4h2v14H9v-6H5v6H3zm11 14v-2h2V6.31l-2.5 1.44V5.44L16 4h2v12h2v2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-header-2.svg������������������������0000664�0000000�0000000�00000000422�14753064456�0027003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4h2v6h4V4h2v14H9v-6H5v6H3zm18 14h-6a2 2 0 0 1-2-2c0-.53.2-1 .54-1.36l4.87-5.23c.37-.36.59-.86.59-1.41a2 2 0 0 0-2-2 2 2 0 0 0-2 2h-2a4 4 0 0 1 4-4 4 4 0 0 1 4 4c0 1.1-.45 2.1-1.17 2.83L15 16h6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-header-3.svg������������������������0000664�0000000�0000000�00000000320�14753064456�0027001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4h2v6h4V4h2v14H9v-6H5v6H3zm12 0h4a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-1h2v1h4v-4h-4v-2h4V6h-4v1h-2V6a2 2 0 0 1 2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-header-4.svg������������������������0000664�0000000�0000000�00000000237�14753064456�0027011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4h2v6h4V4h2v14H9v-6H5v6H3zm15 14v-5h-5v-2l5-7h2v7h1v2h-1v5zm0-7V7.42L15.45 11z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-header-5.svg������������������������0000664�0000000�0000000�00000000356�14753064456�0027014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4h2v6h4V4h2v14H9v-6H5v6H3zm12 0h5v2h-5v4h2a4 4 0 0 1 4 4 4 4 0 0 1-4 4h-2a2 2 0 0 1-2-2v-1h2v1h2a2 2 0 0 0 2-2 2 2 0 0 0-2-2h-2a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-header-6.svg������������������������0000664�0000000�0000000�00000000331�14753064456�0027006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4h2v6h4V4h2v14H9v-6H5v6H3zm12 0h4a2 2 0 0 1 2 2v1h-2V6h-4v4h4a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2m0 8v4h4v-4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-header-decrease.svg�����������������0000664�0000000�0000000�00000000232�14753064456�0030414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4h2v6h4V4h2v14h-2v-6H6v6H4zm16.42 3.41L16.83 11l3.59 3.59L19 16l-5-5 5-5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-header-equal.svg��������������������0000664�0000000�0000000�00000000204�14753064456�0027747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4h2v6h4V4h2v14h-2v-6H6v6H4zm10 6V8h7v2zm0 2h7v2h-7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-header-increase.svg�����������������0000664�0000000�0000000�00000000232�14753064456�0030432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4h2v6h4V4h2v14h-2v-6H6v6H4zm10.59 3.41L18.17 11l-3.58 3.59L16 16l5-5-5-5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-header-pound.svg��������������������0000664�0000000�0000000�00000000371�14753064456�0027772�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4h2v6h4V4h2v14H9v-6H5v6H3zm10 4h2.31l.32-3h2l-.32 3h2l.32-3h2l-.32 3H23v2h-1.9l-.2 2H23v2h-2.31l-.32 3h-2l.32-3h-2l-.32 3h-2l.32-3H13v-2h1.9l.2-2H13zm4.1 2-.2 2h2l.2-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-horizontal-align-center.svg���������0000664�0000000�0000000�00000000207�14753064456�0032154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 16v-3h4v-2h-4V8l-4 4zM5 8v3H1v2h4v3l4-4zm6 12h2V4h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-horizontal-align-left.svg�����������0000664�0000000�0000000�00000000164�14753064456�0031630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 16v-3h10v-2H11V8l-4 4zm-8 4h2V4H3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-horizontal-align-right.svg����������0000664�0000000�0000000�00000000160�14753064456�0032007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 8v3H3v2h10v3l4-4zm6 12h2V4h-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-indent-decrease.svg�����������������0000664�0000000�0000000�00000000231�14753064456�0030444�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 13h10v-2H11m0-2h10V7H11M3 3v2h18V3M3 21h18v-2H3m0-7 4 4V8m4 9h10v-2H11z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-indent-increase.svg�����������������0000664�0000000�0000000�00000000233�14753064456�0030464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 13h10v-2H11m0-2h10V7H11M3 3v2h18V3M11 17h10v-2H11M3 8v8l4-4m-4 9h18v-2H3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-italic.svg��������������������������0000664�0000000�0000000�00000000176�14753064456�0026667�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 4v3h2.21l-3.42 8H6v3h8v-3h-2.21l3.42-8H18V4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-letter-case-lower.svg���������������0000664�0000000�0000000�00000001237�14753064456�0030757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.06 18a4 4 0 0 1-.2-.89c-.67.7-1.48 1.05-2.41 1.05-.83 0-1.52-.24-2.05-.71-.53-.45-.8-1.06-.8-1.79 0-.88.33-1.56 1-2.05s1.61-.73 2.83-.73h1.4v-.64q0-.735-.45-1.17c-.3-.29-.75-.43-1.33-.43-.52 0-.95.12-1.3.36-.35.25-.52.54-.52.89h-1.46c0-.43.15-.84.45-1.24.28-.4.71-.71 1.22-.94.51-.21 1.06-.35 1.69-.35.98 0 1.74.24 2.29.73s.84 1.16.86 2.02V16c0 .8.1 1.42.3 1.88V18zm-2.4-1.12c.45 0 .88-.11 1.29-.32.4-.21.7-.49.88-.83v-1.57H18.7c-1.77 0-2.66.47-2.66 1.41 0 .43.15.73.46.96.3.23.68.35 1.16.35m-12.2-3.17h4.07L7.5 8.29zM6.64 6h1.72l4.71 12h-1.93l-.97-2.57H4.82L3.86 18H1.93zM22 20v2h-7.5v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-letter-case-upper.svg���������������0000664�0000000�0000000�00000001233�14753064456�0030756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.06 18a4 4 0 0 1-.2-.89c-.67.7-1.48 1.05-2.41 1.05-.83 0-1.52-.24-2.05-.71-.53-.45-.8-1.06-.8-1.79 0-.88.33-1.56 1-2.05s1.61-.73 2.83-.73h1.4v-.64q0-.735-.45-1.17c-.3-.29-.75-.43-1.33-.43-.52 0-.95.12-1.3.36-.35.25-.52.54-.52.89h-1.46c0-.43.15-.84.45-1.24.28-.4.71-.71 1.22-.94.51-.21 1.06-.35 1.69-.35.98 0 1.74.24 2.29.73s.84 1.16.86 2.02V16c0 .8.1 1.42.3 1.88V18zm-2.4-1.12c.45 0 .88-.11 1.29-.32.4-.21.7-.49.88-.83v-1.57H18.7c-1.77 0-2.66.47-2.66 1.41 0 .43.15.73.46.96.3.23.68.35 1.16.35m-12.2-3.17h4.07L7.5 8.29zM6.64 6h1.72l4.71 12h-1.93l-.97-2.57H4.82L3.86 18H1.93zM2 20h11v2H2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-letter-case.svg���������������������0000664�0000000�0000000�00000001216�14753064456�0027626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.06 18a4 4 0 0 1-.2-.89c-.67.7-1.48 1.05-2.41 1.05-.83 0-1.52-.24-2.05-.71-.53-.45-.8-1.06-.8-1.79 0-.88.33-1.56 1-2.05s1.61-.73 2.83-.73h1.4v-.64q0-.735-.45-1.17c-.3-.29-.75-.43-1.33-.43-.52 0-.95.12-1.3.36-.35.25-.52.54-.52.89h-1.46c0-.43.15-.84.45-1.24.28-.4.71-.71 1.22-.94.51-.21 1.06-.35 1.69-.35.98 0 1.74.24 2.29.73s.84 1.16.86 2.02V16c0 .8.1 1.42.3 1.88V18zm-2.4-1.12c.45 0 .88-.11 1.29-.32.4-.21.7-.49.88-.83v-1.57H18.7c-1.77 0-2.66.47-2.66 1.41 0 .43.15.73.46.96.3.23.68.35 1.16.35m-12.2-3.17h4.07L7.5 8.29zM6.64 6h1.72l4.71 12h-1.93l-.97-2.57H4.82L3.86 18H1.93z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-letter-ends-with.svg����������������0000664�0000000�0000000�00000000261�14753064456�0030614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.14 4 6.43 16h1.93l.96-2.57h5.35l.97 2.57h1.93L12.86 4M12 6.29l2.03 5.42H9.96M20 14v4H2v2h20v-6Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-letter-matches.svg������������������0000664�0000000�0000000�00000000266�14753064456�0030343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.14 4 6.43 16h1.93l.96-2.57h5.35l.97 2.57h1.93L12.86 4M12 6.29l2.03 5.42H9.96M20 14v4H4v-3H2v5h20v-6Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-letter-spacing-variant.svg����������0000664�0000000�0000000�00000000245�14753064456�0032002�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 3v18h-2V3zM4 3v18H2V3zm6 10.7h4l-2-5.4zM11.2 6h1.7l4.7 12h-2l-.9-2.6H9.4L8.5 18h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-letter-spacing.svg������������������0000664�0000000�0000000�00000000334�14753064456�0030337�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.4 10.7h4.1l-2-5.4zM15.6 3h1.7L22 15h-1.9l-1-2.6h-5.4l-1 2.6h-1.9zm-4.4 0h1.9L8.4 15H6.7L2 3h1.9l3.6 9.7M19 22v-2H5v2l-3-3 3-3v2h14v-2l3 3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-letter-starts-with.svg��������������0000664�0000000�0000000�00000000261�14753064456�0031203�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.14 4 6.43 16h1.93l.96-2.57h5.35l.97 2.57h1.93L12.86 4M12 6.29l2.03 5.42H9.96M4 18v-3H2v5h20v-2Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-line-height.svg���������������������0000664�0000000�0000000�00000000250�14753064456�0027610�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 22H3v-2h18zm0-18H3V2h18zm-11 9.7h4l-2-5.4zM11.2 6h1.7l4.7 12h-2l-.9-2.6H9.4L8.5 18h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-line-spacing.svg��������������������0000664�0000000�0000000�00000000245�14753064456�0027770�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 13h12v-2H10m0 8h12v-2H10m0-10h12V5H10M6 7h2.5L5 3.5 1.5 7H4v10H1.5L5 20.5 8.5 17H6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-line-style.svg����������������������0000664�0000000�0000000�00000000340�14753064456�0027500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 16h5v-2H3zm6.5 0h5v-2h-5zm6.5 0h5v-2h-5zM3 20h2v-2H3zm4 0h2v-2H7zm4 0h2v-2h-2zm4 0h2v-2h-2zm4 0h2v-2h-2zM3 12h8v-2H3zm10 0h8v-2h-8zM3 4v4h18V4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-line-weight.svg���������������������0000664�0000000�0000000�00000000202�14753064456�0027624�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 17h18v-2H3zm0 3h18v-1H3zm0-7h18v-3H3zm0-9v4h18V4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-list-bulleted-square.svg������������0000664�0000000�0000000�00000000227�14753064456�0031466�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4h4v4H3zm6 1v2h12V5zm-6 5h4v4H3zm6 1v2h12v-2zm-6 5h4v4H3zm6 1v2h12v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-list-bulleted-triangle.svg����������0000664�0000000�0000000�00000000251�14753064456�0031770�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 15.5 7.5 20h-5zM9 19h12v-2H9zM5 9.5 7.5 14h-5zM9 13h12v-2H9zM5 3.5 7.5 8h-5zM9 7h12V5H9z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-list-bulleted-type.svg��������������0000664�0000000�0000000�00000000316�14753064456�0031146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 9.5 7.5 14h-5zM3 4h4v4H3zm2 16a2 2 0 0 0 2-2 2 2 0 0 0-2-2 2 2 0 0 0-2 2 2 2 0 0 0 2 2M9 5v2h12V5zm0 14h12v-2H9zm0-6h12v-2H9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-list-bulleted.svg�������������������0000664�0000000�0000000�00000000576�14753064456�0030177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 5h14v2H7zm0 8v-2h14v2zM4 4.5A1.5 1.5 0 0 1 5.5 6 1.5 1.5 0 0 1 4 7.5 1.5 1.5 0 0 1 2.5 6 1.5 1.5 0 0 1 4 4.5m0 6A1.5 1.5 0 0 1 5.5 12 1.5 1.5 0 0 1 4 13.5 1.5 1.5 0 0 1 2.5 12 1.5 1.5 0 0 1 4 10.5M7 19v-2h14v2zm-3-2.5A1.5 1.5 0 0 1 5.5 18 1.5 1.5 0 0 1 4 19.5 1.5 1.5 0 0 1 2.5 18 1.5 1.5 0 0 1 4 16.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-list-checkbox.svg�������������������0000664�0000000�0000000�00000000542�14753064456�0030156�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 19v-2H8v2zm0-6v-2H8v2zM8 7h13V5H8zM4 5v2h2V5zM3 5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1zm1 6v2h2v-2zm-1 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1zm1 6v2h2v-2zm-1 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-list-checks.svg���������������������0000664�0000000�0000000�00000000256�14753064456�0027632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5h6v6H3zm2 2v2h2V7zm6 0h10v2H11zm0 8h10v2H11zm-6 5-3.5-3.5 1.41-1.41L5 17.17l4.59-4.58L11 14z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-list-group-plus.svg�����������������0000664�0000000�0000000�00000000344�14753064456�0030505�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 14v3h-3v2h3v3h2v-3h3v-2h-3v-3m1-3v1.3c-.6-.2-1.3-.3-2-.3-1.2 0-2.4.4-3.3 1H7v-2zm-7.9 6H7v-2h5.8c-.3.6-.6 1.3-.7 2M7 7h13v2H7zM5 19h2v2H3V3h4v2H5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-list-group.svg����������������������0000664�0000000�0000000�00000000207�14753064456�0027522�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 5v14h2v2H3V3h4v2zm15 2H7v2h13zm0 4H7v2h13zm0 4H7v2h13z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-list-numbered-rtl.svg���������������0000664�0000000�0000000�00000000354�14753064456�0030771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 13v-2h14v2zm0 6v-2h14v2zM3 7V5h14v2zm17 1V5h-1V4h2v4zm-1 9v-1h3v4h-3v-1h2v-.5h-1v-1h1V17zm2.25-7a.749.749 0 0 1 .54 1.27L20.12 13H22v1h-3v-.92L21 11h-2v-1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-list-numbered.svg�������������������0000664�0000000�0000000�00000000362�14753064456�0030171�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 13v-2h14v2zm0 6v-2h14v2zM7 7V5h14v2zM3 8V5H2V4h2v4zm-1 9v-1h3v4H2v-1h2v-.5H3v-1h1V17zm2.25-7a.75.75 0 0 1 .75.75c0 .2-.08.39-.21.52L3.12 13H5v1H2v-.92L4 11H2v-1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-list-text.svg�����������������������0000664�0000000�0000000�00000000226�14753064456�0027353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 14h6v6H2M16 8h-6v2h6M2 10h6V4H2m8 0v2h12V4M10 20h6v-2h-6m0-2h12v-2H10"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-overline.svg������������������������0000664�0000000�0000000�00000000242�14753064456�0027237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 5h14V3H5zm4.62 11L12 9.67 14.37 16M11 7 5.5 21h2.25l1.12-3h6.25l1.13 3h2.25L13 7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-page-break.svg����������������������0000664�0000000�0000000�00000000340�14753064456�0027411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 20H6v-2H4v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2h-2zM14 2H6a2 2 0 0 0-2 2v8h2V4h8v4h4v4h2V8zm-3 14H8v-2h3zm5 0h-3v-2h3zM3 14h3v2H3zm18 2h-3v-2h3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-page-split.svg����������������������0000664�0000000�0000000�00000000336�14753064456�0027465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 11V7h2v4zm2-10v4h-2V1zm-2 16v-4h2v4zm-2 3H6V4h3V2H6a2 2 0 0 0-2 2v16c0 1.11.89 2 2 2h3zm6-17v5h3v12h-3v2h3c1.11 0 2-.89 2-2V8zm-2 16h-2v4h2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-paint.svg���������������������������0000664�0000000�0000000�00000000305�14753064456�0026527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 4V3a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V6h1v4H9v11a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-9h8V4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-paragraph-spacing.svg���������������0000664�0000000�0000000�00000000226�14753064456�0031005�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 17h18v2H3zM3 2h18v2H3zm0 18h18v2H3zM13 8h2l-3-3-3 3h2v5H9l3 3 3-3h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-paragraph.svg�����������������������0000664�0000000�0000000�00000000237�14753064456�0027365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 4a4 4 0 0 1 4 4 4 4 0 0 1-4 4h-2v6H9V4zm0 6a2 2 0 0 0 2-2 2 2 0 0 0-2-2h-2v4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-pilcrow-arrow-left.svg��������������0000664�0000000�0000000�00000000240�14753064456�0031151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 17v-3l-4 4 4 4v-3h12v-2m-10-7v5h2V4h2v11h2V4h2V2h-8a4 4 0 0 0-4 4 4 4 0 0 0 4 4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-pilcrow-arrow-right.svg�������������0000664�0000000�0000000�00000000231�14753064456�0031334�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21 18-4-4v3H5v2h12v3M9 10v5h2V4h2v11h2V4h2V2H9a4 4 0 0 0-4 4 4 4 0 0 0 4 4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-pilcrow.svg�������������������������0000664�0000000�0000000�00000000211�14753064456�0027067�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 11a4 4 0 0 1-4-4 4 4 0 0 1 4-4h8v2h-2v16h-2V5h-2v16h-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-quote-close-outline.svg�������������0000664�0000000�0000000�00000000320�14753064456�0031326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 6v8h1.88l-2 4h5.74L21 13.24V6m-6 2h4v4.76L17.38 16h-1.26l2-4H15M3 6v8h1.88l-2 4h5.74L11 13.24V6M5 8h4v4.76L7.38 16H6.12l2-4H5Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-quote-close.svg���������������������0000664�0000000�0000000�00000000167�14753064456�0027662�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 17h3l2-4V7h-6v6h3M6 17h3l2-4V7H5v6h3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-quote-open-outline.svg��������������0000664�0000000�0000000�00000000326�14753064456�0031170�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 18v-8H9.12l2-4H5.38L3 10.76V18m6-2H5v-4.76L6.62 8h1.26l-2 4H9m12 6v-8h-1.88l2-4h-5.74L13 10.76V18m6-2h-4v-4.76L16.62 8h1.26l-2 4H19Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-quote-open.svg����������������������0000664�0000000�0000000�00000000174�14753064456�0027514�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10 7-2 4h3v6H5v-6l2-4zm8 0-2 4h3v6h-6v-6l2-4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-rotate-90.svg�����������������������0000664�0000000�0000000�00000000560�14753064456�0027143�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.34 6.41.86 12.9l6.49 6.48 6.49-6.48zM3.69 12.9l3.66-3.66L11 12.9l-3.66 3.66zm15.67-6.26A8.95 8.95 0 0 0 13 4V.76L8.76 5 13 9.24V6c1.79 0 3.58.68 4.95 2.05a7.007 7.007 0 0 1 0 9.9 6.97 6.97 0 0 1-7.79 1.44l-1.49 1.49C10 21.62 11.5 22 13 22c2.3 0 4.61-.88 6.36-2.64a8.98 8.98 0 0 0 0-12.72"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-section.svg�������������������������0000664�0000000�0000000�00000001201�14753064456�0027054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.67 4.42a6.1 6.1 0 0 0-3.22-.86c-1.58 0-2.79.78-2.79 2 0 1.4 1.34 1.91 3.34 2.58 2.5.81 4.4 1.83 4.4 4.24a4.01 4.01 0 0 1-1.8 3.23c.65.61 1.01 1.47 1 2.36 0 2.82-2.6 4-5.1 4-1.46.06-2.91-.33-4.15-1.1L8 19.34c1.04.71 2.27 1.09 3.53 1.1 1.72 0 3-.78 3-2.2 0-1.24-.78-1.93-3.28-2.79C8.5 14.5 6.6 13.5 6.6 11.21c.07-1.32.83-2.52 2-3.14-.63-.57-.99-1.4-1-2.26C7.6 3.45 9.77 2 12.53 2c1.29 0 2.56.29 3.7.89zm-4.32 9c1.06.33 2.09.76 3.06 1.29.65-.49 1.02-1.26 1-2.07 0-1-.64-1.88-2.41-2.5-1.11-.37-2.22-.83-3.28-1.37-.75.45-1.22 1.26-1.22 2.14 0 .97.73 1.77 2.85 2.51"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-size.svg����������������������������0000664�0000000�0000000�00000000170�14753064456�0026366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4v3h5v12h3V7h5V4zm19 5h-9v3h3v7h3v-7h3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-strikethrough-variant.svg�����������0000664�0000000�0000000�00000000571�14753064456�0031765�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.2 9.8c-1.2-2.3.5-5 2.9-5.5 3.1-1 7.6.4 7.5 4.2h-3c0-.3-.1-.6-.1-.8-.2-.6-.6-.9-1.2-1.1-.8-.3-2.1-.2-2.8.3C9 8.2 10.4 9.5 12 10H7.4c-.1-.1-.1-.2-.2-.2M21 13v-2H3v2h9.6c.2.1.4.1.6.2.6.3 1.1.5 1.3 1.1.1.4.2.9 0 1.3-.2.5-.6.7-1.1.9-1.8.5-4-.2-3.9-2.4h-3c-.1 2.6 2.1 4.4 4.5 4.7 3.8.8 8.3-1.6 6.3-5.9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-strikethrough.svg�������������������0000664�0000000�0000000�00000000174�14753064456�0030322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 14h18v-2H3m2-8v3h5v3h4V7h5V4m-9 15h4v-3h-4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-subscript.svg�����������������������0000664�0000000�0000000�00000000737�14753064456�0027443�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 7.41 11.41 12 16 16.59 14.59 18 10 13.41 5.41 18 4 16.59 8.59 12 4 7.41 5.41 6 10 10.59 14.59 6zm5.85 13.62h-4.88v-1l.89-.8c.76-.65 1.32-1.19 1.7-1.63.37-.44.56-.85.57-1.24a.9.9 0 0 0-.27-.7c-.18-.16-.47-.28-.86-.28-.31 0-.58.06-.84.18l-.66.38-.45-1.17c.27-.21.59-.39.98-.53s.82-.24 1.29-.24c.78.04 1.38.25 1.78.66s.62.93.62 1.57c-.01.56-.19 1.08-.54 1.55-.34.47-.76.92-1.27 1.36l-.64.52v.02h2.58z"/></svg>���������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-superscript.svg���������������������0000664�0000000�0000000�00000000732�14753064456�0030003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 7.41 11.41 12 16 16.59 14.59 18 10 13.41 5.41 18 4 16.59 8.59 12 4 7.41 5.41 6 10 10.59 14.59 6zM21.85 9h-4.88V8l.89-.82c.76-.64 1.32-1.18 1.7-1.63q.555-.66.57-1.23a.88.88 0 0 0-.27-.7c-.18-.19-.47-.28-.86-.29-.31.01-.58.07-.84.17l-.66.39-.45-1.17c.27-.22.59-.39.98-.53S18.85 2 19.32 2c.78 0 1.38.2 1.78.61.4.39.62.93.62 1.57-.01.56-.19 1.08-.54 1.55-.34.48-.76.93-1.27 1.36l-.64.52v.02h2.58z"/></svg>��������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-text-rotation-angle-down.svg��������0000664�0000000�0000000�00000000364�14753064456�0032273�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.25 21h-4.22l1.41-1.41-8.86-8.86 1.45-1.4 8.81 8.86 1.41-1.41M12.61 8l2.62 2.64 2.2-4.87m1.98-.85-4.46 11.11-1.45-1.45.89-2.2-3.51-3.57-2.2.94-1.46-1.5 11.11-4.41Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-text-rotation-angle-up.svg����������0000664�0000000�0000000�00000000365�14753064456�0031751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.58 9.33v4.22l-1.41-1.41L10.31 21l-1.4-1.41 8.81-8.86-1.41-1.4M7.59 11l2.63-2.61-4.88-2.25M4.5 4.22l11.11 4.41-1.45 1.5-2.2-.94-3.57 3.56.94 2.16-1.5 1.5L3.42 5.25Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-text-rotation-down-vertical.svg�����0000664�0000000�0000000�00000000301�14753064456�0033005�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.25 4h-1.5L9 15h2.1l.9-2.2h5l.9 2.2H20zm-2.62 7 1.87-5 1.87 5zM5 17.5l3-3H6V2H4v12.5H2zM22 20l-3-3v2H6.5v2H19v2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-text-rotation-down.svg��������������0000664�0000000�0000000�00000000275�14753064456�0031210�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6 19.73-3-3h2V4.27h2v12.46h2zm8-10.35v3.75l5.03-1.88zM21 12l-11 4.73v-2.06l2.19-.94V8.77L10 7.83V5.77l11 4.73z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-text-rotation-none.svg��������������0000664�0000000�0000000�00000000271�14753064456�0031174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.5 18-3 3v-2H5v-2h12.5v-2zm-10.37-8h3.75L12 4.97zm2.62-7 4.75 11h-2.08l-.92-2.19h-5L8.58 14H6.5l4.75-11z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-text-rotation-up.svg����������������0000664�0000000�0000000�00000000257�14753064456�0030665�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 12v1.5l11 4.75v-2.1l-2.2-.9v-5l2.2-.9v-2.1zm7 2.62-5-1.87 5-1.87zm8-10.37-3 3h2v12.5h2V7.25h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-text-rotation-vertical.svg����������0000664�0000000�0000000�00000000255�14753064456�0032050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.75 5h-1.5L9.5 16h2.1l.9-2.2h5l.9 2.2h2.1zm-2.62 7L15 7l1.87 5zM6 19.75l3-3H7V4.25H5v12.5H3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-text-variant-outline.svg������������0000664�0000000�0000000�00000000530�14753064456�0031517�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 3c-.82 0-1.56.5-1.86 1.27l-5.5 14C3.12 19.58 4.09 21 5.5 21h2.25c.84 0 1.58-.5 1.87-1.3l.64-1.7h3.48l.64 1.7c.29.8 1.04 1.3 1.87 1.3h2.25c1.41 0 2.38-1.42 1.86-2.73l-5.5-14C14.56 3.5 13.82 3 13 3m-2 2h2l5.5 14h-2.25l-1.13-3H8.87l-1.12 3H5.5M12 7.67 9.62 14h4.75Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-text-variant.svg��������������������0000664�0000000�0000000�00000000215�14753064456�0030042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.6 14 12 7.7l2.4 6.3M11 5 5.5 19h2.2l1.1-3H15l1.1 3h2.2L13 5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-text-wrapping-clip.svg��������������0000664�0000000�0000000�00000000156�14753064456�0031156�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 21H5V3h2zM17 3v8H9v2h8v8h2V3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-text-wrapping-overflow.svg����������0000664�0000000�0000000�00000000207�14753064456�0032067�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 21H5V3h2zm7-18h-2v6h2zm0 12h-2v6h2zm5-3-3-3v2H9v2h7v2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-text-wrapping-wrap.svg��������������0000664�0000000�0000000�00000000307�14753064456�0031176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 21H5V3h2zM19 3h-2v18h2zm-6 5H9v2h3.97c.17 0 1.03.16 1.03 2s-.86 2-1 2h-2v-2l-3 3 3 3v-2h2c1.04 0 3-.84 3-4s-1.96-4-3-4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-text.svg����������������������������0000664�0000000�0000000�00000000500�14753064456�0026375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.5 4 1.16 4.35-.96.26c-.45-.87-.91-1.74-1.44-2.18C16.73 6 16.11 6 15.5 6H13v10.5c0 .5 0 1 .33 1.25.34.25 1 .25 1.67.25v1H9v-1c.67 0 1.33 0 1.67-.25.33-.25.33-.75.33-1.25V6H8.5c-.61 0-1.23 0-1.76.43-.53.44-.99 1.31-1.44 2.18l-.96-.26L5.5 4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-textbox.svg�������������������������0000664�0000000�0000000�00000000351�14753064456�0027112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 7V3h-4v1H7V3H3v4h1v10H3v4h4v-1h10v1h4v-4h-1V7zm-3-3h2v2h-2zM4 4h2v2H4zm2 16H4v-2h2zm14 0h-2v-2h2zm-2-3h-1v1H7v-1H6V7h1V6h10v1h1zm-2-9v2h-3v6h-2v-6H8V8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-title.svg���������������������������0000664�0000000�0000000�00000000145�14753064456�0026537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 4v3h5.5v12h3V7H19V4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-underline-wavy.svg������������������0000664�0000000�0000000�00000000714�14753064456�0030371�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 17c3.31 0 6-2.69 6-6V3h-2.5v8c0 1.93-1.57 3.5-3.5 3.5S8.5 12.93 8.5 11V3H6v8c0 3.31 2.69 6 6 6m8 5c-1.4 0-2.2-.7-2.7-1.3-.5-.5-.7-.7-1.3-.7s-.8.2-1.3.7c-.5.6-1.3 1.3-2.7 1.3s-2.2-.7-2.7-1.3c-.5-.5-.7-.7-1.3-.7s-.8.2-1.3.7C6.2 21.3 5.4 22 4 22v-2c.6 0 .8-.2 1.3-.7.5-.6 1.3-1.3 2.7-1.3s2.2.7 2.7 1.3c.5.5.7.7 1.3.7s.8-.2 1.3-.7c.5-.6 1.3-1.3 2.7-1.3s2.2.7 2.7 1.3c.5.5.7.7 1.3.7z"/></svg>����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-underline.svg�����������������������0000664�0000000�0000000�00000000266�14753064456�0027407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 21h14v-2H5zm7-4a6 6 0 0 0 6-6V3h-2.5v8a3.5 3.5 0 0 1-3.5 3.5A3.5 3.5 0 0 1 8.5 11V3H6v8a6 6 0 0 0 6 6"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-vertical-align-bottom.svg�����������0000664�0000000�0000000�00000000164�14753064456�0031622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 13h-3V3h-2v10H8l4 4zM4 19v2h16v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-vertical-align-center.svg�����������0000664�0000000�0000000�00000000210�14753064456�0031566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 19h3v4h2v-4h3l-4-4zm8-14h-3V1h-2v4H8l4 4zM4 11v2h16v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-vertical-align-top.svg��������������0000664�0000000�0000000�00000000161�14753064456�0031115�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 11h3v10h2V11h3l-4-4zM4 3v2h16V3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-wrap-inline.svg���������������������0000664�0000000�0000000�00000000202�14753064456�0027635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8 7 5 10H3zM3 3h18v2H3zm18 12v2h-7v-2zM3 19h18v2H3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-wrap-square.svg���������������������0000664�0000000�0000000�00000000300�14753064456�0027656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 7 5 10H7zM3 3h18v2H3zm0 4h3v2H3zm18 0v2h-3V7zM3 11h3v2H3zm18 0v2h-3v-2zM3 15h3v2H3zm18 0v2h-3v-2zM3 19h18v2H3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-wrap-tight.svg����������������������0000664�0000000�0000000�00000000300�14753064456�0027475�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 7 5 10H7zM3 3h18v2H3zm0 4h6v2H3zm18 0v2h-6V7zM3 11h4v2H3zm18 0v2h-4v-2zM3 15h3v2H3zm18 0v2h-3v-2zM3 19h18v2H3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/format-wrap-top-bottom.svg�����������������0000664�0000000�0000000�00000000164�14753064456�0030472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 7 5 10H7zM3 3h18v2H3zm0 16h18v2H3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/forum-minus-outline.svg��������������������0000664�0000000�0000000�00000000413�14753064456�0030064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 6h-2v6.1c1.2.2 2.2.7 3 1.4V7c0-.5-.5-1-1-1M6 17c0 .5.5 1 1 1h5c0-1.1.3-2.1.8-3H6zM16 2H3c-.5 0-1 .5-1 1v14l4-4h8.7c.7-.5 1.5-.8 2.3-.9V3c0-.5-.5-1-1-1m-1 9H5.2L4 12.2V4h11zm7 6v2h-8v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/forum-minus.svg����������������������������0000664�0000000�0000000�00000000366�14753064456�0026416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 6h-2v6.1c1.2.2 2.2.7 3 1.4V7c0-.5-.5-1-1-1M6 17c0 .5.5 1 1 1h5c0-1.1.3-2.1.8-3H6zM16 2H3c-.5 0-1 .5-1 1v14l4-4h8.7c.7-.5 1.5-.8 2.3-.9V3c0-.5-.5-1-1-1m6 15v2h-8v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/forum-outline.svg��������������������������0000664�0000000�0000000�00000000323�14753064456�0026733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 4v7H5.17L4 12.17V4zm1-2H3a1 1 0 0 0-1 1v14l4-4h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1m5 4h-2v9H6v2a1 1 0 0 0 1 1h11l4 4V7a1 1 0 0 0-1-1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/forum-plus-outline.svg���������������������0000664�0000000�0000000�00000000436�14753064456�0027721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 6h-2v6.1c1.2.2 2.2.7 3 1.4V7c0-.5-.5-1-1-1M6 17c0 .5.5 1 1 1h5c0-1.1.3-2.1.8-3H6zM16 2H3c-.5 0-1 .5-1 1v14l4-4h8.7c.7-.5 1.5-.8 2.3-.9V3c0-.5-.5-1-1-1m-1 9H5.2L4 12.2V4h11zm2 3h2v3h3v2h-3v3h-2v-3h-3v-2h3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/forum-plus.svg�����������������������������0000664�0000000�0000000�00000000411�14753064456�0026235�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 6h-2v6.1c1.2.2 2.2.7 3 1.4V7c0-.5-.5-1-1-1M6 17c0 .5.5 1 1 1h5c0-1.1.3-2.1.8-3H6zM16 2H3c-.5 0-1 .5-1 1v14l4-4h8.7c.7-.5 1.5-.8 2.3-.9V3c0-.5-.5-1-1-1m1 12h2v3h3v2h-3v3h-2v-3h-3v-2h3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/forum-remove-outline.svg�������������������0000664�0000000�0000000�00000000565�14753064456�0030236�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 6h-2v6.1c1.2.2 2.2.7 3 1.4V7c0-.5-.5-1-1-1M6 17c0 .5.5 1 1 1h5c0-1.1.3-2.1.8-3H6zM16 2H3c-.5 0-1 .5-1 1v14l4-4h8.7c.7-.5 1.5-.8 2.3-.9V3c0-.5-.5-1-1-1m-1 9H5.2L4 12.2V4h11zm5.12 3.46 1.42 1.42L19.41 18l2.13 2.12-1.42 1.42L18 19.41l-2.12 2.13-1.41-1.42L16.59 18l-2.12-2.12 1.41-1.41L18 16.59z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/forum-remove.svg���������������������������0000664�0000000�0000000�00000000540�14753064456�0026552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 6h-2v6.1c1.2.2 2.2.7 3 1.4V7c0-.5-.5-1-1-1M6 17c0 .5.5 1 1 1h5c0-1.1.3-2.1.8-3H6zM16 2H3c-.5 0-1 .5-1 1v14l4-4h8.7c.7-.5 1.5-.8 2.3-.9V3c0-.5-.5-1-1-1m4.12 12.46 1.42 1.42L19.41 18l2.13 2.12-1.42 1.42L18 19.41l-2.12 2.13-1.41-1.42L16.59 18l-2.12-2.12 1.41-1.41L18 16.59z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/forum.svg����������������������������������0000664�0000000�0000000�00000000276�14753064456�0025265�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 12V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v14l4-4h10a1 1 0 0 0 1-1m4-6h-2v9H6v2a1 1 0 0 0 1 1h11l4 4V7a1 1 0 0 0-1-1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/forward.svg��������������������������������0000664�0000000�0000000�00000000145�14753064456�0025574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8V4l8 8-8 8v-4H4V8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/forwardburger.svg��������������������������0000664�0000000�0000000�00000000232�14753064456�0027000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13H3v-2h16l-4-4 1.4-1.4 6.4 6.4-6.4 6.4L15 17zM3 6h10v2H3zm10 10v2H3v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fountain-pen-tip.svg�����������������������0000664�0000000�0000000�00000000425�14753064456�0027326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.54 3.5 4.96 4.97-1.43 1.41-4.95-4.95zM3.5 19.78l6.5-6.47c-.1-.31-.03-.7.23-.96.39-.39 1.03-.39 1.42 0 .39.4.39 1.03 0 1.42-.26.26-.65.33-.96.23l-6.47 6.5 10.61-3.55 3.53-6.36-4.94-4.95-6.37 3.53z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fountain-pen.svg���������������������������0000664�0000000�0000000�00000000440�14753064456�0026531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6.95 14.93 4.24-5.66 8.49-7.07c.39-.39 1.04-.39 1.41 0l.71.71c.39.37.39 1.02 0 1.41l-7.07 8.49-5.66 4.24zm1.41 2.83-2.12-2.12-2.83 1.41L2 21.29l2.12-2.12c.2-.17.51-.17.71 0 .17.2.17.51 0 .71L2.71 22l4.24-1.41z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fountain.svg�������������������������������0000664�0000000�0000000�00000001156�14753064456�0025756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 2C4.47 2 2 4.46 2 7.5V8h2v-.5A3.5 3.5 0 0 1 7.5 4c1.5 0 2.76.93 3.26 2.24Q10.175 6 9.5 6c-1.39 0-2.6.82-3.16 2l1.74 1c.21-.58.77-1 1.42-1A1.5 1.5 0 0 1 11 9.5V11h2V9.5A1.5 1.5 0 0 1 14.5 8c.66 0 1.21.42 1.42 1l1.74-1c-.56-1.18-1.76-2-3.16-2q-.675 0-1.26.24C13.74 4.93 15 4 16.5 4A3.5 3.5 0 0 1 20 7.5V8h2v-.5A5.5 5.5 0 0 0 16.5 2c-1.86 0-3.5.93-4.5 2.34C11 2.93 9.36 2 7.5 2M6 12v2h1.42c.5 1.15 1.43 2.07 2.58 2.57V19H2s.82 1.23 1.41 2.11c.37.56.99.89 1.66.89h13.86c.67 0 1.29-.33 1.66-.89L22 19h-8v-2.43c1.15-.5 2.08-1.42 2.58-2.57H18v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fraction-one-half.svg����������������������0000664�0000000�0000000�00000000324�14753064456�0027423�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5.79 21.61-1.58-1.22 14-18 1.58 1.22zM4 2v2h2v8h2V2zm11 10v2h4v2h-2c-1.1 0-2 .9-2 2v4h6v-2h-4v-2h2c1.11 0 2-.89 2-2v-2a2 2 0 0 0-2-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/freebsd.svg��������������������������������0000664�0000000�0000000�00000001073�14753064456�0025543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.69 2c.85-.05 3.39 1.16 3.44 1.19-1.29.81-2.39 1.9-3.22 3.19C2.09 4.81 1.34 2.91 2 2.25c.17-.17.4-.25.69-.25m18.15.13c.41-.05.74.01.94.21 1.07 1.08-1.9 5.81-2.4 6.32-.51.5-1.81.04-2.88-1.03-1.07-1.08-1.53-2.37-1.03-2.88.41-.41 3.62-2.45 5.37-2.62M12 2.56c1.29 0 2.53.26 3.66.72-.49.32-.85.57-.97.69-.99.99-.55 2.86 1.03 4.44.98.97 2.12 1.56 3.06 1.56.68 0 1.14-.29 1.38-.53.17-.17.44-.56.75-1.03.51 1.18.78 2.47.78 3.84 0 5.36-4.33 9.72-9.69 9.72s-9.69-4.36-9.69-9.72A9.68 9.68 0 0 1 12 2.56"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/french-fries.svg���������������������������0000664�0000000�0000000�00000000475�14753064456�0026511�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 11V6h-3V4h-3V2H8v3H6v6H5l2 11h10l2-11zm-2.14 0c-.16.61-.46 1.16-.86 1.62v-4l2 1V11zM17 7v1.5l-2-1V7zm-5-2h2v3.5l-2 1zm0 5.62 2-1v3.83c-.59.35-1.27.55-2 .55zm-1 3.24c-.79-.21-1.5-.64-2-1.24v-3l2-1zM9 3h2v4.5L10 8V5H9zM7 6h2v2.5L8 9v2H7z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/frequently-asked-questions.svg�������������0000664�0000000�0000000�00000001101�14753064456�0031434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 15H6l-4 4V3a1 1 0 0 1 1-1h15a1 1 0 0 1 1 1v11a1 1 0 0 1-1 1m5-6v14l-4-4H8a1 1 0 0 1-1-1v-1h14V8h1a1 1 0 0 1 1 1M8.19 4c-.87 0-1.57.2-2.11.59-.52.41-.78.98-.77 1.77l.01.03h1.93c.01-.3.1-.53.28-.69a1 1 0 0 1 .66-.23c.31 0 .57.1.75.28.18.19.26.45.26.75 0 .32-.07.59-.23.82-.14.23-.35.43-.61.59-.51.34-.86.64-1.05.91C7.11 9.08 7 9.5 7 10h2c0-.31.04-.56.13-.74s.26-.36.51-.52c.45-.24.82-.53 1.11-.93s.44-.81.44-1.31c0-.76-.27-1.37-.81-1.82C9.85 4.23 9.12 4 8.19 4M7 11v2h2v-2zm6 2h2v-2h-2zm0-9v6h2V4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fridge-alert-outline.svg�������������������0000664�0000000�0000000�00000000357�14753064456�0030157�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 21v1H5v-1a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v15c0 1.11-.89 2-2 2v1h-2v-1zM5 4v5h10V4zm0 15h10v-8H5zm1-7h2v3H6zm0-6h2v2H6zm13 9h2v2h-2zm0-8h2v6h-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fridge-alert.svg���������������������������0000664�0000000�0000000�00000000344�14753064456�0026476�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 2h10a2 2 0 0 1 2 2v5H3V4c0-1.1.9-2 2-2m12 17c0 1.11-.89 2-2 2v1h-2v-1H7v1H5v-1a2 2 0 0 1-2-2v-9h14zM6 5v2h2V5zm0 7v3h2v-3zm13 3h2v2h-2zm0-8h2v6h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fridge-bottom.svg��������������������������0000664�0000000�0000000�00000000304�14753064456�0026667�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2a2 2 0 0 0-2 2v15a2 2 0 0 0 2 2v1h2v-1h6v1h2v-1a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm1 4h2v2H8zm-1 5h10v8H7zm1 1v3h2v-3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fridge-industrial-alert-outline.svg��������0000664�0000000�0000000�00000000334�14753064456�0032326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 15H6v-5h2zm9-11v15c0 1.11-.89 2-2 2v1h-2v-1H7v1H5v-1a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2m-2 0H5v15h10zm4 13h2v-2h-2zm0-10v6h2V7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fridge-industrial-alert.svg����������������0000664�0000000�0000000�00000000316�14753064456�0030651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 2H5c-1.1 0-2 .9-2 2v15a2 2 0 0 0 2 2v1h2v-1h6v1h2v-1c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2M8 15H6v-5h2zm13-8v6h-2V7zm-2 8h2v2h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fridge-industrial-off-outline.svg����������0000664�0000000�0000000�00000000442�14753064456�0031771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.2 4 5.7 2.5c.35-.31.8-.5 1.3-.5h10a2 2 0 0 1 2 2v11.8l-2-2V4zm14.91 17.46-1.27 1.27-2.38-2.38c-.36.4-.88.65-1.46.65v1h-2v-1H9v1H7v-1a2 2 0 0 1-2-2V6.89L1.11 3l1.28-1.27zM17 18.89l-7-7V15H8v-5h.11L7 8.89V19h10z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fridge-industrial-off.svg������������������0000664�0000000�0000000�00000000406�14753064456�0030314�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 15.8 5.7 2.5c.35-.31.8-.5 1.3-.5h10a2 2 0 0 1 2 2zm3.11 5.66-1.27 1.27-2.38-2.38c-.36.4-.88.65-1.46.65v1h-2v-1H9v1H7v-1a2 2 0 0 1-2-2V6.89L1.11 3l1.28-1.27zM10 11.89 8.11 10H8v5h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fridge-industrial-outline.svg��������������0000664�0000000�0000000�00000000301�14753064456�0031213�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 2H7c-1.1 0-2 .9-2 2v15a2 2 0 0 0 2 2v1h2v-1h6v1h2v-1c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2m0 17H7V4h10zm-7-4H8v-5h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fridge-industrial.svg����������������������0000664�0000000�0000000�00000000265�14753064456�0027547�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 2H7c-1.1 0-2 .9-2 2v15a2 2 0 0 0 2 2v1h2v-1h6v1h2v-1c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2m-7 13H8v-5h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fridge-off-outline.svg���������������������0000664�0000000�0000000�00000000453�14753064456�0027617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3 5 6.89V19a2 2 0 0 0 2 2v1h2v-1h6v1h2v-1c.58 0 1.1-.25 1.46-.65l2.38 2.38zM17 19H7v-8h2.11L17 18.89zM7.2 4 5.7 2.5c.35-.31.8-.5 1.3-.5h10a2 2 0 0 1 2 2v11.8l-2-2V11h-2.8l-2-2H17V4zm.8 8h2v3H8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fridge-off.svg�����������������������������0000664�0000000�0000000�00000000444�14753064456�0026142�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3 5 6.89V9h2.11l1 1H5v9a2 2 0 0 0 2 2v1h2v-1h6v1h2v-1c.58 0 1.1-.25 1.46-.65l2.38 2.38zM10 15H8v-3h2zm9 .8L13.2 10H19zM8.2 5 5.7 2.5c.35-.31.8-.5 1.3-.5h10a2 2 0 0 1 2 2v5h-6.8L10 6.8V5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fridge-outline.svg�������������������������0000664�0000000�0000000�00000000323�14753064456�0027043�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 21v1H7v-1a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v15a2 2 0 0 1-2 2v1h-2v-1zM7 4v5h10V4zm0 15h10v-8H7zm1-7h2v3H8zm0-6h2v2H8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fridge-top.svg�����������������������������0000664�0000000�0000000�00000000306�14753064456�0026167�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 8V6h2v2zM7 2h10a2 2 0 0 1 2 2v15a2 2 0 0 1-2 2v1h-2v-1H9v1H7v-1a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m0 2v5h10V4zm1 8v3h2v-3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fridge-variant-alert-outline.svg�����������0000664�0000000�0000000�00000000341�14753064456�0031612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 2H5c-1.1 0-2 .9-2 2v15a2 2 0 0 0 2 2v1h2v-1h6v1h2v-1c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2M9 19H5v-5h3v-4H5V4h4zm6 0h-4V4h4zm4-4h2v2h-2zm2-8v6h-2V7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fridge-variant-alert.svg�������������������0000664�0000000�0000000�00000000336�14753064456�0030141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 4v15c0 1.11-.89 2-2 2v1h-2v-1h-2.5V2H15a2 2 0 0 1 2 2M5 2h4.5v19H7v1H5v-1a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2m3 8H5v4h3zm11-3v6h2V7zm0 10h2v-2h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fridge-variant-off-outline.svg�������������0000664�0000000�0000000�00000000475�14753064456�0031265�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.2 4 5.7 2.5c.35-.31.8-.5 1.3-.5h10a2 2 0 0 1 2 2v11.8l-2-2V4h-4v5.8l-2-2V4zm14.91 17.46-1.27 1.27-2.38-2.38c-.36.4-.88.65-1.46.65v1h-2v-1H9v1H7v-1a2 2 0 0 1-2-2V6.89L1.11 3l1.28-1.27zM7 10h1.11L7 8.89zm4 2.89-1-1V14H7v5h4zm6 6-4-4V19h4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fridge-variant-off.svg���������������������0000664�0000000�0000000�00000000453�14753064456�0027604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.39 1.73 1.11 3 5 6.89V19a2 2 0 0 0 2 2v1h2v-1h2.5v-7.61l1 1V21H15v1h2v-1c.58 0 1.1-.25 1.46-.65l2.38 2.38 1.27-1.27zM10 14H7v-4h1.11L10 11.89zm9 1.8-6.5-6.5V2H17a2 2 0 0 1 2 2zm-7.5-7.5L5.7 2.5c.35-.31.8-.5 1.3-.5h4.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fridge-variant-outline.svg�����������������0000664�0000000�0000000�00000000313�14753064456�0030504�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 2H7c-1.1 0-2 .9-2 2v15a2 2 0 0 0 2 2v1h2v-1h6v1h2v-1c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2M7 19v-5h3v-4H7V4h4v15zm10 0h-4V4h4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fridge-variant.svg�������������������������0000664�0000000�0000000�00000000304�14753064456�0027027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 4v15c0 1.11-.89 2-2 2v1h-2v-1h-2.5V2H17a2 2 0 0 1 2 2M7 2h4.5v19H9v1H7v-1a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2m3 8H7v4h3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fridge.svg���������������������������������0000664�0000000�0000000�00000000310�14753064456�0025362�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2h10a2 2 0 0 1 2 2v5H5V4a2 2 0 0 1 2-2m12 17a2 2 0 0 1-2 2v1h-2v-1H9v1H7v-1a2 2 0 0 1-2-2v-9h14zM8 5v2h2V5zm0 7v3h2v-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fruit-cherries-off.svg���������������������0000664�0000000�0000000�00000001206�14753064456�0027632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l7.6 7.6c-.4 1-.8 1.9-1.1 2.4-2 .2-3.6 1.9-3.6 4 0 2.2 1.8 4 4 4 1.1 0 2-.4 2.7-1.1-.4-.9-.7-1.9-.7-2.9s.3-2 .7-2.9c-.4-.4-1-.7-1.5-.9.2-.4.4-.9.7-1.5l2.9 2.9c-.5.7-.8 1.5-.8 2.4 0 2.2 1.8 4 4 4 .9 0 1.7-.3 2.3-.8l2.5 2.5zM8 15.5c-.8 0-1.5.7-1.5 1.5h-1c0-1.4 1.1-2.5 2.5-2.5zm6.5 1.5h-1c0-.5.1-.9.3-1.3l.8.8c-.1.2-.1.3-.1.5m5.5-.2L16.2 13c2 .1 3.7 1.8 3.8 3.8m-8.7-8.7-1.2-1.2c.6-1.8 1.1-3.6 1.1-4.9l1.4-.1c.1.4.1.9.2 1.5.6-.1 2.7-.1 5 1.7 2.7 2 2 5.8 2 5.8s-2.4.4-5.1-1.7l-.9-.9c.3 1.2.7 2.4 1.1 3.4l-2.3-2.3c-.3-1-.5-2-.7-3-.2.6-.4 1.2-.6 1.7"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fruit-cherries.svg�������������������������0000664�0000000�0000000�00000001021�14753064456�0027055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 13h-.5c-.7-1.3-1.2-3-1.7-4.7l.9.9c2.7 2.1 5.1 1.7 5.1 1.7s.7-3.8-2-5.8c-2.3-1.8-4.4-1.8-5-1.7-.1-.6-.1-1.1-.2-1.5l-1.4.1c0 3.2-2.7 9.1-3.6 11-2 .2-3.6 1.9-3.6 4 0 2.2 1.8 4 4 4 1.1 0 2-.4 2.7-1.1-.4-.9-.7-1.9-.7-2.9s.3-2 .7-2.9c-.4-.4-1-.7-1.5-.9.7-1.5 1.9-4.2 2.7-6.8.4 2.3 1.2 5 2.2 7.1-1.2.7-2.1 2-2.1 3.5 0 2.2 1.8 4 4 4s4-1.8 4-4-1.8-4-4-4m-8 2.5c-.8 0-1.5.7-1.5 1.5h-1c0-1.4 1.1-2.5 2.5-2.5zm8 0c-.8 0-1.5.7-1.5 1.5h-1c0-1.4 1.1-2.5 2.5-2.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fruit-citrus-off.svg�����������������������0000664�0000000�0000000�00000001257�14753064456�0027345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l3.3 3.3c-1 1.2-1.5 2.6-1.6 3.9-.7.5-1 1.3-.7 2.1s1.1 1.3 1.9 1.3c1.1 1.3 2.9 2.1 5 2.3.1-1.4.6-2.6 1.3-3.7l1.5 1.5c-.5.8-.8 1.8-.8 2.8 0 3 2.5 5.5 5.5 5.5 1 0 2-.3 2.8-.8l1.5 1.5zm-9.1-5c0-.5.1-.9.3-1.4l1.7 1.7-1.7 1.2q-.3-.75-.3-1.5m.9 2.3 1.8-1.2.3.3V20c-.8-.2-1.6-.6-2.1-1.2m3.1 1.1v-1l.8.8c-.3.1-.5.2-.8.2m3-3.1v-.3q0-.75-.3-1.5l-.9.6-.7-.7 1-.7c-.5-.6-1.3-1-2.1-1.2v.8l-2.4-2.4c.6-.2 1.3-.4 1.9-.4 3 0 5.5 2.5 5.5 5.5 0 .7-.1 1.3-.4 1.9zm-7-7L7.1 3.9c.8-.5 1.7-.9 2.6-1.2C13.8 1.3 18 2.1 20 4.4c.8 0 1.6.5 1.9 1.3s0 1.6-.7 2.1q0 1.2-.6 2.4C19.4 9.5 18 9 16.5 9c-1.2 0-2.4.3-3.5.8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fruit-citrus.svg���������������������������0000664�0000000�0000000�00000001111�14753064456�0026562�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 15.9c-2.1-.2-3.9-1-5-2.3-.8 0-1.6-.5-1.9-1.3s0-1.6.7-2.1c.1-3 2.8-6.1 6.9-7.5S18 2.1 20 4.4c.8 0 1.6.5 1.9 1.3s0 1.6-.7 2.1q0 1.2-.6 2.4C19.4 9.5 18 9 16.5 9c-3.9 0-7.2 3-7.5 6.9m13 .6c0 3-2.5 5.5-5.5 5.5S11 19.5 11 16.5s2.5-5.5 5.5-5.5 5.5 2.5 5.5 5.5M13.3 18l2.3-1.5-2.3-1.5q-.3.75-.3 1.5c0 .75.1 1 .3 1.5m2.7-.6-2.1 1.4c.5.6 1.3 1 2.1 1.2zm0-4.3c-.8.1-1.6.5-2.1 1.2l2.1 1.4zm1 2.5 2.1-1.4c-.5-.6-1.3-1-2.1-1.2zm2.1 3.2L17 17.4v2.5c.8-.1 1.6-.5 2.1-1.1m.9-2.3q0-.75-.3-1.5l-2.3 1.5 2.3 1.5q.3-.75.3-1.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fruit-grapes-outline.svg�������������������0000664�0000000�0000000�00000002121�14753064456�0030211�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 12c0-1.39-.95-2.53-2.22-2.88A2.996 2.996 0 0 0 14 5c-.43 0-.83.1-1.19.26.19-1.07.58-2.67 1.59-3.06L13.6 1c-1.7.77-2.2 3.09-2.34 4.29C10.87 5.11 10.45 5 10 5a2.996 2.996 0 0 0-2.78 4.12C5.94 9.46 5 10.62 5 12c0 1.39.95 2.54 2.23 2.88-.14.34-.23.72-.23 1.12 0 1.39.94 2.54 2.22 2.88A2.996 2.996 0 0 0 12 23a2.996 2.996 0 0 0 2.78-4.12A2.974 2.974 0 0 0 17 16c0-.4-.08-.77-.23-1.12A2.98 2.98 0 0 0 19 12m-2.69-2.12v.02h-.01zM14 6.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5m-.5 5.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5M10 6.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5S8.5 8.83 8.5 8s.67-1.5 1.5-1.5M6.5 12c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5m2 4c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5m3.5 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5m2-4c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5m2-4c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fruit-grapes.svg���������������������������0000664�0000000�0000000�00000001016�14753064456�0026536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 12c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2m-7-2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m10 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m-2.5-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m-5 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m5 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m-5 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m2.5 4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m2.4-15.8L13.6 1c-2.2 1-2.4 4.6-2.4 5h1.5c.1-.8.4-3.3 1.7-3.8"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fruit-pear.svg�����������������������������0000664�0000000�0000000�00000000475�14753064456�0026214�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 16c0 3.31-2.69 6-6 6s-6-2.69-6-6c0-3 2-3 2-6 0-1.44.75-2.78 2-3.5.4-.23.82-.38 1.25-.46V5c0-.37-.08-.58-.22-.72C10.9 4.14 10.63 4 10 4V2.5c.88 0 1.6.23 2.09.72s.66 1.16.66 1.78v1.04c.43.08.86.23 1.25.46 1.25.72 2 2.06 2 3.5 0 3 2 3 2 6"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fruit-pineapple.svg������������������������0000664�0000000�0000000�00000001217�14753064456�0027235�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.4 7.7C16.4 6.4 19 7 19 7c-1.8-2.4-3.9-2.3-5.4-1.8V5c1.1-1.6 3.3-1.5 3.3-1.5-1.6-1.4-3-1-3.9-.5-.5-1.2-1-2-1-2-.4.7-.7 1.4-1 2.1-.9-.6-2.4-1-4 .4 0 0 2.3 0 3.4 1.7C8.9 4.7 6.8 4.6 5 7c0 0 2.6-.6 4.6.7C7.5 8.9 6 11.7 6 15c0 4.4 2.7 8 6 8s6-3.6 6-8c0-3.3-1.5-6.1-3.6-7.3m1.4 9.1c-.1.4-.2.8-.4 1.2L14 16l-1.5 2 1.6 2.1c-.3.2-.5.4-.8.6L12 19l-1.3 1.7c-.3-.1-.6-.3-.8-.6l1.6-2.1-1.5-2-1.5 1.9c-.1-.4-.3-.8-.4-1.2L9.5 15l-1.3-1.8c.1-.4.2-.8.4-1.2l1.4 2 1.5-2-1.6-2.1c.3-.2.5-.4.8-.6L12 11l1.3-1.7c.3.1.6.3.8.6L12.5 12l1.5 2 1.5-1.9c.1.4.3.8.4 1.2L14.5 15zM12 13l1.5 2-1.5 2-1.5-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fruit-watermelon.svg�����������������������0000664�0000000�0000000�00000000743�14753064456�0027440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.4 16.4c3.4-3.4 3.4-8.9 0-12.2L4.2 16.4c3.3 3.4 8.8 3.4 12.2 0M16 7c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1m0 4c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1m-4 0c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1m0 4c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1m-4 2c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1m10.6 1.6c-4.6 4.6-12 4.6-16.6 0l1.4-1.4c3.8 3.8 9.9 3.8 13.7 0s3.8-9.9 0-13.7L18.6 2c4.5 4.6 4.5 12 0 16.6"/></svg>�����������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fuel-cell.svg������������������������������0000664�0000000�0000000�00000000447�14753064456�0026005�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 3v2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2v1c0 1.1.9 2 2 2h1c1.1 0 2-.9 2-2v-1h6v1c0 1.1.9 2 2 2h1c1.1 0 2-.9 2-2v-1c1.1 0 2-.9 2-2H11V5H8V3zm10 0v2h-3v2h9c0-1.1-.9-2-2-2h-2V3zM7 7v4h2l-3 6v-4H4zm6 2v2h9V9zm0 4v2h9v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fuel.svg�����������������������������������0000664�0000000�0000000�00000000556�14753064456�0025071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 2h3c.28 0 .53.11.71.29l2.08 2.09.8-.79C10 3.2 10.5 3 11 3h6c.5 0 1 .2 1.41.59l1 1C19.8 5 20 5.5 20 6v13a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V8c0-.5.2-1 .59-1.41l.79-.8L5.59 4H3zm8 3v2h6V5zm.41 6-2-2H8v1.41l2 2v3.18l-2 2V19h1.41l2-2h3.18l2 2H18v-1.41l-2-2v-3.18l2-2V9h-1.41l-2 2zm.59 2h2v2h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fullscreen-exit.svg������������������������0000664�0000000�0000000�00000000222�14753064456�0027235�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 14h5v2h-3v3h-2zm-9 0h5v5H8v-3H5zm3-9h2v5H5V8h3zm11 3v2h-5V5h2v3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fullscreen.svg�����������������������������0000664�0000000�0000000�00000000220�14753064456�0026264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 5h5v2H7v3H5zm9 0h5v5h-2V7h-3zm3 9h2v5h-5v-2h3zm-7 3v2H5v-5h2v3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/function-variant.svg�����������������������0000664�0000000�0000000�00000000715�14753064456�0027422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.42 5.29c-1.1-.1-2.07.71-2.17 1.82L10 10h2.82v2h-3l-.44 5.07A4.001 4.001 0 0 1 2 18.83l1.5-1.5c.33 1.05 1.46 1.64 2.5 1.3.78-.24 1.33-.93 1.4-1.74L7.82 12h-3v-2H8l.27-3.07a4.01 4.01 0 0 1 4.33-3.65c1.26.11 2.4.81 3.06 1.89l-1.5 1.5c-.25-.77-.93-1.31-1.74-1.38M22 13.65l-1.41-1.41-2.83 2.83-2.83-2.83-1.43 1.41 2.85 2.85-2.85 2.81 1.43 1.41 2.83-2.83 2.83 2.83L22 19.31l-2.83-2.81z"/></svg>���������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/function.svg�������������������������������0000664�0000000�0000000�00000000551�14753064456�0025756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.6 5.29c-1.1-.1-2.07.71-2.17 1.82L13.18 10H16v2h-3l-.44 5.07a3.986 3.986 0 0 1-4.33 3.63 4 4 0 0 1-3.06-1.87l1.5-1.5c.24.74.9 1.31 1.73 1.38 1.1.1 2.07-.71 2.17-1.82L11 12H8v-2h3.17l.27-3.07c.19-2.2 2.13-3.83 4.33-3.63 1.31.11 2.41.84 3.06 1.87l-1.5 1.5c-.24-.74-.9-1.31-1.73-1.38"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/furigana-horizontal.svg��������������������0000664�0000000�0000000�00000000612�14753064456�0030112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.5 2a2.5 2.5 0 0 0 0 5 2.5 2.5 0 0 0 0-5m7 0a2.5 2.5 0 0 0 0 5 2.5 2.5 0 0 0 0-5M11 8v2H5v2h9.95c-.42 1.13-1.45 2.5-2.79 3.67-1.04-.93-1.81-1.85-2.34-2.67H7.5c.58 1.25 1.63 2.62 3.12 3.96l-4.07 3.26-.79.62L7 22.41l.8-.63 4.37-3.5 4.38 3.5.78.63 1.25-1.57-.78-.62-4.07-3.25c1.61-1.47 2.97-3.12 3.34-4.97H19v-2h-6V8z"/></svg>����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/furigana-vertical.svg����������������������0000664�0000000�0000000�00000000614�14753064456�0027534�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 5v2H2v2h9.95c-.42 1.13-1.45 2.5-2.79 3.67-1.04-.93-1.81-1.85-2.34-2.67H4.5c.58 1.25 1.63 2.62 3.12 3.96l-4.07 3.26-.79.62L4 19.41l.8-.63 4.37-3.5 4.38 3.5.78.63 1.25-1.57-.78-.62-4.07-3.25c1.61-1.47 2.97-3.12 3.34-4.97H16V7h-6V5zm11.5 1a2.5 2.5 0 0 0 0 5 2.5 2.5 0 0 0 0-5m-.03 7a2.5 2.5 0 0 0 0 5 2.5 2.5 0 0 0 0-5"/></svg>��������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fuse-alert.svg�����������������������������0000664�0000000�0000000�00000000361�14753064456�0026177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 7v10h7V7zm3.16 9v-3.13H7.41L9.91 8v3.14h1.68zM14 2v4H5V2c0-.55.45-1 1-1h7c.55 0 1 .45 1 1m0 16v4c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-4zm5-5h-2V7h2zm0 4h-2v-2h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fuse-blade.svg�����������������������������0000664�0000000�0000000�00000000336�14753064456�0026141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 21H8l-2-2v-3h4zm8-5h-4v5h2l2-2zM3 3v1a1 1 0 0 0 1 1v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V5a1 1 0 0 0 1-1V3zm8.83 10V9.73H10l2.61-5.07v3.27h1.75z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fuse-off.svg�������������������������������0000664�0000000�0000000�00000000367�14753064456�0025650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 11.8 10.2 7H15zM16 6V2c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v1.8L9.2 6zM2.39 1.73 1.11 3 8 9.89V17h7.11l5.73 5.73 1.27-1.27zM7 22c0 .55.45 1 1 1h7c.55 0 1-.45 1-1v-4H7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/fuse.svg�����������������������������������0000664�0000000�0000000�00000000321�14753064456�0025066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 7v10h7V7zm3.16 9v-3.13H9.41L11.91 8v3.14h1.68zM16 2v4H7V2a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1m0 16v4a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1v-4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gamepad-circle-down.svg��������������������0000664�0000000�0000000�00000000766�14753064456�0027743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 8a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m7-7a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 14a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m7-7a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m-7-5a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m-7 7a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m14 0a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/material/gamepad-circle-left.svg��������������������0000664�0000000�0000000�00000000765�14753064456�0027725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 8a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m7-7a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 14a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m7-7a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m-7 7a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m0-14a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>�����������mkdocs-material-9.6.4/material/templates/.icons/material/gamepad-circle-outline.svg�����������������0000664�0000000�0000000�00000001057�14753064456�0030445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 8a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m7-9a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m0 12a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m7-9a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gamepad-circle-right.svg�������������������0000664�0000000�0000000�00000000765�14753064456�0030110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 8a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m7-7a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 14a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m7-7a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m-7-5a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m-7 7a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m7 7a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>�����������mkdocs-material-9.6.4/material/templates/.icons/material/gamepad-circle-up.svg����������������������0000664�0000000�0000000�00000000766�14753064456�0027420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 8a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m7-7a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 14a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m7-7a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4M5 10a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m14 0a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m-7 7a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/material/gamepad-circle.svg�������������������������0000664�0000000�0000000�00000000477�14753064456�0026775�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 8a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m7-7a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 14a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m7-7a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gamepad-down.svg���������������������������0000664�0000000�0000000�00000000257�14753064456�0026477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 2v5.5l3 3 3-3V2zM2 9v6h5.5l3-3-3-3zm14.5 0-3 3 3 3H22V9zM12 13.5l-3 3V22h6v-5.5zM11 18h2v2h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gamepad-left.svg���������������������������0000664�0000000�0000000�00000000252�14753064456�0026455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 2v5.5l3 3 3-3V2zM2 9v6h5.5l3-3-3-3zm14.5 0-3 3 3 3H22V9zM4 11h2v2H4zm8 2.5-3 3V22h6v-5.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gamepad-outline.svg������������������������0000664�0000000�0000000�00000000330�14753064456�0027177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 9H2v6h5.5l3-3zM6 13H4v-2h2zm9-5.5V2H9v5.5l3 3zM11 4h2v2h-2zM9 16.5V22h6v-5.5l-3-3zm4 3.5h-2v-2h2zm3.5-11-3 3 3 3H22V9zm3.5 4h-2v-2h2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gamepad-right.svg��������������������������0000664�0000000�0000000�00000000255�14753064456�0026643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 2v5.5l3 3 3-3V2zM2 9v6h5.5l3-3-3-3zm14.5 0-3 3 3 3H22V9zm1.5 2h2v2h-2zm-6 2.5-3 3V22h6v-5.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gamepad-round-down.svg���������������������0000664�0000000�0000000�00000000352�14753064456�0027620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 8h4V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v4h4a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-4v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-4H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2m6 8v4h4v-4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gamepad-round-left.svg���������������������0000664�0000000�0000000�00000000352�14753064456�0027603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 8h4V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v4h4a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-4v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-4H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2m0 2v4h4v-4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gamepad-round-outline.svg������������������0000664�0000000�0000000�00000000375�14753064456�0030335�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 8h4V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v4h4a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-4v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-4H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2m0 2v4h6v6h4v-6h6v-4h-6V4h-4v6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gamepad-round-right.svg��������������������0000664�0000000�0000000�00000000353�14753064456�0027767�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 8h4V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v4h4a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-4v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-4H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2m12 2v4h4v-4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gamepad-round-up.svg�����������������������0000664�0000000�0000000�00000000351�14753064456�0027274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 8h4V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v4h4a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-4v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-4H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2m6-4v4h4V4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gamepad-round.svg��������������������������0000664�0000000�0000000�00000000336�14753064456�0026655�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 8h4V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v4h4a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-4v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-4H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gamepad-square-outline.svg�����������������0000664�0000000�0000000�00000000566�14753064456�0030510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 6H3a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2m0 10H3V8h18M6 15h2v-2h2v-2H8V9H6v2H4v2h2m8.5-1a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5m4-3a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5A1.5 1.5 0 0 1 18.5 9"/></svg>������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gamepad-square.svg�������������������������0000664�0000000�0000000�00000000553�14753064456�0027027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 6H3a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2m-10 7H8v3H6v-3H3v-2h3V8h2v3h3m4.5 4a1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5 1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5m4-3a1.5 1.5 0 0 1-1.5-1.5A1.5 1.5 0 0 1 19.5 9a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gamepad-up.svg�����������������������������0000664�0000000�0000000�00000000255�14753064456�0026152�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 2v5.5l3 3 3-3V2zm2 2h2v2h-2zM2 9v6h5.5l3-3-3-3zm14.5 0-3 3 3 3H22V9zM12 13.5l-3 3V22h6v-5.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gamepad-variant-outline.svg����������������0000664�0000000�0000000�00000000766�14753064456�0030656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 9h2v2h2v2H8v2H6v-2H4v-2h2zm12.5 0a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5A1.5 1.5 0 0 1 18.5 9m-3 3a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5M17 5a7 7 0 0 1 7 7 7 7 0 0 1-7 7c-1.96 0-3.73-.8-5-2.1A6.96 6.96 0 0 1 7 19a7 7 0 0 1-7-7 7 7 0 0 1 7-7zM7 7a5 5 0 0 0-5 5 5 5 0 0 0 5 5c1.64 0 3.09-.79 4-2h2c.91 1.21 2.36 2 4 2a5 5 0 0 0 5-5 5 5 0 0 0-5-5z"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/material/gamepad-variant.svg������������������������0000664�0000000�0000000�00000000631�14753064456�0027170�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 6h10a6 6 0 0 1 6 6 6 6 0 0 1-6 6c-1.78 0-3.37-.77-4.47-2h-1.06c-1.1 1.23-2.69 2-4.47 2a6 6 0 0 1-6-6 6 6 0 0 1 6-6M6 9v2H4v2h2v2h2v-2h2v-2H8V9zm9.5 3a1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5m3-3a1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5A1.5 1.5 0 0 0 18.5 9"/></svg>�������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gamepad.svg��������������������������������0000664�0000000�0000000�00000000236�14753064456�0025527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.5 9-3 3 3 3H22V9M9 16.5V22h6v-5.5l-3-3M7.5 9H2v6h5.5l3-3M15 7.5V2H9v5.5l3 3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gamma.svg����������������������������������0000664�0000000�0000000�00000000520�14753064456�0025207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.76 19c1.16 0 1.82-1 1.82-2.71 0-1.09-.08-2.41-.28-3.62L18 5h-2.72l-2.57 4.82-.16-.49C11.83 7.19 10.82 5 8.68 5 8 5 7.45 5.18 7 5.54 6 6.39 6 8 6 8.5h.91c.06-.44.3-1.67 1.34-1.67 1.75 0 2.55 3.17 3.15 5.59-.9 2.16-1.4 3.72-1.4 4.55 0 .98.56 2.03 1.76 2.03"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gantry-crane.svg���������������������������0000664�0000000�0000000�00000001222�14753064456�0026517�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 6h1V4h-1V3h-3v1H6V3H3v1H2v2h1v14H2v2h5v-2H6V6h5v1h.5v3.62c-.5.17-.81.63-.81 1.14 0 .44.23.84.61 1.06V14h.62c.34 0 .62.27.63.61 0 .35-.27.63-.62.63a.63.63 0 0 1-.54-.31.618.618 0 0 0-1.07.62c.33.57.94.92 1.6.92 1.02-.01 1.84-.85 1.83-1.87-.01-.77-.49-1.46-1.22-1.72v-.06c.59-.32.81-1.04.5-1.62-.11-.2-.29-.39-.5-.5V7H13V6h5v14h-1v2h5v-2h-1zM5 15.29v1.42l-1 1v-1.42zM4 20v-.76l1-1v1.42l-.34.34zM4 7.29l1-1v1.42l-1 1zm0 3 1-1v1.42l-1 1zm0 3 1-1v1.42l-1 1v-1.47zm16 2v1.42l-1 1v-1.42zM19 20v-.76l1-1v1.42l-.34.34zm0-12.71 1-1v1.42l-1 1zm0 3 1-1v1.42l-1 1zm0 3 1-1v1.42l-1 1v-1.47z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/garage-alert-variant.svg�������������������0000664�0000000�0000000�00000000233�14753064456�0030123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 9v11h-2v-9H2v9H0V9l10-4zm-3 3H3v2h14zm0 3H3v2h14zm5 0v-5h2v5zm0 4v-2h2v2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/garage-alert.svg���������������������������0000664�0000000�0000000�00000000233�14753064456�0026461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 20h-2v-9H5v9H3V9l7-4 7 4zM6 12h8v2H6zm0 3h8v2H6zm13 0v-5h2v5zm0 4v-2h2v2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/garage-lock.svg����������������������������0000664�0000000�0000000�00000000575�14753064456�0026313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.8 16v-1.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V16c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3m-1.3 0h-3v-1.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3zM5 12h8v2H5zm0 3h7.95c-.53.54-.87 1.24-.95 2H5zm7 5H5v-2h7zm2-9H4v9H2V9l7-4 7 4v1.44c-.81.36-1.5.92-2 1.62z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/garage-open-variant.svg��������������������0000664�0000000�0000000�00000000167�14753064456�0027763�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 9v11h-2v-9H4v9H2V9l10-4zm-3 3H5v2h14z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/garage-open.svg����������������������������0000664�0000000�0000000�00000000167�14753064456�0026321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 20h-2v-9H7v9H5V9l7-4 7 4zM8 12h8v2H8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/garage-variant-lock.svg��������������������0000664�0000000�0000000�00000000662�14753064456�0027752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.8 16v-1.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V16c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3m-1.3 0h-3v-1.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3zM5 12h10.04c-.43.59-.69 1.27-.78 2H5zm11.06-1H4v9H2V9l10-4 10 4v2.04A4.9 4.9 0 0 0 19 10c-1.1 0-2.12.39-2.94 1M13 20H5v-2h8zm-8-5h8.95c-.53.54-.87 1.24-.95 2H5z"/></svg>������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/garage-variant.svg�������������������������0000664�0000000�0000000�00000000217�14753064456�0027020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 9v11h-2v-9H4v9H2V9l10-4zm-3 3H5v2h14zm0 6H5v2h14zm0-3H5v2h14z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/garage.svg���������������������������������0000664�0000000�0000000�00000000216�14753064456�0025355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 20h-2v-9H7v9H5V9l7-4 7 4zM8 12h8v2H8zm0 3h8v2H8zm8 3v2H8v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gas-burner.svg�����������������������������0000664�0000000�0000000�00000001450�14753064456�0026175�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.14 8.79-.02.01c.23.27.43.59.58.92l.09.19c.71 1.69.21 3.64-1.1 4.86-1.19 1.09-2.85 1.38-4.39 1.18-1.46-.18-2.8-1.1-3.57-2.37-.23-.39-.43-.83-.53-1.28-.13-.37-.17-.73-.2-1.1-.09-1.6.55-3.3 1.76-4.3-.55 1.21-.42 2.72.39 3.77l.11.13c.14.12.31.16.47.09.15-.06.27-.21.27-.39l-.07-.22c-.88-2.32-.14-5.03 1.73-6.56.51-.42 1.14-.8 1.8-.97-.68 1.36-.46 3.14.63 4.21.46.47 1.01.78 1.49 1.22zm-2.28 4.64-.01-.01c.45-.39.7-1.06.68-1.66l-.03-.32c-.2-1-1.07-1.33-1.63-2.06-.17-.22-.32-.5-.43-.78-.22.5-.24.97-.15 1.51.1.57.33 1.06.21 1.65-.16.65-.67 1.3-1.56 1.51.5.49 1.31.88 2.12.6.26-.07.59-.26.8-.44M11 18v1c0 .55.45 1 1 1s1-.45 1-1v-1h2v1c0 .55.45 1 1 1s1-.45 1-1v-1c1.11 0 3 .9 3 2v2H4v-2c0-1.1 1.9-2 3-2v1c0 .55.45 1 1 1s1-.45 1-1v-1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gas-cylinder.svg���������������������������0000664�0000000�0000000�00000000267�14753064456�0026516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 9v11a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V9c0-1.86 1.27-3.43 3-3.87V4H9V2h6v2h-2v1.13c1.73.44 3 2.01 3 3.87"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gas-station-in-use-outline.svg�������������0000664�0000000�0000000�00000000624�14753064456�0031236�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.73 6.73c-.45.45-.73 1.08-.73 1.77v10a1 1 0 0 1-2 0V14a2 2 0 0 0-2-2h-1V5a2 2 0 0 0-2-2H4c-1.11 0-2 .89-2 2v16h10v-7.5h1.5v5a2.5 2.5 0 0 0 5 0v-7.71c.31.13.64.21 1 .21A2.5 2.5 0 0 0 22 8.5c0-1.07-.67-2-1.61-2.33l2.11-2.11L21.44 3l-3.72 3.72zM4 10V5h6v5zm16.207-.793a1 1 0 1 1-1.414-1.414 1 1 0 0 1 1.414 1.414M10 12v7H4v-7z"/></svg>������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gas-station-in-use.svg���������������������0000664�0000000�0000000�00000001242�14753064456�0027556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 18.5v-10c0-.69.28-1.32.73-1.77l-.01-.01L21.44 3l1.06 1.06-2.11 2.11C21.33 6.5 22 7.43 22 8.5c0 .33-.06.65-.19.96-.13.3-.31.58-.54.81a2.505 2.505 0 0 1-2.77.52v7.71c0 .33-.07.65-.19.96-.13.3-.31.58-.54.81s-.51.42-.81.54a2.505 2.505 0 0 1-2.73-.54c-.47-.47-.73-1.11-.73-1.77v-5H12V21H2V5c0-1.11.89-2 2-2h6a2 2 0 0 1 2 2v7h1a2 2 0 0 1 2 2v4.5c0 .27.11.5.29.71.21.19.45.29.71.29.27 0 .5-.1.71-.29.19-.21.29-.44.29-.71M10 10V5H4v5zm9.5-.5c.27 0 .5-.1.71-.29.19-.21.29-.44.29-.71 0-.26-.1-.5-.29-.71-.21-.18-.44-.29-.71-.29-.26 0-.5.11-.71.29-.18.21-.29.45-.29.71 0 .27.11.5.29.71.21.19.45.29.71.29"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gas-station-off-outline.svg����������������0000664�0000000�0000000�00000000766�14753064456�0030617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 4.27 2.28 3 6 6.72l15 15L19.73 23l-2.01-2a2.57 2.57 0 0 1-2.22-2.22L14 17.27V21H4V7.27zm18.77 2.96c.45.45.73 1.08.73 1.77v9.67L19 17.18v-5.89c-.31.13-.64.21-1 .21A2.5 2.5 0 0 1 15.5 9c0-1.07.67-1.97 1.61-2.33L15 4.56l1.06-1.06 3.72 3.72zM11.82 10H12V5H6.82L5.06 3.24c.28-.15.6-.24.94-.24h6c1.1 0 2 .9 2 2v7h1c1.1 0 2 .9 2 2v1.18zM6 10h.73L6 9.27zm0 2v7h6v-3.73L8.73 12zm12-2c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/material/gas-station-off.svg������������������������0000664�0000000�0000000�00000000734�14753064456�0027135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 4.27 2.28 3 21 21.72 19.73 23l-2.02-2a2.57 2.57 0 0 1-2.21-2.22L14 17.27V21H4V7.27zM18 10c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1m-6 0V5H6.82L5.06 3.23c.28-.15.6-.23.94-.23h6a2 2 0 0 1 2 2v7h1a2 2 0 0 1 2 2v1.18L11.82 10zm-6 0h.73L6 9.27zm13.77-2.77c.45.45.73 1.08.73 1.77v9.67L19 17.18v-5.89c-.31.13-.64.21-1 .21A2.5 2.5 0 0 1 15.5 9c0-1.07.67-1.97 1.61-2.33L15 4.56l1.06-1.06 3.72 3.72z"/></svg>������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gas-station-outline.svg��������������������0000664�0000000�0000000�00000000710�14753064456�0030034�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.77 7.23.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33a2.5 2.5 0 0 0 2.5 2.5c.36 0 .69-.08 1-.21v7.21a1 1 0 0 1-1 1 1 1 0 0 1-1-1V14a2 2 0 0 0-2-2h-1V5a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v16h10v-7.5h1.5v5A2.5 2.5 0 0 0 18 21a2.5 2.5 0 0 0 2.5-2.5V9c0-.69-.28-1.32-.73-1.77M12 13.5V19H6v-7h6zm0-3.5H6V5h6zm6 0a1 1 0 0 1-1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1 1 1 0 0 1-1 1"/></svg>��������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gas-station.svg����������������������������0000664�0000000�0000000�00000000665�14753064456�0026370�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 10a1 1 0 0 1-1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1 1 1 0 0 1-1 1m-6 0H6V5h6m7.77 2.23.01-.01-3.72-3.72L15 4.56l2.11 2.11C16.17 7 15.5 7.93 15.5 9a2.5 2.5 0 0 0 2.5 2.5c.36 0 .69-.08 1-.21v7.21a1 1 0 0 1-1 1 1 1 0 0 1-1-1V14a2 2 0 0 0-2-2h-1V5a2 2 0 0 0-2-2H6c-1.11 0-2 .89-2 2v16h10v-7.5h1.5v5A2.5 2.5 0 0 0 18 21a2.5 2.5 0 0 0 2.5-2.5V9c0-.69-.28-1.32-.73-1.77"/></svg>���������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gate-alert.svg�����������������������������0000664�0000000�0000000�00000000346�14753064456�0026160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 17h-2v2h2zm0-8h-2v6h2zm-4 4v-2h-2V6h-2v5h-2V6H9v5H7V7H5v4H3V9H1v12h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v-2h-2v-4zM5 17H3v-4h2zm4 0H7v-4h2zm4 0h-2v-4h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gate-and.svg�������������������������������0000664�0000000�0000000�00000000233�14753064456�0025606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4v16h12a8 8 0 0 0 8-8 8 8 0 0 0-8-8zm2 2h10a6 6 0 0 1 6 6 6 6 0 0 1-6 6H4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gate-arrow-left.svg������������������������0000664�0000000�0000000�00000000422�14753064456�0027126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 6H7v5H5V6H3v5H2v2h1v1.81c.62-.36 1.3-.6 2-.72V13h2v1.09c.7.12 1.38.36 2 .72V13h2v3.69c.65.98 1 2.13 1 3.31 0 .34-.03.67-.09 1H13v-2h2v2h2V9h-2v2h-2V7h-2v4H9zm6 7v4h-2v-4zM2 20l3 3v-2h4v-2H5v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gate-arrow-right.svg�����������������������0000664�0000000�0000000�00000000431�14753064456�0027311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 6v5h-2V7h-2v4H9V9H7v12h2v-2h2v2h1.09c-.06-.33-.09-.66-.09-1 0-1.18.35-2.33 1-3.31V13h2v1.81c.62-.36 1.3-.6 2-.72V13h2v1.09c.7.12 1.38.36 2 .72V13h1v-2h-1V6h-2v5h-2V6zm-6 7h2v4H9zm10 4v2h-4v2h4v2l3-3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gate-buffer.svg����������������������������0000664�0000000�0000000�00000000164�14753064456�0026320�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 7.24 15.53 12 6 16.76zM4 4v16l16-8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gate-nand.svg������������������������������0000664�0000000�0000000�00000000441�14753064456�0025765�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4v16h8c3.43 0 6.5-2.16 7.6-5.4.4.2.9.4 1.4.4a3 3 0 0 0 3-3 3 3 0 0 0-3-3c-.5 0-.97.15-1.4.4C16.5 6.16 13.43 4 10 4zm2 2h6a6 6 0 0 1 6 6 6 6 0 0 1-6 6H4zm15 5c.5 0 1 .5 1 1s-.5 1-1 1a1 1 0 0 1-1-1c0-.5.5-1 1-1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gate-nor.svg�������������������������������0000664�0000000�0000000�00000000500�14753064456�0025637�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4c3 6 3 10 0 16h3c4.4 0 8-2.3 11.6-6.3.55.8 1.44 1.3 2.4 1.3a3 3 0 0 0 3-3 3 3 0 0 0-3-3c-.96 0-1.85.5-2.4 1.3C13 6.3 9.4 4 5 4zm3 2c3.8 0 7 2.1 10.3 6C12 15.9 8.8 18 5 18q2.25-6 0-12m14 5c.5 0 1 .5 1 1s-.5 1-1 1a1 1 0 0 1-1-1c0-.5.5-1 1-1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gate-not.svg�������������������������������0000664�0000000�0000000�00000000364�14753064456�0025651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4v16l14.2-7c.42 1.19 1.54 2 2.8 2a3 3 0 0 0 3-3 3 3 0 0 0-3-3c-1.26 0-2.38.81-2.8 2zm2 3.3 9.7 4.7L4 16.7zM19 11c.5 0 1 .5 1 1s-.5 1-1 1a1 1 0 0 1-1-1c0-.5.5-1 1-1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gate-open.svg������������������������������0000664�0000000�0000000�00000000246�14753064456�0026011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 21V7H5v4H3V9H1v12h2v-2h2v2zm-4-4v-4h2v4zm18-8v2h-2V7h-2v14h2v-2h2v2h2V9zm0 8h-2v-4h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gate-or.svg��������������������������������0000664�0000000�0000000�00000000277�14753064456�0025474�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4c3 6 3 10 0 16h6c5 0 11-4 14-8-3-4-9-8-14-8zm3 2h3c3.5 0 8.3 3 11.3 6-3 3-7.8 6-11.3 6H5c1.4-4.1 1.4-7.9 0-12"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gate-xnor.svg������������������������������0000664�0000000�0000000�00000000530�14753064456�0026032�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4c3 6 3 10 0 16h2c3-6 3-10 .1-16zm4 0c3 6 3 10 0 16h3c3.2 0 5.8-3.2 7.7-6 .58.65 1.42 1 2.3 1a3 3 0 0 0 3-3 3 3 0 0 0-3-3c-.88 0-1.72.35-2.3 1-2-2.8-4.5-6-7.7-6zm3 2c3 0 5 4 6.5 6C14 14 12 18 9 18q2.4-6 0-12m10 5c.5 0 1 .5 1 1s-.5 1-1 1a1 1 0 0 1-1-1c0-.5.5-1 1-1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gate-xor.svg�������������������������������0000664�0000000�0000000�00000000331�14753064456�0025653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4c3 6 3 10 0 16h2c3-6 3-10 .1-16zm4 0c3 6 3 10 0 16h3c5 0 9-3 13-8-4-5-8-8-13-8zm3 2c3.8 0 7 2.1 10.3 6-3.4 3.9-6.5 6-10.3 6q2.25-6 0-12"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gate.svg�����������������������������������0000664�0000000�0000000�00000000360�14753064456�0025047�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 6v5H7V7H5v4H3V9H1v12h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2V9h-2v2h-2V7h-2v4h-2V6h-2v5h-2V6zm-6 7h2v4H3zm4 0h2v4H7zm4 0h2v4h-2zm4 0h2v4h-2zm4 0h2v4h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gatsby.svg���������������������������������0000664�0000000�0000000�00000000573�14753064456�0025426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2c-3.73 0-6.86 2.55-7.75 6L14 19.75c3.45-.89 6-4.02 6-7.75h-5.25v1.5h3.45a6.37 6.37 0 0 1-3.89 4.44L6.06 9.69C7 7.31 9.3 5.63 12 5.63c2.13 0 4 1.04 5.18 2.65l1.23-1.06A7.96 7.96 0 0 0 12 4m-8 8a8 8 0 0 0 8 8c.04 0 .09 0-8-8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gauge-empty.svg����������������������������0000664�0000000�0000000�00000001220�14753064456�0026347�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8c0 2.4 1 4.5 2.7 6 1.4-1.3 3.3-2 5.3-2s3.8.7 5.3 2c1.7-1.5 2.7-3.6 2.7-6a8 8 0 0 0-8-8m2 2a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m-4 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1M6.91 8.94c.13 0 .25.03.39.06l3.2 1.32.27.11c.56-.43 1.32-.55 1.98-.28 1.02.41 1.52 1.58 1.1 2.6a1.99 1.99 0 0 1-2.6 1.1c-.66-.26-1.13-.85-1.25-1.57l-.23-.1-3.22-1.3-.02-.01c-.53-.21-.76-.79-.56-1.31a1 1 0 0 1 .94-.62M17 9a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gauge-full.svg�����������������������������0000664�0000000�0000000�00000001212�14753064456�0026154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 2a8 8 0 0 1 8 8c0 2.4-1 4.5-2.7 6-1.4-1.3-3.3-2-5.3-2s-3.8.7-5.3 2C5 16.5 4 14.4 4 12a8 8 0 0 1 8-8m-2 2a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m4 0a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m3.09 2.94c-.13 0-.25.03-.39.06l-3.2 1.32-.27.11c-.56-.43-1.32-.55-1.98-.28a1.99 1.99 0 0 0-1.1 2.6 1.99 1.99 0 0 0 2.6 1.1c.66-.26 1.13-.85 1.25-1.57l.23-.1 3.22-1.3.02-.01c.53-.21.76-.79.56-1.31a1 1 0 0 0-.94-.62M7 9a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gauge-low.svg������������������������������0000664�0000000�0000000�00000001203�14753064456�0026013�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8c0 2.4 1 4.5 2.7 6 1.4-1.3 3.3-2 5.3-2s3.8.7 5.3 2c1.7-1.5 2.7-3.6 2.7-6a8 8 0 0 0-8-8m-2 1.89c.38.01.74.26.9.65l1.29 3.23.1.23c.71.13 1.3.6 1.57 1.26.41 1.03-.09 2.19-1.12 2.6s-2.19-.09-2.6-1.12c-.26-.66-.14-1.42.29-1.98l-.1-.26-1.29-3.21-.01-.03c-.2-.51.05-1.09.56-1.3.13-.05.26-.07.41-.07M14 6a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m3 3a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1M7 9a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gauge.svg����������������������������������0000664�0000000�0000000�00000001207�14753064456�0025220�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 2a8 8 0 0 1 8 8c0 2.4-1 4.5-2.7 6-1.4-1.3-3.3-2-5.3-2s-3.8.7-5.3 2C5 16.5 4 14.4 4 12a8 8 0 0 1 8-8m2 1.89c-.38.01-.74.26-.9.65l-1.29 3.23-.1.23c-.71.13-1.3.6-1.57 1.26-.41 1.03.09 2.19 1.12 2.6s2.19-.09 2.6-1.12c.26-.66.14-1.42-.29-1.98l.1-.26 1.29-3.21.01-.03c.2-.51-.05-1.09-.56-1.3-.13-.05-.26-.07-.41-.07M10 6a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1M7 9a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m10 0a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gavel.svg����������������������������������0000664�0000000�0000000�00000001027�14753064456�0025226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.3 20.28 9.6-9.6-1.4-1.42-.72.71a.996.996 0 0 1-1.41 0l-.71-.71a.996.996 0 0 1 0-1.41l5.66-5.66a.996.996 0 0 1 1.41 0l.71.71c.39.39.39 1.02 0 1.41l-.71.69 1.42 1.43a.996.996 0 0 1 1.41 0c.39.39.39 1.03 0 1.42l1.41 1.41.71-.71c.39-.39 1.03-.39 1.42 0l.7.71c.39.39.39 1.03 0 1.42l-5.65 5.65c-.39.39-1.03.39-1.42 0l-.7-.7a.99.99 0 0 1 0-1.42l.7-.71-1.41-1.41-9.61 9.61a.996.996 0 0 1-1.41 0c-.39-.39-.39-1.03 0-1.42M20 19a2 2 0 0 1 2 2v1H12v-1a2 2 0 0 1 2-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gender-female.svg��������������������������0000664�0000000�0000000�00000000372�14753064456�0026625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4a6 6 0 0 1 6 6c0 2.97-2.16 5.44-5 5.92V18h2v2h-2v2h-2v-2H9v-2h2v-2.08c-2.84-.48-5-2.95-5-5.92a6 6 0 0 1 6-6m0 2a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gender-male-female-variant.svg�������������0000664�0000000�0000000�00000000442�14753064456�0031201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 3a5 5 0 0 0 2 4 5 5 0 0 0-2 4 5 5 0 0 0 4 4.9V18H9v2h2v2h2v-2h2v-2h-2v-2.1a5 5 0 0 0 4-4.9 5 5 0 0 0-2-4 5 5 0 0 0 2-4h-2a3 3 0 0 1-3 3 3 3 0 0 1-3-3m3 5a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gender-male-female.svg���������������������0000664�0000000�0000000�00000000420�14753064456�0027533�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.58 4H14V2h7v7h-2V5.41l-3.83 3.83A5 5 0 0 1 12 16.9V19h2v2h-2v2h-2v-2H8v-2h2v-2.1A5 5 0 0 1 6 12a5 5 0 0 1 5-5c1 0 1.96.3 2.75.83zM11 9a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gender-male.svg����������������������������0000664�0000000�0000000�00000000413�14753064456�0026306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 9c1.29 0 2.5.41 3.47 1.11L17.58 5H13V3h8v8h-2V6.41l-5.11 5.09c.7 1 1.11 2.2 1.11 3.5a6 6 0 0 1-6 6 6 6 0 0 1-6-6 6 6 0 0 1 6-6m0 2a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gender-non-binary.svg����������������������0000664�0000000�0000000�00000000415�14753064456�0027446�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3h-2v2.27L9.04 4.13l-1 1.74L10 7 8.04 8.13l1 1.74L11 8.73v3.37a5 5 0 1 0 2 0V8.73l1.96 1.14 1-1.74L14 7l1.96-1.13-1-1.74L13 5.27zm-1 17c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gender-transgender.svg���������������������0000664�0000000�0000000�00000000603�14753064456�0027705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.58 3H15V1h8v8h-2V4.41l-4.83 4.83A5 5 0 0 1 13 16.9V19h2v2h-2v2h-2v-2H9v-2h2v-2.1a5 5 0 0 1-3.18-7.64L6.64 8.07l-1.4 1.39-1.41-1.42 1.4-1.39L3 4.42V8H1V1h7v2H4.41l2.23 2.24 1.44-1.43L9.5 5.23 8.06 6.66l1.17 1.18C10 7.31 11 7 12 7s1.96.3 2.75.83zM12 9a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/generator-mobile.svg�����������������������0000664�0000000�0000000�00000000545�14753064456�0027367�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2H2v17a2 2 0 0 0 2 2h8.1c-.07-.32-.1-.66-.1-1s.03-.68.1-1H4zm9 15c.91-1.21 2.36-2 4-2s3.09.79 4 2h1V6c0-1.11-.89-2-2-2H8a2 2 0 0 0-2 2v11zm7-11v2h-6V6zm-6 4h6v2h-6zm-7 1 3-6v4h2l-3 6v-4zm7.17 8a3 3 0 0 0-.17 1 3 3 0 0 0 3 3c1.66 0 3-1.34 3-3s-1.34-3-3-3c-1.31 0-2.42.84-2.83 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/generator-portable.svg���������������������0000664�0000000�0000000�00000000446�14753064456�0027730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v12h2v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h10v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h2V8a2 2 0 0 0-2-2h-1V4a2 2 0 0 0-2-2zm7 8V8h6v2zm0 4v-2h6v2zM7 4h10v2H7zm0 4v4h2l-3 6v-4H4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/generator-stationary.svg�������������������0000664�0000000�0000000�00000000376�14753064456�0030317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 3a2 2 0 0 0-2 2v11h2v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h6v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h2V5a2 2 0 0 0-2-2zm6 4V5h6v2zm0 2h6v2h-6zM8 5v4h2l-3 6v-4H5zm14 15v2H2v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gentoo.svg���������������������������������0000664�0000000�0000000�00000001264�14753064456�0025426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.28 2c-.35 0-.71.03-1.05.1-3.62.66-6.17 3.79-6.38 5.86-.11 1.01.44 1.77.74 2.1.81.91 2.44 1.6 3.48 2.17-1.51 1.27-2.2 1.91-2.88 2.63-1.02 1.07-1.74 2.24-1.74 3.09 0 .27-.05 1.14.31 1.82.13.26.51 1.12 1.65 1.76.73.41 1.76.56 2.78.42 3.14-.45 7.35-3.12 10.36-5.6 1.91-1.58 3.31-3.12 3.71-3.85.33-.63.37-1.72.18-2.41-.54-1.95-4.91-5.94-8.48-7.54-.82-.37-1.76-.55-2.68-.55m1.06 2.91q.375 0 .66.09c1.15.3 3.08 1.68 2.91 2.94-.23 1.66-1.68 2.33-3.35 2.09-.98-.13-2.93-1.23-2.78-3.14.11-1.49 1.52-1.99 2.56-1.98m-.02 1.74c-.27 0-.48.06-.58.22-.47.72-.24 1.22.18 1.55.15-.38 1.79.03 1.83.37 1.42-1.07-.39-2.13-1.43-2.14"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gesture-double-tap.svg���������������������0000664�0000000�0000000�00000001103�14753064456�0027633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 9a1 1 0 0 1 1-1 1 1 0 0 1 1 1v4.47l1.21.13 4.94 2.19c.53.24.85.77.85 1.35v4.36c-.03.82-.68 1.47-1.5 1.5H11c-.38 0-.74-.15-1-.43l-4.9-4.2.74-.77c.19-.21.46-.32.74-.32h.22L10 19zm1-4a4 4 0 0 1 4 4c0 1.5-.8 2.77-2 3.46v-1.22c.61-.55 1-1.35 1-2.24a3 3 0 0 0-3-3 3 3 0 0 0-3 3c0 .89.39 1.69 1 2.24v1.22C7.8 11.77 7 10.5 7 9a4 4 0 0 1 4-4m0-2a6 6 0 0 1 6 6c0 1.7-.71 3.23-1.84 4.33l-1-.45A5.02 5.02 0 0 0 16 9a5 5 0 0 0-5-5 5 5 0 0 0-5 5c0 2.05 1.23 3.81 3 4.58v1.08C6.67 13.83 5 11.61 5 9a6 6 0 0 1 6-6"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gesture-pinch.svg��������������������������0000664�0000000�0000000�00000001124�14753064456�0026703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9a1 1 0 0 1 1-1 1 1 0 0 1 1 1v4.47l1.21.13 4.94 2.2c.52.24.85.76.85 1.34v4.36c-.03.82-.68 1.47-1.5 1.5H14c-.38 0-.74-.15-1-.43l-4.9-4.2.74-.77c.19-.21.46-.32.74-.32h.22L13 19zm1-4c1.42 0 2.74.76 3.45 2 1.11 1.9.46 4.35-1.45 5.46v-1.23c.64-.56 1-1.38 1-2.23a3 3 0 0 0-3-3 3 3 0 0 0-3 3c0 .85.36 1.67 1 2.23v1.23c-1.23-.71-2-2.03-2-3.46a4 4 0 0 1 4-4M4 9l3 3H5v3H3v-3H1zm0-2L1 4h2V1h2v3h2zm5 7c.73 0 1.41.19 2 .54v1.22c-.53-.47-1.23-.76-2-.76a3 3 0 0 0-3 3c0 1 .5 1.87 1.22 2.42L9.31 22H9a4 4 0 0 1-4-4 4 4 0 0 1 4-4"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gesture-spread.svg�������������������������0000664�0000000�0000000�00000001124�14753064456�0027060�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4 1 3 3H5v3H3V4H1zm0 14-3-3h2V9h2v3h2zm9-6a1 1 0 0 1 1-1 1 1 0 0 1 1 1v4.47l1.21.13 4.94 2.2c.52.24.85.76.85 1.34v4.36c-.03.82-.68 1.47-1.5 1.5H14c-.38 0-.74-.15-1-.43l-4.9-4.2.74-.77c.19-.21.46-.32.74-.32h.22L13 19zm1-4c1.42 0 2.74.76 3.45 2 1.11 1.9.46 4.35-1.45 5.46v-1.23c.64-.56 1-1.38 1-2.23a3 3 0 0 0-3-3 3 3 0 0 0-3 3c0 .85.36 1.67 1 2.23v1.23c-1.23-.71-2-2.03-2-3.46a4 4 0 0 1 4-4m-5 9c.73 0 1.41.19 2 .54v1.22c-.53-.47-1.23-.76-2-.76a3 3 0 0 0-3 3c0 1 .5 1.87 1.22 2.42L9.31 22H9a4 4 0 0 1-4-4 4 4 0 0 1 4-4"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gesture-swipe-down.svg���������������������0000664�0000000�0000000�00000000427�14753064456�0027703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 9a1 1 0 0 1 1-1 1 1 0 0 1 1 1v4.47l1.21.13 4.94 2.19c.53.24.85.77.85 1.35v4.36c-.03.82-.68 1.47-1.5 1.5H11c-.38 0-.74-.15-1-.43l-4.9-4.2.74-.77c.19-.21.46-.32.74-.32h.22L10 19zM1 9l3 3 3-3H5V3H3v6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gesture-swipe-horizontal.svg���������������0000664�0000000�0000000�00000000445�14753064456�0031125�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 1 3 4l3 3V5h3v2l3-3-3-3v2H6zm5 7a1 1 0 0 0-1 1v10l-3.2-1.72h-.22c-.28 0-.55.11-.74.32l-.74.77 4.9 4.2c.26.28.62.43 1 .43h6.5a1.5 1.5 0 0 0 1.5-1.5v-4.36c0-.58-.32-1.11-.85-1.35l-4.94-2.19-1.21-.13V9a1 1 0 0 0-1-1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gesture-swipe-left.svg���������������������0000664�0000000�0000000�00000000425�14753064456�0027664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 9a1 1 0 0 1 1-1 1 1 0 0 1 1 1v4.47l1.21.13 4.94 2.19c.53.24.85.77.85 1.35v4.36c-.03.82-.68 1.47-1.5 1.5H11c-.38 0-.74-.15-1-.43l-4.9-4.2.74-.77c.19-.21.46-.32.74-.32h.22L10 19zM3 4l3 3V5h6V3H6V1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gesture-swipe-right.svg��������������������0000664�0000000�0000000�00000000425�14753064456�0030047�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 9a1 1 0 0 1 1-1 1 1 0 0 1 1 1v4.47l1.21.13 4.94 2.19c.53.24.85.77.85 1.35v4.36c-.03.82-.68 1.47-1.5 1.5H11c-.38 0-.74-.15-1-.43l-4.9-4.2.74-.77c.19-.21.46-.32.74-.32h.22L10 19zm2-5L9 1v2H3v2h6v2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gesture-swipe-up.svg�����������������������0000664�0000000�0000000�00000000427�14753064456�0027360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 9a1 1 0 0 1 1-1 1 1 0 0 1 1 1v4.47l1.21.13 4.94 2.19c.53.24.85.77.85 1.35v4.36c-.03.82-.68 1.47-1.5 1.5H11c-.38 0-.74-.15-1-.43l-4.9-4.2.74-.77c.19-.21.46-.32.74-.32h.22L10 19zM7 6 4 3 1 6h2v6h2V6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gesture-swipe-vertical.svg�����������������0000664�0000000�0000000�00000000443�14753064456�0030543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3 1 6h2v3H1l3 3 3-3H5V6h2zm7 5a1 1 0 0 0-1 1v10l-3.2-1.72h-.22c-.28 0-.55.11-.74.32l-.74.77 4.9 4.2c.26.28.62.43 1 .43h6.5a1.5 1.5 0 0 0 1.5-1.5v-4.36c0-.58-.32-1.11-.85-1.35l-4.94-2.19-1.21-.13V9a1 1 0 0 0-1-1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gesture-swipe.svg��������������������������0000664�0000000�0000000�00000001106�14753064456�0026731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.11 3.89 22 2v5h-5l2.08-2.08c-.53-.69-1.44-1.26-2.72-1.73S13.63 2.5 12 2.5c-1.62 0-3.08.22-4.36.69S5.45 4.23 4.92 4.92L7 7H2V2l1.89 1.89C4.64 3 5.74 2.31 7.2 1.78 8.65 1.25 10.25 1 12 1s3.35.25 4.8.78c1.46.53 2.56 1.22 3.31 2.11m-.38 12.38v.18L19 21.7c-.08.38-.24.69-.5.94-.27.25-.59.36-.97.36h-6.8c-.37 0-.73-.14-1.03-.45l-4.97-4.92.8-.8c.22-.22.47-.33.8-.33h.23l3.44.75V6.5c0-.39.13-.74.43-1.04S11.08 5 11.5 5c.39 0 .74.16 1.04.46s.46.65.46 1.04v6h.78c.1 0 .27.05.52.11l4.54 2.25c.6.28.89.75.89 1.41"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gesture-tap-box.svg������������������������0000664�0000000�0000000�00000000763�14753064456�0027164�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2m-9 2c2.21 0 4 1.79 4 4 0 1.5-.8 2.77-2 3.46v-1.22c.61-.55 1-1.35 1-2.24 0-1.66-1.34-3-3-3S8 6.34 8 8c0 .89.39 1.69 1 2.24v1.22C7.8 10.77 7 9.5 7 8c0-2.21 1.79-4 4-4m7 14.5c-.03.82-.68 1.47-1.5 1.5H11c-.38 0-.74-.15-1-.43l-4-4.2.74-.77c.19-.21.46-.32.76-.32h.2L10 16V8c0-.55.45-1 1-1s1 .45 1 1v4.47l1.21.13 3.94 2.19c.53.24.85.77.85 1.35z"/></svg>�������������mkdocs-material-9.6.4/material/templates/.icons/material/gesture-tap-button.svg���������������������0000664�0000000�0000000�00000001021�14753064456�0027673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 5c2.21 0 4 1.79 4 4 0 1.5-.8 2.77-2 3.46v-1.22c.61-.55 1-1.35 1-2.24 0-1.66-1.34-3-3-3s-3 1.34-3 3c0 .89.39 1.69 1 2.24v1.22C9.8 11.77 9 10.5 9 9c0-2.21 1.79-4 4-4m7 15.5c-.03.82-.68 1.47-1.5 1.5H13c-.38 0-.74-.15-1-.43l-4-4.2.74-.77c.19-.21.46-.32.76-.32h.2L12 18V9c0-.55.45-1 1-1s1 .45 1 1v4.47l1.21.13 3.94 2.19c.53.24.85.77.85 1.35zM20 2H4c-1.1 0-2 .9-2 2v8a2 2 0 0 0 2 2h4v-2H4V4h16v8h-2v2h2v-.04l.04.04c1.09 0 1.96-.91 1.96-2V4a2 2 0 0 0-2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gesture-tap-hold.svg�����������������������0000664�0000000�0000000�00000000566�14753064456�0027323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 9a1 1 0 0 1 1-1 1 1 0 0 1 1 1v4.47l1.21.13 4.94 2.19c.53.24.85.77.85 1.35v4.36c-.03.82-.68 1.47-1.5 1.5H11c-.38 0-.74-.15-1-.43l-4.9-4.2.74-.77c.19-.21.46-.32.74-.32h.22L10 19zm-1 3.44V9a2 2 0 0 1 2-2 2 2 0 0 1 2 2v3.44c1.19-.69 2-1.97 2-3.44a4 4 0 0 0-4-4 4 4 0 0 0-4 4c0 1.47.81 2.75 2 3.44"/></svg>������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gesture-tap.svg����������������������������0000664�0000000�0000000�00000000636�14753064456�0026375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 9a1 1 0 0 1 1-1 1 1 0 0 1 1 1v4.47l1.21.13 4.94 2.19c.53.24.85.77.85 1.35v4.36c-.03.82-.68 1.47-1.5 1.5H11c-.38 0-.74-.15-1-.43l-4.9-4.2.74-.77c.19-.21.46-.32.74-.32h.22L10 19zm1-4a4 4 0 0 1 4 4c0 1.5-.8 2.77-2 3.46v-1.22c.61-.55 1-1.35 1-2.24a3 3 0 0 0-3-3 3 3 0 0 0-3 3c0 .89.39 1.69 1 2.24v1.22C7.8 11.77 7 10.5 7 9a4 4 0 0 1 4-4"/></svg>��������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gesture-two-double-tap.svg�����������������0000664�0000000�0000000�00000001317�14753064456�0030451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 15.14v6.36c-.03.82-.68 1.47-1.5 1.5H11c-.38 0-.74-.15-1-.43l-4.9-4.2.74-.77c.19-.21.46-.32.74-.32h.22L10 19V9a1 1 0 0 1 1-1 1 1 0 0 1 1 1V7a1 1 0 0 1 1-1 1 1 0 0 1 1 1v5l4.15 1.84c.51.23.85.74.85 1.3M13 3a4 4 0 0 1 4 4c0 1.5-.8 2.77-2 3.46V9.24c.61-.55 1-1.35 1-2.24a3 3 0 0 0-3-3c-1.35 0-2.5.9-2.87 2.13A3.003 3.003 0 0 0 9 11.24v1.22C7.8 11.77 7 10.5 7 9c0-1.62.97-3 2.35-3.65C10 3.97 11.38 3 13 3m0-2a6 6 0 0 1 6 6c0 2.06-1.04 3.88-2.62 4.96l-1.12-.5A4.98 4.98 0 0 0 18 7a5 5 0 0 0-5-5c-1.89 0-3.54 1.05-4.39 2.61C7.05 5.46 6 7.11 6 9c0 2.05 1.23 3.81 3 4.58v1.08C6.67 13.83 5 11.61 5 9c0-2.17 1.15-4.07 2.88-5.12A5.98 5.98 0 0 1 13 1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gesture-two-tap.svg������������������������0000664�0000000�0000000�00000001125�14753064456�0027176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 15.14v6.36c-.03.82-.68 1.47-1.5 1.5H11c-.38 0-.74-.15-1-.43l-4.9-4.2.74-.77c.19-.21.46-.32.74-.32h.22L10 19V9a1 1 0 0 1 1-1 1 1 0 0 1 1 1V7a1 1 0 0 1 1-1 1 1 0 0 1 1 1v5l4.15 1.84c.51.23.85.74.85 1.3m-4-4.69V9.23c.23-.2.42-.44.57-.69.27-.45.43-.98.43-1.54a3 3 0 0 0-3-3c-.79 0-1.5.31-2.05.81l-.14.14c-.13.14-.25.29-.35.45s-.19.34-.26.52c-.03.08-.05.14-.07.21A3 3 0 0 0 8 9c0 .7.24 1.34.64 1.85.1.15.23.26.36.38v1.23C7.8 11.77 7 10.5 7 9c0-1.62.97-3 2.35-3.65C10 3.97 11.38 3 13 3a4 4 0 0 1 4 4c0 1.5-.8 2.77-2 3.46z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gesture.svg��������������������������������0000664�0000000�0000000�00000001303�14753064456�0025603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.59 6.89C5.29 6.18 6 5.54 6.3 5.67c.5.2 0 1.03-.3 1.52-.25.42-2.86 3.89-2.86 6.31 0 1.28.48 2.34 1.36 3a3 3 0 0 0 2.62.44c1.07-.31 1.95-1.4 3.06-2.77 1.21-1.49 2.82-3.44 4.08-3.44 1.63 0 1.65 1.01 1.74 1.77-3.76.66-5.36 3.69-5.36 5.39S12.08 21 13.85 21c1.65 0 4.29-1.35 4.69-6.12H21v-2.5h-2.47c-.15-1.65-1.09-4.2-4.03-4.2-2.25 0-4.18 1.91-4.94 2.82-.56.75-2.06 2.5-2.29 2.74-.27.3-.68.84-1.11.84-.45 0-.72-.83-.36-1.92.35-1.09 1.4-2.86 1.85-3.52.78-1.14 1.3-1.92 1.3-3.28C8.95 3.69 7.31 3 6.44 3 5.12 3 3.97 4 3.72 4.25c-.36.36-.66.66-.88.93zm9.29 11.66c-.31 0-.74-.26-.74-.72 0-.6.73-2.2 2.86-2.76-.29 2.69-1.42 3.48-2.12 3.48"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ghost-off-outline.svg����������������������0000664�0000000�0000000�00000001114�14753064456�0027476�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.29 5.09 6.84 3.64A8.93 8.93 0 0 1 12 2a9 9 0 0 1 9 9v6.8l-2-2V11c0-3.86-3.14-7-7-7-1.37 0-2.64.4-3.71 1.09m13.82 16.37-1.27 1.27-3.28-3.28L15 22l-3-3-3 3-3-3-3 3V11c0-1.74.5-3.37 1.36-4.75L1.11 3l1.28-1.27 4.5 4.5 1.8 1.8 2.28 2.28 6.44 6.45h.01L21 20.34v.01zm-5.97-3.43-6.25-6.25c-.27.14-.57.22-.89.22a2 2 0 0 1-2-2c0-.32.08-.62.22-.89l-1.4-1.4C5.3 8.69 5 9.81 5 11v6.17l1-1 1.41 1.42L9 19.17l1.59-1.58L12 16.17l1.41 1.42L15 19.17zM15 8c-1.04 0-1.89.8-2 1.82L15.18 12c1.02-.11 1.82-.96 1.82-2a2 2 0 0 0-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ghost-off.svg������������������������������0000664�0000000�0000000�00000000563�14753064456�0026030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3.27 3.28 2 22 20.72 20.73 22l-2.86-2.87L15 22l-3-3-3 3-3-3-3 3V11c0-1.91.59-3.67 1.6-5.13zM12 2a9 9 0 0 1 9 9v6.18l-5.3-5.3c.76-.29 1.3-1.02 1.3-1.88a2 2 0 0 0-2-2c-.86 0-1.59.54-1.87 1.3L7.2 3.38A8.95 8.95 0 0 1 12 2m-5 8a2 2 0 0 0 2 2c.5 0 .93-.17 1.27-.46L7.46 8.73C7.17 9.07 7 9.5 7 10"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ghost-outline.svg��������������������������0000664�0000000�0000000�00000000562�14753064456�0026734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a9 9 0 0 0-9 9v11l3-3 3 3 3-3 3 3 3-3 3 3V11a9 9 0 0 0-9-9m7 15.17-1-1-1.41 1.42L15 19.17l-1.59-1.58L12 16.17l-1.41 1.42L9 19.17l-1.59-1.58L6 16.17l-1 1V11c0-3.86 3.14-7 7-7s7 3.14 7 7zM11 10c0 1.11-.89 2-2 2s-2-.89-2-2 .9-2 2-2 2 .9 2 2m6 0c0 1.11-.89 2-2 2s-2-.89-2-2 .9-2 2-2 2 .9 2 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ghost.svg����������������������������������0000664�0000000�0000000�00000000405�14753064456�0025253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a9 9 0 0 0-9 9v11l3-3 3 3 3-3 3 3 3-3 3 3V11a9 9 0 0 0-9-9M9 8a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m6 0a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gift-off-outline.svg�����������������������0000664�0000000�0000000�00000001050�14753064456�0027302�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 6h-3.17A3 3 0 0 0 18 5c0-1.66-1.34-3-3-3-1 0-1.88.5-2.43 1.24v-.01L12 4l-.57-.77v.01A3.03 3.03 0 0 0 9 2c-1.03 0-1.94.5-2.5 1.32l1.53 1.51C8.12 4.36 8.5 4 9 4c.55 0 1 .45 1 1 0 .5-.36.88-.83.97L13 9.8V8h8v2h-7.8l2 2H20v4.8l2 2V12c.55 0 1-.45 1-1V8a2 2 0 0 0-2-2m-6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1M1.11 3l3 3H3c-1.1 0-2 .9-2 2v3c0 .55.45 1 1 1v8a2 2 0 0 0 2 2h16.1l1.46 1.45 1.27-1.27L2.39 1.73zM13 14.89 18.11 20H13zm-2-2V20H4v-8h6.11zM8.11 10H3V8h3.11z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gift-off.svg�������������������������������0000664�0000000�0000000�00000001100�14753064456�0025621�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m1.11 3 3.03 3.04H3a2 2 0 0 0-2 2v2c0 .55.45 1 1 1h7.15l1 1H2v8c0 1.1.9 2 2 2h16c.05 0 .09-.01.13-.04l1.43 1.45 1.27-1.27L2.39 1.73zM11 12.89l2 2v5.15h-2zm11-.85v6.76l-6.76-6.76zm-1-6h-3.17C19 2.77 14.6.455 12.57 3.28l-.57.76-.57-.78C10.8 2.37 9.93 2 9.06 1.97c-1-.01-1.98.53-2.56 1.33l1.54 1.54c.09-.46.46-.8.96-.8.89 0 1.34 1.08.71 1.71-.15.14-.32.25-.5.25l2.03 2.04H13V9.8l1.24 1.24H22c.55 0 1-.45 1-1v-2c0-1.11-.89-2-2-2m-5.29-.29c-.63.63-1.71.18-1.71-.71 0-.54.45-1 1-1 .89 0 1.34 1.08.71 1.71"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gift-open-outline.svg����������������������0000664�0000000�0000000�00000001325�14753064456�0027476�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22 10.87-2.74-1.59c.24-.21.47-.48.64-.78.83-1.43.34-3.27-1.1-4.1-.86-.5-1.87-.5-2.72-.14l.01-.01-.88.39-.11-.96-.01.01c-.09-.91-.62-1.79-1.48-2.29A3.023 3.023 0 0 0 9.5 2.5c-.17.3-.28.63-.34.95L6.41 1.87c-.96-.55-2.18-.23-2.73.73l-1.5 2.6a.99.99 0 0 0 .37 1.36l1.73 1L8.5 10H2v10a2 2 0 0 0 2 2h16c1.11 0 2-.89 2-2v-5.13l.73-1.27c.55-.96.23-2.18-.73-2.73M16.44 6.5c.27-.5.89-.64 1.36-.37.48.28.65.87.37 1.37s-.89.64-1.37.37c-.47-.28-.64-.87-.36-1.37m-2.37 2.1 6.93 4-1 1.73-6.93-4zM11 20H4v-8h7zm.34-10.67-6.93-4 1-1.73 6.93 4zm.27-4.46c-.48-.28-.64-.87-.37-1.37.26-.5.89-.64 1.37-.37.48.28.64.87.36 1.37-.27.5-.88.64-1.36.37M13 20v-7.4l7 4.04V20z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gift-open.svg������������������������������0000664�0000000�0000000�00000001203�14753064456�0026014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22 10.92-2.74-1.59c2.64-2.25-.01-6.45-3.18-5.02l-.87.37-.11-.96c-.1-1.08-.66-1.85-1.4-2.3-1.64-.953-4.14-.3-4.54 2.08L6.41 1.92c-.96-.56-2.18-.23-2.73.73l-1 1.73c-.28.48-.11 1.09.37 1.37l7.79 4.5 1.5-2.6 1.73 1-1.5 2.6 7.79 4.5c.48.25 1.1.11 1.37-.37l1-1.73c.55-.96.23-2.18-.73-2.73M12.37 5c-.87.25-1.57-.68-1.13-1.45.26-.48.89-.64 1.37-.37.77.45.62 1.61-.24 1.82m5.19 3c-.86.25-1.56-.68-1.12-1.45.27-.48.89-.64 1.36-.37.77.45.62 1.61-.24 1.82m3.31 8.88c.41 0 .8-.14 1.13-.38V20c0 1.11-.89 2-2 2H4a2 2 0 0 1-2-2v-9h8.15l.85.5V20h2v-7.35l6.87 3.96c.3.18.63.27 1 .27"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gift-outline.svg���������������������������0000664�0000000�0000000�00000000736�14753064456�0026544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 12v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-8a1 1 0 0 1-1-1V8a2 2 0 0 1 2-2h3.17A3 3 0 0 1 6 5a3 3 0 0 1 3-3c1 0 1.88.5 2.43 1.24v-.01L12 4l.57-.77v.01C13.12 2.5 14 2 15 2a3 3 0 0 1 3 3 3 3 0 0 1-.17 1H21a2 2 0 0 1 2 2v3a1 1 0 0 1-1 1M4 20h7v-8H4zm16 0v-8h-7v8zM9 4a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m6 0a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1M3 8v2h8V8zm10 0v2h8V8z"/></svg>����������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gift.svg�����������������������������������0000664�0000000�0000000�00000000647�14753064456�0025070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.06 1.93C7.17 1.92 5.33 3.74 6.17 6H3a2 2 0 0 0-2 2v2a1 1 0 0 0 1 1h9V8h2v3h9a1 1 0 0 0 1-1V8a2 2 0 0 0-2-2h-3.17C19 2.73 14.6.42 12.57 3.24L12 4l-.57-.78c-.63-.89-1.5-1.28-2.37-1.29M9 4c.89 0 1.34 1.08.71 1.71S8 5.89 8 5a1 1 0 0 1 1-1m6 0c.89 0 1.34 1.08.71 1.71S14 5.89 14 5a1 1 0 0 1 1-1M2 12v8a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-8h-9v8h-2v-8z"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/git.svg������������������������������������0000664�0000000�0000000�00000000770�14753064456�0024717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.6 10.59 8.38 4.8l1.69 1.7c-.24.85.15 1.78.93 2.23v5.54c-.6.34-1 .99-1 1.73a2 2 0 0 0 2 2 2 2 0 0 0 2-2c0-.74-.4-1.39-1-1.73V9.41l2.07 2.09c-.07.15-.07.32-.07.5a2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2c-.18 0-.35 0-.5.07L13.93 7.5a1.98 1.98 0 0 0-1.15-2.34c-.43-.16-.88-.2-1.28-.09L9.8 3.38l.79-.78c.78-.79 2.04-.79 2.82 0l7.99 7.99c.79.78.79 2.04 0 2.82l-7.99 7.99c-.78.79-2.04.79-2.82 0L2.6 13.41c-.79-.78-.79-2.04 0-2.82"/></svg>��������mkdocs-material-9.6.4/material/templates/.icons/material/github.svg���������������������������������0000664�0000000�0000000�00000001161�14753064456�0025411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12c0 4.42 2.87 8.17 6.84 9.5.5.08.66-.23.66-.5v-1.69c-2.77.6-3.36-1.34-3.36-1.34-.46-1.16-1.11-1.47-1.11-1.47-.91-.62.07-.6.07-.6 1 .07 1.53 1.03 1.53 1.03.87 1.52 2.34 1.07 2.91.83.09-.65.35-1.09.63-1.34-2.22-.25-4.55-1.11-4.55-4.92 0-1.11.38-2 1.03-2.71-.1-.25-.45-1.29.1-2.64 0 0 .84-.27 2.75 1.02.79-.22 1.65-.33 2.5-.33s1.71.11 2.5.33c1.91-1.29 2.75-1.02 2.75-1.02.55 1.35.2 2.39.1 2.64.65.71 1.03 1.6 1.03 2.71 0 3.82-2.34 4.66-4.57 4.91.36.31.69.92.69 1.85V21c0 .27.16.59.67.5C19.14 20.16 22 16.42 22 12A10 10 0 0 0 12 2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gitlab.svg���������������������������������0000664�0000000�0000000�00000001163�14753064456�0025373�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.94 13.11-1.05-3.22c0-.03-.01-.06-.02-.09l-2.11-6.48a.86.86 0 0 0-.8-.57c-.36 0-.68.25-.79.58l-2 6.17H8.84L6.83 3.33a.85.85 0 0 0-.79-.58c-.37 0-.69.25-.8.58L3.13 9.82v.01l-1.07 3.28c-.16.5.01 1.04.44 1.34l9.22 6.71c.17.12.39.12.56-.01l9.22-6.7c.43-.3.6-.84.44-1.34M8.15 10.45l2.57 7.91-6.17-7.91m8.73 7.92 2.47-7.59.1-.33h3.61l-5.59 7.16m4.1-13.67 1.81 5.56h-3.62m-1.3.95-1.79 5.51L12 19.24l-2.86-8.79M6.03 3.94 7.84 9.5H4.23m-1.18 4.19c-.09-.07-.13-.19-.09-.29l.79-2.43 5.82 7.45m11.38-4.73-6.51 4.73.02-.03 5.79-7.42.79 2.43c.04.1 0 .22-.09.29"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/glass-cocktail-off.svg���������������������0000664�0000000�0000000�00000000354�14753064456�0027602�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.33 12.67 7.66 7 6.13 5.47 2.39 1.73 1.11 3 3 4.89V5l8 8v6H6v2h12v-1.11l2.84 2.84 1.27-1.27zM13 19v-4.11L17.11 19zM8.2 5l-2-2H21v2l-6.4 6.4L10.2 7h6.3l2-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/glass-cocktail.svg�������������������������0000664�0000000�0000000�00000000203�14753064456�0027023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.5 7-2-2h13l-2 2M11 13v6H6v2h12v-2h-5v-6l8-8V3H3v2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/glass-flute.svg����������������������������0000664�0000000�0000000�00000000571�14753064456�0026361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 2h8c-.33 3-.67 6-1.25 7.83-.58 1.84-1.42 2.5-1.83 4.25-.42 1.75-.42 4.59.16 5.92.59 1.33 1.75 1.17 2.34 1.25.58.08.58.42.58.75H8c0-.33 0-.67.58-.75.59-.08 1.75.08 2.34-1.25.58-1.33.58-4.17.16-5.92-.41-1.75-1.25-2.41-1.83-4.25C8.67 8 8.33 5 8 2m2 2c.07 1.03.15 2.07.24 3h3.52c.09-.93.17-1.97.24-3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/glass-fragile.svg��������������������������0000664�0000000�0000000�00000000466�14753064456�0026656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 20h5v2H6v-2h5v-6.03c-2.81-.27-5-2.63-5-5.51 0-.31.03-.61.08-.91L7 2h6.54l-1.21 2.41-.54 1.09h2l-1.46 2.91-.54 1.09H14l-1 3.25 2.67-3.66.79-1.09h-2.25l1.46-2.91.54-1.09h-2l1-2H17l.93 5.55c.07.3.07.6.07.91 0 2.88-2.19 5.24-5 5.51z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/glass-mug-off.svg��������������������������0000664�0000000�0000000�00000000451�14753064456�0026577�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 19.35v-.01L6.66 6l-.59-.59-3.68-3.68L1.11 3l3.15 3.15C3.5 6.44 3 7.16 3 8v7c0 .82.5 1.5 1.2 1.83L8 18.6V20l-1 1v1h13.11l.73.73 1.27-1.27zM8 16.39 5 15V8h1.11L8 9.89zM8 4 7 3V2h14v1l-1 1v12.8L10.2 7H18V4h-8v2.8l-2-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/glass-mug-variant-off.svg������������������0000664�0000000�0000000�00000000767�14753064456�0030253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.44 5.24 7 3.79C7.71 3.29 8.57 3 9.5 3c1.03 0 2 .35 2.82 1H14c2.21 0 4 1.79 4 4v2h2c.55 0 1 .45 1 1v6.8l-2-2V12h-2v1.8l-5.74-5.74C11.5 8 11.73 8 12 8h4a2 2 0 0 0-2-2h-2.5a2.49 2.49 0 0 0-3.06-.76m13.67 16.22-1.27 1.27L18.11 20H17v2H6v-8c-2.21 0-4-1.79-4-4a4 4 0 0 1 2.44-3.67L1.11 3l1.28-1.27 4.8 4.81 2.42 2.42L17 16.34v.01L18.65 18h.01l1.84 1.84v.01zM8.59 10.5 6.11 8H6a2 2 0 0 0-2 2c0 1.11.89 2 2 2 0 0 1.68.13 2.5-1.37z"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/material/glass-mug-variant.svg����������������������0000664�0000000�0000000�00000000573�14753064456�0027476�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3C7.56 3 5.85 4.24 5.23 6.08A3.996 3.996 0 0 0 6 14v8h11v-2h3c.55 0 1-.45 1-1v-8c0-.55-.45-1-1-1h-2V8c0-2.21-1.79-4-4-4h-1.68c-.82-.65-1.79-1-2.82-1m0 2c.79 0 1.53.37 2 1H14a2 2 0 0 1 2 2h-4c-2 0-2.68 1.13-3.5 2.63S6 12 6 12c-1.11 0-2-.89-2-2a2 2 0 0 1 2-2h1v-.5A2.5 2.5 0 0 1 9.5 5m7.5 7h2v6h-2Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/glass-mug.svg������������������������������0000664�0000000�0000000�00000000313�14753064456�0026024�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 4v3h8V4zM8 2h13v1l-1 1v16l1 1v1H7v-1l1-1v-1.4l-3.8-1.77C3.5 16.5 3 15.82 3 15V8a2 2 0 0 1 2-2h3V4L7 3V2zM5 15l3 1.39V8H5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/glass-pint-outline.svg���������������������0000664�0000000�0000000�00000000170�14753064456�0027664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4 2 2 20h11l2-20zm2.2 2h10.6l-1.6 16H7.8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/glass-stange.svg���������������������������0000664�0000000�0000000�00000000145�14753064456�0026520�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 2h8v20H8zm2 2v3h4V4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/glass-tulip.svg����������������������������0000664�0000000�0000000�00000000645�14753064456�0026401�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 2h8c-.33.67-.67 1.33-.42 3s1.09 4.33.67 5.74c-.42 1.4-2.08 1.54-2.92 3.12-.83 1.58-.83 4.61-.25 6.04.59 1.43 1.75 1.27 2.34 1.35.58.08.58.42.58.75H8c0-.33 0-.67.58-.75.59-.08 1.75.08 2.34-1.35.58-1.43.58-4.46-.25-6.04-.84-1.58-2.5-1.72-2.92-3.12-.42-1.41.42-4.07.67-5.74S8.33 2.67 8 2m2 2c0 1.19-.17 2.17-.36 3h4.63c-.14-.83-.27-1.81-.27-3z"/></svg>�������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/glass-wine.svg�����������������������������0000664�0000000�0000000�00000000474�14753064456�0026206�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.5 21.27-.84-.09c-.76-.07-1.41-.58-1.66-1.31a11.5 11.5 0 0 1 0-6c2.32-.47 4-2.5 4-4.87 0-2-2-7-2-7H9S7 7 7 9a5 5 0 0 0 4 4.9c.53 1.96.53 4.04 0 6-.24.72-.88 1.23-1.63 1.31l-.87.09s-.5-.02-.5.7h8c0-.72-.5-.73-.5-.73M9.44 7l1-3h3.12l1 3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/glasses.svg��������������������������������0000664�0000000�0000000�00000001367�14753064456�0025600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 10c-.24 0-.45.09-.59.25-.14.15-.2.37-.17.61l.5 2.99C2.82 14.5 3.4 15 4 15h3c.64 0 1.36-.56 1.5-1.18l1.06-3.19c.04-.13.01-.32-.06-.44-.11-.12-.28-.19-.5-.19zm4 7H4C2.38 17 .96 15.74.76 14.14l-.5-2.99C.15 10.3.39 9.5.91 8.92S2.19 8 3 8h6c.83 0 1.58.35 2.06.96.11.15.21.31.29.49.43-.09.87-.09 1.29 0 .08-.18.18-.34.3-.49C13.41 8.35 14.16 8 15 8h6c.81 0 1.57.34 2.09.92.51.58.75 1.38.65 2.19l-.51 3.07C23.04 15.74 21.61 17 20 17h-3c-1.56 0-3.08-1.19-3.46-2.7l-.9-2.71c-.38-.28-.91-.28-1.29 0l-.92 2.78C10.07 15.82 8.56 17 7 17m8-7c-.22 0-.39.07-.5.19-.08.12-.1.31-.05.51l1.01 3.05c.18.69.9 1.25 1.54 1.25h3c.59 0 1.18-.5 1.25-1.11l.51-3.07c.03-.2-.03-.42-.17-.57A.77.77 0 0 0 21 10z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/globe-light-outline.svg��������������������0000664�0000000�0000000�00000000412�14753064456�0027777�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 8.08V2h-2v6.08c-3.39.49-6 3.39-6 6.92 0 3.87 3.13 7 7 7s7-3.13 7-7c0-3.53-2.61-6.43-6-6.92M12 20c-2.76 0-5-2.24-5-5 0-1.13.39-2.16 1.03-3h7.94c.64.84 1.03 1.87 1.03 3 0 2.76-2.24 5-5 5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/globe-light.svg����������������������������0000664�0000000�0000000�00000000313�14753064456�0026322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.1 10c1-1 2.4-1.7 3.9-1.9V2h2v6.1c1.5.2 2.9.9 3.9 1.9zm-1.8 3c-.2.6-.3 1.3-.3 2 0 3.9 3.1 7 7 7s7-3.1 7-7c0-.7-.1-1.4-.3-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/globe-model.svg����������������������������0000664�0000000�0000000�00000000702�14753064456�0026315�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.36 2.64-1.41 1.42A6.98 6.98 0 0 1 18 9a7 7 0 0 1-7 7c-1.85 0-3.63-.74-4.94-2.05l-1.42 1.41A8.95 8.95 0 0 0 10 17.93V20H6v2h10v-2h-4v-2.06c4.55-.51 8-4.36 8-8.94 0-2.38-.95-4.67-2.64-6.36M11 3.5A5.5 5.5 0 0 0 5.5 9a5.5 5.5 0 0 0 5.5 5.5A5.5 5.5 0 0 0 16.5 9 5.5 5.5 0 0 0 11 3.5m0 2c1.94 0 3.5 1.57 3.5 3.5a3.5 3.5 0 0 1-3.5 3.5A3.5 3.5 0 0 1 7.5 9 3.5 3.5 0 0 1 11 5.5"/></svg>��������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gmail.svg����������������������������������0000664�0000000�0000000�00000000321�14753064456�0025215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 18h-2V9.25L12 13 6 9.25V18H4V6h1.2l6.8 4.25L18.8 6H20m0-2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gnome.svg����������������������������������0000664�0000000�0000000�00000001104�14753064456�0025231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.42 2c-4.16 0-4.92 5.93-2.6 5.93 2.34 0 6.76-5.93 2.6-5.93M12 2.73c-.08 0-.15 0-.22.01-2.34.3-1.52 4.38-.28 4.45 1.22.08 2.54-4.46.5-4.46M7.93 4.34c-.12 0-.26.03-.4.09-1.88.78-.29 3.98.77 3.77.97-.2 1.09-3.9-.37-3.86m-3 2.51c-.16-.01-.34.05-.52.18-1.51 1.04.5 3.55 1.39 3.16.77-.34.28-3.3-.87-3.34m8.36 1.92c-3.19.03-7.26 1.65-7.97 4.82C4.53 17.11 8.56 22 12.76 22c2.07 0 4.45-1.87 4.9-4.23.34-1.8-4.01-1.08-3.85.11.19 1.43-1.05 2.12-2.26 1.22-3.86-2.94 6.38-4.4 5.7-8.41-.22-1.3-1.91-1.93-3.96-1.92"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/go-kart-track.svg��������������������������0000664�0000000�0000000�00000001232�14753064456�0026574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 5.5A3.5 3.5 0 0 0 18.5 2 3.5 3.5 0 0 0 15 5.5V6a3 3 0 0 1-3 3c-2 0-3-3-6-3a4 4 0 0 0-4 4v1h2v-1a2 2 0 0 1 2-2c.86 0 1.42.45 2.32 1.24A5.58 5.58 0 0 0 12 11a5 5 0 0 0 5-5v-.5A1.5 1.5 0 0 1 18.5 4 1.5 1.5 0 0 1 20 5.5c-.14.85-.42 1.68-.83 2.44C18.5 9.2 18.11 10.58 18 12c.09 1.37.5 2.71 1.21 3.89.39.65.66 1.36.79 2.11a2 2 0 0 1-2 2 2 2 0 0 1-2-2 3.75 3.75 0 0 0-3.75-3.75A3.75 3.75 0 0 0 8.5 18v.5A1.5 1.5 0 0 1 7 20a3 3 0 0 1-3-3v-2h2v-2H0v2h2v2a5 5 0 0 0 5 5 3.5 3.5 0 0 0 3.5-3.5V18a1.75 1.75 0 0 1 1.75-1.75A1.75 1.75 0 0 1 14 18a4 4 0 0 0 4 4 4 4 0 0 0 4-4c0-2-2-4-2-6s2-4.5 2-6.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/go-kart.svg��������������������������������0000664�0000000�0000000�00000000737�14753064456�0025503�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 10h-2.47l-1.15-1.72 1.42-.95-1.1-1.66-4.5 3 1.1 1.66 1.43-.95 1.15 1.74L13 12h-2.8L5.83 5.45l-1.66 1.1 1.7 2.56A5.99 5.99 0 0 0 1 15v2h2a3 3 0 0 0 3 3 3 3 0 0 0 3-3h6a3 3 0 0 0 3 3 3 3 0 0 0 3-3h2v-2a5 5 0 0 0-5-5M6 18.5A1.5 1.5 0 0 1 4.5 17 1.5 1.5 0 0 1 6 15.5 1.5 1.5 0 0 1 7.5 17 1.5 1.5 0 0 1 6 18.5m12 0a1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5 1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5"/></svg>���������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gog.svg������������������������������������0000664�0000000�0000000�00000002367�14753064456�0024714�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3h16a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m6.46 2.54c-.51 0-.92.41-.92.92v3.08a.92.92 0 0 0 .92.92h3.08a.92.92 0 0 0 .92-.92V6.46c0-.51-.41-.92-.92-.92zm.62 1.23h1.84a.31.31 0 0 1 .31.31v1.84a.31.31 0 0 1-.31.31h-1.84a.31.31 0 0 1-.31-.31V7.08a.31.31 0 0 1 .31-.31M4.92 5.54a.92.92 0 0 0-.92.92v3.08c0 .51.41.92.92.92h2.16V9.23H5.54c-.17 0-.31-.14-.31-.31V7.08c0-.17.14-.31.31-.31h1.84a.31.31 0 0 1 .31.31v3.69a.31.31 0 0 1-.31.31H4v1.23h4c.5 0 .92-.42.92-.93V6.46A.92.92 0 0 0 8 5.54zm11.08 0c-.5 0-.92.41-.92.92v3.08c0 .51.42.92.92.92h2.15V9.23h-1.53c-.17 0-.31-.14-.31-.31V7.08c0-.17.14-.31.31-.31h1.84c.17 0 .31.14.31.31v3.69c0 .17-.14.31-.31.31h-3.38v1.23h4c.51 0 .92-.42.92-.93V6.46c0-.51-.41-.92-.92-.92zm-6.15 8c-.51 0-.93.41-.93.92v3.08c0 .51.42.92.93.92h3.07c.51 0 .93-.41.93-.92v-3.08c0-.51-.42-.92-.93-.92zm.61 1.23h1.85a.3.3 0 0 1 .31.31v1.84a.31.31 0 0 1-.31.31h-1.85c-.17 0-.31-.14-.31-.31v-1.84a.31.31 0 0 1 .31-.31m-5.54-1.23c-.51 0-.92.41-.92.92v3.08c0 .51.41.92.92.92h3.39v-1.23H5.54c-.17 0-.31-.14-.31-.31v-1.84c0-.17.14-.31.31-.31h2.77v-1.23zm10.46 0c-.51 0-.92.41-.92.92v4h1.23v-3.38a.31.31 0 0 1 .31-.31h.62v3.69h1.23v-3.69h.92v3.69H20v-4.92z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gold.svg�����������������������������������0000664�0000000�0000000�00000000331�14753064456�0025052�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m1 22 1.5-5h7l1.5 5zm12 0 1.5-5h7l1.5 5zm-7-7 1.5-5h7l1.5 5zm17-8.95-3.86 1.09L18.05 11l-1.09-3.86-3.86-1.09 3.86-1.09 1.09-3.86 1.09 3.86z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/golf-cart.svg������������������������������0000664�0000000�0000000�00000000611�14753064456�0026004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.89 12.37 18.25 5H19V3H3v4H1v2h2v3.54A6 6 0 0 0 1 17v2h2a3 3 0 0 0 6 0h6a3 3 0 0 0 6 0h2v-2a5 5 0 0 0-3.11-4.63M6 20.5A1.5 1.5 0 1 1 7.5 19 1.5 1.5 0 0 1 6 20.5m9.53-8.5-1.15-1.72 1.42-.95-1.1-1.66-4.5 3 1.1 1.66 1.43-.95 1.15 1.74L13 14h-2.8L5 7V5h11.2l1.55 7m.25 8.5a1.5 1.5 0 1 1 1.5-1.5 1.5 1.5 0 0 1-1.5 1.5"/></svg>�����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/golf-tee.svg�������������������������������0000664�0000000�0000000�00000001234�14753064456�0025632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 19v-2h10v2h-2c-.5 0-1 .2-1.4.6s-.6.9-.6 1.4v1h-2v-1c0-.5-.2-1-.6-1.4S9.5 19 9 19zm4-13c0-.3.1-.5.3-.7s.4-.3.7-.3.5.1.7.3.3.4.3.7-.1.5-.3.7-.4.3-.7.3-.5-.1-.7-.3-.3-.4-.3-.7m2 2c0-.3.1-.5.3-.7s.4-.3.7-.3.5.1.7.3.3.4.3.7-.1.5-.3.7-.4.3-.7.3-.5-.1-.7-.3-.3-.4-.3-.7M9 8c0-.3.1-.5.3-.7s.4-.3.7-.3.5.1.7.3.3.4.3.7-.1.5-.3.7-.4.3-.7.3-.5-.1-.7-.3S9 8.3 9 8m7.9-3.9c-1.4-1.4-3-2-4.9-2s-3.6.7-4.9 2S5 7.1 5 9s.7 3.6 2 4.9 3 2 4.9 2 3.6-.7 4.9-2 2-3 2-4.9-.5-3.6-1.9-4.9m-1.4 8.4c-1 1-2.2 1.5-3.5 1.5s-2.6-.5-3.5-1.5S7 10.4 7 9s.5-2.6 1.5-3.5S10.6 4 12 4s2.6.5 3.5 1.5S17 7.6 17 9s-.5 2.6-1.5 3.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/golf.svg�����������������������������������0000664�0000000�0000000�00000000417�14753064456�0025061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 18a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5M17 5.92 11 9v9.03c2.84.16 5 .97 5 1.97 0 1.1-2.69 2-6 2s-6-.9-6-2c0-.74 1.21-1.38 3-1.73V20h2V2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gondola.svg��������������������������������0000664�0000000�0000000�00000000702�14753064456�0025552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 10h-5V7.59l9.12-1.52-.24-1.48-5.47.91c.05-.15.09-.32.09-.5A1.5 1.5 0 0 0 15 3.5 1.5 1.5 0 0 0 13.5 5c0 .35.13.68.34.93l-.84.14V5h-2v1.41l-.59.09c.05-.15.09-.32.09-.5A1.5 1.5 0 0 0 9 4.5 1.5 1.5 0 0 0 7.5 6c0 .36.13.68.33.93l-5.95 1 .24 1.48L11 7.93V10H6a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2M6 12h2.25v4H6zm3.75 4v-4h4.5v4zM18 16h-2.25v-4H18z"/></svg>��������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/goodreads.svg������������������������������0000664�0000000�0000000�00000000576�14753064456�0026107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 12.77c-1.04 1.65-2.78 2.73-4.75 2.73-3.18 0-5.75-2.8-5.75-6.25S9.07 3 12.25 3c1.97 0 3.71 1.08 4.75 2.73V3h1v12.25c0 5.46-3.46 5.75-6.5 5.75-2.5 0-3.95-1.69-4.37-4h1.01c.36 1.75 1.4 3 3.36 3 2.22 0 5.5.05 5.5-4.75zM12.25 4C9.63 4 7.5 6.35 7.5 9.25s2.13 5.25 4.75 5.25S17 12.15 17 9.25 14.87 4 12.25 4"/></svg>����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-ads.svg�����������������������������0000664�0000000�0000000�00000000624�14753064456�0026153�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.25 1.47c-.7-.05-1.43.11-2.08.49a3.656 3.656 0 0 0-1.35 5l7.34 12.7c1.01 1.76 3.25 2.34 5.01 1.34 1.75-1 2.33-3.25 1.33-5L15.18 3.3a3.7 3.7 0 0 0-2.93-1.83M6.82 6.76 1.5 16a3.67 3.67 0 0 0-.5 1.83 3.67 3.67 0 0 0 3.67 3.67 3.67 3.67 0 0 0 3.17-1.84v.01L11 14.19c-1.35-2.3-2.73-4.59-3.97-6.96-.08-.15-.15-.31-.2-.47ZL16.4 5Z"/></svg>������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-analytics.svg�����������������������0000664�0000000�0000000�00000000616�14753064456�0027374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.86 4.39v15c0 1.67 1.14 2.61 2.39 2.61 1.14 0 2.39-.79 2.39-2.61V4.5c0-1.54-1.14-2.5-2.39-2.5s-2.39 1.06-2.39 2.39M9.61 12v7.39C9.61 21.07 10.77 22 12 22c1.14 0 2.39-.79 2.39-2.61v-7.28c0-1.54-1.14-2.5-2.39-2.5S9.61 10.67 9.61 12m-3.86 5.23c1.32 0 2.39 1.07 2.39 2.38a2.39 2.39 0 1 1-4.78 0c0-1.31 1.07-2.38 2.39-2.38"/></svg>������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-assistant.svg�����������������������0000664�0000000�0000000�00000000572�14753064456�0027417�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2a6 6 0 0 0-6 6 6 6 0 0 0 6 6 6 6 0 0 0 6-6 6 6 0 0 0-6-6m14.5 4A1.5 1.5 0 0 0 20 7.5 1.5 1.5 0 0 0 21.5 9 1.5 1.5 0 0 0 23 7.5 1.5 1.5 0 0 0 21.5 6M17 8a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3m0 7a3.5 3.5 0 0 0-3.5 3.5A3.5 3.5 0 0 0 17 22a3.5 3.5 0 0 0 3.5-3.5A3.5 3.5 0 0 0 17 15"/></svg>��������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-cardboard.svg�����������������������0000664�0000000�0000000�00000000747�14753064456�0027333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.74 6H3.2C2.55 6 2 6.57 2 7.27v10.46c0 .7.55 1.27 1.23 1.27H8c.54 0 1-.32 1.16-.79l1.39-3.47c.24-.58.8-.99 1.45-.99s1.21.41 1.45.99l1.39 3.47c.19.47.62.79 1.11.79h4.79c.71 0 1.26-.57 1.26-1.27V7.27c0-.7-.55-1.27-1.26-1.27M7.22 14.58C6 14.58 5 13.55 5 12.29 5 11 6 10 7.22 10s2.21 1 2.21 2.29c0 1.26-.99 2.29-2.21 2.29m9.56 0c-1.22 0-2.21-1.03-2.21-2.29S15.56 10 16.78 10 19 11.03 19 12.29s-1 2.29-2.22 2.29"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-chrome.svg��������������������������0000664�0000000�0000000�00000001004�14753064456�0026652�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 20 3.46-6h-.01c.34-.6.55-1.27.55-2 0-1.2-.54-2.27-1.38-3h4.79c.38.93.59 1.94.59 3a8 8 0 0 1-8 8m-8-8c0-1.46.39-2.82 1.07-4l3.47 6h.01c.69 1.19 1.95 2 3.45 2 .45 0 .88-.09 1.29-.23l-2.4 4.14C7 19.37 4 16.04 4 12m11 0a3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3 3 3 0 0 1 3 3m-3-8a7.98 7.98 0 0 1 6.92 4H12c-1.94 0-3.55 1.38-3.92 3.21L5.7 7.08A7.98 7.98 0 0 1 12 4m0-2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-circles-communities.svg�������������0000664�0000000�0000000�00000000625�14753064456�0031363�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 12c-1.11 0-2 .89-2 2a2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m-3 8a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m2 7a2 2 0 0 0-2-2c-1.11 0-2 .89-2 2a2 2 0 0 0 2 2 2 2 0 0 0 2-2m-5 3a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-circles-extended.svg����������������0000664�0000000�0000000�00000001036�14753064456�0030624�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 19a2 2 0 0 1-2-2c0-1.11.89-2 2-2a2 2 0 0 1 2 2 2 2 0 0 1-2 2m0-6a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4m-6-1.9a1.9 1.9 0 0 0-1.9 1.9 1.9 1.9 0 0 0 1.9 1.9 1.9 1.9 0 0 0 1.9-1.9 1.9 1.9 0 0 0-1.9-1.9M6 19a2 2 0 0 1-2-2c0-1.11.89-2 2-2a2 2 0 0 1 2 2 2 2 0 0 1-2 2m0-6a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4m6-9a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2c0-1.11.89-2 2-2m0 6a4 4 0 0 0 4-4 4 4 0 0 0-4-4 4 4 0 0 0-4 4 4 4 0 0 0 4 4"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-circles-group.svg�������������������0000664�0000000�0000000�00000000740�14753064456�0030161�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 10a2 2 0 0 0-2 2 2 2 0 0 0 2 2c1.11 0 2-.89 2-2a2 2 0 0 0-2-2m0 6a4 4 0 0 1-4-4 4 4 0 0 1 4-4 4 4 0 0 1 4 4 4 4 0 0 1-4 4m5.5-5H14V8l4 4-4 4v-3h-3.5zM5 6c-.45 0-.89.05-1.31.14C5.63 3.05 9.08 1 13 1c6.08 0 11 4.92 11 11s-4.92 11-11 11c-3.92 0-7.37-2.05-9.31-5.14.42.09.86.14 1.31.14.8 0 1.56-.16 2.25-.44A7.96 7.96 0 0 0 13 20a8 8 0 0 0 8-8 8 8 0 0 0-8-8c-2.26 0-4.29.93-5.75 2.44C6.56 6.16 5.8 6 5 6"/></svg>��������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-circles.svg�������������������������0000664�0000000�0000000�00000000576�14753064456�0027036�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.66 15H17c1 0 2-.2 2.87-.54-.7 4.27-4.4 7.54-8.87 7.54-5 0-9-4.03-9-9 0-4.47 3.27-8.17 7.54-8.87C9.2 5 9 6 9 7v.34c-2.32.82-4 3.04-4 5.66a6 6 0 0 0 6 6c2.62 0 4.84-1.68 5.66-4m.34-5a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m0-9a6 6 0 0 1 6 6 6 6 0 0 1-6 6 6 6 0 0 1-6-6c0-3.32 2.69-6 6-6"/></svg>����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-classroom.svg�����������������������0000664�0000000�0000000�00000001160�14753064456�0027402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 2H1a1 1 0 0 0-1 1v18a1 1 0 0 0 1 1h22a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1m-1 18h-2v-1h-5v1H2V4h20zM10.29 9.71A1.71 1.71 0 0 1 12 8c.95 0 1.71.77 1.71 1.71 0 .95-.76 1.72-1.71 1.72s-1.71-.77-1.71-1.72m-4.58 1.58c0-.71.58-1.29 1.29-1.29a1.29 1.29 0 0 1 1.29 1.29c0 .71-.58 1.28-1.29 1.28S5.71 12 5.71 11.29m10 0A1.29 1.29 0 0 1 17 10a1.29 1.29 0 0 1 1.29 1.29c0 .71-.58 1.28-1.29 1.28s-1.29-.57-1.29-1.28M20 15.14V16H4v-.86c0-.94 1.55-1.71 3-1.71.55 0 1.11.11 1.6.3.75-.69 2.1-1.16 3.4-1.16s2.65.47 3.4 1.16c.49-.19 1.05-.3 1.6-.3 1.45 0 3 .77 3 1.71"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-cloud.svg���������������������������0000664�0000000�0000000�00000000672�14753064456�0026515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 14.75C23 18.2 20.2 21 16.75 21h-9.5C3.8 21 1 18.2 1 14.75c0-2.14 1.08-4.03 2.71-5.15C4.58 5.82 7.96 3 12 3s7.42 2.82 8.29 6.6A6.22 6.22 0 0 1 23 14.75M16.63 17c1.31 0 2.37-1.06 2.37-2.37 0-1.28-1-2.33-2.28-2.38l.03-.5a4.754 4.754 0 0 0-8.32-3.14c1.5.29 2.8 1.11 3.71 2.25L9.5 13.5c-.42-.73-1.21-1.25-2.12-1.25-1.32 0-2.38 1.06-2.38 2.38 0 1.27 1 2.3 2.25 2.37z"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-downasaur.svg�����������������������0000664�0000000�0000000�00000000360�14753064456�0027404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2v1h-1v6h-1v1H9v1H8v1H7v1H5v-1H4v-1H3V9H2v6h1v1h1v1h1v1h1v4h2v-1H7v-1h1v-1h1v-1h1v1h1v3h2v-1h-1v-4h1v-1h1v-1h1v-3h1v1h1v-2h-2V9h5V8h-3V7h5V3h-1V2m-7 1h1v1h-1Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-drive.svg���������������������������0000664�0000000�0000000�00000000251�14753064456�0026511�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.71 3.5 1.15 15l3.43 6 6.55-11.5M9.73 15 6.3 21h13.12l3.43-6m-.57-1L15.42 2H8.57l6.86 12z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-earth.svg���������������������������0000664�0000000�0000000�00000001575�14753064456�0026515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 12.14c-.91-1.37-1.86-2.36-2.86-2.95-1-.6-1.87-.81-2.64-.64-.73.18-1.36.59-1.86 1.25-.44.59-.64 1.26-.64 2.01V12c0 .78.11 1.58.36 2.39.09.25.14.25.19 0 .12-.62.41-1.08.86-1.36.46-.28 1.06-.27 1.81.02.75.3 1.48.95 2.2 1.9 1.28 1.72 2.78 2.77 4.5 3.14 2.22.32 3.89-.39 5.02-2.09.31-.61.56-1.14.7-1.61.09-.31.05-.34-.14-.09-.47.62-1.1 1.03-1.9 1.2-.8.2-1.71 0-2.74-.5-1.03-.57-1.98-1.5-2.86-2.86m4.97-3.98c-1.56-2.35-3.25-3.66-5.06-3.99-1.44-.22-3 .28-4.69 1.5-.22.16-.32.24-.31.26.02.02.15-.04.4-.16 2.5-1.22 4.91.06 7.22 3.84.5.84 1.02 1.5 1.57 1.97s1.06.75 1.55.84c.48.08.92.08 1.31-.04.39-.13.74-.33 1.04-.61 0-.6-.09-1.27-.31-1.97-.5.12-.95.08-1.34-.12-.39-.18-.85-.71-1.38-1.52M12 2c2.75 0 5.1 1 7.05 2.95S22 9.25 22 12s-1 5.1-2.95 7.05S14.75 22 12 22s-5.1-1-7.05-2.95S2 14.75 2 12s1-5.1 2.95-7.05S9.25 2 12 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-fit.svg�����������������������������0000664�0000000�0000000�00000000657�14753064456�0026174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 4a5 5 0 0 1 5 5c0 1.38-.56 2.63-1.46 3.54L12 21.07l-8.54-8.53C2.56 11.63 2 10.38 2 9a5 5 0 0 1 5-5c1.38 0 2.63.56 3.54 1.46L12 6.93l1.46-1.47C14.37 4.56 15.62 4 17 4m-1.41 3.59L9.17 14 12 16.83l6.41-6.42c.37-.36.59-.86.59-1.41a2 2 0 0 0-2-2c-.55 0-1.05.22-1.41.59m-7.18 0C8.05 7.22 7.55 7 7 7a2 2 0 0 0-2 2c0 .55.22 1.05.59 1.41l1.46 1.47 2.83-2.83z"/></svg>���������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-glass.svg���������������������������0000664�0000000�0000000�00000000351�14753064456�0026512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-3.25 16h-1.5V8.9L6.72 18H4.66L15.45 6.5c.21-.24.55-.31.82-.2.29.12.48.39.48.7z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-hangouts.svg������������������������0000664�0000000�0000000�00000000340�14753064456�0027227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15 11-1 2h-1.5l1-2H12V8h3m-4 3-1 2H8.5l1-2H8V8h3m.5-6A8.5 8.5 0 0 0 3 10.5a8.5 8.5 0 0 0 8.5 8.5h.5v3.5c4.86-2.35 8-7.5 8-12A8.5 8.5 0 0 0 11.5 2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-keep.svg����������������������������0000664�0000000�0000000�00000000523�14753064456�0026326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2h16a2 2 0 0 1 2 2v13.33L17.33 22H4a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2m13 15v3.25L20.25 17zm-7 2h4v-1h1v-5a5.002 5.002 0 0 0-3-9 5.002 5.002 0 0 0-3 9v5h1zm4-2h-4v-2h4zM12 5c2.21 0 4 1.79 4 4 0 1.5-.8 2.77-2 3.46V14h-4v-1.54C8.8 11.77 8 10.5 8 9c0-2.21 1.79-4 4-4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-lens.svg����������������������������0000664�0000000�0000000�00000000465�14753064456�0026350�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2h12a4 4 0 0 1 4 4v6h-2V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h6v2H6a4 4 0 0 1-4-4V6a4 4 0 0 1 4-4m6 6a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m6 8a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-maps.svg����������������������������0000664�0000000�0000000�00000001320�14753064456�0026336�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.27 6c1.01 2.17.78 4.73-.33 6.81-.94 1.69-2.29 3.12-3.44 4.69-.5.7-1 1.45-1.37 2.26-.13.27-.22.55-.32.83s-.19.56-.28.84c-.09.26-.2.57-.53.57-.39 0-.5-.44-.58-.74-.24-.73-.48-1.43-.85-2.1-.42-.79-.95-1.52-1.49-2.23zM9.12 8.42l-3.3 3.92c.61 1.29 1.52 2.39 2.39 3.49.21.25.42.51.62.78L13 11.67l-.04.01c-1.46.5-3.08-.24-3.66-1.68-.08-.17-.14-.37-.18-.57a3 3 0 0 1 0-1zm-2.54-3.8-.01.01c-1.62 2.05-1.9 4.9-.93 7.31L9.63 7.2l-.05-.05zm7.64-2.26L11 6.17l.04-.01c1.34-.46 2.84.12 3.52 1.34.15.28.27.58.31.88.06.38.08.65.01 1.02v.01l3.2-3.8a7 7 0 0 0-3.85-3.24zM9.89 6.89l3.91-4.65-.04-.01C13.18 2.08 12.59 2 12 2c-1.97 0-3.83.85-5.15 2.31l-.02.01z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-my-business.svg���������������������0000664�0000000�0000000�00000001520�14753064456�0027656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 8.5c0 1.37-1.12 2.5-2.5 2.5S17 9.87 17 8.5c0 1.37-1.12 2.5-2.5 2.5S12 9.87 12 8.5c0 1.37-1.12 2.5-2.5 2.5S7 9.87 7 8.5C7 9.87 5.88 11 4.5 11S2 9.87 2 8.5l1.39-5.42S3.68 2 4.7 2h14.6c1.02 0 1.31 1.08 1.31 1.08zm-1 3.7V20c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2v-7.8a3.96 3.96 0 0 0 4-.58c.69.55 1.56.88 2.5.88.95 0 1.82-.33 2.5-.88.69.55 1.56.88 2.5.88.95 0 1.82-.33 2.5-.88.68.55 1.56.88 2.5.88.53 0 1.04-.11 1.5-.3m-2 5.13c0-.2 0-.41-.05-.63l-.03-.16h-2.97v1.17h1.81c-.06.22-.14.44-.31.62-.33.33-.78.51-1.26.51-.5 0-.99-.21-1.35-.56-.69-.71-.69-1.86.02-2.58.69-.7 1.83-.7 2.55-.03l.14.13.84-.85-.16-.14c-.56-.52-1.3-.81-2.08-.81h-.01c-.81 0-1.57.31-2.14.87-.59.58-.92 1.34-.92 2.13 0 .8.31 1.54.88 2.09a3.2 3.2 0 0 0 2.22.91h.02c.8 0 1.51-.29 2.03-.8.47-.48.77-1.2.77-1.87"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-nearby.svg��������������������������0000664�0000000�0000000�00000000422�14753064456�0026660�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.36 10.46-7.82-7.82c-.85-.85-2.23-.85-3.08 0l-7.82 7.82c-.85.85-.85 2.23 0 3.08l7.82 7.82c.85.85 2.23.85 3.08 0l7.82-7.82c.85-.85.85-2.23 0-3.08M12 19l-7-7 7-7 7 7zm4.5-7L12 16.5 7.5 12 12 7.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-play.svg����������������������������0000664�0000000�0000000�00000000450�14753064456�0026346�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 20.5v-17c0-.59.34-1.11.84-1.35L13.69 12l-9.85 9.85c-.5-.25-.84-.76-.84-1.35m13.81-5.38L6.05 21.34l8.49-8.49zm3.35-4.31c.34.27.59.69.59 1.19s-.22.9-.57 1.18l-2.29 1.32-2.5-2.5 2.5-2.5zM6.05 2.66l10.76 6.22-2.27 2.27z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-plus.svg����������������������������0000664�0000000�0000000�00000000433�14753064456�0026365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 11h-2V9h-2v2h-2v2h2v2h2v-2h2M8 11v2.4h4c-.2 1-1.2 3-4 3-2.4 0-4.3-2-4.3-4.4S5.6 7.6 8 7.6c1.4 0 2.3.6 2.8 1.1l1.9-1.8C11.5 5.7 9.9 5 8 5c-3.9 0-7 3.1-7 7s3.1 7 7 7c4 0 6.7-2.8 6.7-6.8 0-.5 0-.8-.1-1.2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-podcast.svg�������������������������0000664�0000000�0000000�00000002100�14753064456�0027030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.68 7.22v1.4c0 .68-.55 1.24-1.25 1.24-.69 0-1.25-.56-1.25-1.24v-1.4a1.25 1.25 0 0 1 1.25-1.25c.7 0 1.25.56 1.25 1.25m-4.43 1.14v7.27a1.25 1.25 0 0 1-2.5 0V8.36c0-.68.56-1.25 1.25-1.25s1.25.57 1.25 1.25M22 11.3v1.4c0 .68-.56 1.24-1.25 1.24s-1.25-.56-1.25-1.24v-1.4c0-.69.56-1.24 1.25-1.24S22 10.61 22 11.3m-17.5 0v1.4c0 .68-.56 1.24-1.25 1.24-.7 0-1.25-.56-1.25-1.24v-1.4c0-.69.55-1.24 1.25-1.24.69 0 1.25.55 1.25 1.24m4.32 4.08v1.39c0 .68-.56 1.23-1.25 1.23s-1.25-.55-1.25-1.23v-1.39c0-.7.56-1.25 1.25-1.25a1.25 1.25 0 0 1 1.25 1.25m4.43 3.98v1.39A1.25 1.25 0 0 1 12 22a1.25 1.25 0 0 1-1.25-1.25v-1.39A1.25 1.25 0 0 1 12 18.11a1.25 1.25 0 0 1 1.25 1.25m0-16.11v1.39A1.25 1.25 0 0 1 12 5.89a1.25 1.25 0 0 1-1.25-1.25V3.25c0-.7.56-1.25 1.25-1.25a1.25 1.25 0 0 1 1.25 1.25m4.43 9.09v4.43c0 .69-.55 1.23-1.25 1.23-.69 0-1.25-.54-1.25-1.23v-4.43c0-.7.56-1.25 1.25-1.25.7 0 1.25.55 1.25 1.25M8.82 7.22v4.43c0 .7-.56 1.25-1.25 1.25a1.25 1.25 0 0 1-1.25-1.25V7.22a1.25 1.25 0 0 1 1.25-1.25 1.25 1.25 0 0 1 1.25 1.25"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-spreadsheet.svg���������������������0000664�0000000�0000000�00000000420�14753064456�0027705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 11V9h-8V5H9v4H5v2h4v8h2v-8zm0-8c.5 0 1 .2 1.39.61C20.8 4 21 4.5 21 5v14c0 .5-.2 1-.61 1.39-.39.41-.89.61-1.39.61H5c-.5 0-1-.2-1.39-.61C3.2 20 3 19.5 3 19V5c0-.5.2-1 .61-1.39C4 3.2 4.5 3 5 3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-street-view.svg���������������������0000664�0000000�0000000�00000001057�14753064456�0027663�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.95 9.27a3.64 3.64 0 0 0 3.64-3.64c0-2-1.63-3.63-3.64-3.63a3.63 3.63 0 0 0-3.63 3.63c0 2.01 1.62 3.64 3.63 3.64m-2.59 3.7s-1.09 2.97-1.4 3.53c-.11.21-.09.27-.36.27s-.69-.27-.69-.27-.2-.13-.12-.36c.24-.74 1.33-5.06 1.56-5.89.25-.89.93-.86.93-.86h.65l2.1 3.65 2.11-3.65h.78s.31.04.54.31c.24.27.29.74.29.74l1.39 5.4s.1.38.07.49c-.04.17-.13.17-.13.17s-.39.12-.61.19c-.4.13-.47-.25-.47-.25l-1.3-3.4-.15 8.96H12.6l-.33-5.11s-.06-.13-.24-.13a.25.25 0 0 0-.23.13L11.45 22H9.5l-.13-9.03z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google-translate.svg�����������������������0000664�0000000�0000000�00000001310�14753064456�0027372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 5h-9.12L10 2H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h7l1 3h8a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2M7.17 14.59a4.09 4.09 0 0 1-4.09-4.09 4.09 4.09 0 0 1 4.09-4.09c1.04 0 1.99.37 2.74 1.09l.09.04-1.25 1.18-.06-.05c-.29-.27-.78-.59-1.52-.59-1.31 0-2.38 1.09-2.38 2.42s1.07 2.42 2.38 2.42c1.37 0 1.96-.87 2.12-1.46H7.08V9.91h3.95l.01.09c.04.19.05.38.05.59 0 2.35-1.59 4-3.92 4m6.03-1.71c.33.62.74 1.18 1.19 1.7l-.54.53zm.77-.76H13l-.33-1.04h3.99s-.34 1.31-1.56 2.74c-.52-.62-.89-1.23-1.13-1.7M21 20a1 1 0 0 1-1 1h-7l2-2-.81-2.77.92-.92L17.79 18l.71-.73-2.69-2.68c.9-1.03 1.6-2.25 1.92-3.51H19v-1.04h-3.64V9h-1.04v1.04h-1.96L11.18 6H20a1 1 0 0 1 1 1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/google.svg���������������������������������0000664�0000000�0000000�00000000511�14753064456�0025401�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.35 11.1h-9.17v2.73h6.51c-.33 3.81-3.5 5.44-6.5 5.44C8.36 19.27 5 16.25 5 12c0-4.1 3.2-7.27 7.2-7.27 3.09 0 4.9 1.97 4.9 1.97L19 4.72S16.56 2 12.1 2C6.42 2 2.03 6.8 2.03 12c0 5.05 4.13 10 10.22 10 5.35 0 9.25-3.67 9.25-9.09 0-1.15-.15-1.81-.15-1.81"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gradient-horizontal.svg��������������������0000664�0000000�0000000�00000000457�14753064456�0030122�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 13v-2h2v2m0 2v-2h2v2m-2-4V9h2v2M9 9V7h2v2m-2 8v-2h2v2M3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2m15 10v2h-2v-2m2-4v2h-2v-2m2-4v2h-2V7m-5-2v2h2V5h2v2h-2v2h2v2h-2v2h2v2h-2v2h2v2h-2v-2h-2v2H5V5Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gradient-vertical.svg����������������������0000664�0000000�0000000�00000000466�14753064456�0027542�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 9h2v2h-2zm-2 2h2v2H9zm4 0h2v2h-2zm2-2h2v2h-2zM7 9h2v2H7zm12-6H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2M9 18H7v-2h2zm4 0h-2v-2h2zm4 0h-2v-2h2zm2-7h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2h2v-2H5V5h14z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/grain.svg����������������������������������0000664�0000000�0000000�00000001064�14753064456�0025231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 12a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2M6 8a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m0 8a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m12-8a2 2 0 0 0 2-2 2 2 0 0 0-2-2 2 2 0 0 0-2 2 2 2 0 0 0 2 2m-4 8a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m4-4a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m-4-4a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m-4-4a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/graph-outline.svg��������������������������0000664�0000000�0000000�00000002130�14753064456�0026702�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 17c-.14 0-.26 0-.39.04L17.5 13.8c.45-.45.75-1.09.75-1.8a2.5 2.5 0 0 0-2.5-2.5c-.14 0-.25 0-.4.04L13.74 6.3c.47-.46.76-1.09.76-1.8a2.5 2.5 0 0 0-5 0c0 .7.29 1.34.76 1.79L8.65 9.54c-.15-.04-.26-.04-.4-.04a2.5 2.5 0 0 0-2.5 2.5c0 .71.29 1.34.75 1.79l-1.61 3.25C4.76 17 4.64 17 4.5 17a2.5 2.5 0 0 0 0 5A2.5 2.5 0 0 0 7 19.5c0-.7-.29-1.34-.76-1.79l1.62-3.25c.14.04.26.04.39.04s.25 0 .38-.04l1.63 3.25c-.47.45-.76 1.09-.76 1.79a2.5 2.5 0 0 0 5 0A2.5 2.5 0 0 0 12 17c-.13 0-.26 0-.39.04L10 13.8c.45-.45.75-1.09.75-1.8 0-.7-.29-1.33-.75-1.79l1.61-3.25c.13.04.26.04.39.04s.26 0 .39-.04L14 10.21a2.5 2.5 0 0 0 1.75 4.29c.13 0 .25 0 .38-.04l1.63 3.25c-.47.45-.76 1.09-.76 1.79a2.5 2.5 0 0 0 5 0 2.5 2.5 0 0 0-2.5-2.5m-15 3.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m8.5-1c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1M7.25 12c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1M11 4.5c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1m3.75 7.5c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1m4.75 8.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/graph.svg����������������������������������0000664�0000000�0000000�00000001410�14753064456�0025225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 17c-.13 0-.26 0-.39.04l-1.61-3.25a2.5 2.5 0 0 0-1.75-4.29c-.13 0-.25 0-.39.04l-1.63-3.25c.48-.45.77-1.08.77-1.79a2.5 2.5 0 0 0-5 0c0 .71.29 1.34.76 1.79L8.64 9.54c-.14-.04-.26-.04-.39-.04a2.5 2.5 0 0 0-1.75 4.29l-1.61 3.25C4.76 17 4.63 17 4.5 17a2.5 2.5 0 0 0 0 5A2.5 2.5 0 0 0 7 19.5c0-.7-.29-1.34-.76-1.79l1.62-3.25c.14.04.26.04.39.04s.25 0 .39-.04l1.63 3.25c-.47.45-.77 1.09-.77 1.79a2.5 2.5 0 0 0 5 0A2.5 2.5 0 0 0 12 17c-.13 0-.26 0-.39.04L10 13.79c.46-.45.75-1.08.75-1.79s-.29-1.34-.75-1.79l1.61-3.25c.13.04.26.04.39.04s.26 0 .39-.04L14 10.21c-.45.45-.75 1.09-.75 1.79a2.5 2.5 0 0 0 2.5 2.5c.13 0 .25 0 .39-.04l1.63 3.25c-.47.45-.77 1.09-.77 1.79a2.5 2.5 0 0 0 5 0 2.5 2.5 0 0 0-2.5-2.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/graphql.svg��������������������������������0000664�0000000�0000000�00000001464�14753064456�0025573�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 5.37-.44-.06L6 14.9c.24.21.4.48.47.78h11.06c.07-.3.23-.57.47-.78l-5.56-9.59zM6.6 16.53l4.28 2.53c.29-.27.69-.43 1.12-.43s.83.16 1.12.43l4.28-2.53zM12 22a1.68 1.68 0 0 1-1.68-1.68l.09-.56-4.3-2.55c-.31.36-.76.58-1.27.58a1.68 1.68 0 0 1-1.68-1.68c0-.79.53-1.45 1.26-1.64V9.36c-.83-.11-1.47-.82-1.47-1.68A1.68 1.68 0 0 1 4.63 6c.55 0 1.03.26 1.34.66l4.41-2.53-.06-.45c0-.93.75-1.68 1.68-1.68s1.68.75 1.68 1.68l-.06.45 4.41 2.53c.31-.4.79-.66 1.34-.66a1.68 1.68 0 0 1 1.68 1.68c0 .86-.64 1.57-1.47 1.68v5.11c.73.19 1.26.85 1.26 1.64a1.68 1.68 0 0 1-1.68 1.68c-.51 0-.96-.22-1.27-.58l-4.3 2.55.09.56A1.68 1.68 0 0 1 12 22M10.8 4.86 6.3 7.44l.02.24c0 .71-.44 1.32-1.06 1.57l.03 5.25zm2.4 0 5.51 9.64.03-5.25c-.62-.25-1.06-.86-1.06-1.57l.02-.24z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/grass.svg����������������������������������0000664�0000000�0000000�00000000766�14753064456�0025260�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20H2v-2h5.75C7 15.19 4.81 13 2 12.26c.64-.16 1.31-.26 2-.26 4.42 0 8 3.58 8 8m10-7.74c-.64-.16-1.31-.26-2-.26-2.93 0-5.5 1.58-6.88 3.93.29.66.53 1.35.67 2.07.13.65.21 1.32.21 2h8v-2h-5.76c.76-2.81 2.95-5 5.76-5.74M15.64 11c.78-2.07 2.23-3.82 4.09-5-4.29.16-7.73 3.67-7.73 8 .95-1.25 2.2-2.28 3.64-3m-4.22-2.15A8.53 8.53 0 0 0 6.7 4C8.14 5.86 9 8.18 9 10.71c0 .21-.03.41-.04.61.43.24.83.52 1.22.82a9.9 9.9 0 0 1 1.24-3.29"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/material/grave-stone.svg����������������������������0000664�0000000�0000000�00000000361�14753064456�0026362�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2h4c3.31 0 5 2.69 5 6v10.66C16.88 17.63 15.07 17 12 17s-4.88.63-7 1.66V8c0-3.31 1.69-6 5-6M8 8v1.5h8V8zm1 4v1.5h6V12zM3 22v-.69c2.66-1.69 10.23-5.47 18-.06V22z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/grease-pencil.svg��������������������������0000664�0000000�0000000�00000000511�14753064456�0026643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.62 1.5c-.51 0-1.02.19-1.41.59l-6.46 6.46 4.2 4.19 6.46-6.45c.79-.79.79-2.05 0-2.83l-1.37-1.37c-.39-.4-.9-.59-1.42-.59m-8.82 8-6.57 6.57.7.7c-.53.47-1.04 1.01-1.55 1.52-.78.79-.78 2.05 0 2.83s2.04.78 2.83 0c.51-.49 1.04-1.04 1.52-1.54l.7.69L14 13.7"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/greater-than-or-equal.svg������������������0000664�0000000�0000000�00000000217�14753064456�0030234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 2.27 20 10.14 6.5 18l-1-1.73 10.53-6.13L5.5 4zM20 20v2H5v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/greater-than.svg���������������������������0000664�0000000�0000000�00000000174�14753064456�0026513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5.5 4.14-1 1.72L15 12 4.5 18.14l1 1.72L19 12z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/greenhouse.svg�����������������������������0000664�0000000�0000000�00000000263�14753064456�0026275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3 4 9v12h16V9zm-2 7h4v9h-4zm6 0h2v3h-2zm-.67-2H8.67L12 5.5zM8 10v3H6v-3zm-2 5h2v4H6zm10 4v-4h2v4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/grid-large.svg�����������������������������0000664�0000000�0000000�00000000312�14753064456�0026141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2h16a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H4c-1.08 0-2-.9-2-2V4a2 2 0 0 1 2-2m0 2v7h7V4zm0 16h7v-7H4zm16 0v-7h-7v7zm0-16h-7v7h7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/grid-off.svg�������������������������������0000664�0000000�0000000�00000000573�14753064456�0025632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 2.77 1.28 1.5 22.5 22.72 21.23 24l-2-2H4c-1.08 0-2-.9-2-2V4.77zM10 4v3.68l-2-2V4H6.32l-2-2H20a2 2 0 0 1 2 2v15.7l-2-2V16h-1.68l-2-2H20v-4h-4v3.68l-2-2V10h-1.68l-2-2H14V4zm6 0v4h4V4zm0 16h1.23L16 18.77zM4 8h1.23L4 6.77zm6 6h1.23L10 12.77zm4 6v-3.23l-.77-.77H10v4zm-6 0v-4H4v4zm0-6v-3.23L7.23 10H4v4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/grid.svg�����������������������������������0000664�0000000�0000000�00000000405�14753064456�0025054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 4v4h4V4zm6 0v4h4V4zm0 6v4h4v-4zm0 6v4h4v-4zm-2 4v-4h-4v4zm-6 0v-4H4v4zm0-6v-4H4v4zm0-6V4H4v4zm2 6h4v-4h-4zM4 2h16a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H4c-1.08 0-2-.9-2-2V4a2 2 0 0 1 2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/grill-outline.svg��������������������������0000664�0000000�0000000�00000001263�14753064456�0026720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 22a3 3 0 1 0-2.82-4H9.14l1.99-3.06a6.4 6.4 0 0 0 1.74 0l1.02 1.56c.42-.5.96-.94 1.61-1.2l-.61-.93A7 7 0 0 0 19 8H5a7 7 0 0 0 4.12 6.37l-3.95 6.08a1 1 0 0 0 1.67 1.09l1-1.54h6.34A3 3 0 0 0 17 22m0-4a1 1 0 0 1 1 1c0 .55-.45 1-1 1s-1-.45-1-1a1 1 0 0 1 1-1m-9.58-8h9.16a5 5 0 0 1-9.16 0m1.99-3h1c.15-1.15.23-1.64-.91-2.96-.4-.5-.66-.77-.44-2.04h-.99a3.14 3.14 0 0 0 .89 2.96c.22.24.79.67.45 2.04m2.48 0h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.78-.46-2.04h-.99a3.14 3.14 0 0 0 .89 2.96c.23.24.8.67.45 2.04m2.52 0h1c.15-1.15.23-1.64-.91-2.96-.4-.5-.66-.77-.44-2.04h-.99a3.14 3.14 0 0 0 .89 2.96c.22.24.79.67.45 2.04"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/grill.svg����������������������������������0000664�0000000�0000000�00000002115�14753064456�0025240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.06 2c-.18 1.17.11 2.16.89 2.97.5.5.66 1.17.47 2.03h.99c.12-.55.14-1 .04-1.45-.09-.42-.4-.92-.95-1.52-.45-.56-.61-1.23-.45-2.03zm2.49 0c-.19 1.17.11 2.16.89 2.97.5.5.65 1.17.47 2.03h.98c.11-.55.14-1 .05-1.45-.1-.42-.41-.92-.94-1.52-.47-.56-.62-1.23-.47-2.03zm2.53 0c-.19 1.17.11 2.16.89 2.97.5.5.64 1.17.42 2.03h1.03c.13-.55.14-1 .05-1.45-.09-.42-.41-.92-.94-1.52-.47-.56-.62-1.23-.47-2.03zM5 8c0 1.42.39 2.7 1.14 3.84a6.9 6.9 0 0 0 3 2.55l-3.98 6.05c-.1.12-.16.31-.16.56 0 .41.16.69.44.84.12.1.31.16.56.16.41 0 .69-.16.84-.44l.99-1.59h6.37c.21.58.59 1.08 1.08 1.45.5.38 1.08.58 1.72.58.83 0 1.53-.31 2.13-.91.59-.59.87-1.29.87-2.09 0-.83-.28-1.53-.87-2.12-.6-.6-1.3-.88-2.13-.88-.64 0-1.22.17-1.72.55-.5.37-.86.86-1.08 1.45H9.14l1.97-3.05c.16.05.45.05.89.05s.73 0 .89-.05l.99 1.55c.41-.54.96-.96 1.59-1.22l-.56-.89c1.12-.5 2.09-1.39 2.88-2.62C18.59 10.5 19 9.27 19 8zm12 10c.3 0 .53.09.72.28s.28.44.28.72c0 .27-.09.5-.28.71-.18.2-.44.29-.72.29-.26 0-.5-.09-.71-.29A1 1 0 0 1 16 19c0-.3.09-.53.29-.72.21-.19.44-.28.71-.28"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/group.svg����������������������������������0000664�0000000�0000000�00000000311�14753064456�0025257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 1v4h1v14H1v4h4v-1h14v1h4v-4h-1V5h1V1h-4v1H5V1m0 3h14v1h1v14h-1v1H5v-1H4V5h1m1 1v8h3v4h9V9h-4V6M8 8h4v4H8m6-1h2v5h-5v-2h3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/guitar-acoustic.svg������������������������0000664�0000000�0000000�00000000574�14753064456�0027241�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.59 3H22v2h-1.59l-4.24 4.24c-.37-.56-.85-1.04-1.41-1.41zM12 8a4 4 0 0 1 4 4 3.99 3.99 0 0 1-3 3.87V16a5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5h.13c.45-1.76 2.04-3 3.87-3m0 2.5a1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5m-5.06 3.74-.71.7 2.83 2.83.71-.71z"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/guitar-electric.svg������������������������0000664�0000000�0000000�00000000551�14753064456�0027214�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.59 3H22v2h-1.59l-5.29 5.29-1.41-1.39zM12 9c.26 0 .5.1.71.3l2 2c.18.2.29.43.29.7l-.1.4-4 8c-.19.35-.54.53-.9.53-.35 0-.71-.18-.89-.53l-1.86-3.7-3.7-1.8c-.37-.2-.55-.55-.55-.9s.18-.7.55-.9l8-4c.14-.1.29-.1.45-.1m-2.65 2.82-.7.68 2.85 2.85.68-.7zm-1.41 1.41-.71.71 2.83 2.83.71-.71z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/guitar-pick-outline.svg��������������������0000664�0000000�0000000�00000001032�14753064456�0030020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 4.1c-.9-.8-2-1.3-3.2-1.6-.3-.1-2.2-.5-3.6-.5h-.4c-1.4 0-3.4.4-3.7.5-1.1.3-2.2.8-3.1 1.6C3 5.9 3 8.7 4 11c1 2.5 2.1 4.7 3.6 6.9C8.8 19.6 10.1 22 12 22s3.2-2.4 4.5-4.1c1.5-2.1 2.6-4.4 3.6-6.9.9-2.3.9-5.1-1.1-6.9m-.8 6.1c-1.1 2.7-2.1 4.7-3.4 6.5-.2.2-.3.5-.5.7-.5.8-1.7 2.6-2.3 2.6-.7 0-1.8-1.7-2.4-2.6-.2-.2-.3-.5-.5-.7-1.2-1.8-2.3-3.8-3.4-6.5-.2-.7-1-3.2.6-4.7.5-.5 1.3-.8 2.3-1.1.4 0 2.1-.4 3.2-.4h.3c1.1 0 2.8.3 3.2.4 1 .3 1.8.6 2.3 1.1 1.7 1.5.9 4 .6 4.7"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/guitar-pick.svg����������������������������0000664�0000000�0000000�00000000443�14753064456�0026350�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 4.1c-.9-.8-2-1.3-3.2-1.6-.3-.1-2.2-.5-3.6-.5h-.4c-1.4 0-3.4.4-3.7.5-1.1.3-2.2.8-3.1 1.6C3 5.9 3 8.7 4 11c1 2.5 2.1 4.7 3.6 6.9C8.8 19.6 10.1 22 12 22s3.2-2.4 4.5-4.1c1.5-2.1 2.6-4.4 3.6-6.9.9-2.3.9-5.1-1.1-6.9"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/guy-fawkes-mask.svg������������������������0000664�0000000�0000000�00000001016�14753064456�0027141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 13a9 9 0 0 1-9 9 9 9 0 0 1-9-9l.03-8.57C5.68 2.88 8.76 2 12.05 2c3.25 0 6.31.87 8.95 2.38zm-8 6.93c3.39-.49 6-3.43 6-6.93V5.59C16.9 4.57 14.54 4 12.05 4c-2.55 0-4.97.6-7.11 1.66L5 13c0 3.5 2.63 6.44 6 6.93V18h2zM11 16H8l-2-3 3 1h1l1-1h2l1 1h1l3-1-2 3h-3l-1-1zM6 9.03c.64-.63 1.5-.98 2.5-.98.95 0 1.84.35 2.5.98-.66.62-1.55.97-2.5.97-1 0-1.86-.35-2.5-.97m7 0c.64-.63 1.5-.98 2.5-.98.95 0 1.84.35 2.5.98-.66.62-1.55.97-2.5.97-1 0-1.86-.35-2.5-.97"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/gymnastics.svg�����������������������������0000664�0000000�0000000�00000000306�14753064456�0026310�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2M1 9h6l7-5 1.31 1.5-4.17 3H14L21.8 4 23 5.4 14.5 12 14 22h-2l-.5-10L8 11H1z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hail.svg�����������������������������������0000664�0000000�0000000�00000000601�14753064456�0025042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 16h3v6H4zM19 2.39c-.08 1.47-.45 2.74-1.14 3.82S16.22 8 15 8.39V22h-2v-6h-2v6H9V10.08c-.28.09-.5.2-.61.33C7.45 11.16 7 12.19 7 13.5v.5H5v-.5c0-1.97.72-3.56 2.13-4.78C8.53 7.56 10.16 7 12 7c1.41 0 2.56-.36 3.47-1.05C16.5 5.11 17 3.95 17 2.5V2h2zM12 2a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hair-dryer-outline.svg���������������������0000664�0000000�0000000�00000001206�14753064456�0027652�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 12.73A70 70 0 0 0 17 11V4s-6.5-2-9.5-2a5.5 5.5 0 0 0-1.38 10.82L7 19h1a3 3 0 0 0 1.46 2.33A3.15 3.15 0 0 1 11 24h1a4.12 4.12 0 0 0-1.91-3.45C9.39 20 9 19.63 9 19h1M4 7.5A3.5 3.5 0 0 1 7.5 4 37 37 0 0 1 15 5.5v4A37 37 0 0 1 7.5 11 3.5 3.5 0 0 1 4 7.5M22 9a4.3 4.3 0 0 1-2.22-.55A3.4 3.4 0 0 0 18 8V7a4.3 4.3 0 0 1 2.22.55A3.4 3.4 0 0 0 22 8m0-2a3.4 3.4 0 0 1-1.78-.45A4.3 4.3 0 0 0 18 5v1a3.4 3.4 0 0 1 1.78.45A4.3 4.3 0 0 0 22 7m0 3a3.4 3.4 0 0 1-1.78-.45A4.3 4.3 0 0 0 18 9v1a3.4 3.4 0 0 1 1.78.45A4.3 4.3 0 0 0 22 11M9 7.5A1.5 1.5 0 1 1 7.5 6 1.5 1.5 0 0 1 9 7.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hair-dryer.svg�����������������������������0000664�0000000�0000000�00000001063�14753064456�0026176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 9a4.3 4.3 0 0 1-2.22-.55A3.4 3.4 0 0 0 18 8V7a4.3 4.3 0 0 1 2.22.55A3.4 3.4 0 0 0 22 8m0-2a3.4 3.4 0 0 1-1.78-.45A4.3 4.3 0 0 0 18 5v1a3.4 3.4 0 0 1 1.78.45A4.3 4.3 0 0 0 22 7m0 3a3.4 3.4 0 0 1-1.78-.45A4.3 4.3 0 0 0 18 9v1a3.4 3.4 0 0 1 1.78.45A4.3 4.3 0 0 0 22 11m-12 1.73A70 70 0 0 0 17 11V4s-6.5-2-9.5-2a5.5 5.5 0 0 0-1.38 10.82L7 19h1a3 3 0 0 0 1.46 2.33A3.15 3.15 0 0 1 11 24h1a4.12 4.12 0 0 0-1.91-3.45C9.39 20 9 19.63 9 19h1m-2.5-9A2.5 2.5 0 1 1 10 7.5 2.5 2.5 0 0 1 7.5 10"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/halloween.svg������������������������������0000664�0000000�0000000�00000000736�14753064456�0026114�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 6c.97 0 1.87.5 2.61 1.38.55-.59 1.2-1.02 1.89-1.23V4a2 2 0 0 1 2-2h2v2h-2v2.15c.69.21 1.34.64 1.89 1.23C15.63 6.5 16.53 6 17.5 6 20 6 22 9.36 22 13.5S20 21 17.5 21c-.97 0-1.87-.5-2.61-1.38C14.08 20.5 13.08 21 12 21s-2.08-.5-2.89-1.38C8.37 20.5 7.47 21 6.5 21 4 21 2 17.64 2 13.5S4 6 6.5 6M9 10l-1.25 2.25h2.5zm6 0-1.25 2.25h2.5zm-7 7h2l1-1 1 1h2l1-1 1 1 1.5-3-3.58.62L13 16l-1-1h-2l-1 1-1-1-2-1z"/></svg>����������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hamburger-check.svg������������������������0000664�0000000�0000000�00000000531�14753064456�0027156�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 9H3s0-6 9-6 9 6 9 6m-7.65 8H3v1c0 1.66 1.34 3 3 3h7.35c-.22-.63-.35-1.3-.35-2s.13-1.37.35-2m8.51-3.27A2 2 0 0 0 20 11h-9l-2.5 2L6 11H4c-1.1 0-2 .9-2 2s.9 2 2 2h10.54c1.1-1.22 2.69-2 4.46-2 1.04 0 2 .26 2.86.73m-.52 2.11-3.59 3.59-1.59-1.59L15 19l2.75 3 4.75-4.75z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hamburger-minus.svg������������������������0000664�0000000�0000000�00000000461�14753064456�0027236�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 9H3s0-6 9-6 9 6 9 6m-7.65 8H3v1c0 1.66 1.34 3 3 3h7.35c-.22-.63-.35-1.3-.35-2s.13-1.37.35-2m8.51-3.27A2 2 0 0 0 20 11h-9l-2.5 2L6 11H4c-1.1 0-2 .9-2 2s.9 2 2 2h10.54c1.1-1.22 2.69-2 4.46-2 1.04 0 2 .26 2.86.73M15 18v2h8v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hamburger-off.svg��������������������������0000664�0000000�0000000�00000000534�14753064456�0026656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11a2 2 0 1 1 0 4h-1.8l-4-4zm.42 8.77v-.01L17.66 17h-.01l-2-2h.01l-4-4-2-2-7.27-7.27L1.11 3l3.01 3C3 7.5 3 9 3 9h4.11l2 2H4c-1.1 0-2 .9-2 2s.9 2 2 2h9.11l2 2H3v1c0 1.66 1.34 3 3 3h12c.33 0 .65-.07.94-.17l1.9 1.9 1.27-1.27zM21 9s0-6-9-6c-2.12 0-3.72.34-4.95.85L12.2 9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hamburger-plus.svg�������������������������0000664�0000000�0000000�00000000505�14753064456�0027065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 9H3s0-6 9-6 9 6 9 6m-7.65 8H3v1c0 1.66 1.34 3 3 3h7.35c-.22-.63-.35-1.3-.35-2s.13-1.37.35-2m8.51-3.27A2 2 0 0 0 20 11h-9l-2.5 2L6 11H4c-1.1 0-2 .9-2 2s.9 2 2 2h10.54c1.1-1.22 2.69-2 4.46-2 1.04 0 2 .26 2.86.73M20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hamburger-remove.svg�����������������������0000664�0000000�0000000�00000000631�14753064456�0027377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 9H3s0-6 9-6 9 6 9 6m-7.65 8H3v1c0 1.66 1.34 3 3 3h7.35c-.22-.63-.35-1.3-.35-2s.13-1.37.35-2m8.51-3.27A2 2 0 0 0 20 11h-9l-2.5 2L6 11H4c-1.1 0-2 .9-2 2s.9 2 2 2h10.54c1.1-1.22 2.69-2 4.46-2 1.04 0 2 .26 2.86.73m.68 3.15-1.42-1.41L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19z"/></svg>�������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hamburger.svg������������������������������0000664�0000000�0000000�00000000341�14753064456�0026102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 13c0 1.11-.89 2-2 2H4a2 2 0 1 1 0-4h9l2.5 2 2.5-2h2a2 2 0 0 1 2 2M12 3C3 3 3 9 3 9h18s0-6-9-6M3 18c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3v-1H3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hammer-screwdriver.svg���������������������0000664�0000000�0000000�00000000567�14753064456�0027746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.06 13.09 5.63 5.59-3.32 3.28-5.59-5.59v-.92l2.36-2.36zm.91-2.53L16 9.6l-4.79 4.8v1.97L5.58 22 2.3 18.68l5.59-5.59h1.97l.78-.78L6.8 8.46H5.5L2.69 5.62 5.31 3l2.8 2.8v1.31L12 10.95l2.66-2.66-.96-1.01L15 5.97h-2.66l-.65-.65L15 2l.66.66v2.66L16.97 4l3.28 3.28c1.09 1.1 1.09 2.89 0 3.98l-1.97-2.01z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hammer-sickle.svg��������������������������0000664�0000000�0000000�00000001077�14753064456�0026656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 20.59 20.59 22l-3.14-3.14c-.56.37-1.15.7-1.79.92-1.66.58-3.46.62-5.13.1-1.03-.3-1.97-.83-2.78-1.51l-3.19 3.19c-.56.59-1.53.59-2.12 0-.58-.56-.58-1.56 0-2.12l3.38-3.38 2.65-.52a6.1 6.1 0 0 0 2.81 1.96c1.16.35 2.44.34 3.59-.04.29-.09.57-.2.83-.34L7.6 9l-1.77 1.78L3 7.95 7.95 3l4.24 1.41L9 7.6l8.31 8.29c.19-.18.34-.36.49-.56 1.5-1.97 1.62-4.91.29-7.33C16.78 5.57 14.5 3.55 12 2c1.41.5 2.76 1.17 4 2.04s2.43 1.89 3.33 3.21c.9 1.29 1.54 2.87 1.67 4.54.1 1.68-.34 3.44-1.3 4.86-.2.35-.46.63-.7.91z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hammer-wrench.svg��������������������������0000664�0000000�0000000�00000000721�14753064456�0026665�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.78 15.3 6 6 2.11-2.16-6-6zm3.72-5.2c-.39 0-.81-.05-1.14-.19L4.97 21.25l-2.11-2.11 7.41-7.4L8.5 9.96l-.72.7-1.45-1.41v2.86l-.7.7-3.52-3.56.7-.7h2.81l-1.4-1.41 3.56-3.56a2.976 2.976 0 0 1 4.22 0L9.89 5.74l1.41 1.4-.71.71 1.79 1.78 1.82-1.88c-.14-.33-.2-.75-.2-1.12a3.49 3.49 0 0 1 3.5-3.52c.59 0 1.11.14 1.58.42L16.41 6.2l1.5 1.5 2.67-2.67c.28.47.42.97.42 1.6 0 1.92-1.55 3.47-3.5 3.47"/></svg>�����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hammer.svg���������������������������������0000664�0000000�0000000�00000000351�14753064456�0025400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 19.63 13.43 8.2l-.71-.7 1.42-1.43L12 3.89c1.2-1.19 3.09-1.19 4.27 0l3.6 3.61-1.42 1.41h2.84l.71.71-3.55 3.59-.71-.71V9.62l-1.47 1.42-.71-.71L4.13 21.76z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-back-left-off-outline.svg�������������0000664�0000000�0000000�00000001303�14753064456�0031112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3l2.45 2.45C3.21 5.87 3 6.41 3 7v9c0 4.42 3.58 8 8 8 2.94 0 5.62-1.55 7.12-4l2.72 2.73zM11 22c-3.31 0-6-2.69-6-6V6.91l1 .98V12h2V9.89l1 1V12h1.11l6.54 6.54A6.35 6.35 0 0 1 11 22M8 4.8 6.21 3c.38-.88 1.26-1.5 2.29-1.5.23 0 .46.03.67.09C9.54.66 10.44 0 11.5 0c1.23 0 2.25.89 2.46 2.06.17-.06.35-.06.54-.06A2.5 2.5 0 0 1 17 4.5v5.89c.34-.31.76-.54 1.22-.66L19 9.5c.82-.21 1.69.11 2.18.85.38.57.4 1.31.15 1.95l-1.66 4.17-1.54-1.54 1.37-3.48-.5.14c-.5.12-.85.46-1 .91l-.66 1.64L15 11.8V4.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.3l-2-2V2.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v5.3l-2-2V4c0-.28-.22-.5-.5-.5S8 3.72 8 4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-back-left-off.svg���������������������0000664�0000000�0000000�00000000670�14753064456�0027443�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3l2.1 2.1c-.12.19-.21.4-.21.65V16c0 4.42 3.58 8 8 8 2.93 0 5.58-1.61 6.97-4.14l2.87 2.87zM5.5 12V7.39l1 1V12zm4.5 0H9v-1.11l1 1zm6 .8-2.5-2.5V3.25a1.25 1.25 0 0 1 2.5 0zm3.5 3.48-2.34-2.32 1-2.49c.22-.55.68-.97 1.24-1.16l.79-.26a1 1 0 0 1 1.24 1.32zM9 5.8 6.5 3.3v-.55a1.25 1.25 0 0 1 2.5 0zm3.5 3.5L10 6.8V1.25a1.25 1.25 0 0 1 2.5 0z"/></svg>������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-back-left-outline.svg�����������������0000664�0000000�0000000�00000001117�14753064456�0030345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 16c0 4.42 3.58 8 8 8 3.43 0 6.5-2.09 7.77-5.27l2.56-6.43c.25-.64.23-1.38-.15-1.95A2 2 0 0 0 19 9.5l-.78.23c-.46.12-.88.35-1.22.66V4.5A2.5 2.5 0 0 0 14.5 2c-.19 0-.37 0-.54.06A2.5 2.5 0 0 0 11.5 0c-1.06 0-1.96.66-2.33 1.59A2.5 2.5 0 0 0 6 4v.55c-.16-.05-.33-.05-.5-.05A2.5 2.5 0 0 0 3 7zm2-9c0-.28.22-.5.5-.5s.5.22.5.5v5h2V4c0-.28.22-.5.5-.5s.5.22.5.5v8h2V2.5c0-.28.22-.5.5-.5s.5.22.5.5V12h2V4.5c0-.28.22-.5.5-.5s.5.22.5.5V15h2l1-2.5c.15-.45.5-.79 1-.91l.5-.14L16.91 18c-.96 2.41-3.3 4-5.91 4-3.31 0-6-2.69-6-6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-back-left.svg�������������������������0000664�0000000�0000000�00000000503�14753064456�0026666�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 16V5.75a1.25 1.25 0 0 1 2.5 0V12h1V2.75a1.25 1.25 0 0 1 2.5 0V12h1V1.25a1.25 1.25 0 0 1 2.5 0V12h1V3.25a1.25 1.25 0 0 1 2.5 0V15h.75l1.41-3.53c.22-.55.68-.97 1.24-1.16l.79-.26a1 1 0 0 1 1.24 1.32L18.4 19c-1.21 3-4.14 5-7.4 5-4.42 0-8-3.58-8-8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-back-right-off-outline.svg������������0000664�0000000�0000000�00000001337�14753064456�0031304�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3 7 8.89v1.5c-.34-.31-.76-.54-1.22-.66L5 9.5c-.82-.21-1.69.11-2.18.85-.38.57-.4 1.31-.15 1.95l2.56 6.43A8.36 8.36 0 0 0 13 24c2.5 0 4.7-1.15 6.17-2.94l1.67 1.67zM13 22a6.36 6.36 0 0 1-5.91-4L4.5 11.45l.5.14c.5.12.85.46 1 .91L7 15h2v-4.11l8.75 8.75A5.96 5.96 0 0 1 13 22M9 5.8 7.09 3.89A2.48 2.48 0 0 1 9.5 2c.19 0 .37 0 .54.06A2.5 2.5 0 0 1 12.5 0c1.06 0 1.96.66 2.33 1.59A2.5 2.5 0 0 1 18 4v.55c.16-.05.33-.05.5-.05A2.5 2.5 0 0 1 21 7v9c0 .56-.06 1.11-.17 1.63L19 15.8V7c0-.28-.22-.5-.5-.5s-.5.22-.5.5v5h-2V4c0-.28-.22-.5-.5-.5s-.5.22-.5.5v7.8l-2-2V2.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.3l-2-2V4.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-back-right-off.svg��������������������0000664�0000000�0000000�00000000677�14753064456�0027635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.84 22.73-1.67-1.67C17.7 22.85 15.5 24 13 24c-3.26 0-6.19-2-7.4-5l-3.03-7.63a1 1 0 0 1 1.24-1.32l.79.26c.56.19 1.02.61 1.24 1.16L7.25 15H8V9.89L1.11 3l1.28-1.27 19.72 19.73zM14 1.25a1.25 1.25 0 0 0-2.5 0V8.3l2.5 2.5zM21 16V5.75a1.25 1.25 0 0 0-2.5 0V12h-1V2.75a1.25 1.25 0 0 0-2.5 0v9.05l5.83 5.83c.11-.52.17-1.07.17-1.63M10.5 3.25a1.25 1.25 0 0 0-2.5 0V4.8l2.5 2.5z"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-back-right-outline.svg����������������0000664�0000000�0000000�00000001126�14753064456�0030530�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 7a2.5 2.5 0 0 0-2.5-2.5c-.17 0-.34 0-.5.05V4a2.5 2.5 0 0 0-3.17-2.41A2.51 2.51 0 0 0 12.5 0c-1.23 0-2.25.89-2.46 2.06C9.87 2 9.69 2 9.5 2A2.5 2.5 0 0 0 7 4.5v5.89c-.34-.31-.76-.54-1.22-.66L5 9.5c-.82-.21-1.69.11-2.18.85-.38.57-.4 1.31-.15 1.95l2.56 6.43A8.36 8.36 0 0 0 13 24c4.42 0 8-3.58 8-8zm-2 9c0 3.31-2.69 6-6 6a6.36 6.36 0 0 1-5.91-4L4.5 11.45l.5.14c.5.12.85.46 1 .91L7 15h2V4.5c0-.28.22-.5.5-.5s.5.22.5.5V12h2V2.5c0-.28.22-.5.5-.5s.5.22.5.5V12h2V4c0-.28.22-.5.5-.5s.5.22.5.5v8h2V7c0-.28.22-.5.5-.5s.5.22.5.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-back-right.svg������������������������0000664�0000000�0000000�00000000502�14753064456�0027050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 24c-3.26 0-6.19-2-7.4-5l-3.03-7.63a1 1 0 0 1 1.24-1.32l.79.26c.56.19 1.02.61 1.24 1.16L7.25 15H8V3.25a1.25 1.25 0 0 1 2.5 0V12h1V1.25a1.25 1.25 0 0 1 2.5 0V12h1V2.75a1.25 1.25 0 0 1 2.5 0V12h1V5.75a1.25 1.25 0 0 1 2.5 0V16c0 4.42-3.58 8-8 8"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-clap-off.svg��������������������������0000664�0000000�0000000�00000001622�14753064456�0026530�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3l1.86 1.86c-.25.1-.47.33-.47.64L2 11.79c-.13 2.04.77 3.99 2.35 5.21-.02-.88.11-1.79.42-2.67L6.8 8.69l1.17 1.17-1.79 4.98a6.09 6.09 0 0 0 1.72 6.63 6.13 6.13 0 0 0 8.66-.55l1.16-1.31 3.12 3.12zM5 9.84l-.5-.25.21-2.91V6.6l1.26 1.26zm4.59 3.91-.43-.38.61-1.71.88.88zm5.35-2.01 3.64-4.12c.35-.4.96-.44 1.35-.09.4.35.44.97.07 1.36l-3.7 4.21zm4.89-1.48c.35-.4.96-.44 1.35-.09.39.33.44.96.09 1.33L18.2 15l-1.35-1.35zm1.85 3.41c.4.33.43.96.08 1.33l-1.66 1.9-1.36-1.36 1.58-1.78c.35-.4.96-.44 1.36-.09M15.55 7c.35-.4.95-.44 1.36-.09.39.35.43.96.09 1.35l-2.6 2.94-1.36-1.36zm-3.89 1.46 2.3-4.71c.23-.47.81-.67 1.28-.44.48.23.68.81.44 1.28l-.38.78c-.33.13-.63.36-.87.63L12 8.78zM9.08 5.88 7.64 4.44l1.33-2.7c.23-.48.8-.67 1.28-.44.47.23.67.8.44 1.28zm.57.57 2.4-4.91a.95.95 0 0 1 1.28-.44c.48.23.67.8.45 1.28l-2.7 5.5z"/></svg>��������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-clap.svg������������������������������0000664�0000000�0000000�00000001644�14753064456�0025764�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.9 21.47a6.09 6.09 0 0 1-1.72-6.63l2.13-5.93a.765.765 0 0 1 1.38-.13l.31.55c.24.39.29.87.14 1.3l-.98 2.74.43.38L15.55 7c.35-.4.95-.44 1.36-.09.39.35.43.96.09 1.35l-4.45 5.03.58.51 5.45-6.18c.35-.4.96-.44 1.35-.09.4.35.44.97.07 1.36l-5.44 6.18.58.51 4.69-5.32c.35-.4.96-.44 1.35-.09s.44.96.09 1.33l-4.69 5.34.57.51 3.17-3.59c.35-.4.96-.44 1.36-.09s.43.96.08 1.33l-5.2 5.92a6.13 6.13 0 0 1-8.66.55m3.69-12.25L14.43 6c.24-.27.54-.5.87-.63l.38-.78a.947.947 0 0 0-.44-1.28.964.964 0 0 0-1.28.44l-2.51 5.14c.05.11.11.22.14.33M11 8v.05l2.78-5.67a.965.965 0 0 0-.45-1.28.95.95 0 0 0-1.28.44L9.41 6.95c.65.11 1.22.48 1.59 1.05m-6.23 6.33L6.9 8.4c.27-.75.9-1.26 1.65-1.43l2.14-4.39a.96.96 0 0 0-.44-1.28.95.95 0 0 0-1.28.44L5 9.84l-.5-.25.21-2.91c.04-.45-.14-.9-.46-1.22L3.79 5c-.47-.43-1.24-.14-1.29.5L2 11.79c-.13 2.04.77 3.99 2.35 5.21-.02-.88.11-1.79.42-2.67"/></svg>��������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-coin-outline.svg����������������������0000664�0000000�0000000�00000000657�14753064456�0027455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5m0 8c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3m3 6h-2c0-1.2-.75-2.28-1.87-2.7L8.97 11H1v11h6v-1.44l7 1.94 8-2.5v-1c0-1.66-1.34-3-3-3M5 20H3v-7h2zm8.97.41L7 18.5V13h1.61l5.82 2.17c.34.13.57.46.57.83 0 0-2-.05-2.3-.15l-2.38-.79-.63 1.9 2.38.79c.51.17 1.04.25 1.58.25H19c.39 0 .74.24.9.57z"/></svg>���������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-coin.svg������������������������������0000664�0000000�0000000�00000000476�14753064456�0025777�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 12c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5m5.45 5.6c-.39-.4-.88-.6-1.45-.6h-7l-2.08-.73.33-.94L13 16h2.8c.35 0 .63-.14.86-.37s.34-.51.34-.82c0-.54-.26-.91-.78-1.12L8.95 11H7v9l7 2 8.03-3c.01-.53-.19-1-.58-1.4M5 11H.984v11H5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-cycle.svg�����������������������������0000664�0000000�0000000�00000001140�14753064456�0026133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 13c-1.32 0-2.45.74-3.05 1.81l-3.22-2.63-2.27.82-1.09-1.68 1.34.37 2.66-2.19-.94-1.14-2.03 1.67L7.96 9h-.01c-.41-.15-.87-.11-1.26.14-.65.42-.86 1.25-.53 1.93-.21-.04-.43-.07-.66-.07C3 11 1 13 1 15.5S3 20 5.5 20s4.5-2 4.5-4.5c0-.13-.03-.25-.04-.38L13 14l3 2.5c0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5m-14 5.5c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3m14 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2M6.44 7.57c-.59-.57-.59-1.51 0-2.07.59-.61 1.53-.61 2.12 0 .59.56.59 1.5 0 2.07-.59.58-1.53.58-2.12 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-extended-outline.svg������������������0000664�0000000�0000000�00000000437�14753064456�0030321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 15v1l-8 2.5-7-1.9V18H1V7h8l6.2 2.3c1 .4 1.8 1.5 1.8 2.7h2c1.7 0 3 1.3 3 3M5 16V9H3v7zm14.9-1.4q-.3-.6-.9-.6h-5.4c-.5 0-1.1-.1-1.6-.2L9.7 13l.6-1.9 2.4.8c.3 0 2.3.1 2.3.1 0-.4-.2-.7-.6-.8L8.6 9H7v5.5l7 1.9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-extended.svg��������������������������0000664�0000000�0000000�00000000321�14753064456�0026634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 13q.9 0 1.5.6c.3.4.5.9.5 1.4l-8 3-7-2V7h1.9l7.3 2.7c.5.2.8.6.8 1.1 0 .3-.1.6-.3.8s-.6.4-.9.4H13l-1.8-.7-.3.9 2.1.8zM1 7h4v11H1z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-front-left-outline.svg����������������0000664�0000000�0000000�00000001070�14753064456�0030573�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 10.5v5c0 4.69 3.81 8.5 8.5 8.5s8.5-3.81 8.5-8.5V7a2.5 2.5 0 0 0-2.5-2.5c-.17 0-.34 0-.5.05V4a2.5 2.5 0 0 0-3.17-2.41A2.51 2.51 0 0 0 11.5 0c-1.23 0-2.25.89-2.46 2.06C8.87 2 8.69 2 8.5 2A2.5 2.5 0 0 0 6 4.5v3.55C5.84 8 5.67 8 5.5 8A2.5 2.5 0 0 0 3 10.5m2 0c0-.28.22-.5.5-.5s.5.22.5.5V15c1.66 0 3 1.34 3 3h2c0-2.05-1.23-3.81-3-4.58V4.5c0-.28.22-.5.5-.5s.5.22.5.5V11h2V2.5c0-.28.22-.5.5-.5s.5.22.5.5V11h2V4c0-.28.22-.5.5-.5s.5.22.5.5v8h2V7c0-.28.22-.5.5-.5s.5.22.5.5v8.5a6.5 6.5 0 1 1-13 0z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-front-left.svg������������������������0000664�0000000�0000000�00000000525�14753064456�0027122�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 9.25v6.5C3 20.31 6.69 24 11.25 24s8.25-3.69 8.25-8.25v-10a1.25 1.25 0 0 0-2.5 0V12h-1V2.75a1.25 1.25 0 0 0-2.5 0V11h-1V1.25a1.25 1.25 0 0 0-2.5 0V11H9V3.25a1.25 1.25 0 0 0-2.5 0v10.78c1.97.25 3.5 1.93 3.5 3.97H9c0-1.65-1.35-3-3-3h-.5V9.25a1.25 1.25 0 0 0-2.5 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-front-right-outline.svg���������������0000664�0000000�0000000�00000001071�14753064456�0030757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 8c-.17 0-.34 0-.5.05V4.5A2.5 2.5 0 0 0 15.5 2c-.19 0-.37 0-.54.06A2.5 2.5 0 0 0 12.5 0c-1.06 0-1.96.66-2.33 1.59A2.5 2.5 0 0 0 7 4v.55c-.16-.05-.33-.05-.5-.05A2.5 2.5 0 0 0 4 7v8.5c0 4.69 3.81 8.5 8.5 8.5s8.5-3.81 8.5-8.5v-5A2.5 2.5 0 0 0 18.5 8m.5 7.5a6.5 6.5 0 1 1-13 0V7c0-.28.22-.5.5-.5s.5.22.5.5v5h2V4c0-.28.22-.5.5-.5s.5.22.5.5v7h2V2.5c0-.28.22-.5.5-.5s.5.22.5.5V11h2V4.5c0-.28.22-.5.5-.5s.5.22.5.5v8.92c-1.77.77-3 2.53-3 4.58h2c0-1.66 1.34-3 3-3v-4.5c0-.28.22-.5.5-.5s.5.22.5.5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-front-right.svg�����������������������0000664�0000000�0000000�00000000557�14753064456�0027312�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.75 8c-.69 0-1.25.56-1.25 1.25V15H18c-1.65 0-3 1.35-3 3h-1c0-2.04 1.53-3.72 3.5-3.97V3.25a1.25 1.25 0 0 0-2.5 0V11h-1V1.25a1.25 1.25 0 0 0-2.5 0V11h-1V2.75a1.25 1.25 0 0 0-2.5 0V12H7V5.75a1.25 1.25 0 0 0-2.5 0v10c0 4.56 3.69 8.25 8.25 8.25S21 20.31 21 15.75v-6.5C21 8.56 20.44 8 19.75 8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-heart-outline.svg���������������������0000664�0000000�0000000�00000001101�14753064456�0027611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 3.23Q17.065 2 18.7 2c.91 0 1.67.33 2.3 1s.96 1.43 1 2.3c0 .7-.33 1.51-1 2.46s-1.32 1.74-1.97 2.39q-.975.96-3.03 2.85-2.085-1.89-3.06-2.85c-.975-.96-1.31-1.44-1.97-2.39S10 6 10 5.3c0-.91.32-1.67.97-2.3s1.43-.96 2.34-1c1.07 0 1.96.41 2.69 1.23M22 19v1l-8 2.5-7-1.94V22H1V11h7.97l6.16 2.3A2.89 2.89 0 0 1 17 16h2c1.66 0 3 1.34 3 3M5 20v-7H3v7zm14.9-1.43c-.16-.33-.51-.57-.9-.57h-5.35c-.54 0-1.07-.08-1.58-.25l-2.38-.79.63-1.9 2.38.79c.3.1 2.3.15 2.3.15 0-.37-.23-.7-.57-.83L8.61 13H7v5.5l6.97 1.91z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-heart.svg�����������������������������0000664�0000000�0000000�00000000555�14753064456�0026150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 17q.86 0 1.45.6t.58 1.4L14 22l-7-2v-9h1.95l7.27 2.69q.78.31.78 1.12 0 .47-.34.82t-.86.37H13l-1.75-.67-.33.94L13 17zM16 3.23Q17.06 2 18.7 2q1.36 0 2.3 1t1 2.3q0 1.03-1 2.46t-1.97 2.39T16 13q-2.08-1.89-3.06-2.85t-1.97-2.39T10 5.3q0-1.36.97-2.3t2.34-1q1.6 0 2.69 1.23M.984 11H5v11H.984z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-okay.svg������������������������������0000664�0000000�0000000�00000001201�14753064456�0025775�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.3 19.26 5.66-5.65 2.12 2.12-5.66 5.65zm3.2-8.13-3.1-3.08a1.7 1.7 0 0 0-.4-.29l-1.12-4.29a1.001 1.001 0 0 0-1.94.49L11 8.03 8.67 3.19c-.23-.5-.83-.69-1.33-.48-.5.24-.71.84-.47 1.34l1.69 3.54-3.37-3.34c-.39-.39-1.03-.39-1.42 0-.39.4-.38 1.03.01 1.42l3.72 3.7-.7.27-1.08.43-1.91 1.32s-.81 1.05-.88 1.5c-.08.45.79 2.71.79 2.71h.01c.16.34.5.58.9.58a1 1 0 0 0 1-1c0-.1-.03-.18-.06-.27l.02-.01L5 13.17l1.23-.98c.47.02 1.48.1 1.97.13 2.73 2.45.15 3.41.15 3.41l-3.46 1.06-.17.14a.94.94 0 0 0-.3.75l.02 1.07 6.43-.5c.38.01.74-.13 1.02-.4l4.61-4.6c.53-.54.55-1.55 0-2.12"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-peace-variant.svg���������������������0000664�0000000�0000000�00000000573�14753064456�0027564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 19h8v3H7zm9.94-18c-.54-.09-1.07.25-1.18.8l-1.01 5.77c-.22-.03-.46-.07-.75-.1l-.43.03-1.16-5.7c-.1-.54-.63-.89-1.17-.8-.54.13-.89.66-.79 1.2l1.2 5.91-3.8 1.69c-.5.2-.85.73-.85 1.34v4.36c0 .8.73 1.5 1.5 1.5H15c.39 0 .74-.16 1-.43l.5-.41s.5-.38.5-.8V13s0-1.14-.87-1.7l1.58-9.1c.12-.54-.21-1.07-.77-1.2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-peace.svg�����������������������������0000664�0000000�0000000�00000001010�14753064456�0026105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 19h8v3H7zm9.15-7-3.18-1.66a.5.5 0 0 0-.37.16l-.3.31.59 2.42-.98.24-1.19-4.97-1.47.68 1.04 4.29-.97.23-1-4.11-.47.21c-.5.2-.85.73-.85 1.34v4.36c0 .8.73 1.5 1.5 1.5H15c.39 0 .74-.16 1-.43l.5-.41s.5-.38.5-.8V13.7s0-1.14-.85-1.7m.79-11c-.54-.09-1.07.25-1.18.8l-1.07 6.17c-.22-.03-.31-.11-.61-.14l-.43.05-1.24-6.08a1.02 1.02 0 0 0-1.17-.8c-.55.13-.9.66-.79 1.2l1.2 5.91.35 1.56c.28-.2.61-.33.97-.33h.34l3 1.61 1.41-8.75c.11-.54-.22-1.07-.78-1.2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-pointing-down.svg���������������������0000664�0000000�0000000�00000000426�14753064456�0027636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.9 21V11l-3.2 1.69-.2.03c-.31 0-.57-.12-.76-.32L5 11.63l4.9-4.2c.26-.27.6-.43 1-.43h6.5c.77 0 1.5.7 1.5 1.5v4.36c0 .61-.35 1.14-.85 1.34l-4.94 2.2-1.21.13V21a1 1 0 0 1-1 1 1 1 0 0 1-1-1m9-16h-8V2h8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-pointing-left.svg���������������������0000664�0000000�0000000�00000000422�14753064456�0027615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 9h10l-1.69-3.2-.03-.22c0-.29.12-.55.32-.74l.77-.74 4.2 4.9c.27.26.43.61.43 1v6.5c0 .77-.7 1.5-1.5 1.5h-4.36c-.61 0-1.14-.35-1.34-.85l-2.2-4.94L7.47 11H3a1 1 0 0 1-1-1 1 1 0 0 1 1-1m16 9v-8h3v8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-pointing-right.svg��������������������0000664�0000000�0000000�00000000407�14753064456�0030003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 9a1 1 0 0 1 1 1 1 1 0 0 1-1 1h-4.47l-.13 1.21-2.2 4.94c-.2.5-.73.85-1.34.85H8.5c-.8 0-1.5-.73-1.5-1.5V10c0-.39.16-.74.43-1l4.2-4.9.77.74c.2.19.32.45.32.74l-.03.22L11 9zM2 18v-8h3v8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-pointing-up.svg�����������������������0000664�0000000�0000000�00000000416�14753064456�0027312�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 3v10l3.2-1.69.22-.03c.29 0 .55.12.74.32l.74.77-4.9 4.2c-.26.27-.61.43-1 .43H6.5c-.77 0-1.5-.7-1.5-1.5v-4.36c0-.61.35-1.14.85-1.34l4.94-2.2L12 7.47V3a1 1 0 0 1 1-1 1 1 0 0 1 1 1M5 19h8v3H5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-saw.svg�������������������������������0000664�0000000�0000000�00000000346�14753064456�0025635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.8 17-3.9-5.4L20 2l2 3v3h-3v3h-3v3h-3v3m-3.3 1.7-.5 2.8-1.6 1.2c-.9.6-2.1.4-2.8-.5l-3.5-4.9c-.6-.9-.4-2.1.5-2.8l3.3-2.3zM4.6 15 3 16.1 6.5 21l1.6-1.2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-wash-outline.svg����������������������0000664�0000000�0000000�00000001137�14753064456�0027461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17 5 .62 1.37L19 7l-1.38.63L17 9l-.64-1.37L15 7l1.36-.63zm3 9c1.1 0 2-.9 2-2s-2-4-2-4-2 2.9-2 4 .9 2 2 2m-9-7.9V4h2c.57 0 1.1.17 1.55.45L16 3c-.85-.61-1.87-1-3-1H7.5v2H9v2.11A5.06 5.06 0 0 0 5.25 9.5h2.16C7.94 8.61 8.89 8 10 8c1.62 0 2.94 1.29 3 2.9l2 .75V11a5 5 0 0 0-4-4.9M22 19v1l-8 2.5-7-1.94V22H1V11h7.97l6.16 2.3A2.89 2.89 0 0 1 17 16h2c1.66 0 3 1.34 3 3M5 20v-7H3v7zm14.9-1.43c-.16-.33-.51-.57-.9-.57h-5.35c-.54 0-1.07-.08-1.58-.25l-2.38-.79.63-1.9 2.38.79c.3.1 2.3.15 2.3.15 0-.37-.23-.7-.57-.83L8.61 13H7v5.5l6.97 1.91z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-wash.svg������������������������������0000664�0000000�0000000�00000000675�14753064456�0026012�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17 5 .62 1.37L19 7l-1.38.63L17 9l-.64-1.37L15 7l1.36-.63zm-6 1.13V4h2c.57 0 1.1.17 1.55.45L16 3c-.85-.61-1.87-1-3-1H7.5v2H9v2.14A4.99 4.99 0 0 0 5.26 9.5h3.98L15 11.65v-.62a5 5 0 0 0-4-4.9M1 22h4V11H1zm19-5h-7l-2.09-.73.33-.94L13 16h2.82c.65 0 1.18-.53 1.18-1.18 0-.49-.31-.93-.77-1.11L8.97 11H7v9l7 2 8-3a2 2 0 0 0-2-2m0-3c1.1 0 2-.9 2-2s-2-4-2-4-2 2.9-2 4 .9 2 2 2"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-water.svg�����������������������������0000664�0000000�0000000�00000000732�14753064456�0026164�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.42 22.5H5.33C3.5 22.5 2 21 2 19.17v-6.09c0-.9.36-1.75 1-2.37l5.63-5.54s1.03 1.05 1.04 1.08a.985.985 0 0 1 .11 1.16C9.77 7.44 8 10 8 10h10.67a1.25 1.25 0 0 1 0 2.5h-5.84v.83h7.92a1.25 1.25 0 0 1 0 2.5h-7.92v.84h7.09a1.25 1.25 0 0 1 0 2.5h-7.09V20h4.59a1.25 1.25 0 0 1 0 2.5M13.5 4.8S12 6.46 12 7.5c0 2 3 2 3 0 0-1.04-1.5-2.7-1.5-2.7m5-3.8S16 3.76 16 5.5c0 3.33 5 3.33 5 0C21 3.76 18.5 1 18.5 1"/></svg>��������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-wave-outline.svg����������������������0000664�0000000�0000000�00000001502�14753064456�0027455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.03 4.95 3.5 8.5c-3.33 3.31-3.33 8.69 0 12s8.69 3.33 12 0l6-6c1-.97 1-2.56 0-3.54-.1-.12-.23-.23-.37-.32l.37-.39c1-.97 1-2.56 0-3.54-.14-.16-.33-.3-.5-.41.38-.92.21-2.02-.54-2.77-.87-.87-2.22-.96-3.2-.28a2.517 2.517 0 0 0-3.88-.42l-2.51 2.51c-.09-.14-.2-.27-.32-.39a2.53 2.53 0 0 0-3.52 0m1.41 1.42c.2-.2.51-.2.71 0s.2.51 0 .71l-3.18 3.18a3 3 0 0 1 0 4.24l1.41 1.41a5 5 0 0 0 1.12-5.36l6.3-6.3c.2-.2.51-.2.7 0s.21.51 0 .71l-4.59 4.6 1.41 1.41 6.01-6.01c.2-.2.51-.2.71 0s.2.51 0 .71l-6.01 6.01 1.41 1.41 4.95-4.95c.2-.2.51-.2.71 0s.2.51 0 .71l-5.66 5.65 1.41 1.42 3.54-3.54c.2-.2.51-.2.71 0s.2.51 0 .71l-6 6.01c-2.54 2.54-6.65 2.54-9.19 0s-2.54-6.65 0-9.19zM23 17c0 3.31-2.69 6-6 6v-1.5c2.5 0 4.5-2 4.5-4.5zM1 7c0-3.31 2.69-6 6-6v1.5c-2.5 0-4.5 2-4.5 4.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hand-wave.svg������������������������������0000664�0000000�0000000�00000001153�14753064456�0026002�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 17c0 3.31-2.69 6-6 6v-1.5c2.5 0 4.5-2 4.5-4.5zM1 7c0-3.31 2.69-6 6-6v1.5c-2.5 0-4.5 2-4.5 4.5zm7-2.68-4.59 4.6c-3.22 3.22-3.22 8.45 0 11.67s8.45 3.22 11.67 0l7.07-7.09c.49-.47.49-1.26 0-1.75a1.25 1.25 0 0 0-1.77 0l-4.42 4.42-.71-.71 6.54-6.54c.49-.49.49-1.28 0-1.77s-1.29-.49-1.79 0L14.19 13l-.69-.73 6.87-6.89c.49-.49.49-1.28 0-1.77s-1.28-.49-1.77 0l-6.89 6.89-.71-.7 5.5-5.48c.5-.49.5-1.28 0-1.77s-1.28-.49-1.77 0l-7.62 7.62a4 4 0 0 1-.33 5.28l-.71-.71a3 3 0 0 0 0-4.24l-.35-.35 4.07-4.07c.49-.49.49-1.28 0-1.77-.5-.48-1.29-.48-1.79.01"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/handball.svg�������������������������������0000664�0000000�0000000�00000000666�14753064456�0025705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.83 10.43a6.93 6.93 0 0 1 2.56 4.43 6.64 6.64 0 0 1-.89 4.64l-1.72-1a5 5 0 0 0 .66-2.5 5.2 5.2 0 0 0-.98-2.94L9.18 23.93l-1.74-.98 3-5.2-1.73-.99-1.5 2.58-1.71-.98 5.13-8.91A7 7 0 0 1 8.8 5.46a6.9 6.9 0 0 1 .89-4.36l1.74 1.03a4.84 4.84 0 0 0-.52 3.77 4.74 4.74 0 0 0 2.3 3.03M16 5a2 2 0 1 0 2 2 2 2 0 0 0-2-2m-2.5-4A1.5 1.5 0 1 0 15 2.5 1.5 1.5 0 0 0 13.5 1"/></svg>��������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/handcuffs.svg������������������������������0000664�0000000�0000000�00000001545�14753064456�0026076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.24 6.76c-1.84-1.85-4.59-2.23-6.82-1.17l-.96-.96a.996.996 0 0 0-1.41 0l-.08.09C10.83 3.75 10 3 9 3c-1.1 0-2 .9-2 2 0 .09 0 .18.03.26C6.42 5.61 6 6.25 6 7c0 .46.16.87.42 1.21A.97.97 0 0 0 6 9v1.35c-2.33.82-4 3.04-4 5.65 0 3.31 2.69 6 6 6s6-2.69 6-6a5.99 5.99 0 0 0-4-5.65V9a.97.97 0 0 0-.42-.79c.26-.34.42-.75.42-1.21 0-.09 0-.18-.03-.26.18-.1.33-.24.46-.36C11.36 6.88 12 7.86 12 9v.08c.13.07.25.17.38.25.19-.42.45-.83.79-1.16a4.01 4.01 0 0 1 5.66 0 4.01 4.01 0 0 1 0 5.66c-.8.8-1.83 1.17-2.9 1.17.07.32.07.66.07 1s-.03.67-.07 1c1.57 0 3.12-.57 4.31-1.76a5.98 5.98 0 0 0 0-8.48M9 4c.55 0 1 .45 1 1 0 .33-.17.61-.42.79C9.22 5.31 8.65 5 8 5c0-.55.45-1 1-1M7.42 6.21c.36.48.93.79 1.58.79 0 .55-.45 1-1 1s-1-.45-1-1c0-.33.17-.61.42-.79M12 16c0 2.21-1.79 4-4 4s-4-1.79-4-4 1.79-4 4-4 4 1.79 4 4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hands-pray.svg�����������������������������0000664�0000000�0000000�00000001260�14753064456�0026175�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.43 9.67c.04.11.07.21.07.33v5.22c0 .5-.19.98-.53 1.35l-2.79 3.05-3.4-3.4L6 15 8.8 2.86a1.114 1.114 0 0 1 2.2.25v4.96a2 2 0 0 0-.5-.07c-1.1 0-2 .9-2 2v3c0 .28.22.5.5.5s.5-.22.5-.5v-3c0-.55.45-1 1-1 .19 0 .35.07.5.16.12.07.21.16.3.26.03.04.06.08.08.13.02.04.04.08.05.12M2 19l4 3 1.17-1.27-3.45-3.45zm16-4L15.2 2.86a1.114 1.114 0 0 0-2.2.25v4.96c.16-.04.33-.07.5-.07 1.1 0 2 .9 2 2v3c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-3c0-.55-.45-1-1-1-.19 0-.35.07-.5.16-.12.07-.21.16-.29.26-.03.04-.07.08-.09.13-.02.04-.04.08-.05.12-.04.11-.07.21-.07.33v5.22c0 .5.19.98.53 1.35l2.79 3.05 3.4-3.4zm2.28 2.28-3.45 3.45L18 22l4-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/handshake-outline.svg����������������������0000664�0000000�0000000�00000001246�14753064456�0027536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.71 8.71c1.25-1.25.68-2.71 0-3.42l-3-3c-1.26-1.25-2.71-.68-3.42 0L13.59 4H11C9.1 4 8 5 7.44 6.15L3 10.59v4l-.71.7c-1.25 1.26-.68 2.71 0 3.42l3 3c.54.54 1.12.74 1.67.74.71 0 1.36-.35 1.75-.74l2.7-2.71H15c1.7 0 2.56-1.06 2.87-2.1 1.13-.3 1.75-1.16 2-2C21.42 14.5 22 13.03 22 12V9h-.59zM20 12c0 .45-.19 1-1 1h-1v1c0 .45-.19 1-1 1h-1v1c0 .45-.19 1-1 1h-4.41l-3.28 3.28c-.31.29-.49.12-.6.01l-2.99-2.98c-.29-.31-.12-.49-.01-.6L5 15.41v-4l2-2V11c0 1.21.8 3 3 3s3-1.79 3-3h7zm.29-4.71L18.59 9H11v2c0 .45-.19 1-1 1s-1-.55-1-1V8c0-.46.17-2 2-2h3.41l2.28-2.28c.31-.29.49-.12.6-.01l2.99 2.98c.29.31.12.49.01.6"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/handshake.svg������������������������������0000664�0000000�0000000�00000000543�14753064456�0026060�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 6h3l3.29-3.3a1 1 0 0 1 1.42 0l2.58 2.59a1 1 0 0 1 0 1.41L19 9h-8v2a1 1 0 0 1-1 1 1 1 0 0 1-1-1V8a2 2 0 0 1 2-2m-6 5v4l-2.29 2.29a1 1 0 0 0 0 1.41l2.58 2.59a1 1 0 0 0 1.42 0L11 17h4a1 1 0 0 0 1-1v-1h1a1 1 0 0 0 1-1v-1h1a1 1 0 0 0 1-1v-1h-7v1a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2V9Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hanger.svg���������������������������������0000664�0000000�0000000�00000000457�14753064456�0025402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4a3.5 3.5 0 0 0-3.5 3.5h2A1.5 1.5 0 0 1 12 6a1.5 1.5 0 0 1 1.5 1.5A1.5 1.5 0 0 1 12 9c-.55 0-1 .45-1 1v1.75L2.4 18.2A1 1 0 0 0 3 20h18a1 1 0 0 0 .6-1.8L13 11.75v-.9a3.5 3.5 0 0 0 2.5-3.35A3.5 3.5 0 0 0 12 4m0 9.5 6 4.5H6Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hard-hat.svg�������������������������������0000664�0000000�0000000�00000000604�14753064456�0025620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.87 12.15 9 6.46a9.9 9.9 0 0 1 6 0l-.87 5.69c-.07.49-.5.85-1 .85h-2.27a1 1 0 0 1-.99-.85M22 16c0-.79-.47-1.5-1.2-1.83A9.08 9.08 0 0 0 17 8.5l-1.76 4.84c-.14.4-.52.66-.94.66H9.7c-.42 0-.8-.26-.94-.66L7 8.5a9.09 9.09 0 0 0-3.8 5.66C2.47 14.5 2 15.2 2 16l6.45 1.84c.36.1.73.16 1.1.16h4.88c.37 0 .74-.06 1.1-.16z"/></svg>����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/harddisk-plus.svg��������������������������0000664�0000000�0000000�00000000724�14753064456�0026705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 9a1 1 0 1 0 1 1 1 1 0 0 0-1-1m0 0a1 1 0 1 0 1 1 1 1 0 0 0-1-1m6-7H6a2 2 0 0 0-2 2v9.09A5.5 5.5 0 0 1 5 13a5.7 5.7 0 0 1 2 .36 6 6 0 1 1 8.71 1.33l-1.92-2.42a1 1 0 0 0-1.37-.37l-.86.5a1 1 0 0 0-.37 1.37L12.1 16a6.1 6.1 0 0 1-2.1-.38 6 6 0 0 1 .19 6.38H18a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2m-3.42 17.58-2.49-6.31.86-.5 4.22 5.31M12 11a1 1 0 1 0-1-1 1 1 0 0 0 1 1m-3 9H6v3H4v-3H1v-2h3v-3h2v3h3Z"/></svg>��������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/harddisk-remove.svg������������������������0000664�0000000�0000000�00000001051�14753064456�0027211�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 9a1 1 0 1 0 1 1 1 1 0 0 0-1-1m0 0a1 1 0 1 0 1 1 1 1 0 0 0-1-1m6-7H6a2 2 0 0 0-2 2v9.09A5.5 5.5 0 0 1 5 13a5.7 5.7 0 0 1 2 .36 6 6 0 1 1 8.71 1.33l-1.92-2.42a1 1 0 0 0-1.37-.37l-.86.5a1 1 0 0 0-.37 1.37L12.1 16a6.1 6.1 0 0 1-2.1-.38 6 6 0 0 1 .19 6.38H18a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2m-3.42 17.58-2.49-6.31.86-.5 4.22 5.31M12 11a1 1 0 1 0-1-1 1 1 0 0 0 1 1M7.12 22.54 5 20.41l-2.12 2.13-1.42-1.42L3.59 19l-2.13-2.12 1.42-1.42L5 17.59l2.12-2.13 1.42 1.42L6.41 19l2.13 2.12Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/harddisk.svg�������������������������������0000664�0000000�0000000�00000000713�14753064456�0025722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m6 2a6 6 0 0 0-6 6c0 3.31 2.69 6 6.1 6l-.88-2.23a1.01 1.01 0 0 1 .37-1.37l.86-.5a1.01 1.01 0 0 1 1.37.37l1.92 2.42A5.98 5.98 0 0 0 18 10a6 6 0 0 0-6-6m0 5a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m-5 9a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m5.09-4.73 2.49 6.31 2.59-1.5-4.22-5.31z"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hat-fedora.svg�����������������������������0000664�0000000�0000000�00000000755�14753064456�0026151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.11 11.92q.03-.315.03-.63c0-3.43-1.43-7.15-2.86-7.15S13.42 5.57 12 5.57c-1.43 0-2.86-1.43-4.29-1.43s-2.85 3.65-2.85 7.15c0 .21 0 .42.02.63 2.34.53 4.72.8 7.12.79 2.45 0 4.83-.27 7.11-.79M3.45 18.18a29.7 29.7 0 0 0 17.09 0A2.142 2.142 0 0 0 22 16.17c0-.45-.14-.88-.39-1.25-.26-.36-.61-.63-1.05-.78-2.7.86-5.56 1.31-8.56 1.31S6.13 15 3.43 14.14c-.43.15-.78.43-1.04.79-.25.36-.39.79-.39 1.24 0 .94.61 1.73 1.45 2.01"/></svg>�������������������mkdocs-material-9.6.4/material/templates/.icons/material/hazard-lights.svg��������������������������0000664�0000000�0000000�00000000222�14753064456�0026665�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 12 2.33 4H9.68zm0-4L6.21 18H17.8zm0-6L1 21h22zm0 4 7.53 13H4.47z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hdmi-port.svg������������������������������0000664�0000000�0000000�00000000371�14753064456�0026034�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 7H3c-1.1 0-2 .9-2 2v5c0 1.1.9 2 2 2h1l1.4 1.4c.4.4.9.6 1.4.6h10.3c.5 0 1-.2 1.4-.6L20 16h1c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2M3 14V9h18v5h-1.8l-2 2H6.8l-2-2zm16-3H5v2h14z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hdr-off.svg��������������������������������0000664�0000000�0000000�00000000507�14753064456�0025457�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.5 15v-2h1.1l.9 2H21l-.9-2.1c.5-.2.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5H16v4.9l1.1 1.1zm0-4.5h2v1h-2zm-4.5 0v.4l1.5 1.5v-1.9c0-.8-.7-1.5-1.5-1.5h-1.9l1.5 1.5zm-3.5-1-7-7-1.1 1L6.9 9h-.4v2h-2V9H3v6h1.5v-2.5h2V15H8v-4.9l1.5 1.5V15h3.4l7.6 7.6 1.1-1.1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hdr.svg������������������������������������0000664�0000000�0000000�00000000435�14753064456�0024707�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11.5v-1c0-.8-.7-1.5-1.5-1.5H16v6h1.5v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4m-1.5 0h-2v-1h2zm-13-.5h-2V9H3v6h1.5v-2.5h2V15H8V9H6.5zM13 9H9.5v6H13c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5m0 4.5h-2v-3h2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/head-alert-outline.svg���������������������0000664�0000000�0000000�00000000545�14753064456�0027617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3c3.9 0 7 3.1 7 7 0 2.8-1.6 5.2-4 6.3V21H9v-3H8c-1.1 0-2-.9-2-2v-3H4.5c-.4 0-.7-.5-.4-.8L6 9.7C6.2 5.9 9.2 3 13 3m0-2C8.4 1 4.6 4.4 4.1 8.9L2.5 11c-.6.8-.6 1.8-.2 2.6.4.7 1 1.2 1.7 1.3V16c0 1.9 1.3 3.4 3 3.9V23h11v-5.5c2.5-1.7 4-4.4 4-7.5 0-5-4-9-9-9m1 14h-2v-2h2zm0-4h-2V5h2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/head-alert.svg�����������������������������0000664�0000000�0000000�00000000333�14753064456�0026135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3C9.2 3 6.2 5.9 6 9.7l-1.9 2.5c-.2.3 0 .8.4.8H6v3c0 1.1.9 2 2 2h1v3h7v-4.7c2.4-1.1 4-3.5 4-6.3 0-3.9-3.1-7-7-7m1 12h-2v-2h2v1m0-3h-2V5h2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/head-check-outline.svg���������������������0000664�0000000�0000000�00000000653�14753064456�0027565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3c3.88 0 7 3.14 7 7 0 2.8-1.63 5.19-4 6.31V21H9v-3H8c-1.11 0-2-.89-2-2v-3H4.5c-.42 0-.66-.5-.42-.81L6 9.66A7.003 7.003 0 0 1 13 3m0-2C8.42 1 4.61 4.43 4.06 8.91L2.5 11c-.58.72-.68 1.72-.26 2.59.36.72 1 1.21 1.76 1.36V16c0 1.86 1.28 3.43 3 3.87V23h11v-5.53c2.5-1.64 4-4.41 4-7.47 0-4.96-4.04-9-9-9m-.53 12L9 9.5l1.4-1.41 2.07 2.08L16.6 6 18 7.41z"/></svg>�������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/head-check.svg�����������������������������0000664�0000000�0000000�00000000405�14753064456�0026103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3C9.23 3 6.19 5.95 6 9.66l-1.92 2.53c-.24.31 0 .81.42.81H6v3c0 1.11.89 2 2 2h1v3h7v-4.69c2.37-1.12 4-3.51 4-6.31 0-3.86-3.12-7-7-7m-.53 10L9 9.5l1.4-1.41 2.07 2.08L16.6 6 18 7.41z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/head-cog-outline.svg�����������������������0000664�0000000�0000000�00000001765�14753064456�0027265�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3c3.88 0 7 3.14 7 7 0 2.8-1.63 5.19-4 6.31V21H9v-3H8c-1.11 0-2-.89-2-2v-3H4.5c-.42 0-.66-.5-.42-.81L6 9.66A7.003 7.003 0 0 1 13 3m0-2C8.42 1 4.61 4.43 4.06 8.91L2.5 11c-.58.72-.68 1.72-.26 2.59.36.72 1 1.21 1.76 1.36V16c0 1.86 1.28 3.43 3 3.87V23h11v-5.53c2.5-1.64 4-4.41 4-7.47 0-4.96-4.04-9-9-9m3.1 8.42V9c0-.15 0-.24-.06-.38l.89-.66c.07-.04.07-.18.07-.28l-.82-1.36c-.05-.09-.18-.14-.28-.09l-.99.42c-.18-.19-.41-.33-.65-.42L14.1 5.2c-.03-.14-.1-.2-.22-.2h-1.59c-.1 0-.19.06-.19.2l-.14 1.03c-.23.09-.46.23-.66.42l-1.03-.42c-.09-.05-.17 0-.23.09l-.8 1.36c-.05.14-.05.24.05.28l.84.66c0 .14-.03.28-.03.38 0 .14.03.28.03.42l-.84.65c-.1.05-.1.14-.05.24l.8 1.4c.06.1.14.1.23.1l.99-.43c.24.19.42.29.7.38l.14 1.08c0 .09.09.16.19.16h1.59c.12 0 .19-.07.22-.16l.16-1.08c.24-.09.47-.19.65-.37l.99.42c.1 0 .23 0 .28-.1l.82-1.4c0-.1 0-.19-.07-.24zm-3 1.03c-.78 0-1.42-.66-1.42-1.45s.61-1.41 1.42-1.41c.78 0 1.44.61 1.44 1.41s-.66 1.45-1.44 1.45"/></svg>�����������mkdocs-material-9.6.4/material/templates/.icons/material/head-cog.svg�������������������������������0000664�0000000�0000000�00000001514�14753064456�0025600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 8.58c.78 0 1.44.61 1.44 1.42s-.66 1.44-1.44 1.44-1.42-.66-1.42-1.44.61-1.42 1.42-1.42M13 3c3.88 0 7 3.14 7 7 0 2.8-1.63 5.19-4 6.31V21H9v-3H8c-1.11 0-2-.89-2-2v-3H4.5c-.42 0-.66-.5-.42-.81L6 9.66A7.003 7.003 0 0 1 13 3m3 7c0-.16 0-.25-.06-.39l.89-.66c.05-.04.09-.18.05-.28l-.8-1.36c-.05-.09-.19-.14-.28-.09l-.99.42c-.18-.19-.42-.33-.65-.42L14 6.19c-.03-.14-.08-.19-.22-.19h-1.59c-.1 0-.19.05-.19.19l-.14 1.03c-.23.09-.47.23-.66.42l-1.03-.42c-.09-.05-.17 0-.23.09l-.8 1.36c-.05.14-.05.24.05.28l.84.66c0 .14-.03.28-.03.39 0 .13.03.27.03.41l-.84.65c-.1.05-.1.14-.05.24l.8 1.4c.06.1.14.1.23.1l.99-.43c.23.19.42.29.7.38l.14 1.08c0 .09.09.17.19.17h1.59c.14 0 .19-.08.22-.17l.16-1.08c.23-.09.47-.19.65-.37l.99.42c.09 0 .23 0 .28-.1l.8-1.4c.04-.1 0-.19-.05-.24l-.83-.65z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/head-dots-horizontal-outline.svg�����������0000664�0000000�0000000�00000000727�14753064456�0031652�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3c3.9 0 7 3.1 7 7 0 2.8-1.6 5.2-4 6.3V21H9v-3H8c-1.1 0-2-.9-2-2v-3H4.5c-.4 0-.7-.5-.4-.8L6 9.7C6.2 5.9 9.2 3 13 3m0-2C8.4 1 4.6 4.4 4.1 8.9L2.5 11c-.6.8-.6 1.8-.2 2.6.4.7 1 1.2 1.7 1.3V16c0 1.9 1.3 3.4 3 3.9V23h11v-5.5c2.5-1.7 4-4.4 4-7.5 0-5-4-9-9-9m-3 9c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1m3 0c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1m3 0c-.5 0-1-.4-1-1s.5-1 1-1 1 .4 1 1-.5 1-1 1"/></svg>�����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/head-dots-horizontal.svg�������������������0000664�0000000�0000000�00000000556�14753064456�0030175�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3C9.23 3 6.19 5.95 6 9.66l-1.92 2.53c-.24.31 0 .81.42.81H6v3c0 1.11.89 2 2 2h1v3h7v-4.69c2.37-1.12 4-3.51 4-6.31 0-3.86-3.12-7-7-7m-3 8c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m3 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m3 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/head-flash-outline.svg���������������������0000664�0000000�0000000�00000000561�14753064456�0027603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3c3.9 0 7 3.1 7 7 0 2.8-1.6 5.2-4 6.3V21H9v-3H8c-1.1 0-2-.9-2-2v-3H4.5c-.4 0-.7-.5-.4-.8L6 9.7C6.2 5.9 9.2 3 13 3m0-2C8.4 1 4.6 4.4 4.1 8.9L2.5 11c-.6.8-.6 1.8-.2 2.6.4.7 1 1.2 1.7 1.3V16c0 1.9 1.3 3.4 3 3.9V23h11v-5.5c2.5-1.7 4-4.4 4-7.5 0-5-4-9-9-9m2 8-3.1 6 .6-4h-2.1l2.1-5H15l-1.5 3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/head-flash.svg�����������������������������0000664�0000000�0000000�00000000337�14753064456�0026127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3C9.2 3 6.2 6 6 9.7l-1.9 2.5c-.2.3 0 .8.4.8H6v3c0 1.1.9 2 2 2h1v3h7v-4.7c2.4-1.1 4-3.5 4-6.3 0-3.9-3.1-7-7-7m2 6-3.1 6 .6-4h-2l2-5H15l-1.5 3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/head-heart-outline.svg���������������������0000664�0000000�0000000�00000001060�14753064456�0027604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3c3.88 0 7 3.14 7 7 0 2.8-1.63 5.19-4 6.31V21H9v-3H8c-1.11 0-2-.89-2-2v-3H4.5c-.42 0-.66-.5-.42-.81L6 9.66A7.003 7.003 0 0 1 13 3m0-2C8.41 1 4.61 4.42 4.06 8.9L2.5 11h-.03l-.02.03c-.55.76-.62 1.76-.19 2.59.36.69 1 1.17 1.74 1.32V16c0 1.85 1.28 3.42 3 3.87V23h11v-5.5c2.5-1.67 4-4.44 4-7.5 0-4.97-4.04-9-9-9m4 7.83c0 1.54-1.36 2.77-3.42 4.64L13 14l-.58-.53C10.36 11.6 9 10.37 9 8.83c0-1.2.96-2.19 2.16-2.2h.04c.69 0 1.35.31 1.8.83.45-.52 1.11-.83 1.8-.83 1.2-.01 2.2.96 2.2 2.16z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/head-heart.svg�����������������������������0000664�0000000�0000000�00000000600�14753064456�0026126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3C9.23 3 6.19 5.95 6 9.66l-1.92 2.53c-.24.31 0 .81.42.81H6v3c0 1.11.89 2 2 2h1v3h7v-4.69c2.37-1.12 4-3.51 4-6.31 0-3.86-3.12-7-7-7m4 5.83c0 1.54-1.36 2.77-3.42 4.64L13 14l-.58-.53C10.36 11.6 9 10.37 9 8.83c0-1.2.96-2.19 2.16-2.2h.04c.69 0 1.35.31 1.8.83.45-.52 1.11-.83 1.8-.83 1.2-.01 2.2.96 2.2 2.16z"/></svg>��������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/head-lightbulb-outline.svg�����������������0000664�0000000�0000000�00000000670�14753064456�0030463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3c3.9 0 7 3.1 7 7 0 2.8-1.6 5.2-4 6.3V21H9v-3H8c-1.1 0-2-.9-2-2v-3H4.5c-.4 0-.7-.5-.4-.8L6 9.7C6.2 5.9 9.2 3 13 3m0-2C8.4 1 4.6 4.4 4.1 8.9L2.5 11c-.6.8-.6 1.8-.2 2.6.4.7 1 1.2 1.7 1.3V16c0 1.9 1.3 3.4 3 3.9V23h11v-5.5c2.5-1.7 4-4.4 4-7.5 0-5-4-9-9-9m1 13h-2v-1h2zm1.6-4.5c-.3.4-.6.8-1.1 1.1V12h-3v-1.4c-1.4-.8-1.9-2.7-1.1-4.1s2.7-1.9 4.1-1.1 1.9 2.7 1.1 4.1"/></svg>������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/head-lightbulb.svg�������������������������0000664�0000000�0000000�00000000514�14753064456�0027003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3C9.23 3 6.19 5.95 6 9.66l-1.92 2.53c-.24.31 0 .81.42.81H6v3c0 1.11.89 2 2 2h1v3h7v-4.69c2.37-1.12 4-3.51 4-6.31 0-3.86-3.12-7-7-7m1 11h-2v-1h2zm1.6-4.5a3 3 0 0 1-1.1 1.08V12h-3v-1.42c-1.43-.83-1.93-2.66-1.1-4.08s2.67-1.94 4.1-1.12 1.93 2.67 1.1 4.12"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/head-minus-outline.svg���������������������0000664�0000000�0000000�00000000526�14753064456�0027642�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3c3.9 0 7 3.1 7 7 0 2.8-1.6 5.2-4 6.3V21H9v-3H8c-1.1 0-2-.9-2-2v-3H4.5c-.4 0-.7-.5-.4-.8L6 9.7C6.2 5.9 9.2 3 13 3m0-2C8.4 1 4.6 4.4 4.1 8.9L2.5 11c-.6.7-.7 1.7-.3 2.6.4.7 1 1.2 1.8 1.4v1c0 1.9 1.3 3.4 3 3.9V23h11v-5.5c2.5-1.6 4-4.4 4-7.5 0-5-4-9-9-9m4 9H9V8h8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/head-minus.svg�����������������������������0000664�0000000�0000000�00000000313�14753064456�0026157�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3C9.2 3 6.2 5.9 6 9.7l-1.9 2.5c-.2.3 0 .8.4.8H6v3c0 1.1.9 2 2 2h1v3h7v-4.7c2.4-1.1 4-3.5 4-6.3 0-3.9-3.1-7-7-7m4 7H9V8h8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/head-outline.svg���������������������������0000664�0000000�0000000�00000000515�14753064456�0026507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 1C8.4 1 4.6 4.4 4.1 8.9L2.5 11c-.5.8-.6 1.8-.2 2.6.4.7 1 1.2 1.7 1.3V16c0 1.8 1.3 3.4 3 3.9V23h11v-5.5c2.5-1.7 4-4.4 4-7.5 0-5-4-9-9-9m3 15.3V21H9v-3H8c-1.1 0-2-.9-2-2v-3H4.5c-.4 0-.7-.5-.4-.8L6 9.7C6.2 6 9.2 3 13 3c3.9 0 7 3.1 7 7 0 2.8-1.6 5.2-4 6.3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/head-plus-outline.svg����������������������0000664�0000000�0000000�00000000551�14753064456�0027470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3c3.9 0 7 3.1 7 7 0 2.8-1.6 5.2-4 6.3V21H9v-3H8c-1.1 0-2-.9-2-2v-3H4.5c-.4 0-.7-.5-.4-.8L6 9.7C6.2 5.9 9.2 3 13 3m0-2C8.4 1 4.6 4.4 4.1 8.9L2.5 11c-.6.7-.7 1.7-.3 2.6.4.7 1 1.2 1.8 1.4v1c0 1.9 1.3 3.4 3 3.9V23h11v-5.5c2.5-1.6 4-4.4 4-7.5 0-5-4-9-9-9m4 9h-3v3h-2v-3H9V8h3V5h2v3h3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/head-plus.svg������������������������������0000664�0000000�0000000�00000000336�14753064456�0026014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3C9.2 3 6.2 5.9 6 9.7l-1.9 2.5c-.2.3 0 .8.4.8H6v3c0 1.1.9 2 2 2h1v3h7v-4.7c2.4-1.1 4-3.5 4-6.3 0-3.9-3.1-7-7-7m4 7h-3v3h-2v-3H9V8h3V5h2v3h3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/head-question-outline.svg������������������0000664�0000000�0000000�00000001364�14753064456�0030357�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3c3.88 0 7 3.14 7 7 0 2.8-1.63 5.19-4 6.31V21H9v-3H8c-1.11 0-2-.89-2-2v-3H4.5c-.42 0-.66-.5-.42-.81L6 9.66A7.003 7.003 0 0 1 13 3m-2.68 4.39h1.93c.01-.3.1-.53.28-.69a1 1 0 0 1 .66-.23c.31 0 .57.1.75.28.18.19.26.45.26.75 0 .32-.07.59-.23.82-.14.23-.35.43-.61.59-.51.34-.86.64-1.05.91-.2.26-.31.68-.31 1.18h2c0-.31.04-.56.13-.74.09-.19.26-.36.51-.52.45-.24.82-.53 1.11-.93s.44-.81.44-1.31c0-.76-.27-1.37-.81-1.82-.53-.45-1.26-.68-2.19-.68-.87 0-1.57.2-2.11.59-.52.41-.78.98-.77 1.77zM12 14h2v-2h-2zm1-13C8.41 1 4.61 4.42 4.06 8.9L2.5 11h-.03l-.02.03c-.55.76-.62 1.76-.19 2.59.36.69 1 1.17 1.74 1.32V16c0 1.85 1.28 3.42 3 3.87V23h11v-5.5c2.5-1.67 4-4.44 4-7.5 0-4.97-4.04-9-9-9"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/head-question.svg��������������������������0000664�0000000�0000000�00000001130�14753064456�0026671�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3C9.23 3 6.19 5.95 6 9.66l-1.92 2.53c-.24.31 0 .81.42.81H6v3c0 1.11.89 2 2 2h1v3h7v-4.69c2.37-1.12 4-3.51 4-6.31 0-3.86-3.12-7-7-7m1 11h-2v-2h2zm1.75-5.19c-.29.4-.66.69-1.11.93-.25.16-.42.33-.51.52-.09.18-.13.43-.13.74h-2c0-.5.11-.92.31-1.18.19-.27.54-.57 1.05-.91.26-.16.47-.36.61-.59.16-.23.23-.5.23-.82 0-.3-.08-.56-.26-.75-.18-.18-.44-.28-.75-.28a1 1 0 0 0-.66.23c-.18.16-.27.39-.28.69h-1.93l-.01-.03c-.01-.79.25-1.36.77-1.77.54-.39 1.24-.59 2.11-.59.93 0 1.66.23 2.19.68.54.45.81 1.06.81 1.82 0 .5-.15.91-.44 1.31"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/head-remove-outline.svg��������������������0000664�0000000�0000000�00000000651�14753064456�0030003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3c3.9 0 7 3.1 7 7 0 2.8-1.6 5.2-4 6.3V21H9v-3H8c-1.1 0-2-.9-2-2v-3H4.5c-.4 0-.7-.5-.4-.8L6 9.7C6.2 5.9 9.2 3 13 3m0-2C8.4 1 4.6 4.4 4.1 8.9L2.5 11c-.6.7-.7 1.7-.3 2.6.4.7 1 1.2 1.8 1.4v1c0 1.9 1.3 3.4 3 3.9V23h11v-5.5c2.5-1.6 4-4.4 4-7.5 0-5-4-9-9-9m3.5 5.9L14.4 9l2.1 2.1-1.4 1.4-2.1-2.1-2.1 2.1-1.4-1.4L11.6 9 9.5 6.9l1.4-1.4L13 7.6l2.1-2.1z"/></svg>���������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/head-remove.svg����������������������������0000664�0000000�0000000�00000000437�14753064456�0026330�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3C9.2 3 6.2 5.9 6 9.7l-1.9 2.5c-.2.3 0 .8.4.8H6v3c0 1.1.9 2 2 2h1v3h7v-4.7c2.4-1.1 4-3.5 4-6.3 0-3.9-3.1-7-7-7m2.1 9.5L13 10.4l-2.1 2.1-1.4-1.4L11.6 9 9.5 6.9l1.4-1.4L13 7.6l2.1-2.1 1.4 1.4L14.4 9l2.1 2.1z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/head-snowflake-outline.svg�����������������0000664�0000000�0000000�00000001344�14753064456�0030477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3c3.88 0 7 3.14 7 7 0 2.8-1.63 5.19-4 6.31V21H9v-3H8c-1.11 0-2-.89-2-2v-3H4.5c-.42 0-.66-.5-.42-.81L6 9.66A7.003 7.003 0 0 1 13 3m0-2C8.41 1 4.61 4.42 4.06 8.9L2.5 11h-.03l-.02.03c-.55.76-.62 1.76-.19 2.59.36.69 1 1.17 1.74 1.32V16c0 1.85 1.28 3.42 3 3.87V23h11v-5.5c2.5-1.67 4-4.44 4-7.5 0-4.97-4.04-9-9-9m4.33 8.3-1.96.51 1.44 1.46c.35.34.35.92 0 1.27s-.93.35-1.27 0l-1.45-1.44-.52 1.96c-.12.49-.61.76-1.07.64a.91.91 0 0 1-.66-1.11l.53-1.96-1.96.53a.91.91 0 0 1-1.11-.66c-.12-.45.16-.95.64-1.07l1.96-.52-1.44-1.45a.9.9 0 0 1 1.27-1.27l1.46 1.44.51-1.96c.12-.49.62-.77 1.09-.64.49.13.77.62.64 1.1L14.9 8.1l1.97-.53c.48-.13.97.15 1.1.64.13.47-.15.97-.64 1.09"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/head-snowflake.svg�������������������������0000664�0000000�0000000�00000001064�14753064456�0027021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3C9.23 3 6.19 5.95 6 9.66l-1.92 2.53c-.24.31 0 .81.42.81H6v3c0 1.11.89 2 2 2h1v3h7v-4.69c2.37-1.12 4-3.51 4-6.31 0-3.86-3.12-7-7-7m4.06 6.57-1.96.52 1.44 1.45a.9.9 0 0 1 0 1.27.9.9 0 0 1-1.27 0l-1.46-1.44-.51 1.96c-.12.49-.62.77-1.09.64a.89.89 0 0 1-.64-1.1l.53-1.97-1.97.53a.887.887 0 0 1-1.1-.64c-.13-.47.15-.97.64-1.09l1.96-.51-1.44-1.46a.9.9 0 0 1 1.27-1.27l1.45 1.44.52-1.96a.88.88 0 0 1 1.07-.64c.5.13.78.62.66 1.11l-.53 1.96 1.96-.53a.91.91 0 0 1 1.11.66.88.88 0 0 1-.64 1.07"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/head-sync-outline.svg����������������������0000664�0000000�0000000�00000001175�14753064456�0027464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3c3.88 0 7 3.14 7 7 0 2.8-1.63 5.19-4 6.31V21H9v-3H8c-1.11 0-2-.89-2-2v-3H4.5c-.42 0-.66-.5-.42-.81L6 9.66A7.003 7.003 0 0 1 13 3m0-2C8.41 1 4.61 4.42 4.06 8.9L2.5 11h-.03l-.02.03c-.55.76-.62 1.76-.19 2.59.36.69 1 1.17 1.74 1.32V16c0 1.85 1.28 3.42 3 3.87V23h11v-5.5c2.5-1.67 4-4.44 4-7.5 0-4.97-4.04-9-9-9m1 14v-1.5c-2.21 0-4-1.79-4-4 0-.82.25-1.58.67-2.21l1.09 1.09c-.17.34-.26.72-.26 1.12A2.5 2.5 0 0 0 14 12v-1.5l2.25 2.25zm3.33-3.29-1.09-1.09c.17-.34.26-.72.26-1.12A2.5 2.5 0 0 0 14 7v1.5l-2.25-2.25L14 4v1.5c2.21 0 4 1.79 4 4 0 .82-.25 1.58-.67 2.21"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/head-sync.svg������������������������������0000664�0000000�0000000�00000000715�14753064456�0026006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3C9.23 3 6.19 5.95 6 9.66l-1.92 2.53c-.24.31 0 .81.42.81H6v3c0 1.11.89 2 2 2h1v3h7v-4.69c2.37-1.12 4-3.51 4-6.31 0-3.86-3.12-7-7-7m0 12v-1.5c-2.21 0-4-1.79-4-4 0-.82.25-1.58.67-2.21l1.09 1.09c-.17.34-.26.72-.26 1.12A2.5 2.5 0 0 0 13 12v-1.5l2.25 2.25zm3.33-3.29-1.09-1.09c.17-.34.26-.72.26-1.12A2.5 2.5 0 0 0 13 7v1.5l-2.25-2.25L13 4v1.5c2.21 0 4 1.79 4 4 0 .82-.25 1.58-.67 2.21"/></svg>���������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/head.svg�����������������������������������0000664�0000000�0000000�00000000300�14753064456�0025022�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3C9.2 3 6.2 5.9 6 9.7l-1.9 2.5c-.2.3 0 .8.4.8H6v3c0 1.1.9 2 2 2h1v3h7v-4.7c2.4-1.1 4-3.5 4-6.3 0-3.9-3.1-7-7-7"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/headphones-bluetooth.svg�������������������0000664�0000000�0000000�00000000543�14753064456�0030253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 6a6 6 0 0 0-6 6v4.8c0 .66.54 1.2 1.2 1.2H6v-4H4v-2a4 4 0 0 1 4-4 4 4 0 0 1 4 4v2h-2v4h2.8a1.2 1.2 0 0 0 1.2-1.2V12a6 6 0 0 0-6-6m11 1v3.79L16.71 8.5l-.71.71L18.79 12 16 14.79l.71.71L19 13.21V17h.5l2.85-2.86L20.21 12l2.14-2.15L19.5 7zm1 1.91.94.94-.94.94zm0 4.3.94.93-.94.94z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/headphones-box.svg�������������������������0000664�0000000�0000000�00000000435�14753064456�0027036�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.2 18c-.66 0-1.2-.54-1.2-1.2V12a6 6 0 0 1 6-6 6 6 0 0 1 6 6v4.8a1.2 1.2 0 0 1-1.2 1.2H14v-4h2v-2a4 4 0 0 0-4-4 4 4 0 0 0-4 4v2h2v4m9-15H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/headphones-off.svg�������������������������0000664�0000000�0000000�00000000542�14753064456�0027017�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1a9 9 0 0 1 9 9v7c0 .62-.19 1.19-.5 1.67L15 13.18V12h4v-2a7 7 0 0 0-7-7c-2 0-3.77.82-5.04 2.14L5.55 3.72A8.96 8.96 0 0 1 12 1M2.78 3.5 20.5 21.22l-1.27 1.28-2.5-2.5H15v-1.73l-6-6V20H6a3 3 0 0 1-3-3v-7c0-1.11.2-2.18.57-3.16L1.5 4.77zm2.39 4.94C5.06 8.94 5 9.46 5 10v2h3.73z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/headphones-settings.svg��������������������0000664�0000000�0000000�00000000346�14753064456�0030107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1a9 9 0 0 1 9 9v7a3 3 0 0 1-3 3h-3v-8h4v-2a7 7 0 0 0-7-7 7 7 0 0 0-7 7v2h4v8H6a3 3 0 0 1-3-3v-7a9 9 0 0 1 9-9m3 23v-2h2v2zm-4 0v-2h2v2zm-4 0v-2h2v2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/headphones.svg�����������������������������0000664�0000000�0000000�00000000277�14753064456�0026254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1c-5 0-9 4-9 9v7a3 3 0 0 0 3 3h3v-8H5v-2a7 7 0 0 1 7-7 7 7 0 0 1 7 7v2h-4v8h3a3 3 0 0 0 3-3v-7c0-5-4.03-9-9-9"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/headset-dock.svg���������������������������0000664�0000000�0000000�00000000400�14753064456�0026455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 18h7V6.13C7.27 6.57 6 8.14 6 10v1h2v6H6a2 2 0 0 1-2-2v-5a6 6 0 0 1 6-6h1a6 6 0 0 1 6 6v2h1V9h2v3a2 2 0 0 1-2 2h-1v1a2 2 0 0 1-2 2h-2v-6h2v-1c0-1.86-1.27-3.43-3-3.87V18h10v2H2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/headset-off.svg����������������������������0000664�0000000�0000000�00000000556�14753064456�0026323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m1.5 4.77 2.07 2.07C3.2 7.82 3 8.89 3 10v10a3 3 0 0 0 3 3h6v-2H5v-1h4v-7.73l6 6V20h1.73l2.5 2.5 1.27-1.28L2.78 3.5zM12 1a8.96 8.96 0 0 0-6.45 2.72l1.41 1.42A6.94 6.94 0 0 1 12 3a7 7 0 0 1 7 7v2h-4v1.18l5.5 5.49c.31-.48.5-1.05.5-1.67v-7a9 9 0 0 0-9-9M5 12v-2c0-.54.06-1.06.17-1.56L8.73 12z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/headset.svg��������������������������������0000664�0000000�0000000�00000000310�14753064456�0025537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1c-5 0-9 4-9 9v7a3 3 0 0 0 3 3h3v-8H5v-2a7 7 0 0 1 7-7 7 7 0 0 1 7 7v2h-4v8h4v1h-7v2h6a3 3 0 0 0 3-3V10c0-5-4.03-9-9-9"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart-box-outline.svg����������������������0000664�0000000�0000000�00000000510�14753064456�0027472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 17-.72-.66C8.7 14 7 12.46 7 10.57c0-1.54 1.21-2.75 2.75-2.75.87 0 1.7.41 2.25 1.05.55-.64 1.38-1.05 2.25-1.05 1.54 0 2.75 1.21 2.75 2.75 0 1.89-1.7 3.43-4.28 5.77zM5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 2v14h14V5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart-box.svg������������������������������0000664�0000000�0000000�00000000465�14753064456�0026026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m7 14 .72-.66C15.3 14 17 12.46 17 10.57c0-1.54-1.21-2.75-2.75-2.75-.87 0-1.7.41-2.25 1.05a3 3 0 0 0-2.25-1.05C8.21 7.82 7 9.03 7 10.57c0 1.89 1.7 3.43 4.28 5.77z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart-broken-outline.svg�������������������0000664�0000000�0000000�00000000651�14753064456�0030170�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 5c.2 0 .4 0 .6.1l2.4 4.1-3.7 4.6C5.1 11.8 4 10.2 4 8.5 4 6.5 5.5 5 7.5 5m0-2C4.4 3 2 5.4 2 8.5c0 3.8 3.4 6.9 8.6 11.5l1.4 1.3-3-7 4-5-3.6-6C8.8 3.1 8.2 3 7.5 3m9 2c2 0 3.5 1.5 3.5 3.5 0 2.6-2.6 5.2-6.6 8.8l-.3-2.3 4.8-5.3-2.3-4.5c.3-.2.6-.2.9-.2m0-2c-1.3 0-2.6.5-3.6 1.3l2.6 5.1-4.5 5 1 7 1.4-1.3c5.2-4.7 8.6-7.8 8.6-11.5C22 5.4 19.6 3 16.5 3"/></svg>���������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart-broken.svg���������������������������0000664�0000000�0000000�00000000442�14753064456�0026511�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 21.35-1.45-1.32C5.4 15.36 2 12.27 2 8.5 2 5.41 4.42 3 7.5 3c.67 0 1.32.12 1.94.33L13 9.35l-4 5zM16.5 3C19.58 3 22 5.41 22 8.5c0 3.77-3.4 6.86-8.55 11.53L12 21.35l-1-7 4.5-5-2.65-5.08C13.87 3.47 15.17 3 16.5 3"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart-circle-outline.svg�������������������0000664�0000000�0000000�00000000600�14753064456�0030143�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 2a8 8 0 0 1 8 8 8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8M9.75 7.82C8.21 7.82 7 9.03 7 10.57c0 1.89 1.7 3.43 4.28 5.77L12 17l.72-.66C15.3 14 17 12.46 17 10.57c0-1.54-1.21-2.75-2.75-2.75-.87 0-1.7.41-2.25 1.05a3 3 0 0 0-2.25-1.05"/></svg>��������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart-circle.svg���������������������������0000664�0000000�0000000�00000000514�14753064456�0026472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.47 2 2 6.5 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2M9.75 7.82c.87 0 1.7.41 2.25 1.05.55-.64 1.38-1.05 2.25-1.05 1.54 0 2.75 1.21 2.75 2.75 0 1.89-1.7 3.43-4.28 5.77L12 17l-.72-.66C8.7 14 7 12.46 7 10.57c0-1.54 1.21-2.75 2.75-2.75"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart-cog-outline.svg����������������������0000664�0000000�0000000�00000002056�14753064456�0027461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 5c-1.54 0-3.04 1-3.57 2.36h-1.86C10.54 6 9.04 5 7.5 5 5.5 5 4 6.5 4 8.5c0 2.89 3.14 5.74 7.89 10.05l.11.1v-.02.37c0 .71.12 1.4.32 2.06l-.32.29-1.45-1.32C5.4 15.36 2 12.27 2 8.5 2 5.41 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.08C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.41 22 8.5c0 1.3-.41 2.5-1.16 3.75-.59-.16-1.21-.25-1.84-.25h-.4c.9-1.21 1.4-2.35 1.4-3.5 0-2-1.5-3.5-3.5-3.5m7.33 15.64-1 1.73c-.07.13-.2.13-.33.13l-1.23-.5c-.27.18-.54.34-.84.47l-.19 1.32c-.02.12-.13.21-.24.21h-2c-.14 0-.24-.09-.26-.21l-.19-1.32c-.31-.12-.59-.29-.85-.47l-1.24.5c-.12 0-.25 0-.31-.13l-1-1.73a.26.26 0 0 1 .06-.32l1.06-.82a4.2 4.2 0 0 1 0-1l-1.06-.82a.25.25 0 0 1-.06-.32l1-1.73c.07-.13.2-.13.31-.13l1.24.5c.26-.18.55-.34.85-.47l.19-1.32A.26.26 0 0 1 18 14h2c.11 0 .22.09.23.21l.19 1.32c.31.12.58.29.85.47l1.23-.5c.13 0 .26 0 .32.13l1 1.73c.06.11.03.24-.06.32l-1.06.82c.03.17.04.33.04.5s-.02.33-.04.5l1.07.82c.09.08.12.21.06.32M20.5 19c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5.66 1.5 1.5 1.5c.83 0 1.5-.67 1.5-1.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart-cog.svg������������������������������0000664�0000000�0000000�00000001636�14753064456�0026007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 19c0 .71.12 1.4.32 2.06l-.32.29-1.45-1.32C5.4 15.36 2 12.27 2 8.5 2 5.41 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.08C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.41 22 8.5c0 1.3-.41 2.5-1.16 3.75-.59-.16-1.21-.25-1.84-.25-3.86 0-7 3.14-7 7m11.83 1.64-1 1.73c-.07.13-.2.13-.33.13l-1.23-.5c-.27.18-.54.34-.84.47l-.19 1.32c-.02.12-.13.21-.24.21h-2c-.14 0-.24-.09-.26-.21l-.19-1.32c-.31-.12-.59-.29-.85-.47l-1.24.5c-.12 0-.25 0-.31-.13l-1-1.73a.26.26 0 0 1 .06-.32l1.06-.82a4.2 4.2 0 0 1 0-1l-1.06-.82a.25.25 0 0 1-.06-.32l1-1.73c.07-.13.2-.13.31-.13l1.24.5c.26-.18.55-.34.85-.47l.19-1.32A.26.26 0 0 1 18 14h2c.11 0 .22.09.23.21l.19 1.32c.31.12.58.29.85.47l1.23-.5c.13 0 .26 0 .32.13l1 1.73c.06.11.03.24-.06.32l-1.06.82c.03.17.04.33.04.5s-.02.33-.04.5l1.07.82c.09.08.12.21.06.32M20.5 19c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5.66 1.5 1.5 1.5c.83 0 1.5-.67 1.5-1.5"/></svg>��������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart-flash.svg����������������������������0000664�0000000�0000000�00000000434�14753064456�0026327�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 2.83c-1.74 0-3.41.81-4.5 2.07-1.09-1.26-2.76-2.07-4.5-2.07-3.08 0-5.5 2.41-5.5 5.5 0 3.77 3.4 6.86 8.55 11.53L12 21.17l1.45-1.31C18.6 15.19 22 12.1 22 8.33c0-3.09-2.42-5.5-5.5-5.5m-4.5 15v-4H9l3-7v4h3"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart-half-full.svg������������������������0000664�0000000�0000000�00000000506�14753064456�0027104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 5c-1.5 0-2.92.91-3.5 2.2v10.54c4.25-3.87 7-6.54 7-9.24 0-2-1.5-3.5-3.5-3.5m0-2C19.58 3 22 5.41 22 8.5c0 3.77-3.4 6.86-8.55 11.53L12 21.35l-1.45-1.32C5.4 15.36 2 12.27 2 8.5 2 5.41 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.08C13.09 3.81 14.76 3 16.5 3"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart-half-outline.svg���������������������0000664�0000000�0000000�00000000360�14753064456�0027617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 8.5c0 2.7 2.75 5.37 7 9.24V7.2C10.42 5.91 9 5 7.5 5 5.5 5 4 6.5 4 8.5m9-1.3v13.24l-1 .91-1.45-1.32C5.4 15.36 2 12.27 2 8.5 2 5.41 4.42 3 7.5 3 10 3 13 5 13 7.2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart-half.svg�����������������������������0000664�0000000�0000000�00000000251�14753064456�0026141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 7.2v13.24l-1 .91-1.45-1.32C5.4 15.36 2 12.27 2 8.5 2 5.41 4.42 3 7.5 3 10 3 13 5 13 7.2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart-minus-outline.svg��������������������0000664�0000000�0000000�00000000720�14753064456�0030040�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.67 20.74-.67.61-1.45-1.32C5.4 15.36 2 12.27 2 8.5 2 5.41 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.08C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.41 22 8.5c0 1.43-.5 2.76-1.38 4.11-.62-.3-1.31-.5-2.03-.57C19.5 10.8 20 9.65 20 8.5c0-2-1.5-3.5-3.5-3.5-1.54 0-3.04 1-3.57 2.36h-1.86C10.54 6 9.04 5 7.5 5 5.5 5 4 6.5 4 8.5c0 2.89 3.14 5.74 7.89 10.05l.11.1.04-.04c.08.76.3 1.48.63 2.13M14 17v2h8v-2z"/></svg>������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart-minus.svg����������������������������0000664�0000000�0000000�00000000501�14753064456�0026360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18c0 1 .25 1.92.67 2.74l-.67.61-1.45-1.32C5.4 15.36 2 12.27 2 8.5 2 5.41 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.08C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.41 22 8.5c0 1.43-.5 2.76-1.38 4.11-.79-.38-1.68-.61-2.62-.61-3.31 0-6 2.69-6 6m2-1v2h8v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart-multiple-outline.svg�����������������0000664�0000000�0000000�00000000666�14753064456�0030551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 21.1-1.5 1.3c-6.6-5.9-10-9-10-12.8 0-1.2.4-2.3 1-3.2V7c0 4.7 3.9 8.2 10.5 14.1m1.6-4.1c4.7-4.3 7.9-7.1 8-10 0-2-1.5-3.5-3.5-3.5-1.6 0-3.1 1-3.6 2.4h-1.9C12 4.5 10.5 3.5 9 3.5 7 3.5 5.5 5 5.5 7c0 2.9 3.1 5.7 7.9 10l.1.1M18 1.5c3.1 0 5.5 2.4 5.5 5.5 0 3.7-3.4 6.8-10 12.8-6.6-5.9-10-9-10-12.8 0-3.1 2.4-5.5 5.5-5.5 1.7 0 3.4.8 4.5 2.1 1.1-1.3 2.8-2.1 4.5-2.1"/></svg>��������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart-multiple.svg�������������������������0000664�0000000�0000000�00000000445�14753064456�0027067�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.5 20c-6.6-6.1-10-9.2-10-12.9C3.5 4 5.9 1.6 9 1.6c1.7 0 3.4.8 4.5 2.1 1.1-1.3 2.8-2.1 4.5-2.1 3.1 0 5.5 2.4 5.5 5.5 0 3.8-3.4 6.9-10 12.9M12 21.1C5.4 15.2 1.5 11.7 1.5 7v-.6c-.6.9-1 2-1 3.2 0 3.8 3.4 6.9 10 12.8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart-off-outline.svg����������������������0000664�0000000�0000000�00000001072�14753064456�0027460�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.39 1.73 1.11 3l2.08 2.08C2.45 6 2 7.19 2 8.5c0 3.77 3.4 6.86 8.55 11.53L12 21.35l1.45-1.32c.87-.79 1.69-1.53 2.45-2.24L20 22l1.27-1.27m-9.17-2.18-.1.1-.11-.1C7.14 14.24 4 11.39 4 8.5c0-.76.22-1.44.61-2l9.89 9.87c-.76.69-1.55 1.41-2.4 2.18M8.3 5.1 6.33 3.13C6.7 3.05 7.1 3 7.5 3c1.74 0 3.41.81 4.5 2.08C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.41 22 8.5c0 2.34-1.31 4.42-3.53 6.77l-1.41-1.41C18.91 11.88 20 10.2 20 8.5c0-2-1.5-3.5-3.5-3.5-1.4 0-2.76.83-3.39 2h-2.22c-.51-.94-1.5-1.66-2.59-1.9"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart-off.svg������������������������������0000664�0000000�0000000�00000000517�14753064456�0026006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 4.27 2.28 3 20 20.72 18.73 22l-3.55-3.56-1.73 1.59L12 21.35l-1.45-1.32C5.4 15.36 2 12.27 2 8.5c0-.95.23-1.83.63-2.6zM7.5 3c1.74 0 3.41.81 4.5 2.08C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.41 22 8.5c0 2.57-1.58 4.82-4.21 7.47L5.27 3.45C5.95 3.16 6.7 3 7.5 3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart-outline.svg��������������������������0000664�0000000�0000000�00000000637�14753064456�0026716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.1 18.55-.1.1-.11-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04 1 3.57 2.36h1.86C13.46 6 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05M16.5 3c-1.74 0-3.41.81-4.5 2.08C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.41 2 8.5c0 3.77 3.4 6.86 8.55 11.53L12 21.35l1.45-1.32C18.6 15.36 22 12.27 22 8.5 22 5.41 19.58 3 16.5 3"/></svg>�������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart-plus-outline.svg���������������������0000664�0000000�0000000�00000000744�14753064456�0027676�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.67 20.74-.67.61-1.45-1.32C5.4 15.36 2 12.27 2 8.5 2 5.41 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.08C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.41 22 8.5c0 1.43-.5 2.76-1.38 4.11-.62-.3-1.31-.5-2.03-.57C19.5 10.8 20 9.65 20 8.5c0-2-1.5-3.5-3.5-3.5-1.54 0-3.04 1-3.57 2.36h-1.86C10.54 6 9.04 5 7.5 5 5.5 5 4 6.5 4 8.5c0 2.89 3.14 5.74 7.89 10.05l.11.1.04-.04c.08.76.3 1.48.63 2.13M17 14v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>����������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart-plus.svg�����������������������������0000664�0000000�0000000�00000000525�14753064456�0026216�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18c0 1 .25 1.92.67 2.74l-.67.61-1.45-1.32C5.4 15.36 2 12.27 2 8.5 2 5.41 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.08C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.41 22 8.5c0 1.43-.5 2.76-1.38 4.11-.79-.38-1.68-.61-2.62-.61-3.31 0-6 2.69-6 6m7-4h-2v3h-3v2h3v3h2v-3h3v-2h-3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart-pulse.svg����������������������������0000664�0000000�0000000�00000000724�14753064456�0026364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 4A5.5 5.5 0 0 0 2 9.5c0 .5.09 1 .22 1.5H6.3l1.27-3.37c.3-.8 1.48-.88 1.86 0L11.5 13l.59-1.42c.13-.33.48-.58.91-.58h8.78c.13-.5.22-1 .22-1.5A5.5 5.5 0 0 0 16.5 4c-1.86 0-3.5.93-4.5 2.34C11 4.93 9.36 4 7.5 4M3 12.5a1 1 0 0 0-1 1 1 1 0 0 0 1 1h2.44L11 20c1 .9 1 .9 2 0l5.56-5.5H21a1 1 0 0 0 1-1 1 1 0 0 0-1-1h-7.6l-.93 2.3c-.4 1.01-1.55.87-1.92.03L8.5 9.5l-.96 2.33c-.15.38-.49.67-.94.67z"/></svg>��������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart-remove-outline.svg�������������������0000664�0000000�0000000�00000001071�14753064456�0030202�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.67 20.74-.67.61-1.45-1.32C5.4 15.36 2 12.27 2 8.5 2 5.41 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.08C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.41 22 8.5c0 1.43-.5 2.76-1.38 4.11-.62-.3-1.31-.5-2.03-.57C19.5 10.8 20 9.65 20 8.5c0-2-1.5-3.5-3.5-3.5-1.54 0-3.04 1-3.57 2.36h-1.86C10.54 6 9.04 5 7.5 5 5.5 5 4 6.5 4 8.5c0 2.89 3.14 5.74 7.89 10.05l.11.1.04-.04c.08.76.3 1.48.63 2.13m7.45-6.28L18 16.59l-2.12-2.12-1.41 1.41L16.59 18l-2.12 2.12 1.41 1.42L18 19.41l2.12 2.13 1.42-1.42L19.41 18l2.13-2.12z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart-remove.svg���������������������������0000664�0000000�0000000�00000000654�14753064456�0026533�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18c0 1 .25 1.92.67 2.74l-.67.61-1.45-1.32C5.4 15.36 2 12.27 2 8.5 2 5.41 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.08C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.41 22 8.5c0 1.43-.5 2.76-1.38 4.11-.79-.38-1.68-.61-2.62-.61-3.31 0-6 2.69-6 6m9.54-2.12-1.42-1.41L18 16.59l-2.12-2.12-1.41 1.41L16.59 18l-2.12 2.12 1.41 1.42L18 19.41l2.12 2.13 1.42-1.42L19.41 18z"/></svg>������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart-search.svg���������������������������0000664�0000000�0000000�00000000755�14753064456�0026505�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.3 14.9c.4-.7.7-1.5.7-2.4C20 10 18 8 15.5 8S11 10 11 12.5s2 4.5 4.5 4.5c.9 0 1.7-.3 2.4-.7l2.9 2.9 1.4-1.4zm-3.8.1c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5m-.8 3.9c-.4.4-.8.7-1.2 1.1L12 21.3 10.5 20C5.4 15.4 2 12.3 2 8.5 2 5.4 4.4 3 7.5 3c1.7 0 3.4.8 4.5 2.1C13.1 3.8 14.8 3 16.5 3 19.6 3 22 5.4 22 8.5c0 .7-.1 1.3-.3 2-.9-2.6-3.3-4.5-6.2-4.5C11.9 6 9 8.9 9 12.5c0 3.3 2.5 6 5.7 6.4"/></svg>�������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart-settings-outline.svg�����������������0000664�0000000�0000000�00000000700�14753064456�0030543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 22h2v2H7zm4 2h2v-2h-2zm4 0h2v-2h-2zm7-15.5c0 3.77-3.4 6.86-8.55 11.53L12 21.35l-1.45-1.32C5.4 15.36 2 12.27 2 8.5 2 5.41 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.08C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.41 22 8.5m-2 0c0-2-1.5-3.5-3.5-3.5-1.54 0-3.04 1-3.57 2.36h-1.86C10.54 6 9.04 5 7.5 5 5.5 5 4 6.5 4 8.5c0 2.89 3.14 5.74 7.89 10.05l.11.1.1-.1C16.86 14.24 20 11.39 20 8.5"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart-settings.svg�������������������������0000664�0000000�0000000�00000000443�14753064456�0027072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 22h2v2h-2zm-4 2h2v-2h-2zm-4 0h2v-2H7zm9.5-21c-1.74 0-3.41.81-4.5 2.08C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.41 2 8.5c0 3.77 3.4 6.86 8.55 11.53L12 21.35l1.45-1.32C18.6 15.36 22 12.27 22 8.5 22 5.41 19.58 3 16.5 3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heart.svg����������������������������������0000664�0000000�0000000�00000000362�14753064456�0025234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 21.35-1.45-1.32C5.4 15.36 2 12.27 2 8.5 2 5.41 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.08C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.41 22 8.5c0 3.77-3.4 6.86-8.55 11.53z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heat-pump-outline.svg����������������������0000664�0000000�0000000�00000001153�14753064456�0027505�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 16H5V5h14zm-7-1c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6m-.75-2.08c-.55-.1-1.05-.32-1.5-.62l1.5-1.5zm1.5 0v-2.11l1.5 1.5c-.45.3-.95.51-1.5.61m2.56-1.67-1.5-1.5h2.11c-.1.55-.31 1.05-.61 1.5m.61-3h-2.11l1.5-1.5c.3.45.51.95.61 1.5m-3.17-3.17c.55.1 1.05.32 1.5.62l-1.5 1.5zM12 11c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m-.75-2.92v2.11l-1.5-1.5c.45-.3.95-.51 1.5-.61M8.69 9.75l1.5 1.5H8.08c.1-.55.31-1.05.61-1.5m1.5 3-1.5 1.5c-.3-.44-.51-.95-.62-1.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heat-pump.svg������������������������������0000664�0000000�0000000�00000001061�14753064456�0026026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m-6.25 4.08c.82.12 1.57.42 2.2.92l-2.2 2.19zm-1.5 0v3.11L9.05 8c.63-.5 1.38-.8 2.2-.92M8 9.05l2.19 2.2H7.08c.12-.82.42-1.57.92-2.2m-.92 3.7h3.11L8 14.95c-.5-.63-.8-1.38-.92-2.2m4.17 4.17c-.82-.12-1.57-.42-2.2-.92l2.2-2.19zM12 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m.75 3.92v-3.11l2.2 2.19c-.63.5-1.38.8-2.2.92M16 14.95l-2.19-2.2h3.11c-.12.82-.42 1.57-.92 2.2m-2.19-3.7L16 9.05c.5.64.8 1.39.92 2.2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heat-wave.svg������������������������������0000664�0000000�0000000�00000000373�14753064456�0026014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.5 4.5-3.1 5 3.1 5.2-3.3 5.8-1.8-.9 2.7-4.9L3 9.5l3.7-5.9zm6.2-.1-3.1 5.1 3.1 5-3.3 5.8-1.8-.9 2.7-4.9-3.1-5 3.7-6zm6.3 0-3.1 5.1 3.1 5-3.3 5.8-1.8-.9 2.7-4.9-3.1-5 3.7-6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/heating-coil.svg���������������������������0000664�0000000�0000000�00000000731�14753064456�0026474�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 17c1.21 0 3-.8 3-3s-1.79-3-3-3h-2V9h2c2.2 0 3-1.79 3-3 0-2.2-1.79-3-3-3h-2V2h-1v1H8V2H7v1H2v2h5v2H5c-1.21 0-3 .8-3 3s1.79 3 3 3h2v2H5c-1.21 0-3 .8-3 3s1.79 3 3 3h2v1h1v-1h8v1h1v-1h5v-2h-5v-2zm0-4c.45 0 1 .19 1 1s-.55 1-1 1h-2v-2zm-3-2H8V9h8zm3-6c.45 0 1 .2 1 1 0 .45-.19 1-1 1h-2V5zM8 5h8v2H8zm-3 6c-.45 0-1-.19-1-1s.55-1 1-1h2v2zm3 2h8v2H8zm-3 6c-.45 0-1-.19-1-1s.55-1 1-1h2v2zm11 0H8v-2h8z"/></svg>���������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/helicopter.svg�����������������������������0000664�0000000�0000000�00000000475�14753064456�0026274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h14v2H3zm20 3v4.5l-8.25 1.7A3.5 3.5 0 0 1 13 16.66V19h3v2H4a3 3 0 0 1-3-3v-1h2v1a1 1 0 0 0 1 1h1v-2.26c-1.75-.61-3-2.28-3-4.24C2 10 4 8 6.5 8H9V6h2v2h10V6zM11 19v-2H7v2zm-3.5-9c-1.38 0-2.5.9-2.5 2s1.12 2 2.5 2 2.5-.9 2.5-2-1.12-2-2.5-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/help-box-multiple-outline.svg��������������0000664�0000000�0000000�00000000720�14753064456�0031153�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 16V4H8v12zm2 0c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2zm-6 4v2H4c-1.1 0-2-.9-2-2V7h2v13zM14.2 5q-1.35 0-2.1.6c-.5.4-.8 1-.8 1.8h1.9c0-.3.1-.5.3-.7.2-.1.4-.2.7-.2s.6.1.8.3.3.4.3.8c0 .3-.1.6-.2.8s-.4.4-.6.6c-.5.3-.9.6-1 .9-.4.2-.5.6-.5 1.1h2c0-.3 0-.6.1-.7.1-.2.3-.4.5-.5.4-.2.8-.5 1.1-.9.3-.5.5-.9.5-1.4 0-.8-.3-1.4-.8-1.8-.5-.5-1.3-.7-2.2-.7M13 12v2h2v-2z"/></svg>������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/help-box-multiple.svg����������������������0000664�0000000�0000000�00000000706�14753064456�0027502�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 20v2H4c-1.1 0-2-.9-2-2V7h2v13zm4-18H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-5 12h-2v-2h2zm1.8-5.2c-.3.4-.7.7-1.1.9-.2.2-.4.3-.5.5-.2.2-.2.5-.2.8h-2q0-.75.3-1.2c.2-.3.5-.6 1-.9q.45-.3.6-.6c.2-.2.2-.5.2-.8s-.1-.6-.3-.8-.4-.3-.8-.3c-.3 0-.5.1-.7.2-.2.2-.3.4-.3.7h-1.9c0-.8.2-1.4.8-1.8.7-.3 1.4-.5 2.3-.5s1.7.2 2.2.7.8 1.1.8 1.8c0 .5-.2.9-.4 1.3"/></svg>����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/help-box-outline.svg�����������������������0000664�0000000�0000000�00000000422�14753064456�0027321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 18h2v-2h-2zm1-12c-2.2 0-4 1.8-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.8-3 5h2c0-2.2 3-2.5 3-5 0-2.2-1.8-4-4-4m7-1v14H5V5zm0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/help-box.svg�������������������������������0000664�0000000�0000000�00000000404�14753064456�0025644�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 18h2v-2h-2zm1-12a4 4 0 0 0-4 4h2a2 2 0 0 1 2-2 2 2 0 0 1 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5a4 4 0 0 0-4-4M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/help-circle-outline.svg��������������������0000664�0000000�0000000�00000000502�14753064456�0027771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 18h2v-2h-2zm1-16A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m0-14a4 4 0 0 0-4 4h2a2 2 0 0 1 2-2 2 2 0 0 1 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5a4 4 0 0 0-4-4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/help-circle.svg����������������������������0000664�0000000�0000000�00000000550�14753064456�0026317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.07 11.25-.9.92C13.45 12.89 13 13.5 13 15h-2v-.5c0-1.11.45-2.11 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41a2 2 0 0 0-2-2 2 2 0 0 0-2 2H8a4 4 0 0 1 4-4 4 4 0 0 1 4 4 3.2 3.2 0 0 1-.93 2.25M13 19h-2v-2h2M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10c0-5.53-4.5-10-10-10"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/help-network-outline.svg�������������������0000664�0000000�0000000�00000001166�14753064456�0030230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 20a1 1 0 0 0-1-1h-1v-2h4a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h4v2h-1a1 1 0 0 0-1 1H2v2h7a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1h7v-2zm-8-5V5h10v10zm4.95-9c-.78 0-1.4.18-1.88.5-.46.39-.69.9-.68 1.6l.01.03h1.71c.01-.27.09-.48.25-.63.14-.12.36-.19.59-.19.27 0 .5.09.66.25.16.17.24.4.24.66 0 .28-.07.53-.21.73-.14.21-.31.38-.54.55-.45.28-.76.55-.93.79-.17.21-.28.6-.28 1.04h1.78c0-.27.03-.49.11-.65.08-.18.22-.32.46-.47.4-.21.73-.47.98-.82.28-.36.4-.72.4-1.17 0-.67-.24-1.22-.72-1.61-.48-.41-1.13-.61-1.95-.61m-1.06 6.22V14h1.78v-1.78z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/help-network.svg���������������������������0000664�0000000�0000000�00000001132�14753064456�0026544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 3a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-4v2h1a1 1 0 0 1 1 1h7v2h-7a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1H2v-2h7a1 1 0 0 1 1-1h1v-2H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm-4.81 2c-.87 0-1.57.2-2.11.59-.52.41-.78.98-.77 1.77l.01.03h1.93c.01-.3.1-.53.28-.69a1 1 0 0 1 .66-.23c.31 0 .57.1.75.28.18.19.26.45.26.75 0 .32-.07.59-.23.82-.14.23-.35.43-.61.59-.51.34-.86.64-1.05.91-.2.26-.31.68-.31 1.18h2c0-.31.04-.56.13-.74.09-.19.26-.36.51-.52.45-.24.82-.53 1.11-.93s.44-.81.44-1.31c0-.76-.27-1.37-.81-1.82-.53-.45-1.26-.68-2.19-.68M11 12v2h2v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/help-rhombus-outline.svg�������������������0000664�0000000�0000000�00000000677�14753064456�0030224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 15.5h1.5V17H11zm1-8.55c2.7.11 3.87 2.83 2.28 4.86-.42.5-1.09.83-1.43 1.26-.35.43-.35.93-.35 1.43H11c0-.85 0-1.56.35-2.06.33-.5 1-.8 1.42-1.13 1.23-1.13.91-2.72-.77-2.85-.82 0-1.5.67-1.5 1.51H9c0-1.67 1.35-3.02 3-3.02M12 2c-.5 0-1 .19-1.41.59l-8 8c-.79.78-.79 2.04 0 2.82l8 8c.78.79 2.04.79 2.82 0l8-8c.79-.78.79-2.04 0-2.82l-8-8C13 2.19 12.5 2 12 2m0 2 8 8-8 8-8-8Z"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/help-rhombus.svg���������������������������0000664�0000000�0000000�00000000656�14753064456�0026544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c-.5 0-1 .19-1.41.59l-8 8c-.79.78-.79 2.04 0 2.82l8 8c.78.79 2.04.79 2.82 0l8-8c.79-.78.79-2.04 0-2.82l-8-8C13 2.19 12.5 2 12 2m0 4.95c2.7.11 3.87 2.83 2.28 4.86-.42.5-1.09.83-1.43 1.26-.35.43-.35.93-.35 1.43H11c0-.85 0-1.56.35-2.06.33-.5 1-.8 1.42-1.13 1.23-1.13.91-2.72-.77-2.85-.82 0-1.5.67-1.5 1.51H9c0-1.67 1.35-3.02 3-3.02m-1 8.55h1.5V17H11z"/></svg>����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/help.svg�����������������������������������0000664�0000000�0000000�00000000417�14753064456�0025062�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 19h3v3h-3zm2-17c5.35.22 7.68 5.62 4.5 9.67-.83 1-2.17 1.66-2.83 2.5C13 15 13 16 13 17h-3c0-1.67 0-3.08.67-4.08.66-1 2-1.59 2.83-2.25C15.92 8.43 15.32 5.26 12 5a3 3 0 0 0-3 3H6a6 6 0 0 1 6-6"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hexadecimal.svg����������������������������0000664�0000000�0000000�00000000401�14753064456�0026367�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 7c-1.1 0-2 .9-2 2v6a2 2 0 0 0 2 2h2c1.11 0 2-.89 2-2V9a2 2 0 0 0-2-2zm0 2h2v6H7zm10.6 8-2.1-2.1-2.1 2.1-1.4-1.4 2.1-2.1-2.1-2.1 1.4-1.4 2.1 2.1 2.1-2.1 1.4 1.4-2.1 2.1 2.1 2.1z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hexagon-multiple-outline.svg���������������0000664�0000000�0000000�00000001305�14753064456�0031066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.37 4 1.41 2.5L9.37 9H6.63l-1.4-2.5L6.63 4zm.88-2h-4.5c-.19 0-.36.11-.44.26L3.09 6.22 3 6.5l.09.28 2.22 3.96c.08.15.25.26.44.26h4.5c.19 0 .36-.11.44-.26l2.22-3.96.09-.28-.09-.28-2.22-3.96a.5.5 0 0 0-.44-.26m8.37 7.5L20 12l-1.38 2.5h-2.74L14.5 12l1.38-2.5zm.88-2H15c-.19 0-.36.11-.44.26l-2.22 3.96-.09.28.09.28 2.22 3.96c.08.15.25.26.44.26h4.5c.19 0 .36-.11.44-.26l2.22-3.96.09-.28-.09-.28-2.22-3.96a.5.5 0 0 0-.44-.26M9.37 15l1.41 2.5L9.37 20H6.63l-1.4-2.5 1.4-2.5zm.88-2h-4.5c-.19 0-.36.11-.44.26l-2.22 3.96-.09.28.09.28 2.22 3.96c.08.15.25.26.44.26h4.5c.19 0 .36-.11.44-.26l2.22-3.96.09-.28-.09-.28-2.22-3.96a.5.5 0 0 0-.44-.26"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hexagon-multiple.svg�����������������������0000664�0000000�0000000�00000001103�14753064456�0027405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.25 2c.19 0 .36.11.44.26l2.22 3.96.09.28-.09.28-2.22 3.96c-.08.15-.25.26-.44.26h-4.5c-.19 0-.36-.11-.44-.26L3.09 6.78 3 6.5l.09-.28 2.22-3.96c.08-.15.25-.26.44-.26zm0 11c.19 0 .36.11.44.26l2.22 3.96.09.28-.09.28-2.22 3.96c-.08.15-.25.26-.44.26h-4.5c-.19 0-.36-.11-.44-.26l-2.22-3.96L3 17.5l.09-.28 2.22-3.96c.08-.15.25-.26.44-.26zm9.25-5.5c.19 0 .36.11.44.26l2.22 3.96.09.28-.09.28-2.22 3.96c-.08.15-.25.26-.44.26H15c-.19 0-.36-.11-.44-.26l-2.22-3.96-.09-.28.09-.28 2.22-3.96c.08-.15.25-.26.44-.26z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hexagon-outline.svg������������������������0000664�0000000�0000000�00000000500�14753064456�0027231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 16.5c0 .38-.21.71-.53.88l-7.9 4.44c-.16.12-.36.18-.57.18s-.41-.06-.57-.18l-7.9-4.44A.99.99 0 0 1 3 16.5v-9c0-.38.21-.71.53-.88l7.9-4.44c.16-.12.36-.18.57-.18s.41.06.57.18l7.9 4.44c.32.17.53.5.53.88zM12 4.15 5 8.09v7.82l7 3.94 7-3.94V8.09z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hexagon-slice-1.svg������������������������0000664�0000000�0000000�00000000526�14753064456�0027017�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 16.5c0 .38-.21.71-.53.88l-7.9 4.44c-.16.12-.36.18-.57.18s-.41-.06-.57-.18l-7.9-4.44A.99.99 0 0 1 3 16.5v-9c0-.38.21-.71.53-.88l7.9-4.44c.16-.12.36-.18.57-.18s.41.06.57.18l7.9 4.44c.32.17.53.5.53.88zM12 4.15 5 8.09v7.82l7 3.94 7-3.94V8.09zM12 12V5.32l5.94 3.34z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hexagon-slice-2.svg������������������������0000664�0000000�0000000�00000000533�14753064456�0027016�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 15.38 12 12V5.32l6 3.37zm3 1.12c0 .38-.21.71-.53.88l-7.9 4.44c-.16.12-.36.18-.57.18s-.41-.06-.57-.18l-7.9-4.44A.99.99 0 0 1 3 16.5v-9c0-.38.21-.71.53-.88l7.9-4.44c.16-.12.36-.18.57-.18s.41.06.57.18l7.9 4.44c.32.17.53.5.53.88zM12 4.15 5 8.09v7.82l7 3.94 7-3.94V8.09z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hexagon-slice-3.svg������������������������0000664�0000000�0000000�00000000535�14753064456�0027021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 5.32 6 3.37v6.62l-6 3.37zm9 11.18c0 .38-.21.71-.53.88l-7.9 4.44c-.16.12-.36.18-.57.18s-.41-.06-.57-.18l-7.9-4.44A.99.99 0 0 1 3 16.5v-9c0-.38.21-.71.53-.88l7.9-4.44c.16-.12.36-.18.57-.18s.41.06.57.18l7.9 4.44c.32.17.53.5.53.88zM12 4.15 5 8.09v7.82l7 3.94 7-3.94V8.09z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hexagon-slice-4.svg������������������������0000664�0000000�0000000�00000000555�14753064456�0027024�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 5.32 6 3.37v6.62l-6 3.37-5.94-3.34L12 12zm9 11.18c0 .38-.21.71-.53.88l-7.9 4.44c-.16.12-.36.18-.57.18s-.41-.06-.57-.18l-7.9-4.44A.99.99 0 0 1 3 16.5v-9c0-.38.21-.71.53-.88l7.9-4.44c.16-.12.36-.18.57-.18s.41.06.57.18l7.9 4.44c.32.17.53.5.53.88zM12 4.15 5 8.09v7.82l7 3.94 7-3.94V8.09z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hexagon-slice-5.svg������������������������0000664�0000000�0000000�00000000557�14753064456�0027027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 5.32 6 3.37v6.62l-6 3.37-6-3.37V8.69L12 12zm9 11.18c0 .38-.21.71-.53.88l-7.9 4.44c-.16.12-.36.18-.57.18s-.41-.06-.57-.18l-7.9-4.44A.99.99 0 0 1 3 16.5v-9c0-.38.21-.71.53-.88l7.9-4.44c.16-.12.36-.18.57-.18s.41.06.57.18l7.9 4.44c.32.17.53.5.53.88zM12 4.15 5 8.09v7.82l7 3.94 7-3.94V8.09z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hexagon-slice-6.svg������������������������0000664�0000000�0000000�00000000551�14753064456�0027022�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 5.32 6 3.37v6.62l-6 3.37-6-3.37V8.69zm9 11.18c0 .38-.21.71-.53.88l-7.9 4.44c-.16.12-.36.18-.57.18s-.41-.06-.57-.18l-7.9-4.44A.99.99 0 0 1 3 16.5v-9c0-.38.21-.71.53-.88l7.9-4.44c.16-.12.36-.18.57-.18s.41.06.57.18l7.9 4.44c.32.17.53.5.53.88zM12 4.15 5 8.09v7.82l7 3.94 7-3.94V8.09z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hexagon.svg��������������������������������0000664�0000000�0000000�00000000430�14753064456�0025556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 16.5c0 .38-.21.71-.53.88l-7.9 4.44c-.16.12-.36.18-.57.18s-.41-.06-.57-.18l-7.9-4.44A.99.99 0 0 1 3 16.5v-9c0-.38.21-.71.53-.88l7.9-4.44c.16-.12.36-.18.57-.18s.41.06.57.18l7.9 4.44c.32.17.53.5.53.88z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hexagram-outline.svg�����������������������0000664�0000000�0000000�00000000355�14753064456�0027404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 7 1.3 2.8 3.2-.4-2 2.6 1.9 2.5-3.2-.4L12 17l-1.3-2.8-3.2.4 2-2.6-1.9-2.5 3.2.4zm0-5L9.5 7.7 3.3 7 7 12l-3.6 5 6.2-.7L12 22l2.5-5.7 6.2.6L17 12l3.6-5-6.2.7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hexagram.svg�������������������������������0000664�0000000�0000000�00000000266�14753064456�0025730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.5 7.66 6.14-.69L17 12l3.68 4.97-6.18-.65L12.03 22 9.5 16.34l-6.14.69L7 12 3.32 7.03l6.18.65L11.97 2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/high-definition-box.svg��������������������0000664�0000000�0000000�00000000364�14753064456�0027766�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-8 12H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11zm2-6h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-4zm1.5 4.5h2v-3h-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/high-definition.svg������������������������0000664�0000000�0000000�00000000274�14753064456�0027200�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 7h2v4h2V7h2v10H9v-4H7v4H5zm8 0h3a3 3 0 0 1 3 3v4a3 3 0 0 1-3 3h-3zm3 8a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-1v6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/highway.svg��������������������������������0000664�0000000�0000000�00000000263�14753064456�0025571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2 8 8h3V2zm3 0v6h3l-2-6zM2 9v1h2v1h2v-1h12l.06 1H20v-1h2V9zm5 2L3.34 22H11V11zm6 0v11h7.66L17 11z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hiking.svg���������������������������������0000664�0000000�0000000�00000001011�14753064456�0025372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.47 8.67H19V23h-1.53V12.6c-.8-.16-1.55-.46-2.26-.89s-1.31-.93-1.82-1.51l-.62 3.07 2.23 2.2V23h-2v-6l-2.24-2.2L8.89 23H6.73S9.86 7.22 9.89 7.09c.11-.48.33-.85.7-1.09.37-.27.74-.4 1.12-.4q.585 0 1.08.27c.34.17.6.42.79.74l1.06 1.63c.29.54.68 1.01 1.17 1.39s1.05.67 1.66.87zM8.55 5.89 7.4 5.65c-.57-.15-1.09-.03-1.56.29-.46.32-.74.76-.84 1.34l-.81 3.98c-.03.29.03.55.19.79s.37.37.62.41l2.21.43zM13 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.89 2-2-.89-2-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/history.svg��������������������������������0000664�0000000�0000000�00000000434�14753064456�0025632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.5 8H12v5l4.28 2.54.72-1.21-3.5-2.08zM13 3a9 9 0 0 0-9 9H1l3.96 4.03L9 12H6a7 7 0 0 1 7-7 7 7 0 0 1 7 7 7 7 0 0 1-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42A8.9 8.9 0 0 0 13 21a9 9 0 0 0 9-9 9 9 0 0 0-9-9"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hockey-puck.svg����������������������������0000664�0000000�0000000�00000000445�14753064456�0026355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 5C6.5 5 2 6.57 2 8.5S6.5 12 12 12s10-1.57 10-3.5S17.5 5 12 5M2 11.76v4.74C2 18.43 6.5 20 12 20s10-1.57 10-3.5v-4.74c-.67.46-1.42.81-2.27 1.1C17.62 13.6 14.95 14 12 14s-5.62-.4-7.73-1.14c-.85-.29-1.6-.64-2.27-1.1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hockey-sticks.svg��������������������������0000664�0000000�0000000�00000000653�14753064456�0026714�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.68 4H14.3l-1.74 4c-.03.04-.11.22-.25.5s-.25.54-.31.69L9.7 4H6.32l4.09 8.84c.09.22.32.75.7 1.59.39.85.67 1.48.89 1.92l1.41 3.09c.19.34.48.51.89.51L19 20v-4h-4l-1.4-3.16zm2.35 12v4H22v-3c0-.27-.09-.5-.28-.72-.19-.2-.42-.28-.72-.28zM5 16v4l4.7-.05c.41 0 .7-.17.89-.51l.85-1.94-1.6-3.44L9 16zm-3 4h1.97v-4H3c-.3 0-.53.08-.72.28-.19.22-.28.45-.28.72z"/></svg>�������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hololens.svg�������������������������������0000664�0000000�0000000�00000000464�14753064456�0025757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8s10 0 10 3c0 0 .09 3.36-.25 3.25C21 11 12 11 12 11s-9 0-9.75 3.25C1.91 14.36 2 11 2 11c0-3 10-3 10-3m0 4c8 0 8.75 2.25 8.75 2.25-1 3-1.75 3.75-5.75 3.75-3 0-2-1.5-3-1.5S12 18 9 18c-4 0-4.75-.75-5.75-3.75C3.25 14.25 4 12 12 12"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-account.svg���������������������������0000664�0000000�0000000�00000000413�14753064456�0026510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3 2 12h3v8h14v-8h3zm0 5.75A2.25 2.25 0 0 1 14.25 11 2.25 2.25 0 0 1 12 13.25 2.25 2.25 0 0 1 9.75 11 2.25 2.25 0 0 1 12 8.75M12 15c1.5 0 4.5.75 4.5 2.25V18h-9v-.75c0-1.5 3-2.25 4.5-2.25"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-alert-outline.svg���������������������0000664�0000000�0000000�00000000230�14753064456�0027635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 5.7 5 4.5V18H7v-7.8zM19 20v-8h3L12 3 2 12h3v8m8-12h-2v5h2zm0 7h-2v2h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-alert.svg�����������������������������0000664�0000000�0000000�00000000177�14753064456�0026172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3 2 12h3v8h14v-8h3zm1 15h-2v-2h2zm0-4h-2V8h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-analytics.svg�������������������������0000664�0000000�0000000�00000000210�14753064456�0027036�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3 2 12h3v8h14v-8h3M9 18H7v-6h2m4 6h-2v-8h2m4 8h-2v-4h2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-assistant.svg�������������������������0000664�0000000�0000000�00000001303�14753064456�0027064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.8 13H20v8h-7v-3.33l2.79-2.79.71.12a2.1 2.1 0 1 0 0-4.2 2.1 2.1 0 0 0-2.1 2.1l.1.71-1.5 1.52V9.65c.66-.36 1.1-1.05 1.1-1.85A2.1 2.1 0 0 0 12 5.7a2.1 2.1 0 0 0-2.1 2.1c0 .8.44 1.49 1.1 1.85v5.48l-1.5-1.52.1-.71a2.1 2.1 0 0 0-2.1-2.1 2.1 2.1 0 0 0-2.1 2.1A2.1 2.1 0 0 0 7.5 15l.71-.12L11 17.67V21H4v-8H2.25c-.42 0-.83 0-.83-.21.01-.22.43-.64.86-1.07L11 3c.33-.33.67-.67 1-.67s.67.34 1 .67l4 4V6h2v3l2.78 2.78c.4.4.81.81.82 1.02 0 .2-.4.2-.8.2M7.5 12a.9.9 0 0 1 .9.9.9.9 0 0 1-.9.9.9.9 0 0 1-.9-.9.9.9 0 0 1 .9-.9m9 0c.5 0 .9.4.9.9s-.4.9-.9.9a.9.9 0 0 1-.9-.9.9.9 0 0 1 .9-.9M12 6.9c.5 0 .9.4.9.9s-.4.9-.9.9-.9-.4-.9-.9.4-.9.9-.9"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-automation.svg������������������������0000664�0000000�0000000�00000000644�14753064456�0027242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3 2 12h3v8h14v-8h3zm0 5.5c2.34 0 4.46.93 6 2.44l-1.2 1.18a6.79 6.79 0 0 0-4.8-1.95c-1.88 0-3.58.74-4.8 1.95L6 10.94a8.54 8.54 0 0 1 6-2.44m0 3.33c1.4 0 2.67.56 3.6 1.47l-1.2 1.17a3.4 3.4 0 0 0-2.4-.97c-.94 0-1.79.37-2.4.97L8.4 13.3a5.13 5.13 0 0 1 3.6-1.47m0 3.34c.94 0 1.7.74 1.7 1.66s-.76 1.67-1.7 1.67-1.7-.75-1.7-1.67.76-1.66 1.7-1.66"/></svg>��������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-battery-outline.svg�������������������0000664�0000000�0000000�00000000356�14753064456�0030211�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 9h1V7.5h4V9h1c.55 0 1 .45 1 1v11c0 .55-.45 1-1 1h-6c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1m1 2v3h4v-3zm-4-5.31-5 4.5V18h5v2H5v-8H2l10-9 2.78 2.5H14v1.67l-.24.1z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-battery.svg���������������������������0000664�0000000�0000000�00000000357�14753064456�0026535�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20H5v-8H2l10-9 2.78 2.5H14v1.67c-1.16.41-2 1.53-2 2.83zm3-11h1V7.5h4V9h1c.55 0 1 .45 1 1v11c0 .55-.45 1-1 1h-6c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1m1 2v3h4v-3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-circle-outline.svg��������������������0000664�0000000�0000000�00000000340�14753064456�0027771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8m0-18C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m-1 12h2v3h3v-5h2l-6-5-6 5h2v5h3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-circle.svg����������������������������0000664�0000000�0000000�00000000513�14753064456�0026316�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.07 4.93C17.22 3 14.66 1.96 12 2c-2.66-.04-5.21 1-7.06 2.93C3 6.78 1.96 9.34 2 12c-.04 2.66 1 5.21 2.93 7.06C6.78 21 9.34 22.04 12 22c2.66.04 5.21-1 7.06-2.93C21 17.22 22.04 14.66 22 12c.04-2.66-1-5.22-2.93-7.07M17 12v6h-3.5v-5h-3v5H7v-6H5l7-7 7.5 7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-city-outline.svg����������������������0000664�0000000�0000000�00000000342�14753064456�0027502�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2v2.26l2 1.33V4h10v15h-5v2h7V2zM7.5 5 0 10v11h15V10zM14 6v.93L15.61 8H16V6zm4 0v2h2V6zM7.5 7.5 13 11v8h-3v-6H5v6H2v-8zM18 10v2h2v-2zm0 4v2h2v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-city.svg������������������������������0000664�0000000�0000000�00000000301�14753064456�0026020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 21V10l7.5-5 7.5 5v11h-5v-7H5v7zM24 2v19h-7V8.93l-1-.66V6h-2v.93l-4-2.66V2zm-3 12h-2v2h2zm0-4h-2v2h2zm0-4h-2v2h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-clock-outline.svg���������������������0000664�0000000�0000000�00000000530�14753064456�0027624�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.5 16.25 2.86 1.69-.75 1.22L15 17v-5h1.5zM23 16c0 3.87-3.13 7-7 7-2.38 0-4.47-1.19-5.74-3H4v-8H1l10-9 7 6.29c2.89.86 5 3.54 5 6.71M9.29 18c-.18-.63-.29-1.3-.29-2 0-3.46 2.5-6.32 5.8-6.89L11 5.69l-5 4.5V18zM21 16c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-clock.svg�����������������������������0000664�0000000�0000000�00000000414�14753064456�0026150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.5 16.25 2.86 1.69-.75 1.22L15 17v-5h1.5zM23 16c0 3.87-3.13 7-7 7-2.38 0-4.47-1.19-5.74-3H4v-8H1l10-9 7 6.29c2.89.86 5 3.54 5 6.71m-2 0c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-edit-outline.svg����������������������0000664�0000000�0000000�00000000452�14753064456�0027461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.041 11.14c.142 0 .276.057.38.163l1.276 1.276a.54.54 0 0 1 0 .77l-1 1-2.046-2.046 1-1a.57.57 0 0 1 .39-.163m-1.978 1.74 2.046 2.052L15.063 21H13v-2.063zM12 5.688l-5 4.5V18h4v2H5v-8H2l10-9 7.459 6.713L17 12.172v-1.984z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-edit.svg������������������������������0000664�0000000�0000000�00000000376�14753064456�0026011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3 2 12h3v8h5v-6h4v1.11l5.43-5.43zm9.04 8.14a.6.6 0 0 0-.39.16l-1 1 2.05 2.05 1-1a.55.55 0 0 0 0-.77l-1.28-1.28c-.1-.1-.24-.16-.38-.16m-1.98 1.74L13 18.94V21h2.06l6.05-6.07z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-export-outline.svg��������������������0000664�0000000�0000000�00000000241�14753064456�0030051�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m24 13-4 4v-3h-9v-2h9V9zM4 20v-8H1l10-9 7 6.3v.7h-2.21L11 5.69l-5 4.5V18h10v-2h2v4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-flood.svg�����������������������������0000664�0000000�0000000�00000001215�14753064456�0026160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.67 19c-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.34-1-1.94 0-2.09 1-3.33 1s-1.38-1-3.33-1-2.1 1-3.34 1v2c1.95 0 2.11-1 3.34-1 1.24 0 1.38 1 3.33 1s2.1-1 3.33-1 1.41 1 3.34 1 2.1-1 3.33-1c1.22 0 1.4 1 3.33 1v-2c-1.24 0-1.38-1-3.33-1m-9.99-1.5c1.95 0 2.09-1 3.32-1 1.2 0 1.43 1 3.34 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4 1 3.33 1v-2c-.65 0-1-.28-1.5-.55l-2-7.53 2.07.85.74-1.86L9.78 2 2 11.61l1.57 1.23 1.39-1.78.93 3.48c-.18-.04-.35-.04-.56-.04-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1 1.19 0 1.42 1 3.33 1m5.36-7.32 1.42 5.32c-1.34.08-1.46-1-3.46-1-.37 0-.66.04-.92.1l-.91-3.39z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-floor-0.svg���������������������������0000664�0000000�0000000�00000000270�14753064456�0026333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 10h2v6h-2zm11 2h-3v8H5v-8H2l10-9zm-7-2a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-floor-1.svg���������������������������0000664�0000000�0000000�00000000171�14753064456�0026334�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3 2 12h3v8h14v-8h3zm-2 5h4v10h-2v-8h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-floor-2.svg���������������������������0000664�0000000�0000000�00000000255�14753064456�0026340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3 2 12h3v8h14v-8h3zM9 8h4a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-2v2h4v2H9v-4a2 2 0 0 1 2-2h2v-2H9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-floor-3.svg���������������������������0000664�0000000�0000000�00000000322�14753064456�0026334�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 3 10 9h-3v8H5v-8H2zm3 8.5V10a2 2 0 0 0-2-2H9v2h4v2h-2v2h2v2H9v2h4a2 2 0 0 0 2-2v-1.5a1.5 1.5 0 0 0-1.5-1.5 1.5 1.5 0 0 0 1.5-1.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-floor-a.svg���������������������������0000664�0000000�0000000�00000000246�14753064456�0026417�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3 2 12h3v8h14v-8h3zm-1 5h2a2 2 0 0 1 2 2v8h-2v-3h-2v3H9v-8a2 2 0 0 1 2-2m0 2v3h2v-3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-floor-b.svg���������������������������0000664�0000000�0000000�00000000325�14753064456�0026416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3 2 12h3v8h14v-8h3zM9 8h4a2 2 0 0 1 2 2v1.5a1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1 1.5 1.5V16a2 2 0 0 1-2 2H9zm2 2v2h2v-2zm0 4v2h2v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-floor-g.svg���������������������������0000664�0000000�0000000�00000000254�14753064456�0026424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3 2 12h3v8h14v-8h3zm-1 5h4v2h-4v6h2v-4h2v4a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-6a2 2 0 0 1 2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-floor-l.svg���������������������������0000664�0000000�0000000�00000000164�14753064456�0026431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3 2 12h3v8h14v-8h3zM9 8h2v8h4v2H9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-floor-negative-1.svg������������������0000664�0000000�0000000�00000000205�14753064456�0030132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3 2 12h3v8h14v-8h3zm-1 12H7v-2h4zm4 3h-2v-8h-2V8h4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-group-minus.svg�����������������������0000664�0000000�0000000�00000000352�14753064456�0027343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 6H1l4-4 4 4H8v3H6V6H4v3H2zm11 4.9 1.3 1.1H16V9h2v3h3V8h1l-5-5-5 5h1zm.8 11.1c-.5-.9-.8-1.9-.8-3 0-1.6.6-3.1 1.7-4.1L9 10l-7 6h2v6h3v-5h4v5zm1.2-4v2h8v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-group-plus.svg������������������������0000664�0000000�0000000�00000000376�14753064456�0027201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 6H1l4-4 4 4H8v3H6V6H4v3H2zm11 4.9 1.3 1.1H16V9h2v3h3V8h1l-5-5-5 5h1zm.8 11.1c-.5-.9-.8-1.9-.8-3 0-1.6.6-3.1 1.7-4.1L9 10l-7 6h2v6h3v-5h4v5zm4.2-7v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-group-remove.svg����������������������0000664�0000000�0000000�00000000476�14753064456�0027514�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 6H1l4-4 4 4H8v3H6V6H4v3H2zm11 4.9 1.3 1.1H16V9h2v3h3V8h1l-5-5-5 5h1zm.8 11.1c-.5-.9-.8-1.9-.8-3 0-1.6.6-3.1 1.7-4.1L9 10l-7 6h2v6h3v-5h4v5zm7.3-6.5L19 17.6l-2.1-2.1-1.4 1.4 2.1 2.1-2.1 2.1 1.4 1.4 2.1-2.1 2.1 2.1 1.4-1.4-2.1-2.1 2.1-2.1z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-group.svg�����������������������������0000664�0000000�0000000�00000000267�14753064456�0026217�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 16h-2v6h-3v-5H8v5H5v-6H3l7-6zM6 2l4 4H9v3H7V6H5v3H3V6H2zm12 1 5 5h-1v4h-3V9h-2v3h-1.66L14 10.87V8h-1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-heart.svg�����������������������������0000664�0000000�0000000�00000000412�14753064456�0026156�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2 12 10-9 10 9h-3v8H5v-8zm10 6 .72-.66C15.3 15 17 13.46 17 11.57c0-1.54-1.21-2.75-2.75-2.75-.87 0-1.7.41-2.25 1.05a3 3 0 0 0-2.25-1.05C8.21 8.82 7 10.03 7 11.57c0 1.89 1.7 3.43 4.28 5.77z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-import-outline.svg��������������������0000664�0000000�0000000�00000000236�14753064456�0030046�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15 13-4 4v-3H2v-2h9V9zM5 20v-4h2v2h10v-7.81l-5-4.5L7.21 10H4.22L12 3l10 9h-3v8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-lightbulb-outline.svg�����������������0000664�0000000�0000000�00000000415�14753064456�0030507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 20v-8H2l10-9 10 9h-3v8zm7-14.31-5 4.5V18h10v-7.81zM11 17v-1h2v1zm0-2c-.28 0-.5-.22-.5-.5v-.9C9.6 13.08 9 12.11 9 11c0-1.66 1.34-3 3-3s3 1.34 3 3c0 1.11-.6 2.08-1.5 2.6v.9c0 .28-.22.5-.5.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-lightbulb.svg�������������������������0000664�0000000�0000000�00000000223�14753064456�0027027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3 2 12h3v8h14v-8h3m-9 6h-2v-1h2m.5-2.42V16h-3v-1.42a3 3 0 1 1 3 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-lightning-bolt-outline.svg������������0000664�0000000�0000000�00000000234�14753064456�0031453�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 20v-8H2l10-9 10 9h-3v8zm7-14.31-5 4.5V18h10v-7.81zM11.5 18v-4H9l3.5-7v4H15z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-lightning-bolt.svg��������������������0000664�0000000�0000000�00000000175�14753064456�0030002�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3 2 12h3v8h14v-8h3zm-.5 15v-4H9l3.5-7v4H15z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-lock-open.svg�������������������������0000664�0000000�0000000�00000000264�14753064456�0026747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3 2 12h3v8h14v-8h3zm0 5a3 3 0 0 1 3 3h-2a1 1 0 0 0-1-1 1 1 0 0 0-1 1v2h5v4H8v-4h1v-2a3 3 0 0 1 3-3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-lock.svg������������������������������0000664�0000000�0000000�00000000274�14753064456�0026011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3 2 12h3v8h14v-8h3zm0 6a3 3 0 0 1 3 3v1h1v4H8v-4h1v-1a3 3 0 0 1 3-3m0 2a1 1 0 0 0-1 1v1h2v-1c0-.5-.4-1-1-1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-map-marker.svg������������������������0000664�0000000�0000000�00000000426�14753064456�0027114�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3 2 12h3v8h14v-8h3zm0 4.7c2.1 0 3.8 1.7 3.8 3.8 0 3-3.8 6.5-3.8 6.5s-3.8-3.5-3.8-6.5c0-2.1 1.7-3.8 3.8-3.8m0 2.3a1.5 1.5 0 0 0-1.5 1.5A1.5 1.5 0 0 0 12 13a1.5 1.5 0 0 0 1.5-1.5A1.5 1.5 0 0 0 12 10"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-minus-outline.svg���������������������0000664�0000000�0000000�00000000236�14753064456�0027667�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 17h8v2h-8zm-9 3v-8H2l10-9 10 9h-5v-1.81l-5-4.5-5 4.5V18h5c0 .7.12 1.37.34 2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-minus.svg�����������������������������0000664�0000000�0000000�00000000213�14753064456�0026205�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 17v2h-8v-2zM12 3l10 9h-4a6.005 6.005 0 0 0-5.66 8H5v-8H2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-modern.svg����������������������������0000664�0000000�0000000�00000000252�14753064456�0026341�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 21V8a2 2 0 0 1 2-2l8-3v3a2 2 0 0 1 2 2v13h-6v-5H8v5zm8-2h2v-3h-2zm-6-6h2V9H8zm4 0h4V9h-4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-off-outline.svg�����������������������0000664�0000000�0000000�00000000420�14753064456�0027301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3l5.16 5.16L2 12h3v8h6v-6h1.11l.89.89V20h5.11l2.73 2.73zM9 12v6H7v-7.81l.68-.62L10.11 12zm6 6v-1.11L16.11 18zM10.36 7.16 8.95 5.75 12 3l10 9h-3v3.8l-2-2v-3.61l-5-4.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-off.svg�������������������������������0000664�0000000�0000000�00000000311�14753064456�0025623�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.84 22.73 18.11 20H14v-4.11L12.11 14H10v6H5v-8H2l4.27-3.84L1.11 3l1.28-1.27 19.72 19.73zM19 12h3L12 3 8.95 5.75 19 15.8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-outline.svg���������������������������0000664�0000000�0000000�00000000220�14753064456�0026527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 5.69 5 4.5V18h-2v-6H9v6H7v-7.81zM12 3 2 12h3v8h6v-6h2v6h6v-8h3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-percent-outline.svg�������������������0000664�0000000�0000000�00000000740�14753064456�0030174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.53 11.03-1.06-1.06-6 6 1.06 1.06zm-4.9-.66c-.23-.24-.55-.37-.88-.37s-.65.13-.88.37c-.24.23-.37.55-.37.88s.13.65.37.88c.23.24.55.37.88.37s.65-.13.88-.37c.24-.23.37-.55.37-.88s-.13-.65-.37-.88m4.5 4.5c-.23-.24-.55-.37-.88-.37s-.65.13-.88.37c-.24.23-.37.55-.37.88s.13.65.37.88c.23.24.55.37.88.37s.65-.13.88-.37c.24-.23.37-.55.37-.88s-.13-.65-.37-.88M19 12v8H5v-8H2l10-9 10 9zm-2-1.8-5-4.5-5 4.5V18h10z"/></svg>��������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-percent.svg���������������������������0000664�0000000�0000000�00000000704�14753064456�0026517�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 12v8H5v-8H2l10-9 10 9zm-3.47-.97-1.06-1.06-6 6 1.06 1.06zm-4.9-.66c-.23-.24-.55-.37-.88-.37s-.65.13-.88.37c-.24.23-.37.55-.37.88s.13.65.37.88c.23.24.55.37.88.37s.65-.13.88-.37c.24-.23.37-.55.37-.88s-.13-.65-.37-.88m4.5 4.5c-.23-.24-.55-.37-.88-.37s-.65.13-.88.37c-.24.23-.37.55-.37.88s.13.65.37.88c.23.24.55.37.88.37s.65-.13.88-.37c.24-.23.37-.55.37-.88s-.13-.65-.37-.88"/></svg>������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-plus-outline.svg����������������������0000664�0000000�0000000�00000000262�14753064456�0027516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 14h2v3h3v2h-3v3h-2v-3h-3v-2h3zM5 20v-8H2l10-9 10 9h-5v-1.81l-5-4.5-5 4.5V18h5c0 .7.12 1.37.34 2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-plus.svg������������������������������0000664�0000000�0000000�00000000236�14753064456�0026042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 14h2v3h3v2h-3v3h-2v-3h-3v-2h3zM12 3l10 9h-4a6.005 6.005 0 0 0-5.66 8H5v-8H2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-remove-outline.svg��������������������0000664�0000000�0000000�00000000422�14753064456�0030026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.46 15.88 1.42-1.42L18 16.59l2.12-2.12 1.42 1.41L19.41 18l2.13 2.12-1.42 1.42L18 19.41l-2.12 2.13-1.42-1.42L16.59 18l-2.12-2.12M5 20v-8H2l10-9 10 9h-5v-1.81l-5-4.5-5 4.5V18h5c0 .7.12 1.37.34 2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-remove.svg����������������������������0000664�0000000�0000000�00000000376�14753064456�0026361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.46 15.88 1.42-1.42L18 16.59l2.12-2.12 1.42 1.41L19.41 18l2.13 2.12-1.42 1.42L18 19.41l-2.12 2.13-1.42-1.42L16.59 18l-2.12-2.12M12 3l10 9h-4a6.005 6.005 0 0 0-5.66 8H5v-8H2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-roof.svg������������������������������0000664�0000000�0000000�00000000172�14753064456�0026023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 16h3L12 7 2 16h3l7-6.31zM7 8.81V7H4v4.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-search-outline.svg��������������������0000664�0000000�0000000�00000000525�14753064456�0030002�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.31 18.9c.44-.69.69-1.52.69-2.4 0-2.5-2-4.5-4.5-4.5S11 14 11 16.5s2 4.5 4.5 4.5c.87 0 1.69-.25 2.38-.68L21 23.39 22.39 22zm-3.81.1a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5M5 20v-8H2l10-9 10 9h-1.82A6.44 6.44 0 0 0 17 10.18l-5-4.49-5 4.5V18h2.18c.17.72.46 1.39.85 2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-search.svg����������������������������0000664�0000000�0000000�00000000532�14753064456�0026323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.31 18.9c.44-.69.69-1.52.69-2.4 0-2.5-2-4.5-4.5-4.5S11 14 11 16.5s2 4.5 4.5 4.5c.87 0 1.69-.25 2.38-.68L21 23.39 22.39 22zm-3.81.1a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5M5 20v-8H2l10-9 10 9h-1.82c-1.18-1.23-2.84-2-4.68-2-3.58 0-6.5 2.92-6.5 6.5 0 1.29.38 2.5 1.03 3.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-silo-outline.svg����������������������0000664�0000000�0000000�00000000460�14753064456�0027501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 21h-3v-2h3zm0-4h-3v-2h3zm0-4h-3v-2h3zm4-5.2C23.6 4.5 20.8 2 17.5 2c-1.7 0-3.4.7-4.6 1.9-.7.7-1.2 1.4-1.5 2.3L15.6 9H22v13h2zM13.3 7c.6-1.8 2.3-3 4.2-3s3.6 1.2 4.2 3zM7.5 6 0 11v11h15V11zM13 20h-3v-6H5v6H2v-8l5.5-3.5L13 12z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-silo.svg������������������������������0000664�0000000�0000000�00000000404�14753064456�0026022�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 7.8C23.6 4.5 20.9 2 17.5 2c-1.7 0-3.4.7-4.6 1.9-.7.7-1.2 1.4-1.5 2.3L17 9.9v.1h3v2h-3v2h3v2h-3v2h3v2h-3v2h7zM13.3 7c.6-1.8 2.3-3 4.2-3s3.6 1.2 4.2 3zM0 11v11h5v-7h5v7h5V11L7.5 6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-sound-in-outline.svg������������������0000664�0000000�0000000�00000000702�14753064456�0030266�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.58 2c-.07 2.616-2.05 4.596-4.596 4.596V8.01C5.45 8.081 8.136 5.394 7.994 2zM1.984 3.626v1.415C3.752 4.97 5.024 3.697 5.024 2H3.612a1.95 1.95 0 0 1-1.627 1.626m20.032 2.97c-2.546 0-4.526-1.98-4.596-4.596h-1.415c-.141 3.394 2.546 6.081 6.01 6.01zm0-1.555V3.626A1.95 1.95 0 0 1 20.389 2h-1.414c0 1.697 1.273 2.97 3.04 3.04M19 20v-8h3L12 3 2 12h3v8zM12 5.7l5 4.5V18H7v-7.8z"/></svg>��������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-sound-in.svg��������������������������0000664�0000000�0000000�00000000652�14753064456�0026615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.58 2c-.07 2.616-2.05 4.596-4.596 4.596V8.01C5.45 8.081 8.136 5.394 7.994 2zM1.984 3.626v1.415C3.752 4.97 5.024 3.697 5.024 2H3.612a1.95 1.95 0 0 1-1.627 1.626m20.032 2.97c-2.546 0-4.526-1.98-4.596-4.596h-1.415c-.141 3.394 2.546 6.081 6.01 6.01zm0-1.555V3.626A1.95 1.95 0 0 1 20.389 2h-1.414c0 1.697 1.273 2.97 3.04 3.04M19 20v-8h3L12 3 2 12h3v8z"/></svg>��������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-sound-out-outline.svg�����������������0000664�0000000�0000000�00000000663�14753064456�0030475�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.404 7.012C2.474 4.395 4.454 2.416 7 2.416V1C3.535.931.848 3.618.99 7.011zM7 5.385V3.971c-1.768.07-3.04 1.344-3.04 3.04h1.414A1.95 1.95 0 0 1 7 5.386m10-2.97c2.546 0 4.526 1.98 4.596 4.597h1.414C23.152 3.618 20.465.93 17 1.002zm0 1.556v1.414a1.95 1.95 0 0 1 1.626 1.627h1.415c0-1.697-1.273-2.97-3.041-3.04M19 20v-8h3L12 3 2 12h3v8zM12 5.7l5 4.5V18H7v-7.8z"/></svg>�����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-sound-out.svg�������������������������0000664�0000000�0000000�00000000633�14753064456�0027015�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.404 7.012C2.474 4.395 4.454 2.416 7 2.416V1C3.535.931.848 3.618.99 7.011zM7 5.385V3.971c-1.768.07-3.04 1.344-3.04 3.04h1.414A1.95 1.95 0 0 1 7 5.386m10-2.97c2.546 0 4.526 1.98 4.596 4.597h1.414C23.152 3.618 20.465.93 17 1.002zm0 1.556v1.414a1.95 1.95 0 0 1 1.626 1.627h1.415c0-1.697-1.273-2.97-3.041-3.04M19 20v-8h3L12 3 2 12h3v8z"/></svg>�����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-switch-outline.svg��������������������0000664�0000000�0000000�00000000323�14753064456�0030032�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 3 1 9h2v6h4v-4h2v4h4V9h2zm3.5 6v4.5h-1v-4h-5v4h-1V8L8 5l3.5 3zM9 16v2h6v-2l3 3-3 3v-2H9v2l-3-3zm14-7h-2v6h-6v-5h4l-5.46-4.89L16 3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-switch.svg����������������������������0000664�0000000�0000000�00000000264�14753064456�0026361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 15v-4h3v4H13V9h2L8 3 1 9h2v6zM9 16v2h6v-2l3 3-3 3v-2H9v2l-3-3zm14-7h-2v6h-6v-5h4l-5.46-4.89L16 3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-thermometer-outline.svg���������������0000664�0000000�0000000�00000000473�14753064456�0031072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 8a2 2 0 0 1 2 2v6.76c.61.55 1 1.35 1 2.24 0 1.66-1.34 3-3 3s-3-1.34-3-3c0-.89.39-1.69 1-2.24V10c0-1.1.9-2 2-2m0 1c-.55 0-1 .45-1 1v1h2v-1c0-.55-.45-1-1-1m-7-3.31-5 4.5V18h7.1l-.1 1 .1 1H5v-8H2l10-9 4.4 3.96c-.51.44-.9 1.01-1.15 1.65z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-thermometer.svg�����������������������0000664�0000000�0000000�00000000464�14753064456�0027415�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 8a2 2 0 0 1 2 2v6.76c.61.55 1 1.35 1 2.24 0 1.66-1.34 3-3 3s-3-1.34-3-3c0-.89.39-1.69 1-2.24V10c0-1.1.9-2 2-2m0 1c-.55 0-1 .45-1 1v1h2v-1c0-.55-.45-1-1-1M5 20v-8H2l10-9 4.4 3.96A3.97 3.97 0 0 0 15 10v6c-.63.83-1 1.87-1 3l.1 1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-variant-outline.svg�������������������0000664�0000000�0000000�00000000200�14753064456�0030167�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 13h6v6h3v-9l-6-4.5L6 10v9h3zm-5 8V9l8-6 8 6v12z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home-variant.svg���������������������������0000664�0000000�0000000�00000000151�14753064456�0026517�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 3 8 6v12h-5v-7H9v7H4V9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/home.svg�����������������������������������0000664�0000000�0000000�00000000161�14753064456�0025056�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hook-off.svg�������������������������������0000664�0000000�0000000�00000000622�14753064456�0025640�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9.86v1.32l2 2V9.86c2.14-.55 3.43-2.73 2.87-4.86A4 4 0 0 0 13 2.11 4.01 4.01 0 0 0 10.13 7c.37 1.4 1.46 2.5 2.87 2.86M14 4a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m4.73 18-3.87-3.87a5.015 5.015 0 0 1-6.03 3.69C6.6 21.28 5 19.29 5 17v-5l5 5H7a3 3 0 0 0 3 3 3 3 0 0 0 3-3v-.73l-11-11L3.28 4 13 13.72l2 2 5 5z"/></svg>��������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hook.svg�����������������������������������0000664�0000000�0000000�00000000456�14753064456�0025075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 6a3.99 3.99 0 0 1-3 3.86V17a5 5 0 0 1-5 5 5 5 0 0 1-5-5v-5l5 5H7a3 3 0 0 0 3 3 3 3 0 0 0 3-3V9.86c-1.77-.46-3-2.06-3-3.89C10 3.76 11.8 2 14 2c2.22 0 4 1.79 4 4m-4 2a2 2 0 0 0 2-2 2 2 0 0 0-2-2 2 2 0 0 0-2 2 2 2 0 0 0 2 2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hoop-house.svg�����������������������������0000664�0000000�0000000�00000000410�14753064456�0026211�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 5C6.5 5 2 9.5 2 15v6h20v-6c0-5.5-4.5-10-10-10m0 2c2.53 0 4.78 1.17 6.25 3H5.76C7.22 8.17 9.47 7 12 7M8 19H4v-4c0-1.06.21-2.07.58-3H8zm6 0h-4v-7h4zm6 0h-4v-7h3.42c.37.93.58 1.94.58 3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hops.svg�����������������������������������0000664�0000000�0000000�00000001073�14753064456�0025102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 12s-8.5-2-8.5-10c0 0 8.5 0 8.5 10M3 12C3 2 11.5 2 11.5 2c0 8-8.5 10-8.5 10m9-5.5s1 2.16 3 4c-.24 3.66-3 5.5-3 5.5s-2.76-1.84-3-5.5c2-1.84 3-4 3-4m8.75 6.75S20 17 18 19c0 0-2.47-1.64-3.67-4.19.72-1.23 1.17-2.69 1.42-3.68 1.38 1.05 3 1.87 5 2.12m-5.25 5c-1 2-3.5 3.5-3.5 3.5s-2.5-1.5-3.5-3.5c0 0 1.09-.91 1.85-2.45.47.55 1.01.99 1.65 1.2.64-.21 1.18-.65 1.65-1.2.76 1.54 1.85 2.45 1.85 2.45m-12.25-5c2-.25 3.62-1.07 5-2.12.25.99.7 2.45 1.42 3.68C8.47 17.36 6 19 6 19c-2-2-2.75-5.75-2.75-5.75"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/horizontal-rotate-clockwise.svg������������0000664�0000000�0000000�00000000512�14753064456�0031574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 14-4-4-4 4h3.1c.46 4.56 2.48 8 4.9 8s4.44-3.44 4.9-8h-1.99c-.34 3.45-1.51 6-2.91 6s-2.57-2.55-2.91-6zm0-10c1.4 0 2.57 2.55 2.91 6h1.99c-.46-4.56-2.48-8-4.9-8-2.16 0-4 2.74-4.7 6.58l.7-.7 1.21 1.2C9.64 6.11 10.73 4 12 4m10 9v-2H11l2 2zM2 13h1l2-2H2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/horizontal-rotate-counterclockwise.svg�����0000664�0000000�0000000�00000000517�14753064456�0033201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10H9.09C9.43 6.55 10.6 4 12 4s2.57 2.55 2.91 6h1.99c-.46-4.56-2.48-8-4.9-8s-4.44 3.44-4.9 8H4l4 4zm0 10c-1.27 0-2.36-2.11-2.79-5.08L8 16.12l-.7-.7C8 19.26 9.84 22 12 22c2.42 0 4.44-3.44 4.9-8h-1.99c-.34 3.45-1.51 6-2.91 6m10-9h-9l-2 2h11zM2 13h3l-2-2H2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/horse-human.svg����������������������������0000664�0000000�0000000�00000001440�14753064456�0026355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 3.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S12.33 5 11.5 5 10 4.33 10 3.5M22 8v3.5l-1.03.35A2.5 2.5 0 0 1 18.5 14h-.08c-.14.68-.47 1.29-.92 1.78V22H15v-5h-.25c-.21 0-.42-.03-.62-.06l-4.44-.74-1.12 2.01.75 3.79H6.78L6 18.25c-.03-.3 0-.6.16-.86l1.02-1.81a3.27 3.27 0 0 1-1.68-2.77c-.04.15-.06.37-.03.69.03.44.14 1.09.07 1.81-.04.72-.37 1.46-.79 1.95-.43.49-.9.83-1.4 1.09l-.7-.7c.19-.47.38-.89.42-1.28.06-.37-.01-.67-.12-.94l-.53-1.13c-.21-.51-.47-1.25-.42-2.12.03-.85.5-1.96 1.39-2.57.9-.61 1.87-.7 2.66-.53.5.1 1.01.34 1.45.68.37-.17.8-.26 1.25-.26H9V8.11c0-1 .68-1.92 1.66-2.08A2 2 0 0 1 13 8v1.5h1.5V9c0-2.21 1.79-4 4-4H22l-.89 1.34c.54.36.89.97.89 1.66m-2 3.2-1.04-1.66c-.13-.21-.46-.12-.46.13V13c.83 0 1.5-.67 1.5-1.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/horse-variant-fast.svg���������������������0000664�0000000�0000000�00000000570�14753064456�0027647�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 8v8l-3 1-3.09-5.5c-.26-.46-.99-.23-.91.31L17 21 7 17l1.15-8.06A6.92 6.92 0 0 1 15 3h8l-1.58 2.37C22.36 5.88 23 6.86 23 8M4 5h3.58c.5-.76 1.12-1.43 1.83-2H4c-.55 0-1 .45-1 1s.45 1 1 1m1.84 6H2c-.55 0-1 .45-1 1s.45 1 1 1h3.55zM3 9h3.12l.05-.34c.08-.58.22-1.13.41-1.66H3c-.55 0-1 .45-1 1s.45 1 1 1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/horse-variant.svg��������������������������0000664�0000000�0000000�00000000312�14753064456�0026706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 8v8l-3 1-3.09-5.5c-.26-.46-.99-.23-.91.31L14 21 4 17l1.15-8.06A6.92 6.92 0 0 1 12 3h8l-1.58 2.37C19.36 5.88 20 6.86 20 8"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/horse.svg����������������������������������0000664�0000000�0000000�00000001150�14753064456�0025245�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 6v3.5l-1.5.5-1.54-2.46c-.13-.21-.46-.12-.46.13v3.58c0 .98-.39 1.86-1 2.53V21H15v-6h-.25c-.21 0-.42-.03-.62-.06l-4.44-.74-1.12 2.01.96 4.79H7l-1-4.75c-.03-.3 0-.6.16-.86l1.02-1.81a3.27 3.27 0 0 1-1.68-2.77c-.04.15-.06.37-.03.69.03.44.14 1.09.07 1.81-.04.72-.37 1.46-.79 1.95-.43.49-.9.83-1.4 1.09l-.7-.7c.19-.47.38-.89.42-1.28.06-.37-.01-.67-.12-.94l-.53-1.13c-.21-.51-.47-1.25-.42-2.12.03-.85.5-1.96 1.39-2.57.9-.61 1.87-.69 2.66-.53.5.1 1.01.34 1.45.68.37-.17.8-.26 1.25-.26h5.75V7c0-2.21 1.79-4 4-4H22l-.89 1.34c.54.36.89.97.89 1.66"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/horseshoe.svg������������������������������0000664�0000000�0000000�00000000631�14753064456�0026127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 4h1V1h-4v3s2 4 2 8-2 7-6 7-6-3-6-7 2-8 2-8V1H4v3h1S2 8 2 14c0 5 5 9 10 9s10-4 10-9c0-6-3-10-3-10M4 13c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1m2 6c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1m6 3c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1m6-3c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1m2-6c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1"/></svg>�������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hospital-box-outline.svg�������������������0000664�0000000�0000000�00000000305�14753064456�0030214�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 14h-4v4h-4v-4H6v-4h4V6h4v4h4m2-8H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 18H4V4h16z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hospital-box.svg���������������������������0000664�0000000�0000000�00000000270�14753064456�0026540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 14h-4v4h-4v-4H6v-4h4V6h4v4h4m1-7H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hospital-building.svg����������������������0000664�0000000�0000000�00000000352�14753064456�0027546�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 22V7a1 1 0 0 1 1-1h4V2h10v4h4a1 1 0 0 1 1 1v15h-8v-5h-4v5zM9 4v6h2V8h2v2h2V4h-2v2h-2V4zM4 20h4v-3H4zm0-5h4v-3H4zm12 5h4v-3h-4zm0-5h4v-3h-4zm-6 0h4v-3h-4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hospital-marker.svg������������������������0000664�0000000�0000000�00000000256�14753064456�0027235�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c3.86 0 7 3.13 7 7 0 5.25-7 13-7 13S5 14.25 5 9a7 7 0 0 1 7-7M9 6v6h2v-2h2v2h2V6h-2v2h-2V6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hospital.svg�������������������������������0000664�0000000�0000000�00000000156�14753064456�0025755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 14h-4v4h-4v-4H6v-4h4V6h4v4h4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hot-tub.svg��������������������������������0000664�0000000�0000000�00000001201�14753064456�0025504�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 4a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m4.15 8H22v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-8h3v-.75C5 10 6 9 7.25 9h.03c.34 0 .67.09.96.23.26.12.5.27.69.5l1.4 1.55c.23.26.51.5.82.72M7 20v-6H5v6zm4 0v-6H9v6zm4 0v-6h-2v6zm4 0v-6h-2v6zm-.35-14.14c1.03 1 1.51 2.35 1.3 3.71l-.06.43H18l.09-.59c.15-.79-.09-1.58-.67-2.2l-.07-.06c-1.03-1.01-1.5-2.36-1.3-3.72l.06-.43H18l-.09.59c-.15.79.09 1.58.67 2.2zm-4 0c1.03 1 1.51 2.35 1.3 3.71l-.06.43H14l.09-.59c.15-.79-.09-1.58-.67-2.2l-.07-.06c-1.03-1.01-1.5-2.36-1.3-3.72l.06-.43H14l-.09.59c-.15.79.09 1.58.67 2.2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hours-12.svg�������������������������������0000664�0000000�0000000�00000000767�14753064456�0025522�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2v2c4 .5 7 3.8 7 7.9 0 3.2-1.9 6-4.7 7.3L13 17v5h5l-1.2-1.2c3.1-1.7 5.2-5 5.2-8.8 0-5.2-4-9.5-9-10m-2 0c-1.9.2-3.8 1-5.3 2.2l1.4 1.4C8.2 4.8 9.6 4.2 11 4zM4.2 5.7C3 7.2 2.2 9.1 2 11h2c.2-1.4.8-2.8 1.6-3.9zM2 13c.2 1.9 1 3.8 2.2 5.3l1.4-1.4C4.8 15.8 4.2 14.4 4 13zm5.1 5.4-1.4 1.4c1.5 1.2 3.4 2 5.3 2.2v-2c-1.4-.2-2.8-.8-3.9-1.6M12 8v2h3v1h-1c-1.1 0-2 .9-2 2v3h5v-2h-3v-1h1c1.1 0 2-.9 2-2v-1c0-1.1-.9-2-2-2zM7 8v2h1v6h2V8z"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/material/hours-24.svg�������������������������������0000664�0000000�0000000�00000001077�14753064456�0025520�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2.05v2.02c3.95.49 7 3.85 7 7.93 0 3.21-1.92 6-4.72 7.28L13 17v5h5l-1.22-1.22C19.91 19.07 22 15.76 22 12c0-5.18-3.95-9.45-9-9.95M11 2c-1.95.2-3.8.96-5.32 2.21L7.1 5.63A8.2 8.2 0 0 1 11 4zM4.2 5.68C2.96 7.2 2.2 9.05 2 11h2c.19-1.42.75-2.77 1.63-3.9zM6 8v2h3v1H8c-1.1 0-2 .9-2 2v3h5v-2H8v-1h1c1.11 0 2-.89 2-2v-1a2 2 0 0 0-2-2zm6 0v5h3v3h2v-3h1v-2h-1V8h-2v3h-1V8zM2 13c.2 1.95.97 3.8 2.22 5.32l1.42-1.42A8.2 8.2 0 0 1 4 13zm5.11 5.37-1.43 1.42A10.04 10.04 0 0 0 11 22v-2a8.06 8.06 0 0 1-3.89-1.63"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hub-outline.svg����������������������������0000664�0000000�0000000�00000001565�14753064456�0026372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 6.5c-1.7 0-3 1.3-3 3v.2l-2 .7c-.6-1.2-1.8-2.1-3.2-2.3V5.9C14 5.6 15 4.4 15 3c0-1.7-1.3-3-3-3S9 1.3 9 3c0 1.4 1 2.6 2.2 2.9v2.2c-1.3.2-2.5 1.1-3.2 2.3l-2-.7v-.2c0-1.7-1.3-3-3-3s-3 1.3-3 3 1.3 3 3 3c1.1 0 2-.6 2.5-1.4l2 .7c-.2 1.3.2 2.7 1.1 3.7l-1.4 1.8Q6.6 17 6 17c-1.7 0-3 1.3-3 3s1.3 3 3 3 3-1.3 3-3q0-1.05-.6-1.8l1.4-1.8c1.4.8 3 .8 4.4 0l1.4 1.8q-.6.75-.6 1.8c0 1.7 1.3 3 3 3s3-1.3 3-3-1.3-3-3-3c-.4 0-.9.1-1.2.3l-1.4-1.8c.9-1 1.3-2.4 1.1-3.7l2-.7c.5.8 1.5 1.4 2.5 1.4 1.7 0 3-1.3 3-3s-1.3-3-3-3m-18 4c-.5 0-1-.4-1-1s.5-1 1-1 1 .4 1 1-.5 1-1 1M6 21c-.6 0-1-.5-1-1s.4-1 1-1 1 .5 1 1-.4 1-1 1m5-18c0-.5.4-1 1-1s1 .5 1 1-.4 1-1 1-1-.5-1-1m1 12c-1.4 0-2.5-1.1-2.5-2.5S10.6 10 12 10s2.5 1.1 2.5 2.5S13.4 15 12 15m6 4c.5 0 1 .5 1 1s-.5 1-1 1-1-.5-1-1 .5-1 1-1m3-8.5c-.5 0-1-.4-1-1s.5-1 1-1 1 .4 1 1-.5 1-1 1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hub.svg������������������������������������0000664�0000000�0000000�00000001055�14753064456�0024707�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.4 18.2q.6.75.6 1.8c0 1.7-1.3 3-3 3s-3-1.3-3-3 1.3-3 3-3q.6 0 1.2.3l1.4-1.8c-.9-1-1.3-2.4-1.1-3.7l-2-.7c-.5.8-1.4 1.4-2.5 1.4-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3v.2l2 .7c.6-1.2 1.8-2.1 3.2-2.3V5.9C10 5.6 9 4.4 9 3c0-1.7 1.3-3 3-3s3 1.3 3 3c0 1.4-1 2.6-2.2 2.9v2.2c1.4.2 2.6 1.1 3.2 2.3l2-.7v-.2c0-1.7 1.3-3 3-3s3 1.3 3 3-1.3 3-3 3c-1.1 0-2-.6-2.5-1.4l-2 .7c.2 1.3-.2 2.7-1.1 3.7l1.4 1.8q.6-.3 1.2-.3c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3q0-1.05.6-1.8l-1.4-1.8c-1.4.8-3 .8-4.4 0z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hubspot.svg��������������������������������0000664�0000000�0000000�00000001034�14753064456�0025612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.1 8.6V6.2c.6-.3 1.1-.9 1.1-1.6v-.1c0-1-.8-1.8-1.8-1.8h-.1c-1 0-1.8.8-1.8 1.8v.1c0 .7.4 1.3 1.1 1.6v2.4c-.9.1-1.8.5-2.5 1.1L6.5 4.6c.3-1.1-.4-2.3-1.5-2.5s-2.2.3-2.5 1.4.4 2.3 1.5 2.6c.5.1 1.1.1 1.6-.2l6.4 5c-1.2 1.8-1.2 4.1.1 5.9l-2 2c-.2 0-.3-.1-.5-.1-.9 0-1.7.8-1.7 1.7S8.7 22 9.6 22s1.7-.8 1.7-1.7c0-.2 0-.3-.1-.5l1.9-1.9c2.3 1.7 5.6 1.3 7.3-1s1.3-5.6-1-7.3c-.6-.5-1.4-.9-2.3-1m-.8 7.8c-1.5 0-2.7-1.2-2.7-2.7s1.2-2.7 2.7-2.7 2.7 1.2 2.7 2.7-1.2 2.7-2.7 2.7"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hulu.svg�����������������������������������0000664�0000000�0000000�00000000314�14753064456�0025103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 12.8V22h-4.8v-8.1c0-.7-.6-1.3-1.3-1.3h-2.9c-.7 0-1.3.6-1.3 1.3V22H4.5V2h4.8v6.4c.3-.1.6-.2.9-.2H15c2.5 0 4.5 2.1 4.5 4.6"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-baby-changing-table.svg��������������0000664�0000000�0000000�00000000662�14753064456�0031020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 6.08c-.78.04-1.5.54-1.78 1.32L3 12.13V22h4v-9.16l1.42-3.9L10.7 10H14V8h-2.85L7.29 6.2a2.2 2.2 0 0 0-.79-.12M9 17h12v2H9m1-15.5a2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 2 2m11 11a1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5 1.5 1.5 0 0 1 1.5 1.5M9 11v2h2v1c0 1.11.89 2 2 2h2c1.11 0 2-.89 2-2v-3h-2v2h-2v-1a1 1 0 0 0-1-1Z"/></svg>������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-cane.svg�����������������������������0000664�0000000�0000000�00000001141�14753064456�0026141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 12.24V22h-.94v-9.76c0-.15-.06-.24-.13-.35a.42.42 0 0 0-.31-.13.46.46 0 0 0-.35.13c-.09.11-.13.21-.13.35v.92h-.91v-.66c-.7-.17-1.33-.46-1.88-.87s-1.01-.89-1.39-1.44l-.35 1.2c-.11.42-.11.85-.11 1.29v.65l1.85 2.61V22H11.5v-4.66L9.82 15l-.17 3.25L6.86 22l-1.48-1.13 2.39-3.23v-4.96c0-.53.05-1.05.14-1.57l.34-1.57-1.39.78v3.31H5v-4.4l5-2.83c.29-.14.59-.22.91-.22s.63.09.92.26c.32.18.56.44.74.79l.74 1.57c.29.58.73 1.07 1.33 1.46.59.39 1.25.59 1.98.59.38 0 .7.15.98.39.28.26.4.59.4 1M12 2a2 2 0 0 1 2 2c0 1.11-.89 2-2 2a2 2 0 1 1 0-4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-capacity-decrease.svg����������������0000664�0000000�0000000�00000001521�14753064456�0030603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2m4.78 3.58C19.93 7.21 19 7 18 7c-.67 0-1.31.1-1.92.28.58.55.92 1.32.92 2.15V10h5v-.57c0-.81-.5-1.53-1.22-1.85M6 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2m1.92 1.28C7.31 7.1 6.67 7 6 7c-1 0-1.93.21-2.78.58C2.5 7.9 2 8.62 2 9.43V10h5v-.57c0-.83.34-1.6.92-2.15M10 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2m6 6H8v-.57c0-.81.5-1.53 1.22-1.85C10.07 7.21 11 7 12 7s1.93.21 2.78.58C15.5 7.9 16 8.62 16 9.43zm-1 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2m6 6h-8v-.57c0-.81.5-1.53 1.22-1.85C15.07 19.21 16 19 17 19s1.93.21 2.78.58c.72.32 1.22 1.04 1.22 1.85zM5 16c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2m6 6H3v-.57c0-.81.5-1.53 1.22-1.85C5.07 19.21 6 19 7 19s1.93.21 2.78.58c.72.32 1.22 1.04 1.22 1.85zm1.75-9v-2h-1.5v2H9l3 3 3-3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-capacity-increase.svg����������������0000664�0000000�0000000�00000001521�14753064456�0030621�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2m4.78 3.58C19.93 7.21 19 7 18 7c-.67 0-1.31.1-1.92.28.58.55.92 1.32.92 2.15V10h5v-.57c0-.81-.5-1.53-1.22-1.85M6 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2m1.92 1.28C7.31 7.1 6.67 7 6 7c-1 0-1.93.21-2.78.58C2.5 7.9 2 8.62 2 9.43V10h5v-.57c0-.83.34-1.6.92-2.15M10 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2m6 6H8v-.57c0-.81.5-1.53 1.22-1.85C10.07 7.21 11 7 12 7s1.93.21 2.78.58C15.5 7.9 16 8.62 16 9.43M15 16c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2m6 6h-8v-.57c0-.81.5-1.53 1.22-1.85C15.07 19.21 16 19 17 19s1.93.21 2.78.58c.72.32 1.22 1.04 1.22 1.85M5 16c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2m6 6H3v-.57c0-.81.5-1.53 1.22-1.85C5.07 19.21 6 19 7 19s1.93.21 2.78.58c.72.32 1.22 1.04 1.22 1.85M12.75 14v2h-1.5v-2H9l3-3 3 3Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-child.svg����������������������������0000664�0000000�0000000�00000000256�14753064456�0026324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3m-1 20H8v-6H6V9h12v7h-2v6h-3v-4h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-dolly.svg����������������������������0000664�0000000�0000000�00000001340�14753064456�0026357�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.78 21.84a1.998 1.998 0 1 1-1.56-3.68 1.998 1.998 0 1 1 1.56 3.68M7.62 6c1.11 0 2-.89 2-2a2 2 0 0 0-2-2c-1.12 0-2 .9-2 2 0 1.11.88 2 2 2m14.43 10.34L18.2 18c.22.22.42.5.56.82.14.33.2.68.24 1l3.83-1.64zM10.16 8.78l.74 1.81c-.24-.09-.46-.21-.64-.33-.6-.39-1.04-.88-1.33-1.46l-.74-1.57c-.19-.35-.42-.61-.74-.79-.29-.17-.6-.26-.92-.26s-.62.08-.91.22c-1.4 1.1-1.75 3.14-1.75 3.14l-.34 1.57c-.09.52-.14 1.04-.14 1.57v4.96L1 20.87 2.5 22l2.77-3.75.17-3.25 1.68 2.34V22h1.85v-6.06l-1.85-2.61v-.65c0-.44 0-.87.11-1.29l.35-1.2c.38.55.84 1.03 1.39 1.44.45.34 1.71.94 2.9 1.23L14 17.8c.22-.22.5-.42.83-.56.32-.14.67-.2.99-.24L12 8zm5.2 3.34 1.96 4.6 5.63-2.41L21 9.72"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-edit.svg�����������������������������0000664�0000000�0000000�00000000455�14753064456�0026167�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.07 14.88 2.05 2.05L15.06 23H13v-2.06zm1.97-1.75c.14 0 .27.06.38.17l1.28 1.28c.22.21.22.56 0 .77l-1 1-2.05-2.05 1-1c.11-.11.25-.17.39-.17M21 9h-6v7l-2 2v-2h-2v6H9V9H3V7h18zm-9-7c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-female-boy.svg�����������������������0000664�0000000�0000000�00000000444�14753064456�0027260�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 2a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2M6 22v-6H3l2.6-7.6c.3-.8 1-1.4 1.9-1.4s1.7.6 1.9 1.4L12 16H9v6zm8.5-10a2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2m-1 3h6v4H18v3h-3v-3h-1.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-female-dance.svg���������������������0000664�0000000�0000000�00000001040�14753064456�0027532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 17h-2v6h-2v-6h-2.12l-1.54 1.93 2.37 2.36-1.42 1.42-2.36-2.37c-.35-.34-.55-.81-.58-1.3s.12-.98.43-1.36l.54-.68H7l2-4v-3c-.62.47-1.12 1.07-1.47 1.76-.35.7-.53 1.46-.53 2.24H5a7 7 0 0 1 7-7c1.33 0 2.6-.53 3.54-1.46C16.47 4.6 17 3.33 17 2h2c0 1.32-.38 2.62-1.09 3.73A7 7 0 0 1 15 8.31V13zM14 4c0 .4-.12.78-.34 1.11s-.53.59-.89.74a2 2 0 0 1-2.18-.44c-.28-.28-.47-.63-.55-1.02s-.04-.79.11-1.15c.15-.37.41-.68.74-.9S11.6 2 12 2c.53 0 1.04.21 1.41.59.38.37.59.88.59 1.41"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-female-female-child.svg��������������0000664�0000000�0000000�00000000731�14753064456�0031000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2m4 12h2.5L20 8.4c-.3-.8-1-1.4-1.9-1.4H18c-.9 0-1.6.6-1.9 1.4l-.9 2.6c1.1.6 1.8 1.7 1.8 3.1V22h3m-7.5-10.5c.8 0 1.5-.7 1.5-1.5s-.7-1.5-1.5-1.5S11 9.2 11 10s.7 1.5 1.5 1.5M5 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2m9 16v-4h1v-4c0-.8-.7-1.5-1.5-1.5h-2c-.8 0-1.5.7-1.5 1.5v4h1v4zm-7 0v-6h2.5L7 8.4C6.7 7.6 6 7 5.1 7H5c-.9 0-1.6.6-1.9 1.4L1.5 16H4v6z"/></svg>���������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-female-female.svg��������������������0000664�0000000�0000000�00000000505�14753064456�0027716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 2a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2M6 22v-6H3l2.6-7.6c.3-.8 1-1.4 1.9-1.4s1.7.6 1.9 1.4L12 16l2.6-7.6c.3-.8 1-1.4 1.9-1.4s1.7.6 1.9 1.4L21 16h-3v6h-3v-6H9v6zM16.5 2a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-female-girl.svg����������������������0000664�0000000�0000000�00000000450�14753064456�0027421�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 2a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2M6 22v-6H3l2.6-7.6c.3-.8 1-1.4 1.9-1.4s1.7.6 1.9 1.4L12 16H9v6zm8.5-10a2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2m.5 3h3l1.5 4H18v3h-3v-3h-1.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-female.svg���������������������������0000664�0000000�0000000�00000000332�14753064456�0026465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m-1.5 20v-6h-3l2.59-7.59C10.34 7.59 11.1 7 12 7s1.66.59 1.91 1.41L16.5 16h-3v6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-greeting-proximity.svg���������������0000664�0000000�0000000�00000000712�14753064456�0031104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 14H9a9 9 0 0 1 9-9v2c-3.87 0-7 3.13-7 7m7-3V9c-2.76 0-5 2.24-5 5h2c0-1.66 1.34-3 3-3M7 4c0-1.11-.89-2-2-2s-2 .89-2 2 .89 2 2 2 2-.89 2-2m4.45.5h-2A2.98 2.98 0 0 1 6.5 7h-3C2.67 7 2 7.67 2 8.5V11h6V8.74a4.98 4.98 0 0 0 3.45-4.24M19 17c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2m1.5 1h-3c-1.5 0-2.71-1.08-2.95-2.5h-2c.2 2 1.59 3.65 3.45 4.24V22h6v-2.5c0-.83-.67-1.5-1.5-1.5"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-greeting-variant.svg�����������������0000664�0000000�0000000�00000000337�14753064456�0030507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.5 4v1.5c0 4.15 2.21 7.78 5.5 9.8V20h15v-2c0-2.66-5.33-4-8-4h-.25C9 14 5 10 5 5.5V4m9 0a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-greeting.svg�������������������������0000664�0000000�0000000�00000000350�14753064456�0027040�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m3.9 6.1c-.4-.4-1.1-1.1-2.4-1.1H11C8.2 7 6 4.8 6 2H4c0 3.2 2.1 5.8 5 6.7V22h2v-6h2v6h2V10.1l4 3.9 1.4-1.4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-handsdown.svg������������������������0000664�0000000�0000000�00000000403�14753064456�0027220�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1a2 2 0 0 0-2 2c0 1.11.89 2 2 2s2-.89 2-2a2 2 0 0 0-2-2m-2 5c-.27 0-.5.11-.69.28H9.3L4 11.59 5.42 13 9 9.41V22h2v-7h2v7h2V9.41L18.58 13 20 11.59l-5.3-5.31c-.2-.17-.43-.28-.7-.28"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-handsup.svg��������������������������0000664�0000000�0000000�00000000346�14753064456�0026703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 1c0 2.7 1.56 5.16 4 6.32V22h2v-7h2v7h2V7.31C17.44 6.16 19 3.7 19 1h-2a5 5 0 0 1-5 5 5 5 0 0 1-5-5m5 0c-1.11 0-2 .89-2 2s.89 2 2 2 2-.89 2-2-.89-2-2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-male-board-poll.svg������������������0000664�0000000�0000000�00000000426�14753064456�0030207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 17c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H9.5c.3.6.5 1.3.5 2h10v11h-9v2m4-10v2H9v13H7v-6H5v6H3v-8H1.5V9c0-1.1.9-2 2-2zM8 4c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2m9 2h2v8h-2zm-3 4h2v4h-2zm-3 0h2v4h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-male-board.svg�����������������������0000664�0000000�0000000�00000000400�14753064456�0027233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 17a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H9.46c.35.61.54 1.3.54 2h10v11h-9v2m4-10v2H9v13H7v-6H5v6H3v-8H1.5V9a2 2 0 0 1 2-2zM8 4a2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 2 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-male-boy.svg�������������������������0000664�0000000�0000000�00000000435�14753064456�0026745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 2a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2M6 7h3a2 2 0 0 1 2 2v5.5H9.5V22h-4v-7.5H4V9a2 2 0 0 1 2-2m8.5 5a2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2m-1 3h6v4H18v3h-3v-3h-1.5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-male-child.svg�����������������������0000664�0000000�0000000�00000000562�14753064456�0027240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.89 2-2-.89-2-2-2M5 7c-1.11 0-2 .89-2 2v6h2v7h5V11.6l2.53 4.4h2.44L16 14.66V22h4v-5h1v-3c0-1.11-.89-2-2-2h-2.5c-.6 0-1.13.26-1.5.68-.33.42-.68.88-1 1.32h-.31L10 7.66C9.84 7.38 9.22 7 8.5 7zm13 1c-.83 0-1.5.67-1.5 1.5S17.17 11 18 11s1.5-.67 1.5-1.5S18.83 8 18 8"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-male-female-child.svg����������������0000664�0000000�0000000�00000000716�14753064456�0030470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2m4 18v-6h2.5L20 8.4c-.3-.8-1-1.4-1.9-1.4H18c-.9 0-1.6.6-1.9 1.4l-.9 2.6c1.1.6 1.8 1.7 1.8 3.1V22zm-7.5-10.5c.8 0 1.5-.7 1.5-1.5s-.7-1.5-1.5-1.5S11 9.2 11 10s.7 1.5 1.5 1.5M5.5 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2m2 16v-7H9V9c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v6h1.5v7zm6.5 0v-4h1v-4c0-.8-.7-1.5-1.5-1.5h-2c-.8 0-1.5.7-1.5 1.5v4h1v4z"/></svg>��������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-male-female.svg����������������������0000664�0000000�0000000�00000000521�14753064456�0027401�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 2a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2M6 7h3a2 2 0 0 1 2 2v5.5H9.5V22h-4v-7.5H4V9a2 2 0 0 1 2-2m10.5-5a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2M15 22v-6h-3l2.59-7.59C14.84 7.59 15.6 7 16.5 7s1.66.59 1.91 1.41L21 16h-3v6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-male-girl.svg������������������������0000664�0000000�0000000�00000000441�14753064456�0027106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 2a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2M6 7h3a2 2 0 0 1 2 2v5.5H9.5V22h-4v-7.5H4V9a2 2 0 0 1 2-2m8.5 5a2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2m.5 3h3l1.5 4H18v3h-3v-3h-1.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-male-height-variant.svg��������������0000664�0000000�0000000�00000000404�14753064456�0031062�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2c1.78 0 2.67 2.16 1.42 3.42C7.16 6.67 5 5.78 5 4a2 2 0 0 1 2-2M5.5 7h3a2 2 0 0 1 2 2v5.5H9V22H5v-7.5H3.5V9a2 2 0 0 1 2-2M19 8h2l-3-4-3 4h2v8h-2l3 4 3-4h-2m3-14h-8v2h8m0 16h-8v2h8"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-male-height.svg����������������������0000664�0000000�0000000�00000000431�14753064456�0027420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2c1.78 0 2.67 2.16 1.42 3.42C7.16 6.67 5 5.78 5 4a2 2 0 0 1 2-2M5.5 7h3a2 2 0 0 1 2 2v5.5H9V22H5v-7.5H3.5V9a2 2 0 0 1 2-2M21 8h-6v2h6m0 1h-3v2h3m0-11h-6v2h6m0 1h-3v2h3m0 7h-6v2h6m0 4h-6v2h6m0-5h-3v2h3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-male-male-child.svg������������������0000664�0000000�0000000�00000000671�14753064456�0030155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.5 11.5c.8 0 1.5-.7 1.5-1.5s-.7-1.5-1.5-1.5S11 9.2 11 10s.7 1.5 1.5 1.5M5.5 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2m2 16v-7H9V9c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v6h1.5v7zm6.5 0v-4h1v-4c0-.8-.7-1.5-1.5-1.5h-2c-.8 0-1.5.7-1.5 1.5v4h1v4zm4.5-16c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2M22 9v6h-1.5v7H17v-8c0-1.4-.8-2.6-2-3.1V9c0-1.1.9-2 2-2h3c1.1 0 2 .9 2 2"/></svg>�����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-male-male.svg������������������������0000664�0000000�0000000�00000000500�14753064456�0027063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 2a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2M6 7h3a2 2 0 0 1 2 2v5.5H9.5V22h-4v-7.5H4V9a2 2 0 0 1 2-2m10.5-5a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2M15 7h3a2 2 0 0 1 2 2v5.5h-1.5V22h-4v-7.5H13V9a2 2 0 0 1 2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-male.svg�����������������������������0000664�0000000�0000000�00000000310�14753064456�0026146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m-1.5 5h3a2 2 0 0 1 2 2v5.5H14V22h-4v-7.5H8.5V9a2 2 0 0 1 2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-non-binary.svg�����������������������0000664�0000000�0000000�00000000304�14753064456�0027307�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a2 2 0 1 1 0 4c-1.11 0-2-.89-2-2s.9-2 2-2m1.91 6.41A1.99 1.99 0 0 0 12 7h-1.5c-1.1 0-2 .9-2 2v5.5H10V22h3.5v-6h3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-pregnant.svg�������������������������0000664�0000000�0000000�00000000301�14753064456�0027046�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2m7 9c0-1.34-.83-2.5-2-3a3 3 0 0 0-3-3 3 3 0 0 0-3 3v7h2v5h3v-5h3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-queue.svg����������������������������0000664�0000000�0000000�00000000640�14753064456�0026362�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.89 2-2-.89-2-2-2m7-2a2 2 0 1 0 2 2c0-1.11-.89-2-2-2m7-2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.89 2-2-.89-2-2-2M3.5 11c-.83 0-1.5.67-1.5 1.5V17h1v5h4v-5h1v-4.5c0-.83-.67-1.5-1.5-1.5zm7-2C9.67 9 9 9.67 9 10.5V15h1v5h4v-5h1v-4.5c0-.83-.67-1.5-1.5-1.5zm7-2c-.83 0-1.5.67-1.5 1.5V13h1v5h4v-5h1V8.5c0-.83-.67-1.5-1.5-1.5z"/></svg>������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-scooter.svg��������������������������0000664�0000000�0000000�00000001172�14753064456�0026715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 2.25c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5M20 18a2 2 0 0 1 2 2c0 1.11-.89 2-2 2-.74 0-1.39-.4-1.73-1H8.73A2 2 0 1 1 7 18c.74 0 1.39.4 1.73 1H13v-5.5l-3.27-2.27L6.77 14c-.41.37-1.04.34-1.42-.06l-3.07-3.29c-.37-.41-.35-1.04.05-1.42.41-.37 1.04-.35 1.41.05l2.39 2.56 7.13-6.64.04-.02a1 1 0 0 1 1.41.12L16.97 8H20c.55 0 1 .45 1 1s-.45 1-1 1h-3.5c-.35 0-.65-.18-.83-.44l-1.5-1.79-2.53 2.36 2.93 2.05c.26.18.43.48.43.82v6h.61c.43-1.87 2.02-3.3 3.97-3.5l-.77-4.5h1.5l1.08 6.34A3.004 3.004 0 0 0 17.17 19h1.1c.34-.6.99-1 1.73-1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-walker.svg���������������������������0000664�0000000�0000000�00000000724�14753064456�0026526�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m7.8 15.7-.6-6.4c-.1-.8-.7-1.3-1.5-1.3H16c-1.5 0-2.9-.5-3.8-1.4l-2-2c-.1-.2-.6-.6-1.4-.6-.5 0-1 .2-1.4.6L4.1 9.9c-.5.7-.5 1.6-.2 2.1l1.4 2.8-3.1 4L3.8 20l3.7-4.7-.3-1.3.8.8V20h2v-6.1l-2.1-2.1 2.4-2.4c.9.9 1.7 1.8 3.6 2.3L13 20h1.5l.4-3.5h3.2l.1 1.2c-.4.3-.7.7-.7 1.3 0 .8.7 1.5 1.5 1.5s1.5-.7 1.5-1.5c0-.5-.3-1-.7-1.3M15.1 15l.4-3.5h2l.4 3.5z"/></svg>��������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-wheelchair.svg�����������������������0000664�0000000�0000000�00000000563�14753064456�0027355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.5 4a2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 2 2M5 7c-1.11 0-2 .89-2 2v6h2v7h3.61a7 7 0 0 1-2.11-5 7 7 0 0 1 3.5-6.05V9c0-1.11-.89-2-2-2m5 1v8h5.5l2.7 3.6 1.6-1.2-3.3-4.4H15V8m-3 4.23A5 5 0 0 0 8.5 17a5 5 0 0 0 5 5 5 5 0 0 0 5-5h-2a3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 1.5-2.59Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/human-white-cane.svg�����������������������0000664�0000000�0000000�00000000766�14753064456�0027273�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 4a2 2 0 1 1 4 0c0 1.11-.89 2-2 2a2 2 0 0 1-2-2m12.65 17.5L14.5 10.85c-.73 0-1.27-.2-1.86-.59-.6-.39-1.04-.88-1.33-1.46l-.74-1.57c-.18-.35-.42-.61-.74-.79-.29-.17-.6-.26-.92-.26s-.62.08-.91.22L3 9.23v4.4h1.86v-3.31l1.39-.78-.34 1.57c-.09.52-.14 1.04-.14 1.57v4.96l-2.39 3.23L4.86 22l2.79-3.75.17-3.25 1.68 2.34V22h1.85v-6.06L9.5 13.33v-.65c0-.44 0-.87.11-1.29l.35-1.2c.38.55.85 1.01 1.39 1.44.85.68 1.65.96 3 .95L19.78 22z"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/material/human.svg����������������������������������0000664�0000000�0000000�00000000256�14753064456�0025243�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 9h-6v13h-2v-6h-2v6H9V9H3V7h18m-9-5a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2c0-1.11.89-2 2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/humble-bundle.svg��������������������������0000664�0000000�0000000�00000000635�14753064456�0026657�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.91 18.12c-2.82 0 1.52-15.99 1.52-15.99h-2.9s-1.19 3.76-1.98 7.94h-2.5c.06-.86.1-1.73.08-2.57C11 .59 7 1.87 5.18 3.45 3.47 4.95 2.03 7.8 2 10h1.35s.9-4.12 3.72-4.12-1.53 15.99-1.53 15.99h2.91s1.5-4.28 2.25-9.06l2.39-.01c-.14 1.24-.18 2.6-.16 3.87.11 6.89 4.13 5.41 5.93 3.83C20.67 18.92 22 15.58 22 14h-1.39c.01.12-.88 4.12-3.7 4.12"/></svg>���������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hvac-off.svg�������������������������������0000664�0000000�0000000�00000001047�14753064456�0025623�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3 3 4.89V21h16.11l1.73 1.73zM12 18c-3.33 0-6-2.67-6-6 0-1.18.34-2.27.92-3.19l1.51 1.51c-.19.37-.33.77-.37 1.18h1.55l1 1H8.06c.05.53.24 1.05.52 1.5h3.53l1 1H9.38c.7.61 1.59 1 2.62 1 .63 0 1.19-.16 1.7-.41l1.49 1.49c-.92.58-2.01.92-3.19.92m0-10c1.03 0 1.92.39 2.63 1H12.2l-.93-.93c.23-.04.48-.07.73-.07M9.67 6.47 6.2 3H21v14.8l-3.47-3.47c.3-.71.47-1.5.47-2.33 0-3.33-2.67-6-6-6-.83 0-1.62.17-2.33.47m6.27 5.03H14.7L13.2 10h2.22c.28.45.47.97.52 1.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hvac.svg�����������������������������������0000664�0000000�0000000�00000000575�14753064456�0025060�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.58 14c-.28-.45-.47-.97-.52-1.5h7.88c-.05.53-.24 1.05-.47 1.5zM12 16c-1.03 0-1.92-.39-2.62-1h5.25c-.71.61-1.6 1-2.63 1m0-8c1.03 0 1.92.39 2.63 1H9.38c.7-.61 1.59-1 2.62-1m-3.42 2h6.84c.28.45.47.97.52 1.5H8.06c.05-.53.24-1.05.52-1.5M3 3v18h18V3zm9 15c-3.33 0-6-2.67-6-6s2.67-6 6-6 6 2.67 6 6-2.67 6-6 6"/></svg>�����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hydraulic-oil-level.svg��������������������0000664�0000000�0000000�00000000364�14753064456�0030005�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 18c-1.66 0-3-1.34-3-3 0-2 3-5.37 3-5.37S18 13 18 15c0 1.66-1.34 3-3 3m5-14v16H10V4H8v16c0 1.11.89 2 2 2h10c1.11 0 2-.89 2-2V4zM2 19l5-5-5-5zM16 6V2h-2v4h-3v2h8V6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hydraulic-oil-temperature.svg��������������0000664�0000000�0000000�00000000510�14753064456�0031224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 18c-1.66 0-3-1.34-3-3 0-2 3-5.37 3-5.37S12 13 12 15c0 1.66-1.34 3-3 3m5-14v16H4V4H2v16c0 1.11.89 2 2 2h10c1.11 0 2-.89 2-2V4zm-4 2V2H8v4H5v2h8V6zm11 11.5v-12c0-.83-.67-1.5-1.5-1.5S18 4.67 18 5.5v12a2.5 2.5 0 1 0 4 2c0-.79-.37-1.5-1-2M20 13h-1V6h1z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hydro-power.svg����������������������������0000664�0000000�0000000�00000001700�14753064456�0026405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.12 3.55a2 2 0 0 0-1.92 1.4l-.8 2.55a3 3 0 0 0-1.07.24L11.5 5.77l-1.33-1.48a2 2 0 0 0-.12 2.83l1.81 1.97a3 3 0 0 0-.22.51 3 3 0 0 0-.11.53l-2.61.58-1.96.44a2 2 0 0 0 2.39 1.52l2.61-.59a3 3 0 0 0 .74.81l-.8 2.55-.6 1.91a2 2 0 0 0 2.5-1.31l.81-2.54a3 3 0 0 0 1.07-.24l1.82 1.97 1.33 1.47a2 2 0 0 0 .13-2.82l-1.81-1.97a3 3 0 0 0 .21-.51 3 3 0 0 0 .14-.54l2.59-.58 1.95-.43a2 2 0 0 0-2.38-1.52l-2.61.58a3 3 0 0 0-.74-.8l.8-2.56.6-1.9a2 2 0 0 0-.59-.1M14.56 9a1.5 1.5 0 0 1 .39.07 1.5 1.5 0 0 1 .98 1.88 1.5 1.5 0 0 1-1.88.98 1.5 1.5 0 0 1-.98-1.88A1.5 1.5 0 0 1 14.55 9M8 13.67C6.78 14.53 5.39 15 4 15H2v2h2c1.37 0 2.74-.35 4-1 .77.4 1.58.66 2.41.81l.53-1.67.09-.26c-1.06-.15-2.1-.56-3.03-1.21M20.45 15c.05.7-.12 1.41-.54 2H22v-2zM8 17.67C6.78 18.53 5.39 19 4 19H2v2h2c1.37 0 2.74-.35 4-1 2.5 1.3 5.5 1.3 8 0 1.26.65 2.62 1 4 1h2v-2h-2c-1.39 0-2.78-.47-4-1.33-2.44 1.71-5.56 1.71-8 0"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/hydrogen-station.svg�����������������������0000664�0000000�0000000�00000000636�14753064456�0027433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 3a2 2 0 0 0-2 2v16h10v-7.5h1.5v5a2.5 2.5 0 0 0 5 0V9c0-.69-.28-1.32-.73-1.77l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33a2.5 2.5 0 0 0 2.5 2.5c.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14a2 2 0 0 0-2-2h-1V5a2 2 0 0 0-2-2zm0 4h2v4h2V7h2v10h-2v-4H8v4H6zm12 1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1"/></svg>��������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ice-cream-off.svg��������������������������0000664�0000000�0000000�00000000546�14753064456�0026532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3l3.84 3.84C4.37 7.38 4 8.14 4 9c0 1.66 1.34 3 3 3l5 10 2.7-5.41 6.14 6.14zM12 17.53l-3.11-6.22c.06-.05.11-.1.19-.15.13.08.27.14.42.21l3.71 3.73zM7.15 3.95C8.07 2.2 9.89 1 12 1c2.89 0 5.25 2.22 5.5 5.05C18.91 6.28 20 7.5 20 9c0 1.66-1.34 3-3 3l-.6 1.2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ice-cream.svg������������������������������0000664�0000000�0000000�00000000457�14753064456�0025763�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.5 6.05C17.25 3.22 14.89 1 12 1S6.75 3.22 6.5 6.05C5.09 6.28 4 7.5 4 9c0 1.66 1.34 3 3 3l5 10 5-10c1.66 0 3-1.34 3-3 0-1.5-1.09-2.72-2.5-2.95M12 17.53l-3.11-6.22c.06-.05.11-.1.19-.15a5.5 5.5 0 0 0 5.84 0c.08.05.13.1.19.15z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ice-pop.svg��������������������������������0000664�0000000�0000000�00000000347�14753064456�0025470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.15 14.96-8.2 3.69-4.1-9a3.6 3.6 0 0 0 2.3-3.29c-.01-1.36-.79-2.6-2-3.21.39-.35.85-.65 1.3-.9 2.26-1 4.92-.02 6 2.21m-.3 13.9 1.6 3.5 2.7-1.21-1.6-3.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/id-card.svg��������������������������������0000664�0000000�0000000�00000000335�14753064456�0025434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4c-1.11 0-2 .89-2 2v12c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 2h16v4H4zm0 6h4v2H4zm6 0h10v2H10zm-6 4h10v2H4zm12 0h4v2h-4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/identifier.svg�����������������������������0000664�0000000�0000000�00000000241�14753064456�0026247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 7v2H9v6h1v2H6v-2h1V9H6V7zm6 0a2 2 0 0 1 2 2v6c0 1.11-.89 2-2 2h-4V7m4 2h-2v6h2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ideogram-cjk-variant.svg�������������������0000664�0000000�0000000�00000000603�14753064456�0030125�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 4v2H4v2h11.36c-.23.87-.73 1.77-1.48 2.69-.53.66-1.17 1.31-1.88 1.98-.71-.67-1.35-1.32-1.88-1.98-.47-.57-.82-1.14-1.09-1.69H6.85c.36 1.05.97 2.03 1.71 2.95.57.71 1.23 1.39 1.94 2.05l-5.14 4.23 1.28 1.54L12 15.34l5.36 4.43 1.28-1.54L13.5 14c.71-.66 1.37-1.34 1.94-2.05.97-1.21 1.72-2.52 1.96-3.95H20V6h-7V4Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ideogram-cjk.svg���������������������������0000664�0000000�0000000�00000000246�14753064456�0026466�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 4v2H4v4h2V8h12v2h2V6h-7V4m-5 6v2h5.59l-2 2H4v2h7v2h-1v2h3v-4h7v-2h-5.79L16 12.21V10Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-album.svg����������������������������0000664�0000000�0000000�00000000317�14753064456�0026311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6 19 3-3.86 2.14 2.58 3-3.86L18 19zM6 4h5v8l-2.5-1.5L6 12M18 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-area-close.svg�����������������������0000664�0000000�0000000�00000000276�14753064456�0027230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 23-4-4h8zm8-20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zM5 14h14l-4.5-6-3.5 4.5-2.5-3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-area.svg�����������������������������0000664�0000000�0000000�00000000263�14753064456�0026121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 5a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7c0-1.11.89-2 2-2zM5 16h14l-4.5-6-3.5 4.5-2.5-3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-auto-adjust.svg����������������������0000664�0000000�0000000�00000000423�14753064456�0027447�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 10v9H5V5h9V3H5c-1.08 0-2 .9-2 2v14c0 1.1.92 2 2 2h14c1.12 0 2-.9 2-2v-9zm-2 0 .94-2.06L20 7l-2.06-.94L17 4l-.94 2.06L14 7l2.06.94zm-3.75.75L12 8l-1.25 2.75L8 12l2.75 1.25L12 16l1.25-2.75L16 12z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-broken-variant.svg�������������������0000664�0000000�0000000�00000000334�14753064456�0030132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 5v6.59l-3-3.01-4 4.01-4-4-4 4-3-3.01V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2m-3 6.42 3 3.01V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-6.58l3 2.99 4-4 4 4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-broken.svg���������������������������0000664�0000000�0000000�00000000430�14753064456�0026465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3a2 2 0 0 1 2 2v6h-2v2h-2v2h-2v2h-2v2h-2v2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm2 12v4a2 2 0 0 1-2 2h-4v-2h2v-2h2v-2zm-2-6.5a.5.5 0 0 0-.5-.5h-13a.5.5 0 0 0-.5.5v7a.5.5 0 0 0 .5.5H11v-1h2v-2h2v-2h2V9h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-check-outline.svg��������������������0000664�0000000�0000000�00000000574�14753064456�0027750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.18 17c.36-1.5 1.25-2.84 2.5-3.75l-.72-.96-2.75 3.54-1.96-2.36L6.5 17zM5 5v14h7.03c.06.7.21 1.38.47 2H5c-.53 0-1.04-.21-1.41-.59C3.21 20.04 3 19.53 3 19V5c0-1.1.9-2 2-2h14c.53 0 1.04.21 1.41.59.38.37.59.88.59 1.41v7.5c-.62-.26-1.3-.41-2-.47V5zm12.75 17L15 19l1.16-1.16 1.59 1.59 3.59-3.59 1.16 1.41z"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-check.svg����������������������������0000664�0000000�0000000�00000000562�14753064456�0026270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.5 21c-.32-.77-.5-1.61-.5-2.5 0-.17 0-.33.03-.5H5l3.5-4.5 2.5 3 3.5-4.5.69.92c.97-.58 2.1-.92 3.31-.92.89 0 1.73.18 2.5.5V5c0-.53-.21-1.04-.59-1.41C20.04 3.21 19.53 3 19 3H5c-1.1 0-2 .9-2 2v14c0 .53.21 1.04.59 1.41.37.38.88.59 1.41.59zm5.25 1L15 19l1.16-1.16 1.59 1.59 3.59-3.59 1.16 1.41z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-edit-outline.svg���������������������0000664�0000000�0000000�00000000506�14753064456�0027613�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.7 14.3-1 1-2-2 1-1c.1-.1.2-.2.4-.2.1 0 .3.1.4.2l1.3 1.3c.1.2.1.5-.1.7M13 19.9V22h2.1l6.1-6.1-2-2zm-1.79-4.07-1.96-2.36L6.5 17h6.62l2.54-2.45-1.7-2.26zM11 19.9v-.85l.05-.05H5V5h14v6.31l2-1.93V5a2 2 0 0 0-2-2H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-edit.svg�����������������������������0000664�0000000�0000000�00000000440�14753064456�0026133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.7 14.3-1 1-2-2 1-1c.1-.1.2-.2.4-.2.1 0 .3.1.4.2l1.3 1.3c.1.2.1.5-.1.7M13 19.9V22h2.1l6.1-6.1-2-2zM21 5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h6v-1.9l1.1-1.1H5l3.5-4.5 2.5 3 3.5-4.5 1.6 2.1 4.9-5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-filter-black-white.svg���������������0000664�0000000�0000000�00000000252�14753064456�0030664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19 19-7-8v8H5l7-8V5h7m0-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������image-filter-center-focus-strong-outline.svg��������������������������������������������������������0000664�0000000�0000000�00000000536�14753064456�0034004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000�mkdocs-material-9.6.4/material/templates/.icons/material���������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 12c0-4.45-5.38-6.69-8.54-3.54C5.31 11.61 7.55 17 12 17c2.76 0 5-2.24 5-5m-5 3c-2.67 0-4-3.23-2.12-5.12C11.77 8 15 9.33 15 12c0 1.66-1.34 3-3 3m-7 0H3v4c0 1.1.9 2 2 2h4v-2H5M5 5h4V3H5c-1.1 0-2 .9-2 2v4h2m14-6h-4v2h4v4h2V5c0-1.1-.9-2-2-2m0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-filter-center-focus-strong.svg�������0000664�0000000�0000000�00000000416�14753064456�0032403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8c-3.56 0-5.35 4.31-2.83 6.83S16 15.56 16 12c0-2.21-1.79-4-4-4m-7 7H3v4c0 1.1.9 2 2 2h4v-2H5M5 5h4V3H5c-1.1 0-2 .9-2 2v4h2m14-6h-4v2h4v4h2V5c0-1.1-.9-2-2-2m0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-filter-center-focus-weak.svg���������0000664�0000000�0000000�00000000501�14753064456�0032011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 15H3v4a2 2 0 0 0 2 2h4v-2H5M5 5h4V3H5a2 2 0 0 0-2 2v4h2m14-6h-4v2h4v4h2V5a2 2 0 0 0-2-2m0 16h-4v2h4a2 2 0 0 0 2-2v-4h-2m-7-7a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4m0 6a2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-filter-center-focus.svg��������������0000664�0000000�0000000�00000000405�14753064456�0031067�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 9a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3m7 10h-4v2h4a2 2 0 0 0 2-2v-4h-2m0-12h-4v2h4v4h2V5a2 2 0 0 0-2-2M5 5h4V3H5a2 2 0 0 0-2 2v4h2m0 6H3v4a2 2 0 0 0 2 2h4v-2H5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-filter-drama-outline.svg�������������0000664�0000000�0000000�00000000772�14753064456�0031242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 20q-2.3 0-3.9-1.6T1 14.5q0-1.95 1.21-3.44 1.22-1.49 3.04-1.91.63-2.25 2.48-3.7Q9.57 4 12 4q3 0 5 2.06 2 2.07 2 4.94 1.88.2 2.94 1.55T23 15.5q0 1.85-1.31 3.18Q20.38 20 18.5 20m-12-2h12q1.05 0 1.77-.73.73-.72.73-1.77t-.73-1.77Q19.55 13 18.5 13H17v-2q0-2.07-1.46-3.54Q14.08 6 12 6q-1.57 0-2.8.86-1.2.87-1.8 2.21 1.95.33 3.28 1.84Q12 12.43 12 14.5h-2q0-1.45-1-2.47Q7.95 11 6.5 11t-2.47 1.03Q3 13.05 3 14.5T4.03 17q1.02 1 2.47 1"/></svg>������mkdocs-material-9.6.4/material/templates/.icons/material/image-filter-drama.svg���������������������0000664�0000000�0000000�00000000456�14753064456�0027564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 20h12q1.88 0 3.19-1.31T23 15.5q0-1.7-1.21-3.1T19 11q0-2.95-2-4.97Q14.95 4 12 4 9.88 4 8.29 5.08 6.7 6.15 6.25 8q2.55.45 4.15 2.19T12 14.5h-2q0-1.82-1.34-3.16Q7.33 10 5.5 10t-3.16 1.34Q1 12.68 1 14.5q0 2.3 1.6 3.9T6.5 20"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-filter-frames.svg��������������������0000664�0000000�0000000�00000000314�14753064456�0027746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 8H6v10h12m2 2H4V6h4.5l3.54-3.5L15.5 6H20m0-2h-4l-4-4-4 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-filter-hdr-outline.svg���������������0000664�0000000�0000000�00000000236�14753064456�0030726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 18H1l7.25-9.67 2 2.67L14 6zm-11.5-5.33L14 16h5l-5-6.67zM5 16h6.5l-3.25-4.33z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-filter-hdr.svg�����������������������0000664�0000000�0000000�00000000211�14753064456�0027242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14 6-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-filter-none.svg����������������������0000664�0000000�0000000�00000000301�14753064456�0027424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 17H7V3h14m0-2H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2M3 5H1v16a2 2 0 0 0 2 2h16v-2H3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-filter-tilt-shift.svg����������������0000664�0000000�0000000�00000001274�14753064456�0030566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.68 19.74A10 10 0 0 0 11 21.95v-2.02a7.94 7.94 0 0 1-3.9-1.62m5.9 1.62v2.02c2-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62m5.31-3.03 1.43 1.43c1.21-1.48 2.01-3.33 2.21-5.33h-2.02a7.94 7.94 0 0 1-1.62 3.9M15 12a3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3M4.07 13H2.05c.2 2 1 3.84 2.21 5.32l1.43-1.43A7.87 7.87 0 0 1 4.07 13m1.62-5.9L4.26 5.68A10 10 0 0 0 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9M19.93 11h2.02c-.2-2-1-3.84-2.21-5.32L18.31 7.1a7.94 7.94 0 0 1 1.62 3.9m-1.61-6.74A10 10 0 0 0 13 2.05v2.02c1.46.18 2.79.76 3.9 1.62M11 4.07V2.05c-2 .2-3.84 1-5.32 2.21L7.1 5.69A7.94 7.94 0 0 1 11 4.07"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-filter-vintage.svg�������������������0000664�0000000�0000000�00000001212�14753064456�0030124�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 16a4 4 0 0 1-4-4 4 4 0 0 1 4-4 4 4 0 0 1 4 4 4 4 0 0 1-4 4m6.7-3.6a6 6 0 0 0-.86-.4c.29-.11.58-.24.86-.4 1.92-1.1 2.99-3.1 3-5.19a6.01 6.01 0 0 0-6 0c-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55a6.01 6.01 0 0 0-6 0c0 2.07 1.07 4.1 3 5.19.28.16.57.29.86.41-.29.1-.58.23-.86.39a6 6 0 0 0-3 5.19 6.01 6.01 0 0 0 6 0c.28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95q.36.3.78.54a6.01 6.01 0 0 0 6 0c-.01-2.09-1.08-4.09-3-5.19"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-frame.svg����������������������������0000664�0000000�0000000�00000000550�14753064456�0026302�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 14.29 6.5 19h10.96l-2.71-3.54-1.97 2.34zM5 21V7h13.96v14zm7-18.6 2.61 2.63H9.37zM5 5.03c-.5 0-1 .19-1.39.58C3.2 6 3 6.46 3 7v14c0 .5.2 1 .61 1.39C4 22.8 4.5 23 5 23h13.96c.54 0 1-.2 1.41-.61.4-.39.63-.89.63-1.39V7c0-.54-.23-1-.63-1.39-.41-.39-.87-.58-1.41-.58H16L12 1 7.96 5.03z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-lock-outline.svg���������������������0000664�0000000�0000000�00000000763�14753064456�0027623�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.8 16v-1.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V16c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3m-1.3 0h-3v-1.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3zM5 3c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h8.03c-.03-.1-.03-.2-.03-.3V19H5V5h14v5c.69 0 1.37.16 2 .42V5a2 2 0 0 0-2-2zm8.96 9.29-2.75 3.54-1.96-2.36L6.5 17H13c.08-.86.46-1.54.96-2.04.07-.07.17-.11.24-.17v-.29c0-.55.1-1.06.27-1.53z"/></svg>�������������mkdocs-material-9.6.4/material/templates/.icons/material/image-lock.svg�����������������������������0000664�0000000�0000000�00000000663�14753064456�0026145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.8 16v-1.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V16c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3m-1.3 0h-3v-1.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3zM5 3c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h8.03c-.03-.1-.03-.2-.03-.3V18H5l3.5-4.5 2.5 3 3.5-4.5.27.37C15.61 10.89 17.27 10 19 10c.69 0 1.37.16 2 .42V5a2 2 0 0 0-2-2z"/></svg>�����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-marker-outline.svg�������������������0000664�0000000�0000000�00000000665�14753064456�0030155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 19c.36.72.78 1.4 1.19 2H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h14a2 2 0 0 1 2 2v5.63c-.61-.33-1.29-.54-2-.6V5H5v14zm-.04-6.71-2.75 3.54-1.96-2.36L6.5 17h6.72c-.13-.5-.22-1-.22-1.5 0-1.15.38-2.24 1-3.13zM22 15.5c0 2.6-3.5 6.5-3.5 6.5S15 18.1 15 15.5c0-1.9 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5m-2.3.1c0-.6-.6-1.2-1.2-1.2s-1.2.5-1.2 1.2c0 .6.5 1.2 1.2 1.2s1.3-.6 1.2-1.2"/></svg>���������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-marker.svg���������������������������0000664�0000000�0000000�00000000620�14753064456�0026467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.55 18c.42 1.08 1.04 2.12 1.64 3H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h14a2 2 0 0 1 2 2v5.63c-.75-.4-1.61-.63-2.5-.63-2.21 0-4.17 1.39-5.03 3.33L11 16.5l-2.5-3L5 18zM22 15.5c0 2.6-3.5 6.5-3.5 6.5S15 18.1 15 15.5c0-1.9 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5m-2.3.1c0-.6-.6-1.2-1.2-1.2s-1.2.5-1.2 1.2c0 .6.5 1.2 1.2 1.2s1.3-.6 1.2-1.2"/></svg>����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-minus-outline.svg��������������������0000664�0000000�0000000�00000000423�14753064456�0030017�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.4 14.21c-.93.7-1.65 1.67-2.05 2.79H6.5l2.75-3.53 1.96 2.36 2.75-3.54zM5 19V5h14v8c.7 0 1.37.13 2 .35V5a2 2 0 0 0-2-2H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h8.35c-.22-.63-.35-1.3-.35-2zm10-1v2h8v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-minus.svg����������������������������0000664�0000000�0000000�00000000377�14753064456�0026352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 18v2h8v-2zm-1.7 3H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v8.3c-.6-.2-1.3-.3-2-.3-1.1 0-2.2.3-3.1.9L14.5 12 11 16.5l-2.5-3L5 18h8.1c-.1.3-.1.7-.1 1 0 .7.1 1.4.3 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-move.svg�����������������������������0000664�0000000�0000000�00000000370�14753064456�0026156�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 3h4V0l5 5-5 5V7h-4zm6 8.94V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7.06c-.06.33-.06.67-.06 1a8 8 0 0 0 8 8c.33 0 .67 0 1-.06M19 18l-4.5-6-3.5 4.5-2.5-3L5 18z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-multiple-outline.svg�����������������0000664�0000000�0000000�00000000353�14753064456�0030521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 17H7V3h14m0-2H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2M3 5H1v16a2 2 0 0 0 2 2h16v-2H3m12.96-10.71-2.75 3.54-1.96-2.36L8.5 15h11z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-multiple.svg�������������������������0000664�0000000�0000000�00000000321�14753064456�0027037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 16V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2m-11-4 2.03 2.71L16 11l4 5H8M2 6v14a2 2 0 0 0 2 2h14v-2H4V6"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-off-outline.svg����������������������0000664�0000000�0000000�00000000331�14753064456�0027434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 20.7 3.3 2 2 3.3l1 1V19c0 1.1.9 2 2 2h14.7l1 1zM5 19V6.3l7.6 7.6-1.5 1.9L9 13.1 6 17h9.7l2 2zM8.8 5l-2-2H19c1.1 0 2 .9 2 2v12.2l-2-2V5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-off.svg������������������������������0000664�0000000�0000000�00000000310�14753064456�0025754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 17.2 6.8 3H19c1.1 0 2 .9 2 2zm-.3 4.8-1-1H5c-1.1 0-2-.9-2-2V4.3l-1-1L3.3 2 22 20.7zm-3.9-4-3.9-3.9-1.9 2.4-2.5-3L5 18z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-outline.svg��������������������������0000664�0000000�0000000�00000000313�14753064456�0026664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19H5V5h14m0-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-5.04 9.29-2.75 3.54-1.96-2.36L6.5 17h11z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-plus-outline.svg���������������������0000664�0000000�0000000�00000000443�14753064456�0027651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .7.13 1.37.35 2H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h14a2 2 0 0 1 2 2v8.35c-.63-.22-1.3-.35-2-.35V5H5v14zm.96-6.71-2.75 3.54-1.96-2.36L6.5 17h6.85c.4-1.12 1.12-2.09 2.05-2.79zM20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-plus.svg�����������������������������0000664�0000000�0000000�00000000423�14753064456�0026172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 15v3h-3v2h3v3h2v-3h3v-2h-3v-3zm-4.7 6H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v8.3c-.6-.2-1.3-.3-2-.3-1.1 0-2.2.3-3.1.9L14.5 12 11 16.5l-2.5-3L5 18h8.1c-.1.3-.1.7-.1 1 0 .7.1 1.4.3 2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-refresh-outline.svg������������������0000664�0000000�0000000�00000000607�14753064456�0030326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.68 13.25a6.5 6.5 0 0 0-2.5 3.75H6.5l2.75-3.53 1.96 2.36 2.75-3.54zM5 19V5h14v7.03c.7.06 1.38.21 2 .47V5a2 2 0 0 0-2-2H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h7.5c-.26-.62-.41-1.3-.47-2zm17-.5v-4l-1.17 1.17A4 4 0 0 0 18 14.5c-2.21 0-4 1.79-4 4s1.79 4 4 4c1.68 0 3.12-1.03 3.71-2.5H20a2.5 2.5 0 1 1-.23-3.27L18 18.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-refresh.svg��������������������������0000664�0000000�0000000�00000000604�14753064456�0026646�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18.5c0 .89.18 1.73.5 2.5H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h14a2 2 0 0 1 2 2v7.5c-.77-.32-1.61-.5-2.5-.5-1.21 0-2.34.34-3.31.92L14.5 12 11 16.5l-2.5-3L5 18h7.03c-.03.17-.03.33-.03.5m10 0v-4l-1.17 1.17A4 4 0 0 0 18 14.5c-2.21 0-4 1.79-4 4s1.79 4 4 4c1.68 0 3.12-1.03 3.71-2.5H20a2.5 2.5 0 1 1-.23-3.27L18 18.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-remove-outline.svg�������������������0000664�0000000�0000000�00000000574�14753064456�0030170�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .7.13 1.37.35 2H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h14a2 2 0 0 1 2 2v8.35c-.63-.22-1.3-.35-2-.35V5H5v14zm-1.79-3.17-1.96-2.36L6.5 17h6.85c.4-1.12 1.12-2.09 2.05-2.79l-1.44-1.92zm11.33 1.05-1.42-1.41L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19z"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-remove.svg���������������������������0000664�0000000�0000000�00000000521�14753064456�0026503�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.3 21H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v8.3c-.6-.2-1.3-.3-2-.3-1.1 0-2.2.3-3.1.9L14.5 12 11 16.5l-2.5-3L5 18h8.1c-.1.3-.1.7-.1 1 0 .7.1 1.4.3 2m7.1-2 2.1 2.1-1.4 1.4-2.1-2.1-2.1 2.1-1.4-1.4 2.1-2.1-2.1-2.1 1.4-1.4 2.1 2.1 2.1-2.1 1.4 1.4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-search-outline.svg�������������������0000664�0000000�0000000�00000001274�14753064456�0030136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 9c.7 0 1.29-.24 1.77-.73.49-.48.73-1.07.73-1.77 0-.67-.24-1.27-.73-1.77-.48-.5-1.07-.73-1.77-.73-.67 0-1.27.23-1.77.73S13 5.83 13 6.5c0 .7.23 1.29.73 1.77.5.49 1.1.73 1.77.73m3.81-.09 3.1 3.09L21 13.41l-3.14-3.1c-.78.47-1.58.69-2.39.69-1.25 0-2.31-.42-3.17-1.3-.85-.87-1.3-1.93-1.3-3.2 0-1.23.45-2.3 1.33-3.17C13.2 2.45 14.27 2 15.5 2c1.27 0 2.33.45 3.2 1.33.88.87 1.3 1.94 1.3 3.17 0 .83-.22 1.63-.69 2.41M16.5 18h-11l2.75-3.5 1.97 2.33 2.72-3.52zm1.5-5 2 2v5c0 .55-.19 1-.59 1.4-.41.39-.88.6-1.41.6H4c-.55 0-1-.21-1.4-.6-.39-.4-.6-.85-.6-1.4V6c0-.53.21-1 .6-1.41C3 4.19 3.45 4 4 4h5.5c-.3.64-.47 1.31-.5 2H4v14h14z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-search.svg���������������������������0000664�0000000�0000000�00000000716�14753064456�0026461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 2C18 2 20 4 20 6.5c0 .88-.25 1.71-.69 2.4l3.08 3.1L21 13.39l-3.12-3.07c-.69.43-1.51.68-2.38.68C13 11 11 9 11 6.5S13 2 15.5 2m0 2A2.5 2.5 0 0 0 13 6.5 2.5 2.5 0 0 0 15.5 9 2.5 2.5 0 0 0 18 6.5 2.5 2.5 0 0 0 15.5 4m-8 10.5L4 19h14l-4.5-6-3.5 4.5zM20 20a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h5.5c-.32.77-.5 1.61-.5 2.5a6.5 6.5 0 0 0 6.5 6.5c.68 0 1.34-.11 1.96-.3L20 15.24z"/></svg>��������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-size-select-actual.svg���������������0000664�0000000�0000000�00000000261�14753064456�0030705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 3H3C2 3 1 4 1 5v14a2 2 0 0 0 2 2h18c1 0 2-1 2-2V5c0-1-1-2-2-2M5 17l3.5-4.5 2.5 3 3.5-4.5 4.5 6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-size-select-large.svg����������������0000664�0000000�0000000�00000000473�14753064456�0030533�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 15h2v2h-2zm0-4h2v2h-2zm2 8h-2v2c1 0 2-1 2-2M13 3h2v2h-2zm8 4h2v2h-2zm0-4v2h2c0-1-1-2-2-2M1 7h2v2H1zm16-4h2v2h-2zm0 16h2v2h-2zM3 3C2 3 1 4 1 5h2zm6 0h2v2H9zM5 3h2v2H5zm-4 8v8a2 2 0 0 0 2 2h12V11zm2 8 2.5-3.21 1.79 2.15 2.5-3.22L13 19z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-size-select-small.svg����������������0000664�0000000�0000000�00000000456�14753064456�0030552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 15h-2v2h2zm0-4h-2v2h2zm0 8h-2v2c1 0 2-1 2-2M15 3h-2v2h2zm8 4h-2v2h2zm-2-4v2h2c0-1-1-2-2-2M3 21h8v-6H1v4a2 2 0 0 0 2 2M3 7H1v2h2zm12 12h-2v2h2zm4-16h-2v2h2zm0 16h-2v2h2zM3 3C2 3 1 4 1 5h2zm0 8H1v2h2zm8-8H9v2h2zM7 3H5v2h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-sync-outline.svg���������������������0000664�0000000�0000000�00000001022�14753064456�0027634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.18 19c.17.72.46 1.39.85 2H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h14a2 2 0 0 1 2 2v6.18c-.5-.11-1-.18-1.5-.18-.17 0-.33 0-.5.03V5H5v14zm-1.97-3.17-1.96-2.36L6.5 17h6.53c.11-1.46.7-2.78 1.61-3.81l-.68-.9zM19 13.5V12l-2.25 2.25L19 16.5V15a2.5 2.5 0 0 1 2.5 2.5c0 .4-.09.78-.26 1.12l1.09 1.09c.42-.63.67-1.39.67-2.21 0-2.21-1.79-4-4-4m0 6.5a2.5 2.5 0 0 1-2.5-2.5c0-.4.09-.78.26-1.12l-1.09-1.09c-.42.63-.67 1.39-.67 2.21 0 2.21 1.79 4 4 4V23l2.25-2.25L19 18.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-sync.svg�����������������������������0000664�0000000�0000000�00000000746�14753064456�0026173�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.5 13.5 5 18h8.03c.08 1.1.44 2.12 1 3H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h14a2 2 0 0 1 2 2v6.18c-.5-.11-1-.18-1.5-.18-1.72 0-3.27.67-4.43 1.76L14.5 12 11 16.5zM19 20a2.5 2.5 0 0 1-2.5-2.5c0-.4.09-.78.26-1.12l-1.09-1.09c-.42.63-.67 1.39-.67 2.21 0 2.21 1.79 4 4 4V23l2.25-2.25L19 18.5zm0-6.5V12l-2.25 2.25L19 16.5V15a2.5 2.5 0 0 1 2.5 2.5c0 .4-.09.78-.26 1.12l1.09 1.09c.42-.63.67-1.39.67-2.21 0-2.21-1.79-4-4-4"/></svg>��������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image-text.svg�����������������������������0000664�0000000�0000000�00000000346�14753064456�0026177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 13h-8v-2h8zm0-6h-8v2h8zm-8 10h8v-2h-8zm-2-8v6c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2m-1.5 6-2.2-3-1.8 2.3-1.2-1.5L3.5 15z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/image.svg����������������������������������0000664�0000000�0000000�00000000264�14753064456�0025214�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.5 13.5 2.5 3 3.5-4.5 4.5 6H5m16 1V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/import.svg���������������������������������0000664�0000000�0000000�00000000273�14753064456�0025444�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14 12-4-4v3H2v2h8v3m10 2V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v3h2V6h12v12H6v-3H4v3a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/inbox-arrow-down-outline.svg���������������0000664�0000000�0000000�00000000424�14753064456�0031021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2M5 19v-2h3.13a4.13 4.13 0 0 0 1.27 2m9.6 0h-4.4a4.13 4.13 0 0 0 1.27-2H19m0-2h-5v1a2 2 0 0 1-4 0v-1H5V5h14m-3 5h-2V7h-4v3H8l4 4"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/inbox-arrow-down.svg�����������������������0000664�0000000�0000000�00000000324�14753064456�0027343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 10h-2V7h-4v3H8l4 4m7 1h-4a3 3 0 0 1-3 3 3 3 0 0 1-3-3H5V5h14m0-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/inbox-arrow-up-outline.svg�����������������0000664�0000000�0000000�00000000424�14753064456�0030476�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2M5 19v-2h3.13a4.13 4.13 0 0 0 1.27 2m9.6 0h-4.4a4.13 4.13 0 0 0 1.27-2H19m0-2h-5v1a2 2 0 0 1-4 0v-1H5V5h14M8 11h2v3h4v-3h2l-4-4"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/inbox-arrow-up.svg�������������������������0000664�0000000�0000000�00000000334�14753064456�0027021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 14h-4v-3H8l4-4 4 4h-2zm-9 1V5h14v10h-4a3 3 0 0 1-3 3 3 3 0 0 1-3-3zM19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/inbox-full-outline.svg���������������������0000664�0000000�0000000�00000000437�14753064456�0027670�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3c1.1 0 2 .9 2 2v14c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2zM5 19h4.4a4.13 4.13 0 0 1-1.27-2H5zm14 0v-2h-3.13c-.22.78-.66 1.47-1.27 2zm0-4V5H5v10h5v1c0 2.67 4 2.67 4 0v-1zM7 7h10v2H7zm10 4v2H7v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/inbox-full.svg�����������������������������0000664�0000000�0000000�00000000334�14753064456�0026207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 15V5H5v10h4c0 1.66 1.34 3 3 3s3-1.34 3-3zm0-12c1.1 0 2 .9 2 2v14c0 1.1-.9 2-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zM7 13v-2h10v2zm0-4V7h10v2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/inbox-multiple-outline.svg�����������������0000664�0000000�0000000�00000000637�14753064456�0030563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zM5 10v2h4.4c-.6-.53-1.06-1.22-1.27-2zm14 2v-2h-3.13c-.21.78-.67 1.47-1.27 2zm0-4V5H5v3h5v1c0 1.07.93 2 2 2s2-.93 2-2V8zm2 11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4h7v1c0 1.07.93 2 2 2s2-.93 2-2v-1h7zM5 17v2h4.4c-.6-.53-1.06-1.22-1.27-2zm14 2v-2h-3.13c-.21.78-.67 1.47-1.27 2z"/></svg>�������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/inbox-multiple.svg�������������������������0000664�0000000�0000000�00000000401�14753064456�0027073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 8V5H5v3h4a3 3 0 0 0 3 3 3 3 0 0 0 3-3zm0-5a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zM3 15h6a3 3 0 0 0 3 3 3 3 0 0 0 3-3h6v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/inbox-outline.svg��������������������������0000664�0000000�0000000�00000000400�14753064456�0026716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2M5 19v-2h3.13a4.13 4.13 0 0 0 1.27 2m9.6 0h-4.4a4.13 4.13 0 0 0 1.27-2H19m0-2h-5v1a2 2 0 0 1-4 0v-1H5V5h14Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/inbox-remove-outline.svg�������������������0000664�0000000�0000000�00000000546�14753064456�0030224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2M5 19v-2h3.1c.2.8.7 1.5 1.3 2m9.6 0h-4.4c.6-.5 1.1-1.2 1.3-2H19m0-2h-5v1c0 1.1-.9 2-2 2s-2-.9-2-2v-1H5V5h14zm-4.9-8.5 1.4 1.4-2.1 2.1 2.1 2.1-1.4 1.4-2.1-2.1-2.1 2.1-1.4-1.4 2.1-2.1-2.1-2.1 1.4-1.4L12 8.6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/inbox-remove.svg���������������������������0000664�0000000�0000000�00000000444�14753064456�0026544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 15h-4c0 1.7-1.3 3-3 3s-3-1.3-3-3H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m-4.9 3.5 1.4 1.4-2.1 2.1 2.1 2.1-1.4 1.4-2.1-2.1-2.1 2.1-1.4-1.4 2.1-2.1-2.1-2.1 1.4-1.4L12 8.6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/inbox.svg����������������������������������0000664�0000000�0000000�00000000300�14753064456�0025240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 15h-4a3 3 0 0 1-3 3 3 3 0 0 1-3-3H5V5h14m0-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/incognito-circle-off.svg�������������������0000664�0000000�0000000�00000001434�14753064456�0030132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3l2.95 2.95A9.9 9.9 0 0 0 2 12c0 5.5 4.5 10 10 10 2.28 0 4.37-.77 6.05-2.06l2.79 2.79zM8.94 10.83h-.58l.14-.42zm-2.77.67h3.44l.67.67H6.17zm8.75 5.83c-1.19 0-2.15-.91-2.25-2.07-.63-.4-1.14-.14-1.34-.01a2.243 2.243 0 0 1-2.25 2.08c-1.25 0-2.26-1.01-2.26-2.26s1.01-2.26 2.26-2.26c1.07 0 1.97.74 2.21 1.74.36-.15.84-.21 1.36-.01l.66.66c.06.8.69 1.41 1.47 1.47l.6.6c-.15.03-.3.06-.46.06M9.94 6.74 6.72 3.5C8.25 2.56 10.06 2 12 2c5.5 0 10 4.5 10 10 0 1.94-.56 3.75-1.5 5.28l-5.13-5.11h2.46v-.67H14.7l-.67-.67h1.61l-1.48-3.91-.01-.03a.67.67 0 0 0-.8-.36L12 7l-1.35-.47-.04-.03a.71.71 0 0 0-.67.24m.76 8.33c0 .89-.7 1.62-1.62 1.62-.89 0-1.62-.73-1.62-1.62s.73-1.62 1.62-1.62c.92 0 1.62.73 1.62 1.62"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/incognito-circle.svg�����������������������0000664�0000000�0000000�00000001267�14753064456�0027366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2m2.92 10.81c-1.08 0-1.97.75-2.21 1.75-.54-.23-1.05-.17-1.42-.01-.24-1-1.14-1.74-2.21-1.74-1.25 0-2.26 1.01-2.26 2.26s1.01 2.26 2.26 2.26c1.2 0 2.16-.91 2.25-2.08.2-.13.71-.39 1.34.01a2.258 2.258 0 0 0 4.51-.19c0-1.25-1.01-2.26-2.26-2.26m-5.84.64c.92 0 1.62.73 1.62 1.62s-.7 1.62-1.62 1.62c-.89 0-1.62-.73-1.62-1.62s.73-1.62 1.62-1.62m5.84 0c.89 0 1.62.73 1.62 1.62s-.73 1.62-1.62 1.62c-.92 0-1.62-.73-1.62-1.62s.7-1.62 1.62-1.62m2.91-1.95H6.17v.67h11.66zm-3.68-4.61a.67.67 0 0 0-.8-.36L12 7l-1.35-.47-.04-.03a.67.67 0 0 0-.77.42l-1.48 3.91h7.28l-1.48-3.91z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/incognito-off.svg��������������������������0000664�0000000�0000000�00000001463�14753064456�0026675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3l5.2 5.2L6 9h1.11l1.5 1.5H2V12h8.11l3.39 3.37c-.12.24-.2.48-.26.73-.95-.41-1.83-.3-2.48-.01C10.35 14.31 8.79 13 6.94 13 4.77 13 3 14.79 3 17s1.77 4 3.94 4c2.06 0 3.74-1.62 3.9-3.68.34-.24 1.23-.69 2.32.02.18 2.05 1.84 3.66 3.9 3.66.6 0 1.16-.14 1.66-.39l2.12 2.12zm-15.17-1.6c-1.56 0-2.81-1.28-2.81-2.86s1.26-2.86 2.81-2.86c1.56 0 2.81 1.28 2.81 2.86s-1.25 2.86-2.81 2.86m10.12 0c-1.56 0-2.81-1.28-2.81-2.86 0-.26.04-.5.11-.75l3.48 3.48c-.25.08-.5.13-.78.13M22 12h-6.8l-1.5-1.5H22zm-4.94 1c2.17 0 3.94 1.79 3.94 4 0 .25-.03.5-.07.73l-1.09-1.09a2.825 2.825 0 0 0-2.46-2.47l-1.09-1.08c.25-.06.51-.09.77-.09M12.2 9 7.72 4.5l.71-1.82c.2-.51.76-.79 1.29-.64l.05.01 2.23.74 2.22-.74c.53-.17 1.1.09 1.32.58l.02.05L18 9z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/incognito.svg������������������������������0000664�0000000�0000000�00000001205�14753064456�0026117�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.06 13c-1.86 0-3.42 1.33-3.82 3.1-.95-.41-1.82-.3-2.48-.01C10.35 14.31 8.79 13 6.94 13 4.77 13 3 14.79 3 17s1.77 4 3.94 4c2.06 0 3.74-1.62 3.9-3.68.34-.24 1.23-.69 2.32.02.18 2.05 1.84 3.66 3.9 3.66 2.17 0 3.94-1.79 3.94-4s-1.77-4-3.94-4M6.94 19.86c-1.56 0-2.81-1.28-2.81-2.86s1.26-2.86 2.81-2.86c1.56 0 2.81 1.28 2.81 2.86s-1.25 2.86-2.81 2.86m10.12 0c-1.56 0-2.81-1.28-2.81-2.86s1.25-2.86 2.81-2.86 2.82 1.28 2.82 2.86-1.27 2.86-2.82 2.86M22 10.5H2V12h20zm-6.47-7.87c-.22-.49-.78-.75-1.31-.58L12 2.79l-2.23-.74-.05-.01c-.53-.15-1.09.13-1.29.64L6 9h12l-2.44-6.32z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/induction.svg������������������������������0000664�0000000�0000000�00000001217�14753064456�0026125�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 2c-2.25 0-4.25.61-5.81 1.33C15.79 2.61 14 2 12 2s-3.79.61-5.19 1.33C5.25 2.61 3.25 2 1 2v2c1.36 0 2.61.27 3.71.64-.68.51-1.08.9-1.12.95C3.21 5.96 3 6.47 3 7v11c0 2.21 1.79 4 4 4s4-1.79 4-4V7c0-.58-.25-1.12-.68-1.5-.06-.05-.52-.45-1.32-.96.92-.32 1.92-.54 3-.54s2.08.22 3 .54c-.8.51-1.26.91-1.32.96-.43.38-.68.92-.68 1.5v11c0 2.21 1.79 4 4 4s4-1.79 4-4V7c0-.53-.21-1.04-.59-1.41-.04-.05-.44-.44-1.12-.95C20.39 4.27 21.64 4 23 4zM9 7v11c0 1.11-.89 2-2 2s-2-.89-2-2V7s.7-.69 1.87-1.42C8.2 6.31 9 7 9 7m10 0v11c0 1.11-.89 2-2 2s-2-.89-2-2V7s.8-.69 2.13-1.42C18.3 6.31 19 7 19 7"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/infinity.svg�������������������������������0000664�0000000�0000000�00000001066�14753064456�0025764�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.6 6.62C21.58 6.62 24 9 24 12c0 2.96-2.42 5.37-5.4 5.37-1.45 0-2.8-.56-3.82-1.57L12 13.34l-2.83 2.51c-.97.97-2.33 1.53-3.77 1.53C2.42 17.38 0 14.96 0 12s2.42-5.38 5.4-5.38c1.44 0 2.8.56 3.82 1.58L12 10.66l2.83-2.51c.97-.97 2.33-1.53 3.77-1.53M7.8 14.39 10.5 12 7.84 9.65c-.68-.68-1.53-1.03-2.44-1.03C3.53 8.62 2 10.13 2 12s1.53 3.38 3.4 3.38c.91 0 1.76-.35 2.4-.99m8.4-4.78L13.5 12l2.66 2.35c.68.68 1.54 1.03 2.44 1.03 1.87 0 3.4-1.51 3.4-3.38s-1.53-3.38-3.4-3.38c-.91 0-1.76.35-2.4.99"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/information-box-outline.svg����������������0000664�0000000�0000000�00000000401�14753064456�0030713�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9h-2V7h2zm0 8h-2v-6h2zM5 3h14a2 2 0 0 1 2 2v14c0 .53-.21 1.04-.59 1.41-.37.38-.88.59-1.41.59H5c-.53 0-1.04-.21-1.41-.59C3.21 20.04 3 19.53 3 19V5c0-1.11.89-2 2-2m14 16V5H5v14z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/information-box.svg������������������������0000664�0000000�0000000�00000000362�14753064456�0027244�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14a2 2 0 0 1 2 2v14c0 .53-.21 1.04-.59 1.41-.37.38-.88.59-1.41.59H5c-.53 0-1.04-.21-1.41-.59C3.21 20.04 3 19.53 3 19V5c0-1.11.89-2 2-2m8 6V7h-2v2zm0 8v-6h-2v6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/information-off-outline.svg����������������0000664�0000000�0000000�00000000634�14753064456�0030705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l3 3C2.8 7.6 2 9.7 2 12c0 5.5 4.5 10 10 10 2.3 0 4.4-.8 6-2.1l2.8 2.8zM12 20c-4.4 0-8-3.6-8-8 0-1.7.6-3.3 1.5-4.6l5.5 5.5V17h2v-2.1l3.6 3.6c-1.3.9-2.9 1.5-4.6 1.5M8.2 5 6.7 3.5C8.3 2.6 10.1 2 12 2c5.5 0 10 4.5 10 10 0 1.9-.6 3.7-1.5 5.3L19 15.8c.6-1.1 1-2.4 1-3.8 0-4.4-3.6-8-8-8-1.4 0-2.7.4-3.8 1M11 7h2v2h-2z"/></svg>����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/information-off.svg������������������������0000664�0000000�0000000�00000000432�14753064456�0027224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l3 3C2.8 7.6 2 9.7 2 12c0 5.5 4.5 10 10 10 2.3 0 4.4-.8 6-2.1l2.8 2.8zM13 17h-2v-4.1l2 2zm-2-9.2L6.7 3.5C8.3 2.6 10.1 2 12 2c5.5 0 10 4.5 10 10 0 1.9-.6 3.7-1.5 5.3L12.2 9h.8V7h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/information-outline.svg��������������������0000664�0000000�0000000�00000000355�14753064456�0030135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 9h2V7h-2m1 13c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m-1 15h2v-6h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/information-slab-box-outline.svg�����������0000664�0000000�0000000�00000000420�14753064456�0031633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 9h2V7h-2zm3 8v-2h-1v-4h-3v2h1v2h-1v2zM5 3h14a2 2 0 0 1 2 2v14c0 .53-.21 1.04-.59 1.41-.37.38-.88.59-1.41.59H5c-.53 0-1.04-.21-1.41-.59C3.21 20.04 3 19.53 3 19V5c0-1.11.89-2 2-2m14 16V5H5v14z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/information-slab-box.svg�������������������0000664�0000000�0000000�00000000401�14753064456�0030155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14a2 2 0 0 1 2 2v14c0 .53-.21 1.04-.59 1.41-.37.38-.88.59-1.41.59H5c-.53 0-1.04-.21-1.41-.59C3.21 20.04 3 19.53 3 19V5c0-1.11.89-2 2-2m6 6h2V7h-2zm3 8v-2h-1v-4h-3v2h1v2h-1v2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/information-slab-circle-outline.svg��������0000664�0000000�0000000�00000000353�14753064456�0032311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7v2h2V7zm3 10v-2h-1v-4h-3v2h1v2h-1v2zm8-5c0 5.5-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2s10 4.5 10 10m-2 0c0-4.42-3.58-8-8-8s-8 3.58-8 8 3.58 8 8 8 8-3.58 8-8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/information-slab-circle.svg����������������0000664�0000000�0000000�00000000265�14753064456�0030636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 22c5.5 0 10-4.5 10-10S17.5 2 12 2 2 6.5 2 12s4.5 10 10 10M11 7h2v2h-2zm3 10h-4v-2h1v-2h-1v-2h3v4h1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/information-slab-symbol.svg����������������0000664�0000000�0000000�00000000167�14753064456�0030703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9h-2V7h2zm1 6v2h-4v-2h1v-2h-1v-2h3v4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/information-symbol.svg���������������������0000664�0000000�0000000�00000000150�14753064456�0027754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 9h2V7h-2zm0 8h2v-6h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/information-variant-box-outline.svg��������0000664�0000000�0000000�00000001427�14753064456�0032366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.3 7.29c.2-.18.44-.29.7-.29.27 0 .5.11.71.29.19.21.29.45.29.71 0 .27-.1.5-.29.71-.21.19-.44.29-.71.29-.26 0-.5-.1-.7-.29-.19-.21-.3-.44-.3-.71 0-.26.11-.5.3-.71m-2.5 4.68s2.17-1.72 2.96-1.79c.74-.06.59.79.52 1.23l-.01.06c-.14.53-.31 1.17-.48 1.78-.38 1.39-.75 2.75-.66 3 .1.34.72-.09 1.17-.39.06-.04.11-.08.16-.11 0 0 .08-.08.16.03.02.03.04.06.06.08.09.14.14.19.02.27l-.04.02c-.22.15-1.16.81-1.54 1.05-.41.27-1.98 1.17-1.74-.58.21-1.23.49-2.29.71-3.12.41-1.5.59-2.18-.33-1.59-.37.22-.59.36-.72.45-.11.08-.12.08-.19-.05l-.03-.06-.05-.08c-.07-.1-.07-.11.03-.2M5 3h14a2 2 0 0 1 2 2v14c0 .53-.21 1.04-.59 1.41-.37.38-.88.59-1.41.59H5c-.53 0-1.04-.21-1.41-.59C3.21 20.04 3 19.53 3 19V5c0-1.11.89-2 2-2m14 16V5H5v14z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/information-variant-box.svg����������������0000664�0000000�0000000�00000001363�14753064456�0030710�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14a2 2 0 0 1 2 2v14c0 .53-.21 1.04-.59 1.41-.37.38-.88.59-1.41.59H5c-.53 0-1.04-.21-1.41-.59C3.21 20.04 3 19.53 3 19V5c0-1.11.89-2 2-2m7.3 4.29c-.19.21-.3.45-.3.71 0 .27.11.5.3.71.2.19.44.29.7.29.27 0 .5-.1.71-.29.19-.21.29-.44.29-.71 0-.26-.1-.5-.29-.71C13.5 7.11 13.27 7 13 7c-.26 0-.5.11-.7.29m-2.5 4.68c-.1.09-.1.1-.03.2l.05.08.03.06c.07.13.08.13.19.05.13-.09.35-.23.72-.45.92-.59.74.09.33 1.59-.22.83-.5 1.89-.71 3.12-.24 1.75 1.33.85 1.74.58.38-.24 1.32-.9 1.54-1.05l.04-.02c.12-.09.07-.13-.02-.27l-.06-.08c-.08-.11-.16-.03-.16-.03l-.16.11c-.45.3-1.07.73-1.17.39-.09-.25.28-1.61.66-3 .17-.61.34-1.25.47-1.78l.02-.06c.07-.44.22-1.29-.51-1.23-.8.07-2.97 1.79-2.97 1.79"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/information-variant-circle-outline.svg�����0000664�0000000�0000000�00000001364�14753064456�0033037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.3 7.29c.2-.18.44-.29.7-.29.27 0 .5.11.71.29.19.21.29.45.29.71 0 .27-.1.5-.29.71-.21.19-.44.29-.71.29-.26 0-.5-.1-.7-.29-.19-.21-.3-.44-.3-.71 0-.26.11-.5.3-.71m-2.5 4.68s2.17-1.72 2.96-1.79c.74-.06.59.79.52 1.23l-.01.06c-.14.53-.31 1.17-.48 1.78-.38 1.39-.75 2.75-.66 3 .1.34.72-.09 1.17-.39.06-.04.11-.08.16-.11 0 0 .08-.08.16.03.02.03.04.06.06.08.09.14.14.19.02.27l-.04.02c-.22.15-1.16.81-1.54 1.05-.41.27-1.98 1.17-1.74-.58.21-1.23.49-2.29.71-3.12.41-1.5.59-2.18-.33-1.59-.37.22-.59.36-.72.45-.11.08-.12.08-.19-.05l-.03-.06-.05-.08c-.07-.1-.07-.11.03-.2M22 12c0 5.5-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2s10 4.5 10 10m-2 0c0-4.42-3.58-8-8-8s-8 3.58-8 8 3.58 8 8 8 8-3.58 8-8"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/information-variant-circle.svg�������������0000664�0000000�0000000�00000001272�14753064456�0031360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 22c5.5 0 10-4.5 10-10S17.5 2 12 2 2 6.5 2 12s4.5 10 10 10m.3-14.71c.2-.18.44-.29.7-.29.27 0 .5.11.71.29.19.21.29.45.29.71 0 .27-.1.5-.29.71-.21.19-.44.29-.71.29-.26 0-.5-.1-.7-.29-.19-.21-.3-.44-.3-.71 0-.26.11-.5.3-.71m-2.5 4.68s2.17-1.72 2.96-1.79c.74-.06.59.79.52 1.23l-.01.06c-.14.53-.31 1.17-.48 1.78-.38 1.39-.75 2.75-.66 3 .1.34.72-.09 1.17-.39.06-.04.11-.08.16-.11 0 0 .08-.08.16.03.02.03.04.06.06.08.09.14.14.19.02.27l-.04.02c-.22.15-1.16.81-1.54 1.05-.41.27-1.98 1.17-1.74-.58.21-1.23.49-2.29.71-3.12.41-1.5.59-2.18-.33-1.59-.37.22-.59.36-.72.45-.11.08-.12.08-.19-.05l-.03-.06-.05-.08c-.07-.1-.07-.11.03-.2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/information-variant.svg��������������������0000664�0000000�0000000�00000000716�14753064456�0030123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.5 4A1.5 1.5 0 0 0 12 5.5 1.5 1.5 0 0 0 13.5 7 1.5 1.5 0 0 0 15 5.5 1.5 1.5 0 0 0 13.5 4m-.36 4.77c-1.19.1-4.44 2.69-4.44 2.69-.2.15-.14.14.02.42.16.27.14.29.33.16.2-.13.53-.34 1.08-.68 2.12-1.36.34 1.78-.57 7.07-.36 2.62 2 1.27 2.61.87.6-.39 2.21-1.5 2.37-1.61.22-.15.06-.27-.11-.52-.12-.17-.24-.05-.24-.05-.65.43-1.84 1.33-2 .76-.19-.57 1.03-4.48 1.7-7.17.11-.64.41-2.04-.75-1.94"/></svg>��������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/information.svg����������������������������0000664�0000000�0000000�00000000262�14753064456�0026455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9h-2V7h2m0 10h-2v-6h2m-1-9A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/instagram.svg������������������������������0000664�0000000�0000000�00000001011�14753064456�0026106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2m-.2 2A3.6 3.6 0 0 0 4 7.6v8.8C4 18.39 5.61 20 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6C20 5.61 18.39 4 16.4 4zm9.65 1.5a1.25 1.25 0 0 1 1.25 1.25A1.25 1.25 0 0 1 17.25 8 1.25 1.25 0 0 1 16 6.75a1.25 1.25 0 0 1 1.25-1.25M12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/instrument-triangle.svg��������������������0000664�0000000�0000000�00000000317�14753064456�0030144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.5 2h-1v4.2c-.1.1-.2.1-.3.3L2.1 20.7c-.3.6.1 1.3.8 1.3H16v-2H4.8L11 9.2l5.7 10 1.7-1-6.6-11.8-.3-.3zM21 6h-1v12l-.5 4h2l-.5-4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/integrated-circuit-chip.svg����������������0000664�0000000�0000000�00000000466�14753064456�0030645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 4h10c1.11 0 2 .89 2 2v2h-3.41L16 10.59v4l-2 2V20h-4v-3.41l-2-2V9.41l2-2zm8 7.41V14h4v-4h-2.59zM6.59 8 8 6.59V4H4c-1.11 0-2 .89-2 2v2zM6 14v-4H2v4zm2 3.41L6.59 16H2v2c0 1.11.89 2 2 2h4zM17.41 16 16 17.41V20h4c1.11 0 2-.89 2-2v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invert-colors-off.svg����������������������0000664�0000000�0000000�00000000641�14753064456�0027507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.65 20.87 18.3 18.5 12 12.23 8.44 8.66 7 7.25 4.27 4.5 3 5.77l2.78 2.78a8.005 8.005 0 0 0 .56 10.69A7.98 7.98 0 0 0 12 21.58c1.79 0 3.57-.58 5.03-1.78l2.7 2.7L21 21.23zM12 19.59c-1.6 0-3.11-.62-4.24-1.76A5.95 5.95 0 0 1 6 13.59C6 12.27 6.43 11 7.21 10L12 14.77zM12 5.1v4.58l7.25 7.26a7.99 7.99 0 0 0-1.6-9.01L12 2.27l-3.7 3.7 1.41 1.41z"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invert-colors.svg��������������������������0000664�0000000�0000000�00000000460�14753064456�0026736�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 19.58c-1.6 0-3.11-.62-4.24-1.75A5.95 5.95 0 0 1 6 13.58c0-1.58.62-3.11 1.76-4.24L12 5.1m5.66 2.83L12 2.27 6.34 7.93c-3.12 3.12-3.12 8.19 0 11.31A7.98 7.98 0 0 0 12 21.58c2.05 0 4.1-.78 5.66-2.34 3.12-3.12 3.12-8.19 0-11.31"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-arrow-left-outline.svg�������������0000664�0000000�0000000�00000000354�14753064456�0031323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 13.34c-.63-.22-1.3-.34-2-.34V5H5v13.26l1-.66 3 2 3-2 1.04.69c-.04.21-.04.47-.04.71 0 .65.1 1.28.3 1.86L12 20l-3 2-3-2-3 2V3h18zM18 18v-2l-3 3 3 3v-2h4v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-arrow-left.svg���������������������0000664�0000000�0000000�00000000267�14753064456�0027651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 13.34A6.005 6.005 0 0 0 13 19c0 .65.1 1.28.3 1.86L12 20l-3 2-3-2-3 2V3h18zM18 18v-2l-3 3 3 3v-2h4v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-arrow-right-outline.svg������������0000664�0000000�0000000�00000000352�14753064456�0031504�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 13.34c-.63-.22-1.3-.34-2-.34V5H5v13.26l1-.66 3 2 3-2 1.04.69c-.04.21-.04.47-.04.71 0 .65.1 1.28.3 1.86L12 20l-3 2-3-2-3 2V3h18zM19 22v-2h-4v-2h4v-2l3 3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-arrow-right.svg��������������������0000664�0000000�0000000�00000000265�14753064456�0030032�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 13.34A6.005 6.005 0 0 0 13 19c0 .65.1 1.28.3 1.86L12 20l-3 2-3-2-3 2V3h18zM19 22v-2h-4v-2h4v-2l3 3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-check-outline.svg������������������0000664�0000000�0000000�00000000377�14753064456�0030323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13c.7 0 1.37.12 2 .34V3H3v19l3-2 3 2 3-2 1.3.86c-.2-.58-.3-1.21-.3-1.86 0-.24 0-.5.04-.71L12 17.6l-3 2-3-2-1 .66V5h14zm-3.5 6 2.75 3L23 17.23l-1.16-1.41-3.59 3.59-1.59-1.59z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-check.svg��������������������������0000664�0000000�0000000�00000000342�14753064456�0026636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13c.7 0 1.37.12 2 .34V3H3v19l3-2 3 2 3-2 1.3.86c-.2-.58-.3-1.21-.3-1.86 0-3.31 2.69-6 6-6m-3.5 6 2.75 3L23 17.23l-1.16-1.41-3.59 3.59-1.59-1.59z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-clock-outline.svg������������������0000664�0000000�0000000�00000000564�14753064456�0030337�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 16.69V13h1.5v2.82l2.44 1.41-.75 1.3zm-4.13 4.07L9 22l-3-2-3 2V3h18v8.1c1.24 1.26 2 2.99 2 4.9 0 3.87-3.13 7-7 7a6.95 6.95 0 0 1-5.13-2.24m-1.14-1.65C9.26 18.17 9 17.12 9 16c0-3.87 3.13-7 7-7 1.07 0 2.09.24 3 .67V5H5v13.26l1-.66 3 2zM16 21c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-clock.svg��������������������������0000664�0000000�0000000�00000000411�14753064456�0026651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 13v3.69l3.19 1.84.75-1.3-2.44-1.41V13zm-6 9 1.87-1.24A6.95 6.95 0 0 0 16 23c3.87 0 7-3.13 7-7 0-1.91-.76-3.64-2-4.9V3H3v19l3-2zm7-1c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-edit-outline.svg�������������������0000664�0000000�0000000�00000000462�14753064456�0030166�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.86 21.43 9 22l-3-2-3 2V3h18v7.2c-.63-.27-1.36-.27-2 .02V5H5v13.26l1-.66 3 2 .86-.6zm2-1.47L18 13.83l2.03 2.04L13.9 22h-2.04zm8.87-4.79.98-.98c.2-.19.2-.52 0-.72l-1.32-1.32a.24.24 0 0 0-.08-.06.5.5 0 0 0-.62.04l-.02.02-.98.98z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-edit.svg���������������������������0000664�0000000�0000000�00000000436�14753064456�0026512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.86 21.43 9 22l-3-2-3 2V3h18v7.2c-.9-.38-2-.2-2.76.55l-8.38 8.38zm2-1.47L18 13.83l2.03 2.04L13.9 22h-2.04zm8.53-7.81a.24.24 0 0 0-.08-.06.5.5 0 0 0-.62.04l-.02.02-.98.98 2.04 2.04.98-.98c.2-.19.2-.52 0-.72z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-export-outline.svg�����������������0000664�0000000�0000000�00000000347�14753064456�0030564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21 22-3-2-3 2-3-2-3 2-3-2-3 2V3h18v6.67l-2-2V5H5v13.26l1-.66 3 2 3-2 3 2 3-2 1 .66v-1.93l2-2zm-.5-10-5-5-1.42 1.41L16.67 11H7v2h9.67l-2.59 2.58L15.5 17z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-fast-outline.svg�������������������0000664�0000000�0000000�00000000442�14753064456�0030174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 19.32 22 21V5H7v16l2.5-1.68L12 21l2.5-1.68L17 21zM20 7v9.57l-3 2.02-2.5-1.69-2.5 1.69-3-2.02V7zM2 8c0-.6.4-1 1-1h2v2H3c-.6 0-1-.4-1-1m0 3c-.6 0-1 .4-1 1s.4 1 1 1h3v-2zm-2 5c0-.6.4-1 1-1h4v2H1c-.6 0-1-.4-1-1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-fast.svg���������������������������0000664�0000000�0000000�00000000372�14753064456�0026521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 5H7v16l2.5-1.68L12 21l2.5-1.68L17 21l2.5-1.68L22 21zM2 8c0-.6.4-1 1-1h2v2H3c-.6 0-1-.4-1-1m-1 4c0-.6.4-1 1-1h3v2H2c-.6 0-1-.4-1-1m-1 4c0-.6.4-1 1-1h4v2H1c-.6 0-1-.4-1-1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-import-outline.svg�����������������0000664�0000000�0000000�00000000333�14753064456�0030550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18 20 3 2V3H3v6h2V5h14v13.26l-1-.66-3 2-3-2-3 2-3-2-1 .66V15H3v7l3-2 3 2 3-2 3 2zm-6.5-3-1.42-1.42L12.67 13H3v-2h9.67l-2.59-2.59L11.5 7l5 5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-import.svg�������������������������0000664�0000000�0000000�00000000245�14753064456�0027075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18 20 3 2V3H3v8h9.67l-2.59-2.59L11.5 7l5 5-5 5-1.42-1.42L12.67 13H3v9l3-2 3 2 3-2 3 2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-list-outline.svg�������������������0000664�0000000�0000000�00000000312�14753064456�0030206�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 7v2h-2V7zm-4 0v2H7V7zm0 4H7v2h6zm2 0v2h2v-2zm6 11-3-2-3 2-3-2-3 2-3-2-3 2V3h18zm-2-3.74V5H5v13.26l1-.66 3 2 3-2 3 2 3-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-list.svg���������������������������0000664�0000000�0000000�00000000242�14753064456�0026533�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 22V3h18v19l-3-2-3 2-3-2-3 2-3-2zM17 9V7h-2v2zm-4 0V7H7v2zm0 2H7v2h6zm2 2h2v-2h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-minus-outline.svg������������������0000664�0000000�0000000�00000000337�14753064456�0030375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 13.34c-.63-.22-1.3-.34-2-.34V5H5v13.26l1-.66 3 2 3-2 1.04.69c-.04.21-.04.47-.04.71 0 .65.1 1.28.3 1.86L12 20l-3 2-3-2-3 2V3h18zM15 18v2h8v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-minus.svg��������������������������0000664�0000000�0000000�00000000247�14753064456�0026720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 22V3h18v10.34A6.005 6.005 0 0 0 13 19c0 .65.1 1.28.3 1.86L12 20l-3 2-3-2zm12-4v2h8v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-multiple-outline.svg���������������0000664�0000000�0000000�00000000304�14753064456�0031067�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2v15h2V4h13V2zm16.5 18.32L21 22V6H6v16l2.5-1.68L11 22l2.5-1.68L16 22zM19 8v9.57l-3 2.02-2.5-1.69-2.5 1.69-3-2.02V8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-multiple.svg�����������������������0000664�0000000�0000000�00000000231�14753064456�0027411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 2H2v15h2V4h13zm4 20-2.5-1.68L16 22l-2.5-1.68L11 22l-2.5-1.68L6 22V6h15z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-outline.svg������������������������0000664�0000000�0000000�00000000233�14753064456�0027237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21 22-3-2-3 2-3-2-3 2-3-2-3 2V3h18zm-2-3.74V5H5v13.26l1-.66 3 2 3-2 3 2 3-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-plus-outline.svg�������������������0000664�0000000�0000000�00000000363�14753064456�0030224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 13.34c-.63-.22-1.3-.34-2-.34V5H5v13.26l1-.66 3 2 3-2 1.04.69c-.04.21-.04.47-.04.71 0 .65.1 1.28.3 1.86L12 20l-3 2-3-2-3 2V3h18zM18 15v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-plus.svg���������������������������0000664�0000000�0000000�00000000273�14753064456�0026547�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 22V3h18v10.34A6.005 6.005 0 0 0 13 19c0 .65.1 1.28.3 1.86L12 20l-3 2-3-2zm15-7v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-remove-outline.svg�����������������0000664�0000000�0000000�00000000447�14753064456�0030541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13c.7 0 1.37.12 2 .34V3H3v19l3-2 3 2 3-2 1.3.86c-.2-.58-.3-1.21-.3-1.86 0-.24 0-.5.04-.71L12 17.6l-3 2-3-2-1 .66V5h14zm0 4.6-2.1-2.1-1.4 1.4 2.1 2.1-2.1 2.1 1.4 1.4 2.1-2.1 2.1 2.1 1.4-1.4-2.1-2.1 2.1-2.1-1.4-1.4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-remove.svg�������������������������0000664�0000000�0000000�00000000412�14753064456�0027054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13c.7 0 1.37.12 2 .34V3H3v19l3-2 3 2 3-2 1.3.86c-.2-.58-.3-1.21-.3-1.86 0-3.31 2.69-6 6-6m0 4.6-2.1-2.1-1.4 1.4 2.1 2.1-2.1 2.1 1.4 1.4 2.1-2.1 2.1 2.1 1.4-1.4-2.1-2.1 2.1-2.1-1.4-1.4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-send-outline.svg�������������������0000664�0000000�0000000�00000000237�14753064456�0030172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m24 18-10-5v4l4 1-4 1v4zm-5-4.74 2 1V3H3v19l3-2 3 2 3-2v-2.4l-3 2-3-2-1 .66V5h14z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-send.svg���������������������������0000664�0000000�0000000�00000000213�14753064456�0026507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 22V3h18v11.26l-9-4.5V20l-3 2-3-2zm21-4-10 5v-4l4-1-4-1v-4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-text-arrow-left-outline.svg��������0000664�0000000�0000000�00000000412�14753064456�0032300�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.3 20.86 12 20l-3 2-3-2-3 2V3h18v10.34c-.63-.22-1.3-.34-2-.34V5H5v13.26l1-.66 3 2 3-2 1.04.69c-.04.21-.04.47-.04.71 0 .65.1 1.28.3 1.86M17 7v2H7V7zm-2 4v2H7v-2zm3 7v-2l-3 3 3 3v-2h4v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-text-arrow-left.svg����������������0000664�0000000�0000000�00000000314�14753064456�0030624�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 22V3h18v10.34A6.005 6.005 0 0 0 13 19c0 .65.1 1.28.3 1.86L12 20l-3 2-3-2zM17 9V7H7v2zm-2 4v-2H7v2zm3 5v-2l-3 3 3 3v-2h4v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-text-arrow-right-outline.svg�������0000664�0000000�0000000�00000000411�14753064456�0032462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.3 20.86 12 20l-3 2-3-2-3 2V3h18v10.34c-.63-.22-1.3-.34-2-.34V5H5v13.26l1-.66 3 2 3-2 1.04.69c-.04.21-.04.47-.04.71 0 .65.1 1.28.3 1.86M17 7v2H7V7zm-2 4v2H7v-2zm4 11v-2h-4v-2h4v-2l3 3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-text-arrow-right.svg���������������0000664�0000000�0000000�00000000312�14753064456�0031005�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 22V3h18v10.34A6.005 6.005 0 0 0 13 19c0 .65.1 1.28.3 1.86L12 20l-3 2-3-2zM17 9V7H7v2zm-2 4v-2H7v2zm4 9v-2h-4v-2h4v-2l3 3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-text-check-outline.svg�������������0000664�0000000�0000000�00000000424�14753064456�0031276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 20 1.3.86c-.2-.58-.3-1.21-.3-1.86 0-.24 0-.5.04-.71L12 17.6l-3 2-3-2-1 .66V5h14v8c.7 0 1.37.12 2 .34V3H3v19l3-2 3 2zm5-11V7H7v2zm-2 4v-2H7v2zm.5 6 2.75 3L23 17.23l-1.16-1.41-3.59 3.59-1.59-1.59z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-text-check.svg���������������������0000664�0000000�0000000�00000000352�14753064456�0027621�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3v19l3-2 3 2 3-2 1.3.86c-.2-.58-.3-1.21-.3-1.86a6.005 6.005 0 0 1 8-5.66V3zm14 4v2H7V7zm-2 4v2H7v-2zm.5 8 2.75 3L23 17.23l-1.16-1.41-3.59 3.59-1.59-1.59z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-text-clock-outline.svg�������������0000664�0000000�0000000�00000000626�14753064456�0031320�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 9H7V7h10zm-2 4v3.69l3.19 1.84.75-1.3-2.44-1.41V13zm-6 9 1.87-1.24A6.95 6.95 0 0 0 16 23c3.87 0 7-3.13 7-7 0-1.91-.76-3.64-2-4.9V3H3v19l3-2zm0-2.4-3-2-1 .66V5h14v4.67c-.91-.43-1.93-.67-3-.67-1.91 0-3.64.76-4.9 2H7v2h2.67c-.43.91-.67 1.93-.67 3 0 1.12.26 2.17.73 3.11zm7 1.4c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-text-clock.svg���������������������0000664�0000000�0000000�00000000473�14753064456�0027643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 16.69V13h1.5v2.82l2.44 1.41-.75 1.3zM3 22V3h18v8.1c1.24 1.26 2 2.99 2 4.9 0 3.87-3.13 7-7 7a6.95 6.95 0 0 1-5.13-2.24L9 22l-3-2zm6.67-9c.36-.75.83-1.43 1.43-2H7v2zM17 9V7H7v2zm-1 12c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-text-edit-outline.svg��������������0000664�0000000�0000000�00000000530�14753064456�0031144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.86 21.43 9 22l-3-2-3 2V3h18v7.2c-.63-.27-1.36-.27-2 .02V5H5v13.26l1-.66 3 2 .86-.6zm2-1.47L18 13.83l2.03 2.04L13.9 22h-2.04zm9.85-5.77-.98.98-2.04-2.04.98-.98.01-.01.01-.01c.17-.16.43-.17.62-.04.03.01.06.04.08.06l1.32 1.32c.2.2.2.53 0 .72M17 9V7H7v2zm-2 4v-2H7v2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-text-edit.svg����������������������0000664�0000000�0000000�00000000476�14753064456�0027500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.86 21.43 9 22l-3-2-3 2V3h18v7.2c-.9-.38-2-.2-2.76.55l-8.38 8.38zM17 7H7v2h10zm-2 4H7v2h8zm-3.14 8.96V22h2.04l6.13-6.13L18 13.83zm9.85-6.49-1.32-1.32a.24.24 0 0 0-.08-.06.5.5 0 0 0-.62.04l-.02.02-.98.98 2.04 2.04.98-.98c.2-.19.2-.52 0-.72"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-text-fast-outline.svg��������������0000664�0000000�0000000�00000000463�14753064456�0031161�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 9h-7v2h7zm-7 4h5v2h-5zm11 8-2.5-1.68L17 21l-2.5-1.68L12 21l-2.5-1.68L7 21V5h15zm-2-4.43V7H9v9.57l3 2.02 2.5-1.69 2.5 1.69zM3 7c-.6 0-1 .4-1 1s.4 1 1 1h2V7zm-1 4c-.6 0-1 .4-1 1s.4 1 1 1h3v-2zm-1 4c-.6 0-1 .4-1 1s.4 1 1 1h4v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-text-fast.svg����������������������0000664�0000000�0000000�00000000414�14753064456�0027500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 5h15v16l-2.5-1.68L17 21l-2.5-1.68L12 21l-2.5-1.68L7 21zm11 4h-7v2h7zm-7 4v2h5v-2zM3 7c-.6 0-1 .4-1 1s.4 1 1 1h2V7zm-2 5c0-.6.4-1 1-1h3v2H2c-.6 0-1-.4-1-1m0 3c-.6 0-1 .4-1 1s.4 1 1 1h4v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-text-minus-outline.svg�������������0000664�0000000�0000000�00000000366�14753064456�0031361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 13.34c-.63-.22-1.3-.34-2-.34V5H5v13.26l1-.66 3 2 3-2 1.04.69c-.04.21-.04.47-.04.71 0 .65.1 1.28.3 1.86L12 20l-3 2-3-2-3 2V3h18zM17 9V7H7v2zm-2 4v-2H7v2zm0 5v2h8v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-text-minus.svg���������������������0000664�0000000�0000000�00000000301�14753064456�0027671�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3v19l3-2 3 2 3-2 1.3.86c-.2-.58-.3-1.21-.3-1.86a6.005 6.005 0 0 1 8-5.66V3zm14 4v2H7V7zm-2 4v2H7v-2zm0 7v2h8v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-text-multiple-outline.svg����������0000664�0000000�0000000�00000000332�14753064456�0032052�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2v15h2V4h13V2zm8 8h7v2h-7zm5 4h-5v2h5zm3.5 6.32L21 22V6H6v16l2.5-1.68L11 22l2.5-1.68L16 22zM19 8v9.57l-3 2.02-2.5-1.69-2.5 1.69-3-2.02V8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-text-multiple.svg������������������0000664�0000000�0000000�00000000263�14753064456�0030400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 2H2v15h2V4h13zm4 20-2.5-1.68L16 22l-2.5-1.68L11 22l-2.5-1.68L6 22V6h15zM10 10v2h7v-2zm5 4h-5v2h5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-text-outline.svg�������������������0000664�0000000�0000000�00000000262�14753064456�0030223�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 7v2H7V7zm-2 4v2H7v-2zm3 9 3 2V3H3v19l3-2 3 2 3-2 3 2zm1-15v13.26l-1-.66-3 2-3-2-3 2-3-2-1 .66V5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-text-plus-outline.svg��������������0000664�0000000�0000000�00000000412�14753064456�0031201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 13.34c-.63-.22-1.3-.34-2-.34V5H5v13.26l1-.66 3 2 3-2 1.04.69c-.04.21-.04.47-.04.71 0 .65.1 1.28.3 1.86L12 20l-3 2-3-2-3 2V3h18zM17 9V7H7v2zm-2 4v-2H7v2zm3 2v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-text-plus.svg����������������������0000664�0000000�0000000�00000000325�14753064456�0027527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3v19l3-2 3 2 3-2 1.3.86c-.2-.58-.3-1.21-.3-1.86a6.005 6.005 0 0 1 8-5.66V3zm14 4v2H7V7zm-2 4v2H7v-2zm3 4v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-text-remove-outline.svg������������0000664�0000000�0000000�00000000476�14753064456�0031525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 20 1.3.86c-.2-.58-.3-1.21-.3-1.86 0-.24 0-.5.04-.71L12 17.6l-3 2-3-2-1 .66V5h14v8c.7 0 1.37.12 2 .34V3H3v19l3-2 3 2zm5-11V7H7v2zm-2 4v-2H7v2zm4 4.6-2.1-2.1-1.4 1.4 2.1 2.1-2.1 2.1 1.4 1.4 2.1-2.1 2.1 2.1 1.4-1.4-2.1-2.1 2.1-2.1-1.4-1.4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-text-remove.svg��������������������0000664�0000000�0000000�00000000424�14753064456�0030041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3v19l3-2 3 2 3-2 1.3.86c-.2-.58-.3-1.21-.3-1.86a6.005 6.005 0 0 1 8-5.66V3zm14 4v2H7V7zm-2 4v2H7v-2zm4 6.6-2.1-2.1-1.4 1.4 2.1 2.1-2.1 2.1 1.4 1.4 2.1-2.1 2.1 2.1 1.4-1.4-2.1-2.1 2.1-2.1-1.4-1.4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-text-send-outline.svg��������������0000664�0000000�0000000�00000000273�14753064456�0031154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m24 18-10 5v-4l4-1-4-1v-4zm-3-3.74-2-1V5H5v13.26l1-.66 3 2 3-2V20l-3 2-3-2-3 2V3h18zM17 7v2H7V7zm-5 6v-2H7v2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-text-send.svg����������������������0000664�0000000�0000000�00000000241�14753064456�0027472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3v19l3-2 3 2 3-2v-7H7v-2h7.47L21 14.26V3zm14 6H7V7h10zm-3 14v-4l4-1-4-1v-4l10 5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice-text.svg���������������������������0000664�0000000�0000000�00000000211�14753064456�0026540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3v19l3-2 3 2 3-2 3 2 3-2 3 2V3zm14 4v2H7V7zm-2 4v2H7v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/invoice.svg��������������������������������0000664�0000000�0000000�00000000162�14753064456�0025563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21 22-3-2-3 2-3-2-3 2-3-2-3 2V3h18z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/iobroker.svg�������������������������������0000664�0000000�0000000�00000000673�14753064456�0025752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c-.5 0-1 .04-1.5.11v2.74a7.6 7.6 0 0 1 3 0V2.12Q12.75 2 12 2m-2.18.25C5.4 3.25 2.11 7.24 2.11 12c0 5.5 4.42 10 9.89 10s9.89-4.5 9.89-10c0-4.76-3.29-8.75-7.7-9.75v2.78c2.98.93 5.15 3.7 5.15 6.97 0 4-3.29 7.3-7.34 7.3-4.04 0-7.33-3.3-7.33-7.3 0-3.27 2.17-6.04 5.15-6.97m2.18.42c-.5 0-1 .05-1.5.17v12.65c.5.11 1 .17 1.5.17s1-.05 1.5-.17V5.62c-.5-.12-1-.17-1.5-.17"/></svg>���������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ip-network-outline.svg���������������������0000664�0000000�0000000�00000000473�14753064456�0027710�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 20a1 1 0 0 0-1-1h-1v-2h4a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h4v2h-1a1 1 0 0 0-1 1H2v2h7a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1h7v-2zm-8-5V5h10v10zm3-9H8v8h2zm4 0h-3v8h2v-2h1a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2m0 4h-1V8h1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ip-network.svg�����������������������������0000664�0000000�0000000�00000000460�14753064456�0026227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 9h-2V7h2zm7 11v2h-7a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1H2v-2h7a1 1 0 0 1 1-1h1v-2H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-4v2h1a1 1 0 0 1 1 1zM9 5H7v10h2zm2 10h2v-4h2a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ip-outline.svg�����������������������������0000664�0000000�0000000�00000000356�14753064456�0026221�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 5v14H5V5zm0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2M9 7H7v10h2zm6 0h-4v10h2v-4h2c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2m0 4h-2V9h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ip.svg�������������������������������������0000664�0000000�0000000�00000000333�14753064456�0024537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 11h-2V9h2zM3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2zm7 2H8v10h2zm2 10h2v-4h2a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ipod.svg�����������������������������������0000664�0000000�0000000�00000000427�14753064456�0025066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm0 2h10v6H7zm5 8a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/iron-board.svg�����������������������������0000664�0000000�0000000�00000000535�14753064456�0026167�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6h-3V4.8c0-1.12.56-2.17 1.5-2.8.94.63 1.5 1.68 1.5 2.8zm-3.72 7.63L19.59 19c.79.06 1.41.7 1.41 1.5 0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5v-.24l-4-5.03-4 5.03v.24c0 .83-.67 1.5-1.5 1.5S7 21.33 7 20.5c0-.8.63-1.44 1.41-1.5l4.31-5.37L9 9H3V7h18v2h-2zM14 12l2.42-3h-4.84z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/iron-outline.svg���������������������������0000664�0000000�0000000�00000000451�14753064456�0026554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 6c-1.66 0-3 1.34-3 3v4c0 .55-.45 1-1 1v-4c0-1.66-1.34-3-3-3h-4c-1.66 0-3 1.34-3 3h2c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v1H6c-2.21 0-4 1.79-4 4v3h15v-2c1.66 0 3-1.34 3-3V9c0-.55.45-1 1-1h1V6zm-6 10H4v-1c0-1.1.9-2 2-2h9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/iron.svg�����������������������������������0000664�0000000�0000000�00000000415�14753064456�0025077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 6c-1.66 0-3 1.34-3 3v4c0 .55-.45 1-1 1v-4c0-1.66-1.34-3-3-3h-4c-1.66 0-3 1.34-3 3h2c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v1H6c-2.21 0-4 1.79-4 4v3h15v-2c1.66 0 3-1.34 3-3V9c0-.55.45-1 1-1h1V6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/island-variant.svg�������������������������0000664�0000000�0000000�00000000557�14753064456�0027053�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 15.26V13h-4l4-4h-3l3-3h-2l3-3 3 3h-2l3 3h-3l4 4h-4v2.76c2.13.71 3.68 1.91 4 3.24-1.7-.13-3.38-.46-5-1-1.21.61-2.63 1-4 1-1.29 0-2.83-.42-4-1-1.63.54-3.28.87-5 1 .54-2.23 4.4-4 9-4 1.05 0 2.06.09 3 .26M8 19s-3 1-6 1v2c3 0 6-1 6-1s2 1 4 1 4-1 4-1 3 1 6 1v-2c-3 0-6-1-6-1s-2 1-4 1-4-1-4-1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/island.svg���������������������������������0000664�0000000�0000000�00000001724�14753064456�0025406�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 20c-1.39 0-2.78-.47-4-1.33-2.44 1.71-5.56 1.71-8 0C6.78 19.53 5.39 20 4 20H2v2h2c1.37 0 2.74-.35 4-1 2.5 1.3 5.5 1.3 8 0 1.26.65 2.62 1 4 1h2v-2zm.78-1H20c-1.18 0-2.36-.4-3.42-1.15l-.58-.4-.58.4c-1.03.72-2.21 1.1-3.42 1.1-1.23 0-2.41-.38-3.44-1.1l-.56-.4-.57.4C6.36 18.6 5.18 19 4 19h-.78c.53-1.46 2.36-4 8.78-4 2 0 3 .24 3 .24.68-1.37 1.83-4.47 1-8.42l1.06.71c.33 1.43.94 4.22-.26 8.12 2.63.85 3.62 2.35 3.98 3.35M22 7.59c-.79-1.09-2-1.88-3.42-2.06.12.14.23.3.34.47a5.03 5.03 0 0 1-.45 5.95c.59-1.45.53-3.16-.39-4.59-.08-.08-.12-.16-.18-.25-.4-.58-.94-1.05-1.52-1.39-2.03.65-3.5 2.55-3.5 4.78 0 .53.08 1.03.22 1.5-.6-.83-.94-1.83-.94-2.93 0-1.66.8-3.12 2.04-4.04-1.04-.08-2.11.15-3.06.75-.44.27-.82.6-1.14.98.39-.94 1.05-1.76 2-2.36a4.85 4.85 0 0 1 3.39-.71 5.2 5.2 0 0 0-1.06-1.09c-.41-.31-.86-.55-1.33-.72 1 .03 2.04.36 2.91 1.01.44.33.79.73 1.09 1.16.06 0 .12-.01.19-.01A5.03 5.03 0 0 1 22 7.59"/></svg>��������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/iv-bag.svg���������������������������������0000664�0000000�0000000�00000000415�14753064456�0025275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 1h-4C5 1 5 3 5 3v12s0 2 5 2v2h1v1c0 1.21.8 3 3 3h4v-2h-4c-.81 0-1-.55-1-1v-1h1v-2c5 0 5-2 5-2V3s0-2-5-2m3 11h-3v-1h3zm0-7h-3v1h3v2h-3v1h3v1H7V3.5c.3-.18 1.13-.5 3-.5h4c1.88 0 2.7.32 3 .5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/jabber.svg���������������������������������0000664�0000000�0000000�00000001655�14753064456�0025364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.23 5.72C4.61 5.55 5 3.19 5 3.17c0 .02 7.58-3.88 11.7 2.56 4.1 6.42-.84 9.13-2.73 10.33-1.89 1.21-1.24 3.66-1.24 4.07 0 .4-.57.84-.73.28-.12-.57-.75-3.86 1.33-5.25 3.8-2.55 4.57-5.06 2.67-8.74C14.2 3 8.28 3.41 7.03 4.08s-1.17 1.81-1.8 1.64m4.1 6.91-.22-.47c.12-1.88-1.48-1.77-1.03 1.17.13.83-.61.47-.63.4-.56-2.29-.03-3.51 1.1-3.28 1.07.23.98 1.38.98 1.38.03-.05 1.47-1.66 1.97-.91 1.08 1.58-.97 3.55-1.09 3.71-.13.15-.27.42-.49.21-.22-.2-.2-.34-.03-.57 2.88-4.27-.3-2.05-.56-1.64m-2.83 2.7v-.02s1.5 2.82 4.11 1.77c.39-.16.56.06.59.19.07.26-.07.37-.34.46-3 .99-4.97-1.1-5.23-1.6-.24-.45-.13-.75.12-.91s.75.11.75.11M6 17.5s1.67 2 4.8 1.5c.29-.06.4.13.45.38s-.03.46-.33.56c-.29.09-3.84.56-5.79-2.22-.13-.16.17-.36.34-.36s.56.14.53.14m-.05 1.89c1.58 2.11 4.38 2.16 5.33 1.49.22-.15.42.17.28.31-1.92 1.97-5.89-.19-6.29-.86-.18-.28-.14-.67.04-.88.19-.2.62-.07.64-.06"/></svg>�����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/jeepney.svg��������������������������������0000664�0000000�0000000�00000000700�14753064456�0025564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13V7h1V4H4v3h1v6H2c0 .93.5 1.71 1.5 1.93V20a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h11v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-5.07c1-.23 1.5-1 1.5-1.93zM8 15a1.5 1.5 0 0 1-1.5-1.5A1.5 1.5 0 0 1 8 12a1.5 1.5 0 0 1 1.5 1.5A1.5 1.5 0 0 1 8 15m8 0a1.5 1.5 0 0 1-1.5-1.5A1.5 1.5 0 0 1 16 12a1.5 1.5 0 0 1 1.5 1.5A1.5 1.5 0 0 1 16 15m1.5-4.5c-1.58-.32-3.47-.5-5.5-.5s-4 .18-5.5.5V7h11z"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/jellyfish-outline.svg����������������������0000664�0000000�0000000�00000001435�14753064456�0027601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4c3.8 0 6.5 2.8 6.5 6.8a18.3 18.3 0 0 1-13 0C5.5 6.8 8.2 4 12 4m0-2c-4.7 0-8.5 3.5-8.5 8.9.06.8.56 1.5 1.3 1.8l1.7.5v2.3a.5.5 0 0 1-.5.5.5.5 0 0 1-.5-.5.898.898 0 0 0-1-1 .898.898 0 0 0-1 1A2.405 2.405 0 0 0 5.9 18H6c1.41.06 2.56-1.09 2.5-2.5v-1.8h1v5.7c0 .67-1 .67-1 0a.898.898 0 0 0-1-1 .898.898 0 0 0-1 1c-.11 1.4 1 2.6 2.4 2.6H9c1.41.06 2.56-1.09 2.5-2.5V14h1v5.5A2.394 2.394 0 0 0 15 22h.1c1.37 0 2.46-1.14 2.4-2.5 0-1.33-2-1.33-2 0 0 .67-1 .67-1 0v-5.7h1v1.8c0 1.36 1.13 2.46 2.5 2.4h.1c1.37 0 2.46-1.14 2.4-2.5 0-1.33-2-1.33-2 0 0 .67-1 .67-1 0v-2.3l1.7-.5c.72-.34 1.21-1.02 1.3-1.8C20.5 5.5 16.7 2 12 2m0 4.2c-1.47.4-2.76 1.33-3.6 2.6-.4.53-1.2-.07-.8-.6a7.47 7.47 0 0 1 4.2-3 .5.5 0 0 1 .6.4c.1.3-.1.5-.4.6"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/jellyfish.svg������������������������������0000664�0000000�0000000�00000001366�14753064456�0026127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 14.5a.898.898 0 0 0-1 1c0 .67-1 .67-1 0v-2.3l1.7-.5c.72-.34 1.21-1.02 1.3-1.8C20.5 5.5 16.7 2 12 2s-8.5 3.5-8.5 8.9c.06.8.56 1.5 1.3 1.8l1.7.5v2.3a.5.5 0 0 1-.5.5.5.5 0 0 1-.5-.5.898.898 0 0 0-1-1 .898.898 0 0 0-1 1A2.394 2.394 0 0 0 6 18c1.41.06 2.56-1.09 2.5-2.5v-1.8h1v5.7c0 .67-1 .67-1 0a.898.898 0 0 0-1-1 .898.898 0 0 0-1 1A2.4 2.4 0 0 0 9 22c1.41.06 2.56-1.09 2.5-2.5V14h1v5.5A2.394 2.394 0 0 0 15 22c1.41.06 2.56-1.09 2.5-2.5 0-1.33-2-1.33-2 0 0 .67-1 .67-1 0v-5.7h1v1.8c0 1.36 1.13 2.46 2.5 2.4 1.41.06 2.56-1.09 2.5-2.5a.898.898 0 0 0-1-1m-8.9-9.8A5.57 5.57 0 0 0 7 7.3c-.17.2-.5.27-.7.1a.507.507 0 0 1-.1-.7 6.9 6.9 0 0 1 4.2-3c.27-.02.51.15.6.4.06.27-.12.55-.4.6"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/jira.svg�����������������������������������0000664�0000000�0000000�00000000563�14753064456�0025061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.53 2c0 2.4 1.97 4.35 4.35 4.35h1.78v1.7c0 2.4 1.94 4.34 4.34 4.35V2.84a.84.84 0 0 0-.84-.84zM6.77 6.8a4.36 4.36 0 0 0 4.34 4.34h1.8v1.72a4.36 4.36 0 0 0 4.34 4.34V7.63a.84.84 0 0 0-.83-.83zM2 11.6c0 2.4 1.95 4.34 4.35 4.34h1.78v1.72c.01 2.39 1.95 4.34 4.34 4.34v-9.57a.84.84 0 0 0-.84-.84z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/jquery.svg���������������������������������0000664�0000000�0000000�00000000735�14753064456�0025454�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.88 10.41a5.005 5.005 0 0 1-7.04-.62c-1.78-2.12-1.5-5.29.61-7.04l.51-.38A5.024 5.024 0 0 0 16.8 9c1.63 1.94 4.45 2.32 6.54.97zM21.1 14.5a7.48 7.48 0 0 1-10.56-.92c-2.67-3.17-2.25-7.9.92-10.58l.92-.64a7.494 7.494 0 0 0-.12 9.78c2.42 2.86 6.54 3.49 9.65 1.58zm-1.13 4.88c-4.44 3.73-11.07 3.15-14.8-1.3C1.45 13.64 2.03 7 6.47 3.29l1.11-.79c-3.51 3.8-3.73 9.73-.3 13.82 3.43 4.08 9.31 4.9 13.68 2.11z"/></svg>�����������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/jsfiddle.svg�������������������������������0000664�0000000�0000000�00000002357�14753064456�0025723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.34 13.7c0 1.3-1.11 2.34-2.48 2.34-1.21 0-2.22-1.04-3.11-2l-.25-.25c0-.03-.03-.06-.05-.09-.71-.74-1.49-1.48-2.24-1.48-.89 0-1.61.66-1.61 1.47s.72 1.48 1.61 1.48c.76 0 1.14-.42 1.42-.72l.07-.08c.16-.17.44-.18.61-.02.19.15.19.44.02.61l-.06.07c-.33.35-.92 1-2.06 1-1.37 0-2.48-1.03-2.48-2.34 0-1.29 1.11-2.34 2.48-2.34 1.21 0 2.22 1.06 3.11 2l.24.25.06.09c.71.74 1.49 1.48 2.24 1.48.89 0 1.61-.67 1.61-1.48s-.72-1.47-1.61-1.47c-.75 0-1.14.42-1.42.72l-.07.06c-.16.19-.43.2-.61.04a.45.45 0 0 1-.02-.62l.07-.06c.32-.36.92-1 2.05-1 1.37 0 2.48 1.04 2.48 2.34M22 14.85c0 1.11-.43 2.15-1.22 2.94-.78.78-1.83 1.21-2.94 1.21H6.28c-2.32-.04-4.21-1.94-4.21-4.25 0-1.38.69-2.68 1.82-3.47-.04-.19-.06-.38-.06-.58 0-1.67 1.37-3.03 3.05-3.03.51 0 1 .12 1.44.36A6.15 6.15 0 0 1 13.6 5c3.37 0 6.1 2.72 6.1 6.07v.07c1.41.7 2.3 2.13 2.3 3.71m-.87 0c0-1.35-.8-2.53-2.04-3.04a.44.44 0 0 1-.27-.43l.01-.09c0-.07.01-.15.01-.22 0-2.87-2.34-5.2-5.24-5.2-2 0-3.86 1.16-4.73 2.96-.05.12-.16.21-.29.24-.12.03-.26 0-.36-.07-.39-.31-.85-.47-1.34-.47-1.2 0-2.18.97-2.18 2.17 0 .22.03.44.1.64.06.2-.02.41-.19.51-1.05.62-1.67 1.7-1.67 2.9 0 1.84 1.5 3.35 3.35 3.38h11.54c.89 0 1.71-.34 2.33-.96.63-.62.97-1.44.97-2.32"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/jump-rope.svg������������������������������0000664�0000000�0000000�00000001052�14753064456�0026044�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 4.5v6c0 .7-.5 1.4-1.2 1.5v5.3c0 1.3-.8 3.8-3.8 3.8h-1.5c.4-.4.8-.9 1-1.5h.5c2.1 0 2.2-1.9 2.2-2.2V12c-.7-.1-1.2-.7-1.2-1.5v-6c0-.8.7-1.5 1.5-1.5h1c.8 0 1.5.7 1.5 1.5m-6.2 13.7c0 1.5-1.2 2.8-2.8 2.8H8c-3 0-3.8-2.5-3.8-3.8V12c-.7-.1-1.2-.8-1.2-1.5v-6C3 3.7 3.7 3 4.5 3h1C6.3 3 7 3.7 7 4.5v6c0 .7-.5 1.4-1.2 1.5v5.3c0 .4.1 2.2 2.2 2.2h1.6q-.3-.6-.3-1.2v-10c0-1.5 1.2-2.8 2.8-2.8s2.7 1.2 2.7 2.8m-1.6-.1c0-.6-.5-1.2-1.2-1.2s-1.2.6-1.2 1.2v10c0 .7.6 1.2 1.2 1.2s1.2-.6 1.2-1.2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/kabaddi.svg��������������������������������0000664�0000000�0000000�00000001035�14753064456�0025506�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.2 10.6q1.5 1.5 3.6 1.5l.1 2.1q-2.85 0-5.1-2.1l-.7-.7-2.3 2.4L9 15.9v6H7v-5.2l-1.3-1.2v2.2L1.5 22 .1 20.6 3.7 17l-1.2-3.5c-.2-.6.1-1.1.6-1.5l3.3-3.3c.4-.5.9-.7 1.4-.7s.8.1 1.1.3zM24 11.9h-2V8.5l-1.8-.7.9 4.4 1 5.2.9 4.4h-2.1l-1.8-8-2.1 2v6h-2v-7.5l2.1-2-.6-3c-.6.6-1.3 1.2-2.1 1.6-.9-.1-1.8-.5-2.5-1.2 1.6-.3 2.7-1.1 3.4-2.3l1-1.6c.6-1 1.5-1.3 2.6-.8L24 7.2zM11.4 4.4c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2M16.5.3c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/kangaroo.svg�������������������������������0000664�0000000�0000000�00000001512�14753064456�0025730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.8 6.59 19 7.97v2.07l-1.31 1.57-.38 1.64L16 14l-.5-.88.94-.53.26-1.14.07-.3.7-.84c.18-.21.15-.53-.06-.7a.506.506 0 0 0-.71.06l-.85 1.02-.29 1.24c-.18.03-.36.07-.56.07-.69 0-1.32-.24-1.77-.6-.08 1.3-.5 2.41-1.1 3.03l-1.63 1.76-.54 3.6L8.07 21l-.54-.83 1.51-.98.46-3.27v-.01l.5-1.37c-.53-.46-.92-1.26-1.12-2.24l-.17.31c-.36.64-.71 1.29-1.15 1.95-.45.64-.9 1.34-1.78 1.88-.44.28-1.08.4-1.61.29-.56-.12-1.03-.47-1.31-.84-.55-.76-.71-1.54-.86-2.27l.97-.26c.23.64.53 1.29.91 1.64.38.33.69.26.96 0 .32-.27.63-.85.89-1.45.27-.61.49-1.27.72-1.95.48-1.36.94-2.78 1.75-4.24.42-.72.93-1.47 1.72-2.14C10.7 4.55 11.73 4 13 4s2.7 1.22 3.58 2.34c.42.55 1.29.48 1.64-.13l.92-1.58a.9.9 0 0 1-.35-.23.984.984 0 0 1 0-1.4l1.14 1.13c.03 0 .07-.02.07-.02a1 1 0 0 1 .91.58L22 7l-1 .5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/karate.svg���������������������������������0000664�0000000�0000000�00000000401�14753064456�0025372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.8 2-8.2 6.7-1.21-1.04L14 5.58 9.41 1 8 2.41l2.74 2.74L5 8.46l-1.19 4.29L6.27 17 8 16l-2.03-3.5.35-1.32L9.5 13l.5 9h2l.5-10L21 3.4zM5 3a2 2 0 1 1 0 4c-1.11 0-2-.89-2-2s.9-2 2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/kayaking.svg�������������������������������0000664�0000000�0000000�00000001320�14753064456�0025722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 23v-2c-1.42.05-2.79-.1-4-1-1.77 1.25-4.23 1.25-6 0-1.77 1.25-4.23 1.25-6 0-1.21.9-2.58 1.05-4 1v2c1.38.05 2.79-.06 4-.75 1.84 1 4.16 1 6 0 1.84 1 4.16 1 6 0 1.21.69 2.62.8 4 .75m1.39-5.79c-2.26-.92-5.09-1.65-7.73-1.99l3.7-8.34 1.31-.47 1.33-3L18.8 2l-1.3 2.95.5 1.32-1.69 3.7-2.81 1.5L11 10.2a.5.5 0 0 0-.26-.14c-.92-.33-1.97.26-2.24 1.17l-1.37 4.18c-.54-.23-5.88 1.56-6.215 1.71L0 17.47c1.33.57 2.2.92 3.94 1.41.81-.25 1.5-.79 2.06-1.41 1.5 1.95 4.5 1.95 6 0 1.5 1.95 4.5 1.95 6 0 .56.62 1.25 1.16 2.06 1.41l2.89-.97 1.05-.44zm-9.33-2.13c-.99-.08-2-.08-3-.08l.71-2.17 1.73.94 1.5-.85zM14 7.5c0 1.11-.89 2-2 2s-2-.89-2-2 .9-2 2-2 2 .9 2 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keg.svg������������������������������������0000664�0000000�0000000�00000000324�14753064456�0024675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 22v-2h1v-4H5v-2h1v-3H5V7h6V3h-1V2h4v1h-1v4h6v4h-1v3h1v2h-1v4h1v2zM17 9a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1 1 1 0 0 0 1 1h2a1 1 0 0 0 1-1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/kettle-alert-outline.svg�������������������0000664�0000000�0000000�00000000675�14753064456�0030212�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3C4.8 3 1 5.7 1 9c0 1.2.5 2.3 1.4 3.3C1.5 13.5 1 15 1 16.5V20c0 1.1.9 2 2 2h13c1.1 0 2-.9 2-2v-3.5c0-1.2-.3-2.4-1-3.5l2-2-3-3-2.1 2.1c-2.9-1.6-6.5-1.5-9.3.3C4.2 10 4 9.5 4 9c0-1.8 2.5-3.3 5.5-3.3 1.4 0 2.8.4 3.8 1l2-2C13.6 3.5 11.6 3 9.5 3m0 8c3.5 0 6.5 3 6.5 5.5V20H3v-3.5C3 14 6 11 9.5 11m.5 1.5c-3 0-5 1.5-5 4.5v1h2v-1c0-1 0-3.5 3-4.5m11 .5V7h2v6zm0 4v-2h2v2z"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/kettle-alert.svg���������������������������0000664�0000000�0000000�00000000667�14753064456�0026536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3C4.8 3 1 5.7 1 9c0 1.2.5 2.3 1.4 3.3C1.5 13.5 1 15 1 16.5V20c0 1.1.9 2 2 2h13c1.1 0 2-.9 2-2v-3.5c0-1.2-.3-2.4-1-3.5l2-2-3-3-2.1 2.1C12.6 9.4 11.1 9 9.5 9c-1.8 0-3.6.5-4.9 1.4C4.2 10 4 9.5 4 9c0-1.8 2.5-3.2 5.5-3.2 1.4 0 2.8.3 3.8.9l2-2C13.8 3.6 11.7 3 9.5 3m0 8c.3 0 .7 0 1 .1-3.1.5-5.5 3.1-5.5 6.4V20H3v-2.5C3 13.9 5.9 11 9.5 11M21 13V7h2v6zm0 4v-2h2v2z"/></svg>�������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/kettle-off-outline.svg���������������������0000664�0000000�0000000�00000001044�14753064456�0027644�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l3.6 3.6C4.3 7.3 4 8.1 4 9c0 1.2.5 2.3 1.4 3.3C4.5 13.5 4 15 4 16.5V20c0 1.1.9 2 2 2h13c.3 0 .6-.1.9-.2l.9.9zM8.2 10.1l-.6.3C7.2 10 7 9.5 7 9v-.1zM6 20v-3.5c0-1.8 1.6-3.9 3.7-4.9l1.2 1.2c-1.8.6-2.9 2-2.9 4.2v1h2v-1c0-.8 0-2.5 1.4-3.7l6.7 6.7zm10.9-9.9L19 8l3 3-2 2c.7 1.1 1 2.3 1 3.5v1.3l-2.1-2.1c-.4-1.8-2.1-3.6-4.3-4.3L12.2 9c1.6-.1 3.2.3 4.7 1.1M9.5 6.3 7.4 4.2C8.8 3.5 10.6 3 12.5 3c2.1 0 4.1.5 5.8 1.7l-2 2c-1-.6-2.4-1-3.8-1-1.1 0-2.2.2-3 .6"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/kettle-off.svg�����������������������������0000664�0000000�0000000�00000000747�14753064456�0026200�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l3.6 3.6C4.3 7.3 4 8.1 4 9c0 1.2.5 2.3 1.4 3.3C4.5 13.5 4 15 4 16.5V20c0 1.1.9 2 2 2h13c.3 0 .6-.1.9-.2l.9.9zM8.2 10.1l-.6.3C7.2 10 7 9.5 7 9v-.1zM8 17.5V20H6v-2.5c0-2.6 1.5-4.8 3.7-5.9l.8.8C9 13.6 8 15.4 8 17.5m8.9-7.4L19 8l3 3-2 2c.7 1.1 1 2.3 1 3.5v1.3L12.2 9h.3c1.5 0 3.1.4 4.4 1.1M9.5 6.3 7.4 4.2C8.8 3.5 10.6 3 12.5 3c2.2 0 4.3.6 5.8 1.7l-2 2c-1-.6-2.4-.9-3.8-.9-1.1 0-2.1.1-3 .5"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/material/kettle-outline.svg�������������������������0000664�0000000�0000000�00000000634�14753064456�0027100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.5 3C7.8 3 4 5.7 4 9c0 1.2.5 2.3 1.4 3.3A6.8 6.8 0 0 0 4 16.5V20c0 1.1.9 2 2 2h13a2 2 0 0 0 2-2v-3.5c0-1.2-.3-2.4-1-3.5l2-2-3-3-2.1 2.1a9.2 9.2 0 0 0-9.3.3A2 2 0 0 1 7 9c0-1.8 2.5-3.3 5.5-3.3 1.4 0 2.8.4 3.8 1l2-2A10 10 0 0 0 12.5 3m0 8c3.5 0 6.5 3 6.5 5.5V20H6v-3.5C6 14 9 11 12.5 11m.5 1.5c-3 0-5 1.5-5 4.5v1h2v-1c0-1 0-3.5 3-4.5"/></svg>����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/kettle-pour-over.svg�����������������������0000664�0000000�0000000�00000000467�14753064456�0027363�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 4c-.6 0-1 .4-1 1v1h5V5c0-.6-.4-1-1-1zM3 7l1.1 7.1c.1.7.4 1.4 1 2 .4.5 1.1.8 1.9.9 0 .6.4 1 1 1h8c.6 0 1-.4 1-1l-2-6h2l3.3 5 1.7-1-3.3-5 1.3-.8-1-1.7L16.4 9H15V7H8v4l-.8 5c-.7-.1-1.1-.3-1.4-.6-.4-.4-.6-.9-.7-1.5L4 7zm1 12v2h16v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/kettle-steam-outline.svg�������������������0000664�0000000�0000000�00000001310�14753064456�0030177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3C4.8 3 1 5.7 1 9c0 1.2.5 2.3 1.4 3.3C1.5 13.5.985 15 1 16.5V20c0 1.1.9 2 2 2h13c1.11 0 2-.89 2-2v-3.5c0-1.2-.3-2.4-1-3.5l2-2-3-3-2.1 2.1a9.19 9.19 0 0 0-9.3.3C4.22 10.03 4 9.53 4 9c0-1.8 2.5-3.3 5.5-3.3 1.4 0 2.8.4 3.8 1l2-2A10.05 10.05 0 0 0 9.5 3m0 8c3.5 0 6.5 3 6.5 5.5V20H3v-3.5C3 14 6 11 9.5 11m.5 1.5c-3 0-5 1.5-5 4.5v1h2v-1c0-1 0-3.5 3-4.5m13-5.2c0 1.63-1.09 3.3-2.62 3.67l-.67-.68L19 9.6h.75c1 0 1.75-1.38 1.75-2.4s-.85-2.06-1.85-2.06v-1.5C21.5 3.64 23 5.45 23 7.3m-5.35-.57c-.62-.61-1-1.45-1-2.38C16.65 2.5 18.15 1 20 1v1.5c-1 0-1.85.83-1.85 1.85S19 6.2 20 6.2v1.5c-.82 0-1.58.25-2.21.68l-1.07-1.07c.28-.22.6-.42.93-.58"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/kettle-steam.svg���������������������������0000664�0000000�0000000�00000001344�14753064456�0026531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19 11-3-3-2.1 2.1A9.2 9.2 0 0 0 9.5 9c-1.85 0-3.55.53-4.95 1.41C4.19 9.97 4 9.5 4 9c0-1.79 2.46-3.25 5.5-3.25 1.43 0 2.8.33 3.83.92l2.02-2.02C13.77 3.59 11.68 3 9.5 3 4.81 3 1 5.69 1 9c0 1.19.5 2.34 1.44 3.33A6.8 6.8 0 0 0 1 16.5V20c0 1.11.89 2 2 2h13c1.11 0 2-.89 2-2v-3.5c0-1.22-.34-2.43-1-3.5zM5 17.5V20H3v-2.5A6.5 6.5 0 0 1 9.5 11c.34 0 .67.04 1 .09-3.11.48-5.5 3.16-5.5 6.41M23 7.3c0 1.63-1.09 3.3-2.62 3.67l-.67-.68L19 9.6h.75c1 0 1.75-1.38 1.75-2.4s-.85-2.06-1.85-2.06v-1.5C21.5 3.64 23 5.45 23 7.3m-5.35-.57c-.62-.61-1-1.45-1-2.38C16.65 2.5 18.15 1 20 1v1.5c-1 0-1.85.83-1.85 1.85S19 6.2 20 6.2v1.5c-.82 0-1.58.25-2.21.68l-1.07-1.07c.28-.22.6-.42.93-.58"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/kettle.svg���������������������������������0000664�0000000�0000000�00000000716�14753064456�0025424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.5 3C7.81 3 4 5.69 4 9c0 1.19.5 2.34 1.44 3.33A6.8 6.8 0 0 0 4 16.5V20c0 1.11.89 2 2 2h13c1.11 0 2-.89 2-2v-3.5c0-1.22-.34-2.43-1-3.5l2-2-3-3-2.1 2.1A9.2 9.2 0 0 0 12.5 9c-1.85 0-3.55.53-4.95 1.41C7.19 9.97 7 9.5 7 9c0-1.79 2.46-3.25 5.5-3.25 1.43 0 2.8.33 3.83.92l2.02-2.02C16.77 3.59 14.68 3 12.5 3m0 8c.34 0 .67.04 1 .09-3.11.48-5.5 3.16-5.5 6.41V20H6v-2.5a6.5 6.5 0 0 1 6.5-6.5"/></svg>��������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/kettlebell.svg�����������������������������0000664�0000000�0000000�00000000613�14753064456�0026257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.2 10.7.6-2.4c.1-.3.5-1.7-.3-2.9C15.9 4.5 14.7 4 13 4h-2c-1.7 0-2.9.5-3.5 1.4-.8 1.2-.4 2.5-.3 2.9l.6 2.4C6.7 11.8 6 13.3 6 15c0 2.1 1.1 3.9 2.7 5h6.6c1.6-1.1 2.7-2.9 2.7-5 0-1.7-.7-3.2-1.8-4.3M9.6 9.5l-.5-1.7v-.1s-.2-.7.1-1.1Q9.5 6 11 6h2c.9 0 1.6.2 1.9.5.3.4.1 1.1.1 1.1l-.5 1.9c-.8-.3-1.6-.5-2.5-.5s-1.7.2-2.4.5"/></svg>���������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/key-alert-outline.svg����������������������0000664�0000000�0000000�00000000650�14753064456�0027503�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 22h-4v2H6V13.32C3.58 12.17 2 9.72 2 7c0-3.86 3.14-7 7-7s7 3.14 7 7c0 2.72-1.58 5.18-4 6.32V16h4zm-2-4h-4v-6.06l.67-.23C12.66 11 14 9.11 14 7c0-2.76-2.24-5-5-5S4 4.24 4 7c0 2.11 1.34 4 3.33 4.71l.67.23V22h2v-2h4zM12 7c0 1.66-1.34 3-3 3S6 8.66 6 7s1.34-3 3-3 3 1.34 3 3M9 8c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1m11-1h2v6h-2m0 4h2v-2h-2"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/key-alert.svg������������������������������0000664�0000000�0000000�00000000413�14753064456�0026023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 6.5C4 4 6 2 8.5 2S13 4 13 6.5c0 1.96-1.25 3.63-3 4.24V15h3v3h-3v4H7V10.74c-1.75-.61-3-2.28-3-4.24m3 0C7 7.33 7.67 8 8.5 8S10 7.33 10 6.5 9.33 5 8.5 5 7 5.67 7 6.5M18 7h2v6h-2m0 4h2v-2h-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/key-arrow-right.svg������������������������0000664�0000000�0000000�00000000367�14753064456�0027171�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.7 6c-.6-1.8-2.3-3-4.2-3C5 3 3 5 3 7.5S5 12 7.5 12c2 0 3.6-1.2 4.2-3H15v3h3V9h3V6zM7.5 9C6.7 9 6 8.3 6 7.5S6.7 6 7.5 6 9 6.7 9 7.5 8.3 9 7.5 9M13 21v-2H8v-2h5v-2l3 3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/key-chain-variant.svg����������������������0000664�0000000�0000000�00000001430�14753064456�0027440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.66 13.67c-.34.33-.73.62-1.16.83V21l-2 2-2-2 2-1.71L8 18l1.5-1.29-2-1.71v-.5a4.42 4.42 0 0 1-2.5-4C5 8 7 6 9.5 6h.11c-.02.07-.07.12-.11.18-.27.61-.42 1.25-.47 1.9A1.498 1.498 0 0 0 9.5 11h.1c.64 1.25 1.74 2.2 3.06 2.67M16 6c0-.63-.1-1.25-.28-1.82 1.34.38 2.49 1.37 3.01 2.78.6 1.66.16 3.43-.98 4.63L20 17.68l-1.22 2.57-2.56-1.2 1.28-2.29-1.84-.7.97-1.72-2.47-.93-.16-.46a4.48 4.48 0 0 1-3.73-2.91 4.51 4.51 0 0 1 2.69-5.77c.18-.06.37-.1.54-.14A3.95 3.95 0 0 0 10 2C7.79 2 6 3.79 6 6c0 .09 0 .17.03.26-.33.27-.63.56-.88.89C5.06 6.78 5 6.4 5 6c0-2.76 2.24-5 5-5s5 2.24 5 5c0 1.16-.4 2.21-1.06 3.06C16.08 8.88 16 6 16 6m-3.19 2.1c.06.17.15.31.25.44.56-.66.91-1.5.94-2.43-.11.02-.2.04-.3.07-.78.29-1.2 1.15-.89 1.92"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/key-chain.svg������������������������������0000664�0000000�0000000�00000001422�14753064456�0025777�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.67 13.67c-.47.46-1.04.83-1.67 1.06V23H8v-2H5v-3h3v-3.28c-1.74-.62-3-2.26-3-4.22C5 8 7 6 9.5 6h.1c-.47.95-.68 2-.57 3.08-.59.2-1.03.76-1.03 1.42 0 .83.67 1.5 1.5 1.5.23 0 .45-.06.65-.15.64.84 1.52 1.47 2.52 1.82m8.06 5.77-2.76 1.16-.78-1.84-2.76 1.17-1.17-2.77L16.03 16l-1.27-3c-1.85.08-3.65-.95-4.41-2.75-.96-2.29.12-4.93 2.41-5.9.24-.1.5-.17.74-.23C12.84 2.87 11.5 2 10 2 7.79 2 6 3.79 6 6v.24c-.3.26-.6.58-.85.91C5.06 6.78 5 6.4 5 6c0-2.76 2.24-5 5-5s5 2.24 5 5c0 1.42-.6 2.67-1.55 3.57.42.43 1.05.56 1.63.31.77-.32 1.12-1.2.8-1.96a1 1 0 0 0-.14-.26C15.9 7.13 16 6.58 16 6c0-.63-.1-1.24-.28-1.81 1.28.36 2.38 1.25 2.93 2.57.76 1.8.24 3.81-1.15 5.05zM13 8.6c.37-.41.65-.89.82-1.42-.54.27-.85.82-.82 1.42"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/key-change.svg�����������������������������0000664�0000000�0000000�00000000612�14753064456�0026142�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 2c2 0 3.6 1.2 4.2 3H21v3h-3v3h-3V8h-3.3c-.6 1.8-2.3 3-4.2 3C5 11 3 9 3 6.5S5 2 7.5 2m0 3C6.7 5 6 5.7 6 6.5S6.7 8 7.5 8 9 7.3 9 6.5 8.3 5 7.5 5m0 8c2 0 3.6 1.2 4.2 3H21v3h-1v3h-2v-3h-2v3h-3v-3h-1.3c-.6 1.8-2.3 3-4.2 3C5 22 3 20 3 17.5S5 13 7.5 13m0 3c-.8 0-1.5.7-1.5 1.5S6.7 19 7.5 19 9 18.3 9 17.5 8.3 16 7.5 16"/></svg>����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/key-link.svg�������������������������������0000664�0000000�0000000�00000000602�14753064456�0025651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 3C5 3 3 5 3 7.5S5 12 7.5 12c2 0 3.6-1.2 4.2-3H15v3h3V9h3V6h-9.3c-.6-1.8-2.2-3-4.2-3m0 3C8.3 6 9 6.7 9 7.5S8.3 9 7.5 9 6 8.3 6 7.5 6.7 6 7.5 6m2.5 8c-1.6 0-4 1.1-4 4s2.4 4 4 4h1v-2h-1c-.3 0-2-.1-2-2 0-1.8 1.5-2 2-2h1v-2m2 0v2h1c.3 0 2 .1 2 2 0 1.8-1.5 2-2 2h-1v2h1c1.6 0 4-1.1 4-4s-2.4-4-4-4m-5 3v2h6v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/key-minus.svg������������������������������0000664�0000000�0000000�00000000356�14753064456�0026055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 3c2 0 3.6 1.2 4.2 3H21v3h-3v3h-3V9h-3.3c-.6 1.8-2.3 3-4.2 3C5 12 3 10 3 7.5S5 3 7.5 3m0 3C6.7 6 6 6.7 6 7.5S6.7 9 7.5 9 9 8.3 9 7.5 8.3 6 7.5 6M8 17h8v2H8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/key-outline.svg����������������������������0000664�0000000�0000000�00000000562�14753064456�0026400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 18h-6v-3h-1.7c-1.1 2.4-3.6 4-6.3 4-3.9 0-7-3.1-7-7s3.1-7 7-7c2.7 0 5.2 1.6 6.3 4H24v6h-3zm-4-2h2v-3h3v-2H11.9l-.2-.7C11 8.3 9.1 7 7 7c-2.8 0-5 2.2-5 5s2.2 5 5 5c2.1 0 4-1.3 4.7-3.3l.2-.7H17zM7 15c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3m0-4c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/key-plus.svg�������������������������������0000664�0000000�0000000�00000000402�14753064456�0025675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 3c2 0 3.6 1.2 4.2 3H21v3h-3v3h-3V9h-3.3c-.6 1.8-2.3 3-4.2 3C5 12 3 10 3 7.5S5 3 7.5 3m0 3C6.7 6 6 6.7 6 7.5S6.7 9 7.5 9 9 8.3 9 7.5 8.3 6 7.5 6M8 17h3v-3h2v3h3v2h-3v3h-2v-3H8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/key-remove.svg�����������������������������0000664�0000000�0000000�00000000475�14753064456�0026221�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 3c2 0 3.6 1.2 4.2 3H21v3h-3v3h-3V9h-3.3c-.6 1.8-2.3 3-4.2 3C5 12 3 10 3 7.5S5 3 7.5 3m0 3C6.7 6 6 6.7 6 7.5S6.7 9 7.5 9 9 8.3 9 7.5 8.3 6 7.5 6m7.1 8 1.4 1.4-2.6 2.6 2.6 2.6-1.4 1.4-2.6-2.6L9.4 22 8 20.6l2.6-2.6L8 15.4 9.4 14l2.6 2.6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/key-star.svg�������������������������������0000664�0000000�0000000�00000000452�14753064456�0025670�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 3C5 3 3 5 3 7.5S5 12 7.5 12c2 0 3.6-1.2 4.2-3H15v3h3V9h3V6h-9.3c-.6-1.8-2.2-3-4.2-3m0 3C8.3 6 9 6.7 9 7.5S8.3 9 7.5 9 6 8.3 6 7.5 6.7 6 7.5 6m4.5 8-1.1 2.6-2.9.3 2.2 1.9-.7 2.8 2.5-1.5 2.4 1.5-.6-2.8 2.2-1.9-2.9-.2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/key-variant.svg����������������������������0000664�0000000�0000000�00000000407�14753064456�0026363�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 18v4h-4v-3h-3v-3h-3l-2.26-2.26c-.55.17-1.13.26-1.74.26a6 6 0 0 1-6-6 6 6 0 0 1 6-6 6 6 0 0 1 6 6c0 .61-.09 1.19-.26 1.74zM7 5a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/key-wireless.svg���������������������������0000664�0000000�0000000�00000000600�14753064456�0026547�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4.9 5.9 1.4 1.4c3.1-3.1 8.2-3.1 11.3 0L19 5.9C15.2 2 8.8 2 4.9 5.9m2.9 2.9 1.4 1.4c1.6-1.6 4.1-1.6 5.7 0l1.4-1.4c-2.4-2.4-6.2-2.4-8.5 0m4 6.2c-.8-2.3-3.4-3.6-5.7-2.7S2.4 15.7 3.3 18s3.4 3.6 5.7 2.7c1.3-.5 2.3-1.5 2.7-2.7H15v3h3v-3h3v-3M7.5 18c-.8 0-1.5-.7-1.5-1.5S6.7 15 7.5 15s1.5.7 1.5 1.5S8.3 18 7.5 18"/></svg>��������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/key.svg������������������������������������0000664�0000000�0000000�00000000324�14753064456�0024717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m5.6-4c-.8-2.3-3-4-5.6-4-3.3 0-6 2.7-6 6s2.7 6 6 6c2.6 0 4.8-1.7 5.6-4H16v4h4v-4h3v-4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard-backspace.svg���������������������0000664�0000000�0000000�00000000206�14753064456�0027640�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11H6.83l3.58-3.59L9 6l-6 6 6 6 1.41-1.42L6.83 13H21z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard-caps.svg��������������������������0000664�0000000�0000000�00000000206�14753064456�0026652�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 18h12v-2H6m6-7.59L16.59 13 18 11.58l-6-6-6 6L7.41 13z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard-close-outline.svg�����������������0000664�0000000�0000000�00000000453�14753064456�0030512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 23 4-4H8M4 3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 2h16v10H4zm1 1v2h2V6zm3 0v2h2V6zm3 0v2h2V6zm3 0v2h2V6zm3 0v2h2V6zM5 9v2h2V9zm3 0v2h2V9zm3 0v2h2V9zm3 0v2h2V9zm3 0v2h2V9zm-9 3v2h8v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard-close.svg�������������������������0000664�0000000�0000000�00000000433�14753064456�0027033�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 23 4-4H8M19 8h-2V6h2m0 5h-2V9h2m-3-1h-2V6h2m0 5h-2V9h2m0 6H8v-2h8M7 8H5V6h2m0 5H5V9h2m1 0h2v2H8m0-5h2v2H8m3 1h2v2h-2m0-5h2v2h-2m9-5H4c-1.11 0-2 .89-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard-esc.svg���������������������������0000664�0000000�0000000�00000000440�14753064456�0026476�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 7h6v2H3v2h4v2H3v2h4v2H1zm10 0h4v2h-4v2h2a2 2 0 0 1 2 2v2c0 1.11-.89 2-2 2H9v-2h4v-2h-2a2 2 0 0 1-2-2V9c0-1.1.9-2 2-2m8 0h2a2 2 0 0 1 2 2v1h-2V9h-2v6h2v-1h2v1c0 1.11-.89 2-2 2h-2a2 2 0 0 1-2-2V9c0-1.1.9-2 2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard-f1.svg����������������������������0000664�0000000�0000000�00000000167�14753064456�0026240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 7h6v2H8v2h3v2H8v4H6zm8 0h4v10h-2V9h-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard-f10.svg���������������������������0000664�0000000�0000000�00000000312�14753064456�0026310�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 7h6v2H4v2h3v2H4v4H2zm8 0h4v10h-2V9h-2zm8 0h2a2 2 0 0 1 2 2v6c0 1.11-.89 2-2 2h-2a2 2 0 0 1-2-2V9c0-1.1.9-2 2-2m0 2v6h2V9z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard-f11.svg���������������������������0000664�0000000�0000000�00000000211�14753064456�0026307�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 7h6v2H5v2h3v2H5v4H3zm8 0h4v10h-2V9h-2zm6 0h4v10h-2V9h-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard-f12.svg���������������������������0000664�0000000�0000000�00000000305�14753064456�0026314�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 7h6v2H4v2h3v2H4v4H2zm14 0h4a2 2 0 0 1 2 2v2c0 1.11-.89 2-2 2h-2v2h4v2h-6v-4c0-1.1.9-2 2-2h2V9h-4zm-6 0h4v10h-2V9h-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard-f2.svg����������������������������0000664�0000000�0000000�00000000261�14753064456�0026234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 7h6v2H7v2h3v2H7v4H5zm8 0h4a2 2 0 0 1 2 2v2c0 1.11-.89 2-2 2h-2v2h4v2h-6v-4c0-1.1.9-2 2-2h2V9h-4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard-f3.svg����������������������������0000664�0000000�0000000�00000000324�14753064456�0026235�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 7h6v2H7v2h3v2H7v4H5zm14 8c0 1.11-.89 2-2 2h-4v-2h4v-2h-2v-2h2V9h-4V7h4a2 2 0 0 1 2 2v1.5c0 .83-.67 1.5-1.5 1.5.83 0 1.5.67 1.5 1.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard-f4.svg����������������������������0000664�0000000�0000000�00000000200�14753064456�0026227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 7h6v2H7v2h3v2H7v4H5zm8 0h2v4h2V7h2v10h-2v-4h-4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard-f5.svg����������������������������0000664�0000000�0000000�00000000244�14753064456�0026240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 7h6v2H7v2h3v2H7v4H5zm8 0h6v2h-4v2h2a2 2 0 0 1 2 2v2c0 1.11-.89 2-2 2h-4v-2h4v-2h-4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard-f6.svg����������������������������0000664�0000000�0000000�00000000303�14753064456�0026235�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 7h6v2H7v2h3v2H7v4H5zm10 0h4v2h-4v2h2a2 2 0 0 1 2 2v2c0 1.11-.89 2-2 2h-2a2 2 0 0 1-2-2V9c0-1.1.9-2 2-2m0 6v2h2v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard-f7.svg����������������������������0000664�0000000�0000000�00000000174�14753064456�0026244�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 7h6v2H7v2h3v2H7v4H5zm10 10h-2l4-8h-4V7h6v2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard-f8.svg����������������������������0000664�0000000�0000000�00000000442�14753064456�0026243�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 7h6v2H7v2h3v2H7v4H5zm10 6v2h2v-2zm0-4v2h2V9zm0 8a2 2 0 0 1-2-2v-1.5c0-.83.67-1.5 1.5-1.5-.83 0-1.5-.67-1.5-1.5V9c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v1.5c0 .83-.67 1.5-1.5 1.5.83 0 1.5.67 1.5 1.5V15c0 1.11-.89 2-2 2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard-f9.svg����������������������������0000664�0000000�0000000�00000000306�14753064456�0026243�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 7h6v2H7v2h3v2H7v4H5zm12 10h-4v-2h4v-2h-2a2 2 0 0 1-2-2V9c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v6c0 1.11-.89 2-2 2m0-6V9h-2v2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard-off-outline.svg�������������������0000664�0000000�0000000�00000000577�14753064456�0030166�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m1 4.27 1.47 1.47A1.9 1.9 0 0 0 2 7v10a2 2 0 0 0 2 2h11.73l3 3L20 20.72 2.28 3zM4 17V7.27l1 1V10h1.73L8 11.27V13h1.73l1 1H8v2h4.73l1 1zm1-6h2v2H5zm12 0h2v2h-2zm2-1h-2V8h2zm-5 1h2v2h-1.17l-.83-.83zm-1-1h-1.17L11 9.17V8h2zm9-3v10c0 .86-.55 1.58-1.3 1.87L18.83 17H20V7H8.83l-2-2H20a2 2 0 0 1 2 2m-6 3h-2V8h2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard-off.svg���������������������������0000664�0000000�0000000�00000000553�14753064456�0026503�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 4.27 2.28 3 20 20.72 18.73 22l-3-3H4a2 2 0 0 1-2-2V7c0-.5.18-.93.46-1.27zM19 10V8h-2v2zm0 3v-2h-2v2zm-3-3V8h-2v2zm0 3v-2h-2v1.18L11.82 10H13V8h-2v1.18L9.82 8l-3-3H20a2 2 0 0 1 2 2v10c0 .86-.54 1.59-1.3 1.87L14.82 13zm-8 2v2h5.73l-2-2zm-3-5h1.73L5 8.27zm2 3v-2H5v2zm1 0h1.73L8 11.27z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard-outline.svg�����������������������0000664�0000000�0000000�00000000441�14753064456�0027404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2zm0 2h16v10H4zm1 1v2h2V8zm3 0v2h2V8zm3 0v2h2V8zm3 0v2h2V8zm3 0v2h2V8zM5 11v2h2v-2zm3 0v2h2v-2zm3 0v2h2v-2zm3 0v2h2v-2zm3 0v2h2v-2zm-9 3v2h8v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard-return.svg������������������������0000664�0000000�0000000�00000000211�14753064456�0027237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 7v4H5.83l3.58-3.59L8 6l-6 6 6 6 1.41-1.42L5.83 13H21V7z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard-settings-outline.svg��������������0000664�0000000�0000000�00000000505�14753064456�0031243�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 22h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zM4 5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2zm0 2h16v10H4zm1 1v2h2V8zm3 0v2h2V8zm3 0v2h2V8zm3 0v2h2V8zm3 0v2h2V8zM5 11v2h2v-2zm3 0v2h2v-2zm3 0v2h2v-2zm3 0v2h2v-2zm3 0v2h2v-2zm-9 3v2h8v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard-settings.svg����������������������0000664�0000000�0000000�00000000464�14753064456�0027572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 10h-2V8h2m0 5h-2v-2h2m-3-1h-2V8h2m0 5h-2v-2h2m0 6H8v-2h8m-9-5H5V8h2m0 5H5v-2h2m1 0h2v2H8m0-5h2v2H8m3 1h2v2h-2m0-5h2v2h-2m9-5H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2M7 22h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard-space.svg�������������������������0000664�0000000�0000000�00000000203�14753064456�0027014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 15h2v4h14v-4h2v4c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard-tab-reverse.svg�������������������0000664�0000000�0000000�00000000216�14753064456�0030144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 6H2v12h2m7-12-6 6 6 6 1.41-1.42L8.83 13H23v-2H8.83l3.58-3.59z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard-tab.svg���������������������������0000664�0000000�0000000�00000000223�14753064456�0026471�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 18h2V6h-2m-8.41 1.41L15.17 11H1v2h14.17l-3.58 3.58L13 18l6-6-6-6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard-variant.svg�����������������������0000664�0000000�0000000�00000000446�14753064456�0027376�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 16h12v2H6zm0-3v2H2v-2zm1 2v-2h3v2zm4 0v-2h2v2zm3 0v-2h3v2zm4 0v-2h4v2zM2 10h3v2H2zm17 2v-2h3v2zm-1 0h-2v-2h2zM8 12H6v-2h2zm4 0H9v-2h3zm3 0h-2v-2h2zM2 9V7h2v2zm3 0V7h2v2zm3 0V7h2v2zm3 0V7h2v2zm3 0V7h2v2zm3 0V7h5v2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/keyboard.svg�������������������������������0000664�0000000�0000000�00000000424�14753064456�0025730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 10h-2V8h2m0 5h-2v-2h2m-3-1h-2V8h2m0 5h-2v-2h2m0 6H8v-2h8m-9-5H5V8h2m0 5H5v-2h2m1 0h2v2H8m0-5h2v2H8m3 1h2v2h-2m0-5h2v2h-2m9-5H4c-1.11 0-2 .89-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/khanda.svg���������������������������������0000664�0000000�0000000�00000001457�14753064456�0025365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 20c3.72-2 6-4.73 6-8 0-2.66-1.54-5.1-4.11-7h-.07a7.53 7.53 0 0 1 1.86 5c0 3-1.68 5-4.18 6.83 0 .01-1.12.71-2.5 1.58v-1.08L15 16s-.2-.6-.42-1.54C16.6 13.58 18 11.69 18 9.5c0-2.16-1.36-4.03-3.35-4.93C14.84 3.63 15 3 15 3l-3-2-3 2s.16.63.35 1.57C7.37 5.47 6 7.34 6 9.5c0 2.19 1.4 4.08 3.42 4.96C9.2 15.4 9 16 9 16l2 1.33v1.08c-1.38-.87-2.5-1.57-2.5-1.58C6 15 4.32 13 4.32 10c0-1.91.68-3.65 1.86-5h-.06C3.54 6.9 2 9.34 2 12c0 3.27 2.29 6 6 8l1-1.5 1.92 1.23L7.34 22 8 23l3-1.93V23h2v-1.93L16 23l.66-1-3.58-2.27L15 18.5zm.75-10.5c0 1.59-.99 2.96-2.44 3.69-.17-.96-.31-2.07-.31-3.19 0-1.33.2-2.85.42-4.14 1.39.74 2.33 2.09 2.33 3.64m-9.5 0c0-1.55.94-2.9 2.34-3.64C9.8 7.15 10 8.67 10 10c0 1.12-.14 2.23-.31 3.19-1.45-.73-2.44-2.1-2.44-3.69"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/kickstarter.svg����������������������������0000664�0000000�0000000�00000000502�14753064456�0026453�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.3 10.2 17.5 12l1.8 1.8a4.774 4.774 0 0 1 0 6.79c-1.88 1.87-4.95 1.87-6.83 0l-.67-.66A4.77 4.77 0 0 1 7.83 22C5.16 22 3 19.85 3 17.2V6.8C3 4.15 5.16 2 7.83 2c1.67 0 3.1.82 3.97 2.07l.67-.66c1.88-1.87 4.95-1.87 6.83 0a4.774 4.774 0 0 1 0 6.79"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/kite-outline.svg���������������������������0000664�0000000�0000000�00000001025�14753064456�0026537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.5 5.1 5.45 5.28-5.45 7.5-5.43-7.5zm0-2.1c-.45 0-.84.15-1.17.46L5.54 9.08c-.31.3-.48.67-.54 1.12 0 .44.08.84.33 1.2l6.12 8.43c-.25.53-.7.79-1.36.79-.8 0-1.3-.37-1.49-1.12-.2-.66-.6-1.23-1.22-1.7-.62-.46-1.28-.7-1.97-.7-1.05 0-1.91.4-2.56 1.2l1.36 1.12c.29-.39.71-.58 1.2-.58.8 0 1.3.37 1.49 1.11.19.67.6 1.24 1.22 1.72s1.28.73 1.97.73c1.24 0 2.19-.57 2.85-1.7l6.74-9.3c.25-.36.35-.76.32-1.2-.05-.44-.23-.82-.53-1.12l-5.79-5.62c-.33-.31-.72-.46-1.18-.46"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/kite.svg�����������������������������������0000664�0000000�0000000�00000000753�14753064456�0025071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.69 3.46c-.34-.31-.73-.46-1.19-.46-.45 0-.84.15-1.17.46L5.54 9.08c-.31.3-.48.67-.54 1.12 0 .44.08.84.33 1.2l6.12 8.43c-.25.53-.7.79-1.36.79-.8 0-1.3-.37-1.49-1.12-.2-.66-.6-1.23-1.22-1.7-.62-.46-1.28-.7-1.97-.7-1.05 0-1.91.4-2.56 1.2l1.36 1.12c.29-.39.71-.58 1.2-.58.8 0 1.3.37 1.49 1.11.19.67.6 1.24 1.22 1.72s1.28.73 1.97.73c1.24 0 2.19-.57 2.85-1.7l6.74-9.31c.25-.35.35-.75.32-1.19-.05-.45-.23-.82-.53-1.12z"/></svg>���������������������mkdocs-material-9.6.4/material/templates/.icons/material/kitesurfing.svg����������������������������0000664�0000000�0000000�00000001254�14753064456�0026464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.5 4.5-1-1.07L17.92 1H20zM20.96 23q-1.59 0-3-.75c-1.84 1-4.15 1-5.99 0-1.84 1-4.15 1-5.97 0-1.23.69-2.64.8-4 .75v-2c1.41.05 2.77-.1 4-1 1.74 1.25 4.21 1.25 5.97 0 1.77 1.25 4.23 1.25 5.99 0 1.21.9 2.58 1.05 3.98 1v2zm-.61-10.74c-2.05-.76-4.21.35-6.27 1.1l-1.69-1.86H9.58V8c2.31.19 4.71-.33 6.32-2.04l-1.4-1.4C13.6 5.46 12.3 6 11 6H8c-1.11 0-2.05.92-2 2 .07 1.35-.33 4.73.45 5.87L8 16.82c-.57.41-1.07.8-1.5 1.18 1.59 1.5 4.15 1.17 5.47-.5.94 1.09 2.48 1.8 3.93 1.33 1.55-1.06 6.84-4.83 4.45-6.57m-8.92 2.39c-.43.24-1.27.72-1.61.96l-.85-2.02 2.49-.09.7.75zM8 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.89 2-2-.89-2-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/klingon.svg��������������������������������0000664�0000000�0000000�00000002165�14753064456�0025575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4.79 21.5-.08-.26c-.18-.59-.24-1.16-.21-1.84.1-1.23.64-2.09 1.32-2.81a6.3 6.3 0 0 1-.29-1.85c0-1.74.73-3.3 1.92-4.44.88-.84 2.01-1.44 3.26-1.7.66-2.37 1.09-4.8 1.29-7.1.24 2 .65 4.62 1.3 7.08a6.6 6.6 0 0 1 3.37 1.72c1.18 1.14 1.92 2.7 1.92 4.44 0 .61-.09 1.19-.26 1.76.88.42 1.87.67 3.17.79l-.06.15c-.12.33-.44.56-.73.74l-.02.01c-.56.38-1.51.81-2.84.81h-.44c-.18 0-.35-.03-.51-.05-.07.05-.15.15-.23.23C15.5 20.31 13.86 21 12.06 21c-1.79 0-3.42-.69-4.6-1.82l-.12-.12c-1 .53-1.8 1.27-2.4 2.21l-.14.23m1.7-5.56c.15-.12 1.7-1.44 2.13-2.16l.1-.17c.92 1.39 1.67 2.67 2.7 4.47l-.21.01c-1.14.07-2.17.28-3.07.61 1.02.92 2.4 1.49 3.91 1.49 1.48 0 2.82-.54 3.83-1.42-.25-.05-.5-.12-.74-.18-.77-.18-1.5-.37-2.34-.4l-.19-.01.08-.18c.4-.8 2.1-3.59 2.53-4.37l.11.18c.66.96 1.39 1.69 2.24 2.26.11-.43.17-.87.17-1.32 0-1.5-.64-2.86-1.66-3.85a5.6 5.6 0 0 0-2.54-1.4c.3 1 .65 2 1.04 2.85l.03.05-.03.06c-.39.76-.83 1.49-1.26 2.2-.39.64-.79 1.3-1.15 1.98l-.1.19-.12-.18c-.57-.83-2.21-3.59-2.55-4.15.4-1 .74-2 1.04-3-.95.28-1.75.76-2.42 1.4a5.3 5.3 0 0 0-1.66 3.84c0 .42.05.82.13 1.21"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/knife-military.svg�������������������������0000664�0000000�0000000�00000000335�14753064456�0027055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22 2-4.61 1.75-6.93 6.93L14 14.22l6.92-6.93C22.43 5.78 22 2 22 2M8.33 10l-1.41 1.39 1.41 1.41-5.65 5.66L6.21 22l5.66-5.66 1.41 1.42 1.42-1.42z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/knife.svg����������������������������������0000664�0000000�0000000�00000000224�14753064456�0025222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.62 2c3.35 5.61-8.15 18.15-8.15 18.15L9.6 17.28 4.91 22l-2.14-2.14z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/knob.svg�����������������������������������0000664�0000000�0000000�00000000260�14753064456�0025057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m1 8h-2V4.1c.3-.1.7-.1 1-.1s.7 0 1 .1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/koala.svg����������������������������������0000664�0000000�0000000�00000001241�14753064456�0025215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3c-.9 0-3.5 0-4.7 3.1-.4-.1-.9-.1-1.3-.1h-2c-.4 0-.9 0-1.3.1C8.5 3 5.9 3 5 3 4 3 1 4 1 9c0 3.6 2.5 4.6 4 4.9V15c0 3.3 2.7 6 6 6h2c3.3 0 6-2.7 6-6v-1.1c1.5-.3 4-1.3 4-4.9 0-5-3-6-4-6M5 12v.4c-2.1-.6-1.7-2.9-.7-3.7C4 8.3 3 9 3 8.6c0-.5 1.8-1.2 2.1-1.3-.3-.5-1.5-.3-1.5-.7 0-.3 1.2-.8 2.2-.6.5.1 1.1.3 1.6.7C6 8 5 9.8 5 12m3.5 3c-2 0-2-3 0-3s2 3 0 3m4 3h-1c-.7 0-1.2-.7-.9-1.3l.7-3c.1-.4.5-.6.8-.7.3 0 .6.2.8.7l.7 3c.1.6-.4 1.3-1.1 1.3m3-3c-2 0-2-3 0-3s2 3 0 3m4.2-6.4c1 .8 1.4 3.1-.7 3.7.1-2.2-.9-4.3-2.4-5.6.5-.4 1.1-.6 1.6-.7 1-.2 2.2.2 2.2.6s-1.2.2-1.5.6c.3.2 2.1.9 2.1 1.4 0 .4-.9-.3-1.3 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/kodi.svg�����������������������������������0000664�0000000�0000000�00000002067�14753064456�0025063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.03 1c-.21 0-.43.11-.62.31L8.88 3.84c-.22.22-.28.34-.5.54-.29.24-.42.53-.41.9C8 6.57 8 7.84 8 9.13v4.03c0 .1 0 .18.03.28.08.31.28.38.5.15 1.2-1.2 2.27-2.29 3.47-3.5 1.36-1.36 2.73-2.72 4.09-4.09.41-.4.41-.85 0-1.25-1.15-1.15-2.32-2.28-3.46-3.44-.2-.2-.39-.31-.6-.31m6.63 6.66c-.21 0-.41.09-.6.28-1.15 1.16-2.31 2.3-3.47 3.47-.39.39-.39.82 0 1.22 1.15 1.15 2.29 2.31 3.44 3.46.4.41.82.41 1.22 0 1.11-1.09 2.25-2.22 3.34-3.34.17-.17.34-.33.41-.56v-.31c-.07-.24-.24-.38-.41-.57-1.12-1.12-2.22-2.25-3.34-3.37-.19-.19-.39-.28-.59-.28m-13.88.43c-.13-.05-.2.05-.28.13-1.15 1.17-2.16 2.21-3.31 3.37-.26.27-.26.65 0 .91.62.63 1.25 1.25 1.87 1.88.54.54.94.95 1.5 1.5.16.15.3.12.38-.07.06-.1.06-.23.06-.34V8.63c0-.08 0-.18-.03-.25-.02-.13-.07-.24-.19-.29m7.31 6.16c-.2 0-.43.09-.62.28-1.15 1.16-2.29 2.34-3.44 3.5-.4.4-.4.82 0 1.22 1.11 1.12 2.23 2.22 3.35 3.34.16.17.33.34.56.41h.28c.22-.06.4-.21.56-.37 1.12-1.13 2.25-2.25 3.38-3.38.39-.4.34-.85-.03-1.25-1.16-1.16-2.29-2.31-3.44-3.47-.19-.19-.39-.28-.6-.28"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/kubernetes.svg�����������������������������0000664�0000000�0000000�00000006054�14753064456�0026304�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.95 13.5h-.23c-.18.11-.26.32-.18.5l.86 2.11c.83-.53 1.46-1.32 1.79-2.25l-2.23-.36zm-3.45.29a.415.415 0 0 0-.38-.29h-.08l-2.22.37c.33.92.96 1.7 1.79 2.23l.85-2.07V14c.04-.05.04-.14.04-.21m1.83.81a.38.38 0 0 0-.51-.15c-.07.05-.12.08-.15.15h-.01l-1.09 1.97c.78.26 1.62.31 2.43.12.14-.03.29-.07.43-.12l-1.09-1.97zm3.45-4.57L14.1 11.5l.01.03a.37.37 0 0 0-.04.53q.075.09.18.12l.01.01 2.17.62c.07-.97-.14-1.95-.65-2.78m-3.11.16c.01.21.18.37.39.36.08 0 .15-.02.21-.05h.01l1.83-1.31a4.45 4.45 0 0 0-2.57-1.24zm-1.94.31c.17.11.4.08.52-.09.05-.06.07-.13.08-.21h.01l.12-2.25c-.15.02-.3.05-.46.08-.8.18-1.54.58-2.12 1.16l1.84 1.31zm-.99 1.69c.2-.05.32-.26.26-.46 0-.08-.05-.14-.11-.19v-.01L8.21 10c-.52.86-.74 1.84-.63 2.82l2.16-.62zm1.64.66.62.3.62-.3.15-.67-.43-.53h-.69l-.43.53zm10.89 1.32L20.5 6.5c-.09-.42-.37-.76-.74-.94l-7.17-3.43c-.37-.17-.81-.17-1.19 0L4.24 5.56c-.37.18-.65.52-.74.94l-1.77 7.67c-.05.2-.05.4 0 .59.01.06.03.12.05.18.03.09.08.19.13.27.03.04.05.08.09.11l4.95 6.18c.02 0 .05.04.05.06.1.09.19.16.28.22.12.08.26.14.4.17.11.05.23.05.32.05h8.12c.07 0 .14-.03.2-.05.05-.01.1-.03.14-.04.04-.02.07-.03.11-.05.05-.02.1-.05.15-.08.12-.08.23-.18.33-.28l.15-.2 4.8-5.98c.1-.12.17-.25.22-.38.02-.06.04-.12.05-.18.05-.19.05-.4 0-.59m-7.43 2.99c.02.06.04.12.07.17-.04.08-.06.17-.03.26.12.24.23.46.38.68.08.11.16.23.24.34 0 .03.03.08.04.12.12.2.06.46-.15.59s-.47.05-.59-.15c-.01-.03-.02-.05-.03-.08-.02-.03-.04-.09-.06-.09-.05-.15-.09-.28-.12-.41-.09-.25-.17-.49-.3-.72a.38.38 0 0 0-.21-.14l-.08-.16c-1.29.48-2.7.48-3.97-.01l-.1.18c-.07.01-.14.04-.19.09-.14.24-.24.49-.33.77-.03.13-.07.26-.12.4-.02 0-.04.07-.06.1a.43.43 0 0 1-.81-.29c.01-.03.03-.05.04-.08.04-.03.04-.08.04-.11.09-.12.16-.23.24-.35.16-.21.29-.45.39-.69a.54.54 0 0 0-.03-.25l.07-.18a5.6 5.6 0 0 1-2.47-3.09l-.2.03a.4.4 0 0 0-.23-.09c-.27.05-.51.13-.77.22-.11.06-.24.11-.37.15-.03.01-.07.02-.13.03a.44.44 0 0 1-.54-.27c-.07-.23.04-.47.28-.55.02 0 .05-.01.08-.01v-.01h.01l.11-.02c.14-.04.28-.04.41-.04.26 0 .52-.06.77-.12.08-.05.14-.11.19-.19l.19-.05c-.21-1.36.1-2.73.86-3.87l-.14-.12c0-.09-.03-.18-.08-.25-.2-.17-.41-.32-.64-.45q-.18-.09-.36-.21c-.02-.02-.06-.05-.08-.07l-.01-.01c-.2-.16-.25-.42-.11-.63.09-.1.21-.15.35-.15q.165.015.3.12l.09.07c.1.09.19.2.28.3.18.19.37.37.58.52.08.04.17.05.26.03l.15.11c.75-.8 1.73-1.36 2.8-1.6.25-.06.52-.1.78-.12l.01-.18a.45.45 0 0 0 .14-.23c.01-.26-.01-.52-.05-.77-.03-.13-.05-.27-.06-.41V5.1c-.02-.24.15-.45.39-.48s.44.15.47.38v.22c-.01.14-.03.28-.06.41-.04.25-.06.51-.05.77.02.1.07.17.14.22l.01.19c1.36.12 2.62.73 3.56 1.72l.16-.12c.09.02.18.01.26-.03.21-.15.41-.33.58-.52.09-.1.18-.2.28-.3.03-.02.07-.06.1-.06.17-.18.44-.18.59 0 .19.16.18.43 0 .6 0 .02-.03.04-.06.06a2.495 2.495 0 0 1-.44.28c-.23.13-.45.28-.64.45-.06.07-.09.15-.08.24l-.16.14a5.44 5.44 0 0 1 .88 3.86l.19.05c.04.08.11.14.19.18.25.07.51.11.77.14h.41c.03.03.08.04.12.05.24.03.4.25.37.49-.05.23-.24.4-.48.37-.03-.01-.07-.01-.07-.02v-.01c-.06 0-.1-.01-.14-.02q-.195-.06-.36-.15c-.26-.1-.5-.17-.77-.21-.09 0-.17 0-.23.08-.07-.01-.13-.02-.19-.03-.41 1.31-1.31 2.41-2.47 3.11"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/label-multiple-outline.svg�����������������0000664�0000000�0000000�00000000377�14753064456�0030524�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 18h9l-2 2H4c-.5 0-1.03-.21-1.41-.59S2 18.5 2 18V8h2zM17.63 4.84C17.27 4.33 16.67 4 16 4H8c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h8c.67 0 1.27-.34 1.63-.85L22 10zM16 14H8V6h8l3.55 4Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/label-multiple.svg�������������������������0000664�0000000�0000000�00000000353�14753064456�0027041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 19h9l-2 2H4c-.5 0-1.03-.21-1.41-.59S2 19.5 2 19V9h2zM17.63 5.84C17.27 5.33 16.67 5 16 5H8c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h8c.67 0 1.27-.34 1.63-.85L22 11z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/label-off-outline.svg����������������������0000664�0000000�0000000�00000000415�14753064456�0027434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4.27 3.28 3 20 19.72 18.73 21l-2.1-2.1c-.2.06-.41.1-.63.1H5a2 2 0 0 1-2-2V7c0-.5.17-.93.46-1.27zM5 17h9.73L5 7.27zm14.55-5L16 7H9.82L7.83 5H16c.67 0 1.27.33 1.63.84L22 12l-3 4.2-1.41-1.44z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/label-off.svg������������������������������0000664�0000000�0000000�00000000351�14753064456�0025756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4.27 3.28 3 20 19.72 18.73 21l-2.1-2.1c-.2.06-.41.1-.63.1H5a2 2 0 0 1-2-2V7c0-.5.17-.93.46-1.27zm15.63 1.57L22 12l-3 4.2L7.83 5H16c.67 0 1.27.33 1.63.84"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/label-outline.svg��������������������������0000664�0000000�0000000�00000000310�14753064456�0026656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 17H5V7h11l3.55 5m-1.92-6.16C17.27 5.33 16.67 5 16 5H5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h11c.67 0 1.27-.34 1.63-.85L22 12z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/label-percent-outline.svg������������������0000664�0000000�0000000�00000000632�14753064456�0030323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 17H5V7h11l3.55 5m-1.92-6.16C17.27 5.33 16.67 5 16 5H5c-1.1 0-2 .9-2 2v10a2 2 0 0 0 2 2h11c.67 0 1.27-.34 1.63-.85L22 12zM13.8 8 15 9.2 8.2 16 7 14.8m1.45-6.77c.78 0 1.42.64 1.42 1.42s-.64 1.42-1.42 1.42-1.42-.64-1.42-1.42.64-1.42 1.42-1.42m5.1 5.1c.78 0 1.42.64 1.42 1.42s-.64 1.42-1.42 1.42-1.42-.64-1.42-1.42.64-1.42 1.42-1.42"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/label-percent.svg��������������������������0000664�0000000�0000000�00000000611�14753064456�0026643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.63 5.84C17.27 5.33 16.67 5 16 5H5c-1.1 0-2 .9-2 2v10a2 2 0 0 0 2 2h11c.67 0 1.27-.34 1.63-.85L22 12zM8.45 8.03c.78 0 1.42.64 1.42 1.42s-.64 1.42-1.42 1.42-1.42-.64-1.42-1.42.64-1.42 1.42-1.42m5.1 7.94c-.78 0-1.42-.64-1.42-1.42s.64-1.42 1.42-1.42 1.42.64 1.42 1.42-.64 1.42-1.42 1.42M8.2 16 7 14.8 13.8 8 15 9.2z"/></svg>�����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/label-variant-outline.svg������������������0000664�0000000�0000000�00000000300�14753064456�0030317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 17H15l3.5-5L15 7H6.5l3.5 5zm8.5 2H3l4.5-7L3 5h12c.69 0 1.23.3 1.64.86L21 12l-4.36 6.14c-.41.56-.95.86-1.64.86"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/label-variant.svg��������������������������0000664�0000000�0000000�00000000245�14753064456�0026652�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3.5 19 4.84-7L3.5 5h11c.67 0 1.22.3 1.63.86L20.5 12l-4.37 6.14c-.41.56-.96.86-1.63.86z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/label.svg����������������������������������0000664�0000000�0000000�00000000264�14753064456�0025211�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.63 5.84C17.27 5.33 16.67 5 16 5H5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h11c.67 0 1.27-.34 1.63-.85L22 12z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ladder.svg���������������������������������0000664�0000000�0000000�00000000223�14753064456�0025360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 1v2h-4V1H8v21h2v-2h4v2h2V1zm0 4v3h-4V5zm0 5v3h-4v-3zm-4 8v-3h4v3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ladybug.svg��������������������������������0000664�0000000�0000000�00000000632�14753064456�0025560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 5c.74 0 1.47.1 2.15.29l1.63-2.83c.28-.46.89-.64 1.37-.36.48.27.64.9.35 1.36L16 6.07A8.07 8.07 0 0 1 18.93 9H5.07A8.07 8.07 0 0 1 8 6.07L6.5 3.46a.98.98 0 0 1 .35-1.36c.48-.28 1.09-.1 1.37.36l1.63 2.83C10.53 5.1 11.26 5 12 5m8 8a8 8 0 0 1-7.25 7.97V10.5h6.85c.26.79.4 1.63.4 2.5M4 13c0-.87.14-1.71.4-2.5h6.85v10.47A8 8 0 0 1 4 13"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lambda.svg���������������������������������0000664�0000000�0000000�00000000272�14753064456�0025351�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6 20 4.16-12.09L9.34 6H8V4h2c.42 0 .78.26.93.63L16.66 18H18v2h-2c-.43 0-.79-.27-.93-.64l-3.74-8.71L8.12 20z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lamp-outline.svg���������������������������0000664�0000000�0000000�00000000220�14753064456�0026530�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.56 4 2.67 8H6.78l2.66-8zM16 2H8L4 14h16zm-5 13h2v5h5v2H6v-2h5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lamp.svg�����������������������������������0000664�0000000�0000000�00000000161�14753064456�0025057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 2h8l4 12H4zm3 13h2v5h5v2H6v-2h5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lamps-outline.svg��������������������������0000664�0000000�0000000�00000000313�14753064456�0026716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.5 4 .85 3h-4.7l.85-3zM10 2H4L2 9h10zm-4 8h2v10h3v2H3v-2h3zm12.5 0 .85 3h-4.7l.85-3zM20 8h-6l-2 7h10zm-4 8h2v4h3v2h-8v-2h3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lamps.svg����������������������������������0000664�0000000�0000000�00000000227�14753064456�0025245�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10 2 2 7H2l2-7m2 8h2v10h3v2H3v-2h3zm14-2 2 7H12l2-7m2 8h2v4h3v2h-8v-2h3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lan-check.svg������������������������������0000664�0000000�0000000�00000000501�14753064456�0025751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 1c-1.11 0-2 .89-2 2v4c0 1.11.89 2 2 2H1v2h12V9h-3c1.11 0 2-.89 2-2V3c0-1.11-.89-2-2-2zm0 2h6v4H4zm10 10c-1.11 0-2 .89-2 2v4c0 1.11.89 2 2 2h-3v2h12v-2h-3c1.11 0 2-.89 2-2v-4c0-1.11-.89-2-2-2zm0 2h6v4h-6zm-8.5 5.5 5-5L9 14l-3.5 3.5-2-2L2 17z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lan-connect.svg����������������������������0000664�0000000�0000000�00000000455�14753064456�0026335�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 1c-1.11 0-2 .89-2 2v4c0 1.11.89 2 2 2H1v2h12V9h-3c1.11 0 2-.89 2-2V3c0-1.11-.89-2-2-2zm0 2h6v4H4zM3 13v7h7v-2H5v-5zm11 0c-1.11 0-2 .89-2 2v4c0 1.11.89 2 2 2h-3v2h12v-2h-3c1.11 0 2-.89 2-2v-4c0-1.11-.89-2-2-2zm0 2h6v4h-6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lan-disconnect.svg�������������������������0000664�0000000�0000000�00000000620�14753064456�0027027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 1c-1.11 0-2 .89-2 2v4c0 1.11.89 2 2 2H1v2h12V9h-3c1.11 0 2-.89 2-2V3c0-1.11-.89-2-2-2zm0 2h6v4H4zm10 10c-1.11 0-2 .89-2 2v4c0 1.11.89 2 2 2h-3v2h12v-2h-3c1.11 0 2-.89 2-2v-4c0-1.11-.89-2-2-2zm-10.12.46-1.42 1.42L4.59 17l-2.13 2.12 1.42 1.42L6 18.41l2.12 2.13 1.42-1.42L7.41 17l2.13-2.12-1.42-1.42L6 15.59zM14 15h6v4h-6z"/></svg>����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lan-pending.svg����������������������������0000664�0000000�0000000�00000000533�14753064456�0026325�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 1c-1.11 0-2 .89-2 2v4c0 1.11.89 2 2 2H1v2h12V9h-3c1.11 0 2-.89 2-2V3c0-1.11-.89-2-2-2zm0 2h6v4H4zm-1 9v2h2v-2zm11 1c-1.11 0-2 .89-2 2v4c0 1.11.89 2 2 2h-3v2h12v-2h-3c1.11 0 2-.89 2-2v-4c0-1.11-.89-2-2-2zM3 15v2h2v-2zm11 0h6v4h-6zM3 18v2h2v-2zm3 0v2h2v-2zm3 0v2h2v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lan.svg������������������������������������0000664�0000000�0000000�00000000603�14753064456�0024701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2c-1.11 0-2 .89-2 2v3c0 1.11.89 2 2 2h1v2H2v2h4v2H5c-1.11 0-2 .89-2 2v3c0 1.11.89 2 2 2h4c1.11 0 2-.89 2-2v-3c0-1.11-.89-2-2-2H8v-2h8v2h-1c-1.11 0-2 .89-2 2v3c0 1.11.89 2 2 2h4c1.11 0 2-.89 2-2v-3c0-1.11-.89-2-2-2h-1v-2h4v-2h-9V9h1c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm0 2h4v3h-4zM5 17h4v3H5zm10 0h4v3h-4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/land-fields.svg����������������������������0000664�0000000�0000000�00000000722�14753064456�0026313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-4.7 2C14.5 5.1 14 6.5 14 8h-4c0-1.6.8-3.1 2-4zM14 14h-4c0-1.5-.5-2.9-1.3-4H12c1.2.9 2 2.4 2 4M4 4h5.3C8.5 5.1 8 6.5 8 8H4zm0 6h2c1.2.9 2 2.3 2 4H4zm0 10v-4h5.3C8.5 17.1 8 18.5 8 20zm6 0c0-1.6.8-3.1 2-4h3.3c-.8 1.1-1.3 2.5-1.3 4zm10 0h-4c0-1.6.8-3.1 2-4h2zm0-6h-4c0-1.5-.5-2.9-1.3-4H20zm0-6h-4c0-1.6.8-3.1 2-4h2z"/></svg>����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/land-plots-circle-variant.svg��������������0000664�0000000�0000000�00000000364�14753064456�0031111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 7c0 2.8-2.2 5-5 5s-5-2.2-5-5 2.2-5 5-5 5 2.2 5 5M4 4h4v10H4zm0 16v-4h4v4zm16 0H10v-4h10z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/land-plots-circle.svg����������������������0000664�0000000�0000000�00000000407�14753064456�0027445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-7 5.5C13 5.6 14.6 4 16.5 4S20 5.6 20 7.5 18.4 11 16.5 11 13 9.4 13 7.5M4 4h7v7H4zm0 16v-7h7v7zm16 0h-7v-7h7z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/land-plots-marker.svg����������������������0000664�0000000�0000000�00000000754�14753064456�0027472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2h16c1.1 0 2 .9 2 2v6H10v10h4.55q.27.45.54.84c.29.43.57.82.83 1.16H4c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2m4 2H4v10h4zM4 16v4h4v-4zm6-8h10V4H10zm8.5 14s-.58-.65-1.27-1.59c-.09-.13-.19-.27-.29-.41C16 18.66 15 16.89 15 15.5c0-1.9 1.6-3.5 3.5-3.5.53 0 1.04.13 1.5.35 1.17.57 2 1.78 2 3.15 0 1.54-1.23 3.54-2.23 4.91-.69.94-1.27 1.59-1.27 1.59m-1.2-6.4c0 .6.5 1.2 1.2 1.2s1.3-.6 1.2-1.2c0-.6-.6-1.2-1.2-1.2s-1.2.5-1.2 1.2"/></svg>��������������������mkdocs-material-9.6.4/material/templates/.icons/material/land-plots.svg�����������������������������0000664�0000000�0000000�00000000317�14753064456�0026206�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2M4 4h4v10H4zm0 16v-4h4v4zm16 0H10V10h10zm0-12H10V4h10z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/land-rows-horizontal.svg�������������������0000664�0000000�0000000�00000000334�14753064456�0030225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 20V4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2M4 6.5V4h16v2.5zM4 11V8.5h16V11zm0 4.5V13h16v2.5zM4 20v-2.5h16V20z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/land-rows-vertical.svg���������������������0000664�0000000�0000000�00000000332�14753064456�0027643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2M6.5 20H4V4h2.5zm4.5 0H8.5V4H11zm4.5 0H13V4h2.5zm4.5 0h-2.5V4H20z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/landslide-outline.svg����������������������0000664�0000000�0000000�00000000546�14753064456�0027551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 12 8 8H2v14h20l-6-8zm1.53 2.77L6 16.95l-2-.67v-1.89l2 .67 3.95-1.32zM7 10l1.57 2.09-2.57.86-2-.67V10zM4 20v-1.61l2 .67 9.03-3.01L18 20zM17 6V1l-5-1-3 2v4l3 2zm-6-2.93 1.42-.95 2.58.52v2.01l-2.77 1.11L11 4.93zM18.5 7 16 9v3l2.5 2 4.5-2V8zm2.5 3.7-2.2.98-.8-.64V9.96l1-.8 2 .44z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/landslide.svg������������������������������0000664�0000000�0000000�00000000362�14753064456�0026070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.47 13.79-2.58-1.03L6 15.05 2 13.5v2.11l4 1.34zm-4.9-2.37L8 8H2v3.61l4 1.34zM6 19.05l-4-1.33V22h20l-4.97-6.62zM17 6V1l-5-1-3 2v4l3 2zm1.5 1L16 9v3l2.5 2 4.5-2V8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/language-c.svg�����������������������������0000664�0000000�0000000�00000000712�14753064456�0026133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.45 15.97.42 2.44c-.26.14-.68.27-1.24.39-.57.13-1.24.2-2.01.2-2.21-.04-3.87-.7-4.98-1.96-1.14-1.27-1.68-2.88-1.68-4.83C6 9.9 6.68 8.13 8 6.89 9.28 5.64 10.92 5 12.9 5c.75 0 1.4.07 1.94.19s.94.25 1.2.4l-.6 2.49-1.04-.34c-.4-.1-.87-.15-1.4-.15-1.15-.01-2.11.36-2.86 1.1-.76.73-1.14 1.85-1.18 3.34.01 1.36.37 2.42 1.08 3.2.71.77 1.7 1.17 2.99 1.18l1.33-.12c.43-.08.79-.19 1.09-.32"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/language-cpp.svg���������������������������0000664�0000000�0000000�00000000775�14753064456�0026504�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.5 15.97.41 2.44c-.26.14-.68.27-1.24.39-.57.13-1.24.2-2.01.2-2.21-.04-3.87-.7-4.98-1.96Q1 15.135 1 12.21c.05-2.31.72-4.08 2-5.32C4.32 5.64 5.96 5 7.94 5c.75 0 1.4.07 1.94.19s.94.25 1.2.4l-.58 2.49-1.06-.34c-.4-.1-.86-.15-1.39-.15-1.16-.01-2.12.36-2.87 1.1-.76.73-1.15 1.85-1.18 3.34 0 1.36.37 2.42 1.08 3.2.71.77 1.71 1.17 2.99 1.18l1.33-.12c.43-.08.79-.19 1.1-.32M11 11h2V9h2v2h2v2h-2v2h-2v-2h-2zm7 0h2V9h2v2h2v2h-2v2h-2v-2h-2z"/></svg>���mkdocs-material-9.6.4/material/templates/.icons/material/language-csharp.svg������������������������0000664�0000000�0000000�00000001140�14753064456�0027165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.5 15.97.41 2.44c-.26.14-.68.27-1.24.39-.57.13-1.24.2-2.01.2-2.21-.04-3.87-.7-4.98-1.96Q2 15.135 2 12.21c.05-2.31.72-4.08 2-5.32C5.32 5.64 6.96 5 8.94 5c.75 0 1.4.07 1.94.19s.94.25 1.2.4l-.58 2.49-1.06-.34c-.4-.1-.86-.15-1.39-.15-1.16-.01-2.12.36-2.87 1.1-.76.73-1.15 1.85-1.18 3.34 0 1.36.37 2.42 1.08 3.2.71.77 1.71 1.17 2.99 1.18l1.33-.12c.43-.08.79-.19 1.1-.32M13.89 19l.61-4H13l.34-2h1.5l.32-2h-1.5L14 9h1.5l.61-4h2l-.61 4h1l.61-4h2l-.61 4H22l-.34 2h-1.5l-.32 2h1.5L21 15h-1.5l-.61 4h-2l.61-4h-1l-.61 4zm2.95-6h1l.32-2h-1z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/language-css3.svg��������������������������0000664�0000000�0000000�00000000331�14753064456�0026561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5 3-.65 3.34h13.59L17.5 8.5H3.92l-.66 3.33h13.59l-.76 3.81-5.48 1.81-4.75-1.81.33-1.64H2.85l-.79 4 7.85 3 9.05-3 1.2-6.03.24-1.21L21.94 3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/language-fortran.svg�����������������������0000664�0000000�0000000�00000000346�14753064456�0027367�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 4v2h1c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1H5v2h9v-2h-2c-.55 0-1-.45-1-1v-4h2c.55 0 1 .45 1 1v2h2V8h-2v2c0 .55-.45 1-1 1h-2V6h5c1.11 0 2 1.34 2 3v1h2V4Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/language-go.svg����������������������������0000664�0000000�0000000�00000002024�14753064456�0026314�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.64 10.33-.02-.06.22-.27.12-.08H6.8l.03.08-.18.26-.11.06zm-1.61.98L1 11.26l.22-.29.12-.06h4.9l.05.09-.08.24-.1.07zm2.6.99-.04-.06.16-.28.1-.06H6l.07.07-.02.25-.08.08zm11.15-2.16-1.78.47c-.19.04-.2.05-.34-.11-.16-.18-.27-.29-.5-.4-.66-.34-1.33-.24-1.94.15-.72.48-1.11 1.17-1.1 2.05.01.86.6 1.57 1.45 1.7.73.09 1.34-.17 1.83-.72l.29-.39h-2.07c-.22 0-.27-.14-.2-.32l.55-1.18c.03-.06.11-.17.27-.17h3.44c.15-.5.41-.96.75-1.41.78-1.03 1.73-1.57 3-1.81 1.07-.18 2.13-.07 3.07.57.84.58 1.37 1.36 1.5 2.39.19 1.45-.24 2.63-1.24 3.65-.71.72-1.58 1.17-2.57 1.39l-.86.08c-.98-.02-1.87-.3-2.62-.95-.52-.45-.88-.99-1.06-1.63-.15.24-.27.47-.44.7-.77 1.02-1.78 1.65-3.06 1.8-1.05.16-2.03-.05-2.89-.69-.79-.6-1.26-1.4-1.36-2.39-.14-1.17.2-2.22.91-3.14.76-1 1.77-1.63 3.01-1.86 1-.18 1.97-.06 2.84.52.57.38.97.9 1.24 1.52q.06.135-.12.18m6.11 1.6-.03-.36c-.19-1.06-1.17-1.66-2.19-1.43-1.01.22-1.67.85-1.88 1.86-.19.84.21 1.69.98 2.03.59.26 1.19.22 1.76-.06.84-.43 1.31-1.12 1.36-2.04"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/language-haskell.svg�����������������������0000664�0000000�0000000�00000000361�14753064456�0027334�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.08 19 4.67-7-4.67-7h3.5l4.67 7-4.67 7zm4.67 0 4.67-7-4.67-7h3.5l9.34 14h-3.5l-2.92-4.37L10.25 19zm11.28-4.08-1.53-2.34h5.42v2.34zm-2.33-3.5-1.56-2.34h7.78v2.34z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/language-html5.svg�������������������������0000664�0000000�0000000�00000000347�14753064456�0026746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 17.56 4.07-1.13.55-6.1H9.38L9.2 8.3h7.6l.2-1.99H7l.56 6.01h6.89l-.23 2.58-2.22.6-2.22-.6-.14-1.66h-2l.29 3.19zM4.07 3h15.86L18.5 19.2 12 21l-6.5-1.8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/language-java.svg��������������������������0000664�0000000�0000000�00000002017�14753064456�0026632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 6.08s-6.84 1.71-3.56 5.48c.97 1.11-.25 2.11-.25 2.11s2.45-1.25 1.31-2.85c-1.06-1.47-1.86-2.2 2.5-4.74m-4.47 1.2C16.08 4.08 14 2 14 2c.84 3.3-2.96 4.3-4.33 6.36-.94 1.4.46 2.91 2.33 4.64-.71-1.7-3.22-3.16.03-5.72M9.37 17.47c-3.08.86 1.88 2.63 5.79.96-.38-.15-.75-.33-1.1-.54-1.36.31-2.76.37-4.14.18-1.31-.16-.55-.6-.55-.6m5.32-1.68c-1.75.38-3.56.47-5.34.26-1.31-.13-.45-.77-.45-.77-3.4 1.13 1.88 2.4 6.6 1.02-.29-.11-.57-.3-.81-.51m3.42 3.3s.57.47-.61.83c-2.28.68-9.43.89-11.41.03-.71-.31.63-.74 1.05-.83.23-.06.46-.08.69-.08-.79-.54-5.13 1.1-2.19 1.56 7.97 1.3 14.54-.6 12.47-1.51m-2.74-4.86c.29-.19.6-.35.92-.49 0 0-1.51.26-3.02.4-1.6.16-3.21.18-4.81.06-2.35-.31 1.29-1.2 1.29-1.2-1.1 0-2.18.26-3.16.75-2.05 1 5.1 1.45 8.78.48m.9 2.42c-.02.04-.04.07-.08.1 5.01-1.31 3.17-4.64.77-3.81-.13.06-.24.14-.31.25.14-.05.28-.09.43-.12 1.2-.24 2.92 1.63-.81 3.58m.13 4.61c-3.01.52-6.09.56-9.12.14 0 0 .46.38 2.81.53 3.6.23 9.13-.13 9.26-1.83.03.01-.23.65-2.95 1.16"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/language-javascript.svg��������������������0000664�0000000�0000000�00000001032�14753064456�0030053�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h18v18H3zm4.73 15.04c.4.85 1.19 1.55 2.54 1.55 1.5 0 2.53-.8 2.53-2.55v-5.78h-1.7V17c0 .86-.35 1.08-.9 1.08-.58 0-.82-.4-1.09-.87zm5.98-.18c.5.98 1.51 1.73 3.09 1.73 1.6 0 2.8-.83 2.8-2.36 0-1.41-.81-2.04-2.25-2.66l-.42-.18c-.73-.31-1.04-.52-1.04-1.02 0-.41.31-.73.81-.73.48 0 .8.21 1.09.73l1.31-.87c-.55-.96-1.33-1.33-2.4-1.33-1.51 0-2.48.96-2.48 2.23 0 1.38.81 2.03 2.03 2.55l.42.18c.78.34 1.24.55 1.24 1.13 0 .48-.45.83-1.15.83-.83 0-1.31-.43-1.67-1.03z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/language-kotlin.svg������������������������0000664�0000000�0000000�00000000144�14753064456�0027210�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2h20L12 12l10 10H2Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/language-lua.svg���������������������������0000664�0000000�0000000�00000000537�14753064456�0026477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 5A8.5 8.5 0 0 0 2 13.5a8.5 8.5 0 0 0 8.5 8.5 8.5 8.5 0 0 0 8.5-8.5A8.5 8.5 0 0 0 10.5 5m3 8a2.5 2.5 0 0 1-2.5-2.5A2.5 2.5 0 0 1 13.5 8a2.5 2.5 0 0 1 2.5 2.5 2.5 2.5 0 0 1-2.5 2.5m6-11A2.5 2.5 0 0 0 17 4.5 2.5 2.5 0 0 0 19.5 7 2.5 2.5 0 0 0 22 4.5 2.5 2.5 0 0 0 19.5 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/language-markdown-outline.svg��������������0000664�0000000�0000000�00000000672�14753064456�0031215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.56 18H3.44C2.65 18 2 17.37 2 16.59V7.41C2 6.63 2.65 6 3.44 6h17.12c.79 0 1.44.63 1.44 1.41v9.18c0 .78-.65 1.41-1.44 1.41M3.44 6.94c-.26 0-.48.21-.48.47v9.19c0 .25.22.46.48.46h17.12c.26 0 .48-.21.48-.46V7.41c0-.26-.22-.47-.48-.47zm1.45 8.25V8.81h1.92l1.92 2.35 1.92-2.35h1.93v6.38h-1.93v-3.66l-1.92 2.35-1.92-2.35v3.66zm12.01 0-2.9-3.1h1.94V8.81h1.92v3.28h1.93z"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/language-markdown.svg����������������������0000664�0000000�0000000�00000000522�14753064456�0027532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.56 18H3.44C2.65 18 2 17.37 2 16.59V7.41C2 6.63 2.65 6 3.44 6h17.12c.79 0 1.44.63 1.44 1.41v9.18c0 .78-.65 1.41-1.44 1.41M6.81 15.19v-3.66l1.92 2.35 1.92-2.35v3.66h1.93V8.81h-1.93l-1.92 2.35-1.92-2.35H4.89v6.38zM19.69 12h-1.92V8.81h-1.92V12h-1.93l2.89 3.28z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/language-php.svg���������������������������0000664�0000000�0000000�00000001541�14753064456�0026501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18.08c-6.63 0-12-2.72-12-6.08s5.37-6.08 12-6.08S24 8.64 24 12s-5.37 6.08-12 6.08m-5.19-7.95c.54 0 .91.1 1.09.31.18.2.22.56.13 1.03-.1.53-.29.87-.58 1.09q-.42.33-1.29.33h-.87l.53-2.76zm-3.5 5.55h1.44l.34-1.75h1.23c.54 0 .98-.06 1.33-.17.35-.12.67-.31.96-.58.24-.22.43-.46.58-.73.15-.26.26-.56.31-.88.16-.78.05-1.39-.33-1.82-.39-.44-.99-.65-1.82-.65H4.59zm7.25-8.33-1.28 6.58h1.42l.74-3.77h1.14c.36 0 .6.06.71.18s.13.34.07.66l-.57 2.93h1.45l.59-3.07c.13-.62.03-1.07-.27-1.36-.3-.27-.85-.4-1.65-.4h-1.27L12 7.35zM18 10.13c.55 0 .91.1 1.09.31.18.2.22.56.13 1.03-.1.53-.29.87-.57 1.09-.29.22-.72.33-1.3.33h-.85l.5-2.76zm-3.5 5.55h1.44l.34-1.75h1.22c.55 0 1-.06 1.35-.17.35-.12.65-.31.95-.58.24-.22.44-.46.58-.73.15-.26.26-.56.32-.88.15-.78.04-1.39-.34-1.82-.36-.44-.99-.65-1.82-.65h-2.75z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/language-python.svg������������������������0000664�0000000�0000000�00000001246�14753064456�0027235�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.14 7.5A2.86 2.86 0 0 1 22 10.36v3.78A2.86 2.86 0 0 1 19.14 17H12c0 .39.32.96.71.96H17v1.68a2.86 2.86 0 0 1-2.86 2.86H9.86A2.86 2.86 0 0 1 7 19.64v-3.75a2.85 2.85 0 0 1 2.86-2.85h5.25a2.85 2.85 0 0 0 2.85-2.86V7.5zm-4.28 11.79c-.4 0-.72.3-.72.89s.32.71.72.71a.71.71 0 0 0 .71-.71c0-.59-.32-.89-.71-.89m-10-1.79A2.86 2.86 0 0 1 2 14.64v-3.78A2.86 2.86 0 0 1 4.86 8H12c0-.39-.32-.96-.71-.96H7V5.36A2.86 2.86 0 0 1 9.86 2.5h4.28A2.86 2.86 0 0 1 17 5.36v3.75a2.85 2.85 0 0 1-2.86 2.85H8.89a2.85 2.85 0 0 0-2.85 2.86v2.68zM9.14 5.71c.4 0 .72-.3.72-.89s-.32-.71-.72-.71c-.39 0-.71.12-.71.71s.32.89.71.89"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/language-r.svg�����������������������������0000664�0000000�0000000�00000001111�14753064456�0026144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4.29c-5.5 0-10 3-10 6.71 0 3.28 3.56 6 8.24 6.58v2.13h3.41v-2.12c.85-.09 1.64-.25 2.39-.48l1.38 2.6h3.86l-2.32-3.91C20.83 14.58 22 12.87 22 11c0-3.71-4.5-6.71-10-6.71m1.53 2.62c4.2 0 7.3 1.4 7.3 4.59 0 1.71-.92 2.91-2.42 3.65-.09-.05-.17-.1-.22-.15-.36-.16-.96-.34-.96-.34s2.98-.22 2.98-3.19-3.12-3.02-3.12-3.02h-6.85v7.16c-2.55-.74-4.31-2.31-4.31-4.11 0-2.54 3.4-4.59 7.6-4.59m.15 3.98h2.07s.95-.05.95.94c0 .97-.95.97-.95.97h-2.07zm-.03 4.41h.92c.18 0 .27.05.43.2.13.1.27.29.39.46-.55.07-1.13.1-1.74.1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/language-ruby-on-rails.svg�����������������0000664�0000000�0000000�00000001252�14753064456�0030414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.8 16.7s1.8-.2 1.8-2.4-2.1-2.5-2.1-2.5h-3.8V19h1.9v-1.7l1.7 1.7H22zm-.8-1.4h-1.5v-1.6H19s.4.2.4.8c.1.6-.4.8-.4.8m2.3-7.1v.2C13.2 6.1 10 13.2 10.6 18.7H4.3c.7-5.4 7.5-16.1 17-10.5m-.8-1.3c-.7-.3-1.4-.6-2.1-.8l.1-1.3 2.1.8zm-2 1.8q1.05 0 2.1.3l-.1 1.2-1.8-.2zm-4.6-2.9-.4-1.2 2.1-.2.4 1.3c-.2 0-1.9.1-2.1.1m1.3 3.7c.4-.2 1.1-.5 2-.7l.4 1.2-1.8.7zm-3.4-3c-.6.3-1.2.6-1.8 1l-.8-1.3 1.8-1zm2.5 3.6.8 1.2-1.1 1.3-1.1-1c.3-.6.8-1.1 1.4-1.5M11.6 15c.1-.8.3-1.5.6-2.3l1.2 1-.3 1.9zM7.9 9.3c-.5.5-1 1.1-1.4 1.6L5.2 9.8l1.5-1.6zm-3.1 4.4c-.4.8-.7 1.6-1 2.3L2 15.3l.9-2.3zm6.7 2.6 1.8.6.3 2-2-.5c0-.2-.1-.9-.1-2.1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/language-ruby.svg��������������������������0000664�0000000�0000000�00000000621�14753064456�0026671�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.8 2.07c2.52.43 3.24 2.16 3.2 3.97V6l-1.14 14.93-14.78 1.01h.01c-1.23-.05-3.96-.17-4.09-3.99l1.37-2.5 2.77 6.46 2.36-7.62-.05.01.02-.02 7.71 2.46-1.99-7.78 7.35-.46-5.79-4.74 3.05-1.7zM2 17.91v.02zM6.28 6.23c2.96-2.95 6.79-4.69 8.26-3.2 1.46 1.47-.08 5.09-3.04 8.03-3 2.94-6.77 4.78-8.24 3.3-1.47-1.49.04-5.19 3.01-8.13z"/></svg>���������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/language-rust.svg��������������������������0000664�0000000�0000000�00000004443�14753064456�0026713�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.9 11.7-.9-.5V11l.7-.7c.1-.1.1-.3 0-.4l-.1-.1-.9-.3c0-.1 0-.2-.1-.2l.6-.8c.1-.1.1-.3-.1-.4 0 0-.1 0-.1-.1l-1-.2c0-.1-.1-.1-.1-.2l.4-.9v-.3c-.1-.1-.2-.1-.3-.1h-1s0-.1-.1-.1l.2-1c0-.2-.1-.3-.2-.3h-.1l-1 .2c0-.1-.1-.1-.2-.2v-1q0-.3-.3-.3h-.1l-.9.4h-.1L16 3c0-.2-.2-.3-.3-.2h-.1l-.8.6c-.1 0-.2 0-.2-.1l-.3-.9c-.1-.1-.2-.2-.4-.2 0 0-.1 0-.1.1L13 3h-.2l-.5-.8c-.1-.2-.3-.2-.5-.2l-.1.1-.5.9H11l-.7-.7c-.1-.1-.3-.1-.4 0l-.1.1-.3.9c-.1 0-.2 0-.2.1l-.8-.6c-.2-.1-.4-.1-.5.1V3l-.2 1s-.1 0-.2.1l-.9-.4c-.1-.1-.3 0-.4.1v1.1c0 .1-.1.1-.1.2l-1-.2c-.2-.1-.3 0-.3.2v.1l.2 1c-.1 0-.1.1-.2.1h-1q-.3 0-.3.3v.1l.4.9v.2L3 8c-.2 0-.3.2-.3.3v.1l.6.8c0 .1 0 .2-.1.2l-.8.4c-.1.1-.2.2-.2.4 0 0 0 .1.1.1l.7.7v.2l-.8.5c-.2.1-.2.3-.2.4l.1.1.9.6v.2l-.7.7c-.1.1-.1.3 0 .4l.1.1.9.3c0 .1 0 .2.1.2l-.6.8c-.1.1-.1.3.1.4 0 0 .1 0 .1.1l1 .2c0 .1.1.1.1.2l-.4.9c-.1.1 0 .3.1.4h1.1c.1 0 .1.1.2.1l-.2 1c0 .2.1.3.2.3h.1l1-.2c0 .1.1.1.2.2v1q0 .3.3.3h.1l.9-.4h.1l.2 1c0 .2.2.3.3.2h.1l.8-.6c.1 0 .2 0 .2.1l.3.9c.1.1.2.2.4.2 0 0 .1 0 .1-.1l.8-.7h.2l.5.8c.1.1.3.2.4.1l.1-.1.5-.8h.2l.7.7c.1.1.3.1.4 0l.1-.1.3-.9c.1 0 .2 0 .2-.1l.8.6c.1.1.3.1.4-.1 0 0 0-.1.1-.1l.2-1c.1 0 .1-.1.2-.1l.9.4c.1.1.3 0 .4-.1v-1.1l.2-.2 1 .2c.2 0 .3-.1.3-.2v-.1l-.2-1 .2-.2h1q.3 0 .3-.3v-.1l-.4-.9c0-.1.1-.1.1-.2l1-.2c.2 0 .3-.2.2-.3v-.1l-.6-.8.1-.2.9-.3c.1-.1.2-.2.2-.4 0 0 0-.1-.1-.1L21 13v-.2l.8-.5c.2-.1.2-.3.1-.6q0 .15 0 0m-5.7 7c-.3-.1-.5-.4-.5-.7.1-.3.4-.5.7-.5.3.1.5.4.5.7 0 .4-.3.6-.7.5m-.2-1.9c-.3-.1-.6.1-.6.4l-.4 1.4q-1.35.6-3 .6c-1.1 0-2.1-.2-3.1-.7l-.3-1.4c-.1-.3-.3-.5-.6-.4l-1.2.3c-.2-.2-.4-.5-.6-.7h6c.1 0 .1 0 .1-.1v-2.1c0-.1 0-.1-.1-.1h-1.7v-1.3h1.9c.2 0 .9 0 1.2 1 .1.3.2 1.3.4 1.6.1.3.6 1 1.1 1h3.1c-.2.3-.4.5-.7.8zm-8.3 1.9c-.3.1-.6-.1-.7-.5-.1-.3.1-.6.5-.7s.6.1.7.5c0 .3-.2.6-.5.7M5.4 9.5c.1.3 0 .7-.3.8s-.7 0-.8-.3 0-.7.3-.8c.4-.1.7 0 .8.3m-.7 1.6 1.3-.5c.3-.1.4-.4.3-.7L6 9.3h1V14H5c-.3-1-.4-1.9-.3-2.9m5.6-.4V9.3h2.5c.1 0 .9.1.9.7 0 .5-.6.7-1.1.7zm9 1.2v.5h-.8c-.1 0-.1 0-.1.1v.3c0 .8-.5 1-.9 1s-.8-.2-.9-.4c-.2-1.3-.6-1.5-1.2-2 .7-.5 1.5-1.2 1.5-2.1 0-1-.7-1.6-1.1-1.9-.7-.4-1.4-.5-1.6-.5H6.6c1.1-1.2 2.5-2 4.1-2.3l.9 1c.2.2.5.2.8 0l1-1c2.1.4 3.9 1.7 5 3.6l-.7 1.6c-.1.3 0 .6.3.7l1.3.6zm-7.7-8c.2-.2.6-.2.8 0s.2.6 0 .8q-.45.45-.9 0c-.2-.2-.1-.5.1-.8m6.9 5.6c.1-.3.5-.4.8-.3s.4.5.3.8-.5.4-.8.3-.4-.5-.3-.8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/language-swift.svg�������������������������0000664�0000000�0000000�00000000742�14753064456�0027050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.09 19.72c-2.36 1.36-5.59 1.5-8.86.1A13.8 13.8 0 0 1 2 14.5c.67.55 1.46 1 2.3 1.4 3.37 1.57 6.73 1.46 9.1 0-3.37-2.59-6.24-5.96-8.37-8.71-.45-.45-.78-1.01-1.12-1.51 8.28 6.05 7.92 7.59 2.41-1.01 4.89 4.94 9.43 7.74 9.43 7.74.16.09.25.16.36.22.1-.25.19-.51.26-.78.79-2.85-.11-6.12-2.08-8.81 4.55 2.75 7.25 7.91 6.12 12.24-.03.11-.06.22-.05.39 2.24 2.83 1.64 5.78 1.35 5.22-1.21-2.39-3.48-1.65-4.62-1.17"/></svg>������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/language-typescript.svg��������������������0000664�0000000�0000000�00000000711�14753064456�0030116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h18v18H3zm10.71 14.86c.5.98 1.51 1.73 3.09 1.73 1.6 0 2.8-.83 2.8-2.36 0-1.41-.81-2.04-2.25-2.66l-.42-.18c-.73-.31-1.04-.52-1.04-1.02 0-.41.31-.73.81-.73.48 0 .8.21 1.09.73l1.31-.87c-.55-.96-1.33-1.33-2.4-1.33-1.51 0-2.48.96-2.48 2.23 0 1.38.81 2.03 2.03 2.55l.42.18c.78.34 1.24.55 1.24 1.13 0 .48-.45.83-1.15.83-.83 0-1.31-.43-1.67-1.03zM13 11.25H8v1.5h1.5V20h1.75v-7.25H13z"/></svg>�������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/language-xaml.svg��������������������������0000664�0000000�0000000�00000001643�14753064456�0026656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.93 7.9 2.38 4.1-2.36 4.09-.62-1.09 1.47-2.5c.17-.31.17-.67 0-.96L16.32 9zm-.01-1.33a.12.12 0 0 0-.09.05l-1.27 2.25c-.06.07-.06.13 0 .22l1.62 2.81c.04.07.04.15 0 .22l-1.61 2.79c-.04.06-.04.15 0 .22l1.28 2.23c.02.04.06.06.09.06.06 0 .06-.02.1-.06L20 12.23c.08-.14.08-.31 0-.44l-3-5.17c0-.03-.04-.05-.08-.05m4.99 5.1-4.68-8.09a.68.68 0 0 0-.57-.33H7.28c-.23 0-.45.13-.57.33L2 11.67a.84.84 0 0 0 0 .66l4.71 8.09c.12.2.34.33.57.33h9.38c.23 0 .45-.13.57-.33l4.68-8.09a.65.65 0 0 0 0-.66M7.3 3.95h8.82l-4.36 7.7H6.93l3.94-6.83c.04-.07-.01-.16-.09-.16l-2.57-.01c-.08 0-.15.05-.21.11l-3.96 6.89h-1.2zm-1.13 8.51 3.57 6.17H8.5l-3.63-6.28-.2-.35.2-.35L8.5 5.37h1.23l-3.56 6.16-.06.12c-.08.23-.08.48.01.7.01.04.03.08.05.11m1.13 7.59-4.45-7.7h1.2l3.98 6.88c.04.07.11.11.19.11h2.57c.08 0 .13-.09.09-.16l-3.94-6.83h4.83l4.4 7.7zm9.5-.3L12.37 12l4.41-7.79L21.29 12z"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/laptop-account.svg�������������������������0000664�0000000�0000000�00000000410�14753064456�0027054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4a2 2 0 0 1 2 2v10c0 1.11-.89 2-2 2h4v2H0v-2h4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2zm0 2H4v10h16zm-8 6c2.21 0 4 .9 4 2v1H8v-1c0-1.1 1.79-2 4-2m0-5a2 2 0 1 1 0 4c-1.11 0-2-.89-2-2s.9-2 2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/laptop-off.svg�����������������������������0000664�0000000�0000000�00000000363�14753064456�0026201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 4.27 2.28 3 20 20.72 18.73 22l-2-2H0v-2h4a2 2 0 0 1-2-2V6c0-.22.04-.43.1-.63zM4 16h8.73L4 7.27zm16 0V6H7.82l-2-2H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h4v2h-2.18l-4-4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/laptop.svg���������������������������������0000664�0000000�0000000�00000000255�14753064456�0025431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 6h16v10H4m16 2a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4c-1.11 0-2 .89-2 2v10a2 2 0 0 0 2 2H0v2h24v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/laravel.svg��������������������������������0000664�0000000�0000000�00000002234�14753064456�0025557�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.7 6.53c.01.02.01.05.01.08v4.29c0 .1-.06.22-.15.27l-3.61 2.08v4.11c0 .11-.05.21-.15.27l-7.52 4.33c-.02.01-.04.04-.06.04H10s0-.03-.04-.04l-7.52-4.33a.32.32 0 0 1-.15-.27V4.5c0-.05 0-.08.01-.1 0-.01.01-.02.01-.03 0-.02.01-.03.02-.05 0-.01.01-.02.02-.03l.03-.03.03-.03c.01-.01.02-.02.03-.02L6.2 2.04c.1-.04.22-.04.3 0l3.78 2.17c.01.01.02.01.03.02l.03.03.03.03c.01.01.02.02.02.03.01.02.02.03.02.05 0 .01.01.02.01.03.01.03.01.05.01.1v8l3.14-1.78V6.61c0-.03 0-.06.01-.08l.01-.03s.01-.03.02-.05c0-.01.01-.02.02-.03l.03-.03.03-.03c.01-.01.02-.02.03-.02l3.78-2.17c.08-.06.2-.06.3 0l3.76 2.17c.01 0 .02.01.03.02l.03.03.03.03c.01.01.01.02.02.03.01.02.01.05.02.05s.01 0 .01.03m-.61 4.19V7.15l-3.14 1.8v3.55zm-3.76 6.46V13.6l-6.9 3.94v3.61zM2.91 5v12.18l6.9 3.97v-3.61l-3.6-2.04H6.2c-.01 0-.02 0-.03-.03-.01 0-.02-.01-.03-.02l-.03-.03c-.01-.01-.01-.02-.02-.03-.01-.02-.01-.03-.02-.04 0-.02-.01-.03-.01-.04-.01-.01-.01-.03-.01-.04V6.82zm3.45-2.32L3.23 4.5l3.13 1.78L9.5 4.5zm3.45 10.2V5L6.67 6.82v7.87zm7.83-8.08L14.5 6.61l3.14 1.8 3.13-1.8zm-.31 4.15-3.14-1.8v3.57l3.14 1.78zM10.12 17 17 13.06l-3.12-1.8L7 15.23z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/laser-pointer.svg��������������������������0000664�0000000�0000000�00000000536�14753064456�0026720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9 13-4 3c-1 .88-1.14 2.12-1 3 .13 1 .91 2.22 2 2.68 1.57.67 3.09.22 4.04-.76L19 13c1.86-1.38 1-4-1-4h-6l7.46-4.39c.44-.32.62-.79.6-1.24C20 2.67 19.46 2 18.6 2h-.06c-.35 0-.68.11-.98.29L5 9c-.81.46-1.06 1.24-1 2 .05 1.03.74 2 2 2m-1 5.5a2.5 2.5 0 0 1 5 0 2.5 2.5 0 0 1-5 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lasso.svg����������������������������������0000664�0000000�0000000�00000001626�14753064456�0025256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 9c0-3.87-4.5-7-10-7S2 5.13 2 9v.025c.01 1.87 1.068 3.57 2.78 4.825l.003-.009q.61.445 1.321.81A3.5 3.5 0 0 0 6 15.5c0 1.26.67 2.37 1.67 3-.21.61-.7 2.46.63 3.55 1.61 1.33 3.36.92 4.26.64.252-.077.505-.182.78-.296.716-.296 1.57-.649 2.88-.714 1.456-.08 2.712.13 3.345.237q.232.04.345.053s.95 0 1.06-.93c.11-.94-.94-1.07-.94-1.07s-1.6-.27-3.64-.26c-1.408.005-2.645.45-3.687.824-1.26.453-2.233.803-2.873.146-.65-.68-.44-1.32-.23-1.68a3.49 3.49 0 0 0 3.37-3.033 14 14 0 0 0 1.53-.187c4.175-.756 7.3-3.35 7.49-6.476Q22 9.154 22 9m-2 0c0 1.255-.743 2.405-1.968 3.284-1.332.955-3.235 1.591-5.378 1.7A3.5 3.5 0 0 0 9.5 12c-.927 0-1.772.363-2.399.953a7.6 7.6 0 0 1-1.312-.802l.001-.001C4.688 11.303 4.021 10.224 4 9.056V9c0-2.76 3.58-5 8-5s8 2.24 8 5m-9.001 6.56q-.01.21-.07.4A1.5 1.5 0 0 1 9.5 17a1.5 1.5 0 0 1-1.498-1.584A1.5 1.5 0 0 1 11 15.56"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lastpass.svg�������������������������������0000664�0000000�0000000�00000000424�14753064456�0025762�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 12a2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2m-6 0a2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2m-6 0a2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2m20-7h-2v14h2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/latitude.svg�������������������������������0000664�0000000�0000000�00000000456�14753064456�0025750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m0 2c3 0 5.5 1.6 6.9 4H5.1C6.5 5.6 9 4 12 4m0 16c-3 0-5.5-1.6-6.9-4h13.8c-1.4 2.4-3.9 4-6.9 4m-7.7-6c-.2-.6-.3-1.3-.3-2s.1-1.4.3-2h15.5c.2.6.3 1.3.3 2s-.1 1.4-.3 2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/launch.svg���������������������������������0000664�0000000�0000000�00000000311�14753064456�0025375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3m-2 16H5V5h7V3H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lava-lamp.svg������������������������������0000664�0000000�0000000�00000000557�14753064456�0026011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 3 8 16h8L14 3zm1.5 2.75a.75.75 0 0 1 .75.75.75.75 0 0 1-.75.75.75.75 0 0 1-.75-.75.75.75 0 0 1 .75-.75m1 2.75a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m-1 3.5a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5M8 17l2 2-2 2h8l-2-2 2-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/layers-edit.svg����������������������������0000664�0000000�0000000�00000000451�14753064456�0026352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.63 10.27 3 9l9-7 7.94 6.17-7.44 7.44-.5.39zM10 18.94v-.83l.59-.58.04-.03-6.01-4.69L3 14.07l7 5.43zm11.7-6.36-1.28-1.28a.55.55 0 0 0-.77 0l-1 1 2.05 2.05 1-1a.55.55 0 0 0 0-.77M12 21h2.06l6.05-6.07-2.05-2.05L12 18.94z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/layers-minus.svg���������������������������0000664�0000000�0000000�00000000254�14753064456�0026561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 17v2h-8v-2zm-11-1L2 9l9-7 9 7zm0 2.54 1-.79V18c0 .71.12 1.39.35 2L11 21.07l-9-7 1.62-1.26z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/layers-off-outline.svg���������������������0000664�0000000�0000000�00000000504�14753064456�0027653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 4.53-1.17.91L9.41 4 12 2l9 7-3.72 2.89-1.43-1.42L17.74 9zm9 9.54-.87.68-1.43-1.43.67-.52zM3.41.86l18.73 18.73L20.73 21l-3.78-3.78L12 21.07l-9-7 1.62-1.26L12 18.54l3.5-2.75-1.4-1.42L12 16 3 9l3.22-2.5L2 2.27zM12 13.47l.67-.53-5.02-5.02L6.26 9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/layers-off.svg�����������������������������0000664�0000000�0000000�00000000430�14753064456�0026174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.27 1 2 2.27 6.22 6.5 3 9l1.63 1.27L12 16l2.1-1.63 1.43 1.43L12 18.54l-7.37-5.73L3 14.07l9 7 4.95-3.85L20.73 21 22 19.73zm16.09 9.27L21 9l-9-7-2.91 2.27 7.87 7.88zm.45 4.73 1.19-.93-1.43-1.43-1.19.92z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/layers-outline.svg�������������������������0000664�0000000�0000000�00000000262�14753064456�0027104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 18.54 7.37-5.74L21 14.07l-9 7-9-7 1.62-1.26zM12 16 3 9l9-7 9 7zm0-11.47L6.26 9 12 13.47 17.74 9z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/layers-plus.svg����������������������������0000664�0000000�0000000�00000000276�14753064456�0026415�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 14h2v3h3v2h-3v3h-2v-3h-3v-2h3zm-6 2L2 9l9-7 9 7zm0 2.54 1-.79V18c0 .71.12 1.39.35 2L11 21.07l-9-7 1.62-1.26z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/layers-remove.svg��������������������������0000664�0000000�0000000�00000000425�14753064456�0026723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.46 15.88 1.42-1.42L18 16.59l2.12-2.13 1.42 1.42L19.41 18l2.13 2.12-1.42 1.42L18 19.41l-2.12 2.13-1.42-1.42L16.59 18zM11 16 2 9l9-7 9 7zm0 2.54 1-.79V18c0 .71.12 1.39.35 2L11 21.07l-9-7 1.62-1.26z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/layers-search-outline.svg������������������0000664�0000000�0000000�00000000644�14753064456�0030353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.31 18.9c.44-.69.69-1.52.69-2.4 0-2.5-2-4.5-4.5-4.5S11 14 11 16.5s2 4.5 4.5 4.5c.87 0 1.69-.25 2.38-.68L21 23.39 22.39 22zm-3.81.1a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5m-5.91.2L3 14.07l1.62-1.26L9 16.22v.28c0 .96.22 1.88.59 2.7m-.09-5.16L3 9l9-7 9 7-2.34 1.82a6.6 6.6 0 0 0-2.29-.75L17.74 9 12 4.53 6.26 9l4.27 3.32c-.43.52-.79 1.1-1.03 1.72"/></svg>��������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/layers-search.svg��������������������������0000664�0000000�0000000�00000000616�14753064456�0026675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.31 18.9c.44-.69.69-1.52.69-2.4 0-2.5-2-4.5-4.5-4.5S11 14 11 16.5s2 4.5 4.5 4.5c.87 0 1.69-.25 2.38-.68L21 23.39 22.39 22zm-3.81.1a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5m-5.91.2L3 14.07l1.62-1.26L9 16.22v.28c0 .96.22 1.88.59 2.7m-4.96-8.93L3 9l9-7 9 7-1.64 1.27-.71.55c-.93-.52-2.01-.82-3.15-.82-2.71 0-5.04 1.68-6 4.05z"/></svg>������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/layers-triple-outline.svg������������������0000664�0000000�0000000�00000000336�14753064456�0030403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 16.54 7.37-5.74L21 12.07l-9 7-9-7 1.62-1.26zM12 14 3 7l9-7 9 7zm0-11.47L6.26 7 12 11.47 17.74 7zm0 18.94 7.37-5.74L21 17l-9 7-9-7 1.62-1.26z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/layers-triple.svg��������������������������0000664�0000000�0000000�00000000312�14753064456�0026720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0 3 7l1.63 1.27L12 14l7.36-5.73L21 7zm7.37 10.73L12 16.47l-7.38-5.73L3 12l9 7 9-7zm0 5L12 21.47l-7.38-5.73L3 17l9 7 9-7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/layers.svg���������������������������������0000664�0000000�0000000�00000000245�14753064456�0025430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 16 7.36-5.73L21 9l-9-7-9 7 1.63 1.27M12 18.54l-7.38-5.73L3 14.07l9 7 9-7-1.63-1.27z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lead-pencil.svg����������������������������0000664�0000000�0000000�00000000466�14753064456�0026313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.84 2.73c-.39 0-.77.15-1.07.44l-2.12 2.12 5.3 5.31 2.12-2.1c.6-.61.6-1.56 0-2.14L17.9 3.17c-.3-.29-.68-.44-1.06-.44M12.94 6l-8.1 8.11 2.56.28.18 2.29 2.28.17.29 2.56 8.1-8.11m-14 3.74L2.5 21.73l6.7-1.79-.24-2.16-2.31-.17-.18-2.32"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/leaf-circle-outline.svg��������������������0000664�0000000�0000000�00000000621�14753064456�0027752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.04 16.34c1.01-2.51 2.15-5.38 6.46-6.34 0 0-5 0-6.62 4.63 0 0-.88-.88-.88-1.88s1-3.12 3.5-3.62c.71-.13 1.5-.26 2.28-.37 1.97-.26 3.86-.54 4.22-1.26 0 0-1.5 8.5-7 8.5-.18 0-.43-.06-.67-.15L8.86 17l-.95-.33zM12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2"/></svg>���������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/leaf-circle.svg����������������������������0000664�0000000�0000000�00000000540�14753064456�0026275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2M9.6 17.2c-.22 0-.52-.08-.8-.2l-.57 1.4-1.14-.4.16-.39C8.45 14.59 9.83 11.15 15 10c0 0-6 0-7.95 5.55 0 0-1.05-1.05-1.05-2.25s1.2-3.75 4.2-4.35c.85-.17 1.8-.3 2.74-.45C15.3 8.18 17.57 7.86 18 7c0 0-1.8 10.2-8.4 10.2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/leaf-maple-off.svg�������������������������0000664�0000000�0000000�00000000417�14753064456�0026705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.11 14.91 8.2 5H10l2-3 2 3h2l-1.63 4.9L17.79 6l1 1.73 3.6.23-1.6 3.23 1 1.81zM2.39 1.73 1.11 3l4.34 4.34-.24.43-3.6.23 1.6 3.27-1 1.73L8 16l-1 2 4-.75V21h2v-3.75l2.91.55 4.93 4.93 1.27-1.27z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/leaf-maple.svg�����������������������������0000664�0000000�0000000�00000000343�14753064456�0026133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.79 13 16 16l1 2-4-.75V21h-2v-3.75L7 18l1-2-5.79-3 1-1.73L1.61 8l3.6-.23 1-1.77 3.42 3.9L8 5h2l2-3 2 3h2l-1.63 4.9L17.79 6l1 1.73 3.6.23-1.6 3.23z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/leaf-off.svg�������������������������������0000664�0000000�0000000�00000000670�14753064456�0025612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.84 22.73-5.7-5.7C13.26 18.79 10.92 20 8 20c-.36 0-.86-.13-1.34-.3L5.71 22l-1.89-.66c1.33-3.31 2.68-7.02 5.84-9.79l-.89-.89c-2.01 1.37-3.91 3.44-5.02 6.59 0 0-1.75-1.75-1.75-3.75C2 12 3.12 9.32 5.72 7.61L1.11 3l1.28-1.27 14 14.01 5.72 5.72zM17 8c-1.65.37-3.07.88-4.3 1.5l4.8 4.79C20.87 9.35 22 3 22 3c-.97 1.95-7.65 2.24-12.62 3.18l2.77 2.77C14.81 8 17 8 17 8"/></svg>������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/leaf.svg�����������������������������������0000664�0000000�0000000�00000000343�14753064456�0025037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 8C8 10 5.9 16.17 3.82 21.34l1.89.66.95-2.3c.48.17.98.3 1.34.3C19 20 22 3 22 3c-1 2-8 2.25-13 3.25S2 11.5 2 13.5s1.75 3.75 1.75 3.75C7 8 17 8 17 8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/leak-off.svg�������������������������������0000664�0000000�0000000�00000001116�14753064456�0025613�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 3H8c0 .37-.04.72-.12 1.06l1.59 1.59C9.81 4.84 10 3.94 10 3M3 4.27l2.84 2.84C5.03 7.67 4.06 8 3 8v2c1.61 0 3.09-.55 4.27-1.46L8.7 9.97A9 9 0 0 1 3 12v2c2.71 0 5.19-1 7.11-2.62l2.5 2.5C11 15.81 10 18.29 10 21h2c0-2.16.76-4.14 2.03-5.69l1.43 1.43A6.92 6.92 0 0 0 14 21h2c0-1.06.33-2.03.89-2.84L19.73 21 21 19.73 4.27 3zM14 3h-2c0 1.5-.37 2.91-1 4.16l1.44 1.46C13.42 7 14 5.06 14 3m5.94 13.12c.34-.08.69-.12 1.06-.12v-2c-.94 0-1.84.19-2.66.5zm-4.56-4.56L16.84 13c1.25-.63 2.66-1 4.16-1v-2c-2.06 0-4 .58-5.62 1.56"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/leak.svg�����������������������������������0000664�0000000�0000000�00000000434�14753064456�0025045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 3H3v3a3 3 0 0 0 3-3m8 0h-2a9 9 0 0 1-9 9v2c6.08 0 11-4.93 11-11m-4 0H8a5 5 0 0 1-5 5v2a7 7 0 0 0 7-7m0 18h2a9 9 0 0 1 9-9v-2a11 11 0 0 0-11 11m8 0h3v-3a3 3 0 0 0-3 3m-4 0h2a5 5 0 0 1 5-5v-2a7 7 0 0 0-7 7"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lectern.svg��������������������������������0000664�0000000�0000000�00000000367�14753064456�0025572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 21v1H7v-1h2V11h6v10zm.5-15c0-1.61-1.09-2.95-2.57-3.36-.15-.37-.5-.64-.93-.64-.55 0-1 .45-1 1s.45 1 1 1c.31 0 .58-.15.76-.37 1.01.32 1.74 1.26 1.74 2.37H4l1 4h14l1-4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/led-off.svg��������������������������������0000664�0000000�0000000�00000000222�14753064456�0025440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6a4 4 0 0 0-4 4v6H6v2h3v5h2v-5h2v5h2v-5h3v-2h-2v-6a4 4 0 0 0-4-4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/led-on.svg���������������������������������0000664�0000000�0000000�00000000370�14753064456�0025306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 0v4h2V0zm7.3 2.29-3.06 3 1.4 1.42 3.06-3zm-12.59 0L4.29 3.71l3 3 1.42-1.42zM12 6a4 4 0 0 0-4 4v6H6v2h3v5h2v-5h2v5h2v-5h3v-2h-2v-6a4 4 0 0 0-4-4M2 9v2h4V9zm16 0v2h4V9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/led-outline.svg����������������������������0000664�0000000�0000000�00000000272�14753064456�0026352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6a4 4 0 0 0-4 4v6H6v2h3v5h2v-5h2v5h2v-5h3v-2h-2v-6a4 4 0 0 0-4-4m0 2a2 2 0 0 1 2 2v5h-4v-5a2 2 0 0 1 2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/led-strip-variant-off.svg������������������0000664�0000000�0000000�00000001013�14753064456�0030240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3l1.48 1.5L2 6.91l4.03 1.01 3.05 3.05-2.83 1.14 5.3 1.33 1.39 1.39-8.28-2.08-.95 3.91 14.75 3.69 2.38 2.38zM7.8 16.65l-1.92-.49.47-1.95 1.93.48zm3.85.96-1.92-.48.47-1.95 1.93.48zm3.85.97-1.92-.49.48-1.95.25.06 1.43 1.43zm4.23-2.05 2.27.57-.33 1.37zm-3.88-3.88L14.2 11l3.55.89zm-5.43-6.74-.26 1.05 2.66 2.66 6.52 1.63.95-3.91-13-3.25 1.37 1.37zm5.78 1.44 1.93.49-.48 1.95-1.93-.48zm-3.85-.96 1.92.48-.47 1.95-1.93-.48z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/led-strip-variant.svg����������������������0000664�0000000�0000000�00000000716�14753064456�0027501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.95 3 2 6.91l17.34 4.34.95-3.91zm3.14 3.89-1.93-.48.48-1.95 1.93.48zm3.85.97L8 7.38l.5-1.96 1.92.49zm3.86.96-1.93-.48.48-1.95 1.92.48zm3.85.97-1.93-.48.48-1.96 1.93.49zM4.66 12.75l-.95 3.91L21.05 21l.95-3.9zm3.14 3.9-1.92-.49.47-1.95 1.93.48zm3.85.96-1.92-.48.47-1.95 1.93.48zm3.85.97-1.92-.49.48-1.95 1.94.48zm3.86.96-1.93-.48.48-1.95 1.93.48zM6.25 12.11 11 10.2l6.75 1.69L13 13.8z"/></svg>��������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/led-strip.svg������������������������������0000664�0000000�0000000�00000000610�14753064456�0026030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.81 8.46 14.83 20.5l.71-.72 1.41 1.41 1.41-1.41-1.41-1.42 1.41-1.41 1.42 1.41 1.41-1.41-1.41-1.41.72-.71L8.46 2.81zm2.83 0 2.82-2.82 9.2 9.19-2.83 2.83zm1.41 0 1.41 1.42 1.42-1.42-1.42-1.41zm2.12 2.13L10.59 12 12 10.59l-1.41-1.42zm2.12 2.12 1.42 1.41 1.41-1.41-1.41-1.42zm2.12 2.12 1.42 1.41 1.41-1.41-1.41-1.42z"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/led-variant-off.svg������������������������0000664�0000000�0000000�00000000346�14753064456�0027111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3c-1.95 0-3.57 1.4-3.92 3.25L16.82 15H18v-2h-2V7a4 4 0 0 0-4-4M3.28 4 2 5.27l6 6V13H6v2h3v6h2v-6h.73L13 16.27V21h2v-2.73L18.73 22 20 20.72l-5-5-7-7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/led-variant-on.svg�������������������������0000664�0000000�0000000�00000000221�14753064456�0026743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3a4 4 0 0 0-4 4v6H6v2h3v6h2v-6h2v6h2v-6h3v-2h-2V7a4 4 0 0 0-4-4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/led-variant-outline.svg��������������������0000664�0000000�0000000�00000000270�14753064456�0030012�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3a4 4 0 0 0-4 4v6H6v2h3v6h2v-6h2v6h2v-6h3v-2h-2V7a4 4 0 0 0-4-4m0 2a2 2 0 0 1 2 2v5h-4V7a2 2 0 0 1 2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/leek.svg�����������������������������������0000664�0000000�0000000�00000000351�14753064456�0025047�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2v3.55l2 2 2-2V2zM6.34 4 3.87 6.5 15 17.62v-4.95zm11.32 0-4.6 4.61 2.48 2.48 4.59-4.59zM9 13.74V20a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-.26l-2-2V20h-2v-4.26z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/less-than-or-equal.svg���������������������0000664�0000000�0000000�00000000220�14753064456�0027543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 2.27 5 10.14 18.5 18l1-1.73-10.53-6.13L19.5 4zM5 20v2h15v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/less-than.svg������������������������������0000664�0000000�0000000�00000000177�14753064456�0026033�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.5 4.14 1 1.72L8.97 12l10.53 6.14-1 1.72L5 12z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/library-outline.svg������������������������0000664�0000000�0000000�00000001100�14753064456�0027241�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 14.27 10.64 13A11.24 11.24 0 0 0 5 10.18v6.95c2.61.34 5 1.34 7 2.82 2-1.48 4.39-2.48 7-2.82v-6.95c-2.16.39-4.09 1.39-5.64 2.82M19 8.15c.65-.1 1.32-.15 2-.15v11c-3.5 0-6.64 1.35-9 3.54C9.64 20.35 6.5 19 3 19V8c.68 0 1.35.05 2 .15 2.69.41 5.1 1.63 7 3.39 1.9-1.76 4.31-2.98 7-3.39M12 6c.27 0 .5-.1.71-.29.19-.21.29-.44.29-.71s-.1-.5-.29-.71C12.5 4.11 12.27 4 12 4s-.5.11-.71.29c-.18.21-.29.45-.29.71s.11.5.29.71c.21.19.45.29.71.29m2.12 1.12a2.997 2.997 0 1 1-4.24-4.24 2.997 2.997 0 1 1 4.24 4.24"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/library-shelves.svg������������������������0000664�0000000�0000000�00000000300�14753064456�0027234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 9V1.5h-3V9h-3V1.5h-3V9h-3V1.5H4.65V9H3v1.5h18V9zm0 4.5h-3V21h-3v-7.5h-3V21h-3v-7.5H4.65V21H3v1.5h18V21h-1.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/library.svg��������������������������������0000664�0000000�0000000�00000000364�14753064456�0025577�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m0 3.54C9.64 9.35 6.5 8 3 8v11c3.5 0 6.64 1.35 9 3.54 2.36-2.19 5.5-3.54 9-3.54V8c-3.5 0-6.64 1.35-9 3.54"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/license.svg��������������������������������0000664�0000000�0000000�00000001125�14753064456�0025551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 10a3.04 3.04 0 0 1 3-3 3.04 3.04 0 0 1 3 3 3.04 3.04 0 0 1-3 3 3.04 3.04 0 0 1-3-3m3 9 4 1v-3.08A7.54 7.54 0 0 1 12 18a7.54 7.54 0 0 1-4-1.08V20m4-16a5.78 5.78 0 0 0-4.24 1.74A5.78 5.78 0 0 0 6 10a5.78 5.78 0 0 0 1.76 4.23A5.78 5.78 0 0 0 12 16a5.78 5.78 0 0 0 4.24-1.77A5.78 5.78 0 0 0 18 10a5.78 5.78 0 0 0-1.76-4.26A5.78 5.78 0 0 0 12 4m8 6a8 8 0 0 1-.57 2.8A7.8 7.8 0 0 1 18 15.28V23l-6-2-6 2v-7.72A7.9 7.9 0 0 1 4 10a7.68 7.68 0 0 1 2.33-5.64A7.73 7.73 0 0 1 12 2a7.73 7.73 0 0 1 5.67 2.36A7.68 7.68 0 0 1 20 10"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lifebuoy.svg�������������������������������0000664�0000000�0000000�00000000753�14753064456�0025753�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.79 15.41c.95-2.17.95-4.66 0-6.82l-2.74 1.24c.6 1.38.6 2.95.01 4.34zm-4.37-11.2a8.54 8.54 0 0 0-6.83 0l1.24 2.73c1.39-.59 2.96-.59 4.35.01zM4.21 8.58a8.56 8.56 0 0 0 0 6.84l2.74-1.25c-.6-1.38-.6-2.96 0-4.35zm4.38 11.21a8.5 8.5 0 0 0 6.83-.01l-1.24-2.73a5.5 5.5 0 0 1-4.34.01zM12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 6a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4"/></svg>���������������������mkdocs-material-9.6.4/material/templates/.icons/material/light-flood-down.svg�����������������������0000664�0000000�0000000�00000000524�14753064456�0027306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 11H2V9h6c.55 0 1 .45 1 1s-.45 1-1 1m6.87-6.65-.37.92-6.32-.41L6.9 8H8c1.1 0 2 .9 2 2s-.9 2-2 2H5.27l-.86 2.12 4.8 4.12-.38.92 1.86.76L16.72 5.1zm5.94 1.94.76 1.85-2.31.96-.76-1.85zm-2.03 7.28 2.77 1.15-.76 1.85L18 15.42zm-2.63 7.66L14.3 22l-.96-2.31 1.85-.76z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/light-flood-up.svg�������������������������0000664�0000000�0000000�00000000520�14753064456�0026757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 15H2v-2h6c.55 0 1 .45 1 1s-.45 1-1 1m8.72 3.9L10.69 4.08l-1.86.76.38.92-4.8 4.12.86 2.12H8c1.1 0 2 .9 2 2s-.9 2-2 2H6.9l1.28 3.14 6.32-.41.37.92zm4.09-1.19-2.31-.96.76-1.85 2.31.96zm-2.03-7.28L18 8.58l2.79-1.15.76 1.85zm-3.59-5.36-1.85-.76L14.3 2l1.85.77z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/light-recessed.svg�������������������������0000664�0000000�0000000�00000000627�14753064456�0027037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 7C6.5 7 2 9.46 2 12.5S6.5 18 12 18s10-2.46 10-5.5S17.5 7 12 7m4.5 3c0 .4-1.6 1.54-4.5 1.54S7.5 10.4 7.5 10c0-.09.15-.26.4-.45C9.06 9.21 10.44 9 12 9s2.94.21 4.1.55c.25.19.4.36.4.45M12 16c-4.88 0-8-2.07-8-3.5 0-.69.73-1.5 2.03-2.21.27 1.54 2.84 2.75 5.97 2.75s5.7-1.21 5.97-2.75C19.27 11 20 11.81 20 12.5c0 1.43-3.12 3.5-8 3.5"/></svg>���������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/light-switch-off.svg�����������������������0000664�0000000�0000000�00000000413�14753064456�0027304�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.4 1.6C19 1.2 18.5 1 18 1H6c-.5 0-1 .2-1.4.6S4 2.5 4 3v18c0 .5.2 1 .6 1.4s.9.6 1.4.6h12c.5 0 1-.2 1.4-.6s.6-.9.6-1.4V3c0-.5-.2-1-.6-1.4M18 21H6V3h12zM8 6v12h8V6zm7 11H9V7h6zm-5-3h4v2h-4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/light-switch.svg���������������������������0000664�0000000�0000000�00000000375�14753064456�0026543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 6v12h8V6zm6 4h-4V8h4zm5.4-8.4C19 1.2 18.5 1 18 1H6c-.5 0-1 .2-1.4.6S4 2.5 4 3v18c0 .5.2 1 .6 1.4s.9.6 1.4.6h12c.5 0 1-.2 1.4-.6s.6-.9.6-1.4V3c0-.5-.2-1-.6-1.4M18 21H6V3h12z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-alert-outline.svg����������������0000664�0000000�0000000�00000000534�14753064456�0030670�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2c3.9 0 7 3.1 7 7 0 2.4-1.2 4.5-3 5.7V17c0 .6-.4 1-1 1H7c-.6 0-1-.4-1-1v-2.3C4.2 13.5 3 11.4 3 9c0-3.9 3.1-7 7-7M7 21v-1h6v1c0 .6-.4 1-1 1H8c-.6 0-1-.4-1-1m3-17C7.2 4 5 6.2 5 9c0 2.1 1.2 3.8 3 4.6V16h4v-2.4c1.8-.8 3-2.5 3-4.6 0-2.8-2.2-5-5-5m9 8V7h2v6h-2m0 4v-2h2v2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-alert.svg������������������������0000664�0000000�0000000�00000000402�14753064456�0027205�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2C6.1 2 3 5.1 3 9c0 2.4 1.2 4.5 3 5.7V17c0 .6.4 1 1 1h6c.6 0 1-.4 1-1v-2.3c1.8-1.3 3-3.4 3-5.7 0-3.9-3.1-7-7-7M7 21c0 .6.4 1 1 1h4c.6 0 1-.4 1-1v-1H7zm12-9V7h2v6h-2m0 4v-2h2v2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-auto-outline.svg�����������������0000664�0000000�0000000�00000000644�14753064456�0030533�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 2c3.87 0 7 3.13 7 7 0 2.38-1.19 4.47-3 5.74V17c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-2.26C3.19 13.47 2 11.38 2 9c0-3.87 3.13-7 7-7M6 21v-1h6v1c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1M9 4C6.24 4 4 6.24 4 9c0 2.05 1.23 3.81 3 4.58V16h4v-2.42c1.77-.77 3-2.53 3-4.58 0-2.76-2.24-5-5-5m10 9h-2l-3.2 9h1.9l.7-2h3.2l.7 2h1.9zm-2.15 5.65L18 15l1.15 3.65z"/></svg>��������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-auto.svg�������������������������0000664�0000000�0000000�00000000476�14753064456�0027061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 2C5.13 2 2 5.13 2 9c0 2.38 1.19 4.47 3 5.74V17c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2.26c1.81-1.27 3-3.36 3-5.74 0-3.87-3.13-7-7-7M6 21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1H6zm13-8h-2l-3.2 9h1.9l.7-2h3.2l.7 2h1.9zm-2.15 5.65L18 15l1.15 3.65z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-cfl-off.svg����������������������0000664�0000000�0000000�00000000540�14753064456�0027415�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 4.47c0-.91-.37-1.77-1-2.42.17-.05.33-.05.5-.05A2.5 2.5 0 0 1 16 4.5V14h1v1.18l-3-3V4.47m-4 .03c0-.28.22-.5.5-.5s.5.22.5.5v4.68l2 2V4.5a2.5 2.5 0 0 0-5 0v1.68l2 2zM9 21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1H9zm11-.28L18.73 22l-4-4H8c-.55 0-1-.45-1-1v-3h1v-2.73l-6-6L3.28 4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-cfl-spiral-off.svg���������������0000664�0000000�0000000�00000000751�14753064456�0030711�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.45 9.9-1.57.78-1.5-1.5 2.17-1.08c.14-.07.29-.1.45-.1 1 0 1.42 1.34.45 1.9M11.22 8l4.23-2.1C16.41 5.43 16 4 15 4a.96.96 0 0 0-.45.1L9.72 6.5zm9.62 14.73L16.09 18H8c-.56 0-1-.45-1-1v-3h1v-2c0-.4.2-.75.7-.97l.3-.15L1.11 3l1.28-1.27 19.72 19.73zM12.11 14l-1.61-1.62-.5.24V14zM9 21c0 .57.46 1 1 1h4c.56 0 1-.45 1-1v-1H9zM9 5c.16 0 .32-.05.45-.1l2-1C12.43 3.36 12 2 11 2c-.16 0-.31.03-.45.1l-2 1C7.56 3.66 8 5 9 5"/></svg>�����������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-cfl-spiral.svg�������������������0000664�0000000�0000000�00000000733�14753064456�0030141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 2c-.16 0-.31.03-.45.1l-2 1C7.56 3.66 8 5 9 5c.16 0 .32-.05.45-.1l2-1C12.43 3.36 12 2 11 2m4 2a.96.96 0 0 0-.45.1l-6 3C7.56 7.68 8 9 9 9c.18 0 .32-.05.45-.1l6-3C16.41 5.43 16 4 15 4m0 4c-.16 0-.31.03-.45.1L8.7 11.03c-.5.22-.7.57-.7.97v2H7v3c0 .55.44 1 1 1h8c.55 0 1-.45 1-1v-3h-1v-1c0-.56-.45-1-1-1s-1 .45-1 1v1h-4v-1.38l5.45-2.72C16.42 9.34 16 8 15 8M9 20v1c0 .57.46 1 1 1h4c.56 0 1-.45 1-1v-1"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-cfl.svg��������������������������0000664�0000000�0000000�00000000533�14753064456�0026647�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 2A2.5 2.5 0 0 1 13 4.5V14h1V4.47c0-.91-.37-1.77-1-2.42.17-.05.33-.05.5-.05A2.5 2.5 0 0 1 16 4.5V14h1v3c0 .55-.45 1-1 1H8c-.55 0-1-.45-1-1v-3h1V4.5A2.5 2.5 0 0 1 10.5 2m0 2c-.28 0-.5.22-.5.5V14h1V4.5c0-.28-.22-.5-.5-.5M9 20h6v1c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-fluorescent-tube-outline.svg�����0000664�0000000�0000000�00000000527�14753064456�0033051�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.05 2.81-.55.53-1.39-1.42-1.24 1.24 1.41 1.42-.7.7-1.42-1.41-1.24 1.24L3.34 6.5l-.53.55 1.41 1.41 11.32 11.32 1.41 1.41.55-.53 1.39 1.42 1.24-1.24-1.41-1.41.71-.71 1.41 1.41 1.24-1.24-1.42-1.39.53-.55-1.41-1.41L8.46 4.22M7.05 5.64l11.31 11.31-1.41 1.41L5.64 7.05Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-fluorescent-tube.svg�������������0000664�0000000�0000000�00000000403�14753064456�0031365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.05 2.81-.55.53-1.39-1.42-1.24 1.24 1.41 1.42-.7.7-1.42-1.41-1.24 1.24L3.34 6.5l-.53.55 14.14 14.14.55-.53 1.39 1.42 1.24-1.24-1.41-1.41.7-.71 1.42 1.41 1.24-1.23-1.42-1.4.53-.55z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-group-off-outline.svg������������0000664�0000000�0000000�00000001454�14753064456�0031467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3 5.2 7.09C3.25 7.5 1.85 9.27 2 11.31c.12 1.31.86 2.48 2 3.14V16c0 .55.45 1 1 1h2v-2.12c-1.28-1.3-2-3.05-2-4.88 0-.89.18-1.77.5-2.6L7.12 9c-.38 1.84.28 3.8 1.88 5v2c0 .55.45 1 1 1h4c.31 0 .57-.14.75-.36L17 18.89V19c0 .34-.06.68-.17 1h1.26l2.75 2.73zM9.23 11.12l1.64 1.64c-.76-.3-1.34-.9-1.64-1.64M13 15h-2v-2.11l2 2zm-2.43-7.63L9.13 5.93C10.86 4.72 13.22 4.67 15 6c1.26.94 2 2.43 2 4 0 1.05-.33 2.05-.92 2.88l-1.45-1.45c.23-.43.37-.93.37-1.43 0-1.66-1.33-3-3-3-.5 0-1 .14-1.43.37m6.93 6.94c.97-1.22 1.5-2.74 1.5-4.31 0-1.04-.23-2.06-.68-3 1.31.11 2.48.85 3.14 2 1.11 1.9.45 4.34-1.46 5.45V16c0 .22-.09.42-.21.59zM10 18h4v1c0 .55-.45 1-1 1h-2c-.55 0-1-.45-1-1zm-3 1c0 .34.06.68.17 1H6c-.55 0-1-.45-1-1v-1h2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-group-off.svg��������������������0000664�0000000�0000000�00000001230�14753064456�0030002�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.84 22.73 18.09 20h-1.26c.11-.32.17-.66.17-1v-.11l-2.25-2.25c-.18.22-.44.36-.75.36h-4c-.55 0-1-.45-1-1v-2c-1.6-1.2-2.26-3.16-1.88-5L5.5 7.4C5.18 8.23 5 9.11 5 10c0 1.83.72 3.58 2 4.88V17H5c-.55 0-1-.45-1-1v-1.55a4.05 4.05 0 0 1-2-3.14C1.85 9.27 3.25 7.5 5.2 7.09L1.11 3l1.28-1.27 19.72 19.73zM15 6c-1.78-1.33-4.14-1.28-5.87-.07l6.95 6.95A5 5 0 0 0 15 6m4.79 10.59c.12-.17.21-.37.21-.59v-1.55c1.91-1.11 2.57-3.55 1.46-5.45a4 4 0 0 0-3.14-2c.45.94.68 1.96.68 3 0 1.57-.53 3.09-1.5 4.31zM10 19c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-1h-4zm-3-1H5v1c0 .55.45 1 1 1h1.17c-.11-.32-.17-.66-.17-1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-group-outline.svg����������������0000664�0000000�0000000�00000000775�14753064456�0030724�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 19a2.9 2.9 0 0 0 .17 1H6a1 1 0 0 1-1-1v-1h2m3 1a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-1h-4m-6-2a1 1 0 0 0 1 1h2v-2.12A6.92 6.92 0 0 1 5 10a6.8 6.8 0 0 1 .68-3A4 4 0 0 0 4 14.45M17 19a2.9 2.9 0 0 1-.17 1H18a1 1 0 0 0 1-1v-1h-2m0-8a5 5 0 0 1-2 4v2a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-2a5 5 0 1 1 8-4m-2 0a3 3 0 1 0-4 2.82V15h2v-2.18A3 3 0 0 0 15 10m3.32-3a6.8 6.8 0 0 1 .68 3 6.92 6.92 0 0 1-2 4.88V17h2a1 1 0 0 0 1-1v-1.55A4 4 0 0 0 18.32 7"/></svg>���mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-group.svg������������������������0000664�0000000�0000000�00000000706�14753064456�0027241�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 14v2a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-2a5 5 0 1 1 6 0m-1 4h-4v1a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1m-7 0v-1H5v1a1 1 0 0 0 1 1h1.17A2.9 2.9 0 0 1 7 19m-2-9a6.8 6.8 0 0 1 .68-3A4 4 0 0 0 4 14.45V16a1 1 0 0 0 1 1h2v-2.12A6.92 6.92 0 0 1 5 10m12 8v1a2.9 2.9 0 0 1-.17 1H18a1 1 0 0 0 1-1v-1m-.68-11a6.8 6.8 0 0 1 .68 3 6.92 6.92 0 0 1-2 4.88V17h2a1 1 0 0 0 1-1v-1.55A4 4 0 0 0 18.32 7"/></svg>����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-multiple-off-outline.svg���������0000664�0000000�0000000�00000001362�14753064456�0032164�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3l3.03 3.03C3.93 7 4 8.05 4.45 9.04c.34.77.88 1.46 1.55 1.96v2c0 .55.45 1 1 1h.3c-.2-.65-.3-1.32-.3-2 0-.92.19-1.79.5-2.59L9.11 11c-.06.33-.11.66-.11 1 0 1.57.74 3.06 2 4v2c0 .55.45 1 1 1h4c.31 0 .57-.14.75-.36l4.09 4.09zm-10.88-8.34 1.64 1.64c-.77-.32-1.34-.91-1.64-1.64M15 17h-2v-2.11l2 2zM9.69 6.5 6.14 2.94c.27-.19.56-.36.86-.5 2.53-1.11 5.5.03 6.6 2.56a6.87 6.87 0 0 0-3.91 1.5m1.43 1.42C11.94 7.35 12.93 7 14 7c1.57 0 3.06.74 4 2 1.33 1.78 1.28 4.14.07 5.87l-1.45-1.45q.12-.21.21-.42c.55-1.57-.27-3.28-1.83-3.84-.84-.29-1.71-.19-2.43.21zM7.68 15c.32.7.78 1.33 1.32 1.88V17H8c-.55 0-1-.45-1-1v-1zM12 20h4v1c0 .55-.45 1-1 1h-2c-.55 0-1-.45-1-1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-multiple-off.svg�����������������0000664�0000000�0000000�00000001064�14753064456�0030506�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.84 22.73-4.1-4.1c-.19.22-.45.37-.74.37h-4c-.58 0-1-.45-1-1v-2a4.92 4.92 0 0 1-1.9-5L7.5 9.39c-.33.81-.53 1.69-.5 2.61-.03.68.07 1.35.28 2H7c-.58 0-1-.45-1-1v-2c-.7-.5-1.23-1.19-1.57-1.96A5 5 0 0 1 4.12 6L1.11 3l1.28-1.27 19.72 19.73zM13.58 5C12.46 2.47 9.5 1.33 7 2.45c-.32.13-.61.3-.87.48l3.54 3.54A7 7 0 0 1 13.58 5m4.48 9.86C19.6 12.66 19.14 9.62 17 8a5.03 5.03 0 0 0-5.88-.08zM12 21c0 .55.42 1 1 1h2c.53 0 1-.45 1-1v-1h-4zm-5-6v1c0 .55.42 1 1 1h1v-.12c-.57-.55-1-1.18-1.34-1.88z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-multiple-outline.svg�������������0000664�0000000�0000000�00000001045�14753064456�0031412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 21c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-1h-4m2-13a5.002 5.002 0 0 0-3 9v2c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2a4.997 4.997 0 0 0 1-7c-.94-1.26-2.43-2-4-2m1 7.82V17h-2v-2.18A3 3 0 0 1 11.17 11 3.003 3.003 0 0 1 15 9.16c1.56.56 2.38 2.27 1.83 3.84-.3.85-.98 1.5-1.83 1.82M7.68 15H7v1c0 .55.45 1 1 1h1v-.12c-.54-.55-1-1.18-1.32-1.88M13.6 5C12.5 2.47 9.53 1.33 7 2.45S3.34 6.5 4.45 9.04c.34.77.88 1.46 1.55 1.96v2c0 .55.45 1 1 1h.3c-.2-.65-.3-1.32-.3-2 0-3.71 2.89-6.79 6.6-7"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-multiple.svg���������������������0000664�0000000�0000000�00000000701�14753064456�0027733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 16v2c0 .55-.47 1-1 1h-4c-.58 0-1-.45-1-1v-2c-2.23-1.66-2.68-4.79-1-7s4.77-2.66 7-1 2.63 4.79 1 7c-.31.38-.65.72-1 1m-1 4h-4v1c0 .55.42 1 1 1h2c.53 0 1-.45 1-1m-8.34-6H7v1c0 .55.42 1 1 1h1v-.12c-.56-.55-1-1.18-1.34-1.88m5.92-10C12.46 2.47 9.5 1.33 7 2.45S3.31 6.5 4.43 9.04C4.77 9.81 5.3 10.5 6 11v2c0 .55.42 1 1 1h.28c-.21-.65-.31-1.32-.28-2-.03-3.71 2.87-6.79 6.58-7"/></svg>���������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-night-outline.svg����������������0000664�0000000�0000000�00000001135�14753064456�0030670�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 20h6v1c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1zm5-5.11V16H7v-2.42C5.23 12.81 4 11.05 4 9c0-2.76 2.24-5 5-5 .9 0 1.73.26 2.46.67.54-.47 1.2-.86 1.89-1.17C12.16 2.57 10.65 2 9 2 5.13 2 2 5.13 2 9c0 2.38 1.19 4.47 3 5.74V17c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-.68c-.75-.36-1.43-.82-2-1.43m9.92-4.95-.5-1.64 1.3-1.08-1.68-.04-.63-1.58-.56 1.61-1.68.11 1.33 1.03-.4 1.65 1.4-.97zm-1.8 2.31a4.62 4.62 0 0 1-3.27-2.28c-.73-1.26-.8-2.72-.35-4 .14-.34-.16-.68-.5-.63-3.44.66-5 4.79-2.78 7.61 1.81 2.24 5.28 2.32 7.17.05.23-.26.08-.7-.27-.75"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-night.svg������������������������0000664�0000000�0000000�00000001010�14753064456�0027203�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1H6zm7-4.68V17c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-2.26C3.19 13.47 2 11.38 2 9c0-3.87 3.13-7 7-7 1.65 0 3.16.57 4.35 1.5C10.8 4.57 9 7.07 9 10c0 2.79 1.64 5.19 4 6.32m7.92-6.38-1.42-.91-1.4.97.4-1.65-1.33-1.03 1.68-.11.56-1.61.63 1.58 1.68.04-1.3 1.08zM19.39 13c-1.89 2.27-5.36 2.19-7.17-.05C10 10.13 11.56 6 15 5.34c.34-.05.64.29.5.63-.45 1.28-.38 2.74.35 4a4.62 4.62 0 0 0 3.27 2.28c.35.05.5.49.27.75"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-off-outline.svg������������������0000664�0000000�0000000�00000000644�14753064456�0030335�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C9.76 2 7.78 3.05 6.5 4.68l1.43 1.43C8.84 4.84 10.32 4 12 4a5 5 0 0 1 5 5c0 1.68-.84 3.16-2.11 4.06l1.42 1.44C17.94 13.21 19 11.24 19 9a7 7 0 0 0-7-7M3.28 4 2 5.27 5.04 8.3C5 8.53 5 8.76 5 9c0 2.38 1.19 4.47 3 5.74V17a1 1 0 0 0 1 1h5.73l4 4L20 20.72zm3.95 6.5 5.5 5.5H10v-2.42a5 5 0 0 1-2.77-3.08M9 20v1a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-1z"/></svg>��������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-off.svg��������������������������0000664�0000000�0000000�00000000455�14753064456�0026660�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C9.76 2 7.78 3.05 6.5 4.68l9.81 9.82C17.94 13.21 19 11.24 19 9a7 7 0 0 0-7-7M3.28 4 2 5.27 5.04 8.3C5 8.53 5 8.76 5 9c0 2.38 1.19 4.47 3 5.74V17a1 1 0 0 0 1 1h5.73l4 4L20 20.72zM9 20v1a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-on-10.svg������������������������0000664�0000000�0000000�00000000634�14753064456�0026737�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 11h3v2H1zm18.1-7.5L17 5.6 18.4 7l2.1-2.1zM11 1h2v3h-2zM4.9 3.5 3.5 4.9 5.6 7 7 5.6zM10 22c0 .6.4 1 1 1h2c.6 0 1-.4 1-1v-1h-4zm2-16c-3.3 0-6 2.7-6 6 0 2.2 1.2 4.2 3 5.2V19c0 .6.4 1 1 1h4c.6 0 1-.4 1-1v-1.8c1.8-1 3-3 3-5.2 0-3.3-2.7-6-6-6m1 9.9V17h-2v-1.1c-1.7-.4-3-2-3-3.9 0-2.2 1.8-4 4-4s4 1.8 4 4c0 1.9-1.3 3.4-3 3.9m7-4.9h3v2h-3z"/></svg>����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-on-20.svg������������������������0000664�0000000�0000000�00000000601�14753064456�0026732�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 11h3v2H1zm3.9-7.5L3.5 4.9 5.6 7 7 5.6zM13 1h-2v3h2zm7 10v2h3v-2zM10 22c0 .6.4 1 1 1h2c.6 0 1-.4 1-1v-1h-4zm9.1-18.5L17 5.6 18.4 7l2.1-2.1zM18 12c0 2.2-1.2 4.2-3 5.2V19c0 .6-.4 1-1 1h-4c-.6 0-1-.4-1-1v-1.8c-1.8-1-3-3-3-5.2 0-3.3 2.7-6 6-6s6 2.7 6 6m-2 0c0-2.21-1.79-4-4-4s-4 1.79-4 4 1.79 4 4 4 4-1.79 4-4"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-on-30.svg������������������������0000664�0000000�0000000�00000000635�14753064456�0026742�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 5.6 5.6 7 3.5 4.9l1.4-1.4zM1 13h3v-2H1zM13 1h-2v3h2zm5 11c0 2.2-1.2 4.2-3 5.2V19c0 .6-.4 1-1 1h-4c-.6 0-1-.4-1-1v-1.8c-1.8-1-3-3-3-5.2 0-3.3 2.7-6 6-6s6 2.7 6 6m-2 0c0-2.21-1.79-4-4-4s-4 1.79-4 4c0 1.2.54 2.27 1.38 3h5.24c.84-.73 1.38-1.8 1.38-3m-6 10c0 .6.4 1 1 1h2c.6 0 1-.4 1-1v-1h-4zm10-11v2h3v-2zm-.9-7.5L17 5.6 18.4 7l2.1-2.1z"/></svg>���������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-on-40.svg������������������������0000664�0000000�0000000�00000000626�14753064456�0026743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 11h3v2H1zM13 1h-2v3h2zM4.9 3.5 3.5 4.9 5.6 7 7 5.6zm14.2 0L17 5.6 18.4 7l2.1-2.1zM10 22c0 .6.4 1 1 1h2c.6 0 1-.4 1-1v-1h-4zm10-11v2h3v-2zm-2 1c0 2.2-1.2 4.2-3 5.2V19c0 .6-.4 1-1 1h-4c-.6 0-1-.4-1-1v-1.8c-1.8-1-3-3-3-5.2 0-3.3 2.7-6 6-6s6 2.7 6 6m-2 0c0-2.21-1.79-4-4-4s-4 1.79-4 4c0 .74.22 1.41.57 2h6.86c.35-.59.57-1.26.57-2"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-on-50.svg������������������������0000664�0000000�0000000�00000000624�14753064456�0026742�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 11h3v2H1zm9 11c0 .6.4 1 1 1h2c.6 0 1-.4 1-1v-1h-4zm3-21h-2v3h2zM4.9 3.5 3.5 4.9 5.6 7 7 5.6zM20 11v2h3v-2zm-.9-7.5L17 5.6 18.4 7l2.1-2.1zM18 12c0 2.2-1.2 4.2-3 5.2V19c0 .6-.4 1-1 1h-4c-.6 0-1-.4-1-1v-1.8c-1.8-1-3-3-3-5.2 0-3.3 2.7-6 6-6s6 2.7 6 6M8 12c0 .35.05.68.14 1h7.72c.09-.32.14-.65.14-1 0-2.21-1.79-4-4-4s-4 1.79-4 4"/></svg>������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-on-60.svg������������������������0000664�0000000�0000000�00000000556�14753064456�0026747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 21h4v1c0 .6-.4 1-1 1h-2c-.6 0-1-.4-1-1zm-9-8h3v-2H1zm3.9-9.5L3.5 4.9 5.6 7 7 5.6zM13 1h-2v3h2zm7 10v2h3v-2zm-2 1c0 2.2-1.2 4.2-3 5.2V19c0 .6-.4 1-1 1h-4c-.6 0-1-.4-1-1v-1.8c-1.8-1-3-3-3-5.2 0-3.3 2.7-6 6-6s6 2.7 6 6M8 12h8c0-2.21-1.79-4-4-4s-4 1.79-4 4m11.1-8.5L17 5.6 18.4 7l2.1-2.1z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-on-70.svg������������������������0000664�0000000�0000000�00000000574�14753064456�0026750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 5.6 5.6 7 3.5 4.9l1.4-1.4zM13 1h-2v3h2zM1 13h3v-2H1zm9 9c0 .6.4 1 1 1h2c.6 0 1-.4 1-1v-1h-4zm9.1-18.5L17 5.6 18.4 7l2.1-2.1zM18 12c0 2.2-1.2 4.2-3 5.2V19c0 .6-.4 1-1 1h-4c-.6 0-1-.4-1-1v-1.8c-1.8-1-3-3-3-5.2 0-3.3 2.7-6 6-6s6 2.7 6 6m-9.86-1h7.72c-.45-1.72-2-3-3.86-3s-3.41 1.28-3.86 3M20 11v2h3v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-on-80.svg������������������������0000664�0000000�0000000�00000000575�14753064456�0026752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 5.6 5.6 7 3.5 4.9l1.4-1.4zM1 13h3v-2H1zM13 1h-2v3h2zm-3 21c0 .6.4 1 1 1h2c.6 0 1-.4 1-1v-1h-4zm10-11v2h3v-2zm-.9-7.5L17 5.6 18.4 7l2.1-2.1zM18 12c0 2.2-1.2 4.2-3 5.2V19c0 .6-.4 1-1 1h-4c-.6 0-1-.4-1-1v-1.8c-1.8-1-3-3-3-5.2 0-3.3 2.7-6 6-6s6 2.7 6 6m-9.44-2h6.88C14.75 8.81 13.5 8 12 8s-2.75.81-3.44 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-on-90.svg������������������������0000664�0000000�0000000�00000000573�14753064456�0026751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 5.6 5.6 7 3.5 4.9l1.4-1.4zM10 22c0 .6.4 1 1 1h2c.6 0 1-.4 1-1v-1h-4zm-9-9h3v-2H1zM13 1h-2v3h2zm7 10v2h3v-2zm-.9-7.5L17 5.6 18.4 7l2.1-2.1zM18 12c0 2.2-1.2 4.2-3 5.2V19c0 .6-.4 1-1 1h-4c-.6 0-1-.4-1-1v-1.8c-1.8-1-3-3-3-5.2 0-3.3 2.7-6 6-6s6 2.7 6 6m-6-4c-1 0-1.91.38-2.61 1h5.22C13.91 8.38 13 8 12 8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-on-outline.svg�������������������0000664�0000000�0000000�00000000700�14753064456�0030170�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11h3v2h-3zM1 11h3v2H1zM13 1v3h-2V1zM4.92 3.5l2.13 2.14-1.42 1.41L3.5 4.93zm12.03 2.13 2.12-2.13 1.43 1.43-2.13 2.12zM12 6a6 6 0 0 1 6 6c0 2.22-1.21 4.16-3 5.2V19a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-1.8c-1.79-1.04-3-2.98-3-5.2a6 6 0 0 1 6-6m2 15v1a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-1zm-3-3h2v-2.13c1.73-.44 3-2.01 3-3.87a4 4 0 0 0-4-4 4 4 0 0 0-4 4c0 1.86 1.27 3.43 3 3.87z"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-on.svg���������������������������0000664�0000000�0000000�00000000546�14753064456�0026523�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6a6 6 0 0 1 6 6c0 2.22-1.21 4.16-3 5.2V19a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-1.8c-1.79-1.04-3-2.98-3-5.2a6 6 0 0 1 6-6m2 15v1a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-1zm6-10h3v2h-3zM1 11h3v2H1zM13 1v3h-2V1zM4.92 3.5l2.13 2.14-1.42 1.41L3.5 4.93zm12.03 2.13 2.12-2.13 1.43 1.43-2.13 2.12z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-outline.svg����������������������0000664�0000000�0000000�00000000513�14753064456�0027560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a7 7 0 0 1 7 7c0 2.38-1.19 4.47-3 5.74V17a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1v-2.26C6.19 13.47 5 11.38 5 9a7 7 0 0 1 7-7M9 21v-1h6v1a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1m3-17a5 5 0 0 0-5 5c0 2.05 1.23 3.81 3 4.58V16h4v-2.42c1.77-.77 3-2.53 3-4.58a5 5 0 0 0-5-5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-question-outline.svg�������������0000664�0000000�0000000�00000000773�14753064456�0031435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 2c3.9 0 7 3.1 7 7 0 2.4-1.2 4.5-3 5.7V17c0 .6-.4 1-1 1H5c-.6 0-1-.4-1-1v-2.3C2.2 13.5 1 11.4 1 9c0-3.9 3.1-7 7-7M5 21v-1h6v1c0 .6-.4 1-1 1H6c-.6 0-1-.4-1-1M8 4C5.2 4 3 6.2 3 9c0 2.1 1.2 3.8 3 4.6V16h4v-2.4c1.8-.8 3-2.5 3-4.6 0-2.8-2.2-5-5-5m12.5 10.5V16H19v-1.5zm-2-5H17V9c0-1.7 1.3-3 3-3s3 1.3 3 3c0 1-.5 1.9-1.3 2.4l-.3.2c-.6.4-.9 1-.9 1.7v.2H19v-.2c0-1.2.6-2.3 1.6-2.9l.3-.2q.6-.45.6-1.2c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5z"/></svg>�����mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-question.svg���������������������0000664�0000000�0000000�00000000640�14753064456�0027751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 2C4.1 2 1 5.1 1 9c0 2.4 1.2 4.5 3 5.7V17c0 .6.4 1 1 1h6c.6 0 1-.4 1-1v-2.3c1.8-1.3 3-3.4 3-5.7 0-3.9-3.1-7-7-7M5 21c0 .6.4 1 1 1h4c.6 0 1-.4 1-1v-1H5zm15.5-6.5V16H19v-1.5zm-2-5H17V9c0-1.7 1.3-3 3-3s3 1.3 3 3c0 1-.5 1.9-1.3 2.4l-.3.2c-.6.4-.9 1-.9 1.7v.2H19v-.2c0-1.2.6-2.3 1.6-2.9l.3-.2q.6-.45.6-1.2c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5z"/></svg>������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-spot-off.svg���������������������0000664�0000000�0000000�00000000366�14753064456�0027644�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.84 22.73 15.11 17H9v-3c-2.5-1.43-5-3-5-8v-.11L1.11 3l1.28-1.27 19.72 19.73zM22 4V2H5.2l2 2zm-2 2H9.2l7.17 7.17C18.33 11.87 20 10.07 20 6m-7 16h2v-3h-2zm-4 0h2v-3H9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-spot.svg�������������������������0000664�0000000�0000000�00000000243�14753064456�0027066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 19h2v3H9zm4 3h2v-3h-2zM2 2v2h20V2zm7 12v3h6v-3c2.5-1.43 5-3 5-8H4c0 5 2.5 6.57 5 8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-variant-outline.svg��������������0000664�0000000�0000000�00000000741�14753064456�0031225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C8.13 2 5 5.13 5 9c0 2.38 1.19 4.47 3 5.74V17c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2.26c1.81-1.27 3-3.36 3-5.74 0-3.87-3.13-7-7-7m2 11.58V16h-1v-4.59l1.71-1.7c.39-.39.39-1.03 0-1.42s-1.03-.39-1.42 0L12 9.59l-1.29-1.3c-.39-.39-1.03-.39-1.42 0s-.39 1.03 0 1.42l1.71 1.7V16h-1v-2.42C8.23 12.81 7 11.05 7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.05-1.23 3.81-3 4.58M9 20h6v1c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1z"/></svg>�������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb-variant.svg����������������������0000664�0000000�0000000�00000000614�14753064456�0027547�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 20h6v1c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1zM19 9c0 2.38-1.19 4.47-3 5.74V17c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1v-2.26C6.19 13.47 5 11.38 5 9c0-3.87 3.13-7 7-7s7 3.13 7 7m-4.29-.71c-.39-.39-1.03-.39-1.42 0L12 9.59l-1.29-1.3c-.39-.39-1.03-.39-1.42 0s-.39 1.03 0 1.42l1.71 1.7V16h2v-4.59l1.71-1.7c.39-.39.39-1.03 0-1.42"/></svg>��������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightbulb.svg������������������������������0000664�0000000�0000000�00000000357�14753064456�0026111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a7 7 0 0 0-7 7c0 2.38 1.19 4.47 3 5.74V17a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-2.26c1.81-1.27 3-3.36 3-5.74a7 7 0 0 0-7-7M9 21a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-1H9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lighthouse-on.svg��������������������������0000664�0000000�0000000�00000000337�14753064456�0026720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 10V2l9 3v2zm7 0V8h5V4H8V3l4-2 4 2v1h-1v4h1v2h-1.26l-6.3 3.64L9 10zM7 23l.04-.24 9.11-5.26.52 3.38L13 23zm1.05-6.83L15.31 12l.52 3.37-8.4 4.85z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lighthouse.svg�����������������������������0000664�0000000�0000000�00000000336�14753064456�0026305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 10V8h1V4H8V3l4-2 4 2v1h-1v4h1v2h-1.26l-6.3 3.64L9 10zm5-2V4h-2v4zM7 23l.04-.24 9.11-5.26.52 3.38L13 23zm1.05-6.83L15.31 12l.52 3.37-8.4 4.85z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightning-bolt-circle.svg������������������0000664�0000000�0000000�00000000366�14753064456�0030315�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.5 20 4.86-9.73H13V4l-5 9.73h3.5zM12 2c2.75 0 5.1 1 7.05 2.95S22 9.25 22 12s-1 5.1-2.95 7.05S14.75 22 12 22s-5.1-1-7.05-2.95S2 14.75 2 12s1-5.1 2.95-7.05S9.25 2 12 2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightning-bolt-outline.svg�����������������0000664�0000000�0000000�00000000207�14753064456�0030525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 9.47V11h3.76L13 14.53V13H9.24zM13 1 6 15h5v8l7-14h-5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lightning-bolt.svg�������������������������0000664�0000000�0000000�00000000146�14753064456�0027052�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 15H6l7-14v8h5l-7 14z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/line-scan.svg������������������������������0000664�0000000�0000000�00000000420�14753064456�0025775�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 22v-2h3v-3h2v3.5c0 .4-.2.7-.5 1s-.7.5-1 .5zM7 22H3.5c-.4 0-.7-.2-1-.5s-.5-.7-.5-1V17h2v3h3zM17 2h3.5c.4 0 .7.2 1 .5s.5.6.5 1V7h-2V4h-3zM7 2v2H4v3H2V3.5c0-.4.2-.7.5-1s.6-.5 1-.5zm12 9H5v2h14z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lingerie.svg�������������������������������0000664�0000000�0000000�00000000742�14753064456�0025731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 7h-2V2h-2v2.34l-6 2.57-6-2.57V2H4v5H2v2h2.05c.25 2.25 2.14 4 4.45 4 1.42 0 2.68-.67 3.5-1.7.83 1.03 2.08 1.7 3.5 1.7 2.31 0 4.2-1.75 4.45-4H22zM8.5 11A2.5 2.5 0 0 1 6 8.5v-2l5 2.15C10.9 9.96 9.83 11 8.5 11M18 8.5a2.5 2.5 0 0 1-2.5 2.5c-1.33 0-2.4-1.04-2.5-2.35l5-2.15zM2 15v2h1c2.97 0 5.43 2.17 5.91 5h6.18c.48-2.83 2.94-5 5.91-5h1v-2zm11.59 5h-3.18a8.1 8.1 0 0 0-2.12-3h7.42c-.92.82-1.65 1.84-2.12 3"/></svg>������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/link-box-outline.svg�����������������������0000664�0000000�0000000�00000000537�14753064456�0027335�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m0 16H5V5h14zm-8-3h-1c-1.61 0-4-1.06-4-4 0-2.93 2.39-4 4-4h1v2h-1c-.46 0-2 .17-2 2 0 1.9 1.67 2 2 2h1zm3 0h-1v-2h1c.46 0 2-.17 2-2 0-1.9-1.67-2-2-2h-1V8h1c1.61 0 4 1.07 4 4 0 2.94-2.39 4-4 4m1-3H9v-2h6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/link-box-variant-outline.svg���������������0000664�0000000�0000000�00000001456�14753064456�0031000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m0 16H5V5h14zm-5.06-8.94c.63.64.98 1.48.98 2.38s-.35 1.74-.98 2.37L11.73 17c-.65.67-1.51 1-2.37 1S7.64 17.67 7 17c-1.33-1.29-1.33-3.42 0-4.74l1.35-1.36-.01.6c-.01.5.07 1 .23 1.44l.05.15-.4.41a1.597 1.597 0 0 0 0 2.28c.61.62 1.67.62 2.28 0l2.2-2.19c.3-.31.48-.72.48-1.15 0-.44-.18-.83-.48-1.14a.87.87 0 0 1 0-1.24c.33-.33.91-.32 1.24 0m4.06-.7c0 .9-.35 1.74-1 2.38l-1.34 1.36v-.6c.01-.5-.07-1-.23-1.44l-.05-.14.4-.42a1.597 1.597 0 0 0 0-2.28c-.61-.62-1.68-.61-2.28 0l-2.2 2.2c-.3.3-.48.71-.48 1.14 0 .44.18.83.48 1.14.17.16.26.38.26.62s-.09.46-.26.62a.86.86 0 0 1-.62.25c-.22 0-.45-.08-.62-.25a3.36 3.36 0 0 1 0-4.75L12.27 7A3.31 3.31 0 0 1 17 7c.65.62 1 1.46 1 2.36"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/link-box-variant.svg�����������������������0000664�0000000�0000000�00000001437�14753064456�0027322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-5.06 11.81L11.73 17c-.65.67-1.51 1-2.37 1S7.64 17.67 7 17c-1.33-1.29-1.33-3.42 0-4.74l1.35-1.36-.01.6c-.01.5.07 1 .23 1.44l.05.15-.4.41a1.597 1.597 0 0 0 0 2.28c.61.62 1.67.62 2.28 0l2.2-2.19c.3-.31.48-.72.48-1.15 0-.44-.18-.83-.48-1.14a.87.87 0 0 1 0-1.24c.33-.33.91-.32 1.24 0 .63.64.98 1.48.98 2.38s-.35 1.74-.98 2.37M17 11.74l-1.34 1.36v-.6c.01-.5-.07-1-.23-1.44l-.05-.14.4-.42a1.597 1.597 0 0 0 0-2.28c-.61-.62-1.68-.61-2.28 0l-2.2 2.2c-.3.3-.48.71-.48 1.14 0 .44.18.83.48 1.14.17.16.26.38.26.62s-.09.46-.26.62a.86.86 0 0 1-.62.25c-.22 0-.45-.08-.62-.25a3.36 3.36 0 0 1 0-4.75L12.27 7A3.31 3.31 0 0 1 17 7c.65.62 1 1.46 1 2.36s-.35 1.74-1 2.38"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/link-box.svg�������������������������������0000664�0000000�0000000�00000000524�14753064456�0025654�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-8 13h-1c-1.61 0-4-1.06-4-4 0-2.93 2.39-4 4-4h1v2h-1c-.46 0-2 .17-2 2 0 1.9 1.67 2 2 2h1zm4-5v2H9v-2zm-1 5h-1v-2h1c.46 0 2-.17 2-2 0-1.9-1.67-2-2-2h-1V8h1c1.61 0 4 1.07 4 4 0 2.94-2.39 4-4 4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/link-circle-outline.svg��������������������0000664�0000000�0000000�00000001336�14753064456�0030004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 16h1v-2h-1c-.33 0-2-.1-2-2 0-1.83 1.54-2 2-2h1V8h-1c-1.61 0-4 1.07-4 4 0 2.94 2.39 4 4 4m3 0h1c1.61 0 4-1.06 4-4 0-2.93-2.39-4-4-4h-1v2h1c.33 0 2 .1 2 2 0 1.83-1.54 2-2 2h-1zm-4-3h6v-2H9zM8.17 2.76A10.1 10.1 0 0 1 12 2c1.31 0 2.61.26 3.83.76 1.21.5 2.31 1.24 3.24 2.17s1.67 2.03 2.17 3.24c.5 1.22.76 2.52.76 3.83 0 2.65-1.05 5.2-2.93 7.07A9.97 9.97 0 0 1 12 22a10.1 10.1 0 0 1-3.83-.76 10 10 0 0 1-3.24-2.17A9.97 9.97 0 0 1 2 12c0-2.65 1.05-5.2 2.93-7.07.93-.93 2.03-1.67 3.24-2.17m-1.83 14.9C7.84 19.16 9.88 20 12 20s4.16-.84 5.66-2.34S20 14.12 20 12s-.84-4.16-2.34-5.66A8 8 0 0 0 12 4c-2.12 0-4.16.84-5.66 2.34A8 8 0 0 0 4 12c0 2.12.84 4.16 2.34 5.66"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/link-circle.svg����������������������������0000664�0000000�0000000�00000001063�14753064456�0026324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.17 2.76A10.1 10.1 0 0 1 12 2c1.31 0 2.61.26 3.83.76 1.21.5 2.31 1.24 3.24 2.17s1.67 2.03 2.17 3.24c.5 1.22.76 2.52.76 3.83 0 2.65-1.05 5.2-2.93 7.07A9.97 9.97 0 0 1 12 22a10.1 10.1 0 0 1-3.83-.76 10 10 0 0 1-3.24-2.17A9.97 9.97 0 0 1 2 12c0-2.65 1.05-5.2 2.93-7.07.93-.93 2.03-1.67 3.24-2.17M10 16h1v-2h-1c-.33 0-2-.1-2-2 0-1.83 1.54-2 2-2h1V8h-1c-1.61 0-4 1.07-4 4 0 2.94 2.39 4 4 4m3 0h1c1.61 0 4-1.06 4-4 0-2.93-2.39-4-4-4h-1v2h1c.33 0 2 .1 2 2 0 1.83-1.54 2-2 2h-1zm-4-3h6v-2H9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/link-edit.svg������������������������������0000664�0000000�0000000�00000000724�14753064456�0026013�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 22v-2.04l6.13-6.13 2.04 2.05L15.04 22zm8.53-9.85 1.32 1.32c.2.2.2.53 0 .72l-.98.98-2.04-2.04.98-.98c.19-.2.52-.2.72 0m-.99-3.69c.19.19.36.4.52.62l-1.38 1.37C19.15 9.5 18.15 8.9 17 8.9h-4V7h4c1.33 0 2.6.53 3.54 1.46M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-1.33 0-2.6.53-3.54 1.46C2.53 9.4 2 10.67 2 12s.53 2.6 1.46 3.54C4.4 16.47 5.67 17 7 17h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1M8 13h8v-2H8z"/></svg>��������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/link-lock.svg������������������������������0000664�0000000�0000000�00000000551�14753064456�0026014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 16v-.5a2.5 2.5 0 0 0-5 0v.5a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1m-1 0h-3v-.5a1.5 1.5 0 0 1 3 0M7 8.9h4V7H7a5 5 0 0 0 0 10h4v-1.9H7a3.1 3.1 0 0 1 0-6.2M8 11v2h8v-2m-3 4.1V17h2v-1.9M17 7h-4v1.9h4a3.09 3.09 0 0 1 2.94 2.1 5 5 0 0 1 .56 0h1.4A5 5 0 0 0 17 7"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/link-off.svg�������������������������������0000664�0000000�0000000�00000000573�14753064456�0025642�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.43-.98 2.63-2.31 3l1.46 1.44C20.88 15.61 22 13.95 22 12a5 5 0 0 0-5-5m-1 4h-2.19l2 2H16zM2 4.27l3.11 3.11A4.99 4.99 0 0 0 2 12a5 5 0 0 0 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4L20 19.74 3.27 3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/link-plus.svg������������������������������0000664�0000000�0000000�00000000354�14753064456�0026050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 7h4v2H7a3 3 0 0 0-3 3 3 3 0 0 0 3 3h4v2H7a5 5 0 0 1-5-5 5 5 0 0 1 5-5m10 0a5 5 0 0 1 5 5h-2a3 3 0 0 0-3-3h-4V7zm-9 4h8v2H8zm9 1h2v3h3v2h-3v3h-2v-3h-3v-2h3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/link-variant-minus.svg���������������������0000664�0000000�0000000�00000000776�14753064456�0027672�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.6 13.4a1 1 0 0 1-1.4 1.4 4.8 4.8 0 0 1 0-7l3.5-3.6a5.1 5.1 0 0 1 7.1 0 5.1 5.1 0 0 1 0 7.1l-1.5 1.5a6.4 6.4 0 0 0-.4-2.4l.5-.5a3.2 3.2 0 0 0 0-4.3 3.2 3.2 0 0 0-4.3 0l-3.5 3.6a2.9 2.9 0 0 0 0 4.2M23 18v2h-8v-2m1.2-4.3a4.8 4.8 0 0 0-1.4-4.5 1 1 0 0 0-1.4 1.4 2.9 2.9 0 0 1 0 4.2l-3.5 3.6a3.2 3.2 0 0 1-4.3 0 3.2 3.2 0 0 1 0-4.3l.5-.4a7.3 7.3 0 0 1-.4-2.5l-1.5 1.5a5.1 5.1 0 0 0 0 7.1 5.1 5.1 0 0 0 7.1 0l1.8-1.8a6 6 0 0 1 3.1-4.3"/></svg>��mkdocs-material-9.6.4/material/templates/.icons/material/link-variant-off.svg�����������������������0000664�0000000�0000000�00000001201�14753064456�0027271�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5.27 3.28 4 20 20.72 18.73 22l-4.83-4.83-2.61 2.61a5.003 5.003 0 0 1-7.07 0 5.003 5.003 0 0 1 0-7.07l1.49-1.49c-.01.82.12 1.64.4 2.43l-.47.47a2.98 2.98 0 0 0 0 4.24 2.98 2.98 0 0 0 4.24 0l2.62-2.6-1.62-1.61c-.01.24-.11.49-.29.68-.39.39-1.03.39-1.42 0A4.97 4.97 0 0 1 7.72 11zm10.71-1.05a5.003 5.003 0 0 1 7.07 0 5.003 5.003 0 0 1 0 7.07l-1.49 1.49c.01-.82-.12-1.64-.4-2.42l.47-.48a2.98 2.98 0 0 0 0-4.24 2.98 2.98 0 0 0-4.24 0l-3.33 3.33-1.41-1.42zm.7 4.95c.39-.39 1.03-.39 1.42 0a5 5 0 0 1 1.23 5.06l-1.78-1.77c-.05-.68-.34-1.35-.87-1.87a.973.973 0 0 1 0-1.42"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/link-variant-plus.svg����������������������0000664�0000000�0000000�00000001023�14753064456�0027504�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.6 13.4a1 1 0 0 1-1.4 1.4 4.8 4.8 0 0 1 0-7l3.5-3.6a5.1 5.1 0 0 1 7.1 0 5.1 5.1 0 0 1 0 7.1l-1.5 1.5a6.4 6.4 0 0 0-.4-2.4l.5-.5a3.2 3.2 0 0 0 0-4.3 3.2 3.2 0 0 0-4.3 0l-3.5 3.6a2.9 2.9 0 0 0 0 4.2M23 18v2h-3v3h-2v-3h-3v-2h3v-3h2v3m-3.8-4.3a4.8 4.8 0 0 0-1.4-4.5 1 1 0 0 0-1.4 1.4 2.9 2.9 0 0 1 0 4.2l-3.5 3.6a3.2 3.2 0 0 1-4.3 0 3.2 3.2 0 0 1 0-4.3l.5-.4a7.3 7.3 0 0 1-.4-2.5l-1.5 1.5a5.1 5.1 0 0 0 0 7.1 5.1 5.1 0 0 0 7.1 0l1.8-1.8a6 6 0 0 1 3.1-4.3"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/link-variant-remove.svg��������������������0000664�0000000�0000000�00000001120�14753064456�0030014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.6 13.4a1 1 0 0 1-1.4 1.4 4.8 4.8 0 0 1 0-7l3.5-3.6a5.1 5.1 0 0 1 7.1 0 5.1 5.1 0 0 1 0 7.1l-1.5 1.5a6.4 6.4 0 0 0-.4-2.4l.5-.5a3.2 3.2 0 0 0 0-4.3 3.2 3.2 0 0 0-4.3 0l-3.5 3.6a2.9 2.9 0 0 0 0 4.2m5.6.3a4.8 4.8 0 0 0-1.4-4.5 1 1 0 0 0-1.4 1.4 2.9 2.9 0 0 1 0 4.2l-3.5 3.6a3.2 3.2 0 0 1-4.3 0 3.2 3.2 0 0 1 0-4.3l.5-.4a7.3 7.3 0 0 1-.4-2.5l-1.5 1.5a5.1 5.1 0 0 0 0 7.1 5.1 5.1 0 0 0 7.1 0l1.8-1.8a6 6 0 0 1 3.1-4.3m4.9 1.8L19 17.6l-2.1-2.1-1.4 1.4 2.1 2.1-2.1 2.1 1.4 1.4 2.1-2.1 2.1 2.1 1.4-1.4-2.1-2.1 2.1-2.1Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/link-variant.svg���������������������������0000664�0000000�0000000�00000001134�14753064456�0026526�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.59 13.41c.41.39.41 1.03 0 1.42-.39.39-1.03.39-1.42 0a5.003 5.003 0 0 1 0-7.07l3.54-3.54a5.003 5.003 0 0 1 7.07 0 5.003 5.003 0 0 1 0 7.07l-1.49 1.49c.01-.82-.12-1.64-.4-2.42l.47-.48a2.98 2.98 0 0 0 0-4.24 2.98 2.98 0 0 0-4.24 0l-3.53 3.53a2.98 2.98 0 0 0 0 4.24m2.82-4.24c.39-.39 1.03-.39 1.42 0a5.003 5.003 0 0 1 0 7.07l-3.54 3.54a5.003 5.003 0 0 1-7.07 0 5.003 5.003 0 0 1 0-7.07l1.49-1.49c-.01.82.12 1.64.4 2.43l-.47.47a2.98 2.98 0 0 0 0 4.24 2.98 2.98 0 0 0 4.24 0l3.53-3.53a2.98 2.98 0 0 0 0-4.24.973.973 0 0 1 0-1.42"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/link.svg�����������������������������������0000664�0000000�0000000�00000000431�14753064456�0025063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7a5 5 0 0 0-5 5 5 5 0 0 0 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1M8 13h8v-2H8zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4a5 5 0 0 0 5-5 5 5 0 0 0-5-5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/linkedin.svg�������������������������������0000664�0000000�0000000�00000000652�14753064456�0025730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm-.5 15.5v-5.3a3.26 3.26 0 0 0-3.26-3.26c-.85 0-1.84.52-2.32 1.3v-1.11h-2.79v8.37h2.79v-4.93c0-.77.62-1.4 1.39-1.4a1.4 1.4 0 0 1 1.4 1.4v4.93zM6.88 8.56a1.68 1.68 0 0 0 1.68-1.68c0-.93-.75-1.69-1.68-1.69a1.69 1.69 0 0 0-1.69 1.69c0 .93.76 1.68 1.69 1.68m1.39 9.94v-8.37H5.5v8.37z"/></svg>��������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/linux-mint.svg�����������������������������0000664�0000000�0000000�00000001372�14753064456�0026237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3.23V6.8h1.5c1.09 0 1.28.73 1.28 1.75v6.31c0 3.26 2.87 5.91 6.4 5.91h8.72c1.1 0 2.1-.7 2.1-1.77V9.2c0-3.27-2.87-5.92-6.4-5.92h-3.67v-.01zm4.62 2.23h1.75v8.99c0 1.2.82 2.14 1.79 2.14l5.97.02c1.25 0 2.22-.86 2.22-1.88l-.01-4.77c0-.31-.1-.55-.34-.77a.94.94 0 0 0-.75-.33c-.31 0-.54.1-.75.33-.23.22-.34.46-.34.77v4.09h-1.85V9.96c0-.31-.1-.55-.31-.77-.23-.23-.46-.33-.78-.33-.3 0-.54.1-.76.33-.22.22-.32.46-.32.77v4.09h-1.85V9.96c0-.81.29-1.52.86-2.1.57-.57 1.28-.86 2.07-.86.78 0 1.46.28 2.02.82.55-.54 1.23-.82 2.01-.82.8 0 1.51.29 2.07.86.57.58.87 1.29.87 2.1l.01 5.1c-.09.85-.45 1.61-1.07 2.25-.73.73-1.63 1.11-2.63 1.11H9.83c-.83-.08-1.54-.47-2.14-1.06-.69-.71-1.07-1.57-1.07-2.57z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/linux.svg����������������������������������0000664�0000000�0000000�00000001314�14753064456�0025266�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.62 8.35c-.42.28-1.75 1.04-1.95 1.19-.39.31-.75.29-1.14-.01-.2-.16-1.53-.92-1.95-1.19-.48-.31-.45-.7.08-.92 1.64-.69 3.28-.64 4.91.03.49.21.51.6.05.9m7.22 7.28c-.93-2.09-2.2-3.99-3.84-5.66a4.3 4.3 0 0 1-1.06-1.88c-.1-.33-.17-.67-.24-1.01-.2-.88-.29-1.78-.7-2.61-.73-1.58-2-2.4-3.84-2.47-1.81.05-3.16.81-3.95 2.4-.21.43-.36.88-.46 1.34-.17.76-.32 1.55-.5 2.32-.15.65-.45 1.21-.96 1.71-1.61 1.57-2.9 3.37-3.88 5.35-.14.29-.28.58-.37.88-.19.66.29 1.12.99.96.44-.09.88-.18 1.3-.31.41-.15.57-.05.67.35.65 2.15 2.07 3.66 4.24 4.5 4.12 1.56 8.93-.66 9.97-4.58.07-.27.17-.37.47-.27.46.14.93.24 1.4.35.49.09.85-.16.92-.64.03-.26-.06-.49-.16-.73"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lipstick.svg�������������������������������0000664�0000000�0000000�00000000376�14753064456�0025760�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 23c-.55 0-1-.45-1-1v-9c0-.55.45-1 1-1h6c.55 0 1 .45 1 1v9c0 .55-.45 1-1 1zm1-12c-.55 0-1-.45-1-1V5.25S11 3 11.75 1c1.08.67 2.17 1.33 2.71 2.83S15 7.67 15 10c0 .55-.45 1-1 1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/liquid-spot.svg����������������������������0000664�0000000�0000000�00000001635�14753064456�0026407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.14 16.7c-.91 1.51-2.06 1.03-3.14.39s-2.1-1.41-2.75-.5c-.71.78-.16 2.03.12 3.13.28 1.11.3 2.07-1.47 2.28-1.4-.19-1.32-1.35-1.09-2.58s.59-2.53-.31-2.99c-.72-.48-1.22.35-1.85 1.17-.65.81-1.39 1.6-2.61 1.02-1.1-.91-.68-1.44-.1-2.12s1.33-1.59.9-3.19c-.18-.65-1.08-.5-1.97-.52-.87-.02-1.75-.2-1.84-1.5-.07-.79.52-1.11 1.13-1.36.62-.25 1.25-.43 1.26-1.06.03-.61-.38-1.04-.64-1.49s-.37-.92.25-1.62c1.05-.86 1.89-.13 2.73.66s1.67 1.62 2.7.97c.82-.54.07-1.49-.51-2.42s-.99-1.82.51-2.23c1.3-.36 1.8.53 2.25 1.56.46 1.03.86 2.2 1.96 2.41 1.57.29 2.71-1.55 3.8-3.01s2.16-2.55 3.53-.75c1.5 1.89.07 2.77-1.6 3.55-1.67.73-3.59 1.37-3.13 2.78.27.82 1.15.37 2.08.06.92-.31 1.91-.48 2.39.93.51 1.49-.7 1.83-2.06 1.97s-2.88.08-2.98.76c-.11.71.8 1 1.59 1.42.79.43 1.46 1 .85 2.28M20.5 19c-.95 0-1.44-.74-1.44-1.5s.48-1.5 1.44-1.5c1 0 1.5.74 1.5 1.5s-.5 1.5-1.5 1.5"/></svg>���������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/liquor.svg���������������������������������0000664�0000000�0000000�00000000650�14753064456�0025444�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 14c0 1.3.8 2.4 2 2.8V20H3v2h6v-2H7v-3.2c1.2-.4 2-1.5 2-2.8V6H3zm2-6h2v3H5zm15.6.5-1-.3c-.3-.1-.6-.5-.6-.9V3c0-.5-.5-1-1-1h-3c-.6 0-1 .5-1 1v4.3c0 .4-.3.8-.7 1l-.9.3c-.8.3-1.4 1-1.4 1.9V20c0 1.1.9 2 2 2h7c1.1 0 2-.9 2-2v-9.6c0-.8-.5-1.6-1.4-1.9M16 4h1v1h-1zm-3 6.4.9-.3c1.3-.4 2.1-1.5 2.1-2.8V7h1v.3c0 1.3.8 2.4 2 2.8l1 .3V12h-7zm7 9.6h-7v-2h7z"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/list-box-outline.svg�����������������������0000664�0000000�0000000�00000000361�14753064456�0027346�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 15h6v2h-6zM9 7H7v2h2zm2 6h6v-2h-6zm0-4h6V7h-6zm-2 2H7v2h2zm12-6v14c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2m-2 0H5v14h14zM9 15H7v2h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/list-box.svg�������������������������������0000664�0000000�0000000�00000000341�14753064456�0025667�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2M7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7zm10 2h-6v-2h6zm0-4h-6v-2h6zm0-4h-6V7h6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/list-status.svg����������������������������0000664�0000000�0000000�00000000366�14753064456�0026431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 11 13 7.5l1.4-1.4 2.1 2.1L20.7 4l1.4 1.4zM11 7H2v2h9zm10 6.4L19.6 12 17 14.6 14.4 12 13 13.4l2.6 2.6-2.6 2.6 1.4 1.4 2.6-2.6 2.6 2.6 1.4-1.4-2.6-2.6zM11 15H2v2h9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/litecoin.svg�������������������������������0000664�0000000�0000000�00000000453�14753064456�0025740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.55 15.92.61-2.14 1.65-.59 1.44-5.56-1.69.68L16.25 2H8l-2.62 9.77-1.66.57-1.5 5.57L4 17.27 2.66 22h17.5l1.62-6.08zM19.39 21H4l1.46-5.35-1.74.65.86-3.19 1.66-.57L8.74 3H15l-1.87 7 1.7-.7-.83 3.12-1.67.58-1.11 3.91h9.28z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/loading.svg��������������������������������0000664�0000000�0000000�00000000166�14753064456�0025550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4V2A10 10 0 0 0 2 12h2a8 8 0 0 1 8-8"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/location-enter.svg�������������������������0000664�0000000�0000000�00000000245�14753064456�0027054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14 12-4-4v3H2v2h8v3m12-4a10 10 0 0 1-19.54 3h2.13a8 8 0 1 0 0-6H2.46A10 10 0 0 1 22 12"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/location-exit.svg��������������������������0000664�0000000�0000000�00000000216�14753064456�0026706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22 12-4-4v3h-8v2h8v3m2 2a10 10 0 1 1 0-12h-2.73a8 8 0 1 0 0 12Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-alert-outline.svg���������������������0000664�0000000�0000000�00000000472�14753064456�0027645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m6 3V10H4v10zm0-12c1.1 0 2 .9 2 2v10c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V10c0-1.1.9-2 2-2h1V6c0-2.8 2.2-5 5-5s5 2.2 5 5v2zm-6-5C8.3 3 7 4.3 7 6v2h6V6c0-1.7-1.3-3-3-3m12 4h-2v6h2zm0 8h-2v2h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-alert.svg�����������������������������0000664�0000000�0000000�00000000456�14753064456�0026172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 17c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2m6-9c1.1 0 2 .9 2 2v10c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V10c0-1.1.9-2 2-2h1V6c0-2.8 2.2-5 5-5s5 2.2 5 5v2zm-6-5C8.3 3 7 4.3 7 6v2h6V6c0-1.7-1.3-3-3-3m12 10h-2V7h2zm0 4h-2v-2h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-check-outline.svg���������������������0000664�0000000�0000000�00000000622�14753064456�0027610�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 15c0 1.11-.89 2-2 2a2 2 0 0 1-2-2c0-1.11.89-2 2-2a2 2 0 0 1 2 2m-.91 5c.12.72.37 1.39.72 2H6a2 2 0 0 1-2-2V10c0-1.11.89-2 2-2h1V6c0-2.76 2.24-5 5-5s5 2.24 5 5v2h1a2 2 0 0 1 2 2v3.09c-.33-.05-.66-.09-1-.09s-.67.04-1 .09V10H6v10zM9 8h6V6c0-1.66-1.34-3-3-3S9 4.34 9 6zm12.34 7.84-3.59 3.59-1.59-1.59L15 19l2.75 3 4.75-4.75z"/></svg>��������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-check.svg�����������������������������0000664�0000000�0000000�00000000555�14753064456�0026140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13c.34 0 .67.04 1 .09V10a2 2 0 0 0-2-2h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6a2 2 0 0 0-2 2v10c0 1.11.89 2 2 2h7.81c-.51-.88-.81-1.9-.81-3 0-3.31 2.69-6 6-6M9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9zm3 11a2 2 0 1 1 2-2c0 1.11-.89 2-2 2m10.5.25L17.75 22 15 19l1.16-1.16 1.59 1.59 3.59-3.59z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-clock.svg�����������������������������0000664�0000000�0000000�00000000607�14753064456�0026154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.5 2C6 2 4 4 4 6.5V7c-1.11 0-2 .89-2 2v9c0 1.11.89 2 2 2h4.72c1.46 1.29 3.34 2 5.28 2a8 8 0 0 0 8-8 8 8 0 0 0-8-8c-.34 0-.68.03-1 .08C12.76 3.77 10.82 2 8.5 2m0 2A2.5 2.5 0 0 1 11 6.5V7H6v-.5A2.5 2.5 0 0 1 8.5 4M14 8a6 6 0 0 1 6 6 6 6 0 0 1-6 6 6 6 0 0 1-6-6 6 6 0 0 1 6-6m-1 2v5l3.64 2.19.78-1.29-2.92-1.75V10z"/></svg>�������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-minus-outline.svg���������������������0000664�0000000�0000000�00000000550�14753064456�0027666�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 15c0 1.11-.89 2-2 2a2 2 0 0 1-2-2c0-1.11.89-2 2-2a2 2 0 0 1 2 2m-.91 5c.12.72.37 1.39.72 2H6a2 2 0 0 1-2-2V10c0-1.11.89-2 2-2h1V6c0-2.76 2.24-5 5-5s5 2.24 5 5v2h1a2 2 0 0 1 2 2v3.09c-.33-.05-.66-.09-1-.09s-.67.04-1 .09V10H6v10zM9 8h6V6c0-1.66-1.34-3-3-3S9 4.34 9 6zm6 10v2h8v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-minus.svg�����������������������������0000664�0000000�0000000�00000000505�14753064456�0026211�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13c.34 0 .67.04 1 .09V10a2 2 0 0 0-2-2h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6a2 2 0 0 0-2 2v10c0 1.11.89 2 2 2h7.81c-.51-.88-.81-1.9-.81-3 0-3.31 2.69-6 6-6M9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9zm3 11a2 2 0 1 1 2-2c0 1.11-.89 2-2 2m11 1v2h-8v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-off-outline.svg�����������������������0000664�0000000�0000000�00000000656�14753064456�0027314�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 5.82 7.36 4.16A4.99 4.99 0 0 1 12 1c2.76 0 5 2.24 5 5v2h1a2 2 0 0 1 2 2v6.8l-2-2V10h-4.8l-2-2H15V6c0-1.66-1.34-3-3-3-1.59 0-2.89 1.25-3 2.82m13.11 15.64-1.27 1.27-1.38-1.38c-.36.4-.88.65-1.46.65H6a2 2 0 0 1-2-2V10c0-1.11.89-2 2-2h.11l-5-5 1.28-1.27zM18 19.89l-4.15-4.15C13.56 16.5 12.84 17 12 17a2 2 0 0 1-2-2c0-.85.5-1.56 1.26-1.85L8.11 10H6v10h12z"/></svg>����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-off.svg�������������������������������0000664�0000000�0000000�00000000626�14753064456�0025634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 5.82 7.36 4.16A4.99 4.99 0 0 1 12 1c2.76 0 5 2.24 5 5v2h1a2 2 0 0 1 2 2v6.8L11.2 8H15V6c0-1.66-1.34-3-3-3-1.59 0-2.89 1.25-3 2.82m13.11 15.64-1.27 1.27-1.38-1.38c-.36.4-.88.65-1.46.65H6c-1.11 0-2-.89-2-2V10a2 2 0 0 1 2-2h.11l-5-5 1.28-1.27zm-8.26-5.72-2.59-2.59C10.5 13.44 10 14.16 10 15a2 2 0 0 0 2 2c.84 0 1.56-.5 1.85-1.26"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-open-alert-outline.svg����������������0000664�0000000�0000000�00000000454�14753064456�0030604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 20V10H4v10zm0-12c1.1 0 2 .9 2 2v10c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V10c0-1.1.9-2 2-2h9V6c0-1.7-1.3-3-3-3S7 4.3 7 6H5c0-2.8 2.2-5 5-5s5 2.2 5 5v2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2M22 7h-2v6h2zm0 8h-2v2h2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-open-alert.svg������������������������0000664�0000000�0000000�00000000436�14753064456�0027127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 8c1.1 0 2 .9 2 2v10c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V10c0-1.1.9-2 2-2h9V6c0-1.7-1.3-3-3-3S7 4.3 7 6H5c0-2.8 2.2-5 5-5s5 2.2 5 5v2zm-6 9c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2m12-4h-2V7h2zm0 4h-2v-2h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-open-check-outline.svg����������������0000664�0000000�0000000�00000000576�14753064456�0030557�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 15c0 1.11-.89 2-2 2s-2-.89-2-2 .9-2 2-2 2 .9 2 2m-8 5V10h12v3.09c.33-.05.66-.09 1-.09s.67.04 1 .09V10a2 2 0 0 0-2-2h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h2c0-1.66 1.34-3 3-3s3 1.34 3 3v2H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h7.81c-.35-.61-.59-1.28-.72-2zm15.34-4.16-3.59 3.59-1.59-1.59L15 19l2.75 3 4.75-4.75z"/></svg>����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-open-check.svg������������������������0000664�0000000�0000000�00000000562�14753064456�0027075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13c.34 0 .67.04 1 .09V10a2 2 0 0 0-2-2h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h2c0-1.66 1.34-3 3-3s3 1.34 3 3v2H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h7.81c-.51-.88-.81-1.9-.81-3 0-3.31 2.69-6 6-6m-7 4c-1.1 0-2-.89-2-2s.9-2 2-2 2 .9 2 2-.89 2-2 2m10.5.25L17.75 22 15 19l1.16-1.16 1.59 1.59 3.59-3.59z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-open-minus-outline.svg����������������0000664�0000000�0000000�00000000523�14753064456�0030625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 15c0 1.11-.89 2-2 2s-2-.89-2-2 .9-2 2-2 2 .9 2 2m-8 5V10h12v3.09c.33-.05.66-.09 1-.09s.67.04 1 .09V10a2 2 0 0 0-2-2h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h2c0-1.66 1.34-3 3-3s3 1.34 3 3v2H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h7.81c-.35-.61-.59-1.28-.72-2zm9-2v2h8v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-open-minus.svg������������������������0000664�0000000�0000000�00000000512�14753064456�0027146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13c.34 0 .67.04 1 .09V10a2 2 0 0 0-2-2h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h2c0-1.66 1.34-3 3-3s3 1.34 3 3v2H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h7.81c-.51-.88-.81-1.9-.81-3 0-3.31 2.69-6 6-6m-7 4c-1.1 0-2-.89-2-2s.9-2 2-2 2 .9 2 2-.89 2-2 2m11 1v2h-8v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-open-outline.svg����������������������0000664�0000000�0000000�00000000440�14753064456�0027472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 20V10H6v10zm0-12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V10a2 2 0 0 1 2-2h9V6a3 3 0 0 0-3-3 3 3 0 0 0-3 3H7a5 5 0 0 1 5-5 5 5 0 0 1 5 5v2zm-6 9a2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-open-plus-outline.svg�����������������0000664�0000000�0000000�00000000550�14753064456�0030455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 15c0 1.11-.89 2-2 2s-2-.89-2-2 .9-2 2-2 2 .9 2 2m-8 5V10h12v3.09c.33-.05.66-.09 1-.09s.67.04 1 .09V10a2 2 0 0 0-2-2h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h2c0-1.66 1.34-3 3-3s3 1.34 3 3v2H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h7.81c-.35-.61-.59-1.28-.72-2zm14-2v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-open-plus.svg�������������������������0000664�0000000�0000000�00000000536�14753064456�0027004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13c.34 0 .67.04 1 .09V10a2 2 0 0 0-2-2h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h2c0-1.66 1.34-3 3-3s3 1.34 3 3v2H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h7.81c-.51-.88-.81-1.9-.81-3 0-3.31 2.69-6 6-6m-7 4c-1.1 0-2-.89-2-2s.9-2 2-2 2 .9 2 2-.89 2-2 2m11 1v2h-3v3h-2v-3h-3v-2h3v-3h2v3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-open-remove-outline.svg���������������0000664�0000000�0000000�00000000677�14753064456�0031001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 15c0 1.11-.89 2-2 2s-2-.89-2-2 .9-2 2-2 2 .9 2 2m-8 5V10h12v3.09c.33-.05.66-.09 1-.09s.67.04 1 .09V10a2 2 0 0 0-2-2h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h2c0-1.66 1.34-3 3-3s3 1.34 3 3v2H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h7.81c-.35-.61-.59-1.28-.72-2zm16.54-3.12-1.42-1.41L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19z"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-open-remove.svg�����������������������0000664�0000000�0000000�00000000661�14753064456�0027315�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13c.34 0 .67.04 1 .09V10a2 2 0 0 0-2-2h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h2c0-1.66 1.34-3 3-3s3 1.34 3 3v2H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h7.81c-.51-.88-.81-1.9-.81-3 0-3.31 2.69-6 6-6m-7 4c-1.1 0-2-.89-2-2s.9-2 2-2 2 .9 2 2-.89 2-2 2m8.41 2 2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.41-1.42L17.59 19l-2.12-2.12 1.41-1.41L19 17.59l2.12-2.12 1.42 1.41z"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-open-variant-outline.svg��������������0000664�0000000�0000000�00000000460�14753064456�0031136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 13a2 2 0 0 1 2 2c0 1.11-.89 2-2 2s-2-.89-2-2 .9-2 2-2m8-12c-2.76 0-5 2.24-5 5v2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2h-1V6c0-1.66 1.34-3 3-3s3 1.34 3 3v2h2V6c0-2.76-2.24-5-5-5m-2 9v10H4V10z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-open-variant.svg����������������������0000664�0000000�0000000�00000000433�14753064456�0027461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 1c-2.76 0-5 2.24-5 5v2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12c1.11 0 2-.89 2-2V10a2 2 0 0 0-2-2h-1V6c0-1.66 1.34-3 3-3s3 1.34 3 3v2h2V6c0-2.76-2.24-5-5-5m-8 12a2 2 0 0 1 2 2c0 1.11-.89 2-2 2a2 2 0 1 1 0-4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-open.svg������������������������������0000664�0000000�0000000�00000000421�14753064456�0026014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 8a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V10a2 2 0 0 1 2-2h9V6a3 3 0 0 0-3-3 3 3 0 0 0-3 3H7a5 5 0 0 1 5-5 5 5 0 0 1 5 5v2zm-6 9a2 2 0 0 0 2-2 2 2 0 0 0-2-2 2 2 0 0 0-2 2 2 2 0 0 0 2 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-outline.svg���������������������������0000664�0000000�0000000�00000000454�14753064456�0026540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 17a2 2 0 0 1-2-2c0-1.11.89-2 2-2a2 2 0 0 1 2 2 2 2 0 0 1-2 2m6 3V10H6v10zm0-12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V10c0-1.11.89-2 2-2h1V6a5 5 0 0 1 5-5 5 5 0 0 1 5 5v2zm-6-5a3 3 0 0 0-3 3v2h6V6a3 3 0 0 0-3-3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-pattern.svg���������������������������0000664�0000000�0000000�00000000747�14753064456�0026543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 3a4 4 0 0 1 4 4c0 1.86-1.27 3.43-3 3.87v2.26c.37.09.72.24 1.04.43l4.52-4.52C13.2 8.44 13 7.75 13 7a4 4 0 0 1 4-4 4 4 0 0 1 4 4 4 4 0 0 1-4 4c-.74 0-1.43-.2-2-.55L10.45 15c.35.57.55 1.26.55 2a4 4 0 0 1-4 4 4 4 0 0 1-4-4c0-1.86 1.27-3.43 3-3.87v-2.26C4.27 10.43 3 8.86 3 7a4 4 0 0 1 4-4m10 10a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-percent-open-outline.svg��������������0000664�0000000�0000000�00000000617�14753064456�0031136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 11c.8 0 1.5.7 1.5 1.5S10.3 14 9.5 14 8 13.3 8 12.5 8.7 11 9.5 11m5 8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5m-5.3.2-1.4-1.4 7.1-7.1 1.4 1.4zM18 8h-1V6c0-2.8-2.2-5-5-5S7 3.2 7 6h2c0-1.7 1.3-3 3-3s3 1.3 3 3v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2m0 12H6V10h12z"/></svg>�����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-percent-open-variant-outline.svg������0000664�0000000�0000000�00000000631�14753064456�0032574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 11c.8 0 1.5.7 1.5 1.5S8.3 14 7.5 14 6 13.3 6 12.5 6.7 11 7.5 11m5 8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5m-5.3.2-1.4-1.4 7.1-7.1 1.4 1.4zM18 1c-2.8 0-5 2.2-5 5v2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2h-1V6c0-1.7 1.3-3 3-3s3 1.3 3 3v2h2V6c0-2.8-2.2-5-5-5m-2 9v10H4V10z"/></svg>�������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-percent-open-variant.svg��������������0000664�0000000�0000000�00000000613�14753064456�0031117�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 1c-2.8 0-5 2.2-5 5v2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2h-1V6c0-1.7 1.3-3 3-3s3 1.3 3 3v2h2V6c0-2.8-2.2-5-5-5M7.5 11c.8 0 1.5.7 1.5 1.5S8.3 14 7.5 14 6 13.3 6 12.5 6.7 11 7.5 11m5 8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5m-5.3.2-1.4-1.4 7.1-7.1 1.4 1.4z"/></svg>���������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-percent-open.svg����������������������0000664�0000000�0000000�00000000601�14753064456�0027452�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 8h-1V6c0-2.8-2.2-5-5-5S7 3.2 7 6h2c0-1.7 1.3-3 3-3s3 1.3 3 3v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2m-8.5 3c.8 0 1.5.7 1.5 1.5S10.3 14 9.5 14 8 13.3 8 12.5 8.7 11 9.5 11m5 8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5m-5.3.2-1.4-1.4 7.1-7.1 1.4 1.4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-percent-outline.svg�������������������0000664�0000000�0000000�00000000625�14753064456�0030176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 8h-1V6c0-2.8-2.2-5-5-5S7 3.2 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2M9 6c0-1.7 1.3-3 3-3s3 1.3 3 3v2H9zm9 14H6V10h12zm-7-7.5c0 .8-.7 1.5-1.5 1.5S8 13.3 8 12.5 8.7 11 9.5 11s1.5.7 1.5 1.5m5 5c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5.7-1.5 1.5-1.5 1.5.7 1.5 1.5m.2-5.3-7.1 7.1-1.4-1.4 7.1-7.1z"/></svg>�����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-percent.svg���������������������������0000664�0000000�0000000�00000000606�14753064456�0026520�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 8h-1V6c0-2.8-2.2-5-5-5S7 3.2 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2M9 6c0-1.7 1.3-3 3-3s3 1.3 3 3v2H9zm.5 5c.8 0 1.5.7 1.5 1.5S10.3 14 9.5 14 8 13.3 8 12.5 8.7 11 9.5 11m5 8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5m-5.3.2-1.4-1.4 7.1-7.1 1.4 1.4z"/></svg>��������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-plus-outline.svg����������������������0000664�0000000�0000000�00000000600�14753064456�0027512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 20V10h12v3.09c.33-.05.66-.09 1-.09s.67.04 1 .09V10a2 2 0 0 0-2-2h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.11 0-2 .89-2 2v10a2 2 0 0 0 2 2h7.81c-.35-.61-.59-1.28-.72-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9zm5 9c0 1.11-.89 2-2 2a2 2 0 0 1-2-2c0-1.11.89-2 2-2a2 2 0 0 1 2 2m9 3v2h-3v3h-2v-3h-3v-2h3v-3h2v3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-plus.svg������������������������������0000664�0000000�0000000�00000000531�14753064456�0026040�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13c.34 0 .67.04 1 .09V10a2 2 0 0 0-2-2h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6a2 2 0 0 0-2 2v10c0 1.11.89 2 2 2h7.81c-.51-.88-.81-1.9-.81-3 0-3.31 2.69-6 6-6M9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9zm3 11a2 2 0 1 1 2-2c0 1.11-.89 2-2 2m11 1v2h-3v3h-2v-3h-3v-2h3v-3h2v3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-question.svg��������������������������0000664�0000000�0000000�00000001151�14753064456�0026723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1a5 5 0 0 0-5 5v2H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V10a2 2 0 0 0-2-2h-1V6a5 5 0 0 0-5-5m0 1.9c1.71 0 3.1 1.39 3.1 3.1v2H8.9V6c0-1.71 1.39-3.1 3.1-3.1m.19 7.6c.94 0 1.69.21 2.23.62q.81.63.81 1.68c0 .44-.15.83-.44 1.2-.29.36-.67.64-1.13.85-.26.15-.43.3-.52.47-.09.18-.14.4-.14.68h-2c0-.5.1-.84.29-1.08.21-.24.55-.52 1.07-.84.26-.14.47-.32.64-.54.14-.21.22-.46.22-.74 0-.3-.09-.52-.27-.69-.18-.18-.45-.26-.76-.26-.27 0-.49.07-.69.21-.16.14-.26.35-.26.63H9.27c-.05-.69.23-1.29.78-1.65.54-.36 1.25-.54 2.14-.54M11 17h2v2h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-remove-outline.svg��������������������0000664�0000000�0000000�00000000723�14753064456�0030032�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 15c0 1.11-.89 2-2 2a2 2 0 0 1-2-2c0-1.11.89-2 2-2a2 2 0 0 1 2 2m-.91 5c.12.72.37 1.39.72 2H6a2 2 0 0 1-2-2V10c0-1.11.89-2 2-2h1V6c0-2.76 2.24-5 5-5s5 2.24 5 5v2h1a2 2 0 0 1 2 2v3.09c-.33-.05-.66-.09-1-.09s-.67.04-1 .09V10H6v10zM9 8h6V6c0-1.66-1.34-3-3-3S9 4.34 9 6zm13.54 8.88-1.42-1.41L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19z"/></svg>���������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-remove.svg����������������������������0000664�0000000�0000000�00000000654�14753064456�0026360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13c.34 0 .67.04 1 .09V10a2 2 0 0 0-2-2h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6a2 2 0 0 0-2 2v10c0 1.11.89 2 2 2h7.81c-.51-.88-.81-1.9-.81-3 0-3.31 2.69-6 6-6M9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9zm3 11a2 2 0 1 1 2-2c0 1.11-.89 2-2 2m8.41 2 2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.41-1.42L17.59 19l-2.12-2.12 1.41-1.41L19 17.59l2.12-2.12 1.42 1.41z"/></svg>������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-reset.svg�����������������������������0000664�0000000�0000000�00000001033�14753064456�0026175�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.63 2c5.53 0 10.01 4.5 10.01 10s-4.48 10-10.01 10c-3.51 0-6.58-1.82-8.37-4.57l1.58-1.25C7.25 18.47 9.76 20 12.64 20a8 8 0 0 0 8-8 8 8 0 0 0-8-8C8.56 4 5.2 7.06 4.71 11h2.76l-3.74 3.73L0 11h2.69c.5-5.05 4.76-9 9.94-9m2.96 8.24c.5.01.91.41.91.92v4.61c0 .5-.41.92-.92.92h-5.53c-.51 0-.92-.42-.92-.92v-4.61c0-.51.41-.91.91-.92V9.23c0-1.53 1.25-2.77 2.77-2.77 1.53 0 2.78 1.24 2.78 2.77zm-2.78-2.38c-.75 0-1.37.61-1.37 1.37v1.01h2.75V9.23c0-.76-.62-1.37-1.38-1.37"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock-smart.svg�����������������������������0000664�0000000�0000000�00000000466�14753064456�0026212�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a6 6 0 0 0-6 6v8a6 6 0 0 0 6 6 6 6 0 0 0 6-6V8a6 6 0 0 0-6-6M8 6h2v2H8zm3 0h2v2h-2zm3 0h2v2h-2zM8 9h2v2H8zm3 0h2v2h-2zm3 0h2v2h-2zm-6 3h2v2H8zm3 0h2v2h-2zm3 0h2v2h-2zm-2 4a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lock.svg�����������������������������������0000664�0000000�0000000�00000000432�14753064456�0025057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 17a2 2 0 0 0 2-2 2 2 0 0 0-2-2 2 2 0 0 0-2 2 2 2 0 0 0 2 2m6-9a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V10a2 2 0 0 1 2-2h1V6a5 5 0 0 1 5-5 5 5 0 0 1 5 5v2zm-6-5a3 3 0 0 0-3 3v2h6V6a3 3 0 0 0-3-3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/locker-multiple.svg������������������������0000664�0000000�0000000�00000000373�14753064456�0027243�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 2h18a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m10 2v16h8V4zM3 4v16h8V4zm2 9h2v4H5zm0-7h4v1.5H5zm0 3h4v1.5H5zm10 4h2v4h-2zm0-7h4v1.5h-4zm0 3h4v1.5h-4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/locker.svg���������������������������������0000664�0000000�0000000�00000000307�14753064456�0025407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 2h8a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m0 2v16h8V4zm2 9h2v4h-2zm0-7h4v1.5h-4zm0 3h4v1.5h-4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/login-variant.svg��������������������������0000664�0000000�0000000�00000000344�14753064456�0026703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.11 0-2 .89-2 2v4h2V5h14v14H5v-4H3v4a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-8.92 12.58L11.5 17l5-5-5-5-1.42 1.41L12.67 11H3v2h9.67z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/login.svg����������������������������������0000664�0000000�0000000�00000000264�14753064456�0025242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7 9.6 8.4l2.6 2.6H2v2h10.2l-2.6 2.6L11 17l5-5zm9 12h-8v2h8c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-8v2h8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/logout-variant.svg�������������������������0000664�0000000�0000000�00000000355�14753064456�0027106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.08 15.59 16.67 13H7v-2h9.67l-2.59-2.59L15.5 7l5 5-5 5zM19 3a2 2 0 0 1 2 2v4.67l-2-2V5H5v14h14v-2.67l2-2V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/logout.svg���������������������������������0000664�0000000�0000000�00000000270�14753064456�0025440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17 7-1.41 1.41L18.17 11H8v2h10.17l-2.58 2.58L17 17l5-5M4 5h8V3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8v-2H4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/longitude.svg������������������������������0000664�0000000�0000000�00000000570�14753064456�0026124�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 1 0 10 10A10.03 10.03 0 0 0 12 2M9.4 19.6a8.05 8.05 0 0 1 0-15.2A16.45 16.45 0 0 0 7.5 12a16.45 16.45 0 0 0 1.9 7.6m2.6.4a13.8 13.8 0 0 1-2.5-8A13.8 13.8 0 0 1 12 4a13.8 13.8 0 0 1 2.5 8 13.8 13.8 0 0 1-2.5 8m2.6-.4a16.15 16.15 0 0 0 0-15.2A8.03 8.03 0 0 1 20 12a7.9 7.9 0 0 1-5.4 7.6"/></svg>����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/looks.svg����������������������������������0000664�0000000�0000000�00000000337�14753064456�0025262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6A11 11 0 0 0 1 17h2c0-4.96 4.04-9 9-9s9 4.04 9 9h2A11 11 0 0 0 12 6m0 4c-3.86 0-7 3.14-7 7h2a5 5 0 0 1 5-5 5 5 0 0 1 5 5h2c0-3.86-3.14-7-7-7"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lotion-outline.svg�������������������������0000664�0000000�0000000�00000000704�14753064456�0027112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 6.5C15.5 5.66 17 4 17 4s1.5 1.66 1.5 2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5m4 8.5a2.5 2.5 0 0 0 2.5-2.5c0-1.67-2.5-4.5-2.5-4.5S17 10.83 17 12.5a2.5 2.5 0 0 0 2.5 2.5M16 12v8c0 1.1-.9 2-2 2H6c-1.1 0-2-.9-2-2v-8c0-2.97 2.16-5.43 5-5.91V4H7V2h6c1.13 0 2.15.39 3 1l-1.44 1.44C14.1 4.17 13.57 4 13 4h-2v2.09c2.84.48 5 2.94 5 5.91m-2 0c0-2.21-1.79-4-4-4s-4 1.79-4 4v8h8z"/></svg>������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lotion-plus-outline.svg��������������������0000664�0000000�0000000�00000000742�14753064456�0030075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 6.5C15.5 5.66 17 4 17 4s1.5 1.66 1.5 2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5m4 8.5a2.5 2.5 0 0 0 2.5-2.5c0-1.67-2.5-4.5-2.5-4.5S17 10.83 17 12.5a2.5 2.5 0 0 0 2.5 2.5M13 14h-2v-2H9v2H7v2h2v2h2v-2h2zm3-2v8c0 1.1-.9 2-2 2H6c-1.1 0-2-.9-2-2v-8c0-2.97 2.16-5.43 5-5.91V4H7V2h6c1.13 0 2.15.39 3 1l-1.44 1.44C14.1 4.17 13.57 4 13 4h-2v2.09c2.84.48 5 2.94 5 5.91m-2 0c0-2.21-1.79-4-4-4s-4 1.79-4 4v8h8z"/></svg>������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lotion-plus.svg����������������������������0000664�0000000�0000000�00000000634�14753064456�0026420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 6.5C15.5 5.66 17 4 17 4s1.5 1.66 1.5 2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5m4 8.5a2.5 2.5 0 0 0 2.5-2.5c0-1.67-2.5-4.5-2.5-4.5S17 10.83 17 12.5a2.5 2.5 0 0 0 2.5 2.5M13 14h-2v-2H9v2H7v2h2v2h2v-2h2zm3-2v10H4V12c0-2.97 2.16-5.43 5-5.91V4H7V2h6c1.13 0 2.15.39 3 1l-1.44 1.44C14.1 4.17 13.57 4 13 4h-2v2.09c2.84.48 5 2.94 5 5.91"/></svg>����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lotion.svg���������������������������������0000664�0000000�0000000�00000000576�14753064456�0025444�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 6.5C15.5 5.66 17 4 17 4s1.5 1.66 1.5 2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5m4 8.5a2.5 2.5 0 0 0 2.5-2.5c0-1.67-2.5-4.5-2.5-4.5S17 10.83 17 12.5a2.5 2.5 0 0 0 2.5 2.5M16 12v10H4V12c0-2.97 2.16-5.43 5-5.91V4H7V2h6c1.13 0 2.15.39 3 1l-1.44 1.44C14.1 4.17 13.57 4 13 4h-2v2.09c2.84.48 5 2.94 5 5.91"/></svg>����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/loupe.svg����������������������������������0000664�0000000�0000000�00000000363�14753064456�0025256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10h8a2 2 0 0 0 2-2v-8A10 10 0 0 0 12 2m1 5h-2v4H7v2h4v4h2v-4h4v-2h-4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lumx.svg�����������������������������������0000664�0000000�0000000�00000000505�14753064456�0025115�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.35 1.75 7.78 7.78-6.36 6.36-1.42-1.42 4.95-4.94-6.36-6.37zm3.54 7.78-1.42 1.41-4.24-4.24-4.95 4.95-1.41-1.42 6.36-6.36zm-5.66-1.42 1.42 1.42-4.95 4.94 6.36 6.37-1.41 1.41-7.78-7.78zm-2.12 6.36 1.42-1.41 4.24 4.24 4.95-4.95 1.41 1.42-6.36 6.36z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/lungs.svg����������������������������������0000664�0000000�0000000�00000000771�14753064456�0025265�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.47 3.11c-.47-.26-1.1-.06-1.36.43-.07.14-.11.3-.11.46v2.59l-.71-.71a.98.98 0 0 1-.29-.7V1h-2v4.17c0 .27-.1.52-.29.71l-.71.71V4c0-.56-.46-1-1-1-.17 0-.33.04-.47.11C4.72 5 2 9.97 2 15.77c0 1.9.33 3.78 1 5.55a1.007 1.007 0 0 0 1.44.55l5.06-2.8c.31-.17.5-.51.5-.88V9.41l1.3-1.29a.996.996 0 0 1 1.41 0L14 9.42v8.78c0 .36.21.7.5.88l5.08 2.8a1 1 0 0 0 1.36-.42c.02-.04.06-.09.06-.14.67-1.77 1-3.65 1-5.55C22 9.97 19.29 5 15.47 3.11"/></svg>�������mkdocs-material-9.6.4/material/templates/.icons/material/mace.svg�����������������������������������0000664�0000000�0000000�00000001146�14753064456�0025037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.92 9.27c.05-.27.08-.51.08-.77s-.03-.5-.08-.77L23 8.5zm-5.23 3.65.81 3.24.81-3.24c-.26.05-.53.08-.81.08s-.55-.03-.81-.08m-2.99-2.03-4.91 4.9-.7-.7L1 20.17 3.83 23l5.08-5.09-.7-.7 4.9-4.91c-.57-.36-1.05-.84-1.41-1.41m4.57-6.81L15.5 1l-.77 3.08c.27-.05.51-.08.77-.08s.5.03.77.08M8 8.5l3.08.77C11.03 9 11 8.76 11 8.5s.03-.5.08-.77zm10.63 1.54c.23-.46.37-.98.37-1.54s-.14-1.08-.37-1.54L21 3l-3.96 2.37c-.46-.23-.98-.37-1.54-.37s-1.08.14-1.54.37L10 3l2.37 3.96c-.23.46-.37.98-.37 1.54 0 1.93 1.57 3.5 3.5 3.5.56 0 1.08-.14 1.54-.37L21 14z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/magazine-pistol.svg������������������������0000664�0000000�0000000�00000000260�14753064456�0027231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14 1-2 2H7l2 18H8v2h10v-2L16 1M9 5h3l.24 2h-3m.23 2h3l.24 2h-3m.23 2h3l.24 2h-3m.23 2h3l.24 2h-3Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/magazine-rifle.svg�������������������������0000664�0000000�0000000�00000000227�14753064456�0027023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 1v2h1v10l-3 6 9 4 4-10V3h1V1m-9 2h6v2h-4.12v8.45L9.6 18.14 8 17.5l2-4Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/magic-staff.svg����������������������������0000664�0000000�0000000�00000000547�14753064456�0026317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.5 9a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5m-3.07-.85L2 20.59 3.41 22 15.85 9.57c-.6-.33-1.09-.82-1.42-1.42M13 5l.63-1.37L15 3l-1.37-.63L13 1l-.62 1.37L11 3l1.38.63zm8 0 .63-1.37L23 3l-1.37-.63L21 1l-.62 1.37L19 3l1.38.63zm0 4-.62 1.37L19 11l1.38.63L21 13l.63-1.37L23 11l-1.37-.63z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/magnet-on.svg������������������������������0000664�0000000�0000000�00000000304�14753064456�0026012�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 7v6a9 9 0 0 0 9 9 9 9 0 0 0 9-9V7h-4v6a5 5 0 0 1-5 5 5 5 0 0 1-5-5V7m10-2h4V2h-4M3 5h4V2H3m10-.5L9 9h2v5.5L15 7h-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/magnet.svg���������������������������������0000664�0000000�0000000�00000000253�14753064456�0025403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 7v6a9 9 0 0 0 9 9 9 9 0 0 0 9-9V7h-4v6a5 5 0 0 1-5 5 5 5 0 0 1-5-5V7m10-2h4V2h-4M3 5h4V2H3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/magnify-close.svg��������������������������0000664�0000000�0000000�00000000470�14753064456�0026666�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 2a7 7 0 0 1 7 7c0 1.5-.5 3-1.39 4.19l.8.81H16l6 6-2 2-6-6v-.59l-.81-.8A7.07 7.07 0 0 1 9 16a7 7 0 0 1-7-7 7 7 0 0 1 7-7m2.12 3.46L9 7.59 6.88 5.46 5.46 6.88 7.59 9l-2.13 2.12 1.42 1.42L9 10.41l2.12 2.13 1.42-1.42L10.41 9l2.13-2.12z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/magnify-expand.svg�������������������������0000664�0000000�0000000�00000000527�14753064456�0027043�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 16h-.58l-.81-.81A7.07 7.07 0 0 0 18 11c0-3.87-3.13-7-7-7-1.5 0-3 .5-4.21 1.4-3.09 2.32-3.72 6.71-1.4 9.8s6.71 3.72 9.8 1.4l.81.81V18l5 5 2-2zm-7 0c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5M3 6 1 8V1h7L6 3H3zm18-5v7l-2-2V3h-3l-2-2zM6 19l2 2H1v-7l2 2v3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/magnify-minus-cursor.svg�������������������0000664�0000000�0000000�00000000362�14753064456�0030227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 4a7 7 0 0 1 7 7c0 1.5-.5 3-1.39 4.19l.81.81H18l5 5-2 2-5-5v-.59l-.81-.81c-3.09 2.32-7.48 1.69-9.8-1.4S3.7 7.72 6.79 5.4C8 4.5 9.5 4 11 4m-4 6v2h8v-2zM1 1v7l7-7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/magnify-minus-outline.svg������������������0000664�0000000�0000000�00000000455�14753064456�0030374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27A6.47 6.47 0 0 0 16 9.5 6.5 6.5 0 0 0 9.5 3 6.5 6.5 0 0 0 3 9.5 6.5 6.5 0 0 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 5 1.5-1.5zm-6 0C7 14 5 12 5 9.5S7 5 9.5 5 14 7 14 9.5 12 14 9.5 14M7 9h5v1H7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/magnify-minus.svg��������������������������0000664�0000000�0000000�00000000322�14753064456�0026710�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 2a7 7 0 0 1 7 7c0 1.57-.5 3-1.39 4.19l.8.81H16l6 6-2 2-6-6v-.59l-.81-.8A6.9 6.9 0 0 1 9 16a7 7 0 0 1-7-7 7 7 0 0 1 7-7M5 8v2h8V8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/magnify-plus-cursor.svg��������������������0000664�0000000�0000000�00000000404�14753064456�0030054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 4a7 7 0 0 1 7 7c0 1.5-.5 3-1.39 4.19l.81.81H18l5 5-2 2-5-5v-.59l-.81-.81c-3.09 2.32-7.48 1.69-9.8-1.4S3.7 7.72 6.79 5.4C8 4.5 9.5 4 11 4m-1 3v3H7v2h3v3h2v-3h3v-2h-3V7zM1 1v7l7-7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/magnify-plus-outline.svg�������������������0000664�0000000�0000000�00000000502�14753064456�0030215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.5 14 5 5-1.5 1.5-5-5v-.79l-.27-.28A6.47 6.47 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3 6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.57 4.23l.28.27zm-6 0C12 14 14 12 14 9.5S12 5 9.5 5 5 7 5 9.5 7 14 9.5 14m2.5-4h-2v2H9v-2H7V9h2V7h1v2h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/magnify-plus.svg���������������������������0000664�0000000�0000000�00000000344�14753064456�0026544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 2a7 7 0 0 1 7 7c0 1.57-.5 3-1.39 4.19l.8.81H16l6 6-2 2-6-6v-.59l-.81-.8A6.9 6.9 0 0 1 9 16a7 7 0 0 1-7-7 7 7 0 0 1 7-7M8 5v3H5v2h3v3h2v-3h3V8h-3V5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/magnify-remove-cursor.svg������������������0000664�0000000�0000000�00000000541�14753064456�0030370�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 1v7l7-7zm17 15h-.58l-.81-.81A7.07 7.07 0 0 0 18 11c0-3.87-3.13-7-7-7-1.5 0-3 .5-4.21 1.4-3.09 2.32-3.72 6.71-1.4 9.8s6.71 3.72 9.8 1.4l.81.81V18l5 5 2-2zm-3.4-2.84-1.42 1.42-2.12-2.13-2.12 2.13-1.44-1.42 2.15-2.12L7.5 8.92 8.94 7.5l2.12 2.13 2.12-2.13 1.42 1.42-2.13 2.12z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/magnify-remove-outline.svg�����������������0000664�0000000�0000000�00000000552�14753064456�0030534�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27A6.47 6.47 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 5 1.5-1.5zm-6 0C7 14 5 12 5 9.5S7 5 9.5 5 14 7 14 9.5 12 14 9.5 14m1.41-2.38L9.5 10.21l-1.41 1.41-.71-.71L8.79 9.5 7.38 8.09l.71-.71L9.5 8.79l1.41-1.41.71.71-1.41 1.41 1.41 1.41z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/magnify-scan.svg���������������������������0000664�0000000�0000000�00000000724�14753064456�0026507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 22v-2h3v-3h2v3.5c0 .39-.16.74-.46 1.04s-.65.46-1.04.46zM7 22H3.5c-.39 0-.74-.16-1.04-.46S2 20.89 2 20.5V17h2v3h3zM17 2h3.5c.39 0 .74.16 1.04.46s.46.65.46 1.04V7h-2V4h-3zM7 2v2H4v3H2V3.5c0-.39.16-.74.46-1.04S3.11 2 3.5 2zm3.5 4C13 6 15 8 15 10.5c0 .88-.25 1.7-.69 2.4l3.26 3.26-1.41 1.41-3.26-3.26c-.7.44-1.52.69-2.4.69C8 15 6 13 6 10.5S8 6 10.5 6m0 2a2.5 2.5 0 0 0 0 5 2.5 2.5 0 0 0 0-5"/></svg>��������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/magnify.svg��������������������������������0000664�0000000�0000000�00000000441�14753064456�0025561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.52 6.52 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mail.svg�����������������������������������0000664�0000000�0000000�00000000276�14753064456�0025057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m-3 13H7v-2h10m0-2H7v-2h10m3-2h-3V6h3"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mailbox-open-outline.svg�������������������0000664�0000000�0000000�00000000363�14753064456�0030201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 11h6v4h-2v-2h-4zm4-7H8a5 5 0 0 0-5 5v9H1v2h20a2 2 0 0 0 2-2V9a5 5 0 0 0-5-5m-7 14H5V9a3 3 0 0 1 3-3 3 3 0 0 1 3 3zm10 0h-8V9c0-1.08-.35-2.14-1-3h6a3 3 0 0 1 3 3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mailbox-open-up-outline.svg����������������0000664�0000000�0000000�00000000370�14753064456�0030621�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 12.85v-6h4v2h-2v4zm4-9H8a5 5 0 0 0-5 5v9H1v2h20a2 2 0 0 0 2-2v-9a5 5 0 0 0-5-5m-7 14H5v-9a3 3 0 0 1 3-3 3 3 0 0 1 3 3zm10 0h-8v-9c0-1.09-.35-2.14-1-3h6a3 3 0 0 1 3 3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mailbox-open-up.svg������������������������0000664�0000000�0000000�00000000276�14753064456�0027151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 4a5 5 0 0 0-5 5v9H1v2h20a2 2 0 0 0 2-2V9a5 5 0 0 0-5-5zm0 2a3 3 0 0 1 3 3v9H5V9a3 3 0 0 1 3-3m5 7V7h4v2h-2v4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mailbox-open.svg���������������������������0000664�0000000�0000000�00000000300�14753064456�0026513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 4a5 5 0 0 0-5 5v9H1v2h20a2 2 0 0 0 2-2V9a5 5 0 0 0-5-5zm0 2a3 3 0 0 1 3 3v9H5V9a3 3 0 0 1 3-3m6 5h6v4h-2v-2h-4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mailbox-outline.svg������������������������0000664�0000000�0000000�00000000372�14753064456�0027242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 4H7a5 5 0 0 0-5 5v11h18a2 2 0 0 0 2-2V9a5 5 0 0 0-5-5m-7 14H4V9a3 3 0 0 1 3-3 3 3 0 0 1 3 3zm10 0h-8V9c0-1.08-.35-2.14-1-3h6a3 3 0 0 1 3 3zm-7-7v2h4v2h2v-4zm-4 0H5V9h4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mailbox-up-outline.svg���������������������0000664�0000000�0000000�00000000372�14753064456�0027664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 4H7a5 5 0 0 0-5 5v11h18a2 2 0 0 0 2-2V9a5 5 0 0 0-5-5m-7 14H4V9a3 3 0 0 1 3-3 3 3 0 0 1 3 3zm10 0h-8V9c0-1.08-.35-2.14-1-3h6a3 3 0 0 1 3 3zm-7-5h2V9h2V7h-4zm-4-2H5V9h4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mailbox-up.svg�����������������������������0000664�0000000�0000000�00000000307�14753064456�0026205�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 9h4v2H5zm17 0v9a2 2 0 0 1-2 2H2V9a5 5 0 0 1 5-5h10a5 5 0 0 1 5 5M10 9a3 3 0 0 0-3-3 3 3 0 0 0-3 3v9h6zm6-2h-4v6h2V9h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mailbox.svg��������������������������������0000664�0000000�0000000�00000000315�14753064456�0025562�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 4H7a5 5 0 0 0-5 5v11h18a2 2 0 0 0 2-2V9a5 5 0 0 0-5-5m-7 14H4V9a3 3 0 0 1 3-3 3 3 0 0 1 3 3zm9-3h-2v-2h-4v-2h6zM9 11H5V9h4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/manjaro.svg��������������������������������0000664�0000000�0000000�00000000210�14753064456�0025550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2v20h5.6V7.6h7.2V2zm7.2 7.2V22h5.6V9.2zM16.4 2v20H22V2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-check-outline.svg����������������������0000664�0000000�0000000�00000000611�14753064456�0027433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.25 22-2.75-3 1.16-1.18 1.59 1.59 3.59-3.59L23 17.23zM20.5 3a.5.5 0 0 1 .5.5v9.84c-.63-.22-1.3-.34-2-.34V5.7l-3 1.16v6.94c-.8.47-1.5 1.11-2 1.88V6.87l-4-1.4v11.66l3.05 1.07-.05.8c0 .46.05.92.15 1.35L9 18.9l-5.34 2.07-.16.03a.5.5 0 0 1-.5-.5V5.38c0-.23.15-.41.36-.48L9 3l6 2.1 5.34-2.07zM5 6.46v11.85l3-1.16V5.45z"/></svg>�����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-check.svg������������������������������0000664�0000000�0000000�00000000561�14753064456�0025762�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.25 22-2.75-3 1.16-1.18 1.59 1.59 3.59-3.59L23 17.23M20.5 3a.5.5 0 0 1 .5.5v9.86c-.64-.23-1.31-.36-2-.36-1.54 0-2.94.6-4 1.56V7.1L9 5v11.9l4.04 1.4c-.04.24-.04.47-.04.7 0 .46.06.92.16 1.36L9 18.9l-5.34 2.07c-.07.03-.11.03-.16.03a.5.5 0 0 1-.5-.5V5.38c0-.23.16-.41.35-.48L9 3l6 2.1L20.33 3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-clock-outline.svg����������������������0000664�0000000�0000000�00000000755�14753064456�0027462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 12h1.5v4.25l2.86 1.69-.75 1.22L15 17zm1-3c.69 0 1.37.1 2 .29V4.7l-3 1.16v3.21c.33-.07.66-.07 1-.07m7 7a7 7 0 0 1-7 7c-3 0-5.6-1.92-6.58-4.6L8 17.9l-5.34 2.07-.16.03a.5.5 0 0 1-.5-.5V4.38c0-.23.15-.41.36-.48L8 2l6 2.1 5.34-2.07.16-.03a.5.5 0 0 1 .5.5v7.75c1.81 1.25 3 3.37 3 5.75M9 16c0-2.79 1.63-5.2 4-6.33v-3.8l-4-1.4v11.66zm7-5a5 5 0 0 0-5 5 5 5 0 0 0 5 5 5 5 0 0 0 5-5 5 5 0 0 0-5-5M4 5.46v11.85l3-1.16V4.45z"/></svg>�������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-clock.svg������������������������������0000664�0000000�0000000�00000000625�14753064456�0026001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 12h1.5v4.25l2.86 1.69-.75 1.22L15 17zm8 4a7 7 0 0 1-7 7c-3 0-5.6-1.92-6.58-4.6L8 17.9l-5.34 2.07-.16.03a.5.5 0 0 1-.5-.5V4.38c0-.23.15-.41.36-.48L8 2l6 2.1L19.34 2h.16a.5.5 0 0 1 .5.5v7.75c1.81 1.25 3 3.37 3 5.75M9 16c0-3.17 2.11-5.85 5-6.71V6.11L8 4v11.89l1 .35zm7-5a5 5 0 0 0-5 5 5 5 0 0 0 5 5 5 5 0 0 0 5-5 5 5 0 0 0-5-5"/></svg>�����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-legend.svg�����������������������������0000664�0000000�0000000�00000000647�14753064456�0026150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5a.5.5 0 0 0 .5.5l.16-.03L9 18.9l6 2.1 5.64-1.9c.21-.07.36-.25.36-.48V3.5a.5.5 0 0 0-.5-.5l-.16.03L15 5.1zM8 5.45v11.7l-3 1.16V6.46zm2 .02 4 1.4v11.66l-4-1.4zm9 .23v11.84l-3 1.01V6.86zm-11.54.6-1.89.67v2.15l1.89-.67zm0 2.75-1.89.67v2.15l1.89-.67zm0 2.75-1.89.67v2.15l1.89-.67zm0 2.75-1.89.67v2.15l1.89-.67z"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-account-outline.svg�������������0000664�0000000�0000000�00000000540�14753064456�0031272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4c2.8 0 5 2.2 5 5 0 2.9-2.9 7.2-5 9.9-2.1-2.7-5-7-5-9.9 0-2.8 2.2-5 5-5m0-2C8.1 2 5 5.1 5 9c0 5.2 7 13 7 13s7-7.8 7-13c0-3.9-3.1-7-7-7m0 8c1.33 0 4 .67 4 2v.16c-.97 1.12-2.4 1.84-4 1.84s-3.03-.72-4-1.84V12c0-1.33 2.67-2 4-2m0-1c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-account.svg���������������������0000664�0000000�0000000�00000000424�14753064456�0027616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7m0 2a2 2 0 1 1 .001 4.001A2 2 0 0 1 12 4m0 10c-1.67 0-3.14-.85-4-2.15 0-1.32 2.67-2.05 4-2.05s4 .73 4 2.05A4.78 4.78 0 0 1 12 14"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-alert-outline.svg���������������0000664�0000000�0000000�00000000345�14753064456�0030750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a7 7 0 0 1 7 7c0 5.25-7 13-7 13S5 14.25 5 9a7 7 0 0 1 7-7m0 2a5 5 0 0 0-5 5c0 1 0 3 5 9.71C17 12 17 10 17 9a5 5 0 0 0-5-5m-1 2h2v5h-2zm0 7h2v2h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-alert.svg�����������������������0000664�0000000�0000000�00000000246�14753064456�0027273�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c3.9 0 7 3.1 7 7 0 5.2-7 13-7 13S5 14.2 5 9c0-3.9 3.1-7 7-7m-1 4v6h2V6zm0 8v2h2v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-check-outline.svg���������������0000664�0000000�0000000�00000000405�14753064456�0030713�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4c2.8 0 5 2.2 5 5 0 2.9-2.9 7.2-5 9.9-2.1-2.7-5-7-5-9.9 0-2.8 2.2-5 5-5m0-2C8.1 2 5 5.1 5 9c0 5.2 7 13 7 13s7-7.8 7-13c0-3.9-3.1-7-7-7m-.7 12 4.9-5-1.4-1.4-3.5 3.6-1.6-1.6L8.3 11z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-check.svg�����������������������0000664�0000000�0000000�00000000310�14753064456�0027231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c3.86 0 7 3.14 7 7 0 5.25-7 13-7 13S5 14.25 5 9c0-3.86 3.14-7 7-7m-1.53 12L17 7.41 15.6 6l-5.13 5.18L8.4 9.09 7 10.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-circle.svg����������������������0000664�0000000�0000000�00000000614�14753064456�0027424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 10.5a1.5 1.5 0 0 1-1.5-1.5A1.5 1.5 0 0 1 12 9.5a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5m0-5.3c-2.1 0-3.8 1.7-3.8 3.8 0 3 3.8 6.5 3.8 6.5s3.8-3.5 3.8-6.5c0-2.1-1.7-3.8-3.8-3.8"/></svg>��������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-distance.svg��������������������0000664�0000000�0000000�00000001324�14753064456�0027754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 8.11c-.89 0-1.61-.72-1.61-1.61A1.61 1.61 0 0 1 6.5 4.89c.89 0 1.61.72 1.61 1.61A1.61 1.61 0 0 1 6.5 8.11M6.5 2C4 2 2 4 2 6.5c0 3.37 4.5 8.36 4.5 8.36S11 9.87 11 6.5C11 4 9 2 6.5 2m11 6.11a1.61 1.61 0 0 1-1.61-1.61 1.609 1.609 0 1 1 3.22 0 1.61 1.61 0 0 1-1.61 1.61m0-6.11C15 2 13 4 13 6.5c0 3.37 4.5 8.36 4.5 8.36S22 9.87 22 6.5C22 4 20 2 17.5 2m0 14c-1.27 0-2.4.8-2.82 2H9.32a3 3 0 0 0-3.82-1.83A3.003 3.003 0 0 0 3.66 20a3.017 3.017 0 0 0 3.84 1.83c.85-.3 1.5-.98 1.82-1.83h5.37c.55 1.56 2.27 2.38 3.81 1.83A3 3 0 0 0 20.35 18c-.43-1.2-1.57-2-2.85-2m0 4.5A1.5 1.5 0 0 1 16 19a1.5 1.5 0 0 1 1.5-1.5A1.5 1.5 0 0 1 19 19a1.5 1.5 0 0 1-1.5 1.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-down.svg������������������������0000664�0000000�0000000�00000000251�14753064456�0027127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7m-4.5 8H10V5h4v5h2.5L12 14.5Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-left-outline.svg����������������0000664�0000000�0000000�00000000420�14753064456�0030565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 6.5a2.5 2.5 0 0 1 0 5 2.5 2.5 0 0 1 0-5M15 2c3.87 0 7 3.13 7 7 0 5.25-7 13-7 13S8 14.25 8 9c0-3.87 3.13-7 7-7m-5 7c0 1 0 3 5 9.71C20 12 20 10 20 9c0-2.76-2.24-5-5-5s-5 2.24-5 5M6 7l-5 5 5 5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-left.svg������������������������0000664�0000000�0000000�00000000306�14753064456�0027113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 11.5a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5M8 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7S8 5.13 8 9M6 7l-5 5 5 5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-minus-outline.svg���������������0000664�0000000�0000000�00000000450�14753064456�0030771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 17h8v2h-8zM9 6.5c1.4 0 2.5 1.1 2.5 2.5s-1.1 2.5-2.5 2.5S6.5 10.4 6.5 9 7.6 6.5 9 6.5M9 2c3.9 0 7 3.1 7 7 0 5.2-7 13-7 13S2 14.2 2 9c0-3.9 3.1-7 7-7m0 2C6.2 4 4 6.2 4 9c0 1 0 3 5 9.7C14 12 14 10 14 9c0-2.8-2.2-5-5-5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-minus.svg�����������������������0000664�0000000�0000000�00000000365�14753064456�0027321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 11.5A2.5 2.5 0 0 0 11.5 9 2.5 2.5 0 0 0 9 6.5 2.5 2.5 0 0 0 6.5 9 2.5 2.5 0 0 0 9 11.5M9 2c3.86 0 7 3.13 7 7 0 5.25-7 13-7 13S2 14.25 2 9a7 7 0 0 1 7-7m6 15h8v2h-8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-multiple-outline.svg������������0000664�0000000�0000000�00000000704�14753064456�0031473�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.5 9A2.5 2.5 0 0 1 14 6.5c1.1 0 2.03.71 2.37 1.69.08.26.13.53.13.81a2.5 2.5 0 0 1-2.5 2.5c-1.09 0-2-.69-2.36-1.66-.09-.26-.14-.55-.14-.84M5 9c0 4.5 5.08 10.66 6 11.81L10 22S3 14.25 3 9c0-3.17 2.11-5.85 5-6.71C6.16 3.94 5 6.33 5 9m9-7c3.86 0 7 3.13 7 7 0 5.25-7 13-7 13S7 14.25 7 9c0-3.87 3.14-7 7-7m0 2c-2.76 0-5 2.24-5 5 0 1 0 3 5 9.71C19 12 19 10 19 9c0-2.76-2.24-5-5-5"/></svg>������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-multiple.svg��������������������0000664�0000000�0000000�00000000511�14753064456�0030012�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 11.5A2.5 2.5 0 0 0 16.5 9 2.5 2.5 0 0 0 14 6.5 2.5 2.5 0 0 0 11.5 9a2.5 2.5 0 0 0 2.5 2.5M14 2c3.86 0 7 3.13 7 7 0 5.25-7 13-7 13S7 14.25 7 9a7 7 0 0 1 7-7M5 9c0 4.5 5.08 10.66 6 11.81L10 22S3 14.25 3 9c0-3.17 2.11-5.85 5-6.71C6.16 3.94 5 6.33 5 9"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-off-outline.svg�����������������0000664�0000000�0000000�00000000654�14753064456�0030416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 19.7 3.3 3 2 4.3l3.2 3.2C5.1 8 5 8.5 5 9c0 5.2 7 13 7 13s1.7-1.9 3.4-4.4l3.4 3.4zm-8-1c-4.6-6.2-5-8.3-5-9.4l6.8 6.8c-.5.8-1.1 1.6-1.8 2.6M8.4 5.6 7 4.2C8.2 2.8 10 2 12 2c3.9 0 7 3.1 7 7 0 1.7-.7 3.6-1.7 5.5L15.8 13C17 10.6 17 9.6 17 9c0-2.8-2.2-5-5-5-1.4 0-2.7.6-3.6 1.6m3.6.9c1.4 0 2.5 1.1 2.5 2.5 0 .7-.3 1.4-.8 1.9l-3.5-3.5c.4-.6 1.1-.9 1.8-.9"/></svg>������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-off.svg�������������������������0000664�0000000�0000000�00000000560�14753064456�0026735�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.37 16.1-4.62-4.63-.11-.11L3.27 3 2 4.27l3.18 3.18C5.06 7.95 5 8.46 5 9c0 5.25 7 13 7 13s1.67-1.85 3.37-4.35L18.73 21 20 19.72M12 6.5A2.5 2.5 0 0 1 14.5 9c0 .73-.33 1.39-.83 1.85l3.63 3.65c.98-1.88 1.7-3.82 1.7-5.5a7 7 0 0 0-7-7c-2 0-3.76.82-5.04 2.14l3.19 3.19c.46-.51 1.11-.83 1.85-.83"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-outline.svg���������������������0000664�0000000�0000000�00000000447�14753064456�0027646�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6.5A2.5 2.5 0 0 1 14.5 9a2.5 2.5 0 0 1-2.5 2.5A2.5 2.5 0 0 1 9.5 9 2.5 2.5 0 0 1 12 6.5M12 2a7 7 0 0 1 7 7c0 5.25-7 13-7 13S5 14.25 5 9a7 7 0 0 1 7-7m0 2a5 5 0 0 0-5 5c0 1 0 3 5 9.71C17 12 17 10 17 9a5 5 0 0 0-5-5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-path.svg������������������������0000664�0000000�0000000�00000001312�14753064456�0027113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 15a3 3 0 0 1 3 3 3 3 0 0 1-3 3 2.99 2.99 0 0 1-2.83-2H14v-2h1.17c.41-1.17 1.52-2 2.83-2m0 2a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m0-9a1.43 1.43 0 0 0 1.43-1.43 1.43 1.43 0 1 0-2.86 0A1.43 1.43 0 0 0 18 8m0-5.43a4 4 0 0 1 4 4C22 9.56 18 14 18 14s-4-4.44-4-7.43a4 4 0 0 1 4-4M8.83 17H10v2H8.83A2.99 2.99 0 0 1 6 21a3 3 0 0 1-3-3c0-1.31.83-2.42 2-2.83V14h2v1.17c.85.3 1.53.98 1.83 1.83M6 17a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1M6 3a3 3 0 0 1 3 3c0 1.31-.83 2.42-2 2.83V10H5V8.83A2.99 2.99 0 0 1 3 6a3 3 0 0 1 3-3m0 2a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m5 14v-2h2v2zm-4-6H5v-2h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-plus-outline.svg����������������0000664�0000000�0000000�00000000474�14753064456�0030627�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 17h3v-3h2v3h3v2h-3v3h-2v-3h-3zM9 6.5c1.4 0 2.5 1.1 2.5 2.5s-1.1 2.5-2.5 2.5S6.5 10.4 6.5 9 7.6 6.5 9 6.5M9 2c3.9 0 7 3.1 7 7 0 5.2-7 13-7 13S2 14.2 2 9c0-3.9 3.1-7 7-7m0 2C6.2 4 4 6.2 4 9c0 1 0 3 5 9.7C14 12 14 10 14 9c0-2.8-2.2-5-5-5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-plus.svg������������������������0000664�0000000�0000000�00000000411�14753064456�0027141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 11.5A2.5 2.5 0 0 0 11.5 9 2.5 2.5 0 0 0 9 6.5 2.5 2.5 0 0 0 6.5 9 2.5 2.5 0 0 0 9 11.5M9 2c3.86 0 7 3.13 7 7 0 5.25-7 13-7 13S2 14.25 2 9a7 7 0 0 1 7-7m6 15h3v-3h2v3h3v2h-3v3h-2v-3h-3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-question-outline.svg������������0000664�0000000�0000000�00000000711�14753064456�0031505�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1C7.59 1 4 4.59 4 9c0 5.57 6.96 13.34 7.26 13.67l.74.83.74-.83C13.04 22.34 20 14.57 20 9c0-4.41-3.59-8-8-8m0 19.47C9.82 17.86 6 12.54 6 9a6 6 0 0 1 6-6 6 6 0 0 1 6 6c0 3.83-4.25 9.36-6 11.47M11.13 14h1.75v1.75h-1.75M12 5a3.5 3.5 0 0 0-3.5 3.5h1.75A1.75 1.75 0 0 1 12 6.75a1.75 1.75 0 0 1 1.75 1.75c0 1.76-2.62 1.54-2.62 4.38h1.75c0-1.97 2.62-2.19 2.62-4.38A3.5 3.5 0 0 0 12 5"/></svg>�������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-question.svg��������������������0000664�0000000�0000000�00000000516�14753064456�0030033�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7m.88 13.75h-1.75V14h1.75m0-1.12h-1.75c0-2.84 2.62-2.62 2.62-4.38A1.75 1.75 0 0 0 12 6.75a1.75 1.75 0 0 0-1.75 1.75H8.5A3.5 3.5 0 0 1 12 5a3.5 3.5 0 0 1 3.5 3.5c0 2.19-2.62 2.41-2.62 4.38"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-radius-outline.svg��������������0000664�0000000�0000000�00000000651�14753064456�0031130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4c2.2 0 4 1.8 4 4 0 2.1-2.1 5.5-4 7.9-1.9-2.5-4-5.8-4-7.9 0-2.2 1.8-4 4-4m0-2C8.7 2 6 4.7 6 8c0 4.5 6 11 6 11s6-6.6 6-11c0-3.3-2.7-6-6-6m0 4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m8 13c0 2.2-3.6 4-8 4s-8-1.8-8-4c0-1.3 1.2-2.4 3.1-3.2l.6.9c-1 .5-1.7 1.1-1.7 1.8 0 1.4 2.7 2.5 6 2.5s6-1.1 6-2.5c0-.7-.7-1.3-1.8-1.8l.6-.9c2 .8 3.2 1.9 3.2 3.2"/></svg>���������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-radius.svg����������������������0000664�0000000�0000000�00000000631�14753064456�0027451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c3.31 0 6 2.66 6 5.95C18 12.41 12 19 12 19S6 12.41 6 7.95C6 4.66 8.69 2 12 2m0 4a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m8 13c0 2.21-3.58 4-8 4s-8-1.79-8-4c0-1.29 1.22-2.44 3.11-3.17l.64.91C6.67 17.19 6 17.81 6 18.5c0 1.38 2.69 2.5 6 2.5s6-1.12 6-2.5c0-.69-.67-1.31-1.75-1.76l.64-.91C18.78 16.56 20 17.71 20 19"/></svg>�������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-remove-outline.svg��������������0000664�0000000�0000000�00000000574�14753064456�0031142�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.6 14.2-1.4 1.4 2.4 2.4-2.4 2.4 1.4 1.4 2.4-2.4 2.4 2.4 1.4-1.4-2.4-2.4 2.4-2.4-1.4-1.4-2.4 2.4M9 6.5c1.4 0 2.5 1.1 2.5 2.5s-1.1 2.5-2.5 2.5S6.5 10.4 6.5 9 7.6 6.5 9 6.5M9 2c3.9 0 7 3.1 7 7 0 5.2-7 13-7 13S2 14.2 2 9c0-3.9 3.1-7 7-7m0 2C6.2 4 4 6.2 4 9c0 1 0 3 5 9.7C14 12 14 10 14 9c0-2.8-2.2-5-5-5"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-remove-variant.svg��������������0000664�0000000�0000000�00000000406�14753064456�0031121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7M9.59 5.17 12 7.58l2.41-2.41 1.42 1.41L13.41 9l2.42 2.41-1.42 1.42L12 10.41l-2.41 2.42-1.42-1.42L10.59 9 8.17 6.58"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-remove.svg����������������������0000664�0000000�0000000�00000000534�14753064456�0027461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 2C5.14 2 2 5.14 2 9c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7m0 4.5A2.5 2.5 0 0 1 11.5 9 2.5 2.5 0 0 1 9 11.5 2.5 2.5 0 0 1 6.5 9 2.5 2.5 0 0 1 9 6.5m7.58 7.66-1.41 1.42L17.58 18l-2.41 2.41 1.41 1.41L19 19.41l2.41 2.41 1.42-1.41L20.41 18l2.42-2.42-1.42-1.42L19 16.58"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-right-outline.svg���������������0000664�0000000�0000000�00000000423�14753064456�0030753�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 6.5a2.5 2.5 0 0 1 0 5 2.5 2.5 0 0 1 0-5M9 2c3.87 0 7 3.13 7 7 0 5.25-7 13-7 13S2 14.25 2 9c0-3.87 3.13-7 7-7m0 2C6.24 4 4 6.24 4 9c0 1 0 3 5 9.71C14 12 14 10 14 9c0-2.76-2.24-5-5-5m9 13 5-5-5-5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-right.svg�����������������������0000664�0000000�0000000�00000000314�14753064456�0027275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 11.5a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5M9 2C5.13 2 2 5.13 2 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7m9 15 5-5-5-5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-star-outline.svg����������������0000664�0000000�0000000�00000000431�14753064456�0030606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c3.9 0 7 3.1 7 7 0 5.2-7 13-7 13S5 14.2 5 9c0-3.9 3.1-7 7-7m0 2C9.2 4 7 6.2 7 9c0 1 0 3 5 9.7C17 12 17 10 17 9c0-2.8-2.2-5-5-5m0 7.5 2.4 1.5-.6-2.8L16 8.3l-2.9-.2L12 5.4 10.9 8 8 8.3l2.2 1.9-.7 2.8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-star.svg������������������������0000664�0000000�0000000�00000000325�14753064456�0027133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C8.1 2 5 5.1 5 9c0 5.2 7 13 7 13s7-7.8 7-13c0-3.9-3.1-7-7-7m2.5 11L12 11.5 9.5 13l.7-2.8L8 8.3l2.9-.2L12 5.4 13.1 8l2.9.3-2.2 1.9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker-up.svg��������������������������0000664�0000000�0000000�00000000250�14753064456�0026603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7m4.5 7H14v5h-4V9H7.5L12 4.5Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-marker.svg�����������������������������0000664�0000000�0000000�00000000350�14753064456�0026162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 11.5A2.5 2.5 0 0 1 9.5 9 2.5 2.5 0 0 1 12 6.5 2.5 2.5 0 0 1 14.5 9a2.5 2.5 0 0 1-2.5 2.5M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-minus.svg������������������������������0000664�0000000�0000000�00000000476�14753064456�0026045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 18v2h8v-2zm-1.84 2.36L9 18.9l-5.34 2.07c-.06.03-.11.03-.16.03-.28 0-.5-.22-.5-.5V5.38c0-.23.16-.41.36-.48L9 3l6 2.1L20.34 3h.16c.28 0 .5.22.5.5v9.85a5.93 5.93 0 0 0-6 1.19V7.1L9 5v11.9l4.04 1.42c-.04.22-.04.45-.04.68 0 .47.06.92.16 1.36"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-outline.svg����������������������������0000664�0000000�0000000�00000000471�14753064456�0026364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.5 3-.16.03L15 5.1 9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5a.5.5 0 0 0 .5.5l.16-.03L9 18.9l6 2.1 5.64-1.9c.21-.07.36-.25.36-.48V3.5a.5.5 0 0 0-.5-.5M10 5.47l4 1.4v11.66l-4-1.4zm-5 .99 3-1.01v11.7l-3 1.16zm14 11.08-3 1.01V6.86l3-1.16z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-plus.svg�������������������������������0000664�0000000�0000000�00000000526�14753064456�0025671�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 3 3.36 4.9c-.2.07-.36.25-.36.48V20.5a.5.5 0 0 0 .5.5c.05 0 .1 0 .16-.03L9 18.9l4.16 1.46c-.1-.44-.16-.9-.16-1.36 0-.23 0-.46.04-.7L9 16.9V5l6 2.1v7.46c1.07-.96 2.47-1.56 4-1.56.7 0 1.37.13 2 .36V3.5a.5.5 0 0 0-.5-.5h-.16L15 5.1zm9 12v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-search-outline.svg���������������������0000664�0000000�0000000�00000001040�14753064456�0027620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 12c2.5 0 4.5 2 4.5 4.5 0 .88-.25 1.7-.69 2.4l3.08 3.1L21 23.39l-3.12-3.07c-.69.43-1.51.68-2.38.68-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5m0 2a2.5 2.5 0 0 0-2.5 2.5 2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5m4-12a.5.5 0 0 1 .5.5v9.31c-.58-.55-1.25-1-2-1.31V4.7l-3 1.16V10c-.7.07-1.38.24-2 .5V5.87l-4-1.4V16.5c0 .64.09 1.26.26 1.84L8 17.9l-5.34 2.07-.16.03a.5.5 0 0 1-.5-.5V4.38c0-.23.15-.41.36-.48L8 2l6 2.1 5.34-2.07zM4 5.46v11.85l3-1.16V4.45z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/map-search.svg�����������������������������0000664�0000000�0000000�00000001000�14753064456�0026137�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 12c2.5 0 4.5 2 4.5 4.5 0 .88-.25 1.71-.69 2.4l3.08 3.1L21 23.39l-3.12-3.07c-.69.43-1.51.68-2.38.68-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5m0 2a2.5 2.5 0 0 0-2.5 2.5 2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5M14 6.11 8 4v11.89l1 .35v.26c0 .64.09 1.26.26 1.84L8 17.9l-5.34 2.07-.16.03a.5.5 0 0 1-.5-.5V4.38c0-.23.15-.41.36-.48L8 2l6 2.1L19.34 2h.16a.5.5 0 0 1 .5.5v9.31A6.48 6.48 0 0 0 15.5 10c-.5 0-1 .06-1.5.17z"/></svg>mkdocs-material-9.6.4/material/templates/.icons/material/map.svg������������������������������������0000664�0000000�0000000�00000000403�14753064456�0024702�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15 19-6-2.11V5l6 2.11M20.5 3h-.16L15 5.1 9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5a.5.5 0 0 0 .5.5c.05 0 .11 0 .16-.03L9 18.9l6 2.1 5.64-1.9c.21-.1.36-.25.36-.48V3.5a.5.5 0 0 0-.5-.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mapbox.svg���������������������������������0000664�0000000�0000000�00000000515�14753064456�0025417�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m4.75 12.45c1.9-1.9 1.83-5.06-.16-7.04s-5.14-2.06-7.04-.16c-3.43 3.43-2.33 9.53-2.33 9.53s6.11 1.09 9.53-2.33m-3.6-6.59.98 2.01 2.01.98-2.01.98-.98 2.01-.98-2.01-2.01-.98 2.01-.98z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/margin.svg���������������������������������0000664�0000000�0000000�00000000571�14753064456�0025410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4v5l-1.5-1.5-13 13-2-2 13-13L15 4zm-3 16a3 3 0 0 1-3-3v-2a3 3 0 0 1 3-3 3 3 0 0 1 3 3v2a3 3 0 0 1-3 3m0-6a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1M7 12a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3 3 3 0 0 1 3 3v2a3 3 0 0 1-3 3m0-6a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 1 1 0 0 0 1-1V7a1 1 0 0 0-1-1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/marker-cancel.svg��������������������������0000664�0000000�0000000�00000001100�14753064456�0026624�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.5 13c2.5 0 4.5 2 4.5 4.5S20 22 17.5 22 13 20 13 17.5s2-4.5 4.5-4.5m0 1.5c-.56 0-1.08.15-1.5.42L20.08 19c.27-.42.42-.94.42-1.5a3 3 0 0 0-3-3m-3 3a3 3 0 0 0 3 3c.56 0 1.08-.15 1.5-.42L14.92 16c-.27.42-.42.94-.42 1.5m4-16.35c.5 0 1 .19 1.39.58l2.84 2.83c.77.79.77 2.05 0 2.83l-3.78 3.77a6.543 6.543 0 0 0-3.8.28l-3.89-3.89 5.81-5.82c.39-.39.9-.58 1.43-.58M10.3 8.5l3.59 3.6A6.49 6.49 0 0 0 11 17.5c0 .5.06 1 .16 1.45L10 20.12c-.78.77-2.03.78-2.81.02l-.86.86H.67l3.69-3.69c-.8-.81-.8-2.07-.02-2.85z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/marker-check.svg���������������������������0000664�0000000�0000000�00000000344�14753064456�0026465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10 16-5-5 1.41-1.42L10 13.17l7.59-7.59L19 7m0-6H5c-1.11 0-2 .89-2 2v12.93c0 .69.35 1.3.88 1.66L12 23l8.11-5.41c.53-.36.89-.97.89-1.66V3a2 2 0 0 0-2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/marker.svg���������������������������������0000664�0000000�0000000�00000000501�14753064456�0025405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 1.15c-.53 0-1.04.19-1.43.58l-5.81 5.82 5.65 5.65 5.82-5.81c.77-.78.77-2.04 0-2.83l-2.84-2.83c-.39-.39-.89-.58-1.39-.58M10.3 8.5l-5.96 5.96c-.78.78-.78 2.04.02 2.85C3.14 18.54 1.9 19.77.67 21h5.66l.86-.86c.78.76 2.03.75 2.81-.02l5.95-5.96"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mastodon.svg�������������������������������0000664�0000000�0000000�00000001330�14753064456�0025751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.94 14c-.28 1.41-2.44 2.96-4.97 3.26-1.31.15-2.6.3-3.97.24-2.25-.11-4-.54-4-.54v.62c.32 2.22 2.22 2.35 4.03 2.42 1.82.05 3.44-.46 3.44-.46l.08 1.65s-1.28.68-3.55.81c-1.25.07-2.81-.03-4.62-.5-3.92-1.05-4.6-5.24-4.7-9.5l-.01-3.43c0-4.34 2.83-5.61 2.83-5.61C6.95 2.3 9.41 2 11.97 2h.06c2.56 0 5.02.3 6.47.96 0 0 2.83 1.27 2.83 5.61 0 0 .04 3.21-.39 5.43M18 8.91c0-1.08-.3-1.91-.85-2.56-.56-.63-1.3-.96-2.23-.96-1.06 0-1.87.41-2.42 1.23l-.5.88-.5-.88c-.56-.82-1.36-1.23-2.43-1.23-.92 0-1.66.33-2.23.96C6.29 7 6 7.83 6 8.91v5.26h2.1V9.06c0-1.06.45-1.62 1.36-1.62 1 0 1.5.65 1.5 1.93v2.79h2.07V9.37c0-1.28.5-1.93 1.51-1.93.9 0 1.35.56 1.35 1.62v5.11H18z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/material-design.svg������������������������0000664�0000000�0000000�00000001105�14753064456�0027172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 12c0-2.03-.67-3.91-2-5.62v11.25c1.33-1.66 2-3.54 2-5.63m-3.37 7H6.38c.68.55 1.57 1 2.67 1.41 1.09.39 2.08.59 2.95.59.88 0 1.86-.2 2.95-.59 1.1-.41 1.99-.86 2.68-1.41M11 17 7 9v8zm6-8-4 8h4zm-5 5.53L15.75 7h-7.5zM17.63 5C15.97 3.67 14.09 3 12 3s-3.97.67-5.62 2zM5 17.63V6.38C3.67 8.09 3 9.97 3 12c0 2.09.67 3.97 2 5.63M23 12c0 3.03-1.06 5.63-3.22 7.78C17.63 21.94 15.03 23 12 23s-5.62-1.06-7.78-3.22C2.06 17.63 1 15.03 1 12s1.06-5.62 3.22-7.78S8.97 1 12 1s5.63 1.06 7.78 3.22C21.94 6.38 23 8.97 23 12"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/material-ui.svg����������������������������0000664�0000000�0000000�00000000424�14753064456�0026341�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 16.61v-1.24l6-3.46V7.23l-5 2.89-5-2.89V13l-1 .58L2 13V5l1.07-.62L9 7.81l3.93-2.27 2-1.16L16 5v8.06L10.92 16l4.05 2.33 5.03-2.9V11l1-.58 1 .58v5.58l-7.03 4.06zm14-6.86-1 .58-1-.58V8.58L21 8l1 .58z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/math-compass.svg���������������������������0000664�0000000�0000000�00000000520�14753064456�0026521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 19.88V22l-1.8-1.17-4.79-9c.66-.21 1.26-.55 1.78-1zM15 7a3 3 0 0 1-3 3h-.44L5.8 20.83 4 22v-2.12L9.79 9c-1.1-1.23-1-3.13.24-4.24C10.57 4.28 11.27 4 12 4V2a1 1 0 0 1 1 1v1.18c1.2.42 2 1.55 2 2.82m-2 0a1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/math-cos.svg�������������������������������0000664�0000000�0000000�00000000507�14753064456�0025645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1H6v1H4V9h2v1h2V9a2 2 0 0 0-2-2zm7 0a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zm0 2h2v6h-2zm7-2a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2v2h-4v2h4a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-2V9h4V7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/math-integral-box.svg����������������������0000664�0000000�0000000�00000000545�14753064456�0027456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m-3.1 3.9s-.7-.3-1-.3c-.6-.1-1 .1-1.2 1.1L12 16.8c-.2.8-.5 1.4-1 1.8-.4.3-.8.4-1.3.4-.8 0-2-.5-2-.5l.5-1.4s.8.3 1 .3c.3.1.5 0 .7-.1s.3-.4.4-.7l1.6-9.2c.1-.8.5-1.4 1-1.9.6-.4 1.3-.5 2.1-.4.7.1 1.5.5 1.5.5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/math-integral.svg��������������������������0000664�0000000�0000000�00000000451�14753064456�0026664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.5 19.1c-.2 1.1-.6 1.9-1.3 2.4s-1.6.6-2.7.4c-.4-.1-1.2-.2-1.5-.4l.5-1.5c.3.1.9.3 1.2.3 1.1.2 1.7-.3 1.9-1.5L12 5.2c.2-1.2.7-2 1.4-2.6.7-.5 1.7-.7 2.8-.5.4.1 1.2.2 1.8.5L17.5 4c-.2-.1-.9-.2-1.2-.3-1.3-.2-2 .4-2.3 1.9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/math-log.svg�������������������������������0000664�0000000�0000000�00000000372�14753064456�0025642�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 7c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2v-4h-2v4h-2V9h4V7zM2 7v10h6v-2H4V7zm9 0c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 2h2v6h-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/math-norm-box.svg��������������������������0000664�0000000�0000000�00000000262�14753064456�0026620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m-9 15H8V6h2zm6 0h-2V6h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/math-norm.svg������������������������������0000664�0000000�0000000�00000000151�14753064456�0026027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 21V3h2v18zm-6 0V3h2v18z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/math-sin.svg�������������������������������0000664�0000000�0000000�00000000341�14753064456�0025646�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 7a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2v2H2v2h4a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2H4V9h4V7zm10 0v2h-1v6h1v2h-4v-2h1V9h-1V7zm2 0v10h2v-5l2 5h2V7h-2v5l-2-5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/math-tan.svg�������������������������������0000664�0000000�0000000�00000000274�14753064456�0025644�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 7v2h2v8h2V9h2V7zm9 0a2 2 0 0 0-2 2v8h2v-4h2v4h2V9a2 2 0 0 0-2-2zm0 2h2v2h-2zm5-2v10h2v-5l2 5h2V7h-2v5l-2-5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/matrix.svg���������������������������������0000664�0000000�0000000�00000000603�14753064456�0025433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2h4v2H4v16h2v2H2zm18 2h-2V2h4v20h-4v-2h2zM9 5h1v5h1v1H8v-1h1V6l-1 .5v-1zm6 8h1v5h1v1h-3v-1h1v-4l-1 .5v-1zm-6 0c1.1 0 2 1.34 2 3s-.9 3-2 3-2-1.34-2-3 .9-3 2-3m0 1c-.55 0-1 .9-1 2s.45 2 1 2 1-.9 1-2-.45-2-1-2m6-9c1.1 0 2 1.34 2 3s-.9 3-2 3-2-1.34-2-3 .9-3 2-3m0 1c-.55 0-1 .9-1 2s.45 2 1 2 1-.9 1-2-.45-2-1-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/medal-outline.svg��������������������������0000664�0000000�0000000�00000000455�14753064456�0026673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.94 19.5 12 17.77 9.06 19.5l.78-3.34-2.59-2.24 3.41-.29L12 10.5l1.34 3.13 3.41.29-2.59 2.24M20 2H4v2l4.86 3.64a8 8 0 1 0 6.28 0L20 4m-2 11a6 6 0 1 1-7.18-5.88 5.9 5.9 0 0 1 2.36 0A6 6 0 0 1 18 15m-5.37-8h-1.26l-4-3h9.34Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/medal.svg����������������������������������0000664�0000000�0000000�00000000417�14753064456�0025214�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4v2l5.81 4.36a7.004 7.004 0 0 0-4.46 8.84 6.996 6.996 0 0 0 8.84 4.46 7 7 0 0 0 0-13.3L20 4zm-5.06 17.5L12 17.78 9.06 19.5l.78-3.33-2.59-2.24 3.41-.29L12 10.5l1.34 3.14 3.41.29-2.59 2.24z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/medical-bag.svg����������������������������0000664�0000000�0000000�00000000344�14753064456�0026256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 3 8 5v2H5C3.85 7 3.12 8 3 9L2 19c-.12 1 .54 2 2 2h16c1.46 0 2.12-1 2-2L21 9c-.12-1-.94-2-2-2h-3V5l-2-2zm0 2h4v2h-4zm1 5h2v3h3v2h-3v3h-2v-3H8v-2h3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/medical-cotton-swab.svg��������������������0000664�0000000�0000000�00000000342�14753064456�0027763�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h12v2H3zM2 21h14V6H2zm3-9h2.5V9.5h3V12H13v3h-2.5v2.5h-3V15H5zm15-6c-1.7 0-3 1.8-3 4 0 1.8.8 3.2 2 3.8V21h2v-7.2c1.2-.5 2-2 2-3.8 0-2.2-1.3-4-3-4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/medication-outline.svg���������������������0000664�0000000�0000000�00000000337�14753064456�0027724�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 15H8v-3h2.5V9.5h3V12H16v3h-2.5v2.5h-3zM19 8v11c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V8c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2m-2 0H7v11h10zm1-5H6v2h12z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/medication.svg�����������������������������0000664�0000000�0000000�00000000317�14753064456�0026245�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 3h12v2H6zm11 3H7c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2m-1 9h-2.5v2.5h-3V15H8v-3h2.5V9.5h3V12H16z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/meditation.svg�����������������������������0000664�0000000�0000000�00000001017�14753064456�0026264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4c1.11 0 2 .89 2 2s-.89 2-2 2-2-.89-2-2 .9-2 2-2m9 12v-2c-2.24 0-4.16-.96-5.6-2.68l-1.34-1.6A1.98 1.98 0 0 0 12.53 9H11.5c-.61 0-1.17.26-1.55.72l-1.34 1.6C7.16 13.04 5.24 14 3 14v2c2.77 0 5.19-1.17 7-3.25V15l-3.88 1.55c-.67.27-1.12.95-1.12 1.66C5 19.2 5.8 20 6.79 20H9v-.5a2.5 2.5 0 0 1 2.5-2.5h3c.28 0 .5.22.5.5s-.22.5-.5.5h-3c-.83 0-1.5.67-1.5 1.5v.5h7.21c.99 0 1.79-.8 1.79-1.79 0-.71-.45-1.39-1.12-1.66L14 15v-2.25c1.81 2.08 4.23 3.25 7 3.25"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/memory-arrow-down.svg����������������������0000664�0000000�0000000�00000000515�14753064456�0027536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19v-4h-2v4h-2l3 3 3-3zm-6.9 0H11v2H9v-2H7c-1.1 0-2-.9-2-2v-2H3v-2h2v-2H3V9h2V7c0-1.1.9-2 2-2h2V3h2v2h2V3h2v2h2c1.1 0 2 .9 2 2v2h2v2h-2v1.1c-.3-.1-.7-.1-1-.1s-.7 0-1 .1V7H7v10h5.1c-.1.3-.1.7-.1 1s0 .7.1 1M9 15h3.8c.5-.9 1.3-1.7 2.2-2.2V9H9zm2-4h2v2h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/memory.svg���������������������������������0000664�0000000�0000000�00000000403�14753064456�0025435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 17H7V7h10m4 4V9h-2V7a2 2 0 0 0-2-2h-2V3h-2v2h-2V3H9v2H7c-1.11 0-2 .89-2 2v2H3v2h2v2H3v2h2v2a2 2 0 0 0 2 2h2v2h2v-2h2v2h2v-2h2a2 2 0 0 0 2-2v-2h2v-2h-2v-2m-6 2h-2v-2h2m2-2H9v6h6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/menorah-fire.svg���������������������������0000664�0000000�0000000�00000002306�14753064456�0026505�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.5 11.15V10c0-.55-.45-1-1-1h-1c-.55 0-1 .45-1 1v1h-1v-1c0-.55-.45-1-1-1h-1c-.55 0-1 .45-1 1v1h-1V8c0-.55-.45-1-1-1h-1c-.55 0-1 .45-1 1v3h-1v-1c0-.55-.45-1-1-1h-1c-.55 0-1 .45-1 1v1h-1v-1c0-.55-.45-1-1-1h-1c-.55 0-1 .45-1 1v1.15c-.29.18-.5.48-.5.85 0 .55.45 1 1 1h1.25c.7 1.92 2.69 4.58 6.75 4.95V20h-1c-1.1 0-2 .9-2 2h8a2 2 0 0 0-2-2h-1v-2.05c4.06-.38 6.05-3.03 6.75-4.95H21c.55 0 1-.45 1-1 0-.37-.21-.67-.5-.85M6.45 13H11v2.94c-2.66-.31-3.95-1.83-4.55-2.94M13 15.94V13h4.55c-.6 1.11-1.89 2.63-4.55 2.94M12 6c.83 0 1.5-.67 1.5-1.5S12.83 2 12 2s-1.5 1.67-1.5 2.5S11.17 6 12 6m0-1.75c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5M16 8c.83 0 1.5-.67 1.5-1.5S16.83 4 16 4s-1.5 1.67-1.5 2.5S15.17 8 16 8m0-1.75c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5M20 8c.83 0 1.5-.67 1.5-1.5S20.83 4 20 4s-1.5 1.67-1.5 2.5S19.17 8 20 8m0-1.75c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5M4 8c.83 0 1.5-.67 1.5-1.5S4.83 4 4 4 2.5 5.67 2.5 6.5 3.17 8 4 8m0-1.75c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5M8 8c.83 0 1.5-.67 1.5-1.5S8.83 4 8 4 6.5 5.67 6.5 6.5 7.17 8 8 8m0-1.75c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/menorah.svg��������������������������������0000664�0000000�0000000�00000000603�14753064456�0025560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11V6l-2-1v6h-2V6l-2-1v6h-2V3l-2-1v9H9V6L7 5v6H5V6L3 5v6c-.55 0-1 .45-1 1s.45 1 1 1h1.25c.7 1.92 2.69 4.58 6.75 4.95V20h-1c-1.1 0-2 .9-2 2h8a2 2 0 0 0-2-2h-1v-2.05c4.06-.38 6.05-3.03 6.75-4.95H21c.55 0 1-.45 1-1s-.45-1-1-1m-10 4.94c-2.66-.31-3.95-1.83-4.55-2.94H11zm2 0V13h4.55c-.6 1.11-1.89 2.63-4.55 2.94"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/menu-close.svg�����������������������������0000664�0000000�0000000�00000000241�14753064456�0026174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h10v2H3zm0 10h10v2H3zm0-5h12v2H3zm13-4-1.42 1.39L18.14 12l-3.56 3.61L16 17l5-5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/menu-down-outline.svg����������������������0000664�0000000�0000000�00000000172�14753064456�0027516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 9v1.5l-6 6-6-6V9zm-6 4.67L14.67 11H9.33z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/menu-down.svg������������������������������0000664�0000000�0000000�00000000134�14753064456�0026037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7 10 5 5 5-5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/menu-left-outline.svg����������������������0000664�0000000�0000000�00000000175�14753064456�0027504�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 18h-1.5l-6-6 6-6H15zm-4.67-6L13 14.67V9.33z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/menu-left.svg������������������������������0000664�0000000�0000000�00000000134�14753064456�0026022�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14 7-5 5 5 5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/menu-open.svg������������������������������0000664�0000000�0000000�00000000247�14753064456�0026036�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 15.61 19.59 17l-5.01-5 5.01-5L21 8.39 17.44 12zM3 6h13v2H3zm0 7v-2h10v2zm0 5v-2h13v2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/menu-right-outline.svg���������������������0000664�0000000�0000000�00000000166�14753064456�0027667�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 6h1.5l6 6-6 6H9zm4.67 6L11 9.33v5.34z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/menu-right.svg�����������������������������0000664�0000000�0000000�00000000135�14753064456�0026206�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10 17 5-5-5-5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/menu-swap-outline.svg����������������������0000664�0000000�0000000�00000000244�14753064456�0027521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 3.5-6 6V11h12V9.5zm0 2.83L14.67 9H9.33zM6 13v1.5l6 6 6-6V13zm3.33 2h5.34L12 17.67z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/menu-swap.svg������������������������������0000664�0000000�0000000�00000000151�14753064456�0026041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 6-5 5h10zm-5 7 5 5 5-5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/menu-up-outline.svg������������������������0000664�0000000�0000000�00000000175�14753064456�0027176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 16v-1.5l-6-6-6 6V16zm-6-4.67L14.67 14H9.33z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/menu-up.svg��������������������������������0000664�0000000�0000000�00000000134�14753064456�0025514�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7 15 5-5 5 5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/menu.svg�����������������������������������0000664�0000000�0000000�00000000162�14753064456�0025073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3zm0 5h18v2H3zm0 5h18v2H3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/merge.svg����������������������������������0000664�0000000�0000000�00000000275�14753064456�0025233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8 17 4-4h3.2c.4 1.2 1.5 2 2.8 2 1.7 0 3-1.3 3-3s-1.3-3-3-3c-1.3 0-2.4.8-2.8 2H12L8 7V3H3v5h3l4.2 4L6 16H3v5h5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-alert-outline.svg������������������0000664�0000000�0000000�00000000274�14753064456�0030341�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 10h-2V6h2zm0 2h-2v2h2zm9-8v12a2 2 0 0 1-2 2H6l-4 4V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2m-2 0H4v13.2L5.2 16H20z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-alert.svg��������������������������0000664�0000000�0000000�00000000251�14753064456�0026657�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 11h-2V5h2m0 10h-2v-2h2m7-11H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-arrow-left-outline.svg�������������0000664�0000000�0000000�00000000330�14753064456�0031305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 14H5.2L4 17.2V4h16zm-4-5V9h-4.5l1.8-1.8L12 6l-4 4 4 4 1.2-1.2-1.7-1.8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-arrow-left.svg���������������������0000664�0000000�0000000�00000000303�14753064456�0027630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-4 9h-4.5l1.8 1.8L12 14l-4-4 4-4 1.2 1.2L11.5 9H16z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-arrow-right-outline.svg������������0000664�0000000�0000000�00000000326�14753064456�0031475�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 14H5.2L4 17.2V4h16zM8 9v2h4.5l-1.8 1.8L12 14l4-4-4-4-1.2 1.2L12.5 9z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-arrow-right.svg��������������������0000664�0000000�0000000�00000000300�14753064456�0030010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-8 12-1.2-1.2 1.8-1.8H8V9h4.5l-1.8-1.8L12 6l4 4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-badge-outline.svg������������������0000664�0000000�0000000�00000000352�14753064456�0030271�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 7v9c0 1.1-.9 2-2 2H6l-4 4V4c0-1.1.9-2 2-2h10.1c-.1.3-.1.7-.1 1s0 .7.1 1H4v12h16V7.9c.7-.1 1.4-.5 2-.9m-6-4c0 1.7 1.3 3 3 3s3-1.3 3-3-1.3-3-3-3-3 1.3-3 3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-badge.svg��������������������������0000664�0000000�0000000�00000000344�14753064456�0026615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 7v9c0 1.1-.9 2-2 2H6l-4 4V4c0-1.1.9-2 2-2h10.1c-.1.3-.1.7-.1 1 0 2.8 2.2 5 5 5 1.1 0 2.2-.4 3-1m-6-4c0 1.7 1.3 3 3 3s3-1.3 3-3-1.3-3-3-3-3 1.3-3 3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-bookmark-outline.svg���������������0000664�0000000�0000000�00000000272�14753064456�0031035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 14H5.2L4 17.2V4h16zm-2-2V6h-5v8l2.5-1.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-bookmark.svg�����������������������0000664�0000000�0000000�00000000250�14753064456�0027354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-1 11-2.5-1.5L14 13V5h5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-bulleted-off.svg�������������������0000664�0000000�0000000�00000000363�14753064456�0030124�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.27 1.73 0 3l2 2v17l4-4h9l5.73 5.73L22 22.46zM8 14H6v-2h2zm-2-3V9l2 2zm14-9H4.08L10 7.92V6h8v2h-7.92l1 1H18v2h-4.92l6.99 7c1.07-.05 1.93-.92 1.93-2V4a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-bulleted.svg�����������������������0000664�0000000�0000000�00000000323�14753064456�0027350�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4a2 2 0 0 0-2 2v18l4-4h14a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2M8 14H6v-2h2zm0-3H6V9h2zm0-3H6V6h2zm7 6h-5v-2h5zm3-3h-8V9h8zm0-3h-8V6h8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-check-outline.svg������������������0000664�0000000�0000000�00000000327�14753064456�0030306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 14H5.2L4 17.2V4h16zm-9.53-2L7 10.5l1.4-1.41 2.07 2.08L15.6 6 17 7.41z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-check.svg��������������������������0000664�0000000�0000000�00000000303�14753064456�0026623�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2m-9.53 12L7 10.5l1.4-1.41 2.07 2.08L15.6 6 17 7.41z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-cog-outline.svg��������������������0000664�0000000�0000000�00000001154�14753064456�0030000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 14H5.2L4 17.2V4h16zm-3.2-4.7-1.1-.8v-1l1.1-.8c.1-.1.1-.2.1-.3l-1-1.7c-.1-.1-.2-.2-.3-.1l-1.3.4c-.3-.2-.5-.4-.9-.5l-.2-1.3c0-.1-.1-.2-.2-.2h-2c-.1 0-.2.1-.2.2l-.2 1.3c-.3.2-.6.3-.9.5l-1.2-.5c-.1 0-.2 0-.3.1l-1 1.7c-.1.1 0 .2.1.3l1.1.8v1l-1.1.8c-.1.1-.1.2-.1.3l1 1.7c.1.1.2.2.3.1l1.2-.3c.3.2.5.4.8.5l.2 1.3c0 .1.1.2.3.2h2c.1 0 .2-.1.2-.2l.2-1.3c.3-.1.6-.3.8-.5l1.2.5c.1 0 .2 0 .3-.1l1-1.7c.2-.2.2-.3.1-.4m-4.8.2c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-cog.svg����������������������������0000664�0000000�0000000�00000001410�14753064456�0026316�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.5 10a1.5 1.5 0 0 1-1.5 1.5c-.84 0-1.5-.67-1.5-1.5A1.5 1.5 0 0 1 12 8.5a1.5 1.5 0 0 1 1.5 1.5M22 4v12a2 2 0 0 1-2 2H6l-4 4V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2m-5.23 7.32-1.07-.82c.01-.17.01-.34 0-.5.02-.16.02-.33 0-.5l1.06-.82a.26.26 0 0 0 .06-.32l-1-1.73c-.06-.13-.19-.16-.32-.13l-1.23.5c-.27-.2-.54-.37-.85-.5l-.19-1.31A.235.235 0 0 0 13 5h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.12-.59.28-.86.47l-1.24-.5c-.12-.04-.25 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.84c-.04.32-.04.66 0 1l-1.06.82a.26.26 0 0 0-.06.32l1 1.73c.06.13.19.16.31.13L9.7 13c.26.2.54.37.85.5l.19 1.31c.03.12.14.19.26.19h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.56-.29.84-.47l1.25.5c.12 0 .25 0 .31-.13l1-1.73a.25.25 0 0 0-.07-.32"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-draw.svg���������������������������0000664�0000000�0000000�00000000347�14753064456�0026513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 14h-7.5l2-2H18M6 14v-2.5l6.88-6.86c.19-.19.51-.19.71 0l1.76 1.77c.2.2.2.51 0 .71L8.47 14M20 2H4a2 2 0 0 0-2 2v18l4-4h14a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-fast-outline.svg�������������������0000664�0000000�0000000�00000000414�14753064456�0030163�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 5H9c-1.1 0-2 .9-2 2v14l4-4h9c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2m0 10h-9.8L9 16.2V7h11zM3 7c-.6 0-1 .4-1 1s.4 1 1 1h2V7zm-1 4c-.6 0-1 .4-1 1s.4 1 1 1h3v-2zm-1 4c-.6 0-1 .4-1 1s.4 1 1 1h4v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-fast.svg���������������������������0000664�0000000�0000000�00000000365�14753064456�0026513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 7c-.6 0-1 .4-1 1s.4 1 1 1h2V7zm-1 4c-.6 0-1 .4-1 1s.4 1 1 1h3v-2zm-1 4c-.6 0-1 .4-1 1s.4 1 1 1h4v-2zM20 5H9c-1.1 0-2 .9-2 2v14l4-4h9c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-flash-outline.svg������������������0000664�0000000�0000000�00000000257�14753064456�0030330�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 17.2V4h16v6h2V4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v18l4-4h9v-2H5.2zM22.5 16h-2.2l1.7-4h-5v6h2v5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-flash.svg��������������������������0000664�0000000�0000000�00000000236�14753064456�0026650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v18l4-4h9v-8h7zm.5 12h-2.2l1.7-4h-5v6h2v5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-image-outline.svg������������������0000664�0000000�0000000�00000000305�14753064456�0030307�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 14H5.2L4 17.2V4h16zM5 14l3.5-4.5 2.5 3L14.5 8l4.5 6"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-image.svg��������������������������0000664�0000000�0000000�00000000253�14753064456�0026634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5 14 3.5-4.5 2.5 3L14.5 8l4.5 6m1-12H4a2 2 0 0 0-2 2v18l4-4h14a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-lock-outline.svg�������������������0000664�0000000�0000000�00000000456�14753064456�0030164�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 3v-.5C23 1.1 21.9 0 20.5 0S18 1.1 18 2.5V3c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1V4c0-.5-.5-1-1-1m-1 0h-3v-.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 8v5c0 1.1-.9 2-2 2H6l-4 4V4c0-1.1.9-2 2-2h11v2H4v13.2L5.2 16H20v-5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-lock.svg���������������������������0000664�0000000�0000000�00000000477�14753064456�0026512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.5 0A2.5 2.5 0 0 0 18 2.5V3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1v-.5A2.5 2.5 0 0 0 20.5 0m0 1A1.5 1.5 0 0 1 22 2.5V3h-3v-.5A1.5 1.5 0 0 1 20.5 1M4 2a2 2 0 0 0-2 2v18l4-4h14a2 2 0 0 0 2-2v-5h-5c-1.11 0-2-.89-2-2V2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-minus-outline.svg������������������0000664�0000000�0000000�00000000260�14753064456�0030360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 14H5.2L4 17.2V4h16zM8 9v2h8V9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-minus.svg��������������������������0000664�0000000�0000000�00000000230�14753064456�0026700�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2a2 2 0 0 1 2 2v12c0 1.11-.89 2-2 2H6l-4 4V4a2 2 0 0 1 2-2zM8 9v2h8V9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-off-outline.svg��������������������0000664�0000000�0000000�00000000405�14753064456�0030000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.2 4-2-2H20a2 2 0 0 1 2 2v12c0 .76-.43 1.41-1.05 1.75L19.2 16h.8V4zm14.91 17.46-1.27 1.27L16.11 18H6l-4 4V3.9L1.11 3l1.28-1.27L6.1 5.44 16.65 16h.01l2 2h-.01zm-8-5.46L4 5.89V18l2-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-off.svg����������������������������0000664�0000000�0000000�00000000306�14753064456�0026323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.95 17.75 5.2 2H20a2 2 0 0 1 2 2v12c0 .76-.43 1.41-1.05 1.75M2.39 1.73 1.11 3l.89.9V22l4-4h10.11l4.73 4.73 1.27-1.27z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-outline.svg������������������������0000664�0000000�0000000�00000000245�14753064456�0027232�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 14H5.2L4 17.2V4h16z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-plus-outline.svg�������������������0000664�0000000�0000000�00000000304�14753064456�0030207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 14H5.2L4 17.2V4h16zm-4-7v2h-3v3h-2v-3H8V9h3V6h2v3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-plus.svg���������������������������0000664�0000000�0000000�00000000250�14753064456�0026532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H6l-4 4V4a2 2 0 0 1 2-2zm-9 4v3H8v2h3v3h2v-3h3V9h-3V6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-processing-outline.svg�������������0000664�0000000�0000000�00000000310�14753064456�0031375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 14H5.2L4 17.2V4h16zm-3-5h-2V9h2m-4 2h-2V9h2m-4 2H7V9h2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-processing.svg���������������������0000664�0000000�0000000�00000000257�14753064456�0027732�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 11h-2V9h2m-4 2h-2V9h2m-4 2H7V9h2m11-7H4a2 2 0 0 0-2 2v18l4-4h14a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-question-outline.svg���������������0000664�0000000�0000000�00000000654�14753064456�0031103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 14H5.2L4 17.2V4h16zM12.2 5.5c-.9 0-1.6.2-2.1.5-.6.4-.9 1-.8 1.7h2q0-.45.3-.6c.2-.1.4-.2.7-.2s.6.1.8.3.3.4.3.7-.1.5-.2.7c-.2.2-.4.4-.6.5-.5.3-.9.6-1.1.8-.4.3-.5.6-.5 1.1h2c0-.3.1-.5.1-.7.1-.2.3-.3.5-.5.5-.2.8-.5 1.1-.9s.4-.8.4-1.2c0-.7-.3-1.3-.8-1.7-.4-.3-1.2-.5-2.1-.5M11 12v2h2v-2z"/></svg>������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-question.svg�����������������������0000664�0000000�0000000�00000000614�14753064456�0027422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-7 12h-2v-2h2zm1.8-5c-.3.4-.7.6-1.1.8-.3.2-.4.3-.5.5-.2.2-.2.4-.2.7h-2c0-.5.1-.8.3-1.1.2-.2.6-.5 1.1-.8.3-.1.5-.3.6-.5s.2-.5.2-.7c0-.3-.1-.5-.3-.7s-.5-.3-.8-.3-.5.1-.7.2q-.3.15-.3.6h-2c.1-.7.4-1.3.9-1.7s1.2-.5 2.1-.5 1.7.2 2.2.6.8 1 .8 1.7q.15.6-.3 1.2"/></svg>��������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-reply-outline.svg������������������0000664�0000000�0000000�00000000245�14753064456�0030363�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2m0 15.2L18.8 16H4V4h16z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-reply-text-outline.svg�������������0000664�0000000�0000000�00000000275�14753064456�0031350�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 11h9v2H9zm9-4H6v2h12zm4-3v18l-4-4H4a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2h16a2 2 0 0 1 2 2m-2 0H4v12h14.83L20 17.17z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-reply-text.svg���������������������0000664�0000000�0000000�00000000260�14753064456�0027665�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 8H6V6h12zm0 3H6V9h12zm0 3H6v-2h12zm4-10a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h14l4 4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-reply.svg��������������������������0000664�0000000�0000000�00000000212�14753064456�0026700�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h14l4 4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-settings-outline.svg���������������0000664�0000000�0000000�00000000315�14753064456�0031066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 14H5.2L4 17.2V4h16zm-9 8h2v-2h-2zm-4 0h2v-2H7zm8 0h2v-2h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-settings.svg�����������������������0000664�0000000�0000000�00000000264�14753064456�0027414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4a2 2 0 0 0-2 2v18l4-4h14a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2m-9 22h2v-2h-2zm-4 0h2v-2H7zm8 0h2v-2h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-star-outline.svg�������������������0000664�0000000�0000000�00000000343�14753064456�0030200�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 14H5.2L4 17.2V4h16zm-8-3.6 2.6 1.6-.7-3 2.3-2-3-.3L12 6l-1.2 2.8-3 .2 2.3 2-.7 3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-star.svg���������������������������0000664�0000000�0000000�00000000317�14753064456�0026524�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-5.4 12L12 12.4 9.4 14l.7-3-2.3-2 3-.3L12 6l1.2 2.8 3 .3-2.3 2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-text-clock-outline.svg�������������0000664�0000000�0000000�00000000673�14753064456�0031312�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 12.41V4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v18l4-4h3.29A7.001 7.001 0 0 0 23 16c0-1.31-.37-2.54-1-3.59M5.17 16 4 17.17V4h16v6.26A6.96 6.96 0 0 0 16 9c-1.9 0-3.63.77-4.89 2H6v2h3.69c-.44.91-.69 1.93-.69 3zM16 20.85c-2.68 0-4.85-2.17-4.85-4.85s2.17-4.85 4.85-4.85c2.67 0 4.85 2.17 4.85 4.85s-2.18 4.85-4.85 4.85M18 9H6V7h12zm-1.5 6.82 2.44 1.41-.75 1.3L15 16.69V13h1.5z"/></svg>���������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-text-clock.svg���������������������0000664�0000000�0000000�00000000626�14753064456�0027633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 12.41V4a2 2 0 0 0-2-2H4c-1.1 0-2 .9-2 2v18l4-4h3.29A7.001 7.001 0 0 0 23 16c0-1.31-.37-2.54-1-3.59M6 6h12v2H6zm10 3c-1.9 0-3.63.77-4.89 2H6V9zM6 12h4.26c-.42.6-.76 1.28-.96 2H6zm10 8.85c-2.68 0-4.85-2.17-4.85-4.85s2.17-4.85 4.85-4.85c2.67 0 4.85 2.17 4.85 4.85s-2.18 4.85-4.85 4.85m.5-5.03 2.44 1.41-.75 1.3L15 16.69V13h1.5z"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-text-fast-outline.svg��������������0000664�0000000�0000000�00000000452�14753064456�0031147�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 11.5h7V13h-7zm0-3h9V10h-9zM20 5H9c-1.1 0-2 .9-2 2v14l4-4h9c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2m0 10h-9.8L9 16.2V7h11zM3 7c-.6 0-1 .4-1 1s.4 1 1 1h2V7zm-1 4c-.6 0-1 .4-1 1s.4 1 1 1h3v-2zm-1 4c-.6 0-1 .4-1 1s.4 1 1 1h4v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-text-fast.svg����������������������0000664�0000000�0000000�00000000413�14753064456�0027467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 5c-1.1 0-2 .9-2 2v14l4-4h9c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zM3 7c-.6 0-1 .4-1 1s.4 1 1 1h2V7zm8 1h8v2h-8zm-9 3c-.6 0-1 .4-1 1s.4 1 1 1h3v-2zm9 1h5v2h-5zM1 15c-.6 0-1 .4-1 1s.4 1 1 1h4v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-text-lock-outline.svg��������������0000664�0000000�0000000�00000000504�14753064456�0031140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 3v-.5a2.5 2.5 0 0 0-5 0V3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1m-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zM6 11h9v2H6zm0-4h9v2H6zm16 4v5c0 1.11-.89 2-2 2H6l-4 4V4a2 2 0 0 1 2-2h11v2H4v13.17L5.17 16H20v-5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-text-lock.svg����������������������0000664�0000000�0000000�00000000540�14753064456�0027463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.5 0A2.5 2.5 0 0 0 18 2.5V3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1v-.5A2.5 2.5 0 0 0 20.5 0m0 1A1.5 1.5 0 0 1 22 2.5V3h-3v-.5A1.5 1.5 0 0 1 20.5 1M4 2a2 2 0 0 0-2 2v18l4-4h14a2 2 0 0 0 2-2v-5h-5c-1.11 0-2-.89-2-2V2zm2 4h7v2H6zm0 3h7v2H6zm0 3h8v2H6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-text-outline.svg�������������������0000664�0000000�0000000�00000000271�14753064456�0030213�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H6l-4 4V4a2 2 0 0 1 2-2zM4 4v13.17L5.17 16H20V4zm2 3h12v2H6zm0 4h9v2H6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-text.svg���������������������������0000664�0000000�0000000�00000000254�14753064456�0026537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4a2 2 0 0 0-2 2v18l4-4h14a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2M6 9h12v2H6m8 3H6v-2h8m4-4H6V6h12"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message-video.svg��������������������������0000664�0000000�0000000�00000000250�14753064456�0026655�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18 14-4-3.2V14H6V6h8v3.2L18 6m2-4H4a2 2 0 0 0-2 2v18l4-4h14a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/message.svg��������������������������������0000664�0000000�0000000�00000000213�14753064456�0025550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4a2 2 0 0 0-2 2v18l4-4h14a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/meteor.svg���������������������������������0000664�0000000�0000000�00000000732�14753064456�0025425�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.8 3 16.87 15.82s.33.45-.09.89c-.41.44-.95.06-.95.06zm5.01 1.59 13.1 12.05s.32.44-.09.86c-.42.47-.96.09-.96.09zM4.29 8l13.1 12.03s.32.44-.09.88c-.42.45-.96.09-.96.09zm7.76-2.04 9.15 8.41s.22.31-.07.63c-.28.3-.66.03-.66.03zm-6.6 5.95 9.15 8.42s.22.31-.06.62c-.29.31-.67.05-.67.05zm10.93-3.99 4.17 3.82s.11.14-.05.29c-.12.14-.31.02-.31.02zM7.56 16.1l4.18 3.81s.11.15-.04.29c-.14.15-.33.02-.33.02z"/></svg>��������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/meter-electric-outline.svg�����������������0000664�0000000�0000000�00000000505�14753064456�0030511�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11a9 9 0 0 0-18 0c0 3.92 2.5 7.24 6 8.5V22h2v-2.06c.33.06.66.06 1 .06s.67 0 1-.06V22h2v-2.5c3.5-1.26 6-4.58 6-8.5m-9 7c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7M8 7h8v2H8zm4.75 3-3 3L11 14.25 9.75 15.5l1.5 1.5 3-3L13 12.75l1.25-1.25z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/meter-electric.svg�������������������������0000664�0000000�0000000�00000000442�14753064456�0027034�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c-4.96 0-9 4.04-9 9 0 3.91 2.5 7.24 6 8.47V22h2v-2.06c.33.06.66.06 1 .06s.67 0 1-.06V22h2v-2.53c3.5-1.24 6-4.57 6-8.47 0-4.96-4.04-9-9-9m2.25 12-3 3-1.5-1.5L11 14.25 9.75 13l3-3 1.5 1.5L13 12.75zM16 9H8V7h8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/meter-gas-outline.svg����������������������0000664�0000000�0000000�00000000561�14753064456�0027473�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 4h-1V2h-2v2h-2V2H9v2H8C5.79 4 4 5.79 4 8v10c0 2.21 1.79 4 4 4h8c2.21 0 4-1.79 4-4V8c0-2.21-1.79-4-4-4m2 14c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V8c0-1.1.9-2 2-2h8c1.1 0 2 .9 2 2zm-8.5-2.46C9.5 16.9 10.62 18 12 18s2.5-1.1 2.5-2.46c0-1.09-.45-1.41-2.5-3.79-2.07 2.4-2.5 2.71-2.5 3.79M8 8h8v2H8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/meter-gas.svg������������������������������0000664�0000000�0000000�00000000455�14753064456�0026020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 4h-1V2h-2v2h-2V2H9v2H8C5.79 4 4 5.79 4 8v10c0 2.21 1.79 4 4 4h8c2.21 0 4-1.79 4-4V8c0-2.21-1.79-4-4-4m-4 14c-1.38 0-2.5-1.1-2.5-2.46 0-1.09.43-1.39 2.5-3.79 2.05 2.38 2.5 2.7 2.5 3.79C14.5 16.9 13.38 18 12 18m4-8H8V8h8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/metronome-tick.svg�������������������������0000664�0000000�0000000�00000000373�14753064456�0027070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 1.75-3.43.92-4.5 16.83c-.01 0-.07.34-.07.5 0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2 0-.16-.06-.5-.07-.5l-4.5-16.83zM10.29 4h3.42l3.49 13H13v-5h-2v5H6.8zM11 5v4h-1v2h4V9h-1V5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/metronome.svg������������������������������0000664�0000000�0000000�00000000606�14753064456�0026137�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 1.75-3.43.92-4.51 16.86c-.03.15-.06.31-.06.47 0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2 0-.16-.03-.32-.06-.47l-1.36-5.11L17 16l.2 1h-3.79l2.84-2.84-1.41-1.41L10.59 17H6.8l3.49-13h3.42l1.46 5.43 1.63-1.64-1.37-5.12zM11.25 5v9.75l1.5-1.5V5zm8.54 2.8-2.83 2.83-.71-.71-1.41 1.42 2.82 2.82 1.42-1.41-.71-.71 2.83-2.83z"/></svg>��������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/micro-sd.svg�������������������������������0000664�0000000�0000000�00000000274�14753064456�0025650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 2a2 2 0 0 0-2 2v7l-2 2v7a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm1 2h2v4H9zm3 0h2v4h-2zm3 0h2v4h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microphone-message-off.svg�����������������0000664�0000000�0000000�00000000560�14753064456�0030466�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5.27 3.28 4 20 20.72 18.73 22l-5.35-5.35A6 6 0 0 1 9 19.92V22H7v-2.08c-2.84-.48-5-2.95-5-5.92h2a4 4 0 0 0 4 4c1.82 0 3.36-1.22 3.84-2.89L10 13.27V14a2 2 0 0 1-2 2 2 2 0 0 1-2-2V9.27zm19.41 4.14-4.24 4.25L18.18 10H14a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v4c0 .55-.22 1.05-.59 1.41"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microphone-message.svg���������������������0000664�0000000�0000000�00000000524�14753064456�0027716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 7a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2 2 2 0 0 1-2-2V9a2 2 0 0 1 2-2m6 7c0 2.97-2.16 5.44-5 5.92V22H7v-2.08c-2.84-.48-5-2.95-5-5.92h2a4 4 0 0 0 4 4 4 4 0 0 0 4-4zm7.41-4.59-4.24 4.25L18.18 10H14a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v4c0 .55-.22 1.05-.59 1.41"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microphone-minus.svg�����������������������0000664�0000000�0000000�00000000367�14753064456�0027432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 2a3 3 0 0 1 3 3v6a3 3 0 0 1-3 3 3 3 0 0 1-3-3V5a3 3 0 0 1 3-3m7 9c0 3.5-2.56 6.43-6 6.93V21H8v-3.07c-3.44-.5-6-3.43-6-6.93h2a5 5 0 0 0 5 5 5 5 0 0 0 5-5zm-1-6h8v2h-8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microphone-off.svg�������������������������0000664�0000000�0000000�00000000573�14753064456�0027050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 11c0 1.19-.34 2.3-.9 3.28l-1.23-1.23c.27-.62.43-1.31.43-2.05zm-4 .16L9 5.18V5a3 3 0 0 1 3-3 3 3 0 0 1 3 3v6.16M4.27 3 21 19.73 19.73 21l-4.19-4.19c-.77.46-1.63.77-2.54.91V21h-2v-3.28c-3.28-.49-6-3.31-6-6.72h1.7c0 3 2.54 5.1 5.3 5.1.81 0 1.6-.19 2.31-.52l-1.66-1.66L12 14a3 3 0 0 1-3-3v-.72L3 4.27z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microphone-outline.svg���������������������0000664�0000000�0000000�00000000525�14753064456�0027752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.3 11c0 3-2.54 5.1-5.3 5.1S6.7 14 6.7 11H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c3.28-.49 6-3.31 6-6.72m-8.2-6.1c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2l-.01 6.2c0 .66-.53 1.2-1.19 1.2s-1.2-.54-1.2-1.2M12 14a3 3 0 0 0 3-3V5a3 3 0 0 0-3-3 3 3 0 0 0-3 3v6a3 3 0 0 0 3 3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microphone-plus.svg������������������������0000664�0000000�0000000�00000000411�14753064456�0027250�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 2a3 3 0 0 1 3 3v6a3 3 0 0 1-3 3 3 3 0 0 1-3-3V5a3 3 0 0 1 3-3m7 9c0 3.5-2.56 6.43-6 6.93V21H8v-3.07c-3.44-.5-6-3.43-6-6.93h2a5 5 0 0 0 5 5 5 5 0 0 0 5-5zm-1-6h3V2h2v3h3v2h-3v3h-2V7h-3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microphone-question-outline.svg������������0000664�0000000�0000000�00000001064�14753064456�0031616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.3 11c0 3-2.54 5.1-5.3 5.1S3.7 14 3.7 11H2c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c3.28-.49 6-3.31 6-6.72M7.8 4.9c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2l-.01 6.2c0 .66-.53 1.2-1.19 1.2s-1.2-.54-1.2-1.2M9 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S6 3.34 6 5v6c0 1.66 1.34 3 3 3m11.5.5V16H19v-1.5zm-2-5H17V9c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .97-.5 1.88-1.29 2.41l-.3.19c-.57.4-.91 1.01-.91 1.7v.2H19v-.2c0-1.19.6-2.3 1.59-2.95l.29-.19c.39-.26.62-.69.62-1.16 0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microphone-question.svg��������������������0000664�0000000�0000000�00000000717�14753064456�0030145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 2c1.66 0 3 1.34 3 3v6c0 1.66-1.34 3-3 3s-3-1.34-3-3V5c0-1.66 1.34-3 3-3m7 9c0 3.53-2.61 6.44-6 6.93V21H8v-3.07c-3.39-.49-6-3.4-6-6.93h2c0 2.76 2.24 5 5 5s5-2.24 5-5zm4.5 3.5V16H19v-1.5zm-2-5H17V9c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .97-.5 1.88-1.29 2.41l-.3.19c-.57.4-.91 1.01-.91 1.7v.2H19v-.2c0-1.19.6-2.3 1.59-2.95l.29-.19c.39-.26.62-.69.62-1.16 0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5z"/></svg>�������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microphone-settings.svg��������������������0000664�0000000�0000000�00000000440�14753064456�0030127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 10h-1.7c0 3-2.54 5.1-5.3 5.1S6.7 13 6.7 10H5c0 3.41 2.72 6.23 6 6.72V20h2v-3.28c3.28-.49 6-3.31 6-6.72m-4 14h2v-2h-2m-4 2h2v-2h-2m1-9a3 3 0 0 0 3-3V4a3 3 0 0 0-3-3 3 3 0 0 0-3 3v6a3 3 0 0 0 3 3M7 24h2v-2H7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microphone-variant-off.svg�����������������0000664�0000000�0000000�00000000761�14753064456�0030511�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5.27 3.28 4 20 20.72 18.73 22 16 19.26A4.01 4.01 0 0 1 12 23a4 4 0 0 1-4-4v-1H7l-.84-8.18a4.1 4.1 0 0 1-.83-1.22zM9 3a4 4 0 0 1 4 4H8.82L6.08 4.26C6.81 3.5 7.85 3 9 3m2.84 6.82-.02.18-2-2h3.05c-.18.7-.54 1.32-1.03 1.82M11 18h-1v1a2 2 0 0 0 2 2 2 2 0 0 0 2-2v-1.73l-2.65-2.65zm7-8h2l-1 1 1 1h-2a2 2 0 0 0-2 2v.18l-1.7-1.68C14.9 11 16.33 10 18 10M8 12a1 1 0 0 0 1 1c.21 0 .4-.06.56-.17l-1.39-1.39c-.11.16-.17.35-.17.56"/></svg>���������������mkdocs-material-9.6.4/material/templates/.icons/material/microphone-variant.svg���������������������0000664�0000000�0000000�00000000561�14753064456�0027737�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 3a4 4 0 0 1 4 4H5a4 4 0 0 1 4-4m2.84 6.82L11 18h-1v1a2 2 0 0 0 2 2 2 2 0 0 0 2-2v-5a4 4 0 0 1 4-4h2l-1 1 1 1h-2a2 2 0 0 0-2 2v5a4 4 0 0 1-4 4 4 4 0 0 1-4-4v-1H7l-.84-8.18C5.67 9.32 5.31 8.7 5.13 8h7.74c-.18.7-.54 1.32-1.03 1.82M9 11a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microphone.svg�����������������������������0000664�0000000�0000000�00000000355�14753064456�0026276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a3 3 0 0 1 3 3v6a3 3 0 0 1-3 3 3 3 0 0 1-3-3V5a3 3 0 0 1 3-3m7 9c0 3.53-2.61 6.44-6 6.93V21h-2v-3.07c-3.39-.49-6-3.4-6-6.93h2a5 5 0 0 0 5 5 5 5 0 0 0 5-5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microscope.svg�����������������������������0000664�0000000�0000000�00000000506�14753064456�0026274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.46 6.28 11.05 9c-2.58.26-4.55 2.41-4.55 5a5 5 0 0 0 5 5c2.05 0 3.81-1.23 4.58-3H13.5v-2h8v2h-2.25a8.05 8.05 0 0 1-2.46 4h2.71v2h-16v-2h2.71a8 8 0 0 1-2.71-6c0-3.63 2.46-6.8 5.96-7.72m3.28-4.21.76 1.3.86-.5 3.5 6.06-3.47 2-3.5-6.06.87-.5-.76-1.3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-access.svg�����������������������0000664�0000000�0000000�00000003155�14753064456�0027400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.5 2.63q1.34 0 2.68.14l.67.09q.45.07.99.18.53.11 1.09.27.57.16 1.03.38t.75.5.29.62v14.38q0 .34-.29.62-.3.28-.75.5-.46.22-1.03.38-.56.16-1.1.27-.53.11-.97.18-.45.07-.69.09-1.33.15-2.67.15-1.35 0-2.68-.15-.23-.02-.67-.09-.45-.07-.99-.18-.53-.11-1.09-.27-.57-.16-1.02-.38-.46-.22-.76-.5-.29-.28-.29-.62V17H2.83q-.33 0-.59-.24Q2 16.5 2 16.17V7.83q0-.33.24-.59Q2.5 7 2.83 7H7V4.81q0-.34.29-.62.3-.28.76-.5.45-.22 1.02-.38.56-.16 1.1-.27.53-.11.97-.18.45-.06.69-.09 1.32-.14 2.67-.14m0 1.25q-.63 0-1.42.04-.78.04-1.58.15-.81.11-1.57.29t-1.35.45q.61.29 1.37.47.75.18 1.55.28.79.1 1.57.15.78.04 1.43.04.66 0 1.43-.04.78-.05 1.57-.15.8-.1 1.56-.28.75-.18 1.36-.47-.59-.27-1.35-.45t-1.57-.29q-.8-.11-1.58-.15t-1.42-.04m-8.56 9.91h2.12l.49 1.49h1.67L7.83 8.72H6.2l-2.42 6.56h1.66M20.75 19v-3q-.64.31-1.44.5-.81.18-1.64.29-.84.11-1.67.16-.81.05-1.5.05-.71 0-1.42-.04-.71-.05-1.41-.13-.23.17-.5.17H8.25v2q.28.21.75.38.5.18 1.07.3.58.13 1.22.22.63.1 1.21.13.62.06 1.14.08t.86.02q.34-.01.86-.03.52-.01 1.14-.07.58-.03 1.21-.13.64-.09 1.22-.22.57-.12 1.07-.3.47-.17.75-.38m0-4.37V11q-.64.31-1.44.5-.81.18-1.64.29-.84.11-1.67.16-.81.05-1.5.05-.62 0-1.25-.03-.62-.04-1.25-.1v3.75q.63.07 1.25.1.63.03 1.25.03.36 0 .88-.02t1.12-.07q.58-.06 1.2-.16.63-.06 1.2-.19.6-.13 1.06-.31.49-.15.79-.37m0-5V6q-.64.31-1.44.5-.81.18-1.64.29-.84.11-1.67.16-.81.05-1.5.05T13 6.95q-.83-.05-1.67-.16-.83-.11-1.64-.29-.8-.19-1.44-.5v1h2.92q.33 0 .59.24.24.26.24.59v2.79q.63.07 1.25.1.63.03 1.25.03.36 0 .88-.02t1.12-.07q.58-.06 1.2-.16.63-.06 1.2-.19.6-.13 1.06-.31.48-.15.79-.37M6.32 12.5l.68-2 .65 2Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-azure-devops.svg�����������������0000664�0000000�0000000�00000000300�14753064456�0030550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22 18-5 4-8-3v3l-4.19-5.75 12.91 1.05V6.34L22 5.65zM4.81 16.25V8.96l12.91-2.62L10.6 2v2.84L3.97 6.76 2 9.38v5.69z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-azure.svg������������������������0000664�0000000�0000000�00000000236�14753064456�0027262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.05 4.24 6.56 18.05 2 18l5.09-8.76zm.7 1.09L22 19.76H6.74l9.3-1.66-4.87-5.79z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-bing.svg�������������������������0000664�0000000�0000000�00000000230�14753064456�0027045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3v16l3.72 2L18 15.82v-4.09L9.77 8.95l1.61 3.89L13.94 14 8.7 16.92V4.27z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-dynamics-365.svg�����������������0000664�0000000�0000000�00000000207�14753064456�0030254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6 2 11.25 6.5-3.75 3L6 8zm0 7 3.5 2.25L6 22 18 9v6L6 22z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-edge.svg�������������������������0000664�0000000�0000000�00000001122�14753064456�0027033�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.86 15.37c-.69-.77-1.16-1.69-1.31-2.72-.3.46-.55.96-.73 1.5-.92 2.75.68 6.18 3.4 7.18 2.34.78 4.97-.61 6.7-2.13.26-.35 2.31-2.16 1.29-2.36-3.02 1.55-7.02 1.11-9.35-1.47m.6-5.81c1.04-.01.04-.43-.39-.75-1.04-.57-2.26-.85-3.44-.85C3.78 8 .995 10.41 2.3 14.4c.94 3.88 4.31 7 8.29 7.5-2.05-1.29-3.29-3.71-3.29-6.12.08-2.53 1.64-5.5 4.16-6.22M2.78 8.24C5.82 6 10.66 6.18 13.28 9c1.02 1.11 1.72 3 .79 4.37-1.74 1.88 3.08 2.13 4.11 1.85 3.74-.72 4.73-5.07 2.95-8.07-1.7-3.4-5.47-5.18-9.17-5.15-4.06-.07-7.71 2.5-9.18 6.24"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-excel.svg������������������������0000664�0000000�0000000�00000001134�14753064456�0027232�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.17 3.25q.33 0 .59.25.24.24.24.58v15.84q0 .34-.24.58-.26.25-.59.25H7.83q-.33 0-.59-.25-.24-.24-.24-.58V17H2.83q-.33 0-.59-.24Q2 16.5 2 16.17V7.83q0-.33.24-.59Q2.5 7 2.83 7H7V4.08q0-.34.24-.58.26-.25.59-.25M7 13.06l1.18 2.22h1.79L8 12.06l1.93-3.17H8.22L7.13 10.9l-.04.06-.03.07q-.26-.53-.56-1.07-.25-.53-.53-1.07H4.16l1.89 3.19L4 15.28h1.78m8.1 4.22V17H8.25v2.5m5.63-3.75v-3.12H12v3.12m1.88-4.37V8.25H12v3.13M13.88 7V4.5H8.25V7m12.5 12.5V17h-5.62v2.5m5.62-3.75v-3.12h-5.62v3.12m5.62-4.37V8.25h-5.62v3.13M20.75 7V4.5h-5.62V7Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-internet-explorer.svg������������0000664�0000000�0000000�00000001170�14753064456�0031620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13 3 1 .06c2.8-1.27 5.23-1.42 6.5-.14 1 1.01 1.08 2.75.42 4.8A9 9 0 0 1 22 12l-.05 1H9.08c.37 2.28 1.98 4 3.92 4 1.31 0 2.47-.79 3.2-2h5.3c-1.25 3.5-4.58 6-8.5 6-1.28 0-2.5-.27-3.59-.75-2.91 1.43-5.52 1.65-6.84.31C1 18.96 1.68 15.57 4 12c.93-1.46 2.14-2.94 3.57-4.35l.81-.77c-1.17.69-2.67 1.74-4.19 3.29A9 9 0 0 1 13 3m0 4c-1.79 0-3.31 1.47-3.82 3.5h7.64C16.31 8.47 14.79 7 13 7m7.06-2.94c-.66-.67-1.84-.71-3.32-.25 1.48.69 2.76 1.75 3.67 3.08.32-1.24.23-2.24-.35-2.83M3.89 20c.83.84 2.51.69 4.55-.24a9.05 9.05 0 0 1-3.97-4.88C3.27 17.15 3 19.07 3.89 20"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-office.svg�����������������������0000664�0000000�0000000�00000001167�14753064456�0027373�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.94 5.59v12.8q0 .67-.39 1.2-.39.52-1.05.7l-5.73 1.65q-.12.03-.27.06h-.22q-.33 0-.6-.09t-.55-.24l-3.75-2.12q-.21-.12-.33-.31t-.12-.43q0-.36.26-.61.25-.25.61-.25h4.86V6.14L9 7.44q-.43.16-.7.56-.27.38-.27.85v6.73q0 .42-.21.76-.2.34-.57.54l-1.72.94q-.24.13-.48.13-.41 0-.7-.29t-.29-.71V7.47q0-.52.27-.97.28-.5.73-.76l6.16-3.5q.21-.12.45-.18t.48-.06q.17 0 .31.03.14.02.31.07l5.73 1.59q.33.09.59.27t.45.43q.2.26.3.56.1.31.1.64m-1.32 12.8V5.59q0-.23-.12-.4-.15-.19-.37-.23l-2.82-.78Q15 4.09 14.65 4q-.33-.11-.65-.19v16.4L18.13 19q.22-.04.37-.21.12-.17.12-.4"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-onedrive.svg���������������������0000664�0000000�0000000�00000001771�14753064456�0027754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.21 10.29q.79.05 1.49.39.69.32 1.2.89.51.55.81 1.26.29.71.29 1.51 0 .84-.32 1.58t-.88 1.29q-.55.55-1.3.87-.72.33-1.56.33H7q-1.03 0-1.94-.41-.91-.39-1.59-1.06-.68-.68-1.07-1.59-.4-.91-.4-1.94 0-.82.26-1.58.24-.75.74-1.38.44-.63 1.08-1.1t1.42-.72q.37-.13.71-.13.35-.07.72-.09h.01q.43-.66 1.01-1.18.55-.52 1.25-.89.67-.34 1.42-.56.75-.19 1.54-.19 1.06 0 2.04.35t1.8.97q.8.62 1.37 1.48.58.87.84 1.9m-6.05-3.45q-1.11 0-2.1.46-1 .45-1.7 1.3.37.1.71.25.33.15.66.35l3.98 2.38 2.29-.96q.21-.09.44-.17.23-.07.48-.12-.24-.78-.71-1.42t-1.1-1.1q-.61-.46-1.38-.71-.73-.26-1.57-.26M4 15.66l8.27-3.48-3.19-1.92q-.49-.29-1.02-.45-.56-.15-1.11-.15-.76 0-1.45.3-.66.3-1.16.81-.5.52-.8 1.2-.29.68-.29 1.44 0 .59.2 1.18.19.6.55 1.07m13.94 1.5q.47 0 .9-.16.43-.14.8-.42L13.61 13l-8.58 3.59q.44.27.94.41.5.16 1.03.16m13.45-1.55q.3-.61.3-1.27 0-.64-.25-1.17-.24-.52-.65-.89-.42-.37-.97-.57-.56-.21-1.18-.21-.35 0-.7.1-.34.08-.67.21-.33.12-.66.27-.32.15-.63.29Z"/></svg>�������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-onenote.svg����������������������0000664�0000000�0000000�00000001003�14753064456�0027574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.17 3.25q.33 0 .59.25.24.24.24.58v15.84q0 .34-.24.58-.26.25-.59.25H7.83q-.33 0-.59-.25-.24-.24-.24-.58V17H2.83q-.33 0-.59-.24Q2 16.5 2 16.17V7.83q0-.33.24-.59Q2.5 7 2.83 7H7V4.08q0-.34.24-.58.26-.25.59-.25M5.8 11.17l2.36 4.1h1.49V8.73H8.2v4.19L5.93 8.73H4.35v6.54H5.8m14.95 4.23V17h-2.5v2.5m2.5-3.75v-2.5h-2.5v2.5m2.5-3.75V9.5h-2.5V12m2.5-3.75V4.5H8.25V7h2.92q.33 0 .59.24.24.26.24.59v8.34q0 .33-.24.59-.26.24-.59.24H8.25v2.5H17V8.25Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-outlook.svg����������������������0000664�0000000�0000000�00000002026�14753064456�0027627�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.56 12.03q0 .38-.06.73-.11.34-.3.62-.2.27-.49.43-.3.16-.71.16-.42 0-.71-.17t-.48-.45-.27-.63q-.09-.35-.09-.72 0-.36.09-.72.08-.35.27-.63t.5-.45q.3-.17.72-.17.43 0 .72.17.3.18.48.46.18.29.27.64.06.36.06.73M22 12v7.81q0 .39-.27.69-.28.25-.67.25H7.94q-.39 0-.67-.25-.27-.3-.27-.69V17H2.83q-.33 0-.59-.24Q2 16.5 2 16.17V7.83q0-.33.24-.59Q2.5 7 2.83 7h5.42V4.13q0-.37.25-.63.26-.25.63-.25h10.74q.37 0 .63.25.25.26.25.63v6.91l1.04.6h.01q.08.06.14.16.06.09.06.2m-5-6.87v2.5h2.5v-2.5M17 8.88v2.5h2.5v-2.5M17 12.63v1.52l2.54-1.52m-6.91-7.5v2.5h3.12v-2.5m-3.12 3.75v2.5h3.12v-2.5m-3.12 3.75v1.69l2.01 1.24 1.11-.66v-2.27M9.5 5.13V7h1.77q.06 0 .11.04V5.12M7 15.32q.73 0 1.32-.26.58-.26.99-.71.4-.45.6-1.07.21-.62.22-1.34 0-.69-.21-1.29-.2-.59-.6-1.03-.39-.44-.95-.69-.57-.25-1.29-.25-.77 0-1.37.25-.59.25-1 .7-.41.46-.62 1.08-.21.63-.21 1.37 0 .7.21 1.3.22.59.62 1.02t.97.68q.58.24 1.32.24m1.25 4.18h10.32L12 15.4v.77q0 .33-.24.59-.26.24-.59.24H8.25m12.5 2.39v-6.03l-4.92 2.95Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-powerpoint.svg�������������������0000664�0000000�0000000�00000002013�14753064456�0030335�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.25 3.25q1.21 0 2.33.31 1.12.32 2.09.89.97.55 1.77 1.36.79.8 1.36 1.77.58.97.89 2.09T22 12t-.31 2.33-.89 2.09q-.57.97-1.36 1.77-.8.81-1.77 1.36-.97.58-2.09.89t-2.33.31q-1.07 0-2.1-.25-1.03-.26-1.95-.74-.92-.49-1.7-1.18-.81-.7-1.43-1.58H2.83q-.33 0-.59-.24Q2 16.5 2 16.17V7.83q0-.33.24-.58Q2.5 7 2.83 7h3.24q.62-.88 1.43-1.58.78-.7 1.7-1.18.93-.48 1.95-.74 1.03-.25 2.1-.25m.63 1.28v6.84h6.84q-.12-1.37-.69-2.56T18.55 6.7q-.91-.91-2.12-1.48-1.2-.57-2.55-.69M9.5 10.84q0-.57-.2-.97-.19-.41-.52-.66-.33-.26-.78-.37-.45-.12-1-.12H4.37v6.55h1.54V13h1.03q.48 0 .93-.16.46-.14.82-.41.36-.26.58-.67.23-.4.23-.92m3.75 8.66q.98 0 1.89-.24.9-.26 1.71-.68.81-.45 1.48-1.08.67-.61 1.17-1.37.5-.77.83-1.66.31-.89.39-1.85h-8.08V4.53q-1.45.12-2.73.76T7.67 7h3.5q.33 0 .59.25.24.25.24.58v8.34q0 .33-.24.59-.26.24-.59.24h-3.5q.53.6 1.17 1.06.66.44 1.35.78.72.33 1.49.49.77.17 1.57.17M6.85 10q.47 0 .76.19.28.19.28.7 0 .22-.1.36t-.26.25q-.16.07-.35.1-.18.04-.38.04h-.89V10z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-sharepoint.svg�������������������0000664�0000000�0000000�00000003356�14753064456�0030316�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 13.25q0 1.04-.4 1.95-.39.9-1.07 1.58t-1.59 1.08q-.91.39-1.94.39-.64 0-1.27-.16-.09.83-.46 1.54-.38.72-.97 1.25-.58.53-1.33.82-.76.3-1.59.3-.91 0-1.71-.35-.79-.34-1.39-.93-.59-.59-.93-1.39-.35-.8-.35-1.7v-.32q.03-.15.05-.31H2.83q-.33 0-.59-.24Q2 16.5 2 16.17V7.83q0-.33.24-.59Q2.5 7 2.83 7h2.95q.12-1.06.61-2 .48-.89 1.24-1.56.75-.68 1.71-1.06T11.38 2q1.16 0 2.18.44 1.03.45 1.79 1.21t1.21 1.79Q17 6.46 17 7.63v.31q0 .15-.04.31 1.04 0 1.95.39.92.39 1.59 1.07.71.67 1.1 1.58.4.92.4 1.96m-10.63-10q-.81 0-1.54.29-.74.28-1.33.78-.56.5-.95 1.18-.38.7-.5 1.5h4.12q.33 0 .59.25.24.25.24.58v4.12l.18-.03q.17-.62.5-1.18.32-.57.79-1.02.45-.45 1.03-.79.54-.33 1.17-.5.08-.43.08-.8 0-.91-.35-1.71-.34-.79-.94-1.38-.59-.59-1.38-.94-.8-.35-1.71-.35m-4.27 12q.45 0 .9-.09.42-.09.76-.31.34-.21.55-.56.19-.36.19-.88 0-.53-.2-.88-.22-.35-.55-.59-.33-.23-.71-.38l-.72-.29Q7 11.14 6.77 11q-.22-.15-.22-.38 0-.16.12-.27.12-.1.28-.15.16-.07.33-.09.18-.01.3-.01.49 0 .88.12.38.13.79.38V9.12Q9 9.05 8.81 9q-.2-.05-.39-.08-.2-.03-.42-.05-.2-.01-.45-.01-.43 0-.88.09-.45.1-.82.32-.35.23-.59.56-.23.35-.23.86 0 .5.22.81.22.35.55.59.33.23.7.41l.72.29q.34.14.56.29.22.16.22.38 0 .19-.11.3-.1.11-.26.16-.13.08-.32.08H7q-.59 0-1.04-.18-.46-.2-.92-.52v1.56q.99.39 2.06.39m4.27 5.5q.63 0 1.21-.25.57-.24 1-.66.42-.43.67-1t.25-1.21q0-.56-.19-1.07-.18-.51-.51-.91-.34-.41-.8-.69-.45-.28-1-.4v1.61q0 .33-.24.59-.26.24-.59.24H8.31q-.06.31-.06.63 0 .64.25 1.21.24.57.66 1 .43.42 1 .66.57.25 1.21.25M17 17q.77 0 1.45-.29.69-.29 1.2-.81.51-.51.81-1.19.29-.68.29-1.46 0-.75-.29-1.45-.3-.69-.81-1.2t-1.2-.81Q17.77 9.5 17 9.5t-1.45.3-1.19.81-.81 1.19q-.3.7-.3 1.45v.21l.02.22q.46.22.85.54.38.32.7.71.3.4.52.86.21.46.32.95.66.26 1.34.26"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-teams.svg������������������������0000664�0000000�0000000�00000002613�14753064456�0027246�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.19 8.77q-.46 0-.86-.17-.39-.17-.69-.47t-.47-.69q-.17-.4-.17-.86 0-.45.17-.85t.47-.69q.3-.3.69-.47.4-.18.86-.17.45-.01.85.17.4.17.7.47.29.29.47.69.17.4.17.85 0 .46-.17.86-.17.39-.47.69t-.7.47-.85.17m0-3.12q-.39 0-.69.27-.25.27-.25.66t.25.67q.3.25.69.25t.66-.25q.28-.25.28-.67 0-.39-.28-.66-.27-.27-.66-.27M22 10.33V15q0 .63-.24 1.2-.26.57-.67.99-.43.43-1 .67-.59.25-1.21.25-.38 0-.76-.11-.39-.07-.71-.25-.24.79-.71 1.44t-1.1 1.11-1.39.7q-.76.27-1.58.27-.96 0-1.81-.33-.82-.33-1.5-.94-.66-.57-1.09-1.36-.44-.8-.57-1.74H2.83q-.33 0-.59-.25-.24-.24-.24-.58V7.73q0-.34.24-.59.26-.24.59-.24H10q-.29-.6-.29-1.25 0-.61.23-1.15.22-.5.62-.92.4-.39.94-.62.5-.23 1.12-.23.61 0 1.14.23t.93.62q.4.42.62.92.23.54.23 1.15 0 .6-.23 1.14-.22.53-.62.92-.4.4-.93.63t-1.14.23q-.15 0-.31-.02-.15-.02-.31-.05v.9h9.06q.39 0 .67.27.27.27.27.66M12.63 4q-.35 0-.63.11-.33.13-.56.36-.22.23-.35.53-.13.31-.13.65 0 .35.13.65t.35.53q.23.22.56.36.28.13.63.13.34 0 .64-.13.3-.14.53-.36.23-.23.36-.53.14-.3.14-.65 0-.34-.14-.65-.13-.3-.36-.53t-.53-.36q-.3-.11-.64-.11m-4.85 6.18h1.88V8.62H4.34v1.56h1.88v5h1.56m8.6 1.09v-5.62H12v5.42q0 .34-.24.58-.26.25-.59.25H8.92q.13.67.47 1.25.34.57.82.99.48.41 1.1.65.61.21 1.32.21.77 0 1.45-.27.68-.3 1.2-.81.51-.51.8-1.19.3-.68.3-1.46M20.75 15v-4.35h-3.12v5.71q.25.25.57.38.3.12.68.12.39 0 .73-.15t.59-.4q.26-.25.4-.6.15-.34.15-.71"/></svg>���������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-visual-studio-code.svg�����������0000664�0000000�0000000�00000000554�14753064456�0031657�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 16.47V7.39l-6 4.54M2.22 9.19a.86.86 0 0 1-.02-1.15l1.2-1.11c.2-.18.69-.26 1.05 0l3.42 2.61 7.93-7.25c.32-.32.87-.45 1.5-.12l4 1.91c.36.21.7.54.7 1.15v13.5c0 .4-.29.83-.6 1l-4.4 2.1c-.32.13-.92.01-1.13-.2l-8.02-7.3-3.4 2.6c-.38.26-.85.19-1.05 0l-1.2-1.1c-.32-.33-.28-.87.05-1.2l3-2.7"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-visual-studio.svg����������������0000664�0000000�0000000�00000000273�14753064456�0030745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17 8.5-4.75 3.82L17 16zM4.7 18.4 2 16.7v-9l3-1 4.3 3.33L18 2l4 2.5V20l-5 2-7.66-7.34zM5 14l1.86-1.72L5 10.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-windows-classic.svg��������������0000664�0000000�0000000�00000003141�14753064456�0031243�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.67 5.3v.61l-.71.3V5.6zm0 5.94v.62l-.71.29v-.59zm0 6.03v.62l-.71.29v-.59zM2.6 7.29v.55l-.57.26v-.54zm0 1.99v.54l-.57.26v-.54zm0 4.03v.53l-.57.26v-.54zm0 2.02v.54l-.57.26v-.53zm1.9-9.69v.72l-1 .37V6zm0 6.02v.71l-1 .37v-.71zm0 6.04v.71l-1 .4v-.71zm-.07-9.98v.66l-.79.3V8zm0 2.01v.64l-.78.3V10zm0 4.01v.64l-.78.31v-.66zm0 2.02v.65l-.78.31v-.66zm1.88-9.67v.85l-1.26.49v-.84zm0 6.02v.85l-1.26.49v-.84zm0 5.97v.85l-1.26.5v-.85zm-.06-9.9v.76l-1.06.4v-.73zm0 2v.75l-1.06.42v-.75zm0 4.01v.75l-1.06.43v-.75zm0 1.95v.76l-1.06.42v-.75zm2.04-10.1v1.12l-1.57.62V6.67zm0 6.02v1.13l-1.57.61v-1.12zm0 5.97v1.12l-1.57.62v-1.11zm-.09-9.9v1.03l-1.31.53V8.66zm0 2v1.02l-1.31.53v-1.03zm0 4.02v1.03l-1.31.52v-1.03zm0 1.95v1.02l-1.31.52v-1.01zm2.14-10.25v1.47L8.61 8V6.56zm0 6.02v1.46l-1.73.7v-1.47zm0 5.97v1.46l-1.73.7v-1.46zm-.08-9.79v1.23l-1.48.59V8.64zm0 1.92v1.23l-1.48.58v-1.22zm0 4.09v1.25l-1.48.57v-1.23zm0 1.94v1.25l-1.48.59V16.6zm2.19-10.88v2l-1.86.77V6c.64-.35 1.26-.65 1.86-.88m0 2.21v1.73l-1.86.78V8.1zm0 1.95v1.76l-1.86.78v-1.76zm0 1.97V13l-1.86.77V12zm0 1.96V15l-1.86.78V14zm0 2v1.75l-1.86.8V16zm0 1.96v1.87c-.73.28-1.35.55-1.86.8v-1.88zm9.59-11.99v14.05c-1.19-.79-2.67-1.18-4.45-1.18-1.47 0-3.12.3-4.94.91v-1.9c.97-.37 2.03-.64 3.19-.8v-4.57c-.98.12-2.04.46-3.19 1.02V11.4c.99-.46 2.06-.77 3.19-.94V6c-1.02.18-2.08.53-3.19 1V5.03C14.27 4.34 15.86 4 17.41 4c1.68 0 3.22.39 4.63 1.18m-1.89 1.23c-.76-.41-1.65-.59-2.73-.59-.13 0-.25.01-.37.02v4.54l.41-.01c.91 0 1.81.13 2.69.43zm0 5.69c-.81-.36-1.72-.54-2.71-.54-.13 0-.26.01-.39.02v4.58h.41c.99 0 1.89.12 2.69.37z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-windows.svg����������������������0000664�0000000�0000000�00000000257�14753064456�0027631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 12V6.75l6-1.32v6.48zm17-9v8.75l-10 .15V5.21zM3 13l6 .09v6.81l-6-1.15zm17 .25V22l-10-1.91V13.1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-word.svg�������������������������0000664�0000000�0000000�00000000734�14753064456�0027112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.17 3.25q.33 0 .59.25.24.24.24.58v15.84q0 .34-.24.58-.26.25-.59.25H7.83q-.33 0-.59-.25-.24-.24-.24-.58V17H2.83q-.33 0-.59-.24Q2 16.5 2 16.17V7.83q0-.33.24-.59Q2.5 7 2.83 7H7V4.08q0-.34.24-.58.26-.25.59-.25m-.8 8.09 1.2 3.94H9.6l1.31-6.56H9.53l-.78 3.88-1.11-3.75H6.5l-1.19 3.77-.78-3.9H3.09l1.31 6.56h1.37m14.98 4.22V17H8.25v2.5m12.5-3.75v-3.12H12v3.12m8.75-4.37V8.25H12v3.13M20.75 7V4.5H8.25V7Z"/></svg>������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-xbox-controller-battery-alert.svg0000664�0000000�0000000�00000000603�14753064456�0034050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 19V7h-6v12zm.67-14C22.4 5 23 5.6 23 6.33v13.34A1.33 1.33 0 0 1 21.67 21h-7.34c-.73 0-1.33-.6-1.33-1.33v-2.92H7.75C5.75 16.75 5 19 3 20c-2 0-3.5-3 .5-11.5h.25l.44-.83S7 6 8.33 7.23H13v-.9A1.33 1.33 0 0 1 14.33 5H16V3h4v2zM11 8a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m6 1h2v5h-2zm0 6h2v2h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������microsoft-xbox-controller-battery-charging.svg������������������������������������������������������0000664�0000000�0000000�00000000607�14753064456�0034450�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000�mkdocs-material-9.6.4/material/templates/.icons/material���������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 5h1.67C22.4 5 23 5.6 23 6.33v13.34A1.33 1.33 0 0 1 21.67 21h-7.34c-.73 0-1.33-.6-1.33-1.33v-2.92H7.75C5.75 16.75 5 19 3 20c-2 0-3.5-3 .5-11.5h.25l.44-.83S7 6 8.33 7.23H13v-.9A1.33 1.33 0 0 1 14.33 5H16V3h4zm1 2h-6v12h6zm-5.5 7 3-6.5V12h2l-3 6.5V14zM11 8a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>�������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-xbox-controller-battery-empty.svg0000664�0000000�0000000�00000000553�14753064456�0034103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 19V7h-6v12zm.67-14C22.4 5 23 5.6 23 6.33v13.34A1.33 1.33 0 0 1 21.67 21h-7.34c-.73 0-1.33-.6-1.33-1.33v-2.92H7.75C5.75 16.75 5 19 3 20c-2 0-3.5-3 .5-11.5h.25l.44-.83S7 6 8.33 7.23H13v-.9A1.33 1.33 0 0 1 14.33 5H16V3h4v2zM11 8a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-xbox-controller-battery-full.svg�0000664�0000000�0000000�00000000535�14753064456�0033707�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.67 5C22.4 5 23 5.6 23 6.33v13.34A1.33 1.33 0 0 1 21.67 21h-7.34c-.73 0-1.33-.6-1.33-1.33v-2.92H7.75C5.75 16.75 5 19 3 20c-2 0-3.5-3 .5-11.5h.25l.44-.83S7 6 8.33 7.23H13v-.9A1.33 1.33 0 0 1 14.33 5H16V3h4v2zM11 8a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-xbox-controller-battery-low.svg��0000664�0000000�0000000�00000000552�14753064456�0033545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 16V7h-6v9zm.67-11C22.4 5 23 5.6 23 6.33v13.34A1.33 1.33 0 0 1 21.67 21h-7.34c-.73 0-1.33-.6-1.33-1.33v-2.92H7.75C5.75 16.75 5 19 3 20c-2 0-3.5-3 .5-11.5h.25l.44-.83S7 6 8.33 7.23H13v-.9A1.33 1.33 0 0 1 14.33 5H16V3h4v2zM11 8a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������microsoft-xbox-controller-battery-medium.svg��������������������������������������������������������0000664�0000000�0000000�00000000551�14753064456�0034144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000�mkdocs-material-9.6.4/material/templates/.icons/material���������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 12V7h-6v5zm.67-7C22.4 5 23 5.6 23 6.33v13.34A1.33 1.33 0 0 1 21.67 21h-7.34c-.73 0-1.33-.6-1.33-1.33v-2.92H7.75C5.75 16.75 5 19 3 20c-2 0-3.5-3 .5-11.5h.25l.44-.83S7 6 8.33 7.23H13v-.9A1.33 1.33 0 0 1 14.33 5H16V3h4v2zM11 8a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������microsoft-xbox-controller-battery-unknown.svg�������������������������������������������������������0000664�0000000�0000000�00000001311�14753064456�0034356�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000�mkdocs-material-9.6.4/material/templates/.icons/material���������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.67 5C22.4 5 23 5.6 23 6.33v13.34A1.33 1.33 0 0 1 21.67 21h-7.34c-.73 0-1.33-.6-1.33-1.33v-2.92H7.75C5.75 16.75 5 19 3 20c-2 0-3.5-3 .5-11.5h.25l.44-.83S7 6 8.33 7.23H13v-.9A1.33 1.33 0 0 1 14.33 5H16V3h4v2zM11 8a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m7.19 0c-.87 0-1.57.2-2.11.59-.52.41-.78.98-.77 1.77l.01.03h1.93c.01-.3.1-.53.28-.69a1 1 0 0 1 .66-.23c.31 0 .57.1.75.28.18.19.26.45.26.75 0 .32-.07.59-.23.82-.14.23-.35.43-.61.59-.51.34-.86.64-1.05.91-.2.26-.31.68-.31 1.18h2c0-.31.04-.56.13-.74s.26-.36.51-.52c.45-.24.82-.53 1.11-.93s.44-.81.44-1.31c0-.76-.27-1.37-.81-1.82-.53-.45-1.26-.68-2.19-.68M17 15v2h2v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-xbox-controller-menu.svg���������0000664�0000000�0000000�00000000275�14753064456�0032242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2M6 7h12v2H6zm0 4h12v2H6zm0 4h12v2H6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-xbox-controller-off.svg����������0000664�0000000�0000000�00000000530�14753064456�0032042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5.27 3.28 4 20 20.72 18.73 22l-6.23-6.25H8.75C6.75 15.75 6 18 4 19c-2 0-3.5-2.96.42-11.31zm7.33.96h5.34c1.33-1.23 4.14.44 4.14.44l.44.83h.25c3.5 7.5 2.78 10.7 1.19 11.37L7.62 5.8c.63-.07 1.25.01 1.71.43M12 7a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-xbox-controller-view.svg���������0000664�0000000�0000000�00000000300�14753064456�0032235�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.47 2 2 6.5 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2M6 7h9v2H8v5H6zm3 3h9v7H9zm2 2v3h5v-3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-xbox-controller.svg��������������0000664�0000000�0000000�00000000460�14753064456�0031274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.75 15.75C6.75 15.75 6 18 4 19c-2 0-3.5-3 .5-11.5h.25l.44-.83S8 5 9.33 6.23h5.34c1.33-1.23 4.14.44 4.14.44l.44.83h.25C23.5 16 22 19 20 19c-2-1-2.75-3.25-4.75-3.25zM12 7a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft-xbox.svg�������������������������0000664�0000000�0000000�00000001432�14753064456�0027113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.43 3.72c.07-.06.14-.12.19-.16C8.18 2.55 10 2 12 2c1.88 0 3.64.5 5.14 1.42.11.08.4.27.56.46C16.25 2.28 12 5.7 12 5.7c-1.5-1.13-2.83-1.9-3.84-2.2-.85-.21-1.43 0-1.7.2m12.88 1.51c-.05-.05-.1-.1-.14-.15-.36-.4-.82-.5-1.2-.47-.39.12-2.1.73-4.2 2.72 0 0 2.37 2.3 3.82 4.65s2.31 4.2 1.78 6.77C21 16.95 22 14.59 22 12c0-2.62-1-5-2.66-6.79m-3.61 7.75c-.65-.72-1.6-1.75-2.87-3.01-.27-.27-.56-.55-.86-.85 0 0-.47.46-1.07 1.07-.77.77-1.76 1.78-2.32 2.37-.98 1.05-3.8 4.35-3.96 6.2 0 0-.65-1.46.75-4.85.9-2.21 3.6-5.53 4.75-6.61 0 0-1.03-1.14-2.33-1.93l-.05-.03c-.63-.37-1.31-.66-1.97-.7-.67.05-1.09.54-1.09.54A9.95 9.95 0 0 0 2 12a10 10 0 0 0 10 10c2.93 0 5.57-1.26 7.4-3.27 0 0-.21-1.33-1.56-3.23-.31-.43-1.47-1.81-2.11-2.54"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microsoft.svg������������������������������0000664�0000000�0000000�00000000201�14753064456�0026126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3h9v9H2zm9 19H2v-9h9zM21 3v9h-9V3zm0 19h-9v-9h9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microwave-off.svg��������������������������0000664�0000000�0000000�00000000564�14753064456�0026701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3l2.15 2.15C2.5 5.44 2 6.16 2 7v10a2 2 0 0 0 2 2h13.11l3.73 3.73zM4 17V7h1.11l10 10zM16 7v5.8l5.5 5.51c.31-.36.5-.81.5-1.31V7a2 2 0 0 0-2-2H8.2l2 2zm3 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m0 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m-6-1.2V9h2v2.8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/microwave.svg������������������������������0000664�0000000�0000000�00000000445�14753064456�0026127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2zm0 2h12v10H4zm15 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m-6 2v6h2V9zm6 2a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/middleware-outline.svg���������������������0000664�0000000�0000000�00000000364�14753064456�0027725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23 12-4-4v3h-3.14c-.45-1.72-2-3-3.86-3s-3.41 1.28-3.86 3H5L2 8v8l3-3h3.14c.45 1.72 2 3 3.86 3s3.41-1.28 3.86-3H19v3zm-11 2c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/middleware.svg�����������������������������0000664�0000000�0000000�00000000302�14753064456�0026240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23 12-4-4v3h-4.18C14.4 9.84 13.3 9 12 9s-2.4.84-2.82 2H5L2 8v8l3-3h4.18c.42 1.16 1.52 2 2.82 2s2.4-.84 2.82-2H19v3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/midi-port.svg������������������������������0000664�0000000�0000000�00000001447�14753064456�0026042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m8.18 10c0-3.82-2.63-7.04-6.18-7.93V6h-4V4.07A8.185 8.185 0 0 0 3.82 12 8.18 8.18 0 0 0 12 20.18 8.18 8.18 0 0 0 20.18 12M7 10.64A1.36 1.36 0 0 1 8.36 12 1.36 1.36 0 0 1 7 13.36c-.75 0-1.36-.61-1.36-1.36s.61-1.36 1.36-1.36m10 0A1.36 1.36 0 0 1 18.36 12 1.36 1.36 0 0 1 17 13.36 1.36 1.36 0 0 1 15.64 12 1.36 1.36 0 0 1 17 10.64m-8.64 3.63a1.37 1.37 0 0 1 1.37 1.37c0 .75-.61 1.36-1.37 1.36A1.36 1.36 0 0 1 7 15.64c0-.76.61-1.37 1.36-1.37m7.28 0c.75 0 1.36.61 1.36 1.37A1.36 1.36 0 0 1 15.64 17c-.76 0-1.37-.61-1.37-1.36a1.37 1.37 0 0 1 1.37-1.37M12 15.64A1.36 1.36 0 0 1 13.36 17 1.36 1.36 0 0 1 12 18.36 1.36 1.36 0 0 1 10.64 17 1.36 1.36 0 0 1 12 15.64"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/midi.svg�����������������������������������0000664�0000000�0000000�00000000453�14753064456�0025054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.15 8.26H22v7.48h-1.85M13 8.26h5.43c.57 0 .87.48.87 1.04v5.51c0 .69-.3.93-.92.93H13V11h1.87v2.91h2.63V9.95H13m-2.68-1.69h1.82v7.48h-1.82M2 8.26h6.55c.55 0 .86.48.86 1.04v6.44H7.59v-5.59H6.5v5.59H4.87v-5.59H3.83v5.59H2Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mine.svg�����������������������������������0000664�0000000�0000000�00000000711�14753064456�0025057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 13v-2h-3.07a8 8 0 0 0-1.62-3.9l2.19-2.17-1.43-1.43-2.17 2.19A8 8 0 0 0 13 4.07V1h-2v3.07c-1.42.18-2.77.74-3.9 1.62L4.93 3.5 3.5 4.93 5.69 7.1A8 8 0 0 0 4.07 11H1v2h3.07c.18 1.42.74 2.77 1.62 3.9L3.5 19.07l1.43 1.43 2.17-2.19c1.13.88 2.48 1.44 3.9 1.62V23h2v-3.07c1.42-.18 2.77-.74 3.9-1.62l2.17 2.19 1.43-1.43-2.19-2.17a8 8 0 0 0 1.62-3.9zM12 8a4 4 0 0 0-4 4H6a6 6 0 0 1 6-6z"/></svg>�������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/minecraft.svg������������������������������0000664�0000000�0000000�00000000305�14753064456�0026076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2h16a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m2 4v4h4v2H8v6h2v-2h4v2h2v-6h-2v-2h4V6h-4v4h-4V6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mini-sd.svg��������������������������������0000664�0000000�0000000�00000000276�14753064456�0025475�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-6l-2-2V6a2 2 0 0 0-2-2zm1 2h2v4H7zm3 0h2v4h-2zm3 0h2v4h-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/minidisc.svg�������������������������������0000664�0000000�0000000�00000000501�14753064456�0025723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zm7 2a7 7 0 0 1 6.7 5H16a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2.71c-.89 2.97-3.62 5-6.71 5a7 7 0 0 1-7-7 7 7 0 0 1 7-7m0 5a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/minus-box-multiple-outline.svg�������������0000664�0000000�0000000�00000000322�14753064456�0031354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 11h-8V9h8m2-5v12H8V4zm0-2H8c-1.1 0-2 .9-2 2v12a2 2 0 0 0 2 2h12c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2M4 6H2v14a2 2 0 0 0 2 2h14v-2H4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/minus-box-multiple.svg���������������������0000664�0000000�0000000�00000000306�14753064456�0027701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 11H9V9h10m1-7H8c-1.1 0-2 .9-2 2v12a2 2 0 0 0 2 2h12c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2M4 6H2v14a2 2 0 0 0 2 2h14v-2H4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/minus-box-outline.svg����������������������0000664�0000000�0000000�00000000256�14753064456�0027531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19V5H5v14zm0-16a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm-2 8v2H7v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/minus-box.svg������������������������������0000664�0000000�0000000�00000000246�14753064456�0026053�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 13H7v-2h10m2-8H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/minus-circle-multiple-outline.svg����������0000664�0000000�0000000�00000000457�14753064456�0032036�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 11v2h8v-2zm-9 1c0-2.79 1.64-5.2 4-6.32V3.5C2.5 4.76 0 8.09 0 12s2.5 7.24 6 8.5v-2.18C3.64 17.2 2 14.79 2 12m13-9c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9m0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/minus-circle-multiple.svg������������������0000664�0000000�0000000�00000000367�14753064456�0030361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 12c0-2.79 1.64-5.2 4-6.32V3.5C2.5 4.76 0 8.09 0 12s2.5 7.24 6 8.5v-2.18C3.64 17.2 2 14.79 2 12m13-9c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9m5 10H10v-2h10z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/minus-circle-off-outline.svg���������������0000664�0000000�0000000�00000000632�14753064456�0030750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l3 3C2.8 7.6 2 9.7 2 12c0 5.5 4.5 10 10 10 2.3 0 4.4-.8 6-2.1l2.8 2.8zM12 20c-4.4 0-8-3.6-8-8 0-1.7.6-3.3 1.5-4.6L9.1 11H7v2h4.1l5.5 5.5c-1.3.9-2.9 1.5-4.6 1.5M8.2 5 6.7 3.5C8.3 2.6 10.1 2 12 2c5.5 0 10 4.5 10 10 0 1.9-.6 3.7-1.5 5.3L19 15.8c.6-1.1 1-2.4 1-3.8 0-4.4-3.6-8-8-8-1.4 0-2.7.4-3.8 1m8 8-2-2H17v2z"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/minus-circle-off.svg�����������������������0000664�0000000�0000000�00000000426�14753064456�0027274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l3 3C2.8 7.6 2 9.7 2 12c0 5.5 4.5 10 10 10 2.3 0 4.4-.8 6-2.1l2.8 2.8zM7 13v-2h2.1l2 2zm7.2-2L6.7 3.5C8.3 2.6 10.1 2 12 2c5.5 0 10 4.5 10 10 0 1.9-.6 3.7-1.5 5.3L16.2 13h.8v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/minus-circle-outline.svg�������������������0000664�0000000�0000000�00000000340�14753064456�0030174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2M7 13h10v-2H7"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/minus-circle.svg���������������������������0000664�0000000�0000000�00000000247�14753064456�0026525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 13H7v-2h10m-5-9A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/minus-network-outline.svg������������������0000664�0000000�0000000�00000000401�14753064456�0030422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 20a1 1 0 0 0-1-1h-1v-2h4a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h4v2h-1a1 1 0 0 0-1 1H2v2h7a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1h7v-2zm-8-5V5h10v10zm8-4V9H9v2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/minus-network.svg��������������������������0000664�0000000�0000000�00000000364�14753064456�0026755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 11V9H8v2zm1-8a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-4v2h1a1 1 0 0 1 1 1h7v2h-7a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1H2v-2h7a1 1 0 0 1 1-1h1v-2H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/minus-thick.svg����������������������������0000664�0000000�0000000�00000000134�14753064456�0026361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 14H4v-4h16"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/minus.svg����������������������������������0000664�0000000�0000000�00000000135�14753064456�0025262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13H5v-2h14z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mirror-rectangle.svg�����������������������0000664�0000000�0000000�00000000272�14753064456�0027405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.29 10.28 3.24-3.25 1.06 1.06-3.24 3.25zm.41 4.33 5.66-5.66L15.42 10l-5.66 5.67zM18 3v18H6V3zm2-2H4v22h16z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mirror-variant.svg�������������������������0000664�0000000�0000000�00000000364�14753064456�0027107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.29 10.28 3.24-3.25 1.06 1.06-3.24 3.25zm.41 4.33 5.66-5.66L15.42 10l-5.66 5.67zM14.17 3 18 6.83v10.34L14.17 21H9.83L6 17.17V6.83L9.83 3zM15 1H9L4 6v12l5 5h6l5-5V6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mirror.svg���������������������������������0000664�0000000�0000000�00000000474�14753064456�0025447�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1c4.69 0 8.5 4.93 8.5 11 0 6.08-3.81 11-8.5 11s-8.5-4.92-8.5-11C3.5 5.93 7.31 1 12 1m0 2c-3.59 0-6.5 4.03-6.5 9s2.91 9 6.5 9 6.5-4.03 6.5-9-2.91-9-6.5-9m-3.71 7.28 3.24-3.25 1.06 1.06-3.24 3.25zm.41 4.33 5.66-5.66L15.42 10l-5.66 5.67z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mixed-martial-arts.svg���������������������0000664�0000000�0000000�00000000714�14753064456�0027636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 10V7H7v3zm3-3c.28 0 .5.09.7.29.19.21.3.44.3.71v2.78c0 .19-.03.33-.06.42l-.8 3.99c-.14.53-.44.81-.94.81H6.8c-.53 0-.85-.28-.94-.81l-.8-3.99c-.03-.09-.06-.23-.06-.42V5c0-.5.21-1 .6-1.39C6 3.2 6.45 3 7 3h8c.53 0 1 .2 1.41.61.4.39.59.89.59 1.39v3c0-.27.11-.5.3-.71.2-.2.42-.29.7-.29M7 20v-3h10v3c0 .3-.09.53-.29.72-.21.19-.44.28-.71.28H8c-.27 0-.5-.09-.71-.28-.2-.19-.29-.42-.29-.72"/></svg>����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mixed-reality.svg��������������������������0000664�0000000�0000000�00000000463�14753064456�0026710�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m3.25 12h1.5l1-3.43V15h1.5V9H10l-1 3.43L8 9H5.75v6h1.5v-3.43zm5.25-6v6H15v-2h1.15l.85 2h1.5l-.9-2.1c.5-.25.9-.8.9-1.4v-1c0-.85-.65-1.5-1.5-1.5zm1.5 1.5h2v1h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/molecule-co.svg����������������������������0000664�0000000�0000000�00000000324�14753064456�0026333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 7c-1.1 0-2 .9-2 2v6a2 2 0 0 0 2 2h3v-2H8V9h3V7zm6 0c-1.1 0-2 .9-2 2v6a2 2 0 0 0 2 2h2c1.11 0 2-.89 2-2V9a2 2 0 0 0-2-2zm0 2h2v6h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/molecule-co2.svg���������������������������0000664�0000000�0000000�00000000471�14753064456�0026420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h3v-2H5V9h3V7zm6 0a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zm0 2h2v6h-2zm5 1.5V12h3v1.5h-1.5A1.5 1.5 0 0 0 16 15v3h4.5v-1.5h-3V15H19a1.5 1.5 0 0 0 1.5-1.5V12a1.5 1.5 0 0 0-1.5-1.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/molecule.svg�������������������������������0000664�0000000�0000000�00000001246�14753064456�0025740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.27 10 9 7h5.42l1.16-2-.08-.5A1.5 1.5 0 0 1 17 3a1.5 1.5 0 0 1 1.5 1.5c0 .71-.5 1.31-1.17 1.46l-.96 1.67L17.73 10l.86-1.5-.09-.5A1.5 1.5 0 0 1 20 6.5 1.5 1.5 0 0 1 21.5 8c0 .71-.5 1.3-1.15 1.46L18.89 12l1.73 3c.77.07 1.38.71 1.38 1.5a1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5v-.26L17.73 14l-1.36 2.37.96 1.67a1.5 1.5 0 0 1 1.17 1.46A1.5 1.5 0 0 1 17 21a1.5 1.5 0 0 1-1.5-1.5l.08-.5-1.16-2h-3.84l-1.16 2 .08.5A1.5 1.5 0 0 1 8 21a1.5 1.5 0 0 1-1.5-1.5c0-.71.5-1.31 1.17-1.46l.96-1.67L4.38 9C3.61 8.93 3 8.29 3 7.5A1.5 1.5 0 0 1 4.5 6 1.5 1.5 0 0 1 6 7.5v.26zm2.88-1-1.73 3 1.73 3h4.7l1.73-3-1.73-3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/monitor-account.svg������������������������0000664�0000000�0000000�00000000455�14753064456�0027255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 2c1.05 0 1.92.81 2 1.85V16c0 1.05-.82 1.92-1.85 2H14v2h2v2H8v-2h2v-2H3c-1.05 0-1.92-.82-2-1.85V4a2 2 0 0 1 1.85-2H21m0 2H3v12h18zm-9 7c2.21 0 4 .9 4 2v1H8v-1c0-1.1 1.79-2 4-2m0-5a2 2 0 1 1 0 4c-1.11 0-2-.89-2-2s.9-2 2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/monitor-arrow-down-variant.svg�������������0000664�0000000�0000000�00000000332�14753064456�0031354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17 14 5-5-1.4-1.4-2.6 2.6V3h-2v7.2l-2.6-2.6L12 9zm6 0v2c0 1.1-.9 2-2 2h-7v2h2v2H8v-2h2v-2H3c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h9v2H3v12h18v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/monitor-arrow-down.svg���������������������0000664�0000000�0000000�00000000315�14753064456�0027713�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 16H3V4h18m0-2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v2H8v2h8v-2h-2v-2h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-5 8h-3V6h-2v4H8l4 4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/monitor-cellphone-star.svg�����������������0000664�0000000�0000000�00000000511�14753064456�0030532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 11h-5a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-9a1 1 0 0 0-1-1m0 9h-5v-7h5zM20 2H2C.89 2 0 2.89 0 4v12a2 2 0 0 0 2 2h7v2H7v2h8v-2h-2v-2h2v-2H2V4h18v5h2V4a2 2 0 0 0-2-2m-8.03 7L11 6l-.97 3H7l2.47 1.76-.94 2.91 2.47-1.8 2.47 1.8-.94-2.91L15 9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/monitor-cellphone.svg����������������������0000664�0000000�0000000�00000000377�14753064456�0027575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 11h-5a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-9a1 1 0 0 0-1-1m0 9h-5v-7h5zM20 2H2C.89 2 0 2.89 0 4v12a2 2 0 0 0 2 2h7v2H7v2h8v-2h-2v-2h2v-2H2V4h18v5h2V4a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/monitor-dashboard.svg����������������������0000664�0000000�0000000�00000000362�14753064456�0027545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 16V4H3v12zm0-14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-7v2h2v2H8v-2h2v-2H3a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2zM5 6h9v5H5zm10 0h4v2h-4zm4 3v5h-4V9zM5 12h4v2H5zm5 0h4v2h-4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/monitor-edit.svg���������������������������0000664�0000000�0000000�00000000471�14753064456�0026544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 2H3c-1.1 0-2 .9-2 2v12a2 2 0 0 0 2 2h7v2H8v2h8v-2h-2v-2h7c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2m0 14H3V4h18zm-5.16-7.8-1.01 1.01-2.07-2.03 1.01-1.02c.2-.21.54-.22.78 0l1.29 1.25c.21.21.22.55 0 .79M8 11.91l4.17-4.19 2.07 2.08-4.16 4.2H8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/monitor-eye.svg����������������������������0000664�0000000�0000000�00000001225�14753064456�0026377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4v12h18V4zm0-2h18a2 2 0 0 1 2 2v12c0 .53-.21 1.04-.59 1.41-.37.38-.88.59-1.41.59h-7v2h2v2H8v-2h2v-2H3c-.53 0-1.04-.21-1.41-.59C1.21 17.04 1 16.53 1 16V4c0-1.11.89-2 2-2m7.84 6.93c.31-.3.73-.48 1.16-.48.43.01.85.18 1.16.49.3.3.48.72.48 1.15 0 .44-.18.85-.48 1.16-.31.31-.73.48-1.16.48s-.85-.18-1.16-.48c-.3-.31-.48-.72-.48-1.16 0-.43.18-.85.48-1.16M10.07 12a2.68 2.68 0 0 0 3.86 0c.51-.5.8-1.19.8-1.91s-.29-1.42-.8-1.93-1.21-.8-1.93-.8-1.42.29-1.93.8-.8 1.21-.8 1.93.29 1.41.8 1.91M6 10.09A6.45 6.45 0 0 1 12 6c2.73 0 5.06 1.7 6 4.09a6.42 6.42 0 0 1-6 4.09c-2.73 0-5.06-1.68-6-4.09"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/monitor-lock.svg���������������������������0000664�0000000�0000000�00000000565�14753064456�0026553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.5 13a2.5 2.5 0 0 1 2.5 2.5v.5a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1v-.5a2.5 2.5 0 0 1 2.5-2.5m0 1a1.5 1.5 0 0 0-1.5 1.5v.5h3v-.5a1.5 1.5 0 0 0-1.5-1.5M20 4H2v12h13v2h-2v2h2v2H7v-2h2v-2H2a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2h18a2 2 0 0 1 2 2v7.53c-.59-.34-1.27-.53-2-.53z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/monitor-multiple.svg�����������������������0000664�0000000�0000000�00000000330�14753064456�0027444�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 17V7H6v10zm0-12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-6v2h2v2h-8v-2h2v-2H6c-1.11 0-2-.89-2-2V7a2 2 0 0 1 2-2zM2 3v12H0V3a2 2 0 0 1 2-2h18v2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/monitor-off.svg����������������������������0000664�0000000�0000000�00000000354�14753064456�0026371�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 18v2h2v2H8v-2h2v-2H3a2 2 0 0 1-2-2V4L0 3l1.41-1.42 20.75 20.76-1.41 1.41L15 18zM3 16h10L3 6zM21 2a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-.34l-2-2H21V4H6.66l-2-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/monitor-screenshot.svg���������������������0000664�0000000�0000000�00000000324�14753064456�0027771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 6H5v4h2V8h2m10 2h-2v2h-2v2h4m2 2H3V4h18m0-2H3c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h7v2H8v2h8v-2h-2v-2h7a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/monitor-share.svg��������������������������0000664�0000000�0000000�00000000317�14753064456�0026720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 4v12c0 1.11-.89 2-2 2h-6v-2h6V4H3v12h6v2H3a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2h18a2 2 0 0 1 2 2m-10 9h3l-4-4-4 4h3v7H8v2h8v-2h-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/monitor-shimmer.svg������������������������0000664�0000000�0000000�00000000477�14753064456�0027271�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 16H3V4h18m0-2H3c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h7v2H8v2h8v-2h-2v-2h7c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2m-6 3.5-.62 1.37L13 7.5l1.38.63L15 9.5l.63-1.37L17 7.5l-1.37-.63zm-4.5 2L9.41 9.91 7 11l2.41 1.09 1.09 2.41 1.1-2.41L14 11l-2.4-1.09z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/monitor-small.svg��������������������������0000664�0000000�0000000�00000000273�14753064456�0026727�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 2H5c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h5v2H8v2h8v-2h-2v-2h5c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2m0 14H5V4h14z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/monitor-speaker-off.svg��������������������0000664�0000000�0000000�00000000715�14753064456�0030022�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.4 1.7 1.1 3l.1.1c-.1.3-.2.6-.2.9v12c0 1.1.9 2 2 2h7v2H8v2h4v-6H3V4.9l11 11V20c0 1.1.9 2 2 2h4.1l.7.7s1.2-1 1.4-1.2zm16.1 18.8c-1.7 0-3-1.3-3-3v-.1l3.1 3.1zM23 4v3h-2V4H7.2l-2-2H21c1.1 0 2 .9 2 2m-2 5h-5c-1 0-1.9.8-2 1.8l3.8 3.8c.2-.1.4-.1.7-.1h.1c1.7 0 3 1.3 3 3 0 .2 0 .5-.1.7l1.6 1.6V11c-.1-1.1-1-2-2.1-2m-2.5 4.5c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5"/></svg>���������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/monitor-speaker.svg������������������������0000664�0000000�0000000�00000000676�14753064456�0027260�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 2c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v2H8v2h4v-6H3V4h18v3h2V4c0-1.1-.9-2-2-2zm18 7h-5c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h5c1.1 0 2-.9 2-2v-9c0-1.1-.9-2-2-2m-2.5 1.5c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5S17 12.8 17 12s.7-1.5 1.5-1.5m0 10c-1.7 0-3-1.3-3-3 0-1.6 1.3-3 2.9-3h.1c1.7 0 3 1.3 3 3s-1.3 3-3 3m0-4.5c-.8 0-1.5.7-1.5 1.5s.7 1.5 1.5 1.5 1.5-.7 1.5-1.5-.7-1.5-1.5-1.5"/></svg>������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/monitor-star.svg���������������������������0000664�0000000�0000000�00000000375�14753064456�0026573�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 16V4H3v12zm0-14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-7v2h2v2H8v-2h2v-2H3a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2zm-8.03 7H16l-2.47 1.76.94 2.91-2.47-1.8-2.47 1.8.94-2.91L8 9h3.03L12 6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/monitor-vertical.svg�����������������������0000664�0000000�0000000�00000000272�14753064456�0027427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 2H8c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h2v2H8v2h8v-2h-2v-2h2c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2m0 14H8V4h8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/monitor.svg��������������������������������0000664�0000000�0000000�00000000267�14753064456�0025624�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 16H3V4h18m0-2H3c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h7v2H8v2h8v-2h-2v-2h7a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/moon-first-quarter.svg���������������������0000664�0000000�0000000�00000000147�14753064456�0027710�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2v20a10 10 0 0 0 0-20"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/moon-full.svg������������������������������0000664�0000000�0000000�00000000165�14753064456�0026042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 1 1 2 12 10 10 0 0 1 12 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/moon-last-quarter.svg����������������������0000664�0000000�0000000�00000000145�14753064456�0027522�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 0 0 20Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/moon-new.svg�������������������������������0000664�0000000�0000000�00000000230�14753064456�0025662�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20a8 8 0 1 1 8-8 8 8 0 0 1-8 8m0-18a10 10 0 1 0 10 10A10 10 0 0 0 12 2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/moon-waning-crescent.svg�������������������0000664�0000000�0000000�00000000214�14753064456�0030162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 12a10 10 0 0 0 13 9.54 10 10 0 0 1 0-19.08A10 10 0 0 0 2 12"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/moon-waning-gibbous.svg��������������������0000664�0000000�0000000�00000000217�14753064456�0030011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 12c0-4.5-1.92-8.74-6-10a10 10 0 0 0 0 20c4.08-1.26 6-5.5 6-10"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/moon-waxing-crescent.svg�������������������0000664�0000000�0000000�00000000214�14753064456�0030174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a9.9 9.9 0 0 0-3 .46 10 10 0 0 1 0 19.08A10 10 0 1 0 12 2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/moon-waxing-gibbous.svg��������������������0000664�0000000�0000000�00000000217�14753064456�0030023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 12c0-4.5 1.93-8.74 6-10a10 10 0 0 1 0 20c-4.07-1.26-6-5.5-6-10"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/moped-electric-outline.svg�����������������0000664�0000000�0000000�00000000613�14753064456�0030501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 5c0-1.1-.9-2-2-2h-3v2h3v2.65L13.5 12H10V7H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.5L19 8.35zM4 12v-1c0-1.1.9-2 2-2h2v3zm3 3c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1M5 4h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3m0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1M7 20h4v-2l6 3h-4v2z"/></svg>���������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/moped-electric.svg�������������������������0000664�0000000�0000000�00000000561�14753064456�0027026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 5c0-1.1-.9-2-2-2h-3v2h3v2.65L13.5 12H10V7H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.5L19 8.35zM7 15c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1M5 4h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3m0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1M7 20h4v-2l6 3h-4v2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/moped-outline.svg��������������������������0000664�0000000�0000000�00000000570�14753064456�0026713�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 7a2 2 0 0 0-2-2h-3v2h3v2.65L13.5 14H10V9H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.5l4.5-5.65zM7 17c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1m1-3H4v-1c0-1.1.9-2 2-2h2zm11-1c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3m0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m-9-9H5V6h5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/moped.svg����������������������������������0000664�0000000�0000000�00000000537�14753064456�0025241�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 15c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m0-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3m-9-7H5v2h5zm7-1h-3v2h3v2.65L13.5 14H10V9H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.5l4.5-5.65V7a2 2 0 0 0-2-2M7 17c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/more.svg�����������������������������������0000664�0000000�0000000�00000000710�14753064456�0025070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13.5a1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5 1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5m-5 0a1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5 1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5m-5 0A1.5 1.5 0 0 1 7.5 12 1.5 1.5 0 0 1 9 10.5a1.5 1.5 0 0 1 1.5 1.5A1.5 1.5 0 0 1 9 13.5M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.96.89 1.65.89H22a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>��������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mortar-pestle-plus.svg���������������������0000664�0000000�0000000�00000000260�14753064456�0027705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 14h-3v3h-2v-3H8v-2h3V9h2v3h3m5-7h-2.65l1.15-3.15L17.15 1l-1.46 4H3v2l2 6-2 6v2h18v-2l-2-6 2-6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mortar-pestle.svg��������������������������0000664�0000000�0000000�00000000210�14753064456�0026717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21 7-2 6 2 6v2H3v-2l2-6-2-6V5h12.7l1.5-4 2.3.8L18.3 5H21z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mosque-outline.svg�������������������������0000664�0000000�0000000�00000001025�14753064456�0027114�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 7c0-1.1-2-3-2-3s-2 1.9-2 3c0 .7.4 1.4 1 1.7V13h-2v-2c0-.9-.7-1.7-1.5-1.9.3-.6.5-1.2.5-2 0-1.3-.6-2.5-1.7-3.2L12 1 7.7 3.8c-1 .8-1.7 2-1.7 3.3 0 .7.2 1.4.6 2-.9.2-1.6 1-1.6 1.9v2H3V8.7c.6-.3 1-1 1-1.7 0-1.1-2-3-2-3S0 5.9 0 7c0 .7.4 1.4 1 1.7V21h10v-4c0-.5.4-1 1-1s1 .5 1 1v4h10V8.7c.6-.3 1-1 1-1.7M8.9 5.5 12 3.4l3.1 2.1c.6.4.9.9.9 1.6 0 1-.9 1.9-1.9 1.9H9.9C8.9 9 8 8.1 8 7.1c0-.7.3-1.2.9-1.6M21 19h-6v-2c0-1.6-1.4-3-3-3s-3 1.4-3 3v2H3v-4h4v-4h10v4h4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mosque.svg���������������������������������0000664�0000000�0000000�00000000625�14753064456�0025444�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 8h10c.3 0 .6.1.8.1.1-.3.2-.7.2-1 0-1.3-.6-2.5-1.7-3.2L12 1 7.7 3.8c-1 .8-1.7 2-1.7 3.3 0 .4.1.7.2 1 .2 0 .5-.1.8-.1m17-1c0-1.1-2-3-2-3s-2 1.9-2 3c0 .7.4 1.4 1 1.7V13h-2v-2c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v2H3V8.7c.6-.3 1-1 1-1.7 0-1.1-2-3-2-3S0 5.9 0 7c0 .7.4 1.4 1 1.7V21h9v-4c0-1.1.9-2 2-2s2 .9 2 2v4h9V8.7c.6-.3 1-1 1-1.7"/></svg>�����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mother-heart.svg���������������������������0000664�0000000�0000000�00000001007�14753064456�0026525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3m8 16-2-5.44c-.35-.99-.66-1.85-2-2.56-1.37-.7-2.37-1-4-1-1.61 0-2.61.3-4 1-1.32.71-1.63 1.57-2 2.56L4 18c-.23 1.13 2.38 2.44 4.13 3.19 1.21.53 2.51.81 3.87.81 1.38 0 2.67-.28 3.89-.81 1.75-.75 4.36-2.06 4.11-3.19m-4.58-.5L12 21l-3.42-3.5c-.36-.38-.58-.89-.58-1.45 0-1.13.9-2.05 2-2.05.55 0 1.06.23 1.42.61l.58.59.58-.6c.36-.37.87-.6 1.42-.6 1.11 0 2 .92 2 2.05 0 .56-.22 1.08-.58 1.45"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mother-nurse.svg���������������������������0000664�0000000�0000000�00000001142�14753064456�0026556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3m8 16-2-5.44c-.35-.99-.66-1.85-2-2.56-1.38-.7-2.38-1-4-1-1.63 0-2.62.3-4 1-1.34.71-1.65 1.57-2 2.56L4 18c-.32 1.35 2.36 2.44 4.11 3.19V19c0-.95.86-1.62 2.58-2.03.16-.04.31-.06.43-.08-.54-.82-.76-1.55-.78-1.61l1.77-.6c.01.02.52 1.59 1.73 2.38.21.07.42.15.62.24.77.34 1.23.78 1.38 1.31-1.34.53-2.62.8-3.84.8l-1-.1v2.63l1 .06c1.37 0 2.67-.28 3.89-.81 1.75-.75 4.36-2.06 4.11-3.19m-4.5-1a1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5 1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/motion-outline.svg�������������������������0000664�0000000�0000000�00000000675�14753064456�0027122�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 13H3c-.55 0-1-.45-1-1s.45-1 1-1h4c.55 0 1 .45 1 1s-.45 1-1 1M6 8c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1h1c.55 0 1-.45 1-1m16 4c0 2.76-2.24 5-5 5H4c-.55 0-1-.45-1-1s.45-1 1-1h9c-.42-.58-.75-1.26-.9-2H10c-.55 0-1-.45-1-1s.45-1 1-1h2.1c.15-.74.48-1.42.9-2H8c-.55 0-1-.45-1-1s.45-1 1-1h9c2.76 0 5 2.24 5 5m-2 0c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/motion-pause-outline.svg�������������������0000664�0000000�0000000�00000000661�14753064456�0030230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 12c0-5.54-4.46-10-10-10-1.17 0-2.3.19-3.38.56l.7 1.94c.85-.34 1.74-.53 2.68-.53 4.41 0 8.03 3.62 8.03 8.03s-3.62 8.03-8.03 8.03S3.97 16.41 3.97 12c0-.94.19-1.88.53-2.72l-1.94-.66C2.19 9.7 2 10.83 2 12c0 5.54 4.46 10 10 10s10-4.46 10-10M5.47 7c-.79 0-1.5-.68-1.5-1.53 0-.79.71-1.5 1.5-1.5.85 0 1.53.71 1.53 1.5C7 6.32 6.32 7 5.47 7M9 9h2v6H9m4-6h2v6h-2"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/motion-pause.svg���������������������������0000664�0000000�0000000�00000000760�14753064456�0026553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 12c0-5.54-4.46-10-10-10-1.17 0-2.3.19-3.38.56l.7 1.94c.85-.34 1.74-.53 2.68-.53 4.41 0 8.03 3.62 8.03 8.03s-3.62 8.03-8.03 8.03S3.97 16.41 3.97 12c0-.94.19-1.88.53-2.72l-1.94-.66C2.19 9.7 2 10.83 2 12c0 5.54 4.46 10 10 10s10-4.46 10-10M5.47 3.97c.85 0 1.53.71 1.53 1.5C7 6.32 6.32 7 5.47 7c-.79 0-1.5-.68-1.5-1.53 0-.79.71-1.5 1.5-1.5M18 12c0-3.33-2.67-6-6-6s-6 2.67-6 6 2.67 6 6 6 6-2.67 6-6m-7-3v6H9V9m6 0v6h-2V9"/></svg>����������������mkdocs-material-9.6.4/material/templates/.icons/material/motion-play-outline.svg��������������������0000664�0000000�0000000�00000000664�14753064456�0030063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10 16.5 6-4.5-6-4.5M22 12c0-5.54-4.46-10-10-10-1.17 0-2.3.19-3.38.56l.7 1.94c.85-.34 1.74-.53 2.68-.53 4.41 0 8.03 3.62 8.03 8.03s-3.62 8.03-8.03 8.03S3.97 16.41 3.97 12c0-.94.19-1.88.53-2.72l-1.94-.66C2.19 9.7 2 10.83 2 12c0 5.54 4.46 10 10 10s10-4.46 10-10M5.47 3.97c.85 0 1.53.71 1.53 1.5C7 6.32 6.32 7 5.47 7c-.79 0-1.5-.68-1.5-1.53 0-.79.71-1.5 1.5-1.5"/></svg>����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/motion-play.svg����������������������������0000664�0000000�0000000�00000000745�14753064456�0026406�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 12c0-5.54-4.46-10-10-10-1.17 0-2.3.19-3.38.56l.7 1.94c.85-.34 1.74-.53 2.68-.53 4.41 0 8.03 3.62 8.03 8.03s-3.62 8.03-8.03 8.03S3.97 16.41 3.97 12c0-.94.19-1.88.53-2.72l-1.94-.66C2.19 9.7 2 10.83 2 12c0 5.54 4.46 10 10 10s10-4.46 10-10M5.47 3.97c.85 0 1.53.71 1.53 1.5C7 6.32 6.32 7 5.47 7c-.79 0-1.5-.68-1.5-1.53 0-.79.71-1.5 1.5-1.5M18 12c0-3.33-2.67-6-6-6s-6 2.67-6 6 2.67 6 6 6 6-2.67 6-6m-3 0-5 3V9"/></svg>���������������������������mkdocs-material-9.6.4/material/templates/.icons/material/motion-sensor-off.svg����������������������0000664�0000000�0000000�00000001016�14753064456�0027512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.4 8.2H15V10h-1.8zM19.67 1h-1.34c0 2.58 2.09 4.67 4.67 4.67V4.33c-1.84 0-3.33-1.49-3.33-3.33M21 1a2 2 0 0 0 2 2V1zm-4 0h-1.33c0 4.05 3.28 7.33 7.33 7.33V7c-3.31 0-6-2.69-6-6m-7 2.8c1 0 1.8-.8 1.8-1.8S11 .2 10 .2 8.2 1 8.2 2 9 3.8 10 3.8M2.39 1.73 1.11 3l2.35 2.35L2 5.8V11h1.8V7.33l1.25-.39.63.63L2 22h1.8l2.87-8.11L9 17v5h1.8v-6.41l-2.49-4.54.19-.68 12.34 12.36 1.27-1.27zm6.99 3.14c-.3-.5-.84-.84-1.46-.84-.17 0-.34.03-.5.08l-.08.03 4.01 4.01z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/motion-sensor.svg��������������������������0000664�0000000�0000000�00000000674�14753064456�0026753�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 .2C9 .2 8.2 1 8.2 2S9 3.8 10 3.8 11.8 3 11.8 2 11 .2 10 .2m5.67.8A7.33 7.33 0 0 0 23 8.33V7a6 6 0 0 1-6-6zm2.66 0c0 2.58 2.09 4.67 4.67 4.67V4.33c-1.84 0-3.33-1.49-3.33-3.33zM21 1a2 2 0 0 0 2 2V1zM7.92 4.03c-.17 0-.34.03-.5.08L2 5.8V11h1.8V7.33l2.11-.66L2 22h1.8l2.87-8.11L9 17v5h1.8v-6.41l-2.49-4.54.73-2.87L10.12 10H15V8.2h-3.62l-2-3.33c-.3-.5-.84-.84-1.46-.84"/></svg>��������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/motion.svg���������������������������������0000664�0000000�0000000�00000000604�14753064456�0025435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 13H3c-.55 0-1-.45-1-1s.45-1 1-1h4c.55 0 1 .45 1 1s-.45 1-1 1M6 8c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1h1c.55 0 1-.45 1-1m16 4c0 2.76-2.24 5-5 5H4c-.55 0-1-.45-1-1s.45-1 1-1h9c-.42-.58-.75-1.26-.9-2H10c-.55 0-1-.45-1-1s.45-1 1-1h2.1c.15-.74.48-1.42.9-2H8c-.55 0-1-.45-1-1s.45-1 1-1h9c2.76 0 5 2.24 5 5"/></svg>����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/motorbike-electric.svg���������������������0000664�0000000�0000000�00000000614�14753064456�0027714�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.42 8-4.01-4H9v2h3.59l2 2H6.5C4 8 2 10 2 12.5S4 17 6.5 17c2.22 0 4.06-1.62 4.42-3.73L13.04 12c-.04.17-.04.33-.04.5 0 2.5 2 4.5 4.5 4.5s4.5-2 4.5-4.5S20 8 17.5 8m-8.66 5.26C8.5 14.27 7.58 15 6.47 15a2.5 2.5 0 0 1 0-5c1.12 0 2.03.74 2.37 1.75H6v1.5zM17.47 15a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5M11 20H7l6 3v-2h4l-6-3z"/></svg>��������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/motorbike-off.svg��������������������������0000664�0000000�0000000�00000000667�14753064456�0026704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l7 7H6.5C4 10 2 12 2 14.5S4 19 6.5 19c2.2 0 4.1-1.6 4.4-3.7l1.5-.9.6.6c.2 2.1 1.9 3.8 4 4l3.8 3.8zM8.8 15.3c-.3 1-1.3 1.7-2.4 1.7C5.1 17 4 15.9 4 14.5S5.1 12 6.5 12c1.1 0 2 .7 2.4 1.8H6v1.5zM11.2 8l-2-2h4.2l4 4h.1c2.5 0 4.5 2 4.5 4.5 0 1.2-.5 2.3-1.2 3.1l-1.4-1.4c.4-.4.6-1 .6-1.6 0-1.4-1.1-2.5-2.5-2.5-.6 0-1.2.2-1.6.6L13.2 10h1.4l-2-2z"/></svg>�������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/motorbike.svg������������������������������0000664�0000000�0000000�00000000623�14753064456�0026124�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.42 10-4.01-4H9v2h3.59l2 2H6.5C4 10 2 12 2 14.5S4 19 6.5 19c2.22 0 4.06-1.62 4.42-3.73L13.04 14c-.04.17-.04.33-.04.5 0 2.5 2 4.5 4.5 4.5s4.5-2 4.5-4.5-2-4.5-4.5-4.5m-8.66 5.26C8.5 16.27 7.58 17 6.47 17a2.5 2.5 0 0 1 0-5c1.12 0 2.03.74 2.37 1.75H6v1.5zM17.47 17a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 2.5 2.5 2.5 2.5 0 0 1-2.5 2.5"/></svg>�������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mouse-bluetooth.svg������������������������0000664�0000000�0000000�00000000521�14753064456�0027261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 7h.5l2.85 2.85L21.21 12l2.14 2.14L20.5 17H20v-3.79l-2.29 2.29-.71-.71L19.79 12 17 9.21l.71-.71L20 10.79zm1 1.91v1.88l.94-.94zm0 4.3v1.87l.94-.94zM15 9v1H9V2.07c3.39.49 6 3.4 6 6.93M1 10V9c0-3.53 2.61-6.44 6-6.93V10zm14 5a7 7 0 0 1-7 7 7 7 0 0 1-7-7v-3h14z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mouse-left-click-outline.svg���������������0000664�0000000�0000000�00000000615�14753064456�0030752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9V1.07A8.007 8.007 0 0 1 19.75 7c.16.64.25 1.31.25 2zm4.66-2c-.48-1.35-1.43-2.5-2.66-3.19V7zM6 15v-2h12v2c0 1.59-.63 3.12-1.76 4.24A5.97 5.97 0 0 1 12 21a5.97 5.97 0 0 1-4.24-1.76A5.97 5.97 0 0 1 6 15m-2 0c0 2.12.84 4.16 2.34 5.66S9.88 23 12 23s4.16-.84 5.66-2.34S20 17.12 20 15v-4H4zm7-6V1.07C7.06 1.56 4 4.92 4 9z"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mouse-left-click.svg�����������������������0000664�0000000�0000000�00000000463�14753064456�0027276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9V1.07c3.94.49 7 3.85 7 7.93zM6.34 20.66A8 8 0 0 1 4 15v-4h16v4c0 2.12-.84 4.16-2.34 5.66A8 8 0 0 1 12 23c-2.12 0-4.16-.84-5.66-2.34M11 9V1.07A8.007 8.007 0 0 0 4.25 7C4.09 7.64 4 8.31 4 9zM6.34 7C6.82 5.65 7.78 4.5 9 3.81V7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mouse-move-down.svg������������������������0000664�0000000�0000000�00000000316�14753064456�0027171�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 9H2c0-2.96 2.17-5.43 5-5.91zm13-2h-2v6h-3l4 4 4-4h-3zM9 3.09V9h5c0-2.96-2.17-5.43-5-5.91M2 15c0 3.3 2.7 6 6 6s6-2.7 6-6v-4H2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mouse-move-up.svg��������������������������0000664�0000000�0000000�00000000315�14753064456�0026645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 9H2c0-2.96 2.17-5.43 5-5.91zm11 8h2v-6h3l-4-4-4 4h3zM9 3.09V9h5c0-2.96-2.17-5.43-5-5.91M2 15c0 3.3 2.7 6 6 6s6-2.7 6-6v-4H2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mouse-move-vertical.svg��������������������0000664�0000000�0000000�00000000330�14753064456�0030027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6h3l-4-4-4 4h3v12h-3l4 4 4-4h-3zM9 3.09c2.83.48 5 2.95 5 5.91H9zM14 11v4c0 3.3-2.7 6-6 6s-6-2.7-6-6v-4zM7 9H2c0-2.96 2.17-5.43 5-5.91z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mouse-off.svg������������������������������0000664�0000000�0000000�00000000474�14753064456�0026035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5.27 3.28 4 20 20.72 18.73 22l-1.23-1.21A7.9 7.9 0 0 1 12 23a8 8 0 0 1-8-8v-4h3.73l-2-2H4c0-.54.05-1.07.15-1.58zm9-4.2V9h-.18L5.79 3.96A7.95 7.95 0 0 1 11 1.07M20 11v4c0 .95-.17 1.86-.47 2.71L12.82 11zm-7-9.93c3.94.49 7 3.85 7 7.93h-7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mouse-outline.svg��������������������������0000664�0000000�0000000�00000000713�14753064456�0026736�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9V1.07A8.007 8.007 0 0 1 19.75 7c.16.64.25 1.31.25 2zm4.66-2c-.48-1.35-1.43-2.5-2.66-3.19V7zM11 9V1.07A8.007 8.007 0 0 0 4.25 7C4.09 7.64 4 8.31 4 9zM6.34 7C6.82 5.65 7.78 4.5 9 3.81V7zM6 15v-2h12v2c0 1.59-.63 3.12-1.76 4.24A5.97 5.97 0 0 1 12 21a5.97 5.97 0 0 1-4.24-1.76A5.97 5.97 0 0 1 6 15m-2 0c0 2.12.84 4.16 2.34 5.66S9.88 23 12 23s4.16-.84 5.66-2.34S20 17.12 20 15v-4H4z"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mouse-right-click-outline.svg��������������0000664�0000000�0000000�00000000614�14753064456�0031134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9V1.07c3.94.49 7 3.85 7 7.93zm-2 0V1.07A8.007 8.007 0 0 0 4.25 7C4.09 7.64 4 8.31 4 9zM6.34 7C6.82 5.65 7.78 4.5 9 3.81V7zM6 15v-2h12v2c0 1.59-.63 3.12-1.76 4.24A5.97 5.97 0 0 1 12 21a5.97 5.97 0 0 1-4.24-1.76A5.97 5.97 0 0 1 6 15m-2 0c0 2.12.84 4.16 2.34 5.66S9.88 23 12 23s4.16-.84 5.66-2.34S20 17.12 20 15v-4H4z"/></svg>��������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mouse-right-click.svg����������������������0000664�0000000�0000000�00000000465�14753064456�0027463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9V1.07A8.007 8.007 0 0 1 19.75 7c.16.64.25 1.31.25 2zm4.66-2c-.48-1.35-1.43-2.5-2.66-3.19V7zM11 9V1.07C7.06 1.56 4 4.92 4 9zM6.34 20.66A8 8 0 0 1 4 15v-4h16v4c0 2.12-.84 4.16-2.34 5.66A8 8 0 0 1 12 23c-2.12 0-4.16-.84-5.66-2.34"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mouse-scroll-wheel.svg���������������������0000664�0000000�0000000�00000000577�14753064456�0027667�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 1.07C7.05 1.56 4 4.92 4 9h7V7.73c-.6-.34-1-.99-1-1.73V4c0-.74.4-1.39 1-1.73zM13 9V7.73c.6-.34 1-.99 1-1.73V4c0-.74-.4-1.39-1-1.73v-1.2c3.94.49 7 3.85 7 7.93zm-9 6c0 2.12.84 4.16 2.34 5.66S9.88 23 12 23s4.16-.84 5.66-2.34S20 17.12 20 15v-4H4zm9-9V4c0-.55-.45-1-1-1s-1 .45-1 1v2c0 .55.45 1 1 1s1-.45 1-1"/></svg>���������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mouse-variant-off.svg����������������������0000664�0000000�0000000�00000000647�14753064456�0027501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5.27 3.28 4 20 20.72 18.73 22l-1.44-1.44C16.42 22 14.82 23 13 23a5 5 0 0 1-5-5v-1.1A5 5 0 0 1 4 12V9h1.73zM14 7h-4V2.1A5 5 0 0 1 14 7M8 2.1v4.08L5.38 3.55C6.07 2.83 7 2.31 8 2.1m6 9.9v.17L10.82 9H14zm-4 4.9V18a3 3 0 0 0 3 3c1.28 0 2.37-.8 2.8-1.93l-3.4-3.4c-.66.61-1.48 1.04-2.4 1.23m6-3.9a4 4 0 0 1 4-4h2l-1 1 1 1h-2a2 2 0 0 0-2 2v3.18l-2-2z"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mouse-variant.svg��������������������������0000664�0000000�0000000�00000000431�14753064456�0026720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 7h-4V2.1A5 5 0 0 1 14 7M4 7a5 5 0 0 1 4-4.9V7zm10 5a5 5 0 0 1-4 4.9V18a3 3 0 0 0 3 3 3 3 0 0 0 3-3v-5a4 4 0 0 1 4-4h2l-1 1 1 1h-2a2 2 0 0 0-2 2v5a5 5 0 0 1-5 5 5 5 0 0 1-5-5v-1.1A5 5 0 0 1 4 12V9h10z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mouse.svg����������������������������������0000664�0000000�0000000�00000000266�14753064456�0025264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 1.07C7.05 1.56 4 4.92 4 9h7m-7 6a8 8 0 0 0 8 8 8 8 0 0 0 8-8v-4H4m9-9.93V9h7c0-4.08-3.06-7.44-7-7.93"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/move-resize-variant.svg��������������������0000664�0000000�0000000�00000000340�14753064456�0030034�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.88.46.46 1.88 5.59 7H2v2h7V2H7v3.59M11 7v2h10v6h2V9a2 2 0 0 0-2-2M7 11v10a2 2 0 0 0 2 2h6v-2H9V11m6.88 3.46-1.42 1.42L19.6 21H17v2h6v-6h-2v2.59"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/move-resize.svg����������������������������0000664�0000000�0000000�00000000450�14753064456�0026374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 1v1h1v3H9v1h3V5h-1V2h1V1M9 7c-1.11 0-2 .89-2 2v12c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V9c0-1.11-.89-2-2-2M1 9v3h1v-1h3v1h1V9H5v1H2V9m7 0h12v12H9m5-11v1h1v5h-4v-1h-1v3h1v-1h4v2h-1v1h3v-1h-1v-2h3v1h1v-3h-1v1h-3v-5h1v-1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-check-outline.svg��������������������0000664�0000000�0000000�00000000454�14753064456�0030002�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1l2 4h3L8 4h2l2 4h3l-2-4h2l2 4h3l-2-4h4v9.81c-.61-.35-1.28-.59-2-.72V10H5.76L4 6.47V18h9.09c-.05.33-.09.66-.09 1m8.34-3.16-3.59 3.59-1.59-1.59L15 19l2.75 3 4.75-4.75z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-check.svg����������������������������0000664�0000000�0000000�00000000421�14753064456�0026317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1l2 4h3L8 4h2l2 4h3l-2-4h2l2 4h3l-2-4h4v9.81c-.88-.51-1.9-.81-3-.81-3.31 0-6 2.69-6 6m8.34-3.16-3.59 3.59-1.59-1.59L15 19l2.75 3 4.75-4.75z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-cog-outline.svg����������������������0000664�0000000�0000000�00000001263�14753064456�0027474�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 19c0 .34.03.67.08 1H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1l2 4h3L8 4h2l2 4h3l-2-4h2l2 4h3l-2-4h4v8.68a7 7 0 0 0-2-.6V10H5.76L4 6.47V18h8.08c-.05.33-.08.66-.08 1m11.8 1.4c.1 0 .1.1 0 .2l-1 1.7c-.1.1-.2.1-.3.1l-1.2-.4c-.3.2-.5.3-.8.5l-.2 1.3c0 .1-.1.2-.2.2h-2c-.1 0-.2-.1-.3-.2l-.2-1.3c-.3-.1-.6-.3-.8-.5l-1.2.5c-.1 0-.2 0-.3-.1l-1-1.7c-.1-.1 0-.2.1-.3l1.1-.8v-1l-1.1-.8c-.1-.1-.1-.2-.1-.3l1-1.7c.1-.1.2-.1.3-.1l1.2.5c.3-.2.5-.3.8-.5l.2-1.3c0-.1.1-.2.3-.2h2c.1 0 .2.1.2.2l.2 1.3c.3.1.6.3.9.5l1.2-.5c.1 0 .3 0 .3.1l1 1.7c.1.1 0 .2-.1.3l-1.1.8v1zM20.5 19c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5.7 1.5 1.5 1.5 1.5-.7 1.5-1.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-cog.svg������������������������������0000664�0000000�0000000�00000001220�14753064456�0026010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 19c0 .34.03.67.08 1H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1l2 4h3L8 4h2l2 4h3l-2-4h2l2 4h3l-2-4h4v8.68A6.995 6.995 0 0 0 12 19m11.8 1.4c.1 0 .1.1 0 .2l-1 1.7c-.1.1-.2.1-.3.1l-1.2-.4c-.3.2-.5.3-.8.5l-.2 1.3c0 .1-.1.2-.2.2h-2c-.1 0-.2-.1-.3-.2l-.2-1.3c-.3-.1-.6-.3-.8-.5l-1.2.5c-.1 0-.2 0-.3-.1l-1-1.7c-.1-.1 0-.2.1-.3l1.1-.8v-1l-1.1-.8c-.1-.1-.1-.2-.1-.3l1-1.7c.1-.1.2-.1.3-.1l1.2.5c.3-.2.5-.3.8-.5l.2-1.3c0-.1.1-.2.3-.2h2c.1 0 .2.1.2.2l.2 1.3c.3.1.6.3.9.5l1.2-.5c.1 0 .3 0 .3.1l1 1.7c.1.1 0 .2-.1.3l-1.1.8v1zM20.5 19c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5.7 1.5 1.5 1.5 1.5-.7 1.5-1.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-edit-outline.svg���������������������0000664�0000000�0000000�00000000474�14753064456�0027654�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 4v4.12L19.12 10H4.76L3 6.47V18h8v2H3a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1l2 4h3L7 4h2l2 4h3l-2-4h2l2 4h3l-2-4zm.42 8.3 1.28 1.28c.22.21.22.56 0 .77l-1 1-2.05-2.05 1-1c.11-.11.25-.17.39-.17s.27.06.38.17m-.3 3.63L15.06 22H13v-2.06l6.07-6.06z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-edit.svg�����������������������������0000664�0000000�0000000�00000000473�14753064456�0026176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.04 11.13c-.14 0-.28.06-.39.17l-1 1 2.05 2.05 1-1c.22-.21.22-.56 0-.77l-1.28-1.28a.53.53 0 0 0-.38-.17m-1.97 1.75L13 18.94V21h2.06l6.06-6.07zM11 20H3a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1l2 4h3L7 4h2l2 4h3l-2-4h2l2 4h3l-2-4h4v4.12l-10 9.99z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-filter-outline.svg�������������������0000664�0000000�0000000�00000000505�14753064456�0030207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10 11-.94 2.06L7 14l2.06.94L10 17l.94-2.06L13 14l-2.06-.94M18 4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.09 0-2 .9-2 2v12c0 1.1.91 2 2 2h16a2 2 0 0 0 2-2V4zm2 14H4V6.47L5.77 10H16l-.63 1.37L14 12l1.37.63L16 14l.63-1.37L18 12l-1.37-.63L16 10h4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-filter.svg���������������������������0000664�0000000�0000000�00000000463�14753064456�0026535�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18 4 2 3h-3l-2-3h-2l2 3h-3l-2-3H8l2 3H7L5 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4zm-6.75 11.25L10 18l-1.25-2.75L6 14l2.75-1.25L10 10l1.25 2.75L14 14zm5.69-3.31L16 14l-.94-2.06L13 11l2.06-.94L16 8l.94 2.06L19 11z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-minus-outline.svg��������������������0000664�0000000�0000000�00000000402�14753064456�0030051�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1l2 4h3L8 4h2l2 4h3l-2-4h2l2 4h3l-2-4h4v9.81c-.61-.35-1.28-.59-2-.72V10H5.76L4 6.47V18h9.09c-.05.33-.09.66-.09 1m2-1v2h8v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-minus.svg����������������������������0000664�0000000�0000000�00000000347�14753064456�0026404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1l2 4h3L8 4h2l2 4h3l-2-4h2l2 4h3l-2-4h4v9.81c-.88-.51-1.9-.81-3-.81-3.31 0-6 2.69-6 6m2-1v2h8v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-off-outline.svg����������������������0000664�0000000�0000000�00000000425�14753064456�0027475�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.39 1.73 1.11 3l1.54 1.54C2.25 4.9 2 5.42 2 6v12a2 2 0 0 0 2 2h14.11l2.73 2.73 1.27-1.27zM4 18V6.47L5.76 10h2.35l8 8zM8.8 5.6 8 4h2l2 4h3l-2-4h2l2 4h3l-2-4h4v14c0 .24-.04.47-.12.68L20 16.8V10h-6.8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-off.svg������������������������������0000664�0000000�0000000�00000000360�14753064456�0026016�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.11 21.46-1.27 1.27L18.11 20H4a2 2 0 0 1-2-2V6c0-.58.25-1.1.65-1.46L1.11 3l1.28-1.27zm-.23-2.78c.08-.21.12-.44.12-.68V4h-4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l.8 1.6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-open-check-outline.svg���������������0000664�0000000�0000000�00000000616�14753064456�0030741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.75 7.46 12 3.93l1.97-.39 2.74 3.53zm6.87-1.36-.78-3.92-3.93.78 2.74 3.54zm-9.81 1.95L9.07 4.5l-1.97.41 2.75 3.53zM4.16 5.5l-.98.19a1.995 1.995 0 0 0-1.57 2.35L2 10l4.9-.97zM4 20v-8h16v1.09c.72.12 1.39.37 2 .72V10H2v10a2 2 0 0 0 2 2h9.81c-.35-.61-.59-1.28-.72-2zm17.34-4.16-3.59 3.59-1.59-1.59L15 19l2.75 3 4.75-4.75z"/></svg>������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-open-check.svg�����������������������0000664�0000000�0000000�00000000620�14753064456�0027257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.65 6.5-2.74-3.54 3.93-.78.78 3.92zm-2.94.57-2.74-3.53-1.97.39 2.75 3.53zM19 13c1.1 0 2.12.3 3 .81V10H2v10a2 2 0 0 0 2 2h9.81c-.51-.88-.81-1.9-.81-3 0-3.31 2.69-6 6-6m-7.19-4.95L9.07 4.5l-1.97.41 2.75 3.53zM4.16 5.5l-.98.19a2.01 2.01 0 0 0-1.57 2.35L2 10l4.9-.97zm17.18 10.34-3.59 3.59-1.59-1.59L15 19l2.75 3 4.75-4.75z"/></svg>����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-open-cog-outline.svg�����������������0000664�0000000�0000000�00000001420�14753064456�0030426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.75 7.46 12 3.93l1.97-.39 2.74 3.53zm6.87-1.36-.78-3.92-3.93.78 2.74 3.54zm-9.81 1.95L9.07 4.5l-1.97.41 2.75 3.53zM4.16 5.5l-.98.19a1.995 1.995 0 0 0-1.57 2.35L2 10l4.9-.97zM4 20v-8h16v.08c.71.1 1.38.31 2 .61V10H2v10a2 2 0 0 0 2 2h8.68a7 7 0 0 1-.6-2zm19.8.4c.1 0 .1.1 0 .2l-1 1.7c-.1.1-.2.1-.3.1l-1.2-.4c-.3.2-.5.3-.8.5l-.2 1.3c0 .1-.1.2-.2.2h-2c-.1 0-.2-.1-.3-.2l-.2-1.3c-.3-.1-.6-.3-.8-.5l-1.2.5c-.1 0-.2 0-.3-.1l-1-1.7c-.1-.1 0-.2.1-.3l1.1-.8v-1l-1.1-.8c-.1-.1-.1-.2-.1-.3l1-1.7c.1-.1.2-.1.3-.1l1.2.5c.3-.2.5-.3.8-.5l.2-1.3c0-.1.1-.2.3-.2h2c.1 0 .2.1.2.2l.2 1.3c.3.1.6.3.9.5l1.2-.5c.1 0 .3 0 .3.1l1 1.7c.1.1 0 .2-.1.3l-1.1.8v1zM20.5 19c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5.7 1.5 1.5 1.5 1.5-.7 1.5-1.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-open-cog.svg�������������������������0000664�0000000�0000000�00000001421�14753064456�0026752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.75 7.46 12 3.93l1.97-.39 2.74 3.53zm6.87-1.36-.78-3.92-3.93.78 2.74 3.54zM19 12c1.08 0 2.09.25 3 .68V10H2v10a2 2 0 0 0 2 2h8.68A6.995 6.995 0 0 1 19 12m-7.19-3.95L9.07 4.5l-1.97.41 2.75 3.53zM4.16 5.5l-.98.19a2.01 2.01 0 0 0-1.57 2.35L2 10l4.9-.97zM23.8 20.4c.1 0 .1.1 0 .2l-1 1.7c-.1.1-.2.1-.3.1l-1.2-.4c-.3.2-.5.3-.8.5l-.2 1.3c0 .1-.1.2-.2.2h-2c-.1 0-.2-.1-.3-.2l-.2-1.3c-.3-.1-.6-.3-.8-.5l-1.2.5c-.1 0-.2 0-.3-.1l-1-1.7c-.1-.1 0-.2.1-.3l1.1-.8v-1l-1.1-.8c-.1-.1-.1-.2-.1-.3l1-1.7c.1-.1.2-.1.3-.1l1.2.5c.3-.2.5-.3.8-.5l.2-1.3c0-.1.1-.2.3-.2h2c.1 0 .2.1.2.2l.2 1.3c.3.1.6.3.9.5l1.2-.5c.1 0 .3 0 .3.1l1 1.7c.1.1 0 .2-.1.3l-1.1.8v1zM20.5 19c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5.7 1.5 1.5 1.5 1.5-.7 1.5-1.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-open-edit-outline.svg����������������0000664�0000000�0000000�00000000641�14753064456�0030607�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.75 7.46 12 3.93l1.97-.39 2.74 3.53zm6.87-1.36-.78-3.92-3.93.78 2.74 3.54zM4 12h14.13l2-2H2v10a2 2 0 0 0 2 2h7v-2H4zm7.81-3.95L9.07 4.5l-1.97.41 2.75 3.53zM4.16 5.5l-.98.19a1.995 1.995 0 0 0-1.57 2.35L2 10l4.9-.97zM13 19.96V22h2.04l6.13-6.12-2.04-2.05zm9.85-6.49-1.32-1.32c-.2-.2-.53-.2-.72 0l-.98.98 2.04 2.04.98-.98c.2-.19.2-.52 0-.72"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-open-edit.svg������������������������0000664�0000000�0000000�00000000634�14753064456�0027134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.65 6.5-2.74-3.54 3.93-.78.78 3.92zm-2.94.57-2.74-3.53-1.97.39 2.75 3.53zM2 10v10a2 2 0 0 0 2 2h7v-2.87L20.13 10zm9.81-1.95L9.07 4.5l-1.97.41 2.75 3.53zM4.16 5.5l-.98.19a2.01 2.01 0 0 0-1.57 2.35L2 10l4.9-.97zM13 19.96V22h2.04l6.13-6.12-2.04-2.05zm9.85-6.49-1.32-1.32c-.2-.2-.53-.2-.72 0l-.98.98 2.04 2.04.98-.98c.2-.19.2-.52 0-.72"/></svg>����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-open-minus-outline.svg���������������0000664�0000000�0000000�00000000542�14753064456�0031015�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.09 20c.12.72.37 1.39.72 2H4a2 2 0 0 1-2-2V10h20v3.81c-.61-.35-1.28-.59-2-.72V12H4v8zm8.53-13.9-.78-3.92-3.93.78 2.74 3.54zm-4.91.97-2.74-3.53-1.97.39 2.75 3.53zM4.16 5.5l-.98.19a1.995 1.995 0 0 0-1.57 2.35L2 10l4.9-.97zm7.65 2.55L9.07 4.5l-1.97.41 2.75 3.53zM15 18v2h8v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-open-minus.svg�����������������������0000664�0000000�0000000�00000000546�14753064456�0027344�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.75 7.46 12 3.93l1.97-.39 2.74 3.53zm6.87-1.36-.78-3.92-3.93.78 2.74 3.54zm-9.81 1.95L9.07 4.5l-1.97.41 2.75 3.53zM4.16 5.5l-.98.19a2.01 2.01 0 0 0-1.57 2.35L2 10l4.9-.97zM19 13c1.1 0 2.12.3 3 .81V10H2v10a2 2 0 0 0 2 2h9.81c-.51-.88-.81-1.9-.81-3 0-3.31 2.69-6 6-6m-4 5v2h8v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-open-off-outline.svg�����������������0000664�0000000�0000000�00000000476�14753064456�0030442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.7 6.5 16.9 3l3.9-.8.8 3.9zm2.4 15-1.3 1.3-.7-.8H4c-1.1 0-2-.9-2-2V10h6.1l-1-1L2 10l-.4-2c-.2-1 .5-2.1 1.6-2.3l.5-.1L1.1 3l1.3-1.3zm-4-1.5-8-8H4v8zm3.9-1.2V10h-8.8l2 2H20v4.8zM16.7 7.1 14 3.5l-2 .4 2.8 3.5zm-4.9.9L9.1 4.5l-1.2.2 3.4 3.4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-open-off.svg�������������������������0000664�0000000�0000000�00000000436�14753064456�0026761�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.2 10H22v8.8zm8.4-3.9-.8-3.9-3.9.8 2.7 3.5zM11.8 8 9.1 4.5l-1.2.2 3.4 3.4zM2.4 1.7 1.1 3l2.6 2.6-.5.1C2.1 5.9 1.4 7 1.6 8l.4 2 5.1-1 1 1H2v10c0 1.1.9 2 2 2h16.1l.7.7 1.3-1.3zm14.3 5.4L14 3.5l-2 .4 2.8 3.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-open-outline.svg���������������������0000664�0000000�0000000�00000000462�14753064456�0027665�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.84 2.18-3.93.78 2.74 3.54 1.97-.4zm-6.87 1.36L12 3.93l2.75 3.53 1.96-.39zm-4.9.96-1.97.41 2.75 3.53 1.96-.39zm-4.91 1-.98.19a1.995 1.995 0 0 0-1.57 2.35L2 10l4.9-.97zM20 12v8H4v-8zm2-2H2v10a2 2 0 0 0 2 2h16c1.11 0 2-.89 2-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-open-play-outline.svg����������������0000664�0000000�0000000�00000000544�14753064456�0030631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 10v3.81c-.61-.35-1.28-.59-2-.72V12H4v8h9.09c.12.72.37 1.39.72 2H4a2 2 0 0 1-2-2V10zm-5.29-2.93-2.74-3.53-1.97.39 2.75 3.53zm4.91-.97-.78-3.92-3.93.78 2.74 3.54zm-9.81 1.95L9.07 4.5l-1.97.41 2.75 3.53zM4.16 5.5l-.98.19a1.995 1.995 0 0 0-1.57 2.35L2 10l4.9-.97zM17 22l5-3-5-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-open-play.svg������������������������0000664�0000000�0000000�00000000545�14753064456�0027155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.75 7.46 12 3.93l1.97-.39 2.74 3.53zm6.87-1.36-.78-3.92-3.93.78 2.74 3.54zM4.16 5.5l-.98.19a2.01 2.01 0 0 0-1.57 2.35L2 10l4.9-.97zm7.65 2.55L9.07 4.5l-1.97.41 2.75 3.53zM2 10v10a2 2 0 0 0 2 2h9.81c-.51-.88-.81-1.9-.81-3 0-3.31 2.69-6 6-6 1.1 0 2.12.3 3 .81V10zm15 12 5-3-5-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-open-plus-outline.svg����������������0000664�0000000�0000000�00000000571�14753064456�0030647�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.75 7.46 12 3.93l1.97-.39 2.74 3.53zm6.87-1.36-.78-3.92-3.93.78 2.74 3.54zM4 20v-8h16v1.09c.72.12 1.39.37 2 .72V10H2v10a2 2 0 0 0 2 2h9.81c-.35-.61-.59-1.28-.72-2zm7.81-11.95L9.07 4.5l-1.97.41 2.75 3.53zM4.16 5.5l-.98.19a1.995 1.995 0 0 0-1.57 2.35L2 10l4.9-.97zM20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-open-plus.svg������������������������0000664�0000000�0000000�00000000572�14753064456�0027173�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.65 6.5-2.74-3.54 3.93-.78.78 3.92zm-2.94.57-2.74-3.53-1.97.39 2.75 3.53zM19 13c1.1 0 2.12.3 3 .81V10H2v10a2 2 0 0 0 2 2h9.81c-.51-.88-.81-1.9-.81-3 0-3.31 2.69-6 6-6m-7.19-4.95L9.07 4.5l-1.97.41 2.75 3.53zM4.16 5.5l-.98.19a2.01 2.01 0 0 0-1.57 2.35L2 10l4.9-.97zM20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-open-remove-outline.svg��������������0000664�0000000�0000000�00000000715�14753064456�0031161�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.65 6.5-2.74-3.54 3.93-.78.78 3.92zm-2.94.57-2.74-3.53-1.97.39 2.75 3.53zM4.16 5.5l-.98.19a1.995 1.995 0 0 0-1.57 2.35L2 10l4.9-.97zm7.65 2.55L9.07 4.5l-1.97.41 2.75 3.53zM4 20v-8h16v1.09c.72.12 1.39.37 2 .72V10H2v10a2 2 0 0 0 2 2h9.81c-.35-.61-.59-1.28-.72-2zm18.54-3.12-1.42-1.41L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19z"/></svg>���������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-open-remove.svg����������������������0000664�0000000�0000000�00000000720�14753064456�0027500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.75 7.46 12 3.93l1.97-.39 2.74 3.53zm-2.94.59L9.07 4.5l-1.97.41 2.75 3.53zm9.81-1.95-.78-3.92-3.93.78 2.74 3.54zM19 13c1.1 0 2.12.3 3 .81V10H2v10a2 2 0 0 0 2 2h9.81c-.51-.88-.81-1.9-.81-3 0-3.31 2.69-6 6-6M4.16 5.5l-.98.19a2.01 2.01 0 0 0-1.57 2.35L2 10l4.9-.97zm18.38 11.38-1.42-1.41L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19z"/></svg>������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-open-settings-outline.svg������������0000664�0000000�0000000�00000000531�14753064456�0031520�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.65 4.5 16.91.96l3.93-.78.78 3.92zm-2.94.57-2.74-3.53-1.97.39 2.75 3.53zm-4.9.98L9.07 2.5l-1.97.41 2.75 3.53zM4.16 3.5l-.98.19a1.995 1.995 0 0 0-1.57 2.35L2 8l4.9-.97zM22 8v10c0 1.11-.89 2-2 2H4a2 2 0 0 1-2-2V8zm-2 2H4v8h16zM7 24h2v-2H7zm8 0h2v-2h-2zm-4 0h2v-2h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-open-settings.svg��������������������0000664�0000000�0000000�00000000520�14753064456�0030041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.75 5.46 12 1.93l1.97-.39 2.74 3.53zm6.87-1.36L20.84.18l-3.93.78 2.74 3.54zm-9.81 1.95L9.07 2.5l-1.97.41 2.75 3.53zM2 8v10a2 2 0 0 0 2 2h16c1.11 0 2-.89 2-2V8zm2.16-4.5-.98.19a2.01 2.01 0 0 0-1.57 2.35L2 8l4.9-.97zM11 24h2v-2h-2zm-4 0h2v-2H7zm8 0h2v-2h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-open-star-outline.svg����������������0000664�0000000�0000000�00000000657�14753064456�0030642�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.65 6.5-2.74-3.54 3.93-.78.78 3.92zm-2.94.57-2.74-3.53-1.97.39 2.75 3.53zM4.16 5.5l-.98.19a1.995 1.995 0 0 0-1.57 2.35L2 10l4.9-.97zm7.65 2.55L9.07 4.5l-1.97.41 2.75 3.53zM4 20v-8h16v1.09c.72.12 1.39.37 2 .72V10H2v10a2 2 0 0 0 2 2h9.81c-.35-.61-.59-1.28-.72-2zm19-2.11-2.89-.25L19 15l-1.13 2.64-2.87.25 2.18 1.88-.68 2.81 2.5-1.49 2.45 1.49-.65-2.81z"/></svg>���������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-open-star.svg������������������������0000664�0000000�0000000�00000000663�14753064456�0027162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.65 6.5-2.74-3.54 3.93-.78.78 3.92zm-2.94.57-2.74-3.53-1.97.39 2.75 3.53zM19 13c1.1 0 2.12.3 3 .81V10H2v10a2 2 0 0 0 2 2h9.81c-.51-.88-.81-1.9-.81-3 0-3.31 2.69-6 6-6M4.16 5.5l-.98.19a2.01 2.01 0 0 0-1.57 2.35L2 10l4.9-.97zm7.65 2.55L9.07 4.5l-1.97.41 2.75 3.53zM23 17.89l-2.89-.25L19 15l-1.13 2.64-2.87.25 2.18 1.88-.68 2.81 2.5-1.49 2.45 1.49-.65-2.81z"/></svg>�����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-open.svg�����������������������������0000664�0000000�0000000�00000000436�14753064456�0026211�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.84 2.18-3.93.78 2.74 3.54 1.97-.4zm-6.87 1.36L12 3.93l2.75 3.53 1.96-.39zm-4.9.96-1.97.41 2.75 3.53 1.96-.39zm-4.91 1-.98.19a2 2 0 0 0-1.57 2.35L2 10l4.9-.97zM2 10v10a2 2 0 0 0 2 2h16c1.11 0 2-.89 2-2V10z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-outline.svg��������������������������0000664�0000000�0000000�00000000304�14753064456�0026721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.76 10H20v8H4V6.47M22 4h-4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-play-outline.svg���������������������0000664�0000000�0000000�00000000376�14753064456�0027675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 4v9.81c-.61-.35-1.28-.59-2-.72V10H5.76L4 6.47V18h9.09c-.05.33-.09.66-.09 1s.04.67.09 1H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1l2 4h3L8 4h2l2 4h3l-2-4h2l2 4h3l-2-4zm-5 18 5-3-5-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-play.svg�����������������������������0000664�0000000�0000000�00000000350�14753064456�0026210�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 4v9.81c-.88-.51-1.9-.81-3-.81-3.31 0-6 2.69-6 6 0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1l2 4h3L8 4h2l2 4h3l-2-4h2l2 4h3l-2-4zm-5 18 5-3-5-3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-plus-outline.svg���������������������0000664�0000000�0000000�00000000426�14753064456�0027707�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1l2 4h3L8 4h2l2 4h3l-2-4h2l2 4h3l-2-4h4v9.81c-.61-.35-1.28-.59-2-.72V10H5.76L4 6.47V18h9.09c-.05.33-.09.66-.09 1m7-1v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-plus.svg�����������������������������0000664�0000000�0000000�00000000373�14753064456�0026233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1l2 4h3L8 4h2l2 4h3l-2-4h2l2 4h3l-2-4h4v9.81c-.88-.51-1.9-.81-3-.81-3.31 0-6 2.69-6 6m7-1v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-remove-outline.svg�������������������0000664�0000000�0000000�00000000555�14753064456�0030224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1l2 4h3L8 4h2l2 4h3l-2-4h2l2 4h3l-2-4h4v9.81c-.61-.35-1.28-.59-2-.72V10H5.76L4 6.47V18h9.09c-.05.33-.09.66-.09 1m9.54-2.12-1.42-1.41L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-remove.svg���������������������������0000664�0000000�0000000�00000000522�14753064456�0026541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1l2 4h3L8 4h2l2 4h3l-2-4h2l2 4h3l-2-4h4v9.81c-.88-.51-1.9-.81-3-.81-3.31 0-6 2.69-6 6m9.54-2.12-1.42-1.41L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-roll.svg�����������������������������0000664�0000000�0000000�00000001422�14753064456�0026214�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a2.5 2.5 0 0 0-2.5 2.5A2.5 2.5 0 0 0 12 9a2.5 2.5 0 0 0 2.5-2.5A2.5 2.5 0 0 0 12 4M4.4 9.53A2.5 2.5 0 0 0 6 12.68c1.32.42 2.73-.29 3.15-1.61a2.5 2.5 0 0 0-1.6-3.15c-1.31-.42-2.73.29-3.15 1.61m15.21-.03c-.43-1.29-1.84-2-3.15-1.58a2.49 2.49 0 0 0-1.61 3.15 2.5 2.5 0 0 0 3.15 1.6c1.31-.42 2.03-1.84 1.61-3.17m-12.3 8.96c1.11.82 2.69.57 3.49-.55.81-1.12.56-2.68-.56-3.49a2.506 2.506 0 0 0-3.49.55c-.81 1.12-.56 2.68.56 3.49m9.39 0c1.12-.81 1.37-2.37.56-3.49a2.49 2.49 0 0 0-3.49-.55 2.497 2.497 0 0 0-.56 3.49c.79 1.12 2.38 1.36 3.49.55M12 10.5a1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-search-outline.svg�������������������0000664�0000000�0000000�00000000622�14753064456�0030167�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 20H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h1l2 4h3L8 4h2l2 4h3l-2-4h2l2 4h3l-2-4h4v9c-.5-.8-1.2-1.5-2-2v-1H5.8L4 6.5V18h6.2c.2.7.4 1.4.8 2m9.3-1.1c.4-.7.7-1.5.7-2.4 0-2.5-2-4.5-4.5-4.5S12 14 12 16.5s2 4.5 4.5 4.5c.9 0 1.7-.2 2.4-.7l3.1 3.1 1.4-1.4zm-3.8.1c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5"/></svg>��������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-search.svg���������������������������0000664�0000000�0000000�00000000626�14753064456�0026516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.03 20H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h1l2 4h3L8 4h2l2 4h3l-2-4h2l2 4h3l-2-4h4v9.05A6.49 6.49 0 0 0 16.5 10c-3.58 0-6.5 2.92-6.5 6.5 0 1.29.38 2.5 1.03 3.5m12.36 2L22 23.39l-3.12-3.07c-.69.43-1.51.68-2.38.68-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 .88-.25 1.71-.69 2.4zM19 16.5a2.5 2.5 0 0 0-5 0 2.5 2.5 0 0 0 5 0"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-settings-outline.svg�����������������0000664�0000000�0000000�00000000357�14753064456�0030567�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18 4 2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16c1.11 0 2-.89 2-2V4zm2 14H4V6.47L5.76 10H20zm-9 4h2v2h-2zm-4 0h2v2H7zm8 0h2v2h-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-settings.svg�������������������������0000664�0000000�0000000�00000000325�14753064456�0027105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 4v14c0 1.11-.89 2-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1l2 4h3L8 4h2l2 4h3l-2-4h2l2 4h3l-2-4zM7 24h2v-2H7zm4 0h2v-2h-2zm4 0h2v-2h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-star-outline.svg���������������������0000664�0000000�0000000�00000000520�14753064456�0027670�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1l2 4h3L8 4h2l2 4h3l-2-4h2l2 4h3l-2-4h4v9.81c-.61-.35-1.28-.59-2-.72V10H5.76L4 6.47V18h9.09c-.05.33-.09.66-.09 1m10-1.11-2.89-.25L19 15l-1.13 2.64-2.87.25 2.18 1.88-.68 2.81 2.5-1.49 2.45 1.49-.65-2.81z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie-star.svg�����������������������������0000664�0000000�0000000�00000000465�14753064456�0026223�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0 .34.04.67.09 1H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1l2 4h3L8 4h2l2 4h3l-2-4h2l2 4h3l-2-4h4v9.81c-.88-.51-1.9-.81-3-.81-3.31 0-6 2.69-6 6m10-1.11-2.89-.25L19 15l-1.13 2.64-2.87.25 2.18 1.88-.68 2.81 2.5-1.49 2.45 1.49-.65-2.81z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/movie.svg����������������������������������0000664�0000000�0000000�00000000257�14753064456�0025253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18 4 2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mower-bag-on.svg���������������������������0000664�0000000�0000000�00000001002�14753064456�0026413�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2h2v5h-2zm10 4.3-1.4-1.4L17 8.4l1.4 1.4s3.5-3.5 3.6-3.5M10.8 12l1.1 2H17l-.5-.9c-.3-.7-1-1.1-1.8-1.1zm9.2 3h-8.6L4.6 3H1v2h2.4l4 7.1-5.1-2c-.2-.1-.6-.1-.9.1-.2.2-.4.5-.4.8v7c0 .5.5 1 1 1h3.3c.6 1.2 1.8 2 3.2 2s2.6-.8 3.2-2h5.5c.4 1.2 1.5 2 2.8 2 1.7 0 3-1.3 3-3s-1.3-3-3-3M5 17H3v-4.5l4.3 1.7c-1.2.4-2.1 1.5-2.3 2.8m3.5 2c-.8 0-1.5-.7-1.5-1.5S7.7 16 8.5 16s1.5.7 1.5 1.5S9.3 19 8.5 19M20 19c-.5 0-1-.5-1-1s.5-1 1-1 1 .5 1 1-.5 1-1 1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mower-bag.svg������������������������������0000664�0000000�0000000�00000001012�14753064456�0026002�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.95 14-1.13-2h3.94c.74 0 1.45.43 1.79 1.11L17 14zM23 18c0 1.66-1.34 3-3 3-1.3 0-2.4-.84-2.82-2h-5.53c-.56 1.18-1.76 2-3.15 2s-2.59-.82-3.15-2H2c-.55 0-1-.45-1-1v-7c0-.33.17-.64.44-.83.27-.17.62-.22.93-.1l5.06 2.02L3.42 5H1V3h3.58l6.79 12H20c1.66 0 3 1.34 3 3M7.34 14.21 3 12.5V17h2.05c.19-1.3 1.08-2.36 2.29-2.79M10 17.5c0-.83-.67-1.5-1.5-1.5S7 16.67 7 17.5 7.67 19 8.5 19s1.5-.67 1.5-1.5m11 .5c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mower-on.svg�������������������������������0000664�0000000�0000000�00000000747�14753064456�0025703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2h2v5h-2zm10 4.3-1.4-1.4L17 8.4l1.4 1.4s3.5-3.5 3.6-3.5M18.5 14c-1 0-1.8.4-2.4 1H9.4L5.7 3H2v2h2.3L7 14h-.5C4.6 14 3 15.6 3 17.5S4.6 21 6.5 21c1.4 0 2.6-.8 3.2-2h5.7c.6 1.2 1.8 2 3.2 2 1.9 0 3.5-1.6 3.5-3.5S20.4 14 18.5 14m-12 5c-.8 0-1.5-.7-1.5-1.5S5.7 16 6.5 16s1.5.7 1.5 1.5S7.3 19 6.5 19m12 0c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5m-9-7 .6 2H15l-.4-.9c-.3-.7-1.1-1.1-1.8-1.1z"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mower.svg����������������������������������0000664�0000000�0000000�00000000750�14753064456�0025263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 14c-.95 0-1.81.38-2.44 1H9.39L5.74 3H2v2h2.26L7 14.05c-.15-.02-.32-.05-.5-.05C4.57 14 3 15.57 3 17.5S4.57 21 6.5 21c1.39 0 2.59-.82 3.15-2h5.7c.56 1.18 1.76 2 3.15 2 1.93 0 3.5-1.57 3.5-3.5S20.43 14 18.5 14m-12 5c-.83 0-1.5-.67-1.5-1.5S5.67 16 6.5 16s1.5.67 1.5 1.5S7.33 19 6.5 19m12 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5m-8.37-5-.6-2h3.23c.74 0 1.45.43 1.79 1.11L15 14z"/></svg>������������������������mkdocs-material-9.6.4/material/templates/.icons/material/muffin.svg���������������������������������0000664�0000000�0000000�00000000317�14753064456�0025415�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 5s-1-3-4-3-4 3-4 3C6 5 4 7 4 9c-2.7 0-2.7 4 0 4h16c2.7 0 2.7-4 0-4 0-2-2-4-4-4M5 15l2 7h2l-1-7zm5 0 1 7h2l1-7zm6 0-1 7h2l2-7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/multicast.svg������������������������������0000664�0000000�0000000�00000000371�14753064456�0026136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 2v2h-5a2 2 0 0 0-2 2v3h2V6h5v2l3-3zm0 7v2H6.73c-.36-.62-1.02-1-1.73-1-1.1 0-2 .9-2 2s.9 2 2 2c.71 0 1.37-.38 1.73-1H17v2l3-3zm-7 6v3a2 2 0 0 0 2 2h5v2l3-3-3-3v2h-5v-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/multimedia.svg�����������������������������0000664�0000000�0000000�00000000767�14753064456�0026274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 13V5c0-1.1.9-2 2-2h9c1.1 0 2 .9 2 2v6h-3.43l-1.28-1.74a.14.14 0 0 0-.24 0L15.06 12c-.06.06-.18.07-.24 0l-1.43-1.75a.152.152 0 0 0-.23 0l-2.11 2.66c-.08.09-.01.24.11.24h6.34V15H11c-1.11 0-2-.89-2-2m-3 9v-1H4v1H2V2h2v1h2V2h2.39C7.54 2.74 7 3.8 7 5v8c0 2.21 1.79 4 4 4h4.7c-1.03.83-1.7 2.08-1.7 3.5 0 .53.11 1.03.28 1.5zM4 7h2V5H4zm0 4h2V9H4zm0 4h2v-2H4zm2 4v-2H4v2zm17-6v2h-2v5.5a2.5 2.5 0 0 1-5 0 2.5 2.5 0 0 1 3.5-2.29V13z"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/material/multiplication-box.svg���������������������0000664�0000000�0000000�00000000422�14753064456�0027751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2zm-8 14h2v-3.27l2.83 1.63 1-1.73L14 12l2.83-1.64-1-1.73L13 10.27V7h-2v3.27L8.17 8.63l-1 1.73L10 12l-2.83 1.63 1 1.73L11 13.73z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/multiplication.svg�������������������������0000664�0000000�0000000�00000000311�14753064456�0027160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 3h2v7.27l6.29-3.63 1 1.73L14 12l6.3 3.64-1 1.73-6.3-3.65V21h-2v-7.27l-6.31 3.63-1-1.73L10 12 3.72 8.36l1-1.73L11 10.26z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mushroom-off-outline.svg�������������������0000664�0000000�0000000�00000001043�14753064456�0030224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l3 3C2.8 7.6 2 9.7 2 12c0 1.1.9 2 2 2h8.1l1 1H9l-1 3.5-.3 1c-.3 1.1.4 2.2 1.4 2.4l.6.1h4.7c1.1 0 2-.9 2-2l-.1-.5-.3-1-.2-.9 5.1 5.1zM4 12c0-1.7.6-3.3 1.5-4.6l.7.7c-.1.3-.2.6-.2.9 0 1.1.9 2 2 2 .3 0 .6-.1.9-.2l1.2 1.2zm5.7 8 .3-1 .6-2h3l.6 2 .3 1zm6.3-9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2M8.2 5 6.7 3.5C8.3 2.6 10.1 2 12 2c5.5 0 10 4.5 10 10 0 1.1-.9 2-2 2h-2.8l-2-2H20c0-3.7-2.6-6.9-6-7.8-.1 1-1 1.8-2 1.8s-1.9-.8-2-1.8c-.6.2-1.3.5-1.8.8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mushroom-off.svg���������������������������0000664�0000000�0000000�00000000741�14753064456�0026553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l3 3C2.8 7.6 2 9.7 2 12c0 1.1.9 2 2 2h8.1l1 1H9l-1.3 4.5v.5c0 1.1.9 2 2 2h4.7c1.1 0 2-.9 2-2l-.1-.5-.5-1.8 5.1 5.1zM7 12c-1.1 0-2-.9-2-2 0-.8.5-1.6 1.3-1.9l2.6 2.6C8.6 11.5 7.8 12 7 12m3-6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2c-.5 0-.9-.2-1.3-.5l6.5 6.5H20c1.1 0 2-.9 2-2 0-5.5-4.5-10-10-10-1.9 0-3.7.6-5.3 1.5l3.7 3.7c-.2-.3-.4-.7-.4-1.2m7 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2"/></svg>�������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mushroom-outline.svg�����������������������0000664�0000000�0000000�00000000750�14753064456�0027460�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 12h16c0-3.73-2.56-6.87-6-7.75-.14.99-1 1.75-2 1.75s-1.86-.76-2-1.75C6.56 5.13 4 8.27 4 12m8-10a10 10 0 0 1 10 10 2 2 0 0 1-2 2H4a2 2 0 0 1-2-2A10 10 0 0 1 12 2m1.5 15h-3l-.58 2-.27 1h4.7l-.27-1zm1.5-2 1 3.5.27.95.08.55c0 1.1-.9 2-2 2h-4.7l-.48-.06a2.004 2.004 0 0 1-1.44-2.44l.27-1L9 15zm1-8a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2M8 7a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2"/></svg>������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mushroom.svg�������������������������������0000664�0000000�0000000�00000000615�14753064456�0026003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 2 2 0 0 1-2 2H4a2 2 0 0 1-2-2A10 10 0 0 1 12 2m0 6a2 2 0 0 0 2-2 2 2 0 0 0-2-2 2 2 0 0 0-2 2 2 2 0 0 0 2 2m5 4a2 2 0 0 0 2-2 2 2 0 0 0-2-2 2 2 0 0 0-2 2 2 2 0 0 0 2 2M7 12a2 2 0 0 0 2-2 2 2 0 0 0-2-2 2 2 0 0 0-2 2 2 2 0 0 0 2 2m8 3 1.27 4.45.08.55c0 1.1-.9 2-2 2h-4.7a2 2 0 0 1-2-2l.08-.55L9 15z"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-accidental-double-flat.svg�����������0000664�0000000�0000000�00000000567�14753064456�0031541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 9c-.7 0-1.39.28-2 .67V5h-2v4.62c-.46-.38-1.11-.62-2-.62-.7 0-1.39.28-2 .67V5h-2v14c3-1.68 4.93-3.21 6-4.59V19c4.86-2.74 7-5.09 7-7 0-1.41-.71-3-3-3m-8 6.38v-3.12c.62-.67 1.45-1.26 2-1.26.59 0 1 .07 1 1 0 .15-.1 1.3-3 3.38m6 0v-3.12c.62-.67 1.45-1.26 2-1.26.59 0 1 .07 1 1 0 .15-.1 1.3-3 3.38"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-accidental-double-sharp.svg����������0000664�0000000�0000000�00000000250�14753064456�0031715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.41 10H17V7h-3v1.59l-2 2-2-2V7H7v3h1.59l2 2-2 2H7v3h3v-1.59l2-2 2 2V17h3v-3h-1.59l-2-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-accidental-flat.svg������������������0000664�0000000�0000000�00000000335�14753064456�0030262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.5 19c4.86-2.74 7-5.09 7-7 0-1.41-.71-3-3-3-.7 0-1.39.28-2 .67V5h-2m2 10.38v-3.12c.62-.67 1.45-1.26 2-1.26.59 0 1 .07 1 1 0 .15-.1 1.3-3 3.38"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-accidental-natural.svg���������������0000664�0000000�0000000�00000000210�14753064456�0030772�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 8.75V3.5H8v14l6-2.25v5.25h2v-14zm4 4.5-4 1.5v-4l4-1.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-accidental-sharp.svg�����������������0000664�0000000�0000000�00000000327�14753064456�0030452�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 9.5v-2l-2 .6V5.5h-2v3.2l-2 .6V6.5H9v3.4l-2 .6v2l2-.6v2l-2 .6v2l2-.6v2.6h2v-3.2l2-.6v2.8h2v-3.4l2-.6v-2l-2 .6v-2zm-4 3.2-2 .6v-2l2-.6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-box-multiple-outline.svg�������������0000664�0000000�0000000�00000000456�14753064456�0031351�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H8a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2m0 14H8V4h12m-7.5 11a2.5 2.5 0 0 0 2.5-2.5V7h3V5h-4v5.5c-.42-.31-.93-.5-1.5-.5a2.5 2.5 0 0 0-2.5 2.5 2.5 2.5 0 0 0 2.5 2.5M4 6H2v14a2 2 0 0 0 2 2h14v-2H4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-box-multiple.svg���������������������0000664�0000000�0000000�00000000431�14753064456�0027665�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 6H2v14a2 2 0 0 0 2 2h14v-2H4M18 7h-3v5.5a2.5 2.5 0 0 1-2.5 2.5 2.5 2.5 0 0 1-2.5-2.5 2.5 2.5 0 0 1 2.5-2.5c.57 0 1.08.19 1.5.5V5h4m2-3H8a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-box-outline.svg����������������������0000664�0000000�0000000�00000000405�14753064456�0027512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 9h-3v5.5a2.5 2.5 0 0 1-2.5 2.5A2.5 2.5 0 0 1 8 14.5a2.5 2.5 0 0 1 2.5-2.5c.57 0 1.08.19 1.5.5V7h4zm3-6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zM5 5v14h14V5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-box.svg������������������������������0000664�0000000�0000000�00000000371�14753064456�0026037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 9h-3v5.5a2.5 2.5 0 0 1-2.5 2.5A2.5 2.5 0 0 1 8 14.5a2.5 2.5 0 0 1 2.5-2.5c.57 0 1.08.19 1.5.5V7h4m3-4H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-circle-outline.svg�������������������0000664�0000000�0000000�00000000473�14753064456�0030170�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 9h-3v5.5a2.5 2.5 0 0 1-2.5 2.5A2.5 2.5 0 0 1 8 14.5a2.5 2.5 0 0 1 2.5-2.5c.57 0 1.08.19 1.5.5V7h4zm-4-7a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-circle.svg���������������������������0000664�0000000�0000000�00000000402�14753064456�0026503�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 9V7h-4v5.5c-.42-.31-.93-.5-1.5-.5A2.5 2.5 0 0 0 8 14.5a2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5V9zm-4-7a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-clef-alto.svg������������������������0000664�0000000�0000000�00000000362�14753064456�0027115�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 4h2v16H5m10.46-7h-.63l-1-1 1-1h.63a3.5 3.5 0 1 0-3.5-3.5h2a1.5 1.5 0 1 1 1.5 1.5H14l-2 2h-1V4H9v16h2v-7h1l2 2h1.46a1.5 1.5 0 1 1-1.5 1.5h-2a3.5 3.5 0 1 0 3.5-3.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-clef-bass.svg������������������������0000664�0000000�0000000�00000000473�14753064456�0027111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 5A1.5 1.5 0 1 1 17 6.5 1.5 1.5 0 0 1 18.5 5m0 6a1.5 1.5 0 1 1-1.5 1.5 1.5 1.5 0 0 1 1.5-1.5M10 4a5 5 0 0 0-5 5v1a2 2 0 1 0 2.18-2A3 3 0 0 1 10 6a4 4 0 0 1 4 4c0 3.59-2.23 6.19-7 8.2l.76 1.84C13.31 17.72 16 14.43 16 10a6 6 0 0 0-6-6"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-clef-treble.svg����������������������0000664�0000000�0000000�00000001140�14753064456�0027426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 11V7.5l2.2-2.21c.8-.79.95-2.05.39-3.03A2.47 2.47 0 0 0 13.45 1c-.21 0-.45.03-.64.09C11.73 1.38 11 2.38 11 3.5v3.24L7.86 9.91a5.95 5.95 0 0 0-1.25 6.43c.77 1.9 2.45 3.21 4.39 3.55v.61c0 .26-.23.5-.5.5H9v2h1.5c1.35 0 2.5-1.11 2.5-2.5V20c2.03 0 4.16-1.92 4.16-4.75 0-2.3-1.92-4.25-4.16-4.25m0-7.5c0-.23.11-.41.32-.47.22-.06.45.03.56.23a.5.5 0 0 1-.08.61l-.8.86zm-2 8c-.97.64-1.7 1.74-1.96 2.76l1.96.52v3.05a3.86 3.86 0 0 1-2.57-2.26c-.59-1.46-.27-3.12.83-4.24L11 9.5zm2 6.5v-5.06c1.17 0 2.18 1.1 2.18 2.31C15.18 17 13.91 18 13 18"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-note-bluetooth-off.svg���������������0000664�0000000�0000000�00000000564�14753064456�0030773�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 9.85 19.14 7h-.5v3.79L16.35 8.5l-.71.71L18.43 12l-2.79 2.79.71.71 2.29-2.29V17h.5L22 14.15 19.85 12zm-2.36-.94.94.94-.94.94zm.94 5.24-.94.94v-1.88zM1.96 3 .687 4.27l9.003 9v.28c-.59-.34-1.27-.55-2-.55-2.19 0-4 1.79-4 4s1.81 4 4 4 4-1.79 4-4v-1.73L17.42 21l1.27-1.27zm9.73 4h4V3h-6v5.18l2 2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-note-bluetooth.svg�������������������0000664�0000000�0000000�00000000471�14753064456�0030220�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 9.85 19.14 7h-.5v3.79L16.35 8.5l-.71.71L18.43 12l-2.79 2.79.71.71 2.29-2.29V17h.5L22 14.15 19.85 12zm-2.36-.94.94.94-.94.94zm.94 5.24-.94.94v-1.88zM9.64 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-note-eighth-dotted.svg���������������0000664�0000000�0000000�00000000243�14753064456�0030741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3v10.55A4 4 0 1 0 14 17V7h4V3m-1.5 17a1.5 1.5 0 1 1 1.5-1.5 1.5 1.5 0 0 1-1.5 1.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-note-eighth.svg����������������������0000664�0000000�0000000�00000000240�14753064456�0027455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-note-half-dotted.svg�����������������0000664�0000000�0000000�00000000325�14753064456�0030404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 3h-2v10.56a3.96 3.96 0 0 0-2-.56 4 4 0 1 0 4 4zm-4 16a2 2 0 1 1 2-2 2 2 0 0 1-2 2m6.5 1a1.5 1.5 0 1 1 1.5-1.5 1.5 1.5 0 0 1-1.5 1.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-note-half.svg������������������������0000664�0000000�0000000�00000000243�14753064456�0027122�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 3h-2v10.56a3.96 3.96 0 0 0-2-.56 4 4 0 1 0 4 4zm-4 16a2 2 0 1 1 2-2 2 2 0 0 1-2 2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-note-minus.svg�����������������������0000664�0000000�0000000�00000000255�14753064456�0027346�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 12v2h8v-2zM9 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-note-off-outline.svg�����������������0000664�0000000�0000000�00000000402�14753064456�0030434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 7h4V3h-6v4.61l2 2m-2 .83L4.41 2.86 3 4.27l9 9v.28a3.94 3.94 0 0 0-3.33-.32 4 4 0 0 0 1.98 7.72 4.1 4.1 0 0 0 3.35-4.1v-1.58L19.73 21l1.41-1.41M10 19a2 2 0 1 1 2-2 2 2 0 0 1-2 2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-note-off.svg�������������������������0000664�0000000�0000000�00000000323�14753064456�0026761�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.27 3 3 4.27l9 9v.28c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4v-1.73L19.73 21 21 19.73zM14 7h4V3h-6v5.18l2 2Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-note-outline.svg���������������������0000664�0000000�0000000�00000000221�14753064456�0027663�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3v10.55A4 4 0 1 0 14 17V7h4V3m-8 16a2 2 0 1 1 2-2 2 2 0 0 1-2 2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-note-plus.svg������������������������0000664�0000000�0000000�00000000277�14753064456�0027202�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 9v3h-3v2h3v3h2v-3h3v-2h-3V9zM9 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-note-quarter-dotted.svg��������������0000664�0000000�0000000�00000000264�14753064456�0031157�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 13v.56a3.96 3.96 0 0 0-2-.56 4 4 0 1 0 4 4V3h-2m4.5 14a1.5 1.5 0 1 1-1.5 1.5 1.5 1.5 0 0 1 1.5-1.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-note-quarter.svg���������������������0000664�0000000�0000000�00000000234�14753064456�0027673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 3v10.56c-.59-.35-1.27-.56-2-.56-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-note-sixteenth-dotted.svg������������0000664�0000000�0000000�00000000257�14753064456�0031511�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 18.5a1.5 1.5 0 1 1-1.5-1.5 1.5 1.5 0 0 1 1.5 1.5M18 7V3h-6v10.55A4 4 0 1 0 14 17v-6h4V8h-4V7Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-note-sixteenth.svg�������������������0000664�0000000�0000000�00000000253�14753064456�0030224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 7V3h-6v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4v-6h4V8h-4V7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-note-whole-dotted.svg����������������0000664�0000000�0000000�00000000302�14753064456�0030603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 15a2 2 0 1 1-2 2 2 2 0 0 1 2-2m0-2a4 4 0 1 0 4 4 4 4 0 0 0-4-4m6.5 4a1.5 1.5 0 1 1-1.5 1.5 1.5 1.5 0 0 1 1.5-1.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-note-whole.svg�����������������������0000664�0000000�0000000�00000000220�14753064456�0027321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 15a2 2 0 1 1-2 2 2 2 0 0 1 2-2m0-2a4 4 0 1 0 4 4 4 4 0 0 0-4-4"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-note.svg�����������������������������0000664�0000000�0000000�00000000240�14753064456�0026207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-off.svg������������������������������0000664�0000000�0000000�00000000515�14753064456�0026021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5.27 3.28 4 20 20.72 18.73 22 9 12.27v5.23A3.5 3.5 0 0 1 5.5 21 3.5 3.5 0 0 1 2 17.5 3.5 3.5 0 0 1 5.5 14c.54 0 1.05.12 1.5.34v-4.07zM21 3v12.5c0 1-.43 1.92-1.12 2.56l-4.94-4.94c.64-.69 1.56-1.12 2.56-1.12.54 0 1.05.12 1.5.34V6.47l-8.83 1.88-2.51-2.51z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-rest-eighth.svg����������������������0000664�0000000�0000000�00000000253�14753064456�0027471�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 6a5.56 5.56 0 0 1-3.05 1.86A1.5 1.5 0 1 0 9.5 9h.24a6.3 6.3 0 0 0 3.51-1.07L10 18h2l4-12Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-rest-half.svg������������������������0000664�0000000�0000000�00000000143�14753064456�0027131�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 14h2v-4h8v4h2v1H6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-rest-quarter.svg���������������������0000664�0000000�0000000�00000000541�14753064456�0027704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.71 16.81c-.8.79-.83 2.03-.07 2.77L10.19 21c-1.53-1.5-1.47-3.97.13-5.54.53-.52 1.18-.85 1.84-1.04L9 11.34l1.45-1.42.37-.35c1-.98 1.03-2.53.08-3.46L9.16 4.42 10.62 3l4.16 4.06c.76.75.72 1.99-.07 2.77l-2.18 2.12L16 15.33l-.39.39c-.5.49-1.23.74-1.89.56-.68-.18-1.46 0-2.01.53"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-rest-sixteenth.svg�������������������0000664�0000000�0000000�00000000377�14753064456�0030243�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 3a5.56 5.56 0 0 1-3.05 1.86A1.5 1.5 0 1 0 10.5 6h.24a6.3 6.3 0 0 0 3.51-1.07L12.9 9.1a5.56 5.56 0 0 1-2.95 1.76A1.5 1.5 0 1 0 8.5 12h.24a6.3 6.3 0 0 0 3.51-1.07L9 21h2l6-18Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music-rest-whole.svg�����������������������0000664�0000000�0000000�00000000146�14753064456�0027340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 10h-2v4H8v-4H6V9h12z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/music.svg����������������������������������0000664�0000000�0000000�00000000425�14753064456�0025251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 3v12.5a3.5 3.5 0 0 1-3.5 3.5 3.5 3.5 0 0 1-3.5-3.5 3.5 3.5 0 0 1 3.5-3.5c.54 0 1.05.12 1.5.34V6.47L9 8.6v8.9A3.5 3.5 0 0 1 5.5 21 3.5 3.5 0 0 1 2 17.5 3.5 3.5 0 0 1 5.5 14c.54 0 1.05.12 1.5.34V6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/mustache.svg�������������������������������0000664�0000000�0000000�00000000270�14753064456�0025740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 12c-2 0-3-3-6-3s-3 2-3 2 0-2-3-2-4 3-6 3c-1 0-2-1-2-1s1 5 5 5c5 0 6-3 6-3s1 3 6 3c4 0 5-5 5-5s-1 1-2 1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/nail.svg�����������������������������������0000664�0000000�0000000�00000000165�14753064456�0025055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.5 5v11L12 22l-1.5-6V5zM17 2H7v2h10z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/nas.svg������������������������������������0000664�0000000�0000000�00000000455�14753064456�0024715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 5c-1.11 0-2 .89-2 2v10c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V7c0-1.11-.89-2-2-2zm.5 2a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1M7 7h13v10H7zm1 1v8h3V8zm4 0v8h3V8zm4 0v8h3V8zM9 9h1v1H9zm4 0h1v1h-1zm4 0h1v1h-1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/nativescript.svg���������������������������0000664�0000000�0000000�00000000575�14753064456�0026652�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 3h9C19 3 21 5 21 7.5v9c0 2.5-2 4.5-4.5 4.5h-9C5 21 3 19 3 16.5v-9C3 5 5 3 7.5 3M6 13.5v3A1.5 1.5 0 0 0 7.5 18H9v-7.5l6 7.5h1.5a1.5 1.5 0 0 0 1.5-1.5v-3a1.5 1.5 0 0 1 1.5-1.5 1.5 1.5 0 0 1-1.5-1.5v-3A1.5 1.5 0 0 0 16.5 6H15v7.5L9 6H7.5A1.5 1.5 0 0 0 6 7.5v3A1.5 1.5 0 0 1 4.5 12 1.5 1.5 0 0 1 6 13.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/nature-outline.svg�������������������������0000664�0000000�0000000�00000000440�14753064456�0027101�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.08 14.22.69-.09a4.998 4.998 0 0 0-.6-9.96c-1.33 0-2.6.53-3.54 1.46-.93.94-1.46 2.21-1.46 3.54 0 2.47 1.79 4.52 4.16 4.92zm.92 1.9V20h6v2H5v-2h6v-3.94c-3.31-.56-5.83-3.42-5.83-6.89A7.001 7.001 0 1 1 13 16.12"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/nature-people-outline.svg������������������0000664�0000000�0000000�00000001013�14753064456�0030360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 20v-3.88a7 7 0 0 0 6.17-6.95c0-3.87-3.13-7-7-7a7 7 0 0 0-7 7 6.96 6.96 0 0 0 .76 3.16A7 7 0 0 0 14 16.06V20H6v-3h1v-4.05c0-.23-.11-.45-.26-.62l-.03-.04-.05-.04A.95.95 0 0 0 6 12H3c-.24 0-.5.09-.66.25l-.05.04c-.18.21-.29.45-.29.71v4h1v5h16v-2zm-.92-5.78-.75-.13a4.99 4.99 0 0 1-4.16-4.92c0-1.33.53-2.6 1.46-3.54.94-.93 2.22-1.46 3.54-1.46a4.998 4.998 0 0 1 .6 9.96l-.69.08M4.5 11c.83 0 1.5-.67 1.5-1.5S5.33 8 4.5 8 3 8.67 3 9.5 3.67 11 4.5 11"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/nature-people.svg��������������������������0000664�0000000�0000000�00000000500�14753064456�0026703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.5 11A1.5 1.5 0 0 0 6 9.5 1.5 1.5 0 0 0 4.5 8 1.5 1.5 0 0 0 3 9.5 1.5 1.5 0 0 0 4.5 11m17.67-1.83c0-3.87-3.13-7-7-7a7 7 0 0 0-7 7c0 3.47 2.52 6.33 5.83 6.89V20H6v-3h1v-4a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v4h1v5h16v-2h-3v-3.88a7 7 0 0 0 6.17-6.95"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/nature.svg���������������������������������0000664�0000000�0000000�00000000267�14753064456�0025433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 16.12a7 7 0 0 0 6.17-6.95c0-3.87-3.13-7-7-7a7 7 0 0 0-7 7c0 3.47 2.52 6.33 5.83 6.89V20H5v2h14v-2h-6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/navigation-outline.svg���������������������0000664�0000000�0000000�00000000240�14753064456�0027740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 7.3 4.3 10.4-3.5-1.5-.8-.4-.8.4-3.5 1.5zM12 2 4.5 20.3l.7.7 6.8-3 6.8 3 .7-.7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/navigation-variant-outline.svg�������������0000664�0000000�0000000�00000000261�14753064456�0031405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.27 6.73-4.24 10.13-1.32-3.42-.32-.83-.82-.32-3.43-1.33zM21 3 3 10.53v.97l6.84 2.66L12.5 21h.96z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/navigation-variant.svg���������������������0000664�0000000�0000000�00000000166�14753064456�0027734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 3 3 10.53v.97l6.84 2.66L12.5 21h.96z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/navigation.svg�����������������������������0000664�0000000�0000000�00000000172�14753064456�0026267�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2 4.5 20.29l.71.71L12 18l6.79 3 .71-.71z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/near-me.svg��������������������������������0000664�0000000�0000000�00000000166�14753064456�0025457�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 3 3 10.53v.97l6.84 2.66L12.5 21h.96z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/necklace.svg�������������������������������0000664�0000000�0000000�00000000364�14753064456�0025700�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.5 5h-2c0 4.14-3.36 7.5-7.5 7.5S4.5 9.14 4.5 5h-2c.05 5.11 4.09 9.29 9.2 9.5-.6.9-1.7 2.7-1.7 3.5 0 2.67 4 2.67 4 0 0-.8-1.1-2.6-1.7-3.5 5.11-.21 9.15-4.39 9.2-9.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/needle-off.svg�����������������������������0000664�0000000�0000000�00000000545�14753064456�0026140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3 8 9.9l-3.9 3.9 2.1 2.1L3.1 19v2.8l4.5-4.5 2.1 2.1 3.9-3.9 7.2 7.2zm-10.9-6.3-1.4 1.4L7 13.8l2.5-2.5 1.4 1.4-1.1 1.1zm.7-6.5-1.4-1.4L14 3.9 16.1 6l1.4-1.4-1.4-1.4 1.4-1.4L21.8 6l-1.4 1.4L18.9 6l-1.4 1.4 2.1 2.1-3.4 3.5-2.8-2.8.6-.7 1.4 1.4 1.4-1.4L14 6.7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/needle.svg���������������������������������0000664�0000000�0000000�00000000533�14753064456�0025365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.15 15.18-1.42-1.41 1.42-1.42 1.41 1.42 1.41-1.42-1.41-1.41 1.41-1.41 1.42 1.41 1.41-1.41-2.83-2.83-7.07 7.07 2.83 2.83zM3.08 19l3.12-3.11-2.12-2.12 9.89-9.9L16.1 6l1.4-1.42-1.4-1.42 1.4-1.41L21.75 6l-1.41 1.4L18.92 6 17.5 7.4l2.13 2.13-9.9 9.89-2.12-2.12-4.53 4.54z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/netflix.svg��������������������������������0000664�0000000�0000000�00000000262�14753064456�0025601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 2h4l2.94 8.83L13.5 2h4v20c-1.25-.22-2.63-.36-4.09-.42L10.5 13l-.07 8.59c-1.4.06-2.73.2-3.93.41z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/network-off-outline.svg��������������������0000664�0000000�0000000�00000000566�14753064456�0030055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.04 5.27 5 9.23V15a2 2 0 0 0 2 2h4v2h-1a1 1 0 0 0-1 1H2v2h7a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1h2.77l2 2 1.27-1.28L2.32 4zM7 11.23 10.77 15H7zM15 20a1 1 0 0 0-1-1h-1v-1.77L15.77 20zm7 0v1.14L20.86 20zM7 6.14 5.14 4.28C5.43 3.53 6.16 3 7 3h10a2 2 0 0 1 2 2v10c0 .85-.53 1.57-1.28 1.86L15.86 15H17V5H7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/network-off.svg����������������������������0000664�0000000�0000000�00000000517�14753064456�0026374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m1 5.27 4 4V15a2 2 0 0 0 2 2h4v2h-1a1 1 0 0 0-1 1H2v2h7a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1h2.73l2 2L21 22.72 2.28 4zM15 20a1 1 0 0 0-1-1h-1v-1.73L15.73 20zm2.69-3.13L5.13 4.31C5.41 3.55 6.14 3 7 3h10a2 2 0 0 1 2 2v10c0 .86-.55 1.59-1.31 1.87M22 20v1.18L20.82 20z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/network-outline.svg������������������������0000664�0000000�0000000�00000000366�14753064456�0027303�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 20a1 1 0 0 0-1-1h-1v-2h4a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h4v2h-1a1 1 0 0 0-1 1H2v2h7a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1h7v-2zm-8-5V5h10v10z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/network-pos.svg����������������������������0000664�0000000�0000000�00000000532�14753064456�0026420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 9H8V7h9zM7 7H5v2h2zm0-3H5v2h2zm3 0H8v2h2zm3 13v2h1c.55 0 1 .45 1 1h7v2h-7c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1H2v-2h7c0-.55.45-1 1-1h1v-2H4c-1.11 0-2-.89-2-2V3a2 2 0 0 1 2-2h16c1.11 0 2 .89 2 2v12c0 1.11-.89 2-2 2zm7-2V3H4v12zm-9-9h8V4h-8zm-6 6h6v-2H5zm8 2h6v-2h-6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/network-strength-1-alert.svg���������������0000664�0000000�0000000�00000000206�14753064456�0030716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 1 1 21h16v-2h-6v-5.2l8-8V9h2m-2 2v6h2v-6m-2 8v2h2v-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/network-strength-1.svg���������������������0000664�0000000�0000000�00000000154�14753064456�0027613�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 21h20V1m-2 4.83V19h-8v-5.17"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/network-strength-2-alert.svg���������������0000664�0000000�0000000�00000000206�14753064456�0030717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 1 1 21h16v-2h-4v-7.2l6-6V9h2m-2 2v6h2v-6m-2 8v2h2v-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/network-strength-2.svg���������������������0000664�0000000�0000000�00000000154�14753064456�0027614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 21h20V1m-2 4.83V19h-6v-7.17"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/network-strength-3-alert.svg���������������0000664�0000000�0000000�00000000205�14753064456�0030717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 1 1 21h16v-2h-1V8.8l3-3V9h2m-2 2v6h2v-6m-2 8v2h2v-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/network-strength-3.svg���������������������0000664�0000000�0000000�00000000153�14753064456�0027614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 21h20V1m-2 4.83V19h-3V8.83"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/network-strength-4-alert.svg���������������0000664�0000000�0000000�00000000167�14753064456�0030727�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 17h2v-6h-2m0 10h2v-2h-2M1 21h16V9h4V1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/network-strength-4-cog.svg�����������������0000664�0000000�0000000�00000001127�14753064456�0030365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 13c-.1 0-.2.1-.3.2l-.2 1.3c-.3.1-.6.3-.8.5l-1.2-.5c-.1 0-.2 0-.3.1l-1 1.7c-.1.1 0 .2.1.3l1.1.8v1l-1.1.8c-.1.1-.1.2-.1.3l1 1.7c.1.1.2.1.3.1l1.2-.5c.3.2.5.4.8.5l.2 1.3c0 .1.1.2.3.2h2c.1 0 .2-.1.2-.2l.2-1.3c.3-.1.6-.3.8-.5l1.2.5c.1 0 .3 0 .3-.1l1-1.7c.1-.1 0-.2-.1-.3l-1.1-.8v-1l1.1-.8c.1-.1.1-.2.1-.3l-1-1.7c-.1-.1-.2-.1-.3-.1l-1.1.5c-.3-.2-.5-.4-.9-.5l-.2-1.3c0-.1-.1-.2-.2-.2zm1 3.5c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5-1.5-.7-1.5-1.5.7-1.5 1.5-1.5M11.7 21H1L21 1v10.7c-.9-.4-1.9-.7-3-.7-3.9 0-7 3.1-7 7 0 1.1.2 2.1.7 3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/network-strength-4.svg���������������������0000664�0000000�0000000�00000000130�14753064456�0027610�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 21h20V1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/network-strength-off-outline.svg�����������0000664�0000000�0000000�00000000300�14753064456�0031673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21 1-8.6 8.6 1.45 1.45L19 5.83v10.36l2 2M4.77 4.5 3.5 5.77l6.36 6.36L1 21h17.73l2 2L22 21.73M11.33 13.6l5.4 5.4H6"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/network-strength-off.svg�������������������0000664�0000000�0000000�00000000230�14753064456�0030220�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21 1-8.6 8.6 8.6 8.59M4.77 4.5 3.5 5.77l6.36 6.36L1 21h17.73l2 2L22 21.73"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/network-strength-outline.svg���������������0000664�0000000�0000000�00000000145�14753064456�0031132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 21h20V1m-2 4.83V19H6"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/network.svg��������������������������������0000664�0000000�0000000�00000000350�14753064456�0025617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 3a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-4v2h1a1 1 0 0 1 1 1h7v2h-7a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1H2v-2h7a1 1 0 0 1 1-1h1v-2H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/new-box.svg��������������������������������0000664�0000000�0000000�00000000526�14753064456�0025512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4c1.11 0 2 .89 2 2v12c0 1.11-.89 2-2 2H4c-1.11 0-2-.89-2-2V6c0-1.11.89-2 2-2zM8.5 15V9H7.25v3.5L4.75 9H3.5v6h1.25v-3.5L7.3 15zm5-4.74V9h-4v6h4v-1.25H11v-1.11h2.5v-1.26H11v-1.12zm7 3.74V9h-1.25v4.5h-1.12V10h-1.25v3.5h-1.13V9H14.5v5a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/newspaper-check.svg������������������������0000664�0000000�0000000�00000000572�14753064456�0027213�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.33 4.67 18.67 3 17 4.67 15.33 3l-1.66 1.67L12 3l-1.67 1.67L8.67 3 7 4.67 5.33 3 3.67 4.67 2 3v16a2 2 0 0 0 2 2h8.8c-.51-.88-.8-1.91-.8-3 0-1.23.37-2.37 1-3.32V13h1.68c.95-.63 2.09-1 3.32-1 1.53 0 2.93.58 4 1.5V3zM11 19H4v-6h7zm9-8H4V8h16zm-3.25 10.16-2.75-3L15.16 17l1.59 1.59L20.34 15l1.16 1.41z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/newspaper-minus.svg������������������������0000664�0000000�0000000�00000000515�14753064456�0027266�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 17v2h-8v-2zm-2-6V8H4v3zm-7 2v1.68c-.63.95-1 2.09-1 3.32 0 1.09.29 2.12.8 3H4a2 2 0 0 1-2-2V3l1.67 1.67L5.33 3 7 4.67 8.67 3l1.66 1.67L12 3l1.67 1.67L15.33 3 17 4.67 18.67 3l1.66 1.67L22 3v10.5a6.14 6.14 0 0 0-4-1.5c-1.23 0-2.37.37-3.32 1zm-2 6v-6H4v6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/newspaper-plus.svg�������������������������0000664�0000000�0000000�00000000537�14753064456�0027122�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 14h2v3h3v2h-3v3h-2v-3h-3v-2h3zm3-3V8H4v3zm-7 2v1.68c-.63.95-1 2.09-1 3.32 0 1.09.29 2.12.8 3H4a2 2 0 0 1-2-2V3l1.67 1.67L5.33 3 7 4.67 8.67 3l1.66 1.67L12 3l1.67 1.67L15.33 3 17 4.67 18.67 3l1.66 1.67L22 3v10.5a6.14 6.14 0 0 0-4-1.5c-1.23 0-2.37.37-3.32 1zm-2 6v-6H4v6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/newspaper-remove.svg�����������������������0000664�0000000�0000000�00000000667�14753064456�0027440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.12 14.46 1.42 1.42L19.41 18l2.13 2.12-1.42 1.42L18 19.41l-2.12 2.13-1.41-1.42L16.59 18l-2.12-2.12 1.41-1.41L18 16.59zm.21-9.79L18.67 3 17 4.67 15.33 3l-1.66 1.67L12 3l-1.67 1.67L8.67 3 7 4.67 5.33 3 3.67 4.67 2 3v16a2 2 0 0 0 2 2h8.8c-.51-.88-.8-1.91-.8-3 0-1.23.37-2.37 1-3.32V13h1.68c.95-.63 2.09-1 3.32-1 1.53 0 2.93.58 4 1.5V3zM11 19H4v-6h7zm9-8H4V8h16z"/></svg>�������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/newspaper-variant-multiple-outline.svg�����0000664�0000000�0000000�00000000432�14753064456�0033103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 7v12h15v2H4c-2 0-2-2-2-2V7zm17-2v10H8V5zm.3-2H7.7C6.76 3 6 3.7 6 4.55v10.9c0 .86.76 1.55 1.7 1.55h13.6c.94 0 1.7-.69 1.7-1.55V4.55C23 3.7 22.24 3 21.3 3M9 6h3v5H9zm11 8H9v-2h11zm0-6h-6V6h6zm0 3h-6V9h6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/newspaper-variant-multiple.svg�������������0000664�0000000�0000000�00000000420�14753064456�0031423�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 7v12h15v2H4c-2 0-2-2-2-2V7zm17.3-4H7.7C6.76 3 6 3.7 6 4.55v10.9c0 .86.76 1.55 1.7 1.55h13.6c.94 0 1.7-.69 1.7-1.55V4.55C23 3.7 22.24 3 21.3 3M8 5h5v6H8zm13 10H8v-2h13zm0-4h-6V9h6zm0-4h-6V5h6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/newspaper-variant-outline.svg��������������0000664�0000000�0000000�00000000337�14753064456�0031256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 5v14H4V5zm0-2H4c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2m-2 12H6v2h12zm-8-8H6v6h4zm2 2h6V7h-6zm6 2h-6v2h6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/newspaper-variant.svg����������������������0000664�0000000�0000000�00000000324�14753064456�0027575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 3H4c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2M5 7h5v6H5zm14 10H5v-2h14zm0-4h-7v-2h7zm0-4h-7V7h7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/newspaper.svg������������������������������0000664�0000000�0000000�00000000404�14753064456�0026132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11H4V8h16m0 7h-7v-2h7m0 6h-7v-2h7m-9 2H4v-6h7m9.33-8.33L18.67 3 17 4.67 15.33 3l-1.66 1.67L12 3l-1.67 1.67L8.67 3 7 4.67 5.33 3 3.67 4.67 2 3v16a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/nfc-search-variant.svg���������������������0000664�0000000�0000000�00000001130�14753064456�0027576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 12c2.5 0 4.5 2 4.5 4.5 0 .88-.24 1.71-.68 2.4L23.4 22 22 23.39l-3.11-3.07c-.69.43-1.51.68-2.39.68-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5m0 2a2.5 2.5 0 0 0-2.5 2.5 2.5 2.5 0 0 0 2.5 2.5c1.39 0 2.5-1.12 2.5-2.5a2.5 2.5 0 0 0-2.5-2.5M18 6v4.18c-.67-.18-1.34-.21-2-.18V8h-3v2.28l.53.44a6.47 6.47 0 0 0-2.81 2.81c-.44-.36-.72-.91-.72-1.53 0-.74.41-1.38 1-1.72V8a2 2 0 0 1 2-2zM6 18V6h4v2H8v8h2c-.04.68 0 1.35.17 2zM20 4H4v16h7c.53.8 1.21 1.5 2.03 2H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v9.04c-.5-.8-1.18-1.5-2-2.04z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/nfc-tap.svg��������������������������������0000664�0000000�0000000�00000000455�14753064456�0025464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2M4 4h7a2 2 0 0 1 2 2v3h-2V6H4v5h2V9l3 3-3 3v-2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2m16 16h-7a2 2 0 0 1-2-2v-3h2v3h7v-5h-2v2l-3-3 3-3v2h2a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/nfc-variant-off.svg������������������������0000664�0000000�0000000�00000000474�14753064456�0027115�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m1.25 2.05 20.7 20.7L20.7 24l-2-2H4a2 2 0 0 1-2-2V5.3l-2-2zM3.81 2H20c1.11 0 2 .89 2 2v16.19l-2-1.99V4H5.8zM6 9.3l-2-2V20h12.7l-2-2H6zm12 6.9-2-2V8h-3v2.28c.6.34 1 .98 1 1.72v.19L11 9.2V8a2 2 0 0 1 2-2h5zM8 16h4.7L8 11.3zm2-8h-.2l-2-2H10z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/nfc-variant.svg����������������������������0000664�0000000�0000000�00000000431�14753064456�0026336�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 6h-5a2 2 0 0 0-2 2v2.28c-.59.34-1 .98-1 1.72a2 2 0 0 0 2 2 2 2 0 0 0 2-2c0-.74-.4-1.38-1-1.72V8h3v8H8V8h2V6H6v12h12m2 2H4V4h16m0-2H4a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V4c0-1.11-.89-2-2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/nfc.svg������������������������������������0000664�0000000�0000000�00000001267�14753064456�0024704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.24 2c-1.64 0-3.28 0-3.69.04-.88.05-1.47.69-1.51 1.52-.04.81-.04 16.03 0 16.85.05.82.67 1.45 1.51 1.5.91.05 3.89.06 4.74.06-1.53-1.06-1.74-3.05-1.88-6.74-.08-2.19-.01-9.87 0-10.19l.04-2.1L14.5 11v2.5L8.09 7.11c-.01 1.27-.03 2.92-.03 4.43 0 1.46.02 2.8.06 3.51.24 4.02.62 5.91 2.71 6.65.67.23 1.24.3 2.24.3.82 0 6.56 0 7.38-.04.88-.05 1.48-.69 1.52-1.52.03-.81.03-15.99 0-16.82-.06-.82-.68-1.44-1.52-1.49-.91-.05-3.88-.1-4.74-.1 1.53 1.06 1.73 3.05 1.88 6.75.08 2.19.01 9.86 0 10.19l-.04 2.09L9.53 13v-2.5l6.38 6.39c.01-1.27.03-2.92.03-4.43 0-1.46-.02-2.8-.06-3.5-.24-4.03-.62-5.92-2.71-6.66-.64-.23-1.24-.3-2.24-.3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ninja.svg����������������������������������0000664�0000000�0000000�00000000734�14753064456�0025233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.75 13c-.01-.35.15-.69.42-.92.75.16 1.45.47 2.08.92 0 .68-.56 1.24-1.25 1.24S7.76 13.69 7.75 13m6 0c.63-.44 1.33-.75 2.08-.91.27.23.43.57.42.91 0 .7-.56 1.26-1.25 1.26s-1.25-.56-1.25-1.26M12 9c-2.77-.04-5.5.65-7.93 2L4 12c0 1.23.29 2.44.84 3.54a47.6 47.6 0 0 1 14.32 0c.55-1.1.84-2.31.84-3.54l-.07-1A15.85 15.85 0 0 0 12 9m0-7a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/nintendo-game-boy.svg����������������������0000664�0000000�0000000�00000000451�14753064456�0027444�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 1c-1.1 0-2 .9-2 2v18a2 2 0 0 0 2 2h7c2.76 0 5-2.24 5-5V3a2 2 0 0 0-2-2zm1 3h8v7H8zm1 10h1v2h2v1h-2v2H9v-2H7v-1h2zm7 1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m-2 2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/nintendo-switch.svg������������������������0000664�0000000�0000000�00000001022�14753064456�0027240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.04 20.4H7.12c-.93 0-1.82-.4-2.48-1.04C4 18.7 3.6 17.81 3.6 16.88V7.12c0-.93.4-1.82 1.04-2.48C5.3 4 6.19 3.62 7.12 3.62h2.92zM7.12 2A5.12 5.12 0 0 0 2 7.12v9.76C2 19.71 4.29 22 7.12 22h4.53V2zM5.11 8c0 1.04.84 1.88 1.89 1.88 1.03 0 1.87-.84 1.87-1.88S8.03 6.12 7 6.12c-1.05 0-1.89.84-1.89 1.88m12.5 3c1.11 0 2.01.89 2.01 2 0 1.12-.9 2-2.01 2s-2.03-.88-2.03-2c0-1.11.92-2 2.03-2m-.73 11A5.12 5.12 0 0 0 22 16.88V7.12C22 4.29 19.71 2 16.88 2h-3.23v20z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/nintendo-wii.svg���������������������������0000664�0000000�0000000�00000001026�14753064456�0026533�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.84 16.94h-1.87v-6.15h1.87zM18 8.58c0 .61-.5 1.11-1.1 1.11a1.11 1.11 0 0 1-1.11-1.11c0-.62.5-1.12 1.11-1.12.6 0 1.1.5 1.1 1.12m3.82 8.36h-1.88v-6.15h1.88zM22 8.58c0 .61-.5 1.11-1.12 1.11a1.11 1.11 0 0 1-1.11-1.11 1.116 1.116 0 1 1 2.23 0m-9.1-.53h2l-2.12 7.45s-.28 1.54-1.5 1.54c-1.21 0-1.49-1.54-1.49-1.54l-1.34-4.86-1.34 4.86s-.29 1.54-1.5 1.54-1.49-1.54-1.49-1.54L2 8.05h2l1.72 6.62L7.11 9.3c.32-1.35 1.34-1.33 1.34-1.33s1.02-.02 1.34 1.33l1.38 5.37z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/nintendo-wiiu.svg��������������������������0000664�0000000�0000000�00000000442�14753064456�0026721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 15.96c0 2.23 1.54 3.54 3.79 3.54h12.78c1.9 0 3.43-1.3 3.43-3.18V6.97c0-1.14-.85-2.37-1.89-2.37h-2.96v7.7c0 5.84-10.18 5.79-10.18.11V4.5H4.72C3.26 4.5 2 5.41 2 6.85zm7.34-4.73c0 4.51 5.32 3.86 5.32.71V4.5H9.34z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/nix.svg������������������������������������0000664�0000000�0000000�00000000653�14753064456�0024732�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.9 8.7 5 17.2l-1.1-1.9L5.2 13H2.6L2 12l.6-1h3.7l1.3-2.3zm.3 6.8h9.7l-1.1 1.9h-2.6l1.3 2.3-.6 1h-1.1L14 17.4h-2.7zm5.7-3.7L11 3.3h2.2l1.3 2.3 1.3-2.3h1.1l.6 1-1.9 3.2L17 9.8zm-2.1-3.3H4l1.1-1.9h2.6L6.4 4.3l.6-1h1.1L10 6.5h2.7zm.3 6.8L19 6.8l1.1 1.9-1.3 2.3h2.6l.6 1-.6 1h-3.7l-1.3 2.3zm-6-3.1 4.9 8.4h-2.2l-1.3-2.3-1.1 2.3H7.1l-.6-1 1.9-3.2L7 14.2z"/></svg>�������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/nodejs.svg���������������������������������0000664�0000000�0000000�00000002075�14753064456�0025416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1.85c-.27 0-.55.07-.78.2l-7.44 4.3c-.48.28-.78.8-.78 1.36v8.58c0 .56.3 1.08.78 1.36l1.95 1.12c.95.46 1.27.47 1.71.47 1.4 0 2.21-.85 2.21-2.33V8.44c0-.12-.1-.22-.22-.22H8.5c-.13 0-.23.1-.23.22v8.47c0 .66-.68 1.31-1.77.76L4.45 16.5a.26.26 0 0 1-.11-.21V7.71c0-.09.04-.17.11-.21l7.44-4.29c.06-.04.16-.04.22 0l7.44 4.29c.07.04.11.12.11.21v8.58c0 .08-.04.16-.11.21l-7.44 4.29c-.06.04-.16.04-.23 0L10 19.65c-.08-.03-.16-.04-.21-.01-.53.3-.63.36-1.12.51-.12.04-.31.11.07.32l2.48 1.47q.36.21.78.21t.78-.21l7.44-4.29c.48-.28.78-.8.78-1.36V7.71c0-.56-.3-1.08-.78-1.36l-7.44-4.3c-.23-.13-.5-.2-.78-.2M14 8c-2.12 0-3.39.89-3.39 2.39 0 1.61 1.26 2.08 3.3 2.28 2.43.24 2.62.6 2.62 1.08 0 .83-.67 1.18-2.23 1.18-1.98 0-2.4-.49-2.55-1.47a.226.226 0 0 0-.22-.18h-.96c-.12 0-.21.09-.21.22 0 1.24.68 2.74 3.94 2.74 2.35 0 3.7-.93 3.7-2.55 0-1.61-1.08-2.03-3.37-2.34-2.31-.3-2.54-.46-2.54-1 0-.45.2-1.05 1.91-1.05 1.5 0 2.09.33 2.32 1.36.02.1.11.17.21.17h.97c.05 0 .11-.02.15-.07.04-.04.07-.1.05-.16C17.56 8.82 16.38 8 14 8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/noodles.svg��������������������������������0000664�0000000�0000000�00000000421�14753064456�0025570�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 3 10 4.41V6h12v1H10v5h12c0 1.81-.57 3.46-1.68 4.95s-2.55 2.58-4.32 3.3V22H8v-1.75c-1.76-.72-3.21-1.82-4.32-3.3S2 13.81 2 12h3V4l17-2zM6 4.88V6h1V4.78zM6 7v5h1V7zm3 5V7H8v5zm0-6V4.55l-1 .09V6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/not-equal-variant.svg����������������������0000664�0000000�0000000�00000000273�14753064456�0027501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.08 4.61 1.84.79L14.8 8H19v2h-5.05l-1.72 4H19v2h-7.62l-1.46 3.4-1.84-.79L9.2 16H5v-2h5.06l1.71-4H5V8h7.63z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/not-equal.svg������������������������������0000664�0000000�0000000�00000000202�14753064456�0026027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 10H9V8h12zm0 6H9v-2h12zM4 5h2v11H4zm2 13v2H4v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/note-alert-outline.svg���������������������0000664�0000000�0000000�00000000316�14753064456�0027657�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V9l-6-6zm14 16H3V5h7v7h7zm-5-9V4.5l5.5 5.5zm11-3v6h-2V7zm-2 8h2v2h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/note-alert.svg�����������������������������0000664�0000000�0000000�00000000274�14753064456�0026205�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V9l-6-6zm9 7V4.5l5.5 5.5zm11-3v6h-2V7zm-2 8h2v2h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/note-check-outline.svg���������������������0000664�0000000�0000000�00000000404�14753064456�0027623�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 19V5h7v7h7v1c.7 0 1.37.13 2 .35V9l-6-6H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h8.35c-.22-.63-.35-1.3-.35-2zm9-14.5 5.5 5.5H14zm8.5 12.75L17.75 22 15 19l1.16-1.16 1.59 1.59 3.59-3.59z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/note-check.svg�����������������������������0000664�0000000�0000000�00000000414�14753064456�0026147�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13c.7 0 1.37.13 2 .35V9l-6-6H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h8.35c-.22-.63-.35-1.3-.35-2 0-3.31 2.69-6 6-6m-5-8.5 5.5 5.5H14zm8.5 12.75L17.75 22 15 19l1.16-1.16 1.59 1.59 3.59-3.59z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/note-edit-outline.svg����������������������0000664�0000000�0000000�00000000503�14753064456�0027473�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.13 12 1.26-1.26c.44-.44 1-.68 1.61-.74V9l-6-6H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h6v-1.87l.13-.13H5V5h7v7zM14 4.5l5.5 5.5H14zm5.13 9.33 2.04 2.04L15.04 22H13v-2.04zm3.72.36-.98.98-2.04-2.04.98-.98c.19-.2.52-.2.72 0l1.32 1.32c.2.2.2.53 0 .72"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/note-edit.svg������������������������������0000664�0000000�0000000�00000000461�14753064456�0026021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 10V9l-6-6H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h6v-1.87l8.39-8.39c.44-.44 1-.68 1.61-.74m-7-5.5 5.5 5.5H14zm8.85 9.69-.98.98-2.04-2.04.98-.98c.19-.2.52-.2.72 0l1.32 1.32c.2.2.2.53 0 .72m-3.72-.36 2.04 2.04L15.04 22H13v-2.04z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/note-minus-outline.svg���������������������0000664�0000000�0000000�00000000330�14753064456�0027677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 18v2h-8v-2zm-10 1c0 .7.13 1.37.35 2H5a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2h10l6 6v4.35c-.63-.22-1.3-.35-2-.35v-1h-7V5H5v14zm1-9h5.5L14 4.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/note-minus.svg�����������������������������0000664�0000000�0000000�00000000343�14753064456�0026226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13c.7 0 1.37.13 2 .35V9l-6-6H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h8.35c-.22-.63-.35-1.3-.35-2 0-3.31 2.69-6 6-6m-5-8.5 5.5 5.5H14zM23 18v2h-8v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/note-multiple-outline.svg������������������0000664�0000000�0000000�00000000315�14753064456�0030402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6v16h18v2H3a2 2 0 0 1-2-2V6zm13 3h5.5L16 3.5zM7 2h10l6 6v10a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m0 2v14h14v-7h-7V4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/note-multiple.svg��������������������������0000664�0000000�0000000�00000000272�14753064456�0026727�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 9h5.5L16 3.5zM7 2h10l6 6v10a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2M3 6v16h18v2H3a2 2 0 0 1-2-2V6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/note-off-outline.svg�����������������������0000664�0000000�0000000�00000000434�14753064456�0027323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 5v3.8l3.2 3.2H19v3.8l2 2V9l-6-6H6.2l2 2zm2-.5 5.5 5.5H14zm6.7 15.55v-.01l-1.7-1.7v.01L12.66 12l-.66-.66v.01L6.14 5.5 2.39 1.73 1.11 3 3 4.9V19a2 2 0 0 0 2 2h14.1l1.74 1.73 1.27-1.27zM5 19V6.89L17.11 19z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/note-off.svg�������������������������������0000664�0000000�0000000�00000000312�14753064456�0025641�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.11 21.46-1.27 1.27L19.1 21H5a2 2 0 0 1-2-2V4.9L1.11 3l1.28-1.27L20.7 20.04v.01zM21 17.8 6.2 3H15l6 6zM19.5 10 14 4.5V10z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/note-outline.svg���������������������������0000664�0000000�0000000�00000000261�14753064456�0026551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 10h5.5L14 4.5zM5 3h10l6 6v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2m0 2v14h14v-7h-7V5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/note-plus-outline.svg����������������������0000664�0000000�0000000�00000000357�14753064456�0027540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 19V5h7v7h7v1c.7 0 1.37.13 2 .35V9l-6-6H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h8.35c-.22-.63-.35-1.3-.35-2zm9-14.5 5.5 5.5H14zM23 18v2h-3v3h-2v-3h-3v-2h3v-3h2v3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/note-plus.svg������������������������������0000664�0000000�0000000�00000000367�14753064456�0026064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13c.7 0 1.37.13 2 .35V9l-6-6H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h8.35c-.22-.63-.35-1.3-.35-2 0-3.31 2.69-6 6-6m-5-8.5 5.5 5.5H14zM23 18v2h-3v3h-2v-3h-3v-2h3v-3h2v3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/note-remove-outline.svg��������������������0000664�0000000�0000000�00000000503�14753064456�0030043�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 19V5h7v7h7v1c.7 0 1.37.13 2 .35V9l-6-6H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h8.35c-.22-.63-.35-1.3-.35-2zm9-14.5 5.5 5.5H14zM20.41 19l2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.41-1.42L17.59 19l-2.12-2.12 1.41-1.41L19 17.59l2.12-2.12 1.42 1.41z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/note-remove.svg����������������������������0000664�0000000�0000000�00000000513�14753064456�0026367�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13c.7 0 1.37.13 2 .35V9l-6-6H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h8.35c-.22-.63-.35-1.3-.35-2 0-3.31 2.69-6 6-6m-5-8.5 5.5 5.5H14zM20.41 19l2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.41-1.42L17.59 19l-2.12-2.12 1.41-1.41L19 17.59l2.12-2.12 1.42 1.41z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/note-search-outline.svg��������������������0000664�0000000�0000000�00000000664�14753064456�0030023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 3H5c-1.11 0-2 .89-2 2v5.82A6.4 6.4 0 0 1 5 9.5V5h7v5.82c.03.03.07.05.1.08.34.34.63.71.87 1.1H19v7h-6.03c-.24.39-.53.76-.87 1.1-.36.35-.75.64-1.16.9H19c1.11 0 2-.89 2-2V9zm-1 7V4.5l5.5 5.5zm-6.5 1C5 11 3 13 3 15.5c0 .88.25 1.71.69 2.4L.61 21 2 22.39l3.12-3.07c.69.43 1.51.68 2.38.68 2.5 0 4.5-2 4.5-4.5S10 11 7.5 11m0 7a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5"/></svg>����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/note-search.svg����������������������������0000664�0000000�0000000�00000000602�14753064456�0026336�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 3H5c-1.11 0-2 .89-2 2v5.82a6.505 6.505 0 0 1 9.1.08 6.525 6.525 0 0 1 0 9.2c-.36.35-.75.64-1.16.9H19c1.11 0 2-.89 2-2V9zm-1 7V4.5l5.5 5.5zm-6.5 1C5 11 3 13 3 15.5c0 .88.25 1.71.69 2.4L.61 21 2 22.39l3.12-3.07c.69.43 1.51.68 2.38.68 2.5 0 4.5-2 4.5-4.5S10 11 7.5 11m0 7a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5"/></svg>������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/note-text-outline.svg����������������������0000664�0000000�0000000�00000000260�14753064456�0027532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V9zm4 16H5V5h9v5h5m-2 4H7v-2h10m-3 5H7v-2h7"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/note-text.svg������������������������������0000664�0000000�0000000�00000000267�14753064456�0026064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 10h5.5L14 4.5zM5 3h10l6 6v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2m0 9v2h14v-2zm0 4v2h9v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/note.svg�����������������������������������0000664�0000000�0000000�00000000240�14753064456�0025071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 10V4.5l5.5 5.5M5 3c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V9l-6-6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/notebook-check-outline.svg�����������������0000664�0000000�0000000�00000000516�14753064456�0030502�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.75 22.16-2.75-3L15.16 18l1.59 1.59L20.34 16l1.16 1.41zM17 4v6l-2-2-2 2V4H9v16h3.08c.12.72.37 1.39.72 2H7c-1.05 0-2-.95-2-2v-1H3v-2h2v-4H3v-2h2V7H3V5h2V4a2 2 0 0 1 2-2h12c1.05 0 2 .95 2 2v9.8c-.61-.35-1.28-.6-2-.72V4zM5 19h2v-2H5zm0-6h2v-2H5zm0-6h2V5H5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/notebook-check.svg�������������������������0000664�0000000�0000000�00000000463�14753064456�0027026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.75 22.16-2.75-3L15.16 18l1.59 1.59L20.34 16l1.16 1.41zM3 7V5h2V4a2 2 0 0 1 2-2h6v7l2.5-1.5L18 9V2h1c1.05 0 2 .95 2 2v9.8a6.005 6.005 0 0 0-8.2 8.2H7c-1.05 0-2-.95-2-2v-1H3v-2h2v-4H3v-2h2V7zm2-2v2h2V5zm0 14h2v-2H5zm0-6h2v-2H5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/notebook-edit-outline.svg������������������0000664�0000000�0000000�00000000566�14753064456�0030357�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.07 14.88 2.05 2.05L15.06 23H13v-2.06zm1.97-1.75c.14 0 .27.06.38.17l1.28 1.28c.22.21.22.56 0 .77l-1 1-2.05-2.05 1-1c.11-.11.25-.17.39-.17M17 4v6l-2-2-2 2V4H9v16h2v2H7c-1.05 0-2-.95-2-2v-1H3v-2h2v-4H3v-2h2V7H3V5h2V4a2 2 0 0 1 2-2h12c1.05 0 2 .95 2 2v6l-2 2V4zM5 5v2h2V5zm0 6v2h2v-2zm0 6v2h2v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/notebook-edit.svg��������������������������0000664�0000000�0000000�00000000561�14753064456�0026675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.04 13.13c.14 0 .27.06.38.17l1.28 1.28c.22.21.22.56 0 .77l-1 1-2.05-2.05 1-1c.11-.11.25-.17.39-.17m-1.97 1.75 2.05 2.05L15.06 23H13v-2.06zM3 7V5h2V4a2 2 0 0 1 2-2h6v7l2.5-1.5L18 9V2h1c1.05 0 2 .95 2 2v6L11 20v2H7c-1.05 0-2-.95-2-2v-1H3v-2h2v-4H3v-2h2V7zm2 0h2V5H5zm0 4v2h2v-2zm0 6v2h2v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/notebook-heart-outline.svg�����������������0000664�0000000�0000000�00000000634�14753064456�0030531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19 23.3-.6-.5c-2-1.9-3.4-3.1-3.4-4.6 0-1.2 1-2.2 2.2-2.2.7 0 1.4.3 1.8.8.4-.5 1.1-.8 1.8-.8 1.2 0 2.2.9 2.2 2.2 0 1.5-1.4 2.7-3.4 4.6zM17 4v6l-2-2-2 2V4H9v16h4.08c.12.72.37 1.39.72 2H7c-1.05 0-2-.95-2-2v-1H3v-2h2v-4H3v-2h2V7H3V5h2V4a2 2 0 0 1 2-2h12c1.05 0 2 .95 2 2v9.34c-.63-.22-1.3-.34-2-.34V4zM5 19h2v-2H5zm0-6h2v-2H5zm0-6h2V5H5z"/></svg>����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/notebook-heart.svg�������������������������0000664�0000000�0000000�00000000601�14753064456�0027046�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19 23.3-.6-.5c-2-1.9-3.4-3.1-3.4-4.6 0-1.2 1-2.2 2.2-2.2.7 0 1.4.3 1.8.8.4-.5 1.1-.8 1.8-.8 1.2 0 2.2.9 2.2 2.2 0 1.5-1.4 2.7-3.4 4.6zM3 7V5h2V4a2 2 0 0 1 2-2h6v7l2.5-1.5L18 9V2h1c1.05 0 2 .95 2 2v9.34A6.005 6.005 0 0 0 13.8 22H7c-1.05 0-2-.95-2-2v-1H3v-2h2v-4H3v-2h2V7zm2-2v2h2V5zm0 14h2v-2H5zm0-6h2v-2H5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/notebook-minus-outline.svg�����������������0000664�0000000�0000000�00000000417�14753064456�0030560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 4v6l-2-2-2 2V4H9v16h3.1c.1.7.4 1.4.7 2H7c-1.1 0-2-1-2-2v-1H3v-2h2v-4H3v-2h2V7H3V5h2V4c0-1.1.9-2 2-2h12c1 0 2 1 2 2v9.8c-.6-.4-1.3-.6-2-.7V4zM5 19h2v-2H5zm0-6h2v-2H5zm0-6h2V5H5zm9 11v2h8v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/notebook-minus.svg�������������������������0000664�0000000�0000000�00000000426�14753064456�0027103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 7V5h2V4c0-1.1.9-2 2-2h6v7l2.5-1.5L18 9V2h1c1 0 2 1 2 2v9.8c-.9-.5-1.9-.8-3-.8-3.3 0-6 2.7-6 6 0 1.1.3 2.1.8 3H7c-1.1 0-2-1-2-2v-1H3v-2h2v-4H3v-2h2V7zm2-2v2h2V5zm0 14h2v-2H5zm0-6h2v-2H5zm9 5v2h8v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/notebook-multiple.svg����������������������0000664�0000000�0000000�00000000524�14753064456�0027602�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.05 9H7.06V6h1.99V4.03H7.06v-1c0-1.11.89-1.99 1.99-1.99h5.98V8l2.47-1.5L20 8V1.04h1c1.05 0 2 .96 2 1.99V17c0 1.03-.95 2-2 2H9.05c-1.05 0-1.99-.95-1.99-2v-1h1.99v-2H7.06v-3h1.99zM1 18h2v-3H1v-2h2v-3H1V8h2V5h2v3H3v2h2v3H3v2h2v3H3v2h2v1h16v2H5a2 2 0 0 1-2-2v-1H1z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/notebook-outline.svg�����������������������0000664�0000000�0000000�00000000372�14753064456�0027427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 4v6l-2-2-2 2V4H9v16h10V4zM3 7V5h2V4a2 2 0 0 1 2-2h12c1.05 0 2 .95 2 2v16c0 1.05-.95 2-2 2H7c-1.05 0-2-.95-2-2v-1H3v-2h2v-4H3v-2h2V7zm2-2v2h2V5zm0 14h2v-2H5zm0-6h2v-2H5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/notebook-plus-outline.svg������������������0000664�0000000�0000000�00000000443�14753064456�0030407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 4v6l-2-2-2 2V4H9v16h3.1c.1.7.4 1.4.7 2H7c-1.1 0-2-1-2-2v-1H3v-2h2v-4H3v-2h2V7H3V5h2V4c0-1.1.9-2 2-2h12c1 0 2 1 2 2v9.8c-.6-.4-1.3-.6-2-.7V4zM5 19h2v-2H5zm0-6h2v-2H5zm0-6h2V5H5zm12 8v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/notebook-plus.svg��������������������������0000664�0000000�0000000�00000000453�14753064456�0026733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 7V5h2V4c0-1.1.9-2 2-2h6v7l2.5-1.5L18 9V2h1c1 0 2 1 2 2v9.8c-.9-.5-1.9-.8-3-.8-3.3 0-6 2.7-6 6 0 1.1.3 2.1.8 3H7c-1.1 0-2-1-2-2v-1H3v-2h2v-4H3v-2h2V7zm2-2v2h2V5zm0 14h2v-2H5zm0-6h2v-2H5zm12 2v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/notebook-remove-outline.svg����������������0000664�0000000�0000000�00000000545�14753064456�0030724�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 4v6l-2-2-2 2V4H9v16h3.1c.1.7.4 1.4.7 2H7c-1.1 0-2-1-2-2v-1H3v-2h2v-4H3v-2h2V7H3V5h2V4c0-1.1.9-2 2-2h12c1 0 2 1 2 2v9.8c-.6-.4-1.3-.6-2-.7V4zM5 19h2v-2H5zm0-6h2v-2H5zm0-6h2V5H5zm15.1 8.5L18 17.6l-2.1-2.1-1.4 1.4 2.1 2.1-2.1 2.1 1.4 1.4 2.1-2.1 2.1 2.1 1.4-1.4-2.1-2.1 2.1-2.1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/notebook-remove.svg������������������������0000664�0000000�0000000�00000000555�14753064456�0027250�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 7V5h2V4c0-1.1.9-2 2-2h6v7l2.5-1.5L18 9V2h1c1 0 2 1 2 2v9.8c-.9-.5-1.9-.8-3-.8-3.3 0-6 2.7-6 6 0 1.1.3 2.1.8 3H7c-1.1 0-2-1-2-2v-1H3v-2h2v-4H3v-2h2V7zm2-2v2h2V5zm0 14h2v-2H5zm0-6h2v-2H5zm15.1 2.5L18 17.6l-2.1-2.1-1.4 1.4 2.1 2.1-2.1 2.1 1.4 1.4 2.1-2.1 2.1 2.1 1.4-1.4-2.1-2.1 2.1-2.1z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/notebook.svg�������������������������������0000664�0000000�0000000�00000000356�14753064456�0025754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 7V5h2V4a2 2 0 0 1 2-2h6v7l2.5-1.5L18 9V2h1c1.05 0 2 .95 2 2v16c0 1.05-.95 2-2 2H7c-1.05 0-2-.95-2-2v-1H3v-2h2v-4H3v-2h2V7zm4 4H5v2h2zm0-4V5H5v2zm0 12v-2H5v2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/notification-clear-all.svg�����������������0000664�0000000�0000000�00000000163�14753064456�0030450�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 13h14v-2H5m-2 6h14v-2H3m4-8v2h14V7"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/npm.svg������������������������������������0000664�0000000�0000000�00000000266�14753064456�0024726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 10v4h2v-3h1v3h1v-4zm5 0v5h2v-1h2v-4zm3 1v2h-1v-2zm2-1v4h2v-3h1v3h1v-3h1v3h1v-4zM3 9h18v6h-9v1H8v-1H3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/nuke.svg�����������������������������������0000664�0000000�0000000�00000000634�14753064456�0025075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.04 12H10v-1H5.5A3.5 3.5 0 0 1 2 7.5 3.5 3.5 0 0 1 5.5 4c1.03 0 1.95.44 2.59 1.15C8.5 3.35 10.08 2 12 2s3.5 1.35 3.91 3.15C16.55 4.44 17.47 4 18.5 4A3.5 3.5 0 0 1 22 7.5a3.5 3.5 0 0 1-3.5 3.5h-4.46zM10 16.9v-1.14H5v-2h14v2h-4.96v1.16L20 19.08c.58.21 1 .76 1 1.42a1.5 1.5 0 0 1-1.5 1.5h-15A1.5 1.5 0 0 1 3 20.5c0-.66.42-1.21 1-1.42z"/></svg>����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/null.svg�����������������������������������0000664�0000000�0000000�00000000672�14753064456�0025107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c1.85 0 3.55.78 4.9 2.1l1.7-2.17 1.58 1.23-1.98 2.52C19.33 7.41 20 9.6 20 12c0 5.5-3.58 10-8 10-1.85 0-3.55-.78-4.9-2.1l-1.7 2.17-1.58-1.23 1.98-2.52C4.67 16.59 4 14.4 4 12 4 6.5 7.58 2 12 2m0 2c-3.31 0-6 3.58-6 8 0 1.73.41 3.33 1.11 4.64l8.56-10.97C14.66 4.62 13.38 4 12 4m0 16c3.31 0 6-3.58 6-8 0-1.73-.41-3.33-1.11-4.64L8.33 18.33C9.34 19.38 10.62 20 12 20"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-0-box-multiple-outline.svg���������0000664�0000000�0000000�00000000421�14753064456�0032020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 17V3H7v14zm0-16a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2zM3 5v16h16v2H3a2 2 0 0 1-2-2V5zm10 0h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2m0 2v6h2V7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-0-box-multiple.svg�����������������0000664�0000000�0000000�00000000402�14753064456�0030342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5v16h16v2H3a2 2 0 0 1-2-2V5zm18-4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2zm-8 4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2zm0 2h2v6h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-0-box-outline.svg������������������0000664�0000000�0000000�00000000362�14753064456�0030173�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19V5H5v14zm0-16a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm-8 4h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2m0 2v6h2V9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-0-box.svg��������������������������0000664�0000000�0000000�00000000343�14753064456�0026515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm-8 4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zm0 2h2v6h-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-0-circle-outline.svg���������������0000664�0000000�0000000�00000000445�14753064456�0030646�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2m0 2v6h2V9zm1-7a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-0-circle.svg�����������������������0000664�0000000�0000000�00000000350�14753064456�0027164�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zm0 2h2v6h-2zm1-7a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-0.svg������������������������������0000664�0000000�0000000�00000000236�14753064456�0025730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zm0 2h2v6h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-1-box-multiple-outline.svg���������0000664�0000000�0000000�00000000322�14753064456�0032021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 17H7V3h14m0-2H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2m-7 14h2V5h-4v2h2M3 5H1v16a2 2 0 0 0 2 2h16v-2H3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-1-box-multiple.svg�����������������0000664�0000000�0000000�00000000304�14753064456�0030344�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5v16h16v2H3a2 2 0 0 1-2-2V5zm18-4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2zm-7 14h2V5h-4v2h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-1-box-outline.svg������������������0000664�0000000�0000000�00000000262�14753064456�0030173�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19H5V5h14m0-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-7 14h2V7h-4v2h2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-1-box.svg��������������������������0000664�0000000�0000000�00000000246�14753064456�0026520�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 17h-2V9h-2V7h4m5-4H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-1-circle-outline.svg���������������0000664�0000000�0000000�00000000347�14753064456�0030650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 7h4v10h-2V9h-2zm2-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-1-circle.svg�����������������������0000664�0000000�0000000�00000000250�14753064456�0027164�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 7v2h2v8h2V7zm2-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-1.svg������������������������������0000664�0000000�0000000�00000000136�14753064456�0025730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 7v2h2v8h2V7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-10-box-multiple-outline.svg��������0000664�0000000�0000000�00000000450�14753064456�0032103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 17V3H7v14zm0-16a2 2 0 0 1 2 2v14c0 1.11-.89 2-2 2H7a2 2 0 0 1-2-2V3c0-1.1.9-2 2-2zM3 5v16h16v2H3a2 2 0 0 1-2-2V5zm9 0H8v2h2v8h2zm6 0h-2c-1.1 0-2 .9-2 2v6a2 2 0 0 0 2 2h2c1.11 0 2-.89 2-2V7a2 2 0 0 0-2-2m0 8h-2V7h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-10-box-multiple.svg����������������0000664�0000000�0000000�00000000437�14753064456�0030433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5v16h16v2H3a2 2 0 0 1-2-2V5zm13 8h2V7h-2zm5-12H7c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V3a2 2 0 0 0-2-2m-9 14h-2V7H8V5h4zm8-2c0 1.11-.89 2-2 2h-2a2 2 0 0 1-2-2V7c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-10-box-outline.svg�����������������0000664�0000000�0000000�00000000406�14753064456�0030253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19H5V5h14m0-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2M8 17h2V7H6v2h2m6-2h2a2 2 0 0 1 2 2v6c0 1.11-.89 2-2 2h-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2m0 2v6h2V9z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-10-box.svg�������������������������0000664�0000000�0000000�00000000373�14753064456�0026601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 9h2v6h-2zm7-4v14c0 1.11-.89 2-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2M10 7H6v2h2v8h2zm8 2a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2c1.11 0 2-.89 2-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-10-circle-outline.svg��������������0000664�0000000�0000000�00000000451�14753064456�0030724�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2m0 2c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8m-2 3H6v2h2v8h2zm6 0h-2c-1.1 0-2 .9-2 2v6a2 2 0 0 0 2 2h2c1.11 0 2-.89 2-2V9a2 2 0 0 0-2-2m0 8h-2V9h2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-10-circle.svg����������������������0000664�0000000�0000000�00000000357�14753064456�0027254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 9h2v6h-2zm8 3c0 5.5-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2s10 4.5 10 10M10 7H6v2h2v8h2zm8 2a2 2 0 0 0-2-2h-2c-1.1 0-2 .9-2 2v6a2 2 0 0 0 2 2h2c1.11 0 2-.89 2-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-10.svg�����������������������������0000664�0000000�0000000�00000000264�14753064456�0026012�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 7H6v2h2v8h2zm6 0h-2c-1.1 0-2 .9-2 2v6a2 2 0 0 0 2 2h2c1.11 0 2-.89 2-2V9a2 2 0 0 0-2-2m0 8h-2V9h2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-2-box-multiple-outline.svg���������0000664�0000000�0000000�00000000411�14753064456�0032021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 13h-4v-2h2a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-4v2h4v2h-2a2 2 0 0 0-2 2v4h6m4 2H7V3h14m0-2H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2M3 5H1v16a2 2 0 0 0 2 2h16v-2H3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-2-box-multiple.svg�����������������0000664�0000000�0000000�00000000374�14753064456�0030354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5v16h16v2H3a2 2 0 0 1-2-2V5zm14 8h-4v-2h2a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-4v2h4v2h-2a2 2 0 0 0-2 2v4h6zm4-12a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-2-box-outline.svg������������������0000664�0000000�0000000�00000000350�14753064456�0030172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 15h-4v-2h2a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2H9v2h4v2h-2a2 2 0 0 0-2 2v4h6m4 2H5V5h14m0-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-2-box.svg��������������������������0000664�0000000�0000000�00000000334�14753064456�0026517�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 11a2 2 0 0 1-2 2h-2v2h4v2H9v-4a2 2 0 0 1 2-2h2V9H9V7h4a2 2 0 0 1 2 2m4-6H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-2-circle-outline.svg���������������0000664�0000000�0000000�00000000433�14753064456�0030645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h4a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-2v2h4v2H9v-4a2 2 0 0 1 2-2h2V9H9zm3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-2-circle.svg�����������������������0000664�0000000�0000000�00000000341�14753064456�0027166�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v2h4v2h-2a2 2 0 0 0-2 2v4h6v-2h-4v-2h2a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zm3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-2.svg������������������������������0000664�0000000�0000000�00000000227�14753064456�0025732�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v2h4v2h-2a2 2 0 0 0-2 2v4h6v-2h-4v-2h2a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-3-box-multiple-outline.svg���������0000664�0000000�0000000�00000000454�14753064456�0032031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 13v-1.5a1.5 1.5 0 0 0-1.5-1.5A1.5 1.5 0 0 0 17 8.5V7a2 2 0 0 0-2-2h-4v2h4v2h-2v2h2v2h-4v2h4a2 2 0 0 0 2-2M3 5H1v16a2 2 0 0 0 2 2h16v-2H3m18-4H7V3h14m0-2H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-3-box-multiple.svg�����������������0000664�0000000�0000000�00000000436�14753064456�0030354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5v16h16v2H3a2 2 0 0 1-2-2V5zm14 8v-1.5a1.5 1.5 0 0 0-1.5-1.5A1.5 1.5 0 0 0 17 8.5V7a2 2 0 0 0-2-2h-4v2h4v2h-2v2h2v2h-4v2h4a2 2 0 0 0 2-2m4-12a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-3-box-outline.svg������������������0000664�0000000�0000000�00000000413�14753064456�0030173�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 15v-1.5a1.5 1.5 0 0 0-1.5-1.5 1.5 1.5 0 0 0 1.5-1.5V9a2 2 0 0 0-2-2H9v2h4v2h-2v2h2v2H9v2h4a2 2 0 0 0 2-2m4 4H5V5h14m0-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-3-box.svg��������������������������0000664�0000000�0000000�00000000411�14753064456�0026514�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 10.5a1.5 1.5 0 0 1-1.5 1.5c.84 0 1.5.67 1.5 1.5V15c0 1.11-.89 2-2 2H9v-2h4v-2h-2v-2h2V9H9V7h4c1.11 0 2 .89 2 2m4-6H5c-1.09 0-2 .9-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-3-circle-outline.svg���������������0000664�0000000�0000000�00000000502�14753064456�0030643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 15a2 2 0 0 1-2 2H9v-2h4v-2h-2v-2h2V9H9V7h4a2 2 0 0 1 2 2v1.5a1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1 1.5 1.5zM12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-3-circle.svg�����������������������0000664�0000000�0000000�00000000405�14753064456�0027170�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 15v-1.5a1.5 1.5 0 0 0-1.5-1.5 1.5 1.5 0 0 0 1.5-1.5V9a2 2 0 0 0-2-2H9v2h4v2h-2v2h2v2H9v2h4a2 2 0 0 0 2-2M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-3.svg������������������������������0000664�0000000�0000000�00000000272�14753064456�0025733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 15v-1.5a1.5 1.5 0 0 0-1.5-1.5 1.5 1.5 0 0 0 1.5-1.5V9a2 2 0 0 0-2-2H9v2h4v2h-2v2h2v2H9v2h4a2 2 0 0 0 2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-4-box-multiple-outline.svg���������0000664�0000000�0000000�00000000334�14753064456�0032027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 17H7V3h14m0-2H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2m-6 14h2V5h-2v4h-2V5h-2v6h4M3 5H1v16a2 2 0 0 0 2 2h16v-2H3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-4-box-multiple.svg�����������������0000664�0000000�0000000�00000000316�14753064456�0030352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5v16h16v2H3a2 2 0 0 1-2-2V5zm18-4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2zm-6 14h2V5h-2v4h-2V5h-2v6h4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-4-box-outline.svg������������������0000664�0000000�0000000�00000000273�14753064456�0030200�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19H5V5h14m0-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-6 14h2V7h-2v4h-2V7H9v6h4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-4-box.svg��������������������������0000664�0000000�0000000�00000000256�14753064456�0026524�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 17h-2v-4H9V7h2v4h2V7h2m4-4H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-4-circle-outline.svg���������������0000664�0000000�0000000�00000000356�14753064456�0030653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h2v4h2V7h2v10h-2v-4H9zm3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-4-circle.svg�����������������������0000664�0000000�0000000�00000000261�14753064456�0027171�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v6h4v4h2V7h-2v4h-2V7zm3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-4.svg������������������������������0000664�0000000�0000000�00000000147�14753064456�0025735�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v6h4v4h2V7h-2v4h-2V7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-5-box-multiple-outline.svg���������0000664�0000000�0000000�00000000375�14753064456�0032035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 13v-2a2 2 0 0 0-2-2h-2V7h4V5h-6v6h4v2h-4v2h4a2 2 0 0 0 2-2M3 5H1v16a2 2 0 0 0 2 2h16v-2H3m18-4H7V3h14m0-2H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-5-box-multiple.svg�����������������0000664�0000000�0000000�00000000360�14753064456�0030352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5v16h16v2H3a2 2 0 0 1-2-2V5zm18-4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2zm-4 12v-2a2 2 0 0 0-2-2h-2V7h4V5h-6v6h4v2h-4v2h4a2 2 0 0 0 2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-5-box-outline.svg������������������0000664�0000000�0000000�00000000333�14753064456�0030176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 15v-2a2 2 0 0 0-2-2h-2V9h4V7H9v6h4v2H9v2h4a2 2 0 0 0 2-2m4 4H5V5h14m0-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-5-box.svg��������������������������0000664�0000000�0000000�00000000316�14753064456�0026522�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 9h-4v2h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H9v-2h4v-2H9V7h6m4-4H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-5-circle-outline.svg���������������0000664�0000000�0000000�00000000416�14753064456�0030651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h6v2h-4v2h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H9v-2h4v-2H9zm3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-5-circle.svg�����������������������0000664�0000000�0000000�00000000321�14753064456�0027167�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v6h4v2H9v2h4a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-2V9h4V7zm3-5a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-5.svg������������������������������0000664�0000000�0000000�00000000207�14753064456�0025733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v6h4v2H9v2h4a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-2V9h4V7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-6-box-multiple-outline.svg���������0000664�0000000�0000000�00000000433�14753064456�0032031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 11h2v2h-2m0 2h2a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-2V7h4V5h-4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2m8 2H7V3h14m0-2H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2M3 5H1v16a2 2 0 0 0 2 2h16v-2H3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-6-box-multiple.svg�����������������0000664�0000000�0000000�00000000421�14753064456�0030351�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 11h2v2h-2zM3 5v16h16v2H3a2 2 0 0 1-2-2V5zm18-4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2zm-8 14h2a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-2V7h4V5h-4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-6-box-outline.svg������������������0000664�0000000�0000000�00000000373�14753064456�0030203�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 13h2v2h-2m0 2h2a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-2V9h4V7h-4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2m8 2H5V5h14m0-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-6-box.svg��������������������������0000664�0000000�0000000�00000000360�14753064456�0026522�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 9h-4v2h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h4m4-4H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-8 12h2v-2h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-6-circle-outline.svg���������������0000664�0000000�0000000�00000000460�14753064456�0030651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7h4v2h-4v2h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2m0 6v2h2v-2zm1-11a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-6-circle.svg�����������������������0000664�0000000�0000000�00000000363�14753064456�0027176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-2V9h4V7zm0 6h2v2h-2zm1-11a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-6.svg������������������������������0000664�0000000�0000000�00000000250�14753064456�0025732�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-2V9h4V7zm0 6h2v2h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-7-box-multiple-outline.svg���������0000664�0000000�0000000�00000000330�14753064456�0032026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13 15 4-8V5h-6v2h4l-4 8m10 2H7V3h14m0-2H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2M3 5H1v16a2 2 0 0 0 2 2h16v-2H3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-7-box-multiple.svg�����������������0000664�0000000�0000000�00000000313�14753064456�0030352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5v16h16v2H3a2 2 0 0 1-2-2V5zm10 10 4-8V5h-6v2h4l-4 8zm8-14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-7-box-outline.svg������������������0000664�0000000�0000000�00000000267�14753064456�0030206�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11 17 4-8V7H9v2h4l-4 8m10 2H5V5h14m0-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-7-box.svg��������������������������0000664�0000000�0000000�00000000253�14753064456�0026524�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm-8 14 4-8V7H9v2h4l-4 8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-7-circle-outline.svg���������������0000664�0000000�0000000�00000000352�14753064456�0030652�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 17H9l4-8H9V7h6v2zm1-15a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-7-circle.svg�����������������������0000664�0000000�0000000�00000000261�14753064456�0027174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11 17 4-8V7H9v2h4l-4 8zm1-15a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-7.svg������������������������������0000664�0000000�0000000�00000000145�14753064456�0025736�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11 17 4-8V7H9v2h4l-4 8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-8-box-multiple-outline.svg���������0000664�0000000�0000000�00000000575�14753064456�0032042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 11h2v2h-2m0-6h2v2h-2m0 6h2a2 2 0 0 0 2-2v-1.5a1.5 1.5 0 0 0-1.5-1.5A1.5 1.5 0 0 0 17 8.5V7a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v1.5a1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0-1.5 1.5V13a2 2 0 0 0 2 2m8 2H7V3h14m0-2H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2M3 5H1v16a2 2 0 0 0 2 2h16v-2H3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-8-box-multiple.svg�����������������0000664�0000000�0000000�00000000564�14753064456�0030363�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 11h2v2h-2zm0-4h2v2h-2zM3 5v16h16v2H3a2 2 0 0 1-2-2V5zm10 10h2a2 2 0 0 0 2-2v-1.5a1.5 1.5 0 0 0-1.5-1.5A1.5 1.5 0 0 0 17 8.5V7a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v1.5a1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0-1.5 1.5V13a2 2 0 0 0 2 2m8-14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-8-box-outline.svg������������������0000664�0000000�0000000�00000000535�14753064456�0030205�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 13h2v2h-2m0-6h2v2h-2m0 6h2a2 2 0 0 0 2-2v-1.5a1.5 1.5 0 0 0-1.5-1.5 1.5 1.5 0 0 0 1.5-1.5V9a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v1.5a1.5 1.5 0 0 0 1.5 1.5A1.5 1.5 0 0 0 9 13.5V15a2 2 0 0 0 2 2m8 2H5V5h14m0-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-8-box.svg��������������������������0000664�0000000�0000000�00000000523�14753064456�0026525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm-8 14h2a2 2 0 0 0 2-2v-1.5a1.5 1.5 0 0 0-1.5-1.5 1.5 1.5 0 0 0 1.5-1.5V9a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v1.5a1.5 1.5 0 0 0 1.5 1.5A1.5 1.5 0 0 0 9 13.5V15a2 2 0 0 0 2 2m0-4h2v2h-2zm0-4h2v2h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-8-circle-outline.svg���������������0000664�0000000�0000000�00000000622�14753064456�0030653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 13v2h2v-2zm0-4v2h2V9zm0 8a2 2 0 0 1-2-2v-1.5a1.5 1.5 0 0 1 1.5-1.5A1.5 1.5 0 0 1 9 10.5V9a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v1.5a1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1 1.5 1.5V15a2 2 0 0 1-2 2zm1-15a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>��������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-8-circle.svg�����������������������0000664�0000000�0000000�00000000531�14753064456�0027175�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 13h2v2h-2zm0-4h2v2h-2zm0 8h2a2 2 0 0 0 2-2v-1.5a1.5 1.5 0 0 0-1.5-1.5 1.5 1.5 0 0 0 1.5-1.5V9a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v1.5a1.5 1.5 0 0 0 1.5 1.5A1.5 1.5 0 0 0 9 13.5V15a2 2 0 0 0 2 2m1-15a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-8.svg������������������������������0000664�0000000�0000000�00000000414�14753064456�0025736�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 13h2v2h-2m0-6h2v2h-2m0 6h2a2 2 0 0 0 2-2v-1.5a1.5 1.5 0 0 0-1.5-1.5 1.5 1.5 0 0 0 1.5-1.5V9a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v1.5a1.5 1.5 0 0 0 1.5 1.5A1.5 1.5 0 0 0 9 13.5V15a2 2 0 0 0 2 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-9-box-multiple-outline.svg���������0000664�0000000�0000000�00000000432�14753064456�0032033�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 9h-2V7h2m0-2h-2a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2v2h-4v2h4a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2m6 12H7V3h14m0-2H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2M3 5H1v16a2 2 0 0 0 2 2h16v-2H3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-9-box-multiple.svg�����������������0000664�0000000�0000000�00000000415�14753064456�0030357�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 9h-2V7h2zM3 5v16h16v2H3a2 2 0 0 1-2-2V5zm12 0h-2a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2v2h-4v2h4a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2m6-4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-9-box-outline.svg������������������0000664�0000000�0000000�00000000372�14753064456�0030205�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 11h-2V9h2m0-2h-2a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2v2H9v2h4a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2m6 12H5V5h14m0-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-9-box.svg��������������������������0000664�0000000�0000000�00000000355�14753064456�0026531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm-6 8h-2V9h2zm0-4h-2a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2v2H9v2h4a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-9-circle-outline.svg���������������0000664�0000000�0000000�00000000462�14753064456�0030656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 17H9v-2h4v-2h-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2m0-6V9h-2v2zm-1-9a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-9-circle.svg�����������������������0000664�0000000�0000000�00000000362�14753064456�0027200�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m1 15a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2v2H9v2zm0-6h-2V9h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-9-plus-box-multiple-outline.svg����0000664�0000000�0000000�00000000464�14753064456�0033021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 9h-2V7h-2v2h-2v2h2v2h2v-2h2v6H7V3h14m0-2H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2M11 9V8h1v1m2 3V8a2 2 0 0 0-2-2h-1a2 2 0 0 0-2 2v1a2 2 0 0 0 2 2h1v1H9v2h3a2 2 0 0 0 2-2M3 5H1v16a2 2 0 0 0 2 2h16v-2H3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-9-plus-box-multiple.svg������������0000664�0000000�0000000�00000000453�14753064456�0031342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 9V8h1v1zm10-8a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2zM3 5v16h16v2H3a2 2 0 0 1-2-2V5zm12 4v2h2v2h2v-2h2V9h-2V7h-2v2zm-1 3V8a2 2 0 0 0-2-2h-1a2 2 0 0 0-2 2v1a2 2 0 0 0 2 2h1v1H9v2h3a2 2 0 0 0 2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-9-plus-box-outline.svg�������������0000664�0000000�0000000�00000000426�14753064456�0031166�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 11h-2V9h-2v2h-2v2h2v2h2v-2h2v6H5V5h14m0-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2M9 11v-1h1v1m2 3v-4a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2v1a2 2 0 0 0 2 2h1v1H7v2h3a2 2 0 0 0 2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-9-plus-box.svg���������������������0000664�0000000�0000000�00000000415�14753064456�0027507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 5v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2m-2 6h-2V9h-2v2h-2v2h2v2h2v-2h2zm-9-4H8a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2v2H6v2h4a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2M8 9h2v2H8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-9-plus-circle-outline.svg����������0000664�0000000�0000000�00000000517�14753064456�0031640�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 11v2h-2v2h-2v-2h-2v-2h2V9h2v2zm-9-4a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H6v-2h4v-2H8a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2zM8 9v2h2V9zm4-7a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-9-plus-circle.svg������������������0000664�0000000�0000000�00000000421�14753064456�0030155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 11h-2V9h-2v2h-2v2h2v2h2v-2h2zm-9-4H8a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2v2H6v2h4a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2M8 9h2v2H8zm4-7a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-9-plus.svg�������������������������0000664�0000000�0000000�00000000314�14753064456�0026717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 11h-2V9h-2v2h-2v2h2v2h2v-2h2zm-9-4H8c-1.1 0-2 .9-2 2v2a2 2 0 0 0 2 2h2v2H6v2h4c1.11 0 2-.89 2-2V9a2 2 0 0 0-2-2m0 4H8V9h2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-9.svg������������������������������0000664�0000000�0000000�00000000250�14753064456�0025735�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 17a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2v2H9v2zm0-6h-2V9h2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-negative-1.svg���������������������0000664�0000000�0000000�00000000153�14753064456�0027527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 7v2h2v8h2V7zm-2 6H5v-2h6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-off.svg����������������������������0000664�0000000�0000000�00000000505�14753064456�0026342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l4 4H2v2h2v8h2V7.9l3.3 3.3c-.8.2-1.3 1-1.3 1.8v4h6v-1.1l6.8 6.8zM10 15v-2h1.1l2 2zm4-4.2L10.2 7H12c1.1 0 2 .9 2 2zM20 9h-4V7h4c1.1 0 2 .9 2 2v1.5c0 .8-.7 1.5-1.5 1.5.8 0 1.5.7 1.5 1.5V15c0 1-.8 1.9-1.8 2l-2-2H20v-2h-2v-2h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric-positive-1.svg���������������������0000664�0000000�0000000�00000000174�14753064456�0027572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 7v2h2v8h2V7zm-2 6H9v2H7v-2H5v-2h2V9h2v2h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/numeric.svg��������������������������������0000664�0000000�0000000�00000000425�14753064456�0025573�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 17V9H2V7h4v10zm18-2a2 2 0 0 1-2 2h-4v-2h4v-2h-2v-2h2V9h-4V7h4a2 2 0 0 1 2 2v1.5a1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1 1.5 1.5zm-8 0v2H8v-4a2 2 0 0 1 2-2h2V9H8V7h4a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-2v2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/nut.svg������������������������������������0000664�0000000�0000000�00000000525�14753064456�0024740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 16.5c0 .38-.21.71-.53.88l-7.9 4.44c-.16.12-.36.18-.57.18s-.41-.06-.57-.18l-7.9-4.44A.99.99 0 0 1 3 16.5v-9c0-.38.21-.71.53-.88l7.9-4.44c.16-.12.36-.18.57-.18s.41.06.57.18l7.9 4.44c.32.17.53.5.53.88zM12 7a5 5 0 0 0-5 5 5 5 0 0 0 5 5 5 5 0 0 0 5-5 5 5 0 0 0-5-5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/nutrition.svg������������������������������0000664�0000000�0000000�00000000362�14753064456�0026164�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 18a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4v-2h12zM4 3h10a2 2 0 0 1 2 2v9H8v5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 3v2h2V6zm10 2V6H8v2zM4 10v2h2v-2zm4 0v2h6v-2zm-4 4v2h2v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/nuxt.svg�����������������������������������0000664�0000000�0000000�00000000631�14753064456�0025126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.8 18.36 16.03 8.08c-.1-.08-.4-.65-1-.65-.25 0-.6.1-.96.65l-.74 1.18-2.02-3.61c-.05-.1-.4-.65-1-.65-.25 0-.65.1-.95.65L2.18 18.31c-.05.1-.35.69-.05 1.19.1.25.4.5 1.06.5h17.66c.1 0 .75 0 1.05-.5.1-.24.2-.64-.1-1.14m-13.7-.05-.15.55H3.24l7.12-12.52 2.3 4.13zm1.11.55 4.11-7.2 4.18 7.2zm9.53 0-.2-.55L14 10.46l1.03-1.73 5.72 10.13z"/></svg>�������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/oar.svg������������������������������������0000664�0000000�0000000�00000000340�14753064456�0024706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.23 15.21c-1.46-1.46-5.26-5.01-7.46-3.94L4.5 3 3 4.5l8.28 8.29c-.98 2.21 2.6 5.83 4.07 7.29 1.76 1.76 2.91.84 4.26-.51 1.49-1.49 2-2.96.62-4.36"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ocarina.svg��������������������������������0000664�0000000�0000000�00000001010�14753064456�0025534�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 12c-3.2-1.6-6.6-2.3-9.2-2.7L9.7 5.9c-.4-1.1-2-1.1-2.4 0L6.3 9C3.9 9.4 2 11.5 2 14c0 2.8 2.2 5 5 5 0 0 7 0 13-3 0 0 2-1 2-2s-2-2-2-2M5 14c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1c0 .5-.4 1-1 1m2 3c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1c0 .5-.4 1-1 1m2-3c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1c0 .5-.4 1-1 1m2 3c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1c0 .5-.4 1-1 1m5-3c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1c0 .5-.4 1-1 1m3 1c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1c0 .5-.4 1-1 1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/oci.svg������������������������������������0000664�0000000�0000000�00000000331�14753064456�0024677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2v20h20V2m-2.88 17.03H4.87V5h14.26v14.03m-4.3-8.32h2.86v6.88h-2.86m0-11.18h2.86v2.86h-2.86M6.3 6.41v11.18h7.1v-2.87H9.17V9.28h4.23V6.41Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ocr.svg������������������������������������0000664�0000000�0000000�00000000467�14753064456�0024722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5v14h12v-2h-2c-1.11 0-2-.89-2-2V9c0-1.11.89-2 2-2h2V5m0 2v2h2V7m-2 2h-2v6h2m0 0v2h2v-2M5 7h2c1.11 0 2 .89 2 2v6c0 1.11-.89 2-2 2H5c-1.11 0-2-.89-2-2V9c0-1.11.89-2 2-2m12 0v10h2v-4h1v1h1v3h2v-3h-1v-2h1V8h-1V7M5 9v6h2V9m12 0h2v2h-2Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/octagon-outline.svg������������������������0000664�0000000�0000000�00000000304�14753064456�0027234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.27 3 3 8.27v7.46L8.27 21h7.46C17.5 19.24 21 15.73 21 15.73V8.27L15.73 3M9.1 5h5.8L19 9.1v5.8L14.9 19H9.1L5 14.9V9.1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/octagon.svg��������������������������������0000664�0000000�0000000�00000000202�14753064456�0025554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/octagram-edit-outline.svg������������������0000664�0000000�0000000�00000000710�14753064456�0030323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.88 12 2.2 16.06l4.06 1.68 1.68 4.06L11 20.53v-2.17l-2 .83-1.21-2.98L4.81 15l1.24-3-1.24-3 2.98-1.21L9 4.81l3 1.24 3-1.24 1.21 2.98L19.19 9l-1.24 3 .05.13 1.38-1.38c.44-.45 1-.69 1.56-.75l.86-2.06-4.06-1.68-1.68-4.06L12 3.88 7.94 2.2 6.26 6.26 2.2 7.94zm18.97 1.47-1.32-1.32c-.2-.2-.53-.2-.72 0l-.98.98 2.04 2.04.98-.98c.2-.19.2-.52 0-.72M13 19.96V22h2.04l6.13-6.12-2.04-2.05z"/></svg>��������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/octagram-edit.svg��������������������������0000664�0000000�0000000�00000000523�14753064456�0026650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.2 16.06 3.88 12 2.2 7.94l4.06-1.68L7.94 2.2 12 3.88l4.06-1.68 1.68 4.06 4.06 1.68-.86 2.06c-.56.06-1.12.3-1.56.75L11 19.13v1.4L7.94 21.8l-1.68-4.06zm17.63-2.93.98-.98c.19-.2.52-.2.72 0l1.32 1.32c.2.2.2.53 0 .72l-.98.98zm1.34 2.75L15.04 22H13v-2.04l6.13-6.13z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/octagram-minus-outline.svg�����������������0000664�0000000�0000000�00000000653�14753064456�0030537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.2 16.06 3.88 12 2.2 7.94l4.06-1.68L7.94 2.2 12 3.88l4.06-1.68 1.68 4.06 4.06 1.68L20.12 12l.51 1.22c-.52-.14-1.07-.22-1.63-.22-.21 0-.42 0-.62.03L17.95 12l1.24-3-2.98-1.21L15 4.81l-3 1.24-3-1.24-1.21 2.98L4.81 9l1.24 3-1.24 3 2.98 1.21L9 19.19l3-1.24 1.03.43c-.03.2-.03.41-.03.62 0 .56.08 1.11.22 1.63L12 20.12 7.94 21.8l-1.68-4.06zM15 18v2h8v-2z"/></svg>�������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/octagram-minus.svg�������������������������0000664�0000000�0000000�00000000444�14753064456�0027060�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.2 16.06 3.88 12 2.2 7.94l4.06-1.68L7.94 2.2 12 3.88l4.06-1.68 1.68 4.06 4.06 1.68L20.12 12l.51 1.22c-.52-.14-1.07-.22-1.63-.22-3.31 0-6 2.69-6 6 0 .56.08 1.11.22 1.63L12 20.12 7.94 21.8l-1.68-4.06zM15 20v-2h8v2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/octagram-outline.svg�����������������������0000664�0000000�0000000�00000000553�14753064456�0027405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.2 16.06 3.88 12 2.2 7.94l4.06-1.68L7.94 2.2 12 3.88l4.06-1.68 1.68 4.06 4.06 1.68L20.12 12l1.68 4.06-4.06 1.68-1.68 4.06L12 20.12 7.94 21.8l-1.68-4.06zM4.81 9l1.24 3-1.24 3 2.98 1.21L9 19.19l3-1.24 3 1.24 1.21-2.98L19.19 15l-1.24-3 1.24-3-2.98-1.21L15 4.81l-3 1.24-3-1.24-1.21 2.98z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/octagram-plus-outline.svg������������������0000664�0000000�0000000�00000000677�14753064456�0030375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.2 16.06 3.88 12 2.2 7.94l4.06-1.68L7.94 2.2 12 3.88l4.06-1.68 1.68 4.06 4.06 1.68L20.12 12l.51 1.22c-.52-.14-1.07-.22-1.63-.22-.21 0-.42 0-.62.03L17.95 12l1.24-3-2.98-1.21L15 4.81l-3 1.24-3-1.24-1.21 2.98L4.81 9l1.24 3-1.24 3 2.98 1.21L9 19.19l3-1.24 1.03.43c-.03.2-.03.41-.03.62 0 .56.08 1.11.22 1.63L12 20.12 7.94 21.8l-1.68-4.06zM20 20h3v-2h-3v-3h-2v3h-3v2h3v3h2z"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/octagram-plus.svg��������������������������0000664�0000000�0000000�00000000470�14753064456�0026707�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.2 16.06 3.88 12 2.2 7.94l4.06-1.68L7.94 2.2 12 3.88l4.06-1.68 1.68 4.06 4.06 1.68L20.12 12l.51 1.22c-.52-.14-1.07-.22-1.63-.22-3.31 0-6 2.69-6 6 0 .56.08 1.11.22 1.63L12 20.12 7.94 21.8l-1.68-4.06zM20 20h3v-2h-3v-3h-2v3h-3v2h3v3h2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/octagram.svg�������������������������������0000664�0000000�0000000�00000000350�14753064456�0025723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.2 16.06 3.88 12 2.2 7.94l4.06-1.68L7.94 2.2 12 3.88l4.06-1.68 1.68 4.06 4.06 1.68L20.12 12l1.68 4.06-4.06 1.68-1.68 4.06L12 20.12 7.94 21.8l-1.68-4.06z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/octahedron-off.svg�������������������������0000664�0000000�0000000�00000000767�14753064456�0027040�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 5.41V7.8l2.88 2.88L17.84 12l-1.98.66 2.95 2.95 2.9-2.9h-.01c.39-.39.39-1.03 0-1.42h.01l-9-9C12.5 2.1 12.26 2 12 2s-.5.1-.71.29l-2.9 2.9 1.42 1.42zm2 0 4.3 4.3L13 8.28zM2.39 1.73 1.11 3l4.74 4.74-3.56 3.55h.01c-.39.39-.39 1.03 0 1.42h-.01l9 9c.21.19.45.29.71.29s.5-.1.71-.29l3.55-3.56 4.58 4.58 1.27-1.27zm4.87 7.42.28.28-.84.28zM11 18.59l-4.3-4.3 4.3 1.43zm1-4.64L6.16 12l2.96-1 2.92 2.93zm1 4.64v-2.87l.62-.22 1.23 1.24z"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/material/octahedron.svg�����������������������������0000664�0000000�0000000�00000000553�14753064456�0026261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.7 11.29h.01l-9-9C12.5 2.1 12.26 2 12 2s-.5.1-.71.29l-9 9h.01c-.39.39-.39 1.03 0 1.42h-.01l9 9c.21.19.45.29.71.29s.5-.1.71-.29l9-9h-.01c.39-.39.39-1.03 0-1.42M13 8.28V5.41l4.3 4.3zm-2 0L6.7 9.71l4.3-4.3zm1 1.77L17.84 12 12 13.95 6.16 12zm-1 5.67v2.87l-4.3-4.3zm2 0 4.3-1.43-4.3 4.3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/odnoklassniki.svg��������������������������0000664�0000000�0000000�00000001243�14753064456�0027000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.83 12.74c-.28-.57-1.07-1.05-2.12-.24-1.43 1.14-3.71 1.14-3.71 1.14s-2.28 0-3.71-1.14c-1.05-.81-1.84-.33-2.12.24-.5 1 .06 1.49 1.33 2.3 1.09.7 2.58.96 3.54 1.06l-.8.8C9.1 18.03 8 19.12 7.25 19.88c-.45.46-.45 1.19 0 1.62l.14.16c.45.45 1.19.45 1.64 0L12 18.68c1.15 1.13 2.24 2.22 3 2.98.45.45 1.18.45 1.64 0l.13-.16c.46-.43.46-1.16 0-1.62l-2.98-2.98-.79-.81c.95-.09 2.42-.36 3.5-1.05 1.27-.81 1.83-1.3 1.33-2.3M12 4.57c1.38 0 2.5 1.12 2.5 2.49 0 1.38-1.12 2.49-2.5 2.49S9.5 8.44 9.5 7.06c0-1.37 1.12-2.49 2.5-2.49m0 7.55c2.8 0 5.06-2.26 5.06-5.06a5.06 5.06 0 1 0-10.12 0c0 2.8 2.26 5.06 5.06 5.06"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/offer.svg����������������������������������0000664�0000000�0000000�00000000325�14753064456�0025231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 13c.6 0 1.1.2 1.4.6.4.4.6.9.6 1.4l-8 3-7-2V7h1.9l7.3 2.7c.5.2.8.6.8 1.1 0 .3-.1.6-.3.8s-.5.4-.9.4H14l-1.7-.7-.3.9 2 .8zM2 7h4v11H2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/office-building-cog-outline.svg������������0000664�0000000�0000000�00000001650�14753064456�0031403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 13a.26.26 0 0 0-.26.21l-.19 1.32c-.3.13-.59.29-.85.47l-1.24-.5c-.11 0-.24 0-.31.13l-1 1.73c-.06.11-.04.24.06.32l1.06.82a4.2 4.2 0 0 0 0 1l-1.06.82a.26.26 0 0 0-.06.32l1 1.73c.06.13.19.13.31.13l1.24-.5c.26.18.54.35.85.47l.19 1.32c.02.12.12.21.26.21h2c.11 0 .22-.09.24-.21l.19-1.32c.3-.13.57-.29.84-.47l1.23.5c.13 0 .26 0 .33-.13l1-1.73a.26.26 0 0 0-.06-.32l-1.07-.82c.02-.17.04-.33.04-.5s-.01-.33-.04-.5l1.06-.82a.26.26 0 0 0 .06-.32l-1-1.73c-.06-.13-.19-.13-.32-.13l-1.23.5c-.27-.18-.54-.35-.85-.47l-.19-1.32A.236.236 0 0 0 19 13zm1 3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5c-.84 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5M10 5h2v2h-2zm6 2h-2V5h2zm-2 2h2v2h-2zm-4 0h2v2h-2zm3.11 14H2V1h18v10.29c-.63-.18-1.3-.29-2-.29V3H4v18h6v-3.5h1.03c-.03.17-.03.33-.03.5 0 1.96.81 3.73 2.11 5M8 15H6v-2h2zm0-4H6V9h2zm0-4H6V5h2zM6 17h2v2H6zm4-4h2v1.41c-.11.19-.22.39-.32.59H10z"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/office-building-cog.svg��������������������0000664�0000000�0000000�00000001530�14753064456�0027723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 13a.26.26 0 0 0-.26.21l-.19 1.32c-.3.13-.59.29-.85.47l-1.24-.5c-.11 0-.24 0-.31.13l-1 1.73c-.06.11-.04.24.06.32l1.06.82a4.2 4.2 0 0 0 0 1l-1.06.82a.26.26 0 0 0-.06.32l1 1.73c.06.13.19.13.31.13l1.24-.5c.26.18.54.35.85.47l.19 1.32c.02.12.12.21.26.21h2c.11 0 .22-.09.24-.21l.19-1.32c.3-.13.57-.29.84-.47l1.23.5c.13 0 .26 0 .33-.13l1-1.73a.26.26 0 0 0-.06-.32l-1.07-.82c.02-.17.04-.33.04-.5s-.01-.33-.04-.5l1.06-.82a.26.26 0 0 0 .06-.32l-1-1.73c-.06-.13-.19-.13-.32-.13l-1.23.5c-.27-.18-.54-.35-.85-.47l-.19-1.32A.236.236 0 0 0 18 13zm1 3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5c-.84 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5m-1-5.42V3H2v18h6v-3.5h2.03c.23-3.3 2.74-5.96 5.97-6.42M6 19H4v-2h2zm0-4H4v-2h2zm0-4H4V9h2zm0-4H4V5h2zm6-2h2v2h-2zm0 4h2v2h-2zm-2 6H8v-2h2zm0-4H8V9h2zM8 7V5h2v2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/office-building-marker-outline.svg���������0000664�0000000�0000000�00000000671�14753064456�0032116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 9h2v2h-2zm2-4h-2v2h2zm-6 10h2v-2h-2zm2-10h-2v2h2zm-2 6h2V9h-2zM9 5H7v2h2zm0 4H7v2h2zm5.55 12H13v-3.5h-2V21H5V3h14v8.03c.71.06 1.39.28 2 .6V1H3v22h12.91c-.41-.56-.91-1.24-1.36-2M7 19h2v-2H7zm2-6H7v2h2zm13 3.5c0 2.6-3.5 6.5-3.5 6.5S15 19.1 15 16.5c0-1.9 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5m-2.3.1c0-.6-.6-1.2-1.2-1.2s-1.2.5-1.2 1.2c0 .6.5 1.2 1.2 1.2s1.3-.6 1.2-1.2"/></svg>�����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/office-building-marker.svg�����������������0000664�0000000�0000000�00000000737�14753064456�0030444�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.19 21C14.12 19.43 13 17.36 13 15.5c0-1.83.96-3.5 2.4-4.5H15V9h2v1.23c.5-.14 1-.23 1.5-.23.17 0 .34 0 .5.03V3H5v18h6v-3.5h2V21zM15 5h2v2h-2zM9 19H7v-2h2zm0-4H7v-2h2zm0-4H7V9h2zm0-4H7V5h2zm2-2h2v2h-2zm0 4h2v2h-2zm0 6v-2h2v2zm7.5-3c-1.9 0-3.5 1.61-3.5 3.5 0 2.61 3.5 6.5 3.5 6.5s3.5-3.89 3.5-6.5c0-1.89-1.6-3.5-3.5-3.5m0 4.81c-.7 0-1.2-.6-1.2-1.2 0-.7.6-1.2 1.2-1.2s1.2.59 1.2 1.2c.1.6-.5 1.2-1.2 1.2"/></svg>���������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/office-building-minus-outline.svg����������0000664�0000000�0000000�00000000510�14753064456�0031760�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 11h-2V9h2zm2 0h2V9h-2zm-.6 10H12v-3.5h-2V21H4V3h14v10.1c.3-.1.7-.1 1-.1s.7 0 1 .1V1H2v22h12.5c-.5-.6-.9-1.3-1.1-2M14 7h2V5h-2zm2 6.8V13h-2v2h.5q.75-.75 1.5-1.2M8 5H6v2h2zm0 4H6v2h2zM6 19h2v-2H6zm6-14h-2v2h2zm-2 10h2v-2h-2zm-2-2H6v2h2zm7 5v2h8v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/office-building-minus.svg������������������0000664�0000000�0000000�00000000446�14753064456�0030313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.4 21c-.2-.6-.4-1.3-.4-2 0-1.5.6-2.9 1.5-4H13v-2h2v1.5c.6-.5 1.3-.9 2-1.2V3H3v18h6v-3.5h2V21zM13 5h2v2h-2zm0 4h2v2h-2zM7 19H5v-2h2zm0-4H5v-2h2zm0-4H5V9h2zm0-4H5V5h2zm2-2h2v2H9zm0 4h2v2H9zm0 6v-2h2v2zm14 3v2h-8v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/office-building-outline.svg����������������0000664�0000000�0000000�00000000403�14753064456�0030630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3v18h-6v-3.5h-2V21H5V3zm-4 4h2V5h-2zm-4 0h2V5h-2zM7 7h2V5H7zm8 4h2V9h-2zm-4 0h2V9h-2zm-4 0h2V9H7zm8 4h2v-2h-2zm-4 0h2v-2h-2zm-4 0h2v-2H7zm8 4h2v-2h-2zm-8 0h2v-2H7zM21 1H3v22h18z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/office-building-plus-outline.svg�����������0000664�0000000�0000000�00000000535�14753064456�0031617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 11h-2V9h2zm2 0h2V9h-2zm-.6 10H12v-3.5h-2V21H4V3h14v10.1c.3-.1.7-.1 1-.1s.7 0 1 .1V1H2v22h12.5c-.5-.6-.9-1.3-1.1-2M14 7h2V5h-2zm2 6.8V13h-2v2h.5q.75-.75 1.5-1.2M8 5H6v2h2zm0 4H6v2h2zM6 19h2v-2H6zm6-14h-2v2h2zm-2 10h2v-2h-2zm-2-2H6v2h2zm10 2v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/office-building-plus.svg�������������������0000664�0000000�0000000�00000000472�14753064456�0030142�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.4 21c-.2-.6-.4-1.3-.4-2 0-1.5.6-2.9 1.5-4H13v-2h2v1.5c.6-.5 1.3-.9 2-1.2V3H3v18h6v-3.5h2V21zM13 5h2v2h-2zm0 4h2v2h-2zM7 19H5v-2h2zm0-4H5v-2h2zm0-4H5V9h2zm0-4H5V5h2zm2-2h2v2H9zm0 4h2v2H9zm0 6v-2h2v2zm11 0v3h3v2h-3v3h-2v-3h-3v-2h3v-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/office-building-remove-outline.svg���������0000664�0000000�0000000�00000000637�14753064456�0032134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 11h-2V9h2zm2 0h2V9h-2zm-.6 10H12v-3.5h-2V21H4V3h14v10.1c.3-.1.7-.1 1-.1s.7 0 1 .1V1H2v22h12.5c-.5-.6-.9-1.3-1.1-2M14 7h2V5h-2zm2 6.8V13h-2v2h.5q.75-.75 1.5-1.2M8 5H6v2h2zm0 4H6v2h2zM6 19h2v-2H6zm6-14h-2v2h2zm-2 10h2v-2h-2zm-2-2H6v2h2zm13.1 2.5L19 17.6l-2.1-2.1-1.4 1.4 2.1 2.1-2.1 2.1 1.4 1.4 2.1-2.1 2.1 2.1 1.4-1.4-2.1-2.1 2.1-2.1z"/></svg>�������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/office-building-remove.svg�����������������0000664�0000000�0000000�00000000572�14753064456�0030455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.4 21c-.2-.6-.4-1.3-.4-2 0-1.5.6-2.9 1.5-4H13v-2h2v1.5c.6-.5 1.3-.9 2-1.2V3H3v18h6v-3.5h2V21zM13 5h2v2h-2zm0 4h2v2h-2zM7 19H5v-2h2zm0-4H5v-2h2zm0-4H5V9h2zm0-4H5V5h2zm2-2h2v2H9zm0 4h2v2H9zm0 6v-2h2v2zm13.5 1.9L20.4 19l2.1 2.1-1.4 1.4-2.1-2.1-2.1 2.1-1.4-1.4 2.1-2.1-2.1-2.1 1.4-1.4 2.1 2.1 2.1-2.1z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/office-building.svg������������������������0000664�0000000�0000000�00000000350�14753064456�0027154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3v18h6v-3.5h2V21h6V3zm2 2h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zM7 9h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zm-8 4h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zm-8 4h2v2H7zm8 0h2v2h-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/oil-lamp.svg�������������������������������0000664�0000000�0000000�00000000473�14753064456�0025646�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 20h11v2H5m6-17h-1a2 2 0 0 0-2 2h5a2 2 0 0 0-2-2m5 3h6a2 2 0 0 1-2 2h-1a4 4 0 0 0-4 4v1a4 4 0 0 1-4 4h-1a4 4 0 0 1-4-4H4a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2m2 2H4v3h2m13-8a2 2 0 0 1 2 2h1a2.9 2.9 0 0 0-3-3 2 2 0 0 1-2-2h-1a2.9 2.9 0 0 0 3 3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/oil-level.svg������������������������������0000664�0000000�0000000�00000001776�14753064456�0026033�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 18c-1.33 0-2.21.79-2.71 1.29S4.67 20 4 20s-.79-.21-1.29-.71c-.36-.36-.92-.87-1.71-1.13v2.25c.09.09.18.18.29.3.5.5 1.38 1.29 2.71 1.29s2.21-.79 2.71-1.29S7.33 20 8 20s.79.21 1.29.71c.44.43 1.15 1.09 2.21 1.25.16.04.33.04.5.04 1.33 0 2.21-.79 2.71-1.29S15.33 20 16 20s.79.21 1.29.71S18.67 22 20 22s2.21-.79 2.71-1.29c.11-.12.2-.21.29-.3v-2.25c-.79.26-1.35.77-1.71 1.13-.5.5-.62.71-1.29.71s-.79-.21-1.29-.71S17.33 18 16 18s-2.21.79-2.71 1.29-.62.71-1.29.71c-.22 0-.37-.03-.5-.08-.28-.1-.45-.29-.79-.63C10.21 18.79 9.33 18 8 18m14-7.5s2 2.17 2 3.5c0 1.1-.9 2-2 2s-2-.9-2-2c0-1.33 2-3.5 2-3.5m.5-3.37-3.26-1.89L12.73 9c-.34-.6-.99-1-1.73-1H9V6h1c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1h1v2H5c-1.1 0-2 .9-2 2v3c0 1.1.9 2 2 2h9c.75 0 1.41-.42 1.75-1.03l3.65-6.32 2.1 1.21c.5.28 1.09.11 1.37-.36.27-.5.13-1.1-.37-1.37M14 13H5v-3h6.69l.91 1.43 3.46-2zM3.5 6.92l-1.71 1.7A1 1 0 0 1 .38 7.21L2.09 5.5a1 1 0 0 1 1.41 0c.39.39.39 1 0 1.42"/></svg>��mkdocs-material-9.6.4/material/templates/.icons/material/oil-temperature.svg������������������������0000664�0000000�0000000�00000000753�14753064456�0027253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 5h3V3h-3V2c0-.6-.4-1-1-1s-1 .4-1 1v13.3c-.6.3-1 1-1 1.7 0 1.1.9 2 2 2s2-.9 2-2c0-.7-.4-1.4-1-1.7V13h3v-2h-3V9h3V7h-3zm12 12.5s2 2.2 2 3.5c0 1.1-.9 2-2 2s-2-.9-2-2c0-1.3 2-3.5 2-3.5m.9-2c-.3.5-.9.6-1.4.4l-2.1-1.2-3.6 6.3c-.3.6-1 1-1.8 1H5c-1.1 0-2-.9-2-2v-3c0-1.1.9-2 2-2v5h9l2.1-3.6-3.1 1.8v-2.4l6.2-3.6 3.3 1.9c.5.3.6.9.4 1.4M3.5 13.9l-1.7 1.7c-.4.4-1 .4-1.4 0s-.4-1 0-1.4l1.7-1.7c.4-.4 1-.4 1.4 0s.4 1 0 1.4"/></svg>���������������������mkdocs-material-9.6.4/material/templates/.icons/material/oil.svg������������������������������������0000664�0000000�0000000�00000001017�14753064456�0024712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 12.5s2 2.17 2 3.5a2 2 0 0 1-2 2 2 2 0 0 1-2-2c0-1.33 2-3.5 2-3.5M6 6h4a1 1 0 0 1 1 1 1 1 0 0 1-1 1H9v2h2c.74 0 1.39.4 1.73 1l6.51-3.76 3.26 1.89c.5.27.64.87.37 1.37-.28.47-.87.64-1.37.36l-2.1-1.21-3.65 6.32c-.34.61-1 1.03-1.75 1.03H5a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h2V8H6a1 1 0 0 1-1-1 1 1 0 0 1 1-1m-1 6v3h9l2.06-3.57-3.46 2-.91-1.43zM.38 9.21 2.09 7.5c.41-.39 1.02-.39 1.41 0s.39 1 0 1.41l-1.71 1.71c-.39.38-1.02.38-1.41 0C0 10.23 0 9.6.38 9.21"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/om.svg�������������������������������������0000664�0000000�0000000�00000000543�14753064456�0024545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15 2-1.5 1.5L15 5l1.5-1.5zm-4 1c-1 6 6 7 9 3l-2-1.5C17 6 13 8 11 3M9 7C7 7 4.5 8.5 4.5 8.5L6 11c1-1 3-1.5 4-1 2 1-1 3-3 2v3.5c3-1.5 5 .5 4 2C8 22 3 16 3 13c-2 6 3 9 6 9s5-2 3.5-7H14c-1.5 4.5 4 9 7 3 1-2 1-8.5-4-8.5-4 0-3 5.5-6.5 4C14 10 12 7 9 7m10 5c3 3-4 9-4 3 0-2 2-4.5 4-3"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/omega.svg����������������������������������0000664�0000000�0000000�00000000673�14753064456�0025226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.15 19h-5.76v-2.13c2.11-1.62 3.2-3.63 3.2-6.03 0-1.5-.43-2.68-1.27-3.55C14.47 6.42 13.37 6 12.03 6c-1.35 0-2.46.42-3.32 1.3-.87.87-1.3 2.07-1.3 3.58 0 2.38 1.09 4.38 3.2 5.99V19H4.85v-2.13h3.56c-2.37-1.55-3.56-3.64-3.56-6.27 0-2.1.65-3.74 1.96-4.94 1.31-1.21 3.03-1.81 5.16-1.81 2.18 0 3.92.6 5.22 1.79 1.31 1.19 1.96 2.86 1.96 4.94 0 2.63-1.2 4.73-3.6 6.29h3.6z"/></svg>���������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/one-up.svg���������������������������������0000664�0000000�0000000�00000001106�14753064456�0025331�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 19c-.6 0-1-.4-1-1v-1c0-.5.4-1 1-1 .5 0 1 .4 1 1v1c0 .6-.4 1-1 1m5-1v-1c0-.5-.4-1-1-1-.5 0-1 .4-1 1v1c0 .5.4 1 1 1s1-.4 1-1m7-6c0 2.6-1.6 4.9-4 6.4V20a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2v-1.6c-2.4-1.5-4-3.8-4-6.4A10 10 0 0 1 12 2a10 10 0 0 1 10 10M7 10c0-1.1-.6-2.1-1.5-2.6C4.5 8.7 4 10.3 4 12c0 .3 0 .7.1 1 1.6-.1 2.9-1.4 2.9-3m2-1c0 1.7 1.3 3 3 3s3-1.3 3-3-1.3-3-3-3-3 1.3-3 3m7 11v-4.5c-1.2-.3-2.6-.5-4-.5s-2.8.2-4 .5V20zm3.9-7c.1-.3.1-.7.1-1 0-1.7-.5-3.3-1.5-4.6-.9.5-1.5 1.5-1.5 2.6 0 1.6 1.3 2.9 2.9 3"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/onepassword.svg����������������������������0000664�0000000�0000000�00000000476�14753064456�0026503�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1C5.92 1 1 5.92 1 12s4.92 11 11 11 11-4.92 11-11S18.08 1 12 1m0 19a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8m1-6.5c0 .63.4 1.2 1 1.41V18h-4v-6.09c.78-.27 1.19-1.11.93-1.91a1.5 1.5 0 0 0-.93-.91V6h4v6.09c-.6.21-1 .78-1 1.41"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/opacity.svg��������������������������������0000664�0000000�0000000�00000000443�14753064456�0025601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.66 8 12 2.35 6.34 8A8.02 8.02 0 0 0 4 13.64c0 2 .78 4.11 2.34 5.67a7.99 7.99 0 0 0 11.32 0c1.56-1.56 2.34-3.67 2.34-5.67S19.22 9.56 17.66 8M6 14c0-2 .62-3.27 1.76-4.4L12 5.27l4.24 4.38C17.38 10.77 18 12 18 14z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/open-in-app.svg����������������������������0000664�0000000�0000000�00000000275�14753064456�0026257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 10-4 4h3v6h2v-6h3m3-10H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h4v-2H5V8h14v10h-4v2h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/open-in-new.svg����������������������������0000664�0000000�0000000�00000000305�14753064456�0026262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3m-2 16H5V5h7V3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7h-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/open-source-initiative.svg�����������������0000664�0000000�0000000�00000001267�14753064456�0030540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.41 22h-.19a.46.46 0 0 1-.26-.27l-2.22-5.8c-.09-.24.03-.51.26-.61.71-.26 1.28-.82 1.58-1.49.64-1.43 0-3.1-1.43-3.74s-3.1 0-3.74 1.41c-.3.71-.32 1.5-.05 2.19.3.74.89 1.31 1.64 1.59.24.09.37.36.28.61L9 21.69c-.04.12-.13.22-.25.27-.12.04-.25.04-.36 0C3.24 19.97.67 14.18 2.66 9.03s7.78-7.72 12.93-5.73c2.47.96 4.46 2.85 5.54 5.27a9.9 9.9 0 0 1 .2 7.65c-1.01 2.66-3.1 4.78-5.75 5.78zM12 3.59c-4.97-.13-9.1 3.8-9.23 8.77a9.01 9.01 0 0 0 5.55 8.54l1.89-4.9c-1.83-1-2.52-3.28-1.53-5.11a3.784 3.784 0 0 1 5.11-1.53 3.775 3.775 0 0 1 0 6.64l1.89 4.93a9.11 9.11 0 0 0 4.76-5c1.84-4.62-.4-9.85-5.02-11.7A9.1 9.1 0 0 0 12 3.59"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/openid.svg���������������������������������0000664�0000000�0000000�00000000444�14753064456�0025410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14 2-3 1.5v16.44C7 19.5 4 17.46 4 15c0-2.25 2.5-4.15 6-4.78V8.19c-5.14.69-9 3.47-9 6.81 0 3.56 4.36 6.5 10 6.94h.09L14 20.5zm1 6.19v2.03c1.15.21 2.18.55 3.06 1L16.5 12l6.5 1.5-.5-4.5-2 1C19 9.12 17.12 8.47 15 8.19"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/opera.svg����������������������������������0000664�0000000�0000000�00000000605�14753064456�0025237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.04 17.07c-1-1.17-1.64-2.91-1.69-4.86v-.42c.05-1.95.69-3.69 1.69-4.86.82-.98 1.89-1.56 3.06-1.56 2.62 0 4.74 2.97 4.74 6.63s-2.12 6.63-4.74 6.63c-1.17 0-1.77-.13-3.06-1.56M12.03 3H12a9 9 0 0 0-9 9c0 4.83 3.8 8.77 8.57 9H12c2.3 0 4.4-.87 6-2.29 1.84-1.65 3-4.04 3-6.71s-1.16-5.06-3-6.71A8.94 8.94 0 0 0 12.03 3"/></svg>���������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/orbit-variant.svg��������������������������0000664�0000000�0000000�00000000513�14753064456�0026710�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19 8-4 4h3c0 3.31-2.69 6-6 6-1 0-1.97-.25-2.8-.7l-1.46 1.46A7.93 7.93 0 0 0 12 20c4.42 0 8-3.58 8-8h3M6 12c0-3.31 2.69-6 6-6 1 0 1.97.25 2.8.7l1.46-1.46A7.93 7.93 0 0 0 12 4c-4.42 0-8 3.58-8 8H1l4 4 4-4m5 0c0 1.11-.89 2-2 2s-2-.89-2-2 .9-2 2-2 2 .9 2 2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/orbit.svg����������������������������������0000664�0000000�0000000�00000000673�14753064456�0025255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.11 1.75C9.3 1.25 10.62 1 12 1c6.08 0 11 4.92 11 11s-4.92 11-11 11S1 18.08 1 12c0-1.38.25-2.7.72-3.92a4.5 4.5 0 0 0 1.73 1.1C3.16 10.07 3 11 3 12a9 9 0 0 0 9 9 9 9 0 0 0 9-9 9 9 0 0 0-9-9c-1 0-1.93.16-2.82.45-.22-.62-.57-1.21-1.07-1.7M4.93 2.93a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2c0-1.11.89-2 2-2M12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5"/></svg>���������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/order-alphabetical-ascending.svg�����������0000664�0000000�0000000�00000000327�14753064456�0031605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 5h10v2H12m0 12v-2h10v2m-10-8h10v2H12m-3 0v2l-3.33 4H9v2H3v-2l3.33-4H3v-2M7 3H5c-1.1 0-2 .9-2 2v6h2V9h2v2h2V5a2 2 0 0 0-2-2m0 4H5V5h2Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/order-alphabetical-descending.svg����������0000664�0000000�0000000�00000000326�14753064456�0031754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 13H5c-1.1 0-2 .9-2 2v6h2v-2h2v2h2v-6a2 2 0 0 0-2-2m0 4H5v-2h2M9 3v2L5.67 9H9v2H3V9l3.33-4H3V3m9 2h10v2H12m0 12v-2h10v2m-10-8h10v2H12Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/order-bool-ascending-variant.svg�����������0000664�0000000�0000000�00000000527�14753064456�0031573�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 13c-1.11 0-2 .89-2 2v4c0 1.11.89 2 2 2h4c1.11 0 2-.89 2-2v-4c0-1.11-.89-2-2-2m.2 1.5 1.06 1.05-3.99 3.95-2.53-2.55 1.07-1.05 1.47 1.49M4 3c-1.11 0-2 .89-2 2v4c0 1.11.89 2 2 2h4c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2M4 5h4v4H4m8-4h10v2H12m0 12v-2h10v2m-10-8h10v2H12Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/order-bool-ascending.svg�������������������0000664�0000000�0000000�00000000424�14753064456�0030125�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 3C3.79 3 2 4.79 2 7s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4m0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m0 4c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4m6-8h10v2H12zm0 14v-2h10v2zm0-8h10v2H12z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/order-bool-descending-variant.svg����������0000664�0000000�0000000�00000000527�14753064456�0031743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3c-1.11 0-2 .89-2 2v4c0 1.11.89 2 2 2h4c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2m.2 1.5 1.06 1.05L5.27 9.5 2.74 6.95 3.81 5.9l1.47 1.49M4 13c-1.11 0-2 .89-2 2v4c0 1.11.89 2 2 2h4c1.11 0 2-.89 2-2v-4c0-1.11-.89-2-2-2m-4 2h4v4H4m8-14h10v2H12m0 12v-2h10v2m-10-8h10v2H12Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/order-bool-descending.svg������������������0000664�0000000�0000000�00000000425�14753064456�0030276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 13c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4m0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2M6 3C3.79 3 2 4.79 2 7s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4m6 2h10v2H12zm0 14v-2h10v2zm0-8h10v2H12z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/order-numeric-ascending.svg����������������0000664�0000000�0000000�00000000444�14753064456�0030636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 21H3v-2h4v-1H5a2 2 0 0 1-2-2v-1c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v4c0 1.11-.89 2-2 2m0-6H5v1h2M5 3h2a2 2 0 0 1 2 2v4c0 1.11-.89 2-2 2H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2m0 6h2V5H5m7 0h10v2H12m0 12v-2h10v2m-10-8h10v2H12Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/order-numeric-descending.svg���������������0000664�0000000�0000000�00000000445�14753064456�0031007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 11H3V9h4V8H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v4c0 1.11-.89 2-2 2m0-6H5v1h2m-2 7h2a2 2 0 0 1 2 2v4c0 1.11-.89 2-2 2H5a2 2 0 0 1-2-2v-4c0-1.1.9-2 2-2m0 6h2v-4H5m7-10h10v2H12m0 12v-2h10v2m-10-8h10v2H12Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/origin.svg���������������������������������0000664�0000000�0000000�00000000707�14753064456�0025423�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2.13c0 .1-.05.2-.11.28-.39.59-.73 1.23-.85 1.92l-.04.23 1-.06a7.5 7.5 0 0 1 7.5 7.5c0 1.62-.5 3.11-1.38 4.34-1.39 2.34-3.4 4.31-5.78 5.63-.09.03-.22.03-.28-.04-.06-.1-.06-.23.03-.32.38-.52.64-1.11.78-1.76l.06-.41-.93.06A7.5 7.5 0 0 1 4.5 12c0-1.61.5-3.11 1.38-4.33C7.26 5.32 9.28 3.34 11.67 2c.11-.05.27 0 .33.13M12 9a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3"/></svg>���������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ornament-variant.svg�����������������������0000664�0000000�0000000�00000001145�14753064456�0027416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1a3 3 0 0 1 3 3v1a1 1 0 0 1 1 1v1.07c2.39 1.38 4 3.97 4 6.93a8 8 0 0 1-8 8 8 8 0 0 1-8-8c0-2.96 1.61-5.55 4-6.93V6a1 1 0 0 1 1-1V4a3 3 0 0 1 3-3m0 2a1 1 0 0 0-1 1v1h2V4a1 1 0 0 0-1-1m0 5c-1.78 0-3.37.77-4.47 2h8.94c-1.1-1.23-2.69-2-4.47-2m0 12c1.78 0 3.37-.77 4.47-2H7.53c1.1 1.23 2.69 2 4.47 2m0-8a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m6 2c0-.69-.12-1.35-.33-2-.95.19-1.67 1-1.67 2s.72 1.81 1.67 1.97c.21-.62.33-1.28.33-1.97M6 14c0 .69.12 1.35.33 1.97C7.28 15.81 8 15 8 14s-.72-1.81-1.67-2c-.21.65-.33 1.31-.33 2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ornament.svg�������������������������������0000664�0000000�0000000�00000001002�14753064456�0025744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1a3 3 0 0 1 3 3v1a1 1 0 0 1 1 1v1.07c2.39 1.38 4 3.97 4 6.93a8 8 0 0 1-8 8 8 8 0 0 1-8-8c0-2.96 1.61-5.55 4-6.93V6a1 1 0 0 1 1-1V4a3 3 0 0 1 3-3m0 2a1 1 0 0 0-1 1v1h2V4a1 1 0 0 0-1-1m0 5c-1.78 0-3.37.77-4.47 2h8.94c-1.1-1.23-2.69-2-4.47-2m-5.66 8h1.25L6 14.43c.05.57.17 1.07.34 1.57m6.25 0-4-4H6.41l4 4zm5.07-4h-1.25L18 13.57c-.05-.57-.17-1.07-.34-1.57m-6.25 0 4 4h2.18l-4-4zm.59 8c1.78 0 3.37-.77 4.47-2H7.53c1.1 1.23 2.69 2 4.47 2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/outdoor-lamp.svg���������������������������0000664�0000000�0000000�00000000401�14753064456�0026545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 22h-2c-1.1 0-2-.9-2-2v-5h6v5c0 1.1-.9 2-2 2m-8-8h14l-6-4.29V6c0-1.61-1.06-4-4-4S7 4.39 7 6c0 .45-.19 1-1 1H5V3H3v9h2V9h1c2.2 0 3-1.79 3-3 0-.33.1-2 2-2 1.83 0 2 1.54 2 2v3.71z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/overscan.svg�������������������������������0000664�0000000�0000000�00000000344�14753064456�0025751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 5.5 10 8h4zm6 4.5v4l2.5-2zM6 10l-2.5 2L6 14zm8 6h-4l2 2.5zm7-13H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 16H3V5h18z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/owl.svg������������������������������������0000664�0000000�0000000�00000001223�14753064456�0024727�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 16c.56.84 1.31 1.53 2.2 2L12 20.2 9.8 18c.89-.47 1.65-1.16 2.2-2m5-4.8a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m-10 0a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m10-2.5a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m-10 0a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4M2.24 1c1.76 3.7.49 6.46-.69 9.2-.36.8-.55 1.63-.55 2.5a6 6 0 0 0 6 6c.21-.01.42-.02.63-.05l2.96 2.96L12 23l1.41-1.39 2.96-2.96c.21.03.42.04.63.05a6 6 0 0 0 6-6c0-.87-.19-1.7-.55-2.5C21.27 7.46 20 4.7 21.76 1c-2.64 2.06-6.4 3.69-9.76 3.7C8.64 4.69 4.88 3.06 2.24 1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pac-man.svg��������������������������������0000664�0000000�0000000�00000000350�14753064456�0025442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 12 7.07 7.07a9.953 9.953 0 0 1-14.14 0C1 15.17 1 8.84 4.93 4.93 8.83 1 15.16 1 19.07 4.93zm7-2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/package-check.svg��������������������������0000664�0000000�0000000�00000000500�14753064456�0026571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 3q-.75 0-1.2.6L3.5 5.2c-.3.4-.5.8-.5 1.3V19c0 1.1.9 2 2 2h8.3c-.2-.6-.3-1.3-.3-2 0-3.3 2.7-6 6-6 .7 0 1.4.1 2 .3V6.5c0-.5-.2-.9-.5-1.3l-1.4-1.7c-.2-.3-.6-.5-1.1-.5zm-.1 1h12l.9 1H5.1zM6 15h6v3H6zm15.3.8-3.6 3.6-1.6-1.6L15 19l2.8 3 4.8-4.8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/package-down.svg���������������������������0000664�0000000�0000000�00000000441�14753064456�0026467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5.12 5 .81-1h12l.94 1M12 17.5 6.5 12H10v-2h4v2h3.5zm8.54-12.27-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6 3 6.5V19a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6.5c0-.5-.17-.93-.46-1.27"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/package-up.svg�����������������������������0000664�0000000�0000000�00000000425�14753064456�0026146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.54 5.23c.29.34.46.77.46 1.27V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6.5c0-.5.17-.93.46-1.27l1.38-1.68C5.12 3.21 5.53 3 6 3h12c.47 0 .88.21 1.15.55zM5.12 5h13.75l-.94-1h-12zM12 9.5 6.5 15H10v2h4v-2h3.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/package-variant-closed-check.svg�����������0000664�0000000�0000000�00000000620�14753064456�0031505�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c-.2 0-.4.1-.6.2L3.5 6.6c-.3.2-.5.5-.5.9v9c0 .4.2.7.5.9l7.9 4.4c.2.1.4.2.6.2s.4-.1.6-.2l.9-.5c-.3-.6-.4-1.3-.5-2v-6.7l6-3.4V13c.7 0 1.4.1 2 .3V7.5c0-.4-.2-.7-.5-.9l-7.9-4.4c-.2-.1-.4-.2-.6-.2m0 2.2 6 3.3-2 1.1-5.9-3.4zM8.1 6.3 14 9.8l-2 1.1-6-3.4zM5 9.2l6 3.4v6.7l-6-3.4zm16.3 6.6-3.6 3.6-1.6-1.6L15 19l2.8 3 4.8-4.8z"/></svg>����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/package-variant-closed-minus.svg�����������0000664�0000000�0000000�00000000550�14753064456�0031565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13 12.6 6-3.4V13c.7 0 1.4.1 2 .4V7.5c0-.4-.2-.7-.5-.9l-7.9-4.4c-.2-.1-.4-.2-.6-.2s-.4.1-.6.2L3.5 6.6c-.3.2-.5.5-.5.9v9c0 .4.2.7.5.9l7.9 4.4c.2.1.4.2.6.2s.4-.1.6-.2l.9-.5c-.3-.6-.4-1.3-.5-2M12 4.2l6 3.3-2 1.1-5.9-3.4zm-1 15.1-6-3.4V9.2l6 3.4zm1-8.5L6 7.5l2-1.2 6 3.5zM23 18v2h-8v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/package-variant-closed-plus.svg������������0000664�0000000�0000000�00000000601�14753064456�0031412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19.3v-6.7l6-3.4V13c.7 0 1.4.1 2 .4V7.5c0-.4-.2-.7-.5-.9l-7.9-4.4c-.2-.1-.4-.2-.6-.2s-.4.1-.6.2L3.5 6.6c-.3.2-.5.5-.5.9v9c0 .4.2.7.5.9l7.9 4.4c.2.1.4.2.6.2s.4-.1.6-.2l.9-.5c-.3-.6-.4-1.3-.5-2M12 4.2l6 3.3-2 1.1-5.9-3.4zm-1 15.1-6-3.4V9.2l6 3.4zm1-8.5L6 7.5l2-1.2 6 3.5zm8 4.2v3h3v2h-3v3h-2v-3h-3v-2h3v-3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/package-variant-closed-remove.svg����������0000664�0000000�0000000�00000000672�14753064456�0031734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13 12.6 6-3.4V13c.7 0 1.4.1 2 .4V7.5c0-.4-.2-.7-.5-.9l-7.9-4.4c-.2-.1-.4-.2-.6-.2s-.4.1-.6.2L3.5 6.6c-.3.2-.5.5-.5.9v9c0 .4.2.7.5.9l7.9 4.4c.2.1.4.2.6.2s.4-.1.6-.2l.9-.5c-.3-.6-.4-1.3-.5-2M12 4.2l6 3.3-2 1.1-5.9-3.4zm-1 15.1-6-3.4V9.2l6 3.4zm1-8.5L6 7.5l2-1.2 6 3.5zm4.9 4.7 2.1 2.1 2.1-2.1 1.4 1.4-2.1 2.1 2.1 2.1-1.4 1.4-2.1-2.1-2.1 2.1-1.4-1.4 2.1-2.1-2.1-2.1z"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/package-variant-closed.svg�����������������0000664�0000000�0000000�00000000630�14753064456�0030433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 16.5c0 .38-.21.71-.53.88l-7.9 4.44c-.16.12-.36.18-.57.18s-.41-.06-.57-.18l-7.9-4.44A.99.99 0 0 1 3 16.5v-9c0-.38.21-.71.53-.88l7.9-4.44c.16-.12.36-.18.57-.18s.41.06.57.18l7.9 4.44c.32.17.53.5.53.88zM12 4.15l-1.89 1.07L16 8.61l1.96-1.11zM6.04 7.5 12 10.85l1.96-1.1-5.88-3.4zM5 15.91l6 3.38v-6.71L5 9.21zm14 0v-6.7l-6 3.37v6.71z"/></svg>��������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/package-variant-minus.svg������������������0000664�0000000�0000000�00000000671�14753064456�0030322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 15.6c.3.2.7.2 1 0l5-2.9v.3c.7 0 1.4.1 2 .4v-1.8l1-.6c.5-.3.6-.9.4-1.4l-1.5-2.5c-.1-.2-.2-.4-.4-.5l-7.9-4.4c-.2-.1-.4-.2-.6-.2s-.4.1-.6.2L3.6 6.6c-.2.1-.4.2-.5.4L1.6 9.6c-.3.5-.1 1.1.4 1.4.3.2.7.2 1 0v5.5c0 .4.2.7.5.9l7.9 4.4c.2.1.4.2.6.2s.4-.1.6-.2l.9-.5c-.3-.6-.4-1.3-.5-2m-2 0-6-3.4V9.2l6 3.4zm9.1-9.6-6.3 3.6-.6-1 6.3-3.6zM12 10.8V4.2l6 3.3zM23 20h-8v-2h8z"/></svg>�����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/package-variant-plus.svg�������������������0000664�0000000�0000000�00000000715�14753064456�0030151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 15.6c.3.2.7.2 1 0l5-2.9v.3c.7 0 1.4.1 2 .4v-1.8l1-.6c.5-.3.6-.9.4-1.4l-1.5-2.5c-.1-.2-.2-.4-.4-.5l-7.9-4.4c-.2-.1-.4-.2-.6-.2s-.4.1-.6.2L3.6 6.6c-.2.1-.4.2-.5.4L1.6 9.6c-.3.5-.1 1.1.4 1.4.3.2.7.2 1 0v5.5c0 .4.2.7.5.9l7.9 4.4c.2.1.4.2.6.2s.4-.1.6-.2l.9-.5c-.3-.6-.4-1.3-.5-2m-2 0-6-3.4V9.2l6 3.4zm9.1-9.6-6.3 3.6-.6-1 6.3-3.6zM12 10.8V4.2l6 3.3zm8 4.2v3h3v2h-3v3h-2v-3h-3v-2h3v-3z"/></svg>���������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/package-variant-remove.svg�����������������0000664�0000000�0000000�00000001014�14753064456�0030454�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 15.6c.3.2.7.2 1 0l5-2.9v.3c.7 0 1.4.1 2 .4v-1.8l1-.6c.5-.3.6-.9.4-1.4l-1.5-2.5c-.1-.2-.2-.4-.4-.5l-7.9-4.4c-.2-.1-.4-.2-.6-.2s-.4.1-.6.2L3.6 6.6c-.2.1-.4.2-.5.4L1.6 9.6c-.3.5-.1 1.1.4 1.4.3.2.7.2 1 0v5.5c0 .4.2.7.5.9l7.9 4.4c.2.1.4.2.6.2s.4-.1.6-.2l.9-.5c-.3-.6-.4-1.3-.5-2m-2 0-6-3.4V9.2l6 3.4zm9.1-9.6-6.3 3.6-.6-1 6.3-3.6zM12 10.8V4.2l6 3.3zm10.5 6.1L20.4 19l2.1 2.1-1.4 1.4-2.1-2.1-2.1 2.1-1.4-1.4 2.1-2.1-2.1-2.1 1.4-1.4 2.1 2.1 2.1-2.1z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/package-variant.svg������������������������0000664�0000000�0000000�00000001003�14753064456�0027157�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 10.96a.985.985 0 0 1-.37-1.37L3.13 7c.11-.2.28-.34.47-.42l7.83-4.4c.16-.12.36-.18.57-.18s.41.06.57.18l7.9 4.44c.19.1.35.26.44.46l1.45 2.52c.28.48.11 1.09-.36 1.36l-1 .58v4.96c0 .38-.21.71-.53.88l-7.9 4.44c-.16.12-.36.18-.57.18s-.41-.06-.57-.18l-7.9-4.44A.99.99 0 0 1 3 16.5v-5.54c-.3.17-.68.18-1 0m10-6.81v6.7l5.96-3.35zM5 15.91l6 3.38v-6.71L5 9.21zm14 0v-3.22l-5 2.9c-.33.18-.7.17-1 .01v3.69zm-5.15-2.55 6.28-3.63-.58-1.01-6.28 3.63z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/package.svg��������������������������������0000664�0000000�0000000�00000000403�14753064456�0025520�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.12 5h13.75l-.94-1h-12zm15.42.23c.29.34.46.77.46 1.27V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6.5c0-.5.17-.93.46-1.27l1.38-1.68C5.12 3.21 5.53 3 6 3h12c.47 0 .88.21 1.15.55zM6 18h6v-3H6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/page-first.svg�����������������������������0000664�0000000�0000000�00000000210�14753064456�0026162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.41 16.59 13.82 12l4.59-4.59L17 6l-6 6 6 6zM6 6h2v12H6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/page-last.svg������������������������������0000664�0000000�0000000�00000000210�14753064456�0025776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.59 7.41 10.18 12l-4.59 4.59L7 18l6-6-6-6zM16 6h2v12h-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/page-layout-body.svg�����������������������0000664�0000000�0000000�00000000240�14753064456�0027306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m0 6v8h12V8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/page-layout-footer.svg���������������������0000664�0000000�0000000�00000000242�14753064456�0027651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m0 14v4h12v-4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/page-layout-header-footer.svg��������������0000664�0000000�0000000�00000000265�14753064456�0031104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 2H6a2 2 0 0 0-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2m0 18H6v-4h12zm0-12H6V4h12z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/page-layout-header.svg���������������������0000664�0000000�0000000�00000000240�14753064456�0027601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m0 2v4h12V4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/page-layout-sidebar-left.svg���������������0000664�0000000�0000000�00000000237�14753064456�0030720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m0 6v8h4V8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/page-layout-sidebar-right.svg��������������0000664�0000000�0000000�00000000237�14753064456�0031103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m8 6v8h4V8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/page-next-outline.svg����������������������0000664�0000000�0000000�00000000345�14753064456�0027477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 3H5a2 2 0 0 0-2 2v4h2V5h17v14H5v-4H3v4a2 2 0 0 0 2 2h17a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2M7 15v-2H0v-2h7V9l4 3zm13-2h-7v-2h7zm0-4h-7V7h7zm-3 8h-4v-2h4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/page-next.svg������������������������������0000664�0000000�0000000�00000000334�14753064456�0026020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 3H5a2 2 0 0 0-2 2v6h4V9l4 3-4 3v-2H3v6a2 2 0 0 0 2 2h15a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-3 14h-4v-2h4zm3-4h-7v-2h7zm0-4h-7V7h7zM3 13H0v-2h3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/page-previous-outline.svg������������������0000664�0000000�0000000�00000000344�14753064456�0030374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3h17a2 2 0 0 1 2 2v4h-2V5H2v14h17v-4h2v4a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m15 12v-2h7v-2h-7V9l-4 3zM4 13h7v-2H4zm0-4h7V7H4zm0 8h4v-2H4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/page-previous.svg��������������������������0000664�0000000�0000000�00000000330�14753064456�0026712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 21h15a2 2 0 0 0 2-2v-6h-4v2l-4-3 4-3v2h4V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2m0-6h4v2H4zm0-4h7v2H4zm0-4h7v2H4zm17 4h3v2h-3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pail-minus-outline.svg���������������������0000664�0000000�0000000�00000000512�14753064456�0027661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 6H3V4h18v2h-1l-1.4 7c-.77.07-1.49.26-2.15.58L17.96 6H6.04l.46 2.22-1.85 1.05zm8.86 2a.976.976 0 0 0-1.36-.37l-8.23 4.75a.998.998 0 1 0 1 1.73l8.23-4.75c.47-.27.64-.89.36-1.36M13 19H8.64l-.91-4.57L5.9 15.5 7 21h6.35c-.22-.63-.35-1.3-.35-2m2-1v2h8v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pail-minus.svg�����������������������������0000664�0000000�0000000�00000000527�14753064456�0026212�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.5 9.36-8.23 4.75a.998.998 0 1 1-1-1.73l8.23-4.75a.976.976 0 0 1 1.36.37c.28.47.11 1.09-.36 1.36M13 19c0-3.18 2.47-5.77 5.6-6L20 6h1V4H3v2h1l.76 3.79 5.95-3.43A2.5 2.5 0 0 1 14.5 8.5c0 .94-.5 1.76-1.29 2.19l-7.42 4.28L7 21h6.35c-.22-.63-.35-1.3-.35-2m2-1v2h8v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pail-off-outline.svg�����������������������0000664�0000000�0000000�00000000571�14753064456�0027305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.84 22.73-3.49-3.49L17 21H7l-1.1-5.5 1.83-1.07.91 4.57h6.72l.29-1.46-6.34-6.34-5.04 2.91a.998.998 0 1 1-1-1.73l4.58-2.64-1.47-1.47-1.73 1L4 6H3V4.89L1.11 3l1.28-1.27 19.72 19.73zM17.96 6l-1.46 7.3 1.7 1.7L20 6h1V4H7.2l2 2zM11.5 7.63l-.42.25 1.45 1.45c.44-.28.6-.87.33-1.33a.976.976 0 0 0-1.36-.37"/></svg>���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pail-off.svg�������������������������������0000664�0000000�0000000�00000000614�14753064456�0025626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.84 22.73-3.49-3.49L17 21H7l-1.21-6.03 4.62-2.67-1.1-1.1-5.04 2.91a.998.998 0 1 1-1-1.73l4.58-2.64-1.1-1.1-1.99 1.15L4 6H3V4.89L1.11 3l1.28-1.27 19.72 19.73zM10.71 6.36A2.5 2.5 0 0 1 14.5 8.5c0 .77-.34 1.44-.9 1.9l4.6 4.6L20 6h1V4H7.2L10 6.78zm.79 1.27-.42.25 1.45 1.45c.44-.28.6-.87.33-1.33a.976.976 0 0 0-1.36-.37"/></svg>��������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pail-outline.svg���������������������������0000664�0000000�0000000�00000000402�14753064456�0026526�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.5 7.63a.976.976 0 0 1 1.36.37c.28.47.11 1.09-.36 1.36l-8.23 4.75a.998.998 0 1 1-1-1.73zM3 4v2h1l.65 3.27L6.5 8.22 6.04 6h11.92l-2.6 13H8.64l-.91-4.57L5.9 15.5 7 21h10l3-15h1V4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pail-plus-outline.svg����������������������0000664�0000000�0000000�00000000536�14753064456�0027517�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 6H3V4h18v2h-1l-1.4 7c-.77.07-1.49.26-2.15.58L17.96 6H6.04l.46 2.22-1.85 1.05zm8.86 2a.976.976 0 0 0-1.36-.37l-8.23 4.75a.998.998 0 1 0 1 1.73l8.23-4.75c.47-.27.64-.89.36-1.36M13 19H8.64l-.91-4.57L5.9 15.5 7 21h6.35c-.22-.63-.35-1.3-.35-2m5-4v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pail-plus.svg������������������������������0000664�0000000�0000000�00000000553�14753064456�0026041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.5 9.36-8.23 4.75a.998.998 0 1 1-1-1.73l8.23-4.75a.976.976 0 0 1 1.36.37c.28.47.11 1.09-.36 1.36M13 19c0-3.18 2.47-5.77 5.6-6L20 6h1V4H3v2h1l.76 3.79 5.95-3.43A2.5 2.5 0 0 1 14.5 8.5c0 .94-.5 1.76-1.29 2.19l-7.42 4.28L7 21h6.35c-.22-.63-.35-1.3-.35-2m5-4v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pail-remove-outline.svg��������������������0000664�0000000�0000000�00000000665�14753064456�0030034�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 6H3V4h18v2h-1l-1.4 7c-.77.07-1.49.26-2.15.58L17.96 6H6.04l.46 2.22-1.85 1.05zm8.86 2a.976.976 0 0 0-1.36-.37l-8.23 4.75a.998.998 0 1 0 1 1.73l8.23-4.75c.47-.27.64-.89.36-1.36M13 19H8.64l-.91-4.57L5.9 15.5 7 21h6.35c-.22-.63-.35-1.3-.35-2m8.12-3.54L19 17.59l-2.12-2.13-1.42 1.42L17.58 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.41-1.42L20.41 19l2.12-2.12z"/></svg>���������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pail-remove.svg����������������������������0000664�0000000�0000000�00000000702�14753064456�0026347�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.5 9.36-8.23 4.75a.998.998 0 1 1-1-1.73l8.23-4.75a.976.976 0 0 1 1.36.37c.28.47.11 1.09-.36 1.36M13 19c0-3.18 2.47-5.77 5.6-6L20 6h1V4H3v2h1l.76 3.79 5.95-3.43A2.5 2.5 0 0 1 14.5 8.5c0 .94-.5 1.76-1.29 2.19l-7.42 4.28L7 21h6.35c-.22-.63-.35-1.3-.35-2m8.12-3.54L19 17.59l-2.12-2.13-1.41 1.42L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19l2.13-2.12z"/></svg>��������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pail.svg�����������������������������������0000664�0000000�0000000�00000000430�14753064456�0025052�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.5 7.63a.976.976 0 0 1 1.36.37c.28.47.11 1.09-.36 1.36l-8.23 4.75a.998.998 0 1 1-1-1.73zM7 21l-1.21-6.03 7.42-4.28c.79-.43 1.29-1.25 1.29-2.19a2.5 2.5 0 0 0-3.79-2.14L4.76 9.79 4 6H3V4h18v2h-1l-3 15z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/palette-advanced.svg�����������������������0000664�0000000�0000000�00000000327�14753064456�0027333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 22H10v-2h12zM2 22v-2h7v2zm16-4v-8h4v8zm0-15h4v6h-4zM2 18V3h14v15zm7-3.44a3 3 0 0 0 3-3c0-2-3-5.37-3-5.37s-3 3.37-3 5.37a3 3 0 0 0 3 3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/palette-outline.svg������������������������0000664�0000000�0000000�00000001152�14753064456�0027242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 22A10 10 0 0 1 2 12 10 10 0 0 1 12 2c5.5 0 10 4 10 9a6 6 0 0 1-6 6h-1.8c-.3 0-.5.2-.5.5 0 .1.1.2.1.3.4.5.6 1.1.6 1.7.1 1.4-1 2.5-2.4 2.5m0-18a8 8 0 0 0-8 8 8 8 0 0 0 8 8c.3 0 .5-.2.5-.5 0-.2-.1-.3-.1-.4-.4-.5-.6-1-.6-1.6 0-1.4 1.1-2.5 2.5-2.5H16a4 4 0 0 0 4-4c0-3.9-3.6-7-8-7m-5.5 6c.8 0 1.5.7 1.5 1.5S7.3 13 6.5 13 5 12.3 5 11.5 5.7 10 6.5 10m3-4c.8 0 1.5.7 1.5 1.5S10.3 9 9.5 9 8 8.3 8 7.5 8.7 6 9.5 6m5 0c.8 0 1.5.7 1.5 1.5S15.3 9 14.5 9 13 8.3 13 7.5 13.7 6 14.5 6m3 4c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5-1.5-.7-1.5-1.5.7-1.5 1.5-1.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/palette-swatch-outline.svg�����������������0000664�0000000�0000000�00000000626�14753064456�0030536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.5 19.6 1.3.6v-9L1.4 17c-.4 1.1.1 2.2 1.1 2.6M15.2 4.8l5 12-7.3 3-5-11.9v-.1zm.1-2c-.3 0-.5 0-.8.1L7.1 6c-.7.3-1.2 1-1.2 1.8 0 .2 0 .5.1.8l5 11.9c.3.8 1 1.2 1.8 1.2.3 0 .5 0 .8-.1l7.4-3.1c1-.4 1.5-1.6 1.1-2.6L17.1 4c-.3-.8-1.1-1.2-1.8-1.2m-4.8 7.1c-.6 0-1-.4-1-1s.4-1 1-1 1 .5 1 1-.4 1-1 1m-4.6 9.9c0 1.1.9 2 2 2h1.4l-3.4-8.3z"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/palette-swatch-variant.svg�����������������0000664�0000000�0000000�00000000457�14753064456�0030525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 14H6c-2.2 0-4 1.8-4 4s1.8 4 4 4h14c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2M6 20c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m.3-8L13 5.3c.8-.8 2-.8 2.8 0l2.8 2.8c.8.8.8 2 0 2.8l-.9 1.1zM2 13.5V4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2v1.5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/palette-swatch.svg�������������������������0000664�0000000�0000000�00000000677�14753064456�0027067�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.53 19.65 1.34.56v-9.03l-2.43 5.86c-.41 1.02.06 2.19 1.09 2.61m19.5-3.7L17.07 4a2 2 0 0 0-1.81-1.25c-.26 0-.53.04-.79.15L7.1 5.95a2.02 2.02 0 0 0-1.23 1.8c-.01.25.04.54.13.8l5 11.95c.29.78 1.03 1.24 1.81 1.25.26 0 .52-.05.77-.15l7.36-3.05a1.994 1.994 0 0 0 1.09-2.6M7.88 8.75a1 1 0 0 1-1-1 1 1 0 0 1 1-1c.55 0 1 .45 1 1s-.45 1-1 1m-2 11a2 2 0 0 0 2 2h1.45l-3.45-8.34z"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/palette.svg��������������������������������0000664�0000000�0000000�00000001116�14753064456�0025565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.5 12a1.5 1.5 0 0 1-1.5-1.5A1.5 1.5 0 0 1 17.5 9a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5m-3-4A1.5 1.5 0 0 1 13 6.5 1.5 1.5 0 0 1 14.5 5 1.5 1.5 0 0 1 16 6.5 1.5 1.5 0 0 1 14.5 8m-5 0A1.5 1.5 0 0 1 8 6.5 1.5 1.5 0 0 1 9.5 5 1.5 1.5 0 0 1 11 6.5 1.5 1.5 0 0 1 9.5 8m-3 4A1.5 1.5 0 0 1 5 10.5 1.5 1.5 0 0 1 6.5 9 1.5 1.5 0 0 1 8 10.5 1.5 1.5 0 0 1 6.5 12M12 3a9 9 0 0 0-9 9 9 9 0 0 0 9 9 1.5 1.5 0 0 0 1.5-1.5c0-.39-.15-.74-.39-1-.23-.27-.38-.62-.38-1a1.5 1.5 0 0 1 1.5-1.5H16a5 5 0 0 0 5-5c0-4.42-4.03-8-9-8"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/palm-tree.svg������������������������������0000664�0000000�0000000�00000001160�14753064456�0026014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 9c1.59 7.61-2 13-2 13h3c1.88-5.8 1-9.91.5-12m2.16-2.84c.17.21.34.43.47.66a7.1 7.1 0 0 1-.63 8.44 7.11 7.11 0 0 0-.55-6.49c-.08-.13-.17-.24-.25-.36a7.1 7.1 0 0 0-2.16-1.98 7.13 7.13 0 0 0-4.96 6.79c0 .74.11 1.45.31 2.11a7.07 7.07 0 0 1-1.33-4.14c0-2.35 1.14-4.43 2.89-5.73C8 6.35 6.46 6.67 5.12 7.5q-.93.615-1.62 1.41C4.05 7.58 5 6.39 6.3 5.57c1.5-.94 3.2-1.25 4.84-1.01C10.73 4 10.23 3.47 9.63 3c-.58-.42-1.21-.76-1.87-1 1.44.04 2.88.5 4.11 1.43.63.47 1.13 1.04 1.53 1.64.1 0 .19-.01.29-.01 3.2 0 5.91 2.11 6.81 5.02a7.07 7.07 0 0 0-4.84-2.92"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pan-bottom-left.svg������������������������0000664�0000000�0000000�00000000243�14753064456�0027137�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m-6.65 3L11 18.65 5 19z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pan-bottom-right.svg�����������������������0000664�0000000�0000000�00000000243�14753064456�0027322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m1 8.65L18.65 13l.35 6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pan-down.svg�������������������������������0000664�0000000�0000000�00000000236�14753064456�0025654�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m-4 7 4 4.5 4-4.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pan-horizontal.svg�������������������������0000664�0000000�0000000�00000000251�14753064456�0027073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7 8-4.5 4L7 16zm10 0v8l4.5-4zm-5 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pan-left.svg�������������������������������0000664�0000000�0000000�00000000232�14753064456�0025633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7 8-4.5 4L7 16zm5 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pan-right.svg������������������������������0000664�0000000�0000000�00000000231�14753064456�0026015�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 8v8l4.5-4zm-5 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pan-top-left.svg���������������������������0000664�0000000�0000000�00000000241�14753064456�0026433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m-1-4.65L5.35 11 5 5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pan-top-right.svg��������������������������0000664�0000000�0000000�00000000241�14753064456�0026616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m6.65 1L13 5.35 19 5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pan-up.svg���������������������������������0000664�0000000�0000000�00000000232�14753064456�0025325�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2.5 8 7h8zm0 7.5a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pan-vertical.svg���������������������������0000664�0000000�0000000�00000000254�14753064456�0026516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2.5 8 7h8zm0 7.5a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m-4 7 4 4.5 4-4.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pan.svg������������������������������������0000664�0000000�0000000�00000000312�14753064456�0024702�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2.5 8 7h8zM7 8l-4.5 4L7 16zm10 0v8l4.5-4zm-5 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m-4 7 4 4.5 4-4.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/panda.svg����������������������������������0000664�0000000�0000000�00000001627�14753064456�0025221�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3c1.74 0 3.36.5 4.74 1.35C17.38 3.53 18.38 3 19.5 3A3.5 3.5 0 0 1 23 6.5c0 1.5-.95 2.78-2.28 3.28.18.72.28 1.45.28 2.22a9 9 0 0 1-9 9 9 9 0 0 1-9-9c0-.77.1-1.5.28-2.22A3.51 3.51 0 0 1 1 6.5 3.5 3.5 0 0 1 4.5 3c1.12 0 2.12.53 2.76 1.35C8.64 3.5 10.26 3 12 3m0 2a7 7 0 0 0-7 7 7 7 0 0 0 7 7 7 7 0 0 0 7-7 7 7 0 0 0-7-7m4.19 5.3c.36 1.33-.11 2.61-1.04 2.86-.94.26-1.98-.62-2.34-1.96-.36-1.33.11-2.61 1.04-2.86.94-.25 1.98.62 2.34 1.96m-8.38 0c.36-1.34 1.4-2.21 2.34-1.96.93.25 1.4 1.53 1.04 2.86-.36 1.34-1.4 2.22-2.34 1.96-.93-.25-1.4-1.53-1.04-2.86M12 14c.6 0 1.13.19 1.5.5l-1 1c0 .42.34.75.75.75a.75.75 0 0 0 .75-.75.5.5 0 0 1 .5-.5.5.5 0 0 1 .5.5 1.75 1.75 0 0 1-1.75 1.75c-.49 0-.93-.2-1.25-.53-.32.33-.76.53-1.25.53A1.75 1.75 0 0 1 9 15.5a.5.5 0 0 1 .5-.5.5.5 0 0 1 .5.5.75.75 0 0 0 .75.75.75.75 0 0 0 .75-.75l-1-1c.37-.31.9-.5 1.5-.5"/></svg>���������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pandora.svg��������������������������������0000664�0000000�0000000�00000000244�14753064456�0025554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 20a1 1 0 0 1-1 1H4V3h9.71a6.75 6.75 0 0 1 6.75 6.75c0 3.75-3.02 6.75-6.75 6.75H10z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/panorama-fisheye.svg�����������������������0000664�0000000�0000000�00000000311�14753064456�0027353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m0-18C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/panorama-horizontal-outline.svg������������0000664�0000000�0000000�00000000706�14753064456�0031575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.43 4c-.1 0-.2 0-.31.06C18.18 5.16 15.09 5.7 12 5.7s-6.18-.55-9.12-1.64C2.77 4 2.66 4 2.57 4c-.34 0-.57.23-.57.63v14.75c0 .39.23.62.57.62.1 0 .2 0 .31-.06 2.94-1.1 6.03-1.64 9.12-1.64s6.18.55 9.12 1.64c.11.06.21.06.31.06.33 0 .57-.23.57-.63V4.63c0-.4-.24-.63-.57-.63M20 6.54v10.91c-2.6-.77-5.28-1.16-8-1.16s-5.4.39-8 1.16V6.54c2.6.77 5.28 1.16 8 1.16 2.72.01 5.4-.38 8-1.16"/></svg>����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/panorama-horizontal.svg��������������������0000664�0000000�0000000�00000000362�14753064456�0030116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 5.5c-3.9 0-6.9-.8-8.7-1.4-.6-.3-1.3.2-1.3.9v14c0 .7.7 1.2 1.3 1 2.1-.7 4.8-1.5 8.7-1.5s6.7.8 8.7 1.5c.7.2 1.3-.3 1.3-1V5c0-.7-.7-1.2-1.3-.9-2 .6-4.8 1.4-8.7 1.4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/panorama-outline.svg�����������������������0000664�0000000�0000000�00000000305�14753064456�0027401�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2m0 14H3V6h18zm-6.5-7L11 15.5l-2.5-3L5 17h14z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/panorama-sphere-outline.svg����������������0000664�0000000�0000000�00000001022�14753064456�0030662�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 8.1c-.3-.1-.7-.3-1-.4C19.4 4.3 16 2 12 2S4.6 4.3 3 7.7c-.3.1-.7.3-.9.4C1.4 8.5 1 9.2 1 9.9v4.2c0 .7.4 1.4 1 1.8.3.1.7.3 1 .4 1.6 3.4 5 5.7 9 5.7s7.4-2.3 9-5.7c.3-.1.6-.3.9-.5.6-.4 1.1-1 1.1-1.8V9.9c0-.7-.4-1.4-1-1.8m-1 1.8v4.2c-2.2 1.2-5.5 1.9-9 1.9s-6.8-.7-9-1.9V9.9C5.2 8.7 8.5 8 12 8s6.8.7 9 1.9M12 4c2.4 0 4.5 1 6 2.7-1.8-.5-3.9-.7-6-.7s-4.2.2-5.9.7C7.5 5 9.6 4 12 4m0 16c-2.4 0-4.5-1-5.9-2.7 1.7.5 3.8.7 5.9.7s4.2-.2 6-.7C16.5 19 14.4 20 12 20"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/panorama-sphere.svg������������������������0000664�0000000�0000000�00000000677�14753064456�0027224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 8.1c-.3-.1-.7-.3-1-.4C19.4 4.3 16 2 12 2S4.6 4.3 3 7.7c-.3.1-.7.3-.9.4C1.4 8.5 1 9.2 1 9.9v4.2c0 .7.4 1.4 1 1.8.3.1.7.3 1 .4 1.6 3.4 5 5.7 9 5.7s7.4-2.3 9-5.7c.3-.1.6-.3.9-.5.6-.4 1.1-1 1.1-1.8V9.9c0-.7-.4-1.4-1-1.8M12 4c2.4 0 4.5 1 6 2.7-1.8-.5-3.9-.7-6-.7s-4.2.2-5.9.7C7.5 5 9.6 4 12 4m0 16c-2.4 0-4.5-1-5.9-2.7 1.7.5 3.8.7 5.9.7s4.2-.2 6-.7C16.5 19 14.4 20 12 20"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/panorama-variant-outline.svg���������������0000664�0000000�0000000�00000000550�14753064456�0031045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 4c-.6 0-3.6 1.5-9 1.5C6.7 5.5 3.5 4 3 4s-1 .4-1 1v14c0 .6.5 1 1 1 .6 0 3.5-1.5 9-1.5 5.4 0 8.4 1.5 9 1.5.5 0 1-.4 1-1V5c0-.6-.5-1-1-1m-1 13.6c-2-.6-4.6-1.1-8-1.1s-6 .5-8 1.1V6.4c2.6.7 5.3 1.1 8 1.1 3.4 0 6-.5 8-1.1zM9.2 11l-3.7 4.4c2-.3 4.2-.4 6.5-.4s4.5.1 6.5.4L14 10l-2.8 3.4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/panorama-variant.svg�����������������������0000664�0000000�0000000�00000000467�14753064456�0027377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.7 4.1c-2 .7-4.8 1.4-8.7 1.4s-6.9-.8-8.7-1.4C2.7 3.8 2 4.3 2 5v14c0 .7.7 1.2 1.3 1 2.1-.7 4.8-1.5 8.7-1.5s6.7.8 8.7 1.5c.7.2 1.3-.3 1.3-1V5c0-.7-.7-1.2-1.3-.9M12 15c-2.3 0-4.5.1-6.5.4L9.2 11l2 2.4L14 10l4.5 5.4c-2-.3-4.2-.4-6.5-.4"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/panorama-vertical-outline.svg��������������0000664�0000000�0000000�00000000703�14753064456�0031212�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.54 20c.77-2.6 1.16-5.28 1.16-8s-.39-5.4-1.16-8h10.91c-.77 2.6-1.16 5.28-1.16 8s.39 5.4 1.16 8m2.49 1.12c-1.1-2.94-1.64-6.03-1.64-9.12s.55-6.18 1.64-9.12c.06-.11.06-.22.06-.31 0-.34-.23-.57-.63-.57H4.63c-.4 0-.63.23-.63.57 0 .1 0 .2.06.31C5.16 5.82 5.71 8.91 5.71 12s-.55 6.18-1.64 9.12c-.07.11-.07.22-.07.31 0 .33.23.57.63.57h14.75c.39 0 .62-.24.62-.57 0-.1 0-.2-.06-.31"/></svg>�������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/panorama-vertical.svg����������������������0000664�0000000�0000000�00000000364�14753064456�0027540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 12c0-3.9.8-6.9 1.4-8.7.2-.6-.2-1.3-.9-1.3H5c-.7 0-1.2.7-.9 1.3.6 2.1 1.4 4.8 1.4 8.7s-.8 6.7-1.4 8.7c-.3.6.2 1.3.9 1.3h14c.7 0 1.2-.7 1-1.3-.7-2-1.5-4.8-1.5-8.7"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/panorama-wide-angle-outline.svg������������0000664�0000000�0000000�00000000742�14753064456�0031420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4c-2.73 0-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4m0 2c2.45 0 4.71.2 7.29.64A21 21 0 0 1 20 12a21 21 0 0 1-.71 5.36c-2.58.44-4.84.64-7.29.64s-4.71-.2-7.29-.64A21 21 0 0 1 4 12a21 21 0 0 1 .71-5.36C7.29 6.2 9.55 6 12 6"/></svg>������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/panorama-wide-angle.svg��������������������0000664�0000000�0000000�00000000300�14753064456�0027731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4c-4 0-6.8.6-9 1-.5 2-1 3.9-1 7 0 3 .5 5 1 7 2.2.4 5 1 9 1s6.9-.6 9-1c.6-2 1-4 1-7s-.5-5.1-1-7c-2.1-.4-5-1-9-1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/panorama.svg�������������������������������0000664�0000000�0000000�00000000264�14753064456�0025730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.5 12.5 2.5 3 3.5-4.5 4.5 6H5m18 1V6a2 2 0 0 0-2-2H3a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/paper-cut-vertical.svg���������������������0000664�0000000�0000000�00000001251�14753064456�0027636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.43 3.23 12 4l.57-.77v.01C13.12 2.5 14 2 15 2a3 3 0 0 1 3 3 3 3 0 0 1-.17 1H20a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2.17A3 3 0 0 1 6 5a3 3 0 0 1 3-3c1 0 1.88.5 2.43 1.24zM4 8v12h7a1 1 0 0 1 1-1 1 1 0 0 1 1 1h7V8h-5.1l2.1 2.92-1.6 1.18L12.42 8h-.84L8.6 12.1 7 10.92 9.1 8H4m5-4a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m6 0a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m-3 12a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m0-3a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m0-3a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/paper-roll-outline.svg���������������������0000664�0000000�0000000�00000000617�14753064456�0027666�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 3C5.69 3 3.14 5.69 3 9v12h9v-7.54c1.1.99 2.5 1.54 4 1.54 3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 2h2.54C10.55 6.1 10 7.5 10 9v3H9v1h1v6H5v-6h1v-1H5V9c0-2.21 1.79-4 4-4m7 0c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4m0 2.25c-.97 0-1.75.78-1.75 1.75s.78 1.75 1.75 1.75 1.75-.78 1.75-1.75-.78-1.75-1.75-1.75M7 12v1h1v-1z"/></svg>�����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/paper-roll.svg�����������������������������0000664�0000000�0000000�00000000547�14753064456�0026213�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 3C5.69 3 3.14 5.69 3 9v12h9v-7.54c1.1.99 2.5 1.54 4 1.54 3.31 0 6-2.69 6-6s-2.69-6-6-6zm7 2c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4m0 2.25c-.97 0-1.75.78-1.75 1.75s.78 1.75 1.75 1.75 1.75-.78 1.75-1.75-.78-1.75-1.75-1.75M4 12h1v1H4zm2 0h1v1H6zm2 0h1v1H8zm2 0h1v1h-1z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/paperclip-check.svg������������������������0000664�0000000�0000000�00000000656�14753064456�0027171�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.5 21.36c.2.48.47.93.79 1.34A5.497 5.497 0 0 1 7 17.5V5c0-2.21 1.79-4 4-4s4 1.79 4 4v9.54c-.97.87-1.65 2.04-1.9 3.38-.19.05-.39.08-.6.08a2.5 2.5 0 0 1-2.5-2.5V6h1.5v9.5c0 .55.45 1 1 1s1-.45 1-1V5a2.5 2.5 0 0 0-5 0v12.5c0 2.21 1.79 4 4 4 .34 0 .67-.06 1-.14M18 6h-1.5v7.55c.47-.21.97-.37 1.5-.46zm3.34 9.84-3.59 3.59-1.59-1.59L15 19l2.75 3 4.75-4.75z"/></svg>����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/paperclip-lock.svg�������������������������0000664�0000000�0000000�00000001054�14753064456�0027035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 13c-1.4 0-2.8 1.1-2.8 2.5V17c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3v-1.5c0-1.4-1.4-2.5-2.8-2.5m0 1.2c.8 0 1.5.5 1.5 1.3V17h-3v-1.5c0-.8.7-1.3 1.5-1.3M8.9 2C6.8 2 5 3.8 5 6v10.5c0 3 2.5 5.5 5.5 5.5.5 0 1-.1 1.5-.2v-1.6q-.75.3-1.5.3c-2.2 0-4-1.8-4-4V6c0-1.4 1.1-2.5 2.5-2.5s2.5 1.1 2.5 2.5v8.5c0 .6-.4 1-1 1s-1-.4-1-1V7H8v7.5c0 1.4 1.1 2.5 2.5 2.5s2.5-1.1 2.5-2.5V6c0-2.2-1.8-4-4.1-4q.15 0 0 0m5.6 5v5.4c.4-.4.9-.8 1.5-1V7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/paperclip-minus.svg������������������������0000664�0000000�0000000�00000000614�14753064456�0027241�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 13.09c-.53.09-1.03.25-1.5.46V6H18zm-5.5 8.41c-2.21 0-4-1.79-4-4V5a2.5 2.5 0 0 1 5 0v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5a2.5 2.5 0 0 0 2.5 2.5c.21 0 .41-.03.6-.08.25-1.34.93-2.51 1.9-3.38V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5a5.497 5.497 0 0 0 7.29 5.2c-.32-.41-.59-.86-.79-1.34-.33.08-.66.14-1 .14M15 18v2h8v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/paperclip-off.svg��������������������������0000664�0000000�0000000�00000000757�14753064456�0026670�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.5 5.3 7.16 3.96C7.62 2.26 9.15 1 11 1c2.21 0 4 1.79 4 4v6.8l-1.5-1.5V5a2.5 2.5 0 0 0-5 0zM18 6h-1.5v7.3l1.5 1.5zm4.11 15.46-1.27 1.27-3.22-3.23c-.81 2.05-2.79 3.5-5.12 3.5C9.46 23 7 20.54 7 17.5V8.89L1.11 3l1.28-1.27zM11.5 15.5c0 .55.45 1 1 1s1-.45 1-1v-.11l-2-2zm4.92 2.81-1.69-1.69A2.48 2.48 0 0 1 12.5 18a2.5 2.5 0 0 1-2.5-2.5v-3.61l-1.5-1.5v7.11c0 2.21 1.79 4 4 4a4.01 4.01 0 0 0 3.92-3.19M10 6.8l1.5 1.5V6H10z"/></svg>�����������������mkdocs-material-9.6.4/material/templates/.icons/material/paperclip-plus.svg�������������������������0000664�0000000�0000000�00000000640�14753064456�0027070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 13.09c-.53.09-1.03.25-1.5.46V6H18zm-5.5 8.41c-2.21 0-4-1.79-4-4V5a2.5 2.5 0 0 1 5 0v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5a2.5 2.5 0 0 0 2.5 2.5c.21 0 .41-.03.6-.08.25-1.34.93-2.51 1.9-3.38V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5a5.497 5.497 0 0 0 7.29 5.2c-.32-.41-.59-.86-.79-1.34-.33.08-.66.14-1 .14M20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/></svg>������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/paperclip-remove.svg�����������������������0000664�0000000�0000000�00000000770�14753064456�0027406�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 13.09c-.53.09-1.03.25-1.5.46V6H18zM11 1C8.79 1 7 2.79 7 5v12.5a5.497 5.497 0 0 0 7.29 5.2c-.32-.41-.59-.86-.79-1.34-.33.08-.66.14-1 .14-2.21 0-4-1.79-4-4V5a2.5 2.5 0 0 1 5 0v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5a2.5 2.5 0 0 0 2.5 2.5c.21 0 .41-.03.6-.08.25-1.34.93-2.51 1.9-3.38V5c0-2.21-1.79-4-4-4m11.54 15.88-1.42-1.41L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19z"/></svg>��������mkdocs-material-9.6.4/material/templates/.icons/material/paperclip.svg������������������������������0000664�0000000�0000000�00000000512�14753064456�0026105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 6v11.5a4 4 0 0 1-4 4 4 4 0 0 1-4-4V5A2.5 2.5 0 0 1 11 2.5 2.5 2.5 0 0 1 13.5 5v10.5a1 1 0 0 1-1 1 1 1 0 0 1-1-1V6H10v9.5a2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5V5a4 4 0 0 0-4-4 4 4 0 0 0-4 4v12.5a5.5 5.5 0 0 0 5.5 5.5 5.5 5.5 0 0 0 5.5-5.5V6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/parachute-outline.svg����������������������0000664�0000000�0000000�00000001057�14753064456�0027564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.2 10.95 12 23 2.78 10.96l.09-.08c.21-.21.46-.38.71-.52l7.15 9.33L8.58 13l.66-1.19L12 20.38l2.73-8.58.67 1.2-2.13 6.69 7.14-9.34c.25.15.49.29.69.5zM12 4c2.5 0 4.77 1.17 6.25 3.03a5.93 5.93 0 0 0-2.78 1.1C14.47 7.41 13.26 7 12 7c-1.29 0-2.5.41-3.5 1.14-.82-.59-1.78-.97-2.79-1.1A8 8 0 0 1 12 4m0-2c-4.91 0-8.97 3.5-9.84 8.17C2.89 9.45 3.89 9 5 9c1.5 0 2.81.86 3.5 2.1A3.97 3.97 0 0 1 12 9c1.5 0 2.8.85 3.5 2.09A3.93 3.93 0 0 1 19 9c1.09 0 2.09.42 2.81 1.14C20.94 5.5 16.88 2 12 2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/parachute.svg������������������������������0000664�0000000�0000000�00000000636�14753064456�0026111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.2 10.95 12 23 2.78 10.96l.09-.08c.21-.21.46-.38.71-.52l7.15 9.33L8.58 13l.66-1.19L12 20.38l2.73-8.58.67 1.2-2.13 6.69 7.14-9.34c.25.15.49.29.69.5zM5 9c1.5 0 2.81.86 3.5 2.1A3.97 3.97 0 0 1 12 9c1.5 0 2.8.85 3.5 2.09A3.93 3.93 0 0 1 19 9c1.09 0 2.09.42 2.81 1.14C20.94 5.5 16.88 2 12 2c-4.91 0-8.97 3.5-9.84 8.17C2.89 9.45 3.89 9 5 9"/></svg>��������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/paragliding.svg����������������������������0000664�0000000�0000000�00000000756�14753064456�0026421�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 17c-1.1 0-2-.89-2-2s.9-2 2-2 2 .9 2 2-.89 2-2 2m7-3h-2c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 2.79 1.64 5.19 4 6.32V23h6v-2.68c2.36-1.13 4-3.53 4-6.32m4-6.24c.04.8-.95 1.3-1.59.84-.14-.14-.25-.16-.41-.28L18.97 13H17l-1.5-6.27c-2.29-.23-4.71-.23-7 0L7 13H5.03L3 8.32c-.16.12-.27.14-.41.28-.64.46-1.631-.04-1.59-.84V4s0-3 11-3 11 3 11 3M6.9 7c-.9.2-1.75.43-2.53.71l1.5 3.56zm12.73.71C18.85 7.43 18 7.2 17.1 7l1.03 4.27z"/></svg>������������������mkdocs-material-9.6.4/material/templates/.icons/material/parking.svg��������������������������������0000664�0000000�0000000�00000000254�14753064456�0025564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.2 11H10V7h3.2a2 2 0 0 1 2 2 2 2 0 0 1-2 2M13 3H6v18h4v-6h3a6 6 0 0 0 6-6c0-3.32-2.69-6-6-6"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/party-popper.svg���������������������������0000664�0000000�0000000�00000001215�14753064456�0026571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.53 1.45-1.08 1.08 1.6 1.6q.33.375.33.87c0 .495-.11.64-.33.86L11.5 9.47l1 1.08 3.63-3.61c.53-.59.79-1.24.79-1.94s-.26-1.36-.79-1.95zm-3.98 2.02L9.47 4.55l.61.56c.22.22.33.52.33.89s-.11.67-.33.89l-.61.56 1.08 1.08.56-.61c.53-.59.8-1.23.8-1.92 0-.72-.27-1.37-.8-1.97zM21 5.06c-.69 0-1.33.27-1.92.8l-5.63 5.64 1.08 1 5.58-5.56c.25-.25.55-.38.89-.38s.64.13.89.38l.61.61 1.03-1.08-.56-.61c-.59-.53-1.25-.8-1.97-.8M7 8 2 22l14-5zm12 3.06c-.7 0-1.34.27-1.94.8l-1.59 1.59 1.08 1.08 1.59-1.59c.25-.25.53-.38.86-.38s.63.13.88.38l1.62 1.59 1.05-1.03-1.6-1.64c-.59-.53-1.25-.8-1.95-.8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/passport-alert.svg�������������������������0000664�0000000�0000000�00000002057�14753064456�0027114�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 6c-.41.62-.75 1.29-.96 2h1.92A7.2 7.2 0 0 0 10 6m-1.3.22C7.78 6.53 7 7.17 6.54 8H8c.18-.62.4-1.22.7-1.78m2.59 0c.3.56.53 1.16.71 1.78h1.46c-.46-.83-1.25-1.46-2.17-1.78M6.13 9c-.08.32-.13.65-.13 1s.05.68.13 1h1.69c-.04-.33-.07-.66-.07-1s.03-.67.07-1zm2.7 0c-.05.32-.08.66-.08 1s.03.67.08 1h2.34c.04-.33.08-.66.08-1s-.04-.68-.08-1zm3.35 0c.04.33.07.66.07 1s-.03.67-.07 1h1.69c.08-.32.13-.65.13-1s-.05-.68-.13-1zm-5.64 3c.46.83 1.24 1.46 2.16 1.78-.3-.56-.52-1.15-.7-1.78zm2.5 0c.21.72.55 1.38.96 2 .42-.62.75-1.28.96-2zM12 12c-.18.63-.41 1.22-.71 1.78.92-.32 1.71-.95 2.17-1.78zM4 2c-.53 0-1.04.21-1.41.59C2.21 2.96 2 3.47 2 4v16c0 .53.21 1.04.59 1.41.37.38.88.59 1.41.59h12c.53 0 1.04-.21 1.41-.59.38-.37.59-.88.59-1.41V4c0-.53-.21-1.04-.59-1.41C17.04 2.21 16.53 2 16 2zm6 3c1.33 0 2.6.53 3.54 1.46C14.47 7.4 15 8.67 15 10s-.53 2.6-1.46 3.54C12.6 14.47 11.33 15 10 15s-2.6-.53-3.54-1.46A5.04 5.04 0 0 1 5 10c0-1.33.53-2.6 1.46-3.54C7.4 5.53 8.67 5 10 5m5 12v2H5v-2zm5-10h2v6h-2zm2 8h-2v2h2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/passport-biometric.svg���������������������0000664�0000000�0000000�00000000502�14753064456�0027753�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4a2 2 0 0 0-2 2v5h6.13c.46-1.76 2.05-3 3.87-3a4.01 4.01 0 0 1 3.87 3H22V6a2 2 0 0 0-2-2zm8 6a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2M2 13v5a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5h-6.13A4.01 4.01 0 0 1 12 16a4.01 4.01 0 0 1-3.87-3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/passport-cancel.svg������������������������0000664�0000000�0000000�00000002406�14753064456�0027230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2c-.53 0-1.04.21-1.41.59C4.21 2.96 4 3.47 4 4v16c0 .53.21 1.04.59 1.41.37.38.88.59 1.41.59h7c-.54-.88-.9-1.9-1-3H7v-2h5.17c.19-.77.5-1.5.93-2.12a5.036 5.036 0 0 1-4.64-1.34A5.04 5.04 0 0 1 7 10c0-1.33.53-2.6 1.46-3.54C9.4 5.53 10.67 5 12 5s2.6.53 3.54 1.46C16.47 7.4 17 8.67 17 10c0 .82-.2 1.63-.58 2.34.65-.22 1.35-.34 2.08-.34.5 0 1 .06 1.5.17V4c0-.53-.21-1.04-.59-1.41C19.04 2.21 18.53 2 18 2zm6 4c-.41.62-.75 1.29-.96 2h1.92A7.2 7.2 0 0 0 12 6m-1.3.22C9.78 6.53 9 7.17 8.54 8H10c.18-.62.4-1.22.7-1.78m2.59 0c.3.56.53 1.16.71 1.78h1.46c-.46-.83-1.25-1.46-2.17-1.78M8.13 9c-.08.32-.13.65-.13 1s.05.68.13 1h1.69c-.04-.33-.07-.66-.07-1s.03-.67.07-1zm2.7 0c-.05.32-.08.66-.08 1s.03.67.08 1h2.34c.04-.33.08-.66.08-1s-.04-.68-.08-1zm3.35 0c.04.33.07.66.07 1s-.03.67-.07 1h1.69c.08-.32.13-.65.13-1s-.05-.68-.13-1zm-5.64 3c.46.83 1.24 1.46 2.16 1.78-.3-.56-.52-1.15-.7-1.78zm2.5 0c.21.72.55 1.38.96 2 .42-.62.75-1.28.96-2zM14 12c-.18.63-.41 1.22-.71 1.78.92-.32 1.71-.95 2.17-1.78zm4.5 11c2.5 0 4.5-2 4.5-4.5S21 14 18.5 14 14 16 14 18.5s2 4.5 4.5 4.5m-2.58-6L20 21.09c-.42.26-.94.41-1.5.41-1.66 0-3-1.34-3-3 0-.56.15-1.08.42-1.5m5.58 1.5c0 .56-.15 1.08-.41 1.5L17 15.92c.42-.27.94-.42 1.5-.42 1.66 0 3 1.34 3 3"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/passport-check.svg�������������������������0000664�0000000�0000000�00000002116�14753064456�0027056�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6c-.41.62-.75 1.29-.96 2h1.92A7.2 7.2 0 0 0 12 6m-1.3.22C9.78 6.53 9 7.17 8.54 8H10c.18-.62.4-1.22.7-1.78m2.59 0c.3.56.53 1.16.71 1.78h1.46c-.46-.83-1.25-1.46-2.17-1.78M8.13 9c-.08.32-.13.65-.13 1s.05.68.13 1h1.69c-.04-.33-.07-.66-.07-1s.03-.67.07-1zm2.7 0c-.05.32-.08.66-.08 1s.03.67.08 1h2.34c.04-.33.08-.66.08-1s-.04-.68-.08-1zm3.35 0c.04.33.07.66.07 1s-.03.67-.07 1h1.69c.08-.32.13-.65.13-1s-.05-.68-.13-1zm-5.64 3c.46.83 1.24 1.46 2.16 1.78-.3-.56-.52-1.15-.7-1.78zm2.5 0c.21.72.55 1.38.96 2 .42-.62.75-1.28.96-2zM14 12c-.18.63-.41 1.22-.71 1.78.92-.32 1.71-.95 2.17-1.78zM6 2c-.53 0-1.04.21-1.41.59C4.21 2.96 4 3.47 4 4v16c0 .53.21 1.04.59 1.41.37.38.88.59 1.41.59h8.8c-.51-.88-.8-1.91-.8-3H7v-2h7.34c.83-2.33 3.05-4 5.66-4V4c0-.53-.21-1.04-.59-1.41C19.04 2.21 18.53 2 18 2zm6 3c1.33 0 2.6.53 3.54 1.46C16.47 7.4 17 8.67 17 10s-.53 2.6-1.46 3.54C14.6 14.47 13.33 15 12 15s-2.6-.53-3.54-1.46A5.04 5.04 0 0 1 7 10c0-1.33.53-2.6 1.46-3.54C9.4 5.53 10.67 5 12 5m6.75 17.16-2.75-3L17.16 18l1.59 1.59L22.34 16l1.16 1.41z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/passport-minus.svg�������������������������0000664�0000000�0000000�00000001455�14753064456�0027141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6c-.41.62-.75 1.29-.96 2h1.92A7.2 7.2 0 0 0 12 6m-1.3.22C9.78 6.53 9 7.17 8.54 8H10c.18-.62.4-1.22.7-1.78m2.59 0c.3.56.53 1.16.71 1.78h1.46c-.46-.83-1.25-1.46-2.17-1.78M8.13 9c-.08.32-.13.65-.13 1s.05.68.13 1h1.69c-.04-.33-.07-.66-.07-1s.03-.67.07-1zm2.7 0c-.05.32-.08.66-.08 1s.03.67.08 1h2.34c.04-.33.08-.66.08-1s-.04-.68-.08-1zm3.35 0c.04.33.07.66.07 1s-.03.67-.07 1h1.69c.08-.32.13-.65.13-1s-.05-.68-.13-1zm-5.64 3c.46.83 1.24 1.46 2.16 1.78-.3-.56-.52-1.15-.7-1.78zm2.5 0c.21.72.55 1.38.96 2 .42-.62.75-1.28.96-2zM14 12c-.18.63-.41 1.22-.71 1.78.92-.32 1.71-.95 2.17-1.78zM6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h7.803A6 6 0 0 1 13 19H7v-2h6.341A6 6 0 0 1 20 13.083V4a2 2 0 0 0-2-2zm6 3a5 5 0 1 1 0 10 5 5 0 0 1 0-10m11 15v-2h-8v2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/passport-plus.svg��������������������������0000664�0000000�0000000�00000002112�14753064456�0026760�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6c-.41.62-.75 1.29-.96 2h1.92A7.2 7.2 0 0 0 12 6m-1.3.22C9.78 6.53 9 7.17 8.54 8H10c.18-.62.4-1.22.7-1.78m2.59 0c.3.56.53 1.16.71 1.78h1.46c-.46-.83-1.25-1.46-2.17-1.78M8.13 9c-.08.32-.13.65-.13 1s.05.68.13 1h1.69c-.04-.33-.07-.66-.07-1s.03-.67.07-1zm2.7 0c-.05.32-.08.66-.08 1s.03.67.08 1h2.34c.04-.33.08-.66.08-1s-.04-.68-.08-1zm3.35 0c.04.33.07.66.07 1s-.03.67-.07 1h1.69c.08-.32.13-.65.13-1s-.05-.68-.13-1zm-5.64 3c.46.83 1.24 1.46 2.16 1.78-.3-.56-.52-1.15-.7-1.78zm2.5 0c.21.72.55 1.38.96 2 .42-.62.75-1.28.96-2zM14 12c-.18.63-.41 1.22-.71 1.78.92-.32 1.71-.95 2.17-1.78zM6 2c-.53 0-1.04.21-1.41.59C4.21 2.96 4 3.47 4 4v16c0 .53.21 1.04.59 1.41.37.38.88.59 1.41.59h7.8c-.51-.88-.8-1.91-.8-3H7v-2h6.34c.83-2.33 3.05-4 5.66-4 .34 0 .68.03 1 .08V4c0-.53-.21-1.04-.59-1.41C19.04 2.21 18.53 2 18 2zm6 3c1.33 0 2.6.53 3.54 1.46C16.47 7.4 17 8.67 17 10s-.53 2.6-1.46 3.54C14.6 14.47 13.33 15 12 15s-2.6-.53-3.54-1.46A5.04 5.04 0 0 1 7 10c0-1.33.53-2.6 1.46-3.54C9.4 5.53 10.67 5 12 5m6 13v-3h2v3h3v2h-3v3h-2v-3h-3v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/passport-remove.svg������������������������0000664�0000000�0000000�00000002252�14753064456�0027277�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6c-.41.62-.75 1.29-.96 2h1.92A7.2 7.2 0 0 0 12 6m-1.3.22C9.78 6.53 9 7.17 8.54 8H10c.18-.62.4-1.22.7-1.78m2.59 0c.3.56.53 1.16.71 1.78h1.46c-.46-.83-1.25-1.46-2.17-1.78M8.13 9c-.08.32-.13.65-.13 1s.05.68.13 1h1.69c-.04-.33-.07-.66-.07-1s.03-.67.07-1zm2.7 0c-.05.32-.08.66-.08 1s.03.67.08 1h2.34c.04-.33.08-.66.08-1s-.04-.68-.08-1zm3.35 0c.04.33.07.66.07 1s-.03.67-.07 1h1.69c.08-.32.13-.65.13-1s-.05-.68-.13-1zm-5.64 3c.46.83 1.24 1.46 2.16 1.78-.3-.56-.52-1.15-.7-1.78zm2.5 0c.21.72.55 1.38.96 2 .42-.62.75-1.28.96-2zM14 12c-.18.63-.41 1.22-.71 1.78.92-.32 1.71-.95 2.17-1.78zM6 2c-.53 0-1.04.21-1.41.59C4.21 2.96 4 3.47 4 4v16c0 .53.21 1.04.59 1.41.37.38.88.59 1.41.59h7.8c-.51-.88-.8-1.91-.8-3H7v-2h6.34c.83-2.33 3.05-4 5.66-4 .34 0 .68.03 1 .08V4c0-.53-.21-1.04-.59-1.41C19.04 2.21 18.53 2 18 2zm6 3c1.33 0 2.6.53 3.54 1.46C16.47 7.4 17 8.67 17 10s-.53 2.6-1.46 3.54C14.6 14.47 13.33 15 12 15s-2.6-.53-3.54-1.46A5.04 5.04 0 0 1 7 10c0-1.33.53-2.6 1.46-3.54C9.4 5.53 10.67 5 12 5m3.46 11.88 1.42-1.42L19 17.59l2.12-2.12 1.42 1.41L20.41 19l2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.42-1.42L17.59 19l-2.12-2.12Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/passport.svg�������������������������������0000664�0000000�0000000�00000001440�14753064456�0026002�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm6 3a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m0 1c-.41.62-.75 1.29-.96 2h1.92A7.2 7.2 0 0 0 12 6m-1.3.22C9.78 6.53 9 7.17 8.54 8H10c.18-.62.4-1.22.7-1.78m2.59 0c.3.56.53 1.16.71 1.78h1.46c-.46-.83-1.25-1.46-2.17-1.78M8.13 9c-.08.32-.13.65-.13 1s.05.68.13 1h1.69c-.04-.33-.07-.66-.07-1s.03-.67.07-1zm2.7 0c-.05.32-.08.66-.08 1s.03.67.08 1h2.34c.04-.33.08-.66.08-1s-.04-.68-.08-1zm3.35 0c.04.33.07.66.07 1s-.03.67-.07 1h1.69c.08-.32.13-.65.13-1s-.05-.68-.13-1zm-5.64 3c.46.83 1.24 1.46 2.16 1.78-.3-.56-.52-1.15-.7-1.78zm2.5 0c.21.72.55 1.38.96 2 .42-.62.75-1.28.96-2zM14 12c-.18.63-.41 1.22-.71 1.78.92-.32 1.71-.95 2.17-1.78zm-7 5h10v2H7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pasta.svg����������������������������������0000664�0000000�0000000�00000000715�14753064456�0025243�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 16.5V8H3V7h1V6H3V5h1V4H3V3h6c.5.03.95.24 1.34.63s.61.87.66 1.37h10v1H11c-.05.53-.27 1-.66 1.43S9.5 8.05 9 8H7v7.05c.05 0 .13-.01.24-.05s.2 0 .26 0q.84 0 1.92.42c.41-.92 1.11-1.74 2.11-2.42s2-1 3-1c1.53 0 2.83.53 3.89 1.59S20 15.95 20 17.5v.27c0 .13-.03.2-.03.23H3.14c.13-.5.41-1 .86-1.5m2-1.27V8H5v7.7c.5-.25.81-.4 1-.47M9 7V6H7v1zm0-3H7v1h2zM5 4v1h1V4zm0 2v1h1V6zM2 19h20l-2 2H4z"/></svg>���������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/patio-heater.svg���������������������������0000664�0000000�0000000�00000000316�14753064456�0026512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 22H9v-1h6zm4-18-4-2H9L5 4zM8 5l.4 1h7.2l.4-1zm2 5h1v5c-.6 0-1 .4-1 1v4h4v-4c0-.6-.4-1-1-1v-5h1l.4-1H9.6zm-.8-2h5.6l.4-1H8.8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/patreon.svg��������������������������������0000664�0000000�0000000�00000000330�14753064456�0025574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.82 2.41c3.96 0 7.18 3.24 7.18 7.21 0 3.96-3.22 7.18-7.18 7.18-3.97 0-7.21-3.22-7.21-7.18 0-3.97 3.24-7.21 7.21-7.21M2 21.6h3.5V2.41H2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pause-box-outline.svg����������������������0000664�0000000�0000000�00000000276�14753064456�0027515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 16H5V5h14zm-6-3V8h2v8zm-4 0V8h2v8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pause-box.svg������������������������������0000664�0000000�0000000�00000000263�14753064456�0026034�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m-8 13H9V8h2zm4 0h-2V8h2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pause-circle-outline.svg�������������������0000664�0000000�0000000�00000000356�14753064456�0030165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 16V8h2v8zm-4 0V8h2v8zm3-14a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pause-circle.svg���������������������������0000664�0000000�0000000�00000000260�14753064456�0026502�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 16h-2V8h2m-4 8H9V8h2m1-6A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pause-octagon-outline.svg������������������0000664�0000000�0000000�00000000315�14753064456�0030351�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 16h-2V8h2zm-4 0H9V8h2zm4.73-13L21 8.27v7.46L15.73 21H8.27L3 15.73V8.27L8.27 3zm-.83 2H9.1L5 9.1v5.8L9.1 19h5.8l4.1-4.1V9.1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pause-octagon.svg��������������������������0000664�0000000�0000000�00000000240�14753064456�0026671�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.73 3 21 8.27v7.46L15.73 21H8.27L3 15.73V8.27L8.27 3zM15 16V8h-2v8zm-4 0V8H9v8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pause.svg����������������������������������0000664�0000000�0000000�00000000147�14753064456�0025247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 19h4V5h-4M6 19h4V5H6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/paw-off-outline.svg������������������������0000664�0000000�0000000�00000003450�14753064456�0027146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.83 8.25c-.27-.75-.78-1.29-1.44-1.57-1.17-.5-2.59-.08-3.69.98q.165-.435.3-.93c.25-1.35 0-2.7-.62-3.61-.43-.62-1.05-1.01-1.74-1.12-1.54-.22-3.07 1.08-3.71 3-.65-1.95-2.19-3.24-3.74-3-.69.12-1.31.53-1.74 1.16l-.03.06 1.49 1.49c.05-.17.09-.31.19-.42.12-.17.26-.29.4-.29.5-.09 1.38.69 1.66 2.1.07.34.08.65.06.9l1.66 1.68c.01-.03.03-.06.05-.1.04.11.11.2.16.31l1.34 1.34a2.3 2.3 0 0 0 .98.22c.72 0 1.42-.33 2.02-.88-.43 1.07-.47 2.16-.14 3.06.27.72.78 1.28 1.44 1.57.34.14.7.21 1.07.21 1.38 0 2.86-1.01 3.7-2.64.58-1.19.71-2.47.33-3.52M16 6.33c-.28 1.4-1.17 2.17-1.66 2.11-.06-.01-.22-.03-.4-.29-.25-.36-.44-1.08-.24-2.05.27-1.34 1.1-2.1 1.59-2.1h.07c.14 0 .27.11.39.27.32.46.43 1.27.25 2.06m4.7 4.54c-.58 1.13-1.62 1.73-2.17 1.49-.06-.02-.25-.1-.37-.43-.16-.5-.09-1.25.23-1.93.51-.96 1.35-1.53 1.94-1.53.1 0 .17.03.27.03.15.08.27.22.35.44.14.4.15 1.12-.25 1.93M1.11 3 4.8 6.69c-.74-.28-1.51-.3-2.2-.01-.66.29-1.17.85-1.43 1.59-.377 1.04-.251 2.31.33 3.5.84 1.63 2.32 2.64 3.71 2.64.36 0 .72-.07 1.06-.21.66-.29 1.17-.85 1.44-1.57.29-.84.29-1.86-.07-2.87.19.15.4.27.6.37l1.49 1.49c-.79.88-1.46 2.08-2.26 2.88-1.06 1.09-2.85 1.89-3.03 3.38-.13 1.08.56 2.38 1.56 2.87.35.18.72.25 1.1.25 1.51 0 3.2-1.13 4.79-1.13 1.61 0 3.29 1.1 4.82 1.1.37 0 .73-.06 1.08-.22.21-.1.44-.25.64-.43l2.41 2.41 1.27-1.27L2.39 1.73zm10.04 10.04L17 18.9c0 .01-.03.02-.04.03a.6.6 0 0 1-.25.04c-.43 0-1.08-.22-1.71-.43-.92-.31-1.97-.67-3.11-.67s-2.19.37-3.11.69c-.63.21-1.28.44-1.68.44-.13 0-.18 0-.22-.05-.22-.11-.48-.58-.45-.83.07-.23.8-.81 1.16-1.12.44-.32.91-.67 1.3-1.09.55-.55 1-1.18 1.44-1.79.22-.32.53-.74.82-1.08M5.6 10c.33.68.4 1.43.24 1.93-.13.33-.31.41-.37.43-.55.24-1.59-.36-2.17-1.49-.4-.81-.39-1.52-.25-1.93.08-.21.2-.36.35-.44.1 0 .17-.04.28-.04.58 0 1.42.57 1.92 1.54"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/paw-off.svg��������������������������������0000664�0000000�0000000�00000001226�14753064456�0025470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4.27 3.28 3 21.5 21.22l-1.27 1.28-2-2c-.14.1-.29.18-.44.25-1.79.82-3.91-.88-5.9-.88s-4.13 1.77-5.89.88c-1-.49-1.69-1.79-1.56-2.87.18-1.49 1.97-2.29 3.03-3.38.74-.73 1.37-1.81 2.08-2.68zM8.35 3c1.18-.17 2.43 1.12 2.79 2.9.18.85.12 1.66-.14 2.29L7.03 4.2c.26-.65.72-1.1 1.32-1.2m7.15 0c1.19.19 1.85 1.77 1.5 3.54-.38 1.78-1.63 3.07-2.81 2.89-1.19-.18-1.84-1.76-1.47-3.53.36-1.78 1.61-3.07 2.78-2.9M3 7.6c1.14-.49 2.69.4 3.5 1.95.76 1.58.5 3.24-.63 3.73s-2.67-.39-3.46-1.96S1.9 8.08 3 7.6m18 0c1.1.48 1.38 2.15.59 3.72s-2.33 2.45-3.46 1.96-1.39-2.15-.63-3.73C18.31 8 19.86 7.11 21 7.6"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/paw-outline.svg����������������������������0000664�0000000�0000000�00000004040�14753064456�0026372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.83 8.25c-.27-.75-.78-1.29-1.43-1.57-1.17-.5-2.59-.08-3.7.98q.165-.435.3-.93c.25-1.35.03-2.7-.62-3.61-.43-.62-1.05-1.01-1.74-1.12-1.54-.22-3.07 1.08-3.71 3-.64-1.95-2.19-3.24-3.74-3-.69.12-1.31.53-1.74 1.16-.64.93-.84 2.23-.56 3.58.05.26.11.5.2.73C5 6.56 3.7 6.2 2.6 6.68c-.66.29-1.16.85-1.43 1.59-.376 1.04-.25 2.31.33 3.5.84 1.63 2.32 2.64 3.71 2.64.36 0 .72-.07 1.06-.21.66-.29 1.17-.85 1.44-1.57.32-.84.29-1.86-.07-2.87.55.43 1.17.69 1.81.69.12 0 .25-.01.37-.03.68-.1 1.3-.5 1.73-1.12.15-.22.28-.46.38-.72.1.26.22.5.37.71.43.62 1.05 1.02 1.74 1.13.12.02.25.03.37.03.72 0 1.42-.33 2.02-.88-.43 1.07-.47 2.16-.14 3.06.27.73.78 1.28 1.44 1.57.34.14.7.21 1.07.21 1.38 0 2.86-1.01 3.7-2.64.58-1.19.71-2.47.33-3.52M5.84 11.93c-.12.33-.31.41-.37.43-.55.24-1.59-.36-2.17-1.49-.4-.81-.39-1.52-.25-1.93.08-.21.2-.36.35-.44.1 0 .18-.04.28-.04.58 0 1.42.57 1.92 1.54.33.68.43 1.43.24 1.93m4.07-3.77c-.12.16-.25.26-.41.28-.5.06-1.36-.71-1.65-2.1-.2-.96 0-1.68.25-2.05.12-.17.26-.29.4-.29.5-.09 1.38.69 1.66 2.1.2.97 0 1.7-.25 2.06M16 6.33c-.28 1.4-1.17 2.17-1.66 2.11-.06-.01-.22-.03-.4-.29-.25-.36-.44-1.08-.24-2.05.27-1.34 1.1-2.1 1.59-2.1h.07c.14 0 .27.11.39.27.32.46.43 1.27.25 2.06m4.7 4.54c-.58 1.13-1.62 1.73-2.17 1.49-.06-.02-.25-.1-.37-.43-.16-.5-.09-1.25.23-1.93.51-.96 1.36-1.53 1.94-1.53.1 0 .17.03.27.03h.01c.15.08.26.22.34.44.15.4.16 1.12-.25 1.93m-4.4 3.63c-1.35-1.45-2.41-4.06-4.41-4.06-2.01 0-3.01 2.65-4.42 4.06-1.06 1.09-2.85 1.89-3.03 3.38-.13 1.08.56 2.38 1.56 2.87.35.18.72.25 1.1.25 1.51 0 3.2-1.13 4.79-1.13 1.61 0 3.29 1.1 4.82 1.1.37 0 .73-.06 1.08-.22.86-.39 1.58-1.43 1.54-2.37-.07-1.63-1.92-2.66-3.03-3.88m.66 4.43a.6.6 0 0 1-.25.04c-.42 0-1.08-.22-1.71-.43-.92-.31-1.97-.67-3.11-.67s-2.19.37-3.11.69c-.63.21-1.28.44-1.68.44-.13 0-.18 0-.22-.05-.22-.11-.48-.58-.45-.83.07-.23.8-.81 1.16-1.12.44-.32.91-.67 1.3-1.09.55-.55 1-1.18 1.44-1.79.45-.62 1.2-1.68 1.56-1.68.4 0 1.19 1.12 1.67 1.78.39.56.8 1.13 1.26 1.63.39.42.8.79 1.18 1.15.54.45 1.32 1.14 1.33 1.44-.01.14-.21.42-.37.49"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/paw.svg������������������������������������0000664�0000000�0000000�00000001317�14753064456�0024721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.35 3c1.18-.17 2.43 1.12 2.79 2.9.36 1.77-.29 3.35-1.47 3.53-1.17.18-2.43-1.11-2.8-2.89-.37-1.77.3-3.35 1.48-3.54m7.15 0c1.19.19 1.85 1.77 1.5 3.54-.38 1.78-1.63 3.07-2.81 2.89-1.19-.18-1.84-1.76-1.47-3.53.36-1.78 1.61-3.07 2.78-2.9M3 7.6c1.14-.49 2.69.4 3.5 1.95.76 1.58.5 3.24-.63 3.73s-2.67-.39-3.46-1.96S1.9 8.08 3 7.6m18 0c1.1.48 1.38 2.15.59 3.72s-2.33 2.45-3.46 1.96-1.39-2.15-.63-3.73C18.31 8 19.86 7.11 21 7.6m-1.67 10.78c.04.94-.68 1.98-1.54 2.37-1.79.82-3.91-.88-5.9-.88s-4.13 1.77-5.89.88c-1-.49-1.69-1.79-1.56-2.87.18-1.49 1.97-2.29 3.03-3.38 1.41-1.41 2.41-4.06 4.42-4.06 2 0 3.06 2.61 4.41 4.06 1.11 1.22 2.96 2.25 3.03 3.88"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/peace.svg����������������������������������0000664�0000000�0000000�00000000531�14753064456�0025204�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m-1 12.41v5.52a8 8 0 0 1-3.9-1.62zm2 0 3.9 3.9a8 8 0 0 1-3.9 1.62zM4 12c0-4.03 3-7.43 7-7.93v7.52L5.69 16.9A7.9 7.9 0 0 1 4 12m14.31 4.9L13 11.59V4.07c4 .5 7 3.9 7 7.93 0 1.78-.59 3.5-1.69 4.9"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/peanut-off-outline.svg���������������������0000664�0000000�0000000�00000001474�14753064456�0027657�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.11 21.46-1.27 1.27-3.15-3.15c-.33.63-.76 1.19-1.28 1.67a6.43 6.43 0 0 1-5.8 1.6c-3.51-.75-5.74-4.21-4.99-7.72.25-1.18.83-2.26 1.66-3.13a.93.93 0 0 0 0-1.28 6 6 0 0 1-1.24-2.79L1.11 3l1.28-1.27zm-6.81-1.9c.39-.43.7-.93.89-1.48l-2.44-2.44c-.18.23-.46.36-.75.36-.55 0-1-.45-1-1 0-.29.13-.57.36-.75l-2.81-2.81c-.02.74-.31 1.44-.82 1.97-1.7 1.81-1.6 4.66.21 6.36l.01.01a4.5 4.5 0 0 0 6.35-.22M14 17c-1.29 0-1.28 2 0 2s1.29-2 0-2M6.9 3.7l1.53 1.53c.25-.52.62-.98 1.07-1.34.7-.58 1.59-.89 2.5-.89h.88c.59.14 1.12.41 1.62.79 1.72 1.38 2 3.9.62 5.62a3 3 0 0 0-.67 1.84l3.87 3.87c-.25-1.15-.82-2.2-1.6-3.06-.35-.36-.39-.93-.1-1.34C16.62 10.72 18 9 18 7S15.97.997 12 .997 6.9 3.7 6.9 3.7M12 17c0-1.29-2-1.28-2 0s2 1.29 2 0m1-12c-1.29 0-1.28 2 0 2s1.29-2 0-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/peanut-off.svg�����������������������������0000664�0000000�0000000�00000000771�14753064456�0026201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.9 10.12a5 5 0 0 0-2.82-8A5.7 5.7 0 0 0 12 2a5 5 0 0 0-4.32 2.5l8.7 8.68a4 4 0 0 0-.34-.41 2 2 0 0 1-.14-2.65M13 7a1 1 0 1 1 1-1 1 1 0 0 1-1 1m-6-.61L2.39 1.73 1.11 3 7.8 9.69c.1.15.2.31.31.43a2 2 0 0 1-.11 2.6 5.5 5.5 0 0 0 2.81 9.15A5.4 5.4 0 0 0 12 22a5.5 5.5 0 0 0 5-3.14l3.87 3.87 1.27-1.27M11 18a1 1 0 1 1 1-1 1 1 0 0 1-1 1m3 1a1 1 0 1 1 1-1 1 1 0 0 1-1 1m-1-3a1 1 0 0 1-1-1 1 1 0 0 1 .35-.76l1.41 1.41A1 1 0 0 1 13 16"/></svg>�������mkdocs-material-9.6.4/material/templates/.icons/material/peanut-outline.svg�������������������������0000664�0000000�0000000�00000001343�14753064456�0027102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 23c-.47 0-.93-.05-1.39-.15-3.51-.75-5.74-4.21-4.99-7.72.25-1.18.83-2.26 1.66-3.13a.93.93 0 0 0 0-1.28c-2.08-2.58-1.68-6.36.9-8.44s6.36-1.673 8.44.91c1.77 2.19 1.77 5.31 0 7.53-.29.41-.25.98.1 1.34 2.45 2.62 2.32 6.74-.31 9.19A6.44 6.44 0 0 1 12 23m0-20c-.91 0-1.8.31-2.5.89a3.98 3.98 0 0 0-.62 5.61c.96 1.14.89 2.83-.15 3.91-1.7 1.81-1.6 4.66.21 6.36s4.66 1.61 6.36-.21a4.5 4.5 0 0 0 0-6.15 3 3 0 0 1-.18-4 4 4 0 0 0-.62-5.62c-.5-.38-1.03-.65-1.62-.79zm0 3c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1m2 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1m-1-3c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1m-2 2c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/peanut.svg���������������������������������0000664�0000000�0000000�00000000606�14753064456�0025426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 12.77a2 2 0 0 1-.14-2.65 5 5 0 0 0-2.82-8A5.7 5.7 0 0 0 12 2a5 5 0 0 0-5 5 5 5 0 0 0 1.11 3.12 2 2 0 0 1-.11 2.6 5.5 5.5 0 0 0 2.81 9.15A5.4 5.4 0 0 0 12 22a5.5 5.5 0 0 0 4-9.23M13 5a1 1 0 1 1-1 1 1 1 0 0 1 1-1m-2 13a1 1 0 1 1 1-1 1 1 0 0 1-1 1m1-3a1 1 0 1 1 1 1 1 1 0 0 1-1-1m2 4a1 1 0 1 1 1-1 1 1 0 0 1-1 1"/></svg>��������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pen-lock.svg�������������������������������0000664�0000000�0000000�00000000631�14753064456�0025640�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.7 7c-.3.4-.7.7-.7 1s.3.6.6 1c.5.5 1 .9.9 1.4 0 .5-.5 1-1 1.5L17.4 16 16 14.7l4.2-4.2-1-1-1.4 1.4L14 7.1l4-3.8c.4-.4 1-.4 1.4 0l2.3 2.3c.4.4.4 1.1 0 1.4M4 17.2l9.6-9.6 3.7 3.8L7.8 21H4zM8 5v-.5C8 3.1 6.9 2 5.5 2S3 3.1 3 4.5V5c-.6 0-1 .4-1 1v4c0 .6.4 1 1 1h5c.6 0 1-.4 1-1V6c0-.6-.4-1-1-1M7 5H4v-.5C4 3.7 4.7 3 5.5 3S7 3.7 7 4.5z"/></svg>�������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pen-minus.svg������������������������������0000664�0000000�0000000�00000000426�14753064456�0026045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.7 7c-.3.4-.7.7-.7 1s.3.6.6 1c.5.5 1 .9.9 1.4 0 .5-.5 1-1 1.5L16.4 16 15 14.7l4.2-4.2-1-1-1.4 1.4L13 7.1l4-3.8c.4-.4 1-.4 1.4 0l2.3 2.3c.4.4.4 1.1 0 1.4M3 17.2l9.6-9.6 3.7 3.8L6.8 21H3zM10 5v2H2V5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pen-off.svg��������������������������������0000664�0000000�0000000�00000000477�14753064456�0025472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.3 5 1 6.3l6.5 6.5L3 17.2V21h3.8l4.5-4.5 6.5 6.5 1.3-1.3zm14.6 5.9-3.8-3.8L17 3.3c.4-.4 1-.4 1.4 0l2.3 2.3c.4.4.4 1 0 1.4-.3.4-.7.7-.7 1s.3.7.6 1c.5.5 1 1 .9 1.4 0 .5-.5 1-1 1.5L16.4 16 15 14.7l4.2-4.2-1-1zm-6.9-.7 2.5-2.5 3.8 3.8-2.5 2.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pen-plus.svg�������������������������������0000664�0000000�0000000�00000000445�14753064456�0025676�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.7 7c-.3.4-.7.7-.7 1s.3.6.6 1c.5.5 1 .9.9 1.4 0 .5-.5 1-1 1.5L16.4 16 15 14.7l4.2-4.2-1-1-1.4 1.4L13 7.1l4-3.8c.4-.4 1-.4 1.4 0l2.3 2.3c.4.4.4 1.1 0 1.4M3 17.2l9.6-9.6 3.7 3.8L6.8 21H3zM7 2v3h3v2H7v3H5V7H2V5h3V2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pen-remove.svg�����������������������������0000664�0000000�0000000�00000000567�14753064456�0026215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.7 7c-.3.4-.7.7-.7 1s.3.6.6 1c.5.5 1 .9.9 1.4 0 .5-.5 1-1 1.5L16.4 16 15 14.7l4.2-4.2-1-1-1.4 1.4L13 7.1l4-3.8c.4-.4 1-.4 1.4 0l2.3 2.3c.4.4.4 1.1 0 1.4M3 17.2l9.6-9.6 3.7 3.8L6.8 21H3zm.88-14.74L6 4.59l2.12-2.13 1.42 1.42L7.41 6l2.13 2.12-1.42 1.42L6 7.41 3.88 9.54 2.46 8.12 4.59 6 2.46 3.88z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pen.svg������������������������������������0000664�0000000�0000000�00000000507�14753064456�0024714�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.71 7.04c-.34.34-.67.67-.68 1-.03.32.31.65.63.96.48.5.95.95.93 1.44s-.53 1-1.04 1.5l-4.13 4.14L15 14.66l4.25-4.24-.96-.96-1.42 1.41-3.75-3.75 3.84-3.83c.39-.39 1.04-.39 1.41 0l2.34 2.34c.39.37.39 1.02 0 1.41M3 17.25l9.56-9.57 3.75 3.75L6.75 21H3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pencil-box-multiple-outline.svg������������0000664�0000000�0000000�00000000472�14753064456�0031501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 6H2v14a2 2 0 0 0 2 2h14v-2H4zm14.7 1.35-1 1-2.05-2.05 1-1c.21-.22.56-.22.77 0l1.28 1.28c.22.21.22.56 0 .77M9 12.94l6.06-6.06 2.06 2.06L11.06 15H9zM20 4v12H8V4zm0-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pencil-box-multiple.svg��������������������0000664�0000000�0000000�00000000527�14753064456�0030025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.22 2H7.78C6.8 2 6 2.8 6 3.78v12.44C6 17.2 6.8 18 7.78 18h12.44c.98 0 1.78-.79 1.78-1.78V3.78C22 2.8 21.2 2 20.22 2m-9.16 13H9v-2.06l6.06-6.06 2.06 2.06zm7.64-7.65-1 1-2.05-2.05 1-1c.21-.22.56-.22.77 0l1.28 1.28c.22.21.22.56 0 .77M4 6H2v14a2 2 0 0 0 2 2h14v-2H4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pencil-box-outline.svg���������������������0000664�0000000�0000000�00000000425�14753064456�0027646�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19V5H5v14zm0-16a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm-2.3 6.35-1 1-2.05-2.05 1-1c.21-.22.56-.22.77 0l1.28 1.28c.22.21.22.56 0 .77M7 14.94l6.06-6.06 2.06 2.06L9.06 17H7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pencil-box.svg�����������������������������0000664�0000000�0000000�00000000404�14753064456�0026166�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm-2.3 6.35c.22-.21.22-.56 0-.77L15.42 7.3a.53.53 0 0 0-.77 0l-1 1 2.05 2.05zM7 14.94V17h2.06l6.06-6.06-2.06-2.06z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pencil-circle-outline.svg������������������0000664�0000000�0000000�00000000513�14753064456�0030315�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7 14.94 6.06-6.06 2.06 2.06L9.06 17H7zM12 20a8 8 0 0 0 8-8 8 8 0 0 0-8-8 8 8 0 0 0-8 8 8 8 0 0 0 8 8m4.7-10.65-1 1-2.05-2.05 1-1c.21-.22.56-.22.77 0l1.28 1.28c.22.21.22.56 0 .77M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pencil-circle.svg��������������������������0000664�0000000�0000000�00000000432�14753064456�0026640�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2m3.1 5.07c.14 0 .28.05.4.16l1.27 1.27c.23.22.23.57 0 .78l-1 1-2.05-2.05 1-1c.1-.11.24-.16.38-.16m-1.97 1.74 2.06 2.06-6.06 6.06H7.07v-2.06z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pencil-lock-outline.svg��������������������0000664�0000000�0000000�00000000561�14753064456�0030007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.1 9 .9.9L7.9 19H7v-.9zm3.6-6c-.2 0-.5.1-.7.3l-1.8 1.8 3.7 3.8L22.7 7c.4-.4.4-1 0-1.4l-2.3-2.3c-.2-.2-.5-.3-.7-.3m-3.6 3.2L5 17.2V21h3.8l11-11.1zM8 5v-.5C8 3.1 6.9 2 5.5 2S3 3.1 3 4.5V5c-.6 0-1 .4-1 1v4c0 .6.4 1 1 1h5c.6 0 1-.4 1-1V6c0-.6-.4-1-1-1M7 5H4v-.5C4 3.7 4.7 3 5.5 3S7 3.7 7 4.5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pencil-lock.svg����������������������������0000664�0000000�0000000�00000000616�14753064456�0026333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.5 2A2.5 2.5 0 0 0 3 4.5V5a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1v-.5A2.5 2.5 0 0 0 5.5 2m0 1A1.5 1.5 0 0 1 7 4.5V5H4v-.5A1.5 1.5 0 0 1 5.5 3m14.16 0c-.26 0-.5.09-.69.28l-1.84 1.85 3.75 3.75 1.84-1.85c.39-.39.39-1.03 0-1.4l-2.34-2.35c-.2-.19-.47-.28-.72-.28m-3.6 3.19L5 17.25V21h3.75L19.81 9.94z"/></svg>������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pencil-minus-outline.svg�������������������0000664�0000000�0000000�00000000356�14753064456�0030214�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.1 9 .9.9L5.9 19H5v-.9zm3.6-6c-.2 0-.5.1-.7.3l-1.8 1.8 3.7 3.8L20.7 7c.4-.4.4-1 0-1.4l-2.3-2.3c-.2-.2-.5-.3-.7-.3m-3.6 3.2L3 17.2V21h3.8l11-11.1zM10 5v2H2V5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pencil-minus.svg���������������������������0000664�0000000�0000000�00000000273�14753064456�0026535�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.7 7c.4-.4.4-1 0-1.4l-2.3-2.3c-.4-.4-1-.4-1.4 0l-1.8 1.8L19 8.9M3 17.2V21h3.8l11-11.1-3.7-3.8zM10 5v2H2V5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pencil-off-outline.svg���������������������0000664�0000000�0000000�00000000464�14753064456�0027633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10 10.2 4-4 3.8 3.8-4 4-1.4-1.4L15 9.9l-.9-.9-2.6 2.6zm10.7-4.6-2.3-2.3c-.2-.2-.5-.3-.7-.3s-.5.1-.7.3l-1.8 1.8L19 8.9 20.7 7c.4-.3.4-1 0-1.4M19 21.7 17.7 23l-6.5-6.5L6.8 21H3v-3.8l4.5-4.5L1 6.3 2.3 5zm-9.2-6.6-.9-.9L5 18.1v.9h.9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pencil-off.svg�����������������������������0000664�0000000�0000000�00000000502�14753064456�0026147�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.66 2c-.26 0-.5.09-.69.28l-1.84 1.85 3.75 3.75 1.84-1.85c.39-.39.39-1.03 0-1.4l-2.34-2.35c-.2-.19-.47-.28-.72-.28M3.28 4 2 5.28l6.5 6.47-4.5 4.5V20h3.75l4.5-4.5 6.47 6.5L20 20.72l-6.5-6.47-3.75-3.75zm11.78 1.19-4.03 4.03 3.75 3.75 4.03-4.03z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pencil-outline.svg�������������������������0000664�0000000�0000000�00000000404�14753064456�0027055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.06 9 .94.94L5.92 19H5v-.92zm3.6-6c-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.04 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29m-3.6 3.19L3 17.25V21h3.75L17.81 9.94z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pencil-plus-outline.svg��������������������0000664�0000000�0000000�00000000375�14753064456�0030045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.1 9 .9.9L5.9 19H5v-.9zm3.6-6c-.2 0-.5.1-.7.3l-1.8 1.8 3.7 3.8L20.7 7c.4-.4.4-1 0-1.4l-2.3-2.3c-.2-.2-.5-.3-.7-.3m-3.6 3.2L3 17.2V21h3.8l11-11.1zM7 2v3h3v2H7v3H5V7H2V5h3V2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pencil-plus.svg����������������������������0000664�0000000�0000000�00000000312�14753064456�0026357�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.7 7c.4-.4.4-1 0-1.4l-2.3-2.3c-.4-.4-1-.4-1.4 0l-1.8 1.8L19 8.9M3 17.2V21h3.8l11-11.1-3.7-3.8zM7 2v3h3v2H7v3H5V7H2V5h3V2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pencil-remove-outline.svg������������������0000664�0000000�0000000�00000000474�14753064456�0030357�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.7 3c-.2 0-.5.1-.7.3l-1.8 1.8 3.7 3.8L20.7 7c.4-.4.4-1 0-1.4l-2.3-2.3c-.2-.2-.5-.3-.7-.3m-3.6 3.2L3 17.2V21h3.8l11-11.1zM5.9 19H5v-.9L14.1 9l.9.9zm-2-16.5L6 4.6l2.1-2.1 1.4 1.4L7.4 6l2.1 2.1-1.4 1.4L6 7.4 3.9 9.5 2.5 8.1 4.6 6 2.5 3.9z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pencil-remove.svg��������������������������0000664�0000000�0000000�00000000410�14753064456�0026670�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.7 7c.4-.4.4-1 0-1.4l-2.3-2.3c-.4-.4-1-.4-1.4 0l-1.8 1.8L19 8.9M3 17.2V21h3.8l11-11.1-3.7-3.8zm.9-14.8L6 4.5l2.1-2.1 1.4 1.4-2.1 2.1L9.5 8 8.1 9.5 6 7.4 3.9 9.5 2.5 8.1 4.6 6 2.5 3.8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pencil-ruler-outline.svg�������������������0000664�0000000�0000000�00000000662�14753064456�0030212�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.61 18.36-4.25 4.25-5.2-5.2 1.77-1.77 1 1 2.47-2.48 1.42 1.42L18.36 17l1.06 1 1.42-1.4zm-16-7.53L1.39 5.64l4.25-4.25L7.4 3.16 4.93 5.64 6 6.7l2.46-2.48 1.42 1.42-1.42 1.41 1 1zM14.06 9l.94.93L5.92 19H5v-.92zm3.61-6c-.25 0-.51.09-.71.29l-1.84 1.83 3.75 3.75L20.71 7c.39-.39.39-1 0-1.41l-2.34-2.3a.98.98 0 0 0-.7-.29m-3.61 3.18L3 17.25V21h3.75L17.81 9.93z"/></svg>������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pencil-ruler.svg���������������������������0000664�0000000�0000000�00000000574�14753064456�0026537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 17.25V21h3.75L17.81 9.93l-3.75-3.75zm19.61 1.11-4.25 4.25-5.2-5.2 1.77-1.77 1 1 2.47-2.48 1.42 1.42L18.36 17l1.06 1 1.42-1.4zm-16-7.53L1.39 5.64l4.25-4.25L7.4 3.16 4.93 5.64 6 6.7l2.46-2.48 1.42 1.42-1.42 1.41 1 1zM20.71 7c.39-.39.39-1 0-1.41l-2.34-2.3c-.37-.39-1.02-.39-1.41 0l-1.84 1.83 3.75 3.75z"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pencil.svg���������������������������������0000664�0000000�0000000�00000000320�14753064456�0025375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.71 7.04c.39-.39.39-1.04 0-1.41l-2.34-2.34c-.37-.39-1.02-.39-1.41 0l-1.84 1.83 3.75 3.75M3 17.25V21h3.75L17.81 9.93l-3.75-3.75z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/penguin.svg��������������������������������0000664�0000000�0000000�00000000777�14753064456�0025610�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 16c0 1.72-.63 3.3-1.66 4.5.41.39.66.91.66 1.5H6c0-.59.25-1.11.66-1.5A6.9 6.9 0 0 1 5 16H3c0-1.25.57-2.36 1.46-3.09l.01-.02A6 6 0 0 0 7 8V7a5 5 0 0 1 5-5 5 5 0 0 1 5 5v1c0 2 1 3.81 2.53 4.89l.01.02c.89.73 1.46 1.84 1.46 3.09zm-3 0a4 4 0 0 0-4-4 4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4m-6-7 2 1.5L14 9l-2-1.5zm0-4a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m4 0a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>�mkdocs-material-9.6.4/material/templates/.icons/material/pentagon-outline.svg�����������������������0000664�0000000�0000000�00000000223�14753064456�0027415�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 5 7.6 5.5-2.9 8.9H7.3l-2.9-8.9zm0-2.5L2 9.8l3.8 11.7h12.3L22 9.8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pentagon.svg�������������������������������0000664�0000000�0000000�00000000161�14753064456�0025741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2.5 2 9.8l3.8 11.7h12.4L22 9.8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pentagram.svg������������������������������0000664�0000000�0000000�00000000523�14753064456�0026106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.15 14.4 2.56 7.86L12 17.4l-6.72 4.9 2.57-7.93-6.7-4.87h8.29L12 1.61l2.56 7.89h8.33zm-2.85 2.07 2.56 1.86-.98-3.01zM11 9.5h2l-1-3.03zm-.26 6.97L9.13 15.3l-1 3.07zM18.28 11h-3.23l.62 1.9zm-7.75 0-.91 2.8L12 15.54l2.39-1.72-.92-2.82zm-4.77 0 2.58 1.87.61-1.87z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/percent-box-outline.svg��������������������0000664�0000000�0000000�00000000616�14753064456�0030036�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m0 16H5V5h14zm-2-3.78c0 .98-.8 1.78-1.78 1.78s-1.77-.8-1.77-1.78.79-1.77 1.77-1.77 1.78.79 1.78 1.77m-8.5 1.81L7 15.53 15.53 7l1.5 1.5zm-1.45-8.2c0-.99.79-1.78 1.78-1.78.98 0 1.77.79 1.77 1.78 0 .98-.79 1.77-1.77 1.77-.99 0-1.78-.79-1.78-1.77"/></svg>������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/percent-box.svg����������������������������0000664�0000000�0000000�00000000602�14753064456�0026354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2M8.83 7.05c.98 0 1.77.79 1.77 1.78 0 .98-.79 1.77-1.77 1.77-.99 0-1.78-.79-1.78-1.77 0-.99.79-1.78 1.78-1.78M15.22 17c-.98 0-1.77-.8-1.77-1.78s.79-1.77 1.77-1.77 1.78.79 1.78 1.77S16.2 17 15.22 17m-6.72.03L7 15.53 15.53 7l1.5 1.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/percent-circle-outline.svg�����������������0000664�0000000�0000000�00000000653�14753064456�0030510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 15.22c0 .98-.8 1.78-1.78 1.78s-1.77-.8-1.77-1.78.79-1.77 1.77-1.77 1.78.79 1.78 1.77M8.83 10.6c.98 0 1.77-.79 1.77-1.77 0-.99-.79-1.78-1.77-1.78-.99 0-1.78.79-1.78 1.78 0 .98.79 1.77 1.78 1.77M7 15.53l1.5 1.5 8.53-8.53-1.5-1.5zM22 12c0 5.5-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2s10 4.5 10 10m-2 0c0-4.41-3.59-8-8-8s-8 3.59-8 8 3.59 8 8 8 8-3.59 8-8"/></svg>�������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/percent-circle.svg�������������������������0000664�0000000�0000000�00000000560�14753064456�0027030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2M8.83 7.05c.98 0 1.77.79 1.77 1.78 0 .98-.79 1.77-1.77 1.77-.99 0-1.78-.79-1.78-1.77 0-.99.79-1.78 1.78-1.78M15.22 17c-.98 0-1.77-.8-1.77-1.78s.79-1.77 1.77-1.77 1.78.79 1.78 1.77S16.2 17 15.22 17m-6.72.03L7 15.53 15.53 7l1.5 1.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/percent-outline.svg������������������������0000664�0000000�0000000�00000000500�14753064456�0027240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.5 3.5 2 2-15 15-2-2zM7 4c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3m10 10c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3M7 6c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m10 10c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/percent.svg��������������������������������0000664�0000000�0000000�00000000341�14753064456�0025566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.5 3.5-15 15 2 2 15-15M7 4a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3m10 10a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/periodic-table.svg�������������������������0000664�0000000�0000000�00000000603�14753064456�0027012�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4v2h2V4zm18 0v2h2V4zM2 7v2h2V7zm3 0v2h2V7zm9 0v2h2V7zm3 0v2h2V7zm3 0v2h2V7zM2 10v2h2v-2zm3 0v2h2v-2zm3 0v2h2v-2zm3 0v2h2v-2zm3 0v2h2v-2zm3 0v2h2v-2zm3 0v2h2v-2zM2 13v2h2v-2zm3 0v2h2v-2zm3 0v2h2v-2zm3 0v2h2v-2zm3 0v2h2v-2zm3 0v2h2v-2zm3 0v2h2v-2zM5 17v2h2v-2zm3 0v2h2v-2zm3 0v2h2v-2zm3 0v2h2v-2zm3 0v2h2v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/perspective-less.svg�����������������������0000664�0000000�0000000�00000000244�14753064456�0027425�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.56 12 2.67 8H4.78l2.66-8zM7 1 3 5l4 4V6h4V4H7zm10 0v3h-4v2h4v3l4-4zm1 9H6L2 22h20z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/perspective-more.svg�����������������������0000664�0000000�0000000�00000000246�14753064456�0027423�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.56 12 2.67 8H4.78l2.66-8zM17 1l-4 4 4 4V6h4V4h-4zM7 1v3H3v2h4v3l4-4zm11 9H6L2 22h20z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ph.svg�������������������������������������0000664�0000000�0000000�00000000256�14753064456�0024542�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 7v10h2v-4h2v4h2V7h-2v4h-2V7zm-2 8v-2a2 2 0 0 0-2-2H5v10h2v-4h2c1.11 0 2-.89 2-2m-2 0H7v-2h2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-alert-outline.svg��������������������0000664�0000000�0000000�00000000643�14753064456�0030026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15.5c-1.2 0-2.5-.2-3.6-.6h-.3c-.3 0-.5.1-.7.3l-2.2 2.2c-2.8-1.5-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.4-.5-3.6 0-.5-.5-1-1-1H4c-.5 0-1 .5-1 1 0 9.4 7.6 17 17 17 .5 0 1-.5 1-1v-3.5c0-.5-.5-1-1-1M5 5h1.5c.1.9.3 1.8.5 2.6L5.8 8.8C5.4 7.6 5.1 6.3 5 5m14 14c-1.3-.1-2.6-.4-3.8-.8l1.2-1.2c.8.2 1.7.4 2.6.4zm-2-7v-2h2v2zm0-4V2h2v6z"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-alert.svg����������������������������0000664�0000000�0000000�00000000504�14753064456�0026345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.62 10.79c1.44 2.83 3.76 5.15 6.59 6.59l2.2-2.2c.28-.28.67-.36 1.02-.25 1.12.37 2.32.57 3.57.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4c0-.56.45-1 1-1h3.5a1 1 0 0 1 1 1c0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.01zM17 12v-2h2v2zm0-4V2h2v6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-bluetooth-outline.svg����������������0000664�0000000�0000000�00000001033�14753064456�0030716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15.5c-1.2 0-2.5-.2-3.6-.6h-.3c-.3 0-.5.1-.7.3l-2.2 2.2c-2.8-1.5-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.4-.5-3.6 0-.5-.5-1-1-1H4c-.5 0-1 .5-1 1 0 9.4 7.6 17 17 17 .5 0 1-.5 1-1v-3.5c0-.5-.5-1-1-1M5 5h1.5c.1.9.3 1.8.5 2.6L5.8 8.8C5.4 7.6 5.1 6.3 5 5m14 14c-1.3-.1-2.6-.4-3.8-.8l1.2-1.2c.8.2 1.7.4 2.6.4zM18 7.21l.94.93-.94.94m0-6.17.94.94-.94.94M14.71 9.5 17 7.21V11h.5l2.85-2.86L18.21 6l2.14-2.15L17.5 1H17v3.79L14.71 2.5l-.71.71L16.79 6 14 8.79z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-bluetooth.svg������������������������0000664�0000000�0000000�00000000677�14753064456�0027256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.25l-2.2 2.2a15.1 15.1 0 0 1-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02A11.4 11.4 0 0 1 8.5 4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1 17 17 0 0 0 17 17 1 1 0 0 0 1-1v-3.5a1 1 0 0 0-1-1m-2-8.29.94.93-.94.94m0-6.17.94.94-.94.94M14.71 9.5 17 7.21V11h.5l2.85-2.86L18.21 6l2.14-2.15L17.5 1H17v3.79L14.71 2.5l-.71.71L16.79 6 14 8.79z"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-cancel-outline.svg�������������������0000664�0000000�0000000�00000001145�14753064456�0030142�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15.5c-1.2 0-2.5-.2-3.6-.6h-.3c-.3 0-.5.1-.7.3l-2.2 2.2c-2.8-1.5-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.4-.5-3.6 0-.5-.5-1-1-1H4c-.5 0-1 .5-1 1 0 9.4 7.6 17 17 17 .5 0 1-.5 1-1v-3.5c0-.5-.5-1-1-1M5 5h1.5c.1.9.3 1.8.5 2.6L5.8 8.8C5.4 7.6 5.1 6.3 5 5m14 14c-1.3-.1-2.6-.4-3.8-.8l1.2-1.2c.8.2 1.7.4 2.6.4zM16.5 2C14 2 12 4 12 6.5s2 4.5 4.5 4.5S21 9 21 6.5 19 2 16.5 2m0 7.5c-1.66 0-3-1.34-3-3 0-.56.15-1.08.42-1.5L18 9.08c-.42.27-.94.42-1.5.42M19.08 8 15 3.92c.42-.27.94-.42 1.5-.42 1.66 0 3 1.34 3 3 0 .56-.15 1.08-.42 1.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-cancel.svg���������������������������0000664�0000000�0000000�00000001017�14753064456�0026463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.62 10.79c1.44 2.83 3.76 5.15 6.59 6.59l2.2-2.2c.28-.28.67-.36 1.02-.25 1.12.37 2.32.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02zM16.5 2C14 2 12 4 12 6.5s2 4.5 4.5 4.5S21 9 21 6.5 19 2 16.5 2m0 7.5c-1.66 0-3-1.34-3-3 0-.56.15-1.08.42-1.5L18 9.08c-.42.27-.94.42-1.5.42M19.08 8 15 3.92c.42-.27.94-.42 1.5-.42 1.66 0 3 1.34 3 3 0 .56-.15 1.08-.42 1.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-check-outline.svg��������������������0000664�0000000�0000000�00000000714�14753064456�0027773�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15.5a11.4 11.4 0 0 1-3.57-.57 1 1 0 0 0-1 .25l-2.2 2.2a15.1 15.1 0 0 1-6.59-6.59l2.2-2.2a1 1 0 0 0 .25-1A11.4 11.4 0 0 1 8.5 4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1 17 17 0 0 0 17 17 1 1 0 0 0 1-1v-3.5a1 1 0 0 0-1-1M5 5h1.54A12.5 12.5 0 0 0 7 7.59L5.79 8.8A15 15 0 0 1 5 5m14 14a15 15 0 0 1-3.8-.76L16.41 17a12.3 12.3 0 0 0 2.59.45m-4-6.01-3.71-3.7 1.42-1.42L15 8.59l5.29-5.3 1.42 1.42Z"/></svg>����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-check.svg����������������������������0000664�0000000�0000000�00000000526�14753064456�0026317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.62 10.79a15.1 15.1 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1-.25 11.4 11.4 0 0 0 3.59.57 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1 11.4 11.4 0 0 0 .57 3.57 1 1 0 0 1-.25 1m12.89-3.86-1.42-1.42L15 8.59l-2.29-2.3-1.42 1.42 3.71 3.7Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-classic-off.svg����������������������0000664�0000000�0000000�00000001276�14753064456�0027436�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3c4.53 0 8.65 1.78 11.7 4.67.18.18.3.42.3.7s-.11.53-.29.71l-2.48 2.48c-.18.18-.43.29-.73.29-.25 0-.5-.1-.68-.28-.82-.73-1.69-1.36-2.67-1.85-.33-.16-.56-.51-.56-.9v-3.1C15.14 5.25 13.59 5 12 5c-1.56 0-3.07.24-4.5.69L5.94 4.11C7.82 3.4 9.86 3 12 3M9 7h2v2h2V7h2v3s6 5 6 8v1.18l-12-12zM1 4.27 2.28 3 21.5 22.22l-1.27 1.28-1.5-1.5H3v-4c0-2.14 3.05-5.29 4.8-6.93L6.59 9.86c-.88.47-1.69 1.04-2.41 1.72a1.015 1.015 0 0 1-1.41-.01L.29 9.09A1 1 0 0 1 0 8.38c0-.28.11-.53.29-.71C.996 7 2.58 5.85 2.58 5.85zM8 16a3.999 3.999 0 0 0 7.17 2.44l-1.07-1.08A2.5 2.5 0 0 1 9.5 16c0-.88.45-1.65 1.14-2.09l-1.08-1.08C8.61 13.56 8 14.71 8 16"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-classic.svg��������������������������0000664�0000000�0000000�00000001166�14753064456�0026664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3C7.46 3 3.34 4.78.29 7.67c-.18.18-.29.43-.29.71s.11.53.29.71l2.48 2.48a1.01 1.01 0 0 0 1.41.01c.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1C8.85 5.25 10.39 5 12 5c1.59 0 3.14.25 4.59.72v3.1c0 .39.23.74.56.9.98.49 1.85 1.12 2.67 1.85.18.18.43.28.68.28.3 0 .55-.11.73-.29l2.48-2.48c.18-.18.29-.43.29-.71s-.12-.52-.3-.7A16.97 16.97 0 0 0 12 3M9 7v3s-6 5-6 8v4h18v-4c0-3-6-8-6-8V7h-2v2h-2V7zm3 5a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 1.5A2.5 2.5 0 0 0 9.5 16a2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-clock.svg����������������������������0000664�0000000�0000000�00000000641�14753064456�0026333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.9 1C12.1 1.1 9 4.2 9 8c0 3.9 3.1 7 7 7s7-3.1 7-7-3.1-7-7.1-7c.1 0 0 0 0 0m.1 2c2.8 0 5 2.2 5 5s-2.2 5-5 5-5-2.2-5-5 2.2-5 5-5m-1 1v5l3.6 2.2.8-1.2-2.9-1.7V4zM4.6 12.8c1.4 2.8 3.8 5.2 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2q1.65.6 3.6.6c.5 0 1 .5 1 1V22c0 .5-.5 1-1 1C8.6 23 1 15.4 1 6c0-.6.5-1 1-1h3.5c.6 0 1 .4 1 1q0 1.8.6 3.6c.1.4 0 .7-.2 1z"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-dial-outline.svg���������������������0000664�0000000�0000000�00000001454�14753064456�0027631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15.5c-1.2 0-2.5-.2-3.6-.6h-.3c-.3 0-.5.1-.7.3l-2.2 2.2c-2.8-1.5-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.4-.5-3.6 0-.5-.5-1-1-1H4c-.5 0-1 .5-1 1 0 9.4 7.6 17 17 17 .5 0 1-.5 1-1v-3.5c0-.5-.5-1-1-1M5 5h1.5c.1.9.3 1.8.5 2.6L5.8 8.8C5.4 7.6 5.1 6.3 5 5m14 14c-1.3-.1-2.6-.4-3.8-.8l1.2-1.2c.8.2 1.7.4 2.6.4zM15 4c0 .6-.4 1-1 1s-1-.4-1-1 .4-1 1-1 1 .4 1 1m3 0c0 .6-.4 1-1 1s-1-.4-1-1 .4-1 1-1 1 .4 1 1m3 0c0 .6-.4 1-1 1s-1-.4-1-1 .4-1 1-1 1 .4 1 1m-6 3c0 .6-.4 1-1 1s-1-.4-1-1 .4-1 1-1 1 .4 1 1m3 0c0 .6-.4 1-1 1s-1-.4-1-1 .4-1 1-1 1 .4 1 1m3 0c0 .6-.4 1-1 1s-1-.4-1-1 .4-1 1-1 1 .4 1 1m-6 3c0 .6-.4 1-1 1s-1-.4-1-1 .4-1 1-1 1 .4 1 1m3 0c0 .6-.4 1-1 1s-1-.4-1-1 .4-1 1-1 1 .4 1 1m3 0c0 .6-.4 1-1 1s-1-.4-1-1 .4-1 1-1 1 .4 1 1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-dial.svg�����������������������������0000664�0000000�0000000�00000001242�14753064456�0026147�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2q1.65.6 3.6.6c.6 0 1 .4 1 1V20c0 .6-.4 1-1 1-9.4 0-17-7.6-17-17 0-.6.5-1 1-1h3.5c.6 0 1 .4 1 1q0 1.8.6 3.6c.1.3 0 .7-.2 1zM14 3c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1m3 0c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1m3 0c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1m-6 3c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1m3 0c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1m3 0c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1m-6 3c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1m3 0c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1m3 0c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-forward-outline.svg������������������0000664�0000000�0000000�00000000642�14753064456�0030362�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15.5c-1.2 0-2.5-.2-3.6-.6h-.3c-.3 0-.5.1-.7.3l-2.2 2.2c-2.8-1.5-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.4-.5-3.6 0-.5-.5-1-1-1H4c-.5 0-1 .5-1 1 0 9.4 7.6 17 17 17 .5 0 1-.5 1-1v-3.5c0-.5-.5-1-1-1M5 5h1.5c.1.9.3 1.8.5 2.6L5.8 8.8C5.4 7.6 5.1 6.3 5 5m14 14c-1.3-.1-2.6-.4-3.8-.8l1.2-1.2c.8.2 1.7.4 2.6.4zm-1-8 5-5-5-5v3h-4v4h4z"/></svg>����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-forward.svg��������������������������0000664�0000000�0000000�00000000510�14753064456�0026677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.25l-2.2 2.2a15.1 15.1 0 0 1-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02A11.4 11.4 0 0 1 8.5 4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1 17 17 0 0 0 17 17 1 1 0 0 0 1-1v-3.5a1 1 0 0 0-1-1M18 11l5-5-5-5v3h-4v4h4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-hangup-outline.svg�������������������0000664�0000000�0000000�00000001010�14753064456�0030166�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.71 11.67a17 17 0 0 0-23.42 0 1 1 0 0 0-.29.71 1 1 0 0 0 .29.7l2.48 2.48a1 1 0 0 0 .73.29 1 1 0 0 0 .68-.28 11.5 11.5 0 0 1 2.66-1.85 1 1 0 0 0 .56-.9v-3.1A14.9 14.9 0 0 1 12 9a14.5 14.5 0 0 1 4.59.73v3.1a1 1 0 0 0 .56.9 11.3 11.3 0 0 1 2.67 1.85 1 1 0 0 0 .68.28 1 1 0 0 0 .73-.29l2.48-2.48a1 1 0 0 0 0-1.42m-18.31.55a13.7 13.7 0 0 0-1.87 1.28l-1.07-1.08A15.5 15.5 0 0 1 5.4 10.5m15.1 3a14 14 0 0 0-1.9-1.27v-1.7a14.3 14.3 0 0 1 2.95 1.9Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-hangup.svg���������������������������0000664�0000000�0000000�00000000701�14753064456�0026517�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 9c-1.6 0-3.15.25-4.6.72v3.1c0 .4-.23.74-.56.9-.98.49-1.87 1.12-2.67 1.85-.17.18-.42.29-.67.29-.3 0-.55-.12-.73-.3L.29 13.08a1 1 0 0 1-.29-.7c0-.28.11-.53.29-.71C3.34 8.77 7.46 7 12 7s8.66 1.77 11.71 4.67c.18.18.29.43.29.71 0 .27-.11.52-.29.7l-2.48 2.48c-.18.18-.43.3-.73.3a.98.98 0 0 1-.68-.29c-.79-.73-1.68-1.36-2.66-1.85a1 1 0 0 1-.56-.9v-3.1C15.15 9.25 13.6 9 12 9"/></svg>���������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-in-talk-outline.svg������������������0000664�0000000�0000000�00000000731�14753064456�0030254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15.5c-1.2 0-2.5-.2-3.6-.6h-.3c-.3 0-.5.1-.7.3l-2.2 2.2c-2.8-1.5-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.4-.5-3.6 0-.5-.5-1-1-1H4c-.5 0-1 .5-1 1 0 9.4 7.6 17 17 17 .5 0 1-.5 1-1v-3.5c0-.5-.5-1-1-1M5 5h1.5c.1.9.3 1.8.5 2.6L5.8 8.8C5.4 7.6 5.1 6.3 5 5m14 14c-1.3-.1-2.6-.4-3.8-.8l1.2-1.2c.8.2 1.7.4 2.6.4zm-4-7h2a5 5 0 0 0-5-5v2a3 3 0 0 1 3 3m4 0h2c0-5-4.03-9-9-9v2c3.86 0 7 3.13 7 7"/></svg>���������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-in-talk.svg��������������������������0000664�0000000�0000000�00000000575�14753064456�0026605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 12h2a5 5 0 0 0-5-5v2a3 3 0 0 1 3 3m4 0h2c0-5-4.03-9-9-9v2c3.86 0 7 3.13 7 7m1 3.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.25l-2.2 2.2a15.1 15.1 0 0 1-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02A11.4 11.4 0 0 1 8.5 4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1 17 17 0 0 0 17 17 1 1 0 0 0 1-1v-3.5a1 1 0 0 0-1-1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-incoming-outgoing-outline.svg��������0000664�0000000�0000000�00000000732�14753064456�0032352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 16.5c-1.2 0-2.5-.2-3.6-.6h-.3c-.3 0-.5.1-.7.3l-2.2 2.2c-2.8-1.5-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.4-.5-3.6 0-.5-.5-1-1-1H3c-.5 0-1 .5-1 1 0 9.4 7.6 17 17 17 .5 0 1-.5 1-1v-3.5c0-.5-.5-1-1-1M4 6h1.5c.1.9.3 1.8.5 2.6L4.8 9.8C4.4 8.6 4.1 7.3 4 6m14 14c-1.3-.1-2.6-.4-3.8-.8l1.2-1.2c.8.2 1.7.4 2.6.4zM16 9V7.5h-3.5L18 2l-1-1-5.5 5.5V3H10v6zm1-3v1.5h3.5L15 13l1 1 5.5-5.5V12H23V6z"/></svg>��������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-incoming-outgoing.svg����������������0000664�0000000�0000000�00000000606�14753064456�0030675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 17.5V21c0 .55-.45 1-1 1C9.61 22 2 14.39 2 5c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1l-2.2 2.21c1.44 2.84 3.76 5.15 6.59 6.59l2.2-2.2c.28-.27.67-.35 1.02-.24 1.12.37 2.32.57 3.57.57.55 0 1 .45 1 1m-4-10h-3.5L18 2l-1-1-5.5 5.5V3H10v6h6zM17 6v1.5h3.5L15 13l1 1 5.5-5.5V12H23V6z"/></svg>��������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-incoming-outline.svg�����������������0000664�0000000�0000000�00000000662�14753064456�0030523�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15.5c-1.2 0-2.5-.2-3.6-.6h-.3c-.3 0-.5.1-.7.3l-2.2 2.2c-2.8-1.5-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.4-.5-3.6 0-.5-.5-1-1-1H4c-.5 0-1 .5-1 1 0 9.4 7.6 17 17 17 .5 0 1-.5 1-1v-3.5c0-.5-.5-1-1-1M5 5h1.5c.1.9.3 1.8.5 2.6L5.8 8.8C5.4 7.6 5.1 6.3 5 5m14 14c-1.3-.1-2.6-.4-3.8-.8l1.2-1.2c.8.2 1.7.4 2.6.4zm0-8V9.5h-3.5L21 4l-1-1-5.5 5.5V5H13v6z"/></svg>������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-incoming.svg�������������������������0000664�0000000�0000000�00000000522�14753064456�0027041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3a1 1 0 0 0-1 1 17 17 0 0 0 17 17 1 1 0 0 0 1-1v-3.5a1 1 0 0 0-1-1c-1.25 0-2.45-.2-3.57-.57a1.02 1.02 0 0 0-1.02.24l-2.2 2.2a15.05 15.05 0 0 1-6.59-6.59l2.2-2.21a.96.96 0 0 0 .25-1A11.4 11.4 0 0 1 8.5 4a1 1 0 0 0-1-1zm15 8V9.5h-3.5L21 4l-1-1-5.5 5.5V5H13v6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-lock-outline.svg���������������������0000664�0000000�0000000�00000001061�14753064456�0027642�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15.5c-1.2 0-2.5-.2-3.6-.6h-.3c-.3 0-.5.1-.7.3l-2.2 2.2c-2.8-1.5-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.4-.5-3.6 0-.5-.5-1-1-1H4c-.5 0-1 .5-1 1 0 9.4 7.6 17 17 17 .5 0 1-.5 1-1v-3.5c0-.5-.5-1-1-1M5 5h1.5c.1.9.3 1.8.5 2.6L5.8 8.8C5.4 7.6 5.1 6.3 5 5m14 14c-1.3-.1-2.6-.4-3.8-.8l1.2-1.2c.8.2 1.7.4 2.6.4zm.2-15h-3.4v-.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7m.8.5v-.5A2.5 2.5 0 0 0 17.5 1 2.5 2.5 0 0 0 15 3.5V4a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-lock.svg�����������������������������0000664�0000000�0000000�00000000726�14753064456�0026174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.2 4h-3.4v-.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7m.8.5v-.5A2.5 2.5 0 0 0 17.5 1 2.5 2.5 0 0 0 15 3.5V4a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1m0 11.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.25l-2.2 2.2a15.1 15.1 0 0 1-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02A11.4 11.4 0 0 1 8.5 4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1 17 17 0 0 0 17 17 1 1 0 0 0 1-1v-3.5a1 1 0 0 0-1-1"/></svg>������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-log-outline.svg����������������������0000664�0000000�0000000�00000000721�14753064456�0027475�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15.5c-1.2 0-2.5-.2-3.6-.6h-.3c-.3 0-.5.1-.7.3l-2.2 2.2c-2.8-1.5-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.4-.5-3.6 0-.5-.5-1-1-1H4c-.5 0-1 .5-1 1 0 9.4 7.6 17 17 17 .5 0 1-.5 1-1v-3.5c0-.5-.5-1-1-1M5 5h1.5c.1.9.3 1.8.5 2.6L5.8 8.8C5.4 7.6 5.1 6.3 5 5m14 14c-1.3-.1-2.6-.4-3.8-.8l1.2-1.2c.8.2 1.7.4 2.6.4zM12 3h2v2h-2m3-2h6v2h-6m-3 1h2v2h-2m3-2h6v2h-6m-3 1h2v2h-2m3-2h6v2h-6Z"/></svg>�����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-log.svg������������������������������0000664�0000000�0000000�00000000565�14753064456�0026026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15.5a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.01l-2.2 2.21c1.44 2.83 3.76 5.15 6.59 6.59l2.2-2.2c.28-.28.67-.36 1.02-.25 1.12.37 2.32.57 3.57.57M12 3h2v2h-2m3-2h6v2h-6m-3 1h2v2h-2m3-2h6v2h-6m-3 1h2v2h-2m3-2h6v2h-6"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-message-outline.svg������������������0000664�0000000�0000000�00000000766�14753064456�0030351�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.12-.71.29l-2.2 2.2a15.07 15.07 0 0 1-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01A11.4 11.4 0 0 1 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1M5.03 5h1.5c.07.88.22 1.75.47 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8M19 18.97c-1.32-.09-2.6-.35-3.8-.76L16.4 17c.85.25 1.72.4 2.6.46zM12 3v10l3-3h6V3zm7 5h-5V5h5z"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/material/phone-message.svg��������������������������0000664�0000000�0000000�00000000520�14753064456�0026660�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15.5c-1.25 0-2.45-.2-3.57-.57a1.02 1.02 0 0 0-1.02.24l-2.2 2.2a15.07 15.07 0 0 1-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01A11.4 11.4 0 0 1 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1M12 3v10l3-3h6V3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-minus-outline.svg��������������������0000664�0000000�0000000�00000000627�14753064456�0030054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15.5c-1.2 0-2.5-.2-3.6-.6h-.3c-.3 0-.5.1-.7.3l-2.2 2.2c-2.8-1.5-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.4-.5-3.6 0-.5-.5-1-1-1H4c-.5 0-1 .5-1 1 0 9.4 7.6 17 17 17 .5 0 1-.5 1-1v-3.5c0-.5-.5-1-1-1M5 5h1.5c.1.9.3 1.8.5 2.6L5.8 8.8C5.4 7.6 5.1 6.3 5 5m14 14c-1.3-.1-2.6-.4-3.8-.8l1.2-1.2c.8.2 1.7.4 2.6.4zM13 6v2h8V6Z"/></svg>���������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-minus.svg����������������������������0000664�0000000�0000000�00000000472�14753064456�0026375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3a1 1 0 0 0-1 1 17 17 0 0 0 17 17 1 1 0 0 0 1-1v-3.5a1 1 0 0 0-1-1c-1.24 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.25l-2.2 2.2a15.15 15.15 0 0 1-6.59-6.59l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.24 8.5 4a1 1 0 0 0-1-1M13 6v2h8V6"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-missed-outline.svg�������������������0000664�0000000�0000000�00000001026�14753064456�0030177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.6 15.5v1.8c.7.4 1.3.8 1.9 1.3l1.1-1.1c-.9-.9-1.9-1.5-3-2m-13.2 0c-1 .5-2 1.1-2.9 1.9l1.1 1.1c.6-.5 1.2-.9 1.9-1.3v-1.7M12 12c4.5 0 8.7 1.7 11.7 4.7.2.2.3.4.3.7s-.1.5-.3.7l-2.5 2.5c-.2.2-.4.3-.7.3-.2 0-.5-.1-.7-.3-.8-.7-1.7-1.4-2.7-1.8-.3-.2-.6-.5-.6-.9v-3.1c-1.5-.5-3-.7-4.6-.7s-3.1.2-4.6.7v3.1q0 .6-.6.9-1.5.75-2.7 1.8c-.2.2-.4.3-.7.3s-.5-.1-.7-.3L.1 18.1c0-.2-.1-.5-.1-.7 0-.3.1-.5.3-.7C3.3 13.8 7.5 12 12 12M6.5 5.5V9H5V3h6v1.5H7.5L12 9l6-6 1 1-7 7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-missed.svg���������������������������0000664�0000000�0000000�00000000763�14753064456�0026531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.71 16.67C20.66 13.77 16.54 12 12 12S3.34 13.77.29 16.67c-.18.18-.29.43-.29.71 0 .27.11.52.29.7l2.48 2.48c.18.18.43.3.73.3.25 0 .5-.11.68-.29.79-.74 1.68-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.47 2.99-.72 4.6-.72 1.6 0 3.15.25 4.6.72v3.1c0 .4.23.74.56.9.98.49 1.87 1.11 2.66 1.85.18.18.43.29.68.29.3 0 .55-.12.73-.3l2.48-2.48a1 1 0 0 0 .29-.7c0-.28-.11-.53-.29-.71M6.5 5.5 12 11l7-7-1-1-6 6-4.5-4.5H11V3H5v6h1.5z"/></svg>�������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-off-outline.svg����������������������0000664�0000000�0000000�00000000742�14753064456�0027471�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.4 17c.8.2 1.7.4 2.6.5V19c-1.3-.1-2.6-.3-3.8-.8zm3.8-14.5L2.5 20.2l1.3 1.3 4.9-4.9C11.8 19.4 15.8 21 20 21c.6 0 1-.4 1-1v-3.5c0-.6-.4-1-1-1-1.2 0-2.5-.2-3.6-.6h-.3c-.3 0-.5.1-.7.3l-2.2 2.2c-1.1-.6-2.2-1.3-3.1-2.2L21.5 3.8zM6.5 5c.1.9.3 1.8.5 2.6L5.8 8.8C5.4 7.6 5.1 6.3 5 5zm1-2H4c-.6 0-1 .4-1 1 0 3.6 1.1 7 3.2 9.9l1.4-1.4c-.4-.5-.7-1.1-1-1.7l2.2-2.2c.3-.3.4-.7.2-1-.3-1.2-.5-2.4-.5-3.6 0-.6-.4-1-1-1"/></svg>������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-off.svg������������������������������0000664�0000000�0000000�00000000646�14753064456�0026017�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.22 2.5 2.5 20.22l1.27 1.28 4.88-4.88C11.76 19.43 15.81 21 20 21a1 1 0 0 0 1-1v-3.5a1 1 0 0 0-1-1c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.25l-2.2 2.2c-1.15-.58-2.21-1.32-3.15-2.17L21.5 3.77zM4 3a1 1 0 0 0-1 1c0 3.57 1.14 7.05 3.24 9.94l1.42-1.44a14 14 0 0 1-1.04-1.71l2.2-2.2c.28-.28.36-.67.25-1.02A11.4 11.4 0 0 1 8.5 4a1 1 0 0 0-1-1z"/></svg>������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-outgoing-outline.svg�����������������0000664�0000000�0000000�00000000662�14753064456�0030553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15.5c-1.2 0-2.5-.2-3.6-.6h-.3c-.3 0-.5.1-.7.3l-2.2 2.2c-2.8-1.5-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.4-.5-3.6 0-.5-.5-1-1-1H4c-.5 0-1 .5-1 1 0 9.4 7.6 17 17 17 .5 0 1-.5 1-1v-3.5c0-.5-.5-1-1-1M5 5h1.5c.1.9.3 1.8.5 2.6L5.8 8.8C5.4 7.6 5.1 6.3 5 5m14 14c-1.3-.1-2.6-.4-3.8-.8l1.2-1.2c.8.2 1.7.4 2.6.4zM15 3v1.5h3.5L13 10l1 1 5.5-5.5V9H21V3z"/></svg>������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-outgoing.svg�������������������������0000664�0000000�0000000�00000000521�14753064456�0027070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3a1 1 0 0 0-1 1 17 17 0 0 0 17 17 1 1 0 0 0 1-1v-3.5a1 1 0 0 0-1-1c-1.25 0-2.45-.2-3.57-.57a1.02 1.02 0 0 0-1.02.24l-2.2 2.2a15.05 15.05 0 0 1-6.59-6.59l2.2-2.21a.96.96 0 0 0 .25-1A11.4 11.4 0 0 1 8.5 4a1 1 0 0 0-1-1zm11 0v1.5h3.5L13 10l1 1 5.5-5.5V9H21V3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-outline.svg��������������������������0000664�0000000�0000000�00000000613�14753064456�0026716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15.5c-1.2 0-2.5-.2-3.6-.6h-.3c-.3 0-.5.1-.7.3l-2.2 2.2c-2.8-1.5-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.4-.5-3.6 0-.5-.5-1-1-1H4c-.5 0-1 .5-1 1 0 9.4 7.6 17 17 17 .5 0 1-.5 1-1v-3.5c0-.5-.5-1-1-1M5 5h1.5c.1.9.3 1.8.5 2.6L5.8 8.8C5.4 7.6 5.1 6.3 5 5m14 14c-1.3-.1-2.6-.4-3.8-.8l1.2-1.2c.8.2 1.7.4 2.6.4z"/></svg>���������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-paused-outline.svg�������������������0000664�0000000�0000000�00000000643�14753064456�0030200�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15.5c-1.2 0-2.5-.2-3.6-.6h-.3c-.3 0-.5.1-.7.3l-2.2 2.2c-2.8-1.5-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.4-.5-3.6 0-.5-.5-1-1-1H4c-.5 0-1 .5-1 1 0 9.4 7.6 17 17 17 .5 0 1-.5 1-1v-3.5c0-.5-.5-1-1-1M5 5h1.5c.1.9.3 1.8.5 2.6L5.8 8.8C5.4 7.6 5.1 6.3 5 5m14 14c-1.3-.1-2.6-.4-3.8-.8l1.2-1.2c.8.2 1.7.4 2.6.4zm0-9h2V3h-2m-2 0h-2v7h2z"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-paused.svg���������������������������0000664�0000000�0000000�00000000511�14753064456�0026515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 10h2V3h-2m1 12.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.25l-2.2 2.2a15.1 15.1 0 0 1-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02A11.4 11.4 0 0 1 8.5 4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1 17 17 0 0 0 17 17 1 1 0 0 0 1-1v-3.5a1 1 0 0 0-1-1M17 3h-2v7h2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-plus-outline.svg���������������������0000664�0000000�0000000�00000000651�14753064456�0027701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15.5c-1.2 0-2.5-.2-3.6-.6h-.3c-.3 0-.5.1-.7.3l-2.2 2.2c-2.8-1.5-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.4-.5-3.6 0-.5-.5-1-1-1H4c-.5 0-1 .5-1 1 0 9.4 7.6 17 17 17 .5 0 1-.5 1-1v-3.5c0-.5-.5-1-1-1M5 5h1.5c.1.9.3 1.8.5 2.6L5.8 8.8C5.4 7.6 5.1 6.3 5 5m14 14c-1.3-.1-2.6-.4-3.8-.8l1.2-1.2c.8.2 1.7.4 2.6.4zM16 3v3h-3v2h3v3h2V8h3V6h-3V3Z"/></svg>���������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-plus.svg�����������������������������0000664�0000000�0000000�00000000514�14753064456�0026222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3a1 1 0 0 0-1 1 17 17 0 0 0 17 17 1 1 0 0 0 1-1v-3.5a1 1 0 0 0-1-1c-1.24 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.25l-2.2 2.2a15.15 15.15 0 0 1-6.59-6.59l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.24 8.5 4a1 1 0 0 0-1-1M16 3v3h-3v2h3v3h2V8h3V6h-3V3"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-refresh-outline.svg������������������0000664�0000000�0000000�00000001011�14753064456�0030343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15.5c-1.2 0-2.5-.2-3.6-.6h-.3c-.3 0-.5.1-.7.3l-2.2 2.2c-2.8-1.5-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.4-.5-3.6 0-.5-.5-1-1-1H4c-.5 0-1 .5-1 1 0 9.4 7.6 17 17 17 .5 0 1-.5 1-1v-3.5c0-.5-.5-1-1-1M5 5h1.5c.1.9.3 1.8.5 2.6L5.8 8.8C5.4 7.6 5.1 6.3 5 5m14 14c-1.3-.1-2.6-.4-3.8-.8l1.2-1.2c.8.2 1.7.4 2.6.4zM17 7l1.77-1.77A2.5 2.5 0 1 0 19 8.5h1.71A3.99 3.99 0 0 1 17 11c-2.21 0-4-1.79-4-4s1.79-4 4-4c1.11 0 2.11.45 2.83 1.17L21 3v4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-refresh.svg��������������������������0000664�0000000�0000000�00000000663�14753064456�0026702�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.62 10.79c1.44 2.83 3.76 5.15 6.59 6.59l2.2-2.2c.28-.28.67-.36 1.02-.25 1.12.37 2.32.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02zM17 7l1.77-1.77A2.5 2.5 0 1 0 19 8.5h1.71A3.99 3.99 0 0 1 17 11c-2.21 0-4-1.79-4-4s1.79-4 4-4c1.11 0 2.11.45 2.83 1.17L21 3v4z"/></svg>�����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-remove-outline.svg�������������������0000664�0000000�0000000�00000000752�14753064456�0030215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15.5c-1.2 0-2.5-.2-3.6-.6h-.3c-.3 0-.5.1-.7.3l-2.2 2.2c-2.8-1.5-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.4-.5-3.6 0-.5-.5-1-1-1H4c-.5 0-1 .5-1 1 0 9.4 7.6 17 17 17 .5 0 1-.5 1-1v-3.5c0-.5-.5-1-1-1M5 5h1.5c.1.9.3 1.8.5 2.6L5.8 8.8C5.4 7.6 5.1 6.3 5 5m14 14c-1.3-.1-2.6-.4-3.8-.8l1.2-1.2c.8.2 1.7.4 2.6.4zm.1-15.5L17 5.6l-2.1-2.1-1.4 1.4L15.6 7l-2.1 2.1 1.4 1.4L17 8.4l2.1 2.1 1.4-1.4L18.4 7l2.1-2.1z"/></svg>����������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-remove.svg���������������������������0000664�0000000�0000000�00000000562�14753064456�0026537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3c-.6 0-1 .4-1 1 0 9.4 7.6 17 17 17 .6 0 1-.4 1-1v-3.5c0-.6-.4-1-1-1-1.2 0-2.5-.2-3.6-.6-.4-.1-.7 0-1 .2l-2.2 2.2c-2.8-1.4-5.1-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.3-.5-3.5 0-.6-.4-1-1-1m11.6.5L17 5.6l-2.1-2.1-1.4 1.4L15.6 7l-2.1 2.1 1.4 1.4L17 8.4l2.1 2.1 1.4-1.4L18.4 7l2.1-2.1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-return-outline.svg�������������������0000664�0000000�0000000�00000000731�14753064456�0030234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15.5c-1.2 0-2.5-.2-3.6-.6h-.3c-.3 0-.5.1-.7.3l-2.2 2.2c-2.8-1.5-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.4-.5-3.6 0-.5-.5-1-1-1H4c-.5 0-1 .5-1 1 0 9.4 7.6 17 17 17 .5 0 1-.5 1-1v-3.5c0-.5-.5-1-1-1M5 5h1.5c.1.9.3 1.8.5 2.6L5.8 8.8C5.4 7.6 5.1 6.3 5 5m14 14c-1.3-.1-2.6-.4-3.8-.8l1.2-1.2c.8.2 1.7.4 2.6.4zm2-13v5h-1.5V7.5h-5.63l2.43 2.43L15.24 11 11 6.75l4.24-4.25 1.06 1.07L13.87 6z"/></svg>���������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-return.svg���������������������������0000664�0000000�0000000�00000000562�14753064456�0026561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 6v5h-1.5V7.5h-5.63l2.43 2.43L15.24 11 11 6.75l4.24-4.25 1.06 1.07L13.87 6zM8.82 8.58c.26-.26.35-.65.24-1C8.69 6.42 8.5 5.22 8.5 4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1 17 17 0 0 0 17 17 1 1 0 0 0 1-1v-3.5a1 1 0 0 0-1-1c-1.21 0-2.42-.19-3.57-.57a1 1 0 0 0-1 .24l-2.2 2.2a15.1 15.1 0 0 1-6.59-6.59z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-ring-outline.svg���������������������0000664�0000000�0000000�00000001330�14753064456�0027650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.71 16.67C20.66 13.78 16.54 12 12 12S3.34 13.78.29 16.67c-.18.18-.29.43-.29.71s.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73s3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.66 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71a1 1 0 0 0-.29-.7m-18.31.56c-.66.37-1.29.8-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.39 2.95-1.9v1.7zm15.07 1.26c-.59-.48-1.21-.9-1.87-1.27v-1.7c1.04.51 2.03 1.15 2.94 1.9zm.69-12.23-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55M11 2h2v5h-2zM6.4 9.81 7.81 8.4 4.26 4.84 2.84 6.26c.11.03 3.56 3.55 3.56 3.55"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-ring.svg�����������������������������0000664�0000000�0000000�00000001106�14753064456�0026174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.71 16.67C20.66 13.78 16.54 12 12 12S3.34 13.78.29 16.67c-.18.18-.29.43-.29.71s.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73s3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.66 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71a1 1 0 0 0-.29-.7M21.16 6.26l-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55M13 2h-2v5h2zM6.4 9.81 7.81 8.4 4.26 4.84 2.84 6.26c.11.03 3.56 3.55 3.56 3.55"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-rotate-landscape.svg�����������������0000664�0000000�0000000�00000000436�14753064456�0030470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 1H3a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2m0 14H3V3h6zm12-2h-8v2h8v6H9v-1H6v1a2 2 0 0 0 2 2h13a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2m2-3-4-2 1.91-.91A7.52 7.52 0 0 0 14 2.5V1a9 9 0 0 1 9 9"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-rotate-portrait.svg������������������0000664�0000000�0000000�00000000443�14753064456�0030400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 1H3a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h1v-3H3V3h6v8h2V3a2 2 0 0 0-2-2m14 20v-6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h13a2 2 0 0 0 2-2M9 21v-6h12v6zm14-11h-1.5c0-3-1.81-5.73-4.58-6.91L16 5l-2-4a9 9 0 0 1 9 9"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-settings-outline.svg�����������������0000664�0000000�0000000�00000000660�14753064456�0030556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15.5c-1.2 0-2.5-.2-3.6-.6h-.3c-.3 0-.5.1-.7.3l-2.2 2.2c-2.8-1.5-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.4-.5-3.6 0-.5-.5-1-1-1H4c-.5 0-1 .5-1 1 0 9.4 7.6 17 17 17 .5 0 1-.5 1-1v-3.5c0-.5-.5-1-1-1M5 5h1.5c.1.9.3 1.8.5 2.6L5.8 8.8C5.4 7.6 5.1 6.3 5 5m14 14c-1.3-.1-2.6-.4-3.8-.8l1.2-1.2c.8.2 1.7.4 2.6.4zM17 9h-2v2h2m-4-2h-2v2h2zm6 2h2V9h-2Z"/></svg>��������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-settings.svg�������������������������0000664�0000000�0000000�00000000524�14753064456�0027100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 11h2V9h-2m1 6.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.25l-2.2 2.2a15.1 15.1 0 0 1-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02A11.4 11.4 0 0 1 8.5 4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1 17 17 0 0 0 17 17 1 1 0 0 0 1-1v-3.5a1 1 0 0 0-1-1M17 9h-2v2h2m-4-2h-2v2h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-sync-outline.svg���������������������0000664�0000000�0000000�00000001176�14753064456�0027675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15.5c-1.2 0-2.5-.2-3.6-.6h-.3c-.3 0-.5.1-.7.3l-2.2 2.2c-2.8-1.5-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.4-.5-3.6 0-.5-.5-1-1-1H4c-.5 0-1 .5-1 1 0 9.4 7.6 17 17 17 .5 0 1-.5 1-1v-3.5c0-.5-.5-1-1-1M5 5h1.5c.1.9.3 1.8.5 2.6L5.8 8.8C5.4 7.6 5.1 6.3 5 5m14 14c-1.3-.1-2.6-.4-3.8-.8l1.2-1.2c.8.2 1.7.4 2.6.4zM17 3V1.5l-2.25 2.25L17 6V4.5A2.5 2.5 0 0 1 19.5 7c0 .4-.09.78-.26 1.12l1.09 1.09c.42-.63.67-1.39.67-2.21 0-2.21-1.79-4-4-4m0 6.5A2.5 2.5 0 0 1 14.5 7c0-.4.09-.78.26-1.12l-1.09-1.09C13.25 5.42 13 6.18 13 7c0 2.21 1.79 4 4 4v1.5l2.25-2.25L17 8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-sync.svg�����������������������������0000664�0000000�0000000�00000001050�14753064456�0026207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.62 10.79c1.44 2.83 3.76 5.15 6.59 6.59l2.2-2.2c.28-.28.67-.36 1.02-.25 1.12.37 2.32.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02zM17 3V1.5l-2.25 2.25L17 6V4.5A2.5 2.5 0 0 1 19.5 7c0 .4-.09.78-.26 1.12l1.09 1.09c.42-.63.67-1.39.67-2.21 0-2.21-1.79-4-4-4m0 6.5A2.5 2.5 0 0 1 14.5 7c0-.4.09-.78.26-1.12l-1.09-1.09C13.25 5.42 13 6.18 13 7c0 2.21 1.79 4 4 4v1.5l2.25-2.25L17 8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone-voip.svg�����������������������������0000664�0000000�0000000�00000001103�14753064456�0026207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 17v2h1a1 1 0 0 1 1 1h7v2h-7a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1H2v-2h7a1 1 0 0 1 1-1h1v-2zm10.7-9.33c.18.18.3.42.3.7s-.11.53-.29.71l-2.48 2.48c-.18.18-.43.29-.73.29-.25 0-.5-.1-.68-.28-.82-.73-1.69-1.36-2.67-1.85-.33-.16-.56-.51-.56-.9v-3.1C15.14 5.25 13.59 5 12 5c-1.6 0-3.15.25-4.6.73v3.1c0 .4-.23.74-.56.9-.97.49-1.87 1.11-2.66 1.85a1.015 1.015 0 0 1-1.41-.01L.29 9.09A1 1 0 0 1 0 8.38c0-.28.11-.53.29-.71C3.34 4.78 7.46 3 12 3c4.53 0 8.65 1.78 11.7 4.67M11 10v5h-1v-5zm1 0h3v3h-2v2h-1zm2 2v-1h-1v1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/phone.svg����������������������������������0000664�0000000�0000000�00000000452�14753064456�0025242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.62 10.79c1.44 2.83 3.76 5.15 6.59 6.59l2.2-2.2c.28-.28.67-.36 1.02-.25 1.12.37 2.32.57 3.57.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pi-box.svg���������������������������������0000664�0000000�0000000�00000000347�14753064456�0025332�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2M6 7h11v2h-2v5a1 1 0 0 0 1 1 1 1 0 0 0 1-1h2a3 3 0 0 1-3 3 3 3 0 0 1-3-3V9h-3v8H8V9H6"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pi-hole.svg��������������������������������0000664�0000000�0000000�00000001120�14753064456�0025457�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.62 2c3.88 0 5.95 2.29 6.15 5.93.73-4.36 4.16-3.85 4.16-3.85.17 2.47-1.86 3.97-4.16 4.09-.65-1.36-4.52-4.7-4.52-4.7-.02.03 3.72 3.27 3.58 4.68C8.33 7.88 5.82 6 5.62 2m.44 11.11 3.86-3.86a3 3 0 0 1 4.24 0L18 13.11a2.964 2.964 0 0 1 0 4.24l-3.84 3.86a3 3 0 0 1-4.24 0l-3.86-3.86a3 3 0 0 1 0-4.24m3.33 6.48c0-1.23.76-2.74 2.7-2.74 1.31 0 2.78 1.25 4.22 1.11-1.44-.04-2.72-1.11-2.72-2.77 0-1.33 1.1-2.29 1.1-3.85-.06.99-.87 2.43-2.69 2.43-1.41 0-2.45-1.14-4.13-1.14.71.04 2.63.67 2.63 2.72 0 1.65-1.11 2.15-1.11 4.24"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pi.svg�������������������������������������0000664�0000000�0000000�00000000242�14753064456�0024536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 5v2h2v12h2V7h6v9a3 3 0 0 0 3 3 3 3 0 0 0 3-3h-2a1 1 0 0 1-1 1 1 1 0 0 1-1-1V7h2V5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/piano-off.svg������������������������������0000664�0000000�0000000�00000000530�14753064456�0026004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3l.89.89V20a2 2 0 0 0 2 2h16.11l.73.73zM8 20H4V5.89l2.8 2.8V13c0 .56.44 1 .99 1H8zm7 0H9v-6h.31c.55 0 .99-.44.99-1v-.81l4.7 4.7zm1 0v-2.11L18.11 20zM10.3 7.1 5.2 2H20a2 2 0 0 1 2 2v14.8l-2-2V4h-2.75v9c0 .3-.12.55-.32.73l-3.18-3.18V4H10.3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/piano.svg����������������������������������0000664�0000000�0000000�00000000451�14753064456�0025236�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v16a2 2 0 0 0 2 2h16c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2m-5.26 12H15v6H9v-6h.31c.55 0 .99-.44.99-1V4h3.45v9c0 .56.44 1 .99 1M4 4h2.8v9c0 .56.44 1 .99 1H8v6H4zm16 16h-4v-6h.26c.55 0 .99-.44.99-1V4H20z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pickaxe.svg��������������������������������0000664�0000000�0000000�00000000513�14753064456�0025553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.79 10.62 3.5 21.9l-1.4-1.4L13.38 9.21zm4.48-2.89.59-.59-.79-.79.64-.64-1.42-1.42-.64.64-.79-.79-.59.59c-1.74-1.42-3.7-2.56-5.8-3.36l-.83 1.79c1.75.92 3.36 2.03 4.86 3.34L14 7l3 3 .5-.5c1.31 1.5 2.42 3.11 3.34 4.86l1.79-.83c-.8-2.1-1.94-4.06-3.36-5.8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/picture-in-picture-bottom-right-outline.svg0000664�0000000�0000000�00000000303�14753064456�0033746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 11h-8v6h8zm-2 4h-4v-2h4zm4-12H3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V5c0-1.12-.9-2-2-2m0 16H3V4.97h18z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/picture-in-picture-bottom-right.svg��������0000664�0000000�0000000�00000000264�14753064456�0032277�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 11h-8v6h8zm4 8V5c0-1.12-.9-2-2-2H3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2m-2 0H3V4.97h18z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/picture-in-picture-top-right-outline.svg���0000664�0000000�0000000�00000000275�14753064456�0033254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 7h-8v6h8zm-2 4h-4V9h4zm4-8H3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V5c0-1.09-.9-2-2-2m0 16H3V5h18z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/picture-in-picture-top-right.svg�����������0000664�0000000�0000000�00000000256�14753064456�0031576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 7h-8v6h8zm2-4H3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m0 16H3V5h18z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pier-crane.svg�����������������������������0000664�0000000�0000000�00000001274�14753064456�0026161�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 20c-1.39 0-2.78-.47-4-1.33-2.44 1.71-5.56 1.71-8 0C6.78 19.53 5.39 20 4 20H2v2h2c1.37 0 2.74-.35 4-1 2.5 1.3 5.5 1.3 8 0 1.26.65 2.62 1 4 1h2v-2zm0-16V3a1 1 0 0 0-1-1H9V1H6v1H5v2h1v9H5v-2H3v2H2v2h1v4h1c.33 0 .67-.03 1-.08V15h5v3.65c.65.2 1.33.3 2 .3V15h1v-2h-1v-2h-2v2H9V4h8v4.62c-.47.17-.81.61-.81 1.14 0 .44.24.84.61 1.06V12h.62c.34 0 .61.28.61.62s-.27.62-.61.62c-.22 0-.42-.12-.54-.31a.606.606 0 0 0-.83-.22c-.3.16-.4.54-.23.84.33.56.94.92 1.6.92 1.01 0 1.84-.83 1.84-1.85 0-.78-.5-1.48-1.23-1.74v-.06c.38-.22.62-.62.62-1.06 0-.46-.27-.85-.65-1.06V4zM8 11.66l-1 1v-1.42l1-1zm0-2.95-1 1V8.29l1-1zm-1-2V5.29l1-1v1.42z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pier.svg�����������������������������������0000664�0000000�0000000�00000000507�14753064456�0025071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 18c-1.4 0-2.8-.5-4-1.3-2.4 1.7-5.6 1.7-8 0-1.2.8-2.6 1.3-4 1.3H2v2h2c1.4 0 2.7-.4 4-1 2.5 1.3 5.5 1.3 8 0 1.3.6 2.6 1 4 1h2v-2zm0-5h-1v3.9c-.7-.1-1.4-.3-2-.7V13h-5v4c-.7 0-1.3-.1-2-.3V13H5v3.9c-.3.1-.7.1-1 .1H3v-4H2v-2h1V9h2v2h5V9h2v2h5V9h2v2h1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pig-variant-outline.svg��������������������0000664�0000000�0000000�00000000650�14753064456�0030027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 10c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1m7-2.5v6.97l-2.82.94L17.5 21H12v-2h-2v2H4.5S2 12.54 2 9.5 4.46 4 7.5 4h5c.91-1.21 2.36-2 4-2a1.498 1.498 0 0 1 1.38 2.08c-.14.34-.26.73-.32 1.15l2.27 2.27zm-2 2h-1L15.5 6c0-.65.09-1.29.26-1.91-.97.25-1.76.97-2.09 1.91H7.5C5.57 6 4 7.57 4 9.5c0 1.88 1.22 6.65 2 9.5h2v-2h6v2h2l1.56-5.15 2.44-.82z"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pig-variant.svg����������������������������0000664�0000000�0000000�00000000446�14753064456�0026355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.83 7.5-2.27-2.27c.07-.42.18-.81.32-1.15A1.498 1.498 0 0 0 16.5 2c-1.64 0-3.09.79-4 2h-5C4.46 4 2 6.46 2 9.5S4.5 21 4.5 21H10v-2h2v2h5.5l1.68-5.59 2.82-.94V7.5zM16 11c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pig.svg������������������������������������0000664�0000000�0000000�00000001571�14753064456�0024713�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 9A1.5 1.5 0 0 0 8 10.5 1.5 1.5 0 0 0 9.5 12a1.5 1.5 0 0 0 1.5-1.5A1.5 1.5 0 0 0 9.5 9m5 0a1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5A1.5 1.5 0 0 0 14.5 9M12 4l.68.03c.94-.79 2.14-1.44 3.04-1.68 1.87-.5 5.16-.12 5.59 1.48.31 1.17-.71 2.62-2.28 3.55A8.97 8.97 0 0 1 21 13a9 9 0 0 1-9 9 9 9 0 0 1-9-9c0-2.13.74-4.08 1.97-5.62C3.4 6.45 2.38 5 2.69 3.83c.43-1.6 3.72-1.98 5.59-1.48.9.24 2.1.89 3.04 1.68zm-2 12a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m4 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m-2-3c-2.76 0-5 2.34-5 4s2.24 3 5 3 5-1.34 5-3-2.24-4-5-4M7.76 4.28c-.45-.12-3.17.07-3.17.07S6.8 6.1 7.24 6.22c.45.12 2.53.21 2.67-.32.15-.54-1.71-1.5-2.15-1.62m8.48 0c-.44.12-2.3 1.08-2.15 1.62.14.53 2.22.44 2.67.32.44-.12 2.65-1.87 2.65-1.87s-2.72-.19-3.17-.07"/></svg>���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/piggy-bank-outline.svg���������������������0000664�0000000�0000000�00000000664�14753064456�0027643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 10c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1M8 9h5V7H8zm14-1.5v6.97l-2.82.94L17.5 21H12v-2h-2v2H4.5S2 12.54 2 9.5 4.46 4 7.5 4h5c.91-1.21 2.36-2 4-2a1.498 1.498 0 0 1 1.38 2.08c-.14.34-.26.73-.32 1.15l2.27 2.27zm-2 2h-1L15.5 6c0-.65.09-1.29.26-1.91-.97.25-1.76.97-2.09 1.91H7.5C5.57 6 4 7.57 4 9.5c0 1.88 1.22 6.65 2 9.5h2v-2h6v2h2l1.56-5.15 2.44-.82z"/></svg>����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/piggy-bank.svg�����������������������������0000664�0000000�0000000�00000000460�14753064456�0026160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.83 7.5-2.27-2.27c.07-.42.18-.81.32-1.15A1.498 1.498 0 0 0 16.5 2c-1.64 0-3.09.79-4 2h-5C4.46 4 2 6.46 2 9.5S4.5 21 4.5 21H10v-2h2v2h5.5l1.68-5.59 2.82-.94V7.5zM13 9H8V7h5zm3 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pill-multiple.svg��������������������������0000664�0000000�0000000�00000000711�14753064456�0026720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.2 3.5c-1-1-2.3-1.5-3.5-1.5s-2.6.5-3.5 1.5L3.4 9.1c-2 2-2 5.1 0 7.1s5.1 2 7.1 0l5.7-5.7c1.9-1.9 1.9-5.1 0-7m-1.4 5.6L12 11.9 8.4 8.4 4 12.8c0-.8.2-1.7.9-2.3l5.7-5.7c.5-.5 1.3-.8 2-.8s1.5.3 2.1.8c1.2 1.3 1.2 3.1.1 4.3m4.8-2c0 .8-.2 1.5-.4 2.3 1 1.2 1 3-.1 4.1l-2.8 2.8-1.5-1.5-2.8 2.8c-1.3 1.3-3.1 2-4.8 2 .2.3.4.6.7.9 2 2 5.1 2 7.1 0l5.7-5.7c2-2 2-5.1 0-7.1-.5-.2-.8-.4-1.1-.6"/></svg>�������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pill-off.svg�������������������������������0000664�0000000�0000000�00000000633�14753064456�0025642�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3l5.7 5.7-2.59 2.59a6.01 6.01 0 0 0 0 8.49c2.34 2.34 6.14 2.34 8.49 0l2.59-2.59 5.54 5.54zM4.6 16.57a3.98 3.98 0 0 1 1.04-3.86l2.59-2.59 1.41 1.41zm6.18-8.99L9.36 6.16l1.93-1.94a6.01 6.01 0 0 1 8.49 0c2.34 2.34 2.34 6.14 0 8.49l-1.93 1.94-1.42-1.42 1.93-1.94a3.98 3.98 0 0 0 0-5.65 3.98 3.98 0 0 0-5.65 0z"/></svg>�����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pill.svg�����������������������������������0000664�0000000�0000000�00000000504�14753064456�0025067�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4.22 11.29 7.07-7.07a6.01 6.01 0 0 1 8.49 0c2.34 2.34 2.34 6.14 0 8.49l-7.07 7.07c-2.35 2.34-6.15 2.34-8.49 0a6.01 6.01 0 0 1 0-8.49m1.42 1.42a3.98 3.98 0 0 0-1.04 3.86l5.99-5.98 4.24 4.24 3.53-3.54a3.98 3.98 0 0 0 0-5.65 3.98 3.98 0 0 0-5.65 0z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pillar.svg���������������������������������0000664�0000000�0000000�00000000302�14753064456�0025406�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 5h12a1 1 0 0 1 1 1 1 1 0 0 1-1 1H6a1 1 0 0 1-1-1 1 1 0 0 1 1-1m15-3v2H3V2zm-6 6h2v14h-2zM7 8h2v14H7zm4 0h2v14h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pin-off-outline.svg������������������������0000664�0000000�0000000�00000000320�14753064456�0027136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 6.2V4H7V2h10v2h-1v8l2 2v2h-.2L14 12.2V4h-4v4.2zm12 14.5L18.7 22l-5.9-5.9V22h-1.6v-6H6v-2l2-2v-.7l-6-6L3.3 4zM8.8 14h1.8l-.9-.9z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pin-off.svg��������������������������������0000664�0000000�0000000�00000000272�14753064456�0025467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5.27 3.28 4 20 20.72 18.73 22l-5.93-5.93V22h-1.6v-6H6v-2l2-2v-.73zM16 12l2 2v2h-.18L8 6.18V4H7V2h10v2h-1z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pin-outline.svg����������������������������0000664�0000000�0000000�00000000235�14753064456�0026373�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 12V4h1V2H7v2h1v8l-2 2v2h5.2v6h1.6v-6H18v-2zm-7.2 2 1.2-1.2V4h4v8.8l1.2 1.2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pin.svg������������������������������������0000664�0000000�0000000�00000000175�14753064456�0024721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 12V4h1V2H7v2h1v8l-2 2v2h5.2v6h1.6v-6H18v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pine-tree-box.svg��������������������������0000664�0000000�0000000�00000000310�14753064456�0026600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2h16a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m7 17h2v-2h5l-4-4h3l-4-4h3l-4-4-4 4h3l-4 4h3l-4 4h5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pine-tree-fire.svg�������������������������0000664�0000000�0000000�00000001374�14753064456�0026750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.14 14.84-.02.01c.23.28.43.59.58.92l.09.19c.71 1.69.21 3.64-1.1 4.86-1.19 1.09-2.85 1.38-4.39 1.18-1.46-.18-2.8-1.1-3.57-2.37-.23-.39-.43-.83-.53-1.28-.13-.35-.17-.73-.2-1.1-.09-1.6.55-3.3 1.76-4.3-.55 1.21-.42 2.72.39 3.77l.11.13c.14.12.31.15.47.09.15-.06.27-.21.27-.37l-.07-.24c-.88-2.33-.14-5.03 1.73-6.56.51-.42 1.14-.8 1.8-.97-.68 1.36-.46 3.14.63 4.2.46.5 1.02.79 1.49 1.23zm-2.28 4.66-.01-.03c.45-.39.7-1.06.68-1.66l-.03-.31c-.2-1-1.07-1.34-1.63-2.07-.17-.22-.32-.5-.43-.78-.22.5-.24.97-.15 1.51.1.57.32 1.06.21 1.65-.16.65-.67 1.3-1.56 1.51.5.49 1.31.88 2.12.6.26-.07.59-.26.8-.42M9 21v-3H2l5-5H4l5-5H6l5-5 5 5h-3l1.82 1.82C12.55 11.06 11 13.59 11 16.5c0 1.69.5 3.25 1.4 4.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pine-tree-variant-outline.svg��������������0000664�0000000�0000000�00000000251�14753064456�0031135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 12 12 2 5 12h1.86L3 18h7v4h4v-4h7l-3.86-6zm-3.84-2H13.5l3.84 6H6.67l3.86-6H8.84L12 5.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pine-tree-variant.svg����������������������0000664�0000000�0000000�00000000174�14753064456�0027464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 12 12 2 5 12h1.86L3 18h7v4h4v-4h7l-3.86-6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pine-tree.svg������������������������������0000664�0000000�0000000�00000000201�14753064456�0026011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 21v-3H3l5-5H5l5-5H7l5-5 5 5h-3l5 5h-3l5 5h-7v3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pinterest.svg������������������������������0000664�0000000�0000000�00000001217�14753064456�0026146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.04 21.54c.96.29 1.93.46 2.96.46a10 10 0 0 0 10-10A10 10 0 0 0 12 2 10 10 0 0 0 2 12c0 4.25 2.67 7.9 6.44 9.34-.09-.78-.18-2.07 0-2.96l1.15-4.94s-.29-.58-.29-1.5c0-1.38.86-2.41 1.84-2.41.86 0 1.26.63 1.26 1.44 0 .86-.57 2.09-.86 3.27-.17.98.52 1.84 1.52 1.84 1.78 0 3.16-1.9 3.16-4.58 0-2.4-1.72-4.04-4.19-4.04-2.82 0-4.48 2.1-4.48 4.31 0 .86.28 1.73.74 2.3.09.06.09.14.06.29l-.29 1.09c0 .17-.11.23-.28.11-1.28-.56-2.02-2.38-2.02-3.85 0-3.16 2.24-6.03 6.56-6.03 3.44 0 6.12 2.47 6.12 5.75 0 3.44-2.13 6.2-5.18 6.2-.97 0-1.92-.52-2.26-1.13l-.67 2.37c-.23.86-.86 2.01-1.29 2.7z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pinwheel-outline.svg�����������������������0000664�0000000�0000000�00000000726�14753064456�0027425�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 23h-1v-6.57C9.93 17.4 8.5 18 7 18c-3.25 0-6-2.75-6-6v-1h6.57C6.6 9.93 6 8.5 6 7c0-3.25 2.75-6 6-6h1v6.57C14.07 6.6 15.5 6 17 6c3.25 0 6 2.75 6 6v1h-6.57c.97 1.07 1.57 2.5 1.57 4 0 3.25-2.75 6-6 6m1-9.87v7.74c1.7-.46 3-2.04 3-3.87s-1.3-3.41-3-3.87M3.13 13c.46 1.7 2.04 3 3.87 3s3.41-1.3 3.87-3zm10-2h7.74c-.46-1.7-2.05-3-3.87-3s-3.41 1.3-3.87 3M11 3.13C9.3 3.59 8 5.18 8 7s1.3 3.41 3 3.87z"/></svg>������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pinwheel.svg�������������������������������0000664�0000000�0000000�00000000337�14753064456�0025746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 12c0-3 2.5-5.5 5.5-5.5S23 9 23 12zm0 0c0 3-2.5 5.5-5.5 5.5S1 15 1 12zm0 0c-3 0-5.5-2.5-5.5-5.5S9 1 12 1zm0 0c3 0 5.5 2.5 5.5 5.5S15 23 12 23z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pipe-disconnected.svg����������������������0000664�0000000�0000000�00000000257�14753064456�0027531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 9v2H8V9h2V8H4v2H2V2h2v2h8a2 2 0 0 1 2 2v3zm-6 6v3a2 2 0 0 0 2 2h8v2h2v-8h-2v2h-6v-1h2v-2H8v2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pipe-leak.svg������������������������������0000664�0000000�0000000�00000000305�14753064456�0025775�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5v8h2v-2h6l2-2-2-2H4V5zm18 0v2h-8l2 2-2 2h8v2h2V5zm-8 8s-2 2.17-2 3.5a2 2 0 0 0 2 2 2 2 0 0 0 2-2c0-1.33-2-3.5-2-3.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pipe-valve.svg�����������������������������0000664�0000000�0000000�00000000477�14753064456�0026210�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 13v8h-2v-2h-3.42c-.77 1.76-2.53 3-4.58 3s-3.81-1.24-4.58-3H4v2H2v-8h2v2h3.43c.5-1.15 1.42-2.07 2.57-2.58V11H8V9h8v2h-2v1.42c1.15.51 2.07 1.43 2.57 2.58H20v-2zM17 2H7c-.55 0-1 .45-1 1s.45 1 1 1h3v1h1v3h2V5h1V4h3c.55 0 1-.45 1-1s-.45-1-1-1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pipe-wrench.svg����������������������������0000664�0000000�0000000�00000000444�14753064456�0026353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.17 5.63-2.11 2.15-2.15-2.15 4.26-4.22 3.52 3.51c1.17 1.17 1.17 3.08 0 4.27zM4.83 12.7 7 14.81l3.5-3.51-2.11-2.11zm10.64-4.92L19 11.3l-1.42 1.4-.7-.7L6.23 22.59l-2.81-2.81 8.49-8.48-4.22-4.27L9.8 4.92l4.26 4.27z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pipe.svg�����������������������������������0000664�0000000�0000000�00000000243�14753064456�0025064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 14h-2v2h-6v-3h2v-2h-2V6a2 2 0 0 0-2-2H4V2H2v8h2V8h6v3H8v2h2v5a2 2 0 0 0 2 2h8v2h2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pirate.svg���������������������������������0000664�0000000�0000000�00000001230�14753064456�0025410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.2 12.1c-.3.2-.5.6-.4.9 0 .7.7 1.2 1.3 1.2s1.2-.5 1.2-1.2q-.9-.6-2.1-.9M22 11l1-4s-2 0-5-2-3-4-6-4-3 2-6 4-5 2-5 2l1 4h.1c-.1.3-.1.7-.1 1 0 3.5 1.8 6.6 4.5 8.4l-.5.9c6.4 4.1 12 0 12 0l-.5-.9c2.7-1.8 4.5-4.9 4.5-8.4zM11.3 4.5 9.9 3.1l.7-.7L12 3.8l1.4-1.4.7.7-1.4 1.4 1.4 1.4-.7.7L12 5.2l-1.4 1.4-.7-.7zm-2 4c1-.3 2-.5 2.7-.5 2.2 0 5.9 1.6 7.8 2.4.1.3.1.6.1.9zm4.3 10.6c-.7.4-1.4.7-2.2.8-.5-.4-.5-1.2 0-1.6.4-.4 1.3-.6 1.8-.1.3.1.4.6.4.9m6.4-5.7c-.5 2.1-1.8 4-3.5 5.2L15 16H9l-1.5 2.6C5.4 17.2 4 14.8 4 12c0-.5.1-1 .2-1.5.5-.2 1.1-.5 1.8-.8l7.1 1.9V14c0 .5.4 1 1 1h2c.5 0 1-.4 1-1v-1.4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pistol.svg���������������������������������0000664�0000000�0000000�00000000467�14753064456�0025451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 5h16v4h-1v1h-6a1 1 0 0 0-1 1v1a2 2 0 0 1-2 2H9.62c-.38 0-.73.22-.9.56l-2.45 4.89c-.17.34-.51.55-.89.55H2s-3 0 1-6c0 0 3-4-1-4V5h1l.5-1h3zm7 7v-1a1 1 0 0 0-1-1h-1s-1 1 0 2a2 2 0 0 1-2-2 1 1 0 0 0-1 1v1a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/piston.svg���������������������������������0000664�0000000�0000000�00000000542�14753064456�0025445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 16.18c.5.17.9.45 1.23.82H15v4h-.79c-.32.35-.71.63-1.21.8-1.15.42-2.42.07-3.22-.8H9v-4h.77c.33-.37.73-.65 1.23-.82V12h2zM12 20a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m5-16h-2v1h2v6H7V5h2V4H7V2h10zm-5 5a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pitchfork.svg������������������������������0000664�0000000�0000000�00000000475�14753064456�0026127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.9.9-2.8 2.8c-.8.8-.8 2 0 2.8L14.5 8l-5.3 5.4L7.8 12c-.8-.8-2-.8-2.8 0l-4 4 1.4 1.4 4-4 1.4 1.4-4 4 1.4 1.4 4-4 1.4 1.4-.7.8-3.2 3.2L8 23l4-4c.8-.8.8-2 0-2.8l-1.4-1.4 5.3-5.4 1.4 1.4c.8.8 2 .8 2.8 0L23 8zm2.8 8.5-4.2-4.2 1.4-1.4L20.1 8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pizza.svg����������������������������������0000664�0000000�0000000�00000000403�14753064456�0025262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 15a2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2M7 7c0-1.11.89-2 2-2a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2m5-5C8.43 2 5.23 3.54 3 6l9 16 9-16c-2.22-2.46-5.43-4-9-4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/plane-car.svg������������������������������0000664�0000000�0000000�00000001143�14753064456�0025771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.57 12.66c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66L11 16.77v5.51c0 .38.32.72.7.72h.62c.38 0 .68-.38.68-.76V21h8v1.24c0 .38.31.76.69.76h.61c.38 0 .7-.34.7-.72v-5.51zm-8.16.34h7.19l1.03 3h-9.25zM13 19c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1M6.66 14.53 7 17l-1.05 1.06-1.76-3.18L1 13.11l1.06-1.08 2.5.37 3.87-3.87L1 4.62l1.42-1.41 9.19 2.12 3.89-3.89c.56-.585 1.56-.585 2.12 0 .59.59.59 1.56 0 2.12l-3.89 3.89.82 3.55h-1.14c-.87 0-1.62.5-1.91 1.31l-.03.06-.91-1.74z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/plane-train.svg����������������������������0000664�0000000�0000000�00000000773�14753064456�0026351�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 8h-6c-1.66 0-3 1.34-3 3v7c0 1.66 1.34 3 3 3l-1 1v1h1l2-2.03h2L20 23h1v-1l-1-1c1.66 0 3-1.34 3-3v-7c0-1.66-1.34-3-3-3m-6 11c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m1-3h-8v-6h8zM6.66 14.53 7 17l-1.05 1.06-1.76-3.18L1 13.11l1.06-1.08 2.5.37 3.87-3.87L1 4.62l1.42-1.41 9.19 2.12 3.89-3.89c.56-.585 1.56-.585 2.12 0 .59.59.59 1.56 0 2.12L14.18 7H14c-2.21 0-4 1.79-4 4v.19z"/></svg>�����mkdocs-material-9.6.4/material/templates/.icons/material/play-box-edit-outline.svg������������������0000664�0000000�0000000�00000000447�14753064456�0030270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13 18.9 6.1-6.1 2.1 2.1-6.1 6.1H13zm8.4-7.6 1.3 1.3c.2.2.2.5 0 .7l-1 1-2.1-2 1-1c.1-.1.2-.2.4-.2s.3 0 .4.2M11 21H5c-.5 0-1-.2-1.4-.6S3 19.5 3 19V5c0-.5.2-1 .6-1.4S4.5 3 5 3h14c1.1 0 2 .9 2 2v4h-2V5H5v14h6zm4-9-5-4v8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/play-box-lock-open-outline.svg�������������0000664�0000000�0000000�00000000562�14753064456�0031230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 17.3v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-2.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5v.5h-1.3v-.5c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V16h4.3c.6 0 1.2.6 1.2 1.3M18 5H4v14h9v2H4a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2h14a2 2 0 0 1 2 2v4.1L19 9l-1 .1zM9 8l5 4-5 4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/play-box-lock-open.svg���������������������0000664�0000000�0000000�00000000620�14753064456�0027546�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 17.3v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-2.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5v.5h-1.3v-.5c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V16h4.3c.6 0 1.2.6 1.2 1.3M9 8v8l5-4zm4 11v2H4a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2h14a2 2 0 0 1 2 2v4.1L19 9c-2.76 0-5 2.24-5 5v.76c-.61.55-1 1.35-1 2.24z"/></svg>����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/play-box-lock-outline.svg������������������0000664�0000000�0000000�00000000561�14753064456�0030270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 17.3v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5V16c.6 0 1.2.6 1.2 1.3m-2.5-2.8c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V16h3zM18 5H4v14h9v2H4a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2h14a2 2 0 0 1 2 2v5.1l-1-.1-1 .1zM9 8l5 4-5 4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/play-box-lock.svg��������������������������0000664�0000000�0000000�00000000625�14753064456�0026614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 17.3v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5V16c.6 0 1.2.6 1.2 1.3M13 19v2H4a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2h14a2 2 0 0 1 2 2v5.1l-1-.1-1 .1a5.02 5.02 0 0 0-4 4.66c-.61.55-1 1.35-1 2.24zm7.5-4.5c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V16h3zM9 8v8l5-4z"/></svg>�����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/play-box-multiple-outline.svg��������������0000664�0000000�0000000�00000000327�14753064456�0031173�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 6H2v14c0 1.1.9 2 2 2h14v-2H4zm16-2v12H8V4zm0-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-8 12.5v-9l6 4.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/play-box-multiple.svg����������������������0000664�0000000�0000000�00000000307�14753064456�0027514�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 6H2v14a2 2 0 0 0 2 2h14v-2H4zm16-4H8a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2m-8 12.5v-9l6 4.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/play-box-outline.svg�����������������������0000664�0000000�0000000�00000000255�14753064456�0027342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19H5V5h14m0-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-9 5v8l5-4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/play-box.svg�������������������������������0000664�0000000�0000000�00000000246�14753064456�0025665�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.11 0-2 .89-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5a2 2 0 0 0-2-2m-9 13V8l5 4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/play-circle-outline.svg��������������������0000664�0000000�0000000�00000000350�14753064456�0030007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m-2 14.5 6-4.5-6-4.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/play-circle.svg����������������������������0000664�0000000�0000000�00000000252�14753064456�0026333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 16.5v-9l6 4.5M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/play-network-outline.svg�������������������0000664�0000000�0000000�00000000401�14753064456�0030234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 20a1 1 0 0 0-1-1h-1v-2h4a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h4v2h-1a1 1 0 0 0-1 1H2v2h7a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1h7v-2zm-8-5V5h10v10zm3-1V6l5 4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/play-network.svg���������������������������0000664�0000000�0000000�00000000364�14753064456�0026567�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 20a1 1 0 0 0-1-1h-1v-2h4a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h4v2h-1a1 1 0 0 0-1 1H2v2h7a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1h7v-2zm-5-6V6l5 4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/play-outline.svg���������������������������0000664�0000000�0000000�00000000171�14753064456�0026551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.5 8.64 13.77 12 8.5 15.36zM6.5 5v14l11-7"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/play-pause.svg�����������������������������0000664�0000000�0000000�00000000157�14753064456�0026213�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5v14l8-7m2 7h3V5h-3m5 0v14h3V5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/play-protected-content.svg�����������������0000664�0000000�0000000�00000000265�14753064456�0030537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5v13h9v-2H4V7h13v4h2V5zm7 4v5l3.5-2.5zm12.04 2.67-4.95 4.95-2.13-2.12-1.41 1.41 3.54 3.54 6.36-6.36z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/play-speed.svg�����������������������������0000664�0000000�0000000�00000000733�14753064456�0026176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2.05v2c4.39.54 7.5 4.53 6.96 8.92-.46 3.64-3.32 6.53-6.96 6.96v2c5.5-.55 9.5-5.43 8.95-10.93-.45-4.75-4.22-8.5-8.95-8.97zM5.67 19.74A10 10 0 0 0 11 22v-2a8 8 0 0 1-3.9-1.63zm1.43-14c1.12-.9 2.47-1.48 3.9-1.68v-2c-1.95.19-3.81.94-5.33 2.2zM5.69 7.1 4.26 5.67A9.9 9.9 0 0 0 2.05 11h2c.19-1.42.75-2.77 1.64-3.9M4.06 13h-2c.2 1.96.97 3.81 2.21 5.33l1.42-1.43A8 8 0 0 1 4.06 13M10 16.5l6-4.5-6-4.5z"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/play.svg�����������������������������������0000664�0000000�0000000�00000000136�14753064456�0025075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 5.14v14l11-7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/playlist-check.svg�������������������������0000664�0000000�0000000�00000000234�14753064456�0027043�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 10H3v2h11zm0-4H3v2h11zM3 16h7v-2H3zm18.5-4.5L23 13l-7 7-4.5-4.5L13 14l3 3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/playlist-edit.svg��������������������������0000664�0000000�0000000�00000000346�14753064456�0026717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6v2h11V6zm0 4v2h11v-2zm17 .1c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6 0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-1.9 1.8-6.1 6V20h2.1l6.1-6.1zM3 14v2h7v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/playlist-minus.svg�������������������������0000664�0000000�0000000�00000000176�14753064456�0027126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 16h7v-2H3m9 0v2h10v-2m-8-8H3v2h11m0 2H3v2h11z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/playlist-music-outline.svg�����������������0000664�0000000�0000000�00000000375�14753064456�0030571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 6v2H3V6zm0 4v2H3v-2zM3 16v-2h8v2zM17 6h5v2h-3v9a3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3c.35 0 .69.07 1 .18zm-1 10a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/playlist-music.svg�������������������������0000664�0000000�0000000�00000000306�14753064456�0027106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 6H3v2h12zm0 4H3v2h12zM3 16h8v-2H3zM17 6v8.18c-.31-.11-.65-.18-1-.18a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3V8h3V6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/playlist-play.svg��������������������������0000664�0000000�0000000�00000000176�14753064456�0026740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 10h11v2H3zm0-4h11v2H3zm0 8h7v2H3zm13-1v8l6-4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/playlist-plus.svg��������������������������0000664�0000000�0000000�00000000222�14753064456�0026746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 16h7v-2H3m15 0v-4h-2v4h-4v2h4v4h2v-4h4v-2m-8-8H3v2h11m0 2H3v2h11z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/playlist-remove.svg������������������������0000664�0000000�0000000�00000000325�14753064456�0027264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 10H3v2h11zm0-4H3v2h11zM3 16h7v-2H3zm11.4 6 2.6-2.6 2.6 2.6 1.4-1.4-2.6-2.6 2.6-2.6-1.4-1.4-2.6 2.6-2.6-2.6-1.4 1.4 2.6 2.6-2.6 2.6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/playlist-star.svg��������������������������0000664�0000000�0000000�00000000275�14753064456�0026744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17 19.1 2.5 1.5-.7-2.8 2.2-1.9-2.9-.2L17 13l-1.1 2.6-2.9.3 2.2 1.9-.7 2.8zM3 14h8v2H3zm0-8h12v2H3zm0 4h12v2H3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/plex.svg�����������������������������������0000664�0000000�0000000�00000000304�14753064456�0025075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm4.56 4h3.5l3.44 6-3.44 6h-3.5L12 12z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pliers.svg���������������������������������0000664�0000000�0000000�00000000760�14753064456�0025431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.4 12.2s2.3 3.1 4.4 5.2c.9.9 1.8 1.5 2.5 2 .8.5 1 1.6.3 2.3-.4.4-1.1.6-1.6.3-.8-.4-2-1.2-3.3-2.4-2.1-2.1-4.4-5.2-4.4-5.2zm2.8-2.8s3.1 2.3 5.2 4.4c.9.9 1.5 1.8 2 2.5.5.8 1.6 1 2.3.3.4-.4.6-1.1.3-1.6-.4-.8-1.2-2-2.4-3.3-2.1-2.1-5.2-4.4-5.2-4.4zm-1.8-3.9L7.6 2.7 4.1 2l-.5.5 2.3 2.3c.5-.1 1 0 1.4.4.6.6.6 1.5 0 2.1s-1.5.6-2.1 0c-.4-.4-.5-1-.4-1.5L2.5 3.6l-.5.5.7 3.5 2.8 2.8 1.4 2.8 1.9-1.9-1-1.8 1.6-1.6 1.9.9 1.9-1.9z"/></svg>����������������mkdocs-material-9.6.4/material/templates/.icons/material/plus-box-multiple-outline.svg��������������0000664�0000000�0000000�00000000345�14753064456�0031211�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 11h-3v3h-2v-3h-3V9h3V6h2v3h3m2-5v12H8V4zm0-2H8c-1.1 0-2 .9-2 2v12a2 2 0 0 0 2 2h12c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2M4 6H2v14a2 2 0 0 0 2 2h14v-2H4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/plus-box-multiple.svg����������������������0000664�0000000�0000000�00000000323�14753064456�0027530�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 11h-4v4h-2v-4H9V9h4V5h2v4h4m1-7H8a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2M4 6H2v14a2 2 0 0 0 2 2h14v-2H4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/plus-box-outline.svg�����������������������0000664�0000000�0000000�00000000301�14753064456�0027350�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19V5H5v14zm0-16a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm-8 4h2v4h4v2h-4v4h-2v-4H7v-2h4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/plus-box.svg�������������������������������0000664�0000000�0000000�00000000270�14753064456�0025700�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 13h-4v4h-2v-4H7v-2h4V7h2v4h4m2-8H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/plus-circle-multiple-outline.svg�����������0000664�0000000�0000000�00000000501�14753064456�0031654�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 8h-2v3h-3v2h3v3h2v-3h3v-2h-3M2 12c0-2.79 1.64-5.2 4-6.32V3.5C2.5 4.76 0 8.09 0 12s2.5 7.24 6 8.5v-2.18C3.64 17.2 2 14.79 2 12m13-9c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9m0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/plus-circle-multiple.svg�������������������0000664�0000000�0000000�00000000361�14753064456�0030203�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 12c0-2.8 1.6-5.2 4-6.3V3.5C2.5 4.8 0 8.1 0 12s2.5 7.2 6 8.5v-2.2c-2.4-1.1-4-3.5-4-6.3m13-9c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9m5 10h-4v4h-2v-4h-4v-2h4V7h2v4h4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/plus-circle-outline.svg��������������������0000664�0000000�0000000�00000000362�14753064456�0030030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m1 5h-2v4H7v2h4v4h2v-4h4v-2h-4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/plus-circle.svg����������������������������0000664�0000000�0000000�00000000271�14753064456�0026352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 13h-4v4h-2v-4H7v-2h4V7h2v4h4m-5-9A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/plus-lock-open.svg�������������������������0000664�0000000�0000000�00000000504�14753064456�0026777�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 5v6H5v2h6v6h2v-6h6v-2h-6V5zm8 10c-1.05 0-2.1.8-2.1 1.82v1.82c-.45 0-.9.43-.9.86v2.55c0 .51.45.95.9.95h4.13c.52 0 .97-.44.97-.87v-2.55c0-.51-.45-.94-.9-.94h-3.22v-1.82c0-.58.52-.95 1.12-.95s1.13.37 1.13.95v.36h.97v-.36C21.1 15.8 20.05 15 19 15"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/plus-lock.svg������������������������������0000664�0000000�0000000�00000000512�14753064456�0026037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.14 17.67v-.45C21.14 16 20.2 15 19 15s-2.14 1-2.14 2.22v.45c-.52 0-.86.33-.86.89v3.55c0 .54.34.89.86.89h4.28c.52 0 .86-.35.86-.89v-3.56c0-.55-.34-.88-.86-.88m-.85 0h-2.57v-.45c0-.72.59-1.33 1.28-1.33s1.29.61 1.29 1.33zM11 5v6H5v2h6v6h2v-6h6v-2h-6V5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/plus-minus-box.svg�������������������������0000664�0000000�0000000�00000000301�14753064456�0027024�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zm6 3h2v3h3v2h-3v3h-2v-3H8V9h3zM8 16h8v2H8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/plus-minus-variant.svg���������������������0000664�0000000�0000000�00000000221�14753064456�0027701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 7h3V4h2v3h3v2H8v3H6V9H3zm10 8h8v2h-8zm3.04-12h2.31L7.96 21H5.65z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/plus-minus.svg�����������������������������0000664�0000000�0000000�00000000172�14753064456�0026244�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 4v5H6v2h5v5h2v-5h5V9h-5V4zM6 18v2h12v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/plus-network-outline.svg�������������������0000664�0000000�0000000�00000000424�14753064456�0030257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 20a1 1 0 0 0-1-1h-1v-2h4a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h4v2h-1a1 1 0 0 0-1 1H2v2h7a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1h7v-2zm-8-5V5h10v10zm8-4h-2v2h-2v-2H9V9h2V7h2v2h2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/plus-network.svg���������������������������0000664�0000000�0000000�00000000407�14753064456�0026603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 11V9h-3V6h-2v3H8v2h3v3h2v-3zm1-8a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-4v2h1a1 1 0 0 1 1 1h7v2h-7a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1H2v-2h7a1 1 0 0 1 1-1h1v-2H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/plus-outline.svg���������������������������0000664�0000000�0000000�00000000212�14753064456�0026563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 9h5V4h6v5h5v6h-5v5H9v-5H4zm7 4v5h2v-5h5v-2h-5V6h-2v5H6v2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/plus-thick.svg�����������������������������0000664�0000000�0000000�00000000157�14753064456�0026216�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 14h-6v6h-4v-6H4v-4h6V4h4v6h6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/plus.svg�����������������������������������0000664�0000000�0000000�00000000157�14753064456�0025116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pocket.svg���������������������������������0000664�0000000�0000000�00000000221�14753064456�0025410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3h16v14.63l-8 4.62-8-4.62zm14 6H6v7.5l6 3.44 6-3.44zm0-4H6v2h12z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/podcast.svg��������������������������������0000664�0000000�0000000�00000001177�14753064456�0025573�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 18.25v3.25H7v-3.25c0-1.38 2.24-2.5 5-2.5s5 1.12 5 2.5M12 5.5a6.5 6.5 0 0 1 6.5 6.5c0 1.25-.35 2.42-.96 3.41L16 14.04c.32-.61.5-1.31.5-2.04 0-2.5-2-4.5-4.5-4.5s-4.5 2-4.5 4.5c0 .73.18 1.43.5 2.04l-1.54 1.37c-.61-.99-.96-2.16-.96-3.41A6.5 6.5 0 0 1 12 5.5m0-4A10.5 10.5 0 0 1 22.5 12c0 2.28-.73 4.39-1.96 6.11l-1.5-1.35c.92-1.36 1.46-3 1.46-4.76A8.5 8.5 0 0 0 12 3.5 8.5 8.5 0 0 0 3.5 12c0 1.76.54 3.4 1.46 4.76l-1.5 1.35A10.47 10.47 0 0 1 1.5 12 10.5 10.5 0 0 1 12 1.5m0 8a2.5 2.5 0 0 1 2.5 2.5 2.5 2.5 0 0 1-2.5 2.5A2.5 2.5 0 0 1 9.5 12 2.5 2.5 0 0 1 12 9.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/podium-bronze.svg��������������������������0000664�0000000�0000000�00000000346�14753064456�0026725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4 13.09 2.45 1.49-.65-2.81L8 9.89l-2.89-.25L4 7 2.87 9.64 0 9.89l2.18 1.88-.68 2.81zM7 23H1v-6h6zm2-13v13h6V10zm4 11h-2v-9h2zm4-8v10h6V13zm4 8h-2v-6h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/podium-gold.svg����������������������������0000664�0000000�0000000�00000000350�14753064456�0026346�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 7.09 2.45 1.49-.65-2.81L16 3.89l-2.89-.25L12 1l-1.13 2.64L8 3.89l2.18 1.88-.68 2.81zM15 23H9V10h6zM1 17v6h6v-6zm4 4H3v-2h2zm12-8v10h6V13zm4 8h-2v-6h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/podium-silver.svg��������������������������0000664�0000000�0000000�00000000354�14753064456�0026731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20 10.09 2.45 1.49-.65-2.81L24 6.89l-2.89-.25L20 4l-1.13 2.64-2.87.25 2.18 1.88-.68 2.81zM23 23h-6V13h6zM1 17v6h6v-6zm4 4H3v-2h2zm4-11v13h6V10zm4 11h-2v-9h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/podium.svg���������������������������������0000664�0000000�0000000�00000000567�14753064456�0025435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 7.09 2.45 1.49-.65-2.81L16 3.89l-2.89-.25L12 1l-1.13 2.64L8 3.89l2.18 1.88-.68 2.81zm-8 6 2.45 1.49-.65-2.81L8 9.89l-2.89-.25L4 7 2.87 9.64 0 9.89l2.18 1.88-.68 2.81zm16-3 2.45 1.49-.65-2.81L24 6.89l-2.89-.25L20 4l-1.13 2.64-2.87.25 2.18 1.88-.68 2.81zM15 23H9V10h6zm-8 0H1v-6h6zm16 0h-6V13h6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/point-of-sale.svg��������������������������0000664�0000000�0000000�00000000666�14753064456�0026615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 5c-.6 0-1 .5-1 1.1V16c0 .6.4 1 1 1.1.6 0 1-.5 1-1.1V6.1c0-.6-.4-1.1-1-1.1m-3.6-3H4.6C3.7 2 3 2.7 3 3.6v13.8c0 .9.7 1.6 1.6 1.6H6v2c0 .6.4 1 1 1h6c.6 0 1-.4 1-1v-2h2.4c.9 0 1.6-.7 1.6-1.6V3.6c0-.9-.7-1.6-1.6-1.6M5 8h3v2H5zm7 3v2H9v-2zm-3-1V8h3v2zm3 4v2H9v-2zm-7-3h3v2H5zm0 5v-2h3v2zm3 5H7v-2h1zm5 0h-3v-2h3zm3-5h-3v-2h3zm0-3h-3v-2h3zm0-3h-3V8h3zm0-4H5V4h11z"/></svg>��������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pokeball.svg�������������������������������0000664�0000000�0000000�00000000646�14753064456�0025727�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2c-4.08 0-7.45 3.05-7.94 7h4.07c.44-1.73 2.01-3 3.87-3s3.43 1.27 3.87 3h4.07c-.49-3.95-3.86-7-7.94-7m0 16c4.08 0 7.45-3.05 7.94-7h-4.07c-.44 1.73-2.01 3-3.87 3s-3.43-1.27-3.87-3H4.06c.49 3.95 3.86 7 7.94 7m0-10a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pokemon-go.svg�����������������������������0000664�0000000�0000000�00000001024�14753064456�0026200�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a7 7 0 0 1 7 7c0 1.4-.41 2.71-1.12 3.8L12 22.21 6.12 12.8A6.95 6.95 0 0 1 5 9a7 7 0 0 1 7-7m0 1.5A5.5 5.5 0 0 0 6.59 8h2.58c.41-1.17 1.52-2 2.83-2s2.42.83 2.83 2h2.58A5.5 5.5 0 0 0 12 3.5m0 8.5a2.99 2.99 0 0 1-2.83-2H6.59c.13.69.38 1.34.75 1.91l.04.09A5.51 5.51 0 0 0 12 14.5c1.94 0 3.64-1 4.62-2.5l.04-.09c.37-.57.62-1.22.75-1.91h-2.58A2.99 2.99 0 0 1 12 12m0-4.5A1.5 1.5 0 0 0 10.5 9a1.5 1.5 0 0 0 1.5 1.5A1.5 1.5 0 0 0 13.5 9 1.5 1.5 0 0 0 12 7.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/poker-chip.svg�����������������������������0000664�0000000�0000000�00000001046�14753064456�0026172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 12c0 6.08-4.92 11-11 11S1 18.08 1 12 5.92 1 12 1s11 4.92 11 11M13 4.06c2.13.27 4.07 1.39 5.37 3.1l1.74-1A10 10 0 0 0 13 2zm-9.11 2.1 1.74 1A8.02 8.02 0 0 1 11 4.06V2a10 10 0 0 0-7.11 4.16m-1 9.94 1.73-1a8.03 8.03 0 0 1 0-6.2l-1.73-1a9.86 9.86 0 0 0 0 8.2M11 19.94a8.02 8.02 0 0 1-5.37-3.1l-1.74 1A10 10 0 0 0 11 22zm9.11-2.1-1.74-1a8.02 8.02 0 0 1-5.37 3.1v2c2.85-.29 5.44-1.78 7.11-4.1m1-1.74c1.19-2.6 1.19-5.6 0-8.2l-1.73 1a8.03 8.03 0 0 1 0 6.2zM15 12l-3-5-3 5 3 5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/polaroid.svg�������������������������������0000664�0000000�0000000�00000000241�14753064456�0025736�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 3h12a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 2v12h12V5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/police-badge-outline.svg�������������������0000664�0000000�0000000�00000001077�14753064456�0030125�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4.21c1.24.51 2.65.79 4 .79 1.05 0 2.1-.16 3.08-.46C18.5 5.5 18 6.71 18 8c0 1.32.54 2.93 1.1 4.63.4 1.2.9 2.7.9 3.37 0 1.03-3.53 3-8 3.96C7.54 19 4 17.03 4 16c0-.67.5-2.17.9-3.37C5.46 10.93 6 9.32 6 8c0-1.29-.5-2.5-1.08-3.46C5.9 4.84 6.96 5 8 5c1.35 0 2.76-.28 4-.79M20 2c-1.15.64-2.6 1-4 1s-2.86-.37-4-1c-1.14.63-2.6 1-4 1s-2.85-.36-4-1L2 4s2 2 2 4-2 6-2 8c0 4 10 6 10 6s10-2 10-6c0-2-2-6-2-8s2-4 2-4zm-4.95 14.45-3.08-1.86-3.07 1.86.82-3.5L7 10.61l3.58-.31L11.97 7l1.4 3.29 3.58.31-2.72 2.34z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/police-badge.svg���������������������������0000664�0000000�0000000�00000000465�14753064456�0026450�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22 4-2-2c-1.15.64-2.6 1-4 1s-2.86-.37-4-1c-1.14.63-2.6 1-4 1s-2.85-.36-4-1L2 4s2 2 2 4-2 6-2 8c0 4 10 6 10 6s10-2 10-6c0-2-2-6-2-8s2-4 2-4m-6.95 12.45-3.08-1.86-3.07 1.86.82-3.5L7 10.61l3.58-.31L11.97 7l1.4 3.29 3.58.31-2.72 2.34z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/police-station.svg�������������������������0000664�0000000�0000000�00000001056�14753064456�0027064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10s4-.8 4-2.4c0-.8-.8-2.4-.8-3.2s.8-1.6.8-1.6l-.8-.8c-.46.26-1.04.4-1.6.4S12.46 2.25 12 2c-.46.25-1.04.4-1.6.4S9.26 2.26 8.8 2l-.8.8s.8.8.8 1.6S8 6.8 8 7.6c0 1.6 4 2.4 4 2.4m-.57-4.68L12 4l.55 1.32 1.45.12-1.11.94.33 1.4L12 7.04l-1.24.74.33-1.4L10 5.44zM21 6h-4.35c.19.58.35 1.12.35 1.6 0 2.25-3.68 3.16-4.8 3.4h-.4C10.68 10.76 7 9.85 7 7.6c0-.48.16-1.02.35-1.6H3c-.55 0-1 .45-1 1v15h8v-5h4v5h8V7c0-.55-.45-1-1-1M8 20H4v-3h4zm0-5H4v-3h4zm6 0h-4v-3h4zm6 5h-4v-3h4zm0-5h-4v-3h4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/poll.svg�����������������������������������0000664�0000000�0000000�00000000163�14753064456�0025076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 22V8h4v14zm7 0V2h4v20zm7 0v-8h4v8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/polo.svg�����������������������������������0000664�0000000�0000000�00000000236�14753064456�0025102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 9.5a2.5 2.5 0 0 1-5 0 2.5 2.5 0 0 1 5 0M11 17V3H8v14H2l4 4h7v-4zm5 0h-2v4h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/polymer.svg��������������������������������0000664�0000000�0000000�00000000234�14753064456�0025616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 4h-4L7.1 16.63 4.5 12 9 4H5L.5 12 5 20h4l7.89-12.63L19.5 12 15 20h4l4.5-8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pool-thermometer.svg�����������������������0000664�0000000�0000000�00000001142�14753064456�0027430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6c-1.1 0-2 .9-2 2v6.8c-.6.6-1 1.4-1 2.2 0 1.7 1.3 3 3 3s3-1.3 3-3c0-.9-.4-1.7-1-2.2V8c0-1.1-.9-2-2-2m0 1c.5 0 1 .4 1 1v1h-2V8c0-.6.5-1 1-1m-4 13.3c-.9.4-1.8.7-2.7.7-2.2 0-4.4-2-6.7-2-1.2 0-2.4.3-3.7.7v-2c1.3-.4 2.5-.7 3.8-.7 2.2 0 4.4 2 6.7 2 .9 0 1.8-.3 2.7-.7v2M12.3 17c.9 0 1.8-.3 2.7-.7v-2c-.7.3-1.3.5-2 .7V5c0-.6.4-1 1-1h2.8c-.4-1.2-1.5-2-2.8-2-1.7 0-3 1.3-3 3v1H6V5c0-.6.4-1 1-1h2.8C9.4 2.8 8.3 2 7 2 5.3 2 4 3.3 4 5v8.2c-.7.1-1.3.3-2 .6v2c1.2-.5 2.4-.8 3.7-.8 2.2 0 4.4 2 6.6 2M6 8h5v2H6zm0 4h5v2.8c-1.7-.5-3.3-1.6-5-1.8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pool.svg�����������������������������������0000664�0000000�0000000�00000000757�14753064456�0025112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 15c1.67-.75 3.33-1.5 5-1.83V5a3 3 0 0 1 3-3c1.31 0 2.42.83 2.83 2H10a1 1 0 0 0-1 1v1h5V5a3 3 0 0 1 3-3c1.31 0 2.42.83 2.83 2H17a1 1 0 0 0-1 1v9.94c2-.32 4-1.94 6-1.94v2c-2.22 0-4.44 2-6.67 2-2.22 0-4.44-2-6.66-2-2.23 0-4.45 1-6.67 2zm12-7H9v2h5zm0 4H9v1c1.67.16 3.33 1.31 5 1.79zM2 19c2.22-1 4.44-2 6.67-2 2.22 0 4.44 2 6.66 2 2.23 0 4.45-2 6.67-2v2c-2.22 0-4.44 2-6.67 2-2.22 0-4.44-2-6.66-2-2.23 0-4.45 1-6.67 2z"/></svg>�����������������mkdocs-material-9.6.4/material/templates/.icons/material/popcorn.svg��������������������������������0000664�0000000�0000000�00000000711�14753064456�0025607�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 22H4.75s-.75 0-.94-1.35L2.04 3.81 2 3.5C2 2.67 2.9 2 4 2s2 .67 2 1.5C6 2.67 6.9 2 8 2s2 .67 2 1.5c0-.83.9-1.5 2-1.5 1.09 0 2 .66 2 1.5 0-.83.9-1.5 2-1.5s2 .67 2 1.5c0-.83.9-1.5 2-1.5s2 .67 2 1.5l-.04.31-1.77 16.84C20 22 19.25 22 19.25 22H7M17.85 4.93C17.55 4.39 16.84 4 16 4c-.81 0-1.64.36-2 .87L13.78 20h2.88zM10 4.87C9.64 4.36 8.81 4 8 4c-.84 0-1.55.39-1.85.93L7.34 20h2.88z"/></svg>�������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/post-lamp.svg������������������������������0000664�0000000�0000000�00000000243�14753064456�0026043�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14 3-1-2h-2l-1 2-5 3h2l1 8 2 2 .5 1H9v6h6v-6h-1.5l.5-1 2-2 1-8h2zm.16 10H9.84L9 6h6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/post-outline.svg���������������������������0000664�0000000�0000000�00000000220�14753064456�0026564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 5v14H5V5zm2-2H3v18h18zm-4 14H7v-1h10zm0-2H7v-1h10zm0-3H7V7h10z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/post.svg�����������������������������������0000664�0000000�0000000�00000000203�14753064456�0025110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3v18h18V3zm15 15H6v-1h12zm0-2H6v-1h12zm0-4H6V6h12z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/postage-stamp.svg��������������������������0000664�0000000�0000000�00000000730�14753064456�0026714�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2v3.5c1.1 0 2 1.12 2 2.5s-.9 2.5-2 2.5v3c1.1 0 2 1.12 2 2.5s-.9 2.5-2 2.5V22h3.5c0-1.1 1.12-2 2.5-2s2.5.9 2.5 2h3c0-1.1 1.12-2 2.5-2s2.5.9 2.5 2H22v-3.5c-1.1 0-2-1.12-2-2.5s.9-2.5 2-2.5v-3c-1.1 0-2-1.12-2-2.5s.9-2.5 2-2.5V2h-3.5c0 1.1-1.12 2-2.5 2s-2.5-.9-2.5-2h-3c0 1.1-1.12 2-2.5 2s-2.5-.9-2.5-2zm4 4h12v12H6zm3 1a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m8 3-3 3-2-1-5 5h10z"/></svg>����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pot-mix-outline.svg������������������������0000664�0000000�0000000�00000000261�14753064456�0027201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.6 9 18 3.1l1.7 1L16.9 9zm1.7 1H21v2h-2v7c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2v-7H3v-2zm.7 2H7v7h10z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pot-mix.svg��������������������������������0000664�0000000�0000000�00000000241�14753064456�0025522�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.6 9 18 3.1l1.7 1L16.9 9zm-.6 1H3v2h2v7c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-7h2v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pot-outline.svg����������������������������0000664�0000000�0000000�00000000216�14753064456�0026406�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 10v2h2v7c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-7h2v-2zm4 2h10v7H7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pot-steam-outline.svg����������������������0000664�0000000�0000000�00000000570�14753064456�0027520�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 1.5a3.35 3.35 0 0 0 0 6.7h1.53c.39 0 .76.1 1.08.3h2.02c-.58-1.05-1.77-1.75-3.1-1.75H8c-1 0-1.85-.98-1.85-2S7 3 8 3zm4.85.5c0 1-.85 1.85-1.85 1.85v1.5c1.92 0 3.5 1.35 3.89 3.15h1.53a5.54 5.54 0 0 0-3.07-4.12c.62-.61 1-1.45 1-2.38zM3 10v2h2v7a2 2 0 0 0 2 2h10c1.11 0 2-.89 2-2v-7h2v-2zm4 2h10v7H7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pot-steam.svg������������������������������0000664�0000000�0000000�00000000554�14753064456�0026045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19c0 1.11-.89 2-2 2H7a2 2 0 0 1-2-2v-7H3v-2h18v2h-2M8 1.5a3.35 3.35 0 0 0 0 6.7h1.53c.39 0 .76.1 1.08.3h2.02c-.58-1.05-1.77-1.75-3.1-1.75H8c-1 0-1.85-.98-1.85-2S7 3 8 3m4.85-1c0 1-.85 1.85-1.85 1.85v1.5c1.92 0 3.5 1.35 3.89 3.15h1.53a5.54 5.54 0 0 0-3.07-4.12c.62-.61 1-1.45 1-2.38Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pot.svg������������������������������������0000664�0000000�0000000�00000000206�14753064456�0024730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2v-7H3v-2h18v2h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pound-box-outline.svg����������������������0000664�0000000�0000000�00000000454�14753064456�0027523�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19H5V5h14m0-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2M7 9h2.31l.32-3h2l-.32 3h2l.32-3h2l-.32 3H17v2h-1.9l-.2 2H17v2h-2.31l-.32 3h-2l.32-3h-2l-.32 3h-2l.32-3H7v-2h1.9l.2-2H7zm4.1 2-.2 2h2l.2-2Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pound-box.svg������������������������������0000664�0000000�0000000�00000000440�14753064456�0026041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2zm4 13h2l.35-2h4L13 18h2l.35-2h2l.36-2h-2l.7-4h2l.35-2h-2l.36-2h-2l-.36 2h-4l.36-2h-2l-.36 2h-2l-.35 2h2l-.7 4h-2l-.36 2h2zm3.41-8h4l-.7 4h-4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pound.svg����������������������������������0000664�0000000�0000000�00000000355�14753064456�0025260�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5.41 21 .71-4h-4l.35-2h4l1.06-6h-4l.35-2h4l.71-4h2l-.71 4h6l.71-4h2l-.71 4h4l-.35 2h-4l-1.06 6h4l-.35 2h-4l-.71 4h-2l.71-4h-6l-.71 4zM9.53 9l-1.06 6h6l1.06-6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/power-cycle.svg����������������������������0000664�0000000�0000000�00000000324�14753064456�0026360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3a9 9 0 0 0-9 9 9 9 0 0 0 9 9 9 9 0 0 0 9-9 9 9 0 0 0-9-9m0 16a7 7 0 0 1-7-7 7 7 0 0 1 7-7 7 7 0 0 1 7 7 7 7 0 0 1-7 7m1-2h-2V7h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/power-off.svg������������������������������0000664�0000000�0000000�00000000310�14753064456�0026026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3a9 9 0 0 0-9 9 9 9 0 0 0 9 9 9 9 0 0 0 9-9 9 9 0 0 0-9-9m0 16a7 7 0 0 1-7-7 7 7 0 0 1 7-7 7 7 0 0 1 7 7 7 7 0 0 1-7 7"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/power-on.svg�������������������������������0000664�0000000�0000000�00000000134�14753064456�0025674�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 3h2v18h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/power-plug-battery-outline.svg�������������0000664�0000000�0000000�00000000660�14753064456�0031360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 8.32c.57.38 1 1.03 1 1.68v5.5L8.5 19v3h-5v-3L0 15.5V10c0-1 1-2 2-2V4h2v4h4V4h2v4c.35 0 .7.12 1 .32m-3.91 9.27L10 14.67v-4.58c0-.03-.05-.09-.08-.09H2.09c-.03 0-.09.06-.09.09v4.58L5.33 18h1.34zM12 4.04c.11-.04.22-.04.33-.04H14V2h6v2h1.67C22.4 4 23 4.6 23 5.33v15.34c0 .33-.14.69-.39.94s-.61.39-.94.39h-9.34c-.73 0-1.33-.6-1.33-1.33v-1.34l2-2V20h8V6h-9z"/></svg>��������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/power-plug-battery.svg���������������������0000664�0000000�0000000�00000000562�14753064456�0027704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10c0-.65-.43-1.3-1-1.68-.3-.2-.65-.32-1-.32V4H8v4H4V4H2v4c-1 0-2 1-2 2v5.5L3.5 19v3h5v-3l3.5-3.5zm.33-6c-.11 0-.22 0-.33.04v2.55c.3.18.56.41.79.62C13.44 7.87 14 8.85 14 10v6.33l-3 3v1.34c0 .73.6 1.33 1.33 1.33h9.34c.33 0 .69-.14.94-.39s.39-.61.39-.94V5.33C23 4.6 22.4 4 21.67 4H20V2h-6v2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/power-plug-off-outline.svg�����������������0000664�0000000�0000000�00000000507�14753064456�0030460�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3l5.14 5.14C6.1 8.41 6 8.7 6 9v5.5L9.5 18v3h5v-3l.81-.8 5.53 5.53zm-9.02-4.87-.42.41h-1.34l-.41-.41L8 13.67V9.89l5.89 5.89zM12.2 9l-2-2H14V3h2v4c1 0 2 1 2 2v5.5l-.15.15L16 12.8V9.09c0-.03-.05-.09-.08-.09zM10 6.8l-2-2V3h2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/power-plug-off.svg�������������������������0000664�0000000�0000000�00000000350�14753064456�0026777�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.84 22.73-5.53-5.53-.81.8v3h-5v-3L6 14.5V9c0-.3.1-.59.25-.86L1.11 3l1.28-1.27 19.72 19.73zM18 14.5V9c0-1-1-2-2-2V3h-2v4h-3.8l7.65 7.65zM10 3H8v1.8l2 2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/power-plug-outline.svg���������������������0000664�0000000�0000000�00000000370�14753064456�0027706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 7V3h-2v4h-4V3H8v4C7 7 6 8 6 9v5.5L9.5 18v3h5v-3l3.5-3.5V9c0-1-1-2-2-2m0 6.67-2.91 2.92-.42.41h-1.34l-.41-.41L8 13.67V9.09c0-.03.06-.09.09-.09h7.83c.03 0 .08.06.08.09z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/power-plug.svg�����������������������������0000664�0000000�0000000�00000000227�14753064456�0026232�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 7V3h-2v4h-4V3H8v4C7 7 6 8 6 9v5.5L9.5 18v3h5v-3l3.5-3.5V9c0-1-1-2-2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/power-settings.svg�������������������������0000664�0000000�0000000�00000000474�14753064456�0027127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 24h2v-2h-2m1.56-17.56-1.45 1.45A5.97 5.97 0 0 1 18 11a6 6 0 0 1-6 6 6 6 0 0 1-6-6c0-2.17 1.16-4.06 2.88-5.12L7.44 4.44A7.96 7.96 0 0 0 4 11a8 8 0 0 0 8 8 8 8 0 0 0 8-8c0-2.72-1.36-5.12-3.44-6.56M13 2h-2v10h2m-2 12h2v-2h-2m-4 2h2v-2H7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/power-sleep.svg����������������������������0000664�0000000�0000000�00000000336�14753064456�0026374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.73 18c-3.33 3.69-9.02 4-12.73.64-3.67-3.33-3.96-9.02-.63-12.71A9.05 9.05 0 0 1 11.27 3c-3.31 3.7-3 9.39.73 12.71 1.63 1.48 3.78 2.29 6 2.29z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/power-socket-au.svg������������������������0000664�0000000�0000000�00000000501�14753064456�0027151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.22 2A2.22 2.22 0 0 0 2 4.22v15.56C2 21 3 22 4.22 22h15.56A2.22 2.22 0 0 0 22 19.78V4.22C22 3 21 2 19.78 2zM12 4a8 8 0 0 1 8 8 8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8M8.27 7.54l-2 3.46L8 12l2-3.46zm7.46 0-1.73 1L16 12l1.73-1zM11 14v4h2v-4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/power-socket-ch.svg������������������������0000664�0000000�0000000�00000001072�14753064456�0027142�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.78 2H4.22C3 2 2 3 2 4.22v15.56C2 21 3 22 4.22 22h15.56C21 22 22 21 22 19.78V4.22C22 3 21 2 19.78 2M20 13l-3.45 3.45c-.36.36-.8.55-1.25.55H8.7c-.45 0-.89-.19-1.25-.55L4 13c-.5-.5-.5-1.5 0-2l3.45-3.45c.36-.36.8-.55 1.25-.55h6.6c.45 0 .89.19 1.25.55L20 11c.5.5.5 1.5 0 2m-9.5 1c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5m5-2c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5m-10 0c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/power-socket-de.svg������������������������0000664�0000000�0000000�00000000712�14753064456�0027140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.22 2A2.22 2.22 0 0 0 2 4.22v15.56C2 21 3 22 4.22 22h15.56A2.22 2.22 0 0 0 22 19.78V4.22C22 3 21 2 19.78 2zM11 4.07V6h2V4.07A8 8 0 0 1 20 12a8 8 0 0 1-7 7.93V18h-2v1.93A8 8 0 0 1 4 12a8 8 0 0 1 7-7.93M7.5 10.5A1.5 1.5 0 0 0 6 12c0 .83.66 1.5 1.5 1.5A1.5 1.5 0 0 0 9 12a1.5 1.5 0 0 0-1.5-1.5m9 0A1.5 1.5 0 0 0 15 12a1.5 1.5 0 0 0 1.5 1.5A1.5 1.5 0 0 0 18 12a1.5 1.5 0 0 0-1.5-1.5"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/power-socket-eu.svg������������������������0000664�0000000�0000000�00000000663�14753064456�0027166�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 10.5A1.5 1.5 0 0 1 9 12a1.5 1.5 0 0 1-1.5 1.5c-.84 0-1.5-.67-1.5-1.5a1.5 1.5 0 0 1 1.5-1.5m9 0A1.5 1.5 0 0 1 18 12a1.5 1.5 0 0 1-1.5 1.5A1.5 1.5 0 0 1 15 12a1.5 1.5 0 0 1 1.5-1.5M4.22 2h15.56C21 2 22 3 22 4.22v15.56A2.22 2.22 0 0 1 19.78 22H4.22C3 22 2 21 2 19.78V4.22A2.22 2.22 0 0 1 4.22 2M12 4a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>�����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/power-socket-fr.svg������������������������0000664�0000000�0000000�00000001000�14753064456�0027146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.22 2A2.22 2.22 0 0 0 2 4.22v15.56C2 21 3 22 4.22 22h15.56A2.22 2.22 0 0 0 22 19.78V4.22C22 3 21 2 19.78 2zM12 4a8 8 0 0 1 8 8 8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8m0 2a1.5 1.5 0 0 0-1.5 1.5A1.5 1.5 0 0 0 12 9a1.5 1.5 0 0 0 1.5-1.5A1.5 1.5 0 0 0 12 6m-4.5 4.5A1.5 1.5 0 0 0 6 12c0 .83.66 1.5 1.5 1.5A1.5 1.5 0 0 0 9 12a1.5 1.5 0 0 0-1.5-1.5m9 0A1.5 1.5 0 0 0 15 12a1.5 1.5 0 0 0 1.5 1.5A1.5 1.5 0 0 0 18 12a1.5 1.5 0 0 0-1.5-1.5"/></svg>mkdocs-material-9.6.4/material/templates/.icons/material/power-socket-it.svg������������������������0000664�0000000�0000000�00000000722�14753064456�0027165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 16.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5m0-9c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S12.83 9 12 9s-1.5-.67-1.5-1.5M4.22 2h15.56C21 2 22 3 22 4.22v15.56C22 21 21 22 19.78 22H4.22C3 22 2 21 2 19.78V4.22C2 3 3 2 4.22 2M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8m-1.5 8c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5"/></svg>����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/power-socket-jp.svg������������������������0000664�0000000�0000000�00000000404�14753064456�0027157�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 9.5v5H8v-5M19.78 2C21 2 22 3 22 4.22v15.56C22 21 21 22 19.78 22H4.22C3 22 2 21 2 19.78V4.22C2 3 3 2 4.22 2M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8m4 5.5v5h-2v-5Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/power-socket-uk.svg������������������������0000664�0000000�0000000�00000000324�14753064456�0027166�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm0 2h16v16H4zm7 3v4h2V7zm-5 7.75V17h3.5v-2.25zm8.5 0V17H18v-2.25z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/power-socket-us.svg������������������������0000664�0000000�0000000�00000000522�14753064456�0027176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 7h2v5H8zM4.22 2h15.56C21 2 22 3 22 4.22v15.56A2.22 2.22 0 0 1 19.78 22H4.22C3 22 2 21 2 19.78V4.22A2.22 2.22 0 0 1 4.22 2M12 4a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8m2 3.5h2v4h-2zm-3.5 8.75a1.5 1.5 0 0 1 1.5-1.5 1.5 1.5 0 0 1 1.5 1.5V17h-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/power-socket.svg���������������������������0000664�0000000�0000000�00000000250�14753064456�0026547�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 15h2v-4h-2m-8 4h2v-4H7m4 2h2V9h-2M8.83 7h6.37l3.8 3.8V17H5v-6.2M8 5l-5 5v9h18v-9l-5-5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/power-standby.svg��������������������������0000664�0000000�0000000�00000000430�14753064456�0026723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3h-2v10h2zm4.83 2.17-1.42 1.42A6.94 6.94 0 0 1 19 12a7 7 0 0 1-7 7A6.995 6.995 0 0 1 7.58 6.58L6.17 5.17a9 9 0 0 0-1.03 12.69c3.22 3.78 8.9 4.24 12.69 1.02A9 9 0 0 0 21 12c0-2.63-1.16-5.13-3.17-6.83"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/power.svg����������������������������������0000664�0000000�0000000�00000000423�14753064456�0025263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.56 5.44-1.45 1.45A5.97 5.97 0 0 1 18 12a6 6 0 0 1-6 6 6 6 0 0 1-6-6c0-2.17 1.16-4.06 2.88-5.12L7.44 5.44A7.96 7.96 0 0 0 4 12a8 8 0 0 0 8 8 8 8 0 0 0 8-8c0-2.72-1.36-5.12-3.44-6.56M13 3h-2v10h2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/powershell.svg�����������������������������0000664�0000000�0000000�00000000741�14753064456�0026316�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.83 4c.49 0 .8.4.67.89l-3.16 14.22c-.11.49-.59.89-1.08.89H2.17c-.49 0-.8-.4-.67-.89L4.66 4.89C4.77 4.4 5.25 4 5.74 4zm-6 12h-4c-.46 0-.83.38-.83.84 0 .47.37.85.83.85h4c.47 0 .85-.38.85-.85 0-.46-.38-.84-.85-.84m-10.05.28a.87.87 0 0 0-.21 1.22c.28.42.84.5 1.24.23 7.35-5.17 7.4-5.23 7.45-5.26.18-.16.27-.38.28-.6.01-.2-.04-.37-.16-.56L9.46 6.03A.867.867 0 0 0 8.21 6c-.36.32-.38.88-.05 1.24l4.15 4.44z"/></svg>�������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/prescription.svg���������������������������0000664�0000000�0000000�00000000407�14753064456�0026652�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4v10h2v-4h2l5.41 5.41L9.83 19l1.41 1.41 3.59-3.58 3.58 3.58L19.82 19l-3.58-3.59 3.58-3.58-1.41-1.42L14.83 14l-4-4H11a3 3 0 0 0 3-3 3 3 0 0 0-3-3zm2 2h5a1 1 0 0 1 1 1 1 1 0 0 1-1 1H6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/presentation-play.svg����������������������0000664�0000000�0000000�00000000466�14753064456�0027614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3h8a2 2 0 0 1 2-2 2 2 0 0 1 2 2h8v2h-1v11h-5.75L17 22h-2l-1.75-6h-2.5L9 22H7l1.75-6H3V5H2zm3 2v9h14V5zm6.85 6.85a.5.5 0 0 1-.35.15.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 .5-.5c.14 0 .26.06.35.15l1.4 1.39c.32.32.64.64.64.96s-.32.64-.64.96z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/presentation.svg���������������������������0000664�0000000�0000000�00000000267�14753064456�0026650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3h8a2 2 0 0 1 2-2 2 2 0 0 1 2 2h8v2h-1v11h-5.75L17 22h-2l-1.75-6h-2.5L9 22H7l1.75-6H3V5H2zm3 2v9h14V5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pretzel.svg��������������������������������0000664�0000000�0000000�00000000776�14753064456�0025627�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.15 15.84A8.97 8.97 0 0 1 3 10v-.03C3 7.22 5.25 5 8 5c1.64 0 3.09.79 4 2 .91-1.21 2.37-2 4-2 2.76 0 5 2.24 5 5 0 2.23-.81 4.27-2.15 5.84l1.36 1.36-1.42 1.41-1.4-1.4A9.04 9.04 0 0 1 12 19c-2 0-3.89-.67-5.39-1.79l-1.4 1.4-1.42-1.41zm10.81-.07L12 11.82l-3.96 3.95C9.17 16.55 10.53 17 12 17s2.83-.45 3.96-1.23M11 10c0-1.66-1.35-3-3-3-1.66 0-3 1.34-3 3 0 1.68.59 3.21 1.57 4.42zm6.43 4.42A7 7 0 0 0 19 10c0-1.67-1.35-3-3-3s-3 1.34-3 3z"/></svg>��mkdocs-material-9.6.4/material/templates/.icons/material/printer-3d-nozzle-alert-outline.svg��������0000664�0000000�0000000�00000000345�14753064456�0032222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2h10v5h2v6h-2.5L13 17h-2l-3.5-4H5V7h2zm3 20H2v-2h8c.6 0 1-.5 1-1v-1h2v1c0 1.7-1.3 3-3 3M7 9v2h1.5l3.5 4 3.5-4H17V9h-2V4H9v5zm14 4V7h2v6zm0 4v-2h2v2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-3d-nozzle-alert.svg����������������0000664�0000000�0000000�00000000300�14753064456�0030534�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2h10v6h2v5h-2.5L13 17h-2l-3.5-4H5V8h2zm3 20H2v-2h8c.6 0 1-.5 1-1v-1h2v1c0 1.7-1.3 3-3 3m11-9V7h2v6zm0 4v-2h2v2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-3d-nozzle-heat-outline.svg���������0000664�0000000�0000000�00000000421�14753064456�0032027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23 14.5-1.4 2.2 1.4 2.2-2 3.1-1.8-.9 1.5-2.2-1.5-2.2 2-3.1zm-4.3 0-1.5 2.2 1.5 2.2-2 3.1-1.8-.9 1.4-2.2-1.4-2.2 2-3.1zM4 2h10v5h2v6h-2.5L10 17H8l-3.5-4H2V7h2zm0 7v2h1.5L9 15l3.5-4H14V9h-2V4H6v5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-3d-nozzle-heat.svg�����������������0000664�0000000�0000000�00000000355�14753064456�0030360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2h10v5h2v6h-2.5L10 17H8l-3.5-4H2V7h2zm19 12.5-1.4 2.2 1.4 2.2-2 3.1-1.8-.9 1.5-2.2-1.5-2.2 2-3.1zm-4.3 0-1.5 2.2 1.5 2.2-2 3.1-1.8-.9 1.4-2.2-1.4-2.2 2-3.1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-3d-nozzle-off-outline.svg����������0000664�0000000�0000000�00000000413�14753064456�0031661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l4 4H5v6h2.5l3.5 4h2l1-1.1 6.9 6.9zM12 15l-3.5-4H7V9h.1l5.4 5.4zm-1 3h2v1c0 1.7-1.3 3-3 3H2v-2h8c.6 0 1-.4 1-1zM9 5.8l-2-2V2h10v5h2v6h-2.8l-1.3-1.3.6-.7H17V9h-2V4H9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-3d-nozzle-off.svg������������������0000664�0000000�0000000�00000000333�14753064456�0030205�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.8 22.7 14 15.9 13 17h-2l-3.5-4H5V8h1.1l-5-5 1.3-1.3 19.7 19.7zM11 19c0 .6-.4 1-1 1H2v2h8c1.7 0 3-1.3 3-3v-1h-2zm8-6V8h-2V2H7v1.8l9.2 9.2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-3d-nozzle-outline.svg��������������0000664�0000000�0000000�00000000313�14753064456�0031110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2h10v5h2v6h-2.5L13 17h-2l-3.5-4H5V7h2zm3 20H2v-2h8a1 1 0 0 0 1-1v-1h2v1a3 3 0 0 1-3 3M7 9v2h1.5l3.5 4 3.5-4H17V9h-2V4H9v5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-3d-nozzle.svg����������������������0000664�0000000�0000000�00000000246�14753064456�0027440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2h10v6h2v5h-2.5L13 17h-2l-3.5-4H5V8h2zm3 20H2v-2h8a1 1 0 0 0 1-1v-1h2v1a3 3 0 0 1-3 3"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-3d-off.svg�������������������������0000664�0000000�0000000�00000000720�14753064456�0026666�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.3 2 1 3.3l1.1 1.1c-.1.2-.1.4-.1.6v6h4V8.3L8.7 11l-2.2 1.1c-.3.2-.5.5-.5.9v5.2c0 .4.2.7.5.9l4.9 2.7c.2.1.4.2.6.2s.4-.1.6-.2l4.5-2.5 3.7 3.7 1.3-1.3zm2.6 0h-.1l5 5H18v4h4V5c0-1.7-1.3-3-3-3zq.15 0 0 0M19 4c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1m-6.6 5.6 5.6 5.6V13c0-.4-.2-.7-.5-.9l-4.9-2.4c-.1 0-.1-.1-.2-.1m-2.2 2.9 2 2-.2.1L9 13zM8 14.7l3 1.6v3l-3-1.6zm5.7 1.3 1.9 1.9-2.6 1.4v-3z"/></svg>������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-3d.svg�����������������������������0000664�0000000�0000000�00000000737�14753064456�0026126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m0-4a3 3 0 0 1 3 3v6h-4V7H6v4H2V5a3 3 0 0 1 3-3zm-1 16.25c0 .38-.21.71-.53.88l-4.9 2.69q-.255.18-.57.18c-.21 0-.41-.06-.57-.18l-4.9-2.69a.99.99 0 0 1-.53-.88V13c0-.38.21-.71.53-.88l4.9-2.44c.16-.12.36-.18.57-.18q.315 0 .57.18l4.9 2.44c.32.17.53.5.53.88zm-6-6.6L9.04 13 12 14.6l2.96-1.6zm-4 6.01 3 1.63v-2.96l-3-1.62zm8 0v-2.95l-3 1.62v2.96z"/></svg>���������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-alert.svg��������������������������0000664�0000000�0000000�00000000345�14753064456�0026722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 3H4v4h12m1 5c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1m-3 7H6v-5h8m3-6H3c-1.7 0-3 1.3-3 3v6h4v4h12v-4h4v-6c0-1.7-1.3-3-3-3m7 5h-2V7h2zm0 4h-2v-2h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-check.svg��������������������������0000664�0000000�0000000�00000000471�14753064456�0026670�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 7H6V3h12zM6 21v-4H2v-6c0-1.66 1.34-3 3-3h14c1.66 0 3 1.34 3 3v2.81c-.88-.51-1.9-.81-3-.81-1.23 0-2.36.37-3.31 1H8v5h5c0 .7.13 1.37.35 2zm12-10c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1m5.5 6L22 15.5 18.5 19l-2-2-1.5 1.5 3.5 3.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-eye.svg����������������������������0000664�0000000�0000000�00000000707�14753064456�0026377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.8 21c-.2-.4-.5-.8-.6-1.3l-.4-.7H8v-5h5c1.2-.6 2.6-1 4-1 1.9 0 3.6.6 5 1.6V11c0-1.7-1.3-3-3-3H5c-1.7 0-3 1.3-3 3v6h4v4zM19 10c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1m-1-3H6V3h12zm-1 11c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1m0-3c-2.7 0-5.1 1.7-6 4 .9 2.3 3.3 4 6 4s5.1-1.7 6-4c-.9-2.3-3.3-4-6-4m0 6.5c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5"/></svg>���������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-off-outline.svg��������������������0000664�0000000�0000000�00000000542�14753064456�0030041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m1.41 1.6 20.95 20.95-1.41 1.41L18 21H6v-4H2v-6c0-1.66 1.34-3 3-3L0 3zM6 15v-2h4l-3-3H5c-.55 0-1 .45-1 1v4zm2 4h8l-4-4H8zM8 5v.36l-2-2V3h12v5h1c1.66 0 3 1.34 3 3v6h-2.34l-4-4H18v2h2v-4c0-.55-.45-1-1-1h-6.34l-2-2H16V5zm11 6.5c0 .56-.45 1-1 1s-1-.44-1-1c0-.54.45-1 1-1s1 .46 1 1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-off.svg����������������������������0000664�0000000�0000000�00000000427�14753064456�0026366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 3v1.18L8.82 7H18V3zM2.28 3 1 4.27 4.75 8A3.02 3.02 0 0 0 2 11v6h4v4h11.73l2 2L21 21.72zm7.54 5 9 9H22v-6a3 3 0 0 0-3-3zM19 10a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1M8 14h2.73l5 5H8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-outline.svg������������������������0000664�0000000�0000000�00000000426�14753064456�0027272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 8c1.66 0 3 1.34 3 3v6h-4v4H6v-4H2v-6c0-1.66 1.34-3 3-3h1V3h12v5zM8 5v3h8V5zm8 14v-4H8v4zm2-4h2v-4c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4h2v-2h12zm1-3.5c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-alert-outline.svg��������������0000664�0000000�0000000�00000000300�14753064456�0031165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 15h-4v-2h4zm3-3v7H2v-7c0-1.1.9-2 2-2h1V4h10v6h1a2 2 0 0 1 2 2M7 10h6V6H7zm9 2H4v5h12zm4 5h2v-2h-2zm0-10v6h2V7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-alert.svg����������������������0000664�0000000�0000000�00000000257�14753064456�0027523�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 10H4c-1.1 0-2 .9-2 2v7h16v-7a2 2 0 0 0-2-2m0 4h-4v-2h4zm-1-5H5V4h10zm7-2v6h-2V7zm-2 8h2v2h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-cancel-outline.svg�������������0000664�0000000�0000000�00000000657�14753064456�0031322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 14C16 14 14 16 14 18.5s2 4.5 4.5 4.5 4.5-2 4.5-4.5-2-4.5-4.5-4.5m0 7.5c-1.66 0-3-1.34-3-3 0-.56.15-1.08.42-1.5L20 21.08c-.42.27-.94.42-1.5.42m2.58-1.5L17 15.92c.42-.27.94-.42 1.5-.42 1.66 0 3 1.34 3 3 0 .56-.15 1.08-.42 1.5M7 15v-2h4v2zm-1 2v-5h14a2 2 0 0 0-2-2h-1V4H7v6H6a2 2 0 0 0-2 2v7h8.03c-.03-.17-.03-.33-.03-.5 0-.5.07-1 .18-1.5zM9 6h6v4H9z"/></svg>���������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-cancel.svg���������������������0000664�0000000�0000000�00000000671�14753064456�0027641�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 9H7V4h10zm-5 9.5c0 .17 0 .33.03.5H4v-7a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v.18c-.5-.11-1-.18-1.5-.18a6.5 6.5 0 0 0-6.5 6.5M10 12H6v2h4zm13 6.5c0 2.5-2 4.5-4.5 4.5S14 21 14 18.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5m-3 2.58L15.92 17c-.27.42-.42.94-.42 1.5 0 1.66 1.34 3 3 3 .56 0 1.08-.15 1.5-.42m1.5-2.58c0-1.66-1.34-3-3-3-.56 0-1.08.15-1.5.42L21.08 20c.27-.42.42-.94.42-1.5"/></svg>�����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-check-outline.svg��������������0000664�0000000�0000000�00000000431�14753064456�0031140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 15v-2h4v2zm-1 2h7.35c-.22.63-.35 1.3-.35 2H4v-7a2 2 0 0 1 2-2h1V4h10v6h1a2 2 0 0 1 2 2v1.09c-.33-.05-.66-.09-1-.09s-.67.04-1 .09V12H6zm3-7h6V6H9zm12.34 5.84-3.59 3.59-1.59-1.59L15 19l2.75 3 4.75-4.75z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-check.svg����������������������0000664�0000000�0000000�00000000365�14753064456�0027471�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 9H7V4h10zm2 4c-3.31 0-6 2.69-6 6H4v-7a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v1.09c-.33-.05-.66-.09-1-.09m-9-1H6v2h4zm11.34 3.84-3.59 3.59-1.59-1.59L15 19l2.75 3 4.75-4.75z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-cog-outline.svg����������������0000664�0000000�0000000�00000001156�14753064456�0030640�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.7 19.6v-1l1.1-.8c.1-.1.2-.2.1-.3l-1-1.7c0-.1-.2-.1-.3-.1l-1.2.5c-.3-.2-.6-.4-.9-.5l-.2-1.3c0-.1-.1-.2-.2-.2h-2c-.2 0-.3.1-.3.2l-.2 1.3c-.3.2-.5.3-.8.5l-1.2-.5c-.1 0-.2 0-.3.1l-1 1.7c0 .1 0 .2.1.3l1.1.8v1l-1.1.8c-.1.1-.2.2-.1.3l1 1.7c.1.1.2.1.3.1l1.2-.5c.2.2.5.4.8.5l.2 1.3c.1.1.2.2.3.2h2c.1 0 .2-.1.2-.2l.2-1.3c.3-.2.5-.3.8-.5l1.2.4c.1 0 .2 0 .3-.1l1-1.7c.1-.1.1-.2 0-.2zm-3.7.9c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5M7 15v-2h4v2zm-1-3h14a2 2 0 0 0-2-2h-1V4H7v6H6a2 2 0 0 0-2 2v7h8c0-.69.11-1.37.29-2H6zm3-6h6v4H9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-cog.svg������������������������0000664�0000000�0000000�00000001203�14753064456�0027154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 9H7V4h10zm2 3c-3.87 0-7 3.13-7 7H4v-7a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v.08c-.33-.05-.66-.08-1-.08m-9 0H6v2h4zm13.8 8.4c.1 0 .1.1 0 .2l-1 1.7c-.1.1-.2.1-.3.1l-1.2-.4c-.3.2-.5.3-.8.5l-.2 1.3c0 .1-.1.2-.2.2h-2c-.1 0-.2-.1-.3-.2l-.2-1.3c-.3-.1-.6-.3-.8-.5l-1.2.5c-.1 0-.2 0-.3-.1l-1-1.7c-.1-.1 0-.2.1-.3l1.1-.8v-1l-1.1-.8c-.1-.1-.1-.2-.1-.3l1-1.7c.1-.1.2-.1.3-.1l1.2.5c.3-.2.5-.3.8-.5l.2-1.3c0-.1.1-.2.3-.2h2c.1 0 .2.1.2.2l.2 1.3c.3.1.6.3.9.5l1.2-.5c.1 0 .3 0 .3.1l1 1.7c.1.1 0 .2-.1.3l-1.1.8v1zM20.5 19c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5.7 1.5 1.5 1.5 1.5-.7 1.5-1.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-edit-outline.svg���������������0000664�0000000�0000000�00000000506�14753064456�0031013�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 17v-5h12.13l1.26-1.26c.03-.03.06-.05.11-.07-.39-.41-.91-.67-1.5-.67h-1V4H7v6H6a2 2 0 0 0-2 2v7h7.13l2-2zM9 6h6v4H9zm-2 9v-2h4v2zm15.85-.81-.98.98-2.04-2.04.98-.98c.19-.2.52-.2.72 0l1.32 1.32c.2.2.2.53 0 .72m-3.72-.36 2.04 2.04L15.04 22H13v-2.04z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-edit.svg�����������������������0000664�0000000�0000000�00000000463�14753064456�0027340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 9H7V4h10zm2.39 1.74L11.13 19H4v-7a2 2 0 0 1 2-2h12c.59 0 1.11.26 1.5.67-.05.02-.08.04-.11.07M10 12H6v2h4zm3 7.96V22h2.04l6.13-6.12-2.04-2.05zm9.85-6.49-1.32-1.32c-.2-.2-.53-.2-.72 0l-.98.98 2.04 2.04.98-.98c.2-.19.2-.52 0-.72"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-minus-outline.svg��������������0000664�0000000�0000000�00000000346�14753064456�0031223�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 12h12v1.09c.33-.05.66-.09 1-.09s.67.04 1 .09V12a2 2 0 0 0-2-2h-1V4H7v6H6a2 2 0 0 0-2 2v7h9c0-.7.13-1.37.35-2H6zm3-6h6v4H9zm-2 9v-2h4v2zm16 3v2h-8v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-minus.svg����������������������0000664�0000000�0000000�00000000312�14753064456�0027537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 9H7V4h10zm2 4c-3.31 0-6 2.69-6 6H4v-7a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v1.09c-.33-.05-.66-.09-1-.09m-9-1H6v2h4zm5 6v2h8v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-network-outline.svg������������0000664�0000000�0000000�00000000401�14753064456�0031551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 11h4v2h-4zm9 9v2h-7c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1H2v-2h7c0-.55.45-1 1-1h1v-2H4v-7a2 2 0 0 1 2-2h1V2h10v6h1a2 2 0 0 1 2 2v7h-7v2h1c.55 0 1 .45 1 1zM9 8h6V4H9zm9 7v-5H6v5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-network.svg��������������������0000664�0000000�0000000�00000000360�14753064456�0030100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 7H7V2h10zm5 13v2h-7c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1H2v-2h7c0-.55.45-1 1-1h1v-2H4v-7a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v7h-7v2h1c.55 0 1 .45 1 1zm-4-10h-4v2h4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-off-outline.svg����������������0000664�0000000�0000000�00000000360�14753064456�0030636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.39 1.73 1.11 3 7 8.89V10H6a2 2 0 0 0-2 2v7h13.11l3.73 3.73 1.27-1.27zM6 17v-5h4.11l5 5zM9.2 6l-2-2H17v6h1a2 2 0 0 1 2 2v4.8l-2-2V12h-2.8l-2-2H15V6zM7 13h4v2H7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-off.svg������������������������0000664�0000000�0000000�00000000320�14753064456�0027155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.2 9-5-5H17v5zm7.8 7.8V12a2 2 0 0 0-2-2h-4.8zm2.11 4.66-1.27 1.27L17.11 19H4v-7a2 2 0 0 1 2-2h2.11l-7-7 1.28-1.27zM10 12H6v2h4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-outline.svg��������������������0000664�0000000�0000000�00000000252�14753064456�0030066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 10h-1V4H7v6H6a2 2 0 0 0-2 2v7h16v-7a2 2 0 0 0-2-2M9 6h6v4H9zm9 11H6v-5h12zm-1-2h-4v-2h4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-pause-outline.svg��������������0000664�0000000�0000000�00000000363�14753064456�0031204�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 12a2 2 0 0 0-2-2h-1V4H7v6H6a2 2 0 0 0-2 2v7h9c0-.7.13-1.37.35-2H6v-5h12v1.09c.33-.05.66-.09 1-.09s.67.04 1 .09zm-5-2H9V6h6zm-8 5v-2h4v2zm9 1h2v6h-2zm6 0v6h-2v-6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-pause.svg����������������������0000664�0000000�0000000�00000000327�14753064456�0027527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 9H7V4h10zm3 4.09c-.33-.05-.66-.09-1-.09-3.31 0-6 2.69-6 6H4v-7a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2zM10 12H6v2h4zm6 10h2v-6h-2zm4-6v6h2v-6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-play-outline.svg���������������0000664�0000000�0000000�00000000355�14753064456�0031035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 15v-2h4v2zm-1 2h7.35c-.22.63-.35 1.3-.35 2H4v-7a2 2 0 0 1 2-2h1V4h10v6h1a2 2 0 0 1 2 2v1.09c-.33-.05-.66-.09-1-.09s-.67.04-1 .09V12H6zm3-7h6V6H9zm8 6v6l5-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-play.svg�����������������������0000664�0000000�0000000�00000000310�14753064456�0027347�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 13.09V12a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v7h9c0-3.31 2.69-6 6-6 .34 0 .67.04 1 .09M10 14H6v-2h4zm7-5H7V4h10zm5 10-5 3v-6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-plus-outline.svg���������������0000664�0000000�0000000�00000000372�14753064456�0031052�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 12h12v1.09c.33-.05.66-.09 1-.09s.67.04 1 .09V12a2 2 0 0 0-2-2h-1V4H7v6H6a2 2 0 0 0-2 2v7h9c0-.7.13-1.37.35-2H6zm3-6h6v4H9zm-2 9v-2h4v2zm16 3v2h-3v3h-2v-3h-3v-2h3v-3h2v3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-plus.svg�����������������������0000664�0000000�0000000�00000000337�14753064456�0027376�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 9H7V4h10zm2 4c-3.31 0-6 2.69-6 6H4v-7a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v1.09c-.33-.05-.66-.09-1-.09m-9-1H6v2h4zm10 6v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-refresh-outline.svg������������0000664�0000000�0000000�00000000511�14753064456�0031520�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 15v-2h4v2zm15 3.5v-4l-1.17 1.17A4 4 0 0 0 18 14.5c-2.21 0-4 1.79-4 4s1.79 4 4 4c1.68 0 3.12-1.03 3.71-2.5H20a2.5 2.5 0 1 1-.23-3.27L18 18.5zM12.18 17c-.11.5-.18 1-.18 1.5 0 .17 0 .33.03.5H4v-7a2 2 0 0 1 2-2h1V4h10v6h1a2 2 0 0 1 2 2H6v5zM9 10h6V6H9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-refresh.svg��������������������0000664�0000000�0000000�00000000526�14753064456�0030051�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 9H7V4h10zm-5 9.5c0 .17 0 .33.03.5H4v-7a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v.18c-.5-.11-1-.18-1.5-.18a6.5 6.5 0 0 0-6.5 6.5M10 12H6v2h4zm12 6.5v-4l-1.17 1.17A4 4 0 0 0 18 14.5c-2.21 0-4 1.79-4 4s1.79 4 4 4c1.68 0 3.12-1.03 3.71-2.5H20a2.5 2.5 0 1 1-.23-3.27L18 18.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-remove-outline.svg�������������0000664�0000000�0000000�00000000532�14753064456�0031362�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 15v-2h4v2zm-1 2h7.35c-.22.63-.35 1.3-.35 2H4v-7a2 2 0 0 1 2-2h1V4h10v6h1a2 2 0 0 1 2 2v1.09c-.33-.05-.66-.09-1-.09s-.67.04-1 .09V12H6zm3-7h6V6H9zm13.54 6.88-1.42-1.41L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-remove.svg���������������������0000664�0000000�0000000�00000000466�14753064456�0027713�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 9H7V4h10zm2 4c-3.31 0-6 2.69-6 6H4v-7a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v1.09c-.33-.05-.66-.09-1-.09m-9-1H6v2h4zm12.54 4.88-1.42-1.41L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-star-outline.svg���������������0000664�0000000�0000000�00000000460�14753064456�0031036�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 12h12v1.09c.33-.05.66-.09 1-.09s.67.04 1 .09V12a2 2 0 0 0-2-2h-1V4H7v6H6a2 2 0 0 0-2 2v7h9c0-.7.13-1.37.35-2H6zm3-6h6v4H9zm-2 9v-2h4v2zm13.8 4.77.65 2.81L19 21.09l-2.5 1.49.68-2.81L15 17.89l2.87-.25L19 15l1.11 2.64 2.89.25z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-star.svg�����������������������0000664�0000000�0000000�00000000430�14753064456�0027356�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 9H7V4h10zm2 4c-3.31 0-6 2.69-6 6H4v-7a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v1.09c-.33-.05-.66-.09-1-.09m-9-1H6v2h4zm13 5.89-2.89-.25L19 15l-1.13 2.64-2.87.25 2.18 1.88-.68 2.81 2.5-1.49 2.45 1.49-.65-2.81z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-stop-outline.svg���������������0000664�0000000�0000000�00000000346�14753064456�0031055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 12h12v1.09c.33-.05.66-.09 1-.09s.67.04 1 .09V12a2 2 0 0 0-2-2h-1V4H7v6H6a2 2 0 0 0-2 2v7h9c0-.7.13-1.37.35-2H6zm3-6h6v4H9zm-2 9v-2h4v2zm15 1v6h-6v-6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-stop.svg�����������������������0000664�0000000�0000000�00000000312�14753064456�0027371�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 9H7V4h10zm2 4c-3.31 0-6 2.69-6 6H4v-7a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v1.09c-.33-.05-.66-.09-1-.09m-9-1H6v2h4zm6 4v6h6v-6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-sync-outline.svg���������������0000664�0000000�0000000�00000000750�14753064456�0031043�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 15v-2h4v2zm6 2.5c0 .5.07 1 .18 1.5H4v-7a2 2 0 0 1 2-2h1V4h10v6h1c.74 0 1.38.41 1.73 1h-.23c-1.27 0-2.45.37-3.45 1H6v5h7.03c-.03.17-.03.33-.03.5M9 10h6V6H9zm10 3.5V12l-2.25 2.25L19 16.5V15a2.5 2.5 0 0 1 2.5 2.5c0 .4-.09.78-.26 1.12l1.09 1.09c.42-.63.67-1.39.67-2.21 0-2.21-1.79-4-4-4m0 6.5a2.5 2.5 0 0 1-2.5-2.5c0-.4.09-.78.26-1.12l-1.09-1.09c-.42.63-.67 1.39-.67 2.21 0 2.21 1.79 4 4 4V23l2.25-2.25L19 18.5z"/></svg>������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-sync.svg�����������������������0000664�0000000�0000000�00000000700�14753064456�0027361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 9H7V4h10zm-4 8.5c0 .5.07 1 .18 1.5H4v-7a2 2 0 0 1 2-2h12c.74 0 1.38.41 1.73 1h-.23a6.5 6.5 0 0 0-6.5 6.5M10 12H6v2h4zm9 8a2.5 2.5 0 0 1-2.5-2.5c0-.4.09-.78.26-1.12l-1.09-1.09c-.42.63-.67 1.39-.67 2.21 0 2.21 1.79 4 4 4V23l2.25-2.25L19 18.5zm0-6.5V12l-2.25 2.25L19 16.5V15a2.5 2.5 0 0 1 2.5 2.5c0 .4-.09.78-.26 1.12l1.09 1.09c.42-.63.67-1.39.67-2.21 0-2.21-1.79-4-4-4"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-wrench-outline.svg�������������0000664�0000000�0000000�00000000674�14753064456�0031362�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 15v-2h4v2zm6.03-3H6v5h5.1c.15.74.48 1.42.9 2H4v-7a2 2 0 0 1 2-2h1V4h10v6h1a2 2 0 0 1 2 2v1.03A4.97 4.97 0 0 0 16 11c-1.12 0-2.14.38-2.97 1M9 10h6V6H9zm13.87 11.19-4.11-4.11c.41-1.04.18-2.26-.68-3.11-.9-.91-2.25-1.09-3.34-.59l1.94 1.94-1.35 1.36-1.99-1.95c-.54 1.09-.29 2.44.59 3.35a2.91 2.91 0 0 0 3.12.68l4.11 4.1c.18.19.45.19.63 0l1.04-1.03c.22-.18.22-.5.04-.64"/></svg>��������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos-wrench.svg���������������������0000664�0000000�0000000�00000000645�14753064456�0027703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 9H7V4h10zm-6 7c0 1.13.39 2.16 1 3H4v-7a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v1.03A4.97 4.97 0 0 0 16 11c-2.76 0-5 2.24-5 5m-1-4H6v2h4zm12.87 9.19-4.11-4.11c.41-1.04.18-2.26-.68-3.11-.9-.91-2.25-1.09-3.34-.59l1.94 1.94-1.35 1.36-1.99-1.95c-.54 1.09-.29 2.44.59 3.35a2.91 2.91 0 0 0 3.12.68l4.11 4.1c.18.19.45.19.63 0l1.04-1.03c.22-.18.22-.5.04-.64"/></svg>�������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-pos.svg����������������������������0000664�0000000�0000000�00000000223�14753064456�0026407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 10H6a2 2 0 0 0-2 2v7h16v-7a2 2 0 0 0-2-2m0 4h-4v-2h4m-1-3H7V4h10Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-search.svg�������������������������0000664�0000000�0000000�00000000612�14753064456�0027055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.3 18.9c.4-.7.7-1.5.7-2.4 0-2.5-2-4.5-4.5-4.5S12 14 12 16.5s2 4.5 4.5 4.5c.9 0 1.7-.2 2.4-.7l3.1 3.1 1.4-1.4zm-3.8.1c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5M18 7H6V3h12zM6 21v-4H2v-6c0-1.7 1.3-3 3-3h14c1.7 0 3 1.3 3 3v2c-1.2-1.8-3.2-3-5.5-3-2.7 0-5 1.7-6 4H8v5h2.5c.3.7.8 1.4 1.3 2z"/></svg>����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-settings.svg�����������������������0000664�0000000�0000000�00000000376�14753064456�0027457�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 2v4H6V2zm1 9a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m-3 7v-5H8v5zm3-11a3 3 0 0 1 3 3v6h-4v4H6v-4H2v-6a3 3 0 0 1 3-3zm-4 17v-2h2v2zm-4 0v-2h2v2zm-4 0v-2h2v2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer-wireless.svg�����������������������0000664�0000000�0000000�00000000546�14753064456�0027453�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4.93 3.92 1.41 1.41c3.12-3.13 8.19-3.13 11.32 0l1.41-1.41C15.17 0 8.84 0 4.93 3.92m2.83 2.83 1.41 1.41a4.01 4.01 0 0 1 5.66 0l1.41-1.41a6 6 0 0 0-8.48 0M19 14a1 1 0 0 1-1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1 1 1 0 0 1-1 1m-3 6H8v-5h8zm3-10H5a3 3 0 0 0-3 3v5h4v4h12v-4h4v-5a3 3 0 0 0-3-3"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/printer.svg��������������������������������0000664�0000000�0000000�00000000325�14753064456�0025613�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 3H6v4h12m1 5a1 1 0 0 1-1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1 1 1 0 0 1-1 1m-3 7H8v-5h8m3-6H5a3 3 0 0 0-3 3v6h4v4h12v-4h4v-6a3 3 0 0 0-3-3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/priority-high.svg��������������������������0000664�0000000�0000000�00000000342�14753064456�0026725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 19h8v-2h-8zm0-5.5h8v-2h-8zM14 8h8V6h-8zM2 12.5C2 8.92 4.92 6 8.5 6H9V4l3 3-3 3V8h-.5C6 8 4 10 4 12.5S6 17 8.5 17H12v2H8.5C4.92 19 2 16.08 2 12.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/priority-low.svg���������������������������0000664�0000000�0000000�00000000340�14753064456�0026605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 5h8v2h-8zm0 5.5h8v2h-8zm0 5.5h8v2h-8zM2 11.5C2 15.08 4.92 18 8.5 18H9v2l3-3-3-3v2h-.5C6 16 4 14 4 11.5S6 7 8.5 7H12V5H8.5C4.92 5 2 7.92 2 11.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/professional-hexagon.svg�������������������0000664�0000000�0000000�00000001201�14753064456�0030255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 16.5c0 .38-.21.71-.53.88l-7.9 4.44c-.16.12-.36.18-.57.18s-.41-.06-.57-.18l-7.9-4.44A.99.99 0 0 1 3 16.5v-9c0-.38.21-.71.53-.88l7.9-4.44c.16-.12.36-.18.57-.18s.41.06.57.18l7.9 4.44c.32.17.53.5.53.88zM5 9v6h1.25v-2H7a2 2 0 0 0 2-2 2 2 0 0 0-2-2zm1.25 3v-2h.5a1 1 0 0 1 1 1 1 1 0 0 1-1 1zm3.5-3v6H11v-2h.75l.66 2h1.32l-.79-2.39c.49-.36.81-.95.81-1.61a2 2 0 0 0-2-2zM11 12v-2h.5a1 1 0 0 1 1 1 1 1 0 0 1-1 1zm6-3c-1.38 0-2.5 1.34-2.5 3s1.12 3 2.5 3 2.5-1.34 2.5-3-1.12-3-2.5-3m0 1.25c.76 0 1.38.78 1.38 1.75s-.62 1.75-1.38 1.75-1.37-.78-1.37-1.75.61-1.75 1.37-1.75"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/progress-alert.svg�������������������������0000664�0000000�0000000�00000000732�14753064456�0027103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2v2c4.39.54 7.5 4.53 6.96 8.92A8.014 8.014 0 0 1 13 19.88v2c5.5-.6 9.45-5.54 8.85-11.03C21.33 6.19 17.66 2.5 13 2m-2 0c-1.96.18-3.81.95-5.33 2.2L7.1 5.74c1.12-.9 2.47-1.48 3.9-1.68v-2M4.26 5.67A9.8 9.8 0 0 0 2.05 11h2c.19-1.42.75-2.77 1.64-3.9zM2.06 13c.2 1.96.97 3.81 2.21 5.33l1.42-1.43A8 8 0 0 1 4.06 13zm5 5.37-1.39 1.37A10 10 0 0 0 11 22v-2a8 8 0 0 1-3.9-1.63zM13 13V7h-2v6zm0 4v-2h-2v2z"/></svg>��������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/progress-check.svg�������������������������0000664�0000000�0000000�00000001010�14753064456�0027037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2.03v2.02c4.39.54 7.5 4.53 6.96 8.92-.46 3.64-3.32 6.53-6.96 6.96v2c5.5-.55 9.5-5.43 8.95-10.93-.45-4.75-4.22-8.5-8.95-8.97m-2 .03c-1.95.19-3.81.94-5.33 2.2L7.1 5.74c1.12-.9 2.47-1.48 3.9-1.68zM4.26 5.67A9.9 9.9 0 0 0 2.05 11h2c.19-1.42.75-2.77 1.64-3.9zM15.5 8.5l-4.88 4.88-2.12-2.12-1.06 1.06 3.18 3.18 5.94-5.94zM2.06 13c.2 1.96.97 3.81 2.21 5.33l1.42-1.43A8 8 0 0 1 4.06 13zm5.04 5.37-1.43 1.37A10 10 0 0 0 11 22v-2a8 8 0 0 1-3.9-1.63"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/progress-clock.svg�������������������������0000664�0000000�0000000�00000000762�14753064456�0027072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2.03v2.02c4.39.54 7.5 4.53 6.96 8.92-.46 3.64-3.32 6.53-6.96 6.96v2c5.5-.55 9.5-5.43 8.95-10.93-.45-4.75-4.22-8.5-8.95-8.97m-2 .03c-1.95.19-3.81.94-5.33 2.2L7.1 5.74c1.12-.9 2.47-1.48 3.9-1.68zM4.26 5.67A9.9 9.9 0 0 0 2.05 11h2c.19-1.42.75-2.77 1.64-3.9zM2.06 13c.2 1.96.97 3.81 2.21 5.33l1.42-1.43A8 8 0 0 1 4.06 13zm5.04 5.37-1.43 1.37A10 10 0 0 0 11 22v-2a8 8 0 0 1-3.9-1.63M12.5 7v5.25l4.5 2.67-.75 1.23L11 13V7z"/></svg>��������������mkdocs-material-9.6.4/material/templates/.icons/material/progress-close.svg�������������������������0000664�0000000�0000000�00000001060�14753064456�0027074�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2.03v2.02c4.39.54 7.5 4.53 6.96 8.92-.46 3.64-3.32 6.53-6.96 6.96v2c5.5-.55 9.5-5.43 8.95-10.93-.45-4.75-4.22-8.5-8.95-8.97m-2 .03c-1.95.19-3.81.94-5.33 2.2L7.1 5.74c1.12-.9 2.47-1.48 3.9-1.68zM4.26 5.67A9.9 9.9 0 0 0 2.05 11h2c.19-1.42.75-2.77 1.64-3.9zM2.06 13c.2 1.96.97 3.81 2.21 5.33l1.42-1.43A8 8 0 0 1 4.06 13zm5.04 5.37-1.43 1.37A10 10 0 0 0 11 22v-2a8 8 0 0 1-3.9-1.63M14.59 8 12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/progress-download.svg����������������������0000664�0000000�0000000�00000000771�14753064456�0027606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2.03c4.73.47 8.5 4.22 8.95 8.97A9.976 9.976 0 0 1 13 21.93v-2c3.64-.43 6.5-3.32 6.96-6.96A7.994 7.994 0 0 0 13 4.05V2.03m-2 .03v2c-1.43.2-2.78.78-3.9 1.68L5.67 4.26A9.83 9.83 0 0 1 11 2.06M4.26 5.67 5.69 7.1A8 8 0 0 0 4.05 11h-2c.2-1.96.95-3.81 2.21-5.33M2.06 13h2c.18 1.42.75 2.77 1.63 3.9l-1.42 1.43A10.04 10.04 0 0 1 2.06 13m5.04 5.37c1.13.88 2.48 1.45 3.9 1.63v2c-1.96-.21-3.82-1-5.33-2.26zM12 16.5 7.5 12H11V8h2v4h3.5z"/></svg>�������mkdocs-material-9.6.4/material/templates/.icons/material/progress-helper.svg������������������������0000664�0000000�0000000�00000000675�14753064456�0027261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2v2c4.39.54 7.5 4.53 6.96 8.92A8.014 8.014 0 0 1 13 19.88v2c5.5-.6 9.45-5.54 8.85-11.03C21.33 6.19 17.66 2.5 13 2m-2 0c-1.96.18-3.81.95-5.33 2.2L7.1 5.74c1.12-.9 2.47-1.48 3.9-1.68zM4.26 5.67A9.8 9.8 0 0 0 2.05 11h2c.19-1.42.75-2.77 1.64-3.9zM2.06 13c.2 1.96.97 3.81 2.21 5.33l1.42-1.43A8 8 0 0 1 4.06 13zm5 5.37-1.39 1.37A10 10 0 0 0 11 22v-2a8 8 0 0 1-3.9-1.63z"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/progress-pencil.svg������������������������0000664�0000000�0000000�00000001100�14753064456�0027234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.84 10.2-1.01 1.01-2.07-2.03 1.01-1.02c.2-.21.54-.22.78 0l1.29 1.25c.21.21.22.55 0 .79M8 13.91l4.17-4.19 2.07 2.08-4.16 4.2H8zM13 2v2c4.39.54 7.5 4.53 6.96 8.92A8.014 8.014 0 0 1 13 19.88v2c5.5-.6 9.45-5.54 8.85-11.03C21.33 6.19 17.66 2.5 13 2m-2 0c-1.96.18-3.81.95-5.33 2.2L7.1 5.74c1.12-.9 2.47-1.48 3.9-1.68v-2M4.26 5.67A9.8 9.8 0 0 0 2.05 11h2c.19-1.42.75-2.77 1.64-3.9zM2.06 13c.2 1.96.97 3.81 2.21 5.33l1.42-1.43A8 8 0 0 1 4.06 13zm5 5.37-1.39 1.37A10 10 0 0 0 11 22v-2a8 8 0 0 1-3.9-1.63z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/progress-question.svg����������������������0000664�0000000�0000000�00000001100�14753064456�0027631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 18h-2v-2h2zm0-3h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5m9-3c0 5.18-3.95 9.45-9 9.95v-2.01c3.95-.49 7-3.86 7-7.94s-3.05-7.45-7-7.94V2.05c5.05.5 9 4.77 9 9.95M11 2.05v2.01c-1.46.18-2.8.76-3.91 1.62L5.67 4.26C7.15 3.05 9 2.25 11 2.05M4.06 11H2.05c.2-2 1-3.85 2.21-5.33L5.68 7.1A7.9 7.9 0 0 0 4.06 11M11 19.94v2.01c-2-.2-3.85-.99-5.33-2.21l1.42-1.42c1.11.86 2.45 1.44 3.91 1.62M2.05 13h2.01c.18 1.46.76 2.8 1.62 3.91l-1.42 1.42A10 10 0 0 1 2.05 13"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/progress-star-four-points.svg��������������0000664�0000000�0000000�00000001012�14753064456�0031220�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 4V2c4.66.5 8.33 4.19 8.85 8.85.6 5.49-3.35 10.43-8.85 11.03v-2c3.64-.45 6.5-3.32 6.96-6.96A7.994 7.994 0 0 0 13 4m-7.33.2A9.8 9.8 0 0 1 11 2v2.06c-1.43.2-2.78.78-3.9 1.68zM2.05 11a9.8 9.8 0 0 1 2.21-5.33L5.69 7.1A8 8 0 0 0 4.05 11zm2.22 7.33A10.04 10.04 0 0 1 2.06 13h2c.18 1.42.75 2.77 1.63 3.9zm1.4 1.41 1.39-1.37h.04c1.13.88 2.48 1.45 3.9 1.63v2c-1.96-.21-3.82-1-5.33-2.26M12 17l1.56-3.42L17 12l-3.44-1.56L12 7l-1.57 3.44L7 12l3.43 1.58z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/progress-star.svg��������������������������0000664�0000000�0000000�00000001023�14753064456�0026737�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2v2c4.39.54 7.5 4.53 6.96 8.92A8.014 8.014 0 0 1 13 19.88v2c5.5-.6 9.45-5.54 8.85-11.03C21.33 6.19 17.66 2.5 13 2m-2 0c-1.96.18-3.81.95-5.33 2.2L7.1 5.74c1.12-.9 2.47-1.48 3.9-1.68v-2M4.26 5.67A9.8 9.8 0 0 0 2.05 11h2c.19-1.42.75-2.77 1.64-3.9zM2.06 13c.2 1.96.97 3.81 2.21 5.33l1.42-1.43A8 8 0 0 1 4.06 13zm5 5.37-1.39 1.37A10 10 0 0 0 11 22v-2a8 8 0 0 1-3.9-1.63zm1.52-1.57.92-3.89-3-2.58 3.95-.37L12 6.35 13.55 10l3.95.33-3 2.58.92 3.89L12 14.74z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/progress-tag.svg���������������������������0000664�0000000�0000000�00000001221�14753064456�0026541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 4V2c4.66.5 8.33 4.19 8.85 8.85.6 5.49-3.35 10.43-8.85 11.03v-2c3.64-.45 6.5-3.32 6.96-6.96A7.994 7.994 0 0 0 13 4m-7.33.2A9.8 9.8 0 0 1 11 2v2.06c-1.43.2-2.78.78-3.9 1.68zM2.05 11a9.8 9.8 0 0 1 2.21-5.33L5.69 7.1A8 8 0 0 0 4.05 11zm2.22 7.33A10.04 10.04 0 0 1 2.06 13h2c.18 1.42.75 2.77 1.63 3.9zm1.4 1.41 1.39-1.37h.04c1.13.88 2.48 1.45 3.9 1.63v2c-1.96-.21-3.82-1-5.33-2.26M11.6 8c.2 0 .4.1.6.2l3.6 3.6c.1.2.2.4.2.6 0 .3-.1.5-.2.6L13 15.8c-.2.1-.4.2-.6.2-.3 0-.5-.1-.6-.2l-3.6-3.6c-.1-.2-.2-.4-.2-.6V8.8c0-.4.4-.8.8-.8zM8.8 9.4c0 .3.3.6.6.6s.6-.3.6-.6-.3-.6-.6-.6-.6.3-.6.6"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/progress-upload.svg������������������������0000664�0000000�0000000�00000000771�14753064456�0027263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2.03c4.73.47 8.5 4.22 8.95 8.97A9.976 9.976 0 0 1 13 21.93v-2c3.64-.43 6.5-3.32 6.96-6.96A7.994 7.994 0 0 0 13 4.05V2.03m-2 .03v2c-1.43.2-2.78.78-3.9 1.68L5.67 4.26A9.83 9.83 0 0 1 11 2.06M4.26 5.67 5.69 7.1A8 8 0 0 0 4.05 11h-2c.2-1.96.95-3.81 2.21-5.33M2.06 13h2c.18 1.42.75 2.77 1.63 3.9l-1.42 1.43A10.04 10.04 0 0 1 2.06 13m5.04 5.37c1.13.88 2.48 1.45 3.9 1.63v2c-1.96-.21-3.82-1-5.33-2.26zM12 7.5 7.5 12H11v4h2v-4h3.5z"/></svg>�������mkdocs-material-9.6.4/material/templates/.icons/material/progress-wrench.svg������������������������0000664�0000000�0000000�00000001236�14753064456�0027262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2.03v2.02c4.39.54 7.5 4.53 6.96 8.92-.46 3.64-3.32 6.53-6.96 6.96v2c5.5-.55 9.5-5.43 8.95-10.93-.45-4.75-4.22-8.5-8.95-8.97m-2 .03c-1.95.19-3.81.94-5.33 2.2L7.1 5.74c1.12-.9 2.47-1.48 3.9-1.68zM4.26 5.67A9.9 9.9 0 0 0 2.05 11h2c.19-1.42.75-2.77 1.64-3.9zM2.06 13c.2 1.96.97 3.81 2.21 5.33l1.42-1.43A8 8 0 0 1 4.06 13zm5.04 5.37-1.43 1.37A10 10 0 0 0 11 22v-2a8 8 0 0 1-3.9-1.63m9.72-3.18-4.11-4.11c.41-1.04.18-2.26-.68-3.11-.9-.91-2.25-1.09-3.34-.59l1.94 1.94-1.35 1.36-1.99-1.95c-.54 1.09-.29 2.44.59 3.35.86.86 2.08 1.08 3.12.68l4.11 4.1c.18.19.45.19.63 0l1.04-1.03c.22-.18.22-.5.04-.64"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/projector-off.svg��������������������������0000664�0000000�0000000�00000001405�14753064456�0026707�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 9c-1.03 0-1.9.79-2 1.82L16.18 13c2.54-.24 2.37-4-.18-4m-1 5.35 3.95 3.96v-.01M7.64 7l5.01 5-5-5M20 7h-.85a5.49 5.49 0 0 0-6.31 0h-2.65l2.61 2.61c.98-2.27 3.93-2.83 5.7-1.08 1.72 1.74 1.16 4.69-1.11 5.67l2.79 2.8A2.01 2.01 0 0 0 22 15V9c0-1.1-.9-2-2-2m-4 2c-1.03 0-1.9.79-2 1.82L16.18 13c2.54-.24 2.37-4-.18-4m0 0c-1.03 0-1.9.79-2 1.82L16.18 13c2.54-.24 2.37-4-.18-4m6.25 12.61L2.53 1.89 1.26 3.16 5.1 7H4c-1.1 0-2 .9-2 2v6a2 2 0 0 0 2 2h1v1c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-1h6v1c0 .55.45 1 1 1h1.1l3.9 3.89 1.26-1.28M8 14H4v-1h4m0-1H4v-1h4m0-1H4V9h3.1l.9.9M2.54 1.89 7.64 7 2.53 1.89M7.65 7l5 5-5.01-5m11.31 11.3v.01L15 14.35M7.64 7 2.53 1.89h.01M12.65 12 7.64 7h.01m11.3 11.3v.01L15 14.35"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/projector-screen-off-outline.svg�����������0000664�0000000�0000000�00000000450�14753064456�0031640�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.84 22.73 1.27-1.27L2.39 1.73 1.11 3 5 6.89V14h6v2.59l-4.21 4.2 1.42 1.42 2.79-2.8V22h2v-2.59l2.79 2.8 1.42-1.42-4.21-4.2v-1.7zM7 12V8.89L10.11 12zm1.2-7-3-3H20c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1h-1v9h-1.8l-2-2H17V5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/projector-screen-off.svg�������������������0000664�0000000�0000000�00000000411�14753064456�0030160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 14.89v1.7l4.21 4.2-1.42 1.42-2.79-2.8V22h-2v-2.59l-2.79 2.8-1.42-1.42 4.21-4.2V14H5V6.89L1.11 3l1.28-1.27 19.72 19.73-1.27 1.27zm6-.89V5h1c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1H5.2l12 12z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/projector-screen-outline.svg���������������0000664�0000000�0000000�00000000377�14753064456�0031100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h1v9h6v2.59l-4.21 4.2 1.42 1.42 2.79-2.8V22h2v-2.59l2.79 2.8 1.42-1.42-4.21-4.2V14h6V5h1c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1m-3 10H7V5h10z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/projector-screen-variant-off-outline.svg���0000664�0000000�0000000�00000000366�14753064456�0033310�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3l3 3H4c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h1v9h11.11l4.73 4.73zM7 16V9h.11l7 7zm5.2-7-3-3H20c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1h-1v6.8l-2-2V9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/projector-screen-variant-off.svg�����������0000664�0000000�0000000�00000000341�14753064456�0031624�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.84 22.73 16.11 18H5V9H4c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h.11l-3-3 1.28-1.27 19.72 19.73zM19 9h1c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1H9.2l9.8 9.8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/projector-screen-variant-outline.svg�������0000664�0000000�0000000�00000000262�14753064456�0032533�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6H4c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h1v9h14V9h1c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1m-3 10H7V9h10z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/projector-screen-variant.svg���������������0000664�0000000�0000000�00000000243�14753064456�0031055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 18V9h1c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h1v9z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/projector-screen.svg�����������������������0000664�0000000�0000000�00000000347�14753064456�0027420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1h1v9h6v2.59l-4.21 4.2 1.42 1.42 2.79-2.8V22h2v-2.59l2.79 2.8 1.42-1.42-4.21-4.2V14h6V5h1a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/projector.svg������������������������������0000664�0000000�0000000�00000000730�14753064456�0026137�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 6c-1.13 0-2.23.35-3.16 1H4c-1.11 0-2 .89-2 2v6c0 1.11.89 2 2 2h1v1a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-1h6v1a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-1h1c1.11 0 2-.89 2-2V9c0-1.11-.89-2-2-2h-.85c-.92-.65-2.02-1-3.15-1m0 1.5a3.5 3.5 0 0 1 3.5 3.5 3.5 3.5 0 0 1-3.5 3.5 3.5 3.5 0 0 1-3.5-3.5A3.5 3.5 0 0 1 16 7.5M4 9h4v1H4zm12 0a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2M4 11h4v1H4zm0 2h4v1H4z"/></svg>����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/propane-tank-outline.svg�������������������0000664�0000000�0000000�00000000526�14753064456�0030207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 6.14V4c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v2.14c-1.72.45-3 2-3 3.86v8c0 2.21 1.79 4 4 4h8c2.21 0 4-1.79 4-4v-8c0-1.86-1.28-3.41-3-3.86M9 4h6v2h-2c0-.55-.45-1-1-1s-1 .45-1 1H9zM8 8h8c1.1 0 2 .9 2 2v3H6v-3c0-1.1.9-2 2-2m8 12H8c-1.1 0-2-.9-2-2v-3h12v3c0 1.1-.9 2-2 2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/propane-tank.svg���������������������������0000664�0000000�0000000�00000000407�14753064456�0026530�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 15v3c0 2.21 1.79 4 4 4h8c2.21 0 4-1.79 4-4v-3zm16-2v-3c0-1.86-1.28-3.41-3-3.86V4c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v2.14c-1.72.45-3 2-3 3.86v3zM9 4h6v2h-2c0-.55-.45-1-1-1s-1 .45-1 1H9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/protocol.svg�������������������������������0000664�0000000�0000000�00000000435�14753064456�0025773�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 20h-4l4-16h4m-6 0h-4L8 20h4M2 16.5A2.5 2.5 0 0 0 4.5 19 2.5 2.5 0 0 0 7 16.5 2.5 2.5 0 0 0 4.5 14 2.5 2.5 0 0 0 2 16.5m0-7A2.5 2.5 0 0 0 4.5 12 2.5 2.5 0 0 0 7 9.5 2.5 2.5 0 0 0 4.5 7 2.5 2.5 0 0 0 2 9.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/publish-off.svg����������������������������0000664�0000000�0000000�00000000260�14753064456�0026344�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.8 22.7 15 16.9V20H9v-6H5l3.6-3.6L1.1 3l1.3-1.3 19.7 19.7zM19 6V4H7.2l2 2zm-1.8 8H19l-7-7-.9.9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/publish.svg��������������������������������0000664�0000000�0000000�00000000160�14753064456�0025573�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 4v2h14V4zm0 10h4v6h6v-6h4l-7-7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pulse.svg����������������������������������0000664�0000000�0000000�00000000255�14753064456�0025262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 13h2.79l4.31-8.21 1.18 8.96 3.22-4.09L17.83 13H21v2h-4l-2.33-2.33-4.75 6.06-.98-7.42L7 15H3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pump-off.svg�������������������������������0000664�0000000�0000000�00000000713�14753064456�0025662�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l3.7 3.7C3.7 8.2 3 10 3 12c0 1 .2 2.1.5 3H2v6h10c2 0 3.8-.7 5.3-1.8l3.5 3.5zm-16.2-6c-.6-1-.9-2.2-.9-3.5 0-1.4.5-2.8 1.2-3.9l3 3c-.1.2-.2.6-.2.9 0 .5.2 1.1.4 1.5zM12 19h-.7l.4-4h.3c.3 0 .6-.1.9-.2l3 3c-1.1.7-2.5 1.2-3.9 1.2m0-10.2L7.4 4.2C8.8 3.5 10.3 3 12 3h10v6h-1.5c.3.9.5 2 .5 3 0 1.7-.5 3.2-1.2 4.6L12.2 9c1.1.1 2.1.8 2.5 1.7L18.3 9c-1-2.3-3.5-4-6.3-4z"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pump.svg�����������������������������������0000664�0000000�0000000�00000000721�14753064456�0025111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 21v-6h1.5a9.3 9.3 0 0 1-.5-3 9 9 0 0 1 9-9h10v6h-1.5c.32.94.5 1.95.5 3a9 9 0 0 1-9 9zm3-9c0 1.28.34 2.47.94 3.5l3.46-2c-.25-.44-.4-.95-.4-1.5 0-.65.21-1.25.56-1.74L6.3 7.93C5.5 9.08 5 10.5 5 12m7 7c2.59 0 4.85-1.41 6.06-3.5l-3.46-2c-.52.9-1.49 1.5-2.6 1.5h-.29l-.38 3.97zm0-10c1.21 0 2.26.72 2.73 1.76l3.64-1.66A6.99 6.99 0 0 0 12 5zm0 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1"/></svg>�����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pumpkin.svg��������������������������������0000664�0000000�0000000�00000000563�14753064456�0025617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 6c.97 0 1.87.5 2.61 1.38.55-.59 1.2-1.02 1.89-1.23V4a2 2 0 0 1 2-2h2v2h-2v2.15c.69.21 1.34.64 1.89 1.23C15.63 6.5 16.53 6 17.5 6 20 6 22 9.36 22 13.5S20 21 17.5 21c-.97 0-1.87-.5-2.61-1.38C14.08 20.5 13.08 21 12 21s-2.08-.5-2.89-1.38C8.37 20.5 7.47 21 6.5 21 4 21 2 17.64 2 13.5S4 6 6.5 6"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/purse-outline.svg��������������������������0000664�0000000�0000000�00000000362�14753064456�0026744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19 11 1 8H4l1-8zm-5-8h-4L8 5v4H4.7A1.65 1.65 0 0 0 3 10.5l-1 8.6A1.74 1.74 0 0 0 3.7 21h16.6a1.74 1.74 0 0 0 1.7-1.9l-1-8.6A1.65 1.65 0 0 0 19.3 9H16V5zm-4 6V5h4v4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/purse.svg����������������������������������0000664�0000000�0000000�00000000350�14753064456�0025264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22 19.1-1-8.6A1.65 1.65 0 0 0 19.3 9H16V5l-2-2h-4L8 5v4H4.7A1.65 1.65 0 0 0 3 10.5l-1 8.6A1.74 1.74 0 0 0 3.7 21h16.6a1.74 1.74 0 0 0 1.7-1.9M10 5h4v4h-4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/puzzle-check-outline.svg�������������������0000664�0000000�0000000�00000001076�14753064456�0030215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.5 17-5 5-3.5-3.5 1.5-1.5 2 2 3.5-3.5zM22 13.5v.3c-.63-.36-1.33-.61-2.06-.73-.19-.62-.76-1.07-1.44-1.07H17V7h-5V5.5c0-.83-.67-1.5-1.5-1.5S9 4.67 9 5.5V7H4v2.12c1.76.68 3 2.38 3 4.38s-1.25 3.7-3 4.38V20h2.12a4.7 4.7 0 0 1 4.38-3c.97 0 1.87.3 2.62.8L13 19c0 1.09.29 2.12.8 3h-.6v-.3c0-1.49-1.2-2.7-2.7-2.7s-2.7 1.21-2.7 2.7v.3H4c-1.1 0-2-.9-2-2v-3.8h.3C3.79 16.2 5 15 5 13.5s-1.21-2.7-2.7-2.7H2V7c0-1.1.9-2 2-2h3.04c.24-1.7 1.7-3 3.46-3s3.22 1.3 3.46 3H17c1.1 0 2 .9 2 2v3.04c1.7.24 3 1.7 3 3.46"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/puzzle-check.svg���������������������������0000664�0000000�0000000�00000000642�14753064456�0026536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.5 17-5 5-3.5-3.5 1.5-1.5 2 2 3.5-3.5zm-3-6a2.5 2.5 0 0 1 2.5 2.5c0 .31-.06.61-.16.89C21.8 13.5 20.46 13 19 13c-3.31 0-6 2.69-6 6v.54c-.36-1.04-1.35-1.74-2.5-1.74-1.5 0-2.7 1.2-2.7 2.7V22H4c-1.1 0-2-.9-2-2v-3.8h1.5c1.5 0 2.7-1.2 2.7-2.7S5 10.8 3.5 10.8H2V7a2 2 0 0 1 2-2h4V3.5C8 2.12 9.12.998 10.5.998S13 2.12 13 3.5V5h4a2 2 0 0 1 2 2v4z"/></svg>����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/puzzle-edit-outline.svg��������������������0000664�0000000�0000000�00000001157�14753064456�0030065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.04 12.13c-.14 0-.28.06-.39.17l-1 1 2.05 2.05 1-1c.22-.21.22-.56 0-.77l-1.28-1.28a.53.53 0 0 0-.38-.17m-1.97 1.75L13 19.94V22h2.06l6.06-6.07zm-8.02 5.18c-.18-.06-.36-.06-.55-.06-1.5 0-2.7 1.21-2.7 2.7v.3H4a2 2 0 0 1-2-2v-3.8h.3C3.79 16.2 5 15 5 13.5s-1.21-2.7-2.7-2.7H2V7c0-1.1.9-2 2-2h3.04c.24-1.7 1.7-3 3.46-3s3.22 1.3 3.46 3H17a2 2 0 0 1 2 2v3.04c.36.05.69.17 1 .32-.27.14-.54.3-.76.53L18.12 12H17V7h-5V5.5c0-.83-.67-1.5-1.5-1.5S9 4.67 9 5.5V7H4v2.12c1.76.68 3 2.38 3 4.38s-1.25 3.7-3 4.38V20h2.12a4.7 4.7 0 0 1 4.38-3c.76 0 1.5.18 2.11.5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/puzzle-edit.svg����������������������������0000664�0000000�0000000�00000000637�14753064456�0026412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.04 12.13c-.14 0-.28.06-.39.17l-1 1 2.05 2.05 1-1c.22-.21.22-.56 0-.77l-1.28-1.28a.53.53 0 0 0-.38-.17m-1.97 1.75L13 19.94V22h2.06l6.06-6.07zM19 11.12l-7.09 7.08c-.41-.25-.91-.4-1.41-.4-1.5 0-2.7 1.2-2.7 2.7V22H4a2 2 0 0 1-2-2v-3.8h1.5c1.5 0 2.7-1.2 2.7-2.7S5 10.8 3.5 10.8H2V7c0-1.1.9-2 2-2h4V3.5a2.5 2.5 0 0 1 5 0V5h4a2 2 0 0 1 2 2z"/></svg>�������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/puzzle-heart-outline.svg�������������������0000664�0000000�0000000�00000001171�14753064456�0030237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.2 22v-.3c0-1.49-1.2-2.7-2.7-2.7s-2.7 1.21-2.7 2.7v.3H4a2 2 0 0 1-2-2v-3.8h.3C3.79 16.2 5 15 5 13.5s-1.21-2.7-2.7-2.7H2V7c0-1.1.9-2 2-2h3.04c.24-1.7 1.7-3 3.46-3s3.22 1.3 3.46 3H17a2 2 0 0 1 2 2v3.04c1.45.21 2.61 1.3 2.91 2.72A5.95 5.95 0 0 0 19 12h-2V7h-5V5.5c0-.83-.67-1.5-1.5-1.5S9 4.67 9 5.5V7H4v2.12c1.76.68 3 2.38 3 4.38s-1.25 3.7-3 4.38V20h2.12a4.7 4.7 0 0 1 4.38-3c.93 0 1.79.28 2.5.74V18c0 1.54.58 2.94 1.54 4zm5.8.3.6-.5c2-1.9 3.4-3.1 3.4-4.6 0-1.3-1-2.2-2.2-2.2-.7 0-1.4.3-1.8.8-.4-.5-1.1-.8-1.8-.8-1.2 0-2.2 1-2.2 2.2 0 1.5 1.4 2.7 3.4 4.6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/puzzle-heart.svg���������������������������0000664�0000000�0000000�00000000761�14753064456�0026566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19 22.3-.6-.5c-2-1.9-3.4-3.1-3.4-4.6 0-1.2 1-2.2 2.2-2.2.7 0 1.4.3 1.8.8.4-.5 1.1-.8 1.8-.8 1.2 0 2.2.9 2.2 2.2 0 1.5-1.4 2.7-3.4 4.6zM20.5 11H19V7a2 2 0 0 0-2-2h-4V3.5a2.5 2.5 0 0 0-5 0V5H4c-1.1 0-2 .9-2 2v3.8h1.5c1.5 0 2.7 1.2 2.7 2.7S5 16.2 3.5 16.2H2V20a2 2 0 0 0 2 2h3.8v-1.5c0-1.5 1.2-2.7 2.7-2.7.94 0 1.77.47 2.25 1.2h.34c-.05-.33-.09-.66-.09-1 0-3.31 2.69-6 6-6 1.54 0 2.94.58 4 1.53v-.03a2.5 2.5 0 0 0-2.5-2.5"/></svg>���������������mkdocs-material-9.6.4/material/templates/.icons/material/puzzle-minus-outline.svg�������������������0000664�0000000�0000000�00000001054�14753064456�0030267�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.2 22v-.3c0-1.49-1.2-2.7-2.7-2.7s-2.7 1.21-2.7 2.7v.3H4a2 2 0 0 1-2-2v-3.8h.3C3.79 16.2 5 15 5 13.5s-1.21-2.7-2.7-2.7H2V7c0-1.1.9-2 2-2h3.04c.24-1.7 1.7-3 3.46-3s3.22 1.3 3.46 3H17a2 2 0 0 1 2 2v3.04c1.7.24 3 1.7 3 3.46 0 .1 0 .2-.03.29-.62-.35-1.3-.59-2.04-.71-.18-.62-.75-1.08-1.43-1.08H17V7h-5V5.5c0-.83-.67-1.5-1.5-1.5S9 4.67 9 5.5V7H4v2.12c1.76.68 3 2.38 3 4.38s-1.25 3.7-3 4.38V20h2.12a4.7 4.7 0 0 1 4.38-3c.97 0 1.87.3 2.62.81a5.956 5.956 0 0 0 .69 4.19zm1.8-4v2h8v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/puzzle-minus.svg���������������������������0000664�0000000�0000000�00000000573�14753064456�0026617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.04 19.61a2.68 2.68 0 0 0-2.54-1.81c-1.5 0-2.7 1.2-2.7 2.7V22H4a2 2 0 0 1-2-2v-3.8h1.5c1.5 0 2.7-1.2 2.7-2.7S5 10.8 3.5 10.8H2V7c0-1.1.9-2 2-2h4V3.5a2.5 2.5 0 0 1 5 0V5h4a2 2 0 0 1 2 2v4h1.5a2.5 2.5 0 0 1 2.5 2.5c0 .32-.06.62-.17.89A6 6 0 0 0 19 13c-3.31 0-6 2.69-6 6 0 .2 0 .41.04.61M15 18v2h8v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/puzzle-outline.svg�������������������������0000664�0000000�0000000�00000001056�14753064456�0027140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 13.5c0 1.76-1.3 3.22-3 3.46V20a2 2 0 0 1-2 2h-3.8v-.3a2.7 2.7 0 0 0-2.7-2.7c-1.5 0-2.7 1.21-2.7 2.7v.3H4a2 2 0 0 1-2-2v-3.8h.3C3.79 16.2 5 15 5 13.5s-1.21-2.7-2.7-2.7H2V7a2 2 0 0 1 2-2h3.04c.24-1.7 1.7-3 3.46-3s3.22 1.3 3.46 3H17a2 2 0 0 1 2 2v3.04c1.7.24 3 1.7 3 3.46M17 15h1.5a1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5H17V7h-5V5.5A1.5 1.5 0 0 0 10.5 4 1.5 1.5 0 0 0 9 5.5V7H4v2.12c1.76.68 3 2.38 3 4.38s-1.25 3.7-3 4.38V20h2.12a4.7 4.7 0 0 1 4.38-3c2 0 3.7 1.25 4.38 3H17z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/puzzle-plus-outline.svg��������������������0000664�0000000�0000000�00000001100�14753064456�0030107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.2 22v-.3c0-1.49-1.2-2.7-2.7-2.7s-2.7 1.21-2.7 2.7v.3H4a2 2 0 0 1-2-2v-3.8h.3C3.79 16.2 5 15 5 13.5s-1.21-2.7-2.7-2.7H2V7c0-1.1.9-2 2-2h3.04c.24-1.7 1.7-3 3.46-3s3.22 1.3 3.46 3H17a2 2 0 0 1 2 2v3.04c1.7.24 3 1.7 3 3.46 0 .1 0 .2-.03.29-.62-.35-1.3-.59-2.04-.71-.18-.62-.75-1.08-1.43-1.08H17V7h-5V5.5c0-.83-.67-1.5-1.5-1.5S9 4.67 9 5.5V7H4v2.12c1.76.68 3 2.38 3 4.38s-1.25 3.7-3 4.38V20h2.12a4.7 4.7 0 0 1 4.38-3c.97 0 1.87.3 2.62.81a5.956 5.956 0 0 0 .69 4.19zm4.8-7v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/puzzle-plus.svg����������������������������0000664�0000000�0000000�00000000617�14753064456�0026446�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.04 19.61a2.68 2.68 0 0 0-2.54-1.81c-1.5 0-2.7 1.2-2.7 2.7V22H4a2 2 0 0 1-2-2v-3.8h1.5c1.5 0 2.7-1.2 2.7-2.7S5 10.8 3.5 10.8H2V7c0-1.1.9-2 2-2h4V3.5a2.5 2.5 0 0 1 5 0V5h4a2 2 0 0 1 2 2v4h1.5a2.5 2.5 0 0 1 2.5 2.5c0 .32-.06.62-.17.89A6 6 0 0 0 19 13c-3.31 0-6 2.69-6 6 0 .2 0 .41.04.61M18 15v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>�����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/puzzle-remove-outline.svg������������������0000664�0000000�0000000�00000001225�14753064456�0030431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.2 22v-.3c0-1.49-1.2-2.7-2.7-2.7s-2.7 1.21-2.7 2.7v.3H4a2 2 0 0 1-2-2v-3.8h.3C3.79 16.2 5 15 5 13.5s-1.21-2.7-2.7-2.7H2V7c0-1.1.9-2 2-2h3.04c.24-1.7 1.7-3 3.46-3s3.22 1.3 3.46 3H17a2 2 0 0 1 2 2v3.04c1.7.24 3 1.7 3 3.46 0 .1 0 .2-.03.29-.62-.35-1.3-.59-2.04-.71-.18-.62-.75-1.08-1.43-1.08H17V7h-5V5.5c0-.83-.67-1.5-1.5-1.5S9 4.67 9 5.5V7H4v2.12c1.76.68 3 2.38 3 4.38s-1.25 3.7-3 4.38V20h2.12a4.7 4.7 0 0 1 4.38-3c.97 0 1.87.3 2.62.81a5.956 5.956 0 0 0 .69 4.19zm7.92-6.54L19 17.59l-2.12-2.13-1.41 1.42L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19l2.13-2.12z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/puzzle-remove.svg��������������������������0000664�0000000�0000000�00000000744�14753064456�0026761�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.04 19.61a2.68 2.68 0 0 0-2.54-1.81c-1.5 0-2.7 1.2-2.7 2.7V22H4a2 2 0 0 1-2-2v-3.8h1.5c1.5 0 2.7-1.2 2.7-2.7S5 10.8 3.5 10.8H2V7c0-1.1.9-2 2-2h4V3.5a2.5 2.5 0 0 1 5 0V5h4a2 2 0 0 1 2 2v4h1.5a2.5 2.5 0 0 1 2.5 2.5c0 .32-.06.62-.17.89A6 6 0 0 0 19 13c-3.31 0-6 2.69-6 6 0 .2 0 .41.04.61m8.08-4.15L19 17.59l-2.12-2.13-1.41 1.42L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19l2.13-2.12z"/></svg>����������������������������mkdocs-material-9.6.4/material/templates/.icons/material/puzzle-star-outline.svg��������������������0000664�0000000�0000000�00000001112�14753064456�0030100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.2 22v-.3c0-1.49-1.2-2.7-2.7-2.7s-2.7 1.21-2.7 2.7v.3H4a2 2 0 0 1-2-2v-3.8h.3C3.79 16.2 5 15 5 13.5s-1.21-2.7-2.7-2.7H2V7c0-1.1.9-2 2-2h3.04c.24-1.7 1.7-3 3.46-3s3.22 1.3 3.46 3H17a2 2 0 0 1 2 2v3.04c1.45.21 2.61 1.3 2.91 2.72A5.95 5.95 0 0 0 19 12h-2V7h-5V5.5c0-.83-.67-1.5-1.5-1.5S9 4.67 9 5.5V7H4v2.12c1.76.68 3 2.38 3 4.38s-1.25 3.7-3 4.38V20h2.12a4.7 4.7 0 0 1 4.38-3c.93 0 1.79.28 2.5.74V18c0 1.54.58 2.94 1.54 4zm5.8-1.91-2.5 1.49.68-2.81L15 16.89l2.87-.25L19 14l1.11 2.64 2.89.25-2.2 1.88.65 2.81z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/puzzle-star.svg����������������������������0000664�0000000�0000000�00000000675�14753064456�0026440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19 20.09 2.45 1.49-.65-2.81 2.2-1.88-2.89-.25L19 14l-1.13 2.64-2.87.25 2.18 1.88-.68 2.81zm4-6.59v.03A5.97 5.97 0 0 0 19 12c-3.31 0-6 2.69-6 6 0 .34.04.67.09 1h-.34a2.68 2.68 0 0 0-2.25-1.2c-1.5 0-2.7 1.2-2.7 2.7V22H4a2 2 0 0 1-2-2v-3.8h1.5c1.5 0 2.7-1.2 2.7-2.7S5 10.8 3.5 10.8H2V7c0-1.1.9-2 2-2h4V3.5a2.5 2.5 0 0 1 5 0V5h4a2 2 0 0 1 2 2v4h1.5a2.5 2.5 0 0 1 2.5 2.5"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/puzzle.svg���������������������������������0000664�0000000�0000000�00000000542�14753064456�0025462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.5 11H19V7a2 2 0 0 0-2-2h-4V3.5A2.5 2.5 0 0 0 10.5 1 2.5 2.5 0 0 0 8 3.5V5H4a2 2 0 0 0-2 2v3.8h1.5c1.5 0 2.7 1.2 2.7 2.7S5 16.2 3.5 16.2H2V20a2 2 0 0 0 2 2h3.8v-1.5c0-1.5 1.2-2.7 2.7-2.7s2.7 1.2 2.7 2.7V22H17a2 2 0 0 0 2-2v-4h1.5a2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pyramid-off.svg����������������������������0000664�0000000�0000000�00000000637�14753064456�0026353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 7.3 9.05 5.85l2.1-3.38a1.003 1.003 0 0 1 1.7 0l9 14.49c.28.44.15 1.04-.35 1.36l-3.09-3.11L13 6.5v3.3l-2-2V6.5zm11.61 14.16-1.27 1.27-2.95-2.95-5.53 2.15c-.11.07-.24.07-.36.07s-.25 0-.36-.07l-9-3.5c-.64-.25-.8-.98-.49-1.47L7.1 9 1.11 3l1.28-1.27zM5.42 15.5 11 13.32v-.43l-2.45-2.45zm10.93 2.74-2.41-2.41-1.94-.76-6.24 2.43L12 19.93z"/></svg>�������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/pyramid.svg��������������������������������0000664�0000000�0000000�00000000457�14753064456�0025603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.85 16.96-9-14.49a1.003 1.003 0 0 0-1.7 0l-9 14.49c-.31.49-.15 1.22.49 1.47l9 3.5c.11.07.24.07.36.07s.25 0 .36-.07l9-3.5c.64-.25.8-.98.49-1.47M11 6.5v6.82L5.42 15.5zm1 13.43L5.76 17.5 12 15.07l6.24 2.43zm1-6.61V6.5l5.58 9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/qi.svg�������������������������������������0000664�0000000�0000000�00000001047�14753064456�0024543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.09 6.56v8.08c0 .08-.09.15-.15.15-2.32 0-4.19-1.88-4.19-4.19 0-2.32 1.87-4.2 4.19-4.2.06 0 .15.07.15.16m0 11.3v2.43A2.666 2.666 0 0 0 14.5 23c.16 0 .28-.11.29-.27V4.47a.415.415 0 0 0-.29-.38c-3.58-1.42-7.64.35-9.06 3.94-1.44 3.6.35 7.66 3.94 9.08.78.31 1.62.47 2.43.49.14-.01.26.11.27.27M16.19 5.5v10.22c0 .28 0 .48.27.28 2.96-2.5 3.35-6.91.87-9.87-.26-.32-.56-.63-.87-.87-.27-.21-.27 0-.27.27m-1.4-3.1c0-.77.63-1.4 1.4-1.4s1.4.63 1.4 1.4-.63 1.4-1.4 1.4-1.4-.63-1.4-1.4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/qqchat.svg���������������������������������0000664�0000000�0000000�00000001066�14753064456�0025414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.18 13.54c.58-1.38 1.39-2.4 1.99-2.62-.01-.8.14-1.3.39-1.7 0-.03-.06-.36.16-.77C5.87 4.85 8.21 2 12 2s6.13 2.85 6.28 6.45c.22.41.16.74.16.77.25.4.4.9.39 1.7.6.22 1.41 1.24 1.99 2.63.75 1.76.87 3.45.27 3.75-.41.2-1.06-.3-1.67-1.18-.24.98-.84 1.88-1.69 2.59.9.33 1.48.87 1.48 1.48 0 1-1.58 1.81-3.52 1.81-1.76 0-3.19-.66-3.48-1.5h-.42c-.29.84-1.72 1.5-3.48 1.5-1.94 0-3.52-.81-3.52-1.81 0-.61.58-1.15 1.48-1.48-.85-.71-1.45-1.61-1.69-2.59-.61.88-1.26 1.38-1.67 1.18-.6-.3-.48-1.99.27-3.76"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/qrcode-edit.svg����������������������������0000664�0000000�0000000�00000000535�14753064456�0026333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 5h2v2H5zM1 1h10v10H1zm2 2v6h6V3zm2 14h2v2H5zm-4-4h10v10H1zm2 2v6h6v-6zm10-2h4v2h2v-2h4v2h-4v2h4v6h-4v-2h-4v2h-2v-2h2v-2h-2zm8 8v-2h-2v2zm-2-4h-2v-2h-2v4h4zm3.7-13.65-1 1-2.05-2 1-1c.2-.21.54-.22.77 0l1.28 1.23c.21.2.22.54 0 .77M13 8.94l6.07-6.06 2.05 2.05L15.06 11H13z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/qrcode-minus.svg���������������������������0000664�0000000�0000000�00000000370�14753064456�0026536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 5h2v2H5zM1 1h10v10H1zm2 2v6h6V3zm2 14h2v2H5zm-4-4h10v10H1zm2 2v6h6v-6zm10-2h4v2h2v-2h4v2h-4v2h4v6h-4v-2h-4v2h-2v-2h2v-2h-2zm8 8v-2h-2v2zm-2-4h-2v-2h-2v4h4zM14 5v2h8V5Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/qrcode-plus.svg����������������������������0000664�0000000�0000000�00000000412�14753064456�0026363�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 5h2v2H5zM1 1h10v10H1zm2 2v6h6V3zm2 14h2v2H5zm-4-4h10v10H1zm2 2v6h6v-6zm10-2h4v2h2v-2h4v2h-4v2h4v6h-4v-2h-4v2h-2v-2h2v-2h-2zm8 8v-2h-2v2zm-2-4h-2v-2h-2v4h4zM17 2v3h-3v2h3v3h2V7h3V5h-3V2Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/qrcode-remove.svg��������������������������0000664�0000000�0000000�00000000540�14753064456�0026677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 5h2v2H5zM1 1h10v10H1zm2 2v6h6V3zm2 14h2v2H5zm-4-4h10v10H1zm2 2v6h6v-6zm10-2h4v2h2v-2h4v2h-4v2h4v6h-4v-2h-4v2h-2v-2h2v-2h-2zm8 8v-2h-2v2zm-2-4h-2v-2h-2v4h4zM15.17 1.76l-1.41 1.41L16.59 6l-2.83 2.83 1.41 1.41L18 7.41l2.83 2.83 1.41-1.41L19.41 6l2.83-2.83-1.41-1.41L18 4.59z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/qrcode-scan.svg����������������������������0000664�0000000�0000000�00000000611�14753064456�0026325�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4h6v6H4zm16 0v6h-6V4zm-6 11h2v-2h-2v-2h2v2h2v-2h2v2h-2v2h2v3h-2v2h-2v-2h-3v2h-2v-4h3zm2 0v3h2v-3zM4 20v-6h6v6zM6 6v2h2V6zm10 0v2h2V6zM6 16v2h2v-2zm-2-5h2v2H4zm5 0h4v4h-2v-2H9zm2-5h2v4h-2zM2 2v4H0V2a2 2 0 0 1 2-2h4v2zm20-2a2 2 0 0 1 2 2v4h-2V2h-4V0zM2 18v4h4v2H2a2 2 0 0 1-2-2v-4zm20 4v-4h2v4a2 2 0 0 1-2 2h-4v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/qrcode.svg���������������������������������0000664�0000000�0000000�00000000411�14753064456�0025401�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 11h2v2H3zm8-6h2v4h-2zm-2 6h4v4h-2v-2H9zm6 0h2v2h2v-2h2v2h-2v2h2v4h-2v2h-2v-2h-4v2h-2v-4h4v-2h2v-2h-2zm4 8v-4h-2v4zM15 3h6v6h-6zm2 2v2h2V5zM3 3h6v6H3zm2 2v2h2V5zM3 15h6v6H3zm2 2v2h2v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/quadcopter.svg�����������������������������0000664�0000000�0000000�00000002641�14753064456�0026302�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.5 1C8 1 10 3 10 5.5c0 .88-.25 1.7-.69 2.4l.1.1h5.18l.1-.1c-.44-.7-.69-1.52-.69-2.4C14 3 16 1 18.5 1S23 3 23 5.5 21 10 18.5 10c-.88 0-1.7-.25-2.4-.69l-1.1 1.1v3.18l1.1 1.1c.7-.44 1.52-.69 2.4-.69 2.5 0 4.5 2 4.5 4.5S21 23 18.5 23 14 21 14 18.5c0-.88.25-1.7.69-2.4l-.1-.1H9.41l-.1.1c.44.7.69 1.52.69 2.4C10 21 8 23 5.5 23S1 21 1 18.5 3 14 5.5 14c.88 0 1.7.25 2.4.69l1.1-1.1v-3.18l-1.1-1.1c-.7.44-1.52.69-2.4.69C3 10 1 8 1 5.5S3 1 5.5 1m0 2A2.5 2.5 0 0 0 3 5.5 2.5 2.5 0 0 0 5.5 8 2.5 2.5 0 0 0 8 5.5 2.5 2.5 0 0 0 5.5 3m0 13A2.5 2.5 0 0 0 3 18.5 2.5 2.5 0 0 0 5.5 21 2.5 2.5 0 0 0 8 18.5 2.5 2.5 0 0 0 5.5 16m13-13A2.5 2.5 0 0 0 16 5.5 2.5 2.5 0 0 0 18.5 8 2.5 2.5 0 0 0 21 5.5 2.5 2.5 0 0 0 18.5 3m0 13a2.5 2.5 0 0 0-2.5 2.5 2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5M3.91 17.25l1.13.66c.13-.1.29-.16.46-.16a.75.75 0 0 1 .75.75l-.01.1 1.13.65-.28.5-1.13-.66c-.13.1-.29.16-.46.16a.75.75 0 0 1-.75-.75l.01-.1-1.13-.65zm-.28-11 1.13-.65-.01-.1a.75.75 0 0 1 .75-.75c.17 0 .33.06.46.16l1.13-.66.28.5-1.13.65.01.1a.75.75 0 0 1-.75.75c-.17 0-.33-.06-.46-.16l-1.13.66zm13.28-2 1.13.66c.13-.1.29-.16.46-.16a.75.75 0 0 1 .75.75l-.01.1 1.13.65-.28.5-1.13-.66c-.13.1-.29.16-.46.16a.75.75 0 0 1-.75-.75l.01-.1-1.13-.65zm-.28 15 1.12-.75a.75.75 0 0 1 .75-.75c.17 0 .33.06.46.16l1.13-.66.28.5-1.12.75a.75.75 0 0 1-.75.75c-.17 0-.33-.06-.46-.16l-1.13.66z"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/quality-high.svg���������������������������0000664�0000000�0000000�00000000445�14753064456�0026540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.5 13.5h2v-3h-2M18 14a1 1 0 0 1-1 1h-.75v1.5h-1.5V15H14a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1m-7 5H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11m8-5H5c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/quality-low.svg����������������������������0000664�0000000�0000000�00000000424�14753064456�0026417�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.5 13.5h2v-3h-2M18 14c0 .6-.4 1-1 1h-.75v1.5h-1.5V15H14c-.6 0-1-.4-1-1v-4c0-.6.4-1 1-1h3c.6 0 1 .4 1 1m1-6H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m-8 9.5V15H6V9h1.5v4.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/quality-medium.svg�������������������������0000664�0000000�0000000�00000000500�14753064456�0027071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 6v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2m-9 4c0-.5-.5-1-1-1H6.5c-.5 0-1 .5-1 1v5H7v-4.5h1V14h1.5v-3.5h1V15H12zm2.5-1a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h1v1.5h1.25V15h.75a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1zm.5 1.5h2v3h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/queue-first-in-last-out.svg����������������0000664�0000000�0000000�00000000215�14753064456�0030551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 6h12v2H6zm0 4.5h12v2H6zM6 15h12v2H6zm3 4h6l-3 3zM9 2h6l-3 3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/quora.svg����������������������������������0000664�0000000�0000000�00000001254�14753064456�0025261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.7 18.8c.5-.6.4-1.1.4-1.1h1.5s0 .4-.1.9c-.1.4-.2.7-.3 1-.2.7-1.2 1.5-1.2 1.5-1.1.9-2.3.8-2.3.8s-1.4.2-2.5-.5-2-2.2-2-2.2-4.4 1.2-7.8-1.7-3.2-6.4-3.2-6.7c0-.7.4-8.5 8.6-8.8 4.8-.2 7.4 2.8 8.4 5.2.7 1.7.7 3 .7 3.2s0 1.1-.2 2c-.1.9-.5 1.9-.8 2.4s-.7 1.2-1.2 1.7c-.5.6-1.1 1.1-1.2 1.2 0 0 1 1.2 1.6 1.4.2 0 1.1.3 1.6-.3m-7-1.5c.1-.1-.3-.6-.5-.9s.1.1-.7-1c-.3-.5-.7-.7-1.3-.8h-.7c-.5 0-.8.1-.9.1 0-.1-.2-.3-.3-.5s-.1-.5-.1-.5c0-.2 1.5-.9 3.2-.9 1.4 0 2.4.8 2.8 1.2.4.3.5.7.9 1 0 0 .1 0 .1.1.4.3.9-3 .8-5.2s-.2-3.3-1-4.4c-.7-1-2.2-1.8-3.6-1.8-.7 0-3 .1-4 1.8-1.2 2-1 5.6-1 5.6s-.3 3.2 1.4 4.9 3.4 1.4 4.2 1.4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rabbit-variant-outline.svg�����������������0000664�0000000�0000000�00000001727�14753064456�0030521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 14c-.24-.24-.44-.5-.65-.75C17.5 11.5 19 8.56 19 5c0-1.95-.74-3-2-3-1.54 0-3.96 2.06-5 5.97C10.96 4.06 8.54 2 7 2 5.74 2 5 3.05 5 5c0 3.56 1.5 6.5 2.65 8.25-.21.25-.41.51-.65.75-.25.25-2 1.39-2 3.5C5 20 7 22 9.5 22c1.5 0 2.5-.5 2.5-.5s1 .5 2.5.5c2.5 0 4.5-2 4.5-4.5 0-2.11-1.75-3.25-2-3.5m-.12-9.97c.06.17.12.47.12.97 0 2.84-1.11 5.24-2.07 6.78-.38-.28-.83-.48-1.4-.62.24-4.52 2.44-6.83 3.35-7.13M7 5c0-.5.06-.8.12-.97.91.3 3.11 2.61 3.38 7.13-.6.14-1.05.34-1.42.62C8.11 10.24 7 7.84 7 5m7.5 15c-1 0-1.8-.33-2.22-.56.42-.18.72-.71.72-.94 0-.28-.45-.5-1-.5s-1 .22-1 .5c0 .23.3.76.72.94-.42.23-1.22.56-2.22.56A2.5 2.5 0 0 1 7 17.5c0-.7.43-1.24 1-1.73.44-.36.61-.52 1.3-1.37.76-.95 1.09-1.4 2.7-1.4s1.94.45 2.7 1.4c.69.85.86 1.01 1.3 1.37.57.49 1 1.03 1 1.73a2.5 2.5 0 0 1-2.5 2.5m-.5-4c0 .41-.22.75-.5.75s-.5-.34-.5-.75.22-.75.5-.75.5.34.5.75m-3 0c0 .41-.22.75-.5.75s-.5-.34-.5-.75.22-.75.5-.75.5.34.5.75"/></svg>�����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rabbit-variant.svg�������������������������0000664�0000000�0000000�00000001407�14753064456�0027037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.84 14.5c-.26-.17-.62-.61-.79-.82C17.24 12 19 8.87 19 5c0-1.95-.74-3-2-3-1.54 0-3.96 2.06-5 5.97C10.96 4.06 8.54 2 7 2 5.74 2 5 3.05 5 5c0 3.87 1.76 7 2.95 8.68-.17.21-.53.65-.79.82-.5.43-1.66 1.39-1.66 3 0 2.21 1.79 4 4 4 1.55 0 2.5-.56 2.5-.56s.95.56 2.5.56c2.21 0 4-1.79 4-4 0-1.61-1.16-2.57-1.66-3m-7.49-2.3C8.34 10.7 7 8.12 7 5c0-.5.06-.8.12-.97.94.31 3.24 2.71 3.38 7.64-.47.12-.84.3-1.15.53m1.15 4.55c-.28 0-.5-.34-.5-.75s.22-.75.5-.75.5.34.5.75-.22.75-.5.75M12 19.5c-.55 0-1-.72-1-1s.45-.5 1-.5 1 .22 1 .5-.45 1-1 1m1.5-2.75c-.28 0-.5-.34-.5-.75s.22-.75.5-.75.5.34.5.75-.22.75-.5.75m0-5.08c.14-4.93 2.44-7.33 3.38-7.64.06.17.12.47.12.97 0 3.12-1.34 5.7-2.35 7.2-.31-.23-.68-.41-1.15-.53"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rabbit.svg���������������������������������0000664�0000000�0000000�00000001464�14753064456�0025400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.05 21-2.73-4.74c0-1.73-1.07-2.84-2.37-2.84-.9 0-1.68.5-2.08 1.24.33-.19.72-.29 1.13-.29 1.3 0 2.36 1.06 2.36 2.36 0 1.31-1.05 2.38-2.36 2.38h3.3V21H6.79c-.24 0-.49-.09-.67-.28a.95.95 0 0 1 0-1.34l.5-.5c-.34-.15-.62-.38-.9-.62-.22.5-.72.85-1.3.85a1.425 1.425 0 0 1 0-2.85l.47.08v-1.97a4.73 4.73 0 0 1 4.74-4.74h.02c2.12.01 3.77.84 3.77-.47 0-.93.2-1.3.54-1.82-.73-.34-1.56-.55-2.43-.55-.53 0-.95-.42-.95-.95 0-.43.28-.79.67-.91l-.67-.04c-.52 0-.95-.42-.95-.94 0-.53.43-.95.95-.95h.95c2.1 0 3.94 1.15 4.93 2.85l.28-.01c.71 0 1.37.23 1.91.61l.45.38c2.17 1.95 1.9 3.27 1.9 3.28 0 1.28-1.06 2.33-2.35 2.33l-.49-.05v.08c0 1.11-.48 2.1-1.23 2.8L20.24 21zm.11-13.26c-.53 0-.95.42-.95.94 0 .53.42.95.95.95.52 0 .95-.42.95-.95 0-.52-.43-.94-.95-.94"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/racing-helmet.svg��������������������������0000664�0000000�0000000�00000000601�14753064456�0026644�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.2 11.2c-.2 2.4.5 4.4 2 6.2S7.7 20 10.1 20h10c.5 0 1-.2 1.4-.6s.6-.9.6-1.4v-.8c0-.6-.1-1.3-.2-2.2h-8.2c-1 0-1.8-.4-2.5-1.1s-1.1-1.6-1.1-2.5c0-1.6.7-2.7 2.2-3.3L17.1 6c-1.7-1.2-3.7-1.9-6-2-2.2-.2-4.2.5-6 1.9S2.4 9 2.2 11.2m9.9.2c0 .4.2.8.5 1.1s.7.5 1.1.5h7.8c-.6-2.2-1.5-4-2.8-5.4l-5.6 2.3c-.7.2-1 .7-1 1.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/racquetball.svg����������������������������0000664�0000000�0000000�00000001135�14753064456�0026427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 16c1.4 0 2.5 1.1 2.5 2.5S19.9 21 18.5 21 16 19.9 16 18.5s1.1-2.5 2.5-2.5m-8-15C3 1 3 3.7 3 9.8c0 3.4 3.4 7.1 6 8.3V23h3v-4.9c2.6-1.2 6-4.9 6-8.3C18 3.6 18 1 10.5 1m4.9 3.2c.3.4.4 1 .5 1.8H15V3.8c.2.1.3.3.4.4m.6 5.6v.2h-1V7h1zM14 14h-3v-3h3zm-7 0v-3h3v3zM5 9.8V7h1v3H5zM7 7h3v3H7zm4-4c1.4 0 2.4.2 3 .3V6h-3zm-1 3H7V3.4c.6-.2 1.6-.4 3-.4zm1 4V7h3v3zM6 3.8V6h-.9c.1-.8.2-1.4.5-1.8zM5.2 11H6v1.7c-.3-.6-.6-1.1-.8-1.7M8 15h2v1.3l-.2-.1C9.2 16 8.6 15.5 8 15m3.2 1.3H11V15h2c-.6.5-1.2 1-1.8 1.3m3.8-3.6V11h.8c-.2.5-.5 1.1-.8 1.7"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/radar.svg����������������������������������0000664�0000000�0000000�00000000764�14753064456�0025230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.07 4.93-1.41 1.41A8.01 8.01 0 0 1 20 12a8 8 0 0 1-8 8 8 8 0 0 1-8-8c0-4.08 3.05-7.44 7-7.93v2.02C8.16 6.57 6 9.03 6 12a6 6 0 0 0 6 6 6 6 0 0 0 6-6c0-1.66-.67-3.16-1.76-4.24l-1.41 1.41C15.55 9.9 16 10.9 16 12a4 4 0 0 1-4 4 4 4 0 0 1-4-4c0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72a2 2 0 0 0 2 2 2 2 0 0 0 2-2c0-.74-.4-1.38-1-1.72V2h-1A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10c0-2.76-1.12-5.26-2.93-7.07"/></svg>������������mkdocs-material-9.6.4/material/templates/.icons/material/radiator-disabled.svg����������������������0000664�0000000�0000000�00000000604�14753064456�0027502�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 12H4a2 2 0 0 0-2 2v8h2v-2h16v2h2v-8a2 2 0 0 0-2-2M7 17a1 1 0 0 1-1 1 1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1 1 1 0 0 1 1 1zm4 0a1 1 0 0 1-1 1 1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1 1 1 0 0 1 1 1zm4 0a1 1 0 0 1-1 1 1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1 1 1 0 0 1 1 1zm4 0a1 1 0 0 1-1 1 1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1 1 1 0 0 1 1 1z"/></svg>����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/radiator-off.svg���������������������������0000664�0000000�0000000�00000001207�14753064456�0026505�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.28 2 2 3.27l2.77 2.77.87 1.35L4.22 9.6l1.73.9 1.28-2 3.5 3.5H4a2 2 0 0 0-2 2v8h2v-2h14.73L20 21.27V22h2v-1.28zM7 17a1 1 0 0 1-1 1 1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1 1 1 0 0 1 1 1zm4 0a1 1 0 0 1-1 1 1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1 1 1 0 0 1 1 1zm4 0a1 1 0 0 1-1 1 1 1 0 0 1-1-1v-2c0-.21.08-.39.18-.55L15 16.27zm1.25-7.5 1.42-2.2-1.42-2.2 2-3.1 1.75.89-1.44 2.21L20 7.3v.01l-2 3.09zM22 14v4.18l-3-3V15a1 1 0 0 0-1-1c-.05 0-.1 0-.15.03L15.82 12H20a2 2 0 0 1 2 2M11.64 7.3l-1.42-2.2 2-3.1 1.73.89-1.42 2.21 1.42 2.2-.01.01L12.84 9l-1.4-1.38zM7.5 3.69 6.1 2.28l.12-.19L7.95 3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/radiator.svg�������������������������������0000664�0000000�0000000�00000001141�14753064456�0025732�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.95 3 6.53 5.19 7.95 7.4h-.01l-1.99 3.1-1.73-.9 1.42-2.21-1.42-2.2 2-3.1zm6-.11L12.53 5.1l1.42 2.2-.01.01-1.99 3.09-1.73-.9 1.42-2.2-1.42-2.2 2-3.1zm6.05 0L18.56 5.1 20 7.3v.01l-2 3.09-1.75-.9 1.42-2.2-1.42-2.2 2-3.1zM2 22v-8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v8h-2v-2H4v2zm4-8a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1m4 0a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1m4 0a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1m4 0a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/radio-am.svg�������������������������������0000664�0000000�0000000�00000000300�14753064456�0025612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 7a2 2 0 0 0-2 2v8h2v-4h2v4h2V9a2 2 0 0 0-2-2zm0 2h2v2H5zm8-2a2 2 0 0 0-2 2v8h2V9h2v7h2V9h2v8h2V9a2 2 0 0 0-2-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/radio-fm.svg�������������������������������0000664�0000000�0000000�00000000240�14753064456�0025622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 7v10h2v-4h3v-2H5V9h4V7zm10 0a2 2 0 0 0-2 2v8h2V9h2v7h2V9h2v8h2V9a2 2 0 0 0-2-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/radio-handheld.svg�������������������������0000664�0000000�0000000�00000000270�14753064456�0026772�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 2a1 1 0 0 0-1 1v17c0 1.11.89 2 2 2h5c1.11 0 2-.89 2-2V9c0-1.11-.89-2-2-2h-5V3a1 1 0 0 0-1-1m1 7h5v4h-5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/radio-off.svg������������������������������0000664�0000000�0000000�00000000474�14753064456�0026003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m1 4.27 2 2c-.6.34-1 .99-1 1.73v12a2 2 0 0 0 2 2h14.73l2 2L22 22.72 2.28 3zM20 6H8.83l7.64-3.17L15.71 1 6.59 4.76 9.82 8H20v4h-2v-2h-2v2h-2.18L22 20.18V8a2 2 0 0 0-2-2M4 8h.73l4 4H4zm3 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/radio-tower.svg����������������������������0000664�0000000�0000000�00000001017�14753064456�0026363�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10a2 2 0 0 1 2 2 2 2 0 0 1-.47 1.29L16.7 22h-2.13L12 14.93 9.43 22H7.3l3.17-8.71A2 2 0 0 1 10 12a2 2 0 0 1 2-2m0-2a4 4 0 0 0-4 4c0 .5.1 1 .28 1.46l-.88 2.4A6.03 6.03 0 0 1 6 12a6 6 0 0 1 6-6 6 6 0 0 1 6 6c0 1.47-.53 2.81-1.4 3.86l-.88-2.4C15.9 13 16 12.5 16 12a4 4 0 0 0-4-4m0-4a8 8 0 0 0-8 8c0 2.36 1 4.5 2.64 5.94l-.72 2A10 10 0 0 1 2 12 10 10 0 0 1 12 2a10 10 0 0 1 10 10c0 3.23-1.54 6.11-3.92 7.94l-.72-2C19 16.5 20 14.36 20 12a8 8 0 0 0-8-8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/radio.svg����������������������������������0000664�0000000�0000000�00000000407�14753064456�0025227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8c0-.85.53-1.58 1.28-1.87L15.71 1l.76 1.83L8.83 6zm0 2H4v4h12v-2h2v2h2zM7 14a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/radioactive-circle-outline.svg�������������0000664�0000000�0000000�00000000675�14753064456�0031346�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4c4.4 0 8 3.6 8 8s-3.6 8-8 8-8-3.6-8-8 3.6-8 8-8m0-2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m3 15.2-1.8-3q-.6.3-1.2.3c-.6 0-.9-.1-1.2-.3-.5.9-1.2 2-1.8 3 .9.5 1.9.8 3 .8s2.1-.3 3-.8m0-10.4-1.8 3c.7.4 1.3 1.2 1.3 2.2H18c0-2.2-1.2-4.2-3-5.2M12 13c.6 0 1-.4 1-1s-.4-1-1-1-1 .4-1 1 .4 1 1 1m-6-1h3.5c0-.9.5-1.7 1.3-2.2-.5-.9-1.2-2-1.8-3-1.8 1-3 3-3 5.2"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/radioactive-circle.svg���������������������0000664�0000000�0000000�00000000612�14753064456�0027660�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m8 10h-4c0-1.5-.8-2.8-2-3.4l2-3.5c2.4 1.4 4 3.9 4 6.9m-8-2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2M8 5.1c.6 1 1.3 2.3 2 3.5-1.2.7-2 2-2 3.4H4c0-3 1.6-5.5 4-6.9m0 13.8c.6-1 1.3-2.3 2-3.5.6.3 1.3.6 2 .6s1.4-.2 2-.6l2 3.5c-1.2.7-2.5 1.1-4 1.1s-2.8-.4-4-1.1"/></svg>����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/radioactive-off.svg������������������������0000664�0000000�0000000�00000000574�14753064456�0027200�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.8 22.7-4.9-4.9 1 1.8c-1.5.9-3.2 1.3-5 1.3s-3.5-.5-5-1.3c.4-.8 1.8-3.1 3-5.2.6.3 1.3.6 2 .6.3 0 .7 0 1-.1L8.1 10c0 .3-.1.7-.1 1H2c0-2 .6-3.9 1.6-5.5L1.1 3l1.3-1.3 19.7 19.7zM16 11h6c0-3.7-2-6.9-5-8.7l-3 5.2c1.2.7 2 2 2 3.5m-3.8-2 1.8 1.8c-.1-.9-.9-1.7-1.8-1.8M7 2.3l-.9.6L9 5.8c-.9-1.5-1.7-2.9-2-3.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/radioactive.svg����������������������������0000664�0000000�0000000�00000000524�14753064456�0026423�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 11c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2m2 0h6c0-3.7-2-6.9-5-8.7l-3 5.2c1.2.7 2 2 2 3.5m-4 4c-.7 0-1.4-.2-2-.6-1.2 2.1-2.6 4.4-3 5.2 1.5.9 3.2 1.3 5 1.3s3.5-.5 5-1.3l-3-5.2c-.6.4-1.3.6-2 .6m-2-7.4C8.8 5.5 7.4 3.1 7 2.3 4 4 2 7.3 2 11h6c0-1.5.8-2.8 2-3.4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/radiobox-blank.svg�������������������������0000664�0000000�0000000�00000000327�14753064456�0027026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/radiobox-indeterminate-variant.svg���������0000664�0000000�0000000�00000001207�14753064456�0032227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.46 8.46C9.4 7.53 10.67 7 12 7s2.6.53 3.54 1.46l-7.08 7.08A5.04 5.04 0 0 1 7 12c0-1.33.53-2.6 1.46-3.54m-.29-5.7A10.1 10.1 0 0 1 12 2c1.31 0 2.61.26 3.83.76 1.21.5 2.31 1.24 3.24 2.17s1.67 2.03 2.17 3.24c.5 1.22.76 2.52.76 3.83 0 2.65-1.05 5.2-2.93 7.07A9.97 9.97 0 0 1 12 22a10.1 10.1 0 0 1-3.83-.76 10 10 0 0 1-3.24-2.17A9.97 9.97 0 0 1 2 12c0-2.65 1.05-5.2 2.93-7.07.93-.93 2.03-1.67 3.24-2.17m-1.83 14.9C7.84 19.16 9.88 20 12 20s4.16-.84 5.66-2.34S20 14.12 20 12s-.84-4.16-2.34-5.66A8 8 0 0 0 12 4c-2.12 0-4.16.84-5.66 2.34A8 8 0 0 0 4 12c0 2.12.84 4.16 2.34 5.66"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/radiobox-marked.svg������������������������0000664�0000000�0000000�00000000423�14753064456�0027177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 5a5 5 0 0 0-5 5 5 5 0 0 0 5 5 5 5 0 0 0 5-5 5 5 0 0 0-5-5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/radiology-box-outline.svg������������������0000664�0000000�0000000�00000000756�14753064456�0030374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 5v14H5V5zm0-2H5c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2m-7 3c.55 0 1 .45 1 1v1h3.17c.18.31.33.65.49 1H13v1h4c.1.33.17.67.19 1H13v1h4.2c-.04.35-.05.69-.1 1H13v1h4s-.06 3-1.5 3c-1.35 0-1-1.53-2.5-2v2c0 .55-.45 1-1 1s-1-.45-1-1v-2c-1.5.47-1.15 2-2.5 2C7.06 17 7 14 7 14h4v-1H6.9c-.05-.31-.06-.65-.1-1H11v-1H6.81c.02-.33.1-.67.19-1h4V9H7.34c.16-.35.31-.69.49-1H11V7c0-.55.45-1 1-1"/></svg>������������������mkdocs-material-9.6.4/material/templates/.icons/material/radiology-box.svg��������������������������0000664�0000000�0000000�00000000737�14753064456�0026716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2m-1.9 10H13v1h4s-.06 3-1.5 3c-1.35 0-1-1.53-2.5-2v2c0 .55-.45 1-1 1s-1-.45-1-1v-2c-1.5.47-1.15 2-2.5 2C7.06 17 7 14 7 14h4v-1H6.9c-.05-.31-.06-.65-.1-1H11v-1H6.81c.02-.33.1-.67.19-1h4V9H7.34c.16-.35.31-.69.49-1H11V7c0-.55.45-1 1-1s1 .45 1 1v1h3.17c.18.31.33.65.49 1H13v1h4c.1.33.17.67.19 1H13v1h4.2c-.04.35-.05.69-.1 1"/></svg>���������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/radius-outline.svg�������������������������0000664�0000000�0000000�00000000464�14753064456�0027100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 18a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8m4-5v-2h-2.28c-.36.62-1.01 1-1.72 1a2 2 0 0 1-2-2 2 2 0 0 1 2-2c.71 0 1.36.38 1.72 1H16V9l3 3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/radius.svg���������������������������������0000664�0000000�0000000�00000000370�14753064456�0025417�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m5 13v-2h-3.28c-.36.62-1.01 1-1.72 1a2 2 0 0 1-2-2 2 2 0 0 1 2-2c.71 0 1.36.38 1.72 1H17V9l3 3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/railroad-light.svg�������������������������0000664�0000000�0000000�00000000774�14753064456�0027042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.67 10.5c-1.27 0-2.4.8-2.82 2h-1.68V7.77l3.49 2.09 1-1.72L14.11 6l3.57-2.14-1-1.72-3.51 2.09V2h-2v2.23L7.68 2.14l-1 1.72L10.23 6 6.66 8.14l1 1.72 3.51-2.09v4.73H9.5c-1.14-3.18-5.84-2.37-5.84 1s4.7 4.18 5.84 1h1.67V20a2 2 0 0 0-2 2h6a2 2 0 0 0-2-2v-5.5h1.68c.81 2.3 3.88 2.72 5.28.73s-.03-4.73-2.46-4.73m-11 4c-.89 0-1.34-1.08-.71-1.71s1.71-.18 1.71.71a1 1 0 0 1-1 1m11 0c-.89 0-1.34-1.08-.71-1.71s1.71-.18 1.71.71a1 1 0 0 1-1 1"/></svg>����mkdocs-material-9.6.4/material/templates/.icons/material/rake.svg�����������������������������������0000664�0000000�0000000�00000000516�14753064456�0025054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 17.05 9.43 16 22.07 3.35l-1.41-1.42L8 14.58 6.95 13.5c-.78-.77-2.05-.77-2.83 0L2 15.64l.71.7 2.12-2.12.71.71-2.13 2.12.71.71 2.12-2.12.71.7-2.12 2.12.71.71 2.12-2.12.7.71-2.12 2.12.71.71 2.12-2.13.71.71-2.12 2.12.7.71 2.14-2.12c.77-.78.77-2.05 0-2.83"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/raspberry-pi.svg���������������������������0000664�0000000�0000000�00000000472�14753064456�0026552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 8h2v2h-2zM4 5h16a2 2 0 0 1 2 2h-3v2H5v4h3v3h11v1h3a2 2 0 0 1-2 2h-4v1h-2v-1h-3v1H7v-1H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2m15 10H9v-5h10v1h3v2h-3zm-6-3v2h2v-2zM5 6v2h1V6zm2 0v2h1V6zm2 0v2h1V6zm2 0v2h1V6zm2 0v2h1V6zm2 0v2h1V6zm5 8h2v2h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/raw-off.svg��������������������������������0000664�0000000�0000000�00000000501�14753064456�0025465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.15 14.32-2.43-2.42L14 9h1.5l.74 3L17 9h1.5l.74 3L20 9h1.5L20 15h-1.5l-.76-3.04zM1.39 4.22l1.42-1.41L21.19 21.2l-1.41 1.41-9.11-9.11h-.04l-.38 1.5h-1.5l.68-2.74L8 10.83v.67c0 .6-.4 1.1-.9 1.4L8 15H6.5l-.9-2H4.5v2H3V9h3.17zM6.5 11.5v-1h-2v1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/raw.svg������������������������������������0000664�0000000�0000000�00000000465�14753064456�0024726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 9c.8 0 1.5.7 1.5 1.5v1c0 .6-.4 1.1-.9 1.4L8 15H6.5l-.9-2H4.5v2H3V9zm0 2.5v-1h-2v1zM10.25 9h2.5l1.5 6h-1.5l-.37-1.5h-1.75l-.38 1.5h-1.5zm.75 3h1l-.25-1h-.5zm9-3h1.5L20 15h-1.5l-.76-3.04L17 15h-1.5L14 9h1.5l.74 3L17 9h1.5l.74 3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ray-end-arrow.svg��������������������������0000664�0000000�0000000�00000000257�14753064456�0026623�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m1 12 4 4v-3h12.17c.41 1.17 1.52 2 2.83 2a3 3 0 0 0 3-3 3 3 0 0 0-3-3c-1.31 0-2.42.83-2.83 2H5V8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ray-end.svg��������������������������������0000664�0000000�0000000�00000000247�14753064456�0025472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 9c-1.31 0-2.42.83-2.83 2H2v2h15.17c.41 1.17 1.52 2 2.83 2a3 3 0 0 0 3-3 3 3 0 0 0-3-3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ray-start-arrow.svg������������������������0000664�0000000�0000000�00000000255�14753064456�0027210�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23 12-4 4v-3H6.83A2.99 2.99 0 0 1 4 15a3 3 0 0 1-3-3 3 3 0 0 1 3-3c1.31 0 2.42.83 2.83 2H19V8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ray-start-end.svg��������������������������0000664�0000000�0000000�00000000356�14753064456�0026626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 9c1.31 0 2.42.83 2.83 2h10.34c.41-1.17 1.52-2 2.83-2a3 3 0 0 1 3 3 3 3 0 0 1-3 3 2.99 2.99 0 0 1-2.83-2H6.83A2.99 2.99 0 0 1 4 15a3 3 0 0 1-3-3 3 3 0 0 1 3-3"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ray-start-vertex-end.svg�������������������0000664�0000000�0000000�00000000510�14753064456�0030131�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 9c-1.31 0-2.42.83-2.83 2h-2.35C14.4 9.84 13.3 9 12 9s-2.4.84-2.82 2H6.83A2.99 2.99 0 0 0 4 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c1.31 0 2.42-.83 2.83-2h2.35c.42 1.16 1.52 2 2.82 2s2.4-.84 2.82-2h2.35c.41 1.17 1.52 2 2.83 2 1.66 0 3-1.34 3-3s-1.34-3-3-3"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ray-start.svg������������������������������0000664�0000000�0000000�00000000243�14753064456�0026055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 9c1.31 0 2.42.83 2.83 2H22v2H6.83A2.99 2.99 0 0 1 4 15a3 3 0 0 1-3-3 3 3 0 0 1 3-3"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ray-vertex.svg�����������������������������0000664�0000000�0000000�00000000271�14753064456�0026236�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 11h7.17c.41-1.17 1.52-2 2.83-2s2.42.83 2.83 2H22v2h-7.17A2.99 2.99 0 0 1 12 15a2.99 2.99 0 0 1-2.83-2H2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/razor-double-edge.svg����������������������0000664�0000000�0000000�00000000535�14753064456�0027442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 8c-.55 0-1-.45-1-1s.45-1 1-1V5H4v1c.55 0 1 .45 1 1s-.45 1-1 1H2v7h2c.55 0 1 .45 1 1s-.45 1-1 1v1h16v-1c-.55 0-1-.45-1-1s.45-1 1-1h2V8zm0 4h-1v1h-2v-1h-3.59c-.21.58-.76 1-1.41 1s-1.2-.42-1.41-1H7v1H5v-1H4v-1h1v-1h2v1h3.59c.21-.58.76-1 1.41-1s1.2.42 1.41 1H17v-1h2v1h1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/razor-single-edge.svg����������������������0000664�0000000�0000000�00000000377�14753064456�0027455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 5v3H2V5zm0 8v5H2v-5h1.5c.83 0 1.5-.67 1.5-1.5S4.33 10 3.5 10H2V9h20v1h-1.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5zm-9-2c0-.55-.45-1-1-1s-1 .45-1 1v2c0 .55.45 1 1 1s1-.45 1-1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/react.svg����������������������������������0000664�0000000�0000000�00000003226�14753064456�0025231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10.11c1.03 0 1.87.84 1.87 1.89 0 1-.84 1.85-1.87 1.85S10.13 13 10.13 12c0-1.05.84-1.89 1.87-1.89M7.37 20c.63.38 2.01-.2 3.6-1.7-.52-.59-1.03-1.23-1.51-1.9a23 23 0 0 1-2.4-.36c-.51 2.14-.32 3.61.31 3.96m.71-5.74-.29-.51c-.11.29-.22.58-.29.86.27.06.57.11.88.16zm6.54-.76.81-1.5-.81-1.5c-.3-.53-.62-1-.91-1.47C13.17 9 12.6 9 12 9s-1.17 0-1.71.03c-.29.47-.61.94-.91 1.47L8.57 12l.81 1.5c.3.53.62 1 .91 1.47.54.03 1.11.03 1.71.03s1.17 0 1.71-.03c.29-.47.61-.94.91-1.47M12 6.78c-.19.22-.39.45-.59.72h1.18c-.2-.27-.4-.5-.59-.72m0 10.44c.19-.22.39-.45.59-.72h-1.18c.2.27.4.5.59.72M16.62 4c-.62-.38-2 .2-3.59 1.7.52.59 1.03 1.23 1.51 1.9.82.08 1.63.2 2.4.36.51-2.14.32-3.61-.32-3.96m-.7 5.74.29.51c.11-.29.22-.58.29-.86-.27-.06-.57-.11-.88-.16zm1.45-7.05c1.47.84 1.63 3.05 1.01 5.63 2.54.75 4.37 1.99 4.37 3.68s-1.83 2.93-4.37 3.68c.62 2.58.46 4.79-1.01 5.63-1.46.84-3.45-.12-5.37-1.95-1.92 1.83-3.91 2.79-5.38 1.95-1.46-.84-1.62-3.05-1-5.63-2.54-.75-4.37-1.99-4.37-3.68s1.83-2.93 4.37-3.68c-.62-2.58-.46-4.79 1-5.63 1.47-.84 3.46.12 5.38 1.95 1.92-1.83 3.91-2.79 5.37-1.95M17.08 12c.34.75.64 1.5.89 2.26 2.1-.63 3.28-1.53 3.28-2.26s-1.18-1.63-3.28-2.26c-.25.76-.55 1.51-.89 2.26M6.92 12c-.34-.75-.64-1.5-.89-2.26-2.1.63-3.28 1.53-3.28 2.26s1.18 1.63 3.28 2.26c.25-.76.55-1.51.89-2.26m9 2.26-.3.51c.31-.05.61-.1.88-.16-.07-.28-.18-.57-.29-.86zm-2.89 4.04c1.59 1.5 2.97 2.08 3.59 1.7.64-.35.83-1.82.32-3.96-.77.16-1.58.28-2.4.36-.48.67-.99 1.31-1.51 1.9M8.08 9.74l.3-.51c-.31.05-.61.1-.88.16.07.28.18.57.29.86zm2.89-4.04C9.38 4.2 8 3.62 7.37 4c-.63.35-.82 1.82-.31 3.96a23 23 0 0 1 2.4-.36c.48-.67.99-1.31 1.51-1.9"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/read.svg�����������������������������������0000664�0000000�0000000�00000000362�14753064456�0025044�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.59 11.59 23 13l-9.5 9.5-5.08-5.09L9.83 16l3.67 3.68zM4 16V3h5a4 4 0 0 1 4 4c0 1.54-.87 2.88-2.15 3.55L14 16h-2l-2.89-5H6v5zm2-7h3a2 2 0 0 0 2-2 2 2 0 0 0-2-2H6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/receipt-clock-outline.svg������������������0000664�0000000�0000000�00000001074�14753064456�0030333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 3.5 18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20l1.5-1.5L6 22l1.5-1.5L9 22l1.58-1.58c.14.19.3.36.47.53A7.001 7.001 0 0 0 21 11.1V2zM19 9.68c-.93-.44-1.95-.68-3-.68-3.86 0-7 3.13-7 7 0 1.05.24 2.07.68 3H5V5h14zM20.85 16c0 .64-.12 1.27-.35 1.86-.26.58-.62 1.14-1.07 1.57-.43.45-.99.81-1.57 1.07-.59.23-1.22.35-1.86.35-2.68 0-4.85-2.17-4.85-4.85 0-1.29.51-2.5 1.42-3.43.93-.91 2.14-1.42 3.43-1.42 2.67 0 4.85 2.17 4.85 4.85m-5.85.69V13h1.5v2.82l2.44 1.41-.75 1.3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/receipt-clock.svg��������������������������0000664�0000000�0000000�00000000757�14753064456�0026665�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3 22 1.5-1.5L6 22l1.5-1.5L9 22l1.58-1.58c.14.19.3.36.47.53A7.001 7.001 0 0 0 21 11.1V2l-1.5 1.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2zm17.85-6c0 .64-.12 1.27-.35 1.86-.26.58-.62 1.14-1.07 1.57-.43.45-.99.81-1.57 1.07-.59.23-1.22.35-1.86.35-2.68 0-4.85-2.17-4.85-4.85 0-1.29.51-2.5 1.42-3.43.93-.91 2.14-1.42 3.43-1.42 2.67 0 4.85 2.17 4.85 4.85m-5.85.69V13h1.5v2.82l2.44 1.41-.75 1.3z"/></svg>�����������������mkdocs-material-9.6.4/material/templates/.icons/material/receipt-outline.svg������������������������0000664�0000000�0000000�00000000403�14753064456�0027235�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 3.5 18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2zM19 19H5V5h14z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/receipt-send-outline.svg�������������������0000664�0000000�0000000�00000000371�14753064456�0030170�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18 2 1.5 1.5L21 2v12.26l-2-1V5H5v14h7v3l-1.5-1.5L9 22l-1.5-1.5L6 22l-1.5-1.5L3 22V2l1.5 1.5L6 2l1.5 1.5L9 2l1.5 1.5L12 2l1.5 1.5L15 2l1.5 1.5zm-4 17 4-1-4-1v-4l10 5-10 5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/receipt-send.svg���������������������������0000664�0000000�0000000�00000000363�14753064456�0026514�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.5 20.5 3 22V2l1.5 1.5L6 2l1.5 1.5L9 2l1.5 1.5L12 2l1.5 1.5L15 2l1.5 1.5L18 2l1.5 1.5L21 2v12.26l-9-4.5V22l-1.5-1.5L9 22l-1.5-1.5L6 22zM14 19l4-1-4-1v-4l10 5-10 5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/receipt-text-arrow-left-outline.svg��������0000664�0000000�0000000�00000000544�14753064456�0032305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 22 1.26-1.26c-.16-.52-.26-1.08-.26-1.65H5V4.91h14V13c.7 0 1.37.13 2 .35V2l-1.5 1.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5zm1.35-5c.26-.75.65-1.42 1.19-2H6v2zM18 11H6v2h12zm0-4H6v2h12zm0 13v2l-3-3 3-3v2h4v2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/receipt-text-arrow-left.svg����������������0000664�0000000�0000000�00000000524�14753064456�0030626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 3.5 18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.26-1.26c-.17-.56-.26-1.15-.26-1.74 0-.68.12-1.36.34-2H6v-2h8.53A6 6 0 0 1 21 13.34V2zM18 13H6v-2h12zm0-4H6V7h12zm0 9v-2l-3 3 3 3v-2h4v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/receipt-text-arrow-right-outline.svg�������0000664�0000000�0000000�00000000562�14753064456�0032470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.26 20.74 12 22l-1.5-1.5L9 22l-1.5-1.5L6 22l-1.5-1.5L3 22V2l1.5 1.5L6 2l1.5 1.5L9 2l1.5 1.5L12 2l1.5 1.5L15 2l1.5 1.5L18 2l1.5 1.5L21 2v11.35c-.63-.22-1.3-.35-2-.35V4.91H5v14.18h8c0 .57.1 1.13.26 1.65M14.54 15c-.54.58-.93 1.25-1.19 2H6v-2zM6 11h12v2H6zm0-4h12v2H6zm13 15v-2h-4v-2h4v-2l3 3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/receipt-text-arrow-right.svg���������������0000664�0000000�0000000�00000000523�14753064456�0031010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 3.5 18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.26-1.26c-.17-.56-.26-1.15-.26-1.74 0-.68.12-1.36.34-2H6v-2h8.53A6 6 0 0 1 21 13.34V2zM18 13H6v-2h12zm0-4H6V7h12zm1 13v-2h-4v-2h4v-2l3 3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/receipt-text-check-outline.svg�������������0000664�0000000�0000000�00000000605�14753064456�0031276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.26 20.74 12 22l-1.5-1.5L9 22l-1.5-1.5L6 22l-1.5-1.5L3 22V2l1.5 1.5L6 2l1.5 1.5L9 2l1.5 1.5L12 2l1.5 1.5L15 2l1.5 1.5L18 2l1.5 1.5L21 2v11.35c-.63-.22-1.3-.35-2-.35V5H5v14h8c0 .57.1 1.22.26 1.74M6 15v2h7.35c.26-.75.65-1.42 1.19-2zm0-2h12v-2H6zm0-4h12V7H6zm17 8.23-1.16-1.41-3.59 3.59-1.59-1.59L15.5 19l2.75 3"/></svg>���������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/receipt-text-check.svg���������������������0000664�0000000�0000000�00000000562�14753064456�0027623�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.25 22-2.75-3 1.16-1.18 1.59 1.59 3.59-3.59L23 17.23M19.5 3.5 18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.26-1.26c-.17-.56-.26-1.15-.26-1.74 0-.68.12-1.36.34-2H6v-2h8.53A6 6 0 0 1 21 13.34V2zM18 13H6v-2h12zm0-4H6V7h12z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/receipt-text-clock-outline.svg�������������0000664�0000000�0000000�00000001203�14753064456�0031307�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 16.69V13h1.5v2.82l2.44 1.41-.75 1.3zm-4.42 3.73L9 22l-1.5-1.5L6 22l-1.5-1.5L3 22V2l1.5 1.5L6 2l1.5 1.5L9 2l1.5 1.5L12 2l1.5 1.5L15 2l1.5 1.5L18 2l1.5 1.5L21 2v9.1a7.001 7.001 0 0 1-9.95 9.85 5 5 0 0 1-.47-.53m-.86-1.33c-.32-.66-.54-1.36-.65-2.09H6v-2h3.07c.1-.71.31-1.38.61-2H6v-2h5.1c1.27-1.24 3-2 4.9-2H6V7h12v2h-2c1.05 0 2.07.24 3 .68V4.91H5v14.18zM20.85 16c0-2.68-2.18-4.85-4.85-4.85-1.29 0-2.5.51-3.43 1.42-.91.93-1.42 2.14-1.42 3.43 0 2.68 2.17 4.85 4.85 4.85.64 0 1.27-.12 1.86-.35.58-.26 1.14-.62 1.57-1.07.45-.43.81-.99 1.07-1.57.23-.59.35-1.22.35-1.86"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/receipt-text-clock.svg���������������������0000664�0000000�0000000�00000001115�14753064456�0027634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 16.69V13h1.5v2.82l2.44 1.41-.75 1.3zM19.5 3.5 18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20l1.5-1.5L6 22l1.5-1.5L9 22l1.58-1.58c.14.19.3.36.47.53A7.001 7.001 0 0 0 21 11.1V2zM11.1 11c-.6.57-1.07 1.25-1.43 2H6v-2zm-2.03 4c-.07.33-.07.66-.07 1s0 .67.07 1H6v-2zM18 9H6V7h12zm2.85 7c0 .64-.12 1.27-.35 1.86-.26.58-.62 1.14-1.07 1.57-.43.45-.99.81-1.57 1.07-.59.23-1.22.35-1.86.35-2.68 0-4.85-2.17-4.85-4.85 0-1.29.51-2.5 1.42-3.43.93-.91 2.14-1.42 3.43-1.42 2.67 0 4.85 2.17 4.85 4.85"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/receipt-text-edit-outline.svg��������������0000664�0000000�0000000�00000000642�14753064456�0031147�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18 2 1.5 1.5L21 2v7.13l-2 2V4.91H5v14.18h5.5v1.41L9 22l-1.5-1.5L6 22l-1.5-1.5L3 22V2l1.5 1.5L6 2l1.5 1.5L9 2l1.5 1.5L12 2l1.5 1.5L15 2l1.5 1.5zm-5 17.96 6.13-6.13 2.04 2.04L15.04 22H13zm6.83-6.83.98-.98.02-.02c.05-.04.11-.08.17-.1a.5.5 0 0 1 .53.12l1.32 1.32c.2.2.2.53 0 .72l-.98.98zm-1.83-1-.87.87H6v-2h12zM15.13 15l-2 2H6v-2zM18 9V7H6v2z"/></svg>����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/receipt-text-edit.svg����������������������0000664�0000000�0000000�00000000621�14753064456�0027467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3 22 1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5v-.87L13.13 17H6v-2h9.13l2-2H6v-2h12v1.13l3-3V2l-1.5 1.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2zM6 9V7h12v2zm7 13v-2.04l6.13-6.13 2.04 2.04L15.04 22zm8-9.97a.5.5 0 0 1 .53.12l1.32 1.32c.2.2.2.53 0 .72l-.98.98-2.04-2.04.98-.98.02-.02c.05-.04.11-.08.17-.1"/></svg>���������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/receipt-text-minus-outline.svg�������������0000664�0000000�0000000�00000000540�14753064456�0031352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 18v2h8v-2zm-1.74 2.74L12 22l-1.5-1.5L9 22l-1.5-1.5L6 22l-1.5-1.5L3 22V2l1.5 1.5L6 2l1.5 1.5L9 2l1.5 1.5L12 2l1.5 1.5L15 2l1.5 1.5L18 2l1.5 1.5L21 2v11.35c-.63-.22-1.3-.35-2-.35V5H5v14h8c0 .57.1 1.22.26 1.74M14.54 15c-.54.58-.93 1.25-1.19 2H6v-2zM6 11h12v2H6zm0-4h12v2H6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/receipt-text-minus.svg���������������������0000664�0000000�0000000�00000000511�14753064456�0027673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 18v2h8v-2zm4.5-14.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.26-1.26c-.17-.56-.26-1.15-.26-1.74 0-.68.12-1.36.34-2H6v-2h8.53A6 6 0 0 1 21 13.34V2zM18 13H6v-2h12zm0-4H6V7h12z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/receipt-text-outline.svg�������������������0000664�0000000�0000000�00000000446�14753064456�0030226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 3.5 18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2zM19 19H5V5h14zM6 15h12v2H6m0-6h12v2H6m0-6h12v2H6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/receipt-text-plus-outline.svg��������������0000664�0000000�0000000�00000000564�14753064456�0031210�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 15v3h-3v2h3v3h2v-3h3v-2h-3v-3zm-4.74 5.74L12 22l-1.5-1.5L9 22l-1.5-1.5L6 22l-1.5-1.5L3 22V2l1.5 1.5L6 2l1.5 1.5L9 2l1.5 1.5L12 2l1.5 1.5L15 2l1.5 1.5L18 2l1.5 1.5L21 2v11.35c-.63-.22-1.3-.35-2-.35V5H5v14h8c0 .57.1 1.22.26 1.74M14.54 15c-.54.58-.93 1.25-1.19 2H6v-2zM6 11h12v2H6zm0-4h12v2H6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/receipt-text-plus.svg����������������������0000664�0000000�0000000�00000000535�14753064456�0027531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 15v3h-3v2h3v3h2v-3h3v-2h-3v-3zm1.5-11.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.26-1.26c-.17-.56-.26-1.15-.26-1.74 0-.68.12-1.36.34-2H6v-2h8.53A6 6 0 0 1 21 13.34V2zM18 13H6v-2h12zm0-4H6V7h12z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/receipt-text-remove-outline.svg������������0000664�0000000�0000000�00000000713�14753064456�0031516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.12 15.46 19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19l2.13-2.12zm-7.86 5.28L12 22l-1.5-1.5L9 22l-1.5-1.5L6 22l-1.5-1.5L3 22V2l1.5 1.5L6 2l1.5 1.5L9 2l1.5 1.5L12 2l1.5 1.5L15 2l1.5 1.5L18 2l1.5 1.5L21 2v11.35c-.63-.22-1.3-.35-2-.35V5H5v14h8c0 .57.1 1.22.26 1.74M14.54 15c-.54.58-.93 1.25-1.19 2H6v-2zM6 11h12v2H6zm0-4h12v2H6z"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/receipt-text-remove.svg��������������������0000664�0000000�0000000�00000000664�14753064456�0030046�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.12 15.46 19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19l2.13-2.12zM19.5 3.5 18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.26-1.26c-.17-.56-.26-1.15-.26-1.74 0-.68.12-1.36.34-2H6v-2h8.53A6 6 0 0 1 21 13.34V2zM18 13H6v-2h12zm0-4H6V7h12z"/></svg>����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/receipt-text-send-outline.svg��������������0000664�0000000�0000000�00000000445�14753064456�0031154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 3.5 18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22v-2.91H5V4.91h14v8.35l2 1V2zM14 23v-4l4-1-4-1v-4l10 5zm-2-12v2H6v-2zm-6 6v-2h6v2zM18 7v2H6V7z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/receipt-text-send.svg����������������������0000664�0000000�0000000�00000000415�14753064456�0027474�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.5 20.5 3 22V2l1.5 1.5L6 2l1.5 1.5L9 2l1.5 1.5L12 2l1.5 1.5L15 2l1.5 1.5L18 2l1.5 1.5L21 2v12.26l-3-1.5V11H6v2h6v2H6v2h6v5l-1.5-1.5L9 22l-1.5-1.5L6 22zM6 7v2h12V7zm8 6 10 5-10 5v-4l4-1-4-1z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/receipt-text.svg���������������������������0000664�0000000�0000000�00000000433�14753064456�0026545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3 22 1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2l-1.5 1.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2m15 7H6V7h12m0 6H6v-2h12m0 6H6v-2h12z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/receipt.svg��������������������������������0000664�0000000�0000000�00000000366�14753064456�0025570�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3 22 1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2l-1.5 1.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/record-circle-outline.svg������������������0000664�0000000�0000000�00000000421�14753064456�0030317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 2a8 8 0 0 1 8 8 8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8m0 5a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/record-circle.svg��������������������������0000664�0000000�0000000�00000000325�14753064456�0026645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 7a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/record-player.svg��������������������������0000664�0000000�0000000�00000000601�14753064456�0026675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 17.5a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5V17H2a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1h17v-2H7l-1 1V9a1 1 0 0 1 1-1h12V7h2v1a1 1 0 0 1 1 1v1h-1v2h1a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1h-1v.5a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5V17H5zM3 14v1h2v-1zm3 0v1h2v-1zm14.5-.5a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/record-rec.svg�����������������������������0000664�0000000�0000000�00000000546�14753064456�0026162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.5 5A7.5 7.5 0 0 0 5 12.5a7.5 7.5 0 0 0 7.5 7.5 7.5 7.5 0 0 0 7.5-7.5A7.5 7.5 0 0 0 12.5 5M7 10h2a1 1 0 0 1 1 1v1c0 .5-.38.9-.86.97L10.31 15H9.15L8 13v2H7m5-5h2v1h-2v1h2v1h-2v1h2v1h-2a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1m4 0h2v1h-2v3h2v1h-2a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1m-8 1v1h1v-1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/record.svg���������������������������������0000664�0000000�0000000�00000000210�14753064456�0025377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 12c0 3.86-3.14 7-7 7s-7-3.14-7-7 3.14-7 7-7 7 3.14 7 7"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rectangle-outline.svg����������������������0000664�0000000�0000000�00000000151�14753064456�0027546�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 6v13h16V6zm14 11H6V8h12z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rectangle.svg������������������������������0000664�0000000�0000000�00000000133�14753064456�0026071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 6v13h16V6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/recycle-variant.svg������������������������0000664�0000000�0000000�00000000601�14753064456�0027215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.17 7.91 1.73 1 3.18-5.49 2.25 3.89-2.6 1.5 5.46 1.46 1.47-5.46-2.6 1.5-2.25-3.9a1.99 1.99 0 0 0-2.73-.73c-.27.15-.5.37-.67.63M10 20v-2H3.66l2.24-3.9 2.6 1.5-1.46-5.46-5.47 1.46 2.6 1.5L1.92 17a2.003 2.003 0 0 0 1.62 3m15.52-8.5-1.74 1L20.5 18H16v-3l-4 4 4 4v-3h4.5c1.11 0 2-.89 2-2 0-.31-.08-.62-.22-.89Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/recycle.svg��������������������������������0000664�0000000�0000000�00000000731�14753064456�0025557�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.82 15.42-2.5 4.33c-.49.86-1.4 1.31-2.32 1.25h-2v2l-2.5-4.5L15 14v2h2.82l-2.22-3.85 4.33-2.5 1.8 3.12c.52.77.59 1.8.09 2.65M9.21 3.06h5c.98 0 1.83.57 2.24 1.39l1 1.74 1.73-1-2.64 4.41-5.15.09 1.73-1-1.41-2.45-2.21 3.85-4.34-2.5 1.8-3.12c.41-.83 1.26-1.41 2.25-1.41m-4.16 16.7-2.5-4.33c-.49-.85-.42-1.87.09-2.64l1-1.73-1.73-1 5.14.08 2.65 4.42-1.73-1L6.56 16H11v5H7.4a2.51 2.51 0 0 1-2.35-1.24"/></svg>���������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/reddit.svg���������������������������������0000664�0000000�0000000�00000001701�14753064456�0025402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.5 15.41c.08.09.08.28 0 .39-.73.7-2.09.76-2.5.76-.39 0-1.75-.06-2.46-.76-.1-.11-.1-.3 0-.39.11-.1.28-.1.38 0 .46.46 1.41.59 2.08.59.69 0 1.66-.13 2.1-.59.11-.1.28-.1.4 0m-3.75-2.37c0-.57-.47-1.04-1.04-1.04s-1.04.47-1.04 1.04.47 1.05 1.04 1.04c.57 0 1.04-.47 1.04-1.04M14.29 12c-.57 0-1.04.5-1.04 1.05s.47 1.04 1.04 1.04 1.04-.48 1.04-1.04c0-.55-.47-1.05-1.04-1.05M22 12c0 5.5-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2s10 4.5 10 10m-3.33 0c0-.81-.67-1.46-1.45-1.46-.4 0-.76.16-1.02.41-1-.72-2.37-1.18-3.9-1.24l.67-3.13 2.17.47c.02.55.48.99 1.04.99.57 0 1.04-.47 1.04-1.04s-.47-1.04-1.04-1.04c-.41 0-.77.24-.93.59l-2.43-.52c-.07-.03-.14 0-.19.04-.06.04-.09.1-.1.17l-.74 3.48c-1.55.05-2.95.51-3.97 1.24-.26-.25-.62-.4-1.01-.4-.81 0-1.46.65-1.46 1.44 0 .61.36 1.11.86 1.34-.02.16-.03.28-.03.44 0 2.22 2.61 4.07 5.82 4.07 3.23 0 5.85-1.82 5.85-4.07 0-.14-.01-.28-.04-.44.5-.23.86-.74.86-1.34"/></svg>���������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/redhat.svg���������������������������������0000664�0000000�0000000�00000001036�14753064456�0025377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.34 13.16c1.32 0 3.22-.27 3.22-1.84q.015-.18-.03-.36l-.78-3.4c-.18-.75-.34-1.09-1.66-1.75-1.02-.52-3.24-1.38-3.9-1.38-.61 0-.79.79-1.52.79-.7 0-1.22-.59-1.88-.59-.63 0-1.04.43-1.36 1.31 0 0-.88 2.5-1 2.86-.01.07-.02.13-.02.2 0 .97 3.82 4.15 8.93 4.15m3.43-1.19c.18.86.18.95.18 1.04 0 1.5-1.66 2.31-3.83 2.31-4.92 0-9.23-2.88-9.23-4.78 0-.27.06-.53.16-.77-1.77.08-4.05.4-4.05 2.42 0 3.32 7.84 7.39 14.05 7.39 4.76 0 5.95-2.15 5.95-3.85 0-1.34-1.15-2.86-3.23-3.76"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/redo-variant.svg���������������������������0000664�0000000�0000000�00000000360�14753064456�0026522�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 7A6.5 6.5 0 0 0 4 13.5a6.5 6.5 0 0 0 6.5 6.5H14v-2h-3.5C8 18 6 16 6 13.5S8 9 10.5 9h5.67l-3.08 3.09 1.41 1.41L20 8l-5.5-5.5-1.42 1.41L16.17 7zM18 18h-2v2h2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/redo.svg�����������������������������������0000664�0000000�0000000�00000000310�14753064456�0025053�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.4 10.6C16.55 9 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22L3.9 16a8 8 0 0 1 7.6-5.5c1.95 0 3.73.72 5.12 1.88L13 16h9V7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/reflect-horizontal.svg���������������������0000664�0000000�0000000�00000000476�14753064456�0027752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 20h-8a1 1 0 0 1-1-1V4.97a1 1 0 0 1 .74-.97c.45-.12.91.08 1.13.47l8.02 14.03c.18.31.18.69 0 1s-.51.5-.89.5M2 20c-.38 0-.71-.19-.89-.5a.99.99 0 0 1 0-1L9.13 4.47c.22-.39.68-.59 1.13-.47a1 1 0 0 1 .74.97V19a1 1 0 0 1-1 1zm7-2V8.74L3.71 18z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/reflect-vertical.svg�����������������������0000664�0000000�0000000�00000000526�14753064456�0027366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 23H6c-.39 0-.74-.21-.91-.55a1 1 0 0 1 .1-1.05l6.01-8.02c.38-.51 1.22-.51 1.6 0l6.01 8.02c.23.3.27.71.1 1.05s-.52.55-.91.55m0-22c.39 0 .74.21.91.55s.13.75-.1 1.05l-6.01 8.02c-.38.51-1.22.51-1.6 0L5.19 2.6a1 1 0 0 1-.1-1.05C5.26 1.21 5.61 1 6 1zM8 3l4 5.35L16 3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/refresh-auto.svg���������������������������0000664�0000000�0000000�00000000505�14753064456�0026534�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.68 6h-1.36L7 16h2l.73-2h4.54l.73 2h2zm-2.38 6.5L12 8l1.7 4.5zm7.1 7.9L19 22h-5v-5l2 2c2.39-1.39 4-4.05 4-7 0-4.41-3.59-8-8-8s-8 3.59-8 8c0 2.95 1.61 5.53 4 6.92v2.24C4.47 19.61 2 16.1 2 12 2 6.5 6.5 2 12 2s10 4.5 10 10c0 3.53-1.83 6.62-4.6 8.4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/refresh-circle.svg�������������������������0000664�0000000�0000000�00000000337�14753064456�0027030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2m6 9h-5l1.81-1.81A3.94 3.94 0 0 0 12 8a4 4 0 1 0 3.86 5h2.05A6 6 0 1 1 12 6a5.9 5.9 0 0 1 4.22 1.78L18 6Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/refresh.svg��������������������������������0000664�0000000�0000000�00000000376�14753064456�0025574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.65 6.35A7.96 7.96 0 0 0 12 4a8 8 0 0 0-8 8 8 8 0 0 0 8 8c3.73 0 6.84-2.55 7.73-6h-2.08A5.99 5.99 0 0 1 12 18a6 6 0 0 1-6-6 6 6 0 0 1 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/regex.svg����������������������������������0000664�0000000�0000000�00000001017�14753064456�0025241�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 16.92c-.33.05-.66.08-1 .08s-.67-.03-1-.08v-3.51l-2.5 2.48c-.5-.39-1-.89-1.39-1.39l2.48-2.5H9.08c-.05-.33-.08-.66-.08-1s.03-.67.08-1h3.51l-2.48-2.5c.19-.25.39-.5.65-.74.24-.26.49-.46.74-.65L14 8.59V5.08c.33-.05.66-.08 1-.08s.67.03 1 .08v3.51l2.5-2.48c.5.39 1 .89 1.39 1.39L17.41 10h3.51c.05.33.08.66.08 1s-.03.67-.08 1h-3.51l2.48 2.5c-.19.25-.39.5-.65.74-.24.26-.49.46-.74.65L16 13.41zM5 19a2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/registered-trademark.svg�������������������0000664�0000000�0000000�00000000663�14753064456�0030242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m.25-6.73h-1.44v3.23H9V7.71h3.26q1.545 0 2.4.69c.56.47.84 1.1.84 1.96q0 .9-.39 1.5c-.26.4-.65.72-1.18.95l1.9 3.59v.1h-1.94zm-1.44-1.46h1.46c.45 0 .8-.12 1.05-.35s.37-.55.37-.96-.11-.73-.35-.97c-.23-.24-.59-.35-1.08-.35h-1.45z"/></svg>�����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/reiterate.svg������������������������������0000664�0000000�0000000�00000000427�14753064456�0026117�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 4A6.5 6.5 0 0 0 4 10H1l4 4 4-4H6.03a4.5 4.5 0 0 1 4.47-4 4.5 4.5 0 0 1 4.5 4.5 4.5 4.5 0 0 1-4.5 4.5H2v2h8.5a6.5 6.5 0 0 0 6.5-6.5A6.5 6.5 0 0 0 10.5 4m8.5 8v3h-2.5a7.5 7.5 0 0 1-2.26 2H19v3l4-4Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-many-to-many.svg������������������0000664�0000000�0000000�00000000177�14753064456�0030276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 13v6h-1l-2-2h-8V9H5l-2 2H2V5h1l2 2h8v8h6l2-2Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-many-to-one-or-many.svg�����������0000664�0000000�0000000�00000000216�14753064456�0031465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 13v6h-1l-2-2v2h-2v-2h-6V9H5l-2 2H2V5h1l2 2h8v8h4v-2h2v2l2-2Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-many-to-one.svg�������������������0000664�0000000�0000000�00000000205�14753064456�0030103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 15v2h-3v2h-2v-2h-6V9H5l-2 2H2V5h1l2 2h8v8h4v-2h2v2Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-many-to-only-one.svg��������������0000664�0000000�0000000�00000000231�14753064456�0031061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 15v2h-1v2h-2v-2h-1v2h-2v-2h-5V9H5l-2 2H2V5h1l2 2h8v8h3v-2h2v2h1v-2h2v2Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-many-to-zero-or-many.svg����������0000664�0000000�0000000�00000000324�14753064456�0031663�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21 13-2 2h-.21a2.5 2.5 0 0 0-4.58 0H13V7H5L3 5H2v6h1l2-2h6v8h3.21a2.5 2.5 0 0 0 4.58 0H19l2 2h1v-6m-5.5 4a1 1 0 1 1 1-1 1 1 0 0 1-1 1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-many-to-zero-or-one.svg�����������0000664�0000000�0000000�00000000333�14753064456�0031500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 15v-2h-2v2h-.21a2.5 2.5 0 0 0-4.58 0H13V7H5L3 5H2v6h1l2-2h6v8h3.21a2.5 2.5 0 0 0 4.58 0H19v2h2v-2h1v-2m-5.5 2a1 1 0 1 1 1-1 1 1 0 0 1-1 1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-one-or-many-to-many.svg�����������0000664�0000000�0000000�00000000213�14753064456�0031462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 13v6h-1l-2-2h-8V9H7v2H5V9l-2 2H2V5h1l2 2V5h2v2h6v8h6l2-2Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-one-or-many-to-one-or-many.svg����0000664�0000000�0000000�00000000232�14753064456�0032660�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 13v6h-1l-2-2v2h-2v-2h-6V9H7v2H5V9l-2 2H2V5h1l2 2V5h2v2h6v8h4v-2h2v2l2-2Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-one-or-many-to-one.svg������������0000664�0000000�0000000�00000000221�14753064456�0031276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 15v2h-3v2h-2v-2h-6V9H7v2H5V9l-2 2H2V5h1l2 2V5h2v2h6v8h4v-2h2v2Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-one-or-many-to-only-one.svg�������0000664�0000000�0000000�00000000245�14753064456�0032263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 15v2h-1v2h-2v-2h-1v2h-2v-2h-5V9H7v2H5V9l-2 2H2V5h1l2 2V5h2v2h6v8h3v-2h2v2h1v-2h2v2Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-one-or-many-to-zero-or-many.svg���0000664�0000000�0000000�00000000340�14753064456�0033056�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21 13-2 2h-.21a2.5 2.5 0 0 0-4.58 0H13V7H7V5H5v2L3 5H2v6h1l2-2v2h2V9h4v8h3.21a2.5 2.5 0 0 0 4.58 0H19l2 2h1v-6m-5.5 4a1 1 0 1 1 1-1 1 1 0 0 1-1 1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-one-or-many-to-zero-or-one.svg����0000664�0000000�0000000�00000000347�14753064456�0032702�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 15v-2h-2v2h-.21a2.5 2.5 0 0 0-4.58 0H13V7H7V5H5v2L3 5H2v6h1l2-2v2h2V9h4v8h3.21a2.5 2.5 0 0 0 4.58 0H19v2h2v-2h1v-2m-5.5 2a1 1 0 1 1 1-1 1 1 0 0 1-1 1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-one-to-many.svg�������������������0000664�0000000�0000000�00000000202�14753064456�0030100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 13v6h-1l-2-2h-8V9H7v2H5V9H2V7h3V5h2v2h6v8h6l2-2Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-one-to-one-or-many.svg������������0000664�0000000�0000000�00000000221�14753064456�0031276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 13v6h-1l-2-2v2h-2v-2h-6V9H7v2H5V9H2V7h3V5h2v2h6v8h4v-2h2v2l2-2Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-one-to-one.svg��������������������0000664�0000000�0000000�00000000210�14753064456�0027714�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 15v2h-3v2h-2v-2h-6V9H7v2H5V9H2V7h3V5h2v2h6v8h4v-2h2v2Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-one-to-only-one.svg���������������0000664�0000000�0000000�00000000234�14753064456�0030701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 15v2h-1v2h-2v-2h-1v2h-2v-2h-5V9H7v2H5V9H2V7h3V5h2v2h6v8h3v-2h2v2h1v-2h2v2Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-one-to-zero-or-many.svg�����������0000664�0000000�0000000�00000000330�14753064456�0031475�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21 13-2 2h-.21a2.5 2.5 0 0 0-4.58 0H13V7H7V5H5v2H2v2h3v2h2V9h4v8h3.21a2.5 2.5 0 0 0 4.58 0H19l2 2h1v-6m-5.5 4a1 1 0 1 1 1-1 1 1 0 0 1-1 1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-one-to-zero-or-one.svg������������0000664�0000000�0000000�00000000337�14753064456�0031321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 15v-2h-2v2h-.21a2.5 2.5 0 0 0-4.58 0H13V7H7V5H5v2H2v2h3v2h2V9h4v8h3.21a2.5 2.5 0 0 0 4.58 0H19v2h2v-2h1v-2m-5.5 2a1 1 0 1 1 1-1 1 1 0 0 1-1 1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-only-one-to-many.svg��������������0000664�0000000�0000000�00000000222�14753064456�0031061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 13v6h-1l-2-2h-8V9H8v2H6V9H5v2H3V9H2V7h1V5h2v2h1V5h2v2h5v8h6l2-2Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-only-one-to-one-or-many.svg�������0000664�0000000�0000000�00000000241�14753064456�0032257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 13v6h-1l-2-2v2h-2v-2h-6V9H8v2H6V9H5v2H3V9H2V7h1V5h2v2h1V5h2v2h5v8h4v-2h2v2l2-2Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-only-one-to-one.svg���������������0000664�0000000�0000000�00000000230�14753064456�0030675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 15v2h-3v2h-2v-2h-6V9H8v2H6V9H5v2H3V9H2V7h1V5h2v2h1V5h2v2h5v8h4v-2h2v2Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-only-one-to-only-one.svg����������0000664�0000000�0000000�00000000254�14753064456�0031662�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 15v2h-1v2h-2v-2h-1v2h-2v-2h-5V9H8v2H6V9H5v2H3V9H2V7h1V5h2v2h1V5h2v2h5v8h3v-2h2v2h1v-2h2v2Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-only-one-to-zero-or-many.svg������0000664�0000000�0000000�00000000350�14753064456�0032456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21 13-2 2h-.21a2.5 2.5 0 0 0-4.58 0H13V7H8V5H6v2H5V5H3v2H2v2h1v2h2V9h1v2h2V9h3v8h3.21a2.5 2.5 0 0 0 4.58 0H19l2 2h1v-6m-5.5 4a1 1 0 1 1 1-1 1 1 0 0 1-1 1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-only-one-to-zero-or-one.svg�������0000664�0000000�0000000�00000000357�14753064456�0032302�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 15v-2h-2v2h-.21a2.5 2.5 0 0 0-4.58 0H13V7H8V5H6v2H5V5H3v2H2v2h1v2h2V9h1v2h2V9h3v8h3.21a2.5 2.5 0 0 0 4.58 0H19v2h2v-2h1v-2m-5.5 2a1 1 0 1 1 1-1 1 1 0 0 1-1 1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-zero-or-many-to-many.svg����������0000664�0000000�0000000�00000000322�14753064456�0031661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21 13-2 2h-6V7H9.79a2.5 2.5 0 0 0-4.58 0H5L3 5H2v6h1l2-2h.21a2.5 2.5 0 0 0 4.58 0H11v8h8l2 2h1v-6M7.5 9a1 1 0 1 1 1-1 1 1 0 0 1-1 1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-zero-or-many-to-one-or-many.svg���0000664�0000000�0000000�00000000341�14753064456�0033057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21 13-2 2v-2h-2v2h-4V7H9.79a2.5 2.5 0 0 0-4.58 0H5L3 5H2v6h1l2-2h.21a2.5 2.5 0 0 0 4.58 0H11v8h6v2h2v-2l2 2h1v-6M7.5 9a1 1 0 1 1 1-1 1 1 0 0 1-1 1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-zero-or-many-to-one.svg�����������0000664�0000000�0000000�00000000331�14753064456�0031476�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 15v-2h-2v2h-4V7H9.79a2.5 2.5 0 0 0-4.58 0H5L3 5H2v6h1l2-2h.21a2.5 2.5 0 0 0 4.58 0H11v8h6v2h2v-2h3v-2M7.5 9a1 1 0 1 1 1-1 1 1 0 0 1-1 1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-zero-or-many-to-only-one.svg������0000664�0000000�0000000�00000000355�14753064456�0032463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 15v-2h-2v2h-1v-2h-2v2h-3V7H9.79a2.5 2.5 0 0 0-4.58 0H5L3 5H2v6h1l2-2h.21a2.5 2.5 0 0 0 4.58 0H11v8h5v2h2v-2h1v2h2v-2h1v-2M7.5 9a1 1 0 1 1 1-1 1 1 0 0 1-1 1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-zero-or-many-to-zero-or-many.svg��0000664�0000000�0000000�00000000447�14753064456�0033264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21 13-2 2h-.21a2.5 2.5 0 0 0-4.58 0H13V7H9.79a2.5 2.5 0 0 0-4.58 0H5L3 5H2v6h1l2-2h.21a2.5 2.5 0 0 0 4.58 0H11v8h3.21a2.5 2.5 0 0 0 4.58 0H19l2 2h1v-6M7.5 9a1 1 0 1 1 1-1 1 1 0 0 1-1 1m9 8a1 1 0 1 1 1-1 1 1 0 0 1-1 1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-zero-or-many-to-zero-or-one.svg���0000664�0000000�0000000�00000000456�14753064456�0033101�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 15v-2h-2v2h-.21a2.5 2.5 0 0 0-4.58 0H13V7H9.79a2.5 2.5 0 0 0-4.58 0H5L3 5H2v6h1l2-2h.21a2.5 2.5 0 0 0 4.58 0H11v8h3.21a2.5 2.5 0 0 0 4.58 0H19v2h2v-2h1v-2M7.5 9a1 1 0 1 1 1-1 1 1 0 0 1-1 1m9 8a1 1 0 1 1 1-1 1 1 0 0 1-1 1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-zero-or-one-to-many.svg�����������0000664�0000000�0000000�00000000326�14753064456�0031502�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21 13-2 2h-6V7H9.79a2.5 2.5 0 0 0-4.58 0H5V5H3v2H2v2h1v2h2V9h.21a2.5 2.5 0 0 0 4.58 0H11v8h8l2 2h1v-6M7.5 9a1 1 0 1 1 1-1 1 1 0 0 1-1 1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-zero-or-one-to-one-or-many.svg����0000664�0000000�0000000�00000000345�14753064456�0032700�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21 13-2 2v-2h-2v2h-4V7H9.79a2.5 2.5 0 0 0-4.58 0H5V5H3v2H2v2h1v2h2V9h.21a2.5 2.5 0 0 0 4.58 0H11v8h6v2h2v-2l2 2h1v-6M7.5 9a1 1 0 1 1 1-1 1 1 0 0 1-1 1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-zero-or-one-to-one.svg������������0000664�0000000�0000000�00000000335�14753064456�0031317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 15v-2h-2v2h-4V7H9.79a2.5 2.5 0 0 0-4.58 0H5V5H3v2H2v2h1v2h2V9h.21a2.5 2.5 0 0 0 4.58 0H11v8h6v2h2v-2h3v-2M7.5 9a1 1 0 1 1 1-1 1 1 0 0 1-1 1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-zero-or-one-to-only-one.svg�������0000664�0000000�0000000�00000000361�14753064456�0032275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 15v-2h-2v2h-1v-2h-2v2h-3V7H9.79a2.5 2.5 0 0 0-4.58 0H5V5H3v2H2v2h1v2h2V9h.21a2.5 2.5 0 0 0 4.58 0H11v8h5v2h2v-2h1v2h2v-2h1v-2M7.5 9a1 1 0 1 1 1-1 1 1 0 0 1-1 1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-zero-or-one-to-zero-or-many.svg���0000664�0000000�0000000�00000000453�14753064456�0033076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21 13-2 2h-.21a2.5 2.5 0 0 0-4.58 0H13V7H9.79a2.5 2.5 0 0 0-4.58 0H5V5H3v2H2v2h1v2h2V9h.21a2.5 2.5 0 0 0 4.58 0H11v8h3.21a2.5 2.5 0 0 0 4.58 0H19l2 2h1v-6M7.5 9a1 1 0 1 1 1-1 1 1 0 0 1-1 1m9 8a1 1 0 1 1 1-1 1 1 0 0 1-1 1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relation-zero-or-one-to-zero-or-one.svg����0000664�0000000�0000000�00000000462�14753064456�0032713�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 15v-2h-2v2h-.21a2.5 2.5 0 0 0-4.58 0H13V7H9.79a2.5 2.5 0 0 0-4.58 0H5V5H3v2H2v2h1v2h2V9h.21a2.5 2.5 0 0 0 4.58 0H11v8h3.21a2.5 2.5 0 0 0 4.58 0H19v2h2v-2h1v-2M7.5 9a1 1 0 1 1 1-1 1 1 0 0 1-1 1m9 8a1 1 0 1 1 1-1 1 1 0 0 1-1 1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/relative-scale.svg�������������������������0000664�0000000�0000000�00000000323�14753064456�0027026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 18H4V6h16m0-2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m-8 6h-2v2h2m-4-2H6v2h2m8 2h-2v2h2m0-6h-2v2h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/reload-alert.svg���������������������������0000664�0000000�0000000�00000000370�14753064456�0026503�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 12c0 5 4 9 9 9 2.4 0 4.7-.9 6.4-2.6l-1.5-1.5c-1.3 1.4-3 2.1-4.9 2.1-6.2 0-9.4-7.5-4.9-11.9S18 5.8 18 12h-3l4 4h.1l3.9-4h-3c0-5-4-9-9-9s-9 4-9 9m8 3h2v2h-2zm0-8h2v6h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/reload.svg���������������������������������0000664�0000000�0000000�00000000343�14753064456�0025376�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 12a9 9 0 0 0 9 9c2.39 0 4.68-.94 6.4-2.6l-1.5-1.5A6.7 6.7 0 0 1 11 19c-6.24 0-9.36-7.54-4.95-11.95S18 5.77 18 12h-3l4 4h.1l3.9-4h-3a9 9 0 0 0-18 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/reminder.svg�������������������������������0000664�0000000�0000000�00000001132�14753064456�0025732�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.25 3c.65 0 1.25.21 1.75.56V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.57c.5-.35 1.1-.57 1.75-.57a3 3 0 0 1 3 3c0 1.58-1.21 2.87-2.75 3h-2v1h1.24l.48.13 4.59 2.29c.82.31 1.22.92 1.22 1.83l-.03.14v.14l-1 6.75c-.06.47-.28.88-.66 1.22-.37.34-.79.5-1.26.5H10c-.55 0-1-.19-1.42-.59L2 15.84l1.05-1.07c.28-.27.64-.43 1.08-.43h.32l4.55.99V9H7a3.02 3.02 0 0 1-2.75-3 3 3 0 0 1 3-3M9 6a1.75 1.75 0 0 0-1.75-1.75A1.75 1.75 0 0 0 5.5 6c0 .88.65 1.61 1.5 1.73v.02h2zm6 1.75v-.01c.85-.12 1.5-.85 1.5-1.74 0-.96-.78-1.74-1.75-1.74S13 5.04 13 6v1.75z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/remote-desktop.svg�������������������������0000664�0000000�0000000�00000000405�14753064456�0027071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 2a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h7v2H8v2h8v-2h-2v-2h7a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2M3 4h18v12H3M15 5l-3.5 3.5L15 12l1.4-1.4-2.1-2.1 2.1-2.1M9 8 7.6 9.4l2.1 2.1-2.1 2.1L9 15l3.5-3.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/remote-off.svg�����������������������������0000664�0000000�0000000�00000000746�14753064456�0026202�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5.27 3.28 4 21 21.72 19.73 23 16 19.27V22a1 1 0 0 1-1 1H9c-.54 0-1-.45-1-1V11.27zM12 0c3.05 0 5.8 1.23 7.77 3.23l-1.41 1.41C16.75 3 14.5 2 12 2c-2.28 0-4.36.85-5.94 2.24L4.64 2.82C6.59 1.07 9.17 0 12 0m0 4c1.94 0 3.69.78 4.95 2.05l-1.4 1.41C14.64 6.56 13.39 6 12 6c-1.17 0-2.24.4-3.1 1.08L7.5 5.66A6.85 6.85 0 0 1 12 4m3 5c.56 0 1 .45 1 1v4.18l-2.5-2.49-.19-.19L10.82 9zm-4.97 4.3c.13.86.81 1.55 1.68 1.7z"/></svg>��������������������������mkdocs-material-9.6.4/material/templates/.icons/material/remote-tv-off.svg��������������������������0000664�0000000�0000000�00000000467�14753064456�0026631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5.27 3.28 4 20 20.72 18.73 22 17 20.25c-.14.99-1 1.75-2 1.75H9a2 2 0 0 1-2-2v-9.73zM9 2h2v2h2V2h2a2 2 0 0 1 2 2v11.18l-4-4V10h2V8h-2V6h-2v2H9.82L7 5.18V4a2 2 0 0 1 2-2m0 18h2v-2H9zm4 0h2v-1.73l-.27-.27H13zm-4-6v2h2v-1.73l-.27-.27z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/remote-tv.svg������������������������������0000664�0000000�0000000�00000000366�14753064456�0026057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h6c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2h-2v2h-2V2zm2 4h2v2h2v2h-2v2h-2v-2H9V8h2zm-2 8h2v2H9zm4 0h2v2h-2zm-4 4h2v2H9zm4 0h2v2h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/remote.svg���������������������������������0000664�0000000�0000000�00000000656�14753064456�0025432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C8.96 0 6.21 1.23 4.22 3.22l1.41 1.41A8.95 8.95 0 0 1 12 2c2.5 0 4.74 1 6.36 2.64l1.41-1.41C17.79 1.23 15.04 0 12 0M7.05 6.05l1.41 1.41a5.02 5.02 0 0 1 7.08 0l1.41-1.41A6.98 6.98 0 0 0 12 4c-1.93 0-3.68.78-4.95 2.05M12 15a2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2m3-6H9a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V10a1 1 0 0 0-1-1"/></svg>����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rename-box-outline.svg���������������������0000664�0000000�0000000�00000000365�14753064456�0027646�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 17h-5.5l2-2H17M7 17v-2.5l7.9-7.8c.2-.2.5-.2.7 0l1.8 1.8c.2.2.2.5 0 .7L9.5 17M19 5v14H5V5zm0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rename-box.svg�����������������������������0000664�0000000�0000000�00000000363�14753064456�0026167�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 17h-7.5l2-2H18M6 17v-2.5l7.88-7.85c.19-.2.51-.2.71 0l1.76 1.76c.2.2.2.51 0 .71L8.47 17M19 3H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rename-outline.svg�������������������������0000664�0000000�0000000�00000000401�14753064456�0027047�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15 16-4 4h10v-4zm-2.94-8.81L3 16.25V20h3.75l9.06-9.06zM5.92 18H5v-.92L12.06 10l.94.94zm12.79-9.96c.39-.39.39-1.04 0-1.41l-2.34-2.34a1.001 1.001 0 0 0-1.41 0l-1.83 1.83 3.75 3.75z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rename.svg���������������������������������0000664�0000000�0000000�00000000336�14753064456�0025401�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15 16-4 4h10v-4zm-2.94-8.81L3 16.25V20h3.75l9.06-9.06zm6.65.85c.39-.39.39-1.04 0-1.41l-2.34-2.34a1.001 1.001 0 0 0-1.41 0l-1.83 1.83 3.75 3.75z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/reorder-horizontal.svg���������������������0000664�0000000�0000000�00000000201�14753064456�0027752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 15h18v-2H3zm0 4h18v-2H3zm0-8h18V9H3zm0-6v2h18V5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/reorder-vertical.svg�����������������������0000664�0000000�0000000�00000000177�14753064456�0027406�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 3v18h2V3zM5 3v18h2V3zm8 0v18h2V3zm6 0h-2v18h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/repeat-off.svg�����������������������������0000664�0000000�0000000�00000000310�14753064456�0026152�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5.27 3.28 4 20 20.72 18.73 22l-3-3H7v3l-4-4 4-4v3h6.73L7 10.27V11H5V8.27zM17 13h2v4.18l-2-2zm0-8V2l4 4-4 4V7H8.82l-2-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/repeat-once.svg����������������������������0000664�0000000�0000000�00000000240�14753064456�0026326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 15V9h-1l-2 1v1h1.5v4m5.5 2H7v-3l-4 4 4 4v-3h12v-6h-2M7 7h10v3l4-4-4-4v3H5v6h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/repeat-variant.svg�������������������������0000664�0000000�0000000�00000000274�14753064456�0027055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 5.75 10.25 10H7v6h6.5l2 2H7a2 2 0 0 1-2-2v-6H1.75zm12 12.5L13.75 14H17V8h-6.5l-2-2H17a2 2 0 0 1 2 2v6h3.25z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/repeat.svg���������������������������������0000664�0000000�0000000�00000000210�14753064456�0025401�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 17H7v-3l-4 4 4 4v-3h12v-6h-2M7 7h10v3l4-4-4-4v3H5v6h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/replay.svg���������������������������������0000664�0000000�0000000�00000000265�14753064456�0025427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 5V1L7 6l5 5V7a6 6 0 0 1 6 6 6 6 0 0 1-6 6 6 6 0 0 1-6-6H4a8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/reply-all-outline.svg����������������������0000664�0000000�0000000�00000000344�14753064456�0027507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 9.8v.9l1.7.2c2.6.4 4.5 1.4 5.9 2.7-1.7-.5-3.5-.8-5.6-.8h-2v1.3L8.8 12zM13 5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11M7 8V5l-7 7 7 7v-3l-4-4"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/reply-all.svg������������������������������0000664�0000000�0000000�00000000235�14753064456�0026031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11M7 8V5l-7 7 7 7v-3l-4-4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/reply-circle.svg���������������������������0000664�0000000�0000000�00000000302�14753064456�0026515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 12c0 5.5 4.5 10 10 10s10-4.5 10-10S17.5 2 12 2 2 6.5 2 12m3-1 5-5v3c5.06.73 7.28 4.33 8 8-1.81-2.57-4.39-4-8-4v3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/reply-outline.svg��������������������������0000664�0000000�0000000�00000000313�14753064456�0026735�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 9.8v.9l1.7.3c2.6.4 4.5 1.4 5.9 2.7-1.7-.5-3.5-.8-5.6-.8H8v1.3L5.8 12zM10 5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/reply.svg����������������������������������0000664�0000000�0000000�00000000205�14753064456�0025260�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/reproduction.svg���������������������������0000664�0000000�0000000�00000001041�14753064456�0026641�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.72 13.15.9-.89c-.02-1.26.69-2.82 2-4.12 1.95-1.96 4.49-2.59 5.66-1.42s.54 3.71-1.42 5.66c-1.3 1.31-2.86 2.02-4.12 2l-.89.9c-.35.33-.85.38-1.25.13-.84.3-1.6.67-2.04 1.39-.53.88-.53 2.3-1.09 3.15-.56.86-1.68 1.15-2.86 1.15S5 21 3.95 19.5l2.48.42c.57.08 2.07-.53 2.62-1.38.56-.86.56-2.27 1.09-3.16.47-.78 1.36-1.15 2.29-1.47-.01-.27.07-.55.29-.76M7 2a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/resistor-nodes.svg�������������������������0000664�0000000�0000000�00000001011�14753064456�0027101�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 11h1.67c.41-1.17 1.52-2 2.83-2a3 3 0 0 1 3 3c0 .65-.21 1.25-.56 1.74l1.13 1.61L13.11 4l1.5 2.13 2.09 2.98.8-.11c1.31 0 2.42.83 2.83 2H22v2h-1.67a2.99 2.99 0 0 1-2.83 2 3 3 0 0 1-3-3c0-.65.21-1.25.56-1.74l-1.13-1.61L10.89 20 7.3 14.89A2.99 2.99 0 0 1 3.67 13H2zm15.5-.5A1.5 1.5 0 0 0 16 12a1.5 1.5 0 0 0 1.5 1.5A1.5 1.5 0 0 0 19 12a1.5 1.5 0 0 0-1.5-1.5m-11 0A1.5 1.5 0 0 0 5 12a1.5 1.5 0 0 0 1.5 1.5A1.5 1.5 0 0 0 8 12a1.5 1.5 0 0 0-1.5-1.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/resistor.svg�������������������������������0000664�0000000�0000000�00000000220�14753064456�0025774�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 11h5l3.07 4.35L13.11 4 18 11h4v2h-5l-3.07-4.35L10.89 20 6 13H2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/resize-bottom-right.svg��������������������0000664�0000000�0000000�00000000240�14753064456�0030042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 22h-2v-2h2zm0-4h-2v-2h2zm-4 4h-2v-2h2zm0-4h-2v-2h2zm-4 4h-2v-2h2zm8-8h-2v-2h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/resize.svg���������������������������������0000664�0000000�0000000�00000000241�14753064456�0025426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.59 12 4-4H11V6h7v7h-2V9.41l-4 4V16h8V4H8v8zM22 2v16H12v4H2V12h4V2zM10 14H4v6h6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/responsive.svg�����������������������������0000664�0000000�0000000�00000000624�14753064456�0026327�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 6v10h5v-4a2 2 0 0 1 2-2h5a2 2 0 0 1 2 2v4h2V6zM0 20v-2h4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h4v2h-6a2 2 0 0 1-2 2h-5a2 2 0 0 1-2-2zm11.5 0a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5m4 0a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5M13 20v1h1v-1zm-2-8v7h5v-7z"/></svg>������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/restart-alert.svg��������������������������0000664�0000000�0000000�00000000623�14753064456�0026722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 4.03V.633L5 5.63l5 5v-4.6c1.5 0 3.11.6 4.21 1.7 2.29 2.4 2.29 6.2 0 8.5-1.3 1.3-3.1 1.9-4.81 1.7l-.5 2c2.41.3 4.91-.4 6.71-2.3 3.09-3.1 3.09-8.2 0-11.3-1.5-1.5-3.5-2.3-5.61-2.3m-5.69 13.6c.8.8 1.69 1.4 2.69 1.8l.61-2q-1.05-.45-1.8-1.2c-1.9-1.8-2.31-4.6-1.2-6.8l-1.5-1.5c-1.8 3.1-1.4 7.1 1.2 9.7M20 13h2V7h-2zm0 4h2v-2h-2z"/></svg>�������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/restart-off.svg����������������������������0000664�0000000�0000000�00000000631�14753064456�0026364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.8 22.7-4.2-4.2c-1.7 1.2-3.7 1.7-5.7 1.4l.5-2c1.3.1 2.6-.2 3.7-.9L1.1 3l1.3-1.3 14.1 14.1 1.4 1.4 4.2 4.2zM12 6c1.5 0 3.1.6 4.2 1.8 1.8 1.8 2.2 4.4 1.3 6.6l1.5 1.5c1.7-3 1.2-6.9-1.4-9.5C16.1 4.8 14 4 12 4V.7l-4.1 4L12 8.8zM6.6 9.4 5.1 7.9C3.3 11 3.7 15 6.3 17.7c.8.7 1.7 1.3 2.7 1.7l.5-2q-.9-.45-1.8-1.2c-1.8-1.8-2.2-4.6-1.1-6.8"/></svg>�������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/restart.svg��������������������������������0000664�0000000�0000000�00000000513�14753064456�0025613�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4c2.1 0 4.1.8 5.6 2.3 3.1 3.1 3.1 8.2 0 11.3-1.8 1.9-4.3 2.6-6.7 2.3l.5-2c1.7.2 3.5-.4 4.8-1.7 2.3-2.3 2.3-6.1 0-8.5C15.1 6.6 13.5 6 12 6v4.6l-5-5 5-5zM6.3 17.6C3.7 15 3.3 11 5.1 7.9l1.5 1.5c-1.1 2.2-.7 5 1.2 6.8q.75.75 1.8 1.2l-.6 2q-1.5-.6-2.7-1.8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/restore-alert.svg��������������������������0000664�0000000�0000000�00000000373�14753064456�0026723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3c-5 0-9 4-9 9H1l3.9 3.9.1.1 4-4H6c0-3.9 3.1-7 7-7s7 3.1 7 7-3.1 7-7 7c-1.9 0-3.7-.8-4.9-2.1l-1.4 1.4C8.3 20 10.5 21 13 21c5 0 9-4 9-9s-4-9-9-9m-1 12h2v2h-2zm0-8h2v6h-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/restore.svg��������������������������������0000664�0000000�0000000�00000000372�14753064456�0025615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3a9 9 0 0 0-9 9H1l3.89 3.89.07.14L9 12H6a7 7 0 0 1 7-7 7 7 0 0 1 7 7 7 7 0 0 1-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42A8.9 8.9 0 0 0 13 21a9 9 0 0 0 9-9 9 9 0 0 0-9-9"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rewind-10.svg������������������������������0000664�0000000�0000000�00000000476�14753064456�0025645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.5 3c4.65 0 8.58 3.03 9.97 7.22L20.1 11c-1.05-3.19-4.06-5.5-7.6-5.5-1.96 0-3.73.72-5.12 1.88L10 10H3V3l2.6 2.6C7.45 4 9.85 3 12.5 3M10 12v10H8v-8H6v-2zm8 2v6c0 1.11-.89 2-2 2h-2a2 2 0 0 1-2-2v-6a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2m-4 0v6h2v-6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rewind-15.svg������������������������������0000664�0000000�0000000�00000000447�14753064456�0025650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.5 3c4.65 0 8.58 3.03 9.97 7.22L20.1 11c-1.05-3.19-4.06-5.5-7.6-5.5-1.96 0-3.73.72-5.12 1.88L10 10H3V3l2.6 2.6C7.45 4 9.85 3 12.5 3M10 12v10H8v-8H6v-2zm2 0h6v2h-4v2h2a2 2 0 0 1 2 2v2c0 1.11-.89 2-2 2h-4v-2h4v-2h-4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rewind-30.svg������������������������������0000664�0000000�0000000�00000000630�14753064456�0025637�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 14v6c0 1.11-.89 2-2 2h-2a2 2 0 0 1-2-2v-6a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2m-4 0v6h2v-6zm-4 6a2 2 0 0 1-2 2H5v-2h4v-2H7v-2h2v-2H5v-2h4a2 2 0 0 1 2 2v1.5A1.5 1.5 0 0 1 9.5 17a1.5 1.5 0 0 1 1.5 1.5zm1.5-17c4.65 0 8.58 3.03 9.97 7.22L20.1 11c-1.05-3.19-4.06-5.5-7.6-5.5-1.96 0-3.73.72-5.12 1.88L10 10H3V3l2.6 2.6C7.45 4 9.85 3 12.5 3"/></svg>��������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rewind-45.svg������������������������������0000664�0000000�0000000�00000000427�14753064456�0025651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.5 3c4.6 0 8.6 3 10 7.2l-2.4.8C19 7.8 16 5.5 12.5 5.5c-2 0-3.7.7-5.1 1.9L10 10H3V3l2.6 2.6C7.4 4 9.9 3 12.5 3m.5 9h6v2h-4v2h2c1.1 0 2 .9 2 2v2c0 1.1-.9 2-2 2h-4v-2h4v-2h-4zm-8 0v6h4v4h2V12H9v4H7v-4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rewind-5.svg�������������������������������0000664�0000000�0000000�00000000422�14753064456�0025560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.5 3c4.65 0 8.58 3.03 9.97 7.22L20.1 11c-1.05-3.19-4.06-5.5-7.6-5.5-1.96 0-3.73.72-5.12 1.88L10 10H3V3l2.6 2.6C7.45 4 9.85 3 12.5 3M9 12h6v2h-4v2h2a2 2 0 0 1 2 2v2c0 1.11-.89 2-2 2H9v-2h4v-2H9z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rewind-60.svg������������������������������0000664�0000000�0000000�00000000565�14753064456�0025651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 14v6c0 1.1-.9 2-2 2h-2c-1.1 0-2-.9-2-2v-6c0-1.1.9-2 2-2h2c1.1 0 2 .9 2 2m-4 0v6h2v-6zM12.5 3c4.6 0 8.6 3 10 7.2l-2.4.8C19 7.8 16 5.5 12.5 5.5c-2 0-3.7.7-5.1 1.9L10 10H3V3l2.6 2.6C7.4 4 9.9 3 12.5 3M7 12c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2H7v-2h4v-2zm0 6h2v2H7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rewind-outline.svg�������������������������0000664�0000000�0000000�00000000221�14753064456�0027070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 9.9 7 12l3 2.1zm9 0L16 12l3 2.1zM12 6v12l-8.5-6zm9 0v12l-8.5-6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rewind.svg���������������������������������0000664�0000000�0000000�00000000156�14753064456�0025422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.5 12 8.5 6V6m-9 12V6l-8.5 6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rhombus-medium-outline.svg�����������������0000664�0000000�0000000�00000000423�14753064456�0030541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6.46c-.28 0-.56.1-.78.32l-4.44 4.44c-.43.43-.43 1.13 0 1.56l4.44 4.44c.43.43 1.13.43 1.56 0l4.44-4.44c.43-.43.43-1.13 0-1.56l-4.44-4.44c-.22-.22-.5-.32-.78-.32m0 2.37L15.17 12 12 15.17 8.83 12z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rhombus-medium.svg�������������������������0000664�0000000�0000000�00000000361�14753064456�0027065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6.46c-.28 0-.56.1-.78.32l-4.44 4.44c-.43.43-.43 1.13 0 1.56l4.44 4.44c.43.43 1.13.43 1.56 0l4.44-4.44c.43-.43.43-1.13 0-1.56l-4.44-4.44c-.22-.22-.5-.32-.78-.32"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rhombus-outline.svg������������������������0000664�0000000�0000000�00000000343�14753064456�0027264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c-.5 0-1 .19-1.41.59l-8 8c-.79.78-.79 2.04 0 2.82l8 8c.78.79 2.04.79 2.82 0l8-8c.79-.78.79-2.04 0-2.82l-8-8C13 2.19 12.5 2 12 2m0 2 8 8-8 8-8-8Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rhombus-split-outline.svg������������������0000664�0000000�0000000�00000000533�14753064456�0030416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c-.5 0-1 .19-1.41.59l-8 8c-.79.78-.79 2.04 0 2.82l8 8c.78.79 2.04.79 2.82 0l8-8c.79-.78.79-2.04 0-2.82l-8-8C13 2.19 12.5 2 12 2m0 2 3.29 3.29-3.29 3.3-3.29-3.3zM7.29 8.71l3.3 3.29-3.3 3.29L4 12zm9.42 0L20 12l-3.29 3.29-3.3-3.29zM12 13.41l3.29 3.3L12 20l-3.29-3.29z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rhombus-split.svg��������������������������0000664�0000000�0000000�00000000526�14753064456�0026743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c-.5 0-1 .19-1.41.59l-3.3 3.29 4.71 4.7 4.71-4.7-3.3-3.29C13 2.19 12.5 2 12 2M5.88 7.29l-3.29 3.3c-.79.78-.79 2.04 0 2.82l3.29 3.3 4.7-4.71zm12.24 0L13.42 12l4.7 4.71 3.29-3.3c.79-.78.79-2.04 0-2.82zM12 13.42l-4.71 4.7 3.3 3.29c.78.79 2.04.79 2.82 0l3.3-3.29z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rhombus.svg��������������������������������0000664�0000000�0000000�00000000322�14753064456�0025604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c-.5 0-1 .19-1.41.59l-8 8c-.79.78-.79 2.04 0 2.82l8 8c.78.79 2.04.79 2.82 0l8-8c.79-.78.79-2.04 0-2.82l-8-8C13 2.19 12.5 2 12 2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ribbon.svg���������������������������������0000664�0000000�0000000�00000000523�14753064456�0025403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.41 19.31 3.18 3.19L18 21.07l-3.17-3.17m.71-6.37h-.01L12 15.07l-3.53-3.54h-.01A4.98 4.98 0 0 1 7 8a5 5 0 0 1 5-5 5 5 0 0 1 5 5c0 1.38-.56 2.63-1.46 3.53M16.9 13A6.96 6.96 0 0 0 19 8a7 7 0 0 0-7-7 7 7 0 0 0-7 7c0 1.96.81 3.73 2.1 5l3.49 3.5L6 21.07l1.41 1.43z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rice.svg�����������������������������������0000664�0000000�0000000�00000000472�14753064456�0025055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 11h-2.3c-.3-1.1-.8-2.2-1.5-3l3.4-5.4-1.7-1.1-3.2 5.1c-.4-.3-.7-.5-1.2-.7l.9-3.6-1.9-.5-.8 3.4c-.6-.1-1.1-.2-1.7-.2-3.7 0-6.8 2.6-7.7 6H2c0 4.1 2.5 7.6 6 9.2V22h8v-1.8c3.5-1.6 6-5.1 6-9.2M12 7c2.6 0 4.8 1.7 5.6 4H6.4c.8-2.3 3-4 5.6-4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rickshaw-electric.svg����������������������0000664�0000000�0000000�00000000677�14753064456�0027545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 12.05v-1.32c0-.47-.16-.93-.46-1.29L15.6 4.72c-.38-.46-.94-.72-1.54-.72H4c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h.05a2.5 2.5 0 0 0 4.9 0h8.1A2.5 2.5 0 1 0 20 12.05M3.5 6c0-.27.23-.5.5-.5h3V10H3.5zm3 9.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m6.5-2H9V12h2v-2H9V5.5h4zm2-7.16L18.05 10H15zm4.5 9.16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1M11 20H7l6 3v-2h4l-6-3z"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rickshaw.svg�������������������������������0000664�0000000�0000000�00000000650�14753064456�0025744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 14.05v-1.32c0-.47-.16-.93-.46-1.29L15.6 6.72c-.38-.46-.94-.72-1.54-.72H4c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h.05a2.5 2.5 0 0 0 4.9 0h8.1A2.5 2.5 0 1 0 20 14.05M3.5 8c0-.27.23-.5.5-.5h3V12H3.5zm3 9.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m6.5-2H9V14h2v-2H9V7.5h4zm2-7.16L18.05 12H15zm4.5 9.16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ring.svg�����������������������������������0000664�0000000�0000000�00000000420�14753064456�0025063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10 8 4.4 9.6 2h4.8L16 4.4zm3.5-3.2-1.2 1.7c2.2.9 3.7 3 3.7 5.5a6 6 0 0 1-6 6 6 6 0 0 1-6-6c0-2.5 1.5-4.6 3.7-5.5L8.5 6.8C5.8 8.1 4 10.8 4 14a8 8 0 0 0 8 8 8 8 0 0 0 8-8c0-3.2-1.8-5.9-4.5-7.2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rivet.svg����������������������������������0000664�0000000�0000000�00000000312�14753064456�0025255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.43 2c-.82 0-1.49.65-1.49 1.5v3.46H7.95v.99h7.96v-.99h-1.99V3.5c0-.85-.67-1.5-1.49-1.5zm-.49 6.95v12.92l.99 1 .99-1V8.95z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/road-variant.svg���������������������������0000664�0000000�0000000�00000000350�14753064456�0026515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.1 4.8c-.1-.5-.5-.8-1-.8H13l.2 3h-2.4l.2-3H6.8c-.5 0-.9.4-1 .8l-2.7 14c-.1.6.4 1.2 1 1.2H10l.3-5h3.4l.3 5h5.8c.6 0 1.1-.6 1-1.2zM10.4 13l.2-4h2.6l.2 4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/road.svg�����������������������������������0000664�0000000�0000000�00000000200�14753064456�0025045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 16h2v4h-2m0-10h2v4h-2m0-10h2v4h-2M4 22h16V2H4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/robber.svg���������������������������������0000664�0000000�0000000�00000000664�14753064456�0025411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.7 12.5c0 .3-1.3.7-2.3.7s-2.1-.7-2.1-.9c0-.3.7-1.2 2.3-1.3.9-.1 1.9.5 2.1 1.5m4.7-1.5c-1-.1-1.9.5-2.1 1.5 0 .3 1.2.7 2.3.7s2.1-.7 2.1-.9-.7-1.2-2.3-1.3m6.6 1c0 5.5-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2s10 4.5 10 10m-2-.8c0-2-.7-2.7-3.3-2.7S13.3 9.6 12 9.6s-2-1.1-4.7-1.1S4 9.1 4 11.2c0 3.4 1.5 5.3 3.6 5.3 1.6 0 2.8-2 4.4-2s2.7 2 4.4 2c2.1 0 3.6-1.9 3.6-5.3"/></svg>����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/robot-angry-outline.svg��������������������0000664�0000000�0000000�00000000777�14753064456�0030063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 14h-1c0-3.87-3.13-7-7-7h-1V5.73A2 2 0 1 0 10 4c0 .74.4 1.39 1 1.73V7h-1c-3.87 0-7 3.13-7 7H2c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h1v1a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1m-1 3h-2v3H5v-3H3v-1h2v-2c0-2.76 2.24-5 5-5h4c2.76 0 5 2.24 5 5v2h2zm-3.5-1.5c0 1.11-.89 2-2 2-.97 0-1.77-.69-1.96-1.6l2.96-2.12c.6.35 1 .98 1 1.72m-10-1.72 2.96 2.12c-.18.91-.99 1.6-1.96 1.6a2 2 0 0 1-2-2c0-.74.4-1.37 1-1.72"/></svg>�mkdocs-material-9.6.4/material/templates/.icons/material/robot-angry.svg����������������������������0000664�0000000�0000000�00000000671�14753064456�0026377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 14h-1c0-3.87-3.13-7-7-7h-1V5.73A2 2 0 1 0 10 4c0 .74.4 1.39 1 1.73V7h-1c-3.87 0-7 3.13-7 7H2c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h1v1a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1M7.5 18A2.5 2.5 0 0 1 5 15.5c0-.82.4-1.54 1-2l3.83 2.88C9.5 17.32 8.57 18 7.5 18m9 0c-1.07 0-2-.68-2.33-1.62L18 13.5c.6.46 1 1.18 1 2a2.5 2.5 0 0 1-2.5 2.5"/></svg>�����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/robot-confused-outline.svg�����������������0000664�0000000�0000000�00000001153�14753064456�0030536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 8h1v1h-1zm1-3h-1v2h1V6h.5c.28 0 .5-.22.5-.5v-2c0-.28-.22-.5-.5-.5H18v1h2zm-3-2h-1v4h1zm-3.5 12.5a2 2 0 1 0 4 0c0-1.11-.89-2-2-2s-2 .9-2 2M17 8h-1v1h1zm5 6h-1c0-1.5-.47-2.87-1.26-4h-2.77c1.22.91 2.03 2.36 2.03 4v2h2v1h-2v3H5v-3H3v-1h2v-2c0-2.76 2.24-5 5-5h4c.34 0 .68.04 1 .1V7.08c-.33-.05-.66-.08-1-.08h-1V5.73A2 2 0 1 0 10 4c0 .74.4 1.39 1 1.73V7h-1c-3.87 0-7 3.13-7 7H2c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h1v1a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1m-13.5-.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.89 2-2-.89-2-2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/robot-confused.svg�������������������������0000664�0000000�0000000�00000001016�14753064456�0027057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4h-2V3h2.5c.28 0 .5.22.5.5v2c0 .28-.22.5-.5.5H20v1h-1V5h1zm-1 5h1V8h-1zm-2-6h-1v4h1zm6 12v3c0 .55-.45 1-1 1h-1v1c0 1.11-.89 2-2 2H5a2 2 0 0 1-2-2v-1H2c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1h1c0-3.87 3.13-7 7-7h1V5.73c-.6-.34-1-.99-1-1.73 0-1.1.9-2 2-2s2 .9 2 2c0 .74-.4 1.39-1 1.73V7h1c.34 0 .67.03 1 .08V10h4.74A6.94 6.94 0 0 1 21 14h1c.55 0 1 .45 1 1m-13 .5a2.5 2.5 0 0 0-5 0 2.5 2.5 0 0 0 5 0m9 0a2.5 2.5 0 0 0-5 0 2.5 2.5 0 0 0 5 0M17 8h-1v1h1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/robot-dead-outline.svg���������������������0000664�0000000�0000000�00000001162�14753064456�0027625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.62 14.44 9.56 15.5l1.06 1.06-1.06 1.06-1.06-1.06-1.06 1.06-1.06-1.06 1.06-1.06-1.06-1.06 1.06-1.06 1.06 1.06 1.06-1.06zm5.94-1.06-1.06 1.06-1.06-1.06-1.06 1.06 1.06 1.06-1.06 1.06 1.06 1.06 1.06-1.06 1.06 1.06 1.06-1.06-1.06-1.06 1.06-1.06zM23 15v3c0 .55-.45 1-1 1h-1v1c0 1.11-.89 2-2 2H5a2 2 0 0 1-2-2v-1H2c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1h1c0-3.87 3.13-7 7-7h1V5.73c-.6-.34-1-.99-1-1.73 0-1.1.9-2 2-2s2 .9 2 2c0 .74-.4 1.39-1 1.73V7h1c3.87 0 7 3.13 7 7h1c.55 0 1 .45 1 1m-2 1h-2v-2c0-2.76-2.24-5-5-5h-4c-2.76 0-5 2.24-5 5v2H3v1h2v3h14v-3h2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/robot-dead.svg�����������������������������0000664�0000000�0000000�00000001014�14753064456�0026144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 14h-1c0-3.87-3.13-7-7-7h-1V5.73A2 2 0 1 0 10 4c0 .74.4 1.39 1 1.73V7h-1c-3.87 0-7 3.13-7 7H2c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h1v1a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1M9.86 16.68l-1.18 1.18-1.18-1.18-1.18 1.18-1.18-1.18 1.18-1.18-1.18-1.18 1.18-1.18 1.18 1.18 1.18-1.18 1.18 1.18-1.18 1.18zm9 0-1.18 1.18-1.18-1.18-1.18 1.18-1.18-1.18 1.18-1.18-1.18-1.18 1.18-1.18 1.18 1.18 1.18-1.18 1.18 1.18-1.18 1.18z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/robot-excited-outline.svg������������������0000664�0000000�0000000�00000000725�14753064456�0030361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 14h-1c0-3.87-3.13-7-7-7h-1V5.73A2 2 0 1 0 10 4c0 .74.4 1.39 1 1.73V7h-1c-3.87 0-7 3.13-7 7H2c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h1v1a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1m-1 3h-2v3H5v-3H3v-1h2v-2c0-2.76 2.24-5 5-5h4c2.76 0 5 2.24 5 5v2h2zM8.5 13.5l2.36 2.36-1.18 1.18-1.18-1.18-1.18 1.18-1.18-1.18zm7 0 2.36 2.36-1.18 1.18-1.18-1.18-1.18 1.18-1.18-1.18z"/></svg>�������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/robot-excited.svg��������������������������0000664�0000000�0000000�00000000623�14753064456�0026701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 14h-1c0-3.87-3.13-7-7-7h-1V5.73A2 2 0 1 0 10 4c0 .74.4 1.39 1 1.73V7h-1c-3.87 0-7 3.13-7 7H2c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h1v1a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1M8.68 17.04 7.5 15.86l-1.18 1.18-1.18-1.18L7.5 13.5l2.36 2.36zm9 0-1.18-1.18-1.18 1.18-1.18-1.18 2.36-2.36 2.36 2.36z"/></svg>�������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/robot-happy-outline.svg��������������������0000664�0000000�0000000�00000001130�14753064456�0030044�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 15.5c0 .37-.1.7-.28 1-.34-.59-.98-1-1.72-1s-1.38.41-1.72 1c-.17-.3-.28-.63-.28-1 0-1.1.9-2 2-2s2 .9 2 2M23 15v3c0 .55-.45 1-1 1h-1v1c0 1.11-.89 2-2 2H5a2 2 0 0 1-2-2v-1H2c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1h1c0-3.87 3.13-7 7-7h1V5.73c-.6-.34-1-.99-1-1.73 0-1.1.9-2 2-2s2 .9 2 2c0 .74-.4 1.39-1 1.73V7h1c3.87 0 7 3.13 7 7h1c.55 0 1 .45 1 1m-2 1h-2v-2c0-2.76-2.24-5-5-5h-4c-2.76 0-5 2.24-5 5v2H3v1h2v3h14v-3h2zm-5.5-2.5c-1.1 0-2 .9-2 2 0 .37.11.7.28 1 .34-.59.98-1 1.72-1s1.38.41 1.72 1c.18-.3.28-.63.28-1a2 2 0 0 0-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/robot-happy.svg����������������������������0000664�0000000�0000000�00000000772�14753064456�0026402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 14h-1c0-3.87-3.13-7-7-7h-1V5.73A2 2 0 1 0 10 4c0 .74.4 1.39 1 1.73V7h-1c-3.87 0-7 3.13-7 7H2c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h1v1a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1M9.79 16.5C9.4 15.62 8.53 15 7.5 15s-1.9.62-2.29 1.5c-.13-.31-.21-.64-.21-1a2.5 2.5 0 0 1 5 0c0 .36-.08.69-.21 1m9 0c-.39-.88-1.29-1.5-2.29-1.5s-1.9.62-2.29 1.5c-.13-.31-.21-.64-.21-1a2.5 2.5 0 0 1 5 0c0 .36-.08.69-.21 1"/></svg>������mkdocs-material-9.6.4/material/templates/.icons/material/robot-industrial-outline.svg���������������0000664�0000000�0000000�00000000645�14753064456�0031113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 19h4.6L2.62 8.64C2.23 8 2 7.29 2 6.5a3.999 3.999 0 0 1 7.87-1H14V3c0-1.1.9-2 2-2v2.59L17.59 2H22v2h-3.59L16 6.41v.18L18.41 9H22v2h-4.41L16 9.41V12a2 2 0 0 1-2-2V7.5H9.87c-.1.39-.26.76-.46 1.1l6 10.4H20a2 2 0 0 1 2 2v1H2v-1c0-1.1.9-2 2-2m3.91-9c-.56.32-1.21.5-1.91.5l4.91 8.5h2.19zM6 4.5a2 2 0 0 0-2 2c0 1.11.89 2 2 2s2-.89 2-2a2 2 0 0 0-2-2"/></svg>�������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/robot-industrial.svg�����������������������0000664�0000000�0000000�00000000633�14753064456�0027433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.41 4 16 6.41v.18L18.41 9H22v2h-4.41L16 9.41V12h-1a2 2 0 0 1-2-2V7.5H9.86c-.09.37-.24.72-.44 1.05L15.18 19H20a2 2 0 0 1 2 2v1H2v-1a2 2 0 0 1 2-2h6.61l-4.69-8.5a4.006 4.006 0 0 1-3.81-3A4 4 0 0 1 5 2.63c2.13-.55 4.31.73 4.86 2.87H13V3a2 2 0 0 1 2-2h1v2.59L17.59 2H22v2zM6 4.5a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/robot-love-outline.svg���������������������0000664�0000000�0000000�00000001160�14753064456�0027673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 14h-1c0-3.87-3.13-7-7-7h-1V5.73A2 2 0 1 0 10 4c0 .74.4 1.39 1 1.73V7h-1c-3.87 0-7 3.13-7 7H2c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h1v1a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1m-1 3h-2v3H5v-3H3v-1h2v-2c0-2.76 2.24-5 5-5h4c2.76 0 5 2.24 5 5v2h2zm-10.3-3c.4.39.4 1.05 0 1.45l-.73.73-1.47 1.47-2.2-2.2c-.4-.4-.4-1.06 0-1.45.41-.42 1.06-.42 1.47 0l.73.72.73-.72c.41-.42 1.06-.42 1.47 0m7 0c.4.39.4 1.05 0 1.45l-.73.73-1.47 1.47-2.2-2.2c-.4-.4-.4-1.06 0-1.45.41-.42 1.06-.42 1.47 0l.73.72.73-.72c.41-.42 1.06-.42 1.47 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/robot-love.svg�����������������������������0000664�0000000�0000000�00000001055�14753064456�0026221�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 14h-1c0-3.87-3.13-7-7-7h-1V5.73A2 2 0 1 0 10 4c0 .74.4 1.39 1 1.73V7h-1c-3.87 0-7 3.13-7 7H2c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h1v1a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1M9.7 15.45l-.73.73-1.47 1.47-2.2-2.2c-.4-.4-.4-1.06 0-1.45.41-.42 1.06-.42 1.47 0l.73.72.73-.72c.41-.42 1.06-.42 1.47 0 .4.39.4 1.05 0 1.45m9 0-.73.73-1.47 1.47-2.2-2.2c-.4-.4-.4-1.06 0-1.45.41-.42 1.06-.42 1.47 0l.73.72.73-.72c.41-.42 1.06-.42 1.47 0 .4.39.4 1.05 0 1.45"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/robot-mower-outline.svg��������������������0000664�0000000�0000000�00000000505�14753064456�0030061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 14a5.002 5.002 0 0 0 9 3h5.17A3 3 0 0 0 18 19c1.31 0 2.42-.83 2.83-2H23v-2c0-5.5-4.5-10-10-10H1zm20 1H10.9A5.002 5.002 0 0 0 3 10V7h9.5c2.6 0 4.92 1.16 6.5 3h-4v2h5.25c.42.92.67 1.94.75 3M6 11c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/robot-mower.svg����������������������������0000664�0000000�0000000�00000000425�14753064456�0026405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 14V5h12c5.5 0 10 4.5 10 10v2h-2.17A2.99 2.99 0 0 1 18 19a2.99 2.99 0 0 1-2.83-2H10a5.002 5.002 0 0 1-9-3m5-3c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3m9-1v2h5.25c-.33-.73-.75-1.4-1.25-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/robot-off-outline.svg����������������������0000664�0000000�0000000�00000001065�14753064456�0027504�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 15v3c0 .5-.36.88-.83.97L20.2 17h.8v-1h-1.8l-.2-.2V14c0-2.76-2.24-5-5-5h-1.8l-2-2h.8V5.73c-.6-.34-1-.99-1-1.73 0-1.1.9-2 2-2s2 .9 2 2c0 .74-.4 1.39-1 1.73V7h1c3.87 0 7 3.13 7 7h1c.55 0 1 .45 1 1M8.5 13.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.89 2-2-.89-2-2-2m13.61 7.96-1.27 1.27-.95-.95c-.27.14-.57.22-.89.22H5a2 2 0 0 1-2-2v-1H2c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1h1c0-2.47 1.29-4.64 3.22-5.89L1.11 3l1.28-1.27zm-4-1.46-2.51-2.5h-.1a2 2 0 0 1-2-2v-.1L7.7 9.59C6.1 10.42 5 12.08 5 14v2H3v1h2v3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/robot-off.svg������������������������������0000664�0000000�0000000�00000001035�14753064456�0026024�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 15v3c0 .5-.36.88-.83.97l-3.2-3.2c.03-.09.03-.18.03-.27a2.5 2.5 0 0 0-2.5-2.5c-.09 0-.18 0-.27.03L10.2 7h.8V5.73c-.6-.34-1-.99-1-1.73 0-1.1.9-2 2-2s2 .9 2 2c0 .74-.4 1.39-1 1.73V7h1c3.87 0 7 3.13 7 7h1c.55 0 1 .45 1 1m-.89 6.46-1.27 1.27-.95-.95c-.27.14-.57.22-.89.22H5a2 2 0 0 1-2-2v-1H2c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1h1c0-2.47 1.29-4.64 3.22-5.89L1.11 3l1.28-1.27zM10 15.5a2.5 2.5 0 0 0-5 0 2.5 2.5 0 0 0 5 0m6.07 2.46-2.03-2.03c.19 1.04 1 1.84 2.03 2.03"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/robot-outline.svg��������������������������0000664�0000000�0000000�00000000750�14753064456�0026734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.5 15.5c0 1.11-.89 2-2 2s-2-.89-2-2 .9-2 2-2 2 .9 2 2m-9-2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.89 2-2-.89-2-2-2M23 15v3c0 .55-.45 1-1 1h-1v1c0 1.11-.89 2-2 2H5a2 2 0 0 1-2-2v-1H2c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1h1c0-3.87 3.13-7 7-7h1V5.73c-.6-.34-1-.99-1-1.73 0-1.1.9-2 2-2s2 .9 2 2c0 .74-.4 1.39-1 1.73V7h1c3.87 0 7 3.13 7 7h1c.55 0 1 .45 1 1m-2 1h-2v-2c0-2.76-2.24-5-5-5h-4c-2.76 0-5 2.24-5 5v2H3v1h2v3h14v-3h2z"/></svg>������������������������mkdocs-material-9.6.4/material/templates/.icons/material/robot-vacuum-alert.svg���������������������0000664�0000000�0000000�00000001042�14753064456�0027655�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2c2.6 0 5.2 1.1 7.1 2.9l-1.4 1.4C14.1 4.8 12.1 4 10 4s-4.2.8-5.7 2.3L2.9 4.9C4.8 3.1 7.4 2 10 2M1.7 6.5l1.5 1.4C2.4 9.2 2 10.6 2 12c0 4.4 3.6 8 8 8s8-3.6 8-8c0-1.4-.4-2.8-1.1-4.1l1.5-1.4C19.4 8.1 20 10 20 12c0 5.5-4.5 10-10 10S0 17.5 0 12c0-2 .6-3.9 1.7-5.5M10 6c3.3 0 6 2.7 6 6 0 1.6-.6 3.1-1.8 4.2l-1.4-1.4c-.7.8-1.7 1.2-2.8 1.2s-2.1-.4-2.8-1.2l-1.4 1.4C4.6 15.1 4 13.6 4 12c0-3.3 2.7-6 6-6m0 2c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1m12 4V7h2v6h-2m0 4v-2h2v2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/robot-vacuum-off.svg�����������������������0000664�0000000�0000000�00000001223�14753064456�0027321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.8 22.7 18 19.9c-1.7 1.3-3.8 2.1-6 2.1-5.5 0-10-4.5-10-10 0-2 .6-3.9 1.7-5.5l1.5 1.4C4.4 9.2 4 10.6 4 12c0 4.4 3.6 8 8 8 1.7 0 3.3-.6 4.6-1.5l-2.9-2.9c-.5.3-1.1.4-1.7.4-1.1 0-2.1-.4-2.8-1.2l-1.4 1.4C6.6 15.1 6 13.6 6 12c0-1.2.3-2.3.9-3.2L1.1 3l1.3-1.3 19.7 19.7zM20 12c0 1.4-.4 2.7-1 3.8l1.5 1.5c1-1.5 1.5-3.3 1.5-5.3s-.6-3.9-1.7-5.5l-1.5 1.4c.8 1.3 1.2 2.7 1.2 4.1m-8-8c2.1 0 4.2.8 5.7 2.3l1.4-1.4C17.2 3.1 14.7 2 12 2c-1.9 0-3.7.5-5.3 1.5L8.2 5c1.1-.7 2.5-1 3.8-1m5.5 10.3c.3-.7.5-1.5.5-2.3 0-3.3-2.7-6-6-6-.8 0-1.6.2-2.3.5l1.7 1.7c.2-.1.4-.2.6-.2.6 0 1 .4 1 1 0 .2-.1.4-.2.6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/robot-vacuum-variant-alert.svg�������������0000664�0000000�0000000�00000000453�14753064456�0031324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3c-1.1 0-2 .9-2 2v2h2V5h14v2h2V5c0-1.1-.9-2-2-2zm3 4v2h8V7zM1 9v3c0 5 4 9 9 9s9-4 9-9V9h-2v3c0 3.9-3.1 7-7 7s-7-3.1-7-7V9zm9 3c-1.4 0-2.5 1.1-2.5 2.5S8.6 17 10 17s2.5-1.1 2.5-2.5S11.4 12 10 12m11 0V7h2v6h-2m0 4v-2h2v2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/robot-vacuum-variant-off.svg���������������0000664�0000000�0000000�00000000611�14753064456�0030763�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.8 22.7-3.5-3.5C15.8 20.3 14 21 12 21c-5 0-9-4-9-9V9h2v3c0 3.9 3.1 7 7 7 1.4 0 2.8-.5 3.9-1.2L14 15.9c-.5.6-1.2 1.1-2 1.1-1.4 0-2.5-1.1-2.5-2.5 0-.8.4-1.6 1.1-2L5 6.9V7H3V4.9L1.1 3l1.3-1.3 19.7 19.7zM19 5v2h2V5c0-1.1-.9-2-2-2H6.2l2 2zm0 7c0 1.1-.3 2.1-.7 3.1l1.5 1.5c.8-1.3 1.2-2.9 1.2-4.6V9h-2zm-3-3V7h-5.8l2 2z"/></svg>�����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/robot-vacuum-variant.svg�������������������0000664�0000000�0000000�00000000451�14753064456�0030215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3a2 2 0 0 0-2 2v2h2V5h14v2h2V5a2 2 0 0 0-2-2zm3 4v2h8V7zM3 9v3a9 9 0 0 0 9 9 9 9 0 0 0 9-9V9h-2v3a7 7 0 0 1-7 7 7 7 0 0 1-7-7V9zm9 3a2.5 2.5 0 0 0-2.5 2.5A2.5 2.5 0 0 0 12 17a2.5 2.5 0 0 0 2.5-2.5A2.5 2.5 0 0 0 12 12"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/robot-vacuum.svg���������������������������0000664�0000000�0000000�00000001066�14753064456�0026556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c2.65 0 5.19 1.06 7.07 2.93l-1.42 1.42A8 8 0 0 0 12 4c-2.12 0-4.16.84-5.65 2.35L4.93 4.93C6.81 3.06 9.35 2 12 2M3.66 6.5l1.45 1.44A8.04 8.04 0 0 0 4 12a8 8 0 0 0 8 8 8 8 0 0 0 8-8c0-1.43-.39-2.83-1.12-4.06l1.46-1.44A9.93 9.93 0 0 1 22 12a10 10 0 0 1-10 10A10 10 0 0 1 2 12c0-1.96.58-3.88 1.66-5.5M12 6a6 6 0 0 1 6 6c0 1.59-.63 3.12-1.76 4.24l-1.41-1.41a4.004 4.004 0 0 1-5.66 0l-1.41 1.41A5.97 5.97 0 0 1 6 12a6 6 0 0 1 6-6m0 2a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/robot.svg����������������������������������0000664�0000000�0000000�00000000741�14753064456�0025257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a2 2 0 0 1 2 2c0 .74-.4 1.39-1 1.73V7h1a7 7 0 0 1 7 7h1a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1h-1v1a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-1H2a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1h1a7 7 0 0 1 7-7h1V5.73c-.6-.34-1-.99-1-1.73a2 2 0 0 1 2-2M7.5 13A2.5 2.5 0 0 0 5 15.5 2.5 2.5 0 0 0 7.5 18a2.5 2.5 0 0 0 2.5-2.5A2.5 2.5 0 0 0 7.5 13m9 0a2.5 2.5 0 0 0-2.5 2.5 2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5"/></svg>�������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rocket-launch-outline.svg������������������0000664�0000000�0000000�00000001430�14753064456�0030342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.13 22.19-1.63-3.83c1.57-.58 3.04-1.36 4.4-2.27zM5.64 12.5l-3.83-1.63 6.1-2.77C7 9.46 6.22 10.93 5.64 12.5M19.22 4c.28 0 .53 0 .74.05.17 1.39-.02 4.25-3.3 7.53-1.7 1.71-3.73 3.02-6.01 3.89l-2.15-2.1c.92-2.31 2.23-4.34 3.92-6.03C15.18 4.58 17.64 4 19.22 4m0-2c-1.98 0-4.98.69-8.22 3.93-2.19 2.19-3.5 4.6-4.35 6.71-.28.75-.09 1.57.46 2.13l2.13 2.12c.38.38.89.61 1.42.61.23 0 .47-.06.7-.15A19.1 19.1 0 0 0 18.07 13c5.66-5.66 3.54-10.61 3.54-10.61S20.7 2 19.22 2m-4.68 7.46c-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0c.77.78.78 2.05 0 2.83s-2.05.78-2.83 0m-5.66 7.07-1.41-1.41zM6.24 22l3.64-3.64c-.34-.09-.67-.24-.97-.45L4.83 22zM2 22h1.41l4.77-4.76-1.42-1.41L2 20.59zm0-2.83 4.09-4.08c-.21-.3-.36-.62-.45-.97L2 17.76z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rocket-launch.svg��������������������������0000664�0000000�0000000�00000001144�14753064456�0026667�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.13 22.19-1.63-3.83c1.57-.58 3.04-1.36 4.4-2.27zM5.64 12.5l-3.83-1.63 6.1-2.77C7 9.46 6.22 10.93 5.64 12.5M21.61 2.39S16.66.269 11 5.93c-2.19 2.19-3.5 4.6-4.35 6.71-.28.75-.09 1.57.46 2.13l2.13 2.12c.55.56 1.37.74 2.12.46A19.1 19.1 0 0 0 18.07 13c5.66-5.66 3.54-10.61 3.54-10.61m-7.07 7.07c-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0c.77.78.78 2.05 0 2.83s-2.05.78-2.83 0m-5.66 7.07-1.41-1.41zM6.24 22l3.64-3.64c-.34-.09-.67-.24-.97-.45L4.83 22zM2 22h1.41l4.77-4.76-1.42-1.41L2 20.59zm0-2.83 4.09-4.08c-.21-.3-.36-.62-.45-.97L2 17.76z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rocket-outline.svg�������������������������0000664�0000000�0000000�00000000666�14753064456�0027104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2S7 4 7 12c0 3.1.76 5.75 1.67 7.83A2 2 0 0 0 10.5 21h3a2 2 0 0 0 1.83-1.17C16.25 17.75 17 15.1 17 12c0-8-5-10-5-10m1.5 17h-3c-1-2.24-1.5-4.59-1.5-7 0-4.64 1.9-6.8 3-7.67 1.1.87 3 3.03 3 7.67 0 2.41-.5 4.76-1.5 7m6.5 3-3.86-1.55c.7-1.53 1.2-3.11 1.51-4.72m-9.79 4.72L4 22l2.35-6.27c.31 1.61.81 3.19 1.51 4.72M12 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2"/></svg>��������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rocket.svg���������������������������������0000664�0000000�0000000�00000000524�14753064456�0025420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20 22-3.86-1.55c.7-1.53 1.2-3.11 1.51-4.72zM7.86 20.45 4 22l2.35-6.27c.31 1.61.81 3.19 1.51 4.72M12 2s5 2 5 10c0 3.1-.75 5.75-1.67 7.83A2 2 0 0 1 13.5 21h-3a2 2 0 0 1-1.83-1.17C7.76 17.75 7 15.1 7 12c0-8 5-10 5-10m0 10c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rodent.svg���������������������������������0000664�0000000�0000000�00000001060�14753064456�0025420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.33 17.39c1.4 1.27.47 3.61-1.41 3.61h-8.86A5.04 5.04 0 0 1 6 15.94v-.05c-2.3-.47-4-2.48-4-4.89 0-2.75 2.22-5 5-5h2.5c.3 0 .5-.23.5-.5S9.8 5 9.5 5H7V3h2.5C10.88 3 12 4.13 12 5.5 12 6.89 10.88 8 9.5 8H7c-1.66 0-3 1.33-3 3 0 1.37.92 2.5 2.14 2.87.56-2.2 2.53-3.87 4.92-3.87.8 0 1.6.22 2.3.55-1.41.79-2.36 2.25-2.36 3.95 0 1.25.5 2.37 1.33 3.17l.7-.7c-.65-.61-1.03-1.5-1.03-2.47 0-2.59 2.34-3.5 3.5-3.5 2.08 0 3.95 1.89 3.44 4.23zM18 19c.56 0 1-.44 1-1s-.44-1-1-1-1 .44-1 1 .44 1 1 1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/roller-shade-closed.svg��������������������0000664�0000000�0000000�00000000257�14753064456�0027764�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 19V3H4v16H2v2h8.25c0 .97.78 1.75 1.75 1.75s1.75-.78 1.75-1.75H22v-2zM6 19v-2h5v2zm7 0v-2h5v2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/roller-shade.svg���������������������������0000664�0000000�0000000�00000000303�14753064456�0026505�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 19V3H4v16H2v2h20v-2zM6 19v-6h5v1.8c-.4.3-.8.8-.8 1.4 0 1 .8 1.8 1.8 1.8s1.8-.8 1.8-1.8c0-.6-.3-1.1-.8-1.4V13h5v6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/roller-skate-off.svg�����������������������0000664�0000000�0000000�00000000754�14753064456�0027312�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.84 22.73-1.89-1.89c-.17 1.22-1.2 2.16-2.45 2.16-1.4 0-2.5-1.12-2.5-2.5 0-1.26.93-2.3 2.14-2.47L15.11 17H3V4.9L1.11 3l1.28-1.27 19.72 19.73zM9 5h2.5V2H5.2l3.3 3.32c.09-.19.27-.32.5-.32m3.56 4.36C12.18 9 11.9 8.5 11.82 8h-.62zm6.94 3.59c-.95-2.05-3.68-2.39-5.59-2.9-.46-.02-.91-.28-1.31-.65l7.4 7.39c0-1.34.06-3.03-.5-3.84M9.2 6l1 1h1.3V6zM6.5 18C5.1 18 4 19.12 4 20.5S5.1 23 6.5 23 9 21.88 9 20.5 7.86 18 6.5 18"/></svg>��������������������mkdocs-material-9.6.4/material/templates/.icons/material/roller-skate.svg���������������������������0000664�0000000�0000000�00000000620�14753064456�0026532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 18C5.1 18 4 19.12 4 20.5S5.1 23 6.5 23 9 21.88 9 20.5 7.86 18 6.5 18m10 0c-1.4 0-2.5 1.12-2.5 2.5s1.1 2.5 2.5 2.5 2.5-1.12 2.5-2.5-1.14-2.5-2.5-2.5m3.5-1c0-1.37.09-3.19-.5-4.05-.95-2.05-3.68-2.39-5.59-2.9C13 10 12 9 11.82 8H9a.49.49 0 0 1-.5-.5c0-.28.21-.5.5-.5h2.5V6H9a.49.49 0 0 1-.5-.5c0-.28.21-.5.5-.5h2.5V2H3v15z"/></svg>����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rollerblade-off.svg������������������������0000664�0000000�0000000�00000000760�14753064456�0027172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.84 22.73-.52-.52c-.46.48-1.1.79-1.82.79a2.5 2.5 0 0 1-2.5-2.5c0-.72.31-1.36.79-1.82L15.11 17H3V4.9L1.11 3l1.28-1.27 19.72 19.73zm-1.34-9.78c-.95-2.05-3.68-2.39-5.59-2.9-.46-.02-.91-.28-1.31-.65l7.4 7.39c0-1.34.06-3.03-.5-3.84M9.2 6l1 1h1.3V6zm3.36 3.36C12.18 9 11.9 8.5 11.82 8h-.62zM11.5 18a2.5 2.5 0 0 0 0 5 2.5 2.5 0 0 0 0-5M9 5h2.5V2H5.2l3.3 3.32c.09-.19.27-.32.5-.32M4.5 18a2.5 2.5 0 0 0 0 5 2.5 2.5 0 0 0 0-5"/></svg>����������������mkdocs-material-9.6.4/material/templates/.icons/material/rollerblade.svg����������������������������0000664�0000000�0000000�00000000567�14753064456�0026427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.5 18a2.5 2.5 0 0 0 0 5 2.5 2.5 0 0 0 0-5m14 0a2.5 2.5 0 0 0 0 5 2.5 2.5 0 0 0 0-5m1.5-1c0-1.37.09-3.19-.5-4.05-.95-2.05-3.68-2.39-5.59-2.9C13 10 12 9 11.82 8H9a.49.49 0 0 1-.5-.5c0-.28.21-.5.5-.5h2.5V6H9a.49.49 0 0 1-.5-.5c0-.28.21-.5.5-.5h2.5V2H3v15zm-8.5 1a2.5 2.5 0 0 0 0 5 2.5 2.5 0 0 0 0-5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rollupjs.svg�������������������������������0000664�0000000�0000000�00000000724�14753064456�0026005�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.46 8.64c0 2.47-1.35 4.62-3.34 5.76-.12.1-.19.26-.12.41l3.41 6.74c.09.21-.05.45-.28.45H6.1l.07-.04c.49-.28 3.89-6.99 7.21-10.17s3.74-2.12 1.91-5.58c0 0 1.41 2.75.21 2.96-.94.17-3.1-1.92-2.3-3.8.8-1.84 3.95-1.49 5.4.01.55.96.86 2.07.86 3.26m-12.3 4.49c-1.32 2.43-2.16 4.2-2.62 5.44V2.31c0-.17.14-.31.31-.31h8.07a6.62 6.62 0 0 1 5.54 3.15C17.62 4.1 16.3 3.5 15 3.5c-2.47 0-3.09.9-7.84 9.63"/></svg>��������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rolodex-outline.svg������������������������0000664�0000000�0000000�00000001037�14753064456�0027262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 18H5v-2h2zm0-4H5v-2h2zm4 4H9v-2h2zm0-4H9v-2h2zm4 4h-2v-2h2zm0-4h-2v-2h2zm4 4h-2v-2h2zm0-4h-2v-2h2zm-3-6c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1M8 8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1m11.89-3H18.5v2a2.5 2.5 0 0 1-5 0V5.25c0-.14-.11-.25-.25-.25h-2.5c-.14 0-.25.11-.25.25V7a2.5 2.5 0 0 1-5 0V5H4.11C3 4.97 2.03 5.87 2 7v12c.03 1.13 1 2.03 2.11 2h15.78c1.11.03 2.08-.87 2.11-2V7c-.03-1.13-1-2.03-2.11-2M20 19H4v-8h16z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rolodex.svg��������������������������������0000664�0000000�0000000�00000001020�14753064456�0025575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.89 5H18.5v2a2.5 2.5 0 0 1-5 0V5.25c0-.14-.11-.25-.25-.25h-2.5c-.14 0-.25.11-.25.25V7a2.5 2.5 0 0 1-5 0V5H4.11C3 4.97 2.03 5.87 2 7v12c.03 1.13 1 2.03 2.11 2h15.78c1.11.03 2.08-.87 2.11-2V7c-.03-1.13-1-2.03-2.11-2M7 18H5v-2h2zm0-4H5v-2h2zm4 4H9v-2h2zm0-4H9v-2h2zm4 4h-2v-2h2zm0-4h-2v-2h2zm4 4h-2v-2h2zm0-4h-2v-2h2zm-3-6c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1M8 8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/roman-numeral-1.svg������������������������0000664�0000000�0000000�00000000156�14753064456�0027045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 7v2h-1v6h1v2h-4v-2h1V9h-1V7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/roman-numeral-10.svg�����������������������0000664�0000000�0000000�00000000203�14753064456�0027116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9 7 2 5-2 5h2l1-2.5 1 2.5h2l-2-5 2-5h-2l-1 2.5L11 7z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/roman-numeral-2.svg������������������������0000664�0000000�0000000�00000000213�14753064456�0027040�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7v2h-1v6h1v2H7v-2h1V9H7V7zm6 0v2h-1v6h1v2h-4v-2h1V9h-1V7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/roman-numeral-3.svg������������������������0000664�0000000�0000000�00000000250�14753064456�0027042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v2H8v6h1v2H5v-2h1V9H5V7zm5 0v2h-1v6h1v2h-4v-2h1V9h-1V7zm5 0v2h-1v6h1v2h-4v-2h1V9h-1V7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/roman-numeral-4.svg������������������������0000664�0000000�0000000�00000000212�14753064456�0027041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 7 2 10h2l2-10h-2l-1 5-1-5zm-1 0v2h-1v6h1v2H7v-2h1V9H7V7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/roman-numeral-5.svg������������������������0000664�0000000�0000000�00000000153�14753064456�0027046�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9 7 2 10h2l2-10h-2l-1 5-1-5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/roman-numeral-6.svg������������������������0000664�0000000�0000000�00000000213�14753064456�0027044�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6 7 2 10h2l2-10h-2l-1 5-1-5zm11 0v2h-1v6h1v2h-4v-2h1V9h-1V7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/roman-numeral-7.svg������������������������0000664�0000000�0000000�00000000251�14753064456�0027047�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4 7 2 10h2l2-10H8l-1 5-1-5zm11 0v2h-1v6h1v2h-4v-2h1V9h-1V7zm5 0v2h-1v6h1v2h-4v-2h1V9h-1V7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/roman-numeral-8.svg������������������������0000664�0000000�0000000�00000000305�14753064456�0027050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m1 7 2 10h2L7 7H5l-1 5-1-5zm11 0v2h-1v6h1v2H8v-2h1V9H8V7zm5 0v2h-1v6h1v2h-4v-2h1V9h-1V7zm5 0v2h-1v6h1v2h-4v-2h1V9h-1V7z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/roman-numeral-9.svg������������������������0000664�0000000�0000000�00000000241�14753064456�0027050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7v2h-1v6h1v2H7v-2h1V9H7V7zm1 0 2 5-2 5h2l1-2.5 1 2.5h2l-2-5 2-5h-2l-1 2.5L14 7z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/room-service-outline.svg�������������������0000664�0000000�0000000�00000000421�14753064456�0030214�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 5a2 2 0 0 1 2 2q0 .36-.12.69C17.95 8.5 21 11.91 21 16H3c0-4.09 3.05-7.5 7.12-8.31Q10 7.36 10 7a2 2 0 0 1 2-2m10 14H2v-2h20zM12 9.5c-3.11 0-5.75 1.89-6.66 4.5h13.32c-.91-2.61-3.55-4.5-6.66-4.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/room-service.svg���������������������������0000664�0000000�0000000�00000000315�14753064456�0026541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 5a2 2 0 0 1 2 2q0 .36-.12.69C17.95 8.5 21 11.91 21 16H3c0-4.09 3.05-7.5 7.12-8.31Q10 7.36 10 7a2 2 0 0 1 2-2m10 14H2v-2h20z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rotate-360.svg�����������������������������0000664�0000000�0000000�00000000356�14753064456�0025740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 7C6.5 7 2 9.2 2 12c0 2.2 2.9 4.1 7 4.8V20l4-4-4-4v2.7c-3.2-.6-5-1.9-5-2.7 0-1.1 3-3 8-3s8 1.9 8 3c0 .7-1.5 1.9-4 2.5v2.1c3.5-.8 6-2.5 6-4.6 0-2.8-4.5-5-10-5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rotate-3d-variant.svg����������������������0000664�0000000�0000000�00000000452�14753064456�0027375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 5c4.97 0 9 2.69 9 6 0 1.68-1.04 3.2-2.71 4.29 1.07-.87 1.71-1.97 1.71-3.16C20 9.29 16.42 7 12 7v3L8 6l4-4zm0 14c-4.97 0-9-2.69-9-6 0-1.68 1.04-3.2 2.71-4.29C4.64 9.58 4 10.68 4 11.88 4 14.71 7.58 17 12 17v-3l4 4-4 4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rotate-3d.svg������������������������������0000664�0000000�0000000�00000002671�14753064456�0025740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.47 21.5C4.2 19.94 1.86 16.76 1.5 13H0c.5 6.16 5.66 11 11.95 11l.66-.03-3.81-3.81zm.89-6.54c-.19 0-.36-.03-.52-.08a1.1 1.1 0 0 1-.4-.24c-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.7.21.95s.33.5.56.69c.24.18.51.32.82.41q.45.15.96.15c.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.41.55-.72c.13-.29.2-.61.2-.97 0-.19-.02-.38-.07-.56-.05-.16-.12-.35-.23-.51-.1-.15-.24-.3-.4-.43-.17-.13-.37-.22-.61-.31a2.067 2.067 0 0 0 .89-.75c.1-.16.17-.3.22-.46s.07-.32.07-.48q0-.54-.18-.96c-.14-.26-.29-.51-.51-.69-.2-.19-.47-.33-.77-.43C9.05 8.05 8.71 8 8.34 8c-.34 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.39-.51.67-.12.26-.18.54-.18.85h1.3q0-.255.09-.45a.94.94 0 0 1 .25-.34c.11-.09.23-.17.38-.22s.3-.08.48-.08c.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.04.34-.08.49a.87.87 0 0 1-.25.37c-.11.1-.25.18-.41.24s-.36.09-.58.09h-.77v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.23.24.29.4.07.16.1.37.1.57 0 .41-.12.72-.35.93-.23.23-.55.33-.95.33m8.55-5.92c-.32-.33-.7-.59-1.14-.77-.43-.18-.92-.27-1.46-.27h-2.36v8h2.3c.55 0 1.06-.09 1.51-.27s.84-.43 1.16-.76.58-.73.74-1.19c.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57-.16-.47-.43-.87-.75-1.2m-.41 3.16c0 .42-.03.8-.12 1.13-.1.33-.24.62-.43.85s-.45.41-.71.53q-.435.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.55 1.12.55 1.99M11.95 0l-.66.03 3.81 3.81 1.33-1.34c3.27 1.56 5.61 4.73 5.96 8.5h1.5c-.5-6.16-5.65-11-11.94-11"/></svg>�����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rotate-left-variant.svg��������������������0000664�0000000�0000000�00000000376�14753064456�0030026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2h3a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m16 13a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-9v-7zM14 4a8 8 0 0 1 8 8l-.06 1h-2.02l.08-1a6 6 0 0 0-6-6v3l-4-4 4-4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rotate-left.svg����������������������������0000664�0000000�0000000�00000000644�14753064456�0026362�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 4.07V1L8.45 5.55 13 10V6.09c2.84.48 5 2.94 5 5.91s-2.16 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93s-3.05-7.44-7-7.93M7.1 18.32c1.16.9 2.51 1.44 3.9 1.61V17.9c-.87-.15-1.71-.49-2.46-1.03zM6.09 13H4.07c.17 1.39.72 2.73 1.62 3.89l1.41-1.42c-.52-.75-.87-1.59-1.01-2.47m1.02-4.47L5.7 7.11C4.8 8.27 4.24 9.61 4.07 11h2.02c.14-.87.49-1.72 1.02-2.47"/></svg>��������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rotate-orbit.svg���������������������������0000664�0000000�0000000�00000001145�14753064456�0026544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 14.25 4.75 11H7c.25-5.61 2.39-10 5-10 2 0 3.77 2.64 4.55 6.45C20.36 8.23 23 10 23 12c0 1.83-2.17 3.43-5.4 4.3l.29-2.03C19.8 13.72 21 12.91 21 12c0-1.06-1.65-2-4.13-2.5.08.79.13 1.63.13 2.5 0 6.08-2.24 11-5 11-1.83 0-3.43-2.17-4.3-5.4l2.03.29C10.28 19.8 11.09 21 12 21c1.66 0 3-4.03 3-9q0-1.5-.15-2.85Q13.5 9 12 9l-1.86.06.29-2.01L12 7c.87 0 1.71.05 2.5.13C14 4.65 13.06 3 12 3c-1.54 0-2.82 3.5-3 8h2.25zM14.25 16 11 19.25V17c-5.61-.25-10-2.39-10-5 0-1.83 2.17-3.43 5.4-4.3l-.29 2.03C4.2 10.28 3 11.09 3 12c0 1.54 3.5 2.82 8 3v-2.25z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rotate-right-variant.svg�������������������0000664�0000000�0000000�00000000373�14753064456�0030206�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 4V1l4 4-4 4V6a6 6 0 0 0-6 6l.08 1H2.06L2 12a8 8 0 0 1 8-8m7-2h3a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2h-3a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2M4 15h9v7H4a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rotate-right.svg���������������������������0000664�0000000�0000000�00000000636�14753064456�0026546�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.89 15.5 1.42 1.39c.9-1.16 1.45-2.5 1.62-3.89h-2.02c-.14.87-.48 1.72-1.02 2.5M13 17.9v2.02c1.39-.17 2.74-.71 3.9-1.61l-1.44-1.44c-.75.54-1.59.89-2.46 1.03m6.93-6.9a7.9 7.9 0 0 0-1.62-3.89l-1.42 1.42c.54.75.88 1.6 1.02 2.47m-2.36-5.45L11 1v3.07C7.06 4.56 4 7.92 4 12s3.05 7.44 7 7.93v-2.02c-2.84-.48-5-2.94-5-5.91s2.16-5.43 5-5.91V10z"/></svg>��������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rounded-corner.svg�������������������������0000664�0000000�0000000�00000000423�14753064456�0027055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19h2v2h-2zm0-2h2v-2h-2zM3 13h2v-2H3zm0 4h2v-2H3zm0-8h2V7H3zm0-4h2V3H3zm4 0h2V3H7zm8 16h2v-2h-2zm-4 0h2v-2h-2zm4 0h2v-2h-2zm-8 0h2v-2H7zm-4 0h2v-2H3zM21 8a5 5 0 0 0-5-5h-5v2h5a3 3 0 0 1 3 3v5h2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/router-network-wireless.svg����������������0000664�0000000�0000000�00000001131�14753064456�0030766�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21 3.1-.8.8C19 2.8 17.5 2.2 16 2.2s-3 .6-4.2 1.7l-.8-.8C12.4 1.7 14.2 1 16 1s3.6.7 5 2.1m-5 .2c1.2 0 2.4.5 3.3 1.4l-.8.8c-.7-.7-1.6-1-2.5-1s-1.8.3-2.5 1l-.8-.8c.9-.9 2.1-1.4 3.3-1.4m1 6.7h2c.53 0 1.04.21 1.41.59.38.37.59.88.59 1.41v2c0 .53-.21 1.04-.59 1.41-.37.38-.88.59-1.41.59h-6v2h1c.55 0 1 .45 1 1h7v2h-7c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1H2v-2h7c0-.55.45-1 1-1h1v-2H5c-.53 0-1.04-.21-1.41-.59C3.21 15.04 3 14.53 3 14v-2c0-.53.21-1.04.59-1.41.37-.38.88-.59 1.41-.59h10V6h2zM5 14h2v-2H5zm3.5 0h2v-2h-2zm3.5 0h2v-2h-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/router-network.svg�������������������������0000664�0000000�0000000�00000000433�14753064456�0027137�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 9c-1.1 0-2 .9-2 2v4a2 2 0 0 0 2 2h6v2h-1c-.55 0-1 .45-1 1H2v2h7c0 .55.45 1 1 1h4c.55 0 1-.45 1-1h7v-2h-7c0-.55-.45-1-1-1h-1v-2h6c1.11 0 2-.89 2-2v-4a2 2 0 0 0-2-2zm1 3h2v2H6zm3.5 0h2v2h-2zm3.5 0h2v2h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/router-wireless-off.svg��������������������0000664�0000000�0000000�00000000641�14753064456�0030054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.8 5.9-.8-.8C12.4 3.7 14.2 3 16 3s3.6.7 5 2.1l-.8.8C19 4.8 17.5 4.2 16 4.2s-3 .6-4.2 1.7M21 15c0-1.1-.9-2-2-2h-2V9h-2v2.8l6 6zm-2.5-7.5.8-.8c-.9-.9-2.1-1.4-3.3-1.4s-2.4.5-3.3 1.4l.8.8c.7-.7 1.6-1 2.5-1s1.8.3 2.5 1m3.6 14-1.3 1.3-1.7-1.8H5c-1.1 0-2-.9-2-2v-4c0-1.1.9-2 2-2h6.1L1.1 3l1.3-1.3zM8 16H6v2h2zm3.5 0h-2v2h2zm3.5.9-.9-.9H13v2h2z"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/router-wireless-settings.svg���������������0000664�0000000�0000000�00000000631�14753064456�0031141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.2 4.9C19 3.8 17.5 3.2 16 3.2s-3 .6-4.2 1.7l-.8-.8C12.4 2.7 14.2 2 16 2s3.6.7 5 2.1zm-.9.8-.8.8c-.7-.7-1.6-1-2.5-1s-1.8.3-2.5 1l-.8-.8c.9-.9 2.1-1.4 3.3-1.4s2.4.5 3.3 1.4M19 12a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h10V8h2v4zM8 17v-2H6v2zm3.5 0v-2h-2v2zm3.5 0v-2h-2v2zm-8 5h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z"/></svg>�������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/router-wireless.svg������������������������0000664�0000000�0000000�00000000564�14753064456�0027310�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.2 5.9.8-.8C19.6 3.7 17.8 3 16 3s-3.6.7-5 2.1l.8.8C13 4.8 14.5 4.2 16 4.2s3 .6 4.2 1.7m-.9.8c-.9-.9-2.1-1.4-3.3-1.4s-2.4.5-3.3 1.4l.8.8c.7-.7 1.6-1 2.5-1s1.8.3 2.5 1zM19 13h-2V9h-2v4H5a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2M8 18H6v-2h2zm3.5 0h-2v-2h2zm3.5 0h-2v-2h2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/router.svg���������������������������������0000664�0000000�0000000�00000000432�14753064456�0025447�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8m1-7v3h2l-3 3-3-3h2v-3m-6 0h3v2l3-3-3-3v2H5m6 0V8H9l3-3 3 3h-2v3m6 0h-3V9l-3 3 3 3v-2h3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/routes-clock.svg���������������������������0000664�0000000�0000000�00000000552�14753064456�0026544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 13H15v3.69l3.19 1.84.75-1.3-2.44-1.41zM16 9c-1.96 0-3.73.82-5 2.12V7h6l2-2-2-2h-6V2l-1-1-1 1v4H3L1 8l2 2h6v10c-1.1 0-2 .9-2 2h5.41c1.05.63 2.28 1 3.59 1 3.87 0 7-3.13 7-7s-3.13-7-7-7m0 11.85c-2.68 0-4.85-2.17-4.85-4.85s2.17-4.85 4.85-4.85 4.85 2.17 4.85 4.85-2.17 4.85-4.85 4.85"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/routes.svg���������������������������������0000664�0000000�0000000�00000000251�14753064456�0025447�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 10H5L3 8l2-2h6V3l1-1 1 1v1h6l2 2-2 2h-6v2h6l2 2-2 2h-6v6a2 2 0 0 1 2 2H9a2 2 0 0 1 2-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rowing.svg���������������������������������0000664�0000000�0000000�00000000632�14753064456�0025436�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.5 14.5 4 19l1.5 1.5L9 17h2zM15 1a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m6 20-3 3-3-3v-1.5l-7.09-7.09c-.31.05-.61.09-.91.09v-2.18c1.66.03 3.61-.87 4.67-2.04l1.4-1.55c.19-.23.43-.38.69-.5.29-.14.62-.23.96-.23h.03C16 6 17 7 17 8.26V14c0 .85-.35 1.62-.92 2.17l-3.58-3.58v-2.27c-.63.52-1.43 1.02-2.29 1.39L16.5 18H18z"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rss-box.svg��������������������������������0000664�0000000�0000000�00000000476�14753064456�0025534�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m2.5 12A1.5 1.5 0 0 0 6 16.5 1.5 1.5 0 0 0 7.5 18 1.5 1.5 0 0 0 9 16.5 1.5 1.5 0 0 0 7.5 15M6 10v2a6 6 0 0 1 6 6h2a8 8 0 0 0-8-8m0-4v2a10 10 0 0 1 10 10h2A12 12 0 0 0 6 6"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rss-off.svg��������������������������������0000664�0000000�0000000�00000000612�14753064456�0025506�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.5 3.77 3.78 2.5 21.5 20.22l-1.27 1.28-1.5-1.5h-2c0-.75-.06-1.5-.19-2.19L6.19 7.46C5.5 7.33 4.75 7.27 4 7.27v-2zm3.68 11.87a2.18 2.18 0 0 1 2.18 2.18C8.36 19 7.38 20 6.18 20 5 20 4 19 4 17.82a2.18 2.18 0 0 1 2.18-2.18M4 10.1a9.9 9.9 0 0 1 9.9 9.9h-2.83A7.07 7.07 0 0 0 4 12.93zm5.13-4.79c4.46 1.56 8 5.1 9.56 9.56z"/></svg>����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rss.svg������������������������������������0000664�0000000�0000000�00000000465�14753064456�0024744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.18 15.64a2.18 2.18 0 0 1 2.18 2.18C8.36 19 7.38 20 6.18 20 5 20 4 19 4 17.82a2.18 2.18 0 0 1 2.18-2.18M4 4.44A15.56 15.56 0 0 1 19.56 20h-2.83A12.73 12.73 0 0 0 4 7.27zm0 5.66a9.9 9.9 0 0 1 9.9 9.9h-2.83A7.07 7.07 0 0 0 4 12.93z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rug.svg������������������������������������0000664�0000000�0000000�00000000654�14753064456�0024732�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 14c-1.1 0-2-.89-2-2s.9-2 2-2 2 .9 2 2-.89 2-2 2m11 5H1v-2h3v-2H1v-2h3v-2H1V9h3V7H1V5h22v2h-3v2h3v2h-3v2h3v2h-3v2h3zm-11-3.08c.62.7 1.66.89 2.5.41s1.19-1.49.9-2.37c.91-.18 1.6-.99 1.6-1.96s-.69-1.78-1.6-1.96c.29-.88-.06-1.89-.9-2.37s-1.88-.29-2.5.41a1.995 1.995 0 0 0-3.39 1.96C7.69 10.22 7 11.03 7 12s.69 1.78 1.61 1.96A1.995 1.995 0 0 0 12 15.92"/></svg>������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rugby.svg����������������������������������0000664�0000000�0000000�00000001214�14753064456�0025256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.22 16.22c2.03-2.03 3.11-4.72 3.23-8.02-1.09 2.41-2.64 4.61-4.64 6.61s-4.2 3.55-6.61 4.64c3.3-.09 5.96-1.17 8.02-3.23M7.78 7.78C5.75 9.81 4.67 12.5 4.55 15.8c.45-1 1.15-2.15 2.06-3.45.89-1.3 1.77-2.35 2.58-3.16 2-2 4.2-3.55 6.61-4.64-3.3.09-5.96 1.17-8.02 3.23M20.5 3.5c.5.55.84 1.61.97 3.2.12 1.6-.12 3.46-.73 5.6-.61 2.15-1.63 3.93-3.07 5.37C16.36 19 14.8 19.95 13 20.55c-1.79.61-3.56.92-5.31.92-2.13 0-3.52-.33-4.19-.97-.5-.55-.84-1.61-.97-3.2-.12-1.6.12-3.46.73-5.6.61-2.15 1.63-3.93 3.07-5.37C7.64 5 9.2 4.05 11 3.45c1.79-.61 3.56-.92 5.31-.92 2.13 0 3.52.33 4.19.97"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ruler-square-compass.svg�������������������0000664�0000000�0000000�00000000603�14753064456�0030221�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 19.88V22l-1.8-1.17-4.79-9a4.9 4.9 0 0 0 1.78-1M15 7a3 3 0 0 1-3 3 3 3 0 0 1-.44 0L5.8 20.83 4 22v-2.12L9.79 9A3 3 0 0 1 12 4V2a1 1 0 0 1 1 1v1.18A3 3 0 0 1 15 7m-2 0a1 1 0 1 0-1 1 1 1 0 0 0 1-1m-8.78 3L6 11.8l-1.44 2.76L2.1 12.1m9.9 5.66-1.5-1.51L9 19l3 3 3-3-1.47-2.77M19.78 10 18 11.8l1.5 2.76 2.4-2.46Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ruler-square.svg���������������������������0000664�0000000�0000000�00000000400�14753064456�0026551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5v16h6v-1.5H7V18h2v-1.5H5V15h4v-1.5H7V12h2v-1.5H5V9h4V5h1.5v4H12V7h1.5v2H15V5h1.5v4H18V7h1.5v2H21V3H5a2 2 0 0 0-2 2m3 2a1 1 0 0 1-1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1 1 1 0 0 1-1 1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ruler.svg����������������������������������0000664�0000000�0000000�00000000544�14753064456�0025264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m1.39 18.36 1.77-1.76L4.58 18l1.06-1.05-1.42-1.41 1.42-1.42 2.47 2.48 1.06-1.06-2.47-2.48 1.41-1.41 1.42 1.41L10.59 12l-1.42-1.41 1.42-1.42 2.47 2.48 1.06-1.06-2.47-2.48 1.41-1.41 1.41 1.41 1.07-1.06-1.42-1.41 1.42-1.42L18 6.7l1.07-1.06-2.47-2.48 1.76-1.77 4.25 4.25L5.64 22.61z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/run-fast.svg�������������������������������0000664�0000000�0000000�00000000654�14753064456�0025674�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 5.5a2 2 0 0 0 2-2 2 2 0 0 0-2-2 2 2 0 0 0-2 2 2 2 0 0 0 2 2m-3.6 13.9 1-4.4 2.1 2v6h2v-7.5l-2.1-2 .6-3A7.3 7.3 0 0 0 22 13v-2c-1.76.03-3.4-.89-4.3-2.4l-1-1.6c-.36-.6-1-1-1.7-1-.3 0-.5.1-.8.1L9 8.3V13h2V9.6l1.8-.7-1.6 8.1-4.9-1-.4 2zM4 9a1 1 0 0 1-1-1 1 1 0 0 1 1-1h3v2zm1-4a1 1 0 0 1-1-1 1 1 0 0 1 1-1h5v2zm-2 8a1 1 0 0 1-1-1 1 1 0 0 1 1-1h4v2z"/></svg>������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/run.svg������������������������������������0000664�0000000�0000000�00000000522�14753064456�0024733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.5 5.5c1.09 0 2-.92 2-2a2 2 0 0 0-2-2c-1.11 0-2 .88-2 2 0 1.08.89 2 2 2M9.89 19.38l1-4.38L13 17v6h2v-7.5l-2.11-2 .61-3A7.3 7.3 0 0 0 19 13v-2c-1.91 0-3.5-1-4.31-2.42l-1-1.58c-.4-.62-1-1-1.69-1-.31 0-.5.08-.81.08L6 8.28V13h2V9.58l1.79-.7L8.19 17l-4.9-1-.4 2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/rv-truck.svg�������������������������������0000664�0000000�0000000�00000000471�14753064456�0025707�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 8h2V6l-2-2H3a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h1a3 3 0 0 0 3 3 3 3 0 0 0 3-3h5a3 3 0 0 0 6 0h2v-5M7 18.5a1.5 1.5 0 0 1 0-3 1.5 1.5 0 0 1 0 3M9 12H3V9h6m5 6h-3V9h3m4 9.5a1.5 1.5 0 1 1 1.5-1.5 1.54 1.54 0 0 1-1.5 1.5M17 12V9.5h2.5l2 2.5Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sack-outline.svg���������������������������0000664�0000000�0000000�00000000743�14753064456�0026532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 18.28v-.23c-.05-.17-.1-.42-.17-.73-.14-.63-.37-1.47-.7-2.37-.63-1.72-1.55-3.21-2.66-3.95H8.53c-1.11.74-2.03 2.23-2.66 3.95-.33.9-.56 1.74-.7 2.37-.07.31-.12.56-.17.73v.24l-.03.1-.02.06c-.01.05-.01.1-.01.18 0 .16.03.33.1.48.05.1.46.89 2.96.89h8c2.5 0 2.91-.79 2.96-.89.07-.15.1-.32.1-.48 0-.08 0-.13-.01-.18l-.02-.06-.03-.1zM3 18s1-7 5-9h8c4 2 5 9 5 9s1 4-5 4H8c-6 0-5-4-5-4m7-14 2-2 2 2 4-2-2 5H8L6 2z"/></svg>�����������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sack-percent.svg���������������������������0000664�0000000�0000000�00000000563�14753064456�0026513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 7 6 2l4 2 2-2 2 2 4-2-2 5zm8 15H8c-6 0-5-4-5-4s1-7 5-9h8c4 2 5 9 5 9s1 4-5 4m-8.5-9.5A1.5 1.5 0 0 0 9 14a1.5 1.5 0 0 0 1.5-1.5A1.5 1.5 0 0 0 9 11a1.5 1.5 0 0 0-1.5 1.5m9 6A1.5 1.5 0 0 0 15 17a1.5 1.5 0 0 0-1.5 1.5A1.5 1.5 0 0 0 15 20a1.5 1.5 0 0 0 1.5-1.5m0-6.15L15.15 11 7.5 18.65 8.87 20z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sack.svg�����������������������������������0000664�0000000�0000000�00000000231�14753064456�0025045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 9c4 2 5 9 5 9s1 4-5 4H8c-6 0-5-4-5-4s1-7 5-9m6-5-2-2-2 2-4-2 2 5h8l2-5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/safe-square-outline.svg��������������������0000664�0000000�0000000�00000000762�14753064456�0030026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 12c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2m-2.2 5.7-1.5-1.4 1.5-1.5C7.3 14 7 13 7 12s.3-2 .8-2.7L6.3 7.8l1.5-1.5 1.4 1.5C10 7.3 11 7 12 7s2 .3 2.8.8l1.5-1.5 1.4 1.4-1.5 1.5c.5.8.8 1.8.8 2.8s-.3 2-.8 2.8l1.5 1.5-1.4 1.4-1.5-1.5c-.8.5-1.8.8-2.8.8s-2-.3-2.7-.8zM12 9c-1.7 0-3 1.3-3 3s1.3 3 3 3 3-1.3 3-3-1.3-3-3-3m8-7c1.1 0 2 .9 2 2v16c0 1.1-.9 2-2 2h-1v1h-4v-1H9v1H5v-1H4c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2zm0 18V4H4v16z"/></svg>��������������mkdocs-material-9.6.4/material/templates/.icons/material/safe-square.svg����������������������������0000664�0000000�0000000�00000000756�14753064456�0026354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2c1.1 0 2 .9 2 2v16c0 1.1-.9 2-2 2h-1v1h-4v-1H9v1H5v-1H4c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2zm-3 10c0-1-.3-2-.8-2.8l1.5-1.5-1.4-1.4-1.5 1.5C14 7.3 13 7 12 7s-2 .3-2.8.8L7.8 6.3 6.3 7.8l1.5 1.5C7.3 10 7 11 7 12s.3 2 .8 2.8l-1.5 1.5 1.5 1.4 1.5-1.5c.7.5 1.7.8 2.7.8s2-.3 2.8-.8l1.5 1.5 1.4-1.4-1.5-1.5c.5-.8.8-1.8.8-2.8m-5-3c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3m0 5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2"/></svg>������������������mkdocs-material-9.6.4/material/templates/.icons/material/safe.svg�����������������������������������0000664�0000000�0000000�00000000513�14753064456�0025045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2v1h2v-1h11v1h2v-1a2 2 0 0 0 2-2v-1h1v-2h-1V9h1V7h-1V6a2 2 0 0 0-2-2zm0 2h15v11H4zm9.5 1.5a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4M5 9v5h2V9zm8.5.5a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/safety-goggles.svg�������������������������0000664�0000000�0000000�00000000607�14753064456�0027053�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 9c1.11 0 2 .89 2 2v3c0 1.11-.89 2-2 2h-2.23l-1.24-1.23c-.75-.77-1.76-1.17-2.83-1.17s-2.07.4-2.83 1.17L7.64 16H6c-1.11 0-2-.89-2-2v-3c0-1.11.89-2 2-2zm0-2H6a4 4 0 0 0-4 4H1v3h1a4 4 0 0 0 4 4h2.5c.04-.06.09-.12 1.79-1.82.39-.39.9-.58 1.41-.58.52 0 1.03.19 1.42.58L14.91 18H18a4 4 0 0 0 4-4h1v-3h-1a4 4 0 0 0-4-4"/></svg>�������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sail-boat-sink.svg�������������������������0000664�0000000�0000000�00000000676�14753064456�0026756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.96 21c-1.06 0-2.06-.26-3-.76-1.84 1-4.15 1-5.99 0-1.84 1-4.15 1-5.97 0-1.23.69-2.64.8-4 .76v-2c1.41.04 2.77-.11 4-1 1.74 1.24 4.21 1.24 5.97 0 1.77 1.24 4.23 1.24 5.99 0 1.21.89 2.58 1.04 3.98 1v2zM22 3.5 7.11 5.96l6 6.21zM10.81 16.36l1.16-.82 1.15.82c.53.36 1.18.57 1.85.57.15 0 .31-.02.46-.04L5.2 6.31C4.29 7.65 3.9 9.32 4 10.92l5.74 5.91c.39-.09.76-.25 1.07-.47"/></svg>������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sail-boat.svg������������������������������0000664�0000000�0000000�00000001037�14753064456�0026004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3 13.5 8-11.47V13.5zm9.5 0c1.35-3.75 1.17-8.79 0-12.5 4.76 1.54 8.4 7.4 8.46 12.5zm8.6 3.58c-.41.64-.89 1.19-1.45 1.66-.65-.29-1.23-.74-1.69-1.24-1.49 1.93-4.5 1.93-5.99 0-1.47 1.93-4.5 1.93-5.97 0-.5.5-1.05.95-1.7 1.24-1.14-.94-2-2.28-2.3-3.74h19.94a6.4 6.4 0 0 1-.84 2.08M20.96 23q-1.59 0-3-.75c-1.84 1-4.15 1-5.99 0-1.84 1-4.15 1-5.97 0-1.23.69-2.64.8-4 .75v-2c1.41.05 2.77-.1 4-1 1.74 1.25 4.21 1.25 5.97 0 1.77 1.25 4.23 1.25 5.99 0 1.21.9 2.58 1.05 3.98 1v2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sale-outline.svg���������������������������0000664�0000000�0000000�00000001124�14753064456�0026527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 7c.83 0 1.5.67 1.5 1.5S10.33 10 9.5 10 8 9.33 8 8.5 8.67 7 9.5 7m5 7c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5m-6.09 3L7 15.59 15.59 7 17 8.41zM18.65 2.85l.61 3.86 3.51 1.79L21 12l1.78 3.5-3.54 1.79-.61 3.86-3.89-.61-2.77 2.77-2.78-2.81-3.86.64-.62-3.89-3.49-1.78L3 11.97 1.23 8.5l3.51-1.81.61-3.82 3.87.63L12 .695l2.76 2.765zm1.45 6.52L17.5 8 17 5.11l-2.9.42L12 3.5 9.9 5.53 7 5.11 6.5 8 3.9 9.37 5.2 12l-1.3 2.63L6.5 16l.5 2.89 2.9-.42L12 20.5l2.1-2.03 2.9.42.5-2.89 2.6-1.37L18.8 12z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sale.svg�����������������������������������0000664�0000000�0000000�00000000726�14753064456�0025061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.65 2.85.61 3.86 3.51 1.79L21 12l1.78 3.5-3.54 1.79-.61 3.86-3.89-.61-2.77 2.76-2.78-2.8-3.86.64-.62-3.89-3.49-1.78L3 11.97 1.23 8.5l3.51-1.81.61-3.83 3.87.64L12 .69l2.77 2.77zM9.5 7A1.5 1.5 0 0 0 8 8.5 1.5 1.5 0 0 0 9.5 10 1.5 1.5 0 0 0 11 8.5 1.5 1.5 0 0 0 9.5 7m5 7a1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5m-6.09 3L17 8.41 15.59 7 7 15.59z"/></svg>������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/salesforce.svg�����������������������������0000664�0000000�0000000�00000000717�14753064456�0026263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.38 6.37c-.7 0-1.31.21-1.91.41-.7-1.21-2.01-2.01-3.42-2.01-1.1 0-2.1.5-2.81 1.2-.8-1-2.01-1.71-3.41-1.71C4.5 4.26 2.5 6.17 2.5 8.5c0 .59.21 1.19.41 1.79A3.68 3.68 0 0 0 1 13.5c0 2 1.61 3.72 3.62 3.72.3 0 .6 0 .8-.1.4 1.51 1.91 2.62 3.72 2.62 1.7 0 3.11-1.01 3.61-2.42.51.21 1.01.41 1.51.41 1.31 0 2.51-.73 3.11-1.81.31.08.63.08.91.08 2.61 0 4.72-2.09 4.72-4.8.1-2.7-2-4.83-4.62-4.83"/></svg>�������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sass.svg�����������������������������������0000664�0000000�0000000�00000001730�14753064456�0025102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m-2 13.33c.16.54.14 1.04 0 1.5 0 .05-.04.1-.06.17-.02 0-.04.07-.07.12-.11.24-.27.47-.46.67-.58.64-1.41.88-1.74.68-.38-.22-.17-1.12.49-1.83.72-.76 1.76-1.26 1.76-1.26zm8.27-9.05c-.45-1.78-3.4-2.36-6.18-1.37-1.66.59-3.46 1.51-4.75 2.72-1.53 1.44-1.78 2.69-1.68 3.21.34 1.84 2.88 3.05 3.92 3.94v.01c-.3.15-2.54 1.28-3.08 2.44-.54 1.22.1 2.1.5 2.22 1.34.36 2.69-.29 3.41-1.38.7-1.04.65-2.39.34-3.07.42-.1.91-.15 1.53-.08 1.76.21 2.1 1.3 2.03 1.76-.06.46-.43.71-.55.79-.12.07-.16.1-.15.16.01.08.07.08.17.06.15-.03.93-.37.96-1.22.04-1.08-.99-2.28-2.81-2.25-.75.02-1.22.09-1.56.22l-.08-.09c-1.13-1.2-3.21-2.05-3.12-3.67.03-.59.23-2.13 4-4.01 3.08-1.54 5.55-1.12 5.98-.17.61 1.33-1.32 3.82-4.52 4.18-1.22.14-1.87-.34-2.03-.51-.17-.17-.19-.2-.25-.17-.11.07-.04.23 0 .33.09.25.49.67 1.15.91.59.19 2.03.3 3.76-.37 1.94-.75 3.46-2.84 3.01-4.59"/></svg>����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/satellite-uplink.svg�����������������������0000664�0000000�0000000�00000000625�14753064456�0027421�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.86 2-.52 1.93c4.41.85 7.86 4.3 8.71 8.72l1.95-.52C20.95 7.03 16.96 3.04 11.86 2m-1.04 3.86-.52 1.95c3.04.46 5.42 2.84 5.88 5.87l1.94-.52c-.66-3.72-3.57-6.66-7.3-7.3m-7.1 3.83A7.96 7.96 0 0 0 5 18.28V22h3v-1.59c.95.39 1.97.59 3 .59 1.14 0 2.27-.25 3.3-.72zm6.07.07-.53 1.96a3 3 0 0 1 3 3l1.97-.52c-.23-2.34-2.1-4.2-4.44-4.44"/></svg>�����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/satellite-variant.svg����������������������0000664�0000000�0000000�00000000731�14753064456�0027561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.62 1 5.66 5.67-2.12 2.12-2.12-2.12-1.42 1.42 2.33 2.32-1.16 1.17.45.46a2.5 2.5 0 0 1 2.83.5l-3.53 3.53a2.5 2.5 0 0 1-.5-2.83l-.46-.45-1.17 1.16-2.32-2.33-1.42 1.42 2.12 2.12-2.12 2.12L1 11.62 3.14 9.5l2.12 2.12 1.41-1.41-2.83-2.83c-.78-.78-.78-2.05 0-2.83l.71-.71c.78-.78 2.05-.78 2.83 0l2.83 2.83 1.41-1.41L9.5 3.14zM18 14a4 4 0 0 1-4 4v-2a2 2 0 0 0 2-2zm4 0a8 8 0 0 1-8 8v-2a6 6 0 0 0 6-6z"/></svg>���������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/satellite.svg������������������������������0000664�0000000�0000000�00000000360�14753064456�0026115�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5 18 3.5-4.5 2.5 3 3.5-4.5 4.5 6M5 12v-2a5 5 0 0 0 5-5h2a7 7 0 0 1-7 7m0-7h3a3 3 0 0 1-3 3m14-5H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sausage-off.svg����������������������������0000664�0000000�0000000�00000000510�14753064456�0026324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.8 22.7-4.5-4.5c-2.1 1.7-4.9 2.8-7.8 2.8-1.4 0-2.6-.8-3.2-2L3 20.5v-6L5.3 16c.5-1.2 1.8-2 3.2-2 1 0 2-.3 2.8-.8L1.1 3l1.3-1.3 19.7 19.7zM21 8.5c0-1.4-.8-2.6-2-3.2L20.5 3h-6L16 5.3c-1.2.5-2 1.8-2 3.2 0 .7-.1 1.3-.4 1.9l5.1 5.2c1.5-2 2.3-4.5 2.3-7.1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sausage.svg��������������������������������0000664�0000000�0000000�00000000346�14753064456�0025563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 5.3c1.2.5 2 1.8 2 3.2C21 15.4 15.4 21 8.5 21c-1.4 0-2.6-.8-3.2-2L3 20.5v-6L5.3 16c.6-1.2 1.8-2 3.2-2 3 0 5.5-2.5 5.5-5.5 0-1.4.8-2.6 2-3.2L14.5 3h6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/saw-blade.svg������������������������������0000664�0000000�0000000�00000000520�14753064456�0025764�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15s-1.4 1.3 1.1 2l-2.8 2.8h-2.8s-1.9-.1-.5 2.2h-4l-2-2s-1.3-1.4-2 1.1l-2.8-2.8v-2.8s.1-1.9-2.2-.5v-4l2-2s1.4-1.3-1.2-1.9l2.8-2.9h2.9s1.9.1.5-2.2h4l2 2s1.3 1.4 2-1.2l2.8 2.8v2.9s-.1 1.9 2.2.5v4zm-6-3a2 2 0 0 0-2-2 2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sawtooth-wave.svg��������������������������0000664�0000000�0000000�00000000172�14753064456�0026740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 22V6.83L2 16v-2.83L13 2v15.17L22 8v2.83z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/saxophone.svg������������������������������0000664�0000000�0000000�00000000530�14753064456�0026132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2a1 1 0 0 0-1 1 1 1 0 0 0 1 1 3 3 0 0 1 3 3v8.5c0 3.6 2.9 6.5 6.5 6.5s6.5-2.9 6.5-6.5V13a1 1 0 0 0 1-1 1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1 1 1 0 0 0 1 1v2a1 1 0 0 1-1 1 1 1 0 0 1-1-1v-4a1 1 0 0 0 1-1 1 1 0 0 0-1-1V8a1 1 0 0 0 1-1 1 1 0 0 0-1-1v-.5A3.5 3.5 0 0 0 8.5 2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/scale-balance.svg��������������������������0000664�0000000�0000000�00000000626�14753064456�0026606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3c-1.27 0-2.4.8-2.82 2H3v2h1.95L2 14c-.47 2 1 3 3.5 3s4.06-1 3.5-3L6.05 7h3.12c.33.85.98 1.5 1.83 1.83V20H2v2h20v-2h-9V8.82c.85-.32 1.5-.97 1.82-1.82h3.13L15 14c-.47 2 1 3 3.5 3s4.06-1 3.5-3l-2.95-7H21V5h-6.17C14.4 3.8 13.27 3 12 3m0 2a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m-6.5 5.25L7 14H4zm13 0L20 14h-3z"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/scale-bathroom.svg�������������������������0000664�0000000�0000000�00000000334�14753064456�0027030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 2h14a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m7 2a4 4 0 0 0-4 4h3.26l-.41-2.77L12.9 8H16a4 4 0 0 0-4-4m-7 6v10h14V10z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/scale-off.svg������������������������������0000664�0000000�0000000�00000000643�14753064456�0025772�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.11 21.46-1.27 1.27L19.11 21H18v-1.11L12.11 14H11v-1.11l-.69-.69a7.9 7.9 0 0 0-3.22 1.48l1.37 1.38-1.41 1.41-1.37-1.37A7.94 7.94 0 0 0 4.06 19H6v2H2v-1a10 10 0 0 1 6.68-9.43L3.85 5.74 2 5V3.89L1.11 3l1.28-1.27m19.52 16.98A10 10 0 0 0 14 10.2v-2L22 5V3H6.2M12 18a1.84 1.84 0 0 0-.88.21L7.27 20l3.85 1.79A1.84 1.84 0 0 0 12 22a2 2 0 0 0 0-4"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/scale-unbalanced.svg�����������������������0000664�0000000�0000000�00000000627�14753064456�0027316�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 20V8.8c.5-.2 1-.5 1.3-.9l3.5 1.3-2.9 6.8c-.5 2 1 3 3.5 3s4.1-1 3.5-3l-2.6-6.3.9.3.7-1.9L15 6c0-1.2-.7-2.4-2-2.9-1.2-.5-2.5 0-3.3.9L3.9 2l-.7 1.8 1.6.6L2.1 11c-.5 2 1 3 3.5 3s4.1-1 3.5-3L6.6 5.1 9 6c0 1.2.7 2.4 2 2.9V20H2v2h20v-2zm6.9-4h-3l1.5-3.8zM7.1 11h-3l1.5-3.8zm4-5.3c.2-.5.8-.8 1.3-.6s.8.8.6 1.3-.8.8-1.3.6-.8-.8-.6-1.3"/></svg>���������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/scale.svg����������������������������������0000664�0000000�0000000�00000000661�14753064456�0025222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.46 15.06-1.41 1.41-1.37-1.37A7.94 7.94 0 0 0 4.06 19H6v2H2v-1c0-4.84 3.44-8.87 8-9.8v-2L2 5V3h20v2l-8 3.2v2c4.56.93 8 4.96 8 9.8v1h-4v-2h1.94a7.94 7.94 0 0 0-1.62-3.9l-1.37 1.37-1.41-1.41 1.37-1.38A8 8 0 0 0 13 12.06V14h-2v-1.94c-1.46.18-2.8.76-3.91 1.62zM12 18a2 2 0 0 1 2 2 2 2 0 0 1-2 2c-.32 0-.62-.07-.88-.21L7.27 20l3.85-1.79c.26-.14.56-.21.88-.21"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/scan-helper.svg����������������������������0000664�0000000�0000000�00000000314�14753064456�0026327�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 2a2 2 0 0 1 2-2h4v2H2v4H0zm24 20a2 2 0 0 1-2 2h-4v-2h4v-4h2zM2 24a2 2 0 0 1-2-2v-4h2v4h4v2zM22 0a2 2 0 0 1 2 2v4h-2V2h-4V0z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/scanner-off.svg����������������������������0000664�0000000�0000000�00000000462�14753064456�0026333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5.27 3.28 4 20 20.72 18.73 22l-2-2H5a2 2 0 0 1-2-2v-5.5c0-.8.5-1.6 1.2-1.8l2.37-.86zM6.4 12h2.33l-.62-.62zM5 15v2h8.73l-2-2zM19.8 5l.7 1.9-8.65 3.13-1.55-1.56zm-.8 7a2 2 0 0 1 2 2v4c0 .34-.09.66-.24.94L19 17.18V15h-2.18l-3-3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/scanner.svg��������������������������������0000664�0000000�0000000�00000000322�14753064456�0025556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.2 10.7 19.8 5l.7 1.9L6.4 12H19a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-5.5c0-.8.5-1.6 1.2-1.8M17 17h2v-2h-2zM5 17h10v-2H5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/scatter-plot-outline.svg�������������������0000664�0000000�0000000�00000000706�14753064456�0030231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 18a4 4 0 0 1-4-4 4 4 0 0 1 4-4 4 4 0 0 1 4 4 4 4 0 0 1-4 4m0-6a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m4-2a4 4 0 0 1-4-4 4 4 0 0 1 4-4 4 4 0 0 1 4 4 4 4 0 0 1-4 4m0-6a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m5.6 17.6c-2.21 0-4-1.79-4-4a4 4 0 0 1 4-4c2.21 0 4 1.79 4 4a4 4 0 0 1-4 4m0-6a2 2 0 0 0-2 2c0 1.1.9 2 2 2a2 2 0 0 0 2-2c0-1.1-.9-2-2-2"/></svg>����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/scatter-plot.svg���������������������������0000664�0000000�0000000�00000000421�14753064456�0026546�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 11a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3m4-8a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3m5.6 11.6c1.65 0 3 1.34 3 3a3 3 0 0 1-3 3c-1.66 0-3-1.35-3-3a3 3 0 0 1 3-3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/scent-off.svg������������������������������0000664�0000000�0000000�00000001411�14753064456�0026011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.6 16.5c-.9 1.3-1.6 2.7-1.6 4 0 .4.1.8.2 1.3 0 .1 0 .2-.1.3s-.2 0-.2-.1c-1-1.3-1.5-2.5-1.5-3.9q0-1.8 1.2-3.6l-1.4-1.4c-1.1 1.4-1.8 2.9-1.8 4.4 0 .4.1.8.2 1.3 0 .1 0 .2-.1.3s-.2 0-.2-.1c-1-1.3-1.5-2.5-1.5-3.9 0-1.3.5-2.6 1.5-4L7.9 9.8c-1 1.2-1.7 2.4-1.7 3.6 0 .3.1.7.2.9 0 .1 0 .1-.1.2s-.2 0-.2 0c-.8-.9-1.1-1.9-1.1-2.8 0-1.1.5-2.2 1.4-3.3L1.1 3l1.3-1.3 19.7 19.7-1.3 1.3zM10.2 7q.6-1.05.6-2.1c0-.9-.3-1.9-1.1-2.8-.1-.1-.2-.1-.3-.1s0 .1 0 .2c.1.3.2.6.2.9 0 .8-.3 1.6-.8 2.4zm7.1-.5c0 1.7-1.1 3.5-2.5 5.1l2 2c1.5-1.5 2.2-3 2.2-4.6q0-1.95-1.5-3.9c-.1-.1-.1-.1-.2-.1-.1.1-.1.2-.1.3 0 .4.1.8.1 1.2m-3.8 3.8c1.2-1.5 1.8-2.9 1.8-4.4q0-1.95-1.5-3.9h-.2c-.1.1-.1.2-.1.3.1.4.2.8.2 1.3 0 1.6-.9 3.2-2.2 4.8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/scent.svg����������������������������������0000664�0000000�0000000�00000001335�14753064456�0025246�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.5 5.1C18.5 6.4 19 7.6 19 9c0 1.7-.7 3.3-2.4 5.1-1.9 2-3.6 4.2-3.6 6.4 0 .4.1.8.2 1.3 0 .1 0 .2-.1.3s-.2 0-.2-.1c-1-1.3-1.5-2.5-1.5-3.9 0-1.7.7-3.3 2.4-5.1 1.9-2 3.6-4.2 3.6-6.4 0-.4-.1-.8-.2-1.3 0-.1 0-.2.1-.3.1 0 .1 0 .2.1m-7.8-3c.7.9 1 1.9 1 2.8 0 1.3-.6 2.5-1.8 3.8-1.4 1.5-2.7 3.2-2.7 4.8 0 .3.1.7.2.9 0 .1 0 .1-.1.2s-.2 0-.2 0c-.8-1-1.1-2-1.1-2.9 0-1.3.6-2.5 1.8-3.8 1.4-1.5 2.7-3.2 2.7-4.8 0-.3-.1-.7-.2-.9V2c.2 0 .3 0 .4.1m.4 7.8c1.9-2 3.6-4.2 3.6-6.4 0-.4-.1-.8-.2-1.3 0-.1 0-.2.1-.3s.2 0 .2.1c1 1.3 1.5 2.5 1.5 3.9 0 1.7-.7 3.3-2.4 5.1-1.9 2-3.6 4.2-3.6 6.4 0 .4.1.8.2 1.3 0 .1 0 .2-.1.3s-.2 0-.2-.1c-1-1.3-1.5-2.5-1.5-3.9 0-1.7.7-3.3 2.4-5.1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/school-outline.svg�������������������������0000664�0000000�0000000�00000000306�14753064456�0027073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3 1 9l4 2.18v6L12 21l7-3.82v-6l2-1.09V17h2V9zm6.82 6L12 12.72 5.18 9 12 5.28zM17 16l-5 2.72L7 16v-3.73L12 15l5-2.73z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/school.svg���������������������������������0000664�0000000�0000000�00000000213�14753064456�0025413�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3 1 9l11 6 9-4.91V17h2V9M5 13.18v4L12 21l7-3.82v-4L12 17z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/scissors-cutting.svg�����������������������0000664�0000000�0000000�00000001107�14753064456�0027452�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 21H7v-2h4zm4.5-2H17v2h-4v-2h.2l-1.4-6.1-2.5.6c-.1.5-.3.9-.5 1.3-.9 1.5-2.8 1.9-4.3 1s-1.9-2.8-1-4.3 2.8-1.9 4.3-1c.4.2.7.6.9.9l2.5-.6-.6-2.5c-.4-.1-.8-.3-1.2-.5C8 6.9 7.5 5 8.4 3.5s2.8-1.9 4.3-1 1.9 2.8 1 4.3c-.2.4-.6.7-.9.9zM7 11.8c-.7-.5-1.7-.2-2.2.5s-.2 1.7.5 2.1c.7.5 1.7.3 2.2-.5.4-.7.2-1.7-.5-2.1M12.4 6c.5-.7.2-1.7-.5-2.2s-1.7-.2-2.2.5c-.4.7-.2 1.7.6 2.2.7.4 1.7.2 2.1-.5m.4 5.3c-.2-.1-.4-.1-.5.1s-.1.4.1.5.4.1.5-.1c.2-.2.1-.4-.1-.5M21 8.5 14.5 10l.5 2.2 7.5-1.8.5-.7zM23 19h-4v2h4zM5 19H1v2h4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/scooter-electric.svg�����������������������0000664�0000000�0000000�00000000744�14753064456�0027403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.82 16H15v-1c0-2.21 1.79-4 4-4h.74l-1.9-8.44A2.01 2.01 0 0 0 15.89 1H12v2h3.89l1.4 6.25h-.01A6.01 6.01 0 0 0 13.09 14H7.82a2.996 2.996 0 0 0-3.42-1.94c-1.18.23-2.13 1.2-2.35 2.38A3.002 3.002 0 0 0 5 18c1.3 0 2.4-.84 2.82-2M5 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m14-4c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3m0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m-8 4H7l6 3v-2h4l-6-3z"/></svg>����������������������������mkdocs-material-9.6.4/material/templates/.icons/material/scooter.svg��������������������������������0000664�0000000�0000000�00000000716�14753064456�0025612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.82 19H15v-1c0-2.21 1.79-4 4-4h.74l-1.9-8.44A2.01 2.01 0 0 0 15.89 4H12v2h3.89l1.4 6.25h-.01A6.01 6.01 0 0 0 13.09 17H7.82a2.996 2.996 0 0 0-3.42-1.94c-1.18.23-2.13 1.2-2.35 2.38A3.002 3.002 0 0 0 5 21c1.3 0 2.4-.84 2.82-2M5 19c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m14-4c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3m0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1"/></svg>��������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/scoreboard-outline.svg���������������������0000664�0000000�0000000�00000000637�14753064456�0027736�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 16H3V5h18M5 7h4c.6 0 1 .4 1 1v8c0 .6-.4 1-1 1H5c-.6 0-1-.4-1-1V8c0-.6.4-1 1-1m1 2v6h2V9m7-2h4c.6 0 1 .4 1 1v8c0 .6-.4 1-1 1h-4c-.6 0-1-.4-1-1V8c0-.6.4-1 1-1m1 2v6h2V9m-6 2c.6 0 1-.4 1-1s-.4-1-1-1-1 .4-1 1 .4 1 1 1m0 4c.6 0 1-.4 1-1s-.4-1-1-1-1 .4-1 1 .4 1 1 1"/></svg>�������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/scoreboard.svg�����������������������������0000664�0000000�0000000�00000000622�14753064456�0026253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 9h2v6H6zm10 0h2v6h-2zm5-6c1.1 0 2 .9 2 2v14c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2zM5 7c-.6 0-1 .4-1 1v8c0 .6.4 1 1 1h4c.6 0 1-.4 1-1V8c0-.6-.4-1-1-1zm10 0c-.6 0-1 .4-1 1v8c0 .6.4 1 1 1h4c.6 0 1-.4 1-1V8c0-.6-.4-1-1-1zm-3 4c.6 0 1-.4 1-1s-.4-1-1-1-1 .4-1 1 .4 1 1 1m0 4c.6 0 1-.4 1-1s-.4-1-1-1-1 .4-1 1 .4 1 1 1"/></svg>��������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/screen-rotation-lock.svg�������������������0000664�0000000�0000000�00000001047�14753064456�0030174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.8 2.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V3h-3.4zM16 9h5a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1v-.5A2.5 2.5 0 0 0 18.5 0 2.5 2.5 0 0 0 16 2.5V3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1M8.47 20.5C5.2 18.94 2.86 15.76 2.5 12H1c.5 6.16 5.66 11 11.95 11l.66-.03-3.81-3.82zm14.78-7.73-2.57-2.57-1.41 1.41 2.23 2.22-5.67 5.67L4.5 8.17l5.67-5.67 2.1 2.11 1.41-1.41L11.23.75a1.49 1.49 0 0 0-2.12 0L2.75 7.11a1.49 1.49 0 0 0 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/screen-rotation.svg������������������������0000664�0000000�0000000�00000000650�14753064456�0027245�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 21.5c-3.25-1.56-5.59-4.74-5.95-8.5H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81m5.98 1.03L2.81 9.17l6.36-6.36 12.02 12.02M10.23 1.75a1.49 1.49 0 0 0-2.12 0L1.75 8.11a1.49 1.49 0 0 0 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12zm6.27.75c3.25 1.57 5.59 4.74 5.95 8.5h1.5C23.44 4.84 18.29 0 12 0l-.66.03 3.81 3.81z"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/screw-flat-top.svg�������������������������0000664�0000000�0000000�00000000352�14753064456�0026777�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.5 17v2L12 22l-1.5-3zm1-10.7-1 .7V6h-3v3l-1 .7v1l5-3.3zm0 4-1 .7V9l-3 2v2l-1 .7v1l5-3.3zm0 4-1 .7v-2l-3 2v2l-1 .7v1l5-3.3zM8 2S7 2 7 3l3 2h4l3-2s0-1-1-1z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/screw-lag.svg������������������������������0000664�0000000�0000000�00000000312�14753064456�0026010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10 19.3 4-2.7V20l-2 2-2-2zm4-6.6-4 2.7v2L9 18v1l6-3.9V14l-1 .7zM7 2v3h10V2zm2 4v3l1 .7v3.7L9 14v1l6-3.9V10l-1 .7v-1l1-.7V6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/screw-machine-flat-top.svg�����������������0000664�0000000�0000000�00000000345�14753064456�0030403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.5 7.3-1 .7V7h-3v3l-1 .7v1l5-3.3zm0 4-1 .7v-2l-3 2v2l-1 .7v1l5-3.3zm0 4-1 .7v-2l-3 2v2l-1 .7v1l5-3.3zM8 3S7 3 7 4l3 2h4l3-2s0-1-1-1zm5.5 15v3h-3v-1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/screw-machine-round-top.svg����������������0000664�0000000�0000000�00000000336�14753064456�0030604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.5 7.3-1 .7V7h-3v3l-1 .7v1l5-3.3zm0 4-1 .7v-2l-3 2v2l-1 .7v1l5-3.3zm0 4-1 .7v-2l-3 2v2l-1 .7v1l5-3.3zM7 6h10s-1-3-5-3-5 3-5 3m6.5 12v3h-3v-1z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/screw-round-top.svg������������������������0000664�0000000�0000000�00000000343�14753064456�0027200�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.5 17v2L12 22l-1.5-3zm1-10.7-1 .7V6h-3v3l-1 .7v1l5-3.3zm0 4-1 .7V9l-3 2v2l-1 .7v1l5-3.3zm0 4-1 .7v-2l-3 2v2l-1 .7v1l5-3.3zM7 5h10s-1-3-5-3-5 3-5 3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/screwdriver.svg����������������������������0000664�0000000�0000000�00000000362�14753064456�0026470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 1.83c-.5 0-1 .17-1.41.58L8 11l1.5 1.5L6 16H4l-2 4 2 2 4-2v-2l3.5-3.5L13 16l8.59-8.59c.62-.91.78-2.04 0-2.82l-2.18-2.18A1.95 1.95 0 0 0 18 1.83M18 4l2 2-7 7-2-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/script-outline.svg�������������������������0000664�0000000�0000000�00000000362�14753064456�0027112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 20a1 1 0 0 0 1-1V4H8a1 1 0 0 0-1 1v11H5V5a3 3 0 0 1 3-3h11a3 3 0 0 1 3 3v1h-2V5a1 1 0 0 0-1-1 1 1 0 0 0-1 1v14a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3v-1h11a2 2 0 0 0 2 2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/script-text-key-outline.svg����������������0000664�0000000�0000000�00000000723�14753064456�0030663�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.8 19c-.4-1.2-1.5-2-2.8-2-1.7 0-3 1.3-3 3s1.3 3 3 3c1.3 0 2.4-.8 2.8-2H19v2h2v-2h2v-2zM15 21.3c-.7 0-1.3-.6-1.3-1.3s.6-1.3 1.3-1.3 1.3.6 1.3 1.3-.6 1.3-1.3 1.3M9 10h5v2H9zm0-4h5v2H9zM7 5c0-.6.4-1 1-1h8v11.1c.7.2 1.4.5 2 .9V5c0-.6.4-1 1-1s1 .4 1 1v1h2V5c0-1.7-1.3-3-3-3H8C6.3 2 5 3.3 5 5v11h2zm3 15c0-.7.1-1.4.4-2H2v1c0 1.7 1.3 3 3 3h5.4c-.3-.6-.4-1.3-.4-2m-1-4h3c.6-.4 1.3-.8 2-.9V14H9z"/></svg>���������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/script-text-key.svg������������������������0000664�0000000�0000000�00000000657�14753064456�0027214�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.8 19c-.4-1.2-1.5-2-2.8-2-1.7 0-3 1.3-3 3s1.3 3 3 3c1.3 0 2.4-.8 2.8-2H19v2h2v-2h2v-2zM15 21.3c-.7 0-1.3-.6-1.3-1.3s.6-1.3 1.3-1.3 1.3.6 1.3 1.3-.6 1.3-1.3 1.3m0-6.3c1.1 0 2.2.4 3 1V5c0-.6.4-1 1-1s1 .4 1 1v1h2V5c0-1.7-1.3-3-3-3H8C6.3 2 5 3.3 5 5v11h7c.8-.6 1.9-1 3-1M8 6h7v2H8zm0 4h6v2H8zm2.4 12H5c-1.7 0-3-1.3-3-3v-1h8.4c-.3.6-.4 1.3-.4 2s.1 1.4.4 2"/></svg>���������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/script-text-outline.svg��������������������0000664�0000000�0000000�00000000423�14753064456�0030072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 20a1 1 0 0 0 1-1V4H8a1 1 0 0 0-1 1v11H5V5a3 3 0 0 1 3-3h11a3 3 0 0 1 3 3v1h-2V5a1 1 0 0 0-1-1 1 1 0 0 0-1 1v14a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3v-1h11a2 2 0 0 0 2 2M9 6h5v2H9zm0 4h5v2H9zm0 4h5v2H9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/script-text-play-outline.svg���������������0000664�0000000�0000000�00000000460�14753064456�0031036�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 14h5v1.7c-.1.1-.1.2-.2.3H9zm0-2h5v-2H9zm0-4h5V6H9zM7 5c0-.6.4-1 1-1h8v9.8c.6-.4 1.3-.6 2-.7V5c0-.6.4-1 1-1s1 .4 1 1v1h2V5c0-1.7-1.3-3-3-3H8C6.3 2 5 3.3 5 5v11h2zm6 14v-1H2v1c0 1.7 1.3 3 3 3h8.8c-.5-.9-.8-1.9-.8-3m4-3v6l5-3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/script-text-play.svg�����������������������0000664�0000000�0000000�00000000430�14753064456�0027356�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.8 22H5c-1.7 0-3-1.3-3-3v-1h11.1c-.1.3-.1.7-.1 1 0 1.1.3 2.1.8 3m0-6H5V5c0-1.7 1.3-3 3-3h11c1.7 0 3 1.3 3 3v1h-2V5c0-.6-.4-1-1-1s-1 .4-1 1v8.1c-1.8.3-3.3 1.4-4.2 2.9M8 8h7V6H8zm0 4h6v-2H8zm9 4v6l5-3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/script-text.svg����������������������������0000664�0000000�0000000�00000000421�14753064456�0026413�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.8 20c-.4 1.2-1.5 2-2.8 2H5c-1.7 0-3-1.3-3-3v-1h12.2c.4 1.2 1.5 2 2.8 2zM19 2c1.7 0 3 1.3 3 3v1h-2V5c0-.6-.4-1-1-1s-1 .4-1 1v13h-1c-.6 0-1-.4-1-1v-1H5V5c0-1.7 1.3-3 3-3zM8 6v2h7V6zm0 4v2h6v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/script.svg���������������������������������0000664�0000000�0000000�00000000365�14753064456�0025440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.8 20c-.4 1.2-1.5 2-2.8 2H5c-1.7 0-3-1.3-3-3v-1h12.2c.4 1.2 1.5 2 2.8 2zM19 2H8C6.3 2 5 3.3 5 5v11h11v1c0 .6.4 1 1 1h1V5c0-.6.4-1 1-1s1 .4 1 1v1h2V5c0-1.7-1.3-3-3-3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sd.svg�������������������������������������0000664�0000000�0000000�00000000257�14753064456�0024542�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 8h-2V4h2m-3 4h-2V4h2m-3 4h-2V4h2m6-2h-8L4 8v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/seal-variant.svg���������������������������0000664�0000000�0000000�00000001312�14753064456�0026513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.71 6.15c-.25-.77-.92-.94-1.26-1.38-.31-.46-.27-1.15-.92-1.62s-1.3-.23-1.83-.38S12.81 2 12 2s-1.18.58-1.7.77-1.17-.1-1.83.38-.61 1.16-.92 1.62c-.34.44-1 .61-1.26 1.38S6.5 7.45 6.5 8 6 9.08 6.29 9.85s.92.94 1.26 1.38c.31.46.27 1.15.92 1.62s1.3.23 1.83.38.89.77 1.7.77 1.18-.58 1.7-.77 1.17.1 1.83-.38.61-1.16.92-1.62c.34-.44 1-.61 1.26-1.38S17.5 8.55 17.5 8s.5-1.08.21-1.85M12 12a4 4 0 1 1 4-4 4 4 0 0 1-4 4m2-4a2 2 0 1 1-2-2 2 2 0 0 1 2 2m-.29 7.56-.63 3.6-.73 4.13-2.61-2.49-3.3 1.45 1.33-7.5a4 4 0 0 0 1.89.42 4.2 4.2 0 0 0 1.34.68 3.3 3.3 0 0 0 1 .15 3.5 3.5 0 0 0 1.71-.44m4.21 3.22-2.58-.92.51-2.94a3.2 3.2 0 0 0 .85-.45l.12-.1Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/seal.svg�����������������������������������0000664�0000000�0000000�00000000474�14753064456�0025061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.39 19.37 16.38 18 15 22l-3.08-6L9 22l-1.38-4-4.01 1.37 2.92-6A6.97 6.97 0 0 1 5 9a7 7 0 0 1 7-7 7 7 0 0 1 7 7c0 1.65-.57 3.17-1.53 4.37zM7 9l2.69 1.34-.19 3 2.5-1.66 2.5 1.65-.17-2.99L17 9l-2.68-1.35.18-2.98L12 6.31 9.5 4.65l.17 3.01z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/search-web.svg�����������������������������0000664�0000000�0000000�00000001516�14753064456�0026153�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.5 14 5 5-1.5 1.5-5-5v-.79l-.27-.28A6.47 6.47 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3 6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.57 4.23l.28.27zm-6-9.5-.55.03c-.24.52-.61 1.4-.88 2.47h2.86c-.27-1.07-.64-1.95-.88-2.47-.18-.03-.36-.03-.55-.03M13.83 7a4.94 4.94 0 0 0-2.68-2.22c.24.53.55 1.3.78 2.22zM5.17 7h1.9c.23-.92.54-1.69.78-2.22A4.94 4.94 0 0 0 5.17 7M4.5 9.5c0 .5.08 1.03.23 1.5h2.14l-.12-1.5.12-1.5H4.73c-.15.47-.23 1-.23 1.5m9.77 1.5c.15-.47.23-1 .23-1.5s-.08-1.03-.23-1.5h-2.14a9.5 9.5 0 0 1 0 3zm-6.4-3-.12 1.5.12 1.5h3.26a9.5 9.5 0 0 0 0-3zm1.63 6.5c.18 0 .36 0 .53-.03.25-.52.63-1.4.9-2.47H8.07c.27 1.07.65 1.95.9 2.47zm4.33-2.5h-1.9c-.23.92-.54 1.69-.78 2.22A4.94 4.94 0 0 0 13.83 12m-8.66 0a4.94 4.94 0 0 0 2.68 2.22c-.24-.53-.55-1.3-.78-2.22z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/seat-flat-angled.svg�����������������������0000664�0000000�0000000�00000000465�14753064456�0027245�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.25 14.29-.69 1.89L9.2 11.71l2.08-5.66 8.56 3.09c2.1.76 3.16 3.06 2.41 5.15M1.5 12.14 8 14.5V19h8v-1.63L20.5 19l.71-1.89-19.02-6.86m5.11-.05c1.49-.7 2.12-2.51 1.41-4S6.2 4.08 4.7 4.8c-1.49.7-2.12 2.5-1.4 4 .7 1.49 2.5 2.12 4 1.4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/seat-flat.svg������������������������������0000664�0000000�0000000�00000000363�14753064456�0026012�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 11v2H9V7h9a4 4 0 0 1 4 4M2 14v2h6v2h8v-2h6v-2M7.14 12.1C8.3 10.91 8.28 9 7.1 7.86 5.91 6.7 4 6.72 2.86 7.9 1.7 9.09 1.72 11 2.9 12.14c1.19 1.16 3.1 1.14 4.24-.04"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/seat-individual-suite.svg������������������0000664�0000000�0000000�00000000262�14753064456�0030341�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 13a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m12-6h-8v7H3V7H1v10h22v-6a4 4 0 0 0-4-4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/seat-legroom-extra.svg���������������������0000664�0000000�0000000�00000000413�14753064456�0027645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 12V3H2v9a5 5 0 0 0 5 5h6v-2H7a3 3 0 0 1-3-3m18.83 5.24c-.38-.74-1.29-.97-2.03-.63l-1.09.5-3.41-6.98A2.02 2.02 0 0 0 14.5 9H11V3H5v8a3 3 0 0 0 3 3h7l3.41 7 3.72-1.7c.77-.36 1.1-1.3.7-2.06"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/seat-legroom-normal.svg��������������������0000664�0000000�0000000�00000000342�14753064456�0030013�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 12V3H3v9a5 5 0 0 0 5 5h6v-2H8a3 3 0 0 1-3-3m15.5 6H19v-7a2 2 0 0 0-2-2h-5V3H6v8a3 3 0 0 0 3 3h7v7h4.5a1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/seat-legroom-reduced.svg�������������������0000664�0000000�0000000�00000000357�14753064456�0030144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.97 19.2c.18.96-.55 1.8-1.47 1.8H14v-3l1-4H9a3 3 0 0 1-3-3V3h6v6h5a2 2 0 0 1 2 2l-2 7h1.44c.73 0 1.39.5 1.53 1.2M5 12V3H3v9a5 5 0 0 0 5 5h4v-2H8a3 3 0 0 1-3-3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/seat-outline.svg���������������������������0000664�0000000�0000000�00000000261�14753064456�0026540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 5v7H9V5zm0-2H9a2 2 0 0 0-2 2v9h10V5a2 2 0 0 0-2-2m7 7h-3v3h3zM5 10H2v3h3zm15 5H4v6h2v-4h12v4h2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/seat-passenger.svg�������������������������0000664�0000000�0000000�00000000476�14753064456�0027060�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 19h6v2H9c-2.76 0-5-2.24-5-5V7h2v9c0 1.66 1.34 3 3 3m1.42-13.59c.78-.78.78-2.05 0-2.83s-2.05-.78-2.83 0-.78 2.05 0 2.83c.78.79 2.04.79 2.83 0M11.5 9c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v6c0 1.66 1.34 3 3 3h5.07l3.5 3.5L20 20.07 14.93 15H11.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/seat-recline-extra.svg���������������������0000664�0000000�0000000�00000000747�14753064456�0027634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.64-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49M16 19H8.93c-1.48 0-2.74-1.08-2.96-2.54L4 7H2l2 9.76A4.99 4.99 0 0 0 8.94 21H16m.23-6h-4.88l-1.03-4.1c1.58.89 3.28 1.54 5.15 1.22V10c-1.63.3-3.44-.28-4.69-1.26L9.14 7.47c-.23-.18-.49-.3-.76-.38a2.2 2.2 0 0 0-.99-.06h-.02a2.27 2.27 0 0 0-1.84 2.61l1.35 5.92A2.99 2.99 0 0 0 9.83 18h6.85l3.82 3 1.5-1.5"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/material/seat-recline-normal.svg��������������������0000664�0000000�0000000�00000000633�14753064456�0027773�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.59 5.41c-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0 .78 2.05 0 2.83c-.79.79-2.05.79-2.83 0M6 16V7H4v9a5 5 0 0 0 5 5h6v-2H9a3 3 0 0 1-3-3m14 4.07L14.93 15H11.5v-3.68c1.4 1.15 3.6 2.18 5.5 2.18v-2.18c-1.66.02-3.61-.87-4.67-2.04l-1.4-1.55c-.19-.23-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8 7 7 8 7 9.25V15a3 3 0 0 0 3 3h5.07l3.5 3.5"/></svg>�����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/seat.svg�����������������������������������0000664�0000000�0000000�00000000250�14753064456�0025061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 18v3h3v-3h10v3h3v-6H4zm15-8h3v3h-3zM2 10h3v3H2zm15 3H7V5a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/seatbelt.svg�������������������������������0000664�0000000�0000000�00000001321�14753064456�0025730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a2 2 0 0 1 2 2c0 1.11-.89 2-2 2a2 2 0 0 1-2-2 2 2 0 0 1 2-2m.39 12.79a34 34 0 0 1 4.25.25c.06-2.72-.18-5.12-.64-6.04-.13-.27-.31-.5-.5-.7l-8.07 6.92c1.36-.22 3.07-.43 4.96-.43M7.46 17c.13 1.74.39 3.5.81 5h2.07c-.29-.88-.5-1.91-.66-3 0 0 2.32-.44 4.64 0-.16 1.09-.37 2.12-.66 3h2.07c.44-1.55.7-3.39.83-5.21a35 35 0 0 0-4.17-.25c-1.93 0-3.61.21-4.93.46M12 7S9 7 8 9c-.34.68-.56 2.15-.63 3.96l6.55-5.62C12.93 7 12 7 12 7m6.57-1.33-1.14-1.33-3.51 3.01c.55.19 1.13.49 1.58.95zm2.1 10.16c-.09-.03-1.53-.5-4.03-.79-.01.57-.04 1.16-.08 1.75 2.25.28 3.54.71 3.56.71zm-13.3-2.87-3.94 3.38.89 1.48c.02-.01 1.18-.46 3.14-.82-.11-1.41-.14-2.8-.09-4.04"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/security-network.svg�����������������������0000664�0000000�0000000�00000000430�14753064456�0027463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19h1a1 1 0 0 1 1 1h7v2h-7a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1H2v-2h7a1 1 0 0 1 1-1h1v-1.66C8.07 16.13 6 13 6 9.67v-4L12 3l6 2.67v4c0 3.33-2.07 6.46-5 7.67zM12 5 8 6.69V10h4zm0 5v6c1.91-.47 4-2.94 4-5v-1z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/security.svg�������������������������������0000664�0000000�0000000�00000000272�14753064456�0026000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 12h7c-.53 4.11-3.28 7.78-7 8.92zH5V6.3l7-3.11M12 1 3 5v6c0 5.55 3.84 10.73 9 12 5.16-1.27 9-6.45 9-12V5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/seed-off-outline.svg�����������������������0000664�0000000�0000000�00000000750�14753064456�0027277�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l4.8 4.8c-2.1 2.7-3.3 6.8-2.7 13 1.1.1 2.2.2 3.2.2 4.5 0 7.7-1.1 9.9-2.8l4.6 4.6zM6.4 19H5.1c-.2-4.2.5-7.5 2.2-9.8l1.6 1.6C7 13.7 7 17 7 17c1-2 2.1-3.6 3.2-4.9l4.6 4.6c-2 1.5-4.8 2.3-8.4 2.3M10 6.8 8.5 5.3C11.3 3.4 14.7 3 17.2 3c2.1 0 3.5.3 3.5.3s1.4 7-2 12.2L17.2 14c1.9-3.1 1.8-6.9 1.7-8.9-.5-.1-1.1-.1-1.7-.1-2.1 0-4.9.3-7.2 1.8m2.8 2.8-1.2-1.2C12.9 7.5 14.7 7 17 7c0 0-1.9.6-4.2 2.6"/></svg>������������������������mkdocs-material-9.6.4/material/templates/.icons/material/seed-off.svg�������������������������������0000664�0000000�0000000�00000000534�14753064456�0025622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l4.8 4.8c-2.1 2.7-3.3 6.8-2.7 13 1.1.1 2.2.2 3.2.2 4.5 0 7.7-1.1 9.9-2.8l4.6 4.6zM7 17s0-3.3 1.9-6.2l1.3 1.3C9.1 13.4 8 15 7 17m4.6-8.6L8.5 5.3C11.3 3.4 14.7 3 17.2 3c2.1 0 3.5.3 3.5.3s1.4 7-2 12.2l-5.9-5.9C15.1 7.6 17 7 17 7c-2.3 0-4.1.5-5.4 1.4"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/seed-outline.svg���������������������������0000664�0000000�0000000�00000000472�14753064456�0026530�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.2 5c.6 0 1.2 0 1.7.1.2 2.3.2 6.9-2.5 10.1-2 2.5-5.4 3.8-10 3.8H5.1c-.2-4.6.7-8.2 2.8-10.5C10.4 5.6 14.4 5 17.2 5m0-2c-5.5 0-15.6 2.1-14 17.8 1.1.1 2.2.2 3.2.2C24.3 21 20.7 3.3 20.7 3.3S19.3 3 17.2 3M17 7C7 7 7 17 7 17 11 9 17 7 17 7"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/seed-plus-outline.svg����������������������0000664�0000000�0000000�00000000635�14753064456�0027512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.2 5c.6 0 1.2 0 1.7.1.14 1.6.18 4.32-.72 6.9.71 0 1.38.17 2 .41 1.46-4.51.52-9.11.52-9.11S19.3 3 17.2 3c-5.5 0-15.6 2.1-14 17.8 1.1.1 2.2.2 3.2.2 2.35 0 4.34-.31 6-.84-.24-.62-.4-1.29-.4-1.99-1.59.55-3.47.83-5.6.83H5.1c-.2-4.6.7-8.2 2.8-10.5C10.4 5.6 14.4 5 17.2 5M17 7C7 7 7 17 7 17 11 9 17 7 17 7m0 10h-3v2h3v3h2v-3h3v-2h-3v-3h-2z"/></svg>���������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/seed-plus.svg������������������������������0000664�0000000�0000000�00000000476�14753064456�0026040�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 17h-3v2h3v3h2v-3h3v-2h-3v-3h-2zm-5 1c0-3.31 2.69-6 6-6 .77 0 1.5.15 2.17.41 1.46-4.51.53-9.11.53-9.11S19.3 3 17.2 3c-5.5 0-15.6 2.1-14 17.8 1.1.1 2.2.2 3.2.2 2.36 0 4.34-.31 6.01-.85-.26-.65-.41-1.39-.41-2.15m-5-1S7 7 17 7c0 0-6 2-10 10"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/seed.svg�����������������������������������0000664�0000000�0000000�00000000305�14753064456�0025046�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.7 3.3S19.3 3 17.2 3c-5.5 0-15.6 2.1-14 17.8 1.1.1 2.2.2 3.2.2C24.3 21 20.7 3.3 20.7 3.3M7 17S7 7 17 7c0 0-6 2-10 10"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/seesaw.svg���������������������������������0000664�0000000�0000000�00000000447�14753064456�0025424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.68 13.26.36 1.97-19.69 3.54L2 16.8l2.95-.53-.35-1.97c-.1-.54.26-1.06.81-1.16.54-.1 1.06.26 1.16.81l.35 1.96 9.84-1.76-.35-1.97c-.1-.55.26-1.07.81-1.18.54-.08 1.06.28 1.16.82l.35 1.97zM10.06 18.4 8 22h8l-2.42-4.23z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/segment.svg��������������������������������0000664�0000000�0000000�00000000163�14753064456�0025572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 8H3V6h18M9 13h12v-2H9m0 7h12v-2H9"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/select-all.svg�����������������������������0000664�0000000�0000000�00000000513�14753064456�0026154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 9h6v6H9m-2 2h10V7H7m8-2h2V3h-2m0 18h2v-2h-2m4-2h2v-2h-2m0-6h2V7h-2m0 14a2 2 0 0 0 2-2h-2m0-6h2v-2h-2m-8 10h2v-2h-2M9 3H7v2h2M3 17h2v-2H3m2 6v-2H3a2 2 0 0 0 2 2M19 3v2h2a2 2 0 0 0-2-2m-6 0h-2v2h2M3 9h2V7H3m4 14h2v-2H7m-4-6h2v-2H3m0-6h2V3a2 2 0 0 0-2 2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/select-arrow-down.svg����������������������0000664�0000000�0000000�00000000461�14753064456�0027505�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3h1v2H3V4c0-.6.4-1 1-1m16 0c.6 0 1 .4 1 1v1h-2V3zm-5 2V3h2v2zm-4 0V3h2v2zM7 5V3h2v2zm4 16v-2h2v2zm-4 0v-2h2v2zm-3 0c-.6 0-1-.4-1-1v-1h2v2zm-1-6h2v2H3zm0-4h2v2H3zm18 0v2h-2v-2zM3 7h2v2H3zm18 0v2h-2V7zm-2 15 3-3h-2v-4h-2v4h-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/select-arrow-up.svg������������������������0000664�0000000�0000000�00000000455�14753064456�0027165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3h1v2H3V4c0-.6.4-1 1-1m16 0c.6 0 1 .4 1 1v1h-2V3zm-5 2V3h2v2zm-4 0V3h2v2zM7 5V3h2v2zm4 16v-2h2v2zm-4 0v-2h2v2zm-3 0c-.6 0-1-.4-1-1v-1h2v2zm-1-6h2v2H3zm0-4h2v2H3zm18 0v2h-2v-2zM3 7h2v2H3zm18 0v2h-2V7zm-2 8-3 3h2v4h2v-4h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/select-color.svg���������������������������0000664�0000000�0000000�00000000740�14753064456�0026524�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.88 3c-.5.06-.88.5-.88 1v1h2V3H3.88M7 3v2h2V3zm4 0v2h2V3zm4 0v2h2V3zm4 0v2h2V3.88c-.06-.5-.5-.88-1-.88zM3 7v2h2V7zm16 0v2h2V7zM3 11v2h2v-2zm16.31 1c-.13 0-.26.05-.36.14l-1.56 1.57-.96-.96-.71.71.71.71-4.46 4.46V21h2.38l4.45-4.46.7.71.72-.71-.96-.96 1.56-1.55c.18-.2.18-.53 0-.72l-1.17-1.17a.48.48 0 0 0-.34-.14M3 15v2h2v-2zm14 0 .97.97L13.93 20l-.96-.96zM3 19v1.12c.06.5.5.88 1 .88h1v-2H3m4 0v2h2v-2z"/></svg>��������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/select-compare.svg�������������������������0000664�0000000�0000000�00000000400�14753064456�0027025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 23h-2V1h2zm-4-4H5V5h4V3H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h4zM19 7v2h2V7zm0-2h2a2 2 0 0 0-2-2zm2 10h-2v2h2zm-2-4v2h2v-2zm-2-8h-2v2h2zm2 18c1.11 0 2-.89 2-2h-2zm-2-2h-2v2h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/select-drag.svg����������������������������0000664�0000000�0000000�00000000336�14753064456�0026324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 17h4v-4h2v4h4v2h-4v4h-2v-4h-4zm-2 0v2H9v-2zm-4 0v2H5v-2zm12-8v2h-2V9zm0-4v2h-2V5zm-4 0v2h-2V5zm-4 0v2H9V5zM7 5v2H5V5zm0 8v2H5v-2zm0-4v2H5V9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/select-group.svg���������������������������0000664�0000000�0000000�00000000521�14753064456�0026537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3a2 2 0 0 0-2 2h2m2-2v2h2V3m2 0v2h2V3m2 0v2h2V3m2 0v2h2a2 2 0 0 0-2-2M3 7v2h2V7m2 0v4h4V7m2 0v4h4V7m2 0v2h2V7M3 11v2h2v-2m14 0v2h2v-2M7 13v4h4v-4m2 0v4h4v-4M3 15v2h2v-2m14 0v2h2v-2M3 19a2 2 0 0 0 2 2v-2m2 0v2h2v-2m2 0v2h2v-2m2 0v2h2v-2m2 0v2a2 2 0 0 0 2-2Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/select-inverse.svg�������������������������0000664�0000000�0000000�00000000331�14753064456�0027055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h2v2h2V3h2v2h2V3h2v2h2V3h2v2h2v2h-2v2h2v2h-2v2h2v2h-2v2h2v2h-2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2H3v-2h2v-2H3v-2h2v-2H3V9h2V7H3V5h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/select-marker.svg��������������������������0000664�0000000�0000000�00000000671�14753064456�0026672�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3h1v2H3V4c0-.55.45-1 1-1m16 0c.55 0 1 .45 1 1v1h-2V3zm-5 2V3h2v2zm-4 0V3h2v2zM7 5V3h2v2zm4 16v-2h2v2zm-4 0v-2h2v2zm-3 0c-.55 0-1-.45-1-1v-1h2v2zm-1-6h2v2H3zm0-4h2v2H3zm0-4h2v2H3zm18 0v2h-2V7zm-1.5 6c1.9 0 3.5 1.6 3.5 3.5 0 2.6-3.5 6.5-3.5 6.5S16 19.1 16 16.5c0-1.9 1.6-3.5 3.5-3.5m0 4.8c.7 0 1.3-.6 1.2-1.2 0-.6-.6-1.2-1.2-1.2s-1.2.5-1.2 1.2c0 .6.5 1.2 1.2 1.2"/></svg>�����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/select-multiple-marker.svg�����������������0000664�0000000�0000000�00000000720�14753064456�0030516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 4h1v2H6V5c0-.55.45-1 1-1m12 0c.55 0 1 .45 1 1v1h-2V4zm-5 2V4h2v2zm-4 0V4h2v2zm0 12v-2h2v2zm-3 0c-.55 0-1-.45-1-1v-1h2v2zm-1-6h2v2H6zm0-4h2v2H6zm14 0v2h-2V8zM3 8h1v12h10.58l1.45 2H3c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1m15.5 4c1.9 0 3.5 1.6 3.5 3.5 0 2.6-3.5 6.5-3.5 6.5S15 18.1 15 15.5c0-1.9 1.6-3.5 3.5-3.5m0 4.8c.7 0 1.3-.6 1.2-1.2 0-.6-.6-1.2-1.2-1.2s-1.2.5-1.2 1.2c0 .6.5 1.2 1.2 1.2"/></svg>������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/select-multiple.svg������������������������0000664�0000000�0000000�00000000551�14753064456�0027241�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 12h2v2h-2zm-4 4h2v2h-2zm6 1c0 .55-.45 1-1 1h-1v-2h2zM7 4h1v2H6V5c0-.55.45-1 1-1m12 0c.55 0 1 .45 1 1v1h-2V4zm-5 2V4h2v2zm-4 0V4h2v2zm0 12v-2h2v2zm-3 0c-.55 0-1-.45-1-1v-1h2v2zm-1-6h2v2H6zm0-4h2v2H6zm14 0v2h-2V8zM3 8h1v12h12v1c0 .54-.43 1-.97 1H3c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/select-off.svg�����������������������������0000664�0000000�0000000�00000000511�14753064456�0026154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 4.27 2.28 3 21 21.72 19.73 23 17 20.27V21h-2v-2h.73L5 8.27V9H3V7h.73zM20 3a1 1 0 0 1 1 1v1h-2V3zm-5 2V3h2v2zm-4 0V3h2v2zM7 5V3h2v2zm4 16v-2h2v2zm-4 0v-2h2v2zm-3 0a1 1 0 0 1-1-1v-1h2v2zm-1-6h2v2H3zm18 0v2h-2v-2zM3 11h2v2H3zm18 0v2h-2v-2zm0-4v2h-2V7z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/select-place.svg���������������������������0000664�0000000�0000000�00000000452�14753064456�0026472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3h1v2H3V4c0-.5.5-1 1-1m16 0c.5 0 1 .5 1 1v1h-2V3zm-5 2V3h2v2zm-4 0V3h2v2zM7 5V3h2v2zm14 7c0 .5-.5 1-1 1h-1v-2h2zm-6 1v-2h2v2zm-4 0v-2h2v2zm-4 0v-2h2v2zm-3 0c-.5 0-1-.5-1-1v-1h2v2zM3 7h2v2H3zm18 0v2h-2V7zM7 16l5 5 5-5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/select-remove.svg��������������������������0000664�0000000�0000000�00000000676�14753064456�0026713�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 20c0 .55-.45 1-1 1h-1v-2h2zm-6 1v-2h2v2zm-4 0v-2h2v2zm-4 0v-2h2v2zm-3 0c-.55 0-1-.45-1-1v-1h2v2zm-1-6h2v2H3zm18 0v2h-2v-2zm-6.41-7L12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41zM3 11h2v2H3zm18 0v2h-2v-2zM3 7h2v2H3zm18 0v2h-2V7zM4 3h1v2H3V4c0-.55.45-1 1-1m16 0c.55 0 1 .45 1 1v1h-2V3zm-5 2V3h2v2zm-4 0V3h2v2zM7 5V3h2v2z"/></svg>������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/select-search.svg��������������������������0000664�0000000�0000000�00000000726�14753064456�0026657�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.31 18.9c.44-.69.69-1.52.69-2.4 0-2.5-2-4.5-4.5-4.5S11 14 11 16.5s2 4.5 4.5 4.5c.87 0 1.69-.25 2.38-.68L21 23.39 22.39 22zm-3.81.1a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5M21 9h-2V7h2zm0-4h-2V3h1c.55 0 1 .45 1 1zm-2 6.03V11h2v2h-.03A6.6 6.6 0 0 0 19 11.03M17 5h-2V3h2zm-4 0h-2V3h2zM3 7h2v2H3zm4 12h2v2H7zm-4-8h2v2H3zm1-8h1v2H3V4c0-.55.45-1 1-1m5 2H7V3h2zM3 19h2v2H4c-.55 0-1-.45-1-1zm0-4h2v2H3z"/></svg>������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/select.svg���������������������������������0000664�0000000�0000000�00000000521�14753064456�0025405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3h1v2H3V4a1 1 0 0 1 1-1m16 0a1 1 0 0 1 1 1v1h-2V3zm-5 2V3h2v2zm-4 0V3h2v2zM7 5V3h2v2zm14 15a1 1 0 0 1-1 1h-1v-2h2zm-6 1v-2h2v2zm-4 0v-2h2v2zm-4 0v-2h2v2zm-3 0a1 1 0 0 1-1-1v-1h2v2zm-1-6h2v2H3zm18 0v2h-2v-2zM3 11h2v2H3zm18 0v2h-2v-2zM3 7h2v2H3zm18 0v2h-2V7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/selection-drag.svg�������������������������0000664�0000000�0000000�00000000323�14753064456�0027026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 17h3v-3h2v3h3v2h-3v3h-2v-3h-3zm-2 0v2H9v-2zm-5 0v2H3v-4h2v2zm-4-4v-3h2v3zm0-5V4h4v2H5v2zm6-4h3v2H9zm6 0h4v4h-2V6h-2zm4 6v2h-2v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/selection-ellipse-arrow-inside.svg���������0000664�0000000�0000000�00000001042�14753064456�0032146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.2 4c-1.26.12-2.48.53-3.56 1.2l-1-1.73A9.7 9.7 0 0 1 11 2m6.53 4.25c-.91-.86-2-1.52-3.19-1.92L15 2.39c1.5.45 2.89 1.27 4 2.39M5.34 7.41A8.3 8.3 0 0 0 4 10.83l-2-.28C2.2 9 2.79 7.5 3.7 6.23M22 12v.66l-2-.16V12c0-1.08-.19-2.14-.61-3.14l1.83-.8c.53 1.25.78 2.59.78 3.94M6 17.3l-1.5 1.31a10.46 10.46 0 0 1-2.2-4.08L4.17 14c.36 1.22.99 2.35 1.83 3.3m6.14 4.7H12c-1.5 0-3-.32-4.36-.93l.89-1.83c1.09.51 2.27.76 3.47.76h.19M17 21h-2v-6h6v2h-2.58l2.72 2.76-1.41 1.41L17 18.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/selection-ellipse-remove.svg���������������0000664�0000000�0000000�00000001475�14753064456�0031052�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6.35 20.25 1.21-1.59c.86.57 1.83.98 2.87 1.19l-.27 1.98c-1.39-.26-2.66-.83-3.81-1.58m10.08-1.59 1.21 1.6c-1.14.77-2.41 1.31-3.8 1.57l-.27-1.98c1.04-.21 2-.62 2.86-1.19m3.41-5.07 1.99.27c-.26 1.39-.83 2.68-1.59 3.8l-1.59-1.21c.57-.85.98-1.82 1.19-2.86m-17.67.25 1.98-.27a8.1 8.1 0 0 0 1.19 2.87l-1.59 1.21C3 16.5 2.43 15.23 2.17 13.84M14.59 8 12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41zm4.07-.44 1.59-1.21a9.9 9.9 0 0 1 1.58 3.83l-1.98.27a8.1 8.1 0 0 0-1.19-2.89M4.15 10.43l-1.98-.27C2.43 8.77 3 7.5 3.75 6.35l1.59 1.21a8.1 8.1 0 0 0-1.19 2.87m9.42-6.28.27-1.98c1.39.26 2.66.83 3.81 1.58l-1.21 1.59a8.1 8.1 0 0 0-2.87-1.19M7.56 5.34 6.35 3.75C7.5 3 8.77 2.43 10.16 2.17l.27 1.98a8.1 8.1 0 0 0-2.87 1.19"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/selection-ellipse.svg����������������������0000664�0000000�0000000�00000001332�14753064456�0027547�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6.35 20.25 1.21-1.59c.86.57 1.83.98 2.87 1.19l-.27 1.98c-1.39-.26-2.66-.83-3.81-1.58m10.08-1.59 1.21 1.6c-1.14.77-2.41 1.31-3.8 1.57l-.27-1.98c1.04-.21 2-.62 2.86-1.19m3.41-5.07 1.99.27c-.26 1.39-.83 2.68-1.59 3.8l-1.59-1.21c.57-.85.98-1.82 1.19-2.86m-17.67.25 1.98-.27a8.1 8.1 0 0 0 1.19 2.87l-1.59 1.21C3 16.5 2.43 15.23 2.17 13.84m16.49-6.28 1.59-1.21a9.9 9.9 0 0 1 1.58 3.83l-1.98.27a8.1 8.1 0 0 0-1.19-2.89m-5.09-3.41.27-1.98c1.39.26 2.66.83 3.81 1.58l-1.21 1.59a8.1 8.1 0 0 0-2.87-1.19M7.56 5.34 6.35 3.75C7.5 3 8.77 2.43 10.16 2.17l.27 1.98a8.1 8.1 0 0 0-2.87 1.19m-3.41 5.09-1.98-.27C2.43 8.77 3 7.5 3.75 6.35l1.59 1.21a8.1 8.1 0 0 0-1.19 2.87"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/selection-marker.svg�����������������������0000664�0000000�0000000�00000000641�14753064456�0027375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4a2 2 0 0 1 2-2h3v2H4v3H2zm20 0v3h-2V4h-3V2h3a2 2 0 0 1 2 2M2 20v-3h2v3h3v2H4a2 2 0 0 1-2-2m8-18h4v2h-4zm0 18h4v2h-4zM2 10h2v4H2zm16.5 3c1.9 0 3.5 1.6 3.5 3.5 0 2.6-3.5 6.5-3.5 6.5S15 19.1 15 16.5c0-1.9 1.6-3.5 3.5-3.5m0 4.8c.7 0 1.3-.6 1.2-1.2 0-.6-.6-1.2-1.2-1.2s-1.2.5-1.2 1.2c0 .6.5 1.2 1.2 1.2M20 10h2v2.34c-.58-.5-1.26-.89-2-1.11z"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/selection-multiple-marker.svg��������������0000664�0000000�0000000�00000000763�14753064456�0031233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 4h2v2H8v1H6V5c0-.55.45-1 1-1m12 0c.55 0 1 .45 1 1v2h-2V6h-1V4zm-8 2V4h4v2zM7 18c-.55 0-1-.45-1-1v-2h2v1h1v2zM6 9h2v4H6zM3 8h1v12h10.58l1.45 2H3c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1m15.5 4c1.9 0 3.5 1.6 3.5 3.5 0 2.6-3.5 6.5-3.5 6.5S15 18.1 15 15.5c0-1.9 1.6-3.5 3.5-3.5m0 4.8c.7 0 1.3-.6 1.2-1.2 0-.6-.6-1.2-1.2-1.2s-1.2.5-1.2 1.2c0 .6.5 1.2 1.2 1.2M11 18v-2h2c.09.66.27 1.33.5 2zm9-9v1.23c-.5-.15-1-.23-1.5-.23l-.5.03V9z"/></svg>�������������mkdocs-material-9.6.4/material/templates/.icons/material/selection-multiple.svg���������������������0000664�0000000�0000000�00000000500�14753064456�0027741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 6V4h4v2zM6 9h2v4H6zm0-3a2 2 0 0 1 2-2h1v2H8v1H6zm2 12a2 2 0 0 1-2-2v-1h2v1h1v2zM18 4a2 2 0 0 1 2 2v1h-2V6h-1V4zm-3 12v2h-4v-2zm5-3h-2V9h2zm0 3a2 2 0 0 1-2 2h-1v-2h1v-1h2zM3 8h1v12h12v1c0 .54-.43 1-.97 1H3c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/selection-off.svg��������������������������0000664�0000000�0000000�00000000465�14753064456�0026672�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.5 3.77 1.78 2.5 21.5 22.22l-1.27 1.28-1.5-1.5H17v-1.73L3.73 7H2V5.27zM4 2h3v2H5.82L3.83 2zm18 2v3h-2V4h-3V2h3a2 2 0 0 1 2 2m-2 13h2v3.17l-2-1.99zM2 20v-3h2v3h3v2H4a2 2 0 0 1-2-2m8-18h4v2h-4zm0 18h4v2h-4zm10-10h2v4h-2zM2 10h2v4H2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/selection-remove.svg�����������������������0000664�0000000�0000000�00000000551�14753064456�0027411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 20v-3h2v3a2 2 0 0 1-2 2h-3v-2zM2 20v-3h2v3h3v2H4c-1.1 0-2-.9-2-2m8 0h4v2h-4zm4.59-12L12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41zM20 10h2v4h-2zM2 10h2v4H2zm0-6a2 2 0 0 1 2-2h3v2H4v3H2zm20 0v3h-2V4h-3V2h3c1.1 0 2 .9 2 2M10 2h4v2h-4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/selection-search.svg�����������������������0000664�0000000�0000000�00000000745�14753064456�0027366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.27 18.9c.43-.69.68-1.52.68-2.4 0-2.5-2-4.5-4.49-4.5s-4.5 2-4.5 4.5 2 4.5 4.5 4.5c.87 0 1.69-.25 2.38-.68l3.12 3.07L22.35 22zm-3.81.1c-1.39 0-2.5-1.12-2.5-2.5s1.11-2.5 2.5-2.5 2.49 1.12 2.49 2.5-1.11 2.5-2.49 2.5M22 14h-.55c-.33-.81-.83-1.53-1.45-2.14V10h2zM20 4h-3V2h3a2 2 0 0 1 2 2v3h-2zm-6 0h-4V2h4zM4 2h3v2H4v3H2V4a2 2 0 0 1 2-2m8 20h-2v-2c.5.82 1.2 1.5 2 2m-8-2h3v2H4a2 2 0 0 1-2-2v-3h2zm0-6H2v-4h2z"/></svg>���������������������������mkdocs-material-9.6.4/material/templates/.icons/material/selection.svg������������������������������0000664�0000000�0000000�00000000402�14753064456�0026111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4a2 2 0 0 1 2-2h3v2H4v3H2zm20 0v3h-2V4h-3V2h3a2 2 0 0 1 2 2m-2 16v-3h2v3a2 2 0 0 1-2 2h-3v-2zM2 20v-3h2v3h3v2H4a2 2 0 0 1-2-2m8-18h4v2h-4zm0 18h4v2h-4zm10-10h2v4h-2zM2 10h2v4H2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/semantic-web.svg���������������������������0000664�0000000�0000000�00000000377�14753064456�0026515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.9 4.22C18.73 6.84 20 2 20 2s-1.11 6.07-6.21 8.55c-1.04.51-1.69.78-1.69.78L3.73 7.25l8.37-3.43s-.2-.06.8.4M11.12 22l-7.79-4.22V9.07l7.79 3.97zm1.76 0 7.8-4.22V9.07l-7.8 3.97z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/send-check-outline.svg���������������������0000664�0000000�0000000�00000000275�14753064456�0027615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3v7l15 2-15 2v7l21-9M4 6.03l7.53 3.22-7.53-1m7.53 6.5L4 17.97v-2.22m18-.25L18.5 19l-2-2-1.5 1.5 3.5 3.5 5-5Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/send-check.svg�����������������������������0000664�0000000�0000000�00000000216�14753064456�0026133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3v7l15 2-15 2v7l21-9m-1 3.5L18.5 19l-2-2-1.5 1.5 3.5 3.5 5-5Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/send-circle-outline.svg��������������������0000664�0000000�0000000�00000000402�14753064456�0027771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 7.71 18 12 8 16.29v-3.34l7.14-.95L8 11.05zM12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/send-circle.svg����������������������������0000664�0000000�0000000�00000000301�14753064456�0026312�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2M8 7.71v3.34l7.14.95-7.14.95v3.34L18 12z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/send-clock-outline.svg���������������������0000664�0000000�0000000�00000000513�14753064456�0027626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3v7l9 2-9 2v7l7.27-3.11A7 7 0 0 0 16 23a7 7 0 0 0 7-7 7 7 0 0 0-7-7zm2 3.03 8.78 3.77a7 7 0 0 0-.68.4L4 8.4zM16 11a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m-1 1.5v4l3 2 .75-1.25-2.25-1.5V12.5zm-5.82 1.95A7 7 0 0 0 9 15.82l-5 2.15V15.6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/send-clock.svg�����������������������������0000664�0000000�0000000�00000000367�14753064456�0026160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3v7l9 2-9 2v7l7.27-3.11A7 7 0 0 0 16 23a7 7 0 0 0 7-7 7 7 0 0 0-7-7zm14 8a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m-1 1.5v4l3 2 .75-1.25-2.25-1.5V12.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/send-lock-outline.svg����������������������0000664�0000000�0000000�00000000454�14753064456�0027467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 18v-.5a2.5 2.5 0 0 0-5 0v.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1m-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zM4 6.03l7.5 3.22-7.5-1zm7.5 8.72L4 17.97v-2.22zM2 3v7l15 2-15 2v7l21-9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/send-lock.svg������������������������������0000664�0000000�0000000�00000000430�14753064456�0026004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 18v-.5a2.5 2.5 0 0 0-2.5-2.5 2.5 2.5 0 0 0-2.5 2.5v.5a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1m-1 0h-3v-.5a1.5 1.5 0 0 1 1.5-1.5 1.5 1.5 0 0 1 1.5 1.5zm1-6L2 21v-7l15-2-15-2V3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/send-outline.svg���������������������������0000664�0000000�0000000�00000000225�14753064456�0026535�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4 6.03 7.5 3.22-7.5-1zm7.5 8.72L4 17.97v-2.22zM2 3v7l15 2-15 2v7l21-9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/send-variant-clock-outline.svg�������������0000664�0000000�0000000�00000001132�14753064456�0031266�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 16.69V13h1.5v2.82l2.44 1.41-.75 1.3zm6.63-4.84L22 12l-.2.08a7.001 7.001 0 0 1-10.75 8.87c-.97-.95-1.63-2.21-1.91-3.54L3 20V4l12.03 5.07C15.35 9 15.67 9 16 9c1.86 0 3.64.74 4.95 2.05.25.25.48.52.68.8m-9.35-1.78L5 7v3.5l5.37 1.34c.52-.7 1.17-1.3 1.91-1.77m-2.17 2.15L5 13.5V17l4.04-1.7c.11-1.13.49-2.17 1.07-3.08M20.85 16c0-2.68-2.18-4.85-4.85-4.85-1.29 0-2.5.51-3.43 1.42-.91.93-1.42 2.14-1.42 3.43 0 2.68 2.17 4.85 4.85 4.85.64 0 1.27-.12 1.86-.35.58-.26 1.14-.62 1.57-1.07.45-.43.81-.99 1.07-1.57.23-.59.35-1.22.35-1.86"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/send-variant-clock.svg���������������������0000664�0000000�0000000�00000001010�14753064456�0027604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 16.69V13h1.5v2.82l2.44 1.41-.75 1.3zM3 20v-6l7.11-1.78c.08-.13.17-.25.26-.38L3 10V4l12.03 5.07C15.35 9 15.67 9 16 9c1.86 0 3.64.74 4.95 2.05.25.25.48.52.68.8L22 12l-.2.08a7.001 7.001 0 0 1-10.75 8.87c-.97-.95-1.63-2.21-1.91-3.54zm17.85-4c0-2.68-2.18-4.85-4.85-4.85-1.29 0-2.5.51-3.43 1.42-.91.93-1.42 2.14-1.42 3.43 0 2.68 2.17 4.85 4.85 4.85.64 0 1.27-.12 1.86-.35.58-.26 1.14-.62 1.57-1.07.45-.43.81-.99 1.07-1.57.23-.59.35-1.22.35-1.86"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/send-variant-outline.svg�������������������0000664�0000000�0000000�00000000207�14753064456�0030177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 20V4l19 8M5 17l11.85-5L5 7v3.5l6 1.5-6 1.5M5 17V7v6.5Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/send-variant.svg���������������������������0000664�0000000�0000000�00000000146�14753064456�0026524�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 20v-6l8-2-8-2V4l19 8Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/send.svg�����������������������������������0000664�0000000�0000000�00000000151�14753064456�0025056�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2 21 21-9L2 3v7l15 2-15 2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/serial-port.svg����������������������������0000664�0000000�0000000�00000000220�14753064456�0026363�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 3h10v2h2v3h-3v6H8V8H5V5h2zm10 6h2v5h-2zm-6 6h2v7h-2zM5 9h2v5H5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/server-minus-outline.svg�������������������0000664�0000000�0000000�00000000343�14753064456�0030244�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 17h8v2H8zM2 5.6v4.8c0 .9.5 1.6 1.2 1.6h17.7c.6 0 1.2-.7 1.2-1.6V5.6C22 4.7 21.5 4 20.8 4H3.2C2.5 4 2 4.7 2 5.6M10 9V7H9v2zM5 9h2V7H5zm15 1H4V6h16z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/server-minus.svg���������������������������0000664�0000000�0000000�00000000265�14753064456�0026572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4h16a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1m5 4h1V6H9zM5 6v2h2V6zm3 10h8v2H8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/server-network-off.svg���������������������0000664�0000000�0000000�00000000674�14753064456�0027704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19h1a1 1 0 0 1 1 1h.73L13 17.27zm9 1v1.18L20.82 20zm-1 2.72L19.73 24l-2-2H15a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1H2v-2h7a1 1 0 0 1 1-1h1v-2H4a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h2.73l-2-2H4a1 1 0 0 1-1-1v-.73l-2-2L2.28 4zM4 3h16a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H9.82L7 6.18V5H5.82L3.84 3zm16 8a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-2.18l-6-6zM9 7h1V5H9zm0 8h1v-.73l-1-1zm-4-2v2h2v-2z"/></svg>��������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/server-network-outline.svg�����������������0000664�0000000�0000000�00000000452�14753064456�0030603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 13v2h1c.6 0 1 .4 1 1h7v2h-7c0 .6-.4 1-1 1h-4c-.6 0-1-.4-1-1H2v-2h7c0-.6.4-1 1-1h1v-2H3.2c-.7 0-1.2-.7-1.2-1.6V6.6C2 5.7 2.5 5 3.2 5h17.6c.7 0 1.2.7 1.2 1.6v4.8c0 .9-.5 1.6-1.2 1.6zm-4-3V8h1v2zM5 8h2v2H5zm15-1H4v4h16z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/server-network.svg�������������������������0000664�0000000�0000000�00000000535�14753064456�0027130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19h1a1 1 0 0 1 1 1h7v2h-7a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1H2v-2h7a1 1 0 0 1 1-1h1v-2H4a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-7zM4 3h16a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1m5 4h1V5H9zm0 8h1v-2H9zM5 5v2h2V5zm0 8v2h2v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/server-off.svg�����������������������������0000664�0000000�0000000�00000000717�14753064456�0026213�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 1h16a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H8.82l-2-2H7V3H5v.18L3.21 1.39C3.39 1.15 3.68 1 4 1m18 21.72L20.73 24l-1-1H4a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h9.73l-2-2H4a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h1.73L3.68 6.95c-.3-.1-.53-.33-.63-.63L1 4.27 2.28 3zM20 9a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-3.18l-6-6zm0 8a1 1 0 0 1 1 1v1.18L18.82 17zM9 5h1V3H9zm0 8h.73L9 12.27zm0 8h1v-2H9zM5 11v2h2v-2zm0 8v2h2v-2z"/></svg>�������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/server-outline.svg�������������������������0000664�0000000�0000000�00000000550�14753064456�0027113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4.6v4.8c0 .9.5 1.6 1.2 1.6h17.7c.6 0 1.2-.7 1.2-1.6V4.6C22 3.7 21.5 3 20.8 3H3.2C2.5 3 2 3.7 2 4.6M10 8V6H9v2zM5 8h2V6H5zm15 1H4V5h16zM2 14.6v4.8c0 .9.5 1.6 1.2 1.6h17.7c.6 0 1.2-.7 1.2-1.6v-4.8c0-.9-.5-1.6-1.2-1.6H3.2c-.7 0-1.2.7-1.2 1.6m8 3.4v-2H9v2zm-5 0h2v-2H5zm15 1H4v-4h16z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/server-plus-outline.svg��������������������0000664�0000000�0000000�00000000367�14753064456�0030102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4.6v4.8c0 .9.5 1.6 1.2 1.6h17.7c.6 0 1.2-.7 1.2-1.6V4.6C22 3.7 21.5 3 20.8 3H3.2C2.5 3 2 3.7 2 4.6M10 8V6H9v2zM5 8h2V6H5zm15 1H4V5h16zM8 16h3v-3h2v3h3v2h-3v3h-2v-3H8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/server-plus.svg����������������������������0000664�0000000�0000000�00000000311�14753064456�0026412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4h16a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1m5 4h1V6H9zM5 6v2h2V6zm3 10h3v-3h2v3h3v2h-3v3h-2v-3H8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/server-remove.svg��������������������������0000664�0000000�0000000�00000000421�14753064456�0026726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4h16a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1m5 4h1V6H9zM5 6v2h2V6zm5.59 11L8 14.41 9.41 13 12 15.59 14.59 13 16 14.41 13.41 17 16 19.59 14.59 21 12 18.41 9.41 21 8 19.59z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/server-security.svg������������������������0000664�0000000�0000000�00000000730�14753064456�0027303�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 1h16a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1m0 8h16a1 1 0 0 1 1 1v.67l-2.5-1.11-6.5 2.88V15H3a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1m0 8h8c.06 2.25 1 4.4 2.46 6H3a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1M8 5h1V3H8zm0 8h1v-2H8zm0 8h1v-2H8zM4 3v2h2V3zm0 8v2h2v-2zm0 8v2h2v-2zm13.5-7 4.5 2v3c0 2.78-1.92 5.37-4.5 6-2.58-.63-4.5-3.22-4.5-6v-3zm0 1.94L15 15.06v2.66c0 1.54 1.07 2.98 2.5 3.34z"/></svg>����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/server.svg���������������������������������0000664�0000000�0000000�00000000545�14753064456�0025442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 1h16a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1m0 8h16a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1m0 8h16a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1M9 5h1V3H9zm0 8h1v-2H9zm0 8h1v-2H9zM5 3v2h2V3zm0 8v2h2v-2zm0 8v2h2v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/set-all.svg��������������������������������0000664�0000000�0000000�00000000701�14753064456�0025467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 5c1.04 0 2.06.24 3 .68.94-.44 1.96-.68 3-.68a7 7 0 0 1 7 7 7 7 0 0 1-7 7c-1.04 0-2.06-.24-3-.68-.94.44-1.96.68-3 .68a7 7 0 0 1-7-7 7 7 0 0 1 7-7m-.5 7c0 1.87.79 3.56 2.06 4.75l1-.46c-1.25-1-2.06-2.55-2.06-4.29s.81-3.29 2.06-4.29l-1-.46A6.5 6.5 0 0 0 8.5 12m7 0c0-1.87-.79-3.56-2.06-4.75l-1 .46c1.25 1 2.06 2.55 2.06 4.29s-.81 3.29-2.06 4.29l1 .46A6.5 6.5 0 0 0 15.5 12"/></svg>���������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/set-center-right.svg�����������������������0000664�0000000�0000000�00000000647�14753064456�0027323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 19c-1.04 0-2.06-.24-3-.68-.94.44-1.96.68-3 .68a7 7 0 0 1-7-7 7 7 0 0 1 7-7c1.04 0 2.06.24 3 .68.94-.44 1.96-.68 3-.68a7 7 0 0 1 7 7 7 7 0 0 1-7 7m-6-2 1-.11c-1.28-1.3-2-3.06-2-4.89s.72-3.59 2-4.9L9 7a5 5 0 0 0-5 5 5 5 0 0 0 5 5m6.5-5c0-1.87-.79-3.56-2.06-4.75l-1 .46c1.25 1 2.06 2.55 2.06 4.29s-.81 3.29-2.06 4.29l1 .46A6.5 6.5 0 0 0 15.5 12"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/set-center.svg�����������������������������0000664�0000000�0000000�00000000700�14753064456�0026176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 5a7 7 0 0 0-7 7 7 7 0 0 0 7 7c1.04 0 2.06-.24 3-.68.94.44 1.96.68 3 .68a7 7 0 0 0 7-7 7 7 0 0 0-7-7c-1.04 0-2.06.24-3 .68-.94-.44-1.96-.68-3-.68m0 2c.34 0 .67.03 1 .1-1.28 1.31-2 3.07-2 4.9s.72 3.59 2 4.89c-.33.07-.66.11-1 .11a5 5 0 0 1-5-5 5 5 0 0 1 5-5m6 0a5 5 0 0 1 5 5 5 5 0 0 1-5 5c-.34 0-.67-.03-1-.1 1.28-1.31 2-3.07 2-4.9s-.72-3.59-2-4.89c.33-.07.66-.11 1-.11"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/set-left-center.svg������������������������0000664�0000000�0000000�00000000644�14753064456�0027135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 5c1.04 0 2.06.24 3 .68.94-.44 1.96-.68 3-.68a7 7 0 0 1 7 7 7 7 0 0 1-7 7c-1.04 0-2.06-.24-3-.68-.94.44-1.96.68-3 .68a7 7 0 0 1-7-7 7 7 0 0 1 7-7m6 2-1 .11c1.28 1.3 2 3.06 2 4.89s-.72 3.59-2 4.9l1 .1a5 5 0 0 0 5-5 5 5 0 0 0-5-5m-6.5 5c0 1.87.79 3.56 2.06 4.75l1-.46c-1.25-1-2.06-2.55-2.06-4.29s.81-3.29 2.06-4.29l-1-.46A6.5 6.5 0 0 0 8.5 12"/></svg>��������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/set-left-right.svg�������������������������0000664�0000000�0000000�00000000473�14753064456�0026772�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 5c1.04 0 2.06.24 3 .68.94-.44 1.96-.68 3-.68a7 7 0 0 1 7 7 7 7 0 0 1-7 7c-1.04 0-2.06-.24-3-.68-.94.44-1.96.68-3 .68a7 7 0 0 1-7-7 7 7 0 0 1 7-7m0 7c0 2.22 1.21 4.16 3 5.2 1.79-1.04 3-2.98 3-5.2s-1.21-4.16-3-5.2C10.21 7.84 9 9.78 9 12"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/set-left.svg�������������������������������0000664�0000000�0000000�00000000637�14753064456�0025661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 5a7 7 0 0 0-7 7 7 7 0 0 0 7 7c1.04 0 2.06-.24 3-.68.94.44 1.96.68 3 .68a7 7 0 0 0 7-7 7 7 0 0 0-7-7c-1.04 0-2.06.24-3 .68-.94-.44-1.96-.68-3-.68m6 2a5 5 0 0 1 5 5 5 5 0 0 1-5 5c-.34 0-.67-.03-1-.1 1.28-1.31 2-3.07 2-4.9s-.72-3.59-2-4.89c.33-.07.66-.11 1-.11m-3 1c1.26.95 2 2.43 2 4s-.74 3.05-2 4a5.01 5.01 0 0 1-2-4c0-1.57.74-3.05 2-4"/></svg>�������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/set-merge.svg������������������������������0000664�0000000�0000000�00000000221�14753064456�0026013�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 7v2h5V7zm10 2v2H9v2h3v2l3-3zm5 0v6h5V9zM2 11v2h5v-2zm0 4v2h5v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/set-none.svg�������������������������������0000664�0000000�0000000�00000001015�14753064456�0025655�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 5a7 7 0 0 0-7 7 7 7 0 0 0 7 7c1.04 0 2.06-.24 3-.68.94.44 1.96.68 3 .68a7 7 0 0 0 7-7 7 7 0 0 0-7-7c-1.04 0-2.06.24-3 .68-.94-.44-1.96-.68-3-.68m0 2c.34 0 .67.03 1 .1-1.28 1.31-2 3.07-2 4.9s.72 3.59 2 4.89c-.33.07-.66.11-1 .11a5 5 0 0 1-5-5 5 5 0 0 1 5-5m6 0a5 5 0 0 1 5 5 5 5 0 0 1-5 5c-.34 0-.67-.03-1-.1 1.28-1.31 2-3.07 2-4.9s-.72-3.59-2-4.89c.33-.07.66-.11 1-.11m-3 1c1.26.95 2 2.43 2 4s-.74 3.05-2 4a5.01 5.01 0 0 1-2-4c0-1.57.74-3.05 2-4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/set-right.svg������������������������������0000664�0000000�0000000�00000000574�14753064456�0026044�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 19c-1.04 0-2.06-.24-3-.68-.94.44-1.96.68-3 .68a7 7 0 0 1-7-7 7 7 0 0 1 7-7c1.04 0 2.06.24 3 .68.94-.44 1.96-.68 3-.68a7 7 0 0 1 7 7 7 7 0 0 1-7 7m-6-2 1-.11c-1.28-1.3-2-3.06-2-4.89s.72-3.59 2-4.9L9 7a5 5 0 0 0-5 5 5 5 0 0 0 5 5m3-1c1.26-.95 2-2.43 2-4s-.74-3.05-2-4c-1.26.95-2 2.43-2 4s.74 3.05 2 4"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/set-split.svg������������������������������0000664�0000000�0000000�00000000221�14753064456�0026047�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 7v2h5V7zM2 9v6h5V9zm10 0v2H9v2h3v2l3-3zm5 2v2h5v-2zm0 4v2h5v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/set-square.svg�����������������������������0000664�0000000�0000000�00000000365�14753064456�0026225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.7 17.7-1.1 1.1-.7-.8 1.1-1-2-2-1 1.1-.7-.7 1.1-1.1-1.9-1.9-1.1 1.1-.7-.7 1.1-1.1-2-1.9-1.1 1.1-.7-.7L9 9 7.1 7.1 6 8.1l-.7-.7 1.1-1.1L4 4v16h16zM7 17v-5.8l5.8 5.8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/set-top-box.svg����������������������������0000664�0000000�0000000�00000000507�14753064456�0026313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 15.5a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5V15H2a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1h20a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1h-1v.5a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5V15H5zM3 12v1h2v-1zm3 0v1h2v-1zm14.5-.5a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/settings-helper.svg������������������������0000664�0000000�0000000�00000000162�14753064456�0027244�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 22h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shaker-outline.svg�������������������������0000664�0000000�0000000�00000001011�14753064456�0027053�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.88 4 2.15 2.1-5.53 4.4-1-1L16.87 4zm0-2a2 2 0 0 0-1.55.72L9.8 9.65l3.54 3.54 6.94-5.52c.9-.76.97-2.13.13-2.97L18.3 2.59c-.4-.4-.91-.59-1.42-.59M9.1 10.36l-.71.71a1.02 1.02 0 0 0 0 1.43l2.11 2.1c.21.2.46.29.72.29s.51-.09.71-.29l.7-.7zM6 15c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m3 1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m-5 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m3 1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shaker.svg���������������������������������0000664�0000000�0000000�00000000723�14753064456�0025407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 16c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1m2 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m-5 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m3 1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m8.33-16.28L9.8 9.65l3.54 3.54 6.94-5.52c.9-.76.97-2.13.13-2.97L18.3 2.59c-.84-.84-2.21-.77-2.97.13M8.39 12.5l2.11 2.1c.4.4 1.04.4 1.43 0l.7-.7-3.53-3.54-.71.71a1.02 1.02 0 0 0 0 1.43"/></svg>���������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shape-circle-plus.svg����������������������0000664�0000000�0000000�00000000313�14753064456�0027445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 19a6 6 0 0 0 6-6h2a8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8v2a6 6 0 0 0-6 6 6 6 0 0 0 6 6m8-14h3v2h-3v3h-2V7h-3V5h3V2h2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shape-outline.svg��������������������������0000664�0000000�0000000�00000000461�14753064456�0026706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 13.5v8H3v-8zm-2 2H5v4h4zM12 2l5.5 9h-11zm0 3.86L10.08 9h3.84zM17.5 13c2.5 0 4.5 2 4.5 4.5S20 22 17.5 22 13 20 13 17.5s2-4.5 4.5-4.5m0 2a2.5 2.5 0 0 0-2.5 2.5 2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shape-oval-plus.svg������������������������0000664�0000000�0000000�00000000367�14753064456�0027156�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 5h3v2h-3v3h-2V7h-3V5h3V2h2zm-8-1 1 .09v2.05c-.32-.09-.66-.14-1-.14-2.76 0-5 3.13-5 7s2.24 7 5 7 5-3.13 5-7l-.05-1h2.01l.04 1c0 4.97-3.13 9-7 9s-7-4.03-7-9 3.13-9 7-9"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shape-plus-outline.svg���������������������0000664�0000000�0000000�00000000461�14753064456�0027667�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 11V2H2v9m2-2V4h5v5m11-2.5C20 7.9 18.9 9 17.5 9S15 7.9 15 6.5 16.11 4 17.5 4 20 5.11 20 6.5M6.5 14 2 22h9m-3.42-2H5.42l1.08-1.92M22 6.5C22 4 20 2 17.5 2S13 4 13 6.5s2 4.5 4.5 4.5S22 9 22 6.5M19 17v-3h-2v3h-3v2h3v3h2v-3h3v-2Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shape-plus.svg�����������������������������0000664�0000000�0000000�00000000312�14753064456�0026205�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2h9v9H2zm15.5 0C20 2 22 4 22 6.5S20 11 17.5 11 13 9 13 6.5 15 2 17.5 2m-11 12 4.5 8H2zM19 17h3v2h-3v3h-2v-3h-3v-2h3v-3h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shape-polygon-plus.svg���������������������0000664�0000000�0000000�00000000237�14753064456�0027700�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 15.7V13h2v4l-9 4-7-7 4-9h4v2H8.3l-2.9 6.6 5 5zM22 5v2h-3v3h-2V7h-3V5h3V2h2v3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shape-rectangle-plus.svg�������������������0000664�0000000�0000000�00000000207�14753064456�0030152�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6h3v2h-3v3h-2V8h-3V6h3V3h2zm-2 11v-3h2v5H3V6h8v2H5v9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shape-square-plus.svg����������������������0000664�0000000�0000000�00000000210�14753064456�0027500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 5h3v2h-3v3h-2V7h-3V5h3V2h2zm-2 14v-6h2v8H3V5h8v2H5v12z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shape-square-rounded-plus.svg��������������0000664�0000000�0000000�00000000354�14753064456�0031147�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 2h2v3h3v2h-3v3h-2V7h-3V5h3zM7 5h4v2H7c-1.1 0-2 .9-2 2v8a2 2 0 0 0 2 2h8c1.11 0 2-.89 2-2v-4h2v4c0 2.21-1.79 4-4 4H7c-2.21 0-4-1.79-4-4V9c0-2.21 1.79-4 4-4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shape.svg����������������������������������0000664�0000000�0000000�00000000263�14753064456�0025231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 13.5v8H3v-8zM12 2l5.5 9h-11zm5.5 11c2.5 0 4.5 2 4.5 4.5S20 22 17.5 22 13 20 13 17.5s2-4.5 4.5-4.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/share-all-outline.svg����������������������0000664�0000000�0000000�00000000344�14753064456�0027456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9.8v.9l-1.7.2c-2.6.4-4.5 1.4-5.9 2.7 1.7-.5 3.5-.8 5.6-.8h2v1.3l2.2-2.1zM11 5l7 7-7 7v-4.1c-5 0-8.5 1.6-11 5.1 1-5 4-10 11-11m6-1V5l7 7-7 7v-3l4-4"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/share-all.svg������������������������������0000664�0000000�0000000�00000000233�14753064456�0025776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 9V5l7 7-7 7v-4.1c-5 0-8.5 1.6-11 5.1 1-5 4-10 11-11m6-1V5l7 7-7 7v-3l4-4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/share-circle.svg���������������������������0000664�0000000�0000000�00000000306�14753064456�0026470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m2 14v-3c-3.61 0-6.19 1.43-8 4 .72-3.67 2.94-7.27 8-8V6l5 5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/share-off-outline.svg����������������������0000664�0000000�0000000�00000000430�14753064456�0027454�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l7.8 7.8C5.4 12.9 3.7 16.4 3 20c2.3-3.3 5.6-4.9 10-5.1l1 1V19l1.6-1.6 5.2 5.3M8.3 13.8c.64-.58 1.35-1.09 2.1-1.5l.9.8m2.9-2.1-1.7-1.7L14 9V5l7 7-2.9 2.9-1.4-1.4 1.5-1.5L16 9.8v.9"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/share-off.svg������������������������������0000664�0000000�0000000�00000000326�14753064456�0026003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.8 22.7-5.2-5.2L14 19v-3.1l-.9-1c-4.5.3-7.7 1.9-10.1 5.2.58-3.79 2.72-7.16 5.9-9.3L1.1 3l1.3-1.3 19.7 19.8m-4-6.6L21 12l-7-7v4l-1.5.3"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/share-outline.svg��������������������������0000664�0000000�0000000�00000000340�14753064456�0026704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 5v4C7 10 4 15 3 20c2.5-3.5 6-5.1 11-5.1V19l7-7zm2 4.83L18.17 12 16 14.17V12.9h-2c-2.07 0-3.93.38-5.66.95 1.4-1.39 3.2-2.48 5.94-2.85l1.72-.27z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/share-variant-outline.svg������������������0000664�0000000�0000000�00000001107�14753064456�0030350�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.15c-.05.21-.08.43-.08.66 0 1.61 1.31 2.91 2.92 2.91s2.92-1.3 2.92-2.91-1.31-2.92-2.92-2.92M18 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1M6 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m12 7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/share-variant.svg��������������������������0000664�0000000�0000000�00000000657�14753064456�0026704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9a3 3 0 0 0-3 3 3 3 0 0 0 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.15c-.05.21-.08.43-.08.66 0 1.61 1.31 2.91 2.92 2.91s2.92-1.3 2.92-2.91A2.92 2.92 0 0 0 18 16.08"/></svg>���������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/share.svg����������������������������������0000664�0000000�0000000�00000000202�14753064456�0025224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21 12-7-7v4C7 10 4 15 3 20c2.5-3.5 6-5.1 11-5.1V19z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shark-fin-outline.svg����������������������0000664�0000000�0000000�00000001054�14753064456�0027467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 16v2h-2c-1.4 0-2.8-.4-4-1-2.5 1.3-5.5 1.3-8 0-1.2.6-2.6 1-4 1H2v-2h2c1.4 0 2.8-.5 4-1.3 2.4 1.7 5.6 1.7 8 0 1.2.8 2.6 1.3 4 1.3zM5.28 13.79c.54-.16 1.09-.41 1.61-.75L8 12.28c.69-2.28.78-5.01-.41-8.14 4.36.75 8.3 4.51 9.78 9.05.75.45 1.54.72 2.29.78C18.24 7.4 12.37 2 6 2c-.35 0-.67.18-.85.47-.18.3-.2.67-.04.98 2.17 4.34 1.5 7.84.17 10.34M16 18.7c-2.4 1.7-5.6 1.7-8 0-1.2.8-2.6 1.3-4 1.3H2v2h2c1.4 0 2.8-.4 4-1 2.5 1.3 5.5 1.3 8 0 1.2.6 2.6 1 4 1h2v-2h-2c-1.4 0-2.8-.5-4-1.3"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shark-fin.svg������������������������������0000664�0000000�0000000�00000001064�14753064456�0026013�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 16v2h-2c-1.4 0-2.8-.4-4-1-2.5 1.3-5.5 1.3-8 0-1.2.6-2.6 1-4 1H2v-2h2c1.4 0 2.8-.5 4-1.3 2.4 1.7 5.6 1.7 8 0 1.2.8 2.6 1.3 4 1.3zM5.28 13.79c.54-.16 1.09-.41 1.61-.75l1.14-.77 1.13.8C10 13.66 11 14 12 14s2-.34 2.84-.93l1.13-.8 1.14.77c.82.55 1.72.86 2.56.93C18.24 7.4 12.37 2 6 2c-.35 0-.67.18-.85.47-.18.3-.2.67-.04.98 2.17 4.34 1.5 7.84.17 10.34M16 18.7c-2.4 1.7-5.6 1.7-8 0-1.2.8-2.6 1.3-4 1.3H2v2h2c1.4 0 2.8-.4 4-1 2.5 1.3 5.5 1.3 8 0 1.2.6 2.6 1 4 1h2v-2h-2c-1.4 0-2.8-.5-4-1.3"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shark-off.svg������������������������������0000664�0000000�0000000�00000001061�14753064456�0026006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.26 8.06 7.27 7.27c.47-.16.93-.33 1.34-.52-.15-.18-.34-.37-.59-.51-.65-.39-1.46-.63-2.28-.8.82-.16 1.67-.28 2.59-.15.46.06.95.19 1.41.51.1.06.17.14.24.19C22.4 13.26 23 12.44 23 12c0-.87-3.81-2.5-7.44-2.91C14.66 7.18 12.54 6 11 6c.25.76.31 1.45.26 2.06m5.97 2.32c.61.12 1.2.29 1.74.46.03.05.03.1.03.16 0 .55-.45 1-1 1s-1-.45-1-1c0-.24.1-.45.23-.62m4.88 11.08-1.27 1.27-5.42-5.42c-.54.44-1.07.69-1.42.69v-2c-3 0-8-2-8-2s-2 3-4 3l1-4-2-6c2 0 5 4 5 4s.96-.38 2.3-.81L1.11 3l1.28-1.27z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shark.svg����������������������������������0000664�0000000�0000000�00000000770�14753064456�0025244�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.56 9.09C14.66 7.18 12.54 6 11 6c.47 1.4.28 2.57-.05 3.43C8.45 10 6 11 6 11S3 7 1 7l2 6-1 4c2 0 4-3 4-3s5 2 8 2v2c.65 0 1.91-.83 2.73-2.23 1.24-.21 2.27-.56 3.14-.96-.15-.18-.34-.37-.59-.51-.65-.39-1.46-.63-2.28-.8.82-.16 1.67-.28 2.59-.15.46.06.95.19 1.41.51.1.06.17.14.24.19C22.4 13.26 23 12.44 23 12c0-.87-3.81-2.5-7.44-2.91M18 12c-.55 0-1-.45-1-1 0-.24.1-.45.23-.62.61.12 1.2.29 1.74.46.03.05.03.1.03.16 0 .55-.45 1-1 1"/></svg>��������mkdocs-material-9.6.4/material/templates/.icons/material/sheep.svg����������������������������������0000664�0000000�0000000�00000002033�14753064456�0025232�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 8.5a2.5 2.5 0 0 1-2.5 2.5c-1.08 0-2-.69-2.34-1.64-.44.39-1.02.64-1.66.64-.56 0-1.08-.19-1.5-.5-.42.31-.93.5-1.5.5-.64 0-1.22-.25-1.66-.64C8.5 10.31 7.58 11 6.5 11A2.5 2.5 0 0 1 4 8.5c0-1.24.91-2.27 2.1-2.46-.06-.17-.1-.35-.1-.54A1.5 1.5 0 0 1 7.5 4c.2 0 .39.04.56.11C8.23 3.47 8.81 3 9.5 3c.25 0 .5.07.68.17C10.5 2.5 11.19 2 12 2s1.5.5 1.82 1.17c.18-.1.43-.17.68-.17.69 0 1.27.47 1.44 1.11.17-.07.36-.11.56-.11A1.5 1.5 0 0 1 18 5.5c0 .19-.04.37-.1.54 1.19.19 2.1 1.22 2.1 2.46M10 12a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m4 0a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m6.23-1.34c-.64.81-1.62 1.34-2.73 1.34-.45 0-.88-.1-1.29-.27-.01 2.55-.38 5.63-1.76 7.22-.52.59-1.15.91-1.95 1.01V18h-1v1.96c-.8-.1-1.43-.41-1.95-1.01-1.39-1.6-1.76-4.66-1.77-7.21-.4.16-.83.26-1.28.26-1.11 0-2.09-.53-2.73-1.34C2.88 11.55 2 12 2 12s1 2 3 2c.36 0 .64-.04.88-.09C6.22 17.73 7.58 22 12 22s5.78-4.27 6.12-8.09c.24.05.52.09.88.09 2 0 3-2 3-2s-.88-.45-1.77-1.34"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-account-outline.svg�����������������0000664�0000000�0000000�00000001042�14753064456�0030504�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5zm0 2.18 7 3.12v4.92c0 1.7-.5 3.43-1.35 4.95C16 14.94 13.26 14.5 12 14.5s-4 .44-5.65 1.67C5.5 14.65 5 12.92 5 11.22V6.3zM12 6a3.5 3.5 0 0 0-3.5 3.5A3.5 3.5 0 0 0 12 13a3.5 3.5 0 0 0 3.5-3.5A3.5 3.5 0 0 0 12 6m0 2a1.5 1.5 0 0 1 1.5 1.5A1.5 1.5 0 0 1 12 11a1.5 1.5 0 0 1-1.5-1.5A1.5 1.5 0 0 1 12 8m0 8.5c1.57 0 3.64.61 4.53 1.34C15.29 19.38 13.7 20.55 12 21c-1.7-.45-3.29-1.62-4.53-3.16.9-.73 2.96-1.34 4.53-1.34"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-account-variant-outline.svg���������0000664�0000000�0000000�00000000773�14753064456�0032160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 14.4c.6 0 1.1.5 1.1 1.1s-.5 1.1-1.1 1.1-1.1-.5-1.1-1.1.5-1.1 1.1-1.1m0 3.1c-.7 0-2.2.4-2.2 1.1.5.7 1.3 1.2 2.2 1.2s1.7-.5 2.2-1.2c0-.7-1.5-1.1-2.2-1.1m1-6.4V6.3L10.5 3 3 6.3v4.9c0 4.5 3.2 8.8 7.5 9.8.6-.1 1.1-.3 1.6-.5C13.2 22 15 23 17 23c3.3 0 6-2.7 6-6 0-3-2.2-5.4-5-5.9M11 17c0 .6.1 1.1.2 1.6-.2.1-.5.2-.7.3-3.2-1-5.5-4.2-5.5-7.7V7.6l5.5-2.4L16 7.6v3.5c-2.8.5-5 2.9-5 5.9m6 4c-2.2 0-4-1.8-4-4s1.8-4 4-4 4 1.8 4 4-1.8 4-4 4"/></svg>�����mkdocs-material-9.6.4/material/templates/.icons/material/shield-account-variant.svg�����������������0000664�0000000�0000000�00000000623�14753064456�0030475�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 11c.3 0 .7 0 1 .1V6.3L10.5 3 3 6.3v4.9c0 4.5 3.2 8.8 7.5 9.8.6-.1 1.1-.3 1.6-.5-.7-1-1.1-2.2-1.1-3.5 0-3.3 2.7-6 6-6m0 2c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4m0 1.4c.6 0 1.1.5 1.1 1.1s-.5 1.1-1.1 1.1-1.1-.5-1.1-1.1.5-1.1 1.1-1.1m0 5.4c-.9 0-1.7-.5-2.2-1.2.1-.7 1.5-1.1 2.2-1.1s2.2.4 2.2 1.1c-.5.7-1.3 1.2-2.2 1.2"/></svg>�������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-account.svg�������������������������0000664�0000000�0000000�00000000510�14753064456�0027026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5zm0 4a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3m5.13 12A9.7 9.7 0 0 1 12 20.92 9.7 9.7 0 0 1 6.87 17c-.34-.5-.63-1-.87-1.53 0-1.65 2.71-3 6-3s6 1.32 6 3c-.24.53-.53 1.03-.87 1.53"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-airplane-outline.svg����������������0000664�0000000�0000000�00000000564�14753064456�0030653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11c0 5.55-3.84 10.74-9 12-5.16-1.26-9-6.45-9-12V5l9-4 9 4zm-9 10c3.75-1 7-5.46 7-9.78V6.3l-7-3.12L5 6.3v4.92C5 15.54 8.25 20 12 21m0-15.32c.5 0 .95.43.95.95v3.48L18 13.26v1.27l-5.05-1.58v3.47l1.26.95v.95L12 17.68l-2.21.64v-.95l1.26-.95v-3.47L6 14.53v-1.27l5.05-3.15V6.63c0-.52.45-.95.95-.95"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-airplane.svg������������������������0000664�0000000�0000000�00000000450�14753064456�0027170�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5zm0 4.68c.5 0 .95.43.95.95v3.48L18 13.26v1.27l-5.05-1.58v3.47l1.26.95v.95L12 17.68l-2.21.64v-.95l1.26-.95v-3.47L6 14.53v-1.27l5.05-3.15V6.63c0-.52.45-.95.95-.95"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-alert-outline.svg�������������������0000664�0000000�0000000�00000000355�14753064456�0030165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11c0 5.55-3.84 10.74-9 12-5.16-1.26-9-6.45-9-12V5l9-4 9 4zm-9 10c3.75-1 7-5.46 7-9.78V6.3l-7-3.12L5 6.3v4.92C5 15.54 8.25 20 12 21M11 7h2v6h-2zm0 8h2v2h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-alert.svg���������������������������0000664�0000000�0000000�00000000237�14753064456�0026507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5M11 7h2v6h-2m0 2h2v2h-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-bug-outline.svg���������������������0000664�0000000�0000000�00000000640�14753064456�0027630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.9 6.6-.8.8 1.2 1.2c-.5.3-.9.8-1.1 1.4H7v1h2v1H7v1h2v1H7v1h2.2c.4 1.2 1.5 2 2.8 2s2.4-.8 2.8-2H17v-1h-2v-1h2v-1h-2v-1h2v-1h-2.2c-.2-.6-.6-1.1-1.1-1.5l1.2-1.2-.7-.7L12.8 8H12c-.2 0-.5 0-.7.1zM11 11h2v1h-2zm0 2h2v1h-2zm10-2c0 5.5-3.8 10.7-9 12-5.2-1.3-9-6.5-9-12V5l9-4 9 4zm-9 10c3.8-1 7-5.5 7-9.8V6.3l-7-3.1-7 3.1v4.9c0 4.3 3.2 8.8 7 9.8"/></svg>������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-bug.svg�����������������������������0000664�0000000�0000000�00000000542�14753064456�0026154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 13h2v1h-2zm10-8v6c0 5.5-3.8 10.7-9 12-5.2-1.3-9-6.5-9-12V5l9-4zm-4 5h-2.2c-.2-.6-.6-1.1-1.1-1.5l1.2-1.2-.7-.7L12.8 8H12c-.2 0-.5 0-.7.1L9.9 6.6l-.8.8 1.2 1.2c-.5.3-.9.8-1.1 1.4H7v1h2v1H7v1h2v1H7v1h2.2c.4 1.2 1.5 2 2.8 2s2.4-.8 2.8-2H17v-1h-2v-1h2v-1h-2v-1h2zm-6 2h2v-1h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-car.svg�����������������������������0000664�0000000�0000000�00000000624�14753064456�0026145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.42 7.5 16 11H8l1.42-3.5zM9 12c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m6 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m6-7v6c0 5.55-3.84 10.74-9 12-5.16-1.26-9-6.45-9-12V5l9-4zm-3 7-2.16-5c-.2-.58-.76-1-1.42-1h-5C8.76 6 8.2 6.42 8 7l-2 5v4c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h6v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1z"/></svg>������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-check-outline.svg�������������������0000664�0000000�0000000�00000000377�14753064456�0030137�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11c0 5.55-3.84 10.74-9 12-5.16-1.26-9-6.45-9-12V5l9-4 9 4zm-9 10c3.75-1 7-5.46 7-9.78V6.3l-7-3.12L5 6.3v4.92C5 15.54 8.25 20 12 21m-2-4-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-check.svg���������������������������0000664�0000000�0000000�00000000265�14753064456�0026456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10 17-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9m-6-8L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-cross-outline.svg�������������������0000664�0000000�0000000�00000000346�14753064456�0030207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11c0 5.5-3.8 10.7-9 12-5.2-1.3-9-6.5-9-12V5l9-4 9 4zm-9 10c3.8-1 7-5.5 7-9.8V6.3l-7-3.1-7 3.1v4.9c0 4.3 3.3 8.8 7 9.8m4-12h-3V6h-2v3H8v2h3v8h2v-8h3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-cross.svg���������������������������0000664�0000000�0000000�00000000241�14753064456�0026524�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1 3 5v6c0 5.5 3.8 10.7 9 12 5.2-1.3 9-6.5 9-12V5zm4 9h-3v8h-2v-8H8V8h3V5h2v3h3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-crown-outline.svg�������������������0000664�0000000�0000000�00000000471�14753064456�0030205�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 1 9 4v6c0 5.55-3.84 10.74-9 12-5.16-1.26-9-6.45-9-12V5zm0 2.18L5 6.3v4.92C5 15.54 8.25 20 12 21c3.75-1 7-5.46 7-9.78V6.3zM16 14v1.59c-.04.22-.22.37-.47.41H8.47c-.25-.04-.43-.19-.47-.41V14zm1-6-1 5H8L7 8l2.67 2.67L12 8.34l2.33 2.33z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-crown.svg���������������������������0000664�0000000�0000000�00000000356�14753064456�0026532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 1 9 4v6c0 5.55-3.84 10.74-9 12-5.16-1.26-9-6.45-9-12V5zm4 13H8v1.5c0 .27.19.46.47.5h6.96c.31 0 .52-.16.57-.41V14m1-6-2.67 2.67L12 8.34l-2.33 2.33L7 8l1 5h8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-edit-outline.svg��������������������0000664�0000000�0000000�00000000425�14753064456�0030001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.7 13.6-1.3-1.3c-.1-.1-.2-.2-.4-.2-.1 0-.3.1-.4.2l-1 1 2 2 1-1c.3-.2.3-.5.1-.7M12 19.9V22h2.1l6.1-6.1-2-2.1zm-2 2.4c-4.1-2-7-6.5-7-11.3V5l9-4 9 4v3.1l-2 2V6.3l-7-3.1-7 3.1v4.9c0 3.5 2.2 7.1 5 8.9z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-edit.svg����������������������������0000664�0000000�0000000�00000000340�14753064456�0026320�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.7 14.4-1 1-2.1-2.1 1-1c.2-.2.6-.2.8 0l1.3 1.3c.2.2.2.5 0 .8M12 19.9l6.1-6.1 2.1 2.1-6.1 6.1H12zm-2-.8 11-11V5l-9-4-9 4v6c0 4.8 2.9 9.3 7 11.3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-half-full.svg�����������������������0000664�0000000�0000000�00000000264�14753064456�0027252�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11c0 5.55-3.84 10.74-9 12-5.16-1.26-9-6.45-9-12V5l9-4 9 4zm-9 10c3.75-1 7-5.46 7-9.78V6.3l-7-3.12z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-half.svg����������������������������0000664�0000000�0000000�00000000156�14753064456�0026312�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1 3 5v6c0 5.5 3.8 10.7 9 12z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-home-outline.svg��������������������0000664�0000000�0000000�00000000364�14753064456�0030006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11c0 5.55-3.84 10.74-9 12-5.16-1.26-9-6.45-9-12V5l9-4 9 4zm-9 10c3.75-1 7-5.46 7-9.78V6.3l-7-3.12L5 6.3v4.92C5 15.54 8.25 20 12 21m-1-7h2v3h3v-5h2l-6-5-6 5h2v5h3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-home.svg����������������������������0000664�0000000�0000000�00000000252�14753064456�0026325�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 13h2v3h3v-5h2l-6-5-6 5h2v5h3zm1-12 9 4v6c0 5.55-3.84 10.74-9 12-5.16-1.26-9-6.45-9-12V5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-key-outline.svg���������������������0000664�0000000�0000000�00000000561�14753064456�0027645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11c0 5.55-3.84 10.74-9 12-5.16-1.26-9-6.45-9-12V5l9-4 9 4zm-9 10c3.75-1 7-5.46 7-9.78V6.3l-7-3.12L5 6.3v4.92C5 15.54 8.25 20 12 21m0-15a3 3 0 0 1 3 3c0 1.31-.83 2.42-2 2.83V14h2v2h-2v2h-2v-6.17A2.99 2.99 0 0 1 9 9a3 3 0 0 1 3-3m0 2a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-key.svg�����������������������������0000664�0000000�0000000�00000000453�14753064456�0026170�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m9 3c0 5.55-3.84 10.74-9 12-5.16-1.26-9-6.45-9-12V5l9-4 9 4zm-9-5a3 3 0 0 0-3 3c0 1.31.83 2.42 2 2.83V18h2v-2h2v-2h-2v-2.17c1.17-.41 2-1.52 2-2.83a3 3 0 0 0-3-3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-link-variant-outline.svg������������0000664�0000000�0000000�00000001641�14753064456�0031454�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11c0 5.55-3.84 10.74-9 12-5.16-1.26-9-6.45-9-12V5l9-4 9 4zm-9 10c3.75-1 7-5.46 7-9.78V6.3l-7-3.12L5 6.3v4.92C5 15.54 8.25 20 12 21m2.28-11.27c.58.58.9 1.35.9 2.17 0 .83-.32 1.6-.9 2.18l-2.02 2.02c-.6.6-1.39.9-2.18.9s-1.58-.3-2.18-.9a3.09 3.09 0 0 1 0-4.36l1.25-1.24-.01.56c0 .44.07.89.22 1.3l.04.14-.36.37c-.29.28-.44.63-.44 1.05 0 .39.15.76.43 1.04.57.57 1.54.57 2.1.01l2.01-2.02c.29-.28.44-.65.44-1.04 0-.41-.15-.77-.44-1.05a.87.87 0 0 1-.24-.57c0-.21.1-.42.24-.57.31-.3.86-.3 1.14.01M18 9.08c0 .82-.32 1.6-.9 2.18l-1.25 1.24.01-.56c0-.44-.07-.88-.22-1.3l-.05-.14.37-.37c.29-.28.44-.63.44-1.05 0-.39-.15-.76-.44-1.04-.56-.57-1.53-.57-2.09-.01l-2.01 2.02c-.29.28-.44.65-.44 1.05s.15.76.43 1.04c.15.15.25.36.25.57 0 .22-.1.42-.25.57s-.35.22-.56.22c-.2 0-.41-.07-.57-.22a3.054 3.054 0 0 1 0-4.36l2.02-2.02a3.09 3.09 0 0 1 4.36 0c.58.6.9 1.36.9 2.18"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-link-variant.svg��������������������0000664�0000000�0000000�00000001522�14753064456�0027775�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5zm2.28 13.08-2.02 2.02c-.6.6-1.39.9-2.18.9s-1.58-.3-2.18-.9a3.09 3.09 0 0 1 0-4.36l1.25-1.24-.01.56c0 .44.07.89.22 1.31l.05.13-.37.37c-.28.28-.44.66-.44 1.05 0 .4.16.77.44 1.05.56.56 1.53.56 2.09 0l2.01-2.01c.29-.29.44-.66.44-1.05 0-.41-.15-.77-.43-1.05a.83.83 0 0 1-.25-.57c0-.21.1-.41.25-.56.3-.31.85-.3 1.13 0 .58.58.9 1.35.9 2.17 0 .83-.32 1.6-.9 2.18m2.82-2.82-1.25 1.24.01-.56c0-.44-.07-.88-.22-1.3l-.04-.14.36-.37c.29-.28.44-.63.44-1.05 0-.39-.15-.76-.43-1.04-.57-.57-1.54-.57-2.1 0l-2.01 2.01c-.28.28-.44.65-.44 1.05s.15.76.44 1.04c.14.15.24.36.24.57 0 .22-.1.42-.25.57-.15.16-.35.22-.56.22-.2 0-.41-.07-.57-.22a3.054 3.054 0 0 1 0-4.36l2.02-2.02a3.09 3.09 0 0 1 4.36 0c.58.6.9 1.36.9 2.18s-.32 1.6-.9 2.18"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-lock-open-outline.svg���������������0000664�0000000�0000000�00000000606�14753064456�0030744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11c0 5.5-3.8 10.7-9 12-5.2-1.3-9-6.5-9-12V5l9-4 9 4zm-9 10c3.8-1 7-5.5 7-9.8V6.3l-7-3.1-7 3.1v4.9c0 4.3 3.2 8.8 7 9.8m2.8-10h-4.3V8.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3V9h1.3v-.5C14.8 7.1 13.4 6 12 6S9.2 7.1 9.2 8.5V11c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3"/></svg>��������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-lock-open.svg�����������������������0000664�0000000�0000000�00000000500�14753064456�0027260�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1 3 5v6c0 5.5 3.8 10.7 9 12 5.2-1.3 9-6.5 9-12V5zm4 14.8c0 .6-.6 1.2-1.3 1.2H9.2c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2V8.5C9.2 7.1 10.6 6 12 6s2.8 1.1 2.8 2.5V9h-1.3v-.5c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V11h4.3c.6 0 1.2.6 1.2 1.3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-lock-outline.svg��������������������0000664�0000000�0000000�00000000623�14753064456�0030004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11c0 5.55-3.84 10.74-9 12-5.16-1.26-9-6.45-9-12V5l9-4 9 4zm-9 10c3.75-1 7-5.46 7-9.78V6.3l-7-3.12L5 6.3v4.92C5 15.54 8.25 20 12 21m2.8-10V9.5C14.8 8.1 13.4 7 12 7S9.2 8.1 9.2 9.5V11c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3m-1.3 0h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3z"/></svg>�������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-lock.svg����������������������������0000664�0000000�0000000�00000000521�14753064456�0026324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5zm0 6c1.4 0 2.8 1.1 2.8 2.5V11c.6 0 1.2.6 1.2 1.3v3.5c0 .6-.6 1.2-1.3 1.2H9.2c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2V9.5C9.2 8.1 10.6 7 12 7m0 1.2c-.8 0-1.5.5-1.5 1.3V11h3V9.5c0-.8-.7-1.3-1.5-1.3"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-moon-outline.svg��������������������0000664�0000000�0000000�00000000555�14753064456�0030030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11c0 5.55-3.84 10.74-9 12-5.16-1.26-9-6.45-9-12V5l9-4 9 4zm-9 10c3.75-1 7-5.46 7-9.78V6.3l-7-3.12L5 6.3v4.92C5 15.54 8.25 20 12 21m-3-6.67c1.76 2.17 5.13 2.24 6.97.07.23-.27.08-.68-.26-.74a4.5 4.5 0 0 1-3.18-2.2 4.5 4.5 0 0 1-.32-3.86.453.453 0 0 0-.51-.6c-3.34.62-4.89 4.61-2.7 7.33"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-moon.svg����������������������������0000664�0000000�0000000�00000000447�14753064456�0026353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5zm3.97 13.41c-1.84 2.17-5.21 2.09-6.97-.07-2.18-2.72-.64-6.72 2.7-7.34.34-.05.63.28.51.61-.46 1.23-.39 2.64.32 3.86a4.51 4.51 0 0 0 3.18 2.2c.34.05.49.47.26.74"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-off-outline.svg���������������������0000664�0000000�0000000�00000000543�14753064456�0027627�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m1 4.27 2 2V11c0 5.55 3.84 10.74 9 12 1.87-.46 3.57-1.44 4.97-2.76l2.26 2.26 1.27-1.28L2.28 3zM12 21c-3.75-1-7-5.46-7-9.78V8.27l10.59 10.59C14.53 19.89 13.3 20.65 12 21m9-16v6c0 2.28-.65 4.5-1.77 6.4l-1.46-1.45c.77-1.45 1.23-3.11 1.23-4.73V6.3l-7-3.12-4.84 2.16-1.51-1.52L12 1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-off.svg�����������������������������0000664�0000000�0000000�00000000342�14753064456�0026147�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 4.27 2.28 3 20.5 21.22l-1.27 1.28L17 20.25c-1.43 1.32-3.13 2.29-5 2.75-5.16-1.26-9-6.45-9-12V6.27zM12 1l9 4v6c0 2.28-.65 4.5-1.77 6.41L5.65 3.82z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-outline.svg�������������������������0000664�0000000�0000000�00000000324�14753064456�0027054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11c0 5.55-3.84 10.74-9 12-5.16-1.26-9-6.45-9-12V5l9-4 9 4zm-9 10c3.75-1 7-5.46 7-9.78V6.3l-7-3.12L5 6.3v4.92C5 15.54 8.25 20 12 21"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-plus-outline.svg��������������������0000664�0000000�0000000�00000000454�14753064456�0030041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 20v2.97h-2V20h-3v-2h3v-3h2v3h3v2zm2-9c0 .9-.1 1.78-.29 2.65-.58-.3-1.21-.5-1.9-.6.12-.6.19-1.22.19-1.83V6.3l-7-3.12L5 6.3v4.92C5 15.54 8.25 20 12 21l.31-.09c.19.62.52 1.2.91 1.71L12 23c-5.16-1.26-9-6.45-9-12V5l9-4 9 4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-plus.svg����������������������������0000664�0000000�0000000�00000000357�14753064456�0026366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 20v2.97h-2V20h-3v-2h3v-3h2v3h3v2zM12 1l9 4v6c0 .9-.1 1.78-.29 2.65A5.8 5.8 0 0 0 18 13a6 6 0 0 0-6 6c0 1.36.45 2.62 1.22 3.62L12 23c-5.16-1.26-9-6.45-9-12V5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-refresh-outline.svg�����������������0000664�0000000�0000000�00000000615�14753064456�0030513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 21c-3.8-1-7-5.5-7-9.8V6.3l7-3.1 7 3.1v5.8c.7.1 1.3.3 1.9.6.1-.6.1-1.1.1-1.7V5l-9-4-9 4v6c0 5.5 3.8 10.7 9 12 .4-.1.7-.2 1-.3-.4-.5-.8-1.1-1-1.7m6-6.5c1.1 0 2.1.4 2.8 1.2l1.2-1.2v4h-4l1.8-1.8c-.5-.4-1.1-.7-1.8-.7-1.4 0-2.5 1.1-2.5 2.5S16.6 21 18 21c.8 0 1.5-.4 2-1h1.7c-.6 1.5-2 2.5-3.7 2.5-2.2 0-4-1.8-4-4s1.8-4 4-4"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-refresh.svg�������������������������0000664�0000000�0000000�00000000575�14753064456�0027043�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 12c1 0 2 .2 2.9.7.1-.6.1-1.1.1-1.7V5l-9-4-9 4v6c0 5.5 3.8 10.7 9 12 .4-.1.7-.2 1-.3-1-1.2-1.5-2.7-1.5-4.2 0-3.6 2.9-6.5 6.5-6.5m0 2.5c1.1 0 2.1.4 2.8 1.2l1.2-1.2v4h-4l1.8-1.8c-.5-.4-1.1-.7-1.8-.7-1.4 0-2.5 1.1-2.5 2.5S16.6 21 18 21c.8 0 1.5-.4 2-1h1.7c-.6 1.5-2 2.5-3.7 2.5-2.2 0-4-1.8-4-4s1.8-4 4-4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-remove-outline.svg������������������0000664�0000000�0000000�00000000600�14753064456�0030344�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.43 19 2.07 2.11-1.38 1.39-2.09-2.09-2.12 2.12-1.41-1.42L16.61 19l-2.11-2.14 1.38-1.39L18 17.59l2.12-2.12 1.43 1.43zM21 11c0 .9-.1 1.78-.29 2.65-.58-.3-1.21-.5-1.9-.6.12-.6.19-1.22.19-1.83V6.3l-7-3.12L5 6.3v4.92C5 15.54 8.25 20 12 21l.31-.09c.19.62.52 1.2.91 1.71L12 23c-5.16-1.26-9-6.45-9-12V5l9-4 9 4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-remove.svg��������������������������0000664�0000000�0000000�00000000501�14753064456�0026667�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.43 19 2.07 2.11-1.38 1.39-2.09-2.09-2.12 2.12-1.41-1.42L16.61 19l-2.11-2.14 1.38-1.39L18 17.59l2.12-2.12 1.43 1.43zM12 1l9 4v6c0 .9-.1 1.78-.29 2.65A5.8 5.8 0 0 0 18 13a6 6 0 0 0-6 6c0 1.36.45 2.62 1.22 3.62L12 23c-5.16-1.26-9-6.45-9-12V5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-search.svg��������������������������0000664�0000000�0000000�00000000562�14753064456�0026646�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 9a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3m5.86 10.31C16.23 21.22 14.28 22.45 12 23c-2.56-.61-4.7-2.07-6.42-4.37C3.86 16.34 3 13.8 3 11V5l9-4 9 4v6c0 2.39-.64 4.61-1.92 6.67l-2.91-2.91c.52-.79.83-1.76.83-2.76a5 5 0 0 0-5-5 5 5 0 0 0-5 5 5 5 0 0 0 5 5c1 0 1.97-.31 2.76-.83z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-star-outline.svg��������������������0000664�0000000�0000000�00000000452�14753064456�0030025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11c0 5.55-3.84 10.74-9 12-5.16-1.26-9-6.45-9-12V5l9-4 9 4zm-9 10c3.75-1 7-5.46 7-9.78V6.3l-7-3.12L5 6.3v4.92C5 15.54 8.25 20 12 21m3.05-5-3.08-1.85L8.9 16l.81-3.5L7 10.16l3.58-.31 1.39-3.3 1.4 3.29 3.58.31-2.72 2.35z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-star.svg����������������������������0000664�0000000�0000000�00000000342�14753064456�0026346�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5zm3.08 15L12 14.15 8.93 16l.81-3.5-2.71-2.34 3.58-.31L12 6.55l1.39 3.29 3.58.31-2.71 2.35z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-sun-outline.svg���������������������0000664�0000000�0000000�00000001203�14753064456�0027654�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11c0 5.55-3.84 10.74-9 12-5.16-1.26-9-6.45-9-12V5l9-4 9 4zm-9 10c3.75-1 7-5.46 7-9.78V6.3l-7-3.12L5 6.3v4.92C5 15.54 8.25 20 12 21m0-12.11c1.6 0 2.89 1.29 2.89 2.89S13.6 14.67 12 14.67s-2.89-1.3-2.89-2.89 1.3-2.89 2.89-2.89M12 6l1.38 2q-.63-.27-1.38-.27c-.75 0-.95.09-1.38.27zM7 8.89l2.4-.2c-.34.31-.66.65-.9 1.07-.25.42-.4.86-.5 1.32zm0 5.78 1.03-2.17c.08.43.24.88.47 1.3.25.43.56.79.9 1.08zm10-5.78-1 2.19c-.1-.46-.26-.9-.5-1.32s-.55-.76-.9-1.08zm0 5.78-2.4.2c.34-.29.65-.65.9-1.07.24-.42.39-.87.47-1.3zm-5 2.88-1.39-1.98c.43.15.89.25 1.39.25s.95-.1 1.37-.25z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-sun.svg�����������������������������0000664�0000000�0000000�00000001067�14753064456�0026207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5zm0 7.89c1.6 0 2.89 1.29 2.89 2.89S13.6 14.67 12 14.67s-2.89-1.3-2.89-2.89 1.3-2.89 2.89-2.89M12 6l1.38 2q-.63-.27-1.38-.27c-.75 0-.95.09-1.38.27zM7 8.89l2.4-.2c-.34.31-.66.65-.9 1.07-.25.42-.4.86-.5 1.32zm0 5.78 1.03-2.17c.08.43.24.88.47 1.3.25.43.56.79.9 1.08zm10-5.78-1 2.19c-.1-.46-.26-.9-.5-1.32s-.55-.76-.9-1.08zm0 5.78-2.4.2c.34-.29.65-.65.9-1.07.24-.42.39-.87.47-1.3zm-5 2.88-1.39-1.98c.43.15.89.25 1.39.25s.95-.1 1.37-.25z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-sword-outline.svg�������������������0000664�0000000�0000000�00000000356�14753064456�0030215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 1 9 4v6c0 5.5-3.8 10.7-9 12-5.2-1.3-9-6.5-9-12V5zm0 2.2L5 6.3v4.9c0 4.3 3.2 8.8 7 9.8 3.8-1 7-5.5 7-9.8V6.3zm0 2.3 2 1.6-1 5.9h2v2h-2v3h-2v-3H9v-2h2l-1-5.9z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-sword.svg���������������������������0000664�0000000�0000000�00000000266�14753064456�0026540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1 3 5v6c0 5.5 3.8 10.7 9 12 5.2-1.3 9-6.5 9-12V5zm3 14h-2v3h-2v-3H9v-2h2l-1-5.9 2-1.6 2 1.6-1 5.9h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-sync-outline.svg��������������������0000664�0000000�0000000�00000000627�14753064456�0030034�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 21c-3.75-1-7-5.46-7-9.78V6.3l7-3.12 7 3.12v5.77a6.5 6.5 0 0 1 1.91.6A12 12 0 0 0 21 11V5l-9-4-9 4v6c0 5.55 3.84 10.74 9 12 .35-.09.7-.2 1-.32A6.3 6.3 0 0 1 12 21m6-6.5V13l-2.25 2.25L18 17.5V16a2.5 2.5 0 0 1 2.24 3.62l1.09 1.09A4 4 0 0 0 18 14.5m0 6.5a2.5 2.5 0 0 1-2.24-3.62l-1.09-1.09A4 4 0 0 0 18 22.5V24l2.25-2.25L18 19.5Z"/></svg>���������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield-sync.svg����������������������������0000664�0000000�0000000�00000000604�14753064456�0026352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 12a6.4 6.4 0 0 1 2.87.67A12 12 0 0 0 21 11V5l-9-4-9 4v6c0 5.55 3.84 10.74 9 12 .35-.09.7-.2 1-.32a6.42 6.42 0 0 1-1.5-4.18A6.5 6.5 0 0 1 18 12m0 2.5V13l-2.25 2.25L18 17.5V16a2.5 2.5 0 0 1 2.24 3.62l1.09 1.09A4 4 0 0 0 18 14.5m0 6.5a2.5 2.5 0 0 1-2.24-3.62l-1.09-1.09A4 4 0 0 0 18 22.5V24l2.25-2.25L18 19.5Z"/></svg>����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shield.svg���������������������������������0000664�0000000�0000000�00000000211�14753064456�0025372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shimmer.svg��������������������������������0000664�0000000�0000000�00000000345�14753064456�0025576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.6 9.6 9 15 7.4 9.6 2 8l5.4-1.6L9 1l1.6 5.4L16 8zm6.4 4.6 4-2.2-2.2 4 2.2 4-4-2.2-4 2.2 2.2-4-2.2-4zM10 16l-1.7 3 1.7 3-3-1.7L4 22l1.7-3L4 16l3 1.7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ship-wheel.svg�����������������������������0000664�0000000�0000000�00000002047�14753064456�0026200�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2 11 2.05.1a7.96 7.96 0 0 1 3.2-5.54L6.13 3.84c-.27-.48-.13-1.09.37-1.37.5-.27 1.09-.11 1.37.37l.93 1.82a8.1 8.1 0 0 1 6.4 0l.93-1.82c.28-.48.87-.64 1.37-.37.5.28.64.89.37 1.37l-1.12 1.72a7.96 7.96 0 0 1 3.2 5.54L22 11a1 1 0 0 1 1 1 1 1 0 0 1-1 1l-2.05-.1a7.96 7.96 0 0 1-3.2 5.54l1.12 1.72c.27.48.13 1.09-.37 1.37-.5.27-1.09.11-1.37-.37l-.93-1.82a8.1 8.1 0 0 1-6.4 0l-.93 1.82c-.28.48-.87.64-1.37.37-.5-.28-.64-.89-.37-1.37l1.12-1.72a7.96 7.96 0 0 1-3.2-5.54L2 13a1 1 0 0 1-1-1 1 1 0 0 1 1-1m7.07.35c.13-.61.46-1.15.93-1.56L8.34 7.25a6 6 0 0 0-2.29 3.95zM12 9c.32 0 .62.05.9.14l1.38-2.69C13.58 6.16 12.81 6 12 6s-1.58.16-2.28.45l1.38 2.69c.28-.09.58-.14.9-.14m2.93 2.35 3.02-.15a6 6 0 0 0-2.29-3.95L14 9.79c.47.41.8.95.93 1.56m0 1.3c-.13.61-.46 1.15-.93 1.56l1.66 2.54a6 6 0 0 0 2.29-3.95zM12 15c-.32 0-.62-.05-.91-.14l-1.37 2.69c.7.29 1.47.45 2.28.45s1.58-.16 2.28-.45l-1.37-2.69c-.29.09-.59.14-.91.14m-2.93-2.35-3.02.15c.22 1.6 1.06 3.01 2.29 3.95L10 14.21c-.47-.41-.8-.95-.93-1.56"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shipping-pallet.svg������������������������0000664�0000000�0000000�00000000241�14753064456�0027225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 20h2v-2h6v2h2v-2h6v2h2v-5h-2v1h-2v-1h-2v1h-2v-1h-2v1H9v-1H7v1H5v-1H3m2-2h14V4H5Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shoe-ballet.svg����������������������������0000664�0000000�0000000�00000001423�14753064456�0026327�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.78 11.97C12.27 8.54 10.86 2 7.53 2S2.8 8.54 2.28 11.97c-.21 1.45-.28 2.92-.12 4.38.34 3.04 1.39 4.49 2.11 5.15.37.33.84.5 1.33.5h3.87c.49 0 .96-.17 1.33-.5.7-.66 1.75-2.11 2.11-5.15.17-1.46.09-2.93-.13-4.38M7.53 4c.36-.13 1.06.73 1.74 2.31l-4.69 4.02C5.41 6.26 6.94 3.79 7.53 4m2.22 9H5.31a.96.96 0 0 1-.55-.19L10 8.33c.29 1.02.56 2.17.75 3.5.09.61-.38 1.17-1 1.17m12.03-1.03C21.27 8.54 19.86 2 16.53 2c-1.49 0-2.59 1.32-3.4 3.08.37.96.71 2.06 1 3.29l5.18 4.44c-.16.11-.34.19-.56.19h-3.83c.12 1.27.11 2.45-.03 3.59-.27 2.28-.89 3.86-1.57 4.94.36.31.81.47 1.28.47h3.87c.49 0 .96-.17 1.33-.5.7-.66 1.75-2.11 2.11-5.15.17-1.46.09-2.93-.13-4.38M14.8 6.31c.7-1.58 1.38-2.44 1.73-2.31.6-.21 2.12 2.26 2.97 6.33z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shoe-cleat.svg�����������������������������0000664�0000000�0000000�00000001167�14753064456�0026161�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 8h-.7l-.05-.03c-2.11-.13-3.87-.8-4.72-1.74L14 7c-.05.1-.11.19-.16.28.71.61 1.16 1.37 1.16 2.22 0 .33-.09.64-.21.95l-1.87-1.87c-.22.25-.45.49-.7.71l2.03 2.03c-.21.25-.45.47-.75.68l-2.07-2.09c-.29.2-.58.37-.88.54l2.03 2.05c-.33.13-.69.24-1.08.32l-1.91-1.91c-.34.14-.68.27-1.03.38l1.7 1.71H10c-1.5 0-2.8-.46-3.72-1.18-.82.13-1.6.18-2.28.18-2 0-2 3-2 3 0 1.11.89 2 2 2v1c0 .55.45 1 1 1s1-.45 1-1v-1h1v1c0 .55.45 1 1 1s1-.45 1-1v-1h1v1c0 .55.45 1 1 1s1-.45 1-1v-1h3v1c0 .55.45 1 1 1s1-.45 1-1v-1h1v1c0 .55.45 1 1 1s1-.45 1-1v-1h1s1 0 1-4.5C22 9 21 8 21 8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shoe-formal.svg����������������������������0000664�0000000�0000000�00000000254�14753064456�0026345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.5 9V8h-1l-1 1H15l-1-1h-1l-6 4H4a2 2 0 0 0-2 2v2h8l3-1h2v1h6.5v-2s.5-1 .5-2.5-.5-2.5-.5-2.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shoe-heel.svg������������������������������0000664�0000000�0000000�00000000215�14753064456�0025777�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 18h8.7l5.3-4h1v4h2v-4s1-2 1-4-.5-4-.5-4h-2L18 7l-8 7H8l-5 2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shoe-print.svg�����������������������������0000664�0000000�0000000�00000000706�14753064456�0026223�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.74 11.72c.47 1.23.42 2.51-.99 3.02-2.9 1.07-3.55-1.74-3.59-1.88zm-5.03-.81 4.32-1.07c-.19-1.05.1-2.1.1-3.34 0-1.68-1.33-4.97-3.45-4.44-2.42.6-2.77 3.29-2.68 4.59.12 1.3 1.64 4.08 1.71 4.26m12.14 8.94c-.03.15-.69 2.95-3.59 1.89-1.4-.52-1.46-1.8-.99-3.03zm2.15-6.2c.1-1.3-.24-4-2.67-4.6-2.11-.55-3.44 2.76-3.44 4.45 0 1.23.28 2.28.11 3.33l4.3 1.07c.08-.18 1.59-2.96 1.7-4.25"/></svg>����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shoe-sneaker.svg���������������������������0000664�0000000�0000000�00000001061�14753064456�0026512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 15s0-3 2-3c.68 0 1.46-.05 2.28-.18C7.2 12.54 8.5 13 10 13h.25l-1.69-1.71c.35-.11.69-.24 1.03-.38l1.91 1.91c.39-.08.75-.19 1.08-.32l-2.03-2.05c.3-.17.59-.34.88-.54L13.5 12c.3-.21.54-.44.75-.68l-2.03-2.03c.24-.22.48-.46.7-.71l1.87 1.87c.12-.31.21-.62.21-.95 0-.85-.45-1.61-1.16-2.22.05-.09.11-.18.16-.28l1.53-.77c.85.94 2.61 1.61 4.72 1.74l.05.03h.7s1 1 1 4.5c0 .57 0 1.07-.04 1.5H19c-1.1 0-2.42.26-3.7.5-1.18.26-2.4.5-3.3.5zm19 2s.58 0 .86-2H19c-2 0-5 1-7 1H2.28c.34.6.98 1 1.72 1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shopping-music.svg�������������������������0000664�0000000�0000000�00000000346�14753064456�0027100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3a3 3 0 0 0-3 3h6a3 3 0 0 0-3-3m7 3a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8c0-1.11.89-2 2-2h2a5 5 0 0 1 5-5 5 5 0 0 1 5 5zM9 19l7.5-5L9 10z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shopping-outline.svg�����������������������0000664�0000000�0000000�00000000457�14753064456�0027442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6h-2c0-2.8-2.2-5-5-5S7 3.2 7 6H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2m-7-3c1.7 0 3 1.3 3 3H9c0-1.7 1.3-3 3-3m7 17H5V8h14zm-7-8c-1.7 0-3-1.3-3-3H7c0 2.8 2.2 5 5 5s5-2.2 5-5h-2c0 1.7-1.3 3-3 3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shopping-search-outline.svg����������������0000664�0000000�0000000�00000001127�14753064456�0030700�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.31 18.9c1.33-2.1.69-4.9-1.4-6.21S13.03 12 11.7 14.1s-.7 4.9 1.4 6.2c1.46.92 3.32.93 4.78.02L21 23.39 22.39 22m-6.89-3a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5m-5.47 1H5V8h14v3.03c.81.52 1.5 1.21 2 2.02V8c0-1.1-.9-2-2-2h-2c0-2.8-2.2-5-5-5S7 3.2 7 6H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7.05c-.81-.5-1.5-1.19-2.02-2M12 3c1.7 0 3 1.3 3 3H9c0-1.7 1.3-3 3-3m3 6h2c0 .4-.05.78-.14 1.15-.44-.1-.89-.15-1.36-.15-.23 0-.46 0-.68.04.11-.33.18-.67.18-1.04m-5.24 4.46A4.92 4.92 0 0 1 7 9h2c0 1.34.82 2.42 2 2.82-.5.48-.92 1.03-1.24 1.64"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shopping-search.svg������������������������0000664�0000000�0000000�00000000664�14753064456�0027230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6h-2A5 5 0 0 0 7 6H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h7.05A6.5 6.5 0 0 1 9 16.5a6.4 6.4 0 0 1 1.25-3.82A5 5 0 0 1 7 8h2a3 3 0 0 0 3 3h.06a6.2 6.2 0 0 1 2-.84A3 3 0 0 0 15 8h2a4.9 4.9 0 0 1-.46 2.09 6.5 6.5 0 0 1 4.46 3V8a2 2 0 0 0-2-2M9 6a3 3 0 0 1 6 0m4.31 12.9a4.5 4.5 0 1 0-1.43 1.42L21 23.39 22.39 22m-6.89-3a2.5 2.5 0 1 1 2.5-2.5 2.5 2.5 0 0 1-2.5 2.5"/></svg>����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shopping.svg�������������������������������0000664�0000000�0000000�00000000434�14753064456�0025760�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 13a5 5 0 0 1-5-5h2a3 3 0 0 0 3 3 3 3 0 0 0 3-3h2a5 5 0 0 1-5 5m0-10a3 3 0 0 1 3 3H9a3 3 0 0 1 3-3m7 3h-2a5 5 0 0 0-5-5 5 5 0 0 0-5 5H5c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shore.svg����������������������������������0000664�0000000�0000000�00000000542�14753064456�0025251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 12h2v2h-2c-1.4 0-2.7-.4-4-1-2.5 1.3-5.5 1.3-8 0-1.3.6-2.6 1-4 1H2v-2h2c1.4 0 2.8-.5 4-1.3 2.4 1.7 5.6 1.7 8 0 1.2.8 2.6 1.3 4 1.3m0-6h2v2h-2c-1.4 0-2.7-.3-4-1-2.5 1.3-5.5 1.3-8 0-1.3.7-2.6 1-4 1H2V6h2c1.4 0 2.8-.5 4-1.3 2.4 1.7 5.6 1.7 8 0 1.2.8 2.6 1.3 4 1.3m2 14H2v-2h20"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shovel-off.svg�����������������������������0000664�0000000�0000000�00000000567�14753064456�0026210�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.1 1.81-2.83 2.84a2.01 2.01 0 0 0 0 2.82l1.41 1.42-.68.73 1.44 1.44.73-.73 1.39 1.39c.78.78 2.05.78 2.83 0l2.83-2.84zm2.83 8.47L13.7 6.06l1.41-1.41 4.23 4.23zm2.77 9.96-1.41 1.41-7.79-7.77-1 1 2.83 2.81-1.33 1.4C7 24 3.5 20.5 3.5 20.5S-.06 17 4.89 12l1.42-1.4 2.82 2.83 1-1-7.78-7.75 1.42-1.42z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shovel.svg���������������������������������0000664�0000000�0000000�00000000512�14753064456�0025426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.1 1.81-2.83 2.83c-.77.78-.77 2.05 0 2.83l1.41 1.41-4.55 4.55-2.82-2.83L4.89 12c-4.95 5-1.39 8.5-1.39 8.5S7 24 12 19.09l1.41-1.41-2.8-2.8 4.54-4.54 1.39 1.39c.78.77 2.05.77 2.83 0L22.2 8.9zm2.83 8.47L16.55 8.9l-1.44-1.44-1.4-1.4 1.41-1.41 4.23 4.23z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shower-head.svg����������������������������0000664�0000000�0000000�00000001572�14753064456�0026343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 20a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m-4 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m-4 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m-4 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m-4 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m2-3a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m4 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m4 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m4 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1M8 14a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m4 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m4 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m3-2H5v-2h14zm-1.08-3H6.08C6.5 6.5 8.5 4.5 11 4.08V2h2v2.08c2.5.42 4.5 2.42 4.92 4.92"/></svg>��������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shower.svg���������������������������������0000664�0000000�0000000�00000000517�14753064456�0025442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 14v1c0 1.91-1.07 3.57-2.65 4.41L19 22h-2l-.5-2h-9L7 22H5l.65-2.59A4.99 4.99 0 0 1 3 15v-1H2v-2h18V5a1 1 0 0 0-1-1c-.5 0-.88.34-1 .79.63.54 1 1.34 1 2.21h-6a3 3 0 0 1 3-3h.17c.41-1.16 1.52-2 2.83-2a3 3 0 0 1 3 3v9zm-2 0H5v1a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shredder.svg�������������������������������0000664�0000000�0000000�00000000365�14753064456�0025734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 3v4h2V5h8v2h2V3zM5 8a3 3 0 0 0-3 3v6h3v-3h14v3h3v-6a3 3 0 0 0-3-3zm13 2a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1M7 16v5h2v-5zm4 0v4h2v-4zm4 0v5h2v-5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shuffle-disabled.svg�����������������������0000664�0000000�0000000�00000000207�14753064456�0027330�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 4.5V7H5v2h11v2.5L19.5 8M16 12.5V15H5v2h11v2.5l3.5-3.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shuffle-variant.svg������������������������0000664�0000000�0000000�00000000336�14753064456�0027230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17 3 5.25 4.5L17 12l5.25 4.5L17 21v-3h-2.74l-2.82-2.82 2.12-2.12L15.5 15H17V9h-1.5l-9 9H2v-3h3.26l9-9H17zM2 6h4.5l2.82 2.82-2.12 2.12L5.26 9H2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shuffle.svg��������������������������������0000664�0000000�0000000�00000000343�14753064456�0025564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.83 13.41-1.41 1.41 3.13 3.13L14.5 20H20v-5.5l-2.04 2.04zM14.5 4l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5V4m-9.41 5.17L5.41 4 4 5.41l5.17 5.17z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/shuriken.svg�������������������������������0000664�0000000�0000000�00000000334�14753064456�0025760�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.5 9.5 12 2 9.5 9.5 2 12l7.5 2.5L12 22l2.5-7.5L22 12zM12 13.7c-.9 0-1.7-.7-1.7-1.7 0-.9.7-1.7 1.7-1.7.9 0 1.7.7 1.7 1.7 0 .9-.8 1.7-1.7 1.7"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sickle.svg���������������������������������0000664�0000000�0000000�00000000332�14753064456�0025400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.3 7.2C17.5 4.7 14.9 3 12 2c14.2 8.5 3.4 20.9-3.5 13.5l-2.6.5-3.4 3.4c-.6.6-.6 1.6 0 2.1.6.6 1.6.6 2.1 0l3.2-3.2c7.5 6 17.2-3.3 11.5-11.1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sigma-lower.svg����������������������������0000664�0000000�0000000�00000000344�14753064456�0026357�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 12c0 4.42-3.36 8-7.5 8S4 16.42 4 12s3.36-8 7.5-8H20v2h-3.54A8.3 8.3 0 0 1 19 12m-7.5-6C8.46 6 6 8.69 6 12s2.46 6 5.5 6 5.5-2.69 5.5-6-2.46-6-5.5-6"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sigma.svg����������������������������������0000664�0000000�0000000�00000000170�14753064456�0025226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 6H8.83l6 6-6 6H18v2H6v-2l6-6-6-6V4h12z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sign-caution.svg���������������������������0000664�0000000�0000000�00000000322�14753064456�0026525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3h20v10h-4v8h-2v-8H8v8H6v-8H2zm16.97 8L20 9.97V7.15L16.15 11zm-5.65 0 6-6H16.5l-6 6zm-5.66 0 6-6h-2.83l-6 6zM5.18 5 4 6.18V9l4-4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sign-direction-minus.svg�������������������0000664�0000000�0000000�00000000244�14753064456�0030177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.5 9.5 18 12h-5v10H9a2 2 0 0 1 2-2v-8H3.5L6 9.5 3.5 7H11V3l1-1 1 1v4h5m5 11h-8v2h8Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sign-direction-plus.svg��������������������0000664�0000000�0000000�00000000321�14753064456�0030023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 20h.09a5.5 5.5 0 0 0 .72 2H9a2 2 0 0 1 2-2v-8H3.5L6 9.5 3.5 7H11V3l1-1 1 1v4h5l2.5 2.5L18 12h-5m5 3v3h-3v2h3v3h2v-3h3v-2h-3v-3Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sign-direction-remove.svg������������������0000664�0000000�0000000�00000000450�14753064456�0030340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 20h.09a5.5 5.5 0 0 0 .72 2H9a2 2 0 0 1 2-2v-8H3.5L6 9.5 3.5 7H11V3l1-1 1 1v4h5l2.5 2.5L18 12h-5m8.12 3.46L19 17.59l-2.12-2.13-1.42 1.42L17.59 19l-2.13 2.12 1.42 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19l2.13-2.12Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sign-direction.svg�������������������������0000664�0000000�0000000�00000000247�14753064456�0027051�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 12H3.5L6 9.5 3.5 7H11V3l1-1 1 1v4h5l2.5 2.5L18 12h-5v8a2 2 0 0 1 2 2H9a2 2 0 0 1 2-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sign-language-outline.svg������������������0000664�0000000�0000000�00000001343�14753064456�0030327�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 4c.4-.4 1-.4 1.4 0l2.9 3c-.8.4-1.2.6-1.6 1.2L7.5 5.5c-.4-.4-.4-1.1 0-1.5M6.3 7.2c.4-.4 1-.4 1.4 0l1.9 2c-.2.6-.3 1.3-.2 1.8h-.8L6.3 8.6c-.4-.4-.4-1 0-1.4m11.9 7.3L12.5 9l-.3.1c-.7.4-1 1.3-.7 2l.9 1.9h-8c-.5 0-1 .5-1 1s.5 1 1 1H10v1H3c-.5 0-1 .5-1 1s.5 1 1 1h7v1H4c-.5 0-1 .5-1 1s.5 1 1 1h6v1H5.5c-.5 0-1 .5-1 1s.5 1 1 1h11c1.4 0 2.5-1.1 2.5-2.5v-5.2c0-.7-.3-1.4-.8-1.8M17 21c0 .5-.5 1-1 1h-4v-7h2v-1.8l2.7 2.5c.2.2.3.5.3.7zm5-9.7c0 .7-.3 1.3-.8 1.8l-.9.8c-.2-.3-.4-.6-.7-.9l-.6-.6.7-.7c.2-.2.3-.5.3-.7V7.3l-1.3 1.2L17.3 7l-1.9 2-2.7-2.4-3.8-4c-.4-.4-.4-1 0-1.4s1-.4 1.4 0l4.8 5.1.7-.7-3.8-4c-.4-.4-.4-1 0-1.4s1-.4 1.4 0L18.9 6l.7-2c.5-.6 1.4-1 2.1-.8l.3.1z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sign-language.svg��������������������������0000664�0000000�0000000�00000001204�14753064456�0026646�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 4c.4-.4 1-.4 1.4 0l2.9 3c-.8.4-1.2.6-1.6 1.2L7.5 5.5c-.4-.4-.4-1.1 0-1.5M6.3 7.2c.4-.4 1-.4 1.4 0l1.9 2c-.2.6-.3 1.3-.2 1.8h-.8L6.3 8.6c-.4-.4-.4-1 0-1.4M19 21.5c0 1.4-1.1 2.5-2.5 2.5h-11c-.5 0-1-.5-1-1s.5-1 1-1H10v-1H4c-.5 0-1-.5-1-1s.5-1 1-1h6v-1H3c-.5 0-1-.5-1-1s.5-1 1-1h7v-1H4.5c-.5 0-1-.5-1-1s.5-1 1-1h8l-.9-1.9c-.4-.7-.1-1.6.7-2l.2-.1 5.7 5.5c.5.5.8 1.1.8 1.8zm3-10.2c0 .7-.3 1.3-.8 1.8l-.9.8c-.2-.3-.4-.6-.7-.9l-.6-.6L15.4 9l-2.7-2.4-3.8-4c-.4-.4-.4-1 0-1.4s1-.4 1.4 0l4.8 5.1.7-.7-3.8-4c-.4-.4-.4-1 0-1.4s1-.4 1.4 0L18.9 6l.7-2c.5-.6 1.4-1 2.1-.8l.3.1z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sign-pole.svg������������������������������0000664�0000000�0000000�00000000175�14753064456�0026030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11 3 1-1 1 1v17a2 2 0 0 1 2 2H9c0-1.1.9-2 2-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sign-real-estate.svg�����������������������0000664�0000000�0000000�00000000311�14753064456�0027267�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 8H8c-1.1 0-2 .9-2 2v6a2 2 0 0 0 2 2h10c1.11 0 2-.89 2-2v-6a2 2 0 0 0-2-2m-4 8H8v-2h6zm4-4H8v-2h10zm4-6H4v16H2V2h2v2h18z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sign-text.svg������������������������������0000664�0000000�0000000�00000000337�14753064456�0026055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11 3 1-1 1 1v2h7a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1h-7v3a2 2 0 0 1 2 2H9a2 2 0 0 1 2-2v-3H4a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h7zM6 8v2h12V8zm0 4v2h7v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sign-yield.svg�����������������������������0000664�0000000�0000000�00000000331�14753064456�0026171�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.5 3h-17C2.4 3 1.6 4.3 2.2 5.3l8.5 14.9c.3.5.8.8 1.3.8s1-.3 1.3-.8l8.5-14.9c.6-1-.2-2.3-1.3-2.3M12 18.5 4.3 5h15.3zm-5.1-12h10.2l-5.1 9z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/signal-2g.svg������������������������������0000664�0000000�0000000�00000000346�14753064456�0025716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 19.5H2v-6a3 3 0 0 1 3-3h3v-3H2v-3h6a3 3 0 0 1 3 3v3a3 3 0 0 1-3 3H5v3h6m11-6h-4.5v3H19v3h-3v-9h6v-3h-6a3 3 0 0 0-3 3v9a3 3 0 0 0 3 3h3a3 3 0 0 0 3-3"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/signal-3g.svg������������������������������0000664�0000000�0000000�00000000412�14753064456�0025711�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 16.5v-2.25C11 13 10 12 8.75 12 10 12 11 11 11 9.75V7.5a3 3 0 0 0-3-3H2v3h6v3H5v3h3v3H2v3h6a3 3 0 0 0 3-3m11 0v-6h-4.5v3H19v3h-3v-9h6v-3h-6a3 3 0 0 0-3 3v9a3 3 0 0 0 3 3h3a3 3 0 0 0 3-3"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/signal-4g.svg������������������������������0000664�0000000�0000000�00000000275�14753064456�0025721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 16.5v-6h-4.5v3H19v3h-3v-9h6v-3h-6a3 3 0 0 0-3 3v9a3 3 0 0 0 3 3h3a3 3 0 0 0 3-3m-14 3h3v-15H8v6H5v-6H2v9h6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/signal-5g.svg������������������������������0000664�0000000�0000000�00000000355�14753064456�0025721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 16.5v-6h-4.5v3H19v3h-3v-9h6v-3h-6a3 3 0 0 0-3 3v9a3 3 0 0 0 3 3h3a3 3 0 0 0 3-3m-12-12H3v9h4v3H3v3h5.5A1.5 1.5 0 0 0 10 18v-6a1.5 1.5 0 0 0-1.5-1.5H6v-3h4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/signal-cellular-1.svg����������������������0000664�0000000�0000000�00000000227�14753064456�0027345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 5.5v13h-2v-13zm-7 5v8h-2v-8zM21 4h-5v16h5zm-7 5H9v11h5zm-7 5H2v6h5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/signal-cellular-2.svg����������������������0000664�0000000�0000000�00000000211�14753064456�0027337�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 5.5v13h-2v-13zM21 4h-5v16h5zm-7 5H9v11h5zm-7 5H2v6h5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/signal-cellular-3.svg����������������������0000664�0000000�0000000�00000000165�14753064456�0027350�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 4h-5v16h5zm-7 5H9v11h5zm-7 5H2v6h5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/signal-cellular-outline.svg����������������0000664�0000000�0000000�00000000245�14753064456�0030664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 5.5v13h-2v-13zm-7 5v8h-2v-8zm-7 5v3h-2v-3zM21 4h-5v16h5zm-7 5H9v11h5zm-7 5H2v6h5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/signal-distance-variant.svg����������������0000664�0000000�0000000�00000000314�14753064456�0030635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 6V4a12 12 0 0 1 12 12h-2A10 10 0 0 0 4 6m0 4V8a8 8 0 0 1 8 8h-2a6 6 0 0 0-6-6m0 2a4 4 0 0 1 4 4H4zm-1 6h16v-2l3 3-3 3v-2H3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/signal-hspa-plus.svg�����������������������0000664�0000000�0000000�00000000222�14753064456�0027313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 8v3h3v3h-3v3h-3v-3h-3v-3h3V8zM5 10.5h3v-6h3v15H8v-6H5v6H2v-15h3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/signal-hspa.svg����������������������������0000664�0000000�0000000�00000000167�14753064456�0026342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 10.5h3v-6h3v15h-3v-6h-3v6h-3v-15h3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/signal-off.svg�����������������������������0000664�0000000�0000000�00000000303�14753064456�0026151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 3v13.18l3 3V3zM4.28 5 3 6.27 10.73 14H8v7h3v-6.73l2 2V21h3v-1.73L19.73 23 21 21.72zM13 9v2.18l3 3V9zM3 18v3h3v-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/signal-variant.svg�������������������������0000664�0000000�0000000�00000000362�14753064456�0027050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 6V4h.1C12.9 4 20 11.1 20 19.9v.1h-2v-.1C18 12.2 11.8 6 4 6m0 4V8a12 12 0 0 1 12 12h-2A10 10 0 0 0 4 10m0 4v-2a8 8 0 0 1 8 8h-2a6 6 0 0 0-6-6m0 2a4 4 0 0 1 4 4H4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/signal.svg���������������������������������0000664�0000000�0000000�00000000175�14753064456�0025410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 21h3v-3H3m5 3h3v-7H8m5 7h3V9h-3m5 12h3V3h-3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/signature-freehand.svg���������������������0000664�0000000�0000000�00000001341�14753064456�0027702�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 22H2v-2h20zM6.2 17.3l-.7.7-1.4-1.4L2.7 18l-.7-.7 1.4-1.4L2 14.5l.7-.7 1.4 1.4 1.4-1.4.7.7-1.4 1.4zm10.02-2.87c0-.58-.72-1.23-2.16-1.97-1.83-.92-3.06-1.67-3.7-2.22-.65-.56-.97-1.18-.97-1.87 0-1.78.91-3.25 2.73-4.42s3.31-1.76 4.45-1.76c.74 0 1.28.13 1.61.39.32.25.5.69.5 1.32 0 .28-.12.52-.37.73-.24.2-.44.3-.57.3-.11 0-.31-.1-.61-.29l-.58-.26c-.47 0-1.41.33-2.84 1q-2.13.99-2.13 2.25c0 .51.24.97.74 1.37.5.42 1.39.93 2.68 1.53 1.03.47 1.86.97 2.5 1.54.6.54.91 1.18.91 1.93 0 1.34-.94 2.41-2.83 3.17-1.88.77-3.68 1.15-5.39 1.15-1.44 0-2.19-.49-2.19-1.46 0-.36.19-.59.5-.75.33-.16.66-.24 1-.24l.75.13.72.13c.98 0 2.03-.16 3.16-.49 1.13-.32 1.83-.73 2.09-1.21"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/signature-image.svg������������������������0000664�0000000�0000000�00000000442�14753064456�0027211�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 22H2v-2h20zM6.2 17.3l-1.4-1.4 1.4-1.4-.7-.7-1.4 1.4-1.4-1.4-.7.7 1.4 1.4L2 17.3l.7.7 1.4-1.4L5.5 18zM20 5H10a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2M10 16l2.6-3.3 1.8 2.2 2.4-3.3L20 16z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/signature-text.svg�������������������������0000664�0000000�0000000�00000000572�14753064456�0027117�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 22H2v-2h20zM6.2 17.3l-1.4-1.4 1.4-1.4-.7-.7-1.4 1.4-1.4-1.4-.7.7 1.4 1.4L2 17.3l.7.7 1.4-1.4L5.5 18zM20.5 3l1.2 4.4-1 .3c-.5-.9-.9-1.7-1.4-2.2-.6-.5-1.2-.5-1.8-.5H15v10.5c0 .5 0 1 .3 1.2s1 .2 1.7.2v1h-6v-1c.7 0 1.3 0 1.7-.2.3-.2.3-.7.3-1.2V5h-2.5c-.6 0-1.2 0-1.8.4-.5.4-1 1.3-1.4 2.2l-1-.3L7.5 3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/signature.svg������������������������������0000664�0000000�0000000�00000000324�14753064456�0026130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 22H2v-2h20zM2.26 16.83 5.09 14l-2.83-2.83 1.41-1.41 2.83 2.83 2.83-2.83 1.41 1.41L7.91 14l2.83 2.83-1.41 1.41-2.83-2.83-2.83 2.83z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/silo-outline.svg���������������������������0000664�0000000�0000000�00000000417�14753064456�0026555�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.5 2a6.5 6.5 0 0 1 6.46 5.78L22 12v2l-2-1.2V22h-2V11.6l-3-1.8V22h-2V9H4v13H2V8.5A6.5 6.5 0 0 1 8.5 2m0 2C6.54 4 4.87 5.25 4.26 7h8.48c-.61-1.75-2.28-3-4.24-3M6 11h5v2H6zm0 4h5v2H6zm0 4h5v2H6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/silo.svg�����������������������������������0000664�0000000�0000000�00000000376�14753064456�0025104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 7.8C14.6 4.5 11.8 2 8.5 2c-1.7 0-3.4.7-4.6 1.9S2 6.8 2 8.5V22h13V9.8l3 1.8V22h2v-9.2l2 1.2v-2zM11 20H6v-2h5zm0-4H6v-2h5zm0-4H6v-2h5zM4.3 7c.6-1.8 2.3-3 4.2-3s3.6 1.2 4.2 3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/silverware-clean.svg�����������������������0000664�0000000�0000000�00000000726�14753064456�0027400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15 0-.62 1.37L13 2l1.38.63L15 4l.63-1.37L17 2l-1.37-.63zm-4.5 2L9.41 4.41 7 5.5l2.41 1.09L10.5 9l1.1-2.41L14 5.5l-2.4-1.09zm8.39 3.14c-1.33-.08-2.85.51-4.05 1.7-1.59 1.59-2.09 3.74-1.38 5.27L3.7 21.87l1.41 1.41L12 16.41l6.88 6.88 1.41-1.41L13.41 15l1.47-1.47c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-.55-.53-1.28-.84-2.07-.89M3.91 5.5a4.01 4.01 0 0 0 0 5.66l4.19 4.18 2.83-2.84z"/></svg>������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/silverware-fork-knife.svg������������������0000664�0000000�0000000�00000000317�14753064456�0030345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 9H9V2H7v7H5V2H3v7c0 2.12 1.66 3.84 3.75 3.97V22h2.5v-9.03C11.34 12.84 13 11.12 13 9V2h-2zm5-3v8h2.5v8H21V2c-2.76 0-5 2.24-5 4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/silverware-fork.svg������������������������0000664�0000000�0000000�00000000404�14753064456�0027250�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5.12 21.29-1.41-1.41 9.65-9.66-.2-.22a1.98 1.98 0 0 1 0-2.81l4.34-4.37.93.92L15.19 7l.96.94 3.24-3.25.92.92-3.25 3.24.94.96 3.26-3.25.92.94-4.37 4.34c-.78.78-2.04.78-2.81 0l-.22-.2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/silverware-spoon.svg�����������������������0000664�0000000�0000000�00000000355�14753064456�0027452�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.88 11.53-9.76 9.76-1.41-1.41 9.76-9.76c-.71-1.53-.21-3.68 1.38-5.27 1.91-1.92 4.65-2.28 6.11-.82 1.47 1.47 1.11 4.21-.81 6.12-1.59 1.59-3.74 2.09-5.27 1.38"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/silverware-variant.svg���������������������0000664�0000000�0000000�00000000535�14753064456�0027760�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.1 13.34 3.91 9.16a4.01 4.01 0 0 1 0-5.66l7.02 7zm5.31-.34 6.88 6.88-1.41 1.41L12 14.41l-6.88 6.88-1.41-1.41 9.65-9.66-.2-.22a1.98 1.98 0 0 1 0-2.81l4.34-4.37.93.92L15.19 7l.96.94 3.24-3.25.92.92-3.25 3.24.94.96 3.26-3.25.92.94-4.37 4.34c-.78.78-2.04.78-2.81 0l-.22-.2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/silverware.svg�����������������������������0000664�0000000�0000000�00000000505�14753064456�0026313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.1 13.34 3.91 9.16a4.01 4.01 0 0 1 0-5.66l7.02 7zm6.78-1.81L13.41 13l6.88 6.88-1.41 1.41L12 14.41l-6.88 6.88-1.41-1.41 9.76-9.76c-.71-1.53-.21-3.68 1.38-5.27 1.91-1.92 4.65-2.28 6.11-.82 1.47 1.47 1.11 4.21-.81 6.12-1.59 1.59-3.74 2.09-5.27 1.38"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sim-alert-outline.svg����������������������0000664�0000000�0000000�00000000275�14753064456�0027506�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 13h-2V7h2m0 10h-2v-2h2m5-11v16H6V8.8L10.8 4zm0-2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sim-alert.svg������������������������������0000664�0000000�0000000�00000000250�14753064456�0026022�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 13h-2V7h2m0 10h-2v-2h2m5-13h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sim-off-outline.svg������������������������0000664�0000000�0000000�00000000407�14753064456�0027146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3l3.95 3.95L4 8v12c0 1.11.89 2 2 2h12c.58 0 1.1-.25 1.46-.65l1.38 1.38zM18 20H6V8.83l.47-.47L18 19.89zM10.83 4H18v10.8l2 2V4a2 2 0 0 0-2-2h-8L7.6 4.4 9 5.81z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sim-off.svg��������������������������������0000664�0000000�0000000�00000000337�14753064456�0025473�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.84 22.73-1.38-1.38c-.36.4-.88.65-1.46.65H6c-1.11 0-2-.89-2-2V8l1.06-1.05L1.11 3l1.28-1.27 19.72 19.73zM20 4a2 2 0 0 0-2-2h-8L7.6 4.4 20 16.8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sim-outline.svg����������������������������0000664�0000000�0000000�00000000371�14753064456�0026376�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 4v16H6V8.8L10.8 4zm0-2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2M9.5 19h-2v-2h2zm7 0h-2v-2h2zm-7-4h-2v-4h2zm3.5 4h-2v-4h2zm0-6h-2v-2h2zm3.5 2h-2v-4h2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sim.svg������������������������������������0000664�0000000�0000000�00000000331�14753064456�0024715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4a2 2 0 0 0-2-2h-8L4 8v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2zM9 19H7v-2h2zm8 0h-2v-2h2zm-8-4H7v-4h2zm4 4h-2v-4h2zm0-6h-2v-2h2zm4 2h-2v-4h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/simple-icons.svg���������������������������0000664�0000000�0000000�00000001127�14753064456�0026533�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.25 17c0 .88-.18 1.74-.54 2.53h-1.4c1.4-2.38.6-5.44-1.78-6.84A5 5 0 0 0 12 12c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5h-1.25c0-2.07-1.68-3.75-3.75-3.75S8.25 4.93 8.25 7s1.68 3.75 3.75 3.75c3.45 0 6.25 2.81 6.25 6.25M6.29 19.53c-.36-.79-.54-1.66-.54-2.53H7c0 .93.25 1.79.69 2.53zm11.96 1.22V22H5.75v-1.25H9.5v-5H8.25V14.5h7.5v1.25H14.5v5zm-5-5h-2.5v5h2.5zm1.19-8.68A2.5 2.5 0 0 1 12 9.5a2.493 2.493 0 0 1-2.43-2.56C9.6 5.61 10.67 4.53 12 4.5a2.51 2.51 0 0 1 2.44 2.57M13.25 7a1.25 1.25 0 1 0-2.5 0 1.25 1.25 0 0 0 2.5 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sina-weibo.svg�����������������������������0000664�0000000�0000000�00000001310�14753064456�0026160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.82 13.87c1.07 0 1.95.87 1.95 1.95a1.95 1.95 0 0 1-1.95 1.95c-1.08 0-1.95-.88-1.95-1.95 0-1.08.87-1.95 1.95-1.95M14.5 3.34l.68-.03c3.76 0 6.82 3.06 6.82 6.82l-.05.82-1.19-.37.02-.45c0-3.09-2.51-5.6-5.6-5.6l-.35.01zm.82 2.89c2.06.07 3.73 1.77 3.76 3.83l-1.24-.38c-.19-1.12-1.06-2-2.17-2.18zM2 15.41c-.03-.61.07-2.77 2.95-5.44 3.4-3.16 4.87-2.92 4.87-2.92s3.18-.3 1.24 3.41h.07c.47-.5 1.49-1.25 3.56-1.46 2.08-.21 2.08 1.5 1.81 2.7 1.88.94 3.06 2.33 3.06 3.88 0 2.82-3.93 5.11-8.78 5.11h-.28c-3.5 0-6.5-1.27-7.79-3.1-.46-.62-.71-1.3-.71-2.01zm7.82-3.49c-3.23 0-5.85 1.75-5.85 3.9s2.62 3.9 5.85 3.9 5.85-1.75 5.85-3.9-2.62-3.9-5.85-3.9"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sine-wave.svg������������������������������0000664�0000000�0000000�00000000411�14753064456�0026022�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 21c-3 0-4.19-4.24-5.45-8.72C10.14 9.04 9 5 7.5 5 4.11 5 4 11.93 4 12H2c0-.37.06-9 5.5-9 3 0 4.21 4.25 5.47 8.74C13.83 14.8 15 19 16.5 19c3.44 0 3.53-6.93 3.53-7h2c0 .37-.06 9-5.53 9"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sitemap-outline.svg������������������������0000664�0000000�0000000�00000000363�14753064456�0027251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 16v-3c0-1.11-.89-2-2-2h-6V8h2V2H9v6h2v3H5c-1.11 0-2 .89-2 2v3H1v6h6v-6H5v-3h6v3H9v6h6v-6h-2v-3h6v3h-2v6h6v-6zM11 4h2v2h-2zM5 20H3v-2h2zm8 0h-2v-2h2zm8 0h-2v-2h2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sitemap.svg��������������������������������0000664�0000000�0000000�00000000276�14753064456�0025577�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 2v6h2v3H5c-1.11 0-2 .89-2 2v3H1v6h6v-6H5v-3h6v3H9v6h6v-6h-2v-3h6v3h-2v6h6v-6h-2v-3c0-1.11-.89-2-2-2h-6V8h2V2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/size-l.svg���������������������������������0000664�0000000�0000000�00000000140�14753064456�0025326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7v10h6v-2h-4V7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/size-m.svg���������������������������������0000664�0000000�0000000�00000000207�14753064456�0025333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7c-1.1 0-2 .9-2 2v8h2V9h2v7h2V9h2v8h2V9a2 2 0 0 0-2-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/size-s.svg���������������������������������0000664�0000000�0000000�00000000251�14753064456�0025340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7c-1.1 0-2 .9-2 2v2a2 2 0 0 0 2 2h2v2H9v2h4c1.11 0 2-.89 2-2v-2a2 2 0 0 0-2-2h-2V9h4V7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/size-xl.svg��������������������������������0000664�0000000�0000000�00000000220�14753064456�0025515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 7h2l1 2.5L10 7h2l-2 5 2 5h-2l-1-2.5L8 17H6l2-5zm7 0h2v8h4v2h-6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/size-xs.svg��������������������������������0000664�0000000�0000000�00000000334�14753064456�0025532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 7h2l1 2.5L10 7h2l-2 5 2 5h-2l-1-2.5L8 17H6l2-5zm9 0h4v2h-4v2h2a2 2 0 0 1 2 2v2c0 1.11-.89 2-2 2h-4v-2h4v-2h-2a2 2 0 0 1-2-2V9c0-1.1.9-2 2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/size-xxl.svg�������������������������������0000664�0000000�0000000�00000000301�14753064456�0025705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h2l1 2.5L13 7h2l-2 5 2 5h-2l-1-2.5-1 2.5H9l2-5zm7 0h2v8h4v2h-6zM2 7h2l1 2.5L6 7h2l-2 5 2 5H6l-1-2.5L4 17H2l2-5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/size-xxs.svg�������������������������������0000664�0000000�0000000�00000000415�14753064456�0025722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h2l1 2.5L13 7h2l-2 5 2 5h-2l-1-2.5-1 2.5H9l2-5zm9 0h4v2h-4v2h2a2 2 0 0 1 2 2v2c0 1.11-.89 2-2 2h-4v-2h4v-2h-2a2 2 0 0 1-2-2V9c0-1.1.9-2 2-2M2 7h2l1 2.5L6 7h2l-2 5 2 5H6l-1-2.5L4 17H2l2-5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/size-xxxl.svg������������������������������0000664�0000000�0000000�00000000375�14753064456�0026110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h2l1 2.5L13 7h2l-2 5 2 5h-2l-1-2.5-1 2.5H9l2-5zm7 0h2v8h4v2h-6zm-8 8c0 1.11-.89 2-2 2H2v-2h4v-2H4v-2h2V9H2V7h4a2 2 0 0 1 2 2v1.5c0 .83-.67 1.5-1.5 1.5.83 0 1.5.67 1.5 1.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/skate-off.svg������������������������������0000664�0000000�0000000�00000000627�14753064456�0026014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19 15.81-5.64-5.65c1.86.46 4.27.89 5.17 2.79.42.62.47 1.76.47 2.86M20.95 17q-.045.315-.15.6l1.52 1.52c.36-.62.6-1.35.68-2.12zM10.5 7V6H9.2l1 1zm11.61 14.46-1.27 1.27-1.18-1.18c-.66.28-1.39.45-2.16.45H1v-2h4v-2H2.03V3.92L1.11 3l.92-.91V2h.09l.27-.27zM14 18H7v2h7zm4.06 1.95L16.11 18H16v2h1.5c.19 0 .38 0 .56-.05M10.5 5V2H5.2l3 3z"/></svg>���������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/skate.svg����������������������������������0000664�0000000�0000000�00000000507�14753064456�0025241�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.95 17c-.25 1.69-1.69 3-3.45 3H16v-2h3c-.07-1.28.26-3.96-.47-5.05-.97-2.05-3.7-2.39-5.6-2.9C12 10 11 9 10.84 8H8c-.28 0-.5-.22-.5-.5S7.72 7 8 7h2.5V6H8c-.28 0-.5-.22-.5-.5S7.72 5 8 5h2.5V2H2.03v16H5v2H1v2h16.5c2.86 0 5.22-2.2 5.5-5zM14 20H7v-2h7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/skateboard.svg�����������������������������0000664�0000000�0000000�00000000732�14753064456�0026251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 14.5c0 .83-.67 1.5-1.5 1.5S6 15.33 6 14.5 6.67 13 7.5 13s1.5.67 1.5 1.5m7.5-1.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5m5.09-3.81c-.45-.32-1.09-.22-1.4.22l-.13.18c-.18.26-.49.41-.8.41H4.74c-.31 0-.61-.15-.8-.41l-.13-.18c-.31-.44-.95-.54-1.4-.22-.45.31-.54.96-.22 1.4l.13.18c.56.77 1.47 1.23 2.42 1.23h14.52c.95 0 1.86-.46 2.42-1.23l.13-.18c.32-.44.23-1.09-.22-1.4"/></svg>��������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/skateboarding.svg��������������������������0000664�0000000�0000000�00000001572�14753064456�0026752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.78 18.39c.15.15.22.31.22.49 0 .12-.06.29-.18.44-.38.53-.86.94-1.45 1.24-.59.29-1.22.44-1.9.44H7.53c-.71 0-1.36-.15-1.94-.44-.59-.3-1.09-.71-1.46-1.24a.83.83 0 0 1-.13-.44c0-.18.07-.34.2-.49s.3-.22.51-.22c.23 0 .42.1.57.33.41.5.94.86 1.59 1.04l2.95-3.58-1.28-3.89c-.18-.57-.1-1.07.22-1.57L11 6.86H8.8L7 9.77 5.41 8.76 7.75 5h5.37c.42 0 .75.12 1.02.35.26.24.44.45.53.62l.48 1.15C15.5 7.89 16 8.5 16.7 9c.7.45 1.48.69 2.33.69v1.9c-1.09 0-2.08-.27-3-.8a6.1 6.1 0 0 1-2.16-2.08l-1.71 2.7 4.05 2.52v5.66h.26c.45 0 .86-.09 1.26-.31s.73-.47.99-.78c.15-.23.33-.33.53-.33s.38.08.53.22m-5.42-3.14-3.31-2.07.95 3.14-2.76 3.27h5.12zM15 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.89 2-2-.89-2-2-2M8 21.5c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75m8 0c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75"/></svg>��������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/skew-less.svg������������������������������0000664�0000000�0000000�00000000215�14753064456�0026043�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.5 11-2.09 9H10.5l2.09-9zM20 9h-9L8 22h9zM4 6l4-4v3h8v2H8v3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/skew-more.svg������������������������������0000664�0000000�0000000�00000000213�14753064456�0026035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.5 11-2.09 9H5.5l2.09-9zM15 9H6L3 22h9zm6-3-4-4v3H9v2h8v3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ski-cross-country.svg����������������������0000664�0000000�0000000�00000000617�14753064456�0027552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 14h-1.4v8H19zM6.44 22H5l2-8h1.44zM8.76 9.54V13H7V8.32l4.61-2.01c.43-.17.89-.18 1.35-.04s.83.42 1.1.83L15 8.58c.37.67.9 1.37 1.62 1.79.71.42 1.51.63 2.38.63v1.83c-1 0-2-.21-2.87-.63s-1.63-1.14-2.25-1.83l-.57 2.79L15.28 15v7H13.4v-5.5l-1.9-1.95L9.77 22H7.8l2.63-13.11zM16 4c0 1.11-.89 2-2 2s-2-.89-2-2 .9-2 2-2 2 .9 2 2"/></svg>�����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ski-water.svg������������������������������0000664�0000000�0000000�00000000661�14753064456�0026041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.2 3.5c0-.8.7-1.6 1.6-1.6s1.6.7 1.6 1.6S6.6 5 5.8 5s-1.6-.7-1.6-1.5m17.8.4-.5-.9-8 4.1.5.9zm-1.2 16.4.9.9c-.6.6-1.2 1-1.9 1.3s-1.5.5-2.3.5H2v-1.3h2.7l2.1-3.5L4.5 15l-.8-7.8c0-.9.8-1.7 1.7-1.7.3 0 .6.1.8.2l3.5 2.6 2.3-.8.8 1.6-3.5 1.5c-.1-.1-1.6-1.2-2.7-2.1L7 12l5.3 4.5 1.7 5.2h3.5c.6 0 1.2-.1 1.8-.4.6-.2 1.1-.6 1.5-1M7 21.7h5l-1.6-3.9-2.3-1.9 1.2 2.5z"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ski.svg������������������������������������0000664�0000000�0000000�00000001226�14753064456�0024717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.92 13.32c-.25-.04-1.21-.32-1.46-.43l-2.07 6.48-3.09-1.13 2.2-5.77L10.45 9 13 7.54c.45 1.13 1.17 2.08 2.12 2.86s2.04 1.27 3.26 1.46l1.12-3.43-1.44-.47-.52 1.6c-.66-.28-1.24-.7-1.74-1.24-.5-.55-.86-1.19-1.08-1.91l-.33-1.08c-.12-.4-.35-.72-.68-.96-.33-.23-.71-.37-1.08-.4-.39-.03-.77.03-1.13.24L8 6.23c-.37.21-.64.51-.81.89-.19.38-.23.76-.19 1.17s.26.77.54 1.08l3.57 3.71-1.69 4.46-6.95-2.49L2 16.46l14.04 5.12q1.17.42 2.49.42c.62 0 1.23-.08 1.83-.23.59-.16 1.14-.38 1.64-.66L20.87 20c-.75.33-1.53.5-2.34.5q-.99 0-1.98-.33l-.75-.28zM19 3c0 1.11-.89 2-2 2s-2-.89-2-2 .9-2 2-2 2 .9 2 2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/skip-backward-outline.svg������������������0000664�0000000�0000000�00000000246�14753064456�0030331�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 14.17 15.83 12 18 9.83zM20 19V5l-7 7m-9 7h2V5H4m7 9.17L8.83 12 11 9.83zM13 19V5l-7 7"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/skip-backward.svg��������������������������0000664�0000000�0000000�00000000162�14753064456�0026651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 5v14l-7-7M6 5v14H4V5m9 0v14l-7-7"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/skip-forward-outline.svg�������������������0000664�0000000�0000000�00000000244�14753064456�0030215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 9.83 8.17 12 6 14.17zM4 5v14l7-7m9-7h-2v14h2m-7-9.17L15.17 12 13 14.17zM11 5v14l7-7"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/skip-forward.svg���������������������������0000664�0000000�0000000�00000000160�14753064456�0026535�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 5v14l7-7m7-7v14h2V5m-9 0v14l7-7"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/skip-next-circle-outline.svg���������������0000664�0000000�0000000�00000000345�14753064456�0030770�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 2c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8M8 8v8l5-4m1-4v8h2V8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/skip-next-circle.svg�����������������������0000664�0000000�0000000�00000000260�14753064456�0027307�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2M8 8l5 4-5 4m6-8h2v8h-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/skip-next-outline.svg����������������������0000664�0000000�0000000�00000000202�14753064456�0027521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6 18 8.5-6L6 6m2 3.86L11.03 12 8 14.14M16 6h2v12h-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/skip-next.svg������������������������������0000664�0000000�0000000�00000000153�14753064456�0026051�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 18h2V6h-2M6 18l8.5-6L6 6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/skip-previous-circle-outline.svg�����������0000664�0000000�0000000�00000000347�14753064456�0031670�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8m4 4v8l-5-4m-1-4v8H8V8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/skip-previous-circle.svg�������������������0000664�0000000�0000000�00000000256�14753064456�0030212�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2M8 8h2v8H8m8-8v8l-5-4"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/skip-previous-outline.svg������������������0000664�0000000�0000000�00000000201�14753064456�0030416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 6h2v12H6m3.5-6 8.5 6V6m-2 8.14L12.97 12 16 9.86z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/skip-previous.svg��������������������������0000664�0000000�0000000�00000000152�14753064456�0026746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 18V6h2v12zm3.5-6L18 6v12z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/skull-crossbones-outline.svg���������������0000664�0000000�0000000�00000000753�14753064456�0031122�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.8 18.5 6 1.6-.4 1.9-9.4-2.5L2.6 22l-.5-1.9 6-1.6L2 16.9l.5-1.9 9.4 2.5 9.4-2.5.5 1.9zM9.5 6C8.7 6 8 6.7 8 7.5S8.7 9 9.5 9 11 8.3 11 7.5 10.3 6 9.5 6m5 0c-.8 0-1.5.7-1.5 1.5S13.7 9 14.5 9 16 8.3 16 7.5 15.3 6 14.5 6M13 11l-1-2-1 2zM12 1C8.1 1 5 4.1 5 8c0 1.9.8 3.6 2 4.9V16h10v-3.1c1.2-1.3 2-3 2-4.9 0-3.9-3.1-7-7-7m3 11v2h-1v-2h-1v2h-2v-2h-1v2H9v-2c-1.2-.9-2-2.3-2-4 0-2.8 2.2-5 5-5s5 2.2 5 5c0 1.6-.8 3.1-2 4"/></svg>���������������������mkdocs-material-9.6.4/material/templates/.icons/material/skull-crossbones.svg�����������������������0000664�0000000�0000000�00000000641�14753064456�0027441�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.8 18.5 6 1.6-.4 1.9-9.4-2.5L2.6 22l-.5-1.9 6-1.6L2 16.9l.5-1.9 9.4 2.5 9.4-2.5.5 1.9zM18 8c0 1.8-.8 3.3-2 4.4V15h-2v-2h-1v2h-2v-2h-1v2H8v-2.6C6.8 11.3 6 9.8 6 8a6 6 0 0 1 6-6 6 6 0 0 1 6 6m-7-.5c0-.8-.7-1.5-1.5-1.5S8 6.7 8 7.5 8.7 9 9.5 9 11 8.3 11 7.5m2 3.5-1-2-1 2zm3-3.5c0-.8-.7-1.5-1.5-1.5S13 6.7 13 7.5 13.7 9 14.5 9 16 8.3 16 7.5"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/skull-outline.svg��������������������������0000664�0000000�0000000�00000000634�14753064456�0026742�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 15a2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2m2.5 2 1.5-3 1.5 3zm5.5-2a2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2m6-4A10 10 0 0 0 12 1 10 10 0 0 0 2 11c0 2.8 1.2 5.3 3 7.1V22h14v-3.9c1.8-1.8 3-4.3 3-7.1m-5 9h-2v-2h-2v2h-2v-2H9v2H7v-2.8c-1.8-1.5-3-3.7-3-6.2a8 8 0 0 1 8-8 8 8 0 0 1 8 8c0 2.5-1.2 4.8-3 6.2z"/></svg>����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/skull-scan-outline.svg���������������������0000664�0000000�0000000�00000001047�14753064456�0027663�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 0C.9 0 0 .9 0 2v4h2V2h4V0zm16 0v2h4v4h2V2c0-1.1-.9-2-2-2zM9.5 13c-.8 0-1.5-.7-1.5-1.5S8.7 10 9.5 10s1.5.7 1.5 1.5-.7 1.5-1.5 1.5m1.5 2 1-2 1 2zm3.5-2c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5M0 18v4c0 1.1.9 2 2 2h4v-2H2v-4zm22 0v4h-4v2h4c1.1 0 2-.9 2-2v-4zM12 3c-4.4 0-8 3.6-8 8 0 2 .8 3.9 2 5.3V21h12v-4.7c1.2-1.4 2-3.2 2-5.3 0-4.4-3.6-8-8-8m4 12.4V19h-2v-2h-1v2h-2v-2h-1v2H8v-3.6c-1.2-1.1-2-2.7-2-4.4 0-3.3 2.7-6 6-6s6 2.7 6 6c0 1.8-.8 3.3-2 4.4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/skull-scan.svg�����������������������������0000664�0000000�0000000�00000000651�14753064456�0026206�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 0C.9 0 0 .9 0 2v4h2V2h4V0zm16 0v2h4v4h2V2c0-1.1-.9-2-2-2zm-6 3c-4.4 0-8 3.6-8 8 0 2.5 1.2 4.8 3 6.2V21h2v-3h2v3h2v-3h2v3h2v-3.8c1.8-1.5 3-3.7 3-6.2 0-4.4-3.6-8-8-8M8 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m2.5 2 1.5-3 1.5 3zm5.5-2c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2M0 18v4c0 1.1.9 2 2 2h4v-2H2v-4zm22 0v4h-4v2h4c1.1 0 2-.9 2-2v-4z"/></svg>���������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/skull.svg����������������������������������0000664�0000000�0000000�00000000503�14753064456�0025260�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a9 9 0 0 0-9 9 8.99 8.99 0 0 0 4 7.47V22h2v-3h2v3h2v-3h2v3h2v-3.54c2.47-1.65 4-4.46 4-7.46a9 9 0 0 0-9-9m-4 9a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m8 0a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m-4 3 1.5 3h-3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/skype-business.svg�������������������������0000664�0000000�0000000�00000001571�14753064456�0027120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.03 16.53c-2.66 0-3.85-1.31-3.85-2.29 0-.5.37-.86.88-.86 1.14 0 .85 1.62 2.97 1.62 1.09 0 1.7-.57 1.7-1.18 0-.36-.18-.76-.9-.94l-2.37-.59c-1.91-.48-2.26-1.51-2.26-2.48 0-2.02 1.9-2.78 3.68-2.78 1.62 0 3.58.91 3.58 2.12 0 .52-.46.82-.96.82-1 0-.8-1.35-2.76-1.35-.97 0-1.51.44-1.51 1.07s.77.81 1.43.99l1.76.39c1.92.43 2.41 1.55 2.41 2.6 0 1.64-1.26 2.86-3.8 2.86M18 6c2.07 2.04 2.85 4.89 2.36 7.55.41.72.64 1.56.64 2.45a5 5 0 0 1-5 5c-.89 0-1.73-.23-2.45-.64-2.66.49-5.51-.29-7.55-2.36-2.07-2.04-2.85-4.89-2.36-7.55C3.23 9.73 3 8.89 3 8a5 5 0 0 1 5-5c.89 0 1.73.23 2.45.64 2.66-.49 5.51.29 7.55 2.36M8 5a3 3 0 0 0-3 3c0 .79.3 1.5.8 2.04-.7 2.24-.17 4.78 1.6 6.56a6.53 6.53 0 0 0 6.56 1.6c.54.5 1.25.8 2.04.8a3 3 0 0 0 3-3c0-.79-.3-1.5-.8-2.04.7-2.24.17-4.78-1.6-6.56a6.53 6.53 0 0 0-6.56-1.6C9.5 5.3 8.79 5 8 5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/skype.svg����������������������������������0000664�0000000�0000000�00000001261�14753064456�0025263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 6c2.07 2.04 2.85 4.89 2.36 7.55.41.72.64 1.56.64 2.45a5 5 0 0 1-5 5c-.89 0-1.73-.23-2.45-.64-2.66.49-5.51-.29-7.55-2.36-2.07-2.04-2.85-4.89-2.36-7.55C3.23 9.73 3 8.89 3 8a5 5 0 0 1 5-5c.89 0 1.73.23 2.45.64 2.66-.49 5.51.29 7.55 2.36m-5.96 11.16c2.87 0 4.3-1.38 4.3-3.24 0-1.19-.56-2.46-2.73-2.95l-1.99-.44c-.76-.17-1.62-.4-1.62-1.11 0-.72.6-1.22 1.7-1.22 2.23 0 2.02 1.53 3.13 1.53.58 0 1.08-.34 1.08-.93 0-1.37-2.19-2.4-4.05-2.4-2.01 0-4.16.86-4.16 3.14 0 1.1.39 2.27 2.55 2.81l2.69.68c.81.2 1.01.65 1.01 1.07 0 .68-.68 1.35-1.91 1.35-2.41 0-2.08-1.85-3.37-1.85-.58 0-1 .4-1 .97 0 1.11 1.33 2.59 4.37 2.59"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/slack.svg����������������������������������0000664�0000000�0000000�00000001023�14753064456�0025221�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 15a2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2h2zm1 0a2 2 0 0 1 2-2 2 2 0 0 1 2 2v5a2 2 0 0 1-2 2 2 2 0 0 1-2-2zm2-8a2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 2 2v2zm0 1a2 2 0 0 1 2 2 2 2 0 0 1-2 2H4a2 2 0 0 1-2-2 2 2 0 0 1 2-2zm8 2a2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2h-2zm-1 0a2 2 0 0 1-2 2 2 2 0 0 1-2-2V5a2 2 0 0 1 2-2 2 2 0 0 1 2 2zm-2 8a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2v-2zm0-1a2 2 0 0 1-2-2 2 2 0 0 1 2-2h5a2 2 0 0 1 2 2 2 2 0 0 1-2 2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/slash-forward-box.svg����������������������0000664�0000000�0000000�00000000255�14753064456�0027474�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2M9.3 19H7l7.7-14H17z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/slash-forward.svg��������������������������0000664�0000000�0000000�00000000145�14753064456�0026704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7 21 7.9-18H17L9.1 21z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sledding.svg�������������������������������0000664�0000000�0000000�00000001375�14753064456�0025727�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.91 16.64a4.1 4.1 0 0 0-.94-1.83 3.8 3.8 0 0 0-1.77-1.12l-.43 1.45c.66.19 1.14.59 1.46 1.22.31.64.35 1.26.14 1.91-.22.66-.64 1.14-1.25 1.46s-1.24.35-1.89.13l-3.33-1.07.47-1.41 3.33 1.08.46-1.46-1.96-.6-2.06-4.49c-.19-.41-.48-.72-.87-.94s-.82-.3-1.27-.23l-2.12.37 1.03-3.27c.15-.47.12-.93-.1-1.34-.21-.46-.57-.76-1.07-.91-.41-.13-.83-.09-1.27.09L4 8v4.1l-1.6-.52L1.94 13l3.93 1.3-.47 1.4-3.93-1.26-.47 1.4 16.76 5.48c.69.22 1.37.25 2.06.09.68-.15 1.3-.47 1.83-.91.53-.5.9-1.07 1.12-1.76.23-.74.3-1.42.14-2.1M6 9.33l1.93-.83-1.03 3.17c-.16.47-.11.94.14 1.41L6 12.75zm7.5 8.99-6.69-2.15.46-1.41 6.65 2.16zm-4.03-4.45 3.98-.87 1.17 2.56zM14 3c0 1.11-.89 2-2 2s-2-.89-2-2 .9-2 2-2 2 .9 2 2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sleep-off.svg������������������������������0000664�0000000�0000000�00000000346�14753064456�0026013�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5.27 3.28 4 20 20.72 18.73 22l-6-6H9v-2l.79-.94zM23 12h-6v-2l3.39-4H17V4h6v2l-3.38 4H23zM9.82 8H15v2l-1.46 1.72zM7 20H1v-2l3.39-4H1v-2h6v2l-3.38 4H7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sleep.svg����������������������������������0000664�0000000�0000000�00000000300�14753064456�0025231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 12h-6v-2l3.39-4H17V4h6v2l-3.38 4H23zm-8 4H9v-2l3.39-4H9V8h6v2l-3.38 4H15zm-8 4H1v-2l3.39-4H1v-2h6v2l-3.38 4H7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/slide.svg����������������������������������0000664�0000000�0000000�00000000605�14753064456�0025231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.83 15.45c-.36-.55-.65-1.06-.92-1.53-1.17-2.01-2.12-3.37-4.91-3.79V5.5C9 3.57 7.43 2 5.5 2S2 3.57 2 5.5V22h2v-2h3v2h2v-9.84c1.76.34 2.29 1.23 3.17 2.76.29.51.61 1.05 1 1.64C15.41 19.92 17.67 22 22 22v-2c-3.47 0-5.2-1.6-7.17-4.55M5.5 4C6.33 4 7 4.67 7 5.5V10H4V5.5C4 4.67 4.67 4 5.5 4M4 18v-2h3v2zm3-4H4v-2h3z"/></svg>���������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/slope-downhill.svg�������������������������0000664�0000000�0000000�00000000341�14753064456�0027066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 19v3H2v-9zM19.09 7.5l-.84 2.76-10.12-3A2.89 2.89 0 0 0 5.1 4.5a2.89 2.89 0 0 0-2.76 3.03 2.897 2.897 0 0 0 5.23 1.58l10.12 3-.84 2.78 4.82-2.6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/slope-uphill.svg���������������������������0000664�0000000�0000000�00000000373�14753064456�0026550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 13v9H2v-3zm-.32-5.94-4.82-2.6.84 2.78-10.12 3a2.895 2.895 0 0 0-4.05-.62 2.895 2.895 0 0 0-.62 4.05c.94 1.3 2.76 1.57 4.05.62.71-.51 1.14-1.32 1.18-2.2l10.12-3 .84 2.78z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/slot-machine-outline.svg�������������������0000664�0000000�0000000�00000000606�14753064456�0030172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5 12 2-4V7H4v1h2l-2 4m5 0 2-4V7H8v1h2l-2 4m5 0 2-4V7h-3v1h2l-2 4m9-10c-1.1 0-2 .9-2 2 0 .7.4 1.4 1 1.7V17h-3v-2c.6 0 1-.4 1-1V5c0-.6-.4-1-1-1h-3.8c-.8-1.2-2.2-2-3.7-2s-2.9.8-3.7 2H2c-.6 0-1 .4-1 1v9c0 .6.4 1 1 1v7h15v-3h3c1.1 0 2-.9 2-2V5.7c.6-.3 1-1 1-1.7 0-1.1-.9-2-2-2M3 6h13v7H3zm12 14H4v-5h11zm-2-1H6v-2h7z"/></svg>��������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/slot-machine.svg���������������������������0000664�0000000�0000000�00000000570�14753064456�0026515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5 12 2-4V7H4v1h2l-2 4m5 0 2-4V7H8v1h2l-2 4m5 0 2-4V7h-3v1h2l-2 4m9-10c-1.1 0-2 .9-2 2 0 .7.4 1.4 1 1.7V17h-3v-2c.6 0 1-.4 1-1V5c0-.6-.4-1-1-1h-3.8c-.8-1.2-2.2-2-3.7-2s-2.9.8-3.7 2H2c-.6 0-1 .4-1 1v9c0 .6.4 1 1 1v7h15v-3h3c1.1 0 2-.9 2-2V5.7c.6-.3 1-1 1-1.7 0-1.1-.9-2-2-2m-8 17H6v-2h7zm3-6H3V6h13z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/smart-card-off-outline.svg�����������������0000664�0000000�0000000�00000000651�14753064456�0030414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13h-2.8L15 11.8V10h4zm3-10H6.2l2 2H22v13.8l1.5 1.49c.29-.35.5-.79.5-1.29V5a2.074 2.074 0 0 0-2-2m.11 18.46-1.27 1.27L19.11 21H2a2.07 2.07 0 0 1-2-2V5a2.08 2.08 0 0 1 1.27-1.84L1.11 3l1.28-1.27zm-5-2.46L14 15.89V17H4v-1.25c0-1.66 3.34-2.5 5-2.5.78 0 1.91.19 2.91.55l-2-2c-.28.12-.58.2-.91.2a2.5 2.5 0 0 1-2.5-2.5c0-.33.08-.63.2-.91L3.11 5H2v14z"/></svg>���������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/smart-card-off.svg�������������������������0000664�0000000�0000000�00000000617�14753064456�0026741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.39 1.73 1.11 3l.16.16A2.08 2.08 0 0 0 0 5v14a2.07 2.07 0 0 0 2 2h17.11l1.73 1.73 1.27-1.27zM14 18H2v-1c0-2 4-3.09 6-3.09S14 15 14 17zm-6-6c-1.66 0-3-1.34-3-3 0-.6.18-1.16.5-1.62l4.12 4.12c-.46.32-1.02.5-1.62.5m14-9H6.2l3.68 3.68c.16.13.31.28.44.44L23.5 20.29c.29-.35.5-.79.5-1.29V5a2.074 2.074 0 0 0-2-2m-1 10h-4v-3h4z"/></svg>�����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/smart-card-outline.svg���������������������0000664�0000000�0000000�00000000444�14753064456�0027644�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 3H2a2.07 2.07 0 0 0-2 2v14a2.07 2.07 0 0 0 2 2h20a2.07 2.07 0 0 0 2-2V5a2.07 2.07 0 0 0-2-2m0 16H2V5h20m-8 12v-1.25c0-1.66-3.34-2.5-5-2.5s-5 .84-5 2.5V17zM9 7a2.5 2.5 0 1 0 2.5 2.5A2.5 2.5 0 0 0 9 7m6 3v3h4v-3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/smart-card-reader-outline.svg��������������0000664�0000000�0000000�00000000437�14753064456�0031106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.5 8.5A2.5 2.5 0 1 0 17 11a2.5 2.5 0 0 0-2.5-2.5M8.25 6H7v10h1.25c1.66 0 2.5-3.34 2.5-5s-.84-5-2.5-5M19 2H5a2.07 2.07 0 0 0-2 2v14h2V4h14v14h2V4a2.07 2.07 0 0 0-2-2m4 20H1v-1a2 2 0 0 1 2-2h18a2 2 0 0 1 2 2Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/smart-card-reader.svg����������������������0000664�0000000�0000000�00000000426�14753064456�0027427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 4a2.07 2.07 0 0 0-2-2H5a2.07 2.07 0 0 0-2 2v14h18M8.25 16H7V6h1.25c1.66 0 2.5 3.34 2.5 5s-.84 5-2.5 5m6.25-2.5A2.5 2.5 0 1 1 17 11a2.5 2.5 0 0 1-2.5 2.5M23 21v1H1v-1a2 2 0 0 1 2-2h18a2 2 0 0 1 2 2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/smart-card.svg�����������������������������0000664�0000000�0000000�00000000414�14753064456�0026164�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3h20a2.07 2.07 0 0 1 2 2v14a2.07 2.07 0 0 1-2 2H2a2.07 2.07 0 0 1-2-2V5a2.07 2.07 0 0 1 2-2m6 10.91C6 13.91 2 15 2 17v1h12v-1c0-2-4-3.09-6-3.09M8 6a3 3 0 1 0 3 3 3 3 0 0 0-3-3m9 4v3h4v-3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/smog.svg�����������������������������������0000664�0000000�0000000�00000000530�14753064456�0025073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c-1.92 0-3.5 1.35-3.91 3.15A3.47 3.47 0 0 0 5.5 4 3.5 3.5 0 0 0 2 7.5 3.5 3.5 0 0 0 5.5 11h1.18v1h4.04v-1h2.56v1h4.04v-1h1.18A3.5 3.5 0 0 0 22 7.5 3.5 3.5 0 0 0 18.5 4c-1.03 0-1.95.44-2.59 1.15C15.5 3.35 13.92 2 12 2M7.2 14l-.8 8H11l-.8-8zm6.6 0-.8 8h4.6l-.8-8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/smoke-detector-alert-outline.svg�����������0000664�0000000�0000000�00000000450�14753064456�0031636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 16H3V5h14zm-7-1c3.3 0 6-2.7 6-6s-2.7-6-6-6-6 2.7-6 6 2.7 6 6 6m0-10c2.2 0 4 1.8 4 4s-1.8 4-4 4-4-1.8-4-4 1.8-4 4-4m13-1h-2v6h2V8m0 7h-2v2h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/smoke-detector-alert.svg�������������������0000664�0000000�0000000�00000000431�14753064456�0030160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 18c3.3 0 6-2.7 6-6s-2.7-6-6-6-6 2.7-6 6 2.7 6 6 6m7-15c1.1 0 2 .9 2 2v14c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2zM6 12c0-2.2 1.8-4 4-4s4 1.8 4 4-1.8 4-4 4-4-1.8-4-4m17-5h-2v6h2V8m0 7h-2v2h2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/smoke-detector-off-outline.svg�������������0000664�0000000�0000000�00000000757�14753064456�0031313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.2 5-2-2H19a2 2 0 0 1 2 2v12.8l-2-2V5zm9.3 9.32c.32-.72.5-1.49.5-2.32 0-3.32-2.69-6-6-6-.83 0-1.6.18-2.32.5l1.59 1.57c.23-.04.48-.07.73-.07 2.21 0 4 1.79 4 4 0 .25-.03.5-.07.73zm4.61 7.14-1.27 1.27L19.1 21H5a2 2 0 0 1-2-2V4.9L1.11 3l1.28-1.27zM8 12c0 2.21 1.79 4 4 4 .62 0 1.19-.15 1.71-.4L8.4 10.29c-.25.52-.4 1.1-.4 1.71m9.11 7-1.92-1.92c-.93.58-2.02.92-3.19.92-3.31 0-6-2.69-6-6 0-1.17.34-2.26.92-3.19L5 6.89V19z"/></svg>�����������������mkdocs-material-9.6.4/material/templates/.icons/material/smoke-detector-off.svg���������������������0000664�0000000�0000000�00000000743�14753064456�0027631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8c2.21 0 4 1.79 4 4 0 .25-.03.5-.07.73l-4.66-4.66c.23-.04.48-.07.73-.07m0-2c3.31 0 6 2.68 6 6 0 .83-.18 1.6-.5 2.32L21 17.8V5a2 2 0 0 0-2-2H6.2l3.48 3.5C10.4 6.18 11.17 6 12 6m10.11 15.46-1.27 1.27L19.1 21H5a2 2 0 0 1-2-2V4.9L1.11 3l1.28-1.27zm-6.92-4.38-1.48-1.48c-.52.25-1.09.4-1.71.4-2.21 0-4-1.79-4-4 0-.61.15-1.19.4-1.71L6.92 8.81C6.34 9.74 6 10.83 6 12c0 3.31 2.69 6 6 6 1.17 0 2.26-.34 3.19-.92"/></svg>�����������������������������mkdocs-material-9.6.4/material/templates/.icons/material/smoke-detector-outline.svg�����������������0000664�0000000�0000000�00000000457�14753064456�0030540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m0 16H5V5h14zm-7-1c3.31 0 6-2.69 6-6 0-3.32-2.69-6-6-6-3.32 0-6 2.68-6 6 0 3.31 2.69 6 6 6m0-10c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/smoke-detector-variant-alert.svg�����������0000664�0000000�0000000�00000001576�14753064456�0031635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 4c4.4 0 8 3.6 8 8s-3.6 8-8 8-8-3.6-8-8 3.6-8 8-8m0-2C4.5 2 0 6.5 0 12s4.5 10 10 10 10-4.5 10-10S15.5 2 10 2m0 9c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1M8.7 9.3c.4-.2.8-.3 1.3-.3s.9.1 1.3.3l.7-.7c-.6-.4-1.3-.6-2-.6s-1.4.2-2 .6zM13 12c0 .5-.1.9-.3 1.3l.7.7c.4-.6.6-1.3.6-2s-.2-1.4-.6-2l-.7.7c.2.4.3.8.3 1.3m-6 0c0-.5.1-.9.3-1.3l-.7-.7c-.4.6-.6 1.3-.6 2s.2 1.4.6 2l.7-.7c-.2-.4-.3-.8-.3-1.3m4.3 2.7c-.4.2-.8.3-1.3.3s-.9-.1-1.3-.3l-.7.7c.6.4 1.3.6 2 .6s1.4-.2 2-.6zm3.6-6.2-.7.7c.5.8.8 1.8.8 2.8s-.3 2-.8 2.8l.7.7c.7-1 1.1-2.2 1.1-3.5s-.4-2.5-1.1-3.5m-7.7-.7C8 7.3 9 7 10 7s2 .3 2.8.8l.7-.7C12.5 6.4 11.3 6 10 6s-2.5.4-3.5 1.1zm5.6 8.4c-.8.5-1.8.8-2.8.8s-2-.3-2.8-.8l-.7.7c1 .7 2.2 1.1 3.5 1.1s2.5-.4 3.5-1.1zm-7-1.4C5.3 14 5 13 5 12s.3-2 .8-2.8l-.7-.7C4.4 9.5 4 10.7 4 12s.4 2.5 1.1 3.5zM24 7h-2v6h2V8m0 7h-2v2h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/smoke-detector-variant-off.svg�������������0000664�0000000�0000000�00000002327�14753064456�0031273�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3l2.95 2.95A9.9 9.9 0 0 0 2 12c0 5.5 4.5 10 10 10 2.28 0 4.37-.77 6.05-2.06l2.79 2.79zM12 20c-4.41 0-8-3.59-8-8 0-1.72.56-3.31 1.5-4.62l1.43 1.44A6 6 0 0 0 6 12c0 1.3.42 2.5 1.11 3.47l.72-.72C7.31 13.96 7 13 7 12c0-.89.25-1.72.66-2.45l.74.75c-.25.51-.4 1.09-.4 1.7 0 .74.22 1.43.57 2l.73-.71c-.19-.4-.3-.83-.3-1.29 0-.33.07-.64.18-.93l3.75 3.75c-.29.11-.6.18-.93.18-.46 0-.89-.11-1.28-.3l-.72.73c.58.36 1.26.57 2 .57.61 0 1.19-.15 1.71-.4l.74.74c-.73.41-1.56.66-2.45.66-1 0-1.96-.31-2.75-.83l-.72.72C9.5 17.59 10.7 18 12 18c1.17 0 2.25-.35 3.18-.93l1.44 1.43c-1.3.94-2.9 1.5-4.62 1.5m0-12c.74 0 1.43.22 2 .57l-.71.73c-.33-.15-.69-.24-1.06-.27l-.95-.95c.22-.05.47-.08.72-.08m2.97 3.77c-.03-.37-.11-.73-.27-1.05l.73-.72c.36.58.57 1.26.57 2 0 .25-.03.5-.08.72zm-.22-3.94C13.96 7.31 13 7 12 7c-.54 0-1.06.09-1.55.25l-.76-.75C10.4 6.18 11.18 6 12 6c1.3 0 2.5.42 3.47 1.11zM8.18 5 6.72 3.5C8.25 2.56 10.06 2 12 2c5.5 0 10 4.5 10 10 0 1.94-.56 3.75-1.5 5.28L19 15.83c.65-1.14 1-2.45 1-3.83 0-4.41-3.59-8-8-8-1.38 0-2.69.35-3.82 1m8.57 8.55c.16-.49.25-1.01.25-1.55 0-1-.31-1.96-.83-2.75l.72-.72C17.59 9.5 18 10.7 18 12c0 .83-.18 1.6-.5 2.32z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/smoke-detector-variant.svg�����������������0000664�0000000�0000000�00000001751�14753064456�0030523�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m0 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m-1.28-1.7c.39-.19.82-.3 1.28-.3s.89.11 1.29.3l.71-.73c-.57-.35-1.26-.57-2-.57s-1.42.22-2 .57zM15 12c0 .46-.11.89-.3 1.29l.73.71c.36-.57.57-1.26.57-2s-.21-1.42-.57-2l-.73.72c.19.39.3.82.3 1.28m-6 0c0-.46.11-.89.3-1.28L8.57 10c-.35.58-.57 1.26-.57 2s.22 1.43.57 2l.73-.71c-.19-.4-.3-.83-.3-1.29m4.29 2.7c-.4.19-.83.3-1.29.3s-.89-.11-1.28-.3l-.72.73c.58.36 1.26.57 2 .57s1.43-.21 2-.57zm3.6-6.17-.72.72c.52.79.83 1.75.83 2.75s-.31 1.96-.83 2.75l.72.72C17.59 14.5 18 13.3 18 12s-.41-2.5-1.11-3.47m-7.64-.7C10.04 7.31 11 7 12 7s1.96.31 2.75.83l.72-.72a5.98 5.98 0 0 0-6.94 0zm5.5 8.34c-.79.52-1.75.83-2.75.83s-1.96-.31-2.75-.83l-.72.72C9.5 17.59 10.7 18 12 18s2.5-.41 3.47-1.11zm-6.92-1.42C7.31 13.96 7 13 7 12s.31-1.96.83-2.75l-.72-.72a5.98 5.98 0 0 0 0 6.94z"/></svg>�����������������������mkdocs-material-9.6.4/material/templates/.icons/material/smoke-detector.svg�������������������������0000664�0000000�0000000�00000000430�14753064456�0027052�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18a6 6 0 0 0 6-6c0-3.32-2.69-6-6-6-3.32 0-6 2.68-6 6a6 6 0 0 0 6 6m7-15a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2zM8 12a4 4 0 0 1 4-4 4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/smoke.svg����������������������������������0000664�0000000�0000000�00000000701�14753064456�0025244�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 19v3h-2v-3c0-1.1-.9-2-2-2h-3c-2.8 0-5-2.2-5-5 0-1.2.4-2.2 1.1-3.1C3.8 8.5 2 6.4 2 4c0-.7.2-1.4.4-2h2.4c-.5.5-.8 1.2-.8 2 0 1.7 1.3 3 3 3h3v2c-1.7 0-3 1.3-3 3s1.3 3 3 3h3c2.2 0 4 1.8 4 4m.9-10.1C20.2 8.5 22 6.4 22 4c0-.7-.2-1.4-.4-2h-2.4c.5.5.8 1.2.8 2 0 1.7-1.3 3-3 3h-1.2c.1.3.2.6.2 1 0 1.7-1.3 3-3 3v2c2.8 0 5 2.2 5 5v4h2v-4c0-2.7-1.5-5-3.8-6.2.9-.7 1.5-1.7 1.7-2.9"/></svg>���������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/smoking-off.svg����������������������������0000664�0000000�0000000�00000000717�14753064456�0026354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2 6 7 7H2v3h10l7 7 1.25-1.25-17-17zm18.5 7H22v3h-1.5zM18 13h1.5v3H18zm.85-8.12c.62-.61 1-1.45 1-2.38h-1.5c0 1-.85 1.85-1.85 1.85v1.5c2.24 0 4 1.83 4 4.07V12H22V9.92c0-2.23-1.28-4.15-3.15-5.04M14.5 8.7h1.53c1.05 0 1.97.74 1.97 2.05V12h1.5v-1.59c0-1.8-1.6-3.16-3.47-3.16H14.5c-1 0-1.85-.98-1.85-2S13.5 3.5 14.5 3.5V2a3.35 3.35 0 0 0-3.35 3.35A3.35 3.35 0 0 0 14.5 8.7m2.5 7.23V13h-2.93z"/></svg>�������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/smoking-pipe-off.svg�����������������������0000664�0000000�0000000�00000001217�14753064456�0027303�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.84 22.73-1.13-1.13c-.52.25-1.09.4-1.71.4h-2c-3 0-4.28-.5-7.11-3.35l-3.77-3.77C4.56 14.32 3.8 14 3 14H2v-2h1c1.33 0 2.6.53 3.53 1.47l3.77 3.76c.7.69 1.7.77 2.7.77h1v-2.11L1.11 3l1.28-1.27 19.72 19.73zm1.09-4c.04-.23.07-.48.07-.73v-3c0-1.11-.89-2-2-2h-3.8zM18.5 9.7V12H20V9.76c0-2.14-1.22-4.1-3.15-5.03h-.03C17.58 4 17.9 3 17.8 2h-1.48a1.865 1.865 0 0 1-1.82 2.2v1.5c2.21 0 4 1.8 4 4m-6.67-1.07c.22.05.44.07.67.07H14c1.07-.04 1.96.8 2 1.86V12h1.5v-1.64a3.3 3.3 0 0 0-3.45-3.16H12.5a2 2 0 0 1-1.85-2c.02-.98.85-1.77 1.81-1.75h.04V2a3.35 3.35 0 0 0-3.35 3.35c0 .23.02.45.07.65z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/smoking-pipe.svg���������������������������0000664�0000000�0000000�00000001022�14753064456�0026525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 13c-1.11 0-2 .89-2 2v3h-1c-1 0-2-.08-2.7-.77l-3.77-3.76C5.6 12.53 4.33 12 3 12H2v2h1c.8 0 1.56.32 2.12.88l3.77 3.77C11.72 21.5 13 22 16 22h2c2.21 0 4-1.79 4-4v-3c0-1.11-.89-2-2-2zm-2-5.8h-1.5a2 2 0 0 1-1.85-2c.02-.98.85-1.77 1.81-1.75h.04V2a3.35 3.35 0 0 0 0 6.7H14c1.07-.04 1.96.8 2 1.86V12h1.5v-1.64a3.3 3.3 0 0 0-3.45-3.16zm6 2.56V12h-1.5V9.7c0-2.2-1.79-4-4-4V4.2A1.865 1.865 0 0 0 16.32 2h1.47c.1 1-.21 2-.97 2.73h.03C18.78 5.66 20 7.62 20 9.76"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/smoking.svg��������������������������������0000664�0000000�0000000�00000000727�14753064456�0025605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 16h15v3H2zm18.5 0H22v3h-1.5zM18 16h1.5v3H18zm.85-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1 0 1.85.83 1.85 1.85S17.5 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03m-2.82 2.47H14.5c-1 0-1.85-.98-1.85-2s.85-1.75 1.85-1.75v-1.5a3.35 3.35 0 0 0-3.35 3.35 3.35 3.35 0 0 0 3.35 3.35h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16"/></svg>�����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/snail.svg����������������������������������0000664�0000000�0000000�00000001376�14753064456�0025245�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.31 8.03.93-3.08c.43-.1.76-.48.76-.95 0-.55-.45-1-1-1s-1 .45-1 1c0 .26.11.5.27.68l-.77 2.58-.77-2.58c.16-.18.27-.42.27-.68 0-.55-.45-1-1-1s-1 .45-1 1c0 .47.33.85.76.95l.93 3.08C17.73 8.18 17 9 17 10v2.25C15.65 9.16 12.63 7 9.11 7 5.19 7 2 10.26 2 14.26c0 1.84.82 3.49 2.1 4.59L2.88 19A1.003 1.003 0 0 0 3 21h16.12c1.04 0 1.88-.84 1.88-1.88v-7.4c.6-.34 1-.98 1-1.72 0-1-.73-1.82-1.69-1.97m-4.71 9.38-3.53.45c.43-.76.73-1.65.73-2.6 0-2.32-1.85-4.2-4.13-4.2-.53 0-1.05.12-1.53.35-.49.25-.7.85-.45 1.34a1 1 0 0 0 1.34.46c.2-.1.42-.15.64-.15 1.18 0 2.13.98 2.13 2.2 0 1.66-1.3 3.01-2.91 3.01-2.14 0-3.89-1.8-3.89-4.01C4 11.36 6.29 9 9.11 9c3.66 0 6.64 3.06 6.64 6.82 0 .54-.06 1.07-.15 1.59"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/snake.svg����������������������������������0000664�0000000�0000000�00000000721�14753064456�0025231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 17H18c1.1 0 2-.9 2-2s-.9-2-2-2V9c0-1 0-2-1.08-2.86.05-.21.08-.42.08-.64C17 3.57 15 2 12.5 2c-2.26 0-4.12 1.31-4.43 3H6L3.71 2.79 3 3.5l2 2-2 2 .71.71L6 6h2.07c.31 1.69 2.17 3 4.43 3 .5 0 1-.08 1.43-.2.04.07.07.14.07.2v4H8c-1.1 0-2 .9-2 2s.9 2 2 2H6.5A2.5 2.5 0 0 0 4 19.5c0 .17 0 .34.05.5H4c-1.1 0-2 .9-2 2h17.5a2.5 2.5 0 0 0 0-5M12 5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1"/></svg>�����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/snapchat.svg�������������������������������0000664�0000000�0000000�00000004263�14753064456�0025736�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.93 16.56c-.14-.38-.43-.56-.71-.75-.05-.03-.11-.06-.15-.08-.07-.05-.18-.09-.27-.14-.94-.5-1.68-1.13-2.19-1.87a6 6 0 0 1-.37-.66c-.04-.13-.04-.2-.01-.26.03-.05.07-.1.12-.13.15-.11.33-.21.44-.29.21-.13.36-.23.46-.3.39-.27.66-.58.83-.88.24-.45.27-.98.08-1.45-.25-.67-.89-1.09-1.66-1.09-.16 0-.32.02-.5.05 0 .01-.06.02-.1.03 0-.46-.01-.94-.05-1.42-.14-1.68-.73-2.56-1.35-3.26-.39-.44-.85-.82-1.36-1.11-.93-.53-1.99-.8-3.14-.8s-2.2.27-3.13.8c-.52.29-.98.67-1.37 1.11-.62.7-1.2 1.58-1.35 3.26-.04.48-.05.96-.04 1.42-.05-.01-.11-.02-.11-.03-.18-.03-.34-.05-.5-.05-.77 0-1.41.42-1.66 1.09-.19.47-.16 1 .08 1.45.17.3.44.61.83.88.1.07.25.17.46.31l.42.27c.06.04.1.09.14.14.03.07.03.14-.02.27-.1.23-.22.43-.36.65-.5.73-1.21 1.35-2.12 1.84-.49.26-.99.44-1.2 1-.16.44-.07.94.35 1.35.15.15.32.28.51.38.4.21.82.39 1.25.5.09.03.18.06.25.12.15.12.13.32.33.59.1.16.24.29.37.39.41.29.87.3 1.37.32.44.02.94.04 1.5.23.26.06.5.23.79.41.71.42 1.63 1 3.21 1 1.57 0 2.5-.58 3.22-1.01.28-.17.53-.34.78-.4.55-.19 1.06-.21 1.5-.23.5-.01.96-.03 1.37-.32.17-.12.31-.28.42-.46.14-.24.14-.43.27-.52.07-.05.15-.09.24-.11.44-.12.86-.3 1.26-.51q.315-.165.54-.42h.01c.39-.41.47-.87.32-1.31m-1.4.75c-.86.47-1.43.42-1.87.69-.16.12-.21.28-.24.44l-.03.2c-.02.14-.05.26-.15.33-.34.23-1.33-.02-2.61.4-1.06.35-1.73 1.36-3.63 1.36s-2.55-1-3.63-1.36c-1.27-.42-2.27-.17-2.6-.4-.27-.19-.05-.71-.43-.97-.44-.27-1.01-.22-1.84-.69-.31-.16-.36-.31-.32-.38.04-.09.16-.16.24-.2 1.65-.79 2.58-1.82 3.05-2.63.44-.72.53-1.27.56-1.35.03-.21.06-.37-.17-.58-.22-.21-1.2-.81-1.47-1-.46-.32-.65-.63-.51-1.02.12-.27.35-.37.62-.37q.12 0 .24.03c.5.1.98.35 1.26.42.03.01.06.01.1.01.09 0 .14-.03.17-.09.01-.04.02-.09.02-.15-.04-.54-.11-1.59-.03-2.58.04-.42.11-.78.2-1.09.2-.68.54-1.13.88-1.54.25-.29 1.41-1.52 3.66-1.52 1.85 0 2.96.84 3.44 1.29.1.1.18.18.22.23.38.44.72.92.92 1.68.07.27.13.59.16.95.08.98.01 2.04-.03 2.58 0 .04 0 .08.01.11.01.09.07.13.18.13.04 0 .07 0 .1-.01.28-.07.76-.32 1.26-.43.08-.01.16-.02.24-.02.25 0 .5.09.6.32l.01.04h.01v.01c.15.38-.05.7-.5 1.01-.27.19-1.26.8-1.48 1-.23.22-.2.38-.17.59.03.1.21 1.05 1.11 2.11.55.64 1.34 1.31 2.5 1.87.07.03.16.08.21.14.03.05.05.09.04.13-.01.1-.1.2-.3.31"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/snowboard.svg������������������������������0000664�0000000�0000000�00000001465�14753064456�0026134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.87 20.37c-.11-.17-.25-.28-.44-.31a.71.71 0 0 0-.65.14c-.35.3-.74.53-1.2.66-.45.14-.92.14-1.42.04l-1.12-.28L16 14.46l-3.26-2.67 1.76-2.85c.58.91 1.35 1.64 2.33 2.2s2.05.86 3.2.86V9.97c-.94 0-1.77-.25-2.5-.75s-1.27-1.15-1.61-1.96l-.56-1.21q-.15-.285-.54-.66c-.27-.25-.63-.39-1.1-.39H8.07L5.54 9l1.73 1.06L9.14 7h2.36L9 10.95c-.31.47-.4.98-.28 1.55l.84 3.45-3.5 2.34-.47-.1a2.85 2.85 0 0 1-1.26-.58c-.37-.3-.65-.65-.83-1.05-.1-.25-.27-.39-.5-.42-.24-.06-.44-.03-.61.09s-.27.27-.3.47c-.03.15-.02.3.04.47.29.62.7 1.16 1.24 1.61.55.45 1.18.72 1.9.86l12.61 2.71c.72.15 1.41.15 2.08-.05.67-.18 1.27-.51 1.8-.98.12-.09.2-.21.24-.37 0-.22 0-.41-.13-.58m-13.1-1.48 3.04-2-.47-3.32 2.85 2.01.75 4.62zM18 3c0 1.11-.89 2-2 2s-2-.89-2-2 .9-2 2-2 2 .9 2 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/snowflake-alert.svg������������������������0000664�0000000�0000000�00000000722�14753064456�0027227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.46 9.41 13 7.38V5.12l1.71-1.71L13.29 2 12 3.29 10.71 2 9.29 3.41 11 5.12v2.26L8.5 8.82l-2-1.13-.58-2.33L4 5.88l.47 1.77-1.77.47.52 1.93 2.33-.62 2 1.13v2.89l-2 1.13-2.33-.62-.52 1.93 1.77.47L4 18.12l1.93.52.62-2.33 2-1.13L11 16.62v2.26l-1.71 1.71L10.71 22 12 20.71 13.29 22l1.41-1.41-1.7-1.71v-2.26l3.46-2.01M9.5 10.56 12 9.11l2.5 1.45v2.88L12 14.89l-2.5-1.45M19 13V7h2v6zm0 4v-2h2v2z"/></svg>����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/snowflake-check.svg������������������������0000664�0000000�0000000�00000001124�14753064456�0027172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.75 21.16-2.75-3L16.16 17l1.59 1.59L21.34 15l1.16 1.41zM12 18c0-1.54.59-2.94 1.54-4l-1.54.89-2.5-1.45v-2.88L12 9.11l2.5 1.45v2.57a6 6 0 0 1 1.96-.92v-1.65l2-1.13 2.33.62.52-1.93-1.77-.47.46-1.77-1.93-.52-.62 2.33-2 1.13L13 7.38V5.12l1.71-1.71L13.29 2 12 3.29 10.71 2 9.29 3.41 11 5.12v2.26L8.5 8.82l-2-1.13-.58-2.33L4 5.88l.47 1.77-1.77.47.52 1.93 2.33-.62 2 1.13v2.89l-2 1.13-2.33-.62-.52 1.93 1.77.47L4 18.12l1.93.52.62-2.33 2-1.13L11 16.62v2.26l-1.71 1.71L10.71 22 12 20.71 13.29 22l.13-.13A5.94 5.94 0 0 1 12 18"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/snowflake-melt.svg�������������������������0000664�0000000�0000000�00000001107�14753064456�0027057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 17.85C8 19.04 7.11 20 6 20s-2-.96-2-2.15C4 16.42 6 14 6 14s2 2.42 2 3.85M16.46 12v-1.44l2-1.13 2.33.62.52-1.93-1.77-.47.46-1.77-1.93-.52-.62 2.33-2 1.13L13 7.38V5.12l1.71-1.71L13.29 2 12 3.29 10.71 2 9.29 3.41 11 5.12v2.26L8.5 8.82l-2-1.13-.58-2.33L4 5.88l.47 1.77-1.77.47.52 1.93 2.33-.62 2 1.13V12H2v1h20v-1zM9.5 12v-1.44L12 9.11l2.5 1.45V12zM20 17.85c0 1.19-.89 2.15-2 2.15s-2-.96-2-2.15c0-1.43 2-3.85 2-3.85s2 2.42 2 3.85m-6 3c0 1.19-.89 2.15-2 2.15s-2-.96-2-2.15c0-1.43 2-3.85 2-3.85s2 2.42 2 3.85"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/snowflake-off.svg��������������������������0000664�0000000�0000000�00000001117�14753064456�0026671�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 5.12 9.29 3.41 10.71 2 12 3.29 13.29 2l1.42 1.41L13 5.12v2.26l2.45 1.44 2-1.13.62-2.33 1.93.52-.46 1.77 1.77.47-.52 1.93-2.33-.62-2 1.13v2.7L14.5 11.3v-.74l-1.76-1.02-2.01-2.01.27-.15zm7.46 9.45-1.59-.9 2.68 2.68 1.75-.47-.51-1.93zM13 16.62v2.26l1.7 1.71L13.29 22 12 20.71 10.71 22l-1.42-1.41L11 18.88v-2.26l-2.45-1.44-2 1.13-.62 2.33L4 18.12l.47-1.76-1.77-.47.52-1.93 2.33.62 2-1.13v-2.89l-2-1.13-2.33.62-.52-1.93 1.77-.47L4 5.89 1.11 3l1.28-1.27 19.72 19.73-1.27 1.27L14.1 16zm-1-1.73.63-.39-3.13-3.11v2.05z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/snowflake-thermometer.svg������������������0000664�0000000�0000000�00000001127�14753064456�0030453�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.46 9.41 11 7.38V5.12l1.71-1.71L11.29 2 10 3.29 8.71 2 7.29 3.41 9 5.12v2.26L6.5 8.82l-2-1.13-.58-2.33L2 5.88l.47 1.77-1.77.47.52 1.93 2.33-.62 2 1.13v2.89l-2 1.13-2.33-.62-.52 1.93 1.77.47L2 18.12l1.93.52.62-2.33 2-1.13L9 16.62v2.26l-1.71 1.71L8.71 22 10 20.71 11.29 22l1.41-1.41-1.7-1.71v-2.26l3.46-2.01M7.5 10.56 10 9.11l2.5 1.45v2.88L10 14.89l-2.5-1.45M19 5c-1.11 0-2 .89-2 2v6.76c-.64.57-1 1.39-1 2.24 0 1.66 1.34 3 3 3s3-1.34 3-3c0-.85-.36-1.67-1-2.23V7c0-1.11-.89-2-2-2m0 1c.55 0 1 .45 1 1v1h-2V7c0-.55.45-1 1-1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/snowflake-variant.svg����������������������0000664�0000000�0000000�00000000634�14753064456�0027566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.25 12 2.02-1H23l-1-2h-3.97l2.39-3.17-.99-2-4.06 5.37-2.02 1.01.4-2.21 4.08-5.38-2.19-.4L12 7 8.4 2.2l-2.2.4L10.26 8l.4 2.21-1.84-.92-.16-.08L4.6 3.8l-1 2L6 9H2l-1 2h6.77l1.98 1-2.02 1H1l1 2h3.97l-2.39 3.17.99 2 4.06-5.37 2.02-1.01-.4 2.21-4.08 5.38 2.19.41L12 17l3.6 4.8 2.2-.4-4.06-5.4-.4-2.21 2 1 4.06 5.41 1-2L18 15h4l1-2h-6.77"/></svg>����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/snowflake.svg������������������������������0000664�0000000�0000000�00000001073�14753064456�0026122�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.79 13.95-2.33.62-2-1.13v-2.88l2-1.13 2.33.62.52-1.93-1.77-.47.46-1.77-1.93-.52-.62 2.33-2 1.13L13 7.38V5.12l1.71-1.71L13.29 2 12 3.29 10.71 2 9.29 3.41 11 5.12v2.26L8.5 8.82l-2-1.13-.58-2.33L4 5.88l.47 1.77-1.77.47.52 1.93 2.33-.62 2 1.13v2.89l-2 1.13-2.33-.62-.52 1.93 1.77.47L4 18.12l1.93.52.62-2.33 2-1.13L11 16.62v2.26l-1.71 1.71L10.71 22 12 20.71 13.29 22l1.41-1.41-1.7-1.71v-2.26l2.5-1.45 2 1.13.62 2.33 1.88-.51-.47-1.77 1.77-.47zM9.5 10.56 12 9.11l2.5 1.45v2.88L12 14.89l-2.5-1.45z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/snowman.svg��������������������������������0000664�0000000�0000000�00000001041�14753064456�0025606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 17a5 5 0 0 1-5 5 5 5 0 0 1-5-5c0-1.5.65-2.83 1.69-3.75C8.26 12.61 8 11.83 8 11v-.41L5.04 8.87l-.21-.16-2.54.68-.26-.96 2.21-.59-1.98-1.15.5-.87 1.98 1.15-.59-2.22.96-.25.69 2.54.24.1 2.69 1.55a3.9 3.9 0 0 1 1.49-1.27C9.5 6.87 9 6 9 5a3 3 0 0 1 3-3 3 3 0 0 1 3 3c0 1-.5 1.87-1.22 2.42.6.29 1.11.73 1.49 1.27l2.69-1.55.24-.1.69-2.54.96.25-.59 2.22 1.98-1.15.5.87-1.98 1.15 2.21.59-.26.96-2.54-.68-.21.16L16 10.59V11c0 .83-.26 1.61-.69 2.25C16.35 14.17 17 15.5 17 17"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/snowmobile.svg�����������������������������0000664�0000000�0000000�00000000661�14753064456�0026311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.34 17.93 18.4 16c1.1-.09 4.26-.47 4.57-2.64a.92.92 0 0 0-.19-.66c-.66-.88-2.9-3.63-7.78-7.7h-3v2h2l2 2-4 2-9-1-2 3 4.58 1.38-3 1.71c-.36.17-1.58.8-1.58 1.96 0 .35 0 .84.33 1.27.5.68 1.38.68 1.67.68h6c1.26 0 3.53-.87 3.93-4h2.66l2 2H15v2h5c1.65 0 3-1.35 3-3h-2c0 .43-.27.79-.66.93M9 18H3.25c.08-.05.16-.09.25-.13l4.72-2.7 2.7.83c-.34 1.84-1.64 2-1.92 2"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/snowshoeing.svg����������������������������0000664�0000000�0000000�00000001060�14753064456�0026470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.5 3.5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2M6.32 19.03l-1.14-1.47L4 18.5l2.38 3.04c.51.65 1.16 1.15 1.88 1.41.28.1.53.05.74-.11.28-.23.4-.7.1-1.07-.1-.1-.2-.17-.31-.22a3 3 0 0 1-1.14-.83l-.08-.1L11 18.2l.89-3.2L14 17v4.5h-2V23h3.87c.82 0 1.63-.21 2.26-.61.26-.16.37-.39.37-.64 0-.38-.3-.75-.77-.75-.13 0-.26.04-.37.1-.4.23-.86.37-1.36.4v-6l-2.11-2 .61-3C15.79 12 17.8 13 20 13v-2c-1.9 0-3.5-1-4.31-2.42l-1-1.58c-.4-.6-1-1-1.69-1-.76 0-1.42.34-6 2.28V13h2V9.58l1.79-.7L9.2 17z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/soccer-field.svg���������������������������0000664�0000000�0000000�00000000640�14753064456�0026467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 2h7v2.13c-1.76.46-3 2.05-3 3.87a4.01 4.01 0 0 0 3 3.87V18H4v-2h3V8H4zm9 0h7v2h-3v8h3v2h-7v-2.13c1.76-.46 3-2.05 3-3.87a4.01 4.01 0 0 0-3-3.87zm-9 4h1v4H4zm15 0h1v4h-1zm-6 .27c.62.36 1 1.02 1 1.73s-.38 1.37-1 1.73zm-2 0v3.46c-.62-.36-1-1.02-1-1.73s.38-1.37 1-1.73"/></svg>������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/soccer.svg���������������������������������0000664�0000000�0000000�00000001352�14753064456�0025407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.93 17.12-.8-1.36 1.46-4.37 1.41-.47 1 .75v.14c0 .07.03.13.03.19 0 1.97-.66 3.71-1.97 5.21zM9.75 15l-1.37-4.03L12 8.43l3.62 2.54L14.25 15zM12 20.03c-.88 0-1.71-.14-2.5-.42l-.69-1.51.66-1.1h5.11l.61 1.1-.69 1.51c-.79.28-1.62.42-2.5.42m-6.06-2.82c-.53-.62-.99-1.45-1.38-2.46-.39-1.02-.59-1.94-.59-2.75 0-.06.03-.12.03-.19v-.14l1-.75 1.41.47 1.46 4.37-.8 1.36zM11 5.29v1.4L7 9.46l-1.34-.42-.42-1.36C5.68 7 6.33 6.32 7.19 5.66s1.68-1.09 2.46-1.31zm3.35-.94c.78.22 1.6.65 2.46 1.31S18.32 7 18.76 7.68l-.42 1.36-1.34.43-4-2.77V5.29zm-9.42.58C3 6.89 2 9.25 2 12s1 5.11 2.93 7.07S9.25 22 12 22s5.11-1 7.07-2.93S22 14.75 22 12s-1-5.11-2.93-7.07S14.75 2 12 2 6.89 3 4.93 4.93"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/social-distance-2-meters.svg���������������0000664�0000000�0000000�00000001054�14753064456�0030626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2m4 3.43c0-.81-.5-1.53-1.22-1.85C7.93 7.21 7 7 6 7s-1.93.21-2.78.58C2.5 7.9 2 8.62 2 9.43V10h8zM18 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2m4 3.43c0-.81-.5-1.53-1.22-1.85C19.93 7.21 19 7 18 7s-1.93.21-2.78.58C14.5 7.9 14 8.62 14 9.43V10h8zM19 17v-2H5v2l-3-3 3-3v2h14v-2l3 3zM9 20.5v.5h2v1H8v-1.5c0-.55.45-1 1-1h1V19H8v-1h2c.55 0 1 .45 1 1v.5c0 .55-.45 1-1 1zm7-1.5v3h-1v-3h-.5v2h-1v-2H13v3h-1v-3c0-.55.45-1 1-1h2c.55 0 1 .45 1 1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/social-distance-6-feet.svg�����������������0000664�0000000�0000000�00000001074�14753064456�0030260�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2m4 3.43c0-.81-.5-1.53-1.22-1.85C7.93 7.21 7 7 6 7s-1.93.21-2.78.58C2.5 7.9 2 8.62 2 9.43V10h8zM18 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2m4 3.43c0-.81-.5-1.53-1.22-1.85C19.93 7.21 19 7 18 7s-1.93.21-2.78.58C14.5 7.9 14 8.62 14 9.43V10h8zM19 17v-2H5v2l-3-3 3-3v2h14v-2l3 3zm-9 2v-1H7.5c-.28 0-.5.22-.5.5v3c0 .28.22.5.5.5h2c.28 0 .5-.22.5-.5V20c0-.28-.22-.5-.5-.5H8V19zm-1 1.5v.5H8v-.5zm8.5-1.5h-1v3h-1v-3h-1v-1h3zm-5 0v.5h1v1h-1V22h-1v-4H14v1z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sofa-outline.svg���������������������������0000664�0000000�0000000�00000000774�14753064456�0026545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 9V7c0-1.65-1.35-3-3-3h-4c-.77 0-1.47.3-2 .78-.53-.48-1.23-.78-2-.78H6C4.35 4 3 5.35 3 7v2c-1.65 0-3 1.35-3 3v5c0 1.65 1.35 3 3 3v2h2v-2h14v2h2v-2c1.65 0 3-1.35 3-3v-5c0-1.65-1.35-3-3-3m-7-3h4c.55 0 1 .45 1 1v2.78c-.61.55-1 1.34-1 2.22v2h-5V7c0-.55.45-1 1-1M5 7c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v7H6v-2c0-.88-.39-1.67-1-2.22zm17 10c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v4h16v-4c0-.55.45-1 1-1s1 .45 1 1z"/></svg>����mkdocs-material-9.6.4/material/templates/.icons/material/sofa-single-outline.svg��������������������0000664�0000000�0000000�00000000641�14753064456�0030015�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 9V7c0-1.65-1.35-3-3-3H8C6.35 4 5 5.35 5 7v2c-1.65 0-3 1.35-3 3v5c0 1.65 1.35 3 3 3v2h2v-2h10v2h2v-2c1.65 0 3-1.35 3-3v-5c0-1.65-1.35-3-3-3M7 7c0-.55.45-1 1-1h8c.55 0 1 .45 1 1v2.78c-.61.55-1 1.34-1 2.22v2H8v-2c0-.88-.39-1.67-1-2.22zm13 10c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v4h12v-4c0-.55.45-1 1-1s1 .45 1 1z"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sofa-single.svg����������������������������0000664�0000000�0000000�00000000441�14753064456�0026336�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 9.15V7c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2v2.16c-1.16.41-2 1.51-2 2.81V14H7v-2.04c0-1.29-.84-2.4-2-2.81M20 10c-1.1 0-2 .9-2 2v3H6v-3a2 2 0 1 0-4 0v5c0 1.1.9 2 2 2v2h2v-2h12v2h2v-2c1.1 0 2-.9 2-2v-5c0-1.1-.9-2-2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sofa.svg�����������������������������������0000664�0000000�0000000�00000000566�14753064456�0025067�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.5 7c0-1.11.89-2 2-2H18c1.1 0 2 .9 2 2v2.16c-1.16.41-2 1.51-2 2.81V14h-5.5zM6 11.96V14h5.5V7c0-1.11-.89-2-2-2H6c-1.1 0-2 .9-2 2v2.15c1.16.41 2 1.52 2 2.81m14.66-1.93c-.98.16-1.66 1.09-1.66 2.09V15H5v-3a2 2 0 1 0-4 0v5c0 1.1.9 2 2 2v2h2v-2h14v2h2v-2c1.1 0 2-.9 2-2v-5c0-1.21-1.09-2.18-2.34-1.97"/></svg>������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/solar-panel-large.svg����������������������0000664�0000000�0000000�00000000501�14753064456�0027431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h3V3H3zm5-3v3h3V3zm5 0v3h3V3zm5 0v3h3V3zm3 5h-3v3h3zm0 5h-3v3h3zm-5 3v-3h-3v3zm-5 0v-3H8v3zm-5 0v-3H3v3zm-3-5h3V8H3zm10-3v3h3V8zM8 8v3h3V8zM3 1h18a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2h-6v3h3v2h-5v-5h-2v5H6v-2h3v-3H3a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/solar-panel.svg����������������������������0000664�0000000�0000000�00000000345�14753064456�0026347�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-5v4h3v2h-5v-6h-2v6H6v-2h3v-4H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m0 2v4h7V4zm0 10h7v-4H4zm16 0v-4h-7v4zm0-10h-7v4h7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/solar-power-variant-outline.svg������������0000664�0000000�0000000�00000000555�14753064456�0031526�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 12H4L2 22h20zm-1.64 2 .4 2H13v-2zM11 14v2H5.24l.4-2zm-6.16 4H11v2H4.44zM13 20v-2h6.16l.4 2zM11 8h2v3h-2zm4.76-.79 1.42-1.42 2.12 2.12-1.41 1.42zm-11.05.7 2.12-2.12 1.41 1.42-2.12 2.12zM3 2h3v2H3zm15 0h3v2h-3zm-6 5c2.76 0 5-2.24 5-5h-2c0 1.65-1.35 3-3 3S9 3.65 9 2H7c0 2.76 2.24 5 5 5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/solar-power-variant.svg��������������������0000664�0000000�0000000�00000000463�14753064456�0030047�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.33 16H11v-3H4zM13 16h7.67L20 13h-7zm8.11 2H13v4h9zM2 22h9v-4H2.89zm9-14h2v3h-2zm4.76-.79 1.42-1.42 2.12 2.12-1.41 1.42zm-11.05.7 2.12-2.12 1.41 1.42-2.12 2.12zM3 2h3v2H3zm15 0h3v2h-3zm-6 5c2.76 0 5-2.24 5-5H7c0 2.76 2.24 5 5 5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/solar-power.svg����������������������������0000664�0000000�0000000�00000000375�14753064456�0026407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.45 2v3.55L15 3.77zm-1 6L8 10.46l3.75 1.25zM2 11.45 3.77 15l1.78-3.55zM10 2H2v8c.57.17 1.17.25 1.77.25 3.58.01 6.49-2.9 6.5-6.5-.01-.59-.1-1.18-.27-1.75m7 20v-6h-3l5-9v6h3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/soldering-iron.svg�������������������������0000664�0000000�0000000�00000000602�14753064456�0027061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.86 4.03 2.03 6.86l3.18 3.18v2.83l1.42 1.41 5.65-5.65-1.41-1.42H8.04zM17 6v1.5c1 0 1.85.83 1.85 1.85S18 11.2 17 11.2v1.5c2.24 0 4 1.83 4 4.07V21h1.5v-4.24c0-2.22-1.28-4.14-3.15-5.03.62-.61 1-1.45 1-2.38C20.35 7.5 18.85 6 17 6m-5.07 5.1L9.1 13.93l4.95 4.95.71-.71 2.12 2.12L19 21l-.71-2.12-2.12-2.12.71-.71z"/></svg>������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/solid.svg����������������������������������0000664�0000000�0000000�00000000132�14753064456�0025236�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h24v24H0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sony-playstation.svg�����������������������0000664�0000000�0000000�00000001117�14753064456�0027465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 4.27c1.38.26 3.4.87 4.5 1.23 2.75.95 3.69 2.13 3.69 4.79 0 2.6-1.6 3.58-3.64 2.6V8.05c0-.55-.1-1.08-.64-1.23-.41-.13-.65.25-.65.81v12.1L9.5 18.69zm3.87 13.35 5.25-1.87c.6-.21.69-.51.21-.67-.49-.16-1.36-.11-1.96.1l-3.5 1.23v-1.96l.21-.07s1.01-.38 2.42-.51c1.43-.16 3.17.02 4.53.53 1.54.49 1.72 1.21 1.33 1.7-.4.5-1.36.85-1.36.85l-7.13 2.55zm-9.87-.2C1.93 17 1.66 16.05 2.38 15.5c.67-.5 1.8-.85 1.8-.85L8.86 13v1.88L5.5 16.09c-.6.21-.69.51-.21.67s1.36.12 1.95-.1l1.62-.58v1.69l-.32.06c-1.62.26-3.34.17-5.04-.41"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sort-alphabetical-ascending-variant.svg����0000664�0000000�0000000�00000000430�14753064456�0033116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.25 5 3.25-3.25L15.75 5zm-.36 9.3H6L5.28 17H2.91L6 7h3l3.13 10H9.67zm-2.56-1.62h2.23l-.63-2.12-.26-.97-.25-.96h-.03l-.22.97-.24.98zM13.05 17v-1.26l4.75-6.77v-.06h-4.3V7h7.23v1.34L16.09 15v.08h4.71V17z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sort-alphabetical-ascending.svg������������0000664�0000000�0000000�00000000310�14753064456�0031451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 17h3l-4 4-4-4h3V3h2m-8 10v2l-3.33 4H11v2H5v-2l3.33-4H5v-2M9 3H7c-1.1 0-2 .9-2 2v6h2V9h2v2h2V5a2 2 0 0 0-2-2m0 4H7V5h2Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sort-alphabetical-descending-variant.svg���0000664�0000000�0000000�00000000433�14753064456�0033271�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.75 19-3.25 3.25L9.25 19zm-6.86-4.7H6L5.28 17H2.91L6 7h3l3.13 10H9.67zm-2.56-1.62h2.23l-.63-2.12-.26-.97-.25-.96h-.03l-.22.97-.24.98zM13.05 17v-1.26l4.75-6.77v-.06h-4.3V7h7.23v1.34L16.09 15v.08h4.71V17z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sort-alphabetical-descending.svg�����������0000664�0000000�0000000�00000000307�14753064456�0031627�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 7h3l-4-4-4 4h3v14h2m-8-8v2l-3.33 4H11v2H5v-2l3.33-4H5v-2M9 3H7c-1.1 0-2 .9-2 2v6h2V9h2v2h2V5a2 2 0 0 0-2-2m0 4H7V5h2Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sort-alphabetical-variant.svg��������������0000664�0000000�0000000�00000000463�14753064456�0031173�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.25 5 3.25-3.25L15.75 5zm6.5 14-3.25 3.25L9.25 19zm-6.86-4.7H6L5.28 17H2.91L6 7h3l3.13 10H9.67zm-2.56-1.62h2.23l-.63-2.12-.26-.97-.25-.96h-.03l-.22.97-.24.98zM13.05 17v-1.26l4.75-6.77v-.06h-4.3V7h7.23v1.34L16.09 15v.08h4.71V17z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sort-ascending.svg�������������������������0000664�0000000�0000000�00000000206�14753064456�0027046�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 17h3l-4 4-4-4h3V3h2M2 17h10v2H2M6 5v2H2V5m0 6h7v2H2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sort-bool-ascending-variant.svg������������0000664�0000000�0000000�00000000517�14753064456�0031446�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 17h3l-4 4-4-4h3V3h2zM9 13H5c-1.11 0-2 .89-2 2v4c0 1.11.89 2 2 2h4c1.11 0 2-.89 2-2v-4c0-1.11-.89-2-2-2m-2.73 6.5-2.53-2.55 1.07-1.05 1.47 1.49L9.2 14.5l1.06 1.05zM9 3H5c-1.11 0-2 .89-2 2v4c0 1.11.89 2 2 2h4c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2m0 6H5V5h4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sort-bool-ascending.svg��������������������0000664�0000000�0000000�00000000404�14753064456�0027777�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 17h3l-4 4-4-4h3V3h2zM7 3C4.79 3 3 4.79 3 7s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4m0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m0 4c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sort-bool-descending-variant.svg�����������0000664�0000000�0000000�00000000507�14753064456�0031615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 7h3l-4-4-4 4h3v14h2M5 13c-1.11 0-2 .89-2 2v4c0 1.11.89 2 2 2h4c1.11 0 2-.89 2-2v-4c0-1.11-.89-2-2-2m.2 1.5 1.06 1.05-3.99 3.95-2.53-2.55 1.07-1.05 1.47 1.49M5 3c-1.11 0-2 .89-2 2v4c0 1.11.89 2 2 2h4c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2M5 5h4v4H5Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sort-bool-descending.svg�������������������0000664�0000000�0000000�00000000403�14753064456�0030146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 7h3l-4-4-4 4h3v14h2M5 7c0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2-2 .9-2 2m2-4c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4m0 10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sort-calendar-ascending.svg����������������0000664�0000000�0000000�00000000346�14753064456�0030622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 17h3l-4 4-4-4h3V3h2zM8 16h3v-3H8zm5-11h-1V3h-2v2H6V3H4v2H3c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h10c1.11 0 2-.89 2-2V7c0-1.11-.89-2-2-2M3 18v-7h10v7z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sort-calendar-descending.svg���������������0000664�0000000�0000000�00000000350�14753064456�0030765�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 7h-3l4-4 4 4h-3v14h-2zM8 16h3v-3H8zm5-11h-1V3h-2v2H6V3H4v2H3c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h10c1.11 0 2-.89 2-2V7c0-1.11-.89-2-2-2M3 18v-7h10v7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sort-clock-ascending-outline.svg�����������0000664�0000000�0000000�00000000446�14753064456�0031622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 17h3l-4 4-4-4h3V3h2zM8 5c-3.86 0-7 3.13-7 7s3.13 7 7 7c3.86 0 7-3.13 7-7s-3.13-7-7-7m0 2.15c2.67 0 4.85 2.17 4.85 4.85S10.68 16.85 8 16.85 3.15 14.68 3.15 12 5.32 7.15 8 7.15M7 9v3.69l3.19 1.84.75-1.3-2.44-1.41V9"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sort-clock-ascending.svg�������������������0000664�0000000�0000000�00000000316�14753064456�0030141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 17h3l-4 4-4-4h3V3h2zM8 5c-3.86 0-7 3.13-7 7s3.13 7 7 7c3.86 0 7-3.13 7-7s-3.13-7-7-7m2.19 9.53L7 12.69V9h1.5v2.82l2.44 1.41z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sort-clock-descending-outline.svg����������0000664�0000000�0000000�00000000450�14753064456�0031765�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 7h-3l4-4 4 4h-3v14h-2zM8 5c-3.86 0-7 3.13-7 7s3.13 7 7 7c3.86 0 7-3.13 7-7s-3.13-7-7-7m0 2.15c2.67 0 4.85 2.17 4.85 4.85S10.68 16.85 8 16.85 3.15 14.68 3.15 12 5.32 7.15 8 7.15M7 9v3.69l3.19 1.84.75-1.3-2.44-1.41V9"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sort-clock-descending.svg������������������0000664�0000000�0000000�00000000320�14753064456�0030304�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 7h-3l4-4 4 4h-3v14h-2zM8 5c-3.86 0-7 3.13-7 7s3.13 7 7 7c3.86 0 7-3.13 7-7s-3.13-7-7-7m2.19 9.53L7 12.69V9h1.5v2.82l2.44 1.41z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sort-descending.svg������������������������0000664�0000000�0000000�00000000206�14753064456�0027216�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 7h3l-4-4-4 4h3v14h2M2 17h10v2H2M6 5v2H2V5m0 6h7v2H2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sort-numeric-ascending-variant.svg���������0000664�0000000�0000000�00000001765�14753064456�0032163�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.78 7c1.3.04 2.22.53 2.79 1.46.56.94.84 2.1.82 3.49.01 1.55-.3 2.78-.89 3.67-.62.88-1.55 1.35-2.79 1.38-1.26-.04-2.17-.5-2.75-1.44-.58-.93-.87-2.11-.87-3.56s.3-2.64.91-3.56C5.59 7.5 6.5 7.04 7.78 7m-.03 1.63c-.44 0-.79.27-1.05.83-.26.54-.38 1.41-.38 2.54-.01 1.15.12 2 .37 2.54.26.56.62.83 1.08.83.92 0 1.39-1.13 1.4-3.37 0-2.23-.47-3.35-1.42-3.37M13.33 17v-1.78l.43.02.54-.02 1.04-.19c.34-.11.66-.25.92-.45.33-.23.6-.5.81-.82.22-.31.37-.64.46-.98l-.03-.01c-.45.42-1.12.63-2.03.64-.85-.01-1.56-.26-2.13-.76s-.84-1.22-.88-2.15c.01-1 .35-1.81 1.01-2.47.67-.66 1.53-1 2.65-1.03 1.25.04 2.17.45 2.76 1.24.59.76.88 1.76.88 2.95-.01.96-.15 1.81-.44 2.57-.29.74-.68 1.37-1.2 1.88-.46.42-1.01.74-1.65.97q-.96.33-2.13.39zm2.73-8.37c-.41.01-.74.17-1 .48-.25.31-.38.73-.38 1.25 0 .44.12.8.35 1.1.24.31.6.46 1.08.47.32 0 .59-.07.81-.19.22-.13.38-.28.49-.46.09-.11.12-.31.12-.57.01-.55-.1-1.02-.33-1.43s-.61-.63-1.14-.65M9.25 5l3.25-3.25L15.75 5z"/></svg>�����������mkdocs-material-9.6.4/material/templates/.icons/material/sort-numeric-ascending.svg�����������������0000664�0000000�0000000�00000000431�14753064456�0030506�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 17h3l-4 4-4-4h3V3h2zM9 13H7c-1.1 0-2 .9-2 2v1a2 2 0 0 0 2 2h2v1H5v2h4c1.11 0 2-.89 2-2v-4a2 2 0 0 0-2-2m0 3H7v-1h2zM9 3H7c-1.1 0-2 .9-2 2v4a2 2 0 0 0 2 2h2c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m0 6H7V5h2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sort-numeric-descending-variant.svg��������0000664�0000000�0000000�00000001770�14753064456�0032327�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.78 7c1.3.04 2.22.53 2.79 1.46.56.94.84 2.1.82 3.49.01 1.55-.3 2.78-.89 3.67-.62.88-1.55 1.35-2.79 1.38-1.26-.04-2.17-.5-2.75-1.44-.58-.93-.87-2.11-.87-3.56s.3-2.64.91-3.56C5.59 7.5 6.5 7.04 7.78 7m-.03 1.63c-.44 0-.79.27-1.05.83-.26.54-.38 1.41-.38 2.54-.01 1.15.12 2 .37 2.54.26.56.62.83 1.08.83.92 0 1.39-1.13 1.4-3.37 0-2.23-.47-3.35-1.42-3.37M13.33 17v-1.78l.43.02.54-.02 1.04-.19c.34-.11.66-.25.92-.45.33-.23.6-.5.81-.82.22-.31.37-.64.46-.98l-.03-.01c-.45.42-1.12.63-2.03.64-.85-.01-1.56-.26-2.13-.76s-.84-1.22-.88-2.15c.01-1 .35-1.81 1.01-2.47.67-.66 1.53-1 2.65-1.03 1.25.04 2.17.45 2.76 1.24.59.76.88 1.76.88 2.95-.01.96-.15 1.81-.44 2.57-.29.74-.68 1.37-1.2 1.88-.46.42-1.01.74-1.65.97q-.96.33-2.13.39zm2.73-8.37c-.41.01-.74.17-1 .48-.25.31-.38.73-.38 1.25 0 .44.12.8.35 1.1.24.31.6.46 1.08.47.32 0 .59-.07.81-.19.22-.13.38-.28.49-.46.09-.11.12-.31.12-.57.01-.55-.1-1.02-.33-1.43s-.61-.63-1.14-.65M15.75 19l-3.25 3.25L9.25 19z"/></svg>��������mkdocs-material-9.6.4/material/templates/.icons/material/sort-numeric-descending.svg����������������0000664�0000000�0000000�00000000424�14753064456�0030660�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 7h3l-4-4-4 4h3v14h2M9 21H5v-2h4v-1H7a2 2 0 0 1-2-2v-1c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v4c0 1.11-.89 2-2 2m0-6H7v1h2M7 3h2a2 2 0 0 1 2 2v4c0 1.11-.89 2-2 2H7a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2m0 6h2V5H7Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sort-numeric-variant.svg�������������������0000664�0000000�0000000�00000002017�14753064456�0030221�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.78 7c1.3.04 2.22.53 2.79 1.46.56.94.84 2.1.82 3.49.01 1.55-.3 2.78-.89 3.67-.62.88-1.55 1.35-2.79 1.38-1.26-.04-2.17-.5-2.75-1.44-.58-.93-.87-2.11-.87-3.56s.3-2.64.91-3.56C5.59 7.5 6.5 7.04 7.78 7m-.03 1.63c-.44 0-.79.27-1.05.83-.26.54-.38 1.41-.38 2.54-.01 1.15.12 2 .37 2.54.26.56.62.83 1.08.83.92 0 1.39-1.13 1.4-3.37 0-2.23-.47-3.35-1.42-3.37M13.33 17v-1.78l.43.02.54-.02 1.04-.19c.34-.11.66-.25.92-.45.33-.23.6-.5.81-.82.22-.31.37-.64.46-.98l-.03-.01c-.45.42-1.12.63-2.03.64-.85-.01-1.56-.26-2.13-.76s-.84-1.22-.88-2.15c.01-1 .35-1.81 1.01-2.47.67-.66 1.53-1 2.65-1.03 1.25.04 2.17.45 2.76 1.24.59.76.88 1.76.88 2.95-.01.96-.15 1.81-.44 2.57-.29.74-.68 1.37-1.2 1.88-.46.42-1.01.74-1.65.97q-.96.33-2.13.39zm2.73-8.37c-.41.01-.74.17-1 .48-.25.31-.38.73-.38 1.25 0 .44.12.8.35 1.1.24.31.6.46 1.08.47.32 0 .59-.07.81-.19.22-.13.38-.28.49-.46.09-.11.12-.31.12-.57.01-.55-.1-1.02-.33-1.43s-.61-.63-1.14-.65M9.25 5l3.25-3.25L15.75 5zm6.5 14-3.25 3.25L9.25 19z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sort-reverse-variant.svg�������������������0000664�0000000�0000000�00000000161�14753064456�0030230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 11h12v2H3m0 5v-2h18v2M3 6h6v2H3Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sort-variant-lock-open.svg�����������������0000664�0000000�0000000�00000000473�14753064456�0030452�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 17.3v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-2.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5v.5h-1.3v-.5c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V16h4.3c.6 0 1.2.6 1.2 1.3M3 13v-2h12v2zm0-7h18v2H3zm0 12v-2h6v2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sort-variant-lock.svg����������������������0000664�0000000�0000000�00000000471�14753064456�0027511�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.8 16v-1.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V16c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3m-1.3 0h-3v-1.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3zM3 13v-2h12v2zm0-7h18v2H3zm0 12v-2h6v2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sort-variant-off.svg�����������������������0000664�0000000�0000000�00000000303�14753064456�0027325�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.84 22.73 11.11 13H3v-2h6.11l-3-3H3V6h1.11l-3-3 1.28-1.27 19.72 19.73zM15 11h-.8l.8.8zm6-3V6H9.2l2 2zM3 18h6v-2H3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sort-variant-remove.svg��������������������0000664�0000000�0000000�00000000353�14753064456�0030055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 13h12v-2H3m0-5v2h18V6M3 18h6v-2H3zm19.54-1.12L20.41 19l2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.41-1.42L17.59 19l-2.12-2.12 1.41-1.41L19 17.59l2.12-2.13z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sort-variant.svg���������������������������0000664�0000000�0000000�00000000163�14753064456�0026561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 13h12v-2H3m0-5v2h18V6M3 18h6v-2H3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sort.svg�����������������������������������0000664�0000000�0000000�00000000223�14753064456�0025114�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18 21-4-4h3V7h-3l4-4 4 4h-3v10h3M2 19v-2h10v2M2 13v-2h7v2M2 7V5h4v2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/soundbar.svg�������������������������������0000664�0000000�0000000�00000000707�14753064456�0025751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 8c-1.1 0-2 .9-2 2v4a2 2 0 0 0 2 2h16c1.11 0 2-.89 2-2v-4a2 2 0 0 0-2-2M9 10a2 2 0 0 1 2 2c0 1.11-.89 2-2 2a2 2 0 1 1 0-4m6 0a2 2 0 0 1 2 2c0 1.11-.89 2-2 2a2 2 0 1 1 0-4M5 11c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m4 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m6 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m4 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1"/></svg>���������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/soundcloud.svg�����������������������������0000664�0000000�0000000�00000001157�14753064456�0026313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.56 8.87V17h8.76c1.85-.13 2.68-1.27 2.68-2.67 0-1.48-1.12-2.67-2.62-2.67-.38 0-.7.08-1.03.22-.24-2.34-2.23-4.17-4.68-4.17-1.17 0-2.28.44-3.11 1.16m-.88 1.02c-.3-.18-.62-.32-.97-.39V17h1.39V9.34c-.15.16-.29.36-.42.55m-2.35-.54V17h.92V9.38c-.19-.03-.38-.04-.58-.04-.12 0-.23 0-.34.01M6.5 10v7h.91V9.54c-.33.11-.64.27-.91.46m-1.67 2.5c-.06 0-.12-.06-.19-.09V17h.92v-6.14c-.37.48-.62 1.05-.73 1.64m-2.04-.28v4.69c.21.06.45.09.71.09h.22v-4.86c-.08-.01-.16-.02-.22-.02-.26 0-.5.04-.71.1M1 14.56c0 .75.34 1.41.87 1.86v-3.71c-.53.44-.87 1.11-.87 1.85"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/source-branch-check.svg��������������������0000664�0000000�0000000�00000001160�14753064456�0027734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 14c-3.36 0-4.46 1.35-4.82 2.24A3.002 3.002 0 0 1 7 22c-1.66 0-3-1.34-3-3 0-1.31.83-2.42 2-2.83V7.83A2.99 2.99 0 0 1 4 5c0-1.66 1.34-3 3-3s3 1.34 3 3c0 1.31-.83 2.42-2 2.83v5.29c.88-.65 2.16-1.12 4-1.12 2.67 0 3.56-1.34 3.85-2.23A3.01 3.01 0 0 1 14 7c0-1.66 1.34-3 3-3s3 1.34 3 3c0 1.34-.88 2.5-2.09 2.86C17.65 11.29 16.68 14 13 14m-6 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1M7 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m10 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m-.25 15.16-2.75-3L15.16 17l1.59 1.59L20.34 15l1.16 1.41z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/source-branch-minus.svg��������������������0000664�0000000�0000000�00000001105�14753064456�0030011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 14c-3.36 0-4.46 1.35-4.82 2.24A3.002 3.002 0 0 1 7 22c-1.66 0-3-1.34-3-3 0-1.31.83-2.42 2-2.83V7.83A2.99 2.99 0 0 1 4 5c0-1.66 1.34-3 3-3s3 1.34 3 3c0 1.31-.83 2.42-2 2.83v5.29c.88-.65 2.16-1.12 4-1.12 2.67 0 3.56-1.34 3.85-2.23A3.01 3.01 0 0 1 14 7c0-1.66 1.34-3 3-3s3 1.34 3 3c0 1.34-.88 2.5-2.09 2.86C17.65 11.29 16.68 14 13 14m-6 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1M7 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m10 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m-3 11v2h8v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/source-branch-plus.svg���������������������0000664�0000000�0000000�00000001127�14753064456�0027645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 14c-3.36 0-4.46 1.35-4.82 2.24A3.002 3.002 0 0 1 7 22c-1.66 0-3-1.34-3-3 0-1.31.83-2.42 2-2.83V7.83A2.99 2.99 0 0 1 4 5c0-1.66 1.34-3 3-3s3 1.34 3 3c0 1.31-.83 2.42-2 2.83v5.29c.88-.65 2.16-1.12 4-1.12 2.67 0 3.56-1.34 3.85-2.23A3.01 3.01 0 0 1 14 7c0-1.66 1.34-3 3-3s3 1.34 3 3c0 1.34-.88 2.5-2.09 2.86C17.65 11.29 16.68 14 13 14m-6 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1M7 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m10 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m0 8v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/source-branch-refresh.svg������������������0000664�0000000�0000000�00000001341�14753064456�0030316�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 14c-3.36 0-4.46 1.35-4.82 2.24A3.002 3.002 0 0 1 7 22c-1.66 0-3-1.34-3-3 0-1.31.83-2.42 2-2.83V7.83A2.99 2.99 0 0 1 4 5c0-1.66 1.34-3 3-3s3 1.34 3 3c0 1.31-.83 2.42-2 2.83v5.29c.88-.65 2.16-1.12 4-1.12 2.67 0 3.56-1.34 3.85-2.23A3.01 3.01 0 0 1 14 7c0-1.66 1.34-3 3-3s3 1.34 3 3c0 1.34-.88 2.5-2.09 2.86C17.65 11.29 16.68 14 13 14m-6 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1M7 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m10 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m1 8c1.1 0 2.1.4 2.8 1.2L22 14v4h-4l1.8-1.8c-.5-.4-1.1-.7-1.8-.7-1.4 0-2.5 1.1-2.5 2.5s1.1 2.5 2.5 2.5c.8 0 1.5-.4 2-1h1.7c-.6 1.5-2 2.5-3.7 2.5-2.2 0-4-1.8-4-4s1.8-4 4-4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/source-branch-remove.svg�������������������0000664�0000000�0000000�00000001256�14753064456�0030162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 14c-3.36 0-4.46 1.35-4.82 2.24A3.002 3.002 0 0 1 7 22c-1.66 0-3-1.34-3-3 0-1.31.83-2.42 2-2.83V7.83A2.99 2.99 0 0 1 4 5c0-1.66 1.34-3 3-3s3 1.34 3 3c0 1.31-.83 2.42-2 2.83v5.29c.88-.65 2.16-1.12 4-1.12 2.67 0 3.56-1.34 3.85-2.23A3.01 3.01 0 0 1 14 7c0-1.66 1.34-3 3-3s3 1.34 3 3c0 1.34-.88 2.5-2.09 2.86C17.65 11.29 16.68 14 13 14m-6 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1M7 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m10 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m3.12 8.46L18 16.59l-2.12-2.12-1.41 1.41L16.59 18l-2.12 2.12 1.41 1.42L18 19.41l2.12 2.13 1.42-1.42L19.41 18l2.13-2.12z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/source-branch-sync.svg���������������������0000664�0000000�0000000�00000001546�14753064456�0027643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 14c-3.36 0-4.46 1.35-4.82 2.24A3.002 3.002 0 0 1 7 22c-1.66 0-3-1.34-3-3 0-1.31.83-2.42 2-2.83V7.83A2.99 2.99 0 0 1 4 5c0-1.66 1.34-3 3-3s3 1.34 3 3c0 1.31-.83 2.42-2 2.83v5.29c.88-.65 2.16-1.12 4-1.12 2.67 0 3.56-1.34 3.85-2.23A3.01 3.01 0 0 1 14 7c0-1.66 1.34-3 3-3s3 1.34 3 3c0 1.34-.88 2.5-2.09 2.86C17.65 11.29 16.68 14 13 14m-6 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1M7 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m10 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m1 7v1.5c2.21 0 4 1.79 4 4 0 .82-.25 1.58-.67 2.21l-1.09-1.09c.17-.34.26-.72.26-1.12A2.5 2.5 0 0 0 18 16v1.5l-2.25-2.25-.03-.03c.06-.05.13-.09 2.28-2.22m0 11v-1.5c-2.21 0-4-1.79-4-4 0-.82.25-1.58.67-2.21l1.09 1.09c-.17.34-.26.72-.26 1.12A2.5 2.5 0 0 0 18 21v-1.5l2.25 2.25.03.03c-.06.05-.13.09-2.28 2.22"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/source-branch.svg��������������������������0000664�0000000�0000000�00000001133�14753064456�0026661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 14c-3.36 0-4.46 1.35-4.82 2.24C9.25 16.7 10 17.76 10 19a3 3 0 0 1-3 3 3 3 0 0 1-3-3c0-1.31.83-2.42 2-2.83V7.83A2.99 2.99 0 0 1 4 5a3 3 0 0 1 3-3 3 3 0 0 1 3 3c0 1.31-.83 2.42-2 2.83v5.29c.88-.65 2.16-1.12 4-1.12 2.67 0 3.56-1.34 3.85-2.23A3.01 3.01 0 0 1 14 7a3 3 0 0 1 3-3 3 3 0 0 1 3 3c0 1.34-.88 2.5-2.09 2.86C17.65 11.29 16.68 14 13 14m-6 4a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1M7 4a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m10 2a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/source-commit-end-local.svg����������������0000664�0000000�0000000�00000000323�14753064456�0030550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3m-1-4V3h2v2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/source-commit-end.svg����������������������0000664�0000000�0000000�00000000325�14753064456�0027462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 12a5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 4-4.9V3h2v4.1a5 5 0 0 1 4 4.9m-5-3a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/source-commit-local.svg��������������������0000664�0000000�0000000�00000000340�14753064456�0030003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3m-1-4V3h2v2zm0 16v-2h2v2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/source-commit-next-local.svg���������������0000664�0000000�0000000�00000000343�14753064456�0030762�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 12a5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 4-4.9V3h2v4.1a5 5 0 0 1 4 4.9m-5-3a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3m-1 12v-2h2v2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/source-commit-start-next-local.svg���������0000664�0000000�0000000�00000000325�14753064456�0032115�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3m-1 12v-2h2v2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/source-commit-start.svg��������������������0000664�0000000�0000000�00000000325�14753064456�0030051�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 7a5 5 0 0 1 5 5 5 5 0 0 1-4 4.9V21h-2v-4.1A5 5 0 0 1 7 12a5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/source-commit.svg��������������������������0000664�0000000�0000000�00000000324�14753064456�0026715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 12a5 5 0 0 1-4 4.9V21h-2v-4.1a5 5 0 0 1 0-9.8V3h2v4.1a5 5 0 0 1 4 4.9m-5-3a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/source-fork.svg����������������������������0000664�0000000�0000000�00000001326�14753064456�0026371�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2a3 3 0 0 1 3 3c0 1.28-.81 2.38-1.94 2.81.09.46.33 1.02.94 1.82 1 1.29 3 3.2 4 4.54 1-1.34 3-3.25 4-4.54.61-.8.85-1.36.94-1.82A3.015 3.015 0 0 1 15 5a3 3 0 0 1 3-3 3 3 0 0 1 3 3c0 1.32-.86 2.45-2.05 2.85-.08.52-.31 1.15-.95 1.98-1 1.34-3 3.25-4 4.55-.61.79-.85 1.35-.94 1.81C14.19 16.62 15 17.72 15 19a3 3 0 0 1-3 3 3 3 0 0 1-3-3c0-1.28.81-2.38 1.94-2.81-.09-.46-.33-1.02-.94-1.81-1-1.3-3-3.21-4-4.55-.64-.83-.87-1.46-.95-1.98A3.015 3.015 0 0 1 3 5a3 3 0 0 1 3-3m0 2a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m12 0a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m-6 14a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/source-merge.svg���������������������������0000664�0000000�0000000�00000001045�14753064456�0026525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 3a3 3 0 0 1 3 3c0 1.29-.81 2.39-1.96 2.81.54 5 5.04 5.96 7.15 6.15A2.985 2.985 0 0 1 18 13a3 3 0 0 1 3 3 3 3 0 0 1-3 3c-1.31 0-2.43-.84-2.84-2-4.25-.2-5.72-1.81-7.16-3.61v1.78c1.17.41 2 1.52 2 2.83a3 3 0 0 1-3 3 3 3 0 0 1-3-3c0-1.31.83-2.42 2-2.83V8.83A2.99 2.99 0 0 1 4 6a3 3 0 0 1 3-3m0 2a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m0 12a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m11-2a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/source-pull.svg����������������������������0000664�0000000�0000000�00000001037�14753064456�0026403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 3a3 3 0 0 1 3 3c0 1.31-.83 2.42-2 2.83v6.34c1.17.41 2 1.52 2 2.83a3 3 0 0 1-3 3 3 3 0 0 1-3-3c0-1.31.83-2.42 2-2.83V8.83A2.99 2.99 0 0 1 3 6a3 3 0 0 1 3-3m0 2a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m0 12a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m15 1a3 3 0 0 1-3 3 3 3 0 0 1-3-3c0-1.31.83-2.42 2-2.83V7h-2v3.25L10.75 6 15 1.75V5h2a2 2 0 0 1 2 2v8.17c1.17.41 2 1.52 2 2.83m-3-1a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/source-repository-multiple.svg�������������0000664�0000000�0000000�00000001461�14753064456�0031500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 0h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2m6.75 11.5c2.75 0 3.49-2.03 3.68-3.1.91-.29 1.57-1.14 1.57-2.15C20 5 19 4 17.75 4S15.5 5 15.5 6.25c0 .94.57 1.75 1.39 2.08C16.67 9 16 10 14 10c-1.38 0-2.34.35-3 .84V6.87c.87-.31 1.5-1.14 1.5-2.12 0-1.25-1-2.25-2.25-2.25S8 3.5 8 4.75c0 .98.63 1.81 1.5 2.12v6.26c-.87.31-1.5 1.14-1.5 2.12 0 1.25 1 2.25 2.25 2.25s2.25-1 2.25-2.25c0-.93-.56-1.75-1.37-2.07.28-.68 1.1-1.68 3.62-1.68m-4.5 3a.75.75 0 0 1 .75.75.75.75 0 0 1-.75.75.75.75 0 0 1-.75-.75.75.75 0 0 1 .75-.75m0-10.5a.75.75 0 0 1 .75.75.75.75 0 0 1-.75.75.75.75 0 0 1-.75-.75.75.75 0 0 1 .75-.75m7.5 1.5a.75.75 0 0 1 .75.75.75.75 0 0 1-.75.75.75.75 0 0 1-.75-.75.75.75 0 0 1 .75-.75M16 22v2H4a2 2 0 0 1-2-2V6h2v16z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/source-repository.svg����������������������0000664�0000000�0000000�00000001422�14753064456�0027644�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m6.75 11.5c2.75 0 3.49-2.03 3.68-3.1.91-.29 1.57-1.14 1.57-2.15C18 7 17 6 15.75 6S13.5 7 13.5 8.25c0 .94.57 1.75 1.39 2.08C14.67 11 14 12 12 12c-1.38 0-2.34.35-3 .84V8.87c.87-.31 1.5-1.14 1.5-2.12 0-1.25-1-2.25-2.25-2.25S6 5.5 6 6.75c0 .98.63 1.81 1.5 2.12v6.26c-.87.31-1.5 1.14-1.5 2.12 0 1.25 1 2.25 2.25 2.25s2.25-1 2.25-2.25c0-.93-.56-1.75-1.37-2.07.28-.68 1.1-1.68 3.62-1.68m-4.5 3a.75.75 0 0 1 .75.75.75.75 0 0 1-.75.75.75.75 0 0 1-.75-.75.75.75 0 0 1 .75-.75m0-10.5a.75.75 0 0 1 .75.75.75.75 0 0 1-.75.75.75.75 0 0 1-.75-.75.75.75 0 0 1 .75-.75m7.5 1.5a.75.75 0 0 1 .75.75.75.75 0 0 1-.75.75.75.75 0 0 1-.75-.75.75.75 0 0 1 .75-.75"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/soy-sauce-off.svg��������������������������0000664�0000000�0000000�00000000522�14753064456�0026607�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l7.5 7.5C7.5 12.6 6 15.3 6 17.6v2c0 1.4 2.7 2.3 6 2.3 3.1 0 5.7-.8 6-2l2.9 2.9zM12 15c-1.1 0-2-.9-2-2 0-.3.1-.6.2-.9l2.7 2.7c-.3.1-.6.2-.9.2M8.3 3.5h-.8V2h9v1.5h-.8L14.8 6h-.6c-.1.3-.3.8-.3 1.5 0 .9 2 3.5 3.2 6.4l-7-7q-.15-.6-.3-.9h-.6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/soy-sauce.svg������������������������������0000664�0000000�0000000�00000000446�14753064456�0026044�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.9 7.5c0-.7.2-1.2.3-1.5h.6l.9-2.5h.8V2h-9v1.5h.8L9.2 6h.6q.3.45.3 1.5c0 1.3-4.1 6.2-4.1 10.1v2c0 1.4 2.7 2.3 6 2.3s6-.9 6-2.3v-2c0-3.9-4.1-8.8-4.1-10.1M12 15a2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/spa-outline.svg����������������������������0000664�0000000�0000000�00000000724�14753064456�0026373�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 9.63a14.2 14.2 0 0 0-3.5 2.63 13.7 13.7 0 0 0-3.5-2.63C8.74 6.86 9.92 4.14 12.06 2c2.12 2.12 3.25 4.84 3.44 7.63M12 15.45C14.15 12.17 17.82 10 22 10c0 10-9.32 11.88-10 12-.68-.11-10-2-10-12 4.18 0 7.85 2.17 10 5.45m.05-10.26c-.66 1.04-1.12 2.19-1.37 3.39l1.32.97 1.35-.98c-.23-1.2-.67-2.35-1.3-3.38M12 19.97s6-.97 7.74-7.72C14 14 12 19.1 12 19.1S9 13 4.26 12.26C6 19 12 19.97 12 19.97"/></svg>��������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/spa.svg������������������������������������0000664�0000000�0000000�00000000450�14753064456�0024712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 9.63c-.19-2.79-1.32-5.51-3.44-7.63A12.25 12.25 0 0 0 8.5 9.63c1.29.68 2.47 1.56 3.5 2.63a14.2 14.2 0 0 1 3.5-2.63M12 15.45C9.85 12.17 6.18 10 2 10c0 10 9.32 11.89 10 12 .68-.12 10-2 10-12-4.18 0-7.85 2.17-10 5.45"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/space-invaders.svg�������������������������0000664�0000000�0000000�00000000342�14753064456�0027033�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 6H5V4h2zm10 0h2V4h-2zm6 6v6h-2v-4h-2v4h-2v-2H7v2H5v-4H3v4H1v-6h2v-2h2V8h2V6h2v2h6V6h2v2h2v2h2v2zm-8-2v2h2v-2zm-8 2h2v-2H7zm4 6H7v2h4zm6 0h-4v2h4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/space-station.svg��������������������������0000664�0000000�0000000�00000001170�14753064456�0026701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 19v2h-1.77c-.34.6-.99 1-1.73 1s-1.39-.4-1.73-1H8.5v-2h1.77c.17-.3.43-.56.73-.73V17h-1c-.55 0-1-.45-1-1v-3H6v4c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1h2c.55 0 1 .45 1 1v3h3V8c0-.55.45-1 1-1h1V6h-1c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1h-1v1h1c.55 0 1 .45 1 1v3h3V8c0-.55.45-1 1-1h2c.55 0 1 .45 1 1v9c0 .55-.45 1-1 1h-2c-.55 0-1-.45-1-1v-4h-3v3c0 .55-.45 1-1 1h-1v1.27c.3.17.56.43.73.73zM3 16v1h2v-1zm0-2v1h2v-1zm0-2v1h2v-1zm0-2v1h2v-1zm0-2v1h2V8zm16 8v1h2v-1zm0-2v1h2v-1zm0-2v1h2v-1zm0-2v1h2v-1zm0-2v1h2V8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/spade.svg����������������������������������0000664�0000000�0000000�00000000434�14753064456�0025225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.71 1.22-2.83 2.83c-.78.78-.78 2.04 0 2.82l1.42 1.42-4.24 4.24-2.48-2.47-6.36 6.36 6.36 6.36 6.36-6.36-2.47-2.48 4.24-4.24 1.42 1.42c.78.78 2.04.78 2.82 0l2.83-2.83zm0 2.83 4.24 4.24-1.41 1.41-4.24-4.24z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/speaker-bluetooth.svg����������������������0000664�0000000�0000000�00000000732�14753064456�0027567�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zm4 2a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m11 2v3.79L16.71 8.5l-.71.71L18.79 12 16 14.79l.71.71L19 13.21V17h.5l2.85-2.86L20.21 12l2.14-2.15L19.5 7zm1 1.91.94.94-.94.94zM8 11a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m12 .21.94.93-.94.94z"/></svg>��������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/speaker-message.svg������������������������0000664�0000000�0000000�00000000570�14753064456�0027206�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 3h5c.8 0 1.5.7 1.5 1.5v3c0 .8-.7 1.5-1.5 1.5H18l-3 3V4.5c0-.8.7-1.5 1.5-1.5M3 3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm4 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0 6c2.2 0 4 1.8 4 4s-1.8 4-4 4-4-1.8-4-4 1.8-4 4-4m0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/speaker-multiple.svg�����������������������0000664�0000000�0000000�00000000551�14753064456�0027414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 10a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3m0 8a5 5 0 0 1-5-5 5 5 0 0 1 5-5 5 5 0 0 1 5 5 5 5 0 0 1-5 5m0-16a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m5-2H9a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M5 22h12v2H5a2 2 0 0 1-2-2V4h2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/speaker-off.svg����������������������������0000664�0000000�0000000�00000000707�14753064456�0026336�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5.27 3.28 4 21 21.72 19.73 23l-1.46-1.46c-.34.29-.77.46-1.27.46H7a2 2 0 0 1-2-2V8.27zM12 18a3 3 0 0 1-3-3c0-.76.28-1.46.75-2l-1.42-1.4C7.5 12.5 7 13.69 7 15a5 5 0 0 0 5 5c1.31 0 2.5-.5 3.4-1.33L14 17.25c-.55.47-1.24.75-2 .75m5-3a5 5 0 0 0-5-5h-.18l-6.7-6.7C5.41 2.54 6.14 2 7 2h10a2 2 0 0 1 2 2v13.18l-2-2.01zM12 4c-1.11 0-2 .89-2 2a2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>���������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/speaker-pause.svg��������������������������0000664�0000000�0000000�00000000730�14753064456�0026675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.28 19.81c-.41.11-.83.19-1.28.19-2.76 0-5-2.24-5-5s2.24-5 5-5c1.89 0 3.5 1.06 4.37 2.61.79-.38 1.69-.61 2.63-.61V4a2 2 0 0 0-2-2H6c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h7.54c-.54-.63-1-1.37-1.26-2.19M11 4c1.11 0 2 .89 2 2s-.89 2-2 2a2 2 0 0 1-2-2c0-1.11.89-2 2-2m2.74 9.78A6 6 0 0 0 12 17.81c-.31.12-.64.19-1 .19-1.66 0-3-1.34-3-3s1.34-3 3-3c1.22 0 2.27.73 2.74 1.78M19 15h2v6h-2m-4-6h2v6h-2z"/></svg>����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/speaker-play.svg���������������������������0000664�0000000�0000000�00000000712�14753064456�0026525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 15v6l5-3zm-3.72 4.81c-.41.11-.83.19-1.28.19-2.76 0-5-2.24-5-5s2.24-5 5-5c1.89 0 3.5 1.06 4.37 2.61.79-.38 1.69-.61 2.63-.61V4a2 2 0 0 0-2-2H6c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h7.54c-.54-.63-1-1.37-1.26-2.19M11 4c1.11 0 2 .89 2 2s-.89 2-2 2a2 2 0 0 1-2-2c0-1.11.89-2 2-2m2.74 9.78A6 6 0 0 0 12 17.81c-.31.12-.64.19-1 .19-1.66 0-3-1.34-3-3s1.34-3 3-3c1.22 0 2.27.73 2.74 1.78"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/speaker-stop.svg���������������������������0000664�0000000�0000000�00000000714�14753064456�0026547�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.28 19.81c-.41.11-.83.19-1.28.19-2.76 0-5-2.24-5-5s2.24-5 5-5c1.89 0 3.5 1.06 4.37 2.61.79-.38 1.69-.61 2.63-.61V4a2 2 0 0 0-2-2H6c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h7.54c-.54-.63-1-1.37-1.26-2.19M11 4c1.11 0 2 .89 2 2s-.89 2-2 2a2 2 0 0 1-2-2c0-1.11.89-2 2-2m2.74 9.78A6 6 0 0 0 12 17.81c-.31.12-.64.19-1 .19-1.66 0-3-1.34-3-3s1.34-3 3-3c1.22 0 2.27.73 2.74 1.78M21 15h-6v6h6z"/></svg>����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/speaker-wireless.svg�����������������������0000664�0000000�0000000�00000001101�14753064456�0027406�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.07 19.07-1.41-1.41A7.96 7.96 0 0 0 21 12c0-2.22-.89-4.22-2.34-5.66l1.41-1.41A9.97 9.97 0 0 1 23 12c0 2.76-1.12 5.26-2.93 7.07m-2.83-2.83-1.41-1.41A4 4 0 0 0 17 12c0-1.11-.45-2.11-1.17-2.83l1.41-1.41A5.98 5.98 0 0 1 19 12c0 1.65-.67 3.15-1.76 4.24M4 3h8a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m4 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m0 6a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4m0 2a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/speaker.svg��������������������������������0000664�0000000�0000000�00000000521�14753064456�0025560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 12a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3m0 8a5 5 0 0 1-5-5 5 5 0 0 1 5-5 5 5 0 0 1 5 5 5 5 0 0 1-5 5m0-16a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2c0-1.11.89-2 2-2m5-2H7c-1.11 0-2 .89-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/spear.svg����������������������������������0000664�0000000�0000000�00000000174�14753064456�0025244�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 9h.41l-13 13L2 20.59l13-13V9zm0-5v4h4l2-6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/speedometer-medium.svg���������������������0000664�0000000�0000000�00000000743�14753064456�0027726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1.38 9.14 12.06c-.34 1.04-.1 2.23.72 3.06a3.01 3.01 0 0 0 4.25 0c.79-.79 1.05-1.92.78-2.91m-.29-8.86.62 2.33A7.99 7.99 0 0 1 20 13c0 2.21-.89 4.21-2.34 5.65h-.01a.996.996 0 0 0 0 1.41c.39.39 1.03.39 1.42.01A9.97 9.97 0 0 0 22 13c0-4.62-3.14-8.5-7.4-9.65m-5.2.01C5.15 4.5 2 8.4 2 13c0 2.76 1.12 5.26 2.93 7.07.39.38 1.02.38 1.41-.01a.996.996 0 0 0 0-1.41A7.95 7.95 0 0 1 4 13c0-3.35 1.94-6.14 4.79-7.35"/></svg>�����������������������������mkdocs-material-9.6.4/material/templates/.icons/material/speedometer-slow.svg�����������������������0000664�0000000�0000000�00000000773�14753064456�0027435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 16c1.66 0 3-1.34 3-3 0-1.12-.61-2.1-1.5-2.61L3.79 4.77l5.53 9.58c.5.98 1.51 1.65 2.68 1.65m0-13c-1.81 0-3.5.5-4.97 1.32l2.1 1.21C10 5.19 11 5 12 5c4.42 0 8 3.58 8 8 0 2.21-.89 4.21-2.34 5.65h-.01a.996.996 0 0 0 0 1.41c.39.39 1.03.39 1.42.01A9.97 9.97 0 0 0 22 13c0-5.5-4.5-10-10-10M2 13c0 2.76 1.12 5.26 2.93 7.07.39.38 1.02.38 1.41-.01a.996.996 0 0 0 0-1.41A7.95 7.95 0 0 1 4 13c0-1 .19-2 .54-2.9L3.33 8C2.5 9.5 2 11.18 2 13"/></svg>�����mkdocs-material-9.6.4/material/templates/.icons/material/speedometer.svg����������������������������0000664�0000000�0000000�00000000757�14753064456�0026455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 16a3 3 0 0 1-3-3c0-1.12.61-2.1 1.5-2.61l9.71-5.62-5.53 9.58c-.5.98-1.51 1.65-2.68 1.65m0-13c1.81 0 3.5.5 4.97 1.32l-2.1 1.21C14 5.19 13 5 12 5a8 8 0 0 0-8 8c0 2.21.89 4.21 2.34 5.65h.01c.39.39.39 1.02 0 1.41s-1.03.39-1.42.01A9.97 9.97 0 0 1 2 13 10 10 0 0 1 12 3m10 10c0 2.76-1.12 5.26-2.93 7.07-.39.38-1.02.38-1.41-.01a.996.996 0 0 1 0-1.41A7.95 7.95 0 0 0 20 13c0-1-.19-2-.54-2.9L20.67 8C21.5 9.5 22 11.18 22 13"/></svg>�����������������mkdocs-material-9.6.4/material/templates/.icons/material/spellcheck.svg�����������������������������0000664�0000000�0000000�00000000322�14753064456�0026242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.59 11.59-8.09 8.09L9.83 16l-1.41 1.41 5.08 5.09L23 13M6.43 11 8.5 5.5l2.07 5.5m1.88 5h2.09L9.43 3H7.57L2.46 16h2.09l1.12-3h5.64z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sphere-off.svg�����������������������������0000664�0000000�0000000�00000001302�14753064456�0026162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.39 1.73 1.11 3l2.95 2.95A9.9 9.9 0 0 0 2 12c0 5.5 4.5 10 10 10 2.28 0 4.37-.77 6.05-2.06l2.79 2.79 1.27-1.27zM5.5 7.39l1.08 1.08c-.71.15-1.4.33-2.01.58.24-.6.56-1.15.93-1.66M4 12c0-.77 1.76-1.44 4.33-1.78L12.11 14H12c-4.42 0-8-.89-8-2m8 8c-3.37 0-6.25-2.09-7.43-5.05C6.07 15.57 8.39 16 12 16c.63 0 1.33 0 2.05-.06l2.58 2.56c-1.31.95-2.9 1.5-4.63 1.5M8.19 5 6.72 3.5C8.25 2.56 10.06 2 12 2c5.5 0 10 4.5 10 10 0 1.94-.56 3.75-1.5 5.28L19 15.81c.17-.27.31-.56.43-.85-.3.12-.62.22-.96.31L16.8 13.6c1.94-.37 3.2-.95 3.2-1.6 0-1-2.94-1.83-6.77-1.97L11.21 8H12c3.61 0 5.93.43 7.43 1.05C18.25 6.09 15.37 4 12 4c-1.39 0-2.68.36-3.81 1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sphere.svg���������������������������������0000664�0000000�0000000�00000000642�14753064456�0025420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m0 12c-4.42 0-8-.89-8-2 0-1.1 3.58-2 8-2s8 .9 8 2c0 1.11-3.58 2-8 2m0-10c3.37 0 6.25 2.09 7.43 5.05C17.93 8.43 15.61 8 12 8c-2.2 0-5.27.19-7.43 1.05C5.75 6.09 8.63 4 12 4m0 16c-3.37 0-6.25-2.09-7.43-5.05C6.07 15.57 8.39 16 12 16c2.2 0 5.27-.19 7.43-1.05C18.25 17.91 15.37 20 12 20"/></svg>����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/spider-outline.svg�������������������������0000664�0000000�0000000�00000001654�14753064456�0027101�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 22h-2v-4.54l-1.56-1.34c-.12.71-.4 1.38-.82 1.94-.2.28-.44.53-.71.76-.81.68-1.84 1.07-2.91 1.07s-2.1-.39-2.91-1.07c-.27-.23-.51-.48-.71-.76a4.5 4.5 0 0 1-.82-1.94L6 17.46V22H4v-5.46l3.87-3.32-2.37.67-2.79 2.82-1.42-1.42 3.17-3.13 3-.85L5.6 11 1.4 7.8l1.2-1.6 3.8 2.85 2.69.45-3.2-3.19L7 1.76l2 .48-.89 3.45 1.13 1.14c.12-.27.26-.51.45-.73.15-.18.31-.35.51-.49.05-.04.1-.07.15-.11.08-.05.15-.1.24-.14.44-.23.91-.36 1.41-.36s.97.13 1.4.36c.1.04.17.09.25.14l.12.09c.2.14.38.31.53.49.2.22.34.48.46.75l1.1-1.14L15 2.24l2-.48 1.11 4.55-3.2 3.19 2.68-.45L21.4 6.2l1.2 1.6-4.19 3.2-1.91.26 3 .85 3.21 3.18-1.42 1.42-2.79-2.82-2.37-.67L20 16.54zm-5.53-6.21L15 12.5l-3-.5-3 .5.53 3.29c.1.59.4 1.12.85 1.5.45.39 1.03.6 1.62.6s1.17-.21 1.62-.6c.45-.38.75-.91.85-1.5M12 9.58l1.23-1.23-.31-.74a1 1 0 0 0-.37-.44A.97.97 0 0 0 12 7c-.2 0-.39.06-.55.17s-.29.26-.37.44l-.31.74z"/></svg>������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/spider-thread.svg��������������������������0000664�0000000�0000000�00000001007�14753064456�0026661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2v5.08A5.5 5.5 0 0 0 12 7a5.5 5.5 0 0 0-1 .08V2m5.9 13a5 5 0 0 1-.17.55L20 17.42V22h-2v-3.42l-2.26-1.29a4.94 4.94 0 0 1-7.48 0L6 18.58V22H4v-4.58l3.27-1.87A5 5 0 0 1 7.1 15H5.3l-2.75 1.83-1.1-1.66L4.7 13h2.4a5 5 0 0 1 .27-.88l-1.56-1-3.57.88-.48-2 4.43-1.08 2.31 1.53a5 5 0 0 1 7 0l2.27-1.53L22.24 10l-.48 2-3.57-.89-1.56 1a5 5 0 0 1 .27.89h2.4l3.25 2.16-1.1 1.66L18.7 15M11 14a1 1 0 1 0-1 1 1 1 0 0 0 1-1m4 0a1 1 0 1 0-1 1 1 1 0 0 0 1-1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/spider-web.svg�����������������������������0000664�0000000�0000000�00000002607�14753064456�0026176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.62 13.28 1.64 2.26c.03-.54.12-1.07.3-1.61.18-.56.44-1.07.74-1.52zM17.77 19c-.02-1.32.18-2.73.64-4.15.47-1.43 1.15-2.71 1.95-3.76l-2.04.66c-.78.51-1.45 1.39-1.82 2.48-.33 1.06-.32 2.13 0 2.99zm1.48 2q-.75.69-1.62 1.2l-.32-.44C15.9 21 14.04 20.5 12 20.5s-3.9.5-5.31 1.26l-.32.44q-.87-.51-1.62-1.2l.25-.31c.33-1.61.22-3.57-.42-5.55-.64-1.95-1.68-3.58-2.87-4.68l-.44-.14c.15-.66.36-1.32.62-1.91l.4.13c1.63-.17 3.45-.89 5.14-2.11 1.66-1.21 2.89-2.7 3.57-4.17v-.47l1-.04 1 .04v.42c.67 1.5 1.91 3.02 3.6 4.24 1.66 1.21 3.46 1.92 5.07 2.11l.44-.15c.26.59.47 1.25.62 1.91l-.5.18c-1.19 1.08-2.23 2.71-2.86 4.66-.63 1.93-.75 3.84-.45 5.41zM11 11.37V8.5c-.34.42-.74.82-1.22 1.17-.49.33-1.01.62-1.53.83zm0-7.15c-.75 1.09-1.76 2.13-3 3.02-1.22.9-2.54 1.54-3.82 1.92l1.97.64c.96.08 2.07-.24 3.04-.94.94-.68 1.57-1.59 1.81-2.5zm2 7.15 2.74-.87c-.51-.2-1.02-.47-1.49-.81-.49-.36-.91-.77-1.25-1.19zm6.8-2.21c-1.27-.38-2.57-1.01-3.8-1.9-1.23-.9-2.24-1.95-3-3.06v2.07c.22.94.86 1.9 1.84 2.61.93.68 1.99.99 2.93.94zm-9.42 4.12-2.74-.89c.31.45.56.96.74 1.52.19.59.28 1.15.3 1.71zm-6.8-2.21c.8 1.05 1.48 2.33 1.95 3.76.47 1.46.67 2.91.64 4.25l1.21-1.67c.38-.91.42-2.05.05-3.19-.36-1.1-1.03-1.98-1.82-2.49zM12 14.45l-1.65 2.27a6.3 6.3 0 0 1 3.3 0zm-4.16 5.73c1.24-.43 2.66-.68 4.16-.68s2.92.25 4.16.68l-1.28-1.76c-.72-.57-1.75-.92-2.88-.92s-2.16.35-2.88.92z"/></svg>�������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/spider.svg���������������������������������0000664�0000000�0000000�00000000664�14753064456�0025424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.29 16.71 1.42-1.42-3.21-3.18-3-.85 1.91-.26 4.19-3.2-1.2-1.6-3.81 2.85-2.68.45 3.2-3.19L17 1.76l-2 .48.86 3.45-1.1 1.14a3 3 0 0 0-5.52 0L8.11 5.69 9 2.24l-2-.48-1.11 4.55 3.2 3.19-2.69-.45L2.6 6.2 1.4 7.8 5.6 11l1.86.31-3 .85-3.17 3.13 1.42 1.42 2.79-2.82 2.37-.67L4 16.54V22h2v-4.54l1.56-1.34a4.5 4.5 0 0 0 8.88 0L18 17.46V22h2v-5.46l-3.87-3.32 2.37.67Z"/></svg>����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/spirit-level.svg���������������������������0000664�0000000�0000000�00000000243�14753064456�0026546�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 8H2v8h20zm-4 6v-4h2v4zm-7-2h2a2 2 0 0 0 2-2h2v4H7v-4h2a2 2 0 0 0 2 2m-7 2v-4h2v4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/spoon-sugar.svg����������������������������0000664�0000000�0000000�00000000365�14753064456�0026411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 13H3v-3h3zm4-3H7v3h3zM8 6H5v3h3zm10 6c-3.75 0-5.72 1.25-7 2H2c0 2.21 1.79 4 4 4h1c1 0 1.92-.37 2.62-1 1.44-1.22 3.06-2.26 4.93-2.64 1.06-.21 2.23-.36 3.45-.36h4v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/spotify.svg��������������������������������0000664�0000000�0000000�00000001066�14753064456�0025630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.9 10.9C14.7 9 9.35 8.8 6.3 9.75c-.5.15-1-.15-1.15-.6-.15-.5.15-1 .6-1.15 3.55-1.05 9.4-.85 13.1 1.35.45.25.6.85.35 1.3-.25.35-.85.5-1.3.25m-.1 2.8c-.25.35-.7.5-1.05.25-2.7-1.65-6.8-2.15-9.95-1.15-.4.1-.85-.1-.95-.5s.1-.85.5-.95c3.65-1.1 8.15-.55 11.25 1.35.3.15.45.65.2 1m-1.2 2.75c-.2.3-.55.4-.85.2-2.35-1.45-5.3-1.75-8.8-.95-.35.1-.65-.15-.75-.45-.1-.35.15-.65.45-.75 3.8-.85 7.1-.5 9.7 1.1.35.15.4.55.25.85M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/spotlight-beam.svg�������������������������0000664�0000000�0000000�00000000441�14753064456�0027046�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9 16.5.91-.91 5.22 5.21-.92.91zm6.5-6.5.91-.91 5.22 5.21-.92.91zM6.72 2.72l3.43 3.43-4 4-3.43-3.43c-.78-.78-.78-2.05 0-2.83l1.17-1.17c.78-.78 2.05-.78 2.83 0m7.85 4.78.71.71-7.07 7.07-.71-.71-.86-3.5 4.43-4.43z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/spotlight.svg������������������������������0000664�0000000�0000000�00000000666�14753064456�0026155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2 6 5.09 2.55C6.4 9.5 6 10.71 6 12s.4 2.5 1.09 3.45L2 18zm4-3h12l-2.55 4.09C14.5 6.4 13.29 6 12 6s-2.5.4-3.45 1.09zm16 3v12l-5.09-2.55C17.6 14.5 18 13.29 18 12s-.4-2.5-1.09-3.45zm-4 15H6l2.55-4.09C9.5 17.6 10.71 18 12 18s2.5-.4 3.45-1.09zM12 8a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>��������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/spray-bottle.svg���������������������������0000664�0000000�0000000�00000000406�14753064456�0026555�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.72 10.43C14.68 8.39 14.5 4.66 14.5 4H13v2H9V4H7c0-1.1.9-2 2-2h7v1c0 .08.04 4.63 1.78 6.37zM17 2v2h1V2zm-2 10c-2-2-2-5-2-5H9v2c0 1 0 1-1 2s-1 2-1 2v7c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/spray.svg����������������������������������0000664�0000000�0000000�00000000362�14753064456�0025267�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 4h2v2h-2zM7 3h2v2H7zm0 3h2v2H7zM6 8v2H4V8zm0-3v2H4V5zm0-3v2H4V2zm7 20a2 2 0 0 1-2-2V10a2 2 0 0 1 2-2V7h1V4h3v3h1v1a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2zm0-12v10h5V10z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sprinkler-fire.svg�������������������������0000664�0000000�0000000�00000000405�14753064456�0027063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 21v2h2v-2zm6 0H9v2h2zm-4-3v2h2v-2zm4-3v2H9v-2zm4 6h-2v2h2zm-4-3v2h2v-2zm4-3v2h-2v-2zm4 6h-2v2h2zm-4-3v2h2v-2zm1-7v2H8v-2h3V5h2v6zm5-10v2h-3v3l-4 4V7.2l2-2V3H8v2.2l2 2V10L6 6V3H3V1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sprinkler-variant.svg����������������������0000664�0000000�0000000�00000000412�14753064456�0027600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 10h4v12h-4zM7 9h2V7H7zM4 8h2V6H4zm0 3h2V9H4zm-3 2h2v-2H1zm0-6h2V5H1zm0 3h2V8H1zm17 1h2V9h-2zm3-1h2V8h-2zm0-5v2h2V5zm0 8h2v-2h-2zm-6-4h2V7h-2zm3-1h2V6h-2zm-8-1h.33L11 9h2l.67-2H14V6h-4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sprinkler.svg������������������������������0000664�0000000�0000000�00000000301�14753064456�0026133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7h2v2h-2zM5 22h4V10H5zm9-11h2V9h-2zm3-1h2V8h-2zm0-5v2h2V5zm-3 3h2V6h-2zm3 5h2v-2h-2zM5 7h.33L6 9h2l.67-2H9V6H5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sprout-outline.svg�������������������������0000664�0000000�0000000�00000000731�14753064456�0027142�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 4.1V2.3l-1.8-.2c-.1 0-.7-.1-1.7-.1-4.1 0-7.1 1.2-8.8 3.3C9.4 4.5 7.6 4 5.5 4c-1 0-1.7.1-1.7.1l-1.9.3.1 1.7c.1 3 1.6 8.7 6.8 8.7H9v3.4c-3.8.5-7 1.8-7 1.8v2h20v-2s-3.2-1.3-7-1.8V15c6.3-.1 8-7.2 8-10.9M12 18h-1v-5.6S10.8 9 8 9c0 0 1.5.8 1.9 3.7-.4.1-.8.1-1.1.1C4.2 12.8 4 6.1 4 6.1S4.6 6 5.5 6c1.9 0 5 .4 5.9 3.1C11.9 4.6 17 4 19.5 4c.9 0 1.5.1 1.5.1s0 9-6.3 9H14c0-2 2-5 2-5-3 1-3 4.9-3 4.9v5z"/></svg>���������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sprout.svg���������������������������������0000664�0000000�0000000�00000000375�14753064456�0025471�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 22v-2s5-2 10-2 10 2 10 2v2zm9.3-12.9c-1.2-3.9-7.3-3-7.3-3s.2 7.8 5.9 6.6C9.5 9.8 8 9 8 9c2.8 0 3 3.4 3 3.4V17h2v-4.2s0-3.9 3-4.9c0 0-2 3-2 5 7 .7 7-8.9 7-8.9s-8.9-1-9.7 5.1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/square-circle-outline.svg������������������0000664�0000000�0000000�00000000332�14753064456�0030342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 12c0-3.31-2.69-6-6-6s-6 2.69-6 6 2.69 6 6 6 6-2.69 6-6m-6-4a3.999 3.999 0 1 1 .002 8.002A3.999 3.999 0 0 1 12 8m8-4H4v16h16zm2-2v20H2V2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/square-circle.svg��������������������������0000664�0000000�0000000�00000000241�14753064456�0026664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4v16H4V4zm2-2H2v20h20zM12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/square-edit-outline.svg��������������������0000664�0000000�0000000�00000000444�14753064456�0030032�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7h-2v7H5V5h7V3zm12.78 1a.7.7 0 0 0-.48.2l-1.22 1.21 2.5 2.5L19.8 6.7c.26-.26.26-.7 0-.95L18.25 4.2c-.13-.13-.3-.2-.47-.2m-2.41 2.12L8 13.5V16h2.5l7.37-7.38z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/square-medium-outline.svg������������������0000664�0000000�0000000�00000000150�14753064456�0030357�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 10v4h-4v-4zm2-2H8v8h8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/square-medium.svg��������������������������0000664�0000000�0000000�00000000132�14753064456�0026702�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 8H8v8h8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/square-off-outline.svg���������������������0000664�0000000�0000000�00000000265�14753064456�0027660�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3 3 4.89V21h16.11l1.73 1.73zM5 19V6.89L17.11 19zM8.2 5l-2-2H21v14.8l-2-2V5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/square-off.svg�����������������������������0000664�0000000�0000000�00000000232�14753064456�0026175�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.84 22.73 19.11 21H3V4.89L1.11 3l1.28-1.27 19.72 19.73zM21 3H6.2L21 17.8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/square-opacity.svg�������������������������0000664�0000000�0000000�00000000471�14753064456�0027100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13v-2h2v2zm2-4V7h-2v2zm0-6h-2v2h2zm-4 12h2v-2h-2zm4 2v-2h-2v2zm-8 0v-2h2v-2h-2v-2h2V9h-2V7h2V5h-2V3H3v18h10v-2h2v-2zm2 4h2v-2h-2zm2-18h-2v2h2zm0 8h2V9h-2zm-2 6h2v-2h-2zm2 2h2v-2h-2zm4 2v-2h-2v2zM15 9h2V7h-2zm0 4h2v-2h-2zm2-8v2h2V5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/square-outline.svg�������������������������0000664�0000000�0000000�00000000150�14753064456�0027101�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h18v18H3zm2 2v14h14V5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/square-root-box.svg������������������������0000664�0000000�0000000�00000000471�14753064456�0027201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zm6.24 3H19v2h-6.24L10 18H8l-1.75-6H5v-2h2.75L9 14.28zM14 10.59l1.79 1.79 1.8-1.79L19 12l-1.79 1.79 1.79 1.8L17.59 17l-1.8-1.79L14 17l-1.41-1.41 1.79-1.8L12.59 12z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/square-root.svg����������������������������0000664�0000000�0000000�00000000377�14753064456�0026420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.76 16.83 14.59 14l-2.83-2.83 1.41-1.41L16 12.59l2.83-2.83 1.41 1.41L17.41 14l2.83 2.83-1.41 1.41L16 15.41l-2.83 2.83zM2 11h3l2.29 5.4L10 6h12v2H11.55L8.68 19H6.22l-2.54-6H2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/square-rounded-badge-outline.svg�����������0000664�0000000�0000000�00000000502�14753064456�0031600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 8C21.43 8 23 6.43 23 4.5S21.43 1 19.5 1 16 2.57 16 4.5 17.57 8 19.5 8m1.5 8V9.79q-.75.21-1.5.21H19v6c0 1.66-1.34 3-3 3H8c-1.66 0-3-1.34-3-3V8c0-1.66 1.34-3 3-3h6v-.5q0-.75.21-1.5H8C5.24 3 3 5.24 3 8v8c0 2.76 2.24 5 5 5h8c2.76 0 5-2.24 5-5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/square-rounded-badge.svg�������������������0000664�0000000�0000000�00000000425�14753064456�0030127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 8C21.43 8 23 6.43 23 4.5S21.43 1 19.5 1 16 2.57 16 4.5 17.57 8 19.5 8m0 2q.75 0 1.5-.21V16c0 2.76-2.24 5-5 5H8c-2.76 0-5-2.24-5-5V8c0-2.76 2.24-5 5-5h6.21Q14 3.75 14 4.5c0 3.04 2.46 5.5 5.5 5.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/square-rounded-outline.svg�����������������0000664�0000000�0000000�00000000366�14753064456�0030550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 3h8c2.76 0 5 2.24 5 5v8c0 2.76-2.24 5-5 5H8c-2.76 0-5-2.24-5-5V8c0-2.76 2.24-5 5-5m0 2C6.34 5 5 6.34 5 8v8c0 1.66 1.34 3 3 3h8c1.66 0 3-1.34 3-3V8c0-1.66-1.34-3-3-3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/square-rounded.svg�������������������������0000664�0000000�0000000�00000000243�14753064456�0027065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 3h8c2.76 0 5 2.24 5 5v8c0 2.76-2.24 5-5 5H8c-2.76 0-5-2.24-5-5V8c0-2.76 2.24-5 5-5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/square-small.svg���������������������������0000664�0000000�0000000�00000000134�14753064456�0026534�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 14v-4h4v4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/square-wave.svg����������������������������0000664�0000000�0000000�00000000157�14753064456�0026373�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2v10h2V4h7v18h11V12h-2v8h-7V2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/square.svg���������������������������������0000664�0000000�0000000�00000000132�14753064456�0025424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3v18h18V3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/squeegee.svg�������������������������������0000664�0000000�0000000�00000000225�14753064456�0025732�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 2v3H2V2zM2 8h5l2 2h1v10a2 2 0 0 0 2 2 2 2 0 0 0 2-2V10h1l2-2h5V6H2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ssh.svg������������������������������������0000664�0000000�0000000�00000000476�14753064456�0024734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.5 9c-.6 0-1 .5-1 1v1.75c0 .5.4 1 1 1H7v.75H3.5V15h4c.6 0 1-.5 1-1v-1.75c0-.5-.4-1-1-1H5v-.75h3.5V9zm6 0c-.6 0-1 .5-1 1v1.75c0 .5.4 1 1 1H13v.75H9.5V15h4c.6 0 1-.5 1-1v-1.75c0-.5-.4-1-1-1H11v-.75h3.5V9zm5 0v6H17v-2.5h2V15h1.5V9H19v2h-2V9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/stack-exchange.svg�������������������������0000664�0000000�0000000�00000000430�14753064456�0027012�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.9 10.72H20v3.31H3.9zm0-4.28H20v3.31H3.9zM17.5 2h-11C5.06 2 3.9 3.18 3.9 4.65v.85H20v-.85C20 3.18 18.88 2 17.5 2M3.9 15v.84c0 1.47 1.16 2.66 2.6 2.66h6.87V22l3.4-3.5h.73c1.44 0 2.61-1.19 2.61-2.66V15z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/stack-overflow.svg�������������������������0000664�0000000�0000000�00000000461�14753064456�0027077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.36 20.2v-5.38h1.79V22H3v-7.18h1.8v5.38zM6.77 14.32l.37-1.76 8.79 1.85-.37 1.76zm1.16-4.21.76-1.61 8.14 3.78-.76 1.62zm2.26-3.99 1.15-1.38 6.9 5.76-1.15 1.37zm4.45-4.25L20 9.08l-1.44 1.07-5.36-7.21zM6.59 18.41v-1.8h8.98v1.8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/stackpath.svg������������������������������0000664�0000000�0000000�00000001557�14753064456�0026122�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.91 8c-.87 0-1.59.2-2.15.61-.57.39-.85.92-.85 1.58s.24 1.18.71 1.53c.48.35 1.2.69 2.18 1 .47.16.8.32.98.47s.27.36.27.64c0 .24-.09.43-.27.58s-.46.22-.84.22c-.49 0-.85-.09-1.09-.28-.25-.19-.35-.51-.35-.96H1.72l-.01.03c-.01.83.29 1.47.95 1.91.64.45 1.4.67 2.28.67s1.56-.2 2.12-.58c.53-.39.8-.92.8-1.61 0-.67-.23-1.2-.67-1.58-.45-.39-1.11-.73-1.99-.97-.58-.21-.97-.38-1.2-.52-.19-.14-.29-.32-.29-.54 0-.24.1-.44.29-.6.22-.16.5-.24.87-.24s.66.1.87.29c.22.19.33.47.32.76H7.8l.02-.04c.02-.69-.25-1.26-.82-1.71C6.47 8.22 5.77 8 4.91 8M9 8.05v7.88h1.84v-2.7h1.12c.93 0 1.67-.23 2.22-.73.55-.45.82-1.08.82-1.86 0-.77-.27-1.39-.82-1.87q-.825-.72-2.22-.72zm8.24 0-2.74 7.88h1.72L19 8.05m1.5 0-2.71 7.88h1.71l2.79-7.88M10.84 9.46h1.12c.39 0 .7.11.9.34.21.2.31.51.31.85 0 .35-.1.63-.31.85-.2.21-.51.32-.9.32h-1.12"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/stadium-outline.svg������������������������0000664�0000000�0000000�00000000526�14753064456�0027256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 5 3 7V3zm11-2v4l4-2zm-7-1v4l4-2zm2 16h-2v4c-5.1-.1-9-1.4-9-3v-9c0-1.7 4.5-3 10-3s10 1.3 10 3v9c0 1.6-4 2.9-9 3zm-8-8c1.4.5 3.8 1 7 1s5.6-.5 7-1c0-.2-2.8-1-7-1s-7 .9-7 1m15 1.8c-1.8.7-4.7 1.2-8 1.2s-6.2-.5-8-1.2v6.8c.6.4 2.4 1 5 1.3V16h6v3.9c2.6-.3 4.4-.9 5-1.3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/stadium-variant.svg������������������������0000664�0000000�0000000�00000000622�14753064456�0027240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h2l3 2-3 2v1.33C8.47 8.12 10.18 8 12 8s3.53.12 5 .33V3h2l3 2-3 2v1.71c1.85.46 3 1.09 3 1.79 0 1.38-4.5 2.5-10 2.5S2 11.88 2 10.5c0-.7 1.15-1.33 3-1.79zm7 6.5c-3.31 0-5 .17-5 1s1.69 1 5 1 5-.17 5-1-1.69-1-5-1m0 5.25c3.81 0 7.2-.67 9.4-1.7L20 21h-5v-2a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v2H4l-1.4-7.95c2.2 1.03 5.59 1.7 9.4 1.7"/></svg>��������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/stadium.svg��������������������������������0000664�0000000�0000000�00000000400�14753064456�0025570�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 5 3 7V3zm11-2v4l4-2zm-7-1v4l4-2zm-6 8c1.4.5 3.8 1 7 1s5.6-.5 7-1c0-.2-2.8-1-7-1s-7 .9-7 1m10 7H9v4.9c-4.1-.4-7-1.5-7-2.9v-9c0-1.7 4.5-3 10-3s10 1.3 10 3v9c0 1.3-2.9 2.5-7 2.9z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/stairs-box.svg�����������������������������0000664�0000000�0000000�00000000310�14753064456�0026215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm9 4h5v2h-3v3h-3v3h-3v3H5v-2h3v-3h3v-3h3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/stairs-down.svg����������������������������0000664�0000000�0000000�00000000256�14753064456�0026405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 6h7v3h-4v4h-4v4h-4v4H3v-3h4v-4h4v-4h4zM4.83 8.34l5.51-5.51 1.83 1.83-5.51 5.51L8.5 12H3V6.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/stairs-up.svg������������������������������0000664�0000000�0000000�00000000255�14753064456�0026061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 6h7v3h-4v4h-4v4h-4v4H3v-3h4v-4h4v-4h4zm-4.83.66-5.51 5.51-1.83-1.83 5.51-5.51L6.5 3H12v5.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/stairs.svg���������������������������������0000664�0000000�0000000�00000000165�14753064456�0025437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 5v4h-4v4H7v4H3v3h7v-4h4v-4h4V8h4V5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/stamper.svg��������������������������������0000664�0000000�0000000�00000000273�14753064456�0025605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3a3 3 0 0 0-3 3c0 3 5 7-3 7a2 2 0 0 0-2 2v2h16v-2a2 2 0 0 0-2-2c-8 0-3-4-3-7 0-2-1.34-3-3-3M6 19v2h12v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/standard-definition.svg��������������������0000664�0000000�0000000�00000000366�14753064456�0030063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 7h3a3 3 0 0 1 3 3v4a3 3 0 0 1-3 3h-3zm3 8a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-1v6zM7 7h4v2H7v2h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5v-2h4v-2H7a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-box-multiple-outline.svg��������������0000664�0000000�0000000�00000000414�14753064456�0031174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 6v14h14v2H3c-.6 0-1-.4-1-1V6zm8.1 4.6-1.9-1.8 2.6-.4L14 6l1.2 2.4 2.6.4-1.9 1.9.4 2.6L14 12l-2.4 1.2zM8 2h12a2 2 0 0 1 2 2v12c0 1.11-.89 2-2 2H8a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2m0 2v12h12V4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-box-multiple.svg����������������������0000664�0000000�0000000�00000000400�14753064456�0027512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 6v14h14v2H3c-.6 0-1-.4-1-1V6zm4-4h12a2 2 0 0 1 2 2v12c0 1.11-.89 2-2 2H8a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2m8.3 11.3-.4-2.6 1.9-1.9-2.6-.4L14 6l-1.2 2.4-2.6.4 1.9 1.8-.5 2.6L14 12z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-box-outline.svg�����������������������0000664�0000000�0000000�00000000370�14753064456�0027344�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.58 17 12 14.84 8.42 17l.95-4.07-3.16-2.73 4.17-.36L12 6l1.62 3.83 4.17.36-3.16 2.73zM19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zM5 5v14h14V5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-box.svg�������������������������������0000664�0000000�0000000�00000000354�14753064456�0025671�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm-3.42 14-.95-4.08 3.16-2.73-4.17-.36L12 6l-1.62 3.84-4.17.36 3.16 2.73L8.42 17 12 14.84z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-check-outline.svg���������������������0000664�0000000�0000000�00000000425�14753064456�0027632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5.8 21 1.6-7L2 9.2l7.2-.6L12 2l2.8 6.6 7.2.6-3.2 2.8H18c-.7 0-1.4.1-2.1.4l2.2-1.9-4.4-.4-1.7-4-1.7 4-4.4.4 3.3 2.9-1 4.3 3.8-2.3.5.3c-.2.5-.4 1.1-.4 1.6zm12 .2-2.8-3 1.2-1.2 1.6 1.6 3.6-3.6 1.2 1.4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-check.svg�����������������������������0000664�0000000�0000000�00000000313�14753064456�0026151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5.8 21 1.6-7L2 9.2l7.2-.6L12 2l2.8 6.6 7.2.6-3.2 2.8H18c-3.1 0-5.6 2.3-6 5.3zm12 .2 4.8-4.8-1.3-1.4-3.6 3.6-1.5-1.6-1.2 1.2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-circle-outline.svg��������������������0000664�0000000�0000000�00000000452�14753064456�0030016�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.58 17.25.92-3.89-3-2.58 3.95-.37L12 6.8l1.55 3.65 3.95.33-3 2.58.92 3.89L12 15.19zM12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-circle.svg����������������������������0000664�0000000�0000000�00000000363�14753064456�0026342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.23 18 12 15.45 7.77 18l1.12-4.81-3.73-3.23 4.92-.42L12 5l1.92 4.53 4.92.42-3.73 3.23zM12 2C6.47 2 2 6.5 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-cog-outline.svg�����������������������0000664�0000000�0000000�00000001620�14753064456�0027323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.29 10.13-4.38.37 3.32 2.88-.99 4.28L12 15.39l.76.46c-.26.48-.44 1-.57 1.54l-.19-.12L5.82 21l1.63-7.03L2 9.24l7.19-.61L12 2l2.81 6.63 7.19.61L18.8 12a6.98 6.98 0 0 0-4.02 1.43l-.01-.05 3.32-2.88-4.38-.37L12 6.09zm13.54 10.51-1 1.73c-.07.13-.2.13-.33.13l-1.23-.5c-.27.18-.54.34-.84.47l-.19 1.32c-.02.12-.13.21-.24.21h-2c-.14 0-.24-.09-.26-.21l-.19-1.32c-.31-.12-.59-.29-.85-.47l-1.24.5c-.12 0-.25 0-.31-.13l-1-1.73a.26.26 0 0 1 .06-.32l1.06-.82a4.2 4.2 0 0 1 0-1l-1.06-.82a.25.25 0 0 1-.06-.32l1-1.73c.07-.13.2-.13.31-.13l1.24.5c.26-.18.55-.34.85-.47l.19-1.32A.26.26 0 0 1 18 14h2c.11 0 .22.09.23.21l.19 1.32c.31.12.58.29.85.47l1.23-.5c.13 0 .26 0 .32.13l1 1.73c.06.11.03.24-.06.32l-1.06.82c.03.17.04.33.04.5s-.02.33-.04.5l1.07.82c.09.08.12.21.06.32M20.5 19c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5.66 1.5 1.5 1.5c.83 0 1.5-.67 1.5-1.5"/></svg>����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-cog.svg�������������������������������0000664�0000000�0000000�00000001436�14753064456�0025653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.8 12c-3.21.1-5.89 2.37-6.61 5.39l-.19-.12L5.82 21l1.63-7.03L2 9.24l7.19-.62L12 2l2.81 6.62 7.19.62zm5.03 8.64-1 1.73c-.07.13-.2.13-.33.13l-1.23-.5c-.27.18-.54.34-.84.47l-.19 1.32c-.02.12-.13.21-.24.21h-2c-.14 0-.24-.09-.26-.21l-.19-1.32c-.31-.12-.59-.29-.85-.47l-1.24.5c-.12 0-.25 0-.31-.13l-1-1.73a.26.26 0 0 1 .06-.32l1.06-.82a4.2 4.2 0 0 1 0-1l-1.06-.82a.25.25 0 0 1-.06-.32l1-1.73c.07-.13.2-.13.31-.13l1.24.5c.26-.18.55-.34.85-.47l.19-1.32A.26.26 0 0 1 18 14h2c.11 0 .22.09.23.21l.19 1.32c.31.12.58.29.85.47l1.23-.5c.13 0 .26 0 .32.13l1 1.73c.06.11.03.24-.06.32l-1.06.82c.03.17.04.33.04.5s-.02.33-.04.5l1.07.82c.09.08.12.21.06.32M20.5 19c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5.66 1.5 1.5 1.5c.83 0 1.5-.67 1.5-1.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-crescent.svg��������������������������0000664�0000000�0000000�00000000406�14753064456�0026705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.3 2H12A10 10 0 0 0 2 12a10 10 0 0 0 10 10c3 0 4.7-1 6.5-2.5C13 21 8 17 8 12s5-9 10.5-7.5A8.56 8.56 0 0 0 12.3 2m4.5 4.2-1.5 3.5-3.7.3 2.9 2.5-.9 3.5 3.2-2 3.2 2-1-3.5 3-2.5-3.7-.3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-david.svg�����������������������������0000664�0000000�0000000�00000000425�14753064456�0026167�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2 9.1 7H3.3l3 5-3 5h5.8l2.9 5 2.9-5h5.8l-3-5 3-5h-5.8zm0 3 1.2 2h-2.4zM8.2 8.5l-1.1 2-1.2-2zm1.8 0h4l2 3.5-2 3.5h-4L8 12zm8 0-1.2 2-1.1-2zm-10.9 5 1.1 2H6zm9.8 0 1.2 2h-2.3zM13.3 17 12 19l-1.2-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-face.svg������������������������������0000664�0000000�0000000�00000000626�14753064456�0026001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2.5 8.42 8.06 2 9.74l4.2 5.14-.38 6.62L12 19.09l6.18 2.41-.38-6.62L22 9.74l-6.42-1.68zm-2.62 8c.62 0 1.12.5 1.12 1.13a1.12 1.12 0 0 1-1.12 1.12c-.63 0-1.13-.5-1.13-1.12 0-.63.5-1.13 1.13-1.13m5.25 0c.62 0 1.12.5 1.12 1.13a1.12 1.12 0 0 1-1.12 1.12c-.63 0-1.13-.5-1.13-1.12 0-.63.5-1.13 1.13-1.13M9 15h6a3.249 3.249 0 0 1-6 0"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-four-points-box-outline.svg�����������0000664�0000000�0000000�00000000447�14753064456�0031634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 17 1.56-3.42L17 12l-3.44-1.56L12 7l-1.57 3.44L7 12l3.43 1.58zM5 3h14a2 2 0 0 1 2 2v14c0 .53-.21 1.04-.59 1.41-.37.38-.88.59-1.41.59H5c-.53 0-1.04-.21-1.41-.59C3.21 20.04 3 19.53 3 19V5c0-1.11.89-2 2-2m0 16h14V5H5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-four-points-box.svg�������������������0000664�0000000�0000000�00000000431�14753064456�0030150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14a2 2 0 0 1 2 2v14c0 .53-.21 1.04-.59 1.41-.37.38-.88.59-1.41.59H5c-.53 0-1.04-.21-1.41-.59C3.21 20.04 3 19.53 3 19V5c0-1.11.89-2 2-2m7 14 1.56-3.42L17 12l-3.44-1.56L12 7l-1.57 3.44L7 12l3.43 1.58z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-four-points-circle-outline.svg��������0000664�0000000�0000000�00000001140�14753064456�0032274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 17 1.56-3.42L17 12l-3.44-1.56L12 7l-1.57 3.44L7 12l3.43 1.58zM8.17 2.76A10.1 10.1 0 0 1 12 2c1.31 0 2.61.26 3.83.76 1.21.5 2.31 1.24 3.24 2.17s1.67 2.03 2.17 3.24c.5 1.22.76 2.52.76 3.83 0 2.65-1.05 5.2-2.93 7.07A9.97 9.97 0 0 1 12 22a10.1 10.1 0 0 1-3.83-.76 10 10 0 0 1-3.24-2.17A9.97 9.97 0 0 1 2 12c0-2.65 1.05-5.2 2.93-7.07.93-.93 2.03-1.67 3.24-2.17m-1.83 14.9C7.84 19.16 9.88 20 12 20s4.16-.84 5.66-2.34S20 14.12 20 12s-.84-4.16-2.34-5.66A8 8 0 0 0 12 4c-2.12 0-4.16.84-5.66 2.34A8 8 0 0 0 4 12c0 2.12.84 4.16 2.34 5.66"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-four-points-circle.svg����������������0000664�0000000�0000000�00000000665�14753064456�0030632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.17 2.76A10.1 10.1 0 0 1 12 2c1.31 0 2.61.26 3.83.76 1.21.5 2.31 1.24 3.24 2.17s1.67 2.03 2.17 3.24c.5 1.22.76 2.52.76 3.83 0 2.65-1.05 5.2-2.93 7.07A9.97 9.97 0 0 1 12 22a10.1 10.1 0 0 1-3.83-.76 10 10 0 0 1-3.24-2.17A9.97 9.97 0 0 1 2 12c0-2.65 1.05-5.2 2.93-7.07.93-.93 2.03-1.67 3.24-2.17M12 17l1.56-3.42L17 12l-3.44-1.56L12 7l-1.57 3.44L7 12l3.43 1.58z"/></svg>���������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-four-points-outline.svg���������������0000664�0000000�0000000�00000000272�14753064456�0031042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 6.7 1.45 3.85L17.3 12l-3.85 1.45L12 17.3l-1.45-3.85L6.7 12l3.85-1.45zM12 1 9 9l-8 3 8 3 3 8 3-8 8-3-8-3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-four-points-small.svg�����������������0000664�0000000�0000000�00000000221�14753064456�0030465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.74 10.75 12 8l1.25 2.75L16 12l-2.75 1.26L12 16l-1.26-2.74L8 12z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-four-points.svg�����������������������0000664�0000000�0000000�00000000161�14753064456�0027362�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1 9 9l-8 3 8 3 3 8 3-8 8-3-8-3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-half-full.svg�������������������������0000664�0000000�0000000�00000000326�14753064456�0026752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 15.4V6.1l1.71 4.03 4.38.37-3.32 2.89.99 4.28M22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.45 4.73L5.82 21 12 17.27 18.18 21l-1.64-7.03z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-half.svg������������������������������0000664�0000000�0000000�00000000200�14753064456�0026001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2 9.19 8.62 2 9.24l5.45 4.73L5.82 21 12 17.27z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-minus-outline.svg���������������������0000664�0000000�0000000�00000000366�14753064456�0027714�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5.8 21 1.6-7L2 9.2l7.2-.6L12 2l2.8 6.6 7.2.6-3.2 2.8H18c-.7 0-1.4.1-2.1.4l2.2-1.9-4.4-.4-1.7-4-1.7 4-4.4.4 3.3 2.9-1 4.3 3.8-2.3.5.3c-.2.5-.4 1.1-.4 1.6zm8.2-4v2h8v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-minus.svg�����������������������������0000664�0000000�0000000�00000000252�14753064456�0026231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5.8 21 1.6-7L2 9.2l7.2-.6L12 2l2.8 6.6 7.2.6-3.2 2.8H18c-3.1 0-5.6 2.3-6 5.3zm8.2-4v2h8v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-off-outline.svg�����������������������0000664�0000000�0000000�00000000427�14753064456�0027331�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l5.8 5.8-4.9.4L7.5 14l-1.6 7 6.2-3.7 6.2 3.7-.3-1.2 2.9 2.9zm-6.3-3.8L12 15.4l-3.8 2.3 1-4.3-3.3-2.9 2.5-.2zM11.2 8 10 6.8 12 2l2.8 6.6 7.2.6-5.1 4.4-1.1-1.1 2.4-2-4.4-.4-1.7-4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-off.svg�������������������������������0000664�0000000�0000000�00000000305�14753064456�0025647�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.8 22.7-2.9-2.9.3 1.2-6.2-3.7L5.8 21l1.6-7L2 9.2l4.9-.4L1.1 3l1.3-1.3 19.7 19.7zM22 9.2l-7.2-.6L12 2l-2 4.8 6.9 6.9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-outline.svg���������������������������0000664�0000000�0000000�00000000400�14753064456�0026550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 15.39-3.76 2.27.99-4.28-3.32-2.88 4.38-.37L12 6.09l1.71 4.04 4.38.37-3.32 2.88.99 4.28M22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.45 4.73L5.82 21 12 17.27 18.18 21l-1.64-7.03z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-plus-outline.svg����������������������0000664�0000000�0000000�00000000412�14753064456�0027534�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5.8 21 1.6-7L2 9.2l7.2-.6L12 2l2.8 6.6 7.2.6-3.2 2.8H18c-.7 0-1.4.1-2.1.4l2.2-1.9-4.4-.4-1.7-4-1.7 4-4.4.4 3.3 2.9-1 4.3 3.8-2.3.5.3c-.2.5-.4 1.1-.4 1.6zM17 14v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-plus.svg������������������������������0000664�0000000�0000000�00000000276�14753064456�0026067�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5.8 21 1.6-7L2 9.2l7.2-.6L12 2l2.8 6.6 7.2.6-3.2 2.8H18c-3.1 0-5.6 2.3-6 5.3zM17 14v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-remove-outline.svg��������������������0000664�0000000�0000000�00000000513�14753064456�0030050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5.8 21 1.6-7L2 9.2l7.2-.6L12 2l2.8 6.6 7.2.6-3.2 2.8H18c-.7 0-1.4.1-2.1.4l2.2-1.9-4.4-.4-1.7-4-1.7 4-4.4.4 3.3 2.9-1 4.3 3.8-2.3.5.3c-.2.5-.4 1.1-.4 1.6zm14.3-6.5L18 16.6l-2.1-2.1-1.4 1.4 2.1 2.1-2.1 2.1 1.4 1.4 2.1-2.1 2.1 2.1 1.4-1.4-2.1-2.1 2.1-2.1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-remove.svg����������������������������0000664�0000000�0000000�00000000377�14753064456�0026403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5.8 21 1.6-7L2 9.2l7.2-.6L12 2l2.8 6.6 7.2.6-3.2 2.8H18c-3.1 0-5.6 2.3-6 5.3zm14.3-6.5L18 16.6l-2.1-2.1-1.4 1.4 2.1 2.1-2.1 2.1 1.4 1.4 2.1-2.1 2.1 2.1 1.4-1.4-2.1-2.1 2.1-2.1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-settings-outline.svg������������������0000664�0000000�0000000�00000000453�14753064456�0030416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 22h2v2h-2zm-4 2h2v-2H7zm8 0h2v-2h-2zm1.54-10.03L18.18 21 12 17.27 5.82 21l1.63-7.03L2 9.24l7.19-.61L12 2l2.81 6.63 7.19.61zm-.78 3.69-.99-4.28 3.32-2.88-4.38-.37L12 6.09l-1.71 4.04-4.38.37 3.32 2.88-.99 4.28L12 15.39z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-settings.svg��������������������������0000664�0000000�0000000�00000000313�14753064456�0026734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 22h2v2H7zm4 2h2v-2h-2zm4 0h2v-2h-2zm7-14.76-7.19-.62L12 2 9.19 8.62 2 9.24l5.45 4.73L5.82 21 12 17.27 18.18 21l-1.64-7.03z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-shooting-outline.svg������������������0000664�0000000�0000000�00000001216�14753064456�0030406�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23 7.5-6.47-.54L14 1l-2.53 5.96L5 7.5l4.9 4.27-1.46 6.33L14 14.74l5.56 3.36-1.47-6.33zm-6.86 4.73.4 1.71-1.51-.91-1.03-.62-1.03.62-1.51.91.39-1.71.28-1.18-.91-.79L9.88 9.1l1.76-.15 1.2-.1.47-1.11.69-1.62.69 1.62.47 1.11 1.2.1 1.75.15-1.33 1.16-.92.79zM1.16 12c-.299-.5-.171-1.11.29-1.41l2.73-1.8 1.57 1.36-3.2 2.11c-.17.11-.36.17-.55.17-.32 0-.64-.16-.84-.43m.29 8.16 5.86-3.85L7 17.76l-.34 1.37-4.11 2.71c-.17.11-.36.16-.55.16-.32 0-.64-.16-.84-.45a1.013 1.013 0 0 1 .29-1.39m5.87-8.66.92.81-.27 1.19-5.42 3.55c-.17.11-.36.16-.55.16-.32 0-.64-.15-.84-.45a1 1 0 0 1 .29-1.38z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-shooting.svg��������������������������0000664�0000000�0000000�00000000724�14753064456�0026734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.09 11.77 1.47 6.33L14 14.74 8.44 18.1l1.46-6.33L5 7.5l6.47-.54L14 1l2.53 5.96L23 7.5zM2 12.43c.19 0 .38-.06.55-.17l3.2-2.11-1.57-1.36-2.73 1.8c-.461.3-.589.91-.29 1.41.2.27.52.43.84.43m-.84 9.12c.2.29.52.45.84.45.19 0 .38-.05.55-.16l4.11-2.71.34-1.37.31-1.45-5.86 3.85c-.461.31-.589.93-.29 1.39m.29-6.17a1 1 0 0 0-.29 1.38c.2.3.52.45.84.45.19 0 .38-.05.55-.16l5.42-3.55.27-1.19-.92-.81z"/></svg>��������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-three-points-outline.svg��������������0000664�0000000�0000000�00000000232�14753064456�0031172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 9.5 1.2 4 2.8 3-4-.9-4.1.9 2.8-3zm0-6.9-3 9.8-7 7.5 10-2.3L22 20l-7-7.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star-three-points.svg����������������������0000664�0000000�0000000�00000000166�14753064456�0027523�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 2.6-3 9.8-7 7.5 10-2.3L22 20l-7-7.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/star.svg�����������������������������������0000664�0000000�0000000�00000000246�14753064456�0025103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.62L12 2 9.19 8.62 2 9.24l5.45 4.73L5.82 21z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/state-machine.svg��������������������������0000664�0000000�0000000�00000000677�14753064456�0026664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.27 17.05A2.991 2.991 0 0 1 4 22c-1.66 0-3-1.34-3-3s1.34-3 3-3c.18 0 .36 0 .53.05l3.07-5.36-1.74-.99 4.09-1.12 1.12 4.09-1.74-.99zM20 16c-1.3 0-2.4.84-2.82 2H11v-2l-3 3 3 3v-2h6.18c.42 1.16 1.52 2 2.82 2 1.66 0 3-1.34 3-3s-1.34-3-3-3m-8-8c.18 0 .36 0 .53-.05l3.07 5.36-1.74.99 4.09 1.12 1.12-4.09-1.74.99-3.06-5.37A2.991 2.991 0 0 0 12 2c-1.66 0-3 1.34-3 3s1.34 3 3 3"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/steam.svg����������������������������������0000664�0000000�0000000�00000001403�14753064456�0025237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10c-4.6 0-8.45-3.08-9.64-7.27l3.83 1.58a2.84 2.84 0 0 0 2.78 2.27c1.56 0 2.83-1.27 2.83-2.83v-.13l3.4-2.43h.08c2.08 0 3.77-1.69 3.77-3.77s-1.69-3.77-3.77-3.77-3.78 1.69-3.78 3.77v.05l-2.37 3.46-.16-.01c-.59 0-1.14.18-1.59.49L2 11.2C2.43 6.05 6.73 2 12 2M8.28 17.17c.8.33 1.72-.04 2.05-.84s-.05-1.71-.83-2.04l-1.28-.53c.49-.18 1.04-.19 1.56.03.53.21.94.62 1.15 1.15.22.52.22 1.1 0 1.62-.43 1.08-1.7 1.6-2.78 1.15-.5-.21-.88-.59-1.09-1.04zm9.52-7.75c0 1.39-1.13 2.52-2.52 2.52a2.52 2.52 0 0 1-2.51-2.52 2.5 2.5 0 0 1 2.51-2.51 2.52 2.52 0 0 1 2.52 2.51m-4.4 0c0 1.04.84 1.89 1.89 1.89 1.04 0 1.88-.85 1.88-1.89s-.84-1.89-1.88-1.89c-1.05 0-1.89.85-1.89 1.89"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/steering-off.svg���������������������������0000664�0000000�0000000�00000001234�14753064456�0026520�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5.27 3.28 4 20 20.72 18.73 22l-1.48-1.5Q14.925 22 12 22c-2.75 0-5.1-1-7.05-2.95S2 14.75 2 12q0-2.925 1.5-5.25zm11 14.65c1-.12 1.93-.42 2.78-.87l-2.28-2.27c-.16.06-.34.1-.5.14zM4.08 11H7l.37-.37-2.41-2.4A7.9 7.9 0 0 0 4.08 11m15.84 2h-3c-.12.54-.32 1.05-.59 1.5L9.91 8.09 10 8h4l3 3h2.92c-.25-1.95-1.13-3.62-2.65-5C15.76 4.66 14 4 12 4c-1.74 0-3.29.5-4.66 1.5L5.91 4.09C7.66 2.71 9.69 2 12 2c2.75 0 5.1 1 7.05 2.95S22 9.25 22 12c0 2.31-.71 4.34-2.09 6.09l-1.41-1.42A7.7 7.7 0 0 0 19.92 13M11 19.92v-3c-1-.22-1.84-.68-2.54-1.38S7.3 14 7.08 13h-3c.22 1.77.97 3.3 2.27 4.6S9.2 19.67 11 19.92"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/steering.svg�������������������������������0000664�0000000�0000000�00000001011�14753064456�0025741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19.92c1.8-.22 3.35-.97 4.65-2.27S19.7 14.8 19.92 13h-3c-.22 1-.68 1.84-1.38 2.54S14 16.7 13 16.92zM10 8h4l3 3h2.92c-.25-1.95-1.13-3.62-2.65-5C15.76 4.66 14 4 12 4s-3.76.66-5.27 2c-1.52 1.38-2.4 3.05-2.65 5H7zm1 11.92v-3c-1-.22-1.84-.68-2.54-1.38S7.3 14 7.08 13h-3c.22 1.77.97 3.3 2.27 4.6S9.2 19.67 11 19.92M12 2c2.75 0 5.1 1 7.05 2.95S22 9.25 22 12s-1 5.1-2.95 7.05S14.75 22 12 22s-5.1-1-7.05-2.95S2 14.75 2 12s1-5.1 2.95-7.05S9.25 2 12 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/step-backward-2.svg������������������������0000664�0000000�0000000�00000000172�14753064456�0027016�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 5h-3v14h3zm-5 0L1 12l11 7zm10 0h-3v14h3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/step-backward.svg��������������������������0000664�0000000�0000000�00000000150�14753064456�0026653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 5v14h-3V5m-2 0v14L3 12"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/step-forward-2.svg�������������������������0000664�0000000�0000000�00000000165�14753064456�0026706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 5h3v14H7zm5 0 11 7-11 7zM2 5h3v14H2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/step-forward.svg���������������������������0000664�0000000�0000000�00000000145�14753064456�0026545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 5v14h3V5m2 0v14l11-7"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/stethoscope.svg����������������������������0000664�0000000�0000000�00000000645�14753064456�0026475�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 8c.56 0 1 .43 1 1a1 1 0 0 1-1 1c-.57 0-1-.45-1-1 0-.57.43-1 1-1M2 2v9c0 2.96 2.19 5.5 5.14 5.91.62 3.01 3.28 5.09 6.36 5.09a6.5 6.5 0 0 0 6.5-6.5v-3.69c1.16-.42 2-1.52 2-2.81a3 3 0 0 0-3-3 3 3 0 0 0-3 3c0 1.29.84 2.4 2 2.81v3.6c0 2.5-2 4.5-4.5 4.5-2 0-3.68-1.21-4.28-3.01C12 16.3 14 13.8 14 11V2h-4v3h2v6a4 4 0 0 1-4 4 4 4 0 0 1-4-4V5h2V2z"/></svg>�������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sticker-alert-outline.svg������������������0000664�0000000�0000000�00000000447�14753064456�0030363�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 15h2v2h-2zm0-2h2V7h-2zm11-7.5V16l-6 6H5.5C3.6 22 2 20.4 2 18.5v-13C2 3.6 3.6 2 5.5 2h13C20.4 2 22 3.6 22 5.5m-2 .3c0-1-.8-1.8-1.8-1.8H5.8C4.8 4 4 4.8 4 5.8v12.5c0 1 .8 1.8 1.8 1.8H15v-1.5c0-1.9 1.6-3.5 3.5-3.5H20z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sticker-alert.svg��������������������������0000664�0000000�0000000�00000000343�14753064456�0026701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 2h-13C3.6 2 2 3.6 2 5.5v13C2 20.4 3.6 22 5.5 22H16l6-6V5.5C22 3.6 20.4 2 18.5 2M13 17h-2v-2h2v1m0-3h-2V7h2v5m2 8v-1.5c0-1.9 1.6-3.5 3.5-3.5H20z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sticker-check-outline.svg������������������0000664�0000000�0000000�00000000472�14753064456�0030327�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 2h-13C3.6 2 2 3.6 2 5.5v13C2 20.4 3.6 22 5.5 22H16l6-6V5.5C22 3.6 20.4 2 18.5 2M20 15h-1.5c-1.9 0-3.5 1.6-3.5 3.5V20H5.8c-1 0-1.8-.8-1.8-1.8V5.8C4 4.8 4.8 4 5.8 4h12.5c1 0 1.8.8 1.8 1.8V15m-4.9-6.8 1.5 1.5-6 6-3.5-3.5 1.5-1.5 2 2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sticker-check.svg��������������������������0000664�0000000�0000000�00000000366�14753064456�0026654�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 2h-13C3.6 2 2 3.6 2 5.5v13C2 20.4 3.6 22 5.5 22H16l6-6V5.5C22 3.6 20.4 2 18.5 2M7 12.5l1.3-1.4 2.1 2.1L15.6 8 17 9.4 10.5 16zm8 7.5v-1.5c0-1.9 1.6-3.5 3.5-3.5H20z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sticker-circle-outline.svg�����������������0000664�0000000�0000000�00000000742�14753064456�0030513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.12 18.46 6.18-6.18c-1.36.31-2.99.92-4.23 2.18-1.03 1.04-1.68 2.37-1.95 4M20.75 10h.3c.39 0 .74.27.88.64.14.36.07.79-.23 1.07l-10 10c-.2.19-.44.29-.7.29l-.36-.07c-.37-.14-.64-.49-.64-.88-.16-3.39.73-6.09 2.66-8.02C15.5 10.2 19.62 10 20.75 10M12 2c4.5 0 8.34 3 9.58 7.11L20 9h-.58C18.24 6.07 15.36 4 12 4a8 8 0 0 0-8 8c0 3.36 2.07 6.24 5 7.42-.03.71 0 1.43.11 2.15C5 20.33 2 16.5 2 12 2 6.47 6.5 2 12 2"/></svg>������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sticker-emoji.svg��������������������������0000664�0000000�0000000�00000001153�14753064456�0026675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.5 2C3.56 2 2 3.56 2 5.5v13C2 20.44 3.56 22 5.5 22H16l6-6V5.5C22 3.56 20.44 2 18.5 2zm.25 2h12.5A1.75 1.75 0 0 1 20 5.75V15h-1.5c-1.94 0-3.5 1.56-3.5 3.5V20H5.75A1.75 1.75 0 0 1 4 18.25V5.75A1.75 1.75 0 0 1 5.75 4m8.69 2.77c-.16 0-.32.02-.47.06-.94.26-1.47 1.22-1.23 2.17.05.15.12.3.21.44l3.23-.88q0-.255-.06-.51c-.21-.75-.9-1.28-1.68-1.28M8.17 8.5c-.17 0-.32 0-.47.05-.93.26-1.48 1.22-1.23 2.15.03.16.12.3.21.46l3.23-.88c0-.17-.02-.34-.06-.5A1.72 1.72 0 0 0 8.17 8.5m8.55 2.76-9.13 2.51a5.27 5.27 0 0 0 5.36 1.64 5.27 5.27 0 0 0 3.77-4.15"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sticker-minus-outline.svg������������������0000664�0000000�0000000�00000000431�14753064456�0030400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 11h8v2H8zm14-5.5V16l-6 6H5.5C3.6 22 2 20.4 2 18.5v-13C2 3.6 3.6 2 5.5 2h13C20.4 2 22 3.6 22 5.5m-2 .3c0-1-.8-1.8-1.8-1.8H5.8C4.8 4 4 4.8 4 5.8v12.5c0 1 .8 1.8 1.8 1.8H15v-1.5c0-1.9 1.6-3.5 3.5-3.5H20z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sticker-minus.svg��������������������������0000664�0000000�0000000�00000000322�14753064456�0026722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 2h-13C3.6 2 2 3.6 2 5.5v13C2 20.4 3.6 22 5.5 22H16l6-6V5.5C22 3.6 20.4 2 18.5 2M8 11h8v2H8zm7 9v-1.5c0-1.9 1.6-3.5 3.5-3.5H20z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sticker-outline.svg������������������������0000664�0000000�0000000�00000000413�14753064456�0027247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.5 2C3.6 2 2 3.6 2 5.5v13C2 20.4 3.6 22 5.5 22H16l6-6V5.5C22 3.6 20.4 2 18.5 2zm.3 2h12.5c1 0 1.8.8 1.8 1.8V15h-1.5c-1.9 0-3.5 1.6-3.5 3.5V20H5.8c-1 0-1.8-.8-1.8-1.8V5.8C4 4.8 4.8 4 5.8 4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sticker-plus-outline.svg�������������������0000664�0000000�0000000�00000000455�14753064456�0030236�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 11h3v2h-3v3h-2v-3H8v-2h3V8h2zm9-5.5V16l-6 6H5.5C3.6 22 2 20.4 2 18.5v-13C2 3.6 3.6 2 5.5 2h13C20.4 2 22 3.6 22 5.5m-2 .3c0-1-.8-1.8-1.8-1.8H5.8C4.8 4 4 4.8 4 5.8v12.5c0 1 .8 1.8 1.8 1.8H15v-1.5c0-1.9 1.6-3.5 3.5-3.5H20z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sticker-plus.svg���������������������������0000664�0000000�0000000�00000000347�14753064456�0026561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 2h-13C3.6 2 2 3.6 2 5.5v13C2 20.4 3.6 22 5.5 22H16l6-6V5.5C22 3.6 20.4 2 18.5 2M13 16h-2v-3H8v-2h3V8h2v3h3v2h-3zm2 4v-1.5c0-1.9 1.6-3.5 3.5-3.5H20z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sticker-remove-outline.svg�����������������0000664�0000000�0000000�00000000545�14753064456�0030550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 9.4 13.4 12l2.6 2.6-1.4 1.4-2.6-2.6L9.4 16 8 14.6l2.6-2.6L8 9.4 9.4 8l2.6 2.6L14.6 8zm6-3.9V16l-6 6H5.5C3.6 22 2 20.4 2 18.5v-13C2 3.6 3.6 2 5.5 2h13C20.4 2 22 3.6 22 5.5m-2 .3c0-1-.8-1.8-1.8-1.8H5.8C4.8 4 4 4.8 4 5.8v12.5c0 1 .8 1.8 1.8 1.8H15v-1.5c0-1.9 1.6-3.5 3.5-3.5H20z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sticker-remove.svg�������������������������0000664�0000000�0000000�00000000452�14753064456�0027070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 2h-13C3.6 2 2 3.6 2 5.5v13C2 20.4 3.6 22 5.5 22H16l6-6V5.5C22 3.6 20.4 2 18.5 2M12 13.4l-2.1 2.1-1.4-1.4 2.1-2.1-2.1-2.1 1.4-1.4 2.1 2.1 2.1-2.1 1.4 1.4-2.1 2.1 2.1 2.1-1.4 1.4zm3 6.6v-1.5c0-1.9 1.6-3.5 3.5-3.5H20z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sticker-text-outline.svg�������������������0000664�0000000�0000000�00000000462�14753064456�0030235�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 2h-13C3.6 2 2 3.6 2 5.5v13C2 20.4 3.6 22 5.5 22H16l6-6V5.5C22 3.6 20.4 2 18.5 2m1.6 13h-1.5c-1.9 0-3.5 1.6-3.5 3.5V20H5.8c-1 0-1.8-.8-1.8-1.8V5.8C4 4.8 4.8 4 5.8 4h12.5c1 0 1.8.8 1.8 1.8zM7 7h10v2H7zm0 4h10v2H7zm0 4h6v2H7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sticker-text.svg���������������������������0000664�0000000�0000000�00000000352�14753064456�0026556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 2h-13C3.6 2 2 3.6 2 5.5v13C2 20.4 3.6 22 5.5 22H16l6-6V5.5C22 3.6 20.4 2 18.5 2M6 7h12v2H6zm0 4h12v2H6zm7 6H6v-2h7zm2 3v-1.5c0-1.9 1.6-3.5 3.5-3.5H20z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sticker.svg��������������������������������0000664�0000000�0000000�00000000310�14753064456�0025566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 2h-13C3.6 2 2 3.6 2 5.5v13C2 20.4 3.6 22 5.5 22H16l6-6V5.5C22 3.6 20.4 2 18.5 2M15 20v-1.5c0-1.9 1.6-3.5 3.5-3.5H20z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/stocking.svg�������������������������������0000664�0000000�0000000�00000000376�14753064456�0025757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 2a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2v8c0 .85-.5 1.57-1.26 1.86L9.5 21.77c-1 .47-2.21.04-2.67-.96L6 19c-.5-1-.05-2.2.95-2.66L10 14.91V9a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm-7 2v3h7V4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/stomach.svg��������������������������������0000664�0000000�0000000�00000000527�14753064456�0025572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 18c.67 1.85 2.07 4 8 4 2.36 0 5.07-.07 7-2 1-1 3-3 3-9s-2-7-4-7c-1.38 0-3 0-4 2v.03a1.82 1.82 0 0 1-1.87.92C11 6.81 11 6.37 11 6V2H9v4a2.92 2.92 0 0 0 3 3c1 0 1 1.78 1 3 0 1.89-.5 3.26-2 4-2.31 1.15-4.61 1-5.39-.53a1.5 1.5 0 0 0-2.47-.6A3.67 3.67 0 0 0 2 18v4h2Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/stool-outline.svg��������������������������0000664�0000000�0000000�00000000354�14753064456�0026747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6c0-2.21-1.79-4-4-4H8C5.78 2 4 3.79 4 6v2h3L4 22h2l1.5-7H11v7h2v-7h3.5l1.5 7h2L17 8h3zM7.93 13 9 8h2v5zm8.14 0H13V8h2zM6 6a2 2 0 0 1 2-2h8c1.1 0 2 .9 2 2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/stool.svg����������������������������������0000664�0000000�0000000�00000000310�14753064456�0025262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6c0-2.21-1.79-4-4-4H8C5.78 2 4 3.79 4 6v2h3L4 22h2l1.5-7H11v7h2v-7h3.5l1.5 7h2L17 8h3zM7.93 13 9 8h2v5zm8.14 0H13V8h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/stop-circle-outline.svg��������������������0000664�0000000�0000000�00000000333�14753064456�0030030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 2c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8M9 9v6h6V9"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/stop-circle.svg����������������������������0000664�0000000�0000000�00000000243�14753064456�0026353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2M9 9h6v6H9"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/stop.svg�����������������������������������0000664�0000000�0000000�00000000134�14753064456�0025113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 18H6V6h12z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/storage-tank-outline.svg�������������������0000664�0000000�0000000�00000000435�14753064456�0030206�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 6h-1V5c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v1H7c-3.31 0-6 2.69-6 6s2.69 6 6 6v3h2v-3h6v3h2v-3c3.31 0 6-2.69 6-6s-2.69-6-6-6m-7-1h4v1h-4zm7 11H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/storage-tank.svg���������������������������0000664�0000000�0000000�00000000327�14753064456�0026531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 6h-1V5c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v1H7c-3.31 0-6 2.69-6 6s2.69 6 6 6v3h2v-3h6v3h2v-3c3.31 0 6-2.69 6-6s-2.69-6-6-6m-7-1h4v1h-4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/store-24-hour.svg��������������������������0000664�0000000�0000000�00000000241�14753064456�0026457�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 12h-1v-2h-2V7h1v2h1V7h1m-5 3H9v1h2v1H8V9h2V8H8V7h3m8 0V4H5v3H2v13h8v-4h4v4h8V7z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/store-alert-outline.svg��������������������0000664�0000000�0000000�00000000302�14753064456�0030041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2 7-1 5v2h1v6h10v-6h4v6h2v-6h1v-2l-1-5zm8 11H4v-4h6zm-6.96-6 .6-3h12.72l.6 3zM18 6H2V4h16zm5 1v6h-2V7zm-2 8h2v2h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/store-alert.svg����������������������������0000664�0000000�0000000�00000000251�14753064456�0026367�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2 7-1 5v2h1v6h10v-6h4v6h2v-6h1v-2l-1-5zm8 11H4v-4h6zm8-12H2V4h16zm5 1v6h-2V7zm-2 8h2v2h-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/store-check-outline.svg��������������������0000664�0000000�0000000�00000000467�14753064456�0030023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13c.7 0 1.37.13 2 .35V12l-1-5H4l-1 5v2h1v6h9.09c-.05-.33-.09-.66-.09-1 0-1.23.37-2.36 1-3.31V14h1.69c.95-.63 2.08-1 3.31-1m-7 5H6v-4h6zm-6.96-6 .6-3h12.72l.6 3zM20 6H4V4h16zm2.5 11.25L17.75 22 15 19l1.16-1.16 1.59 1.59 3.59-3.59z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/store-check.svg����������������������������0000664�0000000�0000000�00000000434�14753064456�0026340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6H4V4h16zm-4.31 8H14v1.69c-.63.95-1 2.08-1 3.31 0 .34.04.67.09 1H4v-6H3v-2l1-5h16l1 5v1.35c-.63-.22-1.3-.35-2-.35-1.23 0-2.36.37-3.31 1M12 14H6v4h6zm9.34 1.84-3.59 3.59-1.59-1.59L15 19l2.75 3 4.75-4.75z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/store-clock-outline.svg��������������������0000664�0000000�0000000�00000000502�14753064456�0030027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 4H2V2h16zm-.5 9H16v5l3.61 2.16.75-1.22-2.86-1.69zm6.5 4c0 3.87-3.13 7-7 7-3.53 0-6.43-2.61-6.92-6H2v-6H1v-2l1-5h16l1 5v.29c2.89.87 5 3.54 5 6.71M3.04 10h13.92l-.6-3H3.64zM4 16h6v-4H4zm18 1c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/store-clock.svg����������������������������0000664�0000000�0000000�00000000450�14753064456�0026354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 4H2V2h16zm-.5 9H16v5l3.61 2.16.75-1.22-2.86-1.69zm6.5 4c0 3.87-3.13 7-7 7-3.53 0-6.43-2.61-6.92-6H2v-6H1v-2l1-5h16l1 5v.29c2.89.87 5 3.54 5 6.71M4 16h6v-4H4zm18 1c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/store-cog-outline.svg����������������������0000664�0000000�0000000�00000001277�14753064456�0027516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6H4V4h16zm-1 6c-1.91 0-3.63.76-4.89 2H14v.11c-1.24 1.26-2 2.98-2 4.89 0 .34.03.67.08 1H4v-6H3v-2l1-5h16l1 5v.3c-.63-.19-1.3-.3-2-.3m-7 2H6v4h6zm6.96-2-.6-3H5.64l-.6 3zm4.84 8.4c.1 0 .1.1 0 .2l-1 1.7c-.1.1-.2.1-.3.1l-1.2-.4c-.3.2-.5.3-.8.5l-.2 1.3c0 .1-.1.2-.2.2h-2c-.1 0-.2-.1-.3-.2l-.2-1.3c-.3-.1-.6-.3-.8-.5l-1.2.5c-.1 0-.2 0-.3-.1l-1-1.7c-.1-.1 0-.2.1-.3l1.1-.8v-1l-1.1-.8c-.1-.1-.1-.2-.1-.3l1-1.7c.1-.1.2-.1.3-.1l1.2.5c.3-.2.5-.3.8-.5l.2-1.3c0-.1.1-.2.3-.2h2c.1 0 .2.1.2.2l.2 1.3c.3.1.6.3.9.5l1.2-.5c.1 0 .3 0 .3.1l1 1.7c.1.1 0 .2-.1.3l-1.1.8v1zM20.5 19c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5.7 1.5 1.5 1.5 1.5-.7 1.5-1.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/store-cog.svg������������������������������0000664�0000000�0000000�00000001247�14753064456�0026036�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6H4V4h16zm-1 6c-1.91 0-3.63.76-4.89 2H14v.11c-1.24 1.26-2 2.98-2 4.89 0 .34.03.67.08 1H4v-6H3v-2l1-5h16l1 5v.3c-.63-.19-1.3-.3-2-.3m-7 2H6v4h6zm11.8 6.4c.1 0 .1.1 0 .2l-1 1.7c-.1.1-.2.1-.3.1l-1.2-.4c-.3.2-.5.3-.8.5l-.2 1.3c0 .1-.1.2-.2.2h-2c-.1 0-.2-.1-.3-.2l-.2-1.3c-.3-.1-.6-.3-.8-.5l-1.2.5c-.1 0-.2 0-.3-.1l-1-1.7c-.1-.1 0-.2.1-.3l1.1-.8v-1l-1.1-.8c-.1-.1-.1-.2-.1-.3l1-1.7c.1-.1.2-.1.3-.1l1.2.5c.3-.2.5-.3.8-.5l.2-1.3c0-.1.1-.2.3-.2h2c.1 0 .2.1.2.2l.2 1.3c.3.1.6.3.9.5l1.2-.5c.1 0 .3 0 .3.1l1 1.7c.1.1 0 .2-.1.3l-1.1.8v1zM20.5 19c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5.7 1.5 1.5 1.5 1.5-.7 1.5-1.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/store-edit-outline.svg���������������������0000664�0000000�0000000�00000000514�14753064456�0027664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6H4V4h16zm-6 10.13-3 3V20H4v-6H3v-2l1-5h16l.61 3.07c-.45.1-.88.33-1.22.67l-.57.57L18.36 9H5.64l-.6 3h13.09l-2 2H14zM12 14H6v4h6zm10.85-.53-1.32-1.32c-.2-.2-.53-.2-.72 0l-.98.98 2.04 2.04.98-.98c.2-.19.2-.52 0-.72M13 19.96V22h2.04l6.13-6.12-2.04-2.05z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/store-edit.svg�����������������������������0000664�0000000�0000000�00000000457�14753064456�0026215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6H4V4h16zm-6 10.13-3 3V20H4v-6H3v-2l1-5h16l.61 3.07c-.45.1-.88.33-1.22.67L16.13 14H14zM12 14H6v4h6zm10.85-.53-1.32-1.32c-.2-.2-.53-.2-.72 0l-.98.98 2.04 2.04.98-.98c.2-.19.2-.52 0-.72M13 19.96V22h2.04l6.13-6.12-2.04-2.05z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/store-marker-outline.svg�������������������0000664�0000000�0000000�00000000600�14753064456�0030214�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6H4V4h16zm-5.7 6c-.8.96-1.3 2.18-1.3 3.5 0 1.14.43 2.36 1 3.5v1H4v-6H3v-2l1-5h16l.7 3.5c-.66-.32-1.38-.5-2.14-.5l-.2-1H5.64l-.6 3zM12 14H6v4h6zm10 1.5c0 2.6-3.5 6.5-3.5 6.5S15 18.1 15 15.5c0-1.9 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5m-2.3.1c0-.6-.6-1.2-1.2-1.2s-1.2.5-1.2 1.2c0 .6.5 1.2 1.2 1.2s1.3-.6 1.2-1.2"/></svg>��������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/store-marker.svg���������������������������0000664�0000000�0000000�00000000550�14753064456�0026543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6H4V4h16zm-7 9.5c0 1.14.43 2.36 1 3.5v1H4v-6H3v-2l1-5h16l.7 3.5c-.7-.32-1.42-.5-2.2-.5-3 0-5.5 2.5-5.5 5.5M12 14H6v4h6zm10 1.5c0 2.6-3.5 6.5-3.5 6.5S15 18.1 15 15.5c0-1.9 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5m-2.3.1c0-.6-.6-1.2-1.2-1.2s-1.2.5-1.2 1.2c0 .6.5 1.2 1.2 1.2s1.3-.6 1.2-1.2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/store-minus-outline.svg��������������������0000664�0000000�0000000�00000000414�14753064456�0030071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6H4V4h16zm-4.31 8H14v1.69c-.63.95-1 2.08-1 3.31 0 .34.04.67.09 1H4v-6H3v-2l1-5h16l1 5v1.35c-.63-.22-1.3-.35-2-.35-1.23 0-2.36.37-3.31 1M12 14H6v4h6zm6.96-2-.6-3H5.64l-.6 3zM15 18v2h8v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/store-minus.svg����������������������������0000664�0000000�0000000�00000000362�14753064456�0026416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4v2h16V4M4 7l-1 5v2h1v6h9c-.05-.34-.08-.69-.08-1.05 0-1.22.38-2.42 1.08-3.42V14h1.54c1-.67 2.17-1.04 3.37-1.04.71 0 1.42.13 2.09.38V12l-1-5M6 14h6v4H6m9 0v2h8v-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/store-off-outline.svg����������������������0000664�0000000�0000000�00000000373�14753064456�0027514�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.39 1.73 1.11 3l4 4H4l-1 5v2h1v6h10v-4.11l6.84 6.84 1.27-1.27zM5.64 9h1.47l3 3H5.04zM12 18H6v-4h6zm6-3.2V14h-.8l-2-2h3.76l-.6-3H12.2l-2-2H20l1 5v2h-1v2.8zM9.2 6l-2-2H20v2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/store-off.svg������������������������������0000664�0000000�0000000�00000000323�14753064456�0026032�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.2 6-2-2H20v2zM20 16.8V14h1v-2l-1-5h-9.8l7 7h.8v.8zm2.11 4.66-1.27 1.27L14 15.89V20H4v-6H3v-2l1-5h1.11l-4-4 1.28-1.27zM12 14H6v4h6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/store-outline.svg��������������������������0000664�0000000�0000000�00000000246�14753064456�0026743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.36 9 .6 3H5.04l.6-3zM20 4H4v2h16zm0 3H4l-1 5v2h1v6h10v-6h4v6h2v-6h1v-2zM6 18v-4h6v4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/store-plus-outline.svg���������������������0000664�0000000�0000000�00000000440�14753064456�0027720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6H4V4h16zm-4.31 8H14v1.69c-.63.95-1 2.08-1 3.31 0 .34.04.67.09 1H4v-6H3v-2l1-5h16l1 5v1.35c-.63-.22-1.3-.35-2-.35-1.23 0-2.36.37-3.31 1M12 14H6v4h6zm6.96-2-.6-3H5.64l-.6 3zM20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/store-plus.svg�����������������������������0000664�0000000�0000000�00000000407�14753064456�0026246�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4v2h16V4M4 7l-1 5v2h1v6h9c-.05-.34-.08-.69-.08-1.05 0-1.22.38-2.42 1.08-3.42V14h1.54c1-.67 2.17-1.04 3.37-1.04.71 0 1.42.13 2.09.38V12l-1-5M6 14h6v4H6m12-3v3h-3v2h3v3h2v-3h3v-2h-3v-3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/store-remove-outline.svg�������������������0000664�0000000�0000000�00000000565�14753064456�0030242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6H4V4h16zm-4.31 8H14v1.69c-.63.95-1 2.08-1 3.31 0 .34.04.67.09 1H4v-6H3v-2l1-5h16l1 5v1.35c-.63-.22-1.3-.35-2-.35-1.23 0-2.36.37-3.31 1M12 14H6v4h6zm6.96-2-.6-3H5.64l-.6 3zm3.58 4.88-1.42-1.41L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/store-remove.svg���������������������������0000664�0000000�0000000�00000000526�14753064456�0026562�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4h16v2H4zm11.46 12.88 1.42-1.42L19 17.59l2.12-2.12 1.42 1.41L20.41 19l2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.42-1.42L17.59 19l-2.12-2.12M4 7h16l1 5v1.34a6 6 0 0 0-2.09-.38c-1.2 0-2.37.37-3.37 1.04H14v1.53c-.7 1-1.08 2.2-1.08 3.42L13 20H4v-6H3v-2zm2 7v4h6v-4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/store-search-outline.svg�������������������0000664�0000000�0000000�00000000632�14753064456�0030205�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 4H2V2h16zm-4.96 6h-10l.6-3h12.72l.4 2c.74.04 1.45.19 2.13.46L18 5H2l-1 5v2h1v6h8.5c-.33-.8-.5-1.65-.5-2.5v.5H4v-4h6v3.5c0-1.66.64-3.33 1.9-4.6q.54-.525 1.14-.9m10.35 11L22 22.39l-3.12-3.07c-.69.43-1.51.68-2.38.68-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 .88-.25 1.71-.69 2.4zM19 15.5a2.5 2.5 0 0 0-5 0 2.5 2.5 0 0 0 5 0"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/store-search.svg���������������������������0000664�0000000�0000000�00000000571�14753064456�0026532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.9 10.9a6.53 6.53 0 0 0-1.9 4.6V12H4v4h6v-.5c0 .85.17 1.7.5 2.5H2v-6H1v-2l1-5h16l.89 4.46a6.47 6.47 0 0 0-6.99 1.44M18 2H2v2h16zm5.39 19L22 22.39l-3.12-3.07c-.69.43-1.51.68-2.38.68-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 .88-.25 1.71-.69 2.4zM19 15.5a2.5 2.5 0 0 0-5 0 2.5 2.5 0 0 0 5 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/store-settings-outline.svg�����������������0000664�0000000�0000000�00000000316�14753064456�0030577�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6H4V4h16zm1 6v2h-1v6h-2v-6h-4v6H4v-6H3v-2l1-5h16zm-9 2H6v4h6zm6.96-2-.6-3H5.64l-.6 3zM7 24h2v-2H7zm4 0h2v-2h-2zm4 0h2v-2h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/store-settings.svg�������������������������0000664�0000000�0000000�00000000266�14753064456�0027126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6H4V4h16zm1 6v2h-1v6h-2v-6h-4v6H4v-6H3v-2l1-5h16zm-9 2H6v4h6zM7 24h2v-2H7zm4 0h2v-2h-2zm4 0h2v-2h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/store.svg����������������������������������0000664�0000000�0000000�00000000220�14753064456�0025256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18H6v-4h6m9 0v-2l-1-5H4l-1 5v2h1v6h10v-6h4v6h2v-6m0-10H4v2h16z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/storefront-check-outline.svg���������������0000664�0000000�0000000�00000001677�14753064456�0031100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.06 3c-.43 0-.84.14-1.22.42s-.6.64-.7 1.08L2.11 8.91c-.25 1.09-.05 2.01.58 2.82.11.11.21.21.31.3V19c0 .5.2 1 .61 1.39S4.5 21 5 21h7.8c-.35-.61-.6-1.28-.72-2H5v-6h.22c.94 0 1.69-.41 2.25-.95.63.62 1.39.95 2.33.95.84 0 1.64-.37 2.2-.93.68.63 1.45.93 2.3.93.87 0 1.61-.33 2.24-.95.57.57 1.32.95 2.27.95s1.62-.35 2.19-.94l.13-.14.15-.15c.66-.82.86-1.77.61-2.86L20.86 4.5c-.13-.44-.36-.8-.73-1.08A1.88 1.88 0 0 0 18.94 3m-.05 1.97 1.08 4.41c.09.43 0 .82-.28 1.17-.25.31-.56.45-.94.45-.31 0-.58-.1-.8-.34-.22-.23-.34-.5-.37-.82L16.97 5M5.06 5h1.97l-.61 4.84C6.3 10.63 5.91 11 5.25 11c-.41 0-.72-.14-.94-.45-.28-.35-.37-.74-.28-1.17M9.05 5H11v4.7c0 .35-.11.65-.36.92-.25.26-.56.38-.94.38-.34 0-.63-.12-.86-.41S8.5 10 8.5 9.66V9.5M13 5h1.95l.55 4.5c.08.42 0 .77-.29 1.07-.26.3-.6.43-1.01.43-.31 0-.59-.12-.84-.38A1.3 1.3 0 0 1 13 9.7M17 21l-2.75-3 1.16-1.16L17 18.43l3.59-3.59 1.16 1.41Z"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/storefront-check.svg�����������������������0000664�0000000�0000000�00000002116�14753064456�0027410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.06 3c-.43 0-.84.14-1.22.42s-.6.64-.7 1.08L2.11 8.91c-.25 1.09-.05 2.01.58 2.82.12.12.24.24.35.34.59.57 1.24.93 2.18.93s1.69-.41 2.25-.95c.63.62 1.39.95 2.33.95.84 0 1.64-.37 2.2-.93.68.63 1.45.93 2.3.93.87 0 1.61-.33 2.24-.95.57.57 1.32.95 2.27.95s1.62-.35 2.19-.94l.13-.14.15-.15c.66-.82.86-1.77.61-2.86L20.86 4.5c-.13-.44-.36-.8-.73-1.08A1.88 1.88 0 0 0 18.94 3m-.05 1.97 1.08 4.41c.09.43 0 .82-.28 1.17-.25.31-.56.45-.94.45-.31 0-.58-.1-.8-.34-.22-.23-.34-.5-.37-.82L16.97 5M5.06 5h1.97l-.61 4.84C6.3 10.63 5.91 11 5.25 11c-.41 0-.72-.14-.94-.45-.28-.35-.37-.74-.28-1.17M9.05 5H11v4.7c0 .35-.11.65-.36.92-.25.26-.56.38-.94.38-.34 0-.63-.12-.86-.41S8.5 10 8.5 9.66V9.5M13 5h1.95l.55 4.5c.08.42 0 .77-.29 1.07-.26.3-.6.43-1.01.43-.31 0-.59-.12-.84-.38A1.3 1.3 0 0 1 13 9.7m-.03 5.02a3.4 3.4 0 0 1-.97-.65c-.57.57-1.35.93-2.22.93-.91 0-1.71-.35-2.31-.95-.58.59-1.37.95-2.24.95-.9 0-1.57-.35-2.23-.97V19c0 1.11.89 2 2 2h7.8c-.51-.88-.8-1.91-.8-3 0-1.21.36-2.34.97-3.28M17 21l-2.75-3 1.16-1.16L17 18.43l3.59-3.59 1.16 1.41Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/storefront-edit-outline.svg����������������0000664�0000000�0000000�00000001774�14753064456�0030746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.06 3c-.43 0-.84.14-1.22.42s-.6.64-.7 1.08L2.11 8.91c-.25 1.09-.05 2.04.61 2.86l.28.28V19c0 .5.2 1 .61 1.39S4.5 21 5 21h6v-1.89l.11-.11H5v-6h.25c.91 0 1.64-.33 2.2-.95.63.62 1.41.95 2.35.95.84 0 1.58-.33 2.2-.95.69.62 1.45.95 2.3.95.87 0 1.62-.33 2.25-.95.25.28.54.49.86.65l1.65-1.65.01.01.13-.14c-.14.05-.29.08-.45.08-.31 0-.58-.1-.8-.34-.22-.23-.34-.5-.37-.82L16.97 5l1.92-.03 1.08 4.41c.09.41.03.78-.24 1.12.67-.4 1.5-.47 2.22-.19.05-.44.05-.9-.06-1.4L20.86 4.5c-.13-.44-.36-.8-.73-1.08A1.88 1.88 0 0 0 18.94 3M5.06 5h1.97l-.61 4.84C6.3 10.63 5.91 11 5.25 11c-.41 0-.72-.14-.94-.45-.28-.35-.37-.74-.28-1.17M9.05 5H11v4.7c0 .35-.11.65-.36.92-.25.26-.56.38-.94.38-.34 0-.63-.12-.86-.41S8.5 10 8.5 9.66V9.5M13 5h1.95l.55 4.5c.08.42 0 .77-.29 1.07-.26.3-.6.43-1.01.43-.31 0-.59-.12-.84-.38A1.3 1.3 0 0 1 13 9.7M15.06 22H13v-2.06l6.06-6.06 2.05 2.05m-.46-3.63c.1-.1.22-.15.35-.16.15 0 .31.05.42.16l1.28 1.28c.21.21.21.56 0 .77l-1 1-2.05-2.05Z"/></svg>����mkdocs-material-9.6.4/material/templates/.icons/material/storefront-edit.svg������������������������0000664�0000000�0000000�00000002210�14753064456�0027253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.84 3.42c.38-.28.79-.42 1.22-.42h13.88c.44 0 .83.14 1.19.42.37.28.6.64.73 1.08l1.03 4.41c.11.5.11.96.06 1.4-.72-.28-1.55-.21-2.22.19.27-.33.33-.71.24-1.12l-1.08-4.41-1.92.03.61 4.84c.03.32.15.59.37.82.22.24.49.34.8.34.16 0 .31-.03.45-.08l-.13.14-.01-.01-1.64 1.64c-.33-.16-.62-.38-.88-.64-.63.62-1.37.95-2.24.95-.85 0-1.62-.3-2.3-.93-.56.56-1.36.93-2.2.93-.94 0-1.7-.33-2.33-.95-.56.54-1.31.95-2.25.95s-1.59-.36-2.18-.93c-.11-.1-.23-.22-.35-.34-.63-.81-.83-1.73-.58-2.82L3.14 4.5c.1-.44.32-.8.7-1.08M7.03 5H5.06L4.03 9.38c-.09.43 0 .82.28 1.17.22.31.53.45.94.45.66 0 1.05-.37 1.17-1.16M11 5H9.05L8.5 9.5v.16c0 .34.11.64.34.93s.52.41.86.41c.38 0 .69-.12.94-.38.25-.27.36-.57.36-.92M14.95 5H13v4.7c0 .35.11.65.36.92.25.26.53.38.84.38.41 0 .75-.13 1.01-.43.29-.3.37-.65.29-1.07m5.61 6.43-2.05-2.05L13 19.94V22h2.06m-.76-7c.33 0 .66-.05.97-.16L11 19.11V21H5c-1.11 0-2-.89-2-2v-4.97c.66.62 1.33.97 2.23.97.87 0 1.66-.36 2.24-.95.6.6 1.4.95 2.31.95.87 0 1.65-.36 2.22-.93.6.57 1.4.93 2.3.93m8.4-.65-1 1-2.05-2.05 1-1c.07-.07.16-.12.25-.14.18-.05.38 0 .52.14l1.28 1.28c.21.21.21.56 0 .77"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/storefront-minus-outline.svg���������������0000664�0000000�0000000�00000001626�14753064456�0031150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.84 3.42c.38-.28.79-.42 1.22-.42h13.88c.44 0 .83.14 1.19.42.37.28.6.64.73 1.08l1.03 4.41c.25 1.09.05 2.04-.61 2.86l-.15.15-.13.14c-.57.59-1.24.94-2.19.94s-1.7-.38-2.27-.95c-.63.62-1.37.95-2.24.95-.85 0-1.62-.3-2.3-.93-.56.56-1.36.93-2.2.93-.94 0-1.7-.33-2.33-.95-.56.54-1.31.95-2.25.95H5v6h7.08c.12.72.37 1.39.72 2H5c-.5 0-1-.22-1.39-.61S3 19.5 3 19v-6.97c-.1-.09-.2-.19-.31-.3-.63-.81-.83-1.73-.58-2.82L3.14 4.5c.1-.44.32-.8.7-1.08m16.13 5.96-1.08-4.41-1.92.03.61 4.84c.03.32.15.59.37.82.22.24.49.34.8.34.38 0 .69-.14.94-.45.28-.35.37-.74.28-1.17M7.03 5H5.06L4.03 9.38c-.09.43 0 .82.28 1.17.22.31.53.45.94.45.66 0 1.05-.37 1.17-1.16zM11 5H9.05L8.5 9.5v.16c0 .34.11.64.34.93s.52.41.86.41c.38 0 .69-.12.94-.38.25-.27.36-.57.36-.92zm3.95 0H13v4.7c0 .35.11.65.36.92.25.26.53.38.84.38.41 0 .75-.13 1.01-.43.29-.3.37-.65.29-1.07zM14 17v2h8v-2z"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/storefront-minus.svg�����������������������0000664�0000000�0000000�00000002040�14753064456�0027462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.84 3.42c.38-.28.79-.42 1.22-.42h13.88c.44 0 .83.14 1.19.42.37.28.6.64.73 1.08l1.03 4.41c.25 1.09.05 2.04-.61 2.86l-.15.15-.13.14c-.57.59-1.24.94-2.19.94s-1.7-.38-2.27-.95c-.63.62-1.37.95-2.24.95-.85 0-1.62-.3-2.3-.93-.56.56-1.36.93-2.2.93-.94 0-1.7-.33-2.33-.95-.56.54-1.31.95-2.25.95s-1.59-.36-2.18-.93c-.11-.1-.23-.22-.35-.34-.63-.81-.83-1.73-.58-2.82L3.14 4.5c.1-.44.32-.8.7-1.08m16.13 5.96-1.08-4.41-1.92.03.61 4.84c.03.32.15.59.37.82.22.24.49.34.8.34.38 0 .69-.14.94-.45.28-.35.37-.74.28-1.17M7.03 5H5.06L4.03 9.38c-.09.43 0 .82.28 1.17.22.31.53.45.94.45.66 0 1.05-.37 1.17-1.16zM11 5H9.05L8.5 9.5v.16c0 .34.11.64.34.93s.52.41.86.41c.38 0 .69-.12.94-.38.25-.27.36-.57.36-.92zm3.95 0H13v4.7c0 .35.11.65.36.92.25.26.53.38.84.38.41 0 .75-.13 1.01-.43.29-.3.37-.65.29-1.07zM22 17v2h-8v-2zm-10-2.93c.28.27.61.49.97.65-.61.94-.97 2.07-.97 3.28 0 1.09.29 2.12.8 3H5c-1.11 0-2-.89-2-2v-4.97c.66.62 1.33.97 2.23.97.87 0 1.66-.36 2.24-.95.6.6 1.4.95 2.31.95.87 0 1.65-.36 2.22-.93"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/storefront-outline.svg���������������������0000664�0000000�0000000�00000001614�14753064456�0030014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.06 3c-.43 0-.84.14-1.22.42s-.6.64-.7 1.08L2.11 8.91c-.25 1.09-.05 2.04.61 2.86l.28.28V19c0 .5.2 1 .61 1.39S4.5 21 5 21h14c.5 0 1-.2 1.39-.61S21 19.5 21 19v-6.95l.28-.28c.66-.82.86-1.77.61-2.86L20.86 4.5c-.13-.44-.36-.8-.73-1.08A1.88 1.88 0 0 0 18.94 3zm13.83 1.97 1.08 4.41c.09.43 0 .82-.28 1.17-.25.31-.56.45-.94.45-.31 0-.58-.1-.8-.34-.22-.23-.34-.5-.37-.82L16.97 5zM5.06 5h1.97l-.61 4.84C6.3 10.63 5.91 11 5.25 11c-.41 0-.72-.14-.94-.45-.28-.35-.37-.74-.28-1.17zm3.99 0H11v4.7c0 .35-.11.65-.36.92-.25.26-.56.38-.94.38-.34 0-.63-.12-.86-.41S8.5 10 8.5 9.66V9.5zM13 5h1.95l.55 4.5c.08.42 0 .77-.29 1.07-.26.3-.6.43-1.01.43-.31 0-.59-.12-.84-.38A1.3 1.3 0 0 1 13 9.7zm-5.55 7.05c.63.62 1.41.95 2.35.95.84 0 1.58-.33 2.2-.95.69.62 1.45.95 2.3.95.87 0 1.62-.33 2.25-.95.56.62 1.31.95 2.25.95h.23v6H5v-6h.25c.91 0 1.64-.33 2.2-.95"/></svg>��������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/storefront-plus-outline.svg����������������0000664�0000000�0000000�00000001650�14753064456�0030775�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.84 3.42c.38-.28.79-.42 1.22-.42h13.88c.44 0 .83.14 1.19.42.37.28.6.64.73 1.08l1.03 4.41c.25 1.09.05 2.04-.61 2.86l-.15.15-.13.14c-.57.59-1.24.94-2.19.94s-1.7-.38-2.27-.95c-.63.62-1.37.95-2.24.95-.85 0-1.62-.3-2.3-.93-.56.56-1.36.93-2.2.93-.94 0-1.7-.33-2.33-.95-.56.54-1.31.95-2.25.95H5v6h7.08c.12.72.37 1.39.72 2H5c-.5 0-1-.22-1.39-.61S3 19.5 3 19v-6.97c-.1-.09-.2-.19-.31-.3-.63-.81-.83-1.73-.58-2.82L3.14 4.5c.1-.44.32-.8.7-1.08m16.13 5.96-1.08-4.41-1.92.03.61 4.84c.03.32.15.59.37.82.22.24.49.34.8.34.38 0 .69-.14.94-.45.28-.35.37-.74.28-1.17M7.03 5H5.06L4.03 9.38c-.09.43 0 .82.28 1.17.22.31.53.45.94.45.66 0 1.05-.37 1.17-1.16M11 5H9.05L8.5 9.5v.16c0 .34.11.64.34.93s.52.41.86.41c.38 0 .69-.12.94-.38.25-.27.36-.57.36-.92M14.95 5H13v4.7c0 .35.11.65.36.92.25.26.53.38.84.38.41 0 .75-.13 1.01-.43.29-.3.37-.65.29-1.07M19 14h-2v3h-3v2h3v3h2v-3h3v-2h-3Z"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/storefront-plus.svg������������������������0000664�0000000�0000000�00000002057�14753064456�0027322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.84 3.42c.38-.28.79-.42 1.22-.42h13.88c.44 0 .83.14 1.19.42.37.28.6.64.73 1.08l1.03 4.41c.25 1.09.05 2.04-.61 2.86l-.15.15-.13.14c-.57.59-1.24.94-2.19.94s-1.7-.38-2.27-.95c-.63.62-1.37.95-2.24.95-.85 0-1.62-.3-2.3-.93-.56.56-1.36.93-2.2.93-.94 0-1.7-.33-2.33-.95-.56.54-1.31.95-2.25.95s-1.59-.36-2.18-.93c-.11-.1-.23-.22-.35-.34-.63-.81-.83-1.73-.58-2.82L3.14 4.5c.1-.44.32-.8.7-1.08m16.13 5.96-1.08-4.41-1.92.03.61 4.84c.03.32.15.59.37.82.22.24.49.34.8.34.38 0 .69-.14.94-.45.28-.35.37-.74.28-1.17M7.03 5H5.06L4.03 9.38c-.09.43 0 .82.28 1.17.22.31.53.45.94.45.66 0 1.05-.37 1.17-1.16M11 5H9.05L8.5 9.5v.16c0 .34.11.64.34.93s.52.41.86.41c.38 0 .69-.12.94-.38.25-.27.36-.57.36-.92M14.95 5H13v4.7c0 .35.11.65.36.92.25.26.53.38.84.38.41 0 .75-.13 1.01-.43.29-.3.37-.65.29-1.07M17 14h2v3h3v2h-3v3h-2v-3h-3v-2h3m-5-2.93c.28.27.61.49.97.65-.61.94-.97 2.07-.97 3.28 0 1.09.29 2.12.8 3H5c-1.11 0-2-.89-2-2v-4.97c.66.62 1.33.97 2.23.97.87 0 1.66-.36 2.24-.95.6.6 1.4.95 2.31.95.87 0 1.65-.36 2.22-.93"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/storefront-remove-outline.svg��������������0000664�0000000�0000000�00000002000�14753064456�0031275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.84 3.42c.38-.28.79-.42 1.22-.42h13.88c.44 0 .83.14 1.19.42.37.28.6.64.73 1.08l1.03 4.41c.25 1.09.05 2.04-.61 2.86l-.15.15-.13.14c-.57.59-1.24.94-2.19.94s-1.7-.38-2.27-.95c-.63.62-1.37.95-2.24.95-.85 0-1.62-.3-2.3-.93-.56.56-1.36.93-2.2.93-.94 0-1.7-.33-2.33-.95-.56.54-1.31.95-2.25.95H5v6h7.08c.12.72.37 1.39.72 2H5c-.5 0-1-.22-1.39-.61S3 19.5 3 19v-6.97c-.1-.09-.2-.19-.31-.3-.63-.81-.83-1.73-.58-2.82L3.14 4.5c.1-.44.32-.8.7-1.08m16.13 5.96-1.08-4.41-1.92.03.61 4.84c.03.32.15.59.37.82.22.24.49.34.8.34.38 0 .69-.14.94-.45.28-.35.37-.74.28-1.17M7.03 5H5.06L4.03 9.38c-.09.43 0 .82.28 1.17.22.31.53.45.94.45.66 0 1.05-.37 1.17-1.16zM11 5H9.05L8.5 9.5v.16c0 .34.11.64.34.93s.52.41.86.41c.38 0 .69-.12.94-.38.25-.27.36-.57.36-.92zm3.95 0H13v4.7c0 .35.11.65.36.92.25.26.53.38.84.38.41 0 .75-.13 1.01-.43.29-.3.37-.65.29-1.07zm6.59 10.88-1.42-1.41L18 16.59l-2.12-2.12-1.41 1.41L16.59 18l-2.12 2.12 1.41 1.42L18 19.41l2.12 2.13 1.42-1.42L19.41 18z"/></svg>mkdocs-material-9.6.4/material/templates/.icons/material/storefront-remove.svg����������������������0000664�0000000�0000000�00000002210�14753064456�0027623�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.84 3.42c.38-.28.79-.42 1.22-.42h13.88c.44 0 .83.14 1.19.42.37.28.6.64.73 1.08l1.03 4.41c.25 1.09.05 2.04-.61 2.86l-.15.15-.13.14c-.57.59-1.24.94-2.19.94s-1.7-.38-2.27-.95c-.63.62-1.37.95-2.24.95-.85 0-1.62-.3-2.3-.93-.56.56-1.36.93-2.2.93-.94 0-1.7-.33-2.33-.95-.56.54-1.31.95-2.25.95s-1.59-.36-2.18-.93c-.11-.1-.23-.22-.35-.34-.63-.81-.83-1.73-.58-2.82L3.14 4.5c.1-.44.32-.8.7-1.08m16.13 5.96-1.08-4.41-1.92.03.61 4.84c.03.32.15.59.37.82.22.24.49.34.8.34.38 0 .69-.14.94-.45.28-.35.37-.74.28-1.17M7.03 5H5.06L4.03 9.38c-.09.43 0 .82.28 1.17.22.31.53.45.94.45.66 0 1.05-.37 1.17-1.16zM11 5H9.05L8.5 9.5v.16c0 .34.11.64.34.93s.52.41.86.41c.38 0 .69-.12.94-.38.25-.27.36-.57.36-.92zm3.95 0H13v4.7c0 .35.11.65.36.92.25.26.53.38.84.38.41 0 .75-.13 1.01-.43.29-.3.37-.65.29-1.07zm5.17 9.46 1.42 1.42L19.41 18l2.13 2.12-1.42 1.42L18 19.41l-2.12 2.13-1.41-1.42L16.59 18l-2.12-2.12 1.41-1.41L18 16.59zM12 14.07c.28.27.61.49.97.65-.61.94-.97 2.07-.97 3.28 0 1.09.29 2.12.8 3H5c-1.11 0-2-.89-2-2v-4.97c.66.62 1.33.97 2.23.97.87 0 1.66-.36 2.24-.95.6.6 1.4.95 2.31.95.87 0 1.65-.36 2.22-.93"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/storefront.svg�����������������������������0000664�0000000�0000000�00000002102�14753064456�0026330�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.06 3c-.43 0-.84.14-1.22.42s-.6.64-.7 1.08L2.11 8.91c-.25 1.09-.05 2.01.58 2.82.12.12.24.24.35.34.59.57 1.24.93 2.18.93s1.69-.41 2.25-.95c.63.62 1.39.95 2.33.95.84 0 1.64-.37 2.2-.93.68.63 1.45.93 2.3.93.87 0 1.61-.33 2.24-.95.57.57 1.32.95 2.27.95s1.62-.35 2.19-.94c.09-.09.18-.19.28-.29.66-.82.86-1.77.61-2.86L20.86 4.5c-.13-.44-.36-.8-.73-1.08A1.88 1.88 0 0 0 18.94 3m-.05 1.97 1.08 4.41c.09.43 0 .82-.28 1.17-.25.31-.56.45-.94.45-.31 0-.58-.1-.8-.34-.22-.23-.34-.5-.37-.82L16.97 5M5.06 5h1.97l-.61 4.84C6.3 10.63 5.91 11 5.25 11c-.41 0-.72-.14-.94-.45-.28-.35-.37-.74-.28-1.17M9.05 5H11v4.7c0 .35-.11.65-.36.92-.25.26-.56.38-.94.38-.34 0-.63-.12-.86-.41S8.5 10 8.5 9.66V9.5M13 5h1.95l.55 4.5c.08.42 0 .77-.29 1.07-.26.3-.6.43-1.01.43-.31 0-.59-.12-.84-.38A1.3 1.3 0 0 1 13 9.7M3 14.03V19c0 1.11.89 2 2 2h14a2 2 0 0 0 2-2v-4.95c-.55.58-1.25.91-2 .95-1 .03-1.75-.26-2.46-.95-.6.6-1.4.95-2.24.95-.9 0-1.7-.36-2.3-.93-.57.57-1.35.93-2.22.93-.91 0-1.71-.35-2.31-.95-.58.59-1.37.95-2.24.95-.9 0-1.57-.35-2.23-.97"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/stove.svg����������������������������������0000664�0000000�0000000�00000000726�14753064456�0025275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 14h2l3 3H9zM4 4h1V3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v1h2V3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v1h1a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2v1h-3v-1H7v1H4v-1a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2m14 3a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m-4 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m6-1H4v4h16zM4 19h16v-7H4zM6 7a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m7 7h2l3 3h-2z"/></svg>������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/strategy.svg�������������������������������0000664�0000000�0000000�00000000762�14753064456�0025777�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6.91 5.5 2.3 2.29-1.42 1.42-2.29-2.3-2.29 2.3-1.42-1.42 2.3-2.29-2.3-2.29 1.42-1.42 2.29 2.3 2.29-2.3 1.42 1.42m13 13-1.42-1.42-2.29 2.3-2.29-2.3-1.42 1.42 2.3 2.29-2.3 2.29 1.42 1.42 2.29-2.3 2.29 2.3 1.42-1.42-2.3-2.29m.49-11.67L17.18 11 15.6 9.73l1.17-1.5a9.08 9.08 0 0 0-6.66 5.62A4.5 4.5 0 1 1 7.5 13a4 4 0 0 1 .78.08 11.27 11.27 0 0 1 8.15-6.82L15 5.18l1.27-1.58M10 17.5A2.5 2.5 0 1 0 7.5 20a2.5 2.5 0 0 0 2.5-2.5"/></svg>��������������mkdocs-material-9.6.4/material/templates/.icons/material/stretch-to-page-outline.svg����������������0000664�0000000�0000000�00000000554�14753064456�0030617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2m0 18H4V4h16M8.83 10.25 7.29 8.71 6 10V6h4L8.71 7.29l1.54 1.54m3.5 0 1.54-1.54L14 6h4v4l-1.29-1.29-1.54 1.54m0 3.5 1.54 1.54L18 14v4h-4l1.29-1.29-1.54-1.54m-3.5 0-1.54 1.54L10 18H6v-4l1.29 1.29 1.54-1.54"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/stretch-to-page.svg������������������������0000664�0000000�0000000�00000000554�14753064456�0027142�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2M9 19H5v-4l1.29 1.29 1.54-1.54 1.42 1.42-1.54 1.54m.12-8.46L6.29 7.71 5 9V5h4L7.71 6.29l1.54 1.54M19 19h-4l1.29-1.29-1.54-1.54 1.42-1.42 1.54 1.54L19 15m0-6-1.29-1.29-1.54 1.54-1.42-1.42 1.54-1.54L15 5h4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/string-lights-off.svg����������������������0000664�0000000�0000000�00000001676�14753064456�0027510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 10.74V8.96c.95-.06 1.86-.15 2.74-.29l.42 1.72a3.1 3.1 0 0 0-.43 2.43c.09.35.18.68.27.98l4.12 4.12c2.49-.66 1.97-4.37 1.44-6.53-.2-.8-.74-1.54-1.51-1.95l-.42-1.7c.48-.16.94-.33 1.37-.51V5c-2 1.07-5.47 2.03-10 2.03-.63 0-1.24-.03-1.83-.06m10.55 9.53c-1.45.34-2.53-4.03-2.53-4.03s-.36-1.47 1.1-1.82 1.81 1.1 1.81 1.1 1.08 4.37-.38 4.75m-5.77-2.21-1.45-1.46-1.32-1.33L10 9.34l-.42-.41h.01L7.32 6.66 2.39 1.73 1.11 3l2.8 2.8C3.19 5.55 2.53 5.28 2 5v2.23c.43.18.89.35 1.37.51l-.42 1.7a3.07 3.07 0 0 0-1.51 1.95c-.535 2.18-1.055 5.92 1.48 6.54C4 18.2 6 17.89 7.27 12.82c.19-.82.06-1.7-.43-2.43l.33-1.33 2.33 2.32c-.32.49-.5 1.06-.5 1.62 0 2.24.39 6 3 6 .8 0 1.97-.41 2.59-2.5l6.25 6.23 1.27-1.27-7.16-7.16zm-9.14-1.82s-1.07 4.37-2.53 4.03c-1.46-.38-.38-4.75-.38-4.75s.36-1.46 1.81-1.1 1.1 1.82 1.1 1.82M12 17.5c-1.5 0-1.5-4.5-1.5-4.5s0-.23.1-.5l2.72 2.71c-.19 1.14-.56 2.29-1.32 2.29"/></svg>������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/string-lights.svg��������������������������0000664�0000000�0000000�00000001475�14753064456�0026735�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.56 11.39c-.2-.8-.74-1.54-1.51-1.95l-.42-1.7c.48-.16.94-.33 1.37-.51V5c-2 1.07-5.47 2.03-10 2.03S4 6.07 2 5v2.23c.43.18.89.35 1.37.51l-.42 1.7a3.07 3.07 0 0 0-1.51 1.95c-.535 2.18-1.055 5.92 1.48 6.54C4 18.2 6 17.89 7.27 12.82c.19-.82.06-1.7-.43-2.43l.42-1.72c.88.14 1.79.23 2.74.29v1.78c-.65.59-1 1.43-1 2.26 0 2.24.39 6 3 6 1.12 0 3-.78 3-6 0-.83-.35-1.67-1-2.26V8.96c.95-.06 1.86-.15 2.74-.29l.42 1.72a3.1 3.1 0 0 0-.43 2.43C18 17.89 20 18.2 21.08 17.93c2.53-.62 2.01-4.36 1.48-6.54M5.81 12.47s-1.07 4.37-2.53 4.03c-1.46-.38-.38-4.75-.38-4.75s.36-1.46 1.81-1.1 1.1 1.82 1.1 1.82M12 17.5c-1.5 0-1.5-4.5-1.5-4.5s0-1.5 1.5-1.5 1.5 1.5 1.5 1.5 0 4.5-1.5 4.5m8.72-1c-1.45.34-2.53-4.03-2.53-4.03s-.36-1.47 1.1-1.82 1.81 1.1 1.81 1.1 1.08 4.37-.38 4.75"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/subdirectory-arrow-left.svg����������������0000664�0000000�0000000�00000000212�14753064456�0030721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11 9 1.42 1.42L8.83 14H18V4h2v12H8.83l3.59 3.58L11 21l-6-6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/subdirectory-arrow-right.svg���������������0000664�0000000�0000000�00000000212�14753064456�0031104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19 15-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/submarine.svg������������������������������0000664�0000000�0000000�00000000535�14753064456�0026120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 3.67C6.78 4.53 5.39 4.93 4 5H2v2h2c1.37 0 2.74-.35 4-1 2.5 1.3 5.5 1.3 8 0 1.26.65 2.62.94 4 1h2V5h-2c-1.39 0-2.78-.47-4-1.33-2.44 1.71-5.56 1.71-8 0m8 5L15 10v2h-1l-2 2H9l-3 2-1-2H4v2l-2 1 2 1v2h1.14L6 18l3 2h11a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-2l-1-1v-1h-1v-2h1V8.67Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/subtitles-outline.svg����������������������0000664�0000000�0000000�00000000321�14753064456�0027617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2zm0 14V6H4v12zM6 10h2v2H6zm0 4h8v2H6zm10 0h2v2h-2zm-6-4h8v2h-8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/subtitles.svg������������������������������0000664�0000000�0000000�00000000312�14753064456�0026142�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2M4 12h4v2H4zm10 6H4v-2h10zm6 0h-4v-2h4zm0-4H10v-2h10z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/subway-alert-variant.svg�������������������0000664�0000000�0000000�00000000572�14753064456�0030215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 11V6h-5v5zm-1.5 6c.8 0 1.5-.7 1.5-1.5s-.7-1.5-1.5-1.5-1.5.7-1.5 1.5.7 1.5 1.5 1.5M9 11V6H4v5zm-3.5 6c.8 0 1.5-.7 1.5-1.5S6.3 14 5.5 14 4 14.7 4 15.5 4.7 17 5.5 17M10 2c4.4 0 8 .5 8 4v9.5c0 1.9-1.6 3.5-3.5 3.5l1.5 1.5v.5H4v-.5L5.5 19C3.6 19 2 17.4 2 15.5V6c0-3.5 3.6-4 8-4m10 11V7h2v6zm0 4v-2h2v2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/subway-variant.svg�������������������������0000664�0000000�0000000�00000000623�14753064456�0027105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 11h-5V6h5m-1.5 11a1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5 1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5M11 11H6V6h5M7.5 17A1.5 1.5 0 0 1 6 15.5 1.5 1.5 0 0 1 7.5 14 1.5 1.5 0 0 1 9 15.5 1.5 1.5 0 0 1 7.5 17M12 2c-4.42 0-8 .5-8 4v9.5A3.5 3.5 0 0 0 7.5 19L6 20.5v.5h12v-.5L16.5 19a3.5 3.5 0 0 0 3.5-3.5V6c0-3.5-3.58-4-8-4"/></svg>�������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/subway.svg���������������������������������0000664�0000000�0000000�00000000732�14753064456�0025444�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.5 15a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1M7 9h10v5H7zm8.5 6a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m2.5.88V9c0-2.62-2.68-3-6-3-3 0-6 .37-6 3v6.88a2.62 2.62 0 0 0 2.62 2.62L7.5 19.62V20h1.67l1.5-1.5h2.83L15 20h1.5v-.38l-1.13-1.12c1.45 0 2.63-1.17 2.63-2.62M17.8 2.8C20.47 3.84 22 6.05 22 8.86V22H2V8.86C2 6.05 3.53 3.84 6.2 2.8 8 2.09 10.14 2 12 2s4 .09 5.8.8"/></svg>��������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/summit.svg���������������������������������0000664�0000000�0000000�00000000200�14753064456�0025436�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 3h2l5 2-5 2v3.17L22 21H2l6-8 3.5 4.7 3.5-7.53z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sun-angle-outline.svg����������������������0000664�0000000�0000000�00000000625�14753064456�0027501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.8 5.2C13 5 12.2 5 11.4 5l3.2-2.7 1.4 4c-.7-.5-1.4-.8-2.2-1.1M7 7.1c.6-.6 1.3-1.1 2-1.4l-4.1-.8.7 4.1c.4-.7.8-1.4 1.4-1.9m-1.8 6.7C5 13 5 12.2 5 11.4l-2.7 3.2 4 1.4c-.5-.6-.9-1.4-1.1-2.2M22 19v2H3l5.4-5.5c-1.9-2-1.9-5.1 0-7.1 1.9-1.9 5.1-1.9 7 0l3-3 1.4 1.4L7.7 19zM9.8 14.1 14 9.8c-1.2-1.1-3-1.1-4.2 0-1.1 1.2-1.1 3.1 0 4.3"/></svg>�����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sun-angle.svg������������������������������0000664�0000000�0000000�00000000532�14753064456�0026021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.8 5.2C13 5 12.2 5 11.4 5l3.2-2.7 1.4 4c-.7-.5-1.4-.8-2.2-1.1M7 7.1c.6-.6 1.3-1.1 2-1.4l-4.1-.8.7 4.1c.4-.7.8-1.4 1.4-1.9m-1.8 6.7C5 13 5 12.2 5 11.4l-2.7 3.2 4 1.4c-.5-.6-.9-1.4-1.1-2.2M22 19v2H3l5.4-5.5c-1.9-2-1.9-5.1 0-7.1 1.9-1.9 5.1-1.9 7 0l3-3 1.4 1.4L7.7 19z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sun-clock-outline.svg����������������������0000664�0000000�0000000�00000001303�14753064456�0027500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.1 9.32 19.65 6l-4.15-.36c.6.51 1.13 1.14 1.55 1.86.32.55.53 1.13.68 1.72C17.18 9.08 16.6 9 16 9h-.42A5.01 5.01 0 0 0 11 6c-2.76 0-5 2.24-5 5a5.01 5.01 0 0 0 3 4.58V16c0 3.87 3.13 7 7 7s7-3.13 7-7c0-3.13-2.06-5.79-4.9-6.68M8 11c0-1.65 1.35-3 3-3 1.08 0 2.03.58 2.56 1.45-1.9.7-3.41 2.21-4.11 4.11A3 3 0 0 1 8 11m8 10c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5m.5-4.75 2.86 1.69-.75 1.22L15 17v-5h1.5zM11 4c-.84 0-1.65.15-2.39.42L11 1l2.39 3.42C12.65 4.15 11.84 4 11 4M4.95 14.5c.42.74.96 1.36 1.55 1.87L2.36 16l1.76-3.77c.14.77.41 1.55.83 2.27m-.84-4.71L2.34 6l4.16-.35A7.2 7.2 0 0 0 4.94 7.5c-.44.74-.69 1.5-.83 2.29"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sun-clock.svg������������������������������0000664�0000000�0000000�00000001032�14753064456�0026022�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.1 9.3 19.6 6l-4.1-.4c.6.5 1.1 1.1 1.5 1.9.3.6.5 1.1.7 1.7-.5-.1-1.1-.2-1.7-.2h-.4c-.8-1.8-2.5-3-4.6-3-2.8 0-5 2.2-5 5 0 2.1 1.2 3.8 3 4.6v.4c0 3.9 3.1 7 7 7s7-3.1 7-7c0-3.1-2.1-5.8-4.9-6.7M16 21c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5m.5-4.8 2.9 1.7-.8 1.2L15 17v-5h1.5zM11 4c-.8 0-1.6.2-2.4.4L11 1l2.4 3.4c-.8-.2-1.6-.4-2.4-.4M4.9 14.5c.4.7 1 1.4 1.6 1.9L2.4 16l1.8-3.8c.1.8.3 1.6.7 2.3m-.8-4.7L2.3 6l4.2-.3c-.6.5-1.1 1.1-1.6 1.8-.4.7-.7 1.5-.8 2.3"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sun-compass.svg����������������������������0000664�0000000�0000000�00000001265�14753064456�0026404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.7 4.3 12 1l2.3 3.3c-.7-.2-1.5-.3-2.3-.3s-1.6.1-2.3.3m7.8 1.9c1.1 1.1 2 2.5 2.3 4.1l1.7-3.7zM5 8.1q.15-.15 0 0c.1-.1.1-.1.1-.2.4-.6.9-1.2 1.4-1.7l-4 .3 1.7 3.7c.2-.7.5-1.5.8-2.1m14.2 7.3s0 .1 0 0c-.1.2-.2.4-.3.5v.2c-.4.7-.9 1.2-1.4 1.8l4.1-.3-1.7-3.7c-.2.5-.4 1-.7 1.5m-14 .8c0-.1-.1-.1-.1-.2-.1-.1-.1-.1-.1-.2-.1-.2-.2-.3-.2-.5-.2-.5-.4-1-.5-1.5l-1.7 3.7 4.1.3c-.7-.5-1.1-1-1.5-1.6m7.4 3.8h-1.2c-.6 0-1.2-.2-1.7-.3L12 23l2.3-3.3c-.5.1-1.1.2-1.7.3m3.6-12.2c-2.3-2.3-6.1-2.3-8.5 0s-2.3 6.1 0 8.5 6.1 2.3 8.5 0 2.4-6.2 0-8.5m-7.7 7.7 2.1-4.9 5-2.2-2.1 4.9zm4.2-2.8c-.4.4-1 .4-1.4 0s-.4-1 0-1.4 1-.4 1.4 0 .4 1 0 1.4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sun-snowflake-variant.svg������������������0000664�0000000�0000000�00000001204�14753064456�0030363�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.92 1.58-1.74 1 1.21 2.09-.59 2.18L9 7.6 7.38 6l.04-2.41H5.43v1.83H3.59l.01 2H6l1.65 1.61-.75 2.79-2.22.58-2.09-1.2-1 1.73 1.58.91-.91 1.58 1.74 1 1.19-2.09 2.23-.58.5.51 1.4-1.4-.54-.54.75-2.78 2.79-.76.53.54 1.41-1.41-.53-.54.59-2.18L16.41 4l-1-1.75-1.58.91zM20.72 4 4 20.72 5.27 22l4.89-4.89a4.99 4.99 0 0 0 7.67-2.82c.39-1.43.1-2.93-.72-4.13L22 5.27zm-1.98 5c.44.63.79 1.38 1.01 2.19s.28 1.62.21 2.42l2.69-3.2zm.58 6.95c-.32.72-.82 1.4-1.39 1.99-.59.59-1.27 1.06-1.97 1.4l4.09.72zM9 18.71l1.41 3.95 3.18-2.71c-.78.05-1.59.02-2.4-.19-.83-.22-1.57-.59-2.19-1.05"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sun-snowflake.svg��������������������������0000664�0000000�0000000�00000000573�14753064456�0026731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31l1-1v-4.48l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22v-2h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V1.69m-2 4.4v2.04c-1.76.46-3 2.05-3 3.87a4.01 4.01 0 0 0 3 3.87v2.04A6 6 0 0 1 6 12c0-2.93 2.11-5.43 5-5.91"/></svg>�������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sun-thermometer-outline.svg����������������0000664�0000000�0000000�00000001037�14753064456�0030744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2 7.6 5.4C8.4 5.2 9.2 5 10 5s1.6.2 2.4.4zm11 11.8V7c0-1.1-.9-2-2-2s-2 .9-2 2v6.8c-.6.6-1 1.4-1 2.2 0 1.7 1.3 3 3 3s3-1.3 3-3c0-.9-.4-1.7-1-2.2M20 8h-2V7c0-.6.4-1 1-1s1 .4 1 1zM5.5 6.7 1.3 7l1.8 3.8c.1-.8.4-1.6.8-2.3.5-.7 1-1.3 1.6-1.8M10 7c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5m0 8c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3m-6.8-1.8L1.4 17l4.1.4c-.5-.5-1.1-1.2-1.5-1.9-.5-.7-.7-1.5-.8-2.3m4.4 5.4L10 22l2.4-3.4c-.8.2-1.6.4-2.4.4-.9 0-1.7-.2-2.4-.4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sun-thermometer.svg������������������������0000664�0000000�0000000�00000001007�14753064456�0027264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2 7.6 5.4C8.4 5.2 9.2 5 10 5s1.6.2 2.4.4M19 5c-1.11 0-2 .89-2 2v6.76c-.64.57-1 1.39-1 2.24 0 1.66 1.34 3 3 3s3-1.34 3-3c0-.85-.36-1.67-1-2.23V7c0-1.11-.89-2-2-2m0 1c.55 0 1 .45 1 1v1h-2V7c0-.55.45-1 1-1m-13.5.7L1.3 7l1.8 3.8c.1-.8.4-1.6.8-2.3.5-.7 1-1.3 1.6-1.8M10 7c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5m-6.8 6.2L1.4 17l4.1.4c-.5-.5-1.1-1.2-1.5-1.9-.5-.7-.7-1.5-.8-2.3m4.4 5.4L10 22l2.4-3.4c-.8.2-1.6.4-2.4.4-.9 0-1.7-.2-2.4-.4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sun-wireless-outline.svg�������������������0000664�0000000�0000000�00000001071�14753064456�0030244�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11 1 2.39 3.42C12.65 4.15 11.84 4 11 4s-1.65.15-2.39.42zM2.34 6l4.16-.35A7.2 7.2 0 0 0 4.94 7.5c-.44.74-.69 1.5-.83 2.29zm.02 10 1.76-3.77a7.131 7.131 0 0 0 2.38 4.14zM19.65 6l-1.77 3.79a7.02 7.02 0 0 0-2.38-4.15zM23 13h-2c0 2.05-.78 4.1-2.34 5.66A7.96 7.96 0 0 1 13 21v2c2.56 0 5.12-1 7.07-2.93S23 15.56 23 13m-4 0h-2c0 1-.39 2.05-1.17 2.83S14 17 13 17v2a5.989 5.989 0 0 0 6-6m-8-5c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3m0-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sun-wireless.svg���������������������������0000664�0000000�0000000�00000001000�14753064456�0026557�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 6c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5m0-5 2.39 3.42C12.65 4.15 11.84 4 11 4s-1.65.15-2.39.42zM2.34 6l4.16-.35A7.2 7.2 0 0 0 4.94 7.5c-.44.74-.69 1.5-.83 2.29zm.02 10 1.76-3.77a7.131 7.131 0 0 0 2.38 4.14zM19.65 6l-1.77 3.79a7.02 7.02 0 0 0-2.38-4.15zM23 13h-2c0 2.05-.78 4.1-2.34 5.66A7.96 7.96 0 0 1 13 21v2c2.56 0 5.12-1 7.07-2.93S23 15.56 23 13m-4 0h-2c0 1-.39 2.05-1.17 2.83S14 17 13 17v2a5.989 5.989 0 0 0 6-6"/></svg>mkdocs-material-9.6.4/material/templates/.icons/material/sunglasses.svg�����������������������������0000664�0000000�0000000�00000000675�14753064456�0026327�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 17H4C2.38 17 .96 15.74.76 14.14l-.5-2.99C.15 10.3.39 9.5.91 8.92S2.19 8 3 8h6c.83 0 1.58.35 2.06.96.11.15.21.31.29.49.43-.09.87-.09 1.29 0 .08-.18.18-.34.3-.49C13.41 8.35 14.16 8 15 8h6c.81 0 1.57.34 2.09.92.51.58.75 1.38.65 2.19l-.51 3.07C23.04 15.74 21.61 17 20 17h-3c-1.56 0-3.08-1.19-3.46-2.7l-.9-2.71c-.38-.28-.91-.28-1.29 0l-.92 2.78C10.07 15.82 8.56 17 7 17"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/surfing.svg��������������������������������0000664�0000000�0000000�00000001304�14753064456�0025603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 23v-2c-1.41.05-2.78-.1-4-1-1.76 1.25-4.23 1.25-6 0-1.77 1.25-4.24 1.25-6 0-1.22.9-2.59 1.05-4 1v2c1.37.05 2.78-.06 4-.75 1.84 1 4.15 1 6 0 1.85 1 4.16 1 6 0 1.22.69 2.63.8 4 .75m-1.5-11.03V9.95c-1.76.01-3.5-.95-4.32-2.54l-.89-1.55c-.29-.46-.74-.75-1.22-.89L8.5 3.94 5 6.38 6.13 8l2.82-1.9 2.02.33-2.16 1.45C8.21 8.29 7.88 9 8 9.71l.53 3.1C7.12 12.26 3.21 11 3 13.23c.36 2.44 3.07 4.09 5.06 5.59 1.44.47 3-.24 3.94-1.36 1.32 1.7 3.89 2 5.5.54-.47-.42-1-.85-1.5-1.2v-3.85l-3.81-3 2.25-1.51C15.62 10.59 18 12 20.5 11.97M14 14v1.47c0-.04-2.34-1.31-2.19-1.23l-1.08-.54-.42-2.62zm5-10.5c0 1.11-.89 2-2 2s-2-.89-2-2 .9-2 2-2 2 .9 2 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/surround-sound-2-0.svg���������������������0000664�0000000�0000000�00000000374�14753064456�0027437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 7v2h4v2H5c-1.1 0-2 .9-2 2v4h6v-2H5v-2h2c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm10 10h-2v-2h2zm4-10c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 2h2v6h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/surround-sound-2-1.svg���������������������0000664�0000000�0000000�00000000270�14753064456�0027433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 7v2h4v2H6c-1.1 0-2 .9-2 2v4h6v-2H6v-2h2c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm10 10h-2v-2h2zm2-10v2h2v8h2V7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/surround-sound-3-1.svg���������������������0000664�0000000�0000000�00000000330�14753064456�0027431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 17h-2v-2h2zm6-10v10h-2V9h-2V7zm-10 8c0 1.1-.9 2-2 2H4v-2h4v-2H6v-2h2V9H4V7h4c1.1 0 2 .9 2 2v1.5c0 .8-.7 1.5-1.5 1.5.8 0 1.5.7 1.5 1.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/surround-sound-5-1-2.svg�������������������0000664�0000000�0000000�00000000401�14753064456�0027571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 7v2h4v2h-2c-1.1 0-2 .9-2 2v4h6v-2h-4v-2h2c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zM9 17H7v-2h2zM9 7v2h2v8h2V7zM0 7v6h4v2H0v2h4c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2H2V9h4V7zm17 10h-2v-2h2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/surround-sound-5-1.svg���������������������0000664�0000000�0000000�00000000254�14753064456�0027440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 17h-2v-2h2zm6-10v10h-2V9h-2V7zM10 7v2H6v2h2c1.1 0 2 .9 2 2v2c0 1.1-.9 2-2 2H4v-2h4v-2H4V7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/surround-sound-7-1.svg���������������������0000664�0000000�0000000�00000000206�14753064456�0027437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 17h-2v-2h2zm6-10v10h-2V9h-2V7zM4 17l4-8H4V7h6v2l-4 8"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/surround-sound.svg�������������������������0000664�0000000�0000000�00000001005�14753064456�0027133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2M7.76 16.24l-1.41 1.41A7.9 7.9 0 0 1 4 12c0-2.05.78-4.1 2.34-5.66l1.41 1.41A6.05 6.05 0 0 0 6 12c0 1.54.59 3.07 1.76 4.24M12 16a4 4 0 0 1-4-4 4 4 0 0 1 4-4 4 4 0 0 1 4 4 4 4 0 0 1-4 4m5.66 1.66-1.41-1.41A6.05 6.05 0 0 0 18 12c0-1.54-.59-3.07-1.76-4.24l1.41-1.41A7.9 7.9 0 0 1 20 12c0 2.05-.78 4.1-2.34 5.66M12 10a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/svg.svg������������������������������������0000664�0000000�0000000�00000001343�14753064456�0024730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.13 10.71h3.74L6.22 8.06c-1.01 0-1.83-.82-1.83-1.84a1.83 1.83 0 0 1 1.83-1.83c1.02 0 1.84.82 1.84 1.83l2.65 2.65V5.13a1.84 1.84 0 0 1 0-2.59 1.81 1.81 0 0 1 2.58 0c.71.71.71 1.87 0 2.59v3.74l2.66-2.65a1.83 1.83 0 0 1 3.66 0c0 1.02-.82 1.84-1.83 1.84l-2.65 2.65h3.74a1.84 1.84 0 0 1 2.59 0c.72.71.72 1.87 0 2.58-.71.71-1.87.71-2.59 0h-3.74l2.65 2.66c1.01 0 1.83.81 1.83 1.83a1.83 1.83 0 0 1-1.83 1.83c-1.02 0-1.83-.82-1.83-1.83l-2.66-2.65v3.74c.71.72.71 1.88 0 2.59-.71.72-1.87.72-2.58 0a1.84 1.84 0 0 1 0-2.59v-3.74l-2.65 2.65c0 1.01-.82 1.83-1.84 1.83a1.83 1.83 0 0 1 0-3.66l2.65-2.66H5.13c-.72.71-1.88.71-2.59 0a1.81 1.81 0 0 1 0-2.58 1.84 1.84 0 0 1 2.59 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/swap-horizontal-bold.svg�������������������0000664�0000000�0000000�00000000175�14753064456�0030212�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 10v3h6v5H8v3l-6-5.5zm14-1.5L16 3v3h-6v5h6v3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/swap-horizontal-circle-outline.svg���������0000664�0000000�0000000�00000000376�14753064456�0032213�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m3-13.5V9h-4v2h4v2.5l3.5-3.5zm-6 4L5.5 14 9 17.5V15h4v-2H9z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/swap-horizontal-circle.svg�����������������0000664�0000000�0000000�00000000314�14753064456�0030526�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 12c0-5.5-4.5-10-10-10S2 6.5 2 12s4.5 10 10 10 10-4.5 10-10m-7-5.5 3.5 3.5-3.5 3.5V11h-4V9h4zm-6 11L5.5 14 9 10.5V13h4v2H9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/swap-horizontal-hidden.svg�����������������0000664�0000000�0000000�00000000232�14753064456�0030517�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17 5 4 4-4 4zm-1 3h-3v2h3zm-4 2V8h-2v2zm-9 5 4-4v8zm5 1h3v-2H8zm4-2v2h2v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/swap-horizontal-variant.svg����������������0000664�0000000�0000000�00000000343�14753064456�0030733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4 6 4 4V7h8a2 2 0 0 1 2 2 2 2 0 0 1-2 2H8a4 4 0 0 0-4 4 4 4 0 0 0 4 4h8v3l4-4-4-4v3H8a2 2 0 0 1-2-2 2 2 0 0 1 2-2h8a4 4 0 0 0 4-4 4 4 0 0 0-4-4H8V2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/swap-horizontal.svg������������������������0000664�0000000�0000000�00000000173�14753064456�0027272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21 9-4-4v3h-7v2h7v3M7 11l-4 4 4 4v-3h7v-2H7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/swap-vertical-bold.svg���������������������0000664�0000000�0000000�00000000201�14753064456�0027620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 8h-3v6H6V8H3l5.5-6zm1.5 14 5.5-6h-3v-6h-5v6h-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/swap-vertical-circle-outline.svg�����������0000664�0000000�0000000�00000000401�14753064456�0031620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8M6.5 9 10 5.5 13.5 9H11v4H9V9zm11 6L14 18.5 10.5 15H13v-4h2v4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/swap-vertical-circle.svg�������������������0000664�0000000�0000000�00000000310�14753064456�0030142�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2M6.5 9 10 5.5 13.5 9H11v4H9V9zm11 6L14 18.5 10.5 15H13v-4h2v4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/swap-vertical-variant.svg������������������0000664�0000000�0000000�00000000344�14753064456�0030354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18 4-4 4h3v8a2 2 0 0 1-2 2 2 2 0 0 1-2-2V8a4 4 0 0 0-4-4 4 4 0 0 0-4 4v8H2l4 4 4-4H7V8a2 2 0 0 1 2-2 2 2 0 0 1 2 2v8a4 4 0 0 0 4 4 4 4 0 0 0 4-4V8h3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/swap-vertical.svg��������������������������0000664�0000000�0000000�00000000171�14753064456�0026710�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 3 5 7h3v7h2V7h3m3 10v-7h-2v7h-3l4 4 4-4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/swim.svg�����������������������������������0000664�0000000�0000000�00000000702�14753064456�0025106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 18c2.22-1 4.44-2 6.67-2 2.22 0 4.44 2 6.66 2 2.23 0 4.45-2 6.67-2v3c-2.22 0-4.44 2-6.67 2-2.22 0-4.44-2-6.66-2-2.23 0-4.45 1-6.67 2zm6.67-5c-.78 0-1.55.12-2.32.32l4.92-3.44-1.04-1.24c-.14-.17-.23-.4-.23-.64 0-.34.17-.65.44-.83l5.72-4 1.15 1.63-4.84 3.39 5.23 6.23c-.79.33-1.58.58-2.37.58-2.22 0-4.44-2-6.66-2M18 7a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2"/></svg>��������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/switch.svg���������������������������������0000664�0000000�0000000�00000000430�14753064456�0025426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 18h1a1 1 0 0 1 1 1h7v2h-7a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1H2v-2h7a1 1 0 0 1 1-1h1v-2H8a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1h-3zm0-12h1V4h-1zM9 4v2h2V4zm0 4v2h2V8zm0 4v2h2v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sword-cross.svg����������������������������0000664�0000000�0000000�00000000674�14753064456�0026424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6.2 2.44 11.9 11.9 2.12-2.12 1.41 1.41-2.47 2.47 3.18 3.18c.39.39.39 1.02 0 1.41l-.71.71a.996.996 0 0 1-1.41 0L17 18.23l-2.44 2.47-1.41-1.41 2.12-2.12-11.9-11.9V2.44zM15.89 10l4.74-4.74V2.44H17.8l-4.74 4.74zm-4.95 5-2.83-2.87-2.21 2.21-2.12-2.12-1.41 1.41 2.47 2.47-3.18 3.19a.996.996 0 0 0 0 1.41l.71.71c.39.39 1.02.39 1.41 0L7 18.23l2.44 2.47 1.41-1.41-2.12-2.12z"/></svg>��������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sword.svg����������������������������������0000664�0000000�0000000�00000000405�14753064456�0025265�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.92 5H5l9 9 1-.94m4.96 6.06-.84.84a.996.996 0 0 1-1.41 0l-3.12-3.12-2.68 2.66-1.41-1.41 1.42-1.42L3 7.75V3h4.75l8.92 8.92 1.42-1.42 1.41 1.41-2.67 2.67 3.12 3.12c.4.4.4 1.03.01 1.42"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/syllabary-hangul.svg�����������������������0000664�0000000�0000000�00000000410�14753064456�0027401�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 4v2H4v2h2.39C5.55 8.74 5 9.8 5 11c0 2.2 1.8 4 4 4s4-1.8 4-4c0-1.2-.55-2.26-1.39-3H14V6h-4V4m5 0v12h2v-5h3V9h-3V4M9 9c1.12 0 2 .88 2 2s-.88 2-2 2-2-.88-2-2 .88-2 2-2m-2 7v4h10v-2H9v-2Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/syllabary-hiragana.svg���������������������0000664�0000000�0000000�00000001111�14753064456�0027674�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 4v2H6v2h3v2c-2.75 0-5 2.27-5 5.03a5.04 5.04 0 0 0 5.03 5.03c.86 0 1.69-.29 2.37-.8.23.28.48.56.75.83l1.41-1.42c-.26-.25-.49-.52-.7-.78l1-1c1.07-1.07 1.92-2.66 2.56-4.3.89.52 1.58 1.31 1.58 2.41 0 1.32-.53 2.6-1.46 3.54l1.41 1.41A7 7 0 0 0 20 15c0-1.96-1.18-3.64-2.85-4.45l.35-1.26-1.95-.51-.34 1.27c-.08 0-.15-.05-.24-.05H11V8h5V6h-5V4m0 8h3.5c-.56 1.37-1.31 2.72-2.06 3.47l-.65.66c-.54-1.2-.79-2.54-.79-4.13m-2 0c0 2.07.41 3.94 1.3 5.59-.36.3-.8.47-1.27.47-1.7 0-3.03-1.33-3.03-3.03C6 13.34 7.32 12 9 12"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/syllabary-katakana-halfwidth.svg�����������0000664�0000000�0000000�00000000260�14753064456�0031651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 4v2h6l-1 4.81 2 .39 1-5.1V4m-6 5v3c0 2.86-.66 5.29-1.92 6.61L9.5 20c1.85-1.92 2.5-4.85 2.5-8V9Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/syllabary-katakana.svg���������������������0000664�0000000�0000000�00000000300�14753064456�0027674�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4v2h14v.09l-3.71 3.7 1.42 1.42L20 6.91V4m-9 5v4c0 2.78-.75 3.89-2.64 5.46L9.64 20c2.11-1.76 3.36-3.78 3.36-7V9Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/symbol.svg���������������������������������0000664�0000000�0000000�00000000457�14753064456�0025443�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 7v7h2V7zm4 0v2h4v2H8v3h2v-1c1.11 0 2-.89 2-2V9c0-1.11-.89-2-2-2zm9.8 0-.2 2H14v2h1.4l-.2 2H14v2h1l-.2 2h2l.2-2h1.4l-.2 2h2l.2-2H22v-2h-1.4l.2-2H22V9h-1l.2-2h-2L19 9h-1.4l.2-2zm1.6 4h1.4l-.2 2h-1.4zM2 15v2h2v-2zm6 0v2h2v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/symfony.svg��������������������������������0000664�0000000�0000000�00000002160�14753064456�0025633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m4.37 3.7c1.02-.03 1.78.43 1.84 1.14.01.31-.17.91-.79.93-.47.02-.79-.27-.8-.68-.01-.16.26-.67.26-.76-.01-.27-.41-.28-.52-.27-1.5.05-1.9 2.07-2.22 3.72l-.14.87c.84.13 1.46-.03 1.8-.25.48-.31-.14-.63-.06-.99.08-.37.41-.54.67-.55.37-.01.63.37.62.76-.03.64-.86 1.52-2.53 1.48-.22 0-.41-.02-.59-.04-.61 3.1-.99 4.94-2.35 6.52-1.17 1.39-2.36 1.6-2.89 1.62-1 .04-1.67-.49-1.67-1.2-.03-.68.57-1.06.97-1.07.53-.02.9.37.91.81.02.37-.18.49-.31.56-.07.07-.22.15-.21.3 0 .07.07.22.29.21.42-.01.69-.22.89-.36.96-.8 1.34-2.21 1.83-4.77.26-1.45.45-2.38.73-3.3-.68-.51-1.1-1.15-2.01-1.38-.63-.19-1.01-.04-1.28.3-.31.41-.21.93.09 1.24 1.15 1.28 1.49 1.84 1.36 2.6-.2 1.21-1.64 2.13-3.34 1.61-1.45-.45-1.72-1.47-1.55-2.04.16-.49.55-.59.94-.47.42.13.58.63.46 1.02-.02.04-.22.41-.27.53-.09.31.33.52.62.61.65.2 1.28-.14 1.43-.67.15-.48-.15-.82-.28-.95-.89-.98-1.51-1.85-1.21-2.83.12-.37.36-.77.72-1.04.75-.55 1.57-.65 2.34-.41 1.01.27 1.49.94 2.12 1.45.35-1.02.84-2.03 1.57-2.88.66-.77 1.54-1.33 2.56-1.37"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/synagogue-outline.svg����������������������0000664�0000000�0000000�00000000652�14753064456�0027611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4c-1.7 0-3 1.3-3 3v.3L12 3 7 7.3V7c0-1.7-1.3-3-3-3S1 5.3 1 7v14h10v-5c0-.6.4-1 1-1s1 .4 1 1v5h10V7c0-1.7-1.3-3-3-3m0 2c.5 0 1 .4 1 1v1h-2V7c0-.6.5-1 1-1M4 6c.6 0 1 .4 1 1v1H3V7c0-.6.5-1 1-1M3 19v-9h2v9zm14 0h-2v-3c0-1.6-1.4-3-3-3s-3 1.4-3 3v3H7V9.9l5-4.3 5 4.3zm2 0v-9h2v9zM12 8.5c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5-1.5-.7-1.5-1.5.7-1.5 1.5-1.5"/></svg>��������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/synagogue.svg������������������������������0000664�0000000�0000000�00000000460�14753064456�0026131�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 8v13h4v-5c0-1.1.9-2 2-2s2 .9 2 2v5h4V8l-6-5zm7.5 2c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5.7-1.5 1.5-1.5 1.5.7 1.5 1.5M3 5c-1.1 0-2 .9-2 2v1h4V7c0-1.1-.9-2-2-2M1 9h4v12H1zm20-4c-1.1 0-2 .9-2 2v1h4V7c0-1.1-.9-2-2-2m-2 4h4v12h-4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sync-alert.svg�����������������������������0000664�0000000�0000000�00000000514�14753064456�0026211�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 13h2V7h-2m10-3h-6v6l2.24-2.24A6 6 0 0 1 19 12a5.99 5.99 0 0 1-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-2.21-.91-4.2-2.36-5.64M11 17h2v-2h-2m-8-3c0 2.21.91 4.2 2.36 5.64L3 20h6v-6l-2.24 2.24A6 6 0 0 1 5 12a5.99 5.99 0 0 1 4-5.65V4.26C5.55 5.15 3 8.27 3 12"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sync-circle.svg����������������������������0000664�0000000�0000000�00000000461�14753064456�0026344�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 12A10 10 0 1 0 12 2 10 10 0 0 0 2 12m13.6 1.72A4 4 0 0 0 16 12a4 4 0 0 0-4-4v2L8.88 7 12 4v2a6 6 0 0 1 6 6 5.9 5.9 0 0 1-.93 3.19M6 12a5.9 5.9 0 0 1 .93-3.19l1.47 1.47A4 4 0 0 0 8 12a4 4 0 0 0 4 4v-2l3 3-3 3v-2a6 6 0 0 1-6-6"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sync-off.svg�������������������������������0000664�0000000�0000000�00000000670�14753064456�0025657�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4h-6v6l2.24-2.24A6 6 0 0 1 18 12c0 1-.25 1.94-.68 2.77l1.46 1.46a7.925 7.925 0 0 0-1.14-9.87zM2.86 5.41l2.36 2.36a7.925 7.925 0 0 0 1.14 9.87L4 20h6v-6l-2.24 2.24A6 6 0 0 1 6 12c0-1 .25-1.94.68-2.77l8.08 8.08c-.26.13-.5.25-.76.34v2.09c.79-.21 1.54-.54 2.22-.96l2.36 2.36 1.27-1.27L4.14 4.14zm7.14.94V4.26c-.8.21-1.55.54-2.23.96l1.46 1.46c.27-.12.5-.24.77-.33"/></svg>������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/sync.svg�����������������������������������0000664�0000000�0000000�00000000415�14753064456�0025104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18a6 6 0 0 1-6-6c0-1 .25-1.97.7-2.8L5.24 7.74A7.93 7.93 0 0 0 4 12a8 8 0 0 0 8 8v3l4-4-4-4m0-11V1L8 5l4 4V6a6 6 0 0 1 6 6c0 1-.25 1.97-.7 2.8l1.46 1.46A7.93 7.93 0 0 0 20 12a8 8 0 0 0-8-8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tab-minus.svg������������������������������0000664�0000000�0000000�00000000260�14753064456�0026025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zm0 2h10v4h8v10H3zm4 8v2h8v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tab-plus.svg�������������������������������0000664�0000000�0000000�00000000303�14753064456�0025653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zm0 2h10v4h8v10H3zm7 5v3H7v2h3v3h2v-3h3v-2h-3v-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tab-remove.svg�����������������������������0000664�0000000�0000000�00000000434�14753064456�0026172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.46 11.88 1.42-1.42L11 12.59l2.12-2.13 1.42 1.42L12.41 14l2.13 2.12-1.42 1.42L11 15.41l-2.12 2.13-1.42-1.42L9.59 14zM3 3h18a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 2v14h18V9h-8V5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tab-search.svg�����������������������������0000664�0000000�0000000�00000000563�14753064456�0026145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 11C5 11 3 13 3 15.5c0 .88.25 1.71.69 2.4L.61 21 2 22.39l3.12-3.07c.69.43 1.51.68 2.38.68 2.5 0 4.5-2 4.5-4.5S10 11 7.5 11m0 7a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5M23 5v14c0 1.11-.89 2-2 2H10.95c.81-.5 1.5-1.19 2.02-2H21V9h-8V5H3v5.82C1.77 12 1 13.66 1 15.5V5c0-1.1.9-2 2-2h18a2 2 0 0 1 2 2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tab-unselected.svg�������������������������0000664�0000000�0000000�00000000472�14753064456�0027032�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 9h2V7H1zm0 4h2v-2H1zm0-8h2V3a2 2 0 0 0-2 2m8 16h2v-2H9zm-8-4h2v-2H1zm2 4v-2H1a2 2 0 0 0 2 2M21 3h-8v6h10V5a2 2 0 0 0-2-2m0 14h2v-2h-2zM9 5h2V3H9zM5 21h2v-2H5zM5 5h2V3H5zm16 16a2 2 0 0 0 2-2h-2zm0-8h2v-2h-2zm-8 8h2v-2h-2zm4 0h2v-2h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tab.svg������������������������������������0000664�0000000�0000000�00000000246�14753064456�0024700�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 3H3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m0 16H3V5h10v4h8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-account.svg��������������������������0000664�0000000�0000000�00000000466�14753064456�0026657�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3h14a2 2 0 0 1 2 2v7.08a6 6 0 0 0-4.32.92H12v4h1.08c-.11.68-.11 1.35 0 2H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2m0 4v4h6V7zm8 0v4h6V7zm-8 6v4h6v-4zm19 9v-1c0-1.33-2.67-2-4-2s-4 .67-4 2v1zm-4-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.89 2-2-.89-2-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-alert.svg����������������������������0000664�0000000�0000000�00000000342�14753064456�0026323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4h14c1.11 0 2 .89 2 2v12c0 1.11-.89 2-2 2H3a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2m0 4v4h6V8zm8 0v4h6V8zm-8 6v4h6v-4zm8 0v4h6v-4zm12-7h-2v6h2zm0 8h-2v2h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-arrow-down.svg�����������������������0000664�0000000�0000000�00000000367�14753064456�0027322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3h14a2 2 0 0 1 2 2v7.08a6 6 0 0 0-4.32.92H12v4h1.08c-.11.68-.11 1.35 0 2H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2m0 4v4h6V7zm8 0v4h6V7zm-8 6v4h6v-4zm11.94 5.5h2v-4h2v4h2l-3 3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-arrow-left.svg�����������������������0000664�0000000�0000000�00000000365�14753064456�0027303�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3h14a2 2 0 0 1 2 2v7.08a6 6 0 0 0-4.32.92H12v4h1.08c-.11.68-.11 1.35 0 2H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2m0 4v4h6V7zm8 0v4h6V7zm-8 6v4h6v-4zm14.44 2v2h4v2h-4v2l-3-3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-arrow-right.svg����������������������0000664�0000000�0000000�00000000367�14753064456�0027470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3h14a2 2 0 0 1 2 2v7.08a6 6 0 0 0-4.32.92H12v4h1.08c-.11.68-.11 1.35 0 2H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2m0 4v4h6V7zm8 0v4h6V7zm-8 6v4h6v-4zm15.44 8v-2h-4v-2h4v-2l3 3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-arrow-up.svg�������������������������0000664�0000000�0000000�00000000371�14753064456�0026772�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3h14a2 2 0 0 1 2 2v7.08a6 6 0 0 0-4.32.92H12v4h1.08c-.11.68-.11 1.35 0 2H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2m0 4v4h6V7zm8 0v4h6V7zm-8 6v4h6v-4zm17.94 4.5h-2v4h-2v-4h-2l3-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-border.svg���������������������������0000664�0000000�0000000�00000000444�14753064456�0026474�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 19a1 1 0 0 1-1 1h-1v-2h2zm-6 1v-2h2v2zm-4 0v-2h2v2zm-4 0v-2h2v2zm-3 0a1 1 0 0 1-1-1v-1h2v2zM19 4H5a2 2 0 0 0-2 2v2h18V6c0-1.11-.89-2-2-2M5 14H3v2h2zm0-4H3v2h2zm16 0h-2v2h2zm0 4h-2v2h2zm-10 2v-2h2v2zm0-4v-2h2v2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-cancel.svg���������������������������0000664�0000000�0000000�00000000700�14753064456�0026437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h14a2 2 0 0 1 2 2v7.08a6 6 0 0 0-4.32.92H11v4h1.08c-.11.68-.11 1.35 0 2H3a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2m0 4v4h6V7zm8 0v4h6V7zm-8 6v4h6v-4zm15.5 1C16 14 14 16 14 18.5s2 4.5 4.5 4.5 4.5-2 4.5-4.5-2-4.5-4.5-4.5m0 7.5c-1.66 0-3-1.34-3-3 0-.56.15-1.08.42-1.5L20 21.08c-.42.27-.94.42-1.5.42m2.58-1.5L17 15.92c.42-.27.94-.42 1.5-.42 1.66 0 3 1.34 3 3 0 .56-.15 1.08-.42 1.5"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-chair.svg����������������������������0000664�0000000�0000000�00000000257�14753064456�0026307�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 22H6a2 2 0 0 1 2-2V8H2V5h14v3h-6v12a2 2 0 0 1 2 2M22 2v20h-2v-7h-5v7h-2v-8a2 2 0 0 1 2-2h5V2Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-check.svg����������������������������0000664�0000000�0000000�00000000423�14753064456�0026271�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3h14a2 2 0 0 1 2 2v7.08a6 6 0 0 0-4.32.92H12v4h1.08c-.11.68-.11 1.35 0 2H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2m0 4v4h6V7zm8 0v4h6V7zm-8 6v4h6v-4zm13.75 8L15 18l1.16-1.16 1.59 1.59 3.59-3.59 1.16 1.41z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-clock.svg����������������������������0000664�0000000�0000000�00000000652�14753064456�0026313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.5 15.82 2.44 1.41-.75 1.3L15 16.69V13h1.5zm3.5-5.56V5a2 2 0 0 0-2-2H4c-1.1 0-2 .9-2 2v12a2 2 0 0 0 2 2h5.68c1.13 2.36 3.53 4 6.32 4 3.87 0 7-3.13 7-7 0-2.38-1.19-4.47-3-5.74M18 7v2.29c-.63-.18-1.3-.29-2-.29-1.5 0-2.87.47-4 1.26V7zM4 7h6v4H4zm0 10v-4h5.68A7 7 0 0 0 9 16c0 .34.03.67.08 1zm12 4c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5"/></svg>��������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-cog.svg������������������������������0000664�0000000�0000000�00000001513�14753064456�0025765�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h14a2 2 0 0 1 2 2v7.08a6 6 0 0 0-4.32.92H11v4h1.08c-.11.68-.11 1.35 0 2H3a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2m0 4v4h6V7zm8 0v4h6V7zm-8 6v4h6v-4zm19.78 6.32-1.07-.82c.02-.17.04-.33.04-.5s-.01-.33-.04-.5l1.06-.82a.26.26 0 0 0 .06-.32l-1-1.73c-.06-.13-.19-.13-.33-.13l-1.22.5c-.28-.18-.54-.35-.85-.47l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.47l-1.24-.5c-.11 0-.24 0-.31.13l-1 1.73c-.06.11-.04.24.06.32l1.06.82a4.2 4.2 0 0 0 0 1l-1.06.82a.26.26 0 0 0-.06.32l1 1.73c.06.13.19.13.31.13l1.24-.5c.26.18.54.35.85.47l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.56-.29.84-.47l1.22.5c.14 0 .27 0 .34-.13l1-1.73a.26.26 0 0 0-.06-.32M18 19.5c-.83 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5 1.5.67 1.5 1.5-.66 1.5-1.5 1.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-column-plus-after.svg����������������0000664�0000000�0000000�00000000273�14753064456�0030574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 2a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H2V2zm-7 8v4h7v-4zm0 6v4h7v-4zM4 4v4h7V4zm11 7h3V8h2v3h3v2h-3v3h-2v-3h-3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-column-plus-before.svg���������������0000664�0000000�0000000�00000000273�14753064456�0030735�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h9V2zm7 8v4h-7v-4zm0 6v4h-7v-4zm0-12v4h-7V4zM9 11H6V8H4v3H1v2h3v3h2v-3h3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-column-remove.svg��������������������0000664�0000000�0000000�00000000436�14753064456�0030010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2h7a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m0 8v4h7v-4zm0 6v4h7v-4zM4 4v4h7V4zm13.59 8L15 9.41 16.41 8 19 10.59 21.59 8 23 9.41 20.41 12 23 14.59 21.59 16 19 13.41 16.41 16 15 14.59z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-column-width.svg���������������������0000664�0000000�0000000�00000000336�14753064456�0027631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 8h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V10a2 2 0 0 1 2-2m0 4v3h6v-3zm8 0v3h6v-3zm-8 5v3h6v-3zm8 0v3h6v-3zM11 2h10v4h-2V4h-6v2h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-column.svg���������������������������0000664�0000000�0000000�00000000266�14753064456�0026516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 2h8a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m0 8v4h8v-4zm0 6v4h8v-4zM8 4v4h8V4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-edit.svg�����������������������������0000664�0000000�0000000�00000000475�14753064456�0026150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.7 13.35-1 1-2.05-2.05 1-1c.21-.22.56-.22.77 0l1.28 1.28c.22.21.22.56 0 .77M12 18.94l6.07-6.06 2.05 2.05L14.06 21H12zM4 2h14a2 2 0 0 1 2 2v4.17L16.17 12H12v4.17L10.17 18H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m0 4v4h6V6zm8 0v4h6V6zm-8 6v4h6v-4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-eye-off.svg��������������������������0000664�0000000�0000000�00000001130�14753064456�0026542�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8.8 6.2 3H18c1.1 0 2 .9 2 2v7.59c-.93-.38-1.94-.59-3-.59-.55 0-1.09.07-1.62.18L14.2 11H18V7h-6zm5.09 5.09 5.22 5.22c.27-.38.51-.79.69-1.23-.93-2.31-3.22-3.96-5.91-3.99m5.02 7.57-1.27 1.27-1.34-1.36c-.79.32-1.62.51-2.5.51-2.73 0-5.06-1.66-6-4a6.34 6.34 0 0 1 2.21-2.78l-1.28-1.28c-.74.6-1.4 1.32-1.93 2.15V13H4v4h5.42c-.16.32-.3.66-.42 1 .12.34.26.68.42 1H4c-1.1 0-2-.9-2-2V5c0-.32.08-.62.22-.89L1.11 3l1.28-1.27zM9.11 11l-4-4H4v4zm9.07 9.07-3.37-3.37c-.2.35-.31.75-.31 1.18a2.5 2.5 0 0 0 2.5 2.5c.43 0 .83-.11 1.18-.31"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-eye.svg������������������������������0000664�0000000�0000000�00000000730�14753064456�0025777�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 16.88c.56 0 1 .44 1 1s-.44 1-1 1-1-.45-1-1 .44-1 1-1m0-3c2.73 0 5.06 1.66 6 4-.94 2.34-3.27 4-6 4s-5.06-1.66-6-4c.94-2.34 3.27-4 6-4m0 1.5a2.5 2.5 0 0 0 0 5 2.5 2.5 0 0 0 0-5M18 3H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5.42c-.16-.32-.3-.66-.42-1 .12-.34.26-.68.42-1H4v-4h6v2.97c.55-.86 1.23-1.6 2-2.21V13h1.15c1.16-.64 2.47-1 3.85-1 1.06 0 2.07.21 3 .59V5c0-1.1-.9-2-2-2m-8 8H4V7h6zm8 0h-6V7h6z"/></svg>����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-filter.svg���������������������������0000664�0000000�0000000�00000000424�14753064456�0026502�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17 21 1.8 1.77c.5.5 1.2.1 1.2-.49V18l2.8-3.4A1 1 0 0 0 22 13h-7c-.8 0-1.3 1-.8 1.6L17 18zm-5-10h8V3a2 2 0 0 0-2-2H4c-1.1 0-2 .9-2 2v12a2 2 0 0 0 2 2h9.42L12 15zm0-6h6v4h-6zm-2 10H4v-4h6zm0-6H4V5h6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-furniture.svg������������������������0000664�0000000�0000000�00000000230�14753064456�0027233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 7h20v3h-2l1 9h-2.5l-.56-5H6.06l-.56 5H3l1-9H2zm15.5 3h-11l-.21 2h11.42z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-headers-eye-off.svg������������������0000664�0000000�0000000�00000000751�14753064456�0030163�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.38 1.73 1.11 3l1.15 1.15A2 2 0 0 0 1 6v13a2 2 0 0 0 2 2h6V11h.11l3.61 3.61A6.2 6.2 0 0 0 11 17a6.45 6.45 0 0 0 6 4 6.6 6.6 0 0 0 1.84-.27l2 2 1.27-1.27-1.53-1.53M7 19H3v-3h4m0-2H3v-3h4m0-2H3V6h1.11L7 8.89M17 19.5a2.5 2.5 0 0 1-2.44-3.05l3 3a2.5 2.5 0 0 1-.56.05m-.76-6.5 1.61 1.61a2.5 2.5 0 0 1 1.5 1.5l2.59 2.59A6.4 6.4 0 0 0 23 17a6.45 6.45 0 0 0-6-4zM13 6v3h-.8l2 2H21V6a2 2 0 0 0-2-2H7.2l2 2M15 6h4v3h-4Z"/></svg>�����������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-headers-eye.svg����������������������0000664�0000000�0000000�00000000524�14753064456�0027411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 6v13a2 2 0 0 0 2 2h6V11h12V6a2 2 0 0 0-2-2H3a2 2 0 0 0-2 2m2 0h4v3H3m4 10H3v-3h4m0-2H3v-3h4m2-2V6h4v3m6 0h-4V6h4m-2 10a1 1 0 1 1-1 1 1 1 0 0 1 1-1m0-3a6.45 6.45 0 0 1 6 4 6.5 6.5 0 0 1-12 0 6.45 6.45 0 0 1 6-4m0 1.5a2.5 2.5 0 1 0 2.5 2.5 2.5 2.5 0 0 0-2.5-2.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-heart.svg����������������������������0000664�0000000�0000000�00000000542�14753064456�0026321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3h14a2 2 0 0 1 2 2v7.08a6 6 0 0 0-4.32.92H12v4h1.08c-.11.68-.11 1.35 0 2H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2m0 4v4h6V7zm8 0v4h6V7zm-8 6v4h6v-4zm15 9.3-.6-.5c-2-1.9-3.4-3.1-3.4-4.6 0-1.2 1-2.2 2.2-2.2.7 0 1.4.3 1.8.8.4-.5 1.1-.8 1.8-.8 1.2 0 2.2.9 2.2 2.2 0 1.5-1.4 2.7-3.4 4.6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-key.svg������������������������������0000664�0000000�0000000�00000000557�14753064456�0026014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.8 17c-.4-1.2-1.5-2-2.8-2-1.7 0-3 1.3-3 3s1.3 3 3 3c1.3 0 2.4-.8 2.8-2H19v2h2v-2h2v-2zM14 19c-.6 0-1-.5-1-1s.4-1 1-1 1 .5 1 1-.4 1-1 1m-5-1H4v-4h6v1c.9-1.2 2.4-2 4-2 1.1 0 2.1.4 3 1h1v1h2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5.4c-.3-.6-.4-1.3-.4-2m3-10h6v4h-6zM4 8h6v4H4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-large-plus.svg�����������������������0000664�0000000�0000000�00000000553�14753064456�0027273�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.35 20H10v-3h2.09c.12-.72.37-1.39.72-2H10v-3h4v1.54c.58-.54 1.25-.93 2-1.19V12h4v.35c.75.26 1.42.65 2 1.19V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h9.54c-.54-.58-.93-1.25-1.19-2M16 7h4v3h-4zm-6 0h4v3h-4zM8 20H4v-3h4zm0-5H4v-3h4zm0-5H4V7h4zm9 4h2v3h3v2h-3v3h-2v-3h-3v-2h3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-large-remove.svg���������������������0000664�0000000�0000000�00000000701�14753064456�0027600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.35 20H10v-3h2.09c.12-.72.37-1.39.72-2H10v-3h4v1.54c.58-.54 1.25-.93 2-1.19V12h4v.35c.75.26 1.42.65 2 1.19V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h9.54c-.54-.58-.93-1.25-1.19-2M16 7h4v3h-4zm-6 0h4v3h-4zM8 20H4v-3h4zm0-5H4v-3h4zm0-5H4V7h4zm6.46 5.88 1.42-1.42L18 16.59l2.12-2.13 1.42 1.42L19.41 18l2.13 2.12-1.42 1.42L18 19.41l-2.12 2.13-1.42-1.42L16.59 18z"/></svg>���������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-large.svg����������������������������0000664�0000000�0000000�00000000403�14753064456�0026304�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3h16a2 2 0 0 1 2 2v15a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 4v3h4V7zm6 0v3h4V7zm10 3V7h-4v3zM4 12v3h4v-3zm0 8h4v-3H4zm6-8v3h4v-3zm0 8h4v-3h-4zm10 0v-3h-4v3zm0-8h-4v3h4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-lock.svg�����������������������������0000664�0000000�0000000�00000000616�14753064456�0026150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 16v-.5a2.5 2.5 0 0 0-5 0v.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1m-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-7 2h-1v-4h2.26c.28-.79.78-1.5 1.43-2H12V8h6v3.05c.17-.02.33-.05.5-.05.53 0 1.03.1 1.5.26V6c0-1.11-.89-2-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h9zm-3 0H4v-4h6zm0-6H4V8h6z"/></svg>������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-merge-cells.svg����������������������0000664�0000000�0000000�00000000302�14753064456�0027407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 10H3V4h8v2H5zm14 8h-6v2h8v-6h-2zM5 18v-4H3v6h8v-2zM21 4h-8v2h6v4h2zM8 13v2l3-3-3-3v2H3v2zm8-2V9l-3 3 3 3v-2h5v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-minus.svg����������������������������0000664�0000000�0000000�00000000352�14753064456�0026350�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 19v-2h8v2zM4 3h14a2 2 0 0 1 2 2v7.08a6 6 0 0 0-4.32.92H12v4h1.08c-.11.68-.11 1.35 0 2H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2m0 4v4h6V7zm8 0v4h6V7zm-8 6v4h6v-4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-multiple.svg�������������������������0000664�0000000�0000000�00000000351�14753064456�0027047�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2h14a2 2 0 0 1 2 2v12c0 1.11-.89 2-2 2H7a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2m0 4v4h6V6zm8 0v4h6V6zm-8 6v4h6v-4zm8 0v4h6v-4zM3 20V6H1v14c0 1.11.89 2 2 2h16v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-network.svg��������������������������0000664�0000000�0000000�00000000446�14753064456�0026712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 20c0-.55-.45-1-1-1h-1v-2h6c1.11 0 2-.89 2-2V3a2 2 0 0 0-2-2H5c-1.1 0-2 .9-2 2v12a2 2 0 0 0 2 2h6v2h-1c-.55 0-1 .45-1 1H2v2h7c0 .55.45 1 1 1h4c.55 0 1-.45 1-1h7v-2zM13 5h6v4h-6zm0 6h6v4h-6zM5 5h6v4H5zm0 10v-4h6v4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-of-contents.svg����������������������0000664�0000000�0000000�00000000233�14753064456�0027452�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 9h14V7H3zm0 4h14v-2H3zm0 4h14v-2H3zm16 0h2v-2h-2zm0-10v2h2V7zm0 6h2v-2h-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-off.svg������������������������������0000664�0000000�0000000�00000000441�14753064456�0025766�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3l2.11 2.11C3.08 5.38 3 5.68 3 6v12a2 2 0 0 0 2 2h13.11l2.73 2.73zm-12-9.46H5V8h1.11zm.89 6H5v-4h6zm2 0v-3.11L16.11 18zm0-8.2L7.2 4H19c1.11 0 2 .89 2 2v11.8l-2-2V14h-1.8l-2-2H19V8h-6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-picnic.svg���������������������������0000664�0000000�0000000�00000000270�14753064456�0026461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 6h16v3h-2l.22 2H23v2h-4.56l.56 5h-2.5l-.56-5H8.06l-.56 5H5l.56-5H1v-2h4.78L6 9H4m11.5 0h-7l-.21 2h7.42Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-pivot.svg����������������������������0000664�0000000�0000000�00000000443�14753064456�0026357�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 15h-2v3c0 1.11-.89 2-2 2h-3v2l-3-3 3-3v2h3v-3h-2l3-3zm0-11v4c0 1.1-.9 2-2 2H10v10c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2M4 8h4V4H4zm0 2v4h4v-4zm4 10v-4H4v4zm6-12V4h-4v4zm6-4h-4v4h4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-plus.svg�����������������������������0000664�0000000�0000000�00000000376�14753064456�0026206�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 14h2v3h3v2h-3v3h-2v-3h-3v-2h3zM4 3h14a2 2 0 0 1 2 2v7.08a6 6 0 0 0-4.32.92H12v4h1.08c-.11.68-.11 1.35 0 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 4v4h6V7zm8 0v4h6V7zm-8 6v4h6v-4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-question.svg�������������������������0000664�0000000�0000000�00000000713�14753064456�0027065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 20.5V22H18v-1.5zm-2-5H16V15c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .97-.5 1.88-1.29 2.41l-.3.19c-.57.4-.91 1.01-.91 1.7v.2H18v-.2c0-1.19.6-2.3 1.59-2.95l.29-.19c.39-.26.62-.69.62-1.16 0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5zM18 3H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h10v-2h-2v-4h2.42c.36-.8.92-1.5 1.61-2H12V7h6v3.1c.32-.06.66-.1 1-.1s.68.04 1 .1V5a2 2 0 0 0-2-2m-8 14H4v-4h6zm0-6H4V7h6z"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-refresh.svg��������������������������0000664�0000000�0000000�00000000572�14753064456�0026657�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 14.5c1.11 0 2.11.45 2.83 1.17L22 14.5v4h-4l1.77-1.77A2.5 2.5 0 1 0 20 20h1.71A3.99 3.99 0 0 1 18 22.5c-2.21 0-4-1.79-4-4s1.79-4 4-4M4 3h14a2 2 0 0 1 2 2v7.17c-.5-.11-1-.17-1.5-.17-1.27 0-2.46.37-3.46 1H12v4h.18q-.18.75-.18 1.5v.5H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2m0 4v4h6V7zm8 0v4h6V7zm-8 6v4h6v-4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-remove.svg���������������������������0000664�0000000�0000000�00000000524�14753064456�0026513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.46 15.88 1.42-1.42L19 16.59l2.12-2.13 1.42 1.42L20.41 18l2.13 2.12-1.42 1.42L19 19.41l-2.12 2.13-1.42-1.42L17.59 18zM4 3h14a2 2 0 0 1 2 2v7.08a6 6 0 0 0-4.32.92H12v4h1.08c-.11.68-.11 1.35 0 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 4v4h6V7zm8 0v4h6V7zm-8 6v4h6v-4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-row-height.svg�����������������������0000664�0000000�0000000�00000000331�14753064456�0027267�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2m0 4v3h5V9zm7 0v3h5V9zm-7 5v3h5v-3zm7 0v3h5v-3zm13 0V7h-4v2h2v3h-2v2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-row-plus-after.svg�������������������0000664�0000000�0000000�00000000324�14753064456�0030103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V3h2v2h4V3h2v2h4V3h2v2h4V3h2zM4 10h4V7H4zm6 0h4V7h-4zm10 0V7h-4v3zm-9 4h2v3h3v2h-3v3h-2v-3H8v-2h3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-row-plus-before.svg������������������0000664�0000000�0000000�00000000326�14753064456�0030246�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 14a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7h2v-2h4v2h2v-2h4v2h2v-2h4v2h2zM4 14h4v3H4zm6 0h4v3h-4zm10 0v3h-4v-3zm-9-4h2V7h3V5h-3V2h-2v3H8v2h3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-row-remove.svg�����������������������0000664�0000000�0000000�00000000437�14753064456�0027323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.41 13 12 15.59 14.59 13 16 14.41 13.41 17 16 19.59 14.59 21 12 18.41 9.41 21 8 19.59 10.59 17 8 14.41zM22 9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2zM4 9h4V6H4zm6 0h4V6h-4zm6 0h4V6h-4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-row.svg������������������������������0000664�0000000�0000000�00000000274�14753064456�0026027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2zM4 14h4v-4H4zm6 0h4v-4h-4zm6 0h4v-4h-4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-search.svg���������������������������0000664�0000000�0000000�00000000744�14753064456�0026467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.3 17.89c1.32-2.1.7-4.89-1.41-6.21a4.52 4.52 0 0 0-6.21 1.41C10.36 15.2 11 18 13.09 19.3c1.47.92 3.33.92 4.8 0L21 22.39 22.39 21zm-2-.62c-.98.98-2.56.97-3.54 0-.97-.98-.97-2.56.01-3.54.97-.97 2.55-.97 3.53 0 .96.99.95 2.57-.03 3.54zM19 4H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h5.81a6.3 6.3 0 0 1-1.31-2H5v-4h4.18c.16-.71.43-1.39.82-2H5V8h6v2.81a6.3 6.3 0 0 1 2-1.31V8h6v2a6.499 6.499 0 0 1 2 2V6a2 2 0 0 0-2-2"/></svg>����������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-settings.svg�������������������������0000664�0000000�0000000�00000000347�14753064456�0027061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 22h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zM5 4h14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2m0 4v4h6V8zm8 0v4h6V8zm-8 6v4h6v-4zm8 0v4h6v-4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-split-cell.svg�����������������������0000664�0000000�0000000�00000000247�14753064456�0027270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 14h2v6H3v-6h2v4h14zM3 4v6h2V6h14v4h2V4zm8 7v2H8v2l-3-3 3-3v2zm5 0V9l3 3-3 3v-2h-3v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-star.svg�����������������������������0000664�0000000�0000000�00000000445�14753064456�0026171�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3h14a2 2 0 0 1 2 2v7.08a6 6 0 0 0-4.32.92H12v4h1.08c-.11.68-.11 1.35 0 2H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2m0 4v4h6V7zm8 0v4h6V7zm-8 6v4h6v-4zm12.5 8.6.7-2.8-2.2-1.9 2.9-.2L19 14l1.1 2.6 2.9.2-2.2 1.9.7 2.8-2.5-1.4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-sync.svg�����������������������������0000664�0000000�0000000�00000000721�14753064456�0026171�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 12v1.5c2.21 0 4 1.79 4 4 0 .82-.24 1.58-.67 2.21l-1.09-1.09c.17-.34.26-.72.26-1.12A2.5 2.5 0 0 0 19 15v1.5l-2.25-2.25zm0 11v-1.5c-2.21 0-4-1.79-4-4 0-.82.25-1.58.67-2.21l1.09 1.09c-.17.34-.26.72-.26 1.12A2.5 2.5 0 0 0 19 20v-1.5l2.25 2.25zM4 3h14a2 2 0 0 1 2 2v6h-.5c-1.84 0-3.5.77-4.69 2H12v4h1v.5c0 .5.06 1 .17 1.5H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2m0 4v4h6V7zm8 0v4h6V7zm-8 6v4h6v-4z"/></svg>�����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table-tennis.svg���������������������������0000664�0000000�0000000�00000000407�14753064456�0026516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 14c1.4 0 2.5 1.1 2.5 2.5S19.9 19 18.5 19 16 17.9 16 16.5s1.1-2.5 2.5-2.5M7 15s1 1 1 2v3.5c0 .8.7 1.5 1.5 1.5s1.5-.7 1.5-1.5V17c0-1 1-2 1-2zm1-1h3s5 0 5-5-4-7-6.5-7S3 4 3 9s5 5 5 5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/table.svg����������������������������������0000664�0000000�0000000�00000000303�14753064456�0025213�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 4h14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2m0 4v4h6V8zm8 0v4h6V8zm-8 6v4h6v-4zm8 0v4h6v-4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tablet-cellphone.svg�����������������������0000664�0000000�0000000�00000000347�14753064456�0027356�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4h17a2 2 0 0 1 2 2v2h-4V6H5v12h9v2H3a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2m14 6h6a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1h-6a1 1 0 0 1-1-1V11a1 1 0 0 1 1-1m1 2v7h4v-7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tablet-dashboard.svg�����������������������0000664�0000000�0000000�00000000325�14753064456�0027330�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 18H5V6h14m2-2H3c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2M7 8h6v5H7zm7 0h3v2h-3zm3 3v5h-3v-5zM7 14h6v2H7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tablet.svg���������������������������������0000664�0000000�0000000�00000000245�14753064456�0025404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 18H5V6h14m2-2H3c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/taco.svg�����������������������������������0000664�0000000�0000000�00000000513�14753064456�0025055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 18H5a4 4 0 0 1-4-4 8 8 0 0 1 8-8c1.06 0 2.07.21 3 .58.93-.37 1.94-.58 3-.58a8 8 0 0 1 8 8 4 4 0 0 1-4 4M3 14a2 2 0 0 0 2 2 2 2 0 0 0 2-2c0-2.37 1.03-4.5 2.67-5.96L9 8a6 6 0 0 0-6 6m16 2a2 2 0 0 0 2-2 6 6 0 0 0-6-6 6 6 0 0 0-6 6c0 .73-.19 1.41-.54 2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-arrow-down-outline.svg�����������������0000664�0000000�0000000�00000001047�14753064456�0030457�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 5C5.67 5 5 5.67 5 6.5S5.67 8 6.5 8 8 7.33 8 6.5 7.33 5 6.5 5m0 0C5.67 5 5 5.67 5 6.5S5.67 8 6.5 8 8 7.33 8 6.5 7.33 5 6.5 5m14.91 6.58-9-9C12.04 2.21 11.53 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .53.21 1.04.59 1.42l.41.4c.64-.38 1.35-.63 2.08-.74L4 11V4h7l9 9-7 7-1.08-1.08c-.1.74-.36 1.44-.74 2.08l.41.41c.37.38.88.59 1.41.59s1.04-.21 1.41-.59l7-7c.38-.37.59-.88.59-1.41s-.21-1.04-.59-1.42M6.5 5C5.67 5 5 5.67 5 6.5S5.67 8 6.5 8 8 7.33 8 6.5 7.33 5 6.5 5M8 18v-4H6v4H4l3 3 3-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-arrow-down.svg�������������������������0000664�0000000�0000000�00000000624�14753064456�0027002�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.41 11.58-9-9C12.04 2.21 11.53 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .53.21 1.04.59 1.41l.41.4c.9-.54 1.94-.81 3-.81 3.31 0 6 2.69 6 6 0 1.06-.28 2.09-.82 3l.4.4c.37.38.89.6 1.42.6s1.04-.21 1.41-.59l7-7c.38-.37.59-.88.59-1.41s-.21-1.04-.59-1.42M5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7M7 19v-4H5v4H3l3 3 3-3z"/></svg>������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-arrow-left-outline.svg�����������������0000664�0000000�0000000�00000001051�14753064456�0030435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 5C5.67 5 5 5.67 5 6.5S5.67 8 6.5 8 8 7.33 8 6.5 7.33 5 6.5 5m0 0C5.67 5 5 5.67 5 6.5S5.67 8 6.5 8 8 7.33 8 6.5 7.33 5 6.5 5m14.91 6.58-9-9C12.04 2.21 11.53 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .53.21 1.04.59 1.42l.41.4c.64-.38 1.35-.63 2.08-.74L4 11V4h7l9 9-7 7-1.08-1.08c-.1.74-.36 1.44-.74 2.08l.41.41c.37.38.88.59 1.41.59s1.04-.21 1.41-.59l7-7c.38-.37.59-.88.59-1.41s-.21-1.04-.59-1.42M6.5 5C5.67 5 5 5.67 5 6.5S5.67 8 6.5 8 8 7.33 8 6.5 7.33 5 6.5 5M5 19h4v-2H5v-2l-3 3 3 3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-arrow-left.svg�������������������������0000664�0000000�0000000�00000000626�14753064456�0026767�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.41 11.58-9-9C12.04 2.21 11.53 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .53.21 1.04.59 1.41l.41.4c.9-.54 1.94-.81 3-.81 3.31 0 6 2.69 6 6 0 1.06-.28 2.09-.82 3l.4.4c.37.38.89.6 1.42.6s1.04-.21 1.41-.59l7-7c.38-.37.59-.88.59-1.41s-.21-1.04-.59-1.42M5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7M5 19h4v-2H5v-2l-3 3 3 3z"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-arrow-right-outline.svg����������������0000664�0000000�0000000�00000001046�14753064456�0030624�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 5C5.67 5 5 5.67 5 6.5S5.67 8 6.5 8 8 7.33 8 6.5 7.33 5 6.5 5m0 0C5.67 5 5 5.67 5 6.5S5.67 8 6.5 8 8 7.33 8 6.5 7.33 5 6.5 5m14.91 6.58-9-9C12.04 2.21 11.53 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .53.21 1.04.59 1.42l.41.4c.64-.38 1.35-.63 2.08-.74L4 11V4h7l9 9-7 7-1.08-1.08c-.1.74-.36 1.44-.74 2.08l.41.41c.37.38.88.59 1.41.59s1.04-.21 1.41-.59l7-7c.38-.37.59-.88.59-1.41s-.21-1.04-.59-1.42M6.5 5C5.67 5 5 5.67 5 6.5S5.67 8 6.5 8 8 7.33 8 6.5 7.33 5 6.5 5M6 17H2v2h4v2l3-3-3-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-arrow-right.svg������������������������0000664�0000000�0000000�00000000623�14753064456�0027147�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.41 11.58-9-9C12.04 2.21 11.53 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .53.21 1.04.59 1.41l.41.4c.9-.54 1.94-.81 3-.81 3.31 0 6 2.69 6 6 0 1.06-.28 2.09-.82 3l.4.4c.37.38.89.6 1.42.6s1.04-.21 1.41-.59l7-7c.38-.37.59-.88.59-1.41s-.21-1.04-.59-1.42M5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7M6 17H2v2h4v2l3-3-3-3z"/></svg>�������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-arrow-up-outline.svg�������������������0000664�0000000�0000000�00000001050�14753064456�0030126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 5C5.67 5 5 5.67 5 6.5S5.67 8 6.5 8 8 7.33 8 6.5 7.33 5 6.5 5m0 0C5.67 5 5 5.67 5 6.5S5.67 8 6.5 8 8 7.33 8 6.5 7.33 5 6.5 5m14.91 6.58-9-9C12.04 2.21 11.53 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .53.21 1.04.59 1.42l.41.4c.64-.38 1.35-.63 2.08-.74L4 11V4h7l9 9-7 7-1.08-1.08c-.1.74-.36 1.44-.74 2.08l.41.41c.37.38.88.59 1.41.59s1.04-.21 1.41-.59l7-7c.38-.37.59-.88.59-1.41s-.21-1.04-.59-1.42M6.5 5C5.67 5 5 5.67 5 6.5S5.67 8 6.5 8 8 7.33 8 6.5 7.33 5 6.5 5M6 17v4h2v-4h2l-3-3-3 3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-arrow-up.svg���������������������������0000664�0000000�0000000�00000000625�14753064456�0026460�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.41 11.58-9-9C12.04 2.21 11.53 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .53.21 1.04.59 1.41l.41.4c.9-.54 1.94-.81 3-.81 3.31 0 6 2.69 6 6 0 1.06-.28 2.09-.82 3l.4.4c.37.38.89.6 1.42.6s1.04-.21 1.41-.59l7-7c.38-.37.59-.88.59-1.41s-.21-1.04-.59-1.42M5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7M5 17v4h2v-4h2l-3-3-3 3z"/></svg>�����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-check-outline.svg����������������������0000664�0000000�0000000�00000001110�14753064456�0027424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 5C5.67 5 5 5.67 5 6.5S5.67 8 6.5 8 8 7.33 8 6.5 7.33 5 6.5 5m0 0C5.67 5 5 5.67 5 6.5S5.67 8 6.5 8 8 7.33 8 6.5 7.33 5 6.5 5m14.91 6.58-9-9C12.04 2.21 11.53 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .53.21 1.04.59 1.42l.41.4c.64-.38 1.35-.63 2.08-.74L4 11V4h7l9 9-7 7-1.08-1.08c-.1.74-.36 1.44-.74 2.08l.41.41c.37.38.88.59 1.41.59s1.04-.21 1.41-.59l7-7c.38-.37.59-.88.59-1.41s-.21-1.04-.59-1.42M6.5 5C5.67 5 5 5.67 5 6.5S5.67 8 6.5 8 8 7.33 8 6.5 7.33 5 6.5 5m2.13 9.27-3.87 3.9-1.35-1.37L2 18.22 4.75 21l5.28-5.32z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-check.svg������������������������������0000664�0000000�0000000�00000000665�14753064456�0025765�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.41 11.58-9-9C12.04 2.21 11.53 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .53.21 1.04.59 1.41l.41.4c.9-.54 1.94-.81 3-.81 3.31 0 6 2.69 6 6 0 1.06-.28 2.09-.82 3l.4.4c.37.38.89.6 1.42.6s1.04-.21 1.41-.59l7-7c.38-.37.59-.88.59-1.41s-.21-1.04-.59-1.42M5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7m3.13 7.27-3.87 3.9-1.35-1.37L2 18.22 4.75 21l5.28-5.32z"/></svg>���������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-edit-outline.svg�����������������������0000664�0000000�0000000�00000001133�14753064456�0027301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.41 11.58-9-9C12.04 2.21 11.53 2 11 2H4c-.53 0-1.04.21-1.41.59C2.21 2.96 2 3.47 2 4v7c0 .26.05.53.15.77.1.23.25.46.44.65l1.98 1.98L6 13l-2-2V4h7l9 9-7 7-2.13-2.13-.17.17v-.01l-1.25 1.25 2.14 2.14c.38.37.88.58 1.41.58s1.04-.21 1.41-.59l7-7c.38-.37.59-.88.59-1.41 0-.26-.05-.5-.15-.77-.1-.23-.25-.46-.44-.65M6.5 5a1.5 1.5 0 0 1 1.39.93c.11.27.14.57.08.86s-.2.56-.41.77-.48.35-.77.41-.59.03-.86-.08A1.5 1.5 0 0 1 6.5 5m4.2 10.35 1-1a.55.55 0 0 0 0-.77l-1.28-1.28a.55.55 0 0 0-.77 0l-1 1zm-2.64-1.47L2 19.94V22h2.06l6.05-6.07z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-edit.svg�������������������������������0000664�0000000�0000000�00000001044�14753064456�0025625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.41 2.58 9 9c.36.36.59.86.59 1.42 0 .55-.22 1.05-.59 1.41l-7 7c-.36.36-.86.59-1.41.59s-1.05-.23-1.42-.59l-2.13-2.13 1.25-1.25v.01l2.41-2.42c1-.99 1-2.62 0-3.62l-1.28-1.26c-.99-.99-2.6-.99-3.59 0l-.17.17h-.01L4.57 14.4l-1.98-1.99C2.22 12.05 2 11.55 2 11V4c0-1.11.89-2 2-2h7c.55 0 1.05.22 1.41.58M4.44 6.56a1.499 1.499 0 1 0 2.12-2.12 1.499 1.499 0 1 0-2.12 2.12m6.26 8.79 1-1a.55.55 0 0 0 0-.77l-1.28-1.28a.55.55 0 0 0-.77 0l-1 1zm-2.64-1.47L2 19.94V22h2.06l6.05-6.07z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-faces.svg������������������������������0000664�0000000�0000000�00000000743�14753064456�0025766�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 18c-3.32 0-6-2.69-6-6 0-3.32 2.68-6 6-6a6 6 0 0 1 6 6 6 6 0 0 1-6 6M4 13a1 1 0 0 1-1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1 1 1 0 0 1-1 1M22 3H7.63c-.66 0-1.25.32-1.63.81L0 12l6 8.18c.38.5.97.82 1.63.82H22a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-9 8a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m2 5c1.86 0 3.35-1.28 3.8-3h-7.6c.45 1.72 1.94 3 3.8 3m2-5a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1"/></svg>�����������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-heart-outline.svg����������������������0000664�0000000�0000000�00000001013�14753064456�0027454�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2a2 2 0 0 0-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42l-9-9C12.05 2.22 11.55 2 11 2zm7 2 9 9-7 7-9-9V4zM6.5 5A1.5 1.5 0 0 0 5 6.5 1.5 1.5 0 0 0 6.5 8 1.5 1.5 0 0 0 8 6.5 1.5 1.5 0 0 0 6.5 5m4.45 5.5c-1.13 0-2.05.92-2.05 2.05 0 .57.23 1.07.6 1.45l3.5 3.5 3.5-3.5c.37-.37.6-.89.6-1.45a2.05 2.05 0 0 0-2.05-2.05c-.55 0-1.08.23-1.45.6l-.6.6-.6-.59c-.37-.38-.9-.61-1.45-.61"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-heart.svg������������������������������0000664�0000000�0000000�00000001005�14753064456�0026000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.41 11.58-9-9C12.05 2.22 11.55 2 11 2H4a2 2 0 0 0-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42M5.5 7A1.5 1.5 0 0 1 4 5.5 1.5 1.5 0 0 1 5.5 4 1.5 1.5 0 0 1 7 5.5 1.5 1.5 0 0 1 5.5 7m11.77 8.27L13 19.54l-4.27-4.27A2.52 2.52 0 0 1 8 13.5a2.5 2.5 0 0 1 2.5-2.5c.69 0 1.32.28 1.77.74l.73.72.73-.73c.45-.45 1.08-.73 1.77-.73a2.5 2.5 0 0 1 2.5 2.5c0 .69-.28 1.32-.73 1.77"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-hidden.svg�����������������������������0000664�0000000�0000000�00000001426�14753064456�0026137�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.64 3.81-1.23-1.23C12.04 2.21 11.53 2 11 2h-1v2h1l1.23 1.23zm-.71 2.12 1.42-1.43 2.12 2.14-1.42 1.41zM4 11l1.23 1.23-1.42 1.41-1.22-1.22c-.19-.19-.34-.42-.44-.65-.1-.24-.15-.51-.15-.77v-1h2zm.5 3.35 1.43-1.42 2.12 2.12-1.41 1.42zm4.97 4.95-2.12-2.12 1.41-1.42 2.12 2.12zm6.29-10.54 2.12 2.12 1.42-1.41-2.12-2.12zm2.83 2.83L20 10.17l1.41 1.41c.19.19.34.42.44.65.1.27.15.51.15.77 0 .53-.21 1.04-.59 1.41zm2.11 3.53-1.41-1.41-2.44 2.44 1.41 1.41zm-4.55 1.73 1.41 1.41-2.44 2.44-1.41-1.41zm-1.74 4.56-2.82-2.82L10.17 20l1.42 1.42c.38.37.88.58 1.41.58s1.04-.21 1.41-.59M4 9H2V6h2zM2 5h2V4h1V2H4c-.53 0-1.04.21-1.41.59C2.21 2.96 2 3.47 2 4zm4-1V2h3v2zm.5 4C7.33 8 8 7.33 8 6.5S7.33 5 6.5 5 5 5.67 5 6.5 5.67 8 6.5 8"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-minus-outline.svg����������������������0000664�0000000�0000000�00000001036�14753064456�0027511�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 5C5.67 5 5 5.67 5 6.5S5.67 8 6.5 8 8 7.33 8 6.5 7.33 5 6.5 5m0 0C5.67 5 5 5.67 5 6.5S5.67 8 6.5 8 8 7.33 8 6.5 7.33 5 6.5 5m14.91 6.58-9-9C12.04 2.21 11.53 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .53.21 1.04.59 1.42l.41.4c.64-.38 1.35-.63 2.08-.74L4 11V4h7l9 9-7 7-1.08-1.08c-.1.74-.36 1.44-.74 2.08l.41.41c.37.38.88.59 1.41.59s1.04-.21 1.41-.59l7-7c.38-.37.59-.88.59-1.41s-.21-1.04-.59-1.42M6.5 5C5.67 5 5 5.67 5 6.5S5.67 8 6.5 8 8 7.33 8 6.5 7.33 5 6.5 5M10 19H2v-2h8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-minus.svg������������������������������0000664�0000000�0000000�00000000632�14753064456�0026035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.41 11.58-9-9C12.04 2.21 11.53 2 11 2H4a2 2 0 0 0-2 2v7c0 .53.21 1.04.59 1.41l.41.4c.9-.54 1.94-.81 3-.81a6 6 0 0 1 6 6c0 1.06-.28 2.09-.82 3l.4.4c.37.38.89.6 1.42.6s1.04-.21 1.41-.59l7-7c.38-.37.59-.88.59-1.41s-.21-1.04-.59-1.42M5.5 7A1.5 1.5 0 0 1 4 5.5 1.5 1.5 0 0 1 5.5 4 1.5 1.5 0 0 1 7 5.5 1.5 1.5 0 0 1 5.5 7M10 19H2v-2h8z"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-multiple-outline.svg�������������������0000664�0000000�0000000�00000000563�14753064456�0030215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 10C7.3 10 8 9.3 8 8.5S7.3 7 6.5 7 5 7.7 5 8.5 5.7 10 6.5 10M9 6l7 7-5 5-7-7V6zm0-2H4c-1.1 0-2 .9-2 2v5c0 .6.2 1.1.6 1.4l7 7c.3.4.8.6 1.4.6s1.1-.2 1.4-.6l5-5c.4-.4.6-.9.6-1.4 0-.6-.2-1.1-.6-1.4l-7-7C10.1 4.2 9.6 4 9 4m4.5 1.7 1-1 6.9 6.9c.4.4.6.9.6 1.4s-.2 1.1-.6 1.4L16 19.8l-1-1 5.7-5.8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-multiple.svg���������������������������0000664�0000000�0000000�00000000642�14753064456�0026536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.5 9A1.5 1.5 0 0 0 7 7.5 1.5 1.5 0 0 0 5.5 6 1.5 1.5 0 0 0 4 7.5 1.5 1.5 0 0 0 5.5 9m11.91 2.58c.36.36.59.86.59 1.42 0 .55-.22 1.05-.59 1.41l-5 5a1.996 1.996 0 0 1-2.83 0l-6.99-6.99C2.22 12.05 2 11.55 2 11V6c0-1.11.89-2 2-2h5c.55 0 1.05.22 1.41.58zm-3.87-5.87 1-1 6.87 6.87c.37.36.59.87.59 1.42s-.22 1.05-.58 1.41l-5.38 5.38-1-1L20.75 13z"/></svg>����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-off-outline.svg������������������������0000664�0000000�0000000�00000000747�14753064456�0027140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 5A1.5 1.5 0 1 0 8 6.5 1.5 1.5 0 0 0 6.5 5m0 0A1.5 1.5 0 1 0 8 6.5 1.5 1.5 0 0 0 6.5 5m11.83 3.5 4.59-4.58L21.5 2.5l-19 19 1.42 1.42 4.58-4.59 3.09 3.09A2 2 0 0 0 13 22a2 2 0 0 0 1.41-.59l7-7A2 2 0 0 0 22 13a2 2 0 0 0-.59-1.42M13 20l-3.08-3.08 7-7L20 13M5.61 15.43 7 14l-3-3V4h7l3.06 3.06 1.41-1.4-3.06-3.08A2 2 0 0 0 11 2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 .59 1.42M5 6.5A1.5 1.5 0 1 0 6.5 5 1.5 1.5 0 0 0 5 6.5"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-off.svg��������������������������������0000664�0000000�0000000�00000000533�14753064456�0025454�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.33 8.5 4.59-4.58L21.5 2.5l-19 19 1.42 1.42 4.58-4.59 3.08 3.08A2 2 0 0 0 13 22a2 2 0 0 0 1.41-.59l7-7A2 2 0 0 0 22 13a2 2 0 0 0-.59-1.42m-15.8 3.85 9.86-9.78-3.06-3.07A2 2 0 0 0 11 2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 .59 1.41M5.5 4A1.5 1.5 0 1 1 4 5.5 1.5 1.5 0 0 1 5.5 4"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-outline.svg����������������������������0000664�0000000�0000000�00000000441�14753064456�0026357�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.41 11.58-9-9A2 2 0 0 0 11 2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 .59 1.42l9 9A2 2 0 0 0 13 22a2 2 0 0 0 1.41-.59l7-7A2 2 0 0 0 22 13a2 2 0 0 0-.59-1.42M13 20l-9-9V4h7l9 9M6.5 5A1.5 1.5 0 1 1 5 6.5 1.5 1.5 0 0 1 6.5 5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-plus-outline.svg�����������������������0000664�0000000�0000000�00000000731�14753064456�0027342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 5A1.5 1.5 0 1 0 8 6.5 1.5 1.5 0 0 0 6.5 5m0 0A1.5 1.5 0 1 0 8 6.5 1.5 1.5 0 0 0 6.5 5m14.91 6.58-9-9A2 2 0 0 0 11 2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 .59 1.42l.41.4a5.6 5.6 0 0 1 2.08-.74L4 11V4h7l9 9-7 7-1.08-1.08a5.6 5.6 0 0 1-.74 2.08l.41.41A2 2 0 0 0 13 22a2 2 0 0 0 1.41-.59l7-7A2 2 0 0 0 22 13a2 2 0 0 0-.59-1.42M6.5 5A1.5 1.5 0 1 0 8 6.5 1.5 1.5 0 0 0 6.5 5M10 19H7v3H5v-3H2v-2h3v-3h2v3h3Z"/></svg>���������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-plus.svg�������������������������������0000664�0000000�0000000�00000000654�14753064456�0025671�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.41 11.58-9-9C12.04 2.21 11.53 2 11 2H4a2 2 0 0 0-2 2v7c0 .53.21 1.04.59 1.41l.41.4c.9-.54 1.94-.81 3-.81a6 6 0 0 1 6 6c0 1.06-.28 2.09-.82 3l.4.4c.37.38.89.6 1.42.6s1.04-.21 1.41-.59l7-7c.38-.37.59-.88.59-1.41s-.21-1.04-.59-1.42M5.5 7A1.5 1.5 0 0 1 4 5.5 1.5 1.5 0 0 1 5.5 4 1.5 1.5 0 0 1 7 5.5 1.5 1.5 0 0 1 5.5 7M10 19H7v3H5v-3H2v-2h3v-3h2v3h3z"/></svg>������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-remove-outline.svg���������������������0000664�0000000�0000000�00000001055�14753064456�0027654�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 5A1.5 1.5 0 1 0 8 6.5 1.5 1.5 0 0 0 6.5 5m0 0A1.5 1.5 0 1 0 8 6.5 1.5 1.5 0 0 0 6.5 5m14.91 6.58-9-9A2 2 0 0 0 11 2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 .59 1.42l.41.4a5.6 5.6 0 0 1 2.08-.74L4 11V4h7l9 9-7 7-1.08-1.08a5.6 5.6 0 0 1-.74 2.08l.41.41A2 2 0 0 0 13 22a2 2 0 0 0 1.41-.59l7-7A2 2 0 0 0 22 13a2 2 0 0 0-.59-1.42M6.5 5A1.5 1.5 0 1 0 8 6.5 1.5 1.5 0 0 0 6.5 5m1.62 16.54L6 19.41l-2.12 2.13-1.42-1.42L4.59 18l-2.13-2.12 1.42-1.42L6 16.59l2.12-2.13 1.42 1.42L7.41 18l2.13 2.12Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-remove.svg�����������������������������0000664�0000000�0000000�00000001000�14753064456�0026165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.41 11.58-9-9C12.04 2.21 11.53 2 11 2H4a2 2 0 0 0-2 2v7c0 .53.21 1.04.59 1.41l.41.4c.9-.54 1.94-.81 3-.81a6 6 0 0 1 6 6c0 1.06-.28 2.09-.82 3l.4.4c.37.38.89.6 1.42.6s1.04-.21 1.41-.59l7-7c.38-.37.59-.88.59-1.41s-.21-1.04-.59-1.42M5.5 7A1.5 1.5 0 0 1 4 5.5 1.5 1.5 0 0 1 5.5 4 1.5 1.5 0 0 1 7 5.5 1.5 1.5 0 0 1 5.5 7m2.62 14.54L6 19.41l-2.12 2.13-1.42-1.42L4.59 18l-2.13-2.12 1.41-1.41L6 16.59l2.12-2.12 1.41 1.41L7.41 18l2.12 2.12z"/></svg>mkdocs-material-9.6.4/material/templates/.icons/material/tag-search-outline.svg���������������������0000664�0000000�0000000�00000001156�14753064456�0027626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 13c0 .53-.21 1.04-.59 1.41l-.41.42a6.004 6.004 0 0 0-4.89-5.72L11 4H4v7l5.11 5.11c.51 2.73 2.86 4.8 5.72 4.89l-.42.41c-.37.38-.88.59-1.41.59s-1.03-.21-1.41-.58l-9-9C2.21 12.04 2 11.53 2 11V4c0-1.1.9-2 2-2h7c.53 0 1.04.21 1.41.58l9 9c.38.38.59.89.59 1.42M5 6.5C5 7.33 5.67 8 6.5 8S8 7.33 8 6.5 7.33 5 6.5 5 5 5.67 5 6.5m10.11 4.11c-2.5 0-4.5 2-4.5 4.5s2 4.5 4.5 4.5c.89 0 1.69-.25 2.39-.68L20.61 22 22 20.61l-3.08-3.11c.44-.68.69-1.5.69-2.39 0-2.5-2-4.5-4.5-4.5m0 2c1.39 0 2.5 1.12 2.5 2.5s-1.11 2.5-2.5 2.5-2.5-1.11-2.5-2.5 1.12-2.5 2.5-2.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-search.svg�����������������������������0000664�0000000�0000000�00000001114�14753064456�0026143�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.41 11.58-9-9C12.05 2.22 11.55 2 11 2H4c-1.11 0-2 .89-2 2v7c0 .55.22 1.05.59 1.41l8.99 9c.37.36.87.59 1.42.59s1.05-.23 1.41-.59l.42-.41C11.6 20.9 9 18.26 9 15c0-3.31 2.69-6 6-6 3.26 0 5.9 2.6 6 5.83l.41-.42c.37-.36.59-.86.59-1.41 0-.56-.23-1.06-.59-1.42M5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7m9.61 3.61c2.5 0 4.5 2 4.5 4.5 0 .89-.25 1.71-.69 2.39L22 20.61 20.61 22l-3.11-3.07c-.7.43-1.5.68-2.39.68-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5m0 2a2.5 2.5 0 1 0 2.5 2.5c0-1.39-1.11-2.5-2.5-2.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-text-outline.svg�����������������������0000664�0000000�0000000�00000000536�14753064456�0027346�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.4 11.6-9-9C12 2.2 11.5 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .5.2 1 .6 1.4l9 9c.4.4.9.6 1.4.6s1-.2 1.4-.6l7-7c.4-.4.6-.9.6-1.4s-.2-1-.6-1.4M13 20l-9-9V4h7l9 9M6.5 5C7.3 5 8 5.7 8 6.5S7.3 8 6.5 8 5 7.3 5 6.5 5.7 5 6.5 5m3.6 3.9 1.4-1.4L17 13l-1.4 1.4zm-2.5 2.5L9 10l4 4-1.4 1.4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag-text.svg�������������������������������0000664�0000000�0000000�00000000505�14753064456�0025665�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.41 11.58-9-9A2 2 0 0 0 11 2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 .59 1.41l9 9A2 2 0 0 0 13 22a2 2 0 0 0 1.41-.59l7-7A2 2 0 0 0 22 13a2 2 0 0 0-.59-1.42M6.5 8A1.5 1.5 0 1 1 8 6.5 1.5 1.5 0 0 1 6.5 8m5.09 7.41-4-4L9 10l4 4m2.59.41-5.5-5.5L11.5 7.5 17 13Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tag.svg������������������������������������0000664�0000000�0000000�00000000530�14753064456�0024701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.5 7A1.5 1.5 0 0 1 4 5.5 1.5 1.5 0 0 1 5.5 4 1.5 1.5 0 0 1 7 5.5 1.5 1.5 0 0 1 5.5 7m15.91 4.58-9-9C12.05 2.22 11.55 2 11 2H4c-1.11 0-2 .89-2 2v7c0 .55.22 1.05.59 1.41l8.99 9c.37.36.87.59 1.42.59s1.05-.23 1.41-.59l7-7c.37-.36.59-.86.59-1.41 0-.56-.23-1.06-.59-1.42"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tailwind.svg�������������������������������0000664�0000000�0000000�00000000725�14753064456�0025747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6c-2.67 0-4.33 1.33-5 4 1-1.33 2.17-1.83 3.5-1.5.76.19 1.31.74 1.91 1.35.98 1 2.09 2.15 4.59 2.15 2.67 0 4.33-1.33 5-4-1 1.33-2.17 1.83-3.5 1.5-.76-.19-1.3-.74-1.91-1.35C15.61 7.15 14.5 6 12 6m-5 6c-2.67 0-4.33 1.33-5 4 1-1.33 2.17-1.83 3.5-1.5.76.19 1.3.74 1.91 1.35C8.39 16.85 9.5 18 12 18c2.67 0 4.33-1.33 5-4-1 1.33-2.17 1.83-3.5 1.5-.76-.19-1.3-.74-1.91-1.35C10.61 13.15 9.5 12 7 12"/></svg>�������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tally-mark-1.svg���������������������������0000664�0000000�0000000�00000000134�14753064456�0026341�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19h-2V5h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tally-mark-2.svg���������������������������0000664�0000000�0000000�00000000151�14753064456�0026341�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 19H9V5h2zm4-14h-2v14h2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tally-mark-3.svg���������������������������0000664�0000000�0000000�00000000165�14753064456�0026347�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 19H7V5h2zm4-14h-2v14h2zm4 0h-2v14h2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tally-mark-4.svg���������������������������0000664�0000000�0000000�00000000201�14753064456�0026337�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 19H5V5h2zm4-14H9v14h2zm4 0h-2v14h2zm4 0h-2v14h2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tally-mark-5.svg���������������������������0000664�0000000�0000000�00000000360�14753064456�0026346�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 10.73V19h-2v-7.64L15 12v7h-2v-6.38l-2 .64V19H9v-5.11l-2 .61V19H5v-3.85l-2.43.77L2 14l3-.95V5h2v7.42l2-.63V5h2v6.16l2-.63V5h2v4.9l2-.64V5h2v3.63L21 8l.57 1.92z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tangram.svg��������������������������������0000664�0000000�0000000�00000000521�14753064456�0025557�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-1.41 2L12 10.59 5.41 4zm-5.18 8 3.09-3.09L19.59 12l-3.09 3.09zm1.18 4H9.41L12 13.41zM4 5.41 10.59 12 4 18.59zM11.59 20H5.41l2-2h6.18zM20 20h-5.59L20 14.41zm0-10.41L17.91 7.5 20 5.41z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tank.svg�����������������������������������0000664�0000000�0000000�00000000563�14753064456�0025071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 12H4v-1h2l1-5h5l1 5h7zm-6.78-5 .4 2H22V7zM22 16a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3 3 3 0 0 1 3-3h14a3 3 0 0 1 3 3M6 16a1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1m7 0a1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1m7 0a1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tanker-truck.svg���������������������������0000664�0000000�0000000�00000000646�14753064456�0026550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 8h-5v6H2v3h1c0 1.7 1.3 3 3 3s3-1.3 3-3h6c0 1.7 1.3 3 3 3s3-1.3 3-3h2v-5zM6 18.5c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5m12 0c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5M17 12V9.5h2.5l2 2.5zm-3-2.5c0 1.9-1.6 3.5-3.5 3.5h-6C2.6 13 1 11.4 1 9.5S2.6 6 4.5 6H5V5H4V4h4v1H7v1h3.5C12.4 6 14 7.6 14 9.5"/></svg>������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tape-drive.svg�����������������������������0000664�0000000�0000000�00000000420�14753064456�0026164�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10a2 2 0 0 1 2 2c0 1.11-.89 2-2 2a2 2 0 1 1 0-4M5 3h14a2 2 0 0 1 2 2v12h-4.1a6.96 6.96 0 0 0 2.1-5c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7h9c0 1.11-.89 2-2 2H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tape-measure.svg���������������������������0000664�0000000�0000000�00000000325�14753064456�0026520�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 5a7 7 0 0 1 7 7h1v3h-1v4H9a7 7 0 0 1-7-7 7 7 0 0 1 7-7m0 3a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4m8 9h5v4h-2v-2h-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/target-account.svg�������������������������0000664�0000000�0000000�00000000766�14753064456�0027061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.95 11h1.55v2h-1.55c-.45 4.17-3.78 7.5-7.95 7.95v1.55h-2v-1.55C6.83 20.5 3.5 17.17 3.05 13H1.5v-2h1.55C3.5 6.83 6.83 3.5 11 3.05V1.5h2v1.55c4.17.45 7.5 3.78 7.95 7.95M5.07 11H6.5v2H5.07A6.98 6.98 0 0 0 11 18.93V17.5h2v1.43A6.98 6.98 0 0 0 18.93 13H17.5v-2h1.43A6.98 6.98 0 0 0 13 5.07V6.5h-2V5.07A6.98 6.98 0 0 0 5.07 11M16 16H8v-1c0-1.33 2.67-2 4-2s4 .67 4 2zm-4-8a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/material/target-variant.svg�������������������������0000664�0000000�0000000�00000000526�14753064456�0027063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.08 11.04h-2V4h-7.03V2h-2.01v2H4v7.04H2v2.01h2v7.03h7.04v2h2.01v-2h7.03v-7.03h2zm-4.01 7.03h-5.02v-2.01h-2.01v2.01H6v-5.02h2.03v-2.01H6V6h5.04v2.03h2.01V6h5.02v5.04h-2.01v2.01h2.01zm-5.02-6.02a1 1 0 0 1-1 1c-.55 0-1.01-.45-1.01-1s.46-1.01 1.01-1.01 1 .46 1 1.01"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/target.svg���������������������������������0000664�0000000�0000000�00000000632�14753064456�0025417�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 2v2.07A8 8 0 0 0 4.07 11H2v2h2.07A8 8 0 0 0 11 19.93V22h2v-2.07A8 8 0 0 0 19.93 13H22v-2h-2.07A8 8 0 0 0 13 4.07V2m-2 4.08V8h2V6.09c2.5.41 4.5 2.41 4.92 4.91H16v2h1.91c-.41 2.5-2.41 4.5-4.91 4.92V16h-2v1.91C8.5 17.5 6.5 15.5 6.08 13H8v-2H6.09C6.5 8.5 8.5 6.5 11 6.08M12 11a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/taxi.svg�����������������������������������0000664�0000000�0000000�00000000654�14753064456�0025102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5 11 1.5-4.5h11L19 11m-1.5 5a1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5 1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5m-11 0A1.5 1.5 0 0 1 5 14.5 1.5 1.5 0 0 1 6.5 13 1.5 1.5 0 0 1 8 14.5 1.5 1.5 0 0 1 6.5 16M18.92 6c-.2-.58-.76-1-1.42-1H15V3H9v2H6.5c-.66 0-1.22.42-1.42 1L3 12v8a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h12v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-8z"/></svg>������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tea-outline.svg����������������������������0000664�0000000�0000000�00000000644�14753064456�0026362�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 19h16v2H4zM21.4 3.6C21 3.2 20.6 3 20 3H4v10c0 1.1.4 2 1.2 2.8S6.9 17 8 17h6c1.1 0 2-.4 2.8-1.2S18 14.1 18 13v-3h2c.6 0 1-.2 1.4-.6s.6-.8.6-1.4V5c0-.5-.2-1-.6-1.4M16 5v8c0 .6-.2 1-.6 1.4s-.8.6-1.4.6H8c-.6 0-1-.2-1.4-.6S6 13.5 6 13V5h4v1.4L8.2 7.8c-.2.1-.2.3-.2.4v4.3c0 .3.2.5.5.5h4c.3 0 .5-.2.5-.5V8.2c0-.2-.1-.3-.2-.4L11 6.4V5zm4 3h-2V5h2z"/></svg>��������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tea.svg������������������������������������0000664�0000000�0000000�00000000520�14753064456�0024676�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 19h16v2H4zM20 8V5h-2v3zm0-5c.6 0 1 .2 1.4.6s.6.9.6 1.4v3c0 .6-.2 1-.6 1.4s-.8.6-1.4.6h-2v3c0 1.1-.4 2-1.2 2.8S15.1 17 14 17H8c-1.1 0-2-.4-2.8-1.2S4 14.1 4 13V3h5v2.4L7.2 6.8c-.1.1-.2.3-.2.4v4.3c0 .3.2.5.5.5h4c.3 0 .5-.2.5-.5V7.2c0-.2-.1-.3-.2-.4L10 5.4V3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/teamviewer.svg�����������������������������0000664�0000000�0000000�00000000640�14753064456�0026300�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.04 9.2 9.3 11h5.45L14 9.2l5.55 2.8L14 14.8l.75-1.8H9.3l.74 1.8L4.5 12zM20.83 22H3.17C2.53 22 2 21.5 2 20.83V3.17C2 2.53 2.53 2 3.17 2h17.66C21.5 2 22 2.53 22 3.17v17.66c0 .64-.5 1.17-1.17 1.17m-8.9-18.24C7.41 3.82 3.78 7.5 3.76 12c-.04 4.5 3.59 8.2 8.1 8.24H12A8.346 8.346 0 0 0 20.24 12c.07-4.5-3.5-8.17-7.98-8.24-.11-.01-.22 0-.33 0"/></svg>������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/teddy-bear.svg�����������������������������0000664�0000000�0000000�00000002015�14753064456�0026146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.75 19.13c-.83 0-1.5-.84-1.5-1.88 0-1.03.67-1.87 1.5-1.87s1.5.84 1.5 1.87c0 1.04-.67 1.88-1.5 1.88M12 11.25c-1.24 0-2.25-.84-2.25-1.87 0-1.04 1.01-1.88 2.25-1.88s2.25.84 2.25 1.88c0 1.03-1.01 1.87-2.25 1.87m-3.75 7.88c-.83 0-1.5-.84-1.5-1.88 0-1.03.67-1.87 1.5-1.87s1.5.84 1.5 1.87c0 1.04-.67 1.88-1.5 1.88M12 8.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75M18.75 12c-.32 0-.63.07-.91.2-.48-.61-1.13-1.13-1.91-1.53.57-.8.91-1.77.91-2.82v-.06c1.09-.23 1.91-1.2 1.91-2.37 0-1.33-1.09-2.42-2.42-2.42-.69 0-1.33.29-1.75.75a4.813 4.813 0 0 0-5.16 0C9 3.29 8.36 3 7.67 3 6.34 3 5.25 4.09 5.25 5.42c0 1.16.82 2.13 1.9 2.37v.06c0 1.05.35 2.03.91 2.82-.77.4-1.42.92-1.9 1.53A2.24 2.24 0 0 0 3 14.25c0 1.25 1 2.25 2.25 2.25h.06c-.04.24-.06.5-.06.75 0 2.07 1.34 3.75 3 3.75 1.01 0 1.9-.63 2.45-1.59.42.06.85.09 1.3.09s.88-.03 1.3-.09c.55.96 1.44 1.59 2.45 1.59 1.66 0 3-1.68 3-3.75 0-.25-.02-.51-.06-.75h.06c1.25 0 2.25-1 2.25-2.25S20 12 18.75 12"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/telescope.svg������������������������������0000664�0000000�0000000�00000000434�14753064456�0026114�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.9 8.9-1.7 1-4-6.9 1.7-1zm-12.1-1 3 5.2 6.1-3.5-3-5.2zm1.6 4.8-2-3.5-4.3 2.5 2 3.5zm-9.3 1.9 1 1.7 2.6-1.5-1-1.7zm10-.6-.3-.4-4.3 2.5.3.4c.2.3.5.6.8.8L7 22h2l1.4-4.3h.1L12 22h2l-1.9-5.6c.5-.7.5-1.6 0-2.4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/television-ambient-light.svg���������������0000664�0000000�0000000�00000000617�14753064456�0031037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 11H0V9h3zm0 3H0v2h3zm2-8.88L2.88 3 1.46 4.41l2.13 2.13zM10 5V2H8v3zm14 4h-3v2h3zm-8-4V2h-2v3zm4.41 1.54 2.13-2.12L21.12 3 19 5.12zM24 14h-3v2h3zm-5-5v7c0 1.1-.9 2-2 2h-2v2H9v-2H7c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2m-2 0H7v7h10zm2 10.88L21.12 22l1.42-1.41-2.13-2.12zM3.59 18.46l-2.12 2.13L2.88 22 5 19.88z"/></svg>�����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/television-box.svg�������������������������0000664�0000000�0000000�00000000313�14753064456�0027074�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m11 13 3-8h-2.5L15 12.5 13.5 8H5v2h3v6h2v-6h1.77L14 16z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/television-classic-off.svg�����������������0000664�0000000�0000000�00000000647�14753064456�0030507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5.27 3.28 4 21 21.72 19.73 23l-2-2H4c-1.11 0-2-.89-2-2V9c0-1 .76-1.86 1.75-2zM8.16 3 12 6.84 15.84 3l1.41 1.41L14.66 7H20c1.11 0 2 .89 2 2v10c0 .34-.08.66-.23.94L17 15.18V9h-6.18l-2-2h.52L6.75 4.41zM4 9v10h11.73l-10-10zm15.5 0a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m0 3a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/television-classic.svg���������������������0000664�0000000�0000000�00000000535�14753064456�0027733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.16 3 6.75 4.41 9.34 7H4c-1.11 0-2 .89-2 2v10c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V9c0-1.11-.89-2-2-2h-5.34l2.59-2.59L15.84 3 12 6.84zM4 9h13v10H4zm15.5 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m0 3a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/television-guide.svg�����������������������0000664�0000000�0000000�00000000331�14753064456�0027401�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 17V5H3v12zm0-14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-5v2H8v-2H3a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zM5 7h6v4H5zm0 6h6v2H5zm8-6h6v2h-6zm0 4h6v4h-6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/television-off.svg�������������������������0000664�0000000�0000000�00000000402�14753064456�0027055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.5 2.77 1.78 1.5 21 20.72 19.73 22l-3-3H16v2H8v-2H3a2 2 0 0 1-2-2V5c0-.5.17-.93.46-1.27zM21 17V5H7.82l-2-2H21a2 2 0 0 1 2 2v12c0 .85-.55 1.59-1.3 1.87L19.82 17zM3 17h11.73L3 5.27z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/television-pause.svg�����������������������0000664�0000000�0000000�00000000277�14753064456�0027432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3c-1.11 0-2 .89-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5a2 2 0 0 0-2-2M3 5h18v12H3m6-9v6h2V8m2 0v6h2V8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/television-play.svg������������������������0000664�0000000�0000000�00000000270�14753064456�0027253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 3H3c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h5v2h8v-2h5a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m0 14H3V5h18m-5 6-7 4V7"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/television-shimmer.svg���������������������0000664�0000000�0000000�00000000463�14753064456�0027756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 17H3V5h18m0-2H3c-1.1 0-2 .9-2 2v12a2 2 0 0 0 2 2h5v2h8v-2h5c1.11 0 2-.89 2-2V5a2 2 0 0 0-2-2m-6 3.5-.62 1.37L13 8.5l1.38.63.62 1.37.63-1.37L17 8.5l-1.37-.63zm-4.5 2-1.09 2.41L7 12l2.41 1.09 1.09 2.41 1.1-2.41L14 12l-2.4-1.09z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/television-speaker-off.svg�����������������0000664�0000000�0000000�00000000710�14753064456�0030507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 9h-5c-1 0-1.9.8-2 1.8l3.8 3.8c.2-.1.4-.1.7-.1h.1c1.7 0 3 1.3 3 3 0 .2 0 .5-.1.7l1.6 1.6V11c-.1-1.1-1-2-2.1-2m-2.5 4.5c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5M23 5v2h-2V5H8.2l-2-2H21c1.1 0 2 .9 2 2M2.4 1.7 1.1 3l.5.5c-.3.4-.6.9-.6 1.5v12c0 1.1.9 2 2 2h5v2h4v-4H3V5h.1L14 15.9V20c0 1.1.9 2 2 2h4.1l.7.7 1.4-1.2zm16.1 18.8c-1.7 0-3-1.3-3-3v-.1l3.1 3.1z"/></svg>��������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/television-speaker.svg���������������������0000664�0000000�0000000�00000000672�14753064456�0027746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h4v-4H3V5h18v2h2V5c0-1.1-.9-2-2-2zm18 6h-5c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h5c1.1 0 2-.9 2-2v-9c0-1.1-.9-2-2-2m-2.5 1.5c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5S17 12.8 17 12s.7-1.5 1.5-1.5m0 10c-1.7 0-3-1.3-3-3 0-1.6 1.3-3 2.9-3h.1c1.7 0 3 1.3 3 3s-1.3 3-3 3m0-4.5c-.8 0-1.5.7-1.5 1.5s.7 1.5 1.5 1.5 1.5-.7 1.5-1.5-.7-1.5-1.5-1.5"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/television-stop.svg������������������������0000664�0000000�0000000�00000000273�14753064456�0027276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h18a2 2 0 0 1 2 2v12c0 1.1-.9 2-2 2h-5v2H8v-2H3c-1.1 0-2-.9-2-2V5c0-1.11.89-2 2-2m0 2v12h18V5zm6 3h6v6H9z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/television.svg�����������������������������0000664�0000000�0000000�00000000251�14753064456�0026307�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 17H3V5h18m0-2H3a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h5v2h8v-2h5a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/temperature-celsius.svg��������������������0000664�0000000�0000000�00000000614�14753064456�0030133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 5c1.55 0 3 .47 4.19 1.28l-1.16 2.89A4.47 4.47 0 0 0 16.5 8C14 8 12 10 12 12.5s2 4.5 4.5 4.5c1.03 0 1.97-.34 2.73-.92l1.14 2.85A7.47 7.47 0 0 1 16.5 20 7.5 7.5 0 0 1 9 12.5 7.5 7.5 0 0 1 16.5 5M6 3a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3m0 2a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>��������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/temperature-fahrenheit.svg�����������������0000664�0000000�0000000�00000000341�14753064456�0030576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 20V5h9v3h-6v3h5v3h-5v6zM6 3a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3m0 2a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/temperature-kelvin.svg���������������������0000664�0000000�0000000�00000000215�14753064456�0027751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 5h3v6l5-6h4l-5.12 5.78L19 20h-3.62l-3.62-6.83L10 15.15V20H7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/temple-buddhist-outline.svg����������������0000664�0000000�0000000�00000000564�14753064456�0030704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 9c0 1.1-.9 2-2 2h-1V8.9c1.7-.4 3-2 3-3.8h-2c0 1.1-.9 2-2 2h-.5L12 1 7.5 7H7c-1.1 0-2-.9-2-2H3c0 1.9 1.3 3.4 3 3.8V11H5c-1.1 0-2-.9-2-2H1c0 1.9 1.3 3.4 3 3.8V22h7v-4c0-.5.4-1 1-1s1 .5 1 1v4h7v-9.1c1.7-.4 3-2 3-3.8zm-9-4.7L14 7h-4zM8 9h8v2H8zm10 11h-3v-2c0-1.6-1.4-3-3-3s-3 1.4-3 3v2H6v-7h12z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/temple-buddhist.svg������������������������0000664�0000000�0000000�00000000455�14753064456�0027226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 9c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2H1c0 1.9 1.3 3.4 3 3.8V22h6v-3c0-1.1.9-2 2-2s2 .9 2 2v3h6v-9.1c.5-.1 3-1 3-3.9zM6 8.9V10h12V8.9c.5-.1 3-1 3-3.9h-2c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2H3c0 1.9 1.3 3.4 3 3.9M12 1 8.2 6h7.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/temple-hindu-outline.svg�������������������0000664�0000000�0000000�00000000341�14753064456�0030176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2h-2L15 3V1h-2v2h-2V1H9v2.1L6 13H4v-2H2v11h9v-5h2v5h9V11zm-4.7 0H8.7l.6-2h5.4zm-1.2-4H9.9l.6-2h3zM20 20h-5v-5H9v5H4v-5h3.5l.6-2h7.8l.6 2H20z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/temple-hindu.svg���������������������������0000664�0000000�0000000�00000000252�14753064456�0026522�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.6 11h10.8l-.9-3h-9zM20 11v2H4v-2H2v11h8v-5h4v5h8V11zm-4.1-5L15 3V1h-2v2h-2V1H9v2.1L8.1 6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tennis-ball-outline.svg��������������������0000664�0000000�0000000�00000001341�14753064456�0030014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.17 2.76A10.1 10.1 0 0 1 12 2c1.31 0 2.61.26 3.83.76 1.21.5 2.31 1.24 3.24 2.17s1.67 2.03 2.17 3.24c.5 1.22.76 2.52.76 3.83 0 2.65-1.05 5.2-2.93 7.07A9.97 9.97 0 0 1 12 22a10.1 10.1 0 0 1-3.83-.76 10 10 0 0 1-3.24-2.17A9.97 9.97 0 0 1 2 12c0-2.65 1.05-5.2 2.93-7.07.93-.93 2.03-1.67 3.24-2.17M6.89 18.15a7.98 7.98 0 0 0 10.22 0A9.97 9.97 0 0 1 15 12c0-2.32.79-4.45 2.11-6.15A7.96 7.96 0 0 0 12 4c-1.88 0-3.68.66-5.11 1.85A10 10 0 0 1 9 12c0 2.32-.79 4.46-2.11 6.15M5.5 16.67C6.44 15.35 7 13.74 7 12s-.56-3.35-1.5-4.66A8 8 0 0 0 4 12c0 1.68.53 3.31 1.5 4.67m13-9.33A7.97 7.97 0 0 0 17 12c0 1.74.56 3.35 1.5 4.67A8.02 8.02 0 0 0 20 12c0-1.68-.53-3.31-1.5-4.66"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tennis-ball.svg����������������������������0000664�0000000�0000000�00000000677�14753064456�0026352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c2.5 0 4.75.9 6.5 2.4A9.98 9.98 0 0 0 15 12c0 3.04 1.36 5.77 3.5 7.6-1.75 1.5-4 2.4-6.5 2.4s-4.75-.9-6.5-2.4A9.98 9.98 0 0 0 9 12c0-3.04-1.36-5.77-3.5-7.6C7.25 2.9 9.5 2 12 2m10 10c0 2.32-.79 4.45-2.12 6.15A8 8 0 0 1 17 12c0-2.47 1.12-4.68 2.88-6.15A9.94 9.94 0 0 1 22 12M2 12c0-2.32.79-4.45 2.12-6.15A8 8 0 0 1 7 12c0 2.47-1.12 4.68-2.88 6.15A9.94 9.94 0 0 1 2 12"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tennis.svg���������������������������������0000664�0000000�0000000�00000001015�14753064456�0025425�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 15a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2M6.05 14.54s1.41-1.42 1.42-4.24c-.36-2.19.5-4.76 2.47-6.72C12.87.65 17.14.17 19.5 2.5c2.33 2.36 1.85 6.63-1.08 9.56-1.96 1.97-4.53 2.83-6.72 2.47-2.82.01-4.24 1.42-4.24 1.42l-4.24 4.24-1.41-1.41zM18.07 3.93C16.5 2.37 13.5 2.84 11.35 5c-2.14 2.14-2.62 5.15-1.06 6.71 1.57 1.56 4.57 1.08 6.71-1.06 2.16-2.15 2.63-5.15 1.07-6.72"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tent.svg�����������������������������������0000664�0000000�0000000�00000000311�14753064456�0025075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 6c0 1.19.39 2.27 1 3a3 3 0 0 1-3-3 3 3 0 0 1 3-3c-.61.73-1 1.81-1 3M2 21v-2h2.76L12 4.78 19.24 19H22v2zM12 9.19 7 19h10z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/terraform.svg������������������������������0000664�0000000�0000000�00000000256�14753064456�0026134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 5.4v6.4L15.4 15V8.7zm-6.2 3.3V15l-5.6-3.2V5.4zm0 7v6.4l-5.6-3.2v-6.4zM8.6 5.1v6.4L3 8.3V1.9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/terrain.svg��������������������������������0000664�0000000�0000000�00000000211�14753064456�0025566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14 6-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/test-tube-empty.svg������������������������0000664�0000000�0000000�00000000245�14753064456�0027201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2h10v2h-1v14a4 4 0 0 1-4 4 4 4 0 0 1-4-4V4H7zm7 2h-4v14a2 2 0 0 0 2 2 2 2 0 0 0 2-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/test-tube-off.svg��������������������������0000664�0000000�0000000�00000000523�14753064456�0026614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5.27 3.28 4 20 20.72 18.73 22l-2.89-2.89A4.01 4.01 0 0 1 12 22a4 4 0 0 1-4-4v-6.73zM7 2h10v2h-1v10.18l-2.37-2.37c.23-.18.37-.46.37-.81 0-.6-.4-1-1-1-.35 0-.63.14-.81.37L8 6.18V4H7zm4 14c.5 0 .88-.29 1-.76L10.76 14c-.47.12-.76.5-.76 1 0 .6.4 1 1 1m3-9V4h-4v3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/test-tube.svg������������������������������0000664�0000000�0000000�00000000345�14753064456�0026046�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2v2h1v14a4 4 0 0 0 4 4 4 4 0 0 0 4-4V4h1V2zm4 14c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1m2-4c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1m1-5h-4V4h4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/text-account.svg���������������������������0000664�0000000�0000000�00000000307�14753064456�0026546�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 5v2H3V5zM3 17h9v-2H3zm0-5h18v-2H3zm15 2a2 2 0 1 1 0 4c-1.11 0-2-.89-2-2s.9-2 2-2m-4 8v-1c0-1.1 1.79-2 4-2s4 .9 4 2v1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/text-box-check-outline.svg�����������������0000664�0000000�0000000�00000000504�14753064456�0030431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17 21-2.75-3 1.16-1.16L17 18.43l3.59-3.59 1.16 1.41M12.8 21H5c-1.11 0-2-.89-2-2V5c0-1.11.89-2 2-2h14c1.11 0 2 .89 2 2v7.8c-.61-.35-1.28-.6-2-.72V5H5v14h7.08c.12.72.37 1.39.72 2m-.8-4H7v-2h5m2.68-2H7v-2h10v1.08c-.85.14-1.63.46-2.32.92M17 9H7V7h10"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/text-box-check.svg�������������������������0000664�0000000�0000000�00000000453�14753064456�0026757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17 21-2.75-3 1.16-1.16L17 18.43l3.59-3.59 1.16 1.41M12.8 21H5a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2h14a2 2 0 0 1 2 2v7.8c-.88-.51-1.91-.8-3-.8l-1 .08V11H7v2h7.69A5.98 5.98 0 0 0 12 18c0 1.09.29 2.12.8 3m-.8-6H7v2h5m5-10H7v2h10"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/text-box-edit-outline.svg������������������0000664�0000000�0000000�00000000604�14753064456�0030302�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 21H5c-1.11 0-2-.89-2-2V5c0-1.11.89-2 2-2h14c1.11 0 2 .89 2 2v5.33c-.3-.12-.63-.19-.96-.19-.37 0-.72.08-1.04.23V5H5v14h5.11l-.11.11zM7 9h10V7H7zm0 8h5.11L14 15.12V15H7zm0-4h9.12l.88-.88V11H7zm14.7.58-1.28-1.28a.55.55 0 0 0-.77 0l-1 1 2.05 2.05 1-1a.55.55 0 0 0 0-.77M12 22h2.06l6.05-6.07-2.05-2.05L12 19.94z"/></svg>����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/text-box-edit.svg��������������������������0000664�0000000�0000000�00000000560�14753064456�0026626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 19.11 12.11 17H7v-2h7v.12L16.12 13H7v-2h10v1.12l1.24-1.23c.48-.48 1.11-.75 1.8-.75.33 0 .66.07.96.19V5a2 2 0 0 0-2-2H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h5zM7 7h10v2H7zm14.7 7.35-1 1-2.05-2.05 1-1a.55.55 0 0 1 .77 0l1.28 1.28c.21.21.21.56 0 .77M12 19.94l6.06-6.06 2.05 2.05L14.06 22H12z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/text-box-minus-outline.svg�����������������0000664�0000000�0000000�00000000424�14753064456�0030510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 17v2h-8v-2zM5 3h14c1.11 0 2 .89 2 2v7.8c-.61-.35-1.28-.6-2-.72V5H5v14h7.08c.12.72.37 1.39.72 2H5c-1.11 0-2-.89-2-2V5c0-1.11.89-2 2-2m2 4h10v2H7zm0 4h10v1.08c-.85.14-1.63.46-2.32.92H7zm0 4h5v2H7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/text-box-minus.svg�������������������������0000664�0000000�0000000�00000000401�14753064456�0027026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 17v2h-8v-2zm-10 0v-2H7v2zm5-6H7v2h7.69A5.98 5.98 0 0 0 12 18c0 1.09.29 2.12.8 3H5a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2h14a2 2 0 0 1 2 2v7.8c-.88-.51-1.91-.8-3-.8l-1 .08zm0-2V7H7v2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/text-box-multiple-outline.svg��������������0000664�0000000�0000000�00000000352�14753064456�0031210�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 15H9v-2h7zm3-4H9V9h10zm0-4H9V5h10zM3 5v16h16v2H3a2 2 0 0 1-2-2V5zm18-4a2 2 0 0 1 2 2v14c0 1.11-.89 2-2 2H7a2 2 0 0 1-2-2V3c0-1.11.89-2 2-2zM7 3v14h14V3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/text-box-multiple.svg����������������������0000664�0000000�0000000�00000000335�14753064456�0027534�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 15H9v-2h7m3-2H9V9h10m0-2H9V5h10m2-4H7c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2V3a2 2 0 0 0-2-2M3 5v16h16v2H3a2 2 0 0 1-2-2V5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/text-box-outline.svg�����������������������0000664�0000000�0000000�00000000321�14753064456�0027353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 2h14v14H5zm2 2v2h10V7zm0 4v2h10v-2zm0 4v2h7v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/text-box-plus-outline.svg������������������0000664�0000000�0000000�00000000447�14753064456�0030345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 14h2v3h3v2h-3v3h-2v-3h-3v-2h3zM5 3h14c1.11 0 2 .89 2 2v7.8c-.61-.35-1.28-.6-2-.72V5H5v14h7.08c.12.72.37 1.39.72 2H5c-1.11 0-2-.89-2-2V5c0-1.11.89-2 2-2m2 4h10v2H7zm0 4h10v1.08c-.85.14-1.63.46-2.32.92H7zm0 4h5v2H7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/text-box-plus.svg��������������������������0000664�0000000�0000000�00000000423�14753064456�0026662�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 14h2v3h3v2h-3v3h-2v-3h-3v-2h3zm-5 3v-2H7v2zm5-6H7v2h7.69A5.98 5.98 0 0 0 12 18c0 1.09.29 2.12.8 3H5a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2h14a2 2 0 0 1 2 2v7.8c-.88-.51-1.91-.8-3-.8l-1 .08zm0-2V7H7v2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/text-box-remove-outline.svg����������������0000664�0000000�0000000�00000000575�14753064456�0030661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.46 15.88 1.42-1.42L18 16.59l2.12-2.13 1.42 1.42L19.41 18l2.13 2.12-1.42 1.42L18 19.41l-2.12 2.13-1.42-1.42L16.59 18zM5 3h14c1.11 0 2 .89 2 2v7.8c-.61-.35-1.28-.6-2-.72V5H5v14h7.08c.12.72.37 1.39.72 2H5c-1.11 0-2-.89-2-2V5c0-1.11.89-2 2-2m2 4h10v2H7zm0 4h10v1.08c-.85.14-1.63.46-2.32.92H7zm0 4h5v2H7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/text-box-remove.svg������������������������0000664�0000000�0000000�00000000552�14753064456�0027177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.46 15.88 1.42-1.42L18 16.59l2.12-2.13 1.42 1.42L19.41 18l2.13 2.12-1.42 1.42L18 19.41l-2.12 2.13-1.42-1.42L16.59 18zM12 17v-2H7v2zm5-6H7v2h7.69A5.98 5.98 0 0 0 12 18c0 1.09.29 2.12.8 3H5a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2h14a2 2 0 0 1 2 2v7.8c-.88-.51-1.91-.8-3-.8l-1 .08zm0-2V7H7v2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/text-box-search-outline.svg����������������0000664�0000000�0000000�00000001003�14753064456�0030614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 12c2.5 0 4.5 2 4.5 4.5 0 .88-.25 1.71-.69 2.4l3.08 3.1L21 23.39l-3.12-3.07c-.69.43-1.51.68-2.38.68-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5m0 2a2.5 2.5 0 0 0-2.5 2.5 2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5M5 3h14c1.11 0 2 .89 2 2v8.03c-.5-.8-1.19-1.49-2-2.03V5H5v14h4.5c.31.75.76 1.42 1.31 2H5c-1.11 0-2-.89-2-2V5c0-1.11.89-2 2-2m2 4h10v2H7zm0 4h5.03c-.8.5-1.49 1.19-2.03 2H7zm0 4h2.17c-.11.5-.17 1-.17 1.5v.5H7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/text-box-search.svg������������������������0000664�0000000�0000000�00000000744�14753064456�0027152�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 12c2.5 0 4.5 2 4.5 4.5 0 .88-.25 1.71-.69 2.4l3.08 3.1L21 23.39l-3.12-3.07c-.69.43-1.51.68-2.38.68-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5m0 2a2.5 2.5 0 0 0-2.5 2.5 2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5M7 15v2h2c.14 1.55.8 2.94 1.81 4H5a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2h14a2 2 0 0 1 2 2v8.03A6.49 6.49 0 0 0 15.5 10c-1.27 0-2.46.37-3.46 1H7v2h3c-.36.6-.66 1.28-.83 2zm10-6V7H7v2z"/></svg>����������������������������mkdocs-material-9.6.4/material/templates/.icons/material/text-box.svg�������������������������������0000664�0000000�0000000�00000000274�14753064456�0025705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 17H7v-2h7m3-2H7v-2h10m0-2H7V7h10m2-4H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/text-long.svg������������������������������0000664�0000000�0000000�00000000176�14753064456�0026055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 5h16v2H4zm0 4h16v2H4zm0 4h16v2H4zm0 4h10v2H4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/text-recognition.svg�����������������������0000664�0000000�0000000�00000000342�14753064456�0027431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4c0-1.1.9-2 2-2h4v2H4v4H2zm20 16c0 1.11-.89 2-2 2h-4v-2h4v-4h2zM4 22a2 2 0 0 1-2-2v-4h2v4h4v2zM20 2a2 2 0 0 1 2 2v4h-2V4h-4V2zM9 7v2h2v8h2V9h2V7z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/text-search-variant.svg��������������������0000664�0000000�0000000�00000000460�14753064456�0030021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 6v2H2V6zm0 5v2H2v-2zm9 5v2H2v-2zm1.31-4.5c.44-.68.69-1.5.69-2.39 0-2.5-2-4.5-4.5-4.5s-4.5 2-4.5 4.5 2 4.5 4.5 4.5c.87 0 1.69-.25 2.38-.68L21 16l1.39-1.39zm-3.81.11c-1.38 0-2.5-1.11-2.5-2.5s1.12-2.5 2.5-2.5a2.5 2.5 0 0 1 0 5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/text-search.svg����������������������������0000664�0000000�0000000�00000000523�14753064456�0026357�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.31 18.9 3.08 3.1L21 23.39l-3.12-3.07c-.69.43-1.51.68-2.38.68-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5c0 .88-.25 1.71-.69 2.4m-3.81.1a2.5 2.5 0 0 0 0-5 2.5 2.5 0 0 0 0 5M21 4v2H3V4zM3 16v-2h6v2zm0-5V9h18v2h-2.03c-1.01-.63-2.2-1-3.47-1s-2.46.37-3.47 1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/text-shadow.svg����������������������������0000664�0000000�0000000�00000000271�14753064456�0026377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h13v3h-5v12H8V6H3zm9 4h2v2h-2zm3 0h2v2h-2zm3 0h2v2h-2zm-6 3h2v2h-2zm0 3h2v2h-2zm0 3h2v2h-2zm0 3h2v2h-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/text-short.svg�����������������������������0000664�0000000�0000000�00000000146�14753064456�0026252�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 9h16v2H4zm0 4h10v2H4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/text.svg�����������������������������������0000664�0000000�0000000�00000000164�14753064456�0025115�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 6v2H3V6zM3 18h9v-2H3zm0-5h18v-2H3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/texture-box.svg����������������������������0000664�0000000�0000000�00000000372�14753064456�0026420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v16a2 2 0 0 0 2 2h16c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2M4 6l2-2h4.9L4 10.9zm0 7.7L13.7 4h4.9L4 18.6zM20 18l-2 2h-4.9l6.9-6.9zm0-7.7L10.3 20H5.4L20 5.4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/texture.svg��������������������������������0000664�0000000�0000000�00000000465�14753064456�0025635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.29 21h2.83L21 12.12V9.29M19 21c.55 0 1.05-.22 1.41-.59.37-.36.59-.86.59-1.41v-2l-4 4M5 3a2 2 0 0 0-2 2v2l4-4m4.88 0L3 11.88v2.83L14.71 3m4.79.08L3.08 19.5c.09.35.27.66.51.91.25.24.56.42.91.51L20.93 4.5c-.19-.7-.73-1.24-1.43-1.42"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/theater.svg��������������������������������0000664�0000000�0000000�00000000461�14753064456�0025565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 15h2a2 2 0 0 1 2 2v2h1v-2a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2h1v-2a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2h1v3H1v-3h1v-2a2 2 0 0 1 2-2m7-8 4 3-4 3zM4 2h16a2 2 0 0 1 2 2v9.54a3.9 3.9 0 0 0-2-.54V4H4v9c-.73 0-1.41.19-2 .54V4a2 2 0 0 1 2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/theme-light-dark.svg�����������������������0000664�0000000�0000000�00000001121�14753064456�0027251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 2c-1.79 1.15-3 3.18-3 5.5s1.21 4.35 3.03 5.5C4.46 13 2 10.54 2 7.5A5.5 5.5 0 0 1 7.5 2m11.57 1.5 1.43 1.43L4.93 20.5 3.5 19.07zm-6.18 2.43L11.41 5 9.97 6l.42-1.7L9 3.24l1.75-.12.58-1.65L12 3.1l1.73.03-1.35 1.13zm-3.3 3.61-1.16-.73-1.12.78.34-1.32-1.09-.83 1.36-.09.45-1.29.51 1.27 1.36.03-1.05.87zM19 13.5a5.5 5.5 0 0 1-5.5 5.5c-1.22 0-2.35-.4-3.26-1.07l7.69-7.69c.67.91 1.07 2.04 1.07 3.26m-4.4 6.58 2.77-1.15-.24 3.35zm4.33-2.7 1.15-2.77 2.2 2.54zm1.15-4.96-1.14-2.78 3.34.24zM9.63 18.93l2.77 1.15-2.53 2.19z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thermometer-alert.svg����������������������0000664�0000000�0000000�00000000356�14753064456�0027574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 13V7h2v6zm0 4v-2h2v2zm-4-4V5c0-1.7-1.3-3-3-3S7 3.3 7 5v8c-2.2 1.7-2.7 4.8-1 7s4.8 2.7 7 1 2.7-4.8 1-7c-.3-.4-.6-.7-1-1m-3-9c.6 0 1 .4 1 1v3H9V5c0-.6.4-1 1-1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thermometer-auto.svg�����������������������0000664�0000000�0000000�00000000413�14753064456�0027427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 14c-.3-.4-.6-.7-1-1V5c0-1.7-1.3-3-3-3S5 3.3 5 5v8c-2.2 1.7-2.7 4.8-1 7s4.8 2.7 7 1 2.7-4.8 1-7M9 8H7V5c0-.5.5-1 1-1s1 .5 1 1zm9-5h-2l-3.2 9h1.9l.7-2h3.2l.7 2h1.9zm-2.2 5.7L17 5l1.2 3.7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thermometer-bluetooth.svg������������������0000664�0000000�0000000�00000000567�14753064456�0030476�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 13V5c0-1.66-1.34-3-3-3S5 3.34 5 5v8c-2.21 1.66-2.66 4.79-1 7s4.79 2.66 7 1 2.66-4.79 1-7a4.7 4.7 0 0 0-1-1M8 4c.55 0 1 .45 1 1v3H7V5c0-.55.45-1 1-1m10 4v3.79L15.71 9.5l-.71.71L17.79 13 15 15.79l.71.71L18 14.21V18h.5l2.85-2.86L19.21 13l2.14-2.15L18.5 8zm1 1.91.94.94-.94.94zm0 4.3.94.93-.94.94z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thermometer-check.svg����������������������0000664�0000000�0000000�00000000434�14753064456�0027537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 13V5c0-1.66-1.34-3-3-3S4 3.34 4 5v8c-2.21 1.66-2.66 4.79-1 7s4.79 2.66 7 1 2.66-4.79 1-7a4.7 4.7 0 0 0-1-1M7 4c.55 0 1 .45 1 1v3H6V5c0-.55.45-1 1-1m9.25 11.16-2.75-3L14.66 11l1.59 1.59L19.84 9 21 10.41z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thermometer-chevron-down.svg���������������0000664�0000000�0000000�00000000436�14753064456�0031075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.41 12.17 14.24 9l-1.41 1.41L17.41 15 22 10.41 20.58 9M10 13V5c0-1.66-1.34-3-3-3S4 3.34 4 5v8c-2.21 1.66-2.66 4.79-1 7s4.79 2.66 7 1 2.66-4.79 1-7a4.7 4.7 0 0 0-1-1M7 4c.55 0 1 .45 1 1v3H6V5c0-.55.45-1 1-1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thermometer-chevron-up.svg�����������������0000664�0000000�0000000�00000000440�14753064456�0030545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.41 11.83 20.58 15 22 13.59 17.41 9l-4.59 4.59L14.24 15zM10 13V5c0-1.66-1.34-3-3-3S4 3.34 4 5v8c-2.21 1.66-2.66 4.79-1 7s4.79 2.66 7 1 2.66-4.79 1-7a4.7 4.7 0 0 0-1-1M7 4c.55 0 1 .45 1 1v3H6V5c0-.55.45-1 1-1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thermometer-high.svg�����������������������0000664�0000000�0000000�00000000230�14753064456�0027373�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 13V5a3 3 0 0 0-6 0v8a5 5 0 1 0 6 0m-3-9a1 1 0 0 1 1 1h-2a1 1 0 0 1 1-1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thermometer-lines.svg����������������������0000664�0000000�0000000�00000000603�14753064456�0027572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 3h4v2h-4zm0 4h4v2h-4zm0 4h4v2h-3.25l-.75-.9zm4 4v2h-2c0-.69-.1-1.37-.29-2zM7 3v2H3V3zm0 4v2H3V7zm0 4v1.1l-.75.9H3v-2zm-4 4h2.29c-.19.63-.29 1.31-.29 2H3zm12-2V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-2.21 1.66-2.66 4.79-1 7s4.79 2.66 7 1 2.66-4.79 1-7a4.7 4.7 0 0 0-1-1m-3-9c.55 0 1 .45 1 1v3h-2V5c0-.55.45-1 1-1"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thermometer-low.svg������������������������0000664�0000000�0000000�00000000234�14753064456�0027261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 13V5a3 3 0 0 0-6 0v8a5 5 0 1 0 6 0m-3-9a1 1 0 0 1 1 1v7h-2V5a1 1 0 0 1 1-1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thermometer-minus.svg����������������������0000664�0000000�0000000�00000000363�14753064456�0027616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 11h-8v2h8zm-11 2V5c0-1.66-1.34-3-3-3S5 3.34 5 5v8c-2.21 1.66-2.66 4.79-1 7s4.79 2.66 7 1 2.66-4.79 1-7a4.7 4.7 0 0 0-1-1M8 4c.55 0 1 .45 1 1v3H7V5c0-.55.45-1 1-1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thermometer-off.svg������������������������0000664�0000000�0000000�00000000434�14753064456�0027234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11 7.8-2-2V5c0-1.66 1.34-3 3-3s3 1.34 3 3v6.8L11.2 8H13V5c0-.55-.45-1-1-1s-1 .45-1 1zm11.11 13.66L2.39 1.73 1.11 3 9 10.89V13a4.997 4.997 0 0 0-1 7 4.997 4.997 0 0 0 7 1c.84-.63 1.4-1.5 1.71-2.4l4.13 4.13z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thermometer-plus.svg�����������������������0000664�0000000�0000000�00000000405�14753064456�0027443�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 11V8h-2v3h-3v2h3v3h2v-3h3v-2m-11 2V5c0-1.66-1.34-3-3-3S5 3.34 5 5v8c-2.21 1.66-2.66 4.79-1 7s4.79 2.66 7 1 2.66-4.79 1-7a4.7 4.7 0 0 0-1-1M8 4c.55 0 1 .45 1 1v3H7V5c0-.55.45-1 1-1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thermometer-probe-off.svg������������������0000664�0000000�0000000�00000000436�14753064456�0030343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2 3.64 7.24 7.24-6.43 6.43a2.76 2.76 0 0 0 0 3.89 2.76 2.76 0 0 0 3.89 0l6.43-6.43 7.6 7.6L22 21.1 3.27 2.37zm8.23 8.22 1.91 1.91a1.376 1.376 0 1 1-1.91-1.91m4.23-.86L13 9.55l.47-.08 6-6L22 2l-1.46 2.54-6 6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thermometer-probe.svg����������������������0000664�0000000�0000000�00000000506�14753064456�0027571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.47 3.47-6 6-2.94.53c-.31.03-.59.18-.81.4l-6.91 6.91a2.76 2.76 0 0 0 0 3.89 2.76 2.76 0 0 0 3.89 0l6.91-6.91c.22-.22.39-.5.42-.79l.51-2.96 6-6L22 2zM11 14.38c-.76 0-1.38-.62-1.38-1.38s.62-1.38 1.38-1.38 1.38.62 1.38 1.38A1.39 1.39 0 0 1 11 14.38"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thermometer-water.svg����������������������0000664�0000000�0000000�00000000436�14753064456�0027606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 13V5c0-1.66-1.34-3-3-3S4 3.34 4 5v8c-2.21 1.66-2.66 4.79-1 7s4.79 2.66 7 1 2.66-4.79 1-7a4.7 4.7 0 0 0-1-1M7 4c.55 0 1 .45 1 1v3H6V5c0-.55.45-1 1-1m11 3s-4 4.34-4 7.07c0 5.24 8 5.24 8 0C22 11.34 18 7 18 7"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thermometer.svg����������������������������0000664�0000000�0000000�00000000234�14753064456�0026462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 13V5a3 3 0 0 0-6 0v8a5 5 0 1 0 6 0m-3-9a1 1 0 0 1 1 1v3h-2V5a1 1 0 0 1 1-1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thermostat-auto.svg������������������������0000664�0000000�0000000�00000000741�14753064456�0027272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10c.4 0 .7 0 1.1-.1l2.3-6.6-.6-.6c.7-.7 1.2-1.7 1.2-2.8 0-.7-.2-1.4-.6-2l2.2-2.2C18.5 9 19 10.4 19 12h1c.3 0 .6.1.8.2 0 0 .1 0 .1.1.4.2.8.6 1 1.1.1-.5.1-.9.1-1.4 0-5.5-4.5-10-10-10m2 6.6c-.6-.4-1.3-.6-2-.6-2.2 0-4 1.8-4 4 0 1.1.4 2.1 1.2 2.8l-2.1 2.1C5.8 15.7 5 13.9 5 12c0-3.9 3.1-7 7-7 1.6 0 3 .5 4.2 1.4zm6 5.4h-2l-3.2 9h1.9l.7-2h3.2l.7 2h1.9zm-2.2 5.7L19 16l1.2 3.7z"/></svg>�������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thermostat-box-auto.svg��������������������0000664�0000000�0000000�00000000632�14753064456�0030057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 14h-2l-3.2 9h1.9l.7-2h3.2l.7 2h1.9zm-2.2 5.7L19 16l1.2 3.7zm-2.4-4.3-.6-.6c.7-.7 1.2-1.7 1.2-2.8 0-.7-.2-1.4-.6-2l2.2-2.2C18.5 9 19 10.4 19 12h2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8.4zm-6.2-.6L7 17c-1.3-1.3-2-3-2-5 0-3.9 3.1-7 7-7 1.6 0 3 .5 4.2 1.4L14 8.6c-.6-.4-1.3-.6-2-.6-2.2 0-4 1.8-4 4 0 1.1.5 2.1 1.2 2.8"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thermostat-box.svg�������������������������0000664�0000000�0000000�00000000622�14753064456�0027110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zm7 2c1.57 0 3 .5 4.19 1.4L14 8.56c-.57-.35-1.26-.56-2-.56a4 4 0 0 0-4 4c0 1.1.45 2.1 1.17 2.83l-2.12 2.12A6.98 6.98 0 0 1 5 12a7 7 0 0 1 7-7m5.6 2.81A6.86 6.86 0 0 1 19 12c0 1.93-.78 3.68-2.05 4.95l-2.12-2.12C15.55 14.1 16 13.1 16 12c0-.74-.21-1.43-.57-2z"/></svg>��������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thermostat-cog.svg�������������������������0000664�0000000�0000000�00000002232�14753064456�0027067�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 12.66c-.93-.42-1.93-.66-3-.66 0-1.57-.5-3-1.4-4.19L15.43 10c.36.57.57 1.26.57 2 0 .24 0 .5-.06.7A7.01 7.01 0 0 0 12 19c0 1.07.24 2.07.66 3H12a10.1 10.1 0 0 1-3.83-.76 10 10 0 0 1-3.24-2.17A9.97 9.97 0 0 1 2 12c0-2.65 1.05-5.2 2.93-7.07.93-.93 2.03-1.67 3.24-2.17A10.1 10.1 0 0 1 12 2c5.5 0 10 4.47 10 10zM12 5a7.001 7.001 0 0 0-4.95 11.95l2.12-2.12a4.004 4.004 0 0 1 0-5.66C9.92 8.42 10.94 8 12 8c.74 0 1.43.21 2 .56l2.19-2.16A6.86 6.86 0 0 0 12 5m11.83 15.64c.06-.11.04-.25-.06-.32l-1.05-.82a4.3 4.3 0 0 0 0-1l1.05-.82c.1-.07.12-.18.06-.32l-1-1.72c-.06-.11-.19-.14-.3-.11l-1.25.47-.14-.09c-.23-.14-.44-.27-.7-.37l-.19-1.33A.25.25 0 0 0 20 14h-2c-.12 0-.23.09-.25.21l-.18 1.33c-.27.1-.48.24-.71.38l-.14.08-1.22-.47c-.13-.03-.27 0-.33.11l-1 1.72c-.06.14-.03.25.06.32l1.06.82v.03c-.02.16-.04.31-.04.47s.02.31.04.47v.03l-1.06.82c-.09.07-.12.21-.06.32l1 1.73c.06.13.2.13.33.13l1.22-.53c.28.2.53.37.85.5l.18 1.32c.02.12.13.21.25.21h2c.13 0 .23-.09.25-.21l.19-1.32c.31-.13.56-.3.84-.5l1.25.53c.11 0 .24 0 .3-.13zM19 17.25c.97 0 1.75.78 1.75 1.75s-.79 1.75-1.75 1.75-1.75-.78-1.75-1.75.78-1.75 1.75-1.75"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thermostat.svg�����������������������������0000664�0000000�0000000�00000000646�14753064456�0026330�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.95 16.95-2.12-2.12C15.55 14.1 16 13.1 16 12c0-.74-.21-1.43-.57-2l2.17-2.19A6.86 6.86 0 0 1 19 12c0 1.93-.78 3.68-2.05 4.95M12 5c1.57 0 3 .5 4.19 1.4L14 8.56c-.57-.35-1.26-.56-2-.56a4 4 0 0 0-4 4c0 1.1.45 2.1 1.17 2.83l-2.12 2.12A6.98 6.98 0 0 1 5 12a7 7 0 0 1 7-7m0-3A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10c0-5.53-4.5-10-10-10"/></svg>������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thought-bubble-outline.svg�����������������0000664�0000000�0000000�00000001715�14753064456�0030524�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.5 19A1.5 1.5 0 0 1 5 20.5 1.5 1.5 0 0 1 3.5 22 1.5 1.5 0 0 1 2 20.5 1.5 1.5 0 0 1 3.5 19m5-3a2.5 2.5 0 0 1 2.5 2.5A2.5 2.5 0 0 1 8.5 21 2.5 2.5 0 0 1 6 18.5 2.5 2.5 0 0 1 8.5 16m6-1c-1.19 0-2.27-.5-3-1.35-.73.85-1.81 1.35-3 1.35-1.96 0-3.59-1.41-3.93-3.26A4.02 4.02 0 0 1 2 8a4 4 0 0 1 4-4l.77.07C7.5 3.41 8.45 3 9.5 3c1.19 0 2.27.5 3 1.35.73-.85 1.81-1.35 3-1.35 1.96 0 3.59 1.41 3.93 3.26A4.02 4.02 0 0 1 22 10a4 4 0 0 1-4 4l-.77-.07c-.73.66-1.68 1.07-2.73 1.07M6 6a2 2 0 0 0-2 2 2 2 0 0 0 2 2c.33 0 .64-.08.92-.22A2 2 0 0 0 6.5 11a2 2 0 0 0 2 2c.6 0 1.14-.27 1.5-.69l1.47-1.68L13 12.34c.38.4.91.66 1.5.66 1 0 1.83-.74 2-1.7.34.43.89.7 1.5.7a2 2 0 0 0 2-2 2 2 0 0 0-2-2c-.33 0-.64.08-.92.22A2 2 0 0 0 17.5 7a2 2 0 0 0-2-2c-.59 0-1.12.26-1.5.66l-1.53 1.71L11 5.69c-.36-.42-.9-.69-1.5-.69-1 0-1.83.74-2 1.7C7.16 6.27 6.61 6 6 6m2.5 11.5a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>���������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thought-bubble.svg�������������������������0000664�0000000�0000000�00000001053�14753064456�0027042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.5 19A1.5 1.5 0 0 1 5 20.5 1.5 1.5 0 0 1 3.5 22 1.5 1.5 0 0 1 2 20.5 1.5 1.5 0 0 1 3.5 19m5-3a2.5 2.5 0 0 1 2.5 2.5A2.5 2.5 0 0 1 8.5 21 2.5 2.5 0 0 1 6 18.5 2.5 2.5 0 0 1 8.5 16m6-1c-1.19 0-2.27-.5-3-1.35-.73.85-1.81 1.35-3 1.35-1.96 0-3.59-1.41-3.93-3.26A4.02 4.02 0 0 1 2 8a4 4 0 0 1 4-4c.26 0 .5.03.77.07C7.5 3.41 8.45 3 9.5 3c1.19 0 2.27.5 3 1.35.73-.85 1.81-1.35 3-1.35 1.96 0 3.59 1.41 3.93 3.26A4.02 4.02 0 0 1 22 10a4 4 0 0 1-4 4l-.77-.07c-.73.66-1.68 1.07-2.73 1.07"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thumb-down-outline.svg���������������������0000664�0000000�0000000�00000000466�14753064456�0027677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 15V3h4v12zM15 3a2 2 0 0 1 2 2v10c0 .55-.22 1.05-.59 1.41L9.83 23l-1.06-1.06c-.27-.27-.44-.64-.44-1.06l.03-.31.95-4.57H3a2 2 0 0 1-2-2v-2c0-.26.05-.5.14-.73l3.02-7.05C4.46 3.5 5.17 3 6 3zm0 2H5.97L3 12v2h8.78l-1.13 5.32L15 14.97z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thumb-down.svg�����������������������������0000664�0000000�0000000�00000000433�14753064456�0026214�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 15h4V3h-4m-4 0H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2a2 2 0 0 0 2 2h6.31l-.95 4.57c-.02.1-.03.2-.03.31 0 .42.17.79.44 1.06L9.83 23l6.58-6.59c.37-.36.59-.86.59-1.41V5a2 2 0 0 0-2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thumb-up-outline.svg�����������������������0000664�0000000�0000000�00000000462�14753064456�0027350�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 9v12H1V9zm4 12a2 2 0 0 1-2-2V9c0-.55.22-1.05.59-1.41L14.17 1l1.06 1.06c.27.27.44.64.44 1.05l-.03.32L14.69 8H21a2 2 0 0 1 2 2v2c0 .26-.05.5-.14.73l-3.02 7.05C19.54 20.5 18.83 21 18 21zm0-2h9.03L21 12v-2h-8.79l1.13-5.32L9 9.03z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thumb-up.svg�������������������������������0000664�0000000�0000000�00000000434�14753064456�0025672�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 10a2 2 0 0 0-2-2h-6.32l.96-4.57c.02-.1.03-.21.03-.32 0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.58C7.22 7.95 7 8.45 7 9v10a2 2 0 0 0 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73zM1 21h4V9H1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thumbs-up-down-outline.svg�����������������0000664�0000000�0000000�00000001041�14753064456�0030472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6c0-.55-.45-1-1-1H5.82l.68-3.18v-.23c0-.31-.13-.59-.33-.8L5.38 0 .44 4.94C.17 5.21 0 5.59 0 6v6.5c0 .83.67 1.5 1.5 1.5h6.75c.62 0 1.15-.38 1.38-.91l2.26-5.29c.07-.17.11-.36.11-.55zm-2 1.13L7.92 12H2V6.21l1.93-1.93L3.36 7H10zM22.5 10h-6.75c-.62 0-1.15.38-1.38.91l-2.26 5.29c-.07.17-.11.36-.11.55V18c0 .55.45 1 1 1h5.18l-.68 3.18v.24c0 .31.13.58.33.8l.79.78 4.94-4.94c.27-.27.44-.65.44-1.06v-6.5c0-.83-.67-1.5-1.5-1.5m-.5 7.79-1.93 1.93.57-2.72H14v-.13L16.08 12H22z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/thumbs-up-down.svg�������������������������0000664�0000000�0000000�00000000702�14753064456�0027020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.5 10h-6.75c-.62 0-1.15.38-1.38.91l-2.26 5.29c-.07.17-.11.36-.11.55V18a1 1 0 0 0 1 1h5.18l-.68 3.18v.24c0 .31.13.58.33.8l.79.78 4.94-4.94c.27-.27.44-.65.44-1.06v-6.5a1.5 1.5 0 0 0-1.5-1.5M12 6a1 1 0 0 0-1-1H5.82l.68-3.18v-.23c0-.31-.13-.59-.33-.8L5.38 0 .44 4.94C.17 5.21 0 5.59 0 6v6.5A1.5 1.5 0 0 0 1.5 14h6.75c.62 0 1.15-.38 1.38-.91l2.26-5.29c.07-.17.11-.36.11-.55z"/></svg>��������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ticket-account.svg�������������������������0000664�0000000�0000000�00000000562�14753064456�0027050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 12a2 2 0 0 0 2 2v4a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-4a2 2 0 0 0 2-2 2 2 0 0 0-2-2V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 0-2 2m-3.5 4.25c0-1.5-3-2.25-4.5-2.25s-4.5.75-4.5 2.25V17h9zm-4.5-4A2.25 2.25 0 0 0 14.25 10 2.25 2.25 0 0 0 12 7.75 2.25 2.25 0 0 0 9.75 10 2.25 2.25 0 0 0 12 12.25"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ticket-confirmation-outline.svg������������0000664�0000000�0000000�00000000522�14753064456�0031555�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 10V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v4a2 2 0 1 1 0 4v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2m-2-1.46c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.5-.8-2.77-2-3.46V6h16zM11 15h2v2h-2m0-6h2v2h-2m0-6h2v2h-2Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ticket-confirmation.svg��������������������0000664�0000000�0000000�00000000400�14753064456�0030073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 8.5h-2v-2h2zm0 4.5h-2v-2h2zm0 4.5h-2v-2h2zm9-7.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v4a2 2 0 0 1 2 2 2 2 0 0 1-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 1-2-2 2 2 0 0 1 2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ticket-outline.svg�������������������������0000664�0000000�0000000�00000000466�14753064456�0027076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4a2 2 0 0 0-2 2v4a2 2 0 0 1 2 2 2 2 0 0 1-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 1-2-2 2 2 0 0 1 2-2V6a2 2 0 0 0-2-2zm0 2h16v2.54c-1.24.71-2 2.03-2 3.46s.76 2.75 2 3.46V18H4v-2.54c1.24-.71 2-2.03 2-3.46s-.76-2.75-2-3.46z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ticket-percent-outline.svg�����������������0000664�0000000�0000000�00000000701�14753064456�0030524�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.8 8 16 9.2 9.2 16 8 14.8zM4 4h16c1.11 0 2 .89 2 2v4a2 2 0 1 0 0 4v4c0 1.11-.89 2-2 2H4a2 2 0 0 1-2-2v-4c1.11 0 2-.89 2-2a2 2 0 0 0-2-2V6a2 2 0 0 1 2-2m0 2v2.54a3.994 3.994 0 0 1 0 6.92V18h16v-2.54a3.994 3.994 0 0 1 0-6.92V6zm5.5 2c.83 0 1.5.67 1.5 1.5S10.33 11 9.5 11 8 10.33 8 9.5 8.67 8 9.5 8m5 5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5"/></svg>���������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ticket-percent.svg�������������������������0000664�0000000�0000000�00000000713�14753064456�0027052�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4a2 2 0 0 0-2 2v4a2 2 0 0 1 2 2 2 2 0 0 1-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 1-2-2 2 2 0 0 1 2-2V6a2 2 0 0 0-2-2zm11.5 3L17 8.5 8.5 17 7 15.5zm-6.69.04c.98 0 1.77.79 1.77 1.77a1.77 1.77 0 0 1-1.77 1.77c-.98 0-1.77-.79-1.77-1.77a1.77 1.77 0 0 1 1.77-1.77m6.38 6.38c.98 0 1.77.79 1.77 1.77a1.77 1.77 0 0 1-1.77 1.77c-.98 0-1.77-.79-1.77-1.77a1.77 1.77 0 0 1 1.77-1.77"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ticket.svg���������������������������������0000664�0000000�0000000�00000000455�14753064456�0025417�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.58 16.8 12 14.5l-3.58 2.3 1.08-4.12L6.21 10l4.25-.26L12 5.8l1.54 3.94 4.25.26-3.29 2.68M20 12a2 2 0 0 1 2-2V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v4a2 2 0 0 1 2 2 2 2 0 0 1-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 1-2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tie.svg������������������������������������0000664�0000000�0000000�00000000155�14753064456�0024712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6 2 4 4-3 11 5 5 5-5-3-11 4-4Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tilde-off.svg������������������������������0000664�0000000�0000000�00000000421�14753064456�0025776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.84 22.73 10.78 12.67C10 12.03 9.27 11.5 8.5 11.5c-4 0-4 3.5-4 3.5H2s0-5.41 5.16-5.95L1.11 3l1.28-1.27 7.64 7.64L15.64 15h-.01l6.48 6.46zM22 9h-2.5s0 3.38-3.81 3.5l2.26 2.25C22 13.62 22 9 22 9"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tilde.svg����������������������������������0000664�0000000�0000000�00000000260�14753064456�0025227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 15s0-6 6-6c4 0 4.5 3.5 7.5 3.5 4 0 4-3.5 4-3.5H22s0 6-6 6c-4 0-5.5-3.5-7.5-3.5-4 0-4 3.5-4 3.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timelapse.svg������������������������������0000664�0000000�0000000�00000000453�14753064456�0026115�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m4.24 5.76A5.95 5.95 0 0 0 12 6v6l-4.24 4.24a6 6 0 0 0 8.48 0 5.98 5.98 0 0 0 0-8.48"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timeline-alert-outline.svg�����������������0000664�0000000�0000000�00000000412�14753064456�0030515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2v6H2V2zM2 22v-6h2v6zm3-10c0 1.11-.89 2-2 2a2 2 0 1 1 2-2m19-6v12c0 1.11-.89 2-2 2H10a2 2 0 0 1-2-2v-4l-2-2 2-2V6a2 2 0 0 1 2-2h12c1.11 0 2 .89 2 2M10 6v12h12V6zm5 1h2v6h-2zm0 8h2v2h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timeline-alert.svg�������������������������0000664�0000000�0000000�00000000374�14753064456�0027047�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2v6H2V2zM2 22v-6h2v6zm3-10c0 1.11-.89 2-2 2a2 2 0 1 1 2-2m19-6v12c0 1.11-.89 2-2 2H10a2 2 0 0 1-2-2v-4l-2-2 2-2V6a2 2 0 0 1 2-2h12c1.11 0 2 .89 2 2m-9 1v6h2V7zm0 8v2h2v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timeline-check-outline.svg�����������������0000664�0000000�0000000�00000000444�14753064456�0030470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 4H10a2 2 0 0 0-2 2v4l-2 2 2 2v4a2 2 0 0 0 2 2h12c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2m0 14H10V6h12zM4 8H2V2h2zm-2 8h2v6H2zm3-4c0 1.11-.89 2-2 2a2 2 0 1 1 2-2m10 3.08-2.75-3 1.16-1.16L15 12.5l3.59-3.58 1.16 1.41z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timeline-check.svg�������������������������0000664�0000000�0000000�00000000454�14753064456�0027014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 8H2V2h2zM2 22h2v-6H2zm1-12a2 2 0 1 0 0 4c1.11 0 2-.89 2-2a2 2 0 0 0-2-2m21-4v12c0 1.11-.89 2-2 2H10a2 2 0 0 1-2-2v-4l-2-2 2-2V6a2 2 0 0 1 2-2h12c1.11 0 2 .89 2 2m-4.25 4.33-1.16-1.41L15 12.5l-1.59-1.58-1.16 1.16 2.75 3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timeline-clock-outline.svg�����������������0000664�0000000�0000000�00000000504�14753064456�0030503�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2v6H2V2zM2 22v-6h2v6zm3-10c0 1.11-.89 2-2 2a2 2 0 1 1 2-2m11-8c4.42 0 8 3.58 8 8s-3.58 8-8 8c-3.6 0-6.64-2.38-7.65-5.65L6 12l2.35-2.35C9.36 6.38 12.4 4 16 4m0 2c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6m-1 7V8h1.5v4.2l3 1.8-.82 1.26z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timeline-clock.svg�������������������������0000664�0000000�0000000�00000000422�14753064456�0027025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2v6H2V2zM2 22v-6h2v6zm3-10c0 1.11-.89 2-2 2a2 2 0 1 1 2-2m11-8c4.42 0 8 3.58 8 8s-3.58 8-8 8c-3.6 0-6.64-2.38-7.65-5.65L6 12l2.35-2.35C9.36 6.38 12.4 4 16 4m-1 9 4.53 2.79.8-1.29-3.83-2.3V7H15z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timeline-minus-outline.svg�����������������0000664�0000000�0000000�00000000415�14753064456�0030544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 16h2v6H2zM4 2H2v6h2zm16 9h-8v2h8zM3 10a2 2 0 1 0 0 4c1.11 0 2-.89 2-2a2 2 0 0 0-2-2m21-4v12c0 1.11-.89 2-2 2H10a2 2 0 0 1-2-2v-4l-2-2 2-2V6a2 2 0 0 1 2-2h12c1.11 0 2 .89 2 2m-2 0H10v12h12z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timeline-minus.svg�������������������������0000664�0000000�0000000�00000000377�14753064456�0027076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 8H2V2h2zm20-2v12c0 1.11-.89 2-2 2H10a2 2 0 0 1-2-2v-4l-2-2 2-2V6a2 2 0 0 1 2-2h12c1.11 0 2 .89 2 2m-4 5h-8v2h8zM2 22h2v-6H2zm1-12a2 2 0 1 0 0 4c1.11 0 2-.89 2-2a2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timeline-outline.svg�����������������������0000664�0000000�0000000�00000000362�14753064456�0027414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2v6H2V2zM2 22v-6h2v6zm3-10c0 1.11-.89 2-2 2a2 2 0 1 1 2-2m19-6v12c0 1.11-.89 2-2 2H10a2 2 0 0 1-2-2v-4l-2-2 2-2V6a2 2 0 0 1 2-2h12c1.11 0 2 .89 2 2M10 6v12h12V6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timeline-plus-outline.svg������������������0000664�0000000�0000000�00000000422�14753064456�0030372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2v6H2V2zM2 22v-6h2v6zm3-10c0 1.11-.89 2-2 2a2 2 0 1 1 2-2m15-1v2h-3v3h-2v-3h-3v-2h3V8h2v3zm4-5v12c0 1.11-.89 2-2 2H10a2 2 0 0 1-2-2v-4l-2-2 2-2V6a2 2 0 0 1 2-2h12c1.11 0 2 .89 2 2M10 6v12h12V6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timeline-plus.svg��������������������������0000664�0000000�0000000�00000000404�14753064456�0026715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2v6H2V2zM2 22v-6h2v6zm3-10c0 1.11-.89 2-2 2a2 2 0 1 1 2-2m19-6v12c0 1.11-.89 2-2 2H10a2 2 0 0 1-2-2v-4l-2-2 2-2V6a2 2 0 0 1 2-2h12c1.11 0 2 .89 2 2m-4 5h-3V8h-2v3h-3v2h3v3h2v-3h3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timeline-question-outline.svg��������������0000664�0000000�0000000�00000000744�14753064456�0031265�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 12c0 1.11-.89 2-2 2a2 2 0 1 1 2-2M4 2v6H2V2zM2 22v-6h2v6zM24 6v12c0 1.11-.89 2-2 2H10a2 2 0 0 1-2-2v-4l-2-2 2-2V6a2 2 0 0 1 2-2h12c1.11 0 2 .89 2 2m-2 0H10v4.83L8.83 12 10 13.17V18h12zm-5.5 9.5V17H15v-1.5zm-2-5H13V10c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .97-.5 1.88-1.29 2.41l-.3.19c-.57.4-.91 1.02-.91 1.7v.2H15v-.2c0-1.19.6-2.3 1.59-2.95l.29-.19c.39-.26.62-.69.62-1.16 0-.82-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5z"/></svg>����������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timeline-question.svg����������������������0000664�0000000�0000000�00000000674�14753064456�0027612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2v6H2V2zM2 22v-6h2v6zm3-10c0 1.11-.89 2-2 2a2 2 0 1 1 2-2m19-6v12c0 1.11-.89 2-2 2H10a2 2 0 0 1-2-2v-4l-2-2 2-2V6a2 2 0 0 1 2-2h12c1.11 0 2 .89 2 2m-7.5 9.5H15V17h1.5zm-2-5V10c0-.83.67-1.5 1.5-1.5s1.5.68 1.5 1.5c0 .47-.23.9-.62 1.16l-.29.19C15.6 12 15 13.11 15 14.3v.2h1.5v-.2c0-.68.34-1.3.91-1.7l.3-.19C18.5 11.88 19 10.97 19 10c0-1.66-1.34-3-3-3s-3 1.34-3 3v.5z"/></svg>��������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timeline-remove-outline.svg����������������0000664�0000000�0000000�00000000571�14753064456�0030711�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 8H2V2h2zM2 22h2v-6H2zm1-12a2 2 0 1 0 0 4c1.11 0 2-.89 2-2a2 2 0 0 0-2-2m10.88 5.54L16 13.41l2.12 2.12 1.41-1.41L17.41 12l2.12-2.12-1.41-1.41L16 10.59l-2.12-2.12-1.41 1.41L14.59 12l-2.12 2.12zM24 6v12c0 1.11-.89 2-2 2H10a2 2 0 0 1-2-2v-4l-2-2 2-2V6a2 2 0 0 1 2-2h12c1.11 0 2 .89 2 2m-2 0H10v12h12z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timeline-remove.svg������������������������0000664�0000000�0000000�00000000550�14753064456�0027231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 8H2V2h2zM2 22h2v-6H2zm1-12a2 2 0 1 0 0 4c1.11 0 2-.89 2-2a2 2 0 0 0-2-2m21-4v12c0 1.11-.89 2-2 2H10a2 2 0 0 1-2-2v-4l-2-2 2-2V6a2 2 0 0 1 2-2h12c1.11 0 2 .89 2 2m-6.59 6 2.12-2.12-1.41-1.41L16 10.59l-2.12-2.12-1.41 1.41L14.59 12l-2.12 2.12 1.41 1.41L16 13.41l2.12 2.12 1.41-1.41z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timeline-text-outline.svg������������������0000664�0000000�0000000�00000000442�14753064456�0030375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 12c0 1.11-.89 2-2 2a2 2 0 1 1 2-2M4 2v6H2V2zM2 22v-6h2v6zM24 6v12c0 1.11-.89 2-2 2H10a2 2 0 0 1-2-2v-4l-2-2 2-2V6a2 2 0 0 1 2-2h12c1.11 0 2 .89 2 2m-2 0H10v4.83L8.83 12 10 13.17V18h12zM12 9h8v2h-8zm0 4h6v2h-6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timeline-text.svg��������������������������0000664�0000000�0000000�00000000376�14753064456�0026726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2v6H2V2zM2 22h2v-6H2zm3-10a2 2 0 1 0-2 2c1.11 0 2-.89 2-2m19-6v12c0 1.11-.89 2-2 2H10a2 2 0 0 1-2-2v-4l-2-2 2-2V6a2 2 0 0 1 2-2h12c1.11 0 2 .89 2 2m-5 7h-8v2h8zm2-4H11v2h10z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timeline.svg�������������������������������0000664�0000000�0000000�00000000344�14753064456�0025737�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2v6H2V2zM2 22v-6h2v6zm3-10c0 1.11-.89 2-2 2a2 2 0 1 1 2-2m19-6v12c0 1.11-.89 2-2 2H10a2 2 0 0 1-2-2v-4l-2-2 2-2V6a2 2 0 0 1 2-2h12c1.11 0 2 .89 2 2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-10.svg�������������������������������0000664�0000000�0000000�00000003251�14753064456�0025467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.9 13.22q0 .9-.12 1.53c-.08.42-.2.75-.36 1.02-.16.26-.36.45-.59.57s-.51.16-.83.16c-.29 0-.57-.04-.81-.16q-.36-.18-.6-.57c-.16-.27-.29-.6-.38-1.02s-.13-.93-.13-1.53v-2.5c0-.6.04-1.11.13-1.52s.21-.74.38-1c.16-.25.36-.43.6-.55.24-.11.51-.15.81-.15.31 0 .58.04.81.15.24.11.44.29.6.55.16.25.29.58.37.99s.13.92.13 1.52v2.51m.91-6.17c-.32-.4-.75-.7-1.23-.88A4.7 4.7 0 0 0 11 5.9c-.58 0-1.11.1-1.59.27-.48.18-.91.47-1.23.88-.34.41-.6.95-.79 1.59-.18.65-.28 1.45-.28 2.39v1.92c0 .94.09 1.74.28 2.39.19.66.45 1.19.8 1.6.34.41.75.71 1.23.89a4.658 4.658 0 0 0 3.18 0c.48-.18.9-.48 1.22-.89.34-.41.6-.94.78-1.6.18-.65.28-1.45.28-2.39v-1.92c0-.94-.09-1.74-.28-2.39-.18-.64-.44-1.19-.78-1.59m9.96 7.32c-.14-.28-.35-.53-.63-.74s-.61-.39-1.01-.53-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.22-.23-.09-.42-.17-.55-.26a.7.7 0 0 1-.28-.3.9.9 0 0 1-.09-.39c0-.14.04-.28.1-.41a.8.8 0 0 1 .27-.34c.13-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.03.66.11.19.07.35.17.48.29.13.13.22.26.29.42.06.16.11.32.11.49h1.94c0-.39-.08-.75-.24-1.09s-.39-.63-.7-.88c-.29-.25-.65-.44-1.08-.59C21.5 9.07 21 9 20.46 9c-.51 0-.96.07-1.39.21-.41.14-.77.33-1.07.57-.28.22-.5.52-.66.84a2.2 2.2 0 0 0-.23 1.01c0 .37.08.69.23.96.16.28.36.52.66.73.25.21.58.38.96.53s.81.26 1.27.36c.39.08.71.17.95.26s.43.19.57.29c.13.1.22.24.25.34.07.12.09.25.09.4 0 .31-.13.56-.4.76s-.66.29-1.19.29c-.2 0-.41-.02-.62-.08a1.9 1.9 0 0 1-.56-.24c-.17-.11-.32-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .38.08.71.24 1.05.16.33.39.65.7.93.31.27.69.49 1.15.66s.98.24 1.57.24c.54 0 1-.05 1.45-.18.43-.13.8-.32 1.11-.54.31-.23.54-.51.71-.83s.23-.67.23-1.06-.07-.74-.22-1.02M0 7.72V9.4l3-1V18h2V6h-.25z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-3.svg��������������������������������0000664�0000000�0000000�00000003527�14753064456�0025417�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.87 14.37c-.14-.28-.37-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.88-.22-.22-.09-.4-.17-.54-.26a.7.7 0 0 1-.28-.3.9.9 0 0 1-.08-.39c0-.15.03-.28.09-.41a.8.8 0 0 1 .27-.34q.18-.15.45-.24c.18-.06.4-.09.64-.09.25 0 .45.03.66.11.19.07.35.17.48.29.13.13.22.26.31.42.04.16.08.32.08.49h1.95a2.52 2.52 0 0 0-.93-1.97c-.3-.25-.66-.44-1.1-.59-.42-.15-.91-.22-1.45-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.22-.51.52-.67.84a2.2 2.2 0 0 0-.23 1.01c0 .37.08.68.23.96s.37.52.64.73.6.38.98.53.81.26 1.27.36c.39.08.71.17.95.26.23.09.43.19.57.29.13.1.22.24.27.34.05.12.07.25.07.4 0 .31-.13.56-.4.76-.28.2-.66.29-1.17.29-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24a1.33 1.33 0 0 1-.59-1.11h-1.89c0 .38.07.71.24 1.05.16.33.39.65.7.93.31.27.69.49 1.13.66.5.17 1 .24 1.6.24.53 0 1.01-.05 1.44-.18s.8-.32 1.11-.54c.31-.23.54-.51.71-.83s.25-.67.25-1.06c-.02-.39-.11-.74-.24-1.02m-9.26-1.4c-.16-.24-.36-.47-.61-.65a3.6 3.6 0 0 0-.94-.48c.3-.14.57-.3.8-.5s.42-.41.57-.64.27-.46.34-.7c.08-.25.11-.5.11-.74 0-.55-.09-1.04-.28-1.46-.18-.42-.44-.77-.78-1.06-.32-.28-.73-.5-1.2-.64-.45-.13-.97-.2-1.53-.2-.55 0-1.06.1-1.52.24q-.705.255-1.2.69c-.33.29-.6.63-.78 1.03-.2.39-.29.83-.29 1.29h1.98c0-.26.05-.49.14-.69.08-.2.22-.38.38-.52.17-.14.36-.25.58-.33s.46-.11.73-.11c.61 0 1.06.15 1.36.46s.44.75.44 1.32c0 .27-.04.52-.12.72-.08.24-.21.43-.38.59s-.38.28-.63.37-.55.13-.89.13H6.72v1.57H7.9c.34 0 .64.04.91.11.27.08.5.19.69.35s.34.38.44.61c.1.24.16.54.16.87 0 .62-.18 1.09-.53 1.4-.35.35-.84.5-1.45.5-.29 0-.56-.03-.8-.12-.24-.08-.44-.2-.61-.38q-.255-.21-.39-.54c-.09-.22-.14-.46-.14-.72H4.19c0 .55.11 1.03.31 1.45.22.42.5.77.87 1.05.36.26.77.49 1.24.63.47.13.96.21 1.48.21.57 0 1.09-.08 1.58-.23s.91-.38 1.26-.68c.36-.3.64-.67.84-1.1s.3-.93.3-1.48c0-.29-.04-.59-.11-.86-.08-.23-.19-.51-.35-.76"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-alert-outline.svg��������������������0000664�0000000�0000000�00000000454�14753064456�0030035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 8h2v6H9zm4-7H7v2h6zm4.03 6.39A8.96 8.96 0 0 1 19 13c0 4.97-4 9-9 9a9 9 0 0 1 0-18c2.12 0 4.07.74 5.62 2l1.42-1.44c.51.44.96.9 1.41 1.41zM17 13c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7 7-3.13 7-7m4-6v6h2V7zm0 10h2v-2h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-alert.svg����������������������������0000664�0000000�0000000�00000000377�14753064456�0026364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.45 5.97c-.45-.51-.9-.97-1.41-1.41L15.62 6c-1.55-1.26-3.5-2-5.62-2a9 9 0 0 0 0 18c5 0 9-4.03 9-9 0-2.12-.74-4.07-1.97-5.61zM11 14H9V7h2zm2-11H7V1h6zm10 4v6h-2V7zm-2 8h2v2h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-cancel-outline.svg�������������������0000664�0000000�0000000�00000001071�14753064456�0030147�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 8h2v6h-2zm4-7H9v2h6zm-3 19c-3.87 0-7-3.13-7-7s3.13-7 7-7c3.54 0 6.45 2.62 6.93 6.03.72.05 1.41.2 2.07.47a9.16 9.16 0 0 0-1.97-5.11l1.42-1.42c-.45-.51-.9-.97-1.41-1.41L17.62 6c-1.55-1.26-3.5-2-5.62-2a9 9 0 0 0 0 18c.34 0 .67 0 1-.06-.37-.59-.65-1.25-.82-1.94zm11-1.5c0 2.5-2 4.5-4.5 4.5S14 21 14 18.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5m-3 2.58L15.92 17c-.27.42-.42.94-.42 1.5 0 1.66 1.34 3 3 3 .56 0 1.08-.15 1.5-.42m1.5-2.58c0-1.66-1.34-3-3-3-.56 0-1.08.15-1.5.42L21.08 20c.27-.42.42-.94.42-1.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-cancel.svg���������������������������0000664�0000000�0000000�00000000771�14753064456�0026500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 3H9V1h6zm-3 15.5c0 1.27.37 2.44 1 3.44-.33.06-.66.06-1 .06a9 9 0 0 1 0-18c2.12 0 4.07.74 5.62 2l1.42-1.44c.51.44.96.9 1.41 1.41l-1.42 1.42A9.16 9.16 0 0 1 21 12.5a6.5 6.5 0 0 0-9 6M13 7h-2v7h2zm10 11.5c0 2.5-2 4.5-4.5 4.5S14 21 14 18.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5m-3 2.58L15.92 17c-.27.42-.42.94-.42 1.5 0 1.66 1.34 3 3 3 .56 0 1.08-.15 1.5-.42m1.5-2.58c0-1.66-1.34-3-3-3-.56 0-1.08.15-1.5.42L21.08 20c.27-.42.42-.94.42-1.5"/></svg>�������mkdocs-material-9.6.4/material/templates/.icons/material/timer-check-outline.svg��������������������0000664�0000000�0000000�00000000626�14753064456�0030004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 8h2v6h-2zm4-7H9v2h6zm-3 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7c.7 0 1.36.13 2 .35V13c0-2.12-.74-4.07-1.97-5.61l1.42-1.42c-.45-.51-.9-.97-1.41-1.41L17.62 6c-1.55-1.26-3.5-2-5.62-2a9 9 0 0 0 0 18c.59 0 1.16-.06 1.71-.17-.31-.58-.53-1.23-.63-1.92-.36.05-.71.09-1.08.09m9.34-4.16-3.59 3.59-1.59-1.59L15 19l2.75 3 4.75-4.75z"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-check.svg����������������������������0000664�0000000�0000000�00000000542�14753064456�0026324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 3H9V1h6zm-2 16c0 1.03.26 2 .71 2.83-.55.11-1.12.17-1.71.17a9 9 0 0 1 0-18c2.12 0 4.07.74 5.62 2l1.42-1.44c.51.44.96.9 1.41 1.41l-1.42 1.42A8.96 8.96 0 0 1 21 13v.35c-.64-.22-1.3-.35-2-.35-3.31 0-6 2.69-6 6m0-12h-2v7h2zm8.34 8.84-3.59 3.59-1.59-1.59L15 19l2.75 3 4.75-4.75z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-cog-outline.svg����������������������0000664�0000000�0000000�00000001363�14753064456�0027476�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.8 19.4c.1 0 .1.1 0 .2l-1 1.7c-.1.1-.2.1-.3.1l-1.2-.4c-.3.2-.5.3-.8.5l-.2 1.3c0 .1-.1.2-.2.2h-2c-.1 0-.2-.1-.3-.2l-.2-1.3c-.3-.1-.6-.3-.8-.5l-1.2.5c-.1 0-.2 0-.3-.1l-1-1.7c-.1-.1 0-.2.1-.3l1.1-.8v-1l-1.1-.8c-.1-.1-.1-.2-.1-.3l1-1.7c.1-.1.2-.1.3-.1l1.2.5c.3-.2.5-.3.8-.5l.2-1.3c0-.1.1-.2.3-.2h2c.1 0 .2.1.2.2l.2 1.3c.3.1.6.3.9.5l1.2-.5c.1 0 .3 0 .3.1l1 1.7c.1.1 0 .2-.1.3l-1.1.8v1zM19.5 18c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5.7 1.5 1.5 1.5 1.5-.7 1.5-1.5M13 14V8h-2v6m4-13H9v2h6zm-3.7 19C7.8 19.6 5 16.6 5 13c0-3.9 3.1-7 7-7 3.2 0 5.9 2.1 6.7 5 .8.1 1.5.3 2.2.6-.3-1.6-.9-3-1.9-4.2L20.5 6c-.5-.5-1-1-1.5-1.4L17.6 6c-1.5-1.3-3.5-2-5.6-2-5 0-9 4-9 9s4 9 9 9h.3c-.5-.6-.8-1.3-1-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-cog.svg������������������������������0000664�0000000�0000000�00000001336�14753064456�0026021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.8 19.4c.1 0 .1.1 0 .2l-1 1.7c-.1.1-.2.1-.3.1l-1.2-.4c-.3.2-.5.3-.8.5l-.2 1.3c0 .1-.1.2-.2.2h-2c-.1 0-.2-.1-.3-.2l-.2-1.3c-.3-.1-.6-.3-.8-.5l-1.2.5c-.1 0-.2 0-.3-.1l-1-1.7c-.1-.1 0-.2.1-.3l1.1-.8v-1l-1.1-.8c-.1-.1-.1-.2-.1-.3l1-1.7c.1-.1.2-.1.3-.1l1.2.5c.3-.2.5-.3.8-.5l.2-1.3c0-.1.1-.2.3-.2h2c.1 0 .2.1.2.2l.2 1.3c.3.1.6.3.9.5l1.2-.5c.1 0 .3 0 .3.1l1 1.7c.1.1 0 .2-.1.3l-1.1.8v1zM19.5 18c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5.7 1.5 1.5 1.5 1.5-.7 1.5-1.5M11 18c0-1.5.5-2.9 1.3-4H11V7h2v6.1c1.3-1.3 3-2.1 5-2.1 1 0 2 .2 2.9.6-.3-1.6-.9-3-1.9-4.2L20.5 6c-.5-.5-1-1-1.5-1.4L17.6 6c-1.5-1.3-3.5-2-5.6-2-5 0-9 4-9 9s4 9 9 9h.3c-.8-1.1-1.3-2.5-1.3-4m4-17H9v2h6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-edit-outline.svg���������������������0000664�0000000�0000000�00000000677�14753064456�0027662�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 14h-2V8h2zm2-13H9v2h6zM5 13a6.995 6.995 0 0 1 13.79-1.66l.6-.6c.32-.32.71-.53 1.11-.64a8.6 8.6 0 0 0-1.47-2.71l1.42-1.42c-.45-.51-.9-.97-1.41-1.41L17.62 6c-1.55-1.26-3.5-2-5.62-2a9 9 0 0 0-9 9c0 4.63 3.5 8.44 8 8.94v-2.02c-3.39-.49-6-3.39-6-6.92m8 6.96V22h2.04l6.13-6.12-2.04-2.05zm9.85-6.49-1.32-1.32c-.2-.2-.53-.2-.72 0l-.98.98 2.04 2.04.98-.98c.2-.19.2-.52 0-.72"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-edit.svg�����������������������������0000664�0000000�0000000�00000000614�14753064456�0026174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 3H9V1h6zm4.39 7.74L11 19.13v2.81c-4.5-.5-8-4.31-8-8.94a9 9 0 0 1 9-9c2.12 0 4.07.74 5.62 2l1.42-1.44c.51.44.96.9 1.41 1.41l-1.42 1.42c.64.8 1.14 1.72 1.47 2.71-.4.11-.79.32-1.11.64M13 7h-2v7h2zm0 12.96V22h2.04l6.13-6.12-2.04-2.05zm9.85-6.49-1.32-1.32c-.2-.2-.53-.2-.72 0l-.98.98 2.04 2.04.98-.98c.2-.19.2-.52 0-.72"/></svg>��������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-lock-open-outline.svg����������������0000664�0000000�0000000�00000001110�14753064456�0030603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 8h2v6h-2zm2 11.92c-.33.05-.66.08-1 .08-3.87 0-7-3.13-7-7s3.13-7 7-7c2.44 0 4.59 1.26 5.85 3.15.37-.09.75-.15 1.15-.15.39 0 .76.06 1.12.14-.3-.64-.66-1.21-1.09-1.75l1.42-1.42c-.45-.51-.9-.97-1.41-1.41L17.62 6c-1.55-1.26-3.5-2-5.62-2a9 9 0 0 0 0 18c.42 0 .83-.04 1.24-.09-.15-.38-.24-.79-.24-1.21zM15 1H9v2h6zm6.8 15h-4.3v-2.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3v.5h1.3v-.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V16c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-lock-open.svg������������������������0000664�0000000�0000000�00000001025�14753064456�0027133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 3H9V1h6zm-.8 10.5v1.24c-.7.6-1.2 1.5-1.2 2.46v3.5c0 .42.09.83.24 1.21-.41.05-.82.09-1.24.09a9 9 0 0 1 0-18c2.12 0 4.07.74 5.62 2l1.42-1.44c.51.44.96.9 1.41 1.41l-1.42 1.42c.43.54.79 1.11 1.09 1.75C19.76 9.06 19.39 9 19 9c-2.6 0-4.8 2.06-4.8 4.5M13 7h-2v7h2zm8.8 9h-4.3v-2.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3v.5h1.3v-.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V16c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-lock-outline.svg���������������������0000664�0000000�0000000�00000001102�14753064456�0027645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 8h2v6h-2zm2 11.92c-.33.05-.66.08-1 .08-3.87 0-7-3.13-7-7s3.13-7 7-7c2.82 0 5.24 1.67 6.35 4.06.21-.02.43-.06.65-.06.55 0 1.07.11 1.57.28a9 9 0 0 0-1.54-2.89l1.42-1.42c-.45-.51-.9-.97-1.41-1.41L17.62 6c-1.55-1.26-3.5-2-5.62-2a9 9 0 0 0 0 18c.42 0 .83-.04 1.24-.09-.15-.38-.24-.79-.24-1.21zM15 1H9v2h6zm8 16.3v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5V16c.6 0 1.2.6 1.2 1.3m-2.5-2.8c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V16h3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-lock.svg�����������������������������0000664�0000000�0000000�00000001030�14753064456�0026170�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 3H9V1h6zm-.8 11.5v.24c-.7.6-1.2 1.5-1.2 2.46v3.5c0 .42.09.83.24 1.21-.41.05-.82.09-1.24.09a9 9 0 0 1 0-18c2.12 0 4.07.74 5.62 2l1.42-1.44c.51.44.96.9 1.41 1.41l-1.42 1.42c.68.85 1.2 1.83 1.54 2.89-.5-.17-1.02-.28-1.57-.28-2.6 0-4.8 2.06-4.8 4.5M13 7h-2v7h2zm10 10.3v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5V16c.6 0 1.2.6 1.2 1.3m-2.5-2.8c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V16h3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-marker-outline.svg�������������������0000664�0000000�0000000�00000001011�14753064456�0030175�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 8h2v6h-2zm4-7H9v2h6zm-3 19c-3.87 0-7-3.13-7-7s3.13-7 7-7c2.79 0 5.2 1.64 6.32 4h.18c.75 0 1.47.16 2.12.44a9 9 0 0 0-1.59-3.05l1.42-1.42c-.45-.51-.9-.97-1.41-1.41L17.62 6c-1.55-1.26-3.5-2-5.62-2a9 9 0 0 0 0 18c1.21 0 2.37-.24 3.42-.67-.37-.52-.75-1.11-1.1-1.73-.73.25-1.51.4-2.32.4m10-4.5c0 2.6-3.5 6.5-3.5 6.5S15 18.1 15 15.5c0-1.9 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5m-2.3.1c0-.6-.6-1.2-1.2-1.2s-1.2.5-1.2 1.2c0 .6.5 1.2 1.2 1.2s1.3-.6 1.2-1.2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-marker.svg���������������������������0000664�0000000�0000000�00000000724�14753064456�0026532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 3H9V1h6zm-2 12.5c0 2 1.28 4.23 2.42 5.83-1.05.43-2.21.67-3.42.67a9 9 0 0 1 0-18c2.12 0 4.07.74 5.62 2l1.42-1.44c.51.44.96.9 1.41 1.41l-1.42 1.42c.71.89 1.26 1.93 1.59 3.05A5.4 5.4 0 0 0 18.5 10c-3 0-5.5 2.5-5.5 5.5m0-1.5V7h-2v7zm9 1.5c0 2.6-3.5 6.5-3.5 6.5S15 18.1 15 15.5c0-1.9 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5m-2.3.1c0-.6-.6-1.2-1.2-1.2s-1.2.5-1.2 1.2c0 .6.5 1.2 1.2 1.2s1.3-.6 1.2-1.2"/></svg>��������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-minus-outline.svg��������������������0000664�0000000�0000000�00000000554�14753064456�0030062�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 8h2v6h-2zm4-7H9v2h6zm-3 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7c.7 0 1.36.13 2 .35V13c0-2.12-.74-4.07-1.97-5.61l1.42-1.42c-.45-.51-.9-.97-1.41-1.41L17.62 6c-1.55-1.26-3.5-2-5.62-2a9 9 0 0 0 0 18c.59 0 1.16-.06 1.71-.17-.31-.58-.53-1.23-.63-1.92-.36.05-.71.09-1.08.09m3-2v2h8v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-minus.svg����������������������������0000664�0000000�0000000�00000000500�14753064456�0026374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13c.7 0 1.36.13 2 .35V13c0-2.12-.74-4.07-1.97-5.61l1.42-1.42c-.45-.51-.9-.97-1.41-1.41L17.62 6c-1.55-1.26-3.5-2-5.62-2a9 9 0 0 0 0 18c.59 0 1.16-.06 1.71-.17C13.26 21 13 20.03 13 19c0-3.31 2.69-6 6-6m-6 1h-2V7h2zm2-11H9V1h6zm8 15v2h-8v-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-music-outline.svg��������������������0000664�0000000�0000000�00000000655�14753064456�0030051�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 3H9V1h6zm-4 11h2V8h-2zm2.05 5.91Q12.54 20 12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7c3.17 0 5.85 2.11 6.71 5h2.06a9.05 9.05 0 0 0-1.74-3.61l1.42-1.42c-.45-.51-.9-.97-1.41-1.41L17.62 6c-1.55-1.26-3.5-2-5.62-2a9 9 0 0 0 0 18c.42 0 .83-.04 1.24-.09-.15-.45-.24-.91-.24-1.41 0-.2.03-.39.05-.59M18.5 13v5.21a2.5 2.5 0 1 0-1 4.79 2.5 2.5 0 0 0 2.5-2.5V15h2v-2z"/></svg>�����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-music.svg����������������������������0000664�0000000�0000000�00000000554�14753064456�0026372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 16.11V11h4.27a9.05 9.05 0 0 0-1.74-3.61l1.42-1.42c-.45-.51-.9-.97-1.41-1.41L17.62 6c-1.55-1.26-3.5-2-5.62-2a9 9 0 0 0 0 18c.42 0 .83-.04 1.24-.09-.15-.45-.24-.91-.24-1.41 0-2.14 1.5-3.93 3.5-4.39M13 14h-2V7h2zm2-11H9V1h6zm7 10v2h-2v5.5a2.5 2.5 0 0 1-5 0 2.5 2.5 0 0 1 3.5-2.29V13z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-off-outline.svg����������������������0000664�0000000�0000000�00000000747�14753064456�0027505�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20a7 7 0 0 1-7-7c0-1.28.35-2.5.95-3.5l9.55 9.54c-1 .61-2.22.96-3.5.96M3 4 1.75 5.27 4.5 8.03A8.9 8.9 0 0 0 3 13a9 9 0 0 0 9 9c1.84 0 3.55-.55 5-1.5l2.5 2.5 1.25-1.27L13.04 14zm8 5.44 2 2V8h-2m4-7H9v2h6m4.04 1.55-1.42 1.42A9 9 0 0 0 12 4c-1.83 0-3.53.55-4.95 1.5L8.5 6.94C9.53 6.35 10.73 6 12 6a7 7 0 0 1 7 7c0 1.27-.35 2.47-.94 3.5l1.44 1.44c.95-1.41 1.5-3.11 1.5-4.94 0-2.12-.74-4.07-1.97-5.61l1.42-1.42z"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-off.svg������������������������������0000664�0000000�0000000�00000000541�14753064456�0026020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4 1.75 5.27 4.5 8.03A8.9 8.9 0 0 0 3 13a9 9 0 0 0 9 9c1.84 0 3.55-.55 5-1.5l2.5 2.5 1.25-1.27L13.04 14zm12-3H9v2h6m6 10c0 1.83-.55 3.53-1.5 4.94L13 11.45V7h-2v2.45L7.05 5.5C8.47 4.55 10.17 4 12 4c2.12 0 4.07.74 5.62 1.97l1.42-1.42 1.41 1.42-1.42 1.42A8.96 8.96 0 0 1 21 13"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-outline.svg��������������������������0000664�0000000�0000000�00000000470�14753064456�0026726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20a7 7 0 0 1-7-7 7 7 0 0 1 7-7 7 7 0 0 1 7 7 7 7 0 0 1-7 7m7.03-12.61 1.42-1.42c-.45-.51-.9-.97-1.41-1.41L17.62 6c-1.55-1.26-3.5-2-5.62-2a9 9 0 0 0-9 9 9 9 0 0 0 9 9c5 0 9-4.03 9-9 0-2.12-.74-4.07-1.97-5.61M11 14h2V8h-2m4-7H9v2h6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-pause-outline.svg��������������������0000664�0000000�0000000�00000000606�14753064456�0030042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 13.35c-.64-.22-1.3-.35-2-.35 0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7c.37 0 .72-.04 1.08-.09.1.69.32 1.34.63 1.92-.55.11-1.12.17-1.71.17a9 9 0 0 1 0-18c2.12 0 4.07.74 5.62 2l1.42-1.44c.51.44.96.9 1.41 1.41l-1.42 1.42A8.96 8.96 0 0 1 21 13zM11 14h2V8h-2zm4-13H9v2h6zm4.63 15.5v5h1.87v-5zm-3.13 5h1.88v-5H16.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-pause.svg����������������������������0000664�0000000�0000000�00000000524�14753064456�0026364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 16.5h1.88v5H16.5zm3.13 0v5h1.87v-5zM15 1H9v2h6zm6 12.35c-.64-.22-1.3-.35-2-.35-3.31 0-6 2.69-6 6 0 1.03.26 2 .71 2.83-.55.11-1.12.17-1.71.17a9 9 0 0 1 0-18c2.12 0 4.07.74 5.62 2l1.42-1.44c.51.44.96.9 1.41 1.41l-1.42 1.42A8.96 8.96 0 0 1 21 13zM13 7h-2v7h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-play-outline.svg���������������������0000664�0000000�0000000�00000000553�14753064456�0027673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 3H9V1h6zm-4 11h2V8h-2zm8-1c.7 0 1.36.13 2 .35V13c0-2.12-.74-4.07-1.97-5.61l1.42-1.42c-.45-.51-.9-.97-1.41-1.41L17.62 6c-1.55-1.26-3.5-2-5.62-2a9 9 0 0 0 0 18c.59 0 1.16-.06 1.71-.17-.31-.58-.53-1.23-.63-1.92-.36.05-.71.09-1.08.09-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7m-2 3v6l5-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-play.svg�����������������������������0000664�0000000�0000000�00000000467�14753064456�0026222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 3H9V1h6zm-2 16c0 1.03.26 2 .71 2.83-.55.11-1.12.17-1.71.17a9 9 0 0 1 0-18c2.12 0 4.07.74 5.62 2l1.42-1.44c.51.44.96.9 1.41 1.41l-1.42 1.42A8.96 8.96 0 0 1 21 13v.35c-.64-.22-1.3-.35-2-.35-3.31 0-6 2.69-6 6m0-12h-2v7h2zm4 9v6l5-3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-plus-outline.svg���������������������0000664�0000000�0000000�00000000600�14753064456�0027702�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 8h2v6h-2zm4-7H9v2h6zm-3 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7c.7 0 1.36.13 2 .35V13c0-2.12-.74-4.07-1.97-5.61l1.42-1.42c-.45-.51-.9-.97-1.41-1.41L17.62 6c-1.55-1.26-3.5-2-5.62-2a9 9 0 0 0 0 18c.59 0 1.16-.06 1.71-.17-.31-.58-.53-1.23-.63-1.92-.36.05-.71.09-1.08.09m8-2v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-plus.svg�����������������������������0000664�0000000�0000000�00000000515�14753064456�0026232�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 3H9V1h6zm-2 16c0 1.03.26 2 .71 2.83-.55.11-1.12.17-1.71.17a9 9 0 0 1 0-18c2.12 0 4.07.74 5.62 2l1.42-1.44c.51.44.96.9 1.41 1.41l-1.42 1.42A8.96 8.96 0 0 1 21 13v.35c-.64-.22-1.3-.35-2-.35-3.31 0-6 2.69-6 6m0-12h-2v7h2zm7 11v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-refresh-outline.svg������������������0000664�0000000�0000000�00000000726�14753064456�0030366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 8h2v6h-2zm4-7H9v2h6zm-3 19c-3.87 0-7-3.13-7-7s3.13-7 7-7c3.54 0 6.45 2.62 6.93 6.03.72.05 1.41.2 2.07.47a9.16 9.16 0 0 0-1.97-5.11l1.42-1.42c-.45-.51-.9-.97-1.41-1.41L17.62 6c-1.55-1.26-3.5-2-5.62-2a9 9 0 0 0 0 18c.34 0 .67 0 1-.06-.37-.59-.65-1.25-.82-1.94zm10-1.5v-4l-1.17 1.17A4 4 0 0 0 18 14.5c-2.21 0-4 1.79-4 4s1.79 4 4 4c1.68 0 3.12-1.03 3.71-2.5H20a2.5 2.5 0 1 1-.23-3.27L18 18.5z"/></svg>������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-refresh.svg��������������������������0000664�0000000�0000000�00000000625�14753064456�0026707�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 3H9V1h6zm-3 15.5c0 1.27.37 2.44 1 3.44-.33.06-.66.06-1 .06a9 9 0 0 1 0-18c2.12 0 4.07.74 5.62 2l1.42-1.44c.51.44.96.9 1.41 1.41l-1.42 1.42A9.16 9.16 0 0 1 21 12.5a6.5 6.5 0 0 0-9 6M13 7h-2v7h2zm9 11.5v-4l-1.17 1.17A4 4 0 0 0 18 14.5c-2.21 0-4 1.79-4 4s1.79 4 4 4c1.68 0 3.12-1.03 3.71-2.5H20a2.5 2.5 0 1 1-.23-3.27L18 18.5z"/></svg>�����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-remove-outline.svg�������������������0000664�0000000�0000000�00000000732�14753064456�0030222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.08 19.91c.1.69.32 1.34.63 1.92-.55.11-1.12.17-1.71.17a9 9 0 0 1 0-18c2.12 0 4.07.74 5.62 2l1.42-1.44c.51.44.96.9 1.41 1.41l-1.42 1.42A8.96 8.96 0 0 1 21 13v.35c-.64-.22-1.3-.35-2-.35 0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7c.37 0 .72-.04 1.08-.09M11 14h2V8h-2zm4-13H9v2h6zm7.54 15.88-1.42-1.41L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19z"/></svg>��������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-remove.svg���������������������������0000664�0000000�0000000�00000000643�14753064456�0026546�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 3H9V1h6zm-2 16c0 1.03.26 2 .71 2.83-.55.11-1.12.17-1.71.17a9 9 0 0 1 0-18c2.12 0 4.07.74 5.62 2l1.42-1.44c.51.44.96.9 1.41 1.41l-1.42 1.42A8.96 8.96 0 0 1 21 13v.35c-.64-.22-1.3-.35-2-.35-3.31 0-6 2.69-6 6m0-12h-2v7h2zm9.54 9.88-1.42-1.41L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19z"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-sand-complete.svg��������������������0000664�0000000�0000000�00000000255�14753064456�0030003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 22H6v-6l4-4-4-4V2h12v6l-4 4 4 4M8 7.5l4 4 4-4V4H8m4 8.5-4 4V20h8v-3.5M14 18h-4v-.8l2-2 2 2Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-sand-empty.svg�����������������������0000664�0000000�0000000�00000000231�14753064456�0027323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2v6l4 4-4 4v6h12v-6l-4-4 4-4V2zm10 14.5V20H8v-3.5l4-4zm-4-5-4-4V4h8v3.5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-sand-full.svg������������������������0000664�0000000�0000000�00000000160�14753064456�0027130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2v6l4 4-4 4v6h12v-6l-4-4 4-4V2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-sand-paused.svg����������������������0000664�0000000�0000000�00000000271�14753064456�0027452�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 6v12h-6l-4-4-4 4H2V6h6l4 4 4-4M7.5 16l4-4-4-4H4v8m8.5-4 4 4H20V8h-3.5m1.5 4v2h-.8l-2-2m-6.4 0-2 2H6v-2Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-sand.svg�����������������������������0000664�0000000�0000000�00000000255�14753064456�0026175�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2h12v6l-4 4 4 4v6H6v-6l4-4-4-4zm10 14.5-4-4-4 4V20h8zm-4-5 4-4V4H8v3.5zM10 6h4v.75l-2 2-2-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-settings-outline.svg�����������������0000664�0000000�0000000�00000000454�14753064456�0030566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 19c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7m7-12.6L20.5 5c-.5-.5-1-1-1.5-1.4L17.6 5C16 3.7 14.1 3 12 3c-5 0-9 4-9 9s4 9 9 9 9-4 9-9c0-2.1-.7-4.1-2-5.6M11 13h2V7h-2m4-7H9v2h6zm-2 22h-2v2h2zm4 0h-2v2h2zm-8 0H7v2h2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-settings.svg�������������������������0000664�0000000�0000000�00000000374�14753064456�0027112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.4 20.5 5c-.5-.5-1-1-1.5-1.4L17.6 5C16 3.7 14.1 3 12 3c-5 0-9 4-9 9s4 9 9 9 9-4 9-9c0-2.1-.7-4.1-2-5.6M13 13h-2V6h2zm2-13H9v2h6zm-2 24h-2v-2h2zm4 0h-2v-2h2zm-8 0H7v-2h2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-star-outline.svg���������������������0000664�0000000�0000000�00000000672�14753064456�0027701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 8h2v6h-2zm4-7H9v2h6zm-3 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7c.7 0 1.36.13 2 .35V13c0-2.12-.74-4.07-1.97-5.61l1.42-1.42c-.45-.51-.9-.97-1.41-1.41L17.62 6c-1.55-1.26-3.5-2-5.62-2a9 9 0 0 0 0 18c.59 0 1.16-.06 1.71-.17-.31-.58-.53-1.23-.63-1.92-.36.05-.71.09-1.08.09m11-2.11-2.89-.25L19 15l-1.13 2.64-2.87.25 2.18 1.88-.68 2.81 2.5-1.49 2.45 1.49-.65-2.81z"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-star.svg�����������������������������0000664�0000000�0000000�00000000607�14753064456�0026222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 3H9V1h6zm-2 16c0 1.03.26 2 .71 2.83-.55.11-1.12.17-1.71.17a9 9 0 0 1 0-18c2.12 0 4.07.74 5.62 2l1.42-1.44c.51.44.96.9 1.41 1.41l-1.42 1.42A8.96 8.96 0 0 1 21 13v.35c-.64-.22-1.3-.35-2-.35-3.31 0-6 2.69-6 6m0-12h-2v7h2zm10 10.89-2.89-.25L19 15l-1.13 2.64-2.87.25 2.18 1.88-.68 2.81 2.5-1.49 2.45 1.49-.65-2.81z"/></svg>�������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-stop-outline.svg���������������������0000664�0000000�0000000�00000000561�14753064456�0027712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 8h2v6h-2zm1 12c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7c.7 0 1.36.13 2 .35V13c0-2.12-.74-4.07-1.97-5.61l1.42-1.42c-.45-.51-.9-.97-1.41-1.41L17.62 6c-1.55-1.26-3.5-2-5.62-2a9 9 0 0 0 0 18c.59 0 1.16-.06 1.71-.17-.31-.58-.53-1.23-.63-1.92-.36.05-.71.09-1.08.09m3-19H9v2h6zm1.5 15.5v5h5v-5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-stop.svg�����������������������������0000664�0000000�0000000�00000000504�14753064456�0026232�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13c.7 0 1.36.13 2 .35V13c0-2.12-.74-4.07-1.97-5.61l1.42-1.42c-.45-.51-.9-.97-1.41-1.41L17.62 6c-1.55-1.26-3.5-2-5.62-2a9 9 0 0 0 0 18c.59 0 1.16-.06 1.71-.17C13.26 21 13 20.03 13 19c0-3.31 2.69-6 6-6m-6 1h-2V7h2zm2-11H9V1h6zm6.5 13.5v5h-5v-5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-sync-outline.svg���������������������0000664�0000000�0000000�00000001173�14753064456�0027701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 8h2v6h-2zm1 12c-3.87 0-7-3.13-7-7s3.13-7 7-7c3.19 0 5.88 2.14 6.72 5.05.28-.05.52-.05.78-.05.44 0 .88.05 1.3.13-.3-1.39-.91-2.67-1.77-3.74l1.42-1.42c-.45-.51-.9-.97-1.41-1.41L17.62 6c-1.55-1.26-3.5-2-5.62-2a9 9 0 0 0 0 18c.87 0 1.7-.13 2.5-.35-.45-.54-.8-1.15-1.05-1.8-.45.1-.95.15-1.45.15m3-19H9v2h6zm4 12.5V12l-2.25 2.25L19 16.5V15a2.5 2.5 0 0 1 2.5 2.5c0 .4-.09.78-.26 1.12l1.09 1.09c.42-.63.67-1.39.67-2.21 0-2.21-1.79-4-4-4m0 6.5a2.5 2.5 0 0 1-2.5-2.5c0-.4.09-.78.26-1.12l-1.09-1.09c-.42.63-.67 1.39-.67 2.21 0 2.21 1.79 4 4 4V23l2.25-2.25L19 18.5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer-sync.svg�����������������������������0000664�0000000�0000000�00000001016�14753064456�0026220�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 3H9V1h6zm-2 14.5c0 1.58.56 3 1.5 4.15-.8.22-1.63.35-2.5.35a9 9 0 0 1 0-18c2.12 0 4.07.74 5.62 2l1.42-1.44c.51.44.96.9 1.41 1.41l-1.42 1.42a9 9 0 0 1 1.77 3.74A6.5 6.5 0 0 0 13 17.5M13 7h-2v7h2zm6 6.5V12l-2.25 2.25L19 16.5V15a2.5 2.5 0 0 1 2.5 2.5c0 .4-.09.78-.26 1.12l1.09 1.09c.42-.63.67-1.39.67-2.21 0-2.21-1.79-4-4-4m0 6.5a2.5 2.5 0 0 1-2.5-2.5c0-.4.09-.78.26-1.12l-1.09-1.09c-.42.63-.67 1.39-.67 2.21 0 2.21 1.79 4 4 4V23l2.25-2.25L19 18.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timer.svg����������������������������������0000664�0000000�0000000�00000000357�14753064456�0025255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.03 7.39 1.42-1.42c-.45-.51-.9-.97-1.41-1.41L17.62 6c-1.55-1.26-3.5-2-5.62-2a9 9 0 0 0 0 18c5 0 9-4.03 9-9 0-2.12-.74-4.07-1.97-5.61M13 14h-2V7h2zm2-13H9v2h6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/timetable.svg������������������������������0000664�0000000�0000000�00000000700�14753064456�0026073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 12h1.5v2.82l2.44 1.41-.75 1.3L14 15.69zM4 2h14a2 2 0 0 1 2 2v6.1c1.24 1.26 2 2.99 2 4.9a7 7 0 0 1-7 7c-1.91 0-3.64-.76-4.9-2H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m0 13v3h4.67c-.43-.91-.67-1.93-.67-3zm0-7h6V5H4zm14 0V5h-6v3zM4 13h4.29c.34-1.15.97-2.18 1.81-3H4zm11-2.85A4.85 4.85 0 0 0 10.15 15c0 2.68 2.17 4.85 4.85 4.85A4.85 4.85 0 0 0 19.85 15c0-2.68-2.17-4.85-4.85-4.85"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tire.svg�����������������������������������0000664�0000000�0000000�00000001233�14753064456�0025072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.66 9.64-.36-.94 1.86-.7c-.92-2.12-2.56-3.82-4.62-4.86l-.8 1.78-.92-.42.8-1.8C14.5 2.26 13.28 2 12 2c-1.06 0-2.08.22-3.04.5l.68 1.84-.94.36L8 2.84c-2.12.92-3.82 2.56-4.86 4.62l1.78.8-.42.92-1.8-.8C2.26 9.5 2 10.72 2 12c0 1.06.22 2.08.5 3.04l1.84-.68.36.94-1.86.7c.92 2.12 2.56 3.82 4.62 4.86l.8-1.78.92.42-.8 1.8c1.12.44 2.34.7 3.62.7 1.06 0 2.08-.22 3.04-.5l-.68-1.84.94-.36.7 1.86c2.12-.92 3.82-2.56 4.86-4.62l-1.78-.8.42-.92 1.8.8c.44-1.12.7-2.34.7-3.62 0-1.06-.22-2.08-.5-3.04zm-5.36 7.9c-3.06 1.26-6.58-.18-7.84-3.24s.18-6.58 3.24-7.84 6.58.18 7.84 3.24a5.986 5.986 0 0 1-3.24 7.84"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toaster-off.svg����������������������������0000664�0000000�0000000�00000000455�14753064456�0026365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.8 22.7 18.1 20H3v-7H2v-2h1c0-1.1.9-2 2-2h2.1l-6-6 1.3-1.3 19.7 19.7zm-5.5-10.6c.3-.6 1-1.1 1.7-1.1 1.1 0 2 .9 2 2 0 .8-.4 1.4-1.1 1.7l3.1 3.1V13h1v-2h-1c0-1.1-.9-2-2-2h-6.8zM18 8c-.4-2.2-2.9-4-6-4-1.4 0-2.8.4-3.8 1l3 3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toaster-oven.svg���������������������������0000664�0000000�0000000�00000000445�14753064456�0026561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2zm0 2h12v10H4zm15 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1M6 9v2h8V9zm13 2a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toaster.svg��������������������������������0000664�0000000�0000000�00000000316�14753064456�0025611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 11a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2H2v2h1v7h18v-7h1v-2m-5 4a2 2 0 1 1 2-2 2 2 0 0 1-2 2m1-7H6c.33-2.25 2.88-4 6-4s5.63 1.75 6 4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toggle-switch-off-outline.svg��������������0000664�0000000�0000000�00000000422�14753064456�0031133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6m0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4M7 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toggle-switch-off.svg����������������������0000664�0000000�0000000�00000000315�14753064456�0027457�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 7H7a5 5 0 0 0-5 5 5 5 0 0 0 5 5h10a5 5 0 0 0 5-5 5 5 0 0 0-5-5M7 15a3 3 0 0 1-3-3 3 3 0 0 1 3-3 3 3 0 0 1 3 3 3 3 0 0 1-3 3"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toggle-switch-outline.svg������������������0000664�0000000�0000000�00000000422�14753064456�0030363�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6m0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4m0-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toggle-switch-variant-off.svg��������������0000664�0000000�0000000�00000000536�14753064456�0031126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.6 1.6C6 1.2 6.5 1 7 1h10c.5 0 1 .2 1.4.6s.6.9.6 1.4v18c0 .5-.2 1-.6 1.4s-.9.6-1.4.6H7c-.5 0-1-.2-1.4-.6S5 21.5 5 21V3c0-.5.2-1 .6-1.4M8 3c-.6 0-1 .4-1 1v16c0 .6.4 1 1 1h8c.6 0 1-.4 1-1V4c0-.6-.4-1-1-1zm0 14c0-.6.4-1 1-1h6c.6 0 1 .4 1 1v2c0 .6-.4 1-1 1H9c-.6 0-1-.4-1-1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toggle-switch-variant.svg������������������0000664�0000000�0000000�00000000434�14753064456�0030353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.4 1.6C18 1.2 17.5 1 17 1H7c-.5 0-1 .2-1.4.6S5 2.5 5 3v18c0 .5.2 1 .6 1.4s.9.6 1.4.6h10c.5 0 1-.2 1.4-.6s.6-.9.6-1.4V3c0-.5-.2-1-.6-1.4M16 7c0 .6-.4 1-1 1H9c-.6 0-1-.4-1-1V5c0-.6.4-1 1-1h6c.6 0 1 .4 1 1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toggle-switch.svg��������������������������0000664�0000000�0000000�00000000314�14753064456�0026706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 7H7a5 5 0 0 0-5 5 5 5 0 0 0 5 5h10a5 5 0 0 0 5-5 5 5 0 0 0-5-5m0 8a3 3 0 0 1-3-3 3 3 0 0 1 3-3 3 3 0 0 1 3 3 3 3 0 0 1-3 3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toilet.svg���������������������������������0000664�0000000�0000000�00000000413�14753064456�0025426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 22h8v-2.5c2.41-1.63 4-4.38 4-7.5V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v8H3c0 3.09 2 6 6 7.5zm-3.71-8h13.42A7.02 7.02 0 0 1 15 18.33V20h-4v-1.67C9 18 5.86 15.91 5.29 14M15 4h4v8h-4zm1 1v3h2V5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toolbox-outline.svg������������������������0000664�0000000�0000000�00000000361�14753064456�0027273�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 8h-3V6c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v10h20V10c0-1.1-.9-2-2-2M9 6h6v2H9zm11 12H4v-3h2v1h2v-1h8v1h2v-1h2zm-2-5v-1h-2v1H8v-1H6v1H4v-3h16v3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toolbox.svg��������������������������������0000664�0000000�0000000�00000000343�14753064456�0025616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 16h-2v-1H8v1H6v-1H2v5h20v-5h-4zm2-8h-3V6c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v4h4v-2h2v2h8v-2h2v2h4v-4c0-1.1-.9-2-2-2m-5 0H9V6h6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tools.svg����������������������������������0000664�0000000�0000000�00000000577�14753064456�0025301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.71 20.29-1.42 1.42a1 1 0 0 1-1.41 0L7 9.85A3.8 3.8 0 0 1 6 10a4 4 0 0 1-3.78-5.3l2.54 2.54.53-.53 1.42-1.42.53-.53L4.7 2.22A4 4 0 0 1 10 6a3.8 3.8 0 0 1-.15 1l11.86 11.88a1 1 0 0 1 0 1.41M2.29 18.88a1 1 0 0 0 0 1.41l1.42 1.42a1 1 0 0 0 1.41 0l5.47-5.46-2.83-2.83M20 2l-4 2v2l-2.17 2.17 2 2L18 8h2l2-4Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tooltip-account.svg������������������������0000664�0000000�0000000�00000000422�14753064456�0027252�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h4l4 4 4-4h4a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2m-8 2.3c1.5 0 2.7 1.2 2.7 2.7S13.5 9.7 12 9.7 9.3 8.5 9.3 7s1.2-2.7 2.7-2.7M18 15H6v-.9c0-2 4-3.1 6-3.1s6 1.1 6 3.1z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tooltip-cellphone.svg����������������������0000664�0000000�0000000�00000000436�14753064456�0027574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 6h6v8H9zm13-2v12c0 1.11-.89 2-2 2h-4l-4 4-4-4H4a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2h16a2 2 0 0 1 2 2m-6 1.09C16 4.5 15.5 4 14.86 4H9.14C8.5 4 8 4.5 8 5.09v9.82C8 15.5 8.5 16 9.14 16h5.72c.64 0 1.14-.5 1.14-1.09z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tooltip-check-outline.svg������������������0000664�0000000�0000000�00000000403�14753064456�0030347�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v12a2 2 0 0 0 2 2h4l4 4 4-4h4c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2m0 14h-4.83L12 19.17 8.83 16H4V4h16zm-9.25-2.29-3.5-3.5 1.41-1.42 2.09 2.09 4.59-4.58 1.41 1.41z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tooltip-check.svg��������������������������0000664�0000000�0000000�00000000333�14753064456�0026674�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v12a2 2 0 0 0 2 2h4l4 4 4-4h4c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2m-9.54 12-3.5-3.5 1.41-1.42 2.09 2.09L15.64 6l1.41 1.41z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tooltip-edit-outline.svg�������������������0000664�0000000�0000000�00000000507�14753064456�0030224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2h16a2 2 0 0 1 2 2v12c0 1.11-.89 2-2 2h-4l-4 4-4-4H4a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2m0 2v12h4.83L12 19.17 15.17 16H20V4zm11.84 4.2-1.01 1.01-2.07-2.03 1.01-1.02c.2-.21.54-.22.78 0l1.29 1.25c.21.21.22.55 0 .79M8 11.91l4.17-4.19 2.07 2.08-4.16 4.2H8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tooltip-edit.svg���������������������������0000664�0000000�0000000�00000000437�14753064456�0026551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v12a2 2 0 0 0 2 2h4l4 4 4-4h4c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2M9.08 15H7v-2.09l6.17-6.19 2.07 2.08zm7.76-7.8-1.01 1.01-2.07-2.03 1.01-1.02c.2-.21.54-.22.78 0l1.29 1.25c.21.21.22.55 0 .79"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tooltip-image-outline.svg������������������0000664�0000000�0000000�00000000456�14753064456�0030364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-4l-4 4-4-4H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m0 2v12h4.83L12 19.17 15.17 16H20V4zm3.5 2A1.5 1.5 0 0 1 9 7.5 1.5 1.5 0 0 1 7.5 9 1.5 1.5 0 0 1 6 7.5 1.5 1.5 0 0 1 7.5 6M6 14l5-5 2 2 5-5v8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tooltip-image.svg��������������������������0000664�0000000�0000000�00000000362�14753064456�0026703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-4l-4 4-4-4H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m15 13V7l-4 4-2-2-6 6zM7 5a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tooltip-minus-outline.svg������������������0000664�0000000�0000000�00000000323�14753064456�0030426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v12a2 2 0 0 0 2 2h4l4 4 4-4h4c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2m0 14h-4.83L12 19.17 8.83 16H4V4h16zm-4-5H8V9h8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tooltip-minus.svg��������������������������0000664�0000000�0000000�00000000257�14753064456�0026757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v12a2 2 0 0 0 2 2h4l4 4 4-4h4c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2m-4 9H8V9h8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tooltip-outline.svg������������������������0000664�0000000�0000000�00000000304�14753064456�0027274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-4l-4 4-4-4H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m0 2v12h4.83L12 19.17 15.17 16H20V4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tooltip-plus-outline.svg�������������������0000664�0000000�0000000�00000000342�14753064456�0030257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-4l-4 4-4-4H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m0 2v12h4.83L12 19.17 15.17 16H20V4zm7 2h2v3h3v2h-3v3h-2v-3H8V9h3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tooltip-plus.svg���������������������������0000664�0000000�0000000�00000000275�14753064456�0026607�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-4l-4 4-4-4H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m7 4v3H8v2h3v3h2v-3h3V9h-3V6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tooltip-question-outline.svg���������������0000664�0000000�0000000�00000001253�14753064456�0031145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-.53 0-1.04.21-1.41.59C2.21 2.96 2 3.47 2 4v12c0 .53.21 1.04.59 1.41.37.38.88.59 1.41.59h4l4 4 4-4h4c.53 0 1.04-.21 1.41-.59S22 16.53 22 16V4c0-.53-.21-1.04-.59-1.41C21.04 2.21 20.53 2 20 2M4 16V4h16v12h-4.83L12 19.17 8.83 16m1.22-9.96c.54-.36 1.25-.54 2.14-.54.94 0 1.69.21 2.23.62q.81.63.81 1.68c0 .44-.15.83-.44 1.2-.29.36-.67.64-1.13.85-.26.15-.43.3-.52.47-.09.18-.14.4-.14.68h-2c0-.5.1-.84.29-1.08.21-.24.55-.52 1.07-.84.26-.14.47-.32.64-.54.14-.21.22-.46.22-.74 0-.3-.09-.52-.27-.69-.18-.18-.45-.26-.76-.26-.27 0-.49.07-.69.21-.16.14-.26.35-.26.63H9.27c-.05-.69.23-1.29.78-1.65M11 14v-2h2v2Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tooltip-question.svg�����������������������0000664�0000000�0000000�00000001210�14753064456�0027461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-.53 0-1.04.21-1.41.59C2.21 2.96 2 3.47 2 4v12c0 .53.21 1.04.59 1.41.37.38.88.59 1.41.59h4l4 4 4-4h4c.53 0 1.04-.21 1.41-.59S22 16.53 22 16V4c0-.53-.21-1.04-.59-1.41C21.04 2.21 20.53 2 20 2m-9.95 4.04c.54-.36 1.25-.54 2.14-.54.94 0 1.69.21 2.23.62q.81.63.81 1.68c0 .44-.15.83-.44 1.2-.29.36-.67.64-1.13.85-.26.15-.43.3-.52.47-.09.18-.14.4-.14.68h-2c0-.5.1-.84.29-1.08.21-.24.55-.52 1.07-.84.26-.14.47-.32.64-.54.14-.21.22-.46.22-.74 0-.3-.09-.52-.27-.69-.18-.18-.45-.26-.76-.26-.27 0-.49.07-.69.21-.16.14-.26.35-.26.63H9.27c-.05-.69.23-1.29.78-1.65M11 14v-2h2v2Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tooltip-remove-outline.svg�����������������0000664�0000000�0000000�00000000475�14753064456�0030600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v12a2 2 0 0 0 2 2h4l4 4 4-4h4c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2m0 14h-4.83L12 19.17 8.83 16H4V4h16zM8.46 12.12 10.59 10 8.46 7.88l1.42-1.41L12 8.59l2.12-2.12 1.42 1.41L13.41 10l2.13 2.12-1.42 1.42L12 11.41l-2.12 2.13z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tooltip-remove.svg�������������������������0000664�0000000�0000000�00000000432�14753064456�0027114�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v12a2 2 0 0 0 2 2h4l4 4 4-4h4c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2m-4.46 10.12-1.42 1.42L12 11.41l-2.12 2.13-1.41-1.42L10.59 10 8.46 7.88l1.42-1.41L12 8.59l2.12-2.12 1.42 1.41L13.41 10z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tooltip-text-outline.svg�������������������0000664�0000000�0000000�00000000334�14753064456�0030261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-4l-4 4-4-4H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m0 2v12h4.83L12 19.17 15.17 16H20V4zm2 3h12v2H6zm0 4h10v2H6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tooltip-text.svg���������������������������0000664�0000000�0000000�00000000305�14753064456�0026602�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-4l-4 4-4-4H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m1 3v2h14V5zm0 4v2h10V9zm0 4v2h12v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tooltip.svg��������������������������������0000664�0000000�0000000�00000000240�14753064456�0025616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-4l-4 4-4-4H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tooth-outline.svg��������������������������0000664�0000000�0000000�00000000662�14753064456�0026746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2C4 2 2 5 2 8c0 2.11 1 5 2 6s2 8 4 8c4.54 0 2-7 4-7s-.54 7 4 7c2 0 3-7 4-8s2-3.89 2-6c0-3-2-6-5-6s-3 1-5 1-2-1-5-1m0 2c2 0 3 1 5 1s3-1 5-1c1.67 0 3 2 3 4 0 1.75-.86 4.11-1.81 5.06-.86.86-2.13 6.88-2.69 6.88-.21 0-.5-1.06-.5-2.35 0-2.04-.57-4.59-3-4.59s-3 2.55-3 4.59c0 1.29-.29 2.35-.5 2.35-.56 0-1.83-6.02-2.69-6.88C4.86 12.11 4 9.75 4 8c0-2 1.33-4 3-4"/></svg>������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tooth.svg����������������������������������0000664�0000000�0000000�00000000303�14753064456�0025261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2C4 2 2 5 2 8c0 2.11 1 5 2 6s2 8 4 8c4.54 0 2-7 4-7s-.54 7 4 7c2 0 3-7 4-8s2-3.89 2-6c0-3-2-6-5-6s-3 1-5 1-2-1-5-1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toothbrush-electric.svg��������������������0000664�0000000�0000000�00000000374�14753064456�0030125�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1.5V14c-1.66 0-3 1.34-3 3v5h8v-5c0-1.66-1.34-3-3-3V3.5a2 2 0 0 0-2-2M7.5 2v7H11V7.5H9v-4h2V2zM13 17.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toothbrush-paste.svg�����������������������0000664�0000000�0000000�00000000555�14753064456�0027450�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.86 1.5-4.95 4.93 2.12 2.12 1.06-1.05-1.06-1.07 2.83-2.83 1.06 1.06L20 3.6m1.4 0-5.84 5.84-2.13.71L3 20.57 4.43 22l5.65-5.67 4.25 4.24 4.24-4.24-4.24-4.24.17-.19 2.13-.71 4.77-4.76c.78-.78.78-2.05 0-2.83m-14.85.71L2.31 8.55l4.95 4.95 4.24-4.24m6.72 8.84-2.13 2.12 1.41 1.41 2.13-2.13Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toothbrush.svg�����������������������������0000664�0000000�0000000�00000000364�14753064456�0026334�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.91 6.43 2.12 2.12 1.06-1.05-1.06-1.07 2.83-2.83 1.06 1.06L20 3.6l-2.14-2.1M3 20.57 4.43 22 14.5 11.9l2.13-.71 4.77-4.76c.78-.78.78-2.05 0-2.83l-5.85 5.84-2.12.71Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/torch.svg����������������������������������0000664�0000000�0000000�00000001020�14753064456�0025240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.6 9.6c.4.6.9 1.1 1.6 1.4h4c.3-.1.5-.3.7-.5 1-1 1.4-2.5.9-3.8l-.1-.2c-.1-.3-.3-.5-.5-.7-.1-.2-.3-.3-.4-.5-.4-.3-.8-.6-1.2-1-.9-.9-1-2.3-.5-3.3-.5.1-1 .4-1.4.8C10.2 3 9.6 5.1 10.3 7v.2c0 .1-.1.2-.2.3s-.3 0-.4-.1l-.1-.1c-.6-.8-.7-2-.3-3-.9.8-1.4 2.1-1.3 3.4 0 .3.1.6.2.9 0 .3.2.7.4 1m3.7-1.5c.1-.5-.1-.9-.2-1.3s-.1-.8.1-1.2l.3.6c.4.6 1.1.8 1.3 1.6v.3c0 .5-.2 1-.5 1.3-.2.1-.4.3-.6.3-.6.2-1.3-.1-1.7-.5.8 0 1.2-.6 1.3-1.1M15 12v2h-1l-1 8h-2l-1-8H9v-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tortoise.svg�������������������������������0000664�0000000�0000000�00000000572�14753064456�0026004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.31 5.6c-1.22-.04-2.43.9-2.81 2.4-.5 2-.5 2-1.5 3-2 2-5 3-11 4-1 .16-1.5.5-2 1 2 0 4 0 2.5 1.5L3 19h3l2-2c2 1 3.33 1 5.33 0l.67 2h3l-1-3s1-4 2-5 1 0 2 0 2-1 2-2.5C22 8 22 7 20.5 6c-.35-.24-.76-.38-1.19-.4M9 6a6 6 0 0 0-6 6c0 .6.13 1.08.23 1.6 5.92-.98 9.06-2.01 10.7-3.66l.5-.5A6.01 6.01 0 0 0 9 6"/></svg>��������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toslink.svg��������������������������������0000664�0000000�0000000�00000000450�14753064456�0025612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 10V7l-3-3H7L4 7v3c-1.1 0-2 .9-2 2s.9 2 2 2v4c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4c1.11 0 2-.89 2-2s-.89-2-2-2m-8 6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4m2-4c0 1.11-.89 2-2 2s-2-.89-2-2 .9-2 2-2 2 .9 2 2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/touch-text-outline.svg���������������������0000664�0000000�0000000�00000000701�14753064456�0027707�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 7h10v2H7zm5.69 8.81h.51V15H7v2h3.38l.33-.35c.47-.52 1.21-.84 1.98-.84M9 19H5V5h14v8.56l2 .89V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h6.33zm-2-6h6.2v-1.27c0-.23.05-.49.11-.73H7zm8.2 6.07-2.35-1.26h-.16c-.19 0-.4.08-.54.23l-.54.57 3.59 3.08c.19.2.46.31.73.31h4.77c.6 0 1.08-.5 1.1-1.1v-3.2c0-.42-.23-.81-.62-.99l-3.63-1.6-.88-.11v-3.27a.736.736 0 0 0-1.47 0z"/></svg>���������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tournament.svg�����������������������������0000664�0000000�0000000�00000000365�14753064456�0026330�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2v2h5v4H2v2h5c1.11 0 2-.89 2-2V7h5v10H9v-1c0-1.11-.89-2-2-2H2v2h5v4H2v2h5c1.11 0 2-.89 2-2v-1h5c1.11 0 2-.89 2-2v-4h6v-2h-6V7c0-1.11-.89-2-2-2H9V4c0-1.11-.89-2-2-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tow-truck.svg������������������������������0000664�0000000�0000000�00000001206�14753064456�0026066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 10h5.39l-3.33-4H15zm2.5 8.5c.39 0 .74-.13 1.04-.43S19 17.42 19 17c0-.39-.16-.74-.46-1.04s-.65-.46-1.04-.46c-.42 0-.77.16-1.07.46S16 16.61 16 17c0 .42.13.77.43 1.07s.65.43 1.07.43M6 18.5c.44 0 .8-.13 1.08-.43s.42-.65.42-1.07c0-.39-.14-.74-.42-1.04S6.44 15.5 6 15.5s-.8.16-1.08.46-.42.65-.42 1.04c0 .42.14.77.42 1.07s.64.43 1.08.43M18 4l5 6v7h-2.5c0 .83-.31 1.53-.91 2.13-.59.59-1.29.87-2.09.87-.83 0-1.53-.28-2.12-.87-.6-.6-.88-1.3-.88-2.13H9c0 .83-.3 1.53-.89 2.13-.61.59-1.3.87-2.11.87s-1.5-.28-2.11-.87C3.3 18.53 3 17.83 3 17H1v-4h8.19L3 8.11V11H1V5h1l11 6.06V4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tower-beach.svg����������������������������0000664�0000000�0000000�00000000416�14753064456�0026331�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 4v4h1v2h-.36L21 23h-2.07l-.56-2.17L12 17.15l-6.37 3.68L5.07 23H3l3.36-13H6V8h1V4H6V3l12-2v3zM7.28 14.43l-.95 3.69L10 16zM15.57 10H8.43l-.63 2.42 4.2 2.43 4.2-2.43zm2.1 8.12-.95-3.69L14 16z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tower-fire.svg�����������������������������0000664�0000000�0000000�00000000421�14753064456�0026210�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 4v4h1v2h-.36L21 23h-2.07l-.56-2.17L12 17.15l-6.37 3.68L5.07 23H3l3.36-13H6V8h1V4H6V3l6-2 6 2v1zM7.28 14.43l-.95 3.69L10 16zM15.57 10H8.43l-.63 2.42 4.2 2.43 4.2-2.43zm2.1 8.12-.95-3.69L14 16z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/town-hall.svg������������������������������0000664�0000000�0000000�00000000437�14753064456�0026041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 10h-4V8l-4.5-1.8V4H15V2h-3.5v4.2L7 8v2H3c-.55 0-1 .45-1 1v11h8v-5h4v5h8V11c0-.55-.45-1-1-1M8 20H4v-3h4zm0-5H4v-3h4zm4-7c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m2 7h-4v-3h4zm6 5h-4v-3h4zm0-5h-4v-3h4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toy-brick-marker-outline.svg���������������0000664�0000000�0000000�00000000601�14753064456�0030764�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 12a3.54 3.54 0 0 0-3.5 3.5c0 2.6 3.5 6.5 3.5 6.5s3.5-3.9 3.5-6.5a3.54 3.54 0 0 0-3.5-3.5m0 4.8a1.2 1.2 0 1 1 0-2.4 1.29 1.29 0 0 1 1.2 1.2 1.15 1.15 0 0 1-1.2 1.2M19 6V5a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v1h-2V5a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v1H3v14h11.54a15.6 15.6 0 0 1-1-2H5V8h14v2a5.1 5.1 0 0 1 2 .6V6Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toy-brick-marker.svg�����������������������0000664�0000000�0000000�00000000624�14753064456�0027314�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6V5a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v1h-2V5a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v1H3v14h11.54A9.55 9.55 0 0 1 13 15.5a5.58 5.58 0 0 1 5.5-5.5 5.3 5.3 0 0 1 2.5.63V6m-2.5 6a3.54 3.54 0 0 0-3.5 3.5c0 2.6 3.5 6.5 3.5 6.5s3.5-3.9 3.5-6.5a3.54 3.54 0 0 0-3.5-3.5m0 4.8a1.2 1.2 0 1 1 0-2.4 1.29 1.29 0 0 1 1.2 1.2 1.15 1.15 0 0 1-1.2 1.2"/></svg>������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toy-brick-minus-outline.svg����������������0000664�0000000�0000000�00000000374�14753064456�0030645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.09 20H3V6h2V5c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v1h2V5c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v1h2v7.35c-.63-.22-1.3-.35-2-.35V8H5v10h8.09c-.05.33-.09.66-.09 1s.04.67.09 1M23 18h-8v2h8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toy-brick-minus.svg������������������������0000664�0000000�0000000�00000000373�14753064456�0027167�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 20h-8v-2h8zm-10-1c0-3.31 2.69-6 6-6 .7 0 1.37.13 2 .35V6h-2V5a2 2 0 0 0-2-2h-2c-1.1 0-2 .9-2 2v1h-2V5a2 2 0 0 0-2-2H7c-1.1 0-2 .9-2 2v1H3v14h10.09c-.05-.33-.09-.66-.09-1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toy-brick-outline.svg����������������������0000664�0000000�0000000�00000000263�14753064456�0027511�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6V5a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v1h-2V5a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v1H3v14h18V6m-2 12H5V8h14Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toy-brick-plus-outline.svg�����������������0000664�0000000�0000000�00000000324�14753064456�0030470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6V5a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v1h-2V5a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v1H3v14h11v-2H5V8h14v5h2V6m0 9v3h3v2h-3v3h-2v-3h-3v-2h3v-3Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toy-brick-plus.svg�������������������������0000664�0000000�0000000�00000000357�14753064456�0027021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6V5a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v1h-2V5a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v1H3v14h10.09a5.5 5.5 0 0 1-.09-1 6 6 0 0 1 8-5.66V6m-1 9v3h3v2h-3v3h-2v-3h-3v-2h3v-3Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toy-brick-remove-outline.svg���������������0000664�0000000�0000000�00000000460�14753064456�0031003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6V5c0-1.1-.9-2-2-2h-2c-1.1 0-2 .9-2 2v1h-2V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v1H3v14h11v-2H5V8h14v5h2V6m-3.12 9.46L20 17.59l2.12-2.12 1.42 1.41L21.41 19l2.13 2.12-1.42 1.42L20 20.41l-2.12 2.13-1.42-1.42L18.59 19l-2.12-2.12"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toy-brick-remove.svg�����������������������0000664�0000000�0000000�00000000505�14753064456�0027326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6V5a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v1h-2V5a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v1H3v14h10.09a5.5 5.5 0 0 1-.09-1 6 6 0 0 1 8-5.66V6m1.54 10.88L20.41 19l2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.42-1.42L17.59 19l-2.13-2.12 1.42-1.42L19 17.59l2.12-2.13Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toy-brick-search-outline.svg���������������0000664�0000000�0000000�00000000504�14753064456�0030752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6V5a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v1h-2V5a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v1H3v14h8.81a6.6 6.6 0 0 1-1.31-2H5V8h14v1.5a6.6 6.6 0 0 1 2 1.31V6m-.69 11.9a4.5 4.5 0 1 0-1.43 1.42L22 22.39 23.39 21m-6.89-3a2.5 2.5 0 1 1 2.5-2.5 2.5 2.5 0 0 1-2.5 2.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toy-brick-search.svg�����������������������0000664�0000000�0000000�00000000446�14753064456�0027302�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6V5a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v1h-2V5a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v1H3v14h8.81A6.5 6.5 0 0 1 21 10.81V6m-.69 11.9a4.5 4.5 0 1 0-1.43 1.42L22 22.39 23.39 21m-6.89-3a2.5 2.5 0 1 1 2.5-2.5 2.5 2.5 0 0 1-2.5 2.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/toy-brick.svg������������������������������0000664�0000000�0000000�00000000246�14753064456�0026035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6V5a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v1h-2V5a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v1H3v14h18V6Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/track-light-off.svg������������������������0000664�0000000�0000000�00000000533�14753064456�0027112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.78 13.57 2.77 1.15-.76 1.85L19 15.42zm2.79-5.43-.76-1.85-2.31.96.76 1.85zm-8.23 11.55L15.3 22l1.85-.77-.96-2.3zM2.39 1.73 1.11 3l2.53 2.53-2.21 5.31 5.54 2.3 4.97 3.68 1.85.77.56-1.35 6.49 6.49 1.27-1.27zM6.2 3 6 2.8V1h8v2h-3v3.87l4.77.71 1.85.77-1.78 4.29L9 5.8V3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/track-light.svg����������������������������0000664�0000000�0000000�00000000435�14753064456�0026343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 1v2h3v3.4L4.11 4.38l-2.68 6.46 5.54 2.3 4.97 3.68 1.85.77 3.83-9.24-1.85-.77L11 6.87V3h3V1zm15.81 5.29-2.31.96.76 1.85 2.31-.96zm-2.03 7.28L19 15.42l2.79 1.15.76-1.85zm-3.59 5.36-1.85.76.96 2.31 1.85-.77z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/trackpad-lock.svg��������������������������0000664�0000000�0000000�00000000617�14753064456�0026653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 1c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h11v-2h-2v-4h4.68c.82-.65 1.79-1 2.82-1 .5 0 1 .09 1.5.26V3c0-1.11-.89-2-2-2zm0 2h16v8H3zm0 10h7v4H3zm16.5 1a2.5 2.5 0 0 0-2.5 2.5v.5a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1v-.5a2.5 2.5 0 0 0-2.5-2.5m0 1a1.5 1.5 0 0 1 1.5 1.5v.5h-3v-.5a1.5 1.5 0 0 1 1.5-1.5"/></svg>�����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/trackpad.svg�������������������������������0000664�0000000�0000000�00000000273�14753064456�0025723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3h16a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 2v8h16V5zm0 14h7v-4H4zm16 0v-4h-7v4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tractor-variant.svg������������������������0000664�0000000�0000000�00000001657�14753064456�0027261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.3 2.79-3.5 3.5.7.71 1.4-1.39 1.1 1.1V9c0 1.11-.89 2-2 2h-.54A6 6 0 0 1 12 15a6 6 0 0 1-.09 1h3.12a4.5 4.5 0 0 1 4.47-4 4.5 4.5 0 0 1 2.5.76V8c0-1.11-.89-2-2-2h-6.29l-1.1-1.1L14 3.5zM4 7c-.55 0-1 .45-1 1s.45 1 1 1h5a2 2 0 0 0-2-2zm2 3a5 5 0 0 0-1.56.25l.36.93-.47.18-.33-.93a5 5 0 0 0-2.46 2.31l.91.41-.21.45-.9-.4A5 5 0 0 0 1 15a5 5 0 0 0 .25 1.56l.93-.36.18.47-.93.33a5 5 0 0 0 2.31 2.46l.4-.91.46.21-.4.9A5 5 0 0 0 6 20a5 5 0 0 0 1.56-.25l-.36-.93.47-.18.33.93a5 5 0 0 0 2.46-2.31l-.91-.4.21-.46.9.4A5 5 0 0 0 11 15a5 5 0 0 0-.25-1.56l-.93.36-.18-.47.93-.33a5 5 0 0 0-2.31-2.46l-.4.91-.46-.21.4-.9A5 5 0 0 0 6 10m0 2a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3m13.5 1a3.5 3.5 0 0 0-3.5 3.5 3.5 3.5 0 0 0 3.5 3.5 3.5 3.5 0 0 0 3.5-3.5 3.5 3.5 0 0 0-3.5-3.5m0 2a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5"/></svg>���������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tractor.svg��������������������������������0000664�0000000�0000000�00000001001�14753064456�0025576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 4v7.26c-1.8.64-3 2.34-3 4.24C2 18 4 20 6.5 20c2.29 0 4.21-1.72 4.47-4h4.2c-.11.32-.17.66-.17 1a3 3 0 0 0 3 3 3 3 0 0 0 3-3c0-.34-.06-.68-.18-1H22v-3c0-1.11-.89-2-2-2h-4.96l-1.39-7zm2 2h5l1 5v3h-2.26A4.53 4.53 0 0 0 7 11.03zm-.5 7.25a2.25 2.25 0 0 1 2.25 2.25 2.25 2.25 0 0 1-2.25 2.25 2.25 2.25 0 0 1-2.25-2.25 2.25 2.25 0 0 1 2.25-2.25M18 15.5a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/trademark.svg������������������������������0000664�0000000�0000000�00000000315�14753064456�0026101�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.8 8.44H6.87V16H4.89V8.44H2V7h7.8zM13.5 7l2.46 6.5L18.41 7H21v9h-2v-2.5l.22-4.26L16.63 16h-1.35L12.7 9.25l.2 4.25V16h-1.97V7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/traffic-cone.svg���������������������������0000664�0000000�0000000�00000000211�14753064456�0026462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17 15 1 4h3v3H3v-3h3l1-4zm-2-7 1 4H8l1-4zm-2-7 1 4h-4l1-4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/traffic-light-outline.svg������������������0000664�0000000�0000000�00000001056�14753064456�0030332�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 10h-3V8.86c1.72-.45 3-2 3-3.86h-3V4c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v1H4c0 1.86 1.28 3.41 3 3.86V10H4c0 1.86 1.28 3.41 3 3.86V15H4c0 1.86 1.28 3.41 3 3.86V20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-1.14c1.72-.45 3-2 3-3.86h-3v-1.14c1.72-.45 3-2 3-3.86m-5 9H9V5h6zm-3-1c.83 0 1.5-.67 1.5-1.5S12.83 15 12 15s-1.5.67-1.5 1.5.67 1.5 1.5 1.5m0-4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5M12 9c.83 0 1.5-.67 1.5-1.5S12.83 6 12 6s-1.5.67-1.5 1.5S11.17 9 12 9"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/traffic-light.svg��������������������������0000664�0000000�0000000�00000000775�14753064456�0026664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 9a2 2 0 0 1-2-2 2 2 0 0 1 2-2c1.11 0 2 .89 2 2a2 2 0 0 1-2 2m0 5a2 2 0 0 1-2-2 2 2 0 0 1 2-2c1.11 0 2 .89 2 2a2 2 0 0 1-2 2m0 5a2 2 0 0 1-2-2 2 2 0 0 1 2-2c1.11 0 2 .89 2 2a2 2 0 0 1-2 2m8-9h-3V8.86c1.72-.45 3-2 3-3.86h-3V4a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v1H4c0 1.86 1.28 3.41 3 3.86V10H4c0 1.86 1.28 3.41 3 3.86V15H4c0 1.86 1.28 3.41 3 3.86V20a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-1.14c1.72-.45 3-2 3-3.86h-3v-1.14c1.72-.45 3-2 3-3.86"/></svg>���mkdocs-material-9.6.4/material/templates/.icons/material/train-bus.svg������������������������������0000664�0000000�0000000�00000001215�14753064456�0026033�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 2h7c.8 0 1.56.32 2.12.88S15 4.2 15 5v1h-2V4H4v7h5v5H8l-3 3H4v-2l1-1c-.8 0-1.56-.32-2.12-.88S2 13.8 2 13V5c0-.8.32-1.56.88-2.12S4.2 2 5 2m.71 10.29C5.5 12.11 5.27 12 5 12c-.26 0-.5.11-.71.29-.18.21-.29.45-.29.71 0 .27.11.5.29.71.21.19.45.29.71.29.27 0 .5-.1.71-.29.19-.21.29-.44.29-.71 0-.26-.1-.5-.29-.71M11 11c0-1.66 1-3 4-3h3c3 0 4 1.34 4 3v7c0 .74-.4 1.39-1 1.73V21c0 .55-.45 1-1 1s-1-.45-1-1v-1h-5v1c0 .55-.45 1-1 1s-1-.45-1-1v-1.27c-.6-.34-1-.99-1-1.73zm2-1v4h7v-4zm1 8c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1m6-1c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/train-car-autorack.svg���������������������0000664�0000000�0000000�00000001103�14753064456�0027612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 6H3c-1.1 0-2 .9-2 2v9h1a2 2 0 1 0 4 0h12a2 2 0 1 0 4 0h1V8a2 2 0 0 0-2-2M7.58 12.18c.61 0 1.1.5 1.1 1.11s-.49 1.1-1.1 1.1-1.11-.49-1.11-1.1.5-1.11 1.11-1.11m-.55-1.1 1.65-1.47h2.95l2.95 1.47zm2.63 2.95h4.68c.16.39.4.72.71.97h-6.1c.31-.25.55-.58.71-.97m5.66-.74c0-.61.49-1.11 1.1-1.11s1.11.5 1.11 1.11-.5 1.1-1.11 1.1c-.61.01-1.1-.49-1.1-1.1M17.79 15c.32-.25.57-.58.71-.97h1.61v-.74c0-.82-.76-1.08-1.48-1.47L12 8.5H8.32l-2.21 1.84h-.74c-.82 0-1.48.66-1.48 1.48v2.21H5.5c.14.39.39.72.71.97H3V8h18v7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/train-car-box-full.svg���������������������0000664�0000000�0000000�00000000222�14753064456�0027532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 7v10h1a2 2 0 1 0 4 0h12a2 2 0 1 0 4 0h1V7zm15 9h-2v-5h-4v5H8V9h8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/train-car-box-open.svg���������������������0000664�0000000�0000000�00000000207�14753064456�0027534�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 7v10h1a2 2 0 1 0 4 0h12a2 2 0 1 0 4 0h1V7zm15 9H8V9h8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/train-car-box.svg��������������������������0000664�0000000�0000000�00000000173�14753064456�0026577�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 7v10h1a2 2 0 1 0 4 0h12a2 2 0 1 0 4 0h1V7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/train-car-caboose.svg����������������������0000664�0000000�0000000�00000000315�14753064456�0027420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 9V7h-8V6h1V4H8v2h1v1H1v2h1v6H1v2h1a2 2 0 1 0 4 0h12a2 2 0 1 0 4 0h1v-2h-1V9zM4 15H3V9h1zm7-3H6V9h5zm7 0h-5V9h5zm3 3h-1V9h1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/train-car-centerbeam-full.svg��������������0000664�0000000�0000000�00000000410�14753064456�0031046�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 6v11h-1c0 1.11-.89 2-2 2s-2-.89-2-2H6c0 1.11-.89 2-2 2s-2-.89-2-2H1V6h2v9h18V6zM8 12H4v2h4zm7 0H9v2h6zm5 0h-4v2h4zM8 9H4v2h4zm7 0H9v2h6zm5 0h-4v2h4zM8 6H4v2h4zm7 0H9v2h6zm5 0h-4v2h4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/train-car-centerbeam.svg�������������������0000664�0000000�0000000�00000000241�14753064456�0030110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 6v11h-1c0 1.11-.89 2-2 2s-2-.89-2-2H6c0 1.11-.89 2-2 2s-2-.89-2-2H1V6h2v9h18V6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/train-car-container.svg��������������������0000664�0000000�0000000�00000000255�14753064456�0027772�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 6v11h1a2 2 0 1 0 4 0h12a2 2 0 1 0 4 0h1V6zm20 9h-2V9h-2v6h-2V9h-2v6h-2V9H9v6H7V9H5v6H3V8h18z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/train-car-flatbed-car.svg������������������0000664�0000000�0000000�00000000741�14753064456�0030154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 13v-3c0-1.11-.89-2-2-2h-2l-3-4H6L3 8c-1.11 0-2 .89-2 2v3h2c0 .77.3 1.47.78 2H1v2h1a2 2 0 1 0 4 0h12a2 2 0 1 0 4 0h1v-2h-2.78c.48-.53.78-1.23.78-2zm-3.5 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5M12 5.5h3.25L17.14 8H12zm3.78 9.5H8.22c.48-.53.78-1.23.78-2h6c0 .77.3 1.47.78 2M6.75 5.5h3.75V8H4.86zm-.75 6c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5"/></svg>�������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/train-car-flatbed-tank.svg�����������������0000664�0000000�0000000�00000000627�14753064456�0030347�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.22 15c.48-.53.78-1.23.78-2 0-1.66-1.34-3-3-3H5c-1.66 0-3 1.34-3 3 0 .77.3 1.47.78 2H1v2h1a2 2 0 1 0 4 0h12a2 2 0 1 0 4 0h1v-2zM19 12c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m8.62-6-.4-2H22v2zM20 9H4V8h2l1-5h5l1 5h7z"/></svg>���������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/train-car-flatbed.svg����������������������0000664�0000000�0000000�00000000231�14753064456�0027403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 15v2h-1c0 1.11-.89 2-2 2s-2-.89-2-2H6c0 1.11-.89 2-2 2s-2-.89-2-2H1v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/train-car-gondola-full.svg�����������������0000664�0000000�0000000�00000000332�14753064456�0030367�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 10c-1.96-1.81-5.26-3-9-3s-7.04 1.19-9 3H1v7h1a2 2 0 1 0 4 0h12a2 2 0 1 0 4 0h1v-7zm0 5h-2v-2h-2v2h-2v-2h-2v2h-2v-2H9v2H7v-2H5v2H3v-3h18z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/train-car-gondola.svg����������������������0000664�0000000�0000000�00000000263�14753064456�0027432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 10v7h1a2 2 0 1 0 4 0h12a2 2 0 1 0 4 0h1v-7zm20 5h-2v-2h-2v2h-2v-2h-2v2h-2v-2H9v2H7v-2H5v2H3v-3h18z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/train-car-hopper-covered.svg���������������0000664�0000000�0000000�00000000316�14753064456�0030730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 9V7H1v2l1 1.33V15H1v2h1a2 2 0 1 0 4 0h4l1 1h2l1-1h4a2 2 0 1 0 4 0h1v-2h-1v-4.67zM4 15v-2l1.5 2zm1-5V9h14v1zm15 5h-1.5l1.5-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/train-car-hopper-full.svg������������������0000664�0000000�0000000�00000000315�14753064456�0030242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 8c-1.96-1.81-5.26-3-9-3S4.96 6.19 3 8H1v9h1a2 2 0 1 0 4 0h12a2 2 0 1 0 4 0h1V8zm-8 7v-4h-2v4H8v-4H6v4H3v-5h18v5h-3v-4h-2v4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/train-car-hopper.svg�����������������������0000664�0000000�0000000�00000000246�14753064456�0027305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 8v9h1a2 2 0 1 0 4 0h12a2 2 0 1 0 4 0h1V8zm12 7v-4h-2v4H8v-4H6v4H3v-5h18v5h-3v-4h-2v4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/train-car-intermodal.svg�������������������0000664�0000000�0000000�00000000253�14753064456�0030144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 15v-4H3v4H1v2h1a2 2 0 1 0 4 0h12a2 2 0 1 0 4 0h1v-2zm-5-1H8v-1h8zm5-9H3v5h18zm-5 3H8V7h8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/train-car-passenger-door-open.svg����������0000664�0000000�0000000�00000000276�14753064456�0031702�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 7H3c-1.1 0-2 .9-2 2v8h1a2 2 0 1 0 4 0h12a2 2 0 1 0 4 0h1V9a2 2 0 0 0-2-2M8 12H3V9h5zm6 4h-4V9h4zm7-4h-5V9h5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/train-car-passenger-door.svg���������������0000664�0000000�0000000�00000000311�14753064456�0030731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 7H3c-1.1 0-2 .9-2 2v8h1a2 2 0 1 0 4 0h12a2 2 0 1 0 4 0h1V9a2 2 0 0 0-2-2M7 12H3V9h4zm4 4H9V9h2zm4 0h-2V9h2zm6-4h-4V9h4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/train-car-passenger-variant.svg������������0000664�0000000�0000000�00000000264�14753064456�0031441�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 7H3c-1.1 0-2 .9-2 2v8h1a2 2 0 1 0 4 0h12a2 2 0 1 0 4 0h1V9a2 2 0 0 0-2-2m-10 5H3V9h8zm10 0h-8V9h8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/train-car-passenger.svg��������������������0000664�0000000�0000000�00000000275�14753064456�0030001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 7H3c-1.1 0-2 .9-2 2v8h1a2 2 0 1 0 4 0h12a2 2 0 1 0 4 0h1V9a2 2 0 0 0-2-2M7 12H3V9h4zm8 0H9V9h6zm6 0h-4V9h4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/train-car-tank.svg�������������������������0000664�0000000�0000000�00000000356�14753064456�0026747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 15v2h-1c0 1.11-.89 2-2 2s-2-.89-2-2H6c0 1.11-.89 2-2 2s-2-.89-2-2H1v-2zm-2-7h-6V7H9v1H3c-1.1 0-2 .9-2 2v2a2 2 0 0 0 2 2h18c1.11 0 2-.89 2-2v-2a2 2 0 0 0-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/train-car.svg������������������������������0000664�0000000�0000000�00000001050�14753064456�0026004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4H5a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3l-1 1v1h1l2-2.03L9 18v-5H4V6h9v2h2V7a3 3 0 0 0-3-3M5 14a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m15.57-4.34c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66L10 13.77v5.51c0 .38.32.72.7.72h.62c.38 0 .68-.38.68-.76V18h8v1.24c0 .38.31.76.69.76h.61c.38 0 .7-.34.7-.72v-5.51zm-8.16.34h7.19l1.03 3h-9.25zM12 16a1 1 0 0 1-1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1 1 1 0 0 1-1 1m8 0a1 1 0 0 1-1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1 1 1 0 0 1-1 1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/train-variant.svg��������������������������0000664�0000000�0000000�00000000404�14753064456�0026705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 10H6V5h12m-6 12a2 2 0 0 1-2-2c0-1.11.89-2 2-2a2 2 0 0 1 2 2 2 2 0 0 1-2 2m-8-1.5A3.5 3.5 0 0 0 7.5 19L6 20.5v.5h12v-.5L16.5 19a3.5 3.5 0 0 0 3.5-3.5V5c0-3.5-3.58-4-8-4s-8 .5-8 4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/train.svg����������������������������������0000664�0000000�0000000�00000000634�14753064456�0025250�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c-4 0-8 .5-8 4v9.5A3.5 3.5 0 0 0 7.5 19L6 20.5v.5h2.23l2-2H14l2 2h2v-.5L16.5 19a3.5 3.5 0 0 0 3.5-3.5V6c0-3.5-3.58-4-8-4M7.5 17A1.5 1.5 0 0 1 6 15.5 1.5 1.5 0 0 1 7.5 14 1.5 1.5 0 0 1 9 15.5 1.5 1.5 0 0 1 7.5 17m3.5-7H6V6h5zm2 0V6h5v4zm3.5 7a1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5 1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5"/></svg>����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tram-side.svg������������������������������0000664�0000000�0000000�00000000432�14753064456�0026014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 1 5 4l2.5 2H5S2 6 2 9v10h5s0-2 2-2h13v-3h-4V8h4V6H10.5L13 4zM4 8h5v6H4zm7 0h5v6h-5zm-7 8h1v2H4zm5 3v.5a2.5 2.5 0 0 0 2.5 2.5c1 0 1.89-.59 2.29-1.5h1.42c.4.91 1.29 1.5 2.29 1.5a2.5 2.5 0 0 0 2.5-2.5V19z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tram.svg�����������������������������������0000664�0000000�0000000�00000000571�14753064456�0025076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 16.94V8.5c0-2.79-2.61-3.4-6-3.5l.75-1.5H17V2H7v1.5h4.75L11 5c-3.14.11-6 .73-6 3.5v8.44c0 1.45 1.19 2.66 2.59 2.97L6 21.5v.5h2.23l2-2H14l2 2h2v-.5L16.5 20h-.08c1.69 0 2.58-1.37 2.58-3.06m-7 1.56a1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5 1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5m5-4.5H7V9h10z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/transcribe-close.svg�����������������������0000664�0000000�0000000�00000000401�14753064456�0027362�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 23-4-4h8zm8-20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm-2 12v-2h-5.5l-2 2zM6 15h2.5l6.85-6.88c.2-.19.2-.51 0-.7l-1.76-1.77c-.2-.2-.52-.2-.71 0L6 12.53z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/transcribe.svg�����������������������������0000664�0000000�0000000�00000000367�14753064456�0026272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 5a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7c0-1.11.89-2 2-2zm-2 12v-2h-5.5l-2 2zM6 17h2.5l6.85-6.88c.2-.19.2-.51 0-.71l-1.76-1.76c-.2-.2-.52-.2-.71 0L6 14.53z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/transfer-down.svg��������������������������0000664�0000000�0000000�00000000177�14753064456�0026726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 3v2H8V3zm0 4v2H8V7zm0 4v2H8v-2zM5 15h14l-7 7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/transfer-left.svg��������������������������0000664�0000000�0000000�00000000203�14753064456�0026677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 16h-2V8h2zm-4 0h-2V8h2zm-4 0h-2V8h2zM9 5v14l-7-7z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/transfer-right.svg�������������������������0000664�0000000�0000000�00000000207�14753064456�0027066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 8h2v8H3zm4 0h2v8H7zm4 0h2v8h-2zm4 11.25V4.75L22.25 12z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/transfer-up.svg����������������������������0000664�0000000�0000000�00000000177�14753064456�0026403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 21v-2h8v2zm0-4v-2h8v2zm0-4v-2h8v2zm11-4H5l7-7z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/transfer.svg�������������������������������0000664�0000000�0000000�00000000322�14753064456�0025751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 4a2 2 0 0 0-2 2v4h2V6h8v3h-2.5l3.5 3.5L20.5 9H18V6a2 2 0 0 0-2-2zm-5 8v2h8v-2zm0 3v2h8v-2zm10 0v2h8v-2zM3 18v2h8v-2zm10 0v2h8v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/transit-connection-horizontal.svg����������0000664�0000000�0000000�00000000610�14753064456�0032135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 9c-1.3 0-2.4.8-2.8 2H6.8C6.4 9.8 5.3 9 4 9c-1.7 0-3 1.3-3 3s1.3 3 3 3c1.3 0 2.4-.8 2.8-2h2.4c.4 1.2 1.5 2 2.8 2s2.4-.8 2.8-2h2.4c.4 1.2 1.5 2 2.8 2 1.7 0 3-1.3 3-3s-1.3-3-3-3c-1.3 0-2.4.8-2.8 2h-2.4c-.4-1.2-1.5-2-2.8-2m-9 3c0-.6.4-1 1-1s1 .4 1 1-.4 1-1 1-1-.4-1-1m18 0c0 .6-.4 1-1 1s-1-.4-1-1 .4-1 1-1 1 .4 1 1"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/transit-connection-variant.svg�������������0000664�0000000�0000000�00000001132�14753064456�0031410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 11h-3.18C14.4 9.84 13.3 9 12 9s-2.4.84-2.82 2H6c-.33 0-2-.1-2-2V8c0-1.83 1.54-2 2-2h10.18C16.6 7.16 17.7 8 19 8a3 3 0 0 0 3-3 3 3 0 0 0-3-3c-1.3 0-2.4.84-2.82 2H6C4.39 4 2 5.06 2 8v1c0 2.94 2.39 4 4 4h3.18c.42 1.16 1.52 2 2.82 2s2.4-.84 2.82-2H18c.33 0 2 .1 2 2v1c0 1.83-1.54 2-2 2H7.82C7.4 16.84 6.3 16 5 16a3 3 0 0 0-3 3 3 3 0 0 0 3 3c1.3 0 2.4-.84 2.82-2H18c1.61 0 4-1.07 4-4v-1c0-2.93-2.39-4-4-4m1-7a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1M5 20a1 1 0 0 1-1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1 1 1 0 0 1-1 1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/transit-connection.svg���������������������0000664�0000000�0000000�00000000700�14753064456�0027746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 12c0-1.3-.84-2.4-2-2.82V6.82C14.16 6.4 15 5.3 15 4a3 3 0 0 0-3-3 3 3 0 0 0-3 3c0 1.3.84 2.4 2 2.82v2.37C9.84 9.6 9 10.7 9 12s.84 2.4 2 2.82v2.36C9.84 17.6 9 18.7 9 20a3 3 0 0 0 3 3 3 3 0 0 0 3-3c0-1.3-.84-2.4-2-2.82v-2.36c1.16-.42 2-1.52 2-2.82m-3-9a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m0 18a1 1 0 0 1-1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1 1 1 0 0 1-1 1"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/transit-detour.svg�������������������������0000664�0000000�0000000�00000001025�14753064456�0027112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3a3 3 0 0 0-2.39 1.21A11.5 11.5 0 0 0 13.75 4l.13 2a9.5 9.5 0 0 1 2.12.13A3 3 0 1 0 19 3m0 4a1 1 0 1 1 1-1 1 1 0 0 1-1 1m-10.14.86L7.67 6.25a11.5 11.5 0 0 1 3.93-1.88l.5 1.94a9.5 9.5 0 0 0-3.24 1.55M21 18a3 3 0 1 1-5.31-1.89 9.47 9.47 0 0 0-7.1-2.65c-.22.01-.43.04-.65.08a3 3 0 1 1-3.55-3.48A11.5 11.5 0 0 1 6.04 7.7L7.5 9.06a9.3 9.3 0 0 0-1 1.35 3.04 3.04 0 0 1 1.12 1.15c.29-.06.57-.06.88-.1a11.47 11.47 0 0 1 8.96 3.59A3 3 0 0 1 18 15a3 3 0 0 1 3 3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/transit-skip.svg���������������������������0000664�0000000�0000000�00000000676�14753064456�0026571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 12c0-4-2.5-7.3-6-8.5-.3-1.4-1.5-2.5-3-2.5-1.7 0-3 1.3-3 3s1.3 3 3 3c1.1 0 2.1-.6 2.6-1.5C17.2 6.5 19 9 19 12c0 2.9-1.8 5.5-4.4 6.5-.5-.9-1.5-1.5-2.6-1.5-1.7 0-3 1.3-3 3s1.3 3 3 3c1.5 0 2.7-1.1 3-2.5 3.5-1.2 6-4.6 6-8.5m-9-7c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1m0 16c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1m0-12c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3"/></svg>������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/transit-transfer.svg�����������������������0000664�0000000�0000000�00000000610�14753064456�0027433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 15.5H22V17h-5.5v1.75l-2.5-2.5 2.5-2.5zm3 4.25V18l2.5 2.5-2.5 2.5v-1.75H14v-1.5zM9.5 5.5a2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2M5.75 8.9 4 9.65V13H2V8.3l5.25-2.15Q7.625 6 8 6c.7 0 1.35.35 1.7.95l.95 1.6C11.55 10 13.15 11 15 11v2c-2.2 0-4.15-1-5.45-2.6l-.6 3L11 15.45V23H9v-6l-2.15-2-1.75 8H3z"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/transition-masked.svg����������������������0000664�0000000�0000000�00000000637�14753064456�0027572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 2c1.94 0 3.59.7 4.95 2.05C21.3 5.41 22 7.06 22 9c0 1.56-.5 2.96-1.42 4.2-.94 1.23-2.14 2.07-3.61 2.5l.03-.32V15c0-2.19-.77-4.07-2.35-5.65S11.19 7 9 7h-.37l-.33.03c.43-1.47 1.27-2.67 2.5-3.61C12.04 2.5 13.44 2 15 2M9 8a7 7 0 0 1 7 7 7 7 0 0 1-7 7 7 7 0 0 1-7-7 7 7 0 0 1 7-7m0 2a5 5 0 0 0-5 5 5 5 0 0 0 5 5 5 5 0 0 0 5-5 5 5 0 0 0-5-5"/></svg>�������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/transition.svg�����������������������������0000664�0000000�0000000�00000001071�14753064456�0026321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 2a7 7 0 0 1 7 7c0 2.71-1.54 5.05-3.78 6.22a7.1 7.1 0 0 1-3 3A7.01 7.01 0 0 1 9 22a7 7 0 0 1-7-7c0-2.71 1.54-5.05 3.78-6.22a7.1 7.1 0 0 1 3-3A7.01 7.01 0 0 1 15 2m-3 17a7 7 0 0 1-7-7c-.63.84-1 1.87-1 3a5 5 0 0 0 5 5c1.13 0 2.16-.37 3-1m3-3a7 7 0 0 1-7-7c-.63.84-1 1.87-1 3a5 5 0 0 0 5 5c1.13 0 2.16-.37 3-1m0-12c-1.13 0-2.16.37-3 1a7 7 0 0 1 7 7c.63-.84 1-1.87 1-3a5 5 0 0 0-5-5m-5 5a5 5 0 0 0 5 5c.6 0 1.17-.1 1.7-.3.2-.53.3-1.1.3-1.7a5 5 0 0 0-5-5c-.6 0-1.17.1-1.7.3-.2.53-.3 1.1-.3 1.7"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/translate-off.svg��������������������������0000664�0000000�0000000�00000000700�14753064456�0026672�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.17 5.81c-.3.88-.7 1.74-1.17 2.58l1.35 1.35c.76-1.24 1.36-2.56 1.78-3.93h3.03V3.75H9.94V1.69H7.87v2.06h-1.5l2.06 2.06zm3.36 7.1 1.5 1.5.64-1.72 1.41 3.78 3.31 3.3-3.69-9.83h-2.06zM1.31 1.31 0 2.62l1.13 1.13H.65v2.06h2.54l2.07 2.07h-.8c.75 1.68 1.78 3.27 3.07 4.7l-5.25 5.18 1.47 1.46 5.16-5.15 3.2 3.2.69-1.84 1.3 1.29-2.1 5.59h2.06l1.16-3.09h1.38L21.38 24l1.31-1.31z"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/translate-variant.svg����������������������0000664�0000000�0000000�00000000731�14753064456�0027570�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 1H3c-1.1 0-2 .9-2 2v12l3-3h5v-1c0-2.2 1.79-4 4-4V3c0-1.1-.9-2-2-2m0 3H9.5c-.34 1.19-.96 2.3-1.82 3.26l-.02.02 1.26 1.25-.37 1.01L7 8l-2.5 2.5-.69-.73 2.53-2.49A8.6 8.6 0 0 1 4.86 5h.99c.31.6.69 1.17 1.15 1.68A7.7 7.7 0 0 0 8.57 4H3V3h3.5V2h1v1H11zm10 5h-8c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h7l3 3V11c0-1.1-.9-2-2-2m-1.37 10-.85-2.25h-3.56L14.38 19h-1.5l3.37-9h1.5l3.38 9zM17 12l1.22 3.25h-2.43z"/></svg>���������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/translate.svg������������������������������0000664�0000000�0000000�00000000526�14753064456�0026130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.87 15.07-2.54-2.51.03-.03A17.5 17.5 0 0 0 14.07 6H17V4h-7V2H8v2H1v2h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2zm-2.62 7 1.62-4.33L19.12 17z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/transmission-tower-export.svg��������������0000664�0000000�0000000�00000000616�14753064456�0031341�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5.18 5.45-1.78-.9L4.66 2h8.47l1.27 2.55-1.78.89L11.9 4h-6zM15.5 8H11l-.8-3H7.6l-.79 3H2.28L1 10.55l1.79.89L3.5 10h10.78l.72 1.45 1.79-.89zm-.83 14H12.6l-.24-.9-3.46-5.2-3.47 5.2-.23.9H3.13L6 11h2.09l-.36 1.35L8.9 14.1l1.16-1.75L9.71 11h2.07zM8.3 15l-.9-1.35-1.18 4.48zm3.28 3.12-1.18-4.48L9.5 15zM23 16l-4-4v3h-4v2h4v3z"/></svg>������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/transmission-tower-import.svg��������������0000664�0000000�0000000�00000000632�14753064456�0031330�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.39 5.45-1.78-.9L10.87 2h8.47l1.27 2.55-1.78.89L18.11 4h-6zM21.73 8H17.2l-.79-3h-2.6L13 8H8.5l-1.29 2.55 1.79.89.73-1.44H20.5l.71 1.45 1.79-.89zm-.85 14h-2.07l-.24-.9-3.46-5.2-3.47 5.2-.23.9H9.34l2.89-11h2.07l-.36 1.35 1.17 1.75 1.16-1.75-.35-1.35H18zm-6.38-7-.89-1.35-1.18 4.48zm3.29 3.12-1.18-4.48-.9 1.36zM9 16l-4-4v3H1v2h4v3z"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/transmission-tower-off.svg�����������������0000664�0000000�0000000�00000000556�14753064456�0030575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.1 21.5 2.4 1.7 1.1 3l5 5h-.7l-1.3 2.5 1.8.9.7-1.4h1.5l1 1-2.9 11h2.1l.2-.9 3.5-5.2 3.5 5.2.2.9h2.1l-.8-3.2 3.9 3.9zM9.3 18.1l1.2-4.5.9 1.3zm5.4 0L12.6 15l.2-.3 1.3 1.3zm-.5-7.1h.7l.2.9zm-.1-3h4.5l1.3 2.6-1.8.9-.7-1.5h-4.2l-3-3 .5-2h2.6zM8.4 5.2 6.9 3.7 7.8 2h8.5l1.3 2.5-1.8.9L15 4H9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/transmission-tower.svg���������������������0000664�0000000�0000000�00000000601�14753064456�0030014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.28 5.45-1.78-.9L7.76 2h8.47l1.27 2.55-1.78.89L15 4H9zM18.62 8h-4.53l-.79-3h-2.6l-.79 3H5.38L4.1 10.55l1.79.89.73-1.44h10.76l.72 1.45 1.79-.89zm-.85 14H15.7l-.24-.9L12 15.9l-3.47 5.2-.23.9H6.23l2.89-11h2.07l-.36 1.35L12 14.1l1.16-1.75-.35-1.35h2.07zm-6.37-7-.9-1.35-1.18 4.48zm3.28 3.12-1.18-4.48-.9 1.36z"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/trash-can-outline.svg����������������������0000664�0000000�0000000�00000000253�14753064456�0027465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 3v1H4v2h1v13a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V6h1V4h-5V3zM7 6h10v13H7zm2 2v9h2V8zm4 0v9h2V8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/trash-can.svg������������������������������0000664�0000000�0000000�00000000237�14753064456�0026012�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 3v1H4v2h1v13a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V6h1V4h-5V3zm0 5h2v9H9zm4 0h2v9h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tray-alert.svg�����������������������������0000664�0000000�0000000�00000000230�14753064456�0026207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 12h2v5h16v-5h2v5a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2m11-5h-2v2h2m0-10h-2v6h2Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tray-arrow-down.svg������������������������0000664�0000000�0000000�00000000304�14753064456�0027201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 12h2v5h16v-5h2v5c0 1.11-.89 2-2 2H4a2 2 0 0 1-2-2zm10 3 5.55-5.46-1.42-1.41L13 11.25V2h-2v9.25L7.88 8.13 6.46 9.55z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tray-arrow-up.svg��������������������������0000664�0000000�0000000�00000000303�14753064456�0026655�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 12h2v5h16v-5h2v5c0 1.11-.89 2-2 2H4a2 2 0 0 1-2-2zM12 2 6.46 7.46l1.42 1.42L11 5.75V15h2V5.75l3.13 3.13 1.42-1.43z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tray-full.svg������������������������������0000664�0000000�0000000�00000000243�14753064456�0026046�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 5H6v2h12M6 9h12v2H6m-4 1h2v5h16v-5h2v5a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2m16-4H6v2h12Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tray-minus.svg�����������������������������0000664�0000000�0000000�00000000216�14753064456�0026237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 10H8V8h8M2 17a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5h-2v5H4v-5H2Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tray-plus.svg������������������������������0000664�0000000�0000000�00000000236�14753064456�0026071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 12h2v5h16v-5h2v5a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2m9-12h2v3h3v2h-3v3h-2v-3H8V8h3Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tray-remove.svg����������������������������0000664�0000000�0000000�00000000365�14753064456�0026406�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 17a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5h-2v5H4v-5H2m12.12-6.54 1.42 1.42L13.41 9l2.13 2.12-1.42 1.42L12 10.41l-2.12 2.13-1.42-1.42L10.59 9 8.46 6.88l1.42-1.42L12 7.59Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tray.svg�����������������������������������0000664�0000000�0000000�00000000200�14753064456�0025077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 12h2v5h16v-5h2v5a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/treasure-chest-outline.svg�����������������0000664�0000000�0000000�00000000443�14753064456�0030544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 20h20V7c0-.8-.32-1.56-.88-2.12S19.8 4 19 4H5c-.8 0-1.56.32-2.12.88S2 6.2 2 7zm18-9h-5V9H9v2H4V7c0-.26.11-.5.29-.71C4.5 6.11 4.74 6 5 6h14c.27 0 .5.11.71.29.19.21.29.45.29.71zm-5 2h5v5H4v-5h5l2 2h2zm-4-2h2v2h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/treasure-chest.svg�������������������������0000664�0000000�0000000�00000000252�14753064456�0027065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 4h14a3 3 0 0 1 3 3v4h-7v-1H9v1H2V7a3 3 0 0 1 3-3m6 7h2v2h-2zm-9 1h7v1l2 2h2l2-2v-1h7v8H2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tree-outline.svg���������������������������0000664�0000000�0000000�00000000766�14753064456�0026555�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 3a4.48 4.48 0 0 0-4.13 6.27C5.5 10.12 5 11.28 5 12.5 5 15 7 17 9.5 17c.5 0 1-.11 1.5-.28V21h2v-5.23c.5.14 1 .23 1.5.23a5.5 5.5 0 0 0 5.5-5.5A5.5 5.5 0 0 0 14.5 5h-.26C13.41 3.76 12 3 10.5 3m0 2c1.32 0 2.41 1.03 2.5 2.35.46-.23 1-.35 1.5-.35a3.5 3.5 0 0 1 3.5 3.5 3.5 3.5 0 0 1-3.5 3.5c-.96 0-1.87-.39-2.54-1.09A2.49 2.49 0 0 1 9.5 15 2.5 2.5 0 0 1 7 12.5c0-1.38.8-1.96 2-2.71-.8-1.03-1-1.63-1-2.29A2.5 2.5 0 0 1 10.5 5"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/material/tree.svg�����������������������������������0000664�0000000�0000000�00000000427�14753064456�0025072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 21v-4.26c-.47.17-.97.26-1.5.26C7 17 5 15 5 12.5c0-1.27.5-2.41 1.36-3.23C6.13 8.73 6 8.13 6 7.5 6 5 8 3 10.5 3c1.56 0 2.94.8 3.75 2h.25a5.5 5.5 0 0 1 5.5 5.5 5.5 5.5 0 0 1-5.5 5.5q-.75 0-1.5-.21V21z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/trello.svg���������������������������������0000664�0000000�0000000�00000000621�14753064456�0025430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 2h-15A2.5 2.5 0 0 0 2 4.5v15A2.5 2.5 0 0 0 4.5 22h15a2.5 2.5 0 0 0 2.5-2.5v-15A2.5 2.5 0 0 0 19.5 2m-8.8 15.2a1.2 1.2 0 0 1-1.2 1.2H5.8c-.66 0-1.2-.54-1.2-1.2V5.8a1.2 1.2 0 0 1 1.2-1.2h3.7c.66 0 1.2.54 1.2 1.2zm8.7-5c0 .66-.54 1.2-1.2 1.2h-3.7c-.66 0-1.2-.54-1.2-1.2V5.8c0-.66.54-1.2 1.2-1.2h3.7c.66 0 1.2.54 1.2 1.2z"/></svg>���������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/trending-down.svg��������������������������0000664�0000000�0000000�00000000224�14753064456�0026705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16 18 2.29-2.29-4.88-4.88-4 4L2 7.41 3.41 6l6 6 4-4 6.3 6.29L22 12v6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/trending-neutral.svg�����������������������0000664�0000000�0000000�00000000144�14753064456�0027411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22 12-4-4v3H3v2h15v3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/trending-up.svg����������������������������0000664�0000000�0000000�00000000225�14753064456�0026363�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16 6 2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/triangle-down-outline.svg������������������0000664�0000000�0000000�00000000156�14753064456�0030361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 22 1 3h22M12 18l7.53-13H4.47"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/triangle-down.svg��������������������������0000664�0000000�0000000�00000000133�14753064456�0026677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 3h22L12 22"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/triangle-outline.svg�����������������������0000664�0000000�0000000�00000000155�14753064456�0027413�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2 1 21h22M12 6l7.53 13H4.47"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/triangle-small-down.svg��������������������0000664�0000000�0000000�00000000131�14753064456�0030003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 9h8l-4 7"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/triangle-small-up.svg����������������������0000664�0000000�0000000�00000000132�14753064456�0027461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 15h8l-4-7"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/triangle-wave.svg��������������������������0000664�0000000�0000000�00000000204�14753064456�0026671�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22 12-5 10L7.1 6.04 4.24 12H2L7 2l9.9 15.96L19.76 12z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/triangle.svg�������������������������������0000664�0000000�0000000�00000000133�14753064456�0025732�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 21h22L12 2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/triforce.svg�������������������������������0000664�0000000�0000000�00000000162�14753064456�0025744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.5 21 12 3.5 22.5 21zM12 21l5-9H7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/trophy-award.svg���������������������������0000664�0000000�0000000�00000000322�14753064456�0026546�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.2 10.7 1.4 5.3-4.6-3.8L7.4 16l1.4-5.2-4.2-3.5L10 7l2-5 2 5 5.4.3zM14 19h-1v-3l-1-1-1 1v3h-1c-1.1 0-2 .9-2 2v1h8v-1a2 2 0 0 0-2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/trophy-broken.svg��������������������������0000664�0000000�0000000�00000000500�14753064456�0026726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.2 13c.4 1.8 1.4 3.3 3.8 3.8v2.54C8 20.12 8 22 8 22h5.2l-3-7 4-5-3.5-6H8c0-1-1.1-2-2-2H2v9c0 1 1 2 2 2zM6 11H4V4h2zm11.8 2H20c1 0 2-1 2-2V2h-4c-.9 0-2 1-2 2h-2.1l2.8 6-4.5 5 1 7H16s0-1.88-2-2.66v-2.49c2.39-.5 3.5-2.15 3.8-3.85m2.2-2h-2V4h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/trophy-outline.svg�������������������������0000664�0000000�0000000�00000000464�14753064456�0027136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 2c-.9 0-2 1-2 2H8c0-1-1.1-2-2-2H2v9c0 1 1 2 2 2h2.2c.4 2 1.7 3.7 4.8 4v2.08C8 19.54 8 22 8 22h8s0-2.46-3-2.92V17c3.1-.3 4.4-2 4.8-4H20c1 0 2-1 2-2V2zM6 11H4V4h2zm10 .5c0 1.93-.58 3.5-4 3.5-3.41 0-4-1.57-4-3.5V6h8zm4-.5h-2V4h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/trophy-variant-outline.svg�����������������0000664�0000000�0000000�00000000440�14753064456�0030572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 4V2H7v2H2v7c0 1.1.9 2 2 2h3.1a5.01 5.01 0 0 0 3.9 3.9v2.18C8 19.54 8 22 8 22h8s0-2.46-3-2.92V16.9a5.01 5.01 0 0 0 3.9-3.9H20c1.1 0 2-.9 2-2V4zM4 11V6h3v5zm11 1c0 1.65-1.35 3-3 3s-3-1.35-3-3V4h6zm5-1h-3V6h3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/trophy-variant.svg�������������������������0000664�0000000�0000000�00000000371�14753064456�0027120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 4V2H7v2H2v7c0 1.1.9 2 2 2h3.1a5.01 5.01 0 0 0 3.9 3.9v2.18C8 19.54 8 22 8 22h8s0-2.46-3-2.92V16.9a5.01 5.01 0 0 0 3.9-3.9H20c1.1 0 2-.9 2-2V4zM4 11V6h3v5zm16 0h-3V6h3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/trophy.svg���������������������������������0000664�0000000�0000000�00000000400�14753064456�0025447�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 2c-.9 0-2 1-2 2H8c0-1-1.1-2-2-2H2v9c0 1 1 2 2 2h2.2c.4 2 1.7 3.7 4.8 4v2.08C8 19.54 8 22 8 22h8s0-2.46-3-2.92V17c3.1-.3 4.4-2 4.8-4H20c1 0 2-1 2-2V2zM6 11H4V4h2zm14 0h-2V4h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/truck-alert-outline.svg��������������������0000664�0000000�0000000�00000000620�14753064456�0030040�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 12h2v2H8zm0-5h2v4H8zm10 11.5c.8 0 1.5-.7 1.5-1.5s-.7-1.5-1.5-1.5-1.5.7-1.5 1.5.7 1.5 1.5 1.5m1.5-9H17V12h4.5zM6 18.5c.8 0 1.5-.7 1.5-1.5s-.7-1.5-1.5-1.5-1.5.7-1.5 1.5.7 1.5 1.5 1.5M20 8l3 4v5h-2c0 1.7-1.3 3-3 3s-3-1.3-3-3H9c0 1.7-1.3 3-3 3s-3-1.3-3-3H1V6c0-1.1.9-2 2-2h14v4zM3 6v9h.8c.5-.6 1.4-1 2.2-1s1.7.4 2.2 1H15V6z"/></svg>����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/truck-alert.svg����������������������������0000664�0000000�0000000�00000000544�14753064456�0026370�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4c-1.1 0-2 .9-2 2v11h2c0 1.7 1.3 3 3 3s3-1.3 3-3h6c0 1.7 1.3 3 3 3s3-1.3 3-3h2v-5l-3-4h-3V4zm5 2h2v4H8zm9 3.5h2.5l2 2.5H17zM8 12h2v2H8zm-2 3.5c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5-1.5-.7-1.5-1.5.7-1.5 1.5-1.5m12 0c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5-1.5-.7-1.5-1.5.7-1.5 1.5-1.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/truck-cargo-container.svg������������������0000664�0000000�0000000�00000000566�14753064456�0030340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 8h-3V4H1v13h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5zM6 18.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5M15 7h-2v7h-2V7H9v7H7V7H5v7H3V6h12zm3 11.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5M17 12V9.5h2.5l1.96 2.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/truck-check-outline.svg��������������������0000664�0000000�0000000�00000000673�14753064456�0030016�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 18.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5m1.5-9H17V12h4.46zM6 18.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5M20 8l3 4v5h-2c0 1.66-1.34 3-3 3s-3-1.34-3-3H9c0 1.66-1.34 3-3 3s-3-1.34-3-3H1V6c0-1.11.89-2 2-2h14v4zM3 6v9h.76c.55-.61 1.35-1 2.24-1s1.69.39 2.24 1H15V6zm2 4.5L6.5 9 8 10.5 11.5 7 13 8.5l-5 5z"/></svg>���������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/truck-check.svg����������������������������0000664�0000000�0000000�00000000655�14753064456�0026341�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4h14v4h3l3 4v5h-2a3 3 0 0 1-3 3 3 3 0 0 1-3-3H9a3 3 0 0 1-3 3 3 3 0 0 1-3-3H1V6a2 2 0 0 1 2-2m14 5.5V12h4.47L19.5 9.5zm-11 6A1.5 1.5 0 0 0 4.5 17 1.5 1.5 0 0 0 6 18.5 1.5 1.5 0 0 0 7.5 17 1.5 1.5 0 0 0 6 15.5m12 0a1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5M8 14l6-6-1.41-1.42L8 11.17 5.91 9.08 4.5 10.5z"/></svg>�����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/truck-delivery-outline.svg�����������������0000664�0000000�0000000�00000000663�14753064456�0030563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 18.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5m1.5-9H17V12h4.46zM6 18.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5M20 8l3 4v5h-2c0 1.66-1.34 3-3 3s-3-1.34-3-3H9c0 1.66-1.34 3-3 3s-3-1.34-3-3H1V6c0-1.11.89-2 2-2h14v4zM3 6v9h.76c.55-.61 1.35-1 2.24-1s1.69.39 2.24 1H15V6zm7 1 3.5 3.5L10 14v-2.5H5v-2h5z"/></svg>�����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/truck-delivery.svg�������������������������0000664�0000000�0000000�00000000621�14753064456�0027100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4a2 2 0 0 0-2 2v11h2a3 3 0 0 0 3 3 3 3 0 0 0 3-3h6a3 3 0 0 0 3 3 3 3 0 0 0 3-3h2v-5l-3-4h-3V4m-7 2 4 4-4 4v-3H4V9h6m7 .5h2.5l1.97 2.5H17M6 15.5A1.5 1.5 0 0 1 7.5 17 1.5 1.5 0 0 1 6 18.5 1.5 1.5 0 0 1 4.5 17 1.5 1.5 0 0 1 6 15.5m12 0a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5"/></svg>���������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/truck-fast-outline.svg���������������������0000664�0000000�0000000�00000000716�14753064456�0027674�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.75 7.5h9.75l.75 1.5H1.5zm1 3h9.75l.75 1.5H2.5zm16.25 8c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5m1.5-9H17V12h4.46zM8 18.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5M20 8l3 4v5h-2c0 1.66-1.34 3-3 3s-3-1.34-3-3h-4c0 1.66-1.35 3-3 3-1.66 0-3-1.34-3-3H3v-3.5h2V15h.76c.55-.61 1.35-1 2.24-1s1.69.39 2.24 1H15V6H3c0-1.11.89-2 2-2h12v4z"/></svg>��������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/truck-fast.svg�����������������������������0000664�0000000�0000000�00000000667�14753064456�0026224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 13.5 2.25 12H7.5l-.6-1.5H2L1.25 9h7.8l-.6-1.5H1.11L.25 6H4a2 2 0 0 1 2-2h12v4h3l3 4v5h-2a3 3 0 0 1-3 3 3 3 0 0 1-3-3h-4a3 3 0 0 1-3 3 3 3 0 0 1-3-3H4v-3.5zm16 5a1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5 1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5m1.5-9H18V12h4.46zM9 18.5a1.5 1.5 0 0 0 1.5-1.5A1.5 1.5 0 0 0 9 15.5 1.5 1.5 0 0 0 7.5 17 1.5 1.5 0 0 0 9 18.5"/></svg>�������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/truck-flatbed.svg��������������������������0000664�0000000�0000000�00000001141�14753064456�0026654�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 4h-5v9H1v4h2c0 .83.3 1.53.89 2.13.61.59 1.3.87 2.11.87s1.5-.28 2.11-.87c.59-.6.89-1.3.89-2.13h5.5c0 .83.28 1.53.88 2.13.59.59 1.29.87 2.12.87.8 0 1.5-.28 2.09-.87.6-.6.91-1.3.91-2.13H23v-7zM7.08 18.07c-.28.3-.64.43-1.08.43s-.8-.13-1.08-.43-.42-.65-.42-1.07c0-.39.14-.74.42-1.04s.64-.46 1.08-.46.8.16 1.08.46.42.65.42 1.04c0 .42-.14.77-.42 1.07m11.46 0c-.3.3-.65.43-1.04.43-.42 0-.77-.13-1.07-.43S16 17.42 16 17c0-.39.13-.74.43-1.04s.65-.46 1.07-.46c.39 0 .74.16 1.04.46s.46.65.46 1.04c0 .42-.16.77-.46 1.07M15 10V6h2.06l3.33 4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/truck-minus-outline.svg��������������������0000664�0000000�0000000�00000000615�14753064456�0030070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.7 1.3 3 3 3s3-1.3 3-3h6c0 1.7 1.3 3 3 3s3-1.3 3-3h2v-5zM6 18.5c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5m9-3.5H8.2c-.5-.6-1.3-1-2.2-1s-1.7.4-2.2 1H3V6h12zm3 3.5c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5M17 12V9.5h2.5l2 2.5zM6 11V9h6v2z"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/truck-minus.svg����������������������������0000664�0000000�0000000�00000000561�14753064456�0026413�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 8h-3V4H3c-1.11 0-2 .89-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5zM6 18.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5m7-7.5H5V9h8zm5 7.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5M17 12V9.5h2.5l1.96 2.5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/truck-off-road-off.svg���������������������0000664�0000000�0000000�00000001665�14753064456�0027533�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.39 1.73 1.11 3l5.85 5.85-6.227 1.1.867 4.92 1.97-.34c.14.78.58 1.47 1.24 1.93.65.46 1.45.64 2.24.5.78-.14 1.48-.58 1.95-1.23.44-.66.62-1.46.5-2.23l1.78-.33 3.09 3.09c-.31.07-.61.15-.91.24l-1.38.47C10.04 17.65 7.9 18 5.75 18h-.09c-1.06 0-2.08.42-2.83 1.17L2 20v2h18.11l.73.73.73-.73H22v-.43l.11-.11-.11-.11zm5 11.05c.32.22.54.57.61.96.07.4 0 .8-.25 1.12-.22.33-.57.55-.96.64-.4.05-.79-.04-1.12-.27a1.48 1.48 0 0 1-.62-.97c-.05-.39.02-.79.25-1.12a1.505 1.505 0 0 1 2.09-.36M22 18.5 19.5 16H22zm-3.6-3.58c.16 0 .31-.02.46-.04.79-.14 1.48-.59 1.94-1.24.46-.64.64-1.46.5-2.24l1.97-.35-.52-2.95c-.2-1.1-1.25-1.82-2.32-1.6l-1.97.32-3.65-3.42-5.42.96.34 1.88zm-7.27-9.34 3.45-.61 2.36 2.12-5.37.95zm6.95 4.86c.39-.07.8.02 1.12.25.33.23.55.58.62.97s-.02.8-.25 1.12c-.23.33-.57.55-.97.62-.39.07-.79-.02-1.1-.25-.34-.23-.57-.58-.63-.97-.07-.39.02-.79.24-1.12.23-.33.58-.56.97-.62"/></svg>���������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/truck-off-road.svg�������������������������0000664�0000000�0000000�00000001573�14753064456�0026761�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.81 3.4-5.42.96.7 3.94L.733 9.95l.867 4.92 1.97-.34c.14.78.58 1.47 1.24 1.93.65.46 1.45.64 2.24.5.78-.14 1.48-.58 1.95-1.23.44-.66.62-1.46.5-2.23l5.89-1.06c.14.79.58 1.48 1.23 1.94.65.45 1.46.62 2.24.5.79-.14 1.48-.59 1.94-1.24.46-.64.64-1.46.5-2.24l1.97-.35-.52-2.95c-.2-1.1-1.25-1.82-2.32-1.6l-1.97.32zm-3.68 2.18 3.45-.61 2.36 2.12-5.37.95zm-4.86 6.95A1.49 1.49 0 0 1 8 13.74c.07.4 0 .8-.25 1.12-.22.33-.57.55-.96.64-.4.05-.79-.04-1.12-.27a1.48 1.48 0 0 1-.62-.97c-.05-.39.02-.79.25-1.12.23-.32.57-.54.97-.61m11.81-2.09c.39-.07.8.02 1.12.25.33.23.55.58.62.97s-.02.8-.25 1.12c-.23.33-.57.55-.97.62-.39.07-.79-.02-1.1-.25-.34-.23-.57-.58-.63-.97-.07-.39.02-.79.24-1.12.23-.33.58-.56.97-.62M2.83 19.17 2 20v2h20v-6h-5.38c-1.07 0-2.12.17-3.16.5l-1.38.47C10.04 17.65 7.9 18 5.75 18h-.09c-1.06 0-2.08.42-2.83 1.17"/></svg>�������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/truck-outline.svg��������������������������0000664�0000000�0000000�00000000624�14753064456�0026737�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 18.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5m1.5-9H17V12h4.46zM6 18.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5M20 8l3 4v5h-2c0 1.66-1.34 3-3 3s-3-1.34-3-3H9c0 1.66-1.34 3-3 3s-3-1.34-3-3H1V6c0-1.11.89-2 2-2h14v4zM3 6v9h.76c.55-.61 1.35-1 2.24-1s1.69.39 2.24 1H15V6z"/></svg>������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/truck-plus-outline.svg���������������������0000664�0000000�0000000�00000000636�14753064456�0027723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.7 1.3 3 3 3s3-1.3 3-3h6c0 1.7 1.3 3 3 3s3-1.3 3-3h2v-5zM6 18.5c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5m9-3.5H8.2c-.5-.6-1.3-1-2.2-1s-1.7.4-2.2 1H3V6h12zm3 3.5c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5M17 12V9.5h2.5l2 2.5zm-9-1H6V9h2V7h2v2h2v2h-2v2H8z"/></svg>��������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/truck-plus.svg�����������������������������0000664�0000000�0000000�00000000574�14753064456�0026247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 18.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5m1.5-9H17V12h4.46zM6 18.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5M20 8l3 4v5h-2c0 1.66-1.34 3-3 3s-3-1.34-3-3H9c0 1.66-1.34 3-3 3s-3-1.34-3-3H1V6c0-1.11.89-2 2-2h14v4zM8 6v3H5v2h3v3h2v-3h3V9h-3V6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/truck-remove-outline.svg�������������������0000664�0000000�0000000�00000001021�14753064456�0030222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 8h-3V4H3c-1.11 0-2 .89-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5zM6 18.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5m9-3.5H8.24c-.55-.61-1.35-1-2.24-1s-1.69.39-2.24 1H3V6h12zm3 3.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5M17 12V9.5h2.5l1.96 2.5zm-11.18-.23L7.59 10 5.82 8.23l1.41-1.41L9 8.59l1.77-1.77 1.41 1.41L10.41 10l1.77 1.77-1.41 1.41L9 11.41l-1.77 1.77z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/truck-remove.svg���������������������������0000664�0000000�0000000�00000000730�14753064456�0026553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 8h-3V4H3c-1.11 0-2 .89-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5zM6 18.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5m6.54-6.38-1.42 1.42L9 11.41l-2.12 2.13-1.41-1.42L7.59 10 5.46 7.88l1.42-1.41L9 8.59l2.12-2.12 1.42 1.41L10.41 10zM18 18.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5M17 12V9.5h2.5l1.96 2.5z"/></svg>����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/truck-snowflake.svg������������������������0000664�0000000�0000000�00000001151�14753064456�0027245�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 4H3c-1.1 0-2 .9-2 2v11h2c0 1.7 1.3 3 3 3s3-1.3 3-3h6c0 1.7 1.3 3 3 3s3-1.3 3-3h2v-5l-3-4h-3zm-6.8 1.3h.3c.5.1.8.6.7 1.1l-.5 2 2-.5c.5-.1 1 .2 1.1.7s-.2 1-.6 1.1l-2 .5 1.4 1.4c.4.3.4.9 0 1.3-.3.4-.9.4-1.3 0l-1.5-1.4-.5 2c-.1.5-.6.8-1.1.6a.8.8 0 0 1-.6-1.1l.5-2-2 .5c-.5.1-1-.2-1.1-.6-.1-.5.2-1 .6-1.1l2-.5-1.4-1.6c-.3-.3-.3-.9 0-1.3.3-.3.9-.3 1.3 0l1.4 1.4.5-2c.1-.2.4-.5.8-.5M17 9.5h2.5l2 2.5H17zm-11 6c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5-1.5-.7-1.5-1.5.7-1.5 1.5-1.5m12 0c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5-1.5-.7-1.5-1.5.7-1.5 1.5-1.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/truck-trailer.svg��������������������������0000664�0000000�0000000�00000000330�14753064456�0026714�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 15v2H10a3 3 0 0 1-3 3 3 3 0 0 1-3-3H2V6a2 2 0 0 1 2-2h13a2 2 0 0 1 2 2v9zM7 16a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/truck.svg����������������������������������0000664�0000000�0000000�00000000601�14753064456�0025255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 18.5a1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5 1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5m1.5-9 1.96 2.5H17V9.5m-11 9A1.5 1.5 0 0 1 4.5 17 1.5 1.5 0 0 1 6 15.5 1.5 1.5 0 0 1 7.5 17 1.5 1.5 0 0 1 6 18.5M20 8h-3V4H3c-1.11 0-2 .89-2 2v11h2a3 3 0 0 0 3 3 3 3 0 0 0 3-3h6a3 3 0 0 0 3 3 3 3 0 0 0 3-3h2v-5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/trumpet.svg��������������������������������0000664�0000000�0000000�00000000623�14753064456�0025631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 6c-1 5-7 5-7 5H4c-1 0-2-1-2-1H1v4h1s1-1 2-1h.3c-.2.3-.3.6-.3 1v2c0 1.1.9 2 2 2h1v1h2v-1h1v1h2v-1h1v1h2v-1h1c1.1 0 2-.9 2-2v-2c0-.1 0-.3-.1-.4 1.7.6 3.5 1.8 4.1 4.4h1V6zM6 16.5c-.3 0-.5-.2-.5-.5v-2c0-.3.2-.5.5-.5h1v3zm3 0v-3h1v3zm3 0v-3h1v3zm4.5-.5c0 .3-.2.5-.5.5h-1v-3h1c.3 0 .5.2.5.5zM9 10H7V9h2zm3 0h-2V9h2zm3 0h-2V9h2z"/></svg>�������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tshirt-crew-outline.svg��������������������0000664�0000000�0000000�00000000651�14753064456�0030062�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 21H8a1 1 0 0 1-1-1v-7.93l-1.3 1.05c-.39.38-1.02.38-1.41 0l-2.83-2.83a.996.996 0 0 1 0-1.41L7.34 3H9c0 1.1 1.34 2 3 2s3-.9 3-2h1.66l5.88 5.88c.39.39.39 1.02 0 1.41l-2.83 2.83c-.39.38-1.02.38-1.41 0L17 12.07V20a1 1 0 0 1-1 1m4.42-11.42-4.31-4.3c-.31.35-.68.66-1.11.92-.84.5-1.87.8-3 .8-1.7 0-3.21-.68-4.11-1.72l-4.31 4.3L5 11l3-2h1v10h6V9h1l3 2z"/></svg>���������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tshirt-crew.svg����������������������������0000664�0000000�0000000�00000000452�14753064456�0026404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 21H8a1 1 0 0 1-1-1v-7.93l-1.3 1a.996.996 0 0 1-1.41 0l-2.83-2.78a.996.996 0 0 1 0-1.41L7.34 3H9c0 1.1 1.34 2 3 2s3-.9 3-2h1.66l5.88 5.88c.39.39.39 1.02 0 1.41l-2.83 2.83c-.39.38-1.02.38-1.41 0l-1.3-1V20a1 1 0 0 1-1 1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tshirt-v-outline.svg�����������������������0000664�0000000�0000000�00000000632�14753064456�0027366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 21H8a1 1 0 0 1-1-1v-7.93l-1.3 1.05c-.39.38-1.02.38-1.41 0l-2.83-2.83a.996.996 0 0 1 0-1.41L7.34 3H9c0 1.1 1 3 3 4.25C14 6 15 4.1 15 3h1.66l5.88 5.88c.39.39.39 1.02 0 1.41l-2.83 2.83c-.39.38-1.02.38-1.41 0L17 12.07V20a1 1 0 0 1-1 1m4.42-11.42-4.31-4.3C15 7 14 8.25 12 9.25c-2-1-3-2.25-4.11-3.97l-4.31 4.3L5 11l3-2h1v10h6V9h1l3 2z"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tshirt-v.svg�������������������������������0000664�0000000�0000000�00000000501�14753064456�0025704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 21H8a1 1 0 0 1-1-1v-7.93l-1.3 1a.996.996 0 0 1-1.41 0l-2.83-2.78a.996.996 0 0 1 0-1.41L7.34 3H9c.29 1.8 1.4 3.37 3 4.25 1.6-.88 2.71-2.45 3-4.25h1.66l5.88 5.88c.39.39.39 1.02 0 1.41l-2.83 2.83c-.39.38-1.02.38-1.41 0l-1.3-1V20a1 1 0 0 1-1 1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tsunami.svg��������������������������������0000664�0000000�0000000�00000001234�14753064456�0025610�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.67 17.63c-3.8 2.8-6.12.4-6.67 0-.66.49-2.92 2.76-6.67 0C3.43 19.03 2.65 19 2 19v2c1.16 0 2.3-.32 3.33-.93a6.54 6.54 0 0 0 6.67 0 6.54 6.54 0 0 0 6.67 0c1.03.61 2.17.93 3.33.93v-2c-.66 0-1.5 0-3.33-1.37m.66-5.63H22v-2h-2.67C17.5 10 16 8.5 16 6.67c0-1.02.38-1.74 1.09-3.34-1.37-.21-2-.33-3.09-.33C7.36 3 2.15 8.03 2 14.5v2c1.16 0 2.3-.32 3.33-.93a6.54 6.54 0 0 0 6.67 0 6.54 6.54 0 0 0 6.67 0c1.03.61 2.17.93 3.33.93v-2c-.66 0-1.5 0-3.33-1.37-3.8 2.8-6.12.4-6.67 0-.9.67-.54.41-.91.63-.7-.94-1.09-2.06-1.09-3.26 0-2.58 1.77-4.74 4.21-5.33-.13.51-.21 1.02-.21 1.5C14 9.61 16.39 12 19.33 12"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tumble-dryer-alert.svg���������������������0000664�0000000�0000000�00000001077�14753064456�0027655�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2h12a2 2 0 0 1 2 2v16c0 1.11-.89 2-2 2H4a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2m1 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m3 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m2 4c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6m-3.89 2.5H8c-.24 1.38 0 2.17.58 2.79 1.1 1.07 1.58 2.42 1.31 4.21H8c.24-1.38 0-2.17-.58-2.79-1.1-1.07-1.57-2.42-1.31-4.21m4 0H12c-.24 1.38 0 2.17.58 2.79 1.1 1.07 1.58 2.42 1.31 4.21H12c.24-1.38 0-2.17-.58-2.79-1.1-1.07-1.57-2.42-1.31-4.21M20 15h2v2h-2zm0-8h2v6h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tumble-dryer-off.svg�����������������������0000664�0000000�0000000�00000001072�14753064456�0027313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3 4 5.89V20c0 1.11.89 2 2 2h12c.58 0 1.1-.25 1.46-.65l1.38 1.38zM12 20c-3.31 0-6-2.69-6-6 0-1.68.7-3.2 1.82-4.29l.79.79h-.5c-.26 1.79.21 3.14 1.31 4.21.58.62.82 1.41.58 2.79h1.89c.27-1.79-.21-3.14-1.31-4.21-.36-.38-.58-.85-.63-1.45l4.08 4.08c.08.43.08.94-.03 1.58h1.61l.68.68A5.96 5.96 0 0 1 12 20m-.75-11.95C11.5 8 11.75 8 12 8c3.31 0 6 2.69 6 6 0 .25 0 .5-.05.75L20 16.8V4a2 2 0 0 0-2-2H6c-.24 0-.46.05-.67.13zM10 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tumble-dryer.svg���������������������������0000664�0000000�0000000�00000001072�14753064456�0026543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m1 2a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m3 0a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m2 4a6 6 0 0 0-6 6 6 6 0 0 0 6 6 6 6 0 0 0 6-6 6 6 0 0 0-6-6m-3.89 2.5H10c-.24 1.38 0 2.17.58 2.79 1.1 1.07 1.58 2.42 1.31 4.21H10c.24-1.38 0-2.17-.58-2.79-1.1-1.07-1.57-2.42-1.31-4.21m4 0H14c-.24 1.38 0 2.17.58 2.79 1.1 1.07 1.58 2.42 1.31 4.21H14c.24-1.38 0-2.17-.58-2.79-1.1-1.07-1.57-2.42-1.31-4.21"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tune-variant.svg���������������������������0000664�0000000�0000000�00000000576�14753064456�0026555�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 13c-1.86 0-3.41 1.28-3.86 3H2v2h2.14c.45 1.72 2 3 3.86 3s3.41-1.28 3.86-3H22v-2H11.86c-.45-1.72-2-3-3.86-3m0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2M19.86 6c-.45-1.72-2-3-3.86-3s-3.41 1.28-3.86 3H2v2h10.14c.45 1.72 2 3 3.86 3s3.41-1.28 3.86-3H22V6zM16 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tune-vertical-variant.svg������������������0000664�0000000�0000000�00000000572�14753064456�0030360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 12.14V2H6v10.14c-1.72.45-3 2-3 3.86s1.28 3.41 3 3.86V22h2v-2.14c1.72-.45 3-2 3-3.86s-1.28-3.41-3-3.86M7 14c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2M18 2h-2v2.14c-1.72.45-3 2-3 3.86s1.28 3.41 3 3.86V22h2V11.86c1.72-.45 3-2 3-3.86s-1.28-3.41-3-3.86zm-1 4c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tune-vertical.svg��������������������������0000664�0000000�0000000�00000000267�14753064456�0026717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 3H5v6h2zm12 0h-2v10h2zM3 13h2v8h2v-8h2v-2H3zm12-6h-2V3h-2v4H9v2h6zm-4 14h2V11h-2zm4-6v2h2v4h2v-4h2v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tune.svg�����������������������������������0000664�0000000�0000000�00000000270�14753064456�0025102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 17v2h6v-2zM3 5v2h10V5zm10 16v-2h8v-2h-8v-2h-2v6zM7 9v2H3v2h4v2h2V9zm14 4v-2H11v2zm-6-4h2V7h4V5h-4V3h-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tunnel-outline.svg�������������������������0000664�0000000�0000000�00000001006�14753064456�0027107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12v10h20V12c0-5.5-4.5-10-10-10m3.47 5.11A5.95 5.95 0 0 0 13 6.09V4.07c1.46.18 2.79.76 3.9 1.62zm-6.94 0L7.1 5.69A7.94 7.94 0 0 1 11 4.07v2.02c-.91.15-1.75.51-2.47 1.02M5.69 7.1l1.42 1.43A5.95 5.95 0 0 0 6.09 11H4.07c.18-1.46.76-2.79 1.62-3.9M6 13v2.5H4V13zm-2 7v-2.5h2V20zm12 0H8v-8c0-2.21 1.79-4 4-4s4 1.79 4 4zm.89-11.47 1.42-1.43a7.94 7.94 0 0 1 1.62 3.9h-2.02a5.95 5.95 0 0 0-1.02-2.47M18 13h2v2.5h-2zm0 7v-2.5h2V20z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/tunnel.svg���������������������������������0000664�0000000�0000000�00000000730�14753064456�0025435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12v10h20V12c0-5.5-4.5-10-10-10M7.1 5.69A7.94 7.94 0 0 1 11 4.07v2.02c-.91.15-1.75.51-2.47 1.02zm8.37 1.42A5.95 5.95 0 0 0 13 6.09V4.07c1.46.18 2.79.76 3.9 1.62zM5.69 7.1l1.42 1.43A5.95 5.95 0 0 0 6.09 11H4.07c.18-1.46.76-2.79 1.62-3.9M6 13v2.5H4V13zm-2 7v-2.5h2V20zM16.89 8.53l1.42-1.43a7.94 7.94 0 0 1 1.62 3.9h-2.02a5.95 5.95 0 0 0-1.02-2.47M18 13h2v2.5h-2zm0 7v-2.5h2V20z"/></svg>����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/turbine.svg��������������������������������0000664�0000000�0000000�00000001232�14753064456�0025576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 12c0 5.5 4.5 10 10 10s10-4.5 10-10S17.5 2 12 2 2 6.5 2 12m18 0c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m-7.5-5-.3 1.3-.9-3.3c-1 .3-1.6 1.3-1.4 2.4l.3 1.3-2.3-2.4c-.7.7-.7 2 0 2.7l1 1-3.3-.9c-.3 1 .3 2.1 1.4 2.4l1.3.3-3.3.9c.3 1 1.3 1.6 2.4 1.4l1.3-.3-2.4 2.4c.8.7 2 .7 2.7 0l.9-.9-.9 3.3c1 .3 2.1-.3 2.4-1.4l.3-1.3.9 3.3c1-.3 1.6-1.3 1.4-2.4l-.3-1.3 2.4 2.4c.7-.8.7-2 0-2.7l-1-1.2 3.3.9c.3-1-.3-2.1-1.4-2.4l-1.3-.3 3.3-.9c-.3-1-1.3-1.6-2.4-1.4l-1.3.3 2.4-2.4c-.8-.7-2-.7-2.7 0l-.9 1 .9-3.3c-1.1-.2-2.2.4-2.5 1.5m1 5c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5.7-1.5 1.5-1.5 1.5.7 1.5 1.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/turkey.svg���������������������������������0000664�0000000�0000000�00000001011�14753064456�0025444�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 19.44c-.75.36-1.6.56-2.5.56-3.31 0-6-2.69-6-6V9c0-3.31 2.69-6 6-6l2.5 4.58c-2.4 1.23-4 3.42-4 5.92s1.61 4.7 4 5.94m5.5-.5V20h1c.55 0 1 .45 1 1s-.45 1-1 1h-3c-.55 0-1-.45-1-1s.45-1 1-1v-1.06c-3.39-.38-6-2.67-6-5.44C8 10.46 11.13 8 15 8h.56C14.84 6.63 14 5.23 14 4c0-1.1.9-2 2-2 2.21 0 4 1.79 4 4h-2s4 3 4 7.5c0 2.77-2.61 5.06-6 5.44M16 4c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1m1 8a2 2 0 0 0-2-2c-2.21 0-4 1.79-4 4h4c1.11 0 2-.89 2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/turnstile-outline.svg����������������������0000664�0000000�0000000�00000000443�14753064456�0027637�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.41 10.41c-.37.38-.88.59-1.41.59a2 2 0 0 1-2-2c0-.53.21-1.04.59-1.41L9.17 6.17C8.42 6.92 8 7.94 8 9H2v2h6.55c.35.6.85 1.1 1.45 1.45V19h2v-6c1.06 0 2.08-.42 2.83-1.17zM10 2v3l6 6v11h6V2zm10 18h-2v-9.83l-6-6V4h8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/turnstile.svg������������������������������0000664�0000000�0000000�00000000307�14753064456�0026161�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 22h-6V11l-6-6V2h12zM9.17 6.17C8.42 6.92 8 7.94 8 9H2v2h6.55c.35.6.85 1.1 1.45 1.45V19h2v-6c1.06 0 2.08-.42 2.83-1.17z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/turtle.svg���������������������������������0000664�0000000�0000000�00000001426�14753064456�0025452�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.47 5.95c.48-.28 1-.51 1.53-.67V4c0-1.1.87-2 1.97-2.03C13.13 2 14 2.9 14 4v1.28c.53.17 1.05.39 1.53.67l-1.6 2.12h-3.86zM19 12c0 .5-.05.95-.14 1.4l-2.53-.78-1.19-3.66 1.6-2.11q.645.6 1.14 1.35c.79-.07 1.55.05 2.23.39 1.03.53 1.73 1.54 1.89 2.69l-3 .36zM5 12v-.35l-3-.37c.16-1.15.86-2.16 1.89-2.69a3.54 3.54 0 0 1 2.19-.33c.33-.51.71-.98 1.16-1.39l1.62 2.08-1.19 3.67-2.53.78C5.05 12.95 5 12.5 5 12m5.24-2.43h3.52l1.09 3.36L12 15l-2.85-2.07zm-2.11 4.48 3.12 2.26v2.65c-.57-.06-1.12-.19-1.63-.38l-1.23 2.76a3.49 3.49 0 0 1-2.02-2.58c-.14-.76-.02-1.52.32-2.2-.45-.52-.82-1.1-1.1-1.74zm7.74 0 2.54.77c-.28.64-.65 1.22-1.1 1.74.34.68.46 1.44.33 2.2a3.52 3.52 0 0 1-2.03 2.58l-1.22-2.76c-.53.19-1.06.36-1.64.42v-2.69z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/twitch.svg���������������������������������0000664�0000000�0000000�00000000361�14753064456�0025432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.64 5.93h1.43v4.28h-1.43m3.93-4.28H17v4.28h-1.43M7 2 3.43 5.57v12.86h4.28V22l3.58-3.57h2.85L20.57 12V2m-1.43 9.29-2.85 2.85h-2.86l-2.5 2.5v-2.5H7.71V3.43h11.43Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/twitter.svg��������������������������������0000664�0000000�0000000�00000001044�14753064456�0025631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.46 6c-.77.35-1.6.58-2.46.69.88-.53 1.56-1.37 1.88-2.38-.83.5-1.75.85-2.72 1.05C18.37 4.5 17.26 4 16 4c-2.35 0-4.27 1.92-4.27 4.29 0 .34.04.67.11.98C8.28 9.09 5.11 7.38 3 4.79c-.37.63-.58 1.37-.58 2.15 0 1.49.75 2.81 1.91 3.56-.71 0-1.37-.2-1.95-.5v.03c0 2.08 1.48 3.82 3.44 4.21a4.2 4.2 0 0 1-1.93.07 4.28 4.28 0 0 0 4 2.98 8.52 8.52 0 0 1-5.33 1.84q-.51 0-1.02-.06C3.44 20.29 5.7 21 8.12 21 16 21 20.33 14.46 20.33 8.79c0-.19 0-.37-.01-.56.84-.6 1.56-1.36 2.14-2.23"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/two-factor-authentication.svg��������������0000664�0000000�0000000�00000000354�14753064456�0031234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 7v2h4v2H4a2 2 0 0 0-2 2v4h6v-2H4v-2h2a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zm7 0v10h2v-4h3v-2h-3V9h4V7zm9 0a2 2 0 0 0-2 2v8h2v-3h2v3h2V9a2 2 0 0 0-2-2zm0 2h2v3h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/typewriter.svg�����������������������������0000664�0000000�0000000�00000000701�14753064456�0026344�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 13h-4c0 1.1-.9 2-2 2h-4c-1.1 0-2-.9-2-2H4l-2 5v2c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-2M6 20c-.89 0-1.34-1.08-.71-1.71S7 18.11 7 19c0 .55-.45 1-1 1m4 0c-.89 0-1.34-1.08-.71-1.71S11 18.11 11 19c0 .55-.45 1-1 1m4 0c-.89 0-1.34-1.08-.71-1.71S15 18.11 15 19c0 .55-.45 1-1 1m4 0c-.89 0-1.34-1.08-.71-1.71S19 18.11 19 19c0 .55-.45 1-1 1m0-10V3H6v7H3v2h18v-2M8 5h8v1H8m0 1h6v1H8"/></svg>���������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ubisoft.svg��������������������������������0000664�0000000�0000000�00000001415�14753064456�0025604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.41 2c-6.2 0-8.88 5.53-8.88 5.53l.79.56S2.33 10 2.35 12.4c0 4.94 3.94 9.6 9.72 9.6 5.26 0 9.6-4.29 9.6-9.59C21.67 5.5 16.31 2 11.41 2m.06 1.69c4.84 0 8.6 3.91 8.6 8.45 0 4.81-3.62 8.16-7.84 8.16-3.1 0-5.9-2.36-5.9-5.6 0-1.88.99-3.2 2.11-3.88l.16.18c-.3.24-1.17 1.64-1.17 3 0 2.56 2 4.33 4.52 4.33 3.21 0 5.35-2.74 5.35-5.92 0-3.7-3.27-6.84-7.2-6.84-2.17 0-4.01.93-5.07 1.76l-.17-.15c1.39-2.14 3.79-3.49 6.61-3.49M10 7.23c2.53 0 4.97 1.66 5.59 4.02l-.23.08c-1.09-1.45-2.89-2.65-5.01-2.65-3.91 0-5.96 3.55-5.66 6.51l-.23.09s-.43-.95-.43-2.08c0-3.27 2.68-5.97 5.97-5.97m1.68 4.1c1.18 0 2.13.97 2.13 2.11 0 .94-.6 1.5-.6 1.5l.71.51s-.71 1.12-2.16 1.12c-1.39 0-2.63-1.13-2.63-2.64 0-1.55 1.34-2.6 2.55-2.6"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ubuntu.svg���������������������������������0000664�0000000�0000000�00000001754�14753064456�0025461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 12a10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2a10 10 0 0 1 10 10m-7.66-4.26c.58.33 1.31.13 1.66-.44.31-.57.12-1.3-.46-1.64-.57-.33-1.31-.16-1.64.44-.33.57-.13 1.31.44 1.64m-2.46 7.76c-.53 0-1.03-.11-1.47-.32l-.84 1.5c.7.32 1.48.54 2.31.54.49 0 .95-.07 1.4-.19.08-.49.36-.93.82-1.19.46-.27.98-.29 1.44-.12.89-.87 1.46-2.06 1.55-3.39l-1.71-.02a3.506 3.506 0 0 1-3.5 3.19m0-7c1.84 0 3.34 1.39 3.5 3.19l1.71-.03a5.2 5.2 0 0 0-1.55-3.38c-.46.17-.99.14-1.44-.12-.46-.26-.74-.71-.82-1.19-.45-.12-.91-.19-1.4-.19-.83 0-1.61.19-2.31.54l.84 1.5c.44-.21.94-.32 1.47-.32M8.37 12c0-1.19.59-2.24 1.49-2.87L9 7.65a5.22 5.22 0 0 0-2.17 3.04c.38.31.62.78.62 1.31s-.24 1-.62 1.31A5.2 5.2 0 0 0 9 16.34l.86-1.47c-.9-.63-1.49-1.68-1.49-2.87m5.97 4.26c-.57.33-.77 1.06-.44 1.64.33.57 1.07.77 1.64.44.58-.34.77-1.07.46-1.64-.35-.58-1.08-.77-1.66-.44M5.76 10.8c-.66 0-1.2.54-1.2 1.2s.54 1.2 1.2 1.2c.67 0 1.2-.54 1.2-1.2s-.53-1.2-1.2-1.2"/></svg>��������������������mkdocs-material-9.6.4/material/templates/.icons/material/ufo-outline.svg����������������������������0000664�0000000�0000000�00000000457�14753064456�0026404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 10.54C16.78 7.44 14.63 5 12 5s-4.78 2.44-5 5.54C4 11.23 2 12.5 2 14c0 2.21 4.5 4 10 4s10-1.79 10-4c0-1.5-2-2.77-5-3.46m-2.07 1.3c-1.9.21-3.96.21-5.86 0-.04-.28-.07-.56-.07-.84 0-2.2 1.35-4 3-4s3 1.8 3 4c0 .28 0 .56-.07.84"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ufo.svg������������������������������������0000664�0000000�0000000�00000000333�14753064456�0024720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.94 10.28C15.66 7.87 14 6 12 6s-3.66 1.87-3.94 4.28C4.5 10.82 2 12.06 2 13.5 2 15.43 6.5 17 12 17s10-1.57 10-3.5c0-1.44-2.5-2.68-6.06-3.22"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ultra-high-definition.svg������������������0000664�0000000�0000000�00000000406�14753064456�0030322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 7h2v4h2V7h2v10h-2v-4h-2v4H9zm8 0h3a3 3 0 0 1 3 3v4a3 3 0 0 1-3 3h-3zm3 8a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-1v6zM7 14a3 3 0 0 1-3 3 3 3 0 0 1-3-3V7h2v7a1 1 0 0 0 1 1 1 1 0 0 0 1-1V7h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/umbraco.svg��������������������������������0000664�0000000�0000000�00000000532�14753064456�0025560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.6 8.6-1.43-.22c-.67 3.29-.71 5.86.44 7.12.99 1.11 4.28 1.11 4.28 1.11s3.4 0 4.39-1.11c1.15-1.26 1.1-3.83.44-7.12l-1.43.22s1.25 5.28-.6 6.09c-.88.38-2.8.38-2.8.38s-1.81 0-2.69-.38c-1.85-.81-.6-6.09-.6-6.09M12 3a9 9 0 0 1 9 9 9 9 0 0 1-9 9 9 9 0 0 1-9-9 9 9 0 0 1 9-9"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/umbrella-beach-outline.svg�����������������0000664�0000000�0000000�00000000676�14753064456�0030461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 19.57 19.57 21l-6.44-6.44 1.43-1.43zM13.12 3C10.54 3 7.96 4 6 5.95l-.03.01a10.086 10.086 0 0 0 0 14.31l14.3-14.31A10.13 10.13 0 0 0 13.12 3M6.14 17.27a8.06 8.06 0 0 1-.68-6.82c.19 1.91.89 3.79 2.07 5.44zM9 14.43c-1.37-2.05-1.88-4.5-1.4-6.83.58-.1 1.16-.18 1.75-.18 1.8 0 3.55.55 5.08 1.58zm1.45-8.97a8.063 8.063 0 0 1 6.82.68l-1.39 1.39a11.25 11.25 0 0 0-5.43-2.07"/></svg>������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/umbrella-beach.svg�������������������������0000664�0000000�0000000�00000000523�14753064456�0026773�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.13 14.56 1.43-1.43L21 19.57 19.57 21zm4.29-5.73 2.86-2.86C16.33 2 9.93 2 6 5.95c3.91-1.3 8.29-.25 11.42 2.88M5.95 6C2 9.93 2 16.33 5.97 20.28l2.86-2.86C5.7 14.29 4.65 9.91 5.95 6m.02-.04-.01.01C5.58 9 7.13 12.85 10.26 16L16 10.26c-3.14-3.13-7-4.68-10.03-4.3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/umbrella-closed-outline.svg����������������0000664�0000000�0000000�00000000330�14753064456�0030653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c.4 0 .8.2.9.6L17.5 15H13v4c0 1.7-1.3 3-3 3s-3-1.3-3-3v-1h2v1c0 .6.4 1 1 1s1-.4 1-1v-4H6.5l4.6-12.4c.1-.4.5-.6.9-.6m0 3.9L9.4 13h5.3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/umbrella-closed-variant.svg����������������0000664�0000000�0000000�00000000407�14753064456�0030645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15 7-2-1V3.5c0-.3.2-.5.5-.5s.5.2.5.5V4h2v-.5C16 2.1 14.9 1 13.5 1S11 2.1 11 3.5V6L9 7 6 6l5.1 15.3c.3.9 1.6.9 1.9 0C14.6 16.2 18 6 18 6zm-4 8L9 8.9l.7.2 1.3-1zm2-6.9 1.3 1 .7-.2-2 6.1z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/umbrella-closed.svg������������������������0000664�0000000�0000000�00000000277�14753064456�0027210�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2q-.6 0-.9.6L6.5 15H11v4c0 .6-.4 1-1 1s-1-.4-1-1v-1H7v1c0 1.7 1.3 3 3 3s3-1.3 3-3v-4h4.5L12.9 2.6Q12.6 2 12 2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/umbrella-outline.svg�����������������������0000664�0000000�0000000�00000000346�14753064456�0027413�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4C8.9 4 6.18 6.03 5.3 9h13.4A7 7 0 0 0 12 4m0-2a9 9 0 0 1 9 9h-8v8a3 3 0 0 1-3 3 3 3 0 0 1-3-3v-1h2v1a1 1 0 0 0 1 1 1 1 0 0 0 1-1v-8H3a9 9 0 0 1 9-9"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/umbrella.svg�������������������������������0000664�0000000�0000000�00000000270�14753064456�0025732�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a9 9 0 0 1 9 9h-8v8a3 3 0 0 1-3 3 3 3 0 0 1-3-3v-1h2v1a1 1 0 0 0 1 1 1 1 0 0 0 1-1v-8H3a9 9 0 0 1 9-9"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/underwear-outline.svg����������������������0000664�0000000�0000000�00000000650�14753064456�0027602�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4c-.55 0-1 .45-1 1v5c0 5.5 4.5 10 10 10s10-4.5 10-10V5c0-.55-.45-1-1-1zm17 2v2H4V6zM4 10h16c0 .34 0 .67-.06 1A6.996 6.996 0 0 0 13 17.94c-.33.06-.66.06-1 .06s-.67 0-1-.06A6.996 6.996 0 0 0 4.06 11C4 10.67 4 10.34 4 10m11.04 7.4a4.99 4.99 0 0 1 4.37-4.36 8.18 8.18 0 0 1-4.38 4.37M4.6 13.04c2.28.27 4.1 2.08 4.37 4.37a8.12 8.12 0 0 1-4.37-4.38Z"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/undo-variant.svg���������������������������0000664�0000000�0000000�00000000355�14753064456�0026542�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.5 7a6.5 6.5 0 0 1 6.5 6.5 6.5 6.5 0 0 1-6.5 6.5H10v-2h3.5c2.5 0 4.5-2 4.5-4.5S16 9 13.5 9H7.83l3.08 3.09L9.5 13.5 4 8l5.5-5.5 1.42 1.41L7.83 7zM6 18h2v2H6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/undo.svg�����������������������������������0000664�0000000�0000000�00000000332�14753064456�0025073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.5 8c-2.65 0-5.05 1-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/unfold-less-horizontal.svg�����������������0000664�0000000�0000000�00000000266�14753064456�0030556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.59 5.41 15.17 4 12 7.17 8.83 4 7.41 5.41 12 10m-4.59 8.59L8.83 20 12 16.83 15.17 20l1.41-1.41L12 14z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/unfold-less-vertical.svg�������������������0000664�0000000�0000000�00000000267�14753064456�0030177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.41 7.41 10 12l-4.59 4.59L4 15.17 7.17 12 4 8.83zm13.18 9.18L14 12l4.59-4.58L20 8.83 16.83 12 20 15.17z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/unfold-more-horizontal.svg�����������������0000664�0000000�0000000�00000000264�14753064456�0030550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18.17 8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15M12 5.83 15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/unfold-more-vertical.svg�������������������0000664�0000000�0000000�00000000266�14753064456�0030172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.17 12 15 8.83l1.41-1.42L21 12l-4.59 4.58L15 15.17zM5.83 12 9 15.17l-1.41 1.42L3 12l4.59-4.58L9 8.83z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/ungroup.svg��������������������������������0000664�0000000�0000000�00000000402�14753064456�0025623�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2h4v1h7V2h4v4h-1v3h2V8h4v4h-1v6h1v4h-4v-1h-6v1H8v-4h1v-2H6v1H2v-4h1V6H2zm16 10v-1h-2v2h1v4h-4v-1h-2v2h1v1h6v-1h1v-6zm-5-6V5H6v1H5v7h1v1h3v-2H8V8h4v1h2V6zm-1 6h-1v2h2v-1h1v-2h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/unicode.svg��������������������������������0000664�0000000�0000000�00000002145�14753064456�0025560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 6a1.46 1.46 0 0 1-1.46 1.44A1.46 1.46 0 0 1 19.09 6a1.46 1.46 0 0 1 1.45-1.5A1.46 1.46 0 0 1 22 6m-.44 2.86h-2.03c-.13-.01-.19.05-.19.14v3.59c0 .49 0 .91.01 1.27l.02.9c.01.24.02.45.02.63.01.17.01.33.01.47h-.02c-.12-.26-.31-.64-.56-1.12-.24-.47-.53-1.02-.85-1.63-.33-.61-.68-1.27-1.05-1.96-.37-.68-.74-1.37-1.11-2.04-.36-.68-.72-1.33-1.06-1.95q-.525-.93-.9-1.62c-.03-.04-.06-.1-.08-.12-.03-.02-.09-.03-.17-.03h-2.98c-.12 0-.15.05-.15.15h.03c-.03.02-.03.03-.03.04v8.26c0 .66-.07 1.16-.22 1.61-.15.43-.35.78-.61 1.05-.26.25-.57.43-.92.55-.36.11-.72.17-1.16.17-1.02 0-1.77-.31-2.26-.91-.5-.61-.74-1.42-.74-2.43V5.56c0-.11-.06-.17-.17-.17H2.17c-.11 0-.17.06-.17.19v8.49c0 .93.13 1.71.38 2.39.25.67.62 1.23 1.12 1.68.46.44 1.03.78 1.71 1s1.43.36 2.26.36c.77 0 1.5-.12 2.18-.33.69-.2 1.28-.53 1.77-.97.49-.45.88-1.02 1.17-1.7.29-.71.44-1.55.44-2.54V8.62c.11.24.25.53.41.85.29.58.61 1.21.98 1.91s.75 1.42 1.16 2.18c.42.76.81 1.5 1.19 2.2.39.7.73 1.35 1.06 1.94.32.59.57 1.06.75 1.42.05.1.15.15.27.15h2.69c.14 0 .21-.07.21-.19V9.05c0-.13-.07-.2-.19-.2Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/unicorn-variant.svg������������������������0000664�0000000�0000000�00000000327�14753064456�0027251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 12v7l-3 1-3-4.67c-.29-.44-1-.19-.92.34L14 23 4 18l.96-5.25C5.56 9.42 8.46 7 11.84 7H13l6-6-2 6h3l-1.58 2.37C19.36 9.88 20 10.86 20 12"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/unicorn.svg��������������������������������0000664�0000000�0000000�00000001161�14753064456�0025604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22 5-.89 1.34c.54.36.89.97.89 1.66v3.5l-1.5.5-1.54-2.46c-.13-.21-.46-.12-.46.13v3.58c0 .98-.39 1.86-1 2.53V22H15v-5h-.25c-.21 0-.42-.03-.62-.06l-4.68-.78-.88 1.96.97 3.88H6.96l-.92-3.7c-.07-.27-.04-.56.07-.8l.89-2a3.32 3.32 0 0 1-1.5-2.69c-.04.15-.06.37-.03.69.03.44.14 1.09.07 1.81-.04.72-.36 1.46-.78 1.95-.44.49-.91.83-1.41 1.09l-.7-.7c.19-.47.38-.89.42-1.28.06-.37-.01-.67-.12-.94l-.53-1.13c-.21-.51-.47-1.25-.42-2.12.03-.85.5-1.96 1.39-2.57.9-.61 1.87-.7 2.66-.53.5.1 1.01.34 1.45.68.37-.17.8-.26 1.25-.26h5.75V9c0-2.21 1.79-4 4-4L22 2l-1 3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/unicycle.svg�������������������������������0000664�0000000�0000000�00000000507�14753064456�0025745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9.09V5h1c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1s.45 1 1 1h1v4.09c-2.84.48-5 2.94-5 5.91 0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.97-2.16-5.43-5-5.91M12 19c-2.21 0-4-1.79-4-4 0-1.86 1.28-3.41 3-3.86V16h2v-4.86c1.72.45 3 2 3 3.86 0 2.21-1.79 4-4 4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/unity.svg����������������������������������0000664�0000000�0000000�00000000431�14753064456�0025276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.11 17H7.5l-4.91-5L7.5 7h2.61l1.31-2.26L18.21 3l1.87 6.74L18.77 12l1.31 2.26L18.21 21l-6.79-1.74zm.14-.25 5.13 1.38L12.42 13H6.5zm6.87.38L18.5 12l-1.38-5.13L14.15 12zm-6.87-9.88L6.5 11h5.92l2.96-5.13z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/unreal.svg���������������������������������0000664�0000000�0000000�00000001667�14753064456�0025430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2 10 10 0 0 0 2 12m3.24 6.76A9.5 9.5 0 0 1 2.44 12c0-2.55.99-4.95 2.8-6.76A9.5 9.5 0 0 1 12 2.44c2.55 0 4.95.99 6.76 2.8a9.5 9.5 0 0 1 2.8 6.76c0 2.55-.99 4.95-2.8 6.76a9.5 9.5 0 0 1-6.76 2.8c-2.55 0-4.95-.99-6.76-2.8M6.35 9.5c-2.01 2.29-1.62 4.18-1.62 4.18s.55-1.3 1.88-2.68c.64-.63 1.11-.85 1.43-.85.36 0 .53.26.53.5v4.64c0 .46-.3.56-.57.55-.23 0-.45-.08-.45-.08C8.92 17.73 12.19 18 12.19 18l1.44-1.5h.04L15 17.63c2.39-1.42 3.55-4.05 3.55-4.05-1.05 1.12-1.76 1.39-2.16 1.38-.36 0-.51-.21-.51-.21-.01-.1-.06-5.85.01-5.85.42-.77 1.74-2.34 1.74-2.34-2.47.49-3.82 2.1-3.82 2.1-.4-.31-1.22-.26-1.22-.26.38.21.76.81.76 1.32v4.93s-.85.73-1.47.73c-.38 0-.61-.21-.74-.38-.09-.12-.14-.21-.14-.21v-6.1c-.07.06-.18.11-.29.11-.14-.01-.28-.07-.37-.27-.08-.15-.12-.38-.12-.7 0-1.13 1.28-1.87 1.28-1.87-1.63.43-3.14 1.26-5.15 3.54"/></svg>�������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/update.svg���������������������������������0000664�0000000�0000000�00000000554�14753064456�0025416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 10.12h-6.78l2.74-2.82c-2.73-2.7-7.15-2.8-9.88-.1a6.887 6.887 0 0 0 0 9.8c2.73 2.7 7.15 2.7 9.88 0 1.36-1.35 2.04-2.92 2.04-4.9h2c0 1.98-.88 4.55-2.64 6.29-3.51 3.48-9.21 3.48-12.72 0-3.5-3.47-3.53-9.11-.02-12.58a8.987 8.987 0 0 1 12.65 0L21 3zM12.5 8v4.25l3.5 2.08-.72 1.21L11 13V8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/upload-box-outline.svg���������������������0000664�0000000�0000000�00000000311�14753064456�0027652�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 17v-2h8v2zm8-6-4-4-4 4h2.5v3h3v-3zM5 3h14a2 2 0 0 1 2 2v14c0 1.11-.89 2-2 2H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2m0 2v14h14V5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/upload-box.svg�����������������������������0000664�0000000�0000000�00000000275�14753064456�0026206�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14a2 2 0 0 1 2 2v14c0 1.11-.89 2-2 2H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2m11 14v-2H8v2zm0-6-4-4-4 4h2.5v3h3v-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/upload-circle-outline.svg������������������0000664�0000000�0000000�00000000350�14753064456�0030326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 17v-2h8v2zm8-7-4-4-4 4h2.5v4h3v-4zm-4-8c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2m0 2c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/upload-circle.svg��������������������������0000664�0000000�0000000�00000000260�14753064456�0026651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2m4 15v-2H8v2zm0-7-4-4-4 4h2.5v4h3v-4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/upload-lock-outline.svg��������������������0000664�0000000�0000000�00000000464�14753064456�0030023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 22h-5c-.5 0-1-.5-1-1v-4c0-.5.5-1 1-1v-1.5c0-1.4 1.1-2.5 2.5-2.5s2.5 1.1 2.5 2.5V16c.5 0 1 .5 1 1v4c0 .5-.5 1-1 1M5 18h9v2H5zm16-2v-1.5c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5V16zM9 16v-6H5l7-7 7 7h-4v6zm.83-8H11v6h2V8h1.17L12 5.83z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/upload-lock.svg����������������������������0000664�0000000�0000000�00000000427�14753064456�0026345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 22h-5c-.5 0-1-.5-1-1v-4c0-.5.5-1 1-1v-1.5c0-1.4 1.1-2.5 2.5-2.5s2.5 1.1 2.5 2.5V16c.5 0 1 .5 1 1v4c0 .5-.5 1-1 1m-8-2H5v-2h9zm7-4v-1.5c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5V16zm-6 0H9v-6H5l7-7 7 7h-4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/upload-multiple-outline.svg����������������0000664�0000000�0000000�00000000237�14753064456�0030724�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 8h-4v6H9V8H5l7-7zm-4.83-2L12 3.83 9.83 6H11v6h2V6zM5 16v2h14v-2zm14 4v2H5v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/upload-multiple.svg������������������������0000664�0000000�0000000�00000000200�14753064456�0027235�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 14V8H5l7-7 7 7h-4v6zm-4 4v-2h14v2zm14 2H5v2h14z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/upload-network-outline.svg�����������������0000664�0000000�0000000�00000000412�14753064456�0030555�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 20a1 1 0 0 0-1-1h-1v-2h4a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h4v2h-1a1 1 0 0 0-1 1H2v2h7a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1h7v-2zm-8-5V5h10v10zm5-9-4 4h3v4h2v-4h3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/upload-network.svg�������������������������0000664�0000000�0000000�00000000405�14753064456�0027102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 3a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-4v2h1a1 1 0 0 1 1 1h7v2h-7a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1H2v-2h7a1 1 0 0 1 1-1h1v-2H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm-5 2.5L7.5 10H11v4h2v-4h3.5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/upload-off-outline.svg���������������������0000664�0000000�0000000�00000000360�14753064456�0027640�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3l5.45 5.45L5 10h3.11l.89.89V16h5.11l2 2H5v2h13.11l2.73 2.73zM11 14v-1.11L12.11 14zm1-8.2L14.2 8H13v1.8l2 2V10h4l-7-7-2.9 2.9 1.4 1.4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/upload-off.svg�����������������������������0000664�0000000�0000000�00000000305�14753064456�0026162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3l5.45 5.45L5 10h3.11l.89.89V16h5.11l2 2H5v2h13.11l2.73 2.73zM15 10h4l-7-7-2.9 2.9 5.9 5.9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/upload-outline.svg�������������������������0000664�0000000�0000000�00000000220�14753064456�0027063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 10v6h6v-6h4l-7-7-7 7zm3-4.2L14.2 8H13v6h-2V8H9.8zM19 18H5v2h14z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/upload.svg���������������������������������0000664�0000000�0000000�00000000164�14753064456�0025415�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16v-6H5l7-7 7 7h-4v6zm-4 4v-2h14v2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/usb-c-port.svg�����������������������������0000664�0000000�0000000�00000000427�14753064456�0026126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 12h12c.55 0 1 .45 1 1s-.45 1-1 1H6c-.55 0-1-.45-1-1s.45-1 1-1m0-2c-1.66 0-3 1.34-3 3s1.34 3 3 3h12c1.66 0 3-1.34 3-3s-1.34-3-3-3zm0-2h12c2.76 0 5 2.24 5 5s-2.24 5-5 5H6c-2.76 0-5-2.24-5-5s2.24-5 5-5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/usb-flash-drive-outline.svg����������������0000664�0000000�0000000�00000001133�14753064456�0030576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 13c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3m0 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1M9.77 4.33l.73.75 3.79-3.79c.18-.18.43-.29.71-.29s.53.11.71.29l7.07 7.07v.01a1.02 1.02 0 0 1-.12 1.39l-3.73 3.74.74.73-6.72 6.72A6.98 6.98 0 0 1 8 23c-3.87 0-7-3.13-7-7 0-1.93.78-3.68 2.05-4.95zm1.77 15.21 5.3-5.31-7.07-7.07-5.31 5.3C3.56 13.37 3 14.62 3 16c0 2.76 2.24 5 5 5 1.38 0 2.63-.56 3.54-1.46m3.53-14.85L16.5 6.1l-1.43 1.4-1.41-1.4zM17.9 7.5l1.41 1.43-1.41 1.41-1.4-1.41zM20.59 9 15 3.41 11.93 6.5l5.57 5.58z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/usb-flash-drive.svg������������������������0000664�0000000�0000000�00000000760�14753064456�0027126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 15c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m7.07-10.31L16.5 6.1l-1.43 1.4-1.41-1.4zM17.9 7.5l1.41 1.43-1.41 1.41-1.4-1.41zM8 13c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3m1.77-8.67.73.75 3.79-3.79c.18-.18.43-.29.71-.29s.53.11.71.29l7.07 7.07v.01a1.02 1.02 0 0 1-.12 1.39l-3.73 3.74.74.73-6.72 6.72A6.98 6.98 0 0 1 8 23c-3.87 0-7-3.13-7-7 0-1.93.78-3.68 2.05-4.95zM20.59 9 15 3.41 11.93 6.5l5.57 5.58z"/></svg>����������������mkdocs-material-9.6.4/material/templates/.icons/material/usb-port.svg�������������������������������0000664�0000000�0000000�00000000254�14753064456�0025704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 2c-1.1 0-2 .9-2 2v8H5v4l4 4v2h6v-2l4-4v-4h-1V4a2 2 0 0 0-2-2M8 4h8v8H8m1-5v2h2V7m2 0v2h2V7Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/usb.svg������������������������������������0000664�0000000�0000000�00000000537�14753064456�0024726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 7v4h1v2h-3V5h2l-3-4-3 4h2v8H8v-2.07c.7-.37 1.2-1.08 1.2-1.93A2.2 2.2 0 0 0 7 6.8c-1.22 0-2.2.98-2.2 2.2 0 .85.5 1.56 1.2 1.93V13a2 2 0 0 0 2 2h3v3.05c-.71.36-1.2 1.1-1.2 1.95a2.2 2.2 0 0 0 2.2 2.2 2.2 2.2 0 0 0 2.2-2.2c0-.85-.49-1.59-1.2-1.95V15h3a2 2 0 0 0 2-2v-2h1V7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vacuum-outline.svg�������������������������0000664�0000000�0000000�00000001133�14753064456�0027103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.66 20 13.87 3.81q-.555-1.26-1.71-2.04C11.4 1.26 10.55 1 9.61 1q-1.26 0-2.31.63c-1.05.63-1.26.99-1.67 1.69S5 4.8 5 5.64L5.03 9h-3v5.45c.62-.28 1.28-.42 1.97-.42v-3h5c.57 0 1.04.2 1.43.59.39.38.57.85.57 1.38v7.03H8.91A4.7 4.7 0 0 1 7.97 22H13v-9c0-.72-.2-1.38-.55-2S11.61 9.91 11 9.56C10.42 9.2 9.75 9 9 9H7V5.64c0-.72.25-1.33.76-1.85S8.89 3 9.61 3c.53 0 1.02.16 1.45.46s.75.68.94 1.15L18.46 20l-2.46.03V22h7v-1.97zM4 18c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m0-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vacuum.svg���������������������������������0000664�0000000�0000000�00000000756�14753064456�0025440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 20v2h-7v-2h2.46L12 4.61c-.19-.47-.5-.85-.94-1.15S10.14 3 9.61 3c-.71 0-1.33.27-1.85.79S7 4.92 7 5.64V9h1c2.21 0 4 1.79 4 4v9H8c.61-.84 1-1.87 1-3 0-2.76-2.24-5-5-5-.71 0-1.39.15-2 .42V9h3V5.64c0-.84.23-1.64.63-2.32.41-.7.96-1.26 1.67-1.69Q8.35 1 9.61 1c.94 0 1.79.26 2.55.77s1.34 1.2 1.71 2.04L20.66 20zM7 19c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3m-2 0c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1"/></svg>������������������mkdocs-material-9.6.4/material/templates/.icons/material/valve-closed.svg���������������������������0000664�0000000�0000000�00000000233�14753064456�0026512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 2v20h-2v-9h-5.18a3 3 0 0 1-5.64 0H4v9H2V2h2v9h5.18a3 3 0 0 1 5.64 0H20V2Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/valve-open.svg�����������������������������0000664�0000000�0000000�00000000240�14753064456�0026200�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 22H2V2h2m18 0h-2v20h2M11 4v5.18a3 3 0 0 0 0 5.64V20h2v-5.18a3 3 0 0 0 0-5.64V4Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/valve.svg����������������������������������0000664�0000000�0000000�00000000252�14753064456�0025244�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 22H2V2h2m18 0h-2v20h2M17.24 5.34l-4 4a3 3 0 0 0-4 4l-4 4 1.42 1.42 4-4a3 3 0 0 0 4-4l4-4Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/van-passenger.svg��������������������������0000664�0000000�0000000�00000000643�14753064456�0026704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 7c-1.11 0-2 .89-2 2v8h2a3 3 0 0 0 3 3 3 3 0 0 0 3-3h6a3 3 0 0 0 3 3 3 3 0 0 0 3-3h2v-4c0-1.11-.89-2-2-2l-3-4zm0 1.5h4V11H3zm6 0h4V11H9zm6 0h2.5l1.96 2.5H15zm-9 7A1.5 1.5 0 0 1 7.5 17 1.5 1.5 0 0 1 6 18.5 1.5 1.5 0 0 1 4.5 17 1.5 1.5 0 0 1 6 15.5m12 0a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/van-utility.svg����������������������������0000664�0000000�0000000�00000000614�14753064456�0026416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 7c-1.11 0-2 .89-2 2v8h2a3 3 0 0 0 3 3 3 3 0 0 0 3-3h6a3 3 0 0 0 3 3 3 3 0 0 0 3-3h2v-4c0-1.11-.89-2-2-2l-3-4zm12 1.5h2.5l1.96 2.5H15zm-9 7A1.5 1.5 0 0 1 7.5 17 1.5 1.5 0 0 1 6 18.5 1.5 1.5 0 0 1 4.5 17 1.5 1.5 0 0 1 6 15.5m12 0a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5"/></svg>��������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vanish-quarter.svg�������������������������0000664�0000000�0000000�00000000211�14753064456�0027073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 3h2v5h-2zM4.9 6.3l1.4-1.4 2.8 2.8-1.3 1.5zM8 13H3v-2h5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vanish.svg���������������������������������0000664�0000000�0000000�00000000451�14753064456�0025420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 13v-2h5v2zm-1.17-5.24 2.83-2.83 1.41 1.41-2.83 2.83zM11 16h2v5h-2zm0-13h2v5h-2zM4.93 17.66l2.83-2.83 1.41 1.41-2.83 2.83zm0-11.32 1.41-1.41 2.83 2.83-1.41 1.41zM8 13H3v-2h5zm11.07 4.66-1.41 1.41-2.83-2.83 1.41-1.41z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vanity-light.svg���������������������������0000664�0000000�0000000�00000000542�14753064456�0026550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 20h-6c0-1.66 1.34-7 3-7s3 5.34 3 7m-10-7c-1.66 0-3 5.34-3 7h6c0-1.66-1.34-7-3-7m-7 0c-1.66 0-3 5.34-3 7h6c0-1.66-1.34-7-3-7m9.82-7c-.56-1.56-2.29-2.36-3.82-1.8-.86.3-1.5.97-1.82 1.8H2v2h2v4h2V8h3.18c.32.85.97 1.5 1.82 1.82V12h2V9.82c.85-.32 1.5-.97 1.82-1.82H18v4h2V8h2V6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/variable-box.svg���������������������������0000664�0000000�0000000�00000000603�14753064456�0026502�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2M7.4 18C5.9 16.5 5 14.3 5 12s.9-4.5 2.4-6l1.6.7C7.7 7.9 7 9.9 7 12s.7 4.1 2 5.3zm5.3-3-.8-2-1.4 2H9l2.3-3.1L10 9h1.3l.8 2 1.4-2H15l-2.2 3 1.3 3zm3.9 3-1.6-.7c1.3-1.3 2-3.2 2-5.3s-.7-4.1-2-5.3l1.6-.7c1.5 1.5 2.4 3.7 2.4 6s-.9 4.5-2.4 6"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/variable.svg�������������������������������0000664�0000000�0000000�00000000633�14753064456�0025717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.41 3c1.39 2.71 1.94 5.84 1.59 9-.2 3.16-1.3 6.29-3.17 9l-1.53-1c1.61-2.43 2.55-5.2 2.7-8 .34-2.8-.11-5.57-1.3-8zM5.17 3 6.7 4C5.09 6.43 4.15 9.2 4 12c-.34 2.8.12 5.57 1.3 8l-1.69 1c-1.4-2.71-1.96-5.83-1.61-9 .2-3.16 1.3-6.29 3.17-9m6.91 7.68 2.32-3.23h2.53l-3.78 5 2.2 4.92h-2.26L11.71 14l-2.43 3.33H6.76l3.9-5.12-2.13-4.76h2.27z"/></svg>�����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-arrange-above.svg�������������������0000664�0000000�0000000�00000000371�14753064456�0030142�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 1c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h11c1.11 0 2-.89 2-2V3c0-1.11-.89-2-2-2zm0 2h11v11H3zm15 4v2h2v11H9v-2H7v2c0 1.11.89 2 2 2h11c1.11 0 2-.89 2-2V9c0-1.11-.89-2-2-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-arrange-below.svg�������������������0000664�0000000�0000000�00000000372�14753064456�0030157�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 22c1.11 0 2-.89 2-2V9c0-1.11-.89-2-2-2H9c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2zm0-2H9V9h11zM5 16v-2H3V3h11v2h2V3c0-1.11-.89-2-2-2H3c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-bezier.svg��������������������������0000664�0000000�0000000�00000000534�14753064456�0026712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 4A1.5 1.5 0 0 0 6 5.5 1.5 1.5 0 0 0 7.5 7c.63 0 1.2-.4 1.41-1H13c.67-.67 1.33-1 2-1H8.91c-.21-.6-.78-1-1.41-1M19 5C8 5 14 17 5 17v2c11 0 5-12 14-12zm-2.5 12c-.63 0-1.2.4-1.41 1H11c-.67.67-1.33 1-2 1h6.09c.21.6.78 1 1.41 1a1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-circle-variant.svg������������������0000664�0000000�0000000�00000000423�14753064456�0030332�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 9h-2.03c-1.27-3.59-4.66-6-8.47-6a9 9 0 0 0-9 9c0 5 4.03 9 9 9 3.81 0 7.2-2.4 8.5-6h2m-2-4v2h-2v-2m-.18 4c-1.16 2.44-3.62 4-6.32 4-3.86 0-7-3.13-7-7 0-3.86 3.14-7 7-7 2.7 0 5.16 1.57 6.31 4H16v6"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-circle.svg��������������������������0000664�0000000�0000000�00000000616�14753064456�0026674�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 2v2.06A8.52 8.52 0 0 0 4.05 9H2v6h2.06A8.5 8.5 0 0 0 9 19.95V22h6v-2.06A8.5 8.5 0 0 0 19.95 15H22V9h-2.06A8.52 8.52 0 0 0 15 4.05V2m-4 2h2v2h-2m-2 .25V8h6V6.25c1.18.61 2.14 1.57 2.75 2.75H16v6h1.75A6.4 6.4 0 0 1 15 17.75V16H9v1.75A6.4 6.4 0 0 1 6.25 15H8V9H6.25A6.4 6.4 0 0 1 9 6.25M4 11h2v2H4m14-2h2v2h-2m-7 5h2v2h-2"/></svg>������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-combine.svg�������������������������0000664�0000000�0000000�00000000430�14753064456�0027041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 1c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h4v4c0 1.11.89 2 2 2h11c1.11 0 2-.89 2-2V9c0-1.11-.89-2-2-2h-4V3c0-1.11-.89-2-2-2zm0 2h11v4H9c-1.11 0-2 .89-2 2v5H3zm6 6h5v5H9zm7 0h4v11H9v-4h5c1.11 0 2-.89 2-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-curve.svg���������������������������0000664�0000000�0000000�00000001141�14753064456�0026551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 2A1.5 1.5 0 0 1 20 3.5 1.5 1.5 0 0 1 18.5 5c-.23 0-.45-.05-.65-.15l-3.69 3.7.34.45c2.19-1.26 4.76-2 7.5-2l1 .03v2.01L22 9c-2.58 0-5 .75-7 2.04A3.96 3.96 0 0 1 11.04 15C9.75 17 9 19.42 9 22l.04 1H7.03L7 22c0-2.74.74-5.31 2-7.5l-.45-.34-3.7 3.69c.1.2.15.42.15.65A1.5 1.5 0 0 1 3.5 20 1.5 1.5 0 0 1 2 18.5 1.5 1.5 0 0 1 3.5 17c.23 0 .45.05.65.15l3.69-3.7C7.31 12.78 7 11.92 7 11a4 4 0 0 1 4-4c.92 0 1.78.31 2.45.84l3.7-3.69c-.1-.2-.15-.42-.15-.65A1.5 1.5 0 0 1 18.5 2M11 9a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-difference-ab.svg�������������������0000664�0000000�0000000�00000000454�14753064456�0030105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 1c-1.11 0-2 .89-2 2v2h2V3h2V1zm4 0v2h3V1zm5 0v2h2v2h2V3c0-1.11-.89-2-2-2zM1 7v3h2V7zm13 0v7H7v6c0 1.11.89 2 2 2h11c1.11 0 2-.89 2-2V9c0-1.11-.89-2-2-2zm2 2h4v11H9v-4h5c1.11 0 2-.89 2-2zM1 12v2c0 1.11.89 2 2 2h2v-2H3v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-difference-ba.svg�������������������0000664�0000000�0000000�00000000472�14753064456�0030105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 22c1.11 0 2-.89 2-2v-2h-2v2h-2v2zm-4 0v-2h-3v2zm-5 0v-2H9v-2H7v2c0 1.11.89 2 2 2zm11-6v-3h-2v3zM9 16V9h7V3c0-1.11-.89-2-2-2H3c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2zm-2-2H3V3h11v4H9c-1.11 0-2 .89-2 2zm15-3V9c0-1.11-.89-2-2-2h-2v2h2v2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-difference.svg����������������������0000664�0000000�0000000�00000000514�14753064456�0027522�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 1c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h2v-2H3V3h11v2h2V3c0-1.11-.89-2-2-2zm6 6c-1.11 0-2 .89-2 2v2h2V9h2V7zm4 0v2h1v1h2V7zm5 0v2h2v11H9v-2H7v2c0 1.11.89 2 2 2h11c1.11 0 2-.89 2-2V9c0-1.11-.89-2-2-2zm-4 5v2h-2v2h2c1.11 0 2-.89 2-2v-2zm-7 1v3h3v-2H9v-1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-ellipse.svg�������������������������0000664�0000000�0000000�00000000524�14753064456�0027066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 9v6h-2.65c-.97 2.12-2.92 3.78-5.35 4.54V22H9v-2.46C5.5 18.45 3 15.5 3 12c0-4.42 4.03-8 9-8 3.78 0 7 2.07 8.35 5zm-6 6V9h1.06C16.85 7.21 14.59 6 12 6c-3.87 0-7 2.69-7 6 0 2.39 1.64 4.46 4 5.42V16h6v1.42c1.29-.52 2.35-1.37 3.06-2.42zm2-2h2v-2h-2zm-8 7h2v-2h-2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-intersection.svg��������������������0000664�0000000�0000000�00000000647�14753064456�0030145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.14 1A2.14 2.14 0 0 0 1 3.14V5h2V3h2V1zM7 1v2h3V1zm5 0v2h2v2h2V3.14C16 1.96 15.04 1 13.86 1zM1 7v3h2V7zm8 0c-1.11 0-2 .89-2 2v7h6.86A2.14 2.14 0 0 0 16 13.86V7zm9 0v2h2v2h2V9c0-1.11-.89-2-2-2zM9 9h5v5H9zm-8 3v1.86C1 15.04 1.96 16 3.14 16H5v-2H3v-2zm19 1v3h2v-3zM7 18v2c0 1.11.89 2 2 2h2v-2H9v-2zm13 0v2h-2v2h2c1.11 0 2-.89 2-2v-2zm-7 2v2h3v-2z"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-line.svg����������������������������0000664�0000000�0000000�00000000220�14753064456�0026351�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 3v4.59L7.59 15H3v6h6v-4.58L16.42 9H21V3m-4 2h2v2h-2M5 17h2v2H5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-link.svg����������������������������0000664�0000000�0000000�00000000424�14753064456�0026365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 1c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h11c1.11 0 2-.89 2-2v-3h-2v3H3V3h11v2h2V3c0-1.11-.89-2-2-2M9 7c-1.11 0-2 .89-2 2v3h2V9h11v11H9v-2H7v2c0 1.11.89 2 2 2h11c1.11 0 2-.89 2-2V9c0-1.11-.89-2-2-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-point-edit.svg����������������������0000664�0000000�0000000�00000000332�14753064456�0027502�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 9v6h6V9zm2 2h2v2h-2zm10.2 2c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6 0-.8l-1.3-1.3c-.2-.1-.3-.2-.4-.2m-2.1 1.8L13 20.9V23h2.1l6.1-6.2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-point-minus.svg���������������������0000664�0000000�0000000�00000000161�14753064456�0027710�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 9v6h6V9zm2 2h2v2h-2zm4 7v2h8v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-point-plus.svg����������������������0000664�0000000�0000000�00000000205�14753064456�0027537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 9v6h6V9zm2 2h2v2h-2zm7 4v3h-3v2h3v3h2v-3h3v-2h-3v-3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-point-select.svg��������������������0000664�0000000�0000000�00000000212�14753064456�0030031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 20-5 2 5-11 5 11zM8 2h8v3h6v2h-6v3H8V7H2V5h6zm2 2v4h4V4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-point.svg���������������������������0000664�0000000�0000000�00000000145�14753064456�0026561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 9v6h6V9zm2 2h2v2h-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-polygon-variant.svg�����������������0000664�0000000�0000000�00000000401�14753064456�0030554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 8V2h-6v3.8L14.4 8H9.6L8 5.8V2H2v6h2v8H2v6h6v-2h8v2h6v-6h-2V8zm-11 2h2v2h-2zM4 4h2v2H4zm2 16H4v-2h2zm10-2H8v-2H6V8h1.1L9 10.6V14h6v-3.4L16.9 8H18v8h-2zm4 2h-2v-2h2zM18 6V4h2v2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-polygon.svg�������������������������0000664�0000000�0000000�00000000441�14753064456�0027116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2v6h2.28l1.29 8H4v6h6v-1.94l5-.01V22h6v-6h-1.83L20 9h2V3h-6v3.53L14.8 8H9.59L8 5.82V2M4 4h2v2H4m14-1h2v2h-2M6.31 8h.8L9 10.59V14h6v-3.09L16.57 9H18l-.84 7H15v2.06h-5V16H7.6m3.4-6h2v2h-2m-5 6h2v2H6m11-2h2v2h-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-polyline-edit.svg�������������������0000664�0000000�0000000�00000000515�14753064456�0030207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3v6h2.95l2 6H6v6h6v-4.59L17.41 11H22V5h-6v4.57L10.59 15H9.06l-2-6H8V3zm2 2h2v2H4zm14 2h2v2h-2zm3.15 6c-.15 0-.28.05-.39.16l-1.01 1.02 2.07 2.07 1.02-1.01c.21-.21.21-.57 0-.78l-1.3-1.3a.54.54 0 0 0-.39-.16m-2 1.76L13 20.91V23h2.09l6.14-6.16zM8 17h2v2H8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-polyline-minus.svg������������������0000664�0000000�0000000�00000000307�14753064456�0030414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3v6h2.95l2 6H6v6h6v-4.59L17.41 11H22V5h-6v4.57L10.59 15H9.06l-2-6H8V3zm2 2h2v2H4zm14 2h2v2h-2zM8 17h2v2H8zm7 1v2h8v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-polyline-plus.svg�������������������0000664�0000000�0000000�00000000333�14753064456�0030243�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3v6h2.95l2 6H6v6h6v-4.59L17.41 11H22V5h-6v4.57L10.59 15H9.06l-2-6H8V3zm2 2h2v2H4zm14 2h2v2h-2zm0 8v3h-3v2h3v3h2v-3h3v-2h-3v-3zM8 17h2v2H8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-polyline-remove.svg�����������������0000664�0000000�0000000�00000000430�14753064456�0030553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.1 15.5 19 17.6l-2.1-2.1-1.4 1.4 2.1 2.1-2.1 2.1 1.4 1.4 2.1-2.1 2.1 2.1 1.4-1.4-2.1-2.1 2.1-2.1zM16 5v4.6L10.6 15H9.1l-2-6H8V3H2v6h3l2 6H6v6h6v-4.6l5.4-5.4H22V5zM6 7H4V5h2zm4 12H8v-2h2zM20 9h-2V7h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-polyline.svg������������������������0000664�0000000�0000000�00000000270�14753064456�0027262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3v6h2.95l2 6H6v6h6v-4.59L17.41 11H22V5h-6v4.57L10.59 15H9.06l-2-6H8V3M4 5h2v2H4m14 0h2v2h-2M8 17h2v2H8Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-radius.svg��������������������������0000664�0000000�0000000�00000000263�14753064456�0026720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4h2V2h6v2a10 10 0 0 1 10 10h2v6h-2v2h-2v-2h-2v-6h2a8 8 0 0 0-8-8v2H4V6H2zm16 12v2h2v-2zM6 4v2h2V4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-rectangle.svg�����������������������0000664�0000000�0000000�00000000315�14753064456�0027373�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4h6v2h8V4h6v6h-2v4h2v6h-6v-2H8v2H2v-6h2v-4H2zm14 6V8H8v2H6v4h2v2h8v-2h2v-4zM4 6v2h2V6zm14 0v2h2V6zM4 16v2h2v-2zm14 0v2h2v-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-selection.svg�����������������������0000664�0000000�0000000�00000000632�14753064456�0027416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 1h2v2H3v2H1V3a2 2 0 0 1 2-2m11 0a2 2 0 0 1 2 2v2h-2V3h-2V1zm6 6a2 2 0 0 1 2 2v2h-2V9h-2V7zm2 13a2 2 0 0 1-2 2h-2v-2h2v-2h2zm-2-7h2v3h-2zm-7-4V7h3v3h-2V9zm0 13v-2h3v2zm-4 0a2 2 0 0 1-2-2v-2h2v2h2v2zm-2-6v-3h2v1h1v2zM7 3V1h3v2zM3 16a2 2 0 0 1-2-2v-2h2v2h2v2zM1 7h2v3H1zm8 0h2v2H9v2H7V9a2 2 0 0 1 2-2m7 7a2 2 0 0 1-2 2h-2v-2h2v-2h2z"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-square-close.svg��������������������0000664�0000000�0000000�00000000317�14753064456�0030034�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4h2v2H4zm2 16H4v-2h2zM18 8v8h-2v2H8v-2H6V8h2V2H2v6h2v8H2v6h6v-2h8v2h6v-6h-2V8h2V2h-6v6zm2 12h-2v-2h2zM18 6V4h2v2zm-4 0h-4V4h4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-square-edit.svg���������������������0000664�0000000�0000000�00000000477�14753064456�0027663�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.7 14.4-1 1-2.1-2.1 1-1c.2-.2.6-.2.8 0l1.3 1.3c.2.2.2.5 0 .8M13 19.9l6.1-6.1 2.1 2.1-6.1 6.1H13zm-2 0v-.8l.6-.6.5-.5H8v-2H6V8h2V6h8v2h2v4.1l1.1-1.1.2-.2c.2-.2.5-.4.8-.5V8h2V2h-6v2H8V2H2v6h2v8H2v6h6v-2zM18 4h2v2h-2zM4 4h2v2H4zm2 16H4v-2h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-square-minus.svg��������������������0000664�0000000�0000000�00000000374�14753064456�0030065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0-.3 0-.7.1-1H8v-2H6V8h2V6h8v2h2v5.1c.3-.1.7-.1 1-.1s.7 0 1 .1V8h2V2h-6v2H8V2H2v6h2v8H2v6h6v-2h5.1c-.1-.3-.1-.7-.1-1m5-15h2v2h-2zM4 4h2v2H4zm2 16H4v-2h2zm17-2v2h-8v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-square-open.svg���������������������0000664�0000000�0000000�00000000302�14753064456�0027662�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4h2v2H4zm2 16H4v-2h2zM18 8v8h-2v2H8v-2H6V8h2V2H2v6h2v8H2v6h6v-2h8v2h6v-6h-2V8h2V2h-6v6zm2 12h-2v-2h2zM18 6V4h2v2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-square-plus.svg���������������������0000664�0000000�0000000�00000000420�14753064456�0027705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0-.3 0-.7.1-1H8v-2H6V8h2V6h8v2h2v5.1c.3-.1.7-.1 1-.1s.7 0 1 .1V8h2V2h-6v2H8V2H2v6h2v8H2v6h6v-2h5.1c-.1-.3-.1-.7-.1-1m5-15h2v2h-2zM4 4h2v2H4zm2 16H4v-2h2zm14-5v3h3v2h-3v3h-2v-3h-3v-2h3v-3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-square-remove.svg�������������������0000664�0000000�0000000�00000000520�14753064456�0030220�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19c0-.3 0-.7.1-1H8v-2H6V8h2V6h8v2h2v5.1c.3-.1.7-.1 1-.1s.7 0 1 .1V8h2V2h-6v2H8V2H2v6h2v8H2v6h6v-2h5.1c-.1-.3-.1-.7-.1-1m5-15h2v2h-2zM4 4h2v2H4zm2 16H4v-2h2zm16.5-3.1L20.4 19l2.1 2.1-1.4 1.4-2.1-2.1-2.1 2.1-1.4-1.4 2.1-2.1-2.1-2.1 1.4-1.4 2.1 2.1 2.1-2.1z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-square.svg��������������������������0000664�0000000�0000000�00000000313�14753064456�0026725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2h6v2h8V2h6v6h-2v8h2v6h-6v-2H8v2H2v-6h2V8H2zm14 6V6H8v2H6v8h2v2h8v-2h2V8zM4 4v2h2V4zm14 0v2h2V4zM4 18v2h2v-2zm14 0v2h2v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-triangle.svg������������������������0000664�0000000�0000000�00000000301�14753064456�0027227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 3v6h.73l-3.94 7H2v6h6v-2h8v2h6v-6h-3.79l-3.94-7H15V3m-4 2h2v2h-2m1 2.04 4 7.11V18H8v-1.85M4 18h2v2H4m14-2h2v2h-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vector-union.svg���������������������������0000664�0000000�0000000�00000000337�14753064456�0026563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 1c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h4v4c0 1.11.89 2 2 2h11c1.11 0 2-.89 2-2V9c0-1.11-.89-2-2-2h-4V3c0-1.11-.89-2-2-2zm0 2h11v6h6v11H9v-6H3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vhs.svg������������������������������������0000664�0000000�0000000�00000000402�14753064456�0024724�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2zm.54 4H7v4H4.54c-.35-.61-.54-1.3-.54-2s.19-1.39.54-2M9 10h6v4H9zm8 0h2.46c.35.61.54 1.3.54 2s-.19 1.39-.54 2H17z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vibrate-off.svg����������������������������0000664�0000000�0000000�00000000550�14753064456�0026334�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.2 5 6.55 3.35c.26-.23.6-.35.95-.35h9A1.5 1.5 0 0 1 18 4.5v10.3l-2-2V5zM0 15h2V9H0zm21 2V7h-2v8.8l1.2 1.2zM3 17h2V7H3zm15 .35 4.11 4.11-1.27 1.27L18 19.85c-.17.69-.79 1.15-1.5 1.15h-9A1.5 1.5 0 0 1 6 19.5V7.89L1.11 3l1.28-1.27 3.7 3.71L8 7.34l8 8 2 2zm-2 .54-8-8V19h8zM22 9v6h2V9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vibrate.svg��������������������������������0000664�0000000�0000000�00000000355�14753064456�0025567�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 19H8V5h8m.5-2h-9A1.5 1.5 0 0 0 6 4.5v15A1.5 1.5 0 0 0 7.5 21h9a1.5 1.5 0 0 0 1.5-1.5v-15A1.5 1.5 0 0 0 16.5 3M19 17h2V7h-2m3 2v6h2V9M3 17h2V7H3m-3 8h2V9H0z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-2d.svg�������������������������������0000664�0000000�0000000�00000000365�14753064456�0025545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 7h3c1.66 0 3 1.34 3 3v4c0 1.66-1.34 3-3 3h-3zm3 8c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1h-1v6zM5 7h4a2 2 0 0 1 2 2v2c0 1.11-.89 2-2 2H7v2h4v2H5v-4c0-1.1.9-2 2-2h2V9H5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-3d-off.svg���������������������������0000664�0000000�0000000�00000000603�14753064456�0026311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.61 2 18.74 18.74-1.41 1.41L14.8 17H13v-1.8l-2-1.97v1.98c-.07.47-.26.87-.59 1.2-.33.32-.73.52-1.2.59H5v-2h4v-2H6v-2h2.8L6.79 9H5V7.23L1.2 3.41zM16 7h.22c.78.07 1.41.36 1.92.88.51.51.79 1.12.86 1.88v4.48c-.05.39-.13.76-.28 1.06L17 13.6V9.85c-.05-.22-.16-.41-.31-.57-.16-.15-.35-.25-.57-.28H15v2.59l-2-2.02V7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-3d-variant.svg�����������������������0000664�0000000�0000000�00000000534�14753064456�0027206�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 10v4a.5.5 0 0 1-.5.5h-1v-5h1a.5.5 0 0 1 .5.5m7-3.5v11l-4-4V17a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3.5m-7.5-1A1.5 1.5 0 0 0 8 8H4.5v1.5H8v1.75H5.5v1.5H8v1.75H4.5V16H8a1.5 1.5 0 0 0 1.5-1.5m6-5A1.5 1.5 0 0 0 14 8h-3v8h3a1.5 1.5 0 0 0 1.5-1.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-3d.svg�������������������������������0000664�0000000�0000000�00000000331�14753064456�0025537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 7h4a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H5v-2h4v-2H6v-2h3V9H5zm8 0h3a3 3 0 0 1 3 3v4a3 3 0 0 1-3 3h-3zm3 8a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-1v6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-4k-box.svg���������������������������0000664�0000000�0000000�00000000371�14753064456�0026341�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-7 10.5h-1V15H9.5v-1.5h-3V9H8v3h1.5V9H11v3h1zm6 1.5h-1.8l-1.8-2.2V15H13V9h1.5v2.2L16.2 9H18l-2.2 3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-account.svg��������������������������0000664�0000000�0000000�00000000413�14753064456�0026666�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17 10.5 4-4v11l-4-4V17a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1zM14 16v-1c0-1.33-2.67-2-4-2s-4 .67-4 2v1zm-4-8a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-box-off.svg��������������������������0000664�0000000�0000000�00000000360�14753064456�0026573�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 8h.73L14 15.27V16H6M2.27 1 1 2.27l2 2.01c-.59.34-1 .98-1 1.72v12a2 2 0 0 0 2 2h14.73l2 2L22 20.73M20 4H7.82l4 4H14v2.18l.57.57L18 8v6.18l4 3.99V6a2 2 0 0 0-2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-box.svg������������������������������0000664�0000000�0000000�00000000262�14753064456�0026024�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18 16-4-3.2V16H6V8h8v3.2L18 8m2-4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-check-outline.svg��������������������0000664�0000000�0000000�00000000355�14753064456�0027771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 8v8H5V8zm1-2H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7c0-.55-.45-1-1-1m-9.65 6.08 1.15-1.13L9 12.5 12.5 9l1.15 1.37L9 15z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-check.svg����������������������������0000664�0000000�0000000�00000000343�14753064456�0026311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11zM8.93 15 6 11.8l1.24-1.24 1.69 1.7 3.83-3.83L14 9.93z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-high-definition.svg������������������0000664�0000000�0000000�00000000455�14753064456�0030305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 10v4c0 .3-.2.5-.5.5h-1v-5h1c.3 0 .5.2.5.5m3 .5V7c0-.6-.4-1-1-1H4c-.6 0-1 .4-1 1v10c0 .6.4 1 1 1h12c.6 0 1-.4 1-1v-3.5l4 4v-11zM9.5 16H8v-3.2H6V16H4.5V8H6v3.2h2V8h1.5zm6-1.5c0 .8-.7 1.5-1.5 1.5h-3V8h3c.8 0 1.5.7 1.5 1.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-image.svg����������������������������0000664�0000000�0000000�00000000334�14753064456�0026316�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17 10.5 4-4v11l-4-4V17a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1zm-6.09-.95L9.2 11.82l1.3 1.73-.73.54-2.04-2.73L5 15h10z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-input-antenna.svg��������������������0000664�0000000�0000000�00000000545�14753064456�0030021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 5a7 7 0 0 0-7 7h2a5 5 0 0 1 5-5 5 5 0 0 1 5 5h2a7 7 0 0 0-7-7m1 9.29c.88-.39 1.5-1.26 1.5-2.29A2.5 2.5 0 0 0 12 9.5 2.5 2.5 0 0 0 9.5 12c0 1 .62 1.9 1.5 2.29v3.3L7.59 21 9 22.41l3-3 3 3L16.41 21 13 17.59zM12 1A11 11 0 0 0 1 12h2a9 9 0 0 1 9-9 9 9 0 0 1 9 9h2A11 11 0 0 0 12 1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-input-component.svg������������������0000664�0000000�0000000�00000000634�14753064456�0030376�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 2a1 1 0 0 0-1-1 1 1 0 0 0-1 1v4H1v6h6V6H5zm4 14c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.41 2-1.51 2-2.82v-2H9zm-8 0c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16v-2H1zM21 6V2a1 1 0 0 0-1-1 1 1 0 0 0-1 1v4h-2v6h6V6zm-8-4a1 1 0 0 0-1-1 1 1 0 0 0-1 1v4H9v6h6V6h-2zm4 14c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.41 2-1.51 2-2.82v-2h-6z"/></svg>����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-input-hdmi.svg�����������������������0000664�0000000�0000000�00000000252�14753064456�0027311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 7V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v3H5v6l3 6v3h8v-3l3-6V7zM8 4h8v3h-2V5h-1v2h-2V5h-1v2H8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-input-scart.svg����������������������0000664�0000000�0000000�00000000303�14753064456�0027501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.6 2.2-3.3.2-3.5 2-.5-.9L2 10v7h1v2c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-2h1v-7h-1l-.2-.4 3.5-2 1.8-2.8zM15 17v2H5v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-input-svideo.svg���������������������0000664�0000000�0000000�00000001241�14753064456�0027660�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 11.5A1.5 1.5 0 0 0 6.5 10 1.5 1.5 0 0 0 5 11.5 1.5 1.5 0 0 0 6.5 13 1.5 1.5 0 0 0 8 11.5m7-5A1.5 1.5 0 0 0 13.5 5h-3A1.5 1.5 0 0 0 9 6.5 1.5 1.5 0 0 0 10.5 8h3A1.5 1.5 0 0 0 15 6.5M8.5 15A1.5 1.5 0 0 0 7 16.5 1.5 1.5 0 0 0 8.5 18a1.5 1.5 0 0 0 1.5-1.5A1.5 1.5 0 0 0 8.5 15M12 1A11 11 0 0 0 1 12a11 11 0 0 0 11 11 11 11 0 0 0 11-11A11 11 0 0 0 12 1m0 20c-4.96 0-9-4.04-9-9s4.04-9 9-9 9 4.04 9 9-4.04 9-9 9m5.5-11a1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5m-2 5a1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-marker-outline.svg�������������������0000664�0000000�0000000�00000000555�14753064456�0030177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.5 16.8c-.7 0-1.2-.6-1.2-1.2 0-.7.6-1.2 1.2-1.2s1.2.6 1.2 1.2c.1.6-.5 1.2-1.2 1.2m0-4.8C3.6 12 2 13.6 2 15.5 2 18.1 5.5 22 5.5 22S9 18.1 9 15.5C9 13.6 7.4 12 5.5 12M4 6c-.6 0-1 .4-1 1v3.6c.6-.3 1.3-.5 2-.6V8h10v8h-4c-.1.7-.2 1.4-.5 2H16c.6 0 1-.4 1-1v-3.5l4 4v-11l-4 4V7c0-.6-.4-1-1-1z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-marker.svg���������������������������0000664�0000000�0000000�00000000572�14753064456�0026521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.5 16.8c-.7 0-1.2-.6-1.2-1.2 0-.7.6-1.2 1.2-1.2s1.2.6 1.2 1.2c.1.6-.5 1.2-1.2 1.2m0-4.8C3.6 12 2 13.6 2 15.5 2 18.1 5.5 22 5.5 22S9 18.1 9 15.5C9 13.6 7.4 12 5.5 12M4 6c-.6 0-1 .4-1 1v3.6c.8-.4 1.6-.6 2.5-.6 3 0 5.5 2.5 5.5 5.5 0 .9-.2 1.7-.5 2.5H16c.6 0 1-.4 1-1v-3.5l4 4v-11l-4 4V7c0-.6-.4-1-1-1z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-minus-outline.svg��������������������0000664�0000000�0000000�00000000307�14753064456�0030044�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 8v8H5V8zm1-2H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7c0-.55-.45-1-1-1m-3 7H7v-2h6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-minus.svg����������������������������0000664�0000000�0000000�00000000264�14753064456�0026371�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 10.5V7a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-3.5l4 4v-11zM14 13H6v-2h8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-off-outline.svg����������������������0000664�0000000�0000000�00000000400�14753064456�0027455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.41 1.86 2 3.27 4.73 6H4a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h12c.21 0 .39-.08.55-.18L19.73 21l1.41-1.41-8.86-8.86zM5 16V8h1.73l8 8zm10-8v2.61l6 6V6.5l-4 4V7a1 1 0 0 0-1-1h-5.61l2 2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-off.svg������������������������������0000664�0000000�0000000�00000000330�14753064456�0026002�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.27 2 2 3.27 4.73 6H4a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h12c.2 0 .39-.08.54-.18L19.73 21 21 19.73M21 6.5l-4 4V7a1 1 0 0 0-1-1H9.82L21 17.18z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-outline.svg��������������������������0000664�0000000�0000000�00000000262�14753064456�0026713�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 8v8H5V8zm1-2H4a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-3.5l4 4v-11l-4 4V7a1 1 0 0 0-1-1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-plus-outline.svg���������������������0000664�0000000�0000000�00000000331�14753064456�0027671�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 8v8H5V8zm1-2H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7c0-.55-.45-1-1-1m-3 7h-2v2H9v-2H7v-2h2V9h2v2h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-plus.svg�����������������������������0000664�0000000�0000000�00000000306�14753064456�0026216�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 10.5V7a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-3.5l4 4v-11zM14 13h-3v3H9v-3H6v-2h3V8h2v3h3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-stabilization.svg��������������������0000664�0000000�0000000�00000000312�14753064456�0030104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2m0 2v12h16V6zm3.24.58 11.59 3.11-2.07 7.73-11.59-3.11z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-standard-definition.svg��������������0000664�0000000�0000000�00000000605�14753064456�0031163�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 14v-4c0-.3-.2-.5-.5-.5h-1v5h1c.3 0 .5-.2.5-.5m3-7v3.5l4-4v11l-4-4V17c0 .6-.4 1-1 1H4c-.6 0-1-.4-1-1V7c0-.6.4-1 1-1h12c.6 0 1 .4 1 1m-3 9c.8 0 1.5-.7 1.5-1.5v-5c0-.8-.7-1.5-1.5-1.5h-3v8zM9 8H5.5C4.67 8 4 8.67 4 9.5V11c0 .83.67 1.5 1.5 1.5h2v2H4V16h3.5c.83 0 1.5-.67 1.5-1.5v-2c0-.83-.67-1.5-1.5-1.5h-2V9.5H9z"/></svg>���������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-switch-outline.svg�������������������0000664�0000000�0000000�00000000324�14753064456�0030211�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 13h4v2l3-3-3-3v2H8V9l-3 3 3 3zm10-3.5V6c0-.6-.5-1-1-1H3c-.5 0-1 .4-1 1v12c0 .5.5 1 1 1h14c.5 0 1-.5 1-1v-3.5l4 4v-13zM16 17H4V7h12z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-switch.svg���������������������������0000664�0000000�0000000�00000000324�14753064456�0026534�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 15.5V13H7v2.5L3.5 12 7 8.5V11h6V8.5l3.5 3.5M18 9.5V6a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-3.5l4 4v-13z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-vintage.svg��������������������������0000664�0000000�0000000�00000000644�14753064456�0026675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 14.5V11a1 1 0 0 0-1-1h-1c2.24-1.61 2.76-4.73 1.15-7a5.02 5.02 0 0 0-6.98-1.13C9.5 2.35 8.96 3 8.6 3.73a4.985 4.985 0 0 0-6.88 1.64 5 5 0 0 0 1.64 6.88c.21.12.42.25.64.33V21a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-3.5l4 4v-11zM13 4a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2M6 6a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2"/></svg>��������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-wireless-outline.svg�����������������0000664�0000000�0000000�00000000511�14753064456�0030543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 12v8H5v-8zm1-2H4a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-3.5l4 4v-11l-4 4V11a1 1 0 0 0-1-1M3 3.86l1.4 1.38c3.1-3.05 8.1-3.05 11.2 0L17 3.86C13.14.05 6.87.05 3 3.86m2.8 2.77L7.2 8c1.55-1.5 4.05-1.5 5.6 0l1.4-1.37c-2.32-2.29-6.08-2.29-8.4 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video-wireless.svg�������������������������0000664�0000000�0000000�00000000472�14753064456�0027074�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 14.5V11a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-3.5l4 4v-11M3 3.86l1.4 1.38c3.1-3.05 8.1-3.05 11.2 0L17 3.86C13.14.05 6.87.05 3 3.86m2.8 2.76L7.2 8c1.55-1.5 4.05-1.5 5.6 0l1.4-1.38c-2.32-2.28-6.08-2.28-8.4 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/video.svg����������������������������������0000664�0000000�0000000�00000000246�14753064456�0025240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 10.5V7a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-3.5l4 4v-11z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-agenda-outline.svg��������������������0000664�0000000�0000000�00000000366�14753064456�0030001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 13H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1m-1 6H4v-4h16m1-12H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1m-1 6H4V5h16Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-agenda.svg����������������������������0000664�0000000�0000000�00000000333�14753064456�0026316�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 3H3c-.6 0-1 .4-1 1v6c0 .6.4 1 1 1h18c.6 0 1-.4 1-1V4c0-.6-.4-1-1-1m0 10H3c-.6 0-1 .4-1 1v6c0 .6.4 1 1 1h18c.6 0 1-.4 1-1v-6c0-.6-.4-1-1-1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-array-outline.svg���������������������0000664�0000000�0000000�00000000201�14753064456�0027664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 7v9h-5V7zm6-2h-3v13h3zm-4 0H8v13h9zM7 5H4v13h3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-array.svg�����������������������������0000664�0000000�0000000�00000000161�14753064456�0026214�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 18h9V5H8m10 0v13h3V5M4 18h3V5H4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-carousel-outline.svg������������������0000664�0000000�0000000�00000000200�14753064456�0030362�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 6h4v11H2zm5 13h10V4H7zM9 6h6v11H9zm9 0h4v11h-4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-carousel.svg��������������������������0000664�0000000�0000000�00000000162�14753064456�0026714�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 6v11h4V6M2 17h4V6H2m5 13h10V4H7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-column-outline.svg��������������������0000664�0000000�0000000�00000000200�14753064456�0030042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 5v13h17V5zm10 2v9h-3V7zM6 7h3v9H6zm13 9h-3V7h3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-column.svg����������������������������0000664�0000000�0000000�00000000162�14753064456�0026374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 5v13h5V5M4 18h5V5H4m6 13h5V5h-5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-comfy-outline.svg���������������������0000664�0000000�0000000�00000000447�14753064456�0027677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5v14h19V5zm17 4h-2.25V7H20zM9.25 11h2.25v2H9.25zm-2 2H5v-2h2.25zm4.25-4H9.25V7h2.25zm2-2h2.25v2H13.5zm-2 8v2H9.25v-2zm2 0h2.25v2H13.5zm0-2v-2h2.25v2zm4.25-2H20v2h-2.25zM7.25 7v2H5V7zM5 15h2.25v2H5zm12.75 2v-2H20v2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-comfy.svg�����������������������������0000664�0000000�0000000�00000000340�14753064456�0026212�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 9h4V5H3zm0 5h4v-4H3zm5 0h4v-4H8zm5 0h4v-4h-4zM8 9h4V5H8zm5-4v4h4V5zm5 9h4v-4h-4zM3 19h4v-4H3zm5 0h4v-4H8zm5 0h4v-4h-4zm5 0h4v-4h-4zm0-14v4h4V5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-compact-outline.svg�������������������0000664�0000000�0000000�00000000200�14753064456�0030173�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5v14h19V5zm2 2h15v4H5zm0 10v-4h4v4zm6 0v-4h9v4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-compact.svg���������������������������0000664�0000000�0000000�00000000165�14753064456�0026530�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 19h6v-7H3zm7 0h12v-7H10zM3 5v6h19V5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-dashboard-edit-outline.svg������������0000664�0000000�0000000�00000000514�14753064456�0031427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 13.1c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6 0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-1.9 1.8-6.1 6V23h2.1l6.1-6.1zM21 3h-8v6h8zm-2 4h-4V5h4zm-6 11.06V11h8v.1c-.76 0-1.43.4-1.81.79L18.07 13H15v3.07zM11 3H3v10h8zm-2 8H5V5h4zm2 9.06V15H3v6h8zM9 19H5v-2h4z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-dashboard-edit.svg��������������������0000664�0000000�0000000�00000000417�14753064456�0027754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 13.1c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6 0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-1.9 1.8-6.1 6V23h2.1l6.1-6.1zM21 9h-8V3h8zm-8 9.06V11h8v.1c-.76 0-1.43.4-1.81.79zM11 13H3V3h8zm0 8H3v-6h8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-dashboard-outline.svg�����������������0000664�0000000�0000000�00000000266�14753064456�0030510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 5v2h-4V5zM9 5v6H5V5zm10 8v6h-4v-6zM9 17v2H5v-2zM21 3h-8v6h8zM11 3H3v10h8zm10 8h-8v10h8zm-10 4H3v6h8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-dashboard-variant-outline.svg���������0000664�0000000�0000000�00000000234�14753064456�0032145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5v14h20V5zm18 7h-4V7h4zm-6-2h-4V7h4zm-4 2h4v5h-4zM4 7h4v10H4zm12 10v-3h4v3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-dashboard-variant.svg�����������������0000664�0000000�0000000�00000000211�14753064456�0030463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5v14h6V5zm7 0v5h6V5zm7 0v9h6V5zm-7 6v8h6v-8zm7 4v4h6v-4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-dashboard.svg�������������������������0000664�0000000�0000000�00000000176�14753064456�0027033�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3v6h8V3m-8 18h8V11h-8M3 21h8v-6H3m0-2h8V3H3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-day-outline.svg�����������������������0000664�0000000�0000000�00000000302�14753064456�0027325�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 18H2v2h19zm-2-8v4H4v-4zm1-2H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1m1-4H2v2h19z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-day.svg�������������������������������0000664�0000000�0000000�00000000255�14753064456�0025657�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3v3h19V3m-1 5H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h17a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1M2 21h19v-3H2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-gallery-outline.svg�������������������0000664�0000000�0000000�00000000232�14753064456�0030211�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 3v18h22V3zm20 2v9H3V5zM11 16v3H8v-3zm-8 0h3v3H3zm10 3v-3h3v3zm5 0v-3h3v3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-gallery.svg���������������������������0000664�0000000�0000000�00000000213�14753064456�0026533�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 3H2v13h19zM2 17h4v4H2zm5 0h4v4H7zm5 0h4v4h-4zm5 0h4v4h-4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-grid-compact.svg����������������������0000664�0000000�0000000�00000000746�14753064456�0027460�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5h2v2H2zm3 0h2v2H5zm3 0h2v2H8zm3 0h2v2h-2zm3 0h2v2h-2zm3 0h2v2h-2zm3 0h2v2h-2zM2 8h2v2H2zm3 0h2v2H5zm3 0h2v2H8zm3 0h2v2h-2zm3 0h2v2h-2zm3 0h2v2h-2zm3 0h2v2h-2zM2 11h2v2H2zm3 0h2v2H5zm3 0h2v2H8zm3 0h2v2h-2zm3 0h2v2h-2zm3 0h2v2h-2zm3 0h2v2h-2zM2 14h2v2H2zm3 0h2v2H5zm3 0h2v2H8zm3 0h2v2h-2zm3 0h2v2h-2zm3 0h2v2h-2zm3 0h2v2h-2zM2 17h2v2H2zm3 0h2v2H5zm3 0h2v2H8zm3 0h2v2h-2zm3 0h2v2h-2zm3 0h2v2h-2zm3 0h2v2h-2z"/></svg>��������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-grid-outline.svg����������������������0000664�0000000�0000000�00000000251�14753064456�0027500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 11h8V3H3m2 2h4v4H5m8 12h8v-8h-8m2 2h4v4h-4M3 21h8v-8H3m2 2h4v4H5m8-16v8h8V3m-2 6h-4V5h4Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-grid-plus-outline.svg�����������������0000664�0000000�0000000�00000000262�14753064456�0030463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 21h8v-8H3m2 2h4v4H5m-2-8h8V3H3m2 2h4v4H5m8-6v8h8V3m-2 6h-4V5h4m-1 11h3v2h-3v3h-2v-3h-3v-2h3v-3h2Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-grid-plus.svg�������������������������0000664�0000000�0000000�00000000224�14753064456�0027004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3v8h8V3zM3 21h8v-8H3zM3 3v8h8V3zm10 13h3v-3h2v3h3v2h-3v3h-2v-3h-3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-grid.svg������������������������������0000664�0000000�0000000�00000000175�14753064456�0026030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 11h8V3H3m0 18h8v-8H3m10 8h8v-8h-8m0-10v8h8V3"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-headline.svg��������������������������0000664�0000000�0000000�00000000177�14753064456�0026656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 5v2h17V5M4 11h17V9H4m0 10h17v-2H4m0-2h17v-2H4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-list-outline.svg����������������������0000664�0000000�0000000�00000000242�14753064456�0027526�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5v14h17V5zm4 2v2H5V7zm-2 6v-2h2v2zm0 2h2v2H5zm13 2H9v-2h9zm0-4H9v-2h9zm0-4H9V7h9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-list.svg������������������������������0000664�0000000�0000000�00000000224�14753064456�0026051�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 5v4h12V5M9 19h12v-4H9m0-1h12v-4H9M4 9h4V5H4m0 14h4v-4H4m0-1h4v-4H4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-module-outline.svg��������������������0000664�0000000�0000000�00000000264�14753064456�0030044�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 5v13h17V5zm10 2v3.5h-3V7zM6 7h3v3.5H6zm0 9v-3.5h3V16zm5 0v-3.5h3V16zm8 0h-3v-3.5h3zm-3-5.5V7h3v3.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-module.svg����������������������������0000664�0000000�0000000�00000000227�14753064456�0026366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 5v6h5V5m-11 6h5V5h-5m6 13h5v-6h-5m-6 6h5v-6h-5m-6 6h5v-6H4m0-1h5V5H4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-parallel-outline.svg������������������0000664�0000000�0000000�00000000203�14753064456�0030344�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5v18h14zm-2 16h-2V5h2zm-4 0h-2V5h2zM7 5h2v14H7z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-parallel.svg��������������������������0000664�0000000�0000000�00000000166�14753064456�0026677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3v18h-4V3zm-5 0v18h-4V3zM9 3v18H5V3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-quilt-outline.svg���������������������0000664�0000000�0000000�00000000225�14753064456�0027712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 5v13h17V5zm2 11V7h3v9zm5 0v-3.5h3V16zm8 0h-3v-3.5h3zm-8-5.5V7h8v3.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-quilt.svg�����������������������������0000664�0000000�0000000�00000000201�14753064456�0026227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 5v6h11V5m-5 13h5v-6h-5M4 18h5V5H4m6 13h5v-6h-5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-sequential-outline.svg����������������0000664�0000000�0000000�00000000201�14753064456�0030720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5v14h18V5zm16 2v2H5V7zm0 4v2H5v-2zM5 17v-2h14v2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-sequential.svg������������������������0000664�0000000�0000000�00000000162�14753064456�0027251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5h18v4H3zm0 5h18v4H3zm0 5h18v4H3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-split-horizontal.svg������������������0000664�0000000�0000000�00000000163�14753064456�0030422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5h18v2H3zm0 6V9h18v2zm0 8v-6h18v6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-split-vertical.svg��������������������0000664�0000000�0000000�00000000212�14753064456�0030035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 5h8v14h-8zM3 5h8v2H3zm0 6V9h8v2zm0 8v-2h8v2zm0-4v-2h8v2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-stream-outline.svg��������������������0000664�0000000�0000000�00000000167�14753064456�0030054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 6v12h17V6zm15 10H6v-3h13zM6 11V8h13v3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-stream.svg����������������������������0000664�0000000�0000000�00000000147�14753064456�0026375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 5v6h17V5M4 18h17v-6H4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-week-outline.svg����������������������0000664�0000000�0000000�00000000301�14753064456�0027502�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 4H3c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1M8 18H4V6h4zm6 0h-4V6h4zm6 0h-4V6h4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/view-week.svg������������������������������0000664�0000000�0000000�00000000440�14753064456�0026031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 5h-3a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1m7 0h-3a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1M6 5H3a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vimeo.svg����������������������������������0000664�0000000�0000000�00000001013�14753064456�0025242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 7.42c-.09 1.95-1.45 4.62-4.08 8.02C15.2 19 12.9 20.75 11 20.75c-1.15 0-2.14-1.08-2.95-3.25-.55-1.96-1.05-3.94-1.61-5.92-.6-2.16-1.24-3.24-1.94-3.24-.14 0-.66.32-1.56.95L2 8.07c1-.87 1.96-1.74 2.92-2.61 1.32-1.14 2.31-1.74 2.96-1.8 1.56-.16 2.52.92 2.88 3.2.39 2.47.66 4 .81 4.6.43 2.04.93 3.04 1.48 3.04.42 0 1.05-.64 1.89-1.97q1.26-1.98 1.35-3.03.18-1.71-1.35-1.71c-.48 0-.97.11-1.48.33.98-3.23 2.86-4.8 5.63-4.71 2.06.06 3.03 1.4 2.91 4.01"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/violin.svg���������������������������������0000664�0000000�0000000�00000000621�14753064456�0025427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 2a1 1 0 0 0-1 1v6a.5.5 0 0 0 .5.5H12a.5.5 0 0 1 .5.5.5.5 0 0 1-.5.5h-1.5C9.73 10.5 9 9.77 9 9V5.16C7.27 5.6 6 7.13 6 9v1.5A2.5 2.5 0 0 1 8.5 13 2.5 2.5 0 0 1 6 15.5V17c0 2.77 2.23 5 5 5h2c2.77 0 5-2.23 5-5v-1.5a2.5 2.5 0 0 1-2.5-2.5 2.5 2.5 0 0 1 2.5-2.5V9c0-2.22-1.78-4-4-4V3a1 1 0 0 0-1-1zm-.25 14.5h2.5l-.5 3.5h-1.5z"/></svg>���������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/virtual-reality.svg������������������������0000664�0000000�0000000�00000000431�14753064456�0027263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zm1 6h1.5l1 3.43L9.5 9H11l-1.75 6h-1.5zm7 0h3.5c.85 0 1.5.65 1.5 1.5v1c0 .6-.4 1.15-.9 1.4L18 15h-1.5l-.85-2H14.5v2H13zm1.5 1.5v1h2v-1z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/virus-off-outline.svg����������������������0000664�0000000�0000000�00000002505�14753064456�0027527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23 13a1.746 1.746 0 0 1-3.18 1h-1.11c-.11.38-.26.73-.43 1.08l-1.55-1.55c.16-.48.27-.99.27-1.53 0-2.76-2.24-5-5-5-.54 0-1.05.11-1.53.27L8.92 5.72c.65-.31 1.34-.53 2.08-.64v-1.4A1.746 1.746 0 0 1 12 .5a1.746 1.746 0 0 1 1 3.18v1.4c1.19.17 2.27.63 3.19 1.32l1.34-1.34c-.1-.56.06-1.13.47-1.56.35-.33.8-.5 1.25-.5s.9.17 1.25.5c.67.7.67 1.81 0 2.5-.35.33-.8.5-1.25.5-.1 0-.2 0-.31-.03L17.6 7.81A6.86 6.86 0 0 1 19 12h.82A1.746 1.746 0 0 1 23 13m-.89 8.46-1.27 1.27-.74-.73c-.4-.05-.79-.21-1.1-.5-.3-.31-.46-.7-.5-1.1l-2.6-2.61c-.33.21-.68.44-1.05.6.36.29.61.73.65 1.23.07.96-.65 1.8-1.62 1.88h-.13c-.91 0-1.67-.7-1.75-1.62 0-.32.05-.62.18-.88H12c-.93 0-1.81-.18-2.62-.5l-1.07 1.97c.25.49.26 1.09-.02 1.61a1.75 1.75 0 0 1-2.37.71 1.75 1.75 0 0 1-.71-2.37c.29-.53.79-.84 1.34-.92l1.1-2c-.7-.58-1.3-1.28-1.75-2.07l-1.51.41c-.18.52-.61.94-1.18 1.1-.16.06-.31.06-.46.06-.75 0-1.48-.5-1.69-1.29-.251-.94.3-1.9 1.23-2.15.15-.06.31-.06.46-.06.41 0 .81.15 1.12.41l1.31-.35A7.2 7.2 0 0 1 5 12c-.36-.08-.71-.23-1-.5-.67-.7-.67-1.8 0-2.5.35-.33.8-.5 1.25-.5.21 0 .42.04.62.12.1-.18.22-.35.33-.53L1.11 3l1.28-1.27zm-7.66-5.12L7.66 9.55C7.25 10.28 7 11.11 7 12c0 2.76 2.24 5 5 5 .9 0 1.73-.25 2.45-.66M7.19 2.75C6.84 2.26 6.3 2 5.75 2c-.16 0-.32.03-.48.07l2.15 2.15c.14-.49.08-1.03-.23-1.47"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/virus-off.svg������������������������������0000664�0000000�0000000�00000002027�14753064456�0026051�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.42 4.22 5.28 2.08c.69-.2 1.47.04 1.91.67.31.44.37.98.23 1.47m13.83 7.03c-.59 0-1.12.3-1.43.75H19c0-1.57-.5-3-1.4-4.19l1.34-1.34c.56.1 1.13-.06 1.56-.47.67-.69.67-1.8 0-2.5-.69-.67-1.8-.67-2.5 0-.41.43-.57 1-.47 1.56L16.19 6.4c-.92-.69-2-1.15-3.19-1.32v-1.4A1.746 1.746 0 0 0 12 .5a1.746 1.746 0 0 0-1 3.18v1.4c-.74.11-1.43.33-2.08.64l9.36 9.36c.17-.35.32-.7.43-1.08h1.11A1.746 1.746 0 0 0 23 13c0-.97-.78-1.75-1.75-1.75m.86 10.21-1.27 1.27-.74-.73c-.4-.04-.79-.2-1.1-.5-.3-.31-.46-.7-.5-1.1l-2.6-2.61c-.33.21-.68.44-1.05.6.36.29.61.73.65 1.23.07.96-.66 1.81-1.62 1.88s-1.8-.65-1.88-1.62c0-.32.05-.62.18-.88H12c-.93 0-1.81-.18-2.62-.5l-1.07 1.97c.25.49.26 1.09-.02 1.61a1.749 1.749 0 1 1-3.08-1.66c.29-.53.79-.84 1.34-.92l1.1-2c-.7-.58-1.3-1.28-1.75-2.07l-1.51.41c-.18.52-.61.94-1.18 1.1a1.75 1.75 0 1 1-.92-3.38c.58-.15 1.16 0 1.58.35l1.31-.35A7.2 7.2 0 0 1 5 12c-.36-.07-.71-.23-1-.5-.67-.7-.67-1.8 0-2.5.5-.5 1.25-.62 1.87-.38.1-.18.22-.35.33-.53L1.11 3l1.28-1.27z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/virus-outline.svg��������������������������0000664�0000000�0000000�00000002626�14753064456�0026763�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .5a1.746 1.746 0 0 0-1 3.18v1.4c-.9.13-1.74.42-2.5.86L7.39 4.35c.19-.52.14-1.12-.2-1.6C6.84 2.26 6.3 2 5.75 2c-.35 0-.7.1-1 .32-.79.55-.99 1.64-.43 2.43.34.49.88.75 1.43.75l1.18 1.68c-.43.43-.77.91-1.06 1.44-.2-.08-.41-.12-.62-.12-.45 0-.9.17-1.25.5-.67.7-.67 1.8 0 2.5.29.27.64.42 1 .5 0 .54.07 1.06.18 1.56l-1.31.35c-.31-.26-.71-.41-1.12-.41-.15 0-.31 0-.46.06a1.75 1.75 0 0 0-1.23 2.15C1.27 16.5 2 17 2.75 17c.15 0 .3 0 .46-.06.57-.16 1-.58 1.18-1.1l1.51-.41c.45.79 1.05 1.49 1.75 2.07l-1.1 2c-.55.08-1.05.39-1.34.92a1.749 1.749 0 1 0 3.08 1.66c.28-.52.27-1.12.02-1.61l1.07-1.97c.81.32 1.69.5 2.62.5h.18c-.13.26-.18.56-.18.88.08.92.84 1.62 1.75 1.62h.13c.97-.08 1.69-.92 1.62-1.88-.04-.5-.29-.94-.65-1.23.47-.21.92-.48 1.34-.79l2.34 2.34c-.1.56.06 1.13.47 1.56.35.33.8.5 1.25.5s.9-.17 1.25-.5c.67-.7.67-1.8 0-2.5-.35-.33-.8-.5-1.25-.5-.1 0-.2 0-.31.03l-2.34-2.34c.49-.65.87-1.39 1.11-2.19h1.11A1.746 1.746 0 0 0 23 13a1.746 1.746 0 0 0-3.18-1H19c0-1.57-.5-3-1.4-4.19l1.34-1.34c.11.03.21.03.31.03.45 0 .9-.17 1.25-.5.67-.69.67-1.8 0-2.5-.35-.33-.8-.5-1.25-.5s-.9.17-1.25.5c-.41.43-.57 1-.47 1.56L16.19 6.4c-.92-.69-2-1.15-3.19-1.32v-1.4A1.746 1.746 0 0 0 12 .5M12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5m-1.5-8C9.67 9 9 9.67 9 10.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5S11.33 9 10.5 9m3.5 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/virus.svg����������������������������������0000664�0000000�0000000�00000002254�14753064456�0025303�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.82 14A1.746 1.746 0 0 0 23 13a1.746 1.746 0 0 0-3.18-1H19c0-1.57-.5-3-1.4-4.19l1.34-1.34c.56.1 1.13-.06 1.56-.47.67-.69.67-1.8 0-2.5-.69-.67-1.8-.67-2.5 0-.41.43-.57 1-.47 1.56L16.19 6.4c-.92-.69-2-1.15-3.19-1.32v-1.4A1.746 1.746 0 0 0 12 .5a1.746 1.746 0 0 0-1 3.18v1.4c-.9.13-1.74.42-2.5.86L7.39 4.35c.19-.52.14-1.12-.2-1.6a1.75 1.75 0 0 0-2.44-.43c-.79.55-.99 1.64-.43 2.43.34.49.88.75 1.43.75l1.18 1.68c-.43.43-.77.91-1.06 1.44A1.76 1.76 0 0 0 4 9c-.67.7-.67 1.8 0 2.5.29.27.64.43 1 .5 0 .54.07 1.06.18 1.56l-1.31.35c-.42-.35-1-.5-1.58-.35a1.75 1.75 0 1 0 .92 3.38c.57-.16 1-.58 1.18-1.1l1.51-.41c.45.79 1.05 1.49 1.75 2.07l-1.1 2c-.55.08-1.05.39-1.34.92a1.749 1.749 0 1 0 3.08 1.66c.28-.52.27-1.12.02-1.61l1.07-1.97c.81.32 1.69.5 2.62.5h.18c-.13.26-.18.56-.18.88.08.97.92 1.69 1.88 1.62s1.69-.92 1.62-1.88c-.04-.5-.29-.94-.65-1.23.47-.21.92-.48 1.34-.79l2.34 2.34c-.1.56.06 1.13.47 1.56.7.67 1.8.67 2.5 0s.67-1.8 0-2.5c-.43-.41-1-.57-1.56-.47l-2.34-2.34c.49-.65.87-1.39 1.11-2.19zm-9.32-2c-.83 0-1.5-.67-1.5-1.5S9.67 9 10.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5m3.5 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vlc.svg������������������������������������0000664�0000000�0000000�00000001034�14753064456�0024712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1c-.42 0-.81.23-1 .75L9.88 4.88c.48.52 1.4.62 2.12.62s1.64-.1 2.13-.62L13 1.75c-.18-.5-.58-.75-1-.75M8.44 8.91l-1.44 4c1.07 1.36 3.26 1.59 5 1.59s3.93-.23 5-1.59l-1.44-4C14.76 9.83 13.24 10 12 10s-2.76-.17-3.56-1.09m-3 6.09c-.82 0-1.68.65-1.91 1.44l-1.47 5.12c-.22.79.24 1.44 1.07 1.44h17.75c.82 0 1.28-.65 1.06-1.44l-1.47-5.12c-.23-.79-1.09-1.44-1.91-1.44h-.81l.34.97c.12.32.2.72 0 1C16.84 18.7 14.14 19 12 19s-4.84-.3-6.09-2.03c-.2-.28-.12-.68 0-1l.34-.97z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/voicemail.svg������������������������������0000664�0000000�0000000�00000000705�14753064456�0026102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 15a3.5 3.5 0 0 1-3.5-3.5A3.5 3.5 0 0 1 18.5 8a3.5 3.5 0 0 1 3.5 3.5 3.5 3.5 0 0 1-3.5 3.5m-13 0A3.5 3.5 0 0 1 2 11.5 3.5 3.5 0 0 1 5.5 8 3.5 3.5 0 0 1 9 11.5 3.5 3.5 0 0 1 5.5 15m13-9a5.5 5.5 0 0 0-5.5 5.5c0 1.33.47 2.55 1.26 3.5H9.74c.79-.95 1.26-2.17 1.26-3.5A5.5 5.5 0 0 0 5.5 6 5.5 5.5 0 0 0 0 11.5 5.5 5.5 0 0 0 5.5 17h13a5.5 5.5 0 0 0 5.5-5.5A5.5 5.5 0 0 0 18.5 6"/></svg>�����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/volcano-outline.svg������������������������0000664�0000000�0000000�00000000365�14753064456�0027252�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 8h-7l-2 5H6l-4 9h20zM7.3 15h3.05l.5-1.26 1.5-3.74h4.15l2.85 10H5.08zM13 1h2v4h-2zm3.12 4.47 2.83-2.83 1.41 1.41-2.82 2.83zM7.64 4.05l1.41-1.41 2.83 2.82-1.41 1.42z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/volcano.svg��������������������������������0000664�0000000�0000000�00000000305�14753064456�0025567�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 8h-7l-2 5H6l-4 9h20zm-5-7h2v4h-2zm3.12 4.47 2.83-2.83 1.41 1.41-2.82 2.83zM7.64 4.05l1.41-1.41 2.83 2.82-1.41 1.42z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/volleyball.svg�����������������������������0000664�0000000�0000000�00000000666�14753064456�0026305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.04 4.85C17.34 3.2 15.33 2.25 13 2v3.62l9 5.18c-.28-2.3-1.27-4.3-2.96-5.95M12 22c3.44 0 6.16-1.38 8.17-4.14L17.06 16l-8.99 5.2c1.25.53 2.57.8 3.93.8m1-10.59 8.15 4.66c.44-.94.73-1.93.85-2.96l-9-5.18zm-9.12 6.4c.66.91 1.38 1.65 2.17 2.19l8.99-5.1L12 13.15zM11.04 2C10 2.09 9 2.36 8 2.8v10.35l3.04-1.74zM2 12c0 1.39.3 2.77.89 4.12L6 14.28V4c-2.67 2-4 4.65-4 8"/></svg>��������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/volume-equal.svg���������������������������0000664�0000000�0000000�00000000173�14753064456�0026545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 9h4l5-5v16l-5-5H3zm11 4h8v2h-8m0-6h8v2h-8Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/volume-high.svg����������������������������0000664�0000000�0000000�00000000366�14753064456�0026361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.84-5 6.7v2.07c4-.91 7-4.49 7-8.77s-3-7.86-7-8.77M16.5 12c0-1.77-1-3.29-2.5-4.03V16c1.5-.71 2.5-2.24 2.5-4M3 9v6h4l5 5V4L7 9z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/volume-low.svg�����������������������������0000664�0000000�0000000�00000000142�14753064456�0026233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 9v6h4l5 5V4l-5 5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/volume-medium.svg��������������������������0000664�0000000�0000000�00000000227�14753064456�0026716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 9v6h4l5 5V4L9 9m9.5 3c0-1.77-1-3.29-2.5-4.03V16c1.5-.71 2.5-2.24 2.5-4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/volume-minus.svg���������������������������0000664�0000000�0000000�00000000160�14753064456�0026565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 9h4l5-5v16l-5-5H3zm11 2h8v2h-8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/volume-mute.svg����������������������������0000664�0000000�0000000�00000000313�14753064456�0026404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 9h4l5-5v16l-5-5H3zm13.59 3L14 9.41 15.41 8 18 10.59 20.59 8 22 9.41 19.41 12 22 14.59 20.59 16 18 13.41 15.41 16 14 14.59z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/volume-off.svg�����������������������������0000664�0000000�0000000�00000000623�14753064456�0026210�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4 9.91 6.09 12 8.18M4.27 3 3 4.27 7.73 9H3v6h4l5 5v-6.73l4.25 4.26c-.67.51-1.42.93-2.25 1.17v2.07c1.38-.32 2.63-.95 3.68-1.81L19.73 21 21 19.73l-9-9M19 12c0 .94-.2 1.82-.54 2.64l1.51 1.51A8.9 8.9 0 0 0 21 12c0-4.28-3-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71m-2.5 0c0-1.77-1-3.29-2.5-4.03v2.21l2.45 2.45c.05-.2.05-.42.05-.63"/></svg>�������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/volume-plus.svg����������������������������0000664�0000000�0000000�00000000203�14753064456�0026413�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 9h4l5-5v16l-5-5H3zm11 2h3V8h2v3h3v2h-3v3h-2v-3h-3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/volume-source.svg��������������������������0000664�0000000�0000000�00000000172�14753064456�0026735�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 9v6h4l5 5V4L7 9zm13 6h-2V9h2zm4 4h-2V5h2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/volume-variant-off.svg���������������������0000664�0000000�0000000�00000000251�14753064456�0027647�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5.64 3.64 15.72 15.72-1.41 1.42L16 16.83V20l-5-5H7V9h1.17L4.22 5.05zM16 4v7.17l-3.59-3.59z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/volume-vibrate.svg�������������������������0000664�0000000�0000000�00000000315�14753064456�0027070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 9v6h4l5 5V4L8 9zm12.55-6.53L15.5 3.53 17.93 6 15 9l2.93 3L15 15l2.93 3-2.43 2.47 1.05 1.06L20 18l-2.93-3L20 12l-2.93-3L20 6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vote-outline.svg���������������������������0000664�0000000�0000000�00000000537�14753064456�0026567�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18 13 3 3v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4l3-3h.83l2 2H6.78L5 17h14l-1.77-2h-1.91l2-2zm1 7v-1H5v1zm-7.66-5-4.95-4.93a.996.996 0 0 1 0-1.41l6.37-6.37a.975.975 0 0 1 1.4.01l4.95 4.95c.39.39.39 1.02 0 1.41L12.75 15a.96.96 0 0 1-1.41 0m2.12-10.59L8.5 9.36l3.55 3.54L17 7.95z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vote.svg�����������������������������������0000664�0000000�0000000�00000000531�14753064456�0025104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 13h-.68l-2 2h1.91L19 17H5l1.78-2h2.05l-2-2H6l-3 3v4a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-4zm-1-5.05-4.95 4.95L8.5 9.36l4.96-4.95zm-4.24-5.66L6.39 8.66a.996.996 0 0 0 0 1.41L11.34 15c.39.41 1.02.41 1.41 0l6.36-6.34a.996.996 0 0 0 0-1.41L14.16 2.3a.975.975 0 0 0-1.4-.01"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vpn.svg������������������������������������0000664�0000000�0000000�00000001152�14753064456�0024732�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 5h6l-3 3zm1.5 9.66c-.3.34-.5.84-.5 1.34a2 2 0 0 0 2 2 2 2 0 0 0 2-2c0-.55-.22-1.05-.59-1.41l1.42-1.42C15.55 13.9 16 14.9 16 16a4 4 0 0 1-4 4 4 4 0 0 1-4-4c0-1.07.42-2.04 1.1-2.75l-.01-.01 7.08-7.07A4 4 0 0 1 19 5a4 4 0 0 1 4 4 4 4 0 0 1-4 4c-1.1 0-2.1-.45-2.83-1.17l1.42-1.42c.36.37.86.59 1.41.59a2 2 0 0 0 2-2 2 2 0 0 0-2-2c-.55 0-1.05.22-1.41.59zM6.41 7.59C6.05 7.22 5.55 7 5 7a2 2 0 0 0-2 2 2 2 0 0 0 2 2c.55 0 1.05-.22 1.41-.59l1.42 1.42C7.1 12.55 6.1 13 5 13a4 4 0 0 1-4-4 4 4 0 0 1 4-4c1.11 0 2.11.45 2.83 1.17l2.76 2.76-1.42 1.42z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vuejs.svg����������������������������������0000664�0000000�0000000�00000000220�14753064456�0025256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3h3.5L12 15l6.5-12H22L12 21zm4.5 0h3L12 7.58 14.5 3h3L12 13.08z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/vuetify.svg��������������������������������0000664�0000000�0000000�00000000224�14753064456�0025621�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 11.64 7.92 2h8.16zm0 10.31L3.27 4.91h4.57L12 14.47l4.16-9.56h4.57z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/walk.svg�����������������������������������0000664�0000000�0000000�00000000454�14753064456�0025071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.12 10H19V8.2h-3.62l-2-3.33c-.3-.5-.84-.84-1.46-.84-.18 0-.34.03-.5.08L6 5.8V11h1.8V7.33l2.11-.66L6 22h1.8l2.87-8.11L13 17v5h1.8v-6.41l-2.49-4.54.73-2.87M14 3.8c1 0 1.8-.8 1.8-1.8S15 .2 14 .2 12.2 1 12.2 2 13 3.8 14 3.8"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wall-fire.svg������������������������������0000664�0000000�0000000�00000001403�14753064456�0026010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.14 15.34-.02.01c.23.28.43.59.58.92l.09.19c.71 1.69.21 3.64-1.1 4.86-1.19 1.09-2.85 1.38-4.39 1.18-1.46-.18-2.8-1.1-3.57-2.37-.23-.39-.43-.83-.53-1.28-.13-.35-.17-.73-.2-1.1-.09-1.6.55-3.3 1.76-4.3-.55 1.21-.42 2.72.39 3.77l.11.13c.14.12.31.15.47.09.15-.06.27-.21.27-.37l-.07-.24c-.88-2.33-.14-5.03 1.73-6.56.51-.42 1.14-.8 1.8-.97-.68 1.36-.46 3.14.63 4.2.46.5 1.02.79 1.49 1.23zM19.86 20l-.01-.03c.45-.39.7-1.06.68-1.66L20.5 18c-.2-1-1.07-1.34-1.63-2.07l-.43-.78c-.22.5-.24.97-.15 1.51.1.57.32 1.06.21 1.65-.16.65-.67 1.3-1.56 1.51.5.49 1.31.88 2.12.6.26-.07.59-.26.8-.42M3 16h8.06L11 17c0 1.41.36 2.73 1 3.88V21H3zm-1-6h6v5H2zm7 0h6v.07A8.03 8.03 0 0 0 11.25 15H9zM3 4h8v5H3zm9 0h9v5h-9z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wall-sconce-flat-outline.svg���������������0000664�0000000�0000000�00000000306�14753064456�0030737�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 5v6h14V5zm12 4H7V7h10zM5.27 13.32 3.5 15.09l1.41 1.41 1.77-1.77zm13.46 0-1.41 1.41 1.77 1.77 1.41-1.41zM11 16v3h2v-3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wall-sconce-flat-variant-outline.svg�������0000664�0000000�0000000�00000000306�14753064456�0032401�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 13v6h14v-6zm12 4H7v-2h10zm1.73-6.32 1.77-1.77-1.41-1.41-1.77 1.77zm-13.46 0 1.41-1.41L4.91 7.5 3.5 8.91zM13 8V5h-2v3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wall-sconce-flat-variant.svg���������������0000664�0000000�0000000�00000000270�14753064456�0030724�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19v-6H5v6zm-.27-8.32 1.77-1.77-1.41-1.41-1.77 1.77zm-13.46 0 1.41-1.41L4.91 7.5 3.5 8.91zM13 8V5h-2v3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wall-sconce-flat.svg�����������������������0000664�0000000�0000000�00000000267�14753064456�0027270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 5v6h14V5zm.27 8.32L3.5 15.09l1.41 1.41 1.77-1.77zm13.46 0-1.41 1.41 1.77 1.77 1.41-1.41zM11 16v3h2v-3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wall-sconce-outline.svg��������������������0000664�0000000�0000000�00000000227�14753064456�0030015�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.7 6 2.22 5h-5.84l2.22-5zM15 4h-4l-4 9h12zM4 14v8h2v-3h8v-5h-2v3H6v-3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wall-sconce-round-outline.svg��������������0000664�0000000�0000000�00000000562�14753064456�0031144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19v-3h-2v3zm6.09-2.5 1.41-1.41-1.77-1.77-1.41 1.41zm-14.18 0 1.77-1.77-1.41-1.41-1.77 1.77zM12 6c1.04 0 2.08.28 3 .81 1.26.69 2.19 1.86 2.66 3.19H6.34C6.81 8.67 7.74 7.5 9 6.81A6.03 6.03 0 0 1 12 6m0-2c-1.37 0-2.75.36-4 1.07C5.5 6.5 4 9.14 4 12h16c0-2.86-1.5-5.5-4-6.93A8.1 8.1 0 0 0 12 4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wall-sconce-round-variant-outline.svg������0000664�0000000�0000000�00000000546�14753064456�0032610�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 5v3h2V5zM4.91 7.5 3.5 8.91l1.77 1.77 1.41-1.41zm14.18 0-1.77 1.77 1.41 1.41 1.77-1.77zM17.66 14c-.47 1.33-1.4 2.5-2.66 3.19-.92.53-1.96.81-3 .81s-2.08-.28-3-.81C7.74 16.5 6.81 15.33 6.34 14zM20 12H4c0 2.86 1.5 5.5 4 6.93A8 8 0 0 0 12 20a8 8 0 0 0 4-1.07c2.5-1.43 4-4.07 4-6.93"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wall-sconce-round-variant.svg��������������0000664�0000000�0000000�00000000337�14753064456�0031131�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 5v3h2V5zM4.91 7.5 3.5 8.91l1.77 1.77 1.41-1.41zm14.18 0-1.77 1.77 1.41 1.41 1.77-1.77zM4 12c0 2.86 1.5 5.5 4 6.93s5.5 1.43 8 0 4-4.07 4-6.93z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wall-sconce-round.svg����������������������0000664�0000000�0000000�00000000344�14753064456�0027465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19v-3h-2v3zm6.09-2.5 1.41-1.41-1.77-1.77-1.41 1.41zm-14.18 0 1.77-1.77-1.41-1.41-1.77 1.77zM20 12c0-2.86-1.5-5.5-4-6.93s-5.5-1.43-8 0S4 9.14 4 12z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wall-sconce.svg����������������������������0000664�0000000�0000000�00000000174�14753064456�0026341�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11 4-4 9h12l-4-9zM4 14v8h2v-3h8v-5h-2v3H6v-3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wall.svg�����������������������������������0000664�0000000�0000000�00000000241�14753064456�0025064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 16h9v5H3zm-1-6h6v5H2zm7 0h6v5H9zm7 0h6v5h-6zm-3 6h8v5h-8zM3 4h8v5H3zm9 0h9v5h-9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wallet-bifold-outline.svg������������������0000664�0000000�0000000�00000000526�14753064456�0030335�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 15.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5M7 3h10a2 2 0 0 1 2 2v2a2 2 0 0 1 2 2v10c0 1.11-.89 2-2 2H7c-2.21 0-4-1.79-4-4V7c0-2.21 1.79-4 4-4m10 4V5H7c-1.1 0-2 .9-2 2v.54A4 4 0 0 1 7 7zM5 17a2 2 0 0 0 2 2h12V9H7c-1.1 0-2 .9-2 2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wallet-bifold.svg��������������������������0000664�0000000�0000000�00000000453�14753064456�0026657�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 3H7C4.79 3 3 4.79 3 7v10c0 2.21 1.79 4 4 4h12c1.11 0 2-.89 2-2V9a2 2 0 0 0-2-2V5a2 2 0 0 0-2-2m0 2v2H7c-.73 0-1.41.2-2 .54V7c0-1.1.9-2 2-2m8.5 10.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wallet-giftcard.svg������������������������0000664�0000000�0000000�00000000773�14753064456�0027210�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 14H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20m0 11H4v-2h16M9 4a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m6 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m5 2h-2.18c.11-.31.18-.65.18-1a3 3 0 0 0-3-3c-1.05 0-1.96.54-2.5 1.35L12 4l-.5-.66C10.96 2.54 10.05 2 9 2a3 3 0 0 0-3 3c0 .35.07.69.18 1H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2"/></svg>�����mkdocs-material-9.6.4/material/templates/.icons/material/wallet-membership.svg����������������������0000664�0000000�0000000�00000000311�14753064456�0027544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 10H4V4h16m0 11H4v-2h16m0-11H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h4v5l4-2 4 2v-5h4c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wallet-outline.svg�������������������������0000664�0000000�0000000�00000000527�14753064456�0027101�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-2.28A2 2 0 0 0 22 15V9a2 2 0 0 0-1-1.72V5a2 2 0 0 0-2-2zm0 2h14v2h-6a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h6v2H5zm8 4h7v6h-7zm3 1.5a1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wallet-plus-outline.svg��������������������0000664�0000000�0000000�00000000550�14753064456�0030056�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 0v3H0v2h3v3h2V5h3V3H5V0zm7 3v2h9v2h-6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h6v2H5v-9H3v9a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2v-2.28A2 2 0 0 0 22 15V9a2 2 0 0 0-1-1.72V5c0-1.1-.9-2-2-2zm3 6h7v6h-7zm3 1.5a1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wallet-plus.svg����������������������������0000664�0000000�0000000�00000000450�14753064456�0026400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 0v3H0v2h3v3h2V5h3V3H5V0zm6 3v3H6v3H3v10a2 2 0 0 0 2 2h14c1.11 0 2-.89 2-2v-1h-9a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h9V5a2 2 0 0 0-2-2zm3 5v8h10V8zm4 2.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wallet-travel.svg��������������������������0000664�0000000�0000000�00000000400�14753064456�0026705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 14H4V8h3v2h2V8h6v2h2V8h3m0 11H4v-2h16M9 4h6v2H9m11 0h-3V4c0-1.11-.89-2-2-2H9c-1.11 0-2 .89-2 2v2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wallet.svg���������������������������������0000664�0000000�0000000�00000000442�14753064456�0025420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 18v1a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v1h-9a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2m0-2h10V8H12m4 5.5a1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5 1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wallpaper.svg������������������������������0000664�0000000�0000000�00000000501�14753064456�0026113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4h7V2H4a2 2 0 0 0-2 2v7h2zm6 9-4 5h12l-3-4-2.03 2.71zm7-4.5A1.5 1.5 0 0 0 15.5 7 1.5 1.5 0 0 0 14 8.5a1.5 1.5 0 0 0 1.5 1.5A1.5 1.5 0 0 0 17 8.5M20 2h-7v2h7v7h2V4a2 2 0 0 0-2-2m0 18h-7v2h7a2 2 0 0 0 2-2v-7h-2zM4 13H2v7a2 2 0 0 0 2 2h7v-2H4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wan.svg������������������������������������0000664�0000000�0000000�00000001500�14753064456�0024711�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a8 8 0 0 0-8 8c0 4.03 3 7.42 7 7.93V19h-1a1 1 0 0 0-1 1H2v2h7a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1h7v-2h-7a1 1 0 0 0-1-1h-1v-1.07c4-.5 7-3.9 7-7.93a8 8 0 0 0-8-8m0 2s.74 1.28 1.26 3h-2.52C11.26 5.28 12 4 12 4m-2.23.43c-.27.5-.68 1.41-1.03 2.57H6.81C7.5 5.84 8.5 4.93 9.77 4.43m4.46.01c1.27.5 2.27 1.4 2.96 2.56h-1.93c-.35-1.16-.76-2.07-1.03-2.56M6.09 9h2.23c-.04.33-.07.66-.07 1s.03.67.07 1H6.09a5.6 5.6 0 0 1 0-2m4.23 0h3.36c.04.33.07.66.07 1s-.03.67-.07 1h-3.36c-.04-.33-.07-.66-.07-1s.03-.67.07-1m5.36 0h2.23a5.6 5.6 0 0 1 0 2h-2.23c.04-.33.07-.66.07-1s-.03-.67-.07-1m-8.87 4h1.93c.35 1.16.76 2.07 1.03 2.56-1.27-.5-2.27-1.4-2.96-2.56m3.93 0h2.52c-.52 1.72-1.26 3-1.26 3s-.74-1.28-1.26-3m4.52 0h1.93c-.69 1.16-1.69 2.07-2.96 2.57.27-.5.68-1.41 1.03-2.57"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wardrobe-outline.svg�����������������������0000664�0000000�0000000�00000000327�14753064456�0027414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2a2 2 0 0 0-2 2v15c0 1.11.89 2 2 2v1h2v-1h8v1h2v-1c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2zm0 2h5v15H6zm7 0h5v15h-5zm-5 6v3h2v-3zm6 0v3h2v-3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wardrobe.svg�������������������������������0000664�0000000�0000000�00000000323�14753064456�0025733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4v15c0 1.1.9 2 2 2v1h2v-1h3.5V2H6c-1.1 0-2 .9-2 2m4 6h2v3H8zm10-8h-5.5v19H16v1h2v-1c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-2 11h-2v-3h2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/warehouse.svg������������������������������0000664�0000000�0000000�00000000311�14753064456�0026125�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 19h2v2H6zm6-16L2 8v13h2v-8h16v8h2V8zm-4 8H4V9h4zm6 0h-4V9h4zm6 0h-4V9h4zM6 15h2v2H6zm4 0h2v2h-2zm0 4h2v2h-2zm4 0h2v2h-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/washing-machine-alert.svg������������������0000664�0000000�0000000�00000000606�14753064456�0030301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.83 11.17c1.56 1.56 1.56 4.1 0 5.66s-4.1 1.56-5.66 0zM4 2h12a2 2 0 0 1 2 2v16c0 1.11-.89 2-2 2H4a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2m1 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m3 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m2 4c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6m10 7h2v2h-2zm0-8h2v6h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/washing-machine-off.svg��������������������0000664�0000000�0000000�00000000742�14753064456�0027745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3 4 5.89V20c0 1.11.89 2 2 2h12c.58 0 1.1-.25 1.46-.65l1.38 1.38zM12 20c-3.31 0-6-2.69-6-6 0-1.68.7-3.2 1.82-4.29l4.24 4.24-2.89 2.88a4.01 4.01 0 0 0 5.66 0c.02-.02.03-.04.05-.06l1.41 1.41A5.96 5.96 0 0 1 12 20m-.75-11.95C11.5 8 11.75 8 12 8c3.31 0 6 2.69 6 6 0 .25 0 .5-.05.75L20 16.8V4a2 2 0 0 0-2-2H6c-.24 0-.46.05-.67.13zM10 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1"/></svg>������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/washing-machine.svg������������������������0000664�0000000�0000000�00000000603�14753064456�0027171�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.83 11.17a4.01 4.01 0 0 1 0 5.66 4.01 4.01 0 0 1-5.66 0zM6 2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m1 2a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m3 0a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m2 4a6 6 0 0 0-6 6 6 6 0 0 0 6 6 6 6 0 0 0 6-6 6 6 0 0 0-6-6"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/watch-export-variant.svg�������������������0000664�0000000�0000000�00000000434�14753064456�0030220�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 11h5l-2.5-2.5 1.42-1.42L22.84 12l-4.92 4.92-1.42-1.42L19 13h-5zM8 0h8l.83 5H17c.28 0 .54.06.78.16L15.94 7H7v10h8.94l1.84 1.84c-.24.1-.5.16-.78.16h-.17L16 24H8l-.83-5H7a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h.17z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/watch-export.svg���������������������������0000664�0000000�0000000�00000000522�14753064456�0026554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 11h5l-2.5-2.5 1.42-1.42L22.84 12l-4.92 4.92-1.42-1.42L19 13h-5zm-2 7a6 6 0 0 1-6-6 6 6 0 0 1 6-6c1.4 0 2.69.5 3.71 1.29l1.42-1.42-.18-.14L16 0H8l-.95 5.73A7.96 7.96 0 0 0 4 12a7.94 7.94 0 0 0 3.05 6.27L8 24h8l.95-5.73.18-.14-1.42-1.42A6.07 6.07 0 0 1 12 18"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/watch-import-variant.svg�������������������0000664�0000000�0000000�00000000430�14753064456�0030205�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 11h5L3.5 8.5l1.42-1.42L9.84 12l-4.92 4.92L3.5 15.5 6 13H1zM8 0h8l.83 5H17a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-.17L16 24H8l-.83-5H7c-.54 0-1-.21-1.38-.56L7.06 17H17V7H7.06L5.62 5.56C6 5.21 6.46 5 7 5h.17z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/watch-import.svg���������������������������0000664�0000000�0000000�00000000523�14753064456�0026546�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 11h5L4.5 8.5l1.42-1.42L10.84 12l-4.92 4.92L4.5 15.5 7 13H2zm10 7a6 6 0 0 0 6-6 6 6 0 0 0-6-6c-1.4 0-2.69.5-3.71 1.29L6.87 5.87l.18-.14L8 0h8l.95 5.73A7.94 7.94 0 0 1 20 12c0 2.54-1.19 4.81-3.05 6.27L16 24H8l-.95-5.73-.18-.14 1.42-1.42C9.31 17.5 10.6 18 12 18"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/watch-variant.svg��������������������������0000664�0000000�0000000�00000000303�14753064456�0026674�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8 0-.83 5H7a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h.17L8 24h8l.83-5H17a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-.17L16 0zM7 7h10v10H7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/watch-vibrate-off.svg����������������������0000664�0000000�0000000�00000001007�14753064456�0027436�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 9h2v6H0zm12-1.5c2.47 0 4.47 2.03 4.46 4.5-.01.38-.06.76-.16 1.13l1.2 1.18c.31-.73.5-1.51.5-2.31 0-1.83-.84-3.56-2.28-4.69L15 3H9l-.41 2.39 2.27 2.27c.37-.11.75-.16 1.14-.16m9 9.5V7h-2v8.8l1.2 1.2zm-4.5-1.14 5.61 5.6-1.27 1.27-5.29-5.29L15 21H9l-.73-4.28c-2.42-1.9-3-5.32-1.36-7.92L1.11 3l1.28-1.27 5.7 5.71L9.17 8.5l6.27 6.29zm-2.45.08-6-6c-.35.63-.55 1.34-.55 2.06 0 2.47 2.03 4.47 4.5 4.46.72 0 1.42-.18 2.05-.52M22 9v6h2V9zM3 17h2V7H3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/watch-vibrate.svg��������������������������0000664�0000000�0000000�00000000601�14753064456�0026665�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 17V7h2v10zm16 0V7h2v10zm3-8h2v6h-2zM0 15V9h2v6zm17.96-3.03c0 1.9-.89 3.6-2.28 4.7l-.71 4.28H9l-.73-4.28A5.98 5.98 0 0 1 6 11.97c0-1.9.88-3.6 2.27-4.69L9 3h5.97l.71 4.28a5.95 5.95 0 0 1 2.28 4.69m-10.46 0c0 2.48 2 4.49 4.47 4.49a4.5 4.5 0 0 0 4.49-4.49c0-2.47-2.01-4.47-4.49-4.47a4.47 4.47 0 0 0-4.47 4.47"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/watch.svg����������������������������������0000664�0000000�0000000�00000000421�14753064456�0025233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 12a6 6 0 0 1 6-6 6 6 0 0 1 6 6 6 6 0 0 1-6 6 6 6 0 0 1-6-6m14 0a7.94 7.94 0 0 0-3.05-6.27L16 0H8l-.95 5.73A7.94 7.94 0 0 0 4 12c0 2.54 1.19 4.81 3.05 6.27L8 24h8l.95-5.73A7.96 7.96 0 0 0 20 12"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-alert-outline.svg��������������������0000664�0000000�0000000�00000000402�14753064456�0030030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 3.25S4 10 4 14c0 3.31 2.69 6 6 6s6-2.69 6-6c0-4-6-10.75-6-10.75M10 18c-2.21 0-4-1.79-4-4 0-1.77 2-5.04 4-7.61 2 2.56 4 5.84 4 7.61 0 2.21-1.79 4-4 4M20 7v6h-2V7zm-2 10h2v-2h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-alert.svg����������������������������0000664�0000000�0000000�00000000260�14753064456�0026355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 3.25S16 10 16 14c0 3.31-2.69 6-6 6s-6-2.69-6-6c0-4 6-10.75 6-10.75M20 7v6h-2V7zm-2 10h2v-2h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-boiler-alert.svg���������������������0000664�0000000�0000000�00000000462�14753064456�0027633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2c-1.11 0-2 .89-2 2v12c0 1.11.89 2 2 2h1v2H4v2h3c1.11 0 2-.89 2-2v-2h2v2c0 1.11.89 2 2 2h3v-2h-3v-2h1c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm4 2.97a2 2 0 1 1 .001 3.999A2 2 0 0 1 10 4.97M8 14.5h4V16H8zm10 .5h2v2h-2zm0-8h2v6h-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-boiler-auto.svg����������������������0000664�0000000�0000000�00000000534�14753064456�0027474�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2c-1.11 0-2 .89-2 2v12c0 1.11.89 2 2 2h1v2H2v2h3c1.11 0 2-.89 2-2v-2h2v2c0 1.11.89 2 2 2h2l.75-2H11v-2h1c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm4 2.97a2 2 0 1 1 .001 3.999A2 2 0 0 1 8 4.97M6 14.5h4V16H6zM19.8 13h-2l-3.2 9h1.9l.7-2h3.2l.7 2H23zm-2.2 5.7 1.2-3.7 1.2 3.7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-boiler-off.svg�����������������������0000664�0000000�0000000�00000000577�14753064456�0027305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 6.82 6.25 3.05C6.59 2.42 7.24 2 8 2h8c1.11 0 2 .89 2 2v10.8l-5.84-5.84C13.19 8.87 14 8 14 6.97a2 2 0 0 0-2-2c-1.05 0-1.9.81-2 1.85M15 18v2h3v2h-3c-1.11 0-2-.89-2-2v-2h-2v2c0 1.11-.89 2-2 2H6v-2h3v-2H8c-1.11 0-2-.89-2-2V7.89L1.11 3l1.28-1.27 19.72 19.73-1.27 1.27L16.1 18H15m-1-2v-.11l-1.39-1.39H10V16z"/></svg>���������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-boiler.svg���������������������������0000664�0000000�0000000�00000000453�14753064456�0026526�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 2c-1.11 0-2 .89-2 2v12c0 1.11.89 2 2 2h1v2H6v2h3c1.11 0 2-.89 2-2v-2h2v2c0 1.11.89 2 2 2h3v-2h-3v-2h1c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm4 2.97a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m-2 9.53h4V16h-4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-check-outline.svg��������������������0000664�0000000�0000000�00000000465�14753064456�0030007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.75 16.25 17 21l-2.75-3 1.16-1.16L17 18.43l3.59-3.59zM8 14c0-1.77 2-5.04 4-7.61 1.5 1.94 3 4.28 3.67 6.08.6-.26 1.26-.41 1.95-.47C16.31 8.1 12 3.25 12 3.25S6 10 6 14c0 3.31 2.69 6 6 6h.34c-.22-.64-.34-1.3-.34-2-2.21 0-4-1.79-4-4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-check.svg����������������������������0000664�0000000�0000000�00000000367�14753064456�0026333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.75 16.25 17 21l-2.75-3 1.16-1.16L17 18.43l3.59-3.59zM17.62 12C16.31 8.1 12 3.25 12 3.25S6 10 6 14c0 3.31 2.69 6 6 6h.34c-.22-.64-.34-1.3-.34-2 0-3.18 2.5-5.78 5.62-6"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-circle.svg���������������������������0000664�0000000�0000000�00000000327�14753064456�0026513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m0 17c-2.76 0-5-2.24-5-5 0-3.33 5-8.96 5-8.96s5 5.63 5 8.96c0 2.76-2.24 5-5 5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-minus-outline.svg��������������������0000664�0000000�0000000�00000000414�14753064456�0030057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 17v2h-8v-2zM8 14c0-1.77 2-5.04 4-7.61 1.5 1.94 3 4.28 3.67 6.08.6-.26 1.26-.41 1.95-.47C16.31 8.1 12 3.25 12 3.25S6 10 6 14c0 3.31 2.69 6 6 6h.34c-.22-.64-.34-1.3-.34-2-2.21 0-4-1.79-4-4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-minus.svg����������������������������0000664�0000000�0000000�00000000315�14753064456�0026402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 17v2h-8v-2zm-4.38-5C16.31 8.1 12 3.25 12 3.25S6 10 6 14c0 3.31 2.69 6 6 6h.34c-.22-.64-.34-1.3-.34-2 0-3.18 2.5-5.78 5.62-6"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-off-outline.svg����������������������0000664�0000000�0000000�00000000752�14753064456�0027503�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3l6.54 6.54C6.74 11.03 6 12.65 6 14.23c0 3.31 2.69 6 6 6a5.9 5.9 0 0 0 4.4-1.94l4.44 4.44zM12 18.23c-2.22 0-4-1.78-4-4 0-.73.5-1.96 1.14-3.2L15 16.88c-.74.83-1.8 1.35-3 1.35m-.86-10.29L9.71 6.5c.86-1.12 1.54-1.89 1.54-1.89l.75-.84.75.84s1.28 1.45 2.57 3.33S18 12.07 18 14.23c0 .18 0 .36-.03.54l-2.51-2.51c-.46-1.03-1.09-2.19-1.78-3.19-.84-1.22-1.24-1.65-1.68-2.17-.27.31-.5.6-.86 1.04"/></svg>����������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-off.svg������������������������������0000664�0000000�0000000�00000000416�14753064456�0026023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.84 22.73-4.55-4.55A5.96 5.96 0 0 1 12 20c-3.31 0-6-2.69-6-6 0-1.33.67-2.97 1.55-4.56L1.11 3l1.28-1.27 19.72 19.73zM18 14c0-4-6-10.75-6-10.75s-1.16 1.3-2.45 3.1l8.4 8.4c.05-.25.05-.5.05-.75"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-opacity.svg��������������������������0000664�0000000�0000000�00000000607�14753064456�0026723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 14v-2h1.61c.24.71.39 1.39.39 2zm-.42-6c-.46-.71-.93-1.39-1.38-2H14v2zm.42 4v-2h-2v2zm0-3.32V10h.74c-.24-.44-.48-.89-.74-1.32M12 16v-2h2v-2h-2v-2h2V8h-2V6h2v-.27c-1.1-1.47-2-2.48-2-2.48S6 10 6 14c0 3.31 2.69 6 6 6v-2h2v-2zm2 3.65c.75-.26 1.42-.65 2-1.19V18h-2zM14 16h2v-2h-2zm2 2h.46c.54-.58.93-1.25 1.19-2H16z"/></svg>�������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-outline.svg��������������������������0000664�0000000�0000000�00000000533�14753064456�0026730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 3.77-.75.84S9.97 6.06 8.68 7.94 6 12.07 6 14.23a6 6 0 0 0 6 6 6 6 0 0 0 6-6c0-2.16-1.39-4.41-2.68-6.29s-2.57-3.33-2.57-3.33zm0 3.13c.44.52.84.95 1.68 2.17 1.21 1.76 2.32 4 2.32 5.16 0 2.22-1.78 4-4 4s-4-1.78-4-4c0-1.16 1.11-3.4 2.32-5.16.84-1.22 1.24-1.65 1.68-2.17"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-percent-alert.svg��������������������0000664�0000000�0000000�00000000465�14753064456�0030022�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 7v6h-2V7zm-2 10h2v-2h-2zM10 3.25S4 10 4 14c0 3.32 2.69 6 6 6s6-2.69 6-6c0-4-6-10.75-6-10.75M7.75 10a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5m4.5 7a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5m-4.72.03-1.06-1.06 6-6 1.06 1.06z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-percent.svg��������������������������0000664�0000000�0000000�00000000621�14753064456�0026707�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3.25S6 10 6 14c0 3.32 2.69 6 6 6a6 6 0 0 0 6-6c0-4-6-10.75-6-10.75m2.47 6.72 1.06 1.06-6 6-1.06-1.06M9.75 10A1.25 1.25 0 0 1 11 11.25a1.25 1.25 0 0 1-1.25 1.25 1.25 1.25 0 0 1-1.25-1.25A1.25 1.25 0 0 1 9.75 10m4.5 4.5a1.25 1.25 0 0 1 1.25 1.25A1.25 1.25 0 0 1 14.25 17 1.25 1.25 0 0 1 13 15.75a1.25 1.25 0 0 1 1.25-1.25"/></svg>���������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-plus-outline.svg���������������������0000664�0000000�0000000�00000000435�14753064456�0027712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18c0 .7.12 1.36.34 2H12c-3.31 0-6-2.69-6-6 0-4 6-10.75 6-10.75S16.31 8.1 17.62 12c-.69.06-1.34.22-1.95.47C15 10.68 13.5 8.33 12 6.39 10 8.96 8 12.23 8 14c0 2.21 1.79 4 4 4m7-1v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-plus.svg�����������������������������0000664�0000000�0000000�00000000335�14753064456�0026234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18c0 .7.12 1.36.34 2H12c-3.31 0-6-2.69-6-6 0-4 6-10.75 6-10.75S16.31 8.1 17.62 12c-3.12.22-5.62 2.82-5.62 6m7-1v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-polo.svg�����������������������������0000664�0000000�0000000�00000001632�14753064456�0026223�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 16h2v2h-2c-1.4 0-2.8-.4-4-1-2.5 1.3-5.5 1.3-8 0-1.2.6-2.6 1-4 1H2v-2h2c1.4 0 2.8-.5 4-1.3 2.4 1.7 5.6 1.7 8 0 1.2.8 2.6 1.3 4 1.3m-7-5.4c.6-.3 1.3-.6 2-.7v.3c.3 1 .3 1.9.2 2.9-.9.5-2 .8-3 .8.5-1 .8-2.2.8-3.3m-.1-7q-2.1.6-3.6 2.1-.6-1.5-.6-3c2.2-1 4.7-.9 6.9.2.3.1.6.2.8.4-1.2-.1-2.4 0-3.5.3m-6.1 9.7q-.9.45-1.8.6c-.7-1.3-1-2.7-1-4.1.5 1 1.2 2 2 2.8.3.2.5.5.8.7m12.2.6c-.6-.1-1.2-.3-1.7-.5.2-1.2.1-2.4-.2-3.6 1.1.1 2.1.4 3 1-.1 1-.4 1.9-.9 2.8zM7.4 11.2c-1.2-1.1-1.9-2.7-2.2-4.3L5.1 6c.5-.8 1-1.4 1.7-2 .1 1.4.6 2.7 1.4 3.8.7 1.1 1.7 2.1 2.8 2.7 0 .8-.2 1.6-.5 2.4-1.2-.3-2.2-.9-3.1-1.7m6.1-5.7c1.5-.4 3.2-.3 4.7.2l.8.4c.4.7.6 1.5.8 2.3-2.5-1.1-5.4-.9-7.8.4-.7-.3-1.2-.8-1.7-1.4l.1-.1c.9-.8 1.9-1.5 3.1-1.8M16 18.7c1.2.8 2.6 1.3 4 1.3h2v2h-2c-1.4 0-2.8-.4-4-1-2.5 1.3-5.5 1.3-8 0-1.2.6-2.6 1-4 1H2v-2h2c1.4 0 2.8-.5 4-1.3 2.4 1.7 5.6 1.7 8 0"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-pump-off.svg�������������������������0000664�0000000�0000000�00000000447�14753064456�0027006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.7 2.5A2 2 0 0 1 7 2h2a2 2 0 0 1 2 2v1h8a2 2 0 0 1 2 2v4a1 1 0 0 1 0 2h-4a1 1 0 0 1 0-2V9h-4.8m8.64 13.73 1.27-1.27L11 10.34 2.39 1.73 1.11 3l2.54 2.54A2 2 0 0 0 5 9v9H4a2 2 0 0 0-2 2v2h12v-2a2 2 0 0 0-2-2h-1v-5.11Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-pump.svg�����������������������������0000664�0000000�0000000�00000000521�14753064456�0026227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 14.5s2 2.17 2 3.5a2 2 0 0 1-2 2 2 2 0 0 1-2-2c0-1.33 2-3.5 2-3.5M5 18V9a2 2 0 0 1-2-2 2 2 0 0 1 2-2V4a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v1h8a2 2 0 0 1 2 2v4a1 1 0 0 1 1 1 1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1 1 1 0 0 1 1-1V9h-6v9h1a2 2 0 0 1 2 2v2H2v-2a2 2 0 0 1 2-2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-remove-outline.svg�������������������0000664�0000000�0000000�00000000564�14753064456�0030227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18c0 .7.12 1.36.34 2H12c-3.31 0-6-2.69-6-6 0-4 6-10.75 6-10.75S16.31 8.1 17.62 12c-.69.06-1.34.22-1.95.47C15 10.68 13.5 8.33 12 6.39 10 8.96 8 12.23 8 14c0 2.21 1.79 4 4 4m9.54-2.12-1.41-1.41L18 16.59l-2.12-2.12-1.41 1.41L16.59 18l-2.12 2.12 1.41 1.41L18 19.41l2.12 2.12 1.41-1.41L19.41 18z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-remove.svg���������������������������0000664�0000000�0000000�00000000464�14753064456�0026551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18c0 .7.12 1.36.34 2H12c-3.31 0-6-2.69-6-6 0-4 6-10.75 6-10.75S16.31 8.1 17.62 12c-3.12.22-5.62 2.82-5.62 6m9.54-2.12-1.41-1.41L18 16.59l-2.12-2.12-1.41 1.41L16.59 18l-2.12 2.12 1.41 1.41L18 19.41l2.12 2.12 1.41-1.41L19.41 18z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-sync.svg�����������������������������0000664�0000000�0000000�00000000545�14753064456�0026230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3.2S6 10 6 14c0 3.3 2.7 6 6 6s6-2.7 6-6c0-4-6-10.8-6-10.8m0 5.3V10c2.2 0 4 1.8 4 4 0 .8-.2 1.6-.7 2.2l-1.1-1.1c.2-.3.3-.7.3-1.1 0-1.4-1.1-2.5-2.5-2.5V13l-2.2-2.2zm-3.3 3.3 1.1 1.1c-.2.3-.3.7-.3 1.1 0 1.4 1.1 2.5 2.5 2.5V15l2.2 2.2-2.2 2.3V18c-2.2 0-4-1.8-4-4 0-.8.2-1.6.7-2.2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-thermometer-outline.svg��������������0000664�0000000�0000000�00000000770�14753064456�0031264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 5c-1.11 0-2 .89-2 2v6.76c-.64.57-1 1.39-1 2.24 0 1.66 1.34 3 3 3s3-1.34 3-3c0-.85-.36-1.67-1-2.23V7c0-1.11-.89-2-2-2m0 1c.55 0 1 .45 1 1v1h-2V7c0-.55.45-1 1-1M8 3.54l-.75.84S5.97 5.83 4.68 7.71 2 11.84 2 14c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.16-1.39-4.41-2.68-6.29S8.75 4.38 8.75 4.38zm0 3.13c.44.52.84.95 1.68 2.17C10.89 10.6 12 12.84 12 14c0 2.22-1.78 4-4 4s-4-1.78-4-4c0-1.16 1.11-3.4 2.32-5.16C7.16 7.62 7.56 7.19 8 6.67"/></svg>��������mkdocs-material-9.6.4/material/templates/.icons/material/water-thermometer.svg����������������������0000664�0000000�0000000�00000000471�14753064456�0027605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 5c-1.11 0-2 .89-2 2v6.76c-.64.57-1 1.39-1 2.24 0 1.66 1.34 3 3 3s3-1.34 3-3c0-.85-.36-1.67-1-2.23V7c0-1.11-.89-2-2-2m0 1c.55 0 1 .45 1 1v1h-2V7c0-.55.45-1 1-1M8 20c-3.31 0-6-2.69-6-6C2 10 8 3.25 8 3.25S14 10 14 14c0 3.31-2.69 6-6 6"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-well-outline.svg���������������������0000664�0000000�0000000�00000000555�14753064456�0027675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.62 8H5v7h2V8h4v2h2V8h4v7h2V8h1.61c.55 0 1-.44 1-1a.9.9 0 0 0-.05-.32L19 2H5L2.72 6.55A.998.998 0 0 0 3.62 8m2.62-4h11.52l1 2H5.24zM2 16v2h2v4h16v-4h2v-2zm16 4H6v-2h12zm-4.07-9c.28 0 .5.22.5.5v.06l-.38 3c-.05.25-.24.44-.49.44h-3.12c-.25 0-.44-.19-.49-.44l-.38-3A.51.51 0 0 1 10 11h3.93"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water-well.svg�����������������������������0000664�0000000�0000000�00000000504�14753064456�0026212�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 16H2v2h2v4h16v-4h2zm-11.56-1c-.25 0-.44-.19-.49-.44l-.38-3v-.06c0-.28.22-.5.5-.5H14c.27.04.46.29.43.56l-.38 3c-.05.25-.24.44-.49.44zM19 2l2.56 4.68c.04.1.05.21.05.32 0 .56-.45 1-1 1H19v7h-2V8h-4v2h-2V8H7v7H5V8H3.62a.998.998 0 0 1-.9-1.45L5 2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/water.svg����������������������������������0000664�0000000�0000000�00000000220�14753064456�0025244�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20a6 6 0 0 1-6-6c0-4 6-10.75 6-10.75S18 10 18 14a6 6 0 0 1-6 6"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/waterfall.svg������������������������������0000664�0000000�0000000�00000000640�14753064456�0026111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 20c-1.39 0-2.78-.47-4-1.33-2.44 1.71-5.56 1.71-8 0C6.78 19.53 5.39 20 4 20H2v2h2c1.37 0 2.74-.35 4-1 2.5 1.3 5.5 1.3 8 0 1.26.65 2.62 1 4 1h2v-2m-2-4c-1.39 0-2.78-.47-4-1.33-2.44 1.71-5.56 1.71-8 0C6.78 15.53 5.39 16 4 16H2v2h2c1.37 0 2.74-.35 4-1 2.5 1.3 5.5 1.3 8 0 1.26.65 2.62 1 4 1h2v-2m0-14H2v2h4v12h12V4h4M9 4h2v6H9m4-2h2v6h-2Z"/></svg>������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/watering-can-outline.svg�������������������0000664�0000000�0000000�00000000610�14753064456�0030161�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 7.47c-.74.73-.93 1.78-.58 2.68L15 13.07V11c0-.55-.45-1-1-1h-1.03c.03-.17.03-.33.03-.5C13 6.46 10.54 4 7.5 4A5.497 5.497 0 0 0 4 13.74V20c0 .55.45 1 1 1h9c.55 0 1-.45 1-1v-4.11l4.33-4.33c.9.35 1.95.17 2.67-.56zM4.05 10C4.03 9.83 4 9.67 4 9.5 4 7.57 5.57 6 7.5 6S11 7.57 11 9.5c0 .17-.03.33-.05.5M13 19H6v-7h7z"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/watering-can.svg���������������������������0000664�0000000�0000000�00000000573�14753064456�0026514�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 7.47c-.74.73-.93 1.78-.58 2.68L15 13.07V11c0-.55-.45-1-1-1h-1.03c.03-.17.03-.33.03-.5C13 6.46 10.54 4 7.5 4A5.497 5.497 0 0 0 4 13.74V20c0 .55.45 1 1 1h9c.55 0 1-.45 1-1v-4.11l4.33-4.33c.9.35 1.95.17 2.67-.56zM4.05 10C4.03 9.83 4 9.67 4 9.5 4 7.57 5.57 6 7.5 6S11 7.57 11 9.5c0 .17-.03.33-.05.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/watermark.svg������������������������������0000664�0000000�0000000�00000000243�14753064456�0026124�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 3H3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m0 16h-9v-6h9z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wave-arrow-down.svg������������������������0000664�0000000�0000000�00000000371�14753064456�0027170�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 7h2v2h-2c-1.38 0-2.74-.35-4-1-2.5 1.3-5.5 1.3-8 0-1.26.65-2.63 1-4 1H2V7h2c1.39 0 2.78-.47 4-1.33 2.44 1.71 5.56 1.71 8 0C17.22 6.53 18.61 7 20 7m-8 15-4-4h3v-7h2v7h3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wave-arrow-up.svg��������������������������0000664�0000000�0000000�00000000372�14753064456�0026646�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 7h2v2h-2c-1.38 0-2.74-.35-4-1-2.5 1.3-5.5 1.3-8 0-1.26.65-2.63 1-4 1H2V7h2c1.39 0 2.78-.47 4-1.33 2.44 1.71 5.56 1.71 8 0C17.22 6.53 18.61 7 20 7m-8 4 4 4h-3v7h-2v-7H8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wave-undercurrent.svg����������������������0000664�0000000�0000000�00000000737�14753064456�0027617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 7h2v2h-2c-1.38 0-2.74-.35-4-1-2.5 1.3-5.5 1.3-8 0-1.26.65-2.63 1-4 1H2V7h2c1.39 0 2.78-.47 4-1.33 2.44 1.71 5.56 1.71 8 0C17.22 6.53 18.61 7 20 7m-8 5.5c2.21 0 4 1.79 4 4 0 .82-.25 1.58-.67 2.21l-1.09-1.09c.17-.34.26-.72.26-1.12A2.5 2.5 0 0 0 12 14v1.5l-2.25-2.25L12 11zm0 6.5v-1.5l2.25 2.25L12 22v-1.5c-2.21 0-4-1.79-4-4 0-.82.25-1.58.67-2.21l1.09 1.09c-.17.34-.26.72-.26 1.12A2.5 2.5 0 0 0 12 19"/></svg>���������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wave.svg�����������������������������������0000664�0000000�0000000�00000000342�14753064456�0025071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 12c-1.39 0-2.78-.47-4-1.33-2.44 1.71-5.56 1.71-8 0C6.78 11.53 5.39 12 4 12H2v2h2c1.37 0 2.74-.35 4-1 2.5 1.3 5.5 1.3 8 0 1.26.65 2.62 1 4 1h2v-2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/waveform.svg�������������������������������0000664�0000000�0000000�00000000341�14753064456�0025754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22 12-2 1-1 1-1-1-1 3-1-3-1 8-1-8-1 2-1-2-1 4-1-4-1 9-1-9-1 6-1-6-1 1-1-1-2-1 2-1 1-1 1 1 1-6 1 6 1-9 1 9 1-4 1 4 1-2 1 2 1-8 1 8 1-3 1 3 1-1 1 1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/waves-arrow-left.svg�����������������������0000664�0000000�0000000�00000000620�14753064456�0027333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 14c1.39 0 2.78-.47 4-1.33 2.44 1.71 5.56 1.71 8 0 1.22.86 2.61 1.33 4 1.33h2v2h-2c-1.37 0-2.74-.35-4-1-2.5 1.3-5.5 1.3-8 0-1.26.65-2.62 1-4 1H2v-2zm4 4.67c2.44 1.71 5.56 1.71 8 0 1.22.86 2.61 1.33 4 1.33h2v2h-2c-1.37 0-2.74-.35-4-1-2.5 1.3-5.5 1.3-8 0-1.26.65-2.62 1-4 1H2v-2h2c1.39 0 2.78-.47 4-1.33M6 10V7h5V5H6V2L2 6"/></svg>����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/waves-arrow-right.svg����������������������0000664�0000000�0000000�00000000620�14753064456�0027516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 14h2v2h-2c-1.38 0-2.74-.35-4-1-2.5 1.3-5.5 1.3-8 0-1.26.65-2.63 1-4 1H2v-2h2c1.39 0 2.78-.47 4-1.33 2.44 1.71 5.56 1.71 8 0 1.22.86 2.61 1.33 4 1.33m0 6h2v2h-2c-1.38 0-2.74-.35-4-1-2.5 1.3-5.5 1.3-8 0-1.26.65-2.63 1-4 1H2v-2h2c1.39 0 2.78-.47 4-1.33 2.44 1.71 5.56 1.71 8 0 1.22.86 2.61 1.33 4 1.33m2-14-4-4v3h-5v2h5v3"/></svg>����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/waves-arrow-up.svg�������������������������0000664�0000000�0000000�00000000640�14753064456�0027027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 14h2v2h-2c-1.38 0-2.74-.35-4-1-2.5 1.3-5.5 1.3-8 0-1.26.65-2.63 1-4 1H2v-2h2c1.39 0 2.78-.47 4-1.33 2.44 1.71 5.56 1.71 8 0 1.22.86 2.61 1.33 4 1.33m0 6h2v2h-2c-1.38 0-2.74-.35-4-1-2.5 1.3-5.5 1.3-8 0-1.26.65-2.63 1-4 1H2v-2h2c1.39 0 2.78-.47 4-1.33 2.44 1.71 5.56 1.71 8 0 1.22.86 2.61 1.33 4 1.33M7 2 3 6h3v5h2V6h3m6-4-4 4h3v5h2V6h3"/></svg>������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/waves.svg����������������������������������0000664�0000000�0000000�00000001021�14753064456�0025247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 12h2v2h-2c-1.38 0-2.74-.35-4-1-2.5 1.3-5.5 1.3-8 0-1.26.65-2.63 1-4 1H2v-2h2c1.39 0 2.78-.47 4-1.33 2.44 1.71 5.56 1.71 8 0 1.22.86 2.61 1.33 4 1.33m0-6h2v2h-2c-1.38 0-2.74-.35-4-1-2.5 1.3-5.5 1.3-8 0-1.26.65-2.63 1-4 1H2V6h2c1.39 0 2.78-.47 4-1.33 2.44 1.71 5.56 1.71 8 0C17.22 5.53 18.61 6 20 6m0 12h2v2h-2c-1.38 0-2.74-.35-4-1-2.5 1.3-5.5 1.3-8 0-1.26.65-2.63 1-4 1H2v-2h2c1.39 0 2.78-.47 4-1.33 2.44 1.71 5.56 1.71 8 0 1.22.86 2.61 1.33 4 1.33"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/waze.svg�����������������������������������0000664�0000000�0000000�00000002330�14753064456�0025074�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.54 6.63c.69.94 1.15 2.04 1.35 3.19.21 1.25.11 2.52-.31 3.72a7.35 7.35 0 0 1-2 3.06 9.1 9.1 0 0 1-2.26 1.58c.41 1.07-.13 2.27-1.2 2.68-.24.09-.49.14-.74.14a2.08 2.08 0 0 1-2.07-2h-3.07c-.11 1.14-1.13 2-2.27 1.87-1.06-.1-1.86-.98-1.88-2.04.01-.19.04-.39.1-.57a8.37 8.37 0 0 1-4-2.85c-.33-.44-.23-1.07.23-1.41.18-.14.4-.22.63-.22.72 0 1-.25 1.17-.63.24-.72.38-1.47.39-2.23.03-.53.09-1.05.17-1.57A7.3 7.3 0 0 1 7.5 5c1.66-1.3 3.69-2 5.79-2 1.43 0 2.84.35 4.11 1a8.7 8.7 0 0 1 3.14 2.63m-3.82 10.68c1.78-.81 3.18-2.27 3.87-4.1 1.62-4.94-2.59-9.16-7.3-9.16-.35 0-.71.02-1.06.07C9.36 4.5 6.4 6.5 5.81 9.5c-.38 2 .19 5.29-2.76 5.29C4 16 5.32 16.93 6.81 17.37c.85-.76 2.16-.68 2.93.18.11.12.2.25.26.39h3.55c.52-1.02 1.78-1.44 2.8-.9.15.08.25.17.37.27m-5.75-7c-.58.03-1.09-.41-1.12-1-.03-.58.42-1.08 1-1.12.58-.03 1.09.42 1.12 1.06a1 1 0 0 1-.97 1.04zm4.69 0c-.58.03-1.09-.41-1.12-1-.04-.58.42-1.08 1-1.12.58-.03 1.09.42 1.12 1.06.02.55-.41 1.02-1 1.04zm-5.95 1.76c-.06-.28.13-.57.41-.62s.56.13.62.41a2.5 2.5 0 0 0 2.58 1.74c1.14.06 2.18-.64 2.57-1.72.14-.26.46-.38.71-.23.18.1.29.27.29.47-.19.71-.63 1.33-1.23 1.76-.69.48-1.5.75-2.34.76h-.11c-1.63.07-3.1-1-3.53-2.58z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-cloudy-alert.svg�������������������0000664�0000000�0000000�00000000535�14753064456�0030174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 19a5 5 0 0 1-5-5 5 5 0 0 1 5-5c1-2.35 3.3-4 6-4 3.43 0 6.24 2.66 6.5 6.03L19 11a4 4 0 0 1 4 4 4 4 0 0 1-4 4zm13-6h-2v-1a5 5 0 0 0-5-5c-2.5 0-4.55 1.82-4.94 4.19C6.73 11.07 6.37 11 6 11a3 3 0 0 0-3 3 3 3 0 0 0 3 3h13a2 2 0 0 0 2-2 2 2 0 0 0-2-2m-6-1h-2V8h2zm0 4h-2v-2h2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-cloudy-arrow-right.svg�������������0000664�0000000�0000000�00000000550�14753064456�0031327�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6 7 .69.06A5.5 5.5 0 0 1 12 3a5.5 5.5 0 0 1 5.5 5.5l-.08.95c.46-.29 1-.45 1.58-.45a3 3 0 0 1 3 3 3 3 0 0 1-3 3H6a4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2h13a1 1 0 0 0 1-1 1 1 0 0 0-1-1h-3.5V8.5A3.5 3.5 0 0 0 12 5a3.5 3.5 0 0 0-3.5 3.5V9zm16 10-3 3v-2H2v-2h17v-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-cloudy-clock.svg�������������������0000664�0000000�0000000�00000000723�14753064456�0030157�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 13h1.5v2.82l2.44 1.41-.75 1.3L15 16.69zm3.13-3.67C17.23 6.81 14.83 5 12 5 9.3 5 7 6.65 6 9c-2.76 0-5 2.24-5 5s2.24 5 5 5h3.68c1.13 2.36 3.53 4 6.32 4 3.87 0 7-3.13 7-7 0-3.12-2.04-5.76-4.87-6.67M6 17c-1.66 0-3-1.34-3-3s1.34-3 3-3c.37 0 .73.07 1.06.19A5.004 5.004 0 0 1 12 7c1.63 0 3.07.79 4 2-3.88 0-7 3.14-7 7 0 .34.03.67.08 1zm10 4c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5"/></svg>���������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-cloudy.svg�������������������������0000664�0000000�0000000�00000000504�14753064456�0027063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 19a5 5 0 0 1-5-5 5 5 0 0 1 5-5c1-2.35 3.3-4 6-4 3.43 0 6.24 2.66 6.5 6.03L19 11a4 4 0 0 1 4 4 4 4 0 0 1-4 4zm13-6h-2v-1a5 5 0 0 0-5-5c-2.5 0-4.55 1.82-4.94 4.19C6.73 11.07 6.37 11 6 11a3 3 0 0 0-3 3 3 3 0 0 0 3 3h13a2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-dust.svg���������������������������0000664�0000000�0000000�00000001456�14753064456�0026552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5c0-.6.4-1 1-1h1c.6 0 1 .4 1 1s-.4 1-1 1H4c-.6 0-1-.4-1-1m1 8c0-.6.4-1 1-1h1c.6 0 1 .4 1 1s-.4 1-1 1H5c-.6 0-1-.4-1-1m0 3c-.6 0-1 .4-1 1s.4 1 1 1h5c.6 0 1-.4 1-1s-.4-1-1-1zM18 5c0-.6.4-1 1-1h2c.6 0 1 .4 1 1s-.4 1-1 1h-2c-.6 0-1-.4-1-1M7 20c-.6 0-1 .4-1 1s.4 1 1 1h4c.6 0 1-.4 1-1s-.4-1-1-1zM3 10c-.6 0-1-.4-1-1s.4-1 1-1h9c1.1 0 2-.9 2-2s-.9-2-2-2c-.6 0-1.1.2-1.4.6-.4.4-1 .4-1.4 0s-.4-1 0-1.4C9.9 2.5 10.9 2 12 2c2.2 0 4 1.8 4 4s-1.8 4-4 4zm16 2c.6 0 1-.4 1-1s-.4-1-1-1c-.3 0-.5.1-.7.3-.4.4-1 .4-1.4 0s-.4-1 0-1.4c.5-.6 1.3-.9 2.1-.9 1.7 0 3 1.3 3 3s-1.3 3-3 3h-9c-.6 0-1-.4-1-1s.4-1 1-1zm-1 6h-5c-.6 0-1-.4-1-1s.4-1 1-1h5c1.7 0 3 1.3 3 3s-1.3 3-3 3c-.8 0-1.6-.3-2.1-.9-.4-.4-.4-1 0-1.4s1-.4 1.4 0c.2.2.4.3.7.3.6 0 1-.4 1-1s-.4-1-1-1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-fog.svg����������������������������0000664�0000000�0000000�00000001042�14753064456�0026335�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 15h10a1 1 0 0 1 1 1 1 1 0 0 1-1 1H3a1 1 0 0 1-1-1 1 1 0 0 1 1-1m13 0h5a1 1 0 0 1 1 1 1 1 0 0 1-1 1h-5a1 1 0 0 1-1-1 1 1 0 0 1 1-1M1 12a5 5 0 0 1 5-5c1-2.35 3.3-4 6-4 3.43 0 6.24 2.66 6.5 6.03L19 9c2.19 0 3.97 1.76 4 4h-2a2 2 0 0 0-2-2h-2v-1a5 5 0 0 0-5-5C9.5 5 7.45 6.82 7.06 9.19 6.73 9.07 6.37 9 6 9a3 3 0 0 0-3 3 3 3 0 0 0 .17 1H1.1zm2 7h2a1 1 0 0 1 1 1 1 1 0 0 1-1 1H3a1 1 0 0 1-1-1 1 1 0 0 1 1-1m5 0h13a1 1 0 0 1 1 1 1 1 0 0 1-1 1H8a1 1 0 0 1-1-1 1 1 0 0 1 1-1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-hail.svg���������������������������0000664�0000000�0000000�00000001150�14753064456�0026477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 14a1 1 0 0 1 1 1 1 1 0 0 1-1 1 5 5 0 0 1-5-5 5 5 0 0 1 5-5c1-2.35 3.3-4 6-4 3.43 0 6.24 2.66 6.5 6.03L19 8a4 4 0 0 1 4 4 4 4 0 0 1-4 4h-1a1 1 0 0 1-1-1 1 1 0 0 1 1-1h1a2 2 0 0 0 2-2 2 2 0 0 0-2-2h-2V9a5 5 0 0 0-5-5C9.5 4 7.45 5.82 7.06 8.19 6.73 8.07 6.37 8 6 8a3 3 0 0 0-3 3 3 3 0 0 0 3 3m4 4a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m4.5-2a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5m-4-4a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5A1.5 1.5 0 0 1 9 13.5a1.5 1.5 0 0 1 1.5-1.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-hazy.svg���������������������������0000664�0000000�0000000�00000001075�14753064456�0026543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 2 2.39 3.42C13.65 5.15 12.84 5 12 5s-1.65.15-2.39.42zM3.34 7l4.16-.35A7.2 7.2 0 0 0 5.94 8.5c-.44.74-.69 1.5-.83 2.29zm17.31 0-1.77 3.79a7.02 7.02 0 0 0-2.38-4.15M14 15a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1 1 1 0 0 0 1 1h10a1 1 0 0 0 1-1m8 0a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1 1 1 0 0 0 1 1h4a1 1 0 0 0 1-1m-12 4a1 1 0 0 0 1 1h9a1 1 0 0 0 1-1 1 1 0 0 0-1-1h-9a1 1 0 0 0-1 1m-7 0a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1 1 1 0 0 0-1-1H4a1 1 0 0 0-1 1m9-10a3 3 0 0 1 3 3h2a5 5 0 0 0-5-5 5 5 0 0 0-5 5h2a3 3 0 0 1 3-3"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-hurricane-outline.svg��������������0000664�0000000�0000000�00000001056�14753064456�0031224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 14c1.11 0 2-.89 2-2a2 2 0 1 0-2 2m6-12a18 18 0 0 0-3.34 3.29.99.99 0 0 0 .34 1.5c1.86 1.07 3 3.06 3 5.21 0 6.41-4.92 8.71-8.46 9.54C7.55 22 6 22 6 22a18 18 0 0 0 3.34-3.29.99.99 0 0 0-.34-1.5C7.14 16.14 6 14.15 6 12c0-6.41 4.93-8.71 8.47-9.54C16.45 2 18 2 18 2M9.44 7.47C8.61 8.5 8 9.93 8 12c0 1.43.75 2.74 1.96 3.46 1.24.66 1.82 2.04 1.51 3.34 1.2-.53 2.29-1.26 3.09-2.27C15.39 15.5 16 14.07 16 12c0-1.43-.75-2.74-1.96-3.46a2.97 2.97 0 0 1-1.5-3.34c-1.21.53-2.3 1.27-3.1 2.27"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-hurricane.svg����������������������0000664�0000000�0000000�00000000506�14753064456�0027546�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 6.79c1.86 1.07 3 3.06 3 5.21C18 22 6 22 6 22c1.25-.94 2.38-2.05 3.34-3.29a.99.99 0 0 0-.34-1.5C7.14 16.14 6 14.15 6 12 6 2 18 2 18 2c-1.25.94-2.38 2.05-3.34 3.29a.99.99 0 0 0 .34 1.5M12 14a2 2 0 0 0 2-2 2 2 0 0 0-2-2 2 2 0 0 0-2 2 2 2 0 0 0 2 2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-lightning-rainy.svg����������������0000664�0000000�0000000�00000001021�14753064456�0030662�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.5 13.59c.5.28.64.91.37 1.37-.28.48-.87.64-1.37.37A4.98 4.98 0 0 1 1 11a5 5 0 0 1 5-5c1-2.35 3.3-4 6-4 3.43 0 6.24 2.66 6.5 6.03L19 8a4 4 0 0 1 4 4 4 4 0 0 1-4 4 1 1 0 0 1-1-1 1 1 0 0 1 1-1 2 2 0 0 0 2-2 2 2 0 0 0-2-2h-2V9a5 5 0 0 0-5-5C9.5 4 7.45 5.82 7.06 8.19 6.73 8.07 6.37 8 6 8a3 3 0 0 0-3 3c0 1.11.6 2.08 1.5 2.6zm5-2.59h3l-2 4h2l-3.75 7 .75-5H7zm8 7.67c0 1.29-1 2.33-2.25 2.33S13 19.96 13 18.67c0-1.55 2.25-4.17 2.25-4.17s2.25 2.62 2.25 4.17"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-lightning.svg����������������������0000664�0000000�0000000�00000000625�14753064456�0027553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 16a5 5 0 0 1-5-5 5 5 0 0 1 5-5c1-2.35 3.3-4 6-4 3.43 0 6.24 2.66 6.5 6.03L19 8a4 4 0 0 1 4 4 4 4 0 0 1-4 4h-1a1 1 0 0 1-1-1 1 1 0 0 1 1-1h1a2 2 0 0 0 2-2 2 2 0 0 0-2-2h-2V9a5 5 0 0 0-5-5C9.5 4 7.45 5.82 7.06 8.19 6.73 8.07 6.37 8 6 8a3 3 0 0 0-3 3 3 3 0 0 0 3 3h1a1 1 0 0 1 1 1 1 1 0 0 1-1 1zm6-5h3l-2 4h2l-3.75 7 .75-5H9.5z"/></svg>�����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-moonset-down.svg�������������������0000664�0000000�0000000�00000000775�14753064456�0030227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 12h4c0-1.33.53-2.6 1.46-3.54C9.4 7.53 10.67 7 12 7s2.6.53 3.54 1.46C16.47 9.4 17 10.67 17 12h4c.27 0 .5.11.71.29.19.21.29.45.29.71 0 .27-.1.5-.29.71-.21.19-.44.29-.71.29H3c-.26 0-.5-.1-.71-.29C2.11 13.5 2 13.27 2 13c0-.26.11-.5.29-.71.21-.18.45-.29.71-.29m9.71 8.71 3.11-3.11c.39-.39.39-1.03 0-1.42a.996.996 0 0 0-1.41 0L12 18.59l-2.41-2.41a.996.996 0 0 0-1.41 0c-.39.39-.39 1.03 0 1.42l3.11 3.11c.21.19.45.29.71.29s.5-.1.71-.29"/></svg>���mkdocs-material-9.6.4/material/templates/.icons/material/weather-moonset-up.svg���������������������0000664�0000000�0000000�00000000720�14753064456�0027672�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 12h4c0-1.33.53-2.6 1.46-3.54C9.4 7.53 10.67 7 12 7s2.6.53 3.54 1.46C16.47 9.4 17 10.67 17 12h4c.27 0 .5.11.71.29.19.21.29.45.29.71 0 .27-.1.5-.29.71-.21.19-.44.29-.71.29H3c-.26 0-.5-.1-.71-.29C2.11 13.5 2 13.27 2 13c0-.26.11-.5.29-.71.21-.18.45-.29.71-.29m9.71 4.3 3.11 3.11a.996.996 0 1 1-1.41 1.41L12 18.41l-2.41 2.41a.996.996 0 1 1-1.41-1.41l3.11-3.11c.21-.2.45-.3.71-.3s.5.1.71.3"/></svg>������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-moonset.svg������������������������0000664�0000000�0000000�00000001237�14753064456�0027254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 12h4c0-1.33.53-2.6 1.46-3.54C9.4 7.53 10.67 7 12 7s2.6.53 3.54 1.46C16.47 9.4 17 10.67 17 12h4c.27 0 .5.11.71.29.19.21.29.45.29.71 0 .27-.1.5-.29.71-.21.19-.44.29-.71.29H3c-.26 0-.5-.1-.71-.29C2.11 13.5 2 13.27 2 13c0-.26.11-.5.29-.71.21-.18.45-.29.71-.29m2 4h14c.27 0 .5.11.71.29.19.21.29.45.29.71 0 .27-.1.5-.29.71-.21.19-.44.29-.71.29H5c-.26 0-.5-.1-.71-.29C4.11 17.5 4 17.27 4 17c0-.26.11-.5.29-.71.21-.18.45-.29.71-.29m12 4c.27 0 .5.11.71.29.19.21.29.45.29.71 0 .27-.1.5-.29.71-.21.19-.44.29-.71.29H7c-.26 0-.5-.1-.71-.29C6.11 21.5 6 21.27 6 21c0-.26.11-.5.29-.71.21-.18.45-.29.71-.29z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-night-partly-cloudy.svg������������0000664�0000000�0000000�00000001730�14753064456�0031505�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 10.28c-.26.02-.5.03-.74.03-1.94 0-3.87-.74-5.35-2.22A7.52 7.52 0 0 1 13.72 2c.05-.47-.5-1-1.01-1a.7.7 0 0 0-.39.12c-.32.24-.66.52-.96.82-2.31 2.3-2.81 5.72-1.52 8.52a5.48 5.48 0 0 0-3.15 3.6L6 14a4 4 0 0 0-4 4 4 4 0 0 0 4 4h13a3 3 0 0 0 3-3 3 3 0 0 0-3-3c-.58 0-1.12.16-1.58.45l.08-.95c0-.22 0-.45-.04-.67a7.45 7.45 0 0 0 4.6-2.19c.32-.3.58-.64.82-.96.39-.55-.23-1.4-.84-1.4M19 18a1 1 0 0 1 1 1 1 1 0 0 1-1 1H6a2 2 0 0 1-2-2 2 2 0 0 1 2-2h2.5v-.5c0-1.56 1.03-2.86 2.44-3.32.16-.05.32-.09.49-.12.18-.03.37-.06.57-.06.23 0 .45.03.66.07q.105.015.21.06c.13.03.28.07.41.12.08.03.16.07.22.11.13.05.24.11.34.18.08.05.16.1.23.16.1.07.18.14.27.22.07.08.16.13.21.2.08.08.14.17.21.25.06.08.13.16.18.25.06.09.1.18.15.28s.11.18.15.28c.17.41.26.85.26 1.32V18m1.33-5.14A5.51 5.51 0 0 0 12 10h-.13c-.46-.81-.73-1.74-.73-2.71 0-.98.25-1.92.72-2.74A9.4 9.4 0 0 0 14.5 9.5a9.35 9.35 0 0 0 4.95 2.64c-.79.46-1.69.7-2.62.72"/></svg>����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-night.svg��������������������������0000664�0000000�0000000�00000001126�14753064456�0026676�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.75 4.09-2.53 1.94.91 3.06-2.63-1.81-2.63 1.81.91-3.06-2.53-1.94L12.44 4l1.06-3 1.06 3zm3.5 6.91-1.64 1.25.59 1.98-1.7-1.17-1.7 1.17.59-1.98L15.75 11l2.06-.05L18.5 9l.69 1.95zm-2.28 4.95c.83-.08 1.72 1.1 1.19 1.85-.32.45-.66.87-1.08 1.27C15.17 23 8.84 23 4.94 19.07c-3.91-3.9-3.91-10.24 0-14.14.4-.4.82-.76 1.27-1.08.75-.53 1.93.36 1.85 1.19-.27 2.86.69 5.83 2.89 8.02a9.96 9.96 0 0 0 8.02 2.89m-1.64 2.02a12.08 12.08 0 0 1-7.8-3.47c-2.17-2.19-3.33-5-3.49-7.82-2.81 3.14-2.7 7.96.31 10.98 3.02 3.01 7.84 3.12 10.98.31"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-partly-cloudy.svg������������������0000664�0000000�0000000�00000001442�14753064456�0030376�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.74 5.47c2.36 1.03 3.61 3.56 3.18 5.99A6 6 0 0 1 18 16v.17a3 3 0 0 1 1-.17 3 3 0 0 1 3 3 3 3 0 0 1-3 3H6a4 4 0 0 1-4-4 4 4 0 0 1 4-4h.27C5 12.45 4.6 10.24 5.5 8.26a5.49 5.49 0 0 1 7.24-2.79m-.81 1.83c-1.77-.8-3.84.01-4.62 1.77-.46 1.02-.38 2.15.1 3.06A5.99 5.99 0 0 1 12 10c.7 0 1.38.12 2 .34a3.51 3.51 0 0 0-2.07-3.04m1.62-3.66c-.55-.24-1.1-.41-1.67-.52l2.49-1.3.9 2.89a7.7 7.7 0 0 0-1.72-1.07m-7.46.8c-.49.35-.92.75-1.29 1.19l.11-2.81 2.96.68c-.62.21-1.22.53-1.78.94M18 9.71c-.09-.59-.22-1.16-.41-1.71l2.38 1.5-2.05 2.23c.11-.65.13-1.33.08-2.02M3.04 11.3c.07.6.2 1.17.39 1.7l-2.37-1.5L3.1 9.28c-.1.65-.13 1.33-.06 2.02M19 18h-3v-2a4 4 0 0 0-4-4 4 4 0 0 0-4 4H6a2 2 0 0 0-2 2 2 2 0 0 0 2 2h13a1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-partly-lightning.svg���������������0000664�0000000�0000000�00000001571�14753064456�0031065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 15a3 3 0 0 0-1 .17V15c0-1.81-.81-3.44-2.08-4.54.43-2.43-.82-4.96-3.17-5.99-2.78-1.23-6.03.03-7.25 2.78-.9 1.99-.5 4.2.77 5.75H6a4 4 0 0 0-4 4 4 4 0 0 0 4 4h1s1 0 1-1-1-1-1-1H6a2 2 0 0 1-2-2 2 2 0 0 1 2-2h2a4 4 0 0 1 4-4 4 4 0 0 1 4 4v2h3a1 1 0 0 1 1 1 1 1 0 0 1-1 1h-2s-1 0-1 1 1 1 1 1h2a3 3 0 0 0 3-3 3 3 0 0 0-3-3m-7-6c-1.84 0-3.5.83-4.59 2.13-.48-.91-.56-2.04-.1-3.06a3.487 3.487 0 0 1 4.62-1.77c1.25.56 2.01 1.76 2.07 3.04-.62-.22-1.3-.34-2-.34m1.55-6.37c-.55-.23-1.1-.4-1.67-.51l2.49-1.3.9 2.89c-.51-.42-1.08-.78-1.72-1.08m-7.46.81c-.49.35-.92.75-1.29 1.19l.11-2.81 2.96.68c-.62.21-1.22.53-1.78.94M18 8.71c-.09-.59-.22-1.16-.41-1.71l2.38 1.5-2.05 2.23c.11-.65.13-1.33.08-2.02M3.04 10.3c.07.6.21 1.17.39 1.7l-2.37-1.5L3.1 8.28c-.1.65-.13 1.33-.06 2.02M11.8 15h2.45l-1.64 3.27h1.64L11.18 24l.62-4.09H9.75"/></svg>���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-partly-rainy.svg�������������������0000664�0000000�0000000�00000001725�14753064456�0030225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.75 4.47c2.35 1.03 3.6 3.56 3.17 5.99A6 6 0 0 1 18 15v.17a3 3 0 0 1 1-.17 3 3 0 0 1 3 3 3 3 0 0 1-3 3h-2s-1 0-1-1 1-1 1-1h2a1 1 0 0 0 1-1 1 1 0 0 0-1-1h-3v-2a4 4 0 0 0-4-4 4 4 0 0 0-4 4H6a2 2 0 0 0-2 2 2 2 0 0 0 2 2h1s1 0 1 1-1 1-1 1H6a4 4 0 0 1-4-4 4 4 0 0 1 4-4h.27C5 11.45 4.6 9.24 5.5 7.25c1.22-2.75 4.47-4.01 7.25-2.78m-.82 1.83c-1.77-.8-3.84.01-4.62 1.77-.46 1.02-.38 2.15.1 3.06A5.99 5.99 0 0 1 12 9c.7 0 1.38.12 2 .34a3.51 3.51 0 0 0-2.07-3.04m1.62-3.67c-.55-.23-1.1-.4-1.67-.51l2.49-1.3.9 2.89c-.51-.42-1.08-.78-1.72-1.08m-7.46.81c-.49.35-.92.75-1.29 1.19l.11-2.81 2.96.68c-.62.21-1.22.53-1.78.94M18 8.71c-.09-.59-.22-1.16-.41-1.71l2.38 1.5-2.05 2.23c.11-.65.13-1.33.08-2.02M3.04 10.3c.07.6.21 1.17.39 1.7l-2.37-1.5L3.1 8.28c-.1.65-.13 1.33-.06 2.02M12 18.91c.59.91 1 1.72 1 2.09a1 1 0 0 1-1 1 1 1 0 0 1-1-1c0-.37.41-1.18 1-2.09m0-3.29S9 19 9 21a3 3 0 0 0 3 3 3 3 0 0 0 3-3c0-2-3-5.38-3-5.38"/></svg>�������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-partly-snowy-rainy.svg�������������0000664�0000000�0000000�00000002455�14753064456�0031403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.55 2.66c-.55-.24-1.1-.4-1.67-.51L14.37.84l.9 2.89a7.7 7.7 0 0 0-1.72-1.07m-7.46.8q-.735.525-1.29 1.2l.11-2.82 2.96.69c-.62.2-1.22.52-1.78.93M18 8.73c-.09-.58-.22-1.16-.41-1.7l2.38 1.5-2.05 2.23c.11-.66.13-1.34.08-2.03M3.04 10.32c.07.6.21 1.18.39 1.71l-2.37-1.5L3.1 8.3c-.1.65-.13 1.34-.06 2.02m13.64 11.89c0 .99-.77 1.79-1.73 1.79-.95 0-1.72-.8-1.72-1.79 0-1.18 1.72-3.18 1.72-3.18s1.73 2 1.73 3.18m-10.65-.76c-.1-.38.12-.77.51-.87l1.59-.43L6.96 19a.7.7 0 0 1 0-1c.27-.3.74-.3 1.04 0l1.14 1.14.41-1.58c.1-.39.5-.62.88-.51.39.1.62.5.5.88l-.43 1.57 1.6-.4c.4-.1.78.11.9.5a.74.74 0 0 1-.53.87l-1.58.42 1.16 1.16c.28.27.28.74 0 1.02s-.74.28-1.02 0L9.87 21.9l-.42 1.6c-.1.38-.5.6-.88.5-.39-.1-.6-.5-.51-.88l.44-1.57-1.59.41c-.41.1-.78-.12-.88-.51M19 15.03c-.35 0-.69.05-1 .16v-.16c0-1.82-.81-3.45-2.08-4.53.43-2.45-.82-4.97-3.17-6-2.78-1.23-6.03.03-7.25 2.78-.9 1.99-.5 4.19.77 5.75H6c-2.21 0-4 1.78-4 4 0 1.14.5 2.17 1.27 2.9 0 0 .7.71 1.41 0s0-1.43 0-1.43c-.41-.35-.68-.88-.68-1.47a2 2 0 0 1 2-2h2c0-2.22 1.79-4 4-4a4 4 0 0 1 4 4v2h3a1 1 0 0 1 1 1c0 .54-.45 1-1 1h-1s-1 0-1 1 1 1 1 1h1a3 3 0 0 0 3-3c0-1.66-1.34-3-3-3m-7-6c-1.84 0-3.5.82-4.59 2.13a3.51 3.51 0 0 1-.1-3.07 3.496 3.496 0 0 1 4.62-1.77A3.52 3.52 0 0 1 14 9.37c-.62-.22-1.3-.34-2-.34"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-partly-snowy.svg�������������������0000664�0000000�0000000�00000002254�14753064456�0030260�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 19.03a2 2 0 0 1-2-2 2 2 0 0 1 2-2h2c0-2.22 1.79-4 4-4a4 4 0 0 1 4 4v2h3a1 1 0 0 1 1 1c0 .54-.45 1-1 1h-2s-1 0-1 1 1 1 1 1h2a3 3 0 0 0 3-3c0-1.66-1.34-3-3-3-.35 0-.69.05-1 .16v-.16c0-1.82-.81-3.45-2.08-4.53.43-2.45-.82-4.97-3.17-6-2.78-1.23-6.03.03-7.25 2.78-.9 1.99-.5 4.19.77 5.75H6c-2.21 0-4 1.78-4 4a4 4 0 0 0 4 4s1 0 1-1-1-1-1-1m6-10c-1.84 0-3.5.82-4.59 2.13a3.51 3.51 0 0 1-.1-3.07 3.496 3.496 0 0 1 4.62-1.77A3.52 3.52 0 0 1 14 9.37c-.62-.22-1.3-.34-2-.34m1.55-6.37c-.55-.24-1.1-.4-1.67-.51L14.37.84l.9 2.89a7.7 7.7 0 0 0-1.72-1.07m-7.46.8q-.735.525-1.29 1.2l.11-2.82 2.96.69c-.62.2-1.22.52-1.78.93M18 8.73c-.09-.58-.22-1.16-.41-1.7l2.38 1.5-2.05 2.23c.11-.66.13-1.34.08-2.03M3.04 10.32c.07.6.21 1.18.39 1.71l-2.37-1.5L3.1 8.3c-.1.65-.13 1.34-.06 2.02m4.99 11.13c.1.39.5.61.88.51l1.59-.42-.44 1.57c-.1.39.13.79.51.89s.78-.13.88-.5l.42-1.59 1.16 1.16c.27.28.74.28 1.02 0s.28-.75 0-1.02l-1.16-1.17 1.58-.41c.38-.1.61-.5.53-.88-.12-.38-.5-.59-.91-.51l-1.59.42.44-1.57c.1-.39-.12-.78-.51-.88-.38-.1-.77.12-.88.51l-.41 1.58L10 17.97c-.3-.28-.77-.28-1.05 0-.27.3-.27.75 0 1.03l1.16 1.16-1.57.41c-.39.11-.61.5-.51.88"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-pouring.svg������������������������0000664�0000000�0000000�00000001424�14753064456�0027251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 12c.53.14.85.69.71 1.22l-1.3 4.83c-.14.54-.69.85-1.22.71a.967.967 0 0 1-.69-1.22l1.28-4.83c.14-.54.69-.85 1.22-.71m4 0c.53.14.85.69.71 1.22l-2.07 7.73c-.14.55-.69.85-1.23.71-.53-.16-.85-.69-.71-1.23l2.08-7.72c.14-.54.69-.85 1.22-.71m4 0c.53.14.85.69.71 1.22l-1.3 4.83c-.14.54-.69.85-1.22.71a.967.967 0 0 1-.69-1.22l1.28-4.83c.14-.54.69-.85 1.22-.71m0-2V9a5 5 0 0 0-5-5C9.5 4 7.45 5.82 7.06 8.19 6.73 8.07 6.37 8 6 8a3 3 0 0 0-3 3c0 1.11.6 2.08 1.5 2.6v-.01c.5.28.64.91.37 1.37-.28.47-.87.64-1.37.36v.01A4.98 4.98 0 0 1 1 11a5 5 0 0 1 5-5c1-2.35 3.3-4 6-4 3.43 0 6.24 2.66 6.5 6.03L19 8a4 4 0 0 1 4 4c0 1.5-.8 2.77-2 3.46-.5.27-1.09.11-1.37-.37-.27-.48-.13-1.09.37-1.37v.01c.6-.34 1-.99 1-1.73a2 2 0 0 0-2-2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-rainy.svg��������������������������0000664�0000000�0000000�00000001215�14753064456�0026706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 14.03a1 1 0 0 1 1 1c0 .55-.45 1-1 1-2.76 0-5-2.24-5-5s2.24-5 5-5c1-2.35 3.3-4 6-4 3.43 0 6.24 2.66 6.5 6.03l.5-.03a4 4 0 0 1 4 4c0 2.2-1.79 4-4 4h-1c-.55 0-1-.45-1-1 0-.56.45-1 1-1h1a2 2 0 0 0 2-2 2 2 0 0 0-2-2h-2v-1c0-2.76-2.24-5-5-5-2.5 0-4.55 1.81-4.94 4.18-.33-.12-.69-.18-1.06-.18a3 3 0 0 0-3 3 3 3 0 0 0 3 3m6 .12c.18.24.37.51.56.79C13 15.56 14 17.03 14 18a2 2 0 0 1-2 2 2 2 0 0 1-2-2c0-.97 1-2.44 1.44-3.06.19-.28.38-.54.56-.79m0-3.12-.5.56s-.85.96-1.71 2.22C8.93 15.06 8 16.56 8 18a4 4 0 0 0 4 4 4 4 0 0 0 4-4c0-1.44-.93-2.94-1.79-4.19-.86-1.26-1.71-2.22-1.71-2.22"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-snowy-heavy.svg��������������������0000664�0000000�0000000�00000002160�14753064456�0030055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 16.36c-.14-.54.18-1.11.73-1.25L7 14.5l-1.67-1.64c-.4-.4-.4-1.05 0-1.46.4-.4 1.07-.4 1.46 0l1.66 1.65.59-2.25c.14-.56.71-.88 1.25-.73.56.14.88.71.71 1.26l-.58 2.25 2.25-.58a.99.99 0 0 1 1.26.71c.15.54-.17 1.11-.73 1.25l-2.25.59 1.65 1.66c.4.39.4 1.06 0 1.46s-1.06.4-1.45 0L9.5 17l-.61 2.27c-.14.56-.71.87-1.25.73-.56-.14-.87-.71-.73-1.26l.59-2.24-2.24.59c-.55.14-1.12-.17-1.26-.73M1 10a5 5 0 0 1 5-5c1-2.35 3.3-4 6-4 3.43 0 6.24 2.66 6.5 6.03L19 7a4 4 0 0 1 4 4 4 4 0 0 1-4 4 1 1 0 0 1-1-1 1 1 0 0 1 1-1 2 2 0 0 0 2-2 2 2 0 0 0-2-2h-2V8a5 5 0 0 0-5-5C9.5 3 7.45 4.82 7.06 7.19 6.73 7.07 6.37 7 6 7a3 3 0 0 0-3 3c0 .85.35 1.61.91 2.16.36.39.35 1-.03 1.38a.996.996 0 0 1-1.41 0A5 5 0 0 1 1 10m13.03 10.43c.1.39.47.61.88.51l1.59-.44-.44 1.59c-.1.41.12.78.51.88.38.11.78-.12.88-.51l.41-1.57 1.17 1.16c.27.28.74.28 1.02 0s.28-.75 0-1.02l-1.16-1.17 1.57-.41c.39-.1.62-.5.51-.88-.1-.39-.47-.61-.88-.51l-1.59.44.44-1.59c.1-.41-.12-.78-.51-.88a.71.71 0 0 0-.88.51l-.41 1.57-1.17-1.16a.724.724 0 0 0-1.02 0c-.28.29-.28.75 0 1.02l1.16 1.17-1.57.41c-.39.1-.62.5-.51.88"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-snowy-rainy.svg��������������������0000664�0000000�0000000�00000001546�14753064456�0030072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 18.67c0 1.29-1 2.33-2.25 2.33S14 19.96 14 18.67c0-1.55 2.25-4.17 2.25-4.17s2.25 2.62 2.25 4.17M4 17.36c-.14-.54.18-1.11.73-1.25L7 15.5l-1.67-1.64c-.4-.4-.4-1.05 0-1.46.4-.4 1.07-.4 1.46 0l1.66 1.65.59-2.25c.14-.56.71-.88 1.25-.73.56.14.88.71.71 1.26l-.58 2.25 2.25-.58a.99.99 0 0 1 1.26.71c.15.54-.17 1.11-.73 1.25l-2.25.59 1.65 1.66c.4.39.4 1.06 0 1.46s-1.06.4-1.45 0L9.5 18l-.61 2.27c-.14.56-.71.87-1.25.73-.56-.14-.87-.71-.73-1.26l.59-2.24-2.24.59c-.55.14-1.12-.17-1.26-.73M1 11a5 5 0 0 1 5-5c1-2.35 3.3-4 6-4 3.43 0 6.24 2.66 6.5 6.03L19 8a4 4 0 0 1 4 4 4 4 0 0 1-4 4 1 1 0 0 1-1-1 1 1 0 0 1 1-1 2 2 0 0 0 2-2 2 2 0 0 0-2-2h-2V9a5 5 0 0 0-5-5C9.5 4 7.45 5.82 7.06 8.19 6.73 8.07 6.37 8 6 8a3 3 0 0 0-3 3c0 .85.35 1.61.91 2.16.36.39.35 1-.03 1.38a.996.996 0 0 1-1.41 0A5 5 0 0 1 1 11"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-snowy.svg��������������������������0000664�0000000�0000000�00000001212�14753064456�0026740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 14a1 1 0 0 1 1 1 1 1 0 0 1-1 1 5 5 0 0 1-5-5 5 5 0 0 1 5-5c1-2.35 3.3-4 6-4 3.43 0 6.24 2.66 6.5 6.03L19 8a4 4 0 0 1 4 4 4 4 0 0 1-4 4h-1a1 1 0 0 1-1-1 1 1 0 0 1 1-1h1a2 2 0 0 0 2-2 2 2 0 0 0-2-2h-2V9a5 5 0 0 0-5-5C9.5 4 7.45 5.82 7.06 8.19 6.73 8.07 6.37 8 6 8a3 3 0 0 0-3 3 3 3 0 0 0 3 3m1.88 4.07 2.19-.57-1.61-1.62c-.39-.38-.39-1.02 0-1.42.39-.39 1.04-.39 1.42 0l1.62 1.61.57-2.19a1 1 0 1 1 1.93.52l-.59 2.19L15.6 16a1 1 0 1 1 .52 1.93l-2.19.57 1.61 1.62c.39.38.39 1.03 0 1.42s-1.04.39-1.42 0l-1.62-1.61-.57 2.19A1 1 0 1 1 10 21.6l.59-2.19L8.4 20a1 1 0 1 1-.52-1.93"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-sunny-alert.svg��������������������0000664�0000000�0000000�00000000706�14753064456�0030051�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 7a5 5 0 0 0-5 5 5 5 0 0 0 5 5 5 5 0 0 0 5-5 5 5 0 0 0-5-5m0 8a3 3 0 0 1-3-3 3 3 0 0 1 3-3 3 3 0 0 1 3 3 3 3 0 0 1-3 3m0-13 2.39 3.42C13.65 5.15 12.84 5 12 5s-1.65.15-2.39.42zM3.34 7l4.16-.35A7.2 7.2 0 0 0 5.94 8.5c-.44.74-.69 1.5-.83 2.29zm.02 10 1.76-3.77a7.131 7.131 0 0 0 2.38 4.14zM12 22l-2.41-3.44c.74.27 1.55.44 2.41.44.82 0 1.63-.17 2.37-.44M19 13V7h2v6zm0 4v-2h2v2"/></svg>����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-sunny-off.svg����������������������0000664�0000000�0000000�00000001450�14753064456�0027511�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.11 21.46 2.39 1.73 1.11 3l3.86 3.86L3.34 7l1.77 3.79c.14-.79.39-1.55.83-2.29.06-.14.19-.26.28-.39l1.44 1.44C7.25 10.27 7 11.11 7 12c0 2.76 2.24 5 5 5 .9 0 1.73-.25 2.45-.66l6.39 6.39zM12 15c-1.66 0-3-1.34-3-3 0-.33.07-.64.17-.94l3.77 3.77c-.3.1-.61.17-.94.17m6.05-6.5c-.42-.72-.95-1.35-1.55-1.86l4.15.36-1.77 3.79c-.14-.79-.41-1.56-.83-2.29M12 7c2.76 0 5 2.24 5 5 0 .54-.11 1.05-.26 1.54L15 11.78A3.06 3.06 0 0 0 12.22 9l-1.75-1.73c.48-.16.99-.27 1.53-.27m0-2c-.84 0-1.65.15-2.39.42L12 2l2.39 3.42C13.65 5.15 12.84 5 12 5m6.87 8.21L20.64 17l-.4.04-1.99-1.99c.29-.6.51-1.21.62-1.84M12 19c.82 0 1.63-.17 2.37-.44L12 22l-2.41-3.44c.74.27 1.55.44 2.41.44m-6.05-3.5c.42.74.96 1.36 1.55 1.87L3.36 17l1.76-3.77c.14.77.41 1.55.83 2.27"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-sunny.svg��������������������������0000664�0000000�0000000�00000001037�14753064456�0026742�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3m0-7 2.39 3.42C13.65 5.15 12.84 5 12 5s-1.65.15-2.39.42zM3.34 7l4.16-.35A7.2 7.2 0 0 0 5.94 8.5c-.44.74-.69 1.5-.83 2.29zm.02 10 1.76-3.77a7.131 7.131 0 0 0 2.38 4.14zM20.65 7l-1.77 3.79a7.02 7.02 0 0 0-2.38-4.15zm-.01 10-4.14.36c.59-.51 1.12-1.14 1.54-1.86.42-.73.69-1.5.83-2.29zM12 22l-2.41-3.44c.74.27 1.55.44 2.41.44.82 0 1.63-.17 2.37-.44z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-sunset-down.svg��������������������0000664�0000000�0000000�00000001045�14753064456�0030053�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 12h4a5 5 0 0 1 5-5 5 5 0 0 1 5 5h4a1 1 0 0 1 1 1 1 1 0 0 1-1 1H3a1 1 0 0 1-1-1 1 1 0 0 1 1-1m12 0a3 3 0 0 0-3-3 3 3 0 0 0-3 3zM12 2l2.39 3.42C13.65 5.15 12.84 5 12 5s-1.65.15-2.39.42zM3.34 7l4.16-.35A7.2 7.2 0 0 0 5.94 8.5c-.44.74-.69 1.5-.83 2.29zm17.31 0-1.77 3.79a7.02 7.02 0 0 0-2.38-4.15zm-7.94 13.71 3.11-3.11c.39-.39.39-1.03 0-1.42a.996.996 0 0 0-1.41 0L12 18.59l-2.41-2.41a.996.996 0 0 0-1.41 0c-.39.39-.39 1.03 0 1.42l3.11 3.11c.21.19.45.29.71.29s.5-.1.71-.29"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-sunset-up.svg����������������������0000664�0000000�0000000�00000000767�14753064456�0027542�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 12h4a5 5 0 0 1 5-5 5 5 0 0 1 5 5h4a1 1 0 0 1 1 1 1 1 0 0 1-1 1H3a1 1 0 0 1-1-1 1 1 0 0 1 1-1m12 0a3 3 0 0 0-3-3 3 3 0 0 0-3 3zM12 2l2.39 3.42C13.65 5.15 12.84 5 12 5s-1.65.15-2.39.42zM3.34 7l4.16-.35A7.2 7.2 0 0 0 5.94 8.5c-.44.74-.69 1.5-.83 2.29zm17.31 0-1.77 3.79a7.02 7.02 0 0 0-2.38-4.15zm-7.94 9.3 3.11 3.11a.996.996 0 1 1-1.41 1.41L12 18.41l-2.41 2.41a.996.996 0 1 1-1.41-1.41l3.11-3.11c.21-.2.45-.3.71-.3s.5.1.71.3"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/material/weather-sunset.svg�������������������������0000664�0000000�0000000�00000000767�14753064456�0027120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 12h4a5 5 0 0 1 5-5 5 5 0 0 1 5 5h4a1 1 0 0 1 1 1 1 1 0 0 1-1 1H3a1 1 0 0 1-1-1 1 1 0 0 1 1-1m2 4h14a1 1 0 0 1 1 1 1 1 0 0 1-1 1H5a1 1 0 0 1-1-1 1 1 0 0 1 1-1m12 4a1 1 0 0 1 1 1 1 1 0 0 1-1 1H7a1 1 0 0 1-1-1 1 1 0 0 1 1-1zm-2-8a3 3 0 0 0-3-3 3 3 0 0 0-3 3zM12 2l2.39 3.42C13.65 5.15 12.84 5 12 5s-1.65.15-2.39.42zM3.34 7l4.16-.35A7.2 7.2 0 0 0 5.94 8.5c-.44.74-.69 1.5-.83 2.29zm17.31 0-1.77 3.79a7.02 7.02 0 0 0-2.38-4.15z"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/material/weather-tornado.svg������������������������0000664�0000000�0000000�00000000627�14753064456�0027240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 5H3a1 1 0 0 1-1-1 1 1 0 0 1 1-1h18a1 1 0 0 1 1 1 1 1 0 0 1-1 1m-1 3a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1 1 1 0 0 0 1 1h14a1 1 0 0 0 1-1m1 4a1 1 0 0 0-1-1H10a1 1 0 0 0-1 1 1 1 0 0 0 1 1h10a1 1 0 0 0 1-1m-5 4a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1 1 1 0 0 0 1 1h6a1 1 0 0 0 1-1m-3 4a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1 1 1 0 0 0 1 1h2a1 1 0 0 0 1-1"/></svg>���������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-windy-variant.svg������������������0000664�0000000�0000000�00000001010�14753064456�0030351�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6 6 .69.06A5.5 5.5 0 0 1 12 2a5.5 5.5 0 0 1 5.5 5.5l-.08.95c.46-.29 1-.45 1.58-.45a3 3 0 0 1 3 3 3 3 0 0 1-3 3H6a4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2h13a1 1 0 0 0 1-1 1 1 0 0 0-1-1h-3.5V7.5A3.5 3.5 0 0 0 12 4a3.5 3.5 0 0 0-3.5 3.5V8zm12 10H4a1 1 0 0 1-1-1 1 1 0 0 1 1-1h14a3 3 0 0 1 3 3 3 3 0 0 1-3 3c-.83 0-1.58-.34-2.12-.88-.38-.39-.38-1.02 0-1.41a.996.996 0 0 1 1.41 0c.18.18.43.29.71.29a1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weather-windy.svg��������������������������0000664�0000000�0000000�00000001165�14753064456�0026722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 10a1 1 0 0 1-1-1 1 1 0 0 1 1-1h8a2 2 0 0 0 2-2 2 2 0 0 0-2-2c-.55 0-1.05.22-1.41.59a.973.973 0 0 1-1.42 0c-.39-.39-.39-1.03 0-1.42C9.9 2.45 10.9 2 12 2a4 4 0 0 1 4 4 4 4 0 0 1-4 4zm15 2a1 1 0 0 0 1-1 1 1 0 0 0-1-1c-.28 0-.53.11-.71.29a.996.996 0 0 1-1.41 0c-.38-.39-.38-1.02 0-1.41C17.42 8.34 18.17 8 19 8a3 3 0 0 1 3 3 3 3 0 0 1-3 3H5a1 1 0 0 1-1-1 1 1 0 0 1 1-1zm-1 6H4a1 1 0 0 1-1-1 1 1 0 0 1 1-1h14a3 3 0 0 1 3 3 3 3 0 0 1-3 3c-.83 0-1.58-.34-2.12-.88-.38-.39-.38-1.02 0-1.41a.996.996 0 0 1 1.41 0c.18.18.43.29.71.29a1 1 0 0 0 1-1 1 1 0 0 0-1-1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/web-box.svg��������������������������������0000664�0000000�0000000�00000001375�14753064456�0025501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.95 13.4H6.58a5.5 5.5 0 0 1 0-2.8h2.37a12 12 0 0 0-.1 1.4 12 12 0 0 0 .1 1.4M7.16 9.2H9.2a12 12 0 0 1 .98-2.49A5.55 5.55 0 0 0 7.16 9.2m9.68 0a5.6 5.6 0 0 0-3.03-2.49 11 11 0 0 1 .97 2.49M12 17.57a9.5 9.5 0 0 0 1.34-2.77h-2.68A9.5 9.5 0 0 0 12 17.57m0-11.15a9.5 9.5 0 0 0-1.34 2.78h2.68A9.5 9.5 0 0 0 12 6.42M7.16 14.8a5.6 5.6 0 0 0 3.02 2.49 12 12 0 0 1-.98-2.49M21 5v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2m-2 7a7 7 0 1 0-7 7 7 7 0 0 0 7-7m-3.85 0a12 12 0 0 1-.1 1.4h2.37a5.5 5.5 0 0 0 0-2.8h-2.37a12 12 0 0 1 .1 1.4m-1.34 5.29a5.62 5.62 0 0 0 3.03-2.49h-2.06a11 11 0 0 1-.97 2.49m-3.45-6.69a8.8 8.8 0 0 0 0 2.8h3.28a10 10 0 0 0 .11-1.4 10 10 0 0 0-.11-1.4Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/web-cancel.svg�����������������������������0000664�0000000�0000000�00000001770�14753064456�0026135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.82 14H9.66c-.1-.66-.16-1.32-.16-2s.06-1.35.16-2h4.68c.09.65.16 1.32.16 2 0 .5-.04 1-.1 1.46.6-.5 1.32-.89 2.1-1.14V12c0-.68-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2v.18c.7.17 1.35.45 1.95.82.05-.32.05-.66.05-1 0-5.5-4.5-10-10-10C6.47 2 2 6.5 2 12s4.5 10 10 10c.34 0 .68 0 1-.05-.41-.66-.71-1.4-.87-2.2-.04.07-.08.14-.13.21-.83-1.2-1.5-2.53-1.91-3.96h2.41c.31-.75.76-1.42 1.32-2m5.1-6h-2.95a15.7 15.7 0 0 0-1.38-3.56c1.84.63 3.37 1.9 4.33 3.56M12 4.03c.83 1.2 1.5 2.54 1.91 3.97h-3.82c.41-1.43 1.08-2.77 1.91-3.97M4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2zm.82 2H8c.35 1.25.8 2.45 1.4 3.56A8 8 0 0 1 5.08 16M8 8H5.08A7.92 7.92 0 0 1 9.4 4.44C8.8 5.55 8.35 6.75 8 8m10.5 6C16 14 14 16 14 18.5s2 4.5 4.5 4.5 4.5-2 4.5-4.5-2-4.5-4.5-4.5m0 7.5c-1.66 0-3-1.34-3-3 0-.56.15-1.08.42-1.5L20 21.08c-.42.27-.94.42-1.5.42m2.58-1.5L17 15.92c.42-.27.94-.42 1.5-.42 1.66 0 3 1.34 3 3 0 .56-.15 1.08-.42 1.5"/></svg>��������mkdocs-material-9.6.4/material/templates/.icons/material/web-check.svg������������������������������0000664�0000000�0000000�00000001577�14753064456�0025772�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 12c0-.68-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2 0 .37-.03.73-.08 1.08.69.1 1.33.32 1.92.64.1-.56.16-1.13.16-1.72 0-5.5-4.5-10-10-10C6.47 2 2 6.5 2 12s4.5 10 10 10c.59 0 1.16-.06 1.72-.16A5.9 5.9 0 0 1 13 19c0-.29.03-.57.07-.85-.32.63-.67 1.24-1.07 1.81-.83-1.2-1.5-2.53-1.91-3.96h3.72a5.95 5.95 0 0 1 2.59-2.4c.06-.53.1-1.06.1-1.6M12 4.03c.83 1.2 1.5 2.54 1.91 3.97h-3.82c.41-1.43 1.08-2.77 1.91-3.97M4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2zm.82 2H8c.35 1.25.8 2.45 1.4 3.56A8 8 0 0 1 5.08 16M8 8H5.08A7.92 7.92 0 0 1 9.4 4.44C8.8 5.55 8.35 6.75 8 8m6.34 6H9.66c-.1-.66-.16-1.32-.16-2s.06-1.35.16-2h4.68c.09.65.16 1.32.16 2s-.07 1.34-.16 2m.25-9.56c1.84.63 3.37 1.9 4.33 3.56h-2.95a15.7 15.7 0 0 0-1.38-3.56m7.91 12.81L17.75 22 15 19l1.16-1.16 1.59 1.59 3.59-3.59z"/></svg>���������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/web-clock.svg������������������������������0000664�0000000�0000000�00000001412�14753064456�0025774�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 12.5v4l3 2 .75-1.25-2.25-1.5V12.5zm7-.11V12c0-5.5-4.5-10-10-10C6.47 2 2 6.5 2 12s4.5 10 10 10c.13 0 .24 0 .37-.03 1.06.65 2.3 1.03 3.63 1.03 3.86 0 7-3.14 7-7 0-1.32-.38-2.56-1-3.61m-2.24-2.28-.17-.11h.15c.01.03.01.07.02.11M18.92 8h-2.95a15.7 15.7 0 0 0-1.38-3.56c1.84.63 3.37 1.9 4.33 3.56M12 4.03c.83 1.2 1.5 2.54 1.91 3.97h-3.82c.41-1.43 1.08-2.77 1.91-3.97M9.66 10h2.75a7 7 0 0 0-2.84 3.24c-.04-.41-.07-.82-.07-1.24 0-.68.06-1.35.16-2M9.4 4.44C8.8 5.55 8.35 6.75 8 8H5.08A7.92 7.92 0 0 1 9.4 4.44M4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2zm.82 2H8c.35 1.25.8 2.45 1.4 3.56A8 8 0 0 1 5.08 16M16 21c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/web-minus.svg������������������������������0000664�0000000�0000000�00000001525�14753064456�0026041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 12c0-.68-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2 0 .37-.03.73-.08 1.08.69.1 1.33.32 1.92.64.1-.56.16-1.13.16-1.72 0-5.5-4.5-10-10-10C6.47 2 2 6.5 2 12s4.5 10 10 10c.59 0 1.16-.06 1.72-.16A5.9 5.9 0 0 1 13 19c0-.29.03-.57.07-.85-.32.63-.67 1.24-1.07 1.81-.83-1.2-1.5-2.53-1.91-3.96h3.72a5.95 5.95 0 0 1 2.59-2.4c.06-.53.1-1.06.1-1.6M12 4.03c.83 1.2 1.5 2.54 1.91 3.97h-3.82c.41-1.43 1.08-2.77 1.91-3.97M4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2zm.82 2H8c.35 1.25.8 2.45 1.4 3.56A8 8 0 0 1 5.08 16M8 8H5.08A7.92 7.92 0 0 1 9.4 4.44C8.8 5.55 8.35 6.75 8 8m6.34 6H9.66c-.1-.66-.16-1.32-.16-2s.06-1.35.16-2h4.68c.09.65.16 1.32.16 2s-.07 1.34-.16 2m.25-9.56c1.84.63 3.37 1.9 4.33 3.56h-2.95a15.7 15.7 0 0 0-1.38-3.56M23 18v2h-8v-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/web-off.svg��������������������������������0000664�0000000�0000000�00000001720�14753064456�0025455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.4 4.44c-.21.39-.4.79-.56 1.2l1.53 1.53c.41-1.12.96-2.17 1.63-3.14.83 1.2 1.5 2.54 1.91 3.97H11.2l2 2h1.14c.06.41.1.84.13 1.27l1.97 1.97c.03-.41.06-.82.06-1.24 0-.68-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2H17.2l3.3 3.28c.94-1.53 1.5-3.34 1.5-5.28 0-5.5-4.5-10-10-10-1.94 0-3.75.56-5.28 1.5L8.18 5c.39-.23.82-.42 1.22-.56M18.92 8h-2.95a15.7 15.7 0 0 0-1.38-3.56c1.84.63 3.37 1.9 4.33 3.56M2.39 1.73 1.11 3l2.95 2.95A9.9 9.9 0 0 0 2 12c0 5.5 4.5 10 10 10 2.28 0 4.37-.77 6.06-2.05l2.78 2.78 1.27-1.27zM5.5 7.37l.61.63H5.08c.12-.22.26-.42.42-.63M4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2zm.82 2H8c.35 1.25.8 2.45 1.4 3.56A8 8 0 0 1 5.08 16m4.42-4c0-.2 0-.39.03-.58L12.11 14H9.66c-.1-.66-.16-1.32-.16-2m2.5 7.96c-.83-1.2-1.5-2.53-1.91-3.96h3.82c-.41 1.43-1.08 2.76-1.91 3.96m2.59-.4c.37-.68.67-1.41.91-2.15l1.12 1.09c-.62.45-1.3.81-2.03 1.06"/></svg>������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/web-plus.svg�������������������������������0000664�0000000�0000000�00000001551�14753064456�0025670�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 12c0-.68-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2 0 .37-.03.73-.08 1.08.69.1 1.33.32 1.92.64.1-.56.16-1.13.16-1.72 0-5.5-4.5-10-10-10C6.47 2 2 6.5 2 12s4.5 10 10 10c.59 0 1.16-.06 1.72-.16A5.9 5.9 0 0 1 13 19c0-.29.03-.57.07-.85-.32.63-.67 1.24-1.07 1.81-.83-1.2-1.5-2.53-1.91-3.96h3.72a5.95 5.95 0 0 1 2.59-2.4c.06-.53.1-1.06.1-1.6M12 4.03c.83 1.2 1.5 2.54 1.91 3.97h-3.82c.41-1.43 1.08-2.77 1.91-3.97M4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2zm.82 2H8c.35 1.25.8 2.45 1.4 3.56A8 8 0 0 1 5.08 16M8 8H5.08A7.92 7.92 0 0 1 9.4 4.44C8.8 5.55 8.35 6.75 8 8m6.34 6H9.66c-.1-.66-.16-1.32-.16-2s.06-1.35.16-2h4.68c.09.65.16 1.32.16 2s-.07 1.34-.16 2m.25-9.56c1.84.63 3.37 1.9 4.33 3.56h-2.95a15.7 15.7 0 0 0-1.38-3.56M23 18v2h-3v3h-2v-3h-3v-2h3v-3h2v3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/web-refresh.svg����������������������������0000664�0000000�0000000�00000001636�14753064456�0026347�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.82 14H9.66c-.1-.66-.16-1.32-.16-2s.06-1.35.16-2h4.68c.09.65.16 1.32.16 2 0 .5-.04 1-.1 1.46.6-.5 1.32-.89 2.1-1.14V12c0-.68-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2v.18c.7.17 1.35.45 1.95.82.05-.32.05-.66.05-1 0-5.5-4.5-10-10-10C6.47 2 2 6.5 2 12s4.5 10 10 10c.34 0 .68 0 1-.05-.41-.66-.71-1.4-.87-2.2-.04.07-.08.14-.13.21-.83-1.2-1.5-2.53-1.91-3.96h2.41c.31-.75.76-1.42 1.32-2m5.1-6h-2.95a15.7 15.7 0 0 0-1.38-3.56c1.84.63 3.37 1.9 4.33 3.56M12 4.03c.83 1.2 1.5 2.54 1.91 3.97h-3.82c.41-1.43 1.08-2.77 1.91-3.97M4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2zm.82 2H8c.35 1.25.8 2.45 1.4 3.56A8 8 0 0 1 5.08 16M8 8H5.08A7.92 7.92 0 0 1 9.4 4.44C8.8 5.55 8.35 6.75 8 8m12.83 7.67L22 14.5v4h-4l1.77-1.77A2.5 2.5 0 1 0 20 20h1.71A3.99 3.99 0 0 1 18 22.5c-2.21 0-4-1.79-4-4s1.79-4 4-4c1.11 0 2.11.45 2.83 1.17"/></svg>��������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/web-remove.svg�����������������������������0000664�0000000�0000000�00000001675�14753064456�0026211�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 12c0-.68-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2 0 .37-.03.73-.08 1.08.69.1 1.33.32 1.92.64.1-.56.16-1.13.16-1.72 0-5.5-4.5-10-10-10C6.47 2 2 6.5 2 12s4.5 10 10 10c.59 0 1.16-.06 1.72-.16A5.9 5.9 0 0 1 13 19c0-.29.03-.57.07-.85-.32.63-.67 1.24-1.07 1.81-.83-1.2-1.5-2.53-1.91-3.96h3.72a5.95 5.95 0 0 1 2.59-2.4c.06-.53.1-1.06.1-1.6M12 4.03c.83 1.2 1.5 2.54 1.91 3.97h-3.82c.41-1.43 1.08-2.77 1.91-3.97M4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2zm.82 2H8c.35 1.25.8 2.45 1.4 3.56A8 8 0 0 1 5.08 16M8 8H5.08A7.92 7.92 0 0 1 9.4 4.44C8.8 5.55 8.35 6.75 8 8m6.34 6H9.66c-.1-.66-.16-1.32-.16-2s.06-1.35.16-2h4.68c.09.65.16 1.32.16 2s-.07 1.34-.16 2m.25-9.56c1.84.63 3.37 1.9 4.33 3.56h-2.95a15.7 15.7 0 0 0-1.38-3.56M20.41 19l2.13 2.12-1.42 1.42L19 20.41l-2.12 2.13-1.41-1.42L17.59 19l-2.12-2.12 1.41-1.41L19 17.59l2.12-2.12 1.42 1.41z"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/web-sync.svg�������������������������������0000664�0000000�0000000�00000001776�14753064456�0025672�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 11.74c0-.59-.07-1.16-.14-1.74h3.38c.08.33.15.67.19 1 .72.07 1.41.23 2.07.5C21.71 6.21 17.35 2 12 2 6.47 2 2 6.5 2 12s4.5 10 10 10c.87 0 1.71-.12 2.5-.33a6.6 6.6 0 0 1-1.46-3.47c-.31.61-.65 1.2-1.04 1.76-.83-1.2-1.5-2.53-1.91-3.96h3.09c.17-.72.46-1.39.85-2H9.66c-.1-.66-.16-1.32-.16-2s.06-1.35.16-2h4.68c.09.65.16 1.32.16 2 0 .5-.04 1-.1 1.5a6.4 6.4 0 0 1 2.1-1.76M4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2zm.82 2H8c.35 1.25.8 2.45 1.4 3.56A8 8 0 0 1 5.08 16M8 8H5.08A7.92 7.92 0 0 1 9.4 4.44C8.8 5.55 8.35 6.75 8 8m2.09 0c.41-1.43 1.08-2.77 1.91-3.97.83 1.2 1.5 2.54 1.91 3.97zm8.83 0h-2.95a15.7 15.7 0 0 0-1.38-3.56c1.84.63 3.37 1.9 4.33 3.56M23 17.5c0 .82-.25 1.58-.67 2.21l-1.09-1.09c.17-.34.26-.72.26-1.12A2.5 2.5 0 0 0 19 15v1.5l-2.25-2.25L19 12v1.5c2.21 0 4 1.79 4 4m-4 1 2.25 2.25L19 23v-1.5c-2.21 0-4-1.79-4-4 0-.82.25-1.58.67-2.21l1.09 1.09c-.17.34-.26.72-.26 1.12A2.5 2.5 0 0 0 19 20z"/></svg>��mkdocs-material-9.6.4/material/templates/.icons/material/web.svg������������������������������������0000664�0000000�0000000�00000001446�14753064456�0024712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.36 14c.08-.66.14-1.32.14-2s-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2m-5.15 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95a8.03 8.03 0 0 1-4.33 3.56M14.34 14H9.66c-.1-.66-.16-1.32-.16-2s.06-1.35.16-2h4.68c.09.65.16 1.32.16 2s-.07 1.34-.16 2M12 19.96c-.83-1.2-1.5-2.53-1.91-3.96h3.82c-.41 1.43-1.08 2.76-1.91 3.96M8 8H5.08A7.92 7.92 0 0 1 9.4 4.44C8.8 5.55 8.35 6.75 8 8m-2.92 8H8c.35 1.25.8 2.45 1.4 3.56A8 8 0 0 1 5.08 16m-.82-2C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2M12 4.03c.83 1.2 1.5 2.54 1.91 3.97h-3.82c.41-1.43 1.08-2.77 1.91-3.97M18.92 8h-2.95a15.7 15.7 0 0 0-1.38-3.56c1.84.63 3.37 1.9 4.33 3.56M12 2C6.47 2 2 6.5 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/webcam-off.svg�����������������������������0000664�0000000�0000000�00000001102�14753064456�0026130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6c1.66 0 3 1.34 3 3 0 .78-.3 1.5-.79 2L10 6.79c.5-.49 1.22-.79 2-.79m0-2c2.76 0 5 2.24 5 5 0 1.33-.53 2.53-1.38 3.42l1.42 1.42A6.95 6.95 0 0 0 19 9c0-3.87-3.13-7-7-7-1.88 0-3.59.75-4.84 1.96l1.42 1.42C9.47 4.53 10.67 4 12 4m10.11 17.46-1.27 1.27-1.38-1.38c-.36.4-.88.65-1.46.65H6c-1.11 0-2-.89-2-2 0-.38.1-.73.29-1.03l1.82-3.16A9 9 0 0 0 12 18c1.21 0 2.37-.25 3.43-.68l-1.58-1.58c-.59.17-1.21.26-1.85.26-3.87 0-7-3.13-7-7 0-.64.09-1.26.26-1.85L1.11 3l1.28-1.27zM12.1 14 7 8.9V9c0 2.76 2.24 5 5 5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/webcam.svg���������������������������������0000664�0000000�0000000�00000000613�14753064456�0025366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a7 7 0 0 1 7 7 7 7 0 0 1-7 7 7 7 0 0 1-7-7 7 7 0 0 1 7-7m0 2a5 5 0 0 0-5 5 5 5 0 0 0 5 5 5 5 0 0 0 5-5 5 5 0 0 0-5-5m0 2a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3M6 22a2 2 0 0 1-2-2c0-.38.1-.73.29-1.03l1.82-3.16A9 9 0 0 0 12 18c2.25 0 4.31-.83 5.89-2.19l1.82 3.16c.19.3.29.65.29 1.03a2 2 0 0 1-2 2z"/></svg>���������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/webhook.svg��������������������������������0000664�0000000�0000000�00000002166�14753064456�0025573�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.46 19C9 21.07 6.15 21.59 4.09 20.15c-2.05-1.44-2.53-4.31-1.09-6.4a4.59 4.59 0 0 1 3.58-1.98l.05 1.43c-.91.07-1.79.54-2.36 1.36-1 1.44-.69 3.38.68 4.35 1.38.96 3.31.59 4.31-.84.31-.45.49-.94.56-1.44v-1.01l5.58-.04.07-.11c.53-.92 1.68-1.24 2.58-.72a1.9 1.9 0 0 1 .68 2.6c-.53.91-1.69 1.23-2.59.71-.41-.23-.7-.6-.83-1.02l-4.07.02a5 5 0 0 1-.78 1.94m7.28-7.14c2.53.31 4.33 2.58 4.02 5.07-.31 2.5-2.61 4.27-5.14 3.96a4.63 4.63 0 0 1-3.43-2.21l1.24-.72a3.22 3.22 0 0 0 2.32 1.45c1.75.21 3.3-.98 3.51-2.65s-1.03-3.2-2.76-3.41c-.54-.06-1.06.01-1.53.18l-.85.44-2.58-4.77h-.22a1.906 1.906 0 0 1-1.85-1.95c.03-1.04.93-1.85 1.98-1.81 1.05.06 1.88.91 1.85 1.95-.02.44-.19.84-.46 1.15l1.9 3.51c.62-.2 1.3-.27 2-.19M8.25 9.14c-1-2.35.06-5.04 2.37-6.02 2.32-.98 5 .13 6 2.48.59 1.37.47 2.87-.2 4.07l-1.24-.72c.42-.81.49-1.8.09-2.73-.68-1.6-2.49-2.37-4.04-1.72-1.56.66-2.26 2.5-1.58 4.1.28.66.75 1.17 1.32 1.51l.39.21-3.07 4.99c.03.05.07.11.1.19.49.91.15 2.06-.77 2.55-.91.49-2.06.13-2.56-.81-.49-.93-.15-2.08.77-2.57.39-.21.82-.26 1.23-.17l2.31-3.77c-.47-.43-.87-.97-1.12-1.59"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/webpack.svg��������������������������������0000664�0000000�0000000�00000000574�14753064456�0025552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.45 17.39-8.09 4.58V18.4l5.04-2.77zm.55-.5V7.31L18.04 9v6.18zm-17.45.5 8.09 4.57V18.4L6.6 15.63zm-.55-.5V7.31L5.96 9v6.18zm.35-10.2L11.64 2v3.45L6.33 8.37l-.05.02zm17.3 0L12.36 2v3.45l5.31 2.93.04.02zm-9.01 10.9-4.97-2.74V9.44l4.97 2.87zm.72 0 4.97-2.73V9.44l-4.97 2.87zM7 8.81l5-2.75 5 2.75-5 2.88z"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/webrtc.svg���������������������������������0000664�0000000�0000000�00000000651�14753064456�0025420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c2.44 0 4.5 1.75 4.91 4.07l.84-.07c2.75 0 5 2.24 5 5a5 5 0 0 1-2.59 4.38 5.015 5.015 0 0 1-4.41 7.37A5 5 0 0 1 12 21.06a5 5 0 0 1-3.75 1.69c-2.75 0-5-2.25-5-5 0-.86.22-1.66.59-2.37A5 5 0 0 1 1.25 11c0-2.76 2.25-5 5-5l.84.07C7.5 3.75 9.56 2 12 2M6.75 20.25 13.66 17H17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h.77z"/></svg>���������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wechat.svg���������������������������������0000664�0000000�0000000�00000001143�14753064456�0025402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 4C5.36 4 2 6.69 2 10c0 1.89 1.08 3.56 2.78 4.66L4 17l2.5-1.5c.89.31 1.87.5 2.91.5A5.2 5.2 0 0 1 9 14c0-3.31 3.13-6 7-6 .19 0 .38 0 .56.03C15.54 5.69 12.78 4 9.5 4m-3 2.5a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m5 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1M16 9c-3.31 0-6 2.24-6 5s2.69 5 6 5c.67 0 1.31-.08 1.91-.25L20 20l-.62-1.87C20.95 17.22 22 15.71 22 14c0-2.76-2.69-5-6-5m-2 2.5a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m4 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weight-gram.svg����������������������������0000664�0000000�0000000�00000000640�14753064456�0026343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.95 10.56C19.75 9.67 18.95 9 18 9h-2.54c.35-.59.54-1.27.54-2a4 4 0 0 0-4-4 4 4 0 0 0-4 4c0 .73.19 1.41.54 2H6c-.95 0-1.75.67-1.95 1.56C2.04 18.57 2 18.78 2 19a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2c0-.22-.04-.43-2.05-8.44M12 5a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m3 8h-4v4h2v-3h2v5h-4c-1.11 0-2-.89-2-2v-4c0-1.11.89-2 2-2h4z"/></svg>������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weight-kilogram.svg������������������������0000664�0000000�0000000�00000000712�14753064456�0027222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3a4 4 0 0 1 4 4c0 .73-.19 1.41-.54 2H18c.95 0 1.75.67 1.95 1.56C21.96 18.57 22 18.78 22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2c0-.22.04-.43 2.05-8.44C4.25 9.67 5.05 9 6 9h2.54A3.9 3.9 0 0 1 8 7a4 4 0 0 1 4-4m0 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m-6 6v8h2v-2.5l1 1V19h2v-2l-2-2 2-2v-2H9v1.5l-1 1V11zm9 0c-1.11 0-2 .89-2 2v4c0 1.11.89 2 2 2h3v-5h-2v3h-1v-4h3v-2z"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weight-lifter.svg��������������������������0000664�0000000�0000000�00000000441�14753064456�0026701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 5c-1.11 0-2 .89-2 2s.89 2 2 2 2-.89 2-2-.89-2-2-2m10-4v5h-2V4H4v2H2V1h2v2h16V1zm-7 10.26V23h-2v-5h-2v5H9V11.26C6.93 10.17 5.5 8 5.5 5.5V5h2v.5C7.5 8 9.5 10 12 10s4.5-2 4.5-4.5V5h2v.5c0 2.5-1.43 4.67-3.5 5.76"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weight-pound.svg���������������������������0000664�0000000�0000000�00000000737�14753064456�0026551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3a4 4 0 0 1 4 4c0 .73-.19 1.41-.54 2H18c.95 0 1.75.67 1.95 1.56C21.96 18.57 22 18.78 22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2c0-.22.04-.43 2.05-8.44C4.25 9.67 5.05 9 6 9h2.54A3.9 3.9 0 0 1 8 7a4 4 0 0 1 4-4m0 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m-6 6v8h5v-2H8v-6zm7 0v8h3c1.11 0 2-.89 2-2v-.5c0-.57-.25-1.12-.68-1.5.43-.38.68-.93.68-1.5V13c0-1.11-.89-2-2-2zm2 2h1v1h-1zm0 3h1v1h-1z"/></svg>���������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/weight.svg���������������������������������0000664�0000000�0000000�00000000527�14753064456�0025423�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3a4 4 0 0 1 4 4c0 .73-.19 1.41-.54 2H18c.95 0 1.75.67 1.95 1.56C21.96 18.57 22 18.78 22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2c0-.22.04-.43 2.05-8.44C4.25 9.67 5.05 9 6 9h2.54A3.9 3.9 0 0 1 8 7a4 4 0 0 1 4-4m0 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/whatsapp.svg�������������������������������0000664�0000000�0000000�00000001705�14753064456�0025762�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.04 2c-5.46 0-9.91 4.45-9.91 9.91 0 1.75.46 3.45 1.32 4.95L2.05 22l5.25-1.38c1.45.79 3.08 1.21 4.74 1.21 5.46 0 9.91-4.45 9.91-9.91 0-2.65-1.03-5.14-2.9-7.01A9.82 9.82 0 0 0 12.04 2m.01 1.67c2.2 0 4.26.86 5.82 2.42a8.23 8.23 0 0 1 2.41 5.83c0 4.54-3.7 8.23-8.24 8.23-1.48 0-2.93-.39-4.19-1.15l-.3-.17-3.12.82.83-3.04-.2-.32a8.2 8.2 0 0 1-1.26-4.38c.01-4.54 3.7-8.24 8.25-8.24M8.53 7.33c-.16 0-.43.06-.66.31-.22.25-.87.86-.87 2.07 0 1.22.89 2.39 1 2.56.14.17 1.76 2.67 4.25 3.73.59.27 1.05.42 1.41.53.59.19 1.13.16 1.56.1.48-.07 1.46-.6 1.67-1.18s.21-1.07.15-1.18c-.07-.1-.23-.16-.48-.27-.25-.14-1.47-.74-1.69-.82-.23-.08-.37-.12-.56.12-.16.25-.64.81-.78.97-.15.17-.29.19-.53.07-.26-.13-1.06-.39-2-1.23-.74-.66-1.23-1.47-1.38-1.72-.12-.24-.01-.39.11-.5.11-.11.27-.29.37-.44.13-.14.17-.25.25-.41.08-.17.04-.31-.02-.43-.06-.11-.56-1.35-.77-1.84-.2-.48-.4-.42-.56-.43-.14 0-.3-.01-.47-.01"/></svg>�����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wheel-barrow.svg���������������������������0000664�0000000�0000000�00000000536�14753064456�0026532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 15.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5m0-1.5c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3M7 8 5 5H2v2h3.13L8 11.3V20h2l2.57-5h1.98c.7-1.19 1.95-2 3.45-2 .88 0 1.69.29 2.35.78L22 8zm2.39 11H9v-6.2l.87 1.31c.36.53.95.85 1.58.89z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wheelchair-accessibility.svg���������������0000664�0000000�0000000�00000001213�14753064456�0031065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.4 11.2-4.1.2 2.3-2.6c.2-.3.3-.8.2-1.3-.1-.3-.2-.6-.5-.8l-5.4-3.2c-.4-.3-1-.2-1.4.1L6.8 6.1c-.5.5-.6 1.2-.1 1.7.4.5 1.2.5 1.7.1l2-1.8 1.9 1.1-4.2 4.3c-.1.1-.1.2-.2.2-.5.2-1 .4-1.4.7L8 13.9c.5-.2 1-.4 1.5-.4 1.9 0 3.5 1.6 3.5 3.5 0 .6-.1 1.1-.4 1.5l1.5 1.5q.9-1.35.9-3c0-1.2-.4-2.4-1.1-3.3l3.3-.3-.2 4.8c-.1.7.4 1.2 1.1 1.3h.1c.6 0 1.1-.5 1.2-1.1l.2-5.9c0-.3-.1-.7-.3-.9-.3-.3-.6-.4-.9-.4M18 5.5a2 2 0 0 0 2-2 2 2 0 0 0-2-2 2 2 0 0 0-2 2 2 2 0 0 0 2 2m-5.5 16.1q-1.35.9-3 .9C6.5 22.5 4 20 4 17q0-1.65.9-3l1.5 1.5c-.2.5-.4 1-.4 1.5 0 1.9 1.6 3.5 3.5 3.5.6 0 1.1-.1 1.5-.4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wheelchair.svg�����������������������������0000664�0000000�0000000�00000000555�14753064456�0026250�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14 16 1.32 1.76C14.32 19.68 12.31 21 10 21c-3.31 0-6-2.69-6-6 0-2.43 1.46-4.5 3.55-5.45l.21 2.17C6.71 12.44 6 13.63 6 15c0 2.21 1.79 4 4 4 1.86 0 3.41-1.28 3.86-3zm5.55.11-1.25.62L15.5 13h-4.59l-.2-2H14V9h-3.5l-.3-3c1.01-.12 1.8-.96 1.8-2a2 2 0 1 0-4 0v.1L9.1 15h5.4l3.2 4.27 2.75-1.37z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/whistle-outline.svg������������������������0000664�0000000�0000000�00000000406�14753064456�0027264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.76 3.7 2.14 4.88 4.43 8a8.2 8.2 0 0 1 1.92-.72M11 9v2h7v.29l-5 1.42v2.79A4.5 4.5 0 1 1 8.5 11H9V9h-.5a6.5 6.5 0 1 0 6.5 6.5v-1.59L22 12V9m-5.76-5.3L13.85 7h2.47l1.54-2.12M9 2v5h2V2Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/whistle.svg��������������������������������0000664�0000000�0000000�00000000412�14753064456�0025604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.5 9A6.5 6.5 0 0 0 2 15.5 6.5 6.5 0 0 0 8.5 22a6.5 6.5 0 0 0 6.5-6.5v-1.59L22 12V9H11v2H9V9zM11 2v5H9V2zM6.35 7.28q-1.005.24-1.92.72L2.14 4.88 3.76 3.7zm11.51-2.4L16.32 7h-2.47l2.39-3.3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/white-balance-auto.svg���������������������0000664�0000000�0000000�00000000451�14753064456�0027601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.3 16-.7-2H6.4l-.7 2H3.8L7 7h2l3.2 9M22 7l-1.2 6.29L19.3 7h-1.6l-1.49 6.29L15 7h-.76C12.77 5.17 10.5 4 8 4a8 8 0 0 0-8 8 8 8 0 0 0 8 8c3.13 0 5.84-1.81 7.15-4.43l.1.43H17l1.5-6.1L20 16h1.75l2.05-9M6.85 12.65h2.3L8 9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/white-balance-incandescent.svg�������������0000664�0000000�0000000�00000000452�14753064456�0031270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.24 18.15 1.8 1.8 1.41-1.42-1.79-1.79M20 12.5h3v-2h-3m-5-4.19V1.5H9v4.81C7.21 7.35 6 9.28 6 11.5a6 6 0 0 0 6 6 6 6 0 0 0 6-6c0-2.22-1.21-4.15-3-5.19M4 10.5H1v2h3m7 9.95h2V19.5h-2m-7.45-.97 1.41 1.42 1.8-1.8-1.42-1.41z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/white-balance-iridescent.svg���������������0000664�0000000�0000000�00000000436�14753064456�0030765�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4.96 19.95 1.8-1.8-1.42-1.41-1.79 1.79m0-14.07 1.79 1.8 1.42-1.42-1.8-1.79m15.49 15.48-1.79-1.79-1.42 1.41 1.8 1.8M13 22.45V19.5h-2v2.95zm6.04-19.4-1.8 1.79 1.42 1.42 1.79-1.8M11 3.5h2V.55h-2M5 14.5h14v-6H5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/white-balance-sunny.svg��������������������0000664�0000000�0000000�00000000527�14753064456�0030011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3.55 19.09 1.41 1.41 1.8-1.79-1.42-1.42M12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6c0-3.32-2.69-6-6-6m8 7h3v-2h-3m-2.76 7.71 1.8 1.79 1.41-1.41-1.79-1.8M20.45 5l-1.41-1.4-1.8 1.79 1.42 1.42M13 1h-2v3h2M6.76 5.39 4.96 3.6 3.55 5l1.79 1.81zM1 13h3v-2H1m12 9h-2v3h2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/widgets-outline.svg������������������������0000664�0000000�0000000�00000000336�14753064456�0027255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.7 4.5 2.8 2.8-2.8 2.8-2.8-2.8zM9 5v4H5V5zm10 10v4h-4v-4zM16.7 1.7 11 7.3l5.7 5.7H13v8h8v-8h-4.3l5.6-5.7zM11 3H3v8h8zM9 15v4H5v-4zm2-2H3v8h8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/widgets.svg��������������������������������0000664�0000000�0000000�00000000240�14753064456�0025572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h8v4.34l5.66-5.65 5.65 5.65L16.66 13H21v8h-8v-8h3.66L11 7.34V11H3zm0 10h8v8H3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-alert.svg�����������������������������0000664�0000000�0000000�00000000603�14753064456�0026172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.24 5H18v2.25A15 15 0 0 0 12 6C8.62 6 5.5 7.12 3 9L1.2 6.6C4.21 4.34 7.95 3 12 3c2.97 0 5.77.73 8.24 2M8.4 16.2 12 21l3.6-4.8c-1-.75-2.25-1.2-3.6-1.2s-2.6.45-3.6 1.2m-3.6-4.8 1.8 2.4C8.1 12.67 9.97 12 12 12s3.9.67 5.4 1.8l.6-.8v-2.38A11.87 11.87 0 0 0 12 9c-2.7 0-5.19.89-7.2 2.4M20 17h2v-2h-2zm0-10v6h2V7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-arrow-down.svg������������������������0000664�0000000�0000000�00000000714�14753064456�0027165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6C8.62 6 5.5 7.12 3 9L1.2 6.6C4.21 4.34 7.95 3 12 3s7.79 1.34 10.8 3.6L21 9c-2.5-1.88-5.62-3-9-3m0 9c-1.35 0-2.6.45-3.6 1.2L12 21l1.04-1.39c-.04-.2-.04-.4-.04-.61 0-1.34.44-2.57 1.19-3.57-.69-.27-1.42-.43-2.19-.43m4.84-1.59c.34-.14.71-.24 1.08-.31l1.28-1.7C17.19 9.89 14.7 9 12 9s-5.19.89-7.2 2.4l1.8 2.4C8.1 12.67 9.97 12 12 12c1.78 0 3.44.5 4.84 1.41M20 16h-2v4h-2l3 3 3-3h-2z"/></svg>����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-arrow-left-right.svg������������������0000664�0000000�0000000�00000000736�14753064456�0030267�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 12c-2.03 0-3.9.67-5.4 1.8l-1.8-2.4C6.81 9.89 9.3 9 12 9s5.19.89 7.2 2.4l-1.28 1.7c-.37.07-.74.17-1.08.31C15.44 12.5 13.78 12 12 12m9-3 1.8-2.4C19.79 4.34 16.05 3 12 3S4.21 4.34 1.2 6.6L3 9c2.5-1.88 5.62-3 9-3s6.5 1.12 9 3m-9 6c-1.35 0-2.6.45-3.6 1.2L12 21l1.04-1.39c-.04-.2-.04-.4-.04-.61 0-1.34.44-2.57 1.19-3.57-.69-.27-1.42-.43-2.19-.43m6 3.5L15 21l3 2.5V22h4v-2h-4zm5-1.5-3-2.5V16h-4v2h4v1.5z"/></svg>����������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-arrow-left.svg������������������������0000664�0000000�0000000�00000000675�14753064456�0027156�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 12c-2.03 0-3.9.67-5.4 1.8l-1.8-2.4C6.81 9.89 9.3 9 12 9s5.19.89 7.2 2.4l-1.28 1.7c-.37.07-.74.17-1.08.31C15.44 12.5 13.78 12 12 12m9-3 1.8-2.4C19.79 4.34 16.05 3 12 3S4.21 4.34 1.2 6.6L3 9c2.5-1.88 5.62-3 9-3s6.5 1.12 9 3m-9 6c-1.35 0-2.6.45-3.6 1.2L12 21l1.04-1.39c-.04-.2-.04-.4-.04-.61 0-1.34.44-2.57 1.19-3.57-.69-.27-1.42-.43-2.19-.43m6 1-3 3 3 3v-2h4v-2h-4z"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-arrow-right.svg�����������������������0000664�0000000�0000000�00000000711�14753064456�0027330�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6C8.62 6 5.5 7.12 3 9L1.2 6.6C4.21 4.34 7.95 3 12 3s7.79 1.34 10.8 3.6L21 9c-2.5-1.88-5.62-3-9-3m4.84 7.41c.34-.14.71-.24 1.08-.31l1.28-1.7C17.19 9.89 14.7 9 12 9s-5.19.89-7.2 2.4l1.8 2.4C8.1 12.67 9.97 12 12 12c1.78 0 3.44.5 4.84 1.41M12 15c-1.35 0-2.6.45-3.6 1.2L12 21l1.04-1.39c-.04-.2-.04-.4-.04-.61 0-1.34.44-2.57 1.19-3.57-.69-.27-1.42-.43-2.19-.43m11 4-3-3v2h-4v2h4v2z"/></svg>�������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-arrow-up-down.svg���������������������0000664�0000000�0000000�00000000734�14753064456�0027611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 12c-2.03 0-3.9.67-5.4 1.8l-1.8-2.4C6.81 9.89 9.3 9 12 9s5.19.89 7.2 2.4l-1.28 1.7c-.37.07-.74.17-1.08.31C15.44 12.5 13.78 12 12 12m9-3 1.8-2.4C19.79 4.34 16.05 3 12 3S4.21 4.34 1.2 6.6L3 9c2.5-1.88 5.62-3 9-3s6.5 1.12 9 3m-9 6c-1.35 0-2.6.45-3.6 1.2L12 21l1.04-1.39c-.04-.2-.04-.4-.04-.61 0-1.34.44-2.57 1.19-3.57-.69-.27-1.42-.43-2.19-.43m5 0-2.5 3H16v4h2v-4h1.5zm5 5v-4h-2v4h-1.5l2.5 3 2.5-3z"/></svg>������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-arrow-up.svg��������������������������0000664�0000000�0000000�00000000672�14753064456�0026645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 12c-2.03 0-3.9.67-5.4 1.8l-1.8-2.4C6.81 9.89 9.3 9 12 9s5.19.89 7.2 2.4l-1.28 1.7c-.37.07-.74.17-1.08.31C15.44 12.5 13.78 12 12 12m9-3 1.8-2.4C19.79 4.34 16.05 3 12 3S4.21 4.34 1.2 6.6L3 9c2.5-1.88 5.62-3 9-3s6.5 1.12 9 3m-9 6c-1.35 0-2.6.45-3.6 1.2L12 21l1.04-1.39c-.04-.2-.04-.4-.04-.61 0-1.34.44-2.57 1.19-3.57-.69-.27-1.42-.43-2.19-.43m4 3h2v4h2v-4h2l-3-3z"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-cancel.svg����������������������������0000664�0000000�0000000�00000001226�14753064456�0026312�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6C8.62 6 5.5 7.12 3 9L1.2 6.6C4.21 4.34 7.95 3 12 3s7.79 1.34 10.8 3.6L21 9c-2.5-1.88-5.62-3-9-3m3.53 6.72c.89-.46 1.9-.72 2.97-.72h.24l.46-.6C17.19 9.89 14.7 9 12 9s-5.19.89-7.2 2.4l1.8 2.4C8.1 12.67 9.97 12 12 12c1.26 0 2.45.26 3.53.72M12 15c-1.35 0-2.6.45-3.6 1.2L12 21l.34-.46c-.21-.64-.34-1.32-.34-2.04 0-1.26.36-2.42 1-3.42-.34-.05-.67-.08-1-.08m11 3.5c0 2.5-2 4.5-4.5 4.5S14 21 14 18.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5m-3 2.58L15.92 17c-.27.42-.42.94-.42 1.5 0 1.66 1.34 3 3 3 .56 0 1.08-.15 1.5-.42m1.5-2.58c0-1.66-1.34-3-3-3-.56 0-1.08.15-1.5.42L21.08 20c.27-.42.42-.94.42-1.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-check.svg�����������������������������0000664�0000000�0000000�00000000733�14753064456�0026144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 12c-2.03 0-3.9.67-5.4 1.8l-1.8-2.4C6.81 9.89 9.3 9 12 9s5.19.89 7.2 2.4l-1.28 1.7c-.37.07-.74.17-1.08.31C15.44 12.5 13.78 12 12 12m9-3 1.8-2.4C19.79 4.34 16.05 3 12 3S4.21 4.34 1.2 6.6L3 9c2.5-1.88 5.62-3 9-3s6.5 1.12 9 3m-9 6c-1.35 0-2.6.45-3.6 1.2L12 21l1.04-1.39c-.04-.2-.04-.4-.04-.61 0-1.34.44-2.57 1.19-3.57-.69-.27-1.42-.43-2.19-.43m5.75 4.43-1.59-1.59L15 19l2.75 3 4.75-4.75-1.16-1.41z"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-cog.svg�������������������������������0000664�0000000�0000000�00000001511�14753064456�0025632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 12c-2.03 0-3.9.67-5.4 1.8l-1.8-2.4C6.81 9.89 9.3 9 12 9s5.19.89 7.2 2.4l-.46.6c-1.08.05-2.11.33-3.01.81A8.9 8.9 0 0 0 12 12m9-3 1.8-2.4C19.79 4.34 16.05 3 12 3S4.21 4.34 1.2 6.6L3 9c2.5-1.88 5.62-3 9-3s6.5 1.12 9 3m-9 6c-1.35 0-2.6.45-3.6 1.2L12 21l.22-.29a6.9 6.9 0 0 1 .95-5.58c-.38-.08-.77-.13-1.17-.13m11.8 5.4c.1 0 .1.1 0 .2l-1 1.7c-.1.1-.2.1-.3.1l-1.2-.4c-.3.2-.5.3-.8.5l-.2 1.3c0 .1-.1.2-.2.2h-2c-.1 0-.2-.1-.3-.2l-.2-1.3c-.3-.1-.6-.3-.8-.5l-1.2.5c-.1 0-.2 0-.3-.1l-1-1.7c-.1-.1 0-.2.1-.3l1.1-.8v-1l-1.1-.8c-.1-.1-.1-.2-.1-.3l1-1.7c.1-.1.2-.1.3-.1l1.2.5c.3-.2.5-.3.8-.5l.2-1.3c0-.1.1-.2.3-.2h2c.1 0 .2.1.2.2l.2 1.3c.3.1.6.3.9.5l1.2-.5c.1 0 .3 0 .3.1l1 1.7c.1.1 0 .2-.1.3l-1.1.8v1zM20.5 19c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5.7 1.5 1.5 1.5 1.5-.7 1.5-1.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-lock-open.svg�������������������������0000664�0000000�0000000�00000001055�14753064456�0026754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6C8.62 6 5.5 7.12 3 9L1.2 6.6C4.21 4.34 7.95 3 12 3s7.79 1.34 10.8 3.6L21 9c-2.5-1.88-5.62-3-9-3m4.31 3.81A11.96 11.96 0 0 0 4.8 11.4l1.8 2.4a8.94 8.94 0 0 1 7.79-1.47 4.58 4.58 0 0 1 1.92-2.52M8.4 16.2 12 21l1-1.33V17.2c0-.7.27-1.39.7-1.94A6 6 0 0 0 12 15c-1.35 0-2.6.45-3.6 1.2m13.4-.2h-4.3v-2.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3v.5h1.3v-.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V16c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-lock.svg������������������������������0000664�0000000�0000000�00000001100�14753064456�0026004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6C8.62 6 5.5 7.12 3 9L1.2 6.6C4.21 4.34 7.95 3 12 3s7.79 1.34 10.8 3.6L21 9c-2.5-1.88-5.62-3-9-3m5.4 4.29A11.98 11.98 0 0 0 4.8 11.4l1.8 2.4C8.1 12.67 9.97 12 12 12c.97 0 1.9.16 2.78.44.56-.99 1.49-1.76 2.62-2.15m-9 5.91L12 21l1-1.33V17.2c0-.7.27-1.39.7-1.94A6 6 0 0 0 12 15c-1.35 0-2.6.45-3.6 1.2M23 17.3v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5V16c.6 0 1.2.6 1.2 1.3m-2.5-2.8c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V16h3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-marker.svg����������������������������0000664�0000000�0000000�00000001055�14753064456�0026346�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6C8.62 6 5.5 7.12 3 9L1.2 6.6C4.21 4.34 7.95 3 12 3s7.79 1.34 10.8 3.6L21 9c-2.5-1.88-5.62-3-9-3m1 9.09c-.31-.06-.65-.09-1-.09-1.35 0-2.6.45-3.6 1.2L12 21l1.8-2.4c-.47-1.02-.8-2.1-.8-3.1zM12 9c-2.7 0-5.19.89-7.2 2.4l1.8 2.4C8.1 12.67 9.97 12 12 12c.73 0 1.43.09 2.1.25.76-1 1.83-1.75 3.07-2.07A11.96 11.96 0 0 0 12 9m10 6.5c0 2.6-3.5 6.5-3.5 6.5S15 18.1 15 15.5c0-1.9 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5m-2.3.1c0-.6-.6-1.2-1.2-1.2s-1.2.5-1.2 1.2c0 .6.5 1.2 1.2 1.2s1.3-.6 1.2-1.2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-minus.svg�����������������������������0000664�0000000�0000000�00000000661�14753064456�0026222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 12c-2.03 0-3.9.67-5.4 1.8l-1.8-2.4C6.81 9.89 9.3 9 12 9s5.19.89 7.2 2.4l-1.28 1.7c-.37.07-.74.17-1.08.31C15.44 12.5 13.78 12 12 12m9-3 1.8-2.4C19.79 4.34 16.05 3 12 3S4.21 4.34 1.2 6.6L3 9c2.5-1.88 5.62-3 9-3s6.5 1.12 9 3m-9 6c-1.35 0-2.6.45-3.6 1.2L12 21l1.04-1.39c-.04-.2-.04-.4-.04-.61 0-1.34.44-2.57 1.19-3.57-.69-.27-1.42-.43-2.19-.43m3 3v2h8v-2z"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-off.svg�������������������������������0000664�0000000�0000000�00000000760�14753064456�0025641�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.28 3 1 4.27l1.47 1.47c-.43.26-.86.55-1.27.86L3 9c.53-.4 1.08-.75 1.66-1.07l2.23 2.23c-.74.34-1.45.75-2.09 1.24l1.8 2.4c.78-.58 1.66-1.03 2.6-1.33L11.75 15c-1.25.07-2.41.5-3.35 1.2L12 21l2.46-3.27L17.74 21 19 19.72M12 3c-2.15 0-4.2.38-6.1 1.07l2.39 2.4C9.5 6.16 10.72 6 12 6c3.38 0 6.5 1.11 9 3l1.8-2.4C19.79 4.34 16.06 3 12 3m0 6c-.38 0-.75 0-1.12.05l3.19 3.2c1.22.28 2.36.82 3.33 1.55l1.8-2.4C17.2 9.89 14.7 9 12 9"/></svg>����������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-plus.svg������������������������������0000664�0000000�0000000�00000000724�14753064456�0026052�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6C8.62 6 5.5 7.12 3 9L1.2 6.6C4.21 4.34 7.95 3 12 3s7.79 1.34 10.8 3.6L21 9c-2.5-1.88-5.62-3-9-3m0 9c-1.35 0-2.6.45-3.6 1.2L12 21l1.04-1.39c-.04-.2-.04-.4-.04-.61 0-1.34.44-2.57 1.19-3.57-.69-.27-1.42-.43-2.19-.43m4.84-1.59c.34-.14.71-.24 1.08-.31l1.28-1.7C17.19 9.89 14.7 9 12 9s-5.19.89-7.2 2.4l1.8 2.4C8.1 12.67 9.97 12 12 12c1.78 0 3.44.5 4.84 1.41M20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2z"/></svg>��������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-refresh.svg���������������������������0000664�0000000�0000000�00000001032�14753064456�0026516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 12c-2.03 0-3.9.67-5.4 1.8l-1.8-2.4C6.81 9.89 9.3 9 12 9s5.19.89 7.2 2.4l-.46.6h-.24c-1.07 0-2.08.26-2.97.72A9 9 0 0 0 12 12m9-3 1.8-2.4C19.79 4.34 16.05 3 12 3S4.21 4.34 1.2 6.6L3 9c2.5-1.88 5.62-3 9-3s6.5 1.12 9 3m-9 6c-1.35 0-2.6.45-3.6 1.2L12 21l.34-.46c-.21-.64-.34-1.32-.34-2.04 0-1.26.36-2.42 1-3.42-.34-.05-.67-.08-1-.08m6-.5c-2.21 0-4 1.79-4 4s1.79 4 4 4c1.68 0 3.12-1.03 3.71-2.5H20a2.5 2.5 0 1 1-.23-3.27L18 18.5h4v-4l-1.17 1.17A4 4 0 0 0 18 14.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-remove.svg����������������������������0000664�0000000�0000000�00000001032�14753064456�0026355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 12c-2.03 0-3.9.67-5.4 1.8l-1.8-2.4C6.81 9.89 9.3 9 12 9s5.19.89 7.2 2.4l-1.28 1.7c-.37.07-.74.17-1.08.31C15.44 12.5 13.78 12 12 12m9-3 1.8-2.4C19.79 4.34 16.05 3 12 3S4.21 4.34 1.2 6.6L3 9c2.5-1.88 5.62-3 9-3s6.5 1.12 9 3m-9 6c-1.35 0-2.6.45-3.6 1.2L12 21l1.04-1.39c-.04-.2-.04-.4-.04-.61 0-1.34.44-2.57 1.19-3.57-.69-.27-1.42-.43-2.19-.43m9.12.46L19 17.59l-2.12-2.12-1.41 1.41L17.59 19l-2.12 2.12 1.41 1.42L19 20.41l2.12 2.13 1.42-1.42L20.41 19l2.13-2.12z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-settings.svg��������������������������0000664�0000000�0000000�00000000566�14753064456�0026733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 20-3.6-4.8c1-.75 2.25-1.2 3.6-1.2s2.6.45 3.6 1.2zm-7.2-9.6 1.8 2.4C8.1 11.67 9.97 11 12 11s3.9.67 5.4 1.8l1.8-2.4C17.19 8.89 14.7 8 12 8s-5.19.89-7.2 2.4M12 2C7.95 2 4.21 3.34 1.2 5.6L3 8c2.5-1.88 5.62-3 9-3s6.5 1.12 9 3l1.8-2.4C19.79 3.34 16.05 2 12 2M7 24h2v-2H7zm8 0h2v-2h-2zm-4 0h2v-2h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-star.svg������������������������������0000664�0000000�0000000�00000000664�14753064456�0026043�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6C8.6 6 5.5 7.1 3 9L1.2 6.6C4.2 4.3 8 3 12 3s7.8 1.3 10.8 3.6L21 9c-2.5-1.9-5.6-3-9-3m1 13c0-1.3.4-2.6 1.2-3.6-.7-.2-1.4-.4-2.2-.4-1.3 0-2.6.5-3.6 1.2L12 21l1-1.4zm3.8-5.6c.3-.1.7-.2 1.1-.3l1.3-1.7C17.2 9.9 14.7 9 12 9s-5.2.9-7.2 2.4l1.8 2.4C8.1 12.7 10 12 12 12c1.8 0 3.4.5 4.8 1.4m-.3 9.2.7-2.8-2.2-1.9 2.9-.2L19 15l1.1 2.6 2.9.2-2.2 1.9.7 2.8-2.5-1.4z"/></svg>����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-strength-1-alert.svg������������������0000664�0000000�0000000�00000000457�14753064456�0030173�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3C7.8 3 3.7 4.4.4 7c4 5.1 7.5 9.4 11.6 14.5 2.4-3 4.7-5.8 7-8.7V9.6l-3.4 4.2c-1.1-.5-2.4-.8-3.6-.8s-2.5.3-3.6.8L3.3 7.4C5.9 5.8 8.9 5 12 5s6.1.9 8.7 2.4l-.4.6h2.6c.2-.3.6-.7.8-1-3.4-2.6-7.5-4-11.7-4m9 7v6h2v-6m-2 8v2h2v-2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-strength-1-lock-open.svg��������������0000664�0000000�0000000�00000001052�14753064456�0030743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 13c.74 0 1.5.12 2.22.31 0 .07-.02.13-.02.19v1.24c-.7.6-1.2 1.5-1.2 2.46v3.04l-1 1.26C7.88 16.37 4.39 12.06.365 7 3.69 4.41 7.78 3 12 3c4.2 0 8.31 1.41 11.64 4L21.5 9.69a5.2 5.2 0 0 0-2.08-.65l1.28-1.59C18.08 5.86 15.06 5 12 5s-6.1.85-8.74 2.44l5.12 6.36c1.12-.52 2.36-.8 3.62-.8m9.8 3h-4.3v-2.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3v.5h1.3v-.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V16c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-strength-1-lock.svg�������������������0000664�0000000�0000000�00000001106�14753064456�0030004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 13c.8 0 1.61.13 2.38.36-.1.37-.18.75-.18 1.14v.24c-.7.6-1.2 1.5-1.2 2.46v3.04l-1 1.26C7.88 16.37 4.39 12.06.365 7 3.69 4.41 7.78 3 12 3c4.2 0 8.31 1.41 11.64 4l-2.73 3.39c-.59-.25-1.23-.39-1.91-.39-.13 0-.25.03-.38.04l2.08-2.59C18.08 5.86 15.06 5 12 5s-6.1.85-8.74 2.44l5.12 6.36c1.12-.52 2.36-.8 3.62-.8m11 4.3v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5V16c.6 0 1.2.6 1.2 1.3m-2.5-2.8c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V16h3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-strength-1.svg������������������������0000664�0000000�0000000�00000000457�14753064456�0027066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3C7.79 3 3.7 4.41.38 7 4.41 12.06 7.89 16.37 12 21.5c4.08-5.08 8.24-10.26 11.65-14.5C20.32 4.41 16.22 3 12 3m0 2c3.07 0 6.09.86 8.71 2.45l-5.1 6.36A8.4 8.4 0 0 0 12 13c-1.25 0-2.5.28-3.61.8L3.27 7.44C5.91 5.85 8.93 5 12 5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-strength-2-alert.svg������������������0000664�0000000�0000000�00000000462�14753064456�0030170�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3C7.8 3 3.7 4.4.4 7c4 5.1 7.5 9.4 11.6 14.5 2.4-3 4.7-5.8 7-8.7V9.6l-1.5 1.8c-1.2-.7-3.1-1.4-5.5-1.4s-4.3.8-5.5 1.4l-3.2-4C5.9 5.8 8.9 5 12 5s6.1.9 8.7 2.4l-.4.6h2.6c.2-.3.6-.7.8-1-3.4-2.6-7.5-4-11.7-4m9 7v6h2v-6m-2 8v2h2v-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-strength-2-lock-open.svg��������������0000664�0000000�0000000�00000001077�14753064456�0030753�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.44 10.55c-.76.8-1.24 1.83-1.24 2.95v1.24c-.7.6-1.2 1.5-1.2 2.46v3.04l-1 1.26C7.88 16.37 4.39 12.06.365 7 3.69 4.41 7.78 3 12 3c4.2 0 8.31 1.41 11.64 4L21.5 9.69c-.64-.36-1.34-.59-2.09-.65l1.29-1.59C18.08 5.86 15.06 5 12 5s-6.1.85-8.74 2.44l3.24 3.99C7.73 10.75 9.61 10 12 10c1.29 0 2.45.23 3.44.55M21.8 16h-4.3v-2.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3v.5h1.3v-.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V16c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-strength-2-lock.svg�������������������0000664�0000000�0000000�00000001123�14753064456�0030004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.2 14.5v.24c-.7.6-1.2 1.5-1.2 2.46v3.04l-1 1.26C7.88 16.37 4.39 12.06.365 7 3.69 4.41 7.78 3 12 3c4.2 0 8.31 1.41 11.64 4l-2.73 3.39c-.59-.25-1.23-.39-1.91-.39-.13 0-.26.03-.39.04l2.09-2.59C18.08 5.86 15.06 5 12 5s-6.1.85-8.74 2.44l3.24 3.99C7.73 10.75 9.61 10 12 10c1.68 0 3.12.38 4.26.84-1.23.83-2.06 2.16-2.06 3.66m8.8 2.8v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5V16c.6 0 1.2.6 1.2 1.3m-2.5-2.8c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V16h3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-strength-2.svg������������������������0000664�0000000�0000000�00000000472�14753064456�0027064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3C7.79 3 3.7 4.41.38 7 4.41 12.06 7.89 16.37 12 21.5c4.08-5.08 8.24-10.26 11.65-14.5C20.32 4.41 16.22 3 12 3m0 2c3.07 0 6.09.86 8.71 2.45l-3.21 3.98C16.26 10.74 14.37 10 12 10c-2.38 0-4.26.75-5.5 1.43L3.27 7.44C5.91 5.85 8.93 5 12 5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-strength-3-alert.svg������������������0000664�0000000�0000000�00000000456�14753064456�0030174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3C7.8 3 3.7 4.4.4 7c4 5.1 7.5 9.4 11.6 14.5 2.4-3 4.7-5.8 7-8.7V9.6l-.2.3C17.3 9 14.9 8 12 8 9 8 6.7 9 5.2 9.8L3.3 7.4C5.9 5.8 8.9 5 12 5s6.1.9 8.7 2.4l-.4.6h2.6c.2-.3.6-.7.8-1-3.4-2.6-7.5-4-11.7-4m9 7v6h2v-6m-2 8v2h2v-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-strength-3-lock-open.svg��������������0000664�0000000�0000000�00000001060�14753064456�0030744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.2 13.5v1.24c-.7.6-1.2 1.5-1.2 2.46v3.04l-1 1.26C7.88 16.37 4.39 12.06.365 7 3.69 4.41 7.78 3 12 3c4.2 0 8.31 1.41 11.64 4L21.5 9.69a5.2 5.2 0 0 0-2.08-.65l1.28-1.59C18.08 5.86 15.06 5 12 5s-6.1.85-8.74 2.44l1.94 2.4C6.67 9 9 8 12 8c2.18 0 4.08.58 5.53 1.25-1.9.6-3.33 2.29-3.33 4.25m7.6 2.5h-4.3v-2.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3v.5h1.3v-.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V16c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-strength-3-lock.svg�������������������0000664�0000000�0000000�00000001047�14753064456�0030012�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 10c.68 0 1.32.14 1.91.39L23.64 7C20.31 4.41 16.2 3 12 3 7.78 3 3.69 4.41.365 7 4.39 12.06 7.88 16.37 12 21.5l1-1.26V17.2c0-.96.5-1.86 1.2-2.46v-.24c0-2.44 2.2-4.5 4.8-4.5m-7-2C9 8 6.67 9 5.2 9.84l-1.94-2.4C5.9 5.85 8.91 5 12 5s6.08.86 8.7 2.45l-1.94 2.43C17.25 9 14.87 8 12 8m9.8 8v-1.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V16c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3m-1.3 0h-3v-1.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-strength-3.svg������������������������0000664�0000000�0000000�00000000460�14753064456�0027062�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3C7.79 3 3.7 4.41.38 7 4.41 12.06 7.89 16.37 12 21.5c4.08-5.08 8.24-10.26 11.65-14.5C20.32 4.41 16.22 3 12 3m0 2c3.07 0 6.09.86 8.71 2.45l-1.94 2.43C17.26 9 14.88 8 12 8 9 8 6.68 9 5.21 9.84l-1.94-2.4C5.91 5.85 8.93 5 12 5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-strength-4-alert.svg������������������0000664�0000000�0000000�00000000322�14753064456�0030165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3C7.8 3 3.7 4.4.4 7c4 5.1 7.5 9.4 11.6 14.5 2.4-3 4.7-5.8 7-8.7V8h3.8c.2-.3.6-.7.8-1-3.3-2.6-7.4-4-11.6-4m9 7v6h2v-6m-2 8v2h2v-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-strength-4-lock-open.svg��������������0000664�0000000�0000000�00000000710�14753064456�0030746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.2 13.5v1.24c-.7.6-1.2 1.5-1.2 2.46v3.04l-1 1.26C7.88 16.37 4.39 12.06.365 7 3.69 4.41 7.78 3 12 3c4.2 0 8.31 1.41 11.64 4L21.5 9.69C20.75 9.26 19.9 9 19 9c-2.6 0-4.8 2.06-4.8 4.5m7.6 2.5h-4.3v-2.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3v.5h1.3v-.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V16c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3"/></svg>��������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-strength-4-lock.svg�������������������0000664�0000000�0000000�00000000714�14753064456�0030013�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.2 14.5v.24c-.7.6-1.2 1.5-1.2 2.46v3.04l-1 1.26C7.88 16.37 4.39 12.06.365 7 3.69 4.41 7.78 3 12 3c4.2 0 8.31 1.41 11.64 4l-2.73 3.39c-.59-.25-1.23-.39-1.91-.39-2.6 0-4.8 2.06-4.8 4.5m8.8 2.8v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5V16c.6 0 1.2.6 1.2 1.3m-2.5-2.8c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V16h3z"/></svg>����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-strength-4.svg������������������������0000664�0000000�0000000�00000000276�14753064456�0027070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3C7.79 3 3.7 4.41.38 7 4.41 12.06 7.89 16.37 12 21.5c4.08-5.08 8.24-10.26 11.65-14.5C20.32 4.41 16.22 3 12 3"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-strength-alert-outline.svg������������0000664�0000000�0000000�00000000416�14753064456�0031505�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3C7.8 3 3.7 4.4.4 7c3.9 4.8 7.8 9.7 11.6 14.5 2.3-2.9 4.7-5.8 7-8.7V9.6l-7 8.7L3.3 7.4C5.9 5.8 8.9 5 12 5s6.1.9 8.7 2.4l-.4.6h2.6c.3-.3.5-.7.8-1-3.4-2.6-7.5-4-11.7-4m9 7v6h2v-6m-2 8v2h2v-2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-strength-lock-open-outline.svg��������0000664�0000000�0000000�00000000767�14753064456�0032276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.65 7h-.01c-.72.9-1.44 1.79-2.14 2.69-.63-.36-1.33-.58-2.07-.65l1.28-1.59A16.8 16.8 0 0 0 12 5c-3.09 0-6.1.85-8.73 2.44L12 18.3l1-1.3v3.25l-1 1.25C8.13 16.66 4.24 11.83.355 7h.02A18.92 18.92 0 0 1 12 3c4.22 0 8.32 1.41 11.65 4m-1.85 9h-4.3v-2.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3v.5h1.3v-.5c0-1.4-1.4-2.5-2.8-2.5s-2.8 1.1-2.8 2.5V16c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-strength-lock-outline.svg�������������0000664�0000000�0000000�00000000775�14753064456�0031336�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.65 7h-.01l-2.73 3.39c-.59-.25-1.23-.39-1.91-.39-.13 0-.25.03-.37.04l2.08-2.59A16.8 16.8 0 0 0 12 5c-3.09 0-6.1.85-8.73 2.44L12 18.3l1-1.3v3.25l-1 1.25C8.13 16.66 4.24 11.83.355 7h.02A18.92 18.92 0 0 1 12 3c4.22 0 8.32 1.41 11.65 4M23 17.3v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5V16c.6 0 1.2.6 1.2 1.3m-2.5-2.8c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V16h3z"/></svg>���mkdocs-material-9.6.4/material/templates/.icons/material/wifi-strength-off-outline.svg��������������0000664�0000000�0000000�00000000664�14753064456�0031155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.27 1.44 2 2.72l2.05 2.05C2.75 5.37 1.5 6.11.38 7 4.2 11.8 8.14 16.67 12 21.5l3.91-4.87 3.32 3.32 1.27-1.27C14.87 13.04 3.27 1.44 3.27 1.44M12 3c-1.4 0-2.79.17-4.14.5l1.7 1.69C10.37 5.07 11.18 5 12 5c3.07 0 6.09.86 8.71 2.45l-3.95 4.93 1.42 1.42C20.08 11.43 22 9 23.65 7 20.32 4.41 16.22 3 12 3M5.57 6.29l8.93 8.92L12 18.3 3.27 7.44C4 7 4.78 6.61 5.57 6.29"/></svg>����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-strength-off.svg����������������������0000664�0000000�0000000�00000000421�14753064456�0027467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.27 1.44 2 2.72l2.05 2.05C2.75 5.37 1.5 6.11.38 7 4.41 12.06 12 21.5 12 21.5l3.91-4.87 3.32 3.32 1.27-1.27M12 3c-1.4 0-2.79.17-4.14.5l10.32 10.31C20 11.5 22.05 9 23.65 7 20.32 4.41 16.22 3 12 3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-strength-outline.svg������������������0000664�0000000�0000000�00000000411�14753064456�0030373�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3C7.79 3 3.7 4.41.38 7H.36C4.24 11.83 8.13 16.66 12 21.5c3.89-4.84 7.77-9.67 11.64-14.5h.01C20.32 4.41 16.22 3 12 3m0 2c3.07 0 6.09.86 8.71 2.45L12 18.3 3.27 7.44C5.9 5.85 8.92 5 12 5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi-sync.svg������������������������������0000664�0000000�0000000�00000001215�14753064456�0026037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6C8.62 6 5.5 7.12 3 9L1.2 6.6C4.21 4.34 7.95 3 12 3s7.79 1.34 10.8 3.6L21 9c-2.5-1.88-5.62-3-9-3m0 9c-1.35 0-2.6.45-3.6 1.2L12 21l1.26-1.68A6.8 6.8 0 0 1 13 17.5c0-.81.16-1.59.43-2.31-.46-.11-.93-.19-1.43-.19m3.23-2.39a6.5 6.5 0 0 1 3.47-1.56A11.9 11.9 0 0 0 12 9c-2.7 0-5.19.89-7.2 2.4l1.8 2.4a8.94 8.94 0 0 1 8.63-1.19M19 20a2.5 2.5 0 0 1-2.5-2.5c0-.4.09-.78.26-1.12l-1.09-1.09c-.42.63-.67 1.39-.67 2.21 0 2.21 1.79 4 4 4V23l2.25-2.25L19 18.5zm0-6.5V12l-2.25 2.25L19 16.5V15a2.5 2.5 0 0 1 2.5 2.5c0 .4-.09.78-.26 1.12l1.09 1.09c.42-.63.67-1.39.67-2.21 0-2.21-1.79-4-4-4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wifi.svg�����������������������������������0000664�0000000�0000000�00000000521�14753064456�0025064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 21 3.6-4.8c-1-.75-2.25-1.2-3.6-1.2s-2.6.45-3.6 1.2zm0-18C7.95 3 4.21 4.34 1.2 6.6L3 9c2.5-1.88 5.62-3 9-3s6.5 1.12 9 3l1.8-2.4C19.79 4.34 16.05 3 12 3m0 6c-2.7 0-5.19.89-7.2 2.4l1.8 2.4C8.1 12.67 9.97 12 12 12s3.9.67 5.4 1.8l1.8-2.4C17.19 9.89 14.7 9 12 9"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wikipedia.svg������������������������������0000664�0000000�0000000�00000001260�14753064456�0026075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.97 18.95-2.56-6.03c-1.02 1.99-2.14 4.08-3.1 6.03-.01.01-.47 0-.47 0C7.37 15.5 5.85 12.1 4.37 8.68 4.03 7.84 2.83 6.5 2 6.5v-.45h5.06v.45c-.6 0-1.62.4-1.36 1.05.72 1.54 3.24 7.51 3.93 9.03.47-.94 1.8-3.42 2.37-4.47-.45-.88-1.87-4.18-2.29-5-.32-.54-1.13-.61-1.75-.61 0-.15.01-.25 0-.44l4.46.01v.4c-.61.03-1.18.24-.92.82.6 1.24.95 2.13 1.5 3.28.17-.34 1.07-2.19 1.5-3.16.26-.65-.13-.91-1.21-.91.01-.12.01-.33.01-.43 1.39-.01 3.48-.01 3.85-.02v.42c-.71.03-1.44.41-1.82.99L13.5 11.3c.18.51 1.96 4.46 2.15 4.9l3.85-8.83c-.3-.72-1.16-.87-1.5-.87v-.45l4 .03v.42c-.88 0-1.43.5-1.75 1.25-.8 1.79-3.25 7.49-4.85 11.2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wind-power-outline.svg���������������������0000664�0000000�0000000�00000001544�14753064456�0027704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3h6v2H4zM1 7h5v2H1zm2 12h5v2H3zm19.21-.39-2.28-4.11a2.07 2.07 0 0 0-1.26-.96L16 12.87c-.04-.47-.16-.92-.39-1.33l3.96-6.59c.65-1.08.3-2.48-.78-3.13a2.288 2.288 0 0 0-2.73.3l-3.43 3.21c-.4.37-.63.9-.63 1.45v3.4c-.47.17-.89.45-1.23.82H3.28C2 11 1 12 1 13.28c0 1.02.67 1.91 1.65 2.19l4.51 1.29c.18.05.37.08.55.08.36 0 .72-.1 1.03-.29L11 15.21c.27.26.61.47 1 .61V21c-1.1 0-2 .9-2 2h6c0-1.1-.9-2-2-2v-4.28l4.61 4.61c.45.45 1.03.67 1.61.67s1.17-.22 1.61-.67c.72-.72.88-1.83.38-2.72M7.72 14.84 3.2 13.55c-.12-.05-.2-.15-.2-.27 0-.15.13-.28.28-.28H10c0 .15 0 .3.04.44zM13 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m1-3.86V6.78l3.43-3.21c.07-.07.19-.12.34-.04.13.08.18.25.1.38l-3.74 6.24zm6.42 9.78c-.05.05-.24.16-.42 0l-4.83-4.85c.08-.07.16-.18.24-.28l2.78.71 2.28 4.08c.06.11.03.25-.05.34"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wind-power.svg�����������������������������0000664�0000000�0000000�00000001333�14753064456�0026223�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3h6v2H4zM1 7h5v2H1zm2 12h5v2H3zm10.73-8.39c.77.23 1.3.78 1.57 1.46l4.27-7.11c.65-1.08.3-2.46-.78-3.13-.87-.52-1.99-.41-2.73.29l-3.43 3.21c-.4.37-.63.9-.63 1.45v3.93c.36-.15 1-.33 1.73-.1m-3.12 1.66c.16-.52.48-.96.89-1.27H3.28C2 11 1 12 1 13.28c0 1.02.67 1.91 1.65 2.19l4.51 1.29c.53.15 1.1.08 1.58-.21l2.69-1.61a2.49 2.49 0 0 1-.82-2.67m11.6 6.34-2.28-4.11a2.07 2.07 0 0 0-1.26-.96l-3.17-.8c0 .32 0 .66-.11.99A2.48 2.48 0 0 1 13 15.5c-.61 0-1-.22-1-.22V21c-1.1 0-2 .9-2 2h6c0-1.1-.9-2-2-2v-4.28l4.61 4.61c.89.89 2.33.89 3.22 0 .72-.72.88-1.83.38-2.72m-9.65-4.18c.79.24 1.63-.2 1.87-1 .24-.79-.2-1.63-1-1.87-.79-.24-1.63.2-1.87 1-.24.79.21 1.63 1 1.87"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wind-turbine-alert.svg���������������������0000664�0000000�0000000�00000000741�14753064456�0027646�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.33 11.67 2.88 2.91c1.41-1.42 0-2.83 0-2.83l-1.49-1.51c.18-.38.28-.8.28-1.24 0-1.05-.54-1.97-1.36-2.5L14 2.11c-1.91-.58-2.5 1.33-2.5 1.33l-.81 2.59c-1.23.13-2.23.97-2.56 2.15L3.67 9.63c.64 1.9 2.53 1.27 2.53 1.27l2.07-.67c.34.74.96 1.31 1.73 1.59V19s-2 0-2 2v1h6v-1s0-2-2-2v-7.18c.12-.04.23-.1.33-.15M9.5 9c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5S9.5 9.83 9.5 9m8.5 3V7h2v6h-2m0 4v-2h2v2z"/></svg>�������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wind-turbine-check.svg���������������������0000664�0000000�0000000�00000000777�14753064456�0027625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.33 11.67 2.88 2.91c1.41-1.42 0-2.83 0-2.83l-1.49-1.51c.18-.38.28-.8.28-1.24 0-1.05-.54-1.97-1.36-2.5L13 2.11c-1.91-.58-2.5 1.33-2.5 1.33l-.81 2.59c-1.23.13-2.23.97-2.56 2.15L2.67 9.63c.64 1.9 2.53 1.27 2.53 1.27l2.07-.67c.34.74.96 1.31 1.73 1.59V19s-2 0-2 2v1h6v-1s0-2-2-2v-7.18c.12-.04.23-.1.33-.15M8.5 9c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5S8.5 9.83 8.5 9m8.25 12.16-2.75-3L15.16 17l1.59 1.59L20.34 15l1.16 1.41z"/></svg>�mkdocs-material-9.6.4/material/templates/.icons/material/wind-turbine.svg���������������������������0000664�0000000�0000000�00000000731�14753064456�0026540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.33 11.67 2.88 2.91c1.41-1.42 0-2.83 0-2.83l-1.49-1.51c.18-.38.28-.8.28-1.24 0-1.05-.54-1.97-1.36-2.5L15 2.11c-1.91-.58-2.5 1.33-2.5 1.33l-.81 2.59c-1.23.13-2.23.97-2.56 2.15L4.67 9.63c.64 1.9 2.53 1.27 2.53 1.27l2.07-.67c.34.74.96 1.31 1.73 1.59V19s-2 0-2 2v1h6v-1s0-2-2-2v-7.18c.12-.04.23-.1.33-.15M10.5 9A1.5 1.5 0 0 1 12 7.5 1.5 1.5 0 0 1 13.5 9a1.5 1.5 0 0 1-1.5 1.5A1.5 1.5 0 0 1 10.5 9"/></svg>���������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/window-close.svg���������������������������0000664�0000000�0000000�00000000263�14753064456�0026543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.46 12 19 17.54V19h-1.46L12 13.46 6.46 19H5v-1.46L10.54 12 5 6.46V5h1.46L12 10.54 17.54 5H19v1.46z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/window-closed-variant.svg������������������0000664�0000000�0000000�00000000222�14753064456�0030344�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 20V2H3v18H1v3h22v-3M19 4v7h-6V4M5 4h6v7H5m0 9v-7h6v7m2 0v-7h6v7Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/window-closed.svg��������������������������0000664�0000000�0000000�00000000265�14753064456�0026711�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 11h4V9h4v2h4V4H6zm12 2H6v7h12zM6 2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/window-maximize.svg������������������������0000664�0000000�0000000�00000000150�14753064456�0027254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4h16v16H4zm2 4v10h12V8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/window-minimize.svg������������������������0000664�0000000�0000000�00000000134�14753064456�0027254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 14H4v-4h16"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/window-open-variant.svg��������������������0000664�0000000�0000000�00000000235�14753064456�0030040�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 20V2H3v18H1v3h22v-3M19 4v7h-2V4M5 4h2v7H5m0 9v-7h2v7m2 0V4h6v16m2 0v-7h2v7Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/window-open.svg����������������������������0000664�0000000�0000000�00000000302�14753064456�0026371�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 8h4V6h4v2h4V4H6zm12 2H6v5h12zM6 20h12v-3H6zM6 2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/window-restore.svg�������������������������0000664�0000000�0000000�00000000202�14753064456�0027112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 8h4V4h12v12h-4v4H4zm12 0v6h2V6h-8v2zM6 12v6h8v-6z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/window-shutter-alert.svg�������������������0000664�0000000�0000000�00000000235�14753064456�0030240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4h18v4h-2v12h-2V8H6v12H4V8H2zm5 5h8v2H7zm0 3h8v2H7zm13 7v-2h2v2zm0-4v-5h2v5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/window-shutter-auto.svg��������������������0000664�0000000�0000000�00000000365�14753064456�0030105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 14h-2l-3.2 9h1.9l.7-2h3.2l.7 2h1.9zm-2.2 5.7L19 16l1.2 3.7zM7 9h8v2H7zm0 3h8v2H7zm0 3h8v1.5l-.2.5H7zm6.7 5H7v-2h7.5zM16 8H6v12H4V8H2V4h18v4h-2v4h-1.4l-.5 1.3-.1.4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/window-shutter-cog.svg���������������������0000664�0000000�0000000�00000001255�14753064456�0027704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.7 18.6v-1l1.1-.8c.1-.1.2-.2.1-.3l-1-1.7c0-.1-.2-.1-.3-.1l-1.2.5c-.3-.2-.6-.4-.9-.5l-.2-1.3c0-.1-.1-.2-.2-.2h-2c-.2 0-.3.1-.3.2l-.2 1.3c-.3.2-.5.3-.8.5l-1.2-.5c-.1 0-.2 0-.3.1l-1 1.7c0 .1 0 .2.1.3l1.1.8v1l-1.1.8c-.1.1-.2.2-.1.3l1 1.7c.1.1.2.1.3.1l1.2-.5c.2.2.5.4.8.5l.2 1.3c.1.1.2.2.3.2h2c.1 0 .2-.1.2-.2l.2-1.3c.3-.2.5-.3.8-.5l1.2.4c.1 0 .2 0 .3-.1l1-1.7c.1-.1.1-.2 0-.2zm-3.7.9c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5M8 9h8v2H8zm9-1H7v12H5V8H3V4h18v4h-2v3.1c-.3 0-.7-.1-1-.1s-.7 0-1 .1zm-5.7 12H8v-2h3c0 .7.1 1.4.3 2M8 12h6.4c-.8.5-1.6 1.2-2.1 2H8zm0 3h3.7c-.3.6-.5 1.3-.6 2H8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/window-shutter-open.svg��������������������0000664�0000000�0000000�00000000171�14753064456�0030071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4h18v4h-2v12h-2V8H7v12H5V8H3zm5 5h8v2H8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/window-shutter-settings.svg����������������0000664�0000000�0000000�00000000276�14753064456�0030776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4h18v4h-2v12h-2V8H7v12H5V8H3zm5 5h8v2H8zm0 3h8v2H8zm0 3h8v2H8zm0 3h8v2H8zm5 4h-2v2h2zm4 0h-2v2h2zm-8 0H7v2h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/window-shutter.svg�������������������������0000664�0000000�0000000�00000000232�14753064456�0027130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4h18v4h-2v12h-2V8H7v12H5V8H3zm5 5h8v2H8zm0 3h8v2H8zm0 3h8v2H8zm0 3h8v2H8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/windsock.svg�������������������������������0000664�0000000�0000000�00000000277�14753064456�0025757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 5v8l15-2V7zm3 1.91 3 .4v3.38l-3 .4zm6 .8 3 .4v1.78l-3 .4zM5 10v1h1v1H5v9H3V4c0-.55.45-1 1-1s1 .45 1 1v2h1v1H5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wiper-wash-alert.svg�����������������������0000664�0000000�0000000�00000001134�14753064456�0027322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 6c0-.3.1-1.4.8-2.2L10 2.4 8.2 3.9c.7.7.8 1.8.8 2.1-6.3.4-9 5-9 5l7 7s.7-1.3 2-1.8v2.1c-.6.3-1 1-1 1.7a2 2 0 1 0 4 0c0-.7-.4-1.4-1-1.7v-2.1c1.3.5 2 1.8 2 1.8l7-7s-2.7-4.5-9-5m-2 8.1c-.8.2-1.5.5-2.1 1l-4.2-4.2C3.8 9.8 5.8 8.3 9 8.1zm4.1 1c-.6-.4-1.3-.8-2.1-1v-6c3.2.3 5.2 1.7 6.3 2.8zM16 1.3l-.7 1.9c-.7-.3-1.8-.3-2.6 0L12 1.3c1.2-.4 2.8-.4 4 0M19 6h-2s0-1.3-.8-2.1l1.5-1.3C19 4 19 5.9 19 6M2.2 2.6l1.5 1.3C3 4.7 3 6 3 6H1c0-.1 0-2 1.2-3.4M8 1.3l-.7 1.9c-.7-.3-1.8-.3-2.6 0L4 1.3c1.2-.4 2.8-.4 4 0M22 12V7h2v6h-2m0 4h2v-2h-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wiper-wash.svg�����������������������������0000664�0000000�0000000�00000001122�14753064456�0026212�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 6c0-.3.1-1.4.8-2.2L12 2.4l-1.8 1.5c.7.7.8 1.8.8 2.1-6.3.4-9 5-9 5l7 7s.7-1.3 2-1.8v2.1c-.6.3-1 1-1 1.7a2 2 0 0 0 2 2 2 2 0 0 0 2-2c0-.7-.4-1.4-1-1.7v-2.1c1.3.5 2 1.8 2 1.8l7-7s-2.7-4.5-9-5m-2 8.1c-.8.2-1.5.5-2.1 1l-4.2-4.2C5.8 9.8 7.8 8.3 11 8.1zm4.1 1c-.6-.4-1.3-.8-2.1-1v-6c3.2.3 5.2 1.7 6.3 2.8zM18 1.3l-.7 1.9c-.7-.3-1.8-.3-2.6 0L14 1.3c1.2-.4 2.8-.4 4 0M21 6h-2s0-1.3-.8-2.1l1.5-1.3C21 4 21 5.9 21 6M4.2 2.6l1.5 1.3C5 4.7 5 6 5 6H3c0-.1 0-2 1.2-3.4M10 1.3l-.7 1.9c-.7-.3-1.8-.3-2.6 0L6 1.3c1.2-.4 2.8-.4 4 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wiper.svg����������������������������������0000664�0000000�0000000�00000000541�14753064456�0025256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4C5 4 2 9 2 9l7 7s.5-.9 1.4-1.5l.3 2c-.4.3-.7.9-.7 1.5a2 2 0 0 0 2 2 2 2 0 0 0 2-2c0-.9-.5-1.6-1.3-1.9l-.4-2.1c1.8.2 2.7 2 2.7 2l7-7s-3-5-10-5m3.1 9.1c-.8-.6-1.8-1.1-3.1-1.1l-1-5.9c.3-.1.7-.1 1-.1 3.7 0 6.1 1.7 7.3 2.9zm-6.2 0L4.7 8.9C5.5 8 7 7 9 6.4l1 6c-.4.2-.8.4-1.1.7"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wizard-hat.svg�����������������������������0000664�0000000�0000000�00000000607�14753064456�0026205�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 22H3v-2h18zm-2-3H5l6.1-16.4q.3-.6.9-.6l6 3h-4.1zM10 7.5l1.04.47L11.5 9l.47-1.03L13 7.5l-1.03-.47L11.5 6l-.46 1.03zm3 7.5-2.06-.93L10 12l-.93 2.07L7 15l2.07.93L10 18l.94-2.07zm.97-3.03L15 11.5l-1.03-.47L13.5 10l-.46 1.03-1.04.47 1.04.47.46 1.03zm2 4L17 15.5l-1.03-.47L15.5 14l-.46 1.03-1.04.47 1.04.47.46 1.03z"/></svg>�������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wordpress.svg������������������������������0000664�0000000�0000000�00000001476�14753064456�0026170�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.42 12c0-1.24.27-2.42.74-3.5l4.1 11.22A8.56 8.56 0 0 1 3.42 12m14.37-.43c0 .73-.29 1.58-.65 2.77l-.86 2.86-3.1-9.2.98-.1c.47-.06.41-.74-.05-.71 0 0-1.39.11-2.29.11l-2.26-.11c-.46-.03-.51.68-.06.71l.91.1 1.34 3.64-1.88 5.63L6.74 8l.99-.1c.46-.06.4-.74-.06-.71 0 0-1.39.11-2.29.11l-.55-.01C6.37 4.96 9 3.42 12 3.42c2.23 0 4.27.86 5.79 2.25h-.11c-.84 0-1.44.73-1.44 1.52 0 .71.41 1.31.84 2.01.33.57.71 1.3.71 2.37m-5.64 1.18 2.64 7.22.06.12c-.89.32-1.85.49-2.85.49-.84 0-1.65-.12-2.42-.35zm7.38-4.87A8.55 8.55 0 0 1 20.58 12c0 3.16-1.72 5.93-4.27 7.41l2.62-7.57c.49-1.22.66-2.2.66-3.07zM12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 19.54c5.26 0 9.54-4.28 9.54-9.54S17.26 2.46 12 2.46 2.46 6.74 2.46 12s4.28 9.54 9.54 9.54"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wrap-disabled.svg��������������������������0000664�0000000�0000000�00000000176�14753064456�0026652�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 7H3V5h13zM3 19h13v-2H3zm19-7-4-3v2H3v2h15v2z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wrap.svg�����������������������������������0000664�0000000�0000000�00000000276�14753064456�0025106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 5H3v2h18zM3 19h7v-2H3zm0-6h15c1 0 2 .43 2 2s-1 2-2 2h-2v-2l-4 3 4 3v-2h2c2.95 0 4-1.27 4-4 0-2.72-1-4-4-4H3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wrench-check-outline.svg�������������������0000664�0000000�0000000�00000000630�14753064456�0030145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 1.09V6H7V1.09C4.16 1.57 2 4.03 2 7c0 2.22 1.21 4.15 3 5.19V21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-8.81c1.79-1.04 3-2.97 3-5.19 0-2.97-2.16-5.43-5-5.91m1 9.37-1 .58V20H7v-8.96l-1-.58C4.77 9.74 4 8.42 4 7c0-1 .37-1.94 1-2.65V8h6V4.35c.63.71 1 1.65 1 2.65 0 1.42-.77 2.74-2 3.46M21.6 13l1.4 1.41L16.47 21 13 17.5l1.4-1.41 2.07 2.08z"/></svg>��������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wrench-check.svg���������������������������0000664�0000000�0000000�00000000376�14753064456�0026477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 2c1.8.6 3 2.3 3 4.2 0 2-1.2 3.7-3 4.3v11c0 .3-.2.5-.5.5h-2c-.3 0-.5-.2-.5-.6v-11c-1.8-.6-3-2.3-3-4.2S4.2 2.6 6 2v3.7h3zm11.6 11 1.4 1.41L15.47 21 12 17.5l1.4-1.41 2.07 2.08z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wrench-clock-outline.svg�������������������0000664�0000000�0000000�00000000772�14753064456�0030172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 8a7.3 7.3 0 0 0-3.32.89c.2-.6.32-1.23.32-1.89 0-2.97-2.16-5.43-5-5.91V6H6V1.09C3.16 1.57 1 4.03 1 7c0 2.22 1.21 4.15 3 5.19V21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2.38A6.96 6.96 0 0 0 16 22c3.9 0 7-3.1 7-7s-3.1-7-7-7m-8 3.04V20H6v-8.96l-1-.58C3.77 9.74 3 8.42 3 7c0-1 .37-1.94 1-2.65V8h6V4.35c.63.71 1 1.65 1 2.65 0 1.42-.77 2.74-2 3.46zM16 20c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5m.5-4.7 2.9 1.7-.8 1.2L15 16v-5h1.5z"/></svg>������mkdocs-material-9.6.4/material/templates/.icons/material/wrench-clock.svg���������������������������0000664�0000000�0000000�00000000543�14753064456�0026511�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 6.2C10 4.3 8.8 2.6 7 2v3.7H4V2c-1.8.6-3 2.3-3 4.2s1.2 3.6 3 4.2v11c0 .4.2.6.5.6h2c.3 0 .5-.2.5-.5v-11c1.8-.6 3-2.3 3-4.3M16 8s-.1 0 0 0c-3.9.1-7 3.2-7 7 0 3.9 3.1 7 7 7s7-3.1 7-7-3.1-7-7-7m0 12c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5m-1-9v5l3.6 2.2.8-1.2-2.9-1.7V11z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wrench-cog-outline.svg���������������������0000664�0000000�0000000�00000001721�14753064456�0027642�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 1.09V6H7V1.09C4.16 1.57 2 4.03 2 7c0 2.22 1.21 4.15 3 5.19V21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-8.81c1.79-1.04 3-2.97 3-5.19 0-2.97-2.16-5.43-5-5.91m1 9.37-1 .58V20H7v-8.96l-1-.58C4.77 9.74 4 8.42 4 7c0-1 .37-1.94 1-2.65V8h6V4.35c.63.71 1 1.65 1 2.65 0 1.42-.77 2.74-2 3.46m10.94 7.48a3.3 3.3 0 0 0 0-.89l.97-.73a.22.22 0 0 0 .06-.29l-.92-1.56c-.05-.1-.18-.14-.29-.1l-1.15.45c-.24-.17-.49-.32-.78-.44l-.17-1.19a.235.235 0 0 0-.23-.19h-1.85c-.12 0-.22.08-.24.19l-.17 1.19c-.29.12-.54.27-.78.44l-1.15-.45c-.1-.04-.24 0-.28.1l-.93 1.56c-.06.1-.03.22.06.29l.97.73c-.01.15-.03.3-.03.45s.02.29.03.44l-.97.74a.22.22 0 0 0-.06.29l.93 1.56c.04.1.18.13.28.1l1.15-.46c.24.18.49.33.78.45l.17 1.19c.02.11.12.19.24.19h1.85c.11 0 .21-.08.23-.19l.17-1.19c.29-.12.54-.27.78-.45l1.15.46c.11.03.24 0 .29-.1l.92-1.56a.22.22 0 0 0-.06-.29zM17.5 19c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5"/></svg>�����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wrench-cog.svg�����������������������������0000664�0000000�0000000�00000001467�14753064456�0026174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.94 17.94a3.3 3.3 0 0 0 0-.89l.97-.73a.22.22 0 0 0 .06-.29l-.92-1.56c-.05-.1-.19-.14-.29-.1l-1.15.45c-.24-.17-.49-.32-.78-.44l-.17-1.19a.235.235 0 0 0-.23-.19h-1.85c-.12 0-.22.08-.24.19l-.17 1.19c-.29.12-.54.27-.78.44l-1.15-.45c-.1-.04-.24 0-.28.1l-.93 1.56c-.06.1-.03.22.06.29l.97.73c-.01.15-.03.3-.03.45s.02.29.03.44l-.97.74a.22.22 0 0 0-.06.29l.93 1.56c.04.1.18.13.28.1l1.15-.46c.24.18.49.33.78.45l.17 1.19c.02.11.12.19.24.19h1.85c.11 0 .21-.08.23-.19l.17-1.19c.29-.12.54-.27.78-.45l1.15.46c.1.03.24 0 .29-.1l.92-1.56a.22.22 0 0 0-.06-.29zM16.5 19c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5M9 2c1.8.6 3 2.3 3 4.2 0 2-1.2 3.7-3 4.3v11c0 .3-.2.5-.5.5h-2c-.3 0-.5-.2-.5-.6v-11c-1.8-.6-3-2.3-3-4.2S4.2 2.6 6 2v3.7h3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/wrench-outline.svg�������������������������0000664�0000000�0000000�00000000762�14753064456�0027100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.61 19-9.08-9.09c.93-2.34.47-5.1-1.44-7C9.79.61 6.21.4 3.66 2.26L7.5 6.11 6.08 7.5 2.25 3.69C.39 6.23.6 9.82 2.9 12.11c1.86 1.86 4.57 2.35 6.89 1.48l9.11 9.11c.39.39 1.02.39 1.41 0l2.3-2.3c.39-.4.39-1.01 0-1.4m-3 1.59-9.46-9.46c-.61.45-1.29.72-2 .82-1.36.2-2.79-.21-3.83-1.25C3.37 9.76 2.93 8.5 3 7.26l3.09 3.09 4.24-4.24L7.24 3c1.26-.05 2.49.39 3.44 1.33a4.47 4.47 0 0 1 1.24 3.96 4.35 4.35 0 0 1-.88 1.96l9.46 9.45z"/></svg>��������������mkdocs-material-9.6.4/material/templates/.icons/material/wrench.svg���������������������������������0000664�0000000�0000000�00000000364�14753064456�0025421�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.7 19-9.1-9.1c.9-2.3.4-5-1.5-6.9-2-2-5-2.4-7.4-1.3L9 6 6 9 1.6 4.7C.4 7.1.9 10.1 2.9 12.1c1.9 1.9 4.6 2.4 6.9 1.5l9.1 9.1c.4.4 1 .4 1.4 0l2.3-2.3c.5-.4.5-1.1.1-1.4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/xamarin.svg��������������������������������0000664�0000000�0000000�00000000712�14753064456�0025567�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.75 11.07c.16.28.25.6.25.93s-.09.65-.25.93L18.08 21c-.36.62-1.02 1-1.73 1h-8.7c-.71 0-1.37-.38-1.73-1l-4.67-8.07c-.16-.28-.25-.6-.25-.93s.09-.65.25-.93L5.92 3c.36-.62 1.02-1 1.73-1h8.7c.71 0 1.37.38 1.73 1zM12 12v-.1L9.42 7.1 9.25 7H7.66l-.16.1v.2L10 12l-2.5 4.7v.2l.16.1h1.59l.17-.1L12 12.1zl.03.1 2.55 4.8.17.1h1.59l.16-.1v-.2L14 12l2.5-4.7v-.2l-.16-.1h-1.59l-.17.1-2.55 4.8z"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/xml.svg������������������������������������0000664�0000000�0000000�00000000306�14753064456�0024727�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.89 3 1.96.4L11.11 21l-1.96-.4zm6.7 9L16 8.41V5.58L22.42 12 16 18.41v-2.83zM1.58 12 8 5.58v2.83L4.41 12 8 15.58v2.83z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/xmpp.svg�����������������������������������0000664�0000000�0000000�00000000445�14753064456�0025117�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 15.4C9.75 13.09 8 9.54 8 6L2 4c0 5.65 4.33 10.11 8.55 12.66C9.38 17.5 8.15 18 7 18v1c1.2 0 3.03-.54 5-1.54 1.97 1 3.8 1.54 5 1.54v-1c-1.15 0-2.38-.5-3.55-1.34C17.66 14.11 22 9.65 22 4l-6 2c0 3.54-1.75 7.09-4 9.4"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/yahoo.svg����������������������������������0000664�0000000�0000000�00000000443�14753064456�0025250�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 7.59 8.16 13.2 5.85 7.59H2l4.29 9.64-1.54 3.47H8.5l5.74-13.11zm4.5 5.14c-1.37 0-2.41 1.04-2.41 2.27 0 1.17 1 2.16 2.34 2.16 1.39 0 2.43-1.03 2.43-2.26 0-1.21-1-2.17-2.36-2.17m2.72-9.43-3.83 8.59h4.28L22 3.3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/yeast.svg����������������������������������0000664�0000000�0000000�00000000727�14753064456�0025263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 14a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4l.09-.85c-.04-.7-.17-1.31-.54-1.65-.2-.2-.48-.31-.8-.37-.96.55-2.07.87-3.25.87A6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3 6.5 6.5 0 0 1 16 9.5c0 1.18-.32 2.29-.87 3.25.06.32.17.6.37.8.34.37.95.5 1.65.54zM7.5 10A1.5 1.5 0 0 1 9 11.5 1.5 1.5 0 0 1 7.5 13 1.5 1.5 0 0 1 6 11.5 1.5 1.5 0 0 1 7.5 10m2-5C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5"/></svg>�����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/yin-yang.svg�������������������������������0000664�0000000�0000000�00000000647�14753064456�0025672�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 4 4 0 0 1-4-4 4 4 0 0 1 4-4 4 4 0 0 0 4-4 4 4 0 0 0-4-4m0 2.5A1.5 1.5 0 0 1 13.5 8 1.5 1.5 0 0 1 12 9.5 1.5 1.5 0 0 1 10.5 8 1.5 1.5 0 0 1 12 6.5m0 8a1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/yoga.svg�����������������������������������0000664�0000000�0000000�00000000341�14753064456�0025065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2a2 2 0 1 0 0 4c1.11 0 2-.89 2-2a2 2 0 0 0-2-2M4 7v2h6v6l-5.07 5.07 1.41 1.43 6.72-6.73L17 17.13V21h2v-4.43c0-.36-.18-.68-.5-.86L15 13.6V9h6V7z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/youtube-gaming.svg�������������������������0000664�0000000�0000000�00000000363�14753064456�0027066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 13V8l-5-3-5 3-5-3-5 3v5l10 6zM9 11H7v2H6v-2H4v-1h2V8h1v2h2zm6 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m3-2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/youtube-studio.svg�������������������������0000664�0000000�0000000�00000001240�14753064456�0027126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10 15 5-3-5-3zm9.45-2 2.11 1.63c.22.15.25.37.1.65l-2.02 3.47c-.14.22-.33.28-.61.19l-2.48-.99c-.66.47-1.22.8-1.69.99l-.36 2.62c-.08.28-.23.44-.5.44h-4c-.27 0-.42-.16-.5-.44l-.36-2.62c-.59-.25-1.14-.58-1.69-.99l-2.48.99c-.28.09-.47.03-.61-.19l-2.02-3.47c-.15-.28-.12-.5.1-.65L4.55 13c-.05-.23-.05-.56-.05-1s0-.77.05-1L2.44 9.38c-.22-.16-.25-.38-.1-.66l2.02-3.47c.14-.22.33-.28.61-.19l2.48.99c.66-.47 1.22-.8 1.69-.99l.36-2.62c.08-.28.23-.44.5-.44h4c.27 0 .42.16.5.44l.36 2.62c.59.25 1.14.58 1.69.99l2.48-.99c.28-.09.47-.03.61.19l2.02 3.47c.15.28.12.5-.1.66L19.45 11c.05.23.05.56.05 1s0 .77-.05 1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/youtube-subscription.svg�������������������0000664�0000000�0000000�00000000301�14753064456�0030340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 8H4V6h16zm-2-6H6v2h12zm4 10v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2m-6 4-6-3.27v6.53z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/youtube-tv.svg�����������������������������0000664�0000000�0000000�00000000430�14753064456�0026250�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.5 4.5h19c.84 0 1.5.65 1.5 1.5v11.5c0 .85-.66 1.5-1.5 1.5h-19c-.85 0-1.5-.65-1.5-1.5V6c0-.85.65-1.5 1.5-1.5m7.21 4V15l5.71-3.3zM17.25 21H6.65c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h10.7c.3 0 .5.2.5.5s-.3.5-.6.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/youtube.svg��������������������������������0000664�0000000�0000000�00000000765�14753064456�0025634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10 15 5.19-3L10 9zm11.56-7.83c.13.47.22 1.1.28 1.9.07.8.1 1.49.1 2.09L22 12c0 2.19-.16 3.8-.44 4.83-.25.9-.83 1.48-1.73 1.73-.47.13-1.33.22-2.65.28-1.3.07-2.49.1-3.59.1L12 19c-4.19 0-6.8-.16-7.83-.44-.9-.25-1.48-.83-1.73-1.73-.13-.47-.22-1.1-.28-1.9-.07-.8-.1-1.49-.1-2.09L2 12c0-2.19.16-3.8.44-4.83.25-.9.83-1.48 1.73-1.73.47-.13 1.33-.22 2.65-.28 1.3-.07 2.49-.1 3.59-.1L12 5c4.19 0 6.8.16 7.83.44.9.25 1.48.83 1.73 1.73"/></svg>�����������mkdocs-material-9.6.4/material/templates/.icons/material/yurt.svg�����������������������������������0000664�0000000�0000000�00000000550�14753064456�0025133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 14.87V22h-8v-6h-4v6H2v-7.13c0-.54.29-1.04.76-1.3l5.9-3.37c.22-.13.48-.2.74-.2h3.1V9H14v1h.59c.26 0 .52.07.74.2l5.9 3.37c.48.27.77.76.77 1.3M7.86 6.25H9.4c1.33 0 2.52.7 3.1 1.75H14c-.4-1.8-2-3.15-3.9-3.15v-1.5c1 0 1.85-.85 1.85-1.85V1H7.86v1.5c-1 0-1.86.73-1.86 1.75s.86 2 1.86 2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/z-wave.svg���������������������������������0000664�0000000�0000000�00000000562�14753064456�0025344�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.3 10.58c-3.16 0-5.7 2.55-5.7 5.7S13.15 22 16.3 22s5.7-2.57 5.7-5.72-2.55-5.7-5.7-5.7m1.7 8.5h-4.81L15.81 15h-2.5l1.09-1.77h4.78l-2.55 4.05h2.55zM16.3 3.93V2C8.41 2 2 8.42 2 16.31h1.92C3.94 9.46 9.5 3.93 16.3 3.93m0 3.81V5.82c-5.8 0-10.49 4.71-10.49 10.49h1.92c.02-4.73 3.86-8.57 8.57-8.57"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/zend.svg�����������������������������������0000664�0000000�0000000�00000000414�14753064456�0025067�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.28 9.81S11.28 7 14.09 7h8.41s0 2.81-2.79 2.81zm0 3.6s0-2.81 2.81-2.81h4.22s0 2.81-2.81 2.81zm0 3.59s0-2.81 2.81-2.81h1.41s0 2.81-2.82 2.81zm-.82-2.2V17H1.58L7.3 9.21H2.4V7h9.26l-5.7 7.8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/zigbee.svg���������������������������������0000664�0000000�0000000�00000001074�14753064456�0025377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.06 6.15c-.09.02-.18.07-.26.13A9.9 9.9 0 0 0 2 12a10 10 0 0 0 10 10c3 0 5.68-1.32 7.5-3.4l-2.5.25c-2.75.3-5.55.34-8.34.11-.71-.02-1.42-.2-2.07-.51a2.62 2.62 0 0 1-1.52-2.16c-.01-.16.05-.29.16-.42l2.19-2.27 7.61-7.9v-.1h-4.19c-2.27.04-4.53.22-6.78.55M20.17 17.5c.09-.03.18-.06.26-.11A10 10 0 0 0 22 12 10 10 0 0 0 12 2C9.22 2 6.7 3.13 4.89 4.97h.28c3.11-.4 6.26-.5 9.39-.32.94-.01 1.89.17 2.77.52A2.67 2.67 0 0 1 19 7.37c0 .16-.07.33-.18.45l-9.11 9.37-.71.76v.11h4.14c2.36-.06 4.7-.25 7.03-.56"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/zip-box-outline.svg������������������������0000664�0000000�0000000�00000000362�14753064456�0027176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 17v-2h2v2zm2-4v-2h-2v2zm0-4V7h-2v2zm-4 2h2V9h-2zm0 4h2v-2h-2zM21 5v14c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2m-2 0h-7v2h-2V5H5v14h14z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/zip-box.svg��������������������������������0000664�0000000�0000000�00000000327�14753064456�0025522�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 17h-2v-2h-2v-2h2v2h2m0-6h-2v2h2v2h-2v-2h-2V9h2V7h-2V5h2v2h2m5-4H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/zip-disk.svg�������������������������������0000664�0000000�0000000�00000000314�14753064456�0025660�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 3 3 5v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5l-4-2v2a1 1 0 0 1-1 1h-6a1 1 0 0 1-1-1V3zm1 7h8a1 1 0 0 1 1 1v8H7v-8a1 1 0 0 1 1-1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/zodiac-aquarius.svg������������������������0000664�0000000�0000000�00000000401�14753064456�0027224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15 12.41-3-3-3 3-3-3-2.29 2.3-1.42-1.42L6 6.59l3 3 3-3 3 3 3-3 3.71 3.7-1.42 1.42L18 9.41zm3 3 2.29 2.3 1.42-1.42-3.71-3.7-3 3-3-3-3 3-3-3-3.71 3.7 1.42 1.42L6 15.41l3 3 3-3 3 3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/zodiac-aries.svg���������������������������0000664�0000000�0000000�00000000574�14753064456�0026510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 2c-1.05 0-2.09.27-3 .81-.36.19-.7.45-1 .73-.3-.28-.64-.54-1-.73C10.09 2.27 9.05 2 8 2a6 6 0 0 0-6 6 6 6 0 0 0 6 6v-2a4 4 0 0 1-4-4 4 4 0 0 1 4-4 4.03 4.03 0 0 1 3 1.36V22h2V5.36c.08-.09.16-.18.25-.26a4 4 0 0 1 5.66.15 3.997 3.997 0 0 1-.15 5.65C18 11.61 17.03 12 16 12v2a6 6 0 0 0 6-6 6 6 0 0 0-6-6"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/zodiac-cancer.svg��������������������������0000664�0000000�0000000�00000001037�14753064456�0026633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4C6.5 4 2 7.58 2 12c0 2.12 1.65 3.87 3.76 4H6a4 4 0 0 0 4-4 4 4 0 0 0-4-4h-.24A8.8 8.8 0 0 1 12 5.6c1.77-.02 3.5.47 5 1.4l1.25-1.25A11.5 11.5 0 0 0 12 4m-6 6a2 2 0 0 1 2 2c0 1.11-.92 2-2 2a2 2 0 0 1-2-1.8v-.4A2 2 0 0 1 6 10m12.24-2H18a4 4 0 0 0-4 4 4 4 0 0 0 4 4h.24A8.8 8.8 0 0 1 12 18.4c-1.77.02-3.5-.47-5-1.4l-1.24 1.24C7.63 19.41 9.79 20 12 20c5.5 0 10-3.58 10-8 0-2.12-1.65-3.87-3.76-4M18 14a2 2 0 0 1-2-2c0-1.11.92-2 2-2a2 2 0 0 1 2 1.8v.4a2 2 0 0 1-2 1.8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/zodiac-capricorn.svg�����������������������0000664�0000000�0000000�00000000605�14753064456�0027360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 13c-.7 0-1.39.19-2 .55V6a3 3 0 0 0-3-3c-.75 0-1.45.29-2 .78C7.45 3.28 6.74 3 6 3v2a1 1 0 0 1 1 1v10h2V6a1 1 0 0 1 1-1 1 1 0 0 1 1 1v11a2 2 0 0 1-2 2v2c1.15 0 2.25-.5 3-1.38a3.974 3.974 0 0 0 5.64.38c1.67-1.42 1.86-3.95.4-5.62A4.01 4.01 0 0 0 15 13m0 6a2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2"/></svg>���������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/zodiac-gemini.svg��������������������������0000664�0000000�0000000�00000000550�14753064456�0026647�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 5.3c1.35-.33 2.66-.76 3.94-1.3l-.76-1.86a23.75 23.75 0 0 1-18.36.03L2.06 4c1.28.54 2.59.97 3.94 1.3v13.4c-1.35.33-2.66.76-3.94 1.3l.76 1.86a23.94 23.94 0 0 1 18.36 0l.76-1.86c-1.28-.54-2.59-.97-3.94-1.3zm-10 13V5.69c1.32.2 2.66.31 4 .31s2.68-.11 4-.31v12.62a26.2 26.2 0 0 0-8 0z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/zodiac-leo.svg�����������������������������0000664�0000000�0000000�00000001070�14753064456�0026154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 17a3 3 0 0 1-3 3 3.163 3.163 0 0 1-3-3c.16-1.61.5-3.2 1-4.74.54-1.71.87-3.47 1-5.26a5.136 5.136 0 0 0-5-5 5.136 5.136 0 0 0-5 5c.15 1.53.5 3.03 1 4.5l.21.7c-2.11-.67-4.35.5-5.02 2.6-.69 2.11.49 4.36 2.6 5.03s4.35-.5 5.02-2.61c.13-.39.19-.81.19-1.22-.16-1.73-.5-3.44-1.09-5.08A18.8 18.8 0 0 1 8 7a3.163 3.163 0 0 1 3-3c1.62.08 2.92 1.38 3 3a22.6 22.6 0 0 1-1 4.74c-.54 1.71-.87 3.47-1 5.26a5.136 5.136 0 0 0 5 5 5 5 0 0 0 5-5zM6 18a2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/zodiac-libra.svg���������������������������0000664�0000000�0000000�00000000462�14753064456�0026472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 16v2h-7v-2.09c3-.55 4.96-3.41 4.41-6.41S14 4.54 11 5.09C8 5.65 6.04 8.5 6.59 11.5c.41 2.24 2.17 4 4.41 4.41V18H4v-2h2.92a7.43 7.43 0 0 1-2.42-5.5A7.5 7.5 0 0 1 12 3a7.5 7.5 0 0 1 7.5 7.5c0 2.09-.87 4.09-2.42 5.5zm0 3H4v2h16z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/zodiac-pisces.svg��������������������������0000664�0000000�0000000�00000000516�14753064456�0026667�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11h-2c.11-2.81.73-5.58 1.81-8.18L18 2.06A26 26 0 0 0 16 11H8c-.13-3.08-.81-6.1-2-8.94l-1.86.76C5.24 5.41 5.87 8.18 6 11H4v2h2a23.8 23.8 0 0 1-1.81 8.18l1.81.76C7.19 19.1 7.87 16.08 8 13h8c.13 3.08.81 6.1 2 8.94l1.86-.76c-1.1-2.59-1.73-5.36-1.86-8.18h2z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/zodiac-sagittarius.svg���������������������0000664�0000000�0000000�00000000310�14753064456�0027730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 2v10h-2V5.41L10.41 15l2.3 2.29-1.42 1.42L9 16.41l-5.29 5.3-1.42-1.42L7.59 15l-2.3-2.29 1.42-1.42L9 13.59 18.59 4H12V2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/zodiac-scorpio.svg�������������������������0000664�0000000�0000000�00000000530�14753064456�0027053�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.71 15.29-1.42 1.42 1.3 1.29H16a2 2 0 0 1-2-2V6a3 3 0 0 0-3-3c-.75 0-1.45.29-2 .78a2.997 2.997 0 0 0-4 0C4.45 3.28 3.74 3 3 3v2a1 1 0 0 1 1 1v10h2V6a1 1 0 0 1 1-1 1 1 0 0 1 1 1v10h2V6a1 1 0 0 1 1-1 1 1 0 0 1 1 1v10a4 4 0 0 0 4 4h1.59l-1.3 1.29 1.42 1.42 3.7-3.71z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/zodiac-taurus.svg��������������������������0000664�0000000�0000000�00000000502�14753064456�0026717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.59 9A7 7 0 0 0 19 3h-2a5 5 0 0 1-5 5 5 5 0 0 1-5-5H5c0 2.46 1.3 4.74 3.41 6C5.09 11 4 15.28 6 18.6c1.97 3.32 6.27 4.4 9.59 2.4 3.32-1.96 4.41-6.26 2.41-9.58A6.9 6.9 0 0 0 15.59 9M12 20a5 5 0 0 1-5-5 5 5 0 0 1 5-5 5 5 0 0 1 5 5 5 5 0 0 1-5 5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/material/zodiac-virgo.svg���������������������������0000664�0000000�0000000�00000000765�14753064456�0026535�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 19.13C20 17.77 20 15.18 20 14a4 4 0 0 0-4-4c-.7 0-1.4.2-2 .56V6a3 3 0 0 0-3-3c-.75 0-1.45.29-2 .78a2.997 2.997 0 0 0-4 0C4.45 3.28 3.74 3 3 3v2a1 1 0 0 1 1 1v10h2V6a1 1 0 0 1 1-1 1 1 0 0 1 1 1v10h2V6a1 1 0 0 1 1-1 1 1 0 0 1 1 1v8c0 1.18 0 3.77 1.5 5.13-.78.41-1.62.71-2.5.87v2c1.29 0 3.84-1.26 5-1.87 1.16.61 3.71 1.87 5 1.87v-2c-.88-.16-1.72-.46-2.5-.87M16 12a2 2 0 0 1 2 2c0 2.92-.54 4-2 4s-2-1.08-2-4a2 2 0 0 1 2-2"/></svg>�����������mkdocs-material-9.6.4/material/templates/.icons/octicons/�������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0023432�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/LICENSE������������������������������������0000664�0000000�0000000�00000002054�14753064456�0024440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������MIT License Copyright (c) 2024 GitHub Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/accessibility-16.svg�����������������������0000664�0000000�0000000�00000000627�14753064456�0027233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M9.923 5.302q.094.095.178.198H14A.75.75 0 0 1 14 7h-3.3l.578 5.163.362 2.997a.75.75 0 0 1-1.49.18L9.868 13H6.132l-.282 2.34a.75.75 0 0 1-1.49-.18l.362-2.997L5.3 7H2a.75.75 0 0 1 0-1.5h3.9a3 3 0 0 1 .176-.198 3 3 0 1 1 3.847 0M9.2 7.073za1.206 1.206 0 0 0-2.398 0L6.305 11.5h3.39ZM9.5 3a1.5 1.5 0 1 0-3.001.001A1.5 1.5 0 0 0 9.5 3"/></svg>���������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/accessibility-24.svg�����������������������0000664�0000000�0000000�00000000772�14753064456�0027233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.974 8.114a3.573 3.573 0 1 0-3.947 0c-.302.21-.57.467-.79.762H3.708a.75.75 0 1 0 0 1.5h4.885a3 3 0 0 0-.026.188l-.814 7.267-.499 4.142a.75.75 0 1 0 1.49.18l.42-3.486h5.67l.42 3.485a.75.75 0 0 0 1.49-.18l-.5-4.142-.813-7.266a4 4 0 0 0-.026-.188h4.885a.75.75 0 1 0 0-1.5h-5.527a3.5 3.5 0 0 0-.79-.762Zm.099-2.979a2.073 2.073 0 1 1-4.146 0 2.073 2.073 0 0 1 4.146 0m-.131 5.596.72 6.436H9.338l.72-6.436a1.954 1.954 0 0 1 3.884 0"/></svg>������mkdocs-material-9.6.4/material/templates/.icons/octicons/accessibility-inset-16.svg�����������������0000664�0000000�0000000�00000000575�14753064456�0030355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0M3.75 6a.75.75 0 0 0 0 1.5h2.409a2 2 0 0 0-.025.151l-.307 2.508-.323 3.011a.75.75 0 0 0 1.492.16l.25-2.33h1.509l.25 2.33a.748.748 0 0 0 1.199.552.75.75 0 0 0 .291-.712l-.32-3-.309-2.519a2 2 0 0 0-.025-.151h2.409a.75.75 0 0 0 0-1.5zM8 6a2 2 0 1 0 .001-3.999A2 2 0 0 0 8 6"/></svg>�����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/accessibility-inset-24.svg�����������������0000664�0000000�0000000�00000000554�14753064456�0030351�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m2.5 6.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0M12 9h6.375a.75.75 0 0 1 0 1.5h-4.028l.542 4.42.482 4.5a.75.75 0 1 1-1.492.16l-.41-3.83H10.53l-.41 3.83a.75.75 0 1 1-1.492-.16l.484-4.511.54-4.409H5.625a.75.75 0 0 1 0-1.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/ai-model-16.svg����������������������������0000664�0000000�0000000�00000000771�14753064456�0026073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M10.628 7.25a2.25 2.25 0 1 1 0 1.5H8.622a2.25 2.25 0 0 1-2.513 1.466L5.03 12.124a2.25 2.25 0 1 1-1.262-.814l1.035-1.832A2.25 2.25 0 0 1 4.25 8c0-.566.209-1.082.553-1.478L3.768 4.69a2.25 2.25 0 1 1 1.262-.814l1.079 1.908A2.25 2.25 0 0 1 8.622 7.25ZM2.5 2.5a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0m4 4.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m6.25 0a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m-9.5 5.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5"/></svg>�������mkdocs-material-9.6.4/material/templates/.icons/octicons/ai-model-24.svg����������������������������0000664�0000000�0000000�00000001150�14753064456�0026062�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.375 8.5a3.25 3.25 0 1 1-3.163 4h-3a3.252 3.252 0 0 1-4.443 2.509L7.214 17.76a3.25 3.25 0 1 1-1.342-.674l1.672-2.957A3.24 3.24 0 0 1 6.75 12c0-.907.371-1.727.97-2.316L6.117 6.846A3.253 3.253 0 0 1 1.875 3.75a3.25 3.25 0 1 1 5.526 2.32l1.603 2.836A3.25 3.25 0 0 1 13.093 11h3.119a3.25 3.25 0 0 1 3.163-2.5M10 10.25a1.75 1.75 0 1 0-.001 3.499A1.75 1.75 0 0 0 10 10.25M5.125 2a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5m12.5 9.75a1.75 1.75 0 1 0 3.5 0 1.75 1.75 0 0 0-3.5 0m-14.25 8.5a1.75 1.75 0 1 0 3.501-.001 1.75 1.75 0 0 0-3.501.001"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/alert-16.svg�������������������������������0000664�0000000�0000000�00000000572�14753064456�0025512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6.457 1.047c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0 1 14.082 15H1.918a1.75 1.75 0 0 1-1.543-2.575Zm1.763.707a.25.25 0 0 0-.44 0L1.698 13.132a.25.25 0 0 0 .22.368h12.164a.25.25 0 0 0 .22-.368Zm.53 3.996v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0M9 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/alert-24.svg�������������������������������0000664�0000000�0000000�00000000657�14753064456�0025515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 17.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0m-.25-8.25a.75.75 0 0 0-1.5 0v4.5a.75.75 0 0 0 1.5 0z"/><path d="M9.836 3.244c.963-1.665 3.365-1.665 4.328 0l8.967 15.504c.963 1.667-.24 3.752-2.165 3.752H3.034c-1.926 0-3.128-2.085-2.165-3.752Zm3.03.751a1.002 1.002 0 0 0-1.732 0L2.168 19.499A1.002 1.002 0 0 0 3.034 21h17.932a1.002 1.002 0 0 0 .866-1.5L12.866 3.994Z"/></svg>���������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/alert-fill-12.svg��������������������������0000664�0000000�0000000�00000000352�14753064456�0026426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M4.855.708c.5-.896 1.79-.896 2.29 0l4.675 8.351a1.312 1.312 0 0 1-1.146 1.954H1.33A1.313 1.313 0 0 1 .183 9.058ZM7 7V3H5v4Zm-1 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/alert-fill-16.svg��������������������������0000664�0000000�0000000�00000000450�14753064456�0026431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6.457 1.047c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0 1 14.082 15H1.918a1.75 1.75 0 0 1-1.543-2.575ZM8 5a.75.75 0 0 0-.75.75v2.5a.75.75 0 0 0 1.5 0v-2.5A.75.75 0 0 0 8 5m1 6a1 1 0 1 0-2 0 1 1 0 0 0 2 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/alert-fill-24.svg��������������������������0000664�0000000�0000000�00000000472�14753064456�0026434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.836 3.244c.963-1.665 3.365-1.665 4.328 0l8.967 15.504c.963 1.667-.24 3.752-2.165 3.752H3.034c-1.926 0-3.128-2.085-2.165-3.752ZM12 8.5a.75.75 0 0 0-.75.75v4.5a.75.75 0 0 0 1.5 0v-4.5A.75.75 0 0 0 12 8.5m1 9a1 1 0 1 0-2 0 1 1 0 0 0 2 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/apps-16.svg��������������������������������0000664�0000000�0000000�00000001713�14753064456�0025344�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1.5 3.25c0-.966.784-1.75 1.75-1.75h2.5c.966 0 1.75.784 1.75 1.75v2.5A1.75 1.75 0 0 1 5.75 7.5h-2.5A1.75 1.75 0 0 1 1.5 5.75Zm7 0c0-.966.784-1.75 1.75-1.75h2.5c.966 0 1.75.784 1.75 1.75v2.5a1.75 1.75 0 0 1-1.75 1.75h-2.5A1.75 1.75 0 0 1 8.5 5.75Zm-7 7c0-.966.784-1.75 1.75-1.75h2.5c.966 0 1.75.784 1.75 1.75v2.5a1.75 1.75 0 0 1-1.75 1.75h-2.5a1.75 1.75 0 0 1-1.75-1.75Zm7 0c0-.966.784-1.75 1.75-1.75h2.5c.966 0 1.75.784 1.75 1.75v2.5a1.75 1.75 0 0 1-1.75 1.75h-2.5a1.75 1.75 0 0 1-1.75-1.75ZM3.25 3a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h2.5A.25.25 0 0 0 6 5.75v-2.5A.25.25 0 0 0 5.75 3Zm7 0a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h2.5a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25Zm-7 7a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h2.5a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25Zm7 0a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h2.5a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25Z"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/apps-24.svg��������������������������������0000664�0000000�0000000�00000002000�14753064456�0025331�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.5 2.75A2.75 2.75 0 0 0 2.75 5.5v3a2.75 2.75 0 0 0 2.75 2.75h3a2.75 2.75 0 0 0 2.75-2.75v-3A2.75 2.75 0 0 0 8.5 2.75zM4.25 5.5c0-.69.56-1.25 1.25-1.25h3c.69 0 1.25.56 1.25 1.25v3c0 .69-.56 1.25-1.25 1.25h-3c-.69 0-1.25-.56-1.25-1.25zm1.25 7.25a2.75 2.75 0 0 0-2.75 2.75v3a2.75 2.75 0 0 0 2.75 2.75h3a2.75 2.75 0 0 0 2.75-2.75v-3a2.75 2.75 0 0 0-2.75-2.75zM4.25 15.5c0-.69.56-1.25 1.25-1.25h3c.69 0 1.25.56 1.25 1.25v3c0 .69-.56 1.25-1.25 1.25h-3c-.69 0-1.25-.56-1.25-1.25zm8.5-10a2.75 2.75 0 0 1 2.75-2.75h3a2.75 2.75 0 0 1 2.75 2.75v3a2.75 2.75 0 0 1-2.75 2.75h-3a2.75 2.75 0 0 1-2.75-2.75zm2.75-1.25c-.69 0-1.25.56-1.25 1.25v3c0 .69.56 1.25 1.25 1.25h3c.69 0 1.25-.56 1.25-1.25v-3c0-.69-.56-1.25-1.25-1.25zm0 8.5a2.75 2.75 0 0 0-2.75 2.75v3a2.75 2.75 0 0 0 2.75 2.75h3a2.75 2.75 0 0 0 2.75-2.75v-3a2.75 2.75 0 0 0-2.75-2.75zm-1.25 2.75c0-.69.56-1.25 1.25-1.25h3c.69 0 1.25.56 1.25 1.25v3c0 .69-.56 1.25-1.25 1.25h-3c-.69 0-1.25-.56-1.25-1.25z"/></svg>mkdocs-material-9.6.4/material/templates/.icons/octicons/archive-16.svg�����������������������������0000664�0000000�0000000�00000001027�14753064456�0026020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 2.75C0 1.784.784 1 1.75 1h12.5c.966 0 1.75.784 1.75 1.75v1.5A1.75 1.75 0 0 1 14.25 6H1.75A1.75 1.75 0 0 1 0 4.25ZM1.75 7a.75.75 0 0 1 .75.75v5.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25v-5.5a.75.75 0 0 1 1.5 0v5.5A1.75 1.75 0 0 1 13.25 15H2.75A1.75 1.75 0 0 1 1 13.25v-5.5A.75.75 0 0 1 1.75 7m0-4.5a.25.25 0 0 0-.25.25v1.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-1.5a.25.25 0 0 0-.25-.25ZM6.25 8h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1 0-1.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/archive-24.svg�����������������������������0000664�0000000�0000000�00000001061�14753064456�0026015�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.75 2h18.5c.966 0 1.75.784 1.75 1.75v3.5A1.75 1.75 0 0 1 21.25 9H2.75A1.75 1.75 0 0 1 1 7.25v-3.5C1 2.784 1.784 2 2.75 2m18.5 1.5H2.75a.25.25 0 0 0-.25.25v3.5c0 .138.112.25.25.25h18.5a.25.25 0 0 0 .25-.25v-3.5a.25.25 0 0 0-.25-.25M2.75 10a.75.75 0 0 1 .75.75v9.5c0 .138.112.25.25.25h16.5a.25.25 0 0 0 .25-.25v-9.5a.75.75 0 0 1 1.5 0v9.5A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25v-9.5a.75.75 0 0 1 .75-.75"/><path d="M9.75 11.5a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/arrow-both-16.svg��������������������������0000664�0000000�0000000�00000000611�14753064456�0026461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.72 3.72a.75.75 0 0 1 1.042.018.75.75 0 0 1 .018 1.042L2.56 7h10.88l-2.22-2.22a.75.75 0 0 1 .018-1.042.75.75 0 0 1 1.042-.018l3.5 3.5a.75.75 0 0 1 0 1.06l-3.5 3.5a.749.749 0 0 1-1.275-.326.75.75 0 0 1 .215-.734l2.22-2.22H2.56l2.22 2.22a.749.749 0 0 1-.326 1.275.75.75 0 0 1-.734-.215l-3.5-3.5a.75.75 0 0 1 0-1.06Z"/></svg>�����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/arrow-both-24.svg��������������������������0000664�0000000�0000000�00000000512�14753064456�0026460�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.78 5.97a.75.75 0 0 0-1.06 0l-5.25 5.25a.75.75 0 0 0 0 1.06l5.25 5.25a.75.75 0 0 0 1.06-1.06L3.81 12.5h16.38l-3.97 3.97a.75.75 0 1 0 1.06 1.06l5.25-5.25a.75.75 0 0 0 0-1.06l-5.25-5.25a.75.75 0 1 0-1.06 1.06L20.19 11H3.81l3.97-3.97a.75.75 0 0 0 0-1.06"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/arrow-down-16.svg��������������������������0000664�0000000�0000000�00000000412�14753064456�0026473�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M13.03 8.22a.75.75 0 0 1 0 1.06l-4.25 4.25a.75.75 0 0 1-1.06 0L3.47 9.28a.75.75 0 0 1 .018-1.042.75.75 0 0 1 1.042-.018l2.97 2.97V3.75a.75.75 0 0 1 1.5 0v7.44l2.97-2.97a.75.75 0 0 1 1.06 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/arrow-down-24.svg��������������������������0000664�0000000�0000000�00000000412�14753064456�0026472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.97 13.22a.75.75 0 0 1 1.06 0L11 18.19V3.75a.75.75 0 0 1 1.5 0v14.44l4.97-4.97a.749.749 0 0 1 1.275.326.75.75 0 0 1-.215.734l-6.25 6.25a.75.75 0 0 1-1.06 0l-6.25-6.25a.75.75 0 0 1 0-1.06"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/arrow-down-left-16.svg���������������������0000664�0000000�0000000�00000000343�14753064456�0027426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M11.78 4.22a.75.75 0 0 1 0 1.06l-5.26 5.26h4.2a.75.75 0 0 1 0 1.5H4.71a.75.75 0 0 1-.75-.75V5.28a.75.75 0 0 1 1.5 0v4.2l5.26-5.26a.75.75 0 0 1 1.06 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/arrow-down-left-24.svg���������������������0000664�0000000�0000000�00000000373�14753064456�0027430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.75 8.5a.75.75 0 0 1 .75.75v7.19L16.72 6.22a.75.75 0 0 1 1.042.018.75.75 0 0 1 .018 1.042L7.56 17.5h7.19a.75.75 0 0 1 0 1.5h-9a.75.75 0 0 1-.75-.75v-9a.75.75 0 0 1 .75-.75"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/arrow-down-right-16.svg��������������������0000664�0000000�0000000�00000000343�14753064456�0027611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M4.22 4.179a.75.75 0 0 1 1.06 0l5.26 5.26v-4.2a.75.75 0 0 1 1.5 0v6.01a.75.75 0 0 1-.75.75H5.28a.75.75 0 0 1 0-1.5h4.2L4.22 5.24a.75.75 0 0 1 0-1.06Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/arrow-down-right-24.svg��������������������0000664�0000000�0000000�00000000373�14753064456�0027613�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.25 8.5a.75.75 0 0 1 .75.75v9a.75.75 0 0 1-.75.75h-9a.75.75 0 0 1 0-1.5h7.19L6.22 7.28a.75.75 0 0 1 .018-1.042.75.75 0 0 1 1.042-.018L17.5 16.44V9.25a.75.75 0 0 1 .75-.75"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/arrow-left-16.svg��������������������������0000664�0000000�0000000�00000000405�14753064456�0026460�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.78 12.53a.75.75 0 0 1-1.06 0L2.47 8.28a.75.75 0 0 1 0-1.06l4.25-4.25a.75.75 0 0 1 1.042.018.75.75 0 0 1 .018 1.042L4.81 7h7.44a.75.75 0 0 1 0 1.5H4.81l2.97 2.97a.75.75 0 0 1 0 1.06"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/arrow-left-24.svg��������������������������0000664�0000000�0000000�00000000413�14753064456�0026456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.78 19.03a.75.75 0 0 1-1.06 0l-6.25-6.25a.75.75 0 0 1 0-1.06l6.25-6.25a.749.749 0 0 1 1.275.326.75.75 0 0 1-.215.734L5.81 11.5h14.44a.75.75 0 0 1 0 1.5H5.81l4.97 4.97a.75.75 0 0 1 0 1.06"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/arrow-right-16.svg�������������������������0000664�0000000�0000000�00000000411�14753064456�0026640�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8.22 2.97a.75.75 0 0 1 1.06 0l4.25 4.25a.75.75 0 0 1 0 1.06l-4.25 4.25a.75.75 0 0 1-1.042-.018.75.75 0 0 1-.018-1.042l2.97-2.97H3.75a.75.75 0 0 1 0-1.5h7.44L8.22 4.03a.75.75 0 0 1 0-1.06"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/arrow-right-24.svg�������������������������0000664�0000000�0000000�00000000414�14753064456�0026642�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.22 19.03a.75.75 0 0 1 0-1.06L18.19 13H3.75a.75.75 0 0 1 0-1.5h14.44l-4.97-4.97a.749.749 0 0 1 .326-1.275.75.75 0 0 1 .734.215l6.25 6.25a.75.75 0 0 1 0 1.06l-6.25 6.25a.75.75 0 0 1-1.06 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/arrow-switch-16.svg������������������������0000664�0000000�0000000�00000000521�14753064456�0027026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M5.22 14.78a.75.75 0 0 0 1.06-1.06L4.56 12h8.69a.75.75 0 0 0 0-1.5H4.56l1.72-1.72a.75.75 0 0 0-1.06-1.06l-3 3a.75.75 0 0 0 0 1.06zm5.56-6.5a.75.75 0 1 1-1.06-1.06l1.72-1.72H2.75a.75.75 0 0 1 0-1.5h8.69L9.72 2.28a.75.75 0 0 1 1.06-1.06l3 3a.75.75 0 0 1 0 1.06z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/arrow-switch-24.svg������������������������0000664�0000000�0000000�00000000534�14753064456�0027031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.72 21.78a.75.75 0 0 0 1.06-1.06L5.56 17.5h14.69a.75.75 0 0 0 0-1.5H5.56l3.22-3.22a.75.75 0 1 0-1.06-1.06l-4.5 4.5a.75.75 0 0 0 0 1.06zm8.56-9.5a.75.75 0 1 1-1.06-1.06L18.44 8H3.75a.75.75 0 0 1 0-1.5h14.69l-3.22-3.22a.75.75 0 0 1 1.06-1.06l4.5 4.5a.75.75 0 0 1 0 1.06z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/arrow-up-16.svg����������������������������0000664�0000000�0000000�00000000404�14753064456�0026151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.47 7.78a.75.75 0 0 1 0-1.06l4.25-4.25a.75.75 0 0 1 1.06 0l4.25 4.25a.75.75 0 0 1-.018 1.042.75.75 0 0 1-1.042.018L9 4.81v7.44a.75.75 0 0 1-1.5 0V4.81L4.53 7.78a.75.75 0 0 1-1.06 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/arrow-up-24.svg����������������������������0000664�0000000�0000000�00000000421�14753064456�0026147�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.655 10.405a.75.75 0 0 1-1.06 0l-4.97-4.97v14.44a.75.75 0 0 1-1.5 0V5.435l-4.97 4.97a.749.749 0 0 1-1.275-.326.75.75 0 0 1 .215-.734l6.25-6.25a.75.75 0 0 1 1.06 0l6.25 6.25a.75.75 0 0 1 0 1.06"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/arrow-up-left-16.svg�����������������������0000664�0000000�0000000�00000000316�14753064456�0027103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.96 4.75A.75.75 0 0 1 4.71 4h6.01a.75.75 0 0 1 0 1.5h-4.2l5.26 5.26a.75.75 0 0 1-1.06 1.061l-5.26-5.26v4.2a.75.75 0 0 1-1.5 0Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/arrow-up-left-24.svg�����������������������0000664�0000000�0000000�00000000374�14753064456�0027106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.75 15.5a.75.75 0 0 1-.75-.75v-9A.75.75 0 0 1 5.75 5h9a.75.75 0 0 1 0 1.5H7.56l10.22 10.22a.749.749 0 0 1-.326 1.275.75.75 0 0 1-.734-.215L6.5 7.56v7.19a.75.75 0 0 1-.75.75"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/arrow-up-right-16.svg����������������������0000664�0000000�0000000�00000000401�14753064456�0027261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M4.53 4.75A.75.75 0 0 1 5.28 4h6.01a.75.75 0 0 1 .75.75v6.01a.75.75 0 0 1-1.5 0v-4.2l-5.26 5.261a.749.749 0 0 1-1.275-.326.75.75 0 0 1 .215-.734L9.48 5.5h-4.2a.75.75 0 0 1-.75-.75"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/arrow-up-right-24.svg����������������������0000664�0000000�0000000�00000000374�14753064456�0027271�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.25 15.5a.75.75 0 0 1-.75-.75V7.56L7.28 17.78a.749.749 0 0 1-1.275-.326.75.75 0 0 1 .215-.734L16.44 6.5H9.25a.75.75 0 0 1 0-1.5h9a.75.75 0 0 1 .75.75v9a.75.75 0 0 1-.75.75"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/beaker-16.svg������������������������������0000664�0000000�0000000�00000000612�14753064456�0025627�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M5 5.782V2.5h-.25a.75.75 0 0 1 0-1.5h6.5a.75.75 0 0 1 0 1.5H11v3.282l3.666 5.76C15.619 13.04 14.543 15 12.767 15H3.233c-1.776 0-2.852-1.96-1.899-3.458Zm-2.4 6.565a.75.75 0 0 0 .633 1.153h9.534a.75.75 0 0 0 .633-1.153L12.225 10.5h-8.45ZM9.5 2.5h-3V6c0 .143-.04.283-.117.403L4.73 9h6.54L9.617 6.403A.75.75 0 0 1 9.5 6Z"/></svg>����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/beaker-24.svg������������������������������0000664�0000000�0000000�00000000631�14753064456�0025627�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 8.807V3.5h-.563a.75.75 0 0 1 0-1.5h9.125a.75.75 0 0 1 0 1.5H16v5.307l5.125 9.301c.964 1.75-.302 3.892-2.299 3.892H5.174c-1.998 0-3.263-2.142-2.3-3.892ZM4.189 18.832a1.123 1.123 0 0 0 .985 1.668h13.652a1.123 1.123 0 0 0 .985-1.668L17.7 15H6.3ZM14.5 3.5h-5V9a.75.75 0 0 1-.093.362L7.127 13.5h9.746l-2.28-4.138A.75.75 0 0 1 14.5 9Z"/></svg>�������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/bell-16.svg��������������������������������0000664�0000000�0000000�00000001053�14753064456�0025314�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 16a2 2 0 0 0 1.985-1.75c.017-.137-.097-.25-.235-.25h-3.5c-.138 0-.252.113-.235.25A2 2 0 0 0 8 16M3 5a5 5 0 0 1 10 0v2.947q0 .076.042.139l1.703 2.555A1.519 1.519 0 0 1 13.482 13H2.518a1.516 1.516 0 0 1-1.263-2.36l1.703-2.554A.26.26 0 0 0 3 7.947Zm5-3.5A3.5 3.5 0 0 0 4.5 5v2.947c0 .346-.102.683-.294.97l-1.703 2.556-.003.01.001.006q0 .003.004.006l.006.004.007.001h10.964l.007-.001.006-.004.004-.006.001-.007-.003-.01-1.703-2.554a1.75 1.75 0 0 1-.294-.97V5A3.5 3.5 0 0 0 8 1.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/bell-24.svg��������������������������������0000664�0000000�0000000�00000001033�14753064456�0025311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1c3.681 0 7 2.565 7 6v4.539c0 .642.189 1.269.545 1.803l2.2 3.298A1.517 1.517 0 0 1 20.482 19H15.5a3.5 3.5 0 1 1-7 0H3.519a1.518 1.518 0 0 1-1.265-2.359l2.2-3.299A3.25 3.25 0 0 0 5 11.539V7c0-3.435 3.318-6 7-6M6.5 7v4.539a4.75 4.75 0 0 1-.797 2.635l-2.2 3.298-.003.01.001.007.004.006.006.004.007.001h16.964l.007-.001.006-.004.004-.006.001-.006-.003-.01-2.199-3.299a4.75 4.75 0 0 1-.798-2.635V7c0-2.364-2.383-4.5-5.5-4.5S6.5 4.636 6.5 7M14 19h-4a2 2 0 1 0 4 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/bell-fill-16.svg���������������������������0000664�0000000�0000000�00000000425�14753064456�0026242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 16c.9 0 1.7-.6 1.9-1.5.1-.3-.1-.5-.4-.5h-3c-.3 0-.5.2-.4.5.2.9 1 1.5 1.9 1.5M3 5c0-2.8 2.2-5 5-5s5 2.2 5 5v3l1.7 2.6c.2.2.3.5.3.8 0 .8-.7 1.5-1.5 1.5h-11c-.8.1-1.5-.6-1.5-1.4 0-.3.1-.6.3-.8L3 8.1z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/bell-fill-24.svg���������������������������0000664�0000000�0000000�00000000430�14753064456�0026235�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 8a6 6 0 1 1 12 0v2.917c0 .703.228 1.387.65 1.95L20.7 15.6a1.5 1.5 0 0 1-1.2 2.4h-15a1.5 1.5 0 0 1-1.2-2.4l2.05-2.733a3.25 3.25 0 0 0 .65-1.95Zm6 13.5A3.5 3.5 0 0 1 8.645 19h6.71A3.5 3.5 0 0 1 12 21.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/bell-slash-16.svg��������������������������0000664�0000000�0000000�00000001115�14753064456�0026423�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m4.182 4.31.016.011 10.104 7.316.013.01 1.375.996a.75.75 0 1 1-.88 1.214L13.626 13H2.518a1.516 1.516 0 0 1-1.263-2.36l1.703-2.554A.26.26 0 0 0 3 7.947V5.305L.31 3.357a.75.75 0 1 1 .88-1.214Zm7.373 7.19L4.5 6.391v1.556c0 .346-.102.683-.294.97l-1.703 2.556-.003.01q0 .008.005.012l.006.004.007.001ZM8 1.5c-.997 0-1.895.416-2.534 1.086A.75.75 0 1 1 4.38 1.55 5 5 0 0 1 13 5v2.373a.75.75 0 0 1-1.5 0V5A3.5 3.5 0 0 0 8 1.5M8 16a2 2 0 0 1-1.985-1.75c-.017-.137.097-.25.235-.25h3.5c.138 0 .252.113.235.25A2 2 0 0 1 8 16"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/bell-slash-24.svg��������������������������0000664�0000000�0000000�00000001274�14753064456�0026430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.22 1.22a.75.75 0 0 1 1.06 0l20.5 20.5a.749.749 0 0 1-.326 1.275.75.75 0 0 1-.734-.215L17.94 19H15.5a3.5 3.5 0 1 1-7 0H3.518a1.516 1.516 0 0 1-1.263-2.36l2.2-3.298A3.25 3.25 0 0 0 5 11.539V7q0-.441.073-.866L1.22 2.28a.75.75 0 0 1 0-1.06M6.5 7.56h-.001v3.979a4.75 4.75 0 0 1-.797 2.635l-2.2 3.298-.003.01.001.007.004.006.006.004.007.001H16.44ZM10 19a2 2 0 1 0 4 0Zm2-16.5c-1.463 0-2.8.485-3.788 1.257l-.04.032a.75.75 0 1 1-.935-1.173l.05-.04C8.548 1.59 10.212 1 12 1c3.681 0 7 2.565 7 6v4.539c0 .642.19 1.269.546 1.803l1.328 1.992a.75.75 0 1 1-1.248.832l-1.328-1.992a4.75 4.75 0 0 1-.798-2.635V7c0-2.364-2.383-4.5-5.5-4.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/blocked-16.svg�����������������������������0000664�0000000�0000000�00000000720�14753064456�0026001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M4.467.22a.75.75 0 0 1 .53-.22h6.006c.199 0 .389.079.53.22l4.247 4.247c.141.14.22.331.22.53v6.006a.75.75 0 0 1-.22.53l-4.247 4.247a.75.75 0 0 1-.53.22H4.997a.75.75 0 0 1-.53-.22L.22 11.533a.75.75 0 0 1-.22-.53V4.997c0-.199.079-.389.22-.53Zm.84 1.28L1.5 5.308v5.384L5.308 14.5h5.384l3.808-3.808V5.308L10.692 1.5ZM4 7.75A.75.75 0 0 1 4.75 7h6.5a.75.75 0 0 1 0 1.5h-6.5A.75.75 0 0 1 4 7.75"/></svg>������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/blocked-24.svg�����������������������������0000664�0000000�0000000�00000000732�14753064456�0026003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.638 2.22a.75.75 0 0 1 .53-.22h7.664c.199 0 .389.079.53.22l5.418 5.418c.141.14.22.332.22.53v7.664a.75.75 0 0 1-.22.53l-5.418 5.418a.75.75 0 0 1-.53.22H8.168a.75.75 0 0 1-.53-.22l-5.42-5.418a.75.75 0 0 1-.219-.53V8.168c0-.199.079-.389.22-.53l5.418-5.42ZM8.48 3.5 3.5 8.48v7.04l4.98 4.98h7.04l4.98-4.98V8.48L15.52 3.5ZM7 11.75a.75.75 0 0 1 .75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1-.75-.75"/></svg>��������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/bold-16.svg��������������������������������0000664�0000000�0000000�00000000346�14753064456�0025322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M4 2h4.5a3.501 3.501 0 0 1 2.852 5.53A3.499 3.499 0 0 1 9.5 14H4a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1m1 7v3h4.5a1.5 1.5 0 0 0 0-3Zm3.5-2a1.5 1.5 0 0 0 0-3H5v3Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/bold-24.svg��������������������������������0000664�0000000�0000000�00000000407�14753064456�0025317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 4.75c0-.69.56-1.25 1.25-1.25h5a4.752 4.752 0 0 1 3.888 7.479A5 5 0 0 1 14 20.5H7.25c-.69 0-1.25-.56-1.25-1.25ZM8.5 13v5H14a2.5 2.5 0 1 0 0-5Zm0-2.5h3.751A2.25 2.25 0 0 0 12.25 6H8.5Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/book-16.svg��������������������������������0000664�0000000�0000000�00000001015�14753064456�0025326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 1.75A.75.75 0 0 1 .75 1h4.253c1.227 0 2.317.59 3 1.501A3.74 3.74 0 0 1 11.006 1h4.245a.75.75 0 0 1 .75.75v10.5a.75.75 0 0 1-.75.75h-4.507a2.25 2.25 0 0 0-1.591.659l-.622.621a.75.75 0 0 1-1.06 0l-.622-.621A2.25 2.25 0 0 0 5.258 13H.75a.75.75 0 0 1-.75-.75Zm7.251 10.324.004-5.073-.002-2.253A2.25 2.25 0 0 0 5.003 2.5H1.5v9h3.757a3.75 3.75 0 0 1 1.994.574M8.755 4.75l-.004 7.322a3.75 3.75 0 0 1 1.992-.572H14.5v-9h-3.495a2.25 2.25 0 0 0-2.25 2.25"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/book-24.svg��������������������������������0000664�0000000�0000000�00000000735�14753064456�0025335�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 3.75A.75.75 0 0 1 .75 3h7.497c1.566 0 2.945.8 3.751 2.014A4.5 4.5 0 0 1 15.75 3h7.5a.75.75 0 0 1 .75.75v15.063a.75.75 0 0 1-.755.75l-7.682-.052a3 3 0 0 0-2.142.878l-.89.891a.75.75 0 0 1-1.061 0l-.902-.901a3 3 0 0 0-2.121-.879H.75a.75.75 0 0 1-.75-.75Zm12.75 15.232a4.5 4.5 0 0 1 2.823-.971l6.927.047V4.5h-6.75a3 3 0 0 0-3 3ZM11.247 7.497a3 3 0 0 0-3-2.997H1.5V18h6.947c1.018 0 2.006.346 2.803.98Z"/></svg>�����������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/bookmark-16.svg����������������������������0000664�0000000�0000000�00000000474�14753064456�0026211�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3 2.75C3 1.784 3.784 1 4.75 1h6.5c.966 0 1.75.784 1.75 1.75v11.5a.75.75 0 0 1-1.227.579L8 11.722l-3.773 3.107A.751.751 0 0 1 3 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v9.91l3.023-2.489a.75.75 0 0 1 .954 0l3.023 2.49V2.75a.25.25 0 0 0-.25-.25Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/bookmark-24.svg����������������������������0000664�0000000�0000000�00000000474�14753064456�0026210�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3.75C5 2.784 5.784 2 6.75 2h10.5c.966 0 1.75.784 1.75 1.75v17.5a.75.75 0 0 1-1.218.586L12 17.21l-5.781 4.625A.75.75 0 0 1 5 21.25Zm1.75-.25a.25.25 0 0 0-.25.25v15.94l5.031-4.026a.75.75 0 0 1 .938 0L17.5 19.69V3.75a.25.25 0 0 0-.25-.25Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/bookmark-fill-24.svg�����������������������0000664�0000000�0000000�00000000337�14753064456�0027132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.69 2h10.56c.966 0 1.75.784 1.75 1.75v17.5a.75.75 0 0 1-1.218.585L12 17.21l-5.781 4.626A.75.75 0 0 1 5 21.253L4.94 3.756A1.75 1.75 0 0 1 6.69 2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/bookmark-filled-16.svg���������������������0000664�0000000�0000000�00000000322�14753064456�0027436�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3 2.75C3 1.784 3.784 1 4.75 1h6.5c.966 0 1.75.784 1.75 1.75v11.5a.75.75 0 0 1-1.227.579L8 11.722l-3.773 3.107A.75.75 0 0 1 3 14.25z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/bookmark-slash-16.svg����������������������0000664�0000000�0000000�00000000721�14753064456�0027314�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1.19 1.143 4.182 3.31l.014.01 8.486 6.145.014.01 2.994 2.168a.75.75 0 1 1-.88 1.214L13 11.547v2.703a.75.75 0 0 1-1.206.596L8 11.944l-3.794 2.902A.75.75 0 0 1 3 14.25V4.305L.31 2.357a.75.75 0 1 1 .88-1.214M4.5 5.39v7.341l3.044-2.328a.75.75 0 0 1 .912 0l3.044 2.328V10.46ZM5.865 1h5.385c.966 0 1.75.784 1.75 1.75v3.624a.75.75 0 0 1-1.5 0V2.75a.25.25 0 0 0-.25-.25H5.865a.75.75 0 0 1 0-1.5"/></svg>�����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/bookmark-slash-24.svg����������������������0000664�0000000�0000000�00000000653�14753064456�0027317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.565 2.018zl21.75 15.75a.75.75 0 1 1-.88 1.215L19 16.495v4.764a.748.748 0 0 1-1.219.584L12 17.21l-5.781 4.634A.75.75 0 0 1 5 21.259V6.357L.685 3.232a.75.75 0 0 1 .88-1.214M17.5 15.408l-11-7.965v12.254l5.031-4.032a.75.75 0 0 1 .938 0l5.031 4.032ZM7.25 2a.75.75 0 0 0 0 1.5h10a.25.25 0 0 1 .25.25v6.5a.75.75 0 0 0 1.5 0v-6.5A1.75 1.75 0 0 0 17.25 2z"/></svg>�������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/bookmark-slash-fill-16.svg�����������������0000664�0000000�0000000�00000000611�14753064456�0030236�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1.19 1.143a.75.75 0 1 0-.88 1.215L3 4.305v9.945a.75.75 0 0 0 1.206.596L8 11.944l3.794 2.902A.75.75 0 0 0 13 14.25v-2.703l1.81 1.31a.75.75 0 1 0 .88-1.214l-2.994-2.168-.014-.01L4.196 3.32l-.014-.01zm2.934.203A.5.5 0 0 1 4.6 1h7.233C12.478 1 13 1.522 13 2.167v5.05a.5.5 0 0 1-.793.405l-7.9-5.717a.5.5 0 0 1-.183-.559"/></svg>�����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/bookmark-slash-fill-24.svg�����������������0000664�0000000�0000000�00000000542�14753064456�0030240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3.232 2.175 18.5 15.5a.75.75 0 1 1-.964 1.15L19 17.343v3.907a.75.75 0 0 1-1.218.585L12 17.21l-5.781 4.626A.75.75 0 0 1 5 21.253L4.947 5.569 2.268 3.325a.75.75 0 1 1 .964-1.15M7.421 2h9.829c.966 0 1.75.784 1.75 1.75v8.073a.75.75 0 0 1-1.232.575L6.94 3.325A.75.75 0 0 1 7.421 2"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/briefcase-16.svg���������������������������0000664�0000000�0000000�00000001004�14753064456�0026315�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6.75 0h2.5C10.216 0 11 .784 11 1.75V3h3.25c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 14.25 15H1.75A1.75 1.75 0 0 1 0 13.25v-8.5C0 3.784.784 3 1.75 3H5V1.75C5 .784 5.784 0 6.75 0M3.5 9.5a3.5 3.5 0 0 1-2-.627v4.377c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25V8.873a3.5 3.5 0 0 1-2 .627Zm-1.75-5a.25.25 0 0 0-.25.25V6a2 2 0 0 0 2 2h9a2 2 0 0 0 2-2V4.75a.25.25 0 0 0-.25-.25zM9.5 3V1.75a.25.25 0 0 0-.25-.25h-2.5a.25.25 0 0 0-.25.25V3Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/briefcase-24.svg���������������������������0000664�0000000�0000000�00000001061�14753064456�0026317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 1.75C7.5.784 8.284 0 9.25 0h5.5c.966 0 1.75.784 1.75 1.75V4h4.75c.966 0 1.75.784 1.75 1.75v14.5A1.75 1.75 0 0 1 21.25 22H2.75A1.75 1.75 0 0 1 1 20.25V5.75C1 4.784 1.784 4 2.75 4H7.5Zm-5 10.24v8.26c0 .138.112.25.25.25h18.5a.25.25 0 0 0 .25-.25v-8.26A4.24 4.24 0 0 1 18.75 13H5.25a4.24 4.24 0 0 1-2.75-1.01m19-3.24v-3a.25.25 0 0 0-.25-.25H2.75a.25.25 0 0 0-.25.25v3a2.75 2.75 0 0 0 2.75 2.75h13.5a2.75 2.75 0 0 0 2.75-2.75m-6.5-7a.25.25 0 0 0-.25-.25h-5.5a.25.25 0 0 0-.25.25V4h6Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/broadcast-16.svg���������������������������0000664�0000000�0000000�00000001440�14753064456�0026340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8.75 8.582v5.668a.75.75 0 0 1-1.5 0V8.582a1.75 1.75 0 1 1 1.5 0m3.983-7.125a.75.75 0 0 1 1.06.026A7.98 7.98 0 0 1 16 7c0 2.139-.84 4.083-2.207 5.517a.75.75 0 1 1-1.086-1.034A6.47 6.47 0 0 0 14.5 7a6.47 6.47 0 0 0-1.793-4.483.75.75 0 0 1 .026-1.06m-9.466 0c.3.286.312.76.026 1.06A6.47 6.47 0 0 0 1.5 7a6.47 6.47 0 0 0 1.793 4.483.75.75 0 0 1-1.086 1.034A7.97 7.97 0 0 1 0 7c0-2.139.84-4.083 2.207-5.517a.75.75 0 0 1 1.06-.026m8.556 2.321A5 5 0 0 1 13 7a5 5 0 0 1-1.177 3.222.75.75 0 1 1-1.146-.967A3.5 3.5 0 0 0 11.5 7c0-.86-.309-1.645-.823-2.255a.75.75 0 0 1 1.146-.967m-6.492.958A3.48 3.48 0 0 0 4.5 7a3.48 3.48 0 0 0 .823 2.255.75.75 0 0 1-1.146.967A4.98 4.98 0 0 1 3 7a4.98 4.98 0 0 1 1.188-3.236.75.75 0 1 1 1.143.972"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/broadcast-24.svg���������������������������0000664�0000000�0000000�00000001446�14753064456�0026345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.485 2.515a.75.75 0 0 0-1.06 1.06A10.47 10.47 0 0 1 22.5 11c0 2.9-1.174 5.523-3.075 7.424a.75.75 0 0 0 1.06 1.061A11.97 11.97 0 0 0 24 11c0-3.314-1.344-6.315-3.515-8.485m-15.91 1.06a.75.75 0 0 0-1.06-1.06A11.97 11.97 0 0 0 0 11c0 3.313 1.344 6.314 3.515 8.485a.75.75 0 0 0 1.06-1.06A10.47 10.47 0 0 1 1.5 11c0-2.9 1.174-5.524 3.075-7.425M8.11 7.11a.75.75 0 0 0-1.06-1.06A6.98 6.98 0 0 0 5 11a6.98 6.98 0 0 0 2.05 4.95.75.75 0 0 0 1.06-1.061 5.48 5.48 0 0 1-1.61-3.89 5.48 5.48 0 0 1 1.61-3.888Zm8.84-1.06a.75.75 0 1 0-1.06 1.06A5.48 5.48 0 0 1 17.5 11a5.48 5.48 0 0 1-1.61 3.889.75.75 0 1 0 1.06 1.06A6.98 6.98 0 0 0 19 11a6.98 6.98 0 0 0-2.05-4.949ZM14 11a2 2 0 0 1-1.25 1.855v8.395a.75.75 0 0 1-1.5 0v-8.395A2 2 0 1 1 14 11"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/browser-16.svg�����������������������������0000664�0000000�0000000�00000000536�14753064456�0026066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 2.75C0 1.784.784 1 1.75 1h12.5c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0 1 14.25 15H1.75A1.75 1.75 0 0 1 0 13.25ZM14.5 6h-13v7.25c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25Zm-6-3.5v2h6V2.75a.25.25 0 0 0-.25-.25ZM5 2.5v2h2v-2Zm-3.25 0a.25.25 0 0 0-.25.25V4.5h2v-2Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/browser-24.svg�����������������������������0000664�0000000�0000000�00000000541�14753064456�0026061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 3.75C0 2.784.784 2 1.75 2h20.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 22.25 22H1.75A1.75 1.75 0 0 1 0 20.25ZM22.5 7h-21v13.25c0 .138.112.25.25.25h20.5a.25.25 0 0 0 .25-.25Zm-10-3.5v2h10V3.75a.25.25 0 0 0-.25-.25ZM7 3.5v2h4v-2Zm-5.25 0a.25.25 0 0 0-.25.25V5.5h4v-2Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/bug-16.svg���������������������������������0000664�0000000�0000000�00000001535�14753064456�0025160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M4.72.22a.75.75 0 0 1 1.06 0l1 .999a3.5 3.5 0 0 1 2.441 0l.999-1a.748.748 0 0 1 1.265.332.75.75 0 0 1-.205.729l-.775.776c.616.63.995 1.493.995 2.444v.327q0 .15-.025.292c.408.14.764.392 1.029.722l1.968-.787a.75.75 0 0 1 .556 1.392L13 7.258V9h2.25a.75.75 0 0 1 0 1.5H13v.5q-.002.615-.141 1.186l2.17.868a.75.75 0 0 1-.557 1.392l-2.184-.873A5 5 0 0 1 8 16a5 5 0 0 1-4.288-2.427l-2.183.873a.75.75 0 0 1-.558-1.392l2.17-.868A5 5 0 0 1 3 11v-.5H.75a.75.75 0 0 1 0-1.5H3V7.258L.971 6.446a.75.75 0 0 1 .558-1.392l1.967.787c.265-.33.62-.583 1.03-.722a1.7 1.7 0 0 1-.026-.292V4.5c0-.951.38-1.814.995-2.444L4.72 1.28a.75.75 0 0 1 0-1.06m.53 6.28a.75.75 0 0 0-.75.75V11a3.5 3.5 0 1 0 7 0V7.25a.75.75 0 0 0-.75-.75ZM6.173 5h3.654A.17.17 0 0 0 10 4.827V4.5a2 2 0 1 0-4 0v.327c0 .096.077.173.173.173"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/bug-24.svg���������������������������������0000664�0000000�0000000�00000001524�14753064456�0025155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.72.22a.75.75 0 0 1 1.06 0l1.204 1.203A5 5 0 0 1 12 1c.717 0 1.4.151 2.016.423L15.22.22a.75.75 0 0 1 1.042.018.75.75 0 0 1 .018 1.042l-.971.972A5 5 0 0 1 17 6v1.104a2.76 2.76 0 0 1 1.917 1.974l1.998-.999a.75.75 0 0 1 .67 1.342L19 10.714V13.5l3.25.003a.75.75 0 0 1 0 1.5L19 15.001V16c0 .568-.068 1.134-.204 1.686l.04.018 2.75 1.375a.75.75 0 1 1-.671 1.342l-2.638-1.319A7 7 0 0 1 12 23a7 7 0 0 1-6.197-3.742l-2.758 1.181a.752.752 0 0 1-1.064-.776.75.75 0 0 1 .474-.602l2.795-1.199A7 7 0 0 1 5 16v-.996H1.75a.75.75 0 0 1 0-1.5H5v-2.79L2.415 9.42a.75.75 0 0 1 .67-1.342l1.998.999A2.76 2.76 0 0 1 7 7.104V6a5 5 0 0 1 1.69-3.748l-.97-.972a.75.75 0 0 1 0-1.06M6.5 9.75V16a5.5 5.5 0 1 0 11 0V9.75c0-.69-.56-1.25-1.25-1.25h-8.5c-.69 0-1.25.56-1.25 1.25M8.5 7h7V6a3.5 3.5 0 1 0-7 0Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/cache-16.svg�������������������������������0000664�0000000�0000000�00000002262�14753064456�0025444�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2.5 5.724V8c0 .248.238.7 1.169 1.159.874.43 2.144.745 3.62.822a.75.75 0 1 1-.078 1.498c-1.622-.085-3.102-.432-4.204-.975a6 6 0 0 1-.507-.28V12.5c0 .133.058.318.282.551.227.237.591.483 1.101.707 1.015.447 2.47.742 4.117.742q.61 0 1.183-.052a.751.751 0 1 1 .134 1.494Q8.676 15.999 8 16c-1.805 0-3.475-.32-4.721-.869-.623-.274-1.173-.619-1.579-1.041-.408-.425-.7-.964-.7-1.59v-9c0-.626.292-1.165.7-1.591.406-.42.956-.766 1.579-1.04C4.525.32 6.195 0 8 0s3.476.32 4.721.869c.623.274 1.173.619 1.579 1.041.408.425.7.964.7 1.59s-.292 1.165-.7 1.591c-.406.42-.956.766-1.578 1.04C11.475 6.68 9.805 7 8 7s-3.475-.32-4.721-.869a6 6 0 0 1-.779-.407m0-2.224c0 .133.058.318.282.551.227.237.591.483 1.101.707C4.898 5.205 6.353 5.5 8 5.5s3.101-.295 4.118-.742c.508-.224.873-.471 1.1-.708.224-.232.282-.417.282-.55s-.058-.318-.282-.551c-.227-.237-.591-.483-1.101-.707C11.102 1.795 9.647 1.5 8 1.5s-3.101.295-4.118.742c-.508.224-.873.471-1.1.708-.224.232-.282.417-.282.55"/><path d="M14.49 7.582a.375.375 0 0 0-.66-.313l-3.625 4.625a.375.375 0 0 0 .295.606h2.127l-.619 2.922a.375.375 0 0 0 .666.304l3.125-4.125A.375.375 0 0 0 15.5 11h-1.778z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/cache-24.svg�������������������������������0000664�0000000�0000000�00000002407�14753064456�0025444�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.505 9.117a7.7 7.7 0 0 1-1.497-.852V12c0 .524.473 1.23 1.8 1.883 1.267.625 3.085 1.071 5.18 1.182a.76.76 0 0 1-.08 1.517c-2.242-.118-4.274-.598-5.772-1.336a7.3 7.3 0 0 1-1.128-.68V18.3c0 .282.127.61.476.973.352.366.899.732 1.633 1.055 1.466.645 3.545 1.063 5.881 1.063q.867 0 1.683-.074a.76.76 0 0 1 .135 1.513 21 21 0 0 1-1.818.08c-2.496 0-4.792-.443-6.493-1.192-.849-.374-1.584-.838-2.117-1.393-.536-.558-.9-1.244-.9-2.025V5.7c0-.782.364-1.467.9-2.025.533-.555 1.268-1.02 2.117-1.393 1.7-.749 3.997-1.193 6.493-1.193s4.793.444 6.493 1.193c.85.373 1.585.838 2.117 1.393.537.558.9 1.243.9 2.025s-.363 1.467-.9 2.025c-.532.554-1.267 1.02-2.117 1.393-1.7.748-3.996 1.192-6.493 1.192-2.496 0-4.792-.444-6.493-1.192Zm-1.021-4.39c-.35.362-.476.69-.476.972s.127.61.476.972c.352.367.899.732 1.633 1.055 1.466.646 3.545 1.064 5.881 1.064s4.415-.418 5.882-1.064c.734-.323 1.28-.688 1.633-1.055.35-.363.476-.69.476-.972s-.127-.61-.476-.973c-.353-.367-.9-.732-1.633-1.055-1.467-.645-3.545-1.063-5.882-1.063s-4.415.418-5.88 1.063c-.735.323-1.282.688-1.634 1.055Z"/><path d="M21.425 11.11a.5.5 0 0 0-.881-.418l-5.438 6.937a.5.5 0 0 0 .394.808h3.268l-.945 4.46a.5.5 0 0 0 .888.405l4.688-6.188a.5.5 0 0 0-.399-.802h-2.745z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/calendar-16.svg����������������������������0000664�0000000�0000000�00000000626�14753064456�0026154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M4.75 0a.75.75 0 0 1 .75.75V2h5V.75a.75.75 0 0 1 1.5 0V2h1.25c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0 1 13.25 16H2.75A1.75 1.75 0 0 1 1 14.25V3.75C1 2.784 1.784 2 2.75 2H4V.75A.75.75 0 0 1 4.75 0M2.5 7.5v6.75c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25V7.5Zm10.75-4H2.75a.25.25 0 0 0-.25.25V6h11V3.75a.25.25 0 0 0-.25-.25"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/calendar-24.svg����������������������������0000664�0000000�0000000�00000000623�14753064456�0026150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.75 0a.75.75 0 0 1 .75.75V3h9V.75a.75.75 0 0 1 1.5 0V3h2.75c.966 0 1.75.784 1.75 1.75v16a1.75 1.75 0 0 1-1.75 1.75H3.25a1.75 1.75 0 0 1-1.75-1.75v-16C1.5 3.784 2.284 3 3.25 3H6V.75A.75.75 0 0 1 6.75 0M21 9.5H3v11.25c0 .138.112.25.25.25h17.5a.25.25 0 0 0 .25-.25Zm-17.75-5a.25.25 0 0 0-.25.25V8h18V4.75a.25.25 0 0 0-.25-.25Z"/></svg>�������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/check-16.svg�������������������������������0000664�0000000�0000000�00000000353�14753064456�0025455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 0 1 .018-1.042.75.75 0 0 1 1.042-.018L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/check-24.svg�������������������������������0000664�0000000�0000000�00000000337�14753064456�0025456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.03 5.72a.75.75 0 0 1 0 1.06l-11.5 11.5a.747.747 0 0 1-1.072-.012l-5.5-5.75a.75.75 0 1 1 1.084-1.036l4.97 5.195L19.97 5.72a.75.75 0 0 1 1.06 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/check-circle-16.svg������������������������0000664�0000000�0000000�00000000470�14753064456�0026714�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8m1.5 0a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0m10.28-1.72-4.5 4.5a.75.75 0 0 1-1.06 0l-2-2a.75.75 0 0 1 .018-1.042.75.75 0 0 1 1.042-.018l1.47 1.47 3.97-3.97a.75.75 0 0 1 1.042.018.75.75 0 0 1 .018 1.042"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/check-circle-24.svg������������������������0000664�0000000�0000000�00000000545�14753064456�0026716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.28 9.28a.75.75 0 0 0-1.06-1.06l-5.97 5.97-2.47-2.47a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06 0z"/><path d="M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1M2.5 12a9.5 9.5 0 0 0 9.5 9.5 9.5 9.5 0 0 0 9.5-9.5A9.5 9.5 0 0 0 12 2.5 9.5 9.5 0 0 0 2.5 12"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/check-circle-fill-12.svg�������������������0000664�0000000�0000000�00000000264�14753064456�0027635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M6 0a6 6 0 1 1 0 12A6 6 0 0 1 6 0m-.705 8.737L9.63 4.403 8.392 3.166 5.295 6.263l-1.7-1.702L2.356 5.8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/check-circle-fill-16.svg�������������������0000664�0000000�0000000�00000000404�14753064456�0027635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16m3.78-9.72a.75.75 0 0 0-.018-1.042.75.75 0 0 0-1.042-.018L6.75 9.19 5.28 7.72a.75.75 0 0 0-1.042.018.75.75 0 0 0-.018 1.042l2 2a.75.75 0 0 0 1.06 0Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/check-circle-fill-24.svg�������������������0000664�0000000�0000000�00000000452�14753064456�0027637�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12m16.28-2.72a.75.75 0 0 0-.018-1.042.75.75 0 0 0-1.042-.018l-5.97 5.97-2.47-2.47a.75.75 0 0 0-1.042.018.75.75 0 0 0-.018 1.042l3 3a.75.75 0 0 0 1.06 0Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/checkbox-16.svg����������������������������0000664�0000000�0000000�00000000726�14753064456�0026172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2.75 1h10.5c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0 1 13.25 15H2.75A1.75 1.75 0 0 1 1 13.25V2.75C1 1.784 1.784 1 2.75 1M2.5 2.75v10.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25V2.75a.25.25 0 0 0-.25-.25H2.75a.25.25 0 0 0-.25.25m9.28 3.53-4.5 4.5a.75.75 0 0 1-1.06 0l-2-2a.75.75 0 0 1 .018-1.042.75.75 0 0 1 1.042-.018l1.47 1.47 3.97-3.97a.75.75 0 0 1 1.042.018.75.75 0 0 1 .018 1.042"/></svg>������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/checkbox-24.svg����������������������������0000664�0000000�0000000�00000000655�14753064456�0026172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.28 9.28a.75.75 0 0 0-1.06-1.06l-5.97 5.97-2.47-2.47a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06 0z"/><path d="M3.75 2h16.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25V3.75C2 2.784 2.784 2 3.75 2M3.5 3.75v16.5c0 .138.112.25.25.25h16.5a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25H3.75a.25.25 0 0 0-.25.25"/></svg>�����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/checklist-16.svg���������������������������0000664�0000000�0000000�00000001056�14753064456�0026352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2.5 1.75v11.5c0 .138.112.25.25.25h3.17a.75.75 0 0 1 0 1.5H2.75A1.75 1.75 0 0 1 1 13.25V1.75C1 .784 1.784 0 2.75 0h8.5C12.216 0 13 .784 13 1.75v7.736a.75.75 0 0 1-1.5 0V1.75a.25.25 0 0 0-.25-.25h-8.5a.25.25 0 0 0-.25.25m13.274 9.537zl-4.557 4.45a.75.75 0 0 1-1.055-.008l-1.943-1.95a.75.75 0 0 1 1.062-1.058l1.419 1.425 4.026-3.932a.75.75 0 1 1 1.048 1.074M4.75 4h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1 0-1.5M4 7.75A.75.75 0 0 1 4.75 7h2a.75.75 0 0 1 0 1.5h-2A.75.75 0 0 1 4 7.75"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/checklist-24.svg���������������������������0000664�0000000�0000000�00000001031�14753064456�0026342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.5 3.75a.25.25 0 0 1 .25-.25h13.5a.25.25 0 0 1 .25.25v10a.75.75 0 0 0 1.5 0v-10A1.75 1.75 0 0 0 17.25 2H3.75A1.75 1.75 0 0 0 2 3.75v16.5c0 .966.784 1.75 1.75 1.75h7a.75.75 0 0 0 0-1.5h-7a.25.25 0 0 1-.25-.25z"/><path d="M6.25 7a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5zm-.75 4.75a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75m16.28 4.53a.75.75 0 1 0-1.06-1.06l-4.97 4.97-1.97-1.97a.75.75 0 1 0-1.06 1.06l2.5 2.5a.75.75 0 0 0 1.06 0z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/chevron-down-12.svg������������������������0000664�0000000�0000000�00000000320�14753064456�0026777�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M6 8.825c-.2 0-.4-.1-.5-.2l-3.3-3.3c-.3-.3-.3-.8 0-1.1s.8-.3 1.1 0l2.7 2.7 2.7-2.7c.3-.3.8-.3 1.1 0s.3.8 0 1.1l-3.2 3.2q-.3.3-.6.3"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/chevron-down-16.svg������������������������0000664�0000000�0000000�00000000326�14753064456�0027011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12.78 5.22a.75.75 0 0 1 0 1.06l-4.25 4.25a.75.75 0 0 1-1.06 0L3.22 6.28a.749.749 0 1 1 1.06-1.06L8 8.939l3.72-3.719a.75.75 0 0 1 1.06 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/chevron-down-24.svg������������������������0000664�0000000�0000000�00000000325�14753064456�0027007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.22 8.22a.75.75 0 0 0 0 1.06l6.25 6.25a.75.75 0 0 0 1.06 0l6.25-6.25a.749.749 0 1 0-1.06-1.06L12 13.939 6.28 8.22a.75.75 0 0 0-1.06 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/chevron-left-12.svg������������������������0000664�0000000�0000000�00000000315�14753064456�0026766�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M3.587 6.025c0 .2.1.4.2.5l3.3 3.3c.3.3.8.3 1.1 0s.3-.8 0-1.1l-2.7-2.7 2.7-2.7c.3-.3.3-.8 0-1.1s-.8-.3-1.1 0l-3.2 3.2q-.3.3-.3.6"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/chevron-left-16.svg������������������������0000664�0000000�0000000�00000000350�14753064456�0026771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M9.78 12.78a.75.75 0 0 1-1.06 0L4.47 8.53a.75.75 0 0 1 0-1.06l4.25-4.25a.75.75 0 0 1 1.042.018.75.75 0 0 1 .018 1.042L6.06 8l3.72 3.72a.75.75 0 0 1 0 1.06"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/chevron-left-24.svg������������������������0000664�0000000�0000000�00000000354�14753064456�0026774�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.28 5.22a.75.75 0 0 1 0 1.06L9.56 12l5.72 5.72a.749.749 0 0 1-.326 1.275.75.75 0 0 1-.734-.215l-6.25-6.25a.75.75 0 0 1 0-1.06l6.25-6.25a.75.75 0 0 1 1.06 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/chevron-right-12.svg�����������������������0000664�0000000�0000000�00000000320�14753064456�0027145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M4.7 10c-.2 0-.4-.1-.5-.2-.3-.3-.3-.8 0-1.1L6.9 6 4.2 3.3c-.3-.3-.3-.8 0-1.1s.8-.3 1.1 0l3.3 3.2c.3.3.3.8 0 1.1L5.3 9.7q-.3.3-.6.3"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/chevron-right-16.svg�����������������������0000664�0000000�0000000�00000000351�14753064456�0027155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6.22 3.22a.75.75 0 0 1 1.06 0l4.25 4.25a.75.75 0 0 1 0 1.06l-4.25 4.25a.75.75 0 0 1-1.042-.018.75.75 0 0 1-.018-1.042L9.94 8 6.22 4.28a.75.75 0 0 1 0-1.06"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/chevron-right-24.svg�����������������������0000664�0000000�0000000�00000000354�14753064456�0027157�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.72 18.78a.75.75 0 0 1 0-1.06L14.44 12 8.72 6.28a.75.75 0 0 1 .018-1.042.75.75 0 0 1 1.042-.018l6.25 6.25a.75.75 0 0 1 0 1.06l-6.25 6.25a.75.75 0 0 1-1.06 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/chevron-up-12.svg��������������������������0000664�0000000�0000000�00000000301�14753064456�0026453�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M6 4c-.2 0-.4.1-.5.2L2.2 7.5c-.3.3-.3.8 0 1.1s.8.3 1.1 0L6 5.9l2.7 2.7c.3.3.8.3 1.1 0s.3-.8 0-1.1L6.6 4.3Q6.3 4 6 4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/chevron-up-16.svg��������������������������0000664�0000000�0000000�00000000325�14753064456�0026465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.22 10.53a.75.75 0 0 1 0-1.06l4.25-4.25a.75.75 0 0 1 1.06 0l4.25 4.25a.749.749 0 1 1-1.06 1.06L8 6.811 4.28 10.53a.75.75 0 0 1-1.06 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/chevron-up-24.svg��������������������������0000664�0000000�0000000�00000000330�14753064456�0026460�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.78 15.78a.75.75 0 0 1-1.06 0L12 10.061 6.28 15.78a.749.749 0 1 1-1.06-1.06l6.25-6.25a.75.75 0 0 1 1.06 0l6.25 6.25a.75.75 0 0 1 0 1.06"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/circle-16.svg������������������������������0000664�0000000�0000000�00000000233�14753064456�0025636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8m8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/circle-24.svg������������������������������0000664�0000000�0000000�00000000361�14753064456�0025637�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12m11-9.5A9.5 9.5 0 0 0 2.5 12a9.5 9.5 0 0 0 9.5 9.5 9.5 9.5 0 0 0 9.5-9.5A9.5 9.5 0 0 0 12 2.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/circle-slash-16.svg������������������������0000664�0000000�0000000�00000000335�14753064456�0026751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0M3.965 13.096a6.5 6.5 0 0 0 9.131-9.131ZM1.5 8a6.47 6.47 0 0 0 1.404 4.035l9.131-9.131A6.499 6.499 0 0 0 1.5 8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/circle-slash-24.svg������������������������0000664�0000000�0000000�00000000511�14753064456�0026744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1M5.834 19.227A9.46 9.46 0 0 0 12 21.5a9.5 9.5 0 0 0 9.5-9.5 9.46 9.46 0 0 0-2.273-6.166ZM2.5 12a9.46 9.46 0 0 0 2.273 6.166L18.166 4.773A9.46 9.46 0 0 0 12 2.5 9.5 9.5 0 0 0 2.5 12"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/clock-16.svg�������������������������������0000664�0000000�0000000�00000000375�14753064456�0025477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0M1.5 8a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0m7-3.25v2.992l2.028.812a.75.75 0 0 1-.557 1.392l-2.5-1A.75.75 0 0 1 7 8.25v-3.5a.75.75 0 0 1 1.5 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/clock-24.svg�������������������������������0000664�0000000�0000000�00000000540�14753064456�0025470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.5 7.25a.75.75 0 0 0-1.5 0v5.5c0 .27.144.518.378.651l3.5 2a.75.75 0 0 0 .744-1.302L12.5 12.315z"/><path d="M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1M2.5 12a9.5 9.5 0 0 0 9.5 9.5 9.5 9.5 0 0 0 9.5-9.5A9.5 9.5 0 0 0 12 2.5 9.5 9.5 0 0 0 2.5 12"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/clock-fill-16.svg��������������������������0000664�0000000�0000000�00000000327�14753064456�0026420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8m8.575-3.25a.825.825 0 1 0-1.65 0v3.5c0 .337.205.64.519.766l2.5 1a.825.825 0 0 0 .612-1.532l-1.981-.793Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/clock-fill-24.svg��������������������������0000664�0000000�0000000�00000000376�14753064456�0026423�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12m11.575-4.75a.825.825 0 1 0-1.65 0v5.5c0 .296.159.57.416.716l3.5 2a.825.825 0 0 0 .818-1.432l-3.084-1.763Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/cloud-16.svg�������������������������������0000664�0000000�0000000�00000000723�14753064456�0025507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2 7.25A5.225 5.225 0 0 1 7.25 2a5.22 5.22 0 0 1 4.767 3.029A4.47 4.47 0 0 1 16 9.5c0 2.505-1.995 4.5-4.5 4.5h-8A3.474 3.474 0 0 1 0 10.5c0-1.41.809-2.614 2.001-3.17Zm1.54.482a.75.75 0 0 1-.556.832c-.86.22-1.484.987-1.484 1.936 0 1.124.876 2 2 2h8c1.676 0 3-1.324 3-3s-1.324-3-3-3a.75.75 0 0 1-.709-.504A3.72 3.72 0 0 0 7.25 3.5C5.16 3.5 3.5 5.16 3.5 7.25q.003.22.035.436l.004.036.001.008Z"/></svg>���������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/cloud-24.svg�������������������������������0000664�0000000�0000000�00000001112�14753064456�0025477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.103 10.107c0-4.244 3.445-7.607 7.733-7.607 3.19 0 5.912 1.858 7.099 4.563l.01.022.001.006C21.348 7.345 24 10.095 24 13.536 24 17.148 21.076 20 17.431 20H5.017C2.23 20 0 17.83 0 15.06a4.9 4.9 0 0 1 3.112-4.581 8 8 0 0 1-.009-.372M10.836 4c-3.485 0-6.233 2.717-6.233 6.107 0 .284.022.602.052.756a.75.75 0 0 1-.552.869c-1.52.385-2.603 1.712-2.603 3.328 0 1.917 1.532 3.44 3.517 3.44h12.414c2.843 0 5.069-2.206 5.069-4.964s-2.226-4.965-5.069-4.965a.75.75 0 0 1-.696-.47l-.179-.446C15.606 5.5 13.424 4 10.836 4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/cloud-offline-16.svg�����������������������0000664�0000000�0000000�00000001364�14753064456�0027131�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.25 2c-.69 0-1.351.13-1.957.371a.75.75 0 1 0 .554 1.394c.43-.17.903-.265 1.403-.265a3.72 3.72 0 0 1 3.541 2.496.75.75 0 0 0 .709.504c1.676 0 3 1.324 3 3a3 3 0 0 1-.681 1.92.75.75 0 0 0 1.156.955A4.5 4.5 0 0 0 16 9.5a4.47 4.47 0 0 0-3.983-4.471A5.22 5.22 0 0 0 7.25 2M.72 1.72a.75.75 0 0 1 1.06 0l2.311 2.31q.045.038.08.08l8.531 8.532.035.034 2.043 2.044a.749.749 0 0 1-.326 1.275.75.75 0 0 1-.734-.215l-1.8-1.799a5 5 0 0 1-.42.019h-8A3.474 3.474 0 0 1 0 10.5c0-1.41.809-2.614 2.001-3.17a5.2 5.2 0 0 1 .646-2.622L.72 2.78a.75.75 0 0 1 0-1.06M3.5 7.25q.006.242.041.481a.75.75 0 0 1-.557.833c-.86.22-1.484.986-1.484 1.936 0 1.124.876 2 2 2h6.94L3.771 5.832A3.8 3.8 0 0 0 3.5 7.25"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/cloud-offline-24.svg�����������������������0000664�0000000�0000000�00000001424�14753064456�0027125�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.78 2.22 19.5 19.5a.749.749 0 0 1-.326 1.275.75.75 0 0 1-.734-.215l-2.845-2.845a7 7 0 0 1-.944.065H5.017C2.229 20 0 17.831 0 15.059a4.9 4.9 0 0 1 3.111-4.58A7.52 7.52 0 0 1 4.36 5.922L1.72 3.28a.75.75 0 0 1 .018-1.042.75.75 0 0 1 1.042-.018M16.94 18.5 5.448 7.01a6.03 6.03 0 0 0-.794 3.853.75.75 0 0 1-.552.869c-1.52.385-2.603 1.712-2.603 3.328 0 1.917 1.532 3.44 3.517 3.44Zm-6.104-16a7.87 7.87 0 0 0-3.638.88.75.75 0 1 0 .692 1.331A6.37 6.37 0 0 1 10.836 4c2.588 0 4.77 1.5 5.72 3.655l.179.445a.75.75 0 0 0 .696.471c2.843 0 5.069 2.206 5.069 4.965a4.9 4.9 0 0 1-1.684 3.716.75.75 0 0 0 .986 1.13A6.4 6.4 0 0 0 24 13.536c0-3.44-2.652-6.191-6.054-6.445l-.002-.006-.01-.022C16.749 4.358 14.026 2.5 10.837 2.5Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/code-16.svg��������������������������������0000664�0000000�0000000�00000000611�14753064456�0025307�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m11.28 3.22 4.25 4.25a.75.75 0 0 1 0 1.06l-4.25 4.25a.749.749 0 0 1-1.275-.326.75.75 0 0 1 .215-.734L13.94 8l-3.72-3.72a.749.749 0 0 1 .326-1.275.75.75 0 0 1 .734.215m-6.56 0a.75.75 0 0 1 1.042.018.75.75 0 0 1 .018 1.042L2.06 8l3.72 3.72a.749.749 0 0 1-.326 1.275.75.75 0 0 1-.734-.215L.47 8.53a.75.75 0 0 1 0-1.06Z"/></svg>�����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/code-24.svg��������������������������������0000664�0000000�0000000�00000000601�14753064456�0025305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.22 4.97a.75.75 0 0 1 1.06 0l6.5 6.5a.75.75 0 0 1 0 1.06l-6.5 6.5a.749.749 0 0 1-1.275-.326.75.75 0 0 1 .215-.734L21.19 12l-5.97-5.97a.75.75 0 0 1 0-1.06m-6.44 0a.75.75 0 0 1 0 1.06L2.81 12l5.97 5.97a.749.749 0 0 1-.326 1.275.75.75 0 0 1-.734-.215l-6.5-6.5a.75.75 0 0 1 0-1.06l6.5-6.5a.75.75 0 0 1 1.06 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/code-of-conduct-16.svg���������������������0000664�0000000�0000000�00000002351�14753064456�0027351�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8.048 2.241c.964-.709 2.079-1.238 3.325-1.241a4.62 4.62 0 0 1 3.282 1.355c.41.408.757.86.996 1.428.238.568.348 1.206.347 1.968 0 2.193-1.505 4.254-3.081 5.862-1.496 1.526-3.213 2.796-4.249 3.563l-.22.163a.75.75 0 0 1-.895 0l-.221-.163c-1.036-.767-2.753-2.037-4.249-3.563C1.51 10.008.007 7.952.002 5.762a4.61 4.61 0 0 1 1.353-3.407C3.123.585 6.223.537 8.048 2.24Zm-1.153.983c-1.25-1.033-3.321-.967-4.48.191a3.12 3.12 0 0 0-.913 2.335c0 1.556 1.109 3.24 2.652 4.813C5.463 11.898 6.96 13.032 8 13.805c.353-.262.758-.565 1.191-.905l-1.326-1.223a.75.75 0 0 1 1.018-1.102l1.48 1.366c.328-.281.659-.577.984-.887L9.99 9.802a.75.75 0 1 1 1.019-1.103l1.384 1.28q.443-.494.81-.995L12.92 8.7l-1.167-1.168c-.674-.671-1.78-.664-2.474.03q-.404.405-.802.797c-.893.882-2.319.843-3.185-.032q-.518-.524-1.043-1.047a.75.75 0 0 1-.04-1.016q.244-.288.52-.623c.62-.748 1.356-1.637 2.166-2.417m7.112 4.442c.313-.65.491-1.293.491-1.916v-.001c0-.614-.088-1.045-.23-1.385-.143-.339-.357-.633-.673-.949a3.1 3.1 0 0 0-2.218-.915c-1.092.003-2.165.627-3.226 1.602-.823.755-1.554 1.637-2.228 2.45l-.127.154.562.566a.755.755 0 0 0 1.066.02l.794-.79c1.258-1.258 3.312-1.31 4.594-.032.396.394.792.791 1.173 1.173Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/code-of-conduct-24.svg���������������������0000664�0000000�0000000�00000002462�14753064456�0027353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.828 4.328C5.26 1.896 9.5 1.881 11.935 4.317q.036.036.067.076c1.391-1.078 2.993-1.886 4.777-1.89a6.22 6.22 0 0 1 4.424 1.825c.559.56 1.023 1.165 1.34 1.922s.47 1.617.468 2.663c0 2.972-2.047 5.808-4.269 8.074-2.098 2.14-4.507 3.924-5.974 5.009l-.311.23a.75.75 0 0 1-.897 0l-.312-.23c-1.466-1.085-3.875-2.869-5.973-5.009-2.22-2.263-4.264-5.095-4.27-8.063a6.22 6.22 0 0 1 1.823-4.596m8.033 1.042c-1.846-1.834-5.124-1.823-6.969.022a4.71 4.71 0 0 0-1.382 3.52c0 2.332 1.65 4.79 3.839 7.022 1.947 1.986 4.184 3.66 5.66 4.752a78 78 0 0 0 2.159-1.645l-2.14-1.974a.752.752 0 0 1 1.02-1.106l2.295 2.118c.616-.52 1.242-1.08 1.85-1.672l-2.16-1.992a.753.753 0 0 1 1.021-1.106l2.188 2.02a19 19 0 0 0 1.528-1.877l-.585-.586-1.651-1.652c-1.078-1.074-2.837-1.055-3.935.043-.379.38-.76.758-1.132 1.126-1.14 1.124-2.96 1.077-4.07-.043q-.733-.742-1.475-1.482a.75.75 0 0 1-.04-1.019q.351-.416.745-.893c.928-1.12 2.023-2.442 3.234-3.576m9.725 6.77c.579-1.08.92-2.167.92-3.228.002-.899-.128-1.552-.35-2.08-.22-.526-.551-.974-1.017-1.44a4.7 4.7 0 0 0-3.356-1.384c-1.66.004-3.25.951-4.77 2.346-1.18 1.084-2.233 2.353-3.188 3.506l-.351.423q.497.498.993.998a1.375 1.375 0 0 0 1.943.03c.37-.365.748-.74 1.125-1.118 1.662-1.663 4.373-1.726 6.06-.045.56.558 1.12 1.12 1.658 1.658Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/code-review-16.svg�������������������������0000664�0000000�0000000�00000001273�14753064456�0026613�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1.75 1h12.5c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 14.25 13H8.061l-2.574 2.573A1.458 1.458 0 0 1 3 14.543V13H1.75A1.75 1.75 0 0 1 0 11.25v-8.5C0 1.784.784 1 1.75 1M1.5 2.75v8.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.75.75 0 0 1 .53-.22h6.5a.25.25 0 0 0 .25-.25v-8.5a.25.25 0 0 0-.25-.25H1.75a.25.25 0 0 0-.25.25m5.28 1.72a.75.75 0 0 1 0 1.06L5.31 7l1.47 1.47a.75.75 0 0 1-.018 1.042.75.75 0 0 1-1.042.018l-2-2a.75.75 0 0 1 0-1.06l2-2a.75.75 0 0 1 1.06 0m2.44 0a.75.75 0 0 1 1.06 0l2 2a.75.75 0 0 1 0 1.06l-2 2a.75.75 0 0 1-1.042-.018.75.75 0 0 1-.018-1.042L10.69 7 9.22 5.53a.75.75 0 0 1 0-1.06"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/code-review-24.svg�������������������������0000664�0000000�0000000�00000001236�14753064456�0026611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.3 6.74a.75.75 0 0 1-.04 1.06l-2.908 2.7 2.908 2.7a.75.75 0 1 1-1.02 1.1l-3.5-3.25a.75.75 0 0 1 0-1.1l3.5-3.25a.75.75 0 0 1 1.06.04m3.44 1.06a.75.75 0 1 1 1.02-1.1l3.5 3.25a.75.75 0 0 1 0 1.1l-3.5 3.25a.75.75 0 1 1-1.02-1.1l2.908-2.7z"/><path d="M1.5 4.25c0-.966.784-1.75 1.75-1.75h17.5c.966 0 1.75.784 1.75 1.75v12.5a1.75 1.75 0 0 1-1.75 1.75h-9.69l-3.573 3.573A1.458 1.458 0 0 1 5 21.043V18.5H3.25a1.75 1.75 0 0 1-1.75-1.75ZM3.25 4a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h2.5a.75.75 0 0 1 .75.75v3.19l3.72-3.72a.75.75 0 0 1 .53-.22h10a.25.25 0 0 0 .25-.25V4.25a.25.25 0 0 0-.25-.25Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/code-square-16.svg�������������������������0000664�0000000�0000000�00000001125�14753064456�0026606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v12.5A1.75 1.75 0 0 1 14.25 16H1.75A1.75 1.75 0 0 1 0 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25V1.75a.25.25 0 0 0-.25-.25Zm7.47 3.97a.75.75 0 0 1 1.06 0l2 2a.75.75 0 0 1 0 1.06l-2 2a.749.749 0 0 1-1.275-.326.75.75 0 0 1 .215-.734L10.69 8 9.22 6.53a.75.75 0 0 1 0-1.06M6.78 6.53 5.31 8l1.47 1.47a.749.749 0 0 1-.326 1.275.75.75 0 0 1-.734-.215l-2-2a.75.75 0 0 1 0-1.06l2-2a.75.75 0 0 1 1.042.018.75.75 0 0 1 .018 1.042"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/code-square-24.svg�������������������������0000664�0000000�0000000�00000001051�14753064456�0026603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.3 8.24a.75.75 0 0 1-.04 1.06L7.352 12l2.908 2.7a.75.75 0 1 1-1.02 1.1l-3.5-3.25a.75.75 0 0 1 0-1.1l3.5-3.25a.75.75 0 0 1 1.06.04m3.44 1.06a.75.75 0 1 1 1.02-1.1l3.5 3.25a.75.75 0 0 1 0 1.1l-3.5 3.25a.75.75 0 1 1-1.02-1.1l2.908-2.7z"/><path d="M2 3.75C2 2.784 2.784 2 3.75 2h16.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25Zm1.75-.25a.25.25 0 0 0-.25.25v16.5c0 .138.112.25.25.25h16.5a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/codescan-16.svg����������������������������0000664�0000000�0000000�00000000765�14753064456�0026166�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8.47 4.97a.75.75 0 0 0 0 1.06L9.94 7.5 8.47 8.97a.75.75 0 1 0 1.06 1.06l2-2a.75.75 0 0 0 0-1.06l-2-2a.75.75 0 0 0-1.06 0M6.53 6.03a.75.75 0 0 0-1.06-1.06l-2 2a.75.75 0 0 0 0 1.06l2 2a.75.75 0 1 0 1.06-1.06L5.06 7.5z"/><path d="M12.246 13.307a7.501 7.501 0 1 1 1.06-1.06l2.474 2.473a.749.749 0 0 1-.326 1.275.75.75 0 0 1-.734-.215ZM1.5 7.5a6 6 0 0 0 3.608 5.504 6 6 0 0 0 6.486-1.117.75.75 0 0 1 .292-.293A6 6 0 1 0 1.5 7.5"/></svg>�����������mkdocs-material-9.6.4/material/templates/.icons/octicons/codescan-24.svg����������������������������0000664�0000000�0000000�00000001077�14753064456�0026162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.97 6.97a.75.75 0 0 0 0 1.06l2.47 2.47-2.47 2.47a.75.75 0 1 0 1.06 1.06l3-3a.75.75 0 0 0 0-1.06l-3-3a.75.75 0 0 0-1.06 0M9.03 8.03a.75.75 0 0 0-1.06-1.06l-3 3a.75.75 0 0 0 0 1.06l3 3a.75.75 0 0 0 1.06-1.06L6.56 10.5z"/><path d="M10.5 0C16.299 0 21 4.701 21 10.5a10.46 10.46 0 0 1-2.564 6.875l4.344 4.345a.749.749 0 0 1-.326 1.275.75.75 0 0 1-.734-.215l-4.345-4.344A10.46 10.46 0 0 1 10.5 21C4.701 21 0 16.299 0 10.5S4.701 0 10.5 0m-9 10.5a9 9 0 0 0 9 9 9 9 0 0 0 9-9 9 9 0 0 0-9-9 9 9 0 0 0-9 9"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/codescan-checkmark-16.svg������������������0000664�0000000�0000000�00000000640�14753064456�0030104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M10.28 6.28a.75.75 0 1 0-1.06-1.06L6.25 8.19l-.97-.97a.75.75 0 0 0-1.06 1.06l1.5 1.5a.75.75 0 0 0 1.06 0z"/><path d="M7.5 15a7.5 7.5 0 1 1 5.807-2.754l2.473 2.474a.749.749 0 0 1-.326 1.275.75.75 0 0 1-.734-.215l-2.474-2.473A7.47 7.47 0 0 1 7.5 15m0-13.5a6 6 0 1 0 4.094 10.386.75.75 0 0 1 .293-.292 6 6 0 0 0 1.117-6.486A6 6 0 0 0 7.5 1.5"/></svg>������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/codescan-checkmark-24.svg������������������0000664�0000000�0000000�00000000717�14753064456�0030110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.03 8.28a.75.75 0 0 0-1.06-1.06l-5.22 5.22-2.22-2.22a.75.75 0 1 0-1.06 1.06l2.75 2.75a.75.75 0 0 0 1.06 0z"/><path d="M0 10.5C0 4.701 4.701 0 10.5 0S21 4.701 21 10.5c0 2.63-.967 5.033-2.564 6.875l4.344 4.345a.749.749 0 0 1-.326 1.275.75.75 0 0 1-.734-.215l-4.345-4.344A10.46 10.46 0 0 1 10.5 21C4.701 21 0 16.299 0 10.5m10.5-9a9 9 0 0 0-9 9 9 9 0 0 0 9 9 9 9 0 0 0 9-9 9 9 0 0 0-9-9"/></svg>�������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/codespaces-16.svg��������������������������0000664�0000000�0000000�00000001246�14753064456�0026513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 11.25c0-.966.784-1.75 1.75-1.75h12.5c.966 0 1.75.784 1.75 1.75v3A1.75 1.75 0 0 1 14.25 16H1.75A1.75 1.75 0 0 1 0 14.25Zm2-9.5C2 .784 2.784 0 3.75 0h8.5C13.216 0 14 .784 14 1.75v5a1.75 1.75 0 0 1-1.75 1.75h-8.5A1.75 1.75 0 0 1 2 6.75Zm1.75-.25a.25.25 0 0 0-.25.25v5c0 .138.112.25.25.25h8.5a.25.25 0 0 0 .25-.25v-5a.25.25 0 0 0-.25-.25Zm-2 9.5a.25.25 0 0 0-.25.25v3c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-3a.25.25 0 0 0-.25-.25Z"/><path d="M7 12.75a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75m-4 0a.75.75 0 0 1 .75-.75h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1-.75-.75"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/codespaces-24.svg��������������������������0000664�0000000�0000000�00000001270�14753064456�0026507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.5 3.75C3.5 2.784 4.284 2 5.25 2h13.5c.966 0 1.75.784 1.75 1.75v7.5A1.75 1.75 0 0 1 18.75 13H5.25a1.75 1.75 0 0 1-1.75-1.75Zm-2 12c0-.966.784-1.75 1.75-1.75h17.5c.966 0 1.75.784 1.75 1.75v4a1.75 1.75 0 0 1-1.75 1.75H3.25a1.75 1.75 0 0 1-1.75-1.75ZM5.25 3.5a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25h13.5a.25.25 0 0 0 .25-.25v-7.5a.25.25 0 0 0-.25-.25Zm-2 12a.25.25 0 0 0-.25.25v4c0 .138.112.25.25.25h17.5a.25.25 0 0 0 .25-.25v-4a.25.25 0 0 0-.25-.25Z"/><path d="M10 17.75a.75.75 0 0 1 .75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1-.75-.75m-4 0a.75.75 0 0 1 .75-.75h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1-.75-.75"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/columns-16.svg�����������������������������0000664�0000000�0000000�00000001023�14753064456�0026053�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2.75 0h2.5C6.216 0 7 .784 7 1.75v12.5A1.75 1.75 0 0 1 5.25 16h-2.5A1.75 1.75 0 0 1 1 14.25V1.75C1 .784 1.784 0 2.75 0m8 0h2.5C14.216 0 15 .784 15 1.75v12.5A1.75 1.75 0 0 1 13.25 16h-2.5A1.75 1.75 0 0 1 9 14.25V1.75C9 .784 9.784 0 10.75 0M2.5 1.75v12.5c0 .138.112.25.25.25h2.5a.25.25 0 0 0 .25-.25V1.75a.25.25 0 0 0-.25-.25h-2.5a.25.25 0 0 0-.25.25m8 0v12.5c0 .138.112.25.25.25h2.5a.25.25 0 0 0 .25-.25V1.75a.25.25 0 0 0-.25-.25h-2.5a.25.25 0 0 0-.25.25"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/columns-24.svg�����������������������������0000664�0000000�0000000�00000001037�14753064456�0026057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.75 2h5.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 9.25 22h-5.5A1.75 1.75 0 0 1 2 20.25V3.75C2 2.784 2.784 2 3.75 2m11 0h5.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 20.25 22h-5.5A1.75 1.75 0 0 1 13 20.25V3.75c0-.966.784-1.75 1.75-1.75M3.5 3.75v16.5c0 .138.112.25.25.25h5.5a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25h-5.5a.25.25 0 0 0-.25.25m11 0v16.5c0 .138.112.25.25.25h5.5a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25h-5.5a.25.25 0 0 0-.25.25"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/command-palette-16.svg���������������������0000664�0000000�0000000�00000000401�14753064456�0027444�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m6.354 8.04-4.773 4.773a.75.75 0 1 0 1.061 1.06L7.945 8.57a.75.75 0 0 0 0-1.06L2.642 2.206a.75.75 0 0 0-1.06 1.061L6.353 8.04ZM8.75 11.5a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/command-palette-24.svg���������������������0000664�0000000�0000000�00000000402�14753064456�0027444�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.045 18.894 9.94 12 3.045 5.106a.75.75 0 0 1 1.06-1.061l7.425 7.425a.75.75 0 0 1 0 1.06l-7.424 7.425a.75.75 0 0 1-1.061-1.06Zm8.205.606a.75.75 0 0 0 0 1.5h9.5a.75.75 0 0 0 0-1.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/comment-16.svg�����������������������������0000664�0000000�0000000�00000000631�14753064456�0026041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1 2.75C1 1.784 1.784 1 2.75 1h10.5c.966 0 1.75.784 1.75 1.75v7.5A1.75 1.75 0 0 1 13.25 12H9.06l-2.573 2.573A1.458 1.458 0 0 1 4 13.543V12H2.75A1.75 1.75 0 0 1 1 10.25Zm1.75-.25a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.75.75 0 0 1 .53-.22h4.5a.25.25 0 0 0 .25-.25v-7.5a.25.25 0 0 0-.25-.25Z"/></svg>�������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/comment-24.svg�����������������������������0000664�0000000�0000000�00000000645�14753064456�0026045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.5 4.25c0-.966.784-1.75 1.75-1.75h17.5c.966 0 1.75.784 1.75 1.75v12.5a1.75 1.75 0 0 1-1.75 1.75h-9.69l-3.573 3.573A1.458 1.458 0 0 1 5 21.043V18.5H3.25a1.75 1.75 0 0 1-1.75-1.75ZM3.25 4a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h2.5a.75.75 0 0 1 .75.75v3.19l3.72-3.72a.75.75 0 0 1 .53-.22h10a.25.25 0 0 0 .25-.25V4.25a.25.25 0 0 0-.25-.25Z"/></svg>�������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/comment-discussion-16.svg������������������0000664�0000000�0000000�00000001246�14753064456�0030225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1.75 1h8.5c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 10.25 10H7.061l-2.574 2.573A1.458 1.458 0 0 1 2 11.543V10h-.25A1.75 1.75 0 0 1 0 8.25v-5.5C0 1.784.784 1 1.75 1M1.5 2.75v5.5c0 .138.112.25.25.25h1a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.75.75 0 0 1 .53-.22h3.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25h-8.5a.25.25 0 0 0-.25.25m13 2a.25.25 0 0 0-.25-.25h-.5a.75.75 0 0 1 0-1.5h.5c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 14.25 12H14v1.543a1.458 1.458 0 0 1-2.487 1.03L9.22 12.28a.749.749 0 0 1 .326-1.275.75.75 0 0 1 .734.215l2.22 2.22v-2.19a.75.75 0 0 1 .75-.75h1a.25.25 0 0 0 .25-.25Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/comment-discussion-24.svg������������������0000664�0000000�0000000�00000001365�14753064456�0030226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.75 1h12.5c.966 0 1.75.784 1.75 1.75v9.5A1.75 1.75 0 0 1 14.25 14H8.061l-2.574 2.573A1.458 1.458 0 0 1 3 15.543V14H1.75A1.75 1.75 0 0 1 0 12.25v-9.5C0 1.784.784 1 1.75 1M1.5 2.75v9.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.75.75 0 0 1 .53-.22h6.5a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25H1.75a.25.25 0 0 0-.25.25"/><path d="M22.5 8.75a.25.25 0 0 0-.25-.25h-3.5a.75.75 0 0 1 0-1.5h3.5c.966 0 1.75.784 1.75 1.75v9.5A1.75 1.75 0 0 1 22.25 20H21v1.543a1.457 1.457 0 0 1-2.487 1.03L15.939 20H10.75A1.75 1.75 0 0 1 9 18.25v-1.465a.75.75 0 0 1 1.5 0v1.465c0 .138.112.25.25.25h5.5a.75.75 0 0 1 .53.22l2.72 2.72v-2.19a.75.75 0 0 1 .75-.75h2a.25.25 0 0 0 .25-.25z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/container-16.svg���������������������������0000664�0000000�0000000�00000001305�14753064456�0026360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m10.41.24 4.711 2.774c.544.316.878.897.879 1.526v5.01a1.77 1.77 0 0 1-.88 1.53l-7.753 4.521-.002.001a1.77 1.77 0 0 1-1.774 0H5.59L.873 12.85A1.76 1.76 0 0 1 0 11.327V6.292c0-.304.078-.598.22-.855l.004-.005.01-.019c.15-.262.369-.486.64-.643L8.641.239a1.75 1.75 0 0 1 1.765 0l.002.001ZM9.397 1.534l-7.17 4.182 4.116 2.388a.27.27 0 0 0 .269 0l7.152-4.148-4.115-2.422a.25.25 0 0 0-.252 0m-7.768 10.02 4.1 2.393V9.474a2 2 0 0 1-.138-.072L1.5 7.029v4.298c0 .095.05.181.129.227m8.6.642 1.521-.887v-4.45l-1.521.882ZM7.365 9.402h.001q-.066.038-.136.071v4.472l1.5-.875V8.61Zm5.885 1.032 1.115-.65h.002a.27.27 0 0 0 .133-.232V5.264l-1.25.725Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/container-24.svg���������������������������0000664�0000000�0000000�00000001415�14753064456�0026361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.152.682a2.25 2.25 0 0 1 2.269 0l.007.004 6.957 4.276a2.28 2.28 0 0 1 1.126 1.964v7.516c0 .81-.432 1.56-1.133 1.968l-.002.001-11.964 7.037-.004.003c-.706.41-1.578.41-2.284 0l-.026-.015-6.503-4.502a2.27 2.27 0 0 1-1.096-1.943V9.438c0-.392.1-.77.284-1.1l.003-.006.014-.026c.197-.342.48-.627.82-.827h.002L13.152.681Zm.757 1.295h-.001L2.648 8.616l6.248 4.247a.78.78 0 0 0 .758-.01h.001l11.633-6.804-6.629-4.074a.75.75 0 0 0-.75.003ZM8.517 14.33a2.3 2.3 0 0 1-.393-.18l-.023-.014-6.102-4.147v7.003c0 .275.145.528.379.664l.025.014 6.114 4.232zM18 9.709l-3.25 1.9v7.548L18 17.245Zm-7.59 4.438-.002.002a2.3 2.3 0 0 1-.391.18v7.612l3.233-1.902v-7.552Zm9.09-5.316v7.532l2.124-1.25a.78.78 0 0 0 .387-.671V7.363Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/copilot-16.svg�����������������������������0000664�0000000�0000000�00000002714�14753064456�0026054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.998 15.035c-4.562 0-7.873-2.914-7.998-3.749V9.338c.085-.628.677-1.686 1.588-2.065q.019-.105.036-.218c.029-.183.06-.384.126-.612-.201-.508-.254-1.084-.254-1.656 0-.87.128-1.769.693-2.484.579-.733 1.494-1.124 2.724-1.261 1.206-.134 2.262.034 2.944.765q.075.08.139.165.068-.085.143-.165c.682-.731 1.738-.899 2.944-.765 1.23.137 2.145.528 2.724 1.261.566.715.693 1.614.693 2.484 0 .572-.053 1.148-.254 1.656.066.228.098.429.126.612q.018.113.037.218c.924.385 1.522 1.471 1.591 2.095v1.872c0 .766-3.351 3.795-8.002 3.795m0-1.485c2.28 0 4.584-1.11 5.002-1.433V7.862l-.023-.116c-.49.21-1.075.291-1.727.291-1.146 0-2.059-.327-2.71-.991A3.2 3.2 0 0 1 8 6.303a3.2 3.2 0 0 1-.544.743c-.65.664-1.563.991-2.71.991-.652 0-1.236-.081-1.727-.291l-.023.116v4.255c.419.323 2.722 1.433 5.002 1.433M6.762 2.83c-.193-.206-.637-.413-1.682-.297-1.019.113-1.479.404-1.713.7-.247.312-.369.789-.369 1.554 0 .793.129 1.171.308 1.371.162.181.519.379 1.442.379.853 0 1.339-.235 1.638-.54.315-.322.527-.827.617-1.553.117-.935-.037-1.395-.241-1.614m4.155-.297c-1.044-.116-1.488.091-1.681.297-.204.219-.359.679-.242 1.614.091.726.303 1.231.618 1.553.299.305.784.54 1.638.54.922 0 1.28-.198 1.442-.379.179-.2.308-.578.308-1.371 0-.765-.123-1.242-.37-1.554-.233-.296-.693-.587-1.713-.7"/><path d="M6.25 9.037a.75.75 0 0 1 .75.75v1.501a.75.75 0 0 1-1.5 0V9.787a.75.75 0 0 1 .75-.75m4.25.75v1.501a.75.75 0 0 1-1.5 0V9.787a.75.75 0 0 1 1.5 0"/></svg>����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/copilot-24.svg�����������������������������0000664�0000000�0000000�00000003036�14753064456�0026051�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.922 16.992c-.861 1.495-5.859 5.023-11.922 5.023S.939 18.487.078 16.992A.6.6 0 0 1 0 16.736v-2.869a.8.8 0 0 1 .053-.22c.372-.935 1.347-2.292 2.605-2.656.167-.429.414-1.055.644-1.517a10 10 0 0 1-.052-1.086c0-1.331.282-2.499 1.132-3.368.397-.406.89-.717 1.474-.952 1.399-1.136 3.392-2.093 6.122-2.093s4.767.957 6.166 2.093c.584.235 1.077.546 1.474.952.85.869 1.132 2.037 1.132 3.368 0 .368-.014.733-.052 1.086.23.462.477 1.088.644 1.517 1.258.364 2.233 1.721 2.605 2.656a.8.8 0 0 1 .053.22v2.869a.6.6 0 0 1-.078.256M12.172 11h-.344a4 4 0 0 1-.355.508C10.703 12.455 9.555 13 7.965 13c-1.725 0-2.989-.359-3.782-1.259a2 2 0 0 1-.085-.104L4 11.741v6.585c1.435.779 4.514 2.179 8 2.179s6.565-1.4 8-2.179v-6.585l-.098-.104s-.033.045-.085.104c-.793.9-2.057 1.259-3.782 1.259-1.59 0-2.738-.545-3.508-1.492a4 4 0 0 1-.355-.508h-.016zm.641-2.935c.136 1.057.403 1.913.878 2.497.442.544 1.134.938 2.344.938 1.573 0 2.292-.337 2.657-.751.384-.435.558-1.15.558-2.361 0-1.14-.243-1.847-.705-2.319-.477-.488-1.319-.862-2.824-1.025-1.487-.161-2.192.138-2.533.529-.269.307-.437.808-.438 1.578v.021q0 .397.063.893m-1.626 0q.063-.496.063-.894v-.02c-.001-.77-.169-1.271-.438-1.578-.341-.391-1.046-.69-2.533-.529-1.505.163-2.347.537-2.824 1.025-.462.472-.705 1.179-.705 2.319 0 1.211.175 1.926.558 2.361.365.414 1.084.751 2.657.751 1.21 0 1.902-.394 2.344-.938.475-.584.742-1.44.878-2.497"/><path d="M14.5 14.25a1 1 0 0 1 1 1v2a1 1 0 0 1-2 0v-2a1 1 0 0 1 1-1m-5 0a1 1 0 0 1 1 1v2a1 1 0 0 1-2 0v-2a1 1 0 0 1 1-1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/copilot-48.svg�����������������������������0000664�0000000�0000000�00000003343�14753064456�0026060�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path d="M47.801 34.003c-1.72 2.988-11.706 10.037-23.82 10.037S1.881 36.991.161 34.003a1.3 1.3 0 0 1-.161-.57v-5.615q.017-.256.11-.498c.744-1.867 2.692-4.58 5.206-5.308.333-.855.826-2.106 1.287-3.029a20 20 0 0 1-.104-2.171c0-2.659.563-4.992 2.262-6.729.793-.811 1.777-1.433 2.945-1.901C14.502 5.911 18.483 4 23.938 4s9.523 1.911 12.319 4.182c1.167.468 2.151 1.09 2.944 1.901 1.699 1.737 2.263 4.07 2.263 6.729 0 .736-.027 1.465-.105 2.171.461.923.954 2.174 1.288 3.029 2.513.728 4.461 3.441 5.205 5.308.081.205.115.424.115.645v5.318c0 .252-.04.502-.166.72M24.325 22.031h-.688a8.5 8.5 0 0 1-.709 1.016c-1.537 1.892-3.833 2.98-7.008 2.98-3.447 0-5.972-.717-7.557-2.514a4 4 0 0 1-.171-.21l-.195.21v13.155c2.867 1.558 9.02 4.353 15.984 4.353s13.117-2.795 15.984-4.353V23.513l-.195-.21s-.066.091-.171.21c-1.584 1.797-4.11 2.514-7.557 2.514-3.175 0-5.47-1.088-7.008-2.98a9 9 0 0 1-.709-1.016h-.033zm-1.969-5.864a14 14 0 0 0 .127-1.785v-.042c-.003-1.537-.339-2.538-.876-3.152-.681-.78-2.09-1.378-5.06-1.057-3.008.326-4.69 1.073-5.643 2.048-.923.944-1.408 2.356-1.408 4.633 0 2.42.348 3.849 1.115 4.719.729.827 2.165 1.499 5.309 1.499 2.417 0 3.799-.786 4.683-1.873.948-1.168 1.482-2.878 1.753-4.99m3.25 0c.271 2.112.805 3.822 1.754 4.99.883 1.087 2.265 1.873 4.682 1.873 3.145 0 4.58-.672 5.309-1.499.767-.87 1.116-2.299 1.116-4.719 0-2.277-.485-3.689-1.408-4.633-.954-.975-2.635-1.722-5.644-2.048-2.969-.321-4.378.277-5.06 1.057-.537.614-.873 1.615-.876 3.152v.042q.001.793.127 1.785"/><path d="M28.998 28.516c1.104 0 1.999.895 1.999 1.999v3.998a2 2 0 1 1-3.998 0v-3.998c0-1.104.895-1.999 1.999-1.999m-9.996 0c1.104 0 1.999.895 1.999 1.999v3.998a2 2 0 1 1-3.998 0v-3.998c0-1.104.895-1.999 1.999-1.999"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/copilot-96.svg�����������������������������0000664�0000000�0000000�00000003554�14753064456�0026067�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 96 96"><path d="M95.667 67.954C92.225 73.933 72.24 88.04 47.997 88.04S3.769 73.933.328 67.954c-.216-.375-.307-.796-.328-1.226V55.661c.019-.371.089-.736.226-1.081 1.489-3.738 5.386-9.166 10.417-10.623.667-1.712 1.655-4.215 2.576-6.062-.154-1.414-.208-2.872-.208-4.345 0-5.322 1.128-9.99 4.527-13.466 1.587-1.623 3.557-2.869 5.893-3.805 5.595-4.545 13.563-8.369 24.48-8.369s19.057 3.824 24.652 8.369c2.337.936 4.306 2.182 5.894 3.805 3.399 3.476 4.527 8.144 4.527 13.466 0 1.473-.054 2.931-.208 4.345.921 1.847 1.909 4.35 2.576 6.062 5.03 1.457 8.928 6.885 10.417 10.623.163.41.231.848.231 1.289v10.644c0 .504-.081 1.004-.333 1.441M48.686 43.993l-.3.001-1.077-.001q-.633 1.066-1.418 2.035c-3.078 3.787-7.672 5.964-14.026 5.964-6.897 0-11.952-1.435-15.123-5.032a8 8 0 0 1-.342-.419l-.39.419v26.326c5.737 3.118 18.05 8.713 31.987 8.713 13.938 0 26.251-5.595 31.988-8.713V46.96l-.39-.419s-.132.181-.342.419c-3.171 3.597-8.226 5.032-15.123 5.032-6.354 0-10.949-2.177-14.026-5.964a17 17 0 0 1-1.418-2.034h-.066zm-3.94-11.733c.17-1.326.251-2.513.253-3.573v-.084c-.005-3.077-.678-5.079-1.752-6.308-1.365-1.562-4.184-2.758-10.127-2.115-6.021.652-9.386 2.146-11.294 4.098-1.847 1.889-2.818 4.715-2.818 9.272 0 4.842.698 7.703 2.232 9.443 1.459 1.655 4.332 3.001 10.625 3.001 4.837 0 7.603-1.573 9.371-3.749 1.899-2.336 2.967-5.759 3.51-9.985m6.503 0c.543 4.226 1.611 7.649 3.51 9.985 1.768 2.176 4.533 3.749 9.371 3.749 6.292 0 9.165-1.346 10.624-3.001 1.535-1.74 2.232-4.601 2.232-9.443 0-4.557-.97-7.383-2.817-9.272-1.908-1.952-5.274-3.446-11.294-4.098-5.943-.643-8.763.553-10.127 2.115-1.074 1.229-1.747 3.231-1.752 6.308v.084c.002 1.06.083 2.247.253 3.573m-2.563 11.734h.066z"/><path d="M38.5 55.75a3.5 3.5 0 0 1 3.5 3.5v8.5a3.5 3.5 0 1 1-7 0v-8.5a3.5 3.5 0 0 1 3.5-3.5m19 0a3.5 3.5 0 0 1 3.5 3.5v8.5a3.5 3.5 0 1 1-7 0v-8.5a3.5 3.5 0 0 1 3.5-3.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/copilot-error-16.svg�����������������������0000664�0000000�0000000�00000002513�14753064456�0027200�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M16 11.24c0 .112-.072.274-.21.467L13 9.688V7.862l-.023-.116c-.49.21-1.075.291-1.727.291q-.297 0-.571-.029L6.833 5.226a4 4 0 0 0 .17-.782c.117-.935-.037-1.395-.241-1.614-.193-.206-.637-.413-1.682-.297-.683.076-1.115.231-1.395.415l-1.257-.91c.579-.564 1.413-.877 2.485-.996 1.206-.134 2.262.034 2.944.765q.075.08.139.165.068-.085.143-.165c.682-.731 1.738-.899 2.944-.765 1.23.137 2.145.528 2.724 1.261.566.715.693 1.614.693 2.484 0 .572-.053 1.148-.254 1.656.066.228.098.429.126.612q.018.113.037.218c.924.385 1.522 1.471 1.591 2.095Zm-5.083-8.707c-1.044-.116-1.488.091-1.681.297-.204.219-.359.679-.242 1.614.091.726.303 1.231.618 1.553.299.305.784.54 1.638.54.922 0 1.28-.198 1.442-.379.179-.2.308-.578.308-1.371 0-.765-.123-1.242-.37-1.554-.233-.296-.693-.587-1.713-.7m2.511 11.074c-1.393.776-3.272 1.428-5.43 1.428-4.562 0-7.873-2.914-7.998-3.749V9.338c.085-.628.677-1.686 1.588-2.065q.019-.105.036-.218c.029-.183.06-.384.126-.612-.18-.455-.241-.963-.252-1.475L.31 4.107A.75.75 0 0 1 0 3.509V3.49a.75.75 0 0 1 .625-.73c.156-.026.306.047.435.139l14.667 10.578a.6.6 0 0 1 .227.264.8.8 0 0 1 .046.249v.022a.75.75 0 0 1-1.19.596Zm-1.367-.991L5.635 7.964a5 5 0 0 1-.889.073c-.652 0-1.236-.081-1.727-.291l-.023.116v4.255c.419.323 2.722 1.433 5.002 1.433 1.539 0 3.089-.505 4.063-.934"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/copilot-warning-16.svg���������������������0000664�0000000�0000000�00000002433�14753064456�0027515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8.498 14.811a4.5 4.5 0 0 1-1.161-1.337 4.5 4.5 0 0 1-.587-2.224 4.496 4.496 0 0 1 4.5-4.5 4.5 4.5 0 0 1 4.5 4.5 4.5 4.5 0 0 1-7.252 3.561M10.5 8.75V11a.75.75 0 0 0 1.5 0V8.75a.75.75 0 1 0-1.5 0m.75 5.75a1 1 0 1 0 0-2 1 1 0 0 0 0 2"/><path d="m14.354 6.114-.05-.029a6 6 0 0 0-1.351-.589c.03-.19.047-.422.047-.709 0-.765-.123-1.242-.37-1.554-.233-.296-.693-.587-1.713-.7-1.044-.116-1.488.091-1.681.297-.204.219-.359.679-.242 1.614.058.462.165.834.316 1.127A6.03 6.03 0 0 0 6.369 7.76q-.71.277-1.623.277c-.652 0-1.236-.081-1.727-.291l-.023.116v4.255c.265.205 1.285.725 2.577 1.079a6 6 0 0 0 .939 1.736C2.733 14.407.111 12.027 0 11.286V9.338c.085-.628.677-1.686 1.588-2.065q.019-.105.036-.218c.029-.183.06-.384.126-.612-.201-.508-.254-1.084-.254-1.656 0-.87.128-1.769.693-2.484.579-.733 1.494-1.124 2.724-1.261 1.206-.134 2.262.034 2.944.765q.075.08.139.165.068-.085.143-.165c.682-.731 1.738-.899 2.944-.765 1.23.137 2.145.528 2.724 1.261.566.715.693 1.614.693 2.484 0 .452-.033.906-.146 1.327M6.762 2.83c-.193-.206-.637-.413-1.682-.297-1.019.113-1.479.404-1.713.7-.247.312-.369.789-.369 1.554 0 .793.129 1.171.308 1.371.162.181.519.379 1.442.379.853 0 1.339-.235 1.638-.54.315-.322.527-.827.617-1.553.117-.935-.037-1.395-.241-1.614"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/copy-16.svg��������������������������������0000664�0000000�0000000�00000001006�14753064456�0025346�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 6.75C0 5.784.784 5 1.75 5h1.5a.75.75 0 0 1 0 1.5h-1.5a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25h7.5a.25.25 0 0 0 .25-.25v-1.5a.75.75 0 0 1 1.5 0v1.5A1.75 1.75 0 0 1 9.25 16h-7.5A1.75 1.75 0 0 1 0 14.25Z"/><path d="M5 1.75C5 .784 5.784 0 6.75 0h7.5C15.216 0 16 .784 16 1.75v7.5A1.75 1.75 0 0 1 14.25 11h-7.5A1.75 1.75 0 0 1 5 9.25Zm1.75-.25a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25h7.5a.25.25 0 0 0 .25-.25v-7.5a.25.25 0 0 0-.25-.25Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/copy-24.svg��������������������������������0000664�0000000�0000000�00000001065�14753064456�0025352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.024 3.75c0-.966.784-1.75 1.75-1.75H20.25c.966 0 1.75.784 1.75 1.75v11.498a1.75 1.75 0 0 1-1.75 1.75H8.774a1.75 1.75 0 0 1-1.75-1.75Zm1.75-.25a.25.25 0 0 0-.25.25v11.498c0 .139.112.25.25.25H20.25a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25Z"/><path d="M1.995 10.749a1.75 1.75 0 0 1 1.75-1.751H5.25a.75.75 0 1 1 0 1.5H3.745a.25.25 0 0 0-.25.25L3.5 20.25c0 .138.111.25.25.25h9.5a.25.25 0 0 0 .25-.25v-1.51a.75.75 0 1 1 1.5 0v1.51A1.75 1.75 0 0 1 13.25 22h-9.5A1.75 1.75 0 0 1 2 20.25z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/cpu-16.svg���������������������������������0000664�0000000�0000000�00000001226�14753064456�0025167�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6.5.75V2h3V.75a.75.75 0 0 1 1.5 0V2h1.25c.966 0 1.75.784 1.75 1.75V5h1.25a.75.75 0 0 1 0 1.5H14v3h1.25a.75.75 0 0 1 0 1.5H14v1.25A1.75 1.75 0 0 1 12.25 14H11v1.25a.75.75 0 0 1-1.5 0V14h-3v1.25a.75.75 0 0 1-1.5 0V14H3.75A1.75 1.75 0 0 1 2 12.25V11H.75a.75.75 0 0 1 0-1.5H2v-3H.75a.75.75 0 0 1 0-1.5H2V3.75C2 2.784 2.784 2 3.75 2H5V.75a.75.75 0 0 1 1.5 0m5.75 11.75a.25.25 0 0 0 .25-.25v-8.5a.25.25 0 0 0-.25-.25h-8.5a.25.25 0 0 0-.25.25v8.5c0 .138.112.25.25.25ZM5.75 5h4.5a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-.75.75h-4.5a.75.75 0 0 1-.75-.75v-4.5A.75.75 0 0 1 5.75 5m.75 4.5h3v-3h-3Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/cpu-24.svg���������������������������������0000664�0000000�0000000�00000001272�14753064456�0025167�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.75 8h6.5a.75.75 0 0 1 .75.75v6.5a.75.75 0 0 1-.75.75h-6.5a.75.75 0 0 1-.75-.75v-6.5A.75.75 0 0 1 8.75 8m.75 6.5h5v-5h-5Z"/><path d="M15.25 1a.75.75 0 0 1 .75.75V4h2.25c.966 0 1.75.784 1.75 1.75V8h2.25a.75.75 0 0 1 0 1.5H20v5h2.25a.75.75 0 0 1 0 1.5H20v2.25A1.75 1.75 0 0 1 18.25 20H16v2.25a.75.75 0 0 1-1.5 0V20h-5v2.25a.75.75 0 0 1-1.5 0V20H5.75A1.75 1.75 0 0 1 4 18.25V16H1.75a.75.75 0 0 1 0-1.5H4v-5H1.75a.75.75 0 0 1 0-1.5H4V5.75C4 4.784 4.784 4 5.75 4H8V1.75a.75.75 0 0 1 1.5 0V4h5V1.75a.75.75 0 0 1 .75-.75m3 17.5a.25.25 0 0 0 .25-.25V5.75a.25.25 0 0 0-.25-.25H5.75a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/credit-card-16.svg�������������������������0000664�0000000�0000000�00000000577�14753064456�0026571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M10.75 9a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5z"/><path d="M0 3.75C0 2.784.784 2 1.75 2h12.5c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 14.25 14H1.75A1.75 1.75 0 0 1 0 12.25ZM14.5 6.5h-13v5.75c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25Zm0-2.75a.25.25 0 0 0-.25-.25H1.75a.25.25 0 0 0-.25.25V5h13Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/credit-card-24.svg�������������������������0000664�0000000�0000000�00000000610�14753064456�0026554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.25 14a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5z"/><path d="M1.75 3h20.5c.966 0 1.75.784 1.75 1.75v14.5A1.75 1.75 0 0 1 22.25 21H1.75A1.75 1.75 0 0 1 0 19.25V4.75C0 3.784.784 3 1.75 3m-.25 7v9.25c0 .138.112.25.25.25h20.5a.25.25 0 0 0 .25-.25V10Zm0-5.25V8.5h21V4.75a.25.25 0 0 0-.25-.25H1.75a.25.25 0 0 0-.25.25"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/cross-reference-16.svg���������������������0000664�0000000�0000000�00000001074�14753064456�0027466�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2.75 3.5a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.75.75 0 0 1 .53-.22h4.5a.25.25 0 0 0 .25-.25v-2.5a.75.75 0 0 1 1.5 0v2.5A1.75 1.75 0 0 1 13.25 13H9.06l-2.573 2.573A1.458 1.458 0 0 1 4 14.543V13H2.75A1.75 1.75 0 0 1 1 11.25v-7.5C1 2.784 1.784 2 2.75 2h5.5a.75.75 0 0 1 0 1.5ZM16 1.25v4.146a.25.25 0 0 1-.427.177L14.03 4.03l-3.75 3.75a.749.749 0 0 1-1.275-.326.75.75 0 0 1 .215-.734l3.75-3.75-1.543-1.543A.25.25 0 0 1 11.604 1h4.146a.25.25 0 0 1 .25.25"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/cross-reference-24.svg���������������������0000664�0000000�0000000�00000001064�14753064456�0027464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 2.25a.75.75 0 0 1 .75-.75h5.5a.75.75 0 0 1 .75.75v5.5a.75.75 0 0 1-1.5 0V4.06l-6.22 6.22a.75.75 0 1 1-1.06-1.06L20.94 3h-3.69a.75.75 0 0 1-.75-.75"/><path d="M3.25 4a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h2.5a.75.75 0 0 1 .75.75v3.19l3.72-3.72a.75.75 0 0 1 .53-.22h10a.25.25 0 0 0 .25-.25v-6a.75.75 0 0 1 1.5 0v6a1.75 1.75 0 0 1-1.75 1.75h-9.69l-3.573 3.573A1.457 1.457 0 0 1 5 21.043V18.5H3.25a1.75 1.75 0 0 1-1.75-1.75V4.25c0-.966.784-1.75 1.75-1.75h11a.75.75 0 0 1 0 1.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/dash-16.svg��������������������������������0000664�0000000�0000000�00000000227�14753064456�0025317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2 7.75A.75.75 0 0 1 2.75 7h10a.75.75 0 0 1 0 1.5h-10A.75.75 0 0 1 2 7.75"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/dash-24.svg��������������������������������0000664�0000000�0000000�00000000237�14753064456�0025317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.5 12.75a.75.75 0 0 1 .75-.75h13.5a.75.75 0 0 1 0 1.5H5.25a.75.75 0 0 1-.75-.75"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/database-16.svg����������������������������0000664�0000000�0000000�00000002337�14753064456�0026150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1 3.5c0-.626.292-1.165.7-1.59.406-.422.956-.767 1.579-1.041C4.525.32 6.195 0 8 0s3.475.32 4.722.869c.622.274 1.172.62 1.578 1.04.408.426.7.965.7 1.591v9c0 .626-.292 1.165-.7 1.59-.406.422-.956.767-1.579 1.041C11.476 15.68 9.806 16 8 16c-1.805 0-3.475-.32-4.721-.869-.623-.274-1.173-.62-1.579-1.04-.408-.426-.7-.965-.7-1.591Zm1.5 0c0 .133.058.318.282.551.227.237.591.483 1.101.707C4.898 5.205 6.353 5.5 8 5.5s3.101-.295 4.118-.742c.508-.224.873-.471 1.1-.708.224-.232.282-.417.282-.55s-.058-.318-.282-.551c-.227-.237-.591-.483-1.101-.707C11.102 1.795 9.647 1.5 8 1.5s-3.101.295-4.118.742c-.508.224-.873.471-1.1.708-.224.232-.282.417-.282.55m0 4.5c0 .133.058.318.282.551.227.237.591.483 1.101.707C4.898 9.705 6.353 10 8 10s3.101-.295 4.118-.742c.508-.224.873-.471 1.1-.708.224-.232.282-.417.282-.55V5.724c-.241.15-.503.286-.778.407C11.475 6.68 9.805 7 8 7s-3.475-.32-4.721-.869a6 6 0 0 1-.779-.407Zm0 2.225V12.5c0 .133.058.318.282.55.227.237.592.484 1.1.708 1.016.447 2.471.742 4.118.742s3.102-.295 4.117-.742c.51-.224.874-.47 1.101-.707.224-.233.282-.418.282-.551v-2.275c-.241.15-.503.285-.778.406-1.247.549-2.917.869-4.722.869s-3.475-.32-4.721-.869a6 6 0 0 1-.779-.406"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/database-24.svg����������������������������0000664�0000000�0000000�00000002543�14753064456�0026146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1.25c2.487 0 4.773.402 6.466 1.079.844.337 1.577.758 2.112 1.264.536.507.922 1.151.922 1.907v12.987l-.026.013h.026c0 .756-.386 1.4-.922 1.907-.535.506-1.268.927-2.112 1.264-1.693.677-3.979 1.079-6.466 1.079s-4.774-.402-6.466-1.079c-.844-.337-1.577-.758-2.112-1.264C2.886 19.9 2.5 19.256 2.5 18.5h.026l-.026-.013V5.5c0-.756.386-1.4.922-1.907.535-.506 1.268-.927 2.112-1.264C7.226 1.652 9.513 1.25 12 1.25M4 14.371v4.116l-.013.013H4c0 .211.103.487.453.817.351.332.898.666 1.638.962 1.475.589 3.564.971 5.909.971s4.434-.381 5.909-.971c.739-.296 1.288-.63 1.638-.962.349-.33.453-.607.453-.817h.013L20 18.487v-4.116a8 8 0 0 1-1.534.8c-1.693.677-3.979 1.079-6.466 1.079s-4.774-.402-6.466-1.079a8 8 0 0 1-1.534-.8M20 12V7.871a8 8 0 0 1-1.534.8C16.773 9.348 14.487 9.75 12 9.75s-4.774-.402-6.466-1.079A8 8 0 0 1 4 7.871V12c0 .21.104.487.453.817.35.332.899.666 1.638.961 1.475.59 3.564.972 5.909.972s4.434-.382 5.909-.972c.74-.295 1.287-.629 1.638-.96.35-.33.453-.607.453-.818M4 5.5c0 .211.103.487.453.817.351.332.898.666 1.638.962 1.475.589 3.564.971 5.909.971s4.434-.381 5.909-.971c.739-.296 1.288-.63 1.638-.962.349-.33.453-.607.453-.817 0-.211-.103-.487-.453-.817-.351-.332-.898-.666-1.638-.962-1.475-.589-3.564-.971-5.909-.971s-4.434.381-5.909.971c-.739.296-1.288.63-1.638.962C4.104 5.013 4 5.29 4 5.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/dependabot-16.svg��������������������������0000664�0000000�0000000�00000001075�14753064456�0026507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M5.75 7.5a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5a.75.75 0 0 1 .75-.75m5.25.75a.75.75 0 0 0-1.5 0v1.5a.75.75 0 0 0 1.5 0z"/><path d="M6.25 0h2A.75.75 0 0 1 9 .75V3.5h3.25a2.25 2.25 0 0 1 2.25 2.25V8h.75a.75.75 0 0 1 0 1.5h-.75v2.75a2.25 2.25 0 0 1-2.25 2.25h-8.5a2.25 2.25 0 0 1-2.25-2.25V9.5H.75a.75.75 0 0 1 0-1.5h.75V5.75A2.25 2.25 0 0 1 3.75 3.5H7.5v-2H6.25a.75.75 0 0 1 0-1.5M3 5.75v6.5c0 .414.336.75.75.75h8.5a.75.75 0 0 0 .75-.75v-6.5a.75.75 0 0 0-.75-.75h-8.5a.75.75 0 0 0-.75.75"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/dependabot-24.svg��������������������������0000664�0000000�0000000�00000001102�14753064456�0026475�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.75 11a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0v-3.5a.75.75 0 0 1 .75-.75m7.25.75a.75.75 0 0 0-1.5 0v3.5a.75.75 0 0 0 1.5 0z"/><path d="M9.813 1h2.437a.75.75 0 0 1 .75.75V5h6.75A2.25 2.25 0 0 1 22 7.25v5.25h1.25a.75.75 0 0 1 0 1.5H22v5.75A2.25 2.25 0 0 1 19.75 22H4.25A2.25 2.25 0 0 1 2 19.75V14H.75a.75.75 0 0 1 0-1.5H2V7.25A2.25 2.25 0 0 1 4.25 5h7.25V2.5H9.813A.75.75 0 0 1 9.812 1ZM3.5 7.25v12.5c0 .414.336.75.75.75h15.5a.75.75 0 0 0 .75-.75V7.25a.75.75 0 0 0-.75-.75H4.25a.75.75 0 0 0-.75.75"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/desktop-download-16.svg��������������������0000664�0000000�0000000�00000001276�14753064456�0027663�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m4.927 5.427 2.896 2.896a.25.25 0 0 0 .354 0l2.896-2.896A.25.25 0 0 0 10.896 5H8.75V.75a.75.75 0 1 0-1.5 0V5H5.104a.25.25 0 0 0-.177.427"/><path d="M1.573 2.573a.25.25 0 0 0-.073.177v7.5a.25.25 0 0 0 .25.25h12.5a.25.25 0 0 0 .25-.25v-7.5a.25.25 0 0 0-.25-.25h-3a.75.75 0 1 1 0-1.5h3A1.75 1.75 0 0 1 16 2.75v7.5A1.75 1.75 0 0 1 14.25 12h-3.727c.099 1.041.52 1.872 1.292 2.757A.75.75 0 0 1 11.25 16h-6.5a.75.75 0 0 1-.565-1.243c.772-.885 1.192-1.716 1.292-2.757H1.75A1.75 1.75 0 0 1 0 10.25v-7.5A1.75 1.75 0 0 1 1.75 1h3a.75.75 0 0 1 0 1.5h-3a.25.25 0 0 0-.177.073M6.982 12a5.7 5.7 0 0 1-.765 2.5h3.566a5.7 5.7 0 0 1-.765-2.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/desktop-download-24.svg��������������������0000664�0000000�0000000�00000001313�14753064456�0027652�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.25 9.331V.75a.75.75 0 0 1 1.5 0v8.58l1.949-2.11A.75.75 0 1 1 15.8 8.237l-3.25 3.52a.75.75 0 0 1-1.102 0l-3.25-3.52A.75.75 0 1 1 9.3 7.22z"/><path d="M2.5 3.75v11.5c0 .138.112.25.25.25h18.5a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25h-5.5a.75.75 0 0 1 0-1.5h5.5c.966 0 1.75.784 1.75 1.75v11.5A1.75 1.75 0 0 1 21.25 17h-6.204c.171 1.375.805 2.652 1.769 3.757A.752.752 0 0 1 16.25 22h-8.5a.75.75 0 0 1-.566-1.243c.965-1.105 1.599-2.382 1.77-3.757H2.75A1.75 1.75 0 0 1 1 15.25V3.75C1 2.784 1.784 2 2.75 2h5.5a.75.75 0 0 1 0 1.5h-5.5a.25.25 0 0 0-.25.25M10.463 17c-.126 1.266-.564 2.445-1.223 3.5h5.52c-.66-1.055-1.098-2.234-1.223-3.5Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/device-camera-16.svg�����������������������0000664�0000000�0000000�00000000532�14753064456�0027064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M15 3c.55 0 1 .45 1 1v9c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1 0-.55.45-1 1-1h4c.55 0 1 .45 1 1Zm-4.5 9c1.94 0 3.5-1.56 3.5-3.5S12.44 5 10.5 5 7 6.56 7 8.5 8.56 12 10.5 12M13 8.5c0 1.38-1.13 2.5-2.5 2.5S8 9.87 8 8.5 9.13 6 10.5 6 13 7.13 13 8.5M6 5V4H2v1Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/device-camera-24.svg�����������������������0000664�0000000�0000000�00000001025�14753064456�0027061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.333 5.333c.734 0 1.334.6 1.334 1.334v12c0 .733-.6 1.333-1.334 1.333H2.667c-.734 0-1.334-.6-1.334-1.333v-12c0-.734.6-1.334 1.334-1.334C2.667 4.6 3.267 4 4 4h5.333c.734 0 1.334.6 1.334 1.333zm-6 12A4.655 4.655 0 0 0 20 12.667 4.655 4.655 0 0 0 15.333 8a4.655 4.655 0 0 0-4.666 4.667 4.655 4.655 0 0 0 4.666 4.666m3.334-4.666A3.343 3.343 0 0 1 15.333 16 3.35 3.35 0 0 1 12 12.667a3.35 3.35 0 0 1 3.333-3.334 3.35 3.35 0 0 1 3.334 3.334M9.333 8V6.667H4V8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/device-camera-video-16.svg�����������������0000664�0000000�0000000�00000000633�14753064456�0030172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M16 3.75v8.5a.75.75 0 0 1-1.136.643L11 10.575v.675A1.75 1.75 0 0 1 9.25 13h-7.5A1.75 1.75 0 0 1 0 11.25v-6.5C0 3.784.784 3 1.75 3h7.5c.966 0 1.75.784 1.75 1.75v.675l3.864-2.318A.75.75 0 0 1 16 3.75m-6.5 1a.25.25 0 0 0-.25-.25h-7.5a.25.25 0 0 0-.25.25v6.5c0 .138.112.25.25.25h7.5a.25.25 0 0 0 .25-.25zM11 8.825l3.5 2.1v-5.85l-3.5 2.1Z"/></svg>�����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/device-camera-video-24.svg�����������������0000664�0000000�0000000�00000000630�14753064456�0030166�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 5.25v13a.75.75 0 0 1-1.136.643L16.5 15.075v2.175A1.75 1.75 0 0 1 14.75 19h-13A1.75 1.75 0 0 1 0 17.25v-11C0 5.284.784 4.5 1.75 4.5h13c.966 0 1.75.784 1.75 1.75v2.175l6.364-3.818A.75.75 0 0 1 24 5.25m-9 1a.25.25 0 0 0-.25-.25h-13a.25.25 0 0 0-.25.25v11c0 .138.112.25.25.25h13a.25.25 0 0 0 .25-.25zm1.5 7.075 6 3.6V6.575l-6 3.6Z"/></svg>��������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/device-desktop-16.svg����������������������0000664�0000000�0000000�00000000760�14753064456�0027310�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M14.25 1c.966 0 1.75.784 1.75 1.75v7.5A1.75 1.75 0 0 1 14.25 12h-3.727c.099 1.041.52 1.872 1.292 2.757A.752.752 0 0 1 11.25 16h-6.5a.75.75 0 0 1-.565-1.243c.772-.885 1.192-1.716 1.292-2.757H1.75A1.75 1.75 0 0 1 0 10.25v-7.5C0 1.784.784 1 1.75 1ZM1.75 2.5a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-7.5a.25.25 0 0 0-.25-.25ZM9.018 12H6.982a5.7 5.7 0 0 1-.765 2.5h3.566a5.7 5.7 0 0 1-.765-2.5"/></svg>����������������mkdocs-material-9.6.4/material/templates/.icons/octicons/device-desktop-24.svg����������������������0000664�0000000�0000000�00000001022�14753064456�0027277�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.954 17H2.75A1.75 1.75 0 0 1 1 15.25V3.75C1 2.784 1.784 2 2.75 2h18.5c.966 0 1.75.784 1.75 1.75v11.5A1.75 1.75 0 0 1 21.25 17h-6.204c.171 1.375.805 2.652 1.769 3.757A.752.752 0 0 1 16.25 22h-8.5a.75.75 0 0 1-.565-1.243c.964-1.105 1.598-2.382 1.769-3.757M21.5 3.75a.25.25 0 0 0-.25-.25H2.75a.25.25 0 0 0-.25.25v11.5c0 .138.112.25.25.25h18.5a.25.25 0 0 0 .25-.25ZM13.537 17h-3.074c-.126 1.266-.564 2.445-1.223 3.5h5.52c-.659-1.055-1.098-2.234-1.223-3.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/device-mobile-16.svg�����������������������0000664�0000000�0000000�00000000527�14753064456�0027107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.75 0h8.5C13.216 0 14 .784 14 1.75v12.5A1.75 1.75 0 0 1 12.25 16h-8.5A1.75 1.75 0 0 1 2 14.25V1.75C2 .784 2.784 0 3.75 0M3.5 1.75v12.5c0 .138.112.25.25.25h8.5a.25.25 0 0 0 .25-.25V1.75a.25.25 0 0 0-.25-.25h-8.5a.25.25 0 0 0-.25.25M8 13a1 1 0 1 1 0-2 1 1 0 0 1 0 2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/device-mobile-24.svg�����������������������0000664�0000000�0000000�00000000655�14753064456�0027110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.25 5.25A.75.75 0 0 1 11 4.5h2A.75.75 0 0 1 13 6h-2a.75.75 0 0 1-.75-.75M12 19.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2"/><path d="M4 2.75C4 1.784 4.784 1 5.75 1h12.5c.966 0 1.75.784 1.75 1.75v18.5A1.75 1.75 0 0 1 18.25 23H5.75A1.75 1.75 0 0 1 4 21.25Zm1.75-.25a.25.25 0 0 0-.25.25v18.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25V2.75a.25.25 0 0 0-.25-.25Z"/></svg>�����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/devices-16.svg�����������������������������0000664�0000000�0000000�00000001201�14753064456�0026013�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 2.75C0 1.784.784 1 1.75 1h12.5c.966 0 1.75.784 1.75 1.75V5a.75.75 0 0 1-1.5 0V2.75a.25.25 0 0 0-.25-.25H1.75a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25H7A.75.75 0 0 1 7 12h-.268a5.7 5.7 0 0 1-.765 2.5H7A.75.75 0 0 1 7 16H4.5a.75.75 0 0 1-.565-1.243c.772-.885 1.193-1.716 1.292-2.757H1.75A1.75 1.75 0 0 1 0 10.25z"/><path d="M10.75 7h3.5c.967 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 14.25 16h-3.5A1.75 1.75 0 0 1 9 14.25v-5.5C9 7.784 9.783 7 10.75 7m-.25 1.75v5.5c0 .138.112.25.25.25h3.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25h-3.5a.25.25 0 0 0-.25.25"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/devices-24.svg�����������������������������0000664�0000000�0000000�00000001215�14753064456�0026017�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 3.75C1 2.784 1.784 2 2.75 2h18.5c.966 0 1.75.784 1.75 1.75v4a.75.75 0 0 1-1.5 0v-4a.25.25 0 0 0-.25-.25H2.75a.25.25 0 0 0-.25.25v11.5c0 .138.112.25.25.25h9a.75.75 0 0 1 0 1.5h-1.287c-.126 1.266-.564 2.445-1.223 3.5h2.51a.75.75 0 0 1 0 1.5h-4a.75.75 0 0 1-.565-1.243c.964-1.105 1.598-2.382 1.769-3.757H2.75A1.75 1.75 0 0 1 1 15.25z"/><path d="M14 11.75c0-.967.783-1.75 1.75-1.75h5.5c.966 0 1.75.783 1.75 1.75v8.5A1.75 1.75 0 0 1 21.25 22h-5.5A1.75 1.75 0 0 1 14 20.25Zm1.75-.25a.25.25 0 0 0-.25.25v8.5c0 .138.112.25.25.25h5.5a.25.25 0 0 0 .25-.25v-8.5a.25.25 0 0 0-.25-.25Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/diamond-16.svg�����������������������������0000664�0000000�0000000�00000000542�14753064456�0026013�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M.527 9.237a1.75 1.75 0 0 1 0-2.474L6.777.512a1.75 1.75 0 0 1 2.475 0l6.251 6.25a1.75 1.75 0 0 1 0 2.475l-6.25 6.251a1.75 1.75 0 0 1-2.475 0zm1.06-1.414a.25.25 0 0 0 0 .354l6.251 6.25a.25.25 0 0 0 .354 0l6.25-6.25a.25.25 0 0 0 0-.354l-6.25-6.25a.25.25 0 0 0-.354 0l-6.25 6.25Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/diamond-24.svg�����������������������������0000664�0000000�0000000�00000000542�14753064456�0026012�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.527 13.237a1.75 1.75 0 0 1 0-2.474l9.272-9.273a1.75 1.75 0 0 1 2.475 0l9.272 9.273a1.75 1.75 0 0 1 0 2.474l-9.272 9.272a1.75 1.75 0 0 1-2.475 0Zm1.06-1.414a.25.25 0 0 0 0 .354l9.273 9.272a.25.25 0 0 0 .353 0l9.272-9.272a.25.25 0 0 0 0-.354l-9.272-9.272a.25.25 0 0 0-.353 0Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/diff-16.svg��������������������������������0000664�0000000�0000000�00000000357�14753064456�0025314�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8.75 1.75V5H12a.75.75 0 0 1 0 1.5H8.75v3.25a.75.75 0 0 1-1.5 0V6.5H4A.75.75 0 0 1 4 5h3.25V1.75a.75.75 0 0 1 1.5 0M4 13h8a.75.75 0 0 1 0 1.5H4A.75.75 0 0 1 4 13"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/diff-24.svg��������������������������������0000664�0000000�0000000�00000000462�14753064456�0025310�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.25 3.5a.75.75 0 0 1 .75.75V8.5h4.25a.75.75 0 0 1 0 1.5H13v4.25a.75.75 0 0 1-1.5 0V10H7.25a.75.75 0 0 1 0-1.5h4.25V4.25a.75.75 0 0 1 .75-.75M6.562 19.25a.75.75 0 0 1 .75-.75h9.938a.75.75 0 0 1 0 1.5H7.312a.75.75 0 0 1-.75-.75"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/diff-added-16.svg��������������������������0000664�0000000�0000000�00000000700�14753064456�0026343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2.75 1h10.5c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0 1 13.25 15H2.75A1.75 1.75 0 0 1 1 13.25V2.75C1 1.784 1.784 1 2.75 1m10.5 1.5H2.75a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25V2.75a.25.25 0 0 0-.25-.25M8 4a.75.75 0 0 1 .75.75v2.5h2.5a.75.75 0 0 1 0 1.5h-2.5v2.5a.75.75 0 0 1-1.5 0v-2.5h-2.5a.75.75 0 0 1 0-1.5h2.5v-2.5A.75.75 0 0 1 8 4"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/diff-added-24.svg��������������������������0000664�0000000�0000000�00000000661�14753064456�0026350�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.75 7a.75.75 0 0 0-1.5 0v4.25H7a.75.75 0 0 0 0 1.5h4.25V17a.75.75 0 0 0 1.5 0v-4.25H17a.75.75 0 0 0 0-1.5h-4.25z"/><path d="M3.75 2A1.75 1.75 0 0 0 2 3.75v16.5c0 .966.784 1.75 1.75 1.75h16.5A1.75 1.75 0 0 0 22 20.25V3.75A1.75 1.75 0 0 0 20.25 2zM3.5 3.75a.25.25 0 0 1 .25-.25h16.5a.25.25 0 0 1 .25.25v16.5a.25.25 0 0 1-.25.25H3.75a.25.25 0 0 1-.25-.25z"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/diff-ignored-16.svg������������������������0000664�0000000�0000000�00000000653�14753064456�0026740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M13.25 1c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0 1 13.25 15H2.75A1.75 1.75 0 0 1 1 13.25V2.75C1 1.784 1.784 1 2.75 1ZM2.75 2.5a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25V2.75a.25.25 0 0 0-.25-.25Zm8.53 3.28-5.5 5.5a.749.749 0 0 1-1.275-.326.75.75 0 0 1 .215-.734l5.5-5.5a.75.75 0 0 1 1.042.018.75.75 0 0 1 .018 1.042"/></svg>�������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/diff-ignored-24.svg������������������������0000664�0000000�0000000�00000000573�14753064456�0026740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.75 2A1.75 1.75 0 0 0 2 3.75v16.5c0 .966.784 1.75 1.75 1.75h16.5A1.75 1.75 0 0 0 22 20.25V3.75A1.75 1.75 0 0 0 20.25 2zM3.5 3.75a.25.25 0 0 1 .25-.25h16.5a.25.25 0 0 1 .25.25v16.5a.25.25 0 0 1-.25.25H3.75a.25.25 0 0 1-.25-.25zm4.737 11.233a.75.75 0 0 0 1.061 1.06l7.027-7.026a.75.75 0 0 0-1.06-1.06z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/diff-modified-16.svg�����������������������0000664�0000000�0000000�00000000534�14753064456�0027067�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M13.25 1c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0 1 13.25 15H2.75A1.75 1.75 0 0 1 1 13.25V2.75C1 1.784 1.784 1 2.75 1ZM2.75 2.5a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25V2.75a.25.25 0 0 0-.25-.25ZM8 10a2 2 0 1 1-.001-3.999A2 2 0 0 1 8 10"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/diff-modified-24.svg�����������������������0000664�0000000�0000000�00000000552�14753064456�0027066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3.75C2 2.784 2.784 2 3.75 2h16.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25zm1.75-.25a.25.25 0 0 0-.25.25v16.5c0 .138.112.25.25.25h16.5a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25z"/><path d="M14.5 12a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/diff-removed-16.svg������������������������0000664�0000000�0000000�00000000553�14753064456�0026751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M13.25 1c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0 1 13.25 15H2.75A1.75 1.75 0 0 1 1 13.25V2.75C1 1.784 1.784 1 2.75 1ZM2.75 2.5a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25V2.75a.25.25 0 0 0-.25-.25Zm8.5 6.25h-6.5a.75.75 0 0 1 0-1.5h6.5a.75.75 0 0 1 0 1.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/diff-removed-24.svg������������������������0000664�0000000�0000000�00000000567�14753064456�0026755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.313 11.25a.75.75 0 0 0 0 1.5h9.937a.75.75 0 0 0 0-1.5z"/><path d="M3.75 2A1.75 1.75 0 0 0 2 3.75v16.5c0 .966.784 1.75 1.75 1.75h16.5A1.75 1.75 0 0 0 22 20.25V3.75A1.75 1.75 0 0 0 20.25 2zM3.5 3.75a.25.25 0 0 1 .25-.25h16.5a.25.25 0 0 1 .25.25v16.5a.25.25 0 0 1-.25.25H3.75a.25.25 0 0 1-.25-.25z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/diff-renamed-16.svg������������������������0000664�0000000�0000000�00000000765�14753064456�0026730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M13.25 1c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0 1 13.25 15H2.75A1.75 1.75 0 0 1 1 13.25V2.75C1 1.784 1.784 1 2.75 1ZM2.75 2.5a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25V2.75a.25.25 0 0 0-.25-.25Zm9.03 6.03-3.25 3.25a.749.749 0 0 1-1.275-.326.75.75 0 0 1 .215-.734l1.97-1.97H4.75a.75.75 0 0 1 0-1.5h4.69L7.47 5.28a.75.75 0 0 1 .018-1.042.75.75 0 0 1 1.042-.018l3.25 3.25a.75.75 0 0 1 0 1.06"/></svg>�����������mkdocs-material-9.6.4/material/templates/.icons/octicons/diff-renamed-24.svg������������������������0000664�0000000�0000000�00000000706�14753064456�0026722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.75 12.75v3.347a.25.25 0 0 0 .436.166l3.672-4.096a.25.25 0 0 0 0-.334l-3.672-4.096a.25.25 0 0 0-.436.166v3.347h-7a.75.75 0 0 0 0 1.5z"/><path d="M2 3.75C2 2.784 2.784 2 3.75 2h16.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25zm1.75-.25a.25.25 0 0 0-.25.25v16.5c0 .138.112.25.25.25h16.5a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25z"/></svg>����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/discussion-closed-16.svg�������������������0000664�0000000�0000000�00000001400�14753064456�0030024�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 2.75C0 1.783.784 1 1.75 1h8.5c.967 0 1.75.783 1.75 1.75v5.5A1.75 1.75 0 0 1 10.25 10H7.061l-2.574 2.573A1.457 1.457 0 0 1 2 11.543V10h-.25A1.75 1.75 0 0 1 0 8.25Zm1.75-.25a.25.25 0 0 0-.25.25v5.5c0 .138.112.25.25.25h1a.75.75 0 0 1 .75.75v2.189L6.22 8.72a.75.75 0 0 1 .53-.22h3.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25Zm12.5 2h-.5a.75.75 0 0 1 0-1.5h.5c.967 0 1.75.783 1.75 1.75v5.5A1.75 1.75 0 0 1 14.25 12H14v1.543a1.457 1.457 0 0 1-2.487 1.03L9.22 12.28a.749.749 0 1 1 1.06-1.06l2.22 2.219V11.25a.75.75 0 0 1 .75-.75h1a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25m-5.47.28-3 3a.747.747 0 0 1-1.06 0l-1.5-1.5a.749.749 0 1 1 1.06-1.06l.97.969L7.72 3.72a.749.749 0 1 1 1.06 1.06"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/discussion-closed-24.svg�������������������0000664�0000000�0000000�00000001531�14753064456�0030030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 2.75C0 1.783.784 1 1.75 1h12.5c.967 0 1.75.783 1.75 1.75v9.5A1.75 1.75 0 0 1 14.25 14H8.061l-2.574 2.573A1.457 1.457 0 0 1 3 15.543V14H1.75A1.75 1.75 0 0 1 0 12.25Zm1.75-.25a.25.25 0 0 0-.25.25v9.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.189l2.72-2.719a.75.75 0 0 1 .53-.22h6.5a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25Zm20.5 6h-3.5a.75.75 0 0 1 0-1.5h3.5c.966 0 1.75.784 1.75 1.75v9.5A1.75 1.75 0 0 1 22.25 20H21v1.543a1.457 1.457 0 0 1-2.487 1.03L15.939 20H10.75A1.75 1.75 0 0 1 9 18.25v-1.465a.75.75 0 0 1 1.5 0v1.465c0 .138.112.25.25.25h5.5c.199 0 .39.079.53.22l2.72 2.719V19.25a.75.75 0 0 1 .75-.75h2a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25m-9.72-3.22-5 5a.747.747 0 0 1-1.06 0l-2.5-2.5a.749.749 0 1 1 1.06-1.06L7 8.689l4.47-4.469a.749.749 0 1 1 1.06 1.06"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/discussion-duplicate-16.svg����������������0000664�0000000�0000000�00000001342�14753064456�0030532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 2.75C0 1.783.784 1 1.75 1h8.5c.967 0 1.75.783 1.75 1.75v5.5A1.75 1.75 0 0 1 10.25 10H7.061l-2.574 2.573A1.457 1.457 0 0 1 2 11.543V10h-.25A1.75 1.75 0 0 1 0 8.25Zm1.75-.25a.25.25 0 0 0-.25.25v5.5c0 .138.112.25.25.25h1a.75.75 0 0 1 .75.75v2.189L6.22 8.72a.75.75 0 0 1 .53-.22h3.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25Zm12.5 2h-.5a.75.75 0 0 1 0-1.5h.5c.967 0 1.75.783 1.75 1.75v5.5A1.75 1.75 0 0 1 14.25 12H14v1.543a1.457 1.457 0 0 1-2.487 1.03L9.22 12.28a.749.749 0 1 1 1.06-1.06l2.22 2.219V11.25a.75.75 0 0 1 .75-.75h1a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25m-6.282.03L5.03 7.468a.749.749 0 1 1-1.06-1.061L6.907 3.47a.75.75 0 0 1 1.061 1.06"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/discussion-duplicate-24.svg����������������0000664�0000000�0000000�00000001454�14753064456�0030535�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 2.75C0 1.783.784 1 1.75 1h12.5c.967 0 1.75.783 1.75 1.75v9.5A1.75 1.75 0 0 1 14.25 14H8.061l-2.574 2.573A1.457 1.457 0 0 1 3 15.543V14H1.75A1.75 1.75 0 0 1 0 12.25Zm1.75-.25a.25.25 0 0 0-.25.25v9.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.189l2.72-2.719a.75.75 0 0 1 .53-.22h6.5a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25Zm20.5 6h-3.5a.75.75 0 0 1 0-1.5h3.5c.966 0 1.75.784 1.75 1.75v9.5A1.75 1.75 0 0 1 22.25 20H21v1.543a1.457 1.457 0 0 1-2.487 1.03L15.939 20H10.75A1.75 1.75 0 0 1 9 18.25v-1.465a.75.75 0 0 1 1.5 0v1.465c0 .138.112.25.25.25h5.5c.199 0 .39.079.53.22l2.72 2.719V19.25a.75.75 0 0 1 .75-.75h2a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25M11.28 5.53l-5 5a.749.749 0 1 1-1.06-1.06l5-5a.749.749 0 1 1 1.06 1.06"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/discussion-outdated-16.svg�����������������0000664�0000000�0000000�00000001407�14753064456�0030373�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 2.75C0 1.783.784 1 1.75 1h8.5c.967 0 1.75.783 1.75 1.75v5.5A1.75 1.75 0 0 1 10.25 10H7.061l-2.574 2.573A1.457 1.457 0 0 1 2 11.543V10h-.25A1.75 1.75 0 0 1 0 8.25Zm1.75-.25a.25.25 0 0 0-.25.25v5.5c0 .138.112.25.25.25h1a.75.75 0 0 1 .75.75v2.189L6.22 8.72a.75.75 0 0 1 .53-.22h3.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25Zm12.5 2h-.5a.75.75 0 0 1 0-1.5h.5c.967 0 1.75.783 1.75 1.75v5.5A1.75 1.75 0 0 1 14.25 12H14v1.543a1.457 1.457 0 0 1-2.487 1.03L9.22 12.28a.749.749 0 1 1 1.06-1.06l2.22 2.219V11.25a.75.75 0 0 1 .75-.75h1a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25M6.5 4v1.492l.466.187.036.015.812.375a.75.75 0 1 1-.628 1.362l-.795-.367-.92-.368A.75.75 0 0 1 5 6V4a.75.75 0 0 1 1.5 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/discussion-outdated-24.svg�����������������0000664�0000000�0000000�00000001552�14753064456�0030373�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 2.75C0 1.783.784 1 1.75 1h12.5c.967 0 1.75.783 1.75 1.75v9.5A1.75 1.75 0 0 1 14.25 14H8.061l-2.574 2.573A1.457 1.457 0 0 1 3 15.543V14H1.75A1.75 1.75 0 0 1 0 12.25Zm1.75-.25a.25.25 0 0 0-.25.25v9.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.189l2.72-2.719a.75.75 0 0 1 .53-.22h6.5a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25Zm20.5 6h-3.5a.75.75 0 0 1 0-1.5h3.5c.966 0 1.75.784 1.75 1.75v9.5A1.75 1.75 0 0 1 22.25 20H21v1.543a1.457 1.457 0 0 1-2.487 1.03L15.939 20H10.75A1.75 1.75 0 0 1 9 18.25v-1.465a.75.75 0 0 1 1.5 0v1.465c0 .138.112.25.25.25h5.5c.199 0 .39.079.53.22l2.72 2.719V19.25a.75.75 0 0 1 .75-.75h2a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25M8.5 4.75v3.14l1.15.488.037.017 1.393.681a.75.75 0 0 1-.66 1.348l-1.374-.673-1.589-.674A.75.75 0 0 1 7 8.386V4.75a.75.75 0 0 1 1.5 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/dot-16.svg���������������������������������0000664�0000000�0000000�00000000230�14753064456�0025160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M4 8a4 4 0 1 1 8 0 4 4 0 0 1-8 0m4-2.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/dot-24.svg���������������������������������0000664�0000000�0000000�00000000234�14753064456�0025163�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18a6 6 0 1 1 0-12 6 6 0 0 1 0 12m0-1.5a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/dot-fill-16.svg����������������������������0000664�0000000�0000000�00000000156�14753064456�0026113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/dot-fill-24.svg����������������������������0000664�0000000�0000000�00000000162�14753064456�0026107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18a6 6 0 1 0 0-12 6 6 0 0 0 0 12"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/download-16.svg����������������������������0000664�0000000�0000000�00000000607�14753064456�0026211�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2.75 14A1.75 1.75 0 0 1 1 12.25v-2.5a.75.75 0 0 1 1.5 0v2.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25v-2.5a.75.75 0 0 1 1.5 0v2.5A1.75 1.75 0 0 1 13.25 14Z"/><path d="M7.25 7.689V2a.75.75 0 0 1 1.5 0v5.689l1.97-1.969a.749.749 0 1 1 1.06 1.06l-3.25 3.25a.75.75 0 0 1-1.06 0L4.22 6.78a.749.749 0 1 1 1.06-1.06z"/></svg>�������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/download-24.svg����������������������������0000664�0000000�0000000�00000000677�14753064456�0026217�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.75 17.25a.75.75 0 0 1 .75.75v2.25c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25V18a.75.75 0 0 1 1.5 0v2.25A1.75 1.75 0 0 1 18.25 22H5.75A1.75 1.75 0 0 1 4 20.25V18a.75.75 0 0 1 .75-.75"/><path d="M5.22 9.97a.75.75 0 0 1 1.06 0l4.97 4.969V2.75a.75.75 0 0 1 1.5 0v12.189l4.97-4.969a.749.749 0 1 1 1.06 1.06l-6.25 6.25a.75.75 0 0 1-1.06 0l-6.25-6.25a.75.75 0 0 1 0-1.06"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/duplicate-16.svg���������������������������0000664�0000000�0000000�00000001232�14753064456�0026347�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M10.5 3a.75.75 0 0 1 .75.75v1h1a.75.75 0 0 1 0 1.5h-1v1a.75.75 0 0 1-1.5 0v-1h-1a.75.75 0 0 1 0-1.5h1v-1A.75.75 0 0 1 10.5 3"/><path d="M6.75 0h7.5C15.216 0 16 .784 16 1.75v7.5A1.75 1.75 0 0 1 14.25 11h-7.5A1.75 1.75 0 0 1 5 9.25v-7.5C5 .784 5.784 0 6.75 0M6.5 1.75v7.5c0 .138.112.25.25.25h7.5a.25.25 0 0 0 .25-.25v-7.5a.25.25 0 0 0-.25-.25h-7.5a.25.25 0 0 0-.25.25"/><path d="M1.75 5A1.75 1.75 0 0 0 0 6.75v7.5C0 15.216.784 16 1.75 16h7.5A1.75 1.75 0 0 0 11 14.25v-1.5a.75.75 0 0 0-1.5 0v1.5a.25.25 0 0 1-.25.25h-7.5a.25.25 0 0 1-.25-.25v-7.5a.25.25 0 0 1 .25-.25h1.5a.75.75 0 0 0 0-1.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/duplicate-24.svg���������������������������0000664�0000000�0000000�00000001317�14753064456�0026352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.513 6a.75.75 0 0 1 .75.75v2h1.987a.75.75 0 0 1 0 1.5h-1.987v2a.75.75 0 1 1-1.5 0v-2H11.75a.75.75 0 0 1 0-1.5h2.013v-2a.75.75 0 0 1 .75-.75"/><path d="M7.024 3.75c0-.966.784-1.75 1.75-1.75H20.25c.966 0 1.75.784 1.75 1.75v11.498a1.75 1.75 0 0 1-1.75 1.75H8.774a1.75 1.75 0 0 1-1.75-1.75Zm1.75-.25a.25.25 0 0 0-.25.25v11.498c0 .139.112.25.25.25H20.25a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25Z"/><path d="M1.995 10.749a1.75 1.75 0 0 1 1.75-1.751H5.25a.75.75 0 1 1 0 1.5H3.745a.25.25 0 0 0-.25.25L3.5 20.25c0 .138.111.25.25.25h9.5a.25.25 0 0 0 .25-.25v-1.51a.75.75 0 1 1 1.5 0v1.51A1.75 1.75 0 0 1 13.25 22h-9.5A1.75 1.75 0 0 1 2 20.25z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/ellipsis-16.svg����������������������������0000664�0000000�0000000�00000000445�14753064456�0026226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 5.75C0 4.784.784 4 1.75 4h12.5c.966 0 1.75.784 1.75 1.75v4.5A1.75 1.75 0 0 1 14.25 12H1.75A1.75 1.75 0 0 1 0 10.25ZM12 7a1 1 0 1 0 0 2 1 1 0 0 0 0-2M7 8a1 1 0 1 0 2 0 1 1 0 0 0-2 0M4 7a1 1 0 1 0 0 2 1 1 0 0 0 0-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/ellipsis-24.svg����������������������������0000664�0000000�0000000�00000000553�14753064456�0026225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 9.75v5.5A1.75 1.75 0 0 1 20.25 17H3.75A1.75 1.75 0 0 1 2 15.25v-5.5C2 8.784 2.784 8 3.75 8h16.5c.966 0 1.75.784 1.75 1.75m-8.75 2.75a1.25 1.25 0 1 0-2.5 0 1.25 1.25 0 0 0 2.5 0m-6.5 1.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5m10.5 0a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/eye-16.svg���������������������������������0000664�0000000�0000000�00000001274�14753064456�0025165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 2c1.981 0 3.671.992 4.933 2.078 1.27 1.091 2.187 2.345 2.637 3.023a1.62 1.62 0 0 1 0 1.798c-.45.678-1.367 1.932-2.637 3.023C11.67 13.008 9.981 14 8 14s-3.671-.992-4.933-2.078C1.797 10.83.88 9.576.43 8.898a1.62 1.62 0 0 1 0-1.798c.45-.677 1.367-1.931 2.637-3.022C4.33 2.992 6.019 2 8 2M1.679 7.932a.12.12 0 0 0 0 .136c.411.622 1.241 1.75 2.366 2.717C5.176 11.758 6.527 12.5 8 12.5s2.825-.742 3.955-1.715c1.124-.967 1.954-2.096 2.366-2.717a.12.12 0 0 0 0-.136c-.412-.621-1.242-1.75-2.366-2.717C10.824 4.242 9.473 3.5 8 3.5s-2.825.742-3.955 1.715c-1.124.967-1.954 2.096-2.366 2.717M8 10a2 2 0 1 1-.001-3.999A2 2 0 0 1 8 10"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/eye-24.svg���������������������������������0000664�0000000�0000000�00000001366�14753064456�0025166�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 12a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0"/><path d="M12 3.5c3.432 0 6.124 1.534 8.054 3.241 1.926 1.703 3.132 3.61 3.616 4.46a1.6 1.6 0 0 1 0 1.598c-.484.85-1.69 2.757-3.616 4.461-1.929 1.706-4.622 3.24-8.054 3.24s-6.124-1.534-8.054-3.24C2.02 15.558.814 13.65.33 12.8a1.6 1.6 0 0 1 0-1.598c.484-.85 1.69-2.757 3.616-4.462C5.875 5.034 8.568 3.5 12 3.5M1.633 11.945a.1.1 0 0 0-.017.055q.001.03.017.056c.441.774 1.551 2.527 3.307 4.08C6.691 17.685 9.045 19 12 19s5.31-1.315 7.06-2.864c1.756-1.553 2.866-3.306 3.307-4.08a.1.1 0 0 0 .017-.056.1.1 0 0 0-.017-.056c-.441-.773-1.551-2.527-3.307-4.08C17.309 6.315 14.955 5 12 5S6.69 6.314 4.94 7.865c-1.756 1.552-2.866 3.306-3.307 4.08"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/eye-closed-16.svg��������������������������0000664�0000000�0000000�00000001546�14753064456�0026436�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M.143 2.31a.75.75 0 0 1 1.047-.167l14.5 10.5a.75.75 0 1 1-.88 1.214l-2.248-1.628C11.346 13.19 9.792 14 8 14c-1.981 0-3.67-.992-4.933-2.078C1.797 10.832.88 9.577.43 8.9a1.62 1.62 0 0 1 0-1.797c.353-.533.995-1.42 1.868-2.305L.31 3.357A.75.75 0 0 1 .143 2.31m1.536 5.622A.12.12 0 0 0 1.657 8q-.001.033.022.068c.412.621 1.242 1.75 2.366 2.717C5.175 11.758 6.527 12.5 8 12.5c1.195 0 2.31-.488 3.29-1.191L9.063 9.695A2 2 0 0 1 6.058 7.52L3.529 5.688a14.2 14.2 0 0 0-1.85 2.244M8 3.5c-.516 0-1.017.09-1.499.251a.75.75 0 1 1-.473-1.423A6.2 6.2 0 0 1 8 2c1.981 0 3.67.992 4.933 2.078 1.27 1.091 2.187 2.345 2.637 3.023a1.62 1.62 0 0 1 0 1.798c-.11.166-.248.365-.41.587a.75.75 0 1 1-1.21-.887c.148-.201.272-.382.371-.53a.12.12 0 0 0 0-.137c-.412-.621-1.242-1.75-2.366-2.717C10.825 4.242 9.473 3.5 8 3.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/eye-closed-24.svg��������������������������0000664�0000000�0000000�00000001562�14753064456�0026433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.052 5.837A9.7 9.7 0 0 1 12 5c2.955 0 5.309 1.315 7.06 2.864 1.756 1.553 2.866 3.307 3.307 4.08a.1.1 0 0 1 .016.055.1.1 0 0 1-.017.06 17 17 0 0 1-1.53 2.218.75.75 0 1 0 1.163.946 18 18 0 0 0 1.67-2.42 1.61 1.61 0 0 0 .001-1.602c-.485-.85-1.69-2.757-3.616-4.46C18.124 5.034 15.432 3.5 12 3.5c-1.695 0-3.215.374-4.552.963a.75.75 0 0 0 .604 1.373Zm11.114 12.15C17.328 19.38 14.933 20.5 12 20.5c-3.432 0-6.125-1.534-8.054-3.24C2.02 15.556.814 13.648.33 12.798a1.6 1.6 0 0 1 .001-1.6A18.3 18.3 0 0 1 3.648 7.01L1.317 5.362a.75.75 0 1 1 .866-1.224l20.5 14.5a.75.75 0 1 1-.866 1.224ZM4.902 7.898c-1.73 1.541-2.828 3.273-3.268 4.044a.1.1 0 0 0-.017.059q-.002.023.016.055c.441.774 1.551 2.527 3.307 4.08C6.69 17.685 9.045 19 12 19c2.334 0 4.29-.82 5.874-1.927l-3.516-2.487a3.5 3.5 0 0 1-5.583-3.949L4.902 7.899Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/feed-discussion-16.svg���������������������0000664�0000000�0000000�00000000330�14753064456�0027457�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16M4 5v5a1 1 0 0 0 1 1h1v1.5a.5.5 0 0 0 .854.354L8.707 11H11a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/feed-forked-16.svg�������������������������0000664�0000000�0000000�00000000434�14753064456�0026553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16M6 6.928a1.75 1.75 0 1 0-1 0V7.5A1.5 1.5 0 0 0 6.5 9h1v1.072a1.75 1.75 0 1 0 1 0V9h1A1.5 1.5 0 0 0 11 7.5v-.572a1.75 1.75 0 1 0-1 0V7.5a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/feed-heart-16.svg��������������������������0000664�0000000�0000000�00000000533�14753064456�0026404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16m2.33-11.5c-1.22 0-1.83.5-2.323 1.136C7.513 5 6.903 4.5 5.682 4.5c-1.028 0-2.169.784-2.169 2.5 0 1.499 1.493 3.433 3.246 4.517.52.321.89.479 1.248.484.357-.005.728-.163 1.247-.484C11.007 10.433 12.5 8.5 12.5 7c0-1.716-1.14-2.5-2.17-2.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/feed-issue-closed-16.svg�������������������0000664�0000000�0000000�00000000337�14753064456�0027702�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0m3.457 6.957a.999.999 0 1 0-1.414-1.414L7.25 8.336 5.957 7.043a.999.999 0 1 0-1.414 1.414l2 2a1 1 0 0 0 1.414 0Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/feed-issue-draft-16.svg��������������������0000664�0000000�0000000�00000001732�14753064456�0027531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0M3.802 7.334a.75.75 0 0 0-1.482-.233 5.8 5.8 0 0 0 0 1.798.749.749 0 1 0 1.482-.233 4.3 4.3 0 0 1 0-1.332M8 2.25a6 6 0 0 0-.899.07.749.749 0 1 0 .233 1.482 4.3 4.3 0 0 1 1.332 0 .75.75 0 0 0 .233-1.482A6 6 0 0 0 8 2.25m-.666 9.948a.75.75 0 0 0-.233 1.482 5.8 5.8 0 0 0 1.798 0 .749.749 0 1 0-.233-1.482 4.3 4.3 0 0 1-1.332 0m6.346-5.097a.749.749 0 1 0-1.482.233 4.3 4.3 0 0 1 0 1.332.75.75 0 0 0 1.482.233 5.8 5.8 0 0 0 0-1.798m-8.178-2.54a.75.75 0 0 0-.882-1.213A5.8 5.8 0 0 0 3.348 4.62a.749.749 0 1 0 1.213.882c.263-.361.58-.678.941-.941m-.941 5.937a.75.75 0 0 0-1.213.882 5.8 5.8 0 0 0 1.272 1.272.749.749 0 1 0 .882-1.213 4.3 4.3 0 0 1-.941-.941m6.819-7.15a.749.749 0 1 0-.882 1.213c.36.263.679.58.941.941a.75.75 0 0 0 1.213-.882 5.8 5.8 0 0 0-1.272-1.272m1.272 8.032a.749.749 0 1 0-1.213-.882c-.262.36-.581.679-.941.941a.75.75 0 0 0 .882 1.213 5.8 5.8 0 0 0 1.272-1.272"/></svg>��������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/feed-issue-open-16.svg���������������������0000664�0000000�0000000�00000000425�14753064456�0027370�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.75 8a4.25 4.25 0 1 1 8.5 0 4.25 4.25 0 0 1-8.5 0M9.5 8a1.5 1.5 0 1 0-3.001.001A1.5 1.5 0 0 0 9.5 8"/><path d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8m8-5.75a5.75 5.75 0 1 0 0 11.5 5.75 5.75 0 1 0 0-11.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/feed-issue-reopen-16.svg�������������������0000664�0000000�0000000�00000001017�14753064456�0027715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17 16"><path d="M.5 8a8 8 0 1 1 16 0 8 8 0 0 1-16 0m3.427-4.323a.25.25 0 0 0-.427.177V6c0 .138.112.25.25.25h2.146a.25.25 0 0 0 .177-.427l-.524-.524a4.003 4.003 0 0 1 6.862 1.858.75.75 0 0 0 1.467-.314 5.502 5.502 0 0 0-9.39-2.605Zm9.573 8.469V10a.25.25 0 0 0-.25-.25h-2.146a.25.25 0 0 0-.177.427l.524.524a4.002 4.002 0 0 1-6.862-1.858.75.75 0 0 0-1.467.314 5.502 5.502 0 0 0 9.39 2.605l.561.561a.25.25 0 0 0 .427-.177M10 8a1.5 1.5 0 1 0-3.001.001A1.5 1.5 0 0 0 10 8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/feed-merged-16.svg�������������������������0000664�0000000�0000000�00000000413�14753064456�0026541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16m.25-11.25A1.75 1.75 0 1 0 6 6.428v3.144a1.75 1.75 0 1 0 1 0V8.236A3 3 0 0 0 9 9h.571a1.75 1.75 0 1 0 0-1H9a2 2 0 0 1-1.957-1.586A1.75 1.75 0 0 0 8.25 4.75"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/feed-person-16.svg�������������������������0000664�0000000�0000000�00000000367�14753064456�0026614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16m.847-8.145a2.502 2.502 0 1 0-1.694 0C5.471 8.261 4 9.775 4 11c0 .395.145.995 1 .995h6c.855 0 1-.6 1-.995 0-1.224-1.47-2.74-3.153-3.145"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/feed-plus-16.svg���������������������������0000664�0000000�0000000�00000000332�14753064456�0026261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0m1.062 4.312a1 1 0 1 0-2 0v2.75h-2.75a1 1 0 0 0 0 2h2.75v2.75a1 1 0 1 0 2 0v-2.75h2.75a1 1 0 1 0 0-2h-2.75Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/feed-public-16.svg�������������������������0000664�0000000�0000000�00000000404�14753064456�0026554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8m4.5.25v3a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1H7v-1.5a1.5 1.5 0 0 1 2.443-1.167.75.75 0 0 0 .943-1.166A3 3 0 0 0 5.5 5.75v1.5a1 1 0 0 0-1 1"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/feed-pull-request-closed-16.svg������������0000664�0000000�0000000�00000000751�14753064456�0031214�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0M5.5 12.25A1.75 1.75 0 0 0 6 8.822V6.928A1.752 1.752 0 0 0 5.5 3.5 1.75 1.75 0 0 0 5 6.928v1.894a1.752 1.752 0 0 0 .5 3.428m5-5a.5.5 0 0 0-.5.5v1.072a1.752 1.752 0 0 0 .5 3.428 1.75 1.75 0 0 0 .5-3.428V7.75a.5.5 0 0 0-.5-.5m1.255-2.763a.5.5 0 0 0-.707-.707l-.53.531-.531-.531a.5.5 0 0 0-.707.707l.531.531-.531.53a.5.5 0 0 0 .707.707l.531-.53.53.53a.5.5 0 0 0 .707-.707l-.53-.53Z"/></svg>�����������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/feed-pull-request-draft-16.svg�������������0000664�0000000�0000000�00000000642�14753064456�0031042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8m7.25 2.5c0-.793-.527-1.462-1.25-1.678V6.928A1.752 1.752 0 0 0 5.5 3.5 1.75 1.75 0 0 0 5 6.928v1.894a1.752 1.752 0 0 0 .5 3.428 1.75 1.75 0 0 0 1.75-1.75m3.25 1.75a1.75 1.75 0 1 0 .001-3.499 1.75 1.75 0 0 0-.001 3.499m0-4.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5m.75-3.25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0"/></svg>����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/feed-pull-request-open-16.svg��������������0000664�0000000�0000000�00000000726�14753064456�0030706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8m6.75 2.5c0-.793-.527-1.462-1.25-1.678V6.928A1.752 1.752 0 0 0 5 3.5a1.75 1.75 0 0 0-.5 3.428v1.894A1.752 1.752 0 0 0 5 12.25a1.75 1.75 0 0 0 1.75-1.75m3.25-5h.25a.5.5 0 0 1 .5.5v2.822a1.752 1.752 0 0 0 .5 3.428 1.75 1.75 0 0 0 .5-3.428V6a1.5 1.5 0 0 0-1.5-1.5H10V3.129a.25.25 0 0 0-.427-.177L7.702 4.823a.25.25 0 0 0 0 .354l1.871 1.871A.25.25 0 0 0 10 6.871Z"/></svg>������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/feed-repo-16.svg���������������������������0000664�0000000�0000000�00000000540�14753064456�0026244�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16M5.5 4A1.5 1.5 0 0 0 4 5.5v5c0 .828.5 1.5 1 1.5v-1a1 1 0 0 1 1-1h5v1h-1v1h1.5a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.5-.5Zm.5 7.25v2.514a.25.25 0 0 0 .426.178l.898-.888a.25.25 0 0 1 .352 0l.898.888A.25.25 0 0 0 9 13.764V11H6.25a.25.25 0 0 0-.25.25"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/feed-rocket-16.svg�������������������������0000664�0000000�0000000�00000001106�14753064456�0026565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16m3.031-12a4.38 4.38 0 0 0-3.097 1.283l-.23.229q-.235.235-.452.49H5.65a.88.88 0 0 0-.746.417l-.856 1.388a.377.377 0 0 0 .21.556l1.552.477 1.35 1.35.478 1.553a.374.374 0 0 0 .555.21l1.389-.855a.88.88 0 0 0 .416-.746V8.747q.255-.216.49-.452l.23-.23A4.38 4.38 0 0 0 12 4.969v-.093A.876.876 0 0 0 11.124 4Zm-5.107 7.144h-.001a.809.809 0 0 0-1.33-.881c-.395.394-.564 1.258-.62 1.62a.12.12 0 0 0 .035.108.12.12 0 0 0 .108.035c.362-.056 1.226-.225 1.62-.619a.8.8 0 0 0 .188-.263"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/feed-star-16.svg���������������������������0000664�0000000�0000000�00000000566�14753064456�0026260�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16m.252-12.932a.476.476 0 0 0-.682.195l-1.2 2.432-2.684.39a.477.477 0 0 0-.266.816l1.944 1.892-.46 2.674a.479.479 0 0 0 .694.504L8 10.709l2.4 1.261a.478.478 0 0 0 .694-.504l-.458-2.673L12.578 6.9a.479.479 0 0 0-.265-.815l-2.685-.39-1.2-2.432a.47.47 0 0 0-.176-.195"/></svg>������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/feed-tag-16.svg����������������������������0000664�0000000�0000000�00000000505�14753064456�0026053�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.22 6.5a.72.72 0 1 1-1.44 0 .72.72 0 0 1 1.44 0"/><path d="M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16M4 5v3.38c.001.397.159.778.44 1.059l3.211 3.213a1.2 1.2 0 0 0 1.698 0l3.303-3.303a1.2 1.2 0 0 0 0-1.698L9.439 4.44A1.5 1.5 0 0 0 8.379 4H5a1 1 0 0 0-1 1"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/feed-trophy-16.svg�������������������������0000664�0000000�0000000�00000000703�14753064456�0026625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M11 5h1v1.146a1 1 0 0 1-.629.928L11 7.223zM5 7.223l-.371-.149A1 1 0 0 1 4 6.146V5h1z"/><path d="M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16M3 5v1.146a2 2 0 0 0 1.257 1.858l.865.346a3 3 0 0 0 2.294 2.093C7.22 11.404 6.658 12 5.502 12H5.5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1c-1.158 0-1.72-.595-1.916-1.557a3 3 0 0 0 2.294-2.094l.865-.346A2 2 0 0 0 13 6.146V5a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1"/></svg>�������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-16.svg��������������������������������0000664�0000000�0000000�00000000642�14753064456�0025320�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914z"/></svg>����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-24.svg��������������������������������0000664�0000000�0000000�00000000535�14753064456�0025320�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3a2 2 0 0 1 2-2h9.982a2 2 0 0 1 1.414.586l4.018 4.018A2 2 0 0 1 21 7.018V21a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Zm2-.5a.5.5 0 0 0-.5.5v18a.5.5 0 0 0 .5.5h14a.5.5 0 0 0 .5-.5V8.5h-4a2 2 0 0 1-2-2v-4Zm10 0v4a.5.5 0 0 0 .5.5h4a.5.5 0 0 0-.146-.336l-4.018-4.018A.5.5 0 0 0 15 2.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-added-16.svg��������������������������0000664�0000000�0000000�00000001057�14753064456�0026360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V4.664a.25.25 0 0 0-.073-.177l-2.914-2.914a.25.25 0 0 0-.177-.073Zm4.48 3.758a.75.75 0 0 1 .755.745l.01 1.497h1.497a.75.75 0 0 1 0 1.5H9v1.507a.75.75 0 0 1-1.5 0V9.005l-1.502.01a.75.75 0 0 1-.01-1.5l1.507-.01-.01-1.492a.75.75 0 0 1 .745-.755"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-added-24.svg��������������������������0000664�0000000�0000000�00000000713�14753064456�0026355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8.25a.75.75 0 0 1 .75.75v2.25H15a.75.75 0 0 1 0 1.5h-2.25V15a.75.75 0 0 1-1.5 0v-2.25H9a.75.75 0 0 1 0-1.5h2.25V9a.75.75 0 0 1 .75-.75"/><path d="M3 3a2 2 0 0 1 2-2h9.982a2 2 0 0 1 1.414.586l4.018 4.018A2 2 0 0 1 21 7.018V21a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2zm2-.5a.5.5 0 0 0-.5.5v18a.5.5 0 0 0 .5.5h14a.5.5 0 0 0 .5-.5V7.018a.5.5 0 0 0-.146-.354l-4.018-4.018a.5.5 0 0 0-.354-.146z"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-badge-16.svg��������������������������0000664�0000000�0000000�00000001171�14753064456�0026356�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2.75 1.5a.25.25 0 0 0-.25.25v11.5c0 .138.112.25.25.25h3.5a.75.75 0 0 1 0 1.5h-3.5A1.75 1.75 0 0 1 1 13.25V1.75C1 .784 1.784 0 2.75 0h8a1.75 1.75 0 0 1 1.508.862.75.75 0 1 1-1.289.768.25.25 0 0 0-.219-.13z"/><path d="M8 7a3.999 3.999 0 0 1 7.605-1.733 4 4 0 0 1-1.115 4.863l.995 4.973a.75.75 0 0 1-.991.852l-2.409-.876a.25.25 0 0 0-.17 0l-2.409.876a.75.75 0 0 1-.991-.852l.994-4.973A4 4 0 0 1 8 7m4-2.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5m0 6.5c-.373 0-.745-.051-1.104-.154l-.649 3.243 1.155-.42c.386-.14.81-.14 1.196 0l1.155.42-.649-3.243A4 4 0 0 1 12 11"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-badge-24.svg��������������������������0000664�0000000�0000000�00000001226�14753064456�0026356�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2.5a.5.5 0 0 0-.5.5v18a.5.5 0 0 0 .5.5h6a.75.75 0 0 1 0 1.5H4a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h10.982a2 2 0 0 1 1.414.586l.064.064.01.008.31.312a.75.75 0 0 1-1.06 1.06l-.078-.078-.004-.003-.093-.093c-.003-.003 0 0 0 0l-.21-.21a.5.5 0 0 0-.353-.146z"/><path d="M18 6.25a4.25 4.25 0 1 0 0 8.5 4.25 4.25 0 0 0 0-8.5m-5.75 4.25a5.75 5.75 0 1 1 11.5 0 5.75 5.75 0 0 1-11.5 0"/><path d="m21.283 14.866 1.455 8a.75.75 0 0 1-1.002.836l-3.296-1.24a1.25 1.25 0 0 0-.88 0l-3.296 1.24a.75.75 0 0 1-1.002-.836l1.455-8 1.475.268-1.217 6.698 2.056-.774a2.75 2.75 0 0 1 1.938 0l2.056.774-1.217-6.698z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-binary-16.svg�������������������������0000664�0000000�0000000�00000001331�14753064456�0026576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M4 1.75C4 .784 4.784 0 5.75 0h5.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v8.586A1.75 1.75 0 0 1 14.25 15h-9a.75.75 0 0 1 0-1.5h9a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 10 4.25V1.5H5.75a.25.25 0 0 0-.25.25v2a.75.75 0 0 1-1.5 0Zm-4 6C0 6.784.784 6 1.75 6h1.5C4.216 6 5 6.784 5 7.75v2.5A1.75 1.75 0 0 1 3.25 12h-1.5A1.75 1.75 0 0 1 0 10.25ZM6.75 6h1.5a.75.75 0 0 1 .75.75v3.75h.75a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h.75v-3h-.75a.75.75 0 0 1 0-1.5m-5 1.5a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h1.5a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25Zm9.75-5.938V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-binary-24.svg�������������������������0000664�0000000�0000000�00000001264�14753064456�0026602�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3a2 2 0 0 1 2-2h9.982a2 2 0 0 1 1.414.586l4.018 4.018A2 2 0 0 1 21 7.018V21a2 2 0 0 1-2 2H4.75a.75.75 0 0 1 0-1.5H19a.5.5 0 0 0 .5-.5V8.5h-4a2 2 0 0 1-2-2v-4H5a.5.5 0 0 0-.5.5v6.25a.75.75 0 0 1-1.5 0Zm12-.5v4a.5.5 0 0 0 .5.5h4a.5.5 0 0 0-.146-.336l-4.018-4.018A.5.5 0 0 0 15 2.5"/><path d="M0 13.75C0 12.784.784 12 1.75 12h3c.966 0 1.75.784 1.75 1.75v4a1.75 1.75 0 0 1-1.75 1.75h-3A1.75 1.75 0 0 1 0 17.75Zm1.75-.25a.25.25 0 0 0-.25.25v4c0 .138.112.25.25.25h3a.25.25 0 0 0 .25-.25v-4a.25.25 0 0 0-.25-.25ZM9 12a.75.75 0 0 0 0 1.5h1.5V18H9a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5H12v-5.25a.75.75 0 0 0-.75-.75z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-code-16.svg���������������������������0000664�0000000�0000000�00000001277�14753064456�0026235�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M4 1.75C4 .784 4.784 0 5.75 0h5.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v8.586A1.75 1.75 0 0 1 14.25 15h-9a.75.75 0 0 1 0-1.5h9a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 10 4.25V1.5H5.75a.25.25 0 0 0-.25.25v2.5a.75.75 0 0 1-1.5 0Zm1.72 4.97a.75.75 0 0 1 1.06 0l2 2a.75.75 0 0 1 0 1.06l-2 2a.749.749 0 0 1-1.275-.326.75.75 0 0 1 .215-.734l1.47-1.47-1.47-1.47a.75.75 0 0 1 0-1.06M3.28 7.78 1.81 9.25l1.47 1.47a.75.75 0 0 1-.018 1.042.75.75 0 0 1-1.042.018l-2-2a.75.75 0 0 1 0-1.06l2-2a.75.75 0 0 1 1.042.018.75.75 0 0 1 .018 1.042m8.22-6.218V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-code-24.svg���������������������������0000664�0000000�0000000�00000001152�14753064456�0026224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3a2 2 0 0 1 2-2h9.982a2 2 0 0 1 1.414.586l4.018 4.018A2 2 0 0 1 21 7.018V21a2 2 0 0 1-2 2H4.75a.75.75 0 0 1 0-1.5H19a.5.5 0 0 0 .5-.5V8.5h-4a2 2 0 0 1-2-2v-4H5a.5.5 0 0 0-.5.5v6.25a.75.75 0 0 1-1.5 0Zm12-.5v4a.5.5 0 0 0 .5.5h4a.5.5 0 0 0-.146-.336l-4.018-4.018A.5.5 0 0 0 15 2.5"/><path d="M4.53 12.24a.75.75 0 0 1-.039 1.06l-2.639 2.45 2.64 2.45a.75.75 0 1 1-1.022 1.1l-3.23-3a.75.75 0 0 1 0-1.1l3.23-3a.75.75 0 0 1 1.06.04m3.979 1.06a.75.75 0 1 1 1.02-1.1l3.231 3a.75.75 0 0 1 0 1.1l-3.23 3a.75.75 0 1 1-1.021-1.1l2.639-2.45-2.64-2.45Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-diff-16.svg���������������������������0000664�0000000�0000000�00000001122�14753064456�0026220�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1 1.75C1 .784 1.784 0 2.75 0h7.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16H2.75A1.75 1.75 0 0 1 1 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25V4.664a.25.25 0 0 0-.073-.177l-2.914-2.914a.25.25 0 0 0-.177-.073ZM8 3.25a.75.75 0 0 1 .75.75v1.5h1.5a.75.75 0 0 1 0 1.5h-1.5v1.5a.75.75 0 0 1-1.5 0V7h-1.5a.75.75 0 0 1 0-1.5h1.5V4A.75.75 0 0 1 8 3.25m-3 8a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-diff-24.svg���������������������������0000664�0000000�0000000�00000000752�14753064456�0026227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.5 6.75a.75.75 0 0 0-1.5 0V9H8.75a.75.75 0 0 0 0 1.5H11v2.25a.75.75 0 0 0 1.5 0V10.5h2.25a.75.75 0 0 0 0-1.5H12.5zM8.75 16a.75.75 0 0 0 0 1.5h6a.75.75 0 0 0 0-1.5z"/><path d="M5 1h9.982a2 2 0 0 1 1.414.586l4.018 4.018A2 2 0 0 1 21 7.018V21a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2m-.5 2v18a.5.5 0 0 0 .5.5h14a.5.5 0 0 0 .5-.5V7.018a.5.5 0 0 0-.146-.354l-4.018-4.018a.5.5 0 0 0-.354-.146H5a.5.5 0 0 0-.5.5"/></svg>����������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-directory-16.svg����������������������0000664�0000000�0000000�00000000624�14753064456�0027322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 2.75C0 1.784.784 1 1.75 1H5c.55 0 1.07.26 1.4.7l.9 1.2a.25.25 0 0 0 .2.1h6.75c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 14.25 15H1.75A1.75 1.75 0 0 1 0 13.25Zm1.75-.25a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-8.5a.25.25 0 0 0-.25-.25H7.5c-.55 0-1.07-.26-1.4-.7l-.9-1.2a.25.25 0 0 0-.2-.1Z"/></svg>������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-directory-24.svg����������������������0000664�0000000�0000000�00000000672�14753064456�0027324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4.75C2 3.784 2.784 3 3.75 3h4.971c.58 0 1.12.286 1.447.765l1.404 2.063c.046.069.124.11.207.11h8.471c.966 0 1.75.783 1.75 1.75V19.25A1.75 1.75 0 0 1 20.25 21H3.75A1.75 1.75 0 0 1 2 19.25Zm1.75-.25a.25.25 0 0 0-.25.25v14.5c0 .138.112.25.25.25h16.5a.25.25 0 0 0 .25-.25V7.687a.25.25 0 0 0-.25-.25h-8.471a1.75 1.75 0 0 1-1.447-.765L8.928 4.61a.25.25 0 0 0-.208-.11Z"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-directory-fill-16.svg�����������������0000664�0000000�0000000�00000000371�14753064456�0030245�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-directory-fill-24.svg�����������������0000664�0000000�0000000�00000000413�14753064456�0030241�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4.75C2 3.784 2.784 3 3.75 3h4.971c.58 0 1.12.286 1.447.765l1.404 2.063c.046.069.124.11.207.11h8.471c.966 0 1.75.783 1.75 1.75V19.25A1.75 1.75 0 0 1 20.25 21H3.75A1.75 1.75 0 0 1 2 19.25Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-directory-open-fill-16.svg������������0000664�0000000�0000000�00000000506�14753064456�0031204�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M.513 1.513A1.75 1.75 0 0 1 1.75 1h3.5c.55 0 1.07.26 1.4.7l.9 1.2a.25.25 0 0 0 .2.1H13a1 1 0 0 1 1 1v.5H2.75a.75.75 0 0 0 0 1.5h11.978a1 1 0 0 1 .994 1.117L15 13.25A1.75 1.75 0 0 1 13.25 15H1.75A1.75 1.75 0 0 1 0 13.25V2.75c0-.464.184-.91.513-1.237"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-directory-open-fill-24.svg������������0000664�0000000�0000000�00000000520�14753064456�0031177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4.75C2 3.784 2.784 3 3.75 3h4.971c.58 0 1.12.286 1.447.765l1.404 2.063a.25.25 0 0 0 .207.11h6.224c.966 0 1.75.783 1.75 1.75v.117H5.408a.848.848 0 0 0 0 1.695h15.484a1 1 0 0 1 .995 1.102L21 19.25c-.106 1.05-.784 1.75-1.75 1.75H3.75A1.75 1.75 0 0 1 2 19.25z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-directory-symlink-16.svg��������������0000664�0000000�0000000�00000001143�14753064456�0031003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 2.75C0 1.784.784 1 1.75 1H5a1.75 1.75 0 0 1 1.4.7l.9 1.2a.25.25 0 0 0 .2.1h6.75c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 14.25 15H5.375a.75.75 0 0 1 0-1.5h8.875a.25.25 0 0 0 .25-.25v-8.5a.25.25 0 0 0-.25-.25H7.5a1.75 1.75 0 0 1-1.4-.7l-.9-1.2a.25.25 0 0 0-.2-.1H1.75a.25.25 0 0 0-.25.25v3a.75.75 0 0 1-1.5 0z"/><path d="M1.5 12.237a2.25 2.25 0 0 1 2.262-2.249L4 9.989v1.938c0 .218.26.331.42.183l2.883-2.677a.25.25 0 0 0 0-.366L4.42 6.39a.25.25 0 0 0-.42.183v1.916l-.229-.001A3.75 3.75 0 0 0 0 12.237v1.013a.75.75 0 0 0 1.5 0z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-directory-symlink-24.svg��������������0000664�0000000�0000000�00000001217�14753064456�0031004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4.75C2 3.784 2.784 3 3.75 3h4.971a1.75 1.75 0 0 1 1.447.765l1.404 2.063a.25.25 0 0 0 .207.11h8.471c.966 0 1.75.783 1.75 1.75V19.25A1.75 1.75 0 0 1 20.25 21H4.75a.75.75 0 0 1 0-1.5h15.5a.25.25 0 0 0 .25-.25V7.688a.25.25 0 0 0-.25-.25h-8.471a1.75 1.75 0 0 1-1.447-.766L8.928 4.609a.25.25 0 0 0-.207-.109H3.75a.25.25 0 0 0-.25.25v3.5a.75.75 0 0 1-1.5 0z"/><path d="m9.308 12.5-2.104-2.236a.75.75 0 1 1 1.092-1.028l3.294 3.5a.75.75 0 0 1 0 1.028l-3.294 3.5a.75.75 0 1 1-1.092-1.028L9.308 14H4.09a2.59 2.59 0 0 0-2.59 2.59v3.16a.75.75 0 0 1-1.5 0v-3.16a4.09 4.09 0 0 1 4.09-4.09z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-media-16.svg��������������������������0000664�0000000�0000000�00000000760�14753064456�0026376�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M16 13.25A1.75 1.75 0 0 1 14.25 15H1.75A1.75 1.75 0 0 1 0 13.25V2.75C0 1.784.784 1 1.75 1h12.5c.966 0 1.75.784 1.75 1.75ZM1.75 2.5a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h.94l.03-.03 6.077-6.078a1.75 1.75 0 0 1 2.412-.06L14.5 10.31V2.75a.25.25 0 0 0-.25-.25Zm12.5 11a.25.25 0 0 0 .25-.25v-.917l-4.298-3.889a.25.25 0 0 0-.344.009L4.81 13.5ZM7 6a2 2 0 1 1-3.999.001A2 2 0 0 1 7 6M5.5 6a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0"/></svg>����������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-media-24.svg��������������������������0000664�0000000�0000000�00000001060�14753064456�0026367�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.75 21.5H2.25A1.75 1.75 0 0 1 .5 19.75V4.25c0-.966.784-1.75 1.75-1.75h19.5c.966 0 1.75.784 1.75 1.75v15.5a1.75 1.75 0 0 1-1.75 1.75M2.25 4a.25.25 0 0 0-.25.25v15.5c0 .138.112.25.25.25h3.178L14 10.977a1.75 1.75 0 0 1 2.506-.032L22 16.44V4.25a.25.25 0 0 0-.25-.25ZM22 19.75v-1.19l-6.555-6.554a.25.25 0 0 0-.18-.073.25.25 0 0 0-.178.077L7.497 20H21.75a.25.25 0 0 0 .25-.25M10.5 9.25a3.25 3.25 0 1 1-6.5 0 3.25 3.25 0 0 1 6.5 0m-1.5 0a1.75 1.75 0 1 0-3.501.001A1.75 1.75 0 0 0 9 9.25"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-moved-16.svg��������������������������0000664�0000000�0000000�00000001010�14753064456�0026416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-3.5a.75.75 0 0 1 0-1.5h3.5a.25.25 0 0 0 .25-.25V4.664a.25.25 0 0 0-.073-.177l-2.914-2.914a.25.25 0 0 0-.177-.073H3.75a.25.25 0 0 0-.25.25v6.5a.75.75 0 0 1-1.5 0z"/><path d="m5.427 15.573 3.146-3.146a.25.25 0 0 0 0-.354L5.427 8.927A.25.25 0 0 0 5 9.104V11.5H.75a.75.75 0 0 0 0 1.5H5v2.396c0 .223.27.335.427.177"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-moved-24.svg��������������������������0000664�0000000�0000000�00000000722�14753064456�0026426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3a2 2 0 0 1 2-2h9.982a2 2 0 0 1 1.414.586l4.018 4.018A2 2 0 0 1 21 7.018V21a2 2 0 0 1-2 2H4.75a.75.75 0 0 1 0-1.5H19a.5.5 0 0 0 .5-.5V7a.5.5 0 0 0-.146-.336l-4.018-4.018A.5.5 0 0 0 15 2.5H5a.5.5 0 0 0-.5.5v6.25a.75.75 0 0 1-1.5 0z"/><path d="M7.21 14.25H1.75a.75.75 0 0 0 0 1.5h5.46s-.008 2.249 0 3.256a.75.75 0 0 0 1.262.542l4.285-4a.75.75 0 0 0 0-1.096l-4.285-4A.75.75 0 0 0 7.21 11z"/></svg>����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-removed-16.svg������������������������0000664�0000000�0000000�00000000706�14753064456�0026760�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V4.664a.25.25 0 0 0-.073-.177l-2.914-2.914a.25.25 0 0 0-.177-.073Zm4.5 6h2.242a.75.75 0 0 1 0 1.5h-2.24l-2.254.015a.75.75 0 0 1-.01-1.5Z"/></svg>����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-removed-24.svg������������������������0000664�0000000�0000000�00000000634�14753064456�0026757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3a2 2 0 0 1 2-2h9.982a2 2 0 0 1 1.414.586l4.018 4.018A2 2 0 0 1 21 7.018V21a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2zm2-.5a.5.5 0 0 0-.5.5v18a.5.5 0 0 0 .5.5h14a.5.5 0 0 0 .5-.5V7.018a.5.5 0 0 0-.146-.354l-4.018-4.018a.5.5 0 0 0-.354-.146z"/><path d="M8 12c0-.414.358-.75.8-.75h6.4c.442 0 .8.336.8.75s-.358.75-.8.75H8.8c-.442 0-.8-.336-.8-.75"/></svg>����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-submodule-16.svg����������������������0000664�0000000�0000000�00000000567�14753064456�0027323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 2.75C0 1.784.784 1 1.75 1H5c.55 0 1.07.26 1.4.7l.9 1.2a.25.25 0 0 0 .2.1h6.75c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 14.25 15H1.75A1.75 1.75 0 0 1 0 13.25Zm9.42 9.36 2.883-2.677a.25.25 0 0 0 0-.366L9.42 6.39a.249.249 0 0 0-.42.183V8.5H4.75a.75.75 0 0 0 0 1.5H9v1.927c0 .218.26.331.42.183"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-submodule-24.svg����������������������0000664�0000000�0000000�00000000675�14753064456�0027322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4.75C2 3.784 2.784 3 3.75 3h4.965a1.75 1.75 0 0 1 1.456.78l1.406 2.109a.25.25 0 0 0 .208.111h8.465c.966 0 1.75.784 1.75 1.75v11.5A1.75 1.75 0 0 1 20.25 21H3.75A1.75 1.75 0 0 1 2 19.25Zm12.78 4.97a.749.749 0 0 0-1.275.326.75.75 0 0 0 .215.734l1.72 1.72H6.75a.75.75 0 0 0 0 1.5h8.69l-1.72 1.72a.749.749 0 0 0 .326 1.275.75.75 0 0 0 .734-.215l3-3a.75.75 0 0 0 0-1.06Z"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-symlink-file-16.svg�������������������0000664�0000000�0000000�00000001147�14753064456�0027722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2 1.75C2 .784 2.784 0 3.75 0h5.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v8.586A1.75 1.75 0 0 1 12.25 15h-7a.75.75 0 0 1 0-1.5h7a.25.25 0 0 0 .25-.25V6H9.75A1.75 1.75 0 0 1 8 4.25V1.5H3.75a.25.25 0 0 0-.25.25V4.5a.75.75 0 0 1-1.5 0Zm-.5 10.487v1.013a.75.75 0 0 1-1.5 0v-1.012a3.75 3.75 0 0 1 3.77-3.749L4 8.49V6.573a.25.25 0 0 1 .42-.183l2.883 2.678a.25.25 0 0 1 0 .366L4.42 12.111a.25.25 0 0 1-.42-.183V9.99l-.238-.003a2.25 2.25 0 0 0-2.262 2.25m8-10.675V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-symlink-file-24.svg�������������������0000664�0000000�0000000�00000001151�14753064456�0027714�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3a2 2 0 0 1 2-2h9.982a2 2 0 0 1 1.414.586l4.018 4.018A2 2 0 0 1 21 7.018V21a2 2 0 0 1-2 2H4.75a.75.75 0 0 1 0-1.5H19a.5.5 0 0 0 .5-.5V8.5h-4a2 2 0 0 1-2-2v-4H5a.5.5 0 0 0-.5.5v6.25a.75.75 0 0 1-1.5 0Zm6.308 11.5-2.104-2.236a.751.751 0 0 1 .369-1.255.75.75 0 0 1 .723.227l3.294 3.5a.75.75 0 0 1 0 1.028l-3.294 3.5a.749.749 0 0 1-1.275-.293.75.75 0 0 1 .183-.735L9.308 16H4.09a2.59 2.59 0 0 0-2.59 2.59v3.16a.75.75 0 0 1-1.5 0v-3.16a4.09 4.09 0 0 1 4.09-4.09ZM15 2.5v4a.5.5 0 0 0 .5.5h4a.5.5 0 0 0-.146-.336l-4.018-4.018A.5.5 0 0 0 15 2.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-zip-16.svg����������������������������0000664�0000000�0000000�00000001723�14753064456�0026121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.5 1.75v11.5c0 .09.048.173.126.217a.75.75 0 0 1-.752 1.298A1.75 1.75 0 0 1 2 13.25V1.75C2 .784 2.784 0 3.75 0h5.586c.464 0 .909.185 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v8.586A1.75 1.75 0 0 1 12.25 15h-.5a.75.75 0 0 1 0-1.5h.5a.25.25 0 0 0 .25-.25V4.664a.25.25 0 0 0-.073-.177L9.513 1.573a.25.25 0 0 0-.177-.073H7.25a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1 0-1.5h-3a.25.25 0 0 0-.25.25m3.75 8.75h.5c.966 0 1.75.784 1.75 1.75v3a.75.75 0 0 1-.75.75h-2.5a.75.75 0 0 1-.75-.75v-3c0-.966.784-1.75 1.75-1.75M6 5.25a.75.75 0 0 1 .75-.75h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 6 5.25m.75 2.25h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1 0-1.5M8 6.75A.75.75 0 0 1 8.75 6h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 8 6.75M8.75 3h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1 0-1.5M8 9.75A.75.75 0 0 1 8.75 9h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 8 9.75m-1 2.5v2.25h1v-2.25a.25.25 0 0 0-.25-.25h-.5a.25.25 0 0 0-.25.25"/></svg>���������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/file-zip-24.svg����������������������������0000664�0000000�0000000�00000002074�14753064456�0026120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 2.5a.5.5 0 0 0-.5.5v18a.5.5 0 0 0 .5.5h1.75a.75.75 0 0 1 0 1.5H5a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h9.982a2 2 0 0 1 1.414.586l4.018 4.018A2 2 0 0 1 21 7.018V21a2 2 0 0 1-2 2h-2.75a.75.75 0 0 1 0-1.5H19a.5.5 0 0 0 .5-.5V7.018a.5.5 0 0 0-.146-.354l-4.018-4.018a.5.5 0 0 0-.354-.146z"/><path d="M11.5 15.75a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75m.75-3.75a.75.75 0 0 0 0 1.5h1a.75.75 0 0 0 0-1.5zm-.75-2.25a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75M12.25 6a.75.75 0 0 0 0 1.5h1a.75.75 0 0 0 0-1.5zm-.75-2.25a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75M9.75 13.5a.75.75 0 0 0 0 1.5h1a.75.75 0 0 0 0-1.5zM9 11.25a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75m.75-3.75a.75.75 0 0 0 0 1.5h1a.75.75 0 0 0 0-1.5zM9 5.25a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1A.75.75 0 0 1 9 5.25M11 17h1a2 2 0 0 1 2 2v4.25a.75.75 0 0 1-.75.75h-3.5a.75.75 0 0 1-.75-.75V19a2 2 0 0 1 2-2m-.5 2v3.5h2V19a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/filter-16.svg������������������������������0000664�0000000�0000000�00000000430�14753064456�0025661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M.75 3h14.5a.75.75 0 0 1 0 1.5H.75a.75.75 0 0 1 0-1.5M3 7.75A.75.75 0 0 1 3.75 7h8.5a.75.75 0 0 1 0 1.5h-8.5A.75.75 0 0 1 3 7.75m3 4a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/filter-24.svg������������������������������0000664�0000000�0000000�00000000436�14753064456�0025666�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.75 6a.75.75 0 0 0 0 1.5h18.5a.75.75 0 0 0 0-1.5zM6 11.75a.75.75 0 0 1 .75-.75h10.5a.75.75 0 0 1 0 1.5H6.75a.75.75 0 0 1-.75-.75m4 4.938a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/filter-remove-16.svg�����������������������0000664�0000000�0000000�00000000722�14753064456�0027160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M14.384 4.57a.75.75 0 0 0 1.061 0 .75.75 0 0 0 0-1.061l-.884-.884.883-.884A.75.75 0 0 0 14.384.68l-.884.884-.884-.884a.75.75 0 0 0-1.06 1.061l.883.884-.883.884a.75.75 0 0 0 1.06 1.061l.884-.884zM.75 3a.75.75 0 0 0 0 1.5H9A.75.75 0 0 0 9 3zM3 7.75A.75.75 0 0 1 3.75 7h8.5a.75.75 0 0 1 0 1.5h-8.5A.75.75 0 0 1 3 7.75m3 4a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75"/></svg>����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/filter-remove-24.svg�����������������������0000664�0000000�0000000�00000000746�14753064456�0027165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.587 9.273a.75.75 0 1 0 1.061-1.061l-1.591-1.591 1.591-1.591a.749.749 0 1 0-1.061-1.06l-1.591 1.591-1.591-1.591a.749.749 0 1 0-1.06 1.06l1.591 1.591-1.591 1.591a.75.75 0 0 0 1.06 1.061l1.591-1.591zM1.75 6a.75.75 0 0 0 0 1.5H14.5a.75.75 0 0 0 0-1.5zM5 11.75a.75.75 0 0 1 .75-.75h10.5a.75.75 0 0 1 0 1.5H5.75a.75.75 0 0 1-.75-.75m4 4.938a.75.75 0 0 1 .75-.75h2.5a.75.75 0 1 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75"/></svg>��������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/fiscal-host-16.svg�������������������������0000664�0000000�0000000�00000001155�14753064456�0026615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M10 8a1 1 0 1 0 0-2 1 1 0 0 0 0 2"/><path d="M4 9.25h-.75a.75.75 0 0 1 0-1.5H4v-1.5h-.75a.75.75 0 0 1 0-1.5H4V3.5a1 1 0 0 1 1-1h7.5a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1ZM5.5 4v.793a.75.75 0 0 1 0 1.414v1.586a.75.75 0 0 1 0 1.414V10H12V4Z"/><path d="M12.75 14.25V14h-9.5v.25a.75.75 0 0 1-1.5 0V14A1.75 1.75 0 0 1 0 12.25V1.75C0 .784.784 0 1.75 0h12.5C15.217 0 16 .784 16 1.75v10.5A1.75 1.75 0 0 1 14.25 14v.25a.75.75 0 0 1-1.5 0M1.75 1.5a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25V1.75a.25.25 0 0 0-.25-.25Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/fiscal-host-24.svg�������������������������0000664�0000000�0000000�00000001134�14753064456�0026611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3.75C2 2.784 2.784 2 3.75 2h16.5c.966 0 1.75.784 1.75 1.75v14.5A1.75 1.75 0 0 1 20.25 20H19v.25a1 1 0 1 1-2 0V20H6.997v.25a1 1 0 1 1-2 0V20H3.75A1.75 1.75 0 0 1 2 18.25zm1.75-.25a.25.25 0 0 0-.25.25v14.5c0 .138.112.25.25.25h16.5a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25zM14.318 12a1 1 0 1 0 0-2 1 1 0 0 0 0 2M6 8.5A.75.75 0 1 0 6 10h1.5v2H6a.75.75 0 0 0 0 1.5h1.5V15A1.5 1.5 0 0 0 9 16.5h8a1.5 1.5 0 0 0 1.5-1.5V7A1.5 1.5 0 0 0 17 5.5H9A1.5 1.5 0 0 0 7.5 7v1.5zM9 10a.75.75 0 0 0 0-1.5V7h8v8H9v-1.5A.75.75 0 0 0 9 12z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/flame-16.svg�������������������������������0000664�0000000�0000000�00000001204�14753064456�0025460�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M9.533.753V.752c.217 2.385 1.463 3.626 2.653 4.81C13.37 6.74 14.498 7.863 14.498 10c0 3.5-3 6-6.5 6S1.5 13.512 1.5 10c0-1.298.536-2.56 1.425-3.286.376-.308.862 0 1.035.454C4.46 8.487 5.581 8.419 6 8c.282-.282.341-.811-.003-1.5C4.34 3.187 7.035.75 8.77.146c.39-.137.726.194.763.607M7.998 14.5c2.832 0 5-1.98 5-4.5 0-1.463-.68-2.19-1.879-3.383l-.036-.037c-1.013-1.008-2.3-2.29-2.834-4.434-.322.256-.63.579-.864.953-.432.696-.621 1.58-.046 2.73.473.947.67 2.284-.278 3.232-.61.61-1.545.84-2.403.633a2.8 2.8 0 0 1-1.436-.874A3.2 3.2 0 0 0 3 10c0 2.53 2.164 4.5 4.998 4.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/flame-24.svg�������������������������������0000664�0000000�0000000�00000001332�14753064456�0025461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.265 1.627c0 3.545 1.869 5.327 3.479 7.021 1.54 1.62 3.006 3.163 3.006 6.102 0 4.812-3.753 8.25-8.565 8.25-4.813 0-8.935-3.421-8.935-8.25 0-2.039.962-4.011 2.509-4.899.305-.175.672.007.803.334C7.563 12.684 8.797 12.64 9.437 12c.388-.387.47-1.116-.004-2.062-2.405-4.812 1.863-8.279 4.2-8.854.336-.082.615.198.632.543M12.185 21.5c4.059 0 7.065-2.84 7.065-6.75 0-2.337-1.093-3.489-2.678-5.158l-.021-.023c-1.44-1.517-3.139-3.351-3.649-6.557a6.15 6.15 0 0 0-1.911 1.76c-.787 1.144-1.147 2.633-.216 4.495.603 1.205.777 2.74-.277 3.794-.657.657-1.762 1.1-2.956.586-.752-.324-1.353-.955-1.838-1.79-.567.706-.954 1.74-.954 2.893 0 3.847 3.288 6.75 7.435 6.75"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/fold-16.svg��������������������������������0000664�0000000�0000000�00000001173�14753064456�0025325�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M10.896 2H8.75V.75a.75.75 0 0 0-1.5 0V2H5.104a.25.25 0 0 0-.177.427l2.896 2.896a.25.25 0 0 0 .354 0l2.896-2.896A.25.25 0 0 0 10.896 2M8.75 15.25a.75.75 0 0 1-1.5 0V14H5.104a.25.25 0 0 1-.177-.427l2.896-2.896a.25.25 0 0 1 .354 0l2.896 2.896a.25.25 0 0 1-.177.427H8.75zm-6.5-6.5a.75.75 0 0 0 0-1.5h-.5a.75.75 0 0 0 0 1.5zM6 8a.75.75 0 0 1-.75.75h-.5a.75.75 0 0 1 0-1.5h.5A.75.75 0 0 1 6 8m2.25.75a.75.75 0 0 0 0-1.5h-.5a.75.75 0 0 0 0 1.5zM12 8a.75.75 0 0 1-.75.75h-.5a.75.75 0 0 1 0-1.5h.5A.75.75 0 0 1 12 8m2.25.75a.75.75 0 0 0 0-1.5h-.5a.75.75 0 0 0 0 1.5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/fold-24.svg��������������������������������0000664�0000000�0000000�00000001656�14753064456�0025332�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 15c.199 0 .389.079.53.22l3.25 3.25a.749.749 0 0 1-.326 1.275.75.75 0 0 1-.734-.215L12 16.81l-2.72 2.72a.75.75 0 0 1-1.042-.018.75.75 0 0 1-.018-1.042l3.25-3.25A.75.75 0 0 1 12 15"/><path d="M12.53 8.78a.75.75 0 0 1-1.06 0L8.22 5.53a.75.75 0 0 1 .018-1.042.75.75 0 0 1 1.042-.018L12 7.19l2.72-2.72a.749.749 0 0 1 1.275.326.75.75 0 0 1-.215.734ZM12 15.75a.75.75 0 0 1 .75.75v5.75a.75.75 0 0 1-1.5 0V16.5a.75.75 0 0 1 .75-.75"/><path d="M12 8.5a.75.75 0 0 1-.75-.75v-6a.75.75 0 0 1 1.5 0v6a.75.75 0 0 1-.75.75M2.75 12a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75m4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75m4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75m4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75m4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75"/></svg>����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/fold-down-16.svg���������������������������0000664�0000000�0000000�00000001005�14753064456�0026264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m8.177 14.323 2.896-2.896a.25.25 0 0 0-.177-.427H8.75V7.764a.75.75 0 1 0-1.5 0V11H5.104a.25.25 0 0 0-.177.427l2.896 2.896a.25.25 0 0 0 .354 0M2.25 5a.75.75 0 0 0 0-1.5h-.5a.75.75 0 0 0 0 1.5zM6 4.25a.75.75 0 0 1-.75.75h-.5a.75.75 0 0 1 0-1.5h.5a.75.75 0 0 1 .75.75M8.25 5a.75.75 0 0 0 0-1.5h-.5a.75.75 0 0 0 0 1.5zM12 4.25a.75.75 0 0 1-.75.75h-.5a.75.75 0 0 1 0-1.5h.5a.75.75 0 0 1 .75.75m2.25.75a.75.75 0 0 0 0-1.5h-.5a.75.75 0 0 0 0 1.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/fold-down-24.svg���������������������������0000664�0000000�0000000�00000001267�14753064456�0026275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 19a.75.75 0 0 1-.53-.22l-3.25-3.25a.749.749 0 0 1 .326-1.275.75.75 0 0 1 .734.215L12 17.19l2.72-2.72a.749.749 0 0 1 1.275.326.75.75 0 0 1-.215.734l-3.25 3.25A.75.75 0 0 1 12 19"/><path d="M12 18a.75.75 0 0 1-.75-.75v-7.5a.75.75 0 0 1 1.5 0v7.5A.75.75 0 0 1 12 18M2.75 6a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1A.75.75 0 0 1 2.75 6m4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1A.75.75 0 0 1 6.75 6m4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75m4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75m4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/fold-up-16.svg�����������������������������0000664�0000000�0000000�00000001010�14753064456�0025735�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.823 1.677 4.927 4.573A.25.25 0 0 0 5.104 5H7.25v3.236a.75.75 0 1 0 1.5 0V5h2.146a.25.25 0 0 0 .177-.427L8.177 1.677a.25.25 0 0 0-.354 0M13.75 11a.75.75 0 0 0 0 1.5h.5a.75.75 0 0 0 0-1.5zm-3.75.75a.75.75 0 0 1 .75-.75h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1-.75-.75M7.75 11a.75.75 0 0 0 0 1.5h.5a.75.75 0 0 0 0-1.5zM4 11.75a.75.75 0 0 1 .75-.75h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1-.75-.75M1.75 11a.75.75 0 0 0 0 1.5h.5a.75.75 0 0 0 0-1.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/fold-up-24.svg�����������������������������0000664�0000000�0000000�00000001234�14753064456�0025744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.47 5.22a.75.75 0 0 1 1.06 0l3.25 3.25a.75.75 0 0 1-.018 1.042.75.75 0 0 1-1.042.018L12 6.81 9.28 9.53a.75.75 0 0 1-1.042-.018.75.75 0 0 1-.018-1.042Z"/><path d="M12 5.5a.75.75 0 0 1 .75.75v8a.75.75 0 0 1-1.5 0v-8A.75.75 0 0 1 12 5.5M2.75 18a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75m4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75m4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75m4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75m4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/gear-16.svg��������������������������������0000664�0000000�0000000�00000004301�14753064456�0025313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 0a8 8 0 0 1 .701.031C9.444.095 9.99.645 10.16 1.29l.288 1.107c.018.066.079.158.212.224q.347.171.668.386c.123.082.233.09.299.071l1.103-.303c.644-.176 1.392.021 1.82.63q.406.578.704 1.218c.315.675.111 1.422-.364 1.891l-.814.806c-.049.048-.098.147-.088.294q.024.386 0 .772c-.01.147.038.246.088.294l.814.806c.475.469.679 1.216.364 1.891a8 8 0 0 1-.704 1.217c-.428.61-1.176.807-1.82.63l-1.102-.302c-.067-.019-.177-.011-.3.071a6 6 0 0 1-.668.386c-.133.066-.194.158-.211.224l-.29 1.106c-.168.646-.715 1.196-1.458 1.26a8 8 0 0 1-1.402 0c-.743-.064-1.289-.614-1.458-1.26l-.289-1.106c-.018-.066-.079-.158-.212-.224a6 6 0 0 1-.668-.386c-.123-.082-.233-.09-.299-.071l-1.103.303c-.644.176-1.392-.021-1.82-.63a8 8 0 0 1-.704-1.218c-.315-.675-.111-1.422.363-1.891l.815-.806c.05-.048.098-.147.088-.294a6 6 0 0 1 0-.772c.01-.147-.038-.246-.088-.294l-.815-.806C.635 6.045.431 5.298.746 4.623a8 8 0 0 1 .704-1.217c.428-.61 1.176-.807 1.82-.63l1.102.302c.067.019.177.011.3-.071q.321-.215.668-.386c.133-.066.194-.158.211-.224l.29-1.106C6.009.645 6.556.095 7.299.03Q7.646 0 8 0m-.571 1.525c-.036.003-.108.036-.137.146l-.289 1.105c-.147.561-.549.967-.998 1.189q-.26.13-.5.29c-.417.278-.97.423-1.529.27l-1.103-.303c-.109-.03-.175.016-.195.045q-.33.47-.573.99c-.014.031-.021.11.059.19l.815.806c.411.406.562.957.53 1.456a5 5 0 0 0 0 .582c.032.499-.119 1.05-.53 1.456l-.815.806c-.081.08-.073.159-.059.19q.243.52.573.989c.02.03.085.076.195.046l1.102-.303c.56-.153 1.113-.008 1.53.27q.242.16.501.29c.447.222.85.629.997 1.189l.289 1.105c.029.109.101.143.137.146a6.6 6.6 0 0 0 1.142 0c.036-.003.108-.036.137-.146l.289-1.105c.147-.561.549-.967.998-1.189q.26-.13.5-.29c.417-.278.97-.423 1.529-.27l1.103.303c.109.029.175-.016.195-.045q.33-.47.573-.99c.014-.031.021-.11-.059-.19l-.815-.806c-.411-.406-.562-.957-.53-1.456a5 5 0 0 0 0-.582c-.032-.499.119-1.05.53-1.456l.815-.806c.081-.08.073-.159.059-.19a6.5 6.5 0 0 0-.573-.989c-.02-.03-.085-.076-.195-.046l-1.102.303c-.56.153-1.113.008-1.53-.27a4.4 4.4 0 0 0-.501-.29c-.447-.222-.85-.629-.997-1.189l-.289-1.105c-.029-.11-.101-.143-.137-.146a6.6 6.6 0 0 0-1.142 0M11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0M9.5 8a1.5 1.5 0 1 0-3.001.001A1.5 1.5 0 0 0 9.5 8"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/gear-24.svg��������������������������������0000664�0000000�0000000�00000005555�14753064456�0025326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 12a4 4 0 1 1-8 0 4 4 0 0 1 8 0m-1.5 0a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0"/><path d="M12 1q.4 0 .797.028c.763.055 1.345.617 1.512 1.304l.352 1.45c.019.078.09.171.225.221q.37.134.728.302c.13.061.246.044.315.002l1.275-.776c.603-.368 1.411-.353 1.99.147q.604.524 1.128 1.129c.501.578.515 1.386.147 1.99l-.776 1.274c-.042.069-.058.185.002.315q.168.357.303.728c.048.135.142.205.22.225l1.45.352c.687.167 1.249.749 1.303 1.512q.057.797 0 1.594c-.054.763-.616 1.345-1.303 1.512l-1.45.352c-.078.019-.171.09-.221.225q-.134.372-.302.728c-.061.13-.044.246-.002.315l.776 1.275c.368.603.353 1.411-.147 1.99q-.524.605-1.129 1.128c-.578.501-1.386.515-1.99.147l-1.274-.776c-.069-.042-.185-.058-.314.002a9 9 0 0 1-.729.303c-.135.048-.205.142-.225.22l-.352 1.45c-.167.687-.749 1.249-1.512 1.303q-.797.057-1.594 0c-.763-.054-1.345-.616-1.512-1.303l-.352-1.45c-.019-.078-.09-.171-.225-.221a8 8 0 0 1-.728-.302c-.13-.061-.246-.044-.315-.002l-1.275.776c-.603.368-1.411.353-1.99-.147q-.605-.524-1.128-1.129c-.501-.578-.515-1.386-.147-1.99l.776-1.274c.042-.069.058-.185-.002-.314a9 9 0 0 1-.303-.729c-.048-.135-.142-.205-.22-.225l-1.45-.352c-.687-.167-1.249-.749-1.304-1.512a11 11 0 0 1 0-1.594c.055-.763.617-1.345 1.304-1.512l1.45-.352c.078-.019.171-.09.221-.225q.134-.372.302-.728c.061-.13.044-.246.002-.315l-.776-1.275c-.368-.603-.353-1.411.147-1.99q.524-.605 1.129-1.128c.578-.501 1.386-.515 1.99-.147l1.274.776c.069.042.185.058.315-.002q.357-.168.728-.303c.135-.048.205-.142.225-.22l.352-1.45c.167-.687.749-1.249 1.512-1.304Q11.598 1 12 1m-.69 1.525c-.055.004-.135.05-.161.161l-.353 1.45a1.83 1.83 0 0 1-1.172 1.277 7 7 0 0 0-.6.249 1.83 1.83 0 0 1-1.734-.074l-1.274-.776c-.098-.06-.186-.036-.228 0a10 10 0 0 0-.976.976c-.036.042-.06.131 0 .228l.776 1.274c.314.529.342 1.18.074 1.734a7 7 0 0 0-.249.6 1.83 1.83 0 0 1-1.278 1.173l-1.45.351c-.11.027-.156.107-.16.162a10 10 0 0 0 0 1.38c.004.055.05.135.161.161l1.45.353a1.83 1.83 0 0 1 1.277 1.172q.111.306.249.6c.268.553.24 1.204-.074 1.733l-.776 1.275c-.06.098-.036.186 0 .228q.453.523.976.976c.042.036.131.06.228 0l1.274-.776a1.83 1.83 0 0 1 1.734-.075q.294.14.6.25a1.83 1.83 0 0 1 1.173 1.278l.351 1.45c.027.11.107.156.162.16a10 10 0 0 0 1.38 0c.055-.004.135-.05.161-.161l.353-1.45a1.83 1.83 0 0 1 1.172-1.278 7 7 0 0 0 .6-.248 1.83 1.83 0 0 1 1.733.074l1.275.776c.098.06.186.036.228 0q.523-.453.976-.976c.036-.042.06-.131 0-.228l-.776-1.275a1.83 1.83 0 0 1-.075-1.733q.14-.294.25-.6a1.83 1.83 0 0 1 1.278-1.173l1.45-.351c.11-.027.156-.107.16-.162a10 10 0 0 0 0-1.38c-.004-.055-.05-.135-.161-.161l-1.45-.353c-.626-.152-1.08-.625-1.278-1.172a7 7 0 0 0-.248-.6 1.83 1.83 0 0 1 .074-1.734l.776-1.274c.06-.098.036-.186 0-.228a10 10 0 0 0-.976-.976c-.042-.036-.131-.06-.228 0l-1.275.776a1.83 1.83 0 0 1-1.733.074 7 7 0 0 0-.6-.249 1.84 1.84 0 0 1-1.173-1.278l-.351-1.45c-.027-.11-.107-.156-.162-.16a10 10 0 0 0-1.38 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/gift-16.svg��������������������������������0000664�0000000�0000000�00000001437�14753064456�0025335�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2 2.75A2.75 2.75 0 0 1 4.75 0c.983 0 1.873.42 2.57 1.232q.404.479.68 1.042.275-.564.68-1.044C9.376.42 10.266 0 11.25 0a2.75 2.75 0 0 1 2.45 4h.55c.966 0 1.75.784 1.75 1.75v2c0 .698-.409 1.301-1 1.582v4.918A1.75 1.75 0 0 1 13.25 16H2.75A1.75 1.75 0 0 1 1 14.25V9.332C.409 9.05 0 8.448 0 7.75v-2C0 4.784.784 4 1.75 4h.55c-.192-.375-.3-.8-.3-1.25M7.25 9.5H2.5v4.75c0 .138.112.25.25.25h4.5Zm1.5 0v5h4.5a.25.25 0 0 0 .25-.25V9.5Zm0-4V8h5.5a.25.25 0 0 0 .25-.25v-2a.25.25 0 0 0-.25-.25Zm-7 0a.25.25 0 0 0-.25.25v2c0 .138.112.25.25.25h5.5V5.5zm3-4a1.25 1.25 0 0 0 0 2.5h2.309c-.233-.818-.542-1.401-.878-1.793-.43-.502-.915-.707-1.431-.707M8.941 4h2.309a1.25 1.25 0 0 0 0-2.5c-.516 0-1 .205-1.43.707-.337.392-.646.975-.879 1.793"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/gift-24.svg��������������������������������0000664�0000000�0000000�00000001371�14753064456�0025331�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.75 3.75A3.75 3.75 0 0 1 7.5 0c1.455 0 3.436.901 4.5 3.11C13.064.901 15.044 0 16.5 0a3.75 3.75 0 0 1 3 6h1.75c.966 0 1.75.784 1.75 1.75v2.5c0 .698-.409 1.301-1 1.582v8.418A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25v-8.418c-.591-.282-1-.884-1-1.582v-2.5C1 6.784 1.784 6 2.75 6H4.5a3.73 3.73 0 0 1-.75-2.25M20.5 12h-7.75v8.5h7.5a.25.25 0 0 0 .25-.25Zm-9.25 8.5V12H3.5v8.25c0 .138.112.25.25.25Zm10-10a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25h-8.5v3Zm-18.5 0h8.5v-3h-8.5a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25m16-6.75A2.25 2.25 0 0 0 16.5 1.5c-1.15 0-3.433 1.007-3.72 4.5h3.72a2.25 2.25 0 0 0 2.25-2.25M11.22 6c-.287-3.493-2.57-4.5-3.72-4.5a2.25 2.25 0 1 0 0 4.5Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/git-branch-16.svg��������������������������0000664�0000000�0000000�00000000635�14753064456�0026421�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M9.5 3.25a2.25 2.25 0 1 1 3 2.122V6A2.5 2.5 0 0 1 10 8.5H6a1 1 0 0 0-1 1v1.128a2.251 2.251 0 1 1-1.5 0V5.372a2.25 2.25 0 1 1 1.5 0v1.836A2.5 2.5 0 0 1 6 7h4a1 1 0 0 0 1-1v-.628A2.25 2.25 0 0 1 9.5 3.25m-6 0a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0m8.25-.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5M4.25 12a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5"/></svg>���������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/git-branch-24.svg��������������������������0000664�0000000�0000000�00000001200�14753064456�0026405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 4.75a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0M2.5 19.25a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0m0-14.5a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0M5.75 6.5a1.75 1.75 0 1 0-.001-3.501A1.75 1.75 0 0 0 5.75 6.5m0 14.5a1.75 1.75 0 1 0-.001-3.501A1.75 1.75 0 0 0 5.75 21m12.5-14.5a1.75 1.75 0 1 0-.001-3.501A1.75 1.75 0 0 0 18.25 6.5"/><path d="M5.75 16.75A.75.75 0 0 1 5 16V8a.75.75 0 0 1 1.5 0v8a.75.75 0 0 1-.75.75"/><path d="M17.5 8.75v-1H19v1a3.75 3.75 0 0 1-3.75 3.75h-7a1.75 1.75 0 0 0-1.75 1.75H5A3.25 3.25 0 0 1 8.25 11h7a2.25 2.25 0 0 0 2.25-2.25"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/git-commit-16.svg��������������������������0000664�0000000�0000000�00000000355�14753064456�0026453�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M11.93 8.5a4.002 4.002 0 0 1-7.86 0H.75a.75.75 0 0 1 0-1.5h3.32a4.002 4.002 0 0 1 7.86 0h3.32a.75.75 0 0 1 0 1.5Zm-1.43-.75a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/git-commit-24.svg��������������������������0000664�0000000�0000000�00000000370�14753064456�0026447�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.944 11h4.306a.75.75 0 0 1 0 1.5h-4.306a5.001 5.001 0 0 1-9.888 0H2.75a.75.75 0 0 1 0-1.5h4.306a5.001 5.001 0 0 1 9.888 0m-1.444.75a3.5 3.5 0 1 0-7 0 3.5 3.5 0 0 0 7 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/git-compare-16.svg�������������������������0000664�0000000�0000000�00000001001�14753064456�0026576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M9.573.677A.25.25 0 0 1 10 .854V2.5h1A2.5 2.5 0 0 1 13.5 5v5.628a2.251 2.251 0 1 1-1.5 0V5a1 1 0 0 0-1-1h-1v1.646a.25.25 0 0 1-.427.177L7.177 3.427a.25.25 0 0 1 0-.354ZM6 12v-1.646a.25.25 0 0 1 .427-.177l2.396 2.396a.25.25 0 0 1 0 .354l-2.396 2.396A.25.25 0 0 1 6 15.146V13.5H5A2.5 2.5 0 0 1 2.5 11V5.372a2.25 2.25 0 1 1 1.5 0V11a1 1 0 0 0 1 1ZM4 3.25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0M12.75 12a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/git-compare-24.svg�������������������������0000664�0000000�0000000�00000001452�14753064456�0026607�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 19.25a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0m3.25-1.75a1.75 1.75 0 1 0 .001 3.501 1.75 1.75 0 0 0-.001-3.501"/><path d="M13.905 1.72a.75.75 0 0 1 0 1.06L12.685 4h4.065a3.75 3.75 0 0 1 3.75 3.75v8.75a.75.75 0 0 1-1.5 0V7.75a2.25 2.25 0 0 0-2.25-2.25h-4.064l1.22 1.22a.75.75 0 0 1-1.061 1.06l-2.5-2.5a.75.75 0 0 1 0-1.06l2.5-2.5a.75.75 0 0 1 1.06 0M7.5 4.75a3.25 3.25 0 1 1-6.5 0 3.25 3.25 0 0 1 6.5 0M4.25 6.5a1.75 1.75 0 1 0-.001-3.501A1.75 1.75 0 0 0 4.25 6.5"/><path d="M10.095 22.28a.75.75 0 0 1 0-1.06l1.22-1.22H7.25a3.75 3.75 0 0 1-3.75-3.75V7.5a.75.75 0 0 1 1.5 0v8.75a2.25 2.25 0 0 0 2.25 2.25h4.064l-1.22-1.22a.748.748 0 0 1 .332-1.265.75.75 0 0 1 .729.205l2.5 2.5a.75.75 0 0 1 0 1.06l-2.5 2.5a.75.75 0 0 1-1.06 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/git-merge-16.svg���������������������������0000664�0000000�0000000�00000000541�14753064456�0026257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M5.45 5.154A4.25 4.25 0 0 0 9.25 7.5h1.378a2.251 2.251 0 1 1 0 1.5H9.25A5.73 5.73 0 0 1 5 7.123v3.505a2.25 2.25 0 1 1-1.5 0V5.372a2.25 2.25 0 1 1 1.95-.218M4.25 13.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5m8.5-4.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5M5 3.25a.75.75 0 1 0 0 .005z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/git-merge-24.svg���������������������������0000664�0000000�0000000�00000001103�14753064456�0026251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 13.25a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0m-12.5 6a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0m0-14.5a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0M5.75 6.5a1.75 1.75 0 1 0-.001-3.501A1.75 1.75 0 0 0 5.75 6.5m0 14.5a1.75 1.75 0 1 0-.001-3.501A1.75 1.75 0 0 0 5.75 21m12.5-6a1.75 1.75 0 1 0-.001-3.501A1.75 1.75 0 0 0 18.25 15"/><path d="M6.5 7.25c0 2.9 2.35 5.25 5.25 5.25h4.5V14h-4.5A6.75 6.75 0 0 1 5 7.25Z"/><path d="M5.75 16.75A.75.75 0 0 1 5 16V8a.75.75 0 0 1 1.5 0v8a.75.75 0 0 1-.75.75"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/git-merge-queue-16.svg���������������������0000664�0000000�0000000�00000000577�14753064456�0027412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.75 4.5a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5M3 7.75a.75.75 0 0 1 1.5 0v2.878a2.251 2.251 0 1 1-1.5 0Zm.75 5.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5m5-7.75a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0m5.75 2.5a2.25 2.25 0 1 1-4.5 0 2.25 2.25 0 0 1 4.5 0m-1.5 0a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/git-merge-queue-24.svg���������������������0000664�0000000�0000000�00000000746�14753064456�0027407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.75 6.5a1.75 1.75 0 1 1 .001-3.501A1.75 1.75 0 0 1 5.75 6.5M9.5 8.75a1.75 1.75 0 1 1 3.501.001A1.75 1.75 0 0 1 9.5 8.75M5.75 22.5a3.25 3.25 0 0 1-.745-6.414A1 1 0 0 1 5 16v-5a.75.75 0 0 1 1.5 0v5a1 1 0 0 1-.005.086A3.252 3.252 0 0 1 5.75 22.5M4 19.25a1.75 1.75 0 1 0 3.501-.001A1.75 1.75 0 0 0 4 19.25m11-6.5a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0m3.25 1.75a1.75 1.75 0 1 0 0-3.5 1.75 1.75 0 0 0 0 3.5"/></svg>��������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/git-pull-request-16.svg��������������������0000664�0000000�0000000�00000000745�14753064456�0027630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1.5 3.25a2.25 2.25 0 1 1 3 2.122v5.256a2.251 2.251 0 1 1-1.5 0V5.372A2.25 2.25 0 0 1 1.5 3.25m5.677-.177L9.573.677A.25.25 0 0 1 10 .854V2.5h1A2.5 2.5 0 0 1 13.5 5v5.628a2.251 2.251 0 1 1-1.5 0V5a1 1 0 0 0-1-1h-1v1.646a.25.25 0 0 1-.427.177L7.177 3.427a.25.25 0 0 1 0-.354M3.75 2.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m0 9.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m8.25.75a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0"/></svg>���������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/git-pull-request-24.svg��������������������0000664�0000000�0000000�00000001320�14753064456�0027615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 19.25a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0m-14.5 0a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0m0-14.5a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0M4.75 3a1.75 1.75 0 1 0 .001 3.501A1.75 1.75 0 0 0 4.75 3m0 14.5a1.75 1.75 0 1 0 .001 3.501A1.75 1.75 0 0 0 4.75 17.5m14.5 0a1.75 1.75 0 1 0 .001 3.501 1.75 1.75 0 0 0-.001-3.501"/><path d="M13.405 1.72a.75.75 0 0 1 0 1.06L12.185 4h4.065A3.75 3.75 0 0 1 20 7.75v8.75a.75.75 0 0 1-1.5 0V7.75a2.25 2.25 0 0 0-2.25-2.25h-4.064l1.22 1.22a.75.75 0 0 1-1.061 1.06l-2.5-2.5a.75.75 0 0 1 0-1.06l2.5-2.5a.75.75 0 0 1 1.06 0M4.75 7.25A.75.75 0 0 1 5.5 8v8A.75.75 0 0 1 4 16V8a.75.75 0 0 1 .75-.75"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/git-pull-request-closed-16.svg�������������0000664�0000000�0000000�00000001202�14753064456�0031064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.25 1A2.25 2.25 0 0 1 4 5.372v5.256a2.251 2.251 0 1 1-1.5 0V5.372A2.251 2.251 0 0 1 3.25 1m9.5 5.5a.75.75 0 0 1 .75.75v3.378a2.251 2.251 0 1 1-1.5 0V7.25a.75.75 0 0 1 .75-.75m-2.03-5.273a.75.75 0 0 1 1.06 0l.97.97.97-.97a.748.748 0 0 1 1.265.332.75.75 0 0 1-.205.729l-.97.97.97.97a.75.75 0 0 1-.018 1.042.75.75 0 0 1-1.042.018l-.97-.97-.97.97a.749.749 0 0 1-1.275-.326.75.75 0 0 1 .215-.734l.97-.97-.97-.97a.75.75 0 0 1 0-1.06ZM2.5 3.25a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0M3.25 12a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m9.5 0a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/git-pull-request-closed-24.svg�������������0000664�0000000�0000000�00000001362�14753064456�0031072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.266 2.711a.75.75 0 1 0-1.061-1.06l-1.983 1.983-1.984-1.983a.75.75 0 1 0-1.06 1.06l1.983 1.983-1.983 1.984a.75.75 0 0 0 1.06 1.06l1.984-1.983 1.983 1.983a.75.75 0 0 0 1.06-1.06l-1.983-1.984zM4.75 1.5a3.25 3.25 0 0 1 .745 6.414A1 1 0 0 1 5.5 8v8a1 1 0 0 1-.005.086A3.25 3.25 0 0 1 4.75 22.5a3.25 3.25 0 0 1-.745-6.414A1 1 0 0 1 4 16V8q0-.043.005-.086A3.25 3.25 0 0 1 4.75 1.5M16 19.25a3.25 3.25 0 0 1 2.5-3.163V9.625a.75.75 0 0 1 1.5 0v6.462a3.252 3.252 0 0 1-.75 6.413A3.25 3.25 0 0 1 16 19.25M3 4.75a1.75 1.75 0 1 0 3.501-.001A1.75 1.75 0 0 0 3 4.75m0 14.5a1.75 1.75 0 1 0 3.501-.001A1.75 1.75 0 0 0 3 19.25m16.25-1.75a1.75 1.75 0 1 0 .001 3.501 1.75 1.75 0 0 0-.001-3.501"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/git-pull-request-draft-16.svg��������������0000664�0000000�0000000�00000000712�14753064456�0030720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.25 1A2.25 2.25 0 0 1 4 5.372v5.256a2.251 2.251 0 1 1-1.5 0V5.372A2.251 2.251 0 0 1 3.25 1m9.5 14a2.25 2.25 0 1 1 0-4.5 2.25 2.25 0 0 1 0 4.5M2.5 3.25a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0M3.25 12a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m9.5 0a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5M14 7.5a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0m0-4.25a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/git-pull-request-draft-24.svg��������������0000664�0000000�0000000�00000001127�14753064456�0030720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.75 1.5a3.25 3.25 0 0 1 .745 6.414A1 1 0 0 1 5.5 8v8a1 1 0 0 1-.005.086A3.25 3.25 0 0 1 4.75 22.5a3.25 3.25 0 0 1-.745-6.414A1 1 0 0 1 4 16V8q0-.043.005-.086A3.25 3.25 0 0 1 4.75 1.5M16 19.25a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0M3 4.75a1.75 1.75 0 1 0 3.501-.001A1.75 1.75 0 0 0 3 4.75m0 14.5a1.75 1.75 0 1 0 3.501-.001A1.75 1.75 0 0 0 3 19.25m16.25-1.75a1.75 1.75 0 1 0 .001 3.501 1.75 1.75 0 0 0-.001-3.501m0-11.5a1.75 1.75 0 1 0 0-3.5 1.75 1.75 0 0 0 0 3.5M21 11.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/globe-16.svg�������������������������������0000664�0000000�0000000�00000001311�14753064456�0025463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0M5.78 8.75a9.64 9.64 0 0 0 1.363 4.177q.383.64.857 1.215c.245-.296.551-.705.857-1.215A9.64 9.64 0 0 0 10.22 8.75Zm4.44-1.5a9.64 9.64 0 0 0-1.363-4.177c-.307-.51-.612-.919-.857-1.215a10 10 0 0 0-.857 1.215A9.64 9.64 0 0 0 5.78 7.25Zm-5.944 1.5H1.543a6.51 6.51 0 0 0 4.666 5.5q-.184-.271-.352-.552c-.715-1.192-1.437-2.874-1.581-4.948m-2.733-1.5h2.733c.144-2.074.866-3.756 1.58-4.948q.18-.295.353-.552a6.51 6.51 0 0 0-4.666 5.5m10.181 1.5c-.144 2.074-.866 3.756-1.58 4.948q-.18.296-.353.552a6.51 6.51 0 0 0 4.666-5.5Zm2.733-1.5a6.51 6.51 0 0 0-4.666-5.5q.184.272.353.552c.714 1.192 1.436 2.874 1.58 4.948Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/globe-24.svg�������������������������������0000664�0000000�0000000�00000001534�14753064456�0025471�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1m3.241 10.5zc-.1-2.708-.992-4.904-1.89-6.452a14 14 0 0 0-1.304-1.88L12 3.11l-.047.059c-.354.425-.828 1.06-1.304 1.88-.898 1.547-1.79 3.743-1.89 6.451Zm-12.728 0h4.745c.1-3.037 1.1-5.49 2.093-7.204.39-.672.78-1.233 1.119-1.673C6.11 3.329 2.746 7 2.513 11.5m18.974 0C21.254 7 17.89 3.329 13.53 2.623c.339.44.729 1.001 1.119 1.673.993 1.714 1.993 4.167 2.093 7.204ZM8.787 13c.182 2.478 1.02 4.5 1.862 5.953q.574.993 1.304 1.88l.047.057.047-.059c.354-.425.828-1.06 1.304-1.88.842-1.451 1.679-3.471 1.862-5.951Zm-1.504 0H2.552a9.505 9.505 0 0 0 7.918 8.377 16 16 0 0 1-1.119-1.673C8.413 18.085 7.47 15.807 7.283 13m9.434 0c-.186 2.807-1.13 5.085-2.068 6.704-.39.672-.78 1.233-1.118 1.673A9.506 9.506 0 0 0 21.447 13Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/goal-16.svg��������������������������������0000664�0000000�0000000�00000001247�14753064456�0025325�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M13.637 2.363zl1.676.335c.09.018.164.084.19.173a.25.25 0 0 1-.062.249l-1.373 1.374a.88.88 0 0 1-.619.256H12.31L9.45 7.611A1.5 1.5 0 1 1 6.5 8a1.5 1.5 0 0 1 1.889-1.449l2.861-2.862V2.552c0-.232.092-.455.256-.619L12.88.559a.25.25 0 0 1 .249-.062c.089.026.155.1.173.19Z"/><path d="M2 8a6 6 0 1 0 11.769-1.656.751.751 0 1 1 1.442-.413 7.502 7.502 0 0 1-12.513 7.371A7.501 7.501 0 0 1 10.069.789a.75.75 0 0 1-.413 1.442A6 6 0 0 0 2 8"/><path d="M5 8a3.002 3.002 0 0 0 4.699 2.476 3 3 0 0 0 1.28-2.827.748.748 0 0 1 1.045-.782.75.75 0 0 1 .445.61A4.5 4.5 0 1 1 8.516 3.53a.75.75 0 1 1-.17 1.49A3 3 0 0 0 5 8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/goal-24.svg��������������������������������0000664�0000000�0000000�00000001544�14753064456�0025324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.172 6.75h-1.861l-4.566 4.564a1.874 1.874 0 1 1-1.06-1.06l4.565-4.565V3.828a.94.94 0 0 1 .275-.664l1.73-1.73a.25.25 0 0 1 .25-.063c.089.026.155.1.173.191l.46 2.301 2.3.46c.09.018.164.084.19.173a.25.25 0 0 1-.062.249l-1.731 1.73a.94.94 0 0 1-.663.275"/><path d="M2.625 12A9.375 9.375 0 0 0 12 21.375 9.375 9.375 0 0 0 21.375 12c0-.898-.126-1.766-.361-2.587A.75.75 0 0 1 22.455 9c.274.954.42 1.96.42 3 0 6.006-4.869 10.875-10.875 10.875S1.125 18.006 1.125 12 5.994 1.125 12 1.125c1.015-.001 2.024.14 3 .419a.75.75 0 1 1-.413 1.442A9.4 9.4 0 0 0 12 2.625 9.375 9.375 0 0 0 2.625 12"/><path d="M7.125 12a4.874 4.874 0 1 0 9.717-.569.748.748 0 0 1 1.047-.798c.251.112.42.351.442.625a6.373 6.373 0 0 1-10.836 5.253 6.376 6.376 0 0 1 5.236-10.844.75.75 0 1 1-.17 1.49A4.876 4.876 0 0 0 7.125 12"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/grabber-16.svg�����������������������������0000664�0000000�0000000�00000000421�14753064456�0026000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M10 13a1 1 0 1 1 0-2 1 1 0 0 1 0 2m0-4a1 1 0 1 1 0-2 1 1 0 0 1 0 2m-4 4a1 1 0 1 1 0-2 1 1 0 0 1 0 2m5-9a1 1 0 1 1-2 0 1 1 0 0 1 2 0M7 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0M6 5a1 1 0 1 1 0-2 1 1 0 0 1 0 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/grabber-24.svg�����������������������������0000664�0000000�0000000�00000000420�14753064456�0025776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 13a1 1 0 1 1 0-2 1 1 0 0 1 0 2m7-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0M9 8a1 1 0 1 1 0-2 1 1 0 0 1 0 2m7-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0M9 18a1 1 0 1 1 0-2 1 1 0 0 1 0 2m6 0a1 1 0 1 1 0-2 1 1 0 0 1 0 2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/graph-16.svg�������������������������������0000664�0000000�0000000�00000000555�14753064456�0025505�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1.5 1.75V13.5h13.75a.75.75 0 0 1 0 1.5H.75a.75.75 0 0 1-.75-.75V1.75a.75.75 0 0 1 1.5 0m14.28 2.53-5.25 5.25a.75.75 0 0 1-1.06 0L7 7.06 4.28 9.78a.75.75 0 0 1-1.042-.018.75.75 0 0 1-.018-1.042l3.25-3.25a.75.75 0 0 1 1.06 0L10 7.94l4.72-4.72a.75.75 0 0 1 1.042.018.75.75 0 0 1 .018 1.042"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/graph-24.svg�������������������������������0000664�0000000�0000000�00000000472�14753064456�0025502�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.5 2.75a.75.75 0 0 0-1.5 0v18.5c0 .414.336.75.75.75H20a.75.75 0 0 0 0-1.5H2.5z"/><path d="M22.28 7.78a.75.75 0 0 0-1.06-1.06l-5.72 5.72-3.72-3.72a.75.75 0 0 0-1.06 0l-6 6a.75.75 0 1 0 1.06 1.06l5.47-5.47 3.72 3.72a.75.75 0 0 0 1.06 0z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/hash-16.svg��������������������������������0000664�0000000�0000000�00000000701�14753064456�0025320�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6.368 1.01a.75.75 0 0 1 .623.859L6.57 4.5h3.98l.46-2.868a.75.75 0 0 1 1.48.237L12.07 4.5h2.18a.75.75 0 0 1 0 1.5h-2.42l-.64 4h2.56a.75.75 0 0 1 0 1.5h-2.8l-.46 2.869a.75.75 0 0 1-1.48-.237l.42-2.632H5.45l-.46 2.869a.75.75 0 0 1-1.48-.237l.42-2.632H1.75a.75.75 0 0 1 0-1.5h2.42l.64-4H2.25a.75.75 0 0 1 0-1.5h2.8l.46-2.868a.75.75 0 0 1 .858-.622M9.67 10l.64-4H6.33l-.64 4Z"/></svg>���������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/hash-24.svg��������������������������������0000664�0000000�0000000�00000000705�14753064456�0025323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.618 1.76a.75.75 0 0 1 .623.859L9.46 7.5h6.48l.82-5.118a.75.75 0 0 1 1.48.237L17.46 7.5h3.79a.75.75 0 0 1 0 1.5h-4.03l-.96 6h3.99a.75.75 0 0 1 0 1.5h-4.23l-.78 4.869a.75.75 0 0 1-1.48-.237l.74-4.632H8.02l-.78 4.869a.75.75 0 0 1-1.48-.237L6.5 16.5H2.745a.75.75 0 0 1 0-1.5H6.74l.96-6H3.75a.75.75 0 0 1 0-1.5h4.19l.82-5.118a.75.75 0 0 1 .858-.622M14.741 15l.96-6H9.22l-.96 6Z"/></svg>�����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/heading-16.svg�����������������������������0000664�0000000�0000000�00000000325�14753064456�0025776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.75 2a.75.75 0 0 1 .75.75V7h7V2.75a.75.75 0 0 1 1.5 0v10.5a.75.75 0 0 1-1.5 0V8.5h-7v4.75a.75.75 0 0 1-1.5 0V2.75A.75.75 0 0 1 3.75 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/heading-24.svg�����������������������������0000664�0000000�0000000�00000000327�14753064456�0025777�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.25 4a.75.75 0 0 1 .75.75V11h10V4.75a.75.75 0 0 1 1.5 0v14.5a.75.75 0 0 1-1.5 0V12.5H7v6.75a.75.75 0 0 1-1.5 0V4.75A.75.75 0 0 1 6.25 4"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/heart-16.svg�������������������������������0000664�0000000�0000000�00000001202�14753064456�0025475�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m8 14.25.345.666a.75.75 0 0 1-.69 0l-.008-.004-.018-.01a7 7 0 0 1-.31-.17 22 22 0 0 1-3.434-2.414C2.045 10.731 0 8.35 0 5.5 0 2.836 2.086 1 4.25 1 5.797 1 7.153 1.802 8 3.02 8.847 1.802 10.203 1 11.75 1 13.914 1 16 2.836 16 5.5c0 2.85-2.045 5.231-3.885 6.818a22 22 0 0 1-3.744 2.584l-.018.01-.006.003h-.002ZM4.25 2.5c-1.336 0-2.75 1.164-2.75 3 0 2.15 1.58 4.144 3.365 5.682A20.6 20.6 0 0 0 8 13.393a20.6 20.6 0 0 0 3.135-2.211C12.92 9.644 14.5 7.65 14.5 5.5c0-1.836-1.414-3-2.75-3-1.373 0-2.609.986-3.029 2.456a.749.749 0 0 1-1.442 0C6.859 3.486 5.623 2.5 4.25 2.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/heart-24.svg�������������������������������0000664�0000000�0000000�00000001325�14753064456�0025502�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 20.703.343.667a.75.75 0 0 1-.686 0l-.003-.002-.007-.003-.025-.013a31 31 0 0 1-5.233-3.576C3.8 15.573 1 12.332 1 8.514v-.001C1 5.053 3.829 2.5 6.736 2.5 9.03 2.5 10.881 3.726 12 5.605 13.12 3.726 14.97 2.5 17.264 2.5 20.17 2.5 23 5.052 23 8.514c0 3.818-2.801 7.06-5.389 9.262a31 31 0 0 1-5.233 3.576l-.025.013-.007.003-.002.001ZM6.736 4C4.657 4 2.5 5.88 2.5 8.514c0 3.107 2.324 5.96 4.861 8.12a29.7 29.7 0 0 0 4.566 3.175l.073.041.073-.04c.271-.153.661-.38 1.13-.674.94-.588 2.19-1.441 3.436-2.502 2.537-2.16 4.861-5.013 4.861-8.12C21.5 5.88 19.343 4 17.264 4c-2.106 0-3.801 1.389-4.553 3.643a.751.751 0 0 1-1.422 0C10.537 5.389 8.841 4 6.736 4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/heart-fill-16.svg��������������������������0000664�0000000�0000000�00000000575�14753064456�0026435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.655 14.916zh-.002l-.006-.003-.018-.01a22 22 0 0 1-3.744-2.584C2.045 10.731 0 8.35 0 5.5 0 2.836 2.086 1 4.25 1 5.797 1 7.153 1.802 8 3.02 8.847 1.802 10.203 1 11.75 1 13.914 1 16 2.836 16 5.5c0 2.85-2.044 5.231-3.886 6.818a22 22 0 0 1-3.433 2.414 7 7 0 0 1-.31.17l-.018.01-.008.004a.75.75 0 0 1-.69 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/heart-fill-24.svg��������������������������0000664�0000000�0000000�00000000627�14753064456�0026432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 20.408c-.492.308-.903.546-1.192.709q-.23.129-.463.252h-.002a.75.75 0 0 1-.686 0 17 17 0 0 1-.465-.252 31 31 0 0 1-4.803-3.34C3.8 15.572 1 12.331 1 8.513 1 5.052 3.829 2.5 6.736 2.5 9.03 2.5 10.881 3.726 12 5.605 13.12 3.726 14.97 2.5 17.264 2.5 20.17 2.5 23 5.052 23 8.514c0 3.818-2.801 7.06-5.389 9.262A31 31 0 0 1 14 20.408"/></svg>���������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/history-16.svg�����������������������������0000664�0000000�0000000�00000000576�14753064456�0026110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m.427 1.927 1.215 1.215a8.002 8.002 0 1 1-1.6 5.685.75.75 0 1 1 1.493-.154 6.5 6.5 0 1 0 1.18-4.458l1.358 1.358A.25.25 0 0 1 3.896 6H.25A.25.25 0 0 1 0 5.75V2.104a.25.25 0 0 1 .427-.177M7.75 4a.75.75 0 0 1 .75.75v2.992l2.028.812a.75.75 0 0 1-.557 1.392l-2.5-1A.75.75 0 0 1 7 8.25v-3.5A.75.75 0 0 1 7.75 4"/></svg>����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/history-24.svg�����������������������������0000664�0000000�0000000�00000000746�14753064456�0026106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.998 2.5A9.5 9.5 0 0 0 3.378 8H5.75a.75.75 0 0 1 0 1.5H2a1 1 0 0 1-1-1V4.75a.75.75 0 0 1 1.5 0v1.697A11 11 0 0 1 11.998 1C18.074 1 23 5.925 23 12s-4.926 11-11.002 11C6.014 23 1.146 18.223 1 12.275a.75.75 0 0 1 1.5-.037 9.5 9.5 0 0 0 9.498 9.262c5.248 0 9.502-4.253 9.502-9.5s-4.254-9.5-9.502-9.5"/><path d="M12.5 7.25a.75.75 0 0 0-1.5 0v5.5c0 .27.144.518.378.651l3.5 2a.75.75 0 0 0 .744-1.302L12.5 12.315z"/></svg>��������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/home-16.svg��������������������������������0000664�0000000�0000000�00000000774�14753064456�0025337�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6.906.664a1.75 1.75 0 0 1 2.187 0l5.25 4.2c.415.332.657.835.657 1.367v7.019A1.75 1.75 0 0 1 13.25 15h-3.5a.75.75 0 0 1-.75-.75V9H7v5.25a.75.75 0 0 1-.75.75h-3.5A1.75 1.75 0 0 1 1 13.25V6.23c0-.531.242-1.034.657-1.366l5.25-4.2Zm1.25 1.171a.25.25 0 0 0-.312 0l-5.25 4.2a.25.25 0 0 0-.094.196v7.019c0 .138.112.25.25.25H5.5V8.25a.75.75 0 0 1 .75-.75h3.5a.75.75 0 0 1 .75.75v5.25h2.75a.25.25 0 0 0 .25-.25V6.23a.25.25 0 0 0-.094-.195Z"/></svg>����mkdocs-material-9.6.4/material/templates/.icons/octicons/home-24.svg��������������������������������0000664�0000000�0000000�00000000573�14753064456�0025333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.03 2.59a1.5 1.5 0 0 1 1.94 0l7.5 6.363a1.5 1.5 0 0 1 .53 1.144V19.5a1.5 1.5 0 0 1-1.5 1.5h-5.75a.75.75 0 0 1-.75-.75V14h-2v6.25a.75.75 0 0 1-.75.75H4.5A1.5 1.5 0 0 1 3 19.5v-9.403c0-.44.194-.859.53-1.144ZM12 3.734l-7.5 6.363V19.5h5v-6.25a.75.75 0 0 1 .75-.75h3.5a.75.75 0 0 1 .75.75v6.25h5v-9.403Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/home-fill-16.svg���������������������������0000664�0000000�0000000�00000000454�14753064456�0026256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6.906.384a1.75 1.75 0 0 1 2.187 0l5.25 4.2c.415.332.657.835.657 1.367v7.019a1.75 1.75 0 0 1-1.75 1.75h-2.5a.75.75 0 0 1-.75-.75V8.72H6v5.25a.75.75 0 0 1-.75.75h-2.5A1.75 1.75 0 0 1 1 12.97V5.95c0-.531.242-1.034.657-1.366z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/home-fill-24.svg���������������������������0000664�0000000�0000000�00000000435�14753064456�0026254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.97 2.59a1.5 1.5 0 0 0-1.94 0l-7.5 6.363A1.5 1.5 0 0 0 3 10.097V19.5A1.5 1.5 0 0 0 4.5 21h4.75a.75.75 0 0 0 .75-.75V14h4v6.25c0 .414.336.75.75.75h4.75a1.5 1.5 0 0 0 1.5-1.5v-9.403a1.5 1.5 0 0 0-.53-1.144z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/horizontal-rule-16.svg���������������������0000664�0000000�0000000�00000000230�14753064456�0027530�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 7.75A.75.75 0 0 1 .75 7h14.5a.75.75 0 0 1 0 1.5H.75A.75.75 0 0 1 0 7.75"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/horizontal-rule-24.svg���������������������0000664�0000000�0000000�00000000235�14753064456�0027534�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 12.75a.75.75 0 0 1 .75-.75h18.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/hourglass-16.svg���������������������������0000664�0000000�0000000�00000001107�14753064456�0026405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2.75 1h10.5a.75.75 0 0 1 0 1.5h-.75v1.25a4.75 4.75 0 0 1-1.9 3.8l-.333.25a.25.25 0 0 0 0 .4l.333.25a4.75 4.75 0 0 1 1.9 3.8v1.25h.75a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1 0-1.5h.75v-1.25a4.75 4.75 0 0 1 1.9-3.8l.333-.25a.25.25 0 0 0 0-.4L5.4 7.55a4.75 4.75 0 0 1-1.9-3.8V2.5h-.75a.75.75 0 0 1 0-1.5M11 2.5H5v1.25c0 1.023.482 1.986 1.3 2.6l.333.25c.934.7.934 2.1 0 2.8l-.333.25a3.25 3.25 0 0 0-1.3 2.6v1.25h6v-1.25a3.25 3.25 0 0 0-1.3-2.6l-.333-.25a1.748 1.748 0 0 1 0-2.8l.333-.25a3.25 3.25 0 0 0 1.3-2.6Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/hourglass-24.svg���������������������������0000664�0000000�0000000�00000001173�14753064456�0026407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.75 2h14.5a.75.75 0 0 1 0 1.5h-.75v2.982a4.75 4.75 0 0 1-2.215 4.017l-2.044 1.29a.25.25 0 0 0 0 .422l2.044 1.29a4.75 4.75 0 0 1 2.215 4.017V20.5h.75a.75.75 0 0 1 0 1.5H4.75a.75.75 0 0 1 0-1.5h.75v-2.982a4.75 4.75 0 0 1 2.215-4.017l2.044-1.29a.25.25 0 0 0 0-.422l-2.044-1.29A4.75 4.75 0 0 1 5.5 6.482V3.5h-.75a.75.75 0 0 1 0-1.5M17 3.5H7v2.982A3.25 3.25 0 0 0 8.516 9.23l2.044 1.29a1.75 1.75 0 0 1 0 2.96l-2.044 1.29A3.25 3.25 0 0 0 7 17.518V20.5h10v-2.982a3.25 3.25 0 0 0-1.516-2.748l-2.044-1.29a1.75 1.75 0 0 1 0-2.96l2.044-1.29A3.25 3.25 0 0 0 17 6.482Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/hubot-16.svg�������������������������������0000664�0000000�0000000�00000001107�14753064456�0025517�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 8a8 8 0 0 1 16 0v5.25a.75.75 0 0 1-1.5 0V8a6.5 6.5 0 1 0-13 0v5.25a.75.75 0 0 1-1.5 0Zm3-1.25C3 5.784 3.784 5 4.75 5h6.5c.966 0 1.75.784 1.75 1.75v1.5A1.75 1.75 0 0 1 11.25 10h-6.5A1.75 1.75 0 0 1 3 8.25Zm1.47-.53a.75.75 0 0 0 0 1.06l1.5 1.5a.75.75 0 0 0 1.06 0L8 7.81l.97.97a.75.75 0 0 0 1.06 0l1.5-1.5a.749.749 0 0 0-.326-1.275.75.75 0 0 0-.734.215l-.97.97-.97-.97a.75.75 0 0 0-1.06 0l-.97.97-.97-.97a.75.75 0 0 0-1.06 0m1.03 6.03a.75.75 0 0 1 .75-.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/hubot-24.svg�������������������������������0000664�0000000�0000000�00000001227�14753064456�0025521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 13C0 6.373 5.373 1 12 1s12 5.373 12 12v8.657a.75.75 0 0 1-1.5 0V13c0-5.799-4.701-10.5-10.5-10.5S1.5 7.201 1.5 13v8.657a.75.75 0 0 1-1.5 0z"/><path d="M8 19.75a.75.75 0 0 1 .75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1-.75-.75M5.25 9.5h13.5c.966 0 1.75.784 1.75 1.75v3.5a1.75 1.75 0 0 1-1.75 1.75H5.25a1.75 1.75 0 0 1-1.75-1.75v-3.5c0-.966.784-1.75 1.75-1.75m.22 1.47a.75.75 0 0 0 0 1.06l3 3a.75.75 0 0 0 1.06 0L12 12.56l2.47 2.47a.75.75 0 0 0 1.06 0l3-3a.749.749 0 0 0-.326-1.275.75.75 0 0 0-.734.215L15 13.44l-2.47-2.47a.75.75 0 0 0-1.06 0L9 13.44l-2.47-2.47a.75.75 0 0 0-1.06 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/id-badge-16.svg����������������������������0000664�0000000�0000000�00000001364�14753064456�0026037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3 7.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5zm10 .25a.75.75 0 0 1-.75.75h-4.5a.75.75 0 0 1 0-1.5h4.5a.75.75 0 0 1 .75.75M10.25 11a.75.75 0 0 0 0-1.5h-2.5a.75.75 0 0 0 0 1.5z"/><path d="M7.25 0h1.5c.966 0 1.75.784 1.75 1.75V3h3.75c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 14.25 15H1.75A1.75 1.75 0 0 1 0 13.25v-8.5C0 3.784.784 3 1.75 3H5.5V1.75C5.5.784 6.284 0 7.25 0m3.232 4.5A1.75 1.75 0 0 1 8.75 6h-1.5a1.75 1.75 0 0 1-1.732-1.5H1.75a.25.25 0 0 0-.25.25v8.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-8.5a.25.25 0 0 0-.25-.25ZM7 1.75v2.5c0 .138.112.25.25.25h1.5A.25.25 0 0 0 9 4.25v-2.5a.25.25 0 0 0-.25-.25h-1.5a.25.25 0 0 0-.25.25"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/id-badge-24.svg����������������������������0000664�0000000�0000000�00000001423�14753064456�0026032�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 11.75a.75.75 0 0 1 .75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75m0 2.525a.75.75 0 0 1 .75-.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75M6.5 10a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5z"/><path d="M10.75 2A1.75 1.75 0 0 0 9 3.75V6H3.75A1.75 1.75 0 0 0 2 7.75v10.5c0 .966.784 1.75 1.75 1.75h16.5A1.75 1.75 0 0 0 22 18.25V7.75A1.75 1.75 0 0 0 20.25 6H15V3.75A1.75 1.75 0 0 0 13.25 2zm-.25 1.75a.25.25 0 0 1 .25-.25h2.5a.25.25 0 0 1 .25.25v3.5a.25.25 0 0 1-.25.25h-2.5a.25.25 0 0 1-.25-.25zm4.482 3.75A1.75 1.75 0 0 1 13.25 9h-2.5a1.75 1.75 0 0 1-1.732-1.5H3.75a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h16.5a.25.25 0 0 0 .25-.25V7.75a.25.25 0 0 0-.25-.25z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/image-16.svg�������������������������������0000664�0000000�0000000�00000000760�14753064456�0025464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M16 13.25A1.75 1.75 0 0 1 14.25 15H1.75A1.75 1.75 0 0 1 0 13.25V2.75C0 1.784.784 1 1.75 1h12.5c.966 0 1.75.784 1.75 1.75ZM1.75 2.5a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h.94l.03-.03 6.077-6.078a1.75 1.75 0 0 1 2.412-.06L14.5 10.31V2.75a.25.25 0 0 0-.25-.25Zm12.5 11a.25.25 0 0 0 .25-.25v-.917l-4.298-3.889a.25.25 0 0 0-.344.009L4.81 13.5ZM7 6a2 2 0 1 1-3.999.001A2 2 0 0 1 7 6M5.5 6a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0"/></svg>����������������mkdocs-material-9.6.4/material/templates/.icons/octicons/image-24.svg�������������������������������0000664�0000000�0000000�00000000761�14753064456�0025464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.75 3h14.5c.966 0 1.75.784 1.75 1.75v14.5A1.75 1.75 0 0 1 19.25 21H4.75A1.75 1.75 0 0 1 3 19.25V4.75C3 3.784 3.784 3 4.75 3m14.5 1.5H4.75a.25.25 0 0 0-.25.25v14.5c0 .138.112.25.25.25h.19l9.823-9.823a1.75 1.75 0 0 1 2.475 0l2.262 2.262V4.75a.25.25 0 0 0-.25-.25m.25 9.56-3.323-3.323a.25.25 0 0 0-.354 0L7.061 19.5H19.25a.25.25 0 0 0 .25-.25ZM8.5 11a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5m0-1.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2"/></svg>���������������mkdocs-material-9.6.4/material/templates/.icons/octicons/inbox-16.svg�������������������������������0000664�0000000�0000000�00000001022�14753064456�0025511�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2.8 2.06A1.75 1.75 0 0 1 4.41 1h7.18c.7 0 1.333.417 1.61 1.06l2.74 6.395c.04.093.06.194.06.295v4.5A1.75 1.75 0 0 1 14.25 15H1.75A1.75 1.75 0 0 1 0 13.25v-4.5q0-.154.06-.295Zm1.61.44a.25.25 0 0 0-.23.152L1.887 8H4.75a.75.75 0 0 1 .6.3L6.625 10h2.75l1.275-1.7a.75.75 0 0 1 .6-.3h2.863L11.82 2.652a.25.25 0 0 0-.23-.152Zm10.09 7h-2.875l-1.275 1.7a.75.75 0 0 1-.6.3h-3.5a.75.75 0 0 1-.6-.3L4.375 9.5H1.5v3.75c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/inbox-24.svg�������������������������������0000664�0000000�0000000�00000001075�14753064456�0025520�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.801 3.57A1.75 1.75 0 0 1 6.414 2.5h11.174c.702 0 1.337.42 1.611 1.067l3.741 8.828q.06.14.06.293v7.562A1.75 1.75 0 0 1 21.25 22H2.75A1.75 1.75 0 0 1 1 20.25v-7.5q0-.151.059-.291L4.8 3.571ZM6.414 4a.25.25 0 0 0-.23.153L2.88 12H8a.75.75 0 0 1 .648.372L10.18 15h3.638l1.533-2.628a.75.75 0 0 1 .64-.372l5.13-.051-3.304-7.797a.25.25 0 0 0-.23-.152ZM21.5 13.445l-5.067.05-1.535 2.633a.75.75 0 0 1-.648.372h-4.5a.75.75 0 0 1-.648-.372L7.57 13.5H2.5v6.75c0 .138.112.25.25.25h18.5a.25.25 0 0 0 .25-.25Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/infinity-16.svg����������������������������0000664�0000000�0000000�00000001312�14753064456�0026225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 6.984c.59-.533 1.204-1.066 1.825-1.493.797-.548 1.7-.991 2.675-.991C14.414 4.5 16 6.086 16 8s-1.586 3.5-3.5 3.5c-.975 0-1.878-.444-2.675-.991-.621-.427-1.235-.96-1.825-1.493-.59.533-1.204 1.066-1.825 1.493-.797.547-1.7.991-2.675.991C1.586 11.5 0 9.914 0 8s1.586-3.5 3.5-3.5c.975 0 1.878.443 2.675.991.621.427 1.235.96 1.825 1.493M9.114 8c.536.483 1.052.922 1.56 1.273.704.483 1.3.727 1.826.727 1.086 0 2-.914 2-2s-.914-2-2-2c-.525 0-1.122.244-1.825.727-.51.35-1.025.79-1.561 1.273M3.5 6c-1.086 0-2 .914-2 2s.914 2 2 2c.525 0 1.122-.244 1.825-.727.51-.35 1.025-.79 1.561-1.273-.536-.483-1.052-.922-1.56-1.273C4.621 6.244 4.025 6 3.5 6"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/infinity-24.svg����������������������������0000664�0000000�0000000�00000001427�14753064456�0026233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 11.16c.887-.933 1.813-1.865 2.78-2.6C15.952 7.668 17.267 7 18.75 7 21.657 7 24 9.615 24 12.25s-2.343 5.25-5.25 5.25c-1.483 0-2.798-.668-3.97-1.56-.967-.735-1.893-1.667-2.78-2.6-.887.933-1.813 1.865-2.78 2.6-1.172.892-2.487 1.56-3.97 1.56C2.343 17.5 0 14.885 0 12.25S2.343 7 5.25 7c1.483 0 2.798.667 3.97 1.56.967.735 1.893 1.667 2.78 2.6M5.25 8.5c-2.032 0-3.75 1.895-3.75 3.75S3.218 16 5.25 16c1.017 0 2.014-.457 3.062-1.253.89-.678 1.758-1.554 2.655-2.497-.897-.943-1.765-1.82-2.655-2.497C7.264 8.957 6.267 8.5 5.25 8.5m7.783 3.75c.897.943 1.765 1.82 2.655 2.497C16.736 15.543 17.733 16 18.75 16c2.032 0 3.75-1.895 3.75-3.75S20.782 8.5 18.75 8.5c-1.017 0-2.014.457-3.062 1.253-.89.678-1.758 1.554-2.655 2.497"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/info-16.svg��������������������������������0000664�0000000�0000000�00000000501�14753064456�0025326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8m8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13M6.5 7.75A.75.75 0 0 1 7.25 7h1a.75.75 0 0 1 .75.75v2.75h.25a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1 0-1.5h.25v-2h-.25a.75.75 0 0 1-.75-.75M8 6a1 1 0 1 1 0-2 1 1 0 0 1 0 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/info-24.svg��������������������������������0000664�0000000�0000000�00000000651�14753064456�0025333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 7.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0m-3 3.75a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 .75.75v4.25h.75a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h.75V12h-.75a.75.75 0 0 1-.75-.75"/><path d="M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1M2.5 12a9.5 9.5 0 0 0 9.5 9.5 9.5 9.5 0 0 0 9.5-9.5A9.5 9.5 0 0 0 12 2.5 9.5 9.5 0 0 0 2.5 12"/></svg>���������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/issue-closed-16.svg������������������������0000664�0000000�0000000�00000000417�14753064456�0027000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M11.28 6.78a.75.75 0 0 0-1.06-1.06L7.25 8.69 5.78 7.22a.75.75 0 0 0-1.06 1.06l2 2a.75.75 0 0 0 1.06 0z"/><path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-1.5 0a6.5 6.5 0 1 0-13 0 6.5 6.5 0 0 0 13 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/issue-closed-24.svg������������������������0000664�0000000�0000000�00000000545�14753064456�0027001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.28 9.28a.75.75 0 0 0-1.06-1.06l-5.97 5.97-2.47-2.47a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06 0z"/><path d="M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1M2.5 12a9.5 9.5 0 0 0 9.5 9.5 9.5 9.5 0 0 0 9.5-9.5A9.5 9.5 0 0 0 12 2.5 9.5 9.5 0 0 0 2.5 12"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/issue-draft-16.svg�������������������������0000664�0000000�0000000�00000002044�14753064456�0026625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M14.307 11.655a.75.75 0 0 1 .165 1.048 8 8 0 0 1-1.769 1.77.75.75 0 0 1-.883-1.214 6.6 6.6 0 0 0 1.44-1.439.75.75 0 0 1 1.047-.165m-2.652-9.962a.75.75 0 0 1 1.048-.165 8 8 0 0 1 1.77 1.769.75.75 0 0 1-1.214.883 6.6 6.6 0 0 0-1.439-1.44.75.75 0 0 1-.165-1.047M6.749.097a8 8 0 0 1 2.502 0 .75.75 0 1 1-.233 1.482 6.6 6.6 0 0 0-2.036 0A.751.751 0 0 1 6.749.097M.955 6.125a.75.75 0 0 1 .624.857 6.6 6.6 0 0 0 0 2.036.75.75 0 1 1-1.482.233 8 8 0 0 1 0-2.502.75.75 0 0 1 .858-.624m14.09 0a.75.75 0 0 1 .858.624c.13.829.13 1.673 0 2.502a.75.75 0 1 1-1.482-.233 6.6 6.6 0 0 0 0-2.036.75.75 0 0 1 .624-.857m-8.92 8.92a.75.75 0 0 1 .857-.624 6.6 6.6 0 0 0 2.036 0 .75.75 0 1 1 .233 1.482c-.829.13-1.673.13-2.502 0a.75.75 0 0 1-.624-.858m-4.432-3.39a.75.75 0 0 1 1.048.165 6.6 6.6 0 0 0 1.439 1.44.751.751 0 0 1-.883 1.212 8 8 0 0 1-1.77-1.769.75.75 0 0 1 .166-1.048m2.652-9.962A.75.75 0 0 1 4.18 2.74a6.6 6.6 0 0 0-1.44 1.44.751.751 0 0 1-1.212-.883 8 8 0 0 1 1.769-1.77.75.75 0 0 1 1.048.166"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/issue-draft-24.svg�������������������������0000664�0000000�0000000�00000002051�14753064456�0026622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.32 3.205a.75.75 0 0 1 1.046-.177 11 11 0 0 1 2.605 2.606.75.75 0 1 1-1.222.869 9.6 9.6 0 0 0-2.252-2.252.75.75 0 0 1-.177-1.046m3.475 14.115a.75.75 0 0 1 .176 1.046 11 11 0 0 1-2.605 2.605.75.75 0 1 1-.869-1.222 9.6 9.6 0 0 0 2.252-2.252.75.75 0 0 1 1.046-.177M2.018 9.543a.75.75 0 0 1 .615.864 9.6 9.6 0 0 0 0 3.186.75.75 0 1 1-1.48.25 11 11 0 0 1 0-3.686.75.75 0 0 1 .865-.614m7.525 12.439a.75.75 0 0 1 .864-.615 9.6 9.6 0 0 0 3.186 0 .75.75 0 1 1 .25 1.48 11 11 0 0 1-3.686 0 .75.75 0 0 1-.614-.865M6.68 3.205a.75.75 0 0 1-.177 1.046A9.6 9.6 0 0 0 4.25 6.503a.75.75 0 1 1-1.223-.87 11 11 0 0 1 2.606-2.605.75.75 0 0 1 1.046.177ZM3.205 17.32a.75.75 0 0 1 1.046.177 9.6 9.6 0 0 0 2.252 2.252.75.75 0 1 1-.87 1.223 11 11 0 0 1-2.605-2.606.75.75 0 0 1 .177-1.046m6.952-16.166a11 11 0 0 1 3.686 0 .75.75 0 0 1-.25 1.479 9.6 9.6 0 0 0-3.186 0 .75.75 0 1 1-.25-1.48Zm11.825 8.389a.75.75 0 0 1 .864.614 11 11 0 0 1 0 3.686.75.75 0 0 1-1.479-.25 9.6 9.6 0 0 0 0-3.186.75.75 0 0 1 .615-.864"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/issue-opened-16.svg������������������������0000664�0000000�0000000�00000000321�14753064456�0026773�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3"/><path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0M1.5 8a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/issue-opened-24.svg������������������������0000664�0000000�0000000�00000000435�14753064456�0027000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1M2.5 12a9.5 9.5 0 0 0 9.5 9.5 9.5 9.5 0 0 0 9.5-9.5A9.5 9.5 0 0 0 12 2.5 9.5 9.5 0 0 0 2.5 12m9.5 2a2 2 0 1 1-.001-3.999A2 2 0 0 1 12 14"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/issue-reopened-16.svg����������������������0000664�0000000�0000000�00000001074�14753064456�0027330�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M5.029 2.217a6.5 6.5 0 0 1 9.437 5.11.75.75 0 1 0 1.492-.154 8 8 0 0 0-14.315-4.03L.427 1.927A.25.25 0 0 0 0 2.104V5.75A.25.25 0 0 0 .25 6h3.646a.25.25 0 0 0 .177-.427L2.715 4.215a6.5 6.5 0 0 1 2.314-1.998M1.262 8.169a.75.75 0 0 0-1.22.658 8.001 8.001 0 0 0 14.315 4.03l1.216 1.216a.25.25 0 0 0 .427-.177V10.25a.25.25 0 0 0-.25-.25h-3.646a.25.25 0 0 0-.177.427l1.358 1.358a6.501 6.501 0 0 1-11.751-3.11.75.75 0 0 0-.272-.506"/><path d="M9.06 9.06a1.5 1.5 0 1 1-2.12-2.12 1.5 1.5 0 0 1 2.12 2.12"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/issue-reopened-24.svg����������������������0000664�0000000�0000000�00000001061�14753064456�0027323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.38 8A9.5 9.5 0 0 1 12 2.5a9.5 9.5 0 0 1 9.215 7.182.75.75 0 1 0 1.456-.364C21.473 4.539 17.15 1 12 1a11 11 0 0 0-9.5 5.452V4.75a.75.75 0 0 0-1.5 0V8.5a1 1 0 0 0 1 1h3.75a.75.75 0 0 0 0-1.5zm-.595 6.318a.75.75 0 0 0-1.455.364C2.527 19.461 6.85 23 12 23c4.052 0 7.592-2.191 9.5-5.451v1.701a.75.75 0 0 0 1.5 0V15.5a1 1 0 0 0-1-1h-3.75a.75.75 0 0 0 0 1.5h2.37A9.5 9.5 0 0 1 12 21.5c-4.446 0-8.181-3.055-9.215-7.182"/><path d="M13.414 13.414a2 2 0 1 1-2.828-2.828 2 2 0 0 1 2.828 2.828"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/issue-tracked-by-16.svg��������������������0000664�0000000�0000000�00000000556�14753064456�0027560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1.5 8a6.5 6.5 0 0 1 13 0A.75.75 0 0 0 16 8a8 8 0 1 0-8 8 .75.75 0 0 0 0-1.5A6.5 6.5 0 0 1 1.5 8"/><path d="M8 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3m3.573 5.823-2.896-2.896a.25.25 0 0 1 0-.354l2.896-2.896a.25.25 0 0 1 .427.177V11.5h3.25a.75.75 0 0 1 0 1.5H12v2.146a.25.25 0 0 1-.427.177"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/issue-tracked-by-24.svg��������������������0000664�0000000�0000000�00000000622�14753064456�0027551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2.5a9.5 9.5 0 1 0 0 19 .75.75 0 0 1 0 1.5C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11a.75.75 0 0 1-1.5 0A9.5 9.5 0 0 0 12 2.5"/><path d="m13.759 17.48 3.728 3.314a.308.308 0 0 0 .513-.23V18h4.25a.75.75 0 0 0 0-1.5H18v-2.564a.308.308 0 0 0-.513-.23L13.76 17.02a.31.31 0 0 0 0 .46ZM12 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4"/></svg>��������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/issue-tracks-16.svg������������������������0000664�0000000�0000000�00000000542�14753064456�0027015�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1.5 8a6.5 6.5 0 0 1 13 0A.75.75 0 0 0 16 8a8 8 0 1 0-8 8 .75.75 0 0 0 0-1.5A6.5 6.5 0 0 1 1.5 8"/><path d="M8 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3m1.5 1.75a.75.75 0 0 1 .75-.75h5a.75.75 0 0 1 0 1.5h-5a.75.75 0 0 1-.75-.75m2.75 2.25a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/issue-tracks-24.svg������������������������0000664�0000000�0000000�00000000602�14753064456�0027011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.5 12a9.5 9.5 0 1 1 19 0 .75.75 0 0 0 1.5 0c0-6.075-4.925-11-11-11S1 5.925 1 12s4.925 11 11 11a.75.75 0 0 0 0-1.5A9.5 9.5 0 0 1 2.5 12"/><path d="M12 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4m2.5 2.75a.75.75 0 0 1 .75-.75h7a.75.75 0 0 1 0 1.5h-7a.75.75 0 0 1-.75-.75m3.75 2.75a.75.75 0 0 0 0 1.5h4a.75.75 0 0 0 0-1.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/italic-16.svg������������������������������0000664�0000000�0000000�00000000347�14753064456�0025650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6 2.75A.75.75 0 0 1 6.75 2h6.5a.75.75 0 0 1 0 1.5h-2.505l-3.858 9H9.25a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1 0-1.5h2.505l3.858-9H6.75A.75.75 0 0 1 6 2.75"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/italic-24.svg������������������������������0000664�0000000�0000000�00000000356�14753064456�0025647�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 4.75a.75.75 0 0 1 .75-.75h8.5a.75.75 0 0 1 0 1.5h-3.514l-5.828 13h3.342a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1 0-1.5h3.514l5.828-13H10.75a.75.75 0 0 1-.75-.75"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/iterations-16.svg��������������������������0000664�0000000�0000000�00000000435�14753064456�0026562�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2.5 7.25a4.75 4.75 0 0 1 9.5 0 .75.75 0 0 0 1.5 0 6.25 6.25 0 1 0-6.25 6.25H12v2.146c0 .223.27.335.427.177l2.896-2.896a.25.25 0 0 0 0-.354l-2.896-2.896a.25.25 0 0 0-.427.177V12H7.25A4.75 4.75 0 0 1 2.5 7.25"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/iterations-24.svg��������������������������0000664�0000000�0000000�00000000434�14753064456�0026560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.5 10.5a8 8 0 1 1 16 0 .75.75 0 0 0 1.5 0 9.5 9.5 0 1 0-9.5 9.5h10.94l-2.72 2.72a.75.75 0 1 0 1.06 1.06l3.735-3.735c.44-.439.44-1.151 0-1.59L19.78 14.72a.75.75 0 0 0-1.06 1.06l2.72 2.72H10.5a8 8 0 0 1-8-8"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/kebab-horizontal-16.svg��������������������0000664�0000000�0000000�00000000311�14753064456�0027625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 9a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3M1.5 9a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3m13 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/kebab-horizontal-24.svg��������������������0000664�0000000�0000000�00000000311�14753064456�0027624�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 14a2 2 0 1 1-.001-3.999A2 2 0 0 1 20 14M6 12a2 2 0 1 1-3.999.001A2 2 0 0 1 6 12m8 0a2 2 0 1 1-3.999.001A2 2 0 0 1 14 12"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/key-16.svg���������������������������������0000664�0000000�0000000�00000001125�14753064456�0025166�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M10.5 0a5.499 5.499 0 1 1-1.288 10.848l-.932.932a.75.75 0 0 1-.53.22H7v.75a.75.75 0 0 1-.22.53l-.5.5a.75.75 0 0 1-.53.22H5v.75a.75.75 0 0 1-.22.53l-.5.5a.75.75 0 0 1-.53.22h-2A1.75 1.75 0 0 1 0 14.25v-2c0-.199.079-.389.22-.53l4.932-4.932A5.5 5.5 0 0 1 10.5 0m-4 5.5c-.001.431.069.86.205 1.269a.75.75 0 0 1-.181.768L1.5 12.56v1.69c0 .138.112.25.25.25h1.69l.06-.06v-1.19a.75.75 0 0 1 .75-.75h1.19l.06-.06v-1.19a.75.75 0 0 1 .75-.75h1.19l1.023-1.025a.75.75 0 0 1 .768-.18A4 4 0 1 0 6.5 5.5M11 6a1 1 0 1 1 0-2 1 1 0 0 1 0 2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/key-24.svg���������������������������������0000664�0000000�0000000�00000001345�14753064456�0025171�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.75 8.5a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5"/><path d="M15.75 0a8.25 8.25 0 1 1-2.541 16.101l-1.636 1.636a1.74 1.74 0 0 1-1.237.513H9.25a.25.25 0 0 0-.25.25v1.448a.88.88 0 0 1-.256.619l-.214.213a.75.75 0 0 1-.545.22H5.25a.25.25 0 0 0-.25.25v1A1.75 1.75 0 0 1 3.25 24h-1.5A1.75 1.75 0 0 1 0 22.25v-2.836c0-.464.185-.908.513-1.236l7.386-7.388A8.25 8.25 0 0 1 15.75 0M9 8.25a6.7 6.7 0 0 0 .463 2.462.75.75 0 0 1-.168.804l-7.722 7.721a.25.25 0 0 0-.073.177v2.836c0 .138.112.25.25.25h1.5a.25.25 0 0 0 .25-.25v-1c0-.966.784-1.75 1.75-1.75H7.5v-1c0-.966.784-1.75 1.75-1.75h1.086a.25.25 0 0 0 .177-.073l1.971-1.972a.75.75 0 0 1 .804-.168A6.75 6.75 0 1 0 9 8.25"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/key-asterisk-16.svg������������������������0000664�0000000�0000000�00000001072�14753064456�0027012�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 2.75A2.75 2.75 0 0 1 2.75 0h10.5A2.75 2.75 0 0 1 16 2.75v10.5A2.75 2.75 0 0 1 13.25 16H2.75A2.75 2.75 0 0 1 0 13.25ZM2.75 1.5c-.69 0-1.25.56-1.25 1.25v10.5c0 .69.56 1.25 1.25 1.25h10.5c.69 0 1.25-.56 1.25-1.25V2.75c0-.69-.56-1.25-1.25-1.25Z"/><path d="M8 4a.75.75 0 0 1 .75.75V6.7l1.69-.975a.75.75 0 0 1 .75 1.3L9.5 8l1.69.976a.75.75 0 0 1-.75 1.298L8.75 9.3v1.951a.75.75 0 0 1-1.5 0V9.299l-1.69.976a.75.75 0 0 1-.75-1.3L6.5 8l-1.69-.975a.75.75 0 0 1 .75-1.3l1.69.976V4.75A.75.75 0 0 1 8 4"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/key-asterisk-24.svg������������������������0000664�0000000�0000000�00000001045�14753064456�0027011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.75 8a.75.75 0 0 0-1.5 0v2.701l-2.34-1.35a.75.75 0 0 0-.75 1.298L10.5 12l-2.34 1.35a.75.75 0 1 0 .75 1.3l2.34-1.35V16a.75.75 0 0 0 1.5 0v-2.701l2.34 1.35a.75.75 0 0 0 .75-1.298L13.5 12l2.34-1.35a.75.75 0 0 0-.75-1.3l-2.34 1.351z"/><path d="M2 3.75C2 2.784 2.784 2 3.75 2h16.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25zm1.75-.25a.25.25 0 0 0-.25.25v16.5c0 .138.112.25.25.25h16.5a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/law-16.svg���������������������������������0000664�0000000�0000000�00000002215�14753064456�0025162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8.75.75V2h.985c.304 0 .603.08.867.231l1.29.736q.058.033.124.033h2.234a.75.75 0 0 1 0 1.5h-.427l2.111 4.692a.75.75 0 0 1-.154.838l-.53-.53.529.531-.001.002-.002.002-.006.006-.006.005-.01.01-.045.04q-.317.265-.686.45C14.556 10.78 13.88 11 13 11a4.5 4.5 0 0 1-2.023-.454 3.5 3.5 0 0 1-.686-.45l-.045-.04-.016-.015-.006-.006-.004-.004v-.001a.75.75 0 0 1-.154-.838L12.178 4.5h-.162c-.305 0-.604-.079-.868-.231l-1.29-.736a.25.25 0 0 0-.124-.033H8.75V13h2.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1 0-1.5h2.5V3.5h-.984a.25.25 0 0 0-.124.033l-1.289.737c-.265.15-.564.23-.869.23h-.162l2.112 4.692a.75.75 0 0 1-.154.838l-.53-.53.529.531-.001.002-.002.002-.006.006-.016.015-.045.04q-.317.265-.686.45C4.556 10.78 3.88 11 3 11a4.5 4.5 0 0 1-2.023-.454 3.5 3.5 0 0 1-.686-.45l-.045-.04-.016-.015-.006-.006-.004-.004v-.001a.75.75 0 0 1-.154-.838L2.178 4.5H1.75a.75.75 0 0 1 0-1.5h2.234a.25.25 0 0 0 .125-.033l1.288-.737c.265-.15.564-.23.869-.23h.984V.75a.75.75 0 0 1 1.5 0m2.945 8.477c.285.135.718.273 1.305.273s1.02-.138 1.305-.273L13 6.327Zm-10 0c.285.135.718.273 1.305.273s1.02-.138 1.305-.273L3 6.327Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/law-24.svg���������������������������������0000664�0000000�0000000�00000002054�14753064456�0025162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.75 2.75V4.5h1.975c.351 0 .694.106.984.303l1.697 1.154q.063.042.14.043h4.102a.75.75 0 0 1 0 1.5H20.07l3.366 7.68a.75.75 0 0 1-.23.896q-.15.111-.31.206a6 6 0 0 1-.79.399 7.35 7.35 0 0 1-2.856.569 7.3 7.3 0 0 1-2.855-.568 6 6 0 0 1-.79-.4 3 3 0 0 1-.307-.202l-.005-.004a.75.75 0 0 1-.23-.896l3.368-7.68h-.886c-.351 0-.694-.106-.984-.303l-1.697-1.154a.25.25 0 0 0-.14-.043H12.75v14.5h4.487a.75.75 0 0 1 0 1.5H6.763a.75.75 0 0 1 0-1.5h4.487V6H9.275a.25.25 0 0 0-.14.043L7.439 7.197c-.29.197-.633.303-.984.303h-.886l3.368 7.68a.75.75 0 0 1-.209.878c-.08.065-.16.126-.31.223a6 6 0 0 1-.792.433 6.9 6.9 0 0 1-2.876.62 6.9 6.9 0 0 1-2.876-.62 6 6 0 0 1-.792-.433 4 4 0 0 1-.309-.221.76.76 0 0 1-.21-.88L3.93 7.5H2.353a.75.75 0 0 1 0-1.5h4.102q.076 0 .141-.043l1.695-1.154c.29-.198.634-.303.985-.303h1.974V2.75a.75.75 0 0 1 1.5 0M2.193 15.198a5.4 5.4 0 0 0 2.557.635 5.4 5.4 0 0 0 2.557-.635L4.75 9.368Zm14.51-.024q.123.06.275.126c.53.223 1.305.45 2.272.45a5.85 5.85 0 0 0 2.547-.576L19.25 9.367Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/light-bulb-16.svg��������������������������0000664�0000000�0000000�00000001343�14753064456�0026431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 1.5c-2.363 0-4 1.69-4 3.75 0 .984.424 1.625.984 2.304l.214.253c.223.264.47.556.673.848.284.411.537.896.621 1.49a.75.75 0 0 1-1.484.211c-.04-.282-.163-.547-.37-.847a9 9 0 0 0-.542-.68q-.126-.149-.268-.32C3.201 7.75 2.5 6.766 2.5 5.25 2.5 2.31 4.863 0 8 0s5.5 2.31 5.5 5.25c0 1.516-.701 2.5-1.328 3.259q-.142.172-.268.319c-.207.245-.383.453-.541.681-.208.3-.33.565-.37.847a.751.751 0 0 1-1.485-.212c.084-.593.337-1.078.621-1.489.203-.292.45-.584.673-.848q.113-.133.213-.253c.561-.679.985-1.32.985-2.304 0-2.06-1.637-3.75-4-3.75M5.75 12h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1 0-1.5M6 15.25a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/light-bulb-24.svg��������������������������0000664�0000000�0000000�00000001505�14753064456�0026430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2.5c-3.81 0-6.5 2.743-6.5 6.119 0 1.536.632 2.572 1.425 3.56.172.215.347.422.527.635l.096.112c.21.25.427.508.63.774.404.531.783 1.128.995 1.834a.75.75 0 0 1-1.436.432c-.138-.46-.397-.89-.753-1.357a18 18 0 0 0-.582-.714l-.092-.11c-.18-.212-.37-.436-.555-.667C4.87 12.016 4 10.651 4 8.618 4 4.363 7.415 1 12 1s8 3.362 8 7.619c0 2.032-.87 3.397-1.755 4.5-.185.23-.375.454-.555.667l-.092.109c-.21.248-.405.481-.582.714-.356.467-.615.898-.753 1.357a.751.751 0 0 1-1.437-.432c.213-.706.592-1.303.997-1.834.202-.266.419-.524.63-.774l.095-.112c.18-.213.355-.42.527-.634.793-.99 1.425-2.025 1.425-3.561C18.5 5.243 15.81 2.5 12 2.5M8.75 18h6.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1 0-1.5m.75 3.75a.75.75 0 0 1 .75-.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/link-16.svg��������������������������������0000664�0000000�0000000�00000001045�14753064456�0025334�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .75.75 0 0 1 .018-1.042.75.75 0 0 1 1.042-.018 2 2 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.75.75 0 0 1-1.042-.018.75.75 0 0 1-.018-1.042m-4.69 9.64a2 2 0 0 0 2.83 0l1.25-1.25a.75.75 0 0 1 1.042.018.75.75 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .75.75 0 0 1-.018 1.042.75.75 0 0 1-1.042.018 2 2 0 0 0-2.83 0l-2.5 2.5a2 2 0 0 0 0 2.83"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/link-24.svg��������������������������������0000664�0000000�0000000�00000000747�14753064456�0025343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.78 3.653a3.936 3.936 0 1 1 5.567 5.567l-3.627 3.627a3.936 3.936 0 0 1-5.88-.353.75.75 0 0 0-1.18.928 5.436 5.436 0 0 0 8.12.486l3.628-3.628a5.436 5.436 0 1 0-7.688-7.688l-3 3a.75.75 0 0 0 1.06 1.061z"/><path d="M7.28 11.153a3.936 3.936 0 0 1 5.88.353.75.75 0 0 0 1.18-.928 5.436 5.436 0 0 0-8.12-.486L2.592 13.72a5.436 5.436 0 1 0 7.688 7.688l3-3a.75.75 0 1 0-1.06-1.06l-3 3a3.936 3.936 0 0 1-5.567-5.568z"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/link-external-16.svg�����������������������0000664�0000000�0000000�00000000722�14753064456�0027155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.75 2h3.5a.75.75 0 0 1 0 1.5h-3.5a.25.25 0 0 0-.25.25v8.5c0 .138.112.25.25.25h8.5a.25.25 0 0 0 .25-.25v-3.5a.75.75 0 0 1 1.5 0v3.5A1.75 1.75 0 0 1 12.25 14h-8.5A1.75 1.75 0 0 1 2 12.25v-8.5C2 2.784 2.784 2 3.75 2m6.854-1h4.146a.25.25 0 0 1 .25.25v4.146a.25.25 0 0 1-.427.177L13.03 4.03 9.28 7.78a.75.75 0 0 1-1.042-.018.75.75 0 0 1-.018-1.042l3.75-3.75-1.543-1.543A.25.25 0 0 1 10.604 1"/></svg>����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/link-external-24.svg�����������������������0000664�0000000�0000000�00000000716�14753064456�0027157�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 2.25a.75.75 0 0 1 .75-.75h5.5a.75.75 0 0 1 .75.75v5.5a.75.75 0 0 1-1.5 0V4.06l-6.22 6.22a.75.75 0 1 1-1.06-1.06L19.94 3h-3.69a.75.75 0 0 1-.75-.75"/><path d="M2.5 4.25c0-.966.784-1.75 1.75-1.75h8.5a.75.75 0 0 1 0 1.5h-8.5a.25.25 0 0 0-.25.25v15.5c0 .138.112.25.25.25h15.5a.25.25 0 0 0 .25-.25v-8.5a.75.75 0 0 1 1.5 0v8.5a1.75 1.75 0 0 1-1.75 1.75H4.25a1.75 1.75 0 0 1-1.75-1.75z"/></svg>��������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/list-ordered-16.svg������������������������0000664�0000000�0000000�00000001525�14753064456�0026777�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M5 3.25a.75.75 0 0 1 .75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5A.75.75 0 0 1 5 3.25m0 5a.75.75 0 0 1 .75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5A.75.75 0 0 1 5 8.25m0 5a.75.75 0 0 1 .75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1-.75-.75M.924 10.32a.5.5 0 0 1-.851-.525l.001-.001.001-.002.002-.004.007-.011q.147-.217.348-.384c.228-.19.588-.392 1.068-.392.468 0 .858.181 1.126.484.259.294.377.673.377 1.038 0 .987-.686 1.495-1.156 1.845l-.047.035c-.303.225-.522.4-.654.597h1.357a.5.5 0 0 1 0 1H.5a.5.5 0 0 1-.5-.5c0-1.005.692-1.52 1.167-1.875l.035-.025c.531-.396.8-.625.8-1.078a.57.57 0 0 0-.128-.376C1.806 10.068 1.695 10 1.5 10a.66.66 0 0 0-.429.163.8.8 0 0 0-.144.153ZM2.003 2.5V6h.503a.5.5 0 0 1 0 1H.5a.5.5 0 0 1 0-1h.503V3.308l-.28.14a.5.5 0 0 1-.446-.895l1.003-.5a.5.5 0 0 1 .723.447"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/list-ordered-24.svg������������������������0000664�0000000�0000000�00000001537�14753064456�0027001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.604 3.089A.75.75 0 0 1 4 3.75V8.5h.75a.75.75 0 0 1 0 1.5h-3a.75.75 0 1 1 0-1.5h.75V5.151l-.334.223a.75.75 0 0 1-.832-1.248l1.5-1a.75.75 0 0 1 .77-.037M8.75 5.5a.75.75 0 0 0 0 1.5h11.5a.75.75 0 0 0 0-1.5zm0 6a.75.75 0 0 0 0 1.5h11.5a.75.75 0 0 0 0-1.5zm0 6a.75.75 0 0 0 0 1.5h11.5a.75.75 0 0 0 0-1.5zM5.5 15.75c0-.704-.271-1.286-.72-1.686a2.3 2.3 0 0 0-1.53-.564c-.535 0-1.094.178-1.53.565-.449.399-.72.982-.72 1.685a.75.75 0 0 0 1.5 0c0-.296.104-.464.217-.564A.8.8 0 0 1 3.25 15c.215 0 .406.072.533.185.113.101.217.268.217.565 0 .332-.069.48-.21.657-.092.113-.216.24-.403.419l-.147.14c-.152.144-.33.313-.52.504l-1.5 1.5a.75.75 0 0 0-.22.53v.25c0 .414.336.75.75.75H5A.75.75 0 0 0 5 19H3.31l.47-.47c.176-.176.333-.324.48-.465l.165-.156a6 6 0 0 0 .536-.566c.358-.447.539-.925.539-1.593"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/list-unordered-16.svg����������������������0000664�0000000�0000000�00000000515�14753064456�0027340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M5.75 2.5h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1 0-1.5m0 5h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1 0-1.5m0 5h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1 0-1.5M2 14a1 1 0 1 1 0-2 1 1 0 0 1 0 2m1-6a1 1 0 1 1-2 0 1 1 0 0 1 2 0M2 4a1 1 0 1 1 0-2 1 1 0 0 1 0 2"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/list-unordered-24.svg����������������������0000664�0000000�0000000�00000000521�14753064456�0027334�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.75 5.5h11.5a.75.75 0 0 1 0 1.5H8.75a.75.75 0 0 1 0-1.5m0 6h11.5a.75.75 0 0 1 0 1.5H8.75a.75.75 0 0 1 0-1.5m0 6h11.5a.75.75 0 0 1 0 1.5H8.75a.75.75 0 0 1 0-1.5M5 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0M4 7a1 1 0 1 1 0-2 1 1 0 0 1 0 2m0 12a1 1 0 1 1 0-2 1 1 0 0 1 0 2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/location-16.svg����������������������������0000664�0000000�0000000�00000000453�14753064456�0026211�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m12.596 11.596-3.535 3.536a1.5 1.5 0 0 1-2.122 0l-3.535-3.536a6.5 6.5 0 1 1 9.192-9.193 6.5 6.5 0 0 1 0 9.193m-1.06-8.132za5 5 0 1 0-7.072 7.072L8 14.07l3.536-3.534a5 5 0 0 0 0-7.072M8 9a2 2 0 1 1-.001-3.999A2 2 0 0 1 8 9"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/location-24.svg����������������������������0000664�0000000�0000000�00000000706�14753064456�0026211�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 13.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5"/><path d="M19.071 3.429h.001c3.905 3.905 3.905 10.237 0 14.142l-5.403 5.403a2.36 2.36 0 0 1-3.336 0l-5.375-5.375-.028-.028c-3.905-3.905-3.905-10.237 0-14.142s10.236-3.905 14.141 0M5.99 4.489v.001a8.5 8.5 0 0 0 0 12.02l.023.024.002.002 5.378 5.378a.86.86 0 0 0 1.214 0l5.403-5.404a8.5 8.5 0 0 0-.043-11.977A8.5 8.5 0 0 0 5.99 4.489"/></svg>����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/lock-16.svg��������������������������������0000664�0000000�0000000�00000000544�14753064456�0025332�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M4 4a4 4 0 0 1 8 0v2h.25c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 12.25 15h-8.5A1.75 1.75 0 0 1 2 13.25v-5.5C2 6.784 2.784 6 3.75 6H4Zm8.25 3.5h-8.5a.25.25 0 0 0-.25.25v5.5c0 .138.112.25.25.25h8.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25M10.5 6V4a2.5 2.5 0 1 0-5 0v2Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/lock-24.svg��������������������������������0000664�0000000�0000000�00000000551�14753064456�0025327�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 9V7.25C6 3.845 8.503 1 12 1s6 2.845 6 6.25V9h.5a2.5 2.5 0 0 1 2.5 2.5v8a2.5 2.5 0 0 1-2.5 2.5h-13A2.5 2.5 0 0 1 3 19.5v-8A2.5 2.5 0 0 1 5.5 9Zm-1.5 2.5v8a1 1 0 0 0 1 1h13a1 1 0 0 0 1-1v-8a1 1 0 0 0-1-1h-13a1 1 0 0 0-1 1m3-4.25V9h9V7.25c0-2.67-1.922-4.75-4.5-4.75S7.5 4.58 7.5 7.25"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/log-16.svg���������������������������������0000664�0000000�0000000�00000002116�14753064456�0025160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M5 8.25a.75.75 0 0 1 .75-.75h4a.75.75 0 0 1 0 1.5h-4A.75.75 0 0 1 5 8.25M4 10.5A.75.75 0 0 0 4 12h4a.75.75 0 0 0 0-1.5z"/><path d="M13-.005c1.654 0 3 1.328 3 3 0 .982-.338 1.933-.783 2.818-.443.879-1.028 1.758-1.582 2.588l-.011.017c-.568.853-1.104 1.659-1.501 2.446-.398.789-.623 1.494-.623 2.136a1.5 1.5 0 1 0 2.333-1.248.75.75 0 0 1 .834-1.246A3 3 0 0 1 13 16H3a3 3 0 0 1-3-3c0-1.582.891-3.135 1.777-4.506q.315-.483.623-.946c.473-.709.923-1.386 1.287-2.048H2.51c-.576 0-1.381-.133-1.907-.783A2.68 2.68 0 0 1 0 2.995a3 3 0 0 1 3-3Zm0 1.5a1.5 1.5 0 0 0-1.5 1.5c0 .476.223.834.667 1.132A.75.75 0 0 1 11.75 5.5H5.368c-.467 1.003-1.141 2.015-1.773 2.963-.192.289-.381.571-.558.845C2.13 10.711 1.5 11.916 1.5 13A1.5 1.5 0 0 0 3 14.5h7.401A3 3 0 0 1 10 13c0-.979.338-1.928.784-2.812.441-.874 1.023-1.748 1.575-2.576l.017-.026c.568-.853 1.103-1.658 1.501-2.448s.623-1.497.623-2.143c0-.838-.669-1.5-1.5-1.5m-10 0a1.5 1.5 0 0 0-1.5 1.5c0 .321.1.569.27.778.097.12.325.227.74.227h7.674A2.7 2.7 0 0 1 10 2.995c0-.546.146-1.059.401-1.5Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/log-24.svg���������������������������������0000664�0000000�0000000�00000002452�14753064456�0025162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.197 10a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5zm-2.382 4a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5zm-1.581 4a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5z"/><path d="M4.125 0h15.75a4.1 4.1 0 0 1 2.92 1.205A4.1 4.1 0 0 1 24 4.125c0 1.384-.476 2.794-1.128 4.16-.652 1.365-1.515 2.757-2.352 4.104l-.008.013c-.849 1.368-1.669 2.691-2.28 3.97-.614 1.283-.982 2.45-.982 3.503a2.625 2.625 0 1 0 4.083-2.183.75.75 0 1 1 .834-1.247A4.126 4.126 0 0 1 19.875 24H4.5a4.125 4.125 0 0 1-4.125-4.125c0-2.234 1.258-4.656 2.59-6.902.348-.586.702-1.162 1.05-1.728.8-1.304 1.567-2.553 2.144-3.738H3.39c-.823 0-1.886-.193-2.567-1.035A3.65 3.65 0 0 1 0 4.125 4.125 4.125 0 0 1 4.125 0M15.75 19.875c0-1.38.476-2.786 1.128-4.15.649-1.358 1.509-2.743 2.343-4.086l.017-.028c.849-1.367 1.669-2.692 2.28-3.972.614-1.285.982-2.457.982-3.514A2.615 2.615 0 0 0 19.875 1.5a2.625 2.625 0 0 0-2.625 2.625c0 .865.421 1.509 1.167 2.009A.75.75 0 0 1 18 7.507H7.812c-.65 1.483-1.624 3.069-2.577 4.619-.334.544-.666 1.083-.98 1.612-1.355 2.287-2.38 4.371-2.38 6.137A2.625 2.625 0 0 0 4.5 22.5h12.193a4.1 4.1 0 0 1-.943-2.625M1.5 4.125c-.01.511.163 1.008.487 1.403.254.313.74.479 1.402.479h12.86a3.65 3.65 0 0 1-.499-1.882 4.1 4.1 0 0 1 .943-2.625H4.125A2.625 2.625 0 0 0 1.5 4.125"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/logo-gist-16.svg���������������������������0000664�0000000�0000000�00000001623�14753064456�0026305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25 16"><path d="M4.7 8.73v-1h3.52v5.69c-.78.37-1.95.64-3.59.64C1.11 14.06 0 11.37 0 8.03S1.13 2 4.63 2c1.62 0 2.64.33 3.28.66v1.05c-1.22-.5-2-.73-3.28-.73-2.57 0-3.48 2.21-3.48 5.06s.91 5.05 3.47 5.05c.89 0 1.98-.07 2.53-.34V8.73Zm10.98.69h.03c2.22.2 2.75.95 2.75 2.23 0 1.21-.76 2.41-3.14 2.41-.75 0-1.83-.19-2.33-.39v-.94c.47.17 1.22.36 2.33.36 1.62 0 2.06-.69 2.06-1.42 0-.71-.22-1.21-1.77-1.34-2.26-.2-2.73-1-2.73-2.08 0-1.11.72-2.31 2.92-2.31.73 0 1.56.09 2.25.39v.94c-.61-.2-1.22-.36-2.27-.36-1.55 0-1.88.57-1.88 1.34 0 .69.28 1.04 1.78 1.17m8.58-3.33v.85h-2.42v4.87c0 .95.53 1.34 1.5 1.34.2 0 .42 0 .61-.03v.89c-.17.03-.5.05-.69.05-1.31 0-2.5-.6-2.5-2.13v-5H19.2v-.48l1.56-.44V3.9l1.08-.31v2.5zm-13.17-.03v6.41c0 .54.19.7.67.7v.89c-1.14 0-1.72-.47-1.72-1.72V6.06zm.25-2.33c0 .44-.34.78-.78.78a.76.76 0 0 1-.77-.78c0-.44.32-.78.77-.78s.78.34.78.78"/></svg>�������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/logo-gist-24.svg���������������������������0000664�0000000�0000000�00000002056�14753064456�0026305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38 24"><path d="M7.05 13.095v-1.5h5.28v8.535c-1.17.555-2.925.96-5.385.96C1.665 21.09 0 17.055 0 12.045S1.695 3 6.945 3c2.43 0 3.96.495 4.92.99v1.575c-1.83-.75-3-1.095-4.92-1.095-3.855 0-5.22 3.315-5.22 7.59s1.365 7.575 5.205 7.575c1.335 0 2.97-.105 3.795-.51v-6.03zm16.47 1.035h.045c3.33.3 4.125 1.425 4.125 3.345 0 1.815-1.14 3.615-4.71 3.615-1.125 0-2.745-.285-3.495-.585v-1.41c.705.255 1.83.54 3.495.54 2.43 0 3.09-1.035 3.09-2.13 0-1.065-.33-1.815-2.655-2.01-3.39-.3-4.095-1.5-4.095-3.12 0-1.665 1.08-3.465 4.38-3.465 1.095 0 2.34.135 3.375.585v1.41c-.915-.3-1.83-.54-3.405-.54-2.325 0-2.82.855-2.82 2.01 0 1.035.42 1.56 2.67 1.755m12.87-4.995v1.275h-3.63v7.305c0 1.425.795 2.01 2.25 2.01.3 0 .63 0 .915-.045v1.335c-.255.045-.75.075-1.035.075-1.965 0-3.75-.9-3.75-3.195v-7.5H28.8v-.72l2.34-.66V5.85l1.62-.465v3.75zM16.635 9.09v9.615c0 .81.285 1.05 1.005 1.05v1.335c-1.71 0-2.58-.705-2.58-2.58V9.09zm.375-3.495c0 .66-.51 1.17-1.17 1.17a1.14 1.14 0 0 1-1.155-1.17c0-.66.48-1.17 1.155-1.17s1.17.51 1.17 1.17"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/logo-github-16.svg�������������������������0000664�0000000�0000000�00000003550�14753064456�0026622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 16"><path d="M8.81 7.35v5.74c0 .04-.01.11-.06.13 0 0-1.25.89-3.31.89-2.49 0-5.44-.78-5.44-5.92S2.58 1.99 5.1 2c2.18 0 3.06.49 3.2.58.04.05.06.09.06.14L7.94 4.5c0 .09-.09.2-.2.17-.36-.11-.9-.33-2.17-.33-1.47 0-3.05.42-3.05 3.73s1.5 3.7 2.58 3.7c.92 0 1.25-.11 1.25-.11v-2.3H4.88c-.11 0-.19-.08-.19-.17V7.35c0-.09.08-.17.19-.17h3.74c.11 0 .19.08.19.17m35.85 2.33c0 3.43-1.11 4.41-3.05 4.41-1.64 0-2.52-.83-2.52-.83s-.04.46-.09.52c-.03.06-.08.08-.14.08h-1.48c-.1 0-.19-.08-.19-.17l.02-11.11c0-.09.08-.17.17-.17h2.13c.09 0 .17.08.17.17v3.77s.82-.53 2.02-.53l-.01-.02c1.2 0 2.97.45 2.97 3.88M27.68 2.43c.09 0 .17.08.17.17v11.11c0 .09-.08.17-.17.17h-2.13c-.09 0-.17-.08-.17-.17l.02-4.75h-3.31v4.75c0 .09-.08.17-.17.17h-2.13c-.08 0-.17-.08-.17-.17V2.6c0-.09.08-.17.17-.17h2.13c.09 0 .17.08.17.17v4.09h3.31V2.6c0-.09.08-.17.17-.17Zm8.26 3.64c.11 0 .19.08.19.17l-.02 7.47c0 .09-.06.17-.17.17H34.6c-.07 0-.14-.04-.16-.09-.03-.06-.08-.45-.08-.45s-1.13.77-2.52.77c-1.69 0-2.92-.55-2.92-2.75V6.25c0-.09.08-.17.17-.17h2.14c.09 0 .17.08.17.17V11c0 .75.22 1.09.97 1.09s1.3-.39 1.3-.39V6.26c0-.11.06-.19.17-.19Zm-17.406 5.971h.005a.18.18 0 0 1 .141.179v1.5c0 .07-.03.14-.09.16-.1.05-.74.22-1.27.22-1.16 0-2.86-.25-2.86-2.69V8.13h-1.11c-.09 0-.17-.08-.17-.19V6.58c0-.08.05-.15.13-.17.07-.01 1.16-.28 1.16-.28V3.96c0-.08.05-.13.14-.13h2.16c.09 0 .14.05.14.13v2.11h1.59c.08 0 .16.08.16.17v1.7c0 .11-.07.19-.16.19h-1.59v3.131c0 .47.27.83 1.05.83.247 0 .481-.049.574-.05M12.24 6.06c.09 0 .17.08.17.17v7.37c0 .18-.05.27-.25.27h-1.92c-.17 0-.3-.07-.3-.27V6.26c0-.11.08-.2.17-.2Zm29.99 3.78c0-1.81-.73-2.05-1.5-1.97-.6.04-1.08.34-1.08.34v3.52s.49.34 1.22.36c1.03.03 1.36-.34 1.36-2.25M11.19 2.68c.75 0 1.36.61 1.36 1.38s-.61 1.38-1.36 1.38c-.77 0-1.38-.61-1.38-1.38s.61-1.38 1.38-1.38m7.34 9.35zl.01.01h-.001l-.005-.001v.001c-.009-.001-.015-.011-.024-.011Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/logo-github-24.svg�������������������������0000664�0000000�0000000�00000004173�14753064456�0026623�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 24"><path d="M27.8 17.908h-.03c.013 0 .022.014.035.017l.01-.002zm.005.017c-.14.001-.49.073-.861.073-1.17 0-1.575-.536-1.575-1.234v-4.652h2.385c.135 0 .24-.12.24-.283V9.302c0-.133-.12-.252-.24-.252H25.37V5.913c0-.119-.075-.193-.21-.193h-3.24c-.136 0-.21.074-.21.193V9.14s-1.636.401-1.741.416a.255.255 0 0 0-.195.253v2.021c0 .164.12.282.255.282h1.665v4.876c0 3.627 2.55 3.998 4.29 3.998.796 0 1.756-.252 1.906-.327.09-.03.135-.134.135-.238v-2.23a.264.264 0 0 0-.219-.265Zm35.549-3.272c0-2.69-1.095-3.047-2.25-2.928-.9.06-1.62.505-1.62.505v5.232s.735.506 1.83.536c1.545.044 2.04-.506 2.04-3.345M67 14.415c0 5.099-1.665 6.555-4.576 6.555-2.46 0-3.78-1.233-3.78-1.233s-.06.683-.135.773c-.045.089-.12.118-.21.118h-2.22c-.15 0-.286-.119-.286-.252l.03-16.514a.26.26 0 0 1 .255-.252h3.196a.26.26 0 0 1 .255.252v5.604s1.23-.788 3.03-.788l-.015-.03c1.8 0 4.456.67 4.456 5.767M53.918 9.05h-3.15c-.165 0-.255.119-.255.282v8.086s-.826.58-1.95.58c-1.126 0-1.456-.506-1.456-1.62v-7.06a.26.26 0 0 0-.255-.254h-3.21a.26.26 0 0 0-.256.253v7.596c0 3.27 1.846 4.087 4.381 4.087 2.085 0 3.78-1.145 3.78-1.145s.076.58.12.67c.03.074.136.133.24.133h2.011a.243.243 0 0 0 .255-.253l.03-11.103c0-.133-.12-.252-.285-.252m-35.556-.015h-3.195c-.135 0-.255.134-.255.297v10.91c0 .297.195.401.45.401h2.88c.3 0 .375-.134.375-.401V9.287a.26.26 0 0 0-.255-.252M16.787 4.01c-1.155 0-2.07.907-2.07 2.051s.915 2.051 2.07 2.051a2.04 2.04 0 0 0 2.04-2.05 2.04 2.04 0 0 0-2.04-2.052m24.74-.372H38.36a.26.26 0 0 0-.255.253v6.08H33.14v-6.08a.26.26 0 0 0-.255-.253h-3.196a.26.26 0 0 0-.255.253v16.514c0 .133.135.252.255.252h3.196a.26.26 0 0 0 .255-.253v-7.06h4.966l-.03 7.06c0 .134.12.253.255.253h3.195a.26.26 0 0 0 .255-.253V3.892a.26.26 0 0 0-.255-.253Zm-28.31 7.313v8.532c0 .06-.015.163-.09.193 0 0-1.875 1.323-4.966 1.323C4.426 21 0 19.84 0 12.2S3.87 2.986 7.651 3c3.27 0 4.59.728 4.8.862.06.075.09.134.09.208l-.63 2.646c0 .134-.134.297-.3.253-.54-.164-1.35-.49-3.255-.49-2.205 0-4.575.623-4.575 5.543s2.25 5.5 3.87 5.5c1.38 0 1.875-.164 1.875-.164V13.94H7.321c-.165 0-.285-.12-.285-.253v-2.735c0-.134.12-.252.285-.252h5.61c.166 0 .286.118.286.252Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/mail-16.svg��������������������������������0000664�0000000�0000000�00000000570�14753064456�0025323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1.75 2h12.5c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 14.25 14H1.75A1.75 1.75 0 0 1 0 12.25v-8.5C0 2.784.784 2 1.75 2M1.5 12.251c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25V5.809L8.38 9.397a.75.75 0 0 1-.76 0L1.5 5.809zm13-8.181v-.32a.25.25 0 0 0-.25-.25H1.75a.25.25 0 0 0-.25.25v.32L8 7.88Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/mail-24.svg��������������������������������0000664�0000000�0000000�00000000622�14753064456�0025320�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.75 3h20.5c.966 0 1.75.784 1.75 1.75v14a1.75 1.75 0 0 1-1.75 1.75H1.75A1.75 1.75 0 0 1 0 18.75v-14C0 3.784.784 3 1.75 3M1.5 7.412V18.75c0 .138.112.25.25.25h20.5a.25.25 0 0 0 .25-.25V7.412l-9.52 6.433c-.592.4-1.368.4-1.96 0Zm0-2.662v.852l10.36 7a.25.25 0 0 0 .28 0l10.36-7V4.75a.25.25 0 0 0-.25-.25H1.75a.25.25 0 0 0-.25.25"/></svg>��������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/mark-github-16.svg�������������������������0000664�0000000�0000000�00000001202�14753064456�0026604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 0c4.42 0 8 3.58 8 8a8.01 8.01 0 0 1-5.45 7.59c-.4.08-.55-.17-.55-.38 0-.27.01-1.13.01-2.2 0-.75-.25-1.23-.54-1.48 1.78-.2 3.65-.88 3.65-3.95 0-.88-.31-1.59-.82-2.15.08-.2.36-1.02-.08-2.12 0 0-.67-.22-2.2.82-.64-.18-1.32-.27-2-.27s-1.36.09-2 .27c-1.53-1.03-2.2-.82-2.2-.82-.44 1.1-.16 1.92-.08 2.12-.51.56-.82 1.28-.82 2.15 0 3.06 1.86 3.75 3.64 3.95-.23.2-.44.55-.51 1.07-.46.21-1.61.55-2.33-.66-.15-.24-.6-.83-1.23-.82-.67.01-.27.38.01.53.34.19.73.9.82 1.13.16.45.68 1.31 2.69.94 0 .67.01 1.3.01 1.49 0 .21-.15.45-.55.38A7.995 7.995 0 0 1 0 8c0-4.42 3.58-8 8-8"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/mark-github-24.svg�������������������������0000664�0000000�0000000�00000001456�14753064456�0026616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.5.75C6.146.75 1 5.896 1 12.25c0 5.089 3.292 9.387 7.863 10.91.575.101.79-.244.79-.546 0-.273-.014-1.178-.014-2.142-2.889.532-3.636-.704-3.866-1.35-.13-.331-.69-1.352-1.18-1.625-.402-.216-.977-.748-.014-.762.906-.014 1.553.834 1.769 1.179 1.035 1.74 2.688 1.25 3.349.948.1-.747.402-1.25.733-1.538-2.559-.287-5.232-1.279-5.232-5.678 0-1.25.445-2.285 1.178-3.09-.115-.288-.517-1.467.115-3.048 0 0 .963-.302 3.163 1.179.92-.259 1.897-.388 2.875-.388.977 0 1.955.13 2.875.388 2.2-1.495 3.162-1.179 3.162-1.179.633 1.581.23 2.76.115 3.048.733.805 1.179 1.825 1.179 3.09 0 4.413-2.688 5.39-5.247 5.678.417.36.776 1.05.776 2.128 0 1.538-.014 2.774-.014 3.162 0 .302.216.662.79.547C20.709 21.637 24 17.324 24 12.25 24 5.896 18.854.75 12.5.75"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/markdown-16.svg����������������������������0000664�0000000�0000000�00000000410�14753064456�0026214�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M14.85 3c.63 0 1.15.52 1.14 1.15v7.7c0 .63-.51 1.15-1.15 1.15H1.15C.52 13 0 12.48 0 11.84V4.15C0 3.52.52 3 1.15 3ZM9 11V5H7L5.5 7 4 5H2v6h2V8l1.5 1.92L7 8v3Zm2.99.5L14.5 8H13V5h-2v3H9.5Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/markdown-24.svg����������������������������0000664�0000000�0000000�00000000570�14753064456�0026222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.289 4.5A1.71 1.71 0 0 1 24 6.226v11.557c0 .946-.766 1.726-1.726 1.726H1.726A1.74 1.74 0 0 1 0 17.768V6.226C0 5.28.78 4.5 1.726 4.5Zm-8.781 12.007V7.501h-3.002l-2.251 3.002-2.252-3.002H3.002v9.006h3.001v-4.503l2.252 2.882 2.251-2.882v4.503Zm4.489.75 3.767-5.253h-2.251V7.501h-3.002v4.503h-2.252Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/megaphone-16.svg���������������������������0000664�0000000�0000000�00000001703�14753064456�0026343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.25 9a.75.75 0 0 1 .75.75c0 2.142.456 3.828.733 4.653a.12.12 0 0 0 .05.064.2.2 0 0 0 .117.033h1.31c.085 0 .18-.042.258-.152a.45.45 0 0 0 .075-.366A16.7 16.7 0 0 1 6 9.75a.75.75 0 0 1 1.5 0c0 1.588.25 2.926.494 3.85.293 1.113-.504 2.4-1.783 2.4H4.9c-.686 0-1.35-.41-1.589-1.12A16.4 16.4 0 0 1 2.5 9.75.75.75 0 0 1 3.25 9"/><path d="M0 6a4 4 0 0 1 4-4h2.75a.75.75 0 0 1 .75.75v6.5a.75.75 0 0 1-.75.75H4a4 4 0 0 1-4-4m4-2.5a2.5 2.5 0 1 0 0 5h2v-5Z"/><path d="M15.59.082A.75.75 0 0 1 16 .75v10.5a.75.75 0 0 1-1.189.608l-.002-.001h.001l-.014-.01a6 6 0 0 0-.422-.25 10.6 10.6 0 0 0-1.469-.64C11.576 10.484 9.536 10 6.75 10a.75.75 0 0 1 0-1.5c2.964 0 5.174.516 6.658 1.043.423.151.787.302 1.092.443V2.014c-.305.14-.669.292-1.092.443C11.924 2.984 9.713 3.5 6.75 3.5a.75.75 0 0 1 0-1.5c2.786 0 4.826-.484 6.155-.957.665-.236 1.154-.47 1.47-.64q.216-.116.421-.25l.014-.01a.75.75 0 0 1 .78-.061"/></svg>�������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/megaphone-24.svg���������������������������0000664�0000000�0000000�00000001512�14753064456�0026340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 1.75v14.5a.75.75 0 0 1-.399.662c-.384.204-.783-.035-1.139-.248l-.003-.002c-.09-.054-.177-.107-.261-.15a15.5 15.5 0 0 0-2-.849c-1.738-.607-4.321-1.223-7.703-1.251a1 1 0 0 1 .005.088c0 2.279.494 4.279.906 5.547.368 1.131-.438 2.453-1.732 2.453H7.661c-.696 0-1.36-.42-1.6-1.129C5.684 20.255 5 17.811 5 14.75v-.457A5.5 5.5 0 0 1 6.5 3.5h3.75c3.505 0 6.175-.61 7.955-1.21a16 16 0 0 0 2.002-.82 9 9 0 0 0 .49-.262q.072-.041.142-.085A.751.751 0 0 1 22 1.75M10.5 12.912c3.564.029 6.313.678 8.193 1.335.737.258 1.34.517 1.807.74V2.993c-.467.216-1.073.467-1.815.718-1.878.634-4.624 1.26-8.185 1.288ZM6.5 5a4 4 0 0 0 0 8H9V5Zm0 9.75c0 2.847.638 5.123.982 6.141.018.051.074.109.179.109h2.013c.087 0 .179-.043.249-.147a.4.4 0 0 0 .057-.343C9.537 19.148 9 16.986 9 14.5H6.5Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/mention-16.svg�����������������������������0000664�0000000�0000000�00000000552�14753064456�0026052�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M4.75 2.37a6.501 6.501 0 0 0 6.5 11.26.75.75 0 0 1 .75 1.298A7.999 7.999 0 0 1 .989 4.148 8 8 0 0 1 16 7.75v1.5a2.75 2.75 0 0 1-5.072 1.475 3.999 3.999 0 0 1-6.65-4.19A4 4 0 0 1 12 8v1.25a1.25 1.25 0 0 0 2.5 0V7.867a6.5 6.5 0 0 0-9.75-5.496ZM10.5 8a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/mention-24.svg�����������������������������0000664�0000000�0000000�00000001041�14753064456�0026043�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.226 7.25c-2.623-4.542-8.432-6.098-12.974-3.475-4.543 2.622-6.099 8.431-3.477 12.974 2.623 4.542 8.431 6.099 12.974 3.477a.75.75 0 0 1 .75 1.299c-5.26 3.037-11.987 1.235-15.024-4.026C-.562 12.24 1.24 5.512 6.501 2.475 11.76-.562 18.488 1.24 21.525 6.501a10.96 10.96 0 0 1 1.455 4.826q.02.084.02.173v2.25a3.5 3.5 0 0 1-6.623 1.581 5.5 5.5 0 1 1 1.112-3.682 1 1 0 0 1 .011.129v1.972a2 2 0 1 0 4 0v-1.766a9.46 9.46 0 0 0-1.274-4.733ZM16 12a4 4 0 1 0-8 0 4 4 0 0 0 8 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/meter-16.svg�������������������������������0000664�0000000�0000000�00000000503�14753064456�0025511�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 1.5a6.5 6.5 0 1 0 6.016 4.035.75.75 0 0 1 1.388-.57 8 8 0 1 1-4.37-4.37.75.75 0 1 1-.569 1.389A6.5 6.5 0 0 0 8 1.5m6.28.22a.75.75 0 0 1 0 1.06l-4.063 4.064a2.5 2.5 0 1 1-1.06-1.06L13.22 1.72a.75.75 0 0 1 1.06 0M7 8a1 1 0 1 0 2 0 1 1 0 0 0-2 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/meter-24.svg�������������������������������0000664�0000000�0000000�00000000677�14753064456�0025524�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2.5a9.5 9.5 0 1 0 9.5 9.5c0-1.406-.305-2.74-.852-3.939a.75.75 0 0 1 1.364-.622C22.648 8.829 23 10.374 23 12c0 6.075-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1c1.626 0 3.17.353 4.561.988a.75.75 0 1 1-.622 1.364A9.5 9.5 0 0 0 12 2.5m9.03.47a.75.75 0 0 1 0 1.06l-6.445 6.446a3 3 0 1 1-1.06-1.06L19.97 2.97a.75.75 0 0 1 1.06 0M12 10.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/milestone-16.svg���������������������������0000664�0000000�0000000�00000000723�14753064456�0026400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.75 0a.75.75 0 0 1 .75.75V3h3.634c.414 0 .814.147 1.13.414l2.07 1.75a1.75 1.75 0 0 1 0 2.672l-2.07 1.75a1.75 1.75 0 0 1-1.13.414H8.5v5.25a.75.75 0 0 1-1.5 0V10H2.75A1.75 1.75 0 0 1 1 8.25v-3.5C1 3.784 1.784 3 2.75 3H7V.75A.75.75 0 0 1 7.75 0m4.384 8.5a.25.25 0 0 0 .161-.06l2.07-1.75a.248.248 0 0 0 0-.38l-2.07-1.75a.25.25 0 0 0-.161-.06H2.75a.25.25 0 0 0-.25.25v3.5c0 .138.112.25.25.25z"/></svg>���������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/milestone-24.svg���������������������������0000664�0000000�0000000�00000000744�14753064456�0026402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.75 1a.75.75 0 0 1 .75.75V4h6.532c.42 0 .826.15 1.143.425l3.187 2.75a1.75 1.75 0 0 1 0 2.65l-3.187 2.75a1.75 1.75 0 0 1-1.143.425H12.5v9.25a.75.75 0 0 1-1.5 0V13H3.75A1.75 1.75 0 0 1 2 11.25v-5.5C2 4.783 2.784 4 3.75 4H11V1.75a.75.75 0 0 1 .75-.75m7.282 4.5H3.75a.25.25 0 0 0-.25.25v5.5c0 .138.112.25.25.25h15.282c.06 0 .118-.021.163-.06l3.188-2.75a.248.248 0 0 0 0-.38l-3.188-2.75a.25.25 0 0 0-.163-.06"/></svg>����������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/mirror-16.svg������������������������������0000664�0000000�0000000�00000001222�14753064456�0025706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M15.547 3.061A.75.75 0 0 1 16 3.75v8.5a.751.751 0 0 1-1.265.545l-4.5-4.25a.75.75 0 0 1 0-1.09l4.5-4.25a.75.75 0 0 1 .812-.144M0 12.25v-8.5a.751.751 0 0 1 1.265-.545l4.5 4.25a.75.75 0 0 1 0 1.09l-4.5 4.25A.75.75 0 0 1 0 12.25m1.5-6.76v5.02L4.158 8ZM11.842 8l2.658 2.51V5.49ZM8 4a.75.75 0 0 1 .75.75v.5a.75.75 0 0 1-1.5 0v-.5A.75.75 0 0 1 8 4m.75-2.25v.5a.75.75 0 0 1-1.5 0v-.5a.75.75 0 0 1 1.5 0m0 6v.5a.75.75 0 0 1-1.5 0v-.5a.75.75 0 0 1 1.5 0M8 10a.75.75 0 0 1 .75.75v.5a.75.75 0 0 1-1.5 0v-.5A.75.75 0 0 1 8 10m0 3a.75.75 0 0 1 .75.75v.5a.75.75 0 0 1-1.5 0v-.5A.75.75 0 0 1 8 13"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/mirror-24.svg������������������������������0000664�0000000�0000000�00000001354�14753064456�0025713�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.553 6.064A.75.75 0 0 1 22 6.75v10.5a.75.75 0 0 1-1.256.554l-5.75-5.25a.75.75 0 0 1 0-1.108l5.75-5.25a.75.75 0 0 1 .809-.132M2.447 17.936A.75.75 0 0 1 2 17.25V6.75a.75.75 0 0 1 1.256-.554l5.75 5.25a.75.75 0 0 1 0 1.108l-5.75 5.25a.75.75 0 0 1-.809.132M7.387 12 3.5 8.45v7.1L7.388 12Zm9.226 0 3.887 3.55v-7.1L16.612 12ZM12 2.75a.75.75 0 0 1 .75.75v1a.75.75 0 0 1-1.5 0v-1a.75.75 0 0 1 .75-.75m0 4a.75.75 0 0 1 .75.75v1a.75.75 0 0 1-1.5 0v-1a.75.75 0 0 1 .75-.75m0 8a.75.75 0 0 1 .75.75v1a.75.75 0 0 1-1.5 0v-1a.75.75 0 0 1 .75-.75m0 4a.75.75 0 0 1 .75.75v1a.75.75 0 0 1-1.5 0v-1a.75.75 0 0 1 .75-.75m0-8a.75.75 0 0 1 .75.75v1a.75.75 0 0 1-1.5 0v-1a.75.75 0 0 1 .75-.75"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/moon-16.svg��������������������������������0000664�0000000�0000000�00000000424�14753064456�0025347�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M9.598 1.591a.75.75 0 0 1 .785-.175 7.001 7.001 0 1 1-8.967 8.967.75.75 0 0 1 .961-.96 5.5 5.5 0 0 0 7.046-7.046.75.75 0 0 1 .175-.786m1.616 1.945a7 7 0 0 1-7.678 7.678 5.499 5.499 0 1 0 7.678-7.678"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/moon-24.svg��������������������������������0000664�0000000�0000000�00000000672�14753064456�0025353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.768 3.96zl-.002-.005a9 9 0 0 0-.218-.779c-.13-.394.21-.8.602-.67q.435.144.855.328l.01.005A10.002 10.002 0 0 1 12 22a10 10 0 0 1-9.162-5.985l-.004-.01a10 10 0 0 1-.329-.855c-.13-.392.277-.732.67-.602q.386.126.78.218l.004.002A9 9 0 0 0 14.999 6a9 9 0 0 0-.231-2.04M16.5 6c0 5.799-4.701 10.5-10.5 10.5q-.64 0-1.26-.075A8.5 8.5 0 1 0 16.425 4.74q.075.62.075 1.259Z"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/mortar-board-16.svg������������������������0000664�0000000�0000000�00000001310�14753064456�0026763�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.693 1.066a.75.75 0 0 1 .614 0l7.25 3.25a.75.75 0 0 1 0 1.368L13 6.831v2.794c0 1.024-.81 1.749-1.66 2.173-.893.447-2.075.702-3.34.702q-.417 0-.816-.036a.75.75 0 0 1 .133-1.494Q7.649 11 8 11c1.082 0 2.025-.221 2.67-.543.69-.345.83-.682.83-.832V7.503L8.307 8.934a.75.75 0 0 1-.614 0L4 7.28v1.663c.296.105.575.275.812.512.438.438.688 1.059.688 1.796v3a.75.75 0 0 1-.75.75h-3a.75.75 0 0 1-.75-.75v-3c0-.737.25-1.358.688-1.796.237-.237.516-.407.812-.512V6.606L.443 5.684a.75.75 0 0 1 0-1.368ZM2.583 5 8 7.428 13.416 5 8 2.572ZM2.5 11.25v2.25H4v-2.25c0-.388-.125-.611-.25-.735a.7.7 0 0 0-.5-.203.7.7 0 0 0-.5.203c-.125.124-.25.347-.25.735"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/mortar-board-24.svg������������������������0000664�0000000�0000000�00000001741�14753064456�0026772�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.292 2.06zl11.25 4.75a.749.749 0 0 1 0 1.382L19 10.108V15a.75.75 0 0 1-.11.391h-.001a3 3 0 0 1-.392.482c-.249.256-.625.58-1.163.896-1.08.638-2.776 1.23-5.334 1.23-.673 0-1.286-.041-1.846-.113a.75.75 0 0 1 .192-1.487c.492.063 1.042.1 1.654.1 2.317 0 3.746-.533 4.572-1.021.31-.178.596-.397.849-.65l.079-.085V10.74l-5.208 2.2a.75.75 0 0 1-.584 0L5.75 10.424v3.17c.502.129.96.391 1.327.758.579.578.923 1.41.923 2.428v4.5a.76.76 0 0 1-.345.634 2 2 0 0 1-.21.117 4 4 0 0 1-.52.213A6.1 6.1 0 0 1 5 22.532a6.1 6.1 0 0 1-1.925-.288 4 4 0 0 1-.52-.213 2 2 0 0 1-.22-.124.76.76 0 0 1-.335-.624v-4.5c0-1.02.344-1.85.923-2.43a2.9 2.9 0 0 1 1.327-.757V9.793L.458 8.19a.75.75 0 0 1 0-1.38l11.25-4.75a.75.75 0 0 1 .584 0M12 11.436 21.322 7.5 12 3.564 2.678 7.5ZM5 15c-.377 0-.745.141-1.017.413-.265.265-.483.7-.483 1.368v4.022c.299.105.797.228 1.5.228s1.201-.123 1.5-.228V16.78c0-.669-.218-1.103-.483-1.368A1.43 1.43 0 0 0 5 15"/></svg>�������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/move-to-bottom-16.svg����������������������0000664�0000000�0000000�00000000420�14753064456�0027263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.47 10.78a.75.75 0 0 0 1.06 0l3.75-3.75a.749.749 0 1 0-1.06-1.06L8.75 8.439V1.75a.75.75 0 0 0-1.5 0v6.689L4.78 5.97a.749.749 0 1 0-1.06 1.06zM3.75 13a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/move-to-bottom-24.svg����������������������0000664�0000000�0000000�00000000507�14753064456�0027270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 21.25a.75.75 0 0 1 .75-.75h14.5a.75.75 0 0 1 0 1.5H4.75a.75.75 0 0 1-.75-.75M5.22 9.97a.75.75 0 0 1 1.06 0l4.97 4.969V2.75a.75.75 0 0 1 1.5 0v12.189l4.97-4.969a.749.749 0 1 1 1.06 1.06l-6.25 6.25a.75.75 0 0 1-1.06 0l-6.25-6.25a.75.75 0 0 1 0-1.06"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/move-to-end-16.svg�������������������������0000664�0000000�0000000�00000000436�14753064456�0026534�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m10.78 8.53-3.75 3.75a.749.749 0 1 1-1.06-1.06l2.469-2.47H1.75a.75.75 0 0 1 0-1.5h6.689L5.97 4.78a.749.749 0 1 1 1.06-1.06l3.75 3.75a.75.75 0 0 1 0 1.06M13 12.25v-8.5a.75.75 0 0 1 1.5 0v8.5a.75.75 0 0 1-1.5 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/move-to-end-24.svg�������������������������0000664�0000000�0000000�00000000506�14753064456�0026531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.22 5.22a.75.75 0 0 1 1.06 0l6.25 6.25a.75.75 0 0 1 0 1.06l-6.25 6.25a.749.749 0 1 1-1.06-1.06l4.969-4.97H1.75a.75.75 0 0 1 0-1.5h14.439L11.22 6.28a.75.75 0 0 1 0-1.06m10.03-1.47a.75.75 0 0 1 .75.75v15a.75.75 0 0 1-1.5 0v-15a.75.75 0 0 1 .75-.75"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/move-to-start-16.svg�����������������������0000664�0000000�0000000�00000000420�14753064456�0027114�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M5.22 7.47a.75.75 0 0 0 0 1.06l3.75 3.75a.749.749 0 1 0 1.06-1.06L7.561 8.75h6.689a.75.75 0 0 0 0-1.5H7.561l2.469-2.47a.749.749 0 1 0-1.06-1.06zM3 3.75a.75.75 0 0 0-1.5 0v8.5a.75.75 0 0 0 1.5 0z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/move-to-start-24.svg�����������������������0000664�0000000�0000000�00000000507�14753064456�0027121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.78 18.78a.75.75 0 0 1-1.06 0l-6.25-6.25a.75.75 0 0 1 0-1.06l6.25-6.25a.749.749 0 1 1 1.06 1.06l-4.969 4.97H22.25a.75.75 0 0 1 0 1.5H7.811l4.969 4.97a.75.75 0 0 1 0 1.06M2.75 3.75a.75.75 0 0 1 .75.75v15a.75.75 0 0 1-1.5 0v-15a.75.75 0 0 1 .75-.75"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/move-to-top-16.svg�������������������������0000664�0000000�0000000�00000000463�14753064456�0026570�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3 2.25a.75.75 0 0 1 .75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5A.75.75 0 0 1 3 2.25m5.53 2.97 3.75 3.75a.749.749 0 1 1-1.06 1.06L8.75 7.561v6.689a.75.75 0 0 1-1.5 0V7.561L4.78 10.03a.749.749 0 1 1-1.06-1.06l3.75-3.75a.75.75 0 0 1 1.06 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/move-to-top-24.svg�������������������������0000664�0000000�0000000�00000000423�14753064456�0026563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.75 3.5a.75.75 0 0 1 0-1.5h14.5a.75.75 0 0 1 0 1.5zm.47 9.47a.749.749 0 1 0 1.06 1.06l4.97-4.969V21.25a.75.75 0 0 0 1.5 0V9.061l4.97 4.969a.749.749 0 1 0 1.06-1.06l-6.25-6.25a.75.75 0 0 0-1.06 0z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/multi-select-16.svg������������������������0000664�0000000�0000000�00000000632�14753064456�0027007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M5.75 7.5h7.5a.75.75 0 0 1 0 1.5h-7.5a.75.75 0 0 1 0-1.5m0 5h7.5a.75.75 0 0 1 0 1.5h-7.5a.75.75 0 0 1 0-1.5m-4-10h6.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1 0-1.5M2 14a1 1 0 1 1 0-2 1 1 0 0 1 0 2m1-6a1 1 0 1 1-2 0 1 1 0 0 1 2 0m10.314-3.082L11.07 2.417A.25.25 0 0 1 11.256 2h4.488a.25.25 0 0 1 .186.417l-2.244 2.5a.25.25 0 0 1-.372 0Z"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/multi-select-24.svg������������������������0000664�0000000�0000000�00000000633�14753064456�0027007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.75 11.5h11.5a.75.75 0 0 1 0 1.5H8.75a.75.75 0 0 1 0-1.5m0 6h11.5a.75.75 0 0 1 0 1.5H8.75a.75.75 0 0 1 0-1.5m-5-12h10a.75.75 0 0 1 0 1.5h-10a.75.75 0 0 1 0-1.5M5 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0m-1 7a1 1 0 1 1 0-2 1 1 0 0 1 0 2M19.309 7.918l-2.245-2.501A.25.25 0 0 1 17.25 5h4.49a.25.25 0 0 1 .185.417l-2.244 2.5a.25.25 0 0 1-.372 0Z"/></svg>�����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/mute-16.svg��������������������������������0000664�0000000�0000000�00000001136�14753064456�0025352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 2.75v10.5a.751.751 0 0 1-1.238.57L3.473 11H1.75A1.75 1.75 0 0 1 0 9.25v-2.5C0 5.784.784 5 1.75 5h1.722l3.29-2.82A.75.75 0 0 1 8 2.75m3.28 2.47L13 6.94l1.72-1.72a.75.75 0 0 1 1.042.018.75.75 0 0 1 .018 1.042L14.06 8l1.72 1.72a.749.749 0 0 1-.326 1.275.75.75 0 0 1-.734-.215L13 9.06l-1.72 1.72a.749.749 0 0 1-1.275-.326.75.75 0 0 1 .215-.734L11.94 8l-1.72-1.72a.749.749 0 0 1 .326-1.275.75.75 0 0 1 .734.215m-7.042 1.1a.75.75 0 0 1-.488.18h-2a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h2c.179 0 .352.064.488.18L6.5 11.62V4.38Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/mute-24.svg��������������������������������0000664�0000000�0000000�00000001001�14753064456�0025340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3.75v16.5a.75.75 0 0 1-1.255.555L5.46 16H2.75A1.75 1.75 0 0 1 1 14.25v-4.5C1 8.784 1.784 8 2.75 8h2.71l5.285-4.805A.75.75 0 0 1 12 3.75M6.255 9.305a.75.75 0 0 1-.505.195h-3a.25.25 0 0 0-.25.25v4.5c0 .138.112.25.25.25h3c.187 0 .367.069.505.195l4.245 3.86V5.445ZM16.28 8.22a.75.75 0 1 0-1.06 1.06L17.94 12l-2.72 2.72a.75.75 0 1 0 1.06 1.06L19 13.06l2.72 2.72a.75.75 0 1 0 1.06-1.06L20.06 12l2.72-2.72a.75.75 0 0 0-1.06-1.06L19 10.94z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/no-entry-16.svg����������������������������0000664�0000000�0000000�00000000336�14753064456�0026154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M4.25 7.25a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5z"/><path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-1.5 0a6.5 6.5 0 1 0-13 0 6.5 6.5 0 0 0 13 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/no-entry-24.svg����������������������������0000664�0000000�0000000�00000000453�14753064456�0026153�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1M2.5 12a9.5 9.5 0 0 0 9.5 9.5 9.5 9.5 0 0 0 9.5-9.5A9.5 9.5 0 0 0 12 2.5 9.5 9.5 0 0 0 2.5 12m15.75.75H5.75a.75.75 0 0 1 0-1.5h12.5a.75.75 0 0 1 0 1.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/no-entry-fill-12.svg�����������������������0000664�0000000�0000000�00000000172�14753064456�0027072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M6 0a6 6 0 1 1 0 12A6 6 0 0 1 6 0m3 5H3v2h6Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/north-star-16.svg��������������������������0000664�0000000�0000000�00000000567�14753064456�0026510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8.5.75a.75.75 0 0 0-1.5 0v5.19L4.391 3.33a.75.75 0 1 0-1.06 1.061L5.939 7H.75a.75.75 0 0 0 0 1.5h5.19l-2.61 2.609a.75.75 0 1 0 1.061 1.06L7 9.561v5.189a.75.75 0 0 0 1.5 0V9.56l2.609 2.61a.75.75 0 1 0 1.06-1.061L9.561 8.5h5.189a.75.75 0 0 0 0-1.5H9.56l2.61-2.609a.75.75 0 0 0-1.061-1.06L8.5 5.939z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/north-star-24.svg��������������������������0000664�0000000�0000000�00000000606�14753064456�0026501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.5 1.25a.75.75 0 0 0-1.5 0v8.69L6.447 5.385a.75.75 0 1 0-1.061 1.06L9.94 11H1.25a.75.75 0 0 0 0 1.5h8.69l-4.554 4.553a.75.75 0 0 0 1.06 1.061L11 13.561v8.689a.75.75 0 0 0 1.5 0v-8.69l4.553 4.554a.75.75 0 0 0 1.061-1.06L13.561 12.5h8.689a.75.75 0 0 0 0-1.5h-8.69l4.554-4.553a.75.75 0 1 0-1.06-1.061L12.5 9.939z"/></svg>��������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/note-16.svg��������������������������������0000664�0000000�0000000�00000000655�14753064456�0025352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 3.75C0 2.784.784 2 1.75 2h12.5c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 14.25 14H1.75A1.75 1.75 0 0 1 0 12.25Zm1.75-.25a.25.25 0 0 0-.25.25v8.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-8.5a.25.25 0 0 0-.25-.25ZM3.5 6.25a.75.75 0 0 1 .75-.75h7a.75.75 0 0 1 0 1.5h-7a.75.75 0 0 1-.75-.75m.75 2.25h4a.75.75 0 0 1 0 1.5h-4a.75.75 0 0 1 0-1.5"/></svg>�����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/note-24.svg��������������������������������0000664�0000000�0000000�00000000722�14753064456�0025344�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 4.75C0 3.784.784 3 1.75 3h20.5c.966 0 1.75.784 1.75 1.75v14.5A1.75 1.75 0 0 1 22.25 21H1.75A1.75 1.75 0 0 1 0 19.25Zm1.75-.25a.25.25 0 0 0-.25.25v14.5c0 .138.112.25.25.25h20.5a.25.25 0 0 0 .25-.25V4.75a.25.25 0 0 0-.25-.25Z"/><path d="M5 8.75A.75.75 0 0 1 5.75 8h11.5a.75.75 0 0 1 0 1.5H5.75A.75.75 0 0 1 5 8.75m0 4a.75.75 0 0 1 .75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75"/></svg>����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/number-16.svg������������������������������0000664�0000000�0000000�00000001734�14753064456�0025674�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M9 4.75A.75.75 0 0 1 9.75 4h4a.75.75 0 0 1 .53 1.28l-1.89 1.892c.312.076.604.18.867.319.742.391 1.244 1.063 1.244 2.005 0 .653-.231 1.208-.629 1.627-.386.408-.894.653-1.408.777-1.01.243-2.225.063-3.124-.527a.751.751 0 0 1 .822-1.254c.534.35 1.32.474 1.951.322.306-.073.53-.201.67-.349.129-.136.218-.32.218-.596 0-.308-.123-.509-.444-.678-.373-.197-.98-.318-1.806-.318a.75.75 0 0 1-.53-1.28l1.72-1.72H9.75A.75.75 0 0 1 9 4.75m-3.587 5.763c-.35-.05-.77.113-.983.572a.75.75 0 1 1-1.36-.632c.508-1.094 1.589-1.565 2.558-1.425 1 .145 1.872.945 1.872 2.222 0 1.433-1.088 2.192-1.79 2.681-.308.216-.571.397-.772.573H7a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1-.75-.75c0-.69.3-1.211.67-1.61.348-.372.8-.676 1.15-.92.8-.56 1.18-.904 1.18-1.474 0-.473-.267-.69-.587-.737M5.604.089A.75.75 0 0 1 6 .75v4.77h.711a.75.75 0 0 1 0 1.5H3.759a.75.75 0 0 1 0-1.5H4.5V2.15l-.334.223a.75.75 0 0 1-.832-1.248l1.5-1a.75.75 0 0 1 .77-.037Z"/></svg>������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/number-24.svg������������������������������0000664�0000000�0000000�00000002022�14753064456�0025662�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.003 7.754a.75.75 0 0 1 .75-.75h5.232a.75.75 0 0 1 .53 1.28l-2.776 2.777c.55.097 1.057.253 1.492.483.905.477 1.504 1.284 1.504 2.418 0 .966-.471 1.75-1.172 2.27-.687.511-1.587.77-2.521.77-1.367 0-2.274-.528-2.667-.756a.75.75 0 0 1 .755-1.297c.331.193.953.553 1.912.553.673 0 1.243-.188 1.627-.473.37-.275.566-.635.566-1.067 0-.5-.219-.836-.703-1.091-.538-.284-1.375-.443-2.471-.443a.75.75 0 0 1-.53-1.28l2.643-2.644h-3.421a.75.75 0 0 1-.75-.75M7.88 15.215a1.4 1.4 0 0 0-1.446.83.75.75 0 0 1-1.37-.61 2.9 2.9 0 0 1 2.986-1.71c.589.06 1.139.323 1.557.743.434.446.685 1.058.685 1.778 0 1.641-1.254 2.437-2.12 2.986-.538.341-1.18.694-1.495 1.273H9.75a.75.75 0 0 1 0 1.5h-4a.75.75 0 0 1-.75-.75c0-1.799 1.337-2.63 2.243-3.21 1.032-.659 1.55-1.031 1.55-1.8 0-.355-.116-.584-.26-.732a1.07 1.07 0 0 0-.652-.298Zm.234-13.121a.75.75 0 0 1 .386.656V9h1.252a.75.75 0 0 1 0 1.5H5.75a.75.75 0 0 1 0-1.5H7V4.103l-.853.533a.749.749 0 1 1-.795-1.272l2-1.25a.75.75 0 0 1 .762-.02"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/organization-16.svg������������������������0000664�0000000�0000000�00000001731�14753064456�0027105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1.75 16A1.75 1.75 0 0 1 0 14.25V1.75C0 .784.784 0 1.75 0h8.5C11.216 0 12 .784 12 1.75v12.5q0 .127-.018.25h2.268a.25.25 0 0 0 .25-.25V8.285a.25.25 0 0 0-.111-.208l-1.055-.703a.749.749 0 1 1 .832-1.248l1.055.703c.487.325.779.871.779 1.456v5.965A1.75 1.75 0 0 1 14.25 16h-3.5a.8.8 0 0 1-.197-.026q-.148.026-.303.026h-3a.75.75 0 0 1-.75-.75V14h-1v1.25a.75.75 0 0 1-.75.75Zm-.25-1.75c0 .138.112.25.25.25H4v-1.25a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 .75.75v1.25h2.25a.25.25 0 0 0 .25-.25V1.75a.25.25 0 0 0-.25-.25h-8.5a.25.25 0 0 0-.25.25ZM3.75 6h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1 0-1.5M3 3.75A.75.75 0 0 1 3.75 3h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 3 3.75m4 3A.75.75 0 0 1 7.75 6h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 7 6.75M7.75 3h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1 0-1.5M3 9.75A.75.75 0 0 1 3.75 9h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 3 9.75M7.75 9h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1 0-1.5"/></svg>���������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/organization-24.svg������������������������0000664�0000000�0000000�00000002053�14753064456�0027102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.25 12a.75.75 0 0 0 0 1.5h.5a.75.75 0 0 0 0-1.5zM5.5 9.25a.75.75 0 0 1 .75-.75h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1-.75-.75M6.25 5a.75.75 0 0 0 0 1.5h.5a.75.75 0 0 0 0-1.5zM9 12.75a.75.75 0 0 1 .75-.75h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1-.75-.75m.75-4.25a.75.75 0 0 0 0 1.5h.5a.75.75 0 0 0 0-1.5zM9 5.75A.75.75 0 0 1 9.75 5h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 9 5.75M13.25 12a.75.75 0 0 0 0 1.5h.5a.75.75 0 0 0 0-1.5zm-.75-2.75a.75.75 0 0 1 .75-.75h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1-.75-.75M13.25 5a.75.75 0 0 0 0 1.5h.5a.75.75 0 0 0 0-1.5z"/><path d="M2 20V3a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v17q0 .26-.063.5H20a.5.5 0 0 0 .5-.5v-8a.5.5 0 0 0-.2-.4l-.5-.375a.75.75 0 0 1 .9-1.2l.5.375c.504.378.8.97.8 1.6v8a2 2 0 0 1-2 2h-3.562a.8.8 0 0 1-.166-.018Q16.138 22 16 22h-3.75a.75.75 0 0 1-.75-.75V19h-3v2.25a.75.75 0 0 1-.75.75H4a2 2 0 0 1-2-2m2 .5h3v-2.25a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 .75.75v2.25h3a.5.5 0 0 0 .5-.5V3a.5.5 0 0 0-.5-.5H4a.5.5 0 0 0-.5.5v17a.5.5 0 0 0 .5.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/package-16.svg�����������������������������0000664�0000000�0000000�00000000753�14753064456�0025777�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m8.878.392 5.25 3.045c.54.314.872.89.872 1.514v6.098a1.75 1.75 0 0 1-.872 1.514l-5.25 3.045a1.75 1.75 0 0 1-1.756 0l-5.25-3.045A1.75 1.75 0 0 1 1 11.049V4.951c0-.624.332-1.201.872-1.514L7.122.392a1.75 1.75 0 0 1 1.756 0M7.875 1.69l-4.63 2.685L8 7.133l4.755-2.758-4.63-2.685a.25.25 0 0 0-.25 0M2.5 5.677v5.372c0 .09.047.171.125.216l4.625 2.683V8.432Zm6.25 8.271 4.625-2.683a.25.25 0 0 0 .125-.216V5.677L8.75 8.432Z"/></svg>���������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/package-24.svg�����������������������������0000664�0000000�0000000�00000000765�14753064456�0026001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.876.64V.639l8.25 4.763c.541.313.875.89.875 1.515v9.525a1.75 1.75 0 0 1-.875 1.516l-8.25 4.762a1.75 1.75 0 0 1-1.75 0l-8.25-4.763a1.75 1.75 0 0 1-.875-1.515V6.917c0-.625.334-1.202.875-1.515L11.126.64a1.75 1.75 0 0 1 1.75 0m-1 1.298L4.251 6.34l7.75 4.474 7.75-4.474-7.625-4.402a.25.25 0 0 0-.25 0m.875 19.123 7.625-4.402a.25.25 0 0 0 .125-.216V7.639l-7.75 4.474ZM3.501 7.64v8.803c0 .09.048.172.125.216l7.625 4.402v-8.947Z"/></svg>�����������mkdocs-material-9.6.4/material/templates/.icons/octicons/package-dependencies-16.svg����������������0000664�0000000�0000000�00000001067�14753064456�0030422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6.122.392a1.75 1.75 0 0 1 1.756 0l5.25 3.045c.54.313.872.89.872 1.514V7.25a.75.75 0 0 1-1.5 0V5.677L7.75 8.432v6.384a1 1 0 0 1-1.502.865L.872 12.563A1.75 1.75 0 0 1 0 11.049V4.951c0-.624.332-1.2.872-1.514ZM7.125 1.69a.25.25 0 0 0-.25 0l-4.63 2.685L7 7.133l4.755-2.758ZM1.5 11.049a.25.25 0 0 0 .125.216l4.625 2.683V8.432L1.5 5.677Zm11.672-.282L11.999 12h3.251a.75.75 0 0 1 0 1.5h-3.251l1.173 1.233a.75.75 0 1 1-1.087 1.034l-2.378-2.5a.75.75 0 0 1 0-1.034l2.378-2.5a.75.75 0 0 1 1.087 1.034"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/package-dependencies-24.svg����������������0000664�0000000�0000000�00000001167�14753064456�0030422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.126.64a1.75 1.75 0 0 1 1.75 0l8.25 4.762q.155.09.286.206a.75.75 0 0 1 .554.96q.035.17.035.35v3.332a.75.75 0 0 1-1.5 0V7.64l-7.75 4.474V22.36a.75.75 0 0 1-1.125.65l-8.75-5.052a1.75 1.75 0 0 1-.875-1.515V6.917q0-.179.035-.35a.75.75 0 0 1 .554-.96q.133-.117.286-.205zm.875 10.173zl7.75-4.474-7.625-4.402a.25.25 0 0 0-.25 0L2.251 6.34Zm-8.5-3.175v8.803c0 .09.048.172.125.216l7.625 4.402v-8.947Z"/><path d="m16.617 17.5 2.895-2.702a.75.75 0 0 0-1.024-1.096l-4.285 4a.75.75 0 0 0 0 1.096l4.285 4a.75.75 0 1 0 1.024-1.096L16.617 19h6.633a.75.75 0 0 0 0-1.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/package-dependents-16.svg������������������0000664�0000000�0000000�00000001072�14753064456�0030121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6.122.392a1.75 1.75 0 0 1 1.756 0l5.25 3.045c.54.313.872.89.872 1.514V7.25a.75.75 0 0 1-1.5 0V5.677L7.75 8.432v6.384a1 1 0 0 1-1.502.865L.872 12.563A1.75 1.75 0 0 1 0 11.049V4.951c0-.624.332-1.2.872-1.514ZM7.125 1.69a.25.25 0 0 0-.25 0l-4.63 2.685L7 7.133l4.755-2.758ZM1.5 11.049a.25.25 0 0 0 .125.216l4.625 2.683V8.432L1.5 5.677Zm10.828 3.684 1.173-1.233H10.25a.75.75 0 0 1 0-1.5h3.251l-1.173-1.233a.75.75 0 1 1 1.087-1.034l2.378 2.5a.75.75 0 0 1 0 1.034l-2.378 2.5a.75.75 0 0 1-1.087-1.034"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/package-dependents-24.svg������������������0000664�0000000�0000000�00000001170�14753064456�0030117�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.126.64a1.75 1.75 0 0 1 1.75 0l8.25 4.762q.155.09.286.206a.75.75 0 0 1 .554.96q.035.17.035.35v3.332a.75.75 0 0 1-1.5 0V7.64l-7.75 4.474V22.36a.75.75 0 0 1-1.125.65l-8.75-5.052a1.75 1.75 0 0 1-.875-1.515V6.917q0-.179.035-.35a.75.75 0 0 1 .554-.96q.133-.117.286-.205zm.875 10.173zl7.75-4.474-7.625-4.402a.25.25 0 0 0-.25 0L2.251 6.34Zm-8.5-3.175v8.803c0 .09.048.172.125.216l7.625 4.402v-8.947Z"/><path d="m21.347 17.5-2.894-2.702a.75.75 0 1 1 1.023-1.096l4.286 4a.75.75 0 0 1 0 1.096l-4.286 4a.75.75 0 1 1-1.023-1.096L21.347 19h-6.633a.75.75 0 0 1 0-1.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/paintbrush-16.svg��������������������������0000664�0000000�0000000�00000002153�14753064456�0026557�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M11.134 1.535c.7-.509 1.416-.942 2.076-1.155.649-.21 1.463-.267 2.069.34.603.601.568 1.411.368 2.07-.202.668-.624 1.39-1.125 2.096-1.011 1.424-2.496 2.987-3.775 4.249-1.098 1.084-2.132 1.839-3.04 2.3a3.74 3.74 0 0 1-1.055 3.217c-.431.431-1.065.691-1.657.861-.614.177-1.294.287-1.914.357A21 21 0 0 1 .797 16H.743l.007-.75H.749L.742 16a.75.75 0 0 1-.743-.742l.743-.008-.742.007v-.054a21 21 0 0 1 .13-2.284q.101-.972.358-1.914c.17-.591.43-1.226.86-1.657a3.75 3.75 0 0 1 3.227-1.054c.466-.893 1.225-1.907 2.314-2.982 1.271-1.255 2.833-2.75 4.245-3.777M1.62 13.089q-.077.696-.104 1.395.7-.027 1.396-.104a10.5 10.5 0 0 0 1.668-.309c.526-.151.856-.325 1.011-.48a2.25 2.25 0 1 0-3.182-3.182c-.155.155-.329.485-.48 1.01a10.5 10.5 0 0 0-.309 1.67m10.396-10.34c-1.224.89-2.605 2.189-3.822 3.384l1.718 1.718c1.21-1.205 2.51-2.597 3.387-3.833.47-.662.78-1.227.912-1.662.134-.444.032-.551.009-.575h-.001V1.78c-.014-.014-.113-.113-.548.027-.432.14-.995.462-1.655.942m-4.832 7.266za10 10 0 0 0 1.63-1.142L7.155 7.216a9.7 9.7 0 0 0-1.161 1.607c.482.302.889.71 1.19 1.192"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/paintbrush-24.svg��������������������������0000664�0000000�0000000�00000002534�14753064456�0026561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.642 6.653c-1.31 1.812-3.251 3.86-4.945 5.575l-.091.092-2.69-2.69.098-.098c1.69-1.71 3.732-3.656 5.544-4.962.911-.657 1.715-1.115 2.353-1.318.652-.207.915-.091 1.039.033.113.113.231.367.019 1.02-.207.635-.668 1.436-1.327 2.348M10.9 10.736l2.605 2.605c-.88.754-1.684 1.294-2.378 1.655a4.83 4.83 0 0 0-1.892-1.89c.36-.69.903-1.482 1.665-2.37m-3.086 1.856a4.83 4.83 0 0 0-4.33 1.328c-.525.525-.88 1.302-1.13 2.079-.256.795-.43 1.682-.541 2.507a19 19 0 0 0-.173 2.216c-.004.3.003.567.022.778.009.104.022.212.044.31.01.05.027.113.053.18.02.051.074.178.19.295.117.117.245.17.297.19.066.026.13.043.178.054.099.021.207.035.31.044.211.019.479.025.779.021.603-.008 1.39-.06 2.216-.172.825-.112 1.711-.285 2.507-.54.776-.25 1.553-.606 2.079-1.132a4.83 4.83 0 0 0 1.327-4.333c1.209-.6 2.622-1.618 4.121-3.135 1.694-1.714 3.709-3.835 5.093-5.75.688-.952 1.258-1.904 1.538-2.764.274-.842.334-1.826-.384-2.544-.72-.719-1.703-.672-2.555-.401-.865.275-1.822.843-2.776 1.53-1.92 1.384-4.036 3.407-5.733 5.125-1.5 1.518-2.53 2.896-3.132 4.114m1.44 2.388a3.33 3.33 0 0 1 0 4.71c-.271.27-.774.537-1.478.763-.684.22-1.477.378-2.248.482-.769.104-1.495.152-2.035.16a9 9 0 0 1-.351-.002 9 9 0 0 1-.002-.35c.007-.542.055-1.267.16-2.036.104-.771.261-1.564.481-2.249.227-.703.493-1.206.764-1.478a3.33 3.33 0 0 1 4.71 0Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/paper-airplane-16.svg����������������������0000664�0000000�0000000�00000000432�14753064456�0027276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M.989 8 .064 2.68a1.342 1.342 0 0 1 1.85-1.462l13.402 5.744a1.13 1.13 0 0 1 0 2.076L1.913 14.782a1.343 1.343 0 0 1-1.85-1.463L.99 8Zm.603-5.288L2.38 7.25h4.87a.75.75 0 0 1 0 1.5H2.38l-.788 4.538L13.929 8Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/paper-airplane-24.svg����������������������0000664�0000000�0000000�00000000503�14753064456�0027274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.513 1.96a1.37 1.37 0 0 1 1.499-.21l19.335 9.215a1.147 1.147 0 0 1 0 2.07L3.012 22.25a1.374 1.374 0 0 1-1.947-1.46L2.49 12 1.065 3.21a1.38 1.38 0 0 1 .448-1.25m2.375 10.79-1.304 8.042L21.031 12 2.584 3.208l1.304 8.042h7.362a.75.75 0 0 1 0 1.5Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/paperclip-16.svg���������������������������0000664�0000000�0000000�00000001273�14753064456�0026361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12.212 3.02a1.753 1.753 0 0 0-2.478.003l-5.83 5.83a3 3 0 0 0-.88 2.127c0 .795.315 1.551.88 2.116.567.567 1.333.89 2.126.89.79 0 1.548-.321 2.116-.89l5.48-5.48a.75.75 0 0 1 1.061 1.06l-5.48 5.48a4.5 4.5 0 0 1-3.177 1.33c-1.2 0-2.345-.487-3.187-1.33a4.48 4.48 0 0 1-1.32-3.177c0-1.195.475-2.341 1.32-3.186l5.83-5.83a3.25 3.25 0 0 1 5.553 2.297c0 .863-.343 1.691-.953 2.301L7.439 12.39c-.375.377-.884.59-1.416.593a2 2 0 0 1-1.412-.593 1.99 1.99 0 0 1 0-2.828l5.48-5.48a.75.75 0 0 1 1.042.018.75.75 0 0 1 .018 1.042l-5.48 5.48a.49.49 0 0 0 0 .707.5.5 0 0 0 .352.154.5.5 0 0 0 .356-.154l5.833-5.827a1.755 1.755 0 0 0 0-2.481Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/paperclip-24.svg���������������������������0000664�0000000�0000000�00000001250�14753064456�0026353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.187 3.588a2.75 2.75 0 0 0-3.889 0L5.575 13.31a4.5 4.5 0 0 0 6.364 6.364l8.662-8.662a.75.75 0 0 1 1.061 1.06L13 20.735a6 6 0 0 1-8.485-8.485l9.723-9.723a4.25 4.25 0 0 1 4.124-1.139 4.25 4.25 0 0 1 3.025 3.025 4.25 4.25 0 0 1-1.139 4.124l-9.193 9.193a2.64 2.64 0 0 1-1.858.779 2.63 2.63 0 0 1-1.854-.779c-.196-.196-.338-.47-.43-.726a2.8 2.8 0 0 1-.168-.946c0-.7.284-1.373.775-1.864l8.132-8.131a.749.749 0 0 1 1.275.326.75.75 0 0 1-.215.734l-8.131 8.132a1.15 1.15 0 0 0-.336.803c.003.204.053.405.146.587q.016.026.02.032c.22.215.501.332.786.332.29 0 .58-.121.798-.34l9.192-9.192a2.75 2.75 0 0 0 0-3.89Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/passkey-fill-16.svg������������������������0000664�0000000�0000000�00000001336�14753064456�0027005�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2.743 4.757a3.757 3.757 0 1 1 5.851 3.119 6 6 0 0 1 2.15 1.383c.17.17.257.405.258.646q.003.897 0 1.795L11 12.778v.721a.5.5 0 0 1-.5.5H1.221a.75.75 0 0 1-.714-.784 6 6 0 0 1 3.899-5.339 3.75 3.75 0 0 1-1.663-3.119"/><path d="M15.75 6.875c0 .874-.448 1.643-1.127 2.09a.27.27 0 0 0-.123.22v.59c0 .067-.026.13-.073.177l-.356.356a.125.125 0 0 0 0 .177l.356.356c.047.047.073.11.073.176v.231c0 .067-.026.13-.073.177l-.356.356a.125.125 0 0 0 0 .177l.356.356c.047.047.073.11.073.177v.287a.25.25 0 0 1-.065.168l-.8.88a.52.52 0 0 1-.77 0l-.8-.88a.25.25 0 0 1-.065-.168V9.185a.26.26 0 0 0-.123-.22 2.5 2.5 0 1 1 3.873-2.09M14 6.5a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/passkey-fill-24.svg������������������������0000664�0000000�0000000�00000001343�14753064456�0027002�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.496 2a5.25 5.25 0 0 0-2.519 9.857A9.01 9.01 0 0 0 .5 20.228a.75.75 0 0 0 .728.772h5.257q5.008.002 10.015 0a.5.5 0 0 0 .5-.5v-4.669a.95.95 0 0 0-.171-.551 9.02 9.02 0 0 0-4.814-3.423A5.25 5.25 0 0 0 9.496 2"/><path d="M23.625 10.313c0 1.31-.672 2.464-1.691 3.134a.4.4 0 0 0-.184.33v.886a.37.37 0 0 1-.11.265l-.534.534a.19.19 0 0 0 0 .265l.534.534c.071.07.11.166.11.265v.347a.37.37 0 0 1-.11.265l-.534.534a.19.19 0 0 0 0 .265l.534.534a.37.37 0 0 1 .11.265v.431a.38.38 0 0 1-.097.253l-1.2 1.319a.78.78 0 0 1-1.156 0l-1.2-1.319a.38.38 0 0 1-.097-.253v-5.39a.4.4 0 0 0-.184-.33 3.75 3.75 0 1 1 5.809-3.134M21 9.75a1.125 1.125 0 1 0-2.25 0 1.125 1.125 0 0 0 2.25 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/paste-16.svg�������������������������������0000664�0000000�0000000�00000000725�14753064456�0025517�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.626 3.533a.25.25 0 0 0-.126.217v9.5c0 .138.112.25.25.25h8.5a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.126-.217.75.75 0 0 1 .752-1.298c.541.313.874.89.874 1.515v9.5A1.75 1.75 0 0 1 12.25 15h-8.5A1.75 1.75 0 0 1 2 13.25v-9.5c0-.625.333-1.202.874-1.515a.75.75 0 0 1 .752 1.298M5.75 1h4.5a.75.75 0 0 1 .75.75v3a.75.75 0 0 1-.75.75h-4.5A.75.75 0 0 1 5 4.75v-3A.75.75 0 0 1 5.75 1m.75 3h3V2.5h-3Z"/></svg>�������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/paste-24.svg�������������������������������0000664�0000000�0000000�00000001207�14753064456�0025512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.962 2.513a.75.75 0 0 1-.475.949l-.816.272a.25.25 0 0 0-.171.237V21.25c0 .138.112.25.25.25h14.5a.25.25 0 0 0 .25-.25V3.97a.25.25 0 0 0-.17-.236l-.817-.272a.75.75 0 0 1 .474-1.424l.816.273A1.75 1.75 0 0 1 21 3.97v17.28A1.75 1.75 0 0 1 19.25 23H4.75A1.75 1.75 0 0 1 3 21.25V3.97a1.75 1.75 0 0 1 1.197-1.66l.816-.272a.75.75 0 0 1 .949.475"/><path d="M7 1.75C7 .784 7.784 0 8.75 0h6.5C16.216 0 17 .784 17 1.75v1.5A1.75 1.75 0 0 1 15.25 5h-6.5A1.75 1.75 0 0 1 7 3.25Zm1.75-.25a.25.25 0 0 0-.25.25v1.5c0 .138.112.25.25.25h6.5a.25.25 0 0 0 .25-.25v-1.5a.25.25 0 0 0-.25-.25Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/pencil-16.svg������������������������������0000664�0000000�0000000�00000000714�14753064456�0025653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M11.013 1.427a1.75 1.75 0 0 1 2.474 0l1.086 1.086a1.75 1.75 0 0 1 0 2.474l-8.61 8.61c-.21.21-.47.364-.756.445l-3.251.93a.75.75 0 0 1-.927-.928l.929-3.25c.081-.286.235-.547.445-.758l8.61-8.61Zm.176 4.823L9.75 4.81l-6.286 6.287a.25.25 0 0 0-.064.108l-.558 1.953 1.953-.558a.25.25 0 0 0 .108-.064Zm1.238-3.763a.25.25 0 0 0-.354 0L10.811 3.75l1.439 1.44 1.263-1.263a.25.25 0 0 0 0-.354Z"/></svg>����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/pencil-24.svg������������������������������0000664�0000000�0000000�00000000774�14753064456�0025660�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.263 2.177a1.75 1.75 0 0 1 2.474 0l2.586 2.586a1.75 1.75 0 0 1 0 2.474L19.53 10.03l-.012.013L8.69 20.378a1.75 1.75 0 0 1-.699.409l-5.523 1.68a.75.75 0 0 1-.747-.188.75.75 0 0 1-.188-.747l1.673-5.5a1.75 1.75 0 0 1 .466-.756L14.476 4.963ZM4.708 16.361a.26.26 0 0 0-.067.108l-1.264 4.154 4.177-1.271a.25.25 0 0 0 .1-.059l10.273-9.806-2.94-2.939zM19 8.44l2.263-2.262a.25.25 0 0 0 0-.354l-2.586-2.586a.25.25 0 0 0-.354 0L16.061 5.5Z"/></svg>����mkdocs-material-9.6.4/material/templates/.icons/octicons/people-16.svg������������������������������0000664�0000000�0000000�00000000774�14753064456�0025673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2 5.5a3.5 3.5 0 1 1 5.898 2.549 5.51 5.51 0 0 1 3.034 4.084.75.75 0 1 1-1.482.235 4 4 0 0 0-7.9 0 .75.75 0 0 1-1.482-.236A5.5 5.5 0 0 1 3.102 8.05 3.5 3.5 0 0 1 2 5.5M11 4a3.001 3.001 0 0 1 2.22 5.018 5 5 0 0 1 2.56 3.012.749.749 0 0 1-.885.954.75.75 0 0 1-.549-.514 3.51 3.51 0 0 0-2.522-2.372.75.75 0 0 1-.574-.73v-.352a.75.75 0 0 1 .416-.672A1.5 1.5 0 0 0 11 5.5.75.75 0 0 1 11 4m-5.5-.5a2 2 0 1 0-.001 3.999A2 2 0 0 0 5.5 3.5"/></svg>����mkdocs-material-9.6.4/material/templates/.icons/octicons/people-24.svg������������������������������0000664�0000000�0000000�00000000744�14753064456�0025667�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.5 8a5.5 5.5 0 1 1 8.596 4.547 9.005 9.005 0 0 1 5.9 8.18.751.751 0 0 1-1.5.045 7.5 7.5 0 0 0-14.993 0 .75.75 0 0 1-1.499-.044 9.005 9.005 0 0 1 5.9-8.181A5.5 5.5 0 0 1 3.5 8M9 4a4 4 0 1 0 0 8 4 4 0 0 0 0-8m8.29 4q-.221 0-.434.03a.75.75 0 1 1-.212-1.484 4.53 4.53 0 0 1 3.38 8.097 6.69 6.69 0 0 1 3.956 6.107.75.75 0 0 1-1.5 0 5.19 5.19 0 0 0-3.696-4.972l-.534-.16v-1.676l.41-.209A3.03 3.03 0 0 0 17.29 8"/></svg>����������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/person-16.svg������������������������������0000664�0000000�0000000�00000000415�14753064456�0025705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M10.561 8.073a6 6 0 0 1 3.432 5.142.75.75 0 1 1-1.498.07 4.5 4.5 0 0 0-8.99 0 .75.75 0 0 1-1.498-.07 6 6 0 0 1 3.431-5.142 3.999 3.999 0 1 1 5.123 0M10.5 5a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/person-24.svg������������������������������0000664�0000000�0000000�00000000437�14753064456�0025710�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2.5a5.5 5.5 0 0 1 3.096 10.047 9.005 9.005 0 0 1 5.9 8.181.75.75 0 1 1-1.499.044 7.5 7.5 0 0 0-14.993 0 .75.75 0 0 1-1.5-.045 9.005 9.005 0 0 1 5.9-8.18A5.5 5.5 0 0 1 12 2.5M8 8a4 4 0 1 0 8 0 4 4 0 0 0-8 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/person-add-16.svg��������������������������0000664�0000000�0000000�00000000677�14753064456�0026445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.9 8.548h-.001a5.53 5.53 0 0 1 3.1 4.659.75.75 0 1 1-1.498.086A4.01 4.01 0 0 0 5.5 9.5a4.01 4.01 0 0 0-4.001 3.793.75.75 0 1 1-1.498-.085 5.53 5.53 0 0 1 3.1-4.66 3.5 3.5 0 1 1 4.799 0M13.25 0a.75.75 0 0 1 .75.75V2h1.25a.75.75 0 0 1 0 1.5H14v1.25a.75.75 0 0 1-1.5 0V3.5h-1.25a.75.75 0 0 1 0-1.5h1.25V.75a.75.75 0 0 1 .75-.75M5.5 4a2 2 0 1 0-.001 3.999A2 2 0 0 0 5.5 4"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/person-add-24.svg��������������������������0000664�0000000�0000000�00000000660�14753064456�0026434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 9.5a5 5 0 1 1 7.916 4.062 7.97 7.97 0 0 1 5.018 7.166.75.75 0 1 1-1.499.044 6.469 6.469 0 0 0-12.932 0 .75.75 0 0 1-1.499-.044 7.97 7.97 0 0 1 5.059-7.181A5 5 0 0 1 4 9.5M9 6a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7m10.25-5a.75.75 0 0 1 .75.75V4h2.25a.75.75 0 0 1 0 1.5H20v2.25a.75.75 0 0 1-1.5 0V5.5h-2.25a.75.75 0 0 1 0-1.5h2.25V1.75a.75.75 0 0 1 .75-.75"/></svg>��������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/person-fill-16.svg�������������������������0000664�0000000�0000000�00000000371�14753064456�0026632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M4.243 4.757a3.757 3.757 0 1 1 5.851 3.119 6.01 6.01 0 0 1 3.9 5.339.75.75 0 0 1-.715.784H2.721a.75.75 0 0 1-.714-.784 6.01 6.01 0 0 1 3.9-5.34 3.75 3.75 0 0 1-1.664-3.118"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/person-fill-24.svg�������������������������0000664�0000000�0000000�00000000364�14753064456�0026633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2.5a5.25 5.25 0 0 0-2.519 9.857 9.005 9.005 0 0 0-6.477 8.37.75.75 0 0 0 .727.773H20.27a.75.75 0 0 0 .727-.772 9.005 9.005 0 0 0-6.477-8.37A5.25 5.25 0 0 0 12 2.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/pin-16.svg���������������������������������0000664�0000000�0000000�00000001162�14753064456�0025165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m11.294.984 3.722 3.722a1.75 1.75 0 0 1-.504 2.826l-1.327.613a3.09 3.09 0 0 0-1.707 2.084l-.584 2.454c-.317 1.332-1.972 1.8-2.94.832L5.75 11.311 1.78 15.28a.749.749 0 1 1-1.06-1.06l3.969-3.97-2.204-2.204c-.968-.968-.5-2.623.832-2.94l2.454-.584a3.08 3.08 0 0 0 2.084-1.707l.613-1.327a1.75 1.75 0 0 1 2.826-.504M6.283 9.723l2.732 2.731a.25.25 0 0 0 .42-.119l.584-2.454a4.59 4.59 0 0 1 2.537-3.098l1.328-.613a.25.25 0 0 0 .072-.404l-3.722-3.722a.25.25 0 0 0-.404.072l-.613 1.328a4.58 4.58 0 0 1-3.098 2.537l-2.454.584a.25.25 0 0 0-.119.42l2.731 2.732Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/pin-24.svg���������������������������������0000664�0000000�0000000�00000001135�14753064456�0025164�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.114 1.553 6.333 6.333a1.75 1.75 0 0 1-.603 2.869l-1.63.633a5.67 5.67 0 0 0-3.395 3.725l-1.131 3.959a1.75 1.75 0 0 1-2.92.757L9 16.061l-5.595 5.594a.749.749 0 1 1-1.06-1.06L7.939 15l-3.768-3.768a1.75 1.75 0 0 1 .757-2.92l3.959-1.131a5.67 5.67 0 0 0 3.725-3.395l.633-1.63a1.75 1.75 0 0 1 2.869-.603M5.232 10.171l8.597 8.597a.25.25 0 0 0 .417-.108l1.131-3.959A7.17 7.17 0 0 1 19.67 9.99l1.63-.634a.25.25 0 0 0 .086-.409l-6.333-6.333a.25.25 0 0 0-.409.086l-.634 1.63a7.17 7.17 0 0 1-4.711 4.293L5.34 9.754a.25.25 0 0 0-.108.417"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/pin-slash-16.svg���������������������������0000664�0000000�0000000�00000002032�14753064456�0026272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m1.655.595 13.75 13.75q.22.219.22.53t-.22.53q-.219.22-.53.22t-.53-.22L.595 1.655q-.22-.219-.22-.53t.22-.53q.219-.22.53-.22t.53.22M.72 14.22l4.5-4.5q.219-.22.53-.22t.53.22q.22.219.22.53t-.22.53l-4.5 4.5q-.219.22-.53.22t-.53-.22q-.22-.219-.22-.53t.22-.53"/><path d="m5.424 6.146-1.759.419q-.143.034-.183.175t.064.245l5.469 5.469q.104.104.245.064t.175-.183l.359-1.509q.072-.302.337-.465.264-.163.567-.091t.465.337.09.567l-.359 1.509q-.238.999-1.226 1.278-.988.28-1.714-.446L2.485 8.046q-.726-.726-.446-1.714t1.278-1.226l1.759-.419q.303-.072.567.091.265.163.337.465t-.091.567q-.163.264-.465.336M7.47 3.47q.155-.156.247-.355l.751-1.627Q8.851.659 9.75.498q.899-.16 1.544.486l3.722 3.722q.646.645.486 1.544t-.99 1.282l-1.627.751q-.199.092-.355.247-.219.22-.53.22t-.53-.22q-.22-.219-.22-.53t.22-.53q.344-.345.787-.549l1.627-.751q.118-.055.141-.183t-.069-.221l-3.722-3.722q-.092-.092-.221-.069-.128.023-.183.141l-.751 1.627q-.204.443-.549.787-.219.22-.53.22t-.53-.22T7.25 4t.22-.53"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/pin-slash-24.svg���������������������������0000664�0000000�0000000�00000001573�14753064456�0026302�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.345 20.595 8.47 14.47q.219-.22.53-.22t.53.22q.22.219.22.53t-.22.53l-6.125 6.125q-.219.22-.53.22t-.53-.22q-.22-.219-.22-.53t.22-.53"/><path d="m16.72 11.97.358-.358a6.7 6.7 0 0 1 2.326-1.518l1.896-.738a.25.25 0 0 0 .086-.409l-6.333-6.333a.25.25 0 0 0-.409.086l-.521 1.34a8.66 8.66 0 0 1-2.243 3.265.75.75 0 0 1-1.01-1.11 7.1 7.1 0 0 0 1.854-2.699l.521-1.34a1.75 1.75 0 0 1 2.869-.603l6.333 6.333a1.75 1.75 0 0 1-.603 2.869l-1.896.737a5.3 5.3 0 0 0-1.81 1.18l-.358.358a.749.749 0 1 1-1.06-1.06m-12.549-.738a1.75 1.75 0 0 1 .757-2.92l3.366-.962.412 1.443-3.366.961a.25.25 0 0 0-.108.417l8.597 8.597a.25.25 0 0 0 .417-.108l.961-3.366 1.443.412-.962 3.366a1.75 1.75 0 0 1-2.92.757Z"/><path d="m3.405 2.095 18.75 18.75q.22.219.22.53t-.22.53-.53.22-.53-.22L2.345 3.155q-.22-.219-.22-.53t.22-.53q.219-.22.53-.22t.53.22"/></svg>�������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/pivot-column-16.svg������������������������0000664�0000000�0000000�00000001015�14753064456�0027030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 1.75C0 .784.784 0 1.75 0h12.5C15.217 0 16 .784 16 1.75v5.5a.75.75 0 0 1-1.5 0V6.5h-8v8h.75a.75.75 0 0 1 0 1.5h-5.5A1.75 1.75 0 0 1 0 14.25ZM1.5 6.5v7.75c0 .138.112.25.25.25H5v-8Zm5-1.5h8V1.75a.25.25 0 0 0-.25-.25H6.5ZM5 5V1.5H1.75a.25.25 0 0 0-.25.25V5Z"/><path d="m11.017 9.89-2.882 2.677a.25.25 0 0 0 0 .366l2.882 2.677a.25.25 0 0 0 .421-.183V13.5H12.5A3.5 3.5 0 0 0 16 10a.75.75 0 0 0-1.5 0 2 2 0 0 1-2 2h-1.062v-1.927a.25.25 0 0 0-.421-.183"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/pivot-column-24.svg������������������������0000664�0000000�0000000�00000001155�14753064456�0027034�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3.75C2 2.783 2.783 2 3.75 2h16.5c.966 0 1.75.783 1.75 1.75V10a.75.75 0 0 1-1.5 0V8.75H8.75V20.5H10a.75.75 0 0 1 0 1.5H3.75A1.75 1.75 0 0 1 2 20.25Zm6.75-.25v3.75H20.5v-3.5a.25.25 0 0 0-.25-.25Zm-1.5 17V8.75H3.5v11.5c0 .138.112.25.25.25ZM3.5 7.25h3.75V3.5h-3.5a.25.25 0 0 0-.25.25Z"/><path d="M21.25 12.312a.75.75 0 0 1 .75.75v2.626a3.75 3.75 0 0 1-3.75 3.75h-3.502l2.032 2.032a.749.749 0 1 1-1.06 1.06l-3.25-3.25a.75.75 0 0 1 0-1.06l3.25-3.25a.749.749 0 1 1 1.06 1.06l-1.907 1.908h3.377a2.25 2.25 0 0 0 2.25-2.25v-2.626a.75.75 0 0 1 .75-.75"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/play-16.svg��������������������������������0000664�0000000�0000000�00000000407�14753064456�0025345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0M1.5 8a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0m4.879-2.773 4.264 2.559a.25.25 0 0 1 0 .428l-4.264 2.559A.25.25 0 0 1 6 10.559V5.442a.25.25 0 0 1 .379-.215"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/play-24.svg��������������������������������0000664�0000000�0000000�00000000540�14753064456�0025342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 15.584V8.416a.5.5 0 0 1 .77-.42l5.576 3.583a.5.5 0 0 1 0 .842l-5.576 3.584a.5.5 0 0 1-.77-.42Z"/><path d="M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12m11-9.5A9.5 9.5 0 0 0 2.5 12a9.5 9.5 0 0 0 9.5 9.5 9.5 9.5 0 0 0 9.5-9.5A9.5 9.5 0 0 0 12 2.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/plug-16.svg��������������������������������0000664�0000000�0000000�00000001237�14753064456�0025351�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M4 8H2.5a1 1 0 0 0-1 1v5.25a.75.75 0 0 1-1.5 0V9a2.5 2.5 0 0 1 2.5-2.5H4V5.133a1.75 1.75 0 0 1 1.533-1.737l2.831-.353.76-.913c.332-.4.825-.63 1.344-.63h.782c.966 0 1.75.784 1.75 1.75V4h2.25a.75.75 0 0 1 0 1.5H13v4h2.25a.75.75 0 0 1 0 1.5H13v.75a1.75 1.75 0 0 1-1.75 1.75h-.782c-.519 0-1.012-.23-1.344-.63l-.761-.912-2.83-.354A1.75 1.75 0 0 1 4 9.867Zm6.276-4.91-.95 1.14a.75.75 0 0 1-.483.265l-3.124.39a.25.25 0 0 0-.219.248v4.734c0 .126.094.233.219.249l3.124.39a.75.75 0 0 1 .483.264l.95 1.14a.25.25 0 0 0 .192.09h.782a.25.25 0 0 0 .25-.25v-8.5a.25.25 0 0 0-.25-.25h-.782a.25.25 0 0 0-.192.09"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/plug-24.svg��������������������������������0000664�0000000�0000000�00000001311�14753064456�0025341�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 11.5H2.938c-.794 0-1.438.644-1.438 1.437v8.313a.75.75 0 0 1-1.5 0v-8.312A2.94 2.94 0 0 1 2.937 10H7V6.151c0-.897.678-1.648 1.57-1.74l6.055-.626 1.006-1.174A1.75 1.75 0 0 1 16.96 2h1.29c.966 0 1.75.784 1.75 1.75V6h3.25a.75.75 0 0 1 0 1.5H20V14h3.25a.75.75 0 0 1 0 1.5H20v2.25a1.75 1.75 0 0 1-1.75 1.75h-1.29a1.75 1.75 0 0 1-1.329-.611l-1.006-1.174-6.055-.627A1.75 1.75 0 0 1 7 15.348Zm9.77-7.913zl-1.201 1.4a.75.75 0 0 1-.492.258l-6.353.657a.25.25 0 0 0-.224.249v9.196a.25.25 0 0 0 .224.249l6.353.657c.191.02.368.112.493.258l1.2 1.401a.25.25 0 0 0 .19.087h1.29a.25.25 0 0 0 .25-.25v-14a.25.25 0 0 0-.25-.25h-1.29a.25.25 0 0 0-.19.087"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/plus-16.svg��������������������������������0000664�0000000�0000000�00000000326�14753064456�0025363�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.75 2a.75.75 0 0 1 .75.75V7h4.25a.75.75 0 0 1 0 1.5H8.5v4.25a.75.75 0 0 1-1.5 0V8.5H2.75a.75.75 0 0 1 0-1.5H7V2.75A.75.75 0 0 1 7.75 2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/plus-24.svg��������������������������������0000664�0000000�0000000�00000000336�14753064456�0025363�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.75 4.5a.75.75 0 0 1 .75.75V11h5.75a.75.75 0 0 1 0 1.5H12.5v5.75a.75.75 0 0 1-1.5 0V12.5H5.25a.75.75 0 0 1 0-1.5H11V5.25a.75.75 0 0 1 .75-.75"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/plus-circle-16.svg�������������������������0000664�0000000�0000000�00000000425�14753064456�0026622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0M1.5 8a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0m7.25-3.25v2.5h2.5a.75.75 0 0 1 0 1.5h-2.5v2.5a.75.75 0 0 1-1.5 0v-2.5h-2.5a.75.75 0 0 1 0-1.5h2.5v-2.5a.75.75 0 0 1 1.5 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/plus-circle-24.svg�������������������������0000664�0000000�0000000�00000000565�14753064456�0026626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.75 7.75a.75.75 0 0 0-1.5 0v3.5h-3.5a.75.75 0 0 0 0 1.5h3.5v3.5a.75.75 0 0 0 1.5 0v-3.5h3.5a.75.75 0 0 0 0-1.5h-3.5z"/><path d="M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1M2.5 12a9.5 9.5 0 0 0 9.5 9.5 9.5 9.5 0 0 0 9.5-9.5A9.5 9.5 0 0 0 12 2.5 9.5 9.5 0 0 0 2.5 12"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/project-16.svg�����������������������������0000664�0000000�0000000�00000000774�14753064456�0026055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1.75 0h12.5C15.216 0 16 .784 16 1.75v12.5A1.75 1.75 0 0 1 14.25 16H1.75A1.75 1.75 0 0 1 0 14.25V1.75C0 .784.784 0 1.75 0M1.5 1.75v12.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25V1.75a.25.25 0 0 0-.25-.25H1.75a.25.25 0 0 0-.25.25M11.75 3a.75.75 0 0 1 .75.75v7.5a.75.75 0 0 1-1.5 0v-7.5a.75.75 0 0 1 .75-.75m-8.25.75a.75.75 0 0 1 1.5 0v5.5a.75.75 0 0 1-1.5 0ZM8 3a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0v-3.5A.75.75 0 0 1 8 3"/></svg>����mkdocs-material-9.6.4/material/templates/.icons/octicons/project-24.svg�����������������������������0000664�0000000�0000000�00000001011�14753064456�0026035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.25 6a.75.75 0 0 0-.75.75v7.5a.75.75 0 0 0 1.5 0v-7.5A.75.75 0 0 0 7.25 6M12 6a.75.75 0 0 0-.75.75v4.5a.75.75 0 0 0 1.5 0v-4.5A.75.75 0 0 0 12 6m4 .75a.75.75 0 0 1 1.5 0v9.5a.75.75 0 0 1-1.5 0z"/><path d="M3.75 2h16.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25V3.75C2 2.784 2.784 2 3.75 2M3.5 3.75v16.5c0 .138.112.25.25.25h16.5a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25H3.75a.25.25 0 0 0-.25.25"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/project-roadmap-16.svg���������������������0000664�0000000�0000000�00000000752�14753064456�0027472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M4.75 7a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5zM5 4.75A.75.75 0 0 1 5.75 4h5.5a.75.75 0 0 1 0 1.5h-5.5A.75.75 0 0 1 5 4.75M6.75 10a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5z"/><path d="M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v12.5A1.75 1.75 0 0 1 14.25 16H1.75A1.75 1.75 0 0 1 0 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25V1.75a.25.25 0 0 0-.25-.25Z"/></svg>����������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/project-roadmap-24.svg���������������������0000664�0000000�0000000�00000000761�14753064456�0027471�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.75 7a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5zM7 11.75a.75.75 0 0 1 .75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1-.75-.75M9.75 15a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5z"/><path d="M2 3.75C2 2.784 2.784 2 3.75 2h16.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25Zm1.75-.25a.25.25 0 0 0-.25.25v16.5c0 .138.112.25.25.25h16.5a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25Z"/></svg>���������������mkdocs-material-9.6.4/material/templates/.icons/octicons/project-symlink-16.svg���������������������0000664�0000000�0000000�00000001031�14753064456�0027524�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v12.5A1.75 1.75 0 0 1 14.25 16h-8.5a.75.75 0 0 1 0-1.5h8.5a.25.25 0 0 0 .25-.25V6.5h-13v1.75a.75.75 0 0 1-1.5 0ZM6.5 5h8V1.75a.25.25 0 0 0-.25-.25H6.5Zm-5 0H5V1.5H1.75a.25.25 0 0 0-.25.25Z"/><path d="M1.5 13.737a2.25 2.25 0 0 1 2.262-2.25L4 11.49v1.938c0 .218.26.331.42.183l2.883-2.677a.25.25 0 0 0 0-.366L4.42 7.89a.25.25 0 0 0-.42.183V9.99l-.23-.001A3.75 3.75 0 0 0 0 13.738v1.012a.75.75 0 0 0 1.5 0z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/project-symlink-24.svg���������������������0000664�0000000�0000000�00000001044�14753064456�0027527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3.75C2 2.784 2.784 2 3.75 2h16.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 20.25 22H9.75a.75.75 0 0 1 0-1.5h10.5a.25.25 0 0 0 .25-.25V9h-17v3A.75.75 0 0 1 2 12ZM9 7.5h11.5V3.75a.25.25 0 0 0-.25-.25H9Zm-5.5 0h4v-4H3.75a.25.25 0 0 0-.25.25Z"/><path d="m9.308 14.5-2.104-2.236a.75.75 0 1 1 1.092-1.028l3.294 3.5a.75.75 0 0 1 0 1.028l-3.294 3.5a.75.75 0 1 1-1.092-1.028L9.308 16H6.09a2.59 2.59 0 0 0-2.59 2.59v2.66a.75.75 0 0 1-1.5 0v-2.66a4.09 4.09 0 0 1 4.09-4.09z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/project-template-16.svg��������������������0000664�0000000�0000000�00000002206�14753064456�0027656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1.5 1.75v1.562a.75.75 0 1 1-1.5 0V1.75C0 .784.784 0 1.75 0h1.562a.75.75 0 1 1 0 1.5H1.75a.25.25 0 0 0-.25.25M6.438 0h3.124a.75.75 0 1 1 0 1.5H6.438a.75.75 0 1 1 0-1.5m6.25 0h1.562C15.217 0 16 .784 16 1.75v1.562a.75.75 0 1 1-1.5 0V1.75a.25.25 0 0 0-.25-.25h-1.562a.75.75 0 1 1 0-1.5M1.5 6.438v3.124a.75.75 0 1 1-1.5 0V6.438a.75.75 0 1 1 1.5 0m14.5 0v3.124a.75.75 0 1 1-1.5 0V6.438a.75.75 0 1 1 1.5 0m-14.5 6.25v1.562c0 .138.112.25.25.25h1.562a.75.75 0 1 1 0 1.5H1.75A1.75 1.75 0 0 1 0 14.25v-1.562a.75.75 0 1 1 1.5 0m14.5 0v1.562A1.75 1.75 0 0 1 14.25 16h-1.562a.75.75 0 1 1 0-1.5h1.562a.25.25 0 0 0 .25-.25v-1.562a.75.75 0 1 1 1.5 0M6.438 14.5h3.124a.75.75 0 1 1 0 1.5H6.438a.75.75 0 1 1 0-1.5M6.5 3v1A.75.75 0 0 1 5 4V3a.75.75 0 0 1 1.5 0M2.25 5.75A.75.75 0 0 1 3 5h1a.75.75 0 0 1 0 1.5H3a.75.75 0 0 1-.75-.75m4.5 0A.75.75 0 0 1 7.5 5h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75m-1 1a.75.75 0 0 1 .75.75v1a.75.75 0 0 1-1.5 0v-1a.75.75 0 0 1 .75-.75m.75 4v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0m3.5-5a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/project-template-24.svg��������������������0000664�0000000�0000000�00000002533�14753064456�0027660�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.75 3.5a.25.25 0 0 0-.25.25v2.062a.75.75 0 1 1-1.5 0V3.75C2 2.783 2.783 2 3.75 2h2.062a.75.75 0 1 1 0 1.5Zm13.688-.75a.75.75 0 0 1 .75-.75h2.062c.966 0 1.75.783 1.75 1.75v2.062a.75.75 0 1 1-1.5 0V3.75a.25.25 0 0 0-.25-.25h-2.062a.75.75 0 0 1-.75-.75M2.75 17.438a.75.75 0 0 1 .75.75v2.062c0 .138.112.25.25.25h2.062a.75.75 0 1 1 0 1.5H3.75A1.75 1.75 0 0 1 2 20.25v-2.062a.75.75 0 0 1 .75-.75m18.5 0a.75.75 0 0 1 .75.75v2.062A1.75 1.75 0 0 1 20.25 22h-2.062a.75.75 0 1 1 0-1.5h2.062a.25.25 0 0 0 .25-.25v-2.062a.75.75 0 0 1 .75-.75m-18.5-8.25a.75.75 0 0 1 .75.75v4.124a.75.75 0 1 1-1.5 0V9.938a.75.75 0 0 1 .75-.75M9.188 2.75a.75.75 0 0 1 .75-.75h4.124a.75.75 0 1 1 0 1.5H9.938a.75.75 0 0 1-.75-.75m0 18.5a.75.75 0 0 1 .75-.75h4.124a.75.75 0 1 1 0 1.5H9.938a.75.75 0 0 1-.75-.75M21.25 9.188a.75.75 0 0 1 .75.75v4.124a.75.75 0 1 1-1.5 0V9.938a.75.75 0 0 1 .75-.75M3.75 8.25a.75.75 0 0 1 .75-.75h2a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1-.75-.75m5.5 0A.75.75 0 0 1 10 7.5h2A.75.75 0 0 1 12 9h-2a.75.75 0 0 1-.75-.75m-1-4.5A.75.75 0 0 1 9 4.5v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .75-.75m0 5.5A.75.75 0 0 1 9 10v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .75-.75m0 4.75a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75M14 8.25a.75.75 0 0 1 .75-.75h4a.75.75 0 0 1 0 1.5h-4a.75.75 0 0 1-.75-.75"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/pulse-16.svg�������������������������������0000664�0000000�0000000�00000000463�14753064456�0025532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6 2c.306 0 .582.187.696.471L10 10.731l1.304-3.26A.75.75 0 0 1 12 7h3.25a.75.75 0 0 1 0 1.5h-2.742l-1.812 4.528a.751.751 0 0 1-1.392 0L6 4.77 4.696 8.03A.75.75 0 0 1 4 8.5H.75a.75.75 0 0 1 0-1.5h2.742l1.812-4.529A.75.75 0 0 1 6 2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/pulse-24.svg�������������������������������0000664�0000000�0000000�00000000505�14753064456�0025526�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.002 2.5a.75.75 0 0 1 .691.464l6.302 15.305 2.56-6.301a.75.75 0 0 1 .695-.468h4a.75.75 0 0 1 0 1.5h-3.495l-3.06 7.532a.75.75 0 0 1-1.389.004L8.997 5.21l-3.054 7.329A.75.75 0 0 1 5.25 13H.75a.75.75 0 0 1 0-1.5h4l3.558-8.538a.75.75 0 0 1 .694-.462"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/question-16.svg����������������������������0000664�0000000�0000000�00000001263�14753064456�0026250�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8m8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13M6.92 6.085h.001a.749.749 0 1 1-1.342-.67c.169-.339.436-.701.849-.977C6.845 4.16 7.369 4 8 4a2.76 2.76 0 0 1 1.637.525c.503.377.863.965.863 1.725 0 .448-.115.83-.329 1.15-.205.307-.47.513-.692.662-.109.072-.22.138-.313.195l-.006.004a6 6 0 0 0-.26.16 1 1 0 0 0-.276.245.75.75 0 0 1-1.248-.832c.184-.264.42-.489.692-.661q.154-.1.313-.195l.007-.004c.1-.061.182-.11.258-.161a1 1 0 0 0 .277-.245C8.96 6.514 9 6.427 9 6.25a.61.61 0 0 0-.262-.525A1.27 1.27 0 0 0 8 5.5c-.369 0-.595.09-.74.187a1 1 0 0 0-.34.398M9 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/question-24.svg����������������������������0000664�0000000�0000000�00000001405�14753064456�0026245�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.97 8.265a1.45 1.45 0 0 0-.487.57.75.75 0 0 1-1.341-.67c.2-.402.513-.826.997-1.148C10.627 6.69 11.244 6.5 12 6.5c.658 0 1.369.195 1.934.619a2.45 2.45 0 0 1 1.004 2.006c0 1.033-.513 1.72-1.027 2.215-.19.183-.399.358-.579.508l-.147.123a4 4 0 0 0-.435.409v1.37a.75.75 0 1 1-1.5 0v-1.473c0-.237.067-.504.247-.736.22-.28.486-.517.718-.714l.183-.153.001-.001c.172-.143.324-.27.47-.412.368-.355.569-.676.569-1.136a.95.95 0 0 0-.404-.806C12.766 8.118 12.384 8 12 8c-.494 0-.814.121-1.03.265M13 17a1 1 0 1 1-2 0 1 1 0 0 1 2 0"/><path d="M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1M2.5 12a9.5 9.5 0 0 0 9.5 9.5 9.5 9.5 0 0 0 9.5-9.5A9.5 9.5 0 0 0 12 2.5 9.5 9.5 0 0 0 2.5 12"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/quote-16.svg�������������������������������0000664�0000000�0000000�00000000441�14753064456�0025533�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1.75 2.5h10.5a.75.75 0 0 1 0 1.5H1.75a.75.75 0 0 1 0-1.5m4 5h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1 0-1.5m0 5h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1 0-1.5M2.5 7.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 1.5 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/quote-24.svg�������������������������������0000664�0000000�0000000�00000000602�14753064456�0025531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6.25a.75.75 0 0 1 .75-.75h13.5a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 6.25m5 6.063a.75.75 0 0 1 .75-.75h11.5a.75.75 0 0 1 0 1.5H8.75a.75.75 0 0 1-.75-.75m0 5.937a.75.75 0 0 1 .75-.75h11.5a.75.75 0 0 1 0 1.5H8.75a.75.75 0 0 1-.75-.75M3.75 11a.75.75 0 0 1 .75.75v7a.75.75 0 0 1-1.5 0v-7a.75.75 0 0 1 .75-.75"/></svg>������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/read-16.svg��������������������������������0000664�0000000�0000000�00000000703�14753064456�0025312�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.115.65a1.75 1.75 0 0 1 1.77 0l6.25 3.663c.536.314.865.889.865 1.51v6.427A1.75 1.75 0 0 1 14.25 14H1.75A1.75 1.75 0 0 1 0 12.25V5.823c0-.621.33-1.196.865-1.51Zm1.011 1.293a.25.25 0 0 0-.252 0l-5.72 3.353L6.468 7.76a2.75 2.75 0 0 1 3.066 0l4.312-2.464zM13.15 12.5 8.772 9.06a1.25 1.25 0 0 0-1.544 0L2.85 12.5Zm1.35-5.85-3.687 2.106 3.687 2.897ZM5.187 8.756 1.5 6.65v5.003Z"/></svg>�������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/read-24.svg��������������������������������0000664�0000000�0000000�00000001017�14753064456�0025310�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.89 1.767a2.25 2.25 0 0 1 2.22 0l9.75 5.525A2.25 2.25 0 0 1 24 9.249v9.501A2.25 2.25 0 0 1 21.75 21H2.25A2.25 2.25 0 0 1 0 18.75v-9.5c0-.81.435-1.558 1.14-1.958Zm1.48 1.305a.75.75 0 0 0-.74 0l-9.316 5.28 7.41 4.233a3.75 3.75 0 0 1 4.553 0l7.41-4.234zM20.65 19.5l-7.26-5.704a2.25 2.25 0 0 0-2.78 0L3.35 19.5Zm1.85-9.886-6.95 3.971 6.663 5.236q.135.107.21.26a.75.75 0 0 0 .077-.331ZM8.45 13.585 1.5 9.614v9.136q.002.18.076.33a.74.74 0 0 1 .21-.259Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/redo-16.svg��������������������������������0000664�0000000�0000000�00000000462�14753064456�0025332�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M14.78 6.28a.75.75 0 0 0 0-1.06l-3.5-3.5a.749.749 0 1 0-1.06 1.06L12.439 5H5.251l-.001.007L5.251 5a1 1 0 0 0-.171.019A4.501 4.501 0 0 0 5.5 14h1.704a.75.75 0 0 0 0-1.5H5.5a3 3 0 1 1 0-6h6.939L10.22 8.72a.749.749 0 1 0 1.06 1.06z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/redo-24.svg��������������������������������0000664�0000000�0000000�00000000727�14753064456�0025335�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.72 2.22a.75.75 0 0 1 1.06 0l6.25 6.25a.75.75 0 0 1 0 1.06l-6.25 6.25a.75.75 0 1 1-1.06-1.06l4.97-4.97H8.25c-.797 0-2.008.245-3 .959-.952.686-1.75 1.835-1.75 3.791s.798 3.105 1.75 3.791c.992.714 2.203.959 3 .959h3a.75.75 0 0 1 0 1.5h-3c-1.037 0-2.575-.305-3.876-1.241C3.035 18.545 2 16.944 2 14.5s1.035-4.045 2.374-5.009C5.675 8.555 7.214 8.25 8.25 8.25h11.44l-4.97-4.97a.75.75 0 0 1 0-1.06"/></svg>�����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/rel-file-path-16.svg�����������������������0000664�0000000�0000000�00000000273�14753064456�0027032�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M13.94 3.045a.75.75 0 0 0-1.38-.59l-4.5 10.5a.75.75 0 1 0 1.38.59zM5 11.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/rel-file-path-24.svg�����������������������0000664�0000000�0000000�00000000277�14753064456�0027035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.564 4.42a.75.75 0 0 0-1.378-.59l-6.75 15.75a.75.75 0 0 0 1.378.59zM7 18.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/reply-16.svg�������������������������������0000664�0000000�0000000�00000000502�14753064456�0025527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6.78 1.97a.75.75 0 0 1 0 1.06L3.81 6h6.44A4.75 4.75 0 0 1 15 10.75v2.5a.75.75 0 0 1-1.5 0v-2.5a3.25 3.25 0 0 0-3.25-3.25H3.81l2.97 2.97a.749.749 0 0 1-.326 1.275.75.75 0 0 1-.734-.215L1.47 7.28a.75.75 0 0 1 0-1.06l4.25-4.25a.75.75 0 0 1 1.06 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/reply-24.svg�������������������������������0000664�0000000�0000000�00000000424�14753064456�0025531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.53 5.03a.75.75 0 1 0-1.06-1.06l-6.25 6.25a.75.75 0 0 0 0 1.06l6.25 6.25a.75.75 0 1 0 1.06-1.06L5.56 11.5H17a3.25 3.25 0 0 1 3.25 3.248v4.502a.75.75 0 0 0 1.5 0v-4.502A4.75 4.75 0 0 0 17 10H5.56z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/repo-16.svg��������������������������������0000664�0000000�0000000�00000000671�14753064456�0025350�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2 2.5A2.5 2.5 0 0 1 4.5 0h8.75a.75.75 0 0 1 .75.75v12.5a.75.75 0 0 1-.75.75h-2.5a.75.75 0 0 1 0-1.5h1.75v-2h-8a1 1 0 0 0-.714 1.7.75.75 0 1 1-1.072 1.05A2.5 2.5 0 0 1 2 11.5Zm10.5-1h-8a1 1 0 0 0-1 1v6.708A2.5 2.5 0 0 1 4.5 9h8ZM5 12.25a.25.25 0 0 1 .25-.25h3.5a.25.25 0 0 1 .25.25v3.25a.25.25 0 0 1-.4.2l-1.45-1.087a.25.25 0 0 0-.3 0L5.4 15.7a.25.25 0 0 1-.4-.2Z"/></svg>�����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/repo-24.svg��������������������������������0000664�0000000�0000000�00000001001�14753064456�0025333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 2.75A2.75 2.75 0 0 1 5.75 0h14.5a.75.75 0 0 1 .75.75v20.5a.75.75 0 0 1-.75.75h-6a.75.75 0 0 1 0-1.5h5.25v-4H6A1.5 1.5 0 0 0 4.5 18v.75c0 .716.43 1.334 1.05 1.605a.75.75 0 0 1-.6 1.374A3.25 3.25 0 0 1 3 18.75ZM19.5 1.5H5.75c-.69 0-1.25.56-1.25 1.25v12.651A3 3 0 0 1 6 15h13.5Z"/><path d="M7 18.25a.25.25 0 0 1 .25-.25h5a.25.25 0 0 1 .25.25v5.01a.25.25 0 0 1-.397.201l-2.206-1.604a.25.25 0 0 0-.294 0L7.397 23.46a.25.25 0 0 1-.397-.2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/repo-clone-16.svg��������������������������0000664�0000000�0000000�00000001064�14753064456�0026443�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.5 0A2.5 2.5 0 0 0 1 2.5v9A2.5 2.5 0 0 0 3.5 14h2.75a.75.75 0 0 0 0-1.5H3.5a1 1 0 0 1 0-2h2.75a.75.75 0 0 0 0-1.5H3.5c-.356 0-.694.074-1 .208V2.5a1 1 0 0 1 1-1h8v2.75a.75.75 0 0 0 1.5 0V.75a.75.75 0 0 0-.75-.75z"/><path d="M8 8.058C8 7.023 8.75 6 9.887 6h5.363a.75.75 0 0 1 .75.75v8.5a.75.75 0 0 1-.75.75h-5A2.25 2.25 0 0 1 8 13.75Zm6.5 3.442v-4H9.887c-.07 0-.156.031-.238.125a.66.66 0 0 0-.149.433v3.57q.354-.126.75-.128Zm-5 2.25c0 .414.336.75.75.75h4.25V13h-4.25a.75.75 0 0 0-.75.75"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/repo-clone-24.svg��������������������������0000664�0000000�0000000�00000001137�14753064456�0026443�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.375.375a2.5 2.5 0 0 0-2.5 2.5v15.25a2.5 2.5 0 0 0 2.5 2.5h5.187a.75.75 0 1 0 0-1.5H4.375a1 1 0 0 1-1-1v-1.75a1 1 0 0 1 1-1h5.687a.75.75 0 1 0 0-1.5H4.375c-.356 0-.694.074-1 .208V2.875a1 1 0 0 1 1-1h13.25v5.25a.75.75 0 0 0 1.5 0v-6a.75.75 0 0 0-.75-.75z"/><path d="M12.375 12.087c0-1.396 1.005-2.712 2.456-2.712h8.044a.75.75 0 0 1 .75.75v12.75a.75.75 0 0 1-.75.75h-7.5a3 3 0 0 1-3-3Zm9.75 5.538v-6.75h-7.294c-.433 0-.956.441-.956 1.212v5.939a3 3 0 0 1 1.5-.401Zm-8.25 3a1.5 1.5 0 0 0 1.5 1.5h6.75v-3h-6.75a1.5 1.5 0 0 0-1.5 1.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/repo-delete-24.svg�������������������������0000664�0000000�0000000�00000001057�14753064456�0026606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.75 0A2.75 2.75 0 0 0 2 2.75v16.5A2.75 2.75 0 0 0 4.75 22h8a.75.75 0 0 0 0-1.5h-8c-.69 0-1.25-.56-1.25-1.25V18A1.5 1.5 0 0 1 5 16.5h7.75a.75.75 0 0 0 0-1.5H5c-.546 0-1.059.146-1.5.401V2.75c0-.69.56-1.25 1.25-1.25H18.5v12.25a.75.75 0 0 0 1.5 0v-13a.75.75 0 0 0-.75-.75z"/><path d="M15.22 16.22a.75.75 0 0 1 1.06 0L19 18.94l2.72-2.72a.75.75 0 1 1 1.06 1.06L20.06 20l2.72 2.72a.75.75 0 1 1-1.06 1.06L19 21.06l-2.72 2.72a.75.75 0 1 1-1.06-1.06L17.94 20l-2.72-2.72a.75.75 0 0 1 0-1.06"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/repo-deleted-16.svg������������������������0000664�0000000�0000000�00000000733�14753064456�0026753�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1 2.5A2.5 2.5 0 0 1 3.5 0h8.75a.75.75 0 0 1 .75.75v7.5a.75.75 0 0 1-1.5 0V1.5h-8a1 1 0 0 0-1 1v6.708A2.5 2.5 0 0 1 3.5 9h4.75a.75.75 0 0 1 0 1.5H3.5a1 1 0 1 0 0 2h4.75a.75.75 0 0 1 0 1.5H3.5A2.5 2.5 0 0 1 1 11.5z"/><path d="M11.28 10.22a.75.75 0 1 0-1.06 1.06L11.94 13l-1.72 1.72a.75.75 0 1 0 1.06 1.06L13 14.06l1.72 1.72a.75.75 0 1 0 1.06-1.06L14.06 13l1.72-1.72a.75.75 0 1 0-1.06-1.06L13 11.94z"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/repo-forked-16.svg�������������������������0000664�0000000�0000000�00000000654�14753064456�0026621�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M5 5.372v.878c0 .414.336.75.75.75h4.5a.75.75 0 0 0 .75-.75v-.878a2.25 2.25 0 1 1 1.5 0v.878a2.25 2.25 0 0 1-2.25 2.25h-1.5v2.128a2.251 2.251 0 1 1-1.5 0V8.5h-1.5A2.25 2.25 0 0 1 3.5 6.25v-.878a2.25 2.25 0 1 1 1.5 0M5 3.25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0m6.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5m-3 8.75a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0"/></svg>������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/repo-forked-24.svg�������������������������0000664�0000000�0000000�00000001121�14753064456�0026606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.75 19.25a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0M15 4.75a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0m-12.5 0a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0M5.75 6.5a1.75 1.75 0 1 0-.001-3.501A1.75 1.75 0 0 0 5.75 6.5M12 21a1.75 1.75 0 1 0-.001-3.501A1.75 1.75 0 0 0 12 21m6.25-14.5a1.75 1.75 0 1 0-.001-3.501A1.75 1.75 0 0 0 18.25 6.5"/><path d="M6.5 7.75v1A2.25 2.25 0 0 0 8.75 11h6.5a2.25 2.25 0 0 0 2.25-2.25v-1H19v1a3.75 3.75 0 0 1-3.75 3.75h-6.5A3.75 3.75 0 0 1 5 8.75v-1Z"/><path d="M11.25 16.25v-5h1.5v5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/repo-locked-16.svg�������������������������0000664�0000000�0000000�00000000733�14753064456�0026606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1 2.5A2.5 2.5 0 0 1 3.5 0h8.75a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0V1.5h-8a1 1 0 0 0-1 1v6.708A2.5 2.5 0 0 1 3.5 9h2.75a.75.75 0 0 1 0 1.5H3.5a1 1 0 1 0 0 2h2.75a.75.75 0 0 1 0 1.5H3.5A2.5 2.5 0 0 1 1 11.5z"/><path d="M9 10.168V9a3 3 0 1 1 6 0v1.168c.591.281 1 .884 1 1.582v2.5A1.75 1.75 0 0 1 14.25 16h-4.5A1.75 1.75 0 0 1 8 14.25v-2.5c0-.698.409-1.3 1-1.582M13.5 10V9a1.5 1.5 0 0 0-3 0v1Z"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/repo-locked-24.svg�������������������������0000664�0000000�0000000�00000001040�14753064456�0026575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2.75A2.75 2.75 0 0 1 4.75 0h14.5a.75.75 0 0 1 .75.75v8a.75.75 0 0 1-1.5 0V1.5H4.75c-.69 0-1.25.56-1.25 1.25v12.651A3 3 0 0 1 5 15h6.25a.75.75 0 0 1 0 1.5H5A1.5 1.5 0 0 0 3.5 18v1.25c0 .69.56 1.25 1.25 1.25h6a.75.75 0 0 1 0 1.5h-6A2.75 2.75 0 0 1 2 19.25z"/><path d="M15 14.5a3.5 3.5 0 1 1 7 0V16h.25c.966 0 1.75.784 1.75 1.75v4.5A1.75 1.75 0 0 1 22.25 24h-7.5A1.75 1.75 0 0 1 13 22.25v-4.5c0-.966.784-1.75 1.75-1.75H15Zm3.5-2a2 2 0 0 0-2 2V16h4v-1.5a2 2 0 0 0-2-2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/repo-pull-16.svg���������������������������0000664�0000000�0000000�00000000673�14753064456�0026324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1 2.5A2.5 2.5 0 0 1 3.5 0h8.75a.75.75 0 0 1 .75.75V6a.75.75 0 0 1-1.5 0V1.5h-8a1 1 0 0 0-1 1v6.708A2.5 2.5 0 0 1 3.5 9h3a.75.75 0 0 1 0 1.5h-3a1 1 0 0 0 0 2h3a.75.75 0 0 1 0 1.5h-3A2.5 2.5 0 0 1 1 11.5z"/><path d="M12.21 13.479a.75.75 0 1 0 1.061 1.061l2.504-2.505a.75.75 0 0 0 0-1.061L13.271 8.47a.75.75 0 0 0-1.061 1.06l1.224 1.225H8.75a.75.75 0 1 0 0 1.5h4.685z"/></svg>���������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/repo-pull-24.svg���������������������������0000664�0000000�0000000�00000000746�14753064456�0026324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.875 2.875a2.5 2.5 0 0 1 2.5-2.5h14a.75.75 0 0 1 .75.75v9.125a.75.75 0 0 1-1.5 0V1.875H4.375a1 1 0 0 0-1 1v11.208a2.5 2.5 0 0 1 1-.208h5.937a.75.75 0 1 1 0 1.5H4.375a1 1 0 0 0-1 1v1.75a1 1 0 0 0 1 1h6a.75.75 0 0 1 0 1.5h-6a2.5 2.5 0 0 1-2.5-2.5z"/><path d="M18.643 20.484a.749.749 0 1 0 1.061 1.06l3.757-3.757a.75.75 0 0 0 0-1.06l-3.757-3.757a.75.75 0 0 0-1.061 1.06l2.476 2.477H13a.75.75 0 0 0 0 1.5h8.12z"/></svg>��������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/repo-push-16.svg���������������������������0000664�0000000�0000000�00000000730�14753064456�0026321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1 2.5A2.5 2.5 0 0 1 3.5 0h8.75a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0V1.5h-8a1 1 0 0 0-1 1v6.708A2.5 2.5 0 0 1 3.5 9h3.25a.75.75 0 0 1 0 1.5H3.5a1 1 0 0 0 0 2h5.75a.75.75 0 0 1 0 1.5H3.5A2.5 2.5 0 0 1 1 11.5Zm13.23 7.79zl-1.224-1.224v6.184a.75.75 0 0 1-1.5 0V9.066L10.28 10.29a.75.75 0 0 1-1.06-1.061l2.505-2.504a.75.75 0 0 1 1.06 0L15.29 9.23a.75.75 0 0 1-.018 1.042.75.75 0 0 1-1.042.018"/></svg>����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/repo-push-24.svg���������������������������0000664�0000000�0000000�00000000774�14753064456�0026330�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.75 0A2.75 2.75 0 0 0 2 2.75v16.5A2.75 2.75 0 0 0 4.75 22h11a.75.75 0 0 0 0-1.5h-11c-.69 0-1.25-.56-1.25-1.25V18A1.5 1.5 0 0 1 5 16.5h7.25a.75.75 0 0 0 0-1.5H5c-.546 0-1.059.146-1.5.401V2.75c0-.69.56-1.25 1.25-1.25H18.5v7a.75.75 0 0 0 1.5 0V.75a.75.75 0 0 0-.75-.75z"/><path d="m20 13.903 2.202 2.359a.75.75 0 0 0 1.096-1.024l-3.5-3.75a.75.75 0 0 0-1.096 0l-3.5 3.75a.75.75 0 1 0 1.096 1.024l2.202-2.36v9.348a.75.75 0 0 0 1.5 0z"/></svg>����mkdocs-material-9.6.4/material/templates/.icons/octicons/repo-template-16.svg�����������������������0000664�0000000�0000000�00000002054�14753064456�0027156�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M13.25 8a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-.75.75h-2.5a.75.75 0 0 1 0-1.5h1.75v-2h-.75a.75.75 0 0 1 0-1.5h.75v-.25a.75.75 0 0 1 .75-.75M5 12.25a.25.25 0 0 1 .25-.25h3.5a.25.25 0 0 1 .25.25v3.25a.25.25 0 0 1-.4.2l-1.45-1.087a.25.25 0 0 0-.3 0L5.4 15.7a.25.25 0 0 1-.4-.2ZM2.75 8a.75.75 0 0 1 .75.75v.268Q3.624 9 3.75 9h.5a.75.75 0 0 1 0 1.5h-.5a.25.25 0 0 0-.25.25v.75c0 .28.114.532.3.714a.75.75 0 1 1-1.05 1.072A2.5 2.5 0 0 1 2 11.5V8.75A.75.75 0 0 1 2.75 8M11 .75a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0V1.5h-.75A.75.75 0 0 1 11 .75m-5 0A.75.75 0 0 1 6.75 0h2.5a.75.75 0 0 1 0 1.5h-2.5A.75.75 0 0 1 6 .75m0 9A.75.75 0 0 1 6.75 9h2.5a.75.75 0 0 1 0 1.5h-2.5A.75.75 0 0 1 6 9.75M4.992.662a.75.75 0 0 1-.636.848c-.436.063-.783.41-.846.846a.751.751 0 0 1-1.485-.212A2.5 2.5 0 0 1 4.144.025a.75.75 0 0 1 .848.637M2.75 4a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5A.75.75 0 0 1 2.75 4m10.5 0a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5a.75.75 0 0 1 .75-.75"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/repo-template-24.svg�����������������������0000664�0000000�0000000�00000001576�14753064456�0027165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.75 0A2.75 2.75 0 0 0 3 2.75v1a.75.75 0 0 0 1.5 0v-1c0-.69.56-1.25 1.25-1.25h1a.75.75 0 0 0 0-1.5zm4 0a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5zm7.5 0a.75.75 0 0 0 0 1.5h2.25v2.25a.75.75 0 0 0 1.5 0v-3a.75.75 0 0 0-.75-.75zM4.5 6.5a.75.75 0 0 0-1.5 0v3.75a.75.75 0 0 0 1.5 0zm16.5 0a.75.75 0 0 0-1.5 0v3.75a.75.75 0 0 0 1.5 0zM4.5 13.25a.75.75 0 0 0-1.5 0v5.5a3.25 3.25 0 0 0 1.95 2.98.75.75 0 1 0 .6-1.375A1.75 1.75 0 0 1 4.5 18.75V18A1.5 1.5 0 0 1 6 16.5h.75a.75.75 0 0 0 0-1.5H6c-.546 0-1.059.146-1.5.401zm16.5 0a.75.75 0 0 0-1.5 0V15h-2.25a.75.75 0 0 0 0 1.5h2.25v4h-5.25a.75.75 0 0 0 0 1.5h6a.75.75 0 0 0 .75-.75zM9.75 15a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5zm-2.353 8.461A.25.25 0 0 1 7 23.26v-5.01a.25.25 0 0 1 .25-.25h5a.25.25 0 0 1 .25.25v5.01a.25.25 0 0 1-.397.201l-2.206-1.604a.25.25 0 0 0-.294 0z"/></svg>����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/report-16.svg������������������������������0000664�0000000�0000000�00000000753�14753064456�0025717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v9.5A1.75 1.75 0 0 1 14.25 13H8.06l-2.573 2.573A1.458 1.458 0 0 1 3 14.543V13H1.75A1.75 1.75 0 0 1 0 11.25Zm1.75-.25a.25.25 0 0 0-.25.25v9.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.75.75 0 0 1 .53-.22h6.5a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25Zm7 2.25v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0M9 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0"/></svg>���������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/report-24.svg������������������������������0000664�0000000�0000000�00000001045�14753064456�0025711�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.5 4.25c0-.966.784-1.75 1.75-1.75h17.5c.966 0 1.75.784 1.75 1.75v12.5a1.75 1.75 0 0 1-1.75 1.75h-9.586a.25.25 0 0 0-.177.073l-3.5 3.5A1.458 1.458 0 0 1 5 21.043V18.5H3.25a1.75 1.75 0 0 1-1.75-1.75ZM3.25 4a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h2.5a.75.75 0 0 1 .75.75v3.19l3.427-3.427A1.75 1.75 0 0 1 11.164 17h9.586a.25.25 0 0 0 .25-.25V4.25a.25.25 0 0 0-.25-.25ZM12 6a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4A.75.75 0 0 1 12 6m0 9a1 1 0 1 1 0-2 1 1 0 0 1 0 2"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/rocket-16.svg������������������������������0000664�0000000�0000000�00000001757�14753064456�0025700�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M14.064 0h.186C15.216 0 16 .784 16 1.75v.186a8.75 8.75 0 0 1-2.564 6.186l-.458.459q-.472.471-.979.904v3.207c0 .608-.315 1.172-.833 1.49l-2.774 1.707a.75.75 0 0 1-1.11-.418l-.954-3.102a1 1 0 0 1-.145-.125L3.754 9.816a1 1 0 0 1-.124-.145L.528 8.717a.75.75 0 0 1-.418-1.11l1.71-2.774A1.75 1.75 0 0 1 3.31 4h3.204q.433-.508.904-.979l.459-.458A8.75 8.75 0 0 1 14.064 0M8.938 3.623h-.002l-.458.458c-.76.76-1.437 1.598-2.02 2.5l-1.5 2.317 2.143 2.143 2.317-1.5c.902-.583 1.74-1.26 2.499-2.02l.459-.458a7.25 7.25 0 0 0 2.123-5.127V1.75a.25.25 0 0 0-.25-.25h-.186a7.25 7.25 0 0 0-5.125 2.123M3.56 14.56c-.732.732-2.334 1.045-3.005 1.148a.23.23 0 0 1-.201-.064.23.23 0 0 1-.064-.201c.103-.671.416-2.273 1.15-3.003a1.502 1.502 0 1 1 2.12 2.12m6.94-3.935q-.132.09-.266.175l-2.35 1.521.548 1.783 1.949-1.2a.25.25 0 0 0 .119-.213ZM3.678 8.116 5.2 5.766q.087-.135.176-.266H3.309a.25.25 0 0 0-.213.119l-1.2 1.95ZM12 5a1 1 0 1 1-2 0 1 1 0 0 1 2 0"/></svg>�����������������mkdocs-material-9.6.4/material/templates/.icons/octicons/rocket-24.svg������������������������������0000664�0000000�0000000�00000002115�14753064456�0025664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.322.75h1.176a1.75 1.75 0 0 1 1.75 1.749v1.177a10.75 10.75 0 0 1-2.925 7.374l-1.228 1.304a24 24 0 0 1-1.596 1.542v5.038c0 .615-.323 1.184-.85 1.5l-4.514 2.709a.75.75 0 0 1-1.12-.488l-.963-4.572a1.3 1.3 0 0 1-.14-.129L8.04 15.96l-1.994-1.873a1.3 1.3 0 0 1-.129-.14l-4.571-.963a.75.75 0 0 1-.49-1.12l2.71-4.514c.316-.527.885-.85 1.5-.85h5.037a24 24 0 0 1 1.542-1.594l1.304-1.23A10.75 10.75 0 0 1 20.321.75Zm-6.344 4.018v-.001l-1.304 1.23a22.3 22.3 0 0 0-3.255 3.851l-2.193 3.29 1.859 1.744.034.034 1.743 1.858 3.288-2.192a22.3 22.3 0 0 0 3.854-3.257l1.228-1.303a9.25 9.25 0 0 0 2.517-6.346V2.5a.25.25 0 0 0-.25-.25h-1.177a9.25 9.25 0 0 0-6.344 2.518M6.5 21c-1.209 1.209-3.901 1.445-4.743 1.49a.24.24 0 0 1-.18-.067.24.24 0 0 1-.067-.18c.045-.842.281-3.534 1.49-4.743.9-.9 2.6-.9 3.5 0s.9 2.6 0 3.5m-.592-8.588L8.17 9.017q.346-.519.717-1.017H5.066a.25.25 0 0 0-.214.121l-2.167 3.612ZM16 15.112q-.5.372-1.018.718l-3.393 2.262.678 3.223 3.612-2.167a.25.25 0 0 0 .121-.214ZM17.5 8a1.5 1.5 0 1 1-3.001-.001A1.5 1.5 0 0 1 17.5 8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/rows-16.svg��������������������������������0000664�0000000�0000000�00000001027�14753064456�0025371�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M16 10.75v2.5A1.75 1.75 0 0 1 14.25 15H1.75A1.75 1.75 0 0 1 0 13.25v-2.5C0 9.784.784 9 1.75 9h12.5c.966 0 1.75.784 1.75 1.75m0-8v2.5A1.75 1.75 0 0 1 14.25 7H1.75A1.75 1.75 0 0 1 0 5.25v-2.5C0 1.784.784 1 1.75 1h12.5c.966 0 1.75.784 1.75 1.75m-1.75-.25H1.75a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25m0 8H1.75a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/rows-24.svg��������������������������������0000664�0000000�0000000�00000001040�14753064456�0025363�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 3.75v5.5A1.75 1.75 0 0 1 20.25 11H3.75A1.75 1.75 0 0 1 2 9.25v-5.5C2 2.784 2.784 2 3.75 2h16.5c.966 0 1.75.784 1.75 1.75m0 11v5.5A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25v-5.5c0-.966.784-1.75 1.75-1.75h16.5c.966 0 1.75.784 1.75 1.75M20.25 3.5H3.75a.25.25 0 0 0-.25.25v5.5c0 .138.112.25.25.25h16.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25m0 11H3.75a.25.25 0 0 0-.25.25v5.5c0 .138.112.25.25.25h16.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/rss-16.svg���������������������������������0000664�0000000�0000000�00000000547�14753064456�0025214�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2.002 2.725a.75.75 0 0 1 .797-.699C8.79 2.42 13.58 7.21 13.974 13.201a.75.75 0 0 1-1.497.098 10.5 10.5 0 0 0-9.776-9.776.747.747 0 0 1-.7-.798ZM2.84 7.05h-.002a7 7 0 0 1 6.113 6.111.75.75 0 0 1-1.49.178 5.5 5.5 0 0 0-4.8-4.8.75.75 0 0 1 .179-1.489M2 13a1 1 0 1 1 2 0 1 1 0 0 1-2 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/rss-24.svg���������������������������������0000664�0000000�0000000�00000000540�14753064456�0025204�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.5 3.25a.75.75 0 0 1 .75-.75C14.053 2.5 22 10.447 22 20.25a.75.75 0 0 1-1.5 0C20.5 11.275 13.225 4 4.25 4a.75.75 0 0 1-.75-.75m.75 6.25C10.187 9.5 15 14.313 15 20.25a.75.75 0 0 1-1.5 0A9.25 9.25 0 0 0 4.25 11a.75.75 0 0 1 0-1.5M3.5 19a2 2 0 1 1 3.999-.001A2 2 0 0 1 3.5 19"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/ruby-16.svg��������������������������������0000664�0000000�0000000�00000000435�14753064456�0025362�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.637 2.291A.75.75 0 0 1 4.23 2h7.54c.232 0 .451.107.593.291l3.48 4.5a.75.75 0 0 1-.072.999l-7.25 7a.75.75 0 0 1-1.042 0l-7.25-7a.75.75 0 0 1-.072-.999ZM4.598 3.5 1.754 7.177 8 13.207l6.246-6.03L11.402 3.5Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/ruby-24.svg��������������������������������0000664�0000000�0000000�00000000436�14753064456�0025362�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.873 3.26A.75.75 0 0 1 6.44 3h11.31c.223 0 .434.099.576.27l5 6a.75.75 0 0 1-.028.992l-10.75 11.5a.75.75 0 0 1-1.096 0l-10.75-11.5a.75.75 0 0 1-.02-1.003zm.91 1.24L2.258 9.73 12 20.153l9.75-10.43L17.399 4.5Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/screen-full-16.svg�������������������������0000664�0000000�0000000�00000001101�14753064456�0026607�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1.75 10a.75.75 0 0 1 .75.75v2.5c0 .138.112.25.25.25h2.5a.75.75 0 0 1 0 1.5h-2.5A1.75 1.75 0 0 1 1 13.25v-2.5a.75.75 0 0 1 .75-.75m12.5 0a.75.75 0 0 1 .75.75v2.5A1.75 1.75 0 0 1 13.25 15h-2.5a.75.75 0 0 1 0-1.5h2.5a.25.25 0 0 0 .25-.25v-2.5a.75.75 0 0 1 .75-.75M2.75 2.5a.25.25 0 0 0-.25.25v2.5a.75.75 0 0 1-1.5 0v-2.5C1 1.784 1.784 1 2.75 1h2.5a.75.75 0 0 1 0 1.5ZM10 1.75a.75.75 0 0 1 .75-.75h2.5c.966 0 1.75.784 1.75 1.75v2.5a.75.75 0 0 1-1.5 0v-2.5a.25.25 0 0 0-.25-.25h-2.5a.75.75 0 0 1-.75-.75"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/screen-full-24.svg�������������������������0000664�0000000�0000000�00000001101�14753064456�0026606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.75 15a.75.75 0 0 1 .75.75v3.5c0 .138.112.25.25.25h3.5a.75.75 0 0 1 0 1.5h-3.5A1.75 1.75 0 0 1 3 19.25v-3.5a.75.75 0 0 1 .75-.75m16.5 0a.75.75 0 0 1 .75.75v3.5A1.75 1.75 0 0 1 19.25 21h-3.5a.75.75 0 0 1 0-1.5h3.5a.25.25 0 0 0 .25-.25v-3.5a.75.75 0 0 1 .75-.75M4.75 4.5a.25.25 0 0 0-.25.25v3.5a.75.75 0 0 1-1.5 0v-3.5C3 3.784 3.784 3 4.75 3h3.5a.75.75 0 0 1 0 1.5ZM15 3.75a.75.75 0 0 1 .75-.75h3.5c.966 0 1.75.784 1.75 1.75v3.5a.75.75 0 0 1-1.5 0v-3.5a.25.25 0 0 0-.25-.25h-3.5a.75.75 0 0 1-.75-.75"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/screen-normal-16.svg�����������������������0000664�0000000�0000000�00000001074�14753064456�0027146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M10.75 1a.75.75 0 0 1 .75.75v2.5c0 .138.112.25.25.25h2.5a.75.75 0 0 1 0 1.5h-2.5A1.75 1.75 0 0 1 10 4.25v-2.5a.75.75 0 0 1 .75-.75m-5.5 0a.75.75 0 0 1 .75.75v2.5A1.75 1.75 0 0 1 4.25 6h-2.5a.75.75 0 0 1 0-1.5h2.5a.25.25 0 0 0 .25-.25v-2.5A.75.75 0 0 1 5.25 1M1 10.75a.75.75 0 0 1 .75-.75h2.5c.966 0 1.75.784 1.75 1.75v2.5a.75.75 0 0 1-1.5 0v-2.5a.25.25 0 0 0-.25-.25h-2.5a.75.75 0 0 1-.75-.75m9 1c0-.966.784-1.75 1.75-1.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.25.25 0 0 0-.25.25v2.5a.75.75 0 0 1-1.5 0Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/screen-normal-24.svg�����������������������0000664�0000000�0000000�00000001075�14753064456�0027146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.75 3a.75.75 0 0 1 .75.75v3.5c0 .138.112.25.25.25h3.5a.75.75 0 0 1 0 1.5h-3.5A1.75 1.75 0 0 1 15 7.25v-3.5a.75.75 0 0 1 .75-.75m-7.5 0a.75.75 0 0 1 .75.75v3.5A1.75 1.75 0 0 1 7.25 9h-3.5a.75.75 0 0 1 0-1.5h3.5a.25.25 0 0 0 .25-.25v-3.5A.75.75 0 0 1 8.25 3M3 15.75a.75.75 0 0 1 .75-.75h3.5c.966 0 1.75.784 1.75 1.75v3.5a.75.75 0 0 1-1.5 0v-3.5a.25.25 0 0 0-.25-.25h-3.5a.75.75 0 0 1-.75-.75m12 1c0-.966.784-1.75 1.75-1.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.25.25 0 0 0-.25.25v3.5a.75.75 0 0 1-1.5 0Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/search-16.svg������������������������������0000664�0000000�0000000�00000000373�14753064456�0025647�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M10.68 11.74a6 6 0 0 1-7.922-8.982 6 6 0 0 1 8.982 7.922l3.04 3.04a.749.749 0 0 1-.326 1.275.75.75 0 0 1-.734-.215ZM11.5 7a4.499 4.499 0 1 0-8.997 0A4.499 4.499 0 0 0 11.5 7"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/search-24.svg������������������������������0000664�0000000�0000000�00000000406�14753064456�0025643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.25 2a8.25 8.25 0 0 1 6.34 13.53l5.69 5.69a.749.749 0 0 1-.326 1.275.75.75 0 0 1-.734-.215l-5.69-5.69A8.25 8.25 0 1 1 10.25 2M3.5 10.25a6.75 6.75 0 1 0 13.5 0 6.75 6.75 0 0 0-13.5 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/server-16.svg������������������������������0000664�0000000�0000000�00000001365�14753064456�0025712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1.75 1h12.5c.966 0 1.75.784 1.75 1.75v4c0 .372-.116.717-.314 1 .198.283.314.628.314 1v4a1.75 1.75 0 0 1-1.75 1.75H1.75A1.75 1.75 0 0 1 0 12.75v-4c0-.358.109-.707.314-1a1.74 1.74 0 0 1-.314-1v-4C0 1.784.784 1 1.75 1M1.5 2.75v4c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-4a.25.25 0 0 0-.25-.25H1.75a.25.25 0 0 0-.25.25m.25 5.75a.25.25 0 0 0-.25.25v4c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-4a.25.25 0 0 0-.25-.25ZM7 4.75A.75.75 0 0 1 7.75 4h4.5a.75.75 0 0 1 0 1.5h-4.5A.75.75 0 0 1 7 4.75M7.75 10h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1 0-1.5M3 4.75A.75.75 0 0 1 3.75 4h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 3 4.75M3.75 10h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1 0-1.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/server-24.svg������������������������������0000664�0000000�0000000�00000001377�14753064456�0025714�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.75 6.5a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5zM6 7.25a.75.75 0 0 1 .75-.75h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 6 7.25m4 9a.75.75 0 0 1 .75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1-.75-.75m-3.25-.75a.75.75 0 0 0 0 1.5h.5a.75.75 0 0 0 0-1.5z"/><path d="M3.25 2h17.5c.966 0 1.75.784 1.75 1.75v7c0 .372-.116.716-.314 1 .198.284.314.628.314 1v7a1.75 1.75 0 0 1-1.75 1.75H3.25a1.75 1.75 0 0 1-1.75-1.75v-7c0-.358.109-.707.314-1a1.74 1.74 0 0 1-.314-1v-7C1.5 2.784 2.284 2 3.25 2m0 10.5a.25.25 0 0 0-.25.25v7c0 .138.112.25.25.25h17.5a.25.25 0 0 0 .25-.25v-7a.25.25 0 0 0-.25-.25Zm0-1.5h17.5a.25.25 0 0 0 .25-.25v-7a.25.25 0 0 0-.25-.25H3.25a.25.25 0 0 0-.25.25v7c0 .138.112.25.25.25"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/share-16.svg�������������������������������0000664�0000000�0000000�00000000723�14753064456�0025503�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.75 6.5a.25.25 0 0 0-.25.25v6.5c0 .138.112.25.25.25h8.5a.25.25 0 0 0 .25-.25v-6.5a.25.25 0 0 0-.25-.25h-1a.75.75 0 0 1 0-1.5h1c.966 0 1.75.784 1.75 1.75v6.5A1.75 1.75 0 0 1 12.25 15h-8.5A1.75 1.75 0 0 1 2 13.25v-6.5C2 5.784 2.784 5 3.75 5h1a.75.75 0 0 1 0 1.5ZM7.823.177a.25.25 0 0 1 .354 0l2.896 2.896a.25.25 0 0 1-.177.427H8.75v5.75a.75.75 0 0 1-1.5 0V3.5H5.104a.25.25 0 0 1-.177-.427Z"/></svg>���������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/share-24.svg�������������������������������0000664�0000000�0000000�00000001045�14753064456�0025500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.5 9.75v10.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25V9.75a.25.25 0 0 0-.25-.25h-2.5a.75.75 0 0 1 0-1.5h2.5c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0 1 18.25 22H5.75A1.75 1.75 0 0 1 4 20.25V9.75C4 8.784 4.784 8 5.75 8h2.5a.75.75 0 0 1 0 1.5h-2.5a.25.25 0 0 0-.25.25m7.03-8.53 3.25 3.25a.749.749 0 0 1-.326 1.275.75.75 0 0 1-.734-.215l-1.97-1.97v10.69a.75.75 0 0 1-1.5 0V3.56L9.28 5.53a.75.75 0 0 1-1.042-.018.75.75 0 0 1-.018-1.042l3.25-3.25a.75.75 0 0 1 1.06 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/share-android-16.svg�����������������������0000664�0000000�0000000�00000000564�14753064456�0027124�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M15 3a3 3 0 0 1-5.175 2.066l-3.92 2.179a3 3 0 0 1 0 1.51l3.92 2.179a3 3 0 1 1-.73 1.31l-3.92-2.178a3 3 0 1 1 0-4.133l3.92-2.178A3 3 0 1 1 15 3m-1.5 10a1.5 1.5 0 1 0-3.001.001A1.5 1.5 0 0 0 13.5 13m-9-5a1.5 1.5 0 1 0-3.001.001A1.5 1.5 0 0 0 4.5 8m9-5a1.5 1.5 0 1 0-3.001.001A1.5 1.5 0 0 0 13.5 3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/share-android-24.svg�����������������������0000664�0000000�0000000�00000000650�14753064456�0027117�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 5.5a3.498 3.498 0 0 1-6.062 2.385l-5.112 3.021a3.5 3.5 0 0 1 0 2.188l5.112 3.021a3.5 3.5 0 1 1-.764 1.29l-5.112-3.02a3.499 3.499 0 1 1-3.843-5.642 3.5 3.5 0 0 1 3.843.872l5.112-3.021A3.5 3.5 0 1 1 20 5.5m-1.5 13a2 2 0 1 0-3.999-.001 2 2 0 0 0 3.999.001m0-13a2 2 0 1 0-3.999-.001A2 2 0 0 0 18.5 5.5M5.5 14a2 2 0 1 0 .001-3.999A2 2 0 0 0 5.5 14"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/shield-16.svg������������������������������0000664�0000000�0000000�00000001220�14753064456�0025642�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.467.133a1.75 1.75 0 0 1 1.066 0l5.25 1.68A1.75 1.75 0 0 1 15 3.48V7c0 1.566-.32 3.182-1.303 4.682-.983 1.498-2.585 2.813-5.032 3.855a1.7 1.7 0 0 1-1.33 0c-2.447-1.042-4.049-2.357-5.032-3.855C1.32 10.182 1 8.566 1 7V3.48a1.75 1.75 0 0 1 1.217-1.667Zm.61 1.429a.25.25 0 0 0-.153 0l-5.25 1.68a.25.25 0 0 0-.174.238V7c0 1.358.275 2.666 1.057 3.86.784 1.194 2.121 2.34 4.366 3.297a.2.2 0 0 0 .154 0c2.245-.956 3.582-2.104 4.366-3.298C13.225 9.666 13.5 8.36 13.5 7V3.48a.25.25 0 0 0-.174-.237zM8.75 4.75v3a.75.75 0 0 1-1.5 0v-3a.75.75 0 0 1 1.5 0M9 10.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/shield-24.svg������������������������������0000664�0000000�0000000�00000001033�14753064456�0025643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 15.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0m-.25-8.25a.75.75 0 0 0-1.5 0v4.5a.75.75 0 0 0 1.5 0z"/><path d="M11.46.637a1.75 1.75 0 0 1 1.08 0l8.25 2.675A1.75 1.75 0 0 1 22 4.976V10c0 6.19-3.77 10.705-9.401 12.83a1.7 1.7 0 0 1-1.198 0C5.771 20.704 2 16.19 2 10V4.976c0-.76.49-1.43 1.21-1.664Zm.617 1.426a.25.25 0 0 0-.154 0L3.673 4.74a.25.25 0 0 0-.173.237V10c0 5.461 3.28 9.483 8.43 11.426a.2.2 0 0 0 .14 0C17.22 19.483 20.5 15.46 20.5 10V4.976a.25.25 0 0 0-.173-.237Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/shield-check-16.svg������������������������0000664�0000000�0000000�00000001356�14753064456�0026727�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m8.533.133 5.25 1.68A1.75 1.75 0 0 1 15 3.48V7c0 1.566-.32 3.182-1.303 4.682-.983 1.498-2.585 2.813-5.032 3.855a1.7 1.7 0 0 1-1.33 0c-2.447-1.042-4.049-2.357-5.032-3.855C1.32 10.182 1 8.566 1 7V3.48a1.75 1.75 0 0 1 1.217-1.667l5.25-1.68a1.75 1.75 0 0 1 1.066 0m-.61 1.429zl-5.25 1.68a.25.25 0 0 0-.174.237V7c0 1.36.275 2.666 1.057 3.859.784 1.194 2.121 2.342 4.366 3.298a.2.2 0 0 0 .154 0c2.245-.957 3.582-2.103 4.366-3.297C13.225 9.666 13.5 8.358 13.5 7V3.48a.25.25 0 0 0-.174-.238l-5.25-1.68a.25.25 0 0 0-.153 0M11.28 6.28l-3.5 3.5a.75.75 0 0 1-1.06 0l-1.5-1.5a.749.749 0 0 1 .326-1.275.75.75 0 0 1 .734.215l.97.97 2.97-2.97a.75.75 0 0 1 1.042.018.75.75 0 0 1 .018 1.042"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/shield-check-24.svg������������������������0000664�0000000�0000000�00000001103�14753064456�0026714�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.53 9.78a.75.75 0 0 0-1.06-1.06L11 13.19l-1.97-1.97a.75.75 0 0 0-1.06 1.06l2.5 2.5a.75.75 0 0 0 1.06 0z"/><path d="m12.54.637 8.25 2.675A1.75 1.75 0 0 1 22 4.976V10c0 6.19-3.771 10.704-9.401 12.83a1.7 1.7 0 0 1-1.198 0C5.77 20.705 2 16.19 2 10V4.976c0-.758.489-1.43 1.21-1.664L11.46.637a1.75 1.75 0 0 1 1.08 0m-.617 1.426-8.25 2.676a.25.25 0 0 0-.173.237V10c0 5.46 3.28 9.483 8.43 11.426a.2.2 0 0 0 .14 0C17.22 19.483 20.5 15.461 20.5 10V4.976a.25.25 0 0 0-.173-.237l-8.25-2.676a.25.25 0 0 0-.154 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/shield-lock-16.svg�������������������������0000664�0000000�0000000�00000001243�14753064456�0026575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m8.533.133 5.25 1.68A1.75 1.75 0 0 1 15 3.48V7c0 1.566-.32 3.182-1.303 4.682-.983 1.498-2.585 2.813-5.032 3.855a1.7 1.7 0 0 1-1.33 0c-2.447-1.042-4.049-2.357-5.032-3.855C1.32 10.182 1 8.566 1 7V3.48a1.75 1.75 0 0 1 1.217-1.667l5.25-1.68a1.75 1.75 0 0 1 1.066 0m-.61 1.429zl-5.25 1.68a.25.25 0 0 0-.174.237V7c0 1.36.275 2.666 1.057 3.859.784 1.194 2.121 2.342 4.366 3.298a.2.2 0 0 0 .154 0c2.245-.957 3.582-2.103 4.366-3.297C13.225 9.666 13.5 8.358 13.5 7V3.48a.25.25 0 0 0-.174-.238l-5.25-1.68a.25.25 0 0 0-.153 0M9.5 6.5c0 .536-.286 1.032-.75 1.3v2.45a.75.75 0 0 1-1.5 0V7.8A1.5 1.5 0 1 1 9.5 6.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/shield-lock-24.svg�������������������������0000664�0000000�0000000�00000000760�14753064456�0026577�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.46 1.137a1.75 1.75 0 0 1 1.08 0l8.25 2.675A1.75 1.75 0 0 1 22 5.476V10.5c0 6.19-3.77 10.705-9.401 12.83a1.7 1.7 0 0 1-1.198 0C5.771 21.204 2 16.69 2 10.5V5.476c0-.76.49-1.43 1.21-1.664Zm.617 1.426a.25.25 0 0 0-.154 0L3.673 5.24a.25.25 0 0 0-.173.237V10.5c0 5.461 3.28 9.483 8.43 11.426a.2.2 0 0 0 .14 0c5.15-1.943 8.43-5.965 8.43-11.426V5.476a.25.25 0 0 0-.173-.237ZM13 12.232V15a1 1 0 0 1-2 0v-2.768a2 2 0 1 1 2 0"/></svg>����������������mkdocs-material-9.6.4/material/templates/.icons/octicons/shield-slash-16.svg������������������������0000664�0000000�0000000�00000001152�14753064456�0026756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8.533.133a1.75 1.75 0 0 0-1.066 0l-2.091.67a.75.75 0 0 0 .457 1.428l2.09-.67a.25.25 0 0 1 .153 0l5.25 1.68a.25.25 0 0 1 .174.239V7q0 .35-.025.694a.75.75 0 1 0 1.495.112Q15 7.401 15 7V3.48a1.75 1.75 0 0 0-1.217-1.667zM1 2.857l-.69-.5a.75.75 0 1 1 .88-1.214l14.5 10.5a.75.75 0 1 1-.88 1.214l-1.282-.928c-.995 1.397-2.553 2.624-4.864 3.608-.425.181-.905.18-1.329 0-2.447-1.042-4.049-2.356-5.032-3.855S1 8.566 1 7Zm1.5 1.086V7c0 1.358.275 2.666 1.057 3.86.784 1.194 2.121 2.34 4.366 3.297.05.02.106.02.153 0 2.127-.905 3.439-1.982 4.237-3.108Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/shield-slash-24.svg������������������������0000664�0000000�0000000�00000001244�14753064456�0026757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.54 1.137a1.75 1.75 0 0 0-1.08 0L6.018 2.905a.75.75 0 1 0 .464 1.427l5.441-1.768a.24.24 0 0 1 .154 0l8.25 2.675a.25.25 0 0 1 .173.237V10.5c0 1.284-.24 2.83-.696 3.971a.75.75 0 1 0 1.392.557C21.74 13.67 22 11.927 22 10.5V5.476a1.75 1.75 0 0 0-1.21-1.664zM2.017 4.843l-.974-.748a.751.751 0 0 1 .914-1.19l20.5 15.75a.751.751 0 0 1-.914 1.19l-2.012-1.546-.702.852-.008.009-.008.01c-1.603 1.821-3.731 3.223-6.214 4.16a1.7 1.7 0 0 1-1.198-.001C5.771 21.205 2 16.689 2 10.5V5q0-.082.017-.157M3.5 5.982V10.5c0 5.461 3.281 9.483 8.431 11.426a.2.2 0 0 0 .138 0c2.283-.861 4.192-2.131 5.61-3.738l.662-.803Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/shield-x-16.svg����������������������������0000664�0000000�0000000�00000001535�14753064456�0026120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m8.533.133 5.25 1.68A1.75 1.75 0 0 1 15 3.48V7c0 1.566-.32 3.182-1.303 4.682-.983 1.498-2.585 2.813-5.032 3.855a1.7 1.7 0 0 1-1.33 0c-2.447-1.042-4.049-2.357-5.032-3.855C1.32 10.182 1 8.566 1 7V3.48a1.75 1.75 0 0 1 1.217-1.667l5.25-1.68a1.75 1.75 0 0 1 1.066 0m-.61 1.429zl-5.25 1.68a.25.25 0 0 0-.174.237V7c0 1.36.275 2.666 1.057 3.859.784 1.194 2.121 2.342 4.366 3.298a.2.2 0 0 0 .154 0c2.245-.957 3.582-2.103 4.366-3.297C13.225 9.666 13.5 8.358 13.5 7V3.48a.25.25 0 0 0-.174-.238l-5.25-1.68a.25.25 0 0 0-.153 0M6.78 5.22 8 6.44l1.22-1.22a.749.749 0 0 1 1.275.326.75.75 0 0 1-.215.734L9.06 7.5l1.22 1.22a.749.749 0 0 1-.326 1.275.75.75 0 0 1-.734-.215L8 8.56 6.78 9.78a.75.75 0 0 1-1.042-.018.75.75 0 0 1-.018-1.042L6.94 7.5 5.72 6.28a.749.749 0 0 1 .326-1.275.75.75 0 0 1 .734.215"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/shield-x-24.svg����������������������������0000664�0000000�0000000�00000001205�14753064456�0026111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.28 7.72a.75.75 0 0 0-1.06 1.06l2.72 2.72-2.72 2.72a.75.75 0 1 0 1.06 1.06L12 12.56l2.72 2.72a.75.75 0 1 0 1.06-1.06l-2.72-2.72 2.72-2.72a.75.75 0 0 0-1.06-1.06L12 10.44z"/><path d="m12.54.637 8.25 2.675A1.75 1.75 0 0 1 22 4.976V10c0 6.19-3.771 10.704-9.401 12.83a1.7 1.7 0 0 1-1.198 0C5.77 20.705 2 16.19 2 10V4.976c0-.758.489-1.43 1.21-1.664L11.46.637a1.75 1.75 0 0 1 1.08 0m-.617 1.426-8.25 2.676a.25.25 0 0 0-.173.237V10c0 5.46 3.28 9.483 8.43 11.426a.2.2 0 0 0 .14 0C17.22 19.483 20.5 15.461 20.5 10V4.976a.25.25 0 0 0-.173-.237l-8.25-2.676a.25.25 0 0 0-.154 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/sidebar-collapse-16.svg��������������������0000664�0000000�0000000�00000000667�14753064456�0027621�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6.823 7.823a.25.25 0 0 1 0 .354l-2.396 2.396A.25.25 0 0 1 4 10.396V5.604a.25.25 0 0 1 .427-.177Z"/><path d="M1.75 0h12.5C15.216 0 16 .784 16 1.75v12.5A1.75 1.75 0 0 1 14.25 16H1.75A1.75 1.75 0 0 1 0 14.25V1.75C0 .784.784 0 1.75 0M1.5 1.75v12.5c0 .138.112.25.25.25H9.5v-13H1.75a.25.25 0 0 0-.25.25M11 14.5h3.25a.25.25 0 0 0 .25-.25V1.75a.25.25 0 0 0-.25-.25H11Z"/></svg>�������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/sidebar-collapse-24.svg��������������������0000664�0000000�0000000�00000000764�14753064456�0027616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.22 14.47 9.69 12 7.22 9.53a.749.749 0 0 1 .326-1.275.75.75 0 0 1 .734.215l3 3a.75.75 0 0 1 0 1.06l-3 3a.75.75 0 0 1-1.042-.018.75.75 0 0 1-.018-1.042"/><path d="M3.75 2h16.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25V3.75C2 2.784 2.784 2 3.75 2M3.5 3.75v16.5c0 .138.112.25.25.25H15v-17H3.75a.25.25 0 0 0-.25.25m13 16.75h3.75a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25H16.5Z"/></svg>������������mkdocs-material-9.6.4/material/templates/.icons/octicons/sidebar-expand-16.svg����������������������0000664�0000000�0000000�00000000665�14753064456�0027274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m4.177 7.823 2.396-2.396A.25.25 0 0 1 7 5.604v4.792a.25.25 0 0 1-.427.177L4.177 8.177a.25.25 0 0 1 0-.354"/><path d="M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v12.5A1.75 1.75 0 0 1 14.25 16H1.75A1.75 1.75 0 0 1 0 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25H9.5v-13Zm12.5 13a.25.25 0 0 0 .25-.25V1.75a.25.25 0 0 0-.25-.25H11v13Z"/></svg>���������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/sidebar-expand-24.svg����������������������0000664�0000000�0000000�00000000764�14753064456�0027273�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.28 9.53 8.81 12l2.47 2.47a.749.749 0 0 1-.326 1.275.75.75 0 0 1-.734-.215l-3-3a.75.75 0 0 1 0-1.06l3-3a.749.749 0 0 1 1.275.326.75.75 0 0 1-.215.734"/><path d="M3.75 2h16.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25V3.75C2 2.784 2.784 2 3.75 2M3.5 3.75v16.5c0 .138.112.25.25.25H15v-17H3.75a.25.25 0 0 0-.25.25m13 16.75h3.75a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25H16.5Z"/></svg>������������mkdocs-material-9.6.4/material/templates/.icons/octicons/sign-in-16.svg�����������������������������0000664�0000000�0000000�00000000641�14753064456�0025744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2 2.75C2 1.784 2.784 1 3.75 1h2.5a.75.75 0 0 1 0 1.5h-2.5a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h2.5a.75.75 0 0 1 0 1.5h-2.5A1.75 1.75 0 0 1 2 13.25Zm6.56 4.5h5.69a.75.75 0 0 1 0 1.5H8.56l1.97 1.97a.749.749 0 0 1-.326 1.275.75.75 0 0 1-.734-.215L6.22 8.53a.75.75 0 0 1 0-1.06l3.25-3.25a.749.749 0 0 1 1.275.326.75.75 0 0 1-.215.734Z"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/sign-in-24.svg�����������������������������0000664�0000000�0000000�00000000600�14753064456�0025736�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3.25c0-.966.784-1.75 1.75-1.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.25.25 0 0 0-.25.25v17.5c0 .138.112.25.25.25h5.5a.75.75 0 0 1 0 1.5h-5.5A1.75 1.75 0 0 1 3 20.75Zm9.994 9.5 3.3 3.484a.75.75 0 0 1-1.088 1.032l-4.5-4.75a.75.75 0 0 1 0-1.032l4.5-4.75a.75.75 0 0 1 1.088 1.032l-3.3 3.484h8.256a.75.75 0 0 1 0 1.5Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/sign-out-16.svg����������������������������0000664�0000000�0000000�00000000651�14753064456�0026146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2 2.75C2 1.784 2.784 1 3.75 1h2.5a.75.75 0 0 1 0 1.5h-2.5a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h2.5a.75.75 0 0 1 0 1.5h-2.5A1.75 1.75 0 0 1 2 13.25Zm10.44 4.5-1.97-1.97a.749.749 0 0 1 .326-1.275.75.75 0 0 1 .734.215l3.25 3.25a.75.75 0 0 1 0 1.06l-3.25 3.25a.749.749 0 0 1-1.275-.326.75.75 0 0 1 .215-.734l1.97-1.97H6.75a.75.75 0 0 1 0-1.5Z"/></svg>���������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/sign-out-24.svg����������������������������0000664�0000000�0000000�00000000575�14753064456�0026152�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3.25c0-.966.784-1.75 1.75-1.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.25.25 0 0 0-.25.25v17.5c0 .138.112.25.25.25h5.5a.75.75 0 0 1 0 1.5h-5.5A1.75 1.75 0 0 1 3 20.75Zm16.006 9.5H10.75a.75.75 0 0 1 0-1.5h8.256l-3.3-3.484a.75.75 0 0 1 1.088-1.032l4.5 4.75a.75.75 0 0 1 0 1.032l-4.5 4.75a.75.75 0 0 1-1.088-1.032Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/single-select-16.svg�����������������������0000664�0000000�0000000�00000000662�14753064456�0027141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m5.06 7.356 2.795 2.833c.08.081.21.081.29 0l2.794-2.833c.13-.131.038-.356-.145-.356H5.206c-.183 0-.275.225-.145.356Z"/><path d="M1 2.75C1 1.784 1.784 1 2.75 1h10.5c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0 1 13.25 15H2.75A1.75 1.75 0 0 1 1 13.25Zm1.75-.25a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25V2.75a.25.25 0 0 0-.25-.25Z"/></svg>������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/single-select-24.svg�����������������������0000664�0000000�0000000�00000000644�14753064456�0027140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.854 10.854 3.792 3.792a.5.5 0 0 0 .708 0l3.793-3.792a.5.5 0 0 0-.354-.854H8.207a.5.5 0 0 0-.353.854"/><path d="M2 3.75C2 2.784 2.784 2 3.75 2h16.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25Zm1.75-.25a.25.25 0 0 0-.25.25v16.5c0 .138.112.25.25.25h16.5a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25Z"/></svg>��������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/skip-16.svg��������������������������������0000664�0000000�0000000�00000000423�14753064456�0025344�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0M1.5 8a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0m9.78-2.22-5.5 5.5a.749.749 0 0 1-1.275-.326.75.75 0 0 1 .215-.734l5.5-5.5a.75.75 0 0 1 1.042.018.75.75 0 0 1 .018 1.042"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/skip-24.svg��������������������������������0000664�0000000�0000000�00000000501�14753064456�0025340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.28 7.78a.75.75 0 0 0-1.06-1.06l-9.5 9.5a.75.75 0 1 0 1.06 1.06z"/><path d="M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1M2.5 12a9.5 9.5 0 0 0 9.5 9.5 9.5 9.5 0 0 0 9.5-9.5A9.5 9.5 0 0 0 12 2.5 9.5 9.5 0 0 0 2.5 12"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/skip-fill-16.svg���������������������������0000664�0000000�0000000�00000000274�14753064456�0026274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8m11.333-2.167a.825.825 0 0 0-1.166-1.166l-5.5 5.5a.825.825 0 0 0 1.166 1.166Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/skip-fill-24.svg���������������������������0000664�0000000�0000000�00000000341�14753064456�0026266�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12m16.333-4.167a.825.825 0 0 0-1.166-1.166l-9.5 9.5a.825.825 0 0 0 1.166 1.166Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/sliders-16.svg�����������������������������0000664�0000000�0000000�00000001034�14753064456�0026042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M15 2.75a.75.75 0 0 1-.75.75h-4a.75.75 0 0 1 0-1.5h4a.75.75 0 0 1 .75.75m-8.5.75v1.25a.75.75 0 0 0 1.5 0v-4a.75.75 0 0 0-1.5 0V2H1.75a.75.75 0 0 0 0 1.5zm1.25 5.25a.75.75 0 0 0 0-1.5h-6a.75.75 0 0 0 0 1.5zM15 8a.75.75 0 0 1-.75.75H11.5V10a.75.75 0 1 1-1.5 0V6a.75.75 0 0 1 1.5 0v1.25h2.75A.75.75 0 0 1 15 8m-9 5.25v-2a.75.75 0 0 0-1.5 0v1.25H1.75a.75.75 0 0 0 0 1.5H4.5v1.25a.75.75 0 0 0 1.5 0zm9 0a.75.75 0 0 1-.75.75h-6a.75.75 0 0 1 0-1.5h6a.75.75 0 0 1 .75.75"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/sliders-24.svg�����������������������������0000664�0000000�0000000�00000001401�14753064456�0026037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 18.25a.75.75 0 0 1 .75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1-.75-.75m-8-12a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 0 1.5h-7.5A.75.75 0 0 1 3 6.25m13 6a.75.75 0 0 1 .75-.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75M8.75 16a.75.75 0 0 1 .75.75v3a.75.75 0 0 1-1.5 0v-3a.75.75 0 0 1 .75-.75"/><path d="M3 18.25a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75m0-6a.75.75 0 0 1 .75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1-.75-.75M16.75 10a.75.75 0 0 1 .75.75v3a.75.75 0 0 1-1.5 0v-3a.75.75 0 0 1 .75-.75M14 6.25a.75.75 0 0 1 .75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75M11.25 4a.75.75 0 0 1 .75.75v3a.75.75 0 0 1-1.5 0v-3a.75.75 0 0 1 .75-.75"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/smiley-16.svg������������������������������0000664�0000000�0000000�00000001236�14753064456�0025703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0M1.5 8a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0m3.82 1.636a.75.75 0 0 1 1.038.175l.007.009q.155.177.35.31c.264.178.683.37 1.285.37s1.02-.192 1.285-.371q.195-.132.35-.31l.007-.008a.75.75 0 0 1 1.222.87l-.022-.015c.02.013.021.015.021.015v.001l-.001.002-.002.003-.005.007-.014.019a2 2 0 0 1-.184.213q-.241.25-.53.445c-.63.418-1.37.638-2.127.629-.946 0-1.652-.308-2.126-.63a3.3 3.3 0 0 1-.715-.657l-.014-.02-.005-.006-.002-.003v-.002h-.001l.613-.432-.614.43a.75.75 0 0 1 .183-1.044ZM12 7a1 1 0 1 1-2 0 1 1 0 0 1 2 0M5 8a1 1 0 1 1 0-2 1 1 0 0 1 0 2m5.25 2.25.592.416z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/smiley-24.svg������������������������������0000664�0000000�0000000�00000001334�14753064456�0025701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.456 14.494a.75.75 0 0 1 1.068.17 3 3 0 0 0 .572.492A3.4 3.4 0 0 0 12 15.72c.855 0 1.487-.283 1.904-.562a3 3 0 0 0 .572-.492l.021-.026a.75.75 0 0 1 1.197.905l-.027.034q-.02.025-.052.063c-.044.05-.105.119-.184.198a4.6 4.6 0 0 1-.695.566A4.9 4.9 0 0 1 12 17.22a4.9 4.9 0 0 1-2.736-.814 4.6 4.6 0 0 1-.695-.566 3 3 0 0 1-.236-.261c-.259-.332-.223-.824.123-1.084Z"/><path d="M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1M2.5 12a9.5 9.5 0 0 0 9.5 9.5 9.5 9.5 0 0 0 9.5-9.5A9.5 9.5 0 0 0 12 2.5 9.5 9.5 0 0 0 2.5 12"/><path d="M9 10.75a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0M16.25 12a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/sort-asc-16.svg����������������������������0000664�0000000�0000000�00000000644�14753064456�0026136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m12.927 2.573 3 3A.25.25 0 0 1 15.75 6H13.5v6.75a.75.75 0 0 1-1.5 0V6H9.75a.25.25 0 0 1-.177-.427l3-3a.25.25 0 0 1 .354 0M0 12.25a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 0 1.5H.75a.75.75 0 0 1-.75-.75m0-4a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5H.75A.75.75 0 0 1 0 8.25m0-4a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5H.75A.75.75 0 0 1 0 4.25"/></svg>��������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/sort-asc-24.svg����������������������������0000664�0000000�0000000�00000000554�14753064456�0026135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 17.25a.75.75 0 0 1-1.5 0V7.56l-2.22 2.22a.75.75 0 1 1-1.06-1.06l3.5-3.5a.75.75 0 0 1 1.06 0l3.5 3.5a.75.75 0 0 1-1.06 1.06L18.5 7.56zm-15.75.25a.75.75 0 0 1 0-1.5h9.5a.75.75 0 0 1 0 1.5zm0-5a.75.75 0 0 1 0-1.5h5.5a.75.75 0 0 1 0 1.5zm0-5a.75.75 0 0 1 0-1.5h3.5a.75.75 0 0 1 0 1.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/sort-desc-16.svg���������������������������0000664�0000000�0000000�00000000634�14753064456�0026305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 4.25a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 0 1.5H.75A.75.75 0 0 1 0 4.25m0 4a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5H.75A.75.75 0 0 1 0 8.25m0 4a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5H.75a.75.75 0 0 1-.75-.75M13.5 10h2.25a.25.25 0 0 1 .177.427l-3 3a.25.25 0 0 1-.354 0l-3-3A.25.25 0 0 1 9.75 10H12V3.75a.75.75 0 0 1 1.5 0z"/></svg>����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/sort-desc-24.svg���������������������������0000664�0000000�0000000�00000000664�14753064456�0026307�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 16.44V6.75a.75.75 0 0 0-1.5 0v9.69l-2.22-2.22a.75.75 0 1 0-1.06 1.06l3.5 3.5a.75.75 0 0 0 1.06 0l3.5-3.5a.75.75 0 1 0-1.06-1.06zM2 7.25a.75.75 0 0 1 .75-.75h9.5a.75.75 0 0 1 0 1.5h-9.5A.75.75 0 0 1 2 7.25m0 5a.75.75 0 0 1 .75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75m0 5a.75.75 0 0 1 .75-.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75"/></svg>����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/sparkle-fill-16.svg������������������������0000664�0000000�0000000�00000000524�14753064456�0026765�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.53 1.282a.5.5 0 0 1 .94 0l.478 1.306a7.5 7.5 0 0 0 4.464 4.464l1.305.478a.5.5 0 0 1 0 .94l-1.305.478a7.5 7.5 0 0 0-4.464 4.464l-.478 1.305a.5.5 0 0 1-.94 0l-.478-1.305a7.5 7.5 0 0 0-4.464-4.464L1.282 8.47a.5.5 0 0 1 0-.94l1.306-.478a7.5 7.5 0 0 0 4.464-4.464Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/sparkle-fill-24.svg������������������������0000664�0000000�0000000�00000000621�14753064456�0026762�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.296 1.924c.24-.656 1.168-.656 1.408 0l.717 1.958a11.25 11.25 0 0 0 6.697 6.697l1.958.717c.657.24.657 1.168 0 1.408l-1.958.717a11.25 11.25 0 0 0-6.697 6.697l-.717 1.958c-.24.657-1.168.657-1.408 0l-.717-1.958a11.25 11.25 0 0 0-6.697-6.697l-1.958-.717c-.656-.24-.656-1.168 0-1.408l1.958-.717a11.25 11.25 0 0 0 6.697-6.697z"/></svg>���������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/sparkles-fill-16.svg�����������������������0000664�0000000�0000000�00000001601�14753064456�0027145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M9.6 2.279a.426.426 0 0 1 .8 0l.407 1.112a6.39 6.39 0 0 0 3.802 3.802l1.112.407a.426.426 0 0 1 0 .8l-1.112.407a6.39 6.39 0 0 0-3.802 3.802l-.407 1.112a.426.426 0 0 1-.8 0l-.407-1.112a6.39 6.39 0 0 0-3.802-3.802L4.279 8.4a.426.426 0 0 1 0-.8l1.112-.407a6.39 6.39 0 0 0 3.802-3.802zm-4.267 8.837a.178.178 0 0 1 .334 0l.169.464a2.66 2.66 0 0 0 1.584 1.584l.464.169a.178.178 0 0 1 0 .334l-.464.169a2.66 2.66 0 0 0-1.584 1.584l-.169.464a.178.178 0 0 1-.334 0l-.169-.464a2.66 2.66 0 0 0-1.584-1.584l-.464-.169a.178.178 0 0 1 0-.334l.464-.169a2.66 2.66 0 0 0 1.584-1.584zM2.8.14a.213.213 0 0 1 .4 0l.203.556a3.2 3.2 0 0 0 1.901 1.901l.556.203a.213.213 0 0 1 0 .4l-.556.203a3.2 3.2 0 0 0-1.901 1.901L3.2 5.86a.213.213 0 0 1-.4 0l-.203-.556A3.2 3.2 0 0 0 .696 3.403L.14 3.2a.213.213 0 0 1 0-.4l.556-.203A3.2 3.2 0 0 0 2.597.696z"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/sparkles-fill-24.svg�����������������������0000664�0000000�0000000�00000001530�14753064456�0027145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.4 3.419a.639.639 0 0 1 1.2 0l.61 1.668a9.59 9.59 0 0 0 5.703 5.703l1.668.61a.639.639 0 0 1 0 1.2l-1.668.61a9.59 9.59 0 0 0-5.703 5.703l-.61 1.668a.639.639 0 0 1-1.2 0l-.61-1.668a9.59 9.59 0 0 0-5.703-5.703l-1.668-.61a.639.639 0 0 1 0-1.2l1.668-.61a9.59 9.59 0 0 0 5.703-5.703zM8 16.675a.266.266 0 0 1 .5 0l.254.694a4 4 0 0 0 2.376 2.377l.695.254a.266.266 0 0 1 0 .5l-.695.254a4 4 0 0 0-2.376 2.377l-.254.694a.266.266 0 0 1-.5 0l-.254-.694a4 4 0 0 0-2.376-2.377l-.695-.254a.266.266 0 0 1 0-.5l.695-.254a4 4 0 0 0 2.376-2.377zM4.2.21a.32.32 0 0 1 .6 0l.305.833a4.8 4.8 0 0 0 2.852 2.852l.833.305a.32.32 0 0 1 0 .6l-.833.305a4.8 4.8 0 0 0-2.852 2.852L4.8 8.79a.32.32 0 0 1-.6 0l-.305-.833a4.8 4.8 0 0 0-2.852-2.852L.21 4.8a.32.32 0 0 1 0-.6l.833-.305a4.8 4.8 0 0 0 2.852-2.852z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/sponsor-tiers-16.svg�����������������������0000664�0000000�0000000�00000001554�14753064456�0027233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M10.586 1C12.268 1 13.5 2.37 13.5 4.25c0 1.745-.996 3.359-2.622 4.831q-.25.226-.509.438l1.116 5.584a.75.75 0 0 1-.991.852l-2.409-.876a.25.25 0 0 0-.17 0l-2.409.876a.75.75 0 0 1-.991-.852L5.63 9.519a14 14 0 0 1-.51-.438C3.497 7.609 2.5 5.995 2.5 4.25 2.5 2.37 3.732 1 5.414 1c.963 0 1.843.403 2.474 1.073L8 2.198l.112-.125a3.39 3.39 0 0 1 2.283-1.068zm-3.621 9.495-.718 3.594 1.155-.42a1.75 1.75 0 0 1 1.028-.051l.168.051 1.154.42-.718-3.592q-.3.195-.505.314l-.169.097a.75.75 0 0 1-.72 0 10 10 0 0 1-.515-.308zM10.586 2.5c-.863 0-1.611.58-1.866 1.459-.209.721-1.231.721-1.44 0C7.025 3.08 6.277 2.5 5.414 2.5 4.598 2.5 4 3.165 4 4.25c0 1.23.786 2.504 2.128 3.719.49.443 1.018.846 1.546 1.198l.325.21.076-.047.251-.163a13 13 0 0 0 1.546-1.198C11.214 6.754 12 5.479 12 4.25c0-1.085-.598-1.75-1.414-1.75"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/sponsor-tiers-24.svg�����������������������0000664�0000000�0000000�00000001721�14753064456�0027226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.004 1.25C18.311 1.25 20 3.128 20 5.75c0 2.292-1.23 4.464-3.295 6.485-.481.47-.98.909-1.482 1.31l.265 1.32 1.375 7.5a.75.75 0 0 1-.982.844l-3.512-1.207a.75.75 0 0 0-.488 0L8.37 23.209a.75.75 0 0 1-.982-.844l1.378-7.512.261-1.309c-.5-.4-1-.838-1.481-1.31C5.479 10.215 4.25 8.043 4.25 5.75c0-2.622 1.689-4.5 3.996-4.5 1.55 0 2.947.752 3.832 1.967l.047.067.047-.067a4.73 4.73 0 0 1 3.612-1.962zM13.89 14.531c-.418.285-.828.542-1.218.77l-.18.103a.75.75 0 0 1-.734 0l-.071-.04-.46-.272q-.424-.26-.868-.562l-.121.605-1.145 6.239 2.3-.79a2.25 2.25 0 0 1 1.284-.054l.18.053 2.299.79-1.141-6.226zM16.004 2.75c-1.464 0-2.731.983-3.159 2.459-.209.721-1.231.721-1.44 0-.428-1.476-1.695-2.459-3.16-2.459-1.44 0-2.495 1.173-2.495 3 0 1.811 1.039 3.647 2.844 5.412a19.6 19.6 0 0 0 3.734 2.84l-.019-.011-.184-.111.147-.088a20 20 0 0 0 3.015-2.278l.37-.352C17.46 9.397 18.5 7.561 18.5 5.75c0-1.827-1.055-3-2.496-3"/></svg>�����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/square-16.svg������������������������������0000664�0000000�0000000�00000000456�14753064456�0025704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M4 5.75C4 4.784 4.784 4 5.75 4h4.5c.966 0 1.75.784 1.75 1.75v4.5A1.75 1.75 0 0 1 10.25 12h-4.5A1.75 1.75 0 0 1 4 10.25Zm1.75-.25a.25.25 0 0 0-.25.25v4.5c0 .138.112.25.25.25h4.5a.25.25 0 0 0 .25-.25v-4.5a.25.25 0 0 0-.25-.25Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/square-24.svg������������������������������0000664�0000000�0000000�00000000456�14753064456�0025703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 7.75C6 6.784 6.784 6 7.75 6h8.5c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 16.25 18h-8.5A1.75 1.75 0 0 1 6 16.25Zm1.75-.25a.25.25 0 0 0-.25.25v8.5c0 .138.112.25.25.25h8.5a.25.25 0 0 0 .25-.25v-8.5a.25.25 0 0 0-.25-.25Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/square-fill-16.svg�������������������������0000664�0000000�0000000�00000000311�14753064456�0026616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M5.75 4h4.5c.966 0 1.75.784 1.75 1.75v4.5A1.75 1.75 0 0 1 10.25 12h-4.5A1.75 1.75 0 0 1 4 10.25v-4.5C4 4.784 4.784 4 5.75 4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/square-fill-24.svg�������������������������0000664�0000000�0000000�00000000311�14753064456�0026615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.75 6h8.5c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 16.25 18h-8.5A1.75 1.75 0 0 1 6 16.25v-8.5C6 6.784 6.784 6 7.75 6"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/squirrel-16.svg����������������������������0000664�0000000�0000000�00000002613�14753064456�0026247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.499.75a.75.75 0 0 1 1.5 0v.996C5.9 2.903 6.793 3.65 7.662 4.376l.24.202c-.036-.694.055-1.422.426-2.163C9.1.873 10.794-.045 12.622.26 14.408.558 16 1.94 16 4.25c0 1.278-.954 2.575-2.44 2.734l.146.508.065.22c.203.701.412 1.455.476 2.226.142 1.707-.4 3.03-1.487 3.898C11.714 14.671 10.27 15 8.75 15h-6a.75.75 0 0 1 0-1.5h1.376a4.5 4.5 0 0 1-.563-1.191 3.84 3.84 0 0 1-.05-2.063 4.65 4.65 0 0 1-2.025-.293.75.75 0 0 1 .525-1.406c1.357.507 2.376-.006 2.698-.318l.009-.01a.747.747 0 0 1 1.06 0 .75.75 0 0 1-.012 1.074c-.912.92-.992 1.835-.768 2.586.221.74.745 1.337 1.196 1.621H8.75c1.343 0 2.398-.296 3.074-.836.635-.507 1.036-1.31.928-2.602-.05-.603-.216-1.224-.422-1.93l-.064-.221c-.12-.407-.246-.84-.353-1.29a2.4 2.4 0 0 1-.507-.441 3.1 3.1 0 0 1-.633-1.248.75.75 0 0 1 1.455-.364c.046.185.144.436.31.627.146.168.353.305.712.305.738 0 1.25-.615 1.25-1.25 0-1.47-.95-2.315-2.123-2.51-1.172-.196-2.227.387-2.706 1.345-.46.92-.27 1.774.019 3.062l.042.19.01.05c.348.443.666.949.94 1.553a.75.75 0 1 1-1.365.62c-.553-1.217-1.32-1.94-2.3-2.768L6.7 5.527c-.814-.68-1.75-1.462-2.692-2.619a3.7 3.7 0 0 0-1.023.88c-.406.495-.663 1.036-.722 1.508.116.122.306.21.591.239.388.038.797-.06 1.032-.19a.75.75 0 0 1 .728 1.31c-.515.287-1.23.439-1.906.373-.682-.067-1.473-.38-1.879-1.193L.75 5.677V5.5c0-.984.48-1.94 1.077-2.664.46-.559 1.05-1.055 1.673-1.353z"/></svg>���������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/squirrel-24.svg����������������������������0000664�0000000�0000000�00000003223�14753064456�0026244�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.377 3.49c-1.862-.31-3.718.62-4.456 2.095-.428.857-.691 1.624-.728 2.361-.035.71.138 1.444.67 2.252.644.854 1.199 1.913 1.608 3.346a.75.75 0 1 1-1.442.412c-.353-1.236-.82-2.135-1.372-2.865l-.008-.01c-.53-.698-1.14-1.242-1.807-1.778a51 51 0 0 0-.667-.524C9.024 7.884 7.71 6.863 6.471 5.16c-.59.287-1.248.798-1.806 1.454-.665.78-1.097 1.66-1.158 2.446.246.36.685.61 1.246.715.643.12 1.278.015 1.633-.182a.75.75 0 1 1 .728 1.311c-.723.402-1.728.516-2.637.346-.916-.172-1.898-.667-2.398-1.666L2 9.427V9.25c0-1.323.678-2.615 1.523-3.607.7-.824 1.59-1.528 2.477-1.917V2.75a.75.75 0 1 1 1.5 0v1.27c1.154 1.67 2.363 2.612 3.568 3.551q.311.242.621.489.002-.095.006-.188c.052-1.034.414-2.017.884-2.958 1.06-2.118 3.594-3.313 6.044-2.904 1.225.204 2.329.795 3.125 1.748C22.546 4.713 23 5.988 23 7.5c0 1.496-.913 3.255-2.688 3.652.838 1.699 1.438 3.768 1.181 5.697-.269 2.017-1.04 3.615-2.582 4.675C17.409 22.558 15.288 23 12.5 23H4.75a.75.75 0 0 1 0-1.5h2.322c-.58-.701-.998-1.578-1.223-2.471-.327-1.3-.297-2.786.265-4.131-.92.091-1.985-.02-3.126-.445a.75.75 0 1 1 .524-1.406c1.964.733 3.428.266 4.045-.19q.102-.09.208-.18a.745.745 0 0 1 .861-.076.75.75 0 0 1 .32.368.75.75 0 0 1-.173.819q-.115.114-.252.221c-1.322 1.234-1.62 3.055-1.218 4.654.438 1.737 1.574 2.833 2.69 2.837H12.5c2.674 0 4.429-.433 5.56-1.212 1.094-.752 1.715-1.904 1.946-3.637.236-1.768-.445-3.845-1.407-5.529l-.012-.02a3.56 3.56 0 0 1-1.553-.94c-.556-.565-.89-1.243-1.012-1.73a.75.75 0 0 1 1.456-.364c.057.231.26.67.626 1.043.35.357.822.623 1.443.623 1.172 0 1.953-1.058 1.953-2.234 0-1.205-.357-2.127-.903-2.78-.547-.654-1.318-1.08-2.22-1.23"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/stack-16.svg�������������������������������0000664�0000000�0000000�00000001214�14753064456�0025502�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.122.392a1.75 1.75 0 0 1 1.756 0l5.003 2.902c.83.481.83 1.68 0 2.162L8.878 8.358a1.75 1.75 0 0 1-1.756 0L2.119 5.456a1.25 1.25 0 0 1 0-2.162ZM8.125 1.69a.25.25 0 0 0-.25 0l-4.63 2.685 4.63 2.685a.25.25 0 0 0 .25 0l4.63-2.685ZM1.601 7.789a.75.75 0 0 1 1.025-.273l5.249 3.044a.25.25 0 0 0 .25 0l5.249-3.044a.75.75 0 0 1 .752 1.298l-5.248 3.044a1.75 1.75 0 0 1-1.756 0L1.874 8.814A.75.75 0 0 1 1.6 7.789Zm0 3.5a.75.75 0 0 1 1.025-.273l5.249 3.044a.25.25 0 0 0 .25 0l5.249-3.044a.75.75 0 0 1 .752 1.298l-5.248 3.044a1.75 1.75 0 0 1-1.756 0l-5.248-3.044a.75.75 0 0 1-.273-1.025"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/stack-24.svg�������������������������������0000664�0000000�0000000�00000001337�14753064456�0025507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.063 1.456a1.75 1.75 0 0 1 1.874 0l8.383 5.316a1.75 1.75 0 0 1 0 2.956l-8.383 5.316a1.75 1.75 0 0 1-1.874 0L2.68 9.728a1.75 1.75 0 0 1 0-2.956Zm1.071 1.267a.25.25 0 0 0-.268 0L3.483 8.039a.25.25 0 0 0 0 .422l8.383 5.316a.25.25 0 0 0 .268 0l8.383-5.316a.25.25 0 0 0 0-.422Z"/><path d="M1.867 12.324a.75.75 0 0 1 1.035-.232l8.964 5.685a.25.25 0 0 0 .268 0l8.964-5.685a.75.75 0 0 1 .804 1.267l-8.965 5.685a1.75 1.75 0 0 1-1.874 0l-8.965-5.685a.75.75 0 0 1-.231-1.035"/><path d="M1.867 16.324a.75.75 0 0 1 1.035-.232l8.964 5.685a.25.25 0 0 0 .268 0l8.964-5.685a.75.75 0 0 1 .804 1.267l-8.965 5.685a1.75 1.75 0 0 1-1.874 0l-8.965-5.685a.75.75 0 0 1-.231-1.035"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/star-16.svg��������������������������������0000664�0000000�0000000�00000001033�14753064456�0025345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 .25a.75.75 0 0 1 .673.418l1.882 3.815 4.21.612a.75.75 0 0 1 .416 1.279l-3.046 2.97.719 4.192a.751.751 0 0 1-1.088.791L8 12.347l-3.766 1.98a.75.75 0 0 1-1.088-.79l.72-4.194L.818 6.374a.75.75 0 0 1 .416-1.28l4.21-.611L7.327.668A.75.75 0 0 1 8 .25m0 2.445L6.615 5.5a.75.75 0 0 1-.564.41l-3.097.45 2.24 2.184a.75.75 0 0 1 .216.664l-.528 3.084 2.769-1.456a.75.75 0 0 1 .698 0l2.77 1.456-.53-3.084a.75.75 0 0 1 .216-.664l2.24-2.183-3.096-.45a.75.75 0 0 1-.564-.41z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/star-24.svg��������������������������������0000664�0000000�0000000�00000001056�14753064456�0025351�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .25a.75.75 0 0 1 .673.418l3.058 6.197 6.839.994a.75.75 0 0 1 .415 1.279l-4.948 4.823 1.168 6.811a.751.751 0 0 1-1.088.791L12 18.347l-6.117 3.216a.75.75 0 0 1-1.088-.79l1.168-6.812-4.948-4.823a.75.75 0 0 1 .416-1.28l6.838-.993L11.328.668A.75.75 0 0 1 12 .25m0 2.445L9.44 7.882a.75.75 0 0 1-.565.41l-5.725.832 4.143 4.038a.75.75 0 0 1 .215.664l-.978 5.702 5.121-2.692a.75.75 0 0 1 .698 0l5.12 2.692-.977-5.702a.75.75 0 0 1 .215-.664l4.143-4.038-5.725-.831a.75.75 0 0 1-.565-.41z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/star-fill-16.svg���������������������������0000664�0000000�0000000�00000000505�14753064456�0026274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 .25a.75.75 0 0 1 .673.418l1.882 3.815 4.21.612a.75.75 0 0 1 .416 1.279l-3.046 2.97.719 4.192a.751.751 0 0 1-1.088.791L8 12.347l-3.766 1.98a.75.75 0 0 1-1.088-.79l.72-4.194L.818 6.374a.75.75 0 0 1 .416-1.28l4.21-.611L7.327.668A.75.75 0 0 1 8 .25"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/star-fill-24.svg���������������������������0000664�0000000�0000000�00000000501�14753064456�0026267�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.672.668 3.059 6.197 6.838.993a.75.75 0 0 1 .416 1.28l-4.948 4.823 1.168 6.812a.75.75 0 0 1-1.088.79L12 18.347l-6.116 3.216a.75.75 0 0 1-1.088-.791l1.168-6.811-4.948-4.823a.749.749 0 0 1 .416-1.279l6.838-.994L11.327.668a.75.75 0 0 1 1.345 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/stop-16.svg��������������������������������0000664�0000000�0000000�00000000704�14753064456�0025365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M4.47.22A.75.75 0 0 1 5 0h6c.199 0 .389.079.53.22l4.25 4.25c.141.14.22.331.22.53v6a.75.75 0 0 1-.22.53l-4.25 4.25A.75.75 0 0 1 11 16H5a.75.75 0 0 1-.53-.22L.22 11.53A.75.75 0 0 1 0 11V5c0-.199.079-.389.22-.53Zm.84 1.28L1.5 5.31v5.38l3.81 3.81h5.38l3.81-3.81V5.31L10.69 1.5ZM8 4a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0v-3.5A.75.75 0 0 1 8 4m0 8a1 1 0 1 1 0-2 1 1 0 0 1 0 2"/></svg>������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/stop-24.svg��������������������������������0000664�0000000�0000000�00000000776�14753064456�0025375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 7a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-1.5 0v-4.5A.75.75 0 0 1 12 7m0 10a1 1 0 1 0 0-2 1 1 0 0 0 0 2"/><path d="M7.328 1.47a.75.75 0 0 1 .53-.22h8.284c.199 0 .389.079.53.22l5.858 5.858c.141.14.22.33.22.53v8.284a.75.75 0 0 1-.22.53l-5.858 5.858a.75.75 0 0 1-.53.22H7.858a.75.75 0 0 1-.53-.22L1.47 16.672a.75.75 0 0 1-.22-.53V7.858c0-.199.079-.389.22-.53Zm.84 1.28L2.75 8.169v7.662l5.419 5.419h7.662l5.419-5.418V8.168L15.832 2.75Z"/></svg>��mkdocs-material-9.6.4/material/templates/.icons/octicons/stopwatch-16.svg���������������������������0000664�0000000�0000000�00000001077�14753064456�0026420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M5.75.75A.75.75 0 0 1 6.5 0h3a.75.75 0 0 1 0 1.5h-.75v1l-.001.041a6.7 6.7 0 0 1 3.464 1.435l.007-.006.75-.75a.749.749 0 0 1 1.275.326.75.75 0 0 1-.215.734l-.75.75-.006.007a6.75 6.75 0 1 1-10.548 0L2.72 5.03l-.75-.75a.75.75 0 0 1 .018-1.042.75.75 0 0 1 1.042-.018l.75.75.007.006A6.7 6.7 0 0 1 7.25 2.541V1.5H6.5a.75.75 0 0 1-.75-.75M8 14.5a5.25 5.25 0 1 0-.001-10.501A5.25 5.25 0 0 0 8 14.5m.389-6.7 1.33-1.33a.75.75 0 1 1 1.061 1.06L9.45 8.861A1.503 1.503 0 0 1 8 10.75a1.499 1.499 0 1 1 .389-2.95"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/stopwatch-24.svg���������������������������0000664�0000000�0000000�00000001117�14753064456�0026412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.25 0h3.5a.75.75 0 0 1 0 1.5h-1v1.278a9.95 9.95 0 0 1 5.636 2.276L19.72 3.72a.75.75 0 0 1 1.042.018.75.75 0 0 1 .018 1.042l-1.315 1.316A9.96 9.96 0 0 1 22 12.75c0 5.523-4.477 10-10 10s-10-4.477-10-10a9.96 9.96 0 0 1 2.535-6.654L3.22 4.78a.75.75 0 0 1 .018-1.042.75.75 0 0 1 1.042-.018l1.335 1.334a9.96 9.96 0 0 1 5.635-2.276V1.5h-1a.75.75 0 0 1 0-1.5M12 21.25a8.5 8.5 0 1 0-.001-17.001A8.5 8.5 0 0 0 12 21.25m4.03-12.53a.75.75 0 0 1 0 1.06l-2.381 2.382a1.75 1.75 0 1 1-1.06-1.06l2.38-2.382a.75.75 0 0 1 1.061 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/strikethrough-16.svg�����������������������0000664�0000000�0000000�00000001202�14753064456�0027274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M11.055 8.5c.524.536.815 1.257.811 2.007a3.13 3.13 0 0 1-1.12 2.408C9.948 13.597 8.748 14 7.096 14c-1.706 0-3.104-.607-3.902-1.377a.751.751 0 0 1 1.042-1.079c.48.463 1.487.956 2.86.956 1.422 0 2.232-.346 2.676-.726.435-.372.594-.839.594-1.267 0-.472-.208-.857-.647-1.197-.448-.346-1.116-.623-1.951-.81H1.75a.75.75 0 0 1 0-1.5h12.5a.75.75 0 0 1 0 1.5ZM7.581 3.25c-2.036 0-2.778 1.082-2.778 1.786q0 .082.006.157a.75.75 0 0 1-1.496.114 4 4 0 0 1-.01-.271c0-1.832 1.75-3.286 4.278-3.286 1.418 0 2.721.58 3.514 1.093a.75.75 0 1 1-.814 1.26c-.64-.414-1.662-.853-2.7-.853"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/strikethrough-24.svg�����������������������0000664�0000000�0000000�00000001226�14753064456�0027301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.533 12.5.054.043c.93.75 1.538 1.77 1.538 3.066a4.13 4.13 0 0 1-1.479 3.177c-1.058.904-2.679 1.464-4.974 1.464-2.35 0-4.252-.837-5.318-1.865a.75.75 0 1 1 1.042-1.08c.747.722 2.258 1.445 4.276 1.445 2.065 0 3.296-.504 3.999-1.105a2.63 2.63 0 0 0 .954-2.036c0-.764-.337-1.38-.979-1.898-.649-.523-1.598-.931-2.76-1.211H3.75a.75.75 0 0 1 0-1.5h16.5a.75.75 0 0 1 0 1.5ZM12.36 5C9.37 5 8.105 6.613 8.105 7.848c0 .411.072.744.193 1.02a.75.75 0 0 1-1.373.603 4 4 0 0 1-.32-1.623c0-2.363 2.271-4.348 5.755-4.348 1.931 0 3.722.794 4.814 1.5a.75.75 0 1 1-.814 1.26c-.94-.607-2.448-1.26-4-1.26"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/sun-16.svg���������������������������������0000664�0000000�0000000�00000001556�14753064456�0025213�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 12a4 4 0 1 1 0-8 4 4 0 0 1 0 8m0-1.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5m5.657-8.157a.75.75 0 0 1 0 1.061l-1.061 1.06a.749.749 0 0 1-1.275-.326.75.75 0 0 1 .215-.734l1.06-1.06a.75.75 0 0 1 1.06 0Zm-9.193 9.193a.75.75 0 0 1 0 1.06l-1.06 1.061a.75.75 0 1 1-1.061-1.06l1.06-1.061a.75.75 0 0 1 1.061 0M8 0a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0V.75A.75.75 0 0 1 8 0M3 8a.75.75 0 0 1-.75.75H.75a.75.75 0 0 1 0-1.5h1.5A.75.75 0 0 1 3 8m13 0a.75.75 0 0 1-.75.75h-1.5a.75.75 0 0 1 0-1.5h1.5A.75.75 0 0 1 16 8m-8 5a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5A.75.75 0 0 1 8 13m3.536-1.464a.75.75 0 0 1 1.06 0l1.061 1.06a.75.75 0 0 1-1.06 1.061l-1.061-1.06a.75.75 0 0 1 0-1.061M2.343 2.343a.75.75 0 0 1 1.061 0l1.06 1.061a.75.75 0 0 1-.018 1.042.75.75 0 0 1-1.042.018l-1.06-1.06a.75.75 0 0 1 0-1.06Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/sun-24.svg���������������������������������0000664�0000000�0000000�00000001655�14753064456�0025212�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 19a7 7 0 1 1 0-14 7 7 0 0 1 0 14m0-1.5a5.5 5.5 0 1 0 0-11 5.5 5.5 0 1 0 0 11m-5.657.157a.75.75 0 0 1 0 1.06l-1.768 1.768a.749.749 0 0 1-1.275-.326.75.75 0 0 1 .215-.734l1.767-1.768a.75.75 0 0 1 1.061 0M3.515 3.515a.75.75 0 0 1 1.06 0l1.768 1.768a.749.749 0 0 1-.326 1.275.75.75 0 0 1-.734-.215L3.515 4.575a.75.75 0 0 1 0-1.06M12 0a.75.75 0 0 1 .75.75v2.5a.75.75 0 0 1-1.5 0V.75A.75.75 0 0 1 12 0M4 12a.75.75 0 0 1-.75.75H.75a.75.75 0 0 1 0-1.5h2.5A.75.75 0 0 1 4 12m8 8a.75.75 0 0 1 .75.75v2.5a.75.75 0 0 1-1.5 0v-2.5A.75.75 0 0 1 12 20m12-8a.75.75 0 0 1-.75.75h-2.5a.75.75 0 0 1 0-1.5h2.5A.75.75 0 0 1 24 12m-6.343 5.657a.75.75 0 0 1 1.06 0l1.768 1.768a.75.75 0 0 1-.018 1.042.75.75 0 0 1-1.042.018l-1.768-1.767a.75.75 0 0 1 0-1.061m2.828-14.142a.75.75 0 0 1 0 1.06l-1.768 1.768a.75.75 0 0 1-1.042-.018.75.75 0 0 1-.018-1.042l1.767-1.768a.75.75 0 0 1 1.061 0"/></svg>�����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/sync-16.svg��������������������������������0000664�0000000�0000000�00000000754�14753064456�0025361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1.705 8.005a.75.75 0 0 1 .834.656 5.5 5.5 0 0 0 9.592 2.97l-1.204-1.204a.25.25 0 0 1 .177-.427h3.646a.25.25 0 0 1 .25.25v3.646a.25.25 0 0 1-.427.177l-1.38-1.38A7.002 7.002 0 0 1 1.05 8.84a.75.75 0 0 1 .656-.834ZM8 2.5a5.49 5.49 0 0 0-4.131 1.869l1.204 1.204A.25.25 0 0 1 4.896 6H1.25A.25.25 0 0 1 1 5.75V2.104a.25.25 0 0 1 .427-.177l1.38 1.38A7.002 7.002 0 0 1 14.95 7.16a.75.75 0 0 1-1.49.178A5.5 5.5 0 0 0 8 2.5"/></svg>��������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/sync-24.svg��������������������������������0000664�0000000�0000000�00000000753�14753064456�0025357�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.38 8A9.5 9.5 0 0 1 12 2.5a9.5 9.5 0 0 1 9.215 7.182.75.75 0 1 0 1.456-.364C21.473 4.539 17.15 1 12 1a11 11 0 0 0-9.5 5.452V4.75a.75.75 0 0 0-1.5 0V8.5a1 1 0 0 0 1 1h3.75a.75.75 0 0 0 0-1.5zm-.595 6.318a.75.75 0 0 0-1.455.364C2.527 19.461 6.85 23 12 23c4.052 0 7.592-2.191 9.5-5.451v1.701a.75.75 0 0 0 1.5 0V15.5a1 1 0 0 0-1-1h-3.75a.75.75 0 0 0 0 1.5h2.37A9.5 9.5 0 0 1 12 21.5c-4.446 0-8.181-3.055-9.215-7.182"/></svg>���������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/tab-16.svg���������������������������������0000664�0000000�0000000�00000000436�14753064456�0025150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m10.78 8.53-3.75 3.75a.749.749 0 1 1-1.06-1.06l2.469-2.47H1.75a.75.75 0 0 1 0-1.5h6.689L5.97 4.78a.749.749 0 1 1 1.06-1.06l3.75 3.75a.75.75 0 0 1 0 1.06M13 12.25v-8.5a.75.75 0 0 1 1.5 0v8.5a.75.75 0 0 1-1.5 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/tab-24.svg���������������������������������0000664�0000000�0000000�00000000414�14753064456�0025143�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 4.25a.75.75 0 0 0-1.5 0v15a.75.75 0 0 0 1.5 0zm-9.72 14.28a.75.75 0 1 1-1.06-1.06l4.97-4.97H1.75a.75.75 0 0 1 0-1.5h14.44l-4.97-4.97a.75.75 0 0 1 1.06-1.06l6.25 6.25a.75.75 0 0 1 0 1.06z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/tab-external-16.svg������������������������0000664�0000000�0000000�00000000701�14753064456�0026763�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.25 4a.25.25 0 0 0-.25.25v9a.75.75 0 0 1-.75.75H.75a.75.75 0 0 1 0-1.5h.75V4.25c0-.966.784-1.75 1.75-1.75h9.5c.966 0 1.75.784 1.75 1.75v8.25h.75a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75v-9a.25.25 0 0 0-.25-.25z"/><path d="m7.97 7.97-2.75 2.75a.75.75 0 1 0 1.06 1.06l2.75-2.75 1.543 1.543a.25.25 0 0 0 .427-.177V6.25a.25.25 0 0 0-.25-.25H6.604a.25.25 0 0 0-.177.427z"/></svg>���������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/tab-external-24.svg������������������������0000664�0000000�0000000�00000000730�14753064456�0026764�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5.75C3 4.784 3.784 4 4.75 4h14.5c.966 0 1.75.784 1.75 1.75V18.5h2a.75.75 0 0 1 0 1.5h-2.65a.85.85 0 0 1-.85-.85V5.75a.25.25 0 0 0-.25-.25H4.75a.25.25 0 0 0-.25.25v13.4c0 .47-.38.85-.85.85H1a.75.75 0 0 1 0-1.5h2z"/><path d="M16.404 13.7a.75.75 0 0 1-1.29.547 690 690 0 0 0-1.92-1.976l-4.141 4.14a.75.75 0 0 1-1.061-1.06l4.14-4.14-1.94-1.94A.75.75 0 0 1 10.703 8h4.95a.75.75 0 0 1 .75.75v4.95Z"/></svg>����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/table-16.svg�������������������������������0000664�0000000�0000000�00000000536�14753064456�0025472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v12.5A1.75 1.75 0 0 1 14.25 16H1.75A1.75 1.75 0 0 1 0 14.25ZM6.5 6.5v8h7.75a.25.25 0 0 0 .25-.25V6.5Zm8-1.5V1.75a.25.25 0 0 0-.25-.25H6.5V5Zm-13 1.5v7.75c0 .138.112.25.25.25H5v-8ZM5 5V1.5H1.75a.25.25 0 0 0-.25.25V5Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/table-24.svg�������������������������������0000664�0000000�0000000�00000000544�14753064456�0025470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3.75C2 2.784 2.784 2 3.75 2h16.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25ZM9 9v11.5h11.25a.25.25 0 0 0 .25-.25V9Zm11.5-1.5V3.75a.25.25 0 0 0-.25-.25H9v4ZM3.5 9v11.25c0 .138.112.25.25.25H7.5V9Zm4-1.5v-4H3.75a.25.25 0 0 0-.25.25V7.5Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/tag-16.svg���������������������������������0000664�0000000�0000000�00000000661�14753064456�0025155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1 7.775V2.75C1 1.784 1.784 1 2.75 1h5.025c.464 0 .91.184 1.238.513l6.25 6.25a1.75 1.75 0 0 1 0 2.474l-5.026 5.026a1.75 1.75 0 0 1-2.474 0l-6.25-6.25A1.75 1.75 0 0 1 1 7.775m1.5 0c0 .066.026.13.073.177l6.25 6.25a.25.25 0 0 0 .354 0l5.025-5.025a.25.25 0 0 0 0-.354l-6.25-6.25a.25.25 0 0 0-.177-.073H2.75a.25.25 0 0 0-.25.25ZM6 5a1 1 0 1 1 0 2 1 1 0 0 1 0-2"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/tag-24.svg���������������������������������0000664�0000000�0000000�00000000523�14753064456�0025151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.75 6.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5"/><path d="M2.5 1h8.44a1.5 1.5 0 0 1 1.06.44l10.25 10.25a1.5 1.5 0 0 1 0 2.12l-8.44 8.44a1.5 1.5 0 0 1-2.12 0L1.44 12A1.5 1.5 0 0 1 1 10.94V2.5A1.5 1.5 0 0 1 2.5 1m0 1.5v8.44l10.25 10.25 8.44-8.44L10.94 2.5Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/tasklist-16.svg����������������������������0000664�0000000�0000000�00000000736�14753064456�0026243�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2 2h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1m4.655 8.595a.75.75 0 0 1 0 1.06L4.03 14.28a.75.75 0 0 1-1.06 0l-1.5-1.5a.749.749 0 0 1 .326-1.275.75.75 0 0 1 .734.215l.97.97 2.095-2.095a.75.75 0 0 1 1.06 0M9.75 2.5h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1 0-1.5m0 5h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1 0-1.5m0 5h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1 0-1.5m-7.25-9v3h3v-3Z"/></svg>����������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/tasklist-24.svg����������������������������0000664�0000000�0000000�00000000662�14753064456�0026240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1Zm1.5 4.5h4v-4h-4Zm8.25-5a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5zm0 6a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5zm0 6a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5zm-2.97-2.53a.75.75 0 0 1 0 1.06l-3.5 3.5a.75.75 0 0 1-1.06 0l-2-2a.75.75 0 1 1 1.06-1.06l1.47 1.47 2.97-2.97a.75.75 0 0 1 1.06 0"/></svg>������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/telescope-16.svg���������������������������0000664�0000000�0000000�00000001314�14753064456�0026361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M14.184 1.143zl1.422 2.464a1.75 1.75 0 0 1-.757 2.451L3.104 11.713a1.75 1.75 0 0 1-2.275-.702l-.447-.775a1.75 1.75 0 0 1 .53-2.32L11.682.573a1.75 1.75 0 0 1 2.502.57m-4.709 9.32zl2.644 3.863a.75.75 0 1 1-1.238.848l-1.881-2.75v2.826a.75.75 0 0 1-1.5 0v-2.826l-1.881 2.75a.75.75 0 1 1-1.238-.848l2.049-2.992a.75.75 0 0 1 .293-.253l1.809-.87a.75.75 0 0 1 .944.252M9.436 3.92zl-4.97 3.39.942 1.63 5.42-2.61Zm3.091-2.108h.001l-1.85 1.26 1.505 2.605 2.016-.97a.25.25 0 0 0 .13-.151.25.25 0 0 0-.022-.199l-1.422-2.464a.25.25 0 0 0-.161-.119.25.25 0 0 0-.197.038M1.756 9.157a.25.25 0 0 0-.075.33l.447.775a.25.25 0 0 0 .325.1l1.598-.769-.83-1.436z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/telescope-24.svg���������������������������0000664�0000000�0000000�00000001231�14753064456�0026356�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.408 15.13a2 2 0 0 1 .59-2.642L17.038 1.33a2 2 0 0 1 2.85.602l2.828 4.644a2 2 0 0 1-.851 2.847l-17.762 8.43a2 2 0 0 1-2.59-.807Zm5.263-4.066 1.987 3.44 8.712-4.135-2.857-4.76Zm12.06-1.34.001-.001 3.49-1.656a.5.5 0 0 0 .212-.712l-2.826-4.644a.503.503 0 0 0-.713-.151l-3.148 2.19Zm-13.295 2.2L1.854 13.72a.5.5 0 0 0-.147.66l1.105 1.915a.5.5 0 0 0 .648.201l2.838-1.347ZM17.155 22.87a.75.75 0 0 0 .226-1.036l-4-6.239a.75.75 0 0 0-.941-.278l-2.75 1.25a.75.75 0 0 0-.318.274l-3.25 4.989a.75.75 0 0 0 1.256.819l3.131-4.806.51-.232v5.64a.75.75 0 1 0 1.5 0v-6.22l3.6 5.613a.75.75 0 0 0 1.036.226"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/telescope-fill-16.svg����������������������0000664�0000000�0000000�00000000777�14753064456�0027321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M11.905.42a1.5 1.5 0 0 1 2.144.49l1.692 2.93a1.5 1.5 0 0 1-.649 2.102L2.895 11.815a1.5 1.5 0 0 1-1.95-.602l-.68-1.176a1.5 1.5 0 0 1 .455-1.99L11.905.422Zm-3.374 9.79a.75.75 0 0 1 .944.253l2.644 3.864a.751.751 0 0 1-1.238.847L9 12.424v2.826a.75.75 0 0 1-1.5 0v-2.826l-1.881 2.75a.75.75 0 1 1-1.238-.848l2.048-2.992a.75.75 0 0 1 .293-.252zm2.476-3.965v-.001l1.356-.653-1.52-2.631-1.243.848ZM3.279 8.119l.835 1.445 1.355-.653-.947-1.64Z"/></svg>�mkdocs-material-9.6.4/material/templates/.icons/octicons/telescope-fill-24.svg����������������������0000664�0000000�0000000�00000001010�14753064456�0027275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.155 22.87a.75.75 0 0 0 .226-1.036l-4-6.239a.75.75 0 0 0-.941-.277l-2.75 1.25a.75.75 0 0 0-.318.273l-3.25 4.989a.75.75 0 0 0 1.256.819l3.131-4.806.51-.232v5.64a.75.75 0 1 0 1.5 0v-6.22l3.6 5.613a.75.75 0 0 0 1.036.226M.408 15.13a2 2 0 0 1 .59-2.642L17.038 1.33a2 2 0 0 1 2.85.602l2.828 4.644a2 2 0 0 1-.851 2.847l-17.762 8.43a2 2 0 0 1-2.59-.807Zm13.105-9.521 2.857 4.76 1.361-.646-2.984-4.973Zm-7.842 5.455-1.235.86 1.862 3.225 1.36-.645Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/terminal-16.svg����������������������������0000664�0000000�0000000�00000001030�14753064456�0026204�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 2.75C0 1.784.784 1 1.75 1h12.5c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0 1 14.25 15H1.75A1.75 1.75 0 0 1 0 13.25Zm1.75-.25a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25V2.75a.25.25 0 0 0-.25-.25ZM7.25 8a.75.75 0 0 1-.22.53l-2.25 2.25a.749.749 0 0 1-1.275-.326.75.75 0 0 1 .215-.734L5.44 8 3.72 6.28a.749.749 0 0 1 .326-1.275.75.75 0 0 1 .734.215l2.25 2.25c.141.14.22.331.22.53m1.5 1.5h3a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/terminal-24.svg����������������������������0000664�0000000�0000000�00000000757�14753064456�0026222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.25 12a.75.75 0 0 1-.22.53l-2.75 2.75a.75.75 0 0 1-1.06-1.06L7.44 12 5.22 9.78a.75.75 0 1 1 1.06-1.06l2.75 2.75c.141.14.22.331.22.53m2 2a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5z"/><path d="M0 4.75C0 3.784.784 3 1.75 3h20.5c.966 0 1.75.784 1.75 1.75v14.5A1.75 1.75 0 0 1 22.25 21H1.75A1.75 1.75 0 0 1 0 19.25Zm1.75-.25a.25.25 0 0 0-.25.25v14.5c0 .138.112.25.25.25h20.5a.25.25 0 0 0 .25-.25V4.75a.25.25 0 0 0-.25-.25Z"/></svg>�����������������mkdocs-material-9.6.4/material/templates/.icons/octicons/three-bars-16.svg��������������������������0000664�0000000�0000000�00000000433�14753064456�0026433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1 2.75A.75.75 0 0 1 1.75 2h12.5a.75.75 0 0 1 0 1.5H1.75A.75.75 0 0 1 1 2.75m0 5A.75.75 0 0 1 1.75 7h12.5a.75.75 0 0 1 0 1.5H1.75A.75.75 0 0 1 1 7.75M1.75 12h12.5a.75.75 0 0 1 0 1.5H1.75a.75.75 0 0 1 0-1.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/three-bars-24.svg��������������������������0000664�0000000�0000000�00000000344�14753064456�0026433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.75 5.25a.75.75 0 0 0 0 1.5h16.5a.75.75 0 0 0 0-1.5zm0 6a.75.75 0 0 0 0 1.5h16.5a.75.75 0 0 0 0-1.5zm0 6a.75.75 0 0 0 0 1.5h16.5a.75.75 0 0 0 0-1.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/thumbsdown-16.svg��������������������������0000664�0000000�0000000�00000001257�14753064456�0026576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.653 15.369a.75.75 0 0 1-.776.371l-.238-.04a3.25 3.25 0 0 1-2.591-4.099L4.506 10h-.665A3.25 3.25 0 0 1 .723 5.833l1.135-3.859A2.75 2.75 0 0 1 4.482 0H9.43c.78.003 1.538.25 2.168.702A1.75 1.75 0 0 1 12.989 0h1.272A1.75 1.75 0 0 1 16 1.75v6.5A1.75 1.75 0 0 1 14.25 10h-3.417a.25.25 0 0 0-.217.127ZM11.25 2.351l-.396-.33a2.25 2.25 0 0 0-1.44-.521H4.496a1.25 1.25 0 0 0-1.199.897L2.162 6.256A1.75 1.75 0 0 0 3.841 8.5H5.5a.75.75 0 0 1 .721.956l-.731 2.558a1.75 1.75 0 0 0 1.127 2.14L9.31 9.389a1.75 1.75 0 0 1 1.523-.889h.417Zm1.5 6.149h1.5a.25.25 0 0 0 .25-.25v-6.5a.25.25 0 0 0-.25-.25H13a.25.25 0 0 0-.25.25Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/thumbsdown-24.svg��������������������������0000664�0000000�0000000�00000001266�14753064456�0026575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.651 21.622a.75.75 0 0 1-.808.361l-.127-.027a3.875 3.875 0 0 1-2.879-4.97L7.473 15H6.336c-2.645 0-4.513-2.591-3.676-5.1l1.559-4.678A3.25 3.25 0 0 1 7.302 3h5.289c1.031 0 2.029.354 2.828.999A1.75 1.75 0 0 1 17 3h2.25c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 19.25 15h-4.67a.25.25 0 0 0-.217.126zM15.25 5.84l-.684-.598a3 3 0 0 0-1.975-.742H7.302a1.75 1.75 0 0 0-1.66 1.197l-1.559 4.677A2.375 2.375 0 0 0 6.336 13.5H8.5a.75.75 0 0 1 .714.979l-.948 2.964a2.375 2.375 0 0 0 1.373 2.927l3.422-5.988a1.75 1.75 0 0 1 1.519-.882h.67zm1.5 7.66h2.5a.25.25 0 0 0 .25-.25v-8.5a.25.25 0 0 0-.25-.25H17a.25.25 0 0 0-.25.25z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/thumbsup-16.svg����������������������������0000664�0000000�0000000�00000001241�14753064456�0026244�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8.347.631A.75.75 0 0 1 9.123.26l.238.04a3.25 3.25 0 0 1 2.591 4.098L11.494 6h.665a3.25 3.25 0 0 1 3.118 4.167l-1.135 3.859A2.75 2.75 0 0 1 11.503 16H6.586a3.75 3.75 0 0 1-2.184-.702A1.75 1.75 0 0 1 3 16H1.75A1.75 1.75 0 0 1 0 14.25v-6.5C0 6.784.784 6 1.75 6h3.417a.25.25 0 0 0 .217-.127ZM4.75 13.649l.396.33c.404.337.914.521 1.44.521h4.917a1.25 1.25 0 0 0 1.2-.897l1.135-3.859A1.75 1.75 0 0 0 12.159 7.5H10.5a.75.75 0 0 1-.721-.956l.731-2.558a1.75 1.75 0 0 0-1.127-2.14L6.69 6.611a1.75 1.75 0 0 1-1.523.889H4.75ZM3.25 7.5h-1.5a.25.25 0 0 0-.25.25v6.5c0 .138.112.25.25.25H3a.25.25 0 0 0 .25-.25Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/thumbsup-24.svg����������������������������0000664�0000000�0000000�00000001257�14753064456�0026252�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.349 2.378a.75.75 0 0 1 .808-.361l.127.027a3.875 3.875 0 0 1 2.879 4.97L16.527 9h1.137c2.645 0 4.513 2.591 3.676 5.1l-1.559 4.678A3.25 3.25 0 0 1 16.698 21h-5.289a4.5 4.5 0 0 1-2.828-.999A1.75 1.75 0 0 1 7 21H4.75A1.75 1.75 0 0 1 3 19.25v-8.5C3 9.784 3.784 9 4.75 9h4.67a.25.25 0 0 0 .217-.126zM8.75 18.16l.683.598a3 3 0 0 0 1.976.742h5.289a1.75 1.75 0 0 0 1.66-1.197l1.559-4.677a2.375 2.375 0 0 0-2.253-3.126H15.5a.75.75 0 0 1-.714-.979l.948-2.964a2.375 2.375 0 0 0-1.373-2.927l-3.422 5.988a1.75 1.75 0 0 1-1.519.882h-.67zm-1.5-7.66h-2.5a.25.25 0 0 0-.25.25v8.5c0 .138.112.25.25.25H7a.25.25 0 0 0 .25-.25z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/tools-16.svg�������������������������������0000664�0000000�0000000�00000001507�14753064456�0025542�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M5.433 2.304A4.49 4.49 0 0 0 3.5 6c0 1.598.832 3.002 2.09 3.802.518.328.929.923.902 1.64v.008l-.164 3.337a.75.75 0 1 1-1.498-.073l.163-3.33c.002-.085-.05-.216-.207-.316A6 6 0 0 1 2 6a6 6 0 0 1 2.567-4.92 1.48 1.48 0 0 1 1.673-.04c.462.296.76.827.76 1.423v2.82c0 .082.041.16.11.206l.75.51a.25.25 0 0 0 .28 0l.75-.51A.25.25 0 0 0 9 5.282V2.463c0-.596.298-1.127.76-1.423a1.48 1.48 0 0 1 1.673.04A6 6 0 0 1 14 6a6 6 0 0 1-2.786 5.068c-.157.1-.209.23-.207.315l.163 3.33a.752.752 0 0 1-1.094.714.75.75 0 0 1-.404-.64l-.164-3.345c-.027-.717.384-1.312.902-1.64A4.5 4.5 0 0 0 12.5 6a4.49 4.49 0 0 0-1.933-3.696c-.024.017-.067.067-.067.16v2.818a1.75 1.75 0 0 1-.767 1.448l-.75.51a1.75 1.75 0 0 1-1.966 0l-.75-.51A1.75 1.75 0 0 1 5.5 5.282V2.463c0-.092-.043-.142-.067-.159"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/tools-24.svg�������������������������������0000664�0000000�0000000�00000001744�14753064456�0025544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.875 2.292a.1.1 0 0 0-.032.018A7.24 7.24 0 0 0 4.75 8.25a7.25 7.25 0 0 0 3.654 6.297c.57.327.982.955.941 1.682v.002l-.317 6.058a.75.75 0 1 1-1.498-.078l.317-6.062v-.004c.006-.09-.047-.215-.188-.296A8.75 8.75 0 0 1 3.25 8.25a8.74 8.74 0 0 1 3.732-7.169 1.55 1.55 0 0 1 1.709-.064c.484.292.809.835.809 1.46v4.714a.25.25 0 0 0 .119.213l2.25 1.385c.08.05.182.05.262 0l2.25-1.385a.25.25 0 0 0 .119-.213V2.478c0-.626.325-1.169.81-1.461a1.55 1.55 0 0 1 1.708.064 8.74 8.74 0 0 1 3.732 7.17 8.75 8.75 0 0 1-4.41 7.598c-.14.081-.193.206-.188.296v.004l.318 6.062a.75.75 0 1 1-1.498.078l-.317-6.058v-.002c-.041-.727.37-1.355.94-1.682A7.25 7.25 0 0 0 19.25 8.25a7.24 7.24 0 0 0-3.093-5.94.1.1 0 0 0-.032-.018l-.01-.001c-.003 0-.014 0-.031.01-.036.022-.084.079-.084.177V7.19c0 .608-.315 1.172-.833 1.49l-2.25 1.385a1.75 1.75 0 0 1-1.834 0l-2.25-1.384A1.75 1.75 0 0 1 8 7.192V2.477c0-.098-.048-.155-.084-.176a.1.1 0 0 0-.031-.011z"/></svg>����������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/tracked-by-closed-completed-16.svg���������0000664�0000000�0000000�00000000661�14753064456�0031650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1.5 8a6.5 6.5 0 1 1 13 0A.75.75 0 0 0 16 8a8 8 0 1 0-8 8 .75.75 0 0 0 0-1.5A6.5 6.5 0 0 1 1.5 8"/><path d="m8.677 12.427 2.896 2.896a.25.25 0 0 0 .427-.177V13h3.25a.75.75 0 0 0 0-1.5H12V9.354a.25.25 0 0 0-.427-.177l-2.896 2.896a.25.25 0 0 0 0 .354M11.28 6.78a.749.749 0 1 0-1.06-1.06L7.25 8.689 5.78 7.22a.749.749 0 1 0-1.06 1.06l2 2a.75.75 0 0 0 1.06 0z"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/tracked-by-closed-completed-24.svg���������0000664�0000000�0000000�00000000765�14753064456�0031654�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2.5A9.5 9.5 0 0 0 2.5 12a9.5 9.5 0 0 0 9.5 9.5.75.75 0 0 1 0 1.5C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11a.75.75 0 0 1-1.5 0A9.5 9.5 0 0 0 12 2.5"/><path d="m13.759 17.48 3.728 3.314a.308.308 0 0 0 .513-.23V18h4.25a.75.75 0 0 0 0-1.5H18v-2.564a.308.308 0 0 0-.513-.23l-3.728 3.314a.307.307 0 0 0 0 .46m3.521-8.2a.749.749 0 1 0-1.06-1.06l-5.97 5.969-2.47-2.469a.749.749 0 1 0-1.06 1.06l3 3a.75.75 0 0 0 1.06 0z"/></svg>�����������mkdocs-material-9.6.4/material/templates/.icons/octicons/tracked-by-closed-not-planned-16.svg�������0000664�0000000�0000000�00000000615�14753064456�0032112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1.5 8a6.5 6.5 0 1 1 13 0A.75.75 0 0 0 16 8a8 8 0 1 0-8 8 .75.75 0 0 0 0-1.5A6.5 6.5 0 0 1 1.5 8"/><path d="m8.677 12.427 2.896 2.896a.25.25 0 0 0 .427-.177V13h3.25a.75.75 0 0 0 0-1.5H12V9.354a.25.25 0 0 0-.427-.177l-2.896 2.896a.25.25 0 0 0 0 .354M11.28 5.78a.749.749 0 1 0-1.06-1.06l-5.5 5.5a.749.749 0 1 0 1.06 1.06z"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/tracked-by-closed-not-planned-24.svg�������0000664�0000000�0000000�00000000717�14753064456�0032114�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2.5A9.5 9.5 0 0 0 2.5 12a9.5 9.5 0 0 0 9.5 9.5.75.75 0 0 1 0 1.5C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11a.75.75 0 0 1-1.5 0A9.5 9.5 0 0 0 12 2.5"/><path d="m13.759 17.48 3.728 3.314a.308.308 0 0 0 .513-.23V18h4.25a.75.75 0 0 0 0-1.5H18v-2.564a.308.308 0 0 0-.513-.23l-3.728 3.314a.307.307 0 0 0 0 .46m3.521-9.7a.749.749 0 1 0-1.06-1.06l-9.5 9.5a.749.749 0 1 0 1.06 1.06z"/></svg>�������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/trash-16.svg�������������������������������0000664�0000000�0000000�00000000714�14753064456�0025522�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M11 1.75V3h2.25a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1 0-1.5H5V1.75C5 .784 5.784 0 6.75 0h2.5C10.216 0 11 .784 11 1.75M4.496 6.675l.66 6.6a.25.25 0 0 0 .249.225h5.19a.25.25 0 0 0 .249-.225l.66-6.6a.75.75 0 0 1 1.492.149l-.66 6.6A1.75 1.75 0 0 1 10.595 15h-5.19a1.75 1.75 0 0 1-1.741-1.575l-.66-6.6a.75.75 0 1 1 1.492-.15M6.5 1.75V3h3V1.75a.25.25 0 0 0-.25-.25h-2.5a.25.25 0 0 0-.25.25"/></svg>����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/trash-24.svg�������������������������������0000664�0000000�0000000�00000001206�14753064456�0025516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 1.75V3h5.25a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1 0-1.5H8V1.75C8 .784 8.784 0 9.75 0h4.5C15.216 0 16 .784 16 1.75m-6.5 0V3h5V1.75a.25.25 0 0 0-.25-.25h-4.5a.25.25 0 0 0-.25.25M4.997 6.178a.75.75 0 1 0-1.493.144L4.916 20.92a1.75 1.75 0 0 0 1.742 1.58h10.684a1.75 1.75 0 0 0 1.742-1.581l1.413-14.597a.75.75 0 0 0-1.494-.144l-1.412 14.596a.25.25 0 0 1-.249.226H6.658a.25.25 0 0 1-.249-.226z"/><path d="M9.206 7.501a.75.75 0 0 1 .793.705l.5 8.5A.75.75 0 1 1 9 16.794l-.5-8.5a.75.75 0 0 1 .705-.793Zm6.293.793A.75.75 0 1 0 14 8.206l-.5 8.5a.75.75 0 0 0 1.498.088l.5-8.5Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/triangle-down-16.svg�����������������������0000664�0000000�0000000�00000000270�14753064456�0027150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m4.427 7.427 3.396 3.396a.25.25 0 0 0 .354 0l3.396-3.396A.25.25 0 0 0 11.396 7H4.604a.25.25 0 0 0-.177.427"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/triangle-down-24.svg�����������������������0000664�0000000�0000000�00000000267�14753064456�0027155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.646 15.146 5.854 9.354a.5.5 0 0 1 .353-.854h11.586a.5.5 0 0 1 .353.854l-5.793 5.792a.5.5 0 0 1-.707 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/triangle-left-16.svg�����������������������0000664�0000000�0000000�00000000272�14753064456�0027135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M9.573 4.427 6.177 7.823a.25.25 0 0 0 0 .354l3.396 3.396a.25.25 0 0 0 .427-.177V4.604a.25.25 0 0 0-.427-.177"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/triangle-left-24.svg�����������������������0000664�0000000�0000000�00000000265�14753064456�0027136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.854 11.646 5.792-5.792a.5.5 0 0 1 .854.353v11.586a.5.5 0 0 1-.854.353l-5.792-5.792a.5.5 0 0 1 0-.708"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/triangle-right-16.svg����������������������0000664�0000000�0000000�00000000272�14753064456�0027320�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m6.427 4.427 3.396 3.396a.25.25 0 0 1 0 .354l-3.396 3.396A.25.25 0 0 1 6 11.396V4.604a.25.25 0 0 1 .427-.177"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/triangle-right-24.svg����������������������0000664�0000000�0000000�00000000266�14753064456�0027322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.146 12.354-5.792 5.792a.5.5 0 0 1-.854-.353V6.207a.5.5 0 0 1 .854-.353l5.792 5.792a.5.5 0 0 1 0 .708"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/triangle-up-16.svg�������������������������0000664�0000000�0000000�00000000271�14753064456�0026626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m4.427 9.573 3.396-3.396a.25.25 0 0 1 .354 0l3.396 3.396a.25.25 0 0 1-.177.427H4.604a.25.25 0 0 1-.177-.427"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/triangle-up-24.svg�������������������������0000664�0000000�0000000�00000000264�14753064456�0026627�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.354 8.854 5.792 5.792a.5.5 0 0 1-.353.854H6.207a.5.5 0 0 1-.353-.854l5.792-5.792a.5.5 0 0 1 .708 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/trophy-16.svg������������������������������0000664�0000000�0000000�00000001772�14753064456�0025733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.217 6.962A3.75 3.75 0 0 1 0 3.25v-.5C0 1.784.784 1 1.75 1h1.356c.228-.585.796-1 1.462-1h6.864c.647 0 1.227.397 1.462 1h1.356c.966 0 1.75.784 1.75 1.75v.5a3.75 3.75 0 0 1-3.217 3.712 5.01 5.01 0 0 1-2.771 3.117l.144 1.446c.005.05.03.12.114.204.086.087.217.17.373.227.283.103.618.274.89.568.285.31.467.723.467 1.226v.75h1.25a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1 0-1.5H4v-.75c0-.503.182-.916.468-1.226.27-.294.606-.465.889-.568q.21-.074.373-.227c.084-.085.109-.153.114-.204l.144-1.446a5.01 5.01 0 0 1-2.77-3.117ZM4.5 1.568V5.5a3.5 3.5 0 1 0 7 0V1.568a.07.07 0 0 0-.068-.068H4.568a.07.07 0 0 0-.068.068m2.957 8.902-.12 1.204c-.093.925-.858 1.47-1.467 1.691a.8.8 0 0 0-.3.176c-.037.04-.07.093-.07.21v.75h5v-.75c0-.117-.033-.17-.07-.21a.8.8 0 0 0-.3-.176c-.609-.221-1.374-.766-1.466-1.69l-.12-1.204a5 5 0 0 1-1.087 0ZM13 2.5v2.872a2.25 2.25 0 0 0 1.5-2.122v-.5a.25.25 0 0 0-.25-.25zm-10 0H1.75a.25.25 0 0 0-.25.25v.5c0 .98.626 1.813 1.5 2.122Z"/></svg>������mkdocs-material-9.6.4/material/templates/.icons/octicons/trophy-24.svg������������������������������0000664�0000000�0000000�00000002051�14753064456�0025721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.09 10.121A5.25 5.25 0 0 1 1 5V3.75C1 2.784 1.784 2 2.75 2h2.364c.236-.586.81-1 1.48-1h10.812c.67 0 1.244.414 1.48 1h2.489c.966 0 1.75.784 1.75 1.75V5a5.25 5.25 0 0 1-4.219 5.149 7.01 7.01 0 0 1-4.644 5.478l.231 3.003.034.031c.079.065.303.203.836.282.838.124 1.637.81 1.637 1.807v.75h2.25a.75.75 0 0 1 0 1.5H4.75a.75.75 0 0 1 0-1.5H7v-.75c0-.996.8-1.683 1.637-1.807.533-.08.757-.217.836-.282l.034-.031.231-3.003A7.01 7.01 0 0 1 5.09 10.12ZM6.5 2.594V9a5.5 5.5 0 1 0 11 0V2.594a.094.094 0 0 0-.094-.094H6.594a.094.094 0 0 0-.094.094m4.717 13.363-.215 2.793-.001.021-.003.043a1 1 0 0 1-.022.147c-.05.237-.194.567-.553.86-.348.286-.853.5-1.566.605a.48.48 0 0 0-.274.136.26.26 0 0 0-.083.188v.75h7v-.75a.26.26 0 0 0-.083-.188.48.48 0 0 0-.274-.136c-.713-.105-1.218-.32-1.567-.604-.358-.294-.502-.624-.552-.86a1 1 0 0 1-.025-.19l-.001-.022-.215-2.793a7 7 0 0 1-1.566 0M19 8.578A3.75 3.75 0 0 0 21.625 5V3.75a.25.25 0 0 0-.25-.25H19ZM5 3.5H2.75a.25.25 0 0 0-.25.25V5A3.75 3.75 0 0 0 5 8.537Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/typography-16.svg��������������������������0000664�0000000�0000000�00000001304�14753064456�0026603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6.71 10H2.332l-.874 2.498a.75.75 0 0 1-1.415-.496l3.39-9.688a1.217 1.217 0 0 1 2.302.018l3.227 9.681a.75.75 0 0 1-1.423.474Zm3.13-4.358C10.53 4.374 11.87 4 13 4c1.5 0 3 .939 3 2.601v5.649a.75.75 0 0 1-1.448.275C13.995 12.82 13.3 13 12.5 13c-.77 0-1.514-.231-2.078-.709-.577-.488-.922-1.199-.922-2.041 0-.694.265-1.411.887-1.944C11 7.78 11.88 7.5 13 7.5h1.5v-.899c0-.54-.5-1.101-1.5-1.101-.869 0-1.528.282-1.84.858a.75.75 0 1 1-1.32-.716M6.21 8.5 4.574 3.594 2.857 8.5Zm8.29.5H13c-.881 0-1.375.22-1.637.444-.253.217-.363.5-.363.806 0 .408.155.697.39.896.249.21.63.354 1.11.354.732 0 1.26-.209 1.588-.449.35-.257.412-.495.412-.551Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/typography-24.svg��������������������������0000664�0000000�0000000�00000001464�14753064456�0026611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.414 15H3.586l-1.631 4.505a.75.75 0 1 1-1.41-.51l5.08-14.03a1.463 1.463 0 0 1 2.75 0l5.08 14.03a.75.75 0 1 1-1.411.51Zm4.532-5.098c.913-1.683 2.703-2.205 4.284-2.205 1.047 0 2.084.312 2.878.885.801.577 1.392 1.455 1.392 2.548v8.12a.75.75 0 0 1-1.5 0v-.06l-.044.025c-.893.52-2.096.785-3.451.785-1.051 0-2.048-.315-2.795-.948-.76-.643-1.217-1.578-1.217-2.702 0-.919.349-1.861 1.168-2.563.81-.694 2-1.087 3.569-1.087H22v-1.57c0-.503-.263-.967-.769-1.332-.513-.37-1.235-.6-2.001-.6-1.319 0-2.429.43-2.966 1.42a.75.75 0 0 1-1.318-.716M9.87 13.5 7 5.572 4.13 13.5Zm12.13.7h-2.77c-1.331 0-2.134.333-2.593.726a1.82 1.82 0 0 0-.644 1.424c0 .689.267 1.203.686 1.557.43.365 1.065.593 1.826.593 1.183 0 2.102-.235 2.697-.581.582-.34.798-.74.798-1.134Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/undo-16.svg��������������������������������0000664�0000000�0000000�00000000455�14753064456�0025350�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1.22 6.28a.75.75 0 0 1 0-1.06l3.5-3.5a.749.749 0 1 1 1.06 1.06L3.561 5h7.188l.001.007L10.749 5q.088 0 .171.019A4.501 4.501 0 0 1 10.5 14H8.796a.75.75 0 0 1 0-1.5H10.5a3 3 0 1 0 0-6H3.561L5.78 8.72a.749.749 0 1 1-1.06 1.06z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/undo-24.svg��������������������������������0000664�0000000�0000000�00000000727�14753064456�0025351�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.53 2.22a.75.75 0 0 0-1.06 0L2.22 8.47a.75.75 0 0 0 0 1.06l6.25 6.25a.75.75 0 0 0 1.06-1.06L4.56 9.75H16c.797 0 2.008.245 3 .959.952.686 1.75 1.835 1.75 3.791s-.798 3.105-1.75 3.791c-.992.714-2.203.959-3 .959h-3a.75.75 0 0 0 0 1.5h3c1.037 0 2.575-.305 3.876-1.241 1.339-.964 2.374-2.565 2.374-5.009s-1.035-4.045-2.374-5.009C18.575 8.555 17.036 8.25 16 8.25H4.56l4.97-4.97a.75.75 0 0 0 0-1.06"/></svg>�����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/unfold-16.svg������������������������������0000664�0000000�0000000�00000001171�14753064456�0025666�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m8.177.677 2.896 2.896a.25.25 0 0 1-.177.427H8.75v1.25a.75.75 0 0 1-1.5 0V4H5.104a.25.25 0 0 1-.177-.427L7.823.677a.25.25 0 0 1 .354 0M7.25 10.75a.75.75 0 0 1 1.5 0V12h2.146a.25.25 0 0 1 .177.427l-2.896 2.896a.25.25 0 0 1-.354 0l-2.896-2.896A.25.25 0 0 1 5.104 12H7.25zm-5-2a.75.75 0 0 0 0-1.5h-.5a.75.75 0 0 0 0 1.5zM6 8a.75.75 0 0 1-.75.75h-.5a.75.75 0 0 1 0-1.5h.5A.75.75 0 0 1 6 8m2.25.75a.75.75 0 0 0 0-1.5h-.5a.75.75 0 0 0 0 1.5zM12 8a.75.75 0 0 1-.75.75h-.5a.75.75 0 0 1 0-1.5h.5A.75.75 0 0 1 12 8m2.25.75a.75.75 0 0 0 0-1.5h-.5a.75.75 0 0 0 0 1.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/unfold-24.svg������������������������������0000664�0000000�0000000�00000001654�14753064456�0025673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 23a.75.75 0 0 1-.53-.22l-3.25-3.25a.749.749 0 0 1 .326-1.275.75.75 0 0 1 .734.215L12 21.19l2.72-2.72a.749.749 0 0 1 1.275.326.75.75 0 0 1-.215.734l-3.25 3.25A.75.75 0 0 1 12 23"/><path d="M11.47 1.22a.75.75 0 0 1 1.06 0l3.25 3.25a.75.75 0 0 1-.018 1.042.75.75 0 0 1-1.042.018L12 2.81 9.28 5.53a.75.75 0 0 1-1.042-.018.75.75 0 0 1-.018-1.042ZM12 22.25a.75.75 0 0 1-.75-.75v-5.75a.75.75 0 0 1 1.5 0v5.75a.75.75 0 0 1-.75.75M2.75 12a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75m4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75m4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75m4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75m4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75"/><path d="M12 1.5a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6A.75.75 0 0 1 12 1.5"/></svg>������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/unlink-16.svg������������������������������0000664�0000000�0000000�00000001245�14753064456�0025701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12.914 5.914a2 2 0 0 0-2.828-2.828l-.837.837a.75.75 0 1 1-1.06-1.061l.836-.837a3.5 3.5 0 1 1 4.95 4.95l-.195.194a.75.75 0 0 1-1.06-1.06zm-1.87 3.482a1 1 0 0 1-.07.079c-.63.63-1.468 1.108-2.343 1.263-.89.159-1.86-.017-2.606-.763a.75.75 0 1 1 1.06-1.06c.329.327.767.438 1.284.347.493-.088 1.018-.36 1.445-.752l-1.247-.897-.01-.008-.295-.212c-.94-.597-1.984-.499-2.676.193l-2.5 2.5a2 2 0 1 0 2.828 2.828l.837-.836a.75.75 0 0 1 1.06 1.06l-.836.837a3.5 3.5 0 0 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 1.354-.848L2.312 3.109a.75.75 0 0 1 .876-1.218l5.93 4.27q.172.112.335.24l6.235 4.49a.75.75 0 0 1-.876 1.218z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/unlink-24.svg������������������������������0000664�0000000�0000000�00000001311�14753064456�0025672�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.347 3.653a3.936 3.936 0 0 0-5.567 0l-1.75 1.75a.75.75 0 0 1-1.06-1.06l1.75-1.75a5.436 5.436 0 0 1 7.688 7.687l-1.564 1.564a.75.75 0 0 1-1.06-1.06l1.563-1.564a3.936 3.936 0 0 0 0-5.567M9.786 12.369a.75.75 0 0 1 1.053.125q.143.183.314.353c1.348 1.348 3.386 1.587 4.89.658l-3.922-2.858-.057-.037c-1.419-1.013-3.454-.787-4.784.543L3.653 14.78a3.936 3.936 0 0 0 5.567 5.567l3-3a.75.75 0 1 1 1.06 1.06l-3 3a5.436 5.436 0 1 1-7.688-7.687l3.628-3.628a5.5 5.5 0 0 1 3.014-1.547l-7.05-5.136a.75.75 0 0 1 .883-1.213l20.25 14.75a.75.75 0 0 1-.884 1.213l-5.109-3.722c-2.155 1.709-5.278 1.425-7.232-.53a6 6 0 0 1-.431-.485.75.75 0 0 1 .125-1.053"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/unlock-16.svg������������������������������0000664�0000000�0000000�00000000411�14753064456�0025666�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M5.5 4v2h7A1.5 1.5 0 0 1 14 7.5v6a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 13.5v-6A1.5 1.5 0 0 1 3.499 6H4V4a4 4 0 0 1 7.371-2.154.75.75 0 0 1-1.264.808A2.5 2.5 0 0 0 5.5 4m-2 3.5v6h9v-6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/unlock-24.svg������������������������������0000664�0000000�0000000�00000000620�14753064456�0025667�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 7.25V9h11a2.5 2.5 0 0 1 2.5 2.5v8a2.5 2.5 0 0 1-2.5 2.5h-13A2.5 2.5 0 0 1 3 19.5v-8A2.5 2.5 0 0 1 5.5 9H6V7.25C6 3.845 8.503 1 12 1c2.792 0 4.971 1.825 5.718 4.31a.75.75 0 1 1-1.436.432C15.71 3.84 14.079 2.5 12 2.5c-2.578 0-4.5 2.08-4.5 4.75m-3 4.25v8a1 1 0 0 0 1 1h13a1 1 0 0 0 1-1v-8a1 1 0 0 0-1-1h-13a1 1 0 0 0-1 1"/></svg>����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/unmute-16.svg������������������������������0000664�0000000�0000000�00000001175�14753064456�0025720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.563 2.069A.75.75 0 0 1 8 2.75v10.5a.751.751 0 0 1-1.238.57L3.472 11H1.75A1.75 1.75 0 0 1 0 9.25v-2.5C0 5.784.784 5 1.75 5h1.723l3.289-2.82a.75.75 0 0 1 .801-.111M6.5 4.38 4.238 6.319a.75.75 0 0 1-.488.181h-2a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h2c.179 0 .352.064.488.18L6.5 11.62Zm6.096-2.038a.75.75 0 0 1 1.06 0 8 8 0 0 1 0 11.314.75.75 0 0 1-1.042-.018.75.75 0 0 1-.018-1.042 6.5 6.5 0 0 0 0-9.193.75.75 0 0 1 0-1.06Zm-1.06 2.121-.001.001a5 5 0 0 1 0 7.07.749.749 0 0 1-1.275-.326.75.75 0 0 1 .215-.734 3.5 3.5 0 0 0 0-4.95.75.75 0 1 1 1.061-1.061"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/unmute-24.svg������������������������������0000664�0000000�0000000�00000001152�14753064456�0025712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.553 3.064A.75.75 0 0 1 12 3.75v16.5a.75.75 0 0 1-1.255.555L5.46 16H2.75A1.75 1.75 0 0 1 1 14.25v-4.5C1 8.784 1.784 8 2.75 8h2.71l5.285-4.805a.75.75 0 0 1 .808-.13ZM10.5 5.445l-4.245 3.86a.75.75 0 0 1-.505.195h-3a.25.25 0 0 0-.25.25v4.5c0 .138.112.25.25.25h3c.187 0 .367.069.505.195l4.245 3.86Zm8.218-1.223a.75.75 0 0 1 1.06 0c4.296 4.296 4.296 11.26 0 15.556a.75.75 0 0 1-1.06-1.06 9.5 9.5 0 0 0 0-13.436.75.75 0 0 1 0-1.06"/><path d="M16.243 7.757a.75.75 0 1 0-1.061 1.061 4.5 4.5 0 0 1 0 6.364.75.75 0 0 0 1.06 1.06 6 6 0 0 0 0-8.485Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/unread-16.svg������������������������������0000664�0000000�0000000�00000000654�14753064456�0025662�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M10.5 3.5H1.75a.25.25 0 0 0-.25.25v.32L8 7.88l3.02-1.77a.75.75 0 0 1 .758 1.295L8.379 9.397a.75.75 0 0 1-.758 0L1.5 5.809v6.441c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-4.5a.75.75 0 0 1 1.5 0v4.5A1.75 1.75 0 0 1 14.25 14H1.75A1.75 1.75 0 0 1 0 12.25v-8.5C0 2.784.784 2 1.75 2h8.75a.75.75 0 0 1 0 1.5"/><path d="M14 6a2 2 0 1 0 0-4 2 2 0 0 0 0 4"/></svg>������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/unread-24.svg������������������������������0000664�0000000�0000000�00000000711�14753064456�0025653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.75 4.5a.25.25 0 0 0-.25.25v.852l10.36 7a.25.25 0 0 0 .28 0l5.69-3.845A.75.75 0 0 1 18.67 10l-5.69 3.845c-.592.4-1.368.4-1.96 0L1.5 7.412V19.25c0 .138.112.25.25.25h20.5a.25.25 0 0 0 .25-.25v-8.5a.75.75 0 0 1 1.5 0v8.5A1.75 1.75 0 0 1 22.25 21H1.75A1.75 1.75 0 0 1 0 19.25V4.75C0 3.784.784 3 1.75 3h15.5a.75.75 0 0 1 0 1.5z"/><path d="M24 5.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0"/></svg>�������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/unverified-16.svg��������������������������0000664�0000000�0000000�00000003327�14753064456�0026544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6.415.52a2.68 2.68 0 0 1 3.17 0l.928.68c.153.113.33.186.518.215l1.138.175a2.68 2.68 0 0 1 2.241 2.24l.175 1.138c.029.187.102.365.215.518l.68.928a2.68 2.68 0 0 1 0 3.17l-.68.928a1.2 1.2 0 0 0-.215.518l-.175 1.138a2.68 2.68 0 0 1-2.241 2.241l-1.138.175a1.2 1.2 0 0 0-.518.215l-.928.68a2.68 2.68 0 0 1-3.17 0l-.928-.68a1.2 1.2 0 0 0-.518-.215L3.83 14.41a2.68 2.68 0 0 1-2.24-2.24l-.175-1.138a1.2 1.2 0 0 0-.215-.518l-.68-.928a2.68 2.68 0 0 1 0-3.17l.68-.928a1.2 1.2 0 0 0 .215-.518l.175-1.14a2.68 2.68 0 0 1 2.24-2.24l1.138-.175c.187-.029.365-.102.518-.215l.928-.68Zm2.282 1.209a1.18 1.18 0 0 0-1.394 0l-.928.68a2.7 2.7 0 0 1-1.18.489l-1.136.174a1.18 1.18 0 0 0-.987.987l-.174 1.137a2.7 2.7 0 0 1-.489 1.18l-.68.927c-.305.415-.305.98 0 1.394l.68.928c.256.348.423.752.489 1.18l.174 1.136c.078.51.478.909.987.987l1.137.174c.427.066.831.233 1.18.489l.927.68c.415.305.98.305 1.394 0l.928-.68a2.7 2.7 0 0 1 1.18-.489l1.136-.174c.51-.078.909-.478.987-.987l.174-1.137c.066-.427.233-.831.489-1.18l.68-.927c.305-.415.305-.98 0-1.394l-.68-.928a2.7 2.7 0 0 1-.489-1.18l-.174-1.136a1.18 1.18 0 0 0-.987-.987l-1.137-.174a2.7 2.7 0 0 1-1.18-.489ZM6.92 6.085h.001a.75.75 0 0 1-1.342-.67c.169-.339.436-.701.849-.977C6.846 4.16 7.369 4 8 4a2.76 2.76 0 0 1 1.638.525c.502.377.862.965.862 1.725 0 .448-.115.83-.329 1.15-.205.307-.47.513-.692.662-.109.072-.22.138-.313.195l-.006.004a6 6 0 0 0-.26.16 1 1 0 0 0-.276.245.75.75 0 0 1-1.248-.832c.184-.264.42-.489.692-.661.109-.073.22-.139.313-.195l.007-.004c.1-.061.182-.11.258-.161a1 1 0 0 0 .277-.245C8.96 6.514 9 6.427 9 6.25a.61.61 0 0 0-.262-.525A1.27 1.27 0 0 0 8 5.5c-.369 0-.595.09-.74.187a1 1 0 0 0-.34.398M9 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/unverified-24.svg��������������������������0000664�0000000�0000000�00000003343�14753064456�0026541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 16.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0m-2.517-7.665c.112-.223.268-.424.488-.57C11.186 8.12 11.506 8 12 8c.384 0 .766.118 1.034.319a.95.95 0 0 1 .403.806c0 .48-.218.81-.62 1.186a9 9 0 0 1-.409.354l-.294.249c-.246.213-.524.474-.738.795l-.126.19V13.5a.75.75 0 0 0 1.5 0v-1.12c.09-.1.203-.208.347-.333.063-.055.14-.119.222-.187.166-.14.358-.3.52-.452.536-.5 1.098-1.2 1.098-2.283a2.45 2.45 0 0 0-1.003-2.006C13.37 6.695 12.658 6.5 12 6.5c-.756 0-1.373.191-1.861.517a2.94 2.94 0 0 0-.997 1.148.75.75 0 0 0 1.341.67"/><path d="M9.864 1.2a3.61 3.61 0 0 1 4.272 0l1.375 1.01c.274.2.593.333.929.384l1.686.259a3.61 3.61 0 0 1 3.021 3.02l.259 1.687c.051.336.183.655.384.929l1.01 1.375a3.61 3.61 0 0 1 0 4.272l-1.01 1.375a2.1 2.1 0 0 0-.384.929l-.259 1.686a3.61 3.61 0 0 1-3.02 3.021l-1.687.259a2.1 2.1 0 0 0-.929.384l-1.375 1.01a3.61 3.61 0 0 1-4.272 0l-1.375-1.01a2.1 2.1 0 0 0-.929-.384l-1.686-.259a3.61 3.61 0 0 1-3.021-3.02l-.259-1.687a2.1 2.1 0 0 0-.384-.929L1.2 14.136a3.61 3.61 0 0 1 0-4.272l1.01-1.375c.201-.274.333-.593.384-.929l.259-1.686a3.61 3.61 0 0 1 3.02-3.021l1.687-.259c.336-.051.655-.183.929-.384Zm3.384 1.209a2.11 2.11 0 0 0-2.496 0l-1.376 1.01a3.6 3.6 0 0 1-1.589.658l-1.686.258a2.11 2.11 0 0 0-1.766 1.766l-.258 1.686a3.6 3.6 0 0 1-.658 1.59l-1.01 1.375a2.11 2.11 0 0 0 0 2.496l1.01 1.376a3.6 3.6 0 0 1 .658 1.589l.258 1.686a2.11 2.11 0 0 0 1.766 1.765l1.686.26a3.6 3.6 0 0 1 1.59.657l1.375 1.01a2.11 2.11 0 0 0 2.496 0l1.376-1.01a3.6 3.6 0 0 1 1.589-.658l1.686-.258a2.11 2.11 0 0 0 1.765-1.766l.26-1.686a3.6 3.6 0 0 1 .657-1.59l1.01-1.375a2.11 2.11 0 0 0 0-2.496l-1.01-1.376a3.6 3.6 0 0 1-.658-1.589l-.258-1.686a2.11 2.11 0 0 0-1.766-1.766l-1.686-.258a3.6 3.6 0 0 1-1.59-.658Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/upload-16.svg������������������������������0000664�0000000�0000000�00000000610�14753064456�0025660�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2.75 14A1.75 1.75 0 0 1 1 12.25v-2.5a.75.75 0 0 1 1.5 0v2.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25v-2.5a.75.75 0 0 1 1.5 0v2.5A1.75 1.75 0 0 1 13.25 14Z"/><path d="M11.78 4.72a.749.749 0 1 1-1.06 1.06L8.75 3.811V9.5a.75.75 0 0 1-1.5 0V3.811L5.28 5.78a.749.749 0 1 1-1.06-1.06l3.25-3.25a.75.75 0 0 1 1.06 0z"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/upload-24.svg������������������������������0000664�0000000�0000000�00000000644�14753064456�0025666�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 20.25V18a.75.75 0 0 1 1.5 0v2.25c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25V18a.75.75 0 0 1 1.5 0v2.25A1.75 1.75 0 0 1 18.25 22H5.75A1.75 1.75 0 0 1 4 20.25"/><path d="M5.22 9.53a.75.75 0 0 1 0-1.06l6.25-6.25a.75.75 0 0 1 1.06 0l6.25 6.25a.749.749 0 1 1-1.06 1.06l-4.97-4.969V16.75a.75.75 0 0 1-1.5 0V4.561L6.28 9.53a.75.75 0 0 1-1.06 0"/></svg>��������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/verified-16.svg����������������������������0000664�0000000�0000000�00000002533�14753064456�0026177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m9.585.52.929.68c.153.112.331.186.518.215l1.138.175a2.68 2.68 0 0 1 2.24 2.24l.174 1.139c.029.187.103.365.215.518l.68.928a2.68 2.68 0 0 1 0 3.17l-.68.928a1.2 1.2 0 0 0-.215.518l-.175 1.138a2.68 2.68 0 0 1-2.241 2.241l-1.138.175a1.2 1.2 0 0 0-.518.215l-.928.68a2.68 2.68 0 0 1-3.17 0l-.928-.68a1.2 1.2 0 0 0-.518-.215L3.83 14.41a2.68 2.68 0 0 1-2.24-2.24l-.175-1.138a1.2 1.2 0 0 0-.215-.518l-.68-.928a2.68 2.68 0 0 1 0-3.17l.68-.928c.112-.153.186-.331.215-.518l.175-1.14a2.68 2.68 0 0 1 2.24-2.24l1.139-.175c.187-.029.365-.103.518-.215l.928-.68a2.68 2.68 0 0 1 3.17 0M7.303 1.728l-.927.68a2.7 2.7 0 0 1-1.18.489l-1.137.174a1.18 1.18 0 0 0-.987.987l-.174 1.136a2.7 2.7 0 0 1-.489 1.18l-.68.928a1.18 1.18 0 0 0 0 1.394l.68.927c.256.348.424.753.489 1.18l.174 1.137c.078.509.478.909.987.987l1.136.174a2.7 2.7 0 0 1 1.18.489l.928.68c.414.305.979.305 1.394 0l.927-.68a2.7 2.7 0 0 1 1.18-.489l1.137-.174a1.18 1.18 0 0 0 .987-.987l.174-1.136a2.7 2.7 0 0 1 .489-1.18l.68-.928a1.18 1.18 0 0 0 0-1.394l-.68-.927a2.7 2.7 0 0 1-.489-1.18l-.174-1.137a1.18 1.18 0 0 0-.987-.987l-1.136-.174a2.7 2.7 0 0 1-1.18-.489l-.928-.68a1.18 1.18 0 0 0-1.394 0M11.28 6.78l-3.75 3.75a.75.75 0 0 1-1.06 0L4.72 8.78a.75.75 0 0 1 .018-1.042.75.75 0 0 1 1.042-.018L7 8.94l3.22-3.22a.75.75 0 0 1 1.042.018.75.75 0 0 1 .018 1.042"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/verified-24.svg����������������������������0000664�0000000�0000000�00000002553�14753064456�0026200�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.03 9.78a.75.75 0 0 0-1.06-1.06l-5.47 5.47-2.47-2.47a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06 0z"/><path d="m14.136 1.2 1.375 1.01c.274.201.593.333.929.384l1.687.259a3.61 3.61 0 0 1 3.02 3.021l.259 1.686c.051.336.183.655.384.929l1.01 1.375a3.61 3.61 0 0 1 0 4.272l-1.01 1.375a2.1 2.1 0 0 0-.384.929l-.259 1.687a3.61 3.61 0 0 1-3.021 3.02l-1.686.259a2.1 2.1 0 0 0-.929.384l-1.375 1.01a3.61 3.61 0 0 1-4.272 0l-1.375-1.01a2.1 2.1 0 0 0-.929-.384l-1.687-.259a3.61 3.61 0 0 1-3.02-3.021l-.259-1.686a2.1 2.1 0 0 0-.384-.929L1.2 14.136a3.61 3.61 0 0 1 0-4.272l1.01-1.375c.201-.274.333-.593.384-.929l.259-1.687a3.61 3.61 0 0 1 3.021-3.02l1.686-.259c.336-.051.655-.183.929-.384L9.864 1.2a3.61 3.61 0 0 1 4.272 0m-3.384 1.209-1.375 1.01a3.6 3.6 0 0 1-1.59.658l-1.686.258a2.11 2.11 0 0 0-1.766 1.766l-.258 1.686a3.6 3.6 0 0 1-.658 1.589l-1.01 1.376a2.11 2.11 0 0 0 0 2.496l1.01 1.375c.344.469.57 1.015.658 1.59l.258 1.686c.14.911.855 1.626 1.766 1.766l1.686.258a3.6 3.6 0 0 1 1.589.658l1.376 1.01a2.11 2.11 0 0 0 2.496 0l1.375-1.01a3.6 3.6 0 0 1 1.59-.657l1.686-.26a2.11 2.11 0 0 0 1.766-1.765l.258-1.686a3.6 3.6 0 0 1 .658-1.589l1.01-1.376a2.11 2.11 0 0 0 0-2.496l-1.01-1.375a3.6 3.6 0 0 1-.657-1.59l-.26-1.686a2.11 2.11 0 0 0-1.765-1.766l-1.686-.258a3.6 3.6 0 0 1-1.589-.658l-1.376-1.01a2.11 2.11 0 0 0-2.496 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/versions-16.svg����������������������������0000664�0000000�0000000�00000001216�14753064456�0026247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.75 14A1.75 1.75 0 0 1 6 12.25v-8.5C6 2.784 6.784 2 7.75 2h6.5c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 14.25 14Zm-.25-1.75c0 .138.112.25.25.25h6.5a.25.25 0 0 0 .25-.25v-8.5a.25.25 0 0 0-.25-.25h-6.5a.25.25 0 0 0-.25.25ZM4.9 3.508a.75.75 0 0 1-.274 1.025.25.25 0 0 0-.126.217v6.5c0 .09.048.173.126.217a.75.75 0 0 1-.752 1.298A1.75 1.75 0 0 1 3 11.25v-6.5c0-.649.353-1.214.874-1.516a.75.75 0 0 1 1.025.274ZM1.625 5.533za.25.25 0 0 0-.126.217v4.5c0 .09.048.173.126.217a.75.75 0 0 1-.752 1.298A1.75 1.75 0 0 1 0 10.25v-4.5a1.75 1.75 0 0 1 .873-1.516.75.75 0 1 1 .752 1.299"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/versions-24.svg����������������������������0000664�0000000�0000000�00000001414�14753064456�0026246�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2Zm-.5-2a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 .5-.5V4a.5.5 0 0 0-.5-.5H10a.5.5 0 0 0-.5.5ZM6.17 4.165a.75.75 0 0 1-.335 1.006c-.228.114-.295.177-.315.201a.04.04 0 0 0-.008.016.4.4 0 0 0-.012.112v13c0 .07.008.102.012.112a.03.03 0 0 0 .008.016c.02.024.087.087.315.201a.749.749 0 1 1-.67 1.342c-.272-.136-.58-.315-.81-.598C4.1 19.259 4 18.893 4 18.5v-13c0-.393.1-.759.355-1.073.23-.283.538-.462.81-.598a.75.75 0 0 1 1.006.336ZM2.15 5.624a.75.75 0 0 1-.274 1.025q-.225.132-.32.245C1.5 6.96 1.5 6.99 1.5 7v10c0 .01 0 .04.056.106q.095.113.32.245a.75.75 0 0 1-.752 1.298C.73 18.421 0 17.907 0 17V7c0-.907.73-1.42 1.124-1.65a.75.75 0 0 1 1.025.274Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/video-16.svg�������������������������������0000664�0000000�0000000�00000000643�14753064456�0025510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 3.75C0 2.784.784 2 1.75 2h12.5c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 14.25 14H1.75A1.75 1.75 0 0 1 0 12.25Zm1.75-.25a.25.25 0 0 0-.25.25v8.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-8.5a.25.25 0 0 0-.25-.25Z"/><path d="M6 10.559V5.442a.25.25 0 0 1 .379-.215l4.264 2.559a.25.25 0 0 1 0 .428l-4.264 2.559A.25.25 0 0 1 6 10.559"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/video-24.svg�������������������������������0000664�0000000�0000000�00000000634�14753064456�0025507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 4.75C0 3.784.784 3 1.75 3h20.5c.966 0 1.75.784 1.75 1.75v14.5A1.75 1.75 0 0 1 22.25 21H1.75A1.75 1.75 0 0 1 0 19.25Zm1.75-.25a.25.25 0 0 0-.25.25v14.5c0 .138.112.25.25.25h20.5a.25.25 0 0 0 .25-.25V4.75a.25.25 0 0 0-.25-.25Z"/><path d="M9 15.584V8.416a.5.5 0 0 1 .77-.42l5.576 3.583a.5.5 0 0 1 0 .842L9.77 16.005a.5.5 0 0 1-.77-.42Z"/></svg>����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/webhook-16.svg�����������������������������0000664�0000000�0000000�00000001143�14753064456�0026034�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M5.5 4.25a2.25 2.25 0 0 1 4.5 0 .75.75 0 0 0 1.5 0 3.75 3.75 0 1 0-6.14 2.889l-2.272 4.258a.75.75 0 0 0 1.324.706L7 7.25a.75.75 0 0 0-.309-1.015A2.25 2.25 0 0 1 5.5 4.25"/><path d="M7.364 3.607a.75.75 0 0 1 1.03.257l2.608 4.349a3.75 3.75 0 1 1-.628 6.785.75.75 0 0 1 .752-1.299 2.25 2.25 0 1 0-.033-3.88.75.75 0 0 1-1.03-.256L7.107 4.636a.75.75 0 0 1 .257-1.03Z"/><path d="M2.9 8.776A.75.75 0 0 1 2.625 9.8 2.25 2.25 0 1 0 6 11.75a.75.75 0 0 1 .75-.751h5.5a.75.75 0 0 1 0 1.5H7.425a3.751 3.751 0 1 1-5.55-3.998.75.75 0 0 1 1.024.274Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/workflow-16.svg����������������������������0000664�0000000�0000000�00000001060�14753064456�0026246�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 1.75C0 .784.784 0 1.75 0h3.5C6.216 0 7 .784 7 1.75v3.5A1.75 1.75 0 0 1 5.25 7H4v4a1 1 0 0 0 1 1h4v-1.25C9 9.784 9.784 9 10.75 9h3.5c.966 0 1.75.784 1.75 1.75v3.5A1.75 1.75 0 0 1 14.25 16h-3.5A1.75 1.75 0 0 1 9 14.25v-.75H5A2.5 2.5 0 0 1 2.5 11V7h-.75A1.75 1.75 0 0 1 0 5.25Zm1.75-.25a.25.25 0 0 0-.25.25v3.5c0 .138.112.25.25.25h3.5a.25.25 0 0 0 .25-.25v-3.5a.25.25 0 0 0-.25-.25Zm9 9a.25.25 0 0 0-.25.25v3.5c0 .138.112.25.25.25h3.5a.25.25 0 0 0 .25-.25v-3.5a.25.25 0 0 0-.25-.25Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/workflow-24.svg����������������������������0000664�0000000�0000000�00000000730�14753064456�0026250�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 3a2 2 0 0 1 2-2h6.5a2 2 0 0 1 2 2v6.5a2 2 0 0 1-2 2H7v4.063C7 16.355 7.644 17 8.438 17H12.5v-2.5a2 2 0 0 1 2-2H21a2 2 0 0 1 2 2V21a2 2 0 0 1-2 2h-6.5a2 2 0 0 1-2-2v-2.5H8.437A2.94 2.94 0 0 1 5.5 15.562V11.5H3a2 2 0 0 1-2-2Zm2-.5a.5.5 0 0 0-.5.5v6.5a.5.5 0 0 0 .5.5h6.5a.5.5 0 0 0 .5-.5V3a.5.5 0 0 0-.5-.5ZM14.5 14a.5.5 0 0 0-.5.5V21a.5.5 0 0 0 .5.5H21a.5.5 0 0 0 .5-.5v-6.5a.5.5 0 0 0-.5-.5Z"/></svg>����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/x-12.svg�����������������������������������0000664�0000000�0000000�00000000423�14753064456�0024641�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M2.22 2.22a.75.75 0 0 1 1.06 0L6 4.939 8.72 2.22a.749.749 0 1 1 1.06 1.06L7.061 6 9.78 8.72a.749.749 0 1 1-1.06 1.06L6 7.061 3.28 9.78a.749.749 0 1 1-1.06-1.06L4.939 6 2.22 3.28a.75.75 0 0 1 0-1.06"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/x-16.svg�����������������������������������0000664�0000000�0000000�00000000522�14753064456�0024645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.72 3.72a.75.75 0 0 1 1.06 0L8 6.94l3.22-3.22a.749.749 0 0 1 1.275.326.75.75 0 0 1-.215.734L9.06 8l3.22 3.22a.749.749 0 0 1-.326 1.275.75.75 0 0 1-.734-.215L8 9.06l-3.22 3.22a.75.75 0 0 1-1.042-.018.75.75 0 0 1-.018-1.042L6.94 8 3.72 4.78a.75.75 0 0 1 0-1.06"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/x-24.svg�����������������������������������0000664�0000000�0000000�00000000532�14753064456�0024645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.72 5.72a.75.75 0 0 1 1.06 0L12 10.94l5.22-5.22a.749.749 0 0 1 1.275.326.75.75 0 0 1-.215.734L13.06 12l5.22 5.22a.749.749 0 0 1-.326 1.275.75.75 0 0 1-.734-.215L12 13.06l-5.22 5.22a.75.75 0 0 1-1.042-.018.75.75 0 0 1-.018-1.042L10.94 12 5.72 6.78a.75.75 0 0 1 0-1.06"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/x-circle-16.svg����������������������������0000664�0000000�0000000�00000000762�14753064456�0026112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2.344 2.343za8 8 0 0 1 11.314 11.314A8.002 8.002 0 0 1 .234 10.089a8 8 0 0 1 2.11-7.746m1.06 10.253a6.5 6.5 0 1 0 9.108-9.275 6.5 6.5 0 0 0-9.108 9.275M6.03 4.97 8 6.94l1.97-1.97a.749.749 0 0 1 1.275.326.75.75 0 0 1-.215.734L9.06 8l1.97 1.97a.749.749 0 0 1-.326 1.275.75.75 0 0 1-.734-.215L8 9.06l-1.97 1.97a.749.749 0 0 1-1.275-.326.75.75 0 0 1 .215-.734L6.94 8 4.97 6.03a.75.75 0 0 1 .018-1.042.75.75 0 0 1 1.042-.018"/></svg>��������������mkdocs-material-9.6.4/material/templates/.icons/octicons/x-circle-24.svg����������������������������0000664�0000000�0000000�00000000664�14753064456�0026112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.036 7.976a.75.75 0 0 0-1.06 1.06L10.939 12l-2.963 2.963a.75.75 0 1 0 1.06 1.06L12 13.06l2.963 2.964a.75.75 0 0 0 1.061-1.06L13.061 12l2.963-2.964a.75.75 0 1 0-1.06-1.06L12 10.939z"/><path d="M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1M2.5 12a9.5 9.5 0 0 0 9.5 9.5 9.5 9.5 0 0 0 9.5-9.5A9.5 9.5 0 0 0 12 2.5 9.5 9.5 0 0 0 2.5 12"/></svg>����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/x-circle-fill-12.svg�����������������������0000664�0000000�0000000�00000000336�14753064456�0027027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M1.757 10.243a6.001 6.001 0 1 1 8.488-8.486 6.001 6.001 0 0 1-8.488 8.486M6 4.763l-2-2L2.763 4l2 2-2 2L4 9.237l2-2 2 2L9.237 8l-2-2 2-2L8 2.763Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/x-circle-fill-16.svg�����������������������0000664�0000000�0000000�00000000613�14753064456�0027031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2.343 13.657A8 8 0 1 1 13.658 2.343 8 8 0 0 1 2.343 13.657M6.03 4.97a.75.75 0 0 0-1.042.018.75.75 0 0 0-.018 1.042L6.94 8 4.97 9.97a.749.749 0 0 0 .326 1.275.75.75 0 0 0 .734-.215L8 9.06l1.97 1.97a.749.749 0 0 0 1.275-.326.75.75 0 0 0-.215-.734L9.06 8l1.97-1.97a.749.749 0 0 0-.326-1.275.75.75 0 0 0-.734.215L8 6.94Z"/></svg>���������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/x-circle-fill-24.svg�����������������������0000664�0000000�0000000�00000000622�14753064456�0027030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12m8.036-4.024a.75.75 0 0 0-1.042.018.75.75 0 0 0-.018 1.042L10.939 12l-2.963 2.963a.749.749 0 0 0 .326 1.275.75.75 0 0 0 .734-.215L12 13.06l2.963 2.964a.75.75 0 0 0 1.061-1.06L13.061 12l2.963-2.964a.749.749 0 0 0-.326-1.275.75.75 0 0 0-.734.215L12 10.939Z"/></svg>��������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/zap-16.svg���������������������������������0000664�0000000�0000000�00000000765�14753064456�0025201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M9.504.43a1.516 1.516 0 0 1 2.437 1.713L10.415 5.5h2.123c1.57 0 2.346 1.909 1.22 3.004l-7.34 7.142a1.25 1.25 0 0 1-.871.354h-.302a1.25 1.25 0 0 1-1.157-1.723L5.633 10.5H3.462c-1.57 0-2.346-1.909-1.22-3.004zm1.047 1.074L3.286 8.571A.25.25 0 0 0 3.462 9H6.75a.75.75 0 0 1 .694 1.034l-1.713 4.188 6.982-6.793A.25.25 0 0 0 12.538 7H9.25a.75.75 0 0 1-.683-1.06l2.008-4.418.003-.006-.004-.009-.006-.006-.008-.001q-.005 0-.009.004"/></svg>�����������mkdocs-material-9.6.4/material/templates/.icons/octicons/zap-24.svg���������������������������������0000664�0000000�0000000�00000000641�14753064456�0025171�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.716 1.329a1.341 1.341 0 0 1 2.109 1.55L15.147 9h4.161c1.623 0 2.372 2.016 1.143 3.075L8.102 22.721a1.148 1.148 0 0 1-1.81-1.317L8.996 15H4.674c-1.619 0-2.37-2.008-1.148-3.07l12.19-10.6Zm.452 1.595L4.51 13.061a.25.25 0 0 0 .164.439h5.45a.75.75 0 0 1 .692 1.041l-2.559 6.066 11.215-9.668a.25.25 0 0 0-.164-.439H14a.75.75 0 0 1-.687-1.05Z"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/zoom-in-16.svg�����������������������������0000664�0000000�0000000�00000000570�14753064456�0025771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.75 7.5a.75.75 0 0 1 .75-.75h2.25V4.5a.75.75 0 0 1 1.5 0v2.25h2.25a.75.75 0 0 1 0 1.5H8.25v2.25a.75.75 0 0 1-1.5 0V8.25H4.5a.75.75 0 0 1-.75-.75"/><path d="M7.5 0a7.5 7.5 0 0 1 5.807 12.247l2.473 2.473a.749.749 0 1 1-1.06 1.06l-2.473-2.473A7.5 7.5 0 1 1 7.5 0m-6 7.5a6 6 0 1 0 12 0 6 6 0 0 0-12 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/zoom-in-24.svg�����������������������������0000664�0000000�0000000�00000000737�14753064456�0025775�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 5.75a.75.75 0 0 1 .75.75v3.25h3.25a.75.75 0 0 1 0 1.5h-3.25v3.25a.75.75 0 0 1-1.5 0v-3.25H6.5a.75.75 0 0 1 0-1.5h3.25V6.5a.75.75 0 0 1 .75-.75"/><path d="M0 10.5C0 4.701 4.701 0 10.5 0S21 4.701 21 10.5c0 2.63-.967 5.033-2.564 6.875l4.344 4.345a.749.749 0 1 1-1.06 1.06l-4.345-4.344A10.46 10.46 0 0 1 10.5 21C4.701 21 0 16.299 0 10.5m10.5-9a9 9 0 0 0-9 9 9 9 0 0 0 9 9 9 9 0 0 0 9-9 9 9 0 0 0-9-9"/></svg>���������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/zoom-out-16.svg����������������������������0000664�0000000�0000000�00000000431�14753064456�0026166�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M4.5 6.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1 0-1.5"/><path d="M0 7.5a7.5 7.5 0 1 1 13.307 4.747l2.473 2.473a.749.749 0 1 1-1.06 1.06l-2.473-2.473A7.5 7.5 0 0 1 0 7.5m7.5-6a6 6 0 1 0 0 12 6 6 0 0 0 0-12"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/octicons/zoom-out-24.svg����������������������������0000664�0000000�0000000�00000000600�14753064456�0026163�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.5 11.25a.75.75 0 0 0 0-1.5h-8a.75.75 0 0 0 0 1.5z"/><path d="M0 10.5C0 4.701 4.701 0 10.5 0S21 4.701 21 10.5c0 2.63-.967 5.033-2.564 6.875l4.344 4.345a.749.749 0 1 1-1.06 1.06l-4.345-4.344A10.46 10.46 0 0 1 10.5 21C4.701 21 0 16.299 0 10.5m10.5-9a9 9 0 0 0-9 9 9 9 0 0 0 9 9 9 9 0 0 0 9-9 9 9 0 0 0-9-9"/></svg>��������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/���������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0023102�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/1001tracklists.svg���������������������������0000664�0000000�0000000�00000001041�14753064456�0026304�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.096 1.334V2.68h-1.35v1.345H5.398v1.346h-1.35v1.346H2.7v6.681H1.35v1.348H0v2.451h1.35v1.346H2.7v1.346h2.456v-7.836h-1.35v-4.23h1.35V6.476h1.35V5.13h1.35V3.785h8.289v1.346h1.35v1.346h1.349v1.345h1.35v4.23h-1.35v7.837H21.3v-1.346h1.35v-1.346H24v-2.451h-1.35v-1.348H21.3V6.717h-1.349V5.37h-1.35V4.025h-1.347V2.68h-1.35V1.334Zm1.37 8v1.352H8.112v3.816h2.47v-4.057h2.95v4.348h-1.355v1.352h-1.354v2.464h2.467v-2.705H16v-5.218h-1.355V9.334Zm1.356 10.87v2.462h2.467v-2.463z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/1and1.svg������������������������������������0000664�0000000�0000000�00000001431�14753064456�0024526�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm11.717 5.792c1.564 0 2.671 1.04 2.671 2.468 0 1.044-.428 1.819-1.746 2.915l1.952 2.648c.163-.147.303-1.046.274-1.777-.003-.087-.022-.341-.04-.62h1.814c0 .244.024.595.024.683 0 1.426-.224 2.327-.909 3.198L17.2 17.22h-2.232l-.503-.678c-.823.659-1.546.905-2.713.898-2.284-.013-3.857-1.173-4.005-3.239-.089-1.235.737-2.506 2.32-3.42C9.049 9.477 8.84 9.025 8.84 8.207c0-1.392 1.191-2.415 2.878-2.415zm-9.424.134h4.064v11.296H4.1V7.735H2.293zm14.45 0h4.065v11.296H18.55V7.735h-1.807zm-5.036 1.49c-.545 0-.931.358-.931.845 0 .47.14.726.79 1.562.772-.557 1.058-1.075 1.058-1.58 0-.504-.354-.828-.917-.828zm-.517 4.811c-1.002.663-1.404 1.31-1.386 1.919.03.928.806 1.522 1.948 1.522.703 0 1.174-.257 1.579-.594z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/1dot1dot1dot1.svg����������������������������0000664�0000000�0000000�00000000664�14753064456�0026141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.389 0A5.377 5.377 0 0 0 0 5.389V18.61A5.377 5.377 0 0 0 5.389 24H18.61A5.377 5.377 0 0 0 24 18.611V5.39A5.377 5.377 0 0 0 18.611 0Zm11.546 4.595h.942v3.122h.69v.868h-.69v1.201h-1.001V8.585H14.68v-.964zm-6.07.589h2.523v14.842h-3.094V9.79H6.68V7.805q1.425-.063 1.997-.184.91-.195 1.48-.779.39-.399.592-1.064.116-.4.116-.594m5.989.73L15.513 7.72h1.365V5.915Z"/></svg>����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/1panel.svg�����������������������������������0000664�0000000�0000000�00000000651�14753064456�0025005�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 0 10.349 6v12L12 24 1.651 18V6zm0 .326L1.897 6.158v11.664L12 23.653l10.103-5.831V6.158zM8.84 20.523l-5.801-3.349V6.826L12 1.653l2.23 1.287-8.925 5.195v7.73l5.792 3.345zm6.299-17.058 5.822 3.361v10.348L12 22.347l-2.274-1.312 8.969-5.17v-7.73l-5.823-3.362zm-2.137 3.35v2.869l.024 7.666-.691.384-2.18-1.249.008-6.801H8.958L8.95 8.351l3.412-1.965z"/></svg>���������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/1password.svg��������������������������������0000664�0000000�0000000�00000001700�14753064456�0025544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .007C5.373.007 0 5.376 0 11.999s5.373 11.994 12 11.994S24 18.623 24 12 18.627.007 12 .007m-.895 4.857h1.788c.484 0 .729.002.914.096a.86.86 0 0 1 .377.377c.094.185.095.428.095.912v6.016c0 .12 0 .182-.015.238a.4.4 0 0 1-.067.137 1 1 0 0 1-.174.162l-.695.564c-.113.092-.17.138-.191.194a.22.22 0 0 0 0 .15c.02.055.078.101.191.193l.695.565c.094.076.14.115.174.162q.045.063.067.137a1 1 0 0 1 .015.238v2.746c0 .484-.001.727-.095.912a.86.86 0 0 1-.377.377c-.185.094-.43.096-.914.096h-1.788c-.484 0-.726-.002-.912-.096a.86.86 0 0 1-.377-.377c-.094-.185-.095-.428-.095-.912v-6.016c0-.12 0-.182.015-.238a.4.4 0 0 1 .067-.139c.034-.047.08-.083.174-.16l.695-.564c.113-.092.17-.138.191-.194a.22.22 0 0 0 0-.15c-.02-.055-.078-.101-.191-.193l-.695-.565a1 1 0 0 1-.174-.162.4.4 0 0 1-.067-.139 1 1 0 0 1-.015-.236V6.25c0-.484.001-.727.095-.912a.86.86 0 0 1 .377-.377c.186-.094.428-.096.912-.096z"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/2fas.svg�������������������������������������0000664�0000000�0000000�00000001257�14753064456�0024463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c-.918 0-1.833.12-2.72.355L4.07 1.748a2.64 2.64 0 0 0-1.96 2.547v9.115a7.91 7.91 0 0 0 3.552 6.606l5.697 3.765a1.32 1.32 0 0 0 1.467-.008l5.572-3.752a7.93 7.93 0 0 0 3.493-6.57V4.295a2.64 2.64 0 0 0-1.961-2.547L14.72.355A10.6 10.6 0 0 0 12 0M7.383 5.4h9.228c.726 0 1.32.594 1.32 1.32 0 .734-.587 1.32-1.32 1.32H7.383c-.727 0-1.32-.593-1.32-1.32 0-.726.593-1.32 1.32-1.32M7.38 9.357h3.299c.727 0 1.32.595 1.32 1.32a1.32 1.32 0 0 1-1.318 1.32H7.38c-.726 0-1.32-.592-1.32-1.32 0-.725.594-1.32 1.32-1.32m0 3.96c.727 0 1.32.593 1.32 1.32s-.586 1.318-1.32 1.318c-.726 0-1.32-.592-1.32-1.318s.594-1.32 1.32-1.32"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/2k.svg���������������������������������������0000664�0000000�0000000�00000001000�14753064456�0024126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 .002v23.997h24V.002zm10.962 5.592c2.36 0 4.443.416 3.799 2.423-.434 1.365-2.017 1.918-3.114 2.109l-2.757.489c-.655.114-1.039.277-1.3.549h6.012l-.818 2.529 3.446-2.529h3.755l-4.091 2.772 2.07 4.402h-3.766l-1.082-2.754-1.197.826-.619 1.928H8.471l1.718-5.374h-6.25C4.874 10.2 6.891 9.36 8.731 8.989l2.264-.457c.387-.07.64-.259.736-.557.136-.416-.32-.581-.994-.581-.784 0-1.604.074-1.984 1.005H5.646c1.009-2.474 3.483-2.805 5.316-2.805"/></svg>mkdocs-material-9.6.4/material/templates/.icons/simple/30secondsofcode.svg��������������������������0000664�0000000�0000000�00000001567�14753064456�0026615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.895 12c0 .734-.593 1.328-1.324 1.328h-.58a6.67 6.67 0 0 1-.389 5.09 6.63 6.63 0 0 1-2.22 2.508 6.6 6.6 0 0 1-9.028-1.619l-.044-.06c-.47-.563-.397-1.4.163-1.872a1.32 1.32 0 0 1 1.864.164l.158.207a3.97 3.97 0 0 0 3.523 1.63 3.96 3.96 0 0 0 3.226-2.163A3.997 3.997 0 0 0 7.771 12 3.98 3.98 0 0 0 9.45 9.927a4 4 0 0 0-1.537-4.644 3.96 3.96 0 0 0-5.417.971l-.158.208a1.32 1.32 0 0 1-1.864.163A1.33 1.33 0 0 1 .31 4.754l.044-.061a6.6 6.6 0 0 1 2.583-2.128 6.6 6.6 0 0 1 6.446.51 6.63 6.63 0 0 1 2.22 2.506 6.66 6.66 0 0 1 .389 5.09h.58c.73 0 1.323.595 1.323 1.329m-.067 5.21a8.3 8.3 0 0 1-1.196 2.811 6.63 6.63 0 0 0 4.717 1.964A6.654 6.654 0 0 0 24 15.328V8.672a6.654 6.654 0 0 0-6.651-6.657c-1.844 0-3.513.75-4.717 1.964a8.3 8.3 0 0 1 1.196 2.81 3.99 3.99 0 0 1 7.511 1.883v6.656a3.992 3.992 0 0 1-7.51 1.883Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/365datascience.svg���������������������������0000664�0000000�0000000�00000002573�14753064456�0026333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.5 13.645v-.858h.818c.575 0 1.183-.152 1.19-.668 0-.318-.258-.738-1.166-.738-.502 0-1.183.174-1.183.683H.09c0-1.2 1.216-1.633 2.26-1.633 1.07 0 2.221.509 2.23 1.692a1.17 1.17 0 0 1-.786 1.087c.542.175.924.7.924 1.168 0 1.36-1.305 1.758-2.399 1.758S.008 15.702 0 14.438h1.077c0 .573.787.772 1.249.772.542 0 1.264-.223 1.264-.82 0-.332-.187-.745-1.208-.745zm5.008-1.43v.833c.251-.377.866-.588 1.312-.588 1.143 0 2.342.469 2.342 1.852 0 1.232-1.207 1.843-2.35 1.843-1.142 0-2.367-.611-2.367-1.858v-2.075c0-1.24 1.168-1.818 2.335-1.818 1.232 0 2.326.476 2.326 1.643H9.042c0-.492-.628-.738-1.24-.738-.64-.007-1.288.334-1.288.937zM9.1 14.311c0-.612-.568-.937-1.28-.937-.714 0-1.322.318-1.313.937s.608.908 1.305.908c.672 0 1.288-.297 1.288-.908m5.997-2.812h-3.063v.977h1.101c1.208 0 2.286.485 2.278 1.787 0 1.263-1.078 1.867-2.221 1.867-1.247 0-2.317-.437-2.326-1.74h1.064c0 .613.713.77 1.248.77s1.174-.238 1.174-.897c.009-.628-.628-.81-1.216-.81H10.99v-2.94h4.109zm7.917-3.69a.95.95 0 0 0-.456 1.78l-1.925 4.72a.94.94 0 0 0-.8.082l-2.046-2.342a.943.943 0 0 0-.09-1.27.943.943 0 0 0-1.41 1.241.943.943 0 0 0 1.249.25l2.046 2.342a.95.95 0 0 0-.208.593.95.95 0 0 0 .266.693.95.95 0 0 0 1.57-.32 1 1 0 0 0 .062-.373.94.94 0 0 0-.343-.73l1.95-4.772a1 1 0 0 0 .136.01.95.95 0 0 0 .908-.577.95.95 0 0 0-.214-1.055.95.95 0 0 0-.694-.266Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/3m.svg���������������������������������������0000664�0000000�0000000�00000001146�14753064456�0024144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.903 5.954 17.17 13.03l-1.739-7.076h-5.099v2.613C9.72 6.28 7.56 5.706 5.558 5.674 3.12 5.641.563 6.701.469 9.936h3.373c0-.977.747-1.536 1.588-1.523 1.032-.008 1.508.434 1.533 1.124-.036.597-.387 1.014-1.525 1.014H4.303V12.9h1.03c.584 0 1.399.319 1.431 1.155.04.995-.652 1.435-1.501 1.443-1.517-.053-1.763-1.225-1.763-2.23H0c.015.677-.151 5.091 5.337 5.059 2.629.025 4.464-1.085 5.003-2.613v2.342h3.455v-7.632l1.867 7.634h3.018l1.875-7.626v7.634H24V5.954zm-8.561 7.06c-.429-.893-1.034-1.284-1.376-1.407.714-.319 1.09-.751 1.376-1.614z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/42.svg���������������������������������������0000664�0000000�0000000�00000000401�14753064456�0024043�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.581 16.851H24v-4.439ZM24 3.574h-4.419v4.42l-4.419 4.418v4.44h4.419v-4.44L24 7.993Zm-4.419 0h-4.419v4.42zm-6.324 8.838H4.419l8.838-8.838H8.838L0 12.412v3.595h8.838v4.419h4.419z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/4chan.svg������������������������������������0000664�0000000�0000000�00000001051�14753064456�0024615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.07 8.82S9.803 1.079 5.145 1.097C2.006 1.109.78 4.124 3.055 4.802c0 0-2.698.973-2.698 2.697s4.274 3.54 10.713 1.32zm1.931 5.924s.904 7.791 5.558 7.991c3.136.135 4.503-2.82 2.262-3.604 0 0 2.74-.845 2.82-2.567s-4.105-3.737-10.64-1.82m-3.672-1.55s-7.532 2.19-6.952 6.813c.39 3.114 3.53 3.969 3.93 1.63 0 0 1.29 2.559 3.002 2.351s3-4.67.02-10.794m5.623-2.467s7.727-1.35 7.66-6.008c-.046-3.138-3.074-4.333-3.728-2.051 0 0-1-2.686-2.726-2.668-1.724.018-3.494 4.312-1.206 10.727"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/4d.svg���������������������������������������0000664�0000000�0000000�00000001751�14753064456�0024136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.64 0v24H3.36V0zM10.49 11.827c-.115.138-5.882 6.789-5.983 6.9-.058.07-.187.194-.187.36 0 .153.187.208.36.208h4.4v-1.067H5.83c.49-.61 3.38-3.824 3.696-4.226v5.34c0 .194-.005.965-.043 1.602-.029.43-.13.637-.661.693-.23.027-.533.041-.662.041-.072 0-.115.083-.115.18s.072.167.23.167c.777 0 1.539-.042 1.942-.042 1.236 0 2.646.097 3.178.097 2.618 0 4.099-.97 4.746-1.607.791-.776 1.539-2.093 1.539-3.81 0-1.622-.662-2.758-1.38-3.465-1.54-1.565-3.913-1.565-5.682-1.565-.56 0-1.035.027-1.064.027-.388.042-.345-.124-.59-.138-.158-.014-.258.055-.474.305m1.898.443c1.108 0 2.719.166 4.027 1.372.604.554 1.367 1.676 1.367 3.408 0 1.414-.288 2.66-1.194 3.409-.849.706-1.812.984-3.265.984-1.122 0-1.683-.291-1.87-.54-.115-.153-.172-.694-.186-1.04 0-.097-.015-.29-.015-.568h1.021c.245 0 .317-.055.389-.18.1-.18.244-.735.244-.86 0-.11-.057-.166-.13-.166-.086 0-.273.139-.647.139h-.877v-5.584c0-.152.058-.222.173-.277s.676-.097.963-.097"/></svg>�����������������������mkdocs-material-9.6.4/material/templates/.icons/simple/500px.svg������������������������������������0000664�0000000�0000000�00000002405�14753064456�0024500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.451 9a3 3 0 1 0 3 3 3.03 3.03 0 0 0-3-3Zm0 5.37A2.355 2.355 0 1 1 9.791 12a2.37 2.37 0 0 1-2.34 2.37ZM13.899 9a3 3 0 1 0 3 3 3 3 0 0 0-3-3Zm0 5.37a2.355 2.355 0 1 1 2.34-2.37 2.33 2.33 0 0 1-2.34 2.37zM2.29 10.8a2.02 2.02 0 0 0-1.59.42V9.63h2.7c.09 0 .15-.03.15-.3s-.12-.27-.18-.27H.4a.27.27 0 0 0-.27.27v2.64c0 .15.09.18.24.21a.23.23 0 0 0 .27-.06 1.71 1.71 0 0 1 1.5-.72 1.56 1.56 0 0 1 1.35 1.32 1.52 1.52 0 0 1-1.32 1.68h-.18a1.53 1.53 0 0 1-1.41-.99c-.03-.09-.09-.15-.33-.06s-.27.15-.24.24a2.127 2.127 0 0 0 2.7 1.26 2.127 2.127 0 0 0 1.26-2.7 2.1 2.1 0 0 0-1.68-1.35m16.65-1.77a1.626 1.626 0 0 0-1.44 1.62v2.67c0 .15.12.18.3.18s.3-.03.3-.18v-2.67a1.01 1.01 0 0 1 .87-1.02.99.99 0 0 1 .75.24.96.96 0 0 1 .33.72 1.2 1.2 0 0 1-.21.57.95.95 0 0 1-.84.39c-.12 0-.21 0-.24.27 0 .18 0 .27.15.3a1.48 1.48 0 0 0 .87-.18 1.61 1.61 0 0 0 .87-1.26A1.554 1.554 0 0 0 19.204 9a.8.8 0 0 1-.264.03zm3.93 1.56 1.08-1.08c.03-.03.12-.12-.06-.33a.3.3 0 0 0-.21-.12.16.16 0 0 0-.12.06l-1.08 1.08-1.08-1.11c-.09-.09-.18-.06-.33.06s-.15.24-.06.33l1.08 1.08-1.086 1.11a.23.23 0 0 0-.06.12.25.25 0 0 0 .12.21.5.5 0 0 0 .21.12.3.3 0 0 0 .15-.06l1.08-1.08 1.08 1.08a.16.16 0 0 0 .12.06.3.3 0 0 0 .21-.12c.09-.12.12-.24.03-.3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/7zip.svg�������������������������������������0000664�0000000�0000000�00000001110�14753064456�0024505�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 18.858h24V8.181H10.717V5.142H0ZM2.021 7.271h6.657v1.994c-1.74 2.09-2.84 4.502-2.948 7.404H3.477c.09-2.501.353-4.954 2.283-6.994l.033-.033H2.021Zm8.45 1.253h13.215v10.143H10.47Zm6.01 1.213v6.871h1.482v-6.87Zm2.755.043v6.912h1.616v-2.42h1.029c.43-.001.754-.29.969-.716.427-.848.429-2.257-.024-3.092-.227-.419-.571-.697-1.033-.684zm-7.924.002v1.596h2.217l-2.304 3.736v1.54h4.287V15.1h-2.698l2.786-3.909v-1.41Zm9.452 1.512h.595c.164-.006.287.081.371.217.17.273.172.736.004.99a.36.36 0 0 1-.373.176l-.55.047z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/99designs.svg��������������������������������0000664�0000000�0000000�00000001125�14753064456�0025440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.65 13.779a2.106 2.106 0 1 1-4.212 0 2.106 2.106 0 0 1 4.212 0m-7.557-3.572a2.023 2.023 0 1 1-4.045 0 2.023 2.023 0 0 1 4.046 0m-7.66 0a2.023 2.023 0 1 1-4.046 0 2.023 2.023 0 0 1 4.046 0M17.44 17.87c.917.398 2.243.466 3.122.058q.588-.274 1.085-.886v.877H24V6.062h-2.485v4.272c-.707-.685-1.449-.977-2.45-.977-1.06 0-1.925.352-2.585.916v-.066A4.41 4.41 0 0 0 8.24 8.02a4.41 4.41 0 1 0-4.14 6.585l-1.912 3.313h2.869l3.183-5.526a4.41 4.41 0 0 0 3.522 2.213l-1.913 3.313h2.868l2.238-3.884c.066 1.584.868 3.13 2.486 3.835"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/9gag.svg�������������������������������������0000664�0000000�0000000�00000001256�14753064456�0024456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.279 21.008 5.193-2.995V5.992l-5.193-2.996C14.423 1.348 12.048 0 12 0S9.577 1.348 6.721 2.996L1.528 5.992v2.354l5.193 2.996c2.856 1.648 5.232 2.996 5.28 2.996s1.469-.797 3.157-1.772a230 230 0 0 1 3.097-1.772c.016 0 .027 1.096.027 2.437l-.002 2.436-3.076 1.772c-1.692.975-3.115 1.783-3.163 1.795s-1.471-.776-3.162-1.752-3.113-1.775-3.161-1.775c-.155 0-4.036 2.274-4.011 2.35.031.093 10.136 5.937 10.276 5.943.057.002 2.44-1.344 5.296-2.992M9.847 8.391c-1.118-.65-2.033-1.2-2.033-1.222 0-.071 4.06-2.376 4.186-2.376.125 0 4.186 2.305 4.186 2.376 0 .063-4.047 2.375-4.184 2.39-.068.007-1.037-.519-2.155-1.168"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/LICENSE.md�����������������������������������0000664�0000000�0000000�00000014651�14753064456�0024515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# CC0 1.0 Universal ## Statement of Purpose The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an “owner”) of an original work of authorship and/or a database (each, a “Work”). Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works (“Commons”) that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others. For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the “Affirmer”), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights. 1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights (“Copyright and Related Rights”). Copyright and Related Rights include, but are not limited to, the following: 1. the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work; 2. moral rights retained by the original author(s) and/or performer(s); 3. publicity and privacy rights pertaining to a person’s image or likeness depicted in a Work; 4. rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(i), below; 5. rights protecting the extraction, dissemination, use and reuse of data in a Work; 6. database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and 7. other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof. 2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the “Waiver”). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer’s heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer’s express Statement of Purpose. 3. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer’s express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer’s Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the “License”). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer’s express Statement of Purpose. 4. Limitations and Disclaimers. 1. No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document. 2. Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law. 3. Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person’s Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work. 4. Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work. For more information, please see <https://creativecommons.org/publicdomain/zero/1.0>. ���������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/abbott.svg�����������������������������������0000664�0000000�0000000�00000000616�14753064456�0025101�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.812 2.4H0v3.197h19.773V5.6a1.03 1.03 0 0 1 1.032 1.031v10.742l-.004.007a1.034 1.034 0 0 1-1.034 1.025H4.23c-.569 0-1.033-.46-1.033-1.033v-4.34c0-.57.464-1.032 1.033-1.032H17.6V8.803H3.188A3.185 3.185 0 0 0 0 11.99v6.423A3.19 3.19 0 0 0 3.188 21.6h17.624A3.187 3.187 0 0 0 24 18.412V5.587A3.186 3.186 0 0 0 20.812 2.4"/></svg>������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/abbrobotstudio.svg���������������������������0000664�0000000�0000000�00000000615�14753064456�0026647�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.999 12.465a9.601 9.601 0 0 1-19.203 0h1.07a8.53 8.53 0 1 0 8.533-8.53v-1.07A9.6 9.6 0 0 1 24 12.463zm-9.6-3.2a3.2 3.2 0 1 0 3.2 3.2 3.2 3.2 0 0 0-3.2-3.2m-2 0-.6-6.672-2.462 1.92-1.46-1.44a4.67 4.67 0 0 0-5.62-.37l-2.02 1.3a.54.54 0 0 0-.15.74.54.54 0 0 0 .74.15l2-1.31a3.64 3.64 0 0 1 4.29.22l1.37 1.38-2.29 1.821z"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/abbvie.svg�����������������������������������0000664�0000000�0000000�00000000703�14753064456�0025053�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.186 20.17c-1.533 0-2.14-.612-2.347-1.838l-.406-1.74c-.413.72-2.453 3.579-6.945 3.579H8.89C1.94 20.17 0 15.467 0 12c0-3.885 2.347-8.17 8.884-8.17h4.905c5.005 0 7.759 2.853 8.372 6.431.512 2.96 1.839 9.91 1.839 9.91zM13.076 6.378h-3.88c-4.698 0-6.231 2.965-6.231 5.623 0 2.653 1.533 5.618 6.236 5.618h3.875c4.904 0 6.236-3.065 6.236-5.618 0-2.246-1.231-5.618-6.236-5.618z"/></svg>�������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/aboutdotme.svg�������������������������������0000664�0000000�0000000�00000003506�14753064456�0025772�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.158 9.897v4.131h.65v-.408c.23.297.577.483.961.483.768 0 1.332-.582 1.332-1.573 0-.967-.558-1.568-1.332-1.568-.372 0-.719.168-.96.49V9.897Zm10.285.322v.818h-.495v.563h.495v1.729c0 .501.26.774.769.774.297 0 .49-.087.607-.192l-.155-.496a.4.4 0 0 1-.285.112c-.186 0-.285-.155-.285-.36V11.6h.607v-.563h-.607v-.818zm-5.488.743c-.954 0-1.536.706-1.536 1.567 0 .855.582 1.574 1.536 1.574s1.537-.719 1.537-1.574c0-.86-.583-1.567-1.537-1.567m14.577 0c-.886 0-1.518.7-1.518 1.567 0 .948.663 1.574 1.567 1.574.47 0 .91-.155 1.214-.44l-.297-.427c-.217.216-.557.334-.855.334-.564 0-.898-.378-.948-.824H24v-.16c0-.942-.57-1.624-1.468-1.624m-4.576 0c-.459 0-.849.298-.979.477v-.402h-.65v2.991h.65v-2.093c.137-.192.403-.397.694-.397.354 0 .49.217.49.54v1.95h.65v-2.093c.13-.199.403-.397.694-.397.353 0 .495.217.495.54v1.95h.65v-2.161c0-.607-.315-.905-.86-.905-.453 0-.85.28-1.016.545-.1-.322-.372-.545-.818-.545m-16.55 0c-.477 0-.91.15-1.257.484l.272.452a1.2 1.2 0 0 1 .886-.384c.41 0 .7.21.7.557v.446c-.223-.254-.563-.384-.972-.384-.49 0-1.035.285-1.035.979 0 .656.551.99 1.035.99.396 0 .75-.142.972-.402v.328h.65V12.04c0-.799-.582-1.078-1.25-1.078m8.449.075v2.118c0 .607.322.948.966.948.47 0 .842-.235 1.053-.471v.396h.65v-2.991h-.65v2.1a.99.99 0 0 1-.762.39c-.372 0-.607-.149-.607-.613v-1.877zm12.67.458c.589 0 .83.434.85.787H21.69c.025-.36.285-.787.837-.787m-17.942.043c.514 0 .843.415.843.992 0 .582-.329.997-.843.997a.98.98 0 0 1-.774-.397v-1.189a.98.98 0 0 1 .774-.403m3.372 0c.558 0 .861.465.861.991 0 .533-.303.998-.86.998-.552 0-.862-.465-.862-.997 0-.527.31-.992.861-.992m-6.66 1.041c.279 0 .557.105.712.31v.458c-.155.204-.433.31-.712.31-.366 0-.644-.21-.644-.539 0-.322.278-.539.644-.539m14.269.65a.44.44 0 0 0-.434.428c0 .235.198.44.434.44a.445.445 0 0 0 .434-.44.44.44 0 0 0-.434-.428"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/abstract.svg���������������������������������0000664�0000000�0000000�00000000617�14753064456�0025432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c9.601 0 12 2.399 12 12s-2.399 12-12 12S0 21.601 0 12 2.399 0 12 0m-1.969 18.564c2.524.003 4.604-2.07 4.609-4.595 0-2.521-2.074-4.595-4.595-4.595S5.45 11.449 5.45 13.969c0 2.516 2.065 4.588 4.581 4.595m8.344-.189V5.625H5.625v2.247h10.498v10.503zm-8.344-6.748a2.343 2.343 0 1 1-.002 4.686 2.343 2.343 0 0 1 .002-4.686"/></svg>�����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/abusedotch.svg�������������������������������0000664�0000000�0000000�00000003437�14753064456�0025753�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.892 10.378c.02 0 .118-.183.383-.254.108-.029.359-.05.54.096.14.113.185.296.185.484v1.127h-.275v-1.083c0-.362-.183-.41-.33-.41-.27 0-.443.211-.503.297v1.196h-.274V9.265h.274zm-.954.05c-.189-.071-.39-.12-.6-.05a.51.51 0 0 0-.31.315.9.9 0 0 0-.049.314c0 .175.044.332.144.452.193.22.537.217.842.092v.228a.7.7 0 0 1-.186.066c-.088.021-.533.11-.842-.18-.363-.34-.216-.936-.211-.954a.8.8 0 0 1 .236-.406c.348-.303.805-.204.976-.105zm-5.999 2.797h1.766v.55h-2.423v-3.59h2.326v.55H15.94v.928h1.433v.55H15.94zm-2.284-.48c0-.334-.317-.413-.81-.513a4 4 0 0 1-.4-.107c-.39-.133-.517-.361-.566-.46-.119-.237-.117-.648.013-.922.245-.523.793-.626 1.186-.626.444 0 .849.105 1.076.202v.563a3 3 0 0 0-.536-.158c-.29-.058-1.157-.181-1.157.421 0 .078.005.248.215.373.23.13.467.122.936.268q.21.063.37.175a.8.8 0 0 1 .256.295q.093.18.093.462c0 .316-.1.633-.413.853-.323.225-.779.27-1.095.27-.332 0-.767-.064-1.046-.22v-.555c.312.136.63.22 1.038.22.32 0 .84-.071.84-.542m-5.252.885c-.587-.358-.596-1.034-.596-1.331v-2.115h.658v2.056c0 .242.015.737.389.942.263.14.66.14.923 0 .374-.205.39-.7.39-.942v-2.055h.657v2.114q0 .225-.027.408c-.036.272-.163.678-.577.923-.484.283-1.334.286-1.817 0m-1.621-2.49a.9.9 0 0 1-.105.43.8.8 0 0 1-.346.321v.01c.173.06.45.2.558.508a.95.95 0 0 1-.142.85q-.105.141-.28.258c-.315.214-.724.244-.976.255-.436.006-.873.003-1.31.003v-3.59H5.43c.285 0 .667.024.96.236a.88.88 0 0 1 .393.719m-1.943 1.073v1.012h.43a5 5 0 0 0 .294-.008c.29-.025.589-.114.669-.362.018-.058.123-.455-.32-.596a1.6 1.6 0 0 0-.45-.046zm.593-.55c.144 0 .481 0 .61-.223a.49.49 0 0 0-.009-.499c-.123-.19-.418-.207-.655-.207H4.84v.929zm-4.006-1.48L0 13.774h.701l.686-1.784q.147-.378.336-.94h.011c.309.92.673 1.82 1.022 2.725h.695l-1.426-3.59zM19.03 15.49h.293V8.51h-.293z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/academia.svg���������������������������������0000664�0000000�0000000�00000000637�14753064456�0025355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.033 21.18 13.77.459H7.869l1.049 2.623L1.836 21.18C1.574 22.098.787 22.23 0 22.361v1.18h6.82v-1.18C4.984 22.23 3.934 21.967 4.721 20c.131-.131.656-1.574 1.311-3.41h8.393l1.18 3.016c.131.525.262.918.262 1.311 0 1.049-.918 1.443-2.623 1.443v1.18H24v-1.18c-.918-.13-1.705-.393-1.967-1.18M6.82 14.361a363 363 0 0 0 3.279-8.525l3.41 8.525z"/></svg>�������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/accenture.svg��������������������������������0000664�0000000�0000000�00000000213�14753064456�0025570�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m.66 16.95 13.242-4.926L.66 6.852V0l22.68 9.132v5.682L.66 24Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/accusoft.svg���������������������������������0000664�0000000�0000000�00000002260�14753064456�0025432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.177 4.214-4.366.022c-.618.005-.776-.004-.874.11-.051.06-.133.164.154.524.286.358 8.777 11.221 8.993 11.481.273.331.527.445.638.463.178.026.4-.067.52-.114.118-.047 4.324-1.785 4.416-1.834.14-.076.13-.289.037-.447a4 4 0 0 0-.307-.429c-.08-.096-7.69-9.195-7.77-9.295-.147-.185-.36-.36-.445-.39-.084-.029-.204-.093-.996-.09m-4.015 5.132s-.449.06-.943.562c-.337.35-9.077 8.949-9.124 9.016-.042.06-.147.175-.064.24.042.033.451-.1.656-.174.029 0 4.293-1.36 4.293-1.36.02-.023-.003-.003.022-.02-.013-.19-.029-.98-.036-1.036-.02-.158.056-.223.11-.259.053-.035.153-.075.153-.075l3.47-1.265c.023-.029 3.32-3.064 3.384-3.122v-.042c-.029-.022-.04-.06-.064-.087-.016-.006-1.857-2.385-1.857-2.378m1.85 5.062c-.116.009-.36.029-.542.109s-5.443 1.979-5.632 2.052-.427.133-.414.285c.007.093.074.1.174.13.1.034 11.278 2.522 11.548 2.578.269.055 1.129.293 1.576.204a1.04 1.04 0 0 0 .431-.14c.078-.047 4.642-2.85 4.716-2.904.07-.053.122-.089.13-.175.005-.033-.09-.11-.195-.131l-1.114-.218-.309-.056s-4.31 1.89-4.406 1.934a.94.94 0 0 1-.445.087c-.316-.029-.558-.207-.93-.633l-2.138-2.773s-.936-.151-1.267-.196c-.332-.044-1.067-.16-1.183-.153"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/accuweather.svg������������������������������0000664�0000000�0000000�00000001106�14753064456�0026114�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.74 6.772a7.436 7.436 0 0 1 10.519 0 7.43 7.43 0 0 1 0 10.515 7.436 7.436 0 0 1-10.52 0c-2.904-2.905-2.904-7.64 0-10.515M12 20.337c-4.59 0-8.338-3.747-8.338-8.337S7.41 3.692 12 3.692c4.591 0 8.31 3.748 8.31 8.308 0 4.619-3.719 8.337-8.31 8.337m12-8.366L21.27 9.5l1.103-3.514-3.603-.784-.784-3.602-3.515 1.133L11.97.004 9.5 2.734 5.986 1.63 5.2 5.231l-3.602.785 1.133 3.515L0 12.03l2.732 2.47-1.105 3.514 3.603.784.784 3.603 3.516-1.134 2.5 2.731 2.468-2.73 3.516 1.103.785-3.602 3.603-.813-1.134-3.515z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/acer.svg�������������������������������������0000664�0000000�0000000�00000003335�14753064456�0024541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.943 9.364c-.085-.113-.17-.198-.595-.226-.113 0-.453-.029-1.048-.029-1.56 0-2.636.482-3.175 1.417.142-.935-.765-1.417-2.749-1.417-2.324 0-3.798.935-4.393 2.834-.226.709-.226 1.276-.056 1.73h-.567c-.425.027-.992.056-1.36.056-.85 0-1.39-.142-1.588-.425-.17-.255-.17-.737.057-1.446.368-1.162 1.247-1.672 2.664-1.672.737 0 1.445.085 1.445.085.085 0 .142-.113.142-.198l-.028-.085-.057-.397c-.028-.255-.227-.397-.567-.453-.311-.029-.567-.029-.907-.029h-.028c-1.842 0-3.146.624-3.854 1.814.255-1.219-.596-1.814-2.551-1.814-1.105 0-1.9.029-2.353.085-.368.057-.595.199-.68.454l-.17.51c-.028.085.029.142.142.142.085 0 .425-.057.992-.086a25 25 0 0 1 1.672-.085c1.077 0 1.559.284 1.389.822-.029.114-.114.199-.255.227-1.02.17-1.842.284-2.438.369-1.7.226-2.692.736-2.947 1.587-.369 1.162.538 1.728 2.72 1.728 1.078 0 2.013-.056 2.75-.198.425-.085.652-.17.737-.453l.396-1.304c-.028 1.304.85 1.955 2.721 1.955.794 0 1.559-.028 1.927-.085.369-.056.567-.141.652-.425l.085-.396c.397.623 1.276.935 2.608.935 1.417 0 2.239-.029 2.465-.114a.52.52 0 0 0 .369-.311l.028-.085.17-.539c.029-.085-.028-.142-.142-.142l-.906.057c-.596.029-1.077.057-1.418.057-.651 0-1.076-.057-1.332-.142-.368-.142-.538-.397-.51-.822l2.863-.368c1.275-.17 2.154-.567 2.579-1.19l-.992 3.315c-.028.057 0 .114.028.142.029.028.085.057.199.057h1.19c.198 0 .283-.114.312-.199l1.048-3.656c.142-.481.567-.708 1.36-.708.71 0 1.22 0 1.56.028h.028c.057 0 .17-.028.255-.17l.17-.51c0-.085 0-.17-.057-.227M4.841 13.73c-.368.057-.907.085-1.587.085-1.219 0-1.729-.255-1.587-.737.113-.34.425-.567.935-.624l2.75-.368zm12.669-2.95q-.17.553-1.616.766l-2.295.311.056-.198c.199-.624.454-1.02.794-1.247q.51-.34 1.7-.34c1.05.028 1.503.255 1.36.708Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/acm.svg��������������������������������������0000664�0000000�0000000�00000003451�14753064456�0024366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.435 12.25a.43.43 0 0 0-.202.135.4.4 0 0 0-.07.245q-.002.225.12.308.115.083.352.082.13 0 .264-.06a.8.8 0 0 0 .245-.165v-.66q-.252.023-.405.045-.158.016-.305.07zM12 0 0 12l12 12 12-12zm0 19.357A7.36 7.36 0 0 1 4.643 12 7.36 7.36 0 0 1 12 4.642 7.36 7.36 0 0 1 19.357 12 7.36 7.36 0 0 1 12 19.357m0-13.98v.002c-3.654 0-6.62 2.966-6.62 6.62s2.966 6.62 6.62 6.62 6.62-2.966 6.62-6.62A6.625 6.625 0 0 0 12 5.376zm-2.862 8.246h-.995v-.336l-.182.154a1.4 1.4 0 0 1-.477.233c-.082.02-.202.035-.352.035a.94.94 0 0 1-.698-.285.97.97 0 0 1-.277-.716q0-.355.14-.574c.1-.15.24-.27.405-.348q.31-.136.646-.18.374-.05.803-.078v-.017q0-.264-.196-.363-.194-.104-.58-.102-.176 0-.41.063c-.158.044-.308.1-.458.164H6.42v-.77q.145-.044.48-.1.325-.06.663-.06.825 0 1.2.276.375.274.375.837v2.168zm3.22-.167q-.103.041-.2.086-.11.046-.23.08a5 5 0 0 1-.27.06 2 2 0 0 1-.336.022q-.396 0-.723-.1a1.5 1.5 0 0 1-.57-.307 1.4 1.4 0 0 1-.373-.52 1.9 1.9 0 0 1-.135-.738c-.008-.27.042-.535.146-.78.09-.204.224-.384.392-.53.165-.134.355-.233.56-.29q.332-.098.675-.096c.37 0 .732.087 1.06.255v.854h-.127a3 3 0 0 0-.147-.124 1.3 1.3 0 0 0-.188-.126 1.07 1.07 0 0 0-.55-.14q-.38-.001-.59.263-.209.265-.21.714 0 .481.225.715a.78.78 0 0 0 .592.235q.166 0 .33-.042a1.1 1.1 0 0 0 .415-.225c.048-.04.088-.082.123-.11h.13v.843zm4.333.173v-1.597q.002-.236-.007-.397a.8.8 0 0 0-.052-.263.26.26 0 0 0-.13-.15.62.62 0 0 0-.478.002q-.13.06-.244.14v2.263h-.993v-1.595q0-.232-.01-.396a.9.9 0 0 0-.05-.264.3.3 0 0 0-.136-.15.5.5 0 0 0-.25-.048.56.56 0 0 0-.24.056q-.115.06-.228.136v2.262h-.995V10.44h.993v.356q.215-.188.46-.323c.148-.08.314-.12.484-.12a.94.94 0 0 1 .514.14c.153.1.27.244.34.414q.285-.266.54-.41a1.03 1.03 0 0 1 .911-.07c.115.044.22.116.3.21.09.106.16.23.2.364q.067.214.066.553v2.076h-.995z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/actigraph.svg��������������������������������0000664�0000000�0000000�00000004042�14753064456�0025565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.043 0c.413 0 .83.266 1.054.546s.191.342.21.529.16.265.16.62-.16.494-.272.644-.047.2-.14.406-.118.168-.193.336.123.462.319.61.378.262.938.318.683.03.963.05c.28.018.453.174.882.23.43.056.449 0 .803 0s.462.053.78.053c.317 0 .75-.14 1.141-.122.393.018 1.43.115 1.86.115s.931-.442 1.38-.423c.448.018.832.119.85.455s-.165.762-.37.837c-.206.074-.609-.067-.852-.067-.242 0-.496.03-.606.025-.133-.007-.232-.09-.381-.053-.15.038-.76.297-.984.315-.224.02-.689-.034-.875.003s-.822.15-1.083.168c-.262.02-.786-.02-1.029.018-.243.037-.615.113-.839.113s-.702-.172-.866-.054c-.397.288-.336.683-.532 1.247-.187.538-.488.88-.525 1.29-.038.412.224 1.738.355 2.205s.504 1.083.747 1.848c.242.766.58 2.31.711 2.945s.004.62.11.977c.108.362.616.934.878 1.83.261.896.547 2.744.64 3.23.094.485.135.558.172.707.037.15-.045.214.039.35.378.613.848.849.792 1.222-.056.374-.652.513-1.083.448-.326-.048-.523-.672-.597-.859-.075-.186.003-.239-.072-.37-.075-.13-.089-.199-.126-.535s.016-.36-.039-.582c-.294-1.197-1.144-2.367-1.35-3.07-.117-.393-.049-.444-.124-.799-.074-.355-2.402-5.42-2.883-5.42-.496 0-2.783 5.006-2.877 5.323s-.04.638-.133.899-1.208 2.388-1.36 3.042c-.1.428-.012.556-.068.8-.056.242-.266 1.303-.659 1.509-.392.205-1.086.046-1.178-.292-.142-.52.678-.906.765-1.382.076-.41.804-4.165 1.102-4.893s.486-.654.616-1.064c.042-.13.043-.514.113-.945.153-.934.433-2.294.765-3.201.486-1.326 1.157-2.611 1.032-3.893-.053-.539-.23-.606-.417-1.222s-.428-1.347-.67-1.384c-.244-.037-.449.093-.748.093s-.896-.13-1.12-.13-.992-.05-1.31-.05-.54-.081-.726-.063c-.187.02-.36.007-.584.007-.28 0-1.017-.34-1.204-.34s-.245.036-.413.036-.325-.063-.512-.063c-.186 0-.532.108-.71.108-.186 0-.54-.419-.484-.886.056-.466.805-.42.991-.42.263 0 .889.355 1.131.392.243.038 1.538-.101 1.818-.101s1.08.126 1.509.126c.43 0 1.014.01 1.369-.046s.68-.244.903-.262c.224-.019 1.238.091 1.807-.306.375-.261.411-.486.392-.654s-.14-.192-.234-.36-.053-.305-.109-.417-.269-.212-.273-.623c-.004-.322.035-.278.147-.596s.116-.451.378-.707c.19-.184.575-.371.988-.371"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/activision.svg�������������������������������0000664�0000000�0000000�00000002053�14753064456�0025773�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.88 8.91 0 14.284h.985l.27-.718h1.252l.269.718h.985zm3.224.359-.537.984h2.15v4.03H7.7v-4.03h1.522l1.882 4.837 1.791-4.837h4.567l-.537-.984H12.18l-1.074 2.865L9.94 9.269zm16.21 1.163v3.762h.986v-1.523l1.7 1.702v-3.76h-.896v1.342zm-15.94.09c-1.075 0-1.881.807-1.881 1.881 0 1.075.806 1.88 1.88 1.88.448 0 .895-.179 1.164-.447L6 12.94c-.18.18-.358.27-.627.27a.897.897 0 0 1-.895-.896c0-.448.358-.896.895-.896.18 0 .448.089.537.268l.627-.715c-.27-.269-.716-.448-1.164-.448zm7.522 0v3.672h.985v-3.671zm2.148 0c-.358 0-.804.18-.804.896 0 .896 1.074 1.433.985 1.792-.09.179-.27.178-.359.178h-.626v.806h1.074c.448 0 .895-.269.895-.806 0-.985-1.253-1.611-.984-1.97 0-.09.178-.09.178-.09h.628v-.805zm1.255 0v3.672h.984v-3.671zm3.045 0c-1.075 0-1.88.807-1.88 1.881 0 .985.805 1.88 1.88 1.88s1.88-.805 1.88-1.88-.806-1.88-1.88-1.88zm-11.016.09v3.672h.986v-3.672zm11.016.896c.448 0 .895.358.895.895a.897.897 0 0 1-.895.896c-.538 0-.985-.358-.896-.896 0-.448.358-.895.896-.895m-17.464.178.27.896h-.54z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/activitypub.svg������������������������������0000664�0000000�0000000�00000000411�14753064456�0026162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.91 4.442 0 10.74v2.52l8.727-5.04v10.077l2.182 1.26zM6.545 12l-4.364 2.52 4.364 2.518zm6.545-2.52L17.455 12l-4.364 2.52zm0-5.038L24 10.74v2.52l-10.91 6.298v-2.52L21.819 12l-8.728-5.04z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/actix.svg������������������������������������0000664�0000000�0000000�00000011072�14753064456�0024734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.583 3.895c-.27.22-.788.078-1.164-.334-.156.156-.269.298-.411.454.411.334.596.866.376 1.114-.22.27-.752.22-1.163-.113-.114.156-.22.333-.334.489.454.298.674.752.518 1.057s-.674.334-1.163.078c-.079.192-.192.376-.27.518.489.22.752.596.631.944-.113.298-.596.411-1.085.269-.078.192-.114.376-.156.568.489.156.816.489.752.787-.078.334-.518.518-1.008.454-.028.192-.028.412-.078.596.49.078.866.334.866.674 0 .341-.412.568-.894.596v.596c.49 0 .894.22.944.518.028.298-.298.631-.788.709.028.192.078.412.114.596.489-.078.893.078.972.376s-.192.674-.632.816c.078.192.114.376.192.568.454-.156.894-.029 1.007.22.114.298-.078.674-.518.943.078.192.192.334.298.518.412-.22.866-.192 1.008.078.191.27 0 .674-.334.972.114.156.22.333.376.489.376-.269.816-.297 1.007-.078.22.22.114.674-.191 1.008.156.156.298.298.454.411.333-.333.752-.454 1.007-.269.249.191.22.631-.028 1.057.156.113.333.22.489.333.298-.376.674-.567.944-.411s.333.596.114 1.057c.191.113.376.191.517.269.22-.411.596-.674.894-.567.298.113.412.567.298 1.007.192.078.376.114.568.192.156-.454.489-.752.787-.71.298.078.49.49.454.972.192.029.412.078.596.078.078-.489.334-.865.674-.816.334 0 .568.412.596.944h.596c0-.49.22-.894.518-.944.333-.028.631.334.752.816.191-.028.411-.078.596-.113-.114-.49.078-.944.376-1.057.333-.078.709.22.865.752.192-.078.376-.114.568-.192-.192-.489-.114-.972.191-1.114.298-.142.752.156.972.632.192-.078.376-.192.518-.27-.269-.454-.269-.972 0-1.163.298-.192.788.028 1.086.489.156-.113.333-.22.489-.376-.376-.411-.454-.943-.191-1.163.269-.22.787-.078 1.163.333l.412-.411c-.455-.376-.596-.866-.412-1.114.22-.27.752-.22 1.192.156l.028.028c.114-.156.27-.333.376-.489-.489-.298-.752-.752-.596-1.086.192-.298.71-.333 1.192-.028l.029.028c.113-.191.191-.376.269-.567h-.028c-.518-.192-.866-.632-.752-.972.113-.348.674-.454 1.192-.22.028 0 .028.028.078.028.078-.191.156-.411.191-.596h-.078c-.567-.113-.972-.489-.894-.815.078-.334.596-.518 1.164-.412.028 0 .078 0 .113.029.029-.22.078-.412.114-.632h-.114c-.567-.028-1.007-.333-1.007-.674 0-.34.489-.631 1.057-.596H24v-.631h-.114c-.567.078-1.057-.192-1.085-.518-.028-.333.376-.674.972-.752h.156c-.028-.22-.078-.411-.113-.631-.029 0-.078.028-.157.028-.567.156-1.085 0-1.163-.333-.113-.334.27-.752.816-.894.028 0 .113-.029.156-.029-.078-.22-.156-.411-.22-.596-.028.029-.078.029-.156.078-.518.22-1.057.156-1.192-.156-.156-.333.156-.787.674-1.007.078-.028.114-.028.192-.078-.114-.192-.192-.376-.298-.568-.029.029-.078.078-.156.114-.49.298-1.008.333-1.242.028-.191-.298.028-.787.518-1.114.028-.028.113-.078.156-.078-.113-.191-.27-.333-.411-.517l-.114.113c-.411.376-.972.49-1.192.22s-.078-.787.334-1.163c.028-.029.113-.079.156-.114a6 6 0 0 0-.49-.454.5.5 0 0 0-.113.156c-.376.454-.866.631-1.164.412-.269-.22-.22-.752.156-1.192.029-.029.078-.114.114-.156-.192-.114-.334-.27-.518-.376-.028.028-.028.113-.078.156-.298.489-.752.752-1.086.596-.298-.192-.333-.71-.028-1.192.028-.029.078-.114.114-.156-.192-.114-.376-.192-.596-.298 0 .028-.029.113-.029.156-.191.518-.631.865-.972.752-.347-.114-.454-.674-.22-1.192.029-.028.029-.114.078-.156-.191-.078-.411-.114-.631-.192 0 .029 0 .078-.028.156-.114.568-.49.972-.816.894-.334-.078-.518-.596-.412-1.163 0-.029.029-.114.029-.156-.22-.029-.412-.078-.632-.078v.113c-.028.568-.333 1.008-.674 1.008-.333 0-.631-.49-.595-1.057V.078h-.632v.114c.078.567-.191 1.057-.518 1.085-.333.028-.674-.376-.752-.972V.192c-.191.028-.411.078-.596.113 0 .028 0 .028.029.078.156.568 0 1.086-.334 1.164-.333.113-.752-.27-.894-.816V.653c-.191.078-.376.156-.596.22 0 0 0 .028.029.028.22.518.156 1.057-.156 1.192-.334.156-.788-.156-1.008-.674V1.39c-.191.114-.376.192-.518.298.298.49.334 1.008.029 1.242-.298.191-.788-.028-1.114-.518-.156.114-.333.27-.489.376.333.369.439.887.177 1.107m-.518 6.491a.876.876 0 0 1-.568-1.085.877.877 0 0 1 1.086-.568.875.875 0 0 1 .567 1.086c-.113.446-.631.709-1.085.567m.78 8.194c-2.17-2.391-3.114-5.725-1.837-6.889 1.241-1.113 4.044.49 6.257 2.881 2.171 2.39 3.554 5.313 2.277 6.477-1.269 1.135-4.526-.107-6.697-2.469m9.138 2.171c-.49.113-.944-.192-1.057-.674-.114-.49.191-.944.674-1.057.489-.114.943.191 1.057.674.085.511-.213.95-.674 1.057m6.073-12.798c1.603.518 2.17 3.93 1.191 7.002s-3.412 5.555-5.015 5.065c-1.604-.518-1.604-3.788-.632-6.86.965-3.036 2.852-5.746 4.456-5.207m-1.384-2.029c.334.376.298.894-.078 1.241s-.894.298-1.241-.078-.298-.894.078-1.241c.376-.298.943-.256 1.241.078m-4.909 4.498c.894.971.816 2.468-.156 3.362s-2.469.816-3.363-.156-.816-2.469.156-3.363c.958-.901 2.469-.822 3.363.157M9.946 2.554c3.143-.674 6.513.191 6.889 1.837s-2.469 3.257-5.612 3.966c-3.143.674-6.399.412-6.746-1.241-.384-1.682 2.319-3.881 5.469-4.562"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/actualbudget.svg�����������������������������0000664�0000000�0000000�00000001044�14753064456�0026266�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.442 10.779.737 2.01-16.758 6.145a.253.253 0 0 1-.324-.15l-.563-1.536a.253.253 0 0 1 .15-.324zM1.13 23.309 12.036.145A.25.25 0 0 1 12.265 0h.478c.097 0 .185.055.227.142l7.036 14.455 2.206-.848c.13-.05.277.015.327.145l.587 1.526a.253.253 0 0 1-.145.327l-2.034.783 2.51 5.156a.253.253 0 0 1-.117.338l-1.47.716a.253.253 0 0 1-.339-.117l-2.59-5.322-17.37 6.682a.253.253 0 0 1-.328-.145q0-.002-.002-.004l-.12-.33a.25.25 0 0 1 .009-.195M12.528 4.127 4.854 20.425 18 15.369z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/acura.svg������������������������������������0000664�0000000�0000000�00000001740�14753064456�0024720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.77 10.908c-.23-4.018-1.492-6.89-3.33-8.496C18.489.689 14.814 0 12.057 0c-2.87 0-6.43.689-8.382 2.412C1.839 4.019.46 7.004.23 10.908c-.23 3.675.574 7.81 2.641 10.106C4.823 23.31 8.843 24 11.943 24s7.12-.689 9.072-2.986c2.18-2.296 2.986-6.316 2.755-10.106m-12.4-9.761h1.377v8.73H11.37ZM1.839 14.585c-.116-1.493-.575-6.89 1.607-9.99.919-1.38 2.182-2.297 3.56-2.757 1.838-.689 4.134-.689 4.134-.689-.919 2.181-2.641 6.89-2.985 7.924-.46 1.263-.804 1.952-1.15 4.248-.229 1.838-.688 6.546-.688 8.612-2.641-1.262-4.133-3.56-4.478-7.35m15.847 7.466c-1.723.803-3.905.918-5.628.918-1.722 0-3.903-.23-5.626-.918.574-1.607 3.33-8.269 4.823-10.91h1.608c1.493 2.643 4.248 9.417 4.823 10.91m4.592-7.466c-.344 3.79-1.837 6.088-4.363 7.35-.115-2.066-.459-6.774-.689-8.612-.345-2.296-.688-2.985-1.148-4.248-.345-1.034-2.182-5.742-2.986-7.924 0 0 2.181 0 4.134.69 1.378.458 2.642 1.377 3.56 2.756 1.952 3.1 1.607 8.497 1.493 9.99"/></svg>��������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/adafruit.svg���������������������������������0000664�0000000�0000000�00000003121�14753064456�0025417�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.399 12.794c-.924.148-1.722-.037-1.781-.412-.06-.375.64-.798 1.565-.945s1.721.038 1.78.412c.06.374-.64.798-1.564.945m-.878 3.86c-.338.172-.957-.363-1.382-1.196-.426-.834-.497-1.65-.158-1.822s.956.363 1.382 1.196.497 1.65.158 1.822m-3.64-1.552c-.662.662-1.415.981-1.683.713-.27-.268.05-1.022.71-1.684.66-.663 1.414-.982 1.683-.714s-.05 1.023-.71 1.685m-2.531-4.61c.171-.339.987-.268 1.82.156s1.372 1.042 1.2 1.38-.988.269-1.822-.155-1.37-1.043-1.198-1.381m4.8-2.45c.375.058.56.856.414 1.78-.145.925-.566 1.625-.942 1.567-.374-.06-.56-.857-.415-1.78.145-.925.567-1.626.943-1.568m11.835 2.53c-.078-.491-.345-.632-.989-.837l-3.762-1.2s-2.283-.863-3.974.357c-.228.164-.464.351-.7.55.198-.236.385-.472.55-.7 1.215-1.694.349-3.975.349-3.975l-1.207-3.761c-.207-.643-.347-.91-.84-.986-.492-.078-.707.132-1.101.68l-2.305 3.209s-1.524 1.903-.888 3.89c.086.266.191.549.308.836a12 12 0 0 0-.497-.74C7.693 6.215 5.258 6.332 5.258 6.332S1.82 6.32 1.308 6.32c-.676-.003-.972.05-1.198.493s-.093.714.307 1.258c.303.415 2.34 3.183 2.34 3.183S4.095 13.292 6.18 13.3c.28.001.58-.012.889-.034a12 12 0 0 0-.855.244c-1.98.656-2.619 3.01-2.619 3.01L2.36 20.273c-.21.64-.252.939.1 1.29.352.353.65.31 1.291.098.489-.16 3.75-1.242 3.75-1.242s2.352-.644 3.004-2.624c.088-.266.169-.556.243-.854a11 11 0 0 0-.03.887c.01 2.085 2.051 3.421 2.051 3.421l3.186 2.333c.546.398.816.531 1.26.305.443-.226.495-.523.491-1.199l-.022-3.95s.114-2.435-1.567-3.668a12 12 0 0 0-.739-.495c.287.115.568.22.836.304 1.986.633 3.888-.894 3.888-.894l3.204-2.31c.547-.395.756-.612.679-1.104"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/adblock.svg����������������������������������0000664�0000000�0000000�00000001550�14753064456�0025223�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.775 0a1.8 1.8 0 0 0-1.273.527L.528 6.503A1.8 1.8 0 0 0 0 7.775v8.45c0 .478.19.936.528 1.274l5.974 5.974A1.8 1.8 0 0 0 7.775 24h8.45a1.8 1.8 0 0 0 1.273-.527l5.975-5.974A1.8 1.8 0 0 0 24 16.225v-8.45a1.8 1.8 0 0 0-.527-1.272L17.498.527A1.8 1.8 0 0 0 16.225 0zm4.427 3c1.02 0 .958 1.108.958 1.108v6.784s-.009.218.16.218c.188 0 .175-.226.175-.226l-.002-5.63s-.05-.986.959-.986c1.01 0 .97.983.97.983v7.621s.014.158.141.158.944-2.122.944-2.122.451-1.497 2.576-1.1c.038.008-.167.688-.167.688l-2.283 6.556S15.69 20.7 11.714 20.7c-5.044 0-4.808-5.407-4.814-5.405V7.562s-.016-.99.897-.99c.858 0 .849.99.849.99l.007 3.583s-.004.172.167.172c.16 0 .141-.172.141-.172l.01-5.926s-.055-1.162.966-1.162c1.04 0 .983 1.142.983 1.142v5.611s-.005.204.152.204c.168 0 .154-.206.154-.206l.01-6.693S11.18 3 12.202 3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/adblockplus.svg������������������������������0000664�0000000�0000000�00000002451�14753064456�0026130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.027 0 0 7.027v9.941L7.027 24h9.941L24 16.968v-9.94L16.973 0zm.202.48h9.542l6.749 6.749v9.542l-6.749 6.749H7.23L.48 16.771V7.23zm.557 1.344L1.824 7.786v8.428l5.962 5.962h8.428l5.962-5.962V7.786l-5.962-5.962zM4.396 7.68H6.38l2.285 8.41H6.917l-.447-2.002H4.238l-.446 1.997h-1.68zm5.3 0h2.491q.534-.006 1.061.096c.302.058.595.173.85.34.24.164.436.385.57.644q.209.403.207 1.008c0 .192-.024.384-.072.566q-.072.283-.216.528a1.586 1.586 0 0 1-.926.72v.053c.523.11.917.327 1.18.643q.398.474.399 1.33 0 .648-.216 1.109c-.14.302-.346.561-.605.768-.269.206-.576.36-.902.451-.36.1-.735.154-1.109.149H9.696zm6.667 0h2.669c.374-.005.749.043 1.114.134.33.082.643.236.907.452.269.225.48.513.61.84q.223.518.225 1.281 0 .736-.23 1.277c-.14.34-.35.643-.624.888a2.6 2.6 0 0 1-.908.518 3.6 3.6 0 0 1-1.099.168H18.01v2.852h-1.647zM5.328 9.125c-.091.446-.182.907-.274 1.373-.09.465-.192.912-.297 1.334l-.178.773h1.555l-.168-.773a32 32 0 0 1-.302-1.34 56 56 0 0 0-.293-1.367zm6.005.029v1.92h.773q.605 0 .878-.279.274-.28.274-.753c0-.317-.092-.548-.279-.682s-.475-.206-.864-.206zm6.681.038v2.54h.917q1.345 0 1.344-1.34-.001-.657-.34-.931c-.226-.183-.562-.269-1.004-.269zm-6.681 3.22v2.204h.931q1.354-.001 1.354-1.147.002-.555-.336-.807c-.226-.168-.562-.25-1.018-.25z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/addydotio.svg��������������������������������0000664�0000000�0000000�00000001111�14753064456�0025575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 6.81V6c0-.305-.033-.605-.075-.9C17.489 2.217 15 0 12 0S6.51 2.217 6.075 5.1A6 6 0 0 0 6 6v.81A5.99 5.99 0 0 0 3 12v6a6 6 0 0 0 6 6h6c0-1.655-1.345-3-3-3H9c-1.655 0-3-1.345-3-3v-6c0-1.655 1.345-3 3-3h6c1.655 0 3 1.345 3 3v1.5a3 3 0 0 1-1.5 2.597V12c0-.83-.67-1.5-1.5-1.5H9c-.83 0-1.5.67-1.5 1.5v6c0 .83.67 1.5 1.5 1.5h6c1.055 0 2.04-.272 2.902-.75A6 6 0 0 0 21 13.5V12a5.99 5.99 0 0 0-3-5.19m-4.5 9.69h-3v-3h3zM9 6c0-.548.15-1.06.408-1.5A3 3 0 0 1 12 3c1.106 0 2.077.605 2.592 1.5.258.44.408.952.408 1.5Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/adguard.svg����������������������������������0000664�0000000�0000000�00000000503�14753064456�0025230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C8.249 0 3.725.861 0 2.755 0 6.845-.051 17.037 12 24 24.051 17.037 24 6.845 24 2.755 20.275.861 15.751 0 12 0m-.106 15.429L6.857 9.612c.331-.239 1.75-1.143 2.794.042l2.187 2.588c.009-.001 5.801-5.948 5.815-5.938.246-.22.694-.503 1.204-.101z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/adidas.svg�����������������������������������0000664�0000000�0000000�00000000323�14753064456�0025046�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m24 19.535-8.697-15.07-4.659 2.687 7.145 12.383Zm-8.287 0L9.969 9.59 5.31 12.277l4.192 7.258ZM4.658 14.723l2.776 4.812H1.223L0 17.41Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/adminer.svg����������������������������������0000664�0000000�0000000�00000004250�14753064456�0025243�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.521 8.297a.53.53 0 0 1-.53.53.53.53 0 0 1-.531-.53.53.53 0 0 1 .53-.53.53.53 0 0 1 .531.53m-1.085-6.122c-.264-.008-.438.01-.438.01l.076.836s.577-.045 1.12.107c.272.076.521.198.689.369s.277.382.277.758c0 .196-.052.296-.139.39a1 1 0 0 1-.378.232c-.312.113-.65.116-.65.116l-.422-.002v2.174h.84V5.758c.177-.017.25.004.517-.092.241-.087.502-.223.714-.455A1.42 1.42 0 0 0 24 4.255c0-.565-.208-1.03-.518-1.346s-.697-.488-1.061-.59a4.2 4.2 0 0 0-.985-.144M17.892 3.79l-2.874 2.487 2.886 2.451.544-.64-2.14-1.817 2.133-1.846zM6.587 5.108c-1.734 0-3.302.186-4.47.5-.584.157-1.068.343-1.438.579s-.679.56-.679 1v12.56c0 .287.145.54.337.73.191.191.437.343.732.48.59.275 1.39.49 2.37.641 1.96.305 4.335.305 6.295 0 .98-.152 1.78-.366 2.37-.64.296-.138.54-.29.732-.48s.337-.444.337-.731V7.187c0-.44-.309-.765-.68-1-.37-.236-.853-.422-1.437-.579-1.167-.314-2.736-.5-4.47-.5Zm0 .84c1.672 0 3.187.185 4.25.471.533.143.953.315 1.207.476.253.161.29.274.29.292s-.037.13-.29.29c-.254.162-.674.334-1.206.477-1.064.287-2.579.472-4.251.472s-3.188-.185-4.252-.472c-.532-.143-.952-.315-1.205-.476-.254-.162-.29-.273-.29-.291s.036-.13.29-.292c.253-.161.673-.333 1.205-.476 1.064-.286 2.58-.471 4.252-.471M.839 8.25c.352.2.76.374 1.278.514 1.168.314 2.736.5 4.47.5s3.302-.186 4.47-.5a5.4 5.4 0 0 0 1.276-.514v3.123c0 .01 0 .047-.09.135a1.8 1.8 0 0 1-.493.313c-.475.221-1.217.429-2.145.573-1.856.288-4.181.288-6.038 0-.928-.144-1.67-.352-2.144-.573a1.8 1.8 0 0 1-.494-.313c-.088-.088-.09-.126-.09-.135Zm0 4.182c.083.047.137.107.23.15.59.276 1.39.49 2.37.642 1.96.304 4.335.304 6.295 0 .98-.152 1.78-.366 2.37-.642.093-.043.147-.103.23-.15v3.127c0 .01-.002.047-.09.135a1.8 1.8 0 0 1-.494.314c-.475.221-1.217.429-2.145.573-1.856.288-4.181.288-6.038 0-.928-.144-1.67-.352-2.144-.573a1.8 1.8 0 0 1-.494-.314c-.088-.088-.09-.126-.09-.135zm0 4.187c.083.047.137.107.23.15.59.275 1.39.49 2.37.642 1.96.304 4.335.304 6.295 0 .98-.153 1.78-.367 2.37-.642.093-.043.147-.103.23-.15v3.127c0 .01-.002.047-.09.135a1.8 1.8 0 0 1-.494.314c-.475.221-1.217.429-2.145.573-1.856.288-4.181.288-6.038 0-.928-.144-1.67-.352-2.144-.573a1.8 1.8 0 0 1-.494-.314c-.088-.088-.09-.126-.09-.135Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/adonisjs.svg���������������������������������0000664�0000000�0000000�00000001033�14753064456�0025432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 12c0 9.68 2.32 12 12 12s12-2.32 12-12S21.68 0 12 0 0 2.32 0 12m4.84 2.492 3.762-8.555C9.238 4.498 10.46 3.716 12 3.716s2.762.781 3.398 2.223l3.762 8.554c.172.418.32.953.32 1.418 0 2.125-1.492 3.617-3.617 3.617-.726 0-1.3-.183-1.883-.37-.597-.192-1.203-.387-1.98-.387-.77 0-1.39.195-1.996.386-.59.188-1.168.371-1.867.371-2.125 0-3.617-1.492-3.617-3.617 0-.465.148-1 .32-1.418ZM12 7.43l-3.715 8.406c1.102-.512 2.371-.758 3.715-.758 1.297 0 2.613.246 3.664.758Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/adp.svg��������������������������������������0000664�0000000�0000000�00000002144�14753064456�0024370�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.086 12a3.13 3.13 0 0 1-3.12 3.12h-1.2v-1.372h1.2a1.749 1.749 0 1 0 0-3.497h-1.2V8.88h1.2a3.13 3.13 0 0 1 3.12 3.12M8.434 8.88v2.537h-2.16l-.788 1.371h4.32V8.88ZM24 10.834a4.286 4.286 0 0 1-4.286 4.286v2.331h-3.702v-1.817a5.36 5.36 0 0 1-4.08 1.817H8.434V15.12H5.691L4.32 17.45H0L6.343 6.548h5.623a5.6 5.6 0 0 1 4.08 1.818V6.548h3.703A4.28 4.28 0 0 1 24 10.834M11.966 16.08a4.09 4.09 0 0 0 3.703-2.332h1.748v2.332h.96v-2.332h1.372a2.91 2.91 0 0 0 2.914-2.914 2.94 2.94 0 0 0-2.949-2.914h-2.331v3.497h-1.371a4.114 4.114 0 0 0-4.046-3.497h-4.8L2.4 16.08h1.131l1.372-2.332h4.903v2.332zm7.748-7.2h-1.371v1.371h1.371a.58.58 0 0 1 .583.583.6.6 0 0 1-.583.583h-1.371v1.371h1.371a1.954 1.954 0 0 0 1.955-1.954 1.975 1.975 0 0 0-1.955-1.954m1.92 7.886a.549.549 0 1 1-.548-.549.54.54 0 0 1 .548.549m.138 0a.686.686 0 1 0-.686.685.686.686 0 0 0 .686-.685m-.652-.309a.137.137 0 1 1 0 .274h-.137v-.274zm.172-.034a.26.26 0 0 0-.172-.069h-.274v.823h.103v-.308h.137l.171.308h.137l-.205-.343c.034 0 .068-.034.103-.068a.2.2 0 0 0 .034-.138.19.19 0 0 0-.034-.205"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/adroll.svg�����������������������������������0000664�0000000�0000000�00000000454�14753064456�0025103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 12c0-6.01-4.727-10.886-10.886-10.886a10.86 10.86 0 0 0-9.508 5.578L8.914 12c0-2.323 1.958-4.2 4.2-4.2 2.377 0 4.2 1.877 4.2 4.2s-1.836 4.2-4.2 4.2H4.065A4.07 4.07 0 0 0 0 20.266v2.62h13.114C19.232 22.886 24 18.01 24 12"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/adventofcode.svg�����������������������������0000664�0000000�0000000�00000000371�14753064456�0026265�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.05 13.236 6.498 9.606L18.91 24l-6.905-9.47L5.1 24l-1.637-1.158 6.498-9.606L.553 9.22l.615-1.69 9.596 3.463L11.087 0h1.826l.323 10.993 9.596-3.462.615 1.69-9.387 4.015z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/adyen.svg������������������������������������0000664�0000000�0000000�00000001415�14753064456�0024724�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.647 9.882v2.934c0 .134.109.243.243.243h.463V9.882h1.765v5.15c0 .47-.38.85-.85.85H9.943v-1.235h2.41v-.53h-1.621a.85.85 0 0 1-.85-.849V9.882zm-8.261 0c.469 0 .85.38.85.85v3.386H.85a.85.85 0 0 1-.85-.85v-.948c0-.469.38-.85.85-.85h.915v1.346c0 .134.108.243.242.243h.464v-1.875a.243.243 0 0 0-.243-.243H.06V9.882Zm5.79-1.764v6H5.791a.85.85 0 0 1-.85-.85v-2.536c0-.47.38-.85.85-.85h.915v2.934c0 .134.108.243.243.243h.463V8.118zm9.033 1.764a.85.85 0 0 1 .85.85v.948c0 .47-.38.85-.85.85h-.915v-1.346a.243.243 0 0 0-.243-.243h-.463v1.875c0 .134.109.243.243.243h2.167v1.059h-3.325a.85.85 0 0 1-.85-.85V9.882Zm4.942 0c.469 0 .849.38.849.85v3.386h-1.765v-2.934a.243.243 0 0 0-.242-.243h-.464v3.177h-1.764V9.882Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/aegisauthenticator.svg�����������������������0000664�0000000�0000000�00000001146�14753064456�0027510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6.949 19.873-.008.013a1.48 1.48 0 0 0-.001 1.47l.317.556c.263.464.756.75 1.29.75h.016a1.483 1.483 0 0 0 1.288-2.219l-.325-.57a1.484 1.484 0 0 0-2.577 0m3.49-6.107a1.48 1.48 0 0 0-.001 1.469l3.796 6.676c.264.464.756.75 1.29.75h.016a1.483 1.483 0 0 0 1.288-2.218l-3.812-6.677a1.484 1.484 0 0 0-2.577 0m.328-11.692L.197 20.464a1.466 1.466 0 0 0 1.272 2.198 1.47 1.47 0 0 0 1.273-.74l7.951-13.928a1.466 1.466 0 0 1 2.548.003L21.16 21.92a1.47 1.47 0 0 0 1.274.742h.099a1.466 1.466 0 0 0 1.273-2.193L13.312 2.078a1.466 1.466 0 0 0-2.545-.004"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/aerlingus.svg��������������������������������0000664�0000000�0000000�00000002131�14753064456�0025611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.857 13.511c-.48 1.545-2.081 2.995-4.002 3.296.31.48.452 1.074.377 1.733-.208 1.789-1.921 3.23-3.758 3.249-1.243.009-2.928-.528-4.115-2.402-1.064-1.666-1.215-4.313-1.14-5.113-1.299 1.328-2.109 2.618-2.495 3.512-.866 2.025-1.196 4.492-1.177 5.65 0 0-.16.151-.31.18-.48-.085-.895-.264-1.206-.537-.376-.34-.461-.66-.461-.66.574-2.872 1.488-4.66 2.853-6.704 1.836-2.76 4.67-4.464 8.032-5.49 2.43-.744 4.954-.904 6.686.565.933.772.989 1.883.716 2.721M9.544 11.986c-.575.96-2.147 2.505-3.39 3.305-2.59 1.657-4.454 1.77-5.387 1.177a1.5 1.5 0 0 1-.292-.235c-.725-.763-.602-2.119.245-3.23.415-.546.951-.932 1.47-1.111-.406-.189-.679-.584-.735-1.14-.113-1.11.725-2.57 1.883-3.164 1.017-.518 3.211-1.036 4.821 1.366.631.932 1.196 2.26 1.385 3.032M20.184 1.89c-.14-1.384-1.62-1.893-3.248-1.196-.772.33-1.45.885-1.93 1.516.075-.63-.104-1.186-.556-1.516-.895-.65-2.524-.17-3.635 1.036-.386.424-1.648 1.95-1.714 4.19-.028 1.083.452 3.485 2.034 5.142 4.219-1.591 6.488-4.03 7.354-5.038.999-1.168 1.422-2.194 1.601-2.947.132-.594.113-1.017.094-1.187"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/aeroflot.svg���������������������������������0000664�0000000�0000000�00000002645�14753064456�0025445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.066 12.725c-.056-.135-.097-.272-.143-.406l-6.675.406 1.35.693zm.909 1.247c-.057-.042-.115-.1-.17-.15a1.8 1.8 0 0 1-.287-.318l-3.333.67 1.419.509zm2.64-.286c.16-.025.4-.122.588-.268l-.968-2.032 1.005-.51-.848-.782q-.904.437-1.809.868l.43 1.025.694-.33zm1.65-4.241c.387.5.655 1.081.782 1.7h-.61a4 4 0 0 0-.172-.57c-.41-1.142-1.25-1.956-2.216-2.633-.127-.078-.241-.164-.37-.238.129.044.243.086.37.136.88.372 1.662.885 2.216 1.605m.185 6.517c-.225.114-.455.22-.682.33l-.565-1.193c-.37.139-.76.215-1.154.226-.424.02-.847-.04-1.249-.176l-.483 1.143c-.157.014-.374 0-.512-.106a.38.38 0 0 1-.169-.224c.204-.356.389-.723.579-1.087-.127-.088-.24-.152-.355-.27l.344-.437c.582.38 1.22.585 1.845.585.627.022 1.25-.192 1.832-.628.19.055.385.119.541.18-.058.046-.1.087-.157.136-.114.12-.213.242-.398.346.188.395.387.784.583 1.175m7.785-3.431L24 11.343h-9.55c0 .422-.06.784-.185 1.1-.369 1.005-1.291 1.487-2.216 1.469-.908-.027-1.834-.524-2.244-1.441a2.75 2.75 0 0 1-.229-1.128H0l1.75 1.188 7.316-.404c.138.553.397 1.037.74 1.395a3.07 3.07 0 0 0 2.243 1.01 2.79 2.79 0 0 0 2.216-.992c.312-.362.554-.826.694-1.385zm-.48.194-1.352.663L15 12.725a10 10 0 0 0 .129-.406zm-3.907 1.462-1.48.52a358 358 0 0 1-2.286-.735c.069-.06.125-.117.183-.196.085-.074.157-.176.242-.254zm.711-.09 1.177-.575-4.86-.614c-.043.164-.171.298-.256.432zm-13.116 0-1.179-.542 4.885-.635c.09.152.171.286.27.42Z"/></svg>�������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/aeromexico.svg�������������������������������0000664�0000000�0000000�00000002647�14753064456�0025767�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.354 12.222c.044.156 0 .422-.267.489a4 4 0 0 1-.666.11c-.377.045-.355.356-.355.534v2.264c0 .31-.244 1.354-1.443 1.354H16.87c-1.043 0-1.864-.866-1.864-1.798V9.803c-.022-.932.821-1.554 1.576-1.532.377 0 .644.111.843.222.444.2.933.444 1.577.755 0 0 1.02-.733 1.087-.777.355-.244.688-.067.8.155.377.733 1.087 2.22 1.465 3.596m1.642-4.018a3.283 3.283 0 0 0-3.219-3.33c-1.709-.044-2.663.578-3.019.755-.022.023-.066 0-.11-.044-.311-.31-1-.777-1.754-.999-.111-.022-.133-.2 0-.2a13.3 13.3 0 0 1 3.64.111c.134.023.245-.066.178-.177-.044-.089-.067-.133-.133-.289-.156-.31-.533-.644-1.021-.777-1.266-.355-3.441-.666-5.394-.666-2.176-.022-4.484.422-5.062.555-.133.023-.333.09-.377.09-.111 0-.155.155-.089.221l.222.222c.067.089.111.222-.022.355L3.796 7.65H6.57c.177 0 .355.155.355.355 0 .177-.156.355-.333.355H2.997l-1.088.999h4.706c.178 0 .333.2.333.355s-.133.355-.333.355H1.11L0 11.09h9.501c.177 0 .333.2.333.355 0 .2-.133.378-.333.378H0v.999h9.479c.222 0 .333.2.333.377 0 .156-.156.333-.356.333H0v1h12.386c.2 0 .334.177.334.377 0 .177-.156.355-.334.355H3.33v.999h9.079c.177 0 .31.2.31.377s-.155.355-.31.355l-.178-.022H3.33v.999h10.455s.377-.866.377-1.843V9.403c0-.532.222-1.42 1.31-1.664.022 0 .067-.023.089-.023 3.085-.732 6.26-.066 8.058.71.333.156.4-.11.377-.222M6.66 21.413h2.11c1.886-.022 3.107-1.02 3.107-1.02H6.659v1.02zm0-1.731h6.06c.29-.289.644-.8.733-.999H6.659v.999Z"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/aerospike.svg��������������������������������0000664�0000000�0000000�00000000345�14753064456�0025607�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.347 15.375 7.45 12.283l6.897-3.072zM24 0v24H0V0zm-4.705 5.386L5.672 11.548l-1.607.743 1.607.688 13.623 6.163v-1.565l-3.576-1.602V8.612l3.576-1.586z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/aew.svg��������������������������������������0000664�0000000�0000000�00000003742�14753064456�0024405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 6.925v10.086h3.674v-.51H.53V7.435h4.526v-.51zm18.944 0v.511h4.526V16.5h-3.144v.511H24V6.925zm-7.727-.891v1.453h1.537v-.383H11.71V6.91h.86v-.336h-.86v-.157h1.044v-.383H11.71zm1.765 0v1.453h1.39V7.06h-.897V6.034zm1.551 0v1.453h.493V6.034zm.648 0v.427h.557v1.026h.493V6.461h.558v-.427h-1.051zm1.765 0v1.453h1.537v-.383H17.44V6.91h.86v-.336h-.86v-.157h1.044v-.383H17.44zM11.45 8.225l-3.785.006.015 3.466 1.57 4.01h5.144l-.707-1.77H9.84V10h2.32zm-1.288 2.862v1.77h3.107l-.712-1.77zM6.265 6.034l-.748 1.453h.538l.122-.278h.699l.135.278h.536l-.753-1.453zm1.363 0v1.453h1.39V7.06h-.897V6.034zm1.55 0v1.453h1.39V7.06h-.896V6.034zm-2.65.444.187.391h-.377zm16.29 1.73-2.148.003-1.368 3.47-.938-3.467-2.142.003-.92 3.443-1.355-3.44-2.177.004 2.966 7.483h1.633l.938-3.462.934 3.462h1.653zm-16.844.025-1.845.003-2.946 7.472H3.37l.342-.9h2.333l-.686-1.747h-.955l.635-1.673 1.706 4.32h2.17zm13.091 8.195c-.398.002-.663.14-.805.316a.76.76 0 0 0 .005.91c.603.625 1.574.134 1.632.008v-.622h-.892v.344h.405v.086c-.114.152-.598.143-.722-.053-.124-.225-.038-.374.008-.444.277-.3.753-.062.784.004l.365-.293a1.33 1.33 0 0 0-.78-.256m-7.877.01a2 2 0 0 0-.269.02c-.293.06-.476.207-.517.346-.128.491.571.567.571.567.623.03.571.098.572.123-.065.136-.42.087-.529.07-.221-.042-.43-.186-.43-.186l-.271.3c.76.482 1.38.226 1.48.17.3-.171.29-.484.192-.621-.076-.093-.307-.207-.535-.232-.204-.048-.604-.011-.558-.141.06-.12.682-.04.845.095l.24-.295c-.233-.168-.517-.22-.791-.216m-7.085.047.504 1.397h.505l.278-.854.266.854h.506l.502-1.397h-.497l-.258.866-.297-.866h-.444l-.294.874-.265-.874zm2.693 0v1.397h.502v-.392h.31l.324.392h.591l-.384-.448c.6-.234.334-.927-.234-.95h-.06zm1.89 0v1.397h1.537v-.328H9.18v-.195h.86v-.335h-.86v-.158h1.044v-.381zm3.427 0v.413h.557v.984h.494v-.984h.557v-.413zm1.758 0v1.397h1.39V17.5h-.897v-1.016zm1.562 0v1.397h.493v-1.397zm.766 0v1.397h.493v-.804l.772.804h.466v-1.396h-.493v.761l-.716-.761zm-8.904.372h.531c.19-.003.189.286 0 .292h-.53z"/></svg>������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/afdian.svg�����������������������������������0000664�0000000�0000000�00000003747�14753064456�0025060�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 14.234a.567.567 0 1 0 0 1.134.567.567 0 0 0 0-1.134m5.351 1.705a.567.567 0 1 0 0 1.135.567.567 0 0 0 0-1.135m8.401 1.436c-.189.095-.461.1-.713.013-.169-.06-.352-.116-.534-.172-.339-.104-.904-.276-1.011-.407a.533.533 0 1 0-.853.643c.059.08.139.146.22.209-.816 1.131-4.398 3.382-9.464 2.273-2.283-.5-3.819-1.413-4.444-2.639-.451-.885-.348-1.797-.133-2.293.62-1.29 5.097-4.261 7.955-5.943a.537.537 0 0 0 .188-.733c-.149-.254-.49-.356-.73-.189-.231.135-1.015.601-2.015 1.236-.338-.227-.923-.508-1.86-.6-1.486-.148-4.92-.805-6.029-1.275C2.535 7.162.731 6.27 1.131 5.267c.092-.234.527-.613 1.47-.974a8.5 8.5 0 0 1 1.995-.492l-.212.103c-.642.312-1.343.662-1.813 1.075-.034-.022-.07-.044-.094-.069a.527.527 0 0 0-.754-.017.533.533 0 0 0-.017.756c.19.2.471.35.829.465l.039.014c1.245.383 3.458.336 6.578.211 1.345-.052 2.615-.102 3.674-.082 3.512.07 6.152 1.469 8.07 4.279 1.178 1.725.753 3.426.079 4.903a1.4 1.4 0 0 1-.231-.222.54.54 0 0 0-.75-.085.535.535 0 0 0-.086.751c.109.137.665.778 1.355.724l.037-.002c.021-.003.042.001.064-.003.472-.086.768-.063 1.045.111.367.232.547.37.511.485-.021.073-.076.125-.168.177M8.19 11.418l-.315.231a1.6 1.6 0 0 1-.243-.32c.123-.038.33.007.558.089m14.733 4.356a1.9 1.9 0 0 0-.81-.27c.632-1.544 1.034-3.565-.336-5.572-2.096-3.072-5.101-4.668-8.93-4.744-1.091-.022-2.377.029-3.737.083-1.58.063-3.683.145-5.112.027.285-.155.588-.304.851-.431 1.006-.49 1.797-.872 1.535-1.548-.137-.396-.547-.603-1.219-.618C3.748 2.669.688 3.489.138 4.872c-.31.779-.361 2.282 2.775 3.61 1.29.548 4.934 1.216 6.341 1.355.397.039.701.119.931.205a75 75 0 0 0-.986.664c-.577-.329-1.521-.718-2.226-.237a.94.94 0 0 0-.435.768c-.01.385.224.763.486 1.066-1.038.83-1.877 1.634-2.175 2.253-.332.762-.467 2.008.153 3.224.786 1.544 2.524 2.62 5.166 3.199 3.454.755 6.437.075 8.411-.966 1.099-.579 1.878-1.27 2.257-1.887l.356.113c.169.051.338.103.496.159.522.181 1.1.157 1.545-.068l.025-.013c.336-.177.577-.46.683-.803.285-.922-.528-1.432-1.018-1.74"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/affine.svg�����������������������������������0000664�0000000�0000000�00000002733�14753064456�0025060�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.995 1.377a1.73 1.73 0 0 0-1.496.863C9.322 4.294 1.088 18.503.127 20.234c-.39.937.154 2.048 1.131 2.32.406.108.834.054 1.203.067 5.374.005 14.234-.006 19.624 0 .156.003.428-.001.658-.066a1.75 1.75 0 0 0 1.256-1.606 1.8 1.8 0 0 0-.125-.713c-.111-.241-.195-.367-.287-.531l-.545-.943L14.32 3.656l-.545-.943-.273-.473a1.9 1.9 0 0 0-.48-.535 1.7 1.7 0 0 0-1.028-.328Zm.006 1.3c.147 0 .293.074.375.215.165.277.648 1.139.816 1.416 1.831 3.174 4.115 7.13 6.305 10.922L10.358 5.09c.33-.57 1.126-1.952 1.268-2.198V2.89A.43.43 0 0 1 12 2.677M9.788 6.144l7.555 7.846-.057-.025-8-5.442c.071-.622.193-1.242.35-1.855zM8.37 8.535 4.22 21.32h-1.76c-.11 0-.682.004-.757-.004-.28-.005-.478-.33-.371-.588.64-1.12 4.178-7.243 7.037-12.193Zm.844 1.205 5.574 3.432-5.504-2.278a9 9 0 0 1-.07-1.154m-.86 1.377-.697 9.465c-.72.303-1.473.537-2.24.725zm1.152.908 3.553 1.225H9.973a7 7 0 0 1-.33-.773q-.075-.225-.137-.452m-.552.852.049.13.834 6.339a9 9 0 0 1-1.088.707zm1.865 1.168h2.365c.18 0 .293.193.203.35l-1.183 2.048a.233.233 0 0 1-.405 0h-.002l-1.181-2.049a.233.233 0 0 1 .203-.35zm3.678.016a7 7 0 0 1 .832.1 8 8 0 0 1 .463.109l-2.842 2.466zm2.38.58a9 9 0 0 1 1.057.527l-5.879 3.174zm-6.888.257 1.543 2.672a7 7 0 0 1-.504.67 8 8 0 0 1-.322.346zm8.965.946c.274.203.538.422.797.648l.986 1.024-10.709 2.652.059-.041zm2.447 2.685 1.194 2.065c.06.1.051.104.074.136a.44.44 0 0 1-.28.575c-.03.001-.057.014-.091.012-.006.005-.13.003-.213.003H8.295z"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/affinity.svg���������������������������������0000664�0000000�0000000�00000000464�14753064456�0025440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.368 1.08h3.778l.318.55h1.082L24 18.004v.001l-2.036 3.47H13.69l.84 1.445h-.365l-.84-1.446H3.057l-.526-.923h-.652L0 17.298l.002-.001 2.41-4.176 2.23-1.288 3.69-6.39-.742-1.285zm2.224 5.652L5.066 18.008h6.25l-.723-1.246 6.808.006z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/affinitydesigner.svg�������������������������0000664�0000000�0000000�00000001014�14753064456�0027151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 2.344v19.312A2.345 2.345 0 0 1 21.656 24H2.344A2.345 2.345 0 0 1 0 21.656V2.344A2.345 2.345 0 0 1 2.344 0h19.312A2.345 2.345 0 0 1 24 2.344M1.758 21.305c0 .517.42.937.938.937h8.226l-4.299-7.445 7.528-13.039h-3.482L1.758 17.192zm11.418-6.866-2.712-4.698-1.761 3.051a1.098 1.098 0 0 0 .952 1.647zm9.066 6.873v-6.075H7.799l4.044 7.005h9.462a.937.937 0 0 0 .937-.93m-.937-19.554h-6.232l-4.148 7.185 3.173 5.496h8.144V2.688a.937.937 0 0 0-.937-.93"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/affinityphoto.svg����������������������������0000664�0000000�0000000�00000001424�14753064456�0026507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 2.344v19.312A2.345 2.345 0 0 1 21.656 24H2.344A2.345 2.345 0 0 1 0 21.656V2.344A2.345 2.345 0 0 1 2.344 0h19.312A2.345 2.345 0 0 1 24 2.344m-13.328-.586-.41.709 5.021 8.693 5.43-9.402zm2.213 7.702H11.12a.9.9 0 0 0-.75.446l-.925 1.605-.007.011a.9.9 0 0 0 0 .872l.924 1.599.01.017a.9.9 0 0 0 .755.428c.002 0 1.178.001 1.765-.002a.89.89 0 0 0 .75-.436q.468-.808.933-1.617a.88.88 0 0 0-.006-.863l-.008-.013-.921-1.595-.005-.008a.9.9 0 0 0-.75-.444M2.36 22.18 9.699 9.475H6.215l-4.457 7.717.002 4.182a.94.94 0 0 0 .6.806m11.844.062-5.479-9.486-5.485 9.486zM12.926 8.676l-3.125-5.41-3.125 5.41zm9.316 6.56H11.08l4.046 7.006h6.197a.94.94 0 0 0 .919-.937zm-.635-13.428-7.295 12.63h7.93V2.695a.94.94 0 0 0-.635-.887"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/affinitypublisher.svg������������������������0000664�0000000�0000000�00000001112�14753064456�0027345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 2.344v19.312A2.345 2.345 0 0 1 21.656 24H2.344A2.345 2.345 0 0 1 0 21.656V2.344A2.345 2.345 0 0 1 2.344 0h19.312A2.345 2.345 0 0 1 24 2.344m-1.758 16.607-9.93-17.193h-1.639L9.75 3.354l10.91 18.888h.645c.517 0 .937-.42.937-.937zm-6.911 3.291L7.086 7.967l-1.263 2.187a1.66 1.66 0 0 0 0 1.657c1.512 2.615 6.025 10.431 6.025 10.431zm5.974-20.484h-8.071l9.008 15.596V2.695a.94.94 0 0 0-.937-.937m-10.38 20.484L4.883 11.781l-3.125 5.411v4.113c0 .517.42.937.938.937zm8.812 0L9.289 4.153 7.598 7.08l8.656 15.162z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/aframe.svg�����������������������������������0000664�0000000�0000000�00000000253�14753064456�0025056�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.37 17.07H6.57L4.24 24H3.01l8.23-24h1.52l8.23 24h-1.3zm-.39-1.13-5-14.96-5.03 14.98h10.03Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/afterpay.svg���������������������������������0000664�0000000�0000000�00000001404�14753064456�0025435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12c0 6.628 5.373 12 12 12 6.628 0 12-5.372 12-12 0-6.627-5.372-12-12-12m1.236 4.924a2.2 2.2 0 0 1 1.15.299l4.457 2.557c1.495.857 1.495 3.013 0 3.87l-4.457 2.558c-1.488.854-3.342-.22-3.342-1.935v-.34a.441.441 0 0 0-.66-.383L6.287 13.9a.441.441 0 0 0 0 .765l4.096 2.35a.44.44 0 0 0 .661-.382v-.685c0-.333.36-.542.649-.376l1.041.597a.44.44 0 0 1 .222.383v.29c0 1.715-1.854 2.789-3.342 1.935L5.157 16.22c-1.495-.857-1.495-3.013 0-3.87l4.457-2.558c1.488-.854 3.342.22 3.342 1.935v.34c0 .34.366.551.66.383l4.097-2.35a.441.441 0 0 0 0-.765l-4.096-2.351a.441.441 0 0 0-.661.382v.685c0 .333-.36.541-.649.375l-1.041-.597a.44.44 0 0 1-.222-.383v-.29c0-1.285 1.043-2.21 2.192-2.233z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/aftership.svg��������������������������������0000664�0000000�0000000�00000001555�14753064456�0025616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.549 9.604a10.46 10.46 0 0 0-3.388-6.838A10.63 10.63 0 0 0 12 0a10.64 10.64 0 0 0-7.16 2.764 10.47 10.47 0 0 0-3.428 7.74c0 2.371.81 4.672 2.298 6.529a10.6 10.6 0 0 0 5.895 3.698L12 24l2.395-3.27a10.6 10.6 0 0 0 5.895-3.697 10.44 10.44 0 0 0 2.26-7.43zm-11.306 6.28a.26.26 0 0 1-.034.125.254.254 0 0 1-.347.092l-3.906-2.237a1 1 0 0 1-.505-.865V8.624a.26.26 0 0 1 .033-.126.254.254 0 0 1 .347-.092l3.907 2.237a1.01 1.01 0 0 1 .503.866v4.372zM12 9.48a1.03 1.03 0 0 1-.503-.133L7.5 7.057a.24.24 0 0 1-.09-.092.25.25 0 0 1 .09-.342l3.997-2.289a1.02 1.02 0 0 1 1.007 0l3.996 2.29a.24.24 0 0 1 .09.092.25.25 0 0 1 0 .25.3.3 0 0 1-.09.092l-3.997 2.289A1 1 0 0 1 12 9.48M17.546 13a1 1 0 0 1-.503.866l-3.908 2.237a.254.254 0 0 1-.38-.218V11.51a1.01 1.01 0 0 1 .503-.867l3.907-2.238a.254.254 0 0 1 .38.219z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/agora.svg������������������������������������0000664�0000000�0000000�00000002327�14753064456�0024720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.44 11.68a1.351 1.351 0 1 1 1.349-1.35 1.35 1.35 0 0 1-1.35 1.35m0-3.8a2.45 2.45 0 1 0 2.45 2.45 2.454 2.454 0 0 0-2.45-2.45m4.07.63-.03.03-.033.032-.023-.04-.019-.032a1.17 1.17 0 0 0-.87-.604l-.091-.018v4.902l.092-.012a1.14 1.14 0 0 0 1.008-1.154V10.33a1.36 1.36 0 0 1 1.21-1.342l.074-.009V7.881l-.088.01a2.1 2.1 0 0 0-1.235.622M2.448 11.683a1.351 1.351 0 1 1 1.35-1.351 1.35 1.35 0 0 1-1.35 1.35M4.02 8.364 4 8.39l-.021.027-.028-.02-.026-.02a2.45 2.45 0 1 0-1.478 4.403 2.42 2.42 0 0 0 1.478-.498l.026-.019.028-.022.02.03.02.027a1.17 1.17 0 0 0 .787.471l.09.013V7.88l-.09.012a1.17 1.17 0 0 0-.786.47m17.53 3.32a1.351 1.351 0 1 1 1.352-1.351 1.35 1.35 0 0 1-1.351 1.35m2.358-3.789a1.18 1.18 0 0 0-.788.47l-.019.027-.02.029-.028-.021-.026-.02a2.45 2.45 0 1 0-1.478 4.4 2.42 2.42 0 0 0 1.478-.497l.026-.02.028-.021.02.028.02.028a1.17 1.17 0 0 0 .787.472l.09.012v-4.9ZM7.978 8.98a1.351 1.351 0 1 1-1.353 1.35A1.35 1.35 0 0 1 7.98 8.98m1.53 3.261a2.444 2.444 0 0 0 .5-3.283 2 2 0 0 0-.112-.153 1.19 1.19 0 0 0 .524-.832l.014-.092H7.968a2.448 2.448 0 0 0-1.524 4.36 2.4 2.4 0 0 0-.293.274l.746.823A1.351 1.351 0 1 1 8.68 15.3l.748.823a2.447 2.447 0 0 0 .07-3.876"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/aib.svg��������������������������������������0000664�0000000�0000000�00000002502�14753064456�0024355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.813.004q-.07.02-.098.107c-.127.402-.601 3.019.728 3.13 4.032.333 3.338 3.608 6.284 4.214v1.07H9.633l-.945.93h3.038v1.818H9.165c-2.01 0-2.849-1.378-2.52-2.427.284-.903 2.21-2.605-.13-3.334.743 2.026-2.43 1.776-2.43 4.894 0 2.435 2.803 3.326 5.08 3.326h6.371c2.277 0 5.08-.891 5.08-3.326 0-3.118-3.172-2.868-2.43-4.894-2.34.73-.412 2.43-.128 3.334.33 1.049-.511 2.427-2.522 2.427h-2.562V9.455h3.039l-.946-.93h-2.093V7.46c2.39-.49 2.68-2.883 4.318-4.049.741-.527 2.063-.53 2.063-.53L17.328 1.38c-.196-.146-.642-.455-1.168-.455-.635 0-1.504.923-2.101 1.304-1.28.818-4.094 2.13-9.086-2.17q-.091-.074-.16-.054zm11.476 1.758c.306 0 .555.248.555.554a.555.555 0 0 1-.555.555.554.554 0 0 1-.555-.555c0-.306.248-.554.555-.554M5.895 15.955 2.713 24h1.662l.736-1.887h3.127L8.984 24h1.688l-3.014-7.625a.67.67 0 0 0-.613-.42zm5.17 0v.367q.072.032.138.063c.202.143.346.49.346.898l.002 6.43c0 .158.127.287.285.287h1.824v-.367l-.14-.063c-.203-.143-.346-.492-.346-.9v-6.428a.286.286 0 0 0-.285-.287zm3.832 0V24H18.7c1.602 0 2.586-1.074 2.586-2.182 0-.878-.596-1.633-1.453-1.974.579-.397.953-1.013.953-1.707 0-1.108-.984-2.182-2.586-2.182zm1.515 1.389h1.85a.965.965 0 0 1 .047 1.93h-1.897zm-9.726.894 1 2.477H5.68zm9.726 2.444h2.383c.534 0 .935.429.935.963a.97.97 0 0 1-.968.966h-2.35Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/aidungeon.svg��������������������������������0000664�0000000�0000000�00000007010�14753064456�0025572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm5.646 13.002H7.21c.117 0 .213.095.213.213v.123c0 .117-.096.21-.213.21h-.457v1.68h.457c.117 0 .213.096.213.213v.123a.21.21 0 0 1-.213.211H5.646a.21.21 0 0 1-.21-.21v-.124a.21.21 0 0 1 .21-.212h.46v-1.68h-.46a.21.21 0 0 1-.21-.211v-.123a.21.21 0 0 1 .21-.213m-2.833.023h.958c.13 0 .19.093.235.235l.756 1.974h.06c.13 0 .235.105.235.235v.09c0 .13-.105.234-.235.234h-.816a.234.234 0 0 1-.235-.234v-.09c0-.13.105-.235.235-.235h.101l-.074-.224h-.969l-.078.224h.178a.2.2 0 0 1 .201.202v.132a.2.2 0 0 1-.2.202H2.35a.2.2 0 0 1-.202-.202v-.132a.2.2 0 0 1 .202-.202h.113l.625-1.707h-.276a.234.234 0 0 1-.234-.234v-.033c0-.13.105-.235.235-.235m.748.557-.317.908h.617zm14.109 3.885h.002c.736 0 1.333.649 1.332 1.449s-.597 1.448-1.332 1.447-1.332-.647-1.332-1.447c-.001-.8.595-1.448 1.33-1.45zm-4.71.002c.118 0 .212.097.212.219 0 .226-.004.447 0 .671 0 0 .036.268-.223.264-.285-.004-.198-.263-.408-.514-.085-.1-.14-.124-.377-.127-.387-.003-.736.16-.734.9 0 .391.143.931.68.956.156.007.452-.072.452-.072v-.348h-.289a.22.22 0 0 1-.218-.219v-.082c0-.121.097-.219.218-.219h.977a.22.22 0 0 1 .219.22v.081a.22.22 0 0 1-.219.219h-.068l.004.686s-.3.26-1.088.253c-.995-.007-1.356-.78-1.354-1.437.003-.855.61-1.433 1.244-1.441a1.7 1.7 0 0 1 .778.17c.02-.1.093-.18.195-.18zm.868.062h1.985c.12 0 .218.098.218.219v.64a.22.22 0 0 1-.218.22h-.086a.22.22 0 0 1-.22-.22v-.312h-1.044c0 .006.006.01.006.016v.508h.375v-.055c0-.121.097-.219.219-.219h.054c.121 0 .219.098.219.219v.633a.22.22 0 0 1-.219.218h-.055a.22.22 0 0 1-.218-.218v-.055h-.375v.617c0 .003-.004.005-.004.008h1.043v-.313c0-.12.097-.218.219-.218h.086c.12 0 .218.097.218.218v.641a.22.22 0 0 1-.218.219h-1.985a.22.22 0 0 1-.219-.219v-.11c0-.12.098-.218.22-.218l.054-.008v-1.648c0-.006.005-.01.006-.016h-.06a.22.22 0 0 1-.22-.219v-.109a.22.22 0 0 1 .22-.219zm-10.264.002c.426.02 1.278.202 1.295 1.35.025 1.576-1.502 1.398-1.502 1.398h-.81a.22.22 0 0 1-.219-.218v-.07a.22.22 0 0 1 .219-.22h.062l.014-1.726h-.068a.22.22 0 0 1-.22-.219v-.07a.22.22 0 0 1 .22-.219c.34 0 .673.007 1.01-.006zm1.725 0h.746c.121 0 .219.098.219.219v.088a.22.22 0 0 1-.219.219h-.08l.004 1.414c-.002.211.176.343.47.347.253.005.468-.132.471-.353v-1.404h-.074a.22.22 0 0 1-.219-.22v-.087a.22.22 0 0 1 .22-.219h.743a.22.22 0 0 1 .22.219v.088a.22.22 0 0 1-.22.218h-.08l-.004 1.29c0 .494-.24 1.015-1.062 1.015-.765 0-1.09-.457-1.076-1.021l-.006-1.287h-.053a.22.22 0 0 1-.219-.22v-.087a.22.22 0 0 1 .22-.219zm4.266.006h.816c.121 0 .219.098.219.219v.076a.22.22 0 0 1-.219.219h-.074l.017 2.16c-.014.053-.04.086-.123.105a1 1 0 0 1-.308.006c-.09-.03-.14-.089-.194-.15l-.96-1.617.01 1.22h.212a.22.22 0 0 1 .219.22v.075a.22.22 0 0 1-.219.22h-.816a.22.22 0 0 1-.219-.22v-.076c0-.12.098-.218.219-.218h.043l.01-1.74h-.036a.22.22 0 0 1-.218-.22v-.054c0-.122.097-.22.218-.22h.5c.122 0 .158.054.246.22l.852 1.515.012-1.226h-.207a.22.22 0 0 1-.22-.219v-.076a.22.22 0 0 1 .22-.219m11.25 0h.816c.121 0 .219.098.219.219v.076a.22.22 0 0 1-.219.219h-.074l.017 2.16c-.014.053-.04.086-.123.105a1 1 0 0 1-.308.006c-.09-.03-.14-.089-.194-.15l-.96-1.617.01 1.22h.212a.22.22 0 0 1 .219.22v.075a.22.22 0 0 1-.219.22h-.816a.22.22 0 0 1-.219-.22v-.076c0-.12.098-.218.219-.218h.043l.01-1.74h-.036a.22.22 0 0 1-.218-.22v-.054c0-.121.097-.219.218-.219h.5c.122 0 .158.053.247.219L21 19.279l.012-1.226h-.207a.22.22 0 0 1-.22-.219v-.076a.22.22 0 0 1 .22-.219m-3.768 1.377c0 .5.285.904.635.904s.634-.404.635-.904c0-.5-.284-.906-.635-.906-.39 0-.632.503-.635.906m-13.783-.869.006 1.707c.347-.026.924.007.922-.861-.003-.84-.673-.856-.928-.846"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/aiohttp.svg����������������������������������0000664�0000000�0000000�00000002527�14753064456�0025301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 12C.01 5.377 5.377.01 12 0c6.623.01 11.99 5.377 12 12-.01 6.623-5.377 11.99-12 12C5.377 23.99.01 18.623 0 12m12 11.004a10.95 10.95 0 0 0 6.81-2.367l-.303-.656a.746.746 0 0 1-.621-1.347l-.722-1.563a1.244 1.244 0 0 1-1.543-.734l-2.474.633v.012a.747.747 0 1 1-1.475-.178L8.2 15.31a1.24 1.24 0 0 1-1.278.607l-.748 2.59a.747.747 0 0 1-.17 1.388l.052 1.36A10.94 10.94 0 0 0 12 23.003zM5.75 21.05l-.044-1.142a.747.747 0 0 1 .18-1.482l.749-2.59a1.25 1.25 0 0 1-.759-1.147l-4.674-.566A11.04 11.04 0 0 0 5.75 21.05m13.3-.608a11.1 11.1 0 0 0 2.74-3.421l-3.826-.751a1.25 1.25 0 0 1-.528.672l.732 1.588a.747.747 0 0 1 .598 1.3zm2.878-3.698A10.9 10.9 0 0 0 23.004 12a10.95 10.95 0 0 0-2.492-6.965L19 5.551a.75.75 0 0 1-.726.922.75.75 0 0 1-.682-.442L14.449 7.1a2.49 2.49 0 0 1-1.015 2.737l2.857 4.901a1.245 1.245 0 0 1 1.732 1.236l3.904.77zm-8.846-.068 2.465-.63a1.24 1.24 0 0 1 .486-1.157l-2.856-4.9a2.48 2.48 0 0 1-2.444-.11l-2.77 3.892a1.24 1.24 0 0 1 .354 1.263l3.483 1.497a.746.746 0 0 1 1.282.143zm-7.17-2.284a1.246 1.246 0 0 1 1.81-.794l2.77-3.89a2.48 2.48 0 0 1-.93-1.94c0-.603.219-1.186.617-1.64L6.476 2.487a11.01 11.01 0 0 0-5.33 11.328l4.765.578zm8.44-7.572 3.174-1.083v-.01a.747.747 0 0 1 1.345-.448l1.433-.489A10.98 10.98 0 0 0 6.745 2.333l3.64 3.581a2.49 2.49 0 0 1 3.967.904l-.002.003z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/aiqfome.svg����������������������������������0000664�0000000�0000000�00000004145�14753064456�0025250�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.748 9.195c.607.277.992 1.139 1.04 2.342.033.797-.06 1.399-.303 1.925-.564 1.209-1.578 1.252-2.163.092-.25-.488-.358-1.025-.358-1.778.006-.803.092-1.274.347-1.795.363-.742.895-1.035 1.437-.786m9.768.076c.591.39.998 1.627.916 2.776-.092 1.371-.699 2.358-1.436 2.358-.407 0-.824-.358-1.095-.943-.45-.976-.423-2.613.065-3.567.363-.716 1.024-.981 1.55-.624M12.388.029c.223.032.255.06.38.292.184.336.298.456.64.678.314.2.314.211.206.726-.093.434-.039.862.162 1.247.293.58 1.111 1.187 1.86 1.377.281.076.395.081.737.022.222-.033.439-.049.482-.033.049.022.163.2.26.401.217.467.76 1.025 1.193 1.226.705.33 1.47.314 2.206-.05.206-.102.412-.167.461-.151.043.016.168.14.276.271.109.136.326.309.478.385.249.13.341.146.753.14.325-.005.488.012.526.06.157.19.59 2.201.775 3.584.163 1.241.179 4.017.027 5.23-.2 1.644-.498 3.053-.91 4.321-.293.9-.553 1.491-1.09 2.456C20.997 23.675 20.682 24 20.086 24a2 2 0 0 1-.493-.06c-.353-.119-.895-.536-1.73-1.328-.986-.932-1.404-1.257-1.924-1.512-.634-.315-1.258-.342-1.8-.076-.13.065-.498.358-.807.656-.65.618-.9.753-1.47.791-.704.044-1.1-.135-2.206-.992-.471-.363-.818-.526-1.203-.558-.466-.038-.808.081-1.561.537-.743.45-1.139.59-1.654.59-1.073 0-2.006-.66-2.965-2.097C1.205 18.34.424 16.09.17 13.863c-.098-.84-.114-2.537-.033-3.367.428-4.266 2.494-7.53 5.828-9.193C7.005.783 8.149.419 9.455.197c.976-.163 2.413-.244 2.933-.168m-2.239 1.48C7.64 1.758 5.2 3.113 3.731 5.065c-1.529 2.033-2.38 5.399-2.07 8.19.2 1.85.964 3.947 1.989 5.487.52.78.72.997 1.084 1.176.553.271 1.122.174 1.827-.309.629-.434 1.28-.623 1.978-.585.71.043.982.184 2.055 1.1.634.542 1.182.602 1.794.195.136-.092.44-.325.678-.52.764-.634 1.35-.857 2.277-.862 1.16-.006 1.913.428 2.981 1.73.868 1.05 1.204 1.268 1.68 1.089.781-.298 1.567-2.082 2.082-4.716.683-3.48.553-6.522-.352-8.37-.293-.608-.645-.998-.976-1.095-.206-.06-.27-.055-.704.086-.418.136-.564.158-1.106.158-.51 0-.689-.028-.992-.13-.58-.196-.84-.434-1.486-1.356-.298-.428-.558-.569-1.263-.71-1.3-.25-1.832-.477-2.293-.976-.434-.466-.71-1.09-.91-2.054-.055-.282-.152-.591-.212-.689-.222-.357-.759-.488-1.643-.395"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/airasia.svg����������������������������������0000664�0000000�0000000�00000000742�14753064456�0025237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.54 14.49c-1.278 0-2.264-.998-2.264-2.276 0-1.252.98-2.27 2.264-2.27 1.232 0 2.238 1.018 2.238 2.27 0 1.278-1.005 2.277-2.239 2.277zm3.074-7.854-.214.998c-.59-1.18-2.348-1.297-3.295-1.297-2.952 0-5.527 2.841-5.527 6.746 0 3.14 1.875 5.111 4.23 5.111 1.316 0 2.432-.304 3.353-1.4l-.24 1.102h3.711l1.692-11.26c-1.238-.001-2.482.01-3.71 0M12 0c6.63 0 12 5.37 12 12s-5.37 12-12 12S0 18.63 0 12 5.37 0 12 0"/></svg>������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/airbnb.svg�����������������������������������0000664�0000000�0000000�00000002462�14753064456�0025064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.001 18.275c-1.353-1.697-2.148-3.184-2.413-4.457-.263-1.027-.16-1.848.291-2.465.477-.71 1.188-1.056 2.121-1.056s1.643.345 2.12 1.063c.446.61.558 1.432.286 2.465-.291 1.298-1.085 2.785-2.412 4.458zm9.601 1.14c-.185 1.246-1.034 2.28-2.2 2.783-2.253.98-4.483-.583-6.392-2.704 3.157-3.951 3.74-7.028 2.385-9.018-.795-1.14-1.933-1.695-3.394-1.695-2.944 0-4.563 2.49-3.927 5.382.37 1.565 1.352 3.343 2.917 5.332-.98 1.085-1.91 1.856-2.732 2.333-.636.344-1.245.558-1.828.609-2.679.399-4.778-2.2-3.825-4.88.132-.345.395-.98.845-1.961l.025-.053c1.464-3.178 3.242-6.79 5.285-10.795l.053-.132.58-1.116c.45-.822.635-1.19 1.351-1.643.346-.21.77-.315 1.246-.315.954 0 1.698.558 2.016 1.007.158.239.345.557.582.953l.558 1.089.08.159c2.041 4.004 3.821 7.608 5.279 10.794l.026.025.533 1.22.318.764c.243.613.294 1.222.213 1.858zm1.22-2.39c-.186-.583-.505-1.271-.9-2.094v-.03c-1.889-4.006-3.642-7.608-5.307-10.844l-.111-.163C15.317 1.461 14.468 0 12.001 0c-2.44 0-3.476 1.695-4.535 3.898l-.081.16c-1.669 3.236-3.421 6.843-5.303 10.847v.053l-.559 1.22c-.21.504-.317.768-.345.847C-.172 20.74 2.611 24 5.98 24c.027 0 .132 0 .265-.027h.372c1.75-.213 3.554-1.325 5.384-3.317 1.829 1.989 3.635 3.104 5.382 3.317h.372c.133.027.239.027.265.027 3.37.003 6.152-3.261 4.802-6.975"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/airbrake.svg���������������������������������0000664�0000000�0000000�00000000444�14753064456�0025405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.815.576 24 23.424h-6.072L10.679.576Zm-6.456 0 1.872 5.929-2.447 7.751c1.038.183 2.09.28 3.144.288.576 0 1.175-.048 1.824-.096l1.151 3.912a29 29 0 0 1-2.951.169 26.6 26.6 0 0 1-4.32-.361L5.88 23.424H0L8.181.576Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/airbus.svg�����������������������������������0000664�0000000�0000000�00000002204�14753064456�0025106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.067 11.296c0-.815-.53-1.433-1.63-1.433H7.226v4.262h1.037v-3.336h1.174c.432 0 .593.248.593.532 0 .296-.16.53-.593.53h-1l1.432 2.274h1.186s-.976-1.532-.963-1.532c.592-.136.975-.556.975-1.297m-5.57-1.433h1.037v4.262H5.497Zm-3.323 0L0 14.137h1.173l.346-.716h1.754l-.432-.902h-.877l.642-1.31h.013l1.457 2.928h1.198L3.1 9.863Zm12.685 2.05c.334-.185.507-.469.507-.901 0-.692-.519-1.149-1.371-1.149H11.56v4.262h2.52c.877 0 1.458-.47 1.458-1.199a1.02 1.02 0 0 0-.68-1.013m-2.26-1.148h1.383c.21 0 .37.16.37.37s-.16.37-.37.37H12.6zm1.42 2.47H12.6v-.864h1.42a.433.433 0 1 1 0 .864m4.805-.988c0 .642-.296 1-.889 1-.58 0-.877-.358-.877-1V9.863h-1.062v2.31c0 1.322.692 2.05 1.951 2.05s1.952-.728 1.952-2.05v-2.31h-1.062v2.384zm3.842-.68c-.988-.234-1.198-.259-1.198-.543 0-.222.247-.32.667-.32.556 0 1.136.135 1.47.345l.333-.865c-.445-.247-1.062-.407-1.803-.407-1.1 0-1.717.543-1.717 1.284 0 .79.457 1.112 1.52 1.334.827.186 1 .297 1 .531 0 .247-.223.359-.68.359-.654 0-1.235-.161-1.704-.42l-.321.914c.518.271 1.284.444 2.05.444 1.075 0 1.717-.494 1.717-1.334.012-.679-.42-1.111-1.334-1.321"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/airbyte.svg����������������������������������0000664�0000000�0000000�00000001735�14753064456�0025270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.308 2.914C10.876.027 15.128-.819 18.624.848c4.644 2.21 6.339 7.846 3.809 12.194l-5.687 9.77a2.4 2.4 0 0 1-1.455 1.107 2.42 2.42 0 0 1-1.818-.236l6.887-11.832c1.835-3.155.608-7.243-2.758-8.854-2.528-1.208-5.613-.604-7.482 1.473a6.3 6.3 0 0 0-1.628 4.145 6.32 6.32 0 0 0 2.103 4.773l-4.021 6.919c-.157.273-.365.51-.617.699a2.4 2.4 0 0 1-.838.411 2.416 2.416 0 0 1-1.815-.237l4.364-7.513A8.6 8.6 0 0 1 6.34 10.7l-2.675 4.612a2.403 2.403 0 0 1-3.271.87L7.31 4.284c.29-.487.622-.948.998-1.37m7.983 3.784c1.666.956 2.242 3.081 1.277 4.734L10.936 22.81a2.4 2.4 0 0 1-1.455 1.109 2.4 2.4 0 0 1-1.816-.237l6.159-10.596a3.4 3.4 0 0 1-1.365-.61 3.4 3.4 0 0 1-.981-1.122 3.44 3.44 0 0 1-.194-2.898 3.466 3.466 0 0 1 2.097-2.026 3.498 3.498 0 0 1 2.91.268m-2.412 2.139a1.1 1.1 0 0 0-.426.933 1.09 1.09 0 0 0 .739.959 1.1 1.1 0 0 0 1.176-.314 1.078 1.078 0 0 0 .158-1.196 1.09 1.09 0 0 0-.839-.596 1.08 1.08 0 0 0-.808.214"/></svg>�����������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/aircall.svg����������������������������������0000664�0000000�0000000�00000001741�14753064456�0025235�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.451 5.906a6.98 6.98 0 0 0-5.375-5.39C16.727.204 14.508 0 12 0S7.273.204 5.924.516a6.98 6.98 0 0 0-5.375 5.39C.237 7.26.034 9.485.034 12s.203 4.74.515 6.094a6.98 6.98 0 0 0 5.375 5.39C7.273 23.796 9.492 24 12 24s4.727-.204 6.076-.516a6.98 6.98 0 0 0 5.375-5.39c.311-1.354.515-3.578.515-6.094 0-2.515-.203-4.74-.515-6.094m-5.873 12.396-.003.001c-.428.152-1.165.283-2.102.377l-.147.014a.44.44 0 0 1-.45-.271 1.82 1.82 0 0 0-1.296-1.074c-.351-.081-.928-.134-1.58-.134s-1.229.053-1.58.134a1.82 1.82 0 0 0-1.291 1.062.47.47 0 0 1-.471.281l-.129-.012c-.938-.094-1.676-.224-2.105-.377l-.003-.001a.76.76 0 0 1-.492-.713q.001-.049.005-.098c.073-.979.666-3.272 1.552-5.89C8.5 8.609 9.559 6.187 10.037 5.714a1 1 0 0 1 .404-.26l.004-.002c.314-.106.892-.178 1.554-.178.663 0 1.241.071 1.554.178l.005.002a1 1 0 0 1 .405.26c.478.472 1.537 2.895 2.549 5.887.886 2.617 1.479 4.91 1.552 5.89q.004.049.005.098a.76.76 0 0 1-.491.713"/></svg>�������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/aircanada.svg��������������������������������0000664�0000000�0000000�00000002504�14753064456�0025527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.394 16.958c0-.789.338-.902 1.127-.451a54 54 0 0 0 2.704 1.465c0-.45.451-.789 1.24-.564s1.577.338 1.577.338-.45-1.014-.676-1.464c-.338-.789 0-1.24.338-1.352 0 0-.45-.338-.789-.564-.676-.45-.563-1.014.113-1.24.902-.45 2.141-.9 2.141-.9-.338-.226-.789-.79-.338-1.578.45-.676 1.24-1.69 1.24-1.69H18.93c-.79 0-1.015-.676-1.015-1.127 0 0-1.239.901-2.14 1.465-.79.563-1.465 0-1.352-.902a37 37 0 0 0 .338-2.93c-.451.451-1.24.339-1.69-.337-.564-1.127-1.127-2.48-1.127-2.48S11.38 4 10.817 5.128c-.338.676-1.127.788-1.578.45a37 37 0 0 0 .338 2.93c.113.789-.563 1.352-1.352.789-.901-.564-2.253-1.465-2.253-1.465 0 .45-.226 1.014-1.014 1.127H2.817s.789 1.014 1.24 1.69 0 1.352-.339 1.577c0 0 1.127.564 2.141.902.676.338.902.788.113 1.24-.226.225-.789.563-.789.563.45.112.789.563.45 1.352-.225.45-.675 1.464-.675 1.464s.788-.225 1.577-.338c.789-.225 1.127.226 1.24.564 0 0 1.352-.789 2.704-1.465.676-.45 1.127-.225 1.127.45v1.916c0 1.127-.226 2.254-.564 2.93-5.07-.564-9.352-4.62-9.352-10.028 0-5.521 4.62-10.029 10.366-10.029 5.747 0 10.367 4.508 10.367 10.029 0 5.183-4.057 9.464-9.24 10.028v1.352C19.268 22.592 24 17.746 24 11.775 24 5.352 18.592.282 11.944.282 5.408.282 0 5.352 0 11.662c0 5.521 4.169 10.14 9.69 11.155.902.225 1.465.338 2.028.901.564-1.126.676-3.38.676-4.62Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/airchina.svg���������������������������������0000664�0000000�0000000�00000002266�14753064456�0025407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.75 23.377c3.431.96 7.361-1.449 7.361-5.442v-4.713c0-1.377 1.147-3.19 3.212-3.19 2.17 0 3.201 1.949 3.201 3.19 0 .792-.313 2.377-1.804 2.377-1.188 0-1.95-1.21-1.574-2.2-.083.333.093.657.449.657.343 0 .532-.324.468-.73 0-.083-.104-.834-.939-.834-.698 0-.927.636-.927.948v4.193c0 4.483-4.88 7.798-9.447 5.744M3.508 19.99s2.303 2.336 5.338.573c2.012-1.167 2.075-3.598 2.075-3.598v-5.431s-.084-2.722 2.366-4.672c1.711-1.345 3.296-1.252 4.39-1.387 2.806-.344 4.057-2.116 4.057-2.116.031.302-.272 3.555-3.785 4.483-.72.188-4.578-.187-4.578 4.275v5.38c0 1.126-.27 3.118-2.377 4.526-2.169 1.439-5.683 1.21-7.486-2.033M1.047 8.759H3.85c0-.5.428-1.471 1.523-1.471.427 0 .5.095 1.052-.02.72-.24 1.043-.657 1.19-.99 0 0 .28 1.187-.845 1.813-.637.345-1.616.074-1.616.074s-.792-.115-.897.593c.449 0 1.147.449 1.147 1.22v6.528c0 .469.375.96.949.96a.95.95 0 0 0 .949-.96v-4.578c0-6.757 5.255-9.56 8.31-9.79 2.533-.188 4.244.04 7.34-2.138 0 0-.97 3.796-5.358 4.703-.804.166-3.224-.115-5.497 2.252-1.803 1.877-1.99 3.608-1.99 5.891v4.035c0 1.762-1.419 3.545-3.587 3.545-2.096 0-3.566-1.668-3.566-3.545v-6.85c0-.563-.406-1.074-1.054-1.074h-.854Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/airfrance.svg��������������������������������0000664�0000000�0000000�00000000273�14753064456�0025557�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.776 3.9 5.184 16.332C4.051 17.969 2.208 19.548 0 19.721v.379h9.552c2.544 0 4.397-1.656 5.616-3.48L24 3.9Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/airindia.svg���������������������������������0000664�0000000�0000000�00000001220�14753064456�0025376�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.483.001C6.247.043 4.102 1.018 2.092 2.898c.141-.065-.545.44-1.637 1.676.013.006-.009.017-.013.025 0 0 .014.037.14-.064.75-.61 3.198-2.893 9.86.101a277 277 0 0 0 6.42 2.78s1.027 3.236 2.207 6.637c2.398 6.89-.087 9.135-.76 9.82-.102.114-.064.127-.064.127a16.8 16.8 0 0 0 2.385-2.08c1.624-1.637 2.588-3.428 2.855-5.344.254-1.878-.203-3.5-.584-4.566-.266-.75-.481-1.346-.672-1.88-.862-2.423-1.028-2.867-1.625-5.29l-.203-.8c-.023-.003.009-.016.014-.025l-.787-.254c-2.386-.774-2.804-.964-5.165-2.017-.52-.229-1.103-.496-1.826-.813-.85-.368-2.146-.875-3.707-.926a8 8 0 0 0-.447-.004"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/airplayaudio.svg�����������������������������0000664�0000000�0000000�00000002454�14753064456�0026313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.908.183a12 12 0 0 0-8.044 3.172c-4.882 4.475-5.166 12.08-.692 16.962.204.244.448.447.692.692a.315.315 0 0 0 .408-.04l.53-.61a.32.32 0 0 0 0-.448C.53 15.965.243 9.253 4.23 4.982S14.889.427 19.16 4.414s4.555 10.655.568 14.927c-.203.203-.365.407-.568.57a.32.32 0 0 0 0 .447l.53.611a.37.37 0 0 0 .446.04c4.882-4.516 5.166-12.081.692-16.962a11.98 11.98 0 0 0-8.92-3.864m.387 3.518A8.6 8.6 0 0 0 6.143 6c-3.458 3.213-3.66 8.623-.447 12.08.122.123.243.285.406.407a.32.32 0 0 0 .447 0l.53-.61a.32.32 0 0 0 0-.446A7.26 7.26 0 0 1 4.8 12.183c0-3.946 3.212-7.16 7.158-7.16s7.16 3.253 7.16 7.199a7.2 7.2 0 0 1-2.238 5.209.32.32 0 0 0 0 .447l.529.61c.122.121.325.162.447.04a8.6 8.6 0 0 0 .408-12.122 8.5 8.5 0 0 0-5.97-2.705zm-.266 3.316A5.2 5.2 0 0 0 8.34 8.48c-2.075 1.993-2.115 5.247-.122 7.322l.121.123a.32.32 0 0 0 .447 0l.53-.611a.32.32 0 0 0 0-.448 3.81 3.81 0 0 1-1.098-2.683 3.73 3.73 0 0 1 3.742-3.742 3.73 3.73 0 0 1 3.742 3.742c0 1.017-.406 1.951-1.139 2.683a.32.32 0 0 0 0 .448l.53.61a.32.32 0 0 0 .447 0 5.19 5.19 0 0 0 .123-7.321 5.13 5.13 0 0 0-3.633-1.586zm.006 7.744a.6.6 0 0 0-.402.146l-.04.041-7.159 8.055a.506.506 0 0 0 .041.69.44.44 0 0 0 .283.124h14.36a.495.495 0 0 0 .489-.488.46.46 0 0 0-.121-.326l-7.08-8.055a.5.5 0 0 0-.37-.187z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/airplayvideo.svg�����������������������������0000664�0000000�0000000�00000001774�14753064456�0026324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.412 1.32c-1.178 0-1.584.122-2.031.366A2.45 2.45 0 0 0 .365 2.7C.122 3.148 0 3.553 0 4.771v9.137c0 1.178.122 1.585.365 2.031.244.447.57.772 1.016 1.016.406.244.813.365 2.031.365h2.72l1.138-1.34H3.006a1.8 1.8 0 0 1-1.016-.164c-.203-.08-.366-.283-.488-.486-.122-.325-.203-.65-.162-1.016V4.406c-.04-.325 0-.69.162-1.015.081-.203.285-.365.488-.487.325-.122.65-.204 1.016-.164h17.867c.325-.04.69.002 1.016.164.203.082.364.284.486.487.122.324.203.65.162 1.015v9.95c.04.324 0 .69-.162 1.015-.081.203-.283.365-.486.486-.325.122-.65.203-1.016.163h-4.264l1.137 1.341 2.803-.04c1.218 0 1.623-.122 2.07-.366a2.45 2.45 0 0 0 1.016-1.016c.243-.406.365-.813.365-2.03V4.77c0-1.218-.122-1.623-.365-2.07a2.45 2.45 0 0 0-1.016-1.015c-.447-.244-.852-.366-2.07-.366H3.412zm8.451 12.198a.5.5 0 0 0-.37.187l-7.106 8.162a.47.47 0 0 0-.123.326.47.47 0 0 0 .488.487h14.293c.122 0 .245-.04.326-.121.203-.163.204-.489.041-.692l-7.107-8.162-.041-.04a.6.6 0 0 0-.4-.147z"/></svg>����mkdocs-material-9.6.4/material/templates/.icons/simple/airserbia.svg��������������������������������0000664�0000000�0000000�00000005744�14753064456�0025576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.667 3.754-1.148.002-.455.169s-.25.062-.416.482l-.343 1.079s-.094.358-.118.903c-.018.546-.008.019-.008.019s-.026.81-.119 1.055l-.184.643c-.27.634-.546.945-.551.955l-1.032 1.193v.005l-.292.327-.287-.327.006-.006-.639-.725-.086-.104h-.004l-.32-.362c-.003-.01-.294-.343-.566-1.01l-.172-.588c-.093-.245-.12-1.055-.12-1.055s.011.527-.01-.019a4.6 4.6 0 0 0-.113-.903l-.346-1.079c-.169-.42-.415-.483-.415-.483l-.453-.168-1.15-.002-.184.268c-.205.193-.258.116-.531.158-.217.03-.294.043-.473.181-.231.188-.264.434-.264.434v.465l.014.319.262-.325c.443-.018 1.06.252 1.06.252l-.074.182c-.064.144-.063.268-.063.268s-.032.526-.095.84c-.018.092-.03.245-.085.398-.091.268-.564.793-.67.913l-.594.638c-.454-.366-1.24-.853-2.244-.891C2.312 7.81 1.275 8.27.3 9.223l-.3.298.225.352c.034.055.833 1.292 2.274 1.57.93.181 1.946-.102 2.908-.791l-.703-.793c-.713.515-1.36.686-1.998.565-.598-.114-1.057-.487-1.325-.773.649-.526 1.303-.786 1.95-.76 1.137.041 1.942.932 1.947.94l1.685 1.948.69-.797-1.292-1.49 1.512-1.881.614-.768c.144.761.834 2.071 1.128 2.527l-1.677 1.948-.67.78-.008.01-.006.01-.713.826c-.373.394-1.675 1.679-3.203 2.497 0 0 .48.329 1.107.323.377-.008.813-.14 1.225-.533.17-.158.42-.385.667-.615 0 0-.114.274.155.781.212.386.573.62 1.073.636.777.03 1.333-.375 1.718-.845l-.554-.61s-.5.714-1.114.278c-.225-.212-.206-.57-.206-.57s-.01-.12.109-.373c.417-.705 1.56-2.19 2.236-3.058l.521-.66.747.858.002-.004.291.338-.002.006.02.018-1.303 1.61.59.667L12 12.182v.005l.004-.005 1.685 1.871.7.787.247.26.175.192c.382.42.914.767 1.627.741.5-.017.864-.25 1.075-.636.271-.506.156-.781.156-.781.247.23.493.457.665.615 1.107 1.05 2.331.21 2.331.21-1.523-.818-2.825-2.103-3.195-2.496l-.408-.47-.852.95c.41.565.394.861.394.861s.011.36-.212.571c-.607.441-1.149-.318-1.149-.318l-1.692-2.052-.005-.012-.873-1.07.017-.017.644-.742h-.004l.39-.45.173.214 1.105 1.492.778-.919-1.267-1.475-.001.003-.122-.14c.296-.457.983-1.767 1.126-2.528l.617.768 1.51 1.881-.31.358-1.268 1.468-1.1 1.26-.325.384.688.794.54-.632v.003l.064-.068.82-.947.48-.556 1.495-1.726c.008-.007.805-.898 1.947-.939.652-.026 1.302.234 1.949.76-.269.286-.724.659-1.322.773-.64.12-1.294-.056-2.008-.566l-.686.788c.962.69 1.966.978 2.902.798 1.435-.28 2.233-1.516 2.269-1.57L24 9.52l-.297-.298c-.978-.952-2.017-1.413-3.088-1.368l.001-.001c-.851.032-1.542.384-2.012.716l-.052.037c-.004.001-.012.012-.013.012-.062.046-.124.085-.173.126l-.743-.8c-.176-.213-.453-.557-.521-.75-.057-.154-.071-.307-.084-.399a8 8 0 0 1-.099-.84s0-.124-.058-.268l-.073-.182s.618-.27 1.054-.252l.27.325.004-.319v-.465s-.028-.247-.265-.434c-.178-.138-.256-.15-.47-.18-.275-.042-.32.034-.525-.159zm-7.648 8.8-.633.84.718.836.84.992 1.074 1.239.692-.794-1.37-1.573-.684-.798zm4.374 1.841-.966 1.12-1.115 1.284c-1.118 1.04-1.204 1.43-1.204 1.43-.467 1.174.15 2.017.15 2.017.089-.733.713-1.444.935-1.72l.433-.496v-.002l1.534-1.775.91-1.046zm-.41 2.709-.706.83.08.094-.002.002.43.496c.225.276.845.987.937 1.72 0 0 .613-.843.15-2.018 0 0-.07-.313-.888-1.124z"/></svg>����������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/airtable.svg���������������������������������0000664�0000000�0000000�00000001127�14753064456�0025407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.992 1.966c-.434 0-.87.086-1.28.257L1.779 5.917c-.503.208-.49.908.012 1.116l8.982 3.558a3.27 3.27 0 0 0 2.454 0l8.982-3.558c.503-.196.503-.908.012-1.116l-8.957-3.694a3.3 3.3 0 0 0-1.272-.257M23.4 8.056a.6.6 0 0 0-.222.045l-10.012 3.877a.61.61 0 0 0-.38.564v8.896a.6.6 0 0 0 .821.552L23.62 18.1a.58.58 0 0 0 .38-.551V8.653a.6.6 0 0 0-.6-.596zM.676 8.095a.64.64 0 0 0-.48.19C.086 8.396 0 8.53 0 8.69v8.355c0 .442.515.737.908.54l6.27-3.006.307-.147 2.969-1.436c.466-.22.43-.908-.061-1.092L.883 8.138a.6.6 0 0 0-.207-.044z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/airtel.svg�����������������������������������0000664�0000000�0000000�00000002021�14753064456�0025076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.137 23.862c.79 0 1.708-.19 2.751-.554 1.55-.538 2.784-1.281 3.986-2.009l.316-.205a30 30 0 0 0 3.764-2.72 16.57 16.57 0 0 0 5.457-7.529c.395-1.138.949-3.384.268-5.487a7.12 7.12 0 0 0-2.862-3.749c-.158-.126-1.898-1.47-5.203-1.47-3.005 0-6.31 1.107-9.806 3.32l-.11.08-.317.205a20 20 0 0 0-2.309 1.693C1.585 6.813-.091 9.106.004 11.067c.031.79.427 1.534 1.075 2.008a3.47 3.47 0 0 0 2.214.68c1.803 0 3.765-.948 5.109-1.74l.253-.157.696-.443.237-.158c1.898-1.234 3.875-2.515 6.105-3.258a5.3 5.3 0 0 1 1.55-.285 3 3 0 0 1 .664.08 2.11 2.11 0 0 1 1.47 1.106c.523 1.012.396 2.61-.316 4.08a17.9 17.9 0 0 1-4.887 5.836 19.5 19.5 0 0 1-3.194 2.215l-.095.031a9.6 9.6 0 0 1-1.471.696l-.08.032-.41.158c-2.23.57-.87-1.329-.87-1.329.474-.537.98-1.028 1.518-1.502.316-.269.633-.554.933-.854l.064-.063c.395-.38.933-.902.901-1.645-.047-.98-1.075-1.582-2.056-1.613h-.063c-.95 0-1.819.522-2.404.98a7.3 7.3 0 0 0-1.598 1.74c-.6.901-1.85 3.226-.632 5.077.49.743 1.313 1.123 2.42 1.123"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/airtransat.svg�������������������������������0000664�0000000�0000000�00000001303�14753064456�0025770�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.611 0c-2.931.916-5.68 3.434-8.474 6.137C5.564 6.32 1.672 7.74 1.26 7.969c4.122 2.152 5.129 3.115 5.129 3.115s-1.374 3.938-1.649 6.457c.916-2.244 2.702-5.312 3.801-6.777-1.511-1.237-4.35-2.565-4.35-2.565s2.244-.962 6.733-1.191c0 0 1.878-3.619 6.687-7.008m-2.244 3.344c-.412.87-1.146 2.793-1.283 4.213 3.16.229 5.312.963 5.312.963s-3.205 1.19-4.992 2.609c.32.779 1.055 3.07 1.467 4.855-.687-.64-2.748-2.336-4.26-3.252C9.596 13.511 4.1 18.962 1.031 24c1.328-1.374 5.267-5.817 10.58-9.023 1.1.64 6.137 3.939 6.137 3.939s-1.1-5.862-1.512-7.236c1.558-1.054 4.214-2.52 6.733-3.3-3.527-1.419-7.832-1.784-7.832-1.784s-.09-1.1.23-3.252"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ajv.svg��������������������������������������0000664�0000000�0000000�00000000725�14753064456�0024407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.705 4.718a980 980 0 0 1 1.211 3.19l2.962 7.886c.198.526-.054 1.17-.583 1.366-.311.116-.655.06-.926-.11l-1.454 1.418c.81.775 1.985 1.034 3.116.614 1.602-.593 2.387-2.416 1.79-4.008L10.984 4.718zm4.153.013 4.57 11.72 1.924.008L24 4.783l-2.404-.011-3.193 8.832-3.141-8.861zm-8.309.013L0 16.421l2.354.01 1.092-2.91 4.112.019 1.08 2.92 2.355.012L6.572 4.754zm.999 2.592L7.15 11.94l-3.316-.016z"/></svg>�������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/akamai.svg�����������������������������������0000664�0000000�0000000�00000001204�14753064456�0025043�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.055 0C6.384 0 .96 5.38.96 12.008S6.37 24 13.055 24c.617 0 .645-.357.086-.53-4.935-1.506-8.535-6.068-8.535-11.462 0-5.466 3.672-10.07 8.693-11.52.516-.143.373-.488-.244-.488m2.324 1.822a9.52 9.52 0 0 0-9.525 9.526c0 1.219.228 2.381.644 3.443.172.459.445.458.402.014a11 11 0 0 1-.056-.975 9.52 9.52 0 0 1 9.525-9.525c4.978 0 6.47 2.223 6.656 2.08.201-.158-1.807-4.563-7.646-4.563m.469 4.07a8.73 8.73 0 0 0-5.104 1.856c-.258.2-.157.328.145.2 2.467-1.077 5.58-1.105 8.637-.044 2.05.718 3.24 1.737 3.341 1.694.158-.072-1.191-2.223-3.644-3.141a8.8 8.8 0 0 0-3.375-.564"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/akasaair.svg���������������������������������0000664�0000000�0000000�00000001026�14753064456�0025376�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.732 1.8c-2.297 0-3.271.731-4.165 2.383l-.63 1.116a3.2 3.2 0 0 0-.529 1.482c.026.43.166.845.407 1.202l5.002 8.944c1.789 3.197 4 4.986 8.764 4.986.407 0 .508-.244.344-.53l-6.488-11.59c-1.297-2.34-1.747-4.027-1.747-5.245a3.53 3.53 0 0 1 .814-2.425c.122-.137.101-.322-.142-.322Zm-6.92 7.056c-.122 0-.2.084-.323.285L.08 21.71a.4.4 0 0 0-.079.244c0 .244.386.245.487.245 5.335 0 9.04-3.256 9.04-7.972A10.06 10.06 0 0 0 8.12 9.121c-.1-.158-.185-.265-.307-.265Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/akaunting.svg��������������������������������0000664�0000000�0000000�00000000674�14753064456�0025613�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.146 18.673a7.35 7.35 0 0 1-3.148.704 7.34 7.34 0 0 1-4.538-1.561l-3.013 3.511A11.96 11.96 0 0 0 11.998 24c1.913 0 3.721-.448 5.326-1.244zm4.229 2.792V24h4.623V12c0-6.627-5.372-12-12-12C5.473 0 .165 5.208.002 11.693h4.626a7.377 7.377 0 1 1 11.034 6.711l2.177 4.081a12 12 0 0 0 1.536-1.02M7.016 17.44a7.35 7.35 0 0 1-2.389-5.165H.002a11.97 11.97 0 0 0 4.002 8.675z"/></svg>��������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/akiflow.svg����������������������������������0000664�0000000�0000000�00000000571�14753064456�0025262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.425 5.2 5.457 18h5.795l.948-2.99.947 2.99h5.795L14.974 5.2Zm.836.8h4.124l3.472 11.2h-4.124l-1.152-3.632Zm-.543.957 2.063 6.728-1.113 3.515H6.543ZM12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m0 .8C18.186.8 23.2 5.813 23.2 12S18.186 23.2 12 23.2.8 18.186.8 12 5.814.8 12 .8"/></svg>���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/alacritty.svg��������������������������������0000664�0000000�0000000�00000000336�14753064456�0025621�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.065 0-8.57 21.269H5.09L12 5.025l6.91 16.244h3.594L13.934 0zM12 9.935 9.702 15.5c1.475 4.54 1.475 4.54 2.298 8.5.823-3.96.823-3.96 2.297-8.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/alamy.svg������������������������������������0000664�0000000�0000000�00000001155�14753064456�0024730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12m.058-18.533c2.515 0 3.482 1.404 3.482 3.959v7.04c0 .78 0 1.21.193 1.872H13.47c-.406-.331-.503-1.072-.503-1.423-.464 1.111-1.102 1.618-2.224 1.618-1.354 0-2.476-1.014-2.476-3.257 0-2.626 1.618-3.566 2.956-4.343.937-.545 1.736-1.009 1.744-1.917 0-.858-.29-1.15-.909-1.15-.696 0-.987.468-.987 1.56v.429H8.5v-.37c0-2.614 1.006-4.018 3.559-4.018Zm-.213 10.667c.6 0 .948-.526 1.122-.8v-3.393c-.209.345-.544.621-.887.904-.608.5-1.24 1.023-1.24 1.983 0 .838.367 1.306 1.005 1.306"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/albertheijn.svg������������������������������0000664�0000000�0000000�00000001433�14753064456�0026113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.652 0c-.354.002-.714.09-1.047.276L4.475 5.924c-.456.26-.881.716-1.075 1.362l-2.718 9.44c-.326 1.13.311 2.314 1.423 2.646l15.968 4.542c1.111.33 2.277-.318 2.603-1.448l2.641-9.258c.172-.543.076-1.213-.192-1.737L17.59 1.162A2.19 2.19 0 0 0 15.652 0M12.97 6.373s-.008 4.23 0 4.225c.899-1.295 1.712-2.577 3.234-2.577 1.684-.001 2.597 1.409 2.602 2.595l-.007 7.596h-1.891l-.009-7.19c0-.988-.793-.986-.804-.986-.64 0-1.816 1.605-3.125 3.386v4.793l-1.913.002-.002-2.219S9.79 18.217 7.897 18.22c-2.148 0-2.877-1.476-2.882-5.015-.004-3.37.474-5.175 2.777-5.177 1.751-.001 3.256 2.55 3.256 2.55V8.963zm-5.15 3.658c-.88 0-.957.93-.954 3.17.003 2.242.124 3.115.95 3.115 1.124-.001 2.895-2.86 2.895-2.86S8.955 10.03 7.82 10.03z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/alby.svg�������������������������������������0000664�0000000�0000000�00000002054�14753064456�0024553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.08 9.322c-3.77 0-6.96 2.33-8.05 5.57-.36 1.04.25 2.13 1.27 2.55 2.15.87 4.46 1.32 6.78 1.32s4.62-.45 6.78-1.32c1.02-.42 1.63-1.51 1.27-2.55-1.09-3.24-4.29-5.57-8.05-5.57m-2.92 6.61c-1.09 0-1.97-.7-1.97-1.57s.89-1.57 1.97-1.57 1.97.7 1.97 1.57-.88 1.57-1.97 1.57m5.63 0c-1.08 0-1.96-.7-1.96-1.57s.87-1.57 1.96-1.57 1.97.7 1.97 1.57-.88 1.57-1.97 1.57m4.79-8.14.91-.91c.75.42 1.67.4 2.4-.06 1.11-.69 1.44-2.14.75-3.25a2.355 2.355 0 0 0-3.25-.75 2.36 2.36 0 0 0-.76 3.25l-.92.92c-1.87-1.53-4.15-2.44-6.63-2.44s-4.81.93-6.7 2.5l-1-1c.45-.74.46-1.66.03-2.41a2.357 2.357 0 0 0-3.22-.87 2.36 2.36 0 0 0-.88 3.22 2.37 2.37 0 0 0 3.23.88l.98.98c-1.93 1.94-3.3 4.61-3.83 7.6-.28 1.66.57 3.29 2.09 3.99 2.92 1.39 6.11 2.11 9.34 2.1 3.2 0 6.36-.7 9.25-2.06a3.7 3.7 0 0 0 2.16-3.37c0-.2-.01-.41-.05-.62-.54-3.04-1.93-5.75-3.9-7.7m1.29 10.63a20.4 20.4 0 0 1-8.75 1.95c-3.06.01-6.08-.67-8.83-1.99a2.504 2.504 0 0 1-1.44-2.7c1.03-5.76 5.28-9.94 10.23-9.94s9.22 4.2 10.24 9.97c.19 1.12-.4 2.22-1.45 2.71"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/alchemy.svg����������������������������������0000664�0000000�0000000�00000001674�14753064456�0025255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.006 1.764a.44.44 0 0 0-.215.054.4.4 0 0 0-.156.152L9.36 5.835a.8.8 0 0 0-.113.416c0 .146.039.29.113.416l4.951 8.412a.84.84 0 0 0 .313.305.86.86 0 0 0 .424.111h4.549a.44.44 0 0 0 .213-.056.4.4 0 0 0 .154-.153.4.4 0 0 0 .059-.207.4.4 0 0 0-.057-.209L12.37 1.975a.4.4 0 0 0-.154-.153.43.43 0 0 0-.211-.058M8.02 8.506a.43.43 0 0 0-.211.056.4.4 0 0 0-.157.153L.058 21.61a.41.41 0 0 0-.002.418.4.4 0 0 0 .157.152.43.43 0 0 0 .213.057h4.55a.86.86 0 0 0 .424-.112.84.84 0 0 0 .31-.305l4.954-8.412a.8.8 0 0 0 .113-.416.8.8 0 0 0-.113-.418l-2.275-3.86a.4.4 0 0 0-.157-.152.44.44 0 0 0-.213-.056m3.011 8.824a.87.87 0 0 0-.426.112.84.84 0 0 0-.31.304L8.02 21.608a.4.4 0 0 0-.057.209.4.4 0 0 0 .057.207.4.4 0 0 0 .154.154.43.43 0 0 0 .213.055h15.19a.43.43 0 0 0 .212-.055.4.4 0 0 0 .155-.154.4.4 0 0 0 .056-.207.4.4 0 0 0-.056-.21l-2.274-3.86a.84.84 0 0 0-.31-.305.86.86 0 0 0-.424-.112z"/></svg>��������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/aldinord.svg���������������������������������0000664�0000000�0000000�00000003110�14753064456�0025412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.812 2.057 6.086 13.73c-.349.523-.581.89-.592 1.461-.01.541.128 1.027.395 1.495h1.46a2.1 2.1 0 0 1-.546-1.531c.007-.125.03-.28.067-.405h9.833a2 2 0 0 0-.297-.583H7.145a11 11 0 0 1 .379-.604l.507-.76h7.47l-.408-.614H8.44l6.702-10.132zm-3.502 0L3.092 12.963c-.549.823-.806 1.304-.806 2.068 0 .871.232 1.255.409 1.655h1.153a4 4 0 0 1-.096-.232 3.3 3.3 0 0 1-.233-1.23c.02-.811.302-1.356.772-2.058l7.381-11.109zm6.34 14.629c.338-.352.58-.927.547-1.532-.028-.517-.343-1.026-.72-1.591l-4.234-6.35.648-.974 4.993 7.491c.348.523.58.89.592 1.461a2.83 2.83 0 0 1-.395 1.495h-1.43zm3.508 0c.041-.09.062-.144.094-.23.123-.324.27-.768.26-1.231-.02-.812-.302-1.357-.773-2.059l-5.745-8.58.665-.996 6.25 9.373c.548.824.805 1.303.805 2.068 0 .871-.232 1.255-.409 1.655zm-17.53.457v4.8h18.743v-4.8zm3.588.571h1.672l1.873 3.658H8.104l-.176-.385H6.177L6 21.372H4.343zm3.761 0h1.67v2.601h1.435v1.057H9.977zm3.422 0h2.43c1.002 0 1.814.82 1.814 1.83a1.82 1.82 0 0 1-1.815 1.828h-2.43zm4.614 0h1.644v3.658h-1.644zm-2.974 1.034v1.59h.352c.41 0 .743-.356.743-.795s-.332-.795-.743-.795zm-7.996.465-.374.811h.767zm.84-6.189h7.767l.614.922H7.276c.088-.145.607-.922.607-.922m4.035-10.967L4.488 13.24c-.465.695-.731 1.214-.75 1.99-.01.452.128 1.013.337 1.457h1.576a2.94 2.94 0 0 1-.376-1.497c.012-.615.266-1.01.614-1.531l7.678-11.6zm6.431 14.629a2.94 2.94 0 0 0 .376-1.497c-.012-.615-.266-1.01-.613-1.532l-5.079-7.625.827-1.247 5.652 8.454c.465.695.732 1.214.75 1.99.011.452-.128 1.013-.338 1.457H18.35zM23.429 0H.57v24h22.86zm-.915 23.086H1.486V.914h21.028z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/aldisud.svg����������������������������������0000664�0000000�0000000�00000005311�14753064456�0025250�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.164 10.92c-.243-.558-.558-.655-1.044-.655h-4.368l-.412 1.189a.7.7 0 0 1-.097.243h5.533c.315 0 .582.048.8.315h.049c0 .024-.437-1.02-.461-1.092m-.898-2.135c-.243-.51-.534-.583-1.02-.583h-2.79l-.485 1.432h3.955c.364 0 .631.049.825.315h.049s-.486-1.043-.534-1.164m-.874-2.063c-.267-.534-.534-.582-1.019-.582h-1.238l-.485 1.43h2.403c.34 0 .63.049.825.316h.048c0-.025-.485-1.02-.534-1.165zM9.355 3.519c-.68 0-.97.485-1.238 1.237L5.424 12.74h.68c.679 0 .97-.485 1.237-1.237l2.354-6.94c.194-.607.485-.947.922-.996V3.52zm4.416-.025c-.679 0-.97.486-1.237 1.238l-2.354 6.916c-.194.607-.461.947-.898.995v.049h1.213c.68 0 .971-.486 1.238-1.238l2.354-6.916c.194-.607.485-.946.922-.995v-.049zm-2.208 0c-.68 0-.97.486-1.237 1.238l-2.33 6.94c-.194.607-.461.947-.898.995v.049h1.213c.68 0 .971-.485 1.238-1.238l2.354-6.916c.194-.606.485-.946.922-.995V3.52c-.218-.025-1.213-.025-1.262-.025zm.364 16.842c-.558 0-.655-.243-.655-.825v-.923h.461v1.044c0 .267.024.388.218.388.17 0 .219-.097.219-.388v-1.044h.437v.923c0 .63-.17.825-.68.825m.316-1.917a.217.217 0 0 1-.219-.219c0-.121.097-.242.219-.242.121 0 .218.12.218.242a.217.217 0 0 1-.218.219m-.631 0a.217.217 0 0 1-.219-.219c0-.121.097-.242.219-.242.121 0 .218.12.218.242a.217.217 0 0 1-.218.219m1.31 1.868v-1.699h.485c.607 0 .874.122.874.85s-.267.85-.874.85zm.558-.291c.243 0 .34-.146.34-.558 0-.388-.097-.558-.34-.558h-.097v1.116zm-3.154.34c-.267 0-.461-.049-.559-.073l.073-.316c.17.049.291.073.389.073.12 0 .266-.024.266-.17 0-.097-.12-.17-.242-.242h-.024c-.195-.122-.413-.243-.413-.51 0-.315.218-.485.63-.485.22 0 .34.024.51.073l-.072.29a.9.9 0 0 0-.364-.072c-.146 0-.243.048-.243.17 0 .097.121.17.267.242h.024c.194.122.437.243.437.51 0 .316-.218.51-.68.51zM8.36 17.569c-.049-.194-.121-.534-.17-.68H6.855c-.048.146-.12.486-.17.68H5.497c.51-1.601.728-2.257 1.31-3.688h1.457c.558 1.407.8 2.087 1.31 3.688zm-1.335-1.456h.995c-.145-.485-.412-1.31-.485-1.553-.097.219-.364 1.044-.51 1.553m3.834 1.456c-.63 0-.97-.364-.97-.995v-2.693h1.116v2.475c0 .315.097.388.413.388h1.092l.17.825zm6.334-3.688h1.116v3.688h-1.116zm-4.077 3.688v-3.688h1.53c1.14 0 1.916.46 1.916 1.82 0 1.31-.63 1.868-1.868 1.868zm1.117-.8h.315c.68 0 .946-.316.946-1.068 0-.728-.34-1.02-.995-1.02h-.266zm5.532 4.732c0 .17-.145.29-.29.29H4.55a.295.295 0 0 1-.291-.29V2.475c0-.17.145-.291.291-.291h14.924c.17 0 .291.146.291.291zM4.065 1.626a.383.383 0 0 0-.389.388v19.948c0 .218.17.388.389.388h15.87c.219 0 .389-.17.389-.388V2.014a.383.383 0 0 0-.389-.388zM2.803 0a.81.81 0 0 0-.801.8v22.4c0 .436.364.8.8.8h18.395a.81.81 0 0 0 .801-.8V.8c0-.436-.364-.8-.8-.8zm.704.946h17.01a.54.54 0 0 1 .535.534l-.025 21.04a.54.54 0 0 1-.534.534H3.507a.54.54 0 0 1-.534-.534V1.48a.54.54 0 0 1 .534-.534"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/alfaromeo.svg��������������������������������0000664�0000000�0000000�00000007673�14753064456�0025605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.539 5.405a.216.216 0 1 0 0-.432.216.216 0 1 0 0 .432M4.234 6.981 3.58 8.28l-1.336-.7-.276.551a.4.4 0 0 1 .091-.01c.056 0 .111.011.154.03l1.492.782.887-1.764zm15.722.433.31-.17.51.98.35-.19-.51-.979.297-.16.733 1.409.35-.19-1.014-1.948a.4.4 0 0 1-.165.189l-1.451.787 1.007 1.935.35-.19zm-7.287-2.009a.216.216 0 1 0 0-.432.216.216 0 1 0 0 .432m5.058 1.519.002.003a7.647 7.647 0 0 1-2.58 12.046q-.014.007-.027.013l.002-.001.025-.012a1.286 1.286 0 0 0-.551-2.448l-1.355-.002a.166.166 0 1 1 0-.33h2.288a1.95 1.95 0 0 0 0-3.9h-2.209a.166.166 0 1 1 0-.331l1.686-.002a3.223 3.223 0 0 0 3.223-3.222 3.2 3.2 0 0 0-.53-1.772l-.01-.012a.02.02 0 0 1-.004-.014q.002-.021.024-.023.01-.002.016.007m-3.258 12.318a7.6 7.6 0 0 1-2.46.404 7.6 7.6 0 0 1-3.213-.707v-6.026h2.165a2.4 2.4 0 0 1-.123-.765c0-.403.099-.783.272-1.118H8.796V5.061a7.6 7.6 0 0 1 3.214-.707 7.6 7.6 0 0 1 3.682.944c.156.099.26.273.26.471a.557.557 0 0 1-.557.558h-.952c-.267 0-.414.08-.506.16-.266.23-.175.502-.72.502h-1.501c.203.469.67.807.785.886h1.845a.18.18 0 0 1 .166.112.16.16 0 0 1 .01.097.18.18 0 0 1-.176.148h-1.878a1.67 1.67 0 0 0-.785.966h3.39a.4.4 0 1 1 0 .801h-1.717a2.143 2.143 0 0 0 0 4.286h2.141c.092 0 .166.077.166.168a.164.164 0 0 1-.166.164h-2.193a1.57 1.57 0 1 0 0 3.14l.828.002c.419 0 .764.351.764.767 0 .34-.205.579-.427.716zM6.913 11.03H4.425a7.63 7.63 0 0 1 2.488-4.728zm0 6.669a7.63 7.63 0 0 1-2.495-4.786h2.495zM12.01 3.94a8.06 8.06 0 1 0 0 16.119 8.06 8.06 0 0 0 0-16.12m-.301 2.009h1.902a.144.144 0 0 0 .144-.144.145.145 0 0 0-.144-.144h-1.902a.145.145 0 0 0-.144.144c0 .079.065.144.144.144m.072-.545a.216.216 0 1 0 0-.432.216.216 0 1 0 0 .432m.298 2.652.027-.025-.027-.026c-.42-.306-.607-.685-.72-.978-.077-.202-.165-.368-.292-.49-.132-.125-.229-.192-.42-.192a1 1 0 0 0-.23.03l-.045.01.028.053c.042.078.12.224.258.265a.1.1 0 0 0 .035.005l.034-.002.026-.002q.013.001.012.002c.148.085.226.716.226 1.03q0 .08-.072.079a.25.25 0 0 1-.153-.064.47.47 0 0 0-.347-.146c-.223 0-.458.15-.468.4v.051c.01.25.245.4.468.4.136 0 .26-.052.347-.145a.25.25 0 0 1 .153-.064q.073-.001.072.077c0 .315-.078.946-.226 1.031q0 .001-.012.002l-.026-.002-.034-.002a.1.1 0 0 0-.035.005c-.137.042-.216.187-.258.265l-.028.053.045.011a1 1 0 0 0 .23.029c.191 0 .288-.067.42-.193.127-.121.215-.287.292-.489.113-.293.3-.672.72-.978M2.64 10.18l-.123.803-.7-.528zm-1.275.637a.3.3 0 0 1 .097-.02.25.25 0 0 1 .124.032l.003.002 1.526 1.174.078-.51-.31-.234.185-1.224.364-.122.078-.509-2.031.683zM12 23.52C5.638 23.52.48 18.362.48 12S5.638.48 12 .48 23.52 5.638 23.52 12 18.362 23.52 12 23.52M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m2.668 2.643c.079-.23.274-.357.55-.357q.174 0 .364.069c.44.158.65.475.535.808-.08.231-.276.359-.551.359q-.175 0-.367-.07c-.438-.157-.647-.475-.531-.809m.392 1.217q.294.106.576.106c.476 0 .84-.234.975-.624a.92.92 0 0 0-.122-.828c-.165-.247-.438-.448-.768-.566a1.7 1.7 0 0 0-.568-.103c-.48 0-.845.231-.98.62-.191.555.181 1.142.887 1.395m3.094.16-.183 1.455.023.021 1.393-.326-.766 1.037.376.35 1.162-1.533-.432-.402-1.215.272.148-1.267-.452-.421-.056-.052a.37.37 0 0 1-.094.234l-1.205 1.17.378.353zm3.625 7.48a1 1 0 0 1-.092.009c-.301 0-.532-.263-.602-.685-.078-.468.093-.808.437-.868a1 1 0 0 1 .09-.007c.296 0 .532.268.6.683.079.468-.092.81-.433.869m.849-.941c-.113-.674-.543-1.144-1.046-1.144a1 1 0 0 0-.148.012c-.568.1-.89.717-.764 1.47.114.685.534 1.146 1.045 1.146a1 1 0 0 0 .151-.013c.567-.099.887-.717.762-1.471M12.432 1.727c.162 0 .271.116.273.288.001.174-.104.283-.276.285l-.989.008-.005-.572zM10.937 3.25l.511-.004-.004-.532.857-.008.375.53.57-.006-.431-.57.053-.025c.218-.105.342-.323.34-.598-.004-.435-.29-.716-.729-.716l-1.559.014h-.09c.054.065.088.15.093.222zm-3.384.324-.705.405-.022-.877zm-1.165-.421v.003l.034 1.927.447-.257-.01-.388 1.073-.618.322.21.446-.257-1.8-1.164-.64.366a.25.25 0 0 1 .128.178m-2.64 2.422 1.21 1.16.35-.38-.446-.428.744-.808-.288-.277-.745.808-.344-.33 1.072-1.163-.289-.277-1.486 1.613a.4.4 0 0 1 .22.08z"/></svg>���������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/alfred.svg�����������������������������������0000664�0000000�0000000�00000000352�14753064456�0025060�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 15.902c0-1.142 1.133-2.184 3-2.977v-1.827c0-4.142 4.029-7.5 9-7.5s9 3.358 9 7.5v1.827c1.867.793 3 1.835 3 2.977 0 2.485-5.373 4.5-12 4.5s-12-2.015-12-4.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/algolia.svg����������������������������������0000664�0000000�0000000�00000001362�14753064456�0025235�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.445 0 .103 5.285.01 11.817c-.097 6.634 5.285 12.131 11.92 12.17a11.9 11.9 0 0 0 5.775-1.443.28.28 0 0 0 .052-.457l-1.122-.994a.79.79 0 0 0-.833-.14 9.7 9.7 0 0 1-3.923.77c-5.36-.067-9.692-4.527-9.607-9.888.084-5.293 4.417-9.573 9.73-9.573h9.73v17.296l-5.522-4.907a.407.407 0 0 0-.596.063 4.52 4.52 0 0 1-3.934 1.793 4.54 4.54 0 0 1-4.192-4.168A4.53 4.53 0 0 1 12 7.467a4.53 4.53 0 0 1 4.509 4.126c.018.205.11.397.265.533l1.438 1.275a.28.28 0 0 0 .462-.158 6.8 6.8 0 0 0 .099-1.725c-.232-3.376-2.966-6.092-6.345-6.3-3.873-.24-7.11 2.79-7.214 6.588-.1 3.7 2.933 6.892 6.634 6.974a6.75 6.75 0 0 0 4.136-1.294l7.212 6.394a.48.48 0 0 0 .797-.36V.456A.456.456 0 0 0 23.54 0Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/algorand.svg���������������������������������0000664�0000000�0000000�00000000323�14753064456�0025410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.874 0h3.673l1.61 5.963h3.789l-2.588 4.5 3.624 13.533h-3.757l-2.44-9.077-5.247 9.079H8.345l8.107-14.051-1.304-4.878L4.215 24H.018Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/alibabacloud.svg�����������������������������0000664�0000000�0000000�00000000766�14753064456�0026236�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.996 4.517h5.291L8.01 6.324 4.153 7.506a1.67 1.67 0 0 0-1.165 1.601v5.786a1.67 1.67 0 0 0 1.165 1.6l3.857 1.183 1.277 1.807H3.996A3.996 3.996 0 0 1 0 15.487V8.513a3.996 3.996 0 0 1 3.996-3.996m16.008 0h-5.291l1.277 1.807 3.857 1.182c.715.227 1.17.889 1.165 1.601v5.786a1.67 1.67 0 0 1-1.165 1.6l-3.857 1.183-1.277 1.807h5.291A3.996 3.996 0 0 0 24 15.487V8.513a3.996 3.996 0 0 0-3.996-3.996m-4.007 8.345H8.002v-1.804h7.995Z"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/simple/alibabadotcom.svg����������������������������0000664�0000000�0000000�00000001600�14753064456�0026401�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.391 16.22c-.963.044-.865-.459-.302-1.234 1.32-1.768 3.82-4.236 3.906-5.982.151-2.283-2.143-3.026-4.501-3.004-1.645.022-3.344.492-4.501.906C5 8.315 2.489 10.576.909 13.076-.768 15.554-.216 17.923 3.322 18c2.716-.109 4.48-.862 6.32-1.802.01 0-5.086 1.453-6.958.383l-.008-.002c-.193-.11-.404-.264-.457-.683-.012-.885 1.46-1.802 2.283-2.097v-1.533a5.4 5.4 0 0 0 1.955.366 5.38 5.38 0 0 0 3.472-1.265c.037.13.056.278.044.447h.371c.048-.394-.172-.706-.172-.706-.333-.529-.915-.52-.915-.52s.315.137.529.466a4.95 4.95 0 0 1-4.665.932l1.21-1.2-.336-.874c2.435-.852 4.48-1.507 7.812-2.085l-.746-.624.389-.24c2.01.568 3.325.985 3.253 2.051a2.7 2.7 0 0 1-.202.611c-.584 1.158-2.326 3.09-3.029 3.898-.465.535-.92 1.06-1.245 1.562-.335.503-.54.971-.551 1.42.043 3.504 10.334-1.64 12.324-3.003-2.943 1.266-6.113 2.489-9.609 2.718"/></svg>��������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/alienware.svg��������������������������������0000664�0000000�0000000�00000002432�14753064456�0025573�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.382 9.405c-.065-.648-.13-1.362-.26-2.01-.13-.65-.259-1.298-.518-1.946-.13-.325-.26-.649-.39-.908-.13-.325-.324-.584-.454-.909-.194-.259-.389-.583-.583-.843a3.7 3.7 0 0 0-.714-.713A9.5 9.5 0 0 0 15.906.973a6.6 6.6 0 0 0-1.88-.713C13.375.065 12.727 0 12.013 0c-.713 0-1.362.065-2.01.26-.649.13-1.233.389-1.817.713-.648.324-1.167.714-1.686 1.168-.26.194-.454.454-.714.713l-.583.778c-.13.325-.325.584-.454.909l-.39.973c-.194.648-.389 1.297-.519 1.946-.13.648-.194 1.297-.259 2.01-.065.714 0 1.298 0 1.946 0 .649.065 1.297.195 2.011l.194.973c.065.324.195.649.324.973.454 1.232 1.168 2.4 1.881 3.503.39.584.779 1.102 1.168 1.621.39.52.778 1.103 1.233 1.557.194.26.454.454.713.714.26.194.52.389.843.583.26.195.584.325.908.454.13.065.325.13.454.13.195 0 .325.065.52.065.194 0 .324 0 .518-.065.195 0 .325-.065.454-.13.325-.13.649-.26.908-.454.26-.194.584-.389.844-.583.26-.195.519-.454.713-.714.454-.519.843-1.038 1.233-1.557.389-.519.778-1.102 1.167-1.621.714-1.103 1.427-2.27 1.881-3.503.13-.324.26-.649.325-.973s.194-.649.194-.973c.13-.649.195-1.297.195-2.01 0-.65 0-1.363-.065-2.012m-15.568 2.66s3.698.843 6.098 5.838c-.065 0-6.422-.13-6.098-5.838m8.368 5.838c2.335-4.995 6.097-5.838 6.097-5.838.325 5.708-6.097 5.838-6.097 5.838"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/aliexpress.svg�������������������������������0000664�0000000�0000000�00000004337�14753064456�0026011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.166 9.096a.02.02 0 0 0-.022.021c0 .396-.32.717-.713.717a.02.02 0 0 0-.021.022c0 .012.01.021.021.021.394 0 .713.322.713.718q.002.02.022.021c.011 0 .021-.01.021-.021A.717.717 0 0 1 5.9 9.88a.021.021 0 0 0 0-.043.716.716 0 0 1-.713-.718v-.002a.02.02 0 0 0-.006-.015.02.02 0 0 0-.015-.006m-3.693.526L0 13.462h.48l.355-.922h1.782l.354.922h.481L1.98 9.622zm2.264.002v3.838h.491V9.624zm2.375 0v3.838h2.413v-.502H6.613v-1.19H8.19v-.477H6.613v-1.166h1.773v-.502zm-4.386.592.698 1.82H1.028zm14.689.402a1.47 1.47 0 0 0-.966.366V10.7h-.491v2.763h.49c.002-.477 0-.955.002-1.433a.97.97 0 0 1 .965-.918zm4.18.007q-.079 0-.158.01c-.315.031-.606.175-.753.377a.7.7 0 0 0-.14.465c.007.2.066.357.233.496.184.147.42.2.657.259.311.067.426.095.546.186.08.07.133.127.136.27 0 .25-.221.372-.42.41a.89.89 0 0 1-.894-.344l-.371.288c.33.382.777.505 1.09.5.54-.01.891-.217 1.029-.534.066-.153.063-.309.063-.38a.68.68 0 0 0-.267-.545c-.228-.177-.583-.228-.636-.242-.437-.078-.658-.196-.697-.341-.043-.192.102-.35.297-.411a.76.76 0 0 1 .857.277l.367-.247a1.17 1.17 0 0 0-.939-.494m2.387 0q-.079 0-.157.01c-.316.031-.607.175-.753.377a.7.7 0 0 0-.14.465c.006.2.065.357.233.496.183.147.42.2.657.259.31.067.426.095.545.186.081.07.134.127.136.27.001.25-.221.372-.42.41a.89.89 0 0 1-.894-.344l-.371.288c.33.382.777.505 1.09.5.541-.01.891-.217 1.03-.534.065-.153.062-.309.062-.38a.68.68 0 0 0-.267-.545c-.227-.177-.583-.228-.636-.242-.437-.078-.658-.196-.696-.341-.043-.192.101-.35.297-.411a.76.76 0 0 1 .857.277l.367-.247a1.17 1.17 0 0 0-.94-.494m-9.84.002a1.46 1.46 0 0 0-1.42 1.117 1.3 1.3 0 0 0-.041.327v2.833h.491v-1.813c.17.18.487.42.96.454a1.45 1.45 0 0 0 1.208-.627 1.457 1.457 0 0 0-1.199-2.292zm4.804 0a1.448 1.448 0 0 0-1.288 2.08c.255.53.811.87 1.412.833a1.45 1.45 0 0 0 1.012-.51l-.363-.291a.97.97 0 0 1-1.106.273 1.01 1.01 0 0 1-.602-.69h2.239l.002-.427a1.295 1.295 0 0 0-1.306-1.268m-9.2.08 1.062 1.377-1.062 1.378h.581l.779-1.01.778 1.01h.581l-1.062-1.378 1.062-1.378h-.581l-.778 1.01-.779-1.01zm-3.825.015v2.74h.49v-2.74zm8.233.37a.96.96 0 0 1 .95.993.963.963 0 0 1-.863.998.96.96 0 0 1-1.034-.739c-.074-.382 0-.746.307-1.019a.96.96 0 0 1 .64-.233m4.79.015a.823.823 0 0 1 .819.755h-1.76a.964.964 0 0 1 .94-.755z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/alipay.svg�����������������������������������0000664�0000000�0000000�00000001372�14753064456�0025105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.695 15.07c3.426 1.158 4.203 1.22 4.203 1.22V3.846c0-2.124-1.705-3.845-3.81-3.845H3.914C1.808.001.102 1.722.102 3.846v16.31c0 2.123 1.706 3.845 3.813 3.845h16.173c2.105 0 3.81-1.722 3.81-3.845v-.157s-6.19-2.602-9.315-4.119c-2.096 2.602-4.8 4.181-7.607 4.181-4.75 0-6.361-4.19-4.112-6.949.49-.602 1.324-1.175 2.617-1.497 2.025-.502 5.247.313 8.266 1.317a16.8 16.8 0 0 0 1.341-3.302H5.781v-.952h4.799V6.975H4.77v-.953h5.81V3.591s0-.409.411-.409h2.347v2.84h5.744v.951h-5.744v1.704h4.69a19.5 19.5 0 0 1-1.986 5.06c1.424.52 2.702 1.011 3.654 1.333m-13.81-2.032c-.596.06-1.71.325-2.321.869-1.83 1.608-.735 4.55 2.968 4.55 2.151 0 4.301-1.388 5.99-3.61-2.403-1.182-4.438-2.028-6.637-1.809"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/allegro.svg����������������������������������0000664�0000000�0000000�00000004256�14753064456�0025257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.59 7.981a.124.124 0 0 0-.122.124v5.917a.124.124 0 0 0 .124.124h.72a.124.124 0 0 0 .124-.124h-.002V8.105a.124.124 0 0 0-.124-.124Zm1.691 0a.124.124 0 0 0-.124.124v5.917a.124.124 0 0 0 .124.124h.72a.124.124 0 0 0 .123-.124V8.105a.124.124 0 0 0-.122-.124Zm12.667 1.776a1.87 1.87 0 0 0-1.317.532 1.67 1.67 0 0 0-.531 1.254v2.48a.124.124 0 0 0 .123.123h.72a.124.124 0 0 0 .124-.124v-2.427c0-.752.5-1.113 1.314-.946a.13.13 0 0 0 .168-.142v-.495c0-.13-.014-.18-.1-.208a3 3 0 0 0-.501-.047m-4.626 0a2.2 2.2 0 0 0-1.732.849 2.355 2.355 0 0 0 0 2.678 2.13 2.13 0 0 0 1.732.849 2.2 2.2 0 0 0 1.234-.372v.53c0 .717-.627.848-1.03.873a5 5 0 0 1-.826-.045c-.11-.017-.188 0-.188.119v.636a.11.11 0 0 0 .114.103c.933.08 1.56.064 2.032-.206a1.54 1.54 0 0 0 .69-.875 3 3 0 0 0 .117-.874v-2.077h.002a2.25 2.25 0 0 0-.412-1.34 2.2 2.2 0 0 0-1.733-.848m-12.255.002a2.9 2.9 0 0 0-1.465.39.09.09 0 0 0-.045.08l.038.63a.112.112 0 0 0 .185.065c.627-.387 1.38-.459 1.764-.265a.67.67 0 0 1 .335.605v.092H1.832c-.45 0-1.83.167-1.83 1.434v.014a1.23 1.23 0 0 0 .45 1.017 1.77 1.77 0 0 0 1.118.32h2.118a.124.124 0 0 0 .124-.125v-2.51l-.002.004c0-.57-.127-1.004-.402-1.303-.274-.3-.827-.45-1.34-.45zm7.707 0c-1.28 0-1.84.858-2.02 1.585a2.4 2.4 0 0 0-.074.6 2.28 2.28 0 0 0 .412 1.338 2.2 2.2 0 0 0 1.733.85c.691.024 1.153-.093 1.506-.294a.2.2 0 0 0 .084-.212v-.558c0-.114-.069-.167-.167-.098a2.2 2.2 0 0 1-1.393.334 1.14 1.14 0 0 1-1.118-1.016h2.845a.117.117 0 0 0 .117-.116c.05-.778-.175-2.413-1.925-2.413m12.08 0a2.2 2.2 0 0 0-1.731.848 2.28 2.28 0 0 0-.412 1.34 2.28 2.28 0 0 0 .412 1.339 2.193 2.193 0 0 0 3.465 0 2.28 2.28 0 0 0 .412-1.34 2.28 2.28 0 0 0-.412-1.339 2.2 2.2 0 0 0-1.733-.848Zm-7.532.833c1.157 0 1.196 1.18 1.196 1.351s-.039 1.351-1.196 1.351c-.517 0-.89-.378-1.047-.849a1.55 1.55 0 0 1 0-1.004c.157-.47.53-.849 1.047-.849m-4.546.004a.86.86 0 0 1 .91.922H8.754a.97.97 0 0 1 1.024-.922zm12.078 0c.515-.012.89.378 1.048.848a1.55 1.55 0 0 1 0 1.003v.002c-.158.47-.531.837-1.048.848-.518.012-.89-.378-1.047-.848a1.55 1.55 0 0 1 0-1.005c.158-.47.53-.837 1.047-.848M1.89 12.121h.99v1.246H1.63a.77.77 0 0 1-.444-.156.49.49 0 0 1-.21-.412c0-.226.153-.678.914-.678"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/alliedmodders.svg����������������������������0000664�0000000�0000000�00000002036�14753064456�0026434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.588 1.077A.615.615 0 0 0 0 1.69v20.617c0 .34.275.615.615.615h8.309c.34 0 .615-.275.615-.615v-1.746l.647 1.94a.615.615 0 0 0 .584.421h6.77a.615.615 0 0 0 .585-.427l.035-.11c.04.307.3.537.61.537h4.615c.34 0 .615-.275.615-.615V8.153a.615.615 0 0 0-.447-.592l-4.307-1.23a.615.615 0 0 0-.744.37l-1.887 4.907v-5.55a.615.615 0 0 0-.443-.593l-3.385-.98a.615.615 0 0 0-.787.59v6.15l-2.809-7.48a.62.62 0 0 0-.408-.375l-8-2.272a.6.6 0 0 0-.195-.021m.027.613 8 2.272 4 10.652v-9.54L16 6.058v8.865l3.076-8 4.309 1.231v14.154H18.77v-2.463h1.845v-7.076l-3.076 9.54h-6.77L6.155 8.46v11.078h2.77v2.77H.615zm.615.816V21.69h7.08v-1.537H6.154a.615.615 0 0 1-.615-.615V8.46c.002-.698.979-.855 1.2-.194l4.474 13.424h5.877l2.94-9.111c.215-.668 1.201-.513 1.2.19v7.075c0 .34-.275.615-.615.616h-1.23v1.23h3.385V8.616l-3.32-.947-2.876 7.474c-.245.635-1.188.46-1.19-.22V6.52l-2.154-.625v8.719c0 .685-.95.857-1.19.217L8.147 4.467zm5.54 9.747 2.224 6.67c-.734-.01-1.485 0-2.224 0zM20 16.683v2.546h-.822Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/allocine.svg���������������������������������0000664�0000000�0000000�00000001265�14753064456�0025415�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.434.001a1 1 0 0 0-.164.008l-3.423.543a2.635 2.635 0 0 1-2.189 3.01 2.63 2.63 0 0 1-3.01-2.185l-3.417.538a.82.82 0 0 0-.677.931l3.24 20.467a.82.82 0 0 0 .931.677l3.423-.543a2.635 2.635 0 0 1 2.189-3.01 2.63 2.63 0 0 1 3.01 2.185l3.422-.543a.82.82 0 0 0 .677-.93L17.2.685A.816.816 0 0 0 16.433 0zm-3.22 6.534q.1 0 .185.017c.423.09.975.6 1.315.955.178.187.192.519.048.73l-1.228 1.795a.9.9 0 0 1-.437.283c-.504.125-1.248-.95-1.771 1.507-.524 2.458.59 1.776 1.003 2.098a.83.83 0 0 1 .283.437l.394 2.14a.61.61 0 0 1-.341.649c-.456.182-1.167.427-1.589.336-.907-.192-2.342-2.4-1.57-6.044.725-3.415 2.71-4.89 3.708-4.903"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/alltrails.svg��������������������������������0000664�0000000�0000000�00000001521�14753064456�0025611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.441 8.451c-.653-1.247-1.158-1.841-1.813-1.841-.731 0-1.053.387-1.494 1.079-.357.464-.7 1.1-1.273 1.036-.604-.063-.954-1.491-1.41-2.686-.625-1.63-.985-3.322-2.024-3.322-.593 0-1.111.54-1.915 1.747l-8.301 12.73c-.954 1.593-1.753 2.704-.742 3.748 1.187 1.142 3.975-.857 5.883-2.063 1.908-1.205 3.859-2.38 6.615-2.316 3.71.085 5.512 3.808 7.76 4.516 1.526.487 2.926-.074 3.223-1.65.174-.866-.129-1.707-.547-2.604zm-.254 7.467c-.753.56-1.803-.339-2.481-.72-.72-.401-1.94-1.364-4.124-1.332-1.78.021-2.745.687-3.805 1.407-2.3 1.565-4.379 3.384-4.972 2.443-.382-.603.646-1.809 3.063-5.574 1.718-2.676 2.927-4.813 3.785-4.813.948 0 1 .93 1.145 1.883.272 1.518 1.014 2.308 1.978 2.433 1.08.146 2.014-.76 2.756-.751.693.014 1.15 1.018 1.722 2.065.725 1.301 1.482 2.546.933 2.959"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/almalinux.svg��������������������������������0000664�0000000�0000000�00000005660�14753064456�0025624�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.994 15.133c.079 1.061-.668 1.927-1.69 2.005a1.8 1.8 0 0 1-1.928-1.651c-.078-1.062.63-1.849 1.691-1.967 1.023-.078 1.849.59 1.927 1.613m-12.623 4.955c-.944 0-1.73.786-1.73 1.809 0 1.14.747 1.848 1.887 1.848.904-.04 1.691-.865 1.691-1.809 0-.983-.904-1.848-1.848-1.848m1.061-9.675c-.039-.865-.078-1.73.08-2.556.156-.944.314-1.887.904-2.674.707-.983 1.809-.944 2.399.118.314.511.432 1.062.471 1.652 0 .354.158.432.472.393.944-.157 1.888-.157 2.792.197.118.039.236.118.394 0 .314-.276.393-1.652.196-2.006-.354-.63-.904-.55-1.455-.55-.629.039-1.18-.158-1.612-.67-.393-.471-.511-1.06-.59-1.65-.04-.276-.079-.512-.315-.709-.55-.55-1.809-.432-2.477.118-2.556 2.045-2.989 5.467-1.534 8.18.04.118.118.236.275.157m7.984 3.658c.354-.511.865-.747 1.415-.983a.97.97 0 0 0 .59-.472c.354-.669-.078-1.81-.747-2.36-2.595-2.006-5.938-1.612-8.18.433-.118.078-.157.196-.078.314.786-.236 1.612-.472 2.477-.51.905-.08 1.848-.158 2.753.235 1.14.472 1.337 1.534.472 2.36-.393.393-.905.668-1.455.825-.315.08-.354.236-.236.551.354.865.59 1.77.472 2.753-.04.157-.079.275.078.393.354.236 1.691 0 1.967-.275.511-.472.314-1.023.196-1.534-.157-.63-.078-1.219.276-1.73m-7.197-2.045c-.118-.079-.197-.118-.315 0 .472.708.905 1.455 1.259 2.241.314.866.668 1.73.55 2.714-.118 1.18-1.1 1.69-2.123 1.101-.511-.275-.905-.669-1.22-1.14-.196-.276-.393-.276-.629-.08-.747.63-1.533 1.102-2.516 1.26-.158 0-.315 0-.394.157-.118.393.472 1.612.826 1.809.59.354 1.062 0 1.534-.276.55-.314 1.101-.432 1.73-.236.59.197.983.63 1.337 1.102.158.196.315.353.63.432.747.197 1.77-.59 2.084-1.376 1.18-3.028-.157-6.135-2.753-7.708m-2.556 2.438c.472-.669.826-1.416.983-2.202-.157-.04-.197.04-.315.078-.904.944-1.848 1.849-3.067 2.478-.472.236-.983.433-1.534.433-.865 0-1.376-.551-1.298-1.416a2.92 2.92 0 0 1 .787-1.849c.236-.275.236-.432-.04-.668-.786-.55-1.494-1.22-1.848-2.124-.078-.275-.275-.275-.51-.157a4 4 0 0 0-.434.236c-1.022.63-1.14 1.416-.275 2.28.63.63.944 1.338.708 2.203-.118.433-.354.747-.63 1.101a.95.95 0 0 0-.235.787c.079.747.826 1.494 1.73 1.573 2.517.236 4.562-.63 5.978-2.753m-4.68-5.152c1.376 1.18 3.067 1.455 4.837 1.377.157 0 .315 0 .354-.118.04-.197-.157-.197-.275-.236-.826-.354-1.691-.63-2.438-1.14S6.848 8.25 6.534 7.266c-.236-.747.078-1.415.825-1.651.669-.236 1.337-.236 1.967 0 .393.157.55.078.629-.354.118-.747.354-1.455.826-2.085.55-.786.55-.865-.354-1.376-.04 0-.04-.04-.079-.04-.865-.471-1.534-.196-1.848.709-.472 1.376-1.377 1.887-2.832 1.612a4 4 0 0 0-.472-.079c-.747.118-1.18.55-1.297 1.14-.158 1.81.786 3.107 2.084 4.17m-2.32 3.658c-.079-.944-1.023-1.652-2.045-1.534-.905.079-1.691 1.022-1.613 1.966.08.983 1.023 1.77 1.967 1.652 1.14-.079 1.73-1.18 1.69-2.084zm15.18-8.298c.943-.079 1.73-.983 1.651-1.927-.078-.983-1.022-1.77-2.005-1.691-1.023.079-1.73.983-1.652 1.966s.983 1.73 2.006 1.652m-12.27-.826c1.062-.157 1.77-1.023 1.652-2.045C8.107.897 7.163.149 6.18.267c-1.062.118-1.691.944-1.573 2.085.118.865 1.061 1.612 1.966 1.494"/></svg>��������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/alpinedotjs.svg������������������������������0000664�0000000�0000000�00000000231�14753064456�0026133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m24 12-5.72 5.746-5.724-5.741 5.724-5.75zM5.72 6.254 0 12l5.72 5.746h11.44z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/alpinelinux.svg������������������������������0000664�0000000�0000000�00000001524�14753064456�0026155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.998 1.607 0 12l5.998 10.393h12.004L24 12 18.002 1.607zM9.965 7.12 12.66 9.9l1.598 1.595.002-.002 2.41 2.363q-.299.208-.563.344a4 4 0 0 1-.496.217 3 3 0 0 1-.425.111q-.196.034-.358.034-.194-.002-.338-.034a1.3 1.3 0 0 1-.24-.072 1 1 0 0 1-.2-.113l-1.062-1.092-3.039-3.041-1.1 1.053-3.07 3.072a1 1 0 0 1-.2.111 1.3 1.3 0 0 1-.237.073 1.7 1.7 0 0 1-.338.033q-.162.001-.358-.031a3 3 0 0 1-.425-.114 4 4 0 0 1-.496-.217 5 5 0 0 1-.563-.343zm4.72.785 4.579 4.598 1.382 1.353a5 5 0 0 1-.564.344 4 4 0 0 1-.494.217 3 3 0 0 1-.426.111q-.196.034-.36.034-.193-.002-.337-.034a1.3 1.3 0 0 1-.385-.146.2.2 0 0 1-.053-.04l-1.232-1.218-2.111-2.111-.334.334L12.79 9.8l1.896-1.897zm-5.966 4.12v2.529a2 2 0 0 1-.356-.035 3 3 0 0 1-.422-.116 4 4 0 0 1-.488-.214 5 5 0 0 1-.555-.34l1.82-1.825Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/alternativeto.svg����������������������������0000664�0000000�0000000�00000006024�14753064456�0026506�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .416C18.398.416 23.584 5.602 23.584 12S18.398 23.584 12 23.584.416 18.397.416 12 5.602.416 12 .416M12 0C5.383 0 0 5.383 0 12s5.383 12 12 12 12-5.383 12-12S18.616 0 12 0m6.509 18.136-.056.012q.051.177.094.345l.202.812q.688-.639 1.249-1.394c-.305.036-.618.074-.923.117-.188.026-.372.066-.567.108zm.931-4.295c-3.783-.612-7.762.613-10.989 2.561-.757.457-1.59.91-2.129 1.632-.368.494-.561 1.081-.679 1.68q.464.381.975.704l.002-.099c.013-.41.064-.827.229-1.206.182-.42.478-.679.843-.938.756-.538 1.598-.967 2.412-1.392.055-.03.134-.029.202-.043.015.062.048.125.043.185-.02.283-.014.567-.007.85.022 1.016.088 2.032.157 3.047q.035.525.072 1.049.693.096 1.391.097a9.94 9.94 0 0 0 6.093-2.074l-.425-1.471q-.009-.032-.02-.063l-.064.017c-1.237.343-2.495.826-3.845 1.476l-.036.018c-.059.031-.14.074-.237.074h-.002c-.118 0-.278-.065-.34-.189-.064-.128-.017-.305.064-.398.066-.075.152-.121.22-.158l.038-.02a18.3 18.3 0 0 1 3.913-1.63l-.07-.179c-.101-.26-.205-.53-.32-.789-.148-.333-.317-.666-.48-.988l-.084-.167c-.054-.107-.109-.248-.055-.388a.34.34 0 0 1 .205-.192c.175-.064.436.065.511.214.415.816.77 1.546 1.087 2.23l.029.056.047-.008a9 9 0 0 1 2.342-.229 10 10 0 0 0 .886-1.91c-.545-.699-1.194-1.231-1.98-1.358zm2.428-2.827a8 8 0 0 0-.098-.649q-.046-.24-.096-.478c-.036-.171-.066-.344-.109-.514a9.2 9.2 0 0 0-1.158-2.73 9 9 0 0 0-.867-1.165 10 10 0 0 0-1.026-1.015 10.2 10.2 0 0 0-5.943-2.409 10 10 0 0 0-1.47.013 9.8 9.8 0 0 0-2.922.716 9 9 0 0 0-.709.33q-.164.085-.325.175a10.1 10.1 0 0 0-5.017 7.83c-.05.942.017 1.886.194 2.813h-.001s.191 1.124.298 1.334c.526 1.989 1.443 3.744 2.648 3.419a.167.167 0 0 0 .111-.208q-.003-.011-.008-.021a.95.95 0 0 1-.523-.377c-.666-1.117 2.723-3.509 7.351-5.269 4.252-1.619 8.091-2.144 8.965-1.285.173.141.24.376.168.588a3.03 3.03 0 0 1-.934 1.43.19.19 0 0 0 0 .269.18.18 0 0 0 .244.011 3.54 3.54 0 0 0 1.17-1.682c.028-.085.034-.187.045-.276a3.8 3.8 0 0 0 .011-.851zM6.253 14.668c-.566.402-1.553 1.122-1.967 1.925-.161.31-.312.069-.406-.107a10 10 0 0 1-.541-1.518l-.001-.003c-.066-.241-.282-1.04-.303-1.277l.001-.001a10.8 10.8 0 0 1-.187-2.638 9.35 9.35 0 0 1 4.635-7.227 10 10 0 0 1 .715-.362c.236-.107 1.191-.463.246.375a8.4 8.4 0 0 0-2.727 5.482c-.092 1.076.221 3.091.773 4.57.173.463.031.592-.238.782zM17.46 9.7a.44.44 0 0 1-.296.193c-1.068.149-2.12.398-3.14.745a.45.45 0 0 1-.356-.044.44.44 0 0 1-.203-.295l-.08-.369a.2.2 0 0 1 .114-.227 12.6 12.6 0 0 1 3.736-.863.19.19 0 0 1 .198.157l.084.354c.03.119.01.246-.057.349m2.032-1.876a.166.166 0 0 1-.183.106c-2.948-.438-7.069 1.073-7.069 1.073a17.7 17.7 0 0 0-4.049 1.912.493.493 0 0 1-.754-.319 8 8 0 0 1-.131-1.14 5.8 5.8 0 0 1 .575-3.012q.04-.078.087-.154a.1.1 0 0 1 .018-.037l.015-.025.035-.06.017-.027c1.429-2.34 4.636-3.273 7.197-2.511a7.43 7.43 0 0 1 3.335 2.123c.141.165 1.09 1.485.907 2.071m-1.533-1.599-.002.005a4 4 0 0 0-1.907-1.67 5.84 5.84 0 0 0-2.824-.43 3.8 3.8 0 0 0-1 .22.14.14 0 0 0-.097.148.135.135 0 0 0 .132.117 8.3 8.3 0 0 1 2.177.058c2.651.53 3.5 1.806 3.593 1.856.027.013.058-.013.045-.039a3 3 0 0 0-.117-.265"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/alteryx.svg����������������������������������0000664�0000000�0000000�00000007351�14753064456�0025321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.312 13.2-.014.01-.014.008a1.8 1.8 0 0 1-.943.293C.886 13.5.72 13.34.71 12.9c.01-.504.178-.66.747-.695l.785-.037.035-.002h.034zm1.429.248a.185.185 0 0 0-.182-.137.4.4 0 0 0-.072.009c-.121.03-.189.038-.282.045-.178.008-.21-.061-.22-.26v-2.732a.24.24 0 0 0-.088-.164l-.017-.012q-.008-.007-.02-.014c-.148-.087-.394-.157-.604-.21l-.015-.005a3.4 3.4 0 0 0-1.158-.072c-.12.012-.442.065-.55.102-.032.01-.133.059-.137.155.002.05.058.21.058.21.037.111.076.138.146.153.057.006.18-.02.261-.033a2.7 2.7 0 0 1 .922-.032c.357.055.494.165.494.165v1.06l-.031.001-.762.02c-1.02.032-1.49.436-1.484 1.25-.001.37.115.667.335.858.205.18.506.276.868.276h.001a1.73 1.73 0 0 0 1.122-.404l.033-.026.017.038a.61.61 0 0 0 .423.355 1.2 1.2 0 0 0 .412.031c.117-.016.271-.037.443-.118.095-.045.162-.1.157-.2a2 2 0 0 0-.07-.309m11.261.614h-.37a.18.18 0 0 1-.135-.051q-.044-.051-.043-.146v-3.51q-.004-.099.048-.146.044-.044.132-.043h.335c.063 0 .105.013.138.04s.051.075.05.13l.004.094.003.079.053-.058a1.1 1.1 0 0 1 1.048-.347c.07.013.096.083.09.12q0 .027-.002.046l-.056.354a.116.116 0 0 1-.107.107 1 1 0 0 1-.095-.01c-.04-.006-.085-.014-.165-.014-.26 0-.549.171-.742.438l-.006.008v2.712q0 .09-.045.142a.17.17 0 0 1-.135.055m-2.287-2.375h-1.702c.024-.858.351-1.21.89-1.21.524 0 .82.288.82.961 0 .053 0 .187-.008.25zm-.796-1.756c-.953 0-1.67.663-1.67 2.17 0 1.382.647 2.06 1.865 2.06.193 0 .422-.022.64-.067q.053-.01.105-.023a2.5 2.5 0 0 0 .33-.12c.076-.029.135-.088.139-.161a3 3 0 0 0-.08-.33c-.03-.073-.096-.119-.163-.115-.023 0-.35.071-.37.077a2.4 2.4 0 0 1-.586.077c-.866 0-1.124-.414-1.124-1.266v-.062h2.27a.14.14 0 0 0 .128-.125l.002-.03c.008-.148.013-.305.013-.43 0-1.047-.508-1.655-1.5-1.655zm5.371 5.712h-.025c-.134 0-.244-.01-.352-.031-.067-.012-.092-.099-.078-.217 0 0 .008-.126.027-.215.017-.09.06-.132.108-.132h.014l.037.002c.021.001.052.005.081.008.066.007.133.014.186.014.442-.005.681-.167.85-.577l.204-.498.02-.053.007-.022-.007-.023-1.363-3.604a.1.1 0 0 1-.008-.047.1.1 0 0 1 .02-.06.1.1 0 0 1 .065-.027h.517c.075 0 .13.04.147.098l.898 2.58.06.174.061-.173.927-2.562a.15.15 0 0 1 .146-.118h.004l.014.001h.428q.052 0 .078.021a.07.07 0 0 1 .024.055.2.2 0 0 1-.013.066l-1.525 4.09c-.332.911-.752 1.25-1.552 1.25m6.143-1.59a.22.22 0 0 1-.204-.118l-.814-1.258-.029-.042-.027.042-.814 1.256a.23.23 0 0 1-.206.12l-.013-.002h-.435a.13.13 0 0 1-.083-.024.1.1 0 0 1-.034-.079c0-.036.013-.074.034-.105l1.178-1.789.014-.018-.014-.018-1.086-1.674a.15.15 0 0 1-.027-.082c0-.07.064-.113.126-.113h.408c.089 0 .158.038.188.098l.764 1.16.027.04.026-.04.76-1.153a.2.2 0 0 1 .184-.105h.419c.06 0 .127.043.127.113q0 .037-.03.08l-1.085 1.676-.013.018.013.018 1.175 1.785a.2.2 0 0 1 .038.108.1.1 0 0 1-.033.08.14.14 0 0 1-.085.024h-.433zm-17.643.01c-.192 0-.377-.031-.538-.09a.8.8 0 0 1-.347-.216c-.232-.255-.252-.572-.255-.99v-4q.001-.036.025-.065a1.2 1.2 0 0 1 .527-.34q.018-.006.033-.005a.14.14 0 0 1 .099.04q.048.05.047.14v4.255c.002.221.055.397.152.507.083.092.218.138.389.138q.062 0 .144-.01a2 2 0 0 0 .324-.078.2.2 0 0 1 .063-.013c.068 0 .127.048.15.119 0 0 .06.204.068.3.005.084-.07.14-.139.164a2.2 2.2 0 0 1-.742.144m3.737-.61c-.022-.072-.081-.12-.151-.12a.2.2 0 0 0-.063.013 1.7 1.7 0 0 1-.45.088l-.018.002q-.265-.001-.392-.14c-.08-.087-.136-.23-.14-.495v-.014l.021-2.106h.862a.2.2 0 0 0 .12-.033c.043-.034.05-.09.048-.12v-.265q.001-.085-.048-.124a.2.2 0 0 0-.113-.03h-.869V8.798q0-.092-.047-.141a.15.15 0 0 0-.099-.04q-.014-.001-.036.005c-.05.019-.186.066-.334.17a1.3 1.3 0 0 0-.156.137.1.1 0 0 0-.023.063l-.02 1.103h-.446a.17.17 0 0 0-.124.047.18.18 0 0 0-.042.128v.242c0 .053-.001.098.039.142.046.042.09.039.142.04h.418l-.04 1.982.001.085c.002.42.022.738.255.995.178.194.503.305.89.307.349 0 .62-.093.745-.144.066-.028.141-.082.138-.165 0-.079-.068-.301-.068-.301"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/altiumdesigner.svg���������������������������0000664�0000000�0000000�00000003004�14753064456�0026634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.14 5.876a1 1 0 0 0-.442-.442L9.744.171c-.329-.226-.843-.226-1.203-.01L5.148 2.145a2 2 0 0 0-.144.123 1.1 1.1 0 0 0-.288.72l.01 6.569-.02.215.062.123a.5.5 0 0 0 .195.206.52.52 0 0 0 .555.01L8.859 8.2a.6.6 0 0 0 .175-.175l.082-.165V4.643l2.251 1.326 3.536 2.077a.4.4 0 0 1 .164.185.44.44 0 0 1 .062.226v7.052a.5.5 0 0 1-.072.257c-.041.072-.082.123-.154.154l-4.225 2.488-1.573.925v-3.228l1.953-1.172 1.049-.627.185-.175.021-.051a.54.54 0 0 0 .062-.247V9.999a.5.5 0 0 0-.092-.288l-.062-.123-.144-.072c-.093-.041-.175-.041-.247-.041l-.175.01-6.363 3.865a1.13 1.13 0 0 0-.442.463 1.3 1.3 0 0 0-.144.607v6.559c0 .257.103.514.329.75.082.062.154.113.236.164l3.341 1.943c.186.113.381.164.597.164s.422-.051.596-.164l8.882-5.212c.195-.103.36-.267.442-.432.113-.185.164-.401.164-.617V6.483a1.24 1.24 0 0 0-.153-.607M8.387 7.624 5.447 9.32V2.988c0-.072.031-.154.092-.216l.216-.123 2.632 1.563zm-2.951 6.795q0-.139.062-.278a.4.4 0 0 1 .175-.175l5.973-3.629v3.392l-.956.576-2.313 1.388-2.94 1.778v-3.052zm0 6.559v-2.663l2.94-1.768v3.218l-2.632 1.552-.103-.062c-.051-.031-.093-.051-.103-.062-.061-.071-.102-.143-.102-.215m13.128-3.403a.5.5 0 0 1-.072.257.34.34 0 0 1-.165.154l-8.892 5.222a.405.405 0 0 1-.452 0l-2.508-1.47 4.575-2.693v-.01l4.215-2.478a1 1 0 0 0 .432-.442 1.13 1.13 0 0 0 .175-.606V8.457c0-.216-.062-.421-.165-.596a1.2 1.2 0 0 0-.432-.442l-3.536-2.077-3.352-1.974-1.923-1.141L8.911.788a.45.45 0 0 1 .452 0l8.985 5.294a.32.32 0 0 1 .154.154.5.5 0 0 1 .062.247z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/alwaysdata.svg�������������������������������0000664�0000000�0000000�00000000742�14753064456�0025760�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.054 15.254a3.235 3.235 0 0 1 0 4.573 3.23 3.23 0 0 1-5.257-3.55l-4.827-7.33a3 3 0 0 1-.765-.007l-4.607 6.201a2.15 2.15 0 0 1-.507 2.218c-.84.841-2.207.84-3.048-.002a2.15 2.15 0 0 1-.428-2.416l-2.002-2.934c-.059.007-.116.018-.177.018a1.436 1.436 0 1 1 1.436-1.436c0 .252-.07.485-.184.69l2.073 2.555a2.14 2.14 0 0 1 1.55-.013l3.857-6.212a2.87 2.87 0 1 1 5.038-.287l5.24 7.004a3.22 3.22 0 0 1 2.608.928z"/></svg>������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/alx.svg��������������������������������������0000664�0000000�0000000�00000001042�14753064456�0024404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.732 5.879-2.903 1.299V18.12h2.903zm3.219 1.436c-.361.36-1.59 1.587-1.977 1.978q1.26 1.274 2.527 2.543l-2.529 2.529 1.978 1.978q1.265-1.264 2.529-2.529l2.543 2.529q.99-.988 1.978-1.98-1.271-1.262-2.543-2.527L24 9.293l-1.978-1.978-2.543 2.543zM6.157 9.271v.382C3.256 8.379.002 10.503 0 13.671c.001 3.169 3.256 5.293 6.157 4.018v.431H9.06V9.271zM4.39 11.902c.978 0 1.718.741 1.767 1.674v.19a1.77 1.77 0 0 1-1.767 1.675c-.946 0-1.77-.792-1.77-1.77s.792-1.77 1.77-1.77z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amazon.svg�����������������������������������0000664�0000000�0000000�00000003636�14753064456�0025120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.045 18.02q.107-.174.348-.022 5.455 3.165 11.87 3.166 4.278-.001 8.447-1.595l.315-.14c.138-.06.234-.1.293-.13.226-.088.39-.046.525.13.12.174.09.336-.12.48-.256.19-.6.41-1.006.654q-1.867 1.113-4.185 1.726a17.6 17.6 0 0 1-10.951-.577 17.9 17.9 0 0 1-5.43-3.35q-.15-.113-.151-.22c0-.047.021-.09.051-.13zm6.565-6.218q0-1.507.743-2.577c.495-.71 1.17-1.25 2.04-1.615.796-.335 1.756-.575 2.912-.72.39-.046 1.033-.103 1.92-.174v-.37c0-.93-.105-1.558-.3-1.875-.302-.43-.78-.65-1.44-.65h-.182c-.48.046-.896.196-1.246.46-.35.27-.575.63-.675 1.096-.06.3-.206.465-.435.51l-2.52-.315c-.248-.06-.372-.18-.372-.39 0-.046.007-.09.022-.15q.372-1.935 1.82-2.88c.976-.616 2.1-.975 3.39-1.05h.54c1.65 0 2.957.434 3.888 1.29.135.15.27.3.405.48.12.165.224.314.283.45.075.134.15.33.195.57.06.254.105.42.135.51.03.104.062.3.076.615.01.313.02.493.02.553v5.28c0 .376.06.72.165 1.036q.157.471.315.674l.51.674q.136.204.136.36 0 .181-.18.314c-1.2 1.05-1.86 1.62-1.963 1.71q-.247.203-.63.045a6 6 0 0 1-.526-.496l-.31-.347a9 9 0 0 1-.317-.42l-.3-.435c-.81.886-1.603 1.44-2.4 1.665-.494.15-1.093.227-1.83.227-1.11 0-2.04-.343-2.76-1.034-.72-.69-1.08-1.665-1.08-2.94l-.05-.076zm3.753-.438q-.001.848.425 1.364c.285.34.675.512 1.155.512.045 0 .106-.007.195-.02.09-.016.134-.023.166-.023.614-.16 1.08-.553 1.424-1.178.165-.28.285-.58.36-.91.09-.32.12-.59.135-.8.015-.195.015-.54.015-1.005v-.54c-.84 0-1.484.06-1.92.18-1.275.36-1.92 1.17-1.92 2.43l-.035-.02zm9.162 7.027c.03-.06.075-.11.132-.17q.544-.365 1.05-.5a8 8 0 0 1 1.612-.24c.14-.012.28 0 .41.03.65.06 1.05.168 1.172.33.063.09.099.228.099.39v.15c0 .51-.149 1.11-.424 1.8q-.418 1.034-1.156 1.68-.11.09-.197.09c-.03 0-.06 0-.09-.012-.09-.044-.107-.12-.064-.24.54-1.26.806-2.143.806-2.64 0-.15-.03-.27-.087-.344-.145-.166-.55-.257-1.224-.257q-.364 0-.87.046c-.363.045-.7.09-1 .135q-.134 0-.18-.044c-.03-.03-.036-.047-.02-.077 0-.017.006-.03.02-.063v-.06z"/></svg>��������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amazonalexa.svg������������������������������0000664�0000000�0000000�00000000607�14753064456�0026126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.37 0 0 5.37 0 12c0 6.09 4.53 11.11 10.4 11.9v-2.4a1.59 1.59 0 0 0-1.08-1.53A8.41 8.41 0 0 1 3.6 11.8a8.37 8.37 0 0 1 8.49-8.2 8.4 8.4 0 0 1 8.31 8.71l-.01.07a9 9 0 0 1-.03.38c0 .07-.01.14-.02.2 0 .08-.01.16-.02.23l-.02.1c-1.03 6.78-9.85 10.58-9.9 10.61.52.07 1.06.1 1.6.1 6.63 0 12-5.37 12-12S18.63 0 12 0"/></svg>�������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amazonapigateway.svg�������������������������0000664�0000000�0000000�00000001727�14753064456�0027173�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.456 18.7h1.258v-.865H9.456Zm2.115 0h1.286v-.865h-1.286ZM6.43 1.127.857 3.892v17.19l5.572 1.885Zm.857 5.47v11.238H8.57v.865H7.286v4.868a.434.434 0 0 1-.429.432.4.4 0 0 1-.136-.022L.292 21.804a.43.43 0 0 1-.292-.41V3.623c0-.164.093-.315.24-.388L6.668.045a.42.42 0 0 1 .415.02.43.43 0 0 1 .203.367v5.3H8.57v.865ZM13.714 18.7H15v-.865h-1.286Zm.028-12.103H15v-.864h-1.258Zm-2.143 0h1.258v-.864H11.6Zm-2.143 0h1.258v-.864H9.456Zm13.687-2.705L17.57 1.127v21.84l5.572-1.884ZM24 21.394c0 .186-.117.35-.292.41l-6.429 2.174a.43.43 0 0 1-.386-.06.43.43 0 0 1-.179-.35V18.7h-.829v-.865h.83V6.597h-.83v-.864h.83v-5.3c0-.15.076-.289.202-.368a.42.42 0 0 1 .415-.02l6.428 3.19c.147.073.24.224.24.388ZM13.257 9.346l-.8-.31-2.143 5.618.8.31Zm2.903 2.744a.434.434 0 0 0 0-.612L14.446 9.75l-.606.612 1.411 1.423-1.411 1.423.606.611Zm-6.606 1.728L7.84 12.09a.434.434 0 0 1 0-.612L9.554 9.75l.606.612-1.411 1.423 1.411 1.423Z"/></svg>�����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amazoncloudwatch.svg�������������������������0000664�0000000�0000000�00000003042�14753064456�0027165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.454 14.905c0-1.676-1.372-3.039-3.059-3.039-1.686 0-3.058 1.363-3.058 3.039 0 1.675 1.372 3.038 3.058 3.038 1.687 0 3.059-1.363 3.059-3.038m.862 0c0 2.147-1.759 3.894-3.92 3.894s-3.92-1.747-3.92-3.894 1.758-3.895 3.92-3.895 3.92 1.747 3.92 3.895m3.617 5.87-3.004-2.688c-.242.34-.523.649-.834.926l2.999 2.687c.256.23.654.208.885-.046a.623.623 0 0 0-.046-.88Zm-7.538-1.206c2.59 0 4.696-2.092 4.696-4.664 0-2.573-2.106-4.665-4.696-4.665s-4.696 2.092-4.696 4.665 2.107 4.664 4.696 4.664m8.224 2.658c-.293.323-.7.487-1.107.487a1.5 1.5 0 0 1-.995-.378l-3.118-2.794a5.54 5.54 0 0 1-3.004.883c-3.064 0-5.557-2.476-5.557-5.52s2.493-5.521 5.557-5.521 5.558 2.477 5.558 5.52c0 .874-.21 1.697-.576 2.432l3.133 2.803c.608.546.657 1.482.11 2.088ZM3.977 7.454q0 .335.04.659a.426.426 0 0 1-.352.473C2.605 8.858.862 9.681.862 12.148c0 1.863 1.034 2.892 1.902 3.427.297.185.647.284 1.017.288l5.195.005v.856l-5.2-.005a2.8 2.8 0 0 1-1.469-.418C1.447 15.77 0 14.524 0 12.148c0-2.864 1.971-3.923 3.129-4.297a6 6 0 0 1-.013-.397c0-2.34 1.598-4.767 3.716-5.645 2.478-1.031 5.104-.52 7.022 1.367a7 7 0 0 1 1.459 2.116 2.8 2.8 0 0 1 1.78-.644c1.287 0 2.735.97 2.993 3.092 1.205.276 3.751 1.24 3.751 4.441 0 1.278-.403 2.333-1.199 3.137l-.614-.6c.632-.638.952-1.491.952-2.537 0-2.8-2.36-3.495-3.374-3.664a.43.43 0 0 1-.353-.496c-.141-1.738-1.18-2.517-2.156-2.517-.616 0-1.193.298-1.584.818a.431.431 0 0 1-.75-.111c-.353-.971-.861-1.788-1.511-2.426-1.663-1.636-3.936-2.079-6.084-1.186-1.787.74-3.187 2.873-3.187 4.855"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amazoncognito.svg����������������������������0000664�0000000�0000000�00000002644�14753064456�0026501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.127 10.203h5.531v-.85h-5.53zm19.034 6.181.602.601-3.16 3.155a.426.426 0 0 1-.601 0l-1.59-1.587.602-.6 1.289 1.286zm1.958 2.341a4.05 4.05 0 0 1-2.288 3.181c-.688.326-1.45.45-2.211.357a4 4 0 0 1-2.017-.842 4.04 4.04 0 0 1-1.507-3.675 4.06 4.06 0 0 1 2.167-3.12 4 4 0 0 1 2.332-.417 4.04 4.04 0 0 1 3.111 2.18c.369.722.511 1.53.413 2.336m.346-2.721a4.888 4.888 0 0 0-9.214 1.64 4.89 4.89 0 0 0 1.823 4.442 4.88 4.88 0 0 0 5.122.587 4.95 4.95 0 0 0 1.629-1.247 4.9 4.9 0 0 0 1.139-2.599 4.9 4.9 0 0 0-.5-2.823M6.382 12.752h1.701v-.85H6.382zm-4.255 0h3.404v-.85H2.127zM1.76 1.706h19.03c.5 0 .908.496.908 1.105v3.143h-1.276V3.83a.425.425 0 0 0-.426-.425H10.21a.425.425 0 0 0-.425.425v2.124H.85V2.811c0-.6.417-1.105.91-1.105M15.11 5.83c.988 0 1.792.794 1.792 1.77a1.76 1.76 0 0 1-.927 1.547 1.82 1.82 0 0 1-1.733 0 1.76 1.76 0 0 1-.923-1.546c0-.977.803-1.771 1.792-1.771zM.85 15.046V6.804h8.935v7.222c0 .235.19.425.425.425h4.448v-.85h-3.553A3.865 3.865 0 0 1 13.9 9.963a2.88 2.88 0 0 0 2.414 0 3.9 3.9 0 0 1 2.24 1.716l.728-.44a4.76 4.76 0 0 0-2.206-1.9 2.6 2.6 0 0 0 .676-1.737c0-1.445-1.186-2.62-2.643-2.62s-2.642 1.175-2.642 2.62c0 .65.247 1.261.67 1.733a4.7 4.7 0 0 0-2.501 2.481V4.255h8.934v6.797h.851V6.804h1.276v6.372h.852V2.811c0-1.077-.79-1.954-1.76-1.954H1.759C.79.857 0 1.734 0 2.81v12.235C0 16.123.79 17 1.76 17h11.43v-.85H1.759c-.492 0-.908-.506-.908-1.105z"/></svg>��������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amazondocumentdb.svg�������������������������0000664�0000000�0000000�00000003273�14753064456�0027162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.505 21.095.716.463C16.253 23.032 13.095 24 9.39 24c-4.632 0-8.127-1.474-8.127-3.41V3.369C1.263 1.726 4.126 0 9.473 0s8.211 1.726 8.211 3.368v2.906h-.842v-1.39c-1.22 1.01-3.705 1.81-7.368 1.81s-6.148-.8-7.369-1.81v4.8c.337 1.18 3.2 2.358 7.242 2.358q1.095 0 2.106-.126l.126.842q-1.095.126-2.232.126c-3.242 0-5.937-.716-7.242-1.81v4.505c.337 1.137 3.2 2.316 7.242 2.316q1.053 0 2.106-.084l.126.8q-1.137.126-2.232.126c-3.242 0-5.937-.716-7.242-1.81v3.663c0 1.22 2.99 2.568 7.284 2.568 3.79 0 6.442-1.053 7.116-2.063M2.105 3.368c0 1.18 3.032 2.485 7.369 2.485s7.368-1.306 7.368-2.485c0-1.22-3.032-2.526-7.368-2.526S2.105 2.147 2.105 3.368m20.632 7.664v9.094c0 .253-.169.421-.421.421h-8c-.253 0-.421-.168-.421-.42V9.22c0-.21.168-.421.42-.421h4.632l-.715-.842h-5.18V18.02h.422v.842h-.842c-.253 0-.421-.168-.421-.421V7.537c0-.21.168-.421.42-.421h5.811c.126 0 .253.084.295.168L20.042 8.8h.463q.169 0 .295.126l1.81 1.81q.127.127.127.296m-.842.715h-2.106c-.252 0-.42-.168-.42-.42V9.641h-4.632v10.063h7.158zm-2.442.969c.252 0 .463.084.59.252.252.337.21.8.21.969 0 .884.505 1.053.547 1.095.168.042.295.21.295.42a.4.4 0 0 1-.295.38c-.042 0-.547.21-.547 1.094 0 .506-.253 1.053-.8 1.053h-.295v-.842h.21c0-.042.042-.126.042-.21 0-.759.253-1.222.506-1.516-.253-.253-.506-.758-.506-1.516v-.337h-.252v-.842zm.758-1.81h1.347l-1.263-1.264h-.085zm-2.737 1.81h.337v.842h-.253v.21c0 .758-.253 1.221-.548 1.516.295.295.548.758.548 1.516q0 .042-.042.084v.295h.294v.842h-.336c-.21 0-.421-.126-.59-.295-.252-.294-.21-.8-.168-.968-.042-.884-.506-1.053-.59-1.053-.168-.042-.294-.252-.294-.42 0-.17.126-.338.336-.38.042-.042.548-.21.548-1.137-.042-.463.21-1.052.758-1.052"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amazondynamodb.svg���������������������������0000664�0000000�0000000�00000003722�14753064456�0026632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.606 20.705v-2.371c-1.263 1.082-3.884 1.795-7.066 1.795-3.184 0-5.805-.714-7.068-1.797v2.369c0 1.168 2.903 2.47 7.068 2.47 4.16 0 7.06-1.3 7.066-2.466m.001-6.765.817-.005v.005c0 .517-.258.998-.75 1.441.601.54.75 1.071.75 1.449a1662 1662 0 0 0 0 3.87c0 1.881-3.389 3.3-7.884 3.3-4.471 0-7.846-1.404-7.88-3.27a583 583 0 0 1-.003-3.909c.001-.375.15-.9.745-1.437-.592-.538-.743-1.062-.746-1.435v-3.892c.002-.377.153-.903.747-1.438-.593-.54-.744-1.062-.747-1.435 0-1.357-.002-2.735.002-3.897C1.674 1.412 5.056 0 9.54 0c2.159 0 4.233.356 5.689.974l-.315.766c-1.36-.58-3.319-.91-5.374-.91-4.165 0-7.067 1.3-7.067 2.47 0 1.168 2.902 2.47 7.067 2.47.115 0 .222 0 .334-.005l.033.828q-.183.008-.367.006c-3.184 0-5.805-.714-7.068-1.798v2.38c.005.45.45.843.821 1.093 1.116.736 3.114 1.239 5.34 1.342l-.037.829c-2.254-.105-4.23-.59-5.5-1.332-.318.245-.623.573-.623.952 0 1.168 2.902 2.47 7.067 2.47q.616 0 1.203-.042l.06.826q-.617.045-1.263.045c-3.184 0-5.805-.713-7.068-1.797v2.368c.005.462.449.855.821 1.104 1.275.842 3.67 1.366 6.247 1.366h.182v.83H9.54c-2.62 0-4.99-.507-6.444-1.359-.317.245-.623.574-.623.954 0 1.168 2.902 2.47 7.067 2.47 4.159 0 7.058-1.298 7.066-2.465v-.007c0-.377-.303-.705-.62-.948a6 6 0 0 1-.662.336l-.316-.764q.451-.192.776-.412c.376-.254.823-.651.823-1.1m4.377-6.915h-2.717a.4.4 0 0 1-.332-.173.42.42 0 0 1-.055-.375l1.204-3.597h-5.403l-2.583 4.974h2.623c.128 0 .248.06.325.164a.42.42 0 0 1 .069.36l-2.249 8.365zm1.249-.128-10.89 11.608a.41.41 0 0 1-.498.075.42.42 0 0 1-.192-.471l2.534-9.426h-2.766a.41.41 0 0 1-.349-.2.42.42 0 0 1-.012-.407l3.014-5.804a.41.41 0 0 1 .36-.222h6.22c.132 0 .256.065.332.174a.42.42 0 0 1 .055.374l-1.204 3.598h3.1c.164 0 .31.099.375.251a.42.42 0 0 1-.08.45zM3.085 20.723a8 8 0 0 0 1.72.72l.233-.794a7.3 7.3 0 0 1-1.546-.645zm1.72-5.984.233-.795a7.3 7.3 0 0 1-1.546-.646l-.407.72a8 8 0 0 0 1.72.72zm-1.72-7.427.407-.719c.418.244.939.462 1.546.646l-.232.794a8 8 0 0 1-1.72-.72Z"/></svg>����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amazonec2.svg��������������������������������0000664�0000000�0000000�00000002006�14753064456�0025500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.429 17.571h10.714V6.857H6.429zM18 6.857h1.714v.857H18V9.43h1.714v.857H18v1.285h1.714v.858H18v1.714h1.714V15H18v1.714h1.714v.857H18v.059a.8.8 0 0 1-.799.799h-.058v1.714h-.857v-1.714H14.57v1.714h-.857v-1.714H12.43v1.714h-.858v-1.714H9.857v1.714H9v-1.714H7.286v1.714h-.857v-1.714H6.37a.8.8 0 0 1-.799-.8v-.058H4.286v-.857H5.57V15H4.286v-.857H5.57v-1.714H4.286v-.858H5.57v-1.285H4.286v-.857H5.57V7.714H4.286v-.857H5.57V6.8a.8.8 0 0 1 .8-.799h.058V4.286h.857V6H9V4.286h.857V6h1.714V4.286h.858V6h1.285V4.286h.857V6h1.715V4.286h.857V6h.058a.8.8 0 0 1 .799.799zM12.429 23.09a.054.054 0 0 1-.054.053H.91a.053.053 0 0 1-.053-.053V11.625c0-.03.024-.054.053-.054h2.52v-.857H.91a.91.91 0 0 0-.91.91V23.09c0 .502.408.91.91.91h11.465a.91.91 0 0 0 .91-.91V21h-.856ZM24 .91v11.465a.91.91 0 0 1-.91.91h-2.52v-.856h2.519a.054.054 0 0 0 .053-.054V.91a.053.053 0 0 0-.053-.053H11.625a.053.053 0 0 0-.054.053v2.52h-.857V.91c0-.502.409-.91.91-.91H23.09a.91.91 0 0 1 .91.91"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amazonecs.svg��������������������������������0000664�0000000�0000000�00000001412�14753064456�0025601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.895 15.256-3.369-2.021V8.421a.42.42 0 0 0-.209-.364l-4.843-2.825V1.159l8.42 4.976Zm.635-9.724L13.267.06a.422.422 0 0 0-.635.362v5.053c0 .15.08.288.208.363l4.844 2.826v4.81a.42.42 0 0 0 .205.362l4.21 2.526a.42.42 0 0 0 .638-.361V5.895a.42.42 0 0 0-.207-.363M11.977 23.1l-9.872-5.248V6.135l8.421-4.976v4.084L6.09 8.066a.42.42 0 0 0-.195.355v7.158a.42.42 0 0 0 .226.373l5.665 2.948a.42.42 0 0 0 .387 0l5.496-2.84 3.382 2.03zm10.135-5.356-4.21-2.526a.42.42 0 0 0-.411-.013l-5.51 2.847-5.244-2.729v-6.67l4.436-2.824a.42.42 0 0 0 .195-.355V.42a.421.421 0 0 0-.635-.362L1.47 5.532a.42.42 0 0 0-.207.363v12.21c0 .156.086.299.223.372l10.297 5.474a.42.42 0 0 0 .401-.004l9.915-5.473a.422.422 0 0 0 .013-.73"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amazoneks.svg��������������������������������0000664�0000000�0000000�00000001552�14753064456�0025616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.67 8.505-2.875 3.335 3.128 3.648h-1.168l-2.808-3.277v3.368h-.842V8.421h.842v2.947l2.603-2.863Zm7.225 6.751-3.369-2.021V8.421a.42.42 0 0 0-.209-.364l-4.843-2.825V1.159l8.42 4.976Zm.635-9.724L13.267.06a.422.422 0 0 0-.635.362v5.053c0 .15.08.288.208.363l4.844 2.826v4.81a.42.42 0 0 0 .205.362l4.21 2.526a.42.42 0 0 0 .638-.361V5.895a.42.42 0 0 0-.207-.363M11.977 23.1l-9.872-5.248V6.135l8.421-4.976v4.084L6.09 8.066a.42.42 0 0 0-.195.355v7.158a.42.42 0 0 0 .226.373l5.665 2.948a.42.42 0 0 0 .387 0l5.496-2.84 3.382 2.03Zm10.135-5.356-4.21-2.526a.42.42 0 0 0-.411-.013l-5.51 2.847-5.244-2.729v-6.67l4.436-2.824a.42.42 0 0 0 .195-.355V.42a.421.421 0 0 0-.635-.362L1.47 5.532a.42.42 0 0 0-.207.363v12.21c0 .156.086.299.223.372l10.297 5.474a.42.42 0 0 0 .401-.004l9.915-5.473a.422.422 0 0 0 .013-.73"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amazonelasticache.svg������������������������0000664�0000000�0000000�00000003655�14753064456�0027307�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.714 21.024v-2.508c-1.086.701-3.041 1.033-4.905 1.033-2.031 0-3.615-.355-4.524-.962v2.437c0 .726 1.692 1.476 4.524 1.476 2.89 0 4.905-.778 4.905-1.476m-4.905-5.286c-2.031 0-3.615-.355-4.524-.962v2.447c.014.723 1.703 1.469 4.524 1.469 2.882 0 4.892-.774 4.905-1.47v-2.517c-1.086.702-3.041 1.033-4.905 1.033m4.905-2.327v-2.898c-1.086.701-3.041 1.033-4.905 1.033-2.031 0-3.615-.354-4.524-.962v2.828c.014.723 1.703 1.468 4.524 1.468 2.882 0 4.892-.773 4.905-1.47m-9.43-4.2v.004h.001v.005c.014.723 1.703 1.468 4.524 1.468 3.147 0 4.892-.866 4.905-1.47v-.003l.001-.003c0-.604-1.747-1.477-4.906-1.477-2.833 0-4.525.75-4.525 1.477m10.287.011v4.181h.001v7.621c0 1.603-2.988 2.333-5.763 2.333-3.268 0-5.38-.916-5.38-2.333v-3.796l-.002-.013h.001v-3.798l-.001-.014h.001V9.225l-.001-.013c0-1.418 2.113-2.335 5.382-2.335 2.776 0 5.763.73 5.763 2.335zm6-5.527A.43.43 0 0 0 24 3.266V1.072a.43.43 0 0 0-.429-.429H.428A.43.43 0 0 0 0 1.072v2.194c0 .237.191.429.428.429.523 0 .949.423.949.943s-.426.943-.949.943A.43.43 0 0 0 0 6.009v8.778c0 .237.191.429.428.429h4.286v-.857H2.57v-1.286h2.143v-.857H2.142a.43.43 0 0 0-.428.428v1.715H.857V6.386a1.804 1.804 0 0 0 1.377-1.748c0-.846-.587-1.557-1.377-1.75V1.5h22.286v1.39a1.805 1.805 0 0 0-1.378 1.749c0 .845.588 1.556 1.378 1.748v7.973h-.857v-1.715a.43.43 0 0 0-.429-.428h-2.571v.857h2.142v1.286h-2.142v.857h4.285a.43.43 0 0 0 .429-.429V6.01a.43.43 0 0 0-.429-.428.947.947 0 0 1-.949-.943c0-.52.426-.943.95-.943zM6.857 6.644v-3.43a.43.43 0 0 0-.428-.428H3.857a.43.43 0 0 0-.428.429V10.5c0 .237.191.429.428.429h1.286v-.857h-.857v-6.43H6v3zm12.857 3.429h-.428v.857h.857a.43.43 0 0 0 .428-.429V3.215a.43.43 0 0 0-.428-.429H17.57a.43.43 0 0 0-.428.429v3.429H18v-3h1.714zm-3.428-3.858v-3a.43.43 0 0 0-.43-.429h-3a.43.43 0 0 0-.428.429v2.571h.858V3.643h2.142v2.572zm-5.572-.429V3.643H8.571v2.572h-.857v-3c0-.237.192-.429.429-.429h3c.237 0 .428.192.428.429v2.571z"/></svg>�����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amazonfiretv.svg�����������������������������0000664�0000000�0000000�00000004701�14753064456�0026332�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.196 15.12c.265.337-.294 1.73-.542 2.353-.077.19.085.266.257.123 1.106-.926 1.39-2.867 1.166-3.149-.226-.277-2.16-.516-3.341.314-.183.127-.151.304.05.279.665-.08 2.147-.257 2.41.08m-.858.981c-2.064 1.523-5.056 2.333-7.632 2.333-3.611 0-6.862-1.334-9.322-3.555-.194-.176-.02-.414.21-.28 2.655 1.545 5.939 2.477 9.328 2.477 2.287 0 4.803-.476 7.115-1.458.348-.147.642.231.3.483m2.034-3.155a.4.4 0 0 1-.201-.04q-.063-.038-.133-.225l-1.734-4.355a2 2 0 0 0-.046-.117.3.3 0 0 1-.023-.108q0-.127.146-.128h.58q.146 0 .205.04.06.04.127.226l1.344 3.823 1.343-3.823q.07-.187.128-.226a.4.4 0 0 1 .205-.04h.54q.149.001.148.128a.3.3 0 0 1-.025.108q-.025.06-.044.117l-1.727 4.355q-.068.186-.132.225a.4.4 0 0 1-.201.04zm-3.644.068q-1.393 0-1.392-1.392V8.739h-.706q-.196 0-.197-.196v-.246a.22.22 0 0 1 .045-.147q.044-.048.171-.067l.717-.09.127-1.215q.02-.195.207-.196h.41q.195 0 .196.196v1.196h1.276q.195 0 .195.197v.372q0 .196-.195.196h-1.276v2.834q0 .363.162.51t.555.147q.186 0 .46-.049.148-.03.197-.03.078 0 .108.044.03.045.029.142v.266a.37.37 0 0 1-.04.19q-.039.065-.157.103a3 3 0 0 1-.892.118m-4.665-2.976q.01-.078.011-.255 0-.598-.28-.901-.28-.306-.818-.306-.617 0-.962.369-.343.368-.392 1.093zm-.942 3.07q-1.204 0-1.824-.667-.617-.667-.616-1.972-.001-1.245.616-1.937.619-.69 1.728-.691.93.001 1.432.524.499.526.5 1.487 0 .315-.05.638-.02.116-.064.156t-.142.04h-3.08q.02.844.418 1.245t1.23.403q.295 0 .564-.04a5 5 0 0 0 .682-.166l.117-.035a.3.3 0 0 1 .09-.016q.126 0 .125.177v.276q0 .127-.037.18a.44.44 0 0 1-.167.114 3.4 3.4 0 0 1-.701.205 4.2 4.2 0 0 1-.82.079m-5.424-.147q-.195 0-.195-.197v-4.58q0-.195.195-.195h.432q.097 0 .153.039.054.04.072.146l.07.55q.265-.284.499-.452a1.73 1.73 0 0 1 1.02-.323q.119 0 .235.01.168.02.168.176v.53q.001.176-.178.177-.087 0-.17-.01a2 2 0 0 0-.18-.01q-.786 0-1.346.47v3.472q0 .197-.195.197zm-2.249 0q-.195 0-.196-.197v-4.58q0-.195.196-.195h.579q.195 0 .195.195v4.58q0 .197-.195.197zm.295-5.856q-.285 0-.447-.16a.58.58 0 0 1-.161-.428q0-.264.16-.426.163-.163.448-.163.283 0 .446.163.16.162.16.426a.58.58 0 0 1-.16.427.6.6 0 0 1-.446.161m-3.625 5.856q-.197 0-.197-.197v-4.01H.195Q0 8.754 0 8.557v-.245q0-.098.043-.147.045-.049.173-.07l.705-.087v-.804q0-1.637 1.57-1.638.372 0 .784.109.107.027.152.088.044.058.044.205v.255q.001.186-.148.186-.087 0-.248-.029c-.11-.02-.23-.03-.369-.03q-.45 0-.633.172-.181.173-.181.564v.903h1.324q.197 0 .197.195v.373q0 .196-.197.197H1.892v4.01q0 .197-.196.197Z"/></svg>���������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amazongames.svg������������������������������0000664�0000000�0000000�00000010436�14753064456�0026131�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.846 11.143c.09-.304.082-.686.082-1.079V7.252c0-.135.033-.52-.02-.6s-.26-.062-.404-.062c-.412 0-.595-.057-.632.336l-.016.01c-.323-.247-.63-.482-1.223-.47l-.197.015a2 2 0 0 0-.336.082 1.62 1.62 0 0 0-.886.89 3 3 0 0 0-.171.607 2 2 0 0 0-.031.62c.03.195.012.365.05.535.145.61.43 1.083.955 1.31a1.67 1.67 0 0 0 .917.114 1.7 1.7 0 0 0 .59-.22l.223-.164h.005a1.9 1.9 0 0 1-.01.556c-.091.526-.246.704-.771.797a1.5 1.5 0 0 1-.446.011l-.435-.057-.638-.154a.14.14 0 0 0-.103.088 3.3 3.3 0 0 0 .02.643c.073.122.31.17.457.218.494.157 1.292.233 1.828.047.613-.21 1-.624 1.192-1.26zM2.756 8.1v1.445a1.3 1.3 0 0 1-.356.176c-.872.274-1.202-.34-1.202-1.144a2.1 2.1 0 0 1 .093-.73c.077-.199.195-.372.39-.45.068-.03.152-.023.227-.054a1.8 1.8 0 0 1 .642.1l.193.09c.047.083.014.438.014.567zm3.509 2.756a2.1 2.1 0 0 0 .689-.265l.274-.202c.07.092.043.231.134.301s.798.096.865 0c.068-.095.037-.302.037-.446V8.396c0-.36.027-.763-.057-1.046-.197-.667-.76-.896-1.632-.887l-.466.03a5 5 0 0 0-.788.172c-.112.04-.283.068-.33.17-.045.104-.036.647.026.69.093.063.536-.083.66-.11.357-.077 1.173-.156 1.372.1.144.184.12.544.116.876-.082.02-.224-.035-.31-.052L6.46 8.3a1.5 1.5 0 0 0-.435.014c-.676.116-1.154.373-1.31 1-.243.963.592 1.746 1.549 1.544ZM6.068 9.07c.098-.058.22-.042.342-.09.276 0 .509.043.74.053.043.093.013.563.01.705-.196.261-.988.521-1.257.15-.194-.275-.064-.684.165-.818m3.175 1.318c0 .144-.018.287.072.342.05.03.172.016.247.016.173 0 .765.036.83-.047.082-.103.035-.645.035-.834v-2.26a1.6 1.6 0 0 1 .503-.188c.279-.065.648-.066.787.12.123.164.104.457.104.745v1.565c0 .213-.048.807.072.881.074.045.412.016.528.016s.457.028.53-.026c.097-.074.056-.6.056-.788q0-1.164.005-2.33c.04-.066.202-.093.28-.12.342-.12.875-.2 1.041.134.082.173.057.488.057.742v1.552c0 .185-.041.687.036.788.046.06.151.047.254.047.155 0 .77.027.84-.026.102-.078.061-.39.061-.565v-1.61c0-.68.053-1.298-.247-1.685-.537-.7-1.953-.325-2.472.12h-.02c-.199-.334-.54-.522-1.081-.514l-.218.016a2.5 2.5 0 0 0-.435.098 3.3 3.3 0 0 0-.523.247l-.254.156c-.092-.11-.036-.292-.165-.368-.05-.03-.714-.038-.807-.015a.17.17 0 0 0-.088.057c-.055.082-.027.625-.027.782zm7.936.175c.51.32 1.426.39 2.15.208.182-.045.537-.11.6-.259a4 4 0 0 0 .01-.622.15.15 0 0 0-.066-.077c-.065-.028-.165.02-.228.036l-.534.098a2 2 0 0 1-.59.022 3 3 0 0 1-.412-.058c-.406-.123-.675-.425-.68-.943.097-.043.413-.01.544-.01h1.32c.19 0 .493.04.61-.047.155-.116.144-.894.093-1.144-.17-.85-.682-1.318-1.71-1.3l-.124.005-.373.05c-.4.102-.746.287-.968.566a2.1 2.1 0 0 0-.306.494c-.203.482-.259 1.353-.087 1.93.138.46.381.818.751 1.05zm.305-2.682c.093-.268.247-.463.518-.55l.232-.044c.615-.005.784.313.777.928-.083.038-.35.01-.467.01h-1.117c-.034-.086.03-.27.057-.347zm6.398 1.087c-.247-.428-.784-.595-1.264-.792-.227-.094-.6-.172-.653-.435-.113-.564 1.045-.4 1.388-.316.096.023.317.11.378.03s.032-.27.032-.393c0-.1.013-.23-.027-.295-.059-.1-.215-.128-.336-.165a3 3 0 0 0-.964-.14l-.296.022a2.4 2.4 0 0 0-.538.144 1.22 1.22 0 0 0-.659.642c-.184.455-.01 1.058.265 1.28.33.266.777.417 1.2.59.215.088.458.138.504.394.122.697-1.196.444-1.59.342-.083-.022-.343-.11-.413-.072-.094.053-.057.317-.057.46 0 .083-.012.2.021.254.1.165.645.27.886.317.956.19 1.806-.134 2.113-.736.154-.29.182-.834.01-1.133zm-3.357 4.088-.18.01a3 3 0 0 0-.524.058 3.6 3.6 0 0 0-1.114.39c-.083.05-.412.21-.352.36.047.12.524.02.678.01.305-.02.454-.046.742-.045h.528a3 3 0 0 1 .472.03.7.7 0 0 1 .284.136c.12.103.098.452.057.616a11.5 11.5 0 0 1-.476 1.554c-.034.082-.3.602-.005.54.133-.03.404-.33.487-.43.412-.528.672-1.134.865-1.896.045-.178.147-.874.046-1.036-.165-.27-1.037-.306-1.508-.297zm-.643 1.483-.472.207-.78.295c-.697.27-1.47.446-2.245.638l-.907.17-1.067.14-.342.026c-.136.03-.297.012-.45.036a7 7 0 0 1-1.02.042l-.772.005-.555-.02-.357-.02c-.082-.017-.18-.006-.27-.022l-1.082-.12c-.32-.06-.665-.081-.97-.164l-.253-.042-.941-.21c-.673-.21-1.341-.375-1.97-.617-.696-.27-1.424-.564-2.04-.928l-.61-.352c-.112-.066-.202-.164-.38-.164-.131.065-.171.15-.081.305a1 1 0 0 0 .238.233l.28.26c.404.32.81.65 1.248.937.38.247.783.457 1.18.69l.597.284c.34.15.694.305 1.05.445l.918.305c.495.165 1.033.248 1.566.38l1.124.163.362.027.612.046h.222a2.5 2.5 0 0 0 .653.006l.233-.006.285-.005.974-.077c.437-.098.897-.083 1.31-.208l.954-.232a16 16 0 0 0 1.673-.586 12 12 0 0 0 1.947-1.036c.211-.142.51-.247.565-.544.047-.25-.21-.347-.427-.287z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amazoniam.svg��������������������������������0000664�0000000�0000000�00000001665�14753064456�0025607�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 3.429V20.57c0 .258-.171.429-.429.429H.43C.17 21 0 20.829 0 20.571V3.43C0 3.17.171 3 .429 3H23.57c.258 0 .429.171.429.429M.857 20.143h22.286V3.857H.857Zm12.857-5.572h6.429v.858h-6.429ZM19.286 12h2.143v.857h-2.143zm-5.572 0h3.429v.857h-3.429ZM2.143 18.429V11.57q0-.171.128-.3.129-.128.3-.128h.858v-3c0-1.5 1.542-2.7 3.428-2.7s3.429 1.2 3.429 2.7v3h.857a.43.43 0 0 1 .428.428v6.858q0 .171-.128.3-.129.128-.3.128H2.57a.43.43 0 0 1-.428-.428M3 18h7.714v-1.714H9v-.857h1.714v-1.286H9v-.857h1.714V12H3Zm5.143-3.429c0 .558-.343 1.029-.857 1.2v.943h-.857v-.943a1.25 1.25 0 0 1-.858-1.2c0-.685.6-1.285 1.286-1.285.729 0 1.286.6 1.286 1.285m-3.857-3.428h5.143v-3c0-.986-1.2-1.843-2.572-1.843-1.371 0-2.571.857-2.571 1.843Zm3 3.429a.43.43 0 0 0-.429-.429.46.46 0 0 0-.428.429.43.43 0 0 0 .428.428c.257 0 .429-.171.429-.429M20.57 9.429h.858v.857h-.858zm-6.857 0h4.715v.857h-4.715z"/></svg>���������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amazonlumberyard.svg�������������������������0000664�0000000�0000000�00000014361�14753064456�0027204�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.136 4.01a2.3 2.3 0 0 0-.441.042 2.13 2.13 0 0 0-1.74 2.195q-.107.084-.2.178l-.21.219q-.206.21-.417.416c-.282.274-.574.541-.867.812-.584.54-1.186 1.088-1.725 1.715a7.3 7.3 0 0 0-.73 1.014 4.9 4.9 0 0 0-.65 1.791 4 4 0 0 0-.04.324l-.008.08-.004.074-.005.15-.002.038-.002.049v.078l.002.16.006.152c-.884-.293-2.123-.481-3.184-.468-1.235.013-2.132.273-2.588.75a1.14 1.14 0 0 0-.33.842c.034.95 1.117 1.511 2.912 1.511h.1c1.257-.015 2.762-.348 3.613-.767a2.06 2.06 0 0 1 .07 1.09 1.7 1.7 0 0 1-.175.465 1.4 1.4 0 0 1-.31.373 1.5 1.5 0 0 1-.419.24 1.8 1.8 0 0 1-.5.1l.047.634h.012c1.306.771 1.579 1.622 1.74 1.702.215.105 1.023-.188.877-.854-.086-.392-.545-.675-.975-.861q.12-.013.238-.032l.051-.002.05-.01.05-.011a5 5 0 0 0 .234-.043l.004-.002c1.225-.252 2.32-.713 3.202-1.317.906.575 1.89 1.398 2.22 2.15-.03.129-.138.261-.261.274l.334.618c1.054-.532 1.809-.238 2.326.002l.178.091c.027.015.003 0 .027.016l.088-.031c.15-.095.535-.454.44-.82-.12-.453-.415-.626-.7-.575-.286.052-1.01.506-.955.07l-.004-.003c.042-.33.088-.922.004-1.592-.16-1.247-.709-2.214-1.594-2.817a3.5 3.5 0 0 0 .139-.62c.614.216 1.207.389 1.973.458.276.025.902.03 1.373.025l.064.237a.01.01 0 0 0 .014.006l.256-.092a1 1 0 0 1 .07-.024c.022-.006.034-.006.035.012-.004.05-.017.12-.023.147l-.057.287-.031.166c-.006.062.031.096.107.066.066-.03.153-.071.157-.074.438-.182.913-.443 1.351-.629.21-.088.31-.3.352-.504a1.3 1.3 0 0 0-.008-.404l.691.058.004-.006.207-.552.588.058.207-.552.586.058.207-.553.586.06.207-.552.588.059.205-.553.588.059.205-.553.346.035.086-.506.002-.02-.299-1.414-8.383 3.315a.03.03 0 0 0-.01.047l.381.383q.01.011.03.008l.17-.057a.104.104 0 0 1 .13.057l.096.234s.01.03-.041.03l-.051-.003-.205-.011a3 3 0 0 1-.375-.053c-.062-.01-.123-.03-.184-.043q-.09-.024-.183-.051l-.18-.064-.176-.075a5 5 0 0 1-.346-.173q-.085-.046-.17-.1a11 11 0 0 1-.503-.332q-.167-.118-.336-.24l-.022-.018c.126-1.483.522-2.098.834-2.352a.8.8 0 0 1 .356-.175 2 2 0 0 0-.022.38l.434.034.031-.11c.008-.036.021-.07.031-.105.01-.036.025-.07.037-.104s.03-.066.041-.1c.013-.033.032-.064.047-.099.015-.03.035-.065.051-.098q.055-.1.117-.2l.13-.216q.065-.11.126-.232.03-.062.059-.127c.019-.044.037-.085.054-.135l.024-.07.014-.035.01-.031.015-.06.01-.03.002-.006.008-.026.005-.03.004-.028v-.04c0-.015 0-.02-.006-.05l-.007-.03-.01-.027a1.47 1.47 0 0 0-.4-.607 2 2 0 0 0-.214-.174l.15.006c.146.005.267.008.352.008.085.002.133 0 .133 0l.053-.528s-.05-.01-.135-.023a8 8 0 0 0-.353-.053l-.06-.008.048-.01a2.26 2.26 0 0 0-2.174-1.753zm.102.643a1.62 1.62 0 0 1 1.394 1.059l-.385-.027a21 21 0 0 0-.578-.03 20 20 0 0 0-.508-.01l-.207.002c-.062 0-.108.003-.152.004l-.135.006v.002q-.039 0-.078.002a3.1 3.1 0 0 0-.974.217 1.48 1.48 0 0 1 .607-.95q.02-.001.047-.01.038-.004.086-.01c.03 0 .063-.007.1-.005h.113q.059.008.119.014c.04.01.084.012.125.023.04.012.082.022.121.04a1 1 0 0 1 .115.046c.038.016.07.038.104.055.03.02.064.039.09.059a1 1 0 0 1 .15.125l.01.011.256-.177-.01-.022a1.5 1.5 0 0 0-.164-.207c-.03-.033-.063-.063-.098-.098-.037-.03-.073-.066-.117-.097zm-.483 1.645h.067l.074.002c.176.008.365.03.545.064.363.07.721.186 1.037.354.156.084.303.182.42.293a.9.9 0 0 1 .209.28l-.002.013-.01.031-.008.022-.015.046c-.01.03-.027.066-.041.1q-.02.05-.043.102c-.014.034-.034.068-.051.103l-.05.106a7 7 0 0 0-.114.224l-.026.051c-.103-.012-.506-.038-.94.297-.554.43-.91 1.25-1.06 2.447q-.036-.027-.07-.05a10 10 0 0 0-.363-.231l-.186-.111-.191-.104a6 6 0 0 0-.795-.35 3 3 0 0 0-.207-.064 4 4 0 0 0-.211-.06c-.07-.018-.142-.04-.21-.051l-.206-.041-.086.318c.133.047.268.09.389.14q.091.036.185.077a6 6 0 0 1 .541.268 7 7 0 0 1 .348.203l.17.111.166.113.164.12.164.122q.163.123.324.252l.324.26c.22.174.445.35.686.516q.089.06.182.119a5 5 0 0 0 .586.326q.103.046.209.09.105.039.214.076.11.035.221.065.111.027.223.049.226.04.455.056.112.006.227.008l.093-.002a.6.6 0 0 0 .248-.063l.055-.027s.052-.03.1-.07a1 1 0 0 1 .13-.112.5.5 0 0 1 .178-.08.3.3 0 0 1 .155.008c.013.006.025.007.039.014l.039.021.006.002.007.073a1 1 0 0 1-.005.181.72.72 0 0 1-.295.5l-.002.002-.075.051c-.026.018-.054.029-.082.045q-.043.023-.09.041l-.078.031a4 4 0 0 1-.037-.228 18 18 0 0 1-1.29-.024c-.887-.08-1.516-.31-2.31-.6a23 23 0 0 0-1.806-.595.897.897 0 0 0-1.116.588q-.127.416-.005 1.049c.248 1.282.255 2.291.017 2.771a8.6 8.6 0 0 1-2.398.86h-.004l-.092.02-.131.023a4 4 0 0 1-.438.052 2 2 0 0 0 .26-.35c.116-.202.2-.423.25-.648a2.7 2.7 0 0 0-.11-1.502c-.016-.053-.04-.105-.06-.156s-.048-.102-.072-.152l-.062-.135a3 3 0 0 1-.172-.502 3.6 3.6 0 0 1-.088-.54 4 4 0 0 1-.018-.278l-.002-.14v-.097l.004-.037.01-.15.004-.075.006-.066c.009-.09.018-.18.035-.271a4.3 4.3 0 0 1 .562-1.563c.191-.323.417-.63.666-.922.501-.585 1.084-1.12 1.67-1.66q.44-.407.877-.828c.144-.14.291-.283.432-.43l.031-.035.034.04c.052.059.106.131.19.2.073.073.168.144.274.211a2.1 2.1 0 0 0 .563.248 3.5 3.5 0 0 0 .65.117 5 5 0 0 0 .723 0l-.004-.277a4.4 4.4 0 0 1-.67-.09 3 3 0 0 1-.55-.18 2 2 0 0 1-.151-.076 1.6 1.6 0 0 1-.252-.17 1.2 1.2 0 0 1-.172-.174c-.049-.052-.077-.107-.107-.148-.026-.043-.04-.08-.055-.104q-.001-.003-.004-.007l.05-.032.058-.029a2.5 2.5 0 0 1 .748-.254 2.5 2.5 0 0 1 .394-.031m.52.484c-.217.009-.388.13-.38.27s.193.248.411.24c.22-.008.389-.13.379-.27-.007-.139-.19-.246-.408-.24zM23.26 9.24l.052.286a.09.09 0 0 1-.105.113c-.032-.006-.063.005-.074.035l-.192.512-.588-.059-.205.553-.588-.06-.205.554-.588-.06-.205.554-.588-.06-.207.553-.586-.06-.183.49a.09.09 0 0 1-.096.058l-.047-.004c-.036-.004-.254-.024-.265-.059l-.542-1.265zm-6.018 2.495c.184-.013.305.077.388.24.013.01.487 1.213.479 1.195a.37.37 0 0 1-.05.436c-.083.095-.28.16-.401.21-.065.029-.066-.013-.09-.081l-.053-.153.024-.042a1.4 1.4 0 0 0 .138-.45 1.5 1.5 0 0 0-.007-.457l-.016-.076-.01-.039-.012-.049v-.002a.3.3 0 0 0-.101-.148 1.3 1.3 0 0 0-.276-.172 1 1 0 0 0-.109-.041c-.039-.011-.077-.024-.117-.03a1 1 0 0 0-.117-.011l-.02-.002c-.016-.007-.046-.061-.033-.086a.45.45 0 0 1 .383-.242m-6.544 1.097h.002a.3.3 0 0 1 .108.01c.635.176 1.15.359 1.604.524-.075 1.032-.725 2.01-1.756 2.773.089-.747-.028-1.661-.17-2.392-.076-.397-.047-.624-.01-.745a.25.25 0 0 1 .222-.17m-7.771.87c1.119-.014 2.494.224 3.283.556l.01.045a4 4 0 0 0 .138.446c-.679.348-2.09.697-3.353.71-1.147.012-2.31-.25-2.332-.86a.47.47 0 0 1 .146-.354c.318-.334 1.089-.532 2.108-.543m9.75 1.123c1.514 1.142 1.263 3.371 1.188 3.855l-.215.045c-.43-.977-1.59-1.862-2.266-2.314.558-.474 1-1.01 1.293-1.586"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amazonluna.svg�������������������������������0000664�0000000�0000000�00000002263�14753064456�0025773�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.757 15.403a4.6 4.6 0 0 0-.816-.367h-.003c-.044-.015-.087-.025-.13-.038-.508-.155-2.4-.85-3.478-2.812v.002l-1.926-3.334c-.81-1.422-.673-3.685-.585-4.542a5 5 0 0 0 .04-.324l.003-.02h-.001q.009-.115.01-.231C14.87 1.797 13.3.225 11.36.225S7.848 1.798 7.848 3.737c0 .076.007.153.011.23h-.004l.006.045q.011.133.032.265c.09.836.245 3.187-.606 4.624h.002l-2.758 4.775v-.003l-.032.058-.259.45c-.02.037-.035.077-.056.114-.285.493-.72 1.206-1.198 1.85-.4.54-1.024 1.073-1.637 1.433l.007.002c-.056.028-.114.053-.168.086a2.4 2.4 0 0 0-.863.874 2.425 2.425 0 0 0 .887 3.312c.606.35 1.298.4 1.918.211l-.004.006a31 31 0 0 1 2.836-.838c1.003-.229 2.488-.285 3.332-.296h.96c4.284.04 6.455 1.858 6.455 1.858l.004-.004c.175.139.355.27.553.384a4.484 4.484 0 0 0 6.128-1.642 4.477 4.477 0 0 0-1.637-6.128m-5.03 2.267c-.449.774-1.086 1.157-2.144 1.238-1.057.08-1.286.142-3.223.142s-2.23-.06-3.223-.142c-.992-.083-1.695-.464-2.144-1.238-.448-.774-.41-1.66 0-2.475.411-.816.674-1.446 1.437-2.768s1.067-1.822 1.785-2.814c.72-.992 1.249-1.238 2.143-1.238s1.464.332 2.143 1.238.872 1.256 1.714 2.715 1.056 1.952 1.507 2.867c.456.915.45 1.7.004 2.475"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amazonmusic.svg������������������������������0000664�0000000�0000000�00000011642�14753064456�0026155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.845 9.408c-1.39 1.02-3.405 1.563-5.142 1.563a9.33 9.33 0 0 1-6.277-2.383c-.131-.117-.014-.277.142-.185a12.7 12.7 0 0 0 6.285 1.658 12.5 12.5 0 0 0 4.791-.977c.236-.098.433.154.203.324zm.579-.656c-.179-.226-1.175-.109-1.623-.055-.137.016-.158-.103-.035-.187.796-.556 2.099-.396 2.25-.21.155.187-.04 1.488-.785 2.11-.115.096-.224.044-.172-.083.168-.416.543-1.35.365-1.575m-1.592-4.17v-.54c0-.082.062-.137.137-.137h2.435c.078 0 .14.055.14.135v.464c0 .078-.066.18-.185.34L15.1 6.635c.468-.01.965.06 1.39.297a.24.24 0 0 1 .129.212v.574c0 .082-.089.172-.179.123a2.82 2.82 0 0 0-2.572.006c-.086.045-.174-.045-.174-.125v-.548c0-.088.002-.238.09-.37l1.462-2.089h-1.271c-.078 0-.142-.053-.144-.135zm4.808-.747c1.1 0 1.694.94 1.694 2.133 0 1.153-.656 2.068-1.694 2.068-1.079 0-1.665-.94-1.665-2.109 0-1.177.594-2.092 1.665-2.092m.006.771c-.545 0-.58.739-.58 1.202s-.006 1.449.574 1.449c.574 0 .601-.796.601-1.282 0-.318-.014-.7-.11-1.001-.083-.263-.249-.368-.485-.368m-6.008 3.342c-.049.04-.14.045-.174.016-.254-.195-.425-.492-.425-.492-.406.412-.695.537-1.222.537-.622 0-1.108-.383-1.108-1.148a1.25 1.25 0 0 1 .79-1.204c.402-.177.964-.208 1.393-.257 0 0 .035-.461-.09-.63a.52.52 0 0 0-.417-.19c-.273 0-.54.147-.593.433-.014.082-.074.151-.14.143l-.707-.076a.13.13 0 0 1-.11-.154c.163-.865.949-1.128 1.655-1.128.36 0 .83.097 1.115.367.36.335.327.78.327 1.268v1.149c0 .344.143.496.279.68.047.068.057.148-.002.198-.152.125-.57.488-.57.488zm-.746-1.797v-.16c-.536 0-1.102.115-1.102.743 0 .318.166.533.451.533.206 0 .394-.127.513-.335.144-.256.138-.494.138-.781M2.928 7.948c-.047.041-.138.045-.173.016-.254-.195-.424-.492-.424-.492-.408.412-.696.537-1.223.537-.623 0-1.107-.383-1.107-1.148a1.25 1.25 0 0 1 .79-1.204c.401-.177.963-.207 1.392-.257 0 0 .035-.461-.09-.63a.52.52 0 0 0-.417-.19c-.274 0-.539.148-.592.433-.015.082-.076.151-.14.143l-.71-.076a.13.13 0 0 1-.108-.154c.162-.865.95-1.128 1.655-1.128.361 0 .83.097 1.116.367.359.335.324.78.324 1.268v1.149c0 .344.144.496.279.68.047.068.057.148-.002.198-.152.125-.57.488-.57.488zm-.745-1.797v-.16c-.535 0-1.101.115-1.101.743 0 .318.164.533.45.533.206 0 .395-.127.514-.334.143-.257.137-.495.137-.782m2.913-.334v2.002a.14.14 0 0 1-.14.137h-.738a.137.137 0 0 1-.14-.137V4.053a.14.14 0 0 1 .14-.138h.691a.137.137 0 0 1 .138.138v.482h.014c.18-.476.519-.7.974-.7.464 0 .753.224.962.7a1.05 1.05 0 0 1 1.022-.7c.312 0 .65.127.857.415.236.318.187.779.187 1.185v2.386c0 .076-.064.135-.144.135h-.738a.137.137 0 0 1-.133-.135V5.817c0-.16.014-.558-.02-.708-.056-.256-.222-.328-.438-.328a.49.49 0 0 0-.44.312c-.077.19-.07.508-.07.724V7.82c0 .076-.064.135-.144.135h-.739a.137.137 0 0 1-.133-.135V5.817c0-.423.068-1.042-.457-1.042-.534 0-.513.603-.513 1.042zm16.808 2.002a.137.137 0 0 1-.138.137h-.74a.137.137 0 0 1-.138-.137V4.053a.137.137 0 0 1 .138-.138h.683c.082 0 .14.064.14.107v.576h.014c.205-.517.496-.763 1.009-.763.332 0 .656.12.863.445.193.304.193.813.193 1.178v2.379a.14.14 0 0 1-.141.119h-.743a.14.14 0 0 1-.131-.119V5.552c0-.763-.293-.786-.464-.786-.197 0-.357.154-.424.296a1.7 1.7 0 0 0-.123.722zM.19 20.059q-.19.002-.19-.192v-4.449q0-.19.19-.19h.425q.094 0 .148.039.053.037.072.143l.057.304q.92-.628 1.79-.628.893 0 1.209.677.947-.677 1.895-.677.662 0 1.016.37.354.375.354 1.058v3.354q0 .19-.192.19H6.4q-.192.002-.193-.19v-3.085q-.001-.478-.18-.706-.186-.23-.575-.23-.7 0-1.41.43a1 1 0 0 1 .01.142v3.448q0 .191-.19.191h-.566q-.19.002-.19-.19v-3.085q0-.478-.183-.706-.184-.23-.575-.23-.728 0-1.399.42v3.6q.002.192-.19.191zm9.731.143q-.679 0-1.044-.382-.363-.381-.363-1.077v-3.32q-.001-.194.191-.193h.564q.194 0 .193.19v3.022q0 .513.201.757.201.242.642.242.69 0 1.389-.458v-3.565q-.002-.19.19-.19h.565q.193 0 .192.19v4.452q0 .188-.192.188h-.41a.26.26 0 0 1-.15-.037q-.052-.038-.072-.143l-.066-.333q-.892.656-1.83.657m5.44 0q-.806 0-1.446-.267a.4.4 0 0 1-.158-.105q-.043-.058-.043-.18v-.269q-.001-.172.115-.172.066 0 .238.058.635.2 1.313.199.471-.001.714-.181.245-.181.244-.523a.5.5 0 0 0-.148-.373 1.6 1.6 0 0 0-.541-.285l-.815-.304q-1.064-.391-1.062-1.333-.001-.623.484-1.001.483-.382 1.267-.382a3.5 3.5 0 0 1 1.217.22.34.34 0 0 1 .164.098q.046.062.047.185v.258q0 .172-.123.172a.9.9 0 0 1-.222-.047 3.6 3.6 0 0 0-1.035-.154q-.919.001-.92.62 0 .247.155.39.153.143.603.315l.746.288q.566.216.815.519.248.297.248.775 0 .677-.507 1.077t-1.35.4zm3.065-.144q-.192.002-.193-.19v-4.45q.001-.19.193-.19h.564q.192 0 .193.19v4.452q-.001.188-.193.188zm.287-5.688q-.277 0-.437-.156a.56.56 0 0 1-.158-.414.56.56 0 0 1 .158-.414.6.6 0 0 1 .437-.158q.276 0 .435.158a.55.55 0 0 1 .158.414q.001.255-.158.414a.6.6 0 0 1-.435.156m4.002 5.793q-1.13 0-1.727-.642-.6-.644-.6-1.863 0-1.21.618-1.873.617-.661 1.748-.662.517 0 1.015.183.106.036.148.094c.042.058.043.103.043.19v.257q0 .19-.123.19a.6.6 0 0 1-.154-.028 2.8 2.8 0 0 0-.796-.113q-.804 0-1.159.404c-.355.404-.353.7-.353 1.293v.123q0 .864.36 1.272.36.403 1.134.404.4.001.861-.134a.6.6 0 0 1 .144-.028q.124 0 .125.19v.259q0 .124-.039.18a.33.33 0 0 1-.152.103q-.47.201-1.093.2z"/></svg>����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amazonpay.svg��������������������������������0000664�0000000�0000000�00000003470�14753064456�0025626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.378 4.995q-.56-.485-1.74-.485-.585 0-1.168.106-.585.105-.983.28a.5.5 0 0 0-.199.13q-.05.068-.05.242v.335q0 .224.162.224a.3.3 0 0 0 .106-.019l.093-.03a6.4 6.4 0 0 1 1.827-.287q.745 0 1.045.274.298.274.298.945v.82a6.7 6.7 0 0 0-1.567-.211q-1.093 0-1.74.54-.646.541-.646 1.448 0 .846.522 1.35.522.502 1.417.502.534 0 1.075-.21.541-.211.988-.597l.063.41q.037.236.274.236h.534q.248 0 .249-.249V6.5q0-1.02-.56-1.504m-.609 4.6q-.41.31-.858.472a2.5 2.5 0 0 1-.857.162q-.485 0-.746-.255t-.261-.727q0-1.082 1.404-1.082.323 0 .665.044.342.045.653.118zM8.773 6.402a3 3 0 0 0-.516-1.025 2.2 2.2 0 0 0-.82-.647 2.55 2.55 0 0 0-1.082-.224q-.56 0-1.094.211a3.5 3.5 0 0 0-1.007.622l-.062-.398q-.037-.249-.286-.249h-.547q-.249 0-.249.249v8.366q0 .248.249.248h.733q.249 0 .249-.248v-2.909a2.77 2.77 0 0 0 1.926.734q.61 0 1.106-.242.497-.243.845-.678.35-.435.54-1.057a4.7 4.7 0 0 0 .194-1.392 4.7 4.7 0 0 0-.18-1.361m-2.791 3.735q-.846 0-1.64-.597V6.072q.78-.57 1.665-.571 1.69 0 1.69 2.324 0 2.313-1.715 2.312m13 1.963 2.736-6.961a1 1 0 0 0 .086-.299q0-.149-.174-.149h-.696q-.198 0-.274.063-.075.062-.149.274L18.833 9.85l-1.74-4.822q-.075-.212-.15-.274-.074-.063-.274-.063h-.746q-.174 0-.174.15 0 .086.087.298l2.4 5.917-.237.634q-.21.597-.472.82-.261.225-.733.224-.212 0-.336-.025a1 1 0 0 0-.186-.025q-.186 0-.187.236v.323q0 .174.063.255a.36.36 0 0 0 .199.118q.31.086.708.087.71 0 1.15-.373.442-.372.778-1.23m2.71 4.423c-2.627 1.94-6.436 2.97-9.717 2.97-4.597 0-8.737-1.699-11.87-4.528-.246-.222-.027-.525.27-.353 3.38 1.967 7.559 3.151 11.876 3.151a23.6 23.6 0 0 0 9.06-1.853c.444-.19.816.292.382.613m1.093-1.248c.336.43-.374 2.204-.691 2.996-.096.24.11.336.327.155 1.41-1.18 1.774-3.65 1.485-4.007-.286-.354-2.75-.659-4.254.397-.232.163-.192.387.064.356.847-.101 2.733-.328 3.069.103"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amazonprime.svg������������������������������0000664�0000000�0000000�00000011534�14753064456�0026151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.805 12.403c-.07-.096-.144-.175-.144-.354v-.594c0-.253.018-.484-.168-.658-.146-.14-.389-.19-.575-.19-.363 0-.769.136-.854.585-.009.047.026.072.057.08l.37.04c.035-.002.06-.036.067-.07.032-.155.161-.23.307-.23.079 0 .168.03.214.099.054.079.047.186.047.277v.05c-.222.024-.511.041-.719.132a.65.65 0 0 0-.407.624c0 .397.25.595.572.595.272 0 .42-.064.63-.277.069.1.091.15.218.255a.08.08 0 0 0 .09-.01l.294-.252c.032-.026.026-.067.001-.102m-.68-.576c0 .149.004.272-.07.405-.061.107-.158.173-.265.173-.147 0-.232-.112-.232-.277 0-.325.291-.384.568-.384zm5.687.576c-.07-.096-.144-.175-.144-.354v-.594c0-.253.018-.484-.168-.658-.147-.14-.39-.19-.575-.19-.364 0-.77.136-.854.585-.01.047.026.073.057.08l.37.04c.034-.002.06-.036.066-.07.032-.155.162-.23.307-.23.079 0 .168.03.214.099.054.079.047.186.047.277v.05c-.221.025-.511.041-.718.132a.65.65 0 0 0-.408.624c0 .397.25.595.572.595.272 0 .42-.064.63-.277.069.1.092.15.219.255a.08.08 0 0 0 .09-.01v.001c.077-.068.216-.188.294-.253.03-.026.026-.067 0-.102m-.75-.171c-.061.107-.158.173-.265.173-.147 0-.232-.112-.232-.277 0-.325.292-.384.568-.384v.083c0 .149.004.272-.071.405m5.16.53h-.381a.07.07 0 0 1-.068-.07l-.001-1.96a.07.07 0 0 1 .073-.065h.354a.07.07 0 0 1 .068.055v.3h.008c.107-.268.256-.396.52-.396a.5.5 0 0 1 .446.23c.1.158.1.421.1.611v1.234a.073.073 0 0 1-.074.061h-.383a.07.07 0 0 1-.068-.061v-1.065c0-.214.025-.527-.238-.527-.093 0-.179.061-.221.156a.9.9 0 0 0-.061.371v1.056a.073.073 0 0 1-.074.07m-1.609-2.136c.567 0 .873.487.873 1.105 0 .598-.338 1.073-.873 1.073-.556 0-.86-.487-.86-1.093 0-.61.307-1.085.86-1.085m.004.4c-.282 0-.3.384-.3.623s-.004.75.296.75c.296 0 .31-.412.31-.663 0-.165-.007-.364-.057-.52-.043-.136-.128-.19-.25-.19m-7.061 1.736h-.382a.07.07 0 0 1-.069-.064v-1.96c0-.04.034-.07.074-.07h.356c.037.001.067.03.07.065v.256h.007c.092-.248.267-.363.502-.363.239 0 .389.115.496.363a.54.54 0 0 1 .527-.363c.16 0 .335.066.442.214.122.165.097.405.097.615v1.237c0 .039-.034.07-.074.07h-.382a.07.07 0 0 1-.068-.07v-1.04c0-.082.007-.288-.011-.366-.029-.132-.114-.17-.225-.17a.25.25 0 0 0-.228.161c-.04.1-.035.264-.035.376v1.039c0 .04-.033.07-.074.07h-.382a.07.07 0 0 1-.068-.07v-1.04c0-.218.035-.54-.236-.54-.274 0-.264.314-.264.54v1.04c0 .04-.033.07-.073.07m4.579-1.749v-.28a.07.07 0 0 1 .07-.07H8.46c.04 0 .072.028.072.07v.24c0 .04-.034.093-.094.176l-.65.929c.24-.006.496.03.716.153.049.028.062.07.066.11v.299c0 .04-.045.088-.092.064a1.45 1.45 0 0 0-1.327.002c-.043.023-.089-.024-.089-.065v-.284c0-.045 0-.123.047-.192l.753-1.081h-.656a.07.07 0 0 1-.072-.07m.817 2.16c-.092-.117-.606-.055-.838-.028-.07.009-.08-.052-.017-.097.41-.288 1.083-.205 1.16-.108.08.097-.02.771-.405 1.093-.059.05-.115.023-.089-.042.087-.216.28-.7.189-.818m-.299.341c-.717.529-1.756.81-2.651.81a4.8 4.8 0 0 1-3.239-1.235c-.067-.06-.007-.143.074-.096a6.5 6.5 0 0 0 3.24.86c.795 0 1.668-.166 2.472-.507.121-.05.223.08.104.168m15.53-.693q-.512 0-.788-.281-.275-.282-.275-.807 0-.538.281-.844t.782-.306q.384 0 .602.186.217.187.217.497a.53.53 0 0 1-.234.47q-.234.158-.688.158-.236 0-.41-.045.026.277.168.397t.432.12q.116 0 .225-.015.11-.014.304-.064a.2.2 0 0 1 .046-.008q.07 0 .07.095v.19q0 .067-.018.093a.15.15 0 0 1-.073.048 1.8 1.8 0 0 1-.64.116m-.137-1.299q.21 0 .306-.064.095-.064.095-.196 0-.26-.31-.26-.397 0-.46.487.165.033.369.033m-4.417 1.237q-.054 0-.08-.025-.024-.025-.024-.078V10.75q0-.058.025-.08.024-.024.079-.023h.297q.096 0 .116.09l.033.112q.22-.144.395-.205.176-.06.362-.06.372 0 .525.265.21-.14.397-.202.186-.062.385-.062.289 0 .449.16.159.162.159.452v1.46q0 .053-.023.078t-.08.025h-.398q-.053 0-.078-.025t-.025-.078v-1.328q0-.28-.252-.281-.225 0-.451.107v1.502q0 .054-.023.078-.023.025-.08.025h-.397q-.053 0-.08-.025-.024-.024-.024-.078v-1.328q0-.28-.252-.281-.232 0-.455.111v1.498q0 .054-.023.078-.023.025-.08.025zm-.918-2.44a.36.36 0 0 1-.252-.087.3.3 0 0 1-.095-.236q0-.15.095-.235a.36.36 0 0 1 .252-.087.36.36 0 0 1 .252.087q.096.086.096.235c0 .15-.032.178-.096.236a.36.36 0 0 1-.252.087m-.198 2.44q-.054 0-.079-.025-.025-.024-.025-.078V10.75q0-.058.025-.08.025-.024.079-.023h.397q.057 0 .08.022.023.023.023.081v1.907q0 .054-.023.078-.023.025-.08.025zm-1.653 0q-.054 0-.079-.025-.024-.024-.024-.078V10.75q0-.058.024-.08.025-.024.079-.023h.298q.095 0 .115.09l.054.224a1.2 1.2 0 0 1 .312-.259.7.7 0 0 1 .313-.076h.058q.057 0 .082.023t.025.08v.348q0 .054-.023.078-.023.025-.08.025l-.075-.004a1 1 0 0 0-.116-.004q-.095 0-.231.027a1 1 0 0 0-.232.068v1.39q0 .054-.022.078-.024.025-.081.025zm-2.477.852q-.054 0-.079-.023-.024-.023-.024-.08V10.75q0-.058.024-.08.025-.024.079-.023h.298q.095 0 .115.09l.03.108a.9.9 0 0 1 .3-.19 1 1 0 0 1 .357-.07q.402 0 .635.293.234.293.234.794 0 .344-.116.6a.94.94 0 0 1-.314.395.78.78 0 0 1-.455.138 1 1 0 0 1-.323-.053.8.8 0 0 1-.26-.15v.907q0 .057-.023.08t-.081.023zm.906-1.261q.232 0 .34-.157.11-.157.11-.497 0-.343-.107-.5-.108-.157-.343-.157a.8.8 0 0 0-.406.111v1.088a.76.76 0 0 0 .406.112"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amazonrds.svg��������������������������������0000664�0000000�0000000�00000002646�14753064456�0025631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.463.857 5.446 4.84l-.606.606L.857 1.463v3.251H0V.43A.43.43 0 0 1 .429 0h4.285v.857ZM24 .43v4.285h-.857v-3.25l-3.983 3.98-.606-.606L22.537.857h-3.251V0h4.285c.237 0 .429.192.429.429Zm-.857 18.857H24v4.285a.43.43 0 0 1-.429.429h-4.285v-.857h3.25l-3.982-3.983.606-.606 3.983 3.983Zm-.214-7.623c0-1.423-1.643-2.828-4.393-3.76l.274-.811c3.162 1.07 4.976 2.736 4.976 4.57 0 1.836-1.814 3.502-4.976 4.572l-.275-.812c2.751-.931 4.394-2.336 4.394-3.76Zm-21.834 0c0 1.363 1.538 2.73 4.113 3.66l-.291.806C1.944 15.057.238 13.43.238 11.664S1.944 8.27 4.917 7.197l.291.806c-2.575.93-4.113 2.297-4.113 3.66Zm4.35 7.497-3.982 3.983h3.251V24H.43a.43.43 0 0 1-.43-.429v-4.285h.857v3.25l3.983-3.982ZM12 8.265c-3.063 0-4.714-.79-4.714-1.114 0-.323 1.651-1.114 4.714-1.114 3.062 0 4.714.79 4.714 1.114 0 .323-1.652 1.114-4.714 1.114m.012 3.32c-2.932 0-4.726-.801-4.726-1.237V8.265c1.055.582 2.928.858 4.714.858s3.659-.276 4.714-.858v2.083c0 .436-1.785 1.237-4.702 1.237m0 3.272c-2.932 0-4.726-.8-4.726-1.237v-2.108c1.042.613 2.89.93 4.726.93 1.827 0 3.664-.317 4.702-.928v2.106c0 .437-1.785 1.237-4.702 1.237M12 17.793c-3.05 0-4.714-.82-4.714-1.24v-1.768c1.042.612 2.89.93 4.726.93 1.827 0 3.664-.317 4.702-.928v1.765c0 .422-1.664 1.241-4.714 1.241M12 5.18c-2.683 0-5.571.616-5.571 1.971v9.401c0 1.378 2.802 2.099 5.571 2.099s5.571-.721 5.571-2.099v-9.4c0-1.356-2.888-1.972-5.571-1.972"/></svg>������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amazonredshift.svg���������������������������0000664�0000000�0000000�00000002427�14753064456�0026646�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.639 9.932a.82.82 0 0 1-.822-.82.823.823 0 0 1 1.645 0c0 .452-.37.82-.823.82m-2.086 4.994a.823.823 0 0 1-.822-.822.822.822 0 0 1 1.645 0 .82.82 0 0 1-.823.822m-5.004-.833a.822.822 0 1 1 .002-1.644.822.822 0 0 1-.002 1.644m-2.083 4.578a.823.823 0 0 1-.823-.82.823.823 0 0 1 1.645 0c0 .452-.37.82-.822.82m9.173-11.236a1.68 1.68 0 0 0-1.68 1.676c0 .566.285 1.066.718 1.37l-.782 1.982a1.674 1.674 0 0 0-1.923 1.104l-1.753-.398a1.675 1.675 0 0 0-3.348.103c0 .432.169.823.438 1.12l-.764 1.79c-.028-.001-.053-.008-.08-.008a1.68 1.68 0 0 0-1.68 1.676 1.68 1.68 0 0 0 3.36 0c0-.593-.312-1.112-.778-1.41l.674-1.579c.161.052.33.088.508.088.661 0 1.228-.386 1.502-.94l1.856.42a1.68 1.68 0 0 0 3.327-.325c0-.5-.224-.943-.574-1.25l.822-2.083c.053.005.104.016.157.016a1.68 1.68 0 0 0 1.68-1.676 1.68 1.68 0 0 0-1.68-1.676M12 23.145c-4.17 0-7.286-1.252-7.286-2.37V4.79C6.14 5.938 9.131 6.547 12 6.547s5.86-.609 7.286-1.756v15.983c0 1.12-3.116 2.37-7.286 2.37M12 .856c4.293 0 7.286 1.274 7.286 2.419 0 1.143-2.993 2.418-7.286 2.418S4.714 4.418 4.714 3.275c0-1.146 2.993-2.42 7.286-2.42m8.143 2.419C20.143 1.147 15.947 0 12 0S3.857 1.147 3.857 3.274l.002.01h-.002v17.49C3.857 22.87 8.052 24 12 24c3.947 0 8.143-1.13 8.143-3.226V3.284h-.002z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amazonroute53.svg����������������������������0000664�0000000�0000000�00000005353�14753064456�0026345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 15.766c0 2.872-2.357 5.015-6.3 5.7-2.957.558-5.4 2.4-5.443 2.443q-.128.086-.257.086t-.257-.086c-.043-.043-2.486-1.885-5.443-2.443-3.943-.685-6.3-2.828-6.3-5.7 0-1.757.686-2.914 1.286-3.942.514-.9.985-1.672.985-2.743 0-2.272-1.757-3.772-1.8-3.772Q.343 5.181.3 5.01q0-.171.129-.3c0-.043 2.828-3.428 3.471-4.328.086-.086.171-.172.3-.172s.257.043.343.129c1.114 1.157 2.357 1.8 3.6 1.8 1.371 0 2.486-.6 3.514-1.972a.446.446 0 0 1 .686 0c1.028 1.372 2.143 1.972 3.514 1.972 1.243 0 2.486-.643 3.6-1.8.086-.086.214-.129.343-.129s.214.086.3.172c.643.9 3.471 4.286 3.471 4.328q.129.129.129.3-.043.172-.171.3c-.043 0-1.8 1.5-1.8 3.772 0 1.071.47 1.843.985 2.743.6 1.028 1.286 2.185 1.286 3.943m-.857 0c0-1.5-.6-2.528-1.157-3.514-.557-.9-1.115-1.886-1.115-3.171 0-2.1 1.2-3.557 1.8-4.157-.642-.729-2.185-2.658-2.957-3.643-1.157 1.114-2.528 1.714-3.857 1.714-1.5 0-2.743-.6-3.857-1.886-1.114 1.286-2.357 1.886-3.857 1.886-1.329 0-2.7-.6-3.857-1.714-.772.985-2.315 2.914-2.957 3.643.6.6 1.8 2.057 1.8 4.157 0 1.285-.558 2.271-1.115 3.171-.557.986-1.157 2.014-1.157 3.514 0 .9.386 3.943 5.572 4.886 2.614.472 4.842 1.886 5.57 2.4.73-.514 2.958-1.928 5.572-2.4 5.186-.943 5.572-3.986 5.572-4.886M20.57 13.11c.558.986.9 1.629.9 2.657 0 2.315-3.214 3.043-4.2 3.215-2.057.385-3.9 1.285-5.057 1.971q-.085.043-.214.043t-.214-.043c-1.157-.686-3-1.586-5.057-1.971-.986-.172-4.2-.9-4.2-3.215 0-1.028.342-1.671.9-2.657.6-1.028 1.328-2.314 1.328-4.028 0-1.372-.386-2.657-1.114-3.857-.086-.172-.086-.386.043-.515q.3-.385.643-.814a.47.47 0 0 1 .557-.129c1.071.6 2.143.9 3.257.9 1.371 0 2.528-.385 3.6-1.114a.55.55 0 0 1 .514 0c1.072.729 2.229 1.114 3.6 1.114 1.114 0 2.186-.3 3.257-.9a.47.47 0 0 1 .557.129q.343.429.643.814c.129.129.129.343.043.515-.728 1.2-1.114 2.485-1.114 3.857 0 1.714.728 3 1.328 4.028m.043 2.657c0-.771-.257-1.328-.814-2.228-.643-1.114-1.414-2.486-1.414-4.457 0-1.457.343-2.786 1.071-4.072q-.128-.171-.257-.3c-1.071.515-2.186.815-3.343.815A7.1 7.1 0 0 1 12 4.409a7.1 7.1 0 0 1-3.857 1.115q-1.714 0-3.343-.815-.129.129-.257.3a8.04 8.04 0 0 1 1.071 4.072c0 1.971-.771 3.343-1.414 4.457-.557.9-.814 1.457-.814 2.228 0 1.672 2.914 2.272 3.471 2.4 2.1.386 3.9 1.2 5.143 1.886 1.243-.686 3.043-1.5 5.143-1.886.557-.128 3.471-.728 3.471-2.4m-4.885-3.471q.471.429.471 1.157 0 .814-.557 1.286-.6.471-1.586.471-.771 0-1.5-.3v-.685q.9.3 1.5.3.643 0 .986-.258.3-.3.3-.814 0-.986-1.243-.986-.386 0-.771.043v-.557l1.714-1.843h-2.4v-.685h3.3v.642l-1.672 1.8h.172q.814 0 1.286.429m-4.758-.171q.472.471.472 1.285t-.557 1.329q-.6.471-1.543.471-.814 0-1.586-.3v-.685q.943.3 1.586.3.6 0 .943-.258.343-.3.343-.814 0-.6-.3-.857-.343-.257-1.029-.257-.514 0-1.286.086v-.558l.172-2.442h3v.685H8.87l-.128 1.629q.471-.043.814-.043.9 0 1.414.429"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amazons3.svg���������������������������������0000664�0000000�0000000�00000006246�14753064456�0025366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.913 13.147.12-.895c.947.576 1.258.922 1.354 1.071-.16.031-.562.046-1.474-.176m-2.174 7.988a1 1 0 0 0-.005.073c0 .084-.207.405-1.124.768a10 10 0 0 1-1.438.432c-1.405.325-3.128.504-4.853.504-4.612 0-7.412-1.184-7.412-1.704a1 1 0 0 0-.005-.073L1.81 5.602q.203.117.432.227.064.03.128.057.2.093.417.18l.179.069q.232.087.478.168.063.02.13.043.311.097.646.187l.176.044q.263.066.534.127a23 23 0 0 0 .843.17l.121.023q.378.067.768.122.107.016.216.03.299.04.604.077l.24.027q.366.04.74.07l.081.009q.413.033.83.056l.233.012q.316.015.633.025a33 33 0 0 0 2.795-.026l.232-.011q.417-.023.83-.056l.08-.008q.375-.03.742-.072l.238-.026q.307-.036.609-.077.105-.014.211-.03.392-.056.772-.122l.111-.02q.323-.06.634-.125l.212-.047q.279-.062.546-.13l.166-.042q.338-.09.654-.189.059-.019.115-.038a11 11 0 0 0 .493-.173q.087-.032.17-.066.225-.089.43-.185.059-.025.116-.052.23-.11.436-.228l-.976 7.245c-2.488-.78-5.805-2.292-7.311-3a1.09 1.09 0 0 0-1.088-1.085c-.6 0-1.088.489-1.088 1.088s.488 1.089 1.088 1.089c.196 0 .378-.056.537-.148 1.72.812 5.144 2.367 7.715 3.15zm-7.42-20.047c5.677 0 9.676 1.759 9.75 2.736l-.014.113c-.01.033-.031.067-.048.101-.015.028-.026.057-.047.087-.024.033-.058.068-.09.102-.028.03-.051.06-.084.09-.038.035-.087.07-.133.105-.04.03-.074.06-.119.091-.053.036-.116.071-.177.107-.05.03-.095.06-.15.09-.068.036-.147.073-.222.11-.059.028-.114.057-.177.085-.084.038-.177.074-.268.111-.068.027-.13.054-.203.082-.097.036-.205.072-.31.107-.075.026-.148.053-.228.079-.111.035-.233.069-.35.103-.085.024-.165.05-.253.073-.124.034-.258.065-.389.098-.093.022-.181.046-.278.068-.139.032-.287.061-.433.091-.098.02-.191.041-.293.06-.155.03-.32.057-.482.084-.1.018-.198.036-.302.052-.166.026-.342.048-.515.072-.11.014-.213.03-.325.044-.181.023-.372.041-.56.06q-.163.019-.332.036c-.188.016-.386.029-.58.043-.122.009-.24.02-.364.028-.207.012-.422.02-.635.028-.12.005-.234.012-.354.016a36 36 0 0 1-2.069 0c-.12-.004-.234-.011-.352-.016-.214-.008-.43-.016-.637-.028-.122-.008-.238-.02-.36-.027-.195-.015-.394-.028-.584-.044-.11-.01-.215-.024-.324-.035-.19-.02-.384-.038-.568-.06l-.315-.044c-.176-.024-.355-.046-.525-.073-.1-.015-.192-.033-.29-.05-.167-.028-.335-.055-.494-.086-.096-.018-.183-.038-.276-.056-.151-.032-.305-.062-.45-.095-.09-.02-.173-.043-.26-.064-.138-.034-.277-.067-.407-.102-.082-.022-.157-.046-.235-.069a12 12 0 0 1-.368-.108c-.075-.024-.141-.049-.213-.073-.11-.037-.223-.075-.325-.113-.067-.025-.125-.051-.188-.077-.096-.038-.195-.076-.282-.115-.06-.027-.11-.054-.166-.08-.08-.039-.162-.077-.233-.116-.052-.028-.094-.055-.142-.084-.063-.038-.13-.075-.185-.113-.043-.029-.075-.058-.113-.086-.048-.037-.098-.073-.139-.11-.032-.029-.054-.057-.08-.087-.033-.035-.069-.07-.093-.104-.02-.03-.031-.058-.046-.086-.018-.035-.039-.068-.049-.102l-.015-.113c.076-.977 4.074-2.736 9.748-2.736m12.182 12.124c-.118-.628-.84-1.291-2.31-2.128l.963-7.16a1 1 0 0 0 .005-.073C22.16 1.581 16.447 0 11.32 0 6.194 0 .482 1.581.482 3.851a1 1 0 0 0 .005.072L2.819 21.25c.071 2.002 5.236 2.75 8.5 2.75 1.805 0 3.615-.188 5.098-.531.598-.138 1.133-.3 1.592-.48 1.18-.467 1.789-1.053 1.813-1.739l.945-7.018c.557.131 1.016.197 1.389.197.54 0 .902-.137 1.134-.413a.96.96 0 0 0 .21-.804Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amazonsimpleemailservice.svg�����������������0000664�0000000�0000000�00000002560�14753064456�0030716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.383 0 0 5.383 0 12c0 2.531.781 4.954 2.26 7.005l.695-.501A11.06 11.06 0 0 1 .857 12C.857 5.856 5.856.857 12 .857s11.143 5 11.143 11.143c0 2.35-.726 4.6-2.098 6.504l.695.5A11.9 11.9 0 0 0 24 12c0-6.617-5.384-12-12-12M6 16.714a.43.43 0 0 0-.429.429v1.76c-.964.204-1.714 1.082-1.714 2.097 0 1.161.982 2.143 2.143 2.143S8.143 22.16 8.143 21c0-1.015-.75-1.893-1.714-2.097V17.57h5.142v2.189c-.964.204-1.714 1.082-1.714 2.097C9.857 23.02 10.84 24 12 24s2.143-.981 2.143-2.143c0-1.015-.75-1.893-1.714-2.097V17.57h5.142v1.331c-.964.205-1.714 1.083-1.714 2.098 0 1.161.982 2.143 2.143 2.143s2.143-.982 2.143-2.143c0-1.015-.75-1.893-1.714-2.097v-1.76a.43.43 0 0 0-.429-.429h-5.571v-2.571H18a.43.43 0 0 0 .429-.429V6A.43.43 0 0 0 18 5.57H6A.43.43 0 0 0 5.571 6v7.714c0 .237.192.429.429.429h5.571v2.571zM7.286 21c0 .697-.59 1.286-1.286 1.286S4.714 21.696 4.714 21s.59-1.286 1.286-1.286 1.286.59 1.286 1.286m12 0c0 .697-.59 1.286-1.286 1.286s-1.286-.59-1.286-1.286.59-1.286 1.286-1.286 1.286.59 1.286 1.286m-1.715-8.248L14.26 9.77l3.312-2.839zm-.73-6.324L12 10.578l-4.842-4.15zM6.43 6.931l3.312 2.84-3.312 2.981zm.687 6.355 3.281-2.953 1.324 1.135a.43.43 0 0 0 .279.103.43.43 0 0 0 .278-.103l1.324-1.135 3.282 2.953zM12 20.57c.697 0 1.286.59 1.286 1.286s-.59 1.286-1.286 1.286-1.286-.589-1.286-1.286.59-1.286 1.286-1.286"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amazonsqs.svg��������������������������������0000664�0000000�0000000�00000003616�14753064456�0025645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.164 13.58 1.287-1.27a.425.425 0 0 0 .002-.603L7.166 10.42l-.608.601.552.552H5.147v.852h1.97l-.557.55Zm9.82.04 1.715-1.28a.427.427 0 0 0 0-.682l-1.716-1.277-.515.682.686.51H15.44v.853h1.715l-.686.511ZM9.945 12c0 .905-.156 1.758-.449 2.5a7.1 7.1 0 0 1 2.511-.445c.87 0 1.74.148 2.51.445a6.9 6.9 0 0 1-.448-2.5c0-.905.157-1.757.449-2.5-1.543.593-3.479.593-5.022 0 .293.743.45 1.595.45 2.5Zm-2.1 4.136a.424.424 0 0 1 0-.602c.778-.774 1.243-2.095 1.243-3.534s-.465-2.76-1.244-3.534a.424.424 0 0 1 0-.602.43.43 0 0 1 .607 0c1.662 1.65 5.45 1.65 7.113 0a.43.43 0 0 1 .732.301.42.42 0 0 1-.126.301c-.778.774-1.243 2.095-1.243 3.534s.465 2.76 1.243 3.534a.424.424 0 0 1 0 .602.43.43 0 0 1-.606 0c-1.662-1.65-5.451-1.65-7.113 0a.43.43 0 0 1-.607 0Zm15.299-4.134c0-.397-.155-.77-.438-1.051a1.5 1.5 0 0 0-1.058-.435c-.383 0-.766.145-1.058.435a1.48 1.48 0 0 0 0 2.102c.583.58 1.532.58 2.116 0 .283-.28.438-.654.438-1.05Zm.168 1.654a2.35 2.35 0 0 1-1.664.684 2.35 2.35 0 0 1-1.664-.684 2.33 2.33 0 0 1 0-3.308 2.366 2.366 0 0 1 3.328 0 2.33 2.33 0 0 1 0 3.308M3.85 12.012a1.49 1.49 0 0 0-1.496-1.487 1.493 1.493 0 0 0-1.496 1.487c0 .397.155.77.437 1.051.566.561 1.551.561 2.116 0 .283-.281.439-.654.439-1.051m.168 1.654a2.35 2.35 0 0 1-1.665.684 2.36 2.36 0 0 1-1.664-.684 2.33 2.33 0 0 1 0-3.308 2.367 2.367 0 0 1 3.329 0 2.33 2.33 0 0 1 0 3.308m14.367 4.7a9.03 9.03 0 0 1-6.41 2.639 9.03 9.03 0 0 1-6.41-2.638c-1.175-1.166-1.82-2.56-2.156-3.524l-.81.28c.364 1.047 1.07 2.566 2.36 3.846a9.9 9.9 0 0 0 7.016 2.888 9.9 9.9 0 0 0 7.016-2.888 10.2 10.2 0 0 0 2.43-3.848l-.812-.276a9.4 9.4 0 0 1-2.224 3.522ZM3.407 9.158l-.81-.28c.52-1.484 1.358-2.851 2.363-3.849a9.89 9.89 0 0 1 7.014-2.885 9.89 9.89 0 0 1 7.014 2.885 10.5 10.5 0 0 1 2.43 3.85l-.809.279a9.6 9.6 0 0 0-2.228-3.526 9.03 9.03 0 0 0-6.407-2.636 9.03 9.03 0 0 0-6.408 2.636c-.914.909-1.681 2.161-2.159 3.526"/></svg>������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amazonwebservices.svg������������������������0000664�0000000�0000000�00000005501�14753064456�0027353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.763 10.036q.002.446.088.71c.064.176.144.368.256.576.04.063.056.127.056.183q.002.12-.152.24l-.503.335a.4.4 0 0 1-.208.072q-.12-.002-.239-.112a2.5 2.5 0 0 1-.287-.375 6 6 0 0 1-.248-.471q-.934 1.101-2.347 1.101c-.67 0-1.205-.191-1.596-.574q-.588-.575-.59-1.533c0-.678.239-1.23.726-1.644.487-.415 1.133-.623 1.955-.623.272 0 .551.024.846.064.296.04.6.104.918.176v-.583q-.001-.909-.375-1.277c-.255-.248-.686-.367-1.3-.367-.28 0-.568.031-.863.103q-.443.106-.862.272a2 2 0 0 1-.28.104.5.5 0 0 1-.127.023q-.168.002-.168-.247v-.391c0-.128.016-.224.056-.28a.6.6 0 0 1 .224-.167 4.6 4.6 0 0 1 1.005-.36 4.8 4.8 0 0 1 1.246-.151c.95 0 1.644.216 2.091.647q.66.645.662 1.963v2.586zm-3.24 1.214c.263 0 .534-.048.822-.144a1.8 1.8 0 0 0 .758-.51 1.3 1.3 0 0 0 .272-.512c.047-.191.08-.423.08-.694v-.335a7 7 0 0 0-.735-.136 6 6 0 0 0-.75-.048c-.535 0-.926.104-1.19.32-.263.215-.39.518-.39.917 0 .375.095.655.295.846.191.2.47.296.838.296m6.41.862c-.144 0-.24-.024-.304-.08-.064-.048-.12-.16-.168-.311L7.586 5.55a1.4 1.4 0 0 1-.072-.32c0-.128.064-.2.191-.2h.783q.227-.001.31.08c.065.048.113.16.16.312l1.342 5.284 1.245-5.284q.058-.24.151-.312a.55.55 0 0 1 .32-.08h.638c.152 0 .256.025.32.08.063.048.12.16.151.312l1.261 5.348 1.381-5.348q.074-.24.16-.312a.52.52 0 0 1 .311-.08h.743c.127 0 .2.065.2.2 0 .04-.009.08-.017.128a1 1 0 0 1-.056.2l-1.923 6.17q-.072.24-.168.311a.5.5 0 0 1-.303.08h-.687c-.151 0-.255-.024-.32-.08-.063-.056-.119-.16-.15-.32l-1.238-5.148-1.23 5.14c-.04.16-.087.264-.15.32-.065.056-.177.08-.32.08zm10.256.215c-.415 0-.83-.048-1.229-.143-.399-.096-.71-.2-.918-.32-.128-.071-.215-.151-.247-.223a.6.6 0 0 1-.048-.224v-.407c0-.167.064-.247.183-.247q.072 0 .144.024c.048.016.12.048.2.08q.408.181.878.279c.319.064.63.096.95.096.502 0 .894-.088 1.165-.264a.86.86 0 0 0 .415-.758.78.78 0 0 0-.215-.559c-.144-.151-.416-.287-.807-.415l-1.157-.36c-.583-.183-1.014-.454-1.277-.813a1.9 1.9 0 0 1-.4-1.158q0-.502.216-.886c.144-.255.335-.479.575-.654.24-.184.51-.32.83-.415.32-.096.655-.136 1.006-.136.175 0 .359.008.535.032.183.024.35.056.518.088q.24.058.455.127.216.072.336.144a.7.7 0 0 1 .24.2.43.43 0 0 1 .071.263v.375q-.002.254-.184.256a.8.8 0 0 1-.303-.096 3.65 3.65 0 0 0-1.532-.311c-.455 0-.815.071-1.062.223s-.375.383-.375.71c0 .224.08.416.24.567.159.152.454.304.877.44l1.134.358c.574.184.99.44 1.237.767s.367.702.367 1.117c0 .343-.072.655-.207.926a2.2 2.2 0 0 1-.583.703c-.248.2-.543.343-.886.447-.36.111-.734.167-1.142.167m1.509 3.88c-2.626 1.94-6.442 2.969-9.722 2.969-4.598 0-8.74-1.7-11.87-4.526-.247-.223-.024-.527.272-.351 3.384 1.963 7.559 3.153 11.877 3.153 2.914 0 6.114-.607 9.06-1.852.439-.2.814.287.383.607m1.094-1.246c-.336-.43-2.22-.207-3.074-.103-.255.032-.295-.192-.063-.36 1.5-1.053 3.967-.75 4.254-.399.287.36-.08 2.826-1.485 4.007-.215.184-.423.088-.327-.151.32-.79 1.03-2.57.695-2.994"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amd.svg��������������������������������������0000664�0000000�0000000�00000001030�14753064456�0024356�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.324 9.137 1.559 1.56h2.556v2.557L24 14.814V9.137zM2 9.52l-2 4.96h1.309l.37-.982H3.9l.408.982h1.338L3.432 9.52zm4.209 0v4.955h1.238v-3.092l1.338 1.562h.188l1.338-1.556v3.091h1.238V9.52H10.47l-1.592 1.845L7.287 9.52zm6.283 0v4.96h2.057c1.979 0 2.88-1.046 2.88-2.472 0-1.36-.937-2.488-2.747-2.488zm1.237.91h.792c1.17 0 1.63.711 1.63 1.57 0 .728-.372 1.572-1.616 1.572h-.806zm-10.985.273.791 1.932H2.008zm17.137.307-1.604 1.603v2.25h2.246l1.604-1.607h-2.246z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ameba.svg������������������������������������0000664�0000000�0000000�00000004621�14753064456�0024673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.575 9.815c0-.653.624-1.161 1.429-1.161s1.429.508 1.429 1.16c0 .653-.624 1.162-1.429 1.162s-1.429-.509-1.429-1.161M16.107 0c-.303.008-.603.155-.875.467-.397.46-1.111 1.268-1.6 1.748-.641.624-1.056.765-1.626.765s-.978-.132-1.629-.765c-.488-.47-1.212-1.287-1.6-1.748-.435-.49-.94-.566-1.42-.336-.398.192-.624.585-.652 1.2a56 56 0 0 0-.002 1.423c.004.73.007 1.534-.008 2.014-.027.96-.099 1.543-.496 2.378-.335.71-.876 1.91-.931 3.512a20 20 0 0 0 .08 2.516c.052.634.098 1.202.054 1.9-.072 1.113-.48 1.66-1.066 2.065l-.078.052c-.728.503-1.133.783-1.36 1.358-.163.423-.163 1.026.317 1.285.307.164.678.136 1.058-.027q.113-.05.225-.104c.22-.106.436-.21.652-.195.226.01.407.143.434.527.036.403.208.567.488.567.226 0 .435-.163.598-.604l.084-.242c.123-.361.217-.64.44-.64.29.01.351.334.37.794.027.662-.207 1.172-.67 1.623-.532.518-.93 1.009-.785 1.65.1.453.57.75 1.31.788.76.029 1.99.038 2.84.02.797-.02 1.258-.385 1.348-.874.057-.29.002-.482-.052-.666-.048-.164-.096-.32-.057-.533.045-.25.263-.356.498-.356s.46.106.496.356c.034.208-.01.362-.058.523-.054.187-.112.381-.05.676.1.48.552.844 1.348.873.85.02 2.08.01 2.83-.03.742-.037 1.212-.335 1.311-.786.145-.643-.251-1.124-.785-1.65-.46-.453-.697-.96-.67-1.622.018-.46.09-.787.371-.797.225-.008.32.275.443.645q.038.114.082.238c.162.441.37.606.596.606.28 0 .452-.175.488-.569s.217-.517.434-.527c.216-.014.432.09.652.195q.114.055.227.104c.389.163.749.19 1.057.027.498-.26.499-.863.336-1.285-.232-.587-.642-.867-1.409-1.39l-.03-.02c-.589-.403-.995-.952-1.067-2.065-.044-.699.002-1.266.054-1.9.056-.682.118-1.44.08-2.514-.054-1.593-.594-2.803-.93-3.513-.397-.825-.47-1.42-.497-2.38a72 72 0 0 1-.006-2.013c.003-.597.005-1.142-.004-1.414-.018-.605-.254-.997-.643-1.2a1.15 1.15 0 0 0-.545-.13m-7.6 7.08h.032c.335 0 .615.287.615.652 0 .355-.27.653-.615.653a.63.63 0 0 1-.613-.653c0-.343.254-.634.582-.652zm6.929 0h.033c.334 0 .613.287.613.652 0 .355-.27.653-.613.653a.63.63 0 0 1-.615-.653c0-.343.253-.634.582-.652m-3.442 1.246c1.447 0 2.488.346 3.483 1.248.687.624 1.14 1.862.597 2.783-.262.47-.769.846-1.375.903-.805.077-1.302-.23-1.619-.604-.307-.356-.633-.691-1.094-.691-.46 0-.786.334-1.093.69-.317.374-.824.682-1.62.605a1.8 1.8 0 0 1-1.375-.903c-.515-.93-.071-2.169.616-2.783 1.004-.902 2.033-1.248 3.48-1.248m.01 6.278c1.574 0 2.867 1.363 2.867 3.042 0 1.68-1.284 3.043-2.867 3.043s-2.867-1.363-2.867-3.043 1.285-3.042 2.867-3.042"/></svg>���������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/americanairlines.svg�������������������������0000664�0000000�0000000�00000001035�14753064456�0027130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 .244h3.264c1.377 0 1.942.563 2.499 1.116.637.58 2.57 3.196 6.657 8.303H7.997c-1.809 0-2.38-.308-3.08-1.375zm10.424 17.072-2.427-4.013c-.292-.455-.372-.854-.372-1.318 0-.51.217-.79 1.053-1.233.973-.466 2.933-.67 4.954-.67 3.283 0 4.07 1.055 4.405 2.192 0 0-.464-.185-1.554-.185-3.459 0-6.223 1.68-6.223 4.221 0 .534.164 1.006.164 1.006m4.936-3.417c-2.547.089-5.032 1.869-4.936 3.416l2.7 4.486c.836 1.344 2.215 1.955 3.932 1.955H24l-8.13-9.852a6 6 0 0 0-.51-.005"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/americanexpress.svg��������������������������0000664�0000000�0000000�00000006661�14753064456�0027025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.015 14.378c0-.32-.135-.496-.344-.622-.21-.12-.464-.135-.81-.135h-1.543v2.82h.675v-1.027h.72c.24 0 .39.024.478.125.12.13.104.38.104.55v.35h.66v-.555c-.002-.25-.017-.376-.108-.516a.75.75 0 0 0-.33-.234l.02-.008a.78.78 0 0 0 .48-.747zm-.87.407-.028-.002c-.09.053-.195.058-.33.058h-.81v-.63h.824c.12 0 .24 0 .33.05a.27.27 0 0 1 .15.255c0 .12-.045.215-.134.27zm5.152 1.052H19v.6h1.304c.676 0 1.05-.278 1.05-.884 0-.28-.066-.448-.187-.582-.153-.133-.392-.193-.73-.207l-.376-.015c-.104 0-.18 0-.255-.03a.21.21 0 0 1-.15-.21c0-.09.017-.166.09-.21a.5.5 0 0 1 .272-.06h1.23v-.602h-1.35c-.704 0-.958.437-.958.84 0 .9.776.855 1.407.87.104 0 .18.015.225.06.046.03.082.106.082.18 0 .077-.035.15-.08.18-.06.053-.15.07-.277.07M0 0v10.096L.81 8.22h1.75l.225.464V8.22h2.043l.45 1.02.437-1.013h6.502c.295 0 .56.057.756.236v-.23h1.787v.23c.307-.17.686-.23 1.12-.23h2.606l.24.466v-.466h1.918l.254.465v-.466h1.858v3.948H20.87l-.36-.6v.585h-2.353l-.256-.63h-.583l-.27.614h-1.213c-.48 0-.84-.104-1.08-.24v.24h-2.89v-.884c0-.12-.03-.12-.105-.135h-.105v1.036H6.067v-.48l-.21.48H4.69l-.202-.48v.465H2.235l-.256-.624H1.4l-.256.624H0V24h23.786v-7.108c-.27.135-.613.18-.973.18H21.09v-.255c-.21.165-.57.255-.914.255H14.71v-.9c0-.12-.018-.12-.12-.12h-.075v1.022h-1.8v-1.066c-.298.136-.643.15-.928.136h-.214v.915h-2.18l-.54-.617-.57.6H4.742v-3.93h3.61l.518.602.554-.6h2.412c.28 0 .74.03.942.225v-.24h2.177c.202 0 .644.045.903.225v-.24h3.265v.24c.163-.164.508-.24.803-.24h1.89v.24c.194-.15.464-.24.84-.24h1.176V0zm21.156 14.955q.005.009.01.016c.01.01.024.01.032.02zm2.672-1.873h.065v.555h-.065zm.037 1.948v-.005c-.03-.025-.046-.048-.075-.07-.15-.153-.39-.215-.764-.225l-.36-.012a.9.9 0 0 1-.27-.03.21.21 0 0 1-.15-.21q0-.136.09-.204c.076-.045.15-.05.27-.05h1.223v-.588h-1.283c-.69 0-.96.437-.96.84 0 .9.78.855 1.41.87.104 0 .18.015.224.06.046.03.076.106.076.18 0 .07-.034.138-.09.18-.045.056-.136.07-.27.07h-1.288v.605h1.287c.42 0 .734-.118.9-.36h.03c.09-.134.135-.3.135-.523 0-.24-.045-.39-.135-.526zm-5.268-.822v-.583h-2.235v2.833h2.235v-.585h-1.57v-.57h1.533v-.584h-1.532v-.51M13.51 8.787h.685V11.6h-.684zm-.384.756-.007.006c0-.314-.13-.5-.34-.624-.217-.125-.47-.135-.81-.135H10.43v2.82h.674v-1.034h.72c.24 0 .39.03.487.12.122.136.107.378.107.548v.354h.677v-.553c0-.25-.016-.375-.11-.516a.8.8 0 0 0-.33-.237c.172-.07.472-.3.472-.75zm-.855.396h-.015c-.09.054-.195.056-.33.056H11.1v-.623h.825c.12 0 .24.004.33.05.09.04.15.128.15.25s-.047.22-.134.266zm3.649-.566h.632v-.6h-.644c-.464 0-.804.105-1.02.33-.286.3-.362.69-.362 1.11 0 .512.123.833.36 1.074.232.238.645.31.97.31h.78l.255-.627h1.39l.262.627h1.36v-2.11l1.272 2.11h.95l.002.002V8.786h-.684v1.963l-1.18-1.96h-1.02V11.4L18.11 8.744h-1.004l-.943 2.22h-.3c-.177 0-.362-.03-.468-.134-.125-.15-.186-.36-.186-.662 0-.285.08-.51.194-.63.133-.135.272-.165.516-.165zm1.668-.108.464 1.118v.002h-.93zM2.38 10.97l.254.628H4V9.393l.972 2.205h.584l.973-2.202.015 2.202h.69v-2.81H6.118l-.807 1.904-.876-1.905H3.343v2.663L2.205 8.787h-.997L.01 11.597h.72l.26-.626zm-.688-1.705.46 1.118-.003.002h-.915l.457-1.12zm10.164 4.355H9.714l-.85.923-.825-.922H5.346v2.82H8l.855-.932.824.93h1.302v-.94h.838c.6 0 1.17-.164 1.17-.945l-.006-.003c0-.78-.598-.93-1.128-.93zM7.67 15.853l-.014-.002H6.02v-.557h1.47v-.574H6.02v-.51H7.7l.733.82-.764.824zm2.642.33-1.03-1.147 1.03-1.108v2.253zm1.553-1.258h-.885v-.717h.885c.24 0 .42.098.42.344 0 .243-.15.372-.42.372zM9.967 9.373v-.586H7.73V11.6h2.237v-.58H8.4v-.564h1.527V9.88H8.4v-.507"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amg.svg��������������������������������������0000664�0000000�0000000�00000003566�14753064456�0024401�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 11.894a.12.12 0 0 0-.127-.127h-2.266a.12.12 0 0 0-.127.127v.19a.14.14 0 0 0 .127.149h1.419c.085 0 .085.042.085.148v.02c0 .106 0 .127-.085.127h-2.901a.12.12 0 0 1-.127-.127v-.824a.12.12 0 0 1 .127-.128h3.727a.12.12 0 0 0 .127-.127v-.317a.12.12 0 0 0-.127-.127h-4.616a.12.12 0 0 0-.127.127v2.054a.12.12 0 0 0 .127.127h4.616a.12.12 0 0 0 .127-.127v-1.165m-7.37.55a.32.32 0 0 1-.19.085h-.593a.3.3 0 0 1-.19-.084l-1.122-.72c-.064-.043-.127-.022-.127.063v1.207a.12.12 0 0 1-.128.127h-.593a.14.14 0 0 1-.148-.127v-2.054c0-.084.064-.127.148-.127h.636a.5.5 0 0 1 .19.064l1.525.995a.16.16 0 0 0 .19 0l1.525-.995a.3.3 0 0 1 .19-.064h.636a.12.12 0 0 1 .127.127v2.054a.12.12 0 0 1-.127.127h-.593a.14.14 0 0 1-.148-.127v-1.207q0-.127-.127-.063zm-6.606-1.016c-.042 0-.063.02-.106.064l-.36.466c-.02.042 0 .063.02.063h2.605c.085 0 .085-.042.085-.105v-.318c0-.106 0-.149-.085-.149h-2.159zM8.48 13.143h-.763a.071.071 0 0 1-.064-.105l1.63-2.118a.22.22 0 0 1 .149-.085h3.515a.164.164 0 0 1 .148.17v2.011a.12.12 0 0 1-.127.127h-.593a.12.12 0 0 1-.127-.127v-.296c0-.085 0-.106-.085-.106h-3.09a.14.14 0 0 0-.127.085v.02l-.233.296a.37.37 0 0 1-.233.127zm-1.546 0a.32.32 0 0 0 .212-.127l1.588-2.054c.063-.084.02-.148-.043-.148h-.317a.22.22 0 0 0-.148.085l-1.63 2.117a.072.072 0 0 0 .063.106h.275zm-1.101 0a.32.32 0 0 0 .212-.127l1.588-2.054c.063-.084.021-.148-.043-.148h-.444a.22.22 0 0 0-.149.085l-1.63 2.117a.072.072 0 0 0 .064.106h.402zm-1.8 0a.071.071 0 0 1-.063-.105l1.63-2.118a.21.21 0 0 1 .148-.085h.657c.084 0 .106.064.042.149l-1.588 2.054a.29.29 0 0 1-.212.127h-.614zm-1.503 0a.071.071 0 0 1-.064-.105l1.63-2.118a.22.22 0 0 1 .149-.085h.868c.085 0 .106.064.042.149l-1.588 2.054a.29.29 0 0 1-.211.127h-.826zm-2.457 0a.071.071 0 0 1-.063-.105l1.63-2.118a.22.22 0 0 1 .149-.085h1.926c.085 0 .106.064.043.149l-1.588 2.054a.29.29 0 0 1-.212.127H.072Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amp.svg��������������������������������������0000664�0000000�0000000�00000000515�14753064456�0024401�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c6.628 0 12 5.373 12 12s-5.372 12-12 12C5.373 24 0 18.627 0 12S5.373 0 12 0m-.92 19.278 5.034-8.377a.44.44 0 0 0 .097-.268.455.455 0 0 0-.455-.455l-2.851.004.924-5.468-.927-.003-5.018 8.367s-.1.183-.1.291c0 .251.204.455.455.455l2.831-.004-.901 5.458z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/amul.svg�������������������������������������0000664�0000000�0000000�00000003600�14753064456�0024560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.794 11.772c-.104-.443-.546-1.492-.786-1.796-.04-.031-.062-.046-.078-.068l-.718 1.748s.375.091.796.148c.271.03.558.03.786-.032m17-1.593v3.536c0 .7-.282.59-.385.613l1.209 1.018L24 14.236c-.014-.086-.063-.171-.124-.195-.475.294-.443-.302-.443-.302V9.527c0-.528-.933-1.097-1.285-.986l-1.304 1.297c.015.054.06.162.203.186.61-.56.747 0 .747.155m-5.576 2.184v1.5c0 .528-.2.428-.348.488.412.218.972.668 1.454 1.011l1.446-.916 1.073.94 1.266-1.236s-.016-.18-.17-.171c-.444.436-.575-.288-.575-.288v-1.833c0-.801-1.028-.98-1.244-.972l-1.035 1.01a.4.4 0 0 0 .194.165c.484-.382.567.17.567.17v1.5c-.014.62-1.14.847-1.14.008v-2.09c-.095-.576-.912-.895-1.028-.794l-1.181.972c.055.093.06.204.207.187.523-.367.514.349.514.349m-7.805-.287v1.632c0 .45-.334.442-.44.465l1.274 1.104 1.227-1.08a.5.5 0 0 0-.115-.178c-.203.107-.357.046-.357-.22v-1.654c.108-.512.838-.397.838-.047v1.696c-.018.34-.156.488-.31.535l1.156.956 1.243-1.043c-.02-.085-.02-.16-.129-.2-.124.008-.357.25-.357-.288v-1.617c.256-.653.885-.31.91.055v1.516c-.009.357-.074.583-.366.683l1.204.94 1.276-1.15c0-.077-.11-.157-.15-.178-.419.364-.396-.095-.402-.165v-2.09c-.017-.365-.7-1.125-1.61-.783l-.91.668c-.484-.824-1.19-.847-1.378-.8-.308.044-.962.838-1.038.713-.288-.713-1.053-.728-1.209-.706l-1.07.924c.054.117.141.132.2.155.289-.17.485-.132.513.157m-5.571.491-.334.906.79.506c.112.071.253.024.476-.18l.157.157c-.357.41-.73.8-1.096 1.212-.482-.442-1.05-.877-1.594-.877-.628.013-1.213.62-.606 1.717.017.022-.094.138-.156.09-.465-.395-.652-1.482-.286-2.095.256-.397.72-.785 1.513-.693l.313-.85c-.287-.113-.598 0-.988.308.132-.67.551-1.136 1.412-1.252l.882-2.114c-.467-.187-.903.04-1.12.436-.132-.017-.225-.063-.25-.147l.903-1.68c.44-.153.817-.153 1.151-.048 1.376.436 2.067 2.76 3.098 5.325.095.248.221.271.516-.046l.21.186-1.86 1.85-.856-2.558c0 .022-.417.125-1.107.063a5.7 5.7 0 0 1-1.168-.216"/></svg>��������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ana.svg��������������������������������������0000664�0000000�0000000�00000001153�14753064456�0024362�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.11 8.975-3.454 6.05h3.432l3.455-6.05zm3.933 0-3.455 6.05h.959L24 8.975zm-10.01.781H14.8l.403 5.27h-1.31l-.025-.58a.206.206 0 0 0-.202-.227h-1.867l.429-.757h1.21c.151 0 .328.026.328-.202l-.202-2.37c0-.15-.126-.226-.227-.075L11.193 15h-.882zm-9.983 0h1.74l.353 5.27h-1.31l-.026-.58a.226.226 0 0 0-.227-.227H1.563l.429-.757h1.386c.151 0 .328.026.328-.202l-.151-2.37c0-.15-.126-.226-.227-.075L.882 15H0zm3.278 0h1.79l1.16 4.084c.05.126.15.101.176 0l.756-4.084h.782l-.933 5.27H8.244l-1.135-4.034c-.025-.101-.151-.127-.176 0l-.706 4.033h-.832Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/anaconda.svg���������������������������������0000664�0000000�0000000�00000004217�14753064456�0025373�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.045.033a12.181 12.182 0 0 0-1.361.078 17.512 17.513 0 0 1 1.813 1.433l.48.438-.465.45a15 15 0 0 0-1.126 1.205l-.178.215a9 9 0 0 1 .86-.05 8.154 8.155 0 1 1-4.286 15.149 15.764 15.765 0 0 1-1.841.106h-.86a22 22 0 0 0 .264 2.866 11.966 11.967 0 1 0 6.7-21.89M8.17.678a12.181 12.182 0 0 0-2.624 1.275 16 16 0 0 1 1.813.43A18.551 18.552 0 0 1 8.17.678M9.423.75a16.237 16.238 0 0 0-.995 1.998 16.15 16.152 0 0 1 1.605.66 7 7 0 0 1 .43-.509q.35-.43.716-.817A15 15 0 0 0 9.423.75M4.68 2.949a14.969 14.97 0 0 0 0 2.336c.587-.065 1.196-.1 1.812-.107a17 17 0 0 1 .48-1.748 16.48 16.481 0 0 0-2.292-.481M3.62 3.5a12 12 0 0 0-1.858 2.38 17 17 0 0 1 1.877-.444A17 17 0 0 1 3.62 3.5m4.406.287c-.143.437-.265.888-.38 1.347a8.3 8.3 0 0 1 1.67-.803c-.423-.2-.845-.38-1.29-.544M6.3 6.216a14 14 0 0 0-1.555.108c.064.523.157 1.038.272 1.554A8.4 8.4 0 0 1 6.3 6.216m-2.55.137a15.3 15.3 0 0 0-2.602.716H1.07v.079a17.104 17.105 0 0 0 1.267 2.544l.043.071.072-.049a16 16 0 0 1 1.734-1.083l.057-.035V8.54a17 17 0 0 1-.408-2.094v-.092zM.644 8.095l-.063.2A11.844 11.845 0 0 0 0 11.655v.209l.143-.152a17.706 17.707 0 0 1 1.584-1.447l.057-.043-.043-.064a16 16 0 0 1-1.025-1.87zm3.77 1.253-.18.1c-.465.273-.93.573-1.375.889l-.065.05.05.064c.309.437.645.867.996 1.276l.137.165v-.208a8.2 8.2 0 0 1 .364-2.15zM2.2 10.853l-.072.05a16.6 16.6 0 0 0-1.813 1.734l-.058.058.066.057a15.5 15.5 0 0 0 1.991 1.483l.072.05.043-.08a16.738 16.74 0 0 1 1.053-1.64v-.05l-.043-.05a17 17 0 0 1-1.19-1.54zm1.855 2.071-.121.172a15 15 0 0 0-.917 1.433l-.043.072.071.043a17 17 0 0 0 1.562.766l.193.086-.086-.193a8 8 0 0 1-.66-2.172zm-3.976.48v.2a11.758 11.759 0 0 0 .946 3.326l.078.186.072-.194a16.215 16.216 0 0 1 .845-2l.057-.063-.064-.043a17.197 17.198 0 0 1-1.776-1.284zm2.543 1.805-.035.08a15.764 15.765 0 0 0-.983 2.479v.08h.086a16.15 16.152 0 0 0 2.688.5l.072.007v-.086a18 18 0 0 1 .164-2.056v-.065H4.55a16 16 0 0 1-1.849-.896zm2.544 1.169v.114a17 17 0 0 0-.151 1.828v.078h.931c.287 0 .624.014.946 0h.209l-.166-.129a8 8 0 0 1-1.64-1.834zm-3.29 2.1.115.172a12 12 0 0 0 2.502 2.737l.157.129v-.201a22.578 22.58 0 0 1-.2-2.336v-.071h-.072a16 16 0 0 1-2.3-.387z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/analogue.svg���������������������������������0000664�0000000�0000000�00000000422�14753064456�0025414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.468 12.804a5.145 5.145 0 1 0-.644 10.27 5.145 5.145 0 0 0 .644-10.27m17.841 2.562L16.45 3.484a5.146 5.146 0 0 0-8.912 5.15l6.86 11.878a5.15 5.15 0 0 0 7.031 1.885 5.146 5.146 0 0 0 1.881-7.031z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/andela.svg�����������������������������������0000664�0000000�0000000�00000001313�14753064456�0025045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.999 4.586 13.956.511A3.94 3.94 0 0 0 12 0c-.713 0-1.378.183-1.946.511L2.982 4.586a4.01 4.01 0 0 0-1.917 3.42v7.997a3.99 3.99 0 0 0 1.927 3.421l7.014 4.046c.587.337 1.262.53 1.994.53.723 0 1.407-.193 1.994-.53l6.937-4.008a4.01 4.01 0 0 0 2.004-3.468V7.997a4 4 0 0 0-1.936-3.411m.298 7.534h-.038c-5.039.02-9.143 4.143-9.143 9.182a.117.117 0 0 1-.116.116.12.12 0 0 1-.116-.116v-.038c-.019-5.039-4.143-9.144-9.181-9.144a.116.116 0 0 1-.116-.115c0-.068.058-.116.116-.116h.038c5.039-.019 9.143-4.143 9.143-9.182 0-.067.058-.115.116-.115.067 0 .116.058.116.115 0 5.059 4.114 9.182 9.181 9.182.068 0 .116.058.116.116.01.067-.048.115-.116.115"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/android.svg����������������������������������0000664�0000000�0000000�00000001402�14753064456�0025240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.44 5.559q-1.015 1.748-2.028 3.498-.055-.023-.111-.043a12.098 12.098 0 0 0-8.68.033C7.537 8.897 5.868 6.026 5.6 5.56a1 1 0 0 0-.141-.19 1.104 1.104 0 0 0-1.768 1.298c1.947 3.37-.096-.216 1.948 3.36.017.03-.495.263-1.393 1.017C2.9 12.176.452 14.772 0 18.99h24a11.7 11.7 0 0 0-.746-3.068 12.1 12.1 0 0 0-2.74-4.184 12 12 0 0 0-2.131-1.687c.66-1.122 1.312-2.256 1.965-3.385a1.11 1.11 0 0 0-.008-1.12 1.1 1.1 0 0 0-.852-.532c-.522-.054-.939.313-1.049.545m-.04 8.46c.395.593.324 1.331-.156 1.65-.48.32-1.188.1-1.582-.493s-.324-1.33.156-1.65c.473-.316 1.182-.11 1.582.494m-11.193-.492c.48.32.55 1.058.156 1.65-.394.593-1.103.815-1.584.495-.48-.32-.55-1.058-.156-1.65.4-.603 1.109-.811 1.584-.495"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/androidauto.svg������������������������������0000664�0000000�0000000�00000000411�14753064456�0026130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c-.6 0-1.11.32-1.39.8L.48 18.4a1.6 1.6 0 0 0 1.39 2.4h2l7.7-13.58.43-.77 8.13 14.35h2a1.6 1.6 0 0 0 1.39-2.4L13.39.8A1.6 1.6 0 0 0 12 0m0 7.47-9.07 16 .54.53L12 20.8l8.53 3.2.54-.53z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/androidstudio.svg����������������������������0000664�0000000�0000000�00000004130�14753064456�0026471�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.27 10.337a.604.604 0 0 0-.603.603v9.832h-1.738l-3.336-6.94c.476-.538.68-1.285.525-2a2.29 2.29 0 0 0-1.29-1.625v-.812a.847.847 0 0 0-.844-.864.85.85 0 0 0-.432.118.86.86 0 0 0-.412.766v.72a2.3 2.3 0 0 0-1.487 2.52 2.3 2.3 0 0 0 .591 1.21l-3.21 6.907H4.094a1.996 1.996 0 0 1-1.983-1.99V5.017c-.006 1.102.883 2 1.986 2.006a2 2 0 0 0 .132-.004h14.745s2.535-.218 2.862 1.54a.495.495 0 0 0-.445.489c0 .711-.579 1.29-1.302 1.29zm-2.048 12.2a.973.973 0 0 1-.45 1.3 1 1 0 0 1-.402.093 1 1 0 0 1-.32-.045c-.024-.008-.046-.021-.07-.031a1 1 0 0 1-.227-.132q-.038-.029-.072-.06a1 1 0 0 1-.21-.276l-1.256-2.614-1.558-3.245a.77.77 0 0 0-.7-.444h-.002a.79.79 0 0 0-.709.444l-1.51 3.245-1.233 2.646a.97.97 0 0 1-.798.58c-.063.005-.124-.002-.185-.009q-.052-.003-.103-.012c-.048-.01-.095-.028-.142-.045-.03-.012-.06-.02-.09-.034a1 1 0 0 1-.14-.09q-.033-.02-.066-.044a1 1 0 0 1-.169-.185.98.98 0 0 1-.07-.985l.846-1.822 3.268-7.031a1.8 1.8 0 0 1-.708-1.164c-.155-.98.513-1.9 1.493-2.056V9.395a.35.35 0 0 1 .168-.316.35.35 0 0 1 .354 0 .35.35 0 0 1 .167.316v1.159l.013.006a1.8 1.8 0 0 1 1.288 1.378 1.78 1.78 0 0 1-.644 1.784l3.389 7.05zm-4.238-10.231a1.1 1.1 0 0 0-1.093-1.108 1.12 1.12 0 0 0-.786.321 1.1 1.1 0 0 0-.323.772 1.1 1.1 0 0 0 1.093 1.108h.008c.605 0 1.097-.488 1.101-1.093m-1.027 5.277a.29.29 0 0 0-.257.155l-1.413 3.034h3.374l-1.457-3.033a.27.27 0 0 0-.247-.156m8.143-6.746h-.83a.103.103 0 0 0-.103.103v12.91a.103.103 0 0 0 .096.103h.844a1.79 1.79 0 0 0 1.783-1.79V9.047a1.79 1.79 0 0 1-1.79 1.79M2.61 5.017v.018a1.5 1.5 0 0 0 1.487 1.487l.131-.003h1.129a6.6 6.6 0 0 1 1.638-3.486H4.099A1.99 1.99 0 0 0 2.18 4.53c.242.036.43.235.43.486m6.338-2.899L7.91.328a.22.22 0 0 1 0-.218.24.24 0 0 1 .187-.11.22.22 0 0 1 .187.11l1.05 1.815a6.5 6.5 0 0 1 5.318 0L15.696.11a.219.219 0 0 1 .373.22l-1.03 1.79a6.12 6.12 0 0 1 3.098 4.401L5.85 6.52a6.12 6.12 0 0 1 3.097-4.4m5.377 2.62a.515.515 0 0 0 .527.503.515.515 0 0 0 .516-.515.521.521 0 0 0-.889-.367.52.52 0 0 0-.154.38m-5.717-.006a.515.515 0 0 0 .52.51.5.5 0 0 0 .367-.149.522.522 0 1 0-.734-.734.52.52 0 0 0-.153.373"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/angular.svg����������������������������������0000664�0000000�0000000�00000000340�14753064456�0025251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.712 17.711H7.288l-1.204 2.916L12 24l5.916-3.373zM14.692 0l7.832 16.855.814-12.856zM9.308 0 .662 3.999l.814 12.856zm-.405 13.93h6.198L12 6.396z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/anilist.svg����������������������������������0000664�0000000�0000000�00000000555�14753064456�0025273�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 17.53v2.421c0 .71-.391 1.101-1.1 1.101h-5l-.057-.165L11.84 3.736c.106-.502.46-.788 1.053-.788h2.422c.71 0 1.1.391 1.1 1.1v12.38H22.9c.71 0 1.1.392 1.1 1.101zM11.034 2.947l6.337 18.104h-4.918l-1.052-3.131H6.019l-1.077 3.131H0L6.361 2.948h4.673zm-.66 10.96-1.69-5.014-1.541 5.015h3.23z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/animalplanet.svg�����������������������������0000664�0000000�0000000�00000001174�14753064456�0026273�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.814 5.94-.494.858c2.605.509 4.118 1.618 4.118 2.917 0 .865-.649 1.696-1.762 1.696-1.699 0-2.949-2.673-2.949-2.673-.356-.011-.993-.026-.993-.026s-1.822-2.342-4.595-3.168v3.798c.244.205.559.499.855.863-1.252-.757-2.552-1.317-4.847-1.317-2.496 0-5.547 1.007-7.242 3.763l.178.322c.773-.873 1.968-1.402 2.006-1.416C1.424 13.012.469 15.427 0 16.998l1.456 1.457a10.69 10.69 0 0 1 8.055-3.588c2.77 0 5.582 1.157 7.534 3.157l1.577-1.579c-1.324-2.263-2.924-3.861-2.972-3.909.068.031 1.487.85 3.975.85 2.312 0 4.375-1.285 4.375-3.203 0-2.292-1.965-3.745-5.186-4.243"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ankermake.svg��������������������������������0000664�0000000�0000000�00000000721�14753064456�0025561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.35 10.462 3.075 3.122c.187.187.187.42 0 .606l-3.122 3.123c-.186.186-.42.186-.606 0L8.575 14.19c-.187-.186-.187-.419 0-.606l3.169-3.122c.186-.186.419-.186.606 0m-1.585-1.584c.14.186.14.419-.047.605l-3.122 3.123c-.186.186-.419.186-.606 0l-1.724-1.724v12.675H0V.443h2.33zM21.717.443H24v23.114h-5.266V10.882l-1.724 1.724c-.187.186-.42.186-.606 0l-3.122-3.123c-.187-.186-.187-.419 0-.605z"/></svg>�����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/anki.svg�������������������������������������0000664�0000000�0000000�00000004045�14753064456�0024550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.845 22.627-.169.131-.182.091a1.3 1.3 0 0 1-.362.079c-.27.021-.611-.036-.989-.16-.686-.223-1.537-.67-2.256-.973-.343-.145-.633-.281-.829-.254-.197.027-.44.236-.73.467-.611.486-1.311 1.145-1.91 1.546-.331.22-.644.368-.91.42q-.196.038-.37.021l-.201-.038-.196-.082-.177-.119-.143-.145a1.3 1.3 0 0 1-.187-.32c-.104-.25-.154-.593-.154-.99.001-.721.164-1.669.23-2.447.031-.37.07-.687-.016-.866s-.359-.345-.67-.55c-.65-.431-1.494-.893-2.06-1.34-.312-.246-.548-.498-.681-.735a1.3 1.3 0 0 1-.134-.345l-.025-.202.016-.213.059-.205.094-.18q.095-.147.246-.277c.207-.175.517-.33.895-.452.685-.222 1.637-.361 2.397-.539.362-.084.676-.145.819-.281.144-.138.217-.45.316-.808.209-.752.387-1.696.638-2.373.138-.373.305-.676.489-.874q.137-.147.286-.235l.185-.086.207-.051.214-.006.2.033q.17.045.339.148c.231.143.473.389.706.711.424.584.85 1.446 1.253 2.114.192.318.347.598.522.692.174.094.494.068.865.052.78-.034 1.734-.157 2.455-.128.397.017.736.081.983.195q.18.083.31.201l.14.148.112.181.072.201.03.202q.01.173-.036.368c-.063.263-.223.57-.457.891-.425.583-1.113 1.254-1.623 1.845-.244.281-.463.514-.498.71-.035.194.089.49.219.838.273.731.684 1.601.879 2.295.108.382.151.725.119.995a1.3 1.3 0 0 1-.095.358l-.098.179zm-1.54-18.929c-.018-.057-.07-.226-.122-.346-.17-.387-.418-.846-.544-1.216-.166-.483-.099-.88.102-1.096.201-.214.592-.308 1.086-.177.377.1.851.316 1.249.458.125.044.297.084.354.096.047-.032.193-.134.291-.221.316-.282.675-.659.988-.894.408-.305.807-.366 1.074-.241.266.124.476.468.504.977.021.391-.037.909-.049 1.331-.004.132.011.309.017.366.046.035.187.142.301.209.365.213.835.438 1.155.662.417.294.597.655.56.947-.035.293-.296.599-.773.782-.365.141-.875.246-1.28.364-.126.037-.29.106-.343.129-.019.056-.077.223-.105.351-.091.413-.159.93-.274 1.304-.151.487-.438.77-.727.826s-.661-.098-.983-.494c-.246-.303-.504-.756-.742-1.105a3 3 0 0 0-.229-.287 4 4 0 0 0-.366.009c-.421.042-.933.135-1.324.141-.51.008-.867-.177-1.011-.435-.142-.257-.11-.659.167-1.088.212-.328.563-.713.822-1.047.08-.104.171-.256.202-.305"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ansible.svg����������������������������������0000664�0000000�0000000�00000000557�14753064456�0025247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.617 11.473 4.686 3.695-3.102-7.662zM12 0C5.371 0 0 5.371 0 12s5.371 12 12 12 12-5.371 12-12S18.629 0 12 0m5.797 17.305a.85.85 0 0 1-.875.83c-.236 0-.416-.09-.664-.293l-6.19-5-2.079 5.203H6.191L11.438 5.44a.79.79 0 0 1 .764-.506.76.76 0 0 1 .742.506l4.774 11.494c.045.111.08.234.08.348z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/answer.svg�����������������������������������0000664�0000000�0000000�00000000766�14753064456�0025133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.486 0c-1.92 0-2.881 0-3.615.373A3.43 3.43 0 0 0 .373 1.871C-.001 2.605 0 3.566 0 5.486v9.6c0 1.92 0 2.88.373 3.613.329.645.853 1.17 1.498 1.498.734.374 1.695.375 3.615.375h11.657V24l.793-.396c2.201-1.101 3.3-1.652 4.105-2.473a6.85 6.85 0 0 0 1.584-2.56C24 17.483 24 16.251 24 13.79V5.486c0-1.92 0-2.881-.373-3.615A3.43 3.43 0 0 0 22.129.373C21.395-.001 20.434 0 18.514 0zm1.371 10.285h10.286a5.142 5.142 0 0 1-10.286.024z"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/simple/ansys.svg������������������������������������0000664�0000000�0000000�00000002545�14753064456�0024766�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.042 10.089-.993 2.423-.993-2.423H15.83l1.607 3.921-.704 1.718h1.227l2.31-5.64zm4.667 2.127q-.29-.29-.92-.433l-.699-.16a1.1 1.1 0 0 1-.353-.143.25.25 0 0 1-.101-.21q0-.185.168-.286t.463-.1q.639 0 1.296.453l.336-.84a2.7 2.7 0 0 0-.757-.38 2.8 2.8 0 0 0-.867-.134q-.52 0-.929.168a1.47 1.47 0 0 0-.63.463 1.1 1.1 0 0 0-.224.681q0 .488.282.77t.88.416l.672.152q.312.068.425.151a.28.28 0 0 1 .114.236q0 .168-.164.265-.164.096-.459.096-.413 0-.816-.126a2.8 2.8 0 0 1-.74-.353l-.337.875q.346.244.82.374.475.13 1.048.13.832 0 1.308-.34.475-.341.475-.938 0-.496-.29-.787m-9.381-.433-.698-.16a1.1 1.1 0 0 1-.354-.143.25.25 0 0 1-.1-.21q0-.185.168-.286t.463-.1q.638 0 1.295.453l.337-.84a2.7 2.7 0 0 0-.757-.38 2.8 2.8 0 0 0-.867-.134 2.4 2.4 0 0 0-.93.168 1.47 1.47 0 0 0-.63.463 1.1 1.1 0 0 0-.223.681q0 .488.282.77t.88.416l.672.152q.312.068.425.151a.28.28 0 0 1 .114.236q0 .168-.164.265-.165.096-.459.096-.411 0-.816-.126a2.8 2.8 0 0 1-.74-.353l-.336.875q.345.244.82.374.476.13 1.047.13.832 0 1.308-.34.475-.341.475-.938 0-.496-.29-.786t-.922-.434m-4.505-1.8q-.438 0-.786.176a1.44 1.44 0 0 0-.568.513v-.588H7.233v4.13h1.27V11.9q0-.42.24-.673.238-.253.634-.253.329 0 .484.194.156.193.156.614v2.43h1.27v-2.49q0-.874-.362-1.307t-1.102-.433zm-5.39-1.524-.817 1.996 1.538 3.754H6.88zm-.372-.187H2.433L0 14.21h1.628z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/anta.svg�������������������������������������0000664�0000000�0000000�00000001167�14753064456�0024553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 15.237a20.74 20.74 0 0 0-9.86-7.509 31.3 31.3 0 0 1 6.91 1.014l-1.554-1.32A29.2 29.2 0 0 0 9.05 5.51a29 29 0 0 0-6.405.704L0 8.032c.335 0 .838-.021 1.175-.021a25.15 25.15 0 0 1 20.457 10.48ZM9.196 12.976h3.334l-.333 1.183h-1.053l-1.21 4.332H8.768l1.206-4.332h-1.11zm-3.77 0h1.042l.438 2.954.823-2.954h1.197L7.39 18.49H6.221l-.404-2.743-.764 2.743H3.884ZM0 18.49l2.823-5.513h1.18L3.77 18.49H2.584l.054-.74H1.526l-.36.74zm2.02-1.884h.69l.209-1.948zm8.213 1.884 2.829-5.513h1.176l-.234 5.513h-1.181l.052-.74h-1.107l-.365.74zm2.024-1.884h.69l.209-1.948z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/antdesign.svg��������������������������������0000664�0000000�0000000�00000001351�14753064456�0025577�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.451 6.68c.51-.506.51-1.33 0-1.837L15.578 2.97l.003.002-2.554-2.55a1.463 1.463 0 0 0-2.05.013L.427 10.98a1.443 1.443 0 0 0 0 2.047l10.549 10.54a1.45 1.45 0 0 0 2.05 0l4.423-4.42a1.297 1.297 0 0 0 0-1.838 1.305 1.305 0 0 0-1.84 0l-3.35 3.354a.346.346 0 0 1-.495 0l-8.427-8.419a.346.346 0 0 1 0-.495l8.424-8.42q.017-.014.035-.029c.14-.11.332-.099.46.03L15.61 6.68a1.3 1.3 0 0 0 1.841 0m-8.244 5.376a2.848 2.846 0 1 0 5.696 0 2.848 2.846 0 1 0-5.696 0m14.367-1.034L20.28 7.743a1.303 1.303 0 0 0-1.841.003 1.297 1.297 0 0 0 0 1.838l2.224 2.222c.14.139.14.356 0 .495l-2.192 2.19a1.297 1.297 0 0 0 0 1.837 1.305 1.305 0 0 0 1.84 0l3.264-3.26a1.445 1.445 0 0 0-.002-2.047"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/antena3.svg����������������������������������0000664�0000000�0000000�00000001674�14753064456�0025164�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.997 10.755a7 7 0 0 0-.997-.083c-.111 0-.497.008-.998.083-2.919.438-4.948 2.08-6.201 4.695-.641 1.336-.357 2.255.8 3.166q.103.08.205.158.32.214.627.414c3.026 1.975 4.133 2.676 4.58 2.881.186.085.512.244.962.255h.048c.45-.011.777-.17.963-.255.446-.205 1.553-.907 4.579-2.882q.308-.2.629-.415l.203-.156c1.157-.911 1.441-1.83.8-3.166-1.251-2.614-3.281-4.257-6.2-4.695m7.252 4.36c.637.774 1.205.834 1.843.387.85-.597 1.894-2.857 1.908-4.724-.05-5.112-5.337-8.666-10.648-9.093-.212-.02-.534-.026-.777.153-.247.182-.292.457-.113.812.305.603.708 1.147 1.092 1.7 1.928 2.77 3.56 5.72 5.298 8.607.442.734.85 1.492 1.397 2.157zM5.148 12.956c1.738-2.886 3.37-5.837 5.297-8.607.385-.553.787-1.097 1.092-1.7.18-.355.135-.63-.113-.812-.243-.18-.565-.173-.777-.153C5.337 2.112.05 5.665 0 10.778c.013 1.867 1.057 4.128 1.908 4.724.638.447 1.206.387 1.843-.388.546-.665.954-1.423 1.397-2.157Z"/></svg>��������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/anthropic.svg��������������������������������0000664�0000000�0000000�00000000342�14753064456�0025611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.304 3.541h-3.672l6.696 16.918H24Zm-10.608 0L0 20.459h3.744l1.37-3.553h7.005l1.369 3.553h3.744L10.536 3.541Zm-.371 10.223L8.616 7.82l2.291 5.945Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/antv.svg�������������������������������������0000664�0000000�0000000�00000001601�14753064456�0024571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.837 1.418c-.363 0-3.064.002-3.545 0-.188 0-.446.1-.62.2-.538.305-.855 1.123-.558 1.735L10.69 21.71c.357.617.801.87 1.324.871.63.001 1.038-.454 1.18-.7.635-1.088 6.214-10.707 6.214-10.707a1.285 1.285 0 0 0-.497-1.694c-.596-.348-1.397-.197-1.744.388-.307.517-4.58 7.888-4.886 8.413-.156.267-.463.2-.585-.017-.216-.383-5.255-9.13-7.833-13.605l.005.004c-.066-.103-.15-.328-.043-.509.09-.155.279-.138.372-.138h9.535a1.3 1.3 0 0 0 0-2.6zm12.737.029v.003a1.3 1.3 0 0 0 0 2.593v.003l2.386.002c.309 0 .406.3.28.514L19.053 6.59l.002.002a1.3 1.3 0 0 0 2.243 1.303l.002.002 2.425-4.2c.354-.62.349-1.13.086-1.582-.315-.544-.915-.667-1.2-.667Zm-2.839 5.642-.038.002H9.71a.54.54 0 0 0-.523.55c0 .12.037.23.098.32l2.505 4.275q.014.028.032.055l.003.005a.47.47 0 0 0 .39.207c.194 0 .36-.12.435-.294l2.506-4.306a.515.515 0 0 0-.42-.814"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/anycubic.svg���������������������������������0000664�0000000�0000000�00000000332�14753064456�0025416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6.762.534 8.728 3.481 8.469 7.449-6.494-.631zm10.72 10.463 6.518.581-7.826 8.749-8.649 3.139zM6.592.601l10.699 10.331L7.355 23.44 0 12.465z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/anydesk.svg����������������������������������0000664�0000000�0000000�00000000265�14753064456�0025264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.322 3.677 0 12l8.322 8.323L16.645 12zm7.371.01-1.849 1.85 6.49 6.456-6.49 6.49 1.85 1.817L24 11.993Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/anytype.svg����������������������������������0000664�0000000�0000000�00000000500�14753064456�0025307�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.333 0h13.334A5.32 5.32 0 0 1 24 5.333v13.334A5.32 5.32 0 0 1 18.667 24H5.333A5.32 5.32 0 0 1 0 18.667V5.333A5.32 5.32 0 0 1 5.333 0m10.334 7.667v-3H6.344v3zm0 0v11.666h3V7.667ZM9.5 19.333a4.833 4.833 0 1 0 0-9.666 4.833 4.833 0 0 0 0 9.666"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/aol.svg��������������������������������������0000664�0000000�0000000�00000000753�14753064456�0024403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.07 9.334c2.526 0 3.74 1.997 3.74 3.706s-1.214 3.706-3.74 3.706-3.74-1.997-3.74-3.706 1.213-3.706 3.74-3.706m0 5.465c.9 0 1.663-.741 1.663-1.759s-.763-1.759-1.663-1.759-1.664.741-1.664 1.759.764 1.76 1.664 1.76m4.913-7.546h2.104v9.298h-2.104zm4.618 6.567a1.398 1.398 0 1 0 .002 2.796 1.398 1.398 0 0 0-.002-2.796M5.536 7.254H3.662L0 16.55h2.482l.49-1.343h3.23l.452 1.343H9.16zm-1.91 6.068L4.6 10.08l.974 3.242z"/></svg>���������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apache.svg�����������������������������������0000664�0000000�0000000�00000004721�14753064456�0025050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.805 2.197v.066h.156v.44h.072v-.44h.156v-.066zm.9 0-.175.353-.172-.353h-.087v.506h.067V2.3l.172.35h.045l.172-.35v.404h.066v-.506zm-4.257 1c-.204.31-.424.66-.66 1.06l-.04.062a45 45 0 0 0-1.265 2.29q-.281.54-.577 1.146l2.267-.25c.66-.302.955-.578 1.242-.976a16 16 0 0 0 .23-.342c.23-.363.46-.763.663-1.16.197-.386.37-.767.505-1.11q.125-.332.198-.6.062-.236.1-.45c-.884.15-1.965.295-2.668.33zM11.894 7.78l-.077.16q-.117.238-.236.488-.128.27-.26.552l-.132.287a75 75 0 0 0-1.427 3.3q-.244.596-.493 1.23c-.15.38-.297.765-.45 1.164l-.02.06q-.224.594-.453 1.22l-.01.027.72-.08a.2.2 0 0 1-.042-.006c.863-.106 2.01-.75 2.75-1.547.342-.367.652-.8.94-1.306q.319-.564.604-1.258.252-.607.48-1.318c-.196.105-.423.18-.673.235a2 2 0 0 1-.273.046c.806-.31 1.314-.905 1.683-1.64a2.8 2.8 0 0 1-.968.428q-.088.018-.174.03l-.043.006h.002c.278-.118.514-.248.718-.403a2.6 2.6 0 0 0 .637-.698l.063-.104.077-.154a8 8 0 0 0 .367-.85l.03-.088a3 3 0 0 0 .123-.463 1 1 0 0 1-.094.065c-.243.145-.66.277-.996.34l.663-.074-.664.073h-.017l-.1.017q.008-.005.017-.008l-2.265.25-.013.022zM8.27 16.45q-.176.485-.355.992l-.005.015q-.024.07-.05.142c-.08.227-.15.432-.31.9.264.12.475.435.675.793a1.44 1.44 0 0 0-.466-.99c1.293.06 2.41-.27 2.99-1.217q.075-.126.14-.268c-.26.333-.59.474-1.2.44q-.002 0-.005.002l.004-.002c.9-.404 1.354-.79 1.754-1.433q.14-.229.28-.503c-.788.81-1.702 1.04-2.664.865l-.72.078-.067.183zM15.42.112c-.376.222-1 .85-1.748 1.763l.686 1.294c.48-.687.97-1.307 1.462-1.836l.058-.062q-.03.03-.057.062c-.16.176-.644.74-1.375 1.863.703-.035 1.784-.18 2.666-.33.262-1.47-.258-2.142-.258-2.142s-.66-1.07-1.436-.61zm-3.084 6.402a40 40 0 0 1 1.306-2.26l.04-.064q.336-.529.677-1.02l-.685-1.293-.157.192q-.297.369-.613.79a40 40 0 0 0-2.016 2.97l-.022.038.893 1.763q.284-.568.575-1.118zm-3.73 8.32c.158-.406.319-.81.483-1.225.156-.394.32-.79.484-1.19a91 91 0 0 1 1.6-3.604l.205-.424c.12-.243.237-.485.36-.724a.1.1 0 0 1 .02-.04l-.895-1.763-.044.07a44 44 0 0 0-.617 1.042 38 38 0 0 0-1.092 2.04l-.094.193a25 25 0 0 0-1.258 3.087 19 19 0 0 0-.52 1.997l.896 1.77q.177-.476.364-.963zm-1.376-.476a13 13 0 0 0-.234 1.692q-.002.03-.005.06c-.28-.45-1.03-.888-1.026-.884.537.778.944 1.55 1.005 2.31-.29.058-.684-.027-1.14-.195.475.436.83.556.97.588-.434.03-.89.328-1.346.67.668-.27 1.21-.38 1.596-.29-.61 1.74-1.23 3.655-1.843 5.69a.54.54 0 0 0 .364-.354c.11-.368.84-2.786 1.978-5.965l.097-.27.028-.078q.181-.498.374-1.02l.09-.237v-.004L7.24 14.3c-.003.02-.01.04-.012.06z"/></svg>�����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apacheairflow.svg����������������������������0000664�0000000�0000000�00000004056�14753064456�0026435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.195 16.822 4.002-4.102C23.55 10.308 23.934 5.154 24 .43a.4.4 0 0 0-.246-.373.39.39 0 0 0-.437.09l-6.495 6.658-4.102-4.003C10.309.45 5.154.066.43 0H.423a.397.397 0 0 0-.277.683l6.658 6.494-4.003 4.103C.45 13.692.065 18.846 0 23.57a.398.398 0 0 0 .683.282l6.494-6.657 3.934 3.837.17.165c2.41 2.353 7.565 2.737 12.288 2.803h.006a.397.397 0 0 0 .277-.683zm-.409-9.476c.04.115.05.24.031.344-.17.96-1.593 2.538-4.304 3.87a.6.6 0 0 0-.08-.079c1.432-3.155 1.828-5.61 1.175-7.322l3.058 2.984zm-.131 9.44a.7.7 0 0 1-.347.031c-.96-.171-2.537-1.594-3.87-4.307a1 1 0 0 0 .08-.078l-.001.001c3.155 1.432 5.61 1.83 7.324 1.174l-2.969 3.043M23.568.392a.05.05 0 0 1 .052-.011c.018.006.03.024.029.043-.065 4.655-.437 9.726-2.703 12.05-1.53 1.565-4.326 1.419-8.283-.377.006-.037.021-.07.02-.108 0-.044-.017-.082-.026-.123 2.83-1.39 4.315-3.037 4.506-4.115.057-.322-.009-.542-.102-.688zM.393.43A.05.05 0 0 1 .382.38C.39.36.403.343.425.35c4.655.065 9.727.438 12.05 2.703l.002.002c1.56 1.527 1.415 4.323-.379 8.28-.033-.005-.062-.02-.097-.02h-.008c-.045.001-.084.019-.126.027-1.39-2.83-3.037-4.314-4.115-4.506-.323-.057-.542.01-.688.103zm11.94 11.563a.33.33 0 0 1-.327.335H12a.332.332 0 0 1-.004-.661c.172.016.333.144.335.326zm-5.12 4.661a.7.7 0 0 1-.03-.345c.17-.96 1.595-2.54 4.309-3.873.013.016.019.035.033.05.013.012.03.017.044.028-1.434 3.158-1.83 5.613-1.177 7.326l-3.041-2.967m-.006-9.659a.74.74 0 0 1 .345-.031c.961.17 2.54 1.594 3.871 4.306a.6.6 0 0 0-.079.08c-2.167-.983-4.007-1.484-5.498-1.484q-1.02 0-1.825.308L7.128 7.35M.43 23.607c-.018.018-.038.015-.052.01q-.028-.01-.028-.043c.065-4.654.437-9.725 2.703-12.049 1.527-1.565 4.325-1.419 8.286.378-.006.035-.02.067-.02.104 0 .043.018.083.026.124-2.831 1.391-4.317 3.04-4.51 4.117-.057.322.01.542.103.688zm23.144.042c-4.655-.065-9.726-.437-12.05-2.703l-.005-.006c-1.56-1.526-1.412-4.322.383-8.279.033.005.064.02.098.02h.009c.043 0 .08-.018.122-.027 1.39 2.832 3.036 4.317 4.115 4.51q.125.021.23.021a.78.78 0 0 0 .45-.133l6.68 6.516c.02.02.016.04.01.052a.04.04 0 0 1-.042.029"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apacheant.svg��������������������������������0000664�0000000�0000000�00000011347�14753064456�0025555�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.006 17.292c-.245.167-.534.36-.618.445-.148.147-.322.455-.452.643-.129.187-.486.268-.687.16-.2-.107-.12-.08.12-.147.163-.045.882-.646 1.401-1.101zm2.434-5.4c-.23-.013-.444-.003-.589.047-.428.147-1.352.696-1.5 1.03-.12.276-.25.515-.263.815a1 1 0 0 0-.05.122zm17.41 1.711s-.309-.312-.576-.432c-.268-.121-.255-.242-.415-.255a2.4 2.4 0 0 1-.697-.174c-.24-.107-.923-.388-1.218-.549a4 4 0 0 1-.563-.348c-.08-.067-.214-.058-.468-.018 0 0-.724.165-.978.285-.14.067-.378.194-.579.309l.072.167c.08-.062.174-.121.28-.167.334-.148.655-.282 1.03-.309.375-.026.429-.053.429-.053s.174-.027.375.08c.2.107 1.393.71 1.567.777s.442.188.63.335c.186.147.334.134.334.134s.134.147.335.281c.2.134.267.2.388.228.12.026.362.151.054-.29zm-8.087 5.291c-.268-.093-.616-.32-.657-.388-.04-.067-.16-.12-.16-.12s-.359-.421-.573-.836c0 0-.043-.104-.11-.258h-.255c.193.23.436.567.668.86.255.322.11.354.19.354s.026.054.093.12c.067.068.429.282.523.349.093.067.482.2.535.16s.08-.173.08-.173-.067.026-.334-.068m-2.43-5.217a1 1 0 0 0 .058-.078c.197-.296.425-.53.54-.78q.064.018.128.022c.01.251.127.45.216.61.06.113.208.243.367.362a2 2 0 0 0-.249.053s-1.089.22-1.29.327-.37.248-.498.207.213-.16.509-.383a.56.56 0 0 0 .219-.34m.73-1.842a1.2 1.2 0 0 0-.279.075 1.2 1.2 0 0 0-.367-.333c.048-.107.101-.24.188-.362.134-.187.268-.187.308-.04.025.089.097.415.15.66m2.007 1.235c.134.016.134.05.268.25.134.201.167.469.067.57s-.218.133-.502-.252-.006-.59.167-.568m-7.527-2.685a10 10 0 0 0-.688.452l7.131-5.98h.086l3.24 7.59a3 3 0 0 0-.301.188s-.106 0-.146.05l-.015-.01c-.067-.04-.495-.455-.495-.455-.215-.188-.577-.576-.804-.764-.228-.187-1.145-.478-1.526-.441-.358.034-.526.267-.618.495a2.4 2.4 0 0 0-.24-.361l-.294-.349s-.241 0-.482.161c-.146.097-.351.318-.49.476a.43.43 0 0 0-.26.073c-.174.147-1.165.844-1.205 1.018q-.039.161-.119.22a.37.37 0 0 0-.417-.073l-.036.016c-.025-.483-.092-1.748-.125-1.877-.04-.16-.12-.281-.254-.214-.134.066-.255.254-.255.455 0 .2.08.308.108.388.022.067.044 1.06.09 1.448-.176.098-.338.219-.385.36-.094.281-.08.388-.16.469a.3.3 0 0 1-.045.033c-.058-.055-.125-.11-.177-.163-.028-.122-.036-.26.074-.325.134-.081.134-.603 0-.657l-.134-.053s.241-.898.188-1.406c-.054-.51-.108-1.045-.215-1.126s-.335-.04-.335-.04-.307.174-.696.402m2.852 4.888c.135 0 .228.147.228.147s-.013.255.175.308c.187.054.696-.187.816-.294s.362.16.469.388.67 1.179.87 1.406q.076.086.16.193H3.817c.253-.172.524-.353.562-.407.066-.092 1.185-1.211 1.307-1.436a.7.7 0 0 0 .214-.158.6.6 0 0 0 .18-.04c.362-.147.937-.602 1.219-1.004a3.4 3.4 0 0 0 .384-.687c.15-.118.27-.202.312-.21.134-.027.348-.094.348.133 0 .228.228.723.429 1.018s.468.536.468.536-.013.12.121.134c.134.013.254-.027.281.04.065.161.348.04.482-.08.134-.121.188.08.375-.04a.54.54 0 0 0 .268-.496.28.28 0 0 0-.112-.224l.018-.017s.16.011.32-.04a1 1 0 0 0 .002.28c.04.336.268.55.401.55m-7.097 1.54c-.088.088-.362.335-.677.608H0l3.988-3.343c-.083.366-.066.882.243 1.543 0 0 .241.147.616.107.083-.008.202-.012.335-.026-.329.428-.73.958-.884 1.11m13.78-3.896c.05-.042.155-.17.308-.295l2.05 4.8h-6.117a33 33 0 0 0-.312-.715c-.187-.415-.804-1.634-1.072-1.7a.95.95 0 0 0-.79.173c-.187.161-.267.107-.361.04-.094-.066.014-.227-.04-.455a1.7 1.7 0 0 0-.116-.326.17.17 0 0 0 .143-.116c.053-.147.04-.214.227-.187q.044.006.12.008a.3.3 0 0 0-.043.114c-.006.15.114.422.291.488s.929.394 1.086.236c.158-.157.858-.54.982-.609.125-.068.354-.115.432-.098s.24.6.515 1.099c.276.498.23.707.41.637s.177.134.342.13c.166-.006.196.11.292.295.097.186.198.414.437.452.238.038 1.185.284 1.293.226.11-.059.114-.208-.16-.268-.275-.06-.919-.063-1.062-.162-.143-.1-.179-.628-.33-.689-.15-.06-.38-.137-.409-.198-.024-.052-.563-1.007-.77-1.517.273.117.695.282.953.365.375.12 1.018.321 1.286.321.17 0 .237-.06.263-.103a1 1 0 0 0 .045.103c.053.094.133.16.133.16s-.026.054.054.094.63.121.83.309c.201.187.483.549.51.883.026.335.24.697.347.71.108.013.228 0 .12-.455-.106-.456-.267-.817-.521-1.018-.255-.201-.911-.522-.991-.563s-.187-.147-.228-.147c-.04 0-.027-.04-.094-.268l-.035-.132c.017-.045.08-.215.102-.444.027-.267-.094-.856-.2-1.004 0 0-.011-.094-.013-.171.033.016.066.019.093-.003M6.77 11.924l-.189-.02.764-.642c-.114.167-.544.623-.544.623l-.03.04m2.44 1.915c.09.09.165.314.242.422-.056.177-.072.26.093.315.201.067.375-.027.375-.027s.025.029.065.064c-.167.097-.324.206-.373.27-.08.108-.174.054-.174.054s-.321-.535-.455-1.031a2 2 0 0 0-.053-.166c.106.022.204.023.28.099m-.051-3.63c.12-.067.228-.04.201.16-.027.202-.16 1.019-.174 1.327-.013.307.013.937.013.937s-.167.116-.148.247q-.077-.014-.106-.02c-.054-.013.107-.548-.094-.682-.2-.134-.576.013-.71.08-.108.054-.313.09-.387.103a.38.38 0 0 0-.188-.25c-.099-.05-.331-.112-.6-.159l.425-.457s.322-.027.55-.188c.227-.16 1.098-1.031 1.218-1.098m-1.134 3.057c-.095.047-.185.12-.284.194a.3.3 0 0 0-.015-.13.6.6 0 0 1-.023-.25c.066.04.2.124.322.186"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apachecassandra.svg��������������������������0000664�0000000�0000000�00000010127�14753064456�0026725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.374 10.53a3 3 0 0 1-.428-.222l.555.143c0 .02-.01.036-.01.055l-.117.025zm-.283 1.506-.315.253.852-1.079-1.078.391c.002.017.009.033.009.05a.57.57 0 0 1-.184.42q.154.327.375.616a3.2 3.2 0 0 1 .34-.651zm.717-2.347-.652-.82a.43.43 0 0 1-.506.162c-.054.073-.083.162-.13.24l1.258.463q.015-.023.03-.045m-1.666.444c-.07.314-.087.637-.05.956a.57.57 0 0 1 .451.475l.946-.606c-.067-.022-.126-.06-.191-.088l-1.119-.08.64-.14a3.2 3.2 0 0 1-.668-.554zM20.1 11.648c-.164.202.833 1.022.833 1.022s-1.654-1.022-2.234-.72c-.278.144.574.811 1.175 1.242-.428-.274-.982-.571-1.175-.408-.328.277 1.565 2.549 1.565 2.549s-2.145-2.322-2.36-2.209c-.214.114.593 1.224.593 1.224s-1.06-1.16-1.35-.959c-.29.202 1.514 3.218 1.514 3.218s-1.956-3.091-2.763-2.574c1.268 2.782.795 3.18.795 3.18s-.162-2.839-1.742-2.764c-.795.038.379 2.12.379 2.12s-1.08-1.902-1.8-1.864c1.326 2.51.854 3.53.854 3.53s.219-2.143-1.58-3.336c.682.606-.427 3.336-.427 3.336s.976-4.023-.719-3.256c-.268.121-.019 2.007-.019 2.007s-.34-2.158-.851-2.045c-.298.066-1.893 2.99-1.893 2.99s1.306-3.16.908-3.027c-.29.096-.833 1.4-.833 1.4s.265-1.287 0-1.363c-.264-.075-1.74 1.363-1.74 1.363s1.097-1.287.908-1.552c-.287-.402-.623-.42-1.022-.265-.581.226-1.363 1.287-1.363 1.287s.78-1.074.643-1.476c-.219-.647-2.46 1.249-2.46 1.249s1.325-1.25 1.022-1.514c-.303-.265-1.947-.183-2.46-.185-1.515-.004-2.039-.36-2.498-.724 1.987.997 3.803-.151 6.094.494l.21.06c-1.3-.558-2.144-1.378-2.226-2.354-.036-.416.074-.827.297-1.222.619-.4 1.29-.773 2.06-1.095a4 4 0 0 0-.064.698c0 2.44 2.203 4.417 4.92 4.417s4.92-1.977 4.92-4.417c0-.45-.083-.881-.223-1.29 1.431.404 2.45.968 3.132 1.335.022.092.045.184.053.279.024.274-.018.547-.11.814.095-.147.198-.288.28-.445.367-.997 1.855.227 1.855.227s-1.085-.454-1.06-.24c.026.215 1.628.96 1.628.96s-1.45-.455-1.362-.114c.088.34 1.817 1.703 1.817 1.703s-1.956-1.489-2.12-1.287zm-7.268 2.65.042-.008-.06.01zM9.256 9.753c.12.13.26.234.396.343l.927-.029-1.064-.788c-.093.154-.195.303-.26.474Zm10.62 3.44c.3.215.54.373.54.373s-.24-.181-.54-.374zM7.507 8.617c-.14.229-.214.492-.215.76a3.99 3.99 0 0 0 2.358 3.64q0-.008.003-.014a3.2 3.2 0 0 1-.58-.788c-.648.099-.926-.794-.336-1.08a3.2 3.2 0 0 1 .138-1.388 3.16 3.16 0 0 1-.52-1.36q-.444.105-.848.23m1.488.82q.163-.36.402-.661a.435.435 0 0 1 .568-.557c.077-.059.166-.099.248-.15a16 16 0 0 0-1.727.284c.114.388.272.76.509 1.084m2.285 3.928c1.4 0 2.633-.723 3.344-1.816a3.4 3.4 0 0 0-1.265-.539l-.297-.023.916.9-1.197-.467.704 1.078-1.074-.832-.012.006.347 1.278-.596-1.134-.098 1.33-.401-1.326-.472 1.261.114-1.359q-.008-.004-.015-.008l-.814 1.154.286-1.067c-.34.322-.605.713-.781 1.146q.143.153.303.29.484.126 1.008.128m10.145-4.434c.971-.567 1.716-1.955 1.716-1.955s-1.893 1.955-3.205 1.665c1.186-.934 1.766-2.549 1.766-2.549s-1.506 2.325-2.448 2.423c1.086-.959 1.54-2.322 1.54-2.322s-1.237 1.817-2.196 1.944c1.287-1.161 1.338-1.893 1.338-1.893s-1.781 2.302-2.499 1.943c.858-.934 1.439-2.12 1.439-2.12s-1.489 2.019-1.893 1.69c-.277-.05.454-.958.454-.958s-.908.807-1.16.606c.454-.278 1.236-1.64 1.236-1.64S16 7.505 15.621 7.304l.731-1.483s-.73 1.483-1.715 1.23c.454-.58.63-1.112.63-1.112s-.756 1.213-1.69.885c-.22-.077.273-.635.273-.635s-.626.61-1.055.534c-.43-.076.025-.858.025-.858s-.757 1.186-.908 1.136.075-.833.075-.833-.555.908-.858.858 0-.934 0-.934-.328.984-.58.909c-.252-.076-.303-.656-.303-.656s-.068.788-.429.858c-2.725.53-5.728 1.69-9.489 5.45C3.887 10.738 5.3 7.91 11.962 7.659c5.044-.191 7.399 2.137 8.177 2.17C22.51 9.93 24 7.633 24 7.633s-1.489 1.716-2.574 1.3zm-7.74.872-.608.464v.001l.054.003a3.4 3.4 0 0 0 .554-.468m1.583-.426c0-.536-.237-.929-.594-1.217a3.2 3.2 0 0 1-.165.825.393.393 0 0 1-.328.681c-.154.233-.34.445-.549.63l.661.034-.995.237c-.025.018-.045.041-.07.058a3.2 3.2 0 0 1 1.536.691c.32-.574.504-1.235.504-1.94zM10.99 7.996a3.5 3.5 0 0 0-.785.46.43.43 0 0 1-.013.357l.885.643.023-.016-.36-1.262.627 1.12c.018-.006.04-.006.058-.011l-.02-1.251.398 1.163.477-1.15.016 1.268q.005.003.012.007l.713-1.005-.363 1.218.009.01 1.04-.69-.759 1.05.002.005.95-.34q.02-.022.041-.045a.395.395 0 0 1 .394-.632 3.4 3.4 0 0 0 .27-.784 14 14 0 0 0-2.798-.168c-.286.011-.55.033-.817.053"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apachecloudstack.svg�������������������������0000664�0000000�0000000�00000010647�14753064456�0027131�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.446 11.386c.326-.116 1.077-.462 1.228-1.23l-1.692-.114s-.458-.161-.705-.94c0 0-1.022-.55-.951-1.342 0 0 .158-.987 1.004-1.128 0 0 .882-.218 1.062 1.192 0 0 .415 1.194-.394 1.278 0 0-.175.385.46.402 0 0 .773.23 1.32-.229 0 0 .371-.341.812-.276 0 0 .095-.169-.09-.274 0 0-1.097-.939-1.289-2.267 0 0-.905-.126-1.018-.766 0 0-.211-.992.608-1.19 0 0 .522-.119.787 0 0 0 .667-1.817 2.57-2.128 0 0 1.573-.37 2.134.82 0 0 .232.647.106 1.19 0 0-.132.594.007.746 0 0 .509-.12.72.211s.304 1.038-.119 1.203c0 0 .126.562-.297.945 0 0-1.342.78-1.725 1.44 0 0-.118.151-.178.204a1.35 1.35 0 0 1-.516.283s-.159.07-.337-.018c0 0-.053.265.245.311 0 0 .565-.078 1.18-.266l4.443-1.59s-.206-.555-.041-.826c0 0 .091-.144.174-.175.154-.059.338-.352.346-.581 0 0-.043-.58.373-.606 0 0 .4-.024.366.465l-.029.321s.61-.23.814.185c0 0 .412.836-.025 1.51 0 0-.643.633-1.489.235l-.29-.179s-5.168 2.14-5.228 2.28c0 0-.405.205-.707.753 0 0-1.037 1.85-1.572 2.34 0 0-.35.423-.601.528l.054.146c.347.037.601-.047.601-.047.965-.462 1.105-.106 1.105-.106.352.252.204.978.204.978 2.696 2.59-.204 5.128-.204 5.128-.455.198-.669 0-.669 0-.079-.119.67-.766.67-.766 1.368-1.64.156-3.412.156-3.412-2.023-2.18-4.05-.553-4.05-.553-.912 1.018-.78 2.128-.78 2.128-.159.317-.423.185-.423.185-.357-.423 0-1.533 0-1.533.529-1.23 1.652-1.732 1.652-1.732l.169-.136c.204-.935-.134-2.062-.134-2.062-.925-2.206-2.488-2.578-3.03-2.64.008.057.006.046-.001 0-.12-.013-.189-.012-.189-.012-2.317-.22-3.379 1.789-3.379 1.789-.62.55-.581 1.815-.581 1.815 1.524.343 1.898 1.295 1.898 1.295.106.396-.348.269-.348.269C5.22 13.69 4.51 13.635 4.51 13.635c-1.44-.26-2.414.664-2.414.664-.584.405-1.102 1.281-1.102 1.281C.157 17.06.68 18.472.68 18.472c.287 1.433 1.997 2.385 1.997 2.385.814.422 1.684.297 1.684.297.708-.162.544.211.544.211-.2.3-.469.304-.469.304-1.528.101-2.216-.414-2.216-.414C-1.195 19.11.347 15.59.347 15.59c1.6-3.119 4.19-2.458 4.19-2.458.052-.939.819-2.247.819-2.247 1.14-1.42 2.416-1.726 3.181-1.764l.004-.004s-.018-1.007.29-1.862c0 0 .16-.435.723-1.286.089-.134.37-.493.458-.82 0 0 .476-1.497-1.229-1.735 0 0-.543-.096-.898.19-.225.18-.437.286-.6.33 0 0-.806.277-.78-.238 0 0-.145-.767 1.68-.978 0 0 2.23-.383 2.49 1.388 0 0 .364 1.083-.958 2.709 0 0-.722 1.118-.557 2.334l.068.013c2.326.404 3.211 2.212 3.211 2.212zm.322.648.797 1.602c1.387-.564 1.98-2.434 1.98-2.434.38-.942-.211-1.083-.211-1.083-.406-.106-.696.3-.696.3-.91 1.104-1.671 1.519-1.87 1.615m4.284-8.153c-1.295-1.242-2.538.343-2.538.343-.766.978.08 2.353.08 2.353-.344.08-.503.317-.503.317-.237 1.19 1.11 2.009 1.11 2.009 1.031.687 1.666-.212 1.666-.212.264-.608 1.691-1.612 1.691-1.612.476-.476 0-1.004 0-1.004-.502-.357-.581-.978-.581-.978-.04-.529.04-1.176.04-1.176-.265-.476-.965-.04-.965-.04m-3.714 1.19c-.08-.212-.35-.146-.35-.146-.535.099-.423.7-.423.7.04.417.476.483.476.483a2.07 2.07 0 0 1 .297-1.038zm4.943.468c-.06.126.066.212.066.212.177.117.343.324.343.324.08.072.205 0 .205 0 .17-.247-.125-.536-.125-.536-.198-.198-.49 0-.49 0zm-6.159 2.333s-.132-.674-.572-.86c0 0-.318-.083-.555.19 0 0-.437.445-.291.987 0 0 .251.595.916.718 0 0 .375.115.59-.454 0 0 .055-.176-.088-.581m9.829-.328c.099.114.158.304.158.304.013.445.627.42.627.42.688.03.933-.4.933-.4.206-.357.127-1.049-.1-1.178-.228-.13-.732 0-.732 0 .122-.238.048-.615.048-.615-.044-.406-.386-.172-.386-.172-.206.154-.106.595-.106.595-.01.28-.372.405-.372.405-.276.283-.07.64-.07.64zm-5.92-1.962c-.01.12-.149.066-.149.066-.036-.26-.377-.323-.377-.323-.357.015-.356.28-.356.28-.199.123-.242-.056-.242-.056.116-.452.589-.36.589-.36.498.03.535.393.535.393m.758.055s.027-.37.334-.44c0 0 .446-.143.64.256 0 0 .07.162.007.207 0 0-.14.051-.181-.192 0 0-.113-.22-.336-.173 0 0-.198.021-.248.23 0 0-.01.22-.216.112m-1.676 1.235c.102-.062.247-.009.34.047.1.062.21.12.316.17.209.099.425.162.661.162.123 0 .254.012.374-.005q.151-.02.304-.035a1 1 0 0 0 .359-.096c.055-.029.11-.052.164-.084.05-.031.096-.072.144-.102.023-.014.082-.058.11-.053.035.006.069.103.06.136-.068.02-.133.074-.198.105-.09.044-.173.103-.255.16-.116.08-.252.192-.326.313-.173.283-.37.572-.656.749a.9.9 0 0 1-.495.119c-.166 0-.376-.03-.519-.12a.6.6 0 0 1-.29-.356c-.044-.158 0-.317 0-.478 0-.125.033-.31-.026-.42-.02-.038-.028-.027-.062-.057-.026-.022-.04-.065-.027-.113.002-.008.014-.043.022-.042m1.291-.515a.137.137 0 0 1-.14.134.137.137 0 0 1-.14-.134c0-.074.062-.134.14-.134.077 0 .14.06.14.134m.575-.023a.137.137 0 0 1-.14.134.137.137 0 0 1-.14-.134c0-.074.062-.134.14-.134.077 0 .14.06.14.134"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apachecordova.svg����������������������������0000664�0000000�0000000�00000000757�14753064456�0026433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.545.545H5.455L0 9.273l2.182 14.182h3.886l-.273-3.273h1.909l.273 3.273h8.045l.273-3.273h1.909l-.273 3.273h3.886L24 9.273zm0 17.455H5.455L4.364 9.273l2.182-4.364h3.506l-.234 1.636h4.364l-.234-1.636h3.506l2.182 4.364zm-3-6.955c.301 0 .545.908.545 2.029s-.244 2.029-.545 2.029S15 14.195 15 13.074s.244-2.029.545-2.029m-6.886.17c.301 0 .545.908.545 2.029s-.244 2.029-.545 2.029-.545-.908-.545-2.029.244-2.029.545-2.029"/></svg>�����������������mkdocs-material-9.6.4/material/templates/.icons/simple/apachecouchdb.svg����������������������������0000664�0000000�0000000�00000001433�14753064456�0026375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 14.625c0 .995-.524 1.482-1.5 1.5H6c-.976-.018-1.5-.505-1.5-1.5s.524-1.482 1.5-1.5h12c.976.018 1.5.505 1.5 1.5m-1.5 2.25H6c-.976.018-1.5.505-1.5 1.5s.524 1.482 1.5 1.5h12c.976-.018 1.5-.505 1.5-1.5s-.524-1.482-1.5-1.5m3.75-8.248zc-.976.017-1.5.504-1.5 1.499v8.25c0 .995.524 1.482 1.5 1.5v-.002c1.464-.052 2.25-1.514 2.25-4.498v-3.75c0-1.99-.786-2.964-2.25-2.998m-19.5-.001C.786 8.662 0 9.637 0 11.626v3.75c0 2.984.786 4.446 2.25 4.498v.001c.976-.017 1.5-.504 1.5-1.499v-8.25c0-.995-.524-1.482-1.5-1.5m19.5-.75c0-2.486-1.31-3.705-3.75-3.748v-.002H6v.002c-2.44.043-3.75 1.262-3.75 3.748v.001c1.464.026 2.25.757 2.25 2.249s.786 2.223 2.25 2.249v.001h10.5v-.001c1.464-.026 2.25-.757 2.25-2.249s.786-2.223 2.25-2.249z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apachedolphinscheduler.svg�������������������0000664�0000000�0000000�00000004303�14753064456�0030321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.909 1.878c-1.146 0-2.073.982-2.073 2.127 0 1.2.927 2.127 2.073 2.127h8.4c1.145 0 2.071-.982 2.071-2.127 0-1.2-.926-2.127-2.072-2.127zm-4.855.872v.928C1.418 3.787 0 5.205 0 6.951c0 1.8 1.363 3.218 3.109 3.218h.545c.327 0 .545-.219.545-.546s-.218-.545-.545-.545h-.545c-1.146 0-2.018-.928-2.018-2.128 0-1.145.872-2.072 1.963-2.127v1.145l1.528-1.582ZM7.91 7.442c-1.146 0-2.073.98-2.073 2.126s.927 2.127 2.073 2.127h8.4c1.145 0 2.071-.982 2.071-2.127s-.926-2.126-2.072-2.126zm12.49 1.799c-.327 0-.546.218-.546.545s.219.546.546.546h.545c1.146 0 2.018.927 2.018 2.127 0 1.145-.872 2.073-1.963 2.127v-1.145l-1.528 1.472 1.528 1.637v-.927c1.636-.055 3-1.418 3-3.218.054-1.8-1.31-3.164-3.055-3.164zm-12.49 3.818c-1.146 0-2.073.982-2.073 2.127 0 .436.11.872.382 1.2l.491-.163c.545-.218 1.145-.655 1.527-.983a.8.8 0 0 0 .218-.163c.054-.054.11-.109.218-.164.328-.272.764-.6 1.418-.71h.382c.545 0 1.036.165 1.363.492.11-.055.218-.108.273-.163.163-.055.273-.164.382-.218.11-.055.272-.11.436-.11a.9.9 0 0 1 .818.491c.11.218.219.6-.109 1.2-.054.11-.163.218-.218.382-.164.327-.381.654-.708 1.09h3.6c1.145 0 2.071-.981 2.071-2.127 0-1.2-.926-2.181-2.072-2.181zm-6.44.05a.2.2 0 0 0-.051.004c-.327.11-.327.982.218 1.582.437.49.818.873.873 1.255.163 1.527.491 2.345 1.2 3.218.491.6 1.145.927 1.8 1.145.054-.163.055-.327.11-.437.054-.109.054-.218.054-.218l.218.055c-.11.546-.382 1.636-.491 1.854-.11.327-.274.71.436.491 1.145-.382 2.072-1.473 2.454-2.727h.164a2.45 2.45 0 0 1-.381.982c.327-.109.654-.218.872-.327.71-.327 1.418-.819 1.745-1.146 1.527-1.418 2.072-2.508 2.509-3.217.436-.764-.163-.982-.436-.818-.327.109-.764.436-1.09.545-.274-.49-.82-.71-1.528-.6-.6.108-.982.49-1.364.763-.273.218-1.146.928-1.855 1.2-.763.328-1.526.273-2.017.164-.273-.055-1.418-.545-.6-2.236.382-.818.327-1.363.163-1.473-.218-.163-.872.382-1.308.709-.358-.256-1.388-.751-1.695-.767m8.513 2.787c.163 0 .272.163.272.327 0 .163-.109.272-.272.327-.164 0-.273-.164-.273-.327 0-.164.109-.327.273-.327m.054.108c-.055 0-.11.054-.11.109 0 .054.055.11.11.11.054 0 .109-.056.109-.11a.12.12 0 0 0-.11-.109m.273 3.437c-.273.218-.655.49-1.091.708.272.164.763.436.927.546.272.218.6.382.49-.327a2.7 2.7 0 0 0-.326-.927"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apachedruid.svg������������������������������0000664�0000000�0000000�00000003035�14753064456�0026075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.932 20.806c-.369 0-.738.007-1.109 0-.35-.007-.587-.206-.623-.5a.587.587 0 0 1 .53-.636q1.186-.093 2.372-.003a.55.55 0 0 1 .522.602c-.024.326-.253.526-.616.54zM1.792 8.345c-.392 0-.782.008-1.173.002-.327-.006-.577-.22-.614-.512s.146-.544.499-.615q.29-.048.583-.039a82 82 0 0 1 1.597 0q.245 0 .483.056c.288.073.445.318.411.617-.034.298-.214.477-.515.487-.424.014-.848.004-1.272.004zm7.588 8.417H4.292a3 3 0 0 1-.326-.007c-.294-.04-.48-.209-.508-.506s.11-.501.391-.606c.179-.065.365-.051.549-.051 3.347 0 6.695.005 10.042-.006 1.174-.004 2.187-.439 2.993-1.3.69-.738 1.053-1.63 1.16-2.635.085-.788-.027-1.513-.516-2.156-.544-.718-1.28-1.078-2.163-1.082-3.163-.013-6.328-.005-9.487-.01-.336 0-.673-.027-1.007-.058-.29-.027-.45-.201-.469-.492-.021-.317.141-.545.429-.6a1.6 1.6 0 0 1 .29-.015h10.177c1.71.004 3.187 1.038 3.726 2.654.383 1.147.246 2.304-.182 3.416-.824 2.135-2.762 3.448-5.055 3.454-1.652.005-3.304 0-4.956 0m2.906-13.568c1.533 0 3.066-.008 4.598 0 2.935.018 5.629 1.892 6.653 4.626.442 1.181.538 2.403.412 3.657-.185 1.842-.735 3.552-1.776 5.084-1.608 2.365-3.873 3.68-6.679 4.118-.95.148-1.905.13-2.86.13-.397 0-.61-.181-.633-.51-.025-.351.196-.621.587-.645.434-.026.87-.004 1.305-.016 2.641-.072 4.928-.982 6.74-2.935 1.269-1.37 1.912-3.039 2.13-4.878.151-1.275.135-2.544-.37-3.752-.773-1.85-2.159-2.983-4.068-3.509-.74-.204-1.5-.243-2.26-.247-2.837-.017-5.675-.007-8.511-.007-.12 0-.24.004-.359-.006a.57.57 0 0 1-.517-.536.56.56 0 0 1 .456-.557q.195-.027.392-.019h4.762Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apacheecharts.svg����������������������������0000664�0000000�0000000�00000001302�14753064456�0026412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m-.792 5.307c2.192-.025 4.366 1.134 5.43 3.304.909 1.852.878 3.61-.098 5.645-.477.995-.487 1.06-.241 1.578.214.452.727.779 1.221.779.454 0 1.15-.586 1.252-1.054.1-.454-.193-1.118-.607-1.377a10 10 0 0 1-.393-.255c-.129-.1.42-.38.741-.38.687 0 1.247.526 1.375 1.29.055.333.134.422.44.502.859.222 1.297 1.451.755 2.116-.22.27-.23.271-.305.042-.267-.801-.666-1.12-1.403-1.12-.319 0-.572.128-1.098.556-1.006.82-1.866 1.303-2.907 1.632-1.276.384-2.752.478-4.086.156-2.162-.431-4.232-2.11-5.252-4.257C4.758 11.782 5.135 9 7.033 7.077a5.92 5.92 0 0 1 4.175-1.77"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apacheflink.svg������������������������������0000664�0000000�0000000�00000024200�14753064456�0026066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.192 13.236c.028.035.064.069.098.101l.024.022.008.004a.7.7 0 0 0 .179.065 8 8 0 0 1-.138-1.758c.027-.797.178-1.47.462-2.059a8 8 0 0 1 .315-.519s-.176 1.202-.202 1.673a7 7 0 0 0 .16 1.868l.072-.05c-.043-.389-.042-.8.004-1.22a7 7 0 0 1 .419-1.721 9.3 9.3 0 0 1 .973-1.892c-1.985.209-2.418 2.1-2.418 2.1s.017-.347.024-.434c.057-.649.123-.961.205-1.287-.13.238-.212.488-.271.688-.139.47-.216.949-.273 1.356a9 9 0 0 0-.096 1.289c.002.38.024.828.176 1.263q.108.306.279.511m1.44-.737c.179-.113.385-.2.626-.268.425-.119.889-.239 1.461-.379l.19-.046c.478-.116.974-.237 1.439-.415.283-.108.552-.25.824-.436.38-.26.721-.579 1.012-.951.154-.196.232-.349.309-.605l.114-.378s.464.519-.004 1.436c.297-.107.582-.413.798-.788.181-.315.491-1.451.491-1.451s.569.875-.105 2.011a1.6 1.6 0 0 0 .356-.227c2.507-2.49.349-3.899-.103-4.236a4.1 4.1 0 0 0-.982-.525L11 5.218c-.03-.013-.047-.033-.055-.042l-.321-.35.563.155q.118.031.228.064c.614.182 1.082.4 1.472.686.445.325 2.142 1.751.348 3.837.556-.191 1.606-.772 1.962-1.272 1.713-2.405-.254-3.808-.17-3.808.019 0 .044.002.099.01a.4.4 0 0 0 .069.006c.036 0 .097-.006.109-.041.015-.042-.014-.122-.073-.168-.154-.117-.321-.202-.533-.169C12.926 4.4 12.3 3.85 12.3 3.85s2.482.129 2.562-.28a5 5 0 0 0-1.225-.912 6.7 6.7 0 0 0-2.228-.743c-1.207-.179-2.13.053-2.13.053.096-.121.574-.667 2.556-.511.802.063 1.564.316 2.27.669.182.091.29-.125.293-.223.004-.114.201.379.203.405.019-.049.096-.308.112-.308.047 0 .24.603.24.603.002-.024.257-.286.257-.286.076.343.066.514.047.562.002-.009.267-.172.267-.172s.152.638.412.891c.084.082.238.296.328.527.19-.133.421-.799.421-.799s.119.353.019.988c.007-.008.301-.219.301-.219s.042.449-.15 1.008a1 1 0 0 0-.022.095c.162-.091.404-.388.404-.388l-.042.188c-.048.214-.137.629-.327.953a2.6 2.6 0 0 0-.29.686q.073-.067.152-.12.151-.099.293-.151l.232-.085c.392-.142.788-.309 1.173-.479.812-.359.631-.86.631-.86-.209.408-.966.816-.966.816s.98-.878.562-1.905c-.115.27-.224.538-.327.792-.144.353-.314.726-.59 1.055-.141.168-.286.29-.446.373a1 1 0 0 1-.115.048l-.043.016s.172-.283.184-1.063c.004-.282.012-.571.012-.826v-.054q-.002-.197-.002-.395c.005-.558.015-.982.132-1.373-.012-.022-.005-.045-.018-.068-.027-.046-.047-.099-.071-.157-.036-.089-.066-.178-.101-.275-.127-.36-.308-.538-.365-.588-.038.115-.271.591-.271.591s.001-.365-.001-.393c-.067-.511-1.33-.972-1.356-.988l.067.401s-.382-.028-.545-.284c-.034-.052-.084-.09-.13-.125l.09.306.093.214s-.296-.024-.435-.269c-.033-.057-.075-.121-.112-.189a.75.75 0 0 0-.574-.396 8 8 0 0 0-.601-.062 1.3 1.3 0 0 1-.479-.11L12.573 0l.046.087c.015.029.025.058.04.095l.008.022.032.078.048.172s-.353-.014-.765-.299c-.089-.062-.201-.062-.325-.072L11.622.08a4 4 0 0 0-.332-.014 3.1 3.1 0 0 0-.974.149q.053-.003.106-.003l.067.001c.677.012.887.413.887.413s-.606 0-.785.023c-.209.027-.42.052-.616.106a5.1 5.1 0 0 0-1.622.796c-.124.088-.253.17-.389.256q-.346.222-.576.577a.4.4 0 0 0-.034.068c-.014.036-.008.039.015.051a.8.8 0 0 0 .168.061 2.35 2.35 0 0 1 1.786 2.005l.015.123c.035.307.072.623.056.944a3.4 3.4 0 0 1-.901 2.191c-.59.646-1.323.69-1.316.685.435-.406.722-.95.876-1.66a1.4 1.4 0 0 0-.084-.828l-.016.047c-.097.276-.22.594-.447.857-.132.15-.312.322-.521.521-.911.867-2.435 2.317-2.409 4.623 0 .135.027.3.056.427m13.967-5.836q-.169.147-.341.292c-.205.171-.351.28-.666.394-.276.099-.488-.124-.488-.124a1.3 1.3 0 0 0 .447-.389 8 8 0 0 0-1.154.71 2.4 2.4 0 0 0-.389.353c-.124.156-.205.318-.205.484v.002c0-.003.044-.005.053-.007a6 6 0 0 0 1.226-.49 16 16 0 0 0 1.757-1.074.3.3 0 0 1 .095-.048l.371-.106-.228.314-.027.034c-.745.741-1.517 1.272-2.36 1.622a5 5 0 0 1-.492.174 9 9 0 0 0 1.513-.525c.537-.244.913-.483 1.22-.772.475-.45.814-.981 1.009-1.576a1 1 0 0 0 .024-.1l-.111.033c-.127.037-.258.074-.373.13a2.4 2.4 0 0 0-.427.286c-.158.127-.321.269-.454.383M1.578 14.987c.128.205.268.407.403.602l.021.031c-.351-1.236.223-1.982.223-1.982l.142.391c.036.101.091.199.167.302q.221-.414.534-.784a1.4 1.4 0 0 1-.472-.415c-.2-.264-.332-.581-.415-.996a5.5 5.5 0 0 1-.069-1.562q.024-.26.059-.525a8.4 8.4 0 0 0-1.626 2.716.1.1 0 0 0 .003.021 9.4 9.4 0 0 0 1.03 2.201M18.221 3.353a5.05 5.05 0 0 1 .366-1.933l.018-.041a.9.9 0 0 0-.246.252c-.168.242-.291.53-.397.932-.182.687-.29 1.427-.337 2.308.192-.205.507-.657.572-1.215.011-.094.024-.199.024-.303m3.368 19.012c-.396-.065-1.234-.36-1.468-.945-.288.707.306 1.221.75 1.451.077.04.1.05.181.082.084.037-.165.494.045.704s.409.148.487.148c0 0 .361.335.567.111.053-.058.098-.262.029-.385-.086-.152-.295-.124-.315-.124-.41.005-.373-.188-.311-.27.045-.059.132-.055.205-.055q.025 0 .053.004.142.016.268.016c.335 0 .726-.035.985-.179.186-.104.491-.456.475-.692-.017.006-.825.319-1.951.134m2.324-7.785c-.038-.097-.085-.196-.126-.283l-.06-.126q-.032-.07-.066-.139c-.055-.111-.112-.226-.151-.35-.034-.106-.043-.216-.052-.32a3.31 3.31 0 0 0-1.886-2.716 1.3 1.3 0 0 1-.215.417c-.09.12-.144.138-.262.138-.157 0-.18-.18-.133-.265a1.5 1.5 0 0 0 .196-.543c.033-.377-.177-.786-.435-1.068-.239-.261-.649-.564-.979-.663-.079.307.017.812.124 1.109.132.36.544 1.069.445 1.499 0 0-.029.275-.304.448-.153.096-.215.053-.215.053.294-.627.297-.891-.028-1.485-.245-.447-.358-.899-.27-1.398q.006-.03.014-.06a2 2 0 0 1-.088.199c-.25.439-.486.667-.628 1.121-.149.508.01 1.059.325 1.598a1.24 1.24 0 0 1-.553-.804 4.3 4.3 0 0 0-1.334 1.166c-.08.104-.175.191-.259.268a4.9 4.9 0 0 1-1.978 1.099c-.493.145-1.001.267-1.502.388l-.131.031c-.683.165-1.409.351-2.097.657-.792.352-1.42.757-1.918 1.239a4.4 4.4 0 0 0-1.326 2.593c-.114.781-.055 1.595.18 2.49.008.032-1.03-.941-.494-3.741a6 6 0 0 0-.236-.007l-.067.001c-1.933.058-2.737 1.123-2.737 1.123s.126-1.182 1.987-1.579c.14-.03 1.312-.293 1.352-.306q.232-.472.557-.889l-.166.026c-.319.05-.648.1-.975.143l-.252.03c-.577.074-1.174.149-1.74.316-.594.174-1.059.426-1.422.768-.389.366-.668.839-.852 1.442l-.023.086q-.018.075-.045.151c-.02.052-.024.11.018.22.348.923.945 1.723 1.774 2.376a7.6 7.6 0 0 0 2.146 1.18c.026.009.07.024.109.064l.348.337-.544-.13q-.095-.021-.191-.047c-1.114-.306-2.085-.821-2.885-1.532-.273-.099-1.668-.794-2.26-1.936l-.099-.19s.757.746 1.288.855a5.6 5.6 0 0 1-.564-1.22.3.3 0 0 0-.049-.087C1.273 17.196.624 16.054.196 14.834a5 5 0 0 1-.085-.262c-.043.355-.064.71-.064 1.057 0 .11.955 2.647.955 2.647s-.42-.467-.768-1.059c0 0-.061-.199-.069-.212q.225 1.347.863 2.521c1.167 2.147 2.956 3.554 5.47 4.212a7.7 7.7 0 0 0 1.955.255l7.855.007c.369 0 .652-.022.915-.07l.041-.007a1.5 1.5 0 0 1 .281-.034q.158 0 .345.044l.062.015c.116.026.224.052.331.052 1.32.01 1.137-.785 1.137-.785-.055-.207-.295-.351-.557-.413a1.2 1.2 0 0 0-.28-.033q-.27 0-.559.12l-.288.123-.172.075a1 1 0 0 1-.098.038.5.5 0 0 1-.17.036c-.199 0-.208-.195-.213-.312a.46.46 0 0 1 .169-.373q.14-.12.302-.228c.195-.132.396-.268.551-.446a1.5 1.5 0 0 0 .361-.699.83.83 0 0 0-.044-.469c-.014-.035-.027-.042-.04-.046a9 9 0 0 0-.368-.112c-.488-.137-.847-.342-1.127-.643a2.8 2.8 0 0 1-.439-.671 5.8 5.8 0 0 1-.416-1.096c-.159-.601-.536-1.083-1.15-1.472a3.54 3.54 0 0 0-1.557-.524c-.137-.015-.276-.021-.423-.028-.037-.002-.122-.013-.208-.024-.077-.01-.153-.021-.188-.022l-.21-.013s.054-.076.489-.242c.082-.031.167-.039.25-.054q.303-.053.59-.053c.458 0 .891.106 1.288.314.494.26.888.656 1.206 1.211.173.302.309.626.416.992q.03.104.058.216c.035.134.071.271.122.396.307.756.876 1.198 1.69 1.315q.325.046.626.046a3.5 3.5 0 0 0 1.077-.165c.455-.149.803-.382 1.062-.712a1.4 1.4 0 0 0 .255-.494l.035-.121.203.048q.064.017.13.03a.5.5 0 0 0 .094.009c.092 0 .186-.022.288-.044l.017-.004c.076-.017.15-.02.222-.023l.061-.003c.072 0 .132.048.159.093.031.053.081.083.175.104a.4.4 0 0 0 .075.007c.229 0 .47-.21.476-.416.003-.079-.018-.127-.07-.163q-.06-.04-.131-.084l-.228-.143.152-.116a.25.25 0 0 1 .147-.051c.045 0 .085.013.12.028 0 0-.191-1.01-1.527-.716 0 0-.217.089-.328.131l-.052.02a.3.3 0 0 1-.101.019.36.36 0 0 1-.166-.047c-.468-.235-.926-.131-1.002-.131a2.3 2.3 0 0 1-.538-.059.22.22 0 0 1-.116-.067l-.086-.097a2.6 2.6 0 0 1-1.183-.197c-.436-.186-.784-.47-.995-.903a1.5 1.5 0 0 1-.15-.685l.026.067q.126.372.374.678c.306.379.701.634 1.15.813q.363.144.764.21s.955.036 1.38-.317c.323-.18.614-.264.917-.264h.063c1.027-.001 1.118-.498 1.118-.498s.117.076.281.051a.666.666 0 0 0 .604-.63l-.34-.306-.072-.063-.134-.106.092-.105a.27.27 0 0 1 .207-.099q.07 0 .134.035c.061.034.115.077.164.117l.051.04.064.05a.56.56 0 0 0-.036-.265m-1.267-.273c-.038.106-.088.123-.199.099a.7.7 0 0 0-.181-.014c-.111.005-.221.024-.332.026-.277.005-.543-.045-.763-.225-.312-.256-.372-.559-.177-.943l.004.037a.75.75 0 0 0 .345.611c.18.121.385.17.595.196.17.021.338.05.487.142l.041.021.006-.007c-.029-.041-.039-.183-.024-.242a.56.56 0 0 0 .002-.297.62.62 0 0 1-.25.304.08.08 0 0 1-.053.02 2.5 2.5 0 0 1-.654-.233c-.186-.102-.283-.261-.234-.484a.2.2 0 0 0-.056-.189q-.033-.035-.067-.078c.055-.051.102-.1.155-.143q.075-.061.158-.109c.432-.245 1.016-.061 1.208.389.049.114.075.24.089.363.028.259-.013.511-.1.756m-20.67 2.926c-.02-.237-.033-.474-.046-.756a.1.1 0 0 0-.021-.064c-.63-.909-1.089-1.696-1.446-2.476a7 7 0 0 1-.169-.394 7.75 7.75 0 0 0 1.682 3.694zm18.991 4.103c.176.117.395.203.732.287.34.085.653.125.966.125.185 0 .334-.019.47-.059a.81.81 0 0 0 .59-.639 6 6 0 0 0 .128-.713 1.8 1.8 0 0 0-.372-1.323q-.052.047-.106.089a1 1 0 0 1-.198.121.66.66 0 0 1-.291.072.6.6 0 0 1-.281-.072.96.96 0 0 0-.461-.104q-.093 0-.208.013c-.027.003-.039.009-.054.04-.258.531-.683.908-1.298 1.154l-.017.007-.003.013a1.2 1.2 0 0 0-.001.454c.054.216.185.391.404.535M14.99 9.512c-.516.525-1.141.958-1.964 1.364-.52.256-1.1.441-1.826.582q-.622.12-1.243.237l-.086.015-1.056.2c-.929.178-1.92.389-2.872.71-.691.234-1.224.481-1.677.779-.444.291-.75.591-.965.943a3 3 0 0 0-.146.291l-.075.159a.4.4 0 0 1-.076.114c-.484.473-.69 1.064-.613 1.756.046.416.176.821.395 1.236.127-.846.574-1.492 1.328-1.92.41-.233.863-.403 1.383-.517.526-.117 1.06-.214 1.561-.304l.307-.054c.516-.091 1.051-.184 1.558-.345q.181-.058.348-.121c.147-.055.275-.12.391-.206q.211-.156.444-.291c-.653-.015-1.76-.017-2.104-.019-.77-.004-1.3.06-1.964.312-.694.264-2.676 1.271-2.676 1.271s.985-1.054 2.837-1.844a7.9 7.9 0 0 1 2.928-.53c.275 0 .561.011.872.033q.768.057 1.535.11l.014.001q.037 0 .075-.011a10.6 10.6 0 0 1 1.572-.325c.175-.025.353-.061.528-.097q-.052-.016-.103-.03a1 1 0 0 1-.118-.044l-.088-.035-.345-.233 1.296.028c.279 0 3.032-.443 4.21-3.723.078-.219.16-.437.223-.676a7.6 7.6 0 0 1-2.669 1.063 7 7 0 0 1-1.139.121m6.485 3.751a.27.27 0 1 0 .54 0 .27.27 0 0 0-.54 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apachefreemarker.svg�������������������������0000664�0000000�0000000�00000003262�14753064456�0027113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 12.06v-.311l1.16-.538v.281l-.867.392v.027l.868.402v.281L0 12.059zm3.18-.252h-.266l-.071.409h.303l-.054.271h-.293l-.07.394h-.273l.069-.394h-.362l-.07.394h-.275l.069-.394h-.254l.054-.271h.247l.071-.41h-.281l.054-.27h.274l.071-.42h.274l-.072.42h.363l.071-.42h.276l-.076.42h.276l-.054.27zm-.537 0h-.362l-.074.409h.362zm1.134-.65h1.097v.181h-.9v.62h.806v.179h-.806v.744h-.197v-1.725zm2.695 1.724-.363-.552-.11.005H5.54v.547h-.197v-1.725h.655q.324 0 .5.153.18.15.18.426a.6.6 0 0 1-.1.355.54.54 0 0 1-.289.202l.407.59h-.224zm-.474-.73q.237 0 .363-.103.128-.105.128-.308 0-.196-.128-.298-.126-.104-.363-.104H5.54v.814h.458zm1.305-.995h1.17v.182H7.5v.58h.87v.18H7.5v.6h1.006v.183H7.303zm1.782 0h1.171v.182h-.974v.58h.87v.18h-.87v.6h1.006v.183H9.085zm1.782 0h.24l.658 1.257.65-1.257h.242v1.725h-.185l-.003-1.437-.65 1.255h-.114l-.655-1.255v1.437h-.183zm3.774 1.725-.194-.44h-.94l-.192.44h-.21l.775-1.725h.204l.772 1.725zm-1.052-.623h.779l-.392-.887zm2.848.623-.363-.552-.11.005h-.459v.547h-.197v-1.725h.655q.323 0 .5.153.18.15.18.426a.6.6 0 0 1-.1.355.54.54 0 0 1-.289.202l.407.59h-.224zm-.474-.73q.237 0 .363-.103.128-.105.128-.308 0-.196-.128-.298-.126-.104-.363-.104h-.458v.814h.458zm2.712.73h-.239l-.635-.82-.336.367v.453h-.197v-1.725h.197v1.013l.927-1.013h.237l-.688.752zm.496-1.725h1.17v.182h-.973v.58h.87v.18h-.87v.6h1.005v.183h-1.202zm2.91 1.725-.362-.552-.11.005h-.459v.547h-.197v-1.725h.655q.323 0 .5.153.18.15.18.426 0 .213-.1.355c-.1.142-.164.163-.289.202l.407.59h-.224zm-.473-.73q.237 0 .363-.103.128-.105.128-.308 0-.196-.128-.298-.126-.104-.363-.104h-.458v.814h.458zM24 11.75v.31l-1.16.535v-.281l.867-.402v-.027l-.868-.392v-.28z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apachegroovy.svg�����������������������������0000664�0000000�0000000�00000010576�14753064456�0026323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.997 6.012S10.315 8.8 9.516 10.155c-.155.058-.172.041-.341.207-.41-.47-.897-.041-1.028.22-.057-.566-.151-.567-.279-.694.074-.496.316-1.305-.241-1.884-1.078-.727-2.326 1.05-3.021 1.982l-.375.622c-1.546-.032-2.763.008-4.231-.021 1.79.67 1.864.686 4.026 1.506 0 .066.161.372.34.552.147.15.308.234.389.284-.106.054-.32.138-.385.258-.292.546.139.672.418 1.107.315.568.382.944 1.126.625.254-.11.562-.148.758-.21-.693 1.094-.87 1.392-2.083 3.274l.012.004c4.85-1.893 4.974-1.942 7.373-2.89 3.448 1.338 3.646 1.448 7.432 2.891-.529-.826-.89-1.343-1.274-1.995.151-.013.483-.046.777-.233.213-.135.463-.288.688-.574.443-.565.551-1.277.39-2.166-.078-.423-.235-.834-.213-.85 2.061-.778 2.304-.862 4.226-1.587-2.31.034-2.422.01-4.591.016-.036-.414-.244-.627-.882-.606-.238.039-.389.12-.5.445-.357-.657-.85-.464-1.06-.14-.275-.282-.917-.377-1.24-.17-.238-.112-.514-.112-.757.177-.175-.146-.23-.188-.614-.342-.886-1.497-1.622-2.692-2.36-3.951zm.012.802c.35.535 1.552 2.61 1.849 3.074-.337.023-.668.202-.918.562-.217-.224-.47-.445-.917-.463-.544-.093-.834.148-1.2.568-.108-.365-.53-.45-.896-.28.327-.519 1.872-3.122 2.082-3.46zM7.45 9.128c-.05 1.434-1.068 2.712-1.798 2.245-.551-.449.149-1.584.59-1.985-.033.307.246.498.023.77-.446.543-.27.936-.078.996.513.162 1.004-1.227 1.004-2.201 0-.625-.366-.613-1.086.136-.983 1.022-1.513 2.012-1.16 2.69.197.38.485.651.959.594.925-.11 1.483-1.254 1.543-1.988.148-.003.109.01.148-.02 0 .129.177.755.317 1.166.183.702.964 2.11-1.369 2.658-.44.11-.614.148-1.05.32-.213-.443-.263-.585-.697-1.013.588-.205.593-.185.972-.317 1.467-.51 1.908-.947 1.857-1.57 0 0 .018-.32-.185-.588a2.6 2.6 0 0 1-.293.645c-.437.68-1.296 1.101-2.06.833-.417-.146-.596-.466-.596-1.015 0-.703 1.601-2.735 2.387-3.08.555-.165.579.293.571.724zm6.502 1.3c.26.006.543.133.735.34.594.64.529 1.417.163 1.905-.435.581-1.532.324-1.791-.488-.12-.378.095-1.312.475-1.624a.63.63 0 0 1 .418-.132zm-2.113.066a.5.5 0 0 1 .117.017c.503.03.61.313.701.56.231.626.173 1.212-.301 1.691-.711.719-1.54.401-1.536-.567.014-.69.443-1.715 1.02-1.7zm1.868.038c-.383.287-.432 1.023-.08 1.296.138.13.215.22.613.256.273.024.704-.253.725-.527.01-.125-.013-.333-.312-.67-.252-.283-.579-.349-.661-.3-.265.156.021.28.125.383.162.163.2.234.125.282a.45.45 0 0 1-.372.057c-.105-.049-.456-.246-.163-.777m3.759.003c.167.26.215.316.402.965.24.838.546 1.163.816 1.01.74-.418.148-1.476-.113-1.974.167-.002.134.007.286.005.12.471.086.387.407 1.813.385 1.706.442 2.16-.528 2.926-.446.352-1.103.37-1.667.34l-.636-.095c.438-.287.545-.557.542-1.116 1.278.535 1.959.132 2.23-.526.132-.317.086-.735-.04-1.471.008.6-.005.71-.084 1.007-.158.595-.547.76-.812.34-.102-.163-.345-.702-.42-1.282s-.132-1.395-.5-1.736c.04-.08.082-.17.117-.206m-1.247.01c.258.068.572.204.74.52.234.436.388.668.376 1.447-.014.832-.34 1.055-.557 1.086-.278.04-.762.034-1.049-1.598-.095-.541-.268-1.056-.45-1.224.09-.11.097-.096.165-.204.091.1.17.27.298.777.202.808.387.975.745 1.02.558.072.778-.78.318-1.391-.1-.134-.365-.307-.503-.236.008.236.113.162.114.318-.026.185-.053.219-.113.32-.142-.056-.21-.078-.334-.291-.157-.31-.055-.6.25-.544m-4.597.076c-.263.185-.594.8-.304 1.35.143.205.297.372.638.3.245-.051.671-.34.73-.749.052-.35-.456-1.028-.738-.87-.327.183-.128.314.074.511.185.18.052.289-.077.342-.258.106-.403.003-.467-.203-.065-.205-.01-.38.144-.68zm-2.867.064c.056.172.1.402.218.624.028.023.132 0 .269-.157.086-.1.185-.238.357-.463.104.095.113.166.142.219.073.13.225.12.273.106.168-.167.195-.275.306-.29.01.216.021.35-.257.677a.54.54 0 0 1-.501.172c-.12-.034-.199-.108-.389-.205-.258.04-.19.315-.143.546.12.611.5.855.832.675.116-.062.09-.062.312-.153-.038.388-.06.463.01.896-.541.301-.982.25-1.102-.506-.091-.632-.261-1.4-.415-1.556-.145-.147-.205-.195-.205-.195zm-7.114.082c.753.01 1.602.01 2.506.017-.13.318-.175.54-.193.854-.422-.163-1.877-.684-2.313-.871m20.723.01c-.997.359-1.715.637-2.677 1.004-.105-.45-.124-.588-.219-.994 1.601-.005 1.628-.002 2.896-.01m-6.978 2.04c.105.43.253.641.253.641.202.348.454.545.84.645.085.136.115.163.148.236.037.457.01.514-.344.774-.209.204-.218.497-.003.769.231.22.474.298 1.375.064.174.3.418.653.776 1.217-1.206-.455-2.868-1.103-6.43-2.49 0 0-4.169 1.62-6.404 2.491.935-1.474 1.012-1.599 1.677-2.63.225-.089.149-.053.349-.155.459-.245.827-.61 1.028-1.145.368.83.779.925 1.636.655.177-.082.38-.2.424-.518.46.413 1.432.49 2.142-.382.612.717 2.001.785 2.533-.171zm2.157.865s.04.129.064.169c-.101.003-.213 0-.213 0a1 1 0 0 0 .149-.17z"/></svg>����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apacheguacamole.svg��������������������������0000664�0000000�0000000�00000005527�14753064456�0026733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.324 23.984c-.7-.055-1.581-.198-2.236-.363a11.94 11.94 0 0 1-7.814-6.303c-.61-1.239-.967-2.383-1.127-3.61a9 9 0 0 0-.102-.639c-.058-.25-.058-1.891 0-2.142.024-.103.07-.39.102-.638.16-1.228.517-2.372 1.127-3.611A11.8 11.8 0 0 1 6.68 1.272C7.919.663 9.063.305 10.29.145c.248-.032.536-.078.639-.102.25-.057 1.892-.057 2.142 0 .103.024.391.07.638.102 1.228.16 2.372.518 3.611 1.127a11.8 11.8 0 0 1 5.406 5.406c.61 1.239.967 2.383 1.127 3.611.032.248.078.535.102.638.026.113.043.541.043 1.071 0 .531-.017.958-.043 1.071-.024.103-.07.391-.102.639-.16 1.227-.517 2.371-1.127 3.61a11.8 11.8 0 0 1-5.406 5.406c-1.239.61-2.383.967-3.611 1.127-.247.033-.526.075-.619.094-.234.049-1.334.073-1.766.039m1.551-4.36a10.3 10.3 0 0 0 1.868-.248c2.176-.486 3.95-1.695 5.122-3.492.398-.61.405-.712.027-.416-1.135.891-3.013 1.632-4.999 1.973-1.082.186-1.423.211-2.837.211-1.058 0-1.464-.015-1.865-.065-.998-.127-2.116-.366-2.944-.631-1.252-.4-2.535-1.056-3.199-1.637q-.316-.277-.314-.177c0 .048.269.554.426.801 1.435 2.269 3.908 3.516 7.295 3.679l.676.034c.042.003.377-.011.744-.032m.233-3.907c1.801-.132 3.472-.507 5.054-1.134 1.175-.466 2.374-1.167 2.867-1.675.167-.172.211-.316.345-1.119.05-.301.134-.672.187-.826.076-.219.105-.404.135-.871.058-.893.007-1.261-.237-1.694-.139-.247-.469-.607-.64-.7l-.129-.069-.221.161c-.317.229-.326.246-.243.41.133.261.2.572.199.923-.003.631-.222 1.091-.798 1.675-2.165 2.198-7.956 2.956-12.17 1.594-1.933-.625-3.219-1.592-3.559-2.676-.085-.27-.095-.358-.08-.676.02-.451.088-.613.511-1.239.166-.244.353-.576.418-.739s.142-.343.172-.402c.086-.166.006-.167-.293-.002-.631.35-1.294.878-1.644 1.31-.469.579-.591 1.01-.547 1.934.027.562.087.854.225 1.094.066.116.096.24.113.476.042.551.138 1.102.215 1.228.1.164.616.593 1.066.886 2.328 1.516 5.915 2.36 9.054 2.131m-.056-3.569c1.745-.108 3.299-.463 4.478-1.023.594-.283.934-.515 1.331-.909.414-.413.573-.703.6-1.102.019-.282-.072-.621-.172-.638-.045-.008-.901.459-1.53.835-.067.039-.13.063-.142.051a2 2 0 0 1-.072-.336c-.071-.44-.135-.573-.345-.718-.324-.225-.391-.298-.523-.572-.116-.241-.149-.28-.288-.334-.26-.102-.557-.299-.557-.368 0-.072.239-.753.39-1.112a3 3 0 0 0 .099-.249c0-.036-.833-.632-.956-.683-.16-.067-.723-.128-1.205-.13a3.7 3.7 0 0 1-1.258-.206c-.631-.208-.665-.211-1.217-.13-.435.063-.514.087-.698.206-.49.315-.879.428-1.478.43a4 4 0 0 0-.654.059c-.511.106-.66.182-1.031.528-.469.439-.777.645-1.337.897-.589.265-.655.311-.741.515-.199.469-.293.645-.522.976-.367.53-.453.736-.424 1.016.072.69.818 1.448 1.947 1.981 1.638.772 4.02 1.156 6.305 1.016m6.174-4.675q1.419-.868 1.672-1.377c.087-.177.076-.241-.075-.425-.373-.452-1.844-1.32-2.491-1.47-.299-.069-.359-.045-.539.217-.277.403-.946 1.948-.946 2.183 0 .032.084.103.187.159.164.09.204.137.315.37.107.226.157.286.319.387.12.074.235.187.304.3.185.297.165.291.445.136.139-.077.503-.292.809-.48"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apachehadoop.svg�����������������������������0000664�0000000�0000000�00000016037�14753064456�0026246�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.098 3.01c-1.133.277-1.466.474-1.842 1.787.478-.962.84-1.315 1.842-1.787m3.228.076c-.834-.053-1.715.177-2.756.615a4 4 0 0 0-1.199.76c-.31.287-.576.62-.866 1.006a1.3 1.3 0 0 0-.468.095 1.9 1.9 0 0 0-.539.356q-.212.186-.416.383v.002q-.184.18-.363.365c-.945.152-1.72.32-2.41.588a6.3 6.3 0 0 0-1.97 1.217 5.2 5.2 0 0 0-.687.736 5.4 5.4 0 0 0-.503.803c-.13.142-.26.288-.399.414a1.5 1.5 0 0 1-.441.285c-.093.035-.133.058-.137.056-.004-.001-.008-.033-.012-.047.235-.21.267-.55.289-.86.03.034.053.068.082.113q.045.071.1.142l.158.2.055-.249c.046-.208.081-.484.027-.724-.034-.153-.117-.315-.235-.393l.036-.09c.04-.1.08-.204.115-.303l.069-.193-.204.035c-.27.047-.852.366-1.261.791-.152.158-.284.33-.37.514a1 1 0 0 0-.093.59.9.9 0 0 0 .272.498q.044.178.087.316.048.154.112.29c.119.247.31.398.529.468q.272.089.566.02a4 4 0 0 0-.072.69 9 9 0 0 0 .07 1.394q.02.139.045.275l-.107.291-.166.455-.37.365-.343.34-.082.08c-.232.224-.279.27-.213.662.04.241.119.484.242.72.114.216.267.427.463.624.245.245.647.55 1.066.71.245.092.488.138.723.097l-.039.11a4 4 0 0 1-.123.3c-.285.624.008.95.463 1.158.227.104.497.173.748.238l.168.045c.298.08.812.228 1.281.258.513.033.974-.073 1.098-.533.049-.182.078-.322.09-.459a2.3 2.3 0 0 0-.01-.406c.144-.32.21-.423.316-.578l.053-.08c.115-.17.168-.29.188-.426.018-.131.004-.262-.02-.461l-.011-.084a7 7 0 0 0 1.338.05l-.118.061-.055.03c-.395.203-.413.587-.289.984.112.357.343.723.487.945.303.467.592.861.943 1.076.368.226.786.253 1.328-.04.276-.15.363-.302.48-.507q.057-.098.126-.204c.101-.05.382-.296.67-.534l.296-.242q.11.079.27.115c.14.034.305.05.504.065.149.01.635.01.949.01h.227c.324.001.585-.016.783-.128.21-.119.334-.331.361-.71a1.3 1.3 0 0 0-.008-.378 1 1 0 0 0-.136-.312l-.014-.502-.016-.521a2.4 2.4 0 0 0-.068-.536 3.6 3.6 0 0 0-.18-.505c-.053-.127-.096-.245-.138-.36a6 6 0 0 0-.229-.547l.018-.123.181.174.266.258c.203.196.39.373.607.502.226.133.479.21.807.195a1.93 1.93 0 0 0 1.016-.385c.293-.216.528-.509.627-.832l.084-.279.07-.225c.482.082.998.11 1.498.057a3.7 3.7 0 0 0 1.351-.389 3.4 3.4 0 0 0 1.35-1.33h.002v-.002c.355-.616.555-1.34.63-2.088.062-.599.028-1.415-.097-2.2-.11-.701-.295-1.38-.55-1.87a.7.7 0 0 0-.137-.178 1.4 1.4 0 0 0-.51-.31c-.206-.07-.422-.084-.594.006a.5.5 0 0 0-.123.09 3 3 0 0 0-.3.388c-.106.153-.21.307-.337.414-.149.128-.327.202-.502.272a3.5 3.5 0 0 0-.261-.508 5 5 0 0 0-.399-.54 2.2 2.2 0 0 0-.365-.349 5 5 0 0 0-.41-.275c-.407-.255-.754-.559-1.108-.87-.16-.14-.323-.282-.482-.413-.842-.695-1.628-1.031-2.469-1.084m-4.129.004c-.57.137-.68.245-.851.804.273-.41.43-.545.851-.804m3.952.465c.829-.001 1.587.303 2.431 1.013.412.347.774.684 1.192.983-.152.013-.283.04-.455.107.21-.04.451 0 .67.04q.09.059.189.116c.295.174.463.27.662.547.21.294.386.589.541.912q-.15-.055-.262-.09a.57.57 0 0 0-.533.034l-.012.006c-.163.079-.416.17-.586.197a.7.7 0 0 0 .405-.006.56.56 0 0 0-.018.539.3.3 0 0 1-.02-.12.23.23 0 0 1 .249-.208.233.233 0 0 1 .187.33q-.174.031-.353.1a4 4 0 0 0-.237.095 3.7 3.7 0 0 1 1.084-.02q.038.176.073.366l-.137.01-.012.002c-.174-.14-.367-.117-.633-.057-.806.184-.617.637-.988 1.318.385-.47.357-.962.984-1.11.147-.036.247-.078.346-.063-.178.09-.333.237-.394.41-.173.486-.065.895-.254 1.35.234-.407.249-.802.459-1.23.075-.153.354-.4.525-.403l.14-.002c.042.27.068.539.052.761a8.5 8.5 0 0 1-.198 1.24c.213-.272.31-.85.403-1.257.097-.424.07-.934-.014-1.389-.117-.625.527-.522.9-.816.275-.217.463-.564.715-.809.25-.243.644.114.742.352.426 1.03.62 2.65.508 3.69-.126 1.164-.69 2.437-1.719 3.01-1.31.732-2.854.285-4.156-.154-.278-.093-.47-.229-.715-.382.067.3.097.615.008.914-.14.474-.367 1.251.277 1.394.246.055.357.048.704-.13a1.3 1.3 0 0 1-.616.011.4.4 0 0 1-.314-.273c.06.044.16.066.33.107.478.115.932-.114 1.021-.445.052-.194.043-.295.153-.559q.15.046.306.084l-.177.578c-.154.501-.752.904-1.28.895-.488-.009-.797-.314-1.134-.613l-.678-.6a5.2 5.2 0 0 1-1.658-.834c.4.472.673.732 1.232.967-.081.83-.37 1.436-.615 2.23-.111.36-.991 1.8-1.234 1.94-.174.1-1.26 1.016-1.465 1.136-.153.203-.287.483-.516.604-.698.37-1.148-.339-1.523-.936-.171-.272-.645-1.054-.23-1.273.39-.208.61-.357 1.009-.62.059.108.159.212.225.32l-.043-.352a2.8 2.8 0 0 1-.008-.596q.023-.31.047-.62c-.06.21-.179.42-.239.63-.024.084-.045.152-.056.214a7 7 0 0 1-2.682.034 17 17 0 0 0-.185-.926c-.018.278-.007 1.047-.008 1.476-.001.333-.016.448-.188.731-.16.265-.228.325-.453.773.019.283.019.47-.057.739-.125.446-1.386.098-1.718.007-.41-.112-1.256-.278-1.043-.824.187-.48.307-.986.398-1.658-.75-1.08-1.448-2.56-1.582-3.873-.104-1.019-.04-1.646.18-2.27.35-.987.837-1.843 1.62-2.53 1.06-.929 2.049-1.303 3.598-1.539-.373.417-.741.858-1.143 1.33-.406.479-.648.963-.906 1.487-.357.722-.348.996.125 1.63.407.547.627.794.804 1.328-.146.303-.2.56-.25.973.5.545.87.918 1.354 1.033.475.113.872.093 1.297-.125.944-.482 1.816-1.107 2.88-1.132.493-1.211.444-2.222.208-3.393-.162-.8-.227-1.557-.278-2.373-.2.84-.236 1.577-.088 2.414.18 1.008.318 2.124-.18 3.01-.962.073-1.788.658-2.655 1.107-.35.18-.712.198-1.098.092-.358-.098-.6-.334-.986-.78-.006-.446.095-.653.3-1.058.33-.65.695-1.255 1.094-1.894-.49.59-.953 1.084-1.338 1.677-.147-.419-.358-.633-.707-1.105-.34-.461-.375-.662-.12-1.196.255-.536.472-1.008.907-1.478.753-.813 1.443-1.717 2.266-2.518.447-.434.628-.42 1.22-.51a21 21 0 0 0 1.606-.31 23 23 0 0 1-1.553.08h-.015c.506-.646.799-1.006 1.62-1.363.95-.412 1.738-.652 2.47-.652zm.556 2.79c-1.101.276-1.307.739-1.166 1.45.121-.535.335-1.05 1.166-1.45m-3.263.061q-.668.075-1.336.139c-.375.035-.436.03-.702.293-.403.399-.794 1.768-.92 2.316.198-.455.69-1.729 1.069-2.053.105-.09.18-.143.258-.183-.271.455-.252.566-.157 1.176.081-.62.295-.859.647-1.32a9 9 0 0 0 1.14-.368zm10.226.053c-.255.517-.65.95-1.185 1.215-.288.142-.47.093-.791.062.326.094.533.21.853.096.652-.233.967-.756 1.123-1.373m-2.28.834q.035.071.067.144l-.05.041a.6.6 0 0 0-.126-.181zm-3.26.4c-.36.166-.779.126-1.087.334-.271.184-.646.764-.922 1.01.2-.078.394-.212.57-.354.002.22.101.426.27.565a.31.31 0 0 1 .092-.492.312.312 0 0 1 .432.191c-.148.11-.284.238-.397.387a1.7 1.7 0 0 0-.24.44 4.2 4.2 0 0 1 2.002-1.294c-.2-.003-.437.034-.678.114a.73.73 0 0 0-.482-.614c.16-.085.316-.175.44-.287m-1.042 1.64a.7.7 0 0 1-.125-.083.35.35 0 0 0 .125.084zM1.32 8.34c-.953.672-1.19.978-1.062 2.338C.352 9.608.56 9.145 1.32 8.34m-.808.404c-.482.336-.545.475-.5 1.059.105-.482.203-.664.5-1.059m1.779.195c-.07.15-.118.264-.152.381-.147.508.066.962-.395 1.33.217.438.207.612.711.41.195-.078.355-.187.498-.316q-.104.27-.191.545l-.03.094c-.36.153-.834.25-1.015-.13a3.5 3.5 0 0 1-.203-.595c-.594-.615.294-1.427.777-1.719m.123.276c.123.071.156.2.17.375-.073-.074-.132-.122-.227-.112a1.5 1.5 0 0 1 .057-.263m14.87 3.267c-.131.022-.365.07-.495.092-.348.059-.387.142-.441.484l-.086.524a9 9 0 0 1 .228-.568c.084-.184.132-.202.31-.3.127-.068.357-.163.483-.232zm-14.47 2.4c.274.946.738 1.876 1.255 2.657v.014a1 1 0 0 1-.149.369c-.369.493-1.306-.23-1.578-.508-.297-.303-.496-.662-.543-.998-.034-.246-.001-.252.17-.426l.693-.701zm12.405.62c.056.183.101.364.183.558.138.326.205.526.215.875l.032 1.106c.117.206.136.249.115.484-.043.481-.203.513-.625.506-.192-.003-.957-.007-1.15-.023-.274-.024-.429-.05-.512-.112.43-.316 1.162-1.619 1.304-2.068.151-.474.315-.888.438-1.326"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apachehbase.svg������������������������������0000664�0000000�0000000�00000007567�14753064456�0026066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.429 20.977a.6.6 0 0 1-.033-.19c0-.153-.118-.355-.293-.5a1.7 1.7 0 0 1-.273-.31c-.139-.208-.29-.29-.845-.46-.609-.184-.796-.343-.85-.722l-.028-.19-.111.162c-.217.314-.36.364-.655.229-.187-.086-.323-.094-.478-.028-.1.042-.118.04-.182-.018-.07-.062-.076-.063-.174-.005-.077.046-.14.055-.257.037-.187-.028-.287.027-.412.225-.237.376-.406.204-.405-.412.001-.684.323-1.072 1.251-1.506.478-.223.694-.368.828-.553.102-.143.111-.148.156-.087.095.13.422.8.579 1.184.178.438.232.52.299.452.057-.057-.081-.46-.349-1.02-.664-1.39-1.646-2.384-2.871-2.907-.563-.24-.84-.292-1.57-.29-.554 0-.69.013-1.066.092-.548.117-1.161.313-1.943.622-.788.311-.788.311-1.582.027-.322-.115-.708-.24-.857-.279-.306-.078-.758-.091-1.012-.03-.292.07-.704.29-1.21.647-.607.428-.934.597-1.369.71-.377.098-.536.184-.63.337-.075.123-.082.222-.025.346.039.086.41.357.845.617.118.07.223.143.234.16.025.041-.564.335-.994.495-.764.286-1.586.467-2.825.622-.826.103-.966.132-1.583.325-.246.078-.602.173-.79.212-.835.173-1.591-.032-1.706-.463a.6.6 0 0 0-.083-.195c-.153-.175-.21-.596-.111-.825.028-.066.085-.322.127-.568.143-.846.288-1.304.6-1.895.549-1.036 1.64-2.35 2.961-3.567.873-.804 1.703-1.422 3.621-2.699 1.186-.788 1.197-.799 1.334-1.179.03-.084.177-.628.326-1.209.466-1.808.764-2.49 1.319-3.014.313-.295.811-.48 1.101-.406.165.041.174.123.06.582-.192.766-.256 1.25-.258 1.933-.002.674.04.935.2 1.25.22.434.367.518 1.228.694 3.042.623 5.072 1.56 6.514 3.007 1.336 1.34 2.424 3.438 3.133 6.035l.134.495.258.197c.659.505 1.027 1.013 1.224 1.685.104.357.088 1.113-.033 1.56-.128.476-.238.676-.371.676-.038 0-.079-.037-.098-.088zm.056-.999c.013-.05.015-.262.004-.473-.032-.67-.239-1.15-.713-1.65-.364-.385-1.024-.849-1.207-.849-.07 0-.074.013-.056.166.011.09.084.334.162.54s.151.447.162.536c.017.143.008.174-.07.252-.107.107-.208.112-.362.018-.064-.039-.123-.063-.133-.054-.009.01-.006.08.007.156.047.277.208.389.826.572.905.268 1.09.39 1.234.816.03.09.121.072.146-.03M1.927 18.705c.159-.028.476-.11.705-.184.493-.156.87-.234 1.913-.398 1.224-.191 1.716-.293 2.262-.467.346-.111.663-.253.661-.298 0-.014-.103-.087-.227-.163s-.357-.265-.517-.42c-.16-.157-.306-.285-.324-.285-.087 0-.305.122-.58.324-.79.58-1.066.694-2.324.962-.624.133-.845.209-1.137.388-.403.247-.49.288-.755.356a2.5 2.5 0 0 1-.52.069c-.359 0-.399.112-.06.171.199.036.507.017.903-.055m17.139-.07a.7.7 0 0 1 .194-.123l.148-.065.317.096c.397.12.917.138 1.058.036l.202-.147c.07-.051.142-.077.18-.065.035.01.064.015.064.008 0-.035-.486-1.147-.532-1.217l-.055-.083-.173.137c-.095.075-.418.284-.717.464-.769.462-1.01.697-.952.93.017.066.044.086.12.086.054 0 .12-.026.146-.057M4.579 16.654a.6.6 0 0 0 .185-.133c.144-.24-.432-.214-.587.026-.041.063-.04.08.008.129.077.077.215.069.394-.022zm1.084-.752c.37-.1.74-.221.854-.281.237-.125.438-.342.582-.627.057-.113.164-.262.237-.33s.133-.149.133-.18c0-.267-.92-.389-1.513-.2-.72.23-1.406.962-1.422 1.517-.01.34.176.357 1.129.1m14.12-1.05c0-.062-.229-.367-.39-.52-.316-.299-.637-.482-1.257-.717-.368-.14-.52-.226-.52-.294 0-.016.031-.06.07-.097.193-.194 1.118.044 1.77.455.258.162.552.391.797.62.188.176.219.194.219.129 0-.104-.17-.415-.378-.692-.519-.69-1.362-1.229-2.306-1.47q-1.144-.294-1.99-.034c-.522.16-1.128.537-1.736 1.08-.857.766-1.11.98-1.33 1.118-.131.084-.234.167-.229.186s.105.063.22.1l.21.067.51-.235c1.01-.464 1.936-.762 2.626-.846 1.052-.128 2.23.205 3.285.928.321.221.43.277.43.222m-9.322 2.91c-1.083-.134-2.106-.512-2.941-1.088-.19-.13-.243-.187-.252-.263-.022-.19.152-.303.623-.403.414-.087.688-.226 1.314-.666.847-.595 1.182-.73 1.734-.7.258.014.42.058 1.276.344 1.284.428 2.645.913 2.747.979.235.149-.17.7-.805 1.096-.48.299-1.111.533-1.76.653-.359.066-1.55.096-1.936.048m-8-5.341c-.014-.035-.016-.206-.005-.379.047-.762.462-1.623 1.026-2.133.216-.196.56-.4.675-.4.113 0 .183.118.268.45.044.175.114.363.154.418s.07.105.063.11l-.356.284c-.462.367-1.102.958-1.486 1.373-.263.283-.32.33-.34.277z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apachehive.svg�������������������������������0000664�0000000�0000000�00000013740�14753064456�0025725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.902.258c-.331.216-.65.525-.994.877-.569.589-.947 1.164-1.526 1.59-.116.1-.441.26-.85.284-.192.01-.318.042-.672-.003-.312-.169-.608-.059-.897.287-.317.456-.72 1.322-.886 1.868-.345 1.39.533 2.536 1.375 3.42.749.73 1.18 1.188 1.488 1.859.233.435.405 1.032.592 1.45.067.133.053.132.235.172.39.084.934.084 1.417.126.209.003.496-.005.768-.033.375-.071.815-.14 1.185-.268.36-.09.682-.212.971-.325-.037.126-.313.249-.416.41-.962 1.376-1.24 2.605-1.09 4.51l-.008-.007.011.05.006.077c.097.874.298 1.6.6 2.43a6.8 6.8 0 0 0 .717 1.38q.109.152.238.31h-.002l.005.004c.93 1.13 2.706 2.45 5.098 2.986.457.062.975.029 1.463-.1 1.292-.392 3.925-1.319 3.925-1.319s-2.337.194-3.408.088c-.248-.039-.52-.052-.693-.221-.03-.037-.135-.25-.067-.251.093-.003.36-.113.77-.15-.877-.094-.865-.093-.929-.253a10 10 0 0 0-.409-.884c.386.033 1.24.08 1.529-.218 0 0-.505.058-.951.006a3 3 0 0 1-.484-.137c-.2-.079-.365-.103-.404-.154-.07-.177-.116-.236-.2-.473-.114-.315-.123-.665-.145-.986.292.36.664.663 1.157.818.006-.013.638.275 1.098.127l.088-.029c-.045.009-.307.02-.409-.03-.934-.398-1.075-.745-1.226-.918l-.403-.604c.123-.245.192-.254.355-.256.491.054.705.096 1.004.024.203.416.257.835.718 1.137 1.533.456 1.866-.135 2.237-.656 1.104.81 2.9 1.059 4.147.014 1.586-1.835 2.088-4.728 1.947-4.893-.198-.336-.457-.683-.68-.635-.796.217-1.09.62-1.877.529.094-.006.252-.008.253-.017.06-.667-.005-.99-.034-1.046-.24-.527-.554-1.082-.772-1.498-.057-.086-.223-.742-.5-1-.12-.102-.41-.37-.41-.37l-.026.285s.114.017.158.193c.079.322.313.854.542 1.33h-.37l.424.11c.228.465.437.852.467.888.193.312.148.673.155.98l-.11.055c-.017-.361-.405-.335-.732-.338l-.268-.066c.082.076.334.07.232.233-.086.046-.125.242-.174.407l-.145.007c.256.1.494.188.776.306l.142.021-.142.357-.193-.078-.007-.135c-.34-.136-.995-.193-1.019-.165-.242.237-.418.524-.609.8.262-.204.46-.512.813-.597.028-.003.378.065.568.098-.122.025-.32.034-.35.077-.269.332-.466.736-.697 1.105.319-.329.416-.666.957-.985.045-.03.375-.023.536.058-.051.183-.167.401-.26.607-.133.313-.386.601-.58.902.608-.74.435-.469.841-.946.17-.404.34-.84.497-1.271l.03-.016c.054.033.47-.008.795.012.559-.12.535-.367 1.018-.404.325-.025.358.586.353.634a7.3 7.3 0 0 1-.58 2.174c-.652 1.258-1.383 2.388-2.42 2.545-1.265.221-1.922-.332-2.608-.684l-.262.224c-.891.887-1.949.808-2.382-.351l-.003-.006a3 3 0 0 0-.092-.175c-.127-.246-.25-.495-.402-.724-1.338-1.058-.72-2.022-.364-2.632-.744-.188-1.73-.588-1.866-1.113-.219-1.7-.108-2.24.11-3.113-.996.21-2.006.419-3.077.776l-.001-.008c-.286.064-1.246.416-1.518.563-.617.179-1.13.366-1.917.563a3 3 0 0 1-.753-.002c-.566-.077-1.531-.008-1.593-.065-.383-.535-.488-1.493-.838-2.006l-.004-.005-.005-.004c-.203-.275-.441-.498-.675-.73C1.49 8.213.773 7.407.572 6.554c-.05-.252-.18-.513-.112-1.258l.002-.004.001-.003c.202-.697.53-1.265 1.087-1.834.58.01 1.153.022 1.6.108.205.034.631.09 1.071.254 1.115.415 2.587 1.097 2.587 1.097-1.105-.607-2.34-1.395-3.121-1.554-.117-.017-.188-.07-.222-.162 1.173-.69 1.388-1.502 2.16-2.23.353-.154.49-.232.79-.265 2.774.439 4.52 1.543 5.9 2.282.56.304 1.07.535 1.557.812.426.14 1.713 1.113 2.09 1.637.383.807.662 1.68.917 2.522.183.857.343 1.204.343 1.204s-.155-.716-.13-.845c.162.06.542.18.7.16 0 0-.705-.364-.797-.686-.296-1.033-.594-2.641-.674-2.725-.226-.284-1.168-1.005-1.746-1.339-.218-.126-.336-.204-.345-.26.184-.186.412-.433.617-.59.195-.15.374-.32.647-.42 1.2-.541 1.886.207 2.05.056 0 0-.259-.296-.144-.247.117.063.5.138.542.177.437.342 1.581 1.593 2.27 2.913.166.323.233.536.156.925-.077.39-.136.604-.22.864-.076.174-.505 1.365-.503 1.525-.087.653.28 1.471.28 1.471.003-.222-.014-.34.006-.499l.025-.284s-.016-.075-.013-.105c.019-.196.067-.361.081-.474.138-.853.377-1.467.65-2.216.08-.189.185-.294.18-.438.005-.255-.224-.598-.389-.933a10 10 0 0 0-.627-1.112c-.596-.857-1.103-1.527-2.033-1.947-.26-.114-1.284-.226-1.638-.16-.429.09-.797.178-1.092.367-.462.296-.826.755-1.252 1.025-.944-.472-1.4-.825-1.484-.874-.561-.3-1.234-.649-1.958-.98-.348-.321-2.504-1.096-4.479-1.25zm9.705 19.318q.007 0 .007-.002zm1.957-16.262c.05.26.091.517.287.844.42.463.571.79.63.935.205.526.369 1.052.519 1.578-.05-.548-.237-1.136-.313-1.66-.043-.24-.954-1.68-1.123-1.697m-7.078 2.51c1.051.267 2.609.274 3.368.743.011.041-.02.068-.066.09-.187-.026-.372-.077-.57-.03-.29.093-.548.269-.822.406.754-.154.965.027 1.538.075.62.236.985 1.375 1.394 1.696-.378-.827-.617-2.06-1.355-2.714-.917-.294-2.267-.226-3.487-.267zm6.987 4.916a3 3 0 0 0-.668.066c-.16.215-.17.433-.24.635.476-.525.665-.557 1.427-.666a4 4 0 0 0-.52-.035zm-7.787.365c.496 1.86 1.516 3.733 2.53 5.44.39.496.497.718 1.087 1.018q-.073.156-.162.376c-1.132-.559-2.067-1.232-3.008-1.91-1.512-1.104-1.89-2.418-2.155-4.136a.4.4 0 0 1 .12-.108 4.6 4.6 0 0 1 1.588-.68m8.185 1.135c-.466-.002-.851.16-1.351.482 0 0 .554-.08.544-.03-.037.175.048.575.073.602l.006-.005q0 .01-.006.005l-.306.25c.654-.329 1.341-.263 2.039-.313 0 0-.588-.162-.552-.167.131-.019-.035-.613-.08-.626a4 4 0 0 1 .334-.094 2.8 2.8 0 0 0-.701-.104m-.447.563c.094.001.189.028.22.09a.5.5 0 0 1 .018.265.54.54 0 0 0-.395.12c-.071.07-.123-.347-.068-.412.034-.04.13-.064.225-.063m3.017.298c.084-.001.256.009.287.12.02.062-.042.27-.072.292-.046.023-.356.003-.369-.061-.026-.076.037-.306.108-.348zm2.897.384-.553.27c-.9.284-.954.03-1.29-.066.222.253.487.442.958.33.645-.196.667-.36.885-.534m-16.499.699c.5 1.36 2.887 3.894 6.09 4.278l-.008.018c-.11.266-.202.724-.196 1.104l-.006.01c-4.155-.885-4.67-1.994-5.951-2.987-.093-.768-.105-1.602.071-2.423m9.442 1.904q-.032 0-.033.003c-.296.21-.34.412-.334.586.491-.483.473-.485 1.19-.48a7 7 0 0 0-.823-.109m.296.363c-.105.567-.487.97-.783 1.368-.059.093-.101.22.189.624.078.108.36.126.55.116-.193-.146-.488-.301-.536-.436.341.233.657.3.943.262.065-.007.146-.077.209-.183.127-.274.227-.34.328-.413l.232.29.262-.223c-.581-.455-1.07-.923-1.394-1.405m-9.281 2.42c1.46.878 3.814 1.839 5.812 1.791.2.347.439.711.633 1.001-2.544.387-4.308-.391-5.387-.92l-.117-.118c-.345-.391-.676-1.134-.941-1.755zm6.884 3.456c.1.207.262.379.273.402.856 1.116-1.079.859-1.478.791-.71-.113-1.405-.391-2.065-.767 1.074-.021 2.208.06 3.27-.426"/></svg>��������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apachejmeter.svg�����������������������������0000664�0000000�0000000�00000013065�14753064456�0026260�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.35 7.79s-.247-.4-.537-.228c-.14.084-.374.318-.653.658l.257.484a6 6 0 0 1 .517-.653c-.079.09-.246.298-.484.662q.501-.035.996-.123c.099-.549-.096-.8-.096-.8m-.386.228.022-.024zM.91 14.02a45 45 0 0 0-.774 2.33.2.2 0 0 1-.136.132c.23-.76.458-1.476.687-2.124-.143-.033-.346.007-.594.11.17-.13.339-.242.5-.252-.051-.011-.183-.057-.36-.22.169.063.316.094.422.072-.022-.282-.174-.57-.374-.86-.001-.002.28.161.383.33l.002-.023q.025-.33.093-.654v-.002q.05-.261.127-.522l.066-.223q.043-.13.093-.27.165-.452.375-.884l.036-.072q.192-.386.408-.76.115-.199.231-.39.01-.011.017-.026L2.11 9.71l.008-.013q.355-.57.754-1.108a8 8 0 0 1 .229-.296l.058-.072.256.482a11 11 0 0 0-.268.404q-.259.415-.487.846l-.217.414-.222-.439.22.44-.007.015q-.067.135-.133.27l-.077.16-.206.444a43 43 0 0 0-.57 1.344l-.18.457-.04.103q-.068.18-.134.357v.004l-.033.088-.141.381zm3.235-4.623a5 5 0 0 1-.334.562c-.106.149-.216.25-.457.363l.022-.004q.002-.002.006-.002c.125-.023.28-.074.37-.127a.2.2 0 0 0 .036-.024 1 1 0 0 1-.02.089q-.01.038-.026.085l-.012.033-.036.092a3 3 0 0 1-.102.226q-.013.028-.028.057l-.024.039a1 1 0 0 1-.084.116l-.04.044a1 1 0 0 1-.113.101 1.2 1.2 0 0 1-.27.151l.017-.002.064-.011q.195-.047.361-.16c-.138.275-.326.497-.628.612l.052-.007.05-.011a1 1 0 0 0 .254-.087 7 7 0 0 1-.18.492q-.106.26-.225.47a2.6 2.6 0 0 1-.35.487c-.276.298-.705.54-1.027.58l.016.003c.366.076.745-.047.996-.324a3 3 0 0 1-.106.187c-.148.24-.318.386-.654.537.23.013.35-.041.448-.165a1 1 0 0 1-.052.1c-.215.356-.634.478-1.117.456a.54.54 0 0 1 .174.37c-.074-.134-.152-.251-.251-.297l.116-.334.02-.054v-.006l.132-.37.026-.07.003-.01.17-.454.007-.022.168-.435q.093-.238.184-.46.184-.452.382-.897.077-.174.152-.336l.05-.108.097-.205q.043-.093.088-.183l.027-.058q.003-.003.002-.011l.006-.001q.11-.225.213-.423.226-.435.474-.857l.013-.023q.133-.222.246-.396.5-.035.995-.12-.015.078-.038.165a3 3 0 0 1-.075.225 4 4 0 0 1-.187.413zm2.351.674v4.596c0 .28-.041.527-.125.732a1.34 1.34 0 0 1-.35.512 1.4 1.4 0 0 1-.531.3q-.306.095-.674.095a2.7 2.7 0 0 1-.659-.074.06.06 0 0 1-.046-.06v-.842a.063.063 0 0 1 .076-.062q.117.027.25.045c.162.024.376.03.54-.01a.48.48 0 0 0 .332-.29.8.8 0 0 0 .052-.313v-4.63c0-.035.027-.063.062-.063h1.01c.036 0 .063.028.063.063zm8.588 1.44a1.35 1.35 0 0 0-.518-.334 1.9 1.9 0 0 0-.675-.114q-.383 0-.702.125c-.208.082-.395.21-.545.377a1.75 1.75 0 0 0-.35.619 2.7 2.7 0 0 0-.123.859c0 .32.044.606.135.848q.139.361.386.603c.164.157.364.276.59.355a2.3 2.3 0 0 0 .742.118q.213 0 .377-.015a2.3 2.3 0 0 0 .61-.13q.143-.05.273-.12a.06.06 0 0 0 .033-.055v-.77a.063.063 0 0 0-.09-.055 2.5 2.5 0 0 1-.827.265q-.153.015-.307.014a.9.9 0 0 1-.332-.055.7.7 0 0 1-.243-.162.8.8 0 0 1-.155-.263 1.2 1.2 0 0 1-.058-.295h2.157a.063.063 0 0 0 .063-.062v-.483a2.1 2.1 0 0 0-.114-.725 1.5 1.5 0 0 0-.327-.544zm-1.758 1.029q.033-.325.176-.478a.52.52 0 0 1 .395-.167.55.55 0 0 1 .246.052q.106.051.176.144a.7.7 0 0 1 .105.22q.03.107.038.229zm10.673-1.387v.934a.062.062 0 0 1-.077.06.7.7 0 0 0-.254-.027l-.08-.004q-.181 0-.337.047a.64.64 0 0 0-.253.145.7.7 0 0 0-.163.264q-.059.166-.059.411v1.856a.063.063 0 0 1-.063.063h-.994a.063.063 0 0 1-.063-.063v-3.645c0-.035.028-.063.063-.063h.753c.028 0 .053.02.06.046l.124.462q.06-.1.133-.191a.93.93 0 0 1 .487-.338 1.1 1.1 0 0 1 .434-.044q.05-.002.096.006a1 1 0 0 1 .084.011.3.3 0 0 1 .066.011.06.06 0 0 1 .044.059zm-5.956 2.794a.06.06 0 0 1 .027.05v.741a.06.06 0 0 1-.033.055 1.5 1.5 0 0 1-.364.125c-.304.068-.62.066-.924-.008a.9.9 0 0 1-.381-.207 1.04 1.04 0 0 1-.256-.397 1.8 1.8 0 0 1-.088-.608V12h-.414a.063.063 0 0 1-.062-.062v-.42a.06.06 0 0 1 .03-.053l.529-.323.28-.75a.06.06 0 0 1 .058-.04h.636c.035 0 .062.028.062.063v.714h.825c.034 0 .063.028.063.062v.747a.063.063 0 0 1-.063.063h-.825v1.695q0 .187.085.268a.32.32 0 0 0 .231.084q.14 0 .263-.03.133-.034.264-.08a.06.06 0 0 1 .057.007zm-6.105-3.876v4.77a.063.063 0 0 1-.062.061h-.943a.063.063 0 0 1-.063-.063v-2.45l.014-.473.01-.242.008-.187-1.018 3.37a.06.06 0 0 1-.06.044h-.93a.06.06 0 0 1-.06-.044l-.929-3.32a25 25 0 0 1 .033.88q.005.111.005.204v2.218a.063.063 0 0 1-.063.063h-.903a.063.063 0 0 1-.063-.063V10.07c0-.034.027-.063.062-.063h1.376c.03 0 .053.02.061.047l.981 3.473 1.046-3.474a.06.06 0 0 1 .06-.044h1.376c.034 0 .062.027.062.061zm9.135 1.44a1.35 1.35 0 0 0-.517-.334 1.9 1.9 0 0 0-.676-.114c-.253 0-.49.041-.701.125-.208.082-.395.21-.545.377a1.75 1.75 0 0 0-.35.619c-.087.278-.13.568-.124.859 0 .32.046.606.135.848q.14.361.387.603c.164.157.364.276.59.355a2.3 2.3 0 0 0 .742.118q.213 0 .376-.015a2.3 2.3 0 0 0 .884-.25.06.06 0 0 0 .033-.055v-.77a.063.063 0 0 0-.09-.055 2.5 2.5 0 0 1-.828.265q-.152.015-.306.014a.9.9 0 0 1-.332-.055.7.7 0 0 1-.242-.162.8.8 0 0 1-.157-.263 1.2 1.2 0 0 1-.057-.295h2.157a.063.063 0 0 0 .063-.062v-.483a2.1 2.1 0 0 0-.114-.725 1.5 1.5 0 0 0-.328-.544zm-.765.58a.7.7 0 0 1 .106.22q.03.107.038.229h-1.137q.034-.325.177-.478a.52.52 0 0 1 .395-.167.55.55 0 0 1 .246.052.5.5 0 0 1 .175.144M6.26 7.63h-.137L5.41 9.336h.179l.218-.534h.769l.22.534h.18l-.714-1.708H6.26zm-.419 1.04.352-.844.341.844zm1.483.035h.555c.292 0 .489-.262.489-.54 0-.265-.211-.536-.503-.536h-.708v1.708h.166zm0-.926h.532c.187 0 .346.172.346.386 0 .207-.13.392-.332.392h-.546zm1.129 1.558.218-.534h.767l.22.534h.184l-.714-1.708H8.99l-.715 1.708zm.606-1.51.342.843H8.71l.352-.844H9.06zm.778.643c0-.41.297-.85.81-.85a.67.67 0 0 1 .631.372l-.135.081a.54.54 0 0 0-.504-.303c-.408 0-.632.365-.632.709 0 .376.276.718.639.718a.58.58 0 0 0 .526-.318l.14.073c-.111.256-.414.397-.676.397-.468 0-.799-.447-.799-.88zm1.875.867h-.165V7.629h.165v.76h1.011v-.76h.169v1.708h-.169v-.799h-1.01zm2.71 0h-1.145V7.629h1.124v.15h-.959v.616h.836v.142h-.837v.65h.982v.15z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apachekafka.svg������������������������������0000664�0000000�0000000�00000005045�14753064456�0026046�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.71 2.136a1.43 1.43 0 0 0-2.047 0h-.007a1.48 1.48 0 0 0-.421 1.042c0 .41.161.777.422 1.039l.007.007c.257.264.616.426 1.019.426.404 0 .766-.162 1.027-.426l.003-.007c.261-.262.421-.629.421-1.039 0-.408-.159-.777-.421-1.042zM8.683 22.295c.404 0 .766-.167 1.027-.429l.003-.008c.261-.261.421-.631.421-1.036 0-.41-.159-.778-.421-1.044H9.71a1.42 1.42 0 0 0-1.027-.432 1.4 1.4 0 0 0-1.02.432h-.007c-.26.266-.422.634-.422 1.044 0 .406.161.775.422 1.036l.007.008c.258.262.617.429 1.02.429m7.89-4.462c.359-.096.683-.33.882-.684l.027-.052a1.47 1.47 0 0 0 .114-1.067 1.45 1.45 0 0 0-.675-.896l-.021-.014a1.43 1.43 0 0 0-1.078-.132c-.36.091-.684.335-.881.686-.2.349-.241.75-.146 1.119.099.363.33.691.675.896h.002c.346.203.737.239 1.101.144m-6.405-7.342a2.08 2.08 0 0 0-1.485-.627c-.58 0-1.103.242-1.482.627-.378.385-.612.916-.612 1.507s.233 1.124.612 1.514a2.08 2.08 0 0 0 2.967 0c.379-.39.612-.923.612-1.514s-.233-1.122-.612-1.507m-.835-2.51c.843.141 1.6.552 2.178 1.144h.004c.092.093.182.196.265.299l1.446-.851a3.18 3.18 0 0 1-.047-1.808 3.15 3.15 0 0 1 1.456-1.926l.025-.016a3.06 3.06 0 0 1 2.345-.306c.77.21 1.465.721 1.898 1.482v.002c.431.757.518 1.626.313 2.408a3.15 3.15 0 0 1-1.456 1.928l-.198.118h-.02a3.1 3.1 0 0 1-2.154.201 3.13 3.13 0 0 1-1.514-.944l-1.444.848a4.16 4.16 0 0 1 0 2.879l1.444.846c.413-.47.939-.789 1.514-.944a3.04 3.04 0 0 1 2.371.319l.048.023v.002a3.17 3.17 0 0 1 1.408 1.906 3.22 3.22 0 0 1-.313 2.405l-.026.053-.003-.005a3.15 3.15 0 0 1-1.867 1.436 3.1 3.1 0 0 1-2.371-.318v-.006a3.16 3.16 0 0 1-1.456-1.927 3.18 3.18 0 0 1 .047-1.805l-1.446-.848a4 4 0 0 1-.265.294l-.004.005a3.94 3.94 0 0 1-2.178 1.138v1.699a3.1 3.1 0 0 1 1.56.862l.002.004c.565.572.914 1.368.914 2.243 0 .873-.35 1.664-.914 2.239l-.002.009a3.1 3.1 0 0 1-2.21.931 3.1 3.1 0 0 1-2.206-.93h-.002v-.009a3.19 3.19 0 0 1-.916-2.239c0-.875.35-1.672.916-2.243v-.004h.002a3.1 3.1 0 0 1 1.558-.862v-1.699a3.93 3.93 0 0 1-2.176-1.138l-.006-.005a4.1 4.1 0 0 1-1.173-2.874c0-1.122.452-2.136 1.173-2.872h.006a3.95 3.95 0 0 1 2.176-1.144V6.289a3.14 3.14 0 0 1-1.558-.864h-.002v-.004a3.2 3.2 0 0 1-.916-2.243c0-.871.35-1.669.916-2.243l.002-.002A3.08 3.08 0 0 1 8.683 0c.861 0 1.641.355 2.21.932v.002h.002c.565.574.914 1.372.914 2.243 0 .876-.35 1.667-.914 2.243l-.002.005a3.14 3.14 0 0 1-1.56.864zm8.121-1.129-.012-.019a1.45 1.45 0 0 0-.87-.668 1.43 1.43 0 0 0-1.103.146h.002c-.347.2-.58.529-.677.896-.095.365-.054.768.146 1.119l.007.009c.2.347.519.579.874.673.357.103.755.059 1.098-.144l.019-.009a1.47 1.47 0 0 0 .657-.885 1.5 1.5 0 0 0-.141-1.118"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apachekylin.svg������������������������������0000664�0000000�0000000�00000015431�14753064456�0026117�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.033 16.459-.59 1.29h.142l.155-.344h.72l.154.345h.144l-.59-1.291zm-.243.835.31-.694.31.694zm1.154-.515v1.328h.131v-.54a.42.42 0 0 0 .369.192c.277 0 .483-.2.483-.494a.47.47 0 0 0-.483-.493.42.42 0 0 0-.374.2v-.192h-.126zm.49.107c.205 0 .362.153.362.378 0 .227-.157.379-.361.379-.207 0-.362-.152-.362-.379 0-.224.155-.378.362-.378zm1.487.864v-.602c0-.25-.142-.376-.392-.376a.62.62 0 0 0-.395.13l.059.099a.5.5 0 0 1 .323-.115c.18 0 .274.09.274.257v.059h-.308c-.278 0-.374.125-.374.275 0 .167.135.282.354.282.16 0 .275-.061.334-.16v.15h.125zm-.13-.292c-.052.128-.161.198-.309.198-.154 0-.245-.07-.245-.183 0-.1.06-.173.25-.173h.303zm.525-.193c0 .228.155.378.367.378a.33.33 0 0 0 .282-.142l.098.066c-.077.125-.216.192-.38.192-.29 0-.5-.205-.5-.494s.21-.493.5-.493c.164 0 .303.065.38.192l-.098.066a.33.33 0 0 0-.282-.144c-.212 0-.367.152-.367.379m1.12-.884v.568c.072-.112.199-.177.363-.177.236 0 .398.137.398.415v.563h-.13v-.55c0-.205-.108-.31-.292-.31-.208 0-.34.13-.34.35v.51h-.13v-1.37h.13zm1.968.884c0-.292-.198-.493-.47-.493-.274 0-.475.205-.475.493 0 .287.207.494.51.494a.48.48 0 0 0 .374-.159l-.074-.085a.38.38 0 0 1-.297.128c-.212 0-.367-.135-.382-.338h.812zm-.814-.058a.337.337 0 0 1 .343-.322c.19 0 .329.132.345.322zm1.728-.748v.78l.758-.78h.157l-.559.584.598.707h-.162l-.528-.607-.264.267v.34h-.136v-1.291zm1.292 1.383.042-.094-.433-.969h.136l.365.825.365-.825h.13l-.486 1.087c-.08.19-.184.25-.322.25a.33.33 0 0 1-.236-.088l.06-.098a.24.24 0 0 0 .178.074c.086 0 .145-.04.2-.162zm.92-1.461v1.369h-.131v-1.37h.13zm.365.398h.13v.97h-.13zm.066-.212a.095.095 0 0 1-.095-.094c0-.05.042-.092.095-.092a.093.093 0 1 1 0 .186m.556.212v.18c.07-.119.2-.187.369-.187.236 0 .398.137.398.415v.562h-.131v-.55c0-.204-.107-.309-.291-.309-.209 0-.34.13-.34.35v.51h-.13v-.97zM2.086 15.41C.264 15.4.124 15.395.063 15.356c-.084-.055-.084-.137-.002-.302q.333-.67 1.676-.943c.575-.116.917-.252 1.23-.487.374-.281.418-.538.12-.69a2.5 2.5 0 0 1-.868-.786c-.294-.447-.492-1.162-.492-1.778 0-.321.168-.938.36-1.323.282-.565.68-.963 1.236-1.235a3.04 3.04 0 0 1 1.25-.298q.126 0 .178-.044c.05-.04.052-.051.026-.13-.04-.119-.206-.266-.373-.328-.156-.058-.332-.085-.807-.122-.18-.013-.38-.04-.444-.06a.8.8 0 0 1-.411-.28c-.057-.085-.067-.126-.067-.259 0-.14.011-.179.098-.338.092-.168.13-.267.2-.522.023-.086.037-.102.09-.102.033 0 .1.031.148.07.292.23 1.183.53 1.571.53.246 0 .361-.035.453-.14.064-.073.071-.095.058-.181a1.04 1.04 0 0 0-.268-.502c-.14-.14-.426-.285-.694-.355a2 2 0 0 0-.504-.054c-.345-.004-.373.004-.563.163-.158.132-.21.12-.386-.089-.441-.522-.646-1.065-.518-1.37.041-.1.095-.121.467-.184.163-.027.498-.091.744-.143.965-.202 1.498-.268 2.164-.267.56.001.585-.006.736-.231.199-.297.271-.585.272-1.088 0-.406.018-.455.162-.455.113 0 .276.08.357.176.16.189.221.439.249 1.012.017.351.035.509.08.686.094.364.146.445.543.837.493.488.64.722.731 1.16.073.352.032.768-.107 1.085-.171.393-.579.845-1.033 1.147-.351.234-.757.427-2.302 1.097-.297.128-.61.27-.696.312-.559.282-1.082.816-1.283 1.31-.058.14-.07.21-.08.443-.016.43.076.72.34 1.07.181.242.53.508.791.606.323.121.776.127 1.154.016.37-.108.797-.361.747-.442-.026-.042-.08-.031-.245.048-.627.299-1.316.344-1.71.112a2 2 0 0 1-.55-.551c-.228-.386-.3-.932-.173-1.303a1.14 1.14 0 0 1 .313-.468c.24-.233.993-.618 2.46-1.258.868-.38 1.04-.464 1.342-.666a3.72 3.72 0 0 0 1.67-3.135c0-.148.01-.27.021-.27.028 0 .19.216.313.416.627 1.026.843 2.398.54 3.443-.284.978-.948 1.741-1.77 2.034a2.3 2.3 0 0 1-.88.14 2.6 2.6 0 0 1-.852-.13c-.467-.135-.814-.148-1.19-.044-.346.096-.52.235-.588.47a.68.68 0 0 0 .08.518c.086.16.165.215.323.228.234.019.547-.145.547-.287 0-.031-.07-.178-.156-.326s-.156-.295-.156-.328q0-.133.251-.133c.22 0 .36.076.528.284.158.196.301.3.47.34.206.05.235.158.13.476-.175.522-.62 1.133-1.429 1.96a9 9 0 0 0-.596.66c-.224.319-.44.787-.565 1.224-.087.306-.164.384-.41.412-.039.005-.952.003-2.028-.004M9.741 2.668a10.7 10.7 0 0 1 5.137-.638c2.634.336 4.891 1.67 6.295 3.72.499.728.699 1.143.7 1.451 0 .346-.242.533-.618.477a1 1 0 0 1-.508-.271 25 25 0 0 1-.672-.781c-1.308-1.565-1.733-2.01-2.404-2.516a8.6 8.6 0 0 0-1.856-1.044c-1.82-.713-3.944-.805-6.106-.266-.494.123-.48.067.032-.132M23.807 12.89c-.359.932-1.224 1.631-2.401 1.942-.939.247-1.7.244-2.46-.01a4.3 4.3 0 0 1-1.42-.84c-.22-.205-.294-.23-.294-.097 0 .067.034.124.18.306q.346.426.316.613c-.02.123-.104.19-.261.21-.185.022-2.544.004-2.593-.02-.104-.051.012-.31.203-.45.143-.104.275-.158.492-.199.184-.035.247-.075.247-.157 0-.02-.054-.146-.12-.278a2.6 2.6 0 0 1-.23-.723c-.024-.13-.177-.073-.319.117-.247.331-.419.856-.53 1.623-.056.377-.085.46-.18.502-.048.022-.56.028-2.072.026a105 105 0 0 1-2.07-.014c-.213-.04-.178-.254.08-.48.21-.184.703-.417 1.303-.616.406-.135.454-.173.452-.36-.002-.29-.235-.573-.873-1.06-.671-.511-.864-1.516-.43-2.235.261-.431.73-.782 1.2-.897.803-.196 1.43.033 1.722.628.11.225.182.477.16.563-.022.089-.093.071-.272-.066-.258-.198-.434-.27-.682-.28-.255-.01-.416.036-.552.16-.158.141-.198.244-.199.508 0 .208.007.242.077.392.377.796 1.599.95 2.453.308.278-.21.623-.788.724-1.216.043-.181.05-.267.04-.528-.009-.267-.02-.342-.082-.519-.155-.445-.343-.685-.672-.855-.503-.26-1.133-.33-1.989-.22-.728.092-1.493.059-1.95-.086-.2-.063-.27-.114-.27-.194 0-.067.023-.074.3-.094.428-.031.896-.147 1.651-.408.248-.086.556-.183.684-.215.783-.198 1.609-.252 2.218-.146.26.045.572.2.811.402.695.588 1.368 1.78 1.913 3.39.168.497.323.839.506 1.117q.613.939 1.65 1.155c.08.017.28.03.444.029a2.2 2.2 0 0 0 1.002-.235c.608-.289.977-.74 1.163-1.423.068-.25.075-.85.013-1.086-.144-.54-.492-.896-1.038-1.059-.239-.071-.773-.091-.942-.035a.88.88 0 0 0-.537.514c-.044.11-.054.186-.055.4-.002.237.005.278.062.4.174.371.505.547 1.031.548.26 0 .3.02.274.14q-.047.204-.437.265a1.67 1.67 0 0 1-.986-.13c-.308-.143-.595-.477-.72-.835a1.45 1.45 0 0 1-.021-.76 2.4 2.4 0 0 1 .368-.732c.399-.492 1.06-.746 1.775-.68 1.002.092 1.779.639 2.121 1.494.278.693.288 1.796.022 2.486m-12.888.57c-.265.18-1.02.268-1.913.22-.547-.028-.6-.019-.639.113-.041.145.034.318.234.535.27.295.291.447.077.562-.098.052-.107.052-1.539.058-1.2.004-1.453 0-1.517-.029-.139-.06-.129-.264.021-.434.133-.15.178-.163.652-.178.387-.012.431-.017.462-.06a.2.2 0 0 0 .033-.095c0-.081-.102-.304-.212-.466-.175-.258-.205-.345-.206-.608-.001-.257.024-.317.175-.42.253-.172.937-.1 1.626.173.67.265 1.328.371 2.309.371.509 0 .585.005.597.038.019.047-.055.15-.16.22m10.194 5.002c.047.04.038.178-.02.29-.123.242-.518.705-1.008 1.183-.842.821-1.599 1.354-2.673 1.884-1.593.786-3.18 1.16-4.87 1.148a19 19 0 0 1-.675-.012 10.4 10.4 0 0 1-2.395-.479c-2.186-.718-4.043-2.16-5.4-4.19-.375-.563-.517-.895-.538-1.256-.015-.254.011-.37.12-.531a.54.54 0 0 1 .242-.2c.156-.08.178-.084.396-.083.503.004.899.247 1.353.83.086.11.326.449.535.752.43.628.756 1.068 1.046 1.416.255.306.72.77.976.975.419.334 1.405.863 2.117 1.134 2.32.883 4.7.8 7.069-.247 1.22-.54 2.408-1.364 3.27-2.27.295-.31.4-.39.455-.344"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apachelucene.svg�����������������������������0000664�0000000�0000000�00000004055�14753064456�0026244�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.476 9.415a.75.75 0 0 0-.753.577q-.07.264.051.421.123.155.401.155a.8.8 0 0 0 .366-.083l.058-.23a1 1 0 0 1-.178.08.6.6 0 0 1-.17.025q-.152 0-.215-.097-.062-.1-.017-.272a.5.5 0 0 1 .158-.27.4.4 0 0 1 .268-.097q.085-.001.156.023a.5.5 0 0 1 .137.08l.059-.228a.6.6 0 0 0-.149-.063.7.7 0 0 0-.172-.021m-4.468.021-.702 1.11h.29l.122-.201h.448l.018.201h.287l-.121-1.11Zm1.19 0-.291 1.11h.287l.1-.385h.19a.6.6 0 0 0 .35-.094.45.45 0 0 0 .183-.27q.046-.174-.043-.267-.09-.094-.3-.094zm1.544 0-.701 1.11h.289l.123-.201h.448l.017.201h.288l-.122-1.11zm2.598 0-.29 1.11h.286l.123-.471h.423l-.122.471h.286l.291-1.11h-.287l-.112.422h-.422l.111-.422zm1.564 0-.29 1.11h.79l.057-.217h-.502l.066-.254h.457l.057-.217h-.46l.056-.207h.486l.057-.215Zm-5.473.207h.158q.083-.001.117.04.036.04.016.115a.2.2 0 0 1-.076.115.23.23 0 0 1-.14.04H8.35zm-1.32.053.037.442h-.305Zm2.735 0 .037.442h-.305Zm1.751 1.352c-.964 0-1.91.782-2.11 1.745-.202.964.415 1.746 1.38 1.746.828 0 1.643-.58 1.983-1.355h-.852c-.216.32-.585.544-.962.544-.516 0-.847-.418-.739-.935.108-.516.614-.936 1.13-.936.4 0 .69.252.749.606h.839c.014-.806-.566-1.415-1.418-1.415m2.219.053-.708 3.385h2.614l.146-.704H14.08l.125-.596h1.761l.149-.71h-1.762l.141-.673h1.789l.146-.702zm3.35 0-.71 3.385h.804l.48-2.285.87 2.285h1.021l.708-3.385h-.804l-.469 2.245-.78-2.245zm3.93 0-.708 3.385h2.515l.147-.704h-1.689l.123-.596h1.691l.149-.71h-1.691l.14-.673h1.691l.147-.702ZM0 11.142l.487.723H2.45l.016-.072.135-.65zm3.429 0-.135.65-.143.68-.416 1.988-.004.026h2.363l.004-.026.137-.65.008-.034H3.704l.551-2.634h-.224Zm2.71 0-.359 1.726q-.067.323-.066.582h.002l-.004.01q0 .096.01.184.037.326.199.533a.95.95 0 0 0 .438.309q.275.1.65.1.372-.001.689-.098.316-.098.565-.305a1.8 1.8 0 0 0 .426-.528q.177-.32.271-.77l.364-1.743h-.825l-.363 1.743q-.106.503-.333.747-.224.244-.639.244t-.541-.244-.022-.747l.366-1.743zm-5.254 1.42 1.099 1.636.34-1.622.002-.013zm22.362 1.576v.064h.112v.272h.088v-.272h.111v-.064zm.38 0v.336h.082v-.246l.076.182h.057l.076-.182v.246H24v-.336h-.11l-.078.18-.076-.18z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apachemaven.svg������������������������������0000664�0000000�0000000�00000011303�14753064456�0026071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.237.001c-.312-.013-.665.072-.828.457-.158.374-.283 1.188-.34 2.276l1.223.591c-.02-.737.007-1.43.076-2.066-.026.299-.056.96.006 2.039q.029.513.088 1.15.001.036.007.069a46 46 0 0 0 .309 2.412c.057.368.126.752.195 1.16l-.01.01c.014.01.015.018.014.023l.03.16q.044.244.093.494l.108.553.056.289a62 62 0 0 0 .457 2.068q.135.575.287 1.186.146.579.309 1.193.146.543.303 1.117c.003.018.012.036.015.055a146 146 0 0 0 .34 1.185l.049.174c.078.261.158.533.242.805a4 4 0 0 1-.293-.135l-.19-.654c-.02-.077-.042-.148-.062-.225l-.002-.004-.004-.002q-.128-.451-.257-.916-.033-.13-.069-.263l-.314-1.178c-.1-.381-.194-.765-.29-1.154q-.14-.584-.277-1.172-.14-.6-.265-1.203c-.085-.396-.161-.798-.24-1.193a50 50 0 0 1-.211-1.17c-.004-.013-.006-.03-.01-.041l.004-.002q-.086-.58-.174-1.15a61 61 0 0 1-.154-1.204 28 28 0 0 1-.172-2.41l-1.22-.59q-.007.11-.013.23-.018.442-.023.93a45 45 0 0 0 .006 1.157q.014.557.045 1.148.029.503.07 1.022l.002.039.006.004q.006.036.006.076c.033.368.064.739.107 1.115a35 35 0 0 0 .303 2.125q.017.098.035.195a23 23 0 0 0 .547 2.32q.105.356.21.68.096.274.194.545.233.633.512 1.232l.006.004a.3.3 0 0 0 .02.05q.336.727.755 1.395c.01.013.02.033.03.047-.455-.183-1.259-.098-1.253-.097.83.288 1.557.64 2.016 1.175-.183.2-.523.352-.953.477.594.064.924-.039 1.045-.092-.31.26-.483.732-.635 1.24.35-.57.696-.949 1.033-1.094.078.258.162.524.244.788A148 148 0 0 0 5.157 24a.56.56 0 0 0 .43-.312c.13-.282.83-1.775 1.908-3.875.413 1.303.88 2.679 1.386 4.109a.5.5 0 0 0 .076-.465 104 104 0 0 1-1.308-3.945q.232-.45.484-.932.188.062.389.155c.203.186.352.491.482.84a1.52 1.52 0 0 0-.334-1.098c1.335.258 2.547.09 3.287-.81a4 4 0 0 0 .192-.258c-.325.304-.682.404-1.313.273.996-.281 1.523-.617 2.035-1.22q.18-.216.371-.48c-.943.722-1.927.822-2.9.493l-.045-.018c.914.02 2.203-.474 3.092-1.189.41-.33.796-.73 1.17-1.21.28-.359.55-.76.82-1.216q.352-.59.7-1.293a2.8 2.8 0 0 1-.74.137l-.144.008c-.048.002-.093 0-.146.002.885-.198 1.5-.74 1.994-1.447-.24.117-.628.262-1.07.297q-.088.008-.182.006c-.013-.002-.028 0-.047-.002.306-.078.574-.178.81-.309a3 3 0 0 0 .358-.236q.067-.054.13-.106.149-.128.28-.287c.028-.034.056-.063.08-.098q.056-.075.104-.146a8 8 0 0 0 .51-.828c.015-.031.032-.057.046-.088.04-.084.08-.16.11-.227q.064-.149.092-.238a.5.5 0 0 1-.108.051c-.273.112-.727.187-1.086.201q-.006-.001-.013.004h-.067c.72-.214 1.067-.45 1.422-.818a14 14 0 0 0 1.154-1.428c.264-.37.505-.738.692-1.072a7 7 0 0 0 .298-.592q.098-.234.172-.45c-.466.01-.986.011-1.48 0 .495.01 1.015.007 1.484-.005.5-1.485.063-2.262.063-2.262s-.526-1.212-1.4-.851c-.426.175-1.172.73-2.083 1.56l.514 1.45a18 18 0 0 1 1.703-1.602c-.257.22-.807.726-1.615 1.644q-.384.436-.844.997-.027.028-.047.06a51 51 0 0 0-1.666 2.187c-.248.34-.498.704-.765 1.088h-.016c.002.02-.004.028-.01.032l-.101.152c-.104.155-.213.31-.318.47l-.352.534q-.092.134-.186.277c-.184.282-.367.573-.558.873a97 97 0 0 0-1.428 2.338 97 97 0 0 0-1.341 2.343c-.012.017-.02.04-.034.057a197 197 0 0 0-.668 1.223l-.097.181q-.257.475-.52.979c0 .004-.005.008-.006.013q-.039.07-.072.141c-.117.222-.218.424-.45.87a1.4 1.4 0 0 0-.233-.182l.345-.65q.072-.132.143-.27l.04-.077.546-1.001.13-.233v-.006l-.001-.006c.169-.31.345-.62.52-.94q.076-.129.153-.265.338-.592.684-1.197a92 92 0 0 1 2.135-3.504c.247-.386.503-.77.754-1.152.092-.138.182-.272.279-.41a73 73 0 0 1 .48-.701c.007-.012.019-.024.026-.037h.006q.39-.536.773-1.065.417-.559.83-1.09a31 31 0 0 1 1.777-2.075l-.515-1.446q-.091.085-.192.178a32 32 0 0 0-.758.729q-.441.441-.912.935a46 46 0 0 0-1.632 1.838l-.03.033.002.008q-.024.032-.054.064c-.266.323-.538.649-.801.985a39 39 0 0 0-1.445 1.95c-.043.06-.085.126-.127.186a27 27 0 0 0-1.403 2.303q-.197.37-.37.715c-.096.195-.187.395-.278.591q-.315.695-.566 1.399l.002.006a.4.4 0 0 0-.026.058q-.16.455-.29.914-.21.26-.483.46a4 4 0 0 0-.131-.153 5.15 5.15 0 0 0 .824-2.211 6.4 6.4 0 0 0-.016-1.488c-.046-.4-.126-.82-.238-1.274q-.145-.59-.363-1.248-.139.278-.379.545l-.086.094c-.029.032-.06.06-.092.094.434-.674.486-1.397.358-2.148a2.7 2.7 0 0 1-.49.85q-.051.057-.11.116-.013.012-.033.028c.144-.24.25-.467.318-.698a1 1 0 0 0 .04-.146 3 3 0 0 0 .038-.225l.018-.146a2 2 0 0 0-.002-.354q-.003-.059-.01-.113c-.01-.055-.016-.105-.027-.154a7 7 0 0 0-.193-.84c-.01-.028-.015-.056-.026-.084-.027-.079-.048-.149-.072-.209a2 2 0 0 0-.09-.209.5.5 0 0 1-.035.1c-.102.24-.34.57-.557.8q-.006.003-.007.01l-.04.043c.318-.58.39-.946.385-1.398a12 12 0 0 0-.16-1.615 11 11 0 0 0-.232-1.104 6 6 0 0 0-.18-.558 6 6 0 0 0-.172-.391l.002-.004C5.576.341 4.82.124 4.82.124s-.27-.11-.582-.123zm3.38 15.783.032.082v.002c-.06.033-.116.067-.178.097q-.017.007-.039.018a2 2 0 0 0 .186-.2zm-.603 1.626q.197.203.354.32l.07.227a2 2 0 0 0-.246.053l-.03-.098q-.035-.126-.076-.257l-.021-.073zm.26.875a2 2 0 0 1 .271.01l.07.229a.8.8 0 0 1 .247-.004l-.326.627z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apachenetbeanside.svg������������������������0000664�0000000�0000000�00000001334�14753064456�0027247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.858 6.121a.28.28 0 0 0-.121-.21C22.738 5.91 12.119.032 12.119.03a.25.25 0 0 0-.238 0c-.003 0-10.613 5.878-10.614 5.88a.28.28 0 0 0-.124.212V17.96c.014.056.017.125.07.16.019.08 10.618 5.8 10.67 5.851a.25.25 0 0 0 .234 0c.003-.001 10.614-5.795 10.615-5.798a.29.29 0 0 0 .125-.213zm-17.633 9.33-3.593 2.083V6.54l3.593 2.011zm13.55-6.9 3.593-2.01v10.993l-3.592-2.084zm-.74-.145L12 11.8 5.965 8.405 12 4.935zm-12.32 7.041v-6.62l6.04 3.397v6.545zm6.53 3.322v-6.544l6.04-3.398v6.62zM12 .525l10.11 5.598-3.578 2.003-6.41-3.686a.24.24 0 0 0-.244 0l-6.41 3.686L1.89 6.123zM5.473 15.873l6.282 3.455v4.014l-9.868-5.39zm6.772 7.469v-4.014l6.282-3.455 3.586 2.079z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apachenifi.svg�������������������������������0000664�0000000�0000000�00000002223�14753064456�0025711�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.648 0a.09.09 0 0 0-.084.053A30.7 30.7 0 0 1 8.592 4.73c-2.09 2.728-5.145 6.466-5.145 10.364a8.2 8.2 0 0 0 8.201 8.2v-5.003c0-.106.087-.193.194-.193h2.81v-2.813c0-.106.087-.191.194-.191h5.004c0-3.9-3.056-7.636-5.145-10.364A30.7 30.7 0 0 1 11.732.053.1.1 0 0 0 11.648 0m-1.632 3.867c.05 0 .08.034.037.112q-.164.297-.328.593c-.396.702-.819 1.389-1.23 2.08q-.293-.047-.585-.088c.495-.651 1-1.296 1.48-1.959.153-.209.302-.423.454-.634a.24.24 0 0 1 .172-.104M7.44 7.186q.332.053.666.119-.112.193-.223.383a29 29 0 0 0-1.625 3.261c-.874 2.123-1.383 4.444-.77 6.707a8.2 8.2 0 0 0 2.217 3.74c.083.083-.02.216-.119.155a7.6 7.6 0 0 1-.93-.686A7.67 7.67 0 0 1 4.1 16.248c-.329-2.156.387-4.246 1.418-6.115a27 27 0 0 1 1.92-2.947zm7.931 8.435a.193.193 0 0 0-.191.191V18.3h2.677v-2.68zm3.299 0V18.3h1.348a8 8 0 0 0 .515-2.678zm-6.303 3.004a.193.193 0 0 0-.191.193v2.485h2.678v-2.678Zm3.295.484v2.68h2.115a.56.56 0 0 0 .399-.162v-.004a.56.56 0 0 0 .16-.397V19.11zm3.674.182v1.98a8 8 0 0 0 1.217-1.98zm-6.969 2.824a.193.193 0 0 0-.191.192v1.672a8 8 0 0 0 2.678-.516v-1.348zm3.48.668V24a8 8 0 0 0 1.98-1.217z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apacheopenoffice.svg�������������������������0000664�0000000�0000000�00000001536�14753064456�0027107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.372 0 0 5.371 0 12c0 .843.088 1.667.254 2.462a12.6 12.6 0 0 1 3.309-.44c1.836 0 3.579.392 5.152 1.099a12.54 12.54 0 0 1 7.303-2.332c1.704 0 3.33.339 4.811.953l.023.01a.186.186 0 0 1-.083.353l-.267-.02a13 13 0 0 0-.895-.032c-4.208 0-7.988 1.546-10.281 4.681l-.11.151a.183.183 0 0 1-.28.008C6.76 16.847 3.894 16.037.677 15.981 2.32 20.65 6.768 24 11.998 24 18.628 24 24 18.627 24 12c0-6.628-5.373-12-12.001-12zm9.395 7.181c-.042-.004-.114-.016-.16-.022a7 7 0 0 0-.405-.051c-2.447-.23-4.725.449-6.21 2.171-.063.064-.118.067-.179.003-1.181-1.34-2.864-1.935-4.795-2.118a7.2 7.2 0 0 0-2.01.09l-.01.001-.02.002a.125.125 0 0 1-.075-.223l.035-.02a7.23 7.23 0 0 1 4.05-.795c1.054.1 2.035.42 2.9.91a7.28 7.28 0 0 1 6.797-.255q.068.036.14.073a.12.12 0 0 1 .067.11c0 .069-.044.134-.125.124"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apacheparquet.svg����������������������������0000664�0000000�0000000�00000003437�14753064456�0026455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.953 20.391c-.95-1.013-.978-1.057-.807-1.248.27-.304 11.811-10.868 11.977-10.964.143-.083 1.558.6 1.867.902.119.115-.8 1.098-5.817 6.218-3.277 3.345-6.021 6.095-6.097 6.112-.076.016-.582-.442-1.123-1.02M8.333 17.7c-.511-.515-.835-.92-.803-1.003.058-.152 6.693-5.515 6.817-5.51.153.005 1.714 1.191 1.714 1.302 0 .116-6.67 6.073-6.8 6.073-.038 0-.456-.388-.928-.862M5.91 15.227c-.4-.448-.652-.81-.598-.86.28-.26 3.164-2.26 3.26-2.26.154.002 1.547 1.196 1.547 1.327 0 .161-3.124 2.566-3.334 2.566-.1 0-.494-.348-.875-.773m-1.988-2.04c-.574-.58-.642-.69-.512-.81.187-.174 9.357-6.094 9.545-6.162.146-.053 1.417.716 1.417.858 0 .102-9.401 6.685-9.63 6.744-.091.023-.435-.241-.82-.63m6.117-.935c-.379-.314-.687-.626-.684-.692.002-.066.337-.354.743-.64.406-.285 2.227-1.587 4.046-2.894s3.383-2.376 3.474-2.376c.245 0 1.485.717 1.445.835-.057.173-8.012 6.336-8.179 6.337-.086 0-.467-.256-.845-.57m-7.963-.923c-.452-.478-.518-.593-.4-.701.103-.093 5.783-3.449 6.47-3.821.114-.062 1.318.807 1.28.922-.05.15-6.456 4.172-6.645 4.172-.09 0-.408-.257-.705-.572m13.735.038c-.416-.298-.772-.59-.792-.65-.028-.083 3.74-3.215 4.595-3.818.166-.118.297-.079 1.01.301.45.24.818.485.817.545-.002.152-4.487 4.098-4.7 4.135-.096.016-.515-.214-.93-.513M.547 9.707 0 9.156l.243-.158c.133-.086 2.841-1.563 6.018-3.282l5.775-3.126.553.27c.303.15.552.322.552.384 0 .084-11.875 7.018-12.02 7.018-.015 0-.274-.249-.574-.553zm8.88-2.79c-.269-.2-.487-.418-.487-.483s1.083-.755 2.406-1.534l2.405-1.417.617.33c.34.18.617.363.617.406 0 .122-4.715 3.07-4.904 3.067-.092-.001-.387-.167-.655-.368Zm4.816-.612c-.325-.2-.589-.418-.588-.484.002-.112 1.64-1.209 1.909-1.279.123-.032 1.226.55 1.315.694.027.044-.031.15-.128.237-.333.296-1.7 1.202-1.81 1.199-.06-.002-.374-.167-.698-.367"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apachepulsar.svg�����������������������������0000664�0000000�0000000�00000001161�14753064456�0026272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 8.925h-5.866c-1.586-3.041-3.262-5.402-5.544-5.402-2.97 0-4.367 2.593-5.717 5.115l-.118.22H0v1.5h3.934c1.39 0 1.673.468 1.673.468-1.09 1.691-2.4 3.363-4.584 3.363H0v1.574h1.03c4.234 0 6.083-3.434 7.567-6.193 1.361-2.541 2.31-4.08 3.993-4.08 1.747 0 3.584 3.801 5.201 7.157.237.488.477.988.72 1.483-6.2.197-9.155 1.649-11.559 2.833-1.759.866-3.147 1.94-5.433 1.94H0v1.574h1.507c2.754 0 4.47-.85 6.295-1.751 2.53-1.243 5.398-2.652 12.157-2.652h3.907V14.5H21.66a1.18 1.18 0 0 1-.972-.393 71 71 0 0 1-1.133-2.321l-.511-1.047s.366-.393 1.38-.393H24Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apacherocketmq.svg���������������������������0000664�0000000�0000000�00000003421�14753064456�0026612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.438 23.467c-.517-.638-1.106-1.89-1.217-2.587l-.082-.511h1.835c1.435 0 1.835.036 1.835.165 0 .352-.412 1.553-.709 2.066-.333.577-1.021 1.41-1.155 1.4-.043-.004-.272-.244-.507-.533m-4.532-4.193c-1.251-3.005-1.231-6.784.056-10.63.786-2.35 2.652-5.689 4.413-7.9L11.967 0l.422.493c.763.893 2.612 3.731 3.28 5.036 1.32 2.578 2.055 4.993 2.264 7.438.197 2.302-.176 4.837-.962 6.533l-.338.731-.727-.433-.727-.433H11.95c-2.466 0-3.287.039-3.476.166-.136.091-.453.29-.705.441l-.458.276zm9.338-1.79c.779-2.623.532-6.253-.635-9.344-.683-1.81-2.085-4.319-3.211-5.747-.357-.452-.387-.466-.609-.265-.441.398-1.854 2.622-2.544 4.002-1.927 3.856-2.484 7.995-1.521 11.308l.196.672h8.138zM3.311 19.835c.037-.155.108-.565.157-.909.079-.549.189-.729.885-1.443l.795-.815.002.507c.003.641.302 1.799.631 2.445l.254.498H4.64c-1.384-.001-1.396-.003-1.329-.283m14.944-.376c.271-.613.529-1.616.606-2.352.031-.299.066-.282.762.379s.738.735.908 1.631c.098.516.179.952.179.97 0 .017-.618.031-1.373.031h-1.373zm-6.477-4.504a2.173 2.173 0 0 1-2.17-2.17c0-1.196.973-2.17 2.17-2.17s2.17.973 2.17 2.17-.973 2.17-2.17 2.17m0-3.865c-.935 0-1.696.761-1.696 1.695s.761 1.696 1.696 1.696 1.696-.761 1.696-1.696-.761-1.695-1.696-1.695M9.455 9.457a.657.657 0 1 1 0 1.314.657.657 0 0 1 0-1.314m-.357 4.665a.8.8 0 1 1 0 1.6.8.8 0 0 1 0-1.6m5.212-5.18a1.069 1.069 0 1 1 0 2.138 1.069 1.069 0 0 1 0-2.138m0 5.75a1.418 1.418 0 1 1 0 2.836 1.418 1.418 0 0 1 0-2.836M9.447 10.68l.491-.491.729.729-.491.491zm4.066-.336.539.539-.729.729-.539-.539zm-3.572 3.362.491.491-.729.729-.491-.491zm2.721 1.064.61-.59.779.754-.61.59zm-1.717-2.167a.277.277 0 1 1 0 .554.277.277 0 0 1 0-.554m.794 0a.277.277 0 1 1 0 .554.277.277 0 0 1 0-.554m.794 0a.277.277 0 1 1 0 .554.277.277 0 0 1 0-.554"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apachesolr.svg�������������������������������0000664�0000000�0000000�00000001035�14753064456�0025743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.741 3.8 8.926 16.573l14.849-6.851A12 12 0 0 0 20.741 3.8M11.975 0c-1.637 0-3.197.328-4.619.921l-1.585 13.36L13.693.124A12 12 0 0 0 11.975 0m11.918 10.459-14.07 7.874 13.201-1.566a12 12 0 0 0 .869-6.308m-5.188 11.527a12.1 12.1 0 0 0 3.8-4.16l-12.374 2.457zM14.417.249 7.53 15.177 20.306 3.36A12 12 0 0 0 14.417.249M12.98 24a12 12 0 0 0 3.774-.945l-6.931-.822zM1.016 7.08a12 12 0 0 0-1.013 3.864l1.867 3.337zm5.298-5.665a12.1 12.1 0 0 0-4.236 3.784l1.743 8.773z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apachespark.svg������������������������������0000664�0000000�0000000�00000003221�14753064456�0026103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.812 0c-.425.013-.845.215-1.196.605a3.6 3.6 0 0 0-.493.722c-.355.667-.425 1.415-.556 2.143a552 552 0 0 0-.726 4.087c-.027.16-.096.227-.244.273C5.83 8.386 4.06 8.94 2.3 9.514a5 5 0 0 0-1.114.506c-1.042.665-1.196 1.753-.415 2.71.346.422.79.715 1.284.936 1.1.49 2.202.976 3.3 1.47.019.01.036.013.053.019h-.004l1.306.535q.001.033 0 .073c-.2 2.03-.39 4.063-.58 6.095-.04.419-.012.831.134 1.23.317.87 1.065 1.148 1.881.701.372-.204.666-.497.937-.818 1.372-1.623 2.746-3.244 4.113-4.872.111-.133.205-.15.363-.098q.523.174 1.045.347h.001q.03.017.073.03l.142.042c1.248.416 2.68.775 3.929 1.19.4.132.622.164 1.045.098.311-.048.592-.062.828-.236.602-.33.995-.957.988-1.682-.005-.427-.154-.813-.35-1.186-.82-1.556-1.637-3.113-2.461-4.666-.078-.148-.076-.243.037-.375 1.381-1.615 2.756-3.236 4.133-4.855.272-.32.513-.658.653-1.058.308-.878-.09-1.57-1-1.741a2.8 2.8 0 0 0-1.235.069c-1.974.521-3.947 1.041-5.918 1.57-.175.047-.26.015-.355-.144a353 353 0 0 0-2.421-4.018 4.6 4.6 0 0 0-.652-.849c-.371-.37-.802-.549-1.227-.536zm.172 3.703a.6.6 0 0 1 .189.211q1.307 2.168 2.609 4.338c.07.118.135.16.277.121 1.525-.41 3.052-.813 4.579-1.217q.55-.146 1.103-.289a.4.4 0 0 1-.1.2c-1.259 1.48-2.516 2.962-3.779 4.438-.11.13-.12.22-.04.37.937 1.803 1.768 3.309 2.498 4.76l-3.696-1.019q-.807-.269-1.615-.539c-.163-.055-.25-.03-.36.1-1.248 1.488-2.504 2.97-3.759 4.454a.4.4 0 0 1-.18.132q.051-.567.104-1.136.222-2.358.451-4.716c-.03-.318.117-.405-.322-.545-1.493-.593-3.346-1.321-4.816-1.905a.6.6 0 0 1 .24-.134q2.695-.856 5.394-1.705c.127-.04.199-.092.211-.233.013-.148.05-.294.076-.441q.362-2.045.726-4.088.104-.578.21-1.157"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apachestorm.svg������������������������������0000664�0000000�0000000�00000002502�14753064456�0026130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3.95 12.021 2.196.03c3.08.043 4.486-.147 5.866-.79.788-.367 1.333-.858 1.65-1.483.212-.417.243-.591.211-1.184-.096-1.826-1.412-2.807-3.77-2.807-1.775 0-3.558.456-6.276 1.604-.702.296-1.289.526-1.305.51-.064-.063 4.824-4.72 5.773-5.5.895-.734 1.831-1.282 2.722-1.591.694-.242.894-.266 2.235-.269 1.248-.003 1.592.031 2.253.221 3.16.91 5.022 3.453 4.129 5.639-.062.151-.007.172.462.172 1.502 0 3.023.904 3.585 2.131.805 1.76.035 3.89-1.73 4.785-.924.468-1.55.562-4.085.615l-2.356.049-1.27.947-1.271.947 3.43.049 3.43.049-.54.414-3.892 3.008a1411 1411 0 0 1-4.204 3.243l-.85.649H9.41c-.524 0-.92-.04-.902-.09s1.581-1.297 3.474-2.773c4.2-3.275 3.97-3.092 3.97-3.163 0-.032-1.528-.07-3.397-.084l-3.398-.026 1.017-.778c.56-.427 1.86-1.45 2.89-2.274l1.873-1.496 2.643-.037c2.42-.033 2.692-.055 3.218-.25 1.174-.435 1.778-1.195 1.78-2.24.003-.875-.374-1.452-1.23-1.886-.773-.393-1.46-.512-2.963-.512l-1.152-.001.392-.605c.463-.716.62-1.213.619-1.948-.002-.721-.281-1.319-.901-1.93-1.588-1.562-4.46-1.977-6.579-.95-.777.376-3.271 2.348-2.714 2.145.108-.039.793-.093 1.521-.12 2.099-.076 3.333.277 4.357 1.245 1.315 1.243 1.713 3.22.958 4.754-.787 1.597-2.703 2.581-5.658 2.906-.605.066-2.566.097-5.104.079L0 13.395l1.325-1.035c.728-.57 2.104-1.64 3.057-2.38l1.733-1.346h2.197z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apachesuperset.svg���������������������������0000664�0000000�0000000�00000001530�14753064456�0026636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.168 6.045C2.603 6.045 0 8.579 0 12.014c0 3.434 2.603 5.941 6.168 5.941 2.184 0 3.888-1.026 5.775-3.078 1.53 2.033 4.037 3.136 5.89 3.078 3.566 0 6.167-2.503 6.167-5.941s-2.601-5.97-6.168-5.97c-2.864 0-5.138 2.425-5.771 3.173-.76-.9-1.674-1.665-2.682-2.274-1.019-.588-2.084-.898-3.211-.898m2.875 1.303c1.156.595 1.952 1.42 2.639 2.304-.534.63-1.245 1.483-1.739 2.07-.56-.658-1.58-1.907-2.609-2.308ZM6.186 9.703c1.018.027 1.81.458 3.435 2.408-1.158 1.378-2.202 2.244-3.435 2.244-1.51 0-2.41-.99-2.41-2.31s.906-2.382 2.41-2.342m11.535 0c1.51 0 2.408 1.026 2.408 2.342 0 1.315-.862 2.301-2.402 2.31-.571-.037-1.529-.026-3.442-2.314l.074-.09.002.002c1.122-1.328 2.097-2.25 3.36-2.25m-3.762 2.738c.61.68 1.795 1.988 2.713 2.24l-1.684 2.016h-.002c-.753-.371-2.031-1.134-2.716-2.215z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apachetomcat.svg�����������������������������0000664�0000000�0000000�00000005575�14753064456�0026270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.66 3.494c-.377.637-.544 2.114-.502 3.162l-.005.004c.036.946.165 1.816.372 2.615-3.096.767-6.466 2.795-8.352 4.754-.882-1.19-1.232-2.168-1.336-2.908-.131-.936.092-1.794.646-2.482.867-1.077 2.098-1.153 3.365-.94-.025.2.001.391.081.51.335.494 2.135.668 3.21.189-.793-1.112-2.4-1.654-2.844-1.437a.76.76 0 0 0-.335.359c-.438-.078-.873-.137-1.19-.134-1.117.008-1.971.398-2.61 1.193-.628.78-.882 1.747-.734 2.8.14.996.633 2.055 1.46 3.154q-.206.221-.398.436C1.473 17.023 0 19.44 0 19.842v.207h2.658l-.046-.246c-.15-.793.15-1.785.763-2.526.386-.465 1.024-.996 2.027-1.241.891.87 2.027 1.794 3.291 2.685h1.976v-.208a.68.68 0 0 0-.327-.577c-.312-.204-.794-.232-1.237-.081q-.632-.707-.709-1.877c4.287.38 8.388 2.11 13.015 4.528h2.546l.033-.167c.048-.237-.082-.556-.346-.851-.456-.51-1.349-.752-2.095-.734-.514-.612-3.342-3.591-3.507-3.765a9.6 9.6 0 0 0 2.673-2.847h1.388v-.298H20.89a10 10 0 0 0 .223-.419h.989v-.299h-.845c.628-1.359.975-2.918.942-4.625l.003.002c-.002-.468-.147-2.445-.415-2.989-.726.276-2.047 1.17-2.346 2.084a14.6 14.6 0 0 0-4.463.056c-.237-.984-1.423-1.736-2.318-2.16m.164.577c.211 1.148.593 1.869 1.42 2.223.734-.21 1.58-.34 2.448-.388l.717 1.571.46-1.585c.876.029 1.736.142 2.485.349.762-.554 1.057-1.4 1.218-2.138.202.86.178 2.717.18 2.717a10 10 0 0 1-.158 1.988l-.824.35.726.11a9 9 0 0 1-.198.714l-.703.205.56.201q-.142.38-.314.738h-1.16v.299h1.008a9 9 0 0 1-.238.419h-.77v.298h.583a8.6 8.6 0 0 1-2.921 2.748c-1.334-.664-2.341-1.634-3.079-2.748h.446v-.298h-.636a9 9 0 0 1-.236-.419h.872v-.299h-1.026a10 10 0 0 1-.46-1.094l.522-.147-.659-.263q-.1-.322-.18-.646l1.015-.069-1.16-.615c-.282-1.563-.225-3.08.062-4.221m2.946 2.97c-.89 0-1.24.909-1.255.948l.252.094c.012-.033.302-.773 1.003-.773.154 0 .262.062.34.195.182.314.152.933 0 1.58h-1.227v.269h1.159a5.7 5.7 0 0 1-.496 1.225l-.064.112 1.537.967-.865.57.148.224.967-.637 1.043.681.143-.228-.967-.598 1.518-.986v-.001c-.318-.47-.42-.872-.286-1.329h.108l1.167-.001.002-.268h-1.175c.216-.51.52-.968 1.602-.968v-.27c-.999 0-1.596.397-1.883 1.238h-2.154c.15-.672.177-1.333-.046-1.715a.63.63 0 0 0-.57-.33zm.55 2.313h2.126c-.095.304-.057.763.178 1.157h-2.737c.166-.334.32-.74.433-1.157m-3.683.321q.234.771.562 1.451h-.91v.299h1.06q.113.213.233.419H12.29v.298h1.478c.91 1.416 2.14 2.499 3.534 3.318a10 10 0 0 0 .456-.28l.362.39-.61.938 1.04-.474.606.652-1.019.776 1.403-.363 1.905 2.05.16-.014c1.007-.086 1.58.46 1.73.63.112.124.179.237.215.326h-2.036c-4.67-2.437-8.771-4.155-13.127-4.53q.014-.91.324-2.058l-.4-.108q-.319 1.179-.338 2.134-.68-.045-1.371-.046-.585.002-1.072.1a15 15 0 0 1-1.09-1.21c.546-.57 1.19-1.123 1.893-1.643l.967.668-.316-1.128q.447-.3.914-.58l1.434.73-.673-1.162q.297-.16.598-.31l2.007 1.346-.66-1.952a15 15 0 0 1 2.034-.667zm3.492 1.105h2.22l-1.084.715zM4.153 14.675q.41.506.91 1.021a4.1 4.1 0 0 0-2.007 1.316c-.629.76-.962 1.762-.886 2.622H.495c.337-.728 1.677-2.833 3.658-4.959"/></svg>�����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/aparat.svg�����������������������������������0000664�0000000�0000000�00000002030�14753064456�0025066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.001 1.594c-9.27-.003-13.913 11.203-7.36 17.758a10.403 10.403 0 0 0 17.76-7.355c0-5.744-4.655-10.401-10.4-10.403M6.11 6.783c.501-2.598 3.893-3.294 5.376-1.103s-.422 5.082-3.02 4.582A2.97 2.97 0 0 1 6.11 6.783m4.322 8.988c-.504 2.597-3.896 3.288-5.377 1.096s.427-5.08 3.025-4.579a2.97 2.97 0 0 1 2.352 3.483m1.26-2.405c-1.152-.223-1.462-1.727-.491-2.387.97-.66 2.256.18 2.04 1.334a1.32 1.32 0 0 1-1.548 1.053m6.198 3.838c-.501 2.598-3.893 3.293-5.376 1.103s.421-5.082 3.02-4.583a2.97 2.97 0 0 1 2.356 3.48m-1.967-5.502c-2.598-.501-3.293-3.896-1.102-5.38s5.081.422 4.582 3.02a2.97 2.97 0 0 1-3.48 2.36M13.59 23.264l2.264.61a3.715 3.715 0 0 0 4.543-2.636l.64-2.402a11.38 11.38 0 0 1-7.448 4.428m7.643-19.665-2.363-.629a11.38 11.38 0 0 1 4.354 7.62l.65-2.459A3.715 3.715 0 0 0 21.231 3.6M.672 13.809l-.541 2.04a3.715 3.715 0 0 0 2.636 4.543l2.107.562a11.38 11.38 0 0 1-4.203-7.145M10.357.702 8.15.126a3.715 3.715 0 0 0-4.547 2.637l-.551 2.082A11.38 11.38 0 0 1 10.358.702"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apifox.svg�����������������������������������0000664�0000000�0000000�00000002634�14753064456�0025116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.975 10.065a10.5 10.5 0 0 0-.456-2.354 4 4 0 0 1-.364.743 9.42 9.42 0 0 0-3.849-6.264A9.4 9.4 0 0 0 16.982.979a7 7 0 0 0-.338-.112 7.04 7.04 0 0 1 1.425 3.471q.009.066.015.133v.01q.008.068.013.137v.024l.01.137a6 6 0 0 1 .01.235v.18a7.05 7.05 0 0 1-1.268 4.042 6.3 6.3 0 0 1 .075 2.195 6 6 0 0 0 1.164-.401 6 6 0 0 0 .8-.44q.08.272.133.556.112.588.111 1.187a6 6 0 0 1-.07.947 6.2 6.2 0 0 0 1.614-.39q.409-.159.79-.373a6.2 6.2 0 0 1 .1 1.118 6.3 6.3 0 0 1-.135 1.298 6.3 6.3 0 0 0 1.906-.38A10.5 10.5 0 0 0 24 10.88a9 9 0 0 0-.024-.816m-2.808 5.794a6 6 0 0 1-.39.012h-.129a6.3 6.3 0 0 0 .198-1.567 6 6 0 0 0-.04-.705 6.2 6.2 0 0 1-1.944.594 6 6 0 0 1-.573.05 6 6 0 0 0 .115-.928 7 7 0 0 0 .008-.312 6.3 6.3 0 0 0-.142-1.332 6.2 6.2 0 0 1-2.12.776l-.005-.007a6 6 0 0 0 .111-.886 6 6 0 0 0 .01-.34q0-.569-.102-1.128a7.06 7.06 0 0 1-5.117 2.188 7.04 7.04 0 0 1-3.247-.788 6.3 6.3 0 0 0 1.294-.685 6.3 6.3 0 0 1-3.573-5.68 6.3 6.3 0 0 1 .102-1.135 6 6 0 0 1 .302-1.088 6 6 0 0 1 .484-1.002A6.3 6.3 0 0 1 7.164.88 12.2 12.2 0 0 0 4.48 2.55 12.2 12.2 0 0 0 .328 9.181 12.2 12.2 0 0 0 0 12.001a12.15 12.15 0 0 0 1.49 5.851 6.3 6.3 0 0 1 .445-1.713 11.66 11.66 0 0 0 8.585 6.994 6.2 6.2 0 0 1-.804-1.384 11 11 0 0 0 3.126.534q.14.001.283.003a11 11 0 0 0 4.867-1.129 6 6 0 0 1-.724-.478 10.5 10.5 0 0 0 4.32-3.094 10.5 10.5 0 0 0 1.356-2.093 6.3 6.3 0 0 1-1.777.366z"/></svg>����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apmterminals.svg�����������������������������0000664�0000000�0000000�00000000223�14753064456�0026314�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.8 2.95 0 16.55v4.5L24 9.32V2.95zm.2 10.1-8.87 4.21v3.68l8.87-3.4Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apollographql.svg����������������������������0000664�0000000�0000000�00000001077�14753064456�0026475�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.372 0 0 5.373 0 12c0 6.628 5.372 12 12 12 6.627 0 12-5.372 12-12a12 12 0 0 0-.473-3.343.6.6 0 0 0-1.127.409h-.002c.265.943.402 1.928.402 2.934a10.73 10.73 0 0 1-3.163 7.637A10.73 10.73 0 0 1 12 22.8a10.73 10.73 0 0 1-7.637-3.163A10.73 10.73 0 0 1 1.2 12a10.73 10.73 0 0 1 3.163-7.637A10.73 10.73 0 0 1 12 1.2c2.576 0 5.013.896 6.958 2.54a1.466 1.466 0 1 0 .862-.84A11.95 11.95 0 0 0 12 0m-1.44 5.88-4.2 10.902h2.63l.687-1.848h3.969l-.719-2.042h-2.613l1.7-4.691 3.024 8.58h2.631L13.47 5.88Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apostrophe.svg�������������������������������0000664�0000000�0000000�00000002075�14753064456�0026013�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.674 0c-.795.001-1.794.095-3.167.313l-4.6.729c-3.138.497-4.224 1.003-5.274 1.798a6.5 6.5 0 0 0-2.24 3.082c-.43 1.245-.577 2.434-.08 5.571l.729 4.6c.497 3.138 1.003 4.22 1.798 5.273a6.5 6.5 0 0 0 3.082 2.24c1.245.431 2.434.578 5.571.081l4.6-.729c3.138-.497 4.22-1.003 5.273-1.799a6.48 6.48 0 0 0 2.24-3.081c.431-1.245.578-2.434.082-5.571l-.73-4.6c-.497-3.138-1.003-4.224-1.799-5.274a6.48 6.48 0 0 0-3.081-2.24C17.378.152 16.695 0 15.674 0m-5.319 4.566h.003a.52.52 0 0 1 .52.444l.77 4.865a.52.52 0 0 1-.435.6l-4.859.77a.52.52 0 0 1-.602-.436l-.77-4.866a.52.52 0 0 1 .435-.6l4.86-.77a1 1 0 0 1 .078-.007M9.92 5.692l-3.823.605.612 3.83 3.813-.605zm6.504 2.91a3.274 3.274 0 0 1 .497 6.513 3.26 3.26 0 0 1-3.713-2.726 3.274 3.274 0 0 1 3.216-3.787M16.37 9.66a2.226 2.226 0 1 0 .388 4.42 2.21 2.21 0 0 0 1.818-2.541A2.226 2.226 0 0 0 16.37 9.66m-6.45 3a.52.52 0 0 1 .424.208l3.824 4.964a.52.52 0 0 1-.333.839l-5.932.937a.52.52 0 0 1-.576-.695l2.108-5.901a.52.52 0 0 1 .486-.352zm.18 1.611-1.49 4.167 4.186-.664z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/appgallery.svg�������������������������������0000664�0000000�0000000�00000001463�14753064456�0025767�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.734 0C1.804 0 0 1.803 0 6.733v10.535C0 22.198 1.803 24 6.734 24h10.529C22.193 24 24 22.197 24 17.268V6.733C24 1.803 22.197 0 17.266 0zM8 4h.565A3.44 3.44 0 0 0 12 7.435 3.44 3.44 0 0 0 15.435 4H16c0 2.206-1.794 4-4 4S8 6.206 8 4m6.468 8h.52l.713 2.16.696-2.158h.66l-1.092 3.14h-.532l-.714-2.063-.714 2.063h-.528l-1.095-3.14h.678l.694 2.158zm6.236 0h.629v3.138h-.629zM2.666 12h.638v1.267h1.439V12h.637v3.142h-.637v-1.276h-1.44v1.276h-.637zm5.668 0h.637v1.772c0 .9-.496 1.417-1.36 1.417-.856 0-1.347-.507-1.347-1.39v-1.797H6.9v1.775c0 .524.255.805.719.805.46 0 .714-.273.714-.784zm2.344 0h.563l1.378 3.14h-.668l-.282-.654H10.23l-.286.654h-.651zm6.893.002h2.312v.572H18.2v.643h1.16v.573H18.2v.777h1.744v.573H17.57zm-6.623.793-.48 1.124h.964z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/appian.svg�����������������������������������0000664�0000000�0000000�00000000642�14753064456�0025075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.646 6.117C19.538 1.763 17.883 0 13.636 0H7.34v4.066h4.57c1.799 0 2.807 0 2.807 1.655v2.375c-.828 0-2.88-.036-4.426-.036-4.246 0-5.83 1.727-5.937 6.117v3.742c.108 4.102 1.51 5.865 5.253 6.081l3.85-4.066c-.397.036-.864.036-1.44.036-1.798 0-2.806 0-2.806-1.655v-4.57c0-1.655 1.007-1.655 2.806-1.655 1.908 0 2.807 0 2.807 1.655v10.22h4.821z"/></svg>����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/appium.svg�����������������������������������0000664�0000000�0000000�00000001105�14753064456�0025113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.923 0C5.937 0 .976 4.384.07 10.115a11.94 11.94 0 0 1 7.645-2.754 11.98 11.98 0 0 1 9.43 4.58 11.94 11.94 0 0 0 1.015-8.769 12 12 0 0 0-.626-1.772l-.003-.008A12 12 0 0 0 11.923 0m7.721 2.754A12 12 0 0 1 9.398 16.521a12.08 12.08 0 0 0 9.02 5.617c.24-.119.766-.51 1.224-.89A11.97 11.97 0 0 0 23.995 12a11.98 11.98 0 0 0-4.35-9.247zM9.33 7.557a12 12 0 0 0-2.647.401A11.94 11.94 0 0 0 .01 12.595l-.005.006q.032.641.131 1.275C1.037 19.61 6 24 11.991 24c1.45 0 2.887-.26 4.243-.773a12 12 0 0 1-6.905-15.67z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/apple.svg������������������������������������0000664�0000000�0000000�00000001153�14753064456�0024724�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.152 6.896c-.948 0-2.415-1.078-3.96-1.04-2.04.027-3.91 1.183-4.961 3.014-2.117 3.675-.546 9.103 1.519 12.09 1.013 1.454 2.208 3.09 3.792 3.039 1.52-.065 2.09-.987 3.935-.987 1.831 0 2.35.987 3.96.948 1.637-.026 2.676-1.48 3.676-2.948 1.156-1.688 1.636-3.325 1.662-3.415-.039-.013-3.182-1.221-3.22-4.857-.026-3.04 2.48-4.494 2.597-4.559-1.429-2.09-3.623-2.324-4.39-2.376-2-.156-3.675 1.09-4.61 1.09zM15.53 3.83c.843-1.012 1.4-2.427 1.245-3.83-1.207.052-2.662.805-3.532 1.818-.78.896-1.454 2.338-1.273 3.714 1.338.104 2.715-.688 3.559-1.701"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/applearcade.svg������������������������������0000664�0000000�0000000�00000001676�14753064456�0026076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.198 18.24a.97.97 0 0 1-.194-.571v-.955s0-.571.563-.313c0 0 6.919 3.135 8.033 3.626a7.8 7.8 0 0 0 3.408.729 8.2 8.2 0 0 0 3.396-.729l8.037-3.626c.559-.258.559.313.559.313v.955a1.04 1.04 0 0 1-.198.575c-.19.258-.515.539-1.411.959-.713.337-6.23 2.818-6.995 3.17a8 8 0 0 1-3.4.729 8.34 8.34 0 0 1-3.82-.927c-1.435-.65-5.849-2.631-6.567-2.972-.9-.428-1.153-.654-1.411-.963m1.411-5.973 6.987-3.17a8 8 0 0 1 2.164-.634v5.707c0 .396.571.697 1.236.697s1.141-.313 1.141-.697V8.479c.778.105 1.54.313 2.263.618l6.987 3.17c.579.273 1.609.761 1.609 1.538s-1.011 1.236-1.609 1.53l-6.987 3.17a8.2 8.2 0 0 1-3.396.729 7.8 7.8 0 0 1-3.408-.729l-6.987-3.17C1.011 15.042 0 14.574 0 13.801s1.03-1.264 1.609-1.534m1.807 2.247c.77.396 1.683.396 2.453 0 .682-.396.686-1.026 0-1.419a2.7 2.7 0 0 0-2.453 0c-.68.392-.666 1.02 0 1.419M12 7.595a3.35 3.35 0 1 1 3.349-3.351v.003c0 1.849-1.5 3.348-3.349 3.348"/></svg>������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/applemusic.svg�������������������������������0000664�0000000�0000000�00000003057�14753064456�0025772�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.994 6.124a9.2 9.2 0 0 0-.24-2.19c-.317-1.31-1.062-2.31-2.18-3.043a5 5 0 0 0-1.877-.726 10.5 10.5 0 0 0-1.564-.15c-.04-.003-.083-.01-.124-.013H5.986q-.227.014-.455.026c-.747.043-1.49.123-2.193.4-1.336.53-2.3 1.452-2.865 2.78-.192.448-.292.925-.363 1.408a11 11 0 0 0-.1 1.18c0 .032-.007.062-.01.093v12.223q.014.211.027.424c.05.815.154 1.624.497 2.373.65 1.42 1.738 2.353 3.234 2.801.42.127.856.187 1.293.228.555.053 1.11.06 1.667.06h11.03a13 13 0 0 0 1.57-.1c.822-.106 1.596-.35 2.295-.81a5.05 5.05 0 0 0 1.88-2.207c.186-.42.293-.87.37-1.324.113-.675.138-1.358.137-2.04-.002-3.8 0-7.595-.003-11.393zm-6.423 3.99v5.712c0 .417-.058.827-.244 1.206-.29.59-.76.962-1.388 1.14q-.524.15-1.07.173c-.95.045-1.773-.6-1.943-1.536a1.88 1.88 0 0 1 1.038-2.022c.323-.16.67-.25 1.018-.324.378-.082.758-.153 1.134-.24.274-.063.457-.23.51-.516a1 1 0 0 0 .02-.193q0-2.723-.002-5.443a.7.7 0 0 0-.026-.185c-.04-.15-.15-.243-.304-.234-.16.01-.318.035-.475.066q-1.14.226-2.28.456l-2.325.47-1.374.278q-.024.007-.048.013c-.277.077-.377.203-.39.49q-.002.063 0 .13c-.002 2.602 0 5.204-.003 7.805 0 .42-.047.836-.215 1.227-.278.64-.77 1.04-1.434 1.233q-.526.152-1.075.172c-.96.036-1.755-.6-1.92-1.544-.14-.812.23-1.685 1.154-2.075.357-.15.73-.232 1.108-.31.287-.06.575-.116.86-.177q.574-.126.6-.714v-.15q0-4.441.002-8.882c0-.123.013-.25.042-.37.07-.285.273-.448.546-.518.255-.066.515-.112.774-.165q1.1-.224 2.2-.444l2.27-.46q1.005-.202 2.01-.403c.22-.043.442-.088.663-.106.31-.025.523.17.554.482q.012.11.012.223.003 2.866 0 5.732z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/applenews.svg��������������������������������0000664�0000000�0000000�00000000550�14753064456�0025621�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 12.94c2.726 4.673 6.394 8.385 11.039 11.058H1.416A1.416 1.416 0 0 1 0 22.582zM0 1.414C0 .634.632.002 1.412.002H6.22L24 17.758v4.773c0 .39-.154.762-.43 1.038a1.47 1.47 0 0 1-1.037.43H17.76L0 6.241M12.963.002h9.619A1.42 1.42 0 0 1 24 1.42v9.625C21.265 6.494 17.616 2.775 12.963.002"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/applepay.svg���������������������������������0000664�0000000�0000000�00000004461�14753064456�0025443�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.15 4.318-.454.003c-.15.005-.303.013-.452.04a1.44 1.44 0 0 0-1.06.772c-.07.138-.114.278-.14.43-.028.148-.037.3-.04.45L0 6.222v11.557q0 .104.003.207c.004.15.013.303.04.452q.039.224.142.429a1.44 1.44 0 0 0 .63.63c.138.07.278.115.43.142.148.027.3.036.45.04l.208.003h20.194l.207-.003c.15-.004.303-.013.452-.04s.291-.071.428-.141a1.43 1.43 0 0 0 .631-.631c.07-.138.115-.278.141-.43.027-.148.036-.3.04-.45q.003-.104.003-.208l.001-.246V6.221q0-.104-.004-.207a3 3 0 0 0-.04-.452 1.45 1.45 0 0 0-1.2-1.201 3 3 0 0 0-.452-.04 11 11 0 0 0-.453-.003zm0 .512h19.942q.098 0 .197.003c.115.004.25.01.375.032.109.02.2.05.287.094a.93.93 0 0 1 .407.407 1 1 0 0 1 .094.288c.022.123.028.258.031.374q.003.097.003.197v11.552q0 .097-.003.196c-.003.115-.009.25-.032.375a.93.93 0 0 1-.5.693 1 1 0 0 1-.286.094 3 3 0 0 1-.373.032l-.2.003H1.906q-.1 0-.196-.003a3 3 0 0 1-.375-.032c-.109-.02-.2-.05-.288-.094a.9.9 0 0 1-.406-.407 1 1 0 0 1-.094-.288 2.5 2.5 0 0 1-.032-.373l-.002-.197V6.224q0-.098.002-.197c.004-.114.01-.248.032-.375.02-.108.05-.199.094-.287a.93.93 0 0 1 .407-.406 1 1 0 0 1 .287-.094c.125-.022.26-.029.375-.032q.098-.002.196-.003zm4.71 3.7c-.3.016-.668.199-.88.456-.191.22-.36.58-.316.918.338.03.675-.169.888-.418.205-.258.345-.603.308-.955zm2.207.42v5.493h.852v-1.877h1.18c1.078 0 1.835-.739 1.835-1.812 0-1.07-.742-1.805-1.808-1.805zm.852.719h.982c.739 0 1.161.396 1.161 1.089 0 .692-.422 1.092-1.164 1.092h-.979zm-3.154.3c-.45.01-.83.28-1.05.28-.235 0-.593-.264-.981-.257a1.45 1.45 0 0 0-1.23.747c-.527.908-.139 2.255.374 2.995.249.366.549.769.944.754.373-.014.52-.242.973-.242.454 0 .586.242.98.235.41-.007.667-.366.915-.733.286-.417.403-.82.41-.841-.007-.008-.79-.308-.797-1.209-.008-.754.615-1.113.644-1.135-.352-.52-.9-.578-1.09-.593zm8.204.397c-.99 0-1.606.533-1.652 1.256h.777c.072-.358.369-.586.845-.586.502 0 .803.266.803.711v.309l-1.097.064c-.951.054-1.488.484-1.488 1.184 0 .72.548 1.207 1.332 1.207.526 0 1.032-.281 1.264-.727h.019v.659h.788v-2.76c0-.803-.62-1.317-1.591-1.317m1.94.072 1.446 4.009c0 .003-.073.24-.073.247-.125.41-.33.571-.711.571-.069 0-.206 0-.267-.015v.666c.06.011.267.019.335.019.83 0 1.226-.312 1.568-1.283l1.5-4.214h-.868l-1.012 3.259h-.015l-1.013-3.26zm-1.167 2.189v.316c0 .521-.45.917-1.024.917-.442 0-.731-.228-.731-.579 0-.342.278-.56.769-.593z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/applepodcasts.svg����������������������������0000664�0000000�0000000�00000003457�14753064456�0026476�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.34 0A5.33 5.33 0 0 0 0 5.34v13.32A5.33 5.33 0 0 0 5.34 24h13.32A5.33 5.33 0 0 0 24 18.66V5.34A5.33 5.33 0 0 0 18.66 0zm6.525 2.568c2.336 0 4.448.902 6.056 2.587 1.224 1.272 1.912 2.619 2.264 4.392.12.59.12 2.2.007 2.864a8.5 8.5 0 0 1-3.24 5.296c-.608.46-2.096 1.261-2.336 1.261-.088 0-.096-.091-.056-.46.072-.592.144-.715.48-.856.536-.224 1.448-.874 2.008-1.435a7.64 7.64 0 0 0 2.008-3.536c.208-.824.184-2.656-.048-3.504-.728-2.696-2.928-4.792-5.624-5.352-.784-.16-2.208-.16-3 0-2.728.56-4.984 2.76-5.672 5.528-.184.752-.184 2.584 0 3.336.456 1.832 1.64 3.512 3.192 4.512.304.2.672.408.824.472.336.144.408.264.472.856.04.36.03.464-.056.464-.056 0-.464-.176-.896-.384l-.04-.03c-2.472-1.216-4.056-3.274-4.632-6.012-.144-.706-.168-2.392-.03-3.04.36-1.74 1.048-3.1 2.192-4.304 1.648-1.737 3.768-2.656 6.128-2.656zm.134 2.81c.409.004.803.04 1.106.106 2.784.62 4.76 3.408 4.376 6.174-.152 1.114-.536 2.03-1.216 2.88-.336.43-1.152 1.15-1.296 1.15-.023 0-.048-.272-.048-.603v-.605l.416-.496c1.568-1.878 1.456-4.502-.256-6.224-.664-.67-1.432-1.064-2.424-1.246-.64-.118-.776-.118-1.448-.008-1.02.167-1.81.562-2.512 1.256-1.72 1.704-1.832 4.342-.264 6.222l.413.496v.608c0 .336-.027.608-.06.608-.03 0-.264-.16-.512-.36l-.034-.011c-.832-.664-1.568-1.842-1.872-2.997-.184-.698-.184-2.024.008-2.72.504-1.878 1.888-3.335 3.808-4.019.41-.145 1.133-.22 1.814-.211zm-.13 2.99c.31 0 .62.06.844.178a2.17 2.17 0 0 1 1.04 1.259c.464 1.578-1.208 2.96-2.72 2.254h-.015c-.712-.331-1.096-.956-1.104-1.77 0-.733.408-1.371 1.112-1.745.224-.117.534-.176.844-.176zm-.011 4.728c.988-.004 1.706.349 1.97.97.198.464.124 1.932-.218 4.302-.232 1.656-.36 2.074-.68 2.356-.44.39-1.064.498-1.656.288h-.003c-.716-.257-.87-.605-1.164-2.644-.341-2.37-.416-3.838-.218-4.302.262-.616.974-.966 1.97-.97z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/appletv.svg����������������������������������0000664�0000000�0000000�00000001555�14753064456�0025304�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.57 17.735h-1.815l-3.34-9.203h1.633l2.02 5.987c.075.231.273.9.586 2.012l.297-.997.33-1.006 2.094-6.004H24zm-5.344-.066a5.8 5.8 0 0 1-1.55.207c-1.23 0-1.84-.693-1.84-2.087V9.646h-1.063V8.532h1.121V7.081l1.476-.602v2.062h1.707v1.113H13.38v5.805c0 .446.074.75.214.932s.396.264.75.264c.207 0 .495-.041.883-.115zm-7.29-5.343c.017 1.764 1.55 2.358 1.567 2.366-.017.042-.248.842-.808 1.658-.487.71-.99 1.418-1.79 1.435-.783.016-1.03-.462-1.93-.462-.89 0-1.17.445-1.913.478-.758.025-1.344-.775-1.838-1.484-.998-1.451-1.765-4.098-.734-5.88.51-.89 1.426-1.451 2.416-1.46.75-.016 1.468.512 1.93.512s1.327-.627 2.234-.536c.38.016 1.452.157 2.136 1.154-.058.033-1.278.743-1.27 2.219M6.468 7.988c.404-.495.685-1.18.61-1.864-.585.025-1.294.388-1.723.883-.38.437-.71 1.138-.619 1.806.652.05 1.328-.338 1.732-.825"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/appsignal.svg��������������������������������0000664�0000000�0000000�00000001717�14753064456�0025607�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.003 7.328c-1.781 0-3.055 1.57-4.368 3.318-.815-3.714-1.72-7.424-4.601-7.424s-3.789 3.71-4.617 7.427c-1.31-1.752-2.584-3.32-4.365-3.32C1.918 7.329 0 8.098 0 10.986v5.24c0 2.832 1.512 3.527 2.42 3.766 1.565.406 5.334.786 9.578.786s8.013-.38 9.579-.786c.907-.24 2.423-.934 2.423-3.766v-5.24c0-2.888-1.92-3.658-3.052-3.658m-8.914-2.469c1.726 0 2.384 3.406 3.3 7.493-1.004 1.238-2.072 2.236-3.3 2.236s-2.292-.998-3.3-2.236c.857-3.822 1.519-7.493 3.3-7.493M1.664 16.242v-5.24c0-1.823.981-2.02 1.414-2.02 1.257 0 2.62 2.096 3.893 3.78-.91 3.818-1.873 6.143-4.145 5.664-.593-.16-1.15-.537-1.15-2.167m4.46 2.655c1.006-1.093 1.638-2.8 2.139-4.607 1.05 1.103 2.266 1.935 3.772 1.935s2.718-.832 3.773-1.935c.488 1.807 1.13 3.514 2.135 4.607a67.5 67.5 0 0 1-11.806 0m16.282-2.655c0 1.637-.556 2.007-1.15 2.167-2.275.482-3.235-1.846-4.145-5.665 1.287-1.683 2.62-3.779 3.894-3.779.425 0 1.414.197 1.414 2.02z"/></svg>�������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/appsmith.svg���������������������������������0000664�0000000�0000000�00000004331�14753064456�0025451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.15 12.723v-1.845h-1.163v.422h.61v1.423h-.61v.421h1.774v-.421zm5.69 1.167v-.421H24v.421zm-.66-2.852q.213.214.213.604v1.502h-.552v-1.41q0-.43-.426-.43a.48.48 0 0 0-.36.152q-.147.151-.147.419v1.27h-.552v-3.023h.552v1.06q.259-.356.69-.356.37 0 .582.212m-2.475.262h-.706v1.225q0 .11.06.153.058.044.198.043h.404v.422c-.12.012-.432.017-.505.017q-.368 0-.538-.138t-.17-.441V11.3h-.513v-.422h.514v-.756h.55v.756h.706zm-4.447-.255q.208.22.209.602v1.497h-.553v-1.41q0-.43-.39-.43a.43.43 0 0 0-.343.152q-.129.151-.13.441v1.247h-.547v-1.41q0-.43-.395-.43a.42.42 0 0 0-.336.152q-.13.152-.13.442v1.247h-.552v-2.267h.536v.325q.232-.377.644-.377.518 0 .703.421.254-.421.702-.421.374 0 .582.22zm-5.83 1.379h.541q.022.21.138.299.117.087.367.087.448 0 .448-.272a.22.22 0 0 0-.097-.189q-.096-.066-.347-.11l-.259-.043q-.742-.123-.742-.685 0-.32.246-.503.245-.182.694-.182.97 0 1.001.767h-.522q-.009-.202-.127-.288t-.351-.085q-.396 0-.396.263a.21.21 0 0 0 .088.178q.088.063.29.099l.285.043q.413.075.6.238.186.162.186.452 0 .342-.263.527-.263.184-.742.184-.993.001-1.037-.78zm-.77-1.278q.272.325.272.865t-.272.86q-.276.324-.742.324t-.703-.346v1.154h-.552v-3.125h.531v.325q.246-.377.725-.377.463 0 .74.32zm-.874 1.594q.272 0 .43-.198.157-.197.153-.548 0-.347-.151-.53-.152-.182-.433-.182-.276 0-.43.19-.153.188-.153.54 0 .355.158.54.148.188.425.188zm-1.972-1.594q.272.325.272.865t-.272.86q-.276.324-.742.324t-.703-.346v1.154h-.552v-3.125h.531v.325q.246-.377.725-.377.464 0 .74.32zm-.874 1.594q.272 0 .43-.198.158-.197.153-.548 0-.347-.151-.53-.152-.182-.433-.182-.276 0-.43.19-.153.188-.153.54 0 .355.158.54.15.188.426.188m-2.331.404q-.04-.07-.062-.276-.228.33-.728.33-.374 0-.595-.18Q0 12.837 0 12.516q0-.62.87-.706l.342-.03a.5.5 0 0 0 .245-.082.22.22 0 0 0 .075-.178q0-.145-.094-.213-.095-.068-.319-.068-.241 0-.347.081-.105.082-.122.28H.105q.048-.773 1.019-.774.944 0 .944.681v1.207q0 .3.092.43zm-.237-.484q.162-.143.162-.41v-.207a.47.47 0 0 1-.26.092l-.298.034q-.22.027-.313.103a.27.27 0 0 0-.094.222.28.28 0 0 0 .098.227q.099.081.283.081.26 0 .422-.142m14.282-2.142a.3.3 0 0 1-.09-.214.307.307 0 0 1 .307-.307.3.3 0 0 1 .215.09.3.3 0 0 1 .087.217.3.3 0 0 1-.09.215.3.3 0 0 1-.213.087.3.3 0 0 1-.216-.088"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/appstore.svg���������������������������������0000664�0000000�0000000�00000003032�14753064456�0025456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.809 14.92 6.11-11.037c.084-.152.168-.302.244-.459.069-.142.127-.285.165-.44.08-.326.058-.666-.066-.977a1.5 1.5 0 0 0-.62-.735 1.42 1.42 0 0 0-.922-.193c-.32.043-.613.194-.844.43-.11.11-.2.235-.283.368-.092.146-.175.298-.259.45l-.386.697-.387-.698c-.084-.151-.167-.303-.259-.449a2.2 2.2 0 0 0-.283-.369 1.45 1.45 0 0 0-.844-.429 1.42 1.42 0 0 0-.921.193 1.5 1.5 0 0 0-.62.735c-.125.311-.147.651-.066.977.038.155.096.298.164.44.076.157.16.307.244.459l1.248 2.254-4.862 8.782H2.03c-.168 0-.336 0-.503.01-.152.009-.3.028-.448.071-.31.09-.582.28-.778.548-.195.267-.301.593-.301.928s.106.661.3.928c.197.268.468.457.779.548.148.043.296.062.448.071.167.01.335.01.503.01h13.097c.017-.037.059-.13.1-.27.415-1.416-.616-2.844-2.035-2.844zm-5.696 3.622-.792 1.5c-.082.156-.165.31-.239.471a2.4 2.4 0 0 0-.16.452c-.08.335-.058.684.064 1.003.121.318.334.583.607.755s.589.242.901.197c.314-.044.6-.198.826-.44.108-.115.196-.242.278-.378.09-.15.171-.306.253-.462L6 19.464c-.09-.15-.947-1.47-2.887-.922m20.586-3.006a1.47 1.47 0 0 0-.779-.54 2 2 0 0 0-.448-.071c-.168-.01-.335-.01-.503-.01h-3.321L14.258 7.1a4.06 4.06 0 0 0-1.076 2.198 4.64 4.64 0 0 0 .546 3l5.274 9.393c.084.15.167.3.259.444.084.13.174.253.283.364.231.232.524.38.845.423s.643-.024.922-.19a1.5 1.5 0 0 0 .621-.726c.125-.307.146-.642.066-.964a2.2 2.2 0 0 0-.165-.434c-.075-.155-.16-.303-.244-.453l-1.216-2.166h1.596c.168 0 .335 0 .503-.009.152-.009.3-.028.448-.07a1.47 1.47 0 0 0 .78-.541 1.54 1.54 0 0 0 .3-.916 1.54 1.54 0 0 0-.3-.916"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/appveyor.svg���������������������������������0000664�0000000�0000000�00000000676�14753064456�0025501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c6.6 0 12 5.4 12 12s-5.4 12-12 12S0 18.6 0 12 5.4 0 12 0m2.94 14.34c1.32-1.68 1.14-4.08-.54-5.34-1.62-1.26-4.02-.96-5.4.72-1.32 1.68-1.14 4.08.54 5.34s4.08.96 5.4-.72m-6.42 7.8c.72.3 2.28.6 3.06.6l5.22-7.56c1.68-2.52 1.26-5.94-1.08-7.8-2.1-1.68-5.04-1.62-7.14 0l-7.26 5.58c.18 1.92.72 2.88.72 2.94l4.14-4.5c-.3 1.98.42 4.02 2.1 5.28 1.44 1.14 3.18 1.44 4.86 1.08z"/></svg>������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/appwrite.svg���������������������������������0000664�0000000�0000000�00000000670�14753064456�0025461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 17.291v5.29H10.557A10.58 10.58 0 0 1 0 12.715v-1.43c.048-.735.174-1.463.374-2.171C1.63 4.673 5.713 1.419 10.557 1.419s8.927 3.254 10.183 7.695h-5.749a5.28 5.28 0 0 0-4.434-2.404 5.28 5.28 0 0 0-4.434 2.404A5.23 5.23 0 0 0 5.267 12a5.27 5.27 0 0 0 1.66 3.848 5.27 5.27 0 0 0 3.63 1.443zm0-6.734v5.291h-9.813A5.28 5.28 0 0 0 15.848 12c0-.5-.07-.984-.199-1.443z"/></svg>������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/aqua.svg�������������������������������������0000664�0000000�0000000�00000001126�14753064456�0024552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.788 18.681c.768 0 .769.71.769.752 0 .289-.105.43-.223.553L14.728 23.6a1.35 1.35 0 0 1-.957.401H.879a.8.8 0 0 1-.424-.123.96.96 0 0 1-.455-.804v-4.392zM23.063.001c.32-.006.65.188.802.45A.83.83 0 0 1 24 .876v12.882c0 .36-.14.705-.395.96L20.06 18.27c-.137.137-.274.274-.603.274-.041 0-.822 0-.822-.768V0zM4.553 5.481s.825 0 .825.77v12.093H0v-8.064c0-.361.14-.708.395-.963L3.95 5.757c.137-.138.274-.275.604-.275M18.299 0v5.377H6.255c-.767 0-.767-.823-.767-.823 0-.33.137-.466.274-.604L9.309.398A1.36 1.36 0 0 1 10.267 0z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/aral.svg�������������������������������������0000664�0000000�0000000�00000003130�14753064456�0024537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5.393 10.02-.48 1.959.99.001zm3.892.082v1.187c.549-.002.958.03 1.229-.033.27-.062.404-.217.404-.592 0-.334-.12-.469-.385-.523-.264-.055-.672-.028-1.248-.04zm5.326-.079-.48 1.96h.99zM11.996 0 0 11.998 12.004 24 24 12.004zM5.393 8.896c.366 0 .606.117.775.295.169.18.267.421.35.67l1.07 3.211s.134.276.144.567-.104.599-.6.666c-.355-.054-.536-.156-.657-.35-.122-.194-.184-.482-.305-.91H4.645c-.147.468-.195.757-.295.941s-.254.263-.616.317c-.508-.054-.636-.369-.636-.67s.129-.588.129-.588l1.015-3.152c.08-.246.176-.495.348-.682s.42-.315.803-.315m9.191.002c.366 0 .607.117.775.295.17.18.267.421.35.67l1.072 3.211s.135.276.145.567-.104.599-.6.666c-.356-.054-.536-.156-.658-.35s-.186-.482-.307-.91h-1.525c-.147.468-.193.757-.293.941s-.256.263-.617.317c-.509-.054-.635-.367-.635-.668s.127-.59.127-.59l1.016-3.152c.075-.233.17-.484.343-.674s.424-.323.807-.323m3.346.002c.308 0 .483.114.58.291.097.178.117.418.117.672v3.207c.215.005 1.23 0 1.23 0 .29 0 .53.02.694.106s.252.239.244.504c-.01.361-.18.517-.406.582s-.509.039-.744.039h-1.766c-.375 0-.536-.165-.604-.436-.067-.27-.04-.645-.04-1.062v-2.94c-.014-.254.02-.496.126-.674.107-.177.288-.289.569-.289m-8.645.104h1.098c.254 0 .51-.002.767.084.259.086.52.26.786.613.28.378.35.933.222 1.414s-.456.889-.972.969c.187.348.804 1.283.804 1.283s.066.11.078.266c.012.155-.03.357-.25.539-.388.147-.633.106-.78.03-.149-.078-.2-.192-.2-.192s-.562-.964-.91-1.633h-.643v1.338s.01.154-.064.305c-.075.15-.236.298-.578.285-.327 0-.488-.155-.567-.309S8 13.69 8 13.69V9.861c0-.334.006-.549.17-.68.164-.13.486-.177 1.115-.177"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/arangodb.svg���������������������������������0000664�0000000�0000000�00000004640�14753064456�0025404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.885 3.75c-.32.007-.536.032-.61.041-.878.106-2.81.49-4.466 2.088-.921.89-1.501 2.153-1.783 2.826.251-.072.502-.13.75-.164.94-.131 1.8-.013 2.431.219.89-.158 1.474-.228 1.782-.227.953.004 2.003-.008 2.775.65.208.178.82.542.725 1.515-.084.867-.474 1.933-1.428 2.982-.574.632-1.686 1.444-3.059 2.15-.995.511-2.412 1.313-4.469 1.426-.331.019-.708.041-1.105.04-1.012-.004-2.48-.138-3.545-1.249-.221-.231-1.31-1.458-1.002-2.93.248-1.185 1.229-1.798 2.016-2.292.447-.281 1.05-.512 1.861-.754.585-.63 1.274-1.017 1.975-1.262-1.394.312-2.784.652-3.788 1.15-1.15.557-2.236 1.082-2.707 2.237-.287.707-.263 1.42-.191 1.892 0 0 .31 3.096 2.441 4.674 1.784 1.323 4.413 1.812 6.374 1.276 1.543-.294 3.015-1.738 4.24-3.004l.006.004c.392.186 1.295.584 2.027.963 1.692.873 2.864 1.054 3.47 1.16 1.317.23 3.368-.292 4.341-1.383.932-1.045 1.203-2.454.98-3.711-.067-.386-.066-1.073-.349-2.016-.222-.737-.333-1.104-.494-1.496-.31-.758-.705-1.373-1.295-2.137-1.382-1.784-2.072-2.679-3.2-3.39-1.834-1.16-3.74-1.297-4.703-1.278m.713 1.135c.814.033 2.014.046 3.051.725.603.397 1.182.68 2.338 2.21 1.56 2.069 1.711 2.301 2.293 3.405.443.84.822 2.55.65 3.885-.05.387-.09 1.209-.95 2.021-1.157 1.093-3.13.97-3.337.946-.629-.077-1.113-.371-2.582-.934l-1.816-.744c-.121-.048-.245-.115-.37-.18.417-.499 1.182-1.488 1.497-2.111.231-.466.385-.985.488-1.37.078-.308.195-.765.244-1.204.025-.229.045-.463.049-.663.004-.207-.001-.244-.01-.402a4.2 4.2 0 0 0-.201-.926 2.4 2.4 0 0 0-.457-.748 2.6 2.6 0 0 0-.51-.367c-.208-.113-.474-.216-.646-.283-.32-.125-.585-.196-1.067-.256a5 5 0 0 0-.451-.016c-.547.005-1.274.08-2.338.237q-1.022.144-2.024.334l.002-.006c.69-1.402 1.67-2.392 3.35-2.983 1.075-.377 2.198-.595 2.797-.57m.272 2.566a2.1 2.1 0 0 0-.721.112c.378.093.743.284 1.064.426.255.138.49.313.633.462.249.261.46.616.569.93.099.29.206.71.226 1.06.009.15.016.22.012.438a8 8 0 0 1-.053.711c-.054.488-.178.965-.256 1.272a8 8 0 0 1-.383 1.144c.239.004.47-.002.602-.025.937-.164 1.561-1.126 1.752-1.904.268-1.102-.285-2.02-.654-2.633-.349-.577-.963-1.384-2.073-1.834a2.1 2.1 0 0 0-.718-.159M7.844 9.035a4.6 4.6 0 0 0-1.511.457c-.53.254-.99.648-1.573 1.335-.65.815-1.112 2.387-.76 2.81.18.218.275.24.34.283.901.436 1.724 1.035 3.068 1.114h1.118c.234.002.545-.05.632-.059 1.547-.254 3.605-1.349 3.526-2.88-.03-.573-.683-1.512-1.127-1.935-.431-.41-1.147-.788-1.454-.917-.266-.131-.576-.167-.888-.213-.47-.078-.972-.048-1.371.005"/></svg>������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/arc.svg��������������������������������������0000664�0000000�0000000�00000003742�14753064456�0024376�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.937 8.509a2.95 2.95 0 0 0-.336-2.097 2.85 2.85 0 0 0-1.908-1.35 3 3 0 0 0-.562-.058h-.01c-1.377 0-2.533.988-2.807 2.338a7 7 0 0 1-.92 2.27.26.26 0 0 1-.236.12.26.26 0 0 1-.22-.146l-2.86-5.99c-.362-.763-1.013-1.362-1.823-1.598A2.875 2.875 0 0 0 8.85 3.522L5.897 9.733c-.079.163-.31.158-.378-.005v-.005a2.86 2.86 0 0 0-2.665-1.797c-.378 0-.751.073-1.108.22-1.472.615-2.129 2.35-1.52 3.82.558 1.33 1.472 2.586 2.66 3.669.084.078.11.2.063.304l-.956 2.008c-.673 1.419-.132 3.148 1.266 3.857.41.205.846.31 1.298.31a2.88 2.88 0 0 0 2.596-1.64l.825-1.729a.254.254 0 0 1 .305-.136 11.5 11.5 0 0 0 3.006.42c1.119 0 2.222-.168 3.29-.478a.26.26 0 0 1 .31.137l.814 1.713c.483 1.02 1.492 1.713 2.617 1.718.457 0 .898-.1 1.313-.31 1.403-.71 1.94-2.443 1.267-3.868l-1.025-2.154a.265.265 0 0 1 .058-.305c1.986-1.85 3.452-4.272 4.004-6.973M6.212 20.017a1.84 1.84 0 0 1-.676.762 1.84 1.84 0 0 1-.98.284c-.272 0-.55-.063-.808-.19-.904-.446-1.246-1.57-.81-2.48l.794-1.665c.068-.148.257-.2.383-.106q.253.18.52.353 1.052.67 2.182 1.135a.26.26 0 0 1 .141.352zm5.076-2.044c-4.209 0-8.654-2.853-10.126-6.495a1.83 1.83 0 0 1 1.01-2.38c.225-.09.456-.137.682-.137.725 0 1.409.43 1.698 1.145.92 2.281 4.004 4.21 6.736 4.21.42 0 .841-.042 1.256-.116a.264.264 0 0 1 .284.142l1.377 2.9a.26.26 0 0 1-.163.363c-.899.237-1.818.368-2.754.368m-.599-4.93.636-1.334a.145.145 0 0 1 .258 0l.62 1.303c.042.084-.016.19-.105.205a6 6 0 0 1-.8.058 5 5 0 0 1-.488-.026c-.11-.016-.163-.121-.12-.205m8.46 7.826a1.83 1.83 0 0 1-2.032-.28 1.8 1.8 0 0 1-.432-.577L11.698 9.528c-.1-.21-.4-.21-.494 0L9.66 12.781a.26.26 0 0 1-.32.137c-1.051-.363-2.05-.978-2.79-1.719a.255.255 0 0 1-.048-.294l3.342-7.03a1.53 1.53 0 0 1 .52-.621c1.052-.688 2.281-.258 2.738.704l6.858 14.425c.431.914.095 2.039-.81 2.485m-1.444-9.649a.26.26 0 0 1 .031-.273c.783-1.004 1.356-2.175 1.603-3.42a1.83 1.83 0 0 1 2.239-1.42c.972.242 1.534 1.251 1.33 2.234-.484 2.301-1.683 4.388-3.317 6.022a.263.263 0 0 1-.425-.068z"/></svg>������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/arcgis.svg�����������������������������������0000664�0000000�0000000�00000001667�14753064456�0025105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a.85.85 0 0 0-.338.07L3.144 3.765A2.73 2.73 0 0 0 1.5 6.27v13.252l10.162 4.408a.85.85 0 0 0 .676 0l8.518-3.696A2.73 2.73 0 0 0 22.5 17.73V4.478L12.338.07A.85.85 0 0 0 12 0m0 4.837a7.537 7.537 0 1 1 0 15.075 7.537 7.537 0 0 1 0-15.075m-.35 1.389c-.897-.023-2.328.24-3.747 1.614.35.555.646.978.49 1.418-.23.655-.513.514-1.07.995-.396.341.206 1.013-.313 1.306-.52.293-1.213.663-.95 1.175.265.512 1.47.83 1.96 1.075.49.246.928.707.607 1.238-.314.519-.537 1.13-.601 1.609A5.94 5.94 0 0 0 12 18.175c3.293 0 5.818-2.71 5.962-6 .04-.926-.94-.94-1.534-.94 0 0 .34.923.018 1.436s-.85.762-.835 1.377c.015.616-.937 1.597-1.26 1.949-.322.351-.923.747-1.128-.06-.205-.805-.126-1.477.109-2.048.234-.572-.218-.748-.921-.762s-1.08-.108-1.187-1.193c-.088-.894 1.243-1.844 1.815-1.844.334 0 1.454.22 1.507-.34.08-.86-.82-1.042-1.04-1.602-.218-.56 1.48-1.54-1.506-1.898a4 4 0 0 0-.35-.024"/></svg>�������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/archicad.svg���������������������������������0000664�0000000�0000000�00000000470�14753064456�0025362�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.59 16.322a1.41 1.41 0 1 1 0-2.82 1.41 1.41 0 0 1 0 2.82M.15 19.827a1.41 1.41 0 0 0 2.52 1.268S10.52 5.083 16.926 4.946c4.23-.09 4.232 5.642 4.232 5.642a1.41 1.41 0 1 0 2.82 0s.057-8.381-7.02-8.457C8.764 1.871.152 19.827.152 19.827"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/archiveofourown.svg��������������������������0000664�0000000�0000000�00000003147�14753064456�0027050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.417 9.883c-.687 1.116-1.823 1.722-2.99 1.855-4.227.484-6.047-4.149-3.469-6.728 2.31-2.31 7.082-.9 7.005 2.899-.011.611-.166 1.357-.546 1.974m-6.459-2.029c.142 3.596 4.764 3.682 5.687 1.054.815-2.324-1.12-4.199-3.19-3.897-1.523.221-2.553 1.411-2.497 2.843m11.165-1.851c.284-.131.697-.412.837-.246.211.251-.459.475-.748.664-.918.6-1.731 1.227-2.477 2.049-.959 1.059-1.944 2.376-2.55 3.818.618.032 3.021.157 3.6 1.481.464 1.062-.387 2.156-1.32 2.627.663.414 1.81.945 1.745 1.898-.158 2.343-3.696 2.241-5.178.695-.244-.289-.358-.482-.25-.578.151-.134.326.186.676.476.225.187.377.251.572.354 1.301.683 3.339.403 3.478-.792.064-.554-.664-.955-1.217-1.204-.498-.224-1.514-.386-1.494-.952.02-.554.524-.45 1.03-.65.55-.217 1.004-.901 1.003-1.116-.005-.905-2.062-.888-3.221-.92-.275.606-.471 1.226-.692 2.158-.139.583-.151 1.897-.748 2.029-.737.164-1.014-.477-1.455-.991-.594-.69-1.436-1.637-1.942-2.223-3.033 1.002-5.392 2.091-8.256 3.712-1.311.742-2.063 1.59-2.545 1.354-.396-.194-.339-.633-.147-.887.393-.521.927-1.225 1.396-1.888.6-.849 1.054-1.667 1.373-2.445.692-1.688 1.23-4.72 1.475-5.859.088-.412.309-.348.322-.148.027.419-.237 2.047-.29 2.383-.436 2.781-.772 4.41-2.009 6.349 2.196-1.358 4.805-3.019 7.592-3.955C8.846 9.936 5.847 6.85 1.676 4.905 1.037 4.542 0 4.464 0 4.22c0-.271.781-.06 1.043.007 2.383.596 4.817 2.141 6.601 3.444 2.145 1.567 4.714 3.967 5.679 5.081.657-.226 2.286-.457 3.696-.496.752-1.58 2.55-4.018 4.788-5.442.413-.263.842-.594 1.316-.811m-8.594 8.071c.423.428.742.934 1.11 1.398.174-.59.405-1.216.643-1.758-.619.082-1.281.203-1.753.36"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/archlinux.svg��������������������������������0000664�0000000�0000000�00000001307�14753064456�0025621�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.39.605C10.376 3.092 9.764 4.72 8.635 7.132c.693.734 1.543 1.589 2.923 2.554-1.484-.61-2.496-1.224-3.252-1.86C6.86 10.842 4.596 15.138 0 23.395c3.612-2.085 6.412-3.37 9.021-3.862a6.6 6.6 0 0 1-.171-1.547l.003-.115c.058-2.315 1.261-4.095 2.687-3.973 1.426.12 2.534 2.096 2.478 4.409a6.5 6.5 0 0 1-.146 1.243c2.58.505 5.352 1.787 8.914 3.844-.702-1.293-1.33-2.459-1.929-3.57-.943-.73-1.926-1.682-3.933-2.713 1.38.359 2.367.772 3.137 1.234-6.09-11.334-6.582-12.84-8.67-17.74zM22.898 21.36v-.623h-.234v-.084h.562v.084h-.234v.623h.331v-.707h.142l.167.5.034.107.038-.114.17-.493H24v.707h-.091v-.593l-.206.593h-.084l-.205-.602v.602h-.091"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ardour.svg�����������������������������������0000664�0000000�0000000�00000001753�14753064456�0025125�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1.606 0 22.394c1.45 0 .832-.885 1.565-.93.703 0 .559.44 1.044.44.846 0 .273-2.82 1.043-2.82.665 0 .48 2.038 1.044 2.038.288 0 .521-.811.521-1.81v-.945c0-1.304.234-2.364.522-2.364s.522 1.066.522 2.005c0 1.178.233 2.43.522 2.43.288 0 .521-1.263.521-2.805v-.44c0-1.69.234-3.065.522-3.065s.522 1.369.522 2.967c0 1.661.233 3.098.522 3.098.288 0 .521-1.437.521-3.18 0-1.737.234-3.146.522-3.146s.522 1.424.522 3.277c0 1.786.233 3.147.522 3.147.288 0 .521-1.367.521-2.87 0-1.386.234-2.657.522-2.657s.522 1.271.522 2.837v.472c0 1.415.233 2.56.521 2.56s.522-1.152.522-2.299c0-.973.234-1.989.522-1.989s.522 1.01.522 2.25v.57c0 1.058.233 1.908.521 1.908s.522-.84.522-1.614c0-.589.234-1.304.522-1.304s.522.709.522 1.581v.538c0 .696.233 1.272.521 1.272.595 0 .45-1.728 1.044-1.728.288 0 .522.43.522.962v.456c0 .385.233.685.521.685.59 0 .462-.782 1.044-.782.76 0 .197 1.076 1.043 1.076.512 0 .426-.18 1.044-.18.563 0 .493.359 1.565.359z"/></svg>���������������������mkdocs-material-9.6.4/material/templates/.icons/simple/arduino.svg����������������������������������0000664�0000000�0000000�00000001602�14753064456�0025263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.087 6.146c-.3 0-.607.017-.907.069-2.532.367-4.23 2.239-5.18 3.674-.95-1.435-2.648-3.307-5.18-3.674a6.5 6.5 0 0 0-.907-.069C2.648 6.146 0 8.77 0 12s2.656 5.854 5.913 5.854c.3 0 .607-.017.916-.069 2.531-.376 4.23-2.247 5.18-3.683.949 1.436 2.647 3.307 5.18 3.683.299.043.607.069.915.069C21.344 17.854 24 15.23 24 12s-2.656-5.854-5.913-5.854M6.53 15.734a4 4 0 0 1-.625.043c-2.148 0-3.889-1.7-3.889-3.777 0-2.085 1.749-3.777 3.898-3.777q.312.002.624.043c2.39.35 3.847 2.768 4.347 3.734-.508.974-1.974 3.384-4.355 3.734m11.558.043c-.208 0-.416-.017-.624-.043-2.39-.35-3.856-2.768-4.347-3.734.491-.966 1.957-3.384 4.347-3.734q.312-.041.624-.043c2.149 0 3.89 1.7 3.89 3.777 0 2.085-1.75 3.777-3.89 3.777m1.65-4.404v1.134h-1.205v1.182h-1.156v-1.182H16.17v-1.134h1.206V10.19h1.156v1.183zM4.246 12.498H7.82v-1.125H4.245v1.125z"/></svg>������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/argo.svg�������������������������������������0000664�0000000�0000000�00000011161�14753064456�0024553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.581 0q.656.056 1.299.186c1.679.383 3.121 1.213 4.382 2.365 1.161 1.06 1.917 2.372 2.335 3.881.089.321.216.56.586.624.205.035.238.245.239.43q.003.97.002 1.94l-.002 1.21c-.001.356-.116.479-.466.474-.211-.003-.293.119-.344.291q-.219.735-.552 1.426c-.818 1.682-2.084 2.938-3.688 3.87q-.116.067-.233.131c-.252.137-.258.146-.155.415.114.299.358.529.664.625.269.096.553.134.827.21a.7.7 0 0 1 .236.094c-.066.082-.156.067-.231.082-.36.073-.713.184-1.086.17a1.3 1.3 0 0 1-.438-.064c-.114-.045-.152-.006-.176.109a5.4 5.4 0 0 0-.084.92c-.015.617-.071 1.23-.112 1.844-.042.598-.018.651.558.842q.422.14.842.286c.069.024.15.038.192.117-.04.057-.098.035-.146.035q-.739.006-1.478.001c-.524-.005-.806-.282-.845-.803-.055-.762-.12-1.524-.182-2.286a1 1 0 0 0-.026-.12c-.079.455-.065.879-.084 1.298-.023.528-.008 1.057-.007 1.584 0 .27.086.388.335.483.359.135.711.295 1.114.262.141-.012.276.062.402.129.032.017.073.033.069.073-.004.043-.049.047-.084.045-.657-.019-1.317.065-1.972-.028-.323-.046-.533-.236-.631-.552-.094-.303-.114-.617-.137-.93-.046-.626-.078-1.253-.116-1.88a.22.22 0 0 0-.061-.171.28.28 0 0 0-.031.193q-.003 1.434-.001 2.866c0 .388.123.575.494.708.481.172.976.298 1.47.423.11.028.225.047.242.192h-1.852q-.077-.016-.155-.03c-.701-.1-1.001-.372-1.143-1.042l-.067-.331-.226-1.103q-.104.181-.144.386c-.083.399-.151.802-.243 1.2-.113.493-.444.763-.932.857l-.33.063H8.558c.057-.171.216-.185.355-.221.476-.127.96-.223 1.417-.409a.6.6 0 0 0 .397-.521c.058-.435.002-.865-.013-1.296a1.5 1.5 0 0 0-.078-.315.4.4 0 0 0-.071.207q-.037.444-.075.886c-.038.432-.273.716-.679.81a1.7 1.7 0 0 1-.37.045q-.836.003-1.673-.005c-.048 0-.109.019-.148-.065.178-.103.377-.168.582-.187a5.7 5.7 0 0 0 .939-.193c.42-.114.522-.249.512-.687-.023-.931-.091-1.86-.069-2.791.004-.184.001-.368.001-.551a2.4 2.4 0 0 0-.05.385 40 40 0 0 1-.186 2.623c-.052.513-.296.748-.804.805-.446.051-.889.002-1.332-.02-.108-.006-.234.012-.339-.064.043-.066.106-.07.16-.087.362-.115.725-.224 1.086-.344.246-.081.35-.235.355-.492a2 2 0 0 0-.003-.232 45 45 0 0 1-.105-2.149 6 6 0 0 0-.035-.478c-.024-.188-.131-.287-.295-.258-.505.092-.99-.006-1.473-.139-.059-.016-.134-.007-.178-.088a1 1 0 0 1 .285-.09q.383-.078.753-.208c.312-.112.564-.347.695-.651.089-.203.056-.317-.112-.398-1.418-.683-2.512-1.73-3.391-3.017a8.2 8.2 0 0 1-1.123-2.447c-.067-.246-.156-.3-.383-.26-.306.053-.401.006-.535-.273v-3.49c.144-.303.205-.341.534-.329.235.01.247-.004.309-.242.396-1.508 1.082-2.861 2.171-3.988C6.9 1.42 8.523.631 10.34.203c.456-.108.922-.15 1.387-.203zm7.974 8.948a7 7 0 0 0-.048-.938 8 8 0 0 0-.099-.65c-.598-2.964-2.344-5.02-5.051-6.268-1.553-.715-3.21-.835-4.878-.511-3.248.633-5.396 2.583-6.539 5.652-.436 1.173-.495 2.406-.37 3.65.087.935.339 1.846.745 2.694.585 1.213 1.444 2.207 2.477 3.058q.516.43 1.121.719c.235.111.247.105.245-.146q.009-.24-.009-.48c-.125-1.02-.142-2.045-.169-3.069a.39.39 0 0 0-.184-.353c-.385-.268-.713-.592-.921-1.019-.474-.97-.372-2.361.813-3.215.136-.097.217-.19.198-.373a1.7 1.7 0 0 1 .031-.442c.177-1.187.748-2.138 1.722-2.84.68-.492 1.442-.772 2.286-.782.483-.007.953.11 1.414.244 1.609.467 2.846 2.07 2.845 3.697a.64.64 0 0 0 .268.565c.463.371.821.83.943 1.426.22 1.077-.083 1.982-.979 2.634-.266.194-.347.406-.333.698q.002.071-.002.142l-.062 1.439c-.025.586-.138 1.165-.117 1.754.008.223.006.226.201.128a7.5 7.5 0 0 0 2.393-1.903c1.32-1.577 2.074-3.372 2.059-5.511M9.117 12.102c1.489.021 2.443-1.578 1.716-2.879a1.94 1.94 0 0 0-1.699-.991c-1.094-.004-1.954.822-1.958 1.881-.005 1.148.813 1.985 1.941 1.989m5.794 0c1.101.002 1.935-.823 1.935-1.917 0-1.091-.846-1.949-1.92-1.947-1.064.003-1.94.866-1.943 1.915-.003 1.105.831 1.948 1.928 1.949m-1.472 1.937c-.208.128-.407.277-.63.384-.536.257-1.063.257-1.579-.048-.158-.094-.308-.201-.464-.298-.047-.028-.092-.103-.15-.062-.044.03-.01.1-.001.151q.055.27.082.544c.027.565.293.992.742 1.31a.98.98 0 0 0 .791.186c.565-.119 1.025-.614 1.124-1.218.043-.266.005-.544.109-.803a.13.13 0 0 0-.024-.146m-8.78-4.92c-.012-1.102.143-2.055.54-2.961.633-1.443 1.642-2.553 2.98-3.374a.38.38 0 0 1 .459.067c.06.06.036.118.01.178a1.1 1.1 0 0 1-.48.51c-1.079.639-1.829 1.571-2.357 2.688a6.3 6.3 0 0 0-.618 2.986c.055 1.309.439 2.516 1.213 3.588.088.104.148.23.173.365.01.08.059.168-.031.228a.31.31 0 0 1-.288.041.5.5 0 0 1-.234-.185c-.72-.979-1.193-2.056-1.331-3.273-.036-.326-.004-.653-.036-.858M8.94 2.34a.373.373 0 0 1 .378-.382c.211.001.409.226.416.473.004.138-.309.39-.476.386-.189-.005-.318-.2-.318-.477m-.465 7.48a.61.61 0 0 1 .586-.631c.38-.003.671.271.675.633.004.356-.27.622-.639.621-.38-.002-.621-.241-.622-.623m6.496.623c-.381-.002-.625-.255-.621-.646a.635.635 0 0 1 .596-.613.656.656 0 0 1 .669.643c.001.354-.275.618-.644.616"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/argos.svg������������������������������������0000664�0000000�0000000�00000004523�14753064456�0024742�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 1.738v20.524h24V1.738zm5.93 5.546c.178 0 .434 0 .638.026.23 0 .307.077.333.281.051.792.23 4.217.256 4.907 0 .18-.103.23-.23.23H6.21c-.179 0-.256-.102-.256-.23 0-.255-.026-.92-.026-.92H3.987c-.204.358-.434.767-.537.946-.076.153-.178.179-.306.179h-.818c-.18 0-.23-.128-.153-.281C3.272 10.428 4.677 8.255 5.29 7.54c.178-.23.383-.23.638-.256zM5.831 8.48a.1.1 0 0 0-.03.032c-.46.562-1.048 1.483-1.38 2.122h1.507S5.88 9.15 5.853 8.51c0 0 0-.043-.021-.032zm14.666.237c.614 0 1.125.28 1.355.664.102.154.076.255-.077.332a3.5 3.5 0 0 1-.434.205c-.128.025-.23.025-.333-.102-.434-.512-1.047-.333-1.073-.051-.026.255.256.357.639.46.588.178 1.252.485 1.048 1.277-.205.818-.997 1.227-1.917 1.227-.588 0-1.253-.178-1.508-.792-.051-.128-.026-.23.077-.28q.23-.155.46-.231c.128-.026.23 0 .306.102.18.256.384.384.716.384.307 0 .639-.129.613-.41-.025-.255-.408-.357-.613-.409-.383-.102-1.176-.28-1.176-.92 0-.792.741-1.38 1.917-1.456m-3.834.076c1.227 0 1.79.818 1.534 1.994-.23 1.176-1.15 1.993-2.377 1.993s-1.789-.817-1.533-1.993c.255-1.176 1.15-1.994 2.376-1.994m-4.421.026c.562 0 .869.332.945.46 0 .025.026.025.026 0 .025-.077.051-.128.051-.153.026-.128.128-.23.307-.23h.51c.154 0 .282.102.231.306a96 96 0 0 1-.741 3.067q-.575 2.223-2.3 2.224c-.46 0-1.227-.128-1.56-.664-.076-.103-.102-.205.077-.333.154-.102.332-.153.486-.205.153-.05.204-.05.357.052a.9.9 0 0 0 .563.179c.409 0 .946-.23 1.201-1.1.026-.05 0-.05-.025-.025-.18.23-.563.383-.997.383-.537-.025-.869-.204-1.074-.536-.23-.358-.204-.997-.025-1.56.28-.894.971-1.865 1.968-1.865m-3.86.026h.614c.127 0 .179.101.153.204s-.051.179-.051.204c0 .026.025.026.025.026.46-.41 1.049-.409 1.688-.409.102 0 .153.102.076.179-.23.23-.358.409-.511.639-.102.153-.18.204-.358.204-.409.026-.613.102-.767.205-.153.102-.307.434-.383.818a48 48 0 0 1-.332 1.61.224.224 0 0 1-.23.179h-.742c-.102 0-.178-.077-.153-.18.128-.715.64-3.117.716-3.475.026-.154.128-.204.256-.204zm8.205.792c-.69 0-.971.562-1.15 1.15-.154.588-.23 1.15.46 1.15s.97-.562 1.15-1.15.23-1.15-.46-1.15m-4.217.025c-.512-.025-.87.384-1.1 1.15-.127.41-.153 1.023.384 1.1.537.025.895-.358 1.099-1.1.128-.485.256-1.124-.383-1.15M2.338 13.958a.3.3 0 0 1 .09.023c3.68 1.508 6.058 2.07 9.406 2.07s5.725-.562 9.43-2.07c.256-.102.41.153.155.306-1.457.92-4.805 2.812-9.585 2.812s-8.153-1.892-9.56-2.812c-.223-.134-.133-.346.064-.329"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ariakit.svg����������������������������������0000664�0000000�0000000�00000001576�14753064456�0025260�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 2H6C3.79 2 2 3.79 2 6v12c0 2.21 1.79 4 4 4h12c2.21 0 4-1.79 4-4V6c0-2.21-1.79-4-4-4m-6 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6m0-6a2.5 2.5 0 0 0 5 0 2.5 2.5 0 0 0-5 0m6-12H6C2.69 0 0 2.69 0 6v12c0 3.31 2.69 6 6 6h12c3.31 0 6-2.69 6-6V6c0-3.31-2.69-6-6-6m5 18c0 2.76-2.24 5-5 5H6c-2.76 0-5-2.24-5-5V6c0-2.76 2.24-5 5-5h12c2.76 0 5 2.24 5 5zM18 2H6C3.79 2 2 3.79 2 6v12c0 2.21 1.79 4 4 4h12c2.21 0 4-1.79 4-4V6c0-2.21-1.79-4-4-4m-6 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6m0-6a2.5 2.5 0 0 0 5 0 2.5 2.5 0 0 0-5 0m2.5-2.5a2.5 2.5 0 0 0 0 5 2.5 2.5 0 0 0 0-5M18 2H6C3.79 2 2 3.79 2 6v12c0 2.21 1.79 4 4 4h12c2.21 0 4-1.79 4-4V6c0-2.21-1.79-4-4-4m-6 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6m0-6a2.5 2.5 0 0 0 5 0 2.5 2.5 0 0 0-5 0m2.5-2.5a2.5 2.5 0 0 0 0 5 2.5 2.5 0 0 0 0-5"/></svg>����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/arkecosystem.svg�����������������������������0000664�0000000�0000000�00000000505�14753064456�0026334�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.8 0A1.8 1.8 0 0 0 0 1.8v20.4c0 .995.805 1.8 1.8 1.8h20.4c.995 0 1.8-.805 1.8-1.8V1.8c0-.995-.805-1.8-1.8-1.8zm10.223 4.39 9.29 15.098-9.29-9.82-9.351 9.82 9.351-15.097zm0 7.583 1.633 1.691h-3.285zM9.31 14.762h5.41l1.496 1.574H7.813l1.496-1.574z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/arlo.svg�������������������������������������0000664�0000000�0000000�00000001731�14753064456�0024562�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.21 11.172 4.963-5.792c.943-1.293 1.494-1.828 1.07-3.94l-7.367 8.6a7.9 7.9 0 0 0-1.896 5.487L9.763 11.87a5.8 5.8 0 0 0-.947-.829A10 10 0 0 0 7 10.051q.32-.114.649-.194c.385-.094.78-.144 1.176-.147.444 0 .881.07 1.3.237.416.168.82.432 1.212.858l.216.252 1.336-1.129c-.01-.011-.241-.283-.251-.292a5.1 5.1 0 0 0-1.86-1.308 5.2 5.2 0 0 0-1.953-.364q-.226.001-.446.017c-1.461.24-2.364 1.104-3.714 1.244.001.006-4.58 0-4.581.002-.101 0-.115.144-.017.163 1.202.24 3.341.699 4.844 1.214 1.142.529 2.24 1.205 3.106 2.022q.256.203.439.405l4.283 4.87c.61.501 1.395.755 3.066.767a6.2 6.2 0 0 1-.695-1.337 6.17 6.17 0 0 1-.014-4.256 6.1 6.1 0 0 1 1.114-1.903M24 22.56c-1.734-.022-2.489-.317-3.11-.888l-.962-1.093q-.097-.119-.197-.234l.011.023-1.704-1.937a4.8 4.8 0 0 1-.905-4.806 4.8 4.8 0 0 1 .871-1.482l4.208-4.892c.43 2.179-.192 2.666-1.21 4.09l-1.668 1.937a3.04 3.04 0 0 0-.739 1.989c.001.741.272 1.458.761 2.014z"/></svg>���������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/arm.svg��������������������������������������0000664�0000000�0000000�00000001744�14753064456�0024410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.419 8.534h1.614v6.911H5.419v-.72c-.71.822-1.573.933-2.07.933C1.218 15.658 0 13.882 0 11.985c0-2.253 1.542-3.633 3.37-3.633.507 0 1.4.132 2.049.984zm-3.765 3.491c0 1.198.751 2.202 1.918 2.202 1.015 0 1.959-.74 1.959-2.181 0-1.512-.934-2.233-1.959-2.233-1.167-.01-1.918.974-1.918 2.212m7.297-3.49h1.613v.618a3 3 0 0 1 .67-.578c.314-.183.619-.233.984-.233.396 0 .822.06 1.269.324l-.66 1.462a1.43 1.43 0 0 0-.822-.244c-.345 0-.69.05-1.005.376-.446.477-.446 1.136-.446 1.593v3.582H8.94zm5.56 0h1.614v.639c.538-.66 1.177-.822 1.705-.822.72 0 1.4.345 1.786 1.015.579-.822 1.441-1.015 2.05-1.015.842 0 1.573.396 1.969 1.086.132.233.365.74.365 1.745v4.272h-1.614V11.65c0-.771-.08-1.086-.152-1.228-.101-.264-.345-.609-.923-.609-.396 0-.741.213-.954.508-.284.395-.315.984-.315 1.572v3.562H18.43V11.65c0-.771-.081-1.086-.152-1.228-.102-.264-.345-.609-.924-.609-.396 0-.74.213-.954.508-.284.395-.314.984-.314 1.572v3.562h-1.573z"/></svg>����������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/armkeil.svg����������������������������������0000664�0000000�0000000�00000002177�14753064456�0025256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.028 10.06h.9v3.863h-.9v-.404c-.288.339-.712.53-1.157.523-1.19 0-1.871-.99-1.871-2.055 0-1.257.863-2.028 1.881-2.028.448-.01.874.195 1.147.55zm-2.11 1.945c0 .67.422 1.23 1.073 1.23.567 0 1.092-.413 1.092-1.221 0-.844-.523-1.248-1.092-1.248-.651 0-1.073.554-1.073 1.239m4.08-1.945h.9v.349q.162-.191.376-.321c.168-.093.358-.138.55-.13.248-.005.492.059.706.185l-.367.816a.8.8 0 0 0-.459-.138c-.192 0-.385.028-.56.211-.246.266-.246.633-.246.89v2h-.9zm3.113 0h.9v.358a1.19 1.19 0 0 1 .954-.46c.411-.006.794.212 1 .568.32-.457.807-.567 1.147-.567.468 0 .88.22 1.102.606.073.128.202.412.202.972v2.386h-.9v-2.129c0-.431-.046-.606-.083-.688a.51.51 0 0 0-.514-.34.66.66 0 0 0-.532.283c-.156.221-.175.551-.175.882v1.992h-.899v-2.129c0-.431-.046-.606-.082-.688a.51.51 0 0 0-.514-.34.66.66 0 0 0-.532.283c-.157.221-.175.551-.175.882v1.992h-.9zm7.317 1.657 1.645-1.656h.579l-1.807 1.8 1.865 2.061h-.59l-1.581-1.772-.11.11v1.662H15V10.06h.429zm4.865-1.252h-1.575v1.147h1.531v.405h-1.531v1.5h1.575v.405h-2.004V10.06h2.004zm1.216-.405v3.862h-.428V10.06zm1.425 0v3.46H24v.405h-1.494V10.06z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/arstechnica.svg������������������������������0000664�0000000�0000000�00000001670�14753064456�0026113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0M8.842 15.656H7.745l-.15-.98a3.46 3.46 0 0 1-2.592 1.13c-1.33 0-2.16-.798-2.16-2.044 0-1.828 1.561-2.56 4.636-2.876v-.315c0-.931-.548-1.247-1.396-1.247s-1.745.283-2.543.632l-.183-1.18c.881-.35 1.712-.615 2.842-.615 1.779 0 2.643.714 2.643 2.36zm3.191-4.337v4.337H10.67v-7.33h1.097L12 9.824c.515-.831 1.363-1.58 2.576-1.646l.216 1.313c-1.23.05-2.26.865-2.759 1.829zm6.2 4.487a6 6 0 0 1-2.676-.698l.2-1.296a4.6 4.6 0 0 0 2.592.847c.93 0 1.496-.349 1.496-.964s-.416-.93-1.745-1.246c-1.729-.432-2.41-.948-2.41-2.26 0-1.314.98-2.028 2.593-2.028a5.9 5.9 0 0 1 2.41.498l-.217 1.297a4.7 4.7 0 0 0-2.227-.632c-.83 0-1.263.316-1.263.848s.366.764 1.53 1.063c1.81.466 2.625.981 2.625 2.377s-1.014 2.194-2.908 2.194M7.479 11.934v1.711c-.615.632-1.479 1.03-2.177 1.03s-1.097-.215-1.097-.98c0-.764.565-1.496 3.274-1.761"/></svg>������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/artifacthub.svg������������������������������0000664�0000000�0000000�00000001021�14753064456�0026111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 24a3.43 3.43 0 0 1-1.78-.5l-7.51-4.292A3.4 3.4 0 0 1 1.07 16.3V7.73c0-1.253.636-2.37 1.76-3.01L10.25.479a3.43 3.43 0 0 1 3.496.001l7.42 4.238a3.4 3.4 0 0 1 1.762 3.01v8.582c0 .967-.443 2.164-1.637 2.898l-7.51 4.292c-.564.344-1.199.5-1.782.5zm-.5-21.347-7.545 4.31c-.2.156-.379.368-.379.767l.001 8.67a.96.96 0 0 0 .373.635l7.56 4.316c.266.172.664.21.985 0l7.518-4.296a.92.92 0 0 0 .41-.654V7.73a.92.92 0 0 0-.377-.766L12.5 2.652a.91.91 0 0 0-1 .001"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/artixlinux.svg�������������������������������0000664�0000000�0000000�00000000263�14753064456�0026033�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0 7.873 8.462l11.358 6.363zM6.626 11.018.295 24l18.788-7.762zm13.846 6.352-5.926 3.402L23.706 24Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/artstation.svg�������������������������������0000664�0000000�0000000�00000000511�14753064456�0026010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m0 17.723 2.027 3.505h.001a2.42 2.42 0 0 0 2.164 1.333h13.457l-2.792-4.838zm24 .025c0-.484-.143-.935-.388-1.314L15.728 2.728a2.42 2.42 0 0 0-2.142-1.289H9.419L21.598 22.54l1.92-3.325c.378-.637.482-.919.482-1.467m-11.129-3.462L7.428 4.858l-5.444 9.428z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/arxiv.svg������������������������������������0000664�0000000�0000000�00000001562�14753064456�0024760�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.842 0a1 1 0 0 0-.922.608c-.153.369-.044.627.294 1.111l6.919 8.36-1.023 1.106a1.04 1.04 0 0 0 .003 1.423l1.23 1.313-5.44 6.444c-.28.3-.453.823-.297 1.199a1.025 1.025 0 0 0 .959.635.91.91 0 0 0 .689-.34l5.783-6.126 7.49 8.005a.85.85 0 0 0 .684.26.96.96 0 0 0 .877-.615c.158-.377-.017-.75-.306-1.14L13.73 13.9l1.064-1.13a.963.963 0 0 0 .009-1.316L4.633.464S4.26.01 3.867 0zm0 .272h.017c.218.005.487.272.564.364l.005.006.005.005 10.17 10.99a.69.69 0 0 1-.008.946l-1.066 1.133-1.498-1.772-8.6-10.39c-.328-.472-.352-.619-.26-.841a.73.73 0 0 1 .671-.44Zm14.341 1.57a.88.88 0 0 0-.655.242l-5.696 6.158 1.694 1.832 5.309-6.514c.325-.433.479-.66.325-1.029a1.12 1.12 0 0 0-.977-.689zm-7.655 12.282 1.318 1.414-5.786 6.13a.65.65 0 0 1-.496.26.75.75 0 0 1-.706-.467c-.112-.269.036-.687.244-.909l.005-.005.005-.006z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/asahilinux.svg�������������������������������0000664�0000000�0000000�00000000565�14753064456�0025776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.835 0-1.72 1.323v.97h2.178zm-1.95.057L9.81 1.095l2.076 4.153zm.23 3.768V6.22l-1.057-2.113L6.43 5.678 12 8.009l5.57-2.331zM6.21 5.835.533 15.957 11.885 24V8.21L6.222 5.84Zm11.58 0-.012.004-5.6 2.345 7.512 10.449 3.777-2.675zm-3.955 7.926v5.422l1.952-2.711zm2.864 3.981-4.411 6.135 5.846-4.14z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/asana.svg������������������������������������0000664�0000000�0000000�00000000405�14753064456�0024705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.78 12.653a5.22 5.22 0 1 0 0 10.44 5.22 5.22 0 0 0 0-10.44m-13.56 0a5.22 5.22 0 1 0 .001 10.439 5.22 5.22 0 0 0-.001-10.439m12-6.525a5.22 5.22 0 1 1-10.44 0 5.22 5.22 0 0 1 10.44 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/asciidoctor.svg������������������������������0000664�0000000�0000000�00000001105�14753064456�0026123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.069 0H5.932A5.934 5.934 0 0 0 0 5.932v12.136A5.935 5.935 0 0 0 5.932 24h12.136A5.934 5.934 0 0 0 24 18.068V5.932A5.934 5.934 0 0 0 18.069 0m-7.361 15.404H8.81l-.005.013L7.2 19.282a.506.506 0 1 1-.934-.388l1.45-3.49H4.868a.506.506 0 1 1 0-1.012h5.84a.506.506 0 1 1 0 1.012zm7.919 4.165a.506.506 0 0 1-.655-.29L12.621 6.232l-2.395 5.76h1.55a.506.506 0 1 1 0 1.012h-5.84a.506.506 0 1 1 0-1.011h3.195l.004-.012 3.022-7.269a.51.51 0 0 1 .457-.311.51.51 0 0 1 .478.314l5.816 14.182a.506.506 0 0 1-.281.673"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/asciinema.svg��������������������������������0000664�0000000�0000000�00000000240�14753064456�0025550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.61 0v24l20.78-12zm4.15 7.2 4.3 2.48-4.3 2.48zm6.79 3.92 1.53.88-8.32 4.8v-1.76z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/asda.svg�������������������������������������0000664�0000000�0000000�00000001470�14753064456�0024535�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.76 8.673h-2.475l-1.412 4.085c.063-.34.074-.61.074-.728 0-1.712-.98-3.357-3.284-3.357h-2.646l.008 4.063c-.229-1.154-1.283-1.463-2.595-1.862-.49-.151-.76-.39-.661-.614.084-.196.384-.257.75-.206.556.08 1 .265 1.428.498l.585-1.449c-.132-.065-1.08-.634-2.267-.634-1.656 0-2.713.808-2.713 2 0 1.063.654 1.68 1.857 2.026 1.294.376 1.622.527 1.583.899-.034.32-.835.711-2.797-.496l-.583 1.206-1.8-5.43H2.338L0 15.423h1.95l.378-1.09h2.287l.389 1.09h2.047l-.232-.66c.692.4 1.55.767 2.577.767 1.573 0 2.423-.86 2.626-1.683v1.577h2.638c1.573 0 2.396-.75 2.825-1.553l-.54 1.553h1.95l.39-1.09h2.322l.343 1.09H24zM2.764 12.81l.727-2.32.689 2.32Zm11.219.873v-3.27h.465c.663 0 1.387.269 1.387 1.635 0 1.21-.64 1.635-1.381 1.635zm5.773-.873.694-2.293.722 2.293z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/aseprite.svg���������������������������������0000664�0000000�0000000�00000000453�14753064456�0025441�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.006 0v1.6h15.988V0zm15.988 1.6v1.6h1.6V1.6zm1.6 1.6v14.4h-1.6v1.6H4.006v-1.6h-1.6V3.2H.809v17.6h1.599v1.6h1.599V24h15.988v-1.6h1.6v-1.6h1.598V3.2zm-19.187 0h1.599V1.6h-1.6zm4.796 3.2v6.4h1.6V6.4zm7.995 0v6.4h1.599V6.4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/assemblyscript.svg���������������������������0000664�0000000�0000000�00000002107�14753064456�0026667�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0h-9.225c0 1.406-1.04 2.813-2.756 2.813A2.766 2.766 0 0 1 9.234 0zm18.204 10.947q1.06 0 1.82.412.775.396 1.33 1.361l-1.726 1.108q-.285-.507-.617-.728a1.42 1.42 0 0 0-.807-.222q-.49 0-.776.27a.9.9 0 0 0-.285.68q0 .506.317.775.333.255 1.045.57l.554.238q.711.3 1.25.633.554.315.918.728a2.6 2.6 0 0 1 .57.918q.206.506.206 1.203a3 3 0 0 1-.285 1.33q-.27.57-.76.965a3.4 3.4 0 0 1-1.171.601q-.665.19-1.456.19a5.3 5.3 0 0 1-1.41-.174 4.6 4.6 0 0 1-1.139-.475 4 4 0 0 1-.886-.712 4.5 4.5 0 0 1-.602-.902L16.1 18.67q.363.585.855.966.505.38 1.33.38.695 0 1.091-.301.412-.316.412-.792 0-.57-.428-.854-.427-.285-1.187-.618l-.554-.237a8 8 0 0 1-1.092-.554 3.6 3.6 0 0 1-.839-.696 2.9 2.9 0 0 1-.538-.903 3.4 3.4 0 0 1-.19-1.187 3 3 0 0 1 .222-1.155 2.9 2.9 0 0 1 .649-.934q.428-.396 1.029-.617.6-.222 1.345-.222zm-8.796.032h.19l4.922 10.858h-2.327l-.506-1.219H7.318l-.506 1.219H4.675zm.063 3.988a22 22 0 0 1-.206.697l-.205.649a7 7 0 0 1-.222.585l-.776 1.868h2.834l-.776-1.868a16 16 0 0 1-.237-.633 24 24 0 0 1-.412-1.298"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/asterisk.svg���������������������������������0000664�0000000�0000000�00000005171�14753064456�0025454�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.925 1.778c-1.587-.006-2.727.158-4.006.576-.43.14-1.12.411-1.53.6s-1.174.63-1.695.977-1.315.953-1.763 1.341A18 18 0 0 0 4.41 6.794c-.39.448-.936 1.16-1.215 1.58s-.522.747-.542.728c-.082-.082.68-1.553 1.211-2.336l.57-.843-.613.595c-.337.327-.937 1.026-1.335 1.552s-.93 1.33-1.178 1.784a14 14 0 0 0-.777 1.77l-.326.941v.187A4.2 4.2 0 0 0 0 14.13c.003.607.06 1.08.205 1.612v.195l.27.793c.147.436.435 1.083.641 1.435s.684.964 1.06 1.363.978.923 1.338 1.162c1.074.713 2.162 1.14 3.53 1.385.435.077 1.344.143 2.019.148s1.695-.06 2.268-.145 1.564-.306 2.203-.49 1.62-.536 2.184-.784l1.025-.449.651.195c.74.224 4.108.988 4.155.942.016-.016-.367-.826-.852-1.8l-.883-1.772.783-.942a24 24 0 0 0 1.339-1.775 18 18 0 0 0 1.025-1.834c.263-.551.569-1.336.682-1.744.113-.41.252-1.136.307-1.618a7 7 0 0 0-.006-1.735c-.059-.473-.212-1.165-.341-1.536s-.43-1.018-.666-1.438c-.541-.96-1.692-2.131-2.525-2.571-.335-.177-.637-.323-.676-.323-.038 0 .156.18.434.4.558.441 1.246 1.27 1.586 1.912l.223.415-.223-.298c-.122-.163-.559-.637-.972-1.05-.574-.573-.953-.85-1.596-1.168a7.9 7.9 0 0 0-1.834-.623c-.733-.153-1.367-.21-2.43-.213zm-.05 1.096c1.086.002 1.555.05 2.16.211a10 10 0 0 1 1.437.52c.47.224.886.536 1.419 1.07.578.578.847.948 1.165 1.595.228.463.48 1.155.56 1.537s.145 1.035.146 1.453c.003 1.314-.363 2.794-1.04 4.198-.185.381-.526.984-.76 1.338s-.772 1.005-1.196 1.447-.768.832-.768.864.357.604.793 1.27.793 1.25.793 1.296c0 .044-.023.08-.052.08s-.693-.245-1.472-.545-1.531-.546-1.67-.546-.49.107-.784.236c-.967.427-2.771.96-3.742 1.106-.526.08-1.311.14-1.748.133-1.574-.023-2.758-.295-4.114-.948-.794-.382-1.075-.587-1.794-1.307-.65-.652-.94-1.032-1.214-1.599a9 9 0 0 1-.511-1.335c-.213-.838-.193-2.233.046-3.185.108-.431.422-1.24.697-1.797s.764-1.364 1.088-1.794.99-1.163 1.48-1.63A13.8 13.8 0 0 1 9.026 4.26c.974-.486 2.268-.926 3.451-1.174.76-.16 1.355-.212 2.398-.21M10.703 5.28l.041 1.899c.035 1.633.02 1.891-.103 1.843-.08-.03-.805-.485-1.61-1.011s-1.48-.943-1.495-.927C7.454 7.17 6.2 9.303 6.2 9.357c0 .034.736.48 1.635.991s1.636.951 1.636.978-.736.468-1.636.978-1.635.957-1.635.992c0 .053 1.255 2.187 1.337 2.274.016.017.753-.42 1.638-.97l1.61-1-.041 1.887-.04 1.887h2.762l-.071-1.894c-.059-1.558-.048-1.88.06-1.814.072.044.732.453 1.466.91s1.412.872 1.506.923c.145.077.279-.087.869-1.071.49-.82.661-1.184.575-1.233l-1.695-.959-1.574-.89.236-.147c.13-.082.882-.516 1.672-.966s1.448-.824 1.46-.833c.011-.01-.293-.54-.676-1.178-.455-.759-.738-1.138-.815-1.093-.064.039-.496.314-.96.612l-1.518.976-.675.435.07-1.937.07-1.936h-1.381zM2.58 9.244h.003a.05.05 0 0 1 0 .1.05.05 0 0 1-.05-.05.05.05 0 0 1 .047-.05z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/astonmartin.svg������������������������������0000664�0000000�0000000�00000012206�14753064456�0026163�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.383 9.258c-.158 0-.282.068-.338.182-.068.114-.057.262.022.387l.17.296c.09.16.214.182.304.205.08.012.136.023.192.137l.158.273c.125.228.26.25.362.273.079.012.158.023.259.205s.249.456.621.569c.034.012 3.601 1.059 3.613 1.059.373.126.474.262.587.433.068.102.26.376.711.501l3.432.933a.7.7 0 0 0 .711-.182l.621-.592c.091-.08.136-.114.192-.114.057 0 .102.034.192.114l.621.592c.113.091.339.273.712.182l3.431-.933c.463-.125.644-.399.711-.501.113-.171.215-.319.587-.433 0 0 3.568-1.047 3.613-1.059.361-.113.52-.387.621-.569.102-.182.169-.193.248-.205.102-.023.249-.045.373-.273l.158-.273c.068-.114.113-.125.192-.137.09-.023.214-.046.305-.205l.169-.296c.079-.136.091-.273.023-.387a.39.39 0 0 0-.339-.182h-9.675c-.158 0-.406 0-.666.262a1 1 0 0 0-.169.239c-.079.148-.136.25-.407.25h-1.411c-.26 0-.327-.102-.406-.25a1 1 0 0 0-.17-.239c-.259-.262-.508-.262-.666-.262zm.001.239h9.675c.146 0 .316 0 .497.193.112.114.146.24.248.365H.812c-.293 0-.327 0-.417-.137l-.124-.216c-.034-.057-.045-.114-.023-.148.023-.034.068-.057.136-.057m13.569 0h9.675c.068 0 .113.023.136.057a.19.19 0 0 1-.023.148l-.124.216c-.09.137-.124.137-.418.137h-9.991c.102-.125.136-.251.248-.365.192-.193.351-.193.497-.193m-7.304.74h10.702v1.708H6.649zm10.894.023h5.566c-.023.034-.034.057-.056.08 0 0-.09.148-.124.227-.136.217-.204.216-.587.182l-4.799-.284zm-16.641.011h5.566v.205l-4.798.285c-.383.022-.451.034-.587-.182l-.124-.228c-.023-.034-.045-.057-.057-.08m7.354.311a.34.34 0 0 0-.219.077.29.29 0 0 0-.09.204c0 .126.067.217.203.285.147.068.214.091.248.137a.115.115 0 0 1-.011.171.25.25 0 0 1-.135.034.45.45 0 0 1-.294-.125l.011.182q.129.065.271.079a.44.44 0 0 0 .26-.079c.124-.091.124-.285.045-.376-.056-.08-.147-.114-.316-.205-.079-.045-.113-.08-.113-.137 0-.113.147-.147.282-.102a.4.4 0 0 1 .124.068l-.011-.171-.113-.034c-.011 0-.07-.011-.142-.008m.368.008-.011.148c.124-.012.214-.023.293-.023v.865h.192v-.865c.046 0 .136 0 .294.023l-.011-.148zm1.264 0c-.293 0-.496.205-.496.512 0 .296.203.513.496.513.294 0 .497-.217.497-.513 0-.307-.203-.512-.497-.512m4.957 0-.012.148c.124-.012.215-.023.294-.023v.877-.012h.192v-.865c.045 0 .135 0 .293.023l-.011-.148zm-.508.011c-.102 0-.17 0-.226.011v.991h.192v-.421h.067l.305.421h.226l-.35-.444a.3.3 0 0 0 .158-.103.34.34 0 0 0 .057-.17c0-.148-.113-.217-.204-.251a.6.6 0 0 0-.225-.034m-6.932 0-.418.991h.169l.102-.251h.373l.09.251h.215l-.418-.991zm3.138 0v.991h.136v-.672l.587.672h.102v-.991h-.136v.672l-.587-.672zm1.468 0-.111.979h.156l.057-.603.282.569h.09l.271-.569.056.615h.204l-.113-.991h-.102l-.338.695-.35-.695zm-.111.979h-.002v.012zm1.601-.979-.417.991h.169l.101-.251h.373l.09.251h.215l-.418-.991zm2.235 0v.991h.192v-.991zm.384 0v.991h.136v-.672l.587.672h.102v-.991h-.136v.672l-.587-.672zm-9.652.091v.251l-3.985.455c-.429.046-.519.057-.654-.137a2 2 0 0 1-.102-.159c-.023-.046-.045-.091-.079-.125.09-.012.192-.012.226-.012zm11.064 0 4.595.273c.034 0 .124.012.226.012-.023.034-.057.08-.079.125a2 2 0 0 1-.102.159c-.135.194-.226.183-.655.137l-3.985-.455zm-7.644 0c.068 0 .114.011.159.046.135.114.135.33.135.352 0 .274-.136.399-.294.399-.146 0-.282-.125-.293-.398 0-.205.09-.399.293-.399m4.415.023h.067c.113 0 .204.046.204.171 0 .08-.046.171-.204.171-.022 0-.056-.012-.078-.012h.011zm-6.887.136.147.376h-.282zm6.096.001.147.375h-.282zm4.043.318 4.03.455-.824.24c-.226.056-.429.034-.745-.023l-2.461-.41zm-11.087 0v.262l-2.461.41c-.327.057-.531.08-.745.023l-.824-.239zm0 .478v.331l-.925.238c-.283.069-.452.103-.587.103-.192 0-.305-.045-.994-.25zm11.064 0 2.506.422c-.688.205-.801.25-.993.25-.135 0-.305-.023-.587-.102l-.926-.24zm-9.449.479h.768c-.463.341-1.163.853-1.468 1.07a.85.85 0 0 1-.486.182c-.18 0-.259-.08-.361-.239-.056-.068-.113-.148-.18-.217.045-.011.09-.011.135-.034.271-.079.666-.284 1.592-.762m1.14 0h.643a67 67 0 0 1-1.309 1.389c-.113.113-.271.273-.508.273-.09 0-.079 0-.903-.228.158-.045.293-.137.361-.182.373-.251 1.31-.945 1.716-1.252m.937 0h.587c-.327.557-.768 1.297-.959 1.605-.091.148-.249.376-.542.376-.113.011-.125-.001-.836-.194.147-.08.248-.182.294-.239a75 75 0 0 0 1.456-1.548m.836 0h.53a80 80 0 0 1-.621 1.912c-.067.182-.158.41-.418.41-.09.011-.067.012-.88-.216.203-.125.327-.319.361-.387.226-.353.745-1.23 1.028-1.719m3.149 0h.644a58 58 0 0 0 1.716 1.252c.068.045.203.125.361.182-.834.228-.813.228-.903.228-.226 0-.395-.16-.508-.273a66 66 0 0 1-1.31-1.389m2.258 0h.836l1.174.296c.079.022.158.034.225.056-.666.205-.767.228-.88.228-.214 0-.497-.148-1.355-.58m-9.63.011h.836c-.858.432-1.141.581-1.355.581-.124-.012-.226-.035-.88-.228.067-.011.146-.034.225-.057zm4.99 0h.486c.124.398.564 1.787.643 1.992a.9.9 0 0 0 .136.274c-.012-.012-.034-.023-.046-.035l-.62-.592c-.102-.091-.204-.182-.35-.182-.147 0-.26.091-.351.182l-.62.592c-.023.012-.045.023-.057.035.045-.057.079-.137.136-.274.079-.205.519-1.605.643-1.992m.711 0h.531q.504.866 1.027 1.719c.046.069.158.262.362.387-.813.216-.791.216-.881.216-.259 0-.35-.227-.418-.409-.079-.205-.496-1.549-.621-1.913m.791 0h.587c.372.399 1.151 1.229 1.456 1.548.045.046.147.148.294.239-.723.182-.723.194-.836.194-.293 0-.451-.228-.542-.376a96 96 0 0 1-.959-1.605m1.896 0h.768c.937.467 1.332.683 1.592.763l.135.034c-.079.057-.124.136-.18.216-.102.16-.181.239-.361.239-.17 0-.339-.079-.486-.182a76 76 0 0 1-1.468-1.07"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/astra.svg������������������������������������0000664�0000000�0000000�00000000603�14753064456�0024734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m-.145 5.323 1.452 2.903c-1.646 3.32-3.29 6.648-4.936 9.968H5.758C7.79 13.907 9.823 9.61 11.855 5.323m2.71 5.322c1.229 2.516 2.448 5.032 3.677 7.548h-2.806c-.32-.745-.649-1.48-.968-2.225H12l.048-.097c.842-1.742 1.675-3.484 2.517-5.226"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/astral.svg�����������������������������������0000664�0000000�0000000�00000000521�14753064456�0025107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.44 0C.642 0 0 .642 0 1.44v21.12C0 23.358.642 24 1.44 24h21.12c.798 0 1.44-.642 1.44-1.44V1.44C24 .642 23.358 0 22.56 0Zm4.8 4.8h11.52c.795 0 1.44.645 1.44 1.44V19.2h-6.624v-4.32h-1.152v4.32H4.8V6.24c0-.795.645-1.44 1.44-1.44m4.032 5.472v1.152h3.456v-1.152z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/astro.svg������������������������������������0000664�0000000�0000000�00000001320�14753064456�0024747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.358 20.162c-1.186-1.07-1.532-3.316-1.038-4.944.856 1.026 2.043 1.352 3.272 1.535 1.897.283 3.76.177 5.522-.678.202-.098.388-.229.608-.36.166.473.209.95.151 1.437-.14 1.185-.738 2.1-1.688 2.794-.38.277-.782.525-1.175.787-1.205.804-1.531 1.747-1.078 3.119l.044.148a3.16 3.16 0 0 1-1.407-1.188 3.3 3.3 0 0 1-.544-1.815c-.004-.32-.004-.642-.048-.958-.106-.769-.472-1.113-1.161-1.133-.707-.02-1.267.411-1.415 1.09-.012.053-.028.104-.045.165zm-5.961-4.445s3.24-1.575 6.49-1.575l2.451-7.565c.092-.366.36-.614.662-.614s.57.248.662.614l2.45 7.565c3.85 0 6.491 1.575 6.491 1.575L16.088.727C15.93.285 15.663 0 15.303 0H8.697c-.36 0-.615.285-.784.727z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/asus.svg�������������������������������������0000664�0000000�0000000�00000001561�14753064456�0024601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.904 10.788V9.522h-4.656c-.972 0-1.41.6-1.482 1.182v.018-1.2h-1.368v1.266h1.362zm-6.144.456-1.368-.078v1.458c0 .456-.228.594-1.02.594H14.28c-.654 0-.93-.186-.93-.594v-1.596l-1.386-.102v1.812h-.03c-.078-.528-.276-1.14-1.596-1.23L6 11.22c0 .666.474 1.062 1.218 1.14l3.024.306c.24.018.414.09.414.288 0 .216-.18.24-.456.24H5.946V11.22l-1.386-.09v3.348h5.646c1.26 0 1.662-.654 1.722-1.2h.03c.156.864.912 1.2 2.19 1.2h1.41c1.494 0 2.202-.456 2.202-1.524zm4.398.258-4.338-.258c0 .666.438 1.11 1.182 1.17l3.09.24c.24.018.384.078.384.276 0 .186-.168.258-.516.258h-4.212v1.29h4.302c1.356 0 1.95-.474 1.95-1.554 0-.972-.534-1.338-1.842-1.422m-10.194-1.98h1.386v1.266h-1.386zM3.798 11.07l-1.506-.15L0 14.478h1.686zm7.914-1.548h-4.23c-.984 0-1.416.612-1.518 1.2v-1.2H3.618c-.33 0-.486.102-.642.33l-.648.936h9.384Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/atandt.svg�����������������������������������0000664�0000000�0000000�00000002560�14753064456�0025101�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.584 21.438a12.08 12.08 0 0 0 7.349 2.495 12 12 0 0 0 7.887-2.967c-.944.607-3.64 2.023-7.887 2.023-3.708 0-6.068-.81-7.349-1.55m8.158.606c2.966 0 6.202-.809 8.09-2.427.539-.405 1.01-1.011 1.483-1.753.27-.472.539-1.011.741-1.483-1.82 2.63-7.011 4.315-12.404 4.315-3.776 0-7.888-1.214-9.506-3.573 1.483 3.236 6 4.92 11.596 4.92m-3.236-5.257C3.37 16.787.472 13.955 0 12c0 .674.067 1.483.202 2.09.068.27.27.674.607 1.079 1.483 1.55 5.191 3.707 11.595 3.707 8.697 0 10.72-2.898 11.124-3.842.27-.674.472-1.888.472-2.967v-.674c-.607 2.292-8.022 5.394-14.494 5.394m-8.427-9.91C.742 7.55.337 8.763.202 9.37c-.067.27 0 .404.068.607.741 1.55 4.45 4.044 13.078 4.044 5.259 0 9.371-1.28 10.045-3.64.135-.404.135-.876 0-1.483-.202-.674-.472-1.483-.809-2.09.068 3.101-8.562 5.124-12.944 5.124-4.719 0-8.696-1.888-8.696-4.248.067-.337.135-.606.135-.809M19.82 3.034c.068.067.068.135.068.27 0 1.348-4.045 3.64-10.517 3.64-4.787 0-5.663-1.753-5.663-2.9 0-.404.135-.808.472-1.213-.607.607-1.146 1.147-1.686 1.82-.202.27-.337.54-.337.675 0 2.36 5.865 3.977 11.259 3.977 5.797 0 8.427-1.887 8.427-3.573 0-.606-.203-.943-.81-1.618a17 17 0 0 0-1.213-1.078m-1.753-1.281A11.8 11.8 0 0 0 11.933.067C9.64.067 7.55.674 5.73 1.82c-.539.27-.876.54-.876.877 0 1.01 2.36 2.09 6.54 2.09 4.112 0 7.348-1.214 7.348-2.36.067-.202-.203-.405-.675-.674"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/atari.svg������������������������������������0000664�0000000�0000000�00000000733�14753064456�0024726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 21.653s3.154-.355 5.612-2.384c2.339-1.93 3.185-3.592 3.77-5.476.584-1.885.671-6.419.671-7.764V2.346H8.598v1.365c-.024 2.041-.2 5.918-1.135 8.444C5.203 18.242 0 18.775 0 18.775zm24 0s-3.154-.355-5.61-2.384c-2.342-1.93-3.187-3.592-3.772-5.476-.583-1.885-.671-6.419-.671-7.764V2.346H15.4l.001 1.365c.024 2.041.202 5.918 1.138 8.444 2.258 6.087 7.46 6.62 7.46 6.62zM10.659 2.348h2.685v19.306H10.66Z"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/atlasos.svg����������������������������������0000664�0000000�0000000�00000000224�14753064456�0025267�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 1.608 12 20.785H0l2.537-4.394h13.852L12 10.396l-1.844 3.193H5.082z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/atlassian.svg��������������������������������0000664�0000000�0000000�00000000531�14753064456�0025601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.12 11.084a.683.683 0 0 0-1.16.126L.075 22.974a.703.703 0 0 0 .63 1.018h8.19a.68.68 0 0 0 .63-.39c1.767-3.65.696-9.203-2.406-12.52zM11.434.386a15.52 15.52 0 0 0-.906 15.317l3.95 7.9a.7.7 0 0 0 .628.388h8.19a.703.703 0 0 0 .63-1.017L12.63.38a.664.664 0 0 0-1.196.006"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/auchan.svg�����������������������������������0000664�0000000�0000000�00000002523�14753064456�0025064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.467 18.753 1.652 4.636h1.218l-1.744-4.859a8 8 0 0 1-1.126.222M0 23.39h5.506l1.782-5.611H1.916A107 107 0 0 0 0 23.388m7.255-12.634L10.434 8.1c.52-1.409 1.064-2.82 1.63-4.022.281.641.549 1.282.83 1.964 1.226-1.007 2.032-1.555 2.073-1.582l.016-.011a5.7 5.7 0 0 1 1.632-.707 113 113 0 0 0-1.482-3.13H8.964c-.514.99-2.432 4.951-4.676 10.398h2.27c.369 0 .554-.136.697-.256m12.907 4.408a7.45 7.45 0 0 1-3.473 2.966l1.87 5.26H24c-1.087-3.3-2.254-6.278-3.348-9.068-.153.303-.316.56-.49.841m-1.613-8.866c.157 0 .303.036.436.1-.027-.004-.054-.01-.081-.01a.584.584 0 0 0-.585.582.58.58 0 0 0 .585.58.58.58 0 0 0 .582-.58q0-.03-.004-.054a1 1 0 0 1 .077.384c0 .553-.452 1.003-1.01 1.003a1.01 1.01 0 0 1-1.01-1.003c0-.556.453-1.002 1.01-1.002zm-5.64 11.317c1.33 0 4.504-.337 6.221-3.096 1.72-2.76 2.32-7.138 2.32-7.138l1.882-.892c.118-.06.087-.263-.057-.263h-2.029c-.318-.495-1.42-1.55-3.042-1.55-.963 0-1.806.272-2.562.764 0 0-1.101.75-2.703 2.128l-4.904 4.08c-.378.316-.84.52-1.48.52H.386c-.174 0-.115.147-.087.231.435 1.326 1.596 2.509 3.623 2.509l-1.448 1.491c-.057.057-.057.226.087.226h5.505c3.978 0 6.424-1.741 8.032-4.154.138-.207.267-.427.39-.64.06.029.067.087.038.143-.406.98-1.42 2.965-3.273 4.146-.64.373-.842.489-1.74.833-.062.027-.087.125-.058.21l2.228 6.229h1.216l-2.042-5.777h.055z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/audacity.svg���������������������������������0000664�0000000�0000000�00000002132�14753064456�0025424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2.145c-2.487 0-4.755.776-6.428 2.08-1.673 1.303-2.76 3.169-2.76 5.244v.75C1.153 11.06 0 13.268 0 15.856c0 3.312 1.884 6 4.312 6V9.468c0-1.554.805-2.984 2.186-4.06C7.879 4.331 9.829 3.643 12 3.643s4.12.688 5.502 1.764c1.38 1.077 2.186 2.507 2.186 4.06v12.387c2.428 0 4.312-2.687 4.312-6 0-2.587-1.152-4.795-2.813-5.636v-.75c0-2.075-1.086-3.94-2.76-5.244-1.672-1.304-3.94-2.08-6.427-2.08zm0 6.153-1.125 8.683L9.75 9.105l-.562 6.75-.376-.75-.375-4.5-.187 4.5-.563 1.313-.374-4.5-.376 3.562-.562-.937v2.625l-.563-2.11v-4.64a1.43 1.43 0 0 0-.937-.375v11.812c.375 0 .75-.187.937-.562v-3.375l.188.187.563 1.875.187-2.25.563 2.813v-3.562l.374.937.563 2.625v-3.562l.375.374.563 3.188.562-4.313 1.24 4.86.072-2.985.375-1.124.376 4.687 1.124-4.687.375 3.937.938-4.125.938 4.5.187-3.375.562-1.125.188 4.313.938-4.125.562 1.875.188-1.688.374.75v3.375c.188.375.563.562.938.562V10.043c-.375 0-.75.188-.938.375v4.813l-.374 1-.188-3.188-.375 2.437-.375-.75-.188-2.625-.937 3.563-.188-.75L15 9.293l-.562 4.875-.376 1.5-.75-5.062-.75 4.312-.375 1.125Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/audi.svg�������������������������������������0000664�0000000�0000000�00000002544�14753064456�0024552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.848 7.848c-.992 0-1.902.348-2.616.928a4.13 4.13 0 0 0-2.616-.928c-.992 0-1.902.348-2.616.928a4.13 4.13 0 0 0-2.616-.928c-.992 0-1.902.348-2.616.928a4.152 4.152 0 1 0 0 6.448c.714.58 1.624.928 2.616.928s1.902-.348 2.616-.928c.714.58 1.624.928 2.616.928s1.902-.348 2.616-.928a4.152 4.152 0 1 0 2.616-7.376m-2.616 6.018A3.2 3.2 0 0 1 16.634 12c0-.696.222-1.34.598-1.866.376.526.598 1.17.598 1.866s-.222 1.34-.598 1.866m-5.232 0A3.2 3.2 0 0 1 11.402 12c0-.696.222-1.34.598-1.866.376.526.598 1.17.598 1.866s-.222 1.34-.598 1.866m-5.232 0A3.2 3.2 0 0 1 6.17 12c0-.696.222-1.34.598-1.866.376.526.598 1.17.598 1.866s-.222 1.34-.598 1.866M.938 12a3.214 3.214 0 0 1 5.17-2.549A4.13 4.13 0 0 0 5.232 12c0 .961.328 1.846.876 2.549A3.214 3.214 0 0 1 .938 12m6.49 2.549A4.13 4.13 0 0 0 8.304 12c0-.961-.328-1.846-.876-2.549a3.2 3.2 0 0 1 1.956-.665c.736 0 1.414.248 1.956.665A4.13 4.13 0 0 0 10.464 12c0 .961.328 1.846.876 2.549a3.2 3.2 0 0 1-1.956.665 3.2 3.2 0 0 1-1.956-.665m5.232 0A4.13 4.13 0 0 0 13.536 12c0-.961-.328-1.846-.876-2.55.542-.416 1.22-.665 1.956-.665s1.414.248 1.956.665a4.13 4.13 0 0 0-.876 2.549c0 .961.328 1.846.876 2.549a3.2 3.2 0 0 1-1.956.665 3.2 3.2 0 0 1-1.956-.664m7.188.665a3.2 3.2 0 0 1-1.956-.665A4.14 4.14 0 0 0 18.768 12c0-.961-.328-1.846-.876-2.549a3.214 3.214 0 1 1 1.956 5.763"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/audible.svg����������������������������������0000664�0000000�0000000�00000001126�14753064456�0025230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.008 17.362 24 9.885v2.028l-11.992 7.509L0 11.912V9.886l12.008 7.477zm0-9.378c-2.709 0-5.085 1.363-6.448 3.47.111-.111.175-.175.286-.254 3.374-2.804 8.237-2.17 10.883 1.362l1.758-1.124c-1.394-2.044-3.786-3.454-6.48-3.454m0 3.47a4.4 4.4 0 0 0-3.548 1.821 3.6 3.6 0 0 1 2.139-.697c1.299 0 2.455.666 3.232 1.79l1.679-1.045c-.729-1.157-2.028-1.87-3.501-1.87M3.897 8.412c4.943-3.897 11.929-2.836 15.652 2.344l.031.032 1.822-1.125a11.21 11.21 0 0 0-9.394-5.085c-3.897 0-7.366 1.996-9.394 5.085.364-.412.824-.903 1.283-1.251"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/audiobookshelf.svg���������������������������0000664�0000000�0000000�00000002354�14753064456�0026625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m-.023.402A11.6 11.6 0 0 1 23.575 12a11.6 11.6 0 0 1-11.598 11.598A11.6 11.6 0 0 1 .378 12 11.6 11.6 0 0 1 11.977.402m0 1.776a7.093 7.093 0 0 0-7.092 7.093v1.536a6 6 0 0 0-.439.33.35.35 0 0 0-.126.27v1.84a.36.36 0 0 0 .126.272c.22.182.722.564 1.504.956v.179c0 .483.31.873.694.873s.694-.392.694-.873v-4.415c0-.483-.31-.873-.694-.873-.369 0-.67.359-.694.812h-.002v-.91a6.027 6.027 0 1 1 12.054.003v.91c-.025-.454-.326-.813-.695-.813-.384 0-.694.391-.694.873v4.415c0 .483.31.873.694.873s.695-.392.695-.873v-.179a8 8 0 0 0 1.503-.956.35.35 0 0 0 .126-.272v-1.843a.34.34 0 0 0-.124-.27 6 6 0 0 0-.438-.329V9.271a7.093 7.093 0 0 0-7.092-7.093m-3.34 5.548a.84.84 0 0 0-.84.84v9.405c0 .464.376.84.84.84h.866a.84.84 0 0 0 .84-.84V8.566a.84.84 0 0 0-.84-.84Zm2.905 0a.84.84 0 0 0-.84.84v9.405c0 .464.377.84.84.84h.867a.84.84 0 0 0 .84-.84V8.566a.84.84 0 0 0-.84-.84zm2.908 0a.84.84 0 0 0-.84.84v9.405c0 .464.376.84.84.84h.867a.84.84 0 0 0 .84-.84V8.566a.84.84 0 0 0-.84-.84zM8.112 9.983h1.915v.2H8.112Zm2.906 0h1.915v.2h-1.915Zm2.908 0h1.915v.2h-1.915zm-7.58 9.119a.633.633 0 0 0 0 1.265h11.26a.632.632 0 0 0 0-1.265z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/audioboom.svg��������������������������������0000664�0000000�0000000�00000001413�14753064456�0025600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 24C5.373 24 0 18.627 0 12S5.373 0 12 0s12 5.373 12 12-5.373 12-12 12M7.425 3.214c-.621 0-1.125.503-1.125 1.124v6a1.124 1.124 0 0 0 2.25 0v-6c0-.62-.504-1.124-1.125-1.124m0 9.314c-.621 0-1.125.503-1.125 1.125v6a1.124 1.124 0 0 0 2.25 0v-6c0-.622-.504-1.125-1.125-1.125m4.152-6.856c-.621 0-1.125.504-1.125 1.125v10.388a1.124 1.124 0 0 0 2.25 0V6.797c0-.621-.504-1.125-1.125-1.125m4.151 6.856c-.62 0-1.124.503-1.124 1.125v1.056a1.124 1.124 0 1 0 2.249 0v-1.056c0-.622-.504-1.125-1.125-1.125m0-4.37c-.62 0-1.124.503-1.124 1.124v1.056a1.124 1.124 0 0 0 2.249 0V9.282c0-.62-.504-1.124-1.125-1.124m4.152 2.422c-.62 0-1.124.503-1.124 1.124v.574a1.124 1.124 0 1 0 2.249 0v-.574c0-.62-.504-1.124-1.125-1.124"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/audiomack.svg��������������������������������0000664�0000000�0000000�00000003163�14753064456�0025563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.331 11.378s.542-.089.765.144.077.716-.22.724c-.296.01-.57.063-.764-.144a.444.444 0 0 1 .219-.724m5.881 3.293c-.052.01-.107-.018-.164-.06-.388-.54-.529-2.392-.707-2.502-.185-.114-.854 1.026-2.186.903-.557-.051-1.124-.412-1.457-.662.03-.42.036-1.403.865-1.083.504.194 1.367.726 2.125-.23.838-1.058 1.3-.75 1.577-.52s.092 1.425.506 1.09c.413-.334 2.082-2.41 2.082-2.41s1.292-1.303 1.49.067 1.04 2.888 1.263 2.845 2.822-5.325 3.195-5.666 1.625-.296 1.565.578-.187 6.308-.187 6.308-.147 1.531.093.713c.099-.34.206-.645.339-1.003a989 989 0 0 0 2.278-7.368l.317-1.09a4 4 0 0 1 .097-.33c.046-.154.076-.255.086-.282.024-.068.092-.12.188-.157.097-.061.2-.064.317-.067.302-.027.69.012 1.04.112.102 0 .212.037.317.112s.006 0 .015.01c.003 0 .005 0 .008.01a.5.5 0 0 1 .098.095c.001 0 .002 0 .004.01a1 1 0 0 1 .051.073c.196.286.315.814.195 1.75-.3 2.335-.531 7.14-.531 7.14s-.047.229.435-.783q.027-.051.058-.098a.4.4 0 0 0 .091-.085c.298-.354 1.097-.563 1.651-.558.234.028.43.087.547.16.218.333.09 1.562.09 1.562-.462.043-1.341.291-1.653.337-.311.046-.785 2.07-1.443 1.863s-2.125-1.127-2.125-1.253a98 98 0 0 1 .152-1.87v-.014c.022-.273.003-.392-.123-.12-.109.235-.581 1.736-1.108 3.371-.056.143-1.051 3.156-1.182 3.523-.156.427-.287.753-.377.921-.138.187-.324.304-.583.226-.646-.196-1.465-1.09-1.473-1.31-.015-1.251.06-7.974-.242-7.414-.311.575-2.73 4.561-2.73 4.561-.04.01-.07.01-.106.01-.172-.019-.437-.074-.51-.238q-.007-.014-.013-.028l-.014-.04c-.033-.11-.046-.23-.075-.327a41 41 0 0 0-.463-1.42c-.279-.909-.566-1.837-.613-1.94-.092-.2-.227-.116-.347 0-.54.458-1.687 2.48-2.723 2.59"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/audiotechnica.svg����������������������������0000664�0000000�0000000�00000000733�14753064456�0026426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A11.99 11.99 0 0 0 .015 11.985 12.02 12.02 0 0 0 12 24a12.02 12.02 0 0 0 11.985-12.015A11.99 11.99 0 0 0 12.004 0zm0 .903a11.08 11.08 0 0 1 11.085 11.078c0 6.123-4.958 11.112-11.085 11.112A11.104 11.104 0 0 1 .922 11.985 11.08 11.08 0 0 1 11.996.907zm.087 1.16-.43 1.252-5.674 16.063-.204.604h12.654l-.23-.604L12.524 3.31zm0 2.797 2.007 5.643-3.024 8.553H7.056zm2.502 7.038 2.532 7.155h-5.09z"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/aurelia.svg����������������������������������0000664�0000000�0000000�00000001727�14753064456�0025254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.716 4.636 13.49 6.122l-2.295-3.439 2.228-1.486zm1.811 10.331 3.806 5.703-4.533 3.025-3.806-5.703-.664-.995 4.533-3.025zm-5.71 3.81.838 1.256-3.45 2.303-1.503-2.25.754-.504 2.697-1.8zm7.596-6.507.968-.645 1.501 2.25-2.227 1.487-.838-1.256 1.26-.84zm-.596 1.836-.664-.995 1.26-.84.664.994zM3.792 12.593l-.753.503L.744 9.657l3.45-2.302 1.61 2.41-2.698 1.8 2.697-1.8.686 1.029zm7.721-6.639.687 1.029-4.534 3.025L6.98 8.98 3.21 3.33 7.742.305zm3.236-.672-1.26.84-.686-1.028-1.609-2.41 2.228-1.487 2.295 3.439zM9.12 20.577l-.664-.995 2.697-1.8.664.995zm9.697-6.471-.664-.995 1.26-.84.664.994zM3.792 12.593l-.686-1.028 2.697-1.8.686 1.029zm9.697-6.471-.686-1.028 1.26-.84.686 1.028zm4.038 8.845-4.533 3.025-.664-.995 4.533-3.025zm-6.014-9.013.687 1.029-4.534 3.025L6.98 8.98zm-9.006-.822.855 1.283-1.282.855-.856-1.282zm4.62 15.373.856 1.283-1.282.855-.856-1.282zm-3.373 1.292L0 16.125 20.063 2.706 24 8.287z"/></svg>�����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/auth0.svg������������������������������������0000664�0000000�0000000�00000000476�14753064456�0024653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.98 7.448 19.62 0H4.347L2.02 7.448c-1.352 4.312.03 9.206 3.815 12.015L12.007 24l6.157-4.552c3.755-2.81 5.182-7.688 3.815-12.015l-6.16 4.58 2.343 7.45-6.157-4.597-6.158 4.58 2.358-7.433-6.188-4.55 7.63-.045L12.008 0l2.356 7.404 7.615.044z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/authelia.svg���������������������������������0000664�0000000�0000000�00000004441�14753064456�0025422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.624.191c-.324.023-.655.011-.97.073-2.883.568-5.244 2.01-7.074 4.3C1.42 6.014.624 7.652.243 9.48c-.25 1.2-.294 2.402-.191 3.627.237 2.832 1.377 5.233 3.345 7.26.332.341.775.348 1.1.055.39-.35.442-.735.124-1.149-.271-.353-.588-.671-.85-1.03-1.625-2.208-2.343-4.674-2.04-7.411.305-2.773 1.6-5.022 3.723-6.795 1.517-1.267 3.288-1.983 5.248-2.24.272-.037.552-.083.803-.186.32-.132.478-.564.4-.923-.085-.384-.355-.483-.702-.477-.194.004-.387 0-.58 0v-.02zm4.639 3.41c-.312-.008-.582.197-.722.512-.176.4-.027.854.367 1.096.123.075.256.134.385.199 1.485.737 2.619 1.834 3.319 3.342.257.554.423 1.15.636 1.726.162.441.509.656.92.579.425-.08.67-.392.668-.952-.016-.081-.035-.261-.082-.435-.535-1.97-1.579-3.616-3.21-4.847-.598-.453-1.28-.812-1.958-1.14a.8.8 0 0 0-.323-.08m-6.939.23a.9.9 0 0 0-.492.144c-.648.388-1.325.764-1.88 1.266-2.323 2.098-3.262 4.755-2.905 7.84.55 4.74 4.6 8.021 8.9 7.904l.868-.001a1 1 0 0 0 .109-.007c2.491-.312 4.58-1.387 6.146-3.36.488-.615.86-1.336 1.2-2.049.248-.523-.032-.982-.56-1.12-.38-.1-.72.112-.974.509-.473.737-.89 1.54-1.491 2.16-1.479 1.52-3.322 2.28-5.466 2.199-2.405-.091-4.337-1.127-5.758-3.056-1.088-1.475-1.49-3.168-1.32-4.984.184-1.987 1.038-3.644 2.57-4.927.423-.354.908-.633 1.365-.946.458-.314.568-.715.314-1.15-.153-.262-.371-.413-.626-.422m3.417 2.167C8.724 6.056 6.02 8.625 6 12c-.02 3.29 2.712 6.017 6 6.02 3.339.005 6.078-2.618 6.062-6.025-.014-3.545-2.87-6.084-6.028-5.995a6 6 0 0 0-.293-.002m10.752 1.164a1 1 0 0 0-.137.002c-.404.033-.642.295-.74.646-.053.187-.01.432.064.62a9.55 9.55 0 0 1 .648 3.753 10 10 0 0 1-1.32 4.76c-1.617 2.84-4.04 4.53-7.243 5.12-.343.063-.694.095-1.033.174-.434.103-.688.473-.641.882.044.38.34.646.769.684.132.012.265.002.398.002l-.001-.003c.145 0 .29.005.434-.002.084-.004.167-.028.25-.04 1.847-.282 3.518-.99 5.037-2.068 1.708-1.213 3.001-2.78 3.897-4.665 1.1-2.317 1.375-4.752.906-7.264-.13-.694-.354-1.376-.584-2.046-.125-.362-.389-.537-.704-.555m-10.449.862q.195 0 .392.05c.708.18 1.16.787 1.158 1.553.027.504-.211.888-.588 1.183-.207.163-.236.32-.176.558q.397 1.578.763 3.164c.13.568-.019.872-.522 1.174-.675.404-1.666.354-2.29-.13-.315-.244-.427-.573-.331-.966.252-1.031.494-2.064.762-3.09.086-.33.041-.554-.225-.794-.581-.523-.682-1.253-.317-1.903a1.57 1.57 0 0 1 1.374-.8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/authentik.svg��������������������������������0000664�0000000�0000000�00000001101�14753064456�0025610�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.96 9.01h-.84V7.492h-1.234v3.663H5.722c.34.517.538.982.538 1.152 0 .46-1.445 3.059-3.197 3.059C.8 15.427-.745 12.8.372 10.855a3.06 3.06 0 0 1 2.691-1.606c1.04 0 1.971.915 2.557 1.755V6.577a3.773 3.773 0 0 1 3.77-3.769h10.84C22.31 2.808 24 4.5 24 6.577v10.845a3.773 3.773 0 0 1-3.77 3.769h-1.6V17.5h-7.64v3.692h-1.6a3.773 3.773 0 0 1-3.77-3.769v-3.41h12.114v-6.52h-1.59v.893h-.84v-.893H13.96zm-9.956 1.845c-.662-.703-1.578-.544-2.209 0-2.105 2.054 1.338 5.553 3.302 1.447a5.4 5.4 0 0 0-1.093-1.447"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/authy.svg������������������������������������0000664�0000000�0000000�00000001546�14753064456�0024763�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m3.42 5.338c.274 0 .551.105.769.315l2.862 2.862c2.054 2.039 2.084 5.35.105 7.449a.2.2 0 0 1-.045.06l-.03.03-.03.03c-.015.015-.045.03-.06.045-2.098 1.978-5.41 1.948-7.463-.105l-2.863-2.863a1.05 1.05 0 0 1 0-1.499 1.05 1.05 0 0 1 1.5 0l2.861 2.863a3.23 3.23 0 0 0 4.542.03 3.244 3.244 0 0 0-.03-4.541l-2.863-2.862a1.05 1.05 0 0 1 0-1.5c.203-.209.472-.314.746-.314zM8.758 6.397a5.33 5.33 0 0 1 3.715 1.564l2.863 2.862c.42.42.42 1.08 0 1.5s-1.08.419-1.5 0L10.975 9.46a3.25 3.25 0 0 0-4.558-.015 3.243 3.243 0 0 0 .03 4.54l2.863 2.863c.42.42.42 1.08 0 1.499a1.05 1.05 0 0 1-1.499 0L4.95 15.484c-2.054-2.053-2.084-5.365-.105-7.463.015-.03.03-.045.045-.06l.03-.03.03-.03c.015-.015.045-.03.06-.045a5.36 5.36 0 0 1 3.748-1.46z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/autocad.svg����������������������������������0000664�0000000�0000000�00000000525�14753064456�0025245�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.867 1.053v.015L0 3.385v17.914l3.897-2.332h18.34V2.33c0-.702-.578-1.277-1.28-1.277zm7.506 4.01h3.3l2.985 9.95H15.07l-.568-2.189h-2.984l-.57 2.162H8.53zm11.863.027v14.877H4.172l-2.068 1.238v.465c0 .702.579 1.277 1.28 1.277H24V5.09zm-10.27 1.592-.993 4.324h2.046z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/autocannon.svg�������������������������������0000664�0000000�0000000�00000002271�14753064456�0025772�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.293 18.131c-.245.277-.47.542-.708.795-.085.092-.192.037-.272-.027-.9-.715-7.786-7.358-12.016-11.122l.86-.937a1210 1210 0 0 1 12.136 11.291m-.8 4.954c-.488.243-.97.48-1.45.72-.074.039-.126.028-.187-.03-2.093-1.923-7.729-7.196-11.564-10.692a.52.52 0 0 1-.17-.327c-.157-1.086-.102-2.154.27-3.196.066-.18.124-.364.194-.572.267.237.525.456.773.688A1801 1801 0 0 0 19.8 22.154l.05.057-1.355.874zM8.595 6.284c-.04-.036-.083-.071-.12-.112-.068-.08-.035-.231.065-.263q1.06-.34 2.123-.68c.427 0 .856-.018 1.284.005.253.015.46.177.642.349 3.73 3.54 7.51 7.022 11.287 10.51.137.127.16.245.072.433a252 252 0 0 1-1.31 2.798A1406.269 1406.337 0 0 0 8.594 6.284ZM12.477.039c4.683.068 8.987 2.71 11.136 7.294-1.02.54-2.038 1.082-3.066 1.628-.995-2.252-2.615-3.868-4.87-4.843-1.72-.743-3.492-.845-5.31-.436-4.194.943-6.66 4.38-6.958 7.95-.357 4.291 2.282 7.922 6.115 9.246-.848 1.901-.22.49-1.268 2.834-.12.272-.193.3-.466.193a12.4 12.4 0 0 1-3.8-2.38c-1.11-1.009-2.025-2.158-2.696-3.497C.66 16.766.207 15.443.054 14.031c-.083-.763-.048-1.53-.04-2.296.034-2.627.98-4.922 2.562-6.97C4.182 2.689 6.26 1.279 8.786.535c1.004-.3 3.035-.527 3.69-.496Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/autodesk.svg���������������������������������0000664�0000000�0000000�00000000413�14753064456�0025440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m.129 20.202 14.7-9.136h7.625c.235 0 .445.188.445.445 0 .21-.092.305-.21.375l-7.222 4.323c-.47.283-.633.845-.633 1.265l-.008 2.725H24V4.362a.56.56 0 0 0-.585-.562h-8.752L0 12.893V20.2h.129z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/autodeskmaya.svg�����������������������������0000664�0000000�0000000�00000001154�14753064456�0026313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.348 0 .69 2.203v16.875l3.657-2.203h17.297V1.219c0-.67-.551-1.219-1.22-1.219H4.349zm18.297 3.75v14.125H4.627l-1.943 1.17v3.736c0 .67.55 1.219 1.218 1.219H23.31V3.75zm-14.471.025h2.937l1.885 7.508 1.977-7.48-.012-.028h2.857v9.354h-2.216v-6.04l-1.565 6.026v.014h-2.203l-1.656-6.28v6.28H8.174zm1.33 14.762h1.18l1.068 3.543h-.902l-.217-.773H9.568l-.197.773h-.88zm1.918 0h.932l.648 1.494.643-1.494h.894l-1.113 2.133v1.41h-.887v-1.406zm3.826 0h1.18l1.068 3.543h-.9l-.217-.773h-1.065l-.197.773h-.88zm-5.156.582-.362 1.53h.73zm5.744 0-.36 1.53h.73z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/autodeskrevit.svg����������������������������0000664�0000000�0000000�00000002435�14753064456�0026520�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 22.665H2.994c-.519 0-.838-.293-.835-.723.001.042.002-.148.003-.463q.212-.124.427-.247l.078-.045.07-.058.015-.013.127-.078 1.294-.804h1.134c3.35 0 11.817 0 16.548.007.159 0 .631 0 1.002-.371.371-.372.37-.853.37-1.011-.008-2.057-.001-4.109.005-6.16.008-2.39.016-4.86 0-7.298v-.063l.61-.007c.169-.003.143.197.143.296.014 5.68-.02 11.36.015 17.038M14.326 8.982c.006-.281.006-.56.006-.859-.009-.5-.395-1.055-.916-1.055-.435 0-.919.006-1.432.006v3.01h1.432c.52 0 .9-.584.91-1.102M3.887 19.234 3.853 1.363l.007-.025.026-.003h17.313c.51.232.943.56 1.033 1.16.023 1.052 0 1.896 0 2.854.001.023-.002.036 0 .059.03 4.489-.022 8.963-.005 13.453 0 .285-.072.38-.37.38-5.99-.008-17.97-.007-17.97-.007m5.624-3.971h2.395l.057-.051v-3.5c.316.001.57-.005.787-.005.075 0 .348.075.449.286.36.757.692 1.531 1.125 2.25.583.967 1.704 1.204 2.469 1.204.528 0 .528-.024.528-.245 0-.423-.006-.935-.006-1.374-.403-.039-.734-.163-.929-.541-.362-.705-.74-1.401-1.119-2.114.248-.072.218-.057.302-.092.859-.357 1.139-.951 1.213-1.71.05-.503.059-1.144.025-1.395-.112-.833-.378-1.454-1.036-1.932-.773-.562-1.678-.657-2.582-.687a62 62 0 0 0-3.678.012zm-5.658-13.9C1.631 2.64.98 3.087.223 3.513.025 3.622 0 3.895 0 4.1l.02 17.45c.575-.357 3.293-1.96 3.867-2.316z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/autohotkey.svg�������������������������������0000664�0000000�0000000�00000001334�14753064456�0026020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.514.508V.51H1.803C1.053.51.079 1.135 0 2.27v17.133h.002v2.325c.08 1.136 1.05 1.763 1.8 1.763h1.505l.002-.002h18.869c1.256-.053 1.766-1.066 1.822-1.699v-3.023h-.002V2.209c-.056-.633-.567-1.648-1.824-1.701zM3.412 1.623h17.154c.898 0 1.618.72 1.618 1.617v16.64c0 .898-.72 1.62-1.618 1.62H3.412a1.616 1.616 0 0 1-1.619-1.62V3.24c0-.897.722-1.617 1.62-1.617zm3.315 12.412-1.895 5.037h.703l.526-1.467h2.02l.497 1.467h.744l-1.824-5.037zm8.43.008v5.037h.679v-1.767l.793-.758 1.76 2.525h.884l-2.154-3.002 2.098-2.035h-.94l-2.441 2.441v-2.441h-.68zm-5.153.027v5.037h.682v-2.351h2.628v2.351h.682V14.07h-.682v2.084h-2.628V14.07zm-2.926.717h.014l.742 2.217H6.271z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/autoit.svg�����������������������������������0000664�0000000�0000000�00000000647�14753064456�0025137�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.351 15.563-5.486-7.941a2.7 2.7 0 0 0-.702-.702q-.414-.282-1.03-.283-.645 0-1.064.302-.42.303-.696.683l-5.63 7.94h3.215l4.122-5.827 1.575 2.323q.223.316.466.676.242.36.426.597a9 9 0 0 0-.741-.026H10.78l-1.64 2.258zM12 24C5.373 24 0 18.627 0 12S5.373 0 12 0s12 5.373 12 12-5.373 12-12 12m0-21.61a9.61 9.61 0 1 0 0 19.22 9.61 9.61 0 1 0 0-19.22"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/automattic.svg�������������������������������0000664�0000000�0000000�00000001005�14753064456�0025771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.521 8.11a1.497 1.497 0 0 1 .433 2.102l-3.511 5.441a1.496 1.496 0 0 1-2.068.457 1.507 1.507 0 0 1-.44-2.08l3.513-5.44a1.5 1.5 0 0 1 .943-.655c.39-.085.796-.04 1.13.175M11.98 23.03C4.713 23.03 0 17.79 0 12.338v-.676C0 6.117 4.713.97 11.98.97 19.246.97 24 6.117 24 11.662v.676c0 5.453-4.713 10.692-12.02 10.692m8.133-11.31c0-3.974-2.888-7.51-8.133-7.51s-8.087 3.542-8.087 7.51v.497c0 3.974 2.888 7.578 8.087 7.578s8.133-3.604 8.133-7.578z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/autoprefixer.svg�����������������������������0000664�0000000�0000000�00000000441�14753064456�0026337�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.87 21.045h2.923l.959-3.068h4.503l.949 3.068h2.922L11.94 2.955zm6.162-10.12 1.543 4.917h-3.153l1.553-4.916h.057zM24 17.617l-.378-1.182-6.266-.59.733 2.127 5.91-.354zM6.644 15.843l-6.266.591L0 17.616l5.911.355z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/autozone.svg���������������������������������0000664�0000000�0000000�00000005205�14753064456�0025471�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.35 6.026c-.7.009-1.69.235-2.176 1.16l-2.442 4.25h1.59l.682-1.188h.773l-.681 1.188h1.58l2.25-3.904c.375-.689.013-1.338-1.149-1.483a3 3 0 0 0-.427-.023m6.082.783-1.891 3.295c-.172.316-.156.668.096.986.179.231.367.348.707.348h.894l.62-1.08h-.676c-.053 0-.11.008-.131-.041-.012-.03-.02-.061-.006-.09l.953-1.656h.803l.66-1.155h-.8l.349-.607Zm3.855.385c-1.166-.001-2.247.942-2.752 2.37-.373 1.057-.216 1.943.928 2.005 1.156.061 2.261-.66 2.879-2.409.374-1.056.107-1.906-.942-1.962zm-8.006.222-1.672 2.912c-.298.548.094 1.094 1.063 1.215.55.069 1.705.004 2.25-.927l.002-.004 1.83-3.196h-1.463l-1.502 2.67c-.123.221-.25.284-.445.246-.244-.048-.141-.234-.07-.361l1.478-2.555zm-2.39.051a1 1 0 0 1 .101.002c.233.024.309.144.164.385l-.636 1.11h-.776l.697-1.218a.54.54 0 0 1 .45-.279m9.984.994a.3.3 0 0 1 .053.004c.252.045.144.34-.073.758-.359.693-.603 1.04-.906.98-.22-.043-.14-.357.078-.775.284-.548.588-.956.848-.967m-16.78 3.944L0 17.791h1.635l3.097-5.386zm2.02 0-3.097 5.386h1.039l3.1-5.386zm1.563 0-3.096 5.386h.643l3.095-5.386Zm1.318 0-3.094 5.386h.377l3.096-5.386zm.979.02-.733 1.276h2.143l-3.682 2.682-.83 1.434h4.363l.729-1.27H8.918l3.559-2.635.853-1.488zm14.707.573a.31.31 0 0 0-.32.32.3.3 0 0 0 .156.277.3.3 0 0 0 .164.042q.09 0 .164-.041a.3.3 0 0 0 .113-.113.3.3 0 0 0 .041-.164.3.3 0 0 0-.041-.164.3.3 0 0 0-.113-.116.33.33 0 0 0-.164-.04Zm-.018.067h.018a.24.24 0 0 1 .217.123.3.3 0 0 1 .033.13.3.3 0 0 1-.034.133.23.23 0 0 1-.087.09.25.25 0 0 1-.13.033.26.26 0 0 1-.13-.033.23.23 0 0 1-.088-.09.28.28 0 0 1 0-.263.23.23 0 0 1 .088-.09.25.25 0 0 1 .113-.033m-.08.07v.355h.057v-.134h.045l.06.134h.06l-.068-.142q.035-.01.05-.033a.14.14 0 0 0 .013-.069v-.008q0-.06-.026-.082-.026-.021-.097-.021zm.055.05h.037q.04 0 .053.012.012.011.011.045v.004q0 .035-.011.047-.014.013-.053.014h-.037zm-9.534.4c-1.166-.002-2.247.944-2.751 2.376-.374 1.059-.217 1.95.927 2.01 1.156.062 2.263-.66 2.881-2.414.372-1.059.106-1.914-.943-1.97q-.057-.004-.114-.003zm7.852 0c-1.162-.002-2.173.944-2.678 2.376-.373 1.059-.29 1.95.854 2.01.963.051 1.819-.444 2.459-1.623h-1.475c-.2.31-.392.5-.576.465-.17-.034-.113-.355.021-.694h2.147q.125-.26.23-.562c.374-1.059.18-1.914-.869-1.97q-.056-.004-.113-.003zm-3.36.175c-.494.018-.802.31-.802.31l.154-.273h-1.344l-2.314 4.02h1.479l1.388-2.42c.098-.172.23-.368.428-.326.177.037.23.2.172.308l-1.399 2.438h1.465l1.678-2.93c.232-.425-.147-.993-.533-1.088a1.4 1.4 0 0 0-.371-.039Zm-4.904 1.096a.2.2 0 0 1 .051.002c.253.044.147.341-.07.761-.36.695-.606 1.043-.908.983-.22-.044-.138-.357.08-.777.283-.55.587-.959.847-.97zm7.766 0q.021 0 .041.002c.226.042.15.304-.03.681h-.679c.23-.406.463-.682.668-.683"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/avajs.svg������������������������������������0000664�0000000�0000000�00000005620�14753064456�0024732�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.455 5.728a1.6 1.6 0 0 1 .62.663q.272.625.604 1.36.331.737.663 1.491c.332.754.435.994.637 1.47s.387.914.548 1.31.289.733.384 1.01a2.2 2.2 0 0 1 .143.547 1.7 1.7 0 0 1-.06.435.95.95 0 0 1-.215.39 1.1 1.1 0 0 1-.434.28 2.1 2.1 0 0 1-.723.104 2 2 0 0 1-.762-.125 1.5 1.5 0 0 1-.488-.319 2.2 2.2 0 0 1-.325-.41q-.13-.215-.268-.411a1.3 1.3 0 0 0-.312-.318.8.8 0 0 0-.476-.126h-.833a1.16 1.16 0 0 0-.58.125 1.1 1.1 0 0 0-.351.319 4 4 0 0 0-.253.41 2 2 0 0 1-.301.411 1.4 1.4 0 0 1-.476.319 2.1 2.1 0 0 1-.789.125 1.5 1.5 0 0 1-1.068-.325 1.03 1.03 0 0 1-.34-.768 2.3 2.3 0 0 1 .137-.592q.136-.425.372-1.01l.542-1.303q.298-.716.637-1.476.34-.762.675-1.524l.652-1.464a1.37 1.37 0 0 1 .604-.637 1.9 1.9 0 0 1 .944-.235 1.67 1.67 0 0 1 .892.274m10.527.044a1.02 1.02 0 0 1 .34.789 2.6 2.6 0 0 1-.137.717q-.138.441-.352 1.003-.216.559-.494 1.212-.28.65-.565 1.327-.391.925-.67 1.66a9 9 0 0 1-.572 1.25 2.8 2.8 0 0 1-.637.795 1.3 1.3 0 0 1-.85.28 1.5 1.5 0 0 1-.867-.229 2.1 2.1 0 0 1-.625-.69 7 7 0 0 1-.547-1.164q-.267-.701-.631-1.667-.273-.728-.56-1.425-.285-.698-.52-1.283a19 19 0 0 1-.385-1.048 2.6 2.6 0 0 1-.148-.723.95.95 0 0 1 .404-.86 1.8 1.8 0 0 1 1.004-.26 2.1 2.1 0 0 1 .851.138 1.8 1.8 0 0 1 .527.357 1.9 1.9 0 0 1 .313.455 6 6 0 0 1 .291.658q.137.358.274.723l.253.67a3 3 0 0 0 .23.494q.11.188.202.188.102 0 .214-.188a4 4 0 0 0 .229-.488q.116-.3.241-.657c.125-.357.17-.477.259-.709a7 7 0 0 1 .286-.643 1.7 1.7 0 0 1 .306-.45 2 2 0 0 1 .28-.24 1.5 1.5 0 0 1 .3-.164 1.7 1.7 0 0 1 .372-.098 3.5 3.5 0 0 1 .51-.033 1.27 1.27 0 0 1 .874.304Zm4.42-.044a1.6 1.6 0 0 1 .62.663q.271.625.603 1.36.332.737.664 1.491c.332.754.434.994.637 1.47s.387.914.547 1.31.29.733.384 1.01a2.2 2.2 0 0 1 .143.547 1.7 1.7 0 0 1-.06.434.95.95 0 0 1-.214.39 1.1 1.1 0 0 1-.434.28 2.1 2.1 0 0 1-.724.105 2 2 0 0 1-.762-.125 1.5 1.5 0 0 1-.488-.319 2.2 2.2 0 0 1-.324-.41q-.13-.215-.268-.411a1.3 1.3 0 0 0-.312-.319.8.8 0 0 0-.477-.125h-.833a1.16 1.16 0 0 0-.58.125 1.1 1.1 0 0 0-.351.319 4 4 0 0 0-.253.41 2 2 0 0 1-.3.411 1.4 1.4 0 0 1-.477.319 2.1 2.1 0 0 1-.788.125 1.5 1.5 0 0 1-1.069-.325 1.03 1.03 0 0 1-.34-.768 2.3 2.3 0 0 1 .138-.592q.136-.424.372-1.009.233-.585.533-1.3c.3-.715.41-.97.636-1.476.227-.51.453-1.015.676-1.524l.652-1.464a1.37 1.37 0 0 1 .604-.637 1.9 1.9 0 0 1 .943-.236 1.65 1.65 0 0 1 .902.27ZM4.532 18.546a.19.19 0 0 0 .173-.104c0-.003.283-.524.563-1.14.14-.31.283-.64.39-.946q.08-.233.13-.435a1.7 1.7 0 0 0 .054-.375 1.56 1.56 0 0 0-.437-1.113 1.22 1.22 0 0 0-1.75 0 1.56 1.56 0 0 0-.437 1.113 1.6 1.6 0 0 0 .053.375 6 6 0 0 0 .265.789c.336.836.818 1.729.818 1.735a.22.22 0 0 0 .179.101m14.947 0a.19.19 0 0 0 .173-.104c0-.003.282-.524.562-1.14.14-.31.283-.64.39-.946q.081-.233.131-.435a1.6 1.6 0 0 0 .054-.375 1.56 1.56 0 0 0-.438-1.113 1.22 1.22 0 0 0-1.75 0 1.57 1.57 0 0 0-.437 1.113 1.6 1.6 0 0 0 .053.375 6 6 0 0 0 .265.789c.336.836.819 1.729.819 1.735a.22.22 0 0 0 .178.101Z"/></svg>����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/avast.svg������������������������������������0000664�0000000�0000000�00000001112�14753064456�0024734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.294 2.991a3.03 3.03 0 0 1 4.45 1.204l7.002 14.804A11.94 11.94 0 0 0 24 12.086C24.046 5.456 18.71.047 12.083 0 5.456-.046.047 5.29 0 11.917a11.94 11.94 0 0 0 2.222 7.034l.281-.061 4.57-1.008c.128-.029.196.145.083.213l-3.782 2.242A11.96 11.96 0 0 0 11.917 24a11.97 11.97 0 0 0 9.344-4.371L9.81 7.573a3.027 3.027 0 0 1 .484-4.582zm2.15 13.609-7.374.64a1.302 1.302 0 1 1 .187-2.567l7.203 1.698c.129.03.114.217-.017.229M9.03 10.116l8.94 7.232c.102.083.01.245-.113.198L7.104 13.471a1.96 1.96 0 1 1 1.926-3.355z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/avianca.svg����������������������������������0000664�0000000�0000000�00000000640�14753064456�0025225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.813 0s-2.326 2.052-2.51 6.367c-.205 4.716 2.324 9.47 10.654 10.076q.04.005.08.008C7.806 11.534 4.955 5.241 3.812 0zm8.224 16.451a31 31 0 0 0 2.2 2.303H5.282c.12.278.53.472 1.463.527 5.59.332 6.38 4.719 14.381 4.719.702 0 1.14-.042 1.582-.125-3.16-.972-6-2.8-8.47-5.121h2.21c.917 0 1.325.076 1.58.191-.392-1.218-1.631-2.168-5.992-2.494z"/></svg>������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/avira.svg������������������������������������0000664�0000000�0000000�00000001073�14753064456�0024726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 23.414a.586.586 0 0 1-.586.587H.585A.586.586 0 0 1 0 23.414V.586c0-.324.262-.587.585-.587h22.829c.325 0 .586.263.586.587zm-4.971-9.675-.04-.044-1.323 1.256a.925.925 0 0 1-1.342 1.272 1 1 0 0 1-.118-.122l-3.56-3.753 4.857-4.609c-3.034-2.858-7.795-2.984-10.765-.111-2.969 2.874-3.337 7.527-.539 10.838l5.106-4.845 3.748 3.952a2.78 2.78 0 0 0 1.995.74 2.68 2.68 0 0 0 1.772-.742c.559-.526.894-1.272.887-2.022a2.7 2.7 0 0 0-.678-1.81m-4.573-5.55-7.65 7.259c-2.576-4.553 2.815-10.009 7.65-7.259"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/awesomelists.svg�����������������������������0000664�0000000�0000000�00000000477�14753064456�0026352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m24 11.438-6.154-5.645-.865.944 5.128 4.7H1.895l5.128-4.705-.865-.943-6.154 5.649H0v3.72c0 1.683 1.62 3.053 3.61 3.053h3.795c1.99 0 3.61-1.37 3.61-3.051v-2.446h1.97v2.446c0 1.68 1.62 3.051 3.61 3.051h3.794c1.99 0 3.61-1.37 3.61-3.051v-3.721z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/awesomewm.svg��������������������������������0000664�0000000�0000000�00000000206�14753064456�0025625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 24V8.25h16.5V7.5H0V0h24v24h-7.5v-8.25h-9v.75h8.25V24z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/awsamplify.svg�������������������������������0000664�0000000�0000000�00000000341�14753064456�0025775�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.223 17.905h6.76l1.731 3.047H0l4.815-8.344 2.018-3.494 1.733 3.002zm2.52-10.371L9.408 4.65l9.415 16.301h-3.334zm2.59-4.486h3.33L24 20.952h-3.334z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/awselasticloadbalancing.svg������������������0000664�0000000�0000000�00000002072�14753064456�0030462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.2 18.24C3.76 18.24.96 15.44.96 12s2.8-6.24 6.24-6.24 6.24 2.8 6.24 6.24-2.8 6.24-6.24 6.24m14.4 2.88c0 1.059-.861 1.92-1.92 1.92a1.92 1.92 0 0 1-1.92-1.92c0-1.059.861-1.92 1.92-1.92s1.92.861 1.92 1.92M19.68.96c1.059 0 1.92.861 1.92 1.92s-.861 1.92-1.92 1.92a1.92 1.92 0 0 1-1.92-1.92c0-1.059.861-1.92 1.92-1.92m1.44 9.12c1.059 0 1.92.861 1.92 1.92s-.861 1.92-1.92 1.92A1.92 1.92 0 0 1 19.2 12c0-1.059.861-1.92 1.92-1.92m-6.744 2.4h3.907a2.88 2.88 0 0 0 2.837 2.4A2.883 2.883 0 0 0 24 12a2.883 2.883 0 0 0-2.88-2.88 2.88 2.88 0 0 0-2.837 2.4h-3.907a7.1 7.1 0 0 0-.661-2.566l4.26-3.759a2.86 2.86 0 0 0 1.705.565 2.883 2.883 0 0 0 2.88-2.88A2.883 2.883 0 0 0 19.68 0a2.883 2.883 0 0 0-2.88 2.88c0 .603.187 1.162.504 1.625L13.24 8.092A7.2 7.2 0 0 0 7.2 4.8C3.23 4.8 0 8.03 0 12s3.23 7.2 7.2 7.2a7.2 7.2 0 0 0 6.039-3.292l4.065 3.587a2.86 2.86 0 0 0-.504 1.625A2.883 2.883 0 0 0 19.68 24a2.883 2.883 0 0 0 2.88-2.88 2.883 2.883 0 0 0-2.88-2.88 2.86 2.86 0 0 0-1.706.565l-4.26-3.759a7.1 7.1 0 0 0 .662-2.566"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/awsfargate.svg�������������������������������0000664�0000000�0000000�00000003104�14753064456�0025745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.647 19.54v-2.28l1.412-.565v2.28Zm-2.353-2.845 1.412.565v2.28l-1.412-.564Zm-2.823 6.14v-2.281l1.411-.565v2.28Zm-2.353-2.846 1.411.565v2.28l-1.411-.564Zm-2.824-.449v-2.28l1.412-.565v2.28Zm-2.353-2.845 1.412.565v2.28l-1.412-.564Zm1.883-1.13L7.91 16l-1.086.434L5.737 16ZM12 18.86l1.086.434-1.086.434-1.086-.434Zm5.176-3.294 1.087.434-1.087.434L16.09 16Zm2.528-.003-2.353-.941a.48.48 0 0 0-.35 0l-2.352.94a.47.47 0 0 0-.296.438v2.787l-2.178-.871a.48.48 0 0 0-.35 0l-2.178.871V16a.47.47 0 0 0-.296-.437l-2.353-.941a.48.48 0 0 0-.35 0l-2.352.94A.47.47 0 0 0 4 16v3.294a.47.47 0 0 0 .296.437l2.353.941a.48.48 0 0 0 .35 0l2.177-.871v2.787c0 .193.118.365.296.437l2.353.942a.48.48 0 0 0 .35 0l2.353-.942a.47.47 0 0 0 .296-.437v-2.787l2.178.871a.48.48 0 0 0 .35 0l2.352-.94a.47.47 0 0 0 .296-.438V16a.47.47 0 0 0-.296-.437m4.06-5.71c0 2.75-6.06 4.235-11.764 4.235S.235 12.604.235 9.853c0-1.313 1.457-2.47 4.101-3.256l.269.902C2.49 8.128 1.176 9.03 1.176 9.853c0 1.558 4.445 3.294 10.824 3.294s10.824-1.736 10.824-3.294c0-.823-1.314-1.725-3.429-2.354l.269-.902c2.644.787 4.1 1.943 4.1 3.256M12 .975l4.807 1.849L12 4.672 7.193 2.824Zm4.979 9.304c-.888.397-2.378.86-4.508.921V5.5l5.176-1.99v5.736c0 .448-.262.853-.668 1.033M6.353 9.246V3.51l5.176 1.99v5.7c-2.13-.062-3.62-.524-4.51-.922a1.13 1.13 0 0 1-.666-1.032m.284 1.891c1.036.464 2.807 1.017 5.363 1.017s4.327-.553 5.361-1.016a2.07 2.07 0 0 0 1.227-1.892V2.824c0-.195-.12-.37-.301-.44L12.169.031a.48.48 0 0 0-.338 0L5.713 2.384a.47.47 0 0 0-.301.44v6.422c0 .82.481 1.562 1.225 1.891"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/awslambda.svg��������������������������������0000664�0000000�0000000�00000001206�14753064456�0025555�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.986 0a.545.545 0 0 0-.534.548l-.006 4.908c0 .145.06.283.159.39a.53.53 0 0 0 .38.155h3.429l8.197 17.68a.54.54 0 0 0 .488.319h5.811a.547.547 0 0 0 .543-.548v-4.908a.543.543 0 0 0-.543-.548h-2.013L12.739.316A.55.55 0 0 0 12.245 0H4.991Zm.54 1.09h6.367l8.16 17.681a.54.54 0 0 0 .489.318h1.817v3.817h-4.922L9.24 5.226a.54.54 0 0 0-.488-.318h-3.23Zm2.013 8.237a.54.54 0 0 0-.486.31L.6 23.213a.55.55 0 0 0 .032.528.53.53 0 0 0 .454.25h6.169a.55.55 0 0 0 .497-.31l3.38-7.165a.54.54 0 0 0-.003-.469l-3.093-6.41a.55.55 0 0 0-.494-.31Zm.006 1.804 2.488 5.152-3.122 6.62H1.947Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/awsorganizations.svg�������������������������0000664�0000000�0000000�00000001650�14753064456�0027227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 18.714v4.8c0 .288-.192.48-.48.48h-4.8c-.288 0-.48-.192-.48-.48v-4.8c0-.288.192-.48.48-.48h1.92v-1.92h-8.16v1.92h1.92c.288 0 .48.192.48.48v4.8c0 .288-.192.48-.48.48H9.6c-.288 0-.48-.192-.48-.48v-4.8c0-.288.192-.48.48-.48h1.92v-1.92H3.36v1.92h1.92c.288 0 .48.192.48.48v4.8c0 .288-.192.48-.48.48H.48c-.288 0-.48-.192-.48-.48v-4.8c0-.288.192-.48.48-.48H2.4v-2.4c0-.288.192-.48.48-.48h8.64v-1.44h.96v1.44h8.64c.288 0 .48.192.48.48v2.4h1.92c.288 0 .48.192.48.48m-13.92 4.32h3.84v-3.84h-3.84zm-9.12 0H4.8v-3.84H.96Zm18.24 0h3.84v-3.84H19.2ZM6.24 9.642V3.546c0-.192.096-.336.24-.432L11.76.042a.8.8 0 0 1 .48 0l5.28 3.072c.144.096.24.24.24.432v6.096c0 .144-.096.288-.24.384l-5.28 3.072q-.096.048-.24.048t-.24-.048l-5.28-3.072c-.144-.096-.24-.24-.24-.384m10.56-.288V4.362l-4.32 2.496v4.992zm-9.6 0 4.32 2.496V6.858L7.2 4.362Zm.48-5.808L12 5.994l4.32-2.448L12 1.05Z"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/awssecretsmanager.svg������������������������0000664�0000000�0000000�00000002753�14753064456�0027350�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.469 13.44a.532.532 0 1 0 1.064-.001.532.532 0 0 0-1.064.001m-.857 0a1.39 1.39 0 0 1 2.778 0c0 .615-.406 1.132-.96 1.314v1.103h-.858v-1.103a1.385 1.385 0 0 1-.96-1.314m5.246-2.297H8.143v5.571h7.715V15.43h-1.286v-.858h1.286v-1.285h-1.286v-.857h1.286zm-6.429-.857h5.142V8.143C14.573 7.022 13.348 6 12.003 6h-.001a2.83 2.83 0 0 0-1.817.675c-.48.412-.755.948-.755 1.468zm6-2.143v2.143h.857c.237 0 .429.192.429.428v6.429a.43.43 0 0 1-.429.428H7.715a.43.43 0 0 1-.429-.428v-6.429c0-.236.192-.428.429-.428h.857V8.143c0-.77.384-1.543 1.054-2.118A3.7 3.7 0 0 1 12 5.143h.001c1.826 0 3.427 1.403 3.427 3zM3.089 18.45l.695-.502a10.04 10.04 0 0 1-1.9-5.519H3v-.857H1.886a10.04 10.04 0 0 1 1.898-5.486l-.695-.503a10.9 10.9 0 0 0-2.06 5.99H0v.856h1.027c.08 2.18.784 4.254 2.062 6.021m14.842 1.783a10.04 10.04 0 0 1-5.502 1.899V21h-.857v1.13a10.04 10.04 0 0 1-5.503-1.898l-.502.694a10.9 10.9 0 0 0 6.005 2.062V24h.857v-1.012a10.9 10.9 0 0 0 6.004-2.062zM6.069 3.8a10.04 10.04 0 0 1 5.503-1.9V3h.857V1.9c1.992.082 3.887.73 5.502 1.899l.503-.695a10.9 10.9 0 0 0-6.005-2.06V0h-.857v1.044a10.9 10.9 0 0 0-6.005 2.061zm16.903 7.771a10.9 10.9 0 0 0-2.061-5.989l-.695.503a10.04 10.04 0 0 1 1.899 5.486H21v.858h1.115a10.04 10.04 0 0 1-1.9 5.518l.695.503a10.9 10.9 0 0 0 2.062-6.021H24v-.858zM19.024 5.6l3.36-3.36-.606-.606-3.36 3.36zM4.978 18.433l-3.36 3.36.606.606 3.36-3.36zM7.144 6.537.784.177.176.783l6.36 6.36zm10.94 10.94 5.74 5.74-.607.606-5.74-5.74z"/></svg>���������������������mkdocs-material-9.6.4/material/templates/.icons/simple/awwwards.svg���������������������������������0000664�0000000�0000000�00000000433�14753064456�0025462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.72 5.6-2.24 8.68-2.12-8.68H7.47l-2.12 8.68L3.11 5.6H0l4.01 12.65h2.74l2.17-8.18 2.16 8.18h2.74L17.83 5.6zm5.1 10.7c0 1.2.9 2.1 2.09 2.1 1.2 0 2.09-.9 2.09-2.1s-.9-2.12-2.1-2.12c-1.19 0-2.08.9-2.08 2.11"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/axios.svg������������������������������������0000664�0000000�0000000�00000000236�14753064456�0024747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.068 2.9v19.397L8.954 24V7.864H4.975zM14.934 0v15.767h4.091l-6.2 5.089V1.469z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/babel.svg������������������������������������0000664�0000000�0000000�00000007134�14753064456�0024675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.76 0c-1.603.147-3.719.713-6.317 1.719a22 22 0 0 1-2.44 1.539l.01.158c.064 0 .136-.043.24-.096.106-.01.169.032.169.137l.168-.094.084-.011.01.074c.01.073-.566.523-1.707 1.33l.093.146-.084.012-.177-.064c0 .052-.073.085-.24.095l.01.084.189.21a.7.7 0 0 1-.252-.053c-.367.031-.734.303-1.09.806l.094.147c.314-.283.492-.43.544-.43l.022.23c-.052 0-.136.042-.24.094l.199.295A5.9 5.9 0 0 1 6.29 5.291c.23.063.346.125.346.209l.168-.01c1.225-.911 2.44-1.562 3.644-1.97l.012.158c-.22.335-.377.501-.461.511.01.116.052.21.115.305.021.21-.524 1.583-1.635 4.139-2.535 5.93-4.651 10.307-6.359 13.156 0 .052.041.136.094.23.419-.104.691-.197.806-.302l.096-.012.01.158.158-.011.166-.094c0 .052.063.073.168.062l.012.159c.01.157-.075.397-.274.722-.178.2-.355.607-.554 1.225l.01.074.158-.01c.68-.764 1.204-1.52 1.56-2.254 2.001-.586 3.52-1.162 4.578-1.728 1.058-.094 1.876-.365 2.42-.826l-.011-.084-.399.115-.094.01-.01-.084c.776-.116 1.32-.293 1.614-.524 1.519-1.173 2.66-2 3.435-2.492 2.4-1.76 3.531-3.457 3.395-5.07-.01-.168-.545-.828-1.582-1.98-.021-.22.345-.535 1.078-.954l2.086-1.834c.46-.597.744-1.56.838-2.89l-.031-.315c-.084-.932-.756-1.687-2.034-2.264Q18.683.046 15.76 0m2.525 1.037q2.326.094 2.389.817l-.063.158zm-1.482 1.317c1.063-.016 1.617.267 1.672.863l.156-.012-.031-.398.168-.01c.408.22.627.492.648.816.021.22-.094.494-.355.819-.105.01-.168-.064-.178-.221l-.168.012-.041.47c-.702 1.048-1.205 1.582-1.52 1.614q-.425.581-.535.597c-.22.262-.816.712-1.8 1.34-.325.032-1.531.493-3.616 1.404a.6.6 0 0 0-.334-.052l-.012-.147c-.02-.304.107-.681.41-1.142.158-.86.335-1.352.534-1.467l1.738-3.906c-.02-.241.347-.43 1.111-.555l.252-.022.02.221a50 50 0 0 1 1.394-.2 7 7 0 0 1 .487-.024m3.619.39h.027c.139.012.288.263.446.744l.01.147c-.085.01-.24-.242-.471-.744zm-9.836 2.483h.072l.022.23c-.074.01-.177.116-.303.336l-.012-.156q.22-.268.22-.41zM5.6 5.354l.01.072c-.053 0-.136.043-.24.095l-.085.01-.01-.146zM9.885 6.86l.031.315-.084.01-.031-.313zm-.2.567c-.02.262-.084.397-.22.408l-.084.01c.094-.178.147-.303.137-.397zm-.345.816.01.074-.147.25-.158.012-.01-.074q.236-.015.22-.25zm-.358.735-.04.386-.085.01-.03-.387.155-.01zm8.497.28.345.212c.01.104-.042.167-.146.177-.147-.094-.262-.136-.346-.136l-.021-.23zm-6.653.891.012.147-.326.033-.01-.148zm5.363.545c.23.105.347.21.358.293l.01.075q-.328.03-.608-.346zm2.6.252c.178.074.261.148.272.221l.052.617c-.073.168-.146.252-.23.252zm-4.195.065c.84-.014 1.482.184 1.922.605l.03.315c-.376 1.09-.795 1.719-1.245 1.918l-2.096 1.666c-1.56 1.026-2.4 1.538-2.525 1.548-2.483 1.373-4.032 2.075-4.63 2.127l-.095.01c.084-.293 1.185-2.555 3.322-6.808.943-.084 2.43-.525 4.452-1.32l.492-.042q.192-.015.373-.02zm-3.055.49.01.074-.334.031-.012-.074zm-5.226 5.07c-.105.535-.221.808-.336.819l-.01-.075c-.021-.272.094-.513.346-.744m7.101.336.01.147c.01.063-.23.261-.701.607-1.394.681-2.21 1.152-2.452 1.393-1.508.523-2.252.849-2.242.974q-2.01.802-2.638 1.164c-.095.01-.241-.031-.43-.115-.021-.272.093-.494.365-.672.23-.02.463.011.672.106.251-.126.68-.274 1.299-.42l-.012-.156-.492.04c.063-.083.535-.303 1.436-.67l.251-.02.01.073c-.419.032-.66.167-.713.387.01.094.064.147.168.137.304-.21.461-.324.461-.356.608-.115 2.274-.995 5.008-2.619m-7.584.723.01.072c.01.105-.042.17-.147.18l-.01-.074c-.01-.095.042-.157.147-.178m3.77.937c.089-.002.139.049.148.131-.199.021-.566.178-1.121.492l-.084.01-.01-.156a1.6 1.6 0 0 0 1.026-.47q.021-.005.04-.007zM5.936 19.81l.01.082c-.064 0-.138.043-.243.095l-.156.01c-.01-.073.032-.136.137-.168l.252-.02zm-1.918.953.177.072c-.063.471-.198.713-.44.734a1.1 1.1 0 0 0-.513-.105l-.021-.23c-.01-.095.043-.147.158-.178.105-.01.167.061.178.218.282-.345.44-.511.46-.511Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/babelio.svg����������������������������������0000664�0000000�0000000�00000000452�14753064456�0025221�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.283 0a14 14 0 0 1-6.566 7.588v4.691a20.5 20.5 0 0 0 6.566-3.676zm3.283 7.7a22.12 22.12 0 0 1-13.132 7.03v4.213a36 36 0 0 0 3.836-.564 35.1 35.1 0 0 0 9.296-3.322zm3.282 7.331a36.75 36.75 0 0 1-19.696 5.686V24h19.696Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/babylondotjs.svg�����������������������������0000664�0000000�0000000�00000000404�14753064456�0026313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0 1.607 6.002v12L12 24l10.393-6V6L19.14 4.123 16.01 5.93l3.252 1.879v8.384L12 20.387l-7.264-4.194V7.807l10.393-6zm0 8.244-3.254 1.879v3.754h.002v.004L12 15.758l3.252-1.877v-3.76z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/backblaze.svg��������������������������������0000664�0000000�0000000�00000002027�14753064456�0025542�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.31 0c.653 1.35 1.567 4.082-1.388 7.174-1.81 1.88-3.078 3.849-2.35 6.065.365 1.103 1.187 2.507 2.887 2.785.61.1 1.343 0 1.74-.14 2.454-.855 2.098-3.415 1.555-5.048-.07-.213-.191-.733-.236-.924-.373-1.602.776-2.656 1.129-3.804q.043-.138.07-.272.062-.315.078-.638c0-1.827-.988-2.63-1.775-3.6C10.18.564 9.31 0 9.31 0m6.276 6.018s-.709.336-1.219.883c-.445.482-.863.879-1.294 1.859q-.041.21-.075.438c-.232 1.641 1.148 3.144.719 5.189-.112.535-.355.712-.781 1.637-.51 1.106-.383 2.588.36 3.529.672.849 1.878 1.232 3.052.95 2.106-.505 3.065-2.283 2.896-4.286-.131-1.58-.815-2.753-2.754-4.96-.96-1.093-1.607-2.41-1.562-3.407.137-1.207.658-1.832.658-1.832zM4.893 15.194c-.022.014-.044.061-.059.16a.1.1 0 0 1-.006.02v.01c-.114.54-.165 1.822.116 2.968.353 1.443 1.417 3.902 4.412 5.129 2.518 1.034 5.718.541 7.85-1.627.529-.543.407-.49-.489-.201v-.002c-1.112.356-3.518.546-4.768-1-1.523-1.885-.43-3.363-1.357-3.15-3.616.834-5.267-1.466-5.547-2.102-.002-.002-.086-.249-.152-.205z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/backbone.svg���������������������������������0000664�0000000�0000000�00000001774�14753064456�0025400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.978.805A5.3 5.3 0 0 1 9.972 2.29a5.3 5.3 0 0 1 2.006 1.487 5.3 5.3 0 0 1 2.006-1.488A5.3 5.3 0 0 1 11.978.804m10.6 17.27L19.45 19.22v-6.875c0-.456.37-.826.825-.826h1.479c.454 0 .824.37.824.826zm-4.55-5.73v7.399l-3.865 1.416v-14c0-.22.087-.43.243-.585a.82.82 0 0 1 .58-.24h.008l2.213.019a.827.827 0 0 1 .818.824v5.086h.004zm3.727-2.246h-1.48c-.291 0-.57.055-.826.157V7.178c0-1.23-1-2.237-2.23-2.247l-2.213-.017h-.019a2.23 2.23 0 0 0-1.582.651 2.23 2.23 0 0 0-.664 1.595v16.037L24 19.068v-6.725a2.25 2.25 0 0 0-2.247-2.246M9.839 21.159l-3.865-1.416v-7.398l-.001-.08h.003V7.176c0-.45.367-.82.818-.824l2.214-.018h.007a.82.82 0 0 1 .58.24.82.82 0 0 1 .244.585zM4.551 19.22l-3.127-1.146v-5.73c0-.456.37-.826.824-.826h1.479c.454 0 .824.37.824.826zM9.015 4.913h-.018l-2.214.018a2.254 2.254 0 0 0-2.23 2.247v3.076a2.2 2.2 0 0 0-.826-.157h-1.48A2.25 2.25 0 0 0 0 12.345v6.724l11.262 4.127V7.157a2.23 2.23 0 0 0-.665-1.594 2.23 2.23 0 0 0-1.582-.652"/></svg>����mkdocs-material-9.6.4/material/templates/.icons/simple/backbonedotjs.svg����������������������������0000664�0000000�0000000�00000000603�14753064456�0026432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.34 0v10.45l3.2-1.83V5.27l2.93 1.67 3.01-1.72zm19.31 0L12.5 5.22l3.02 1.73 2.94-1.68v3.35l3.2 1.83V0zm-9.9 5.64-9.4 5.38V24l9.4-5.36v-3.76l-6.21 3.56v-5.5l6.21-3.54zm.5 0V9.4l6.22 3.54v5.5l-6.22-3.56v3.76L21.66 24V11.02zM7.7 12.3l-1.65.94v1.86l2.17 1.24 3.28-1.87zm8.61 0-3.8 2.16 3.28 1.88 2.17-1.24v-1.86z"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/backendless.svg������������������������������0000664�0000000�0000000�00000001570�14753064456�0026104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.215 6.16C2.354 6.147.584 6.953 0 8.19c3.68-.998 5.747-.332 8.244 2.638.99 1.184 1.895 2.45 2.992 3.51 1.098 1.08 2.303 2.161 3.637 2.826 2.97 1.475 6.802.415 8.05-1.994-.387.145-.752.27-1.118.416-1.693 1.181-3.92 1.204-5.748-.375-1.873-1.62-3.487-3.532-5.166-5.36C9.276 8.107 7.555 6.55 5.016 6.217a6 6 0 0 0-.801-.057m15.639 1.719c-.957-.013-2 .301-3.043.976-1.034.686-1.96 1.538-2.971 2.348-.603-.395-1.204-.81-1.807-1.205-.043.062-.11.145-.152.207.15.187.324.354.474.54.861.956 1.743 1.931 2.69 2.866.947-.852 1.723-1.598 2.562-2.305 2.411-2.035 4.628-1.725 6.393 1.038-.355-2.828-2.042-4.437-4.146-4.465M4.393 12.615c1.291 5.422 4.733 4.902 7.08 3.738.624.291 1.528.603 2.109.873.043-.062.107-.125.15-.187-1.033-.665-1.978-1.538-2.84-2.37-.215-.207-.41-.415-.603-.622-3.336 2.866-5.896-1.432-5.896-1.432"/></svg>����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/backstage.svg��������������������������������0000664�0000000�0000000�00000004745�14753064456�0025561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.519 9.3a4.5 4.5 0 0 0 .753-.58l.129-.13a5 5 0 0 0 .444-.525 3.6 3.6 0 0 0 .354-.603 2.7 2.7 0 0 0 .244-.918c.083-1.086-.56-2.166-1.995-3.037L13.669 0 6.934 6.454l-4.386 4.202 6.083 3.691a6.25 6.25 0 0 0 3.235.92c1.396 0 2.733-.493 3.72-1.44 1.073-1.028 1.43-2.358.767-3.465a2.8 2.8 0 0 0-.38-.496 5 5 0 0 0 1.081.12h.009a4.8 4.8 0 0 0 1.736-.324 4.5 4.5 0 0 0 .72-.362m-5.632 3.35c-1.082 1.037-2.823 1.19-4.24.33L5.44 10.427l3.777-3.62 4.28 2.597c1.542.935 1.457 2.225.391 3.247m.5-4.605L10.43 5.643l3.608-3.459 3.885 2.358c1.453.88 1.642 2.073.591 3.08a3.4 3.4 0 0 1-4.127.423m1.673 10.642c-1.096 1.05-2.586 1.63-4.194 1.63a6.93 6.93 0 0 1-3.59-1.02l-5.728-3.473v1.382l6.083 3.691a6.25 6.25 0 0 0 3.235.92c1.396 0 2.733-.494 3.72-1.44.721-.69 1.12-1.519 1.102-2.323v-.1a5 5 0 0 1-.628.735zm0-2.184c-1.096 1.05-2.586 1.628-4.194 1.628a6.94 6.94 0 0 1-3.59-1.019L2.548 13.64v1.382l6.083 3.692a6.25 6.25 0 0 0 3.235.92c1.396 0 2.733-.494 3.72-1.44.721-.69 1.12-1.519 1.102-2.324v-.1a5 5 0 0 1-.628.736zm0-2.185c-1.096 1.051-2.586 1.63-4.194 1.63a6.94 6.94 0 0 1-3.59-1.02l-5.728-3.471v1.382l6.083 3.692a6.25 6.25 0 0 0 3.235.919c1.396 0 2.733-.493 3.72-1.439.721-.691 1.12-1.52 1.102-2.324v-.102a5 5 0 0 1-.628.737zm4.688 1.442a5.27 5.27 0 0 1-3.372 1.448v1.5a4.57 4.57 0 0 0 2.898-1.254c.784-.75 1.184-1.574 1.176-2.388v-.123a5.3 5.3 0 0 1-.702.82zm-4.688 5.108c-1.096 1.051-2.586 1.63-4.194 1.63a6.93 6.93 0 0 1-3.59-1.02l-5.728-3.471v1.382l6.083 3.691a6.25 6.25 0 0 0 3.235.92c1.396 0 2.733-.493 3.72-1.439.721-.691 1.12-1.52 1.102-2.324v-.1a5 5 0 0 1-.628.735zm4.803-11.77q-.057.06-.115.116a5 5 0 0 1-.596.485 5 5 0 0 1-.65.392 5.3 5.3 0 0 1-1.47.487 5.5 5.5 0 0 1-.792.088 3 3 0 0 1 .07.275 3 3 0 0 1 .064.672v.541h.003a4.7 4.7 0 0 0 1.42-.31 4.5 4.5 0 0 0 1.478-.943c.045-.043.084-.087.126-.13a4.6 4.6 0 0 0 .444-.526 3.6 3.6 0 0 0 .354-.602 2.7 2.7 0 0 0 .242-.921c.005-.07.012-.139.011-.208v-.113q-.06.087-.126.173a5 5 0 0 1-.463.525zm0 4.365c-.039.04-.073.079-.112.118a5.28 5.28 0 0 1-3.372 1.448v1.494a4.57 4.57 0 0 0 2.898-1.253 4.1 4.1 0 0 0 .922-1.26 2.7 2.7 0 0 0 .242-.921c.005-.07.011-.139.01-.208v-.123q-.06.09-.126.18a5 5 0 0 1-.462.525m0-2.184c-.039.039-.073.079-.112.117a5 5 0 0 1-.595.485 5 5 0 0 1-.652.392 5.35 5.35 0 0 1-2.125.57v1.495a4.57 4.57 0 0 0 2.898-1.253c.045-.043.084-.087.127-.13a4.6 4.6 0 0 0 .444-.526 3.6 3.6 0 0 0 .351-.603 2.7 2.7 0 0 0 .242-.92c.005-.07.011-.14.01-.208v-.123q-.059.09-.127.18a5 5 0 0 1-.461.525z"/></svg>���������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/badoo.svg������������������������������������0000664�0000000�0000000�00000000725�14753064456�0024713�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.68 2.809c3.392 0 6.32 2.788 6.32 6.228 0 6.71-6.6 12.158-12 12.158S0 15.748 0 9.037c0-3.44 2.928-6.228 6.32-6.228 4.128 0 5.578 3.179 5.68 3.411a6.08 6.08 0 0 1 5.67-3.411zm1.078 6.488V9.11h-2.38v.186c0 2.352-1.97 4.276-4.378 4.276-2.417 0-4.369-1.924-4.369-4.276V9.11H5.233v.186c0 1.766.697 3.42 1.98 4.666a6.8 6.8 0 0 0 4.778 1.933 6.8 6.8 0 0 0 4.777-1.933 6.49 6.49 0 0 0 1.98-4.666Z"/></svg>�������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/baidu.svg������������������������������������0000664�0000000�0000000�00000002465�14753064456�0024716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.154 0C7.71 0 6.54 1.658 6.54 3.707c0 2.051 1.171 3.71 2.615 3.71 1.446 0 2.614-1.659 2.614-3.71C11.768 1.658 10.6 0 9.154 0m7.025.594C14.86.58 13.347 2.589 13.2 3.927c-.187 1.745.25 3.487 2.179 3.735 1.933.25 3.175-1.806 3.422-3.364.252-1.555-.995-3.364-2.362-3.674a1.2 1.2 0 0 0-.261-.03zM3.582 5.535a3 3 0 0 0-.156.008c-2.118.19-2.428 3.24-2.428 3.24-.287 1.41.686 4.425 3.297 3.864 2.617-.561 2.262-3.68 2.183-4.362-.125-1.018-1.292-2.773-2.896-2.75m16.534 1.753c-2.308 0-2.617 2.119-2.617 3.616 0 1.43.121 3.425 2.988 3.362s2.553-3.238 2.553-3.988c0-.745-.62-2.99-2.924-2.99m-8.264 2.478c-1.424.014-2.708.925-3.323 1.947-1.118 1.868-2.863 3.05-3.112 3.363-.25.309-3.61 2.116-2.864 5.42.746 3.301 3.365 3.237 3.365 3.237s1.93.19 4.171-.31c2.24-.495 4.17.123 4.17.123s5.233 1.748 6.665-1.616c1.43-3.364-.808-5.109-.808-5.109s-2.99-2.306-4.736-4.798c-1.072-1.665-2.348-2.268-3.528-2.257m-2.234 3.84 1.542.024v8.197H7.758c-1.47-.291-2.055-1.292-2.13-1.462-.072-.173-.488-.976-.268-2.343.635-2.049 2.447-2.196 2.447-2.196h1.81zm3.964 2.39v3.881c.096.413.612.488.612.488h1.614v-4.343h1.689v5.782h-3.915c-1.517-.39-1.59-1.465-1.59-1.465v-4.317zm-5.458 1.147c-.66.197-.978.708-1.05.928-.076.22-.247.78-.1 1.269.294 1.095 1.248 1.144 1.248 1.144h1.37v-3.34z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bakalari.svg���������������������������������0000664�0000000�0000000�00000001424�14753064456�0025372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c-.385 0-.77.102-1.11.307L2.762 5.193a2.15 2.15 0 0 0-1.043 1.84v9.93a2.15 2.15 0 0 0 1.043 1.843l8.126 4.886c.683.41 1.537.41 2.22 0l8.128-4.886a2.15 2.15 0 0 0 1.043-1.842v-9.93c0-.754-.396-1.452-1.043-1.84L13.11.306A2.15 2.15 0 0 0 12 0m-.094 3.462c.224-.001.449.056.65.17l6.192 3.548c.402.23.65.658.65 1.12v1.85c0 .468-.253.898-.66 1.127l-1.296.722 1.295.724c.408.228.661.659.661 1.126v1.849c0 .462-.248.89-.65 1.12l-6.192 3.549a1.29 1.29 0 0 1-1.297-.008l-6.022-3.55a1.29 1.29 0 0 1-.635-1.111V8.3c0-.457.242-.88.635-1.112l6.022-3.547c.2-.118.423-.177.647-.179m.018 2.782L7.182 9.037v5.924l4.742 2.793 4.894-2.803v-.344l-1.413-.788c-.34-.19-.55-.55-.55-.94V11.12c0-.39.21-.75.55-.94l1.413-.787v-.345z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bamboo.svg�����������������������������������0000664�0000000�0000000�00000000756�14753064456�0025072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.714 13.643h-4.989a.65.65 0 0 0-.655.555 4.114 4.114 0 0 1-4.062 3.53l1.35 6.173a10.374 10.374 0 0 0 9.008-9.545.65.65 0 0 0-.652-.713m-8.632-.158 7.2-6.171a.645.645 0 0 0 0-.984l-7.2-6.17a.648.648 0 0 0-1.075.483v12.342a.651.651 0 0 0 1.074.5zM1.727 14.99A10.385 10.385 0 0 0 12.012 24v-6.27a4.093 4.093 0 0 1-4.1-4.087zm-.096-1.447v.1h6.28a4.093 4.093 0 0 1 4.098-4.088l-1.348-6.17a10.37 10.37 0 0 0-9.03 10.158"/></svg>������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bambulab.svg���������������������������������0000664�0000000�0000000�00000000344�14753064456�0025371�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.662 24V8.959l8.535 3.369V24zm-9.859-.003v-7.521l8.534-3.371-.001 10.892zM2.803 0h8.533l.001 11.672-8.534 3.369zm9.859 0h8.535v10.892l-8.535-3.371z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bandcamp.svg���������������������������������0000664�0000000�0000000�00000000161�14753064456�0025366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m0 18.75 7.437-13.5H24l-7.438 13.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bandlab.svg����������������������������������0000664�0000000�0000000�00000001066�14753064456�0025211�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.32 6.076 3.567 6.164A8.84 8.84 0 0 1 24 16.255C24 20.76 20.455 24 15.425 24h-6.85C3.545 24 0 20.76 0 16.255a8.9 8.9 0 0 1 1.102-4.015l3.567-6.164h3.349L3.84 13.342a6.03 6.03 0 0 0-.829 2.869c0 2.869 1.964 4.909 5.651 4.909h6.654c3.709 0 5.662-2.04 5.662-4.909a6.04 6.04 0 0 0-.829-2.869l-4.167-7.266zm-8.444 11.509c-1.581 0-2.531-.927-2.531-2.236 0-1.789 1.822-3.349 3.819-3.785L7.473 0h8.182l1.505 2.891h-5.727l3.414 8.345c.295.655.448 1.364.448 2.073 0 2.476-2.455 4.276-4.419 4.276"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bandrautomation.svg��������������������������0000664�0000000�0000000�00000001774�14753064456�0027023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 16.444H0v2.088h24zm-8.812-1.59-1.418-1.766.623-.767-.831-1.036-.623.767-1.565-1.959 2.192.008V8.592H9.39v1.405l.667.835c-.072.036-.538.245-.691.349-.442.27-.775.688-.939 1.18a2.05 2.05 0 0 0 1.04 2.349c.823.417 1.931.333 2.758-.04.168-.081.333-.177.482-.289l.124-.093.458.566zM6.179 9.989a2.11 2.11 0 0 0 1.204-1.984c0-1.541-1.116-2.537-2.991-2.537H0v9.39h4.549c2.111 0 3.123-1.216 3.123-2.629a2.26 2.26 0 0 0-1.489-2.24zm15.035 1.401s2.132-.442 2.132-2.931c0-1.75-1.076-2.991-3.252-2.991h-4.445v9.39h2.092V11.39h1.004l2.778 3.468h2.473L21.21 11.39zm-11.073 1.911a.71.71 0 0 1-.044-.831c.209-.261.482-.466.795-.59l1.072 1.353q-.318.209-.667.365a1.15 1.15 0 0 1-.975-.133 1 1 0 0 1-.177-.168zm-5.837-.008H2.088v-2.61h2.256c.911 0 1.453.45 1.453 1.305 0 .803-.518 1.305-1.493 1.305M17.745 9.78V7.259h2.212c.92 0 1.494.385 1.494 1.26 0 .799-.538 1.261-1.494 1.261zM2.088 7.062h2.007c.763 0 1.216.401 1.216 1.116s-.453 1.168-1.32 1.168H2.088z"/></svg>����mkdocs-material-9.6.4/material/templates/.icons/simple/bandsintown.svg������������������������������0000664�0000000�0000000�00000000273�14753064456�0026153�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.399 12.8v4.8H19.2v1.6H4.799V0H0v24h24V12.8zm4.801-8H6.399v6.4H11.2zm6.4 0h-4.8v6.4h4.8zM24 0h-4.8v11.2H24z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bankofamerica.svg����������������������������0000664�0000000�0000000�00000002366�14753064456�0026414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.194 7.57c.487-.163 1.047-.307 1.534-.451-1.408-.596-3.176-1.227-4.764-1.625-.253.073-1.01.271-1.534.434.541.162 2.328.577 4.764 1.642m-8.896 6.785c.577.343 1.19.812 1.786 1.209 3.952-3.068 7.85-5.432 12.127-6.767-.596-.307-1.119-.578-1.787-.902-2.562.65-6.947 2.4-12.126 6.46m-.758-6.46c-2.112.974-4.331 2.31-5.54 3.085.433.199.866.361 1.461.65 2.671-1.805 4.764-2.905 5.594-3.266-.595-.217-1.154-.361-1.515-.47zm8.066.234c-.686-.379-3.068-1.263-4.71-1.642-.487.18-1.173.451-1.642.65.595.162 2.815.758 4.71 1.714.487-.235 1.173-.523 1.642-.722m-3.374 1.552c-.56-.27-1.173-.523-1.643-.74-1.425.704-3.284 1.769-5.63 3.447.505.27 1.047.595 1.624.92 1.805-1.335 3.627-2.598 5.649-3.627m1.732 8.825c3.79-3.249 9.113-6.407 12.036-7.544a48 48 0 0 0-1.949-1.155c-3.771 1.246-8.174 4.007-12.108 7.129.667.505 1.371 1.028 2.02 1.57zm2.851-.235h-.108l-.18-.27h-.109v.27h-.072v-.596h.27c.055 0 .109 0 .145.036.054.019.072.073.072.127 0 .108-.09.162-.198.162zm-.289-.343c.09 0 .199.018.199-.09 0-.072-.072-.09-.144-.09h-.163v.18zm-.523.036c0-.289.235-.523.541-.523s.542.234.542.523a.543.543 0 0 1-.542.542.53.53 0 0 1-.54-.542m.107 0c0 .235.199.433.451.433a.424.424 0 1 0 0-.848c-.27 0-.45.199-.45.415"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/barclays.svg���������������������������������0000664�0000000�0000000�00000004263�14753064456�0025430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.043 3.629a3.2 3.2 0 0 0-1.048-.54 3 3 0 0 0-.937-.144h-.046c-.413.006-1.184.105-1.701.71a1.14 1.14 0 0 0-.226 1.023.9.9 0 0 0 .555.63s.088.032.228.058c-.04.078-.136.214-.136.214-.179.265-.576.612-1.668.612h-.063c-.578-.038-1.056-.189-1.616-.915-.347-.45-.523-1.207-.549-2.452-.022-.624-.107-1.165-.256-1.6-.1-.29-.333-.596-.557-.742a2.6 2.6 0 0 0-.694-.336c-.373-.12-.848-.14-1.204-.146-.462-.01-.717.096-.878.292-.027.033-.032.05-.068.046-.084-.006-.272-.006-.328-.006-.264 0-.498.043-.721.09-.47.1-.761.295-1.019.503-.12.095-.347.365-.399.653a.76.76 0 0 0 .097.578c.14-.148.374-.264.816-.266.493-.002 1.169.224 1.406.608.336.547.27.99.199 1.517-.183 1.347-.68 2.048-1.783 2.203q-.288.04-.56.04c-.776 0-1.34-.248-1.63-.716a.7.7 0 0 1-.088-.168s.087-.021.163-.056c.294-.14.514-.344.594-.661.09-.353.004-.728-.23-1.007-.415-.47-.991-.708-1.713-.708-.4 0-.755.076-.982.14-.908.256-1.633.947-2.214 2.112-.412.824-.7 1.912-.81 3.067-.11 1.13-.056 2.085.019 2.949.124 1.437.363 2.298.708 3.22a15.7 15.7 0 0 0 1.609 3.19c.09-.094.15-.161.308-.318.188-.19.724-.893.876-1.11.19-.27.51-.779.664-1.147l.15.119c.16.127.252.348.249.592-.003.215-.053.464-.184.922a8.7 8.7 0 0 1-.784 1.818c-.189.341-.27.508-.199.584.015.015.038.03.06.026.116 0 .34-.117.585-.304.222-.17.813-.672 1.527-1.675a15.5 15.5 0 0 0 1.452-2.521c.12.046.255.101.317.226a.92.92 0 0 1 .08.563c-.065.539-.379 1.353-.63 1.94-.425.998-1.208 2.115-1.788 2.877-.022.03-.163.197-.186.227.9.792 1.944 1.555 3.007 2.136.725.408 2.203 1.162 3.183 1.424.98-.262 2.458-1.016 3.184-1.424a17 17 0 0 0 3.003-2.134c-.05-.076-.13-.158-.183-.23-.582-.763-1.365-1.881-1.79-2.875-.25-.59-.563-1.405-.628-1.94-.028-.221-.002-.417.08-.565.033-.098.274-.218.317-.226.405.884.887 1.73 1.452 2.522.715 1.003 1.306 1.506 1.527 1.674.248.191.467.304.586.304a.07.07 0 0 0 .044-.012c.094-.069.017-.234-.183-.594a9 9 0 0 1-.786-1.822c-.13-.456-.18-.706-.182-.92-.004-.246.088-.466.248-.594l.15-.118c.155.373.5.919.665 1.147.15.216.685.919.876 1.11.156.158.22.222.308.32a15.7 15.7 0 0 0 1.609-3.19c.343-.923.583-1.784.707-3.222.075-.86.128-1.81.02-2.948-.101-1.116-.404-2.264-.81-3.068-.249-.49-.605-1.112-1.171-1.566"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/baremetrics.svg������������������������������0000664�0000000�0000000�00000000677�14753064456�0026135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.109 7.951 1.485 2.464a3.5 3.5 0 0 1 0 3.275l-4.505 7.717a3.33 3.33 0 0 1-2.94 1.793H7.83a3.34 3.34 0 0 1-2.94-1.793l-1.555-2.632 6.139-5.695 4.447 2.578a1.093 1.093 0 0 0 1.456-.198zm-13.39.628L1.99 16.15.406 13.725a3.5 3.5 0 0 1 0-3.27L5.158 2.59A3.34 3.34 0 0 1 8.1.8h8.008c1.228 0 2.357.687 2.942 1.79l1.616 2.722-6.017 5.592-4.432-2.574a1.1 1.1 0 0 0-1.499.248z"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/barmenia.svg���������������������������������0000664�0000000�0000000�00000001105�14753064456�0025376�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.046 13.427v6.395h5.709a5.4 5.4 0 0 0 2.377-.422q1.532-.806 1.532-2.999a2.59 2.59 0 0 0-1.492-2.571 5.8 5.8 0 0 0-2.347-.403zm0-9.26v5.287h5.714a4.7 4.7 0 0 0 2.486-.592q.955-.597.955-2.109 0-1.676-1.263-2.213a8.6 8.6 0 0 0-2.78-.368zm12.761-1.611a6.2 6.2 0 0 1 1.079 3.66 5.43 5.43 0 0 1-1.089 3.531 5.6 5.6 0 0 1-1.791 1.388 5.23 5.23 0 0 1 2.716 2.113 6.47 6.47 0 0 1 .915 3.481 7.07 7.07 0 0 1-1.05 3.854 6.47 6.47 0 0 1-4.316 3.093c-1.093.222-2.207.33-3.322.324H2.361V0H13.72q4.296.07 6.087 2.556"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/basecamp.svg���������������������������������0000664�0000000�0000000�00000001324�14753064456�0025376�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.652 22.453c-4.033 0-7.575-1.554-10.244-4.495a1.11 1.11 0 0 1-.22-1.133c.701-1.889 2.594-6.281 5.021-6.295h.013c1.219 0 2.13.965 2.864 1.741.22.232.555.587.782.761.566-.559 1.678-2.416 2.542-4.278a1.112 1.112 0 0 1 2.017.936c-2.621 5.65-4.019 5.65-4.478 5.65-1.022 0-1.762-.784-2.479-1.542-.32-.339-.988-1.045-1.248-1.045-.567.095-1.809 2.053-2.697 4.204 2.193 2.172 4.923 3.272 8.127 3.272 4.395 0 7.683-1.196 9.1-3.295-.49-5.585-3.565-13.163-9.1-13.163-4.686 0-8.216 3.264-10.492 9.7a1.112 1.112 0 0 1-2.096-.74C2.688 5.308 6.923 1.546 12.652 1.546c7.482 0 10.93 9.561 11.345 15.588a1.1 1.1 0 0 1-.145.631c-1.74 3.023-5.718 4.687-11.2 4.687Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/baserow.svg����������������������������������0000664�0000000�0000000�00000001360�14753064456�0025265�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.291.068A1.29 1.29 0 0 0 0 1.36v3.352a1.29 1.29 0 0 0 1.291 1.291h3.354a1.29 1.29 0 0 0 1.289-1.291V1.359A1.29 1.29 0 0 0 4.644.07Zm9.033 0a1.29 1.29 0 0 0-1.29 1.291v3.352a1.29 1.29 0 0 0 1.29 1.291H22.71A1.29 1.29 0 0 0 24 4.711V1.359A1.29 1.29 0 0 0 22.709.07ZM1.291 9.033A1.29 1.29 0 0 0 0 10.323v3.353a1.29 1.29 0 0 0 1.291 1.29h21.418A1.29 1.29 0 0 0 24 13.677v-3.354a1.29 1.29 0 0 0-1.291-1.289Zm0 8.965A1.29 1.29 0 0 0 0 19.289v3.352a1.29 1.29 0 0 0 1.291 1.29h12.385a1.29 1.29 0 0 0 1.29-1.29v-3.352a1.29 1.29 0 0 0-1.29-1.291zm18.064 0a1.29 1.29 0 0 0-1.289 1.291v3.352a1.29 1.29 0 0 0 1.29 1.29h3.353A1.29 1.29 0 0 0 24 22.642V19.29a1.29 1.29 0 0 0-1.291-1.291z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/basicattentiontoken.svg����������������������0000664�0000000�0000000�00000001371�14753064456�0027675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.917 21.886.062-.124v-.042c0-.041.021-.083.021-.103v-.042c0-.041 0-.103-.02-.145l-.063-.124v-.021L12.54 2.135a.62.62 0 0 0-.54-.311.65.65 0 0 0-.539.31L.083 21.265v.021l-.062.124C0 21.451 0 21.513 0 21.554v.042c0 .041 0 .083.02.103v.042c.021.041.021.083.063.124l.02.021c.021.041.042.083.084.104l.062.062c.02.02.041.041.062.041.02.021.062.021.083.042.02 0 .041.02.062.02a.5.5 0 0 0 .166.021h22.736c.062 0 .103 0 .165-.02.021 0 .042-.021.063-.021.041-.021.062-.021.103-.042.02-.02.042-.02.062-.041l.062-.062a.4.4 0 0 0 .083-.104zM12 11.316l3.627 5.845H8.373zm-.622-1.347-4.56 7.357-4.455 2.55 9.015-15.15zM7.42 18.425h9.14l4.456 2.55H2.964zm9.761-1.099-4.56-7.357V4.725l9.016 15.15z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bastyon.svg����������������������������������0000664�0000000�0000000�00000001616�14753064456�0025306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.333 19.849a5.44 5.44 0 0 0-6.5-.829 7.9 7.9 0 0 1-3.837.987A8 8 0 0 1 5 15.91a5.47 5.47 0 0 1-.037 5.359 11.6 11.6 0 0 0 12.671.9 1.825 1.825 0 0 1 2.188.3L21.356 24l2.562-2.568Zm-2.096.404a11.664 11.664 0 0 0 1.931-13.89 1.836 1.836 0 0 1 .3-2.193L24 2.635 21.438.067l-1.58 1.589a5.47 5.47 0 0 0-.827 6.516A8 8 0 0 1 15.916 19l2.086 3c.917-.51 1.471-.981 2.235-1.747m-.005-16.481A11.6 11.6 0 0 0 6.373 1.836a1.8 1.8 0 0 1-.9.235 1.82 1.82 0 0 1-1.291-.536L2.654 0 .091 2.568l1.586 1.583A5.42 5.42 0 0 0 5.476 5.7a5.4 5.4 0 0 0 2.7-.718A7.96 7.96 0 0 1 18.985 8.1l3.083-1.94a10.5 10.5 0 0 0-1.836-2.388M5 15.909l-.034-.062A8 8 0 0 1 8.084 5.015l-2.023-3.03C5.144 2.5 4.527 3 3.763 3.766a11.664 11.664 0 0 0-1.931 13.89 1.836 1.836 0 0 1-.3 2.193L0 21.384l2.562 2.568 1.579-1.589a5.5 5.5 0 0 0 .824-1.094A5.47 5.47 0 0 0 5 15.909"/></svg>������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bat.svg��������������������������������������0000664�0000000�0000000�00000001431�14753064456�0024370�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.326 5.871a.17.17 0 0 0-.083.023l-8.08 4.735a.33.33 0 0 0 0 .568l2.964 1.736.667.39c.306.18 1.555.93 1.898 1.136a.17.17 0 0 0 .176 0l3.245-1.891a.14.14 0 0 0 .072-.126.15.15 0 0 0-.073-.126c-.412-.238-1.294-.748-1.625-.942l-.793-.465 1.521-.88a.56.56 0 0 0 .277-.483v-3.51a.166.166 0 0 0-.166-.165m7.349 0a.165.165 0 0 0-.167.166v3.51a.56.56 0 0 0 .277.481l1.514.885-3.164 1.856a.246.246 0 0 1-.37-.212V8.274a.19.19 0 0 0-.093-.162.19.19 0 0 0-.186-.006c-.12.062-1.095.532-1.54.746a57 57 0 0 1-1.432-.672c-.059-.03-.126-.021-.186.006-.05.023-.092.096-.092.163v4.208c0 .088.011.38-.304.562l-3.294 1.904 5.363 3.106 11.836-6.932a.33.33 0 0 0 0-.568l-2.814-1.65-.214-.125-.002-.001-5.05-2.959a.17.17 0 0 0-.082-.023z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bata.svg�������������������������������������0000664�0000000�0000000�00000003572�14753064456�0024541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.397 13.003c.244-1.308 1.795-1.974 2.936-1.91.436.025.82.154 1.039.41.09-.09.18-.192.269-.282.051-.051.205-.038.346-.013.154.026.32.09.423.09s.36-.077.603-.115.461-.026.423.064l-.218.538-.705 1.73c-.141.347.41.257 1.166-.55.129.09.193.102.321.423-.654.564-1.27.961-2.128 1.256-.77.27-1.346-.115-1.526-.756-1.102 1.025-2.628 1.013-3.064-.141-.718.359-1.564.73-1.923.833-.282.077-.526.141-.77.141-.384 0-.794-.346-.666-.872-.628.282-1.128.462-1.846.705-.77.27-1.218-.025-1.398-.666-1.102 1.025-2.628 1.013-3.064-.141-.436.205-1.025.513-1.577.73-.884.398-1.923.321-2.692-.487l.257-.397c.359.384.807.372 1.153.051.372-.333.603-.974.436-1.513-.077-.23-.333-.41-.833-.384l.154-.41c.5-.013.897-.09 1.115-.398.308-.449.308-1.128-.346-1.115a1.3 1.3 0 0 0-.41.077c-.116.333-.308.73-.475 1.14-.371.95-.782 2-1.256 2.68-.564.808-1.18.962-1.667.936-.512-.039-.91-.192-1.474-.692 0-.218.013-.308.064-.577.218.269.898.564 1.115.243.488-.718 1.026-2.102 1.436-3-.359.116-.705.346-1.18.68 0-.051-.153-.18-.153-.334.77-.884 2.115-1.423 3.026-1.615 1.397-.295 2.884.128 3.115 1.013.154.59-.538 1.14-1.192 1.218.372.218.769.602.872 1.077.05.23.038.487-.039.73.218-.102.487-.23.654-.307.27-1.885 3.192-2.487 3.987-1.59l.27-.282c.05-.051.204-.038.346-.013.153.026.32.09.423.09s.359-.077.602-.115c.244-.039.462-.026.423.064l-.91 2.269c-.205.513 1.308-.398 1.397-.449l.654-1.384-.666.012.115-.564h.744c.128-.166.153-.359.32-.474.218-.167.718-.077.949-.23.205-.129.359-.321.538-.629.154-.256.744-.192.628.051l-.512 1.295h.653c.308.013.039.539-.307.539l-.539.012-.628 1.629c-.205.5.59.025 1.192-.32zm-6.012-1.115c-.077-.244-.282-.308-.475-.295-.436.051-.859.538-1.077.872-.346.538-.269 1.346.295 1.192.577-.154 1.36-1.41 1.257-1.77zm9.666 0c-.077-.244-.282-.308-.474-.295-.436.051-.86.538-1.077.872-.346.538-.27 1.346.295 1.192.577-.154 1.359-1.41 1.256-1.77Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/battledotnet.svg�����������������������������0000664�0000000�0000000�00000002136�14753064456�0026316�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.94 8.296C15.9 6.892 11.534 6 7.426 6.332c.206-1.36.714-2.308 1.548-2.508 1.148-.275 2.4.48 3.594 1.854.782.102 1.71.28 2.355.429C12.747 2.013 9.828-.282 7.607.565c-1.688.644-2.553 2.97-2.448 6.094-2.2.468-3.915 1.3-5.013 2.495-.056.065-.181.227-.137.305.034.058.146-.008.194-.04 1.274-.89 2.904-1.373 5.027-1.676.303 3.333 1.713 7.56 4.055 10.952-1.28.502-2.356.536-2.946-.087-.812-.856-.784-2.318-.19-4.04a27 27 0 0 1-.807-2.254c-2.459 3.934-2.986 7.61-1.143 9.11 1.402 1.14 3.847.725 6.502-.926 1.505 1.672 3.083 2.74 4.667 3.094.084.015.287.043.332-.034.034-.06-.08-.124-.131-.149-1.408-.657-2.64-1.828-3.964-3.515 2.735-1.929 5.691-5.263 7.457-8.988 1.076.86 1.64 1.773 1.398 2.595-.336 1.131-1.615 1.84-3.403 2.185a28 28 0 0 1-1.548 1.826c4.634.16 8.08-1.22 8.458-3.565.286-1.786-1.295-3.696-4.053-5.17.696-2.139.832-4.04.346-5.588-.029-.08-.106-.27-.196-.27-.068 0-.067.13-.063.187.135 1.547-.263 3.2-1.062 5.19zm-8.533 9.869c-1.96-3.145-3.09-6.849-3.082-10.594 3.702-.124 7.474.748 10.714 2.627-1.743 3.269-4.385 6.1-7.633 7.966z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bazel.svg������������������������������������0000664�0000000�0000000�00000000626�14753064456�0024724�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.747 23.82 6.25 18.32v-5.535l5.498 5.499zm-.103-17.641.176-.177L6 .18.177 6.002l5.822 5.827zM0 6.532v5.535l5.749 5.754v-5.535l-.104-.103zm17.648 5.65-5.65-5.65-5.646 5.65 5.645 5.646zm.103 5.89v-5.286l-5.504 5.499v5.535l5.504-5.499zM24 6.531l-5.645 5.65-.104.104v5.535L24 12.067zm-.177-.53L18.001.18l-5.827 5.822 5.827 5.827z"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/beatport.svg���������������������������������0000664�0000000�0000000�00000001464�14753064456�0025450�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.429 17.055a7.1 7.1 0 0 1-.794 3.246 6.9 6.9 0 0 1-2.181 2.492 6.7 6.7 0 0 1-3.063 1.163 6.65 6.65 0 0 1-3.239-.434 6.8 6.8 0 0 1-2.668-1.932 7 7 0 0 1-1.481-2.983 7.1 7.1 0 0 1 .049-3.345 7 7 0 0 1 1.566-2.937l-4.626 4.73-2.421-2.479 5.201-5.265a3.8 3.8 0 0 0 1.066-2.675V0h3.41v6.613a7.2 7.2 0 0 1-.519 2.794 7 7 0 0 1-1.559 2.353l-.153.156a6.77 6.77 0 0 1 3.49-1.725 6.7 6.7 0 0 1 3.845.5 6.87 6.87 0 0 1 2.959 2.564 7.1 7.1 0 0 1 1.118 3.8m-3.089 0a3.9 3.9 0 0 0-.611-2.133 3.75 3.75 0 0 0-1.666-1.424 3.65 3.65 0 0 0-2.158-.233 3.7 3.7 0 0 0-1.92 1.037 3.85 3.85 0 0 0-1.031 1.955 3.9 3.9 0 0 0 .205 2.213c.282.7.76 1.299 1.374 1.721a3.67 3.67 0 0 0 2.076.647 3.64 3.64 0 0 0 2.635-1.096c.347-.351.622-.77.81-1.231s.285-.956.286-1.456"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/beats.svg������������������������������������0000664�0000000�0000000�00000000316�14753064456�0024721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.625 0v15h8.25a7.5 7.5 0 0 0 0-15zm17.016 11.705c-1.571 3.261-4.91 5.517-8.766 5.517h-8.25V24h11.25a7.5 7.5 0 0 0 5.766-12.295"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/beatsbydre.svg�������������������������������0000664�0000000�0000000�00000000332�14753064456�0025745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.01 15.6a3.6 3.6 0 1 0-3.6-3.6 3.6 3.6 0 0 0 3.6 3.6m0-15.598a12 12 0 0 0-3.6.552V7.2A6 6 0 1 1 6.01 12V1.603a11.999 11.999 0 1 0 6-1.601"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/beatstars.svg��������������������������������0000664�0000000�0000000�00000000425�14753064456�0025614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.217 11.996-3.308 1.079v3.478l-2.052-2.818-3.309 1.079 2.043-2.818-2.043-2.819 3.31 1.08 2.05-2.819v3.487zm0 0v7.277H6.854V4.584h10.363zl4.585-1.49v-7.67L19.135 0H2.198v24h16.92l2.684-2.685v-7.83z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/beekeeperstudio.svg��������������������������0000664�0000000�0000000�00000001404�14753064456�0027001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.01 4.624 13.853.504a3.72 3.72 0 0 0-3.741 0L8.242 1.589v10.42a3.755 3.755 0 0 0 3.742 3.758c.64 0 1.296-.164 1.87-.509a3.74 3.74 0 0 0 1.871-3.249 3.755 3.755 0 0 0-3.741-3.758V5.904c.64 0 1.296.164 1.87.508l2.035 1.182a3.74 3.74 0 0 1 1.871 3.25v2.346c0 1.329-.706 2.576-1.87 3.249l-2.036 1.182c-.574.328-1.23.508-1.87.508s-1.297-.164-1.871-.509L8.078 16.44a3.74 3.74 0 0 1-1.87-3.25V2.754l-3.234 1.87a3.74 3.74 0 0 0-1.87 3.25v8.254c0 1.33.705 2.577 1.87 3.25l7.155 4.118a3.72 3.72 0 0 0 3.742 0l7.155-4.119a3.74 3.74 0 0 0 1.87-3.249V7.873a3.82 3.82 0 0 0-1.887-3.25M9.685 9.054a3.5 3.5 0 0 0-.558.542V6.97l.558-.328zm1.428-.689c-.197.05-.378.099-.558.18V6.184c.18-.082.377-.132.558-.18z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/behance.svg����������������������������������0000664�0000000�0000000�00000002564�14753064456�0025217�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.969 16.927a2.56 2.56 0 0 0 1.901.677 2.5 2.5 0 0 0 1.531-.475c.362-.235.636-.584.779-.99h2.585a5.1 5.1 0 0 1-1.9 2.896 5.3 5.3 0 0 1-3.091.88 5.8 5.8 0 0 1-2.284-.433 4.9 4.9 0 0 1-1.723-1.211 5.7 5.7 0 0 1-1.08-1.874 7 7 0 0 1-.383-2.393c-.005-.8.129-1.595.396-2.349a5.31 5.31 0 0 1 5.088-3.604 4.9 4.9 0 0 1 2.376.563c.661.362 1.231.87 1.668 1.485a6.2 6.2 0 0 1 .943 2.133c.194.821.263 1.666.205 2.508h-7.699c-.063.79.184 1.574.688 2.187M6.947 4.084a8 8 0 0 1 1.928.198 4.3 4.3 0 0 1 1.49.638c.418.303.748.711.958 1.182.241.579.357 1.203.341 1.83a3.5 3.5 0 0 1-.506 1.961 3.7 3.7 0 0 1-1.503 1.287 3.6 3.6 0 0 1 2.027 1.437c.464.747.697 1.615.67 2.494a4.6 4.6 0 0 1-.423 2.032 3.95 3.95 0 0 1-1.163 1.413 5.1 5.1 0 0 1-1.683.807 7.1 7.1 0 0 1-1.928.259H0V4.084zm-.235 12.9q.464.006.916-.099a2.2 2.2 0 0 0 .766-.332c.228-.158.411-.371.534-.619.142-.317.208-.663.191-1.009a2.08 2.08 0 0 0-.642-1.715 2.62 2.62 0 0 0-1.696-.505h-3.54v4.279zm13.635-5.967a2.13 2.13 0 0 0-1.654-.619 2.34 2.34 0 0 0-1.163.259 2.5 2.5 0 0 0-.738.62 2.4 2.4 0 0 0-.396.792q-.111.36-.137.734h4.769a3.24 3.24 0 0 0-.679-1.785zm-13.813-.648a2.25 2.25 0 0 0 1.423-.433c.399-.355.607-.88.56-1.413a1.9 1.9 0 0 0-.178-.891 1.3 1.3 0 0 0-.495-.533 1.85 1.85 0 0 0-.711-.274 4 4 0 0 0-.835-.073H3.241v3.631h3.293zM21.62 5.122h-5.976v1.527h5.976z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/beijingsubway.svg����������������������������0000664�0000000�0000000�00000002726�14753064456�0026474�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.729 23.936c-2.182-.257-4.152-1.048-5.948-2.389-.586-.437-1.636-1.465-2.11-2.064-1.11-1.404-1.854-2.957-2.313-4.828-.303-1.232-.41-2.309-.335-3.35.069-.955.409-2.437.811-3.536.371-1.014 1.151-2.382 1.864-3.269a15.5 15.5 0 0 1 1.55-1.593C6.625.878 9.607-.14 12.69.026 15.358.17 17.738 1.1 19.738 2.78c1.904 1.6 3.36 3.801 3.883 5.869.067.263.113.486.104.495s-.636.022-1.392.03l-1.375.014-.132-.342c-.674-1.738-2.194-3.564-3.948-4.743-.806-.541-1.555-.874-2.296-1.021-2.136-.424-4.15-.276-5.829.428C6.21 4.576 4.078 6.948 3.317 9.559c-.222.761-.274 1.185-.273 2.199.002 1.29.139 2.128.549 3.365.497 1.499 1.083 2.438 2.198 3.525 1.249 1.216 2.839 2.146 4.121 2.407 1.463.299 3.868.029 5.887-.662 1.911-.654 3.511-2.086 4.6-4.116.21-.391.681-1.508.682-1.615 0-.045-.076-.05-.437-.03-.241.014-1.02.025-1.731.025h-1.294l-.017.088c-.01.048-.047.245-.082.438-.103.558-.273 1.029-.615 1.705l-.319.63-9.514.02V6.445h9.488l.203.316c.591.922.914 2.116 1.049 3.885.022.288.04.713.04.944v.42H24v.247c0 .372-.105 1.39-.195 1.887-.529 2.932-1.96 5.434-4.086 7.148-1.853 1.493-3.982 2.387-6.306 2.647-.648.072-2.063.07-2.684-.003m3.64-8.802c.163-.171.404-.539.537-.82.112-.235.123-.295.123-.632 0-.36-.006-.384-.164-.701-.091-.18-.26-.44-.378-.577l-.214-.25.125-.153c.238-.291.308-.401.459-.711.369-.76.232-1.527-.382-2.131l-.187-.184-2.305-.025-2.306-.026.01 3.13.01 3.129 2.277.02c1.252.011 2.28.024 2.285.029s.054-.039.11-.098"/></svg>������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bem.svg��������������������������������������0000664�0000000�0000000�00000001250�14753064456�0024364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 5.163h5.61v1.65H0Zm0-3.065h5.61v1.65H0Zm10.067 6.106H0v1.65h9.69c1.06 0 3.536.024 4.455 1.51v-.92c-.448-1.462-1.768-2.24-4.078-2.24m.023 3.065H0v1.65h9.69c2.357 0 3.842.095 4.455.425v-.731c-.471-1.155-2.451-1.344-4.055-1.344m-.023 7.78H0V17.4h9.69c1.06 0 3.536-.024 4.455-1.509v.92c-.448 1.461-1.768 2.24-4.078 2.24zm.023-3.065H0v-1.65h9.69c2.357 0 3.842-.094 4.455-.424v.73c-.471 1.156-2.451 1.344-4.055 1.344m6.507 5.918H24v-1.014h-7.19c-.637 0-2.146-.023-2.688-.896v.566c.26.872 1.06 1.344 2.475 1.344m-.023-1.863h7.403v-1.013H16.81c-1.439 0-2.334-.047-2.688-.26v.448c.283.708 1.485.825 2.452.825"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bentley.svg����������������������������������0000664�0000000�0000000�00000033626�14753064456�0025277�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.535 8.114a5.4 5.4 0 0 0-1.49.34c-.131.05-.269.135-.414.079-.654-.153-1.331-.096-1.992-.025-.859.09-1.72-.003-2.579-.045a22 22 0 0 0-2.349.05c-.713.044-1.429-.01-2.138-.086-.088-.002-.178-.02-.265-.002-.135.088-.22.232-.308.363v.068c.185.158.404.262.625.358-.062.151-.101.31-.13.47.264.124.54.227.796.368-.029.095-.072.186-.083.285-.006.059.024.121.083.142.21.11.448.142.665.23.021.01.05.02.05.048.017.128.02.258.047.385a.2.2 0 0 0 .057.035c.287.095.588.131.881.196.034.11.022.249.106.336.375.196.82.1 1.213.228.098.096.075.29.223.344.296.09.614.01.918.05.069.079.077.193.144.273a.25.25 0 0 0 .169.076c.287.008.562-.087.846-.12.059.099.087.247.213.277.229.045.452-.042.665-.116.08.26.166.521.303.758.473.858 1.288 1.499 2.198 1.841.128.036.172.175.238.276.127-.048.252-.102.384-.134l.2.297q.178-.09.356-.184.12.14.242.28l.31-.22q.134.119.254.251h.035c.096-.085.187-.177.282-.263q.158.116.316.235.121-.143.246-.284.18.091.357.184.094-.147.185-.295c.14.031.27.089.404.136q.048-.103.102-.204c.053-.142.22-.164.336-.232.972-.447 1.78-1.286 2.099-2.318.162.06.345.134.517.064.09-.046.125-.144.168-.228.24.053.48.154.73.102.13-.039.194-.161.253-.271.23.03.456.095.69.075.104-.013.247 0 .318-.096.059-.096.067-.215.124-.312.315-.042.648.042.954-.072.096-.108.097-.27.184-.383.247-.018.495 0 .742-.018a.29.29 0 0 0 .215-.123c.056-.107.064-.23.1-.344.007-.024.02-.05.044-.061.241-.1.534-.022.755-.177.108-.12.021-.31.088-.443.207-.118.477-.088.669-.241.129-.11.032-.282.014-.42.225-.077.472-.119.657-.279-.052-.14-.113-.275-.17-.412A5 5 0 0 0 24 8.871v-.087a1.2 1.2 0 0 0-.272-.34c-.071-.053-.17-.01-.25-.018-.696.062-1.396.13-2.095.092-.417-.022-.833-.062-1.25-.062-.522 0-1.044-.015-1.564.027-.77.046-1.544.103-2.313.017-.657-.077-1.335-.115-1.981.053-.103.043-.211.009-.305-.037-.516-.234-1.077-.348-1.638-.402zm.521.155c.327.014.654.049.974.122.31.072.622.149.91.287-.103.065-.227.164-.354.11a5.1 5.1 0 0 0-1.716-.29c-.326.02-.652.046-.97.125-.204.04-.4.116-.606.149-.096-.026-.184-.073-.272-.119a5.7 5.7 0 0 1 2.034-.384m11.467.278c.17-.01.308.126.395.26a2.3 2.3 0 0 1-1.093.252c-1.65.027-3.298.095-4.947.137q0 .04.004.081a3 3 0 0 1-.048-.154c.361-.05.72-.12 1.085-.142.668-.05 1.34-.068 2.01-.075a.4.4 0 0 0 .245-.072c-.533-.057-1.07-.026-1.604-.013-.371.027-.744.033-1.114.08-.495.06-.989.154-1.489.16-.312.005-.625.032-.937.01-.39-.007-.786-.042-1.17.045-.108.035-.239.073-.282.192-.093.188.01.398.095.569.103.217.279.425.247.682-.015.091-.092.151-.162.203a2.4 2.4 0 0 1-.198-.251c.04-.08.106-.155.088-.252-.033-.2-.178-.358-.314-.498-.196-.19-.414-.367-.547-.61-.039-.07-.066-.17.009-.227.22-.156.491-.209.752-.252.715-.1 1.436-.015 2.153.015.353.035.709.03 1.063 0 .838-.054 1.68-.138 2.52-.082q.567.033 1.135.047c.692.028 1.38-.062 2.07-.101zM.55 8.55c.196-.002.392.027.587.04.542.048 1.086.079 1.63.056.674-.008 1.345-.088 2.019-.052.687.022 1.37.098 2.058.119.525-.018 1.049-.06 1.574-.084.533-.017 1.087-.011 1.59.187.097.04.217.093.24.207-.02.158-.14.28-.238.399-.175.216-.429.36-.57.605-.11.14-.126.35-.005.488a2 2 0 0 1-.219.243c-.083-.076-.16-.17-.15-.292.038-.346.347-.593.383-.94.031-.121-.031-.239-.108-.327a1.2 1.2 0 0 0-.468-.124c-.562-.048-1.126.027-1.689-.007-.557.004-1.107-.093-1.657-.167a27 27 0 0 0-2.115-.106c-.195-.003-.39.015-.585.032.063.052.14.087.225.078.733.01 1.466.022 2.197.085.307.029.61.084.916.131l-.023.084c-.536-.033-1.074-.028-1.611-.05-.965-.035-1.93-.065-2.895-.081-.411-.027-.841.017-1.234-.134-.11-.037-.213-.088-.317-.136.076-.093.153-.199.27-.24Q.452 8.55.55 8.55m11.455.114a4.3 4.3 0 0 1 1.597.296c.004.104-.029.218.024.313a1.3 1.3 0 0 0 .16.229c.18.212.41.383.588.597a.7.7 0 0 1 .157.272 3.8 3.8 0 0 0-1.267-.755 3.85 3.85 0 0 0-3.158.28c-.174.098-.332.22-.486.348l-.152.128a.5.5 0 0 1 .06-.147c.223-.315.556-.533.781-.846.11-.133.1-.31.083-.47a5.6 5.6 0 0 1 1.613-.245m5.762.455q.024.066.044.132c-.313.18-.688.135-1.032.09-.078-.007-.124-.074-.155-.139.38-.041.763-.038 1.143-.083m-11.55.016q.58.007 1.154.064c-.03.051-.054.124-.122.132-.203.035-.41.041-.614.049-.158.01-.303-.062-.44-.129zm1.207.055q.231.003.463.014c.41.017.831-.016 1.23.105.099.034.208.08.259.178.039.172-.06.325-.144.464-.083.151-.197.293-.235.464-.048.16.05.294.124.423-.112.004-.25.051-.338-.04-.041-.082.007-.179.024-.263l-.16.143-.195-.012c-.015-.203.141-.35.221-.521-.138.123-.278.297-.483.281-.081.003-.143-.104-.093-.169.111-.141.255-.254.359-.402-.124.096-.25.195-.397.251a.46.46 0 0 1-.326-.038c.018-.204.234-.276.35-.417-.127.053-.24.154-.387.145-.058.002-.115-.016-.17-.029-.01-.173.171-.234.273-.337-.09.02-.177.062-.27.06-.062-.022-.11-.072-.164-.108q.023-.099.06-.192zm9.156 0c.018.078.087.178-.005.237-.1.125-.268.022-.39-.002.112.096.285.167.284.343-.096.017-.2.05-.295.01-.088-.036-.173-.081-.259-.122q.04.04.084.078l.087.076q.087.075.16.164c.016.068-.033.14-.106.139-.233.059-.415-.127-.584-.254.089.121.195.226.297.335.051.054.046.135.064.203-.084.011-.174.044-.256.008-.128-.052-.225-.155-.33-.243.091.16.23.305.216.502l-.208.008-.137-.132c.008.082.06.176.007.25-.062.07-.158.065-.246.063q-.045 0-.086.003c.047-.119.14-.222.137-.356-.036-.35-.358-.587-.406-.932-.01-.149.154-.218.273-.261.554-.145 1.133-.073 1.7-.117zM.698 9.192c.77 0 1.54.04 2.31.047.963.021 1.926.028 2.888.053.2-.014.365.116.53.207l-.018.19-.089.043.026-.073c-.899.024-1.796.085-2.695.112-.566.012-1.13.06-1.697.05A3.7 3.7 0 0 1 .89 9.705c-.115-.034-.247-.052-.338-.137-.001-.135.073-.264.145-.376zm22.62.022c.064.111.132.222.179.342-.43.14-.89.133-1.336.116-.828-.002-1.656-.055-2.484-.083-.699-.032-1.398-.06-2.097-.1.143-.102.305-.202.486-.196 1.751-.007 3.501-.078 5.252-.08zm-16.073.214c.077.005.136.074.194.12a.14.14 0 0 1 .05.116c-.078.06-.181.068-.273.092-.186.034-.37.09-.56.097-.067-.026-.14-.055-.185-.116-.016-.084.01-.2.104-.222.21-.042.425-.054.636-.085a.1.1 0 0 1 .034-.002m9.465.008c.235 0 .47.03.7.073.109.021.106.15.134.234-.09.05-.177.13-.29.107-.163-.025-.323-.066-.485-.096-.087-.022-.187-.029-.258-.09.005-.108.116-.177.2-.228zm-4.785.138c.908-.02 1.842.29 2.495.935.358.365.62.856.612 1.377.01.47-.199.926-.507 1.274-.566.642-1.415.983-2.256 1.046a3.58 3.58 0 0 1-2.17-.514c-.345-.22-.66-.5-.867-.858a1.85 1.85 0 0 1-.227-1.365c.099-.415.356-.774.668-1.057.565-.51 1.318-.775 2.07-.83q.09-.005.182-.008m5.64.023c.218-.005.435.025.653.035 1.44.088 2.882.14 4.322.224.093.014.198-.004.283.043.057.083.072.185.087.283-.302.185-.678.14-1.015.149-.425-.028-.85-.08-1.274-.121a16 16 0 0 0-.425-.036c-.872-.087-1.747-.139-2.615-.258a1.5 1.5 0 0 0-.016-.32zm-5.553.01q-.173 0-.345.016c-.805.077-1.627.39-2.161 1.02-.308.348-.518.809-.484 1.282.018.674.448 1.273.985 1.65.884.618 2.057.75 3.079.44.46-.149.903-.38 1.245-.727.428-.414.714-1.017.635-1.622-.065-.495-.35-.941-.723-1.265-.61-.536-1.425-.795-2.231-.794m-5.915.175q.088 0 .178.002c.148.042.249.167.359.266q-.04.116-.072.234.108.086.23.15c-.517.084-1.03.193-1.544.292l-.464.102-.465.098q-.465.096-.934.174c-.405.072-.828.05-1.222-.069-.113-.032-.141-.162-.095-.262.017-.1.141-.09.215-.105 1.276-.13 2.548-.295 3.82-.447.178-.019.38-.023.51-.163-.701.064-1.402.142-2.102.22l-1.051.113q-.525.054-1.052.1c-.394.04-.802.002-1.17-.153a1.7 1.7 0 0 1 .144-.328c1.393-.063 2.789-.092 4.18-.195.178-.008.356-.025.535-.029m1.256.064a.6.6 0 0 1 .122.008c.084.025.162.067.24.105-.009.132-.138.166-.238.212-.125.051-.247.11-.375.153-.162.052-.325-.028-.474-.087.02-.068.028-.144.07-.203a.9.9 0 0 1 .297-.12c.117-.03.237-.064.358-.068m9.248 0c.177-.004.35.054.517.106.064.026.144.036.192.092.032.06.04.13.064.192-.146.053-.302.145-.462.093a7 7 0 0 1-.632-.271c.018-.123.137-.18.245-.206a1 1 0 0 1 .076-.006m.887.172c.239-.004.474.041.711.066q1.137.128 2.276.246c.543.068 1.09.108 1.632.19.013.107.126.312-.033.35a4.1 4.1 0 0 1-1.12.025c-1.182-.184-2.36-.394-3.544-.566a4 4 0 0 0-.024-.307q.051-.004.102-.004m-5.377.111c.253.001.504.032.748.103.282.084.568.226.73.482.111.16.124.368.087.554-.056.226-.263.365-.442.492l.004.042c.265.181.554.434.545.785.025.254-.11.492-.293.657-.129.098-.27.183-.422.241-.43.149-.892.168-1.342.138-.552-.069-1.13-.224-1.537-.627.07-.094.16-.17.224-.268a23 23 0 0 0 .006-1.615c-.066-.099-.157-.177-.231-.27.274-.375.732-.545 1.17-.64.247-.047.5-.075.753-.074m4.163.063q.044-.001.086.008c.169.065.332.144.494.225.036.024.09.036.106.082.004.08-.034.168-.113.197-.115.048-.253.078-.37.024-.191-.084-.365-.202-.544-.307.017-.042.025-.095.054-.13a.1.1 0 0 1 .038-.027.6.6 0 0 1 .249-.072m-8.563 0a.56.56 0 0 1 .276.078c.065.031.079.14.017.18-.162.11-.332.21-.514.281-.143.047-.287-.007-.42-.053l-.04-.194q.252-.133.514-.25a.36.36 0 0 1 .167-.042m4.37.172a3 3 0 0 0-.282.015.62.62 0 0 0-.361.168c-.163.169-.176.422-.145.641a.56.56 0 0 0 .367.487c.233.079.49.075.725.01.254-.085.382-.362.376-.614.013-.213-.04-.462-.231-.586a.8.8 0 0 0-.449-.12zm5.287.085c.27.006.54.052.806.099q1.25.224 2.498.458c.21.043.423.079.63.138-.028.125-.043.32-.202.344-.513.065-1.028-.05-1.52-.187-.814-.22-1.637-.414-2.45-.64a.4.4 0 0 0-.149-.007c.013-.052.017-.107.042-.154.064-.048.153-.045.229-.05h.116zm-10.387.055c.028.114.052.229.097.337-.634.195-1.267.39-1.904.572-.338.097-.67.223-1.02.27-.316.028-.64.013-.948-.066-.126-.034-.16-.17-.163-.284.89-.193 1.777-.399 2.67-.577.422-.085.839-.203 1.268-.252m8.897.051a.27.27 0 0 1 .177.063q.223.15.448.296a.2.2 0 0 0-.014.043l-.01.047c-.009.032-.021.061-.05.077-.13.014-.269.043-.396-.006a2.2 2.2 0 0 1-.396-.324c-.046-.039-.041-.116-.002-.158a.1.1 0 0 1 .05-.027c.061-.003.128-.013.193-.01zm-7.713 0q.077 0 .152.01c.069.017.116.122.047.169-.156.156-.318.354-.557.365-.08-.001-.16.002-.238-.015-.057-.038-.052-.12-.071-.176.173-.11.338-.231.516-.333a.6.6 0 0 1 .15-.02zm8.857.204c.162.017.316.07.473.108.766.225 1.533.447 2.298.674.143.043.289.079.426.138-.038.095-.074.203-.163.262a2.07 2.07 0 0 1-1.1-.072c-.27-.103-.527-.233-.792-.346-.48-.205-.958-.419-1.445-.61.103-.047.195-.121.303-.154m-1.563.04c.105 0 .19.084.266.148.072.072.167.131.212.225.015.085-.055.159-.079.235-.104-.02-.234.02-.318-.066a1.6 1.6 0 0 1-.322-.397c-.016-.086.083-.138.163-.141l.032.001a.2.2 0 0 1 .046-.005m-6.891.004a.42.42 0 0 1 .23.082 1.5 1.5 0 0 1-.34.455c-.074.09-.2.075-.3.045-.063-.047-.086-.13-.124-.196.123-.127.24-.262.389-.359a.3.3 0 0 1 .145-.027m-1.326.12a1 1 0 0 1 .108.002c.102.015.115.135.153.212-.178.06-.341.153-.508.236-.434.208-.857.435-1.29.645-.295.156-.643.13-.966.133-.09-.009-.191 0-.27-.052-.052-.067-.074-.152-.1-.232.245-.124.516-.18.77-.283.456-.172.924-.31 1.384-.47.238-.067.471-.179.72-.19zm7.692.011c.093.022.207.015.277.091.098.133.197.272.253.428-.018.12-.154.2-.272.195-.04-.253-.148-.485-.258-.714m-5.888.003a3 3 0 0 0-.242.718c-.095-.022-.214-.046-.256-.147-.03-.05-.001-.105.022-.15a2 2 0 0 1 .225-.346c.071-.054.167-.054.251-.075m7.515.028c.182.033.342.134.508.212q.992.463 1.977.942c-.013.07-.011.154-.059.214-.163.063-.344.037-.513.02-.206-.023-.42-.047-.601-.16-.507-.315-.98-.687-1.509-.966.115-.042.154-.159.197-.262m-8.832.254q.136 0 .267.042c-.194.232-.456.392-.695.571-.28.19-.538.417-.85.553a2 2 0 0 1-.761.104c-.112-.014-.161-.118-.166-.22.587-.32 1.187-.615 1.774-.933a.83.83 0 0 1 .43-.117zm8.426.018a.6.6 0 0 1 .321.134c.449.335.896.674 1.346 1.007.06.031.091.091.116.152-.126.054-.263.12-.403.078q-.062-.014-.126-.027a.95.95 0 0 1-.364-.13c-.427-.27-.773-.65-1.206-.912.092-.082.12-.21.206-.293a.4.4 0 0 1 .11-.009m-8.156.176c.114.178.334.117.508.165-.38.273-.666.652-1.042.93-.228.169-.583.234-.814.037.113-.175.29-.29.447-.423.3-.236.593-.483.901-.709m7.554.125c.11.023.233.032.319.116.284.24.551.498.836.738.097.09.227.167.238.315-.095.035-.202.075-.302.033a1 1 0 0 1-.071-.023c-.162-.063-.295-.183-.424-.297a10 10 0 0 0-.769-.679q.084-.104.173-.203m-7.068.176c.102.027.201.065.303.091q.018.15.026.3c-.174.175-.307.406-.541.51-.156.06-.327.081-.493.06-.057-.012-.097-.057-.138-.095.278-.292.54-.6.843-.866m6.729.073c.151-.002.25.118.344.218.196.228.42.428.622.649-.043.057-.09.136-.18.106a.7.7 0 0 1-.311-.05c-.208-.1-.345-.293-.522-.433zm-3.103.132a1.6 1.6 0 0 0-.255.014c-.274.032-.537.235-.584.515-.03.271-.019.602.204.796.147.12.34.16.525.176.258.008.56-.033.72-.264.175-.264.176-.623.054-.908-.132-.24-.401-.322-.664-.33zm-3.303.33c.066.17.114.346.16.522-.12-.023-.302-.01-.37-.138-.033-.161.117-.274.21-.383zm6.349.15c.087.077.204.181.17.31-.067.117-.218.118-.335.13zm-6.69.321c.093.077.195.157.319.176.08.024.173.018.245.063.156.191.294.399.488.555.299.277.658.469.995.692-.058.24-.213.437-.339.644-.92-.353-1.719-1.07-2.085-1.995q.19-.063.376-.135zm6.993.063q.14.056.28.11c-.185.51-.532.95-.94 1.301a3.1 3.1 0 0 1-1.012.6c-.08-.14-.166-.278-.236-.424-.02-.05-.052-.118-.01-.165.098-.098.227-.156.346-.224.248-.148.476-.327.686-.526.14-.134.228-.312.357-.456.11-.043.238-.024.347-.074.07-.036.124-.092.182-.142m-7.67.07.204.003c.174.43.422.837.76 1.157.207.187.408.384.649.527.23.152.482.262.73.38a1.4 1.4 0 0 1-.089.2 4.5 4.5 0 0 1-.699-.352c-.3-.177-.55-.421-.8-.66-.26-.253-.43-.58-.604-.894-.065-.114-.106-.239-.15-.361zm8.027.058.22.02a3.2 3.2 0 0 1-.847 1.33c-.372.34-.785.665-1.272.82q-.052-.105-.1-.212c.305-.137.61-.289.87-.504.48-.388.91-.868 1.129-1.454m-1.348.433c-.19.266-.485.42-.746.605-.12.093-.29.15-.339.31.011.094.087.164.13.245.108.186.215.374.302.57.048.124-.001.252-.048.367-.158-.043-.334-.115-.403-.275-.133-.241-.13-.544-.315-.76-.017.322.216.582.255.893-.016.109-.084.202-.136.297-.139-.078-.31-.156-.343-.329-.095-.256-.037-.563-.192-.797-.063.223.046.44.088.656.023.134.082.303-.023.417a3 3 0 0 1-.106.133c-.105-.075-.24-.145-.275-.28-.059-.26-.016-.53-.064-.79-.014-.033-.037-.059-.058-.086-.07.31.085.616.047.928-.042.112-.135.229-.26.25-.115-.08-.222-.2-.221-.35-.015-.271.087-.535.073-.807l-.073-.002c-.037.23-.018.465-.033.697a.5.5 0 0 1-.104.294q-.091.08-.197.142c-.063-.066-.135-.13-.173-.216-.034-.13.013-.26.04-.388.047-.192.115-.384.106-.584h-.066c-.083.259-.081.533-.154.794a.47.47 0 0 1-.273.295c-.054.024-.119-.014-.14-.066-.097-.123-.048-.289-.005-.423.086-.222.192-.439.24-.674l-.066-.027c-.14.26-.174.564-.32.821a.48.48 0 0 1-.311.24c-.045.015-.08-.022-.1-.057a.39.39 0 0 1-.005-.334c.112-.241.27-.46.38-.702.02-.066.056-.155.001-.213-.22-.226-.546-.3-.77-.522.233.138.459.296.716.386.923.372 1.99.383 2.915.011.39-.136.729-.387 1.026-.669"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bento.svg������������������������������������0000664�0000000�0000000�00000003114�14753064456�0024731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 10.435c0-.256.051-.512.153-.758.233-.56.854-1.046 2.095-2.018l6.206-4.856c1.241-.972 1.862-1.458 2.577-1.64.63-.16 1.308-.16 1.938 0 .715.183 1.336.668 2.577 1.64l6.206 4.856c1.241.972 1.862 1.458 2.095 2.018.102.246.153.502.153.758v3.13c0 .256-.051.512-.153.758-.233.56-.854 1.046-2.095 2.017l-6.206 4.857c-1.241.972-1.862 1.457-2.577 1.64-.63.16-1.308.16-1.938 0-.715-.183-1.336-.668-2.577-1.64L2.248 16.34C1.007 15.37.386 14.883.153 14.323A2 2 0 0 1 0 13.565zm9.34-3.238.887.694c.62.485.93.728 1.289.82.315.08.653.08.968 0 .358-.092.668-.335 1.29-.82l.886-.694c.62-.486.93-.729 1.047-1.009a.98.98 0 0 0 0-.758c-.116-.28-.427-.523-1.047-1.008l-.887-.694c-.62-.486-.93-.729-1.289-.82a2 2 0 0 0-.968 0c-.358.091-.668.334-1.29.82l-.886.694c-.62.485-.93.728-1.047 1.008a.98.98 0 0 0 0 .758c.116.28.427.523 1.047 1.009m5.91 4.625.887.694c.62.486.931.729 1.29.82.314.08.653.08.968 0 .358-.091.668-.334 1.288-.82l.887-.694c.62-.485.931-.728 1.047-1.008a.98.98 0 0 0 0-.758c-.116-.28-.426-.523-1.047-1.009l-.887-.694c-.62-.485-.93-.728-1.288-.82a2 2 0 0 0-.969 0c-.358.092-.668.335-1.289.82l-.886.694c-.621.486-.931.729-1.047 1.009a.98.98 0 0 0 0 .758c.116.28.426.523 1.047 1.008Zm-11.82 0 6.797 5.32c.62.486.93.728 1.289.82.315.08.653.08.968 0 .358-.092.668-.334 1.29-.82l.886-.694c.62-.486.93-.729 1.047-1.009a.97.97 0 0 0 0-.758c-.116-.28-.427-.523-1.047-1.008l-6.797-5.32c-.62-.485-.931-.728-1.29-.82a2 2 0 0 0-.968 0c-.358.092-.668.335-1.288.82l-.887.694c-.62.486-.931.729-1.047 1.009a.98.98 0 0 0 0 .758c.116.28.426.523 1.047 1.008"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bentobox.svg���������������������������������0000664�0000000�0000000�00000000710�14753064456�0025441�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.406 3.821 2.723-2.725a3.74 3.74 0 0 1 5.29 0l.078.078a3.74 3.74 0 0 1 0 5.29l-2.723 2.723zm7.407 7.407 2.723-2.723a3.74 3.74 0 0 1 5.29 0l.078.078a3.74 3.74 0 0 1 0 5.29l-2.725 2.723-5.369-5.368zM0 11.228l2.723-2.723a3.74 3.74 0 0 1 5.29 0l.079.078a3.74 3.74 0 0 1 0 5.29l-2.724 2.723zm7.406 7.406 2.723-2.723a3.74 3.74 0 0 1 5.29 0l.078.078a3.74 3.74 0 0 1 0 5.29L12.774 24z"/></svg>��������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bentoml.svg����������������������������������0000664�0000000�0000000�00000000713�14753064456�0025264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.3 11a1.1 1.1 0 1 0 0-2.2 1.1 1.1 0 0 0 0 2.2m-4.4 0a1.1 1.1 0 1 0 0-2.2 1.1 1.1 0 0 0 0 2.2M5.67 0a1.2 1.2 0 0 0-.815.318L.386 4.444A1.2 1.2 0 0 0 0 5.325V22.4A1.6 1.6 0 0 0 1.6 24h17.048a1.2 1.2 0 0 0 .911-.42l4.152-4.843a1.2 1.2 0 0 0 .289-.781V1.6A1.6 1.6 0 0 0 22.4 0ZM6 .6h16.2a1.2 1.2 0 0 1 1.2 1.2v15.8a1.6 1.6 0 0 1-1.6 1.6H6A1.2 1.2 0 0 1 4.8 18V1.8A1.2 1.2 0 0 1 6 .6"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bereal.svg�����������������������������������0000664�0000000�0000000�00000003423�14753064456�0025057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.501 10.727q.89 0 1.307.587.418.59.418 1.391v.312H5.674a.97.97 0 0 0 .343.596q.274.223.718.223.258 0 .464-.066.245-.082.48-.192l.297.733a1.7 1.7 0 0 1-.644.296q-.379.094-.62.093-.983 0-1.55-.537-.565-.54-.565-1.441 0-.904.51-1.45.512-.546 1.394-.545m8.835 0q.889 0 1.307.587.417.59.417 1.391v.312h-2.552c.038.235.16.447.344.596q.273.223.718.223.257 0 .464-.066a5 5 0 0 0 .48-.192l.297.733a1.7 1.7 0 0 1-.644.296 2.7 2.7 0 0 1-.62.093q-.984 0-1.55-.537-.566-.54-.566-1.441 0-.904.512-1.45.51-.546 1.393-.545m3.875.041c.974 0 1.603.502 1.603 1.26v2.579h-1.027v-.561h-.02c-.215.385-.616.62-1.111.62-.756 0-1.265-.473-1.265-1.136v-.008c0-.683.53-1.083 1.465-1.144l.931-.055v-.231c0-.335-.217-.541-.618-.541-.383 0-.615.18-.664.421l-.007.03h-.939l.004-.04c.056-.696.653-1.194 1.648-1.194m4.789 2.8v1.039h-1.04v-1.039zM1.982 9.308q.773 0 1.257.34.483.339.484 1.14 0 .297-.137.534-.136.24-.355.41.36.188.59.506.23.32.23.81 0 .733-.512 1.146-.51.413-1.362.413H0V9.308zm8.702 0q.867 0 1.483.398.617.397.617 1.231 0 .49-.254.846a1.7 1.7 0 0 1-.652.549l1.304 2.275h-1.077l-1.124-2.025a4 4 0 0 1-.367.015h-.585v2.01H9.022V9.308zM22.448 9.3v5.307h-1.076V9.3zm-2.66 3.661-.777.049c-.397.025-.605.192-.605.46v.007c0 .277.229.442.584.442.46 0 .797-.294.797-.688zM2.17 12.285H1.007v1.489h1.092q.406 0 .652-.188a.62.62 0 0 0 .246-.53q0-.374-.226-.572-.227-.199-.601-.199m4.308-.694a.75.75 0 0 0-.523.19q-.21.193-.273.558h1.584q-.078-.38-.281-.564a.73.73 0 0 0-.507-.184m8.834 0a.75.75 0 0 0-.523.19q-.21.193-.273.558h1.585q-.079-.38-.281-.564a.73.73 0 0 0-.508-.184m-4.659-1.441h-.624v1.62h.64q.452 0 .749-.182.297-.184.296-.604 0-.446-.28-.639-.282-.195-.781-.195m-8.819 0h-.827v1.316h.749q.42 0 .66-.16.237-.158.238-.501 0-.375-.219-.515t-.601-.14"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/betfair.svg����������������������������������0000664�0000000�0000000�00000000267�14753064456�0025244�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.218 3.14h-7.083v3.6H9.352l7.359 8.582L24 6.67h-3.782zM0 17.26h3.782v3.6h7.083v-3.6h3.783l-7.29-8.583z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/betterdiscord.svg����������������������������0000664�0000000�0000000�00000001074�14753064456�0026462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.393.861q.514.258.964.57a6.6 6.6 0 0 1 2.122 2.387c.513.987.792 2.133.828 3.409v9.556c-.035 1.275-.313 2.422-.828 3.408a6.6 6.6 0 0 1-2.122 2.387 8 8 0 0 1-.933.555h.933c4.46.024 8.643-2.205 8.643-7.315V8.352c.024-5.21-4.16-7.49-8.62-7.49zM0 .867v9.197l5.693 5.127V5.44h3.31c3.537 0 3.537 4.444 0 4.444H6.817v4.244h2.188c3.536 0 3.536 4.441 0 4.441H0v4.57h8.904c4.59 0 8.151-1.836 8.278-6.388 0-2.094-.574-3.66-1.584-4.748 1.01-1.087 1.584-2.652 1.584-4.746-.125-4.553-3.687-6.39-8.278-6.39z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/betterstack.svg������������������������������0000664�0000000�0000000�00000001154�14753064456�0026137�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m.78 10.748-.766 6.638a2.1 2.1 0 0 0 .696 1.812l1.896 1.672c.65.573 1.658.015 1.519-.84l-1.521-9.325c-.172-1.056-1.702-1.02-1.825.043m12.373 8.714L8.63 6.43c-.502-1.447-2.608-1.384-3.02.09l-1.376 4.923c-.156.56-.216.882 0 1.421h.523l1.899 6.07c.294.732.902 1.3 1.661 1.554l2.832.943c1.241.414 2.426-.751 2.004-1.97zm10.63-1.033L15.79 3.443c-.697-1.307-2.578-1.272-3.227.06l-1.966 3.955c-.237.487-.127.66.07.943.159.227.527.245.676.012a.348.348 0 0 1 .606.038l5.138 10.687a2.74 2.74 0 0 0 2.142 1.601l2.718.348c1.463.192 2.53-1.354 1.834-2.658"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bevy.svg�������������������������������������0000664�0000000�0000000�00000003711�14753064456�0024572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.8 6.271a3.2 3.2 0 0 0-.765.081q-.026.007-.05.013c-.29.288-.616.576-.963.859.115.536.308 1.053.572 1.534.51.913.93 1.402 1.175 2.036.247.633.29 1.38.06 2.737-.283 1.685-1.307 3.469-2.933 4.785 1.262-.368 2.337-1.047 3.049-1.87.769-.887 1.025-1.39 1.115-1.895s.006-1.061.04-2.003a5.4 5.4 0 0 1 .318-1.603l.04-.112.117-.015c1.052-.137 2.003-.406 2.494-.722-.158-.71-.828-1.26-1.717-1.68l-.084-.04-.021-.09c-.282-1.209-1.226-1.989-2.448-2.015Zm.61 1.494q.096 0 .185.028a.62.62 0 0 1 .396.786.62.62 0 0 1-.778.412.62.62 0 0 1-.396-.787.63.63 0 0 1 .594-.439zm-5.69-4.61c-.764-.006-1.547.3-2.22.952-.884.858-1.158 1.63-1.003 2.594l.042.265-.263-.043c-1.942-.315-4.345-.156-7.078.95.804.344 2.278.919 3.915 1.704l.52.25-.565.115C4.907 10.38 2.342 11.645 0 14.407c1.048-.082 3.189-.334 5.423-.33 1.241.002 2.465.088 3.462.346.996.258 1.903.85 2.03 1.283.128.433.055.662-.07 1-.126.34-.512.854-1.048 1.194-.534.341-1.213.638-1.92.89-1.41.505-2.91.828-3.573.89-.14.013-.197.063-.25.162a1 1 0 0 0-.09.416c-.006.215.028.329.09.414.06.086.156.12.254.127 4.165.281 7.278-.766 9.54-1.663 2.6-1.193 4.244-3.548 4.601-5.668.224-1.329.176-1.98-.04-2.534-.216-.555-.629-1.047-1.153-1.988a6.2 6.2 0 0 1-.642-1.75l-.024-.116.092-.074c.964-.772 1.75-1.615 2.034-2.23-.585-.622-1.594-.753-2.726-.632l-.092.01-.066-.067c-.602-.614-1.35-.929-2.113-.933Zm.337 1.434a.72.72 0 0 1 .704.553.71.71 0 0 1-.517.865.713.713 0 0 1-.856-.533.713.713 0 0 1 .669-.885m6.677 6.669h-.006a4.8 4.8 0 0 0-.241 1.303c-.034.911.058 1.465-.047 2.056-.105.59-.414 1.17-1.204 2.08-.937 1.085-2.424 1.924-4.143 2.207a9 9 0 0 1-1.012.559c1.337.503 2.736.531 3.844.166 1.953-.64 1.802-1.101 2.677-2.442a4.5 4.5 0 0 1 .913-1.01c.911.398 1.808.652 2.366.59.301-.697-.006-1.505-.517-2.27.419-1.303-.218-2.606-1.628-3.068a3 3 0 0 0-1.002-.171M22.2 13.35c.194.22.169.56-.057.758a.54.54 0 0 1-.759-.042.54.54 0 0 1 .055-.759.56.56 0 0 1 .366-.136.52.52 0 0 1 .395.179"/></svg>�������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bigbasket.svg��������������������������������0000664�0000000�0000000�00000002475�14753064456�0025566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.543 12.989a3.35 3.35 0 0 0-.871-1.375 2.25 2.25 0 0 0-1.474-.503 2.28 2.28 0 0 0-1.541.536 2.95 2.95 0 0 0-.973 1.375 5.6 5.6 0 0 0-.335 1.845 5.4 5.4 0 0 0 .335 1.809c.192.548.528 1.034.973 1.407.441.339.985.516 1.541.503a2.08 2.08 0 0 0 1.945-1.072h-.002a4.9 4.9 0 0 0 .67-2.649 6.5 6.5 0 0 0-.268-1.876M20.381.033H3.587A3.584 3.584 0 0 0 0 3.585V20.38a3.59 3.59 0 0 0 3.587 3.586h16.794c1.986 0 3.601-1.6 3.619-3.586V3.585A3.614 3.614 0 0 0 20.381.033M10.64 3.034h1.911v5.744a3.47 3.47 0 0 0-1.911-.584zm-.438 17.93a5.6 5.6 0 0 1-2.278-.369 3.5 3.5 0 0 1-1.174-.804 4 4 0 0 1-.335-.536l-.033-.134v.302C6.281 21.266 3.4 20.931 3.4 20.931V3.034h3.15v7.442h.034a3.7 3.7 0 0 1 1.541-1.309 4.8 4.8 0 0 1 2.079-.435 4.2 4.2 0 0 1 2.649.871 5.26 5.26 0 0 1 1.675 2.278v-.001c.372.951.565 1.963.569 2.984a8.4 8.4 0 0 1-.571 2.984 5.47 5.47 0 0 1-1.675 2.278 4.16 4.16 0 0 1-2.649.838m9.828-3.111a5.47 5.47 0 0 1-1.675 2.278 4.17 4.17 0 0 1-2.649.838 5.6 5.6 0 0 1-2.278-.37 5 5 0 0 1-.362-.186c.444-.36.837-.778 1.168-1.245.353.127.726.189 1.101.185 2.38 0 3.15-2.502 3.15-4.484 0-1.96-.721-4.523-3.15-4.523a3 3 0 0 0-1.021.163 6.4 6.4 0 0 0-1.017-1.166q.161-.094.331-.176a4.72 4.72 0 0 1 6.403 2.715l-.001.004c.373.951.566 1.963.571 2.984a8.4 8.4 0 0 1-.571 2.983"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bigbluebutton.svg����������������������������0000664�0000000�0000000�00000000733�14753064456�0026473�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0M6.838 4.516q1.115 0 1.904 1.091t.787 2.625v6.76q0 .809.809.809h4.174q.808 0 .808-.809v-3.205q0-.78-.808-.807h-.807q-1.563-.054-2.64-.816-1.078-.76-1.077-1.877h4.524q1.455 0 2.478 1.024a3.37 3.37 0 0 1 1.024 2.476v3.205q0 1.455-1.024 2.479-1.024 1.022-2.478 1.021h-4.174q-1.454.001-2.477-1.021a3.38 3.38 0 0 1-1.023-2.479z"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bigcartel.svg��������������������������������0000664�0000000�0000000�00000000417�14753064456�0025561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 13.068v-1.006c0-.63.252-1.256.88-1.508l7.79-4.9c.503-.252.755-.88.755-1.51V0L12 6.03 2.575 0v12.69c0 3.394 1.51 6.284 4.02 7.917L11.875 24l5.28-3.393c2.513-1.51 4.02-4.398 4.02-7.916V7.036z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bigcommerce.svg������������������������������0000664�0000000�0000000�00000001225�14753064456�0026077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.645 13.663h3.027c.861 0 1.406-.474 1.406-1.235 0-.717-.545-1.234-1.406-1.234h-3.027c-.1 0-.187.086-.187.172v2.125c.015.1.086.172.187.172m0 4.896h3.128c.961 0 1.535-.488 1.535-1.35 0-.746-.545-1.35-1.535-1.35h-3.128c-.1 0-.187.087-.187.173v2.34c.015.115.086.187.187.187M23.72.053l-8.953 8.93h1.464c2.281 0 3.63 1.435 3.63 3 0 1.235-.832 2.14-1.722 2.541-.143.058-.143.259.014.316 1.033.402 1.765 1.48 1.765 2.742 0 1.78-1.19 3.202-3.5 3.202h-6.342c-.1 0-.187-.086-.187-.172V13.85L.062 23.64c-.13.13-.043.359.143.359h23.631a.16.16 0 0 0 .158-.158V.182c.043-.158-.158-.244-.273-.13z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bilibili.svg���������������������������������0000664�0000000�0000000�00000001774�14753064456�0025413�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.813 4.653h.854q2.266.08 3.773 1.574Q23.946 7.72 24 9.987v7.36q-.054 2.266-1.56 3.773c-1.506 1.507-2.262 1.524-3.773 1.56H5.333q-2.266-.054-3.773-1.56C.053 19.614.036 18.858 0 17.347v-7.36q.054-2.267 1.56-3.76t3.773-1.574h.774l-1.174-1.12a1.23 1.23 0 0 1-.373-.906q0-.534.373-.907l.027-.027q.4-.373.92-.373t.92.373L9.653 4.44q.107.106.187.213h4.267a.8.8 0 0 1 .16-.213l2.853-2.747q.4-.373.92-.373c.347 0 .662.151.929.4s.391.551.391.907q0 .532-.373.906zM5.333 7.24q-1.12.027-1.88.773-.76.748-.786 1.894v7.52q.026 1.146.786 1.893t1.88.773h13.334q1.12-.026 1.88-.773t.786-1.893v-7.52q-.026-1.147-.786-1.894t-1.88-.773zM8 11.107q.56 0 .933.373.375.374.4.96v1.173q-.025.586-.4.96-.373.375-.933.374c-.56-.001-.684-.125-.933-.374q-.375-.373-.4-.96V12.44q0-.56.386-.947.387-.386.947-.386m8 0q.56 0 .933.373.375.374.4.96v1.173q-.025.586-.4.96-.373.375-.933.374c-.56-.001-.684-.125-.933-.374q-.375-.373-.4-.96V12.44q.025-.586.4-.96.373-.373.933-.373"/></svg>����mkdocs-material-9.6.4/material/templates/.icons/simple/billboard.svg��������������������������������0000664�0000000�0000000�00000002445�14753064456�0025562�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.697 11.025H4.82v3.418H3.697Zm1.356-1.337h1.124v4.755H5.053Zm1.357 0h1.124v4.755H6.41Zm13.22 1.69v-.353h-1.124v3.418h1.124v-1.629c0-.42.22-.645.619-.645h.133V10.99c-.34.014-.586.12-.752.386M4.26 9.502a.652.652 0 1 0 0 1.304.652.652 0 0 0 0-1.304m12.89 1.782c-.158-.172-.525-.315-.804-.315-.85 0-1.458.56-1.607 1.392a1.75 1.75 0 0 0-1.707-1.412c-.856 0-1.557.621-1.71 1.434-.15-.845-.814-1.405-1.638-1.405-.306 0-.559.066-.779.22v-1.51H7.781v4.755h1.104v-.313c.266.246.552.36.904.36.76 0 1.399-.595 1.535-1.414a1.74 1.74 0 0 0 1.708 1.41 1.74 1.74 0 0 0 1.699-1.377c.143.853.819 1.387 1.627 1.387.279 0 .585-.093.791-.246v.193h1.124v-1.496l-.001-.18.001-.18V11.03H17.15zm-7.586 2.117a.652.652 0 1 1 0-1.303.652.652 0 0 1 0 1.303m3.468-.052a.652.652 0 1 1 .001-1.304.652.652 0 0 1 0 1.304m3.378.02a.652.652 0 1 1 0-1.303.652.652 0 0 1 0 1.304m6.467-3.683v1.51c-.22-.153-.472-.22-.778-.22-.938 0-1.67.726-1.67 1.77 0 .984.705 1.742 1.563 1.742.353 0 .639-.113.905-.359v.313H24V9.687Zm-.662 3.707a.652.652 0 1 1 0-1.304.652.652 0 0 1 0 1.304M1.902 10.979c-.306 0-.559.066-.778.22v-1.51H0v4.755h1.104v-.313c.266.246.552.36.905.36.857 0 1.562-.76 1.562-1.743 0-1.044-.731-1.77-1.669-1.77m-.12 2.423a.652.652 0 1 1 0-1.303.652.652 0 0 1 0 1.303"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bim.svg��������������������������������������0000664�0000000�0000000�00000001365�14753064456�0024377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.327 6.302A3.33 3.33 0 0 0 0 9.63v4.742a3.326 3.326 0 0 0 3.327 3.326h17.347A3.326 3.326 0 0 0 24 14.372V9.63A3.33 3.33 0 0 0 20.674 6.3h-8.321L11.06 8.192l-1.274-1.89Zm1.574 2.19c.814-.01 1.57.069 2.01.241.798.302 1.254.96 1.293 1.807.03.612-.296 1.162-.79 1.58.56.331.978.827.964 1.54-.026 1.259-1.207 2.038-3.336 1.99-1.147-.027-1.705-.029-2.37-.174V8.639c1.16-.156 1.288-.14 2.23-.148m9.523.11h1.99l1.283 3.225 1.274-3.225h2.05l.551 6.868h-1.97l-.145-3.912-1.772 3.898-1.646-3.885-.342 3.899h-2.016Zm-4.474.024h2.09v6.867H9.95Zm-5.234 1.43v1.453h.808a.726.726 0 0 0 .727-.727.71.71 0 0 0-.727-.726zm0 2.787v1.197h.779c.41.023.958-.15.963-.586-.025-.492-.524-.637-.934-.611z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/binance.svg����������������������������������0000664�0000000�0000000�00000000526�14753064456�0025225�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.624 13.92 2.718 2.716-7.353 7.353-7.353-7.352 2.717-2.717 4.636 4.66zm4.637-4.636L24 12l-2.715 2.716L18.568 12zm-9.272 0 2.716 2.692-2.717 2.717L9.272 12zm-9.273 0L5.41 12l-2.692 2.692L0 12zM11.99.012 19.34 7.34l-2.717 2.715L11.99 5.42l-4.636 4.66-2.717-2.716z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/biolink.svg����������������������������������0000664�0000000�0000000�00000001624�14753064456�0025255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.952 4.637v-1.88q0-.396-.427-.396H2.23v2.671h1.296q.427 0 .427-.395m0 4.284v-1.96q0-.206-.095-.285-.095-.095-.332-.095H2.23v2.735h1.296q.427 0 .427-.395M0 .811h4.173q2.008 0 2.008 1.74v1.77q0 1.17-.712 1.47.712.269.712 1.36v1.96q0 1.755-2.008 1.754H0Zm7.565 0H9.81v10.054H7.565zm5.664 0h2.118q1.992 0 1.992 1.74v6.56q0 1.755-1.992 1.754H13.23q-2.008 0-2.008-1.754V2.55q0-1.74 2.008-1.74m1.85 8V2.866q0-.396-.412-.396h-.758q-.427 0-.427.396V8.81q0 .396.427.396h.758q.411 0 .411-.396m5.032 2.028c-.753 0-1.363-.61-1.363-1.363v-.088a1.363 1.363 0 1 1 2.726 0v.088c0 .753-.61 1.363-1.363 1.363M2.253 21.53h2.893v1.66H.01V13.134h2.244zm3.67-8.394h2.244v10.053H5.922zm7.923 0h2.071v10.053h-2.023l-2.198-6.022v6.022H9.641V13.135h2.04l2.165 6.007zm10.154 0-2.023 4.963L24 23.188h-2.434l-1.945-5.09 1.945-4.963zm-6.67 10.053V13.135h2.244v10.053Z"/></svg>������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/biome.svg������������������������������������0000664�0000000�0000000�00000000433�14753064456�0024716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 1.608-5.346 9.259a12.07 12.07 0 0 1 6.326-.219l1.807.426-1.7 7.208-1.809-.427c-2.224-.524-4.361.644-5.264 2.507l-1.672-.809c1.276-2.636 4.284-4.232 7.364-3.505l.847-3.592A10.21 10.21 0 0 0 0 22.392h24z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bisecthosting.svg����������������������������0000664�0000000�0000000�00000002755�14753064456�0026501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.083 5.023 13.02.302a2.72 2.72 0 0 0-2.488 0L1.917 4.789A2.06 2.06 0 0 0 .805 6.623l.006 10.76c0 .773.426 1.476 1.112 1.834l8.59 4.479c.38.198.813.304 1.245.304v-.002c.432 0 .862-.108 1.244-.306l9.083-4.735a2.05 2.05 0 0 0 1.11-1.835V6.857a2.06 2.06 0 0 0-1.112-1.834m.222 12.103c.003.441-.24.847-.632 1.05l-9.085 4.736a1.81 1.81 0 0 1-1.664 0l-8.59-4.48a1.18 1.18 0 0 1-.637-1.048L1.691 6.625c0-.44.246-.844.636-1.048l8.615-4.491a1.83 1.83 0 0 1 1.666 0l9.063 4.725c.39.205.634.608.634 1.048zM4.666 9.2v1.088L9.86 9.44V7.954zm4.111-.54.604-.132v.552l-.604.106zm-3.455.76 2.55-.562v.494l-2.55.46zm4.541 6.74v-1.486l-5.195-.85v1.088zm-1.986-.904-2.553-.562v-.395l2.553.46zm1.506.33-.602-.132v-.526l.602.106zm11.583-8.827-2.33-1.214-1.853.694V4.58L13.69 2.966a4.13 4.13 0 0 0-3.827 0l-6.83 3.561a.3.3 0 0 0-.16.26l.007 10.401c0 .11.06.21.16.26l6.805 3.547c1.2.626 2.627.626 3.827 0l3.1-1.614v-1.66l1.852.694 2.348-1.225a.3.3 0 0 0 .16-.262l-.006-9.908a.29.29 0 0 0-.16-.26zM4.398 10.871V8.75l5.541-1.494a.23.23 0 0 1 .29.22V9.83c0 .204-.152.38-.356.402zm5.477 3.01a.404.404 0 0 1 .359.4v2.355a.23.23 0 0 1-.29.22l-5.542-1.494v-2.12zm3.137 6.962s.428-.612.48-1.74V14.62s.042-1.68-1.334-2.601c1.376-.92 1.336-2.6 1.336-2.6V5.096c0-1.272-.488-1.975-.488-1.975l3.307 1.725v5.061c0 .076.06.14.136.146l2.14.154a.15.15 0 0 0 .16-.148V6.12l1.967 1.02v9.684L18.75 17.85v-4.247a.15.15 0 0 0-.16-.148l-2.14.156a.15.15 0 0 0-.137.148v5.366l-3.3 1.72z"/></svg>�������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bit.svg��������������������������������������0000664�0000000�0000000�00000003761�14753064456�0024410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.98 12.959q0 .897-.509 1.42-.51.52-1.456.52-.34 0-.643-.072-.303-.073-.546-.194-.291-.17-.328-.364-.036-.194-.036-.388V9.804q0-.219.134-.328.133-.109.4-.109t.4.11q.134.108.134.327v1.553q.145-.097.352-.158.206-.06.424-.06.728 0 1.202.473.473.473.473 1.347zm-2.45.946q.097.073.23.097.134.024.255.024.413 0 .631-.255.219-.254.219-.74 0-.485-.219-.752-.218-.267-.607-.267-.145 0-.279.049-.133.048-.23.121zm4.465-3.81q0 .267-.182.449t-.449.182q-.291 0-.473-.182t-.182-.449q0-.291.182-.461t.473-.17q.267 0 .449.17t.182.461m-.097 1.48v2.864q0 .218-.134.327-.133.11-.4.11t-.413-.11q-.145-.109-.145-.327v-2.864q0-.218.145-.327.146-.11.413-.11t.4.11.134.327m3.276 2.33q.218 0 .303.182t.085.328q0 .072-.048.157-.049.085-.146.158-.146.073-.364.121-.218.049-.437.049-.437 0-.703-.158-.267-.158-.413-.4-.121-.219-.146-.473-.024-.255-.024-.546v-1.19h-.291q-.219 0-.328-.12-.109-.122-.109-.34t.11-.34q.108-.122.327-.122h.291v-.703q0-.219.134-.328.133-.11.4-.11t.4.11q.134.11.134.328v.703h.68q.218 0 .327.122.11.121.11.34 0 .218-.11.34-.11.12-.328.12h-.68v1.19q0 .12.013.254t.06.255q.05.073.122.11.073.036.194.036.049 0 .121-.012.073-.013.122-.013.048-.024.097-.036.048-.012.097-.012M.012 12.012q0-2.5.947-4.683.946-2.184 2.572-3.81T7.34.946Q9.525 0 12 0t4.66.946q2.183.947 3.821 2.573t2.56 3.81q.947 2.184.947 4.683 0 2.475-.947 4.66-.922 2.183-2.56 3.81-1.638 1.625-3.822 2.572Q14.475 24 12 24t-4.66-.946q-2.183-.947-3.81-2.573-1.625-1.626-2.571-3.81t-.947-4.659M12 .874q-2.305 0-4.32.873-2.038.874-3.542 2.39T1.759 7.668Q.886 9.707.886 12.012t.873 4.32q.874 2.038 2.379 3.543 1.504 1.504 3.542 2.378 2.015.873 4.32.873t4.344-.873q2.014-.874 3.518-2.378t2.379-3.543q.898-2.015.898-4.32t-.898-4.344q-.874-2.014-2.379-3.53t-3.518-2.39Q14.305.873 12 .873ZM8.384 3.422q.073.17.024.34t-.218.266q-1.383.728-2.342 1.614-.958.886-1.735 2.342-.097.17-.267.218-.17.049-.315-.024-.17-.097-.219-.267t.025-.315q.849-1.602 1.905-2.585 1.055-.983 2.536-1.76.17-.096.34-.036t.266.207"/></svg>���������������mkdocs-material-9.6.4/material/templates/.icons/simple/bitbucket.svg��������������������������������0000664�0000000�0000000�00000000373�14753064456�0025602�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.778 1.213a.768.768 0 0 0-.768.892l3.263 19.81c.084.5.515.868 1.022.873H19.95a.77.77 0 0 0 .77-.646l3.27-20.03a.768.768 0 0 0-.768-.891zM14.52 15.53H9.522L8.17 8.466h7.561z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bitcoin.svg����������������������������������0000664�0000000�0000000�00000001523�14753064456�0025253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.638 14.904c-1.602 6.43-8.113 10.34-14.542 8.736C2.67 22.05-1.244 15.525.362 9.105 1.962 2.67 8.475-1.243 14.9.358c6.43 1.605 10.342 8.115 8.738 14.548zm-6.35-4.613c.24-1.59-.974-2.45-2.64-3.03l.54-2.153-1.315-.33-.525 2.107c-.345-.087-.705-.167-1.064-.25l.526-2.127-1.32-.33-.54 2.165q-.428-.1-.84-.2l-1.815-.45-.35 1.407s.975.225.955.236c.535.136.63.486.615.766l-1.477 5.92c-.075.166-.24.406-.614.314.015.02-.96-.24-.96-.24l-.66 1.51 1.71.426.93.242-.54 2.19 1.32.327.54-2.17c.36.1.705.19 1.05.273l-.51 2.154 1.32.33.545-2.19c2.24.427 3.93.257 4.64-1.774.57-1.637-.03-2.58-1.217-3.196.854-.193 1.5-.76 1.68-1.93h.01zm-3.01 4.22c-.404 1.64-3.157.75-4.05.53l.72-2.9c.896.23 3.757.67 3.33 2.37m.41-4.24c-.37 1.49-2.662.735-3.405.55l.654-2.64c.744.18 3.137.524 2.75 2.084z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bitcoincash.svg������������������������������0000664�0000000�0000000�00000001467�14753064456�0026121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.84 11.22-.688-2.568c.728-.18 2.839-1.051 3.39.506.27 1.682-1.978 1.877-2.702 2.062m.289 1.313.755 2.829c.868-.228 3.496-.46 3.241-2.351-.433-1.666-3.125-.706-3.996-.478M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12m-6.341.661c-.183-1.151-1.441-2.095-2.485-2.202.643-.57.969-1.401.57-2.488-.603-1.368-1.989-1.66-3.685-1.377l-.546-2.114-1.285.332.536 2.108c-.338.085-.685.158-1.029.256L9.198 5.08l-1.285.332.545 2.114c-.277.079-2.595.673-2.595.673l.353 1.377s.944-.265.935-.244c.524-.137.771.125.886.372l1.498 5.793c.018.168-.012.454-.372.551.021.012-.935.241-.935.241l.14 1.605s2.296-.588 2.598-.664l.551 2.138 1.285-.332-.551-2.153q.53-.123 1.032-.256l.548 2.141 1.285-.332-.551-2.135c1.982-.482 3.38-1.73 3.094-3.64"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bitcoinsv.svg��������������������������������0000664�0000000�0000000�00000001622�14753064456�0025624�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.648 14.423.003-.004a1.34 1.34 0 0 1-.498.659c-.269.189-.647.338-1.188.364l-1.99.004v-2.93c.288.008 1.565-.013 2.119.015.722.035 1.171.321 1.41.668.262.351.293.82.144 1.224m-2.129-3.261c.503-.024.852-.162 1.101-.336.214-.146.375-.367.46-.611.134-.375.107-.81-.136-1.135-.223-.319-.638-.584-1.306-.616-.495-.026-1.413-.003-1.664-.01v2.709c.025.004 1.539-.001 1.545-.001M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12m-6.65 2.142c.022-1.477-1.24-2.332-1.908-2.572.715-.491 1.206-1.043 1.206-2.085 0-1.655-1.646-2.43-2.647-2.529-.082-.009-.31-.013-.31-.013V5.361h-1.633l.004 1.583H10.97V5.367H9.31v1.569c-.292.007-2.049.006-2.049.006v1.401h.571c.601.016.822.362.798.677v6.041a.41.41 0 0 1-.371.391c-.249.011-.621 0-.621 0l-.32 1.588h1.996v1.6h1.661v-1.591h1.091v1.594h1.624v-1.588c1.899.05 3.643-1.071 3.66-2.913"/></svg>��������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bitcomet.svg���������������������������������0000664�0000000�0000000�00000003242�14753064456�0025432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.996 0C5.37.002.002 5.375.004 12v.009c.003 6.625 5.375 11.993 12 11.991s11.994-5.375 11.992-12v-.009C23.993 5.366 18.62-.002 11.996 0M3.008 14.396c.235-2.436.696-4.614 1.422-6.467a15.3 15.3 0 0 1 2.238-2.406 16.6 16.6 0 0 0-1.68 4.674c-.731 1.4-1.4 2.88-1.98 4.199m6.06 2.862c-.833-2.164-.764-4.942-.452-7.522a17 17 0 0 1 1.661-2.777c.13.721.246 1.49.356 2.28-.841 2.033-1.457 4.722-1.564 8.019zm6.64 0c-.117-3.624-.853-6.498-1.824-8.587.087-.589.176-1.165.274-1.712.883 1.19 1.561 2.484 2.114 3.82.204 2.268.159 4.604-.564 6.479m3.464-8.188a16.7 16.7 0 0 0-1.404-3.547c1.088.933 2.054 2.054 2.928 3.383.527 1.629.878 3.47 1.073 5.49-.739-1.68-1.621-3.623-2.597-5.326m.83-1.945a17 17 0 0 0-.84-.953l-.06-.057a15 15 0 0 0-.87-.839c-.1-.087-.209-.167-.311-.253-.238-.2-.474-.4-.73-.587a15 15 0 0 0-1.176-.779q.327.46.616.917l.048.081q.263.418.497.834l.017.033q.498.896.869 1.792c1.494 3.606 1.508 7.26.81 11.522-.562-3.39-1.284-6.707-2.781-9.661a20 20 0 0 0-1.028-1.783c-.088-.134-.184-.266-.277-.398a16 16 0 0 0-.913-1.194c-.08.387-.154.8-.227 1.214q-.076.43-.146.875c-.587 3.696-.938 8.202-1.282 12.078-.329-3.698-.664-7.967-1.203-11.562a66 66 0 0 0-.205-1.283c-.079-.453-.16-.9-.247-1.322-.347.405-.66.825-.958 1.252q-.424.617-.792 1.26c-1.823 3.163-2.632 6.799-3.25 10.524-.622-3.798-.672-7.112.38-10.34q.382-1.181.975-2.355l.091-.173q.243-.466.52-.933l.16-.268c.228-.369.468-.738.731-1.11a15 15 0 0 0-1.433.982q-.314.241-.61.496c-.134.115-.272.229-.4.347q-.379.348-.728.715l-.007.007C3.63 7.897 2.472 9.86 1.575 11.811 1.903 4.493 6.516.324 12.218.324s10.315 4.169 10.643 11.488c-.739-1.608-1.658-3.22-2.858-4.687z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bitdefender.svg������������������������������0000664�0000000�0000000�00000001002�14753064456�0026067�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.685 0v.357l1.232 1.046c1.477 1.204 1.67 1.439 1.67 2.526V24h8.646c4.537 0 9.083-1.629 9.083-6.849 0-3.082-2.174-5.458-5.186-5.797v-.067c2.475-.745 4.169-2.54 4.169-5.253 0-4.372-3.73-6.032-7.349-6.032zm7.176 3.664h3.524c2.383 0 3.121.327 3.844 1.013.548.521.799 1.237.801 2.07 0 .775-.267 1.466-.831 2.004-.705.676-1.674 1.011-3.443 1.011H8.862zm0 9.758h4.099c3.456 0 5.085.881 5.085 3.39 0 3.153-3.055 3.526-5.256 3.526H8.86v-6.916z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bitly.svg������������������������������������0000664�0000000�0000000�00000001604�14753064456�0024747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.055 21.26c-1.345.022-2.325-.41-2.386-1.585-.025-.44-.018-.91.002-1.192.137-1.716 1.333-2.95 2.53-3.19 1.482-.294 2.455.38 2.455 2.31 0 1.303-.36 3.618-2.59 3.657h-.016zM11.923 0C5.32 0 0 5.297 0 12.224c0 3.594 1.92 7.062 4.623 9.147.52.4 1.138.367 1.497.02.297-.285.272-.984-.285-1.475-2.16-1.886-3.652-4.76-3.652-7.635 0-5.15 4.58-9.49 9.74-9.49 6.28 0 9.636 5.102 9.636 9.43 0 2.65-1.29 5.84-3.626 7.874.015 0 .493-.942.493-2.784 0-3.13-1.976-4.836-4.28-4.836-1.663 0-2.667.598-3.34 1.152 0-1.272.045-3.652.045-3.652 0-1.572-.54-2.83-2.47-2.86-1.11-.015-1.932.493-2.44 1.647-.18.436-.12.916.254 1.125.3.18.81.046 1.046-.284.165-.21.254-.254.404-.24.24.03.257.405.257.66.014.193.193 2.903.088 9.865C7.98 21.798 9.493 24 13.1 24c1.56 0 2.756-.435 4.493-1.422C20.243 21.08 24 17.758 24 12.128A12.09 12.09 0 0 0 11.933 0"/></svg>����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bitrise.svg����������������������������������0000664�0000000�0000000�00000002302�14753064456�0025261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.515 13.456c-.274-1.886-.692-3.783-.99-5.048a3.47 3.47 0 0 0-3.174-2.673c-1.516-.095-4.022-.203-7.363-.203s-5.847.108-7.363.203a3.47 3.47 0 0 0-3.174 2.673c-.298 1.265-.716 3.162-.99 5.048-.191 1.277-.334 2.768-.454 4.463-.06.943.25 1.85.883 2.554a3.43 3.43 0 0 0 2.447 1.157c2.076.096 5.262.215 8.663.215s6.587-.12 8.663-.215a3.5 3.5 0 0 0 2.447-1.157 3.46 3.46 0 0 0 .883-2.554c-.132-1.695-.287-3.198-.478-4.463m-1.646 5.919c-.334.37-.788.584-1.29.608a190 190 0 0 1-8.59.215c-3.378 0-6.528-.12-8.593-.215a1.83 1.83 0 0 1-1.288-.608 1.8 1.8 0 0 1-.466-1.349c.108-1.647.25-3.102.442-4.331.262-1.826.668-3.676.966-4.905.191-.8.86-1.36 1.683-1.42 1.491-.096 3.962-.203 7.267-.203 3.294 0 5.776.107 7.267.203a1.84 1.84 0 0 1 1.683 1.42c.286 1.229.692 3.079.966 4.904.18 1.23.323 2.685.442 4.332 0 .501-.167.979-.49 1.348m-9.881-15.18c.56 0 1.026-.453 1.026-1.014a1.026 1.026 0 1 0-2.052 0c0 .55.465 1.015 1.026 1.015m5.967 7.84a1.65 1.65 0 0 0-1.647 1.648H19.6c0-.907-.728-1.647-1.646-1.647m-11.933 0a1.65 1.65 0 0 0-1.647 1.648h3.293c0-.907-.728-1.647-1.647-1.647m5.966 5.967a2.663 2.663 0 0 0 2.661-2.66H9.315a2.674 2.674 0 0 0 2.673 2.66"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bittorrent.svg�������������������������������0000664�0000000�0000000�00000002127�14753064456�0026021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .001C5.374.001.001 5.371 0 11.998a12 12 0 0 0 1.7 6.16.13.13 0 0 0 .113.038c.03 0 .048-.07.048-.11a1 1 0 0 0-.033-.13 22 22 0 0 1-.423-2.294 9.8 9.8 0 0 1 .428-3.866c1.101-3.396 3.333-5.7 6.664-6.938a10.3 10.3 0 0 1 3.398-.595.78.78 0 0 1 .856.763c0 .45-.343.737-.85.766a13 13 0 0 0-1.607.165 8.7 8.7 0 0 0-4.864 2.64c-2.083 2.22-2.88 4.86-2.4 7.857a8.7 8.7 0 0 0 2.445 4.785 8.94 8.94 0 0 0 6.37 2.76H12a11.95 11.95 0 0 0 5.613-1.392H12.02a8.4 8.4 0 0 1-1.408-.13 7.71 7.71 0 0 1-6.24-8.824 7.72 7.72 0 0 1 7.034-6.479 7.6 7.6 0 0 1 2.16.137.75.75 0 0 1 .617.876.785.785 0 0 1-.96.602 6 6 0 0 0-.802-.115 6.3 6.3 0 0 0-2.899.504 6.2 6.2 0 0 0-3.705 6.383 6.22 6.22 0 0 0 6.163 5.52h6.99c.68 0 .84.014 1.138-.24q.574-.53 1.077-1.126h-9.33A4.35 4.35 0 0 1 9.78 19.2a4.847 4.847 0 1 1 4.619-8.514.75.75 0 0 1 .317 1.044.766.766 0 0 1-1.066.271 3.333 3.333 0 0 0-4.547 1.243 3.33 3.33 0 0 0-.396 2.179 3.29 3.29 0 0 0 3.275 2.803c3.36.034 6.72 0 10.08 0a.42.42 0 0 0 .28-.144c3.358-5.713 1.45-13.066-4.263-16.425A12 12 0 0 0 12 .001"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bitwarden.svg��������������������������������0000664�0000000�0000000�00000001112�14753064456�0025575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.722.296A.96.96 0 0 0 21.018 0H2.982a.96.96 0 0 0-.703.296.96.96 0 0 0-.297.702v12q0 1.342.523 2.665.524 1.319 1.3 2.345.775 1.021 1.848 1.993a22 22 0 0 0 1.98 1.609q.907.64 1.893 1.212.986.571 1.4.772c.276.134.5.241.664.311a.92.92 0 0 0 .814 0q.251-.11.667-.311c.275-.134.743-.394 1.401-.772a25 25 0 0 0 1.894-1.212A22 22 0 0 0 18.348 20q1.073-.97 1.847-1.993c.774-1.023.949-1.463 1.3-2.345q.524-1.318.524-2.665V1.001a.95.95 0 0 0-.297-.705m-2.325 12.815c0 4.344-7.397 8.087-7.397 8.087V2.57h7.397v10.54z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bitwig.svg�����������������������������������0000664�0000000�0000000�00000001577�14753064456�0025122�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.15 7.782a1.59 1.59 0 1 1 3.181 0 1.59 1.59 0 0 1-3.181 0m5.741 1.591a1.59 1.59 0 1 0 0-3.181 1.59 1.59 0 0 0 0 3.181m4.218 0a1.59 1.59 0 1 0 0-3.181 1.59 1.59 0 0 0 0 3.181m4.15 0a1.59 1.59 0 1 0 0-3.181 1.59 1.59 0 0 0 0 3.181M5.741 10.409a1.59 1.59 0 1 0 0 3.181 1.59 1.59 0 0 0 0-3.181m8.368 0a1.59 1.59 0 1 0 0 3.181 1.59 1.59 0 0 0 0-3.181m4.15 0a1.59 1.59 0 1 0 0 3.181 1.59 1.59 0 0 0 0-3.181m4.15 3.182a1.59 1.59 0 1 0 0-3.181 1.59 1.59 0 0 0 0 3.181M1.591 10.409a1.591 1.591 0 1 0 0 3.182 1.591 1.591 0 0 0 0-3.182m4.15 4.218a1.59 1.59 0 1 0 0 3.181 1.59 1.59 0 0 0 0-3.181m12.518 0a1.59 1.59 0 1 0 0 3.181 1.59 1.59 0 0 0 0-3.181m4.15 0a1.59 1.59 0 1 0 0 3.181 1.59 1.59 0 0 0 0-3.181m-20.818 0a1.59 1.59 0 1 0 0 3.181 1.59 1.59 0 0 0 0-3.181m8.3-4.218a1.591 1.591 0 1 0 0 3.182 1.591 1.591 0 0 0 0-3.182"/></svg>���������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/blackberry.svg�������������������������������0000664�0000000�0000000�00000001142�14753064456�0025741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.05 3.54 1.17 7.7h3.28c2.52 0 3.28-1.23 3.28-2.34 0-.82-.47-1.82-2.52-1.82zm8.49 0L9.66 7.7h3.28c2.56 0 3.28-1.23 3.28-2.34 0-.82-.47-1.82-2.52-1.82zm7.78 3.69-.93 4.16h3.28c2.57 0 3.33-1.17 3.33-2.34 0-.82-.47-1.82-2.5-1.82zM.88 9.8 0 13.96h3.28c2.57 0 3.28-1.23 3.28-2.34 0-.82-.47-1.82-2.52-1.82zm8.55 0-.93 4.16h3.27c2.57 0 3.34-1.23 3.34-2.34 0-.82-.47-1.82-2.52-1.82H9.42m7.67 3.93-.87 4.15h3.28c2.5 0 3.27-1.17 3.27-2.34 0-.82-.47-1.81-2.51-1.81zM8.2 16.3l-.88 4.16h3.28c2.51 0 3.27-1.23 3.27-2.34 0-.82-.46-1.82-2.51-1.82z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/blackmagicdesign.svg�������������������������0000664�0000000�0000000�00000001661�14753064456�0027076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.385 0c-1.15 0-2.076.93-2.076 2.076V5.31c0 1.148.929 2.076 2.076 2.076h3.23c1.15 0 2.076-.93 2.076-2.076V2.076A2.074 2.074 0 0 0 13.615 0zm0 .924h3.23c.638 0 1.155.514 1.155 1.152V5.31c0 .638-.516 1.152-1.155 1.152h-3.23A1.15 1.15 0 0 1 9.23 5.309V2.076c0-.638.516-1.152 1.155-1.152m0 7.385c-1.15 0-2.076.929-2.076 2.076v3.23c0 1.15.929 2.076 2.076 2.076h3.23c1.15 0 2.076-.929 2.076-2.076v-3.23c0-1.15-.929-2.076-2.076-2.076zm0 .921h3.23c.638 0 1.155.516 1.155 1.155v3.23c0 .638-.516 1.155-1.155 1.155h-3.23a1.154 1.154 0 0 1-1.155-1.155v-3.23c0-.638.516-1.155 1.155-1.155m0 7.385c-1.15 0-2.076.93-2.076 2.076v3.233c0 1.149.929 2.076 2.076 2.076h3.23c1.15 0 2.076-.93 2.076-2.076V18.69a2.075 2.075 0 0 0-2.076-2.076zm0 .924h3.23c.638 0 1.155.514 1.155 1.152v3.233c0 .638-.516 1.152-1.155 1.152h-3.23a1.15 1.15 0 0 1-1.155-1.152V18.69c0-.638.516-1.152 1.155-1.152Z"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/blazemeter.svg�������������������������������0000664�0000000�0000000�00000001643�14753064456�0025761�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.04 17.135c-.256 0-.352-.128-.32-.352l1.696-9.566c.032-.224.16-.352.416-.352h3.584c2.4 0 3.584.736 3.584 2.24 0 .607-.16 1.151-.48 1.6-.32.48-.768.8-1.344.991.384.096.736.32.96.672.256.32.384.768.384 1.28 0 1.215-.416 2.08-1.248 2.655-.832.544-1.952.832-3.328.832zm3.968-1.664q2.496 0 2.496-1.823c0-.384-.16-.64-.448-.832s-.8-.256-1.472-.256h-2.08l-.512 2.88h2.016zm.768-4.383c1.472 0 2.176-.544 2.176-1.663 0-.352-.128-.576-.416-.736s-.736-.224-1.344-.224h-1.984l-.48 2.623zm-6.88-.256a.61.61 0 0 0-.608-.608H.608a.608.608 0 1 0 0 1.216h11.648c.352 0 .64-.256.64-.608m1.344-2.175a.61.61 0 0 0-.608-.608H6.464a.608.608 0 1 0 0 1.216h7.168c.32 0 .608-.256.608-.608m-2.464 6.654a.61.61 0 0 0-.608-.608H8.256a.608.608 0 1 0 0 1.216h2.912c.32 0 .608-.256.608-.608m-.864-2.271a.61.61 0 0 0-.608-.608H3.2a.608.608 0 1 0 0 1.216h7.104a.63.63 0 0 0 .608-.608"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/blazor.svg�����������������������������������0000664�0000000�0000000�00000002014�14753064456�0025111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.834 8.101a13.91 13.91 0 0 1-13.643 11.72 10 10 0 0 1-1.994-.12 6.11 6.11 0 0 1-5.082-5.761 5.934 5.934 0 0 1 11.867-.084c.025.983-.401 1.846-1.277 1.871-.936 0-1.374-.668-1.374-1.567v-2.5a1.53 1.53 0 0 0-1.52-1.533H8.715a3.648 3.648 0 1 0 2.695 6.08l.073-.11.074.121a2.58 2.58 0 0 0 2.2 1.048 2.91 2.91 0 0 0 2.695-3.04 8 8 0 0 0-.217-1.933 7.404 7.404 0 0 0-14.64 1.603 7.497 7.497 0 0 0 7.308 7.405s.549.05 1.167.035a15.8 15.8 0 0 0 8.475-2.528c.036-.025.072.025.048.061a12.44 12.44 0 0 1-9.69 3.963 8.744 8.744 0 0 1-8.9-8.972 9.05 9.05 0 0 1 3.635-7.247 8.86 8.86 0 0 1 5.229-1.726h2.813a7.92 7.92 0 0 0 5.839-2.578.1.1 0 0 1 .059-.034.11.11 0 0 1 .12.053.1.1 0 0 1 .015.067 7.94 7.94 0 0 1-1.227 3.549.1.1 0 0 0-.014.06.11.11 0 0 0 .073.095.1.1 0 0 0 .062.004 8.5 8.5 0 0 0 5.913-4.876.16.16 0 0 1 .055-.053.15.15 0 0 1 .147 0 .15.15 0 0 1 .054.053A10.78 10.78 0 0 1 23.834 8.1M8.895 11.628a2.188 2.188 0 1 0 2.188 2.188v-2.042a.16.16 0 0 0-.15-.15Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/blender.svg����������������������������������0000664�0000000�0000000�00000002251�14753064456�0025236�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.51 13.214c.046-.8.438-1.506 1.03-2.006a3.42 3.42 0 0 1 2.212-.79c.85 0 1.631.3 2.211.79.592.5.983 1.206 1.028 2.005.045.823-.285 1.586-.865 2.153a3.4 3.4 0 0 1-2.374.938 3.4 3.4 0 0 1-2.376-.938c-.58-.567-.91-1.33-.865-2.152M7.35 14.831c.006.314.106.922.256 1.398a7.4 7.4 0 0 0 1.593 2.757 8.2 8.2 0 0 0 2.787 2.001 8.95 8.95 0 0 0 3.66.76 9 9 0 0 0 3.657-.772 8.3 8.3 0 0 0 2.785-2.01 7.4 7.4 0 0 0 1.592-2.762 7 7 0 0 0 .25-3.074 7.1 7.1 0 0 0-1.016-2.779 7.8 7.8 0 0 0-1.852-2.043h.002L13.566 2.55l-.02-.015c-.492-.378-1.319-.376-1.86.002-.547.382-.609 1.015-.123 1.415l-.001.001 3.126 2.543-9.53.01h-.013c-.788.001-1.545.518-1.695 1.172-.154.665.38 1.217 1.2 1.22V8.9l4.83-.01-8.62 6.617-.034.025c-.813.622-1.075 1.658-.563 2.313.52.667 1.625.668 2.447.004L7.414 14s-.069.52-.063.831zm12.09 1.741c-.97.988-2.326 1.548-3.795 1.55-1.47.004-2.827-.552-3.797-1.538a4.5 4.5 0 0 1-1.036-1.622 4.28 4.28 0 0 1 .282-3.519 4.7 4.7 0 0 1 1.153-1.371c.942-.768 2.141-1.183 3.396-1.185 1.256-.002 2.455.41 3.398 1.175.48.391.87.854 1.152 1.367a4.3 4.3 0 0 1 .522 1.706 4.2 4.2 0 0 1-.239 1.811 4.5 4.5 0 0 1-1.035 1.626"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/blockbench.svg�������������������������������0000664�0000000�0000000�00000003044�14753064456�0025716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.651 3.277c-.25.002-1.009.057-3.47.226l-9.113.627c-3.044.208-2.743.18-2.888.27-.163.102-.254.274-.308.58-.451 2.177-.812 3.74-1.104 5.007-.015.04-.046.178-.07.306-.038.218-.037.239.012.307.105.144.23.176 1.14.294 4.78.63 8.905 1.164 13.412 1.765.931.124.948.125.99.022.032-.081.091-.36.207-.971.476-2.468 1.03-5.366 1.433-7.42.126-.642.132-.712.069-.82a.5.5 0 0 0-.153-.153c-.04-.024-.007-.042-.157-.04M5.65 11.31c-.161.025-1.416.205-2.79.4-1.373.194-2.554.374-2.624.399-.21.076-.294.285-.194.478.062.12.215.19.7.324.065.018.15.043.19.056 4.54 1.274 9.338 2.68 13.583 3.888.238.071.563.197.77.197.157-.042 1.053-.484 3.082-1.505 1.649-.83 3.022-1.53 3.052-1.555.113-.099.173-.31.113-.402-.012-.018-.173-.055-.357-.082-3.949-.579-8.122-1.19-11.684-1.71-2.014-.29-2.635-.384-2.804-.422a3.3 3.3 0 0 0-.647-.09 2.3 2.3 0 0 0-.39.024m-1.33 3.24h-.016c-.054.011-1.122 2.303-1.122 2.407a.36.36 0 0 0 .168.287c.101.055.165.056.312.005.445-.139.918-.293 1.36-.425 1.316-.395 1.337-.403 1.477-.549.115-.12.328-.562.39-.811a1 1 0 0 1 .057-.154c.02-.035.03-.065.024-.065-.768-.198-1.565-.415-2.292-.614a3 3 0 0 0-.358-.081m13.52 1.843c-.07.04-.271.155-.448.254-.481.291-.937.593-1.446.833-.413.259-.594.315-.801.248a9 9 0 0 0-.786-.204.08.08 0 0 0-.067.05c-.23.643-.507 1.395-.74 2.053-.086.232-.236.767-.234.832s.142.196.25.236a.55.55 0 0 0 .231.027c1.257-.51 2.215-1.15 3.284-1.71.327-.171.447-.29.494-.492q.14-.611.269-1.2c.183-.812.194-.888.148-.961a.04.04 0 0 0-.035-.02c-.054.012-.08.036-.118.054z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/blockchaindotcom.svg�������������������������0000664�0000000�0000000�00000000503�14753064456�0027124�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.829 6.612-5.52-5.535a3.135 3.135 0 0 0-4.5 0L4.272 6.612l7.755 3.87zm2.117 2.235 1.095 1.095a3.12 3.12 0 0 1 0 4.5L14.22 23.35a2.7 2.7 0 0 1-.72.525V13.077zm-19.893 0L.958 9.942a3.12 3.12 0 0 0 0 4.5L9.78 23.35c.21.214.453.392.72.525V13.077z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/blogger.svg����������������������������������0000664�0000000�0000000�00000001115�14753064456�0025242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.976 24H2.026C.9 24 0 23.1 0 21.976V2.026C0 .9.9 0 2.025 0H22.05C23.1 0 24 .9 24 2.025v19.95C24 23.1 23.1 24 21.976 24M12 3.975H9A5.025 5.025 0 0 0 3.975 9v6A5.025 5.025 0 0 0 9 20.024h6A5.025 5.025 0 0 0 20.024 15v-3.975c0-.6-.45-1.05-1.05-1.05H18a.995.995 0 0 1-.976-.976A5.025 5.025 0 0 0 12 3.973zm3.074 12H9c-.525 0-.975-.45-.975-.975s.45-.976.975-.976h6.074c.526 0 .977.45.977.976s-.45.976-.975.976zm-2.55-7.95c.527 0 .976.45.976.975s-.45.975-.975.975h-3.6c-.525 0-.976-.45-.976-.975s.45-.975.975-.975z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bloglovin.svg��������������������������������0000664�0000000�0000000�00000001144�14753064456�0025616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.526 11.695c1.84-.382 3.367-2.044 3.367-4.478 0-2.604-1.9-4.97-5.615-4.97H0v19.506h10.6c3.75 0 5.683-2.341 5.683-5.292-.009-2.426-1.646-4.444-3.757-4.766m-8.37-5.793h5.207c1.407 0 2.28.849 2.28 2.044 0 1.255-.881 2.044-2.28 2.044H4.155zM9.54 18.098H4.155v-4.444h5.386c1.61 0 2.484.992 2.484 2.222.009 1.399-.932 2.222-2.484 2.222zM21.396 2.28c-1.255 0-2.315 1.052-2.315 2.307s.882 2.103 1.993 2.103c.238 0 .467-.025.56-.085-.238 1.052-1.315 2.282-2.256 2.782l1.611 1.314C22.796 9.422 24 7.462 24 5.266c0-1.9-1.23-2.985-2.604-2.985Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/blueprint.svg��������������������������������0000664�0000000�0000000�00000001430�14753064456�0025625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.809 5.524 12.806.179l-.013-.007.078-.045h-.166a1.28 1.28 0 0 0-1.196.043l-.699.403-8.604 4.954a1.29 1.29 0 0 0-.644 1.113v10.718c0 .46.245.884.644 1.113l9.304 5.357c.402.232.898.228 1.297-.009l9.002-5.345c.39-.231.629-.651.629-1.105V6.628c0-.453-.239-.873-.629-1.104m-19.282.559L11.843.719a.64.64 0 0 1 .636.012l9.002 5.345a.64.64 0 0 1 .207.203l-4.543 2.555-4.498-2.7a.96.96 0 0 0-.968-.014L6.83 8.848 2.287 6.329a.64.64 0 0 1 .24-.246m14.13 8.293-4.496-2.492V6.641a.3.3 0 0 1 .155.045l4.341 2.605zm-4.763-1.906 4.692 2.601-4.431 2.659-4.648-2.615a.3.3 0 0 1-.115-.112zm-.064 10.802-9.304-5.357a.64.64 0 0 1-.322-.557V7.018L6.7 9.51v5.324c0 .348.188.669.491.84l4.811 2.706.157.088v4.887a.64.64 0 0 1-.329-.083"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bluesky.svg����������������������������������0000664�0000000�0000000�00000001124�14753064456�0025277�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10.8c-1.087-2.114-4.046-6.053-6.798-7.995C2.566.944 1.561 1.266.902 1.565.139 1.908 0 3.08 0 3.768c0 .69.378 5.65.624 6.479.815 2.736 3.713 3.66 6.383 3.364q.204-.03.415-.056-.207.033-.415.056c-3.912.58-7.387 2.005-2.83 7.078 5.013 5.19 6.87-1.113 7.823-4.308.953 3.195 2.05 9.271 7.733 4.308 4.267-4.308 1.172-6.498-2.74-7.078a9 9 0 0 1-.415-.056q.21.026.415.056c2.67.297 5.568-.628 6.383-3.364.246-.828.624-5.79.624-6.478 0-.69-.139-1.861-.902-2.206-.659-.298-1.664-.62-4.3 1.24C16.046 4.748 13.087 8.687 12 10.8"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bluesound.svg��������������������������������0000664�0000000�0000000�00000001356�14753064456�0025630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.327 14.893-8.396.003a4.55 4.55 0 0 0-4.546 4.543c0 2.05.007 3.737.007 3.737V24h12.955l.191-.002c4.678-.099 8.077-3.577 8.077-8.273a8.7 8.7 0 0 0-.805-3.721 8.8 8.8 0 0 0 .805-3.724c0-4.695-3.399-8.173-8.084-8.275L1.392 0v.833s-.007 1.681-.007 3.733a4.55 4.55 0 0 0 4.546 4.541l8.399.013c2.375 0 4.392 1.048 5.567 2.884-1.178 1.838-3.197 2.889-5.57 2.889m.219-7.452-8.615.002a2.88 2.88 0 0 1-2.879-2.877V1.665H14.33c3.835 0 6.62 2.782 6.62 6.615q-.001 1.023-.271 1.97c-1.47-1.726-3.669-2.75-6.133-2.809m6.133 6.314c.179.629.271 1.29.271 1.97 0 3.831-2.785 6.611-6.62 6.611l-11.278.002v-2.899a2.88 2.88 0 0 1 2.879-2.879h8.446l.288-.015c2.412-.084 4.564-1.088 6.014-2.79"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bluetooth.svg��������������������������������0000664�0000000�0000000�00000000534�14753064456�0025632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C6.76 0 3.148 2.49 3.148 12S6.76 24 12 24s8.852-2.49 8.852-12S17.24 0 12 0m-.777 1.682 6.214 6.215L13.335 12l4.104 4.104-6.215 6.214v-8.193l-3.418 3.42-1.243-1.244L10.853 12l-4.29-4.3 1.243-1.245 3.418 3.42zm1.748 4.244v3.969l1.984-1.985zm0 8.181v3.967l1.984-1.984z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bmcsoftware.svg������������������������������0000664�0000000�0000000�00000001022�14753064456�0026132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.375 23.999c-.95 0-1.95-.749-1.95-2.2v-3.4c0-1.349.85-2.899 2.05-3.548l4.75-2.8-4.75-2.8C5.325 8.5 4.425 7 4.425 5.65V2.2c0-1.45 1-2.2 2.002-2.2.4 0 .849.1 1.249.35l10.7 6.35c.75.45 1.15 1.149 1.15 1.849 0 .75-.452 1.45-1.15 1.85l-2.55 1.5 2.55 1.501c.75.45 1.2 1.15 1.2 1.85 0 .75-.452 1.45-1.2 1.85L7.674 23.65c-.45.25-.85.35-1.3.35zm7.15-10.599-5.85 3.45c-.45.25-.9 1.05-.9 1.55v3.05l10.15-6zM6.775 2.6v3.05c0 .5.45 1.3.9 1.55l5.85 3.45 3.45-2.05z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bmw.svg��������������������������������������0000664�0000000�0000000�00000002711�14753064456�0024411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m0 .78C18.196.78 23.219 5.803 23.219 12c0 6.196-5.022 11.219-11.219 11.219S.781 18.196.781 12 5.804.78 12 .78m-.678.63q-.494.022-.992.078l-.107 2.944a10 10 0 0 1 .71-.094l.07-1.988-.013-.137.043.13.664 1.489h.606l.664-1.488.04-.131-.01.137.07 1.988c.232.022.473.054.71.094l-.109-2.944a15 15 0 0 0-.992-.078l-.653 1.625-.023.12-.023-.12zm6.696 1.824-1.543 2.428c.195.15.452.371.617.522l1.453-.754.092-.069-.069.094-.752 1.453c.163.175.398.458.53.63l2.43-1.544a16 16 0 0 0-.46-.568L18.777 6.44l-.105.092.078-.115.68-1.356-.48-.48-1.356.68-.115.078.091-.106 1.018-1.539c-.18-.152-.351-.291-.57-.46M5.5 3.785c-.36.037-.638.283-1.393 1.125a19 19 0 0 0-.757.914l2.074 1.967c.687-.76.966-1.042 1.508-1.613.383-.405.6-.87.216-1.317-.208-.242-.558-.295-.85-.175l-.028.01.01-.026a.7.7 0 0 0-.243-.734.72.72 0 0 0-.537-.15zm.006.615c.136-.037.277.06.308.2.032.14-.056.272-.154.382-.22.25-1.031 1.098-1.031 1.098l-.402-.383c.417-.51.861-.974 1.062-1.158a.55.55 0 0 1 .217-.139M12 4.883a7.114 7.114 0 0 0-7.08 6.388v.002a7.122 7.122 0 0 0 8.516 7.697 7.11 7.11 0 0 0 5.68-6.97A7.12 7.12 0 0 0 12 4.885zm-5.537.242q.072-.001.14.043c.088.059.128.16.106.26-.026.119-.125.231-.205.318l-1.045 1.12-.42-.4s.787-.832 1.045-1.099c.102-.106.168-.17.238-.205a.3.3 0 0 1 .14-.037zM12 5.818A6.175 6.175 0 0 1 18.182 12H12v6.182A6.175 6.175 0 0 1 5.818 12H12z"/></svg>�������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bnbchain.svg���������������������������������0000664�0000000�0000000�00000001336�14753064456�0025372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.631 3.676 12.001 0l6.367 3.676-2.34 1.358L12 2.716 7.972 5.034l-2.34-1.358Zm12.737 4.636-2.34-1.358L12 9.272 7.972 6.954l-2.34 1.358v2.716l4.026 2.318v4.636L12 19.341l2.341-1.359v-4.636l4.027-2.318zm0 7.352v-2.716l-2.34 1.358v2.716zm1.663.96-4.027 2.318v2.717l6.368-3.677V10.63l-2.34 1.358v4.636Zm-2.34-10.63 2.34 1.358v2.716l2.341-1.358V5.994l-2.34-1.358zM9.657 19.926v2.716L12 24l2.341-1.358v-2.716l-2.34 1.358-2.343-1.358ZM5.63 15.664l2.341 1.358v-2.716l-2.34-1.358v2.716Zm4.027-9.67L12 7.352l2.341-1.358-2.34-1.358-2.343 1.358Zm-5.69 1.358L6.31 5.994 3.968 4.636l-2.34 1.358V8.71l2.34 1.358zm0 4.636-2.34-1.358v7.352l6.368 3.677v-2.717l-4.028-2.318z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/boardgamegeek.svg����������������������������0000664�0000000�0000000�00000000253�14753064456�0026400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.7 4.44-2.38.64L19.65 0 4.53 5.56l.83 6.67-1.4 1.34L8.12 24l8.85-3.26 3.07-7.22-1.32-1.27z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/boat.svg�������������������������������������0000664�0000000�0000000�00000000231�14753064456�0024544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.081 0 5.833 17.686 17.15 13.93Zm-10.2 18.223L4.961 24H19.14l2.98-5.777z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/boehringeringelheim.svg����������������������0000664�0000000�0000000�00000001315�14753064456�0027631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.41 22.03c-1.72-1.24-2.63-2.15-3.49-3.46A12.2 12.2 0 0 1 0 12.03C0 5.38 5.36 0 12 0s12 5.38 12 12c0 2.73-.93 5.46-2.58 7.48-.68.86-1.26 1.36-2.83 2.55v-7.02h1.19v4.8c.88-1.04 1.31-1.67 1.74-2.43.88-1.57 1.36-3.51 1.36-5.38 0-6.06-4.88-10.99-10.89-10.99S1.11 5.94 1.11 12.08c0 2.8.99 5.28 3.08 7.73v-4.8H5.4v7.02Zm2.37 1.21c-.23-.05-.76-.3-1.19-.53V15h1.19zm7.23-16.92L12 4 8.99 6.32l-.66-.86 3.66-2.86 3.66 2.86-.66.86Zm-4.83 17.56c-.43-.08-.45-.08-.61-.13-.13-.02-.18-.02-.58-.13V7.2h1.19v16.67Zm2.4.1c-.18.02-.23.02-.48.02-.38 0-.51 0-.71-.02V7.2h1.19zm2.4-.38c-.38.13-.71.2-1.19.3V7.2h1.19zm2.43-.88c-.38.18-.61.28-1.21.56v-8.27h1.21z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/boeing.svg�����������������������������������0000664�0000000�0000000�00000001410�14753064456�0025062�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.904 17.287a6.05 6.05 0 0 1-3.76-1.301C4.35 13.27 6.8 9.628 10.144 6.069a6.07 6.07 0 0 1 2.262 7.73c-1.06-.49-2.05-1.107-2.888-1.88l1.83 3.437a6.06 6.06 0 0 1-4.443 1.93M.83 11.212a6.075 6.075 0 0 1 6.076-6.077c.9 0 1.753.196 2.523.546-3.293 2.91-5.843 6.293-7.353 9.218a6.05 6.05 0 0 1-1.246-3.687m12.34 2.912a6.9 6.9 0 0 0 .642-2.912c0-2.4-1.224-4.515-3.084-5.754a50 50 0 0 1 3.582-3.341A31 31 0 0 0 10.11 5.09a6.907 6.907 0 0 0-8.437 10.627C.35 18.579.12 20.878 1.285 21.654c1.249.832 3.963-.677 5.59-3.134 0 0-2.517 2.273-3.901 1.751-.852-.322-.855-1.625-.152-3.492a6.87 6.87 0 0 0 4.083 1.338 6.88 6.88 0 0 0 4.854-1.992l.245.462c3.01-.245 11.996-.483 11.996-.483 0-.431-5.95-.04-10.833-1.98"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bombardier.svg�������������������������������0000664�0000000�0000000�00000001207�14753064456�0025731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m0 23.24 1.823-1.822c1.823-1.823 3.645-2.127 6.076-2.127h5.012c2.43 0 3.707-.152 5.681-1.519h.244l-3.342 3.342c-1.823 1.823-3.646 2.127-6.076 2.127H0ZM5.165 6.533l1.822 1.822c1.823 1.823 3.646 2.127 6.076 2.127h5.013c2.43 0 3.706.152 5.681 1.519-1.975 1.367-3.25 1.519-5.681 1.519h-5.013c-2.43 0-4.253.304-6.076 2.127l-1.822 1.822h9.417c2.43 0 4.254-.303 6.076-2.126L24 12l-3.342-3.342c-1.822-1.823-3.645-2.126-6.076-2.126H5.165ZM0 .759l1.823 1.823C3.646 4.405 5.468 4.71 7.899 4.71h5.012c2.43 0 3.707.152 5.681 1.519h.244l-3.342-3.342C13.67 1.063 11.848.76 9.418.76H0Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bookalope.svg��������������������������������0000664�0000000�0000000�00000001620�14753064456�0025575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.418 24v-1.184q1.215-.03 1.948-.187.732-.156 1.122-.53t.53-1.06q.14-.686.14-1.777V4.738q0-1.092-.11-1.762-.108-.67-.435-1.06-.328-.39-.95-.53-.624-.14-1.622-.202V0h9.32q4.207 0 6.546 1.496 2.337 1.497 2.337 4.207 0 2.058-1.293 3.367-1.294 1.31-4.1 2.151v.124q.967.095 1.685.219.716.125 1.277.295.561.172 1.045.421.482.25.95.561 2.775 1.965 2.774 4.925a5.53 5.53 0 0 1-.92 3.07q-.919 1.42-2.571 2.23a6.3 6.3 0 0 1-1.091.452q-.56.17-1.31.28-.748.109-1.728.156-.983.046-2.323.046zm11.315-1.34q5.641 0 5.642-4.831 0-3.522-2.9-4.925a12 12 0 0 0-.966-.374 5.7 5.7 0 0 0-1.09-.233 17 17 0 0 0-1.482-.11q-.857-.03-2.103-.031H8.43v6.951q0 1.902.997 2.727.997.826 3.305.826m-2.556-12.063q.966 0 1.62-.03a10 10 0 0 0 1.122-.11q.468-.078.827-.218t.732-.39q.997-.623 1.418-1.496t.421-2.275q0-2.462-1.2-3.538T11.36 1.464h-2.4q-.53 0-.53.53v8.603z"/></svg>����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bookbub.svg����������������������������������0000664�0000000�0000000�00000001235�14753064456�0025247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 20V4h5.4c1.6 0 2.8.3 3.8 1 .9.7 1.4 1.6 1.4 2.7 0 .8-.3 1.6-.8 2.3-.6.7-1.3 1.2-2.2 1.4 1.1.1 2 .6 2.7 1.3s1 1.6 1 2.6c0 1.4-.5 2.6-1.5 3.4-1 .9-2.4 1.3-4.1 1.3zM3 6.4v4.2h1.7c.8 0 1.5-.2 1.9-.6s.7-1 .7-1.7c0-1.3-.9-1.9-2.7-1.9zM3 13v4.7h2.1q1.35 0 2.1-.6c.5-.5.8-1.1.8-1.9C8 13.7 7 13 5 13zm9.7 7V4h5.4c1.6 0 2.8.3 3.8 1 .9.7 1.4 1.6 1.4 2.7 0 .8-.3 1.6-.8 2.3-.6.7-1.3 1.2-2.2 1.4 1.1.1 2 .6 2.7 1.3s1 1.6 1 2.6c0 1.4-.5 2.6-1.5 3.4-1 .9-2.4 1.3-4.1 1.3zm3-13.6v4.2h1.7c.8 0 1.5-.2 1.9-.6s.7-1 .7-1.7c0-1.3-.9-1.9-2.7-1.9zm0 6.6v4.7h2.1q1.35 0 2.1-.6c.5-.4.7-1 .7-1.8 0-1.5-1-2.3-3-2.3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bookmeter.svg��������������������������������0000664�0000000�0000000�00000000234�14753064456�0025611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.678 14.262h6.089V24H.678zm8.215 9.717h6.089V7.11H8.893zM17.234 0v24h6.089V0z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bookmyshow.svg�������������������������������0000664�0000000�0000000�00000002000�14753064456�0026014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.338 16.595a.66.66 0 0 1-.554-.66v-8.07a.67.67 0 0 1 .679-.672h5.901q.232.001.458.04a2.62 2.62 0 0 1 2.19 2.576v6.126a.66.66 0 0 1-.204.478.68.68 0 0 1-.6.182.66.66 0 0 1-.553-.66V9.809a1.277 1.277 0 0 0-1.29-1.272h-1.287v7.398a.678.678 0 0 1-.806.66.66.66 0 0 1-.553-.66v-7.4H6.142v7.4a.66.66 0 0 1-.202.478.68.68 0 0 1-.602.182m9.812 3.517a.66.66 0 0 1-.555-.662c0-.183.07-.353.196-.478a.68.68 0 0 1 .484-.193c.572 0 1.068-.365 1.232-.909l.701-2.307-2.294-7.576a.677.677 0 0 1 .453-.847.695.695 0 0 1 .84.444l1.705 5.65 1.724-5.647c.085-.318.43-.52.786-.459l.048.01a.68.68 0 0 1 .458.85l-2.362 7.774-.746 2.489c-.193.571-.525 1.036-.957 1.349a2.68 2.68 0 0 1-1.588.522.7.7 0 0 1-.125-.011M24 7.172l-1.353-2.277-2.421 1.137-1.353-2.278-2.42 1.138-1.354-2.277-2.42 1.138-1.354-2.277-2.42 1.136L7.55.335 5.132 1.47 0 17.957l6.226 1.88a3.295 3.295 0 0 1 3.151-2.297c1.822 0 3.3 1.46 3.3 3.26l-.002.065c.015.295-.02.594-.11.887l6.331 1.914L24 7.17"/></svg>mkdocs-material-9.6.4/material/templates/.icons/simple/bookstack.svg��������������������������������0000664�0000000�0000000�00000001150�14753064456�0025600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.301 17.615c-.13-.34-.522-1.512-.133-2.432l9.827 5.674a.33.33 0 0 0 .33 0L24 12.962v2.354l-13.84 7.99zm-.11-8.652c-.288.877.015 2.058.124 2.426l9.845 5.684L24 9.083V6.727l-13.675 7.895a.33.33 0 0 1-.33 0zm13.17-1.936a.332.332 0 0 1-.485-.207l-.28-1.133-2.126-.176a.33.33 0 0 1-.138-.614l5.578-3.22-1.702-.983-13.51 7.8 9.462 5.462 13.51-7.8-4.4-2.54zm-.182-1.729.232.938 5.198-3.001-2.04-1.178-4.993 2.884 1.31.108a.33.33 0 0 1 .293.25M24 9.845 10.325 17.74a.33.33 0 0 1-.33 0L.168 12.067c-.39.919.003 2.091.133 2.43l9.859 5.693L24 12.2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/boost.svg������������������������������������0000664�0000000�0000000�00000001747�14753064456�0024762�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4.428 2.727 3.335 3.335c-.486.07-.903.276-1.32.624L.886 12.383c-1.181 1.18-1.181 3.194 0 4.375a2.4 2.4 0 0 0 1.598.834l17.088 3.681-3.335-3.333c.486-.07.903-.278 1.32-.626l5.557-5.695c1.181-1.181 1.181-3.196 0-4.377a2.4 2.4 0 0 0-1.598-.833zM11.653 6.2c.694 0 1.25.486 1.25 1.18 0 .695-.486 1.251-1.181 1.251s-1.25-.485-1.25-1.18.555-1.251 1.18-1.251zm1.51 3.792c.049-.006.088.046.088.098-.139.694-.695 1.181-1.39 1.181-.694 0-1.32-.487-1.46-1.112 0 0 .002-.07.071 0 .487.278.972.348 1.32.278.346 0 .833-.07 1.32-.416a.1.1 0 0 1 .05-.029zm.723 2.511c.058.013.06.106.06.158-.209.903-.973 1.666-1.946 1.666a2.17 2.17 0 0 1-2.084-1.528c-.07-.07 0-.138.138-.138.695.347 1.39.416 1.877.416.486 0 1.18-.14 1.875-.556q.051-.025.08-.018m.597 3.018c.049-.013.087.09.087.195-.278 1.181-1.25 2.085-2.5 2.155-1.251 0-2.293-.835-2.57-1.946 0-.139.068-.278.207-.209.834.486 1.737.556 2.362.556s1.529-.208 2.362-.694q.028-.052.052-.057"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/boosty.svg�����������������������������������0000664�0000000�0000000�00000000471�14753064456�0025144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.661 14.337 6.801 0h6.362L11.88 4.444l-.038.077-3.378 11.733h3.15q-1.982 4.934-3.086 7.733c-5.816-.063-7.442-4.228-6.02-9.155M8.554 24l7.67-11.035h-3.25l2.83-7.073c4.852.508 7.137 4.33 5.791 8.952C20.16 19.81 14.344 24 8.68 24h-.127z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/boots.svg������������������������������������0000664�0000000�0000000�00000006405�14753064456�0024756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.979 8.337c.201-.23.326-.516.326-.73 0-.143-.083-.234-.218-.234-.224 0-.493.276-.493.691a1 1 0 0 0 .018.175c-.257.4-.524.807-.793 1.198a1.5 1.5 0 0 0-.292-.029c-.649 0-1.319.487-1.319 1.367a1.7 1.7 0 0 0 .114.632c-.555.633-1.044 1.044-1.375 1.044-.13 0-.208-.071-.208-.219q0-.236.229-.758l1.91-4.228 2.062-.242.234-.489-1.993.067.346-.763-.776.092-.35.695-2.79.09-.501.995 2.917-.344-.587 1.165a2.6 2.6 0 0 0-1.086-.212 3.9 3.9 0 0 0-1.766.425 1.8 1.8 0 0 0-.792-.175c-.673 0-1.436.324-2.056.893-.126-.388-.39-.62-.778-.62-.454 0-.935.238-1.396.623-.276-.225-.673-.29-1.095-.132a2.8 2.8 0 0 0 .35-1.317c0-.781-.365-1.354-1.032-1.7a5 5 0 0 1 .723-.493 2 2 0 0 0-.233-.164 6.6 6.6 0 0 0-.942.473c-.42-.134-.922-.202-1.496-.202C5.18 5.911 2.66 7.45 2.66 9.35c0 .837.473 1.137.942 1.137.438 0 .866-.246 1.002-.544-.381-.078-.607-.408-.607-.827 0-1.481 1.792-2.774 3.63-2.774.412 0 .769.077 1.062.218-1.117.86-1.975 2.03-2.682 3.282a2 2 0 0 0-.298-.024c-.528 0-.91.224-.91.666 0 .298.194.554.494.739-.44.911-.822 1.822-1.19 2.652-.128-.252-.419-.416-.755-.416-.807 0-1.418.712-1.418 1.594 0 .575.233 1.125.636 1.566-.38.425-.796.676-1.28.69a.86.86 0 0 1-.452-.114c.38-.042.692-.325.683-.692s-.314-.628-.734-.617a.793.793 0 0 0-.783.817c.017.695.608 1.062 1.38 1.044.667-.015 1.24-.253 1.75-.654a3.27 3.27 0 0 0 1.769.5c2.049 0 3.787-1.745 3.787-4.087 0-.93-.24-1.668-.599-2.231a4.6 4.6 0 0 0 1.705-1.06c.637-.63 1.11-.572 1.381-.403-1.057 1.097-1.916 2.867-1.916 4.056 0 .737.295 1.217.862 1.217 1.7 0 3.73-3.278 3.705-5.08.546-.605 1.276-.965 1.869-.965a1.2 1.2 0 0 1 .307.037c-1.329.94-2.157 2.547-2.157 3.782 0 .655.322 1.152.95 1.152 1.17 0 2.692-1.823 2.692-3.64 0-.559-.159-.978-.41-1.273a2.6 2.6 0 0 1 1.34-.392 2.1 2.1 0 0 1 .834.18l-1.172 2.323c-.272.568-.378.988-.378 1.293 0 .469.275.71.711.71.636 0 1.385-.59 2.132-1.436.323.4.826.579 1.242.579a2.2 2.2 0 0 0 .404-.039c-.314.397-.838.696-1.607.889l-10.17 2.548c-1.545.386-2.49 1.148-2.034 2.608.353-.29.987-.573 2.63-1.073l9.232-2.816c1.35-.411 2.207-1.38 2.572-2.356.628-.306 1.189-.89 1.189-1.7.001-.894-.749-1.429-1.021-2.078zm-16.16 2.322a2.2 2.2 0 0 1 .321.33 3 3 0 0 1-.503.062q.09-.197.182-.392m-1.592-.214c0-.231.279-.27.577-.236q-.162.3-.314.604c-.167-.105-.263-.235-.263-.368m-2.271 5.663c-.34-.317-.507-.727-.502-1.068a1 1 0 0 1 .12-.462.76.76 0 0 0 .693.418.9.9 0 0 0 .35-.071 10 10 0 0 1-.661 1.183m1.403.511a2.3 2.3 0 0 1-.641-.086c1.053-1.185 1.84-3.085 2.697-4.993a5 5 0 0 0 1.013-.087c.172.363.277.805.277 1.331 0 1.723-1.266 3.835-3.346 3.835m3.366-5.816a3.3 3.3 0 0 0-.7-.577c.608-1.251 1.284-2.432 2.13-3.335.287.297.443.702.443 1.186-.001 1.204-.796 2.262-1.872 2.726zm2.597 3.579c-.164 0-.246-.142-.246-.382 0-1.047 1.778-4.474 2.673-4.474.17 0 .246.142.246.388-.002 1.058-1.77 4.468-2.673 4.468m4.588-.996c-.17 0-.245-.135-.245-.388 0-.81.72-2.513 1.877-3.511.128.213.186.482.187.763.005 1.34-1.224 3.136-1.82 3.136zm5.744-2.368a1.3 1.3 0 0 1-.032-.295c0-.523.373-.946.865-.946q.05 0 .096.004c-.317.446-.63.866-.931 1.237zm1.867.593a1.27 1.27 0 0 1-.763.252c-.385 0-.713-.159-.917-.432.387-.47.77-.997 1.13-1.533.42.236.592.782.592 1.276a2 2 0 0 1-.044.437zm.494-.6c-.015-.6-.315-1.175-.825-1.444.202-.308.396-.617.579-.917.191.39.477.813.477 1.368a2.2 2.2 0 0 1-.232.994z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bootstrap.svg��������������������������������0000664�0000000�0000000�00000001460�14753064456�0025641�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.77 11.24H9.956V8.202h2.152c1.17 0 1.834.522 1.834 1.466 0 1.008-.773 1.572-2.174 1.572zm.324 1.206H9.957v3.348h2.231c1.459 0 2.232-.585 2.232-1.685s-.795-1.663-2.326-1.663M24 11.39v1.218c-1.128.108-1.817.944-2.226 2.268-.407 1.319-.463 2.937-.42 4.186.045 1.3-.968 2.5-2.337 2.5H4.985c-1.37 0-2.383-1.2-2.337-2.5.043-1.249-.013-2.867-.42-4.186-.41-1.324-1.1-2.16-2.228-2.268V11.39c1.128-.108 1.819-.944 2.227-2.268.408-1.319.464-2.937.42-4.186-.045-1.3.968-2.5 2.338-2.5h14.032c1.37 0 2.382 1.2 2.337 2.5-.043 1.249.013 2.867.42 4.186.409 1.324 1.098 2.16 2.226 2.268m-7.927 2.817c0-1.354-.953-2.333-2.368-2.488v-.057c1.04-.169 1.856-1.135 1.856-2.213 0-1.537-1.213-2.538-3.062-2.538h-4.16v10.172h4.181c2.218 0 3.553-1.086 3.553-2.876"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/borgbackup.svg�������������������������������0000664�0000000�0000000�00000001141�14753064456�0025737�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 8.144v6.023h2.006V8.144Zm2.324 0v1.203h1.488v1.285H2.324v1.048h1.488v1.284H2.324v1.203h2.328l1.207-1.203V11.78l-.603-.604.603-.603V9.347L4.652 8.144Zm5.569 1.203L6.69 10.55v2.414l1.203 1.203H9.24v-1.125h-.522V10.55h.522V9.347Zm1.665 0v1.203h.5v2.492h-.5v1.125h1.344l1.202-1.203V10.55l-1.202-1.203Zm3.454 0v4.82h2.006v-4.82Zm3 0-.672.676v.527h.854v1.171h2.01v-1.248l-.975-1.126Zm3.971 0-1.202 1.203v2.414l1.202 1.203h1.094l.6-.594v-.531h-.89V9.347Zm1.121 0v1.203h.89v4.253h-2.446v.444l.603.609h2.646L24 14.644V10.55l-1.203-1.203Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bosch.svg������������������������������������0000664�0000000�0000000�00000001003�14753064456�0024713�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12C23.996 5.374 18.626.004 12 0m0 22.88C5.991 22.88 1.12 18.009 1.12 12S5.991 1.12 12 1.12 22.88 5.991 22.88 12c-.006 6.006-4.874 10.874-10.88 10.88m4.954-18.374h-.821v4.108h-8.24V4.506h-.847a8.978 8.978 0 0 0 0 14.988h.846v-4.108h8.24v4.108h.822a8.978 8.978 0 0 0 0-14.988M6.747 17.876a7.86 7.86 0 0 1 0-11.752zm9.386-3.635h-8.24V9.734h8.24zm1.12 3.61V6.124a7.88 7.88 0 0 1 0 11.727"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bose.svg�������������������������������������0000664�0000000�0000000�00000002405�14753064456�0024554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.052 10.589a.69.69 0 0 0-.588.332l-.54.915c-.114.19.036.399.235.399h1.873l-.336.568a.27.27 0 0 1-.24.139h-.29a.113.113 0 0 1-.102-.164c.035-.062.112-.19.112-.19h-1.699l-.246.418c-.115.194.038.405.232.405h3.174a.69.69 0 0 0 .598-.34c.12-.206.405-.69.527-.896.123-.205-.032-.41-.228-.41h-1.873l.347-.586a.28.28 0 0 1 .231-.123h.292c.095 0 .135.102.105.155s-.117.199-.117.199h1.696l.254-.43c.094-.16-.023-.392-.24-.392h-3.18zm-1.344 0H9.537c-.23 0-.47.12-.592.329-.124.207-1.13 1.911-1.24 2.096-.109.185.042.397.236.397h3.177c.255 0 .48-.141.592-.33.111-.188 1.13-1.915 1.237-2.094.106-.18-.03-.4-.24-.4zm-1.598.636c-.045.076-.89 1.505-.936 1.585a.28.28 0 0 1-.236.134h-.295c-.094 0-.138-.102-.102-.163l.94-1.592a.27.27 0 0 1 .235-.13h.296c.085 0 .143.091.097.167zm-2.919-.636H4.61l-1.39 2.354H0v.47h6.598a.69.69 0 0 0 .596-.336l.41-.697c.085-.145-.004-.331-.164-.379a.7.7 0 0 0 .583-.329c.115-.193.298-.506.402-.682a.266.266 0 0 0-.234-.4zM6.29 12.402l-.243.411a.27.27 0 0 1-.233.132h-.9l.419-.708h.857a.11.11 0 0 1 .099.166zm.694-1.178-.242.41a.27.27 0 0 1-.233.131h-.9l.418-.708h.858c.09 0 .14.093.098.167zm11.194-.635-1.667 2.823h4.042l.276-.469h-2.345l.418-.707h2.345l.278-.47H19.18l.418-.709H24v-.468z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/botblecms.svg��������������������������������0000664�0000000�0000000�00000000707�14753064456�0025601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 9.371c-1.613 0-3.09.54-4.3 1.426V0S5.624.434 4.686 1.313l.036 15.742C4.918 20.918 8.086 24 12 24c.547 0 1.074-.07 1.59-.184v-3.105a4.3 4.3 0 0 1-1.59.312 4.336 4.336 0 0 1 0-8.671 4.32 4.32 0 0 1 4.313 4.109l.09 6.031c1.757-1.332 2.91-3.426 2.91-5.805A7.315 7.315 0 0 0 12 9.372Zm1.523 7.512c0 .84-.683 1.523-1.523 1.523a1.525 1.525 0 0 1 0-3.05c.84 0 1.523.683 1.523 1.527"/></svg>���������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/boulanger.svg��������������������������������0000664�0000000�0000000�00000000726�14753064456�0025606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.405 3.612V7.19h5.662c2.987.034 5.383 2.43 5.383 5.418-.035 2.987-2.431 5.383-5.383 5.418H10.94a5.425 5.425 0 0 1-5.418-5.418V8.405c0-2.084 1.145-3.89 2.882-4.793C3.785 3.612 0 7.398 0 12.017a8.353 8.353 0 0 0 8.37 8.371h7.26c4.619 0 8.37-3.717 8.37-8.371s-3.681-8.405-8.37-8.405zm.035 6.426v2.535a2.55 2.55 0 0 0 2.535 2.535h3.022a2.55 2.55 0 0 0 2.535-2.535 2.527 2.527 0 0 0-2.535-2.535z"/></svg>������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bower.svg������������������������������������0000664�0000000�0000000�00000004010�14753064456�0024734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.542 11.756c-1.235-1.187-7.408-1.927-9.355-2.142a6 6 0 0 0 .242-.691c.266-.117.552-.225.848-.315.036.107.207.515.303.709 3.917.108 4.118-2.91 4.277-3.738.156-.808.149-1.59 1.492-3.018-2.001-.584-4.88.904-5.844 3.118a6 6 0 0 0-1.085-.298c-.257-1.038-1.597-3.93-5.114-3.93-2.278 0-4.574.94-6.301 2.58a9.4 9.4 0 0 0-2.173 3.12C.28 8.43 0 9.84 0 11.342c0 5.227 3.568 9.807 5.584 9.807.88 0 1.638-.659 1.816-1.25.15.406.606 1.665.757 1.985.222.475 1.249.885 1.698.392.577.321 1.638.514 2.215-.342 1.113.235 2.097-.428 2.118-1.22.546-.029.814-.796.695-1.406-.088-.45-1.026-2.063-1.393-2.62.725.59 2.562.757 2.784 0 1.169.918 2.991.437 3.135-.31 1.42.369 3.05-.441 2.782-1.423 2.282-.157 1.99-2.585 1.35-3.2zm-5.943-4.024c-.6-.236-1.363-.386-1.897-.386-.757 0-1.22.43-1.932.43-.15 0-.507 0-.794-.102.189.198.423.305.877.305.272 0 .81-.139 1.245-.27q.01.138.029.274c-.816.195-1.672.714-1.92.849-.55-1.218-.077-2.368.36-2.899 1.962.004 3.548 1.352 4.032 1.8zm.85-.091-.3-.28q-.464-.434-.96-.783c.491-.974 1.109-2.04 1.889-2.698-.859.346-1.707 1.38-2.208 2.485a8 8 0 0 0-.777-.433c.7-1.493 2.323-2.739 4.114-2.836-1.2 1.088-.75 3.258-1.76 4.544zm-2.464 1.017c-.133-.288-.266-.763-.25-1.042.222-.006.65.078.718.094-.026.131-.04.42-.04.456.042-.073.16-.324.208-.423.428.081.99.218 1.32.372-.388.25-1.045.523-1.957.543zM8.912 6.706c-.484-.174-.484-.611 0-.785.485-.174 1.095.045 1.095.392s-.61.567-1.095.393m1.617.162A1.252 1.252 0 1 0 8.65 7.951c.832.48 1.879-.123 1.879-1.083m2.783-1.575c-1.565 1.586-.947 3.593-.377 4.499-.81 1.348-2.404 2.27-4.255 2.69 2.078 0 3.3-.535 4.011-1.059.454-.335.7-.664.825-.847 3.081.199 7.96 1.192 8.435 1.513.19.129.388.414.417.687-2.315-.324-6.488-.665-7.58-.722.775.11 6.433 1.18 7.414 1.432-.299.486-.98.83-2.004.591.555.754-.52 1.66-2.019 1.161.33.74-1.003 1.407-2.52.636.02.74-1.88.826-2.63.007.015.098.104.284.142.367-.241 2.163-2.014 3.506-3.829 3.506-4.443 0-8.314-3.61-8.314-8.411 0-5.076 3.751-8.865 8.278-8.865 2.594 0 3.766 2.042 4.006 2.815"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/box.svg��������������������������������������0000664�0000000�0000000�00000001747�14753064456�0024424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.959 5.523c-.54 0-.959.42-.959.899v7.549a4.59 4.59 0 0 0 4.613 4.494 4.72 4.72 0 0 0 4.135-2.457c.779 1.438 2.337 2.457 4.074 2.457 2.577 0 4.674-2.037 4.674-4.613.06-2.457-2.037-4.495-4.613-4.495-1.738 0-3.295.959-4.074 2.397-.78-1.438-2.338-2.397-4.135-2.397-1.079 0-2.038.36-2.817.899V6.422a.92.92 0 0 0-.898-.899M17.602 9.26a.95.95 0 0 0-.704.158c-.36.3-.479.899-.18 1.318l2.397 3.116-2.396 3.115c-.3.42-.24.96.18 1.26.419.3 1.016.298 1.316-.122l2.039-2.636 2.096 2.697c.3.36.899.419 1.318.12.36-.3.42-.84.121-1.259l-2.338-3.115 2.338-3.057c.3-.419.298-1.018-.121-1.318-.48-.3-1.019-.24-1.318.18l-2.096 2.576-2.04-2.695c-.149-.18-.373-.3-.612-.338M4.613 11.154c1.558 0 2.817 1.26 2.817 2.758 0 1.558-1.259 2.756-2.817 2.756s-2.816-1.198-2.816-2.756c0-1.498 1.258-2.758 2.816-2.758m8.27 0c1.558 0 2.816 1.26 2.816 2.758-.06 1.558-1.318 2.756-2.816 2.756-1.558 0-2.817-1.198-2.817-2.756 0-1.498 1.259-2.758 2.817-2.758"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/boxysvg.svg����������������������������������0000664�0000000�0000000�00000004742�14753064456�0025333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3.384 5.028 6.933-4.023L12.05 0l1.716 1.002 6.866 4.01 1.716 1.003v12.054l-1.71.988c-1.712.99-5.136 2.965-6.847 3.954L12.079 24l-1.735-1.002L3.4 18.992 1.665 17.99l-.002-1.992-.01-7.973-.001-1.992zm14.68 9.478c.1.037.23.037.363.037.594 0 1.383-.333 1.779-.763.394-.392.76-1.152.76-1.778s-.366-1.386-.76-1.78c-.396-.43-1.185-.762-1.779-.762-.134 0-.263 0-.398.038.135-.069.23-.169.299-.234.397-.392.76-1.187.76-1.811 0-.592-.363-1.381-.76-1.78-.397-.397-1.189-.755-1.783-.755-.625 0-1.414.358-1.81.755-.064.067-.13.165-.232.268.031-.103.031-.234.031-.368 0-.595-.325-1.38-.755-1.778-.394-.395-1.152-.757-1.78-.757-.626 0-1.384.362-1.781.757-.427.397-.752 1.183-.752 1.778 0 .134 0 .265.028.398-.066-.133-.165-.23-.23-.298-.395-.397-1.183-.755-1.809-.755-.593 0-1.386.358-1.781.755-.399.399-.76 1.188-.76 1.78 0 .624.361 1.419.76 1.811.069.065.162.13.263.234-.101-.038-.23-.038-.364-.038-.594 0-1.383.332-1.779.762-.397.394-.76 1.154-.76 1.78s.363 1.386.76 1.778c.396.43 1.185.763 1.779.763.134 0 .263 0 .398-.037-.135.068-.228.168-.297.233-.399.39-.76 1.185-.76 1.811 0 .59.361 1.381.76 1.779.395.397 1.15.756 1.781.756.626 0 1.414-.36 1.81-.756.064-.066.13-.166.229-.267-.028.101-.028.234-.028.366 0 .59.325 1.381.752 1.778.397.398 1.155.759 1.781.759.628 0 1.386-.361 1.78-.759.43-.397.755-1.188.755-1.778 0-.132 0-.265-.03-.395.068.13.167.23.231.296.396.397 1.185.756 1.81.756.594 0 1.386-.36 1.783-.756.397-.398.76-1.189.76-1.779 0-.626-.363-1.42-.76-1.81-.069-.066-.164-.133-.263-.234Zm-1.547.591h.028c.794 0 1.425.628 1.425 1.453 0 .79-.631 1.416-1.425 1.416-.82 0-1.452-.626-1.452-1.416v-.034l-2.103-2.11v2.968c.263.263.459.621.459 1.054 0 .79-.659 1.419-1.45 1.419s-1.448-.63-1.448-1.419c0-.433.164-.79.461-1.054v-2.968l-2.11 2.11v.034c0 .79-.657 1.416-1.447 1.416a1.41 1.41 0 0 1-1.423-1.416c0-.825.63-1.453 1.423-1.453h.03l2.107-2.108H6.628a1.36 1.36 0 0 1-1.055.464c-.79 0-1.416-.659-1.416-1.451 0-.795.626-1.452 1.416-1.452.433 0 .792.2 1.055.463h2.964L7.485 8.906h-.03c-.794 0-1.423-.664-1.423-1.453 0-.79.63-1.417 1.423-1.417.82 0 1.447.628 1.447 1.417v.033l2.11 2.111v-2.97c-.263-.263-.46-.62-.46-1.054 0-.787.658-1.417 1.447-1.417.791 0 1.45.63 1.45 1.417 0 .434-.164.791-.46 1.055v2.97l2.104-2.112v-.033c0-.79.664-1.417 1.452-1.417.794 0 1.425.628 1.425 1.417 0 .79-.631 1.453-1.425 1.453h-.028l-2.109 2.107h2.965c.263-.263.623-.463 1.054-.463.79 0 1.416.657 1.416 1.452 0 .792-.626 1.451-1.416 1.451a1.36 1.36 0 0 1-1.054-.464h-2.965z"/></svg>������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/braintree.svg��������������������������������0000664�0000000�0000000�00000000654�14753064456�0025603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.276 20.482h4.717c3.641 0 5.462-1.2 5.462-3.517 0-2.275-1.945-3.517-5.752-3.517H8.276Zm0-16.965v6.538h4.138c3.103 0 4.717-1.159 4.717-3.269 0-2.152-1.655-3.269-4.759-3.269zM1.696 24v-3.518H4.47V3.517H1.697V0h11.089c5.09 0 8.193 2.358 8.193 6.455 0 2.69-1.572 4.345-3.558 5.131 2.855.787 4.882 2.814 4.882 5.586 0 4.386-3.393 6.828-8.938 6.828H1.697"/></svg>������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/brandfolder.svg������������������������������0000664�0000000�0000000�00000001547�14753064456�0026114�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 23.291h19.601v-2.978H2.98V3.689h16.626V14.6h-1.422l2.908 2.909L24 14.599h-1.417V.709H0zm16.148-9.935a3.028 3.028 0 0 0-1.653-1.58 4 4 0 0 0-.916-.254 1.7 1.7 0 0 0 .735-.296q.36-.242.647-.609.288-.37.458-.863.172-.495.171-1.069 0-.971-.377-1.617a2.86 2.86 0 0 0-1.033-1.033 4.6 4.6 0 0 0-1.536-.547 10.3 10.3 0 0 0-1.868-.162q-1.13 0-1.887.054-.753.054-1.329.145v12.933q1.024.125 1.834.171.807.044 1.634.044a12.6 12.6 0 0 0 2.057-.162 5 5 0 0 0 1.723-.592q.747-.432 1.187-1.177t.441-1.914q0-.862-.288-1.472m-5.983-6.035c.91-.111 1.873-.054 2.301.304.38.317.607.599.607 1.42 0 .751-.357 1.195-.608 1.356s-.59.368-1.403.368h-.897zm3.029 8.68c-.449.39-1.114.552-1.816.552-.79 0-1.213-.072-1.213-.072v-3.737h1.132c.711 0 1.438.126 1.832.464.509.437.611.895.611 1.505.001.609-.212.998-.546 1.288"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/brave.svg������������������������������������0000664�0000000�0000000�00000003537�14753064456�0024732�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.68 0 2.096 2.38s1.84-.512 2.709.358c.868.87 1.584 1.638 1.584 1.638l-.562 1.381.715 2.047s-2.104 7.98-2.35 8.955c-.486 1.919-.818 2.66-2.198 3.633a186 186 0 0 1-4.293 2.916c-.409.256-.92.692-1.38.692s-.97-.436-1.38-.692a186 186 0 0 1-4.293-2.916c-1.38-.973-1.712-1.714-2.197-3.633-.247-.975-2.351-8.955-2.351-8.955l.715-2.047-.562-1.381s.716-.768 1.585-1.638c.868-.87 2.708-.358 2.708-.358L8.321 0h7.36zm-3.679 14.936c-.14 0-1.038.317-1.758.69s-1.242.637-1.409.742-.065.301.087.409 2.194 1.69 2.393 1.866c.198.175.489.464.687.464s.49-.29.688-.464 2.24-1.759 2.392-1.866.254-.305.087-.41-.689-.368-1.41-.741c-.72-.373-1.617-.69-1.757-.69m0-11.278s-.409.001-1.022.206-1.278.46-1.584.46-2.581-.434-2.581-.434-2.695 3.262-2.695 3.959.339.881.68 1.243l2.02 2.149c.192.203.59.511.356 1.066-.235.555-.58 1.26-.196 1.977.384.716 1.042 1.194 1.464 1.115.421-.08 1.412-.598 1.776-.834.364-.237 1.518-1.19 1.518-1.554s-1.193-1.02-1.413-1.168c-.22-.15-1.226-.725-1.247-.95-.02-.227-.012-.293.284-.851.297-.559.831-1.304.742-1.8-.089-.495-.95-.753-1.565-.986s-1.799-.671-1.947-.74-.11-.133.339-.175c.448-.043 1.719-.212 2.292-.052s1.552.403 1.632.532c.079.13.149.134.067.579s-.5 2.581-.541 2.96c-.04.38-.12.63.288.724.409.094 1.097.256 1.333.256s.924-.162 1.333-.256c.408-.093.329-.344.288-.723-.04-.38-.46-2.516-.541-2.961s-.012-.45.067-.579c.08-.129 1.059-.372 1.632-.532s1.845.009 2.292.052c.449.042.487.107.339.175-.148.069-1.332.508-1.947.74-.615.233-1.476.49-1.565.986-.09.496.445 1.241.742 1.8s.304.624.284.85-1.026.802-1.247.95c-.22.15-1.413.804-1.413 1.169 0 .364 1.154 1.317 1.518 1.554.364.236 1.355.755 1.776.834s1.08-.4 1.464-1.115c.384-.716.039-1.422-.195-1.977s.163-.863.355-1.066l2.02-2.149c.341-.362.68-.546.68-1.243s-2.695-3.96-2.695-3.96-2.274.436-2.58.436-.972-.256-1.585-.461-1.022-.206-1.022-.206"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/breaker.svg����������������������������������0000664�0000000�0000000�00000002544�14753064456�0025243�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.556 12.924c.21 0 .386.017.585.056a3.02 3.02 0 0 1 2.246 1.956c.101.319.234.797.319 1.125l.111.433.446-.009c3.552-.075 6.456-2.965 6.456-6.546C23.72 4.513 19.195 0 12.281 0a12.2 12.2 0 0 0-7.603 2.715 11.98 11.98 0 0 0-4.397 9.286c.002.96.118 1.926.334 2.818a12.02 12.02 0 0 0 5.759 7.628A12.2 12.2 0 0 0 12.283 24a11.995 11.995 0 0 0 9.319-4.438l.124-.152-.24-.868-.463.122a17.2 17.2 0 0 1-4.463.576c-1.243 0-2.428-.128-3.598-.375a3 3 0 0 1-2.248-1.98 2.8 2.8 0 0 1-.156-.958c-.011-.782.257-1.425.741-1.975a2.98 2.98 0 0 1 2.257-1.028M12.281 1.125c6.398 0 10.313 4.11 10.313 8.813 0 2.811-2.168 5.119-4.919 5.397a23 23 0 0 0-.219-.746C15.715 9.132 11.567 4.907 6.23 2.957c1.735-1.177 3.78-1.839 6.051-1.832M1.405 12.001c0-3.283 1.455-6.227 3.756-8.223 4.377 1.403 7.964 4.397 10.058 8.371a4 4 0 0 0-.859-.272 19 19 0 0 0-3.807-.394c-3.24.006-6.345.859-9.001 2.325a11 11 0 0 1-.147-1.807m11.324 7.966c1.224.257 2.526.398 3.829.398.996 0 1.986-.083 2.948-.234a10.83 10.83 0 0 1-5.519 2.614 17 17 0 0 1-2.072-3.032q.389.165.814.254m-.084 2.904q-.18.006-.364.006a10.6 10.6 0 0 1-4.994-1.209 17.1 17.1 0 0 1 2.171-5.277c.034.294.099.587.186.848a18.8 18.8 0 0 0 3.001 5.632m-2.192-9.664a18.8 18.8 0 0 0-4.176 7.864 10.9 10.9 0 0 1-4.467-6.117 17.1 17.1 0 0 1 8.744-2.346q.27 0 .536.008a4 4 0 0 0-.637.591"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/brenntag.svg���������������������������������0000664�0000000�0000000�00000000544�14753064456�0025426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.73 12.01a8.07 8.07 0 0 1-3.274 2.421c.828 1.02 1.246 2.156.945 3.337-.288 1.128-1.366 2.228-2.9 2.228H6.5v-5.999h7c3.86 0 7-3.14 7-6.998S17.36 0 13.5 0h-11v8.998h4V3.999h7c1.655 0 3 1.345 3 3s-1.345 2.999-3 2.999h-11V24h12c3.86 0 7-3.14 7-6.998 0-1.712-.481-3.634-1.77-4.992"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/brevo.svg������������������������������������0000664�0000000�0000000�00000001067�14753064456�0024744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0M7.2 4.8h5.747c2.34 0 3.895 1.406 3.895 3.516 0 1.022-.348 1.862-1.09 2.588C17.189 11.812 18 13.22 18 14.785c0 2.86-2.64 5.016-6.164 5.016H7.199v-15zm2.085 1.952v5.537h.07c.233-.432.858-.796 2.249-1.226 2.039-.659 3.037-1.52 3.037-2.655 0-.998-.766-1.656-1.924-1.656zm4.87 5.266c-.766.385-1.67.748-2.76 1.11-1.229.387-2.11 1.386-2.11 2.407v2.315h2.365c2.387 0 4.149-1.34 4.149-3.155 0-1.067-.625-2.087-1.645-2.677z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/brex.svg�������������������������������������0000664�0000000�0000000�00000000646�14753064456�0024571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.69 2.319a3.87 3.87 0 0 0-3.108 1.547l-.759 1.007a1.66 1.66 0 0 1-1.313.656H0V21.68h5.296a3.87 3.87 0 0 0 3.108-1.547l.759-1.006a1.66 1.66 0 0 1 1.313-.657H24V2.319zm1.108 11.949h-5.66a3.87 3.87 0 0 0-3.108 1.547l-.759 1.007a1.66 1.66 0 0 1-1.313.656H4.202V9.731h5.661a3.87 3.87 0 0 0 3.107-1.547l.759-1.006a1.66 1.66 0 0 1 1.313-.657h4.771z"/></svg>������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bricks.svg�����������������������������������0000664�0000000�0000000�00000000647�14753064456�0025107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.578 0 .405.253v7.038a8.4 8.4 0 0 1 4.742-1.418q3.748 0 6.211 2.616 2.431 2.617 2.431 6.448 0 3.848-2.448 6.447Q16.456 24 12.725 24q-3.257 0-5.569-2.329v1.907H2.633V.557zm4.287 10.447q-1.79 0-2.988 1.215-1.198 1.25-1.198 3.275t1.198 3.257q1.182 1.232 2.988 1.232 1.907 0 3.088-1.282 1.165-1.266 1.165-3.207t-1.182-3.224q-1.18-1.266-3.071-1.266"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/britishairways.svg���������������������������0000664�0000000�0000000�00000001615�14753064456�0026672�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.489 13.252c-.25.212-.605.444-1.241.767-1.347.72-2.198.983-2.198.983s-1.617-.234-4.207-1.007c0 0 1.306-.378 1.93-.581a40 40 0 0 0 1.958-.681c1.055-.396 1.73-.761 2.18-1.088q.045-.034.085-.068s.32.036.593.113c.294.083.604.245.786.386.191.147.28.308.308.358a.7.7 0 0 1 .071.226s.014.085-.003.177a.6.6 0 0 1-.147.313zM24 12.196a.7.7 0 0 0-.08-.157 1.4 1.4 0 0 0-.197-.23 2 2 0 0 0-.227-.178c-.354-.232-.81-.362-1.215-.416-.627-.083-1.342-.07-1.411-.07-.23-.005-1.722.007-2.105.015-1.702.034-3.787.039-4.333.038-5.636.027-8.089-.094-10.82-.642C1.289 10.094 0 9.658 0 9.658c2.05-.073 14.004-.568 16.186-.627 1.427-.04 2.44-.048 3.253 0 .413.023.802.058 1.287.14a6 6 0 0 1 1.064.286c.486.18.893.442 1.096.707 0 0 .06.06.14.17.093.126.197.282.234.34.294.447.434.73.484.828q.078.154.145.315c.044.104.063.166.076.21.02.064.03.125.035.17Z"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/broadcom.svg���������������������������������0000664�0000000�0000000�00000002071�14753064456�0025411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c6.628 0 12 5.372 12 12a12 12 0 0 1-.56 3.63 14 14 0 0 0-.867-.388c-1.372-.546-2.629-.363-3.888.4 0 0-.459.28-.597.366-.586.37-1.14.717-1.672.717-.508 0-1.007-.135-1.218-1.117-.33-1.533-1.135-5.298-1.486-7.162-.206-1.097-.319-1.688-.436-2.088-.208-.706-.586-1.09-1.124-1.15 0 0-.084-.013-.152-.013s-.162.014-.162.014c-.531.064-.907.447-1.114 1.15-.117.4-.23.99-.436 2.087-.351 1.864-1.156 5.63-1.486 7.162-.21.982-.71 1.117-1.218 1.117-.531 0-1.086-.348-1.672-.717-.138-.086-.597-.366-.597-.366-1.259-.763-2.516-.946-3.888-.4-.301.12-.586.251-.867.387A12 12 0 0 1 0 12C0 5.372 5.372 0 12 0m8.375 16.976c-.453.152-.855.42-1.256.672-.756.475-1.613 1.014-2.704 1.014-1.614 0-2.749-.964-3.112-2.647C13.023 14.712 12 9.793 12 9.793a496 496 0 0 1-1.303 6.222c-.362 1.683-1.497 2.647-3.112 2.647-1.09 0-1.946-.539-2.703-1.014-.401-.252-.804-.52-1.256-.672a2.3 2.3 0 0 0-1.414-.01c-.33.097-.644.234-.951.386C3.227 21.292 7.207 24 11.91 24s8.863-2.708 10.83-6.648a6 6 0 0 0-.95-.386 2.32 2.32 0 0 0-1.415.01"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bruno.svg������������������������������������0000664�0000000�0000000�00000005120�14753064456�0024746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.394 9.583s-.742.511-1.13.275a.822.822 0 0 1 .855-1.404c.388.236.275 1.129.275 1.129m1.48 3.245-.308.82.582.24a.41.41 0 1 1 .809.146.82.82 0 0 1-1.122.613l-.95-.391a.41.41 0 0 1-.228-.524l.448-1.193a.82.82 0 0 1 .769-.533h2.525l.239.036a.8.8 0 0 1 .214.101.8.8 0 0 1 .303.363l.476 1.12a.41.41 0 0 1-.187.524l-.896.471a.82.82 0 0 1-1.196-.62.41.41 0 0 1 .353-.461.41.41 0 0 1 .461.353l.56-.294-.327-.771zM9.353 17.98c-.959-.514-2.183-1.54-1.961-3.22a.411.411 0 0 1 .814.107c-.167 1.272.822 2.009 1.546 2.395a.99.99 0 0 0 1.081-.092l.903-.708v-1.045a.41.41 0 0 1 .822 0v1.045l.903.708c.19.15.423.22.655.209a1 1 0 0 1 .074-.019.4.4 0 0 1 .093-.003q.134-.03.259-.095c.724-.386 1.713-1.123 1.546-2.395a.41.41 0 0 1 .353-.461.41.41 0 0 1 .461.354c.223 1.688-1.013 2.716-1.974 3.227a2 2 0 0 1-.22.099c.148 1.424-.14 2.562-.449 3.24-.169.37-.355.617-.49.732-.194.167-.517.305-.933.366-.531.078-1.227.039-1.945-.182-.576-.177-.973-.686-1.208-1.343-.362-1.009-.352-2.368-.33-2.919m4.54.213a1.8 1.8 0 0 1-.939-.376l-.807-.633-.807.633a1.8 1.8 0 0 1-1.173.384c-.012.453-.001 1.219.15 1.922.072.333.174.652.329.908.122.2.275.361.486.425.586.18 1.152.218 1.585.155.227-.033.412-.086.518-.176.115-.099.259-.363.395-.744.213-.597.367-1.46.263-2.498m-8.683-.955-.191.402a1.23 1.23 0 0 1-2.053.27c-.81-.961-1.948-2.505-2.548-4.068-.427-1.115-.576-2.241-.213-3.198C2.894 3.559 6.247 2.969 6.98 2.928c1.34-.865 5.583-2.807 10.424.342.795-.051 4.042.203 6.424 7.252.325.961.162 2.081-.263 3.186-.599 1.557-1.709 3.088-2.5 4.046a1.23 1.23 0 0 1-2.061-.262l-.133-.28a10 10 0 0 1-.901 1.281c-.57.679-1.306 1.32-2.154 1.598a.41.41 0 0 1-.519-.263.41.41 0 0 1 .263-.518c.705-.231 1.306-.78 1.781-1.345a9.3 9.3 0 0 0 1.097-1.666l-.245-.518a1.2 1.2 0 0 1-.078-.842c.246-.924.981-4.015.071-6.043a.41.41 0 1 1 .749-.336c.993 2.212.243 5.583-.026 6.591a.4.4 0 0 0 .026.278l.811 1.712a.41.41 0 0 0 .685.089c.748-.904 1.801-2.346 2.367-3.817.351-.912.52-1.834.252-2.628-2.447-7.241-5.667-6.687-5.667-6.687a.42.42 0 0 1-.309-.061C12.48.972 8.456 2.917 7.339 3.676a.4.4 0 0 1-.252.07S3.739 3.649.973 10.935c-.297.783-.137 1.701.213 2.612.565 1.475 1.644 2.927 2.408 3.833a.41.41 0 0 0 .683-.092l.816-1.723a.4.4 0 0 0 .027-.278c-.269-1.008-1.02-4.38-.027-6.592a.41.41 0 0 1 .543-.206.41.41 0 0 1 .207.543c-.911 2.028-.176 5.119.071 6.043.075.282.047.578-.078.842l-.203.427c.117.226 1.249 2.351 2.958 2.911a.41.41 0 0 1 .263.519.41.41 0 0 1-.519.262c-1.484-.487-2.606-1.983-3.125-2.798m10.247-7.655s-.114-.893.274-1.129a.82.82 0 0 1 1.129.275.82.82 0 0 1-.274 1.129c-.388.236-1.129-.275-1.129-.275"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bsd.svg��������������������������������������0000664�0000000�0000000�00000002522�14753064456�0024374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.725 6.664C5.6 6.91 6.353 7.684 6.6 8.556c.27.95-.032 1.905-.671 2.633.783.432 1.44 1.083 1.704 1.956.244.807.185 1.739-.224 2.483-.446.812-1.3 1.457-2.203 1.65-.496.106-1.02.07-1.524.07H.602c-.393 0-.602-.28-.602-.638V9.476C0 5.81 3.889 6.428 4.725 6.664M1.051 9.63v1.367h3.228c1.258 0 1.461-1.761 1.285-2.272-.184-.533-.687-.893-1.2-1.056-.426-.097-3.313-.784-3.313 1.961m0 2.357v4.297c0 .116-.006.099.116.099H3.57c.67 0 1.364.022 1.98-.284.782-.387 1.24-1.422 1.158-2.263-.084-.849-.667-1.43-1.44-1.72-.387-.147-.927-.129-1.339-.129zm14.791-4.77c0-.47.28-.706.854-.706h2.916c2.9 0 4.388 2.797 4.388 5.492 0 2.754-1.797 5.404-4.683 5.404h-2.856c-.471 0-.619-.088-.619-.603V7.218zm1.09.369v8.746h2.311c2.342 0 3.594-2.15 3.594-4.329 0-2.238-1.134-4.417-3.387-4.417zm-5.506.017c-.948 0-1.824.776-1.824 1.796 0 .918 1.235 1.45 2.456 2.11 1.292.704 2.67 1.408 2.67 2.902 0 2.054-1.536 3.116-3.518 3.116a4.5 4.5 0 0 1-2.47-.718c-.258-.173-.388-.388-.388-.632 0-.33.159-.488.488-.488.159 0 .33.057.504.172.56.345 1.277.546 1.91.546 1.25 0 2.311-.546 2.311-1.925 0-.861-1.033-1.407-2.153-1.996-1.408-.732-2.988-1.536-2.988-3.03 0-1.882 1.436-2.973 3.232-2.973.775 0 1.622.215 2.441.66a.77.77 0 0 1 .402.661c0 .287-.201.56-.502.56-.173 0-.345-.129-.546-.258-.46-.287-1.279-.503-2.025-.503"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bspwm.svg������������������������������������0000664�0000000�0000000�00000014317�14753064456�0024761�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.814 8.437c-.02-.02-.025-.076-.025-.166v-.895q-.001-.113.02-.136c.01-.015.055-.025.126-.025h.683c.433 0 .654.211.654.629 0 .422-.221.628-.654.628H5.93q-.092.001-.116-.035m.146 1.795h.709a.71.71 0 0 0 .502-.176c.131-.116.201-.292.201-.528q0-.346-.196-.513a.76.76 0 0 0-.507-.166h-.75q-.083 0-.105.03c-.02.02-.025.076-.025.156v1.076q0 .077.03.1c.02.016.065.02.14.02zm11.392-1.61h.492q.316.001.483-.2c.11-.136.17-.322.17-.553 0-.433-.22-.654-.653-.654h-.492c-.076 0-.121.01-.136.02-.02.01-.025.045-.025.1v1.082c0 .1.005.155.02.176q.021.03.14.03zM24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12m-8.041-4.9c0 .06.005.09.015.1s.04.015.1.015h.262q.12.001.15.025.025.023.026.12v2.715c0 .031.005.051.005.061q-.001.097-.1.096h-.358c-.05 0-.075.01-.085.02q-.015.015-.015.105v.1q0 .107.015.132.015.021.105.02h1.64q.09.001.105-.02c.01-.01.02-.05.02-.121v-.161c0-.055-.035-.085-.095-.085-.015 0-.036.005-.066.005q-.046.006-.07.005h-.261q-.114 0-.136-.015c-.02-.01-.025-.046-.025-.106V9.1c0-.071.03-.106.1-.106.01 0 .03.005.06.005h.493c.463 0 .81-.1 1.05-.307q.357-.31.358-.824c0-.332-.12-.583-.352-.764q-.347-.266-1.056-.267h-1.649c-.02 0-.04 0-.07-.005-.03 0-.056-.005-.066-.005-.07 0-.1.03-.1.09zm-5.47 3.443c0 .035.005.06.025.07.015.016.05.02.106.02h.136c.03 0 .06 0 .08-.004a.1.1 0 0 0 .056-.03q.015-.024.03-.04.009-.014.025-.051a.3.3 0 0 1 .03-.06q.053-.1.075-.1.013.001.096.055c.236.19.538.28.905.28q.648 0 1.055-.3a.98.98 0 0 0 .403-.83 1.14 1.14 0 0 0-.126-.543.9.9 0 0 0-.317-.347 2.2 2.2 0 0 0-.437-.201 6 6 0 0 0-.478-.146 4 4 0 0 1-.432-.136.8.8 0 0 1-.322-.211.5.5 0 0 1-.12-.342q0-.224.18-.352.181-.129.544-.13.308.001.578.176a.87.87 0 0 1 .362.472q.001.022.01.106a.4.4 0 0 0 .03.126q.016.045.07.045h.186q.073.001.096-.035a.2.2 0 0 0 .025-.111v-.976a.2.2 0 0 0-.02-.09c-.01-.01-.04-.02-.086-.02h-.1a.5.5 0 0 0-.151.015q-.037.015-.076.075l-.05.08c-.04.061-.065.086-.08.086-.01 0-.045-.02-.106-.07a1.33 1.33 0 0 0-.79-.236c-.361 0-.658.085-.899.256s-.357.422-.357.754q0 .3.12.503a.8.8 0 0 0 .318.317c.13.07.27.13.432.18q.233.076.472.136c.156.04.297.091.428.141.13.056.236.13.316.231s.126.227.126.372a.6.6 0 0 1-.206.468q-.204.18-.648.181a1.12 1.12 0 0 1-.694-.221 1 1 0 0 1-.402-.548.4.4 0 0 1-.02-.11q-.007-.078-.036-.101a.25.25 0 0 0-.11-.02h-.136q-.074 0-.096.015-.021.015-.02.06v.045c0 .02.005.04.005.05v.936c0 .02-.005.04-.005.06zm-5.932-.065c0 .055.005.09.025.11q.024.028.086.026h.065c.03 0 .06-.005.08-.005H6.72q.64 0 1.025-.257c.252-.17.383-.437.383-.799a.77.77 0 0 0-.262-.609q-.264-.224-.724-.291c.553-.11.835-.407.835-.885q0-.466-.377-.699c-.252-.15-.578-.231-.98-.231H4.707c-.025 0-.04-.005-.05-.005-.04 0-.07.01-.08.03-.016.02-.02.055-.02.11v.167q0 .059.014.065c.01.01.04.01.09.01h.378c.03 0 .045.01.055.02s.015.04.015.08v2.695q0 .165-.03.197c-.02.02-.08.025-.186.025h-.241c-.046 0-.07.01-.08.02q-.016.021-.016.11v.116zm6.52 3.2q0-.075-.016-.09a.2.2 0 0 0-.097-.013h-.838q-.09 0-.104.02-.018.02-.017.12v.105q0 .075.02.09.02.018.114.017a1 1 0 0 1 .155.01q.035.009.036.037 0 .014-.036.124l-.232.663q-.062.171-.144.423-.062.175-.074.174-.014 0-.073-.225a9 9 0 0 0-.1-.331l-.252-.764a.3.3 0 0 1-.017-.078c0-.02.023-.033.077-.033h.077q.074 0 .094-.013.02-.01.02-.071v-.188q0-.048-.02-.067c-.013-.013-.037-.02-.064-.02q-.019.001-.053.003-.039.005-.057.004h-.862c-.02 0-.03-.004-.037-.004q-.049 0-.063.02-.019.022-.017.094v.1q-.002.02-.003.044v.037q-.001.036.013.047.014.014.064.014h.11q.08 0 .1.05l.028.07a.3.3 0 0 1 .016.067q0 .022-.03.094l-.291.684q-.021.055-.067.16c-.034.075-.05.118-.057.132q-.056.12-.067.12-.022 0-.044-.07a4 4 0 0 1-.07-.198q-.04-.122-.054-.174l-.265-.754-.02-.054-.023-.05a.1.1 0 0 1-.007-.034q-.001-.042.117-.043h.135q.055 0 .067-.014a.2.2 0 0 0 .013-.087v-.16q-.001-.056-.017-.074a.07.07 0 0 0-.053-.02q-.01.002-.04.003H6.978c-.024 0-.04-.004-.047-.004-.054 0-.077.03-.077.084v.178q-.002.07.016.08.015.014.101.014h.1a.3.3 0 0 1 .068.006q.024.005.043.02c.01.014.017.02.02.027a.3.3 0 0 1 .017.047c.007.024.01.04.017.05l.697 1.921.013.044q.01.028.014.037.001.009.017.023a.04.04 0 0 0 .033.017.3.3 0 0 0 .057.003h.15q.031 0 .058-.003.02-.002.04-.004a.06.06 0 0 0 .034-.013.1.1 0 0 1 .02-.014q.008-.004.016-.023.01-.014.014-.024l.013-.033q.009-.025.017-.04l.355-.845c.014-.033.067-.174.168-.422.034-.08.054-.124.067-.124s.037.054.064.154a4 4 0 0 0 .144.432l.308.815.017.05a.2.2 0 0 0 .016.047l.024.023a.05.05 0 0 0 .044.02q.024.005.07.004h.12q.046.002.078-.007a.2.2 0 0 0 .047-.013q.019-.005.033-.027l.02-.037a.3.3 0 0 0 .017-.05q.008-.04.017-.06l.647-1.87a1 1 0 0 1 .027-.084.1.1 0 0 1 .036-.03.3.3 0 0 1 .104-.017h.141a.2.2 0 0 0 .07-.01q.012-.01.014-.05zm5.671 2.126q0-.04-.016-.054a.2.2 0 0 0-.077-.013h-.175q-.08 0-.1-.023-.025-.026-.024-.088v-.107l-.057-1.435q-.002-.018-.003-.046v-.04q0-.046.02-.058a.3.3 0 0 1 .104-.013h.094q.095.002.114-.017.02-.014.02-.104v-.124q0-.065-.02-.087a.08.08 0 0 0-.06-.023q-.016.002-.048.003h-.864a.3.3 0 0 0-.087.01.1.1 0 0 0-.054.037q-.018.027-.027.047a.3.3 0 0 0-.023.063 1 1 0 0 1-.02.07l-.279.758q-.111.296-.164.496-.05.186-.08.185-.03.002-.074-.198a9 9 0 0 0-.147-.51l-.275-.878a.2.2 0 0 0-.04-.067.2.2 0 0 0-.081-.013h-1.002q-.034-.001-.044-.003-.044 0-.063.02c-.014.013-.017.043-.017.083v.165c0 .04.003.067.017.073q.014.014.093.014h.155q.062.001.083.013.02.016.02.047l-.006.097-.07 1.475v.084q0 .051-.02.074-.02.02-.081.02h-.168q-.091 0-.107.016-.018.014-.017.094v.154q-.001.054.017.074.014.019.054.017h.037q.03-.002.05-.003h.905q.059 0 .077-.014c.01-.006.017-.027.017-.053v-.215q0-.046-.01-.057a.06.06 0 0 0-.04-.013h-.205q-.081.001-.107-.017-.028-.018-.027-.064 0-.016.003-.057l.007-.06.027-.73.003-.202q0-.2.01-.352.005-.15.02-.15.022 0 .084.2.055.183.171.537l.389 1.186q.02.07.047.081.02.014.1.013h.252q.04.002.07-.016a.1.1 0 0 0 .034-.04.3.3 0 0 0 .02-.064q.008-.04.016-.06l.41-1.214q.029-.086.103-.369.05-.203.07-.204.01.001.02.124.006.125.01.302l.004.174.027.784q0 .028.003.067.002.04.004.05 0 .044-.027.064-.024.019-.094.017h-.16q-.075.001-.095.017-.018.014-.017.063v.198q0 .05.014.064t.05.013h.037q.024-.002.044-.003h1.132q.079 0 .098-.014.016-.01.016-.077zM21.128 12a.173.173 0 0 0-.174-.174h-5.975v-8.78a.173.173 0 1 0-.347 0v8.78H9.294v-8.78a.173.173 0 1 0-.348 0v8.78h-5.9a.174.174 0 0 0 0 .348h8.78v8.78a.173.173 0 1 0 .348 0v-8.78h8.78a.173.173 0 0 0 .173-.174z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bt.svg���������������������������������������0000664�0000000�0000000�00000001164�14753064456�0024232�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.589 7.91h5.977v1.753H16.56v6.41h-1.97v-6.41h-2zM12 22.523C6.193 22.523 1.477 17.807 1.477 12S6.193 1.477 12 1.477 22.523 6.193 22.523 12 17.807 22.523 12 22.523M12 24c6.626 0 12-5.374 12-12S18.626 0 12 0C5.379 0 0 5.374 0 12s5.379 12 12 12M9.97 13.574c0-.516-.321-.865-.873-.865h-1.32v1.702h1.32c.552 0 .874-.345.874-.837m-.24-3.276c0-.433-.275-.732-.745-.732h-1.21v1.486h1.21c.47 0 .746-.299.746-.754m2.231 3.372c0 1.546-1.09 2.402-2.65 2.402H5.834V7.91h3.249c1.573 0 2.64.805 2.64 2.277 0 .672-.298 1.27-.781 1.634.552.326 1.021.947 1.021 1.85Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/buddy.svg������������������������������������0000664�0000000�0000000�00000000614�14753064456�0024733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.7 5.307 12.945.253a1.89 1.89 0 0 0-1.891 0L2.299 5.306a1.89 1.89 0 0 0-.945 1.638v10.11c0 .675.36 1.3.945 1.637l8.756 5.056a1.89 1.89 0 0 0 1.89 0l8.756-5.055c.585-.338.945-.962.945-1.638V6.945c0-.675-.36-1.3-.945-1.638zm-7.45 7.753-3.805 3.804-1.351-1.351 3.804-3.805-3.804-3.806 1.35-1.35 3.805 3.805 1.351 1.35z"/></svg>��������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/budibase.svg���������������������������������0000664�0000000�0000000�00000002025�14753064456�0025400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 0a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2Zm2 6h2.5v5.22q.885-.95 2.21-.95a3.37 3.37 0 0 1 2.565 1.13c.178.199.327.422.46.66V6h2.505v5.22c.59-.634 1.324-.95 2.21-.95a3.37 3.37 0 0 1 2.566 1.13q.464.516.724 1.22c.175.47.26.965.26 1.495q0 .809-.27 1.52a3.7 3.7 0 0 1-.755 1.234q-.48.524-1.14.83-.65.3-1.415.301-1.381 0-2.186-1.035v.81h-2.5v-1.601a3.6 3.6 0 0 1-1.638 1.525q-.652.3-1.41.301-1.382 0-2.186-1.035v.81H4Zm4.035 6.484a1.57 1.57 0 0 0-1.125.487 1.73 1.73 0 0 0-.474 1.174 1.62 1.62 0 0 0 .468 1.16c.145.145.322.265.522.355q.3.135.629.135a1.57 1.57 0 0 0 1.125-.484q.218-.226.345-.526c.08-.205.125-.41.125-.63a1.68 1.68 0 0 0-.47-1.175q-.225-.225-.51-.36a1.5 1.5 0 0 0-.635-.136m7.74 0a1.57 1.57 0 0 0-1.125.487 1.73 1.73 0 0 0-.474 1.174 1.62 1.62 0 0 0 .469 1.16q.219.219.52.355.3.135.63.135a1.57 1.57 0 0 0 1.125-.484q.217-.226.346-.526c.08-.205.125-.41.125-.63a1.68 1.68 0 0 0-.471-1.175q-.225-.225-.51-.36a1.5 1.5 0 0 0-.635-.136"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/buefy.svg������������������������������������0000664�0000000�0000000�00000006207�14753064456�0024742�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.358.004c-.008 0-.175.02-.375.031q-.96.074-1.902.278c-.402.09-1.496.402-1.54.433-.738.259-1.472.606-2.17.957-.606.332-1.544.938-1.689 1.094a6 6 0 0 1-.304.242c-.387.309-1.172 1.102-1.528 1.543-1.203 1.512-1.87 3.145-2.074 5.063-.066.66 0 2.507.086 2.507.02 0 .32-.132.684-.304.191-.086.418-.192.511-.235s.602-.273 1.122-.515c.527-.243 1.046-.48 1.16-.532l.488-.226c.156-.07.297-.13.316-.13s-.007-.081-.058-.183a4.26 4.26 0 0 1-.48-1.996c0-1.152.402-2.246 1.23-3.344a8 8 0 0 1 1.32-1.32c.07-.054.172-.129.227-.176.34-.261 1.437-.851 1.59-.851q.052 0 .035.066c-.012.04-.09.422-.18.844-.082.434-.16.816-.172.86-.008.038-.043.21-.074.378-.035.168-.066.34-.074.38-.012.042-.094.464-.192.948-.093.48-.19.95-.21 1.047-.02.094-.044.203-.047.246l-.157.801c-.01.043-.113.555-.23 1.14-.117.587-.219 1.098-.23 1.141l-.153.766a9 9 0 0 1-.074.375q-.064.297-.114.598a1 1 0 0 0-.035.148c-.01.05-.062.3-.113.563-.055.261-.105.539-.117.609s-.047.234-.074.363q-.04.17-.07.34-.268 1.35-.544 2.7l-.07.378c-.012.043-.094.469-.195.95l-.207 1.046a4 4 0 0 0-.047.25l-.156.797c-.012.043-.118.559-.235 1.14-.113.587-.215 1.099-.222 1.134-.05.23-.286 1.437-.3 1.53l-.02.122 3.546-.012c3.137 0 4.184-.02 4.723-.07l.457-.043c.168-.012.328-.031.363-.035.035-.008.152-.024.266-.035.113-.012.351-.051.527-.086.18-.032.367-.063.414-.07.047-.012.203-.044.344-.079.137-.03.273-.062.308-.07.094-.02.73-.207.817-.242.043-.02.238-.098.433-.18 1.258-.5 2.297-1.312 3.032-2.371.136-.195.511-.824.511-.855 0-.012.07-.16.15-.332a7.8 7.8 0 0 0 .64-2.258c.05-.383.02-1.817-.05-1.926a1 1 0 0 1-.036-.191 6.05 6.05 0 0 0-3.172-4.23 6.7 6.7 0 0 0-1.23-.497l-.188-.043.308-.203q.2-.133.39-.274.378-.3.734-.625c.525-.535.845-.949 1.17-1.503.265-.45.546-1.157.624-1.56a.6.6 0 0 1 .032-.14c.093-.265.093-1.61 0-1.761-.008-.012-.02-.075-.032-.137a4 4 0 0 0-.1-.344c-.415-1.27-1.368-2.328-2.68-2.976C17.55.632 16.78.344 16.525.3a2 2 0 0 1-.265-.059 9 9 0 0 0-.93-.168A11 11 0 0 0 14.03 0c-.368.004-.669-.001-.673.003zm1.645 1.812c.972.254 1.742.891 2.082 1.723.207.504.254.79.254 1.543 0 .613-.02.89-.114 1.277a4.28 4.28 0 0 1-2.28 2.918c-.22.114-.41.2-.512.235-.012 0-.047.02-.079.031-.273.113-1.418.371-1.46.328-.012-.012.042-.297.11-.644.07-.344.14-.688.147-.762a2 2 0 0 1 .04-.192 1 1 0 0 0 .034-.191c.012-.078.032-.16.04-.191.011-.032.027-.114.035-.188.011-.07.074-.39.136-.703.067-.316.13-.613.137-.664.008-.055.09-.48.192-.95.093-.472.18-.91.19-.972.013-.062.044-.234.075-.379.031-.148.06-.308.07-.36.172-.91.375-1.894.383-1.933.024-.054.055-.047.52.074M13.84 11.824c.191.028.508.086.82.16.172.036.664.235.926.371 1.465.758 2.273 2.356 2.098 4.133a7 7 0 0 1-.11.664c-.012.024-.023.09-.039.153a8 8 0 0 1-.352.949c-1.082 2.172-3.394 3.5-6.199 3.55l-.476.012.023-.105.043-.203c.012-.055.031-.184.055-.285l.058-.305c.012-.066.024-.148.036-.191.007-.043.085-.446.168-.895.09-.445.183-.926.214-1.062l.08-.399c.01-.086.022-.18.034-.21.011-.032.023-.099.035-.15.012-.054.04-.198.058-.323.024-.125.106-.528.176-.895q.076-.39.153-.777c.007-.067.043-.235.07-.38.055-.261.078-.386.113-.609l.094-.472.285-1.465c.117-.61.223-1.14.23-1.188q.019-.082.126-.093c.187-.024 1.05-.008 1.28.015z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/buffer.svg�����������������������������������0000664�0000000�0000000�00000000411�14753064456�0025070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.371 5.476 11.943 0l10.686 5.476-10.686 5.495zm3.36 4.81 7.212 3.547 7.288-3.547 3.398 1.655-10.686 5.202L1.371 11.94zm0 6.171 7.212 3.911 7.288-3.91 3.398 1.815L11.943 24 1.371 18.273z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bugatti.svg����������������������������������0000664�0000000�0000000�00000001715�14753064456�0025266�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 2.978h18.593c.021.004.042.012.063.013q.654.027 1.279.218c1.459.451 2.507 1.367 3.117 2.772.454 1.046.5 2.259.316 3.156a4.63 4.63 0 0 1-1.37 2.482q-.02.022-.04.045c.021.026.052.04.077.061a4.77 4.77 0 0 1 1.951 3.564c.001.021.01.042.014.063v.79q-.01.04-.014.08c-.004.046-.002.093-.007.14a5.5 5.5 0 0 1-.21 1.047c-.398 1.278-1.167 2.262-2.336 2.924-.836.474-1.744.686-2.7.687-6.24.004-12.48.002-18.72.002v-4.74h2.988l.001 1.738c.134.016 7.226.01 7.286-.006v-4.668h-3.06v1.425c-.102.019-2.928.014-2.986-.004V8.912h2.986v1.424c.103.019 3.003.014 3.06-.003V5.976H3V7.51H.008Zm13.753 15.05h4.744c.254 0 .505-.023.75-.09.77-.21 1.3-.683 1.546-1.447a2.6 2.6 0 0 0-.007-1.636 2.07 2.07 0 0 0-1.12-1.274 2.55 2.55 0 0 0-1.092-.239h-4.82zm.003-12.058v4.377h4.397a2.5 2.5 0 0 0 .723-.103c.678-.203 1.147-.63 1.376-1.304.145-.428.163-.868.068-1.308-.161-.742-.598-1.251-1.313-1.515a2.7 2.7 0 0 0-.947-.147Z"/></svg>���������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bugcrowd.svg���������������������������������0000664�0000000�0000000�00000001751�14753064456�0025443�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 12 18 1.387H6L0 12l6 10.613h12zm-5.782 1.658q-.005 1.238-.354 2.231a5 5 0 0 1-.99 1.708 4.3 4.3 0 0 1-1.503 1.093 4.7 4.7 0 0 1-1.896.385 4.2 4.2 0 0 1-1.145-.152 3.8 3.8 0 0 1-.868-.36 4 4 0 0 1-.601-.435 3 3 0 0 1-.466-.514h-.04l.02.193q.017.248.02.497v.528H7.961V7.062q-.002-.226-.114-.337c-.077-.074-.19-.109-.33-.109h-.811V4.425h2.452q.71-.004 1.048.331c.222.223.333.576.33 1.049v3.003q-.005.387-.02.626l-.02.247h.04a3 3 0 0 1 .463-.507q.232-.214.6-.426t.876-.36c.38-.1.77-.15 1.162-.148q1.053.005 1.894.395a4.1 4.1 0 0 1 1.446 1.11q.6.72.92 1.715.317.988.32 2.198m-2.803 1.406q.206-.597.209-1.366-.004-.988-.328-1.718-.324-.726-.902-1.125a2.35 2.35 0 0 0-1.344-.404 2.6 2.6 0 0 0-.969.186 2.4 2.4 0 0 0-.83.589 2.8 2.8 0 0 0-.579 1.015q-.21.62-.216 1.477c0 .397.053.792.159 1.174.101.366.265.712.483 1.02.211.3.486.548.805.722q.482.265 1.127.27c.343.002.683-.07.997-.213a2.4 2.4 0 0 0 .824-.623q.36-.409.564-1.004"/></svg>�����������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bugsnag.svg����������������������������������0000664�0000000�0000000�00000001372�14753064456�0025254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 24c-4.596 0-8.336-3.74-8.336-8.336v-4.135a.62.62 0 0 1 .62-.62h2.957L7.23 1.337 4.903 2.77v5.45a.62.62 0 0 1-1.24 0V2.7c0-.384.204-.749.53-.95L6.773.166a1.114 1.114 0 0 1 1.699.949l.01 9.796h3.52a4.76 4.76 0 0 1 4.753 4.754 4.76 4.76 0 0 1-4.753 4.753 4.76 4.76 0 0 1-4.754-4.753l-.003-3.515H4.903v3.515c0 3.912 3.183 7.097 7.097 7.097a7.104 7.104 0 0 0 7.097-7.097A7.105 7.105 0 0 0 12 8.567h-1.076a.62.62 0 0 1 0-1.24H12c4.596 0 8.336 3.74 8.336 8.336S16.596 24 12 24M8.482 12.15l.004 3.514A3.52 3.52 0 0 0 12 19.178a3.52 3.52 0 0 0 3.514-3.514A3.52 3.52 0 0 0 12 12.149zm4.513 3.514a.995.995 0 0 1-.995.994.995.995 0 0 1-.995-.994.995.995 0 0 1 .995-.995.995.995 0 0 1 .995.995"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/buhl.svg�������������������������������������0000664�0000000�0000000�00000004253�14753064456�0024561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.34 10.876a1.7 1.7 0 0 0-.419-.781 1.6 1.6 0 0 0-.76-.397 5.2 5.2 0 0 0-1.142-.113c-.107 0-.223.005-.36.014a6 6 0 0 0-.406.04l-.4.054c-.13.018-.25.032-.352.04q-.107-.002-.134-.063V6.94a.12.12 0 0 0-.033-.103.12.12 0 0 0-.103-.035h-1.008a.1.1 0 0 0-.05.009.12.12 0 0 0-.08.13v.044c0 .027-.003.054-.003.09l.004.109v9.72a.12.12 0 0 0 .033.103.12.12 0 0 0 .1.037h1q.135 0 .135-.14v-6.08a.17.17 0 0 1 .12-.1 5.5 5.5 0 0 1 1.217-.112 3.2 3.2 0 0 1 .768.077.9.9 0 0 1 .46.266 1.1 1.1 0 0 1 .223.515 3 3 0 0 1 .058.677V16.9q.002.141.129.14h.995c.09 0 .13-.045.13-.14v-4.764a4.8 4.8 0 0 0-.12-1.26ZM1.389 15.324H.134Q0 15.323 0 15.45v1.267q0 .126.134.125h1.254q.134.001.134-.125V15.45a.118.118 0 0 0-.134-.125m22.478-8.523h-1q-.134-.001-.134.14v9.965a.12.12 0 0 0 .033.103.12.12 0 0 0 .101.037h1q.134.001.134-.14V6.941q0-.141-.134-.14m-9.169 3.045h-.995c-.089 0-.129.045-.129.134v5.915q-.002.107-.129.147a4 4 0 0 1-.504.08 6 6 0 0 1-.585.027 3.7 3.7 0 0 1-.812-.076.93.93 0 0 1-.754-.772 3.6 3.6 0 0 1-.071-.793v-4.53a.117.117 0 0 0-.13-.133h-.995c-.089 0-.129.044-.129.133v4.668a5 5 0 0 0 .13 1.236 1.58 1.58 0 0 0 .459.781 1.9 1.9 0 0 0 .892.415 7 7 0 0 0 1.428.12q.236-.001.531-.023c.295-.022.4-.035.611-.062q.317-.04.625-.094.309-.053.571-.107c.09-.018.13-.062.13-.134v-6.8a.13.13 0 0 0-.144-.133Zm-7.023.56a1.97 1.97 0 0 0-.923-.606 4.7 4.7 0 0 0-1.41-.185 5 5 0 0 0-.736.054 4 4 0 0 1-.473.054q-.107 0-.107-.095V6.937a.12.12 0 0 0-.032-.1.12.12 0 0 0-.098-.034h-1c-.089 0-.129.043-.129.179v9.837c0 .018.04.063.116.09a9 9 0 0 0 .987.208 8.4 8.4 0 0 0 1.222.08 4.6 4.6 0 0 0 1.6-.24 2.1 2.1 0 0 0 .99-.75 3.15 3.15 0 0 0 .505-1.28 10 10 0 0 0 .143-1.829 7 7 0 0 0-.152-1.604 2.55 2.55 0 0 0-.503-1.089m-.72 4.26a2.2 2.2 0 0 1-.263.912 1.1 1.1 0 0 1-.588.483 3.2 3.2 0 0 1-1.031.135q-.222-.001-.513-.022a1.8 1.8 0 0 1-.446-.077.135.135 0 0 1-.094-.149v-4.995a.185.185 0 0 1 .107-.194 4 4 0 0 1 .42-.08 4 4 0 0 1 .615-.04 3.2 3.2 0 0 1 .897.108 1.04 1.04 0 0 1 .571.406 2 2 0 0 1 .297.81 7.7 7.7 0 0 1 .085 1.283 13 13 0 0 1-.054 1.418zM1.388 9.755H.133Q0 9.755 0 9.881v1.267q0 .126.134.125h1.254q.134.001.134-.125V9.881a.118.118 0 0 0-.134-.125"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/buildkite.svg��������������������������������0000664�0000000�0000000�00000000650�14753064456�0025600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.613 8.143-7.668-3.856v7.712zM8.166 15.857V8.143L.387 4.287V12l7.78 3.857zM.183 3.958a.38.38 0 0 1 .377-.017l7.606 3.771 7.607-3.771a.39.39 0 0 1 .346 0l7.668 3.857a.39.39 0 0 1 .213.345v7.71a.39.39 0 0 1-.213.346l-7.668 3.86a.39.39 0 0 1-.562-.345v-7.09l-7.219 3.58a.4.4 0 0 1-.344 0L.215 12.346A.39.39 0 0 1 0 12V4.287a.39.39 0 0 1 .183-.329"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/builtbybit.svg�������������������������������0000664�0000000�0000000�00000001312�14753064456�0025771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.877.032 1.252 5.885a.253.253 0 0 0 .003.446l5.679 3.02c.077.041.17.04.246-.004l4.694-2.697a.25.25 0 0 1 .253 0l4.692 2.697a.25.25 0 0 0 .246.004l5.682-3.021a.253.253 0 0 0 .003-.446L12.122.031a.25.25 0 0 0-.245 0ZM6.924 10.898l-5.71-3.036a.254.254 0 0 0-.373.224V18.25c0 .093.05.178.131.222l9.976 5.495a.254.254 0 0 0 .376-.222v-6.053a.26.26 0 0 0-.127-.22l-4.012-2.305a.25.25 0 0 1-.127-.22v-3.825a.25.25 0 0 0-.135-.224Zm10.152 0 5.71-3.035a.254.254 0 0 1 .373.224v10.164c0 .093-.05.178-.131.222l-9.976 5.495a.254.254 0 0 1-.376-.222v-6.053c0-.091.049-.175.127-.22l4.012-2.305a.25.25 0 0 0 .127-.22v-3.825c0-.094.052-.18.135-.224Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bukalapak.svg��������������������������������0000664�0000000�0000000�00000001134�14753064456�0025555�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.976 23.845a3.158 3.158 0 1 1-1.95-6.008 3.158 3.158 0 0 1 1.95 6.008m6.554-2.883c4.047-1.315 7.315-5.981 5.689-10.984s-7.012-6.856-11.058-5.541a1.89 1.89 0 0 0-1.252 2.249l.414 1.682a1.89 1.89 0 0 0 2.42 1.348l.162-.053c1.861-.606 3.592.504 4.071 2.019.505 1.507-.244 3.422-2.106 4.027l-.162.054a1.89 1.89 0 0 0-1.166 2.512l.653 1.604a1.89 1.89 0 0 0 2.335 1.083m-6.962-7.982L7.841 1.752A2.3 2.3 0 0 0 4.897.113l-2.952.959A2.3 2.3 0 0 0 .526 4.128L4.92 14.815a2.3 2.3 0 0 0 2.841 1.318l1.285-.417a2.3 2.3 0 0 0 1.522-2.736"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bulma.svg������������������������������������0000664�0000000�0000000�00000000174�14753064456�0024725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.25 0-6 6-1.5 10.5 7.5 7.5 9-6-6-6 4.5-4.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bun.svg��������������������������������������0000664�0000000�0000000�00000003120�14753064456�0024403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 22.596c6.628 0 12-4.338 12-9.688 0-3.318-2.057-6.248-5.219-7.986-1.286-.715-2.297-1.357-3.139-1.89C14.058 2.025 13.08 1.404 12 1.404c-1.097 0-2.334.785-3.966 1.821a50 50 0 0 1-2.816 1.697C2.057 6.66 0 9.59 0 12.908c0 5.35 5.372 9.687 12 9.687zM10.599 4.715c.334-.759.503-1.58.498-2.409 0-.145.202-.187.23-.029.658 2.783-.902 4.162-2.057 4.624-.124.048-.199-.121-.103-.209a5.8 5.8 0 0 0 1.432-1.977m2.058-.102a5.8 5.8 0 0 0-.782-2.306v-.016c-.069-.123.086-.263.185-.172 1.962 2.111 1.307 4.067.556 5.051-.082.103-.23-.003-.189-.126a5.85 5.85 0 0 0 .23-2.431m1.776-.561a5.7 5.7 0 0 0-1.612-1.806v-.014c-.112-.085-.024-.274.114-.218 2.595 1.087 2.774 3.18 2.459 4.407a.12.12 0 0 1-.049.071.11.11 0 0 1-.153-.026.12.12 0 0 1-.022-.083 5.9 5.9 0 0 0-.737-2.331m-5.087.561c-.617.546-1.282.76-2.063 1-.117 0-.195-.078-.156-.181 1.752-.909 2.376-1.649 2.999-2.778 0 0 .155-.118.188.085 0 .304-.349 1.329-.968 1.874m4.945 11.237a2.96 2.96 0 0 1-.937 1.553c-.346.346-.8.565-1.286.62a2.18 2.18 0 0 1-1.327-.62 2.96 2.96 0 0 1-.925-1.553.24.24 0 0 1 .064-.198.23.23 0 0 1 .193-.069h3.965a.23.23 0 0 1 .19.07c.05.053.073.125.063.197m-5.458-2.176a1.86 1.86 0 0 1-2.384-.245 1.98 1.98 0 0 1-.233-2.447c.207-.319.503-.566.848-.713a1.84 1.84 0 0 1 1.092-.11c.366.075.703.261.967.531a1.98 1.98 0 0 1 .408 2.114 1.93 1.93 0 0 1-.698.869zm8.495.005a1.86 1.86 0 0 1-2.381-.253 1.96 1.96 0 0 1-.547-1.366c0-.384.11-.76.32-1.079.207-.319.503-.567.849-.713a1.84 1.84 0 0 1 1.093-.108c.367.076.704.262.968.534a1.98 1.98 0 0 1 .4 2.117 1.93 1.93 0 0 1-.702.868"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bungie.svg�����������������������������������0000664�0000000�0000000�00000011272�14753064456�0025077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.864 12.77-1.1-.818V.465l-10.36.5-10.36-.5v2.932L.431 2.756a.316.316 0 0 0-.275.566l1.888 1.166v7.538c.015 3.239 2.459 5.981 4.868 7.968a29.8 29.8 0 0 0 5.507 3.541l.4-.219c.2-.1 2.653-1.336 5.075-3.323 2.193-1.806 4.4-4.241 4.795-7.102l.86.423c.193.097.462-.05.45-.298-.006-.169-.135-.244-.135-.246zM2.408.848l9.996.481L22.4.847V11.68l-.492-.365.004-.361v-9.65l-9.504.462-9.503-.463V3.74l-.497-.197Zm15.922 2.94v-.446h1.638l-.953 2.256h-.529l.784-1.81zm-6.473 4.76c.242.096.371.341.371.341l.596 1.089 1.936 1.28c-.172.31-.233.557-.265.655l-.02.072.278 1.465c-.014.005-.027.006-.041.011-.404.134-.765.361-1.135.566-.255.143-.305.17-.433.215a1.23 1.23 0 0 1-.82.017l-.086-.023c-.234-.043-.584-.344-.866-.586-.392-.335-.517-.434-.81-.566q-.02-.01-.042-.02l.448-1.571q-.89-1.45-1.779-2.9a.143.143 0 0 1 .013-.189l1.21-2.253a.143.143 0 0 1 .197-.043c.836.34 1.658.713 2.481 1.082a.14.14 0 0 1 .074.187l-.544.868a.14.14 0 0 1-.183.08l-1.243-.498-.187.308c-.003.001.193.078.85.412m6.77 6.973c.056.16-.14.345-.181.49-.018.06-.009.14-.03.202-.089.25-.288.468-.417.697a.3.3 0 0 1-.1-.03c-.134-.073.304-.583.339-.644.084-.143-.728-.143-.775-.167-.17-.083-.296-.3-.361-.47-.067-.174-.122-.495.103-.575.098-.038.211.016.317-.022.083-.03.154-.127.207-.187-.238-.191-.46-.26-.68-.26-.379 0-.748.205-1.173.353-.289.055-.556.098-.676.123-.508.103-1.015.54-1.416.673a3.1 3.1 0 0 1-1.197.187c-.58-.045-.958-.05-1.827-.783-.452-.357-.568-.615-1.745-.862-.52-.104-.995-.226-.967-.516.008-.183.318-.356.237-.54-.042-.096-.084-.328-.013-.48-.149-.282-.286-.344-.689-.47a1.4 1.4 0 0 0-.45-.067c.016.08.02.166.005.246-.036.196-.131.696-.516.632-.016-.045.166-.254-.125-.596-.175-.202-.53-.778-.146-1.053.433-.303.99-.101 1.322.073.103.089.877.181 1.235.256.425.084.749.477.45.773-.193.16-.503.378-.353.448.103.023.501.116.577.137.23.062.491.142.717.232.009.003.236.097.358.176.437.28 1.03.965 1.52 1.056.084.019.28.09.547.09.393 0 .733-.181.83-.238l.192-.105c.368-.207.71-.415 1.066-.534a1.8 1.8 0 0 1 .518-.1c.25-.028.49-.042.566-.066.374-.118.757-.253 1.148-.253.526 0 .886.245 1.157.61.078.104.46.641.356.774-.116.15-.37.31-.402.512-.03.204.07.203.198.19s.235-.022.273.088m-4.546 2.89c.048.002.03.067.063.052s.06-.02.08.033c.025.07-.065.041-.042.071.03.04-.074.184-.139.215-.065.03-.062-.05-.11-.05-.05-.002-.034.03-.057-.011s-.006-.072.02-.095c.024-.023-.005-.065-.005-.065l-.12-.375-.998.811 1.004.891s.164.344.083.34c-.201-.007-.337-.036-.337-.036l-1.11-.902-1.11.902s-.136.029-.336.036c-.083.003.082-.34.082-.34l1.004-.89-.999-.812-.119.375s-.029.042-.004.065c.026.024.042.055.02.095s-.008.009-.057.01c-.048 0-.046.08-.11.051-.066-.03-.17-.175-.14-.215.024-.03-.066 0-.042-.071.02-.054.046-.049.08-.033.033.015.014-.049.063-.051.07-.002.099-.523.099-.523l-.617-.545-.091-.107s-.097.019-.162-.043c-.067-.062-.087-.236-.02-.315.061-.074.194-.088.308.023.065.062.053.132.053.132l.111.094.652.495s.518-.175.513-.223.061-.038.043-.068c-.02-.03-.029-.058.024-.083.067-.033.048.06.076.033.036-.035.195.047.234.108.037.06-.043.067-.039.116.005.047.036.029-.002.056-.038.028-.072.014-.098-.008-.037-.03-.017-.044-.017-.044l-.406.272 1.006.894 1.007-.894-.406-.272s.02.015-.017.044c-.026.022-.06.035-.098.008s-.007-.01-.002-.056c.004-.049-.076-.056-.039-.116.04-.06.198-.143.234-.108.027.027.01-.067.076-.033.053.025.045.053.024.083-.018.03.047.02.043.068s.513.223.513.223l.652-.495.111-.094s-.013-.07.052-.132c.114-.11.247-.097.309-.023.066.08.046.253-.02.315-.067.062-.163.043-.163.043l-.09.107-.617.545s.034.523.1.523M12.089 6.46l-1.276-.545.772-1.3a.144.144 0 0 1 .194-.05l.947.56a.14.14 0 0 1 .051.193zm.937-.984a.143.143 0 0 1 .195-.047l.865.513a.14.14 0 0 1 .047.193l-.688 1.105a.4.4 0 0 0-.164-.225.4.4 0 0 0-.098-.06l-.838-.375Zm1.276.872a.143.143 0 0 1 .196-.046l.778.459a.14.14 0 0 1 .046.193c-.898 1.43-1.044 1.667-1.298 2.074q-.01.016-.017.033a.14.14 0 0 1-.19.04l-.778-.46c-.107-.064-.053-.193-.045-.193.005 0 .465-.74 1.308-2.1m1.148.889a.146.146 0 0 1 .197-.047l.616.368a.14.14 0 0 1 .047.194L15.1 9.678a.144.144 0 0 1-.195.047l-.618-.369a.14.14 0 0 1-.046-.193zM.287 3.102c-.054-.032-.033-.126.05-.107l6.887 2.738-.13-2.405 3.49 2.47s-.04-.016-.1-.016c-.115 0-.205.06-.229.117l-.708 1.318-.888-.62-.375 1.446Zm17.376 16.611a29.4 29.4 0 0 1-5.012 3.282l-.24.13-.247-.126c-.211-.104-2.64-1.332-5.02-3.286-2.386-1.96-4.734-4.645-4.736-7.687V4.714l.497.308v7.007c0 5.8 8.927 10.346 9.307 10.537l.205.104.19-.104c.369-.186 8.82-4.496 9.278-10.07q.23.112.457.225c-.323 2.754-2.476 5.184-4.68 6.992m6.024-6.624h-.002c-.008 0-.022-.004-.022-.004l-5.538-2.728-.38 2.556-4.652-3.11-.637-1.174 2.039 1.152.276.165c.07.043.182.06.217.06.212 0 .329-.192.33-.192l.147-.236.142-.21 1.074.887.341-2.252 6.693 4.977c.05.033.028.108-.029.11z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bunq.svg�������������������������������������0000664�0000000�0000000�00000001566�14753064456�0024600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.414 14.62h1.103v-2.896a2.484 2.484 0 0 0-2.483-2.483 2.484 2.484 0 0 0-2.482 2.483v2.897h1.103v-2.897c0-.837.618-1.517 1.38-1.517.76 0 1.379.68 1.379 1.517zm-6.07-5.24h1.104v2.896a2.484 2.484 0 0 1-2.482 2.483 2.484 2.484 0 0 1-2.483-2.483V9.379h1.103v2.897c0 .837.618 1.517 1.38 1.517.76 0 1.379-.68 1.379-1.517zM0 7.034V12q0 .07.004.139H0v2.482h.965l.055-.48A2.76 2.76 0 0 0 5.518 12a2.76 2.76 0 0 0-4.414-2.208V7.035zm2.69 3.172c.951 0 1.724.803 1.724 1.793s-.773 1.793-1.725 1.793c-.951 0-1.724-.803-1.724-1.793s.773-1.793 1.724-1.793zm18.552-.965A2.76 2.76 0 0 0 18.482 12a2.76 2.76 0 0 0 4.414 2.207v2.758H24V12a2 2 0 0 0-.004-.139H24V9.38h-.965l-.055.48a2.74 2.74 0 0 0-1.738-.617zm.069.965c.951 0 1.724.803 1.724 1.793s-.773 1.793-1.724 1.793c-.952 0-1.725-.803-1.725-1.793s.773-1.793 1.725-1.793"/></svg>������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/burgerking.svg�������������������������������0000664�0000000�0000000�00000010270�14753064456�0025762�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.39 12.614c-.72 0-1.11.538-1.11 1.215v1.508c0 .125-.043.182-.12.182-.056 0-.098-.035-.147-.133l-.971-1.885c-.37-.72-.755-.887-1.196-.887-.734 0-1.14.552-1.14 1.243v4.314c0 .678.392 1.215 1.112 1.215s1.112-.537 1.112-1.215v-1.507c0-.126.042-.182.119-.182.055 0 .097.035.146.133l.972 1.885c.37.719.769.886 1.195.886.735 0 1.14-.551 1.14-1.242v-4.315c0-.677-.391-1.215-1.111-1.215zm-4.02-.405c.364 0 .68-.286.68-.642 0-.238-.099-.412-.224-.572-.203-.266-.385-.496-.476-.74-.02-.056-.007-.105.056-.154.217-.167.469-.537.469-1.124 0-.886-.734-1.389-1.622-1.389h-.79c-.553 0-.819.321-.819.754v3.114c0 .419.245.754.692.754.448 0 .693-.335.693-.754v-.74c0-.09.042-.133.111-.133.084 0 .112.049.126.133.063.356.23.837.42 1.082.237.314.46.411.685.411zm-1.146-2.666h-.098c-.119 0-.175-.07-.175-.161v-.474c0-.09.056-.16.175-.16h.098c.294 0 .385.208.385.39 0 .174-.091.405-.385.405m-3.761 2.666c1.132 0 1.734-.677 1.734-1.528V8.328c0-.419-.245-.754-.692-.754-.448 0-.693.335-.693.754v2.276c0 .167-.097.363-.35.363-.251 0-.335-.196-.335-.363V8.328c0-.419-.252-.754-.7-.754s-.691.335-.691.754v2.353c0 .852.594 1.528 1.727 1.528m12.011-.034c.392 0 .7-.23.7-.65 0-.412-.308-.642-.7-.642h-.63c-.118 0-.174-.07-.174-.16v-.133c0-.091.056-.161.175-.161h.482c.336 0 .602-.202.602-.559 0-.355-.266-.558-.602-.558h-.482c-.12 0-.175-.07-.175-.16V9.04c0-.091.056-.161.175-.161h.629c.392 0 .7-.23.7-.65 0-.411-.308-.642-.7-.642h-1.321c-.553 0-.818.321-.818.754v3.079c0 .432.265.754.818.754h1.321zm2.642 3.127h-.342c-.615 0-1.09.286-1.09.914 0 .573.517.845.901.845.189 0 .322.056.322.202 0 .182-.224.3-.462.3-.79 0-1.328-.537-1.328-1.535 0-1.11.734-1.515 1.3-1.515.692 0 .804.349 1.287.349a.927.927 0 0 0 .936-.915.95.95 0 0 0-.398-.788c-.427-.315-1.07-.545-1.979-.545-1.629 0-3.216 1.026-3.216 3.414 0 2.282 1.587 3.35 3.153 3.35 1.643 0 2.685-1.012 2.685-2.492 0-.935-.587-1.584-1.769-1.584m-12.43-2.688c-.783 0-1.21.587-1.21 1.32v4.132c0 .734.427 1.32 1.21 1.32s1.21-.586 1.21-1.32v-4.132c0-.733-.427-1.32-1.21-1.32m11.494-.405c.447 0 .692-.335.692-.754v-.74c0-.09.042-.132.112-.132.084 0 .111.049.125.133.063.355.231.837.42 1.082.238.314.461.412.685.412.363 0 .678-.286.678-.643 0-.237-.098-.412-.224-.572-.237-.3-.384-.496-.475-.74-.02-.056-.007-.105.056-.153.217-.168.469-.538.469-1.124 0-.887-.735-1.39-1.623-1.39h-.79c-.552 0-.817.321-.817.754v3.114c0 .419.244.753.692.753m.615-3.301c0-.09.056-.161.175-.161h.098c.293 0 .384.21.384.391 0 .175-.09.405-.384.405h-.098c-.12 0-.175-.07-.175-.16zm-18.87 3.267h.986c.93 0 1.496-.622 1.496-1.397 0-.621-.37-.907-.454-.977-.035-.028-.07-.056-.07-.084 0-.035.021-.048.056-.09.133-.154.266-.398.266-.754 0-.838-.567-1.285-1.448-1.285h-.832c-.552 0-.817.321-.817.754v3.079c0 .433.265.754.817.754m.413-3.386c0-.09.056-.16.175-.16h.09c.301 0 .392.209.392.39 0 .168-.09.405-.391.405h-.091c-.12 0-.175-.07-.175-.16zm0 1.634c0-.091.056-.161.175-.161h.126c.335 0 .433.223.433.426 0 .181-.098.44-.433.44h-.126c-.12 0-.175-.07-.175-.161zm11.878 1.794c1.098 0 1.79-.699 1.79-1.718 0-.649-.391-1.096-1.174-1.096h-.224c-.413 0-.734.196-.734.636 0 .39.342.58.601.58.133 0 .217.041.217.139 0 .125-.147.21-.315.21-.524 0-.88-.37-.88-1.062 0-.768.489-1.047.866-1.047.462 0 .539.238.86.238.37 0 .623-.308.623-.629a.67.67 0 0 0-.266-.544c-.294-.217-.706-.377-1.321-.377-1.084 0-2.14.712-2.14 2.36 0 1.576 1.056 2.31 2.097 2.31m-8.718 3.762a.35.35 0 0 1-.07-.188c0-.077.042-.133.126-.21.196-.181.678-.635.944-1.047.202-.314.286-.6.286-.837 0-.607-.552-1.082-1.153-1.082-.385 0-.748.216-.993.614-.329.53-.72 1.145-.972 1.39-.063.062-.098.076-.146.076-.084 0-.12-.056-.12-.146v-.699c0-.684-.405-1.235-1.139-1.235-.74 0-1.14.551-1.14 1.235v4.3c0 .685.399 1.237 1.14 1.237.734 0 1.14-.552 1.14-1.236v-.991c0-.084.035-.147.119-.147.111 0 .14.112.167.168.161.384.63 1.2 1.063 1.682.294.32.657.524 1.042.524.65 0 1.196-.566 1.196-1.173 0-.377-.161-.657-.469-.991-.392-.427-.853-.986-1.021-1.244m15.751 6.702C19.432 23.707 16.313 24 12 24s-7.432-.293-9.25-1.32c-1.09-.614-1.642-1.451-1.642-2.052 0-.342.181-.537.587-.537h20.61c.406 0 .587.195.587.537 0 .6-.552 1.438-1.643 2.053m1.056-15.917H1.695c-.406 0-.587-.209-.587-.586C1.108 3.944 4.47 0 12 0c7.46 0 10.892 3.944 10.892 6.178 0 .377-.181.586-.587.586"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/burpsuite.svg��������������������������������0000664�0000000�0000000�00000000333�14753064456�0025644�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0Zm11.063 3.357h1.874v2.756L10.41 9.2h2.527v3.748h4.579l-4.578 5.592v2.104h-1.876v-2.758L13.59 14.8h-2.527v-3.75h-4.58l4.58-5.592Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/burton.svg�����������������������������������0000664�0000000�0000000�00000003115�14753064456�0025134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.985 1.543a.25.25 0 0 0-.21.116l-.974 1.51a.62.62 0 0 1-.353.261l-.575.164a.75.75 0 0 0-.452.362L6.955 8.474a.74.74 0 0 1-.48.369c-.154.036-.388.087-.621.132a.55.55 0 0 0-.402.323L4.297 11.98a1 1 0 0 1-.51.516l-.424.191a1 1 0 0 0-.542.601s-.648 1.666-1.147 3.167C1.22 17.812.04 21.9.04 21.9a.43.43 0 0 0 .09.492.32.32 0 0 0 .467-.107s1.576-3.373 2.151-4.473a.31.31 0 0 1 .462-.093c.253.165.378.607.663.864a.258.258 0 0 0 .421-.103c.206-.504.69-2.074.851-2.724.136-.54.596-.59.858-.193l.19.234a2.25 2.25 0 0 0 .713.592l.35.185a.5.5 0 0 1 .228.245l.383.897a.75.75 0 0 0 .66.455l.12.005a.75.75 0 0 1 .633.398c.176.331.461.932.704 1.326a.26.26 0 0 0 .473-.06 15.4 15.4 0 0 0 .6-2.06c.14-.717.579-.625.73-.431.055.07.245.357.296.416a.252.252 0 0 0 .459-.097 12.3 12.3 0 0 0 .403-1.905c.039-.29.358-.328.51-.079.164.266.43.741.574 1.023a2.6 2.6 0 0 1 .236.617l.211.951a2.18 2.18 0 0 0 .666 1.128 3.4 3.4 0 0 0 .477.422.268.268 0 0 0 .41-.106c.11-.255.25-.687.334-.935a.25.25 0 0 1 .193-.168c.107-.02.18-.03.333-.07a.84.84 0 0 0 .564-.493l.207-.5a.257.257 0 0 1 .466-.011c.075.135.209.417.272.572a2 2 0 0 1 .089.246l.164.636a2.3 2.3 0 0 0 .29.66l.075.116a2.13 2.13 0 0 0 .785.722.25.25 0 0 0 .35-.122c.234-.546.325-1.36.432-1.884a.285.285 0 0 1 .517-.092 456 456 0 0 1 2.326 3.92.312.312 0 0 0 .541-.309c-.043-.099-1.506-3.787-2.912-7.053-1.285-2.985-2.525-5.575-2.525-5.575a.46.46 0 0 0-.557-.247c-.376.112-.786.357-1.07.456a.54.54 0 0 1-.647-.253c-.347-.636-1.112-2.298-1.815-3.614-.761-1.424-1.726-3.32-2.243-4.069a.25.25 0 0 0-.214-.11"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/buymeacoffee.svg�����������������������������0000664�0000000�0000000�00000004523�14753064456�0026261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.216 6.415-.132-.666c-.119-.598-.388-1.163-1.001-1.379-.197-.069-.42-.098-.57-.241-.152-.143-.196-.366-.231-.572-.065-.378-.125-.756-.192-1.133-.057-.325-.102-.69-.25-.987-.195-.4-.597-.634-.996-.788a6 6 0 0 0-.626-.194c-1-.263-2.05-.36-3.077-.416a26 26 0 0 0-3.7.062c-.915.083-1.88.184-2.75.5-.318.116-.646.256-.888.501-.297.302-.393.77-.177 1.146.154.267.415.456.692.58.36.162.737.284 1.123.366 1.075.238 2.189.331 3.287.37q1.829.074 3.65-.118.449-.05.896-.119c.352-.054.578-.513.474-.834-.124-.383-.457-.531-.834-.473-.466.074-.96.108-1.382.146q-1.767.12-3.536.006a22 22 0 0 1-1.157-.107c-.086-.01-.18-.025-.258-.036q-.364-.055-.724-.13c-.111-.027-.111-.185 0-.212h.005q.416-.09.838-.147h.002c.131-.009.263-.032.394-.048a25 25 0 0 1 3.426-.12q1.011.029 2.017.144l.228.031q.4.06.798.145c.392.085.895.113 1.07.542.055.137.08.288.111.431l.319 1.484a.237.237 0 0 1-.199.284h-.003q-.056.008-.112.015a37 37 0 0 1-4.743.295 37 37 0 0 1-4.699-.304c-.14-.017-.293-.042-.417-.06-.326-.048-.649-.108-.973-.161-.393-.065-.768-.032-1.123.161-.29.16-.527.404-.675.701-.154.316-.199.66-.267 1-.069.34-.176.707-.135 1.056.087.753.613 1.365 1.37 1.502a39.7 39.7 0 0 0 11.343.376.483.483 0 0 1 .535.53l-.071.697-1.018 9.907c-.041.41-.047.832-.125 1.237-.122.637-.553 1.028-1.182 1.171q-.868.197-1.756.205c-.656.004-1.31-.025-1.966-.022-.699.004-1.556-.06-2.095-.58-.475-.458-.54-1.174-.605-1.793l-.731-7.013-.322-3.094c-.037-.351-.286-.695-.678-.678-.336.015-.718.3-.678.679l.228 2.185.949 9.112c.147 1.344 1.174 2.068 2.446 2.272.742.12 1.503.144 2.257.156.966.016 1.942.053 2.892-.122 1.408-.258 2.465-1.198 2.616-2.657q.511-4.997 1.024-9.995l.215-2.087a.48.48 0 0 1 .39-.426c.402-.078.787-.212 1.074-.518.455-.488.546-1.124.385-1.766zm-1.478.772c-.145.137-.363.201-.578.233-2.416.359-4.866.54-7.308.46-1.748-.06-3.477-.254-5.207-.498-.17-.024-.353-.055-.47-.18-.22-.236-.111-.71-.054-.995.052-.26.152-.609.463-.646.484-.057 1.046.148 1.526.22q.865.132 1.737.212c2.48.226 5.002.19 7.472-.14q.675-.09 1.345-.21c.399-.072.84-.206 1.08.206.166.281.188.657.162.974a.54.54 0 0 1-.169.364zm-6.159 3.9c-.862.37-1.84.788-3.109.788a5.9 5.9 0 0 1-1.569-.217l.877 9.004c.065.78.717 1.38 1.5 1.38 0 0 1.243.065 1.658.065.447 0 1.786-.065 1.786-.065.783 0 1.434-.6 1.499-1.38l.94-9.95a4 4 0 0 0-1.322-.238c-.826 0-1.491.284-2.26.613"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/buysellads.svg�������������������������������0000664�0000000�0000000�00000001460�14753064456�0025773�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 16.4h-2.685l-.716-2.704-3.3 2.704h-2.675l2.796-8.821h3.784zm-5.955-2.785h2.544l-1.272-4.744zM5.581 11.849c.939.151 1.676 1.049 1.676 2.149 0 1.282-.677 2.392-2.403 2.392H0V7.579h4.32c1.736 0 2.573 1.141 2.573 2.251 0 1.09-.474 1.837-1.312 2.019m-3.502 2.634 1.988-.01c.535 0 .868-.313.868-.788 0-.434-.313-.787-.868-.787H2.079zm0-4.986v1.463h1.726c.464 0 .777-.302.777-.736 0-.424-.313-.727-.777-.727zm7.953.454c0 1.302 4.582.202 4.592 3.714 0 1.756-1.171 2.967-3.512 2.967-1.413 0-2.604-.333-3.492-.938l.888-1.938c.676.525 1.524.898 2.675.898.777 0 1.15-.302 1.15-.716 0-1.443-4.622-.051-4.612-3.795.01-1.463 1.312-2.775 3.552-2.775 1.272 0 2.523.242 3.502.867l-.837 1.928c-.919-.615-1.867-.908-2.735-.888-.656.02-1.171.212-1.171.676"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/buzzfeed.svg���������������������������������0000664�0000000�0000000�00000000422�14753064456�0025437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12m-4.148-.273-.977-6.94-6.5 2.624 2.575 1.487-2.435 4.215L8.3 10.68l-4.153 7.19 2.327 1.346 2.812-4.868L13.5 16.78l3.777-6.54z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bvg.svg��������������������������������������0000664�0000000�0000000�00000002610�14753064456�0024400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.25 1.11c3.647 0 6.478 2.886 6.73 6.447.151 2.21-.535 4.019-2.158 5.674l-3.601 3.655-.154.157-.078.079-.214.217-.214.217-4.951 5.019c-.074.074-.323.302-.576.315h-.023c-.272 0-.534-.24-.6-.315l-4.89-4.958-.129-.13-.257-.261-.214-.218L2.2 13.23C.554 11.576-.13 9.768.02 7.557.27 3.997 3.103 1.11 6.75 1.11c2.353 0 3.704 1.416 5.25 3.027 1.536-1.61 2.897-3.027 5.25-3.027m-4.02 6.48c-.26 0-.446.174-.511.48l-.6 3.092c-.043.294-.097.642-.12.87a6 6 0 0 0-.12-.87l-.663-3.093c-.065-.36-.283-.48-.534-.48-.392 0-.577.35-.479.763l1.013 4.193c.098.414.305.642.784.642.414 0 .664-.228.762-.686l.948-4.214c.087-.425-.153-.697-.48-.697m2.995-.033c-1.274 0-2.101.85-2.101 2.832 0 1.884.37 2.787 2.003 2.787 1.013 0 1.48-.348 1.48-1.143v-1.634c0-.337-.107-.479-.412-.479h-.904c-.294 0-.436.142-.436.414 0 .25.163.392.436.392h.305v1.568a1 1 0 0 1-.35.044c-.73 0-1.077-.349-1.077-1.873 0-1.634.414-2.004 1.035-2.004.468 0 .697.163.925.163a.439.439 0 0 0 .294-.762c-.305-.24-.925-.305-1.198-.305m-8.091.065H7.056a.42.42 0 0 0-.436.414v4.716c0 .283.185.37.436.37h.99c1.406 0 1.721-.784 1.732-1.655 0-.556-.272-1.177-1.056-1.22.719-.153.904-.664.904-1.242 0-.718-.196-1.383-1.492-1.383m-.185 3.018c.686 0 .74.37.74.86v.02c-.002.45-.074.852-.664.852h-.37v-1.733h.294zm.022-2.265c.577 0 .664.207.664.762v.071l-.001.03c-.01.325-.087.682-.718.682h-.25V8.374z"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/byjus.svg������������������������������������0000664�0000000�0000000�00000001413�14753064456�0024756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.327.016A2.325 2.325 0 0 0 0 2.34v19.32a2.325 2.325 0 0 0 2.327 2.323h19.346A2.325 2.325 0 0 0 24 21.66V2.34A2.325 2.325 0 0 0 21.673.016zm10.054 3.496h.07a4.32 4.32 0 0 1 3.267 1.462 4.45 4.45 0 0 1 .961 2.365 4.16 4.16 0 0 1-.456 2.27 5.02 5.02 0 0 1 2.424 2.008 5.24 5.24 0 0 1 .73 3.374 4.7 4.7 0 0 1-1.15 2.466 4.84 4.84 0 0 1-2.26 1.535l-4.987 1.439a1.5 1.5 0 0 1-.41.058 1.5 1.5 0 0 1-1.432-1.075L5.524 6.909a1.487 1.487 0 0 1 1.018-1.841l4.956-1.429a3.4 3.4 0 0 1 .883-.127m.248.861a3 3 0 0 0-.855.122L6.94 5.888a.744.744 0 0 0-.51.922l3.53 12.206a.745.745 0 0 0 .921.509l4.664-1.345a4.085 4.085 0 0 0-.896-8.003 3.3 3.3 0 0 0 1.138-2.272 3.48 3.48 0 0 0-.928-2.549 2.99 2.99 0 0 0-2.23-.983"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/bytedance.svg��������������������������������0000664�0000000�0000000�00000000356�14753064456�0025565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.877 1.469 24 2.532v18.942l-4.123 1.056zM6.53 10.897l4.115 1.064v8.978L6.53 22.003zM0 2.572l4.115 1.064v16.736L0 21.428zm17.455 5.62V19.3l-4.122-1.065V9.257z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/c.svg����������������������������������������0000664�0000000�0000000�00000000635�14753064456�0024051�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.592 9.196s-.354-3.298-3.627-3.39c-3.274-.09-4.955 2.474-4.955 6.14s1.858 6.597 5.045 6.597c3.184 0 3.538-3.665 3.538-3.665l6.104.365s.36 3.31-2.196 5.836c-2.552 2.524-5.69 2.937-7.876 2.92-2.19-.016-5.226.035-8.16-2.97-2.938-3.01-3.436-5.93-3.436-8.8s.556-6.67 4.047-9.55C7.444.72 9.849 0 12.254 0c10.042 0 10.717 9.26 10.717 9.26z"/></svg>���������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cachet.svg�����������������������������������0000664�0000000�0000000�00000000761�14753064456�0025056�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.746.254C5.265.254 0 5.519 0 12s5.265 11.746 11.746 11.746S23.492 18.481 23.492 12c0-1.44-.26-2.82-.734-4.097l-.264-.709-1.118 1.118.1.288c.373 1.064.575 2.207.575 3.4a10.297 10.297 0 0 1-10.305 10.305A10.297 10.297 0 0 1 1.441 12 10.297 10.297 0 0 1 11.746 1.695c1.817 0 3.52.47 5.002 1.293l.32.178 1.054-1.053-.553-.316A11.7 11.7 0 0 0 11.746.254M22.97.841 9.05 14.761 5.328 11.04l-1.031 1.03 4.752 4.753L24 1.872z"/></svg>���������������mkdocs-material-9.6.4/material/templates/.icons/simple/caddy.svg������������������������������������0000664�0000000�0000000�00000004252�14753064456�0024712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.094.47c-.842 0-1.696.092-2.552.288a11.4 11.4 0 0 0-4.87 2.423 10.6 10.6 0 0 0-2.36 2.826A10.1 10.1 0 0 0 .305 8.582c-.398 1.62-.4 3.336-.043 5.048.085.405.183.809.31 1.212a11.9 11.9 0 0 0 1.662 3.729 3 3 0 0 0-.086.427 3.323 3.323 0 0 0 2.848 3.71 3.28 3.28 0 0 0 1.947-.346c1.045.51 2.17.864 3.339 1.04a11.7 11.7 0 0 0 4.285-.155 11.57 11.57 0 0 0 4.936-2.485 10.6 10.6 0 0 0 2.352-2.894 11.2 11.2 0 0 0 1.356-4.424 11.2 11.2 0 0 0-.498-4.335q.263-.116.486-.293h.001c.402-.322.693-.794.777-1.342a2.146 2.146 0 0 0-1.79-2.434 2.1 2.1 0 0 0-1.205.171q-.059-.064-.113-.13a11.7 11.7 0 0 0-3.476-2.93 13 13 0 0 0-1.76-.81 13.6 13.6 0 0 0-2.06-.613 12 12 0 0 0-2.48-.258Zm.714.328a10 10 0 0 1 1.028.042 9.9 9.9 0 0 1 2.743.639c.984.39 1.89.958 2.707 1.632a10.8 10.8 0 0 1 2.091 2.328q.038.06.07.12a2.12 2.12 0 0 0-.435 2.646c-.158.114-.97.692-1.634 1.183-.414.308-.733.557-.733.557l.581.68s.296-.276.665-.638c.572-.562 1.229-1.233 1.395-1.403a2.12 2.12 0 0 0 1.907.677 11.2 11.2 0 0 1-.013 4.046 11.4 11.4 0 0 1-1.475 3.897 12.3 12.3 0 0 1-2.079 2.587c-1.19 1.125-2.633 2.022-4.306 2.531a10.8 10.8 0 0 1-3.973.484 11 11 0 0 1-3.057-.652 3.3 3.3 0 0 0 1.417-2.294 3.28 3.28 0 0 0-.294-1.842c.18-.162.403-.363.656-.6 1.015-.955 2.353-2.303 2.353-2.303l-.47-.599s-1.63.972-2.801 1.728c-.307.198-.573.378-.777.517a3.3 3.3 0 0 0-1.516-.611 3.33 3.33 0 0 0-3.487 2.017 10 10 0 0 1-.695-1.078A11 11 0 0 1 .728 14.8a10 10 0 0 1-.2-1.212c-.164-1.653.103-3.258.629-4.754a13 13 0 0 1 1.087-2.288c.57-.968 1.248-1.872 2.069-2.656A11 11 0 0 1 11.808.797Zm-.147 3.257a3.84 3.84 0 0 0-3.82 3.82v2.36h-.94c-.751 0-1.377.625-1.377 1.377v3.8h1.46v-3.718h9.354v6.264H10.02v1.46h6.4c.751 0 1.377-.625 1.377-1.377v-6.43a1.39 1.39 0 0 0-1.377-1.377h-.94v-2.36a3.84 3.84 0 0 0-3.82-3.819zm0 1.46a2.37 2.37 0 0 1 2.36 2.36v2.36H9.3v-2.36a2.37 2.37 0 0 1 2.36-2.36zm10.141.392a1.253 1.253 0 0 1 1.296 1.434 1.24 1.24 0 0 1-.453.78c-.266.213-.61.318-.968.264a1.253 1.253 0 0 1-1.045-1.42 1.255 1.255 0 0 1 1.17-1.058M5.384 17.425a2.02 2.02 0 0 1 1.917 1.298c.116.3.159.628.114.967a2.015 2.015 0 0 1-2.249 1.728 2.016 2.016 0 0 1-1.727-2.25 2.02 2.02 0 0 1 1.945-1.743"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cadillac.svg���������������������������������0000664�0000000�0000000�00000002553�14753064456�0025364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.787 9.414h2.104l-.398-.719h7.139v.717h.238v-.965H2.135zm.202.948h8.879v-.719H2.874zm2.255 1.204h-2.06l-.16-.981h8.846v.981h-.239v-.751H5.169zm3.299.692h3.326v.515H8.543zm3.589-3.811h3.357v1.444h-3.357zm-8.469 5.569c.054.086.155.186.49.281.146.037.305.074.515.122l.08.019H8.31v-.51H3.616q.02.046.046.088zm4.647-.779H3.459l-.238-1.44H8.31zm.232 2.021c1.243.253 2.457.488 3.329.63V13.47H8.542zm12.276-3.692h-5.1v-1.445h5.333zm-5.1-2.66v.513l5.485-.002.344-.511zM0 7.306l1.616 2.369c.177 1.006.64 3.599.693 3.85l.006.032c.148.706.239 1.139 1.59 1.473 1.825.45 5.997 1.323 8.094 1.664 2.097-.341 6.271-1.215 8.097-1.664 1.35-.334 1.44-.767 1.589-1.473l.006-.032c.053-.253.516-2.844.693-3.85L24 7.306zm21.454 2.335-.277 1.717c-.16.994-.267 1.657-.32 1.951l-.007.035-.012.07c-.127.692-.183 1.002-.91 1.205-1.516.373-5.908 1.31-7.927 1.626-2.018-.316-6.41-1.254-7.925-1.626-.727-.203-.783-.513-.91-1.206l-.019-.104c-.053-.288-.156-.93-.31-1.89v-.001L2.55 9.64 1.276 7.75h21.45zm-9.084 3.132h-.238v-.976h8.65l-.16.978h-2.004c.031-.171.09-.659.099-.73H12.37zm-.238.942h8.322l.134-.716h-8.456zm0-3.129h3.358v.516h-3.358zm0 3.342v1.959c2.115-.36 6.223-1.205 7.718-1.592.338-.087.438-.193.492-.279a.5.5 0 0 0 .045-.088zm2.296 1.282-.415.082c-.21.042-.665.125-1.065.199l-.577.106v-1.422h5.88c-.27.33-.812.437-3.823 1.035"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cafepress.svg��������������������������������0000664�0000000�0000000�00000005530�14753064456�0025601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.899 15.549v-2.063h1.746v.762h.018c.293-.579.68-.882 1.341-.882.175 0 .349.027.532.074v1.344c.379-.838 1.2-1.417 2.285-1.417 1.892 0 2.708 1.047 2.708 2.912h-3.488c.047.551.349.926.927.926.294 0 .615-.109.762-.34h1.614a2 2 0 0 1-.012-.174h1.735a.6.6 0 0 0 .219.422q.155.137.488.137c.239 0 .614-.093.614-.367 0-.275-.156-.359-1-.505-1.387-.229-1.947-.68-1.947-1.497 0-1.202 1.295-1.515 2.25-1.515 1.029 0 2.269.285 2.314 1.507h-1.652a.47.47 0 0 0-.211-.359.62.62 0 0 0-.404-.137c-.258 0-.551.064-.551.367 0 .137.109.202.211.248.293.12.992.174 1.598.367.614.192 1.14.551 1.14 1.332h1.529a.6.6 0 0 0 .22.422q.154.137.488.137c.238 0 .615-.093.615-.367 0-.275-.157-.359-1.001-.505-1.387-.229-1.947-.68-1.947-1.497 0-1.202 1.294-1.515 2.25-1.515 1.028 0 2.27.285 2.314 1.507h-1.653a.46.46 0 0 0-.211-.359.62.62 0 0 0-.403-.137c-.258 0-.551.064-.551.367 0 .137.11.202.211.248.293.12.992.174 1.597.367.615.192 1.14.551 1.14 1.332 0 1.321-1.266 1.68-2.424 1.68-.93 0-1.935-.309-2.266-1.116-.312.863-1.361 1.116-2.334 1.116-1.015 0-2.122-.369-2.34-1.355-.409.925-1.372 1.356-2.393 1.356-1.524 0-2.672-.899-2.672-2.488q.001-.46.139-.869a1.8 1.8 0 0 0-.624-.088c-.726 0-1.102.413-1.102 1.441v1.883H5.899v-1.973c-.094 1.029-.593 2.093-2.013 2.093-.551 0-1.02-.238-1.304-.643h-.02v2.066H.746v-6.308h1.755v.523h.018c.22-.293.515-.643 1.395-.643 1.224 0 1.874 1.086 1.985 2.183m-2.601 1.5c.653 0 .799-.614.799-1.175 0-.562-.147-1.185-.799-1.185-.651 0-.799.624-.799 1.185 0 .559.148 1.175.799 1.175m9.488-1.716v-.017a.787.787 0 0 0-.783-.783h-.018c-.55 0-.854.285-.936.8zm.295-7.276c.034.266.033.546.033.824v2.589c0 .474.011 1.008.292 1.409h-2.454a1.7 1.7 0 0 1-.085-.596h-.025c-.522.583-1.251.753-2.029.753-1.215 0-2.223-.582-2.223-1.908q0-.208.033-.387c-.366 1.476-1.637 2.296-3.209 2.296C1.518 13.037 0 11.726 0 9.733s1.518-3.316 3.413-3.316c1.664 0 3.048.801 3.208 2.551H4.337c-.025-.267-.11-.461-.267-.596a.9.9 0 0 0-.608-.206c-.923 0-1.057.801-1.057 1.567 0 .778.133 1.555 1.057 1.555.522 0 .887-.426.935-.923h2.297a3 3 0 0 1-.037.222c.392-1.447 2.399-1.39 3.492-1.609.328-.06.657-.158.657-.558 0-.426-.401-.583-.79-.583-.729 0-.9.377-.9.644H6.883c.06-1.787 1.76-2.066 3.243-2.066 2.106 0 2.728.612 2.911 1.396V6.575h.983c-.035-.619.025-1.3.498-1.773.522-.524 1.13-.596 2.101-.596.377 0 .704.037 1.082.049v1.652c-.194-.037-.389-.085-.583-.085-.582 0-.778.17-.74.753h1.264v1.267c.568-.86 1.544-1.425 2.775-1.425 2.502 0 3.583 1.386 3.583 3.852h-4.616c.061.728.461 1.226 1.226 1.226.39 0 .815-.147 1.008-.45h2.248c-.486 1.361-1.823 1.992-3.243 1.992-2.017 0-3.535-1.189-3.535-3.291 0-.616.149-1.193.423-1.689h-1.084v4.823H14.02V8.057zm-2.274 1.991c-.292.147-.619.219-.947.304-.536.133-.815.255-.815.68 0 .292.316.582.754.582.547 0 .972-.314 1.008-.983zm10.885-1.033v-.021a1.04 1.04 0 0 0-1.035-1.035h-.022c-.729 0-1.129.375-1.239 1.056z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cairographics.svg����������������������������0000664�0000000�0000000�00000012026�14753064456�0026442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.58 0v2.846h2.84V0zm.092.092h.824v.826h-.824zm.916 0h.824v.826h-.824zm.916 0h.824v.826h-.824zM12 .184a.32.321 0 0 0-.32.32.32.321 0 0 0 .32.322.32.321 0 0 0 .32-.322.32.321 0 0 0-.32-.32m-1.328.826h.824v.826h-.824zm.916 0h.824v.826h-.824zm.916 0h.824v.826h-.824zm.412.092a.32.321 0 0 0-.32.32.32.321 0 0 0 .32.322.32.321 0 0 0 .32-.322.32.321 0 0 0-.32-.32m-5.42.32c-.364.09-.183.451-.242.648-.15.502-.939.661-1.332 1.002-.385.333-.615.723-.912 1.09-.251.309-.563.611-.614.965-.057.401-.037.854.145 1.238.226.476.491 1.079.87 1.502.29.326.33.434.818.606.154.07.193.104.404.148l.04-.258.182-.215c-.243-.298-.61-.325-.824-.543-.355-.362-.472-.733-.683-1.148-.202-.398-.465-.702-.487-1.125-.009-.18-.088-.505.006-.668.063-.108.363-.246.465-.35.315-.32.174-.726.54-1.023.324-.265.872-.469 1.257-.71.267-.169.433-.23.49-.466.063-.26-.142-.453-.123-.693m6.844 0a2.34 2.346 0 0 1-.686 1.66A2.34 2.346 0 0 1 12 3.77a2.34 2.346 0 0 1-1.654-.688l-.145.145A2.544 2.55 0 0 0 12 3.973a2.54 2.54 0 0 0 1.799-.746 2.544 2.55 0 0 0 .744-1.805zm2.164 0c.019.24-.186.433-.123.693.057.236.221.297.488.465.385.242.935.446 1.26.711.365.297.222.703.537 1.023.102.104.402.242.465.35.094.163.015.487.006.668-.022.423-.285.727-.487 1.125-.21.415-.326.786-.681 1.148-.213.218-.581.245-.824.543l.181.215.041.258c.21-.044.248-.078.403-.148.487-.172.528-.28.818-.606.378-.424.644-1.026.871-1.502.182-.384.202-.837.145-1.238-.051-.354-.363-.656-.614-.965-.297-.367-.527-.757-.912-1.09-.393-.34-1.181-.5-1.332-1.002-.059-.197.122-.558-.242-.648m-5.832.506h.824v.826h-.824zm.916 0h.824v.826h-.824zm.916 0h.824v.826h-.824zm-1.42.092a.32.321 0 0 0-.32.322.32.321 0 0 0 .32.32.32.321 0 0 0 .32-.32.32.321 0 0 0-.32-.322m.916 0a.32.321 0 0 0-.32.322.32.321 0 0 0 .32.32.32.321 0 0 0 .32-.32.32.321 0 0 0-.32-.322m.916 0a.32.321 0 0 0-.32.322.32.321 0 0 0 .32.32.32.321 0 0 0 .32-.32.32.321 0 0 0-.32-.322m-.918 3.148c-1.563 0-2.83.483-2.83 1.078 0 .52 1.267.375 2.83.375s2.83.118 2.83-.375c0-.595-1.267-1.078-2.83-1.078m-1.41 1.58c-1.615 0-3.024.665-3.795 1.652a9.491 9.516 0 0 0-.117.936c.201-.002 4.27-.033 4.633.326l.689.682.69-.682c.362-.359 4.431-.328 4.632-.326a9 9 0 0 0-.117-.943c-.772-.984-2.18-1.645-3.79-1.645zM6.674 9.365a9.329 9.354 0 0 0-.018.33c-.004.113.53.24.53.342 0 .118-.533.26-.528.39.152 3.742 2.47 6.716 5.31 6.737l-.458-5.678.002-.007.45-1.086-.696-.69c-.288-.284-3.413-.318-4.592-.307zm10.648 0v.031c-1.18-.01-4.304.023-4.592.307l-.695.69.453 1.093-.459 5.676c2.842-.021 5.158-2.993 5.31-6.734.006-.13-.526-.273-.526-.39 0-.103.53-.23.527-.343a9.113 9.138 0 0 0-.018-.33m-12.207.774c-.781-.03-.658.733-.398 1.408.289.751.42 1.542.73 2.285.143.341.353.674.729.772.019-.43-.048-.544-.313-.864-.223-.27-.169-.64-.308-.943-.182-.398-.213-.799-.37-1.2-.069-.177-.425-.71-.33-.91.162-.336.469-.004.622.106.214.155.328.114.593.148.03.004.18.11.534.272l-.042-.375c-.483-.234-.525-.497-1.054-.635q-.226-.059-.393-.064m13.77 0a2 2 0 0 0-.393.064c-.528.138-.57.401-1.054.635l-.043.375c.352-.162.504-.268.535-.272.265-.034.379.007.593-.148.153-.11.458-.442.62-.105.095.198-.26.732-.329.91-.156.4-.188.8-.37 1.199-.14.304-.086.673-.31.943-.264.32-.329.433-.31.864.376-.098.586-.43.729-.772.31-.743.44-1.534.728-2.285.26-.675.386-1.438-.396-1.408m-6.887.326a7434.774 7454.469 0 0 1-.428 1.031l.428 5.291.428-5.29zm-4.42 3.824c-.34.455-.356.828-.512 1.191-.268.626-.009 1.472.5 1.922.308.275.811.49 1.178.67.51.25 1.023.576 1.594.684.126.024.447.066.34-.18-.05-.114-.411-.234-.516-.293-.423-.236-.833-.538-1.228-.826-.484-.35-1.06-.57-1.44-1.055-.155-.198-.181-.25-.144-.478.035-.218.07-.468.115-.686.051-.245.123-.483.254-.703zm8.844 0-.14.246c.13.22.202.458.253.703.046.218.08.468.115.686.037.228.011.28-.144.478-.38.485-.956.705-1.44 1.055-.395.288-.805.59-1.228.826-.105.059-.468.18-.518.293-.106.246.216.204.342.18.571-.108 1.083-.434 1.594-.684.367-.18.87-.395 1.178-.67.509-.45.768-1.296.5-1.922-.156-.363-.172-.736-.512-1.19m-4.541 4.15a.385.386 0 0 0-.266.368.385.386 0 1 0 .77 0 .385.386 0 0 0-.504-.368m-5.74 1.518c-1.178 0-1.963.848-1.963 2.022 0 1.105.8 2.021 1.963 2.021.256 0 .596-.024.89-.16l-.052-.635c-.22.144-.52.219-.762.219-.914 0-1.283-.757-1.283-1.445 0-.735.445-1.446 1.238-1.446.226 0 .498.053.77.166l.06-.59a2.7 2.7 0 0 0-.861-.152m2.988 0c-.49 0-.913.151-1.268.363l.037.606a1.8 1.8 0 0 1 1.118-.393c.71 0 .95.34.95 1.006-.279-.015-.474-.016-.753-.016-.732 0-1.791.305-1.791 1.274 0 .84.581 1.203 1.412 1.203.65 0 1.027-.355 1.193-.59h.016v.498h.664a6 6 0 0 1-.03-.756v-1.597c0-1.053-.446-1.598-1.548-1.598m5.877 0c-.408 0-.815.288-1.004.69h-.014v-.598h-.666v3.86h.711v-1.757c0-.969.415-1.574 1.049-1.574.12 0 .264.015.393.068v-.636c-.151-.03-.258-.053-.47-.053m2.861 0c-1.178 0-1.965.848-1.965 2.022 0 1.105.802 2.021 1.965 2.021 1.155 0 1.955-.916 1.955-2.021 0-1.174-.785-2.022-1.955-2.022m-6.222.092v3.86h.71v-3.86zm6.222.484c.755 0 1.2.711 1.2 1.446 0 .688-.37 1.445-1.2 1.445-.838 0-1.209-.757-1.209-1.445 0-.735.447-1.446 1.21-1.446m-8.353 1.522c.15 0 .302.015.453.015v.34c0 .575-.37 1.014-1.072 1.014-.325 0-.717-.218-.717-.627 0-.681.95-.742 1.336-.742"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cairometro.svg�������������������������������0000664�0000000�0000000�00000001314�14753064456�0025766�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.397 4.14h.882v.881h-.882zm-1.628 0h.883v.881h-.883zm4.915 1.055v3.402h-1.386V5.195h-.84v1.763h-2.983V5.196h-.84v3.402H8.543v.84h1.911V7.82h2.983v1.617h5.44V5.195zm2.352 3.395h-1.512V6.028h1.512zM5.173 5.195v2.604h2.353v.805H5.173v.833h3.193V5.195zm2.339 1.757H5.999v-.924h1.513zm-2.64 12.177V9.726h4.175L12 12.68l2.954-2.953h4.176v9.403h-4.176v-3.442L12 18.754l-2.952-3.048v3.424zM12 0 8.485 3.515h-4.97v4.97L0 12l3.515 3.515v4.97h4.97L12 24l3.515-3.515h4.97v-4.97L24 12l-3.515-3.515v-4.97h-4.97zm0 1.708 3.014 3.015h4.263v4.263L22.292 12l-3.015 3.014v4.263h-4.263L12 22.292l-3.014-3.015H4.723v-4.263L1.708 12l3.015-3.014V4.723h4.263Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/caixabank.svg��������������������������������0000664�0000000�0000000�00000005011�14753064456�0025541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.938 16c.183 0 .315.13.487.1.239.09.212.383.462.455.19.384.312.797.419 1.21-.077.244.129.384.056.608l.072.04a1.8 1.8 0 0 1-.114.716c.038.426-.17.78-.353 1.14-.13.083-.19.314-.372.273-.323.102-.353.584-.748.524-.25.189-.596.083-.895.09-.176-.09-.419-.067-.536-.22a3.3 3.3 0 0 1-.84-.57c-.102-.22-.333-.318-.363-.57.09-.302-.1-.576-.02-.88l-.06-.504.19-.87c.326-.171.235-.561.558-.683.2-.467.683-.566 1.059-.797.14-.03.311.05.422-.08.205-.03.394.179.577.018m1.496-3.682c.202.14.19.422.372.566l.092.622-.456.669c-.573.303-1.431.433-1.967-.054-.304-.269-.383-.664-.304-1.059l.213-.573c.122-.084.28-.103.365-.243.28-.182.645-.14.967-.213.244.08.607-.05.718.282zm14.967-9.766c-.084 1.424-1.253 2.38-1.868 3.584-.266.714-.89 1.14-1.33 1.784-.405.418-.796.87-1.134 1.334.06.333.418.424.618.667.456.27.502.786.896 1.102.232 0 .232.341.487.3.535.577.967 1.173 1.412 1.795a1.3 1.3 0 0 0 .37.607c.355.514.647 1.064 1.01 1.584.055.585.549.979.7 1.526.22.292.312.635.513.926.316.684.524 1.406.9 2.062.069.152-.023.3-.103.41-.14.114-.25-.091-.414-.06a14 14 0 0 1-2.38-1.2c-.79-.638-1.656-1.09-2.43-1.758-.304-.076-.428-.433-.71-.574-.747-.462-1.344-1.131-2.1-1.563-.341-.266-.683-.518-1.028-.79-.266-.027-.354-.331-.607-.422-.563-.342-1.08-.82-1.656-1.14-.05.077 0 .203-.05.282-.383.373-.28.949-.554 1.364-.01.595-.425 1.028-.596 1.556-.475.846-.888 1.712-1.382 2.55-.657.87-1.01 1.919-1.937 2.614-.205.253-.436.383-.686.546-.114-.03-.274-.012-.304-.152-.114-.212.03-.532-.121-.725.132-.297.05-.627.113-.95l-.053-.14c.01-.444.23-.82.14-1.272a3 3 0 0 0 .206-.91 5 5 0 0 0 .303-1.212 1.5 1.5 0 0 0 .153-.836c.098-.265.117-.576.39-.77.039-.17 0-.342.03-.524.27-.827.608-1.625.817-2.471 0-.061-.06-.08-.103-.092-.596-.03-1.15.092-1.705-.06a14 14 0 0 1-2.695-.311c-.348-.07-.774-.027-1.097-.23-.209.009-.452.05-.653-.063-.418-.2-.919-.167-1.329-.391-.315.038-.54-.16-.82-.19-.274.019-.425-.212-.615-.364v-.092c.5-.683 1.31-.876 2.038-1.139.714-.224 1.511-.243 2.26-.395.475-.08.987.05 1.465-.03.858.02 1.682.16 2.532.182.282.038.544.172.828.16l-.01-.122-.8-1.09c-.302-.705-.857-1.302-1.046-2.05-.182-.219-.012-.553-.152-.796-.011-.11.075-.19.13-.282.17-.068.363.05.535-.06.515.12.986.303 1.503.405.53.21 1.078.422 1.556.776.593.425 1.31.698 1.773 1.351.125.114.316.133.475.091.14-.019.17-.19.303-.243.627-.39 1.334-.615 1.948-1.048.255-.25.657-.28.81-.627.189-.09.36-.212.565-.265.353-.247.707-.52 1.09-.72a1.1 1.1 0 0 0 .515-.244c.627-.342 1.284-.627 1.88-1.02.13-.355.524-.27.805-.355.14.034.334.012.395.19z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cakephp.svg����������������������������������0000664�0000000�0000000�00000000626�14753064456�0025242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 13.875v3.745c0 2.067 5.37 3.743 12 3.743V17.62c-6.63 0-12-1.68-12-3.743zm21.384 2.333L12 13.875v3.745l9.384 2.333C23.02 19.313 24 18.503 24 17.62v-3.745c0 .882-.98 1.692-2.616 2.333M12 10.133v3.742c-6.627 0-12-1.677-12-3.744V6.38c0-2.064 5.37-3.743 12-3.743 6.625 0 12 1.68 12 3.744v3.75c0 .883-.98 1.69-2.616 2.334L12 10.13z"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/caldotcom.svg��������������������������������0000664�0000000�0000000�00000002642�14753064456�0025574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.408 14.488C1.035 14.488 0 13.4 0 12.058c0-1.346.982-2.443 2.408-2.443.758 0 1.282.233 1.691.765l-.66.55a1.34 1.34 0 0 0-1.03-.442c-.93 0-1.44.711-1.44 1.57s.559 1.557 1.44 1.557c.413 0 .765-.147 1.043-.443l.651.573c-.391.51-.929.743-1.695.743m4.54-3.575h.89v3.49h-.89v-.51c-.185.362-.493.604-1.083.604-.943 0-1.695-.82-1.695-1.826s.752-1.825 1.695-1.825c.585 0 .898.241 1.083.604zm.026 1.758c0-.546-.374-.998-.964-.998-.568 0-.938.457-.938.998 0 .528.37.998.938.998.586 0 .964-.456.964-.998m1.493-3.168h.89v4.895h-.89zm1.285 4.434a.53.53 0 0 1 .542-.528c.313 0 .533.242.533.528a.527.527 0 0 1-.533.537.534.534 0 0 1-.542-.537m4.478-.098c-.33.403-.832.658-1.426.658a1.806 1.806 0 0 1-1.84-1.826c0-1.007.778-1.825 1.84-1.825.572 0 1.07.241 1.4.622l-.687.577c-.172-.215-.396-.376-.713-.376-.568 0-.938.456-.938.998 0 .541.37.997.938.997.343 0 .58-.179.757-.42zm.075-1.168c0-1.007.78-1.825 1.84-1.825s1.84.818 1.84 1.825a1.806 1.806 0 0 1-1.84 1.826c-1.06-.005-1.84-.82-1.84-1.826m2.778 0c0-.546-.37-.998-.938-.998-.568-.004-.937.452-.937.998 0 .542.37.998.937.998s.938-.456.938-.998M24 12.269v2.13h-.89v-1.911c0-.604-.281-.864-.704-.864-.396 0-.678.197-.678.864v1.91h-.89v-1.91c0-.604-.285-.864-.704-.864-.396 0-.744.197-.744.864v1.91h-.89v-3.49h.89v.484c.185-.376.52-.564 1.035-.564.489 0 .898.241 1.123.649.224-.417.554-.65 1.153-.65.731.005 1.299.56 1.299 1.442"/></svg>����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/calendly.svg���������������������������������0000664�0000000�0000000�00000003302�14753064456�0025414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.655 14.262q.421.001.828.064c0 .005-.005.01-.005.014a6 6 0 0 1-.381.786l-1.219 2.106a6.24 6.24 0 0 1-5.411 3.127h-2.432a6.25 6.25 0 0 1-5.412-3.127l-1.218-2.106a6.25 6.25 0 0 1 0-6.252l1.218-2.106a6.24 6.24 0 0 1 5.412-3.127h2.432a6.25 6.25 0 0 1 5.411 3.127l1.219 2.106c.147.252.271.519.381.786 0 .004.005.009.005.014a5.5 5.5 0 0 1-.828.064c-1.816 0-2.501-.607-3.291-1.306-.764-.676-1.711-1.517-3.44-1.517h-1.029c-1.251 0-2.387.455-3.2 1.278-.796.805-1.233 1.904-1.233 3.099v1.411c0 1.196.437 2.295 1.233 3.099.813.823 1.949 1.278 3.2 1.278h1.034c1.729 0 2.676-.841 3.439-1.517.791-.703 1.471-1.306 3.287-1.301m.005-3.237q.6 0 1.179-.11-.003-.007-.002-.014a6.3 6.3 0 0 0-.349-1.218 4.6 4.6 0 0 0 1.986-.819c0-.004-.005-.013-.005-.018a10.6 10.6 0 0 0-1.489-3.03 10.9 10.9 0 0 0-2.331-2.395 10.64 10.64 0 0 0-6.428-2.138c-1.448 0-2.855.28-4.175.841-1.273.543-2.423 1.315-3.407 2.299S2.878 6.552 2.341 7.83a10.7 10.7 0 0 0-.842 4.175c0 1.448.281 2.855.842 4.174.542 1.274 1.314 2.423 2.298 3.407s2.129 1.761 3.407 2.299c1.324.556 2.727.841 4.175.841 2.34 0 4.561-.74 6.428-2.137a10.8 10.8 0 0 0 2.331-2.396 10.8 10.8 0 0 0 1.489-3.03c0-.004.005-.014.005-.018a4.6 4.6 0 0 0-1.986-.819c.161-.395.276-.804.349-1.218.005-.009.005-.014.005-.023a5.85 5.85 0 0 1 2.404 1.035c.685.505.552 1.075.446 1.416C22.184 20.437 17.619 24 12.221 24c-6.625 0-12-5.375-12-12s5.37-12 12-12c5.398 0 9.963 3.563 11.471 8.464.106.341.239.915-.446 1.421a5.8 5.8 0 0 1-2.404 1.034c.128.716.128 1.45 0 2.166a6.3 6.3 0 0 0-1.182-.11c-4.184 0-3.968 2.823-6.736 2.823h-1.029c-1.899 0-3.15-1.357-3.15-3.095v-1.411c0-1.738 1.251-3.094 3.15-3.094h1.034c2.768 0 2.552 2.823 6.731 2.827"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/calibreweb.svg�������������������������������0000664�0000000�0000000�00000000717�14753064456�0025727�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.736.083q4.935-.678 5.525 4.192-1.104 5.486-6.478 7.144-1.313.398-2.667.19-.409-.132-.667-.476a3.9 3.9 0 0 1 0-1.714q4.073.442 6.478-3.049.867-1.316.572-2.858-.558-1.204-1.906-1.143-2.707.45-4.382 2.668Q6.298 10.79 7.735 17.61q1.59 5.44 6.954 3.525 1.458-.748 2.667-1.81 1.627.683.857 2.286-4.452 3.901-9.812 1.429-3.138-2.512-3.524-6.573-.858-7.33 3.62-13.146Q10.673.927 13.736.083"/></svg>�������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/campaignmonitor.svg��������������������������0000664�0000000�0000000�00000000410�14753064456�0027005�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.836 4.27a.915.915 0 0 0-1.273-.226L.163 19.73c.167.235.437.39.747.39h22.18c.503 0 .91-.41.91-.914V4.78a.95.95 0 0 0-.164-.51m-22.4-.226A.91.91 0 0 0 0 4.78v14.45l10.664-8.736zv-.002z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/camunda.svg����������������������������������0000664�0000000�0000000�00000001035�14753064456�0025232�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.327 0A3.327 3.327 0 0 0 0 3.326v17.348A3.327 3.327 0 0 0 3.327 24h17.347A3.326 3.326 0 0 0 24 20.674V3.326A3.326 3.326 0 0 0 20.674 0zm8.687 3.307c1.875 0 2.84 1.105 2.84 3.049v1.175H13.05V6.23c0-.867-.392-1.203-.994-1.203-.615-.014-.993.322-.993 1.189v6.56c0 .867.392 1.175.993 1.175.616 0 .994-.308.994-1.175v-1.734h1.804v1.608c-.014 1.945-.979 3.049-2.854 3.049s-2.839-1.119-2.839-3.035V6.356c.014-1.944.979-3.049 2.853-3.049M9.161 17.476h5.693v3.217H9.161z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/canonical.svg��������������������������������0000664�0000000�0000000�00000001604�14753064456�0025553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.427 0v24h15.146V0Zm9.994 10.25a1.57 1.57 0 0 1 1.567 1.568 1.57 1.57 0 0 1-1.567 1.568 1.57 1.57 0 0 1-1.568-1.568 1.57 1.57 0 0 1 1.568-1.568m-2.157.16q.183 0 .369.015a2.27 2.27 0 0 0-.476 1.271 3.83 3.83 0 0 0-3.08 1.647 2.24 2.24 0 0 0-1.308-.335 5.16 5.16 0 0 1 4.495-2.599zm4.242 2.296a5.14 5.14 0 0 1 .74 3.905 5.14 5.14 0 0 1-.997 2.113 2.25 2.25 0 0 0-.75-1.167 3.84 3.84 0 0 0 .125-3.818 2.26 2.26 0 0 0 .882-1.033m-8.616.982a1.57 1.57 0 0 1 1.568 1.568 1.57 1.57 0 0 1-1.568 1.568 1.57 1.57 0 0 1-1.567-1.568 1.57 1.57 0 0 1 1.567-1.568m.933 3.618a3.82 3.82 0 0 0 2.604 1.986q.191.04.385.063c.01.476.17.932.459 1.31a5 5 0 0 1-1.114-.114 5.1 5.1 0 0 1-3.675-3.08 2.26 2.26 0 0 0 1.34-.165zm5.244.427a1.57 1.57 0 0 1 1.568 1.568 1.57 1.57 0 0 1-1.568 1.568A1.57 1.57 0 0 1 12.5 19.3a1.57 1.57 0 0 1 1.568-1.568z"/></svg>����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/canva.svg������������������������������������0000664�0000000�0000000�00000005212�14753064456�0024713�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0M6.962 7.68c.754 0 1.337.549 1.405 1.2.069.583-.171 1.097-.822 1.406-.343.171-.48.172-.549.069-.034-.069 0-.137.069-.206.617-.514.617-.926.548-1.508-.034-.378-.308-.618-.583-.618-1.2 0-2.914 2.674-2.674 4.629.103.754.549 1.646 1.509 1.646.308 0 .65-.103.96-.24.5-.264.799-.47 1.097-.8-.073-.885.704-2.046 1.851-2.046.515 0 .926.205.96.583.068.514-.377.582-.514.582s-.378-.034-.378-.17c-.034-.138.309-.07.275-.378-.035-.206-.24-.274-.446-.274-.72 0-1.131.994-1.029 1.611.035.275.172.549.447.549.205 0 .514-.31.617-.755.068-.308.343-.514.583-.514.102 0 .17.034.205.171v.138c-.034.137-.137.548-.102.651 0 .069.034.171.17.171.092 0 .436-.18.777-.459.117-.59.253-1.298.253-1.357.034-.24.137-.48.617-.48.103 0 .171.034.205.171v.138l-.136.617c.445-.583 1.097-.994 1.508-.994.172 0 .309.102.309.274 0 .103 0 .274-.069.446-.137.377-.309.96-.412 1.474 0 .137.035.274.207.274s.685-.206 1.096-.754l.007-.004c-.002-.068-.007-.134-.007-.202 0-.411.035-.754.104-.994.068-.274.411-.514.617-.514.103 0 .205.069.205.171 0 .035 0 .103-.034.137-.137.446-.24.857-.24 1.269 0 .24.034.582.102.788 0 .034.035.069.07.069.068 0 .548-.445.89-1.028-.308-.206-.48-.549-.48-.96 0-.72.446-1.097.858-1.097.343 0 .617.24.617.72 0 .308-.103.65-.274.96h.102a.77.77 0 0 0 .584-.24.3.3 0 0 1 .134-.117c.335-.425.83-.74 1.41-.74.48 0 .924.205.959.582.068.515-.378.618-.515.618l-.002-.002c-.138 0-.377-.035-.377-.172s.309-.068.274-.376c-.034-.206-.24-.275-.446-.275-.686 0-1.13.891-1.028 1.611.034.275.171.583.445.583.206 0 .515-.308.652-.754.068-.274.343-.514.583-.514.103 0 .17.034.205.171 0 .069 0 .206-.137.652-.17.308-.171.48-.137.617.034.274.171.48.309.583.034.034.068.102.068.102 0 .069-.034.138-.137.138-.034 0-.068 0-.103-.035-.514-.205-.72-.548-.789-.891-.205.24-.445.377-.72.377-.445 0-.89-.411-.96-.926a1.6 1.6 0 0 1 .075-.649c-.203.13-.422.203-.623.203h-.17c-.447.652-.927 1.098-1.27 1.303a.9.9 0 0 1-.377.104c-.068 0-.171-.035-.205-.104-.095-.152-.156-.392-.193-.667-.481.527-1.145.805-1.453.805-.343 0-.548-.206-.582-.55v-.376c.102-.754.377-1.2.377-1.337a.074.074 0 0 0-.069-.07c-.24 0-1.028.824-1.166 1.373l-.103.445c-.068.309-.377.515-.582.515-.103 0-.172-.035-.206-.172v-.137l.046-.233c-.435.31-.87.508-1.075.508-.308 0-.48-.172-.514-.412-.206.274-.445.412-.754.412-.352 0-.696-.24-.862-.593-.244.275-.523.553-.852.764-.48.309-1.028.549-1.68.549-.582 0-1.097-.309-1.371-.583-.412-.377-.651-.96-.686-1.509-.205-1.68.823-3.84 2.4-4.8.378-.205.755-.343 1.132-.343m9.77 3.291c-.104 0-.172.172-.172.343 0 .274.137.583.309.755a1.7 1.7 0 0 0 .102-.583c0-.343-.137-.515-.24-.515z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/canvas.svg�����������������������������������0000664�0000000�0000000�00000002647�14753064456�0025107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.44 15.414a13.7 13.7 0 0 1-.436-3.44 13.7 13.7 0 0 1 .436-3.44 3.47 3.47 0 0 1 3.044 3.44 3.47 3.47 0 0 1-3.044 3.44m3.973-3.44a1.087 1.087 0 1 0 2.175 0 1.087 1.087 0 0 0-2.175 0m19.147-3.44a3.47 3.47 0 0 0-3.044 3.44 3.47 3.47 0 0 0 3.044 3.44 13.7 13.7 0 0 0 .436-3.44c0-1.188-.152-2.341-.436-3.44m-6.148 3.44a1.087 1.087 0 1 0 2.175 0 1.087 1.087 0 0 0-2.175 0zm-5.435 8.546a3.47 3.47 0 0 0-3.44 3.044 13.7 13.7 0 0 0 3.441.436c1.189 0 2.34-.151 3.44-.436a3.47 3.47 0 0 0-3.44-3.044m.001-3.104a1.088 1.088 0 1 0 0 2.176 1.088 1.088 0 0 0 0-2.176m0-13.936c1.772 0 3.23-1.33 3.44-3.044A13.7 13.7 0 0 0 11.978 0c-1.189 0-2.341.152-3.44.436a3.47 3.47 0 0 0 3.44 3.044zm0 .929a1.087 1.087 0 1 0 0 2.174 1.087 1.087 0 0 0 0-2.174m6.032 13.596a3.47 3.47 0 0 0-.282 4.582 13.76 13.76 0 0 0 4.863-4.865 3.47 3.47 0 0 0-4.58.283m-.657-2.195a1.09 1.09 0 0 0-1.539 1.539 1.088 1.088 0 1 0 1.54-1.539M5.966 5.96a3.467 3.467 0 0 0 .282-4.581 13.77 13.77 0 0 0-4.864 4.864 3.47 3.47 0 0 0 4.582-.283m.657.658A1.088 1.088 0 1 0 8.16 8.156a1.088 1.088 0 0 0-1.538-1.539m15.962-.386a13.76 13.76 0 0 0-4.864-4.864 3.47 3.47 0 0 0 .283 4.581 3.47 3.47 0 0 0 4.581.283m-5.238 1.912a1.089 1.089 0 1 0-1.539-1.537 1.089 1.089 0 0 0 1.539 1.537M1.377 17.71a13.76 13.76 0 0 0 4.865 4.865 3.468 3.468 0 0 0-4.865-4.865m5.239-1.912a1.088 1.088 0 1 0 1.538 1.538 1.088 1.088 0 0 0-1.538-1.538"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/capacitor.svg��������������������������������0000664�0000000�0000000�00000000376�14753064456�0025576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m24 3.7-5.766 5.766 5.725 5.736-3.713 3.712L5.073 3.742 8.786.03l5.736 5.726L20.284 0zM.029 8.785l3.713-3.713 15.173 15.173-3.713 3.714-5.732-5.726L3.7 24 0 20.285l5.754-5.764z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/caprover.svg���������������������������������0000664�0000000�0000000�00000003426�14753064456�0025451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.376 0 0 5.376 0 12s5.376 12 12 12 12-5.375 12-12S18.624 0 12 0m0 .507C18.35.507 23.493 5.65 23.493 12S18.35 23.493 12 23.493.507 18.35.507 12 5.65.507 12 .507m-1.442 1.51q-.077-.006-.07.003c.011.01.309.167.662.349 1.047.539 1.69 1.024 1.658 1.25-.03.21-.095.217-2.12.219-2.014.001-2.201.016-3.047.24-1.095.29-1.708.88-1.902 1.831-.079.387-.079.571-.001 1.017.08.464.215.86.48 1.411.663 1.387 1.845 3.022 3.353 4.642 1.354 1.454 2.114 2.724 2.339 3.912.115.606.066 1.573-.12 2.352-.184.779-.396 1.208-1.032 2.09a5 5 0 0 0-.27.394c0 .012.122-.074.27-.19 1.868-1.458 2.904-2.775 3.264-4.15.084-.32.094-.446.095-1.22 0-.934-.028-1.16-.227-1.824a6.2 6.2 0 0 0-.569-1.324c-.415-.712-1.499-2.221-2.182-3.039-.447-.534-.703-.903-.969-1.39-.656-1.209-.687-2.421-.072-2.836.239-.16.489-.214 1.004-.214.693 0 1.33.156 3.216.783 1.074.357 2.094.58 2.655.58.54 0 .85-.135 1.007-.44.139-.271.114-.691-.062-1.044-.235-.472-.88-1.133-1.515-1.552-.968-.64-2.394-1.256-3.464-1.494-.453-.1-2.03-.332-2.381-.356m1.647 4.312c-.379-.002-.55.06-.755.25-.334.306-.398.597-.254 1.159.19.743.565 1.266 1.845 2.577.388.397.815.857.95 1.023.544.67.938 1.393 1.128 2.072.107.382.11.423.106 1.357-.003.875-.013 1.01-.11 1.486-.155.762-.261 1.057-.748 2.083l-.247.52c-.02.045.018.018.087-.06.22-.25 1.053-1.53 1.287-1.984.416-.802.722-1.782.922-2.951.128-.747.13-1.8.002-2.379-.385-1.755-1.605-3.731-2.893-4.685-.507-.375-.679-.445-1.143-.464zm3.926 1.081a.4.4 0 0 0-.117.036.45.45 0 0 0-.205.183c-.115.222.01.497.576 1.265.384.522.775 1.277.893 1.725.065.247.084.44.084.842 0 .46-.08 1.235-.154 1.494-.048.167.027.092.12-.12.11-.249.508-1.422.61-1.795.1-.368.1-1.124 0-1.524a4.7 4.7 0 0 0-.593-1.288c-.184-.262-.573-.558-.978-.743-.124-.057-.18-.08-.237-.075"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cardano.svg����������������������������������0000664�0000000�0000000�00000003177�14753064456�0025242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.577 11.92a1.62 1.62 0 0 0 1.521 1.706h.094a1.617 1.617 0 1 0-1.615-1.706m-6.025-.416a.522.522 0 1 0 .001 0zM6.474 2.54a.522.522 0 1 0-.001 0zm1.64 2.858a.807.807 0 1 0-.727-1.44.807.807 0 0 0 .727 1.44ZM2.597 7.365a.665.665 0 1 0 .729-1.113.665.665 0 0 0-.729 1.112m.982 3.851a.808.808 0 1 0 .76.852.81.81 0 0 0-.76-.852m-.891 5.422a.665.665 0 1 0 .893.295.664.664 0 0 0-.891-.296zm3.136-7.093a.95.95 0 1 0-.001 0m9.95-4.21a.808.808 0 1 0 0-.001Zm1.656-2.85a.522.522 0 1 0 0-.001m-1.53 7.893a1.616 1.616 0 1 0-.183 3.227h.093a1.616 1.616 0 0 0 .09-3.23zm-7.255-.945a1.616 1.616 0 1 0 2.887-1.454A1.616 1.616 0 0 0 8.645 9.43zm12.667-2.07a.665.665 0 1 0-.003 0zm-4.096.514a.95.95 0 1 0 .856 1.696.95.95 0 0 0-.856-1.696m-5.277-5.636a.665.665 0 1 0-.004 0zm-.008 4.183a.95.95 0 1 0-.001 0zm-5.147 9.7a.95.95 0 1 0-.854-1.697.95.95 0 0 0 .854 1.697m5.76-8.313a1.614 1.614 0 1 0 2.701 1.767 1.614 1.614 0 0 0-2.701-1.767m2.81 6.757a1.617 1.617 0 1 0-.716 2.17h.001a1.607 1.607 0 0 0 .724-2.154zm2.822-.112a.95.95 0 1 0-1.042 1.588.95.95 0 0 0 1.042-1.588Zm3.096-2.429a.808.808 0 1 0-.852.76.81.81 0 0 0 .852-.76m2.235-.574a.522.522 0 1 0-.058 1.043.522.522 0 0 0 .058-1.043m-2.104 5.182a.665.665 0 1 0-.73 1.113.665.665 0 0 0 .73-1.112M6.57 21.517a.522.522 0 1 0-.574.873.522.522 0 0 0 .573-.873m10.955-.055a.522.522 0 1 0 .003-.001zm-6.07-5.272a1.616 1.616 0 1 0-2.702-1.771 1.616 1.616 0 0 0 2.703 1.771m-3.23 2.477a.808.808 0 1 0-.885 1.35.808.808 0 0 0 .886-1.35m3.767 3.093a.665.665 0 1 0 .003 0zM12 17.576a.95.95 0 1 0 .001 0m3.886 1.026a.808.808 0 1 0 .004-.002q-.002 0-.004.002Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/carlsberggroup.svg���������������������������0000664�0000000�0000000�00000013760�14753064456�0026653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.951 5.281a.2.2 0 0 0-.127.051C.722 6.319 0 7.606 0 9.092c0 2.198 1.76 3.898 3.83 3.898 1.036 0 2.01-.457 2.69-1.135.155-.155-.036-.353-.202-.2a2.96 2.96 0 0 1-1.972.753c-1.564 0-2.875-1.288-2.875-2.844 0-1.287 1.033-2.584 2.332-2.584.473 0 .981.19 1.281.49.026.025.067.025.09-.005l1.594-2.098a.05.05 0 0 0-.037-.086zm17.483 0a.17.17 0 0 0-.104.037.4.4 0 0 1-.395.06.25.25 0 0 0-.31.108.25.25 0 0 0 .06.325.4.4 0 0 1 .147.37.16.16 0 0 0 .02.108.17.17 0 0 0 .23.063l.225-.13a.13.13 0 0 1 .173.048.125.125 0 0 1-.047.171l-.224.131a.17.17 0 0 0-.06.23q.032.052.083.071a.4.4 0 0 1 .248.312.25.25 0 0 0 .25.215.25.25 0 0 0 .248-.215.4.4 0 0 1 .248-.312.168.168 0 0 0 .023-.3l-.222-.132a.125.125 0 0 1-.047-.172.126.126 0 0 1 .172-.046l.225.129a.17.17 0 0 0 .23-.063.17.17 0 0 0 .02-.107.4.4 0 0 1 .146-.371.25.25 0 0 0 .061-.325.25.25 0 0 0-.31-.107.4.4 0 0 1-.395-.06.17.17 0 0 0-.104-.038.17.17 0 0 0-.168.17v.258a.127.127 0 0 1-.127.127.127.127 0 0 1-.127-.127v-.258a.17.17 0 0 0-.17-.17zM8.617 6.63a.055.055 0 0 0-.055.056v.135c0 .03.032.05.055.057l.168.049c.023.007.049.023.049.054v3.389c0 .721.548.926.914.926h1.879c.426 0 .832-.311.832-.813 0-.758-1.168-.69-1.168-1.125 0-.175.172-.238.385-.238.16 0 .38.071.504.162.043.032.075 0 .086-.023l.289-.66c.012-.029-.004-.077-.051-.077h-1.35a.714.714 0 0 0-.695.711c0 .781 1.016.643 1.016 1.172 0 .205-.164.381-.391.381-.448 0-.638-.3-.658-.473-.005-.033-.047-.056-.076-.045l-.186.075c-.035.014-.042.062-.023.086.032.039.05.078.05.14a.22.22 0 0 1-.222.221.22.22 0 0 1-.219-.22V6.684a.057.057 0 0 0-.057-.056zm3.961 0a.055.055 0 0 0-.055.056v.135c0 .031.031.05.055.057l.168.049c.024.006.049.023.049.054v3.38c0 .57.41.935 1.064.935h.446c.476 0 .779-.328.779-.768v-.517c.126.082.297.162.467.213a1.47 1.47 0 0 0 1.44 1.158c.748 0 1.116-.506 1.196-.692.083-.19-.094-.229-.168-.132-.16.21-.391.322-.7.322-.527 0-.794-.434-.794-.551.851 0 1.398-.46 1.41-1.068.161-.11.34-.211.454-.211.123 0 .222.067.222.222v1.967c0 .03.024.057.055.057h1.076a.06.06 0 0 0 .057-.057v-.137c0-.031-.033-.047-.057-.054l-.166-.051c-.024-.006-.049-.023-.049-.055V9.246c0-.136.124-.242.26-.242.228 0 .18.242.531.242.298 0 .657-.304.657-.873 0-.35-.174-.657-.518-.855-.136-.08-.253.086-.145.175.159.132.32.353.32.495 0 .148-.115.247-.214.247-.23 0-.383-.279-.65-.279-.15 0-.286.124-.286.26 0 .071.037.13.037.205 0 .062-.047.117-.109.117-.181 0-.182-.302-.55-.302-.33 0-.736.264-1.003.47-.129-.26-.415-.47-.867-.47-.807 0-1.449.63-1.472 1.425a3 3 0 0 1-.434-.234V8.578a.056.056 0 0 0-.055-.057h-.804a.057.057 0 0 0-.057.057v.774c0 .074.038.11.088.14l.37.225v.742c0 .29-.248.37-.458.37-.192 0-.457-.117-.457-.39V6.685a.057.057 0 0 0-.057-.056zM3.644 8.435c-.699 0-1.27.663-1.27 1.473 0 .817.571 1.473 1.27 1.473.65 0 .664-.385.897-.385.268 0 .223.385.578.385.321 0 .936-.594 1.24-.908v.765c0 .031.026.057.057.057h1.076a.057.057 0 0 0 .057-.057v-.136c0-.032-.033-.048-.057-.055l-.166-.05c-.024-.007-.05-.024-.05-.056V9.246a.24.24 0 0 1 .241-.242.15.15 0 0 1 .149.148c0 .109-.086.112-.086.274a.32.32 0 0 0 .314.314c.366 0 .657-.289.657-.654a.65.65 0 0 0-.657-.65c-.497 0-.528.42-.71.42-.202 0-.115-.42-.682-.42-.328 0-.537.253-.537.37 0 .063.05.132.13.132.088 0 .09-.063.157-.063.056 0 .107.031.107.1v1.054c-.227.204-.611.522-.79.522-.1 0-.192-.081-.192-.18V8.875c0-.031.025-.05.049-.057l.168-.048c.024-.008.054-.026.054-.057v-.135a.056.056 0 0 0-.054-.057h-.899c-.037 0-.06.027-.066.057-.019.099-.058.166-.145.166-.14 0-.268-.309-.84-.309m18.352 0c-.699 0-1.27.662-1.27 1.473 0 .817.57 1.473 1.27 1.473.532 0 .625-.266.72-.266.066 0 .096.036.096.098v.545c0 .383-.273.668-.638.668s-.655-.267-.655-.62c0-.036-.032-.054-.056-.054h-.211a.054.054 0 0 0-.055.055c0 .352-.613 1.406-2.717 1.406-2.493 0-4.609-1.504-7.646-1.504-1.553 0-3.75.661-5.266 1.947-.03.026-.015.072.014.088l2.293 1.252c.038.021.06.013.088-.016 1.23-1.234 2.414-1.718 4.207-1.718 1.306 0 3.818.73 5.297.73 2.685 0 3.606-1.09 3.89-1.598.211.36.626.577 1.096.577.69 0 1.275-.557 1.275-1.25V8.875c0-.031.026-.049.05-.057l.165-.048c.025-.007.057-.026.057-.057v-.135a.057.057 0 0 0-.057-.057h-.896a.07.07 0 0 0-.069.057c-.019.099-.056.166-.142.166-.14 0-.268-.309-.84-.309m-4.883.551c.26 0 .285.205.285.285 0 .234-.322.711-.921.711 0-.624.327-.996.636-.996m-13.14.1c.235 0 .488.184.488.37v.91c0 .184-.253.37-.488.37-.433 0-.713-.346-.713-.828 0-.483.28-.822.713-.822m18.35 0c.235 0 .49.184.49.37v.91c0 .184-.255.37-.49.37-.433 0-.712-.345-.712-.828s.279-.822.711-.822m-8.966 5.24c-.877.032-1.431.554-1.431 1.79 0 1.322.451 1.81 1.316 1.81.243 0 .55-.072.73-.162.048-.025.073-.043.116-.043.062 0 .086.052.115.086.038.043.072.062.162.062h.176v-1.605c0-.077-.028-.11-.1-.11h-.257v1.055c0 .134-.005.164-.106.23 0 0-.247.143-.605.143-.874 0-1.143-.373-1.143-1.467 0-1.127.426-1.46 1.133-1.46.281 0 .496.062.668.181q.064.043.1.043c.028 0 .043-.019.058-.053l.11-.324s-.44-.176-.956-.176zm4.235 1.02c-.735 0-1.131.456-1.131 1.29 0 .842.396 1.29 1.13 1.29.736 0 1.134-.448 1.134-1.29 0-.84-.398-1.29-1.133-1.29m-1.412.006a1.2 1.2 0 0 0-.559.162c-.048.029-.067.043-.105.043-.043 0-.054-.037-.092-.09-.029-.043-.056-.059-.156-.059h-.135v2.35c0 .076.03.111.101.111h.252v-1.896c0-.053 0-.057.053-.1a.93.93 0 0 1 .565-.191c.095 0 .209.013.209.013v-.34s-.052-.003-.09-.003zm6.547 0a1.23 1.23 0 0 0-.602.162c-.047.029-.067.043-.105.043-.043 0-.054-.037-.092-.09-.029-.043-.056-.059-.156-.059h-.135v3.202c0 .076.03.109.101.109h.252v-.885c0-.07.016-.1.05-.1q.026 0 .075.03c.158.08.363.162.612.162.51 0 .998-.402.998-1.295s-.444-1.28-.998-1.28m-3.569.056v1.696c0 .558.297.822.88.822a1.2 1.2 0 0 0 .587-.162c.048-.03.067-.043.106-.043.042 0 .051.037.09.09.028.042.057.058.158.058h.132v-2.35c0-.076-.028-.11-.1-.11h-.253v1.906c0 .052.002.062-.051.105a.95.95 0 0 1-.598.191c-.458 0-.597-.168-.597-.603V15.52c0-.077-.028-.112-.1-.112zm-1.611.23h.045c.506 0 .756.34.756.999s-.25.998-.756.998-.754-.339-.754-.998c0-.638.234-.978.709-.998zm5.064.028c.487 0 .737.34.737.97 0 .727-.341.975-.756.975a.87.87 0 0 1-.549-.191c-.052-.043-.053-.053-.053-.105v-1.356c0-.053.01-.063.053-.102a.85.85 0 0 1 .568-.191"/></svg>����������������mkdocs-material-9.6.4/material/templates/.icons/simple/carrd.svg������������������������������������0000664�0000000�0000000�00000002062�14753064456�0024716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.254 18.42 9.746 23.948a.5.5 0 0 1-.23.053.55.55 0 0 1-.284-.08.53.53 0 0 1-.247-.45v-5.474l-6.217-2.602a.53.53 0 0 1-.327-.49V.531c0-.181.093-.354.248-.45A.54.54 0 0 1 3.202.05l11.964 5.743 5.632-2.703a.53.53 0 0 1 .513.03.53.53 0 0 1 .248.452v14.37a.54.54 0 0 1-.305.479M3.503 1.378V14.55l5.482 2.297V14.2l-3.447-1.39a.537.537 0 0 1-.296-.69.533.533 0 0 1 .69-.296l3.053 1.23V10.88L5.538 9.492a.537.537 0 0 1-.296-.69.534.534 0 0 1 .69-.297l3.053 1.23v-.632c0-.204.115-.39.3-.478l.788-.38-4.562-2.076c-.265-.12-.385-.438-.265-.703.12-.266.438-.385.704-.266l5.367 2.447L13.93 6.39zm16.99 3.04L10.047 9.435v13.193l10.446-5.022zm-8.45 6.867 5.985-2.894a.53.53 0 0 1 .708.248.527.527 0 0 1-.247.708l-5.987 2.894a.55.55 0 0 1-.23.053.53.53 0 0 1-.23-1.01m0 3.318 5.985-2.893a.53.53 0 0 1 .708.248.527.527 0 0 1-.247.707l-5.987 2.894a.55.55 0 0 1-.23.053.53.53 0 0 1-.23-1.009m0 3.314 5.985-2.893a.53.53 0 0 1 .708.247.527.527 0 0 1-.247.708l-5.987 2.894a.55.55 0 0 1-.23.053.53.53 0 0 1-.23-1.009"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/carrefour.svg��������������������������������0000664�0000000�0000000�00000001742�14753064456�0025617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.14 4.045c-2.569 0-3.572 3.64-3.572 7.979s1.003 7.931 3.572 7.931c1.541 0 2.855-.903 2.86-1.645a.63.63 0 0 0-.199-.453c-.73-.706-1.016-1.412-1.018-2.034-.005-1.189 1.026-2.074 1.977-2.074 1.306 0 2.077 1.027 2.077 2.357 0 1.26-.537 2.31-1.121 3.15a.2.2 0 0 0-.034.107c0 .065.04.12.098.12q.053.001.122-.065l6.561-6.344c.328-.28.537-.608.537-1.073 0-.468-.21-.794-.537-1.073l-6.561-6.346q-.069-.066-.122-.064c-.059 0-.097.055-.098.12q-.001.054.034.107c.584.84 1.12 1.89 1.12 3.15 0 1.329-.77 2.356-2.076 2.356-.95 0-1.982-.884-1.977-2.073.002-.622.288-1.328 1.018-2.033A.62.62 0 0 0 15 5.69c-.004-.743-1.319-1.646-2.86-1.646m-5.043.537L.537 10.93C.209 11.207 0 11.534 0 12c0 .465.21.793.537 1.073l6.56 6.345c.042.043.083.06.117.06.062 0 .105-.057.103-.123a.2.2 0 0 0-.057-.123C5.72 17.32 4.6 15.126 4.6 12.024c0-3.104 1.12-5.341 2.66-7.255a.19.19 0 0 0 .057-.123c.002-.068-.04-.123-.103-.123-.034 0-.075.017-.117.06"/></svg>������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/carthrottle.svg������������������������������0000664�0000000�0000000�00000000413�14753064456�0026154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 19.99h5.31l1-5.76h2.673L7.97 19.99h5.272l1.037-5.76h2.824l-1 5.76h7.584L21.9 17.029 24 4.01h-5.16l-.987 5.647h-2.86l.936-5.647H8.483l1.724 2.749-.487 2.898H6.996l.9-5.647H.35l1.76 2.774Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/carto.svg������������������������������������0000664�0000000�0000000�00000001526�14753064456�0024737�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.138 7.138a4.862 4.862 0 1 1-4.351 7.034h.468a4.448 4.448 0 1 0 0-4.345h-.468a4.86 4.86 0 0 1 4.351-2.69m0 3.31a1.552 1.552 0 1 1 0 3.104 1.552 1.552 0 0 1 0-3.104m-17.577.011c.606 0 .997.255 1.26.615l-.62.48c-.17-.208-.364-.348-.649-.348-.415 0-.708.356-.708.789v.008c0 .445.293.793.708.793.31 0 .492-.144.67-.36l.62.44c-.28.386-.658.67-1.31.67A1.507 1.507 0 0 1 0 12.012v-.008c0-.866.662-1.544 1.56-1.544zm4.734.038 1.264 2.99h-.882l-.212-.534h-1.15l-.211.535h-.861l1.26-2.99zm4.27.022c.454 0 .768.118.968.318.174.174.263.398.263.691v.008c0 .458-.242.76-.611.916l.708 1.035h-.946l-.598-.9h-.365v.9h-.822v-2.969zm5.399 0v.72h-.891v2.249h-.823V11.24h-.886v-.721zm-10.071.954-.335.84h.665zm4.634-.246h-.543v.717h.548c.275 0 .44-.136.44-.352v-.008c0-.238-.173-.357-.445-.357z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cashapp.svg����������������������������������0000664�0000000�0000000�00000001643�14753064456�0025246�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.59 3.475a5.1 5.1 0 0 0-3.05-3.05c-1.31-.42-2.5-.42-4.92-.42H8.36c-2.4 0-3.61 0-4.9.4a5.1 5.1 0 0 0-3.05 3.06C0 4.765 0 5.965 0 8.365v7.27c0 2.41 0 3.6.4 4.9a5.1 5.1 0 0 0 3.05 3.05c1.3.41 2.5.41 4.9.41h7.28c2.41 0 3.61 0 4.9-.4a5.1 5.1 0 0 0 3.06-3.06c.41-1.3.41-2.5.41-4.9v-7.25c0-2.41 0-3.61-.41-4.91m-6.17 4.63-.93.93a.5.5 0 0 1-.67.01 5 5 0 0 0-3.22-1.18c-.97 0-1.94.32-1.94 1.21 0 .9 1.04 1.2 2.24 1.65 2.1.7 3.84 1.58 3.84 3.64 0 2.24-1.74 3.78-4.58 3.95l-.26 1.2a.49.49 0 0 1-.48.39H9.63l-.09-.01a.5.5 0 0 1-.38-.59l.28-1.27a6.54 6.54 0 0 1-2.88-1.57v-.01a.48.48 0 0 1 0-.68l1-.97a.49.49 0 0 1 .67 0c.91.86 2.13 1.34 3.39 1.32 1.3 0 2.17-.55 2.17-1.42s-.88-1.1-2.54-1.72c-1.76-.63-3.43-1.52-3.43-3.6 0-2.42 2.01-3.6 4.39-3.71l.25-1.23a.48.48 0 0 1 .48-.38h1.78l.1.01c.26.06.43.31.37.57l-.27 1.37c.9.3 1.75.77 2.48 1.39l.02.02c.19.2.19.5 0 .68"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/castbox.svg����������������������������������0000664�0000000�0000000�00000002442�14753064456�0025270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c-.29 0-.58.068-.812.206L2.417 5.392c-.46.272-.804.875-.804 1.408v10.4c0 .533.344 1.135.804 1.407l8.77 5.187c.465.275 1.162.275 1.626 0l8.77-5.187c.46-.272.804-.874.804-1.407V6.8c0-.533-.344-1.136-.804-1.408L12.813.206A1.6 1.6 0 0 0 12 0m-.85 8.304c.394 0 .714.303.714.676v2.224c0 .207.191.375.427.375s.428-.168.428-.375V9.57c0-.373.32-.675.713-.675.394 0 .712.302.712.675v4.713c0 .374-.318.676-.712.676s-.713-.302-.713-.676v-1.31c0-.206-.192-.374-.428-.374s-.427.168-.427.374v1.226c0 .374-.32.676-.713.676-.394 0-.713-.302-.713-.676v-1.667c0-.207-.192-.375-.428-.375-.235 0-.427.168-.427.375v3.31c0 .373-.319.676-.712.676-.394 0-.713-.303-.713-.676v-2.427c0-.206-.191-.374-.428-.374-.235 0-.427.168-.427.374v.178a.71.71 0 0 1-.712.708.71.71 0 0 1-.713-.708V11.47a.71.71 0 0 1 .713-.708.71.71 0 0 1 .712.708v.178c0 .206.192.373.427.373.237 0 .428-.167.428-.373v-1.53c0-.374.32-.676.713-.676s.712.303.712.676v.646c0 .206.192.374.427.374.236 0 .428-.168.428-.374V8.98c0-.373.319-.676.713-.676zm4.562 2.416c.393 0 .713.302.713.676v2.691c0 .374-.32.676-.713.676-.394 0-.712-.303-.712-.676v-2.691c0-.374.319-.676.712-.676m2.28 1.368c.395 0 .713.303.713.676v.67c0 .374-.318.676-.712.676s-.713-.302-.713-.675v-.67c0-.374.32-.677.713-.677Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/castorama.svg��������������������������������0000664�0000000�0000000�00000000664�14753064456�0025603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.91 16.106c-2.129 0-3.659-1.794-3.659-4.266 0-2.148 1.468-4.095 3.488-4.095 2.275 0 3.545 1.857 3.545 1.857l2.939-3.298c-.91-1.062-2.598-2.882-6.503-2.882-4.388 0-8.209 3.489-8.209 8.456 0 4.766 3.475 8.532 8.266 8.532 3.855 0 5.572-2.017 6.54-3.129l-2.831-2.969c0 .001-1.415 1.794-3.576 1.794M18.283 0v9.988h-2.064a1.92 1.92 0 1 0 0 3.84h2.064V24h5.205V0z"/></svg>����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/castro.svg�����������������������������������0000664�0000000�0000000�00000000566�14753064456�0025125�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.372 0 0 5.373 0 12s5.372 12 12 12c6.627 0 12-5.373 12-12S18.627 0 12 0m-.002 13.991a2.052 2.052 0 1 1 0-4.105 2.052 2.052 0 0 1 0 4.105m4.995 4.853-2.012-2.791a5.084 5.084 0 1 0-5.982.012l-2.014 2.793A8.526 8.526 0 0 1 11.979 3.42a8.526 8.526 0 0 1 8.526 8.526 8.51 8.51 0 0 1-3.512 6.898"/></svg>������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/caterpillar.svg������������������������������0000664�0000000�0000000�00000001026�14753064456�0026124�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.901 11.554.802-4.1.798 4.1zm2.869-6.52h-4.15L8.2 15.884l4.503-3.635 4.695 3.934zm-2.067 8.156-7.509 6.072H19.95zM24 5.02v2.77h-2.066v11.45h-.882l-2.436-2.04V7.79h-2.057V5.02zM6.872 16.864c.548-.458.642-1.024.642-1.532V13.2h-2.98v2.894a.75.75 0 0 1-.748.751c-.414 0-.722-.336-.722-.75V7.893c0-.414.308-.75.722-.75a.75.75 0 0 1 .749.75v2.913H7.51V7.785c0-1.67-1.092-3.044-3.75-3.047-2.728 0-3.76 1.38-3.76 3.05v8.563c0 1.655 1.314 2.907 2.995 2.907h.922Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cbc.svg��������������������������������������0000664�0000000�0000000�00000001307�14753064456�0024353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c-1.567 0-2.938.84-3.685 2.094l7.368.002A4.28 4.28 0 0 0 12 0m0 2.768a4.29 4.29 0 0 0-4.291 4.287h8.578A4.287 4.287 0 0 0 12 2.768m-4.953.209A4.076 4.076 0 0 0 2.97 7.05h4.076zm9.904.002V7.05l4.072.002a4.073 4.073 0 0 0-4.072-4.075zm-9.904 4.73a4.29 4.29 0 0 0 0 8.578zm9.904 0v8.578a4.29 4.29 0 1 0 0-8.578m-4.955.002a4.288 4.288 0 1 0 .002 8.576 4.288 4.288 0 0 0-.002-8.576m-9.9.603a4.288 4.288 0 0 0-.002 7.371zm19.808 0 .002 7.371a4.29 4.29 0 0 0-.002-7.37M7.047 16.95l-4.074.002a4.07 4.07 0 0 0 4.074 4.07zm9.904 0v4.07a4.07 4.07 0 0 0 4.072-4.068zm-9.242.002a4.29 4.29 0 0 0 8.578 0zm.549 4.953a4.286 4.286 0 0 0 7.371 0z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cbs.svg��������������������������������������0000664�0000000�0000000�00000000704�14753064456�0024373�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 24C5.314 24 .068 18.587.068 11.949.068 5.413 5.314 0 12 0s11.932 5.413 11.932 11.949C23.932 18.587 18.686 24 12 24m0-5.106c5.452 0 9.36-3.473 11.109-6.945C21.875 9.294 18.172 5.106 12 5.106c-5.452 0-9.36 3.37-11.109 6.843C2.537 15.42 6.548 18.894 12 18.894m0-.613c-3.497 0-6.377-2.86-6.377-6.332S8.503 5.617 12 5.617s6.377 2.86 6.377 6.332c0 3.574-2.88 6.332-6.377 6.332"/></svg>������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ccc.svg��������������������������������������0000664�0000000�0000000�00000001227�14753064456�0024355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3.4C5.814 3.4.8 7.253.8 12c0 4.75 5.014 8.6 11.2 8.6s11.2-3.85 11.2-8.6c0-4.747-5.015-8.6-11.2-8.6M24 12c0 5.19-5.374 9.4-12 9.4S0 17.19 0 12s5.374-9.4 12-9.4S24 6.81 24 12M10 7c-2.83 0-5.026 2.229-5.026 5 0 2.882 2.487 4.997 5.026 4.997V15.44c-1.708 0-3.442-1.36-3.445-3.44C6.547 9.65 8.476 8.544 10 8.544zm3.8 0c-2.83 0-5.026 2.229-5.026 5 0 2.882 2.484 4.997 5.026 4.997V15.44c-1.705 0-3.442-1.36-3.447-3.44-.007-2.35 1.923-3.456 3.447-3.456zm3.8.003c-2.83 0-5.026 2.23-5.026 4.997 0 2.886 2.487 5 5.026 5v-1.56c-1.708 0-3.442-1.358-3.448-3.44-.005-2.35 1.924-3.456 3.448-3.456z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ccleaner.svg���������������������������������0000664�0000000�0000000�00000003007�14753064456�0025377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.939.934C8.876.934 3.962 5.888 3.962 12q0 .751.097 1.477a11 11 0 0 0 1.956-1.9l-.129-.083L7.66 9.082s.28-.336.683-.336c.13 0 .264.028.387.076.123.049.99.411 1.588.66L13.7 2.297s.33-.682 1.05-.68c.168 0 .342.036.565.125.222.09.428.267.543.475s.138.424.127.598c-.02.184-.097.358-.145.537L14.2 7.47c.358-.06.577-.067.816-.067.427 0 2.571.1 4.37 2.02.108.116.214.255.318.351.168.17.444.198.62-.017l3.311-3.865c.155-.18.131-.46.01-.635a11 11 0 0 0-3.758-3.139A10.85 10.85 0 0 0 14.94.934m-.19 1.183a.65.65 0 0 0-.588.373l-3.593 7.635c.01.004-1.72-.717-2.012-.834a.6.6 0 0 0-.213-.045.34.34 0 0 0-.273.121L6.605 11.36s4.58 2.923 4.69 3.014c.108.091.224.1.224.1l2.539.484s.3-2.378.365-2.8c.066-.443-.246-.524-.246-.524l-1.865-.78 3.064-7.687s.39-.697-.283-.978a1 1 0 0 0-.344-.07M6.445 11.85c-.74.944-2.882 3.292-6.393 4.007 0 0-.08.023-.04.211.039.19.492 1.652 1.862 3.057 0 0 .33.356.754.469.422.113 1.21.085 1.654 0 0 0-.192.173-.933.656a.104.104 0 0 0-.043.117c.018.062.08.144.234.254.29.208 1.243.799 1.856 1.037 0 0 .216.15 1.103.152h.826l.637-.357-.295.358s.91.023 1.658-.125a1.7 1.7 0 0 0 .614-.254c.695-.465 2.362-1.952 3.701-6.045l-2.209-.422a1 1 0 0 1-.457-.21c.028.024-.661-.44-4.53-2.905m13.252 2.418c-1.435 2.233-4.15 2.315-4.58 2.324a5 5 0 0 1-1.32-.15c-1.308 3.51-2.843 4.912-3.58 5.406a2 2 0 0 1-.13.08c1.463.729 3.11 1.138 4.852 1.138 3.589 0 6.76-1.75 8.764-4.433.268-.374.29-.449.296-.56a.5.5 0 0 0-.132-.352l-3.444-3.512c-.37-.41-.705-.002-.726.059"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cdprojekt.svg��������������������������������0000664�0000000�0000000�00000005774�14753064456�0025625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.942 20.154c-.687.323-1.719.302-2.986-.072l.213.547-.389-.226-1.537-.907h.001l-.033-.158c.572.171 3.535 1.169 4.731.816M7.929 22.045c-.127.229.179.645.179.645-.687-.534-1.276.346-1.276.346-.039-.385.397-.669.397-.669-.715.113-1.549.78-1.549.78-.097-.333.319-.556.319-.556 0-.263.361-.236.763-.347l.919-.252q.006-.007.011-.013c0-.002.303-.348.671-.745.291-.31.614-.648.868-.88.118.018.226.031.294.037-.243.199-.651.62-.999.994-.26.28-.487.536-.597.66m2.239-7.962 8.822 6.05q-.021.009-.042.018l-.328-.129-.29-.118h-.001l-.019-.009c-.772-.317-2.27-.951-4.634-2.041a266 266 0 0 1-5.028-2.388l.001.002-.002-.002 4.363 3.974.006.004.011.011h.002l.256.211-1.153.348-.006-.018-.017-.051-.009-.025-.018-.05-.009-.023-.032-.073-.202.094c.09.197.121.356.121.482a.67.67 0 0 1-.109.353 1 1 0 0 1-.071.086l.064.088q-.005.017-.014.035c-.341.545-.652 1.308-.786 1.653l-.069.183-.001.005c.227.009.767.073.627.504l-.122.444c-.268-.478-.154-.606-.154-.606-.781-.201-2.357.905-2.357.905.052-.411.506-.697.768-.847-.221-.026-.494.165-.64.283a1.1 1.1 0 0 1 .539-.522l-.003-.004c.359-.135.712-.069.753-.029l-.002.001c.122-.038.131-.043.241-.068.036-.026.071-.112.088-.158.001-.005.363-1.014.81-1.774-.217-.021-.388-.274-.388-.581l.002-.055a6.4 6.4 0 0 1-1.484.043q-.024-.001-.049-.005v.001a6.068 6.068 0 0 1-2.769-.94l.002.01s-1.279-.682-1.551-2.233l-.309.195c0-1.39.238-2.365.563-3.111l-.38.037.38-.534q-.074.153-.143.332l.233-.039V14q.07-.142.138-.27.136-.252.295-.484c.024-.035.069-.098.111-.152a3.28 3.28 0 0 1 .424-.466c.041-.037.114-.096.147-.12l-.229 1.072c.669-.832 1.912-2.075 2.535-2.665a3.3 3.3 0 0 0-.386-.581l-.584.429-.025.019s-.416.314-.565.412a.54.54 0 0 1-.722-.09.507.507 0 0 0 .685-.024.47.47 0 0 0 .147-.343.5.5 0 0 0-.038-.191.5.5 0 0 0-.214-.23h.002s-.104-.06-.082-.158c.022-.099.206-.291.206-.291l.225-.229.36-.367.777-.79.077-.087-.682.292-.002-.006c0-.009.006-.037.053-.123.065-.119.22-.335.224-.343l.001-.001-1.265.904v-.002c.074-.35.824-1.365.858-1.412l-.83.761-.003-.006c-.043-.258.371-1.141.428-1.261l.005-.01c-.302.301-.52.628-.527.636 0-.291.223-.709.223-.709a4 4 0 0 0-.182.193c-.868.978-1.119 2.122-1.187 2.566l-.001.001c-.145.089-.056-.02-.126.148-.256.073-.47.202-.642.346a2.3 2.3 0 0 0-.513.605 2 2 0 0 1 .105-.119c.53-.554 1.142-.494 1.142-.494s.682 1.26.542 1.405q-.022.022-.072.006c-.09-.031-.149-.017-.182.024-.105.117-.009.454-.008.462l-1.809-.778c.858-.318 1.47-.1 1.47-.1 0 .212.48.184.48.184v-.001h.001c0-.196-.365-.43-.365-.43s-.327.136-.716 0a.6.6 0 0 0-.242-.034 1 1 0 0 0-.217.038c-.206.059-.357.174-.357.174v-.001l-.002.001 1.131-4.139.119 1.591L8.06 3.367l.039 4.037L14.354 0l-3.847 8.316.023.041 2.713-1.954-.573 1.149 3.793-1.481-3.539 2.585 6.612-.81-8.021 3.471 4.105-1.001zm1.344-2.764zl-.001-.004zm-1.997.862a5.8 5.8 0 0 0-.371-1.076L8.2 13.182zm-2.3-1.094c.208-.071.314-.308.239-.529l-.208.071a.3.3 0 0 1 .022.099q0 .047-.017.086l.095.057a.3.3 0 0 1-.141.12.3.3 0 0 1-.112.022.31.31 0 0 1-.286-.195q-.007-.015-.012-.034l-.092.03c.075.224.305.344.512.273"/></svg>����mkdocs-material-9.6.4/material/templates/.icons/simple/ce.svg���������������������������������������0000664�0000000�0000000�00000000533�14753064456�0024213�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 20.53v-2.59a6 6 0 0 1-.857.06 6 6 0 0 1-5.862-4.714h5.005v-2.571H17.28A6 6 0 0 1 24 6.06V3.47a9 9 0 0 0-.857-.042 8.571 8.571 0 1 0 .857 17.1M0 12a8.57 8.57 0 0 0 9.486 8.524V17.93q-.448.07-.915.07a6 6 0 1 1 .915-11.93V3.477a9 9 0 0 0-.915-.048A8.57 8.57 0 0 0 0 12"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/celery.svg�����������������������������������0000664�0000000�0000000�00000000746�14753064456�0025115�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.303 0A2.3 2.3 0 0 0 0 2.303v19.394A2.3 2.3 0 0 0 2.303 24h19.394A2.3 2.3 0 0 0 24 21.697V2.303A2.3 2.3 0 0 0 21.697 0zm8.177 3.072c4.098 0 7.028 1.438 7.68 1.764l-1.194 2.55c-2.442-1.057-4.993-1.41-5.672-1.41-1.574 0-2.17.922-2.17 1.763v8.494c0 .869.596 1.791 2.17 1.791.679 0 3.23-.38 5.672-1.41l1.194 2.496c-.435.271-3.637 1.818-7.68 1.818-1.112 0-4.64-.244-4.64-4.64V7.713c0-4.397 3.528-4.64 4.64-4.64z"/></svg>��������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/celestron.svg��������������������������������0000664�0000000�0000000�00000000667�14753064456�0025632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .002c-6.627 0-12 5.371-12 12s5.373 11.996 12 11.996c1.745 0 3.403-.37 4.898-1.041-6.14-1.718-14.62-5.632-13.648-13.426.64-5.134 7.215-8.46 13.805-8.414A11.9 11.9 0 0 0 12 .002m5.43 1.844c-5.092-.05-9.306 2.04-9.688 5.556-.604 5.596 7.155 8.809 11.844 10.141.906.26 1.897.42 2.768.523A11.95 11.95 0 0 0 24 12.002a12 12 0 0 0-5.541-10.117 19 19 0 0 0-1.03-.04"/></svg>�������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/centos.svg�����������������������������������0000664�0000000�0000000�00000002272�14753064456�0025121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.076.066 8.883 3.28H3.348v5.434L0 12.01l3.349 3.298v5.39h5.374l3.285 3.236 3.285-3.236h5.43v-5.374L24 12.026l-3.232-3.252V3.321H15.31zm0 .749 2.49 2.506h-1.69v6.441l-.8.805-.81-.815V3.28H9.627zm-8.2 2.991h4.483L6.485 5.692l4.253 4.279v.654H9.94L5.674 6.423l-1.798 1.77zm5.227 0h1.635v5.415l-3.509-3.53zm4.302.043h1.687l1.83 1.842-3.517 3.539zm2.431 0h4.404v4.394l-1.83-1.842-4.241 4.267h-.764v-.69l4.261-4.287zm2.574 3.3 1.83 1.843v1.676h-5.327zm-12.735.013 3.515 3.462H3.876v-1.69zM3.348 9.454v1.697h6.377l.871.858-.782.77H3.35v1.786L.753 12.01zm17.42.068 2.488 2.503-2.533 2.55v-1.796h-6.41l-.75-.754.825-.83h6.38zm-9.502.978.81.815.186-.188.614-.618v.686h.768l-.825.83.75.754h-.719v.808l-.842-.83-.741.73v-.707h-.7l.781-.77-.188-.186-.682-.672h.788zm-7.39 2.807h5.402l-3.603 3.55-1.798-1.772zm6.154 0h.708v.7l-4.404 4.338 1.852 1.824h-4.31v-4.342l1.798 1.77zm3.348 0h.715l4.317 4.343.186-.187 1.599-1.61v4.316h-4.366l1.853-1.825-.188-.185-4.116-4.054zm1.46 0h5.357v1.798l-1.785 1.796zm-2.83.191.842.829v6.37h1.691l-2.532 2.495-2.533-2.495h1.79V14.23zm-1.27 1.251v5.42H8.939l-1.852-1.823zm2.64.097 3.552 3.499-1.853 1.825h-1.7z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ceph.svg�������������������������������������0000664�0000000�0000000�00000003333�14753064456�0024544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.959.257A11.9 11.9 0 0 0 3.503 3.76 11.92 11.92 0 0 0 0 12.217a11.9 11.9 0 0 0 1.207 5.243c.72 1.474 1.888 2.944 3.208 4.044.86-.47 1.35-.99 1.453-1.545.1-.533-.134-1.107-.737-1.805a9.03 9.03 0 0 1-2.219-5.937c0-4.988 4.058-9.047 9.047-9.047h.08c4.99 0 9.048 4.059 9.048 9.047a9.03 9.03 0 0 1-2.218 5.936c-.599.693-.84 1.292-.735 1.83.108.556.595 1.068 1.449 1.522 1.322-1.1 2.489-2.57 3.209-4.046A11.9 11.9 0 0 0 24 12.217a11.93 11.93 0 0 0-3.503-8.457A11.92 11.92 0 0 0 12.04.257h-.041zm-.005 4.837a7.07 7.07 0 0 0-3.76 1.075A7.2 7.2 0 0 0 6.15 8.093a7.2 7.2 0 0 0-1.161 2.65 7.2 7.2 0 0 0 .04 3.125 7.1 7.1 0 0 0 1.22 2.607c.154.207.326.396.509.597l.185.202.005.006q.012.01.026.027c.635.738.957 1.533.957 2.36a3.4 3.4 0 0 1-1.788 2.989 12 12 0 0 0 2.685 1.087c.14-.088.614-.441 1.077-1.083a4.9 4.9 0 0 0 .94-2.99 6.6 6.6 0 0 0-.49-2.37 6.7 6.7 0 0 0-1.302-2.033l-.002-.004-.124-.142c-.21-.245-.428-.497-.602-.792a4.1 4.1 0 0 1-.462-1.135 4.26 4.26 0 0 1-.024-1.85 4.25 4.25 0 0 1 .686-1.564 4.22 4.22 0 0 1 3.432-1.773h.085a4.2 4.2 0 0 1 3.432 1.773c.33.466.568 1.007.686 1.565a4.3 4.3 0 0 1-.023 1.849 4.1 4.1 0 0 1-.463 1.135c-.173.295-.391.547-.602.792l-.123.142-.004.004a6.7 6.7 0 0 0-1.301 2.033 6.6 6.6 0 0 0-.49 2.37 4.9 4.9 0 0 0 .94 2.99c.463.642.937.995 1.076 1.083a11.8 11.8 0 0 0 2.687-1.087 3.4 3.4 0 0 1-1.789-2.988c0-.817.313-1.59.956-2.359q.015-.018.027-.03l.006-.004.184-.204c.183-.2.355-.39.51-.596a7.1 7.1 0 0 0 1.22-2.608 7.2 7.2 0 0 0 .04-3.124 7.2 7.2 0 0 0-1.16-2.65 7.2 7.2 0 0 0-2.044-1.924 7.07 7.07 0 0 0-3.762-1.075h-.09zM12 9.97a2.365 2.365 0 0 0-2.362 2.361A2.364 2.364 0 0 0 12 14.691a2.363 2.363 0 0 0 2.36-2.36A2.364 2.364 0 0 0 12 9.968z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cesium.svg�����������������������������������0000664�0000000�0000000�00000001503�14753064456�0025107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.028 10.216c-.396 0-.778.22-1.079.617l-3.775 4.994c-.625.827-1.513 1.301-2.436 1.301h-.014c-.924 0-1.812-.474-2.436-1.301l-3.775-4.994c-.3-.397-.682-.617-1.08-.617-.395 0-.78.22-1.078.617l-3.777 4.994c-.62.82-1.5 1.294-2.414 1.301C3.088 21.186 7.211 24 12 24c6.627 0 12-5.372 12-11.999a12 12 0 0 0-.086-1.382c-.264-.26-.57-.403-.886-.403M16.01 7.619a1.254 1.254 0 1 1 0-2.507 1.254 1.254 0 0 1 0 2.507M12.001 0C5.373 0 0 5.371 0 12.001c0 1.054.15 2.07.406 3.046.227.175.479.276.737.276.398 0 .78-.218 1.08-.613L6 9.714c.623-.829 1.513-1.302 2.434-1.302s1.81.473 2.435 1.302l3.633 4.803.156.193c.3.394.681.61 1.074.613.392-.003.774-.22 1.072-.613l.16-.193 3.632-4.803c.624-.829 1.512-1.302 2.433-1.302.147 0 .294.016.437.038C21.952 3.556 17.392 0 12.001 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/chai.svg�������������������������������������0000664�0000000�0000000�00000002472�14753064456�0024534�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.224 5.831 12.23.061a.46.46 0 0 0-.462 0l-9.992 5.77a.46.46 0 0 0-.231.4v11.538c0 .165.088.318.23.4l9.993 5.77a.46.46 0 0 0 .462 0l9.993-5.77a.46.46 0 0 0 .23-.4V6.231a.46.46 0 0 0-.23-.4m-.63 11.708L12 23.077l-9.593-5.539V6.462L12 .923l9.593 5.539zM11.295 8.185q.581-.416 1.213-.659c.632-.243.843-.243 1.263-.243q.39 0 .727.113.338.114.584.328c.246.214.294.32.39.532q.142.318.142.727 0 .494-.195.98-.195.487-.522.902c-.327.415-.47.52-.756.727s-.582.357-.89.448l-.136-.227a2 2 0 0 0 .5-.35 2.3 2.3 0 0 0 .39-.484q.161-.27.25-.571a2.2 2.2 0 0 0 .087-.614q0-.357-.104-.675a1.6 1.6 0 0 0-.305-.555 1.4 1.4 0 0 0-.496-.373 1.6 1.6 0 0 0-.679-.136q-.467 0-.856.182-.39.18-.701.49c-.311.31-.389.44-.542.707a5 5 0 0 0-.383.837 5.6 5.6 0 0 0-.23.886q-.078.448-.078.844 0 .402.084.83c.084.429.139.568.247.845q.162.415.402.785t.555.649a2.6 2.6 0 0 0 .7.445q.388.165.841.165.312 0 .607-.084a3 3 0 0 0 .568-.228 3.2 3.2 0 0 0 .516-.337 4 4 0 0 0 .451-.422l.215.208q-.285.376-.679.723a5.5 5.5 0 0 1-.847.617 4.6 4.6 0 0 1-.95.428 3.2 3.2 0 0 1-.984.16q-.474 0-.892-.166-.42-.165-.77-.448a2.8 2.8 0 0 1-.626-.662q-.275-.38-.467-.808c-.192-.428-.225-.58-.292-.883s-.101-.599-.101-.889q0-.63.21-1.295c.21-.665.335-.874.582-1.291s.537-.813.873-1.185a6.7 6.7 0 0 1 1.084-.973"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/chainguard.svg�������������������������������0000664�0000000�0000000�00000002504�14753064456�0025731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.996 16.329c-.109-1.123-3.387-1.488-5.717-2.501.51-1.017 1.283-2.168.949-4.286C18.782 6.725 16.358 1.74 12 1.74s-6.782 4.98-7.228 7.8c-.334 2.119.443 3.27.949 4.287C3.395 14.84.116 15.21.004 16.328c-.102 1.039 1.89 1.418 4.136 1.283-.566.691-1.009 1.346-.974 1.818.056.79.896 1.303 2.22 1.303 1.484 0 3.775-.939 4.32-3.475 0 0-.225 1.017-.102 1.99C9.75 20.41 10.623 22.26 12 22.26s2.249-1.85 2.396-3.011c.123-.974-.101-1.991-.101-1.991.544 2.536 2.832 3.475 4.318 3.475 1.325 0 2.165-.514 2.22-1.303.036-.472-.41-1.13-.972-1.818 2.245.135 4.237-.244 4.135-1.282M7.436 5.953c-.26-.223-.19-.705.154-1.077.345-.372.836-.496 1.096-.273s.19.705-.154 1.077-.836.493-1.096.273m2.371 6.419c-1.071 0-1.94-.875-1.94-1.955s.869-1.956 1.94-1.956c1.072 0 1.94.875 1.94 1.955a1.95 1.95 0 0 1-1.94 1.956m1.185-7.701c-.756.34-1.56.223-1.8-.259-.238-.485.18-1.151.935-1.491s1.56-.224 1.8.258c.238.482-.18 1.152-.935 1.492m5.218 7.7a1.947 1.947 0 0 1-1.94-1.955c0-1.08.868-1.955 1.94-1.955 1.071 0 1.94.875 1.94 1.955a1.95 1.95 0 0 1-1.94 1.956m.158-1.969.713-.846a1.2 1.2 0 0 0-.871-.372c-.675 0-1.22.549-1.22 1.229s.545 1.23 1.22 1.23 1.219-.55 1.219-1.23v-.01zm-5.345 0v.011c0 .68-.544 1.23-1.22 1.23-.674 0-1.218-.55-1.218-1.23s.544-1.23 1.219-1.23c.34 0 .65.142.871.373l-.713.846Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/chainlink.svg��������������������������������0000664�0000000�0000000�00000000376�14753064456�0025571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0 9.798 1.266l-6 3.468L1.596 6v12l2.202 1.266 6.055 3.468L12.055 24l2.202-1.266 5.945-3.468L22.404 18V6l-2.202-1.266-6-3.468zM6 15.468V8.532l6-3.468 6 3.468v6.936l-6 3.468z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/chakraui.svg���������������������������������0000664�0000000�0000000�00000000606�14753064456�0025414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.352 0 0 5.352 0 12s5.352 12 12 12 12-5.352 12-12S18.648 0 12 0m2.8 4.333c.13-.004.248.136.171.278l-3.044 5.58a.187.187 0 0 0 .164.276h5.26c.17 0 .252.207.128.323l-9.22 8.605c-.165.154-.41-.063-.278-.246l4.364-6.021a.187.187 0 0 0-.151-.296H6.627a.187.187 0 0 1-.131-.32l8.18-8.123a.18.18 0 0 1 .125-.056z"/></svg>��������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/channel4.svg���������������������������������0000664�0000000�0000000�00000000571�14753064456�0025322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.309 0-.33.412v4.201l2.382-2.95zm-1.155 1.201L10.707 4.22v8.674h2.447zm3.268 1.701-2.443 3.02v14.81h2.443zM9.887 5.236l-6.201 7.657h3.142L9.887 9.12Zm-6.766 8.48v2.444h10.033v-2.443Zm14.125 0v2.444h3.633v-2.443Zm-6.539 3.268V24h2.443v-7.016Zm-3.271 4.573V24h2.443v-2.443zm6.543 0V24h5.189v-2.443z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/charles.svg����������������������������������0000664�0000000�0000000�00000015744�14753064456�0025257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.494.713c-.103.011-.385.049-.623.076-.24.028-.705.11-1.04.175l-.61.122-.883-.132C5.706.713 3.694.74 2.252 1.02c-1.464.278-2.45.802-2.218 1.173.033.055.358.34.72.634 1.536 1.24 2.296 2.18 2.734 3.398.228.633.31 1.114.304 1.885-.005.901-.114 1.376-.732 3.24-.27.813-.564 1.802-.65 2.194-.142.65-.158.804-.158 1.749 0 1.022.043 1.431.24 2.245a6.6 6.6 0 0 0 1.896 3.218c.337.306.45.442.43.518-.05.175.09.475.32.71.584.59 1.886 1.093 3.27 1.257.71.087 2.18.076 2.862-.022.53-.076 1.47-.301 1.746-.41.59-.24 1.117-.557 1.383-.83.444-.453.45-.464.417-.732-.032-.224-.022-.246.168-.388.255-.19 1.07-1.017 1.29-1.306.2-.262.576-.906.69-1.19.103-.24.14-.246.31-.066.367.394 1.12.721 1.528.667.352-.05.596-.361.406-.52-.037-.032-.265-.14-.51-.245a4.335 4.082 0 0 1-.64-.339l-.2-.158.022-.41c.032-.71.25-1.022 1.93-2.78 1.345-1.41 1.595-1.694 2.148-2.442.58-.782.884-1.278 1.247-2.049.727-1.551.976-3.239.662-4.485-.5-1.982-2.392-3.468-4.398-3.452-1.128.006-2.093.427-3.107 1.35-.575.524-.69.475-.526-.213.097-.432.08-.629-.082-.956-.325-.65-1.6-1.262-3.064-1.476-.46-.066-1.876-.114-2.196-.075zm9.962 3.02c1.106.34 2.022 1.29 2.326 2.41.2.753.054 2.141-.342 3.223a11.632 10.954 0 0 1-1.014 1.978c-.33.501-1.3 1.704-1.85 2.283a43.744 41.193 0 0 0-1.512 1.682c-.303.36-.51.557-.57.546-.075-.016-.09-.141-.118-.89a19.086 17.973 0 0 0-.917-4.916c-.206-.59-.26-.951-.157-1.016.043-.028.314-.05.602-.05.336 0 .537-.021.564-.06.022-.037-.13-.23-.374-.464-.423-.41-.586-.66-.722-1.11-.168-.556-.032-1.458.304-2.052.477-.836 1.388-1.503 2.283-1.661.4-.072 1.09-.028 1.497.098M11.569 7.34c.098.033.25.115.342.192.12.103.2.13.31.109.226-.05.747.207.866.414.05.094.136.224.19.29.08.098.098.175.07.4-.026.24-.01.31.104.48a.76.76 0 0 1 .135.442c0 .192.016.236.082.213a.178.168 0 0 0 .08-.136c0-.197.158-.486.294-.547a.8.8 0 0 1 .38-.027c.227.038.25.05.227.175-.016.076.01.17.06.213.076.082.076.092-.017.164-.092.066-.097.093-.038.245.066.176.066.176-.086.149-.087-.017-.168-.023-.185-.006-.016.016.017.202.076.41.136.486.13.622-.027 1.054-.103.29-.12.404-.08.59.08.431.053 1.572-.06 2.283a14.166 13.34 0 0 1-.38 1.72c-.228.798-.483 2.279-.472 2.743.005.246.027.459.043.476s.125-.104.233-.263c.24-.35.45-.525.852-.705.162-.071.34-.185.396-.25.157-.176.254-.153.195.048-.027.088-.033.164-.022.164.016 0-.016.066-.076.153-.054.082-.13.257-.168.393a1.5 1.5 0 0 1-.18.4c-.08.114-.091.174-.048.218.044.043.14-.028.37-.268.346-.355.53-.579.563-.666.043-.115.602-.667.645-.64.027.017.06.006.082-.027.086-.141.12-.016.114.4l-.01.447-.294.323a56 56 0 0 1-.786.84c-.266.28-.624.662-.787.841a4.493 4.231 0 0 1-.596.536c-.298.202-.927.447-1.33.525a3 3 0 0 0-.324.066c-.255.059-2.863.07-3.525.009a31.86 30.002 0 0 0-.873-.075.816.768 0 0 1-.217-.045.532.501 0 0 0-.21-.033c-.52-.01-.94-.114-1.227-.31-.114-.077-.27-.137-.347-.137s-.135-.028-.135-.055c0-.032-.038-.054-.082-.054-.043 0-.08-.028-.08-.055 0-.033-.028-.054-.06-.054-.066 0-.288-.198-.608-.542-.125-.13-.31-.322-.4-.42-.1-.099-.18-.198-.18-.218 0-.029-.05-.094-.11-.158-.216-.23-.324-.356-.297-.356.01 0-.027-.104-.08-.23-.213-.47-.088-.508.19-.07.107.163.226.3.264.3.103 0 .336.284.494.601.07.142.255.393.4.562l.278.302.233-.056c.124-.033.25-.082.276-.103.065-.06-.18-.4-.667-.923-.4-.432-.504-.607-.325-.563.06.016.12.049.13.076.016.022.114.028.212.011a.994.936 0 0 1 .433.055c.206.07.25.07.25.01 0-.043-.022-.092-.054-.109-.028-.016-.044-.11-.033-.207a.732.69 0 0 0-.184-.476c-.017-.016-.033-.115-.044-.218l-.016-.186.152.137c.087.076.233.175.33.213.098.037.25.153.33.257.148.175.169.185.39.152.132-.021.257-.049.278-.059.033-.023.3.087.602.24.022.01.038 0 .038-.028 0-.026-.087-.092-.19-.141-.238-.115-.238-.186-.005-.23.222-.043.347-.01.72.18.305.153.419.137.26-.044-.123-.14-.07-.3.072-.212.18.114.293.393.282.71-.01.41-.01.405.114.29q.106-.099.076-.214c-.212-.716-.25-1.01-.288-2.19l-.01-.285-.18.066a3 3 0 0 0-.44.218c-.33.197-.622.23-1.007.12-.163-.043-.43-.12-.59-.164-.164-.044-.316-.115-.338-.153-.103-.158-.113-.42-.027-.546.12-.17.11-.208-.07-.208-.08 0-.222-.021-.31-.049a2.013 1.896 0 0 0-.39-.082 1.48 1.394 0 0 1-.276-.054c-.022-.018-.224-.044-.446-.066-.217-.016-.428-.06-.466-.088-.076-.06-.054-.19.06-.42.048-.093.075-.17.054-.17-.022 0 0-.037.038-.092a.316.298 0 0 0 .07-.12c-.032-.142.37-.88.548-1.022.18-.136.537-.235.835-.24h.19l-.14-.153c-.29-.306-.375-.568-.36-1.104.017-.628.05-.661.755-.786.72-.132.894-.082 1.247.35.087.103.12.12.14.06.06-.159.283-.334.413-.334.076 0 .304.099.504.218.206.121.396.219.43.219.107.006.487.339.633.552.14.218.21.536.222 1.017 0 .19.033.282.125.365.157.147.217.36.233.808.01.323 0 .382-.114.497-.135.137-.553.236-.743.176-.12-.038-.146.097-.195 1.01-.05.895.076 1.945.288 2.43l.157.368.206-.225.206-.225.087.132c.076.11.108.126.195.076.12-.06.293-.262.298-.333 0-.027-.027-.027-.054-.011-.033.017-.054.006-.054-.027 0-.032-.033-.055-.065-.05-.125.018-.423-.07-.423-.125 0-.028-.022-.037-.054-.017-.066.045-.49-.343-.49-.447 0-.066.018-.071.077-.022.044.038.136.05.212.033.087-.022.195.005.314.076.38.235.418.126.082-.223-.27-.29-.347-.48-.44-1.126-.027-.19.05-.235.13-.071.033.054.17.158.304.224.353.175.727.655.922 1.196.157.438.25.53.418.438.05-.029.103-.143.124-.252.022-.115.136-.497.25-.852.266-.787.325-1.3.184-1.459-.07-.082-.157-.109-.33-.098-.402.01-.64-.24-.722-.781-.054-.34-.005-.371.537-.394.44-.021.602.05.84.367.12.163.142.235.12.425-.11.951-.168 1.29-.315 1.82-.092.327-.18.7-.195.813-.027.192-.022.207.07.17.06-.028.207-.055.337-.071l.233-.022-.173.245c-.217.312-.19.4.12.39.178-.007.232-.03.243-.11.005-.06.027-.263.043-.46.033-.327.13-.764.418-1.857.06-.224.14-.546.18-.71.042-.164.096-.36.123-.437.093-.23.244-1.092.342-1.928.05-.426.038-1.224-.022-1.278-.06-.06-.146.279-.103.393.06.136.055.18-.108.945-.103.48-.157.64-.255.71-.065.049-.19.158-.277.246-.086.082-.2.148-.254.148-.098-.006-.337-.34-.472-.673-.044-.109-.103-.207-.136-.228-.12-.078-.282-.793-.26-1.153.022-.382.005-.405-.255-.257-.32.18-1.49.06-1.535-.158-.005-.045.066-.187.17-.323.275-.366.427-.857.313-1-.05-.054-.038-.081.033-.114.092-.033.092-.038.005-.088-.157-.088-.108-.147.11-.141.194.01.2.004.21-.198.01-.223.184-.55.315-.605.054-.017.08-.11.08-.263 0-.18-.015-.213-.064-.164-.12.12-.45.076-.63-.088a1.98 1.865 0 0 0-.363-.256c-.2-.103-.27-.19-.683-.842a5.034 4.74 0 0 0-.396-.518c-.108-.114-.19-.235-.18-.273q.028-.059.45-.044a5 5 0 0 0 .864-.066c.542-.092.764-.103.992-.038m-3.427.41q.106.081.325.05c.2-.028.233-.017.266.087.027.087-.01.18-.152.349-.173.213-.396.35-1.014.634-.466.213-.586.322-.634.552-.027.136-.082.196-.255.273-.125.054-.26.141-.304.202-.157.196-.526.754-.613.917-.076.148-.336.443-.547.612a.328.309 0 0 1-.196.071c-.097 0-.108-.038-.12-.344a35.512 33.441 0 0 0-.021-.541c-.005-.223.098-.426.228-.426.103 0 .098-.087-.005-.132-.12-.043-.098-.305.043-.518l.206-.327a.302.284 0 0 1 .255-.16c.2-.021.195-.004.098-.207a1.672 1.574 0 0 1-.114-.306l-.038-.14.238.08c.125.044.255.104.288.132.087.087.135.055.135-.094 0-.136.028-.169.472-.535.255-.202.575-.295.7-.191.054.044.097.044.146.005.033-.033.152-.065.255-.081.103-.01.206-.028.222-.028.017-.005.076.022.136.066"/></svg>����������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/chartdotjs.svg�������������������������������0000664�0000000�0000000�00000001511�14753064456�0025766�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0 1.605 6v12L12 24l10.395-6V6zm0 1.41 9.172 5.295v10.59L12 22.59l-9.172-5.295V6.705zM5.902 8.334c-1.306 0-1.983.956-2.574 2.41v6.262L12 22.014l8.672-5.008v-5.971c-.447-.264-.894-.412-1.336-.412-4.275 0-3.97 4.885-6.717 5.8-2.748.917-3.511-8.089-6.717-8.089m12.364.457c-2.9 0-2.137 4.732-5.342 4.732-1.63 0-2.52-1.317-3.477-1.981.148.326.3.655.442.98.467 1.068.922 2.09 1.379 2.734.228.322.455.541.644.644a.6.6 0 0 0 .549.05c.558-.187.968-.571 1.36-1.112.39-.541.74-1.228 1.154-1.916s.894-1.385 1.59-1.918c.695-.534 1.607-.881 2.77-.881.465 0 .908.136 1.337.352v-.121c-.633-.849-1.348-1.563-2.406-1.563m-6.68.152c-.868 0-1.491.82-2.076 2.06.094.055.192.106.277.167 1.06.761 1.798 1.853 3.137 1.853.678 0 1.067-.218 1.418-.585-.722-1.546-1.432-3.492-2.756-3.495"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/chartmogul.svg�������������������������������0000664�0000000�0000000�00000000307�14753064456�0025770�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.621 19.89V8.75L2.867 19.89H0V4.11h2.758v11.112l7.754-11.113h2.867v11.14L21.16 4.11H24v15.782h-2.73V8.75l-7.755 11.14Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/chase.svg������������������������������������0000664�0000000�0000000�00000000470�14753064456�0024707�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 15.415c0 .468.38.85.848.85h5.937V.575L0 7.72zm15.416 8.582c.467 0 .846-.38.846-.849v-5.937H.573l7.146 6.785h7.697M24 8.587a.844.844 0 0 0-.847-.846h-5.938V23.43l6.782-7.148zM8.585.003a.847.847 0 0 0-.847.847v5.94h15.688L16.282.003z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/chatbot.svg����������������������������������0000664�0000000�0000000�00000001375�14753064456�0025255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.999 0c-2.25 0-4.5.06-6.6.21a5.57 5.57 0 0 0-5.19 5.1c-.24 3.21-.27 6.39-.06 9.6a5.644 5.644 0 0 0 5.7 5.19h3.15v-3.9h-3.15c-.93.03-1.74-.63-1.83-1.56-.18-3-.15-6 .06-9 .06-.84.72-1.47 1.56-1.53 2.04-.15 4.2-.21 6.36-.21s4.32.09 6.36.18c.81.06 1.5.69 1.56 1.53.24 3 .24 6 .06 9-.12.93-.9 1.62-1.83 1.59h-3.15l-6 3.9V24l6-3.9h3.15c2.97.03 5.46-2.25 5.7-5.19.21-3.18.18-6.39-.03-9.57a5.57 5.57 0 0 0-5.19-5.1c-2.13-.18-4.38-.24-6.63-.24m-5.04 8.76c-.36 0-.66.3-.66.66v2.34c0 .33.18.63.48.78 1.62.78 3.42 1.2 5.22 1.26 1.8-.06 3.6-.48 5.22-1.26.3-.15.48-.45.48-.78V9.42c0-.09-.03-.15-.09-.21a.65.65 0 0 0-.87-.36c-1.5.66-3.12 1.02-4.77 1.05-1.65-.03-3.27-.42-4.77-1.08a.6.6 0 0 0-.24-.06"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/chatwoot.svg���������������������������������0000664�0000000�0000000�00000000372�14753064456�0025455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 12c0 6.629 5.371 12 12 12s12-5.371 12-12S18.629 0 12 0 0 5.371 0 12m17.008 5.29H11.44a5.57 5.57 0 0 1-5.562-5.567A5.57 5.57 0 0 1 11.44 6.16a5.57 5.57 0 0 1 5.567 5.563Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/checkio.svg����������������������������������0000664�0000000�0000000�00000000653�14753064456�0025234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.846 8.886 24 2.932v13.82L9.621 21.068 0 14.09l3.35-9.956zm-4.582 2.067 3.923-1.768-6.065-3.85zm-5.393 2.44 4.842-2.187-2.179-5.717-2.662 7.904zm22.526 2.54V4.256l-5.96 7.37zm-12.865 4.233 12.497-3.758-5.973-4.316zM.94 14.029l8.092 5.867-3.106-8.124zm21.722-9.826c-5.085 2.296-10.163 4.6-15.25 6.895l9.445.284zM9.775 20.143l6.608-8.173-9.844-.29z"/></svg>�������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/checkmarx.svg��������������������������������0000664�0000000�0000000�00000001155�14753064456�0025572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.544.12A6.553 6.553 0 0 0 0 6.664v10.674a6.55 6.55 0 0 0 6.544 6.542h10.912A6.55 6.55 0 0 0 24 17.338v-.831a2.193 2.193 0 0 0-4.388 0v.83c0 1.19-.967 2.157-2.156 2.157H6.544a2.16 2.16 0 0 1-2.158-2.156V6.748c0-1.19.969-2.16 2.158-2.16 3.843.004 7.814-.009 11.612.001.556.138.892.445 1.058.848.193.47.343 1.118-.404 1.748l-6.26 4.596-1.892-2.441a2.19 2.19 0 0 0-3.075-.391 2.19 2.19 0 0 0-.391 3.076l3.198 4.133a2.197 2.197 0 0 0 3.035.424l7.252-5.301a57 57 0 0 0 1.22-.977c2.106-1.926 2.517-4.393 1.627-6.553C22.603 1.51 20.268.12 17.435.12Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/checkmk.svg����������������������������������0000664�0000000�0000000�00000000336�14753064456�0025232�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.187 8.738v3.985l4.883-3.157v8.217l1.925 1.111 1.926-1.111V9.57l4.882 3.158V8.742l-6.808-4.269zM12 0l10.375 5.999V18L12 24 1.625 18.006V6.003z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/chedraui.svg���������������������������������0000664�0000000�0000000�00000004053�14753064456�0025411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.523 4.725a1.4 1.4 0 0 0 0 2.797 1.4 1.4 0 0 0 0-2.797m4.15 1.574a1.326 1.326 0 1 0 0 2.652 1.326 1.326 0 0 0 0-2.652M7.532 7.902a.17.17 0 0 0-.172.17v5.446c0 .094.078.171.172.171h2.498a.17.17 0 0 0 .17-.171v-2.364a.17.17 0 0 1 .293-.119l.404.348a.171.171 0 0 0 .293-.123l-.02-1.674a.17.17 0 0 0-.048-.12L9.576 7.954a.18.18 0 0 0-.123-.05Zm4.192 1.409a.17.17 0 0 0-.17.17v4.125a.17.17 0 0 1-.051.12l-1.111 1.112c-.108.107-.033.293.119.293l3.76.008a.17.17 0 0 0 .171-.17V12.14c0-.153.186-.229.293-.121l1.157 1.156a.17.17 0 0 0 .12.049l1.178-.006a.172.172 0 0 0 .121-.293l-3.543-3.567a.18.18 0 0 0-.123-.048Zm-8.592.125a1.21 1.21 0 1 0 .062 0q-.031-.002-.062 0m15.809 2.08c-.59.03-1.057.519-1.057 1.115a1.114 1.114 0 1 0 1.113-1.115zm-16.596.675a.173.173 0 0 0-.172.172v3.99c0 .095.077.172.172.172h1.873c.094 0 .17-.077.17-.171v-1.532c0-.153.185-.23.293-.123l.613.614a.17.17 0 0 0 .244-.002l.813-.842a.17.17 0 0 0 0-.239l-1.963-1.988a.17.17 0 0 0-.121-.05zm14.797 1.153a.446.446 0 0 0-.446.445c0 .246.2.445.446.445a.4.4 0 0 0 .113-.015l.777.777a.2.2 0 0 1 .043.068l.967 2.989a.17.17 0 0 0 .162.119h.387a.583.583 0 0 0 .27 1.103.586.586 0 0 0 .269-1.103h2.36a.583.583 0 0 0 .269 1.103.586.586 0 0 0 .586-.586.58.58 0 0 0-.315-.517h.371a.17.17 0 0 0 .17-.172l.016-.117a.256.256 0 0 0-.256-.285h-3.758c-.071 0-.132-.043-.136-.098-.035-.139-.085-.275-.127-.412a.124.124 0 0 1 .107-.162h3.975a.35.35 0 0 0 .345-.307L24 14.377a.18.18 0 0 0-.176-.162l-5.682-.006a.12.12 0 0 1-.084-.035l-.478-.45a.444.444 0 0 0-.44-.38m-9.61.857a.17.17 0 0 0-.12.051L2.77 18.926a.172.172 0 0 0 .122.293H4.7a.18.18 0 0 0 .123-.051l4.672-4.674a.17.17 0 0 0-.119-.293Zm2.776 1.387a.17.17 0 0 0-.121.049l-3.264 3.289a.172.172 0 0 0 .12.293h1.804a.17.17 0 0 0 .12-.051l3.243-3.242a.174.174 0 0 1 .244 0l3.242 3.242a.17.17 0 0 0 .12.05h1.788c.153 0 .231-.183.123-.292l-3.265-3.29a.17.17 0 0 0-.123-.048zM2.11 16.912a.17.17 0 0 0-.12.05l-.095.094-1.845 1.87a.172.172 0 0 0 .12.293h1.202a.17.17 0 0 0 .121-.051l1.963-1.963a.17.17 0 0 0-.12-.293z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cheerio.svg����������������������������������0000664�0000000�0000000�00000003156�14753064456�0025246�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.14 15.622c.593.444 1.203.9 1.81 1.356-.415.477-.929.9-1.584 1.307a7.2 7.2 0 0 1-1.64.741 8 8 0 0 1-1.443.31c-.43.054-.88.04-1.22.02a7.4 7.4 0 0 1-3.154-.934 7.05 7.05 0 0 1-2.146-1.869 7 7 0 0 1-1.177-2.223c-.185-.596-.266-1.207-.32-1.727-.079-.742-.003-1.53.238-2.481.2-.799.54-1.532 1.008-2.183.776-1.09 1.74-1.911 2.868-2.44a7.4 7.4 0 0 1 2.321-.672 6 6 0 0 1 .689-.038c.362 0 .76.028 1.227.085a6.3 6.3 0 0 1 1.874.52 7.4 7.4 0 0 1 2.499 1.839 290 290 0 0 1-3.17 2.403 3.33 3.33 0 0 0-1.877-.824c-.894-.096-1.788.156-2.452.691a3.35 3.35 0 0 0-1.247 2.351c-.077.927.22 1.818.834 2.509a3.24 3.24 0 0 0 2.434 1.117 3.35 3.35 0 0 0 2.298-.853zM24 1.8v20.4a1.8 1.8 0 0 1-1.8 1.8H1.8A1.8 1.8 0 0 1 0 22.2V1.8A1.8 1.8 0 0 1 1.8 0h20.4A1.8 1.8 0 0 1 24 1.8m-4.542 14.963-.419-.316a836 836 0 0 0-2.252-1.69q-.848-.634-1.703-1.275l-.398-.299-.33.373c-.503.568-1.098.844-1.814.844h-.018a2.16 2.16 0 0 1-1.639-.755 2.25 2.25 0 0 1-.564-1.701 2.28 2.28 0 0 1 .848-1.6c.443-.357 1.047-.524 1.657-.458s1.148.353 1.513.808l.327.408.418-.314c1.3-.975 2.644-1.983 3.967-3.012l.184-.143.022-.232a.78.78 0 0 0-.242-.633q-.012-.011-.02-.022l-.01-.01a8.5 8.5 0 0 0-3.048-2.326 7.4 7.4 0 0 0-2.191-.608c-.582-.072-1.353-.142-2.165-.049a8.4 8.4 0 0 0-2.66.768c-1.298.609-2.404 1.548-3.287 2.79a7.5 7.5 0 0 0-1.178 2.546c-.273 1.078-.357 1.986-.265 2.86.06.571.15 1.248.363 1.932.277.9.733 1.763 1.355 2.565a8.1 8.1 0 0 0 2.475 2.152 8.45 8.45 0 0 0 3.617 1.07 11 11 0 0 0 .613.018c.254 0 .526-.012.798-.046a9 9 0 0 0 1.637-.351 8.3 8.3 0 0 0 1.886-.854c.952-.592 1.678-1.25 2.22-2.012z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/chef.svg�������������������������������������0000664�0000000�0000000�00000002266�14753064456�0024536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.03 0C6.94 0 2.57 3.17.82 7.65l1.91.77a10 10 0 0 1 9.3-6.4c2.24 0 4.32.77 5.96 1.97l1.2-1.64A11.96 11.96 0 0 0 12.03 0m0 2.3a9.76 9.76 0 0 0-9.08 6.23l1.91.7a7.62 7.62 0 0 1 7.17-4.91zm3.55.7-.76 1.92a7.47 7.47 0 0 1 4.75 5.63h2.08a9.7 9.7 0 0 0-6.07-7.54zm-3.55 1.6a7.44 7.44 0 1 0 7.32 8.9h-2.08a5.5 5.5 0 0 1-5.24 3.94 5.39 5.39 0 0 1-5.42-5.41 5.39 5.39 0 0 1 5.42-5.41 5.4 5.4 0 0 1 5.2 3.93h2.07a7.35 7.35 0 0 0-7.27-5.96zm10.22 1.09L20.5 6.78a9.5 9.5 0 0 1 1.42 3.77H24a11.56 11.56 0 0 0-1.75-4.86M11.97 6.83a5.22 5.22 0 0 0-4.7 7.27l1.97-.87a3 3 0 0 1-.27-1.2c0-1.64 1.36-3.01 3-3.01zm1.92.39-.77 2.02c.66.27 1.15.7 1.53 1.31h2.3a5.04 5.04 0 0 0-3.06-3.33M0 12.02c0 1.65.33 3.29 1.04 4.87l1.8-.82a10.5 10.5 0 0 1-.82-4.04zm2.3 0c0 4.1 2.51 7.6 6.12 9.03l.76-1.92a7.63 7.63 0 0 1-4.86-7.1zm12.3 1.48c-.33.6-.82 1.1-1.48 1.31l.77 2.03a5.04 5.04 0 0 0 3.06-3.34zm4.97 0a7.73 7.73 0 0 1-7.54 6.24v2.02a9.71 9.71 0 0 0 9.62-8.26zm2.35 0a10.1 10.1 0 0 1-9.9 8.53c-2.73 0-5.24-1.15-7.04-2.95L3.55 20.5c2.19 2.19 5.2 3.5 8.53 3.5A12 12 0 0 0 24 13.5zm-12.02.66-1.53 1.53a5.2 5.2 0 0 0 3.66 1.53v-2.19a3.02 3.02 0 0 1-2.13-.87"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/chemex.svg�����������������������������������0000664�0000000�0000000�00000001556�14753064456�0025103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.665.124c-.741 0-1.36.593-1.36 1.334s.619 1.335 1.36 1.335A1.33 1.33 0 0 0 24 1.458 1.33 1.33 0 0 0 22.665.124M1.112.148s5.314 6.748 5.982 7.91c.89 1.557.84 2.076-.124 3.954C6.352 13.2 0 23.876 0 23.876h2.694S8.7 13.668 9.516 12.284c.89-1.508.89-3.164.148-4.474C9.071 6.772 3.831.148 3.831.148zm16.956 0s-5.24 6.624-5.833 7.662c-.717 1.286-.766 2.917.148 4.474.816 1.384 6.822 11.592 6.822 11.592h2.67c0-.024-6.328-10.677-6.946-11.888-.964-1.854-1.013-2.373-.123-3.93.667-1.162 5.98-7.91 5.98-7.91zm4.597.223c.593 0 1.088.494 1.088 1.087 0 .594-.495 1.088-1.088 1.088a1.097 1.097 0 0 1-1.087-1.088A1.08 1.08 0 0 1 22.665.371m-.593.296V2.15h.272v-.519h.37l.273.52h.321l-.297-.544a.45.45 0 0 0 .297-.446c0-.296-.198-.494-.52-.494zm.321.272h.445c.149 0 .223.05.223.222 0 .173-.124.223-.223.223h-.445z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/chessdotcom.svg������������������������������0000664�0000000�0000000�00000001126�14753064456�0026136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a3.85 3.85 0 0 0-3.875 3.846A3.84 3.84 0 0 0 9.73 6.969l-2.79 1.85c0 .622.144 1.114.434 1.649H9.83c-.014.245-.014.549-.014.925q0 .037.006.071c-.064 1.353-.507 3.472-3.62 5.842-.816.625-1.423 1.495-1.806 2.533a.3.3 0 0 0-.045.084 8.1 8.1 0 0 0-.39 2.516c0 .1.216 1.561 8.038 1.561s8.038-1.46 8.038-1.561c0-2.227-.824-4.048-2.24-5.133-4.034-3.08-3.586-5.74-3.644-6.838h2.458c.29-.535.434-1.027.434-1.649l-2.79-1.836a3.86 3.86 0 0 0 1.604-3.123A3.87 3.87 0 0 0 13.445.275c-.004-.002-.01.004-.015.004A3.8 3.8 0 0 0 12 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/chevrolet.svg��������������������������������0000664�0000000�0000000�00000000716�14753064456�0025622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.905 9.784H15.92V8.246a.157.157 0 0 0-.157-.158H8.238a.157.157 0 0 0-.157.158v1.538H2.358c-.087 0-.193.07-.237.158L.02 14.058c-.045.088-.011.157.077.157H8.08v1.54c0 .086.07.157.157.157h7.525c.087 0 .157-.07.157-.157v-1.54h5.723c.087 0 .193-.07.238-.157l2.1-4.116c.045-.087.011-.158-.076-.158m-2.494.996-1.244 2.437h-5.232v1.708H9.07v-1.708H2.595L3.84 10.78h5.232V9.073h5.864v1.707z"/></svg>��������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/chianetwork.svg������������������������������0000664�0000000�0000000�00000002677�14753064456�0026155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.462 4.707c-.061 0-.327.02-.573.04-.43.041-1.042.103-1.145.144-.02 0-.143.02-.245.04-.818.123-1.84.45-2.413.778a1.3 1.3 0 0 1-.245.122c-.123.041-.982.655-1.31.92-2.35 1.922-3.598 4.928-3.066 7.423.061.307.082.307.286.143.348-.245.654-.45 1.063-.695.246-.143 1.309-.654 1.35-.654 0 0 .082-.041.184-.082.94-.43 3.66-1.37 5.03-1.718.041-.02.286-.082.511-.143 1.289-.348 1.514-.409 1.514-.348 0 .02-.082.041-.164.082-.45.164-1.656.654-1.718.695-.02.02-.04.02-.061.02s-.123.042-.246.103-.204.102-.224.102-.123.041-.246.102a2 2 0 0 1-.245.103l-.286.122-.287.123c-.143 0-3.17 1.595-4.13 2.168-.225.122-.41.245-.41.245s-.306.184-1.267.797a56 56 0 0 0-3.926 2.781 6 6 0 0 1-.348.266c-.94.736-1.063.88-.531.593 1.206-.634 2.556-1.268 3.517-1.656a7.6 7.6 0 0 1 1.636-.47l.184-.02.45.45c1.145 1.144 2.372 1.737 4.191 1.982.43.062 1.82.041 2.147-.02.103-.02.307-.061.47-.082.164-.02.348-.061.39-.082.04-.02.183-.04.306-.081 2.086-.552 3.885-1.84 5.48-3.967.041-.041.184-.225.307-.41.143-.183.286-.367.327-.429.04-.04.123-.184.204-.286a47 47 0 0 0 2.74-4.498c.082-.164.225-.41.287-.553s.327-.654.572-1.124c.246-.47.45-.9.45-.92.061-.123.041-.164-.266-.287a4 4 0 0 0-.51-.163c-.246-.082-.532-.164-.635-.205-.409-.143-1.104-.327-1.942-.552-.736-.184-.92-.245-1.207-.307-.143-.02-.286-.06-.327-.081s-.163-.041-.266-.062c-.286-.061-.43-.081-.695-.143-1.022-.225-1.902-.307-3.394-.307-.614-.02-1.186 0-1.268 0"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/chinaeasternairlines.svg���������������������0000664�0000000�0000000�00000001236�14753064456�0030020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.572 2.383c-1.846 0-2.245.238-2.962 1.205-.38.516-3.568 4.915-5.009 6.898-.18.236-.446.486-1.03.486H0v.004c3.05 8.61 6.324 10.64 9.602 10.64h5.178c.07 0 .146-.08-.041-.124-3.805-.953-7.57-3.984-7.589-6.962.066 2.464 5.255 3.315 10.876 4.016.098.011.093-.065.063-.12l-.17-.293c-.02-.039-.043-.068-.124-.088-3.094-.787-6.242-1.938-6.242-3.01 0-2.032 5.272-4.042 11.27-4.96.195-.04.29-.076.42-.18.17-.136.536-.433.695-.554.096-.085.061-.11.025-.11-.16 0-.326.004-.485.01-7.898.219-15.544 2.008-16.253 4.55-.002.014-.01.027-.014.04.937-4.652 7.198-9.162 15.008-11.28.18-.052.239-.168.014-.168Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/chinasouthernairlines.svg��������������������0000664�0000000�0000000�00000004177�14753064456�0030235�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.427 9.863v.62c.307-.004.555.1.555.1-.758.26-1.18 1.066-1.18 1.842v2.623c-.042.036-.067.067-.094.099-.112-.344-.452-.757-.805-.953v-2.029c0-.727.53-1.522 1.28-1.67v-.636a.55.55 0 0 1-.425-.534.55.55 0 0 1 .55-.551.55.55 0 0 1 .552.551c0 .26-.187.485-.433.538m-3.03-.004v.636c.75.149 1.283.943 1.283 1.67v2.03c-.356.195-.695.608-.805.952-.03-.032-.055-.064-.095-.099v-2.623c0-.791-.421-1.583-1.18-1.842 0 0 .248-.104.552-.1v-.624a.55.55 0 0 1-.425-.534c0-.306.243-.551.55-.551a.55.55 0 0 1 .552.551.55.55 0 0 1-.432.534m1.516-.421-.003.594c.293.04.555.244.645.486-.348.227-.63.57-.766.995a1.85 1.85 0 0 0-.763-.995.85.85 0 0 1 .643-.486v-.596a.55.55 0 0 1-.426-.536.55.55 0 0 1 .55-.552.552.552 0 0 1 .12 1.09m-.12 7.583c1.715 0 2.1-1.438 2.153-1.805v-.485c-.53.132-1.005.414-1.327.836a2 2 0 0 0-.827-1.187 2 2 0 0 0-.832 1.187c-.319-.422-.795-.704-1.324-.836v.485c.051.367.439 1.805 2.156 1.805m-4.233-5.006c-.007-.73.495-1.326 1.52-1.326.678 0 1.487.568 1.487 2.027v2.163c-.294-.193-.703-.37-.926-.374V12.49c0-.773-.555-.998-.815-.998a.68.68 0 0 1 .236.524c0 .41-.342.75-.753.75-.41 0-.73-.303-.749-.75m8.467 0c.004-.73-.498-1.326-1.52-1.326-.68 0-1.49.568-1.49 2.027v2.163c.294-.193.703-.37.924-.374V12.49c0-.773.558-.998.815-.998a.68.68 0 0 0-.234.524c0 .41.34.75.753.75.412 0 .732-.303.752-.75M15.97 10.03a.79.79 0 0 1-.447-.705c0-.433.352-.786.784-.786.435 0 .785.353.785.786a.78.78 0 0 1-.447.707v.22c.244.025.536.127.715.218a4 4 0 0 1 .292-.012c.99 0 1.685.654 1.685 1.557 0 .557-.499 1.065-1.058 1.065-.563 0-1.072-.551-.97-1.106 0 0-.058.191-.058.425v2.831c-.024.323-.458 2.106-2.459 2.106s-2.437-1.783-2.461-2.106v-2.831c0-.234-.058-.425-.058-.425.108.533-.408 1.106-.967 1.106-.564 0-1.06-.508-1.06-1.065 0-.903.693-1.557 1.687-1.557.104 0 .208.007.286.013.182-.092.49-.2.717-.219v-.223a.79.79 0 0 1-.445-.704.787.787 0 0 1 1.573 0 .78.78 0 0 1-.45.71v.294q.1.032.2.077c.122-.262.367-.467.644-.558v-.239a.78.78 0 0 1-.449-.71c0-.434.35-.784.783-.784a.784.784 0 0 1 .786.785.78.78 0 0 1-.448.709v.239c.275.09.517.296.638.558.062-.03.136-.055.202-.077zM24 3.434h-6.864L0 20.566h17.136Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/chocolatey.svg�������������������������������0000664�0000000�0000000�00000001770�14753064456�0025762�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m0 1.249 1.439 3.18L0 6.926l1.439 2.5L0 11.923l1.439 2.424L0 16.845l1.439 2.5L0 22.75l2.8-.91c6.3.01 12.696.006 18.096 0l3.104.91-2.044-3.635 1.136-1.892-2.196-2.272-.004-.017V2.005c-6.551-.001-12.243 0-18.091 0zm19.688 1.968v7.03l-.23-.898-1.438-4.39-3.56.605-1.89-2.343zm-11.695.004h4.563L9.539 4.428zm2.86 3.68a3.9 3.9 0 0 1 1.64.254c1.968.757 1.286 2.8.15 4.012-.378.378-1.21.227-.605-.908.228-.454.454-1.363-.227-1.59-1.515-.53-3.255.682-3.634 2.271-.378 1.363.606 2.801 2.347 2.423 1.439-.303 2.802-1.288 3.332-1.742.53-.455.907.38.301 1.288-.68.908-1.74 1.968-2.65 2.574-3.558 2.423-6.662-.758-5.375-4.392.677-1.845 2.454-4.041 4.72-4.19zm6.527 2.031a.66.66 0 0 1 .454.182c.324.326.204.972-.268 1.445-.473.474-1.121.593-1.446.268-.325-.326-.205-.972.267-1.445.292-.292.666-.461.993-.45m-.42 3.233a.66.66 0 0 1 .454.182c.325.325.206.973-.268 1.446-.473.473-1.12.592-1.445.268-.324-.326-.205-.972.268-1.445.291-.292.664-.462.99-.451Z"/></svg>��������mkdocs-material-9.6.4/material/templates/.icons/simple/chromatic.svg��������������������������������0000664�0000000�0000000�00000001707�14753064456�0025601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m-.006 3.43a3.37 3.37 0 0 1 3.37 3.369v2.199L9.628 5.689a4.3 4.3 0 0 0-.688-.32 3.35 3.35 0 0 1 3.053-1.94zm-4.498 2.6c.588 0 1.17.156 1.684.452l5.734 3.311-2.91 1.678-3.6-2.076a.46.46 0 0 0-.459 0L5.35 10.893a4 4 0 0 0-.621.433 3.35 3.35 0 0 1-.155-3.61A3.39 3.39 0 0 1 7.496 6.03m8.723.015a3.38 3.38 0 0 1 3.205 1.672 3.37 3.37 0 0 1-1.235 4.6l-5.736 3.308v-3.357l3.602-2.077a.46.46 0 0 0 .228-.398V6.799a4.4 4.4 0 0 0-.064-.754m-8.504 4.543v6.617q0 .38.066.754a3 3 0 0 1-.285.012 3.38 3.38 0 0 1-2.92-1.684 3.34 3.34 0 0 1-.338-2.555 3.34 3.34 0 0 1 1.57-2.044zm.908 0 2.912 1.68v4.152a.46.46 0 0 0 .23.396l2.594 1.498h.002q.33.191.688.32a3.35 3.35 0 0 1-3.055 1.938 3.373 3.373 0 0 1-3.371-3.367zm10.647 2.088a3.35 3.35 0 0 1 .154 3.611 3.37 3.37 0 0 1-4.604 1.233l-1.908-1.1 5.738-3.309a4.3 4.3 0 0 0 .62-.435"/></svg>���������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/chromecast.svg�������������������������������0000664�0000000�0000000�00000000655�14753064456�0025761�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 18.546v3.272h3.273A3.27 3.27 0 0 0 0 18.545m0-4.364v2.182a5.456 5.456 0 0 1 5.455 5.454h2.181A7.63 7.63 0 0 0 0 14.182m0-4.364V12c5.422 0 9.818 4.396 9.818 9.818H12c0-6.633-5.378-12-12-12m21.818-7.636H2.182C.982 2.182 0 3.164 0 4.364v3.272h2.182V4.364h19.636v15.272h-7.636v2.182h7.636c1.2 0 2.182-.982 2.182-2.182V4.364c0-1.2-.982-2.182-2.182-2.182"/></svg>�����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/chromewebstore.svg���������������������������0000664�0000000�0000000�00000001030�14753064456�0026645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 1.637v19.09c0 .9.736 1.636 1.636 1.636h.131a10.4 10.4 0 0 1-.13-1.636 10.3 10.3 0 0 1 1.667-5.64l4.202 7.276h1.128A3.77 3.77 0 0 1 12 16.958a3.77 3.77 0 0 1 3.366 5.406h1.048a4.7 4.7 0 0 0-1.587-5.406h6.83a10.34 10.34 0 0 1 .577 5.406h.13c.9 0 1.636-.737 1.636-1.637V1.637Zm9.273 2.181h5.454a1.09 1.09 0 1 1 0 2.182H9.273a1.09 1.09 0 1 1 0-2.182M12 10.364a10.36 10.36 0 0 1 9.233 5.652H12a4.71 4.71 0 0 0-4.677 4.149L3.91 14.25A10.34 10.34 0 0 1 12 10.364"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/chrysler.svg���������������������������������0000664�0000000�0000000�00000010742�14753064456�0025462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 12.146v-.002q-.009-.024-.173-.025l-1.595-.022c-2.439-.021-6.978-.063-7.184-.063h-.05a1.9 1.9 0 0 0-.703.098l-.092.027a3.3 3.3 0 0 1-.795.172c-.283.01-1.363.009-1.408.009s-1.126 0-1.409-.008a3.2 3.2 0 0 1-.795-.172l-.09-.027A1.9 1.9 0 0 0 9 12.035h-.044c-.207 0-4.746.02-7.184.043l-1.601.02c-.11 0-.173.008-.172.026l.091.023q.505.103 1.02.124c.653.013 5.435.133 5.55.135.258-.007.515.039.755.134h1.497s-.604.035-.613.073h-.038c-.15 0-.606 0-.864-.012 0 0-.019.072.244.072.092.062.189.121.276.17h1.287s-.506.03-.516.068c-.06 0-.28-.006-.49-.012l-.295-.009s-.015.064.227.065l.041.026c.483.217.995.363 1.52.433q.3.058.603.08s.245.022.202.02a9.7 9.7 0 0 1-1.7-.221 4.3 4.3 0 0 1-1.277-.54 1.4 1.4 0 0 0-.738-.232c-.17-.011-5.648-.227-5.66-.227a5.3 5.3 0 0 1-1.044-.14L0 12.125c0 .015.038.055.07.084.17.15.81.461 1.184.553.65.157 4.645.665 5.355.745l.392.044c1.073.116 2.422.264 3.109.334a.84.84 0 0 0 .392-.022A4.1 4.1 0 0 1 12 13.606a4.3 4.3 0 0 1 1.503.258.84.84 0 0 0 .387.022c.688-.069 2.04-.22 3.104-.337l.397-.044c.71-.079 4.705-.568 5.354-.725.375-.09 1.015-.402 1.184-.552.03-.028.067-.065.07-.081zm-12.265.995c-.795 0-1.581-.011-1.81-.068-.545-.135-.799-.384-.842-.46-.043-.075-.032-.074.035-.074h5.76c.068 0 .072.007.034.075s-.294.324-.841.459c-.229.057-1.015.066-1.81.068zm12.188-.971a5.4 5.4 0 0 1-1.044.141c-.012 0-5.496.197-5.661.21a1.4 1.4 0 0 0-.738.232 4.3 4.3 0 0 1-1.276.54 9.7 9.7 0 0 1-1.701.222c-.043 0 .202-.021.202-.021a5 5 0 0 0 .602-.08 5.5 5.5 0 0 0 1.52-.433l.048-.026c.241 0 .228-.065.228-.065l-.295.01c-.218.005-.442.01-.498.01-.01-.036-.51-.067-.51-.067h1.285a5 5 0 0 0 .27-.168c.264 0 .246-.072.246-.072-.283.007-.809.014-.902.01-.009-.037-.57-.072-.57-.072h1.447a1.9 1.9 0 0 1 .76-.133l5.553-.114a6.4 6.4 0 0 0 1.02-.125l.068-.017zm-11.962.532h.09l-.175.125v.099h-.132v-.097l-.189-.127h.155l.128.08zm.809.183h.302v.04h-.434v-.224h.132zm.54 0h.313v.04h-.442v-.224h.438v.041h-.309v.051h.303v.041h-.303zm-2.522-.183h.132v.224h-.135v-.091h-.278v.09h-.132v-.223h.132v.09h.278zm.598.126.17.098h-.15s-.136-.097-.168-.122c.135.005.157-.01.157-.032s-.106-.036-.226-.029v.183h-.14v-.223h.305c.15 0 .196.031.196.063 0 .028-.055.054-.144.062m2.714-.056c0-.023-.106-.036-.226-.029v.185h-.14v-.223h.302c.15 0 .196.034.196.063s-.055.054-.144.06l.17.098h-.15s-.136-.097-.168-.122c.134.005.16-.01.16-.032m-1.557.087c0 .057-.123.076-.251.076a2 2 0 0 1-.208-.014l.014-.048a1 1 0 0 0 .19.014c.107 0 .114-.013.114-.027s-.03-.023-.078-.023l-.098-.011c-.096-.012-.135-.016-.135-.073s.124-.067.203-.067a2 2 0 0 1 .208.018l-.01.043a1 1 0 0 0-.164-.013c-.085 0-.103.004-.103.02s.027.023.07.023l.113.008q.133.017.135.074m-2.668-.049c0 .052.127.074.211.074s.164-.01.183-.01l-.014.047c-.024.002-.106.01-.196.01-.168 0-.318-.04-.318-.121s.15-.122.318-.122c.098 0 .175.01.196.01l.014.047a2 2 0 0 0-.183-.01c-.088 0-.211.023-.211.075m.997-2.2-.55-.497h.366l.209.177.228.196.042.037.04-.036.423-.371h.142l-.51.49-.019.02v.431h-.35v-.428zm5.377.447h-1.473v-.945h.326v.828h1.147zm2.186-.006h-1.497v-.937h1.478v.116h-1.163v.292h1.144v.12h-1.144v.293h1.182zm-12.414.002h-.333v-.943h.333v.417h.914v-.417h.331v.943h-.33v-.413H6.02zm2.544-.003h-.336v-.945h.883c.168-.01.337.019.491.085a.2.2 0 0 1 .119.168c-.001.108-.08.214-.361.244l-.08.01.061.048c.09.073.312.295.416.393l.01.003h-.385c-.057-.063-.373-.35-.51-.49a2 2 0 0 0 .392-.049.14.14 0 0 0 .099-.131.12.12 0 0 0-.052-.092c-.08-.067-.265-.067-.481-.067h-.266zm4.905-.242c0-.057-.049-.084-.098-.098a1.3 1.3 0 0 0-.203-.037 10 10 0 0 1-.344-.048.9.9 0 0 1-.34-.098.19.19 0 0 1-.093-.173c-.001-.099.084-.162.222-.203q.22-.054.447-.05.351.004.7.054l-.023.114a3 3 0 0 0-.54-.05 1.2 1.2 0 0 0-.295.023c-.061.017-.098.054-.098.098a.11.11 0 0 0 .088.099 1 1 0 0 0 .183.033c.104.01.249.03.387.05a.85.85 0 0 1 .331.097.19.19 0 0 1 .098.17c.001.096-.086.17-.244.221a2.1 2.1 0 0 1-.59.07l.002-.006a5 5 0 0 1-.674-.053l.029-.135q.309.068.625.068a.9.9 0 0 0 .352-.048.11.11 0 0 0 .078-.098m-10.287-.221c0-.158.103-.271.278-.354a1.6 1.6 0 0 1 .678-.128q.287.002.571.04l.027.129a5 5 0 0 0-.521-.036 1.2 1.2 0 0 0-.44.077c-.133.052-.243.137-.243.269 0 .131.11.217.243.269.14.052.29.078.44.076a5 5 0 0 0 .52-.035l-.034.132a4.4 4.4 0 0 1-.57.04 1.6 1.6 0 0 1-.671-.125c-.18-.083-.278-.2-.278-.354m16.42.473h-.331v-.946h.883a1.1 1.1 0 0 1 .491.086.2.2 0 0 1 .119.167c-.001.109-.08.215-.361.245l-.08.008.061.05c.09.072.312.289.416.392v.001h-.379c-.057-.063-.374-.35-.51-.49a2 2 0 0 0 .393-.05.14.14 0 0 0 .098-.13.12.12 0 0 0-.052-.092c-.082-.068-.265-.068-.481-.068h-.266z"/></svg>������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/chupachups.svg�������������������������������0000664�0000000�0000000�00000014614�14753064456�0025774�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.206 0A4.48 4.48 0 0 0 12 1.29 4.46 4.46 0 0 0 7.17.338a4.46 4.46 0 0 0-2.744 4.088A4.46 4.46 0 0 0 .337 7.17 4.46 4.46 0 0 0 1.29 12a4.46 4.46 0 0 0-.952 4.831 4.46 4.46 0 0 0 4.089 2.743 4.46 4.46 0 0 0 2.743 4.089c1.7.704 3.596.268 4.831-.952a4.46 4.46 0 0 0 4.83.951 4.46 4.46 0 0 0 2.743-4.088 4.46 4.46 0 0 0 4.09-2.743A4.46 4.46 0 0 0 22.71 12a4.46 4.46 0 0 0 .951-4.83 4.46 4.46 0 0 0-4.089-2.744A4.46 4.46 0 0 0 16.831.338 4.4 4.4 0 0 0 15.206 0M8.855.624A3.85 3.85 0 0 1 12 2.253a3.83 3.83 0 0 1 4.592-1.34 3.83 3.83 0 0 1 2.3 4.195 3.83 3.83 0 0 1 4.195 2.3A3.83 3.83 0 0 1 21.747 12a3.83 3.83 0 0 1 1.34 4.593 3.83 3.83 0 0 1-4.194 2.3 3.83 3.83 0 0 1-2.3 4.195A3.834 3.834 0 0 1 12 21.748a3.83 3.83 0 0 1-4.593 1.34 3.83 3.83 0 0 1-2.3-4.195 3.83 3.83 0 0 1-4.194-2.3A3.83 3.83 0 0 1 2.253 12a3.83 3.83 0 0 1-1.34-4.592 3.83 3.83 0 0 1 4.194-2.3 3.83 3.83 0 0 1 2.3-4.195 3.8 3.8 0 0 1 1.448-.29zm.261.493a3.8 3.8 0 0 0-1.505.29 3.83 3.83 0 0 0-2.345 3.86 3.83 3.83 0 0 0-3.861 2.346A3.83 3.83 0 0 0 2.477 12a3.83 3.83 0 0 0-1.072 4.389 3.835 3.835 0 0 0 3.861 2.345 3.83 3.83 0 0 0 2.346 3.861A3.83 3.83 0 0 0 12 21.523a3.83 3.83 0 0 0 4.388 1.072 3.83 3.83 0 0 0 2.345-3.861 3.83 3.83 0 0 0 3.861-2.346A3.83 3.83 0 0 0 21.522 12a3.83 3.83 0 0 0 1.072-4.389 3.83 3.83 0 0 0-3.86-2.345 3.83 3.83 0 0 0-2.346-3.86A3.83 3.83 0 0 0 12 2.476a3.85 3.85 0 0 0-2.884-1.362zm.13.574A3.85 3.85 0 0 1 12 2.795a3.83 3.83 0 0 1 4.15-.814 3.83 3.83 0 0 1 2.36 3.51c1.49.012 2.905.9 3.51 2.36a3.83 3.83 0 0 1-.814 4.15 3.83 3.83 0 0 1 .813 4.15 3.83 3.83 0 0 1-3.51 2.36 3.83 3.83 0 0 1-2.359 3.51 3.83 3.83 0 0 1-4.15-.814 3.83 3.83 0 0 1-4.15.814 3.83 3.83 0 0 1-2.36-3.51 3.83 3.83 0 0 1-3.51-2.36A3.83 3.83 0 0 1 2.793 12a3.83 3.83 0 0 1-.813-4.15 3.83 3.83 0 0 1 3.51-2.36 3.83 3.83 0 0 1 2.36-3.51 3.8 3.8 0 0 1 1.395-.29M6.82 5.947c-.496.003-1.003.21-1.391.488-.983.705-1.552 1.765-1.508 2.935.024.623.38 1.274.994 1.507.773.294 1.396-.002 2.043-.442l-.176.43h1.06l1.063-2.357c.1-.223.594-.176.481.088l-.653 1.532a.57.57 0 0 0 .216.693c.488.32 1.059.004 1.48-.248.052.128.11.273.244.34.387.197.943.01 1.26-.202.024-.015.138.128.268.203.43.247.994.03 1.351-.22-.217.499-.428 1.297-.946 1.519-.09.038-.289-.043-.265.096.193.225.526.258.826.205.915-.163 1.063-1.18 1.456-1.825.108.116.211.252.38.28.974.168 1.536-.83 2.206-1.362-.107.343-.288.884.104 1.25.38.356 1.071.125 1.44-.152l.144.229c.115.182.4.159.605.112.236-.053.607-.207.606-.405-.287.046-.481-.107-.36-.397.375-.903 1.169-2.72 1.169-2.72h-1.044l-.126.302a.56.56 0 0 0-.369-.313c-1.242-.24-1.684 1.19-2.377 1.632.12-.437.389-1.16-.044-1.516-.322-.263-.751-.046-1.083.085l.067-.19h-.99l-1.094 2.48c-.08.18-.267.28-.445.304a.22.22 0 0 1-.209-.096.29.29 0 0 1-.02-.28l1.062-2.407h-1.068l-.94 2.15c-.006.014-.183.504-.369.57-.092.032-.213.007-.264-.09-.04-.075-.024-.18.007-.252l1.052-2.378H11.62l-1.086 2.462c-.086.194-.526.417-.654.12-.045-.104-.022-.224.02-.32l.482-1.099c.148-.338.515-.883.068-1.147-.463-.272-.921.068-1.218.26l.753-1.751H8.948L7.39 9.48c-.204.449-.754.671-1.215.751-.368.064-.744-.015-.938-.32-.469-.742-.07-1.659.297-2.314.271-.486.743-1.136 1.371-1.087.108.008.234.057.277.18.143.413-.327.7-.626.87.057.356.684.38.939.245a1.09 1.09 0 0 0 .565-.87.83.83 0 0 0-.385-.746 1.5 1.5 0 0 0-.854-.243zm12.43 2.294c.19.004.238.185.169.343l-.702 1.592c-.06.138-.248.203-.41.132-.047-.02-.103-.076-.104-.132-.003-.485.246-.923.458-1.343.114-.228.258-.56.549-.59zm-3.335.007c.09.003.166.045.18.127.07.45-.53 1.697-.93 1.913-.101.054-.25.004-.274-.104-.022-.097.031-.207.073-.3l.645-1.46c.053-.12.19-.18.306-.175M9.613 11.43l-1.124.005-1.705 3.819c-.537.57-1.297 1.123-2.056.812-.37-.15-.548-.548-.558-.926-.017-.673.15-1.289.502-1.809.342-.504.793-1.128 1.447-1.195a.384.384 0 0 1 .397.23c.08.191-.015.388-.14.52a.98.98 0 0 1-.514.281c.091.441.734.42 1.055.277.244-.11.48-.35.55-.606.083-.31.038-.669-.165-.918-.379-.465-1.028-.518-1.588-.389-1.216.28-2.329 1.385-2.643 2.574-.239.91-.182 2.086.682 2.615 1 .612 1.905-.006 2.605-.514l-.258.578 1.15.003 1.239-2.802c.123-.278.694-.234.537.12l-.681 1.544c-.087.198-.153.385-.153.598 0 .229.084.47.313.57.558.238 1.11-.114 1.527-.47.053.272.205.456.494.517.451.096.818-.16 1.17-.368.069.128.11.28.257.356.435.222.964-.028 1.34-.236l-.394.863c-.981-.208-2.094-.258-3.059.075-.532.184-1.093.69-1.135 1.307-.03.459.19.868.57 1.1.76.461 1.835.465 2.642.095.48-.22.89-.577 1.24-1.006 1.575.333 3.488.589 4.602-.822.021-.027.173-.249.2-.445-.208.136-.44.22-.68.264-.6.111-1.23.095-1.848.043-.41-.034-1.13-.183-1.49-.35l.599-1.305a.69.69 0 0 0 .485.41c.663.132 1.186-.299 1.607-.759l1.961-2.14c.066-.072.171-.203.293-.181.037.007.055.05.04.088-.11.295-.224.59-.313.899-.135.47-.084 1.026-.368 1.43a.38.38 0 0 1-.293.15.28.28 0 0 1-.277-.161c-.09-.196.04-.424.18-.557a.34.34 0 0 0-.235-.064.58.58 0 0 0-.418.244.67.67 0 0 0-.112.493c.036.272.296.492.55.557.54.14 1.095-.017 1.515-.377.731-.627.5-1.663.425-2.494a.97.97 0 0 1 .55-.974.52.52 0 0 0-.335-.18c-1.103-.139-1.822 1.28-2.49 1.676.032-.13.341-1.281-.207-1.609-.387-.23-.838-.004-1.155.217l.036-.208h-1.034l-1.332 3.003c-.072.163-.268.205-.429.209-.08.002-.16-.027-.196-.105a.27.27 0 0 1-.012-.228l1.286-2.889h-1.137l-1.276 2.889c-.051.116-.173.176-.293.188-.076.008-.16-.048-.208-.12-.044-.065-.038-.178-.008-.249l1.162-2.708h-1.116l-1.25 2.853a.63.63 0 0 1-.408.328c-.105.027-.213.001-.273-.084-.06-.087-.042-.2 0-.304.29-.729.682-1.42.927-2.166.064-.198.035-.445-.14-.569-.444-.314-.967-.067-1.356.188zm6.336 2.318c.079.005.148.06.182.121.049.086.037.221.008.313a7.3 7.3 0 0 1-.786 1.676c-.1.155-.529.239-.529 0v-.132l.806-1.809c.05-.111.17-.155.285-.168zm-5.364 4.849c.16.002.322.015.478.027.346.028.682.105 1.006.201-.45.778-1.439 1.2-2.265.718-.327-.191-.365-.625.008-.806.238-.116.505-.143.773-.14m3.118.74a.8.8 0 0 0-.388.097.8.8 0 0 0-.31.291.8.8 0 0 0-.123.433q0 .34.24.581.242.24.581.24.34 0 .58-.241a.8.8 0 0 0 .241-.58.8.8 0 0 0-.125-.435.83.83 0 0 0-.696-.387m.001.16q.266 0 .463.19a.63.63 0 0 1 .198.47.64.64 0 0 1-.195.467.63.63 0 0 1-.466.195.63.63 0 0 1-.466-.193.64.64 0 0 1-.193-.468q0-.282.197-.471a.65.65 0 0 1 .462-.19m-.372.229v.871h.177v-.358h.046q.084 0 .132.045.048.044.113.172l.073.141h.219l-.104-.176a1 1 0 0 0-.106-.158.2.2 0 0 0-.078-.047.3.3 0 0 0 .17-.08.22.22 0 0 0 .065-.163.235.235 0 0 0-.191-.239 4 4 0 0 0-.339-.008zm.177.138h.072q.118 0 .162.006a.13.13 0 0 1 .076.035.1.1 0 0 1 .032.077.1.1 0 0 1-.03.077.12.12 0 0 1-.071.037 2 2 0 0 1-.169.006h-.072Z"/></svg>��������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cilium.svg�����������������������������������0000664�0000000�0000000�00000001637�14753064456�0025114�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.607 14.583h-3.215l-1.626-2.764 1.626-2.802h3.215l1.626 2.802zM14.186 8H9.799l-2.2 3.813 2.2 3.787h4.387l2.213-3.787zm-4.387 8.4-2.2 3.813L9.799 24h4.387l2.213-3.787-2.213-3.813zm-1.034 3.819 1.627-2.802h3.215l1.626 2.802-1.626 2.765h-3.215zM9.799 0l-2.2 3.813 2.2 3.787h4.387l2.213-3.787L14.186 0zM8.765 3.819l1.627-2.802h3.215l1.626 2.802-1.626 2.764h-3.215zm8.234 8.581-2.2 3.813 2.2 3.787h4.388l2.213-3.787-2.213-3.813zm-1.034 3.819 1.627-2.802h3.215l1.626 2.802-1.626 2.765h-3.215zM16.999 4l-2.2 3.813 2.2 3.787h4.388L23.6 7.813 21.387 4zm-1.034 3.819 1.627-2.802h3.215l1.626 2.802-1.626 2.764h-3.215zM2.599 12.4l-2.2 3.813L2.599 20h4.387l2.213-3.787L6.986 12.4zm-1.034 3.819 1.627-2.802h3.214l1.627 2.802-1.627 2.765H3.192zM2.599 4l-2.2 3.813 2.2 3.787h4.387l2.213-3.787L6.986 4zM1.565 7.819l1.627-2.802h3.214l1.627 2.802-1.627 2.764H3.192z"/></svg>�������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cinema4d.svg���������������������������������0000664�0000000�0000000�00000001700�14753064456�0025305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.052 0C5.394-.007-.003 5.412 0 11.976.003 18.654 5.475 23.981 11.978 24c6.535.02 12.057-5.306 12.022-11.998-.009-1.665-.53-5.371-1.84-5.276-1.98.145-2.159 4.12-2.377 5.407-.417 2.46-1.346 5.08-2.953 6.99-1.88 2.359-4.697 3.634-7.662 3.158-3.55-.564-5.893-3.278-6.68-5.201-.753-1.723-1.035-4.162-.07-6.324 1.16-2.766 3.734-4.632 6.28-5.584 2.006-.827 4.103-1.151 5.357-1.375 2.516-.5 2.855-1.463 2.814-2.149-.015-.252-.256-.724-.785-.943C15.03.269 13.268.001 12.052 0m5.098 1.342c.139.398.088.85-.148 1.256-.325.56-.972 1.05-1.897 1.29-1.636.428-2.976.554-4.34.96-1.312.39-3.397 1.018-5.316 2.552-.268.842-.341 1.892-.369 2.662.15 5.014 4.557 8.884 9.17 8.682.853-.037 1.921-.261 2.912-.68a13.6 13.6 0 0 0 1.387-2.683l.002-.002v-.002c.424-1.03.606-1.836.8-2.793.32-1.565.202-2.88 1.012-4.758.251-.582.71-1.113 1.258-1.346.25-.105.522-.133.79-.072-.89-2.471-3.115-4.326-5.26-5.066z"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cinnamon.svg���������������������������������0000664�0000000�0000000�00000000543�14753064456�0025427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12c0 6.628 5.373 12 12 12 6.628 0 12-5.372 12-12 0-6.627-5.372-12-12-12m0 2.045c5.498 0 9.955 4.457 9.955 9.955 0 .844-.116 1.66-.314 2.443l-4.735-5.26-6.054 6.887 2.921-5.844-1.46-2.609-8.604 9.889A9.9 9.9 0 0 1 2.045 12c0-5.498 4.457-9.955 9.955-9.955"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/circle.svg�����������������������������������0000664�0000000�0000000�00000003173�14753064456�0025070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.788 3.832c-.101-.105-.197-.213-.301-.317q-.155-.153-.32-.302A11.9 11.9 0 0 0 12 0a11.93 11.93 0 0 0-8.486 3.514C-1.062 8.09-1.16 15.47 3.213 20.168q.147.162.3.32c.104.103.21.2.317.3A11.92 11.92 0 0 0 12 24c3.206 0 6.22-1.247 8.487-3.512 4.576-4.576 4.673-11.956.301-16.656m-16.655.301A11.06 11.06 0 0 1 12 .874c2.825 0 5.49 1.048 7.55 2.958l-1.001 1.002A9.65 9.65 0 0 0 12 2.292a9.64 9.64 0 0 0-6.865 2.844A9.64 9.64 0 0 0 2.292 12c0 2.448.9 4.753 2.542 6.549L3.831 19.55C-.201 15.191-.101 8.367 4.133 4.133m13.798 1.318v.002l-1.015 1.014A7.35 7.35 0 0 0 12 4.589 7.36 7.36 0 0 0 6.761 6.76 7.36 7.36 0 0 0 4.589 12a7.34 7.34 0 0 0 1.877 4.913l-1.014 1.016A8.77 8.77 0 0 1 3.167 12a8.77 8.77 0 0 1 2.588-6.245A8.77 8.77 0 0 1 12 3.167c2.213 0 4.301.809 5.931 2.284M18.537 12c0 1.745-.681 3.387-1.916 4.622S13.746 18.538 12 18.538a6.5 6.5 0 0 1-4.296-1.621l-.001-.004c-.11-.094-.22-.188-.324-.291a6 6 0 0 1-.293-.326A6.47 6.47 0 0 1 5.466 12c0-1.746.679-3.387 1.914-4.621A6.49 6.49 0 0 1 12 5.465c1.599 0 3.105.576 4.295 1.62.111.096.224.19.326.295q.154.157.295.324A6.48 6.48 0 0 1 18.537 12M7.084 17.534h.001A7.35 7.35 0 0 0 12 19.413a7.35 7.35 0 0 0 5.239-2.174A7.35 7.35 0 0 0 19.412 12a7.36 7.36 0 0 0-1.876-4.916l1.013-1.012A8.78 8.78 0 0 1 20.834 12a8.77 8.77 0 0 1-2.589 6.246A8.76 8.76 0 0 1 12 20.834a8.78 8.78 0 0 1-5.93-2.285zm12.783 2.333A11.05 11.05 0 0 1 12 23.125a11.04 11.04 0 0 1-7.551-2.957l1.004-1.001a9.64 9.64 0 0 0 6.549 2.542 9.64 9.64 0 0 0 6.865-2.846A9.64 9.64 0 0 0 21.71 12a9.64 9.64 0 0 0-2.543-6.548l1.001-1.002c4.031 4.359 3.935 11.182-.301 15.417"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/circleci.svg���������������������������������0000664�0000000�0000000�00000001104�14753064456�0025374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.963 12a2.854 2.854 0 0 1 2.855-2.855A2.863 2.863 0 0 1 14.674 12a2.863 2.863 0 0 1-2.856 2.856A2.863 2.863 0 0 1 8.963 12m2.855-12C6.215 0 1.522 3.84.19 9.025c-.01.036-.01.07-.01.12 0 .313.252.576.575.576H5.59c.23 0 .433-.13.517-.333.997-2.16 3.18-3.672 5.712-3.672a6.293 6.293 0 0 1 6.286 6.287c0 3.47-2.82 6.29-6.29 6.29a6.28 6.28 0 0 1-5.71-3.673.59.59 0 0 0-.517-.336H.755a.576.576 0 0 0-.575.576c0 .037.014.072.014.12C1.514 20.16 6.214 24 11.818 24c6.624 0 12-5.375 12-12 0-6.623-5.376-12-12-12"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/circuitverse.svg�����������������������������0000664�0000000�0000000�00000010262�14753064456�0026333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.123 24q-.303 0-.603-.017a.5.5 0 0 1-.043-.287.7.7 0 0 0-.022-.263h-2.23a1.2 1.2 0 0 1-.785.39.7.7 0 0 1-.507-.228.915.915 0 0 1-.065-1.1.7.7 0 0 1 .557-.266 1.22 1.22 0 0 1 .703.267h2.328a2 2 0 0 0 0-.614H10.26a1.14 1.14 0 0 1-.55-.13 22 22 0 0 0-1.487-.808 1.4 1.4 0 0 0-.71-.194 7 7 0 0 1-.476.015q-.236-.001-.464-.007a19 19 0 0 0-.45-.008 1.35 1.35 0 0 1-.814.37.68.68 0 0 1-.512-.24.76.76 0 0 1 0-1.067.72.72 0 0 1 .537-.272 1.3 1.3 0 0 1 .756.337h1.681a1.14 1.14 0 0 1 .55.129c.14.082.293.162.441.239a6 6 0 0 1 .754.44 1.95 1.95 0 0 0 1.116.33 3 3 0 0 0 .178-.007 2 2 0 0 1 .219-.014q.101 0 .208.007c.08.004.161.007.251.007v-1.034h-1.164a1.27 1.27 0 0 1-.71.3.84.84 0 0 1-.615-.332c-.37-.404-.134-.803.13-1.067a.56.56 0 0 1 .353-.125 1.35 1.35 0 0 1 .842.448h1.1v-.905a.4.4 0 0 0-.178-.04q-.04 0-.083.004-.044.003-.095.004H4.959a.84.84 0 0 1-.743-.356c-.172-.228-.37-.459-.545-.663l-.07-.08c-.743-.065-.97-.285-.937-.905a.75.75 0 0 1 .84-.679c.492 0 .711.33.711 1.067q.09.105.183.22c.136.164.276.335.432.491h6.658a5.5 5.5 0 0 0 0-1.034H6.64a1.32 1.32 0 0 1-.795.37.66.66 0 0 1-.498-.24.746.746 0 0 1 0-1.1.7.7 0 0 1 .508-.268 1.17 1.17 0 0 1 .72.365h4.88v-1.002H3.215q-.234.259-.502.535c-.158.166-.321.337-.5.531a.84.84 0 0 1-.792.752 1 1 0 0 1-.114-.008.846.846 0 0 1-.646-1.002c.059-.383.372-.602.86-.602a2 2 0 0 1 .271.02c.177-.206.444-.508.711-.776a.96.96 0 0 1 .776-.323h8.177v-1.099H1.63a1.23 1.23 0 0 1-.744.344.68.68 0 0 1-.55-.312.85.85 0 0 1 .098-1.13.75.75 0 0 1 .479-.195 1.15 1.15 0 0 1 .814.485h3.2l-.102-.097c-.56-.528-1.138-1.075-1.838-1.713a.755.755 0 0 1-.776-.808c0-.514.22-.743.711-.743.662 0 .84.212.873 1.034.248.238.492.469.75.713.543.513 1.102 1.042 1.674 1.614h5.236v-.743H9.161a1.28 1.28 0 0 1-.705.263.75.75 0 0 1-.588-.296.81.81 0 0 1 .129-1.098.64.64 0 0 1 .437-.168 1.28 1.28 0 0 1 .824.394h2.198v-.84q-.342-.001-.671-.008h-.007a39 39 0 0 0-.656-.007c-.248 0-.467.005-.67.014a1 1 0 0 1-.115.005 1.23 1.23 0 0 1-.855-.36l-.6-.507-.012-.01-.008-.007A261 261 0 0 0 6.64 7.272H3.052a1.24 1.24 0 0 1-.72.29.73.73 0 0 1-.573-.29.776.776 0 0 1 .097-1.099.7.7 0 0 1 .474-.223 1.36 1.36 0 0 1 .819.45h3.135a1.6 1.6 0 0 1 1.164.452c.373.351.795.69 1.203 1.019h.001c.19.153.388.311.573.466h2.198V7.271c-.138 0-.282-.004-.42-.007H11a18 18 0 0 0-.44-.008q-.24 0-.428.015a1 1 0 0 1-.115.005 1.34 1.34 0 0 1-.856-.327 11 11 0 0 0-.305-.24c-.103-.08-.212-.162-.31-.245-.8-.064-1.098-.29-1.066-.808a.776.776 0 0 1 .776-.743c.497 0 .775.302.808.872.129.097.258.204.388.307l.001.002c.127.103.259.21.388.306h1.584V5.14h-.55a1.35 1.35 0 0 1-.765.36.69.69 0 0 1-.528-.296.8.8 0 0 1 .033-1.1.7.7 0 0 1 .5-.214 1.1 1.1 0 0 1 .759.376h.517a.5.5 0 0 0 .043-.346 1 1 0 0 1-.01-.138v-.517a3 3 0 0 1-.292.012 9 9 0 0 1-.355-.01h-.007a8 8 0 0 0-.364-.01 1.96 1.96 0 0 0-1.018.234 11 11 0 0 1-1.115.582H8.27c-.153.073-.312.148-.466.224a.9.9 0 0 1-.42.065H5.22a1.1 1.1 0 0 1-.696.328.78.78 0 0 1-.598-.327.72.72 0 0 1-.181-.545.85.85 0 0 1 .31-.586.74.74 0 0 1 .473-.197 1.07 1.07 0 0 1 .755.456h2.101a.6.6 0 0 0 .223-.053 1 1 0 0 1 .133-.044q.197-.099.39-.19a10 10 0 0 0 .935-.489 2.56 2.56 0 0 1 1.353-.362q.097 0 .198.006a2 2 0 0 0 .258.014q.127 0 .26-.006h.001q.138-.007.286-.008a2.1 2.1 0 0 0 .037-.59q-.004-.105-.004-.218H9.416a1.46 1.46 0 0 1-.766.332.68.68 0 0 1-.526-.3.83.83 0 0 1 .065-1.098.72.72 0 0 1 .487-.205 1.24 1.24 0 0 1 .776.366h2.004q.002-.133.014-.276c.009-.114.018-.231.018-.37h.126c4.196 0 7.492 1.642 9.797 4.88a12.23 12.23 0 0 1 2.408 6.457c.12 2.203-.44 4.457-1.665 6.698a11.4 11.4 0 0 1-4.433 4.477A11.5 11.5 0 0 1 12.123 24m.367-5.577v4.46a1.6 1.6 0 0 0 .27.022 3.5 3.5 0 0 0 .491-.045c.11-.015.22-.033.337-.041a15 15 0 0 0 2.392-4.396zm4.654 0a19 19 0 0 1-1.842 3.944 10.38 10.38 0 0 0 5.3-3.944zm1.035-5.785a20.5 20.5 0 0 1-.68 4.654h3.815a11.2 11.2 0 0 0 1.293-4.654zm-5.69 0v4.622h3.88a18.2 18.2 0 0 0 .678-4.622zm.033-5.786v4.654h4.557a18.7 18.7 0 0 0-.71-4.654zm4.945-.032a21.4 21.4 0 0 1 .711 4.654h4.428a10.9 10.9 0 0 0-1.325-4.654zM15.27 1.778a20 20 0 0 1 1.875 3.943h3.459a10.6 10.6 0 0 0-5.333-3.943zm-2.747-.582c0 1.562 0 3.038.032 4.493h3.459a.12.12 0 0 1-.032-.097 16.2 16.2 0 0 0-2.23-4.105l-.038-.04a.28.28 0 0 0-.189-.122 10 10 0 0 0-1.002-.13"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cirrusci.svg���������������������������������0000664�0000000�0000000�00000001305�14753064456�0025445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.422.453a1.113 1.113 0 0 0-1.113 1.115 1.113 1.113 0 0 0 1.112 1.114c1.31 0 2.35 1.042 2.35 2.363a2.34 2.34 0 0 1-2.35 2.363H1.112A1.113 1.113 0 0 0 0 8.52a1.113 1.113 0 0 0 1.113 1.117h18.31A2.34 2.34 0 0 1 21.773 12a2.34 2.34 0 0 1-2.35 2.363H1.112A1.113 1.113 0 0 0 0 15.48a1.113 1.113 0 0 0 1.113 1.112h18.31a2.34 2.34 0 0 1 2.35 2.363 2.34 2.34 0 0 1-2.35 2.363H1.112A1.113 1.113 0 0 0 0 22.432a1.113 1.113 0 0 0 1.113 1.115h18.31a1 1 0 0 0 .206-.022c2.42-.112 4.37-2.12 4.37-4.57 0-1.393-.642-2.634-1.63-3.478C23.356 14.632 24 13.393 24 12s-.643-2.632-1.63-3.477C23.357 7.68 24 6.438 24 5.045c0-2.52-2.06-4.592-4.578-4.592"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cisco.svg������������������������������������0000664�0000000�0000000�00000004465�14753064456�0024734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.331 18.171V17.06l-.022.01c-.25.121-.522.19-.801.203a1.2 1.2 0 0 1-.806-.237 1.04 1.04 0 0 1-.352-.498 1.2 1.2 0 0 1-.023-.667c.052-.225.178-.426.357-.569.16-.134.355-.218.562-.242a1.85 1.85 0 0 1 1.061.198l.024.013v-1.117l-.051-.014a2.9 2.9 0 0 0-1.011-.132 2.3 2.3 0 0 0-.903.206c-.287.132-.54.327-.739.571a2.22 2.22 0 0 0-.04 2.705c.295.378.709.645 1.175.756.491.12 1.006.102 1.487-.052zm-10.995 0V17.06l-.022.01c-.25.121-.522.19-.801.203a1.18 1.18 0 0 1-.806-.237 1.03 1.03 0 0 1-.351-.498 1.2 1.2 0 0 1-.024-.667c.052-.225.177-.426.357-.569.16-.134.355-.218.562-.242a1.85 1.85 0 0 1 1.061.198l.024.013v-1.117l-.051-.014a2.9 2.9 0 0 0-1.011-.132 2.3 2.3 0 0 0-.903.206 2.1 2.1 0 0 0-.74.571 2.224 2.224 0 0 0-.041 2.705 2.1 2.1 0 0 0 1.176.756c.491.12 1.005.102 1.487-.052zm3.924-.922-.004.957.07.012q.33.061.664.085.293.028.587.012.282-.021.551-.104c.21-.06.405-.163.571-.305a1.16 1.16 0 0 0 .333-.478 1.3 1.3 0 0 0-.007-.96 1.1 1.1 0 0 0-.298-.414 1.3 1.3 0 0 0-.438-.255l-.722-.268a.4.4 0 0 1-.197-.188.25.25 0 0 1 .008-.219.4.4 0 0 1 .154-.142.8.8 0 0 1 .257-.074q.23-.034.46.005.27.03.533.096l.038.008v-.883l-.069-.015a5 5 0 0 0-.543-.097 2.8 2.8 0 0 0-.714-.003c-.3.027-.585.143-.821.33-.16.126-.281.293-.351.484-.104.29-.105.608 0 .899q.082.219.252.381.146.14.327.236.236.126.497.195.086.026.17.054l.085.031.024.01c.084.03.162.078.226.14q.068.064.101.151a.3.3 0 0 1 .001.161.34.34 0 0 1-.166.198.9.9 0 0 1-.275.086 2 2 0 0 1-.427.021 5 5 0 0 1-.557-.074 9 9 0 0 1-.287-.067zm-2.475.995h1.05v-4.167h-1.05zm12.162-2.936a1.095 1.095 0 0 1 1.541.158 1.094 1.094 0 0 1-.157 1.541l-.017.014a1.096 1.096 0 0 1-1.367-1.713m-1.525.854a2.193 2.193 0 0 0 2.666 2.107 2.139 2.139 0 0 0 .701-3.937 2.207 2.207 0 0 0-3.367 1.83m5.539-5.434a.52.52 0 0 0 1.039 0V9.573a.52.52 0 0 0-1.039 0zm-2.844 0a.522.522 0 0 0 1.041 0V8.139a.521.521 0 0 0-1.04 0v2.589m-2.887 1.043a.521.521 0 0 0 1.039 0V6.17a.52.52 0 0 0-1.039 0zm-2.838-1.043a.521.521 0 0 0 1.04 0V8.139a.52.52 0 0 0-1.039 0zm-2.9 0a.522.522 0 0 0 1.039 0V9.573a.52.52 0 0 0-1.039 0zm-2.87 0a.52.52 0 0 0 1.039 0V8.139a.52.52 0 0 0-1.039 0zm-2.887 1.043a.52.52 0 0 0 1.039 0V6.17a.52.52 0 0 0-1.039 0zm-2.861-1.043a.522.522 0 0 0 1.04 0V8.139a.52.52 0 0 0-1.039 0zm-2.877 0a.521.521 0 0 0 1.039 0V9.573a.52.52 0 0 0-1.039 0z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/citrix.svg�����������������������������������0000664�0000000�0000000�00000001153�14753064456�0025125�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.983 0a1.78 1.78 0 0 0-1.78 1.78 1.78 1.78 0 0 0 1.78 1.78 1.78 1.78 0 0 0 1.78-1.78A1.78 1.78 0 0 0 11.983 0M5.17 5.991a1.026 1.026 0 0 0-1.095 1.027c0 .308.136.616.376.822l6.162 7.086-6.401 7.258a1.08 1.08 0 0 0-.309.787c0 .582.48 1.027 1.062 1.027.342 0 .684-.17.89-.444l6.128-7.19 6.162 7.19c.205.274.547.444.89.444.582.035 1.062-.445 1.062-1.027a1.14 1.14 0 0 0-.309-.787l-6.402-7.258 6.162-7.086c.24-.206.377-.514.377-.822v-.034c0-.582-.513-1.027-1.095-.993-.343 0-.65.171-.856.445l-5.957 7.018L6.06 6.436a1.07 1.07 0 0 0-.855-.445z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/citroen.svg����������������������������������0000664�0000000�0000000�00000001026�14753064456�0025265�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C6.684 0 2.292 5.38 2.292 12S6.652 24 12 24s9.708-5.38 9.708-12S17.316 0 12 0M4.106 16.233c-.19-.604-.35-1.241-.414-1.878L12 8.18l8.371 6.175a12.3 12.3 0 0 1-.413 1.878v.032h-.032L12 10.345zm.923 2.101-.032-.032L12 13.114l7.003 5.188v.032c-1.655 2.897-4.202 4.616-6.987 4.616s-5.363-1.751-6.987-4.616M12 5.347l-8.53 6.335v-.032c.063-2.674.954-5.284 2.61-7.385C7.67 2.324 9.772 1.21 12 1.21s4.36 1.114 5.92 3.055 2.515 4.616 2.61 7.417v.032l-.031-.032z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/civicrm.svg����������������������������������0000664�0000000�0000000�00000002173�14753064456�0025262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.565 9.054c.248-.477.45-1.125.235-1.786-.25-.766-.939-1.275-2.051-1.511l-7.052-1.5L6.496.405C6.418.363 5.717 0 4.951 0 4.38 0 3.888.198 3.527.571c-.337.349-.539.834-.603 1.444a3 3 0 0 0-.199-.006c-1.089 0-1.648.456-1.926.839C.369 3.44.315 4.241.638 5.23l2.649 8.118.251 7.033c.044 1.222.719 2.536 2.098 2.537q.396 0 .82-.15c.328.556.92 1.232 1.864 1.232.666 0 1.324-.357 1.956-1.063l5.11-5.697 6.783-4.283c.147-.094 1.444-.95 1.398-2.229-.022-.642-.362-1.202-1.002-1.674M7.396 20.166l-2.328-7.134-.316-8.847 8.326 1.771 6.771 3.622-5.63 6.279zM20.377 7.51c.545.116.709.279.72.313.021.063-.017.196-.087.344l-1.623-.868zM4.951 1.792c.269 0 .607.145.7.193l1.738.929-2.693-.573c.013-.323.08-.484.12-.526.012-.011.062-.023.135-.023m-2.61 2.882c-.195-.595-.093-.773-.092-.774.019-.026.167-.099.476-.099q.126.001.221.011l.109 3.05zm2.988 15.642-.029-.798.514 1.574a.7.7 0 0 1-.178.034c-.146 0-.293-.5-.307-.81m3.614 1.424c-.414.463-.62.468-.622.468-.058 0-.185-.132-.301-.317l1.818-1.148zm12.27-10.299-1.445.913 1.695-1.89c.249.174.313.298.314.329.006.133-.287.468-.564.648"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/civo.svg�������������������������������������0000664�0000000�0000000�00000002117�14753064456�0024564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.229 7.985h-.993c-.183 0-.303.14-.303.318v7.393c0 .177.12.318.303.318h.993a.32.32 0 0 0 .323-.318V8.303a.317.317 0 0 0-.323-.318m-3.1 5.838a.32.32 0 0 0-.507-.104 2.34 2.34 0 0 1-1.604.635c-1.627 0-2.868-1.65-2.141-3.368a2.13 2.13 0 0 1 1.13-1.128c.992-.42 1.958-.18 2.599.408a.32.32 0 0 0 .507-.103l.43-.943a.35.35 0 0 0-.111-.428C5.425 8.03 4.05 7.732 2.617 8.22a3.84 3.84 0 0 0-2.412 2.478c-.874 2.772 1.172 5.32 3.813 5.32.92 0 1.764-.31 2.44-.831a.35.35 0 0 0 .101-.42zm17.666-3.125a3.84 3.84 0 0 0-2.412-2.478 4.2 4.2 0 0 0-2.329-.13c-1.2.269-2.07.838-2.834 2.479l-1.534 3.326-2.603-5.722a.32.32 0 0 0-.29-.187l-1.138-.002a.32.32 0 0 0-.292.453l3.376 7.382a.32.32 0 0 0 .291.19l.056.005h1.276a.2.2 0 0 0 .076-.013.34.34 0 0 0 .2-.18l1.71-3.893c.515-1.213.827-1.718 1.643-2.065a2.53 2.53 0 0 1 2.054.026c.492.222.878.629 1.084 1.128a2.7 2.7 0 0 1 .206.95 2.354 2.354 0 0 1-2.353 2.387 2.34 2.34 0 0 1-1.604-.635.32.32 0 0 0-.507.104l-.43.944a.35.35 0 0 0 .1.42c.677.52 1.522.831 2.44.831 2.642 0 4.688-2.548 3.814-5.32"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/clarifai.svg���������������������������������0000664�0000000�0000000�00000001641�14753064456�0025377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.78 14.772A2.77 2.77 0 0 1 0 12.008a2.78 2.78 0 0 1 2.78-2.78 2.765 2.765 0 0 1 2.764 2.764c0 1.52-1.23 2.78-2.764 2.78M17.119 1.83c-2.05 0-2.142 1.732-5.27 1.732-3.16 0-3.419-1.732-5.287-1.732a2.765 2.765 0 0 0-2.765 2.765 2.775 2.775 0 0 0 2.765 2.764c2.066 0 2.157-1.731 5.286-1.731 3.16 0 3.418 1.731 5.286 1.731A2.765 2.765 0 0 0 19.9 4.595a2.78 2.78 0 0 0-2.78-2.765zm0 14.81c-2.066 0-2.157 1.732-5.286 1.732-3.16 0-3.418-1.731-5.286-1.731a2.765 2.765 0 0 0-2.765 2.764 2.775 2.775 0 0 0 2.765 2.765c2.066 0 2.157-1.732 5.286-1.732 3.16 0 3.418 1.732 5.286 1.732a2.765 2.765 0 0 0 0-5.53m4.101-7.397c-2.08 0-2.005 1.823-4.617 1.823-2.416-.015-2.446-1.823-4.755-1.823-1.443 0-2.628 1.322-2.628 2.765s1.2 2.764 2.765 2.764c2.08 0 2.005-1.823 4.618-1.823 2.415 0 2.445 1.808 4.77 1.808 1.442 0 2.627-1.322 2.627-2.765 0-1.427-1.2-2.749-2.78-2.749"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/claris.svg�����������������������������������0000664�0000000�0000000�00000001116�14753064456�0025077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.56 0a3.3 3.3 0 0 0-.57.043L22.947 12 10.99 23.957c.132.022.307.043.57.043 6.626 0 12-5.375 12-12s-5.374-12-12-12m-1.535 2.414C4.738 2.414.44 6.713.44 12s4.3 9.588 9.586 9.588c.264 0 .44-.023.57-.045L1.054 12l9.543-9.543a3.3 3.3 0 0 0-.57-.043zm.746 2.457c-.263 0-.438.021-.57.043L17.287 12l-7.086 7.086c.132.022.307.045.57.045 3.927 0 7.13-3.204 7.13-7.131s-3.203-7.129-7.13-7.129m-.416 2.434A4.7 4.7 0 0 0 5.66 12a4.7 4.7 0 0 0 4.695 4.695c.264 0 .44-.023.57-.045L6.274 12l4.653-4.65a3.3 3.3 0 0 0-.57-.045Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/clarivate.svg��������������������������������0000664�0000000�0000000�00000001672�14753064456�0025603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.262 18a20.6 20.6 0 0 0 3.246-1.476 21 21 0 0 0 2.852-2.064A14.5 14.5 0 0 0 19.82 12q.492.491.884 1.082.493.59.788 1.18.393.69.786 1.28.296.687.59 1.278a23 23 0 0 1-2.654 2.46 39 39 0 0 1-2.952 1.966A29.6 29.6 0 0 1 10.574 24l-.788-1.18q-.391-.69-.786-1.28-.314-.63-.59-1.278l-.59-1.376A20.4 20.4 0 0 0 11.26 18zm2.754-16.918a30 30 0 0 1 3.246 1.574q1.476.885 2.952 1.966a48 48 0 0 1 2.654 2.46q-.293.69-.59 1.28-.392.687-.786 1.278a6.2 6.2 0 0 1-.788 1.18q-.41.614-.884 1.18a18 18 0 0 0-2.46-2.558 21 21 0 0 0-2.852-2.064 20.4 20.4 0 0 0-6.688-2.36l.59-1.38q.295-.59.59-1.278l.786-1.18.788-1.18q1.77.393 3.442 1.082m-7.574 18q-.787.1-1.474.1H3.492q-.69 0-1.378-.1a34 34 0 0 1-.786-3.54 33 33 0 0 1 0-7.18q.295-1.772.786-3.444l1.378-.196h1.476q.689 0 1.474.098l1.378.196-.59 1.77q-.394 1.476-.59 3.05-.1 1.476-.1 3.05.1 1.572.394 3.048.394 1.575.886 2.952-.69.195-1.378.196"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/claude.svg�����������������������������������0000664�0000000�0000000�00000003024�14753064456�0025057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4.714 15.956 4.718-2.648.079-.23-.08-.128h-.23l-.79-.048-2.695-.073-2.337-.097-2.265-.122-.57-.121-.535-.704.055-.353.48-.321.685.06 1.518.104 2.277.157 1.651.098 2.447.255h.389l.054-.158-.133-.097-.103-.098-2.356-1.596-2.55-1.688-1.336-.972-.722-.491L2 6.223l-.158-1.008.656-.722.88.06.224.061.893.686 1.906 1.476 2.49 1.833.364.304.146-.104.018-.072-.164-.274-1.354-2.446-1.445-2.49-.644-1.032-.17-.619a3 3 0 0 1-.103-.729L6.287.133 6.7 0l.995.134.42.364.619 1.415L9.735 4.14l1.555 3.03.455.898.243.832.09.255h.159V9.01l.127-1.706.237-2.095.23-2.695.08-.76.376-.91.747-.492.583.28.48.685-.067.444-.286 1.851-.558 2.903-.365 1.942h.213l.243-.242.983-1.306 1.652-2.064.728-.82.85-.904.547-.431h1.032l.759 1.129-.34 1.166-1.063 1.347-.88 1.142-1.263 1.7-.79 1.36.074.11.188-.02 2.853-.606 1.542-.28 1.84-.315.832.388.09.395-.327.807-1.967.486-2.307.462-3.436.813-.043.03.049.061 1.548.146.662.036h1.62l3.018.225.79.522.473.638-.08.485-1.213.62-1.64-.389-3.825-.91-1.31-.329h-.183v.11l1.093 1.068 2.003 1.81 2.508 2.33.127.578-.321.455-.34-.049-2.204-1.657-.85-.747-1.925-1.62h-.127v.17l.443.649 2.343 3.521.122 1.08-.17.353-.607.213-.668-.122-1.372-1.924-1.415-2.168-1.141-1.943-.14.08-.674 7.254-.316.37-.728.28-.607-.461-.322-.747.322-1.476.388-1.924.316-1.53.285-1.9.17-.632-.012-.042-.14.018-1.432 1.967-2.18 2.945-1.724 1.845-.413.164-.716-.37.066-.662.401-.589 2.386-3.036 1.439-1.882.929-1.086-.006-.158h-.055L4.138 18.56l-1.13.146-.485-.456.06-.746.231-.243 1.907-1.312Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/clerk.svg������������������������������������0000664�0000000�0000000�00000001205�14753064456�0024721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.47 20.829-2.881-2.881a.57.57 0 0 0-.7-.084 6.85 6.85 0 0 1-7.081 0 .576.576 0 0 0-.7.084l-2.881 2.881a.576.576 0 0 0-.103.69.6.6 0 0 0 .166.186 12 12 0 0 0 14.113 0 .58.58 0 0 0 .239-.423.58.58 0 0 0-.172-.453m.002-17.668-2.88 2.88a.57.57 0 0 1-.701.084A6.857 6.857 0 0 0 8.724 8.08a6.86 6.86 0 0 0-1.222 3.692 6.86 6.86 0 0 0 .978 3.764.57.57 0 0 1-.083.699l-2.881 2.88a.567.567 0 0 1-.864-.063A11.993 11.993 0 0 1 6.771 2.7a11.99 11.99 0 0 1 14.637-.405.57.57 0 0 1 .232.418.57.57 0 0 1-.168.448m-7.118 12.261a3.427 3.427 0 1 0 0-6.854 3.427 3.427 0 0 0 0 6.854"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/clevercloud.svg������������������������������0000664�0000000�0000000�00000000543�14753064456�0026134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.823 11.139 11.253 0 1.608 5.57zM1.235 6.646v10.708L4.325 12zM12 23.57l6.43-11.14H5.57zM12 .43 5.57 11.57h12.86zm10.764 16.924V6.646L19.674 12zm.001.862-.374.215-3.215-5.57L12.746 24zm0-12.431L12.745 0l6.431 11.139 3.215-5.57zM1.235 18.216 11.254 24l-6.43-11.138-3.216 5.569z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/clickhouse.svg�������������������������������0000664�0000000�0000000�00000000322�14753064456�0025751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.333 10H24v4h-2.667ZM16 1.335h2.667v21.33H16Zm-5.333 0h2.666v21.33h-2.666ZM0 22.665V1.335h2.667v21.33zm5.333-21.33H8v21.33H5.333Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/clickup.svg����������������������������������0000664�0000000�0000000�00000000462�14753064456�0025257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2 18.439 3.69-2.828c1.961 2.56 4.044 3.739 6.363 3.739 2.307 0 4.33-1.166 6.203-3.704L22 18.405C19.298 22.065 15.941 24 12.053 24 8.178 24 4.788 22.078 2 18.439M12.04 6.15l-6.568 5.66-3.036-3.52L12.055 0l9.543 8.296-3.05 3.509z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/clion.svg������������������������������������0000664�0000000�0000000�00000000615�14753064456�0024731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm7.041 3a5 5 0 0 1 .219 0c1.86 0 3 .6 3.9 1.56L9.78 6.18C9 5.46 8.22 5.04 7.26 5.04c-1.68 0-2.88 1.38-2.88 3.12 0 1.68 1.2 3.12 2.88 3.12 1.14 0 1.86-.48 2.64-1.14l1.38 1.38c-1.02 1.08-2.16 1.8-4.08 1.8a5.1 5.1 0 0 1-5.1-5.16A5.05 5.05 0 0 1 7.04 3zm5.738.12H15v8.1h4.32v1.86h-6.54V3.12zM2.28 19.5h9V21h-9z"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/clockify.svg���������������������������������0000664�0000000�0000000�00000001050�14753064456�0025422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.351 20.404a8.3 8.3 0 0 0 3.14-.616l2.69 2.694A11.9 11.9 0 0 1 13.352 24C6.73 24 1.36 18.627 1.36 12S6.73 0 13.351 0c2.097 0 4.065.54 5.78 1.487l-2.648 2.649a8.3 8.3 0 0 0-3.132-.613c-4.638 0-8.397 3.779-8.397 8.44 0 4.662 3.76 8.44 8.397 8.44m2.176-12.155 5.51-5.514 1.578 1.577-5.51 5.514zm-2.233 5.635a1.956 1.956 0 0 1-1.952-1.961c0-1.083.874-1.961 1.952-1.961 1.079 0 1.952.878 1.952 1.96a1.956 1.956 0 0 1-1.952 1.962m9.347 5.695-1.578 1.578-5.51-5.514 1.577-1.578z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/clojure.svg����������������������������������0000664�0000000�0000000�00000002440�14753064456�0025266�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.503 12.216c-.119.259-.251.549-.387.858-.482 1.092-1.016 2.42-1.21 3.271a5 5 0 0 0-.112 1.096q.001.247.022.514c.682.25 1.417.388 2.186.39a6.4 6.4 0 0 0 2.001-.326 4 4 0 0 1-.418-.441c-.854-1.089-1.329-2.682-2.082-5.362M8.355 6.813A6.35 6.35 0 0 0 5.657 12a6.35 6.35 0 0 0 2.625 5.134c.39-1.622 1.366-3.107 2.83-6.084q-.13-.36-.297-.775c-.406-1.018-.991-2.198-1.513-2.733a4.3 4.3 0 0 0-.947-.729m9.172 12.464c-.84-.105-1.533-.232-2.141-.446A7.625 7.625 0 0 1 4.376 12a7.6 7.6 0 0 1 2.6-5.73 5.6 5.6 0 0 0-1.324-.162c-2.236.02-4.597 1.258-5.58 4.602-.092.486-.07.854-.07 1.29 0 6.627 5.373 12 12 12 4.059 0 7.643-2.017 9.815-5.101-1.174.293-2.305.433-3.271.436q-.543 0-1.019-.058m-2.254-2.325c.074.036.242.097.475.163a6.35 6.35 0 0 0 2.6-5.115h-.002a6.354 6.354 0 0 0-6.345-6.345 6.3 6.3 0 0 0-1.992.324c1.289 1.468 1.908 3.566 2.507 5.862l.001.003c.001.002.192.637.518 1.48.326.842.789 1.885 1.293 2.645.332.51.697.876.945.983M12.001 0a11.98 11.98 0 0 0-9.752 5.013c1.134-.71 2.291-.967 3.301-.957 1.394.004 2.491.436 3.017.732q.19.11.366.233A7.625 7.625 0 0 1 19.625 12a7.6 7.6 0 0 1-2.268 5.425c.344.038.709.063 1.084.061 1.328 0 2.766-.293 3.842-1.198.703-.592 1.291-1.458 1.617-2.757q.099-.753.1-1.531c0-6.627-5.371-12-11.999-12"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cloud66.svg����������������������������������0000664�0000000�0000000�00000004133�14753064456�0025106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.985.317C7.087 2.716 2.967.423 2.967.423 1.107 3.486.216 6.175 0 8.527h24c-.217-2.351-1.108-5.036-2.967-8.096 0 0-4.12 2.29-9.019-.108zM5.22 3.527c.424 0 .745.086.89.16l-.166.641a1.8 1.8 0 0 0-.687-.133c-.648 0-1.152.387-1.152 1.182 0 .716.428 1.167 1.157 1.167.247 0 .52-.054.682-.117l.124.632c-.15.074-.489.159-.929.159-1.248 0-1.891-.775-1.891-1.793 0-1.22.879-1.898 1.972-1.898m6.314 0c1.11 0 1.714.822 1.714 1.809 0 1.171-.717 1.882-1.773 1.882-1.072 0-1.7-.8-1.7-1.819 0-1.07.692-1.872 1.759-1.872m7.81.033c.685 0 1.13.122 1.478.382.376.276.612.715.612 1.346 0 .683-.252 1.156-.6 1.448-.381.312-.96.46-1.667.46-.424 0-.724-.026-.928-.052v-3.51c.3-.048.691-.074 1.104-.074m-12.341.027h.82V6.48h1.435v.679H7.003zm7.178 0H15v2.056c0 .615.236.928.654.928.43 0 .664-.297.664-.928V3.587h.816V5.59c0 1.103-.564 1.628-1.507 1.628-.911 0-1.447-.499-1.447-1.639zm-2.672.582c-.55 0-.87.521-.87 1.217 0 .7.331 1.195.876 1.195.55 0 .865-.52.865-1.216 0-.643-.31-1.196-.87-1.196m7.92.01c-.182 0-.3.017-.37.033v2.343c.07.016.182.016.284.016.74.005 1.222-.399 1.222-1.254.005-.744-.433-1.138-1.135-1.138M.006 9.79c-.28 10.276 11.98 13.888 11.98 13.888l.03.006s12.266-3.614 11.98-13.894zm10.769 1.28a6 6 0 0 1 .326.008v1.413c-.212 0-.437 0-.737.024-1.685.133-2.434.967-2.646 1.884h.038c.399-.398.961-.628 1.723-.628 1.36 0 2.508.93 2.508 2.56 0 1.558-1.236 2.839-2.996 2.839-2.159 0-3.22-1.557-3.22-3.43 0-1.473.562-2.705 1.436-3.491.811-.713 1.86-1.1 3.132-1.16a6 6 0 0 1 .436-.02m6.926 0a6 6 0 0 1 .327.008v1.413c-.211 0-.436 0-.736.024-1.685.133-2.434.967-2.646 1.884h.038c.399-.398.961-.628 1.723-.628 1.36 0 2.507.93 2.507 2.56 0 1.558-1.235 2.839-2.995 2.839-2.16 0-3.22-1.557-3.22-3.43 0-1.473.562-2.705 1.436-3.491.811-.713 1.86-1.1 3.132-1.16a6 6 0 0 1 .435-.02m-8.847 4.006c-.512 0-.936.3-1.123.7-.05.096-.075.242-.075.46.037.833.449 1.582 1.31 1.582h.013c.661 0 1.085-.593 1.085-1.39 0-.725-.399-1.352-1.21-1.352m6.928 0c-.512 0-.936.3-1.123.7-.05.096-.075.242-.075.46.037.833.449 1.582 1.31 1.582h.013c.661 0 1.085-.593 1.085-1.39 0-.725-.4-1.352-1.21-1.352"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cloudbees.svg��������������������������������0000664�0000000�0000000�00000001223�14753064456�0025566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.87.283C3.081.283 0 3.32 0 7.05c0 3.732 3.082 6.767 6.87 6.767h2.429v-3.495h-2.43c-1.83 0-3.319-1.468-3.319-3.272s1.488-3.27 3.32-3.27q1.101 0 1.928.567l2.51-2.473Q9.436.284 6.87.284zm5.152 2.231c-.066-.005-.141.08-.35.252l-.028.026-1.922 1.882c-.323.315-.29.203-.066.556a3.2 3.2 0 0 1 .532 1.749v9.991c0 3.73 3.096 6.747 6.908 6.747C20.907 23.717 24 20.7 24 16.97c0-3.728-3.093-6.75-6.904-6.75H13.76V6.979c0-1.495-.512-3.002-1.436-4.158-.175-.203-.234-.3-.3-.307zm5.246 11.209c1.762.088 3.168 1.502 3.168 3.247 0 1.802-1.5 3.264-3.342 3.264s-3.335-1.477-3.335-3.28v-3.219h3.509z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cloudcannon.svg������������������������������0000664�0000000�0000000�00000002025�14753064456�0026125�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.686 7.602c.321-1.964-1.203-3.778-3.21-3.778-.91 0-1.733.376-2.325.977a1.13 1.13 0 0 0-1.061-.744c-.63 0-1.141.51-1.141 1.14s.429.909 1.34 1.335a6 6 0 0 1 .813.46q.413.276.776.612A6.02 6.02 0 0 1 17.796 12a6.02 6.02 0 0 1-2.694 5.008 6 6 0 0 1-.813.46c-.911.427-1.34.704-1.34 1.335 0 .63.51 1.141 1.14 1.141.492 0 .9-.312 1.062-.744.592.6 1.414.976 2.325.976 2.025 0 3.527-1.81 3.21-3.778C22.61 15.842 24 14.026 24 12.001c0-2.038-1.382-3.837-3.314-4.399M9.711 17.468a6.2 6.2 0 0 1-1.589-1.073A6.02 6.02 0 0 1 6.204 12a6.02 6.02 0 0 1 1.918-4.395 6.2 6.2 0 0 1 1.589-1.072c.91-.427 1.34-.704 1.34-1.335s-.51-1.141-1.14-1.141c-.492 0-.9.312-1.062.744a3.26 3.26 0 0 0-2.325-.976c-2.003 0-3.536 1.807-3.21 3.778C1.381 8.164 0 9.962 0 12c0 2.028 1.38 3.836 3.314 4.397-.323 1.954 1.198 3.778 3.21 3.778.91 0 1.733-.375 2.325-.976.162.432.57.744 1.061.744.63 0 1.141-.51 1.141-1.14 0-.631-.429-.909-1.34-1.335M12 8.443a3.557 3.557 0 1 1 0 7.114 3.557 3.557 0 0 1 0-7.114"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cloudera.svg���������������������������������0000664�0000000�0000000�00000000501�14753064456�0025415�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m.344 20.251a8.25 8.25 0 1 1 0-16.502 8.2 8.2 0 0 1 5.633 2.234L15.519 8.53a4.69 4.69 0 0 0-3.175-1.239 4.709 4.709 0 1 0 3.284 8.081l2.657 2.346a8.22 8.22 0 0 1-5.941 2.533"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cloudflare.svg�������������������������������0000664�0000000�0000000�00000001525�14753064456�0025746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.509 16.845c.147-.507.09-.971-.155-1.316-.225-.316-.605-.499-1.062-.52l-8.66-.113a.16.16 0 0 1-.133-.07.2.2 0 0 1-.02-.156.24.24 0 0 1 .203-.156l8.736-.113c1.035-.049 2.16-.886 2.554-1.913l.499-1.302a.27.27 0 0 0 .014-.168 5.689 5.689 0 0 0-10.937-.584 2.58 2.58 0 0 0-1.794-.498 2.56 2.56 0 0 0-2.223 3.18A3.634 3.634 0 0 0 0 16.751q.002.264.035.527a.174.174 0 0 0 .17.148h15.98c.091 0 .176-.065.204-.155zm2.757-5.564c-.077 0-.161 0-.239.011-.056 0-.105.042-.127.098l-.337 1.174c-.148.507-.092.971.154 1.317.225.316.605.498 1.062.52l1.844.113c.056 0 .105.026.133.07a.2.2 0 0 1 .021.156.24.24 0 0 1-.204.156l-1.92.112c-1.042.049-2.159.887-2.553 1.914l-.141.358c-.028.072.021.142.099.142h6.597a.174.174 0 0 0 .17-.126c.111-.408.175-.837.175-1.28a4.74 4.74 0 0 0-4.734-4.727"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cloudflarepages.svg��������������������������0000664�0000000�0000000�00000001240�14753064456�0026760�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.715 14.32H5.442l-.64-1.203L13.673 0l1.397.579-1.752 9.112h5.24l.648 1.192L10.719 24l-1.412-.54ZM4.091 5.448a.579.579 0 1 1 0-1.157.579.579 0 0 1 0 1.157m1.543 0a.579.579 0 1 1 0-1.157.579.579 0 0 1 0 1.157m1.544 0a.579.579 0 1 1 0-1.157.579.579 0 0 1 0 1.157m8.657-2.7h5.424l.772.771v16.975l-.772.772h-7.392l.374-.579h6.779l.432-.432V3.758l-.432-.432h-4.676l-.552 2.85h-.59l.529-2.877.108-.552ZM2.74 21.265l-.772-.772V3.518l.772-.771h7.677l-.386.579H2.98l-.432.432v16.496l.432.432h5.586l-.092.579zm1.157-1.93h3.28l-.116.58h-3.55l-.192-.193v-3.473l.578 1.158zm13.117 0 .579.58H14.7l.385-.58z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cloudflareworkers.svg������������������������0000664�0000000�0000000�00000000443�14753064456�0027361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.213.063 8.879 12.136-8.67 11.739h2.476l8.665-11.735-8.89-12.14Zm4.728 0 9.02 11.992-9.018 11.883h2.496L24 12.656v-1.199L15.434.063ZM7.178 2.02.01 11.398l-.01 1.2 7.203 9.644 1.238-1.676-6.396-8.556 6.361-8.313Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cloudfoundry.svg�����������������������������0000664�0000000�0000000�00000003226�14753064456�0026343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.854 13.537c-.048 1.79.074 3.862.149 4.917.96.136 1.633.456 1.633.83 0 .497-1.193 1.07-2.665 1.07s-2.665-.573-2.665-1.07c0-.374.673-.694 1.633-.83.075-1.055.197-3.127.15-4.917-.044-1.613-.779-3.091-1.676-3.821-.725-.59-1.174-1.427-1.166-2.354.016-1.765 1.683-3.186 3.724-3.186s3.708 1.42 3.723 3.186c.008.927-.44 1.763-1.165 2.354-.897.73-1.632 2.208-1.675 3.821m6.214 6.596c.287-.115.612-.177.951-.19-.007-.24-.166-.672-.303-.877-.56-.1-1.276-.313-1.658-.682a.48.48 0 0 1-.186-.41c.026-.146.133-.253.278-.329a8 8 0 0 0-1.08-.515 4.6 4.6 0 0 1-1.697-.124c-.303-.09-.764-.24-.82-.549-.16-.03-.54-.083-.766-.112a4 4 0 0 0-.07.31.815.815 0 0 0 .56.956c1 .291 1.756.77 1.974 1.359.44 1.19-1.413 2.353-4.231 2.353-2.82 0-4.673-1.163-4.233-2.353.213-.574.94-1.044 1.903-1.337a.863.863 0 0 0 .589-1.005l-.06-.283c-.291.03-.779.101-1.031.148-.019.313-.476.466-.76.564a4.7 4.7 0 0 1-1.708.147 8 8 0 0 0-1.052.535c.544.23.316.736-.09.97-.407.253-.842.409-1.38.51-.051.088-.111.298-.163.438-.016.136-.063.367-.053.459.645.02 1.268.152 1.62.605.281.508-.024.976-.51 1.364.392.316.986.673 1.45.868a4.8 4.8 0 0 1 2.715-.269c.718.16 1.506.581 1.742 1.289.635.042 1.895.04 2.528-.041.182-.731.907-1.147 1.606-1.326a4.8 4.8 0 0 1 2.712.193c.356-.18 1.03-.602 1.306-.9-.474-.358-.873-.794-.63-1.325.085-.19.301-.33.547-.44zm-9.54-5.848s.418-1.586-1.4-3.632A5 5 0 0 1 6.88 7.346a5.05 5.05 0 0 1 5.047-5.04c2.822-.065 5.168 2.218 5.164 5.04a4.98 4.98 0 0 1-1.248 3.306c-1.614 1.616-1.4 3.633-1.4 3.633a7.35 7.35 0 0 0 4.956-6.898c.035-4.021-3.39-7.47-7.414-7.385-4.027-.083-7.447 3.364-7.413 7.385a7.35 7.35 0 0 0 4.956 6.898"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cloudinary.svg�������������������������������0000664�0000000�0000000�00000002446�14753064456�0026002�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 14.86c0 2.173-1.376 3.974-3.59 4.7l-.1.031V17.99c1.378-.58 2.187-1.727 2.187-3.13a3.684 3.684 0 0 0-3.608-3.669h-.596l-.144-.569a6.5 6.5 0 0 0-6.272-4.97 6.39 6.39 0 0 0-5.81 3.664l-.184.376-.417.044a4.43 4.43 0 0 0-3.305 2.088 4.43 4.43 0 0 0 1.458 6.095v1.69h-.01l-.149-.068a5.94 5.94 0 0 1-3.366-4.35 5.94 5.94 0 0 1 4.8-6.894 7.88 7.88 0 0 1 6.983-4.15 8.03 8.03 0 0 1 7.59 5.589A5.21 5.21 0 0 1 24 14.86M8.682 13.538h.565a.066.066 0 0 0 .046-.111l-2.209-2.211a.066.066 0 0 0-.093 0l-2.211 2.21a.066.066 0 0 0 .048.112h.556a.066.066 0 0 1 .066.065v5.058c0 .659.534 1.193 1.193 1.193h2.604a.066.066 0 0 0 .046-.112l-.33-.33a1.2 1.2 0 0 1-.348-.839v-4.97a.07.07 0 0 1 .067-.065m9.77 2.546h.566a.066.066 0 0 0 .046-.113l-2.21-2.209-.002-.001a.064.064 0 0 0-.09.001l-2.211 2.209a.066.066 0 0 0 .046.113h.556a.066.066 0 0 1 .066.066v2.51c0 .66.534 1.193 1.193 1.193h2.606a.066.066 0 0 0 .046-.11l-.33-.33a1.2 1.2 0 0 1-.348-.84V16.15a.066.066 0 0 1 .066-.066zm-4.885-1.274h.565a.066.066 0 0 0 .047-.111l-2.21-2.203h-.001a.066.066 0 0 0-.093 0l-2.208 2.207a.066.066 0 0 0 .045.111h.563a.07.07 0 0 1 .066.068v3.779c0 .659.534 1.193 1.192 1.193h2.599a.066.066 0 0 0 .047-.112l-.332-.33a1.2 1.2 0 0 1-.346-.839v-3.695c0-.037.03-.067.066-.068"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cloudron.svg���������������������������������0000664�0000000�0000000�00000001352�14753064456�0025451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.016.86c-2.676-.004-5.353.182-6.002.562C4.714 2.182.002 10.46 0 11.984c-.002 1.525 4.69 9.813 5.986 10.577 1.297.764 10.701.778 12 .017 1.3-.76 6.012-9.038 6.014-10.562.002-1.525-4.69-9.813-5.986-10.577-.649-.382-3.323-.576-5.998-.58zm-.268 4.363h2.38c.85 0 1.534.682 1.534 1.53V9.23a1.53 1.53 0 0 1-1.533 1.533h-2.381q-.191-.002-.367-.047l.002.047v2.476l-.002.047q.176-.045.367-.047h2.38a1.53 1.53 0 0 1 1.534 1.533v2.475c0 .849-.684 1.531-1.533 1.531h-2.381a1.53 1.53 0 0 1-1.533-1.53V14.77l.002-.046a1.5 1.5 0 0 1-.365.045H7.469a1.527 1.527 0 0 1-1.532-1.532v-2.476c0-.849.683-1.532 1.532-1.532h2.383q.19.002.365.045l-.002-.046V6.754c0-.849.684-1.531 1.533-1.531"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cloudsmith.svg�������������������������������0000664�0000000�0000000�00000000315�14753064456�0025775�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 10.667v2.667L13.333 24h-2.666L0 13.334v-2.667L10.667 0h2.666zm-12 6.869a5.535 5.535 0 1 0 0-11.07 5.535 5.535 0 0 0 0 11.07"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cloudways.svg��������������������������������0000664�0000000�0000000�00000002276�14753064456�0025644�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.795 5.522a4.94 4.94 0 0 0-2.485.717.43.43 0 0 1-.236.066q-4.075-.003-8.151-.002a.594.594 0 0 0-.594.45.57.57 0 0 0 .284.66c.112.056.25.082.377.082 2.25.005 4.499.003 6.749.004.044 0 .09.003.152.006l-.09.13a5 5 0 0 0-.674 1.302c-.03.09-.075.113-.166.113-2.545-.003-4.844-.003-7.193-.002a.6.6 0 0 0-.581.456.584.584 0 0 0 .312.668.9.9 0 0 0 .35.069q2.886.004 5.771.003h.123a.2.2 0 0 1-.074.085q-.751.55-1.218 1.356c-.046.08-.095.109-.188.109a5042 5042 0 0 0-7.687-.002.598.598 0 0 0-.566.706c.06.3.3.49.624.49h7.304a5.1 5.1 0 0 0-.074 1.567H7.27c-.233 0-.357.117-.364.349a8 8 0 0 0 0 .474q.011.354.37.355.403.003.807-.001c.075-.002.112.023.142.092.186.428.439.816.75 1.165.082.092.168.18.274.292h-5.01a.6.6 0 0 0-.574.48.585.585 0 0 0 .35.664.8.8 0 0 0 .305.051c5.458.004 10.345.01 15.371-.018a4 4 0 0 0 1.121-.172c2.333-.688 3.704-3.159 3.006-5.566-.434-1.496-1.413-2.504-2.888-3.02-.067-.024-.095-.054-.108-.124a4 4 0 0 0-.098-.39c-.645-2.184-2.653-3.712-4.929-3.664M.758 14.556a.31.31 0 0 0-.323.315c-.004.158-.002.316-.002.474.001.274.119.388.396.388h4.163c.203 0 .351-.125.357-.306a9 9 0 0 0 0-.544c-.006-.192-.14-.327-.327-.327z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/clubforce.svg��������������������������������0000664�0000000�0000000�00000000555�14753064456�0025574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.4 0C.624 0 0 .624 0 1.4v21.2c0 .776.624 1.4 1.4 1.4h21.2c.776 0 1.4-.624 1.4-1.4V1.4c0-.776-.624-1.4-1.4-1.4Zm4.778 5.5h9.61l-2.83 2.112H8.331v3.472L6.18 12.72V5.5Zm11.644 1.317v7.415L11.96 18.5l-4.786-3.629 1.675-1.317 3.111 2.354 3.19-2.392-3.23-2.234 1.834-1.355 1.955 1.355v-2.87Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/clubhouse.svg��������������������������������0000664�0000000�0000000�00000004556�14753064456�0025626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 9.543c0 .32-.23.763-.337.976-.39.833-1.03 2.112-1.03 3.585 0 3.213-1.135 4.811-2.023 5.628a5.7 5.7 0 0 1-3.852 1.527 6.14 6.14 0 0 1-3.32-.976c-1.366-.905-2.219-2.326-3.088-3.745-.692-1.153-1.171-2.06-1.918-3.816-.421-1.018-.813-2.012-1.15-3.094-.16-.514-.142-.905.053-1.153.195-.23.462-.337.78-.355.55-.018.764.373 1.083 1.384.195.639.586 1.563.816 2.077.302.621.728 1.455.923 1.74.16.25.302.32.461.32.284 0 .497-.16.497-.443 0-.16-.16-.426-.248-.586-.16-.302-.497-.905-.728-1.42a33 33 0 0 1-.763-1.917c-.142-.373-.301-.905-.461-1.437-.248-.816-.373-1.313-.373-1.687 0-.568.426-.94 1.065-.94.461 0 .763.23.958 1.064.16.763.444 2.006.852 2.982.266.639.656 1.492.887 1.918.142.248.301.461.301.55 0 .124-.23.32-.426.585-.124.16-.177.267-.177.39 0 .107.071.214.177.356.107.142.213.284.338.284.088 0 .142-.036.195-.107a6.1 6.1 0 0 1 1.847-1.563c.816-.461 1.651-.692 2.308-.834.319-.07.408-.142.408-.32 0-.212-.16-.336-.373-.354-.16-.018-.301 0-.55.018-.177.018-.266-.071-.372-.302-.32-.674-.94-1.811-1.313-3.266a14 14 0 0 1-.39-2.13c-.054-.391.017-.533.212-.71.249-.213.692-.302 1.03-.213.407.106.62.426.833 1.67.107.585.284 1.33.497 1.97.266.816.603 1.492 1.118 2.397.284.497.638 1.011 1.011 1.51-.071.213-.195.354-.603.692s-.816.692-1.189 1.348c-.266.479-.39 1.011-.39 1.366 0 .337.07.408.284.408.372 0 .674-.07.692-.23.088-.64.195-1.047.55-1.528.212-.266.585-.603.887-.87.567-.46.763-.727.958-1.383.088-.302.195-.586.337-.852.337-.62.94-1.33 1.882-1.33.302 0 .55.088.71.337a.97.97 0 0 1 .124.479M12.608 7.265c.16.658.355 1.226.55 1.723.23.605.497 1.12.87 1.811.177.337.265.337.691.107a9 9 0 0 1 1.207-.515c-.639-1.384-1.171-2.539-1.437-3.514a30 30 0 0 1-.39-1.918c-.054-.497-.107-.923-.231-1.384-.142-.568-.338-.834-.888-.834-.514 0-1.135.266-1.135.94 0 .444.124 1.1.248 1.631.213.516.249.835.515 1.953m-7.484 7.147c-.43.116-2.276.784-2.721.957-.503.195-.857.372-.605 1.122.205.607.553.636.874.516.45-.166 2.442-1.21 2.818-1.442.34-.21.45-.37.29-.769-.145-.363-.354-.465-.656-.384m-1.276-3.074c.252-.008.448-.09.508-.526.047-.335-.006-.51-.39-.629-.371-.114-2.702-.494-3.205-.542-.434-.042-.702 0-.753.687-.049.64.13.836.572.88.508.05 2.733.144 3.268.13m-2.63-6.082c.474.283 2.293 1.385 2.906 1.579.306.096.468.01.64-.331s.218-.477-.111-.742c-.34-.274-2.123-1.661-2.628-1.924-.435-.226-.729-.139-.993.361-.299.566-.244.798.185 1.057z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/clyp.svg�������������������������������������0000664�0000000�0000000�00000001152�14753064456�0024571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 17.958a1.137 1.137 0 0 1-1.138-1.136V7.235a1.138 1.138 0 0 1 2.275 0v9.59c0 .625-.51 1.133-1.138 1.133m7.44 2.44a1.137 1.137 0 0 1-1.14-1.138V4.796a1.138 1.138 0 0 1 2.276 0V19.26c0 .627-.51 1.136-1.138 1.136M15.72 24a1.137 1.137 0 0 1-1.138-1.136V1.138a1.138 1.138 0 0 1 2.276 0v21.726c0 .627-.509 1.136-1.138 1.136m-7.436-3.16a1.137 1.137 0 0 1-1.138-1.136V4.298a1.138 1.138 0 0 1 2.276 0v15.406c0 .628-.51 1.137-1.138 1.137m-3.72-4.989a1.137 1.137 0 0 1-1.138-1.135V9.286a1.138 1.138 0 0 1 2.276 0v5.432c0 .626-.51 1.135-1.138 1.135z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cmake.svg������������������������������������0000664�0000000�0000000�00000000340�14753064456�0024700�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.769.066.067 23.206l12.76-10.843zm11.438 23.868L7.471 17.587 0 23.934zm.793-.198L12.298.463l1.719 19.24zM12.893 12.959l-5.025 4.298 5.62 2.248z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cncf.svg�������������������������������������0000664�0000000�0000000�00000000536�14753064456�0024540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0H8.004Zm3.431 3.431h4.544l.029.023 4.544 4.544h3.03l-4.572-4.567h9.569v9.563l-.789-.782-3.784-3.79v3.03l2.271 2.272 2.272 2.272.029.03v4.543h-4.55l-.023-.023-2.272-2.278-2.272-2.272h-3.03l3.785 3.79.782.783H3.43v-9.563l4.573 4.567v-3.031l-4.55-4.544-.023-.023Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cnet.svg�������������������������������������0000664�0000000�0000000�00000001537�14753064456�0024562�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.89 9.262C.664 9.262 0 9.8 0 10.865v2.268c0 1.066.664 1.604 1.891 1.604h3.583v-2.353h-.293c-.13 1.365-.731 1.941-1.914 1.941h-.74c-.576 0-.856-.287-.856-.854v-2.944c0-.567.28-.854.856-.854h.74c1.2 0 1.791.544 1.914 1.867h.293V9.262zm7.522 0v.275c1.274.127 1.856.668 1.856 2.102v1.716L7.905 9.262H6.229v5.475H8.55v-.275c-1.307-.143-1.886-.678-1.886-2.121v-1.963l3.582 4.359h1.457V9.262zm3.06 0v5.475h5.475v-2.352h-.293c-.13 1.369-.731 1.947-1.914 1.947h-1.647v-2.233h.558c.933 0 1.328.415 1.421 1.316h.298v-3.009h-.298c-.094.896-.49 1.314-1.421 1.314h-.558V9.667h1.646c1.201 0 1.791.545 1.915 1.873h.293V9.262zm6.053 0v2.278h.294c.126-1.253.65-1.835 1.633-1.941v3.85c0 .669-.236.937-1.099.993v.295h3.82v-.295c-.864-.056-1.1-.324-1.1-.993v-3.85c.983.106 1.507.688 1.634 1.941H24V9.262z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cnn.svg��������������������������������������0000664�0000000�0000000�00000002232�14753064456�0024400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.996 15.514c0 2.064-2.667 3.055-4.079.658l-2.325-4.004v3.346c0 2.064-2.666 3.055-4.077.658l-2.326-4.004v3.155c0 1.432-.85 2.207-2.179 2.207H5.53a5.53 5.53 0 0 1 0-11.06h1.794V7.8H5.53a4.202 4.202 0 1 0 0 8.403h3.45a.897.897 0 0 0 .879-.878v-6.8a.27.27 0 0 1 .193-.273c.141-.038.29.049.399.233l2.152 3.709 2.083 3.589c.28.474.699.557.997.475a.8.8 0 0 0 .582-.787V8.525a.27.27 0 0 1 .191-.274c.14-.038.287.049.395.233l1.995 3.437 2.242 3.865c.219.371.524.503.79.503a.8.8 0 0 0 .206-.028.8.8 0 0 0 .59-.79v-9H24zM8.003 13.97V8.486c0-2.064 2.667-3.055 4.078-.657.103.173 2.326 4.002 2.326 4.002V8.486c0-2.064 2.666-3.055 4.077-.657.103.173 2.325 4.002 2.325 4.002v-5.36h1.331v9a.27.27 0 0 1-.193.274c-.141.038-.29-.049-.4-.234a1360 1360 0 0 1-2.24-3.862l-1.994-3.434c-.28-.474-.696-.557-.992-.477a.8.8 0 0 0-.584.786v6.946a.27.27 0 0 1-.193.275c-.143.038-.291-.049-.399-.234-.02-.032-1.069-1.84-2.083-3.589l-2.153-3.71c-.28-.476-.698-.558-.997-.478a.8.8 0 0 0-.584.786v6.8a.37.37 0 0 1-.349.348H5.527a3.671 3.671 0 0 1 0-7.343h1.795v1.328h-1.78a2.343 2.343 0 1 0 0 4.687h2.094a.364.364 0 0 0 .367-.37Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cocacola.svg���������������������������������0000664�0000000�0000000�00000011120�14753064456�0025362�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.813 8.814s-.45.18-.973.756c-.524.577-.828 1.225-.603 1.397.087.066.287.079.65-.25a2.9 2.9 0 0 0 .766-1.063c.234-.57.16-.833.16-.84m2.863 1.038c-.581-.299-1.006-.664-1.448-.89-.422-.216-.695-.307-1.036-.261a1 1 0 0 0-.14.035s.176.6-.523 1.607c-.708 1.022-1.35 1.015-1.533.734-.191-.296.056-.9.468-1.437.432-.562 1.19-1.028 1.19-1.028s-.241-.148-.835.19c-.58.326-1.577 1.107-2.502 2.423-.926 1.316-1.11 2.04-1.242 2.61s-.012 1.18.62 1.18 1.368-.964 1.576-1.299c.386-.624.637-1.581.112-1.45-.259.065-.468.351-.6.627a2.7 2.7 0 0 0-.19.554 2.2 2.2 0 0 0-.513.298 4 4 0 0 0-.486.43s.002-.456.365-1.194c.364-.737 1.03-1.074 1.408-1.106.34-.027.783.262.408 1.327s-1.483 2.36-2.646 2.376c-1.073.015-1.776-1.355-.282-3.745C13.501 9.19 15.441 8.38 16.07 8.29c.63-.09.835.187.835.187a2.7 2.7 0 0 1 1.197-.197c.77.052 1.364.596 2.15.979-.205.195-.4.4-.575.592m3.454-.89c-.533.342-1.27.652-1.979.586-.179.185-.371.4-.563.634 1.228.243 2.305-.519 2.877-1.167A3.8 3.8 0 0 0 24 8.248a4.8 4.8 0 0 1-.869.714m-1.636 3.462a.3.3 0 0 0 .023-.051.124.124 0 0 0-.113-.108c-.117-.005-.277.017-.695.48a6.3 6.3 0 0 0-.89 1.263c-.24.438-.337.764-.2.848a.2.2 0 0 0 .146.015c.093-.022.199-.11.36-.295.075-.088.158-.212.258-.349.277-.376.973-1.563 1.111-1.803m-4.349.504c.07-.182.159-.541-.026-.682-.199-.15-.705.201-.708.561-.003.369.357.535.443.559.05.013.066.01.09-.029a3 3 0 0 0 .201-.409m-.383.67a1.5 1.5 0 0 1-.348-.222 1.1 1.1 0 0 1-.26-.317c-.008-.012-.015-.003-.023.008-.007.01-.039.039-.309.434-.27.396-.684 1.216-.31 1.355.241.09.641-.331.86-.61a5 5 0 0 0 .402-.614c.012-.023 0-.029-.012-.034m4.258.947c-.102.163-.218.476.117.281.41-.236.994-1.123.994-1.123h.265a9 9 0 0 1-.803 1.054c-.415.46-.922.879-1.28.837-.416-.048-.286-.596-.286-.596s-.596.635-1.01.59c-.557-.062-.387-.751-.387-.751s-.63.774-1.06.75c-.673-.04-.504-.859-.316-1.436.1-.308.193-.55.193-.55s-.067.017-.21.038c-.076.011-.212.019-.212.019s-.28.495-.505.792-1.178 1.322-1.74 1.117c-.518-.19-.346-.984-.044-1.615.44-.92 1.68-2.243 2.396-2.068.741.18.017 1.532.017 1.532s0 .005.007.009c.015.005.054.01.143-.008a1.6 1.6 0 0 0 .271-.08s.746-1.561 1.569-2.583c.823-1.02 2.465-2.78 3.11-2.354.156.105.086.465-.126.902a3 3 0 0 1-.291.078c.142-.258.236-.475.264-.627.097-.528-1.135.585-2.015 1.78a16.6 16.6 0 0 0-1.409 2.28 4 4 0 0 0 .454-.324 13 13 0 0 0 1.118-1.043 12 12 0 0 0 .951-1.098 3 3 0 0 0 .28-.029 12 12 0 0 1-1.05 1.24c-.35.355-.73.737-1.061 1.015a9 9 0 0 1-.931.691s-.77 1.553-.351 1.652c.246.06.732-.69.732-.69s.635-.967 1.017-1.404c.522-.593.97-.936 1.42-.942.261-.005.415.273.415.273l.123-.19h.757s-1.414 2.398-1.527 2.579m2.111-5.58c-.533.341-1.27.651-1.979.585-.18.185-.371.4-.564.634 1.229.243 2.305-.518 2.878-1.167A3.8 3.8 0 0 0 24 8.248a4.8 4.8 0 0 1-.869.714m-10.63 1.177h-.72l-.407.658h.72zm-3.41 2.277c.307-.42 1.152-1.891 1.152-1.891a.124.124 0 0 0-.112-.108c-.117-.006-.312.034-.7.519s-.688.87-.907 1.272c-.24.438-.346.747-.207.831a.2.2 0 0 0 .144.015c.09-.022.208-.113.369-.298a6 6 0 0 0 .262-.34m-3.863-1.99c-.199-.15-.705.201-.708.56-.003.369.456.482.515.484a.1.1 0 0 0 .05-.01.06.06 0 0 0 .024-.027 4 4 0 0 0 .146-.325c.07-.183.158-.541-.027-.682m-.3 1.27a1.7 1.7 0 0 1-.39-.18.8.8 0 0 1-.279-.309c-.007-.012-.015-.003-.022.008s-.047.061-.318.458c-.27.398-.672 1.21-.296 1.35.24.09.644-.334.864-.612a7 7 0 0 0 .455-.681c.009-.024 0-.03-.014-.034m5.88.244h.263s-1.321 1.912-2.068 1.823c-.416-.049-.293-.563-.293-.563s-.585.685-1.123.546c-.487-.125-.172-.936-.172-.936-.056.022-1.111 1.211-1.853.926-.776-.3-.373-1.296-.225-1.595.125-.253.263-.499.263-.499s-.119.034-.195.051l-.186.04s-.367.596-.591.894c-.225.297-1.178 1.32-1.74 1.117s-.423-.99-.107-1.615c.512-1.012 1.726-2.256 2.458-2.068.739.189.127 1.388.127 1.388s.147.019.5-.222c.507-.346 1.176-1.277 1.901-1.167.342.051.66.4.225 1.064-.139.213-.372.403-.55.215-.111-.118-.014-.33.103-.477a.46.46 0 0 1 .39-.179s.12-.273-.185-.269c-.247.005-.871.58-1.223 1.16-.323.533-.813 1.441-.322 1.639.451.182 1.309-.836 1.706-1.37.397-.533 1.302-1.742 2.062-1.79.261-.017.417.221.417.221l.088-.139h.759s-1.43 2.387-1.542 2.567c-.088.141-.204.46.117.281.322-.178.996-1.043.996-1.043m-.414 3.824a3.14 3.14 0 0 0-1.908-.557 1.17 1.17 0 0 0-.93.504c-.29-.505-.862-.815-1.747-.808-1.43.016-2.849.676-3.972.675-1.077 0-1.863-.677-1.837-1.88.047-2.109 1.83-4.009 3.16-4.864.767-.49 1.409-.637 1.828-.59.306.034.674.388.442.909-.341.761-.812.699-.795.335.01-.237.168-.386.286-.469a.6.6 0 0 1 .278-.068c.068-.057.117-.474-.429-.337s-1.21.676-1.84 1.371c-.63.696-1.61 2.011-1.852 3.392-.113.64-.039 1.808 1.48 1.795 1.287-.01 3.185-.859 4.929-.841a3.34 3.34 0 0 1 1.725.472c.451.278.992.684 1.184.961"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cockpit.svg����������������������������������0000664�0000000�0000000�00000001107�14753064456�0025256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.383 0 0 5.382 0 12s5.383 12 12 12 12-5.383 12-12S18.617 0 12 0m0 1.799A10.19 10.19 0 0 1 22.207 12 10.19 10.19 0 0 1 12 22.201 10.186 10.186 0 0 1 1.799 12 10.186 10.186 0 0 1 12 1.799m4.016 5.285c-.49-.018-1.232.368-1.899 1.031l-1.44 1.43-4.31-1.447-.842.867 3.252 2.47-.728.723a4.8 4.8 0 0 0-.639.787L7.451 12.8l-.476.484 1.947 1.444 1.424 1.943.48-.48-.144-1.98c.246-.16.497-.361.74-.603l.765-.76 2.495 3.274.869-.84-1.455-4.332 1.394-1.385c.89-.885 1.298-1.92.918-2.322a.55.55 0 0 0-.392-.158z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cockroachlabs.svg����������������������������0000664�0000000�0000000�00000001430�14753064456�0026417�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.645 16.155a13.01 13.01 0 0 0-4.479-13.287 11.6 11.6 0 0 1 5.815-1.546c.774 0 1.545.075 2.304.226l.32-1.282A13 13 0 0 0 18.98 0 12.93 12.93 0 0 0 12 2.03 12.93 12.93 0 0 0 5.021 0C4.139 0 3.26.089 2.396.266l.319 1.282a12 12 0 0 1 2.306-.226 11.64 11.64 0 0 1 5.817 1.544 13.01 13.01 0 0 0 .792 20.877l.375.257.373-.257c2.624-1.801 4.5-4.5 5.27-7.588zm-6.305 5.7A11.69 11.69 0 0 1 7.825 9.519a13 13 0 0 0 2.457 2.977 3.2 3.2 0 0 1 1.058 2.383zm.661-9.657a11.7 11.7 0 0 1-2.343-2.315 3.23 3.23 0 0 1 0-3.912 11.7 11.7 0 0 1 2.347-2.333c.9.671 1.697 1.468 2.37 2.366a3.2 3.2 0 0 1 0 3.832 11.8 11.8 0 0 1-2.374 2.362m.659 9.657v-6.976a3.2 3.2 0 0 1 1.06-2.383 13 13 0 0 0 2.455-2.977 11.69 11.69 0 0 1-3.515 12.336"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cocoapods.svg��������������������������������0000664�0000000�0000000�00000000646�14753064456�0025603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.812 17.176c-2.968 0-4.956-2.308-4.956-5.176 0-2.705 1.776-5.176 4.91-5.176 2.407 0 3.856 1.445 4.207 3.357h3.95C16.479 6.427 13.51 3.42 8.718 3.42 3.131 3.42 0 7.523 0 12c0 4.57 3.295 8.58 8.766 8.58 4.58 0 7.549-2.822 8.18-6.272h-4.02c-.467 1.609-1.916 2.868-4.114 2.868M24 12.068l-3.466 8.055-2.38-1.022 2.992-7.055-3.01-7.096 2.433-1.042Z"/></svg>������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cocos.svg������������������������������������0000664�0000000�0000000�00000012726�14753064456�0024741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.365 0h.002zc-.007.004-.002.066.018.143.19.787.395 1.67.395 1.7 0 .023-.242.247-.538.5s-.628.552-.735.663l-.175.182h-.247c-1.53-.004-3.06.014-4.588-.01-.578-.01-.855.407-.855.85q.009 9.575.007 19.15c0 .542.283.822.828.822h15.06c.542 0 .825-.28.825-.825V4.025q0-.839-.83-.838c-1.632 0-3.264.002-4.896-.006h-.208l-.546-.532c-.94-.915-1.62-1.455-2.762-2.18A17 17 0 0 0 10.366 0zm.955 1.35c.03-.004.232.125.47.3a17 17 0 0 1 2.497 2.31h.002c.465.52.903 1.057 1.268 1.6.357.53.935 1.546.935 1.64 0 .03.017.052.037.052s.083-.168.14-.374c.127-.45.126-.448.388.403.38 1.238.51 2.106.51 3.38 0 .992-.047 1.402-.23 2.12-.053.205-.066.318-.035.318.026 0 .184-.038.352-.086s.31-.08.318-.073c.028.027-.394.753-.692 1.19-1.246 1.828-2.718 2.91-4.358 3.206-.917.165-1.763.1-2.61-.198-.45-.158-.813-.348-1.398-.733-1.25-.82-2.206-2.292-2.68-4.12-.214-.82-.378-2.076-.378-2.895V9l.277.415c.403.603.89 1.217.93 1.172.006-.01-.104-.224-.247-.478-.302-.536-.303-.53-.08-1.39.362-1.406 1.112-2.862 2.108-4.098.143-.178.395-.43.614-.663.603-.644 1.29-1.32 1.342-1.27.01.01-.01.126-.045.257-.134.492-.33 1.332-.313 1.348.004.004.126-.216.197-.336.072-.124.096-.15.203-.344.21-.38.39-.7.395-.706s.132.112.28.264c.222.225.27.256.25.167-.014-.06-.123-.522-.245-1.028-.12-.506-.215-.938-.207-.96q0-.003.004-.003zm4.08 2.59h3.71c.372 0 .49.114.49.482v13.9c0 .36-.12.457-.558.457H6.42q-.78.002-1.56 0c-.33-.003-.453-.126-.453-.448V4.41c0-.343.12-.467.46-.467q1.756-.001 3.513 0c.048 0 .097.005.116.006h.1l-.007.006-.138.165c-.948 1.143-1.77 2.63-2.157 3.912-.053.176-.102.32-.11.32-.006 0-.207-.29-.443-.64-.237-.352-.448-.652-.47-.665-.074-.046-.01 3.277.075 3.897.305 2.222 1.053 3.926 2.292 5.214.62.646 1.705 1.31 2.633 1.612 1.36.444 2.87.33 4.27-.32 1.37-.638 2.723-1.993 3.706-3.713.366-.642.934-1.742.91-1.766-.01-.01-.255.05-.542.132a6 6 0 0 1-.533.14 1.4 1.4 0 0 1 .033-.292c.09-.534.103-1.682.027-2.396-.134-1.262-.344-2.09-.93-3.663-.467-1.258-.473-1.274-.5-1.274-.014 0-.092.238-.173.528-.082.29-.154.526-.16.526a.8.8 0 0 1-.114-.165 21 21 0 0 0-.972-1.34l-.174-.21c.083-.005.158-.013.234-.013zm-3.6.71-.032.234c-.027.2-.205.86-.31 1.157-.048.132.26-.17.433-.426.08-.115.152-.21.165-.21s.17.147.35.327.333.32.34.313c.03-.03-.21-.515-.377-.76a3.6 3.6 0 0 0-.37-.445zM9.32 6.584l-.132.125c-.178.17-.485.64-.63.96-.15.332-.33.85-.328.94 0 .04.072-.06.158-.222.155-.29.603-.872.67-.872.02 0 .06.053.09.12.06.132.36.552.378.53a2 2 0 0 0-.045-.32c-.03-.17-.07-.465-.085-.66a7 7 0 0 0-.053-.476zm5.453.008c-.02 0-.038.113-.04.252 0 .24-.097 1.002-.157 1.242-.026.107-.023.107.088-.02.063-.074.166-.22.23-.33.065-.11.123-.207.132-.217.054-.063.71.816.786 1.052.017.052.04.083.053.07.03-.03-.188-.687-.323-.975-.197-.42-.664-1.074-.768-1.074zm-2.63 1.1h.002zc-.04.006-.274.505-.348.746-.083.27-.182.978-.18 1.296v.307l.108-.41c.095-.368.25-.758.365-.926.035-.05.087-.023.274.145.127.114.267.227.31.25.085.045.11 0 .042-.072-.057-.06-.392-.855-.47-1.117-.035-.12-.08-.217-.1-.22zM9.56 10.917c-.725.02-1.372.593-1.573 1.445-.088.374-.082.66.022 1.062q.301 1.188 1.36 1.59c.098.038.3.058.55.05.34-.007.433-.027.65-.138.51-.258.868-.8.965-1.463.043-.298.04-.41-.022-.72-.187-.95-.812-1.636-1.64-1.8q-.157-.031-.313-.026zm5.087 0q-.045 0-.09.004c-.847.058-1.65.858-1.808 1.882-.143.93.33 1.89 1.073 2.183.344.135.928.112 1.277-.05.814-.38 1.355-1.432 1.222-2.373-.12-.854-.656-1.474-1.402-1.62a1.4 1.4 0 0 0-.273-.024zm-.515 2.06c.38.012.612.473.366.792-.096.12-.338.2-.51.16-.51-.11-.456-.88.066-.948a1 1 0 0 1 .078-.004m-3.968.01c.2 0 .24.02.354.146.192.215.165.6-.05.714-.19.1-.332.12-.467.065-.33-.14-.424-.52-.192-.78.113-.126.155-.144.356-.144zM8.65 19.543q.374 0 .746.008c.49.01.683.22.683.712v1.162h-.003v1.14c-.003.416-.192.633-.608.646a26 26 0 0 1-1.622 0c-.416-.015-.603-.228-.608-.648q-.008-1.163 0-2.324c.004-.466.206-.676.666-.687q.374-.008.745-.008zm6.23 0q.434.002.865.026c.348.02.53.23.534.58q.02 1.226.004 2.454-.01.584-.608.604-.81.03-1.62 0c-.428-.015-.606-.23-.61-.666v-1.16h-.003c0-.39-.004-.775 0-1.164.004-.418.166-.636.573-.656q.432-.02.865-.017zm-2.744.002q.435.001.88.003v.632h-1.452c-.31 0-.333.023-.333.34 0 .6.006 1.2-.003 1.8-.003.2.075.275.27.272.424-.007.847 0 1.272 0h.267l.003.603c-.05.007-.098.02-.146.02-.527.002-1.054.005-1.58 0-.516-.005-.716-.21-.716-.722v-2.24c0-.476.197-.692.67-.703q.433-.008.868-.006zm6.29.006c.358 0 .72.005 1.086.005v.622h-1.794c-.26 0-.286.027-.286.292.006.727-.102.634.64.64.298.003.6-.003.898.003.433.01.632.206.64.633q.008.418-.004.834c-.013.383-.193.607-.572.62-.736.023-1.474.006-2.226.006v-.616h.244c.557 0 1.113-.003 1.668.002.186.002.272-.072.264-.26a5 5 0 0 1 0-.44c.007-.188-.078-.258-.266-.254-.4.01-.804.006-1.206.002-.533-.006-.722-.203-.722-.737 0-.242-.003-.483.004-.724.012-.387.19-.608.568-.62.353-.01.707-.01 1.065-.01zm-12.84.02c.41-.003.82.006 1.237.006v.586c-.08.005-.156.014-.232.014-.438.002-.877.005-1.315 0-.175-.002-.25.072-.25.25q.01.957 0 1.91c0 .196.083.257.265.256.438-.005.877-.002 1.316-.002h.223v.608c-.65 0-1.284.02-1.917-.008-.342-.014-.51-.227-.514-.568q-.015-1.24 0-2.48c.003-.318.157-.544.448-.557.25-.014.51-.01.737-.016zm9.806.607q-.536.009-1.072 0c-.177 0-.248.08-.246.255q.006.964 0 1.927c0 .16.07.23.22.23.38.003.76 0 1.138 0 .17 0 .228-.083.224-.248-.008-.32 0-.642-.005-.963 0-.316-.007-.63 0-.944h.004c.005-.19-.077-.26-.262-.258zm-7.282.003c-.168-.002-.237.076-.235.24.005.322 0 .644 0 .965s.006.64-.004.962h.002c-.004.17.067.245.23.245H9.22c.158 0 .235-.068.234-.24q-.008-.962 0-1.926c0-.16-.056-.248-.228-.246q-.56.006-1.117 0z"/></svg>������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/coda.svg�������������������������������������0000664�0000000�0000000�00000001027�14753064456�0024531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.194 0H2.806A2.01 2.01 0 0 0 .8 2v20c0 1.1.903 2 2.006 2h18.388a2.01 2.01 0 0 0 2.006-2v-.933c-.033-1.2-.067-3.7-.067-4.834 0-.633-.468-1.166-1.07-1.166-.668 0-1.103.4-1.437.733-1.003.9-2.508 1.067-3.812.833-.601-.133-1.17-.3-1.638-.6-1.438-.833-2.374-2.4-2.374-4.066 0-1.667.936-3.2 2.374-4.067.502-.3 1.07-.467 1.638-.6 1.27-.233 2.809-.067 3.812.833.367.334.802.734 1.437.734.602 0 1.07-.534 1.07-1.167 0-1.1.034-3.633.067-4.833V2c0-1.1-.903-2-2.006-2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codacy.svg�����������������������������������0000664�0000000�0000000�00000001620�14753064456�0025064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.883 9.825a8.46 8.46 0 0 1 3.875-5.07l.04-.021-1.803-3.113C3.276 3.212 1.268 5.769.427 8.81l-.02.084zm5.941-5.931a8.3 8.3 0 0 1 2.164-.283h.005V.016h-.019a12 12 0 0 0-3.165.421l.084-.02zm4.354.003a8.45 8.45 0 0 1 5.063 3.875l.021.04 3.117-1.799c-1.591-2.718-4.146-4.726-7.186-5.568l-.084-.02zM0 12v.006c0 1.1.148 2.165.425 3.177l-.02-.084 3.476-.929a8.1 8.1 0 0 1-.284-2.161v-.008zm1.605 5.995c.55.941 1.18 1.754 1.901 2.475l2.553-2.54a8.6 8.6 0 0 1-1.313-1.695l-.022-.04zm4.39 4.385a11.77 11.77 0 0 0 5.967 1.604h.021-.001v-3.595h-.004a8.3 8.3 0 0 1-4.223-1.145l.039.021zm13.264-6.175a8.44 8.44 0 0 1-5.034 3.884l-.059.014.931 3.476c3.124-.86 5.681-2.863 7.246-5.52l.031-.056zm4.318-.984c.268-.947.423-2.035.423-3.159 0-1.087-.144-2.14-.415-3.142l.019.084-3.486.931c.175.64.275 1.374.275 2.132 0 .79-.109 1.555-.313 2.28l.014-.059z"/></svg>����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codeberg.svg���������������������������������0000664�0000000�0000000�00000000415�14753064456�0025375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.955.49A12 12 0 0 0 0 12.49a12 12 0 0 0 1.832 6.373L11.838 5.928a.187.14 0 0 1 .324 0l10.006 12.935A12 12 0 0 0 24 12.49a12 12 0 0 0-12-12zm.375 6.467 4.416 16.553a12 12 0 0 0 5.137-4.213z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codeblocks.svg�������������������������������0000664�0000000�0000000�00000001002�14753064456�0025724�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.011 0v8.406H8.61V0zm15.39 0v8.406H24V0zM8.972.658l.012 7.869 2.54 2.43.007-5.564zm6.066 0-2.555 4.735.004 5.564 2.54-2.43zM.332 8.768l5.52 2.677 5.655-.006-2.773-2.67zm14.944 0L12.53 11.49l5.655-.09 5.498-2.631zm-9.323 3.855L.318 15.232h8.405l2.748-2.722zm6.565-.113 2.747 2.722h8.402l-5.586-2.609zm-1.006.533-2.54 2.43-.011 7.873 2.555-4.74zm.964 0-.008 5.564 2.559 4.74-.011-7.874zM0 15.598V24h8.598v-8.402zm15.39 0V24h8.598v-8.402z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codecademy.svg�������������������������������0000664�0000000�0000000�00000002027�14753064456�0025721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.827 19.729h-5.595c-.094 0-.17.058-.17.172v1.515c0 .094.058.17.172.17h5.594c.096 0 .172-.044.172-.164v-1.515c0-.105-.057-.166-.173-.166v-.014zM16.463 2.463c.016.034.03.067.047.12v18.79c0 .06-.02.096-.037.114a.17.17 0 0 1-.135.06H.153c-.038 0-.075 0-.097-.02A.18.18 0 0 1 0 21.393V2.564c0-.076.04-.134.096-.15h16.242c.04 0 .096.017.115.034v.016zM1.818 19.573c0 .072.038.135.096.152h12.643c.058-.019.096-.076.096-.154V4.402c0-.073-.039-.134-.098-.15H1.915c-.056.02-.096.073-.096.15l-.003 15.17zm5.174-8.375c.65 0 1.014.177 1.396.62.058.074.153.093.23.034l1.034-.92c.075-.044.058-.164.02-.224-.635-.764-1.554-1.244-2.74-1.244-1.59 0-2.79.795-3.255 2.206-.165.495-.24 1.126-.24 1.98s.075 1.483.255 1.98c.465 1.425 1.665 2.204 3.255 2.204 1.2 0 2.115-.48 2.745-1.216.045-.074.06-.165-.015-.226l-1.037-.915c-.073-.047-.163-.047-.224.027-.39.45-.795.69-1.454.69-.706 0-1.245-.345-1.47-1.035-.136-.39-.166-.87-.166-1.483 0-.615.045-1.068.18-1.47.24-.66.766-1.008 1.486-1.008"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codeceptjs.svg�������������������������������0000664�0000000�0000000�00000003576�14753064456�0025761�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.399.597c-1.424 0-1.548.005-1.59.08a895 895 0 0 0-2.212 5.782c-1.196 3.132-2.174 5.7-2.184 5.71-.004.005-1.034-1.154-2.283-2.573-1.936-2.202-2.278-2.572-2.302-2.482-.042.188-.065.349-.095.541l2.782 3.626c1.528 1.994 2.795 3.631 2.814 3.636.029.01 6.474-13.93 6.588-14.24.029-.075-.066-.08-1.518-.08M7.683 2.169a9 9 0 0 0-.88.046A7.9 7.9 0 0 0 3.28 3.474c-.555.366-1.514 1.33-1.903 1.904-2.131 3.16-1.756 7.376.892 9.981.603.594 1.2 1.016 2.041 1.438 1.03.523 2.07.826 3.417 1.016 1.007.138 2.924.11 4.12-.061l.2-.029v-.67l-.176.03c-1.073.17-3.1.16-4.096-.015-2.601-.46-4.51-1.76-5.577-3.807-.926-1.77-1.05-4.048-.323-5.994a6.7 6.7 0 0 1 1.647-2.563c.797-.798 1.566-1.277 2.563-1.61 1.315-.436 2.948-.47 4.49-.094l.494.114c.028 0 .185-.38.166-.4-.043-.037-1.002-.265-1.49-.355a11 11 0 0 0-2.063-.189m10.683.792c-.028-.004.028.048.184.185 2.108 1.832 3.36 4.01 3.802 6.612.142.845.157 2.392.028 3.227-.365 2.35-1.385 4.386-3.047 6.057-1.855 1.87-4.1 2.966-6.81 3.322-.831.11-2.535.071-3.37-.071-.978-.166-1.97-.475-3.015-.926-.574-.251.432.39 1.287.817 2.53 1.267 5.468 1.557 8.258.82a11 11 0 0 0 2.132-.81c3.46-1.7 5.757-4.98 6.15-8.777.067-.655.034-1.917-.075-2.591a10.98 10.98 0 0 0-4.818-7.448 7 7 0 0 0-.617-.38.5.5 0 0 0-.089-.037zm-2.095 5.153a3.8 3.8 0 0 0-.697.049c-.854.166-1.438.674-1.609 1.4-.18.75.043 1.42.584 1.766.318.199.603.294 1.462.488.902.204 1.21.342 1.39.613.105.156.129.242.124.48 0 .17-.033.35-.08.436-.11.213-.414.455-.689.555-.536.195-1.547.185-2.316-.019-.66-.176-.589-.2-.589.19 0 .294.015.342.11.403.384.257 1.898.39 2.738.247.522-.09 1.03-.313 1.324-.574.105-.1.262-.318.347-.489.147-.294.157-.346.157-.816 0-.451-.015-.522-.133-.77-.266-.545-.731-.787-2.003-1.058-.869-.18-1.234-.375-1.405-.754-.223-.494.005-1.03.536-1.263.484-.209 1.533-.17 2.402.09l.294.09v-.74l-.228-.076c-.453-.15-1.138-.242-1.719-.247"/></svg>����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codechef.svg���������������������������������0000664�0000000�0000000�00000012660�14753064456�0025370�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.257.004q-.554.014-1.1.095c-.54.054-1.08.325-1.675.595-.757.324-1.515.649-2.218.703-1.19.378-1.568.919-1.892 1.351 0 .054-.054.108-.054.108-.433.865-.487 1.73-.325 2.595.162.541.378 1.029.54 1.515.38 1.028.758 2 .92 3.136.163.325.324.757.432 1.19.27.865.542 1.838 1.353 2.595l.006-.003c.017.019.03.04.048.057l.021-.01-.02-.584c.648-.974 1.566-1.623 2.864-1.893.52-.11 1.081-.15 1.663-.128a8.8 8.8 0 0 1 1.798.236c1.46.378 2.595 1.136 2.65 1.785.027.354.04.695.032 1.036q-.001.096-.007.193l.136.068a.64.64 0 0 0 .206-.19l.003-.003.006-.008c.04-.054.075-.124.11-.194.02-.037.038-.086.056-.129.205-.462.362-1.153.538-1.963.054-.27.11-.487.163-.703.433-.973 1.027-1.838 1.622-2.65.973-1.35 1.892-2.595 1.784-4.055-1.784-3.461-4.272-4.002-5.57-4.272-.216-.054-.323-.054-.485-.108-1.338-.244-2.494-.396-3.605-.365M16.3 14.383a10 10 0 0 0-.032-.983c-.054-.703-1.19-1.46-2.704-1.838a9.5 9.5 0 0 0-1.744-.236 6.8 6.8 0 0 0-1.555.128c-1.244.27-2.216.92-2.811 1.892l.051 1.431c.667-.355 1.733-.874 3.14-1 .065-.005.136-.005.204-.009.117-.013.266-.044.444-.044 1.607 0 3.268.534 4.877 1.648q.057-.412.07-.823l.045.023c.002-.063.014-.127.015-.19zM11.256.058c.124-.004.254.01.379.011q-.345-.003-.687.016c.103-.006.205-.024.308-.027m.498.015a16.569 16.569 0 0 0 0 0M10.44.13c-.076.009-.153.013-.229.024-.817.117-1.774.701-2.75 1.045.355-.132.714-.296 1.075-.45.54-.27 1.135-.541 1.621-.595.094-.014.189-.013.283-.024m-.229.24c.162 0 .379 0 .541.054a1 1 0 0 0-.37-.014 1.2 1.2 0 0 1 .316.068c.58 1-.426 5.279-.679 8.149.156 1.027.314 1.996.463 2.72-.703-1.784-1.406-4.921-1.515-7.354-.054-.973.001-1.839.218-2.487C9.4.855 9.725.423 10.21.369zm3.136.27c-.81 2.11-.918 6.11-.972 7.354-.054.54 0 1.73.054 2.595 0 .216.054.432.054.649 0-.217-.054-.379-.054-.595-.433-3.244-.974-7.136.918-10.002m3.352.379c-.27 2.162-1.405 3.19-1.783 5.3-.108 1.676-.325 3.622-.379 5.298-.054-1.676 0-3.46.27-5.245.27-1.838.865-3.677 1.892-5.353m-10.17.63a.86.86 0 0 1 .6.236l-.014-.007c.133.092.266.209.393.384-.204.968.255 3.032.04 4.67.076 1.548.071 3.18.849 4.459-.98-1.51-1.176-3.437-1.322-5.236-.113-1.09-.204-2.097-.464-2.903-.144-.305-.269-.575-.384-.822-.024-.037-.044-.079-.07-.114a.58.58 0 0 1-.162-.377c0-.054.053-.162.108-.162.054-.054.161-.056.215-.11a1 1 0 0 1 .21-.018m-1.347.613c-.06.02-.092.041-.14.061.177-.034.362.034.52.318-.188.892.436 3.369.428 5.104.313 1.848.55 3.85 1.572 5.115-1.19-1.351-1.676-3.73-2.054-5.731-.325-1.568-.596-2.92-1.136-3.352-.054-.108-.108-.163-.108-.271 0-.162 0-.379.108-.595-.277.634-.405 1.267-.37 1.901a3.84 3.84 0 0 1 .37-1.901c0-.054.054-.054.054-.108.012-.016.031-.035.044-.051a.9.9 0 0 1 .226-.257c.055-.061.096-.12.159-.182-.053.056-.088.11-.134.165.027-.018.052-.037.084-.052a.5.5 0 0 1 .377-.164m-.377.164c-.004.007-.008.01-.012.018l.037-.03zm14.76 1.134-.005.015c.038-.005.075-.017.113-.015-.037-.002-.076.01-.115.02-.863 2.642-1.887 5.284-2.911 7.926l-.002.003c-.087.465-.234.884-.54 1.19.433-.487.486-1.191.54-2.056.054-.811.054-1.676.487-2.542 0-.053.001-.105.053-.159l.001-.002c.097-.353.202-.689.317-1.018.418-1.29 1.14-3.166 2.013-3.34.016-.006.034-.019.05-.022M8.374 16.21l-.324.108c.162.217.27.38.378.433a.8.8 0 0 0 .379.108c.054 0 .161 0 .215-.054l.812-.27c.054 0 .108-.054.162-.054.108 0 .162 0 .27.054l.271.27.27-.054c-.108-.162-.27-.323-.378-.377s-.217-.11-.379-.11h-.108l-.866.325h-.161c-.109 0-.216 0-.27-.054s-.163-.162-.271-.325m-2.596.541c-.27.162-.649.433-1.19.649s-.973.433-1.19.649q-.323.324-.323.649c0 .108.054.163.162.217.054.054.163.054.217.108.757.324 1.514.702 2.216 1.08.109.054.217.163.272.217.054.054.107.054.161.054.109 0 .27-.053.378-.162q.162-.162.163-.325c0-.108-.055-.161-.163-.215 0 0-.433-.217-1.19-.541a12 12 0 0 1-1.188-.595c.162-.27.486-.487.973-.703.54-.216.92-.433 1.081-.595.054-.054.054-.108.054-.162a.4.4 0 0 0-.108-.217.42.42 0 0 0-.27-.108zm11.247 0a.4.4 0 0 0-.216.108c-.054.108-.109.163-.109.217v.054c.162.162.38.27.704.378.27.054.54.163.811.217q.486.162.649.486v.055c0 .054-.109.162-.325.27-.108.054-.325.217-.595.433-.27.162-.433.323-.595.377-.216.109-.378.217-.432.326-.054.054-.054.107-.054.161 0 .108.054.108.108.216s.162.11.216.11.108-.056.162-.056c.27-.162.65-.378 1.082-.757.486-.378.865-.648 1.082-.81.216-.108.323-.217.323-.38 0-.053 0-.161-.108-.215-.378-.433-.918-.702-1.567-.919-.108-.054-.27-.109-.595-.163-.162-.054-.325-.108-.433-.108zm-2.974.81c-.27 0-.487.056-.649.218-.216.162-.27.432-.216.757 0 .27.108.486.27.703s.379.325.595.325c.162 0 .27-.056.433-.11.27-.162.379-.432.379-.918 0-.379-.109-.649-.271-.81a.9.9 0 0 0-.541-.164zm-4.488.055c-.27 0-.486.055-.648.217-.217.162-.27.432-.216.757 0 .27.107.486.27.702s.378.326.594.326c.163 0 .271-.056.433-.11.27-.162.378-.432.378-.918 0-.433-.108-.703-.27-.81a.9.9 0 0 0-.54-.164zm0 .65c.163 0 .271.108.271.27s-.163.27-.27.27c-.163 0-.27-.108-.27-.27s.107-.27.27-.27m4.38.054c.162 0 .271.107.271.27 0 .108-.109.27-.27.27-.163 0-.27-.108-.27-.27s.107-.27.27-.27m-2.703 2.108.162.324a1 1 0 0 0 .216.271c.054.054.163.162.27.162h.109c.108 0 .161 0 .215-.054s.164-.054.218-.108l.161-.162c.054-.054.108-.109.108-.163.054-.054.054-.108.108-.162 0-.054.054-.108.054-.108-.054.108-.162.216-.216.324-.108.054-.161.163-.27.163-.107.054-.216.054-.324.054s-.216 0-.27-.054c-.108 0-.163-.054-.217-.108l-.162-.163c-.054-.054-.108-.162-.162-.216m-.866 1.028c-1.136 0-1.838 1.514-3.46.162-.432 2.65 2.758 2.866 4.11 1.73.92-.81.648-1.946-.65-1.892m2.866 0c-1.297-.054-1.568 1.082-.648 1.893 1.351 1.135 4.54.918 4.108-1.731-1.622 1.352-2.27-.162-3.46-.162"/></svg>��������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codeclimate.svg������������������������������0000664�0000000�0000000�00000000332�14753064456�0026072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.125 5.272-4.511 4.475 2.684 2.659 1.827-1.813 5.19 5.145L24 13.079zM8.13 8.265 0 16.066l2.772 2.662 5.357-5.145 5.357 5.145 2.772-2.662z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codecov.svg����������������������������������0000664�0000000�0000000�00000002342�14753064456�0025246�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.006.481C5.391.486.005 5.831 0 12.399v.03l2.042 1.19.028-.018a5.8 5.8 0 0 1 3.308-1.02q.556 0 1.085.1l-.036-.006a5.7 5.7 0 0 1 2.874 1.43l-.004-.002.35.326.198-.434c.192-.42.414-.814.66-1.173.1-.144.208-.29.332-.446l.205-.257-.252-.211a8.33 8.33 0 0 0-3.836-1.807l-.052-.008a8.57 8.57 0 0 0-4.08.251l.06-.016c.972-4.256 4.714-7.223 9.133-7.226a9.3 9.3 0 0 1 6.6 2.713 9.2 9.2 0 0 1 2.508 4.498 8.4 8.4 0 0 0-2.498-.379h-.154q-.533.01-1.036.078l.045-.005-.042.006a8 8 0 0 0-.39.06q-.086.016-.17.033a8 8 0 0 0-.392.09l-.138.034a9 9 0 0 0-.483.144l-.03.01c-.354.12-.708.268-1.05.44l-.027.013a8 8 0 0 0-.47.256l-.035.022a8.2 8.2 0 0 0-2.108 1.8l-.011.014-.075.092a8 8 0 0 0-.378.503c-.088.13-.177.269-.288.452l-.06.104a9 9 0 0 0-.234.432l-.016.029c-.17.34-.317.698-.44 1.063l-.017.053a8 8 0 0 0-.41 2.716v-.007.112a12 12 0 0 0 .023.431l-.002-.037a12 12 0 0 0 .042.412l.005.042.013.103q.027.19.062.378c.241 1.266.845 2.532 1.745 3.66l.041.051.042-.05c.359-.424 1.249-1.77 1.325-2.577v-.015l-.006-.013a5.56 5.56 0 0 1-.64-2.595c0-3.016 2.37-5.521 5.396-5.702l.2-.007a5.93 5.93 0 0 1 3.47 1.025l.027.019L24 12.416v-.03a11.77 11.77 0 0 0-3.51-8.423A11.96 11.96 0 0 0 12.007.48z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codecrafters.svg�����������������������������0000664�0000000�0000000�00000001416�14753064456�0026271�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.825 17.527a.11.11 0 0 1-.107-.142l3.05-10.837a.11.11 0 0 1 .108-.081H14.2a.11.11 0 0 1 .107.141l-3.063 10.838a.11.11 0 0 1-.107.08H9.825Zm-2.146-2.732a.1.1 0 0 1-.079-.033l-2.667-2.704a.11.11 0 0 1 0-.156L7.6 9.211a.11.11 0 0 1 .08-.033h1.702c.1 0 .149.12.079.19l-2.534 2.534a.11.11 0 0 0 0 .157l2.535 2.546c.07.07.02.19-.079.19zm6.954 0a.111.111 0 0 1-.079-.19l2.525-2.546a.11.11 0 0 0 0-.157l-2.524-2.535a.111.111 0 0 1 .079-.19h1.692q.047.001.078.034l2.68 2.69a.11.11 0 0 1 0 .157l-2.68 2.704a.11.11 0 0 1-.078.033zM12 24C5.383 24 0 18.617 0 12S5.383 0 12 0s12 5.383 12 12-5.383 12-12 12m0-22.667C6.118 1.333 1.333 6.118 1.333 12S6.118 22.667 12 22.667 22.667 17.882 22.667 12 17.882 1.333 12 1.333"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codefactor.svg�������������������������������0000664�0000000�0000000�00000001206�14753064456�0025733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.375 2.65a2.64 2.64 0 0 1-2.62 2.65 2.64 2.64 0 0 1-2.63-2.65A2.64 2.64 0 0 1 2.755 0a2.64 2.64 0 0 1 2.62 2.65m0 9.35a2.64 2.64 0 0 1-2.62 2.65A2.64 2.64 0 0 1 .125 12a2.64 2.64 0 0 1 2.63-2.65A2.64 2.64 0 0 1 5.375 12m0 9.35A2.64 2.64 0 0 1 2.755 24a2.64 2.64 0 0 1-2.63-2.65 2.64 2.64 0 0 1 2.63-2.65 2.64 2.64 0 0 1 2.62 2.65M11.315 0a2.64 2.64 0 0 0-2.61 2.65 2.64 2.64 0 0 0 2.6 2.65h9.94a2.64 2.64 0 0 0 2.63-2.65A2.64 2.64 0 0 0 21.255 0zm-2.61 12a2.64 2.64 0 0 1 2.62-2.65h5.68a2.64 2.64 0 0 1 2.6 2.65 2.64 2.64 0 0 1-2.6 2.65h-5.7a2.64 2.64 0 0 1-2.6-2.65"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codeforces.svg�������������������������������0000664�0000000�0000000�00000000612�14753064456�0025736�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.5 7.5A1.5 1.5 0 0 1 6 9v10.5A1.5 1.5 0 0 1 4.5 21h-3C.673 21 0 20.328 0 19.5V9c0-.828.673-1.5 1.5-1.5zm9-4.5A1.5 1.5 0 0 1 15 4.5v15a1.5 1.5 0 0 1-1.5 1.5h-3c-.827 0-1.5-.672-1.5-1.5v-15c0-.828.673-1.5 1.5-1.5zm9 7.5A1.5 1.5 0 0 1 24 12v7.5a1.5 1.5 0 0 1-1.5 1.5h-3a1.5 1.5 0 0 1-1.5-1.5V12a1.5 1.5 0 0 1 1.5-1.5z"/></svg>����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codefresh.svg��������������������������������0000664�0000000�0000000�00000001072�14753064456�0025565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 2.84c1.402 2.71 1.445 5.241 2.977 10.4 1.855 5.341 8.703 5.701 9.21 5.711.46.726 1.513 1.704 3.926 2.21l.268-1.272c-2.082-.436-2.844-1.239-3.106-1.68l-.005.006c.087-.484 1.523-5.377-1.323-9.352C7.182 3.583 0 2.84 0 2.84m24 .84c-3.898.611-4.293-.92-11.473 3.093a11.88 11.88 0 0 1 2.625 10.05c3.723-1.486 5.166-3.976 5.606-6.466 0 0 1.27-4.716 3.242-6.677M12.527 6.773l-.002-.002v.004zM2.643 5.22s5.422 1.426 8.543 11.543c-2.945-.889-4.203-3.796-4.63-5.168h.006a15.86 15.86 0 0 0-3.92-6.375z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codeigniter.svg������������������������������0000664�0000000�0000000�00000001424�14753064456�0026120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.466 0c.88 1.423-.28 3.306-1.207 4.358-.899 1.02-1.992 1.873-2.985 2.8-1.066.996-2.091 2.044-2.967 3.213-1.753 2.339-2.827 5.28-2.038 8.199.788 2.916 3.314 4.772 6.167 5.429-1.44-.622-2.786-2.203-2.79-3.82-.003-1.765 1.115-3.262 2.505-4.246-.167.632-.258 1.21.155 1.774a1.68 1.68 0 0 0 1.696.642c1.487-.326 1.556-1.96.674-2.914-.872-.943-1.715-2.009-1.384-3.377.167-.685.588-1.328 1.121-1.787-.41 1.078.755 2.14 1.523 2.67 1.332.918 2.793 1.612 4.017 2.688 1.288 1.132 2.24 2.661 2.047 4.435-.208 1.923-1.736 3.26-3.45 3.936 3.622-.8 7.365-3.61 7.44-7.627.093-3.032-1.903-5.717-5.158-7.384.19.48.074.697-.058.924-.55.944-2.082 1.152-2.835.184-1.205-1.548.025-3.216.197-4.855.215-2.055-1.073-4.049-2.67-5.242"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codeium.svg����������������������������������0000664�0000000�0000000�00000003057�14753064456�0025255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 0a1 1 0 0 0-1 1v22q0 .094.018.184L0 23.199l.025.026c.103.443.5.775.975.775h22a1 1 0 0 0 1-1V1a1 1 0 0 0-1-1zm.707 1h20.582l-2 2H3.707zM23 1.705v20.588l-2-2V3.705zM1 1.707l2 2v16.492l-2 2zM4 4h16v16H4zm3.537 3q-1.51 0-1.51 1.605v2.297q0 .6-.554.6a.47.47 0 0 0-.344.139.5.5 0 0 0-.129.365.5.5 0 0 0 .129.353.47.47 0 0 0 .344.139q.555 0 .554.6v2.297Q6.027 17 7.537 17q.205 0 .334-.148A.5.5 0 0 0 8 16.498a.5.5 0 0 0-.129-.365.44.44 0 0 0-.334-.139q-.564 0-.564-.6v-2.296q0-.69-.297-1.092.148-.207.222-.485.075-.274.075-.619V8.605q0-.6.564-.6a.44.44 0 0 0 .334-.138A.5.5 0 0 0 8 7.512a.53.53 0 0 0-.129-.364A.43.43 0 0 0 7.537 7m8.926 0a.43.43 0 0 0-.334.148.53.53 0 0 0-.129.364.5.5 0 0 0 .129.355.44.44 0 0 0 .334.139q.564 0 .564.6v2.296q0 .345.075.62.073.276.222.484-.296.403-.297 1.092v2.297q0 .6-.564.6a.44.44 0 0 0-.334.138.5.5 0 0 0-.129.365q0 .217.129.354a.43.43 0 0 0 .334.148q1.51 0 1.51-1.605v-2.297q0-.6.554-.6a.44.44 0 0 0 .334-.139.48.48 0 0 0 .139-.353.5.5 0 0 0-.139-.365.44.44 0 0 0-.334-.139q-.554 0-.554-.6V8.605Q17.973 7 16.463 7m-7.25 6a.74.74 0 0 0-.496.227.72.72 0 0 0-.217.529.74.74 0 0 0 .75.744.74.74 0 0 0 .75-.744.72.72 0 0 0-.217-.53A.7.7 0 0 0 9.25 13zm2.75 0a.74.74 0 0 0-.496.227.72.72 0 0 0-.217.529.74.74 0 0 0 .217.53q.228.214.533.214a.74.74 0 0 0 .75-.744.72.72 0 0 0-.217-.53A.7.7 0 0 0 12 13zm2.75 0a.74.74 0 0 0-.496.227.72.72 0 0 0-.217.529.74.74 0 0 0 .217.53q.228.214.533.214a.74.74 0 0 0 .75-.744.72.72 0 0 0-.217-.53.7.7 0 0 0-.533-.226zm-11.1 8h16.68l2 2H1.613z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codemagic.svg��������������������������������0000664�0000000�0000000�00000001652�14753064456�0025542�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.833 10.117 16.937 7.24c-.07-.035-.106-.106-.142-.177l-2.912-5.896c-.498-1.03-1.776-1.457-2.807-.96a2.1 2.1 0 0 0-.959.96L7.205 7.063a.8.8 0 0 1-.142.177l-5.896 2.913c-1.03.497-1.457 1.776-.96 2.806a2.1 2.1 0 0 0 .96.96l5.896 2.876c.07.036.106.107.142.142l2.948 5.896c.497 1.03 1.776 1.457 2.806.96a2.1 2.1 0 0 0 .959-.96l2.877-5.896c.036-.07.107-.142.142-.142l5.896-2.912c1.03-.498 1.457-1.776.96-2.806-.178-.427-.533-.746-.96-.96m-4.368.427-2.735 2.38c-.533.497-.924 1.136-1.066 1.847l-.71 3.551c-.036.143-.178.25-.32.214-.071 0-.107-.036-.142-.107l-2.38-2.735c-.497-.533-1.137-.923-1.847-1.066l-3.552-.71c-.142-.035-.249-.178-.213-.32 0-.07.035-.106.106-.142l2.735-2.38c.533-.497.924-1.136 1.066-1.847l.71-3.551c.036-.143.178-.25.32-.214a.27.27 0 0 1 .142.071l2.38 2.735c.497.533 1.137.924 1.847 1.066l3.552.71c.142.036.249.178.213.32a.4.4 0 0 1-.106.178"/></svg>��������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codementor.svg�������������������������������0000664�0000000�0000000�00000002067�14753064456�0025767�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.487 14.887c.39 0 .706.314.706.7a.703.703 0 0 1-.706.7H5.632a.703.703 0 0 1-.707-.7c0-.386.317-.7.707-.7zm.69-2.593c.39 0 .706.315.706.7a.703.703 0 0 1-.707.7H5.648a.703.703 0 0 1-.706-.7c0-.386.316-.7.706-.7zm3.864-3.46a2.11 2.11 0 0 1 2.118-2.099 2.11 2.11 0 0 1 2.118 2.1 2.115 2.115 0 0 1-2.118 2.103 2.116 2.116 0 0 1-2.118-2.104m6.259 6.559c.1.619-.378 1.18-1.005 1.178h-6.272a1.016 1.016 0 0 1-1.005-1.178c.315-1.942 1.391-3.509 2.796-4.13a2.77 2.77 0 0 0 2.69 0c1.405.621 2.482 2.19 2.796 4.13m-8.712-4.29c-8.38 0-.147-.002-4.941-.002a.703.703 0 0 1-.707-.7c0-.386.317-.7.707-.7l4.941.001c.39 0 .707.314.706.701a.7.7 0 0 1-.706.7m-4.94-2.594a.7.7 0 0 1-.707-.7c0-.386.317-.7.707-.7h4.94c.389 0 .705.313.705.7a.703.703 0 0 1-.706.699zm7.809 10.117a.66.66 0 0 0 .66-.654h7.06v-12.6H2.824v12.599h7.059c0 .361.295.654.66.654zM24 17.972v.957c0 .605-.496 1.096-1.106 1.096H1.106c-.61 0-1.106-.49-1.106-1.096v-.957h1.413V5.357c0-.763.623-1.382 1.394-1.382h18.387c.77 0 1.394.619 1.394 1.382v12.615Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codemirror.svg�������������������������������0000664�0000000�0000000�00000012637�14753064456�0026001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.313.858c1.044-.002 2.016.364 2.966 1.178.799.685 1.167 1.52 1.453 2.159.455 1.018.321 1.112-.18 1.398a1.3 1.3 0 0 1-.26.108c.12 1.502.962 1.637 1.232 2.165.176.34.262.752-.553.881-.819.13-.552.76-1.763.815-.864.041-1.372-.257-1.665-.568a4.64 4.64 0 0 1-.623 2.478c.21.104.67.306 1.305.422.881.16 2.155-.522 2.644-.522.153 0 .313-.022.49-.025.374-.007.827.072 1.47.622l.034-.075c-.376-.515-.212-1.885.49-3.535.811-1.904 1.803-3.534 2.606-3.099v-.004c.725.392.36 1.916-.45 3.82-.697 1.636-1.377 2.939-2.083 3.043l-.079.241c.834.662.667.978.441 1.52-.262.619.114 1.175-1.222 1.403a1 1 0 0 1-.434-.025c-.098.232-.177.412-.177.412s-.13.357-.478.232c-.357-.13-.263-.388-.263-.388l.344-.625c-.214-.231-.327-.492-.297-.586.133-.294.455-.031.423-.356-.619.066-1.206-.294-1.336-.326-.13-.031-.066-.325-1.109.326-.414.258-.794.517-1.18.762.153.784 1.057 2.016 1.74 2.106 2.152-.098 2.152 1.34 1.991 1.37-.325-.618-.846-.489-1.532-.097s.13.325.423.552c-1.437.608-2.848-.537-3.247-.901-.568.903-1.673 1.543-2.438 1.885-.944.423-1.65.983-.944 1.336.588.294.913-.455 1.763-.588.846-.13 1.599.196 1.665.686-.356-.196-.619-.196-.619-.196s.294.196.325.52c.032.326-.03.162-.227.162-.49 0-.552-.424-.98-.357-1.077.098-1.14.552-1.727.62-.588.062-1.567-.26-1.434-1.012.13-.748 1.14-1.273 2.088-1.665.944-.392 2.382-1.63 2.186-2.743-.096-.546-.351-.768-.585-.852-.683.27-1.4.45-2.13.531-2.1.257-2.804-.742-2.983-1.09-1.302.933-3.153 1.275-3.842 2.422.294-1.63 1.175-2.155 3.232-3.099 2.052-.942 2.478-2.891 2.48-2.901v-.006.006c-.002.03-.101 1.773-1.247 3.03.39.746.984 1.125 2.36.984 1.567-.16 3.828-1.52 5.419-2.316 1.109-.556 1.598.49 2.382.553 1.09.09.196 1.238.196 1.238s.819-.13.98-.423c.16-.294-.099-.49.16-.749.262-.262.227-.556-.145-.83-.33-.243-.537-.568-1.614-1.058-1.078-.49-1.994.454-3.233.748-.932.22-1.77-.183-2.129-.399-.956 1.024-2.141 1.222-2.141 1.222v-.004c1.175-.686 1.908-1.931 2.225-3.009.234-.795.07-1.655-.033-2.052-1.51-.03-2.627-1.478-2.627-1.478h.004s1.924 1.238 3.49.717c1.564-.521 1.305-3.554 1.337-3.393.015.078.262.692.3 1.436.367-.044 1.705-.25 1.424-.887-.884-1.99-2.486-3.235-5.312-3.374.518 2.805-1.864 2.038-5.616 3.961C1.687 7.243.653 10.448 1.107 14.17c.277 2.245 1.718 4.716 4.387 6.323a2.58 2.58 0 0 0 1.647-.834c.815-.913.356-2.35 1.696-2.872a4.1 4.1 0 0 1 1.472-.296c.491-.003.781.1.781.1s-2.382.325-2.578 1.697c-.196 1.371-.52 1.99-1.042 2.413-.238.186-.51.324-.802.405 1.564.7 3.462 1.127 5.703 1.127 7.15 0 10-5.673 10.305-7.193.34-1.681 1.324-2.08 1.324-.286 0 3.428-5.136 8.388-11.601 8.388S2.345 19.647.876 16.842C-.594 14.032-.2 9.758 1.954 7.18c2.154-2.582 5.081-3.166 7.2-3.851 2.017-.653 1.91-1.86 1.895-1.975q-.496-.023-.993-.004c.796-.318 1.543-.491 2.257-.492m9.299 4.492c-.358.006-1.19 1.31-1.863 2.994-.705 1.77-.909 3.314-.69 3.436.122.067 1.168-1.203 1.873-2.97.706-1.77 1.054-3.326.729-3.452a.1.1 0 0 0-.05-.008zm-6.66.502c-.01.779-.283 1.647-1.284 2.178q-.12.064-.236.112a4 4 0 0 1 .076.42c.27.151.672.34 1.112.413.784.129 1.34-.396 1.568-.588s.572-.047.732-.016c.16.036.486-.062.259-.16-.231-.098-.49-.44-.686-.862-.208-.833-.5-1.19-.653-1.33-.248.122-.579.029-.8-.12q-.046-.022-.088-.047m6.396.166h.014l-.036.014q-.008.006-.015.016c.016.07.007.146.007.225a.8.8 0 0 1-.03.24c.006.015 0 .04 0 .059-.019.024-.004.044-.009.064.03.029.074.063.054.102-.01.025-.04.035-.069.044-.014.07-.034.147-.049.226 0 .02 0 .049-.004.068-.015.05-.03.093-.045.147-.01.044 0 .128-.048.137-.02.05-.03.089-.054.138-.01.004-.02-.005-.03 0v.001a1 1 0 0 1-.03.18c0 .02-.004.054-.004.078-.025.034-.01.059-.02.088.035.04.079.079.054.137-.014.04-.054.05-.088.069-.03.093-.059.206-.088.308q-.006.047-.02.094c-.024.063-.054.127-.073.2-.02.06-.015.167-.078.177-.03.063-.045.112-.079.176-.015.01-.024-.005-.039 0-.015.02-.02.049-.034.069-.01.01-.025.01-.035.024-.02.03-.014.073-.034.118a.3.3 0 0 0-.054.063l-.005.01c-.023.062-.034.136-.062.196.023-.197.045-.426.063-.662.009-.17.022-.382.037-.599a6.4 6.4 0 0 0-.01-.89l.031-.063.064-.123c.014-.151.026-.256.03-.24a1 1 0 0 1 .023.14q.051-.09.113-.193c.04-.069.074-.142.118-.196.03-.04.078-.117.113-.19.01-.025.01-.05.048-.055.035-.044.064-.098.103-.137.01-.01.025-.015.035-.02.01-.01.014-.024.029-.034.024-.02.069-.039.098-.078q.006-.015.02-.03c.012-.015.03-.045.05-.068l-.001-.01.017-.006a.1.1 0 0 1 .022-.014m-.993 1.453q-.086 1.087-.128 2.175l-.045.095c-.049.117-.122.254-.171.391l-.015.079c-.02.054-.049.107-.064.161-.03.084-.068.23-.147.309-.004.01-.024.02-.034.03-.01.014-.005.034-.02.053l-.017.011.117-1.412c.006-.26.033-.515.07-.746l-.003-.032c.015-.083.025-.147.049-.24l.01-.03c.078-.384.164-.645.164-.645l-.032.308q.018-.042.04-.084c.014-.03.038-.054.053-.088.005-.015.01-.04.015-.059.046-.095.102-.184.158-.276m-.599 1.579c-.073.505-.127 1.15-.06 1.744q-.008.017-.018.034c-.025.024-.06.039-.084.068-.014.02-.024.05-.044.074a1 1 0 0 1-.068.078l-.088.128a.2.2 0 0 1-.098.088c-.02.01-.05.005-.074.01-.014-.02 0-.05 0-.074 0-.01-.01-.024-.01-.034 0-.03-.004-.084 0-.113 0-.03.025-.054.035-.098.005-.034 0-.073 0-.112 0-.015.005-.035.005-.06 0-.029 0-.043.004-.083a.6.6 0 0 0-.004-.132c.02-.103.029-.186.058-.308.01-.054.035-.152.06-.216.019-.063.043-.127.063-.196q.031-.103.068-.205c.015-.044.04-.084.06-.133.009-.024.009-.053.019-.083.02-.059.044-.122.073-.176l.083-.162zm-6.268 6.006q-.195.111-.4.215c.283.203.905.778.65 1.775a2 2 0 0 1-.038.132c.525.729 1.273 1.112 1.657 1.168.42.063.239-.164.176-.391-.066-.228.392-.294.65-.455.26-.164.13-.423-.716-.294-.762.12-1.833-1.545-1.979-2.15"/></svg>�������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codenewbie.svg�������������������������������0000664�0000000�0000000�00000003406�14753064456�0025732�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.071 0A12.02 12.02 0 0 0 2.31 5.011c-2.913 4.075-2.879 9.774.068 13.821.094.13.196.254.292.367.27.306.543.59.782.82.18.165.386.345.615.517q.626.507 1.343.873c-.429-.2-.834-.401-1.177-.58-.075-.036-.139-.077-.207-.112-.22-.11-.422-.228-.616-.339a5.5 5.5 0 0 1-.747-.527c-.153 1.044-.754 1.895-1.792 2-.975.096-.954 1.383 0 1.5 2.647.33 5.45.648 8.22.648 1.68.014 3.359-.128 5.013-.426.38-.098.758-.182 1.079-.27 5.512-1.53 9.055-6.856 8.64-12.487a1 1 0 0 0 0-.11c-.61-4.85-3.896-9-8.697-10.301A11.7 11.7 0 0 0 12.07 0zm-.108 3.025a.68.68 0 0 1 .396.14 11 11 0 0 1 1.86 1.677 16.7 16.7 0 0 1 2.874-.246h.432c.95.027.962 1.5.027 1.5h-.443q-.928 0-1.847.117a16.7 16.7 0 0 1 1.765 3.486c.947-.194 1.91-.303 2.877-.326h.02c.95 0 .935 1.482-.02 1.501q-1.205.034-2.387.264a26.4 26.4 0 0 1 .893 4.221c.057.479-.285.715-.66.715a.83.83 0 0 1-.846-.715 30 30 0 0 0-.23-1.411 24 24 0 0 0-.635-2.463 20 20 0 0 0-.505-1.418 15.7 15.7 0 0 0-1.93-3.577c-.263.069-.519.125-.782.2a15 15 0 0 0-1.805.616 20.5 20.5 0 0 1 1.798 3.791q.94-.451 1.93-.782l.713 1.35a15.5 15.5 0 0 0-2.18.872 20.7 20.7 0 0 1 .782 5.25.7.7 0 0 1-.74.726.723.723 0 0 1-.76-.727v-.228a19 19 0 0 0-.638-4.303 16 16 0 0 0-.449-1.473A19 19 0 0 0 9.674 7.95a8 8 0 0 0-.616.36c-.92.548-1.762 1.22-2.502 1.995a.69.69 0 0 1-.503.232c-.563 0-1.073-.754-.563-1.29A13.4 13.4 0 0 1 8.514 6.88q.146-.091.304-.173-.333-.468-.712-.899a1 1 0 0 0-.07-.09c-.485-.554.023-1.306.57-1.306a.65.65 0 0 1 .496.248q.57.662 1.079 1.376l.013.007a14.6 14.6 0 0 1 1.923-.7q.195-.065.396-.109a7 7 0 0 0-.85-.727.4.4 0 0 0-.063-.048c-.646-.463-.243-1.434.363-1.434m-1.386 9.299.55 1.44a16.4 16.4 0 0 0-2.656 2.157c-.159.13-.338.218-.5.215-.575 0-1.088-.752-.56-1.28a18.4 18.4 0 0 1 3.166-2.532"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codepen.svg����������������������������������0000664�0000000�0000000�00000002111�14753064456�0025233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.144 13.067v-2.134L16.55 12zm1.276 1.194a1 1 0 0 1-.006.083l-.005.028-.011.053-.01.031-.017.047-.014.03-.021.043-.019.03a.6.6 0 0 1-.08.1l-.026.025-.036.03-.029.022-.01.008-6.782 4.522a.64.64 0 0 1-.708 0L4.864 14.79l-.01-.008a1 1 0 0 1-.065-.052l-.026-.025-.032-.034-.021-.028a.6.6 0 0 1-.067-.11l-.014-.031-.017-.047-.01-.03q-.006-.027-.01-.054l-.006-.028a1 1 0 0 1-.006-.083V9.739a1 1 0 0 1 .006-.083l.005-.027.011-.054.01-.03a.6.6 0 0 1 .12-.217l.031-.034.026-.025a1 1 0 0 1 .065-.052l.01-.008 6.782-4.521a.64.64 0 0 1 .708 0l6.782 4.521.01.008.03.022.035.03q.014.012.026.025a.6.6 0 0 1 .08.1l.019.03.021.043.014.03q.01.024.017.047l.01.031q.006.027.01.054l.006.027a1 1 0 0 1 .006.083zM12 0C5.373 0 0 5.372 0 12c0 6.627 5.373 12 12 12 6.628 0 12-5.372 12-12 0-6.627-5.372-12-12-12m0 10.492L9.745 12 12 13.51 14.255 12zm.638 4.124v2.975l4.996-3.33-2.232-1.493zm-6.272-.356 4.996 3.33v-2.974l-2.764-1.849zm11.268-4.52-4.996-3.33v2.974l2.764 1.85zm-6.272-.356V6.41L6.366 9.74l2.232 1.493zm-5.506 1.549v2.134L7.45 12Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codeproject.svg������������������������������0000664�0000000�0000000�00000005747�14753064456�0026141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.644 21.576c-.837-.038-2.143.467-2.43.209-.378-.34.28-1.882.531-2.19.172-.204.452-.523.605-.663.594-.552.967-1.32.964-2.177-.004-.941-.281-1.278.659-.532.324.258.768.59 1.335.854 1.14.524-1.32-1.68-1.788-2.102-.788-.698-1.045-1.08-.609-1.353q.52-.327.977-.723c1.195-1.036 2.047-2.607 1.878-4.897-.15-2.091-4.09-7.979-5.14-8.002-.851-.018-2.58 2.107-3.527 3.256-1.028 1.247-2.637 3.408-2.958 4.677a4.7 4.7 0 0 0-.135 1.181c0 1.44.75 2.784 1.898 3.744.703.586 1.48 1.038.237 2.31-.74.76-2.433 2.363-1.452 1.91.572-.265 1-.614 1.34-.855.71-.504.99-.669.833-.03-.034.133-.028.274-.028.41 0 .893.37 1.69.95 2.278.15.154.586.486.833.7.586.506 1.196 1.864.816 2.202-.287.259-1.593-.246-2.426-.208-.837.037-2.276.566-2.239 1.563.037.998 3.17.851 3.9.858 1.645.012 1.089-.643 1.645-.631.555.016 0 .611 1.85.621.73.004 3.678.15 3.715-.847.042-.998-1.4-1.525-2.234-1.563m-5.502 1.789c-.665.281-1.536.244-1.764-.15-.226-.398 1.138-.717 1.498-.772.359-.057 1.138-.132 1.422.396.332.613-.495.241-1.156.526M8.257 9.099c0-.348.028-.685.103-1.007.254-1.088 1.467-2.977 2.272-4.042.744-.984 1.761-2.88 2.43-2.863.82.02 4.274 5.173 4.395 6.96.127 1.961-.535 3.305-1.47 4.193-.807.764-1.783 1.367-2.939 1.367-2.31 0-4.791-2.098-4.791-4.608m2.129 7.714c0-1.216.994-2.204 2.221-2.204a2.21 2.21 0 0 1 2.219 2.204c0 1.218-.99 2.201-2.219 2.201a2.21 2.21 0 0 1-2.221-2.201m1.927 4.986c-.237 0-.46-.905-.463-1.145-.007-.356.038-.755.474-.755s.47.398.473.755c.005.33-.248 1.145-.484 1.145m3.954 1.415c-.226.395-1.1.432-1.765.15-.66-.284-1.487.087-1.155-.526.284-.527 1.063-.452 1.423-.396.358.055 1.727.375 1.497.772M15.081 5.857c-.456 0-.85.31-1.172.775-.158.23-.45.41-.826-.23-.35-.593-.92-.922-1.508-.922-1.178 0-2.135 1.413-2.135 3.156 0 1.74.957 3.153 2.135 3.153.737 0 1.37-.557 1.769-1.39.154-.324.386-.263.566-.02.336.457.716.776 1.172.776.92 0 1.663-1.187 1.663-2.646-.001-1.466-.744-2.652-1.664-2.652m-3.506 4.987c-.826 0-1.498-.99-1.498-2.21 0-1.226.672-2.216 1.498-2.216s1.498.99 1.498 2.217c0 1.218-.672 2.21-1.498 2.21zm3.506-.483c-.641 0-1.162-.83-1.162-1.856 0-1.028.52-1.857 1.162-1.857.644 0 1.167.829 1.167 1.857 0 1.026-.522 1.856-1.167 1.856m.471-1.905c0 .481-.189.876-.419.876s-.418-.395-.418-.876c0-.488.188-.882.418-.882s.42.393.42.882zm-2.414 8.978a.418.418 0 0 1-.836 0c0-.229.189-.413.418-.413s.418.185.418.413M5.57 17.36c-.165 0-1.688.02-2.163.227-.474.21.284.508.928.544.322.02.22.26.076.453-1.155 1.58-.265 1.263.513.565.192-.17.265.057.285.265.018.206.51 1.75.665-.208.063-.81.113-1.241.077-1.526-.038-.282-.193-.32-.381-.32m12.858 0c.161 0 1.687.02 2.163.227.474.21-.284.508-.932.544-.32.02-.217.26-.076.453 1.158 1.58.268 1.263-.51.565-.192-.17-.265.057-.285.265-.021.206-.516 1.75-.665-.208-.064-.81-.113-1.241-.076-1.526.04-.282.19-.32.381-.32m-6.254-8.812c0 .607-.235 1.101-.524 1.101-.288 0-.521-.494-.521-1.1 0-.608.233-1.101.52-1.101.289 0 .525.493.525 1.1m3.377-.091c0 .481-.189.876-.419.876s-.418-.395-.418-.876c0-.488.188-.882.418-.882s.42.393.42.882Z"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/coder.svg������������������������������������0000664�0000000�0000000�00000003403�14753064456�0024717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.899 3.548c-2.247 0-3.116 1.152-3.116 3.236v1.077a4.9 4.9 0 0 1 1.594-.277c.319 0 .638.03.943.103v-.598c0-.845.434-1.34 1.303-1.34h.32v-2.2Zm7.565 0v2.2h.319c.884 0 1.305.482 1.305 1.342v2.884c0 1.253.377 1.764 1.203 2.026-.826.248-1.203.773-1.203 2.026v2.141c0 .597 0 1.181-.16 1.779a4.4 4.4 0 0 1-.783 1.529 4 4 0 0 1-.695.685v.292h1.043c2.247 0 3.116-1.152 3.116-3.236v-3.264c0-.583.304-.845.796-.845H24v-2.2h-.58v-.014c-.477 0-.795-.277-.795-.846V6.785c0-2.085-.871-3.237-3.118-3.237Zm-5.363 2.813a.13.13 0 0 0-.13.13v.25c0 .072.058.13.13.13h3.219c.072 0 .144-.058.144-.13v-.25a.13.13 0 0 0-.13-.13Zm0 1.574a.13.13 0 0 0-.13.13v.249c0 .073.058.13.13.13h4.697c.073 0 .116-.072.116-.13v-.248a.13.13 0 0 0-.13-.13ZM9.406 8.94a4.86 4.86 0 0 0-4.362 2.754c-.015 0-.014.015-.03.015a4.4 4.4 0 0 0-1.564.102A4.53 4.53 0 0 0 .044 15.6a4 4 0 0 0-.044.553c0 .554.377 1.065.928 1.138a1.088 1.088 0 0 0 1.26-1.094c0-.102 0-.218.016-.32a2.31 2.31 0 0 1 1.753-1.939 2.1 2.1 0 0 1 .855-.043c.884.116 1.754-.335 2.13-1.122.276-.583.71-1.093 1.29-1.37a2.65 2.65 0 0 1 2.029-.117c.696.248 1.218.773 1.537 1.429.333.641.492 1.092 1.202 1.18.29.043 1.102.03 1.406.014.594 0 1.189.204 1.609.626a2.23 2.23 0 0 1 .565 1.065 2.2 2.2 0 0 1-.42 1.807 2.1 2.1 0 0 1-1.072.728 2.2 2.2 0 0 1-.61.074h-3.202c-.638 0-1.145-.51-1.145-1.152v-4.27a.323.323 0 0 0-.32-.32h-.449c-.884.015-1.594 1.006-1.594 2.055v3.831a2.047 2.047 0 0 0 2.044 2.056l5.102-.015a4.34 4.34 0 0 0 2.956-1.633c.725-.889 1.058-2.054.913-3.25-.232-1.85-1.652-3.393-3.478-3.743a4 4 0 0 0-1.507-.03c-.015 0-.015-.014-.03-.014-.797-1.676-2.507-2.784-4.362-2.784m5.102.57a.13.13 0 0 0-.116.131v.247a.13.13 0 0 0 .13.131h2.348c.073 0 .13-.073.13-.13V9.64a.13.13 0 0 0-.13-.13Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codersrank.svg�������������������������������0000664�0000000�0000000�00000001205�14753064456�0025754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.134 8.64-5.973-3.62a.286.286 0 0 0-.412.125l-1.4 3.286 2.842 1.696a.53.53 0 0 1 0 .921l-5.335 3.14-2.267 5.274a.127.127 0 0 0 .052.203.12.12 0 0 0 .134-.035l3.914-2.365 1.545 2.219a.37.37 0 0 0 .309.167h3.708a.37.37 0 0 0 .327-.2.38.38 0 0 0-.018-.386l-2.513-3.852 5.088-3.077q.865-.524.865-1.172V9.813q0-.649-.866-1.172zM13.082 4.35.845 12.052q-.865.523-.845 1.171v1.173q.021.648.866 1.15l6.056 3.496a.286.286 0 0 0 .412-.146l1.36-3.286-2.884-1.633a.52.52 0 0 1-.275-.384.53.53 0 0 1 .254-.537l5.295-3.245 2.183-5.316a.13.13 0 0 0-.04-.142.12.12 0 0 0-.146-.005z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/coderwall.svg��������������������������������0000664�0000000�0000000�00000001132�14753064456�0025574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.354 18.708a2.647 2.647 0 0 1 0 5.292 2.65 2.65 0 0 1-2.646-2.646 2.65 2.65 0 0 1 2.646-2.646M12 9.354c1.46 0 2.646 1.186 2.646 2.646S13.46 14.646 12 14.646 9.354 13.46 9.354 12 10.54 9.354 12 9.354m9.354 0C22.814 9.354 24 10.54 24 12s-1.186 2.646-2.646 2.646S18.708 13.46 18.708 12s1.185-2.646 2.646-2.646M12 0a2.647 2.647 0 0 1 0 5.292c-1.46 0-2.646-1.186-2.646-2.646S10.54 0 12 0M2.646 0a2.647 2.647 0 0 1 0 5.292C1.186 5.292 0 4.106 0 2.646S1.186 0 2.646 0m18.708 0a2.647 2.647 0 0 1 0 5.292 2.647 2.647 0 0 1 0-5.292"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codesandbox.svg������������������������������0000664�0000000�0000000�00000000170�14753064456�0026112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 24h24V0H0v2.455h21.546v19.09H2.454V0H0Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codeship.svg���������������������������������0000664�0000000�0000000�00000001515�14753064456�0025423�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0m0 1.334c.824 0 1.636.191 2.373.56a.53.53 0 0 1 .294.474v1.519a16 16 0 0 0-5.334 0V2.368c0-.2.114-.384.294-.474A5.3 5.3 0 0 1 12 1.334m5.143 4.595c.114.043.19.152.19.274v2.122A21 21 0 0 0 12 6.648c-1.951.344-3.794.943-5.333 1.677V6.203c0-.122.076-.231.19-.274a14.7 14.7 0 0 1 5.038-.933c1.926-.024 3.725.37 5.248.933M12 8s3.752.625 6.411 2.482c.145.101.18.299.084.448-1.104 1.74-1.97 3.922-2.596 5.838 1.252-1.28 2.24-2.085 4.1-2.101.9 0 1.598.202 2.185.516C20.42 20.618 15.503 22.72 12 22.667c-4.337.02-8.32-2.702-9.914-6.723.8-.709 1.74-1.277 3.247-1.277.92 0 1.626.212 2.22.537-.554-1.475-1.236-2.994-2.048-4.274a.33.33 0 0 1 .084-.448C8.248 8.625 12 8 12 8m0 1.333c-1.333 2 0 8 0 8s1.333-6 0-8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codesignal.svg�������������������������������0000664�0000000�0000000�00000000576�14753064456�0025743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 1.212 13.012 2.787 12 5.62l-1.01-2.833L0 1.212 3.672 11.45l4.512.646 3.815 10.691 3.816-10.691 4.512-.646zm-3.625 4.406-4.52.648-.73 2.044 4.517-.647-.734 2.047-4.514.647L12 17.064l-2.393-6.707-4.514-.647-.735-2.047 4.518.647-.73-2.044-4.52-.648-.735-2.047 6.676.956L12 11.345l2.434-6.818 6.676-.956Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codestream.svg�������������������������������0000664�0000000�0000000�00000000734�14753064456�0025755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.54 18.246a6.46 6.46 0 0 1 0-12.58V1.22a.432.432 0 0 0-.745-.294l-9.36 9.971a1.61 1.61 0 0 0 0 2.201l9.36 9.976a.432.432 0 0 0 .746-.295zm2.92 0a6.46 6.46 0 0 0 0-12.58V1.22a.432.432 0 0 1 .746-.294l9.36 9.971a1.61 1.61 0 0 1 0 2.201l-9.36 9.976a.432.432 0 0 1-.747-.295zm2.263-6.29a3.728 3.73 0 0 1-3.728 3.73 3.728 3.73 0 0 1-3.727-3.73 3.728 3.73 0 0 1 3.727-3.731 3.728 3.73 0 0 1 3.728 3.73"/></svg>������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codewars.svg���������������������������������0000664�0000000�0000000�00000014540�14753064456�0025436�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.072.142A1.07 1.07 0 0 0 0 1.214v21.572a1.07 1.07 0 0 0 1.072 1.072h21.856A1.07 1.07 0 0 0 24 22.786V1.214A1.07 1.07 0 0 0 22.928.142zm9.736 1.818a.9.9 0 0 1 .828.539.784.784 0 0 1 1.274.493.64.64 0 0 1 .29-.06c.33.008.59.262.625.575a1.32 1.32 0 0 1 .624-.515 1.325 1.325 0 0 1 1.718.71 1.1 1.1 0 0 1 .306-.236 1.1 1.1 0 0 1 1.483.479 1.1 1.1 0 0 1 .12.47.994.994 0 0 1 1.322 1.214.904.904 0 0 1 .874 1.438.784.784 0 0 1 .176 1.356.64.64 0 0 1 .19.224.64.64 0 0 1-.011.613 1.3 1.3 0 0 1 .482.235 1.334 1.334 0 0 1 .258 1.842 1.1 1.1 0 0 1 .35.15 1.1 1.1 0 0 1 .337 1.516 1.1 1.1 0 0 1-.344.344.994.994 0 0 1 .228 1.318 1 1 0 0 1-.605.434.904.904 0 0 1-.803 1.482l-.008-.04a.784.784 0 0 1-1.075.873.64.64 0 0 1-.098.28.63.63 0 0 1-.43.288 1.3 1.3 0 0 1 .023.456 1.334 1.334 0 0 1-1.44 1.173 1.1 1.1 0 0 1 .054.377 1.1 1.1 0 0 1-1.128 1.072 1.1 1.1 0 0 1-.47-.12.994.994 0 0 1-1.696.583.904.904 0 0 1-1.685.075.784.784 0 0 1-1.274-.493.64.64 0 0 1-.29.064.64.64 0 0 1-.621-.58l.004-.007a1.33 1.33 0 0 1-.632.523 1.334 1.334 0 0 1-1.718-.706 1.1 1.1 0 0 1-.306.232 1.1 1.1 0 0 1-1.48-.478 1.1 1.1 0 0 1-.123-.471.994.994 0 0 1-1.318-1.21.904.904 0 0 1-.874-1.442.784.784 0 0 1-.176-1.356.64.64 0 0 1-.194-.224.64.64 0 0 1 .011-.61l.019.004a1.3 1.3 0 0 1-.497-.239 1.334 1.334 0 0 1-.262-1.845 1.1 1.1 0 0 1-.35-.146 1.1 1.1 0 0 1-.337-1.52 1.1 1.1 0 0 1 .347-.34A.994.994 0 0 1 2.88 9a.904.904 0 0 1 .803-1.48.784.784 0 0 1 1.083-.836.64.64 0 0 1 .098-.28.65.65 0 0 1 .433-.288 1.3 1.3 0 0 1-.026-.452A1.334 1.334 0 0 1 6.716 4.49a1.1 1.1 0 0 1-.06-.377 1.1 1.1 0 0 1 1.13-1.073 1.1 1.1 0 0 1 .47.115.994.994 0 0 1 1.696-.579.9.9 0 0 1 .857-.617zM3.683 7.519l.008.041-.004-.04zM17.502 19.61l-.002-.004h-.037zM13.825 3.507l-.008.012.008-.011zm-2.369-.014-.003.003a.9.9 0 0 1-.665.27.9.9 0 0 1-.583-.232.994.994 0 0 1-.986.732 1 1 0 0 1-.362-.075 1.1 1.1 0 0 1-1.061 1.046 1.33 1.33 0 0 1 .123.736 1.33 1.33 0 0 1-.725 1.035 1.1 1.1 0 0 1 .307.795 1.1 1.1 0 0 1-.232.65c.321.18.53.523.523.915a1 1 0 0 1-.07.337.915.915 0 0 1 .82.937 1 1 0 0 1-.01.138.7.7 0 0 1 .157-.01c.343.007.627.25.702.57a.66.66 0 0 1 .38-.111c.31.007.561.224.632.511a.42.42 0 0 1 .381-.015 1.35 1.35 0 0 1 .303-.63.4.4 0 0 1-.12-.143.42.42 0 0 1 .004-.392.665.665 0 0 1-.325-1.117.74.74 0 0 1-.359-.336.74.74 0 0 1 .385-1.023l-.06.026a.9.9 0 0 1-.201-.262.915.915 0 0 1 .623-1.315V6.53a1.02 1.02 0 0 1 .437-1.371 1 1 0 0 1 .553-.112 1.11 1.11 0 0 1 .598-1.054l.06-.026a.6.6 0 0 1-.109-.21.8.8 0 0 1-.455.132.78.78 0 0 1-.662-.396m4.573 1.512a1.33 1.33 0 0 1-.587.46 1.33 1.33 0 0 1-1.255-.142v-.011a1.1 1.1 0 0 1-.553.66 1.1 1.1 0 0 1-.683.113 1.02 1.02 0 0 1-.553.889 1 1 0 0 1-.329.105.92.92 0 0 1-.43 1.169 1 1 0 0 1-.127.056.7.7 0 0 1 .086.13.74.74 0 0 1-.168.89.66.66 0 0 1 .28.283.655.655 0 0 1-.149.796.4.4 0 0 1 .153.164q.027.051.038.101a1.36 1.36 0 0 1 .672-.015.4.4 0 0 1 .056-.142.42.42 0 0 1 .34-.194.665.665 0 0 1 .796-.848.74.74 0 0 1 .112-.478.733.733 0 0 1 1.016-.224.9.9 0 0 1 .127-.306.915.915 0 0 1 1.27-.28 1 1 0 0 1 .179.153 1.02 1.02 0 0 1 1.408-.314 1 1 0 0 1 .374.422c.355-.24.833-.261 1.214-.015a1 1 0 0 1 .209.172.6.6 0 0 1 .082-.108.8.8 0 0 1-.332-.337.78.78 0 0 1 .03-.77.9.9 0 0 1-.553-.455.9.9 0 0 1-.075-.624.994.994 0 0 1-1.117-.511 1 1 0 0 1-.104-.359 1.1 1.1 0 0 1-1.427-.43M5.249 7.37a.8.8 0 0 1-.124.46.78.78 0 0 1-.68.362c.06.235.026.49-.112.71a.9.9 0 0 1-.5.377c.31.325.373.829.12 1.225a1 1 0 0 1-.255.269 1.1 1.1 0 0 1 .351 1.45 1.33 1.33 0 0 1 .691.276 1.33 1.33 0 0 1 .512 1.154c.28-.064.579-.019.84.15a1.1 1.1 0 0 1 .438.53 1.02 1.02 0 0 1 1.05.03 1 1 0 0 1 .257.231.914.914 0 0 1 1.225-.224 1 1 0 0 1 .112.086.7.7 0 0 1 .071-.142.74.74 0 0 1 .852-.306.66.66 0 0 1 .1-.381.664.664 0 0 1 .763-.273.42.42 0 0 1 .246-.373 1.36 1.36 0 0 1-.358-.523v-.008a.4.4 0 0 1-.25.075.42.42 0 0 1-.344-.19.665.665 0 0 1-1.132-.243.74.74 0 0 1-.47.149.733.733 0 0 1-.718-.755.9.9 0 0 1-.329.049.915.915 0 0 1-.855-1.177h-.004a1.016 1.016 0 0 1-.993-1.042 1 1 0 0 1 .168-.534 1.11 1.11 0 0 1-.64-1.035 1.1 1.1 0 0 1 .068-.358 1 1 0 0 1-.1-.019m11.127 2.133a.913.913 0 0 1-1.225.224 1 1 0 0 1-.112-.082.7.7 0 0 1-.067.142.74.74 0 0 1-.852.302.66.66 0 0 1-.105.385.66.66 0 0 1-.762.277.4.4 0 0 1-.063.212.4.4 0 0 1-.075.086 1.36 1.36 0 0 1 .314.564.4.4 0 0 1 .187-.04.42.42 0 0 1 .343.194.665.665 0 0 1 1.136.242.74.74 0 0 1 .467-.153c.41.008.728.348.72.755v.008-.005a.9.9 0 0 1 .326-.052.915.915 0 0 1 .896.941 1 1 0 0 1-.037.236c.564.015 1.008.482.993 1.046a1 1 0 0 1-.168.534 1.11 1.11 0 0 1 .647 1.035 1.1 1.1 0 0 1-.075.362l.004-.007.1.018a.8.8 0 0 1 .124-.46.78.78 0 0 1 .68-.362.9.9 0 0 1 .112-.71.9.9 0 0 1 .504-.373.994.994 0 0 1-.123-1.225 1 1 0 0 1 .257-.269 1.1 1.1 0 0 1-.35-1.453 1.33 1.33 0 0 1-.696-.273h-.003a1.33 1.33 0 0 1-.512-1.158 1.08 1.08 0 0 1-.837-.145 1.1 1.1 0 0 1-.44-.535 1.02 1.02 0 0 1-1.05-.026 1 1 0 0 1-.258-.235m-.094 3.116-.007.066zm-2.864-.259a1.36 1.36 0 0 1-.363.598.42.42 0 0 1 .194.187.42.42 0 0 1-.007.396.665.665 0 0 1 .329 1.113.74.74 0 0 1 .358.336.74.74 0 0 1-.32.994.9.9 0 0 1 .197.261.91.91 0 0 1-.396 1.233 1 1 0 0 1-.224.082v.004a1.02 1.02 0 0 1-.44 1.374 1 1 0 0 1-.55.109 1.11 1.11 0 0 1-.661 1.083.6.6 0 0 1 .112.21h-.004v.003a.8.8 0 0 1 .456-.134.78.78 0 0 1 .661.392.9.9 0 0 1 .665-.27.9.9 0 0 1 .587.236.994.994 0 0 1 .982-.736 1 1 0 0 1 .362.079v.022a1.1 1.1 0 0 1 1.061-1.072 1.33 1.33 0 0 1-.123-.736c.056-.46.34-.837.725-1.035l.003.004a1.1 1.1 0 0 1-.31-.795 1.1 1.1 0 0 1 .232-.654 1.02 1.02 0 0 1-.452-1.251.915.915 0 0 1-.822-.934 1 1 0 0 1 .011-.142.7.7 0 0 1-.157.015.74.74 0 0 1-.698-.572.66.66 0 0 1-.385.112.67.67 0 0 1-.627-.512.4.4 0 0 1-.217.053.4.4 0 0 1-.18-.045zm-.964.93a1.4 1.4 0 0 1-.336.042q-.169 0-.322-.038a.42.42 0 0 1-.06.295.42.42 0 0 1-.343.195.665.665 0 0 1-.792.844.74.74 0 0 1-.112.478.74.74 0 0 1-1.02.224.9.9 0 0 1-.127.306.915.915 0 0 1-1.266.28 1 1 0 0 1-.183-.153v.004a1.02 1.02 0 0 1-1.408.31 1 1 0 0 1-.374-.418c-.355.239-.83.261-1.214.015a1 1 0 0 1-.21-.172.7.7 0 0 1-.081.105.8.8 0 0 1 .336.336.78.78 0 0 1-.034.77.9.9 0 0 1 .553.455.9.9 0 0 1 .075.624.994.994 0 0 1 1.12.515 1 1 0 0 1 .101.355 1.1 1.1 0 0 1 1.431.43 1.33 1.33 0 0 1 .587-.46c.43-.172.896-.104 1.255.142a1.1 1.1 0 0 1 .549-.65 1.1 1.1 0 0 1 .683-.108 1.02 1.02 0 0 1 .553-.893 1 1 0 0 1 .333-.104.916.916 0 0 1 .425-1.17 1 1 0 0 1 .131-.052.7.7 0 0 1-.09-.134.74.74 0 0 1 .169-.886.66.66 0 0 1-.28-.284.67.67 0 0 1 .149-.799.4.4 0 0 1-.15-.164.4.4 0 0 1-.048-.24"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codingame.svg��������������������������������0000664�0000000�0000000�00000004646�14753064456�0025563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.025 11.893c-.1.293-.07.561.009.67.078.11.223.26.55.272s.697-.167.697-.167l-.136.78c-.008.008-.4.138-.88.134-.661-.004-1.321-.317-1.261-1.252.006-.081.053-.398.128-.573a1.8 1.8 0 0 1 1.105-1.073c.67-.236 1.39-.016 1.39-.016l-.141.817s-.247-.203-.755-.154a1 1 0 0 0-.323.106.85.85 0 0 0-.383.456m3.98.594c-.08.479-.446 1.097-1.397 1.097s-1.102-.618-1.016-1.097c.217-1.134 1.394-1.077 1.394-1.077s1.195-.057 1.02 1.077zm-.887-.277c-.043-.175-.241-.169-.241-.169v.001s-.213-.017-.33.21c-.136.314-.075.514-.07.532.043.175.24.169.24.169v-.001s.214.017.33-.21c.136-.314.075-.514.07-.532zm3.827-1.747-.534 3.07h-.868l.043-.245a.84.84 0 0 1-.66.3c-.527 0-.813-.395-.707-1.003.132-.76.65-1.2 1.138-1.2.234 0 .411.099.512.275v-.002l.208-1.195zm-1.43 1.577c-.205-.004-.36.242-.402.48-.04.238-.005.427.244.43.15 0 .326-.088.394-.43.028-.163.05-.48-.236-.48m3.554-.556s-.259-.174-.698 0c-.189.073-.374.308-.374.308l.058-.335h-.867l-.26 1.493h.87l.1-.573.002-.019c.014-.071.078-.318.305-.318.265 0 .18.334.18.334l-.198 1.159h.866l.237-1.363c.09-.525-.22-.686-.22-.686zm-1.367-.338c.22 0 .398-.156.398-.349s-.178-.349-.398-.349-.398.156-.398.35c0 .191.178.348.398.348m3.723.146c.605 0 .818.158.818.158l.134-.768c-.405-.102-2.343-.479-2.782 1.463-.264 1.52 1.343 1.438 1.343 1.438s.634 0 1.176-.244l.189-1.09-.885-.003-.1.6s-.55.147-.753-.265c-.077-.152-.025-.449-.025-.449s.117-.84.885-.84m3.21 1.032-.21 1.209h-.788l.055-.315s-.26.366-.706.366c-.65 0-.52-.655-.52-.655s.053-.561.752-.679l.646-.071s.079-.241-.303-.241-.763.207-.763.207l.1-.577s.516-.187.995-.163c1.01.005.742.919.742.919m-.84.258s-.158.033-.3.045c-.225.034-.253.182-.257.203-.038.22.196.19.196.19s.248.009.338-.31zm4.29-1.178c-.512 0-.766.364-.766.364s-.098-.364-.57-.364c-.471 0-.756.376-.756.376l.056-.321h-.87l-.361 2.074h.87l.209-1.201s.07-.293.303-.293.176.297.176.297l-.208 1.197h.872l.207-1.193s.058-.301.301-.301c.244 0 .174.309.174.309l-.21 1.184h.878l.241-1.388c0 .001.133-.74-.546-.74m4.414-.417c0 .02.01.297-.483.382-.858.11-.96.575-.97.63-.012.055.005.163-.032.35l-.06.394H20.62s.041.293.412.293.63-.116.63-.116l-.087.536s-.26.134-.828.134c-.09 0-1.115-.002-.926-1.091.091-.524.557-1.095 1.368-1.095.38-.002.4.133.767.133.31-.008.57-.305.57-.305s.094-.15.17-.32c.06-.082.168-.258.514-.222.29.053.29.277.29.297zm-2.47.946c-.27 0-.333.357-.333.357h.53s.074-.357-.197-.357m2.792-1.523a.179.179 0 1 0 0 .358.179.179 0 0 0 0-.358"/></svg>������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codingninjas.svg�����������������������������0000664�0000000�0000000�00000002040�14753064456�0026265�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.198 0c-.499.264-1.209.675-1.79.984a543 543 0 0 0 0 6.242c.995-.526 1.761-.834 1.79-2.066zM8.743.181C7.298.144 5.613.65 4.47 1.414c-1.17.8-1.987 1.869-2.572 3.179A16.8 16.8 0 0 0 .9 8.87c-.15 1.483-.128 3.079.025 4.677.27 1.855.601 3.724 1.616 5.456 1.57 2.62 4.313 4.109 7.262 4.19 3.41.246 7.233.53 11.411.807.022-2.005.01-5.418 0-6.25-3.206-.21-7.398-.524-11.047-.782-.443-.043-.896-.056-1.324-.172-1.086-.295-1.806-.802-2.374-1.757-.643-1.107-.875-2.832-.797-4.294.11-1.27.287-2.41 1.244-3.44.669-.56 1.307-.758 2.161-.84 5.17.345 7.609.53 12.137.858.032-1.133.01-3.46 0-6.229C16.561.752 12.776.474 8.743.181m-.281 9.7c.174.675.338 1.305.729 1.903.537.832 1.375 1.127 2.388.877.76-.196 1.581-.645 2.35-1.282zm12.974 1.04-5.447.689c.799.739 1.552 1.368 2.548 1.703.988.319 1.78.01 2.308-.777.209-.329.56-1.148.591-1.614zm.842 6.461c-.388.01-.665.198-.87.355.002 1.798 0 4.127 0 6.223.586-.297 1.135-.644 1.793-.998-.005-1.454.002-3.137-.005-4.707a.904.904 0 0 0-.917-.873z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/codio.svg������������������������������������0000664�0000000�0000000�00000000304�14753064456�0024715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.997 24 1.605 17.997v-12L12 0l10.396 5.997L16.5 9.402 12 6.8 7.496 9.4v5.2l4.502 2.6 4.5-2.6 5.895 3.397L12.003 24z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/coffeescript.svg�����������������������������0000664�0000000�0000000�00000002604�14753064456�0026301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.645 7.472c2.1.53 4.779.8 8.008.8 3.299 0 5.918-.27 8.008-.8 2.23-.52 3.299-1.22 3.299-1.88 0-.47-.48-.93-1.35-1.28.2.13.35.35.35.59 0 .67-1.01 1.22-3.039 1.68-1.88.41-4.279.7-7.198.7-2.82 0-5.329-.29-7.138-.68-1.95-.48-2.97-1-2.97-1.68 0-.28.13-.52.52-.8-1.22.47-1.88.87-1.88 1.47.07.68 1.16 1.36 3.39 1.88m4.689-2.16c2.27-.2 2.929-1.659 5.588-1.899 1.31-.1 2.14.16 2.23.62.08.43-.57.72-1.36.78-1.09.11-1.54-.28-1.63-.65-.81.09-.94.43-.9.67.09.46 1.07.92 2.75.76 1.9-.15 2.54-.9 2.38-1.65-.2-.98-1.66-1.8-4.28-1.55-3.359.3-3.339 1.86-5.628 2.05-.94.09-1.46-.13-1.55-.5-.06-.37.4-.55.94-.59.5-.05 1.11.04 1.4.2.21-.11.28-.22.26-.35-.1-.35-.79-.5-1.66-.44-1.7.15-1.7.91-1.64 1.25.17.87 1.48 1.45 3.1 1.3zm11.417 3.84c-2.1.49-4.779.809-8.008.809-3.3 0-5.989-.34-8.078-.8-1.88-.48-2.88-1.01-3.23-1.56.18 1.23.49 2.42.89 3.55-.48.3-.91.67-1.3 1.17a4.52 4.52 0 0 0-1.019 3.098 3.6 3.6 0 0 0 1.42 2.62c.87.68 1.81.88 2.879.68.41-.07.87-.28 1.29-.42-.88 0-1.62-.28-2.36-.87a3.55 3.55 0 0 1-1.49-2.42c-.2-.94 0-1.81.53-2.579.12-.15.25-.28.39-.4.3.73.62 1.45.98 2.12.81 1.23 1.62 2.299 2.43 3.459.35.68.58 1.35.74 2.019a3.9 3.9 0 0 0 2.229 1.5c1.15.4 2.35.58 3.579.51h.13a10.2 10.2 0 0 0 3.689-.52 4.18 4.18 0 0 0 2.16-1.49h.07c.13-.67.35-1.34.67-2.02.799-1.17 1.619-2.229 2.419-3.458A20.995 20.993 0 0 0 24 7.612c-.43.6-1.44 1.13-3.25 1.54z"/></svg>����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/coggle.svg�����������������������������������0000664�0000000�0000000�00000000512�14753064456�0025061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.684 0A3.683 3.683 0 0 0 0 3.684v10.92c2.052-.535 3.606-1.577 5.158-3.13h7.367v7.368c-1.88 1.88-5.438 4.598-8.052 5.158h15.843A3.683 3.683 0 0 0 24 20.316V8.881q-2.316.804-4.63 3.119l-4.74 4.736V9.37H7.265l3.683-3.685c2.35-2.35 5.96-5.119 8.58-5.684z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cognizant.svg��������������������������������0000664�0000000�0000000�00000003242�14753064456�0025620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.955 9.425C.842 9.425 0 10.265 0 11.38c0 1.132.821 1.953 1.953 1.953.73 0 1.374-.405 1.725-1.084l.01-.02-.695-.368-.009.023c-.206.437-.588.686-1.046.686-.663 0-1.18-.523-1.18-1.192 0-.686.515-1.202 1.197-1.202q.665.002 1 .617l.01.022.668-.427-.012-.019a1.9 1.9 0 0 0-1.666-.944m20.78.189v.903h-.467v.673h.465v.876c0 .892.285 1.188 1.155 1.188h.108v-.701c-.459 0-.515-.066-.515-.493v-.87H24v-.673h-.515v-.903zm-9.858.002v.68h.75v-.68zm-4.727.845c-.619 0-1.33.456-1.33 1.425 0 .963.738 1.422 1.315 1.424.356 0 .647-.148.827-.362v.257c0 .356-.257.673-.662.673a.8.8 0 0 1-.761-.465l-.662.373c.22.428.73.79 1.425.79.926 0 1.413-.625 1.413-1.397v-2.662h-.75v.295a1.07 1.07 0 0 0-.815-.35zm9.599 0c-.619 0-1.331.456-1.331 1.425 0 .963.739 1.422 1.32 1.424.356 0 .646-.148.826-.362v.308h.75v-2.739h-.75v.266c-.18-.19-.459-.322-.815-.322m-6.234.002a.94.94 0 0 0-.756.362v-.308h-.744v2.739h.75V11.76c0-.46.236-.656.52-.656.334 0 .505.214.505.581v1.57h.76v-1.67c0-.706-.389-1.122-1.035-1.122m9.602 0a.94.94 0 0 0-.755.362v-.308h-.744l-.002 2.739h.75V11.76c0-.46.236-.656.52-.656.336 0 .505.214.505.581v1.57h.76v-1.67c0-.706-.387-1.122-1.034-1.122m-15.9.01a1.42 1.42 0 0 0-1.423 1.413l-.002.01a1.42 1.42 0 1 0 1.425-1.423m8.704.044v.662h1.42l-1.44 1.408v.669h2.474v-.664h-1.468l1.44-1.402v-.673zm-1.055.008v2.738h.75v-2.738zm-4.58.622c.406 0 .702.328.702.733s-.296.739-.701.739a.72.72 0 0 1-.733-.739c0-.422.317-.733.733-.733zm9.598 0c.405 0 .7.328.7.733.003.405-.293.739-.7.739a.72.72 0 0 1-.733-.739c0-.422.319-.735.733-.733m-12.671.026c.382 0 .69.325.69.713a.704.704 0 0 1-.69.712c-.388 0-.684-.322-.684-.712s.296-.713.684-.713"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cohost.svg�����������������������������������0000664�0000000�0000000�00000002236�14753064456�0025125�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.306 3.345q-2.565-.033-5.416.73-3.273.877-5.699 2.46Q1.766 8.12.666 10.29t-.385 4.836q.71 2.654 2.75 3.99 2.04 1.338 4.935 1.51 2.897.175 6.17-.702 2.947-.79 5.203-2.172c-1.28.086-3.208-.1-4.248-1.266q-.57-.64-.57-1.606 0-.972.57-1.61.57-.636 1.54-.955.967-.316 2.16-.316c.75 0 2.24.109 3.273.893q.23.175.418.384.384.426.511.999.18-.294.334-.598 1.105-2.18.395-4.833-.711-2.651-2.756-3.978a8.6 8.6 0 0 0-1.434-.747c-1.253-.511-2.64-.754-4.226-.775M8.552 12q.933 0 1.721.166.788.164 1.353.432.567.268.82.572l-1.411.926q-.308-.336-.938-.537t-1.529-.201q-.44 0-.89.068-.45.069-.825.234c-.375.165-.453.267-.605.465q-.23.298-.229.756 0 .453.229.746.229.295.605.47.375.173.825.245c.838.134 1.748.081 2.421-.148q.648-.221.912-.508l1.448.922q-.228.242-.8.516-.57.273-1.374.46a8.05 8.05 0 0 1-3.322.03 5 5 0 0 1-1.407-.498 2.8 2.8 0 0 1-1.001-.895q-.373-.552-.373-1.34 0-.8.373-1.354a2.74 2.74 0 0 1 1.002-.886q.628-.337 1.406-.489A8.3 8.3 0 0 1 8.553 12m10.238 1.379q-1.152 0-1.795.4-.642.401-.642 1.102 0 .695.642 1.102.642.409 1.795.41 1.154 0 1.79-.414.633-.414.632-1.098 0-.701-.637-1.102-.637-.4-1.785-.4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/coinbase.svg���������������������������������0000664�0000000�0000000�00000004017�14753064456�0025410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.844 11.053c-.872 0-1.553.662-1.553 1.548s.664 1.542 1.553 1.542 1.564-.667 1.564-1.547c0-.875-.664-1.543-1.564-1.543m.006 2.452c-.497 0-.86-.386-.86-.904 0-.523.357-.909.854-.909.502 0 .866.392.866.91 0 .517-.364.903-.86.903m1.749-1.778h.433v2.36h.693V11.11H6.599zm-5.052-.035c.364 0 .653.224.762.558h.734c-.133-.713-.722-1.197-1.49-1.197-.872 0-1.553.662-1.553 1.548 0 .887.664 1.543 1.553 1.543.75 0 1.351-.484 1.484-1.203h-.728a.78.78 0 0 1-.756.564c-.502 0-.855-.386-.855-.904 0-.523.347-.909.85-.909zm18.215.622-.508-.075c-.242-.035-.415-.115-.415-.305 0-.207.225-.31.53-.31.336 0 .55.143.595.379h.67c-.075-.599-.537-.95-1.247-.95-.733 0-1.218.375-1.218.904 0 .506.317.8.958.892l.508.075c.249.034.387.132.387.316 0 .236-.242.334-.577.334-.41 0-.641-.167-.676-.42h-.681c.064.581.52.99 1.35.99.757 0 1.26-.346 1.26-.938 0-.53-.364-.806-.936-.892M7.378 9.885a.43.43 0 0 0-.444.437c0 .254.19.438.444.438a.43.43 0 0 0 .445-.438.43.43 0 0 0-.445-.437m10.167 2.245c0-.645-.392-1.076-1.224-1.076-.785 0-1.224.397-1.31 1.007h.687c.035-.236.22-.432.612-.432.352 0 .525.155.525.345 0 .248-.317.311-.71.351-.531.058-1.19.242-1.19.933 0 .535.4.88 1.034.88.497 0 .809-.207.965-.535.023.293.242.483.548.483h.404v-.616h-.34zm-.68.748c0 .397-.347.69-.769.69-.26 0-.48-.11-.48-.34 0-.293.353-.373.676-.408.312-.028.485-.097.572-.23zm-3.679-1.825c-.386 0-.71.162-.94.432V9.856h-.693v4.23h.68v-.391c.232.282.56.449.953.449.832 0 1.461-.656 1.461-1.543s-.64-1.548-1.46-1.548zm-.103 2.452c-.497 0-.86-.386-.86-.904 0-.517.369-.909.865-.909.503 0 .855.386.855.91 0 .517-.364.903-.86.903m-3.187-2.452c-.45 0-.745.184-.919.443v-.385H8.29v2.975h.693v-1.617c0-.455.289-.777.716-.777.398 0 .647.282.647.69v1.704h.692v-1.755c0-.748-.386-1.278-1.142-1.278M24 12.503c0-.851-.624-1.45-1.46-1.45-.89 0-1.542.668-1.542 1.548 0 .927.698 1.543 1.553 1.543.722 0 1.287-.426 1.432-1.03h-.722c-.104.264-.358.414-.699.414-.445 0-.78-.276-.854-.76H24v-.264zm-2.252-.23c.11-.414.422-.615.78-.615.392 0 .693.224.762.615Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/coinmarketcap.svg����������������������������0000664�0000000�0000000�00000001610�14753064456�0026441�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.738 14.341c-.419.265-.912.298-1.286.087-.476-.27-.738-.898-.738-1.774v-2.618c0-1.264-.5-2.164-1.336-2.407-1.416-.413-2.482 1.32-2.882 1.972l-2.498 4.05v-4.95c-.028-1.14-.398-1.821-1.1-2.027-.466-.135-1.161-.081-1.837.953l-5.597 8.987A9.9 9.9 0 0 1 2.326 12c0-5.414 4.339-9.818 9.672-9.818 5.332 0 9.67 4.404 9.67 9.818.004.018.002.034.003.053.05 1.049-.29 1.883-.933 2.29zm3.08-2.34-.001-.055C23.787 5.353 18.497 0 11.997 0 5.48 0 .177 5.383.177 12c0 6.616 5.303 12 11.82 12 2.991 0 5.846-1.137 8.037-3.2.435-.41.46-1.1.057-1.541a1.064 1.064 0 0 0-1.519-.059 9.56 9.56 0 0 1-6.574 2.618c-2.856 0-5.425-1.263-7.197-3.268l5.048-8.105v3.737c0 1.794.696 2.374 1.28 2.544s1.476.054 2.413-1.468c.998-1.614 2.025-3.297 3.023-4.88v2.276c0 1.678.672 3.02 1.843 3.68 1.056.597 2.384.543 3.465-.14 1.312-.828 2.018-2.354 1.944-4.193z"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/collaboraonline.svg��������������������������0000664�0000000�0000000�00000000244�14753064456�0026766�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.852 0 3.55 5.303 10.247 12 3.55 18.698 8.852 24l12-12zM3.147 5.706v12.588L9.442 12z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/comicfury.svg��������������������������������0000664�0000000�0000000�00000000657�14753064456�0025633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m0 6.959 1.899-3.256 2.725 2.736 2.973-.204L9.3 3.297l2.213 2.693 8.655-.252.406-1.085L24 5.128v5.268l-11.248 3.526-1.085 6.781H0zm2.195-.748L1.041 8.137l1.75 1.748 1.133-1.948zm7.409-.448L8.48 7.546l1.224 1.598 1.137-1.766zm3.901 3.751-1.992.349.997 2.025zm3.319-.565-1.992.348.996 2.025zm3.228-.611-1.991.349.996 2.025zm3.183-.566-1.992.349.996 2.025z"/></svg>���������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/comma.svg������������������������������������0000664�0000000�0000000�00000000660�14753064456�0024721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.727 24c0-.555-.044-1.02.02-1.469.027-.191.25-.396.433-.511.887-.563 1.85-1.013 2.677-1.659 2.676-2.092 4.262-4.846 4.349-8.424.024-1.015-.35-1.27-1.202-.873-2.463 1.142-5.112.472-6.525-1.65-1.541-2.316-1.324-5.4.523-7.422C9.36-.59 13.242-.668 15.919 1.8c1.603 1.478 2.365 3.386 2.555 5.557.637 7.271-3.01 13.265-9.649 15.898-.657.26-1.33.475-2.098.746"/></svg>��������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/commerzbank.svg������������������������������0000664�0000000�0000000�00000001615�14753064456�0026136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.277 1.538a.02.02 0 0 0-.012.007l-4.74 8.21-1.398 2.418c.446.774.794 1.353 1.22 2.09.671 1.164 1.548 1.597 3.13 1.889a13 13 0 0 1 .697-1.392l2.783-4.824 2.786-4.826c.404-.702 1.296-2.143 2.57-2.965-.04.025-.07.059-.109.085q.103-.072.209-.136c.46-.278.98-.467 1.413-.515.339-.038 1.465-.041 2.74-.041zm11.59.505c-1.048-.008-1.462.007-2.545.008-1.39 0-2.381.887-3.083 1.773.372.493.68.971.863 1.288a13358 13358 0 0 0 5.571 9.648c.404.7 1.209 2.196 1.284 3.71.029.574-.079 1.165-.265 1.592-.131.3-.652 1.207-1.256 2.253L24 12.678v-.008l-.002-.005zM.001 8.163l.095 4.946L0 8.163zm.093 4.946 1.132 1.964 4.264 7.384a.02.02 0 0 0 .012.005h12.265c.446-.779.664-1.147 1.311-2.282.709-1.242.278-2.681-.037-3.472-.618.076-1.18.093-1.547.093H6.35c-.809 0-2.505-.05-3.853-.741-.513-.263-.972-.65-1.248-1.027-.176-.238-.625-1.003-1.156-1.924z"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/commitlint.svg�������������������������������0000664�0000000�0000000�00000001162�14753064456�0026002�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.988 4.822v.901h1.845v6.337q0 1.213.563 1.875.569.657 1.6.657h1.458v-.97H12.11q-.555 0-.844-.393-.28-.394-.281-1.17V4.823ZM3.459 7.418q-1.626 0-2.546.976Q0 9.369 0 11.096q0 1.725.913 2.702.92.976 2.546.976a3.7 3.7 0 0 0 1-.137q.495-.132.958-.4V13.04q-.406.388-.882.576a3 3 0 0 1-1.076.18q-1.076.001-1.664-.7-.581-.706-.582-2.001 0-1.302.582-2.002t1.664-.7q.582 0 1.038.181a3.1 3.1 0 0 1 .92.588V7.956a4.3 4.3 0 0 0-.97-.406 3.7 3.7 0 0 0-.988-.132m12.855 6.123v1.128H24V13.54zm3.156 2.255-2.302 3.382h1.3l1.694-2.204 1.684 2.204h1.3l-2.301-3.382z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/commodore.svg��������������������������������0000664�0000000�0000000�00000000460�14753064456�0025607�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.202.798C5.016.798 0 5.814 0 12s5.016 11.202 11.202 11.202c1.094 0 2.153-.157 3.154-.45v-5.335a6.27 6.27 0 1 1 0-10.839v-5.33c-1-.293-2.057-.45-3.154-.45m3.375 6.343v4.304h5.27L24 7.14Zm-.037 5.377v4.304h9.423l-4.156-4.304z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/commonlisp.svg�������������������������������0000664�0000000�0000000�00000003212�14753064456�0026001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.445 23.987A12.001 12 0 1 1 15.005.382a12 12 0 0 1 6.217 3.938 11.96 11.958 0 0 1 2.376 4.59c.47 1.773.53 3.642.17 5.442a11.98 11.98 0 0 1-6.12 8.238 12.04 12.04 0 0 1-6.203 1.397m5.234-2.038a5.8 5.8 0 0 0 3.1-1.236c.647-.518 1.446-1.436 2.029-2.33a11.688 11.687 0 0 0 1.847-7.41A11.68 11.678 0 0 0 19.64 3.14 11.67 11.67 0 0 0 11.796.304c-.232.004-.506.013-.61.02-1.636.117-3.1.506-4.48 1.192-.26.13-.637.333-.63.34a1 1 0 0 0 .116-.028 6.1 6.1 0 0 1 3.78.241 6.235 6.234 0 0 1 2.68 2.036 6.075 6.074 0 0 1 1.19 3.007c.027.238.038.84.02 1.088a6.1 6.1 0 0 1-1.236 3.27 6.615 6.614 0 0 1-.546.625c-.507.53-.802.941-1.089 1.516a5.8 5.8 0 0 0-.15 4.817 5.795 5.794 0 0 0 5.837 3.521zm-3.848-5.028c.098-.192.429-.825.735-1.406.845-1.607 1.083-2.08 1.375-2.74.768-1.73 1.033-3.038.87-4.302-.156-1.22-.756-2.427-1.79-3.604a3 3 0 0 1-.147-.173c0-.003.45-.005 1.002-.003l1.002.003.063.1a78 78 0 0 1 1.257 2.133c1.817 3.212 3.136 6.344 4.212 10.001l.098.324c.005.013-.2.016-1.003.016h-1.007l-.008-.035c-.292-1.237-.728-2.572-1.36-4.16a55.634 55.628 0 0 0-.684-1.655c-.004 0-.014.022-.023.047l-.178.456c-.853 2.176-1.658 3.854-2.512 5.237l-.068.11h-2.013Zm-2.985 2.255a1 1 0 0 0-.073-.09c-.69-.81-1.193-1.665-1.468-2.489-.434-1.305-.385-2.615.162-4.227.316-.933.743-1.843 1.822-3.887.514-.974.84-1.602.84-1.62 0-.005-.39-.01-.866-.01h-.865l-.17.287c-.878 1.47-1.666 3.16-2.565 5.504-.073.19-.11.268-.116.255a96 96 0 0 1-.72-1.736C5.203 9.61 4.762 8.3 4.462 7.1l-.06-.239-.875-.003-.876-.003.044.148c.71 2.397 1.5 4.524 2.427 6.532.82 1.777 1.762 3.512 3.037 5.595l.032.054h.828c.455 0 .827-.003.827-.006z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/commonworkflowlanguage.svg�������������������0000664�0000000�0000000�00000000501�14753064456�0030406�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.905 0 8.571 5.4l.037.037.096.096 3.586 3.395-2.24 2.252h-.01l-1.576 1.586 3.737 3.766-3.735 3.803.126.139v.012L12.052 24l1.608-1.64-1.98-2.034 3.737-3.79-1.608-1.642-.01.012-2.13-2.129 3.867-3.866-.017-.015.016-.016-3.641-3.524 3.64-3.694z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/compilerexplorer.svg�������������������������0000664�0000000�0000000�00000003001�14753064456�0027210�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.78 14.147h8.914v1.657H8.78Zm0-2.94h7.355v1.657H8.78Zm0-2.943h8.914V9.92H8.78Zm13.203 9.195a.66.66 0 0 1 0-.638c.13-.238.252-.476.366-.728a.27.27 0 0 0-.249-.383h-2.166a.66.66 0 0 0-.552.297 7.6 7.6 0 0 1-.977 1.208 7.32 7.32 0 0 1-5.21 2.156 7.32 7.32 0 0 1-5.208-2.157 7.32 7.32 0 0 1-2.157-5.21c0-1.969.766-3.821 2.156-5.211a7.32 7.32 0 0 1 5.21-2.156c1.967 0 3.819.766 5.21 2.157.368.369.696.783.976 1.207.12.186.327.297.551.297H22.1a.273.273 0 0 0 .248-.383 10 10 0 0 0-.365-.728.67.67 0 0 1 0-.638l.735-1.332a.66.66 0 0 0-.11-.787l-1.836-1.836a.659.66 0 0 0-.787-.11l-1.335.738a.66.66 0 0 1-.638-.004 9.767 9.768 0 0 0-2.005-.824.66.66 0 0 1-.452-.449L15.131.48a.664.664 0 0 0-.635-.48h-2.598a.66.66 0 0 0-.634.48l-.421 1.46a.66.66 0 0 1-.452.448c-.697.203-1.37.48-2.005.828-.2.11-.438.11-.638.003L6.41 2.484a.66.66 0 0 0-.787.11L3.788 4.432a.659.66 0 0 0-.11.787l.737 1.335c.11.2.107.438-.003.638a9.767 9.768 0 0 0-.825 2.005.66.66 0 0 1-.448.452l-1.46.42a.664.664 0 0 0-.479.635v2.599c0 .293.193.556.48.635l1.459.42a.66.66 0 0 1 .448.453c.204.697.48 1.37.828 2.004.11.2.11.438.004.64l-.738 1.334a.66.66 0 0 0 .11.786l1.835 1.837a.659.66 0 0 0 .787.11l1.335-.738c.2-.11.438-.107.638.003a9.767 9.768 0 0 0 2.005.825c.217.062.39.23.452.448l.42 1.46c.083.283.342.48.635.48h2.598a.66.66 0 0 0 .635-.48l.421-1.46a.66.66 0 0 1 .452-.448 9.975 9.976 0 0 0 2.004-.828.67.67 0 0 1 .639-.004l1.335.739c.259.14.58.096.786-.11l1.836-1.837a.659.66 0 0 0 .11-.787z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/composer.svg���������������������������������0000664�0000000�0000000�00000107225�14753064456�0025461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.66 0c-.07 0-.114.034-.164.095a.42.42 0 0 0-.07.43c.19.41.363.83.528 1.25q.014.028.039.068c-.04-.002-.05-.022-.063-.043-.297-.31-.648-.557-.998-.804-.473-.337-.99-.603-1.503-.872a.6.6 0 0 0-.214-.065l-.384-.04c-.202-.025-.355.09-.355.292 0 .108-.046.132-.135.14-.08.004-.187.115-.196.192a.7.7 0 0 0 .228.619c.444.415.873.845 1.303 1.275l.015.007a.1.1 0 0 1 .028.038q-.01.004-.02.003a.06.06 0 0 1-.035-.022q-.004-.003-.005-.007c-.062-.036-.127-.07-.187-.11-.3-.2-.595-.404-.895-.598a.94.94 0 0 0-.461-.17.45.45 0 0 0-.392.143.28.28 0 0 0-.088.253c.016.146.115.237.223.312.502.338.95.734 1.366 1.174.036.038.074.079.115.112.118.096.19.224.262.356.033.06.02.074-.043.074-.428 0-.836.118-1.246.204-.168.036-.334.094-.394.28-.065.21-.096.328.16.392a9.6 9.6 0 0 1 1.49.516.6.6 0 0 1 .117.077c.12.104.23.219.362.303.38.247.77.478 1.22.583.053.012.1.039.15.05.05.015.085.044.095.094.029.178.139.279.305.33.02.006.038.02.06.028.052.017.076.055.093.108q.1.36.212.715c.026.08.002.1-.07.123q-.557.162-1.112.334c-.132.04-.134.043-.067.163l.908 1.635c.127.23.132.23.365.11.024-.012.057-.053.079-.014.02.036.06.089.024.13-.113.129-.19.28-.286.42-.031.045-.031.074-.005.117q.151.25.3.502c.012.019.034.043.03.058l-.123.367a2.5 2.5 0 0 0-.317-.716c-.18-.288-.41-.542-.62-.811q-.051-.059-.11-.115c-.2-.207-.456-.332-.7-.478a1 1 0 0 0-.34-.127c-.374-.08-.746-.11-1.12.004-.075.024-.116.005-.161-.06-.092-.127-.166-.273-.29-.372-.3-.24-.616-.458-.985-.583a3 3 0 0 0-.865-.168 4 4 0 0 0-.463.017c-.396.03-.79.074-1.14.293-.07.043-.15.067-.221.108-.36.194-.716.386-1.016.679a13 13 0 0 0-.897.944c-.322.384-.565.818-.783 1.267-.015.03-.022.07-.07.096l-.12-.744c-.007-.046.022-.043.053-.038.089.01.175.014.264.026.067.01.103-.005.12-.08q.034-.153.067-.311c.082-.397.2-.78.303-1.17.02-.074.007-.1-.07-.12-.381-.09-.763-.192-1.145-.283-.072-.017-.106-.043-.084-.12.087-.298.125-.61.242-.9a.2.2 0 0 1 .056-.087c.098-.076.17-.165.16-.302-.007-.103.041-.168.14-.214.182-.086.358-.187.53-.288a.84.84 0 0 0 .327-.333c.322-.605.59-1.242.98-1.81.033-.051.06-.106.1-.15.252-.264.488-.544.771-.78.089-.074.113-.175.115-.285 0-.128-.074-.217-.151-.305-.075-.087-.151-.161-.279-.147-.028.003-.057-.01-.088-.014.019-.04.05-.048.076-.065q.508-.327 1.016-.658.614-.397 1.232-.794c.052-.034.076-.06.019-.11-.015-.013-.024-.03-.036-.044-.084-.099-.084-.099-.2-.03L8.084 3.693c-.101.062-.101.062-.152-.05-.112-.263-.177-.54-.261-.81-.02-.062-.003-.098.045-.137.289-.23.553-.49.82-.742a.6.6 0 0 0 .186-.37c.022-.17-.09-.259-.244-.196a2 2 0 0 0-.221.105c-.68.375-1.405.632-2.149.848-.043.012-.082.026-.118-.02-.074-.09-.185-.14-.278-.208a.07.07 0 0 0-.063-.015c-.1.027-.204.056-.266.147-.159.233-.358.44-.507.682-.17.28-.333.562-.525.828-.036.05-.05.058-.084-.002L3.63 2.635a3 3 0 0 0-.223-.338c-.094-.118-.209-.176-.358-.16-.026.004-.06-.004-.07.037-.02.11-.07.226-.057.332.034.27.082.542.15.806.114.459.244.912.38 1.364.133.444.282.88.426 1.323.012.038.033.072-.02.103-.067.038-.175.058-.187.125-.012.07.05.15.08.225l.007.017c.024.058.036.144.08.166.057.029.11-.05.162-.082.048-.03.065-.021.087.029q.187.438.38.876a.18.18 0 0 1 .006.137 4 4 0 0 0-.192.72c-.012.07-.038.07-.09.055l-.834-.21c-.123-.032-.123-.032-.137.093v.01q-.09.998-.183 1.994c-.004.06.003.085.068.092.194.024.386.055.578.084.036.005.067.007.058.06-.043.225-.077.453-.125.677a.18.18 0 0 0 .034.163l.2.264c.045.063.08.144.037.209a.2.2 0 0 0-.033.118c.007.415.007.83.026 1.246.01.2.007.403.012.605.01.535.04 1.068.06 1.603.01.262-.036.52-.024.783.002.065.017.1.084.122.16.05.312.116.473.166a.28.28 0 0 1 .185.156.44.44 0 0 1 .038.219c-.002.072.024.115.082.156q.37.267.74.542c.65.48 1.3.963 1.954 1.44.06.045.074.081.038.146-.034.062-.055.135-.089.197-.029.058-.024.094.031.134q.123.089.236.188c.065.055.067.141.048.208-.015.05-.087.005-.132 0-.032-.002-.063-.01-.094-.014-.31-.05-.617-.13-.932-.156-.5-.04-1.003-.084-1.51-.07-.026 0-.067-.024-.074.03-.007.042-.017.088.031.117q.036.021.077.036c.283.098.547.24.807.39.168.095.333.203.518.268.034.012.068.038.108.002q-.416-.33-.833-.665c.04-.029.07-.017.1-.014.332.026.664.072.988.15q1.07.255 2.122.572c.23.07.475.104.682.243.05.033.08.067.074.13.012.014.027.033.01.045-.02.012-.036-.012-.05-.024q-.246-.02-.488-.043c-.463-.046-.924-.11-1.392-.096-.35.01-.701-.015-1.05.01-.494.033-.989.098-1.48.15-.025.003-.063-.002-.063.027 0 .036.014.077.06.087a.6.6 0 0 0 .113.012c.25.01.497.007.746.011.62.015 1.242-.012 1.86.041.224.02.45.01.668.05 1.03.193 2.055.394 3.078.618.12.026.243.045.36.103-.055.05-.127.065-.158.137-.22.506-.363 1.04-.53 1.563-.03.09.03.192.12.216a.28.28 0 0 0 .352-.22q.031-.163.053-.328c.005-.036.017-.055.053-.067.132-.053.26-.108.393-.16a1.6 1.6 0 0 0 .529-.325c.134-.127.247-.274.25-.47 0-.06.014-.099.062-.135.22-.17.418-.365.61-.564a6 6 0 0 1 .6-.533c.024-.02.043-.048.08-.034l.56.221c-.374.228-.73.447-1.082.66q-.026.014-.053.02a.8.8 0 0 0-.338.201c-.375.372-.567.814-.545 1.35.014.36.22.53.57.45.616-.145 1.14-.734 1.233-1.38.024-.18.052-.357-.077-.513a2 2 0 0 0-.178-.195c.02-.012.029-.019.039-.026.777-.463 1.625-.778 2.475-1.07 1.04-.359 2.1-.644 3.164-.918l-.075-.017c-.07.007-.136.015-.206.02a5 5 0 0 0-.872.134l-.016.007a.2.2 0 0 1-.094.015q-.021 0-.048.002c.065-.062.252-.264.303-.25l.002-.005h.005c0-.007.019-.02.019-.02q.024-.047.074-.05a.7.7 0 0 1 .197-.189c.05-.03.103-.062.16-.086h-.001c.16 0 .319-.194.486-.262-.001-.006-.01-.01-.013-.017-.24.034-.476.072-.706.16-.492.181-1.001.323-1.481.534-.742.324-1.482.648-2.195 1.035a1 1 0 0 1-.077.036l-.055-.504c-.005-.034.012-.048.04-.063.632-.334 1.266-.665 1.926-.938.543-.226 1.08-.47 1.626-.691q.003-.009.01-.01h.004q.003.002.005.003c.007.012.002.02-.005.026q-.003.003-.01.005h-.002a3.4 3.4 0 0 0-.372.66c.038.01.053-.003.067-.018q.17-.178.336-.357c.214-.234.44-.458.704-.64.017-.012.045-.022.033-.048-.014-.03-.045-.015-.067-.01-.247.05-.494.096-.74.154-.081.019-.076-.01-.08-.067-.001-.197.028-.39.035-.586a.6.6 0 0 1 .058-.247q.147-.338.297-.675c.05-.113.08-.233.099-.353q.045-.288.074-.58c.03-.3.137-.58.187-.875.065-.374.118-.751.257-1.11.125-.316.245-.633.372-.947.176-.428.399-.833.505-1.29.036-.158.076-.302.004-.458-.04-.084-.052-.18-.081-.271a.4.4 0 0 1-.012-.204c.048-.245.07-.488-.063-.716-.036-.062.008-.1.044-.14.088-.09.093-.131.016-.23-.088-.11-.175-.223-.27-.326-.08-.084-.154-.175-.234-.262-.055-.033-.05-.055.012-.076.14-.048.276-.108.418-.152.08-.024.1-.07.106-.141q.067-.909.139-1.818c.007-.084-.007-.1-.094-.074-.454.144-.907.28-1.363.422-.14.044-.142.044-.204-.093-.231-.52-.411-1.057-.6-1.59a.4.4 0 0 1 .007-.316c.067-.188.024-.377.019-.567a.1.1 0 0 1-.005-.03 9 9 0 0 0-.254-1.547 6 6 0 0 0-.5-1.27c-.228-.432-.473-.86-.737-1.275-.113-.178-.233-.339-.434-.427A.7.7 0 0 0 16.66 0m-2.642.26a.36.36 0 0 1 .2.051 19 19 0 0 1 1.469.805c.247.158.482.338.715.52.11.087.192.217.284.33.038.047.012.09-.024.124-.024.024-.058.039-.087.055-.031.022-.072.04-.06.087.01.04.055.05.09.058a.27.27 0 0 0 .16-.015c.168-.07.31.048.418.166.028.03.04.093.093.074.055-.021.063-.081.058-.137-.012-.15-.05-.297-.084-.444-.09-.377-.27-.718-.418-1.073-.053-.127-.11-.254-.163-.382-.03-.07.01-.132.048-.182.03-.04.08-.005.122.014.152.068.238.19.312.332.08.15.178.29.262.436.144.255.322.495.437.762.168.388.382.758.483 1.176.086.37.208.732.252 1.114.016.144-.01.283.007.422q.05.417-.123.798c-.03.07-.021.136.012.208.252.533.46 1.083.67 1.635.027.072.015.1-.06.123-.482.14-.965.288-1.447.434-.07.022-.092.003-.113-.06q-.184-.487-.353-.967c-.024-.068-.053-.104-.128-.087-.088.022-.136-.017-.175-.096-.062-.127-.113-.28-.216-.36s-.266-.082-.403-.115c-.103-.027-.207-.058-.312-.075a1.4 1.4 0 0 1-.612-.273c-.303-.224-.615-.43-.934-.627-.104-.007-.202-.036-.303-.06-.278-.057-.554-.117-.833-.17-.067-.012-.08-.063-.084-.108-.007-.056.007-.11.065-.144.089-.053.19-.063.29-.08a10 10 0 0 1 1.345-.13c.11-.002.209.04.312.066a.18.18 0 0 0 .166-.03c.216-.143.434-.28.65-.422.034-.021.096-.036.07-.093a.1.1 0 0 0-.015-.022q-.018-.014-.043-.012l-.05.002h-.007a1.16 1.16 0 0 0-.668.2c-.08.05-.26.019-.31-.056-.34-.516-.823-.888-1.282-1.29-.204-.176-.403-.361-.62-.525-.054-.04-.08-.144-.042-.196.048-.072.11-.041.168-.015.185.082.362.175.528.293.564.403 1.17.744 1.772 1.085l.05.027c.092.03.14-.01.125-.106a.27.27 0 0 0-.062-.134c-.488-.574-1.001-1.124-1.506-1.683-.105-.116-.23-.216-.348-.32a.9.9 0 0 1-.22-.278.16.16 0 0 1 .023-.19c.04-.045.077-.055.137-.024q.256.122.483.293.4.303.804.605l.807.603q.032.025.062.05c.05.046.094.094.142.142l.029.029c.019.019.036.045.06.06.055.033.112.062.17.004q.03-.028.03-.055c0-.007.004-.014 0-.021l-.001-.01a.2.2 0 0 0-.043-.072l-.18-.187a5 5 0 0 0-.312-.298q-.525-.435-1.066-.845c-.183-.14-.397-.233-.596-.348-.072-.041-.12-.101-.173-.159a.14.14 0 0 1-.024-.15c.022-.054.075-.051.12-.056zM8.252 1.649a.05.05 0 0 1 .029.005c.048.027.03.077.03.135.013.06-.026.11-.08.16q-.52.481-1.076.922c-.147.118-.327.173-.49.262-.034.017-.053 0-.072-.024q-.179-.232-.358-.463c-.045-.055.017-.053.046-.065.254-.091.504-.195.756-.295.365-.144.696-.35 1.04-.533q.053-.032.105-.063c.024-.01.044-.037.07-.041m-2.619.83a.22.22 0 0 1 .134.064q.106.101.18.228c.173.28.413.506.646.737q.244.245.502.47c.057.05.067.127.098.192.012.024.002.043-.02.055q-.018.01-.03.02c-.142.12-.276.103-.442.019a3.2 3.2 0 0 1-.864-.646q-.015-.014-.03-.024c-.114-.086-.12-.082-.17.05-.052.135-.086.274-.146.404-.022.045.012.094.046.127.038.039.064.099.134.089q.045-.006.055-.055c.017-.08.04-.16.06-.257.262.22.553.39.84.583l-.278.159q-1.071.599-2.139 1.205c-.058.03-.082.038-.106-.034-.273-.847-.56-1.69-.79-2.552-.052-.2-.074-.408-.112-.612-.012-.06.028-.091.067-.113.053-.026.055.036.074.06.377.52.634 1.11.941 1.669.092.168.195.33.293.497.02.03.034.057.082.04.053-.02.043-.052.034-.09-.039-.174-.128-.33-.193-.493a.18.18 0 0 1 .003-.16c.137-.284.33-.531.48-.803.14-.247.317-.468.451-.717a.21.21 0 0 1 .2-.111zm1.774.492q.02.004.036.042c.12.27.201.555.302.83.01.027.012.049-.017.066l-.256.158c-.008.005-.017.007-.046.02-.007-.013-.017-.034-.031-.051l-.54-.62c-.024-.028-.048-.055 0-.081.177-.101.312-.264.499-.35q.035-.018.053-.014m1.929.486a.2.2 0 0 1 .14.046.21.21 0 0 1 .08.218.56.56 0 0 1-.161.29 5.5 5.5 0 0 0-.882 1.093c-.228.36-.453.718-.624 1.11a.8.8 0 0 1-.146.206q-.36.409-.855.638a.17.17 0 0 0-.108.159c-.005.06-.024.118-.029.178a.48.48 0 0 1-.19.38c-.04.032-.045.083-.06.126l-.273.915q0 .011-.002.019c0 .014.002.03-.017.038-.04.01-.077-.002-.113-.021a41 41 0 0 1-1.33-.334c-.055-.012-.108-.03-.166-.036-.088-.012-.096-.053-.055-.12.058-.281.125-.56.298-.797.038-.053.036-.096.002-.154-.19-.317-.334-.658-.492-.99-.026-.054-.017-.08.034-.11A574 574 0 0 0 6.97 4.706c.045-.03.089-.012.132-.022.151-.034.298-.08.43-.163.01-.007.026-.012.03-.022.097-.213.31-.286.49-.37.411-.187.826-.36 1.189-.633a.2.2 0 0 1 .095-.04zm11.443 3.772v.005l.002-.001c-.021.256-.043.498-.062.74l-.043.535c-.005.065-.024.106-.094.13a561 561 0 0 0-3.37 1.17l-.04.009c-.035.005-.054-.012-.08-.055a98 98 0 0 0-.661-1.177c-.03-.05-.038-.077.034-.096l4.254-1.246c.014-.005.03-.007.06-.014m-.41.386c-.154.003-.293.147-.286.293.007.137.124.257.254.252.137-.002.27-.153.267-.302q-.006-.248-.236-.243zm-16.83.87a.1.1 0 0 1 .04.007L5.512 9l1.937.51c.062.017.082.036.06.1l-.278.913c-.01.036-.017.074-.058.074l-.02-.002-1.036-.142q-.338-.046-.675-.093a255 255 0 0 0-2.055-.286c-.043-.012-.058-.038-.05-.098q.078-.713.153-1.43c.003-.011.002-.02.005-.03l.005-.015q.011-.02.038-.02zm8.136.103.113.002c.197.01.389.086.569.166q.12.052.238.108l.057.029q.089.041.173.09l.113.065c.036.025.075.046.108.073q.109.075.207.165.327.301.463.72c.065.202.113.409.13.617.016.202-.044.399-.096.593-.008.03-.02.036-.03.034-.014-.005-.021-.022-.033-.036l-.216-.25a2.1 2.1 0 0 0-1.042-.684 4.2 4.2 0 0 0-.994-.154 3.8 3.8 0 0 0-.804.092c-.211.04-.423.074-.631.113-.137.024-.262.086-.387.14a3 3 0 0 1-.18.077l-.02.004c-.376.132-.695.36-1.024.57-.09.06-.165.14-.243.218l-.01.008-.064.065c-.152.147-.3.296-.464.43-.074.103-.175.175-.268.266q.034-.255.146-.472a5 5 0 0 1 .262-.435q.072-.106.146-.206a7 7 0 0 1 .315-.396q.121-.145.247-.29l.25-.284a1 1 0 0 1 .115-.1l.026-.03c.078-.066.147-.136.238-.21l.012-.01.067-.061c.24-.228.519-.406.797-.583q.042-.028.086-.051l.111-.048q.015-.007.029-.012a3 3 0 0 1 .173-.065l.117-.036c.14-.04.279-.074.416-.117a2.5 2.5 0 0 1 .782-.115m-7.57.449c-.07.004-.153-.003-.215.057a.46.46 0 0 0 .012.665.286.286 0 0 0 .38 0c.145-.127.182-.314.095-.535-.053-.137-.125-.187-.27-.187zm15.846.062c.087-.001.163.053.23.146q.021.014.043.032c.022.019.03.04.053.064.099.113.207.224.31.334a.1.1 0 0 1 .014.024.02.02 0 0 1-.002.022.04.04 0 0 1-.015.014l-.01.015-.002.002q-.002.003-.004.01-.002.004-.003.004h.003v.008c-.145.146-.106.283.01.415.006.012.014.024.014.036.096.127.016.254 0 .382-.003.012-.005.016-.015.02l-.007.004a.1.1 0 0 1-.03-.005l-.01-.003-.251-.077q-.01-.001-.02-.007c-.006 0-.011-.007-.018-.007a.3.3 0 0 1-.118-.02.25.25 0 0 0-.292.05l-.005.02c.04.06.108.075.168.094.245.08.453.23.68.348.052.03.062.092.057.152q-.006.05-.02.103l-.072.31a.13.13 0 0 1-.02.076c.004.168-.114.293-.17.437-.006.012-.011.017-.02.04a3 3 0 0 1-.128.299c0 .007-.01.017-.012.024v-.005q-.001.002-.002.005l-.005.01q-.003.003-.005.007c-.012.045-.02.093-.058.132a2 2 0 0 1-.187.432c-.007.012-.012.012-.017.036-.062.144-.127.317-.19.475q-.02.087-.04.17l-.008.015q-.001.002-.002.005c0 .005-.005.01-.007.014a.45.45 0 0 1-.036.192c-.012.039-.022.082-.034.12l-.005.02-.201.912c-.055.25-.077.504-.118.754-.038.235-.048.477-.106.708-.04.168-.136.324-.213.48-.072.146-.118.302-.207.444l-.007.015-.012.03q-.002.01-.005.018l-.007.033-.002.036q0 .018-.003.036v.036l-.002.072c-.02.257-.053.514-.041.773.002.048-.012.075-.058.09l-.057.023a2 2 0 0 0-.113.048l-.06.024c-.031.012-.05.022-.1.034v-.005s-.006.005-.01.005l-.133.055-.093.038a.6.6 0 0 1-.211.092l-.036.02a25 25 0 0 0-.474.212c-.081.024-.165.072-.247.11-.09.04-.175.075-.264.114q-.209.091-.418.181-.008.002-.016 0c-.128.048-.26.118-.38.173-.048.026-.117.053-.177.077-.11.043-.135.038-.16-.075-.071-.052-.078-.14-.104-.216-.027-.072-.048-.15-.072-.222-.005-.024-.017-.02-.017-.034-.024-.033-.024-.064-.036-.098l-.003-.017c-.007-.005-.007-.012-.01-.02l-.006-.016h.004c-.033-.1-.07-.2-.093-.3-.024-.067-.067-.132-.08-.202a.2.2 0 0 1 0-.07l.008-.033.004-.017c.02-.047.05-.093.075-.14.017-.037.03-.076.048-.114.017-.038.03-.067.048-.115.038-.072.062-.156.11-.24 0-.02.015-.04.02-.058.043-.146.09-.295.149-.437 0-.005-.005-.012-.003-.017.017-.086.098-.117.146-.168v.003c.024-.008.037-.022.049-.022.014-.024.028-.034.043-.048a2 2 0 0 0 .108-.15c.045-.066.086-.136.137-.203.016-.021.03-.055.057-.055q.006 0 .012.002c.039.01.027.055.022.084a.9.9 0 0 0 0 .327c.012.084.026.168.033.252l-.002.038a.6.6 0 0 1 .036.19c.02.082.036.16.06.242.072.15.125.3.173.454l.005-.002c.08.12.163.26.245.39a1 1 0 0 0 .074.09h.005v.02c.024 0 .036.052.072.004-.007-.024-.012-.024-.02-.024a.5.5 0 0 1-.03-.08c-.005-.016-.013-.035-.015-.05l-.012-.05q-.002-.012-.005-.024a.3.3 0 0 0-.01-.048l-.011-.075-.013-.074q-.009-.012-.007-.026-.002-.015-.01-.03-.004-.042-.011-.086l-.022-.172c-.002-.03-.012-.058-.014-.087a3.6 3.6 0 0 1 .036-.941h.014c.029-.144.058-.31.086-.466q.011.001.024.003-.014.391.075.775.002.009.002.017c.036.098.075.197.106.298q.01.032.022.062a.3.3 0 0 0 .055.094c.007.012.02.024.02.036.025.019.037.04.057.06q.02.026.04.053c.05.048.104.093.166.156l-.017-.14q-.008-.063-.016-.134s-.013-.007-.013-.012a1 1 0 0 0-.01-.108l-.04-.33q0-.013.002-.025c0-.01.003-.027.003-.027a3 3 0 0 1-.02-.415l-.002-.017a1.1 1.1 0 0 1-.002-.37c.005-.033.002-.07.005-.103q-.002-.01-.003-.02c0-.158.007-.32.055-.472l.003-.017c.012-.072.024-.158.036-.238q.019-.12.033-.24.006-.05.034-.05.016 0 .04.017l.05.03.076.049q.036.024.07.055.002.004.009.007l.017.012h.005v-.002c.168.084.26.226.374.358a.3.3 0 0 1 .11.15q.111.147.169.323.004.015.01.03c.002.01.007.006.009.03.02.024.03.055.043.084l.034.084.019.04q.007.014.017.024a.07.07 0 0 0 .04.024c.027-.088-.035-.172-.011-.256h.007c0-.024-.007-.025-.007-.037-.024-.156-.044-.31-.11-.453l-.001-.04c-.058-.143-.086-.29-.17-.416a.1.1 0 0 1-.037-.063c-.026-.024-.04-.053-.055-.081l-.038-.063v.017c0-.002-.005-.005-.005-.007v-.003a3 3 0 0 0-.22-.278l-.01-.01c-.01-.01-.02-.01-.03-.033-.057-.024-.112-.096-.17-.147-.007-.007-.014-.01-.02-.017-.004-.004 0-.01-.023-.016-.12-.082-.21-.183-.314-.255-.02-.024-.044-.01-.053-.048.31-.02.61.017.922.036v-.012h.002c.154.024.298.053.437.113.005 0 .01.007.017.007v.005c.096.022.187.065.278.108.02.01.044.04.065.012.017-.024-.01-.046-.024-.065q-.053-.075-.108-.151c-.007-.012-.02-.024-.02-.036-.071-.07-.126-.15-.19-.22l-.06-.063a1.2 1.2 0 0 1-.208-.17c-.012-.008-.024-.022-.036-.022-.03 0-.064-.034-.096-.056q-.047-.03-.096-.062-.018-.01-.036-.02c-.146-.055-.293-.105-.44-.16-.004 0-.013-.003-.013-.005 0 0-.013 0-.017-.002a.1.1 0 0 1-.072-.03.1.1 0 0 1-.027-.035l-.005-.012q-.011-.03-.007-.063a1 1 0 0 0-.012-.22q-.004-.031-.012-.063l-.014-.06-.015-.062-.024-.09s-.01-.002-.01-.01c-.023-.145-.08-.292-.124-.436l-.017-.057a.4.4 0 0 1-.057-.168q0-.028.002-.056l.002-.026q.006-.041.02-.082l.033-.108c0-.005 0-.017.003-.017h-.003c.03-.17.099-.314.147-.468 0-.002.005-.002.005-.005l.01-.01q.003-.002.004-.004a.27.27 0 0 0 .053-.185.3.3 0 0 0-.027-.103q-.025-.063-.06-.127c-.002-.005-.01-.01-.014-.012q-.004-.004-.005-.008a1.2 1.2 0 0 1-.21-.355l-.015-.038c-.005-.005-.005-.01-.008-.017l-.002-.007-.007-.017.002.002-.002-.005.012-.043q.007-.014.014-.026.008-.01.02-.022l.009-.007c.065-.094.125-.192.197-.283a.26.26 0 0 0 .05-.252c-.04-.137-.036-.14.1-.19.025-.01.316-.12.433-.156l.075-.03.019-.006.509-.19q.009-.003.017-.002c.14-.072.293-.118.44-.168.02-.007.037-.015.06-.02.025-.02.097-.035.12-.055.12-.038.217-.093.325-.117a.3.3 0 0 1 .167-.067m-5.432.603a.8.8 0 0 1 .23.036l.014.004c.259.08.523.142.77.26.04.019.084.038.113.077.16.115.307.247.43.405.19.245.38.492.557.773q-.016-.005-.034-.013v-.001a1 1 0 0 1-.185-.103 7 7 0 0 0-.674-.356 1.5 1.5 0 0 0-.331-.1 3.3 3.3 0 0 0-.91-.041c-.084.007-.17 0-.255 0q-.092 0-.091-.092c0-.235.012-.472-.06-.7-.015-.048.014-.068.055-.082a1.1 1.1 0 0 1 .372-.067zm-2.75.773c.423-.015.812.105 1.167.324q.198.121.363.284l.014.013q.184.185.32.41c.08.13.059.272.032.414-.072.406-.316.706-.592.987-.265.269-.596.444-.903.648-.435.29-.932.403-1.438.478-.632.093-1.273.103-1.906.187-.23.029-.464.048-.694.089a1.07 1.07 0 0 0-.68.41c-.062.084-.1.187-.16.303a.53.53 0 0 1 .026-.394 1.12 1.12 0 0 1 .533-.54c.415-.22.879-.262 1.323-.375.36-.091.73-.144 1.087-.242a7.2 7.2 0 0 0 1.426-.55c.24-.125.49-.252.656-.485a.73.73 0 0 0 .12-.557q-.008-.05-.027-.053t-.05.027c-.18.16-.367.314-.571.449-.32.206-.673.33-1.038.42-.58.144-1.166.266-1.764.31a4.8 4.8 0 0 0-1.239.242c-.34.118-.687.235-.96.49-.034.03-.075.057-.13.098l.007-.038-.026.019v-.005q.013-.01.024-.017a.6.6 0 0 1 .084-.2l.646-1.022a.3.3 0 0 1 .041-.053c.334-.33.653-.677 1.023-.965.614-.48 1.284-.855 2.055-1.02.187-.041.377-.07.57-.07.22-.002.443-.01.66-.017zm-7.632.022q.02 0 .048.009c.03.01.062.007.094.01.127.028.26.03.386.062.012 0 .017.002.034.01a2 2 0 0 1 .4.057c.145.02.29.036.433.06.033 0 .062-.002.093.017.005 0 .012-.002.012 0 .168.02.3.03.445.055h-.015v.005c.096.012.16.024.233.036.077.012.156.03.23.03h.003c.007 0 .012.004.017.004l.021.005c.048.002.067.028.075.07.038.227.07.455.117.683 0 .017.01.032.008.046l.02.11.061.332c0 .01 0 .03.003.036v.01c.024.143.05.273.074.41v.046a1.7 1.7 0 0 0-.3.46c-.03.075-.07.152-.1.226l-.006.003c-.024.076-.062.15-.098.223q-.004.001-.007.01c-.005.009-.008.024-.012.03v.003a2.5 2.5 0 0 1-.192.415c-.008.02-.024.039-.024.056-.024.09-.046.182-.092.266a.8.8 0 0 1-.074.226 2 2 0 0 1-.13.394c-.007.019-.019.036-.019.055l-.002.007c-.003.007-.005.02-.01.029a.1.1 0 0 1-.01.03l-.002.01-.038.742.021.008.094-.185c.031-.06.055-.123.09-.185.018-.043.05-.086.05-.13.071-.12.136-.24.21-.35.008-.012.022-.02.03-.043.062-.097.134-.224.208-.334.026-.043.054-.08.078-.123.016-.048.042-.055.064-.076.021-.022.033-.044.081-.065 0 .019.005.036.003.053l-.003.01q-.001.013-.007.028l-.002.01q-.003.01-.005.019l-.002.02c0 .006-.005.01-.003.018l-.003.015h.003c-.022.144-.02.307-.024.458 0 .007-.005.02-.005.024l.005-.002q.032.216.062.432h-.002c.003 0 .005.03.005.043.024.144.055.29.072.437l.002.017q.005.014.005.026c.024.116.11.195.163.296.039.055.08.12.116.168h.002v.002c.12.106.22.214.355.31.02 0 .039.024.058.024h-.002v.012c.048.005.088.043.139.029a.1.1 0 0 0 .026-.012c.007-.005.017-.01.02-.017.011-.022-.01-.034-.027-.041-.197-.125-.166-.33-.19-.521h.008v-.003c.048.046.081.09.122.14a.1.1 0 0 0 .024.026l.05.055q.051.055.108.1c.039.032.08.066.125.09.02.007.039.024.056.024h-.005c.144.07.269.137.4.206a.15.15 0 0 1 .08.036c.048.144.105.288.091.456.005 0 .01.017.012.03a.1.1 0 0 1-.002.03q.026.21-.003.42a.04.04 0 0 1-.002.039c-.003.005 0 .007-.002.012h.002c0 .14-.002.278-.038.415-.003.137-.046.27-.06.406q-.001.007-.005.017c-.008.026-.02.057.038.05v-.002c.13-.136.26-.267.38-.418v.01c.002-.048.03-.073.057-.096.05-.05.1-.13.151-.2q.075-.104.152-.206l.002-.012q.01-.037.029-.046.008-.004.014-.005H9.3a.1.1 0 0 1 .05.02 1 1 0 0 1 .077.048c.144.079.307.132.415.269.012.012.026.014.038.038.05.024.096.08.133.132l.038.036q.004.002.007.005c.19.16.204.246.067.46-.004.007-.012.014-.016.014a.2.2 0 0 1-.024.055l-.02.036-.01.017c-.035.058-.074.118-.088.185a.4.4 0 0 0-.012.168q.04.142.07.286.02.085.028.175c.02.142-.048.228-.168.288v-.002c-.024.002-.026.017-.038.024l-.02.014-.038.026a.2.2 0 0 0-.077.087c0 .007 0 .005-.002.01-.002.004 0 .014-.002.014h.007v.014c-.024.07-.036.12-.048.156q-.005.014-.01.024-.004.01-.01.017-.005.008-.009.012a.05.05 0 0 1-.024.012h-.007a.2.2 0 0 1-.05-.012q-.05-.019-.138-.048-.007-.002-.011-.005l-.012-.004-.027-.012h-.01v-.01h-.002c-.072-.024-.14-.038-.204-.065q-.059-.02-.12-.043c-.05-.012-.1-.036-.151-.036-.14-.048-.281-.072-.416-.12-.011 0-.019.002-.043 0v.002c-.096-.019-.173-.043-.264-.06-.089-.014-.122-.06-.113-.148.005-.037.003-.08.003-.116 0-.012-.003-.017-.003-.04-.014-.025-.036-.053-.055-.085l-.014-.026c-.012-.012-.036-.024-.036-.038-.024-.005-.015-.01-.022-.015-.074-.07-.053-.163-.043-.252l.002-.029.008-.055q.002-.016.004-.026c.039-.15.048-.29-.113-.38-.019-.012-.03-.024-.055-.04v.004a3 3 0 0 0-.225-.165c-.012-.024-.015-.029-.039-.039a1.4 1.4 0 0 1-.31-.227l-.074-.04h.01c-.015-.025-.032-.022-.044-.034-.019-.014-.036-.024-.06-.04-.12-.102-.283-.198-.413-.315-.045-.015-.074-.05-.11-.08v-.004c-.127-.09-.252-.176-.377-.272h.003c-.015 0-.015-.012-.039-.024-.072-.036-.144-.096-.206-.144-.02-.024-.039-.024-.058-.024-.058-.048-.108-.07-.156-.113-.02-.012-.036-.026-.06-.04a2.2 2.2 0 0 1-.396-.29l-.012-.011-.022-.024a.2.2 0 0 1-.038-.081v.019c-.087-.094-.144-.202-.216-.3l-.007-.015a.03.03 0 0 1-.005-.014l-.003-.026a.1.1 0 0 1 .024-.053q.002-.008.003-.02c.024-.153.108-.292.168-.436v-.037s0-.022-.003-.032l-.004-.014-.005-.005a.04.04 0 0 0-.017-.01h-.007a.1.1 0 0 0-.058.022.3.3 0 0 0-.055.043l-.02.015-.014.019-.007.01q-.001.002-.002 0-.001.002-.003 0v.002c-.048.055-.12.103-.182.154-.012.012-.034.026-.034.038v-.002h-.007c-.02.024-.045.024-.072.012l-.31-.137c-.024-.012-.036-.038-.04-.062l-.008-.032-.007-.026v.005c-.036-.168.022-.293.053-.437q.004-.018.005-.036c.024-.14.033-.288.074-.423v-.062c-.02-.154-.022-.305-.033-.46l.002-.078c-.014-.286-.033-.571-.043-.857-.022-.598-.07-1.193-.053-1.79a.64.64 0 0 0-.074-.315 2 2 0 0 0-.099-.164.26.26 0 0 1-.048-.237c.036-.14.063-.284.09-.425.008-.05.021-.084.06-.086zm-.166.38.005.015c.005.032-.007.065-.02.113a.12.12 0 0 1 0-.086zm10.715.003q.195-.004.38.024c.22.017.42.058.55.164q.143.061.28.144.33.2.662.403a.4.4 0 0 1 .118.108l.223.315c.012.016.03.036.015.057a.04.04 0 0 1-.02.014q-.026.004-.05-.011c-.098-.056-.2-.108-.298-.164a4.8 4.8 0 0 0-1.184-.46c-.107-.03-.208-.06-.323-.075l-.152-.034c-.004.003.005.012.017.024q.008.008.012.015a.1.1 0 0 0 .04.033l.02.01c.228.115.613.187.893.317l.058.029c.156.08.298.182.44.29l.268.207c.404.293.65.689.77 1.169q.006.021.01.043l.01.014c.02.03.024.065.017.096q.002.012.005.022c-.005.07-.06.04-.092.04a2.5 2.5 0 0 1-.61-.11h-.006c-.051-.016-.118-.04-.165-.054-.211-.075-.41-.163-.615-.238-.252-.09-.45-.261-.662-.413a8 8 0 0 1-1.001-.816.3.3 0 0 1-.08-.106l-.062-.153-.036-.094-.024-.06-.002-.005q-.004-.004-.003-.01v-.002l-.002-.01a.17.17 0 0 1 .007-.122q.002-.008.005-.014l.005-.017.004-.014q.003-.01.005-.017l.003-.015.002-.017.003-.014.002-.017.002-.014.003-.017.002-.014.003-.017q0-.008.002-.015 0-.008.003-.016v-.266c-.003-.082.026-.114.108-.111q.12.002.243-.005l.075.004q.06-.004.122-.005m.284.532.028.008H15c-.012.008-.028.005-.033.02q-.005-.028.003-.028m.88.342.012.006h.003zm-1.908.177.002.003q.01.004.022.024c.076.154.182.28.3.399.124.12.259.23.389.348q.403.363.818.713c.178.15.392.228.62.288.518.132 1.049.182 1.575.254.139.02.264.065.374.156h-.007q.014.01.024.02c-.296-.043-.59-.04-.886-.046-.324-.007-.641.03-.96.067a1 1 0 0 1-.336-.026c-.308-.07-.598-.195-.89-.317-.328-.14-.601-.353-.861-.588l-.057-.055a1 1 0 0 1-.205-.285l-.002-.006c-.09-.212-.085-.448-.016-.708q.029-.105.062-.21.012-.034.034-.031m-.248 1.18c.065.233.233.396.375.573l.029.039.028.038a.6.6 0 0 0 .106.094c.017.012.03.02.046.033l.02.017a10 10 0 0 0 .539.396l.329.229q.223.153.468.266.06.028.123.055.186.079.379.14l.02.007c.08.02.167.028.25.038q.049.004.092.01a.2.2 0 0 1 .06.024.4.4 0 0 1 .068.05c.074.067.144.163.148.22q0 .015-.002.025-.002.006-.005.01c-.01.016-.024.03-.033.048q-.046.074-.085.153l-.011.027a.31.31 0 0 0 .002.26c.115-.114.218-.236.293-.376a1 1 0 0 0 .086-.201c.01-.027.003-.058.01-.084.01-.03-.024-.07-.01-.09q.001 0 .005-.004l.014-.007q.016-.004.027-.005.027-.004.055-.005.072 0 .14.022c.028.01.019.045.016.072v.005c-.005.086-.04.165-.072.242l-.024.055a1.7 1.7 0 0 1-.192.375c-.118.156-.254.302-.475.31h-.063c-.038 0-.077.01-.115.012a.085.085 0 0 0-.086.057c-.017.039-.04.072-.058.11l-.007.017a1.5 1.5 0 0 1-.408.57q-.12.106-.25.203a2 2 0 0 1-.468.224l-.036.014-.034.015-.02.007q-.016.004-.03.01c-.036.014-.065.035-.046.09.02.06.063.077.118.08q.019 0 .04-.003a.6.6 0 0 0 .15-.033c.048-.017.096-.04.146-.06q.05-.024.103-.041c-.03.122-.045.235-.084.34l-.021.054-.09.192q-.028.064-.062.125c-.115.23-.245.45-.405.655a1.7 1.7 0 0 1-.356.34l-.103.073a3 3 0 0 1-.38.205l-.064.03-.053.02-.043.018q-.06.023-.123.045a3 3 0 0 1-.168.053 5 5 0 0 1-.57.134q-.01.002-.02.003-.082.014-.163.026-.086.013-.176.024a2.2 2.2 0 0 1-.605-.02l-.028-.008a.7.7 0 0 1-.145-.06c-.062-.034-.12-.07-.182-.1a2 2 0 0 1-.13-.073 2 2 0 0 1-.16-.106.63.63 0 0 1-.233-.278 2 2 0 0 0-.092-.194q-.016-.029-.03-.053a3 3 0 0 0-.277-.367 3 3 0 0 0-.125-.142q-.03-.036-.062-.07a7 7 0 0 0-.26-.276l-.067-.067a3 3 0 0 0-.364-.302 3 3 0 0 0-.303-.192l-.06-.04a1.58 1.58 0 0 1-.63-.761c-.043-.093-.107-.122-.22-.124a.6.6 0 0 1-.252-.048l-.002-.002a.5.5 0 0 1-.132-.084l-.026-.016c-.022-.026-.038-.058-.058-.09a5 5 0 0 1-.386-.658q0 .004.003.008l-.006-.013.003.005a4 4 0 0 0-.073-.196l-.036-.086a.4.4 0 0 1-.014-.154l.007-.031q.002-.008.005-.015l.012-.03a.5.5 0 0 1 .127-.14l.067-.05q.07-.05.14-.094.106-.065.218-.123c.271-.14.56-.238.857-.314q.024-.007.053-.012c.033-.008.07-.01.105-.015q.054-.004.106-.005l.106-.002c.016 0 .036 0 .052-.002a18 18 0 0 0 .9-.063q.27-.026.54-.055a3.5 3.5 0 0 0 1.127-.324q.055-.028.11-.055l.063-.034c.144-.077.288-.151.427-.233.014-.02.03-.026.055-.033l.01-.003v.012a.06.06 0 0 1-.02.034l-.021.014c-.14.178-.331.3-.497.45a.4.4 0 0 0-.05.045q-.078.065-.166.137c.209 0 .41-.024.598-.08a1.65 1.65 0 0 0 .869-.6q.155-.205.278-.482m-3.265.016a1.2 1.2 0 0 1-.343.109c-.56.139-1.13.22-1.697.326a2.6 2.6 0 0 0-1.105.487q-.029.024-.062.043-.038.025-.043-.01-.004-.007-.003-.018c-.01-.144.034-.214.166-.274q.27-.124.54-.252c.235-.108.487-.142.742-.168.396-.043.792-.094 1.19-.14l.524-.086zm2.386 1.245h-.026c-.038.01-.036.05-.036.08.003.1.007.202.02.303.01.11.047.219.112.307a.84.84 0 0 0 .51.334c.155.036.155.038.17.2.007.069.016.13.08.17.114.067.227.137.364.146.084.007.17.012.242.068a.6.6 0 0 0 .32.098c.084.007.17.01.254.024.067.012.113-.01.16-.05.239-.197.474-.397.697-.617-.026-.03-.065-.04-.118-.012a6 6 0 0 0-.415.223.3.3 0 0 1-.113.048 4 4 0 0 1-.722.074.7.7 0 0 1-.368-.13c-.067-.043-.134-.105-.146-.201.036-.012.07.002.103.007.127.017.252.063.382.055.312-.02.605-.113.898-.213l.283-.103c.043-.015.055-.03.017-.07-.046-.05-.096-.04-.147-.034a5.6 5.6 0 0 1-1.87-.045c-.18-.034-.372-.046-.442-.27q-.031-.09-.05-.182a.37.37 0 0 0-.094-.17.1.1 0 0 0-.065-.04m-.573.065c-.048 0-.08.05-.103.093-.06.103-.137.196-.207.292-.108.147-.26.178-.418.154a18 18 0 0 0-1.718-.18c-.03-.002-.058-.01-.082.01-.183.134-.367.264-.483.468q.011.005.02.007.027-.004.055-.01.447-.111.922-.072c.398.034.792.113 1.188.168.053.008.106.01.156.036.12.063.18.173.226.29.07.18.09.373.103.565.01.15-.022.278-.144.38a.56.56 0 0 0-.2.278c.154 0 .286.026.387.156.063.08.144.149.223.218a.38.38 0 0 0 .586-.081c.058-.094.113-.19.175-.281.087-.127.17-.264.325-.32.093-.03.052-.076.02-.115-.061-.08-.177-.081-.28-.02-.16.097-.266.239-.381.376a.8.8 0 0 1-.113.115c-.058.04-.108.043-.16-.01-.056-.057-.114-.117-.176-.168-.053-.043-.063-.082-.032-.144a.73.73 0 0 0 .082-.413c-.03-.312-.08-.62-.3-.867-.024-.026-.024-.04.01-.064a.94.94 0 0 0 .408-.701c.007-.075-.007-.135-.067-.156zm4.46.035c.206 0 .388.08.567.182q-.006 0-.012.003l.03.017c-.27.04-.54.06-.81.03-.084-.01-.168-.026-.255-.023-.17.005-.307-.084-.451-.161h.017q-.018-.01-.036-.02.037.003.074.005.042.006.084.015c.238.05.468-.02.704-.043a1 1 0 0 1 .089-.005zm-8.689.714-.016.004c-.05.019-.098.048-.112.115-.048.223.055.437.278.552.1.053.178.127.226.23.016.037.019.106.072.094s.01-.077.021-.103c.008-.135-.019-.25-.127-.32-.08-.05-.11-.12-.14-.201-.038-.106-.047-.223-.134-.307-.02-.021-.036-.064-.069-.064zm1.843.354c-.11.027-.236.053-.353.106q-.123.057-.015.139c.043.034.087.05.14.03a.47.47 0 0 1 .494.097.51.51 0 0 0 .523.087c.106-.036.197-.096.293-.15a.3.3 0 0 1 .113-.04q.216-.022.43-.053c.038-.005.098.01.108-.036.01-.048-.046-.077-.08-.108-.016-.017-.045-.02-.07-.026a.8.8 0 0 0-.436-.015 2.1 2.1 0 0 1-.888 0c-.08-.02-.163-.02-.26-.03zm6.903.889q.008 0 .015.007l.012.014.008.005c.043.034-.007.11-.02.168q-.044.251-.086.502c-.007.048-.012.098-.048.165l-.007-.043-.012.024a5 5 0 0 1-.075-.706c-.002-.053.034-.065.068-.077.048-.016.107-.066.145-.06zm-3.22.902-.022.01c-.19.105-.404.11-.613.137-.088.012-.2-.015-.264.05-.158.156-.293.09-.432-.02q-.01-.008-.024-.014c-.206-.11-.413-.15-.624-.005a.34.34 0 0 1-.267.068c-.074-.02-.131-.015-.19.038-.028.027-.066.048-.1.07-.094.062-.094.072-.007.14.02.018.043.025.067.033.2.06.387.016.562-.08.182-.098.353-.093.518.032.152.112.312.115.48.045a3 3 0 0 1 .653-.213c.034-.005.068-.017.099.01.096.088.187.026.279-.01.036-.015.04-.044.038-.08-.007-.076-.065-.12-.098-.18q-.022-.037-.054-.03zm-4.717.07q.014 0 .032.017.057.055.113.11l.015.014q.027.027.012.06l-.224.45-.024-.008q.001-.006.003-.012c.048-.197.029-.4.055-.6q.004-.03.018-.03zm3.9.588c-.238.007-.48.046-.703.122-.185.063-.392.106-.488.32-.055.124-.048.256-.086.38.017.1.017.197.074.281.017.024.024.063.065.06.043-.002.058-.038.07-.067.043-.09.053-.194.08-.29.047-.156.119-.28.282-.35q.256-.107.516-.206a.2.2 0 0 1 .1-.012c.215.03.438.02.628.146a.08.08 0 0 0 .062.012c.072-.017.08-.04.036-.098a.72.72 0 0 0-.636-.298m-2.218.741.014.017c.094.117.187.218.25.336.15.29.374.501.662.655.135.072.256.172.414.19l.003.001h.018c.017 0 .04-.004.036.023-.003.014-.017.014-.031.012h-.007q-.008 0-.015-.003c-.167.005-.33.033-.493.067q-.127.027-.255.058l-.243.055h-.003c-.033.008-.048.024-.043.058.005.04.02.062.067.072a1.3 1.3 0 0 0 .274.017q.177-.005.353-.034a2.6 2.6 0 0 1 .778-.002c-.43.07-.785.312-1.174.475-.202.084-.358.245-.55.348-.014.017-.022.044-.036.06-.031.04-.036.118-.087.11h-.004c-.005 0-.01.003-.015 0a.6.6 0 0 1-.266-.086c-.03-.019-.022-.055-.022-.089v-.453c0-.032.012-.067-.019-.09-.106-.066-.08-.182-.106-.278-.01-.038.017-.057.039-.08l.278-.31c.063-.068.089-.143.043-.224-.086-.163-.072-.32-.002-.485.055-.13.091-.267.142-.42m4.585.177q.008.004.012.008l.007-.008c.039.022.04.05.05.075q.152.372.3.744c.025.055.03.103-.006.15a.5.5 0 0 0-.077.49c.067.205.019.347-.183.448a.23.23 0 0 1-.12.036.12.12 0 0 1-.088-.03c-.375-.259-.821-.345-1.242-.494-.06-.02-.117-.043-.18-.057-.072-.017-.067-.065-.057-.116.007-.036.026-.04.045-.038.02-.005.046.01.063.014.48.12.965.216 1.428.396q.024.01.043.013c.034-.005.044-.037.039-.082-.01-.108-.02-.214-.144-.27a2.8 2.8 0 0 0-.975-.234q-.074-.006-.15-.01c.239-.144.5-.22.714-.406a1 1 0 0 0 .075-.067l.398-.482zm-1.882 1.133h.02c.03-.002.054.005.057.053 0 .044.01.082-.06.092a2 2 0 0 1-.274.021q-.14 0-.278-.03c-.05-.013-.07-.047-.065-.087.002-.027.02-.027.04-.027a.1.1 0 0 1 .039.003h.18a1.1 1.1 0 0 0 .34-.024zm.036.396q.009 0 .02.005l.844.35c-.132.11-.254.207-.374.303-.221.178-.44.358-.646.553-.05.048-.09.05-.147.014a9 9 0 0 0-1.097-.545c-.165-.07-.34-.098-.511-.158.02-.036.055-.036.084-.046.367-.137.742-.26 1.102-.42.094-.043.187-.007.278.005.137.02.27.021.394-.046a.1.1 0 0 1 .053-.015m-2.161.698a.3.3 0 0 1 .082.018c.197.077.38.185.569.274a.04.04 0 0 1 .029.01q.005.002.005.011v.005q-.002.003-.003.005-.004.004-.007.003l-.01-.003a.03.03 0 0 1-.012-.012l-.862-.214c.074-.059.133-.1.209-.097m8.17.535c-.142-.004-.26.062-.372.15-.03.022-.046.048-.094.017-.105-.072-.206-.053-.295.04a.4.4 0 0 0-.103.186c-.125.504-.252 1.006-.372 1.512-.041.17.048.255.223.23.158-.026.238-.117.264-.32a4 4 0 0 1 .11-.596c.15.187.29.362.433.538.139.17.29.321.494.412.144.065.269.027.382-.074a.19.19 0 0 0 .055-.206.16.16 0 0 0-.158-.125.25.25 0 0 1-.152-.07 2.3 2.3 0 0 1-.362-.396c-.09-.12-.094-.12.026-.202.252-.173.34-.417.322-.71-.014-.219-.132-.346-.34-.38a1 1 0 0 0-.061-.006m-10.733.03c-.04 0-.077.02-.097.075-.019.05-.053.043-.091.038a.75.75 0 0 0-.665.22c-.38.37-.574.813-.552 1.353.014.358.22.53.569.451.689-.16 1.224-.835 1.253-1.582.007-.192-.168-.47-.34-.538a.2.2 0 0 0-.077-.016zm-1.93.058a.94.94 0 0 0-.613.238c-.346.302-.547.693-.646 1.138a.64.64 0 0 0 .075.482c.07.118.158.161.292.135a3.1 3.1 0 0 0 .87-.305.9.9 0 0 0 .225-.168.3.3 0 0 0 .084-.204c0-.075-.033-.1-.103-.104-.07-.002-.13.024-.192.046-.207.075-.408.166-.622.22-.105.027-.14.003-.163-.105a.3.3 0 0 1 .005-.122c.04-.168.098-.33.187-.483a.8.8 0 0 1 .245-.283c.14-.089.283-.137.442-.04.052.03.103.016.15-.013a.35.35 0 0 0 .15-.2q.024-.076-.044-.117a.8.8 0 0 0-.343-.115zm9.2.07a.7.7 0 0 0-.517.206c-.156.161-.183.324-.084.526.074.151.177.28.278.415.072.094.149.187.216.286.048.07.024.125-.058.151a.2.2 0 0 1-.14-.005 1.1 1.1 0 0 1-.373-.23.24.24 0 0 1-.082-.125c-.012-.074-.053-.108-.125-.115-.081-.007-.156-.007-.204.08-.08.138-.057.263.087.393.276.245.605.353.933.38.3.004.485-.267.387-.522-.043-.115-.118-.216-.19-.314-.12-.159-.245-.313-.357-.476-.09-.125-.048-.216.098-.264.135-.043.25-.005.36.08.13.1.24.047.269-.116.017-.086-.03-.144-.09-.194a.68.68 0 0 0-.41-.157zm1.905.06q-.206-.006-.41.016c-.164.02-.32.065-.38.248-.002.01-.014.024-.024.026-.187.048-.252.202-.302.358-.106.346-.2.696-.298 1.042-.024.084.01.14.08.182.054.034.11.032.172.015.324-.08.648-.166.987-.142a.26.26 0 0 0 .127-.029.24.24 0 0 0 .117-.24c-.014-.09-.086-.117-.163-.13a2 2 0 0 0-.177-.016 4 4 0 0 0-.62.052c.03-.228.048-.242.264-.242.16 0 .322-.01.473-.072.1-.043.166-.113.176-.226.007-.076-.025-.122-.104-.124a2 2 0 0 0-.19.002l-.453.04c.024-.052.036-.1.062-.136.044-.062-.007-.178.084-.209.075-.024.164-.007.245-.01.214-.004.427-.007.634-.074a.35.35 0 0 0 .192-.13c.07-.108.043-.18-.082-.185q-.204-.01-.41-.017zm-6.664.008c-.071-.003-.13.042-.185.093a4 4 0 0 0-.392.434l-.367.456c-.02.024-.04.07-.08.05-.03-.014-.018-.055-.014-.086q.016-.164.036-.329c.015-.144.034-.288.01-.432-.031-.173-.156-.22-.295-.113a1 1 0 0 0-.094.091 3 3 0 0 0-.298.414c-.225.348-.432.71-.703 1.027-.05.06-.103.118-.149.182-.048.072-.067.154-.022.23.041.068.11.092.188.087.081-.004.125-.064.168-.122l.626-.852c.012-.015.017-.044.053-.034a1 1 0 0 0-.012.11c-.01.137-.038.274-.01.413.034.16.16.224.306.152a1 1 0 0 0 .204-.152q.176-.168.33-.362c.114-.144.229-.29.349-.447.036.12.022.228.017.336-.012.188-.048.375-.012.565.024.117.091.187.187.194a.44.44 0 0 0 .278-.07c.125-.079.137-.237.02-.343a.2.2 0 0 1-.063-.113c-.026-.13-.004-.257.017-.384.039-.245.115-.485.103-.737-.004-.098-.02-.19-.12-.237a.2.2 0 0 0-.076-.02zm8.04.19c.117-.01.175.063.14.176a.4.4 0 0 1-.07.132c-.128.161-.291.27-.495.353a1.6 1.6 0 0 1 .11-.425c.062-.134.163-.223.315-.237zm-6.651.02a.3.3 0 0 1 .15.034c.076.043.098.146.045.233a.7.7 0 0 1-.185.184 1.5 1.5 0 0 1-.483.243c.07-.216.128-.415.245-.586a.29.29 0 0 1 .228-.108m1.6.091a.5.5 0 0 1 .213.034c.113.046.15.1.149.27a1.26 1.26 0 0 1-.425.818.56.56 0 0 1-.324.136c-.147.012-.262-.08-.247-.228.028-.32.115-.624.33-.876a.44.44 0 0 1 .304-.154m-5.882.003a.5.5 0 0 1 .218.036c.11.043.149.098.144.262a1.24 1.24 0 0 1-.422.818.6.6 0 0 1-.325.14c-.15.011-.266-.082-.252-.233.03-.315.116-.613.325-.86a.44.44 0 0 1 .312-.163"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/comptia.svg����������������������������������0000664�0000000�0000000�00000003004�14753064456�0025254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.83 11.707v1.852a.61.61 0 0 1-.602-.614V11.71a.573.573 0 0 0-1.143 0v1.85a.6.6 0 0 1-.6-.598V11.71a.575.575 0 0 0-1.145 0v1.243a.61.61 0 0 1-.6.607v-1.85a1.15 1.15 0 0 1 1.167-1.132h.002c.33-.005.648.13.875.37a1.18 1.18 0 0 1 .868-.37 1.154 1.154 0 0 1 1.177 1.13m7.015-2.292v3.563a.597.597 0 0 0 .6.581V9.996a.597.597 0 0 0-.6-.581M24 13.525c-.324.028-.675-.069-.801-.343l-.319-.685h-2.13l-.316.704c-.15.278-.544.366-.848.366l1.738-3.806a.53.53 0 0 1 .477-.343.54.54 0 0 1 .48.343zm-1.376-1.617-.806-1.767-.804 1.767zm-19.166.638a1.85 1.85 0 0 1-1.182.438c-.93 0-1.688-.683-1.688-1.514s.76-1.505 1.688-1.505c.501 0 .98.205 1.326.568a.58.58 0 0 0 .742.082c-.362-.75-1.177-1.237-2.07-1.237-1.253 0-2.274.938-2.274 2.094s1.018 2.096 2.275 2.096a2.4 2.4 0 0 0 1.288-.372 2.1 2.1 0 0 0 .65-.636.59.59 0 0 0-.755-.014m11.43-2.539h1.288v2.952a.59.59 0 0 0 .573.6h.027v-3.552h1.284a.594.594 0 0 0 .594-.593h-4.35a.59.59 0 0 0 .584.593m-7.31 2.067c0 .836-.727 1.485-1.651 1.485-.929 0-1.65-.65-1.65-1.485s.724-1.495 1.65-1.495 1.65.658 1.65 1.495m-.601-.003c0-.5-.465-.894-1.05-.894-.588 0-1.051.393-1.051.894s.464.888 1.05.888 1.05-.388 1.05-.888zm6.797-1.5c-.95 0-1.64.643-1.64 1.518v2.533a.596.596 0 0 0 .602-.586v-1.95c0-.63.516-.916 1.038-.916.549 0 .981.398.981.905 0 .487-.432.875-.98.875-.37 0-.646-.093-.814-.278v.005a1 1 0 0 0-.038.107.596.596 0 0 0 .411.724q.22.046.445.045c.888 0 1.58-.651 1.573-1.476a1.47 1.47 0 0 0-.464-1.075 1.64 1.64 0 0 0-1.114-.431"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/comsol.svg�����������������������������������0000664�0000000�0000000�00000003456�14753064456�0025127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.538 11.131a.63.63 0 0 0-.138.387h.297a.33.33 0 0 1 .148-.271.47.47 0 0 1 .236-.079h1.555a.131.131 0 0 0 0-.262h-1.16l-.43-.001a.64.64 0 0 0-.508.226m4.721-.225h-.897s-1.07-.057-1.07 1.094c0 1.15 1.07 1.094 1.07 1.094h.897s1.07.056 1.07-1.094c0-1.048-.887-1.095-1.046-1.095zM18.58 12s-.066-.832.807-.832h.85c.872 0 .806.832.806.832s.066.831-.806.831h-.85c-.873 0-.807-.831-.807-.831m-8.494-1.094h-.897S8.117 10.849 8.117 12c0 1.15 1.07 1.094 1.07 1.094h.898s1.07.056 1.07-1.094c0-1.048-.888-1.095-1.046-1.095zM8.405 12s-.066-.832.806-.832h.85c.873 0 .807.832.807.832s.066.831-.807.831h-.85c-.872 0-.806-.831-.806-.831m-3.311 0c0 1.15 1.07 1.094 1.07 1.094h1.45a.131.131 0 0 0 0-.262H6.188c-.872 0-.806-.832-.806-.832s-.066-.832.806-.832h1.426a.131.131 0 0 0 0-.262H6.14c-.159 0-1.047.046-1.047 1.094m-2.607-1.095a.32.32 0 0 0-.319.319v1.552c0 .176.143.318.319.318H3.72a.32.32 0 0 0 .318-.318v-1.552a.32.32 0 0 0-.318-.319zm-2.169 0a.32.32 0 0 0-.318.319v.001c0 .076.027.144.071.199l.001.004 1.232 1.55.003.002c.06.069.145.114.243.114h.001a.32.32 0 0 0 .319-.318v-1.553a.32.32 0 0 0-.318-.318zm21.493.132v2.058h2.058a.131.131 0 0 0 0-.263h-1.796v-1.795a.131.131 0 0 0-.262 0m-7.18-.088-1.396 1.395-1.41-1.41-.001.002a.131.131 0 0 0-.214.101v2.058h.262v-1.742l1.27 1.27.029.02.01.006.007.003c.038.016.072.01.097 0l.003-.002.018-.01.004-.003.019-.015 1.268-1.268v1.741h.263v-2.058a.131.131 0 0 0-.229-.088m.77.57a.63.63 0 0 0 .138.387.64.64 0 0 0 .507.226h1.184c.094 0 .198.05.236.078a.33.33 0 0 1 .148.271h.297a.63.63 0 0 0-.138-.387.64.64 0 0 0-.507-.226h-1.185a.47.47 0 0 1-.235-.078.33.33 0 0 1-.148-.272zm2.213.962a.33.33 0 0 1-.148.272.47.47 0 0 1-.236.078h-1.698v.001a.131.131 0 0 0 0 .263l.01-.001h1.724c.23 0 .392-.092.507-.226a.63.63 0 0 0 .138-.387z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/conan.svg������������������������������������0000664�0000000�0000000�00000001127�14753064456�0024722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.709 0 0 5.534V16.76L11.984 24l4.857-2.706V9.998c.13-.084.275-.196.399-.27l.032-.017c.197-.11.329-.102.23.33v10.884l6.466-3.603V6.11L24 6.093Zm.915 2.83c.932.02 1.855.191 2.706.552a9.1 9.1 0 0 1 3.45 2.429 63 63 0 0 1-3.044 1.616c.56-.853.14-2.009-.76-2.455-.93-.648-2.093-.73-3.205-.674-1.064.175-2.258.51-2.893 1.474-.722.862-.084 2.11.914 2.408 1.2.509 2.543.38 3.806.413-.975.457-1.931.97-2.927 1.358-1.701-.176-3.585-.917-4.374-2.51-.574-1.178.215-2.572 1.319-3.14a11.4 11.4 0 0 1 3.336-1.348 9 9 0 0 1 1.672-.123"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/concourse.svg��������������������������������0000664�0000000�0000000�00000012136�14753064456�0025626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.968 11.245a10 10 0 0 0-.235-1.437c-.051-.243-.133-.476-.195-.719l-.112-.334-.062-.162-.071-.182a9 9 0 0 0-.634-1.285 9.8 9.8 0 0 0-1.576-2.035l-.092-.09-.04-.052-.072-.06c-.062-.061-.123-.112-.184-.172a3 3 0 0 1-.174-.162 3 3 0 0 0-.205-.162l-.163-.132-.082-.06-.02-.02-.052-.041-.01-.01-.041-.03c-.102-.072-.194-.132-.286-.193-.164-.112-.287-.203-.379-.263a11 11 0 0 0 .246-1.174c.102-.598.521-1.832-.338-2.187-.808-.334-1.862 1.184-1.862 1.184a15.3 15.3 0 0 0-3.682 8.675 3.6 3.6 0 0 1 1.473.678h.01a15.5 15.5 0 0 0 2.67-3.482 6.4 6.4 0 0 1 1.77 1.62l.071.09.072.112.143.223c.082.141.174.273.246.425a6.8 6.8 0 0 1 .797 2.783 6 6 0 0 1 0 .84c-.01.233-.04.476-.081.709a5 5 0 0 1-.113.547c-.082.293-.133.465-.133.465l.194-.445c.052-.142.123-.324.185-.537.071-.232.133-.475.173-.708.052-.284.092-.577.113-.87a8 8 0 0 0 0-.983 7 7 0 0 0-.143-1.052 9 9 0 0 0-.307-1.063 6 6 0 0 0-.225-.526l-.113-.233-.061-.121-.03-.132a7 7 0 0 0-.604-.921 7.6 7.6 0 0 0-1.36-1.377c.153-.344.306-.698.429-1.062l.061.03.307.162.041.02.01.01c.041.03-.061-.04-.05-.03l.02.01.081.05.174.112.092.06.052.031.02.02h.01c.01.01-.05-.04-.03-.02l.01.01c.061.05.123.091.194.142l.205.152.03.02c-.04-.03-.01-.01-.02-.02h.01l.01.01.052.04.102.081a8.8 8.8 0 0 1 2.24 2.743l.072.142.071.162.154.314c.081.202.174.405.235.617.296.84.47 1.73.501 2.622.01.212.01.425.01.637s-.02.415-.03.608c-.031.374-.092.739-.174 1.113a9 9 0 0 1-.256.921c-.082.273-.184.506-.256.698-.082.193-.153.334-.194.436-.051.1-.072.152-.072.152s.031-.051.092-.142c.052-.091.144-.233.246-.415.092-.182.215-.405.327-.668.133-.294.256-.597.348-.911.123-.365.215-.74.297-1.124.04-.202.081-.415.102-.627a7 7 0 0 0 .061-.658c.03-.456.03-.921-.01-1.387zm-12.795.7a15.4 15.4 0 0 0-4.441-.626c.04-.803.243-1.587.587-2.312l.05-.099.061-.119.121-.228c.081-.139.152-.278.253-.407A6.7 6.7 0 0 1 9.12 6.706c.232-.199.485-.377.748-.536.233-.149.486-.278.739-.397a8 8 0 0 1 .657-.268c.203-.08.385-.119.526-.159.294-.069.476-.109.476-.109s-.172.01-.486.05c-.151.02-.344.04-.556.09a8 8 0 0 0-.708.178c-.273.09-.547.188-.82.307a6.4 6.4 0 0 0-.86.457 7.5 7.5 0 0 0-.86.615 7 7 0 0 0-.789.764c-.121.129-.243.288-.364.436l-.152.209-.07.109-.082.119a6.6 6.6 0 0 0-.516.942 7 7 0 0 0-.566 1.846v.03c-.364.03-.728.079-1.093.139v-.586c.01-.05-.01.07-.01.06v-.03c0-.03.01-.06.01-.1.01-.069.01-.128.02-.198 0-.04.01-.07.01-.109v-.09c0-.009-.01.07-.01.03v-.01l.03-.227q.013-.12.041-.238V10c-.01.05 0 .01-.01.02v-.03l.01-.06.02-.129a9.2 9.2 0 0 1 1.366-3.194l.091-.13.102-.138.212-.278c.142-.159.273-.337.435-.496a9 9 0 0 1 2.064-1.657 6 6 0 0 1 .556-.298c.182-.1.375-.178.547-.258a10 10 0 0 1 1.052-.377c.303-.09.617-.159.93-.218.284-.06.527-.08.73-.11.201-.02.363-.029.475-.039h.162l-.172-.01c-.112 0-.274-.01-.476-.01-.202.01-.455 0-.749.03-.323.03-.647.07-.96.129-.385.07-.76.159-1.124.278a9 9 0 0 0-.597.208c-.202.07-.404.159-.607.258-.425.199-.83.417-1.224.665-.405.258-.79.556-1.153.873-.182.149-.364.337-.536.506l-.233.258-.122.129-.121.149a9 9 0 0 0-.83 1.14 9.6 9.6 0 0 0-1.042 2.293l-.04.119-.02.06-.02.089-.061.238c-.02.079-.04.148-.061.228-.02.09-.03.168-.05.248-.01.07-.03.139-.041.198-.01.03-.01.06-.02.1v.03l-.01.059v.06c-.01.118-.02.227-.04.337q-.046.461-.062.595c-.354.09-.708.198-1.052.317 0 0-1.851.427-1.75 1.32.101.843 1.922 1.012 1.922 1.012 3.147.635 6.415.288 9.349-.992a3.5 3.5 0 0 1-.102-1.578m4.411 1.937c-.364.41-.81.726-1.316.93v.01a15.8 15.8 0 0 0 1.772 4.2 6.6 6.6 0 0 1-2.227.715l-.112.01-.132.01-.263.021c-.162 0-.324.01-.486 0a6.3 6.3 0 0 1-1.954-.337 6 6 0 0 1-.86-.348 6 6 0 0 1-.73-.408 6 6 0 0 1-.576-.42c-.172-.132-.304-.265-.425-.367-.223-.215-.345-.347-.345-.347s.102.143.294.388c.101.122.223.266.375.419.172.184.344.347.536.51.223.195.456.369.699.532q.41.276.85.49c.314.154.648.286.982.399.354.112.709.194 1.073.255.183.031.375.051.567.072l.264.02.131.01h.152c.365 0 .729-.02 1.094-.071a7.6 7.6 0 0 0 1.812-.48q.333.46.698.889c-.01.01-.02.01-.03.02l-.294.184-.04.02-.01.01c-.05.021.06-.03.05-.02h-.01l-.02.01c-.03.01-.06.031-.091.041l-.182.092-.102.051-.05.031-.02.01h-.01c-.01 0 .06-.03.03-.01l-.01.01-.213.092c-.07.03-.152.062-.223.102l-.03.01c.05-.02.01 0 .02-.01h-.01l-.01.01-.06.021-.122.051a8.8 8.8 0 0 1-3.483.593l-.152-.01-.172-.01-.355-.031c-.212-.031-.435-.051-.658-.103a9 9 0 0 1-2.53-.868 28 28 0 0 1-.558-.307c-.182-.102-.344-.224-.516-.337a10 10 0 0 1-.88-.695 9 9 0 0 1-.679-.674c-.202-.204-.344-.409-.476-.572-.131-.164-.212-.296-.283-.388l-.102-.143s.03.05.081.143c.061.092.132.245.243.419.112.173.243.388.426.623.192.266.405.52.617.756.263.286.537.562.83.807.162.133.324.276.496.399.173.133.355.265.547.388a11 11 0 0 0 1.225.685c.446.204.901.378 1.367.51.233.072.486.123.73.184l.343.062.172.03.193.031q.714.092 1.427.092c.86-.01 1.711-.133 2.541-.358l.122-.03.06-.02.092-.032c.08-.03.162-.05.233-.081l.222-.072.243-.092c.071-.03.132-.05.193-.071.03-.01.06-.02.09-.041l.021-.01h.01l.061-.03.01-.011.04-.02.304-.154c.162-.082.284-.143.385-.184.263.256.527.5.81.726 0 0 1.326 1.38 2.055.817.689-.531-.101-2.207-.101-2.207a15.5 15.5 0 0 0-5.68-7.54m-.055-1.411a1.88 1.88 0 0 1-1.882 1.882 1.88 1.88 0 0 1-1.882-1.882 1.88 1.88 0 0 1 1.882-1.883 1.88 1.88 0 0 1 1.882 1.883"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/condaforge.svg�������������������������������0000664�0000000�0000000�00000002156�14753064456�0025736�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.206 5.866.005.396H6.754l.006.655v.005l-6.758.002v.211L0 7.973l.02.041c.212.467.663.901 1.257 1.313s1.335.796 2.145 1.13c1.62.664 3.502 1.12 5.006 1.1.746-.01 1.265.228 1.62.672.341.426.51 1.092.524 1.92l-2.632 2.09.008 1.896H20.29l-.004-1.76-2.63-2.22c.055-2.013.708-3.443 1.777-4.405 1.087-.979 2.61-1.49 4.37-1.616l.195-.015L24 5.872zm.425.422 14.946.006-.004 1.457c-1.737.155-3.29.666-4.424 1.685-.912.822-1.433 2.062-1.691 3.534l-1.617.004.002.422 1.535-.004c-.027.226-.113.4-.123.64l-.893-.003-.002.422.995.004 2.138 1.802-2.941.002c-.724-.675-1.552-1.116-2.416-1.158-.817-.04-1.638.324-2.387 1.04l-2.978-.024 2.248-1.781v-.102c.002-.943-.2-1.72-.64-2.269-.396-.496-1.007-.749-1.741-.79l-.008-4.49h.008zm-1.45.396h1.026l.008 4.404c-1.387-.02-3.125-.404-4.631-1.023-.787-.324-1.507-.698-2.066-1.086C.968 8.6.587 8.203.424 7.86v-.514l6.336-.002v2.16h.422v-2.16h.004l-.004-.435zm6.935 8.839c.75.037 1.503.436 2.18 1.078l-.002 1.112h-4.345l-.006-1.2c.706-.717 1.443-1.026 2.173-.99M8.36 16.537l3.16.023.006 1.153h-3.16zm11.5.142.002 1.034h-3.148V16.68z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/conekta.svg����������������������������������0000664�0000000�0000000�00000001211�14753064456�0025242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.291 17.883a11.73 11.73 0 0 1-6.174 3.034 2.46 2.46 0 0 1-2.165-.746 12.094 12.094 0 0 1 0-16.358 2.46 2.46 0 0 1 2.173-.746 11.67 11.67 0 0 1 6.29 3.14 27.2 27.2 0 0 0-.698 6.1 27.8 27.8 0 0 0 .574 5.576m9.897-3.938a1.39 1.39 0 0 0-1.525.527A24.7 24.7 0 0 1 8.75 23.41a35.4 35.4 0 0 0 6.429.59 36 36 0 0 0 4.46-.279 3.6 3.6 0 0 0 3.034-2.698c.47-1.884.645-3.883.517-5.813a1.39 1.39 0 0 0-1.001-1.265M20.663 9.61a1.394 1.394 0 0 0 2.526-.746 19.2 19.2 0 0 0-.517-5.888A3.6 3.6 0 0 0 19.638.28 36 36 0 0 0 15.178 0a35.4 35.4 0 0 0-6.429.59 24.64 24.64 0 0 1 11.914 9.02"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/confluence.svg�������������������������������0000664�0000000�0000000�00000001247�14753064456�0025750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.87 18.257c-.248.382-.53.875-.763 1.245a.764.764 0 0 0 .255 1.04l4.965 3.054a.764.764 0 0 0 1.058-.26c.199-.332.454-.763.733-1.221 1.967-3.247 3.945-2.853 7.508-1.146l4.957 2.337a.764.764 0 0 0 1.028-.382l2.364-5.346a.764.764 0 0 0-.382-1 600 600 0 0 1-4.965-2.361C10.911 10.97 5.224 11.185.87 18.257M23.131 5.743c.249-.405.531-.875.764-1.25a.764.764 0 0 0-.256-1.034L18.675.404a.764.764 0 0 0-1.058.26 66 66 0 0 1-.734 1.225c-1.966 3.246-3.945 2.85-7.508 1.146L4.437.694a.764.764 0 0 0-1.027.382L1.046 6.422a.764.764 0 0 0 .382 1c1.039.49 3.105 1.467 4.965 2.361 6.698 3.246 12.392 3.029 16.738-4.04"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/construct3.svg�������������������������������0000664�0000000�0000000�00000001760�14753064456�0025736�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.392 0c-6.752 0-12 5.498-12 12 0 6.574 5.313 12 12 12 4.283 0 8.087-2.254 10.217-5.704a.57.57 0 0 0-.2-.795l-5.55-3.204a.57.57 0 0 0-.76.177 4.45 4.45 0 0 1-3.707 1.983c-2.458 0-4.458-2-4.458-4.457 0-2.458 2-4.457 4.458-4.457 1.491 0 2.877.741 3.707 1.983a.57.57 0 0 0 .76.177l5.55-3.204a.57.57 0 0 0 .2-.795A12 12 0 0 0 12.392 0m0 3.527c3.048 0 5.72 1.61 7.213 4.026l-2.99 1.726c-.037.021-.085.013-.108-.026a4.94 4.94 0 0 0-4.115-2.2A4.953 4.953 0 0 0 7.445 12c0 .9.241 1.745.663 2.473l-2.342 1.353a.327.327 0 0 0-.112.458 7.98 7.98 0 0 0 6.738 3.7 7.98 7.98 0 0 0 6.789-3.781l2.983 1.722a.08.08 0 0 1 .028.113 11.45 11.45 0 0 1-9.8 5.472C6.045 23.51.882 18.346.882 12c0-2.095.562-4.06 1.544-5.754l2.35 1.356c.15.088.345.04.439-.11a8.47 8.47 0 0 1 7.177-3.966zM22.965 8.95a.67.67 0 0 0-.336.088l-4.149 2.395a.654.654 0 0 0 0 1.131l4.149 2.396c.434.25.98-.064.98-.566v-4.79a.655.655 0 0 0-.644-.654m-.663 1.785v2.528L20.112 12z"/></svg>����������������mkdocs-material-9.6.4/material/templates/.icons/simple/consul.svg�����������������������������������0000664�0000000�0000000�00000002725�14753064456�0025134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.075 12.029a2.506 2.506 0 0 0-2.506-2.507 2.506 2.506 0 0 0-2.505 2.506 2.506 2.506 0 0 0 2.506 2.506 2.506 2.506 0 0 0 2.505-2.506m3.532 0a1.156 1.156 0 0 0-1.156-1.156 1.156 1.156 0 0 0-1.156 1.156 1.156 1.156 0 0 0 1.156 1.155 1.156 1.156 0 0 0 1.156-1.155m4.792 5.51a1.158 1.156 0 0 0-1.158-1.156 1.158 1.156 0 0 0-1.158 1.156 1.158 1.156 0 0 0 1.158 1.156A1.158 1.156 0 0 0 22.4 17.54m-1.651-3.651a1.153 1.157 0 0 0-1.153-1.157 1.153 1.157 0 0 0-1.154 1.157 1.153 1.157 0 0 0 1.154 1.157 1.153 1.157 0 0 0 1.153-1.157m3.251.062a1.154 1.154 0 0 0-1.154-1.154 1.154 1.154 0 0 0-1.154 1.154 1.154 1.154 0 0 0 1.154 1.154 1.154 1.154 0 0 0 1.154-1.154m-3.279-3.883a1.156 1.154 0 0 0-1.156-1.154 1.156 1.154 0 0 0-1.156 1.154 1.156 1.154 0 0 0 1.156 1.153 1.156 1.154 0 0 0 1.156-1.153m3.28.045a1.161 1.157 0 0 0-1.161-1.157 1.161 1.157 0 0 0-1.162 1.157 1.161 1.157 0 0 0 1.162 1.157A1.161 1.157 0 0 0 24 10.112M22.374 6.48a1.158 1.16 0 0 0-1.157-1.16 1.158 1.16 0 0 0-1.158 1.16 1.158 1.16 0 0 0 1.158 1.16 1.158 1.16 0 0 0 1.157-1.16M11.617.383c-3.11 0-6.029 1.207-8.22 3.398A11.58 11.58 0 0 0 0 12c0 3.109 1.207 6.028 3.397 8.22a11.58 11.58 0 0 0 8.22 3.397c2.578 0 5.018-.825 7.055-2.386l-1.42-1.852a9.2 9.2 0 0 1-5.635 1.904 9.26 9.26 0 0 1-6.572-2.715A9.23 9.23 0 0 1 2.334 12c0-2.478.964-4.812 2.715-6.57a9.22 9.22 0 0 1 6.568-2.713c2.058 0 4.007.659 5.637 1.905l1.417-1.854A11.52 11.52 0 0 0 11.617.383Z"/></svg>�������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/contabo.svg����������������������������������0000664�0000000�0000000�00000001554�14753064456�0025255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.336 1.816a6.95 6.95 0 0 0-6.879 5.889 7.9 7.9 0 0 1 2.24-.412A4.855 4.855 0 0 1 11.33 3.92a4.85 4.85 0 0 1 3.45 1.44 4.8 4.8 0 0 1 1.197 2.01 8 8 0 0 1 .875-.067h.33a8 8 0 0 1 .976.076 6.95 6.95 0 0 0-6.822-5.564zM6.99 8.224A6.983 6.983 0 0 0 0 15.2a6.98 6.98 0 0 0 6.977 6.976 6.97 6.97 0 0 0 4.933-2.03l1.56-1.581-1.488-1.488-1.55 1.582a4.86 4.86 0 0 1-3.452 1.436A4.88 4.88 0 0 1 2.104 15.2a4.877 4.877 0 0 1 4.876-4.871 4.86 4.86 0 0 1 2.819.904l.04-.043 1.466-1.465A6.97 6.97 0 0 0 6.99 8.224m10.04 0a6.97 6.97 0 0 0-4.936 2.047l-1.59 1.574 1.488 1.489 1.58-1.584A4.88 4.88 0 0 1 21.9 15.2a4.88 4.88 0 0 1-4.877 4.882 4.86 4.86 0 0 1-2.83-.914l-.045.046s-1.078 1.096-1.437 1.467a6.95 6.95 0 0 0 4.312 1.504A6.983 6.983 0 0 0 24 15.205a6.95 6.95 0 0 0-2.04-4.933 6.96 6.96 0 0 0-4.93-2.047z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/contactlesspayment.svg�����������������������0000664�0000000�0000000�00000007172�14753064456�0027552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.878 19.1c-2.861-.25-5.385-1.312-7.03-2.954-.936-.936-1.504-1.952-1.76-3.149-.118-.544-.117-1.448 0-1.997.357-1.664 1.433-3.12 3.126-4.23 3.862-2.533 9.778-2.52 13.604.03.508.338.836.607 1.296 1.06.58.573.988 1.142 1.418 1.98.016.03.095.07.176.086.27.056.633.268.924.54.226.21.401.44.832 1.093.435.658 2.404 3.697 2.524 3.896.046.078-.046.202-.15.202-.073 0-.126-.05-.234-.22l-1.116-1.732c-1.9-2.942-2.003-3.078-2.532-3.343l-.278-.14h-.817c-.816 0-.817.001-.837.087-.108.47-.128.586-.104.608.015.014.478.278 1.03.586l1.002.562-.062.131c-.035.072-.074.132-.088.132s-.858-.468-1.875-1.039c-1.018-.57-1.91-1.054-1.982-1.074-.29-.08-.734.24-.734.529 0 .292.087.378 1.874 1.841 1.115.914 1.753 1.462 1.85 1.592.178.236.357.584.523 1.012.29.754.763 1.174 1.538 1.368l.255.064-.021.14a.7.7 0 0 1-.037.157c-.033.037-.547-.127-.844-.27-.465-.223-.785-.541-1.099-1.094a6 6 0 0 0-.405.139c-.391.142-.41.154-.78.515-1.576 1.538-3.836 2.521-6.566 2.855-.443.055-2.15.079-2.621.037m2.717-.473c1.252-.166 2.223-.414 3.24-.83 1.067-.437 2.073-1.065 2.777-1.733l.277-.264-.698-.333c-.746-.357-.82-.416-.915-.735-.06-.2.008-.415.198-.621l.149-.161-.324-.246c-.256-.195-.336-.28-.386-.41a.65.65 0 0 1 .079-.616l.098-.138-1.023-.18a26 26 0 0 1-1.166-.222.58.58 0 0 1-.35-.391c-.022-.092.48-2.54.592-2.89a.67.67 0 0 1 .426-.376c.169-.031 3.185.499 3.335.587.238.138.313.362.238.705l-.032.144h.167c.092 0 .31-.012.483-.025l.316-.025-.157-.29c-.474-.882-1.33-1.768-2.388-2.472-.494-.328-1.547-.847-2.181-1.074a13.5 13.5 0 0 0-3.043-.674c-.575-.06-2.082-.06-2.64.001-1.339.146-2.554.449-3.617.902C2.59 7.309.935 9.046.512 11.027c-.11.517-.12 1.423-.018 1.894.224 1.04.713 1.941 1.509 2.78 1.62 1.707 4.097 2.756 7.066 2.994.397.031 2.121-.015 2.526-.068m-.543-1.864c-.153-.044-.308-.227-.34-.4-.022-.114.004-.192.166-.506.656-1.27.941-2.437.941-3.855 0-1.37-.252-2.435-.879-3.713-.135-.274-.245-.529-.245-.565 0-.136.114-.333.237-.41.169-.107.452-.087.588.04.052.05.187.271.3.494.449.88.756 1.847.908 2.853.094.623.113 1.803.038 2.373a9.3 9.3 0 0 1-.86 2.909c-.27.555-.438.784-.58.784a.4.4 0 0 0-.101.015.4.4 0 0 1-.173-.019m-1.826-.955c-.234-.069-.404-.357-.336-.573.017-.052.127-.293.246-.535a6 6 0 0 0 .609-3.201c-.084-.886-.243-1.445-.643-2.263-.269-.549-.281-.634-.125-.854.148-.21.519-.245.713-.066.135.124.555 1 .716 1.496a7.1 7.1 0 0 1-.232 5.016c-.352.826-.599 1.081-.948.98m-1.882-.969a.57.57 0 0 1-.304-.374c-.021-.094.014-.198.187-.547.632-1.28.639-2.514.02-3.765-.271-.55-.277-.659-.047-.876.113-.107.161-.126.32-.126.267 0 .406.135.644.625.367.754.518 1.408.516 2.246 0 .86-.141 1.452-.533 2.247-.225.455-.336.575-.56.606a.5.5 0 0 1-.243-.036m-1.757-.902a.6.6 0 0 1-.286-.34c-.043-.152-.008-.273.165-.557.222-.365.274-.56.274-1.038 0-.477-.052-.673-.274-1.038a2 2 0 0 1-.168-.329c-.071-.24.129-.535.398-.586.228-.043.385.06.595.387a2.96 2.96 0 0 1 0 3.155c-.215.332-.454.45-.704.346m13.09 1.473c.203-.073.379-.141.39-.153.012-.011-.027-.141-.087-.289-.122-.302-.102-.295-.534-.212-.468.09-.739.01-1.25-.366-.14-.103-.283-.187-.32-.187-.036 0-.115.053-.177.119-.13.14-.15.36-.044.49.093.113 1.377.724 1.53.727.067.002.289-.056.492-.129m-.202-.983c.19-.038.211-.051.178-.112-.036-.068-1.812-1.542-1.966-1.632-.127-.074-.23-.057-.335.056-.309.33-.273.4.526 1.013.964.738 1.066.782 1.597.675m-2.384-2.231c0-.01-.201-.183-.448-.385-.608-.501-.738-.688-.738-1.058 0-.31.206-.608.538-.78a.97.97 0 0 1 .625-.057c.118.038.648.325 1.383.748l.155.089.128-.606c.13-.62.133-.782.012-.82a85 85 0 0 0-1.575-.286c-1.473-.26-1.634-.275-1.702-.164-.037.06-.597 2.656-.597 2.767 0 .055.028.124.062.152.034.029.512.132 1.062.23 1.062.191 1.095.196 1.095.17"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/containerd.svg�������������������������������0000664�0000000�0000000�00000000265�14753064456�0025754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.629 0v24H20.37V0zM17.59 21.208H6.421V10.604h7.812V6.692h3.346v14.516zm-7.823-7.812h4.466v5.02H9.767z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/contao.svg�����������������������������������0000664�0000000�0000000�00000001154�14753064456�0025107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.133 14.233c.672 3.125 1.23 6.1 3.189 8.242H1.588A1.6 1.6 0 0 1 0 20.897V3.109a1.6 1.6 0 0 1 1.588-1.584h2.698a10.3 10.3 0 0 0-1.718 2.028c-2.135 3.271-1.257 6.838-.435 10.68M22.411 1.525h-4.234c1.002 1.002 1.847 2.3 2.486 3.913l-6.437 1.358c-.706-1.351-1.779-2.476-3.877-2.034-1.156.245-1.923.894-2.264 1.604-.418.876-.624 1.858.377 6.525.999 4.667 1.588 5.481 2.327 6.112.601.511 1.57.794 2.727.55 2.1-.442 2.617-1.902 2.708-3.422l6.437-1.359c.153 3.329-.879 5.911-2.699 7.696h2.449A1.6 1.6 0 0 0 24 20.891V3.109a1.6 1.6 0 0 0-1.589-1.584"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/contentful.svg�������������������������������0000664�0000000�0000000�00000003406�14753064456�0026007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.875 16.361c-.043-.048-1.067-1.18-2.365-1.19-.68 0-1.288.283-1.815.858-.773.842-2.35 1.85-4.25 1.921-1.598.059-3.085-.548-4.423-1.805-1.644-1.544-2.155-4.016-1.302-6.297.834-2.23 2.752-3.616 5.131-3.707l.044-.004c.024-.003 2.302-.258 4.325 1.548.17.185 1.154 1.197 2.475 1.228.823.018 1.586-.336 2.27-1.055.602-.632.87-1.342.797-2.112-.154-1.61-1.806-2.876-2.03-3.04-.212-.184-1.878-1.578-4.476-2.294-2.52-.695-6.42-.853-10.685 2.349a7 7 0 0 0-.557.49c-.28.208-.523.462-.716.753a12.47 12.47 0 0 0-3.064 8.677c.207 6.283 5.265 9.293 5.646 9.51.262.17 2.906 1.81 6.495 1.809 2.106 0 4.538-.565 7.005-2.322.248-.138 1.714-1.012 2.103-2.52.23-.894.042-1.815-.562-2.737zm-16.932 1.97c0-1.09.887-1.977 1.977-1.977s1.977.886 1.977 1.977c0 1.09-.887 1.977-1.977 1.977s-1.977-.887-1.977-1.977m.139-13.657c.236-.275.451-.498.628-.67a1.97 1.97 0 0 1 1.088-.329c1.09 0 1.977.887 1.977 1.977S7.888 7.63 6.798 7.63s-1.977-.887-1.977-1.977c0-.356.096-.69.261-.978zM13.249.999c3.954 0 6.657 2.336 6.826 2.486l.043.034c.42.3 1.532 1.301 1.63 2.324.044.469-.126.898-.52 1.313-.477.5-.983.752-1.504.738-.964-.019-1.743-.887-1.76-.905l-.042-.044c-2.292-2.063-4.83-1.855-5.13-1.822a6.8 6.8 0 0 0-3.012.818 3 3 0 0 0-2.34-3.214C9.543 1.45 11.516.999 13.248.999zM3.884 6.34a3 3 0 0 0 2.914 2.31q.182-.001.358-.024a7 7 0 0 0-.39.866c-.75 2.003-.59 4.14.359 5.854q-.102-.009-.205-.01a3 3 0 0 0-2.967 2.6 10.07 10.07 0 0 1-1.7-5.288 11.43 11.43 0 0 1 1.63-6.309zM21.497 18.9c-.3 1.174-1.615 1.89-1.627 1.896l-.058.036c-6.287 4.499-12.137.667-12.382.502l-.036-.022-.034-.02a3 3 0 0 0 2.543-3.228c1.124.64 2.336.951 3.58.906 2.214-.083 4.057-1.264 4.962-2.25.327-.356.67-.53 1.048-.53h.005c.762.004 1.46.688 1.593.826.421.658.558 1.291.406 1.884"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/contentstack.svg�����������������������������0000664�0000000�0000000�00000003033�14753064456�0026322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.564 10.108a.347.347 0 0 1-.364.368h-6.974a.35.35 0 0 1-.369-.368v-.79a.35.35 0 0 1 .37-.368h6.964a.347.347 0 0 1 .364.369zm3.085 2.29a.347.347 0 0 1-.368.37h-8.59a.343.343 0 0 1-.363-.37v-.807a.342.342 0 0 1 .364-.364h8.514a.346.346 0 0 1 .369.364zm2.35 2.35a.347.347 0 0 1-.37.368h-9.32a.342.342 0 0 1-.364-.368v-.803a.342.342 0 0 1 .364-.37h9.321a.347.347 0 0 1 .368.37zm0 2.352a.347.347 0 0 1-.37.364h-9.32a.343.343 0 0 1-.364-.364v-.807a.342.342 0 0 1 .364-.37h9.321a.347.347 0 0 1 .368.37zm-2.35 2.273a.35.35 0 0 1-.368.37h-8.589a.347.347 0 0 1-.364-.37v-.807a.346.346 0 0 1 .364-.37h8.515a.35.35 0 0 1 .368.37zm-3.085 2.349a.346.346 0 0 1-.364.368h-6.974a.35.35 0 0 1-.369-.368v-.808a.347.347 0 0 1 .37-.365h6.964a.343.343 0 0 1 .364.365zM5.354 3.087a.347.347 0 0 0 .37.364h6.97a.342.342 0 0 0 .367-.365V2.28a.346.346 0 0 0-.368-.369h-6.97a.35.35 0 0 0-.367.37ZM2.35 5.43a.342.342 0 0 0 .364.364h8.514a.346.346 0 0 0 .368-.364v-.807a.35.35 0 0 0-.368-.37H2.712a.346.346 0 0 0-.364.37ZM0 7.778a.342.342 0 0 0 .364.364h9.321a.342.342 0 0 0 .364-.364V6.97a.346.346 0 0 0-.364-.37H.365a.347.347 0 0 0-.364.37Zm0 2.33a.347.347 0 0 0 .364.37h9.321a.346.346 0 0 0 .364-.37v-.79a.346.346 0 0 0-.364-.368H.365A.347.347 0 0 0 0 9.319Zm2.347 2.291a.342.342 0 0 0 .365.368h8.513a.346.346 0 0 0 .37-.368v-.808a.346.346 0 0 0-.37-.364H2.713a.342.342 0 0 0-.365.364zm3.008 2.348a.346.346 0 0 0 .369.368h6.968a.346.346 0 0 0 .37-.368v-.803a.346.346 0 0 0-.37-.37H5.725a.347.347 0 0 0-.37.37z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/continente.svg�������������������������������0000664�0000000�0000000�00000001305�14753064456�0025770�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.992 0C5.374 0 .008 5.381.008 12c0 6.633 5.35 12 11.984 12s12-5.367 12-12-5.381-12-12-12m0 2.504c5.247 0 9.512 4.264 9.512 9.496s-4.265 9.51-9.512 9.51S2.496 17.262 2.496 12a9.493 9.493 0 0 1 9.496-9.496m-.059 2.385c-3.935 0-7.127 3.176-7.127 7.127s3.192 7.14 7.127 7.14c1.968 0 3.756-.79 5.038-2.088a1.89 1.89 0 0 0 0-2.683 1.87 1.87 0 0 0-2.668 0 3.33 3.33 0 0 1-2.37.984c-1.848 0-3.34-1.52-3.34-3.353s1.492-3.34 3.34-3.34V8.66c.925 0 1.758.373 2.37.984.73.731 1.922.731 2.668 0s.745-1.923 0-2.683a7.1 7.1 0 0 0-5.038-2.072m.059 5.754c-.76 0-1.371.612-1.371 1.373s.61 1.37 1.37 1.37 1.372-.625 1.372-1.37-.61-1.373-1.371-1.373"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/contributorcovenant.svg����������������������0000664�0000000�0000000�00000000557�14753064456�0027742�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.688 0c-6.627 0-12 5.373-12 12s5.373 12 12 12a12 12 0 0 0 10.624-6.412 10.48 10.48 0 0 1-8.374 4.162c-5.799 0-10.5-4.701-10.5-10.5S9.14.75 14.938.75c1.001 0 1.97.14 2.887.402A11.96 11.96 0 0 0 12.688 0m2.438 2.25a9 9 0 1 0 7.967 13.19 7.875 7.875 0 1 1-4.115-12.326 9 9 0 0 0-3.852-.864"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/conventionalcommits.svg����������������������0000664�0000000�0000000�00000000356�14753064456�0027722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.382 0 0 5.382 0 12s5.382 12 12 12 12-5.382 12-12S18.618 0 12 0m0 1.6c5.753 0 10.4 4.647 10.4 10.4S17.753 22.4 12 22.4 1.6 17.753 1.6 12 6.247 1.6 12 1.6"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/convertio.svg��������������������������������0000664�0000000�0000000�00000001054�14753064456�0025633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .037C5.373.037 0 5.394 0 12s5.373 11.963 12 11.963c6.628 0 12-5.357 12-11.963S18.627.037 12 .037m-.541 4.8c1.91-.13 3.876.395 5.432 1.934 1.426 1.437 2.51 3.44 2.488 5.317h2.133l-4.444 4.963-4.445-4.963h2.313c-.001-1.724-.427-2.742-1.78-4.076-1.325-1.336-2.667-2.11-4.978-2.303a9.2 9.2 0 0 1 3.281-.871zM6.934 6.95l4.445 4.963H9.066c0 1.724.426 2.742 1.778 4.076 1.326 1.336 2.667 2.112 4.978 2.305-2.684 1.268-6.22 1.398-8.71-1.064-1.427-1.437-2.512-3.44-2.489-5.317H2.488z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cookiecutter.svg�����������������������������0000664�0000000�0000000�00000001374�14753064456�0026330�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.806 0a12 12 0 0 0-4.512.885A12 12 0 0 0 .858 12.978a12 12 0 0 0 9.303 10.724 12 12 0 0 0 13.021-5.656L12.817 12l9.244-7.65A12 12 0 0 0 12.806 0M9.218 2.143c.34-.003.701.123 1.193.378.847.437 1.013 1.027.36 1.277-.487.187-2.457.177-2.932-.015-.526-.212-.38-.781.32-1.24.402-.263.72-.396 1.059-.4m4.077 4.052h.022a1.29 1.29 0 0 1 1.292 1.291 1.29 1.29 0 0 1-1.292 1.292 1.29 1.29 0 0 1-1.292-1.292 1.29 1.29 0 0 1 1.27-1.291m-6.259 3.8c1.033 0 1.788.434 1.788 1.028 0 .694-1.961 2.384-2.766 2.384-.365 0-.727-.166-.804-.368-.078-.203.117-.97.434-1.706.505-1.176.67-1.338 1.348-1.338m8.637 9.187c.372 0 1.362 2.316 1.186 2.775-.201.524-1.046.467-1.564-.105-.676-.747-.404-2.67.378-2.67"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/coolermaster.svg�����������������������������0000664�0000000�0000000�00000006026�14753064456�0026326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2.526c-.97 0-2.528.285-5.647 1.43-2.721 1-3.219 1.246-3.65 1.443C.603 6.361 0 7.356 0 9.863v4.608c0 2.326.357 3.004 2.49 3.933.741.32 1.858.875 4.71 1.956 1.263.478 3.153 1.114 4.797 1.114 1.645 0 3.543-.636 4.801-1.114 2.857-1.081 3.975-1.636 4.714-1.956C23.647 17.475 24 16.797 24 14.471V9.863c.003-2.507-.593-3.502-2.694-4.464-.431-.197-.929-.444-3.65-1.443-3.124-1.145-4.685-1.43-5.656-1.43m0 .645c1.373 0 3.347.595 5.492 1.393 2.609.967 2.824 1.106 3.344 1.323 1.472.615 2.5 1.384 2.5 3.667l-.003 2.401v2.691c0 1.769-.408 2.442-1.867 3.096-1.22.542-1.344.6-3.871 1.59-1.596.625-3.716 1.451-5.595 1.451s-3.998-.826-5.589-1.451c-2.525-.989-2.644-1.047-3.869-1.59-1.461-.653-1.866-1.327-1.866-3.095V9.555c0-2.284 1.028-3.053 2.495-3.668.522-.218.736-.357 3.342-1.323C8.666 3.766 10.628 3.171 12 3.171m.722.811v7.681h3.071v-1.381l-1.724-.125V4.435zm-2.212.275a1.1 1.1 0 0 0-.45.078c-1.197.456-1.659 2.22-1.576 4.115.086 1.936.747 3.292 1.813 3.292 1.191 0 1.985-1.341 1.939-3.985-.033-1.903-.72-3.46-1.726-3.5m5.666.867.001 6.539h2.962v-1.159l-1.739-.118V9.203l1.442.195V8.221L17.4 7.925V6.817l1.739.462V6.108zm-9.641.436a1.1 1.1 0 0 0-.3.059c-.978.328-1.489 1.71-1.431 3.357.059 1.62.642 2.765 1.603 2.765 1.174 0 1.788-1.278 1.751-3.314-.032-1.619-.686-2.912-1.623-2.867m3.8.302c.339.019.556.844.586 2.042.034 1.332-.188 2.349-.608 2.39-.379.038-.606-.808-.645-1.965-.045-1.319.212-2.246.514-2.424a.27.27 0 0 1 .153-.043m9.194.379v5.422h1.121V9.919l.376.043.526 1.701h.954l-.593-1.798c.265-.115.56-.451.56-1.199 0-.813-.426-1.578-1.15-1.822zm-16.355.554q-.102.003-.204.025c-1.117.253-1.561 1.476-1.525 2.782.036 1.27.635 2.14 1.594 2.14.859 0 1.585-.886 1.585-1.857l-.976.082c-.048.429-.324.74-.623.762-.455.032-.64-.483-.656-1.268-.016-.796.154-1.432.615-1.562.3-.084.506.143.579.502l1.015-.189c-.139-.844-.749-1.436-1.404-1.417m3.234.021c.356-.021.598.704.619 1.739.025 1.082-.207 1.912-.598 1.944-.367.031-.585-.701-.615-1.702-.029-1.132.26-1.879.521-1.967a.3.3 0 0 1 .073-.014m14.241.864.526.14c.253.067.43.318.43.664s-.177.517-.43.47l-.526-.098zM10.53 12.161c-.95-.012-1.868.806-1.839 2.039.048 2.208 2.456 1.856 2.474 3.691 0 .275-.154.553-.435.525-.356-.068-.623-.314-.647-1.07l-1.251-.307c-.013 1.153.404 2.373 1.625 2.638 1.187.261 2.276-.697 2.019-2.346-.304-1.917-2.469-2.031-2.524-3.059-.02-.385.259-.645.534-.615.203.024.468.24.431.762l1.338.132c.071-1.353-.499-2.369-1.725-2.39m-8.982.072v4.305l.761.266v-2.722l.576 2.919.327.113.742-2.789v3.047l.997.345v-5.484H3.659l-.578 2.286-.445-2.286zm4.648 0-1.015 5.56.97.335.136-.856 1.066.302.154 1.019 1.181.412-1.269-6.772zm6.526 0v1.599l.937-.063.002 5.841 1.281-.427v-5.505l.842-.069v-1.376zm3.454 0v6.539l2.963-.987v-1.149l-1.739.457v-1.207l1.533-.305V14.41l-1.533.198v-1.095l1.739-.122v-1.158zm3.353 0v5.422l1.122-.373v-1.733l.377-.082.52 1.516.958-.319-.585-1.594c.264-.204.559-.64.559-1.392 0-.819-.426-1.445-1.153-1.445zm1.696 1.03c.229.008.385.198.385.523 0 .348-.178.579-.431.617l-.529.077v-1.179l.529-.037zM6.79 13.96l.376 2.291-.723-.162z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/coop.svg�������������������������������������0000664�0000000�0000000�00000004020�14753064456�0024557�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.275 5.265c0-.852-.132-1.703-.36-2.555-.328-1.016-1.081-1.834-2.031-2.194a9.25 9.25 0 0 0-6.092 0 3.17 3.17 0 0 0-2.03 2.194 9.53 9.53 0 0 0 0 5.077c.326 1.015 1.08 1.834 2.03 2.194a8 8 0 0 0 3.046.491c1.049 0 2.063-.196 3.046-.491a3.17 3.17 0 0 0 2.031-2.194c.229-.819.36-1.67.36-2.522m-3.308 0c0 .393-.065.852-.196 1.212-.164.524-.623.95-1.18 1.081a4.2 4.2 0 0 1-1.571 0 1.47 1.47 0 0 1-1.18-1.081 4.03 4.03 0 0 1 0-2.489c.163-.524.622-.95 1.18-1.081a4.2 4.2 0 0 1 1.571 0 1.48 1.48 0 0 1 1.18 1.081q.195.687.196 1.277m-8.745 13.79a9.55 9.55 0 0 0 0-5.077c-.327-1.016-1.081-1.834-2.03-2.195a9.25 9.25 0 0 0-6.092 0 3.17 3.17 0 0 0-2.031 2.195 9.55 9.55 0 0 0 0 5.077c.328 1.015 1.081 1.834 2.031 2.193a9.25 9.25 0 0 0 6.092 0 3.4 3.4 0 0 0 2.03-2.193m-2.948-2.523c0 .393-.066.852-.197 1.212a1.64 1.64 0 0 1-1.179 1.081 4.2 4.2 0 0 1-1.572 0 1.48 1.48 0 0 1-1.179-1.081 4.04 4.04 0 0 1 0-2.489 1.64 1.64 0 0 1 1.179-1.081 4.2 4.2 0 0 1 1.572 0 1.48 1.48 0 0 1 1.179 1.081q.197.639.197 1.277m0-11.3h3.308c0-.851-.131-1.703-.36-2.521-.327-1.016-1.081-1.834-2.03-2.194a9.25 9.25 0 0 0-6.092 0C2.084.909 1.331 1.728 1.068 2.743a9.55 9.55 0 0 0 0 5.077c.328 1.015 1.081 1.834 2.031 2.194.982.36 1.998.492 3.046.492s2.063-.197 3.046-.492a3.17 3.17 0 0 0 2.03-2.194c.033-.131.065-.295.131-.426L8.241 5.953c-.033.196-.065.36-.131.557-.163.524-.622.95-1.179 1.081a4.2 4.2 0 0 1-1.572 0A1.48 1.48 0 0 1 4.18 6.51a4.04 4.04 0 0 1 0-2.489c.164-.524.622-.95 1.179-1.082a4.2 4.2 0 0 1 1.572 0A1.48 1.48 0 0 1 8.11 4.021c.098.425.164.818.164 1.211m4.421 8.779a9.4 9.4 0 0 0-.36 2.555V24h3.308v-7.468c0-.393.065-.852.196-1.212.163-.524.622-.95 1.18-1.081a4.2 4.2 0 0 1 1.571 0 1.48 1.48 0 0 1 1.18 1.081 4.04 4.04 0 0 1 0 2.489c-.164.523-.623.95-1.146 1.08a4.2 4.2 0 0 1-1.572 0c-.099-.031-.229-.064-.327-.098l1.113 3.079c1.049 0 2.063-.197 3.046-.491a3.18 3.18 0 0 0 2.031-2.194 9.55 9.55 0 0 0 0-5.077c-.328-1.016-1.081-1.834-2.031-2.195a9.25 9.25 0 0 0-6.092 0c-1.016.263-1.769 1.082-2.097 2.098"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/copaairlines.svg�����������������������������0000664�0000000�0000000�00000003233�14753064456�0026275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 .105v6.456c.69-.02 1.48.208 2.336.32l-1.502.191c-.256.01-.545.033-.834.06v.339a20 20 0 0 1 3.387-.344c9.682-2.296 17.7-.135 17.7-.135C19.368 6.602 9.78 5.302 0 9.122v.58c1.452-.489 2.986-.867 4.453-1.04 2.176-.267 4.2-.147 5.902.332 7.157-.509 12.342 1.016 12.342 1.016C20.75 9.694 10.303 8.269 0 12.953v.465c2.852-1.355 5.844-2.138 8.395-2.305 2.585-.138 4.896.228 6.634 1.256 4.1-.063 7.225.467 8.971.889V.105zm7.264 7.397a7.3 7.3 0 0 1 1.859.787l-.734-.115c-.63-.236-1.377-.394-2.118-.498.321-.07.635-.13.993-.174m-.059 1.807C5.014 9.306 2.491 9.697 0 10.518v.752c2.566-.993 5.155-1.598 7.639-1.956a18 18 0 0 0-.434-.005m5.643.75c.511.336 1.198.871 1.605 1.38l-.426-.138c-.605-.435-1.239-.831-2.058-1.164.274-.018.557-.062.879-.078m-3.323 2.224c-2.884.008-6.186.705-9.525 2.096v1.453c4.215-2.037 8.514-3.007 12.258-3.328a15.6 15.6 0 0 0-2.733-.22zm9.104.865c-5.013.01-12.024.842-18.629 4.598v.606c.29-.165.58-.321.854-.467 2.156-1.153 4.31-1.957 6.464-2.446 2.039-.483 4.035-.653 5.86-.492 3.45.308 5.93 1.808 7.123 4.395.01.02.863 1.919.945 3.71l-.414-1.025c-.11-.512-.252-1.038-.521-1.51-.884-1.707-2.606-2.935-4.93-3.654-2.11-.662-4.882-.69-7.758-.13-2.552.48-5.15 1.438-7.623 2.656v4.506h.24c1.483-1.097 3.083-1.901 4.746-2.557 4.36-1.865 8.601-2.43 11.784-1.59 2.336.665 3.864 2.038 4.486 4.147H24V13.447a47 47 0 0 0-5.371-.299m-1.912.397q.192.14.365.351c.044.063 1.468 1.458 1.945 2.877l-.605-.664c-.727-1.066-1.648-1.873-2.926-2.49.382-.045.862-.058 1.22-.074zm-4.211 7.443a20 20 0 0 0-3.332.344c-2.37.43-4.854 1.23-7.242 2.563h18.226c-.849-1.231-2.199-2.02-3.85-2.471-1.17-.309-2.442-.455-3.802-.436"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/coppel.svg�����������������������������������0000664�0000000�0000000�00000001532�14753064456�0025106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.738 2.879a.716.716 0 0 0-.738.74v16.762c0 .428.35.74.738.74h22.52a.74.74 0 0 0 .739-.74V3.619c.039-.428-.31-.74-.738-.74Zm6.614 6.34c1.167 0 2.1.935 2.1 2.101 0 .234-.04.427-.079.621h12.058v1.868h-.973v2.527h-.97v-1.283h-.935v1.283h-.972v-2.527H9.373c.04.194.079.428.079.623a2.09 2.09 0 0 1-2.1 2.1c-1.011 0-1.83-.7-2.063-1.634a3.4 3.4 0 0 1-.62.077 2.09 2.09 0 0 1-2.102-2.1c0-1.167.934-2.1 2.101-2.1.234 0 .427 0 .621.079.234-.934 1.052-1.635 2.063-1.635m0 1.168c-.545 0-.973.428-.934.933 0 .506.428.932.934.932a.945.945 0 0 0 .933-.932.947.947 0 0 0-.933-.933M4.668 11.94a.947.947 0 0 0-.933.934c0 .506.428.934.933.934a.947.947 0 0 0 .934-.934.947.947 0 0 0-.934-.934m2.684 1.518a.947.947 0 0 0-.934.934c0 .505.428.933.934.933a.947.947 0 0 0 .933-.933.947.947 0 0 0-.933-.934"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cora.svg�������������������������������������0000664�0000000�0000000�00000004767�14753064456�0024565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.637 8.66c0-.083-.034-.115-.118-.111-.124.004-.249 0-.373 0a1.5 1.5 0 0 0-1.015.402 2.5 2.5 0 0 0-.462.594q-.079.132-.159.263l-.021-.005q-.006-.045-.008-.092l-.01-.89c0-.065-.008-.11-.094-.112-.477-.01-.953-.016-1.43-.008-.095.001-.118.037-.119.127a385 385 0 0 0 0 6.369c0 .075.028.09.096.09.48.009.96.014 1.439 0 .17-.004.173-.006.175-.18.012-1.167.021-2.334.036-3.5a1.26 1.26 0 0 1 1.011-1.258 3.5 3.5 0 0 1 .938-.052c.095.004.115-.025.114-.114-.003-.29.003-.58.003-.87 0-.217-.004-.435-.003-.652M3.296 9.995a.97.97 0 0 1 .8.475 1.6 1.6 0 0 1 .196.498c.015.07.047.085.111.083.256-.003.511 0 .766 0 .256 0 .511-.005.767.003.095.002.118-.028.109-.117a2.44 2.44 0 0 0-1.4-2.076 3.57 3.57 0 0 0-2.205-.264A2.6 2.6 0 0 0 .493 9.938a4 4 0 0 0-.465 1.671 5 5 0 0 0 .149 1.846 2.6 2.6 0 0 0 1.404 1.713 3.58 3.58 0 0 0 2.269.212c1.391-.289 2.016-1.34 2.185-2.36.015-.088-.002-.127-.108-.125-.463.006-.926.002-1.388.002-.223 0-.223 0-.282.22a1.16 1.16 0 0 1-.985.91 1.14 1.14 0 0 1-1.144-.47 1.8 1.8 0 0 1-.272-.675 5.6 5.6 0 0 1-.062-1.114 2.4 2.4 0 0 1 .084-.655c.155-.604.563-1.18 1.418-1.119m7.91-1.231A3.8 3.8 0 0 0 8.57 8.76a2.87 2.87 0 0 0-1.836 1.862 4.3 4.3 0 0 0-.042 2.618 2.88 2.88 0 0 0 1.862 1.991 3.8 3.8 0 0 0 2.54.043 2.9 2.9 0 0 0 1.838-1.644 3.9 3.9 0 0 0 .315-1.626 5 5 0 0 0-.098-.973 2.96 2.96 0 0 0-1.942-2.268m.056 4.367a1.3 1.3 0 0 1-1.258.865 1.7 1.7 0 0 1-.733-.091 1.42 1.42 0 0 1-.826-.912 3 3 0 0 1-.137-1.076 2.46 2.46 0 0 1 .234-1.14 1.34 1.34 0 0 1 1.193-.777 1.7 1.7 0 0 1 .744.09 1.3 1.3 0 0 1 .786.776 3.1 3.1 0 0 1-.003 2.265zm12.666 1.875a.5.5 0 0 1-.203-.228 1.05 1.05 0 0 1-.093-.462c-.025-1.342-.004-2.686-.038-4.028a1.51 1.51 0 0 0-.547-1.14 2.5 2.5 0 0 0-1.126-.515 5.4 5.4 0 0 0-1.71-.056 2.7 2.7 0 0 0-1.073.32c-.708.403-.985 1.063-1.083 1.83-.011.088.022.101.099.1q.653-.003 1.305-.001c.237 0 .237 0 .297-.225a.85.85 0 0 1 .748-.661 3 3 0 0 1 .784.02.69.69 0 0 1 .622.717.47.47 0 0 1-.285.441 1.5 1.5 0 0 1-.42.101c-.592.1-1.19.161-1.775.294a1.92 1.92 0 0 0-1.386 1.032 2.3 2.3 0 0 0-.194 1.282 1.7 1.7 0 0 0 .89 1.373 2.7 2.7 0 0 0 2.783-.285q.186-.157.368-.318c.056-.048.076-.04.086.035a3.4 3.4 0 0 0 .121.575.11.11 0 0 0 .125.09c.273-.005.546-.002.818-.002v-.008c.273 0 .546.002.818-.002.049 0 .12.023.131-.062.01-.08.034-.167-.062-.217m-2.584-1.072a1.7 1.7 0 0 1-1.068.289.78.78 0 0 1-.698-.984.82.82 0 0 1 .585-.65 6 6 0 0 1 .815-.187 2.7 2.7 0 0 0 .865-.267c.056-.033.066-.003.066.042v.435h.004v.28a1.18 1.18 0 0 1-.569 1.042"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/simple/coreldraw.svg��������������������������������0000664�0000000�0000000�00000001643�14753064456�0025611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.651 0C10.265.019 9.4.272 8.584.657c-.816.39-3.696 2.161-3.752 6.536.072 4.145 3.847 11.191 6.397 13.455 0 0-4.141-6.952-4.439-13.013C6.488 1.575 10.651 0 10.651 0m2.679 0s4.159 1.575 3.861 7.635c-.299 6.061-4.439 13.013-4.439 13.013 2.547-2.264 6.324-9.31 6.396-13.455-.057-4.375-2.936-6.146-3.752-6.536C14.58.272 13.715.019 13.33 0m-1.38.019a1.1 1.1 0 0 0-.555.144C9.864.99 8.909 3.982 9.177 8.66c.185 3.242 1.009 7.291 2.422 11.988h.7c1.413-4.697 2.24-8.742 2.425-11.984.268-4.677-.688-7.674-2.219-8.501a1.1 1.1 0 0 0-.555-.144M7.017 1.066S2.543 2.909 3.431 8.225c.884 5.32 5.588 10.995 6.986 12.2.503.457-5.777-6.548-6.386-12.699-.291-2.323.39-4.9 2.986-6.66m9.966 0c2.595 1.76 3.276 4.337 2.985 6.66-.608 6.151-6.888 13.156-6.386 12.699 1.398-1.205 6.103-6.88 6.987-12.2.888-5.316-3.586-7.159-3.586-7.159m-6.815 20.78L10.647 24h2.599l.488-2.154z"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/coronaengine.svg�����������������������������0000664�0000000�0000000�00000002600�14753064456�0026270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.69 7.499c-.919-.965-1.577-2.105-1.6-3.116.655-.187 2.017.001 3.35.558 1.354.566 2.668 1.514 3.158 2.831q.022.059.041.116a2.34 2.34 0 0 1-.529 1.14c-.26.279-.586.487-.948.605-1.143-.23-2.464-1.074-3.472-2.134m5.581 2.244c-.957.334-1.839 1.311-2.473 2.482v.001c-.697 1.284-1.093 2.799-.96 3.957.225.307.523.553.869.713.394.163.826.215 1.247.151q.056-.041.1-.075c1.103-.872 1.6-2.413 1.72-3.875.119-1.437-.122-2.79-.503-3.354m-7.939-3.389a2.23 2.23 0 0 0-.283-1.088 2.33 2.33 0 0 0-.92-.853l-.123.002C8.6 4.473 7.292 5.428 6.334 6.541 5.393 7.633 4.791 8.87 4.768 9.55c.969.288 2.257.017 3.459-.559v.002c1.32-.631 2.532-1.625 3.105-2.639M7.96 14.641c-.193-1.449-.765-2.907-1.553-3.767a2.25 2.25 0 0 0-1.123-.067c-.415.099-.794.31-1.097.61l-.036.118c-.38 1.355.125 2.893.886 4.146.749 1.233 1.741 2.185 2.382 2.418.577-.832.718-2.139.54-3.459zm5.297 2c-1.439-.264-3.004-.172-4.065.311a2.2 2.2 0 0 0-.411 1.046c-.034.426.05.852.243 1.233q.05.037.1.068c1.172.779 2.793.774 4.223.438 1.405-.332 2.619-.978 3.039-1.515-.614-.807-1.817-1.344-3.128-1.584zM24 12c0 6.622-5.364 11.992-11.985 12C5.387 24.008.008 18.642 0 12.015-.008 5.387 5.358.008 11.985 0h.001C18.617-.004 23.996 5.369 24 12m-1.547 0c-.003-5.778-4.69-10.459-10.468-10.456-5.774.007-10.45 4.693-10.443 10.468s4.693 10.45 10.468 10.443C17.78 22.448 22.453 17.77 22.453 12"/></svg>��������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/coronarenderer.svg���������������������������0000664�0000000�0000000�00000001732�14753064456�0026636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.734 11.603a5.665 5.665 0 0 1-1.44 5.033 5.66 5.66 0 0 1-3.789 1.741 5.67 5.67 0 0 1-3.979-1.365 5.66 5.66 0 0 1-1.921-3.684 5.67 5.67 0 0 1 1.17-4.057 5.67 5.67 0 0 1 3.574-2.095 5.67 5.67 0 0 1 4.123.97 5.67 5.67 0 0 1 2.262 3.457M24 6v12a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6V6a6 6 0 0 1 6-6h12a6 6 0 0 1 6 6m-2.172 3.483a9.17 9.17 0 0 0-5.973-5.849c.159.423.239.874.238 1.326a6.6 6.6 0 0 0-4.632-2.564 6.6 6.6 0 0 0-3.265.538 3.78 3.78 0 0 1 2.03 1.533 6.63 6.63 0 0 0-5.611.561 6.6 6.6 0 0 0-1.784 1.581 3.79 3.79 0 0 1 3.262.843 3.78 3.78 0 0 1-2.778 1.039q.232.377.544.689l-.031.051a3.8 3.8 0 0 0-1.68 1.496 3.754 3.754 0 0 0-.029 3.809 1.53 1.53 0 0 1 1.622-1.686c.921.071 1.576.983 1.351 1.88a1.53 1.53 0 0 1-1.386 1.142 6.62 6.62 0 0 0 4.08 3.146 6.6 6.6 0 0 0 1.866.206 3.73 3.73 0 0 1-1.637.711 9.16 9.16 0 0 0 9.282.587 9.2 9.2 0 0 0 3.184-2.684 9.14 9.14 0 0 0 1.676-3.876 9.24 9.24 0 0 0-.329-4.479"/></svg>��������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/corsair.svg����������������������������������0000664�0000000�0000000�00000001253�14753064456�0025266�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.072.412s1.913 3.881 1.563 5.5c0 0 4.987 1.612 5.54 4.272 0 0 2.73-3.594-7.103-9.772M7.908 4.067s1.678 2.625 1.417 4.35l2.818 1.067a17.6 17.6 0 0 0-.991-3.248zm3.784.691a14.16 14.16 0 0 1 .163 13.794 17.7 17.7 0 0 0 .594-6.585c-.017-.186-.031-.368-.053-.55L6.908 7.759a14.1 14.1 0 0 1 1.133 4.465 14 14 0 0 1-1.305 7.347 17.8 17.8 0 0 0 .442-5.988 1 1 0 0 1-.022-.243l-5.133-2.726a11.6 11.6 0 0 1 1.075 3.93A11.79 11.79 0 0 1 0 23.587c21.91-9.29 22.795-3.173 22.795-3.173s1.656-2.164 1.085-4.51C23.128 12.79 11.692 4.759 11.692 4.759zM3.04 7.245s1.629 2.09 1.363 3.815l2.567.637a20 20 0 0 0-.863-2.788z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/couchbase.svg��������������������������������0000664�0000000�0000000�00000001040�14753064456�0025552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.111 14.104a1.467 1.458 0 0 1-1.235 1.503c-1.422.244-4.385.398-6.875.398s-5.454-.15-6.877-.398c-.814-.14-1.235-.787-1.235-1.503V9.417a1.57 1.56 0 0 1 1.235-1.505 15.72 15.619 0 0 1 2.156-.14.537.533 0 0 1 .523.543v3.303c1.463 0 2.727-.086 4.201-.086s2.727.086 4.196.086V8.342a.535.532 0 0 1 .494-.569h.027a15.995 15.891 0 0 1 2.156.14 1.57 1.56 0 0 1 1.234 1.504zM12.001 0C5.373 0 0 5.374 0 12c0 6.628 5.373 12 12 12 6.628 0 12-5.372 12-12 0-6.626-5.373-12-12-12z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/counterstrike.svg����������������������������0000664�0000000�0000000�00000004462�14753064456�0026532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.71 3.235a.02.02 0 0 1-.022-.022c.002-.081.004-.37.005-.424 0-.129-.143-.183-.212-.083l-.229.333a.02.02 0 0 1-.02.01h-6.55a.047.047 0 0 1-.048-.046l-.013-.177a.048.048 0 0 1 .056-.048l.335.032a.06.06 0 0 0 .063-.045l.244-.989a.05.05 0 0 0-.03-.054l-.227-.085a.04.04 0 0 1-.026-.03c-.041-.171-.377-1.323-1.993-1.58-.787-.125-1.302.21-1.577.478a1.6 1.6 0 0 0-.302.41l-.097.212a2 2 0 0 0-.046.234l.051.982a.11.11 0 0 0 .043.085l.354.153-.196.325a.055.055 0 0 1-.053.04s-.417.01-.622.02c-.386.015-1.245.485-1.878 1.838l-.724 1.55a.07.07 0 0 1-.068.04l-.578.001c-.035 0-.073.028-.088.06L6.364 9a.11.11 0 0 0 .017.108l.627.392a.06.06 0 0 1 .02.058l-.328.967a.2.2 0 0 1-.023.062l-.435.382a.1.1 0 0 0-.035.06l-.598 1.53a.06.06 0 0 1-.06.045l-.336.002a.163.163 0 0 0-.162.149l-.201 2.288a2 2 0 0 1-.016.121l-.158.908a.13.13 0 0 1-.034.055l-.558.427a4.8 4.8 0 0 0-.767 1.001l-1.86 3.924a.8.8 0 0 0-.078.322l.132.235c.002.084-.032.456-.07.53l-.624 1.09a.1.1 0 0 0-.003.085l.03.07.094.187 1.891.002c.118.011.247-.14.251-.3l.103-1.297-.027-.195 3.606-4.232c.095-.114.222-.317.286-.45l1.719-3.79a.17.17 0 0 1 .1-.088l.109-.035a.17.17 0 0 1 .183.053c.15.181.504.781.676 1.032.143.208.85 1.23 1.158 1.567.086.093.349.198.466.27a.083.083 0 0 1 .03.112l-1.03 1.808-.455 2.136a1 1 0 0 0-.036.152l-.412 1.483c.003.188-.14.286-.153.507l-.15 1.084a.06.06 0 0 0 .059.061l2.544.014q.142-.001.286-.006l.075-.007c.124-.016.563-.076.75-.15a.6.6 0 0 0 .227-.13c.185-.194.2-.278.203-.398a.3.3 0 0 0-.028-.105.12.12 0 0 0-.06-.047l-1.18-.356a.37.37 0 0 1-.19-.134l-.317-.47a.09.09 0 0 1 .018-.097l.618-.609a.2.2 0 0 0 .048-.072l1.904-4.488c.089-.285.059-.605 0-.944-.044-.25-.686-1.326-.854-1.624l-1.286-2.251c-.079-.138-.19-.133-.228-.276l-.073-1.118a.04.04 0 0 1 .036-.05l.33-.028a.1.1 0 0 0 .075-.048l1.147-2.155a.1.1 0 0 0-.002-.094l-.235-.29a.09.09 0 0 1-.001-.088l.352-.38a.054.054 0 0 1 .073-.02l.934.526a.4.4 0 0 0 .186.05c.26-.001.686-.154.908-.29a.4.4 0 0 0 .139-.148l.458-1.07c.006-.014.027-.012.03.003l.127.595a.064.064 0 0 0 .079.05l1.35-.3a.066.066 0 0 0 .05-.078l-.319-1.344a.07.07 0 0 1 .01-.054l.13-.203a.3.3 0 0 0 .037-.082l.159-.725a.04.04 0 0 1 .04-.032l3.732.005a.09.09 0 0 0 .093-.093v-.634a.02.02 0 0 1 .022-.021h1.439a.047.047 0 0 0 .046-.047V3.28a.047.047 0 0 0-.046-.047h-1.44z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/countingworkspro.svg�������������������������0000664�0000000�0000000�00000002351�14753064456�0027261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.327.512c-3.806.034-7.447 3.19-7.181 7.75.102 1.547.88 3.382 2.981 5.733a.365.365 0 0 0 .635-.23l.053-2.266a.36.36 0 0 0-.1-.255 5.047 5.047 0 0 1 3.407-8.502c2.27-.104 4.011 1.236 4.753 2.744.34.693.527 1.45.55 2.222a.357.357 0 0 0 .343.344q.724.022 1.437.147a.36.36 0 0 0 .424-.344 7.24 7.24 0 0 0-2.769-5.788C15.02 1.404 13.564.52 11.327.512m4.94 8.362a15 15 0 0 0-2.515.26.364.364 0 0 0-.17.635l1.695 1.435a.36.36 0 0 0 .316.073 5.03 5.03 0 0 1 3.123.281c1.78.787 2.92 2.414 3.042 4.304.208 3.187-2.48 5.539-5.277 5.37a5 5 0 0 1-1.751-.412.365.365 0 0 0-.443.115q-.434.578-.94 1.094a.367.367 0 0 0 .09.573c1.887 1.073 3.936 1.16 6.014.32 3.303-1.304 4.63-4.523 4.545-6.847-.096-2.641-1.48-5.072-4.085-6.402-.921-.47-2.04-.812-3.643-.799zm-12.931 1.2a.4.4 0 0 0-.152.052c-1.41.827-2.216 2.057-2.798 3.777-.285.892-.386 1.51-.386 2.436a7.276 7.276 0 0 0 7.157 7.141c1.129.017 2.104-.235 2.962-.583 1.45-.62 3.142-1.597 4.65-4.912a.363.363 0 0 0-.459-.489l-2.365.867a.36.36 0 0 0-.195.174 5.03 5.03 0 0 1-2.268 2.224C6 22.428 2.473 19.784 2.235 16.74c-.145-1.741.494-3.053 1.37-3.982.293-.308.41-.477.663-.662a.36.36 0 0 0 .098-.471 9 9 0 0 1-.653-1.326.37.37 0 0 0-.377-.225"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/coursera.svg���������������������������������0000664�0000000�0000000�00000001165�14753064456�0025451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.374 23.977c-4.183-.21-8.006-2.626-9.959-6.347-2.097-3.858-1.871-8.864.732-12.454C4.748 1.338 9.497-.698 14.281.23c4.583.857 8.351 4.494 9.358 8.911 1.122 4.344-.423 9.173-3.925 12.04-2.289 1.953-5.295 2.956-8.34 2.797zm7.705-8.05a589 589 0 0 0-3.171-1.887c-.903 1.483-2.885 2.248-4.57 1.665-2.024-.639-3.394-2.987-2.488-5.134.801-2.009 2.79-2.707 4.357-2.464a4.2 4.2 0 0 1 2.623 1.669c1.077-.631 2.128-1.218 3.173-1.855-2.03-3.118-6.151-4.294-9.656-2.754-3.13 1.423-4.89 4.68-4.388 7.919.54 3.598 3.73 6.486 7.716 6.404a7.66 7.66 0 0 0 6.404-3.563"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/coveralls.svg��������������������������������0000664�0000000�0000000�00000001162�14753064456�0025615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 12v12h24V0H0zm13.195-6.187 1.167 3.515 2.255.005c1.238.005 2.916.019 3.727.037l1.472.028-2.968 2.152c-1.63 1.181-2.976 2.18-2.99 2.212-.01.033.487 1.627 1.106 3.54.619 1.917 1.12 3.487 1.116 3.492-.005.01-1.35-.947-2.986-2.119a229 229 0 0 0-3.033-2.161c-.028-.01-1.411.947-3.07 2.138-1.655 1.185-3.02 2.151-3.024 2.142-.004-.005.497-1.575 1.116-3.492.619-1.913 1.115-3.507 1.106-3.54-.014-.032-1.36-1.03-2.99-2.212L2.23 9.398l1.472-.028c.811-.018 2.49-.032 3.727-.037l2.254-.005 1.168-3.515a513 513 0 0 1 1.171-3.516c.005 0 .53 1.58 1.172 3.516z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/coze.svg�������������������������������������0000664�0000000�0000000�00000001536�14753064456�0024570�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.366 12.096a.61.61 0 0 0-.608.608v1.218a.609.609 0 1 0 1.217 0v-1.218a.61.61 0 0 0-.609-.608m.8 3.453a.605.605 0 0 1 0-.86.605.605 0 0 1 .859 0 1.52 1.52 0 0 0 2.149 0 .605.605 0 0 1 .859 0 .605.605 0 0 1 0 .86 2.73 2.73 0 0 1-3.867 0m4.062-2.24a.61.61 0 1 1 .609.609.606.606 0 0 1-.61-.609zM3.023 0A3.024 3.024 0 0 0 0 3.023v17.954A3.024 3.024 0 0 0 3.023 24h17.954A3.024 3.024 0 0 0 24 20.977V3.023A3.024 3.024 0 0 0 20.977 0ZM12.1 3.78h.004a6.287 6.287 0 0 1 6.283 6.286v2.635h1.508c1.73 0 2.12 2.426.476 2.97l-1.984.663v1.137a1.513 1.513 0 0 1-2.19 1.353l-1.101-.549c-.052-.024-.115 0-.131.055-.892 2.785-4.835 2.785-5.727 0a.095.095 0 0 0-.13-.055l-1.102.55a1.513 1.513 0 0 1-2.19-1.354v-1.139l-1.984-.66c-1.647-.541-1.254-2.97.477-2.97h1.507v-2.636A6.285 6.285 0 0 1 12.1 3.78"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cpanel.svg�����������������������������������0000664�0000000�0000000�00000005314�14753064456�0025070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.586 9.346a.54.54 0 0 0-.34.113.56.56 0 0 0-.197.299L2.74 14.654h.922a.53.53 0 0 0 .332-.113.56.56 0 0 0 .2-.291l.968-3.604h.744a.7.7 0 0 1 .317.077.7.7 0 0 1 .24.199.7.7 0 0 1 .129.281.65.65 0 0 1-.01.326.7.7 0 0 1-.676.526h-.385a.54.54 0 0 0-.337.113.56.56 0 0 0-.2.291l-.24.896h1.201a1.94 1.94 0 0 0 1.62-.867 2 2 0 0 0 .265-.586l.027-.1a1.85 1.85 0 0 0 .026-.907 1.97 1.97 0 0 0-1.031-1.34 1.9 1.9 0 0 0-.88-.21zm18.447 0a.4.4 0 0 0-.25.082.38.38 0 0 0-.14.217l-1.334 5.01a1.7 1.7 0 0 0 .57-.096 1.8 1.8 0 0 0 .496-.266 1.7 1.7 0 0 0 .385-.408 1.7 1.7 0 0 0 .234-.531l.996-3.696a.23.23 0 0 0-.045-.217.25.25 0 0 0-.2-.095zM8.381 10.643l-.133.503a.6.6 0 0 0-.006.26.54.54 0 0 0 .1.221.55.55 0 0 0 .185.154.5.5 0 0 0 .252.06h2.157a.1.1 0 0 1 .084.038.1.1 0 0 1 .015.088l-.02.072-.324 1.201-.013.055a.17.17 0 0 1-.067.105.2.2 0 0 1-.127.04H9.178a.15.15 0 0 1-.12-.057.14.14 0 0 1-.027-.13q.033-.112.147-.112h.808a.53.53 0 0 0 .332-.112.56.56 0 0 0 .2-.293l.132-.498H8.84a1.1 1.1 0 0 0-.38.065 1.2 1.2 0 0 0-.323.176 1.2 1.2 0 0 0-.256.271 1 1 0 0 0-.156.346l-.028.1a1.1 1.1 0 0 0-.013.533 1.2 1.2 0 0 0 .212.464 1.14 1.14 0 0 0 .918.453l2.157.006a.9.9 0 0 0 .875-.67l.525-1.95a1.1 1.1 0 0 0 .01-.514 1.1 1.1 0 0 0-.205-.444 1.15 1.15 0 0 0-.377-.312 1.05 1.05 0 0 0-.498-.12zm-6.397.01a1.9 1.9 0 0 0-.638.107 2 2 0 0 0-.553.295 1.96 1.96 0 0 0-.7 1.045l-.027.1a1.94 1.94 0 0 0-.023.905 1.96 1.96 0 0 0 .361.786 2 2 0 0 0 .668.554 1.9 1.9 0 0 0 .88.21h.464l.266-.983a.23.23 0 0 0-.043-.215.24.24 0 0 0-.198-.096h-.423a.7.7 0 0 1-.319-.074.7.7 0 0 1-.24-.195.7.7 0 0 1-.127-.281.7.7 0 0 1 .01-.34.73.73 0 0 1 .256-.377.68.68 0 0 1 .42-.14h.697a.54.54 0 0 0 .338-.114.56.56 0 0 0 .199-.297l.232-.89zm11.08 0-.982 3.689a.23.23 0 0 0 .045.217.24.24 0 0 0 .195.095h.711a.4.4 0 0 0 .248-.08.36.36 0 0 0 .143-.21l.644-2.41h.745a.7.7 0 0 1 .318.075.7.7 0 0 1 .238.2.7.7 0 0 1 .129.28.65.65 0 0 1-.01.327l-.398 1.506a.243.243 0 0 0 .24.312h.713a.4.4 0 0 0 .244-.08.37.37 0 0 0 .143-.213l.332-1.248a1.9 1.9 0 0 0 .029-.908 1.96 1.96 0 0 0-.361-.79 2 2 0 0 0-.668-.554 1.9 1.9 0 0 0-.885-.209h-1.813zm5.793 0a1.5 1.5 0 0 0-.488.081 1.5 1.5 0 0 0-.752.58 1.5 1.5 0 0 0-.205.454l-.406 1.505a1 1 0 0 0-.016.508 1.1 1.1 0 0 0 .205.446 1.1 1.1 0 0 0 .377.312 1.1 1.1 0 0 0 .498.115h2.502a.53.53 0 0 0 .332-.113.56.56 0 0 0 .2-.291l.21-.791h-2.748a.2.2 0 0 1-.191-.252l.299-1.127a.34.34 0 0 1 .113-.162.28.28 0 0 1 .18-.064h1.232a.153.153 0 0 1 .147.193l-.026.1q-.033.113-.146.113h-.81a.54.54 0 0 0-.339.111.53.53 0 0 0-.191.293l-.133.49h2.004a.9.9 0 0 0 .547-.181.86.86 0 0 0 .32-.483l.12-.45a1.1 1.1 0 0 0 .013-.513 1.1 1.1 0 0 0-.203-.443 1.15 1.15 0 0 0-.375-.313 1.05 1.05 0 0 0-.498-.119h-1.772Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cplusplus.svg��������������������������������0000664�0000000�0000000�00000001316�14753064456�0025656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.394 6c-.167-.29-.398-.543-.652-.69L12.926.22c-.509-.294-1.34-.294-1.848 0L2.26 5.31c-.508.293-.923 1.013-.923 1.6v10.18c0 .294.104.62.271.91s.398.543.652.69l8.816 5.09c.508.293 1.34.293 1.848 0l8.816-5.09c.254-.147.485-.4.652-.69s.27-.616.27-.91V6.91c.003-.294-.1-.62-.268-.91M12 19.11c-3.92 0-7.109-3.19-7.109-7.11s3.19-7.11 7.11-7.11a7.13 7.13 0 0 1 6.156 3.553l-3.076 1.78a3.57 3.57 0 0 0-3.08-1.78A3.56 3.56 0 0 0 8.444 12 3.56 3.56 0 0 0 12 15.555a3.57 3.57 0 0 0 3.08-1.778l3.078 1.78A7.14 7.14 0 0 1 12 19.11m7.11-6.715h-.79v.79h-.79v-.79h-.79v-.79h.79v-.79h.79v.79h.79zm2.962 0h-.79v.79h-.79v-.79h-.79v-.79h.79v-.79h.79v.79h.79z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cplusplusbuilder.svg�������������������������0000664�0000000�0000000�00000004056�14753064456�0027231�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.922 10.66a12 12 0 0 0-.46-2.21 12 12 0 0 0-1.47-3.09A12 12 0 0 0 20.63 3.67a12 12 0 0 0-3.016-2.273 12 12 0 0 0-2.343-.94 12 12 0 0 0-1.487-.32A11 11 0 0 0 12.39.01c-.236-.005-.473-.015-.709-.004-.345.016-.69.036-1.033.077q-.579.07-1.15.182a11.947 11.947 0 0 0-4.906 2.297q-.611.478-1.153 1.03a12 12 0 0 0-2.033 2.77A12 12 0 0 0 .395 8.94a12 12 0 0 0-.393 2.882 12 12 0 0 0 .073 1.527q.206 1.845.962 3.54.804 1.8 2.141 3.25a12 12 0 0 0 2.913 2.311 11.9 11.9 0 0 0 5.529 1.547c.013 0 .818-.002.868-.004a12 12 0 0 0 1.543-.162 11.945 11.945 0 0 0 6.173-3.072 12 12 0 0 0 3.303-5.353c.162-.55.29-1.107.364-1.675.053-.406.087-.815.113-1.224a10.7 10.7 0 0 0-.062-1.848m-5.83 7.555c-.043.276-.164.479-.324.706-.174.245-.418.418-.657.594-1.03.758-2.41 1.342-3.668 1.562-.47.082-2.956.504-5.4-.692a9.6 9.6 0 0 1-2.986-2.276c-1.76-2.017-2.56-4.628-2.217-7.253.334-2.555 1.763-4.9 3.859-6.387a8.7 8.7 0 0 1 3.425-1.472 8.989 8.989 0 0 1 3.94.112c.625.153 1.23.394 1.806.68.565.281 1.169.634 1.642 1.056.45.4.665.972.592 1.572-.087.715-.447 1.12-.967 1.36a1.68 1.68 0 0 1-1.597-.116c-.259-.17-.485-.385-.747-.551a5.5 5.5 0 0 0-.834-.412c-.607-.254-1.213-.36-1.865-.399-.625-.038-1.36.071-1.959.258-1.207.376-2.259 1.1-2.973 2.154-.72 1.064-1.107 2.322-1.03 3.609a6.04 6.04 0 0 0 1.34 3.444c.79.954 1.922 1.592 3.109 1.853 1.27.279 2.613.141 3.775-.458.283-.146.553-.298.807-.492.238-.182.458-.363.75-.45a1.77 1.77 0 0 1 1.67.368c.427.384.597 1.07.51 1.63m-7.321-5.023H8.974c-.26 0-.416-.155-.416-.415v-1.05c0-.255.156-.41.414-.411h1.868v-1.87c0-.257.155-.414.412-.414h1.053c.252 0 .408.156.409.41v1.873h1.86c.267 0 .422.154.422.422v1.049c0 .248-.157.405-.407.405h-1.875v1.865c0 .264-.154.42-.418.42h-1.048c-.251 0-.408-.158-.408-.412v-1.872zm12.107-.406c0 .248-.158.405-.408.406h-1.874v1.865c0 .263-.154.418-.419.419H19.13c-.252 0-.408-.158-.408-.411v-1.873h-1.867c-.26 0-.415-.155-.415-.415v-1.05c0-.255.155-.41.413-.411h1.869v-1.87c0-.257.155-.414.411-.414h1.054c.251 0 .408.156.408.41v1.873h1.86c.268 0 .422.154.423.422z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/craftcms.svg���������������������������������0000664�0000000�0000000�00000000775�14753064456�0025436�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.474 0H2.526A2.516 2.516 0 0 0 0 2.526v18.948A2.516 2.516 0 0 0 2.526 24h18.948A2.534 2.534 0 0 0 24 21.474V2.526A2.516 2.516 0 0 0 21.474 0m-9.516 14.625c.786 0 1.628-.31 2.442-1.039l1.123 1.291c-1.18.955-2.527 1.488-3.874 1.488-2.667 0-4.35-1.769-3.958-4.267.393-2.498 2.667-4.266 5.334-4.266 1.29 0 2.498.505 3.34 1.431l-1.572 1.291c-.45-.59-1.207-.982-2.05-.982-1.6 0-2.834 1.039-3.087 2.526-.224 1.488.674 2.527 2.302 2.527"/></svg>���mkdocs-material-9.6.4/material/templates/.icons/simple/craftsman.svg��������������������������������0000664�0000000�0000000�00000001474�14753064456�0025607�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.428 9.572v4.899h23.144V9.572Zm1.543 1.143h.172l.886.014v.572h-.744v1.484h.744v.572H1.971l-.371-.37v-1.901zm1.7 0h1.243l.47.314v.985l-.37.244.601 1.086h-.73l-.528-.973v.973h-.685Zm2.815 0H7.5l.357.314v2.315h-.615v-.873h-.484v.873h-.63v-2.315zm2.07 0h1.329v.613H9.27v.516h.543v.57H9.27v.93h-.714Zm1.944 0h1.686l-.2.629h-.443v2h-.672v-2h-.57zm2.1 0h1.556l-.17.613h-.843l1.029 1.414-.201.615h-1.713l.185-.586h.942l-.942-1.386zm2.1 0h.814l.414.97.4-.97h.815v2.613h-.672v-1.57l-.399.957h-.3l-.4-.944v1.573h-.673zm3.571 0h1.014l.358.314v2.315h-.63v-.873h-.484v.873h-.615v-2.315zm2.057 0h.629l.615 1.414v-1.414h.627v2.629h-.627l-.615-1.416v1.416h-.629zm-13.586.556v.614h.487v-.614zm11.787 0v.614h.485v-.614zm-14.172.014v.572h.358v-.572ZM0 9.143h24v5.714H0Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cratedb.svg����������������������������������0000664�0000000�0000000�00000000155�14753064456�0025230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 9V3h-6v6H0v6h6v6h6v-6h12V9z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/crayon.svg�����������������������������������0000664�0000000�0000000�00000001355�14753064456�0025122�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.949 16.562a6.3 6.3 0 0 0 4.467 1.854 6.3 6.3 0 0 0 4.467-1.854l5.798-5.798-1.425-1.425-5.798 5.75c-1.664 1.663-4.373 1.663-6.084 0l-.095-.095c-1.663-1.663-1.663-4.372 0-6.083l.095-.095c1.664-1.664 4.373-1.664 6.084 0l.475.523 1.426-1.426-.476-.523c-2.471-2.471-6.51-2.471-8.982 0l-.047.143c-2.472 2.47-2.472 6.51 0 8.982zm20.055-9.124a6.3 6.3 0 0 0-4.467-1.854 6.3 6.3 0 0 0-4.468 1.854l-5.798 5.798 1.426 1.425 5.798-5.75c1.663-1.663 4.372-1.663 6.083 0l.095.095c1.664 1.663 1.664 4.372 0 6.083l-.095.095c-1.663 1.664-4.372 1.664-6.083 0l-.475-.475-1.426 1.426.475.475c2.472 2.471 6.511 2.471 8.983 0l.095-.095c2.47-2.471 2.47-6.511 0-8.982-.048 0-.143-.095-.143-.095"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/creality.svg���������������������������������0000664�0000000�0000000�00000003701�14753064456�0025440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3.215 10.33-1.772.01c-.785.029-1.42.737-1.443 1.613v.088c.018.903.69 1.629 1.51 1.629h1.705c.01 0 .02-.011.02-.024v-.603a.02.02 0 0 0-.02-.022H1.508c-.501 0-.92-.443-.928-1.001-.007-.569.405-1.034.912-1.034l1.723-.007c.01 0 .02-.01.02-.022v-.603c0-.013-.01-.024-.02-.024m.412 0c-.011 0-.02.011-.02.024v3.292c0 .013.009.024.02.024h.54c.012 0 .02-.011.02-.024V11a.02.02 0 0 1 .02-.021h1.606c.168 0 .314.145.32.333.006.198-.137.36-.313.36l-1.533.002c-.018 0-.028.023-.016.037l1.75 1.95q.006.008.014.009H6.8c.017 0 .026-.025.014-.04L5.64 12.32h.183c.496 0 .898-.454.89-1.01-.006-.546-.416-.98-.905-.98zm4.873 0c-.827 0-1.5.75-1.5 1.67s.673 1.67 1.5 1.67h1.68c.01 0 .02-.011.02-.024v-.603c0-.012-.01-.022-.02-.022H8.5c-.404 0-.75-.292-.871-.697h2.55q.019-.002.02-.023v-.604q-.001-.02-.02-.021h-2.55c.123-.405.468-.697.872-.697h1.68c.01 0 .02-.012.02-.024v-.601c0-.013-.01-.024-.02-.024zm3.709 0q-.021 0-.033.024l-1.7 3.28c-.007.016 0 .036.016.036h.625a.02.02 0 0 0 .018-.012l1.056-2.045a.02.02 0 0 1 .036 0l.71 1.375c.008.015-.002.033-.017.033h-.928q-.01 0-.015.012l-.313.602c-.008.015.002.033.018.033h2.242c.015 0 .025-.018.017-.033l-1.697-3.281a.04.04 0 0 0-.035-.024m2.03.002c-.01 0-.02.01-.02.022v2.94c0 .207.15.376.336.376h2.148c.01 0 .022-.011.022-.024v-.603a.02.02 0 0 0-.022-.022H14.82A.02.02 0 0 1 14.8 13v-2.646c0-.013-.01-.022-.02-.022h-.54zm2.84 0c-.01 0-.02.01-.02.022v3.292c0 .013.01.024.02.024h.542c.01 0 .02-.011.02-.024v-3.292c0-.013-.01-.022-.02-.022h-.54zm.85 0c-.01 0-.02.01-.02.022v.601c0 .012.01.024.02.024h1.169c.01 0 .02.009.02.021v2.646c0 .013.01.022.02.022h.54c.01 0 .02-.01.02-.022V11a.02.02 0 0 1 .02-.021h1.172a.02.02 0 0 1 .015.007l1.018 1.354a.02.02 0 0 1 .004.014v1.292c0 .013.008.024.02.024h.54c.011 0 .02-.011.02-.024v-1.292q0-.009.006-.014l1.482-1.97c.011-.016.001-.038-.016-.038h-.705a.02.02 0 0 0-.015.008l-1.026 1.363a.02.02 0 0 1-.03 0l-1.026-1.363a.02.02 0 0 0-.016-.008z"/></svg>���������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/createreactapp.svg���������������������������0000664�0000000�0000000�00000020146�14753064456�0026611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.92 10.846c0-1.223-1.44-2.308-3.655-2.97.533-2.25.3-4.04-.76-4.645a1.7 1.7 0 0 0-.85-.213c-.989 0-2.239.69-3.501 1.886-1.262-1.186-2.509-1.873-3.496-1.873a1.7 1.7 0 0 0-.863.216c-1.054.607-1.273 2.386-.747 4.625-2.203.659-3.636 1.735-3.64 2.953-.003 1.218 1.442 2.308 3.656 2.968-.533 2.251-.302 4.04.76 4.645.259.145.552.218.848.213.991 0 2.241-.69 3.503-1.886 1.26 1.186 2.507 1.873 3.496 1.873a1.7 1.7 0 0 0 .863-.216c1.054-.607 1.271-2.386.747-4.616 2.204-.668 3.636-1.744 3.638-2.96m-7.953-5.541c1.454-1.301 2.363-1.442 2.686-1.442a.84.84 0 0 1 .43.103c.508.29.71 1.31.549 2.663a10 10 0 0 1-.178 1.028 17 17 0 0 0-2.233-.367 17.5 17.5 0 0 0-1.463-1.79q.098-.098.21-.195m-4.401 6.548q.208.399.438.8c.153.268.313.54.49.808a17 17 0 0 1-1.391-.259c.124-.451.282-.895.463-1.35m-.492-3.38q.675-.158 1.408-.26c-.177.263-.33.533-.49.815s-.3.533-.437.802a21 21 0 0 1-.48-1.358M10 10.84q.33-.697.726-1.396c.267-.465.552-.918.847-1.35q.776-.06 1.598-.06c.549.002 1.065.022 1.578.063.295.43.577.887.844 1.34.266.453.511.927.731 1.39a20 20 0 0 1-1.571 2.747 20 20 0 0 1-3.176-.004 20 20 0 0 1-.845-1.34 21 21 0 0 1-.725-1.39zm5.834-2.623c.483.068.95.155 1.392.258-.131.438-.288.888-.469 1.34q-.209-.398-.44-.8a38 38 0 0 0-.476-.798zm.49 4.425q.229-.403.437-.805c.177.462.355.917.48 1.36q-.674.157-1.407.258.257-.395.497-.813zm-3.165-6.54q.48.513.94 1.107a23 23 0 0 0-.928-.021c-.314 0-.636 0-.946.021a15 15 0 0 1 .934-1.106M9.22 3.974a.86.86 0 0 1 .438-.099 2.3 2.3 0 0 1 .922.233 7 7 0 0 1 1.775 1.203l.208.19a17.5 17.5 0 0 0-1.449 1.776 18 18 0 0 0-2.246.365 9 9 0 0 1-.177-1.006c-.185-1.34.028-2.363.527-2.655zm-.94 9.002a10 10 0 0 1-.983-.355c-1.26-.533-2.042-1.216-2.042-1.8S6.04 9.554 7.3 9.031a10 10 0 0 1 .966-.345 17 17 0 0 0 .81 2.155 18 18 0 0 0-.794 2.133m4.084 3.39c-1.454 1.302-2.363 1.44-2.688 1.44a.83.83 0 0 1-.43-.102c-.507-.29-.71-1.31-.548-2.663a10 10 0 0 1 .177-1.027q1.105.255 2.234.366.672.945 1.463 1.79zm.811-.8q-.48-.511-.942-1.106.458.021.93.021c.314 0 .636 0 .946-.02q-.461.593-.935 1.105zm3.938 2.13a.86.86 0 0 1-.44.105c-.323 0-1.243-.142-2.692-1.438l-.207-.19a17.5 17.5 0 0 0 1.447-1.775 17 17 0 0 0 2.247-.366q.119.518.178 1.007c.176 1.338-.029 2.361-.535 2.65zm1.918-5.049q-.455.188-.966.343a17.5 17.5 0 0 0-.812-2.155q.469-1.04.798-2.13.5.152.983.354c1.259.533 2.042 1.216 2.04 1.8s-.785 1.257-2.045 1.781zm-5.873-.18c.322 0 .637-.096.905-.274a1.63 1.63 0 0 0 .601-.731 1.63 1.63 0 0 0 .094-.942 1.63 1.63 0 0 0-.445-.835 1.63 1.63 0 0 0-.834-.447 1.63 1.63 0 0 0-.942.092 1.63 1.63 0 0 0-.732.6 1.63 1.63 0 0 0-.276.905 1.6 1.6 0 0 0 .123.624 1.63 1.63 0 0 0 1.506 1.007M2.328 1.011v19.645H24V1.012zm20.825 18.8H3.176V1.859h19.977zm-15.09-6.019c-.533 2.251-.303 4.04.759 4.645.259.145.552.218.849.213.99 0 2.24-.69 3.503-1.886 1.26 1.186 2.506 1.873 3.495 1.873a1.7 1.7 0 0 0 .863-.216c1.055-.607 1.271-2.386.748-4.616 2.203-.66 3.636-1.737 3.637-2.953.002-1.216-1.44-2.308-3.653-2.97.532-2.25.3-4.04-.76-4.645a1.7 1.7 0 0 0-.85-.213c-.99 0-2.24.69-3.502 1.886-1.262-1.186-2.508-1.873-3.496-1.873a1.7 1.7 0 0 0-.862.216C7.739 3.862 7.52 5.64 8.046 7.88c-2.203.659-3.636 1.735-3.64 2.953-.003 1.218 1.444 2.297 3.658 2.961zm4.297 2.573c-1.454 1.301-2.363 1.44-2.688 1.44a.83.83 0 0 1-.43-.103c-.507-.29-.71-1.31-.548-2.663a10 10 0 0 1 .178-1.027 18 18 0 0 0 2.233.366q.672.945 1.463 1.79zm4.402-6.55a24 24 0 0 0-.44-.8c-.155-.269-.32-.533-.484-.798.483.068.95.155 1.392.258-.13.438-.286.888-.467 1.34zm.483 3.373q-.673.157-1.407.258a21 21 0 0 0 .927-1.617c.187.47.348.921.476 1.368zm-.925-2.37a20 20 0 0 1-1.572 2.747 20 20 0 0 1-3.176-.004 20 20 0 0 1-1.576-2.73q.33-.697.726-1.396c.266-.465.552-.918.847-1.35a20.6 20.6 0 0 1 3.176.004c.294.428.577.886.843 1.34.266.452.513.935.733 1.398zm-5.826 2.642a17 17 0 0 1-1.391-.259c.13-.437.289-.888.47-1.34q.208.399.438.8c.153.268.306.531.483.8M10 9.023q-.231.398-.437.802a18 18 0 0 1-.488-1.353q.675-.156 1.408-.259c-.165.263-.323.534-.483.81m3.175 6.542q-.48-.511-.943-1.106.458.021.93.021c.314 0 .636 0 .946-.02a16 16 0 0 1-.933 1.105m3.937 2.13a.86.86 0 0 1-.44.105c-.323 0-1.243-.142-2.691-1.438l-.208-.19a17.5 17.5 0 0 0 1.447-1.775 17 17 0 0 0 2.247-.366q.12.518.178 1.007c.178 1.338-.027 2.361-.533 2.65zm.938-8.994q.5.153.983.355c1.26.533 2.042 1.217 2.04 1.8-.001.585-.783 1.272-2.043 1.796q-.455.188-.966.342a17.5 17.5 0 0 0-.811-2.155q.468-1.046.797-2.145zm-4.084-3.389c1.454-1.301 2.363-1.442 2.687-1.442a.84.84 0 0 1 .43.103c.507.29.71 1.31.548 2.663a10 10 0 0 1-.178 1.028 17 17 0 0 0-2.233-.367 17.5 17.5 0 0 0-1.463-1.79q.101-.107.211-.202zm-.807.792q.48.511.94 1.106a23 23 0 0 0-.928-.021c-.314 0-.636 0-.946.02a15 15 0 0 1 .934-1.105M9.22 3.974a.86.86 0 0 1 .438-.1 2.3 2.3 0 0 1 .922.233 7 7 0 0 1 1.775 1.203l.208.19a17.5 17.5 0 0 0-1.449 1.776 18 18 0 0 0-2.246.365 9 9 0 0 1-.177-1.006c-.185-1.34.028-2.363.527-2.655zM7.299 9.031a10 10 0 0 1 .966-.345 17 17 0 0 0 .81 2.155 18 18 0 0 0-.798 2.13 10 10 0 0 1-.984-.354c-1.26-.533-2.041-1.216-2.041-1.8s.788-1.263 2.047-1.786m5.859.177a1.63 1.63 0 0 0-.906.274 1.63 1.63 0 0 0-.601.73 1.63 1.63 0 0 0-.094.942 1.63 1.63 0 0 0 3.229-.314 1.6 1.6 0 0 0-.12-.627 1.6 1.6 0 0 0-.353-.533 1.6 1.6 0 0 0-.53-.356 1.6 1.6 0 0 0-.625-.125za1.63 1.63 0 0 0-.906.274 1.63 1.63 0 0 0-.601.73 1.63 1.63 0 0 0-.094.942 1.63 1.63 0 0 0 3.229-.314 1.6 1.6 0 0 0-.12-.627 1.6 1.6 0 0 0-.353-.533 1.6 1.6 0 0 0-.53-.356 1.6 1.6 0 0 0-.625-.125za1.63 1.63 0 0 0-.906.274 1.63 1.63 0 0 0-.601.73 1.63 1.63 0 0 0-.094.942 1.63 1.63 0 0 0 3.229-.314 1.6 1.6 0 0 0-.12-.627 1.6 1.6 0 0 0-.353-.533 1.6 1.6 0 0 0-.53-.356 1.6 1.6 0 0 0-.625-.125zm8.761 1.64c0-1.223-1.44-2.307-3.654-2.97.533-2.25.3-4.039-.76-4.644a1.7 1.7 0 0 0-.85-.213c-.989 0-2.239.69-3.501 1.885-1.262-1.186-2.509-1.873-3.496-1.873a1.7 1.7 0 0 0-.863.217c-1.054.607-1.273 2.386-.747 4.625-2.203.658-3.636 1.734-3.64 2.952-.003 1.218 1.442 2.308 3.656 2.969-.533 2.25-.302 4.039.76 4.644.259.145.552.219.848.213.991 0 2.241-.69 3.503-1.885 1.26 1.186 2.507 1.873 3.496 1.873.302.005.6-.07.863-.217 1.054-.607 1.271-2.386.747-4.616 2.204-.671 3.636-1.747 3.638-2.963zm-7.952-5.544c1.454-1.301 2.363-1.442 2.686-1.442a.84.84 0 0 1 .43.103c.508.29.71 1.31.549 2.663a10 10 0 0 1-.178 1.028 17 17 0 0 0-2.233-.367 17.5 17.5 0 0 0-1.463-1.79q.098-.098.21-.195m-4.401 6.548q.208.399.438.8c.153.268.313.54.49.808a17 17 0 0 1-1.391-.259c.124-.451.282-.895.463-1.35m-.492-3.38q.675-.158 1.408-.26c-.177.263-.33.533-.49.815s-.3.533-.437.802a21 21 0 0 1-.48-1.358M10 10.84q.33-.697.726-1.396c.267-.465.552-.918.847-1.35q.776-.06 1.598-.06c.549.002 1.065.022 1.578.063.295.43.577.887.844 1.34.266.453.511.927.731 1.39a20 20 0 0 1-1.571 2.747 20 20 0 0 1-3.176-.004 20 20 0 0 1-.845-1.34 21 21 0 0 1-.725-1.39zm5.834-2.623c.483.068.95.155 1.392.258-.131.438-.288.888-.469 1.34q-.209-.398-.44-.8a38 38 0 0 0-.476-.798zm.49 4.425q.229-.403.437-.805c.177.462.355.917.48 1.36q-.674.157-1.407.258.257-.395.497-.813zm-3.165-6.54q.48.513.94 1.107a23 23 0 0 0-.928-.021c-.314 0-.636 0-.946.021a15 15 0 0 1 .934-1.106M9.22 3.974a.86.86 0 0 1 .438-.099 2.3 2.3 0 0 1 .922.233 7 7 0 0 1 1.775 1.203l.208.19a17.5 17.5 0 0 0-1.449 1.776 18 18 0 0 0-2.246.365 9 9 0 0 1-.177-1.006c-.185-1.34.028-2.363.527-2.655zm-.94 9.002a10 10 0 0 1-.983-.355c-1.26-.533-2.042-1.216-2.042-1.8S6.04 9.554 7.3 9.031a10 10 0 0 1 .966-.345 17 17 0 0 0 .81 2.155 18 18 0 0 0-.794 2.133m4.084 3.39c-1.454 1.302-2.363 1.44-2.688 1.44a.83.83 0 0 1-.43-.102c-.507-.29-.71-1.31-.548-2.663a10 10 0 0 1 .177-1.027q1.105.255 2.234.366.672.945 1.463 1.79zm.811-.8q-.48-.511-.942-1.106.458.021.93.021c.314 0 .636 0 .946-.02q-.461.593-.935 1.105zm3.938 2.13a.86.86 0 0 1-.44.105c-.323 0-1.243-.142-2.692-1.438l-.207-.19a17.5 17.5 0 0 0 1.447-1.775 17 17 0 0 0 2.247-.366q.119.518.178 1.007c.176 1.338-.029 2.361-.535 2.65zm1.918-5.049q-.455.188-.966.343a17.5 17.5 0 0 0-.812-2.155q.469-1.04.798-2.13.5.152.983.354c1.259.533 2.042 1.216 2.04 1.8s-.785 1.257-2.045 1.781zm-5.873-.18c.322 0 .637-.096.905-.274a1.63 1.63 0 0 0 .601-.731 1.63 1.63 0 0 0 .094-.942 1.63 1.63 0 0 0-.445-.835 1.63 1.63 0 0 0-.834-.447 1.63 1.63 0 0 0-.942.092 1.63 1.63 0 0 0-.732.6 1.63 1.63 0 0 0-.276.905 1.6 1.6 0 0 0 .123.624 1.63 1.63 0 0 0 1.506 1.007M.85 22.14V2.49L0 3.341v19.647h21.669l.849-.847z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/creativecommons.svg��������������������������0000664�0000000�0000000�00000002166�14753064456�0027026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.983 0c-3.292 0-6.19 1.217-8.428 3.485C1.25 5.819 0 8.844 0 12c0 3.189 1.217 6.148 3.522 8.45 2.305 2.3 5.3 3.55 8.461 3.55 3.16 0 6.222-1.25 8.593-3.583C22.815 18.214 24 15.287 24 12c0-3.255-1.186-6.214-3.458-8.483C18.238 1.217 15.275 0 11.983 0m.033 2.17c2.7 0 5.103 1.02 6.98 2.893 1.843 1.841 2.83 4.274 2.83 6.937 0 2.696-.954 5.063-2.798 6.872-1.943 1.906-4.444 2.926-7.012 2.926-2.601 0-5.038-1.019-6.914-2.893-1.877-1.875-2.93-4.34-2.93-6.905 0-2.597 1.053-5.063 2.93-6.97 1.844-1.874 4.214-2.86 6.914-2.86M8.68 8.278C6.723 8.278 5.165 9.66 5.165 12c0 2.38 1.465 3.722 3.581 3.722 1.358 0 2.516-.744 3.155-1.874l-1.491-.758c-.333.798-.839 1.037-1.478 1.037-1.105 0-1.61-.917-1.61-2.126 0-1.21.426-2.127 1.61-2.127.32 0 .96.173 1.332.97l1.597-.838c-.68-1.236-1.837-1.728-3.181-1.728m6.932 0c-1.957 0-3.514 1.382-3.514 3.722 0 2.38 1.464 3.722 3.58 3.722 1.359 0 2.516-.744 3.155-1.874l-1.49-.758c-.333.798-.84 1.037-1.478 1.037-1.105 0-1.611-.917-1.611-2.126 0-1.21.426-2.127 1.61-2.127.32 0 .96.173 1.332.97l1.597-.838c-.68-1.236-1.837-1.728-3.181-1.728"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/creativetechnology.svg�����������������������0000664�0000000�0000000�00000002001�14753064456�0027512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.48 13.248h-.593l-1.028-2.213-1.004 2.213h-.514l1.543-3.422zM2.804 11.19s-.18-.103-.283-.155c-.206-.077-.489-.18-.798-.18-.617 0-1.183.283-1.183 1.004 0 .72.54 1.003 1.21 1.003.334 0 .668-.103.848-.257.103-.078.257-.232.257-.232l.283.437-.231.155c-.232.154-.54.36-1.21.36C.85 13.325 0 12.887 0 11.859c0-.927.797-1.467 1.775-1.467.437 0 .772.103 1.003.232.129 0 .309.128.309.128zm7.537 2.546h3.138v.438h-3.138zm12.116-2.135h.746v.54h-.746zm-1.107-.051v-1.106H24v.437h-2.11v.669zm.54.566v.694H24v.438h-2.65v-1.132zM4.786 11.6h.668c.283 0 .515-.103.515-.36s-.232-.386-.515-.386H4.27v2.367h-.54v-2.778h1.775c.669 0 1.029.36 1.029.797s-.283.772-.772.798l.746 1.029c.026.077.103.18.103.18h-.695zm10.186 1.647h-.54V10.88h-1.106v-.437h2.804v.437h-1.106zm2.238 0h-.54v-2.804h.54zm3.138-2.804-.952 2.11-.951-2.11h-.618l1.312 2.804h.54l1.287-2.83h-.618M8.386 11.55h.746v.54h-.746zm-1.106 0v-1.106h2.65v.437H7.82v.669zm.566.566v.694h2.109v.438H7.28v-1.132z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/credly.svg�����������������������������������0000664�0000000�0000000�00000013221�14753064456�0025104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.8 13.154a.3.3 0 0 0-.101-.024.4.4 0 0 0-.202.048c-.06.028-.092.08-.127.136-.087.128-.15.268-.226.4-.107.187-.246.351-.38.515-.135.156-.286.291-.424.44-.028.027-.072.043-.107.027-.028-.016-.036-.056-.032-.088.04-.38.075-.763.123-1.138.02-.172.043-.336.063-.512.028-.247.056-.487.087-.735l.234-1.824c.02-.128.032-.372-.135-.52a.45.45 0 0 0-.233-.116.46.46 0 0 0-.254.06c-.226.16-.297.504-.365.76-.142.603-.178 1.241-.471 1.804a1.8 1.8 0 0 1-.202.316.7.7 0 0 1-.186.18.33.33 0 0 1-.246.051.37.37 0 0 1-.238-.207.871.87 0 0 1-.063-.324 4.5 4.5 0 0 1 .24-1.585c.045-.132.089-.252.104-.383.028-.156.028-.38-.114-.516-.131-.128-.337-.18-.504-.128-.194.056-.31.244-.372.392-.198.463-.25.95-.317 1.446-.044.327-.127.64-.293.926a2.7 2.7 0 0 1-.603.72c-.118.087-.222.123-.328.107a.38.38 0 0 1-.278-.208.9.9 0 0 1-.095-.315 3.361 3.36 0 0 1-.036-.616c.004-.223 0-.44.044-.658.075-.39.678-1.937.808-2.345.135-.407.262-.823.353-1.246.08-.38.123-.767.11-1.15-.007-.277-.07-.576-.288-.736a.611.61 0 0 0-.603-.048.97.97 0 0 0-.455.428 2.5 2.5 0 0 0-.226.59 12 12 0 0 0-.266 1.29c-.071.429-.138.848-.206 1.268-.06.355-.206 1.614-.261 1.88-.06.272-.175.54-.301.787-.131.268-.258.536-.408.791a.7.7 0 0 1-.175.224c-.08.06-.182.088-.27.048-.102-.048-.146-.176-.166-.292-.075-.435-.012-.875.072-1.302.083-.431.44-2.4.519-2.851.099-.532.24-1.05.285-1.59.028-.388.09-.88-.202-1.187-.115-.136-.31-.16-.44-.136-.174.036-.31.176-.388.296-.1.128-.186.28-.258.467-.115.284-.186.615-.261.91l-.032.129q-.123.574-.186 1.162a16.95 16.948 0 0 0-.06.632q-.011.15-.027.307c0 .08.007.168-.028.244a.3.3 0 0 1-.052.068c-.08.072-.202.06-.31.056-.557-.016-1.045.3-1.35.755-.18.252-.281.542-.39.834-.01.048-.034.1-.054.152-.051.143-.13.327-.222.511a3 3 0 0 1-.317.46 3.3 3.3 0 0 1-.384.41 1.1 1.1 0 0 1-.515.26c-.174.04-.384-.043-.543-.203a.9.9 0 0 1-.206-.54c-.004-.055-.004-.115.028-.163.05-.068.146-.072.23-.076a1.62 1.62 0 0 0 1.375-1.015c.138-.34.178-.698.122-1.046a1.2 1.2 0 0 0-.19-.48.9.9 0 0 0-.396-.323c-.293-.14-.658-.127-1.01.004-.575.232-.951.74-1.134 1.562l-.02.088c-.114.487-.23 1-.582 1.354-.127.12-.261.163-.368.143-.044-.004-.08-.04-.103-.075-.096-.16.003-.532.15-1a4 4 0 0 0 .1-.366.93.93 0 0 0-.108-.495.8.8 0 0 0-.372-.324c-.143-.064-.31-.06-.468-.06h-.047c-.044 0-.103 0-.151-.012a.22.22 0 0 1-.147-.127.5.5 0 0 1 .016-.232c.004-.02.012-.048.016-.072a.37.37 0 0 0-.162-.412.51.51 0 0 0-.468-.036.77.77 0 0 0-.364.348.77.77 0 0 0-.103.48c.04.13.07.32.043.475-.055.28-.222.51-.384.74-.04.05-.072.106-.107.16a5 5 0 0 1-.706.825c-.372.335-.804.575-1.232.67-.745.165-1.506-.06-1.91-.734-.222-.38-.32-.827-.348-1.266a5.4 5.4 0 0 1 .424-2.516c.328-.76.816-1.52 1.715-1.614.353-.04.753.083.912.4.115.23.075.506 0 .75-.072.244-.175.49-.18.75-.003.26.124.54.37.616.238.072.495-.08.634-.29.138-.21.186-.46.245-.704a6.282 6.281 0 0 1 .662-1.634c.139-.236.297-.488.254-.76a.54.54 0 0 0-.373-.415.54.54 0 0 0-.535.144c-.134.148-.206.371-.387.43-.17.06-.35-.055-.507-.134-.6-.32-1.336-.312-1.963-.048-.634.25-1.146.735-1.526 1.294C.462 8.53.098 9.508.022 10.48c-.027.34-.031.695 0 1.038.036.46.1.854.214 1.206.139.423.317.79.547 1.094.266.34.587.6.94.747.372.148.784.22 1.192.208a3.2 3.2 0 0 0 1.177-.283 4.3 4.3 0 0 0 1.026-.68c.309-.26.594-.559.84-.89q.243-.336.44-.708a5 5 0 0 0 .178-.383c.044-.104.087-.215.202-.26.056-.043.15-.02.202.013.064.04.115.075.135.135.048.116.02.232-.004.332v.012c-.028.1-.055.203-.091.303-.14.424-.238.811-.16 1.195.045.207.128.387.25.527a.84.84 0 0 0 .504.264c.246.04.51-.028.725-.132q.217-.103.397-.26c.06-.06.122-.12.174-.184.044-.06.087-.147.178-.143a.15.15 0 0 1 .107.064c.028.031.04.071.06.115.23.52.776.84 1.335.84h.07c.27 0 .556-.093.79-.22.27-.14.48-.348.7-.552.02-.016.045-.04.073-.044.035-.008.07.012.099.044a.3.3 0 0 1 .047.1c.135.34.46.6.824.66a1.1 1.1 0 0 0 .99-.356c.056-.06.104-.128.167-.176.064-.044.15-.076.222-.044.107.04.135.164.182.268.107.235.357.371.615.375.289 0 .554-.148.764-.34.195-.183.353-.399.516-.61a.3.3 0 0 1 .106-.096c.04-.024.096-.028.13 0 .033.024.045.06.06.091.163.4.587.652 1.01.648.417-.004.809-.224 1.103-.516.095-.092.194-.2.32-.21.14-.017.207.114.254.22.072.142.115.238.25.338.158.116.36.152.547.1.17-.04.34-.156.47-.316.072-.088.112-.204.19-.284.092-.087.132.028.136.1q.022.176.008.352c-.016.236-.052.471-.08.703-.011.068-.02.136-.063.188-.06.068-.166.08-.253.064a3 3 0 0 0-.321-.028l-.14-.016c-.201-.012-.4-.036-.61-.044h-.185c-.404 0-.733.048-1.03.16-.48.187-.852.57-1.003 1.018a1.3 1.3 0 0 0-.052.64c.04.203.13.403.282.587.265.315.68.515 1.149.543.408.02.852-.064 1.292-.26.848-.367 1.482-1.094 1.696-1.95 0-.02.01-.039.023-.043q.448-.157.813-.428c.245-.187.467-.399.65-.643q.135-.18.253-.37c.07-.125.13-.257.202-.38a.9.9 0 0 0 .13-.316.41.41 0 0 0-.05-.328.26.26 0 0 0-.135-.124m-13.68-1.63c.017-.071.045-.14.06-.206a1.9 1.9 0 0 1 .262-.504c.04-.048.08-.1.135-.136a.25.25 0 0 1 .186-.048c.107.02.183.128.202.236.032.18-.04.396-.114.555a1.1 1.1 0 0 1-.31.415c-.06.044-.114.088-.178.116-.028.008-.063.028-.115.028h-.016c-.055 0-.114-.028-.126-.088a.8.8 0 0 1 .015-.367m4.308-.184c-.004.072-.024.148-.028.223a5 5 0 0 0 0 .779c.012.152.047.3-.016.444a1.07 1.07 0 0 1-.567.643.56.56 0 0 1-.245.056q-.03-.002-.06-.004c-.12 0-.214-.092-.265-.18a.871.87 0 0 1-.1-.272 2.13 2.13 0 0 1 .072-1.122c.08-.22.202-.435.38-.594a.87.87 0 0 1 .563-.24.3.3 0 0 1 .206.064c.04.044.06.104.056.164a.05.05 0 0 1 .004.04m6.43 4.653c-.015.044-.06.104-.08.14-.042.08-.102.163-.161.235a2.6 2.6 0 0 1-.317.304c-.238.18-.503.311-.777.387a2 2 0 0 1-.487.072h-.04a.8.8 0 0 1-.515-.18.43.43 0 0 1-.158-.25.54.54 0 0 1 .047-.305.78.78 0 0 1 .38-.383c.326-.16.682-.176 1.019-.16.139.004.265.012.4.02.107.004.218.012.325.024q.086 0 .17.012c.044.004.092-.004.135.008.06.004.068.036.06.076"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/crehana.svg����������������������������������0000664�0000000�0000000�00000000430�14753064456�0025221�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.371 0 0 5.371 0 12c0 6.626 5.371 12 12 12s12-5.374 12-12c0-6.629-5.374-12-12-12m5.94 9.843v7.915h-3.957v-3.892h-3.895v3.83H6.13v-3.957h3.833V9.843H6.06V5.948h3.957v3.895h3.965V5.948h3.957v3.895z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/crewai.svg�����������������������������������0000664�0000000�0000000�00000001323�14753064456�0025074�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.482.18C7.161 1.319 1.478 9.069 1.426 15.372c-.051 5.527 3.1 8.68 8.68 8.627 6.716-.05 14.259-6.87 12.09-10.9-.672-1.292-1.396-1.344-2.687-.207-1.602 1.395-1.654.31-.207-2.893 1.757-3.98 1.705-5.322-.31-7.544C17.03.388 14.962-.388 12.482.181Zm5.322 2.068c2.273 2.015 2.376 4.236.465 8.42-1.395 3.1-2.17 3.515-3.824 1.86-1.24-1.24-1.343-3.46-.258-6.044 1.137-2.635.982-3.1-.568-1.653-3.72 3.358-6.458 9.765-5.424 12.503.464 1.189.825 1.395 2.737 1.395 2.79 0 6.303-1.705 7.957-3.926 1.756-2.274 2.79-2.274 2.79-.052 0 3.875-6.459 8.627-11.625 8.627-6.251 0-9.351-4.752-7.491-11.47.878-2.995 4.443-7.904 7.077-9.66 3.255-2.17 5.684-2.17 8.164 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/crewunited.svg�������������������������������0000664�0000000�0000000�00000001773�14753064456�0026004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.871 3.912A3.23 3.23 0 0 0 9.1 5.715c-.46.93-.44 2.029.048 2.945-.895-.524-1.898-.777-3.027-.777a6.097 6.097 0 0 0-6.086 6.74 6.11 6.11 0 0 0 6.086 5.467l.715-.043a5 5 0 0 0 .62-.106c.033-.01.067-.013.1-.023a6.1 6.1 0 0 0 2.231-1.055l3.535-2.85a6.107 6.107 0 0 0 8.62.522 6.103 6.103 0 0 0 .523-8.619 6.12 6.12 0 0 0-4.572-2.053q-.52 0-1.032.086l-3.439-1.717.006.01a3.23 3.23 0 0 0-1.557-.33Zm4.444 2.838 6.668 3.262a5.445 5.445 0 0 1-3.133 7.037 5.4 5.4 0 0 1-1.957.365 5.42 5.42 0 0 1-4.053-1.812l1.285-1.037a2.912 2.912 0 1 0 .465-4.092 2.9 2.9 0 0 0-.787.968l-3.27-1.61a.64.64 0 0 1-.207-.884.636.636 0 0 1 .83-.234l.442.215.593.289a5.45 5.45 0 0 1 3.123-2.467Zm.345 1.281a4.67 4.67 0 0 0-2.428 1.21l.633.316a3.94 3.94 0 0 1 1.924-.883Zm-10.539.504a5.447 5.447 0 0 1 5.45 5.443 5.447 5.447 0 0 1-4.807 5.416l-.672.04A5.453 5.453 0 0 1 .678 13.95 5.45 5.45 0 0 1 6.12 8.535Zm4.84 1.727 5.287 2.513-4.61 3.838a6.11 6.11 0 0 0-.677-6.351"/></svg>�����mkdocs-material-9.6.4/material/templates/.icons/simple/criticalrole.svg�����������������������������0000664�0000000�0000000�00000014026�14753064456�0026302�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.014 0c-.51.281-9.231 5.256-10.323 5.87a.23.23 0 0 0-.136.23v11.866l.089.15c.004.005 6.521 3.746 10.24 5.884h.14c.52-.295 9.26-5.28 10.263-5.842a.28.28 0 0 0 .16-.272c-.006-3.915-.006-7.825 0-11.74 0-.145-.034-.253-.174-.309L12.094 0zm.324.863c3.066 1.763 6.123 3.516 9.19 5.279-.352.136-4.825 1.819-4.83 1.819l-.033.066q.056.127.099.262l.089.042c.117-.047 4.876-1.838 4.96-1.861v10.802c-.004-.005-3.282-5.692-3.624-6.282-.051-.085-.051-.085-.145-.07-.333.065-.207.037-.314.065l3.807 6.601h-8.754l-.089-.075-.042-1.256-.07-.061a3.4 3.4 0 0 1-1.107.014l-.065.06v.517l-.047.051c-.807-.117-.643.01-1.937-1.547-.126-.15-.239-.31-.36-.464l-.01-.01.01-.098c.398-.478.745-.844.703-1.528a1.14 1.14 0 0 0-.586-.957c-.47-.277-1.05-.225-2.626-.225-.178 0-.22.178-.084.225l.22.028c.235.047.253.127.253.633.005 3.3.01 3.085-.051 3.723-.024.244-.16.173-.31.206l-.094.084.08.141c.099.028 1.505.024 1.58.005.16-.042.122-.22-.023-.23-.352-.028-.432-.019-.455-.225-.042-.347-.033-.3-.047-1.528l.084-.085c.624 0 .68-.033.783.113q.507.688 1.027 1.369c.338.445.652.59 1.004.595.97.01.862-.014.862.047v.417l-.08.08H2.553c-.089 0-.098.01-.06-.052l3.164-5.485-.038-.066c-.286-.018-.351-.06-.426.07l-3.005 5.205V6.47c.121.033 1.251.469 1.256.469.108.042.14.042.502-.24l-1.449-.543-.005-.019q4.55-2.596 9.1-5.185l.01.01h-.005q-2.01 3.481-4.041 6.985c.16 0 .295.005.436-.005.084-.005 3.577-6.17 4.004-6.859.398.68 3.797 6.587 3.844 6.667.061.108.103.14.553.183l.014-.014zM11.93 4.05a.743.743 0 0 0-.675.76c.005.295.155.515.417.651l.075.131c-.019.328-.014.099-.047 1.388l-.084.084c-1.43-.009-1.482.01-1.744-.089-.094-.037-.14-.009-.16.09l-.154.843c-.01.052.07.277.183-.009.164-.417.37-.375 1.884-.399l.061.052a680 680 0 0 0-.173 5.687l-.094.127c-.544.173-1.153.801-.933 1.706.277 1.14 1.472 1.097 1.599 1.093 1.378-.066 1.575-1.191 1.51-1.744a1.15 1.15 0 0 0-.582-.905 3 3 0 0 0-.408-.188l-.056-.07-.174-5.725.047-.042c2.124.108 1.6.108 1.834.563l.121.01.038-.957-.122-.09a2 2 0 0 1-.258.038v.005c-.539.014-1.613.019-1.617.019l-.057-.052c-.051-1.613-.046-1.383-.046-1.411l.103-.202c.384-.244.436-.797.117-1.134a.69.69 0 0 0-.605-.23m.07.394c.47 0 .45.703-.004.698-.45-.004-.455-.698.004-.698M5.352 6.55q-.302.013-.647.089c-1.397.319-2.011 1.608-1.885 2.822.31 3.005 4.304 2.4 4.375 1.974 0-.01.075-.39.16-.895v-.047l-.141-.108c-.272.014.112.863-1.163.961-1.74.127-2.55-1.266-2.537-2.386.038-2.724 3.353-2.242 3.503-1.191.018.131-.005.422.187.342l.075-.108c.005-.037.052-.848.061-1.083.005-.131-.042-.173-.169-.187-.698-.09-1.214-.216-1.819-.183m12.645 1.477-.056.037c-.066.066-.014-.023-.863 1.95a7 7 0 0 1-.192.427.285.285 0 0 1-.277.16c-.112.004-.103.15.038.15h1.233c.183 0 .107-.15-.033-.174-.202-.042-.633.047-.572-.103q.098-.262.21-.516l.076-.047c.23-.014.455-.014.684-.004l.094.065q.093.24.192.478c.09.207-.103.235.02.263l.168.038c.136.004-.506-.005 2.377.014.258 0 .192-.15.248-.483h-.004c.018-.108-.099-.263-.178.01-.052.177-.127.177-.75.158l-.15-.117c-.024-.108-.015-1.856-.015-1.931v-.02l.127-.116c.305-.033.169-.16.056-.16-1.06-.004-1.008 0-1.017.01-.117.112-.01.14.004.14.15.024.258-.01.258.202v1.936c-.004.15-.023.207-.197.202-.028 0-.206.033-.3-.094-.243-.338-.97-2.279-1.106-2.433l-.019-.019zm-2.363.028c-.399-.005-.867.08-1.196.408-.46.464-.66 1.603.324 2.123.623.333 1.458.17 1.533.16.31-.042.281-.59.281-.596-.042-.136-.089-.112-.145-.051-.047.051-.047.272-.324.356-.323.099-1.078.08-1.355-.647-.262-.694.043-1.781 1.276-1.416.21.061.337.202.356.427.01.112.127.117.16.014.009-.033.009-.206.028-.455.009-.136-.024-.192-.141-.22-.066-.014-.399-.099-.797-.103m-4.534.051-.895.005c-.155.052-.155.14.033.16.136.009.15.056.15.318-.01 2.124-.01 1.744-.024 1.904l-.103.098a.53.53 0 0 1-.464-.15c-.488-.51-.764-.867-.811-.924q.149-.16.29-.314c.413-.468.038-1.012-.375-1.06-.347-.041-.853-.037-1.406-.032-.094 0-.277.122.051.16.132.013.155.07.155.23 0 .098-.014.674-.01 1.88 0 .332-.163.112-.276.285l.127.085h.914c.178 0 .178-.17-.042-.165-.188.005-.146-.056-.188-.825-.004-.093.31-.084.385.019.501.685.633.975 1.134.975.488-.004.97 0 1.458 0 .183 0 .118-.16 0-.16-.225.006-.234-.06-.239-.102-.014-.122-.033.051-.019-2.007.005-.169.02-.206.188-.216h.01c.168-.14-.029-.164-.043-.164m1.735.005c-.084 0-.14.089-.019.145.07.033.22-.042.22.197-.009 2.208.052 2.133-.159 2.133-.16 0-.178.16 0 .16q.555.006 1.013.005c.122 0 .126-.155.005-.16-.146-.005-.282.024-.282-.169-.037-1.978 0-2.044 0-2.053.014-.131.15-.094.197-.117.108-.057.066-.104.019-.132zm-4.501.267a.493.493 0 0 1 .581.432c.02.112.066.693-.572.628l-.098-.122c-.005-.23 0-.661 0-.872zm9.578.492.286.741h-.576c.094-.244.187-.483.29-.74zm-9.958 3.49c.174.004.361.037.408.051.708.207.868 1.144.586 1.824-.215.52-.66.399-1.2.342-.113-.01-.127-.028-.127-.14v-1.95c-.004-.104.16-.132.333-.127m10.202.745c-.426.047-.06.024-1.744.028-.178 0-.169.16.028.16l.005.004c.178 0 .295-.23.183 2.406-.01.145-.14.112-.192.121-.113.02-.136.136-.01.16.033.004-.089.01 1.65.014.212 0 .216-.094.216-.113q.027-.224.061-.454c.014-.113-.112-.136-.15-.029-.094.268.01.291-.769.268-.22-.005-.183-.188-.183-.765 0-.398-.117-.323.605-.28.174.009.117.154.174.248l.122-.014.051-.535c.01-.164-.122-.089-.14-.084-.254.089-.591.06-.737.07l-.075-.07v-.755l.075-.07c.633.028.718-.01.737.239.009.13.15.108.159.009.014-.16.033-.319.047-.478zm-3.061.028h-1.083c-.113 0-.132.132-.019.15.136.019.253 0 .267.174.01.15.028 1.495-.019 2.24-.009.15-.145.109-.239.132-.075.019-.07.145.02.16l1.79.009c.056 0 .258.056.244-.581 0-.01-.042-.155-.127-.052-.178.22.15.352-.881.295-.108-.004-.155-.065-.16-.168-.028-.582-.018-1.852-.018-1.946 0-.277.112-.24.234-.258.164-.014.145-.155-.01-.155zm-3.596.46c.014.093-.047 1.753-.052 1.847-.019.394 1.196.59 1.182.122 0-.024-.052-1.735-.052-1.833l.019-.005c.576.445.483 1.467.253 1.828a.844.844 0 0 1-1.05.333c-.98-.403-.961-1.94-.3-2.292m1.28 4.402c9.039.005 8.504-.005 8.51.014-.723.417-8.459 4.815-9.256 5.275h-.159c-.825-.479-9.063-5.21-9.185-5.284h8.575c.094 0 .094 0 .094.094a68 68 0 0 1-.07 2.25c-.01.174.023.347.094.506.201.483.393.97.59 1.454.047.108.061.084.094.004.652-1.533.605-1.425.633-1.51a1.3 1.3 0 0 0 .06-.36c0-.277-.055-2.358-.055-2.363z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/crowdin.svg����������������������������������0000664�0000000�0000000�00000003111�14753064456�0025264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.119 17.793a2.62 2.62 0 0 1-1.667-.562c-.546-.436-1.004-1.09-1.018-1.858-.008-.388.414-.388.414-.388l1.018-.008c.332.008.43.47.445.586.128 1.04.717 1.495 1.168 1.702.273.123.204.513-.362.528zm-5.695-5.287L8.5 12.252c-.867-.214-.844-.982-.807-1.247a5.1 5.1 0 0 1 .814-2.125c.545-.804 1.303-1.508 2.29-2.073 1.856-1.074 4.45-1.673 7.31-1.673 2.09 0 4.256.27 4.29.27.197.025.328.213.333.437a.377.377 0 0 1-.355.393l-.92-.01c-2.902 0-4.968.394-6.506 1.248-1.527.837-2.57 2.117-3.287 4.012-.076.163-.335 1.12-1.24 1.022zm2.533 7.823c-1.44 0-2.797-.622-3.825-1.746-.87-.96-1.397-1.931-1.493-3.164-.06-.813.3-1.094.788-1.044l1.988.218c.45.092.75.34.825.854.397 2.736 2.122 3.814 3.15 4.046.18.042.292.157.283.365a.41.41 0 0 1-.322.398c-.458.074-.936.073-1.394.073m-4.101 2.418a14 14 0 0 1-2.307-.214c-1.202-.214-2.208-.582-3.072-1.13C1.41 20.095.163 17.786.014 15.048c-.037-.65-.11-1.89 1.427-1.797.638.033 1.653.343 2.368.548.887.247 1.314.933 1.314 1.608 0 3.858 3.494 6.408 5.02 6.408.654 0 .414.701.127.779-.502.136-1.15.153-1.413.153zM3.525 11.419c-.605-.109-1.194-.358-1.768-.5C-.018 10.479.284 8.688.45 8.196c1.617-4.757 6.746-6.35 10.887-6.773 3.898-.4 7.978-.092 11.778.967.31.083 1.269.327.718.891-.35.358-1.7-.016-2.073-.041-2.23-.167-4.434-.192-6.656.15-2.349.357-4.768 1.099-6.71 2.665-.938.758-1.76 1.723-2.313 2.866-.144.3-.256.6-.354.9-.11.327-.47 1.91-2.215 1.6zm9.94.917c.332-1.488 1.81-3.848 6.385-3.686 1.05.033.57.749.052.731-2.586-.09-3.815 1.578-4.457 3.27-.219.546-.68.626-1.271.53-.415-.074-.866-.123-.71-.846Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/crowdsource.svg������������������������������0000664�0000000�0000000�00000001724�14753064456�0026166�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1.772a2.045 2.045 0 1 0 0 4.09 2.045 2.045 0 0 0 0-4.09M7.364 5.453a2.047 2.047 0 0 0 0 4.092 2.045 2.045 0 0 0 0-4.092m9.273 0a2.047 2.047 0 0 0 0 4.092 2.045 2.045 0 0 0 0-4.092M1.347 7.637a1.32 1.32 0 0 0-.93.36 1.325 1.325 0 0 0-.145 1.769c.66.864 1.993 2.604 2.652 3.465a5.4 5.4 0 0 1 1.112 3.283c0 1.519.71 2.966 1.949 3.841.767.543 1.614.982 2.515 1.3v-3.933c0-.592.191-1.17.472-1.652a4.15 4.15 0 0 0-1.198-2.496L2.342 8.106c-.261-.29-.625-.469-.996-.47m21.31 0a1.32 1.32 0 0 0-.917.39l-4.545 4.575-.968.974a4.16 4.16 0 0 0-1.199 2.494c.265.455.454.993.472 1.549v4.039a10.3 10.3 0 0 0 2.516-1.303c1.238-.875 1.949-2.323 1.949-3.842a5.4 5.4 0 0 1 1.111-3.285l2.652-3.462a1.327 1.327 0 0 0-.144-1.77 1.31 1.31 0 0 0-.928-.36M12 9.135a2.047 2.047 0 0 0 0 4.092 2.045 2.045 0 0 0 0-4.092m.002 5.728c-1.658 0-3.002 1.28-3.002 2.86v4.091a11.1 11.1 0 0 0 6 0v-4.18c-.049-1.538-1.371-2.77-2.998-2.77"/></svg>��������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/crunchbase.svg�������������������������������0000664�0000000�0000000�00000000757�14753064456�0025751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.6 0H2.4A2.41 2.41 0 0 0 0 2.4v19.2A2.41 2.41 0 0 0 2.4 24h19.2a2.41 2.41 0 0 0 2.4-2.4V2.4A2.41 2.41 0 0 0 21.6 0M7.045 14.465A2.11 2.11 0 0 0 9.84 13.42h1.66a3.69 3.69 0 1 1 0-1.75H9.84a2.11 2.11 0 1 0-2.795 2.795m11.345.845a3.6 3.6 0 0 1-1.06.63 3.68 3.68 0 0 1-3.39-.38v.38h-1.51V5.37h1.5v4.11a3.74 3.74 0 0 1 1.8-.63H16a3.67 3.67 0 0 1 2.39 6.46m-.223-2.766a2.104 2.104 0 1 1-4.207 0 2.104 2.104 0 0 1 4.207 0"/></svg>�����������������mkdocs-material-9.6.4/material/templates/.icons/simple/crunchyroll.svg������������������������������0000664�0000000�0000000�00000000517�14753064456�0026172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.933 13.467a10.55 10.55 0 1 1 21.067-.8V12c0-6.627-5.373-12-12-12S0 5.373 0 12s5.373 12 12 12h.8a10.617 10.617 0 0 1-9.867-10.533M19.2 14a3.85 3.85 0 0 1-1.333-7.467A7.9 7.9 0 0 0 14 5.6a8.4 8.4 0 1 0 8.4 8.4 6.5 6.5 0 0 0-.133-1.6A3.42 3.42 0 0 1 19.2 14"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cryengine.svg��������������������������������0000664�0000000�0000000�00000004143�14753064456�0025610�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.714 14.874c.296 0 .58.101.807.287l.014.013-.149.238a.996.996 0 1 0 .312.888l.002-.014h-.852l.173-.277h.966v.139c0 .702-.571 1.273-1.272 1.273a1.274 1.274 0 0 1-.001-2.547m-13.442 0c.347 0 .68.143.918.391l.012.013-.157.242a.996.996 0 1 0-.026 1.281l.01-.012.211.18A1.273 1.273 0 0 1 0 16.145c0-.7.571-1.272 1.272-1.272m2.44.014c.639 0 .894.3.894.734 0 .363-.184.619-.621.706l-.014.003.702 1.075h-.336l-.663-1.058h-.478v1.058h-.273v-2.517zm5.88 2.274v.244H7.87v-.244zm-4.018-2.273.691 1.149a.5.5 0 0 1 .045.115c.01-.03.019-.067.043-.11l.006-.01.688-1.145h.297L5.78 17.406h-.271l.647-1.05-.882-1.468zm17.522 2.273v.244h-1.722v-.244zm-4.561-2.273 1.512 2.085c-.013-.06-.02-.081-.021-.127v-1.958h.272v2.518h-.258l-1.515-2.092c.01.033.023.078.024.142v1.95h-.272v-2.518zm-1.361 0v2.518h-.272v-2.518zm-6.395 0 1.512 2.085c-.013-.06-.02-.081-.021-.127v-1.958h.272v2.518h-.258l-1.515-2.092c.01.033.023.078.024.142v1.95h-.272v-2.518zm12.317 1.065v.247h-1.722v-.248zm-13.504 0v.247H7.87v-.248zm-5.876-.822h-.52v.968h.517c.384 0 .615-.113.615-.479-.001-.367-.232-.489-.612-.489m19.991-.566a.292.292 0 1 1 0 .583.292.292 0 1 1 0-.583m-.611.322v.245h-1.722v-.244zm-13.504 0v.245h-1.47l.151-.244zm14.115-.273a.242.242 0 1 0 0 .484.242.242 0 1 0 0-.485m.002.09c.075 0 .108.038.108.091q.001.061-.059.084l-.006.002.08.123h-.058l-.067-.104q-.003-.004-.004-.01v-.004h-.058v.118h-.048v-.3zm.001.046h-.065v.091h.064c.041 0 .06-.01.06-.045q0-.048-.059-.046M10.909 6.598l.088-.007c-2.36.55-3.761 2.332-3.761 2.564v.001c0 .001.001-.009.002.036v.006h.001c.048.253.745 1.475 3.441 2.201-3.09-.245-4.494-1.748-4.563-2.188l-.001-.014h-.001c0-.046-.001-.037-.001-.034l.001-.013c.037-.452 1.928-2.312 4.794-2.552l.088-.007zm.981-.019c3.209.167 5.076 2.075 5.093 2.61v-.002l-.001.033v.006h-.002c-.025.268-1.045 1.358-2.571 1.86-1.865.613-4.866.39-4.866-1.948a1.994 1.994 0 0 1 3.989.005c0 .535-.231 1.053-.581 1.42.327-.007 1.517-.094 2.638-1.018.124-.12.203-.222.236-.284a.14.14 0 0 0 .02-.072c.001-.24-1.288-2.084-3.955-2.61m-.357 1.427a1.13 1.13 0 1 0 0 2.262 1.13 1.13 0 0 0 0-2.262m5.449 1.182"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cryptomator.svg������������������������������0000664�0000000�0000000�00000006150�14753064456�0026210�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.98 7.64c.41-.165 1.463-.51 3.016-.51.86 0 1.745.105 2.643.314-.212-2.883-2.434-5.69-5.668-5.69-3.477 0-5.474 2.799-5.669 5.677.894-.206 1.775-.31 2.63-.31 1.57 0 2.632.351 3.047.518m1.516-1.186a.25.25 0 0 1-.25-.25.25.25 0 0 1 .25-.25c.137 0 .25.113.25.25a.25.25 0 0 1-.249.25zM14 4.073c.72 0 1.313.592 1.313 1.313v.001h-2.626v-.001c0-.721.592-1.313 1.313-1.313m-1.486 1.88c.137 0 .25.113.25.25s-.113.25-.25.25a.25.25 0 0 1-.25-.25.25.25 0 0 1 .25-.25m-1.962.5a.25.25 0 0 1-.25-.25c0-.137.113-.25.25-.25a.25.25 0 0 1 .25.25.25.25 0 0 1-.25.25m.981-.5c.137 0 .25.113.25.25s-.113.25-.25.25a.25.25 0 0 1-.251-.25c0-.137.113-.25.251-.25M9.94 4.073c.721 0 1.313.592 1.313 1.313v.001H8.626v-.001c0-.721.593-1.313 1.313-1.313zM23.804 15.17a1.8 1.8 0 0 0-1.595-.976 1.07 1.07 0 0 0-.064-.821l-.448-.875a1.07 1.07 0 0 0-.79-.57l-.416-.817c.205-.279.316-.617.316-.963a1.632 1.632 0 0 0-1.847-1.61c.037.507.045 1.333-.174 2.121-.065.247-.061.507.011.752q.043.146.087.336.206.038.415.022l.392.766c-.167.31-.171.683-.011.996l.447.874c.13.254.356.446.628.533-.22.305-.339.672-.339 1.049a1.8 1.8 0 0 0 1.591 1.781l.05.003a.435.435 0 0 0 .429-.433.435.435 0 0 0-.382-.43.93.93 0 0 1-.823-.921.93.93 0 0 1 .927-.927c.508 0 .927.418.927.927 0 .157-.04.311-.116.448a.435.435 0 0 0 .373.654.43.43 0 0 0 .385-.236 1.8 1.8 0 0 0 .028-1.683m-19.931-.765.447-.874a1.07 1.07 0 0 0-.01-.997l.39-.765q.179.014.356-.013.04-.185.093-.367c.073-.244.078-.504.014-.751-.215-.781-.206-1.6-.168-2.107a1.634 1.634 0 0 0-1.801 1.616c0 .347.111.685.316.964l-.418.817a1.07 1.07 0 0 0-.79.57l-.447.875a1.07 1.07 0 0 0-.012.95l-.051-.001c-.984 0-1.793.81-1.793 1.793 0 .304.077.603.224.868a.434.434 0 0 0 .758-.418.9.9 0 0 1-.116-.448c0-.509.419-.927.927-.927a.93.93 0 0 1 .927.927.93.93 0 0 1-.824.921.435.435 0 0 0-.382.43c0 .237.194.432.43.433l.05-.002a1.8 1.8 0 0 0 1.593-1.783c0-.423-.15-.833-.423-1.157.307-.071.567-.274.71-.554m15.122 2.278a1.1 1.1 0 0 0-.513-.127h-.877a5.9 5.9 0 0 0 1.003-3.318 6 6 0 0 0-.227-1.707 1.8 1.8 0 0 1-.012-.988c.319-1.15.11-2.421.11-2.421-4.01-1.251-6.502-.01-6.502-.01s-2.487-1.249-6.498-.01c0 0-.214 1.27.102 2.422a1.8 1.8 0 0 1-.015.987c-.111.38-.232.964-.233 1.707a5.9 5.9 0 0 0 1.005 3.338h-.895c-.179 0-.355.044-.513.127-.429.22-.778.709-.981 1.38a4.8 4.8 0 0 0-.14 2.035c.183 1.285.84 2.148 1.635 2.148h2.241v-.002a.45.45 0 0 0 .28-.127l1.077-.95c.22-.197.384-.693.437-1.327a5 5 0 0 0 .016-.562 12 12 0 0 0 2.465 1.002s1.137-.282 2.471-.997q-.008.28.016.557c.053.634.217 1.13.437 1.327l1.077.949a.45.45 0 0 0 .28.127v.001h2.241c.794 0 1.452-.863 1.636-2.148.1-.68.052-1.374-.14-2.035-.203-.67-.553-1.159-.983-1.378M8.755 20.845c-.011.005-.562.495-.875.772a.24.24 0 0 1-.161.062.24.24 0 0 1-.215-.132c-.455-.892-.504-2.705-.182-3.823.546.526 1.15.958 1.736 1.307.033.66-.094 1.692-.303 1.814m4.178-4.573-.968.275-.968-.278.7-2.934a1.25 1.25 0 0 1-.972-1.214c0-.683.563-1.246 1.246-1.246s1.245.563 1.245 1.246c0 .58-.406 1.086-.971 1.214zm3.496 5.274a.243.243 0 0 1-.376.071c-.313-.277-.864-.767-.875-.772-.208-.122-.336-1.15-.303-1.81a9.6 9.6 0 0 0 1.738-1.303c.32 1.118.27 2.926-.184 3.814"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cryptpad.svg���������������������������������0000664�0000000�0000000�00000001206�14753064456�0025450�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.355 0 .008.717.153 12.23c.045 3.668 1.528 6.09 3.425 7.692s4.168 2.444 5.844 3.215l.317.146.308-.164c1.492-.788 3.779-1.625 5.72-3.209 1.943-1.584 3.515-3.997 3.515-7.69V5.97L15.22 0Zm9.729 1.416h1.604v6.016h6.542v3.879H15.4c-.055 1.091-.59 1.926-1.256 2.484l.938 4.97h-2.994v3.655l-.018.008c-1.691-.764-3.651-1.55-5.215-2.87-1.653-1.396-2.884-3.32-2.925-6.628l-.02-1.62h4.674q-.005-.08-.006-.164a3.424 3.424 0 0 1 3.41-3.41l.096.002zm3.02.408 4.513 4.194h-4.513zm-3.112 6.91a2.412 2.412 0 0 0-1.043 4.586l-.844 4.448h3.772l-.842-4.448a2.412 2.412 0 0 0-1.043-4.586"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/crystal.svg����������������������������������0000664�0000000�0000000�00000000703�14753064456�0025304�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.964 15.266-8.687 8.669c-.034.035-.086.052-.121.035L3.29 20.79c-.052-.017-.087-.052-.087-.086L.007 8.856c-.018-.053 0-.087.035-.122L8.728.065c.035-.035.087-.052.121-.035l11.866 3.18c.052.017.087.052.087.086l3.18 11.848c.034.053.016.087-.018.122m-11.64-9.433L.667 8.943c-.017 0-.035.034-.017.052l8.53 8.512c.017.017.052.017.052-.017l3.127-11.64c.017 0-.018-.035-.035-.017"/></svg>�������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/csdn.svg�������������������������������������0000664�0000000�0000000�00000004233�14753064456�0024554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.693 13.638c-.497.568-1.363.63-1.712.63-.648 0-1.144-.164-1.474-.488-.313-.307-.478-.76-.489-1.346-.025-1.358.744-2.762 2.074-2.762.635 0 1.124.455 1.311.644a.34.34 0 0 0 .282.099.38.38 0 0 0 .241-.159c.068-.087.135-.237.138-.401s-.057-.344-.243-.49a2.64 2.64 0 0 0-1.668-.591c-.819 0-1.627.376-2.218 1.033-.621.691-.953 1.63-.935 2.646.015.815.282 1.5.773 1.982.528.518 1.3.791 2.235.791 1.097 0 1.776-.325 2.154-.597a.58.58 0 0 0 .24-.456.7.7 0 0 0-.208-.497c-.23-.248-.448-.101-.503-.037Zm4.97-2.15a8 8 0 0 0-.698-.248q-.237-.072-.45-.131c-.922-.26-1.027-.5-1.017-.68.022-.363.515-.853 1.352-.792.607.045 1.015.509 1.205.781.149.214.371.135.434.095a.6.6 0 0 0 .309-.514.63.63 0 0 0-.209-.488 2.654 2.654 0 0 0-3.347-.273c-.456.323-.744.772-.77 1.202-.064 1.061 1.015 1.366 1.803 1.588.214.061.429.127.667.202 1.14.357 1.173.717 1.092 1.267-.082.556-.696.834-1.685.761-1.029-.076-1.464-.61-1.612-.901-.05-.098-.205-.248-.413-.156-.514.229-.473.731-.26.993.339.416 1.15 1.035 2.667 1.035 1.734 0 2.255-.875 2.378-1.64.092-.572-.022-1.028-.348-1.396-.236-.267-.592-.495-1.101-.706Zm6.777-2.165c-.598-.431-1.393-.61-2.36-.532-.712.058-1.274.243-1.335.263l-.006.002a.44.44 0 0 0-.297.379l-.47 5.201a.34.34 0 0 0 .247.35l.072.02.066.018.086.021a8 8 0 0 0 1.64.183c.972 0 1.765-.23 2.36-.684.764-.583 1.141-1.5 1.118-2.725-.021-1.135-.398-1.974-1.121-2.495Zm-.662 4.461c-.836.639-2.09.562-2.677.481a.13.13 0 0 1-.109-.137l.397-4.248a.11.11 0 0 1 .086-.1c.999-.241 1.777-.168 2.312.218.189.137.348.331.471.568.176.339.277.765.286 1.234.017.916-.24 1.583-.765 1.984Zm8.189-3.374a1.9 1.9 0 0 0-.432-.919c-.399-.465-1.029-.689-1.848-.689-.734 0-1.372.228-1.947.799.007-.086.019-.159.018-.223s-.017-.116-.066-.163c-.048-.045-.077-.067-.127-.077s-.122-.008-.256-.006a.587.587 0 0 0-.589.54s-.325 3.874-.428 5.165a.3.3 0 0 0 .073.228.36.36 0 0 0 .26.131h.387a.224.224 0 0 0 .226-.205l.273-2.929.014-.147a2 2 0 0 1 .082-.412q.021-.068.047-.14c.245-.694.803-1.72 1.971-1.694.84.018 1.449.455 1.385 1.114-.101 1.034-.266 3.1-.358 4.14-.019.209.182.273.252.273h.304a.44.44 0 0 0 .444-.404s.185-2.127.294-3.352l.048-.532a2 2 0 0 0-.026-.5Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/css.svg��������������������������������������0000664�0000000�0000000�00000002652�14753064456�0024420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v20.16A3.84 3.84 0 0 0 3.84 24h16.32A3.84 3.84 0 0 0 24 20.16V3.84A3.84 3.84 0 0 0 20.16 0Zm14.256 13.08c1.56 0 2.28 1.08 2.304 2.64h-1.608c.024-.288-.048-.6-.144-.84-.096-.192-.288-.264-.552-.264-.456 0-.696.264-.696.84-.024.576.288.888.768 1.08.72.288 1.608.744 1.92 1.296q.432.648.432 1.656c0 1.608-.912 2.592-2.496 2.592-1.656 0-2.4-1.032-2.424-2.688h1.68c0 .792.264 1.176.792 1.176.264 0 .456-.072.552-.24.192-.312.24-1.176-.048-1.512-.312-.408-.912-.6-1.32-.816q-.828-.396-1.224-.936c-.24-.36-.36-.888-.36-1.536 0-1.44.936-2.472 2.424-2.448m5.4 0c1.584 0 2.304 1.08 2.328 2.64h-1.608c0-.288-.048-.6-.168-.84-.096-.192-.264-.264-.528-.264-.48 0-.72.264-.72.84s.288.888.792 1.08c.696.288 1.608.744 1.92 1.296.264.432.408.984.408 1.656.024 1.608-.888 2.592-2.472 2.592-1.68 0-2.424-1.056-2.448-2.688h1.68c0 .744.264 1.176.792 1.176.264 0 .456-.072.552-.24.216-.312.264-1.176-.048-1.512-.288-.408-.888-.6-1.32-.816-.552-.264-.96-.576-1.2-.936s-.36-.888-.36-1.536c-.024-1.44.912-2.472 2.4-2.448m-11.031.018c.711-.006 1.419.198 1.839.63.432.432.672 1.128.648 1.992H9.336c.024-.456-.096-.792-.432-.96-.312-.144-.768-.048-.888.24-.12.264-.192.576-.168.864v3.504c0 .744.264 1.128.768 1.128a.65.65 0 0 0 .552-.264c.168-.24.192-.552.168-.84h1.776c.096 1.632-.984 2.712-2.568 2.688-1.536 0-2.496-.864-2.472-2.472v-4.032c0-.816.24-1.44.696-1.848.432-.408 1.146-.624 1.857-.63"/></svg>��������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/css3.svg�������������������������������������0000664�0000000�0000000�00000000430�14753064456�0024473�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.5 0h21l-1.91 21.563L11.977 24l-8.565-2.438zm17.09 4.413L5.41 4.41l.213 2.622 10.125.002-.255 2.716h-6.64l.24 2.573h6.182l-.366 3.523-2.91.804-2.956-.81-.188-2.11h-2.61l.29 3.855L12 19.288l5.373-1.53z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cssdesignawards.svg��������������������������0000664�0000000�0000000�00000000355�14753064456�0027012�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.46.93 0 8.31l3.73 3.73 3.74 3.65 3.73 3.65 3.74-3.65-7.47-7.38 7.47-7.4zm5.33 3.73L9.12 8.31l7.39 7.38-7.46 7.4h7.46l3.76-3.66L24 15.7l-3.73-3.65-3.74-3.73z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cssmodules.svg�������������������������������0000664�0000000�0000000�00000005403�14753064456�0026006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.705 2.147v19.706H0V2.147zM.141 21.712h19.423V2.288H.141zm2.561-10.444q.642 0 .996.338t.393.768h-.446a.93.93 0 0 0-.303-.517q-.225-.191-.635-.191-.5 0-.808.352-.306.349-.306 1.074 0 .594.276.964.279.368.828.368.507 0 .771-.389.14-.204.21-.538h.446q-.06.534-.396.895-.402.434-1.086.434-.588 0-.989-.356-.526-.472-.527-1.456 0-.748.396-1.226.428-.52 1.18-.52m2.28 2.38a.9.9 0 0 0 .135.467q.228.336.803.336.257 0 .47-.073.409-.143.409-.511 0-.276-.173-.393-.175-.116-.547-.2l-.458-.104q-.448-.101-.635-.223-.322-.211-.322-.633 0-.455.315-.747t.893-.292q.531 0 .902.257.372.255.372.82h-.43a.85.85 0 0 0-.147-.417q-.21-.265-.71-.265-.406 0-.583.17a.53.53 0 0 0-.177.396q0 .249.207.364.135.073.614.184l.474.108q.343.078.53.214.321.237.321.687 0 .562-.41.803a1.8 1.8 0 0 1-.947.242q-.63 0-.987-.322-.356-.32-.35-.867h.43Zm3.137 0a.9.9 0 0 0 .136.467q.228.336.803.336.257 0 .469-.073.41-.143.41-.511 0-.276-.173-.393-.176-.116-.548-.2l-.457-.104q-.45-.101-.635-.223-.322-.211-.322-.633 0-.455.315-.747.316-.292.892-.292.532 0 .902.257.373.255.373.82h-.43a.85.85 0 0 0-.148-.417q-.21-.265-.71-.265-.405 0-.582.17a.53.53 0 0 0-.177.396q0 .249.207.364.135.073.614.184l.474.108q.342.078.529.214.322.237.322.687 0 .562-.41.803a1.8 1.8 0 0 1-.947.242q-.63 0-.987-.322-.357-.32-.35-.867h.43Zm-6.197 3.6.97 2.857.965-2.857h.648v3.38h-.434v-1.995q0-.104.004-.343.005-.24.005-.513l-.964 2.85h-.453l-.97-2.85v.104q-.001.125.004.38.006.252.007.372v1.994h-.437v-3.379zm4.743-.091q.895 0 1.325.575.336.448.336 1.147 0 .757-.384 1.259-.451.588-1.286.589-.78 0-1.226-.516-.398-.496-.398-1.256 0-.685.34-1.173.438-.625 1.293-.625m.046 3.16q.605 0 .874-.432.272-.435.272-.999 0-.596-.313-.959-.31-.363-.851-.363-.525 0-.856.36t-.331 1.061q0 .562.283.948.285.384.922.384m3.455-.08q.233 0 .382-.049a.84.84 0 0 0 .437-.345 1.4 1.4 0 0 0 .196-.524 2 2 0 0 0 .034-.355q0-.627-.25-.975-.25-.347-.803-.347H9.35v2.595zm-1.276-2.99h1.368q.697 0 1.081.495.343.446.343 1.143 0 .539-.202.973-.357.768-1.226.769H8.89zm3.88 0v2.089q0 .368.138.612.205.368.69.368.582 0 .791-.398.114-.216.113-.582v-2.089h.465v1.898q0 .622-.168.96-.309.61-1.164.61c-.855 0-.958-.203-1.162-.61q-.168-.338-.168-.96v-1.898zm3.357 0v2.977h1.711v.402h-2.17v-3.379zm2.208 0h2.463v.414h-2.017v1.026h1.865v.391h-1.865v1.146h2.052v.402h-2.498zm3.402 2.29q.016.286.135.466.228.336.803.336.258 0 .47-.074.408-.143.409-.51 0-.276-.173-.394-.174-.114-.547-.2l-.458-.103q-.448-.102-.635-.223-.322-.211-.322-.633 0-.456.315-.748.315-.291.893-.292.531 0 .901.258.373.255.373.819h-.43a.85.85 0 0 0-.147-.416q-.21-.265-.711-.265-.405 0-.582.17a.53.53 0 0 0-.177.396q0 .248.207.363.135.074.614.184l.474.108q.343.08.529.214.322.238.322.688 0 .561-.41.803a1.8 1.8 0 0 1-.947.241q-.63 0-.987-.322-.356-.32-.35-.867h.43Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/csswizardry.svg������������������������������0000664�0000000�0000000�00000002333�14753064456�0026210�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 16.5V1.127C0 .502.506 0 1.127 0h21.748C23.498 0 24 .505 24 1.126V15.95q-1.014-.62-2.372-.62-1.887 0-2.862.886-.974.886-.974 2.226 0 1.468 1.008 2.158.596.413 2.151.765l1.056.237q.926.202 1.36.466.432.27.432.765 0 .846-.872 1.157l-.024.008H20.68a1.53 1.53 0 0 1-.688-.462q-.278-.337-.372-1.021h-1.99q0 .839.325 1.483h-1.681q.294-.595.294-1.32 0-1.334-.892-2.037-.576-.453-1.705-.724l-1.719-.412q-.995-.237-1.299-.413a.86.86 0 0 1-.473-.799q0-.581.48-.906.481-.325 1.286-.325.723 0 1.21.25.732.38.785 1.28h2.003q-.054-1.59-1.167-2.426t-2.69-.836q-1.887 0-2.861.886t-.975 2.226q0 1.468 1.008 2.158.595.413 2.152.765l1.055.237q.927.202 1.36.466.433.27.433.765 0 .846-.873 1.157l-.025.008h-2.223a1.53 1.53 0 0 1-.688-.462q-.278-.337-.372-1.021h-1.99q0 .839.324 1.483H6.611a4.75 4.75 0 0 0 .667-1.801H5.215q-.21.771-.528 1.157-.391.489-1.026.644H2.42q-.675-.173-1.165-.762-.695-.835-.695-2.512t.656-2.595 1.793-.917q1.116 0 1.684.65.318.365.52 1.082H7.3q-.048-.933-.69-1.86-1.164-1.65-3.68-1.65-1.752 0-2.929 1.067zm24 3.654v-1.562h-.518q-.054-.9-.785-1.279-.487-.25-1.21-.25-.806 0-1.286.325-.48.324-.48.906 0 .535.473.799.304.176 1.299.413l1.718.412q.436.105.789.236"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cts.svg��������������������������������������0000664�0000000�0000000�00000002627�14753064456�0024423�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.489 15.344c.05 0 .09.04.09.09v3.776c0 .05-.04.09-.09.09H16.44a.09.09 0 0 1-.075-.04.09.09 0 0 1-.007-.086l1.603-3.776a.09.09 0 0 1 .083-.055h1.444zm.97-7.892c1.083 0 2.183.358 3.272 1.065a.09.09 0 0 1 .03.12l-.86 1.537a.09.09 0 0 1-.13.033c-.803-.522-1.615-.786-2.412-.786-.6 0-1.312.13-1.312.746 0 .188.074.454.427.647.27.147.704.314 1.326.51.61.19 1.047.338 1.302.439s.564.26.918.472c.66.402.98 1.053.98 1.994 0 .944-.337 1.68-1.03 2.25-.604.494-1.36.776-2.253.838a.09.09 0 0 1-.097-.09v-1.762a.09.09 0 0 1 .078-.09q.33-.046.55-.195a.7.7 0 0 0 .333-.6q0-.374-.45-.68c-.286-.195-.703-.38-1.24-.548a14 14 0 0 1-1.22-.43 7 7 0 0 1-.956-.519c-.72-.448-1.07-1.094-1.07-1.975 0-.884.346-1.585 1.058-2.143.707-.553 1.633-.833 2.755-.833zm-15.786 0a.09.09 0 0 1 .096.09v2.106a.09.09 0 0 1-.076.09 2.66 2.66 0 0 0-1.38.668c-.52.471-.785 1.134-.785 1.971s.264 1.498.786 1.963c.5.458 1.155.708 1.832.7.87 0 1.666-.416 2.368-1.238a.1.1 0 0 1 .068-.032.1.1 0 0 1 .068.03l1.393 1.566a.09.09 0 0 1-.004.124c-1.204 1.212-2.52 1.826-3.91 1.826-1.43 0-2.658-.459-3.644-1.362C.5 15.05 0 13.854 0 12.395S.506 9.733 1.503 8.82a5.1 5.1 0 0 1 3.17-1.367ZM16.831 4.7c.05 0 .09.04.09.09v2.13c0 .05-.04.09-.09.09h-3.417a.06.06 0 0 0-.06.06v8.545c0 .05-.04.09-.09.09h-2.51a.09.09 0 0 1-.09-.09V7.072a.06.06 0 0 0-.06-.06H7.186a.09.09 0 0 1-.09-.09V4.79a.09.09 0 0 1 .09-.09z"/></svg>���������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cucumber.svg���������������������������������0000664�0000000�0000000�00000002773�14753064456�0025441�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.16 0C7.523-.03 3.223 3.007 1.886 7.715.241 13.51 3.746 19.51 9.601 20.925V24l.626-.094c6.715-1.008 11.876-6.254 12.271-12.472.258-4.041-1.795-8.064-5.108-10.01a9.6 9.6 0 0 0-1.999-.895A10.6 10.6 0 0 0 12.16 0m-.084 1.087h.013c1.011 0 2.015.161 2.976.477a8.5 8.5 0 0 1 1.769.792c2.97 1.744 4.809 5.363 4.576 9.008-.35 5.52-4.816 10.208-10.72 11.36V20.04l-.44-.085a9.518 9.518 0 0 1 1.826-18.868m2.042 4.306a.96.96 0 0 0-.843.333 4 4 0 0 0-.366.632c-.321.743-.436 1.803.043 2.385l-.001.003a3.08 3.08 0 0 0 1.918-1.641 1.7 1.7 0 0 0 .165-.698.996.996 0 0 0-.916-1.014m-4.061.092a1.014 1.014 0 0 0-.926.982c.01.241.07.478.18.694a3.28 3.28 0 0 0 2.062 1.6c.413-.593.216-1.65-.118-2.386a2.2 2.2 0 0 0-.377-.574.93.93 0 0 0-.821-.316M7.628 8c-.858.035-1.2 1.126-.516 1.645q.298.22.632.38a3 3 0 0 0 2.53-.07A3.17 3.17 0 0 0 8.54 8.167 2 2 0 0 0 7.628 8m7.762 3.216a3.3 3.3 0 0 0-1.228.296 3.09 3.09 0 0 0 1.718 1.755c.236.105.49.161.747.166a.933.933 0 0 0 .681-1.663c-.659-.46-1.105-.575-1.918-.554m-5.85.03c-.297-.012-.635.01-.983.026-.559 0-1.228.278-1.494.565-.695.61-.188 1.751.73 1.644a1.7 1.7 0 0 0 .747-.167c.744-.322 1.628-1.202 1.734-1.89-.182-.12-.438-.165-.735-.178zm2.086 1.214c-.863.32-1.56.975-1.93 1.817a1.6 1.6 0 0 0-.167.681c-.02.908 1.091 1.361 1.711.698q.211-.299.362-.632c.322-.69.449-1.928.024-2.564m1.497.173a2.8 2.8 0 0 0-.116 2.442c.089.211.21.408.362.58.577.627 1.81.186 1.763-.63a1.6 1.6 0 0 0-.167-.697 3.04 3.04 0 0 0-1.842-1.695"/></svg>�����mkdocs-material-9.6.4/material/templates/.icons/simple/cultura.svg����������������������������������0000664�0000000�0000000�00000004663�14753064456�0025313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.591 8.675C1.107 8.675 0 9.796 0 11.258c0 1.484 1.065 2.627 2.605 2.627 1.285 0 1.981-.817 1.981-.817l-.483-.66s-.59.639-1.463.639c-1.05 0-1.696-.845-1.697-1.803 0-.937.625-1.732 1.69-1.732.802 0 1.378.533 1.378.533l.44-.682s-.632-.69-1.86-.688m6.778.084h-.895v3.911c0 1.037.618 1.165 1.115 1.165.149 0 .284-.021.284-.021v-.788s-.064.007-.135.007c-.235 0-.37-.1-.37-.497zm.877.433v.987h-.49v.717h.47v1.577c0 1.213 1 1.362 1.505 1.362.17 0 .276-.021.276-.021v-.788s-.064.014-.163.014c-.249 0-.716-.085-.716-.681v-1.463h1.118v1.612c0 .987.484 1.377 1.257 1.377.618 0 1.079-.376 1.257-.753h.013s-.013.114-.013.256v.411h.866v-3.62h-.902v1.661c0 .646-.362 1.221-1.015 1.221-.448 0-.56-.298-.56-.738V10.18h-2.022v-.987zm9.592.902c-.86 0-1.42.448-1.42.448l.34.645s.476-.347.994-.348c.398 0 .696.164.696.64v.049h-.12c-.59 0-2.145.078-2.144 1.228 0 .724.582 1.129 1.228 1.129.823 0 1.108-.639 1.1-.64h.015s-.015.114-.015.257v.298h.831v-2.264c0-.916-.554-1.442-1.505-1.442m-1.715.035c-.553 0-.987.412-1.15.93h-.014a2 2 0 0 0 .014-.255v-.625h-.866V13.8h.902v-1.434c0-.214.02-.413.077-.59.171-.539.604-.759.987-.759.12 0 .214.014.214.014v-.887s-.079-.015-.164-.015m-13.428.05v2.329c0 .987.482 1.377 1.257 1.377.618 0 1.08-.376 1.256-.753h.014s-.014.114-.014.256v.412h.866v-3.62h-.901v1.66c0 .646-.363 1.222-1.016 1.222-.448 0-.56-.299-.56-.739V10.18zm18.316 1.902c-.13 0-.277.015-.473.05a.16.16 0 0 0-.104.064.3.3 0 0 0-.046.102.2.2 0 0 0-.007.049.12.12 0 0 0 .04.092.12.12 0 0 0 .08.027l.048-.003s.065-.007.174-.013l.001.018q.006.064.007.177c0 .367-.081 1.078-.627 1.607-.443.43-.91.642-1.499.675a3 3 0 0 1-1.714-.431c-.575-.349-.948-.823-1.131-1.042q-.04-.051-.073-.086c-.021-.022-.042-.048-.086-.05a.08.08 0 0 0-.055.021.5.5 0 0 0-.099.15.5.5 0 0 0-.058.197v.004c.002.125 0 .588.39.973a1.9 1.9 0 0 0 .452.328 1 1 0 0 0 .308.115h.01a.09.09 0 0 0 .075-.041.14.14 0 0 0 .017-.07c-.002-.092-.052-.206-.052-.209l-.01-.022-.054-.017a1.6 1.6 0 0 1-.41-.234 1.23 1.23 0 0 1-.43-.681c.268.34.708.776 1.073.98.453.258 1.103.515 1.802.514a2.55 2.55 0 0 0 1.065-.225 2.67 2.67 0 0 0 1.236-1.069c.342-.543.384-1.18.384-1.472v-.088c.08.031.223.11.34.3.001 0 .026.044.07.062a.1.1 0 0 0 .05.008.2.2 0 0 0 .09-.021.5.5 0 0 0 .128-.088c.04-.038.076-.084.077-.148a.1.1 0 0 0-.012-.055c-.096-.19-.335-.358-.65-.416a2 2 0 0 0-.328-.032zm-2.712.065h.157v.085c0 .44-.342.95-.817.95-.369 0-.547-.226-.547-.467 0-.504.746-.568 1.207-.568"/></svg>�����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/curl.svg�������������������������������������0000664�0000000�0000000�00000002416�14753064456�0024573�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.803 14.817a.966.966 0 1 1 1.933 0 .966.966 0 0 1-1.933 0m2.736 0c0-.196-.053-.376-.112-.553-.234-.702-.876-1.216-1.657-1.216-.125 0-.235.046-.353.07C.615 13.286 0 13.965 0 14.817a1.77 1.77 0 0 0 3.539 0m-1.77-7.149a.967.967 0 1 1 0 1.934.967.967 0 0 1 0-1.934m0 2.736a1.77 1.77 0 0 0 1.77-1.77c0-.195-.053-.376-.112-.552-.234-.702-.877-1.217-1.657-1.217-.125 0-.235.047-.353.072C.615 7.104 0 7.782 0 8.634c0 .977.792 1.77 1.77 1.77M14.99 4.71a.966.966 0 0 1-.966-.967.966.966 0 0 1 .967-.966.966.966 0 1 1 0 1.933m-9.6 16.513a.967.967 0 0 1 0-1.933.966.966 0 0 1 .966.967.966.966 0 0 1-.966.966m9.6-19.249c-.978 0-1.77.792-1.77 1.77 0 .208.053.402.119.588L5.039 18.558c-.803.168-1.418.846-1.418 1.699a1.77 1.77 0 0 0 3.539 0 1.7 1.7 0 0 0-.111-.553l8.343-14.273c.778-.186 1.368-.853 1.368-1.688a1.77 1.77 0 0 0-1.77-1.769m7.24 2.736a.966.966 0 0 1-.966-.967.966.966 0 0 1 .967-.966.966.966 0 1 1 0 1.933m-9.6 16.513a.966.966 0 0 1-.966-.966.966.966 0 0 1 .966-.967.966.966 0 0 1 0 1.933m9.6-19.249a1.77 1.77 0 0 0-1.77 1.77c0 .208.053.402.119.588l-8.301 14.226c-.802.168-1.417.846-1.417 1.699a1.77 1.77 0 0 0 3.538 0c0-.197-.053-.376-.111-.553l8.343-14.273C23.409 5.245 24 4.578 24 3.743a1.77 1.77 0 0 0-1.77-1.769"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/curseforge.svg�������������������������������0000664�0000000�0000000�00000000506�14753064456�0025770�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.326 9.215s4.9-.773 5.674-3.027h-7.507V4.4H0l2.032 2.358v2.415s5.127-.266 7.11 1.237c2.714 2.516-3.053 5.917-3.053 5.917l-.99 3.273c1.547-1.473 4.494-3.377 9.899-3.286-2.057.65-4.125 1.665-5.735 3.286h10.925l-1.029-3.273s-7.918-4.668-.833-7.112z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/customink.svg��������������������������������0000664�0000000�0000000�00000010416�14753064456�0025641�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 23.986c1.864 0 3.398-1.508 3.398-3.451 0-.384-.106-.86-.238-1.19-.423-1.018-2.182-2.526-2.79-3.808-.08-.198-.21-.291-.356-.291-.145 0-.29.093-.357.29-.595 1.283-2.366 2.804-2.79 3.809-.132.33-.238.806-.238 1.19A3.37 3.37 0 0 0 12 23.985zm0-11.82a1.86 1.86 0 0 0 1.587-.9c.12-.185.066-.476-.29-.357a3.48 3.48 0 0 1-2.591 0c-.358-.119-.397.172-.292.357.33.53.873.886 1.587.9zm1.772-3.293c-.068-.2.03-.42.225-.502a.6.6 0 0 1 .198-.04.116.116 0 0 0 .092-.12c0-.039-.013-.065-.052-.092a.96.96 0 0 0-.582-.198.97.97 0 0 0-.965.965.97.97 0 0 0 .965.965c.436 0 .806-.29.925-.687a.14.14 0 0 0-.013-.106c-.026-.026-.053-.053-.092-.053-.04 0-.093.04-.146.053-.317.172-.502-.053-.555-.185m-3.292 0c-.068-.2.03-.42.225-.502a.6.6 0 0 1 .2-.04.116.116 0 0 0 .09-.12c0-.039-.012-.065-.052-.092a.96.96 0 0 0-.582-.198.97.97 0 0 0-.965.965c.008 1.105 1.565 1.334 1.89.278a.14.14 0 0 0-.012-.106c-.027-.026-.053-.053-.093-.053s-.092.04-.145.053c-.304.172-.503-.053-.556-.185m5.896-1.89q0 .872-.317 1.626c-.053.132-.04.264.093.317.185.08.515.172 1.057.185 1.243 0 3.094-.635 3.253-.661.78-.212 1.454-.304 2.155.026.384.185.78-.105.635-.515C21.572 3.399 17.46.014 11.988.014 6.515.014 2.4 3.4.723 7.961c-.146.41.25.7.634.515.7-.33 1.375-.238 2.156-.026.158.026 2.01.661 3.252.661.542-.013.873-.106 1.058-.185.132-.053.145-.185.092-.317a4.5 4.5 0 0 1-.317-1.627c0-2.406 1.957-4.35 4.377-4.35 2.445 0 4.401 1.944 4.401 4.35zM7.85 19.238c.106-.225 1.137-2.354 1.243-4.614.027-.37-.25-.556-.582-.331-1.335.688-2.34.727-3.61 1.15-1.493.344-2.42 1.296-2.458 2.684a2.806 2.806 0 0 0 2.71 2.896 2.78 2.78 0 0 0 2.697-1.785M4.147 14.73c.225-.105 1.85-.978 3.292-2.657.252-.278.067-.542-.25-.608-2.063-.569-2.804-1.825-4.483-1.799-.793-.013-1.507.291-2.063.952a2.73 2.73 0 0 0 .344 3.861c.893.748 2.16.848 3.16.251m12.005 4.509c1.141 2.949 5.53 2.05 5.42-1.11-.052-1.402-.978-2.354-2.46-2.685-1.268-.41-2.273-.462-3.61-1.15-.316-.225-.606-.04-.58.33.08 2.261 1.124 4.377 1.23 4.615m3.701-4.509c-.225-.105-1.85-.978-3.29-2.657-.253-.278-.068-.542.25-.608 2.062-.569 2.802-1.825 4.482-1.799.793-.013 1.507.291 2.063.952a2.73 2.73 0 0 1-.344 3.861 2.74 2.74 0 0 1-3.16.251zm-9.372-5.857c-.068-.2.03-.42.224-.502a.6.6 0 0 1 .2-.04.116.116 0 0 0 .09-.12c0-.039-.012-.065-.052-.092a.96.96 0 0 0-.582-.198.97.97 0 0 0-.965.965c.008 1.105 1.565 1.334 1.89.278a.14.14 0 0 0-.012-.106c-.027-.026-.053-.053-.093-.053s-.092.04-.145.053c-.304.172-.503-.053-.556-.185Zm3.291 0c-.068-.2.03-.42.225-.502a.6.6 0 0 1 .198-.04.116.116 0 0 0 .092-.12c0-.039-.013-.065-.052-.092a.96.96 0 0 0-.582-.198.97.97 0 0 0-.965.965.97.97 0 0 0 .965.965c.436 0 .806-.29.925-.687a.14.14 0 0 0-.013-.106c-.026-.026-.053-.053-.092-.053-.04 0-.093.04-.146.053-.317.172-.502-.053-.555-.185m-1.771 3.292a1.86 1.86 0 0 0 1.586-.899c.12-.185.066-.476-.29-.357a3.48 3.48 0 0 1-2.591 0c-.358-.119-.397.172-.292.357.33.53.873.886 1.587.9zm0 11.821c1.863 0 3.397-1.508 3.397-3.451 0-.384-.106-.86-.238-1.19-.423-1.018-2.182-2.526-2.79-3.808-.08-.198-.21-.291-.356-.291-.145 0-.29.093-.357.29-.595 1.283-2.366 2.804-2.79 3.809-.132.33-.238.806-.238 1.19A3.37 3.37 0 0 0 12 23.985zm7.852-9.256c-.225-.105-1.85-.978-3.29-2.657-.253-.278-.068-.542.25-.608 2.062-.569 2.802-1.825 4.482-1.799.793-.013 1.48.3 2.063.952.661 1.593.68 1.594-.33 3.85l-.014.011a2.74 2.74 0 0 1-3.16.251zm-3.7 4.509c1.14 2.949 5.53 2.05 5.42-1.11-.053-1.402-.98-2.354-2.46-2.685-1.269-.41-2.274-.462-3.61-1.15-.317-.225-.607-.04-.58.33.08 2.261 1.123 4.377 1.23 4.615M4.146 14.73c.225-.105 1.85-.978 3.292-2.657.252-.278.067-.542-.25-.608-2.063-.569-2.804-1.825-4.483-1.799-.793-.013-1.507.291-2.063.952a2.73 2.73 0 0 0 .344 3.861c.893.748 2.16.848 3.16.251m3.702 4.509c.106-.225 1.137-2.354 1.243-4.614.027-.37-.25-.556-.582-.331-1.335.688-2.34.727-3.61 1.15-1.493.344-2.42 1.296-2.458 2.684a2.806 2.806 0 0 0 2.71 2.896 2.78 2.78 0 0 0 2.697-1.785m8.527-12.257q0 .873-.317 1.627c-.053.132-.04.264.093.317.185.08.515.172 1.057.185 1.243 0 3.094-.635 3.253-.661.78-.212 1.454-.304 2.155.026.384.185.78-.105.635-.515C21.57 3.399 17.46.014 11.988.014S2.4 3.4.723 7.961c-.146.41.25.7.634.515.7-.33 1.375-.238 2.156-.026.158.026 2.01.661 3.252.661.542-.013.873-.106 1.058-.185.132-.053.145-.185.092-.317a4.5 4.5 0 0 1-.317-1.627c0-2.406 1.957-4.35 4.377-4.35 2.445 0 4.401 1.944 4.401 4.35z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cyberdefenders.svg���������������������������0000664�0000000�0000000�00000001453�14753064456�0026612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.918 17.48c-.126 2.727-2.384 4.696-5.364 4.696H7.34v-6.123l-2.185-.957V24h8.381c4.334 0 7.549-2.962 7.549-6.881v-.163c-.65.235-1.372.415-2.167.524m1.355-9.501C18.611 4.313 17.726.989 15.432.213c-1.336-.452-2.005-.091-2.637.217a.306.306 0 0 0-.072.505c.361.307.813.687 1.336 1.174-1.95-1.138-7.333-2.835-7.874-.776-.488 1.86-1.319 4.587-1.319 4.587S.603 5.487.116 7.293s3.323 5.274 9.627 7.134c6.303 1.861 11.198 1.373 13.311-.921s.072-5.473-2.781-5.527m-1.247.036c-.487.47-2.077 1.68-5.563 1.427-3.738-.271-6.809-2.474-7.604-3.088a.34.34 0 0 1-.126-.398c.054-.18.126-.469.253-.849.072-.234.343-.343.542-.216 1.571.903 4.1 2.221 6.791 2.402 2.402.163 3.847-.542 4.786-1.066a.39.39 0 0 1 .542.199l.47 1.156c.036.162.018.325-.091.433"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cycling74.svg��������������������������������0000664�0000000�0000000�00000003020�14753064456�0025421�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.283 9.033c-.042-.354.425-.74.87-1.057.636-.453 1.682-.82 2.892-.962 1.093-.127 2.099-.045 2.816.189.632.206 1.263.503 1.31.906.046.4-.496.836-1.06 1.182-.644.394-1.606.708-2.703.837-1.206.14-2.306.025-3.03-.267-.509-.206-1.053-.473-1.095-.828m16.77-1.542c.365-.022.742.614 1.05 1.216.438.861.772 2.244.87 3.818.087 1.422-.038 2.715-.307 3.62-.236.798-.566 1.586-.981 1.61-.413.026-.837-.712-1.169-1.47-.379-.867-.662-2.137-.75-3.563-.096-1.57.066-2.98.395-3.89.23-.639.527-1.319.893-1.341zm-8.16 6.443c-.022-.336.362-.674.726-.948.522-.391 1.367-.677 2.335-.74.874-.055 1.674.082 2.238.345.496.233.989.552 1.014.935.024.382-.422.762-.882 1.055-.525.336-1.302.576-2.179.632-.966.063-1.839-.111-2.406-.43-.399-.225-.824-.51-.846-.849M18.16 6.41c.288.177.343.685.357 1.14.02.65-.233 1.503-.74 2.327-.457.745-1.028 1.317-1.568 1.624-.476.271-1.02.488-1.347.287-.327-.2-.38-.782-.355-1.326.028-.622.279-1.392.737-2.14.505-.822 1.149-1.434 1.736-1.71.413-.196.89-.379 1.18-.202M.382 6.211c.294-.168.771.04 1.183.257.588.31 1.228.967 1.722 1.834.447.784.685 1.582.704 2.219.015.56-.048 1.155-.382 1.345-.333.19-.876-.056-1.349-.353-.54-.34-1.107-.952-1.555-1.738C.211 8.91-.028 8.027.003 7.363c.021-.467.085-.984.38-1.152zm11.85 4.283c.32.188.341.828.32 1.406-.032.827-.398 1.948-1.054 3.066-.593 1.01-1.305 1.814-1.958 2.277-.575.407-1.225.756-1.589.542-.362-.212-.375-.948-.301-1.645.084-.797.44-1.813 1.036-2.826.655-1.115 1.453-1.979 2.159-2.41.496-.303 1.066-.598 1.387-.41"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cypress.svg����������������������������������0000664�0000000�0000000�00000002243�14753064456�0025314�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.998.02c-.864 0-1.682.11-2.144.193v.002A11.93 11.93 0 0 0 0 12.002c0 1.126.157 2.233.465 3.303.038.145.091.299.137.447 1.607 4.865 6.224 8.226 11.392 8.228.065 0 .252 0 .502-.011a2.22 2.22 0 0 0 1.951-1.37l.474-1.154 5.505-13.402H18.62l-2.316 5.871-2.334-5.871h-1.909l3.274 8.012-2.436 5.91a.54.54 0 0 1-.472.336c-.144.005-.285.01-.432.01-4.585 0-8.667-3.07-9.928-7.465a10.3 10.3 0 0 1-.398-2.844 10.27 10.27 0 0 1 8.603-10.164c.222-.037.889-.145 1.725-.145 4.417 0 8.269 2.732 9.73 6.848.056.144.098.293.147.44.299.974.453 1.988.453 3.021 0 4.57-2.941 8.533-7.316 9.861l.486 1.6c5.085-1.546 8.5-6.152 8.502-11.46 0-1.548-.298-2.87-.65-3.892l-.131-.363h-.002C21.457 3.095 17.044.02 11.998.02M8.434 7.89c-1.2 0-2.175.386-2.98 1.176-.802.786-1.206 1.774-1.206 2.936 0 1.154.407 2.137 1.205 2.92.806.79 1.78 1.174 2.98 1.174 1.706 0 3.156-.955 3.788-2.489l.033-.082-1.629-.554c-.168.456-.755 1.488-2.191 1.488-.675 0-1.244-.234-1.694-.7-.457-.47-.687-1.062-.687-1.757 0-.7.225-1.28.687-1.773.452-.465 1.02-.702 1.694-.702 1.438 0 2.023 1.082 2.193 1.489l1.627-.553-.033-.084c-.63-1.536-2.082-2.488-3.787-2.488"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/cytoscapedotjs.svg���������������������������0000664�0000000�0000000�00000001260�14753064456�0026660�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 0v24H0V0zm-4.842 7.26a1.86 1.86 0 0 0-1.841 1.61l-2.71.683a1.86 1.86 0 0 0-1.55-.834 1.858 1.858 0 1 0 .738 3.563l1.792 1.83-.049.093-2.345-.316a1.86 1.86 0 1 0-1.826 2.2 1.86 1.86 0 0 0 1.636-.977l2.346.316q.032.211.107.412l-.984.867a1.1 1.1 0 0 0-.318-.046 1.134 1.134 0 1 0 1.124.987l.945-.832a2.05 2.05 0 0 0 1.402.342l.835 1.665a1.85 1.85 0 0 0-.501 1.27 1.858 1.858 0 1 0 1.597-1.84l-.803-1.605a2.05 2.05 0 0 0 .683-1.53 2.06 2.06 0 0 0-.936-1.725l.735-2.419a1.858 1.858 0 0 0-.077-3.714m-1.582 2.832c.125.202.287.378.477.519l-.745 2.452a2.05 2.05 0 0 0-.819.201l-1.787-1.824a1.9 1.9 0 0 0 .203-.674z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/d.svg����������������������������������������0000664�0000000�0000000�00000001603�14753064456�0024046�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.635 3.883a1.364 1.25 0 0 0-1.363 1.25 1.364 1.25 0 0 0 1.363 1.25A1.364 1.25 0 0 0 24 5.133a1.364 1.25 0 0 0-1.365-1.25m-16.004.418-6.027.008c-.026 0-.051-.003-.076 0-.296.036-.527.273-.528.558l.018 14.574c0 .22.06.676.682.676l5.58-.021c1.595-.003 2.664-.031 3.3-.112h.016a11.4 11.4 0 0 0 1.955-.469c1.22-.38 2.3-.944 3.23-1.697a7.85 7.85 0 0 0 2.114-2.562 6.7 6.7 0 0 0 .646-1.987 4.244 3.89 0 0 0 .26.028 4.244 3.89 0 0 0 4.244-3.89 4.244 3.89 0 0 0-4.244-3.89 4.244 3.89 0 0 0-2.9 1.082 8.8 8.8 0 0 0-2.25-1.355c-1.536-.65-3.536-.948-6.02-.943m-.262 3.004c1.215-.003 2.079.034 2.569.101a7.3 7.3 0 0 1 1.617.436c.57.218 1.068.483 1.496.814 1.177.915 1.732 1.999 1.734 3.432.003 1.468-.534 2.611-1.68 3.57a5.6 5.6 0 0 1-1.177.742c-.409.19-.942.355-1.615.496-.636.128-1.6.2-2.856.202l-2.673.004-.012-9.793 2.598-.004z"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/d3.svg���������������������������������������0000664�0000000�0000000�00000000670�14753064456�0024134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.312 12C13.312 5.718 8.22.625 1.937.625H0v5h1.938a6.375 6.375 0 1 1 0 12.75H0v5h1.938c6.281 0 11.374-5.093 11.374-11.375M24 7.563A6.94 6.94 0 0 0 17.062.625h-8a13.4 13.4 0 0 1 4.686 5h3.314a1.94 1.94 0 0 1 0 3.876h-1.938a13.4 13.4 0 0 1 0 5h1.938a1.94 1.94 0 0 1 0 3.876h-3.314a13.4 13.4 0 0 1-4.686 5h8a6.939 6.939 0 0 0 5.333-11.375A6.95 6.95 0 0 0 24 7.563"/></svg>������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dacia.svg������������������������������������0000664�0000000�0000000�00000000440�14753064456�0024662�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 8.646v2.23h8.252v2.248H0v2.23h9.112a.62.62 0 0 0 .489-.201L12 12.819l2.399 2.334a.62.62 0 0 0 .49.201H24v-2.23h-8.252v-2.248H24v-2.23h-9.112a.62.62 0 0 0-.489.201L12 11.181 9.601 8.847a.62.62 0 0 0-.49-.201Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/daf.svg��������������������������������������0000664�0000000�0000000�00000000630�14753064456�0024354�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.649 12.782h-2.643V8.723H24v1.183h-4.351v.723h4.277v1.147h-4.277zm-7.51-3.039-1.831 3.05H7.76l2.414-4.07h3.924l2.424 4.07h-5.364l.64-1.06h1.534zM.004 12.785V8.741h4.99c1.62 0 2.773.738 2.773 1.994 0 1.196-.914 2.05-2.82 2.05zm4.008-1.034c.621 0 .985-.53.985-.935 0-.413-.325-.896-.967-.896H2.671v1.831zM0 13.731h23.926v1.546H0Z"/></svg>��������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dailydotdev.svg������������������������������0000664�0000000�0000000�00000000676�14753064456�0026144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.29 5.706a1.405 1.405 0 0 0-1.987 0L4.716 17.296l1.324-2.65-2.65-2.649 3.312-3.311 2.65 2.65 1.986-1.988-3.642-3.642a1.405 1.405 0 0 0-1.987 0L.411 11.004a1.404 1.404 0 0 0 0 1.987l4.305 4.304.993.993a1.405 1.405 0 0 0 1.987 0L19.285 6.7l-.993-.994Zm-.332 3.647 2.65 2.65-4.306 4.305a1.404 1.404 0 1 0 1.986 1.986l5.299-5.298a1.404 1.404 0 0 0 0-1.987l-4.305-4.304z"/></svg>������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dailymotion.svg������������������������������0000664�0000000�0000000�00000002422�14753064456�0026153�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.823 7.327a11.9 11.9 0 0 0-2.606-3.814 12.1 12.1 0 0 0-3.866-2.57A12.25 12.25 0 0 0 10.617 0H1.831a.6.6 0 0 0-.609.603v3.764c0 .162.064.312.179.426l4.164 4.123a.61.61 0 0 0 .439.177h4.56c.806 0 1.56.313 2.125.88.557.559.856 1.296.843 2.075-.029 1.571-1.343 2.849-2.931 2.849h-6.74a.61.61 0 0 0-.432.176.62.62 0 0 0-.178.427v3.764c0 .162.063.312.178.427l4.139 4.099a.65.65 0 0 0 .476.21h2.572a12.3 12.3 0 0 0 4.733-.945 12.15 12.15 0 0 0 3.866-2.571 12 12 0 0 0 2.607-3.813c.633-1.479.956-3.051.956-4.67s-.321-3.19-.956-4.669zM2.441 4.118V1.982l2.945 2.755.001 2.297zm4.975 17.813-2.945-2.917v-2.137l2.945 2.755zm-2.004-5.832h5.19c2.248 0 4.107-1.807 4.147-4.03a4.03 4.03 0 0 0-1.192-2.937 4.2 4.2 0 0 0-2.996-1.239H6.606V5.216h3.996c1.831 0 3.553.706 4.849 1.986a6.724 6.724 0 0 1-.152 9.736 6.88 6.88 0 0 1-4.697 1.84H8.275L5.412 16.1zm15.289.1a10.8 10.8 0 0 1-2.345 3.431 10.9 10.9 0 0 1-3.48 2.314 11 11 0 0 1-4.26.847H8.633v-2.814h1.916c2.145 0 4.161-.802 5.675-2.254a7.88 7.88 0 0 0 2.451-5.728c0-2.177-.87-4.21-2.451-5.728-1.514-1.454-3.528-2.254-5.675-2.254h-4.16L3.383 1.202h7.234c1.479 0 2.911.285 4.259.847a11 11 0 0 1 3.48 2.313 10.8 10.8 0 0 1 2.345 3.432c.571 1.33.86 2.743.86 4.202s-.289 2.873-.86 4.203"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/daisyui.svg����������������������������������0000664�0000000�0000000�00000001151�14753064456�0025270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C7.828.001 4.396 3.433 4.395 7.605c.001 4.172 3.433 7.604 7.605 7.605 4.172-.001 7.604-3.433 7.605-7.605C19.604 3.433 16.172.001 12 0m0 .286c4.016 0 7.32 3.304 7.32 7.32-.001 4.015-3.305 7.318-7.32 7.318S4.681 11.62 4.68 7.605c0-4.016 3.304-7.32 7.32-7.32zm0 4.04a3.294 3.294 0 0 0-3.279 3.279v.001A3.296 3.296 0 0 0 12 10.884a3.294 3.294 0 0 0 3.279-3.279A3.294 3.294 0 0 0 12 4.326M8.34 16.681h-.008a3.67 3.67 0 0 0-3.652 3.652v.015A3.67 3.67 0 0 0 8.332 24h7.336a3.67 3.67 0 0 0 3.652-3.652v-.016a3.67 3.67 0 0 0-3.652-3.652h-.008Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dapr.svg�������������������������������������0000664�0000000�0000000�00000003054�14753064456�0024553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.618 7.658h10.509a.246.246 0 0 1 .246.246v.656a.246.246 0 0 1-.246.246H7.617a.246.246 0 0 1-.246-.246v-.656a.246.246 0 0 1 .246-.246M9.65 3.182h6.533a.13.13 0 0 1 .133.132v4.52a.13.13 0 0 1-.133.133H9.65a.13.13 0 0 1-.132-.133v-4.52a.13.13 0 0 1 .132-.132m5.832 16.9-1.05.736-1.05-.736.154-4.207h1.791zm-9.606-4.244h-1.78v-.559a1.8 1.8 0 0 1-.515.467Q3.124 16 2.545 16a2.46 2.46 0 0 1-1.671-.646Q0 14.584 0 13.315q0-1.291.895-2.062a2.43 2.43 0 0 1 1.633-.613q.537 0 1.01.228.27.13.558.429V7.688h1.78ZM4.15 13.32a1.1 1.1 0 0 0-.336-.81A1.11 1.11 0 0 0 3 12.174q-.531 0-.873.402a1.12 1.12 0 0 0-.277.743q0 .418.277.744.336.4.873.401.483 0 .817-.33.333-.332.334-.815m8.4 2.518h-1.78v-.559a1.8 1.8 0 0 1-.515.467Q9.8 16 9.22 16a2.46 2.46 0 0 1-1.671-.646q-.874-.77-.874-2.04 0-1.291.896-2.062a2.43 2.43 0 0 1 1.633-.613q.537 0 1.009.228.27.13.559.428v-.493h1.78zm-1.725-2.518a1.1 1.1 0 0 0-.336-.81 1.11 1.11 0 0 0-.814-.335q-.532 0-.874.402a1.12 1.12 0 0 0-.277.743q0 .418.277.744.336.4.874.401.483 0 .816-.33.334-.332.334-.815m8.6.006q0 1.29-.895 2.062a2.43 2.43 0 0 1-1.633.613q-.537 0-1.01-.228a2 2 0 0 1-.558-.429v3.012h-1.78v-7.553h1.78v.559q.24-.315.516-.467.455-.255 1.036-.255.94 0 1.67.646.874.77.874 2.04m-1.85-.006q0-.428-.271-.743a1.1 1.1 0 0 0-.879-.402q-.483 0-.817.331t-.333.814q0 .479.336.812t.814.333q.538 0 .873-.401.277-.325.277-.744M24 12.447a1.75 1.75 0 0 0-.76-.18q-.879 0-1.139.717-.098.26-.098.7v2.154h-1.78v-5.035h1.78v.824q.282-.44.608-.634.44-.26 1.042-.26a5 5 0 0 1 .347.015z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/darkreader.svg�������������������������������0000664�0000000�0000000�00000003136�14753064456�0025732�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.281 8.572c-.18-1.671-.926-3.132-2.105-4.173A6.32 6.32 0 0 0 12 2.824c-1.538 0-3.026.56-4.176 1.575C6.646 5.44 5.9 6.901 5.72 8.572a5 5 0 0 1 .987-.101 4.59 4.59 0 0 1 4.24 2.827l2.107-.002a4.57 4.57 0 0 1 4.241-2.825 5 5 0 0 1 .987.101zM3.624 16.494l-2.212 6.094H0l2.662-7.324a4.6 4.6 0 0 1-.401-1.046 4.8 4.8 0 0 1-.143-1.16 4.7 4.7 0 0 1 .574-2.283 4.43 4.43 0 0 1 1.576-1.642c.08-2.207.943-4.178 2.43-5.593A7.7 7.7 0 0 1 12 1.412c1.973 0 3.876.768 5.305 2.13 1.486 1.417 2.348 3.388 2.427 5.596a4.4 4.4 0 0 1 1.576 1.64c.383.693.576 1.478.574 2.28 0 .39-.047.78-.142 1.159a4.6 4.6 0 0 1-.402 1.045L24 22.588h-1.412l-2.212-6.097c-.41.367-.879.649-1.383.843a4.7 4.7 0 0 1-1.699.313 4.64 4.64 0 0 1-3.132-1.227c-.827-.765-1.344-1.814-1.443-3.008H11.28c-.103 1.192-.62 2.241-1.447 3.005a4.64 4.64 0 0 1-3.128 1.23 4.6 4.6 0 0 1-1.698-.31 4.5 4.5 0 0 1-1.384-.843zm11.2-3.445a2.46 2.46 0 0 0 2.489 2.48 2.47 2.47 0 0 0-.019-4.94 2.464 2.464 0 0 0-2.47 2.46m-10.589.01a2.463 2.463 0 0 0 2.47 2.47 2.47 2.47 0 0 0 2.472-2.47 2.47 2.47 0 0 0-2.471-2.47 2.463 2.463 0 0 0-2.47 2.47zm5.647 6c.033-.423.327-.703.706-.706a.68.68 0 0 1 .706.706v2.823a.68.68 0 0 1-.706.706c-.38-.003-.673-.283-.706-.706zm2.824 0c.033-.423.326-.703.706-.706a.68.68 0 0 1 .706.706v2.823a.68.68 0 0 1-.706.706c-.38-.003-.673-.283-.706-.706zm2.823 1.412c.033-.423.327-.703.706-.706a.68.68 0 0 1 .706.706v1.411a.68.68 0 0 1-.706.706c-.38-.003-.673-.283-.706-.706zm-8.47 0c.033-.423.326-.703.706-.706a.68.68 0 0 1 .706.706v1.411a.68.68 0 0 1-.706.706c-.38-.003-.673-.283-.706-.706z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dart.svg�������������������������������������0000664�0000000�0000000�00000000665�14753064456�0024564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.105 4.105S9.158 1.58 11.684.316a3.1 3.1 0 0 1 1.481-.315c.766.047 1.677.788 1.677.788L24 9.948v9.789h-4.263V24H9.789l-9-9C.303 14.5 0 13.795 0 13.105c0-.319.18-.818.316-1.105zm.679.679v11.787c.002.543.021 1.024.498 1.508L10.204 23h8.533v-4.263zm12.055-.678c-.899-.896-1.809-1.78-2.74-2.643-.302-.267-.567-.468-1.07-.462-.37.014-.87.195-.87.195L6.341 4.105z"/></svg>���������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/darty.svg������������������������������������0000664�0000000�0000000�00000002121�14753064456�0024742�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm11.83 1.503A10.56 10.56 0 0 1 22.62 12.06c.06 5.76-4.68 10.5-10.56 10.5A10.56 10.56 0 0 1 1.5 12.06a10.56 10.56 0 0 1 9.77-10.53 11 11 0 0 1 .56-.027M2.4 9.24s.18 1.2.18 2.82c0 1.56-.18 2.76-.18 2.76h2.04c.66 0 1.86-.48 1.86-2.76-.06-2.34-1.2-2.82-1.86-2.82zm4.68 0s-.12 1.44-.42 2.82c-.3 1.32-.72 2.76-.72 2.76h1.8s-.06-.24 0-.72.18-.72.18-.72h.84s.12.3.18.72c.06.48 0 .72 0 .72h3.42s-.12-.36-.18-.96 0-.96 0-.96.24.36.48.96c.18.6.18.96.18.96h1.98s-.3-.66-.72-1.38-.66-1.08-.66-1.08.96-.3.96-1.56v-.3c.12-.06.42-.12.9-.12 0 0 .06 1.02 0 1.98s-.18 2.52-.18 2.52h1.8s-.12-1.56-.18-2.52 0-1.98 0-1.98.48 0 .96.18V9.42c.18.36.72 1.5.96 2.64.3 1.44.12 2.76.12 2.76h1.8s-.18-1.38.12-2.76 1.08-2.82 1.08-2.82h-1.62l-.42 1.62-.42-1.62h-4.98v.96a1.35 1.35 0 0 0-1.2-.96h-2.52s.18 1.02.18 2.82c0 1.08-.06 1.92-.12 2.34-.18-.54-.42-1.44-.6-2.34-.3-1.32-.42-2.82-.42-2.82zm5.16.96s.6 0 .6.72c.06.72-.6.72-.6.72zm-8.187.115c.15-.009.747.058.747 1.685 0 1.92-.78 1.68-.78 1.68v-3.36s.012-.003.033-.005m4.346.065.36 1.86h-.718z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/daserste.svg���������������������������������0000664�0000000�0000000�00000000375�14753064456�0025442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.646.005C5.158.2-.001 5.57 0 12.127.135 18.724 5.468 24 12 24s11.865-5.276 12-11.873C24.001 5.291 18.41-.195 11.645.005zm5.138 4.93V16.96L8.78 19.92v-9.08l-3.9 1.386V9.263z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dash.svg�������������������������������������0000664�0000000�0000000�00000000722�14753064456�0024543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.21 9.967c-2.288 0-2.615 1.49-2.83 2.393A41 41 0 0 0 0 14.02h8.947c2.29 0 2.617-1.492 2.832-2.394.285-1.178.379-1.66.379-1.66zM15.72 2.26H6.982L6.26 6.307l7.884.01c3.885 0 5.03 1.41 4.997 3.748-.019 1.196-.537 3.225-.762 3.884-.598 1.753-1.827 3.749-6.435 3.744l-7.666-.004-.725 4.052h8.718c3.075 0 4.38-.36 5.767-.995 3.071-1.426 4.9-4.455 5.633-8.41C24.76 6.448 23.403 2.26 15.72 2.26"/></svg>����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dashlane.svg���������������������������������0000664�0000000�0000000�00000001632�14753064456�0025404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.89 7.719c0-.149-.149-.298-.357-.357L18.03 6.44c-.416-.179-.893.03-.893.327V17.25c0 .149.15.327.298.387l2.561.922c.388.149.894-.06.894-.387zm-4.676-3.663c0-.15-.149-.298-.358-.358l-2.501-.922c-.417-.178-.894.03-.894.328v6.372c0 .15.149.328.298.388l2.561.922c.388.149.894-.06.894-.387zm0 11.466c0-.149-.149-.297-.358-.357l-2.501-.922c-.417-.179-.894.03-.894.328v6.372c0 .149.149.327.298.387l2.561.922c.388.15.894-.06.894-.387zm-4.676 1.281c0-.149-.149-.298-.358-.357l-2.501-.923c-.42-.178-.894.03-.894.328v6.79c0 .15.149.328.298.388l2.561.922c.387.15.894-.06.894-.387zm0-15.458c0-.149-.149-.297-.358-.357L8.68.066c-.42-.179-.894.03-.894.328v6.79c0 .15.149.328.298.387l2.561.922c.388.15.894-.06.894-.387zm-4.675.269c0-.15-.15-.298-.358-.358L4.004.334c-.417-.179-.894.03-.894.328v21.74c0 .15.149.328.298.387l2.561.923c.387.148.894-.06.894-.388z"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dask.svg�������������������������������������0000664�0000000�0000000�00000001500�14753064456�0024541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.246 9.754 5.848-3.374a.2.2 0 0 0 .1-.175l.002-2.553c0-.324-.133-.645-.392-.841a1 1 0 0 0-1.118-.074l-2.425 1.4-6.436 3.712a1.01 1.01 0 0 0-.504.872l-.003 8.721v2.825c0 .324.132.645.39.842.335.253.766.278 1.12.074l2.363-1.364a.2.2 0 0 0 .101-.175l.003-8.244a1.9 1.9 0 0 1 .951-1.646m10.316-4.336a1 1 0 0 0-.504-.137 1 1 0 0 0-.503.137l-8.86 5.112a1.01 1.01 0 0 0-.505.87l-.003 11.591c0 .364.188.69.503.872a1 1 0 0 0 1.007 0l8.86-5.112a1.01 1.01 0 0 0 .504-.872l.004-11.59a1 1 0 0 0-.503-.871M6.378 7.074l6.334-3.655a.2.2 0 0 0 .1-.175l.001-2.193c0-.324-.133-.646-.392-.84a1 1 0 0 0-1.118-.075L2.443 5.25a1.01 1.01 0 0 0-.504.872l-.003 11.546c0 .324.133.645.39.842a1 1 0 0 0 1.12.074l1.877-1.082a.2.2 0 0 0 .1-.175l.003-8.605c0-.68.363-1.307.952-1.647z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dassaultsystemes.svg�������������������������0000664�0000000�0000000�00000002243�14753064456�0027241�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.185 8.025c1.064.192 1.933.34 2.132.79.223.51-.936.541-1.52.552-2.8.054-4.487.11-4.572 1.061-.11 1.224 1.196 2.458 2.486 4.186 1.178 1.577 2.518 3.135 2.133 4.586-.482 1.809-2.7 2.192-4.81 2.192-2.022 0-3.939-.323-4.744-.482-1.002-.2-.852-.694-.585-.853.298-.178 2.002-.182 3.187-.252.975-.058 3.805-.056 4.246-.781.54-.89-.783-2.408-2-4-1.519-1.984-3.186-4.034-2.303-5.533 1.14-1.936 4.484-1.803 6.35-1.466m-13.69 2.95c1.772-.104 3.926.206 5.134 1.13a2.17 2.17 0 0 1 .78 2.278c-.698 2.752-3.304 6.083-9.093 8.643-1.841.813-3.29 1.125-3.593.906-.326-.234.624-2.052.909-2.654.925-1.952 2.079-3.853 3.205-5.595.414-.64 1.055-1.752 1.634-1.662.519.08-.09 1.26-.488 2.01-.672 1.26-2.523 4.76-1.912 4.97 1.35.462 7.68-4.354 6.746-7.036-.432-1.245-3.18-1.363-4.912-1.363-.787 0-2.508.186-2.603-.417-.102-.556 2.613-1.116 4.192-1.21M11.867.013c2.068-.098 4.514.342 4.97 1.802.747 2.39-3.04 5.877-6.338 7.587-.809.42-1.3.536-1.504.507-.195-.027-.225-.22-.162-.355.118-.252.65-.764 1.361-1.322 3.715-2.9 4.923-5.028 4.221-5.89-.45-.552-2.332-.937-4.287-.937-.53 0-1.925.123-2.068-.367C7.942.634 9.814.108 11.866.012"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/databricks.svg�������������������������������0000664�0000000�0000000�00000000602�14753064456�0025730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.95 14.184 12 20.403l9.919-5.55v2.21L12 22.662l-10.484-5.96-.565.308v.77L12 24l11.05-6.218v-4.317l-.515-.309L12 19.118l-9.867-5.653v-2.21L12 16.805l11.05-6.218V6.32l-.515-.308L12 11.974 2.647 6.681 12 1.388l7.76 4.368.668-.411v-.566L12 0 .95 6.27v.72L12 13.207l9.919-5.55v2.26L12 15.52 1.516 9.56l-.565.308Z"/></svg>������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/datacamp.svg���������������������������������0000664�0000000�0000000�00000000556�14753064456�0025403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.946 18.151v-5.239L21.209 8.2 19.2 7.048l-6.254 3.567V5.36c0-.356-.192-.689-.5-.866L4.922.177a1.43 1.43 0 0 0-1.455.044 1.44 1.44 0 0 0-.676 1.224v14.777A1.44 1.44 0 0 0 4.92 17.49l6.032-3.44v4.683a1 1 0 0 0 .504.867l7.73 4.4 2.01-1.152zM10.953 5.938v5.814L4.785 15.27V2.4l6.168 3.539z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/datadog.svg����������������������������������0000664�0000000�0000000�00000005570�14753064456�0025235�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.57 17.04-1.997-1.316-1.665 2.782-1.937-.567-1.706 2.604.087.82 9.274-1.71-.538-5.794zm-8.649-2.498 1.488-.204c.241.108.409.15.697.223.45.117.97.23 1.741-.16.18-.088.553-.43.704-.625l6.096-1.106.622 7.527-10.444 1.882zm11.325-2.712-.602.115L20.488 0 .789 2.285l2.427 19.693 2.306-.334c-.184-.263-.471-.581-.96-.989-.68-.564-.44-1.522-.039-2.127.53-1.022 3.26-2.322 3.106-3.956-.056-.594-.15-1.368-.702-1.898-.02.22.017.432.017.432s-.227-.289-.34-.683c-.112-.15-.2-.199-.319-.4-.085.233-.073.503-.073.503s-.186-.437-.216-.807c-.11.166-.137.48-.137.48s-.241-.69-.186-1.062c-.11-.323-.436-.965-.343-2.424.6.421 1.924.321 2.44-.439.171-.251.288-.939-.086-2.293-.24-.868-.835-2.16-1.066-2.651l-.028.02c.122.395.374 1.223.47 1.625.293 1.218.372 1.642.234 2.204-.116.488-.397.808-1.107 1.165-.71.358-1.653-.514-1.713-.562-.69-.55-1.224-1.447-1.284-1.883-.062-.477.275-.763.445-1.153-.243.07-.514.192-.514.192s.323-.334.722-.624c.165-.109.262-.178.436-.323a10 10 0 0 0-.456.003s.42-.227.855-.392c-.318-.014-.623-.003-.623-.003s.937-.419 1.678-.727c.509-.208 1.006-.147 1.286.257.367.53.752.817 1.569.996.501-.223.653-.337 1.284-.509.554-.61.99-.688.99-.688s-.216.198-.274.51c.314-.249.66-.455.66-.455s-.134.164-.259.426l.03.043c.366-.22.797-.394.797-.394s-.123.156-.268.358c.277-.002.838.012 1.056.037 1.285.028 1.552-1.374 2.045-1.55.618-.22.894-.353 1.947.68.903.888 1.609 2.477 1.259 2.833-.294.295-.874-.115-1.516-.916a3.47 3.47 0 0 1-.716-1.562 1.53 1.53 0 0 0-.497-.85s.23.51.23.96c0 .246.03 1.165.424 1.68-.039.076-.057.374-.1.43-.458-.554-1.443-.95-1.604-1.067.544.445 1.793 1.468 2.273 2.449.453.927.186 1.777.416 1.997.065.063.976 1.197 1.15 1.767.306.994.019 2.038-.381 2.685l-1.117.174c-.163-.045-.273-.068-.42-.153.08-.143.241-.5.243-.572l-.063-.111c-.348.492-.93.97-1.414 1.245-.633.359-1.363.304-1.838.156-1.348-.415-2.623-1.327-2.93-1.566 0 0-.01.191.048.234.34.383 1.119 1.077 1.872 1.56l-1.605.177.759 5.908c-.337.048-.39.071-.757.124-.325-1.147-.946-1.895-1.624-2.332-.599-.384-1.424-.47-2.214-.314l-.05.059a2.85 2.85 0 0 1 1.863.444c.654.413 1.181 1.481 1.375 2.124.248.822.42 1.7-.248 2.632-.476.662-1.864 1.028-2.986.237.3.481.705.876 1.25.95.809.11 1.577-.03 2.106-.574.452-.464.69-1.434.628-2.456l.714-.104.258 1.834 11.827-1.424zM15.05 6.848c-.034.075-.085.125-.007.37l.004.014.013.032.032.073c.14.287.295.558.552.696q.1-.017.207-.023c.242-.01.395.028.492.08.009-.048.01-.119.005-.222-.018-.364.072-.982-.626-1.308-.264-.122-.634-.084-.757.068a.3.3 0 0 1 .058.013c.186.066.06.13.027.207m1.958 3.392c-.092-.05-.52-.03-.821.005-.574.068-1.193.267-1.328.372-.247.191-.135.523.047.66.511.382.96.638 1.432.575.29-.038.546-.497.728-.914.124-.288.124-.598-.058-.698m-5.077-2.942c.162-.154-.805-.355-1.556.156-.554.378-.571 1.187-.041 1.646.053.046.096.078.137.104a4.8 4.8 0 0 1 1.396-.412c.113-.125.243-.345.21-.745-.044-.542-.455-.456-.146-.749"/></svg>����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/datadotai.svg��������������������������������0000664�0000000�0000000�00000000602�14753064456�0025553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.12 1.744.015 10.009 0 10.023l11.986 12.219.014.015 11.986-12.22.014-.014-8.115-8.273-.006-.006Zm1.207 1.02h5.326L11.99 5.41zm3.422 3.43 3.027-3.053L22.081 9.5h-6.054ZM8.211 3.14l3.04 3.072L7.999 9.5h-6.08Zm.62 6.977L12 6.876l3.169 3.242L12 19.842zm7.328.402h5.862l-8.793 9.005Zm-14.24 0h5.915l2.958 9.006Z"/></svg>������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/datagrip.svg���������������������������������0000664�0000000�0000000�00000001121�14753064456�0025411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0Zm17.18 2.948a5.45 5.45 0 0 1 3.904 1.364l-1.376 1.66a3.67 3.67 0 0 0-2.596-1.009c-1.6 0-2.856 1.408-2.856 3.096v.029c0 1.816 1.252 3.152 3.012 3.152a3.5 3.5 0 0 0 2.064-.592V9.223h-2.2V7.336h4.316v4.316a6.44 6.44 0 0 1-4.244 1.575c-3.096 0-5.224-2.18-5.224-5.111v-.028a5.1 5.1 0 0 1 5.2-5.14M2.436 3.12h3.876c3.12 0 5.28 2.143 5.28 4.94v.027c0 2.8-2.16 4.968-5.28 4.968H2.436ZM6.51 5.088a3 3 0 0 0-.2.003h-1.69v6h1.69a2.83 2.83 0 0 0 2.993-2.967v-.037a2.85 2.85 0 0 0-2.793-2.999M2.208 19.495h9v1.5h-9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dataiku.svg����������������������������������0000664�0000000�0000000�00000000642�14753064456�0025247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a12 12 0 1 0 12 12A12 12 0 0 0 12 0m6.527 15.34H12.5v-.934h6.026zm-.739-8.73s-.412.543-.193 1.995c.41 2.724-1.02 5.15-3.56 5.15h-1.87s-1.835-.092-2.933 1.01c-3.263 3.269-4.04 4.116-4.274 4.233-.15.08-.188-.093-.188-.093l9.644-11.891c-.203-2.145 2.34-2.715 3.278-1.13l.884-.248zm-1.599-.614a.476.476 0 1 0 .47.474.476.476 0 0 0-.47-.474"/></svg>����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/datastax.svg���������������������������������0000664�0000000�0000000�00000000437�14753064456�0025440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.863 8.818v6.364l-2.181 1.683H0v-9.73h8.682zm-9.18 6.366h7.498V8.818H1.683zm13.243-6.296v2.26h6.919L24 12.793v2.318l-2.155 1.646h-8.153v-1.646h8.645v-2.318h-6.919l-2.155-1.645v-2.26l2.155-1.645h7.939v1.645z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/datefns.svg����������������������������������0000664�0000000�0000000�00000000742�14753064456�0025252�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.065 6.534Q0 9.102 0 11.999q0 2.898 1.065 5.466a13.8 13.8 0 0 0 3.068 4.549h2.685Q2.642 17.88 2.642 11.999q0-5.88 4.176-10.014H4.133a13.8 13.8 0 0 0-3.068 4.549m21.869 10.931Q24 14.897 24 11.999q0-2.897-1.066-5.465a13.8 13.8 0 0 0-3.068-4.549h-2.685q4.176 4.134 4.176 10.014 0 5.881-4.176 10.015h2.685a13.8 13.8 0 0 0 3.068-4.549M11.63 3.299H9.854v10.21h1.776v-.033l7.218-7.218-1.151-1.151-6.067 6.067z"/></svg>������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/datev.svg������������������������������������0000664�0000000�0000000�00000001057�14753064456�0024731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 .165v16.917h23.915V.165Zm.017 18.184v5.486h1.98c1.476 0 2.744-1.183 2.744-2.7-.042-1.687-1.098-2.786-2.574-2.786zm6.62 0-2.108 5.486h1.177l1.642-4.343 1.355 3.454H7.179v.889h3.039l-2.15-5.486Zm2.65 0v.931h1.778v4.555h1.219V19.28h1.727v-.93zm5.19 0v5.486h3.792v-.889h-2.616v-1.515h2.32v-.932h-2.32V19.28h2.489v-.93zm3.961 0 2.15 5.486h1.304L24 18.349h-2.904v.931h1.389l-1.27 3.327-1.558-4.258zm-17.287.931h.932c.927 0 1.557.674 1.515 1.812-.042 1.18-.843 1.812-1.812 1.812h-.635Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/datocms.svg����������������������������������0000664�0000000�0000000�00000000336�14753064456�0025257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0H.076v24H12c5.964 0 11.924-5.373 11.924-11.998C23.924 5.376 17.963 0 12 0m0 17.453a5.453 5.453 0 1 1 5.455-5.451A5.45 5.45 0 0 1 12 17.452z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/datto.svg������������������������������������0000664�0000000�0000000�00000003020�14753064456�0024731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.914 10.64c-.455-.384-.877-.548-1.453-.548C1.008 10.092 0 11.273 0 12.984c0 1.72 1.031 2.94 2.494 2.94.548 0 1.031-.188 1.415-.563v.431h1.182V8.058l-1.177.005zm-.131 3.408c-.164.432-.642.736-1.172.736-.835 0-1.369-.689-1.369-1.757 0-1.111.54-1.805 1.406-1.805.525 0 1.032.328 1.158.76.07.21.094.5.094 1.1 0 .474-.033.77-.117.966m6.544-.126v-2.053c0-.666-.07-.924-.361-1.228-.338-.366-.961-.563-1.735-.563-.783 0-1.57.188-2.33.572l.493.947c.782-.338 1.172-.431 1.71-.431.727 0 1.022.257 1.032.89v.178c-.947.094-1.266.132-1.64.197-1.196.235-1.759.76-1.759 1.65 0 1.055.915 1.852 2.12 1.852.641 0 1.148-.235 1.509-.69.117.385.43.62.96.69l.6-.914c-.543-.22-.6-.338-.6-1.097m-1.196.103c0 .328-.047.455-.21.595a1.43 1.43 0 0 1-.877.32c-.572 0-1.046-.376-1.046-.835 0-.375.249-.596.797-.727.366-.084.666-.117 1.336-.187zm5.232.633.15 1.04c-.385.103-.82.164-1.196.164-1.101 0-1.533-.454-1.533-1.593v-3.047h-1.017v-1.017h1.017v-1.72l1.182-.422v2.142h1.472v1.017H12.97v2.653c0 .69.141.853.727.853.197 0 .422-.023.666-.07m4.082 0 .15 1.04c-.384.103-.82.164-1.195.164-1.102 0-1.533-.454-1.533-1.593v-3.047H14.85v-1.017h1.017v-1.72l1.181-.422v2.142h1.468v1.017h-1.467l.004 2.653c0 .69.14.853.727.853.197 0 .422-.023.665-.07m2.813-4.594c-1.556 0-2.602 1.186-2.602 2.963 0 1.72 1.102 2.915 2.695 2.915 1.561 0 2.649-1.205 2.649-2.915 0-1.754-1.111-2.963-2.742-2.963m.047 4.725c-.867 0-1.44-.712-1.44-1.781s.587-1.805 1.454-1.805c.844 0 1.406.717 1.406 1.805 0 1.064-.577 1.781-1.42 1.781"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/davinciresolve.svg���������������������������0000664�0000000�0000000�00000003240�14753064456�0026637�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.621 0 5.977.004c-1.37 0-2.756.345-3.762 1.11a4.9 4.9 0 0 0-1.61 2.003C.233 3.93 0 5.02 0 5.951l.012 12.2c.002 1.604.479 3.057 1.461 4.112.984 1.056 2.462 1.683 4.331 1.691L16.856 24c1.26.005 3.095-.036 4.303-.714 1.075-.605 2.025-1.556 2.497-2.984.278-.84.345-2.084.344-3.147l-.021-11.13c-.002-.888-.15-2.023-.547-2.934-.425-.976-1.181-1.815-2.322-2.425C20.353.26 19.123 0 17.622 0zm0 .93c1.378 0 2.538.295 3.04.565.977.523 1.544 1.166 1.889 1.96.315.721.47 1.793.473 2.572l.018 11.13c.002 1.013-.097 2.257-.298 2.86-.396 1.202-1.146 1.946-2.063 2.462-.814.457-2.612.593-3.82.588l-11.05-.044c-1.657-.007-2.832-.534-3.626-1.386-.792-.851-1.212-2.06-1.212-3.485L.999 5.95c0-.829.196-1.827.474-2.437.345-.757.75-1.207 1.365-1.674C3.585 1.27 4.868.97 6.08.97zm-5.66 3.423c-1.976.089-3.204 1.658-3.214 3.29.019 1.443 1.635 3.481 2.884 4.53.12.099.154.109.33.18.062.025.198-.047.327-.135.36-.245.993-.947 1.648-1.738a7.7 7.7 0 0 0 1.031-1.683c.409-.89.261-1.599.235-1.888a4 4 0 0 0-.99-1.692 3.36 3.36 0 0 0-2.251-.864m4.172 7.922a10.2 10.2 0 0 0-3.244.61c-.15.058-.26.1-.374.17-.057.036-.11.135-.105.292.017.433.29 1.278.624 2.27.384 1.135 1.066 2.27 1.844 2.74a3.23 3.23 0 0 0 2.53.342c.832-.243 1.595-.868 1.962-1.546.986-1.818.19-3.548-1.121-4.417-.447-.296-1.133-.445-1.89-.46q-.111-.001-.226-.001m-8.432.038a6 6 0 0 0-.752.047c-.596.078-.932.273-1.29.51a3.18 3.18 0 0 0-1.365 1.979c-.075.552-.086 1.053.033 1.507.433 1.389 1.326 2.222 2.847 2.452.636.028 1.37-.063 1.99-.45 1.269-.782 2.08-3.17 2.412-4.742.053-.176.035-.357-.013-.42-.005-.067-.044-.113-.19-.183-.398-.192-1.32-.417-2.375-.6a7.7 7.7 0 0 0-1.297-.1"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dazhongdianping.svg��������������������������0000664�0000000�0000000�00000001765�14753064456�0027000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.922 0c-2.407 0-3.28.25-4.16.72A4.9 4.9 0 0 0 .72 2.763C.25 3.642 0 4.515 0 6.922v10.156c0 2.407.25 3.28.72 4.16a4.9 4.9 0 0 0 2.042 2.041c.88.47 1.753.721 4.16.721h10.156c2.407 0 3.28-.25 4.16-.72a4.9 4.9 0 0 0 2.041-2.042c.471-.88.721-1.753.721-4.16V6.922c0-2.407-.25-3.28-.72-4.16A4.9 4.9 0 0 0 21.237.72C20.358.25 19.485 0 17.078 0zm3.139 2.703a3.07 3.07 0 0 1 3.07 3.07 3.07 3.07 0 0 1-3.07 3.07 3.07 3.07 0 0 1-3.07-3.07 3.07 3.07 0 0 1 3.07-3.07m6.994 1.617c.145.66.195 1.35.13 2.057-.17 1.88-1.105 3.52-2.48 4.656 3.177.427 5.685 2.65 6.514 5.5.08.22.148.486.217.723l-2.688.685c-.06-.222-.127-.452-.19-.67-.751-2.622-3.55-4.172-6.273-3.466-2.718.704-4.338 3.391-3.642 6.021l.199.729-2.688.687c-.07-.247-.132-.512-.195-.754a7.4 7.4 0 0 1-.215-2.554c.199-2.2 1.345-4.1 3.014-5.36-2.634-.47-4.716-2.312-5.506-4.678l2.62-.677c.566 1.534 2.012 2.689 3.8 2.84 2.446.207 4.604-1.544 4.818-3.91.036-.394.013-.78-.056-1.151l2.62-.678z"/></svg>�����������mkdocs-material-9.6.4/material/templates/.icons/simple/dazn.svg�������������������������������������0000664�0000000�0000000�00000003333�14753064456�0024561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.774 8.291.772-2.596.79 2.596zm3.848 2.268-2.025-6.128q-.068-.203-.154-.266a.5.5 0 0 0-.28-.063h-1.12a.5.5 0 0 0-.284.068q-.09.067-.149.261l-2.045 6.128q-.038.048-.038.192 0 .223.27.223h.84q.114 0 .187-.01a.2.2 0 0 0 .116-.048.3.3 0 0 0 .077-.116q.033-.077.072-.202l.318-1.071h2.306l.327 1.051q.038.134.077.213a.4.4 0 0 0 .087.12q.047.043.114.053h.002q.068.01.173.01h.897q.27 0 .27-.223a1 1 0 0 0-.005-.09 1 1 0 0 0-.036-.108zm-.994 2.467h-.646q-.252 0-.333.072-.082.073-.082.295v3.638l-1.91-3.647q-.114-.232-.226-.295-.111-.062-.39-.063h-.599q-.25 0-.332.073t-.082.294v6.138q0 .222.077.294t.328.072h.656q.25 0 .332-.072t.082-.294v-3.648l1.91 3.657q.115.232.227.295.11.063.39.062h.598q.25 0 .333-.072.082-.072.082-.294v-6.138q0-.222-.082-.294-.082-.073-.333-.073m3.203-.581 1.665 1.665v8.385H1.505V14.11l1.663-1.664a.63.63 0 0 0 0-.89L1.504 9.891V1.505h20.991v8.384l-1.665 1.666a.63.63 0 0 0 0 .89zM24 0H0v10.613L1.387 12 0 13.387V24h24V13.387L22.613 12 24 10.613zM10.67 18.469H7.96l2.855-4.014a.7.7 0 0 0 .087-.155.4.4 0 0 0 .019-.135v-.772q0-.222-.082-.294-.082-.073-.334-.073H6.382q-.223 0-.29.082-.068.082-.068.343v.58q0 .259.068.341.067.083.29.083h2.545L6.11 18.469a.44.44 0 0 0-.107.27v.792q0 .221.082.294.083.072.334.072h4.25q.222 0 .29-.081.068-.083.068-.344v-.579q0-.26-.068-.342t-.29-.082zM9.408 8.233q0 .396-.052.661a1.1 1.1 0 0 1-.174.43.65.65 0 0 1-.318.231 1.5 1.5 0 0 1-.487.068h-.79v-4.17h.79q.55.002.79.324.24.323.241 1.067zm1.38-2.789q-.338-.686-.921-1.013-.585-.328-1.47-.328H6.418q-.25 0-.333.072-.082.074-.082.294v6.138q0 .222.082.295t.333.072h2.218q1.572 0 2.15-1.342.135-.308.188-.622a5 5 0 0 0 .054-.796V6.911q0-.55-.054-.868a2.2 2.2 0 0 0-.193-.612z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dbeaver.svg����������������������������������0000664�0000000�0000000�00000003371�14753064456�0025237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.111 0a3.3 3.3 0 0 0-1.746.55 8.4 8.4 0 0 0-2.748 2.544 6.7 6.7 0 0 1-1.344 0c-.32 0-.788.209-.574.963.215.753.798 1.497.75 1.923a3.7 3.7 0 0 0-.068.805c-.298.472-1.69 2.743-2.113 4.549 0 0 .795-7.967-1.645-9.33s-4.404-.277-5.06 1.52c-1.403 3.832.675 9.825 3.605 14.661s5.713 5.709 7.686 5.795c3.298.145 2.338-.57 3.523-.64s1.012.64 2.984.365c1.438-.208 1.685-1.17 1.141-1.603s-.363-1.484.156-3.72c.519-2.235-.224-6.17-.746-7.183s-.464-1.53.09-2.527a6.2 6.2 0 0 0 .85-2.506 3.9 3.9 0 0 0 0-1.043V5.05s-.344 1.375-1.02 1.869a10 10 0 0 0-.32.244c.067-.257.32-1.34-.041-1.924 0 0-.151 2.488-1.477 2.62-1.326.13-3.202-1.225-3.73-1.77.038.21.068.268.109.43q.066.226.156.445c.186.6.384 1.517.086 2.092-.464.91-1.475 2.313-1.373 4.314a8.5 8.5 0 0 0 .803 3.527c.39.988.493 1.9.416 2.057s.027.961-1.815-.418c-1.84-1.38-2.338-2.807-2.338-2.807a5.9 5.9 0 0 0-.335 2.496 15.5 15.5 0 0 0 .777 3.561S9.335 19.83 9.207 15.91c-.122-3.602 1.986-7.769 2.322-8.41a1.06 1.06 0 0 0 .701.588s-.939-.518-.254-2.526c.686-2.007 2.067-3.794 3.463-4.58A4 4 0 0 1 19.31.785a3.28 3.28 0 0 0-1.933-.78A3 3 0 0 0 17.111 0m-1.39 1.865a1 1 0 0 0-.221.026c-.352.077-.54.49-.297 1a.8.8 0 0 1 .066.361.8.8 0 0 1-.095.355 5 5 0 0 1 .91-.716 4.4 4.4 0 0 1 1.217-.44 1.43 1.43 0 0 1-.725-.22 1.14 1.14 0 0 0-.492-.313 1.1 1.1 0 0 0-.363-.053m4.87.174c-.503 0-1.172.114-1.687.316a1.34 1.34 0 0 0-.761.563c-.279.642 1.417 1.705 2.1 1.506.32-.093.795-.789 1.003-1.395.141-.433.16-.818-.1-.918a1.7 1.7 0 0 0-.554-.072m.225 5.33s-.346 1.181-.59 1.717c-.21.475-.278.436-.435.49a4.4 4.4 0 0 0 .176-.664c.093-.391 0-.494 0-.494a4.2 4.2 0 0 1-.463 1.283 1 1 0 0 1-.64.04c-.26-.107-.305-1.327-.305-1.397a2.5 2.5 0 0 0 1.255-.192 2.5 2.5 0 0 0 1.002-.783"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dblp.svg�������������������������������������0000664�0000000�0000000�00000001000�14753064456�0024533�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.075.002c-.096.013-.154.092-.094.31L4.97 7.73 3.1 8.6s-.56.26-.4.85l2.45 9.159s.16.59.72.33l6.169-2.869 1.3-.61s.52-.24.42-.79l-.01-.06-1.13-4.22-.658-2.45-.672-2.49v-.04s-.16-.59-.84-1L3.5.141s-.265-.16-.425-.139M18.324 5.03a.7.7 0 0 0-.193.06l-5.602 2.6.862 3.2 1.09 4.08.01.06c.05.47-.411.79-.411.79l-1.88.87.5 1.89.04.1c.07.17.28.6.81.91l6.95 4.269s.68.41.52-.17l-1.981-7.4 1.861-.86s.56-.26.4-.85L18.85 5.42s-.116-.452-.526-.39"/></svg>mkdocs-material-9.6.4/material/templates/.icons/simple/dbt.svg��������������������������������������0000664�0000000�0000000�00000001657�14753064456�0024405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.9 9.376a8.15 8.15 0 0 0-3.042-3.12l1.771.838a10.3 10.3 0 0 1 3.74 3l3.234-5.929a2.86 2.86 0 0 0-.061-2.96 2.726 2.726 0 0 0-3.567-.872L14.1 3.543a4.36 4.36 0 0 1-4.176 0L4.177.408a2.86 2.86 0 0 0-2.96.063 2.726 2.726 0 0 0-.872 3.566L3.55 9.91a4.36 4.36 0 0 1 0 4.177L.423 19.83a2.86 2.86 0 0 0 .085 2.997 2.726 2.726 0 0 0 3.545.839l6.058-3.305a10.3 10.3 0 0 1-3.005-3.746l-.838-1.77a8.15 8.15 0 0 0 3.12 3.042l10.584 5.779a2.726 2.726 0 0 0 3.543-.837 2.87 2.87 0 0 0 .08-3.001zm3.38-7.735a1.09 1.09 0 1 1 0 2.181 1.09 1.09 0 0 1 0-2.18M2.744 3.822a1.09 1.09 0 1 1 0-2.18 1.09 1.09 0 0 1 0 2.18m0 18.536a1.09 1.09 0 1 1 0-2.18 1.09 1.09 0 0 1 0 2.18M13.103 10.91a2.174 2.174 0 0 0-2.18 2.168 2.17 2.17 0 0 0 .704 1.61 2.72 2.72 0 1 1 .758-5.386 2.72 2.72 0 0 1 2.314 2.314 2.16 2.16 0 0 0-1.596-.706m8.177 11.45a1.09 1.09 0 1 1 0-2.182 1.09 1.09 0 0 1 0 2.181"/></svg>���������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dcentertainment.svg��������������������������0000664�0000000�0000000�00000002410�14753064456�0027004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.215 8.787h2.154c.601 0 1.088.487 1.088 1.088v4.954c0 .6-.487 1.088-1.088 1.088H6.05V9.475a.16.16 0 0 0-.066-.129zM12 23.099a11.08 11.08 0 0 1-8.659-4.155.046.046 0 0 1 .036-.074h5.936a.26.26 0 0 0 .153-.05l2.27-1.648a.16.16 0 0 0 .064-.128V7.616a.16.16 0 0 0-.065-.129L9.466 5.84a.26.26 0 0 0-.153-.05H2.886a.046.046 0 0 1-.037-.071A11.09 11.09 0 0 1 12 .9c3.798 0 7.15 1.907 9.151 4.817a.046.046 0 0 1-.038.071h-1.597c-.052 0-.1.03-.123.079l-.353.757-1.082-.786a.26.26 0 0 0-.153-.05h-2.553a.26.26 0 0 0-.154.05L12.83 7.487a.16.16 0 0 0-.065.129v9.428c0 .05.024.098.065.128l2.27 1.648a.26.26 0 0 0 .153.05h5.371c.038 0 .06.045.036.074A11.08 11.08 0 0 1 12 23.1zM1.602 8.3l1.038.755c.043.03.068.08.068.132v8.73c0 .046-.06.063-.084.025A11.05 11.05 0 0 1 .901 12c0-1.289.22-2.526.624-3.677a.05.05 0 0 1 .077-.024zm13.67.488h3.225v1.776c0 .046.038.084.084.084h2.701a.1.1 0 0 0 .096-.083l.535-3.374a.046.046 0 0 1 .086-.013 11.05 11.05 0 0 1 1.1 4.823 11.05 11.05 0 0 1-1.39 5.382c-.022.04-.084.024-.084-.023v-3.084a.084.084 0 0 0-.084-.084h-2.96a.084.084 0 0 0-.084.084v1.642h-1.301a1.09 1.09 0 0 1-1.089-1.088V9.475a.16.16 0 0 0-.065-.129zM12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/debian.svg�����������������������������������0000664�0000000�0000000�00000005266�14753064456�0025056�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.88 12.685c-.4 0 .08.2.601.28.14-.1.27-.22.39-.33a3 3 0 0 1-.99.05m2.14-.53c.23-.33.4-.69.47-1.06-.06.27-.2.5-.33.73-.75.47-.07-.27 0-.56-.8 1.01-.11.6-.14.89m.781-2.05c.05-.721-.14-.501-.2-.221.07.04.13.5.2.22M12.38.31c.2.04.45.07.42.12.23-.05.28-.1-.43-.12m.43.12-.15.03.14-.01V.43m6.633 9.944c.02.64-.2.95-.38 1.5l-.35.181c-.28.54.03.35-.17.78-.44.39-1.34 1.22-1.62 1.301-.201 0 .14-.25.19-.34-.591.4-.481.6-1.371.85l-.03-.06c-2.221 1.04-5.303-1.02-5.253-3.842-.03.17-.07.13-.12.2a3.55 3.55 0 0 1 2.001-3.501 3.36 3.36 0 0 1 3.732.48 3.34 3.34 0 0 0-2.721-1.3c-1.18.01-2.281.76-2.651 1.57-.6.38-.67 1.47-.93 1.661-.361 2.601.66 3.722 2.38 5.042.27.19.08.21.12.35a4.7 4.7 0 0 1-1.53-1.16c.23.33.47.66.8.91-.55-.18-1.27-1.3-1.48-1.35.93 1.66 3.78 2.921 5.261 2.3a6.2 6.2 0 0 1-2.33-.28c-.33-.16-.77-.51-.7-.57a5.802 5.803 0 0 0 5.902-.84c.44-.35.93-.94 1.07-.95-.2.32.04.16-.12.44.44-.72-.2-.3.46-1.24l.24.33c-.09-.6.74-1.321.66-2.262.19-.3.2.3 0 .97.29-.74.08-.85.15-1.46.08.2.18.42.23.63-.18-.7.2-1.2.28-1.6-.09-.05-.28.3-.32-.53 0-.37.1-.2.14-.28-.08-.05-.26-.32-.38-.861.08-.13.22.33.34.34-.08-.42-.2-.75-.2-1.08-.34-.68-.12.1-.4-.3-.34-1.091.3-.25.34-.74.54.77.84 1.96.981 2.46-.1-.6-.28-1.2-.49-1.76.16.07-.26-1.241.21-.37A7.82 7.82 0 0 0 17.702 1.6c.18.17.42.39.33.42-.75-.45-.62-.48-.73-.67-.61-.25-.65.02-1.06 0C15.082.73 14.862.8 13.8.4l.05.23c-.77-.25-.9.1-1.73 0-.05-.04.27-.14.53-.18-.741.1-.701-.14-1.431.03.17-.13.36-.21.55-.32-.6.04-1.44.35-1.18.07C9.6.68 7.847 1.3 6.867 2.22L6.838 2c-.45.54-1.96 1.611-2.08 2.311l-.131.03c-.23.4-.38.85-.57 1.261-.3.52-.45.2-.4.28-.6 1.22-.9 2.251-1.16 3.102.18.27 0 1.65.07 2.76-.3 5.463 3.84 10.776 8.363 12.006.67.23 1.65.23 2.49.25-.99-.28-1.12-.15-2.08-.49-.7-.32-.85-.7-1.34-1.13l.2.35c-.971-.34-.57-.42-1.361-.67l.21-.27c-.31-.03-.83-.53-.97-.81l-.34.01c-.41-.501-.63-.871-.61-1.161l-.111.2c-.13-.21-1.52-1.901-.8-1.511-.13-.12-.31-.2-.5-.55l.14-.17c-.35-.44-.64-1.02-.62-1.2.2.24.32.3.45.33-.88-2.172-.93-.12-1.601-2.202l.15-.02c-.1-.16-.18-.34-.26-.51l.06-.6c-.63-.74-.18-3.102-.09-4.402.07-.54.53-1.1.88-1.981l-.21-.04c.4-.71 2.341-2.872 3.241-2.761.43-.55-.09 0-.18-.14.96-.991 1.26-.7 1.901-.88.7-.401-.6.16-.27-.151 1.2-.3.85-.7 2.421-.85.16.1-.39.14-.52.26 1-.49 3.151-.37 4.562.27 1.63.77 3.461 3.011 3.531 5.132l.08.02c-.04.85.13 1.821-.17 2.711l.2-.42M9.54 13.236l-.05.28c.26.35.47.73.8 1.01-.24-.47-.42-.66-.75-1.3m.62-.02c-.14-.15-.22-.34-.31-.52.08.32.26.6.43.88zm10.945-2.382-.07.15c-.1.76-.34 1.511-.69 2.212.4-.73.65-1.541.75-2.362M12.45.12c.27-.1.66-.05.95-.12-.37.03-.74.05-1.1.1zM3.006 5.142c.07.57-.43.8.11.42.3-.66-.11-.18-.1-.42m-.64 2.661c.12-.39.15-.62.2-.84-.35.44-.17.53-.2.83"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/debridlink.svg�������������������������������0000664�0000000�0000000�00000001525�14753064456�0025735�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.225 5.549 0 5.778v2.484l.253.25h2.912c3.16 0 3.252.003 3.75.146 1.053.3 1.658 1.022 1.893 2.256.052.27.059.395.06 1.034 0 .635-.008.766-.058 1.044-.256 1.401-.98 2.149-2.308 2.382-.252.045-.446.05-2.14.05H2.497l-.013-2.335-.014-2.335-.222-.207H.227L0 10.769v7.379l.253.249h2.774c1.526-.001 2.96-.013 3.184-.027 1.906-.117 3.257-.803 4.114-2.09.512-.77.81-1.654.98-2.905.06-.456.07-2.266.012-2.736-.141-1.158-.44-2.1-.9-2.84-.67-1.077-1.743-1.81-3.056-2.087-.708-.15-.514-.142-3.951-.153Zm12.614.002-.233.232.01 4.94c.008 4.933.008 4.938.065 5.229.086.439.155.66.298.96.394.828.996 1.27 2.008 1.475.206.042.581.047 4.491.055l4.267.01L24 18.2v-2.489l-.24-.236-3.878-.013-3.878-.013-.152-.062a1.03 1.03 0 0 1-.601-.605c-.133-.35-.13-.258-.131-4.775l-.001-4.226-.23-.23h-1.026z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/decapcms.svg���������������������������������0000664�0000000�0000000�00000000516�14753064456�0025404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.947 13.177c0 3.263-2 5.649-4.736 5.649h-2.773v-5.65H6.282v10.387h7.93c5.403 0 9.788-4.668 9.788-10.386h-5.052ZM7.894.476 0 1.212l.948 10.352 5.157-.456-.526-5.615 2.737-.245c2.737-.246 4.91 1.93 5.227 5.193l5.052-.458c-.49-5.752-5.297-9.998-10.7-9.507Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/decentraland.svg�����������������������������0000664�0000000�0000000�00000001437�14753064456�0026254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.925 18.978h3.134L16.925 15.2ZM8.418 9.555v6.623h5.507ZM12.044 0C5.418 0 0 5.333 0 11.956c0 1.466.269 2.888.761 4.177l4.657-5.555 2.686-3.245 6.537 7.822 1.88-2.266 4.926 5.866h.403c1.388-1.955 2.149-4.31 2.149-6.844C24.089 5.333 18.67 0 12.044 0M8.06 6.267c-.94 0-1.656-.756-1.656-1.645s.76-1.644 1.656-1.644c.94 0 1.657.755 1.657 1.644 0 .89-.716 1.645-1.657 1.645m8.731 5.377a3.294 3.294 0 0 1-3.313-3.288 3.294 3.294 0 0 1 3.313-3.29 3.294 3.294 0 0 1 3.314 3.29c.044 1.822-1.478 3.288-3.314 3.288m-3.985 5.734H1.165c.268.533.581 1.022.895 1.51h9.447Zm-8.327 4.044h14.999c.492-.4 1.03-.889 1.343-1.244H3.134c.448.444.896.889 1.343 1.244M12.044 24c1.97 0 3.851-.445 5.508-1.29H6.537c1.657.845 3.493 1.29 5.507 1.29z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dedge.svg������������������������������������0000664�0000000�0000000�00000000535�14753064456�0024676�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.986 0v8.338C16.09 2.93 7.61 2.8 3.74 8.733-.523 15.27 4.191 23.99 11.996 24h.001c5.447-.003 9.872-4.43 9.87-9.877V0Zm-7.99 6.14a8.004 8.004 0 0 1 7.99 7.988 7.99 7.99 0 0 1-4.93 7.381 7.99 7.99 0 0 1-8.707-1.73 7.985 7.985 0 0 1-1.733-8.707 7.99 7.99 0 0 1 7.38-4.932"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/deepcool.svg���������������������������������0000664�0000000�0000000�00000000234�14753064456�0025414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 12v3.046H3.046V6h6V0H12v9.046H6.092V12zm8.954 3.046V18h-5.908v6H12v-8.954z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/deepgram.svg���������������������������������0000664�0000000�0000000�00000000603�14753064456�0025406�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.203 24H1.517a.364.364 0 0 1-.258-.62l6.239-6.275a.37.37 0 0 1 .259-.108h3.52c2.723 0 5.025-2.127 5.107-4.845a5.004 5.004 0 0 0-4.999-5.148H7.613v4.646c0 .2-.164.364-.365.364H.968a.365.365 0 0 1-.363-.364V.364C.605.164.768 0 .969 0h10.416c6.684 0 12.111 5.485 12.01 12.187C23.293 18.77 17.794 24 11.202 24z"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/deepin.svg�����������������������������������0000664�0000000�0000000�00000002451�14753064456�0025071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.104.696c-1.724-.63-3.49-.8-5.205-.64-1.988.157-2.958.772-2.9.661-3.251 1.16-6 3.657-7.272 7.157-2.266 6.234.944 13.128 7.168 15.398 6.228 2.27 13.111-.945 15.378-7.179C25.54 9.86 22.33 2.966 16.104.696M8.305 22.145a10.8 10.8 0 0 1-1.867-.904c2.9.223 6.686-.445 9.239-2.834 0 0 4.866-3.888 1.345-10.269 0 0 .568 2.572-.156 4.687 0 0-.69 2.877-3.757 3.712-4.517 1.231-9.664-1.93-11.816-3.463-.162-1.574-.018-3.2.56-4.788.855-2.352 2.463-4.188 4.427-5.42-.49 3.436-.102 6.6.456 7.925.749 1.777 2.05 3.85 4.59 4.115 2.54.267 3.94-2.11 3.94-2.11 1.304-1.98 1.508-4.823 1.488-4.892-.02-.07-.347-.257-.347-.257-.877 3.549-2.323 4.734-2.323 4.734-2.28 2.201-3.895.675-3.895.675-1.736-1.865-.52-4.895-.52-4.895.68-2.064 2.66-5.084 4.905-6.62.374.092.75.15 1.12.284a10.7 10.7 0 0 1 3.554 2.16c-1.641.599-4.291 1.865-4.291 1.865-4.201 1.77-4.485 4.446-4.485 4.446-.435 2.758 1.754 1.59 1.754 1.59 2.252-1.097 3.359-4.516 3.359-4.516-.703-.134-1.257.08-1.257.08-.899 2.22-2.733 3.132-2.733 3.132-.722.382-.89-.293-.89-.293-.122-.506.522-.592.522-.592 1-.389 1.639-1.439 1.784-1.868.144-.43.412-.464.412-.464a13 13 0 0 1 2.619-.535c1.7-.209 4.303.602 4.303.602.584.235 1.144.41 1.641.551.954 2.384 1.105 5.098.16 7.7-2.039 5.61-8.236 8.504-13.841 6.462"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/deepl.svg������������������������������������0000664�0000000�0000000�00000001377�14753064456�0024724�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.907 4.94 12.685.186a1.36 1.36 0 0 0-1.37 0l-8.222 4.77a1.38 1.38 0 0 0-.686 1.183v9.526a1.38 1.38 0 0 0 .686 1.194l8.222 4.76.062.035L15.425 24l-.011-2.061.008-1.145.003.02v-.385a.69.69 0 0 1 .296-.56l.264-.151.127-.07h-.008l4.803-2.78a1.38 1.38 0 0 0 .686-1.195V6.135a1.38 1.38 0 0 0-.686-1.195m-9.853 9.688a1.43 1.43 0 0 1-.4 1.384 1.41 1.41 0 0 1-1.97 0 1.42 1.42 0 0 1 0-2.063 1.41 1.41 0 0 1 2.042.076l3.328-1.916.687.386zm5.77-2.414a1.41 1.41 0 0 1-1.97 0 1.43 1.43 0 0 1-.37-1.478l-.013.008L10.72 8.57l-.057.057a1.41 1.41 0 0 1-1.97 0 1.42 1.42 0 0 1 0-2.063 1.41 1.41 0 0 1 1.972 0c.394.377.524.918.39 1.407l3.781 2.2.019-.019a1.41 1.41 0 0 1 1.972 0 1.427 1.427 0 0 1 0 2.061z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/deepnote.svg���������������������������������0000664�0000000�0000000�00000000706�14753064456�0025431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.22 11.506.111.018q-.057-.008-.111-.018m4.475 8.073c.636-2.816-2.172-4.8-6.955-4.814L.713 24h9.586c.132-.025.256-.056.384-.085 2.258-1.057 3.598-2.501 4.012-4.336M10.299 24h.203l.021-.01q-.111.006-.224.01M24 11.319Q24-.934 8.134.077L0 11.319h7.568c3.323 0 8.457.719 8.457 6.153q0 5.433-5.727 6.528.147-.006.291-.013l-.011.001-.076.012h.912l.247-.077Q23.999 22.945 24 11.319"/></svg>����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/deliveroo.svg��������������������������������0000664�0000000�0000000�00000001030�14753064456�0025605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.861 0-1.127 10.584L13.81 1.66 7.777 2.926l1.924 8.922-8.695 1.822 1.535 7.127L17.832 24l3.498-7.744L22.994.636zM11.39 13.61a.76.76 0 0 1 .322.066c.208.093.56.29.63.592.103.434.004.799-.312 1.084v.002c-.315.284-.732.258-1.174.113s-.637-.672-.47-1.309c.124-.473.71-.544 1.004-.549zm4.142.548c.447-.012.832.186 1.05.543.217.357.107.75-.122 1.143h-.002c-.229.392-.83.445-1.422.16-.399-.193-.397-.684-.353-.983a.9.9 0 0 1 .193-.447c.142-.177.381-.408.656-.416"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dell.svg�������������������������������������0000664�0000000�0000000�00000002432�14753064456�0024544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.963 14.6V9.324h1.222v4.204h2.14v1.07h-3.362zm-9.784-3.288 2.98-2.292q.42.343.841.687l-2.827 2.14.611.535 2.827-2.216q.42.343.841.688a296 296 0 0 1-2.827 2.216l.61.536 2.83-2.295-.001-1.986h1.223v4.204h2.216v1.07h-3.362v-1.987q-1.491 1.146-2.981 2.292l-2.981-2.292c-.144.729-.653 1.36-1.312 1.694a2.7 2.7 0 0 1-.915.276c-.183.022-.367.017-.551.017H3.516V9.325H5.69a2.54 2.54 0 0 1 1.563.557c.454.36.778.872.927 1.43m-3.516-.917v3.21l.953-.001a1.38 1.38 0 0 0 1.036-.523 1.74 1.74 0 0 0 .182-1.889 1.5 1.5 0 0 0-.976-.766c-.166-.04-.338-.03-.507-.032zM11.82 0h.337a11.94 11.94 0 0 1 5.405 1.373 12.1 12.1 0 0 1 4.126 3.557A11.93 11.93 0 0 1 24 11.82v.36a11.96 11.96 0 0 1-3.236 8.033A11.97 11.97 0 0 1 12.182 24h-.361a12 12 0 0 1-4.145-.806 12 12 0 0 1-4.274-2.836A12.06 12.06 0 0 1 .576 15.67 12 12 0 0 1 0 12.181v-.361a11.92 11.92 0 0 1 1.992-6.396 12.2 12.2 0 0 1 4.71-4.172A11.9 11.9 0 0 1 11.82 0m-.153 1.23a10.72 10.72 0 0 0-6.43 2.375 10.8 10.8 0 0 0-3.319 4.573 10.86 10.86 0 0 0 .193 8.12 10.8 10.8 0 0 0 3.546 4.421 10.7 10.7 0 0 0 4.786 1.946c1.456.209 2.955.124 4.376-.26a10.76 10.76 0 0 0 5.075-3.062 10.74 10.74 0 0 0 2.686-5.28 10.9 10.9 0 0 0-.122-4.682 10.77 10.77 0 0 0-7.098-7.626 10.8 10.8 0 0 0-3.693-.525"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/delonghi.svg���������������������������������0000664�0000000�0000000�00000007165�14753064456�0025425�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.16 8.158H3.841A3.85 3.85 0 0 0 0 11.999a3.85 3.85 0 0 0 3.841 3.843H20.16A3.844 3.844 0 0 0 24 11.999a3.846 3.846 0 0 0-3.84-3.841m-.051 7.409H3.885A3.564 3.564 0 0 1 .319 12a3.564 3.564 0 0 1 3.566-3.571h16.224A3.566 3.566 0 0 1 23.68 12a3.564 3.564 0 0 1-3.571 3.567m-3.84-3.864q.125-.001.177.043v1.034a1 1 0 0 1-.177.043q-.094-.004-.133-.084a.7.7 0 0 1-.036-.252v-.544q.002-.24.169-.24m-4.635.137v.829a.4.4 0 0 1-.036.195q-.04.053-.119.053-.082 0-.124-.049-.035-.053-.036-.198v-.83q.001-.219.155-.217.16-.002.16.217m-4.9-.062a1 1 0 0 1 .014.159h-.346q0-.092.014-.164c0-.022.008-.044.013-.066.018-.058.067-.084.137-.084q.119-.002.151.084c.004.022.013.044.017.071M4.24 11.02q.067.06.067.234v1.224q0 .173-.054.226a.3.3 0 0 1-.177.062h-.12v-1.803h.08q.139 0 .204.057m15.892-1.723H3.881a2.71 2.71 0 0 0-2.702 2.702 2.71 2.71 0 0 0 2.702 2.703h16.243a2.71 2.71 0 0 0 2.697-2.703c0-1.475-1.192-2.702-2.689-2.702M5.676 10.574H7.55v.248H5.676zm-.39 1.288v.7q0 .226-.085.42a.67.67 0 0 1-.302.325q-.214.127-.58.127H2.84v-.562q.086-.035.107-.103a.7.7 0 0 0 .022-.185v-1.48a.5.5 0 0 0-.026-.181q-.021-.06-.102-.093v-.557h1.48q.333-.002.544.096c.142.063.253.16.32.289.066.133.103.298.103.492v.712zm2.295.625H6.402v.209a.5.5 0 0 0 .027.181c.023.044.067.072.137.072q.107 0 .133-.067a.5.5 0 0 0 .031-.177v-.085h.851v.568q-.125.119-.429.212a2 2 0 0 1-1.193 0 .6.6 0 0 1-.324-.27.93.93 0 0 1-.097-.456v-.895a.9.9 0 0 1 .128-.417.58.58 0 0 1 .329-.221q.219-.06.571-.062.332 0 .537.057a.7.7 0 0 1 .306.172q.104.113.137.254c.013.066.027.137.031.217q.006.06.005.127zm2.644.947H7.922v-.562q.112-.067.111-.239v-1.574q0-.164-.111-.23v-.557h1.205v.557a.2.2 0 0 0-.088.107.6.6 0 0 0-.031.19 1 1 0 0 1 .008.123v1.516h.124c.093-.009.155-.035.181-.089a.6.6 0 0 0 .041-.252v-.522h.863zm2.274-1.165v.416a.9.9 0 0 1-.107.47.6.6 0 0 1-.319.258 1.6 1.6 0 0 1-.549.079q-.407-.006-.634-.084a.56.56 0 0 1-.332-.257q-.101-.177-.102-.487v-.811a.9.9 0 0 1 .094-.434q.087-.172.314-.258.227-.085.611-.084.374.002.594.071a.58.58 0 0 1 .324.239q.107.172.107.479zm2.499 1.165h-.922a1 1 0 0 1-.031-.225 2 2 0 0 1-.014-.235q-.005-.112-.004-.279v-.775a.195.195 0 0 0-.204-.204c-.04 0-.08.011-.11.023v.878q0 .132.013.195.018.059.088.106v.518h-1.076v-.518a.23.23 0 0 0 .093-.096.4.4 0 0 0 .017-.143v-.771a.6.6 0 0 0-.017-.172.24.24 0 0 0-.093-.102v-.528h.935v.151q.291-.207.584-.208.273.007.412.119.141.114.181.253a1 1 0 0 1 .041.265v1.001c0 .053.009.098.018.137a.18.18 0 0 0 .089.09zm2.419-1.807a.2.2 0 0 0-.094.102.7.7 0 0 0-.017.164v1.594q0 .303-.08.496a.6.6 0 0 1-.305.299q-.233.1-.656.101a2 2 0 0 1-.492-.062 1.7 1.7 0 0 1-.47-.2v-.571h.797q0 .257.178.256.112-.006.138-.088a.8.8 0 0 0 .03-.234v-.169a.93.93 0 0 1-.527.159q-.353-.004-.518-.191c-.106-.123-.164-.296-.164-.518v-.899q0-.368.147-.581c.094-.138.28-.209.545-.209q.14-.002.288.045a.7.7 0 0 1 .253.124v-.142h.949v.524zm2.503 1.807h-.917a5 5 0 0 1-.053-.553c.009-.066.009-.159.009-.274v-.643a.26.26 0 0 0-.062-.172.21.21 0 0 0-.155-.076.3.3 0 0 0-.097.023v.966c0 .111.031.186.097.213v.518H17.67v-.518a.23.23 0 0 0 .093-.102.7.7 0 0 0 .017-.187v-1.515c0-.195-.039-.307-.119-.324v-.517h.983v.947a.8.8 0 0 1 .266-.128.9.9 0 0 1 .27-.044.77.77 0 0 1 .452.146c.124.094.19.253.19.483v.896a.4.4 0 0 1-.008.075.7.7 0 0 0 .026.181c.009.032.04.062.08.085zm.389-3.091a.53.53 0 0 1 .328-.102q.127.002.234.045a.36.36 0 0 1 .173.124.3.3 0 0 1 .067.19v.008a.3.3 0 0 1-.063.191.46.46 0 0 1-.172.124.7.7 0 0 1-.24.04.5.5 0 0 1-.323-.098.324.324 0 0 1-.004-.522m.913 3.091h-1.081v-.518c.053-.035.084-.067.092-.106a.6.6 0 0 0 .018-.183v-.743a.5.5 0 0 0-.018-.159.16.16 0 0 0-.092-.099v-.523h.974v1.604c0 .103.036.169.106.209z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/delphi.svg�����������������������������������0000664�0000000�0000000�00000016621�14753064456�0025076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.922 10.66a11.9 11.9 0 0 0-1.93-5.299 12 12 0 0 0-1.362-1.692A12 12 0 0 0 15.271.455a12 12 0 0 0-2.88-.444c-.237-.005-.474-.015-.71-.004-.345.016-.69.036-1.033.077q-.579.07-1.15.182a11.95 11.95 0 0 0-4.906 2.297A12 12 0 0 0 .394 8.94a12 12 0 0 0-.393 2.883q-.013.765.073 1.526a11.95 11.95 0 0 0 3.103 6.79 11.98 11.98 0 0 0 8.442 3.858c.013 0 .818-.002.868-.004q.777-.032 1.543-.162a11.95 11.95 0 0 0 6.173-3.072 11.98 11.98 0 0 0 3.667-7.028c.053-.406.087-.815.113-1.224.038-.617.006-1.234-.062-1.848zM4.5 11.777c-.052.3-.094.601-.097.906-.003.253-.005.506.004.76.005.148.031.297.051.445.033.252-.067.455-.297.56a.5.5 0 0 1-.227.035c-.217-.019-.433-.05-.65-.077-.073-.01-.147-.017-.22-.03-.017-.003-.04-.025-.042-.041-.041-.249-.086-.497-.115-.747-.024-.206-.03-.413-.043-.62-.006-.118-.014-.236-.013-.355.002-.197.005-.394.017-.59q.021-.327.06-.653.028-.267.083-.529c.062-.29.134-.579.207-.867q.106-.412.273-.804c.08-.187.15-.377.235-.56q.135-.293.295-.573c.12-.21.251-.414.382-.619q.125-.196.26-.384c.074-.102.155-.197.234-.295q.106-.134.217-.263a8 8 0 0 1 .25-.274q.184-.192.373-.378.13-.13.27-.248c.173-.145.346-.293.528-.427q.341-.252.697-.483c.186-.12.375-.235.572-.336.253-.129.513-.244.773-.359q.239-.105.486-.19a11 11 0 0 1 1.312-.359c.279-.05.56-.086.841-.12.194-.023.39-.042.586-.044.312-.003.625-.004.936.019.342.024.683.07 1.023.118.182.026.362.071.54.117.288.075.578.146.86.24.246.08.487.182.724.288.26.116.513.245.767.374.107.054.21.118.311.183.195.124.392.246.58.38.189.135.368.282.55.424q.022.017.05.045c-.165.109-.325.211-.481.318q-.252.175-.5.353-.158.109-.315.219-.194.14-.387.28l-.45.321q-.164.12-.327.243-.195.143-.387.288c-.217.167-.443.138-.643.003a6.5 6.5 0 0 0-1.757-.83 6 6 0 0 0-1.33-.246c-.19-.013-.381-.018-.572-.025a4.4 4.4 0 0 0-.792.047 24 24 0 0 0-.62.105 5 5 0 0 0-.795.225 6 6 0 0 0-.527.218 7 7 0 0 0-.574.294c-.178.103-.347.222-.516.339q-.163.109-.313.233-.222.188-.435.385c-.26.235-.486.5-.697.778-.132.174-.25.36-.368.545a5.8 5.8 0 0 0-.489.967 6.3 6.3 0 0 0-.368 1.271m13.278 5.496q-.264-.181-.527-.366a.5.5 0 0 1-.154-.237l-.222-.55-.21-.532q-.106-.255-.21-.512c-.071-.176-.137-.355-.213-.53-.088-.204-.14-.427-.28-.606a5 5 0 0 0-.288-.337 2.6 2.6 0 0 0-.498-.413c-.14-.09-.298-.12-.457-.148q-.673-.123-1.345-.248l-1.368-.246c-.39-.07-.78-.137-1.166-.218-.258-.054-.494.162-.518.407-.023.246.167.456.375.508.56.141 1.118.293 1.677.442.662.175 1.324.347 1.984.527.22.06.416.173.597.313.22.17.4.375.53.62.084.163.151.336.22.506q.108.266.202.534.139.402.27.806.084.246.16.492.111.356.22.712.075.245.147.49l.184.638q.073.245.144.492.107.363.204.729c.033.126-.065.268-.2.287q-.41.055-.821.104-.273.034-.546.063l-.66.07q-.42.044-.837.09c-.118.012-.236.03-.355.028a1.03 1.03 0 0 1-.688-.261c-.144-.126-.223-.292-.316-.451-.078-.135-.152-.272-.235-.403a13 13 0 0 0-.398-.602c-.134-.187-.28-.365-.423-.544a6 6 0 0 0-.229-.265 7 7 0 0 0-.757-.737 9 9 0 0 0-.641-.488 5.6 5.6 0 0 0-1.755-.803c-.436-.112-.878-.195-1.333-.187a3.5 3.5 0 0 0-.678.07c-.16.034-.309.022-.441-.089-.073-.06-.104-.144-.146-.223-.017-.032-.027-.068-.044-.109.072-.02.143-.042.216-.058a2 2 0 0 1 .227-.042c.195-.023.39-.053.584-.058.281-.007.564-.01.844.012a8 8 0 0 1 1.592.321c.24.076.473.175.704.274.387.166.727.407 1.051.673.214.175.419.36.603.567.225.252.449.506.66.77.15.186.282.389.419.587.228.332.43.681.62 1.037q.072.134.133.272c.064.153.199.2.341.183l.572-.07.7-.08q.405-.04.81-.084.312-.036.624-.08c.117-.018.202-.132.208-.254.006-.108-.045-.2-.077-.296-.089-.272-.184-.542-.276-.813q-.134-.394-.266-.787-.137-.414-.277-.826-.097-.282-.196-.563c-.054-.156-.104-.312-.16-.467q-.101-.278-.208-.555c-.037-.096-.074-.192-.12-.284a1.2 1.2 0 0 0-.482-.514c-.2-.12-.424-.159-.641-.22q-.96-.269-1.92-.533l-.825-.23c-.218-.06-.435-.129-.657-.177-.259-.057-.433-.212-.57-.427a1.3 1.3 0 0 1-.202-.583.87.87 0 0 1 .12-.546.92.92 0 0 1 .44-.382.7.7 0 0 1 .411-.041c.322.06.645.112.968.168.227.04.454.083.681.121q.402.066.803.13.29.05.579.1.336.054.671.11c.195.034.389.073.584.103.126.019.249.042.362.102.054.029.11.06.156.1q.246.219.484.447.212.204.413.42a.95.95 0 0 1 .217.392c.033.115.077.227.117.34l.167.471.212.595q.092.267.185.534l.176.497.188.544.093.268-.013.01zm.708.363a3 3 0 0 1-.37-.169c-.03-.016-.039-.076-.054-.117q-.105-.296-.206-.592l-.23-.664-.23-.653q-.14-.4-.279-.8l-.2-.565q-.054-.152-.113-.304c-.063-.161-.179-.285-.296-.407-.1-.104-.199-.209-.304-.306a18 18 0 0 0-.605-.537c-.149-.125-.334-.167-.522-.197l-.603-.098q-.37-.061-.739-.125l-.665-.113-1.026-.172q-.418-.073-.836-.145c-.197-.033-.393-.075-.591-.089-.11-.007-.226.026-.335.056a.94.94 0 0 0-.395.235q-.178.17-.272.402c-.12.306-.101.606.007.909.071.197.173.376.317.528.142.15.307.258.513.306.248.058.493.129.74.196q.66.18 1.322.362l.842.233.841.235c.266.074.48.224.621.46.07.118.117.252.168.382q.092.235.175.474.118.337.233.675l.194.567.163.489.167.477.19.562.278.816q.016.044.028.088c.01.042-.015.066-.052.07-.167.02-.335.035-.503.054q-.127.017-.253.032-.266.028-.532.058-.283.033-.566.068l-.726.082a.5.5 0 0 1-.122.005.09.09 0 0 1-.057-.037c-.068-.127-.129-.257-.198-.382a12 12 0 0 0-.733-1.196 11 11 0 0 0-.99-1.204 7 7 0 0 0-.595-.552 5.5 5.5 0 0 0-.628-.452 3.3 3.3 0 0 0-.704-.345c-.288-.093-.568-.21-.859-.29-.288-.077-.586-.116-.879-.177-.277-.057-.558-.056-.838-.072-.125-.007-.251.003-.377.01q-.215.011-.428.031a3 3 0 0 0-.247.04c-.16.03-.318.062-.491.096-.051-.16-.107-.319-.154-.481a5.5 5.5 0 0 1-.2-1.027 5.2 5.2 0 0 1-.021-1.028c.033-.479.113-.951.258-1.41.095-.3.2-.599.344-.88.096-.187.191-.374.298-.554.08-.137.178-.265.271-.394q.108-.151.225-.297.106-.126.223-.243.19-.197.392-.383c.09-.084.19-.159.288-.234.105-.08.21-.16.32-.232q.223-.143.45-.275c.135-.078.27-.157.411-.22q.318-.138.643-.257a3 3 0 0 1 .383-.12c.247-.054.495-.104.744-.14.21-.03.423-.052.634-.052q.406 0 .81.042.699.07 1.354.323a6 6 0 0 1 1.819 1.068c.207.175.409.356.583.564q.295.346.57.708c.056.074.081.174.112.266q.108.32.208.643c.086.274.167.55.252.824.064.208.133.414.198.622q.106.347.211.696l.15.477.165.534q.076.244.153.489l.117.39q.057.177.114.355l.291.928.275.865q.017.053.035.105c.02.065-.015.113-.076.09m.157-12.752a.48.48 0 0 1-.272.408.06.06 0 0 1-.054-.005c-.077-.06-.148-.127-.227-.184-.237-.173-.471-.35-.716-.512a9 9 0 0 0-.706-.428c-.246-.132-.502-.244-.756-.358a6 6 0 0 0-.501-.201q-.42-.144-.848-.267a8 8 0 0 0-1.091-.215c-.3-.042-.6-.076-.903-.081-.176-.003-.352-.015-.528-.009q-.42.014-.84.047c-.209.017-.416.05-.623.08q-.434.06-.852.183-.354.103-.705.217a5 5 0 0 0-.422.16 10.6 10.6 0 0 0-1.438.718c-.18.107-.352.232-.525.354a8 8 0 0 0-.394.296 12 12 0 0 0-.962.865c-.114.115-.219.24-.325.363-.11.128-.223.254-.327.387a9 9 0 0 0-.653.956c-.098.164-.187.334-.276.503a9 9 0 0 0-.253.51c-.08.177-.147.358-.216.54a8 8 0 0 0-.311.986c-.074.335-.149.67-.2 1.01a10 10 0 0 0-.047 2.328c.028.268.073.534.11.805-.215 0-.4-.063-.512-.256a.8.8 0 0 1-.08-.242 8 8 0 0 1-.083-.53 13 13 0 0 1-.07-.702 9 9 0 0 1-.021-.723 10.5 10.5 0 0 1 .282-2.28c.092-.394.216-.778.363-1.153.078-.198.151-.398.242-.59q.195-.41.414-.81.159-.289.346-.561c.145-.214.3-.42.455-.627q.152-.203.317-.396.16-.18.328-.353a9 9 0 0 1 .578-.56c.18-.155.359-.31.545-.456.145-.114.299-.216.45-.32.13-.09.258-.18.392-.26a13 13 0 0 1 .975-.531q.22-.103.447-.196c.116-.05.231-.101.35-.142q.372-.125.747-.24c.137-.043.275-.084.416-.112.299-.062.598-.123.9-.17a7 7 0 0 1 .743-.078q.487-.022.976-.015c.216.003.433.022.648.045a9.7 9.7 0 0 1 2.377.532c.432.16.86.332 1.264.56q.42.234.829.49c.206.13.405.276.6.424q.267.2.514.423a.43.43 0 0 1 .13.373z"/></svg>���������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/delta.svg������������������������������������0000664�0000000�0000000�00000001647�14753064456�0024724�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 13.455h-.689l-.288-.739h-1.2l-.289.739h-.644l1.233-2.96h.666zm-1.16-1.233-.411-1.044-.411 1.044zm-4.315 1.233h.66v-2.438h.995v-.51h-2.644v.51h.989zm-3.826 0h1.927v-.511H15.36v-2.438h-.661zm-3.282-2.438h1.416v-.51h-2.077v2.948h2.121v-.511h-1.46v-.766h1.25v-.511h-1.25zm-4.981 2.438h1.038c1.072 0 1.71-.555 1.71-1.472s-.638-1.471-1.71-1.471H6.436zm.655-2.438h.383c.694 0 1.044.344 1.044.96 0 .617-.344.961-1.044.961h-.383zm-2.277 2.155a.15.15 0 0 1 .15.15.15.15 0 0 1-.15.15.15.15 0 0 1-.15-.15.15.15 0 0 1 .15-.15m0 .277a.13.13 0 0 0 .134-.127c0-.073-.056-.128-.134-.128a.126.126 0 0 0-.127.128c0 .072.055.127.127.127m-.033-.039H4.76v-.177h.067q.056 0 .055.05c0 .033-.022.044-.044.05l.055.077h-.028l-.05-.077h-.033zm0-.1h.028c.022 0 .05 0 .05-.027 0-.022-.022-.028-.039-.028h-.039zM0 13.85h4.626l-2.31-.978zm.172-.395 2.144-1.033 2.143 1.033-2.143-3.304Z"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/deluge.svg�����������������������������������0000664�0000000�0000000�00000001157�14753064456�0025074�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.766 10.341 12.006 0l-6.77 10.342c-1.945 2.97-2.191 6.432-.66 9.264C6.04 22.316 8.885 24 12.001 24c3.113 0 5.957-1.681 7.421-4.388 1.532-2.832 1.287-6.297-.657-9.27zm-10.082 6.9c1.433 2.554 3.608 3.045 6.585 2.102-1.7 1.848-5.188 2.337-7.557-.302-1.63-1.817-1.773-4.351-.642-6.468 1.132-2.117 3.388-2.706 5.012-1.551-3.723.09-4.43 4.38-3.398 6.218zm8.72-6.009c.723 1.107 1.152 2.267 1.314 3.418-3.354 5.763-7.862 4.879-9.062 1.377-.554-1.618 1.19-5.08 4.514-3.725-1.296-2.838-4.238-4.017-6.911-1.809a5 5 0 0 0-.609.66l5.355-8.179 5.398 8.258z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/deno.svg�������������������������������������0000664�0000000�0000000�00000001757�14753064456�0024562�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.105 18.02A11.9 11.9 0 0 1 0 12.985q0-.698.078-1.376a12 12 0 0 1 .231-1.34A12 12 0 0 1 4.025 4.02a12 12 0 0 1 5.46-2.771 12 12 0 0 1 3.428-.23c1.452.112 2.825.477 4.077 1.05a12 12 0 0 1 2.78 1.774 12.02 12.02 0 0 1 4.053 7.078A12 12 0 0 1 24 12.985q0 .454-.036.914a12 12 0 0 1-.728 3.305 12 12 0 0 1-2.38 3.875c-1.33 1.357-3.02 1.962-4.43 1.936a4.4 4.4 0 0 1-2.724-1.024c-.99-.853-1.391-1.83-1.53-2.919a5 5 0 0 1 .128-1.518c.105-.38.37-1.116.76-1.437-.455-.197-1.04-.624-1.226-.829-.045-.05-.04-.13 0-.183a.155.155 0 0 1 .177-.053c.392.134.869.267 1.372.35.66.111 1.484.25 2.317.292 2.03.1 4.153-.813 4.812-2.627s.403-3.609-1.96-4.685-3.454-2.356-5.363-3.128c-1.247-.505-2.636-.205-4.06.582-3.838 2.121-7.277 8.822-5.69 15.032a.191.191 0 0 1-.315.19 12 12 0 0 1-1.25-1.634 12 12 0 0 1-.769-1.404M11.57 6.087c.649-.051 1.214.501 1.31 1.236.13.979-.228 1.99-1.41 2.013-1.01.02-1.315-.997-1.248-1.614.066-.616.574-1.575 1.35-1.635"/></svg>�����������������mkdocs-material-9.6.4/material/templates/.icons/simple/denon.svg������������������������������������0000664�0000000�0000000�00000001350�14753064456�0024725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.365 11.237 3.394 3.361v-5.07h-.778v3.16L8.58 9.406v5.077h.779V11.27zm-4.497 3.245V9.528h2.79v.773H5.646v1.164h1.558v.772H5.646v1.472h1.999v.773zM20.58 11.23 24 14.58V9.528h-.779v3.2l-.005-.015-3.422-3.311v5.08h.79v-3.234l-.003-.019M.78 13.747v-3.503h.688s1.755-.032 1.755 1.77c0 1.647-1.593 1.733-1.593 1.733zM0 9.527v4.955h1.655s2.336-.193 2.336-2.496c0-2.374-2.343-2.458-2.343-2.458zm14.416 2.452q0 .828.56 1.361c.713.724 1.931.702 2.618-.01.724-.689.724-1.991.007-2.676-.675-.726-1.966-.724-2.645 0q-.54.537-.54 1.325m-.764-.01q0-1.053.777-1.81c.981-1.004 2.724-1.016 3.702.006 1.026.965 1.032 2.706-.003 3.66-.961.964-2.596 1.015-3.624.084q-.852-.74-.852-1.94"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dependabot.svg�������������������������������0000664�0000000�0000000�00000001663�14753064456�0025736�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.949.314a1.92 1.92 0 0 1 2.102 0l9.333 6.118c.541.354.866.957.866 1.604v7.928c0 .647-.326 1.25-.866 1.604l-9.333 6.118a1.92 1.92 0 0 1-2.102 0l-9.333-6.118a1.92 1.92 0 0 1-.866-1.604V8.036c0-.647.326-1.25.866-1.604zM12.75 7.5v.75h-6A.75.75 0 0 0 6 9v3h-.5a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25H6v1.5c0 .415.336.75.75.75h10.5a.75.75 0 0 0 .75-.75V15h.5a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25H18V9a.75.75 0 0 0-.75-.75H13.5V5.5a.25.25 0 0 0-.25-.25H11.5a.25.25 0 0 0-.25.25v1.75c0 .138.112.25.25.25zm3.286 5.089-1.572 1.572a.303.303 0 0 1-.428 0l-.947-.947a.303.303 0 0 1 0-.428l.322-.322a.303.303 0 0 1 .428 0l.41.411 1.037-1.036a.303.303 0 0 1 .428 0l.322.322a.303.303 0 0 1 0 .428M9.464 14.16za.303.303 0 0 1-.428 0l-.948-.947a.3.3 0 0 1 0-.428l.323-.322a.303.303 0 0 1 .427 0l.412.411 1.036-1.037a.303.303 0 0 1 .427 0l.323.322a.303.303 0 0 1 0 .428z"/></svg>�����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dependencycheck.svg��������������������������0000664�0000000�0000000�00000002037�14753064456�0026741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.357 15.731H.016A13.74 13.74 0 0 0 4.58 24l1.63-1.634a11.45 11.45 0 0 1-3.853-6.635m.509 0a10.95 10.95 0 0 0 3.668 6.254l.03.026 1.124-1.126a9.38 9.38 0 0 1-3.206-5.154Zm6.623 3.349h-.084V8.252h4.222q1.268 0 2.328.41a5.5 5.5 0 0 1 1.825 1.137c.168.159.318.331.461.508.291.363.535.761.722 1.201a5.4 5.4 0 0 1 .418 2.127v.03q0 1.146-.418 2.135a5 5 0 0 1-1.183 1.716 5.6 5.6 0 0 1-1.825 1.146 6.3 6.3 0 0 1-2.328.418zm7.01-7.027a3 3 0 0 0-.513-.738 3 3 0 0 0-1.028-.673 3.6 3.6 0 0 0-1.331-.24l-1.84.001v6.526h1.84q.726 0 1.331-.232a2.84 2.84 0 0 0 1.028-.665q.425-.432.665-1.021.24-.587.24-1.314v-.032q0-.711-.24-1.314c-.043-.107-.101-.199-.152-.298m-16.44-.796h2.35c1.635-7.184 7.887-8.654 9.203-8.922V0A13.78 13.78 0 0 0 .059 11.257m11.553-8.414a10.98 10.98 0 0 0-8.692 8.414h1.624a9.4 9.4 0 0 1 7.068-6.802Zm4.474.092v1.629a9.4 9.4 0 0 1 4.79 3.101l1.127-1.126a11.04 11.04 0 0 0-5.917-3.604m0-2.865v2.352a11.46 11.46 0 0 1 6.267 3.763l1.631-1.636A13.75 13.75 0 0 0 16.086.07"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/depositphotos.svg����������������������������0000664�0000000�0000000�00000000524�14753064456�0026530�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 24c5.119 0 9.061-3.942 9.061-9.06S17.119 5.88 12 5.88c-5.117 0-9.059 3.942-9.059 9.06S6.883 24 12 24m0-5.598c-1.954 0-3.461-1.508-3.461-3.462s1.507-3.462 3.461-3.462c1.955 0 3.462 1.507 3.462 3.462 0 1.954-1.507 3.462-3.462 3.462m2.634-12.241h6.161V0h-6.161z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/derspiegel.svg�������������������������������0000664�0000000�0000000�00000002665�14753064456�0025757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.868 13.054v-2.108h.677v2.108zm1.29.19v-2.488a.346.346 0 0 0-.338-.337H0v.527h.254v2.108H0v.527h1.841a.33.33 0 0 0 .318-.337zm1.905-.78v.59h-.72v-.864h.953v-.527h-.952v-.717h.72v.442h.592v-.97H2.497v.528h.233v2.108h-.233v.527h2.16v-1.117zm1.778-.801v-.717h.699v.717zm1.334 1.391v-.759a.334.334 0 0 0-.339-.337c.19 0 .339-.148.339-.338v-.843c0-.169-.149-.337-.318-.337H4.974v.527h.275v2.108h-.275v.506h1.121v-.527h-.233v-.864h.699v.864h-.254v.527h1.1v-.527zm4.507-1.391v-.717h.72v.717zm1.334.19v-1.097a.334.334 0 0 0-.339-.337h-1.862v.527h.254v2.108h-.254v.527h1.1v-.527h-.233v-.864h.995c.19 0 .339-.148.339-.338zm1.08 1.201v-2.108h.253v-.527h-1.1v.527h.254v2.108h-.254v.527h1.1v-.527zm2.094-.59v.59h-.72v-.864h.953v-.527h-.952v-.717h.72v.442h.613v-.97h-2.18v.528h.233v2.108h-.233v.527h2.18v-1.117zm1.736-.801v.527h.487v.864h-.72v-2.108h.72v.442h.634v-.632a.334.334 0 0 0-.338-.337h-1.27a.33.33 0 0 0-.212.084c-.063.063-.127.148-.127.253v2.488a.3.3 0 0 0 .127.253.32.32 0 0 0 .233.084h1.587v-1.918zm2.984.8v.591h-.72v-.864h.953v-.527h-.953v-.717h.72v.442h.614v-.97h-2.18v.528h.233v2.108h-.233v.527h2.18v-1.117zm2.476 0v.591h-.698v-2.108h.254v-.527H21.82v.527h.254v2.108h-.254v.527H24v-1.117zm-12.846.8v-1.592H9.227v-.722h.699v.446h.635v-.637c0-.204-.19-.34-.381-.34H8.931a.335.335 0 0 0-.338.34v1.444h1.312v.87h-.699v-.594h-.613v.764c0 .19.148.34.338.34h1.249c.195 0 .36-.128.36-.319"/></svg>���������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/deutschebahn.svg�����������������������������0000664�0000000�0000000�00000001502�14753064456�0026256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.6 3.6H2.4C1.08 3.6 0 4.68 0 6v12c0 1.32 1.08 2.4 2.4 2.4h19.2c1.32 0 2.4-1.08 2.4-2.424V6c0-1.32-1.08-2.4-2.4-2.4m.648 14.376c.024.36-.264.672-.648.696H2.4c-.36 0-.648-.312-.648-.672V6a.667.667 0 0 1 .624-.696H21.6c.36 0 .648.312.648.672zM7.344 6.504H3.312v10.992h4.032c3.336-.024 4.416-2.376 4.416-5.544 0-3.672-1.56-5.448-4.416-5.448m-.456 9.216h-.936V8.232h.528c2.376 0 2.616 1.728 2.616 3.936 0 2.424-.816 3.552-2.208 3.552m11.832-3.984c1.128-.336 1.896-1.368 1.92-2.568 0-.24-.048-2.688-3.144-2.688h-4.584v10.992H16.8c1.032 0 4.248 0 4.248-3.096 0-.744-.336-2.208-2.328-2.64m-2.352-3.528c1.176 0 1.656.408 1.656 1.32 0 .72-.528 1.32-1.44 1.32h-1.032v-2.64zm.24 7.512h-1.08v-2.832h1.152c1.368 0 1.704.792 1.704 1.416 0 1.416-1.344 1.416-1.776 1.416"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/deutschebank.svg�����������������������������0000664�0000000�0000000�00000000242�14753064456�0026261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.375 3.375v17.25h17.25V3.375zM0 0h24v24H0zm5.25 18.225 9.15-12.45h4.35L9.6 18.225z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/deutschepost.svg�����������������������������0000664�0000000�0000000�00000001121�14753064456�0026330�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.057 18.221 7.839 21.47H4.652l3.219-3.249zm-4.299 0L3.541 21.47H.354l3.219-3.249zm8.227 0 3.219 3.249h-3.187l-3.22-3.249zm4.3 0 3.217 3.249h-3.187l-3.218-3.249zM10.465 2.53c3.765-.003 6.88 2.74 6.865 6.676.553-1.502.937-3.789 1.016-5.39L24 5.22c-.452 6.621-5.43 12.42-12.815 12.416C2.832 17.635-.397 10.389.039 4.899l2.453-.779c-.399 3.125.57 5.378 1.238 6.41-.795-4.42 2.549-7.998 6.735-8m.011 2.301a4.52 4.52 0 0 0-4.524 4.514 4.52 4.52 0 0 0 4.524 4.514 4.52 4.52 0 0 0 4.525-4.514 4.52 4.52 0 0 0-4.525-4.514"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/deutschetelekom.svg��������������������������0000664�0000000�0000000�00000000537�14753064456�0027015�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.722 15.84h-4.8v-4.8h4.791v4.8zM1.922 0v8.16H3.36v-.236c0-3.844 2.159-6.24 6.239-6.24h.237v17.279c0 2.396-.957 3.36-3.36 3.36h-.72V24h12.478v-1.676h-.72c-2.395 0-3.36-.957-3.36-3.361V1.676h.237c4.08 0 6.239 2.396 6.239 6.24v.236h1.439V0Zm15.356 15.84h4.8v-4.8h-4.791v4.8z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/deutschewelle.svg����������������������������0000664�0000000�0000000�00000001417�14753064456�0026463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.143 5.182A6.85 6.85 0 0 0 12 7.493a6.86 6.86 0 0 0-5.143-2.311C3.07 5.182 0 8.234 0 12s3.07 6.818 6.857 6.818A6.86 6.86 0 0 0 12 16.507a6.85 6.85 0 0 0 5.143 2.311C20.929 18.818 24 15.766 24 12s-3.07-6.818-6.857-6.818m-6.04 10.05a5.35 5.35 0 0 1-4.246 2.086c-2.954 0-5.348-2.38-5.348-5.318s2.394-5.318 5.348-5.318c1.731 0 3.27.818 4.247 2.087A5.27 5.27 0 0 1 12.206 12a5.27 5.27 0 0 1-1.102 3.231zm8.88-.641h-1.608l-1.049-2.549-1.025 2.549h-1.605l-1.661-5.182h1.833l.779 2.602.972-2.602h1.434l.973 2.602.778-2.602h1.841zM7.058 9.273H4.083v5.454h2.975c1.534 0 3.107-.878 3.107-2.727 0-1.768-1.434-2.727-3.107-2.727m-.161 3.874H5.729v-2.318h1.168c1.062 0 1.44.59 1.44 1.159.001.561-.375 1.159-1.44 1.159"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/devdotto.svg���������������������������������0000664�0000000�0000000�00000001340�14753064456�0025451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.42 10.05c-.18-.16-.46-.23-.84-.23H6l.02 2.44.04 2.45.56-.02c.41 0 .63-.07.83-.26.24-.24.26-.36.26-2.2 0-1.91-.02-1.96-.29-2.18M0 4.94v14.12h24V4.94zM8.56 15.3c-.44.58-1.06.77-2.53.77H4.71V8.53h1.4c1.67 0 2.16.18 2.6.9.27.43.29.6.32 2.57.05 2.23-.02 2.73-.47 3.3m5.09-5.47h-2.47v1.77h1.52v1.28l-.72.04-.75.03v1.77l1.22.03 1.2.04v1.28h-1.6c-1.53 0-1.6-.01-1.87-.3l-.3-.28v-3.16c0-3.02.01-3.18.25-3.48.23-.31.25-.31 1.88-.31h1.64v1.3zm4.68 5.45c-.17.43-.64.79-1 .79-.18 0-.45-.15-.67-.39-.32-.32-.45-.63-.82-2.08l-.9-3.39-.45-1.67h.76c.4 0 .75.02.75.05 0 .06 1.16 4.54 1.26 4.83.04.15.32-.7.73-2.3l.66-2.52.74-.04c.4-.02.73 0 .73.04 0 .14-1.67 6.38-1.8 6.68z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/devexpress.svg�������������������������������0000664�0000000�0000000�00000000473�14753064456�0026017�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.4 0h21.2c.8 0 1.4.6 1.4 1.4v1.1c0 .8-.6 1-.9 1C11.7 4.9 4.2 9.7 0 14.1V1.4C0 .6.6 0 1.4 0m.022 19.567L1.7 19.2C5.3 14.6 12.4 8.3 24 6.3v16.3c0 .8-.6 1.4-1.4 1.4H1.4C.6 24 0 23.4 0 22.6v-.4c0-.3.2-.8.3-.9.252-.589.646-1.107 1.122-1.733"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/deviantart.svg�������������������������������0000664�0000000�0000000�00000000400�14753064456�0025756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.207 4.794.23-.43V0H15.07l-.436.44-2.058 3.925-.646.436H4.58v5.993h4.04l.36.436-4.175 7.98-.24.43V24H8.93l.436-.44 2.07-3.925.644-.436h7.35v-5.993h-4.05l-.36-.438 4.186-7.977z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/devpost.svg����������������������������������0000664�0000000�0000000�00000000475�14753064456�0025315�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.002 1.61 0 12.004 6.002 22.39h11.996L24 12.004 17.998 1.61zm1.593 4.084h3.947c3.605 0 6.276 1.695 6.276 6.31 0 4.436-3.21 6.302-6.456 6.302H7.595zm2.517 2.449v7.714h1.241c2.646 0 3.862-1.55 3.862-3.861.009-2.569-1.096-3.853-3.767-3.853Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/devrant.svg����������������������������������0000664�0000000�0000000�00000001746�14753064456�0025276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.72 0C5.482-.015 1.592 4.046 1.701 10.322c-.074 3.907 1.437 7.002 4.127 8.734a10.3 10.3 0 0 0 2.137.995l2.174 3.353c.333.848.7.774.848-.11l.59-2.69h.442c2.469.073 4.57-.517 6.228-1.585 2.616-1.733 4.126-4.791 4.053-8.697C22.41 3.948 18.431-.144 12.019.004Q11.869.001 11.72 0m4.571 4.636c.258 0 .516.092.7.276h.001c.185.185.295.442.295.737 0 .148 0 .295-.074.406l-3.722 9.25c-.258.441-.627.552-.885.552a1.007 1.007 0 0 1-.994-.995c0-.148.037-.258.073-.406l3.685-9.212q.11-.22.221-.332a1 1 0 0 1 .7-.276M9.456 7.5c.313 0 .626.12.866.359h.001c.221.221.368.516.331.848 0 .332-.147.589-.368.848-.222.258-.517.369-.848.369-.332 0-.59-.148-.848-.37-.259-.22-.37-.515-.37-.847s.149-.627.37-.848c.24-.24.552-.36.866-.36zm0 4.974c.313 0 .626.12.866.36h.001c.221.258.368.553.331.848a1.2 1.2 0 0 1-.368.848c-.221.258-.516.368-.848.368a1.2 1.2 0 0 1-.848-.368c-.259-.222-.37-.516-.37-.848s.149-.627.37-.848c.24-.24.552-.36.866-.36"/></svg>��������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dgraph.svg�����������������������������������0000664�0000000�0000000�00000001416�14753064456�0025072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.22 4.319c.226-.414.349-.892.349-1.403A2.917 2.917 0 0 0 15.653 0c-1.37 0-2.522.944-2.838 2.218-.272-.013-.544-.033-.815-.033-5.58 0-10.1 4.513-10.1 10.1 0 2.74 1.1 5.23 2.871 7.047a2.9 2.9 0 0 0-.588 1.752A2.917 2.917 0 0 0 7.1 24c1.241 0 2.295-.782 2.728-1.869a10.092 10.092 0 0 0 12.272-9.86 9.98 9.98 0 0 0-3.88-7.952m-2.554.381c-.162 0-.304-.013-.446-.064l-1.21 3.523 1.772-.284-2.489 4.067 2.075-.511-7.002 8.34c.35.317.556.783.556 1.307a1.78 1.78 0 0 1-1.784 1.784c-.99 0-1.785-.795-1.785-1.784s.796-1.785 1.785-1.785q.34.001.653.13l1.978-4.326-1.933.524 3.142-4.5-1.933.465L14.521 4.3c-.4-.337-.64-.828-.64-1.371 0-.99.796-1.785 1.785-1.785s1.784.796 1.784 1.785c.007.97-.795 1.771-1.784 1.771"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dhl.svg��������������������������������������0000664�0000000�0000000�00000001453�14753064456�0024375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4.22 10.303-.767 1.043h4.18c.21 0 .208.078.105.218-.105.142-.28.39-.386.534-.054.073-.154.207.171.207h1.71l.505-.69c.314-.426.028-1.312-1.095-1.312zm7.204 0-1.475 2.002h5.39l1.473-2.002H14.61l-.843 1.146h-.985l.846-1.146h-2.203zm6.105 0-1.474 2.002h2.334l1.472-2.002H17.53zm-12.845 1.3-1.54 2.094h3.754c1.24 0 1.932-.844 2.145-1.136h-2.56c-.326 0-.226-.133-.172-.207.107-.143.283-.388.388-.53.104-.14.107-.22-.105-.22h-1.91zM0 12.562v.242h3.398l.176-.242zm9.762 0-.836 1.136h2.203l.836-1.136zm3.185 0-.836 1.136h2.203l.836-1.136zm2.918 0s-.159.22-.238.326c-.276.374-.033.81.87.81h3.538l.834-1.136zm5.408 0-.177.242H24v-.242zM0 13.01v.24h3.068l.178-.24zm20.943 0-.175.24H24v-.24zM0 13.457v.24h2.74l.176-.24zm20.615 0-.177.24H24v-.24z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/diagramsdotnet.svg���������������������������0000664�0000000�0000000�00000001310�14753064456�0026623�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.69 13.419h-2.527l-2.667-4.555a1.29 1.29 0 0 0 1.035-1.28V4.16c0-.725-.576-1.312-1.302-1.312H9.771c-.726 0-1.312.576-1.312 1.301v3.435c0 .619.426 1.152 1.034 1.28l-2.666 4.555H4.309c-.725 0-1.312.576-1.312 1.301v3.435c0 .725.576 1.312 1.302 1.312h4.458c.726 0 1.312-.576 1.312-1.302v-3.434c0-.726-.576-1.312-1.301-1.312h-.437l2.645-4.523h2.059l2.656 4.523h-.438c-.725 0-1.312.576-1.312 1.301v3.435c0 .725.576 1.312 1.302 1.312H19.7c.726 0 1.312-.576 1.312-1.302v-3.434c0-.726-.576-1.312-1.301-1.312zM24 22.976c0 .565-.459 1.024-1.013 1.024H1.024A1.02 1.02 0 0 1 0 22.987V1.024C0 .459.459 0 1.013 0h21.963C23.541 0 24 .459 24 1.013z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dialogflow.svg�������������������������������0000664�0000000�0000000�00000000652�14753064456�0025755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.996 0a1.64 1.64 0 0 0-.82.22L3.344 4.74a1.65 1.65 0 0 0-.535.498l9.136 5.28 9.213-5.32a1.65 1.65 0 0 0-.51-.458L12.818.22a1.64 1.64 0 0 0-.822-.22m9.336 5.5-9.387 5.422-9.3-5.373a1.7 1.7 0 0 0-.12.615v9.043a1.64 1.64 0 0 0 .819 1.42l3.918 2.266v4.617a.493.493 0 0 0 .74.424l12.654-7.303a1.64 1.64 0 0 0 .819-1.42V6.162a1.65 1.65 0 0 0-.143-.662"/></svg>��������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/diaspora.svg���������������������������������0000664�0000000�0000000�00000001607�14753064456�0025431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.257 21.928-2.33-3.255c-.622-.87-1.128-1.549-1.155-1.55-.027 0-1.007 1.317-2.317 3.115-1.248 1.713-2.28 3.115-2.292 3.115-.035 0-4.5-3.145-4.51-3.178-.006-.016 1.003-1.497 2.242-3.292s2.252-3.29 2.252-3.325c0-.056-.401-.197-3.55-1.247a1605 1605 0 0 1-3.593-1.2c-.033-.013.153-.635.79-2.648.46-1.446.845-2.642.857-2.656s1.71.528 3.772 1.207c2.062.678 3.766 1.233 3.787 1.233s.045-.032.053-.07.026-1.794.04-3.902c.013-2.107.036-3.848.05-3.87.02-.03.599-.038 2.725-.038 1.485 0 2.716.01 2.735.023.023.016.064 1.175.132 3.776.112 4.273.115 4.33.183 4.33.026 0 1.66-.547 3.631-1.216s3.593-1.204 3.605-1.191c.04.045 1.656 5.307 1.636 5.327-.011.01-1.656.574-3.655 1.252-2.75.932-3.638 1.244-3.645 1.284-.006.029.94 1.442 2.143 3.202 1.184 1.733 2.148 3.164 2.143 3.18-.012.036-4.442 3.299-4.48 3.299-.015 0-.577-.767-1.249-1.705"/></svg>�������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dictionarydotcom.svg�������������������������0000664�0000000�0000000�00000000647�14753064456�0027205�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.894.087 1.043 0a.3.3 0 0 0-.305.293V18.97a.33.33 0 0 0 .166.28l8.13 4.713a.27.27 0 0 0 .364-.092.3.3 0 0 0 .038-.138V6.275a.33.33 0 0 0-.176-.292L4.944 3.625a.17.17 0 0 1-.084-.21.17.17 0 0 1 .197-.112l7.804 1.333a.31.31 0 0 1 .252.302v15.717a.307.307 0 0 0 .309.308h.035c5.781-.645 9.72-4.693 9.804-10.308.078-6.28-4.595-10.48-11.367-10.568"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/digg.svg�������������������������������������0000664�0000000�0000000�00000000476�14753064456�0024544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.76 8.16v8.16h3.84v.96h-3.84v1.92H24V8.16zm-7.2 0v8.16h3.84v.96h-3.84v1.92h6.24V8.16zM3.84 4.8v3.36H0v8.16h6.24V4.8zM9.6 8.16H7.2v8.16h2.4zm12 6.24h-1.44v-4.32h1.44zm-17.76 0H2.4v-4.32h1.44zm10.56 0h-1.44v-4.32h1.44zM9.6 4.8H7.2v2.4h2.4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/digikeyelectronics.svg�����������������������0000664�0000000�0000000�00000000474�14753064456�0027510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.246.221A11.786 11.786 0 0 1 23.89 10.418c.912 6.593-3.944 12.711-10.558 13.297q-.682.061-1.369.064l-10.705.003v-3.749H0V3.987h1.222V.218zM17.9 19.423l-8.26-7.422 8.25-7.422h-6.938L5.615 9.361V4.598H.56v14.803h5.105v-4.724l5.289 4.746z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/digitalocean.svg�����������������������������0000664�0000000�0000000�00000000615�14753064456�0026250�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.04 0C5.408-.02.005 5.37.005 11.992h4.638c0-4.923 4.882-8.731 10.064-6.855a6.95 6.95 0 0 1 4.147 4.148c1.889 5.177-1.924 10.055-6.84 10.064v-4.61H7.391v4.623h4.61V24c7.86 0 13.967-7.588 11.397-15.83-1.115-3.59-3.985-6.446-7.575-7.575A12.8 12.8 0 0 0 12.039 0zM7.39 19.362H3.828v3.564H7.39zm-3.563 0v-2.978H.85v2.978z"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dinersclub.svg�������������������������������0000664�0000000�0000000�00000000766�14753064456�0025766�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.506 11.982a6.03 6.03 0 0 0-3.866-5.618V17.6a6.025 6.025 0 0 0 3.866-5.618M8.33 17.598V6.365a6.03 6.03 0 0 0-3.863 5.617 6.03 6.03 0 0 0 3.863 5.616m2.156-15.113A9.497 9.497 0 0 0 .99 11.982a9.495 9.495 0 0 0 9.495 9.494 9.495 9.495 0 0 0 9.496-9.494 9.5 9.5 0 0 0-9.496-9.497Zm-.023 19.888C4.723 22.4 0 17.75 0 12.09 0 5.905 4.723 1.626 10.463 1.627h2.69C18.822 1.627 24 5.903 24 12.09c0 5.658-5.176 10.283-10.848 10.283"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/simple/dior.svg�������������������������������������0000664�0000000�0000000�00000003171�14753064456�0024562�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.073 8.775h3.116c2.678 0 3.727 1.572 3.727 3.237 0 1.694-1.345 3.203-3.902 3.203H.078c-.054 0-.073-.034-.073-.063 0-.034.034-.063.082-.063h.549c.17 0 .281-.102.281-.291V9.202c0-.14-.068-.296-.291-.296H.068C.024 8.906 0 8.877 0 8.843c0-.029.01-.068.073-.068m1.946 6.14c0 .14.063.184.155.184H3c2.034 0 2.771-1.558 2.771-3.12S4.99 8.9 3.271 8.9H2.15c-.117 0-.126.097-.126.141zm5.207-6.14c-.048 0-.092.02-.092.058s.024.063.068.063h.548c.127 0 .248.088.248.33v5.577c0 .116-.088.29-.243.29h-.543c-.063 0-.068.05-.068.069s-.005.053.068.053h2.64c.039 0 .092-.005.092-.044s-.01-.077-.078-.077h-.51c-.072 0-.271-.044-.271-.267V9.168c0-.16.102-.267.286-.267h.5c.044 0 .068-.024.068-.058s-.024-.063-.083-.063c0-.005-2.64.01-2.63-.005m4.125 3.223c0-1.781.796-3.223 2.29-3.223 1.466 0 2.291 1.442 2.291 3.223s-.752 3.222-2.29 3.222c-1.49.005-2.29-1.441-2.29-3.222m2.29 3.358c2.126 0 3.465-1.504 3.465-3.354s-1.325-3.358-3.465-3.358c-2.135 0-3.465 1.504-3.465 3.354s1.383 3.358 3.465 3.358m10.26-.18c-.835.088-1.297-1.28-1.719-1.931-.315-.48-.985-.97-1.645-1.068 1.087-.063 2.305-.412 2.305-1.645 0-1-.616-1.757-2.878-1.757H17.36c-.034 0-.068.02-.068.058s.034.063.068.063h.597c.126 0 .248.088.248.33v5.577c0 .116-.088.29-.243.29h-.587c-.048 0-.068.04-.068.059s.02.063.068.063h2.766c.039 0 .073-.02.073-.058s-.024-.063-.078-.063h-.558c-.073 0-.272-.049-.272-.267v-2.635h.287c1.368 0 1.47 1.485 2.15 2.334.582.728 1.344.82 1.776.82.184 0 .31-.005.427-.034.073-.024.087-.15-.044-.136m-4.319-6.28h.403c.689 0 1.805.272 1.805 1.573 0 1.194-.99 1.597-1.907 1.597h-.587V9.168c0-.165.102-.271.286-.271"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/directus.svg���������������������������������0000664�0000000�0000000�00000002077�14753064456�0025453�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.187 13.909a2 2 0 0 1-.286-.092.7.7 0 0 1-.203-.139c.056-.488 0-.912.047-1.392.184-1.862 1.355-1.272 2.406-1.577.655-.184 1.31-.562 1.475-1.336a13.5 13.5 0 0 0-2.397-2.204c-2.85-2.028-6.574-2.84-9.958-2.277a5.1 5.1 0 0 0 2.238 2.074s-.917 0-1.703-.587c-.23.092-.692.274-.913.384a5.094 5.094 0 0 0 6.63.37c-.01.017-.185.285-.397 1.4-.47 2.38-1.826 2.195-3.504 1.596-3.485-1.264-5.403-.093-7.145-2.49-.507.286-.82.82-.82 1.402 0 .599.331 1.106.81 1.383.262-.348.38-.446.836-.446-.706.4-.79.75-1.094 1.718-.368 1.171-.212 2.37-1.936 2.683-.913.046-.894.664-1.226 1.586-.415 1.199-.968 1.678-2.047 2.812.443.535.904.6 1.374.406.968-.406 1.715-1.66 2.415-2.471.784-.904 2.665-.517 4.085-1.402.977-.599 1.457-1.41.811-2.784a2.72 2.72 0 0 1 .701 1.66c1.641-.213 3.836 1.788 5.836 2.12a3.6 3.6 0 0 1-.488-.82c-.23-.554-.304-1.06-.258-1.503.184 1.097 1.29 2.507 3.07 2.637.452.036.95-.019 1.466-.176.618-.184 1.19-.424 1.872-.295.507.093.977.35 1.272.784.443.645 1.41.784 1.844-.009-.977-2.554-3.67-2.72-4.813-3.015"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/discogs.svg����������������������������������0000664�0000000�0000000�00000003625�14753064456�0025264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.742 11.982c0-5.668 4.61-10.278 10.276-10.278 1.824 0 3.537.48 5.025 1.317l.814-1.488A11.9 11.9 0 0 0 12.19.003h-.195C5.41.013.072 5.31 0 11.885v.115a11.98 11.98 0 0 0 3.775 8.72l1.185-1.28a10.25 10.25 0 0 1-3.218-7.459zm18.62-8.577-1.154 1.24a10.25 10.25 0 0 1 3.088 7.337c0 5.666-4.61 10.276-10.276 10.276-1.783 0-3.46-.456-4.922-1.258l-.854 1.522A11.95 11.95 0 0 0 12 23.998c6.626 0 12.001-5.373 12.001-12a11.98 11.98 0 0 0-3.638-8.593M1.963 11.982a10.03 10.03 0 0 0 3.146 7.295l1.18-1.276a8.3 8.3 0 0 1-2.586-6.019c0-4.586 3.73-8.315 8.315-8.315 1.483 0 2.875.391 4.082 1.075l.835-1.526a10 10 0 0 0-4.917-1.289C6.475 1.925 1.963 6.437 1.963 11.982m18.37 0c0 4.586-3.73 8.315-8.315 8.315a8.3 8.3 0 0 1-3.962-1.005l-.852 1.516a10 10 0 0 0 4.814 1.229c5.543 0 10.055-4.512 10.055-10.055 0-2.808-1.157-5.347-3.016-7.173l-1.183 1.274a8.28 8.28 0 0 1 2.46 5.899m-1.948 0a6.37 6.37 0 0 1-6.365 6.364 6.3 6.3 0 0 1-3.006-.756l-.848 1.507a8.04 8.04 0 0 0 3.854.977c4.464 0 8.095-3.63 8.095-8.094 0-2.24-.914-4.27-2.39-5.738l-1.179 1.267a6.36 6.36 0 0 1 1.839 4.473m-14.459 0c0 2.301.967 4.382 2.515 5.858l1.173-1.27a6.34 6.34 0 0 1-1.96-4.588 6.37 6.37 0 0 1 6.364-6.364 6.3 6.3 0 0 1 3.144.835l.83-1.517a8.06 8.06 0 0 0-3.974-1.048c-4.461 0-8.092 3.63-8.092 8.094m12.53 0a4.44 4.44 0 0 1-4.438 4.437 4.4 4.4 0 0 1-2.061-.509l-.835 1.488a6.1 6.1 0 0 0 2.896.727 6.15 6.15 0 0 0 6.143-6.143 6.12 6.12 0 0 0-1.768-4.308l-1.162 1.25a4.43 4.43 0 0 1 1.224 3.058m-10.581 0a6.12 6.12 0 0 0 1.888 4.425l1.157-1.25.014.014a4.42 4.42 0 0 1-1.355-3.187 4.436 4.436 0 0 1 4.437-4.437c.808 0 1.564.219 2.217.598l.82-1.498a6.1 6.1 0 0 0-3.037-.806c-3.384-.005-6.141 2.753-6.141 6.141m6.68 0a.538.538 0 0 1-1.074 0 .537.537 0 1 1 1.075 0m-3.94 0a3.4 3.4 0 1 1 6.801 0 3.4 3.4 0 0 1-6.8 0m.149 0a3.256 3.256 0 0 0 3.252 3.252 3.255 3.255 0 0 0 3.254-3.252 3.253 3.253 0 1 0-6.506 0"/></svg>�����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/discord.svg����������������������������������0000664�0000000�0000000�00000002121�14753064456�0025246�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.317 4.37a19.8 19.8 0 0 0-4.885-1.515.074.074 0 0 0-.079.037c-.21.375-.444.864-.608 1.25a18.3 18.3 0 0 0-5.487 0 13 13 0 0 0-.617-1.25.08.08 0 0 0-.079-.037A19.7 19.7 0 0 0 3.677 4.37a.1.1 0 0 0-.032.027C.533 9.046-.32 13.58.099 18.057a.08.08 0 0 0 .031.057 19.9 19.9 0 0 0 5.993 3.03.08.08 0 0 0 .084-.028c.462-.63.874-1.295 1.226-1.994a.076.076 0 0 0-.041-.106 13 13 0 0 1-1.872-.892.077.077 0 0 1-.008-.128 10 10 0 0 0 .372-.292.07.07 0 0 1 .077-.01c3.928 1.793 8.18 1.793 12.062 0a.07.07 0 0 1 .078.01c.12.098.246.198.373.292a.077.077 0 0 1-.006.127 12.3 12.3 0 0 1-1.873.892.077.077 0 0 0-.041.107c.36.698.772 1.362 1.225 1.993a.08.08 0 0 0 .084.028 19.8 19.8 0 0 0 6.002-3.03.08.08 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.06.06 0 0 0-.031-.03M8.02 15.33c-1.182 0-2.157-1.085-2.157-2.419 0-1.333.956-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.956 2.418-2.157 2.418m7.975 0c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.955-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.946 2.418-2.157 2.418"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/discourse.svg��������������������������������0000664�0000000�0000000�00000000534�14753064456�0025625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.103 0C18.666 0 24 5.485 24 11.997c0 6.51-5.33 11.99-11.9 11.99L0 24V11.79C0 5.28 5.532 0 12.103 0m.116 4.563a7.4 7.4 0 0 0-6.337 3.57 7.25 7.25 0 0 0-.148 7.22L4.4 19.61l4.794-1.074a7.42 7.42 0 0 0 8.136-1.39 7.26 7.26 0 0 0 1.737-7.997 7.375 7.375 0 0 0-6.84-4.585z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/discover.svg���������������������������������0000664�0000000�0000000�00000003335�14753064456�0025445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.58 12a2.023 2.023 0 1 1-2.025-2.023h.002c1.118 0 2.023.906 2.023 2.023m-5.2-2.001c-1.124 0-2.025.884-2.025 1.99 0 1.118.878 1.984 2.007 1.984.319 0 .593-.063.93-.221v-.873c-.296.297-.559.416-.895.416-.747 0-1.277-.542-1.277-1.312 0-.73.547-1.306 1.243-1.306.354 0 .622.126.93.428v-.873a1.9 1.9 0 0 0-.913-.233m-3.352 1.545c-.445-.165-.576-.273-.576-.479 0-.239.233-.422.553-.422.222 0 .405.091.598.308l.388-.508a1.67 1.67 0 0 0-1.117-.422c-.673 0-1.186.467-1.186 1.089 0 .524.239.792.936 1.043.291.103.438.171.513.217a.46.46 0 0 1 .222.394c0 .308-.245.536-.576.536-.354 0-.639-.177-.809-.507l-.479.461c.342.502.752.724 1.317.724.771 0 1.311-.513 1.311-1.249-.002-.603-.252-.876-1.095-1.185M24 10.3a.29.29 0 0 1-.288.291.29.29 0 0 1-.291-.291v-.003A.29.29 0 1 1 24 10.3m-.059.001a.235.235 0 0 0-.231-.239.234.234 0 0 0-.232.239c0 .132.104.239.232.239a.235.235 0 0 0 .231-.239M3.472 13.887h.742v-3.803h-.742zm12.702-1.248-1.014-2.554h-.81l1.614 3.9h.399l1.643-3.9h-.804zm2.166 1.248h2.104v-.644h-1.362v-1.027h1.312v-.644h-1.312v-.844h1.362v-.644H18.34zm5.409-3.557.11.138h-.097l-.094-.13v.13h-.08v-.334h.107c.081 0 .126.036.126.103.001.046-.025.08-.072.093m-.006-.092q0-.043-.06-.043h-.014v.087h.014q.06 0 .06-.044m-1.228 2.047 1.197 1.602H22.8l-1.027-1.528h-.097v1.528h-.741v-3.803h1.1c.855 0 1.346.411 1.346 1.123 0 .583-.308.965-.866 1.078m.103-1.038c0-.37-.251-.563-.713-.563h-.228v1.152h.217c.473-.001.724-.207.724-.589m-19.487.742a1.91 1.91 0 0 1-.69 1.46c-.365.303-.781.439-1.357.439H.001v-3.803H1.09c1.202 0 2.041.781 2.041 1.904m-.764-.006c0-.364-.154-.718-.411-.947-.245-.222-.536-.308-1.015-.308H.742v2.515h.199c.479 0 .782-.092 1.015-.302.256-.228.411-.593.411-.958"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/disqus.svg�����������������������������������0000664�0000000�0000000�00000000704�14753064456�0025134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.438 23.654c-2.853 0-5.46-1.04-7.476-2.766L0 21.568l1.917-4.733A11.7 11.7 0 0 1 .875 12C.875 5.564 6.05.346 12.44.346 18.82.346 24 5.564 24 12c0 6.438-5.176 11.654-11.562 11.654m6.315-11.687v-.033c0-3.363-2.373-5.76-6.462-5.76H7.877V17.83h4.35c4.12 0 6.525-2.5 6.525-5.863h.004zm-6.415 2.998h-1.29V9.04h1.29c1.897 0 3.157 1.08 3.157 2.945v.03c0 1.884-1.26 2.95-3.157 2.95"/></svg>������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/disroot.svg����������������������������������0000664�0000000�0000000�00000001633�14753064456�0025311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.976 2.856C2.321 3.296.603 4.491.122 5.536c-.144.315-.164.885-.04 1.133.178.35.343.384 1.387.24.817-.11 1.085-.117 1.985-.055 1.106.076 1.594.213 1.882.522.172.179 3.75 9.033 3.813 9.418.11.694-.234 1.312-1.189 2.143-.797.687-.927.907-.824 1.381.151.666.508.982 1.113.982.508 0 2.095-.268 3.297-.55 3.476-.817 6.437-1.923 8.504-3.173 1.944-1.168 3.25-2.555 3.765-3.984.15-.433.178-.618.185-1.326 0-.975-.11-1.38-.536-1.958-.858-1.16-1.8-2.005-3.338-2.988-2.96-1.902-3.778-2.294-6.67-3.215-2.521-.803-5.358-1.318-7.728-1.394-1.017-.027-1.147-.02-1.752.144m9.411 6.526c1.477.563 2.823 1.47 4.554 3.07.838.777 1.024 1.072 1.058 1.732.076 1.23-.597 2.033-2.088 2.507-.708.22-2.191.536-2.253.474-.02-.014 0-.13.041-.254.048-.13.062-.447.048-.749-.027-.433-.096-.68-.364-1.319-.179-.433-.708-1.91-1.175-3.283l-.851-2.5.22.047c.123.028.487.151.81.275"/></svg>�����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/distrokid.svg��������������������������������0000664�0000000�0000000�00000002605�14753064456�0025622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 10.505h1.165c.94 0 1.589.645 1.589 1.486V12c0 .841-.65 1.495-1.59 1.495H0zM1.165 12.9c.538 0 .901-.363.901-.892V12c.002-.53-.361-.903-.901-.903H.658v1.804zm2.205-2.396h.658v2.99H3.37zm1.201 2.554.389-.466c.269.222.55.363.892.363.27 0 .431-.107.431-.282v-.008c0-.167-.102-.252-.602-.38-.602-.154-.99-.32-.99-.914v-.009c0-.542.433-.9 1.046-.9a1.73 1.73 0 0 1 1.111.38l-.342.495c-.264-.184-.525-.295-.776-.295-.25 0-.384.116-.384.26v.01c0 .196.128.26.644.392.606.158.949.376.949.897v.009c0 .593-.453.927-1.098.927a1.9 1.9 0 0 1-1.27-.479m3.57-1.948h-.909v-.605h2.477v.605H8.8v2.384h-.657V11.11zm2.072-.606h1.367c.38 0 .675.107.871.303.167.167.257.402.257.684v.008c0 .483-.26.786-.64.927l.73 1.068h-.77l-.64-.957h-.517v.957h-.658zm1.324 1.452c.32 0 .504-.171.504-.423v-.008c0-.282-.196-.427-.516-.427h-.652v.858zm1.632.052V12c0-.85.671-1.546 1.594-1.546s1.583.688 1.583 1.537V12c0 .85-.67 1.546-1.593 1.546s-1.584-.688-1.584-1.537zm2.49 0V12c0-.512-.375-.94-.905-.94s-.897.42-.897.932v.009c0 .512.376.94.906.94s.897-.42.897-.932zm1.4-1.504h.337v1.785l1.718-1.785h.435l-1.281 1.307 1.337 1.683h-.423l-1.15-1.448-.636.645v.803h-.337zm3.1 0h.339v2.99h-.338v-2.99zm1.214 0h1.038c.94 0 1.589.645 1.589 1.486V12c0 .841-.65 1.495-1.589 1.495h-1.038v-2.99zm1.038 2.678c.756 0 1.239-.512 1.239-1.174V12c0-.662-.483-1.182-1.239-1.182h-.702v2.366z"/></svg>���������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/django.svg�����������������������������������0000664�0000000�0000000�00000001034�14753064456�0025063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.146 0h3.924v18.166c-2.013.382-3.491.535-5.096.535-4.791 0-7.288-2.166-7.288-6.32 0-4.002 2.65-6.6 6.753-6.6.637 0 1.121.05 1.707.203zm0 9.143a3.9 3.9 0 0 0-1.325-.204c-1.988 0-3.134 1.223-3.134 3.365 0 2.09 1.096 3.236 3.109 3.236.433 0 .79-.025 1.35-.102V9.142zM21.314 6.06v9.098c0 3.134-.229 4.638-.917 5.937-.637 1.249-1.478 2.039-3.211 2.905l-3.644-1.733c1.733-.815 2.574-1.53 3.109-2.625.561-1.121.739-2.421.739-5.835V6.059zM17.39.021h3.924v4.026H17.39z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dji.svg��������������������������������������0000664�0000000�0000000�00000002720�14753064456�0024372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.2 7.8a717 717 0 0 0-1.232 4.63c-.202.772-.401 1.544-.634 2.308-.226.743-.504 1.535-.91 2.21-.422.703-.969 1.253-1.726 1.604q-.451.206-.939.306-.691.136-1.394.165c-1.163.065-3.628.056-4.79.056l.713-2.64c.539 0 1.078.002 1.617-.013.52-.014 1.092-.042 1.605-.163.56-.133.984-.36 1.355-.817.337-.416.564-.935.75-1.424.34-.893.688-2.173.934-3.093.277-1.041.544-2.085.812-3.129zm4.8 0-2.072 7.68h-3.84l2.073-7.68ZM11.339 4.92h3.84q-.603 2.25-1.212 4.496c-.283 1.044-.565 2.088-.872 3.124-.135.452-.269.903-.445 1.342-.141.352-.3.666-.591.93a1.9 1.9 0 0 1-.734.405c-.356.112-.717.154-1.085.184-.53.043-1.06.054-1.591.063q-2.987.03-5.974-.001a21 21 0 0 1-.954-.034 5 5 0 0 1-.632-.07 2 2 0 0 1-.412-.119c-.44-.192-.664-.575-.677-1.043q0-.396.093-.78c.076-.367.171-.728.265-1.09.179-.691.506-1.966.762-2.638.2-.526.464-1.05.966-1.382.28-.186.576-.285.901-.35.241-.05.483-.075.728-.093.41-.03.82-.04 1.23-.047q.873-.013 1.748-.015L8.148 7.8h1.454l-.518 1.92c-.864 0-1.728-.002-2.593.003-.252.001-.504 0-.756.016a1 1 0 0 0-.264.042c-.113.04-.17.11-.22.213-.073.15-.115.31-.162.468a85 85 0 0 0-.503 1.857q-.054.21-.1.42-.034.148-.05.298c-.01.11-.014.242.053.345.068.103.182.127.29.143.12.018.241.021.363.025q.298.008.597.008.816.004 1.633 0c.25-.002.501-.004.752-.014.173-.007.343-.013.513-.054.13-.031.23-.08.318-.186q.084-.107.133-.235c.088-.209.15-.425.213-.641.245-.83.466-1.665.692-2.499l.675-2.503.67-2.505h3.84z"/></svg>������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dlib.svg�������������������������������������0000664�0000000�0000000�00000001136�14753064456�0024536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.219.002a19 19 0 0 0-1.523.046v23.909c.973.068 1.954.055 2.924-.032.284-.94.575-1.879.86-2.818a14.4 14.4 0 0 0 4.193-1.361l3.12 1.507a14 14 0 0 0 2.076-1.58l-1.91-2.49c.83-1.02 1.443-2.16 1.726-3.356l3.57-.686a10.5 10.5 0 0 0-.03-2.287l-3.548-.682a8.25 8.25 0 0 0-1.723-3.355q.957-1.246 1.915-2.488a13.5 13.5 0 0 0-2.043-1.599L11.663 4.26a13.8 13.8 0 0 0-4.187-1.387L6.61.044A19 19 0 0 0 5.22.002m2.33 5.388c3.686.814 6.464 3.746 6.278 6.801-.094 2.897-2.682 5.658-6.243 6.398-.17-.227-.025-.78-.073-1.134L7.506 5.382l.042.01z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dlna.svg�������������������������������������0000664�0000000�0000000�00000001657�14753064456�0024552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.255 12.667H13.02c-1.052 0-2.1.489-2.693 1.266v-.017a3.24 3.24 0 0 1-2.629 1.353 3.25 3.25 0 0 1 0-6.502c1.085 0 2.04.536 2.63 1.353v-.013c.591.776 1.64 1.273 2.692 1.273h10.129c.186-.005.873-.095.848-.981-.884-5.086-5.88-8.987-11.923-8.987-3.722 0-7.048 1.48-9.263 3.803-.356.527.014.689.35.734H9.77c1.05 0 2.1-.498 2.692-1.277v.018a3.24 3.24 0 0 1 2.63-1.355 3.252 3.252 0 0 1 0 6.503 3.24 3.24 0 0 1-2.63-1.355v.019c-.592-.78-1.642-1.266-2.692-1.266H2.55l.028.003s-1.068-.06-1.719.859C.361 8.9 0 10.62 0 12.002c0 1.388.198 2.65.867 3.923.564.908 1.71.85 1.71.85l-.042.005h7.233c1.05 0 2.1-.49 2.692-1.268v.02a3.24 3.24 0 0 1 2.63-1.356 3.251 3.251 0 0 1 0 6.502 3.24 3.24 0 0 1-2.63-1.354v.018c-.592-.779-1.642-1.277-2.692-1.277H3.164c-.328.042-.698.198-.379.7 2.216 2.336 5.555 3.823 9.289 3.823 6.054 0 11.056-3.91 11.926-9.009-.004-.713-.489-.877-.745-.912"/></svg>���������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dm.svg���������������������������������������0000664�0000000�0000000�00000003320�14753064456�0024221�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.142 15.057c-.556-.281-1.02-.54-1.32-.755 2.364.36 5.9.71 11.603-.18 0 0 .415.638.648 1.624l-.14.1c-.718.472-1.948 1.035-3.738 1.035-.755 0-1.554-.1-2.373-.301q-.459-.114-.885-.237a40 40 0 0 1-2.608-.868 79 79 0 0 0-1.187-.417zm-5.67 1.192a11.5 11.5 0 0 0-1.414.28c-1.927.497-3.377 1.107-3.392 1.113l-.402.17L.9 16.757l-.9.309s1.134 1.313 1.333 1.746l.28.745s3.6-1.926 8.836-1.635c1.188.066 2.231.4 2.231.4s-2.133-1.352-2.561-1.483c-1.2-.285-2.42-.482-3.649-.589zm17.487-.735s-.264.3-.8.653c-1.056.695-3.172 1.588-6.438.789q-.45-.113-.897-.24c-2.978-.85-4.748-1.949-8.743-2.425-2.707.064-5.276.324-6.726.821 0 0 .41.409.531.578.06.127.203.392.336.775.147.42.284.822.284.822s1.465-.622 3.448-1.133c.93-.243 1.928-.403 2.841-.351 3.047.185 5.507 1.717 8.233 2.962 1.891.513 6.506.903 7.807.333 0 0 .264-1.214.124-3.584M8.11 8.784c.25 0 .443.04.615.078l-.061.315c-.234 1.218-1.415 3.17-2.115 3.17-.264 0-.39-.216-.39-.703 0-1.18.724-2.86 1.951-2.86m3.294-4.33c-1.094-.038-2.031.029-2.946.116l-.253 1.196c.384.026.819.077 1.11.129v.012L9.021 7.38a4 4 0 0 0-.565-.05c-2.892 0-4.183 2.21-4.183 4.623 0 1.372.525 2.026 1.568 2.026 1.02 0 1.824-.885 2.39-1.807h.028c-.251.68-.407 1.193-.486 1.652H9.57zm9.738 4.968c.238-1.193-.023-2.091-1.304-2.091-1.16 0-1.895.782-2.502 1.846l-.014-.012c.066-.257.106-.421.106-.577 0-.86-.506-1.257-1.285-1.257-1.161 0-1.796.759-2.39 1.747l-.027-.001c.225-.565.398-1.142.502-1.641a19 19 0 0 0-2.839.115l-.251 1.195c.384.026.819.078 1.11.129v.037l-.965 4.913 1.783.002.343-1.75c.293-1.513 1.36-3.053 1.969-3.053.303 0 .394.243.262.884l-.667 3.917h1.785l.285-1.711c.25-1.529 1.349-3.09 1.957-3.09.301 0 .396.243.263.884l-.649 3.917h1.788z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/docker.svg�����������������������������������0000664�0000000�0000000�00000003327�14753064456�0025077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.983 11.078h2.119a.186.186 0 0 0 .186-.185V9.006a.186.186 0 0 0-.186-.186h-2.119a.185.185 0 0 0-.185.185v1.888c0 .102.083.185.185.185m-2.954-5.43h2.118a.186.186 0 0 0 .186-.186V3.574a.186.186 0 0 0-.186-.185h-2.118a.185.185 0 0 0-.185.185v1.888c0 .102.082.185.185.185m0 2.716h2.118a.187.187 0 0 0 .186-.186V6.29a.186.186 0 0 0-.186-.185h-2.118a.185.185 0 0 0-.185.185v1.887c0 .102.082.185.185.186m-2.93 0h2.12a.186.186 0 0 0 .184-.186V6.29a.185.185 0 0 0-.185-.185H8.1a.185.185 0 0 0-.185.185v1.887c0 .102.083.185.185.186m-2.964 0h2.119a.186.186 0 0 0 .185-.186V6.29a.185.185 0 0 0-.185-.185H5.136a.186.186 0 0 0-.186.185v1.887c0 .102.084.185.186.186m5.893 2.715h2.118a.186.186 0 0 0 .186-.185V9.006a.186.186 0 0 0-.186-.186h-2.118a.185.185 0 0 0-.185.185v1.888c0 .102.082.185.185.185m-2.93 0h2.12a.185.185 0 0 0 .184-.185V9.006a.185.185 0 0 0-.184-.186h-2.12a.185.185 0 0 0-.184.185v1.888c0 .102.083.185.185.185m-2.964 0h2.119a.185.185 0 0 0 .185-.185V9.006a.185.185 0 0 0-.184-.186h-2.12a.186.186 0 0 0-.186.186v1.887c0 .102.084.185.186.185m-2.92 0h2.12a.185.185 0 0 0 .184-.185V9.006a.185.185 0 0 0-.184-.186h-2.12a.185.185 0 0 0-.184.185v1.888c0 .102.082.185.185.185M23.763 9.89c-.065-.051-.672-.51-1.954-.51q-.508.001-1.01.087c-.248-1.7-1.653-2.53-1.716-2.566l-.344-.199-.226.327c-.284.438-.49.922-.612 1.43-.23.97-.09 1.882.403 2.661-.595.332-1.55.413-1.744.42H.751a.75.75 0 0 0-.75.748 11.4 11.4 0 0 0 .692 4.062c.545 1.428 1.355 2.48 2.41 3.124 1.18.723 3.1 1.137 5.275 1.137a15.7 15.7 0 0 0 2.93-.266 12.3 12.3 0 0 0 3.823-1.389 10.5 10.5 0 0 0 2.61-2.136c1.252-1.418 1.998-2.997 2.553-4.4h.221c1.372 0 2.215-.549 2.68-1.009.309-.293.55-.65.707-1.046l.098-.288Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/docsdotrs.svg��������������������������������0000664�0000000�0000000�00000001344�14753064456�0025631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.903 11.728-4.528-1.697V4.945a1.69 1.69 0 0 0-1.097-1.58l-4.687-1.757a1.67 1.67 0 0 0-1.186 0L6.717 3.366a1.69 1.69 0 0 0-1.097 1.58v5.085l-4.528 1.697A1.69 1.69 0 0 0 0 13.308v5.16c0 .638.36 1.224.933 1.51l4.687 2.344a1.68 1.68 0 0 0 1.51 0L12 19.884l4.87 2.438a1.68 1.68 0 0 0 1.51 0l4.687-2.344a1.69 1.69 0 0 0 .933-1.51v-5.16c0-.703-.436-1.331-1.097-1.58m-6.122-1.66-3.984 1.496V8.367l3.984-1.734zM7.22 4.88 12 3.09l4.781 1.79v.028L12 6.848l-4.781-1.94Zm3.937 13.645-3.984 1.992V16.81l3.984-1.818zm0-5.25-4.781 1.94-4.781-1.94v-.028l4.781-1.79 4.781 1.79zm11.25 5.25-3.984 1.992V16.81l3.984-1.818zm0-5.25-4.781 1.94-4.781-1.94v-.028l4.781-1.79 4.781 1.79z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/docsify.svg����������������������������������0000664�0000000�0000000�00000001537�14753064456�0025271�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2.862c-6.617 0-12 5.383-12 12 0 1.964.49 3.406 1.5 4.408 1.706 1.696 4.619 1.868 8.05 1.868q.646 0 1.315-.005a218 218 0 0 1 2.765 0c3.792.024 7.066.044 8.88-1.758C23.511 18.378 24 16.9 24 14.862c0-6.617-5.383-12-12-12m-8.852 8.154a.393.393 0 1 1 0-.787.393.393 0 0 1 0 .787M5.113 8.48c-.55.637-1.01 1.361-1.01 1.361-.06.092-.167.099-.24.017l-.26-.29a.25.25 0 0 1-.02-.303s1.11-1.559 1.806-2.186c.25-.225.248-.239.891-.692s1.4-.826 1.4-.826a.27.27 0 0 1 .308.059l.26.29c.075.082.056.186-.04.235 0 0-1.772.887-2.353 1.509-.394.422-.192.19-.742.826m1.576 2.143a1.377 1.377 0 1 1 2.754 0 1.377 1.377 0 0 1-2.754 0m5.41 7.929c-1.902 0-3.443-1.542-3.443-3.443s1.644-.854 3.545-.854 3.34-1.047 3.34.854-1.541 3.443-3.443 3.443zM16.72 12a1.377 1.377 0 1 1 0-2.754 1.377 1.377 0 0 1 0 2.754"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/doctrine.svg���������������������������������0000664�0000000�0000000�00000001317�14753064456�0025434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.791 0a2 2 0 0 0-.254.016 2.22 2.22 0 0 0-1.95 2.383 2.22 2.22 0 0 0 .666 1.416l-.003.004L9.585 6.02a9.153 9.153 0 0 0 2.78 17.973 9.15 9.15 0 0 0 8.787-9.145l-.116-1.451a9.1 9.1 0 0 0-2.625-5.08h.002L10.336.613l-.002.001A2.22 2.22 0 0 0 8.791 0m2.215 8.548a1.5 1.5 0 0 1 .91.453l4.747 4.773a1.32 1.32 0 0 1 .436.789l.017.21a1.33 1.33 0 0 1-.451.998l-4.779 4.822a1.5 1.5 0 0 1-.999.438 1.49 1.49 0 0 1-1.544-1.366 1.48 1.48 0 0 1 .439-1.176l2.42-2.422H7.175v-.002a1.329 1.329 0 0 1-.173-2.649 1 1 0 0 1 .144-.01l.017.001c1.658.006 3.315.003 4.973.003l-2.28-2.28a1.48 1.48 0 0 1-.498-.993 1.48 1.48 0 0 1 1.303-1.588 1.5 1.5 0 0 1 .345-.001"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/docusaurus.svg�������������������������������0000664�0000000�0000000�00000010310�14753064456�0026013�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.462 22.201h12.321a2.466 2.466 0 0 0 2.369-1.854q.039.007.079.008a.62.62 0 0 0 .615-.615.62.62 0 0 0-.615-.615q-.04.001-.079.007l-.014-.055a.62.62 0 0 0 .378-.568.62.62 0 0 0-.615-.615.6.6 0 0 0-.371.127l-.042-.041a.6.6 0 0 0 .125-.368c0-.67-.919-.858-1.181-.241l-.055-.014q.006-.039.008-.079a.62.62 0 0 0-.616-.615.62.62 0 0 0-.615.615h-.096a.617.617 0 0 0-1.033 0h-.717v-2.461h2.461q.173-.001.331-.047a.307.307 0 1 0 .529-.304l.02-.021c.052.04.116.064.186.064h.002c.337 0 .428-.463.117-.591l.007-.028q.02.003.039.004a.31.31 0 0 0 .308-.308.31.31 0 0 0-.308-.308q-.02.001-.039.004l-.007-.027c.327-.13-.028-.745-.305-.528l-.02-.021a.3.3 0 0 0 .062-.184c-.011-.326-.454-.416-.591-.12a1.2 1.2 0 0 0-.32-.047h-2.143a2.47 2.47 0 0 1 2.132-1.23h7.385V9.894l-8.618-.539a1.315 1.315 0 0 1-1.229-1.308c0-.688.542-1.265 1.229-1.307l8.618-.539v-1.23a2.473 2.473 0 0 0-2.462-2.462H8.615l-.307-.533a.356.356 0 0 0-.616 0l-.307.533-.308-.533a.355.355 0 0 0-.615 0l-.308.533-.308-.533a.355.355 0 0 0-.615 0l-.308.533-.008.001-.51-.51a.354.354 0 0 0-.594.159l-.168.628-.639-.171a.357.357 0 0 0-.436.435l.172.639-.628.169a.356.356 0 0 0-.16.594l.51.51v.008l-.533.307a.356.356 0 0 0 0 .616l.533.307-.533.308a.356.356 0 0 0 0 .616l.533.307-.533.308a.355.355 0 0 0 0 .615l.533.308-.533.308a.355.355 0 0 0 0 .615l.533.308-.533.307a.356.356 0 0 0 0 .616l.533.308-.533.307a.356.356 0 0 0 0 .616l.533.307-.533.308a.355.355 0 0 0 0 .615l.533.308-.533.308a.355.355 0 0 0 0 .615l.533.308-.533.308a.355.355 0 0 0 0 .615l.533.308-.533.307a.356.356 0 0 0 0 .616l.533.307-.533.308a.355.355 0 0 0 0 .615l.533.308-.533.308a.355.355 0 0 0 0 .615l.533.308a2.46 2.46 0 0 1-2.13-1.231A2.47 2.47 0 0 0 0 19.74c0 1.35 1.112 2.46 2.462 2.461m19.692-5.204v2.743a2.473 2.473 0 0 1-2.461 2.461h-.001 1.231a2.466 2.466 0 0 0 2.383-1.854q.039.007.079.008A.62.62 0 0 0 24 19.74a.62.62 0 0 0-.615-.615q-.04.001-.079.007l-.014-.055a.62.62 0 0 0 .378-.568.62.62 0 0 0-.615-.615.6.6 0 0 0-.371.127l-.042-.041a.6.6 0 0 0 .125-.368.623.623 0 0 0-.613-.615m-4.067 2.62h2.223c.067 0 .123.056.123.123a.124.124 0 0 1-.123.123h-2.223a.9.9 0 0 0 0-.246m-.33-1.231h2.553c.067 0 .123.056.123.123a.124.124 0 0 1-.123.123h-2.553a.9.9 0 0 0 0-.246m-1.026-1.231h3.579c.067 0 .123.056.123.123a.124.124 0 0 1-.123.123h-3.474a.9.9 0 0 0-.105-.246m3.579-.984h-6.159a.126.126 0 0 1-.123-.123c0-.068.056-.123.123-.123h6.159c.067 0 .123.056.123.123a.124.124 0 0 1-.123.123m1.844-3.816v2.462q.172-.001.331-.047a.308.308 0 1 0 .528-.304l.021-.021c.052.04.116.064.186.064a.31.31 0 0 0 .307-.308.31.31 0 0 0-.189-.283l.007-.028q.02.003.04.004a.31.31 0 0 0 .307-.308.31.31 0 0 0-.307-.308q-.02.001-.04.004l-.007-.027a.31.31 0 0 0-.118-.592.3.3 0 0 0-.186.064l-.021-.021a.3.3 0 0 0 .063-.184c-.011-.326-.454-.416-.591-.12a1.2 1.2 0 0 0-.321-.047zm-6.059 2.339h4.215c.067 0 .123.056.123.123a.124.124 0 0 1-.123.123h-4.451a.6.6 0 0 0 .073-.19.6.6 0 0 0 .163-.056m.454-1.208h3.761c.067 0 .123.056.123.123a.124.124 0 0 1-.123.123h-3.772a.55.55 0 0 0 .011-.246m5.605-6.225h-.004c-.381.013-.561.393-.719.729-.166.35-.294.578-.504.572-.233-.009-.366-.271-.506-.549-.162-.32-.347-.682-.734-.668-.375.013-.556.344-.715.636-.169.311-.285.5-.507.491-.237-.008-.363-.222-.509-.469-.163-.275-.351-.585-.731-.574-.368.013-.549.294-.709.542-.169.262-.287.421-.513.412-.243-.009-.368-.186-.513-.391-.163-.231-.347-.491-.726-.479-.36.013-.541.243-.701.446-.151.192-.27.344-.52.335h-.005a.126.126 0 0 0-.123.123c0 .066.053.121.119.123.371.012.559-.222.723-.429.145-.184.27-.343.516-.352.237-.01.348.138.516.375.16.226.341.482.705.495.382.013.566-.273.729-.525.145-.226.271-.421.511-.429.22-.008.34.166.51.453.159.271.34.577.712.59.385.014.57-.322.732-.619.14-.257.273-.5.507-.508.221-.005.336.196.506.533.159.314.339.67.717.684h.021c.377 0 .556-.378.714-.713.14-.297.273-.576.501-.588zM7.385 6.509a.31.31 0 0 1-.308-.308c-.01-.532-.378-.911-.927-.922-.528-.011-.888.432-.919.922-.011.168-.139.307-.308.308a.31.31 0 0 1-.308-.308c0-.848.69-1.538 1.539-1.538.848 0 1.538.69 1.538 1.538a.31.31 0 0 1-.307.308m9.846-2.308a.31.31 0 0 1 .308.308.31.31 0 0 1-.308.308.31.31 0 0 1-.308-.308.31.31 0 0 1 .308-.308m2.461-.153a.31.31 0 0 1 .307.308.31.31 0 0 1-.308.308h-.001a.31.31 0 0 1-.307-.308.31.31 0 0 1 .308-.308z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dogecoin.svg���������������������������������0000664�0000000�0000000�00000000571�14753064456�0025415�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.288 7.908h-1.715v3.38h2.697v1.415h-2.697v3.38h1.799c.462 0 3.794.052 3.789-3.933s-3.232-4.242-3.873-4.242M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m.472 18.481H8.126v-5.778H6.594v-1.415h1.532V5.511h3.73c.882 0 6.727-.183 6.727 6.594-.001 6.888-6.111 6.376-6.111 6.376"/></svg>���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/doi.svg��������������������������������������0000664�0000000�0000000�00000001533�14753064456�0024400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 12c0 6.633-5.367 12-12 12S0 18.633 0 12 5.367 0 12 0s12 5.367 12 12M7.588 6.097v4.471c-.663-.925-1.403-1.373-2.406-1.373-2.046 0-3.244 1.441-3.244 3.847 0 2.357 1.325 3.848 3.166 3.848 1.12 0 1.88-.4 2.445-1.325l-.039 1.042h2.045V6.097Zm-1.763 8.942c-1.12 0-1.802-.76-1.802-2.045 0-1.325.682-2.085 1.802-2.085 1.081 0 1.802.76 1.802 2.085 0 1.285-.672 2.045-1.802 2.045m12.253-1.948c0-2.172-1.578-3.789-3.906-3.789s-3.945 1.695-3.945 3.789c0 2.133 1.578 3.789 3.945 3.789 2.289 0 3.906-1.656 3.906-3.789m-2.094-.01c0 1.14-.711 1.89-1.851 1.89-1.139 0-1.851-.75-1.851-1.89s.712-1.89 1.851-1.89c1.149 0 1.861.751 1.851 1.89m2.6-5.795c0 .633.517 1.227 1.189 1.227.633 0 1.188-.555 1.188-1.227a1.17 1.17 0 0 0-1.188-1.189c-.672 0-1.179.556-1.189 1.189m.166 9.341h2.055V9.604H18.75Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dolby.svg������������������������������������0000664�0000000�0000000�00000000347�14753064456�0024740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 3.564v16.872h2.488c4.648 0 8.438-3.788 8.438-8.436s-3.79-8.436-8.438-8.436zm21.512 0c-4.648 0-8.438 3.788-8.438 8.436s3.79 8.436 8.438 8.436H24V3.564z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/doordash.svg���������������������������������0000664�0000000�0000000�00000000512�14753064456�0025424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.071 8.409a6.09 6.09 0 0 0-5.396-3.228H.584A.589.589 0 0 0 .17 6.184L3.894 9.93a1.75 1.75 0 0 0 1.242.516h12.049a1.554 1.554 0 1 1 .031 3.108H8.91a.589.589 0 0 0-.415 1.003l3.725 3.747a1.75 1.75 0 0 0 1.242.516h3.757c4.887 0 8.584-5.225 5.852-10.413"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dota2.svg������������������������������������0000664�0000000�0000000�00000005741�14753064456�0024643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.817 23.607-.346-.294-.468-.04c-.584-.048-.856-.101-1.186-.232l-.258-.103-.278.11c-.236.095-.814.181-1.253.188-.024 0-.064-.056-.089-.125-.028-.07-.077-.137-.115-.15-.035-.012-.297.046-.587.133l-.525.158-.189-.091c-.238-.116-.338-.114-.736.007-.303.094-.341.096-.584.044-.363-.076-.666-.071-1.349.026-.744.106-.76.106-.979-.044a.6.6 0 0 0-.406-.125c-.203 0-.225-.009-.248-.104a.56.56 0 0 1 .043-.277c.112-.278.156-.952.168-2.563l.012-1.505.211.015.208.015.032-.87c.016-.478.032-1.169.035-1.534l.005-.66-.112-.08c-.305-.223-.291-.191-.418-.918a12 12 0 0 1-.146-1.23c-.025-.532-.023-.547.075-.658l.1-.114.248.213c.138.117.255.194.266.17.036-.113-.077-1.461-.135-1.631a1 1 0 0 1-.066-.308c0-.068-.068-.252-.153-.412l-.151-.289.051-.513c.067-.68-.019-1.18-.304-1.782l-.125-.271.079-.673.084-.674-.088-.349-.091-.35.105-.391.101-.393-.115-.38-.119-.379.143-.4c.141-.389.144-.41.141-1.044C.303 2.016.228 1.551.08 1.365c-.127-.162-.106-.273.083-.446C.253.834.328.726.328.681c0-.069.031-.082.221-.086.12 0 .49-.032.823-.07l.607-.073.794.117c.792.115.793.115 1.879.069L5.74.591l.257.155.26.153L7.312.884 8.368.869 8.724.74c.194-.071.505-.195.69-.279a6 6 0 0 1 .73-.257l.398-.105.514.162.514.164.444-.149.442-.149.477.158c.263.086.751.298 1.089.472l.611.312.64-.018c.485-.015.651-.033.677-.078a3 3 0 0 0 .133-.407l.095-.351.605.02c.453.016.859.064 1.601.194l.995.176.259-.104c.14-.057.408-.126.595-.15.313-.042.367-.037.794.071.398.1.535.115 1.082.115.345 0 .703-.015.798-.031.163-.028.19-.017.521.222.193.138.364.273.379.302.017.027.053.173.077.324l.046.278-.209.396c-.117.218-.214.415-.214.438s.048.061.104.088a.7.7 0 0 1 .215.217l.111.17-.025 2.285c-.015 1.257-.04 2.378-.054 2.489l-.027.204-.345-.022-.344-.027-.029.191a3 3 0 0 0-.029.424c0 .192-.03.293-.16.546l-.163.311.09.129c.05.072.221.265.38.43l.292.305-.089.323-.09.325.107.688c.124.827.115 1.035-.088 1.751a6 6 0 0 0-.146.593c0 .075.055.094.427.145.165.021.2.041.2.116 0 .049.026 1.104.06 2.345.107 4.075.117 4.964.067 5.888a13 13 0 0 1-.067.891c-.01.009-.341-.124-.738-.295l-.723-.308-.312.135c-.322.139-.354.175-.396.442-.029.177-.007.169-.8.331l-.467.096-.454-.152c-.42-.141-.477-.151-.808-.129-.247.015-.417.003-.562-.04-.208-.059-.208-.059-.557.102l-.352.159h-1.3c-1.369-.002-1.651.02-2.594.195-.652.12-.881.115-2.022-.022l-.602-.074-.421.096c-.234.054-.47.096-.526.094-.068 0-.224-.101-.451-.294zm-2.533-3.689c1.005-.379 1.834-.695 1.839-.702.013-.014-3.917-3.826-4.439-4.307-.145-.134-.275-.237-.285-.227-.009.011-.329.865-.709 1.895-.42 1.138-.679 1.899-.658 1.931.025.042 2.392 2.091 2.419 2.097.003 0 .828-.309 1.833-.687m13.512-2.089c.523-1.265.936-2.31.922-2.325-.019-.021-9.83-6.646-16.698-11.278l-.551-.371-.9.407c-.497.222-.896.425-.889.447.01.028 3.331 3.51 7.384 7.74l7.368 7.692 1.206-.008 1.209-.008zM19.434 6.972c.173-.962.316-1.781.316-1.821 0-.043-.253-.249-.676-.546-.372-.262-.701-.49-.73-.509-.053-.033-3.902 1.008-3.897 1.053.004.03 4.644 3.599 4.66 3.582.008-.006.154-.799.327-1.759"/></svg>�������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dotenv.svg�����������������������������������0000664�0000000�0000000�00000000503�14753064456�0025120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 0v24H0V0zM10.933 15.89H6.84v5.52h4.198v-.93H7.955v-1.503h2.77v-.93h-2.77v-1.224h2.978zm2.146 0h-1.084v5.52h1.035v-3.6l2.226 3.6h1.118v-5.52h-1.036v3.686zm5.117 0h-1.208l1.973 5.52h1.19l1.976-5.52h-1.182l-1.352 4.085zM5.4 19.68H3.72v1.68H5.4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dotnet.svg�����������������������������������0000664�0000000�0000000�00000000724�14753064456�0025123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 8.77h-2.468v7.565h-1.425V8.77h-2.462V7.53H24zm-6.852 7.565h-4.821V7.53h4.63v1.24h-3.205v2.494h2.953v1.234h-2.953v2.604h3.396zm-6.708 0H8.882L4.78 9.863a3 3 0 0 1-.258-.51h-.036q.048.283.048 1.21v5.772H3.157V7.53h1.659l3.965 6.32q.25.392.323.54h.024q-.06-.35-.06-1.185V7.529h1.372zm-8.703-.693a.868.829 0 0 1-.869.829.868.829 0 0 1-.868-.83.868.829 0 0 1 .868-.828.868.829 0 0 1 .869.829"/></svg>��������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/douban.svg�����������������������������������0000664�0000000�0000000�00000000403�14753064456�0025070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.51 3.06h22.98V.755H.51zm20.976 2.537v9.608h-2.137l-1.669 5.76H24v2.28H0v-2.28h6.32l-1.67-5.76H2.515V5.597h18.972Zm-5.066 9.608H7.58l1.67 5.76h5.501zM18.367 7.9H5.634v5.025h12.733z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/doubanread.svg�������������������������������0000664�0000000�0000000�00000000476�14753064456�0025736�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.328 5.553c-2.648.906-4.008 4.372-7.101 4.833C4.827 10.833.752 7.205 0 6c0 0 .526.906 1.28 2.105C5.205 14.297 7.772 18.224 12 18.75c5.28.68 8.146-4.535 8.826-6.64.607-1.732 1.733-1.66 2.494-1.433l.68.227s-2.729-7.402-8.688-5.36l.016.008z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dovecot.svg����������������������������������0000664�0000000�0000000�00000001025�14753064456�0025264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.784 8.39a.94.94 0 0 0-.564.192l-8.102 6.19a.313.313 0 0 0 0 .49l.339.253c.153.12.368.12.523 0l4.018-3.061a.62.62 0 0 1 .75 0l2.659 2.033a.62.62 0 0 0 .749 0l3.515-2.683a.422.422 0 0 0 0-.682l-3.322-2.54a.93.93 0 0 0-.565-.192m9.298 0a.92.92 0 0 0-.563.192l-8.102 6.196a.307.307 0 0 0 0 .489l.335.255a.44.44 0 0 0 .527 0l4.635-3.533a.624.624 0 0 1 .748 0l4.527 3.452a.62.62 0 0 0 .75 0l2.889-2.213a.43.43 0 0 0 0-.688l-5.181-3.958a.93.93 0 0 0-.565-.192"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dovetail.svg���������������������������������0000664�0000000�0000000�00000000260�14753064456�0025430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.75 0 1.5 3l5.25 3v6L12 9V3Zm0 12L1.5 15l5.25 3v6L12 21v-6Zm10.5-6L12 8.966 17.25 12v6l5.25-3V9Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/downdetector.svg�����������������������������0000664�0000000�0000000�00000001122�14753064456�0026320�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.49 0 .257 5.362.257 12v12H12c6.51 0 11.743-5.362 11.743-12S18.51 0 12 0m0 3.51c.543 0 1.086.065 1.66.192.383.128.639.383.639.766l-.638 10.085c0 .255-.256.511-.512.511-.766.128-1.533.128-2.171 0-.383 0-.639-.256-.639-.51L9.701 4.467c0-.383.256-.638.638-.766A7.6 7.6 0 0 1 12 3.51m.065 12.99q.67 0 1.339.095c.255 0 .384.256.384.384.127.894.127 1.786 0 2.807 0 .256-.257.384-.384.384a9.4 9.4 0 0 1-2.68 0c-.256 0-.384-.256-.384-.384-.128-.893-.128-1.786 0-2.807 0-.255.256-.384.383-.384a9.5 9.5 0 0 1 1.342-.095"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/doxygen.svg����������������������������������0000664�0000000�0000000�00000006532�14753064456�0025306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.371 13.934.013.892h-.059l-10.273.01-.015-.902zm-6.548-1.257q-.113-.308-.113-.693c0-.385.038-.487.113-.693a1.5 1.5 0 0 1 .32-.53 1.4 1.4 0 0 1 .5-.34q.29-.125.652-.125t.653.123q.297.117.504.34.208.217.32.532.114.309.113.693c-.001.384-.037.487-.112.693-.07.197-.178.378-.32.532a1.4 1.4 0 0 1-.505.334 1.7 1.7 0 0 1-.653.118q-.363 0-.653-.118a1.4 1.4 0 0 1-.499-.334 1.55 1.55 0 0 1-.32-.532m.73-.693a2 2 0 0 0 .035.378q.036.18.12.328.09.142.23.229a.7.7 0 0 0 .357.086q.213-.001.356-.086a.63.63 0 0 0 .231-.23 1 1 0 0 0 .125-.327c.048-.25.048-.505 0-.755a1 1 0 0 0-.125-.328.63.63 0 0 0-.23-.229.64.64 0 0 0-.357-.093.64.64 0 0 0-.356.093.7.7 0 0 0-.232.23 1 1 0 0 0-.119.327q-.035.185-.035.377m12.927.68a2.1 2.1 0 0 1-.106-.68q0-.359.112-.668c.139-.394.432-.715.813-.89a1.55 1.55 0 0 1 .64-.13q.394 0 .684.16.29.156.475.421.189.266.273.606.083.34.059.712h-2.214q.017.427.208.618.19.192.546.192a.74.74 0 0 0 .439-.13q.184-.135.226-.284h.742q-.179.575-.547.822-.367.248-.89.248-.363 0-.653-.118a1.4 1.4 0 0 1-.492-.346 1.6 1.6 0 0 1-.315-.532zm.736-1.026h1.372q-.06-.335-.214-.507-.15-.174-.457-.174a.7.7 0 0 0-.338.074.65.65 0 0 0-.214.174.7.7 0 0 0-.113.222q-.03.12-.036.21zM8.103 13.58l.642-1.008.64 1.008h.962l-1.134-1.7 1.01-1.498H9.29l-.534.835-.54-.835h-.96l1.008 1.515L7.16 13.58zm5.408-3.198h-.872l-.67 2.19h-.014l-.694-2.19h-.896l1.074 3q.036.096.035.198a.44.44 0 0 1-.082.26.32.32 0 0 1-.244.136 2 2 0 0 1-.25-.006l-.243-.025v.724q.131.012.256.018.13.012.261.013.434 0 .676-.167c.242-.167.29-.297.38-.557zm3.018 3.89a1.3 1.3 0 0 1-.48.366q-.315.148-.843.148a1.8 1.8 0 0 1-.463-.062 1.4 1.4 0 0 1-.427-.18 1.1 1.1 0 0 1-.321-.32.95.95 0 0 1-.143-.464h.837q.06.247.232.34a.8.8 0 0 0 .398.099q.355 0 .516-.223a.9.9 0 0 0 .16-.563v-.42h-.012a.86.86 0 0 1-.392.377 1.2 1.2 0 0 1-.528.118q-.344 0-.593-.124a1.2 1.2 0 0 1-.41-.347 1.6 1.6 0 0 1-.237-.513 2.7 2.7 0 0 1-.071-.625q0-.309.083-.594a1.6 1.6 0 0 1 .255-.507q.165-.223.41-.352a1.2 1.2 0 0 1 .57-.13q.301 0 .527.117c.165.09.3.228.386.396h.012v-.427h.8v2.994q.001.192-.052.44a1.05 1.05 0 0 1-.214.457zm-.534-2.33a2 2 0 0 0-.035-.373 1 1 0 0 0-.12-.315.6.6 0 0 0-.22-.216.67.67 0 0 0-.343-.08.6.6 0 0 0-.308.073.7.7 0 0 0-.214.204.9.9 0 0 0-.125.291q-.036.161-.036.34 0 .175.03.348.036.166.113.303.083.136.214.222c.097.06.21.09.326.087a.65.65 0 0 0 .54-.272.9.9 0 0 0 .13-.278q.048-.162.048-.335zm5.824-.039q0-.488.155-.698.155-.217.498-.217.303 0 .422.198.118.192.118.587v1.807h.843v-1.967q0-.297-.053-.538a1 1 0 0 0-.172-.414.8.8 0 0 0-.344-.267 1.3 1.3 0 0 0-.553-.099q-.267 0-.522.13a.96.96 0 0 0-.415.402h-.018v-.445h-.801v3.198h.842zm-21.737.694a2.47 2.47 0 0 1 0-1.262q.09-.303.255-.532.172-.229.428-.365a1.2 1.2 0 0 1 .593-.142q.273 0 .517.123a.9.9 0 0 1 .391.353h.012V9.164h.843v4.416h-.8v-.408h-.013a.9.9 0 0 1-.392.378 1.3 1.3 0 0 1-.54.11q-.344 0-.606-.135a1.3 1.3 0 0 1-.433-.378 1.9 1.9 0 0 1-.255-.55m.76-.619q0 .187.042.37.04.188.13.336.095.142.231.235a.64.64 0 0 0 .34.086.63.63 0 0 0 .57-.315q.082-.149.117-.334a2 2 0 0 0 0-.76.9.9 0 0 0-.125-.324.66.66 0 0 0-.219-.228.63.63 0 0 0-.344-.087.66.66 0 0 0-.35.087.7.7 0 0 0-.232.228q-.088.155-.124.33-.036.179-.036.376m12.816 1.999-.01-.047-.986.01-.013.04c-.091.282-.18.469-.407.705l-.095.1h2.006l-.133-.105c-.187-.146-.295-.356-.362-.703m3.487-.061-.01.035c-.091.3-.272.565-.517.76l-.108.088 7.457-.04.033-.891z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dpd.svg��������������������������������������0000664�0000000�0000000�00000001045�14753064456�0024372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.01 10.71a.36.36 0 0 1-.343-.006l-.558-.331a.43.43 0 0 1-.182-.312l-.014-.65a.36.36 0 0 1 .165-.3l6.7-3.902L12.377.085A.8.8 0 0 0 12 0a.8.8 0 0 0-.377.085l-9.4 5.124 10.53 6.13a.36.36 0 0 1 .172.295v8.944c0 .112-.08.241-.178.294l-.567.315c-.171.062-.256.043-.361 0l-.569-.315a.36.36 0 0 1-.175-.294v-7.973a.22.22 0 0 0-.095-.156L1.702 7.048v10.579c0 .236.167.528.371.648l9.556 5.636c.102.06.237.09.371.089a.75.75 0 0 0 .371-.09l9.557-5.635a.84.84 0 0 0 .37-.648V7.047Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dragonframe.svg������������������������������0000664�0000000�0000000�00000010455�14753064456�0026115�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.936.001A.937.937 0 0 0 0 .937v22.132c0 .519.42.93.936.93h9.968s-.519-.466-.611-.56a1.1 1.1 0 0 1-.237-.365c-.053-.128-.094-.383-.112-.51-.017-.128-.06-.222-.102-.332-.043-.112-.238-.381-.289-.45-.05-.068-.332-.39-.39-.459-.06-.068-.06-.145-.034-.195.024-.051-.018-.095-.086-.172-.068-.075-.382-.415-.518-.576-.136-.162-.068-.204-.033-.221.033-.018.27.136.391.196.092.045.325.168.433.197q.07.02.083-.009c.013-.02.26-.364.367-1.023.119-1.171-.12-1.867-.4-2.456a7.4 7.4 0 0 0-.714-1.206c-.145-.187-.815-.765-.927-.841-.11-.077-1.393-.918-1.538-1.038-.144-.118.025-.166.08-.142.143.064.428.178.558.238.151.065.91.33 1.054.364s.126.03.103-.119c-.017-.111-.23-.604-.332-.782-.103-.18-.553-.817-.859-1.113-.304-.297-.663-.681-.799-.892-.136-.213-.696-1.368-.868-1.792a12 12 0 0 0-.527-1.114c-.059-.101-.134-.154-.125-.24.007-.083.253.128.365.23.167.153.388.445.661.86.272.418.571.688.621.738s.39.393.44.424c.033.017.046.004.053-.024.02-.084 0-.295-.033-.46-.042-.221-.018-.748-.092-1.012-.078-.261-.113-.389-.469-1.02-.358-.628-.74-1.681-1.053-3.347a12.3 12.3 0 0 1-.163-3.264c.018-.163.085-.136.13-.128.04.01.065.265.065.265s-.015.612.731 2.609c.75 1.996 1.633 2.133 1.71 2.15s.11.007.11-.035c0-.041-.213-.9-.136-1.57.076-.673.238-.945.33-1.04.071-.07.069-.014.069.196q-.003.105 0 .264c.01.426.281.995.281.995s.118.5.323-.664c.296-1.954.018-2.995-.06-3.274C8.28.998 7.944 0 7.157 0Zm15.427 0c-.65 0-.895.997-.972 1.279-.076.278-.357 1.32-.059 3.274.204 1.164.323.664.323.664s.273-.57.281-.995q.002-.158 0-.264c-.002-.21-.002-.266.068-.195.092.094.255.366.33 1.039.077.67-.134 1.529-.134 1.57s.032.05.11.035c.077-.017.96-.153 1.709-2.15.746-1.997.729-2.61.729-2.61s.027-.254.068-.264c.042-.008.111-.035.128.128a12.2 12.2 0 0 1-.16 3.264c-.316 1.666-.698 2.72-1.055 3.347-.356.631-.392.759-.469 1.02-.076.264-.05.79-.092 1.012-.032.165-.053.376-.032.46.006.028.02.041.05.024.053-.03.39-.374.44-.424.052-.05.35-.32.62-.738.273-.415.495-.707.664-.86.113-.102.356-.313.365-.23.009.086-.066.139-.125.24-.06.1-.359.688-.53 1.114-.169.424-.73 1.579-.866 1.792-.135.21-.494.595-.798.892-.306.296-.756.933-.86 1.113-.1.178-.313.67-.331.782-.023.15-.042.152.103.119.143-.033.9-.299 1.052-.364.132-.06.417-.174.56-.238.055-.024.225.024.08.142-.146.12-1.428.96-1.54 1.038-.11.076-.782.654-.925.84a7 7 0 0 0-.714 1.207c-.28.589-.519 1.285-.4 2.456.108.659.354 1.004.364 1.023.014.02.038.022.085.009.11-.029.34-.152.434-.197.119-.06.358-.214.39-.196.036.017.102.06-.032.221-.136.161-.45.501-.518.576-.068.077-.112.121-.086.172a.18.18 0 0 1-.035.195c-.06.068-.338.39-.391.46-.05.067-.246.337-.288.449-.042.11-.085.204-.103.332a2.4 2.4 0 0 1-.11.51 1.2 1.2 0 0 1-.237.364c-.095.095-.646.56-.646.56h10.256a.945.945 0 0 0 .936-.947V.937A.937.937 0 0 0 23.064 0ZM8.933 11.49a.08.08 0 0 0-.085.074c-.015.238-.038.422-.053.642-.017.25-.05.531.063.784.113.247.366.661.45.782.09.12.429.604.513.734.086.13.307.533.345.604.04.068.015.068.07.068.033 0 .04-.176.04-.325 0-.084-.003-.158-.003-.187 0-.494.018-.96-.147-1.432a1.3 1.3 0 0 0-.175-.345c-.123-.169-.255-.331-.383-.494-.05-.066-.1-.134-.16-.192-.09-.091-.327-.379-.382-.504-.04-.097-.055-.198-.084-.207l-.01-.002zm5.915 0-.01.002c-.03.009-.044.11-.086.207-.053.125-.29.413-.383.504-.059.058-.107.126-.157.192-.13.163-.261.325-.382.494a1.3 1.3 0 0 0-.176.345c-.165.472-.147.938-.147 1.432 0 .077-.016.512.037.512.055 0 .03 0 .07-.068.037-.07.26-.475.343-.604.083-.13.425-.613.514-.734a7 7 0 0 0 .45-.782c.065-.143.082-.294.082-.443a4 4 0 0 0-.017-.34c-.019-.22-.038-.405-.054-.643-.003-.059-.056-.076-.084-.074M10.7 19.994q-.008-.002-.006.029c0 .032-.02.16-.01.239.005.082.017.262.03.35.006.053.004.148.002.247v.192c.004.144-.015.412-.137.63 0 0-.034.035-.034.061 0 .03.024.042.05.093.046.087.194.272.249.33.052.057.155.181.272.087.044-.037.057-.095.057-.171 0-.12-.038-.288-.057-.494-.005-.035-.097-.407-.132-.567-.024-.119-.101-.464-.125-.578-.015-.067-.077-.274-.088-.314-.01-.037-.031-.12-.055-.13zm2.345 0q-.006 0-.019.005c-.021.008-.04.092-.052.13-.01.039-.072.246-.088.313-.026.114-.1.46-.127.578-.033.16-.125.532-.13.567-.032.335-.114.569 0 .665.114.094.218-.03.273-.088.053-.057.201-.242.248-.33.026-.05.05-.063.05-.092 0-.026-.035-.06-.035-.06a1.3 1.3 0 0 1-.139-.631c.003-.057 0-.123 0-.19a3 3 0 0 1 .005-.25c.011-.087.022-.268.032-.349.008-.08-.012-.207-.012-.24q.001-.03-.006-.028"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/draugiemdotlv.svg����������������������������0000664�0000000�0000000�00000004775�14753064456�0026506�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.12 7.694c4.3.056 6.808 2.693 3.96 6.3-1.307 1.662-3.517 3.303-6.465 4.373l-.422.144c-.278.09-.553.173-.823.258-.638.18-1.26.34-1.863.455-.645.134-1.268.229-1.87.298q-.644.065-1.245.078c-2.743.07-4.806-.68-5.477-2.285-.81-1.919.83-4.592 4.116-6.627C4.597 11.661.188 13.96 0 17.256v.404a4.3 4.3 0 0 0 .193 1.029c.7 2.228 4.003 3.267 8.21 2.894a19 19 0 0 0 1.244-.147 24 24 0 0 0 3.733-.874c.137-.05.275-.09.414-.14q.425-.133.831-.29c3.64-1.322 6.342-3.087 7.921-5.101.898-1.155 1.364-2.236 1.454-3.185v-.723c-.26-2.403-3.064-3.815-6.88-3.43zm-2.788-1.192a1.2 1.2 0 0 0 .283-.033c.61-.152.908-.803.934-1.572.028-.815-.257-1.495-.934-1.592a1 1 0 0 0-.18 0 1.11 1.11 0 0 0-1.065.79 2.5 2.5 0 0 0-.154.815 2.2 2.2 0 0 0 .154.954.99.99 0 0 0 .962.638m-.013.273a3 3 0 0 0-.7.075l.057.077.103.185.085.196.07.2.046.206.036.208.02.217v.427l-.015.216v.213l-.028.216-.029.214-.041.216-.041.214-.041.208-.05.208-.04.201-.05.193-.048.188-.049.18-.041.172-.041.165-.02.105-.03.116-.025.126-.023.131-.026.14-.02.118v.025l-.029.155-.028.151-.02.16-.037.175-.02.167-.028.165-.021.175-.026.164-.023.175-.02.173-.021.172c.041.5.077.921.098 1.163a1.25 1.25 0 0 0 .167.61.77.77 0 0 0 .648.295.95.95 0 0 0 .597-.213 1.18 1.18 0 0 0 .278-.692c.11-.713.43-3.054.705-4.057.396-1.446 1.343-4.078-.983-4.278a2 2 0 0 0-.296-.016m-2.83-.743h.016c.9 0 1.322-.829 1.322-1.84 0-1.01-.42-1.842-1.32-1.85h-.018c-.913 0-1.335.831-1.335 1.85s.425 1.84 1.335 1.84m-1.852 4.273c.082.352.167.679.237.97.283 1.155.56 3.84.663 4.65s.389.991.97 1.045c.574-.054.865-.226.963-1.044s.38-3.496.656-4.651c.069-.291.159-.618.257-.97.257-1.06.463-2.316 0-3.108-.299-.515-.867-.854-1.863-.854-.995 0-1.58.34-1.87.854-.476.803-.27 2.048-.013 3.108M8.402 6.469a1.2 1.2 0 0 0 .283.033.99.99 0 0 0 .952-.65 2.4 2.4 0 0 0 .152-.955 2.7 2.7 0 0 0-.152-.815 1.12 1.12 0 0 0-1.065-.79.8.8 0 0 0-.18 0c-.672.098-.962.772-.937 1.592.021.782.327 1.433.947 1.585m-.288 8.654a1.13 1.13 0 0 0 .288.692.94.94 0 0 0 .594.214.77.77 0 0 0 .651-.296 1.45 1.45 0 0 0 .168-.61l.095-1.155v-.015l-.02-.173-.021-.172-.029-.175-.02-.165-.02-.175-.027-.164-.033-.157-.026-.165-.026-.17-.02-.151-.028-.155v-.02L9.616 12l-.028-.14-.028-.131-.02-.126-.026-.116-.029-.105-.036-.165-.049-.172-.04-.18-.047-.188-.049-.193-.049-.2-.041-.222-.049-.208-.041-.214-.036-.214-.026-.213-.028-.216-.02-.214V8.14l.02-.216.033-.208.05-.206.061-.2.09-.196.105-.186.055-.077a3 3 0 0 0-.7-.074 2 2 0 0 0-.296 0c-2.315.2-1.379 2.83-.983 4.278.275 1.014.594 3.355.705 4.067z"/></svg>���mkdocs-material-9.6.4/material/templates/.icons/simple/dreamstime.svg�������������������������������0000664�0000000�0000000�00000001267�14753064456�0025763�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.532 5.153C16.952-1.604 7.118-.402 2.764 4.628.586 7.105-.241 10.558.059 13.711c.3 2.478 1.201 4.73 2.478 6.231 3.378 4.13 9.234 4.58 13.063 1.953 5.405-3.755 5.03-9.834 2.102-13.214-5.255-6.006-14.264-.075-10.885 6.757.825 1.65 2.7 2.552 4.429 2.552 2.402 0 4.279-2.852 3.153-4.579-1.126-1.802-3.078 0-2.253 1.35.676 1.052-.75 1.653-1.35 1.503-1.577-.376-2.329-2.553-1.802-4.354.45-1.577 2.1-2.628 3.678-2.553 2.177.15 4.58 1.877 4.354 5.63-.525 6.082-8.484 7.208-11.636 2.853-4.955-6.982.9-16.366 9.835-13.513 4.58 1.5 7.958 6.907 5.855 12.688-.825 2.177-1.275 3.002-1.35 3.754-.377 2.777 8.408-5.856 1.8-15.617z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dribbble.svg���������������������������������0000664�0000000�0000000�00000001611�14753064456�0025367�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 24C5.385 24 0 18.615 0 12S5.385 0 12 0s12 5.385 12 12-5.385 12-12 12m10.12-10.358c-.35-.11-3.17-.953-6.384-.438 1.34 3.684 1.887 6.684 1.992 7.308a10.28 10.28 0 0 0 4.395-6.87zm-6.115 7.808c-.153-.9-.75-4.032-2.19-7.77l-.066.02c-5.79 2.015-7.86 6.025-8.04 6.4a10.16 10.16 0 0 0 6.29 2.166c1.42 0 2.77-.29 4-.814zm-11.62-2.58c.232-.4 3.045-5.055 8.332-6.765q.202-.067.405-.12-.392-.879-.832-1.74C7.17 11.775 2.206 11.71 1.756 11.7l-.004.312c0 2.633.998 5.037 2.634 6.855zm-2.42-8.955c.46.008 4.683.026 9.477-1.248a66 66 0 0 0-3.8-5.928 10.28 10.28 0 0 0-5.676 7.17zM9.6 2.052c.282.38 2.145 2.914 3.822 6 3.645-1.365 5.19-3.44 5.373-3.702A10.2 10.2 0 0 0 12 1.764c-.825 0-1.63.1-2.4.285zm10.335 3.483c-.218.29-1.935 2.493-5.724 4.04.24.49.47.985.68 1.486.08.18.15.36.22.53 3.41-.43 6.8.26 7.14.33-.02-2.42-.88-4.64-2.31-6.38z"/></svg>�����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/drizzle.svg����������������������������������0000664�0000000�0000000�00000001173�14753064456�0025310�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.353 11.823a1.036 1.036 0 0 0-.395-1.422 1.063 1.063 0 0 0-1.437.399L.138 16.702a1.035 1.035 0 0 0 .395 1.422 1.063 1.063 0 0 0 1.437-.398zm11.216 0a1.036 1.036 0 0 0-.394-1.422 1.064 1.064 0 0 0-1.438.399l-3.382 5.902a1.036 1.036 0 0 0 .394 1.422c.506.283 1.15.104 1.438-.398zm7.293-4.525a1.036 1.036 0 0 0-.395-1.422 1.06 1.06 0 0 0-1.437.399l-3.383 5.902a1.036 1.036 0 0 0 .395 1.422 1.063 1.063 0 0 0 1.437-.399zm-11.219 0a1.035 1.035 0 0 0-.394-1.422 1.064 1.064 0 0 0-1.438.398l-3.382 5.903a1.036 1.036 0 0 0 .394 1.422c.506.282 1.15.104 1.438-.399z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/drone.svg������������������������������������0000664�0000000�0000000�00000000626�14753064456�0024736�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.07 13.633a3.07 3.07 0 1 1-6.14 0 3.07 3.07 0 0 1 6.14 0M12 1.856c5.359.042 11.452 3.82 12 10.94h-7.256S15.809 8.863 12 8.889s-4.744 3.907-4.744 3.907H0C.353 5.802 6.344 1.812 12 1.856m.05 20.288c-3.996.011-7.729-3.005-9.259-7.674h4.465s.963 3.889 4.773 3.863 4.716-3.863 4.716-3.863h4.465c-.995 4.94-5.164 7.664-9.159 7.674z"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/drooble.svg����������������������������������0000664�0000000�0000000�00000000716�14753064456�0025255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 11.986a7.6 7.6 0 0 0-7-7.559v7.574a5 5 0 0 1-10 0c0-3.604 3.707-6.022 7-4.583V.17C6.615-1.069 0 4.63 0 12c0 6.628 5.373 12 12 12 6.628 0 12-5.372 12-12zm-14 .015a2 2 0 1 0 4 0 2 2 0 0 0-4 0m14-.015a7.6 7.6 0 0 0-7-7.559v7.574a5 5 0 0 1-10 0c0-3.604 3.707-6.022 7-4.583V.17C6.615-1.069 0 4.63 0 12c0 6.628 5.373 12 12 12 6.628 0 12-5.372 12-12zm-14 .015a2 2 0 1 0 4 0 2 2 0 0 0-4 0"/></svg>��������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dropbox.svg����������������������������������0000664�0000000�0000000�00000000377�14753064456�0025307�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 1.807 0 5.629l6 3.822 6.001-3.822zm12 0-6 3.822 6 3.822 6-3.822zM0 13.274l6 3.822 6.001-3.822L6 9.452zm18-3.822-6 3.822 6 3.822 6-3.822zM6 18.371l6.001 3.822 6-3.822-6-3.822z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/drupal.svg�����������������������������������0000664�0000000�0000000�00000001371�14753064456�0025114�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.78 5.113C14.09 3.425 12.48 1.815 11.998 0c-.48 1.815-2.09 3.425-3.778 5.113-2.534 2.53-5.405 5.4-5.405 9.702a9.184 9.185 0 1 0 18.368 0c0-4.303-2.871-7.171-5.405-9.702M6.72 16.954c-.563-.019-2.64-3.6 1.215-7.416l2.55 2.788a.22.22 0 0 1-.016.325c-.61.625-3.204 3.227-3.527 4.126-.066.186-.164.18-.222.177M12 21.677a3.16 3.16 0 0 1-3.158-3.159 3.3 3.3 0 0 1 .787-2.087c.57-.696 2.37-2.655 2.37-2.655s1.774 1.988 2.367 2.649a3.1 3.1 0 0 1 .792 2.093A3.16 3.16 0 0 1 12 21.677m6.046-5.123c-.068.15-.223.398-.431.405-.371.014-.411-.177-.686-.583-.604-.892-5.864-6.39-6.848-7.455-.866-.935-.122-1.595.223-1.94C10.736 6.547 12 5.285 12 5.285s3.766 3.574 5.336 6.016 1.029 4.556.71 5.253"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dsautomobiles.svg����������������������������0000664�0000000�0000000�00000004320�14753064456�0026474�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.207 0v15.85l9.465-7.371a.87.87 0 0 0 .328-.41.76.76 0 0 0 .201.327c.687.657 3.8 3.614 4.635 6.143a4.8 4.8 0 0 1 .266 1.527 3.4 3.4 0 0 1-.266 1.272c-.378.962-1.223 1.972-2.084 2.865-.368.375-1.97 1.912-2.477 2.418a.9.9 0 0 0-.232.424 6 6 0 0 0-.04.656V24l9.462-7.371a.76.76 0 0 0 .328-.555.66.66 0 0 0-.234-.476c-.684-.657-3.798-3.613-4.635-6.143a5 5 0 0 1-.262-1.53 3.5 3.5 0 0 1 .262-1.282c.38-.986 1.229-2.007 2.09-2.891a273 273 0 0 1 2.472-2.436.9.9 0 0 0 .235-.43 4.4 4.4 0 0 0 .043-.591V0l-9.461 7.371a.86.86 0 0 0-.328.41.87.87 0 0 0-.313-.41zm.457.8c.384.3.93.747 1.666 1.315A22 22 0 0 1 6.543 4.11c1.166 1.203 2.06 2.51 2.06 3.805 0 1.294-.894 2.6-2.06 3.803a22 22 0 0 1-2.213 2.008c-.736.571-1.287 1.025-1.672 1.314-.033.026-.033-.056-.033-.101s0-.116.023-.14c.809-.722 3.99-3.158 4.926-5.478a3.44 3.44 0 0 0 0-2.806C6.651 4.194 3.47 1.76 2.648 1.035c-.023-.02-.023-.109-.023-.139s0-.122.04-.095zm18.19.481c.023-.02.026.017.023.033a.26.26 0 0 1-.063.217 3 3 0 0 1-.25.223c-1.297 1.094-3.393 2.977-4.1 4.758a3.5 3.5 0 0 0 0 2.83 10.7 10.7 0 0 0 1.186 2.176c.214.285.31.407.448.601a.74.74 0 0 1 .125.344h-.028a1 1 0 0 1-.138-.115 10 10 0 0 1-.604-.59c-1.182-1.186-2.03-2.563-2.03-3.844s.89-2.578 2.06-3.768a24 24 0 0 1 2.214-1.972c.3-.237.555-.44.801-.623zm-8.387 6.735h1.57c.598 0 .824.596 1.143 1.21a13 13 0 0 0 1.715 2.272.6.6 0 0 1 .119.281c.016.06 0 .079-.063.03-1.938-1.41-4.015-3.17-4.373-3.465-.108-.089-.358-.328-.111-.328m-2.588.015H11.5c.246 0 .01.22-.102.313-.949.657-2.38 1.852-4.27 3.344-.035.026-.03-.085-.023-.118a.5.5 0 0 1 .057-.162 10.6 10.6 0 0 0 1.73-2.351c.33-.615.402-1.026.987-1.026m4.934 2.727a.33.33 0 0 1 .177.07c.02.02.266.276.4.424.273.286.545.613.83.941 1.035 1.216 1.946 2.553 1.946 3.864 0 1.195-.847 2.376-1.97 3.486-.283.28-.802.772-1.475 1.363-.092.08-.162.135-.159.073s0-.199.053-.245c1.143-1.126 2.28-2.374 2.69-3.373a3.5 3.5 0 0 0 .299-1.314 4.4 4.4 0 0 0-.247-1.432c-.377-1.074-1.21-2.24-2.078-3.252a34 34 0 0 1-.466-.552c-.024-.033-.024-.056 0-.053m4.607 5.4h1.844c.279 0 .01.263-.116.352-1.077.759-2.686 2.072-4.841 3.777-.06.046-.05-.092-.047-.135a.3.3 0 0 1 .037-.14 12.2 12.2 0 0 0 1.986-2.694c.365-.696.457-1.16 1.137-1.16"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dts.svg��������������������������������������0000664�0000000�0000000�00000001350�14753064456�0024414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.556 14.346-1.194-1.173a.841.841 0 0 1 .604-1.445h.59a.346.346 0 0 0 .349-.343v-.636H18.97a1.49 1.49 0 0 0-1.507 1.477v.003c0 .396.16.775.444 1.05l1.201 1.18a.841.841 0 0 1-.604 1.446h-1.849a1.306 1.306 0 0 1-1.317-1.294v-2.876h1.135a.346.346 0 0 0 .35-.343v-.636h-1.485V7.587l-3.866 1.66v1.494h-1.87V7.123h-2.87a.986.986 0 0 0-.997.98v2.638H3.67C1.514 10.741 0 11.893 0 13.81c0 1.71 1.776 3.068 3.676 3.068h4.615a1.306 1.306 0 0 0 1.318-1.294v-3.855h1.863v2.503c0 1.423.874 2.646 2.65 2.646h8.371A1.49 1.49 0 0 0 24 15.4v-.003a1.44 1.44 0 0 0-.444-1.051M5.729 15.683a.217.217 0 0 1-.219.214h-.13c-1.34 0-1.835-.908-1.85-2.088.015-1.216.525-2.088 1.85-2.088h.349z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dtube.svg������������������������������������0000664�0000000�0000000�00000000763�14753064456�0024734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 1.642v20.716h8.516c1.313 0 2.488-.158 3.537-.476a8.8 8.8 0 0 0 2.787-1.408q1.73-1.336 2.668-3.465c.614-1.42.931-3.049.931-4.881-.01-1.578-.243-3.02-.709-4.313s-1.111-2.392-1.959-3.302c-.836-.911-1.853-1.611-3.029-2.12-1.176-.497-2.478-.751-3.908-.751zM5.201 7.35l8.04 4.66-8.04 4.648zm15.992 9.162a2.716 2.716 0 0 0-2.71 2.71 2.716 2.716 0 0 0 2.71 2.712h.096A2.716 2.716 0 0 0 24 19.224a2.716 2.716 0 0 0-2.711-2.711z"/></svg>�������������mkdocs-material-9.6.4/material/templates/.icons/simple/ducati.svg�����������������������������������0000664�0000000�0000000�00000003477�14753064456�0025107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.14 3.895c-.326-1.307-1.96-2.001-3.103-2.45C17.302.383 13.382-.19 10.401.056c-2.94.245-6.738 1.062-8.575 2.45-.531.409-.899.776-1.021 1.715C.56 6.222 1.499 9.203 2.07 11c.163-.082.367-.327.857-.572.98-.49 2.164-.817 3.267-1.02 3.96-.817 9.473-.9 13.597-.9.49 0 .98 0 1.43.042.449 0 .98.04 1.429.04l.245-1.102c.204-1.02.49-2.573.245-3.593M5.95 5.528c-.531 1.674-2.083 1.43-3.634 1.43L3.05 3.69c.326-.04.898 0 1.265 0 .45 0 .776 0 1.144.123.612.245.735.98.49 1.715zm1.837 1.51c-.898.042-1.715-.162-1.551-1.142.04-.245.449-2.124.49-2.206h1.306c-.04.368-.204.94-.286 1.307-.04.245-.081.408-.122.654-.04.204-.123.571.204.49.204-.041.245-.286.286-.49.122-.572.327-1.47.408-1.96H9.83c-.04.326-.163.816-.245 1.143-.204 1.062-.204 2.123-1.797 2.205zm3.308 0c-1.103 0-1.511-.693-1.266-1.755.367-1.756 2.205-1.92 2.94-1.51.408.244.49.53.408 1.102h-1.225c0-.164.041-.327-.081-.409-.123-.081-.327 0-.409.082-.204.204-.53 1.43-.286 1.593.286.204.49-.205.531-.409h1.225c-.081.817-.816 1.348-1.837 1.307zm4.165-.08v-.49h-.94l-.244.53H12.81c.04-.122.735-1.43.857-1.633l.899-1.634h1.715l.367 3.267c-.286-.04-1.225 0-1.388-.04m3.757-2.41c-.082.163-.245.98-.286 1.184-.082.327-.164.858-.286 1.184h-1.307c-.04-.204.49-2.123.49-2.409h-.816l.204-.898h2.98c0 .122-.163.816-.204.898zm1.837 2.41h-1.347L20.2 3.69h1.306l-.653 3.267zm-2.327 2.94c-1.266.122-2.45.244-3.635.408-2.245.326-4.573.898-6.451 1.674-1.593.694-3.88 2.082-3.88 4.165 0 .326.041.326.286.694.368.53.858 1.266 1.225 1.756 1.184 1.51 3.308 4.124 4.982 5.063.49.286.898.49 1.51.204.45-.204.9-.53 1.226-.776 2.164-1.755 4.982-5.349 6.288-7.758.899-1.674 1.715-3.716 2.287-5.676-.368-.04-3.47.204-3.838.245zM15.219 5.61V4.425c-.082.082-.49 1.021-.53 1.185zM4.194 4.425l-.408 1.797c.571.041.735-.327.816-.776.123-.49.286-1.061-.408-1.02z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/duckdb.svg�����������������������������������0000664�0000000�0000000�00000000534�14753064456�0025061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.363 0 0 5.363 0 12s5.363 12 12 12 12-5.363 12-12S18.637 0 12 0M9.502 7.03a4.974 4.974 0 0 1 4.97 4.97 4.974 4.974 0 0 1-4.97 4.97A4.974 4.974 0 0 1 4.532 12a4.974 4.974 0 0 1 4.97-4.97m6.563 3.183h2.351c.98 0 1.787.782 1.787 1.762s-.807 1.789-1.787 1.789h-2.351z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/duckduckgo.svg�������������������������������0000664�0000000�0000000�00000003460�14753064456�0025751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m0 23C5.925 23 1 18.074 1 12S5.926 1 12 1s11 4.925 11 11-4.925 11-11 11m10.219-11c0 4.805-3.317 8.833-7.786 9.925-.27-.521-.53-1.017-.749-1.438.645.249 1.93.718 2.208.615.376-.144.282-3.149-.14-3.245-.338-.075-1.632.837-2.141 1.209l.034.156c.078.397.144.993.03 1.247q-.001.007-.004.013a.2.2 0 0 1-.068.088c-.284.188-1.081.284-1.503.188a1 1 0 0 1-.064-.02c-.694.396-2.01 1.109-2.25.971-.329-.188-.377-2.676-.329-3.288.035-.46 1.653.286 2.442.679.174-.163.602-.272.98-.31-.57-1.389-.99-2.977-.733-4.105q.001.003.002.002c.356.248 2.73 1.05 3.91 1.027s3.114-.743 2.903-1.323c-.212-.58-2.135.51-4.142.324-1.486-.138-1.748-.804-1.42-1.29.414-.611 1.168.116 2.411-.256 1.245-.371 2.987-1.035 3.632-1.397 1.494-.833-.625-1.177-1.125-.947-.474.22-2.123.637-2.889.82.428-1.516-.603-4.149-1.757-5.3-.376-.376-.951-.612-1.603-.736-.25-.344-.654-.671-1.225-.977a5.77 5.77 0 0 0-3.595-.584l-.024.004-.034.004.004.002c-.148.028-.237.08-.357.098.148.016.705.276 1.057.418-.174.068-.412.108-.596.184a.8.8 0 0 0-.204.056c-.173.08-.303.375-.3.515.84-.086 2.082-.026 2.991.246-.644.09-1.235.258-1.661.482q-.022.013-.048.028-.082.03-.152.066c-1.367.72-1.971 2.405-1.611 4.424.323 1.824 1.665 8.088 2.29 11.064-3.973-1.4-6.822-5.186-6.822-9.639C1.781 6.356 6.356 1.781 12 1.781S22.219 6.356 22.219 12M9.095 9.581a.758.758 0 1 0 0 1.516.758.758 0 0 0 0-1.516m.338.702a.196.196 0 1 1 0-.392.196.196 0 0 1 0 .392m4.724-1.043a.65.65 0 1 0 0 1.299.65.65 0 0 0 0-1.3zm.29.601a.168.168 0 1 1 0-.336.168.168 0 0 1 0 .336M9.313 8.146s-.571-.26-1.125.09c-.554.348-.534.704-.534.704s-.294-.656.49-.978c.786-.32 1.17.184 1.17.184zm5.236-.052s-.41-.234-.73-.23c-.654.008-.831.296-.831.296s.11-.688.945-.55a.84.84 0 0 1 .616.484"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dungeonsanddragons.svg�����������������������0000664�0000000�0000000�00000006274�14753064456�0027517�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.921 2.217C4.859 1.297 6.122.742 7.988.838c2.944.152 4.358 2.096 4.358 4.193 0 1.011-.536 2.363-1.276 3.323-.045-.044-.083-.087-.13-.131a21 21 0 0 0-.49-.436c-.484-.421-1.03-.905-1.397-1.426.807-1.413.346-3.414-1.359-3.414-.998 0-1.83.88-1.759 2.047-.26.552-.387 1.352-.337 2.062-.489-.295-.901-.618-1.095-1.067l-.626-1.445-.493 1.492a2.5 2.5 0 0 0-.088 1.135l-.01-.001a3.27 3.27 0 0 1-.555-1.57c-.18-1.908.764-2.964 1.19-3.383m-.45 6.824c.114-.434-.778-1.173-1.11-1.311 1.224-.047 1.833.175 1.833.175-.32-.454-.423-1.146-.242-1.695.667 1.539 3.052 1.786 3.642 3.062-.084-.55-.625-1.169-1.253-1.53-.337-.838-.085-2.383.327-2.808-.145 2.22 3.149 3.49 3.832 5.105-.4-1.383-1.936-2.258-2.664-3.086-.24-.55-.056-1.48.205-1.799-.077 1.488 1.592 2.648 2.483 3.48 1.051.979 1.349 1.845 1.207 2.553.23.058.547.273.493.638.336-.075.677-.445.76-.673.165 1.104-.51 2.273-1.266 2.621 0 0 .203-.527-.141-.93-.34-.398-1.305-.403-1.631-.38 0 0 .4-.57.242-.86-.2-.357-2.087-.2-2.93.094.287-.03.967.044 1.205.14-.132.189-.478.989-.23 1.229.23.22.53-.162.53-.162s-.294.875-.082 1.078c.21.203.662.059.662.059-.281.687-1.379 1.16-2.146 1.16.274-.084.725-.553.795-.836-.2.097-.726.153-.928.117.248-.097.746-.712.592-1.405-.229-1.009-1.69-1.137-2.425-.649.238-.678.95-1.312 1.507-1.52a7.5 7.5 0 0 0-1.117-.273c.468-.369 1.642-.67 2.241-.639-.914-.225-2.586.057-3.352.927.245 0 .875.114 1.118.19-1.048.182-2.478 1.122-2.898 1.566.11-.584.28-1.08.136-1.43-.202-.497-.826-.704-2.07-.457.84-.809 2.56-1.31 2.676-1.751zm5.724.783c.166.563.39 1.08 1.097 1.08 0 0-.248-.779-1.097-1.08m10.479 6.203c.533.088 1.282.635 1.282 1.417 0 1.275-1.652 1.667-2.566 1.469.97-.648.84-2.512-.326-3.178.395 1.045-.79 2.082-1.942 1.172-.641-.506-2.123-1.694-2.785-2.206-.66-.511-1.434-.214-1.74-.437-.348-.254-.125-.97-.6-1.236-.399-.222-.79-.098-1.253-.246-.42-.133-.733-.448-.68-.872-.178.303-.19.83.129 1.186.316.352.844.57 1.062.957.282.5-.193 1.196 1.062 2.143.6.452 1.53 1.195 2.137 1.707 1.021.862.476 1.94.61 2.879.155 1.096 1.072 1.704 1.682 1.858-.526-.46-.725-1.62.014-2.33.038.916.725 2.35 2.292 2.753 1.667.427 3.439-.482 3.807-1.122-.643.28-1.854-.022-2.353-.472 1.956.267 3.686-1.038 3.686-2.712 0-1.633-1.645-2.898-3.518-2.73m-8.5.793c-.667 1.1-2.088 2.531-3.529 2.531-2.651 0-3.98-3.61-1.007-6.564a1.4 1.4 0 0 0-.4-.06c-.255 0-.504.064-.668.174l-1.168.776.264-1.432a2 2 0 0 1 .093-.225c-.675.322-1.339.782-1.588 1.045L2.02 14.28l.122-1.703q.04-.2.08-.385c.06-.275.135-.618.089-.732a.2.2 0 0 0-.083-.091C1.68 11.775.177 13.055 0 14.936c0 0 .291-.395.544-.487.167-.062.313.017.153.487-.061.184-1.51 3.96 1.34 6.57 0 0-.312-.768-.124-1 .092-.114.212-.123.376.08.123.156.251.306.438.51s.447.447.729.657c.853.575 2.011 1.037 3.329 1.037 3.526 0 5.395-2.34 6.43-4.305a2 2 0 0 0-.155-.15 57 57 0 0 0-1.887-1.515zm1.91-2.884c.208.067.42.158.627.319.244.188.603.471.987.776.306-.65 1.009-2.003 2.097-3.204.98-1.08 2.69-1.184 3.588-.526.577-.502 2.569-.974 3.617-.687-.639-.668-1.996-1.564-3.496-1.564-1.237 0-1.936.583-2.113.32-.228-.336.837-.833.837-.833-1.46.058-2.523 1.711-2.966 1.505-.262-.12.395-.92.395-.92-1.336.746-2.455 2.328-2.688 3.291 1.229-1.448 3.614-2.486 5.166-2.267-2.629.122-4.891 2.276-6.05 3.79Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dunked.svg�����������������������������������0000664�0000000�0000000�00000000347�14753064456�0025101�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.799 0v19.86A4.2 4.2 0 0 0 18 24h4.2V4.141A4.2 4.2 0 0 0 18 0zm-7.5 15.001a4.5 4.5 0 0 0-4.5 4.391v.222a4.5 4.5 0 0 0 9 0V19.4A4.5 4.5 0 0 0 6.298 15z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dunzo.svg������������������������������������0000664�0000000�0000000�00000001527�14753064456�0024767�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.75 0A2.744 2.744 0 0 0 0 2.75v18.5A2.744 2.744 0 0 0 2.75 24h18.5A2.744 2.744 0 0 0 24 21.25V2.75A2.744 2.744 0 0 0 21.25 0Zm9.902 5.506c.91.006 1.781.197 2.594.605-.891 1.87-1.888 3.8-2.832 5.682-.017.029-.086.13-.225.031-.8-.638-1.581-1.304-2.369-1.959-.223-.195-.442-.105-.55.133-.515 1.027-.952 1.883-1.465 2.91-.7 1.398-1.398 2.673-2.098 4.07-.064.142-.143.043-.143.043.538-3.258 1.643-10.807 1.717-11.1.055-.213.183-.36.42-.394.09-.012.18-.023.27-.023ZM17.78 8c.01-.003.016.022.045.082.48.935.803 2.554.487 4.238-.25 1.328-.849 2.487-1.737 3.512a7.7 7.7 0 0 1-3.224 2.207c-.735.268-1.498.362-2.288.361H6.275c-.654 0-.725-.224-.709-.238a923 923 0 0 1 4.309-5.906c.235-.258.417-.022.668.224 1.105.957 2.139 1.826 2.28 1.94.08.066.163.051.222-.033A971 971 0 0 1 17.779 8z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/duolingo.svg���������������������������������0000664�0000000�0000000�00000004457�14753064456�0025455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.484 18.213a6.42 6.42 0 0 0 4.316 1.662l.294-.001a6.43 6.43 0 0 0 4.905-2.422v1.98A4.567 4.567 0 0 1 19.432 24H4.569a4.57 4.57 0 0 1-4.567-4.57v-1.92a6.43 6.43 0 0 0 4.985 2.365l.35-.001a6.4 6.4 0 0 0 4.191-1.648 3.05 3.05 0 0 0 2.473 1.26 3.05 3.05 0 0 0 2.483-1.273m-5.349-.996a5.42 5.42 0 0 1-3.909 1.658h-.239A5.45 5.45 0 0 1 0 15.613v-7.16c.281-.64.68-1.216 1.169-1.699a3.9 3.9 0 0 1 .511-2.128.753.753 0 0 1 1.21-.124l.766.851q.01-.003.021-.005a3.9 3.9 0 0 1 .419-2.308c.24-.45.757-.53 1.114-.164 0 0 3.939 3.979 4.035 4.084 1.542 1.348 4.066 1.287 5.686-.18q.005-.004.009-.007l3.855-3.9c.336-.345.862-.31 1.113.164.385.724.518 1.535.417 2.32l.004.002.007.002.003.001.776-.86a.75.75 0 0 1 1.207.124c.387.673.553 1.427.509 2.173A5.45 5.45 0 0 1 24 8.561v6.941a5.45 5.45 0 0 1-5.032 3.373H18.8a5.43 5.43 0 0 1-3.936-1.686l-.009-.067a1 1 0 0 0 .688-.33c.152-.16.299-.397.299-.776 0 0-.022-.312-.024-.324a3.787 3.787 0 0 0 6.598-2.538v-2.243a3.788 3.788 0 0 0-7.574 0v2.243q0 .4.079.776a3.87 3.87 0 0 0-2.842-1.278c-1.239 0-2.339.523-3.064 1.355q.096-.412.097-.853v-2.243a3.788 3.788 0 0 0-7.575 0v2.243A3.787 3.787 0 0 0 8.2 15.619c-.008.035-.039.395-.039.395 0 .378.147.616.298.775a1 1 0 0 0 .688.331 1 1 0 0 0-.012.097m.997.073c.729.131 1.733.305 1.792.305h.157c.059 0 1.789-.303 1.789-.303a2.06 2.06 0 0 1-3.738-.002m-.971-1.379c.246-1.313 1.462-2.259 2.918-2.259 1.324 0 2.521.97 2.763 2.259v.105c0 .082-.029.115-.103.106l-2.658.473h-.157l-2.66-.476c-.075.01-.103-.023-.103-.105Zm8.023-6.392a1.798 1.798 0 0 1 2.659 1.578v1.919a1.798 1.798 0 0 1-3.595 0v-1.542q.05.005.103.005c.64 0 1.16-.518 1.16-1.156 0-.312-.125-.596-.327-.804M5.162 9.461a1.799 1.799 0 0 1 2.544 1.636v1.919a1.798 1.798 0 0 1-3.595 0v-1.571q.134.034.278.034c.641 0 1.16-.518 1.16-1.156 0-.342-.149-.65-.387-.862M.002 6.554V4.568A4.566 4.566 0 0 1 4.569 0h14.865a4.565 4.565 0 0 1 4.565 4.568v2.041a5 5 0 0 0-.164-.197 4.86 4.86 0 0 0-.646-2.284 1.75 1.75 0 0 0-2.07-.786 5 5 0 0 0-.327-.774h-.001c-.287-.54-.758-.835-1.248-.908a1.67 1.67 0 0 0-1.464.515l-3.82 3.864c-1.226 1.11-3.127 1.199-4.313.205-.103-.109-4.025-4.071-4.025-4.071a1.67 1.67 0 0 0-1.46-.51c-.489.073-.961.367-1.248.907v.002q-.199.376-.327.771a1.75 1.75 0 0 0-2.071.782l-.001.002a4.86 4.86 0 0 0-.645 2.23q-.086.097-.167.197"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/duplicati.svg��������������������������������0000664�0000000�0000000�00000000732�14753064456�0025603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.571 1.286A1.72 1.72 0 0 0 6.857 3v10.286c0 .634.353 1.183.868 1.48.251.144.538.234.846.234h13.715A1.72 1.72 0 0 0 24 13.286V3a1.72 1.72 0 0 0-1.714-1.714Zm-6.857 12A1.72 1.72 0 0 0 0 15v6a1.72 1.72 0 0 0 1.714 1.714h8.572a1.72 1.72 0 0 0 1.473-.857c.148-.253.241-.544.241-.857v-4.286H8.571c-.296 0-.582-.042-.857-.114a3.44 3.44 0 0 1-2.571-3.314Zm18 3.428h-6V21H18a1.72 1.72 0 0 0 1.714-1.714z"/></svg>��������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dvc.svg��������������������������������������0000664�0000000�0000000�00000002317�14753064456�0024402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 4.935a.3.3 0 0 1 .09-.223.26.26 0 0 1 .201-.092h3.921c1.608.122 2.808.582 3.912 1.716 1.11 1.135 1.551 2.422 1.692 4.078.135 1.594-.516 2.974-1.62 4.108a5.4 5.4 0 0 1-1.818 1.28 5.3 5.3 0 0 1-2.166.431H.292a.28.28 0 0 1-.202-.092.3.3 0 0 1-.069-.104.3.3 0 0 1-.02-.123zm2.508 8.84H4.05q1.351-.001 2.244-.973a3.4 3.4 0 0 0 .891-2.39c0-.942-.3-1.737-.89-2.383a2.9 2.9 0 0 0-1.02-.734 2.9 2.9 0 0 0-1.225-.238H2.508zm12.064.062a.32.32 0 0 1 .028.311l-2.324 5.056q-.094.181-.273.18h-.162q-.179.001-.276-.184l-2.28-4.993a.32.32 0 0 1 .033-.316 5.14 5.14 0 0 0 .961-3.17c-.002-.088.133-.123.168-.042l1.44 3.236h.098l1.494-3.354c.035-.078.16-.049.16.036 0 1.147.29 2.282.933 3.24m1.196.728c-1.14-1.128-1.668-2.496-1.668-4.108 0-1.622.525-2.996 1.668-4.133a5.7 5.7 0 0 1 1.91-1.285 5.65 5.65 0 0 1 2.248-.423 5.7 5.7 0 0 1 3.94 1.503q.244.231.017.453l-1.269 1.31c-.14.128-.279.128-.408 0a3.2 3.2 0 0 0-2.199-.825q-1.367-.002-2.28.981a3.27 3.27 0 0 0-.87 2.345c0 .908.27 1.68.882 2.321a3.02 3.02 0 0 0 2.286.96 3.26 3.26 0 0 0 2.181-.776q.226-.193.42.015l1.272 1.343q.21.21-.015.435a5.5 5.5 0 0 1-3.957 1.567 5.7 5.7 0 0 1-2.245-.415 5.8 5.8 0 0 1-1.913-1.27z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dwavesystems.svg�����������������������������0000664�0000000�0000000�00000001210�14753064456�0026353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.106 12.005a2.866 2.866 0 0 1-2.868 2.863 2.866 2.866 0 0 1-2.869-2.863A2.866 2.866 0 0 1 7.238 9.14a2.866 2.866 0 0 1 2.868 2.864M7.238 0C5.654 0 4.369 1.282 4.369 2.863s1.285 2.863 2.869 2.863a2.866 2.866 0 0 0 2.868-2.863A2.866 2.866 0 0 0 7.238 0m9.524 18.278a2.86 2.86 0 0 0-2.867 2.864A2.864 2.864 0 0 0 16.762 24a2.865 2.865 0 0 0 2.869-2.858 2.86 2.86 0 0 0-2.869-2.864m-2.868-6.273a2.866 2.866 0 0 1 2.868-2.864 2.866 2.866 0 0 1 2.869 2.864 2.866 2.866 0 0 1-2.869 2.863 2.866 2.866 0 0 1-2.868-2.863m.5 0a2.369 2.369 0 0 0 4.737 0 2.369 2.369 0 0 0-4.737 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dwm.svg��������������������������������������0000664�0000000�0000000�00000000225�14753064456�0024411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 11h6V7h2v8h2v-4h2v4h2v-4h10v6h-2v-4h-2v4h-2v-4h-2v4H2v-2h4v-2H2v4H0z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/dynatrace.svg��������������������������������0000664�0000000�0000000�00000001754�14753064456�0025604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.372 0c-.31.006-.93.09-1.521.654-.872.824-5.225 4.957-6.973 6.617-.79.754-.72 1.595-.72 1.664v.377c.067-.292.187-.5.427-.825.496-.616 1.3-.788 1.627-.822h.002a64 64 0 0 1 6.528-.55c4.335-.136 7.197.226 7.197.226l6.085-5.794s-3.188-.6-6.82-1.027a93 93 0 0 0-5.64-.514c-.02 0-.09-.008-.192-.006m13.56 2.508-6.066 5.79s.222 2.881-.137 7.2c-.189 2.45-.584 4.866-.875 6.494-.052.326-.256 1.114-.925 1.594-.29.198-.49.295-.748.363 1.546-.51 1.091-7.047 1.091-7.047-4.335.137-7.214-.223-7.214-.223l-6.085 5.793s3.223.634 6.856 1.045c2.056.24 4.833.429 5.227.463.023 0 .045-.007.068-.012-.013.003-.022.009-.035.012.138 0 .26.015.38.015.084 0 .924.105 1.712-.648 1.748-1.663 6.084-5.81 6.94-6.634.789-.754.72-1.594.72-1.68a82 82 0 0 0-.206-5.654 102 102 0 0 0-.701-6.872zM3.855 8.306c-1.73.002-3.508.208-3.696 1.021.017 1.216.05 3.137.205 5.28.24 3.65.703 6.887.703 6.887l6.083-5.79c-.017.016-.24-2.88.12-7.2 0 0-1.684-.201-3.416-.2z"/></svg>��������������������mkdocs-material-9.6.4/material/templates/.icons/simple/e.svg����������������������������������������0000664�0000000�0000000�00000000613�14753064456�0024047�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.004 12.004A12.01 12.01 0 0 0 12 24a2.27 2.27 0 0 0 2.266-2.266A2.27 2.27 0 0 0 12 19.467c-4.116 0-7.463-3.347-7.463-7.463S7.884 4.541 12 4.541c3.323 0 6.15 2.186 7.111 5.197H12a2.27 2.27 0 0 0-2.266 2.266A2.27 2.27 0 0 0 12 14.27h9.73a2.27 2.27 0 0 0 2.266-2.266A12.02 12.02 0 0 0 12 0C5.385.008.004 5.39.004 12.004"/></svg>���������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/e3.svg���������������������������������������0000664�0000000�0000000�00000000670�14753064456�0024135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.068 16.519H4.772v-2.674h6.262v-3.757H4.772v-2.64h6.262V3.69H0v16.618h14.148c0-.034-2.776-.71-3.08-3.79m10.12-6.397c1.895 1.286 2.877 2.538 2.809 5.11-.068 2.674-2.776 5.043-5.72 5.043-2.099 0-4.772-.947-5.788-3.756l3.486-1.557c.474.88 1.151 1.557 2.2 1.557 1.151 0 1.997-.88 2.099-1.997.034-.271-.136-2.234-2.099-2.302l-2.2-.237 2.81-4.535h-6.33V3.69h11.542z"/></svg>������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ea.svg���������������������������������������0000664�0000000�0000000�00000000430�14753064456�0024205�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.635 6.162-5.928 9.377H4.24l1.508-2.3h4.024l1.474-2.335H2.264L.79 13.239h2.156L0 17.84h12.072l4.563-7.259 1.652 2.66h-1.401l-1.473 2.299h4.347l1.473 2.3H24zm-11.461.107L3.7 8.604l9.52-.035 1.474-2.3z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/eac.svg��������������������������������������0000664�0000000�0000000�00000000410�14753064456�0024346�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.667 24h2.667v-2.667H2.667v-8h2.667v-2.666H2.667v-8h2.667V0H0v24zm21.334-2.667h-2.668V2.667h2.668V0h-5.333v24h5.333zM13.334 0H8v24h2.667V13.335h2.667V24H16V0Zm0 10.667h-2.667v-8h2.667z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/eagle.svg������������������������������������0000664�0000000�0000000�00000001606�14753064456�0024703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m.04 3.858c1.32.019 2.634.335 3.78.989.549.31.957.642 1.238.895a6.9 6.9 0 0 0-2.25 3.04c-.06.165-.123.354-.183.546a6.9 6.9 0 0 0-.252 1.605c-.003.162.002.374.003.578.012.242.05.519.08.789a7 7 0 0 0 1.753 3.586 6.9 6.9 0 0 0 1.87 1.42 7.8 7.8 0 0 1-2.629 2.166 7.7 7.7 0 0 1-3.846.808l-.22-.013a7.7 7.7 0 0 1-1.504-.247 8.2 8.2 0 0 1-2.83-1.354 7.1 7.1 0 0 1-1.894-2.1c-.22-.38-1.49-2.644-.769-5.452A7.26 7.26 0 0 1 5.93 8.18a5.5 5.5 0 0 0-2.105 1.082C4.12 8.573 5.306 6 8.217 4.66a8.94 8.94 0 0 1 3.823-.8zm5.702 2.508c.202.126.464.309.736.572.108.103.478.468.82 1.054.413.703.549 1.327.62 1.65a5.5 5.5 0 0 1 .013 2.302 7.1 7.1 0 0 0-2.044-1.688 7.2 7.2 0 0 0-1.551.3 7 7 0 0 0-1.05.422 6 6 0 0 1 .267-1.563 6 6 0 0 1 .806-1.643 6.3 6.3 0 0 1 1.383-1.406"/></svg>��������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/easyeda.svg����������������������������������0000664�0000000�0000000�00000001471�14753064456�0025241�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.31 3.108a7.7 7.7 0 0 0-3.015.545 7.7 7.7 0 0 0-1.73.951 7.9 7.9 0 0 0-1.59 1.567 6 6 0 0 0-.764-.047C2.78 6.124 0 8.91 0 12.35a6.22 6.22 0 0 0 4.146 5.868 3.759 3.759 0 0 0 7.326-1.574l5.3-2.673-.04-.078.499-.257-1.021-2.027-.499.25-.047-.086-5.291 2.658a3.73 3.73 0 0 0-2.627-1.076 3.77 3.77 0 0 0-3.42 2.198 3.72 3.72 0 0 1-1.7-4.146 3.71 3.71 0 0 1 5.549-2.214 5.21 5.21 0 0 1 6.585-3.32 5.24 5.24 0 0 1 3.538 4.373 2.913 2.913 0 0 1 3.188 2.899 2.91 2.91 0 0 1-2.65 2.899h-2.135v2.517h2.244l.11-.016a5.407 5.407 0 0 0 4.925-5.852 5.46 5.46 0 0 0-1.574-3.375A5.36 5.36 0 0 0 20.3 8.01a7.73 7.73 0 0 0-6.99-4.901ZM7.748 15.367a1.76 1.76 0 0 1 1.753 1.761 1.75 1.75 0 0 1-1.753 1.753 1.75 1.75 0 0 1-1.754-1.753 1.756 1.756 0 0 1 1.754-1.753Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/easyjet.svg����������������������������������0000664�0000000�0000000�00000010627�14753064456�0025275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.964 12.225H1.463q-.099 0-.099.086 0 .208.225.391t.484.184q.154 0 .34-.059t.308-.145q.109-.077.172-.077.083 0 .163.102a.34.34 0 0 1 .08.211q0 .23-.287.444-.508.38-1.172.38-.67 0-1.124-.39a1.6 1.6 0 0 1-.364-.463 1.6 1.6 0 0 1-.189-.76q0-.537.326-.964.281-.37.715-.552.325-.137.706-.137.606 0 1.031.345.214.172.345.409.15.268.15.524a.6.6 0 0 1-.086.34q-.086.13-.223.131m-1.418-.597h.323q.204 0 .204-.188a.4.4 0 0 0-.099-.281.34.34 0 0 0-.259-.109.33.33 0 0 0-.281.141.45.45 0 0 0-.096.265q0 .096.046.134.047.038.162.038m3.693-1.156q.555 0 .942.281.205.15.286.343t.081.532l-.006.476q0 .495.07.642.035.07.067.089a.4.4 0 0 0 .134.035q.102.016.102.134a.54.54 0 0 1-.123.319 1 1 0 0 1-.318.278 1 1 0 0 1-.501.141.66.66 0 0 1-.53-.23q-.067-.083-.125-.083-.064 0-.169.08a1.2 1.2 0 0 1-.725.233q-.419 0-.677-.179a.84.84 0 0 1-.268-.308.85.85 0 0 1-.099-.398q0-.332.268-.588.418-.402 1.252-.406.185 0 .233-.037.048-.036.048-.171 0-.339-.07-.49-.07-.152-.23-.152a.27.27 0 0 0-.171.058q-.075.058-.187.211-.284.406-.594.406a.36.36 0 0 1-.255-.093.32.32 0 0 1-.099-.243q0-.153.123-.307.123-.153.334-.268a2.56 2.56 0 0 1 1.207-.305m-.214 1.849a.32.32 0 0 0-.244.115.4.4 0 0 0-.104.275q0 .153.073.248a.23.23 0 0 0 .195.094q.255 0 .255-.431 0-.176-.037-.236-.036-.062-.138-.065m3.33-1.846q.16 0 .521.07a1 1 0 0 0 .121.013.8.8 0 0 0 .211-.057.4.4 0 0 1 .125-.029q.147 0 .297.188.122.15.198.329a.8.8 0 0 1 .077.31.28.28 0 0 1-.089.212.32.32 0 0 1-.224.085.4.4 0 0 1-.2-.054 2 2 0 0 1-.283-.24q-.204-.198-.339-.198a.21.21 0 0 0-.155.065.2.2 0 0 0-.065.155q0 .156.3.294.54.243.827.53.243.243.243.594 0 .444-.39.741a1.3 1.3 0 0 1-.821.259q-.124 0-.453-.041a7 7 0 0 0-.348-.035.5.5 0 0 0-.096.01 1 1 0 0 1-.134.013.34.34 0 0 1-.236-.077 1.1 1.1 0 0 1-.243-.372 1.1 1.1 0 0 1-.112-.436q0-.294.23-.294.09 0 .164.059t.315.315q.131.14.217.193a.35.35 0 0 0 .185.053q.105 0 .169-.056a.19.19 0 0 0 .064-.149q0-.144-.246-.262-.514-.252-.742-.521a.93.93 0 0 1-.228-.62q0-.38.233-.655.332-.392.907-.392m4.994 1.571-.422 1.159a4.4 4.4 0 0 1-.315.704 2 2 0 0 1-.359.465q-.415.396-1 .396-.473 0-.766-.249a.61.61 0 0 1-.227-.489q0-.246.158-.414a.51.51 0 0 1 .388-.168q.23 0 .37.153a.4.4 0 0 1 .089.125q.022.054.067.24.035.141.16.141a.2.2 0 0 0 .166-.086.34.34 0 0 0 .067-.214q0-.15-.166-.501l-.77-1.638a1.5 1.5 0 0 0-.182-.319.9.9 0 0 0-.268-.156.23.23 0 0 1-.11-.101.3.3 0 0 1-.046-.145q0-.284.565-.386.377-.067.859-.067.339 0 .533.07.262.093.262.316a.35.35 0 0 1-.073.188.33.33 0 0 0-.07.182q0 .076.034.16.034.083.142.281.121.224.214.224.099 0 .204-.196a.8.8 0 0 0 .105-.378.36.36 0 0 0-.08-.24q-.121-.144-.121-.246 0-.163.217-.26t.581-.097q.677 0 .677.326a.26.26 0 0 1-.069.19.7.7 0 0 1-.251.136.5.5 0 0 0-.243.192q-.137.21-.32.702m3.189-2.816q.357 0 .728.064.303.051.434.141.13.09.131.246a.23.23 0 0 1-.048.155.7.7 0 0 1-.208.136q-.185.096-.212.225c-.027.129-.035.421-.05 1.004q-.009.846-.018 1.016a2 2 0 0 1-.04.329q-.092.467-.374.731-.23.217-.591.342a2.3 2.3 0 0 1-.76.125 2.8 2.8 0 0 1-.711-.093 2.3 2.3 0 0 1-.618-.255 1 1 0 0 1-.345-.362 1 1 0 0 1-.128-.487q0-.32.201-.529a.67.67 0 0 1 .505-.209q.297 0 .505.176a.56.56 0 0 1 .208.441q0 .067-.038.224a.4.4 0 0 0-.006.07.21.21 0 0 0 .073.166.28.28 0 0 0 .195.064.4.4 0 0 0 .345-.192q.13-.192.131-.505l-.003-.291-.006-.782a21 21 0 0 0-.043-.838.44.44 0 0 0-.072-.206.3.3 0 0 0-.085-.083 1.3 1.3 0 0 0-.2-.061.22.22 0 0 1-.131-.089.26.26 0 0 1-.054-.156q0-.172.136-.276.135-.104.442-.168a3.3 3.3 0 0 1 .707-.073m4.155 2.995h-1.501q-.099 0-.099.086 0 .208.225.391t.484.184q.154 0 .34-.059t.308-.145q.108-.077.172-.077.083 0 .163.102a.34.34 0 0 1 .08.211q0 .23-.287.444-.508.38-1.172.38-.67 0-1.124-.39a1.62 1.62 0 0 1-.552-1.223q0-.537.326-.964.281-.37.715-.552.325-.137.706-.137.606 0 1.032.345.215.172.345.409.15.268.15.524a.6.6 0 0 1-.086.34q-.088.13-.225.131m-1.418-.597h.323q.204 0 .204-.188a.4.4 0 0 0-.099-.281.34.34 0 0 0-.259-.109.33.33 0 0 0-.281.141.45.45 0 0 0-.096.265q0 .096.046.134.048.038.162.038m3.761-.316v1.079q0 .192.094.313a.3.3 0 0 0 .241.121q.125 0 .329-.115a.2.2 0 0 1 .096-.029q.076 0 .141.093a.35.35 0 0 1 .063.202q0 .198-.217.38-.453.386-1.099.386-.511 0-.821-.289-.31-.29-.31-.762v-1.475q0-.073-.018-.091t-.091-.018h-.329q-.093 0-.118-.03-.026-.03-.026-.142v-.141q.003-.096.073-.141l1.463-.92a.3.3 0 0 1 .134-.029h.259q.08 0 .107.037t.027.145v.431q0 .096.03.125t.129.029h.591q.119 0 .153.043.035.043.035.184v.188q0 .153-.045.212t-.163.059h-.578q-.09 0-.121.032-.029.034-.029.123"/></svg>���������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ebay.svg�������������������������������������0000664�0000000�0000000�00000002313�14753064456�0024542�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.056 12.132v-4.92h1.2v3.026c.59-.703 1.402-.906 2.202-.906 1.34 0 2.828.904 2.828 2.855 0 .233-.015.457-.06.668.24-.953 1.274-1.305 2.896-1.344.51-.018 1.095-.018 1.56-.018v-.135c0-.885-.556-1.244-1.53-1.244-.72 0-1.245.3-1.305.81h-1.275c.136-1.29 1.5-1.62 2.686-1.62 1.064 0 1.995.27 2.415 1.02l-.436-.84h1.41l2.055 4.125 2.055-4.126H24l-3.72 7.305h-1.346l1.07-2.04-2.33-4.38c.13.255.2.555.2.93v2.46c0 .346.01.69.04 1.005H16.8a7 7 0 0 1-.046-.765c-.603.734-1.32.96-2.32.96-1.48 0-2.272-.78-2.272-1.695q.002-.224.037-.405c-.3 1.246-1.36 2.086-2.767 2.086-.87 0-1.694-.315-2.2-.93 0 .24-.015.494-.04.734h-1.18c.02-.39.04-.855.04-1.245v-1.05h-4.83c.065 1.095.818 1.74 1.853 1.74.718 0 1.355-.3 1.568-.93h1.24c-.24 1.29-1.61 1.725-2.79 1.725C.95 15.009 0 13.822 0 12.232c0-1.754.982-2.91 3.116-2.91 1.688 0 2.93.886 2.94 2.806v.005zm9.137.183c-1.095.034-1.77.233-1.77.95 0 .465.36.97 1.305.97 1.26 0 1.935-.69 1.935-1.814v-.13c-.45 0-.99.006-1.484.022h.012zm-6.06 1.875c1.11 0 1.876-.806 1.876-2.02s-.768-2.02-1.893-2.02c-1.11 0-1.89.806-1.89 2.02s.765 2.02 1.875 2.02h.03zm-4.35-2.514c-.044-1.125-.854-1.546-1.725-1.546-.944 0-1.694.474-1.815 1.546z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ebox.svg�������������������������������������0000664�0000000�0000000�00000001444�14753064456�0024563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m.939 14.973 10.97 6.4V24L.94 17.6v-2.626zm22.123 0v2.626l-10.971 6.4v-2.626l10.97-6.401ZM.939 10.66l10.97 6.4v2.627l-7.223-4.214-1.068.622-2.253-1.313 1.07-.623-1.496-.873zm22.123 0v2.626l-1.496.873 1.07.624-2.253 1.313-1.07-.623-7.224 4.214V17.06l10.972-6.4ZM.939 6.347l10.97 6.4v2.627l-3.525-2.057-1.067.622-2.252-1.314 1.067-.622-1.429-.833-1.066.622-2.253-1.314 1.068-.622-1.514-.883Zm22.123 0v2.626l-1.514.883 1.07.622-2.254 1.315-1.068-.623-1.428.833 1.068.622-2.252 1.314-1.07-.622-3.525 2.057v-2.627l10.972-6.4ZM12 8.584l3.236 1.885-2.252 1.314-.983-.573-.982.573-2.252-1.314 3.235-1.885Zm0-4.293 6.916 4.03-2.252 1.315L12 6.918 7.338 9.635 5.085 8.321ZM12 0l10.597 6.175-2.252 1.314L12 2.627 3.657 7.489 1.405 6.175z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/eclipseadoptium.svg��������������������������0000664�0000000�0000000�00000001033�14753064456�0027007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.98 14.013-2.632 5.729 6.813 3.058c-1.55-2.754-2.82-5.852-4.18-8.787Zm11.033 4.645L16.277 4.064a4 4 0 0 1-.387 1.471l-3.6 7.82 3.871 8.361a3.76 3.76 0 0 0 3.445 2.245 3.734 3.734 0 0 0 3.755-3.755c0-.542-.155-1.045-.348-1.548M15.735 3.755A3.734 3.734 0 0 0 11.982 0C10.51 0 9.27.852 8.65 2.052 6.119 7.582 3.544 13.127.988 18.658c-.232.464-.348 1.006-.348 1.587A3.734 3.734 0 0 0 4.394 24a3.76 3.76 0 0 0 3.445-2.245l7.587-16.413c.193-.503.31-1.045.31-1.587z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/eclipseche.svg�������������������������������0000664�0000000�0000000�00000000320�14753064456�0025722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0 1.604 6.021v7.452L12 7.494l3.941 2.254 6.455-3.727zm10.396 10.527L12 16.506l-7.334-4.217-3.062 1.76v3.93L12 24l10.396-6.021z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/eclipseide.svg�������������������������������0000664�0000000�0000000�00000002642�14753064456�0025735�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.109.024a16 16 0 0 0-.737.023C6.728.361 3.469 2.517 1.579 5.86a12.5 12.5 0 0 0-1.558 5.25c-.04.517-.02 1.745.035 2.208.306 2.682 1.353 5.06 3.07 6.965 1.962 2.173 4.586 3.467 7.437 3.663.42.032 1.043.04 1.02.012a2.4 2.4 0 0 0-.338-.074c-1.674-.33-3.388-1.13-4.777-2.232a12.3 12.3 0 0 1-2.45-2.636A12.4 12.4 0 0 1 1.884 12.5a12.4 12.4 0 0 1 .56-4.274c.785-2.522 2.37-4.726 4.475-6.228A11.1 11.1 0 0 1 11.156.122l.443-.098zm1.474.51C10.646.65 8.807 1.299 7.301 2.4 5.426 3.77 3.995 5.644 3.22 7.746c-.145.397-.282.82-.282.879 0 .012 3.828.024 10.31.024 8.463 0 10.315-.008 10.315-.036 0-.047-.153-.525-.283-.878a14 14 0 0 0-.82-1.722c-.4-.683-.91-1.373-1.474-1.992-1.65-1.82-3.593-2.934-5.82-3.334-.785-.141-1.8-.2-2.585-.153zM23.83 9.97c-.02 0-4.792 0-10.609.004l-10.573.008-.011.059c-.036.16-.134 1.081-.134 1.242 0 .028 1.785.032 10.746.032H24v-.075c0-.102-.07-.791-.106-1.054-.02-.16-.04-.216-.063-.216zm-10.573 2.635c-9.37-.004-10.73 0-10.742.035-.02.04.024.557.075.973.02.157.035.298.035.314 0 .027 2.137.035 10.624.035h10.624l.024-.188c.043-.326.102-.97.094-1.067l-.008-.094zm.003 2.718c-8.882 0-10.321.004-10.321.035 0 .02.054.208.12.42a11.1 11.1 0 0 0 2.072 3.741c.282.342.945 1.036 1.228 1.287 1.568 1.4 3.247 2.216 5.18 2.53.605.094.886.113 1.75.11.91 0 1.297-.032 2.023-.177 2.11-.416 3.914-1.451 5.53-3.17 1.267-1.348 2.106-2.76 2.628-4.41l.117-.366z"/></svg>����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/eclipsejetty.svg�����������������������������0000664�0000000�0000000�00000002344�14753064456�0026332�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.985 2.751a.84.84 0 0 0-.82.653l-.618 2.673a.84.84 0 0 0 .023.459.84.84 0 0 0-.222.403L.986 17.172c-.043.003-.064.006-.12.008a.84.84 0 0 0-.808.821L0 20.387a.84.84 0 0 0 .845.862l4.067-.016a2.27 2.27 0 0 0 1.507-.633c.408-.398.658-.921.842-1.548l.013-.048.093-.403a.84.84 0 0 0 .808.607h2.518a.84.84 0 0 0 .763-.486L18.344 3.95a.842.842 0 0 0-.762-1.197h-2.518a.84.84 0 0 0-.763.486l-1.435 3.075a.8.8 0 0 0-.209-.026H10.21l.578-2.504a.842.842 0 0 0-.82-1.032zm15.654 0a.84.84 0 0 0-.763.487L12.988 18.01a.842.842 0 0 0 .763 1.198h2.518a.84.84 0 0 0 .763-.486L23.92 3.949a.842.842 0 0 0-.763-1.198zm-15.654.842h4.982L9.35 6.266H4.368zm10.079 0h2.518l-6.889 14.773H8.175l.345-.739h1.908a.84.84 0 0 0 .82-.652l.856-3.708a.842.842 0 0 0-.82-1.031h-.25l.26-.558h.508a.84.84 0 0 0 .82-.653l.856-3.707a.8.8 0 0 0 .008-.34zm5.575 0h2.518L16.27 18.366H13.75zM4.169 7.128h2.624l-.812 3.519a.842.842 0 0 0 .82 1.03h1.3l-.129.559H6.283a.84.84 0 0 0-.82.652l-.856 3.708a.842.842 0 0 0 .82 1.031h1.3l-.273 1.188c-.321 1.092-.808 1.534-1.589 1.577l-4.023.015.057-2.386c.489-.019.708.004.851-.418zm3.488 0h5l-.855 3.708H6.8zm1.308 4.55h1.4l-.26.558H8.836zm-2.682 1.4h5.001l-.856 3.707h-5Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/eclipsemosquitto.svg�������������������������0000664�0000000�0000000�00000002033�14753064456�0027232�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.353 11.424c0 2.637.964 5.105 2.636 7.013l-1.007.903A11.97 11.97 0 0 1 0 11.424C0 8.065 1.38 5.029 3.604 2.85l.05.045L6.637 5.57a7.94 7.94 0 0 0-1.433 9.963l1.03-.923A6.59 6.59 0 0 1 7.65 6.478l1.02.915.909.814.941.844a2.78 2.78 0 0 0-1.311 2.367c0 1.23.795 2.273 1.899 2.646l.095 1.297a4.024 4.024 0 0 1-2.483-6.27l-.9-.809-.004-.003a5.23 5.23 0 0 0 .205 6.546l-3.023 2.71a9.29 9.29 0 0 1-.21-11.97L3.777 4.66A10.6 10.6 0 0 0 1.37 10.8l-.006.008.005.004a11 11 0 0 0-.017.612zm11.54 2.639a2.793 2.793 0 0 0 .588-5.013l.941-.844.908-.814 1.021-.915a6.59 6.59 0 0 1 1.417 8.132l1.029.923a7.94 7.94 0 0 0-1.433-9.963l2.981-2.673.05-.045A11.96 11.96 0 0 1 24 11.424c0 2.98-1.095 5.769-2.982 7.916l-1.007-.903a10.6 10.6 0 0 0 2.619-7.625l.005-.004-.006-.007a10.6 10.6 0 0 0-2.407-6.141l-1.008.904a9.29 9.29 0 0 1-.211 11.97l-3.023-2.71a5.23 5.23 0 0 0 .205-6.546l-.004.003-.9.808a4.024 4.024 0 0 1-2.482 6.27zM12 21.149l.335-4.571.271-3.712a1.56 1.56 0 1 0-1.212 0l.271 3.712Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/eclipsevertdotx.svg��������������������������0000664�0000000�0000000�00000001130�14753064456�0027042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.356.01C1.566.01.027 1.269 0 2.938v1.436h2.515l3.861 8.896 4.028-8.791h5.078l2.182 3.986 2.56-3.986H24V2.946C24 1.281 22.44.011 20.645.011zM24 5.668l-8.874 13.56H12.44c-.02-.629-.188-1.237-.503-1.74l3.609-5.708-2.744-4.36-3.829 8.42-.036-.002a3.443 3.443 0 0 0-3.434 3.433q.001.032.004.063h-.263L0 7.5v13.553c0 1.665 1.56 2.935 3.356 2.935h17.289c1.812 0 3.355-1.276 3.355-2.935v-1.826h-3.587l-1.594-2.874 2.224-3.378L24 17.638zm-15.066 11.5a2.1 2.1 0 0 1 2.109 2.103 2.106 2.106 0 1 1-4.212 0c0-1.16.937-2.1 2.103-2.103"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ecosia.svg�����������������������������������0000664�0000000�0000000�00000001707�14753064456�0025073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.198 6.818H8.786v10.48h6.412v-3.342h-3.98v-1.262H13.8V11.42h-2.584v-1.261h3.981zM11.972.06A12.003 12.003 0 0 0 0 12.064a12 12 0 0 0 10.083 11.848c.068-1.277.196-2.723.434-3.652v-.014c0-.005 0-.007-.01-.012 0-.005-.01-.007-.012-.009 0-.002-.01-.002-.014-.002h-.356c-2.307 0-5.943-.333-6.916-3.45-1.458-4.642 2.025-6.314 3.484-4.97 0 .004.012.008.019.008q.013.001.02-.005.014-.007.015-.016v-.021c-.322-.945-2.148-6.867 2.64-8.496 4.08-1.369 8.07 1.491 7.461 5.265v.017c0 .007.01.012.012.014 0 .002.012.005.016.005 0 0 .012-.002.016-.005.298-.246 1.603-1.186 2.919-.148 1.247.982.844 3.73-1.627 5.003q-.013.003-.02.014v.023c0 .01.01.014.015.02q.014.006.023.001c1.596-.239 4.316 1.193 2.11 4.375-1.447 2.1-4.71 2.365-6.168 2.365h-1.071s-.01 0-.012.002c0 .002-.01.005-.012.007 0 .002 0 .005-.01.009v.012c-.021.751.331 2.304.693 3.688A12 12 0 0 0 24 12.063 12.003 12.003 0 0 0 11.997.06h-.03z"/></svg>���������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ecovacs.svg����������������������������������0000664�0000000�0000000�00000001454�14753064456�0025252�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.066 19.071-.001-.001A9.97 9.97 0 0 1 11.994 22a9.96 9.96 0 0 1-7.07-2.93v.001a1 1 0 0 0-1.381-.03 1 1 0 0 0-.044 1.434l.011.01.011.011A11.96 11.96 0 0 0 11.994 24c3.306 0 6.301-1.338 8.472-3.502l.014-.014.011-.012a.99.99 0 0 0-.046-1.431.997.997 0 0 0-1.379.03M15.394 14h-3.999a2 2 0 1 1 0-3.999h3.999L16.794 8h-5.399a4 4 0 1 0 0 8h5.399zm-.4-3-.031.001V11h-2.969a1 1 0 0 0-.999 1c0 .553.446 1 .999 1h2.969v-.002l.031.002a1 1 0 1 0 0-2M11.977 0a11.96 11.96 0 0 0-8.454 3.497.993.993 0 0 0 .03 1.444 1 1 0 0 0 1.38-.026v-.001l.001-.001A9.97 9.97 0 0 1 12.011 2a9.97 9.97 0 0 1 7.064 2.945v-.001c.181.181.43.295.706.296.26 0 .496-.1.674-.262a.99.99 0 0 0 .328-.736 1 1 0 0 0-.29-.706l-.001-.002-.001-.001A11.96 11.96 0 0 0 12.015 0z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/edeka.svg������������������������������������0000664�0000000�0000000�00000002163�14753064456�0024676�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.901 18.997h2.688v.699h-1.857v.297h1.857v.699h-1.857v.295h1.857v.698h-2.688zm-6.476 0h2.686v.699H5.253v.297h1.858v.699H5.253v.295h1.858v.698H4.425ZM17.996 19l-.92 2.685h.827l.182-.552h1.066l.172.552h.834L19.233 19Zm.617.593.319.91h-.635ZM14.076 19h.827v1.024L15.839 19h1.089l-1.055 1.144 1.144 1.541h-1.053l-.673-.914-.387.402v.512h-.828zm-6.459 0v2.685h1.59a1.344 1.344 0 0 0 0-2.685zm.827.71h.652a.634.634 0 1 1 0 1.267h-.65ZM4.432 2.318h15.136V6.32H9.104v1.563h10.463v4.004H9.104v1.56h10.463v4.004H4.432ZM2.116 0v24h19.768V0Zm.176.177h19.413v23.647H2.291Zm2.136 18.82h2.686v.7H5.256v.296h1.858v.699H5.256v.294h1.858v.7H4.428Zm6.476 0h2.688v.7h-1.857v.296h1.857v.699h-1.857v.294h1.857v.7h-2.688zm7.094.003-.92 2.686h.828l.182-.553h1.064l.172.553h.836L19.236 19zm.617.594.319.908h-.635ZM14.078 19h.828v1.024L15.842 19h1.089l-1.056 1.144 1.144 1.541h-1.053l-.672-.914-.388.402v.512h-.828zm-6.457 0v2.686h1.588a1.344 1.344 0 0 0 0-2.686Zm.826.711h.65a.633.633 0 1 1 0 1.266h-.65ZM4.435 2.317h15.134v4.004H9.106v1.563h10.463v4.004H9.106v1.56H19.57v4.004H4.435Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/edgeimpulse.svg������������������������������0000664�0000000�0000000�00000001074�14753064456�0026130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.008 10.287h4.51l1.348 3.53h-5.858c-.979 0-1.772-.79-1.772-1.766s.793-1.766 1.772-1.766zM.677 12.049a1.77 1.77 0 0 1 1.773-1.766h8.597a1.77 1.77 0 0 1 1.772 1.766c0 .976-.793 1.766-1.772 1.766H2.45c-.98 0-1.773-.79-1.773-1.766M24 19.613H4.448a2.52 2.52 0 0 1-1.93.899A2.514 2.514 0 0 1 0 18.002a2.514 2.514 0 0 1 2.518-2.509c.775 0 1.467.351 1.93.899h18.321zM19.594 7.655H4.404a2.5 2.5 0 0 1-1.886.852A2.514 2.514 0 0 1 0 5.998a2.514 2.514 0 0 1 2.518-2.51c.797 0 1.506.371 1.967.946h13.878z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/editorconfig.svg�����������������������������0000664�0000000�0000000�00000012023�14753064456�0026275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.325.402c-.242-.013-1.006.34-1.402.544-.897.472-1.14.632-1.806 1.54-.766 1.046-1.084 1.638-1.213 2.181-.383 1.392-.533 2.089-1.148 2.934-.457.344-.546.792-.911 1.305-.234.327-.862 1.43-.863 1.517-.003.163-.05.2-.539.184-.526-.018-.736.039-1.003.299-.24.232-.288.24-.289 1.054 0 .98.229 1.09.574 1.545C1.207 14.798.098 18.578 0 20.885c0 .195.015.706.131 1.741.137.296.337.514.587.671.822.062 1.762.302 3.39.302 1.315 0 3.857-.58 4.06-.635.693-.185 1.771-.76 2.51-1.187.174-.1 1.395-.542 1.856-.89.239-.181 1.461-.872 1.887-1.206.876-.687.96-.835 1.717-1.942.345-.505.497-.644.829-1.455l.01-.703c.262.09 2.184.608 2.41.743.367.219.012.448-.183.677-.14.165.092.323.224.203.192-.174.781-.564.744-.76 0-.134-.315-.328-.807-.572-.446-.221-.416-.218-.256-.265.905-.301 1.406-.437 2.032-.8 1.677-1.042 2.555-1.976 2.761-2.927.198-.876.09-1.52-.273-2.294-.183-.683-.513-.935-1.24-1.237-.848-.353-2.396-.51-3.012-.3-.517.175-1.777.738-2.416 1.057-.346.173-.633.307-.638.297-.156-.254-.32-.506-.463-.79-.252-.5-.37-.659-.624-.777-.133-.062-.385-.175-.684-.385-.496-.344-1.162-.82-2.723-1.243.892-1.545.904-1.74 1.039-2.587.125-.629.168-1.685.039-1.97-.117-.257-.617-.8-.955-.962-.66-.315-1.075-.287-1.627-.287m.023.564c.172-.001.369.022.622.07.44.085.728.2 1.171.47l.3.182.065.525c.069.564.046.986-.073 1.348-.04.124-.134.424-.207.667-.145.484-.498 1.015-.636 1.236-.03.05-.125-.022-.166.08-.184.466-.4.487-.76.52-.113.01-.889-.046-1.687-.07-.963.028-1.337-.22-2.518.258-.253.096.528-1.41.61-1.56.21-.38 1.327-1.66 1.6-1.762.23-.086.456-.341.656-.532.33-.315.418-.348.765-.415.324-.063 1.066-.29 1.43-.037.225.178.381.537.346.821-.069.566-.149.792-.497 1.31-.824 1.227-.806 1.251-.699 1.313.105.06.085.094.067.161-.056.206.007.163.161.11.315-.11.802-.996 1.119-2.001.192-.611.19-.335.16-1.12-.017-.465-.029-.415-.182-.665-.227-.37-.45-.49-1.22-.49-.83-.002-1.143.033-1.676.515-.603.544-1.083.77-1.949 2.054-.427.461-.92 1.615-1.149 2.427-.029-.005-.043.02-.015-.366.043-.588.185-.988.79-2.225.429-.874.58-1.133.76-1.3.613-.57 1.66-1.217 2.34-1.445.153-.052.3-.078.472-.08zm1.285 6.017c1.406.541 2.34.62 3.442 1.654.68 1.108.9 2.22 1.246 3.435.343 1.06.33 2.738.321 2.97-.414-.157-.826-.197-1.292-.214-.06-.542-1.137-.636-1.531-.825-.512-.228-1.295-.364-2.3-.527-.96-.22-1.753-.111-2.722-.125-.11.1-.19.186-.278.317-.15-.08-.354-.275-.634-.264-.105 0-.117-.018-.08-.28.024-.168.102-.305.017-.383-.221-.204-.167-.218-.201-.316-1.107-.64-3.029-1.611-4.02-1.71.34-.476.195-.52.303-.691.272-.429.968-1.343 1.123-1.694 0-.229.723-.984 1.403-1.503 1.43-.28 3.565-.265 5.203.156m8.519 1.505c1.605.041 2.166.236 2.697.777.524.55.698.877.698 1.31 0 .354-.278 1.343-.462 1.647-.7 1.152-2.265 2.404-3.6 2.88-.316.111-.478.133-1.096.148-.403.035-.91-.043-1.297-.13.22-2.561.026-2.73-.198-3.771.09-.22.505-.48.422-.611.776-.49 1.325-1.04 1.933-1.228.408-.15.493-.161 1.343-.186.802-.023.944-.014 1.224.075.597.19 1.265.746 1.265 1.053 0 .193.044.242.137.241.22-.002.151-.326.037-.559-.378-.704-.968-.954-1.533-1.081-.143-.03-.6-.099-1.013-.118-.591-.027-.84-.005-1.143.06-.48.102-.898.239-1.302.596-.31.275-.857.591-1.305.805-.106.015-.174-.17-.256-.267 1.053-.807 2.03-1.521 3.449-1.64zM2.718 10.96c-.304.488-.515.842-.524 1.226-.12.301-.227.595-.38.907-.373-.376-.254-1.176-.093-1.517.357-.69.368-.508.997-.616m.798.111c1.097.336 2.247.64 3.698 1.535.278.167.13.5.024 1.034a1.68 1.68 0 0 1-1.133.607c.431-.434.878-1.195.402-1.714-.118-.156-.15-.181-.358-.166-.284.02-.288-.006-.44.389-.327.385-.492 1.292-.382 1.576-.566-.033-2.077-.152-2.95-.709.094-.243.335-.595.358-.914.119-.241.62-1.665.78-1.638zm2.7 1.709c.167.282-.192 1.135-.417 1.241-.165-.602.167-1.17.416-1.241zm3.534.831c.437 0 1.24.092 2.21.253.836.138.995.177 1.715.414.854.264.798.364 1.087.785.063.09.156.366.205.609.109.533-.402.943-1.44 1.157-.354.073-.673.097-1.23.093-.879-.007-1.19-.044-1.685-.2-.736-.231-1.114-.555-1.519-1.233-.22-.37-.273-.414-.242-.685.064-.562.183-.927.346-1.064.134-.113.203-.129.553-.129m-1.984.085c.1-.003.586.224.683.29-.142.385-.009 1.322.383 1.777.092.143.318.465.535.68.684.683 1.13.795 2.656.796 1.278.002 1.65-.068 2.285-.272.589-.188.768-.428.837-.595.17-.402.252-.817.211-1.247l1.287.366c-.106.866-.587 1.375-.944 1.821-.266.428-.816 1.23-.971 1.364-.747.643-1.436 1.095-2.928 1.936-.439.248-1.618.706-1.924.859-.312.156-1.417.81-1.569.855a9.5 9.5 0 0 1-1.554.315c-.4.047-1.82.262-2.725.299-.66.014-.84-.054-1.657-.03-.438-.084-1.396-.301-1.396-.301-.285-.457-.359-.807-.439-1.336.664.778 1.063 1.041 1.595 1.041.479 0 .725-.18.92-.18.123 0 .454-.233.437-.385a1.03 1.03 0 0 0-.253-.605c-.23-.147-1.6-.691-1.832-.691-.64 0-.781.05-.85.18.395-2.142.909-4.616 1.67-6.62 1.174.514 3.097.887 4.043.568 1.452-.51 1.12-.685 1.5-.885m3.817.15c-.168 0-.586.458-.744.815-.159.359-.202.911-.083 1.055.098.118.503.12.707-.004.398-.243.779-1.096.682-1.538-.035-.16-.33-.328-.562-.328m.026.39c.148.178-.04.659-.213.85-.204.216-.406.247-.348.058.14-.353.456-.914.561-.908M2.68 21.462c.156.049.353.27.315.33-.638.036-.998-.008-1.051-.012-.217-.017-.917-.32-.897-.657.027-.395 1.32.31 1.633.339"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/edotleclerc.svg������������������������������0000664�0000000�0000000�00000001263�14753064456�0026112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.43 0 .105 5.373.105 12c0 6.628 5.326 12 11.897 12 6.57 0 11.895-5.372 11.895-12C23.896 5.374 18.57 0 12 0m0 2.491c5.207 0 9.427 4.258 9.427 9.51s-4.22 9.508-9.426 9.508-9.428-4.257-9.428-9.508c0-5.252 4.221-9.51 9.428-9.51zm1.148 1.991a6.48 6.48 0 0 0-3.856 1.266h3.193v3.234c-.556.028-1.016.478-1.016 1.044v5.45h.945c1.205 0 1.509-1.454 1.509-1.454h2.836v2.594a6.62 6.62 0 0 0 2.945-5.521c0-3.653-2.935-6.613-6.556-6.613M6.49 6.732v1.62c.546.142 1.018.612 1.018 1.382v5.46c0 .616-.436 1.169-1.018 1.314v2.095h9.3v-3.599l-1.234.007a2.32 2.32 0 0 1-2.142 1.442H10.5V9.69c0-.698.454-1.182 1.015-1.335V6.732z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/educative.svg��������������������������������0000664�0000000�0000000�00000001004�14753064456�0025567�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 0H4a4 4 0 0 0-4 4v16a4 4 0 0 0 3.998 4h16A4 4 0 0 0 24 20V4a4 4 0 0 0-4-4M5.397 19.576l-1.828-1.673a.316.316 0 0 1-.018-.445l4.004-4.376a.314.314 0 0 0 .009-.415L3.82 8.217a.315.315 0 0 1 .038-.443l1.893-1.595a.315.315 0 0 1 .443.038l5.495 6.537a.316.316 0 0 1-.008.417L5.84 19.559a.315.315 0 0 1-.442.018zm15.147-.102a.315.315 0 0 1-.315.315H11.74a.315.315 0 0 1-.314-.315v-2.332c0-.174.14-.315.314-.315h8.488c.174 0 .315.14.315.315z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/edx.svg��������������������������������������0000664�0000000�0000000�00000003166�14753064456�0024411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.359 10.416q.08.243.079.516a3 3 0 0 1-.011.231h-3q.097-.354.262-.644.163-.29.39-.497.225-.208.503-.321.277-.113.595-.113.314 0 .549.108.235.107.394.292t.239.428m5.444-.4a1.2 1.2 0 0 0-.436-.305 1.5 1.5 0 0 0-.58-.108q-.426 0-.79.19a1.95 1.95 0 0 0-.631.528 2.6 2.6 0 0 0-.421.808 3.3 3.3 0 0 0-.154 1.029q0 .349.1.641c.1.292.16.362.28.5q.18.207.431.323.252.116.56.116.43 0 .798-.203.367-.203.639-.554a2.7 2.7 0 0 0 .426-.826q.154-.475.154-1.024 0-.354-.098-.636a1.4 1.4 0 0 0-.278-.479M24 7.468l-2.398 11.276H10.727l.625-2.852H0L2.227 5.256h13.577l-.462 2.212zM7.362 11.045a2.5 2.5 0 0 0-.169-.954 2.1 2.1 0 0 0-.457-.7 1.95 1.95 0 0 0-.669-.434 2.2 2.2 0 0 0-.809-.148 2.7 2.7 0 0 0-1.162.246 2.6 2.6 0 0 0-.911.695q-.38.45-.593 1.077a4.4 4.4 0 0 0-.212 1.393q0 .56.177.99a2.01 2.01 0 0 0 1.198 1.172q.41.151.872.151.481 0 .885-.115a2.6 2.6 0 0 0 .708-.318q.306-.203.505-.48a1.8 1.8 0 0 0 .287-.595h-.938a1.3 1.3 0 0 1-.508.513q-.334.19-.883.19-.252 0-.497-.085a1.2 1.2 0 0 1-.444-.274 1.4 1.4 0 0 1-.321-.49 1.9 1.9 0 0 1-.123-.726q0-.072.003-.138t.008-.138h3.986q.015-.077.026-.187l.02-.226a6 6 0 0 0 .021-.419m5.036 3.392L14.04 6.71h-.898l-.682 3.217h-.082a1.4 1.4 0 0 0-.228-.454 1.6 1.6 0 0 0-.375-.354 1.8 1.8 0 0 0-.487-.228 2 2 0 0 0-.567-.082 2.5 2.5 0 0 0-1.45.456 3 3 0 0 0-.575.534q-.259.313-.444.7a4 4 0 0 0-.285.841q-.1.454-.1.952 0 .513.159.929.159.415.434.708.274.293.639.449t.78.157q.529 0 .985-.228t.759-.623h.082l-.159.754zm6.116-1.39 3.578-4.125H20.09l-2.184 2.704h-.108l-1.155-2.704h-2.025l1.736 3.928-3.748 4.44h1.976l2.406-2.852h.162l1.3 2.852h1.988z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/egghead.svg����������������������������������0000664�0000000�0000000�00000004637�14753064456�0025221�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.998 0c-1.649 0-3.223.893-4.679 2.655-.934 1.134-1.818 2.638-2.567 4.368-1.338.207-2.399.48-3.143.814a2.04 2.04 0 0 0-1.21 1.93c.041 1.433.385 2.925.64 3.924.22.868.95 1.512 1.838 1.623v.018A9.12 9.12 0 0 0 11.997 24l-.003-.001a9.133 9.133 0 0 0 9.127-8.667v-.016a2.175 2.175 0 0 0 1.84-1.626c.255-.997.599-2.489.64-3.93a2.04 2.04 0 0 0-1.21-1.926c-.765-.34-1.825-.616-3.154-.816-.748-1.727-1.634-3.228-2.565-4.361C15.22.894 13.647 0 11.998 0m-.008.828c1.412 0 2.786.797 4.084 2.37.948 1.15 1.844 2.71 2.585 4.512 1.206.163 2.448.413 3.33.806.491.217.8.71.784 1.245-.038 1.346-.371 2.785-.61 3.738a1.46 1.46 0 0 1-1.397 1.104h-.014c-.146 0-.291-.01-.437-.013a8.4 8.4 0 0 1-.558 3.29 8.335 8.335 0 0 1-7.763 5.287h-.002v-.001A8.34 8.34 0 0 1 4.23 17.88a8.45 8.45 0 0 1-.573-3.288c-.14.003-.278.013-.418.013h-.007a1.46 1.46 0 0 1-1.395-1.104c-.248-.955-.577-2.386-.616-3.73a1.325 1.325 0 0 1 .784-1.252c.837-.371 2.075-.63 3.313-.803C6.066 5.914 6.96 4.352 7.906 3.2 9.204 1.625 10.578.828 11.99.828m0 .77a3.37 3.37 0 0 0-1.691.492c-1.831 1.058-3.25 3.558-4.108 5.528 1.096-.118 2.137-.181 2.788-.172.54-.005 1.06.21 1.44.594A3.9 3.9 0 0 1 12 7.674a3.9 3.9 0 0 1 1.582.365 2 2 0 0 1 1.427-.593c.43-.007 1.535.036 2.776.162-.852-1.958-2.273-4.461-4.104-5.518a3.4 3.4 0 0 0-1.692-.491zm3.215 7.045v.004a.92.92 0 0 0-.93.774q-.148.795-.196 1.601c-.007.614.214 1.034.651 1.25 1.252.558 2.66.898 4.27 1.034-.189-1.377-.578-2.958-1.112-4.495-1.087-.122-2.12-.177-2.683-.168m-6.422.001a26 26 0 0 0-2.644.159c-.533 1.54-.924 3.123-1.108 4.5 1.59-.14 2.983-.48 4.226-1.034.44-.214.66-.636.653-1.252a13 13 0 0 0-.198-1.6.92.92 0 0 0-.93-.773zM5.29 8.91c-.624.09-1.242.21-1.79.364l1.509.533q.132-.449.281-.897m13.453.01q.145.435.274.872l1.46-.515a15 15 0 0 0-1.734-.357m-6.746.34a.86.86 0 0 0-.478.144c-.303.2-.408.581-.378.868.122 1.139.07 2.388-1.229 3.01l-.015.008a11.4 11.4 0 0 1-1.93.707c-1.162.308-2.351.5-3.548.573a7.574 7.574 0 0 0 14.627 3.007 7.6 7.6 0 0 0 .506-3.009 18 18 0 0 1-3.525-.572q-.998-.264-1.931-.7l-.014-.012c-1.303-.623-1.352-1.871-1.23-3.01.03-.287-.075-.668-.378-.87a.86.86 0 0 0-.477-.145zm-9.352 1.875c.113.726.271 1.422.407 1.95.044.17.196.29.37.29.289-.001.554-.024.83-.037.075-.612.197-1.27.35-1.95a203 203 0 0 1-1.957-.253m18.695 0c-.746.099-1.506.198-1.909.246.155.683.275 1.344.352 1.96.26.01.508.034.778.036a.385.385 0 0 0 .37-.289c.136-.53.296-1.226.409-1.953"/></svg>�������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/egnyte.svg�����������������������������������0000664�0000000�0000000�00000004202�14753064456�0025114�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.742 11.214-.447-.78a.06.06 0 0 0-.082-.022l-2.014 1.162-1.986-1.167a.06.06 0 0 0-.082.021l-.458.78a.06.06 0 0 0 .021.083l2.009 1.178v2.363c0 .033.027.06.06.06h.89a.06.06 0 0 0 .06-.06v-2.374l2.007-1.162c.028-.016.039-.055.022-.082m-3.863 1.583c-.017-.028-.055-.038-.088-.022l-1.342.797c-.027.016-.038.054-.022.087l.191.327c.016.028.055.039.087.022l1.343-.797c.027-.016.038-.054.022-.087zm1.533-3.69-.442.006q-.025 0-.027.033l.005 1.62q0 .027.033.028h.442q.025 0 .027-.033l-.005-1.62a.035.035 0 0 0-.033-.033zm2.554 4.377-1.413-.791c-.017-.005-.033-.005-.039.011l-.218.387c-.005.017-.005.033.011.039l1.413.79c.017.006.033.006.039-.01l.218-.388c.01-.01.005-.032-.011-.038m-14.057.12h-1.9v-.584h1.687a.075.075 0 0 0 .076-.076v-.65a.075.075 0 0 0-.076-.076H1.01v-.556h1.87a.075.075 0 0 0 .077-.077v-.715a.075.075 0 0 0-.077-.076H.076A.075.075 0 0 0 0 10.87v3.526c0 .043.033.076.076.076H2.91a.075.075 0 0 0 .076-.076v-.715a.08.08 0 0 0-.076-.077zm3.967-1.282H5.26v.748h.725v.442q.001.009-.005.01c-.153.099-.338.148-.584.148-.584 0-.999-.426-.999-1.02v-.012c0-.562.41-1.01.939-1.01.338 0 .584.11.83.301.032.027.081.022.103-.01l.502-.607a.08.08 0 0 0-.01-.109c-.377-.305-.82-.485-1.436-.485-1.14 0-1.98.84-1.98 1.915v.01c0 1.114.856 1.905 2.002 1.905a2.5 2.5 0 0 0 1.572-.545.1.1 0 0 0 .027-.06v-1.545c.005-.043-.027-.076-.071-.076zm4.044-1.533h-.857a.075.075 0 0 0-.077.076v1.866l-1.49-1.915a.1.1 0 0 0-.06-.027h-.834a.075.075 0 0 0-.077.076v3.525c0 .044.033.077.077.077h.856a.075.075 0 0 0 .077-.077v-1.943l1.55 1.992a.1.1 0 0 0 .06.028h.78a.075.075 0 0 0 .076-.077v-3.525c-.005-.038-.043-.076-.081-.076m9.571 0H17.42a.075.075 0 0 0-.077.076v.742c0 .044.033.076.077.076h1.026v2.713c0 .043.032.076.076.076h.868a.075.075 0 0 0 .076-.076v-2.702q.002-.009.011-.01h1.015a.075.075 0 0 0 .077-.077v-.742a.08.08 0 0 0-.077-.076zm3.433 2.815h-1.9v-.584h1.692a.075.075 0 0 0 .077-.076v-.65a.075.075 0 0 0-.077-.076h-1.691v-.556h1.871a.075.075 0 0 0 .077-.077v-.715a.075.075 0 0 0-.077-.076h-2.805a.075.075 0 0 0-.076.076v3.526c0 .043.033.076.076.076h2.833a.075.075 0 0 0 .076-.076v-.715a.075.075 0 0 0-.076-.077"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/eight.svg������������������������������������0000664�0000000�0000000�00000000571�14753064456�0024726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.908 6.092a5.908 5.908 0 1 0 0 11.816 5.908 5.908 0 0 0 0-11.816m9.23 0v2.955h5.909V6.092zm5.909 2.955v5.906H24V9.047zm0 5.906h-5.908v2.955h5.908zm-5.908 0V9.047h-2.953v5.906zm-9.23-5.906A2.956 2.956 0 0 1 8.86 12a2.956 2.956 0 0 1-2.953 2.953A2.96 2.96 0 0 1 2.953 12a2.96 2.96 0 0 1 2.955-2.953z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/eightsleep.svg�������������������������������0000664�0000000�0000000�00000001211�14753064456�0025747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.847 7.28V4.105A4.104 4.104 0 0 0 15.745 0H8.258a4.104 4.104 0 0 0-4.105 4.102v3.183a4.09 4.09 0 0 0 2.415 3.738v.588a4.1 4.1 0 0 0-2.415 3.738v4.546A4.104 4.104 0 0 0 8.255 24h7.488a4.104 4.104 0 0 0 4.104-4.104v-4.553a4.1 4.1 0 0 0-2.415-3.738v-.587a4.1 4.1 0 0 0 2.415-3.738M8.451 5.126c0-.818.662-1.482 1.48-1.483h4.133c.819 0 1.483.663 1.483 1.482v1.991c0 .819-.664 1.482-1.483 1.482H9.93a1.48 1.48 0 0 1-1.482-1.482zm7.1 13.732c0 .818-.664 1.482-1.483 1.482H9.93a1.48 1.48 0 0 1-1.482-1.482v-2.752c0-.819.664-1.483 1.482-1.483h4.134c.819 0 1.483.664 1.483 1.483z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ejs.svg��������������������������������������0000664�0000000�0000000�00000001647�14753064456�0024414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.291 5.696-1.258-1.58 1.668-1.55 1.258 1.58zm2.34 2.048.205-1.55-5.412-.03-.204 1.55 3.945.022L7.8 17.852l-.839.77-.405-.004c.385.403.803.81 1.236 1.214l1.378-1.265 1.458-10.823zm-6.757 7.254s2.925-.468 3.54.38c0 0-1.756-2.925-4.184-2.925 0-.074-.098-1.353 5.146-2.609l.206-1.53c-8.346 1.108-14.287 4.322.265 13.12 0 0-5.675-4.71-4.973-6.436M13 6.223 11.216 7.86l-.526 4.037 1.316 1.638 5.675.058.556.702-.38 2.633-.713.685-.018.017h2.193l.556-4.037-1.345-1.638-5.646-.058-.556-.702.351-2.633.731-.702 5.032.058.556.673-.176 1.229h1.55l.264-1.902-1.317-1.667-6.318-.03zm2.882 11.908.545-.523-4.305-.035-.965-1.17-1.258 1.17 1.346 1.667 6.318.03 1.22-1.139zM13.13 8.965a103 103 0 0 1 4.624-.554l-4.145-.048-.457.44zm8.026-1.156-.025.179-.018.132c.92-.07 1.87-.139 2.887-.2 0 0-1.113-.067-2.844-.11zM1.914 18.392l1.404 1.784 2.66.02q-1.94-1.312-3.296-2.499z"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/elastic.svg����������������������������������0000664�0000000�0000000�00000002067�14753064456�0025254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.345 16.33-3.959-.926-1.05-2.01 5.177-4.535a3.96 3.96 0 0 1 2.559 3.702 4.01 4.01 0 0 1-2.727 3.77m-2.976 4.68c-.616 0-1.22-.207-1.714-.587l.782-4.077 3.596.841c.115.31.172.642.172.987a2.84 2.84 0 0 1-2.836 2.836m-2.637-.586a5.92 5.92 0 0 1-4.908 2.6A5.947 5.947 0 0 1 4 15.905l5.167-4.67 5.272 2.403 1.167 2.23zM.928 11.443a4.01 4.01 0 0 1 2.726-3.77l3.95.933.927 1.98-5.05 4.565a3.97 3.97 0 0 1-2.553-3.708m5.703-8.45a2.84 2.84 0 0 1 1.723.58l-.789 4.092-3.598-.85a2.8 2.8 0 0 1-.172-.986A2.84 2.84 0 0 1 6.63 2.992m2.66.59A5.92 5.92 0 0 1 20.1 6.93c0 .4-.038.781-.114 1.164l-5.299 4.643-5.251-2.394-1.026-2.19zM24 12.571a4.72 4.72 0 0 0-3.124-4.454 6.7 6.7 0 0 0 .126-1.29A6.79 6.79 0 0 0 14.22.047 6.77 6.77 0 0 0 8.727 2.86a3.6 3.6 0 0 0-2.204-.754A3.604 3.604 0 0 0 3.15 6.959 4.79 4.79 0 0 0 0 11.431 4.73 4.73 0 0 0 3.139 15.9a7 7 0 0 0-.124 1.289 6.773 6.773 0 0 0 6.765 6.765c2.19 0 4.22-1.052 5.49-2.824a3.57 3.57 0 0 0 2.207.769 3.603 3.603 0 0 0 3.374-4.854A4.785 4.785 0 0 0 24 12.572"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/elasticcloud.svg�����������������������������0000664�0000000�0000000�00000001100�14753064456�0026266�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.318 0c-6.628 0-12 5.372-12 12 0 2.008.495 3.9 1.368 5.563a14.3 14.3 0 0 1 5.09-3.664c.307-.13.624-.22.948-.28A4.8 4.8 0 0 1 8.443 12a4.875 4.875 0 0 1 7.494-4.11 2.22 2.22 0 0 0 2.055.164 12.05 12.05 0 0 0 4.69-3.554A11.98 11.98 0 0 0 13.318 0M9.426 15.77c-.266.01-.531.069-.783.175a12.04 12.04 0 0 0-4.69 3.555c2.2 2.742 5.576 4.5 9.365 4.5s7.165-1.758 9.364-4.5a12.05 12.05 0 0 0-4.69-3.555 2.22 2.22 0 0 0-2.055.165 4.85 4.85 0 0 1-2.62.765 4.85 4.85 0 0 1-2.618-.765 2.2 2.2 0 0 0-1.273-.34"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/elasticsearch.svg����������������������������0000664�0000000�0000000�00000000645�14753064456�0026442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.394 0C8.683 0 4.609 2.716 2.644 6.667h15.641a4.77 4.77 0 0 0 3.073-1.11c.446-.375.864-.785 1.247-1.243l.001-.002A11.97 11.97 0 0 0 13.394 0M1.804 8.889a12 12 0 0 0 0 6.222h14.7a3.111 3.111 0 1 0 0-6.222zm.84 8.444C4.61 21.283 8.684 24 13.395 24c3.701 0 7.011-1.677 9.212-4.312l-.001-.002a10 10 0 0 0-1.247-1.243 4.77 4.77 0 0 0-3.073-1.11z"/></svg>�������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/elasticstack.svg�����������������������������0000664�0000000�0000000�00000000416�14753064456�0026276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.875 0C.839 0 0 .84 0 1.875v4.792h24V1.875C24 .839 23.16 0 22.125 0zM0 8.889v6.222h24V8.89zm0 8.444v4.792C0 23.161.84 24 1.875 24h9v-6.667zm13.125 0V24h9C23.161 24 24 23.16 24 22.125v-4.792z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/elavon.svg�����������������������������������0000664�0000000�0000000�00000001560�14753064456�0025111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.028 12.248q-.568 1.348-1.123 2.908a63 63 0 0 0-1.016 3.13h.355a49 49 0 0 1 1.76-4.79c.222-.513.446-.992.669-1.463-.215.066-.43.132-.645.215m7.32-5.717c-.389-1.148-.959-1.735-1.694-1.735h-.008c-1.347 0-3.024 1.983-4.693 5.403.29-.107.579-.206.86-.306 1.164-1.957 2.271-3.114 3.073-3.114h.074c.446.041.777.47.967 1.28.495 2.082-.05 6.163-1.264 10.467.933.058 1.751.29 2.437.678.933-5.362 1.098-10.17.248-12.673M18.1 10.422c0-.429.85.132-.033-1.47-4.378.371-10.525 3.18-16.217 7.765A45 45 0 0 0 0 18.287h.363c.108-.083.207-.174.314-.265 5.99-4.816 12.533-7.616 16.977-7.616q.223.002.446.016m2.255-1.397q.107.943.116 1.893a4 4 0 0 1 1.33.893c.81.826 1.174 1.956 1.092 3.369-.058.958-.324 2.008-.77 3.115h.24c.967-1.76 1.536-3.412 1.627-4.85.075-1.355-.28-2.436-1.049-3.22-.627-.645-1.52-1.026-2.586-1.2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/electron.svg���������������������������������0000664�0000000�0000000�00000003370�14753064456�0025441�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.011 0a1.54 1.54 0 1 0 1.366 2.247c2.221 1.267 3.847 5.472 3.847 10.362 0 2.071-.289 4.056-.825 5.768a.32.32 0 0 0 .211.403.32.32 0 0 0 .403-.21c.556-1.777.855-3.826.855-5.961 0-5.193-1.772-9.686-4.321-11.003q.001-.033.003-.067C13.55.69 12.861 0 12.011 0m0 .643a.896.896 0 1 1 0 1.792.896.896 0 1 1 0-1.792M6.525 4.948c-2.067.008-3.647.665-4.388 1.949-.738 1.277-.527 2.97.51 4.781a.322.322 0 0 0 .559-.32c-.935-1.63-1.117-3.092-.512-4.14.82-1.422 3.033-1.955 5.932-1.427a.322.322 0 0 0 .115-.633 12 12 0 0 0-2.216-.21m11.052.018a.322.322 0 0 0-.008.643c1.834.024 3.156.596 3.75 1.626.82 1.419.18 3.594-1.718 5.837a.32.32 0 0 0 .038.453.32.32 0 0 0 .453-.037c2.053-2.426 2.77-4.866 1.784-6.575-.725-1.257-2.26-1.92-4.299-1.947m-2.698.292a.3.3 0 0 0-.065.008c-1.857.398-3.833 1.175-5.731 2.271-4.57 2.638-7.593 6.495-7.36 9.372a1.538 1.538 0 0 0 .746 2.884 1.54 1.54 0 0 0 0-3.078q-.056 0-.113.006c-.1-2.56 2.744-6.142 7.048-8.627 1.842-1.063 3.756-1.816 5.545-2.2a.322.322 0 0 0-.07-.636M12 11.495a1 1 0 0 0-.224.025 1.114 1.114 0 1 0 .224-.025M4.532 13.34a.32.32 0 0 0-.232.084.32.32 0 0 0-.021.454c1.268 1.393 2.916 2.7 4.794 3.785 4.415 2.55 9.106 3.285 11.561 1.84a1.53 1.53 0 0 0 .897.29 1.54 1.54 0 1 0-1.338-.781c-2.245 1.214-6.631.5-10.798-1.906-1.823-1.052-3.418-2.318-4.64-3.661a.32.32 0 0 0-.223-.105m-2.063 4.017a.896.896 0 1 1 0 1.792.896.896 0 1 1 0-1.792m19.062 0a.896.896 0 1 1 0 1.792.9.9 0 0 1-.587-.22l-.006-.011a.3.3 0 0 0-.096-.092.896.896 0 0 1 .689-1.469M7.526 18.726a.322.322 0 0 0-.32.43C8.279 22.154 10.036 24 12.01 24c1.44 0 2.774-.982 3.813-2.711a.32.32 0 0 0-.11-.441.32.32 0 0 0-.442.11c-.934 1.553-2.08 2.399-3.26 2.399-1.642 0-3.208-1.647-4.2-4.418a.32.32 0 0 0-.286-.213"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/electronbuilder.svg��������������������������0000664�0000000�0000000�00000000535�14753064456�0027010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 7.01a3.506 3.506 0 0 0 3.506-3.505A3.506 3.506 0 0 0 12 0a3.506 3.506 0 0 0-3.506 3.506A3.506 3.506 0 0 0 12 7.01m0 4.137C9.243 8.588 5.574 7.01 1.484 7.01v12.852C5.574 19.863 9.243 21.44 12 24c2.757-2.56 6.426-4.137 10.516-4.137V7.01c-4.09 0-7.759 1.578-10.516 4.137"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/electronfiddle.svg���������������������������0000664�0000000�0000000�00000000512�14753064456�0026604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 0c-.631 0-1.143.512-1.143 1.143V15A4.573 4.573 0 0 0 8 24a4.571 4.571 0 0 0 1.143-8.999v-4.715h4.735c.54 0 .98-.512.98-1.143S14.417 8 13.877 8H9.143V2.286h10.286a1.143 1.143 0 1 0 0-2.286Zm0 17.143a2.286 2.286 0 1 1 0 4.571 2.286 2.286 0 0 1 0-4.571"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/elegoo.svg�����������������������������������0000664�0000000�0000000�00000001444�14753064456�0025100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.686 7.479q.81 1.244 1.476 2.505c.64-1.217 1.849-2.086 3.328-2.086 2.217 0 3.826 1.954 3.826 4.102s-1.609 4.102-3.826 4.102c-.656 0-1.26-.171-1.784-.467l-.001-.001a4 4 0 0 1-1.509-1.553c-.484-.804-.725-1.706-.991-2.657-.598-2.134-1.252-3.773-3.194-4.988a6.56 6.56 0 0 0-3.501-.985C2.815 5.451 0 8.323 0 12c0 3.727 2.761 6.549 6.51 6.549 1.955 0 3.639-.766 4.805-2.027a31 31 0 0 1-1.477-2.505c-.641 1.217-1.849 2.085-3.328 2.085-2.218 0-3.827-1.953-3.827-4.102S4.292 7.898 6.51 7.898c.655 0 1.26.171 1.783.469h.001c.635.36 1.154.904 1.509 1.553.574.951.807 2.041 1.144 3.188.555 1.89 1.285 3.339 3.002 4.432a6.55 6.55 0 0 0 3.541 1.009c3.694 0 6.51-2.872 6.51-6.549 0-3.727-2.76-6.549-6.51-6.549-1.954 0-3.64.766-4.804 2.028"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/element.svg����������������������������������0000664�0000000�0000000�00000001217�14753064456�0025255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m-1.314 4.715c3.289 0 5.956 2.66 5.956 5.943a.879.879 0 0 1-1.758 0 4.194 4.194 0 0 0-4.198-4.189.878.878 0 1 1 0-1.754m-5.092 9.504a.88.88 0 0 1-.879-.877 5.95 5.95 0 0 1 5.956-5.945.878.878 0 1 1 0 1.753 4.195 4.195 0 0 0-4.198 4.191.88.88 0 0 1-.879.878m7.735 5.067c-3.29 0-5.957-2.662-5.957-5.944a.88.88 0 0 1 1.758 0 4.194 4.194 0 0 0 4.199 4.189.879.879 0 1 1 0 1.755m0-2.683a.88.88 0 0 1-.88-.876.88.88 0 0 1 .88-.878 4.195 4.195 0 0 0 4.199-4.19.878.878 0 0 1 1.758 0c0 3.282-2.667 5.944-5.957 5.944"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/elementary.svg�������������������������������0000664�0000000�0000000�00000001553�14753064456�0025774�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a12 12 0 1 0 0 24 12 12 0 0 0 0-24m0 1a11 11 0 0 1 10.59 8.01 19.1 19.1 0 0 1-4.66 6.08c-.94.81-1.96 1.53-3.08 2.04-1.13.5-2.37.8-3.6.72a6.2 6.2 0 0 1-2.66-.76 20 20 0 0 0 5.68-4.58 10 10 0 0 0 2.31-4.17c.18-.79.2-1.6.04-2.4a4.4 4.4 0 0 0-1.08-2.11 4.33 4.33 0 0 0-2-1.19 5.25 5.25 0 0 0-2.33-.08A7.8 7.8 0 0 0 7.2 4.85a9.77 9.77 0 0 0-2.94 7.49 7.88 7.88 0 0 0 1.95 4.59 18 18 0 0 1-3.56.85A11 11 0 0 1 12 1m.07 2.22c.77 0 1.55.24 2.17.7.55.42.97 1.02 1.2 1.68.23.65.3 1.37.21 2.06a7.85 7.85 0 0 1-1.7 3.76 16.2 16.2 0 0 1-6.37 4.96c-.48-.42-.9-.92-1.2-1.48a6.6 6.6 0 0 1-.75-3.87c.12-1.32.58-2.6 1.2-3.79a7.9 7.9 0 0 1 3.02-3.42c.68-.37 1.45-.6 2.22-.6m10.83 7.3A11 11 0 0 1 3.52 19a20 20 0 0 0 3.63-1.2c.51.4 1.08.71 1.67.94a8 8 0 0 0 5.44-.04 13.3 13.3 0 0 0 4.64-2.95 20 20 0 0 0 4-5.22z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/elementor.svg��������������������������������0000664�0000000�0000000�00000000327�14753064456�0025617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.372 0 0 5.372 0 12c0 6.626 5.372 12 12 12s12-5.372 12-12c0-6.626-5.372-12-12-12M9 17H7V7h2Zm8 0h-6v-2h6Zm0-4h-6v-2h6Zm0-4h-6V7h6Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/elevenlabs.svg�������������������������������0000664�0000000�0000000�00000000165�14753064456�0025745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.604 0v24h4.931V0zm9.86 0v24h4.933V0z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/eleventy.svg���������������������������������0000664�0000000�0000000�00000004372�14753064456�0025464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.398 12V0h17.204v24H3.398zm13.17 6.07a1.1 1.1 0 0 0 .373-.107c.432-.213.68-.672.877-1.626.076-.372 1.195-6.168 1.209-6.263.026-.186-.008-.382-.084-.476a.3.3 0 0 0-.087-.064l-.06-.031h-.291c-.253 0-.298 0-.348.02-.113.039-.207.156-.255.316-.011.038-.168.881-.348 1.873l-.328 1.802-.046-.21c-.56-2.547-.764-3.452-.794-3.532a.4.4 0 0 0-.103-.16c-.105-.107-.117-.11-.567-.11-.411 0-.422 0-.5.074-.086.079-.122.216-.111.42.006.115.045.27.688 2.784.663 2.587.751 2.943.787 3.177.046.3-.05.713-.208.893-.032.037-.037.039-.084.032-.028 0-.12-.027-.204-.051-.268-.078-.362-.072-.462.028-.096.096-.137.248-.138.51 0 .256.028.34.159.473s.324.208.595.23c.164.012.22.012.33-.001zm-1.896-1.712a.3.3 0 0 0 .16-.192c.02-.058.022-.098.022-.356 0-.255-.003-.299-.021-.354-.04-.121-.136-.196-.278-.217-.041-.01-.2-.01-.355-.01-.365-.001-.378-.01-.446-.184-.068-.18-.096-.326-.113-.602a86 86 0 0 1-.012-1.94v-1.765h.35c.454 0 .507-.01.602-.113a.47.47 0 0 0 .102-.24 3 3 0 0 0 0-.534c-.026-.16-.099-.271-.211-.322-.057-.025-.065-.026-.45-.03h-.392l-.003-1.22c-.003-1.09-.005-1.227-.021-1.278a.38.38 0 0 0-.201-.247c-.052-.024-.072-.025-.32-.029-.27 0-.356 0-.429.038q-.13.062-.185.278c-.014.054-.032.346-.076 1.262l-.06 1.194s-.08 0-.18.01c-.206.01-.263.022-.327.086-.092.092-.12.19-.127.455-.01.334.02.487.115.588.075.081.134.1.345.106l.173.01v1.785c0 1.7.006 2.019.034 2.274.041.37.13.709.241.928.194.38.544.617.988.668h1.005l.07-.04zm-7.447 0c.098-.053.16-.154.2-.332.016-.077.018-.401.018-4.518 0-4.184-.001-4.44-.02-4.51-.05-.194-.19-.29-.378-.26-.035.01-.344.084-.686.175s-.684.18-.758.198c-.17.043-.214.062-.281.126-.105.098-.122.185-.122.606 0 .416.016.5.12.604.094.095.189.1.456.03.103-.026.193-.048.2-.048.01 0 .014.784.017 3.763.003 3.436.005 3.77.021 3.84.048.202.113.296.236.34.034.013.133.016.487.014.435 0 .445 0 .49-.027zm3.203 0c.092-.046.152-.135.197-.29l.024-.084.003-4.435c.002-3.194 0-4.456-.01-4.509-.033-.2-.145-.308-.322-.308-.066 0-.198.03-.857.204-.56.147-.799.214-.849.239a.34.34 0 0 0-.17.184c-.024.06-.024.071-.024.479 0 .415 0 .417.026.483a.4.4 0 0 0 .083.12c.1.1.172.105.456.034a6 6 0 0 1 .208-.05c.008 0 .012 1.202.014 3.791l.003 3.79.026.086a.5.5 0 0 0 .135.23c.078.062.085.063.57.06.414 0 .447 0 .487-.024"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/elgato.svg�����������������������������������0000664�0000000�0000000�00000001137�14753064456�0025100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.882 8.396.026.02 9.95 5.717a12.03 12.03 0 0 1-4.04 7.026A11.93 11.93 0 0 1 12.098 24a11.85 11.85 0 0 1-8.453-3.514A11.95 11.95 0 0 1 .143 12c0-3.204 1.244-6.219 3.501-8.485A11.85 11.85 0 0 1 12.097 0c2.44 0 4.785.733 6.783 2.119a12 12 0 0 1 4.628 6.308l-2.126 1.236a10 10 0 0 0-.262-.87c-1.354-3.83-4.98-6.405-9.023-6.405-5.28 0-9.575 4.313-9.575 9.612s4.295 9.612 9.575 9.612a9.46 9.46 0 0 0 5.66-1.865 9.6 9.6 0 0 0 3.43-4.737l.007-.041L9.59 8.305v7.225l4-2.313 2.06 1.18-5.996 3.47-2.12-1.213v-9.46L9.652 5.97l4.231 2.428z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/elixir.svg�����������������������������������0000664�0000000�0000000�00000000513�14753064456�0025116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.793 16.575c0 3.752-2.927 7.426-7.743 7.426-5.249 0-7.843-3.71-7.843-8.29 0-5.21 3.892-12.952 8-15.647a.397.397 0 0 1 .61.371 9.72 9.72 0 0 0 1.694 6.518c.522.795 1.092 1.478 1.763 2.352.94 1.227 1.637 1.906 2.644 3.842l.015.028a7.1 7.1 0 0 1 .86 3.4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/elm.svg��������������������������������������0000664�0000000�0000000�00000000454�14753064456�0024403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.986 12.806V23.2l-5.197-5.197zM6.796 6.01H17.19l-5.197 5.197zm9.275-1.12H5.677L.8.015h10.394zm7.116 7.117L17.99 6.81l-5.197 5.197 5.197 5.197zm.813-.813L12.806 0H24zM0 23.2V.813l11.194 11.194zm23.187.8H.8l11.193-11.194Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/elsevier.svg���������������������������������0000664�0000000�0000000�00000147425�14753064456�0025456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.687 11.326c.256-.137.405-.303.43-.497.042-.174-.116-.157-.153-.124-.145.116-.33.294-.509.414a2 2 0 0 0-.248.033c-.02-.009-.046-.042-.033-.054.161-.104.34-.207.455-.344.074-.086.041-.165-.103-.182-.162-.024-.352.042-.501.174-.253.215-.373.691-.397.993-.054.05-.07.05-.125.075a1.26 1.26 0 0 1 .133-.98c.025-.063.008-.162-.083-.191-.054-.02-.079-.009-.103.05-.124.355-.34.508-.642.732-.029.025-.302.174-.372.215-.24-.074-.51-.521-.737-.857a.21.21 0 0 0-.198-.086c-.497.053-.865.016-1.13-.373-.12-.161-.174-.19-.323-.05-.165.174-.33.307-.496.447-.087.054-.15.038-.186-.074A3.1 3.1 0 0 1 1.2 9.604c0-.149.017-.372.02-.517a1.3 1.3 0 0 0-.314-.211C.488 8.677.004 8.214 0 8.077c0-.033.025-.116.14-.182.609-.269 1.08-.041 1.263-.07.153-.013.203-.124.178-.344a1.2 1.2 0 0 1 .389-1.075c.207-.22.19-.464.14-.733-.024-.124-.053-.157-.178-.145-.33.075-.314.083-.376.373a1.5 1.5 0 0 1-.207.53c-.132.21-.31.388-.468.575-.053.074-.115.074-.194.024A1.084 1.084 0 0 1 .26 5.66c.053-.144.132-.297.219-.376l.041.017c0 .025 0 .058-.008.082l-.1.307C.29 6.05.31 6.389.55 6.695c.079.1.15.128.19.083.154-.153.311-.298.443-.464.166-.186.211-.413.166-.65a4 4 0 0 0-.046-.268c-.024-.128-.078-.12-.14-.042-.15.15-.22.27-.29.547A.2.2 0 0 1 .803 6a.3.3 0 0 1-.033-.145c.041-.248.099-.467.256-.629.104-.112.079-.174-.02-.203-.356-.099-.663-.198-.932-.53A.3.3 0 0 1 0 4.313c0-.07.037-.124.116-.182.314-.216.629-.439.94-.505.123-.025.19-.033.252-.042-.141-.438-.29-.964-.373-1.452 0-.1.07-.372.108-.451a.56.56 0 0 1 .277.037c.145.05.277.14.41.224.128.074.165.074.248-.042.145-.21.31-.397.53-.509.074-.037.124-.062.173-.062.07 0 .125.042.195.15.12.194.223.417.33.62.125.211.257.223.448.087.21-.14.401-.277.596-.439.182-.14.231-.14.43-.004.178.124.372.352.468.55.02.038.434-.186.446-.285.017-.178.067-.306.133-.451.087-.178.21-.228.323-.228.103 0 .298.116.442.207l.315.182c.165.091.174.091.273-.062.112-.174.207-.207.439-.207.455 0 .869.116 1.183.493.058.074.112.082.182.012.128-.132.248-.182.488-.182h.422c.096 0 .158.008.245-.116.115-.165.248-.327.434-.327.298 0 .687.418.886.778l-.104.054a2.1 2.1 0 0 0-.778-.488c-.182-.075-.26 0-.236.186.025.22.083.443.137.662a.8.8 0 0 0 .439.468l.012.074c-.033-.008-.075-.02-.124-.025a.9.9 0 0 0-.39.013c-.247.062-.475.17-.698.264-.112.054-.112.083-.017.174.124.116.24.249.38.352.402.302.8.24 1.242.07l.207-.07a.65.65 0 0 1 .538.182l.447.401c.14.137.174.257.083.427-.145.285-.307.575-.468.852a.3.3 0 0 1-.103.108c-.054-.042-.104-.145-.05-.236.198-.248.323-.596.364-.832.041-.232-.083-.34-.302-.281l-.186.07c-.079.029-.108 0-.124-.083-.03-.07-.067-.116-.091-.19-.05-.124-.125-.166-.228-.083a1.2 1.2 0 0 0-.43.414 1.57 1.57 0 0 0-.174.964c.004.041.037.07.062.095a.18.18 0 0 0 .083-.082c.058-.145.095-.29.12-.447.012-.087.024-.245.053-.323.021-.042.087-.025.125-.013.095.038.132.083.144.15-.186.235-.302.587-.426.901-.02.042-.1.096-.149.096-.058-.004-.136-.054-.153-.104-.074-.198-.207-.393-.26-.592-.137-.674-.178-.711-.207-.753A4.2 4.2 0 0 0 9.095 3.34c-.033-.033-.05-.07-.074-.099.037-.017.066-.05.103-.062q.193-.081.393-.149a.62.62 0 0 0 .356-.319c.046-.087.108-.173.157-.26.07-.124.062-.19-.029-.298a.64.64 0 0 0-.653-.203c-.253.062-.41.244-.489.484a.7.7 0 0 0-.041.27c0 .136.041.165.153.094.186-.153.393-.277.592-.41a1.1 1.1 0 0 1-.406.497c-.124.079-.248.145-.372.215-.104.075-.14.042-.174-.082-.029-.133-.017-.27-.017-.402a.88.88 0 0 0-.587-.881l-.327-.137a.31.31 0 0 0-.124.286c.025.36.078.62.14.927.058.124.195.173.336.198.082-.041.149-.157.037-.339l-.161-.319c-.017-.041-.038-.078-.05-.124-.004-.016-.012-.045 0-.066.02.008.041.008.083.05.207.223.372.476.48.79.041.124.004.174-.116.186-.273.025-.55.042-.815.1-.435.09-.58.248-.737.537-.066.125-.1.203-.103.278.153.012.327.004.575-.042a1.7 1.7 0 0 0 .596-.194c.116-.137.207-.273.38-.397.05-.038.166-.05.211-.025A2.28 2.28 0 0 1 9.55 4.56c.017.05.067.1.091.14.05.059.03.08-.041.075-.1-.029-.207-.054-.298-.09-.037-.017-.066-.075-.083-.117l-.09-.256c-.05-.104-.075-.104-.179-.066-.053.02-.111.04-.198.082-.075.03-.112.042-.129-.041-.024-.124-.057-.248-.086-.36-.05-.137-.104-.166-.236-.1-.249.129-.43.32-.555.567-.116.24-.161.406-.054 1.043.025.124.125.277.24.315l1.076.33c.054 0 .087.063.021.104-.132.091-.277.17-.414.257-.07.041-.107.02-.14-.042a.84.84 0 0 0-.443-.405c-.07-.033-.108-.02-.137.054-.05.116-.103.285-.149.405-.025.062-.054.087-.124.042-.306-.257-.629-.27-1.005-.22-.187.025-.274.075-.228.26.103.518.554.758.94.924a.26.26 0 0 0 .132-.104c.058-.083.041-.165-.042-.24-.149-.128-.463-.277-.62-.418-.025-.082.153-.157.248-.095.281.128.496.36.72.58.116.111.17.099.207-.063.041-.124.083-.314.12-.455.02-.074.066-.05.083-.004.029.108.062.248.062.372 0 .133-.046.249-.083.373-.025.124-.12.19-.224.165-.475-.045-.835.178-1.13.187a.9.9 0 0 1-.276-.075c-.104-.083.05-.09.082-.09.124 0 .31 0 .41-.055a.6.6 0 0 0-.128-.12c-.265-.215-.563.013-.79.129-.129.07-.137.086-.083.223.082.207.231.286.434.286.116 0 .228.016.348.012a.4.4 0 0 0 .165-.041c.153-.058.29-.133.43-.195.174-.025.17.062.092.15l-.352.214c-.037.02-.079.033-.104.058-.05.037-.111.1-.103.124a.26.26 0 0 0 .132.116c.166.05.331.075.489.112.256.05.364-.02.434-.273.037-.14.083-.273.149-.402.041-.082.091-.09.14-.008.175.323.357.637.543.952.033.07 0 .103-.066.095a24 24 0 0 1-1.2-.149c-.137-.02-.27-.108-.406-.165-.207-.096-.414-.183-.65-.174-.202.004-.318.124-.248.318.091.278.195.563.306.84.079.19.265.261.468.278.095.012.062-.054.037-.1l-.33-.716c-.042-.12-.01-.136.057-.037.182.273.372.534.538.811.1.174-.025.224-.149.228-.418-.042-.799-.186-1.2-.34-.041-.016-.1-.103-.087-.14.075-.07.166 0 .248 0 .096.016.137-.025.1-.1a.38.38 0 0 0-.203-.186 2.5 2.5 0 0 0-.596-.215c-.124-.025-.207.03-.182.14.033.146.1.274.174.423.02.041.02.1.008.14-.074-.004-.165.021-.476-.111-.31-.128-.314-.215-.314-.596 0-.083 0-.244.016-.319.033-.103.042-.124.137-.107.323.066.65.153.968.306.095.041.186.124.286.161.082.03.124 0 .111-.082a.29.29 0 0 0-.182-.249c-.339-.144-.678-.306-1.018-.442-.082-.034-.111-.07-.066-.158.137-.223.207-.484.15-.765 0-.02.024-.05.049-.075a.21.21 0 0 1 .153.19c.025.24.186.406.343.568.319.33.319.33.766.223.058-.008.1-.05.149-.083-.042-.033-.083-.09-.14-.116-.084-.041-.175-.066-.266-.103-.298-.112-.385-.323-.285-.637a11 11 0 0 0 .277-.865c.033-.137.041-.281.05-.426 0-.083.062-.083.111-.091l.65-.042c.166-.012.352-.207.418-.318l.215-.352a.45.45 0 0 0-.443-.066c.05-.162.116-.315.116-.468 0-.1-.025-.22-.066-.323-.041-.099-.112-.115-.194-.053-.158.132-.29.29-.34.504-.05.216-.14.609-.095.679.1-.074.232-.174.319-.199a.2.2 0 0 1 .149.025 2.1 2.1 0 0 1-.48.331c-.12.054-.166-.016-.145-.132.14-.538.054-.58.008-.844a3.1 3.1 0 0 0-.401-.927c-.058-.075-.15-.05-.273.1-.199.24-.249.442-.352.856l-.025.082-.14.125-.063-.07c.054-.191.112-.303.112-.456a.53.53 0 0 0-.207-.422c-.153.1-.294.223-.33.29a.41.41 0 0 0 .007.471c.158.278.133.555.083.882l-.041-.013a3.7 3.7 0 0 0-.116-.629c-.033-.132-.12-.244-.19-.36-.07-.103-.133-.327-.075-.418.083-.144.344-.219.443-.351.103-.158.054-.224.186-.364.079-.096.248-.29.372-.224.373.186.77.228 1.188.174.178-.025.215-.02.265-.199.041-.149.062-.05.21-.099.253-.083.386-.31.386-.58 0-.148.008-.301-.009-.454-.012-.133-.062-.261-.103-.381-.033-.079-.087-.062-.124-.004-.104.136-.277.405-.373.554a3 3 0 0 0-.144.265c-.025.07-.058.087-.12.02a1.4 1.4 0 0 0-.22-.19c-.136-.087-.149-.36-.095-.533.058.033.1.099.137.186.05.116.074.248.165.29.12.061.24-.187.224-.356a.3.3 0 0 0-.042-.125c-.132-.235-.434-.426-.62-.426-.216 0-.352.265-.265.517.025.067.05.116.083.178-.51.27-.646.439-.849.675-.025.029-.05.112-.025.153.096.182.058.244-.136.352-.087.05-.207.095-.298.124-.012.008-.037-.013-.062-.017a.1.1 0 0 1 .025-.05c.124-.277.26-.541.376-.823.124-.302-.149-.583-.393-.678-.161-.063-.29-.025-.397.12-.27.322-.327.848.05 1.344.058.083.04.116-.054.125-.215.016-.43.04-.654.053a.87.87 0 0 0-.662.352c-.05.075-.116.091-.186.041-.17-.103-.315-.078-.493.025-.29.153-.629.273-.815.273-.029 0-.066-.024-.09-.05.016-.024.04-.061.103-.082.177-.041.322-.087.48-.132.029-.03.04-.1.057-.129-.028-.041-.09-.095-.136-.1a2.2 2.2 0 0 0-.451 0c-.393.038-.683.22-.931.452-.116.116-.124.236 0 .331.29.207.6.414.993.31.273-.087.443-.29.62-.488.15-.157.332-.343.505-.145.253.29.303.592.716.538.158-.016.224-.07.265-.22l.033-.177c.013-.116-.05-.174-.161-.128-.075.024-.14.066-.215.082-.042.013-.087-.004-.137-.016.004-.042.013-.1.042-.124.074-.05.165-.091.248-.129.31-.082.604-.144.91-.206a.3.3 0 0 1 .095 0l-.029.086c-.111.257-.26.336-.463.385a.5.5 0 0 0-.112.199c-.128.414-.054.844.224 1.142.099.112.223.203.351.281.216.124.273.331.352.55q.074.206.166.41a1.4 1.4 0 0 0-.418.447c-.042.042-.075.025-.1-.025l-.12-.293c-.107-.261-.29-.427-.579-.451-.103-.009-.207-.025-.306-.038-.12-.012-.199.042-.24.178-.162.497-.008.927.467 1.192-.38.095-.695.248-.89.513.021.075.137.174.286.236.373.153.753.137 1.105.017.207-.075.215-.025.253.124l.103.463c.025.112-.037.174-.14.137-.568-.166-1.242-.439-1.73-.766a2.6 2.6 0 0 0-.642-.19c-.074.041-.136.095-.202.083a3.6 3.6 0 0 1-.613-.216c-.1-.058-.103-.087.02-.103.191 0 .539.083.717.083.173-.054.173-.083.066-.158-.418-.33-.89-.252-1.357-.173-.166.033-.178.111-.083.244.604.683 1.05.678 1.787.592.48.306.96.579 1.52.757l.011.083a8 8 0 0 0-1.142.165c-.182.037-.219.149-.12.315.15.24.385.351.654.417a.85.85 0 0 0 .58-.037c.223-.103.368-.29.579-.405.124-.067.33.008.455.041.19.062.372.145.567.174.77.103 1.589.174 2.305.116a4 4 0 0 0-.207.484c-.037.1-.004.124.1.116a.44.44 0 0 0 .36-.207c.012-.116.012-.22.036-.335.013-.062.03-.15.07-.158.03-.004.208.025.187.075a7 7 0 0 1-.19.496c.066.013.136.025.206.025.29 0 .336-.041.323-.33a1.2 1.2 0 0 0-.037-.245c-.037-.215.008-.364.194-.463.183-.091.373-.062.555-.042a3.4 3.4 0 0 1 1.568.708c.228.182.03.434.03.778 0 .215-.042.438-.038.55.008.178.083.273.149.323.199.153.418.306.629.443.215.14.323.227.58.314a.6.6 0 0 0 .181.013.7.7 0 0 0-.012-.265c-.124-.083-.298-.124-.497-.19-.037-.013-.074-.063-.095-.108a.4.4 0 0 1 .145-.083l.323-.07a.2.2 0 0 0 .082-.07c-.016-.03-.04-.067-.066-.071-.132-.041-.306-.07-.418-.1-.041-.012-.062-.049-.095-.086a.4.4 0 0 1 .157-.083l.331-.041a.17.17 0 0 0 .087-.054c-.012-.033-.029-.075-.053-.087-.07-.033-.41-.157-.447-.195-.03-.028-.038-.07-.05-.124a.3.3 0 0 1 .157-.033l.277.004a.18.18 0 0 0 .112-.053.25.25 0 0 0-.074-.087c-.133-.083-.182-.141-.331-.207-.07-.042-.104-.083-.116-.17a.5.5 0 0 1 .186-.008c.1.025.153.058.26.074a.3.3 0 0 0 .117-.012.12.12 0 0 0-.03-.083c-.04-.041-.095-.062-.144-.1-.075-.049-.203-.173-.277-.235-.025-.02-.013-.083-.017-.104l.083.005c.1.02.248.062.33.074.15.029.13.008.067-.1-.091-.082-.186-.136-.273-.231-.025-.033-.017-.087-.013-.132.141.008.286.074.414.074a.14.14 0 0 0 .021-.074 2 2 0 0 0-.103-.249c-.038-.095.012-.132.082-.103.1.041.257.124.364.149.042.012.096 0 .15-.02-.05-.1-.108-.179-.174-.278-.013-.025 0-.062.02-.091.17.05.344.166.497.207.07.029.116 0 .132-.033.013-.042-.111-.166-.103-.215.004-.033.012-.042.029-.062l.29.09c.21.054.33.075.364.025.04-.012-.005-.111-.067-.227.166-.013.187.066.48.124.112.029 1.664-.19 2.293-.385a8 8 0 0 0 .77-.314l.074.016c.178.455.554.596.94.637.11.013.23.021.35.025.113 0 .137-.029.104-.14a2 2 0 0 0-.575-.977l-.248-.153c-.108-.112-.095-.24.02-.331.2-.133.464-.26.663-.385.29-.186.389-.472.372-.774a.26.26 0 0 0-.107-.202.32.32 0 0 0-.15.103c-.078.165-.157.302-.227.447-.054.029-.112.041-.161.062-.013-.05-.042-.1-.03-.149.088-.257.315-.463.464-.629.062-.103-.029-.145-.074-.137-.166.038-.348.1-.472.24a3.3 3.3 0 0 0-.654 1.354c-.029.128-.083.173-.124.293-.054.182-.05.224.108.336.227.148.525.285.74.438.087.095.042.133-.05.128a.86.86 0 0 1-.62-.277c-.083-.09-.153-.149-.248-.161-.224.058-.534.149-.766.182-.132.025-.236.078-.306.203-.046.103-.14.124-.248.082-.166-.045-.331-.103-.497-.14a1.9 1.9 0 0 0-.828.058c-.111.016-.136-.009-.103-.116.029-.137.074-.27.1-.402.003-.058.012-.144-.042-.173-.054.024-.132.037-.157.074-.087.128-.153.265-.236.406-.054.111-.075.111-.19.062a2 2 0 0 1-.468-.286c-.112-.178-.232-.327-.29-.48-.02-.041.042-.074.095-.074a6 6 0 0 1 .385.33c.075.083.1.166.15.274.012.025.132.02.152-.025a1 1 0 0 0 .054-.19.59.59 0 0 0-.136-.542c-.183-.187-.307-.224-.56-.398-.314-.215-.36-.202-.475.009a1.23 1.23 0 0 0-.153.579c.083.505.203.712.815 1.026a.17.17 0 0 1-.05.083c-.04.033-.062.054-.132.054-.215-.009-.517-.013-.753-.033q-.1-.007-.124-.063a3.1 3.1 0 0 1 .273-2.234.37.37 0 0 1 .149-.161c.128-.067.33-.153.455-.207.075-.033.112-.009.145.066.054.199.074.34.09.509.01.103.013.207.055.227.099.042.186-.04.236-.124a1.1 1.1 0 0 0 .099-1.005c-.013-.033.016-.1.054-.12.422-.17.815-.344 1.241-.51.24-.012.546.013.972.084.07.008.22.132.373.219-.195.1-.48.306-.679.496-.054.058-.124.133-.074.29.165-.008.248-.054.372-.09.19-.055.31-.084.464-.084a1 1 0 0 1 .124.017.23.23 0 0 1-.058.128c-.054.05-.14.042-.203.075-.062.041-.124.103-.083.178.03.05.112.107.17.099a2.5 2.5 0 0 0 .588-.1c.09-.074.438-.53.24-.57-.112-.025-.352-.042-.456-.096a.2.2 0 0 1 .125-.14c.107.016.231.05.397.066a2.4 2.4 0 0 0 .815-.037c.112-.042.149-.083.112-.153a1.28 1.28 0 0 0-.758-.663c-.149-.04-.33-.008-.484-.008l-1.332-.012c-.03 0-.062-.025-.091-.042.025-.02.05-.045.074-.058.124-.074.27-.136.393-.223a.87.87 0 0 0 .365-.55.23.23 0 0 0 0-.129c-.125-.455-.373-.786-.89-.844l-.257-.041c-.095-.008-.132.033-.132.12 0 .161.008.248 0 .414 0 .082.041.111.137.124a3.2 3.2 0 0 1 .703.203c.137.053.165.136 0 .277l-.372.265c-.067.041-.096.008-.104-.054-.008-.1-.008-.207-.025-.302a.2.2 0 0 0-.054-.095.27.27 0 0 0-.198.165 2 2 0 0 0-.104.385.41.41 0 0 1-.285.331c-.075.02-.14-.008-.128-.079q.018-.123.053-.248c.12-.29.182-.538.158-.81a6 6 0 0 1-.042-.572.17.17 0 0 1 .124-.182c.224-.087.435-.174.67-.248.08-.03.146.004.208.082l.471.555c.125.132.158.128.265-.02.1-.141.207-.27.364-.357.083-.041.083-.12-.012-.157-.178-.066-.356-.103-.542-.165-.042-.013-.087-.013-.133-.03-.029-.012-.066-.049-.066-.074s.037-.062.066-.074c.34-.12.621-.232.923-.348.083-.037.124-.103.112-.19-.008-.112-.041-.207-.058-.315-.017-.099-.083-.174-.186-.186-.414-.041-.662.075-.944.364a.26.26 0 0 0-.066.228.3.3 0 0 0 .128-.004 1.7 1.7 0 0 0 .443-.187c.075-.082.133-.165.174-.165.025 0 .07.103.083.14-.042.05-.083.1-.41.24a9.5 9.5 0 0 1-1.812.625c-.083.009-.079-.045-.058-.082.116-.203.248-.414.376-.63.124-.074.158-.04.112.075a2 2 0 0 1-.137.257c-.012.083.025.103.075.095a.695.695 0 0 0 .513-.617c0-.103-.05-.14-.157-.136-.157.012-.331.025-.484.07-.29.075-.464.277-.559.542a3 3 0 0 0-.091.377c-.025.136-.14.186-.26.252-.203.124-.307.1-.48.133a3 3 0 0 0-.435.099c0-.05-.013-.095 0-.124.1-.157.186-.31.29-.455.144-.211.107-.331-.125-.414a.86.86 0 0 0-.993.347c-.124.199-.215.435-.302.65-.054.128 0 .207.137.236.21.037.463-.041.654-.095-.013.062-.017.302-.038.351l-.124.27c-.078.132-.165.177-.31.107a7 7 0 0 1-.65-.352c-.248-.145-.488-.248-.765-.248a.4.4 0 0 1-.083-.008c-.091-.02-.095-.05-.042-.108.07-.07.075-.14.034-.227l-.286-.53a1.5 1.5 0 0 1-.136-.31c.07-.013.33.074.33.124.021.29.108.496.261.678.116.116.224.042.236-.074.02-.153-.186-.402.083-.973.116-.256.472-.695.703-.695.124 0 .228.054.302.236.042.083.07.282.108.364.033.083.074.124.165.116.224-.029.534-.165.787-.198.161-.025.285.376.364.52.124.216.182.402.323.17.24-.33.351-.703.608-.819a1.8 1.8 0 0 1 1.043-.178c.111.013.144.054.12.166-.021.066-.025.136-.042.207-.025.078.046.107.133.041.12-.07.207-.165.29-.273.214-.232.43-.348.852-.348.198 0 .351.042.53.104.136.05.157.07.12.207l-.12.397c-.042.182-.013.207.148.298.141.083.253.14.34.248a.3.3 0 0 0 .178-.062 2.14 2.14 0 0 1 .765-.865c.133-.074.166-.066.22.062.111.282.173.526.194.79.149-.173.323-.36.447-.496.447-.422.89-.418 1.49-.269.148.042.033.19-.054.306l-.116.174c-.037.062-.066.066-.116.013-.075-.087-.149-.24-.224-.315-.136-.136-.376-.058-.542.042a2.2 2.2 0 0 0-.802.823 4.4 4.4 0 0 1-.704.832c-.107.041-.107.037-.083-.075a2.96 2.96 0 0 0 .489-1.535.37.37 0 0 0-.286.062c-.414.232-.62 1.055-.678 1.606-.013.115-.013.207-.116.264-.174.1-.24.141-.414.22-.041.008-.066 0-.104-.004.083-.365.025-.621-.186-.965-.037-.066-.083-.099-.161-.074-.041.025-.083.058-.178.132a1.56 1.56 0 0 0-.488 1.196c0 .083.082.083.14.042a.6.6 0 0 0 .158-.19c.103-.174.19-.357.29-.53.016-.042.065-.07.103-.083.02.041.02.087.012.124l-.074.331a1.03 1.03 0 0 1-.331.455c-.03.042-.05.116.033.124.356.017.562-.024.869-.186.322-.165.538-.302.678-.285.095.012.58.153.621.186-.025.05-.062.066-.091.1-.05.04-.286.169-.389.256-.166.136-.223.198-.19.476.016.124.037.24.066.36.012.037.041.09.066.099.041 0 .083-.033.108-.062.136-.166.264-.348.401-.513a.3.3 0 0 1 .083-.05c0 .033.008.062 0 .083-.03.203-.133.356-.257.505l-.083.103c-.107.153-.115.178-.008.331a.73.73 0 0 1 .104.58c-.03.144-.075.36-.104.57-.26.12-.525.29-.745.44-.14.123-.165.223-.165.252.066.082.128.095.256.148.182.058.522-.012.584-.206a.6.6 0 0 0 .041-.211c.066.012.124.012.14.066.067.207.125.347.257.484a.7.7 0 0 1-.099.182c-.078.128-.145.24-.256.215-.042-.004-.087-.016-.137-.016-.083 0-.165 0-.153.149.016.19.041.277 0 .471-.025.108-.058.224-.166.22-.26-.021-.43-.211-.682-.207a1 1 0 0 1-.476-.083c-.133-.07-.228-.145-.29-.182a69 69 0 0 0-3.1.58c-.094.02-.09.082-.107.181-.05.228-.136.451-.174.679-.008.037.042.083.067.116.024-.025.062-.042.087-.075.053-.078.09-.17.153-.248.107-.116.389.008.438.165.042.096-.09.141-.082.249.008.09.14.174.14.29 0 .103-.041.17-.058.223.39.248.484.455.497.778.012.1.012.149.066.207.054.053.14.132.178.182.182.21.348.546.472.58.062.02.219.032.339.02l.025.066a.5.5 0 0 1-.248.244c-.286.091-.427-.335-.58-.58a2 2 0 0 0-.24-.318c-.124.137-.33.687-.314.948.083.351.29.7.426.951.095.158.281.212.463.282.154.054.265.083.422.037.083-.02.112-.025.15-.054l-.005-.318c.042-.58.133-1.159.17-1.655 0-.133.1-.356.269-.472a.54.54 0 0 0 .24-.5.4.4 0 0 1 .041-.208c.058-.116-.053-.116-.165-.132-.124-.02-.153-.066-.091-.178.116-.195.281-.36.414-.546.082-.133.124-.228.153-.307-.033-.16-.021-.4.14-.41.526-.061.745-.016 1.08.237a.24.24 0 0 1 .025.124c0 .041.095.074.273.252.137.128.27.488.038 1.043.115.07.111.178.099.302-.008.108.025.124.124.161.124.042.19.116.294.373.09.248.36.898.517 2.49-.029.502-.116.87-.215 1.28.107.765.227 1.704.323 2.991.078 1.217.099 1.842.124 2.342.215.017.281.062.327-.12l.041-.17c.041-.12.161-.078.166-.012l.132.39c.029.11.062.181.103.289.145.198.207.025.207-.12.017-.124.017-.228.017-.34.025-.144.1-.153.153-.053l.19.45c.07.158.145.2.174.104.025-.128.03-.356.025-.538-.029-.103-.075-.215-.091-.306 0-.124.1-.1.124-.062a14 14 0 0 1 .675.881c.124.075.198-.053.165-.103-.008-.05-.07-.112-.07-.211.016-.157.165-.087.198-.03.137.137.228.315.307.46a.3.3 0 0 0 .124.062.24.24 0 0 0 .037-.145c-.008-.05-.066-.165-.083-.219.058-.095.174.025.211.062.042.042.083.112.137.199.074.116.198.215.471.252.005.025.017.058.017.083-.037.025-.1.054-.265.083a3.4 3.4 0 0 1-1.034.02 1.2 1.2 0 0 0-.762.166c-.165.095-.33.083-.525.074-.373-.016-.745-.016-1.126-.024-.786-.021-1.179.136-2.069.182-.29 0-.893-.15-.893-.335 0-.129.074-.236.074-.303 0-.082-.017-.103-.091-.124-.633-.111-1.258.033-1.833.141-.488.075-.745-.004-1.002-.207a1.3 1.3 0 0 1-.355-.376 5 5 0 0 0-.99-.94c-.413-.33-.939-.93-1.266-1.345-.074-.086-.202-.509-.248-.629a1.3 1.3 0 0 1-.058-.546c.05-.041.112-.09.157-.095.278-.008.621-.14.634-.223.029-.062-.017-.116-.07-.1a1.6 1.6 0 0 1-.489 0 .44.44 0 0 1-.22-.09c.05-.063.083-.108.137-.137a1.45 1.45 0 0 0 .646-.249.16.16 0 0 0-.017-.082c-.182-.009-.323-.009-.525-.058a.5.5 0 0 1-.199-.116.32.32 0 0 1 .149-.124c.232-.075.401-.186.559-.331l-.004-.091a3 3 0 0 1-.63-.066c-.095-.05-.103-.058.005-.174.149-.038.422-.062.57-.112.112-.058.092-.153-.02-.186a3.4 3.4 0 0 1-.538-.058c-.112-.1-.124-.108.02-.174l.477-.1c.182-.061.153-.177 0-.223-.145-.016-.245-.05-.39-.074-.19-.095-.186-.104-.032-.166l.302-.082c.082-.021.165-.054.182-.116a.1.1 0 0 0-.009-.062c-.128-.038-.389-.013-.504-.05-.042-.008-.083-.054-.108-.108l.112-.062a1.7 1.7 0 0 0 .41-.157.4.4 0 0 0 .045-.103.3.3 0 0 0-.083-.042 4 4 0 0 1-.385-.132c-.082-.104-.078-.124.033-.17l.216-.058a1.4 1.4 0 0 0-.108-.215.2.2 0 0 0-.074-.074c-.125-.075-.303-.15-.435-.236-.248-.153-.509-.302-.703-.497a1.6 1.6 0 0 1-.522-.852 1.8 1.8 0 0 1-.004-.63c.025-.156.112-.322.195-.47.033-.055.057-.104.024-.15a3.3 3.3 0 0 0-.384-.414.7.7 0 0 0-.245-.124c-.492-.087-.794-.186-1.018-.157a.8.8 0 0 0-.19.285c.042.166.124.423.128.634.182.02.398.082.621.206.178.116.22.178.29.398.153.496.194 1.13.302 1.808.095.645-.244 1.18-.898 1.204-.356.017-.646-.054-.74-.294-.117-.339-.204-.625-.315-.964a7.4 7.4 0 0 0-1.449.513c-.434.207-.79.406-1.25.592-.872.36-1.836.58-2.701.58-.455 0-.964-.092-1.316-.232-.315-.125-.426-.253-.497-.65a3.8 3.8 0 0 1-.016-1.018c.041-.331.095-.563.323-1.183.099-.274.227-.402.438-.51a2.3 2.3 0 0 1 1.142-.227c.137.008.315.029.439.083.248.09.285.29.294.538 0 .145.008.29-.005.434-.012.116-.008.162-.008.207.315.046.973.029 1.283-.041.256-.054.36-.095.828-.315.322-.145.76-.472 1.27-.736zm9.906 5.532c.03.062.1.372.1.48 0 .252-.021.484-.05.877-.042.513.012 1.035-.058 1.54-.03.248-.091.633-.07.972.004.136.024.174.103.19.248.058.414.083.538.083.38 0 .629-.174.596-.385a5.2 5.2 0 0 1-.178-1.423l.1-.009c.14.58.26.865.301 1.167.05.273 0 .741.054.981.637.07 1.399.008 1.63-.041.058-.522.042-1.056-.186-1.254a6 6 0 0 0-.505-.385 2.9 2.9 0 0 1-.678-.753c-.273-.43-.348-.567-.588-.985-.223-.389-.372-.724-.525-.952a1.7 1.7 0 0 0-.22-.29 3 3 0 0 0-.58-.107c-.268-.029-.446-.058-.6-.227-.131-.133-.185-.24-.107-.418.042-.096-.012-.162-.082-.24-.08-.1-.058-.207.04-.282.237-.231.456-.347.766-.43l-.05-.215c-.123.016-.26.054-.508.054-.344 0-.654-.141-.778-.592-.046-.162-.248-.617-.306-.82-.042-.124.004-.277.062-.455-.108-.132-.199-.281-.29-.405-.186-.079-.41-.157-.559-.34-.062-.074-.09-.078-.144-.04-.05.036-.062.09-.133.152-.066.058-.203.062-.33.008a.31.31 0 0 1-.183-.302c.013-.165.095-.31.02-.376-.127-.137-.247-.29-.094-.397.041-.038.136-.03.194-.058a.414.414 0 0 0 .199-.464c-.033-.136-.108-.198-.244-.21-.195-.013-.282-.113-.282-.24 0-.166.145-.237.278-.208a.4.4 0 0 1 .173.083c.013.062.042.149.091.14.224-.024.398-.256.398-.475 0-.075-.05-.112-.195-.079a6 6 0 0 0-.923.253c-.182.062-.207.207-.107.372.033.037.058.083.082.124.042.066.025.116-.04.153l-.084.062c-.099.075-.111.158-.05.27.017.04.042.07.075.099.075.066.075.124.004.207a.31.31 0 0 0-.066.335c.029.095.104.633.104.736-.005.278.05.555.033.815-.013.19.082.356.264.563.2.22.344.418.613.679.318.302.492.662.521 1.105.013.207.112.281.31.389.419.116.563.351.613.67.083.567-.194 1.117-.703 1.068-.261-.025-.39-.182-.39-.319 0-.145.075-.29.195-.331.02-.008.095 0 .112 0a.3.3 0 0 1 .012.091c0 .037-.05.058-.066.132-.012.05-.012.15.037.211.054.07.15.096.249.062.115-.037.194-.136.248-.24.236-.426.116-.93-.335-1.042-.145-.042-.352-.062-.485.016-.28.174-.52.273-.757.489a.18.18 0 0 0-.058.136 23 23 0 0 0 .199 2.814c0 .203.149.455.207.488.165-.12.207-.24.352-.467.07-.042.103-.017.124.045-.004.211-.046.414-.021.596.012.054.074.103.116.14.1-.09.103-.227.145-.33.111-.116.136.012.14.045-.008.137 0 .26.013.331.004.054.054.066.1.079.12-.24.272-.455.467-.588.116-.083.19-.012.124.104a3 3 0 0 0-.265.699.4.4 0 0 0 .116-.012c.025-.009.062-.017.074-.083.083-.207.129-.232.224-.083.041.14.103.24.186.281.124-.033.132-.182.182-.29.132.01.14.154.207.224.045.037.422.05.492.042l-.012-.22c-.008-.438 0-.79.029-1.225.033-.455.083-.922.108-1.324.016-.33.058-.836.082-1.229zM22.792 8.4a8 8 0 0 0-.625-.041c-.091 0-.34 0-.348.128 0 .037.05.103.108.14.302.207 1.146.245 1.49.187a.6.6 0 0 0-.03-.253c-.082-.252-.393-.475-.678-.567a2.3 2.3 0 0 0-.919-.033l-.058-.153c.1-.447.087-.86.025-1.187a.96.96 0 0 0-.182-.414c-.058-.083-.124-.079-.198-.017-.05.042-.1.096-.187.207-.285.348-.273.58-.223 1.1.033.026.07.05.165.05.091 0 .133-.04.145-.165.009-.174.05-.356.075-.517.041.012.116.062.124.09.016.27-.07.551-.137.804.017.029.215.115.186.198-.024.062-.33.14-.546.157a1.1 1.1 0 0 0-.509-.417c-.124-.05-.26-.091-.157-.174l.166-.066c.29-.12.194-.286.182-.567-.013-.108-.054-.137-.153-.133a.8.8 0 0 0-.36.083c-.216.132-.381.352-.538.53-.03.029-.091.016-.141.016.083-.26.19-.546.273-.778.029-.082.066-.165.157-.145.447.104.902.017 1.217-.297.132-.141.132-.207-.037-.327a1.05 1.05 0 0 0-.952-.207c-.137.054-.228.132-.248.273-.013.083.401-.033.546-.02.041.003.07.04.1.061-.266.116-.572.174-.828.248-.083.021-.116 0-.129-.082a.36.36 0 0 1 .129-.364c.194-.166.347-.36.389-.621.024-.14-.092-.352-.154-.472-.008-.033.009-.058.013-.083a1.8 1.8 0 0 1 .525.249 1.17 1.17 0 0 0 .815.902c.145.05.294.103.452.149.14.041.248.004.24-.15l-.009-.206c.124-.054.265-.095.298-.091.236.033.476.149.72.227.166.083.083.141-.033.125-.182-.03-.36-.083-.534-.125-.111-.024-.202.025-.219.133.074.132.414.29.538.34.182.065.869.144.86-.042a2.4 2.4 0 0 0-.082-.546c-.042-.154-.174-.24-.319-.278a3.7 3.7 0 0 0-.918-.107.8.8 0 0 0-.331.107l-.038-.202c-.066-.278-.198-.344-.405-.414.012-.083.012-.137.012-.224.182-.103.406-.277.493-.422-.075-.07-.207-.107-.278-.132-.281-.1-.31-.207-.5-.29a1.2 1.2 0 0 0-.447-.112c-.14-.004-.331.034-.373.087-.02.038 0 .096.083.153.124.096.385.166.513.257.083.046.042.066-.012.074a1.3 1.3 0 0 1-.505-.144c-.095-.05-.124-.091-.194-.116-.125-.042-.145-.008-.228.136-.062.104.012.158.1.207.297.166.517.26.893.302.041.042.05.112.062.195-.372-.05-.496-.054-.728-.137-.368-.198-.662-.356-1.018-.471-.066-.03-.091-.07-.017-.116.373-.224.729-.497 1.105-.704.054-.029.14-.016.207-.004.182.033.244.091.426.145.108.041.211.07.232-.03.054-.272.14-.475.22-.59.165-.253.4-.386.711-.58.116-.393.497-.795.633-.795.373 0 .745.675.82.927.05.182-.249.34-.05.34.174 0 .335.029.335.178 0 .26-.074.525-.207.715-.14.19-.29.398-.48.526l.012.066c.323.24.675.414.675.778 0 .195-.054.331-.166.426-.086.075-.157.15-.148.261.012.252.028.393.012.641-.012.166-.517.199-.588.273a2.07 2.07 0 0 1-.14 1.258l.103.19c.513.36.58.688.654.969-.14.137-.373.252-.455.252-.331 0-1.064-.248-1.209-.269-.058.104-.024.2.05.406.066.186.19.314.19.488 0 .083-.012.215-.248.253a1.66 1.66 0 0 1-1.105-.302c-.066-.038-.124-.083-.19-.112-.112-.062-.252-.017-.29.112l-.074.248c-.042.136-.112.149-.298.112-.526-.112-.77-.679-.77-1.18.025-.103.108-.062.124-.012.033.244.141.48.22.678.099.19.223.294.43.32.041 0 .1-.08.149-.166.112-.236.215-.394.182-.67a.7.7 0 0 0-.112-.32c-.033-.04-.087-.07-.149-.124.03-.045.075-.095.112-.082.232.082.406.082.55.004.091-.05.133-.112.195-.19a8 8 0 0 1 .799-.162c.372 0 .703.05.98.174zM8.628 17.479c.198 0 .438.099.434.314l-.041.108a.1.1 0 0 1-.05-.013c-.074-.161-.194-.252-.389-.215a.84.84 0 0 0-.455.257c-.079.082.083.132.182.186l.207.124c0 .108-.282.894-.14.919.355.062.827-.427.876-1.118-.012-.248.129-.372.402-.463.323-.124.476-.269.422-.62-.025-.175.074-.125.17-.27l.107-.116c.017.05.054.166.041.216-.074.285-.016.509.125.765l.264.687c.063.066.12.012.183.083.227.46.484 1.146.831 1.44.286.236.588.65.857.898.157.14.265.492.463.558.14.05.137.124.116.253-.025.157.041.186.1.186.095-.012.186-.037.285-.041.215.045.165.19.008.215-.107.012-.21-.009-.318-.009a.6.6 0 0 0-.112.042.23.23 0 0 0 .058.107c.174.096.298.108.467.145.033 0 .058.025.096.037-.013.03-.05.096-.083.112a.7.7 0 0 1-.19 0c-.154-.033-.294-.1-.44-.165-.049-.017-.082-.07-.127-.104-.038-.016-.083-.025-.125-.037 0 .05-.016.095-.012.137.033.066.103.182.074.206-.012.021-.111.083-.14.067-.124-.058-.224-.199-.34-.265-.148-.095-.285-.095-.426.004-.145.1-.273.186-.41.265-.169.111-.351.29-.554.29-.112 0-.389-.17-.513-.208-.232-.074-.306-.082-.554-.136-.207-.05-.39.029-.6.1-.257.078-.538.111-.816.16-.157.03-.339 0-.504-.008-.249-.008-.489-.029-.733-.025-.165 0-.34.03-.496.083a.9.9 0 0 1-.22.033.56.56 0 0 1-.322-.099.47.47 0 0 0-.352-.066c-.116.025-.344.066-.439-.02-.116-.117-.393-.348-.55-.32-.493.083-.728.365-1.208.236-.34-.086-.563-.165-.894-.057-.083.033-.298-.017-.385-.005-.124.017-.166-.008-.15-.132l.013-.066c.021-.128-.103-.224-.227-.178-.137.041-.215.182-.344.248-.236.116-.455.083-.711-.016-.174-.075-.352-.042-.518.041-.107.058-.281.31-.397.31-.041 0-.103-.066-.124-.124v-.12a.8.8 0 0 1 .273-.252 1.55 1.55 0 0 1 .944-.124c.149.024.31.041.45-.017.112-.05.228-.058.332-.112.186-.099.347-.186.558-.111.153-.07.236-.12.315-.236.037-.186-.03-.38.016-.563a7 7 0 0 1 .166-.53c.033-.082.09-.074.145-.066.149.22.33.426.24.63-.062.14.26.24.207.38-.054.107-.03.174.078.186l.083.008c.095 0 .1-.062.095-.182.004-.678-.215-1.15-.447-1.684-.095-.207-.078-.414-.004-.62l.14-.423a.8.8 0 0 1 .427-.447c.025-.004.095.025.112.058.302.427.413.944.264 1.457a6 6 0 0 0-.103.48c-.008.041.004.083.012.124.03-.025.067-.05.091-.083.15-.223.303-.442.423-.682.115-.232.306-.327.546-.373.26-.054.335-.02.269.232a5 5 0 0 1-.137.43.86.86 0 0 1-.438.534c-.15.083-.286.194-.414.29-.05.066-.062.062-.009.128.05.062.125.025.187-.013.244-.177.496-.318.744-.455.092-.041.12-.008.112.1-.012.124-.029.293-.153.339-.136.045-.319.066-.439.124A.8.8 0 0 0 4.88 21c-.083.124-.083.207-.15.34-.012.028 0 .078.005.123.041-.016.083-.016.111-.033.162-.116.249-.248.41-.372.124-.095.153-.083.203.07.016.05.054.091.103.137.05-.033.104-.062.141-.112.145-.215.236-.645.426-.93.033 0 .075.024.1.036.04.095-.013.422-.005.493.005.198.067.24.249.149.14-.07.269-.145.405-.22.15-.074.27-.016.182.1-.045.07-.116.124-.157.198-.025.042-.02.112-.025.166.042 0 .1.008.14-.013.113-.029.216-.078.324-.124.144-.066.293-.045.455 0 .153.054.31.091.455.133.12.029.252-.025.36-.075a4 4 0 0 1 .654-.252 2.1 2.1 0 0 0 .815-.468c.054-.058.137-.087.199-.145.05-.041.09-.235.095-.298.041-.165-.025-.554.008-.728.02-.041.054-.132.083-.178l.07.02a1 1 0 0 1 .05.208c-.013.298-.017.96-.05 1.25 0 .066-.116.173-.182.198-.521.19-1.047.39-1.572.538-.236.066-.497.029-.745.033-.199 0-.393-.029-.588-.016-.153.012-.372.153-.53.178-.43.066-.802.037-1.228.115-.393.075-.77.182-1.147.286a.7.7 0 0 0-.235.116c-.03.025-.038.07-.05.1.041.02.083.049.124.04.095-.008.174.021.273.009q.346-.053.704-.083a.3.3 0 0 1 .161.066.44.44 0 0 0 .364.075c.14-.033.265.004.39.095.214.174.268.182.516.041.19-.103.402-.103.613-.09.471.024.91.094 1.336.173a.91.91 0 0 0 .878-.34 6 6 0 0 0 .33-.45c.08-.104.166-.174.29-.174.265-.004.538-.066.799-.05.149.013.22.15.22.236-.01.087-.042.14-.146.137a9 9 0 0 1-.596-.05c-.206-.017-.372.041-.496.199q-.1.111.05.149c.041.004.095.024.14.029.108.012.158.062.186.16.021.063.15.125.365.137.277.017.422.017.662-.062.099-.033.165-.149.236-.235.157-.228.264-.286.546-.228.198.037.33-.174.509-.161.327.04-.042-.617-.249-.832-.285-.211-.513-.63-.76-.94-.183-.227-.402-.314-.56-.591-.302-.5-.55-1.113-.885-1.515-.132-.136-.418-.041-.559.033a.4.4 0 0 0-.165.116c.405.344.422.82.281 1.171-.041.112-.083.108-.198.062a4 4 0 0 1-.32-.128c-.07-.037-.131-.02-.206.025-.306.186-.683.439-.745.376-.124-.124-.323-.496-.31-.686a.76.76 0 0 1 .12-.377 3 3 0 0 1-.397-.257l-.005-.136c.257-.248.605-.488.874-.488zm-7.747-3.6c.033.244.137.442.373.533.34.141.786.224 1.167.228.45.012.943-.025 1.473-.124a9.6 9.6 0 0 0 2.383-.832 6.6 6.6 0 0 1 1.449-.55 3.3 3.3 0 0 1 1.6-.042c.237.054.286.054.253-.115-.016-.112-.05-.224-.066-.34-.058-.397-.041-.77-.19-1.109a.46.46 0 0 0-.22-.202 1.3 1.3 0 0 0-.38-.116 2.7 2.7 0 0 0-.803 0 4 4 0 0 0-1.208.372c-.414.203-.828.43-1.138.617a3.27 3.27 0 0 1-1.68.484c-.393 0-.654-.013-1.047-.054a3.7 3.7 0 0 1-1.544-.426c-.107-.054-.165-.037-.206.074a3.46 3.46 0 0 0-.207 1.597zm18.41 4.344a8 8 0 0 1-.588.067 1 1 0 0 1-.16-.021c.024-.05.04-.066.07-.079.202-.103.417-.198.566-.314.083-.062.066-.124.042-.178a3.3 3.3 0 0 1-.832.228c-.02 0-.033-.021-.041-.034.227-.17.53-.306.695-.455.111-.09.029-.116-.009-.153-.24.083-.48.162-.732.232a.3.3 0 0 1-.116-.013c0-.05.05-.07.091-.095a4 4 0 0 0 .704-.463l-.013-.062-.083-.009c-.194.034-.624.096-.86.12-.116 0-.095-.066-.075-.082.187-.083.331-.182.468-.327.05-.054.041-.104.025-.128-.224.103-.48.107-.63.124-.028-.038.01-.083.026-.1.182-.07.219-.128.314-.19.062-.041.195-.132.224-.182.012-.017.008-.066-.005-.083a3 3 0 0 1-.55.133.3.3 0 0 1-.1-.017c.017-.041.026-.074.05-.087.257-.132.394-.186.576-.298a.45.45 0 0 0 .124-.161l-.017-.025c-.207.066-.418.137-.633.194-.041-.008-.062-.033-.1-.062a.3.3 0 0 1 .075-.074 3.4 3.4 0 0 0 1.171-.675.9.9 0 0 0 .224-.252l-.03-.05c-.413.29-.814.542-1.29.729-.095-.009-.075-.067-.042-.091.042-.042.166-.182.265-.315a3.7 3.7 0 0 0 1.084-.625c.025-.025.038-.095.021-.14-.211.095-.534.277-.815.38l-.054-.016a.6.6 0 0 1 .066-.145c.19-.124.464-.319.679-.555.008-.029.02-.066 0-.099a4 4 0 0 1-.559.228c-.062-.042.013-.15.02-.174a2.5 2.5 0 0 0 .514-.538c.025-.041.025-.079 0-.145-.145.104-.352.166-.513.228l-.046-.013c-.008-.053 0-.041.017-.082.19-.174.352-.31.468-.51.012-.02.008-.074-.013-.111-.157.054-.277.1-.447.14a.13.13 0 0 1-.058-.012c.009-.054 0-.066.021-.107.116-.1.232-.236.34-.398.028-.041.024-.082.003-.111-.082.02-.231.041-.306.05-.033.008-.074-.03-.095-.067l.29-.207a.3.3 0 0 0 .05-.078c-.038-.017-.067-.038-.092-.03-.124.017-.24.03-.364.054-.273.058-.273.096-.298.174a6 6 0 0 1-.302.902c-.037.083-.083.162-.165.195-.116.058-.091.12-.124.231-.05.224-.083.207-.174.427a1.2 1.2 0 0 1-.257.413h-.062l-.02-.31c-.025-.207-.067-.161-.1-.372-.02-.186.025-.385.05-.546.02-.187.041-.51.041-.692-.016-.012-.033-.04-.058-.057a.2.2 0 0 0-.058.082c-.037.141-.103.364-.124.51-.045.339.025.665 0 1.009a3.9 3.9 0 0 0-.041 1.068c.112-.013.103-.025.26-.087.207-.083.356-.112.567-.298.15-.129.125-.381.178-.588.07-.248.166-.34.265-.38.03-.009.058.004.087.012-.058.14-.091.215-.145.364-.05.128-.1.34.042.364l.103.017c.008.024.008.062-.012.082-.133.129-.24.282-.849.456-.07.02-.223.206-.231.277-.013.095-.013.207.008.364.062.608.364 1.18.703 1.742.286.48.497.844.807 1.159.145.132.298.231.538.12.128-.062.29-.162.331-.199.02-.025.025-.066.02-.103zm-8.276-8.755c.017.24-.029.302-.335.223-.323-.1-.472-.066-.679-.302-.124-.145-.281-.145-.413-.008-.062.074-.108.149-.207.165-.017-.033-.038-.078-.025-.116a.46.46 0 0 1 .252-.314c.095-.05.211-.083.31-.112.286-.112.427-.281.427-.616 0-.19.058-.381.058-.58 0-.14-.05-.186-.186-.14-.236.09-.456.182-.691.281a.28.28 0 0 0-.166.157c-.066.124-.108.248-.166.373-.053.07-.099.037-.115.008a8 8 0 0 0-.365-.517c-.103-.124-.103-.166.013-.253l.385-.335c.19-.178.265-.414.285-.679v-.36c-.008-.157.025-.202.182-.182a.9.9 0 0 1 .315.091c.174.075.347.174.521.265.091.058.157.137.166.253.004.136-.083.223-.207.173a4 4 0 0 0-.584-.202c-.099-.025-.198.029-.215.124-.041.227.153.24.137.302-.05.161-.31.207-.348.356-.029.136-.029.223.091.198.327-.066.646-.269.898-.372.215-.091.327-.058.356.182.116.703.223 1.308.302 1.937zm5.09-2.235c.062.017.14.054.19.1.12.277.377.587.7.753a.8.8 0 0 0 .29.082c.028-.124.082-.33.082-.558a.74.74 0 0 0-.22-.538 2.2 2.2 0 0 0-.496-.373.21.21 0 0 0-.244.021c-.004.041-.004.103.02.14.08.137.27.261.352.39.03.132.021.124-.087.082a2.1 2.1 0 0 1-.591-.517c-.095-.107-.158-.107-.224.008a2 2 0 0 0-.298.89.91.91 0 0 0 .497.952c.153.066.265.05.34-.095.078-.145.132-.27.181-.43.025-.083.025-.117-.037-.191a3 3 0 0 0-.248-.277.4.4 0 0 0-.124-.1.17.17 0 0 0-.034.104c.005.128.025.26.03.389a.2.2 0 0 1-.025.112.25.25 0 0 1-.141-.166c-.083-.306-.07-.575.087-.778m-14.3-4.506.24.285c.098.187.152.356.202.505.041.15.103.15.199.083a.34.34 0 0 0 .14-.29 1 1 0 0 0-.054-.26c-.082-.323-.024-.596.257-.799.095-.066.165-.174.128-.29-.041-.161-.078-.314-.14-.463-.025-.066-.116-.083-.178-.05-.315.166-.687.642-.402 1.039.013.025-.004.1-.025.14-.26-.26-.773-.79-.926-.777-.042.074-.075.227-.042.538.037.302.116.612.344 1.034a.8.8 0 0 0 .194.22.44.44 0 0 0 .248.103.46.46 0 0 0 .017-.248 10 10 0 0 0-.248-.758zM22.7 3.919c.219-.042.397-.104.48-.137.356-.136.591-.364.67-.753.025-.103-.037-.161-.149-.19l-.232-.062c-.227-.067-.273.029-.36.248-.066.165-.136.356-.314.496-.054.046-.24-.09-.29-.124.348-.207.575-.538.745-.935.041-.074 0-.149-.079-.174a.84.84 0 0 0-.355-.037 1.78 1.78 0 0 0-1.283.956c-.017.041 0 .136.029.149a.43.43 0 0 0 .227-.013c.033-.004.05-.05.07-.082.146-.257.39-.414.671-.538.083-.042.112-.013.066.083-.054.07-.558.426-.57.475-.067.145.032.166.115.166l.153-.041a.68.68 0 0 0 .402.513zm-7.655-.042c-.009.124-.054.195-.166.153-.232-.099-.372-.351-.633-.438-.095-.033-.153.054-.166.14-.041.265-.082.501-.082.6 0 .365.194.563.389.758.057.05.057.082-.005.111l-.798.447c-.075.05-.166.062-.248 0-.08-.07-.104-.157-.08-.244.096-.401.162-.815.266-1.208.165-.62.434-.832.885-.89.162-.025.282-.025.406-.025.132 0 .19.025.207.145.016.083.02.174.02.451zm.604 2.744c0-.302-.244-.39-.348-.646-.1-.252-.19-.252-.393-.07-.232.22-.372.41-.455.724a1.74 1.74 0 0 0 .008.869c.02.087.07.186.166.157a.166.166 0 0 0 .12-.165c0-.257.024-.505.153-.67a.4.4 0 0 1 .116-.112c.04.062.024.136.024.149-.037.19-.066.384-.107.575-.025.128-.025.198.041.314.075.116.137.128.186.05.236-.377.489-.919.489-1.175M2.73 7.457a2.3 2.3 0 0 0-.165-.745c-.1-.236-.249-.373-.348-.373-.091 0-.302.249-.372.451-.183.51-.083.923.21 1.411.042.062.125.178.236.062.091-.103.162-.177.249-.29a.8.8 0 0 0 .19-.516m11.148 7.986c-.054-.426-.373-.84-.91-1.2-.112-.046-.125.029-.125.124.054.592.124 1.187.199 1.713.02.116.074.149.182.091q.24-.11.467-.24c.141-.083.228-.161.187-.488m4.87-4.842c-.083-.207-.223-.293-.43-.31-.207-.025-.381-.054-.6-.087-.125.017-.207.116-.278.282.004.033.017.074.042.082.07.025.198.05.215.062a.4.4 0 0 1 .124.17c-.016.058-.091.12-.186.137-.124.024-.124.124-.104.252a.73.73 0 0 0 .162.36c.083-.05.124-.07.186-.137a.28.28 0 0 0 .083-.24c-.017-.269.132-.463.318-.641l.042.025c-.03.153-.112.265-.129.418-.04.314-.144.58-.455.79.095.124.331.033.406-.041a.95.95 0 0 0 .281-.439l.05-.157a.1.1 0 0 1 .041.012c.062.116-.025.352.017.522a.4.4 0 0 0 .153-.124c.116-.274.174-.68.062-.931zm3.898-6.372c-.054 0-.27.004-.331.017-.05.012-.075.128-.05.148.062.042.1.075.15.092.194.02.28.02.504.057a.17.17 0 0 1 .112.063c-.021.016-.042.045-.083.053-.414.05-.538.042-.828-.153-.078-.033-.107.025-.082.1.041.14.157.256.372.343.17.074.335.165.509.161.265-.008.455-.024.674-.062.116-.016.232-.082.249-.14.02-.058 0-.187-.066-.27l-.158-.157c-.248-.26-.41-.426-.778-.389-.05.005-.124.137-.194.137m.256 2.756c0-.153-.02-.265-.062-.402a.7.7 0 0 0-.612-.504c-.153-.005-.228.024-.166.165.017.05.154.195.207.31.07.141.137.286.137.41a.4.4 0 0 1-.037.166c-.091-.05-.141-.162-.162-.216-.041-.132-.05-.21-.09-.285-.038-.066-.084-.083-.104-.083-.058 0-.083.02-.087.1a1.19 1.19 0 0 0 .65 1.187c.115.041.144.013.182-.09a2.5 2.5 0 0 0 .144-.754zM2.483 5.388c-.058.219-.07.364-.062.488.004.157.082.29.227.356a2.8 2.8 0 0 0 1.378.215c.017 0 .062-.03.062-.041-.012-.096-.062-.112-.149-.137-.194-.066-.716-.207-.786-.29-.054-.074-.029-.153.058-.165a.44.44 0 0 1 .228.037c.128.062.24.145.372.22.041.024.091.07.14 0 .038-.063.075-.117-.008-.179l-.306-.24c-.265-.21-.662-.31-1.158-.264zm9.463 3.426c-.02.045-.062.09-.107.145-.05-.05-.1-.083-.125-.137a10 10 0 0 1-.496-1.655c-.008-.108.033-.145.124-.14.236.024.443.132.65.24.033.024.058.094.062.144.041.468-.017.993-.108 1.399zm-10.192.952-.033-.017c.021-.281.166-.683.112-.786a.6.6 0 0 0-.285.029c-.1.041-.141.14-.162.306-.025.368.033.745.112 1.076.025.124.074.136.165.05.236-.216.46-.489.638-.7.124-.161.145-.314.095-.467-.042-.129-.128-.178-.224-.178-.103 0-.14.078-.165.157-.058.203-.153.347-.253.525zm19.11-.849c.186 0 .339.037.388.054.224.083.323.182.365.26a.26.26 0 0 1 .04.15.4.4 0 0 1-.367-.075c-.199-.186-.489-.265-.662-.186.012.128.136.29.24.372.347.27.653.315 1.026.228.062-.025.087-.112.083-.186-.013-.24.004-.497-.224-.704-.248-.236-.604-.227-.848-.124a.5.5 0 0 0-.133.083.2.2 0 0 0 .091.124zM12.256 2.36c.074-.017.04.016.02.082-.041.211-.165.377-.314.526-.083.074-.1.19-.042.248.108.1.232.013.315-.066.165-.186.269-.414.364-.637a1.02 1.02 0 0 0-.041-.853c-.07-.099-.178-.111-.261-.037a1.44 1.44 0 0 0-.505.993c0 .054.004.153.041.174.19-.083.307-.29.414-.426zm5.048 10.013c.02-.016.054 0 .066.009 0 .223.054.492.083.57a.3.3 0 0 0 .083-.057l.062-.302c.14-.426.037-.766-.141-1.155-.033-.074-.083-.082-.157-.05-.054.025-.1.063-.054.137.041.062.037.112 0 .174-.058.112-.1.232-.161.364-.025.083-.03.15-.038.248l-.062 1.531c.025.083.075.067.104.017.033-.083.058-.161.074-.248.042-.24.112-.249.124-.489a6 6 0 0 0 .013-.744zM3.285 2.917a.2.2 0 0 1 .009-.095l.256.041c.124.025.187.009.228-.086.07-.183.033-.348-.157-.385-.29-.054-.58.041-.828.099-.161.054-.199.223-.083.34.187.177.364.355.559.512a.61.61 0 0 0 .525.125c.083-.021.154-.075.154-.15a.2.2 0 0 0-.062-.148.6.6 0 0 0-.145-.083zm-.26 11.144c-.017.082-.054.153-.19.145a1.7 1.7 0 0 1-.373-.054c-.132-.038-.17-.087-.178-.137a2.3 2.3 0 0 1 .042-.82c.016-.04.157-.123.215-.156.178.02.318.05.447.082a.8.8 0 0 1 .157.199.8.8 0 0 1 .025.248c-.05.207-.112.385-.145.493m13.82 7.469c.332.124.588.161.687.14a.2.2 0 0 0 .154-.223c-.005-.091-.05-.166-.166-.199-.252-.054-.513-.09-.753-.178-.14-.041-.248-.037-.373.058-.19.145-.372.22-.608.265a.3.3 0 0 0-.153.054c-.066.087-.05.149.054.207.41.037.794-.042 1.158-.124m1.362.81c.207 0 .36-.04.5-.132a1.24 1.24 0 0 1 .6-.265c.092-.016.183-.111.19-.186 0-.103-.082-.116-.152-.14-.199-.063-.435-.054-.637-.104-.067-.012-.162-.012-.216.03-.426.43-.509.33-.711.541-.054.07-.054.157.095.195.116.029.265.053.33.062zM11.123 6.162c0-.107.19-.273.294-.256q.03.01.057.041l.042.224c.012.087.041.165.087.165.215.017.467-.132.587-.318.129-.2.22-.427.327-.642.1-.236.253-.09.199.054-.137.41-.306.828-.439 1.229-.041.149-.062.157-.207.108l-.682-.245a.35.35 0 0 1-.265-.36m5.238 10.213c.112.054.104.033.253-.05a.34.34 0 0 0 .132-.24l-.041-.898c0-.029-.042-.074-.058-.074-.124 0-.273-.025-.373.029-.19.103-.351.252-.525.389-.066.066-.004.132.095.124.083-.033.178-.075.26-.12l.158-.083a.14.14 0 0 1-.016.075c-.15.165-.261.364-.464.471-.054.009-.041.14.037.145a.7.7 0 0 0 .228-.108c.124-.099.178-.16.302-.264.041.062.07.111.008.165l-.33.298c-.05.05-.013.1.045.091a.7.7 0 0 0 .236-.09c.082-.055.153-.13.227-.208.004.009.05.054.042.058a4 4 0 0 1-.216.29M5.772 5.967c-.05.5-.173 1.005-.397 1.233-.182-.348-.306-.753-.43-1.109.1-.124.223-.31.277-.455q.036-.106.128-.033c.15.136.278.248.422.364m.592 7.134a.41.41 0 0 1-.227.285.9.9 0 0 1-.39.104c-.074 0-.128-.017-.14-.083-.041-.232-.095-.447-.133-.67-.004-.054.042-.125.087-.166.145-.137.331-.174.526-.186.041 0 .178.058.199.095.04.207.062.393.078.62zm-1.808-2.678c-.265.042-.497.278-.455.373.004.207.045.405.157.583.07.104.124.129.232.058a2 2 0 0 0 .794-.81c.05-.1-.054-.13-.153-.179-.132-.062-.273-.062-.348-.025-.074.038-.103.116-.115.178-.083.302-.1.31-.19.414a.8.8 0 0 1 .078-.592m1.792 11.36c.016-.034.024-.059.053-.063a.6.6 0 0 1 .178 0c.236.066.455-.103.675-.137.05-.004.103-.012.161-.004.145.004.29.009.451-.033.066-.025.153.009.228.042.252.111.496.173.74.029a4 4 0 0 1 .394-.236c.227-.087.248.062.256.149a.22.22 0 0 1-.124.128c-.786.281-1.465.285-2.346.178a2 2 0 0 1-.666-.054zm-4.925-8.277a.46.46 0 0 0 .104.356l.037.037-.02.067a2 2 0 0 1-.406-.054c-.058-.021.103-.108.116-.207.029-.203.083-.538.083-.782 0-.042-.104-.083-.104-.124a.15.15 0 0 1 .05-.083c.29.07.33.066.389.203.058.124.111.33.198.48.017-.009.042-.017.054-.03.013-.136.008-.335.013-.426.008-.074.04-.111.12-.111.062 0 .215.004.277.016.008.013.008.025.008.042 0 .041-.05.053-.062.058-.137.05-.145.062-.207.442l-.066.439c-.008.033-.017.1-.037.145-.038.004-.104 0-.116-.033a6 6 0 0 0-.34-.691l-.04-.004c-.034.09-.034.177-.055.264zm9.104 2.04a.9.9 0 0 0 0-.252c-.05-.14-.112-.277-.091-.402.062-.215.107-.438.087-.662a2.8 2.8 0 0 1 .025-.827c.074.025.132.074.149.124.02.087.04.174.04.252.03.236.01.464-.003.691-.037.447-.075.861-.062 1.3.008.066.02.153.041.215q.085.202-.078.43l-.067-.029c-.05-.186-.173-.438-.227-.637-.009-.037 0-.066.05-.075.082-.016.136-.066.14-.124zm4.303-3.29c-.182-.016-.368-.177-.356-.467-.09.124-.202.248-.302.294.009.1.253.24.422.31.096.128.166.19.29.331.075-.19.166-.352.195-.455a1.5 1.5 0 0 0-.145-.675c-.137-.153-.352-.28-.563-.417-.103.111.029.351.286.496a.423.423 0 0 0 .202.538zm-12.372-.442c.128-.009.265-.03.418-.05.1-.025.21-.05.215-.174.008-.111-.124-.173-.215-.198a1.97 1.97 0 0 0-1.304.128 1.2 1.2 0 0 0-.264.19c-.1.108-.08.174-.005.232a1 1 0 0 0 .356.166c.021-.091.042-.24.07-.331.141-.232.539-.274.816-.282.066.013.066.095.012.112-.078.062-.236.05-.277.116 0 .07.066.095.178.087zm.885 2.4c-.004-.05.054-.112.058-.145.013-.066.013-.157.013-.228.008-.178-.03-.467-.03-.641l.096-.062c.033-.012.058.008.095.041.083.083.27.29.356.369.008 0 .02-.021.025-.025v-.133a1 1 0 0 0-.042-.256c-.033-.112-.111-.19-.024-.199l.339-.025c-.033.067-.058.116-.07.216-.017.136-.042.26-.046.388.017.2.058.398.075.563 0 .013-.025.03-.05.042a.3.3 0 0 1-.095-.062c-.166-.166-.282-.32-.497-.522a.2.2 0 0 0-.029.091c.042.128.095.273.182.393.054.075.067.1-.07.15a.65.65 0 0 1-.281.04zm6.05.037c.195-.12.273-.521.224-.716a.26.26 0 0 0-.067-.136c-.062-.062-.132-.042-.165.066-.037.153-.054.318-.075.463a1.5 1.5 0 0 0-.438-.012c-.15.02-.439.107-.439.285 0 .29.666.224.96.05m1.167-2.003a.33.33 0 0 0 .083.232c.298.31.707.633.968.695.232.062.426.199.567.385l.136.186c.1.124.228.207.402.232.029.008.066 0 .1 0-.026-.104-.026-.116-.1-.19-.613-.547-1.262-.973-1.895-1.416-.062-.037-.174-.111-.261-.124m-6.397 7.035v-.009c-.062-.26-.133-.513-.199-.765-.05-.091-.14-.025-.132.012-.066.187-.133.373-.19.567a.27.27 0 0 0 0 .174c.099.273.19.542.297.815.017.037.067.062.095.083.025-.033.063-.07.07-.103zm1.084-6.489c.016.05.041.112.05.17.004.042.004.075-.009.1-.004.012-.029.008-.054-.005-.128-.058-.273-.14-.389-.062-.04.03-.024.104.03.129l.364.149c.165.062.206.136.173.33-.029.187-.165.261-.327.307a.7.7 0 0 1-.227.016c-.012.058.004.124-.037.15-.03.016-.038.012-.067.024a1.6 1.6 0 0 1-.124-.451c0-.037.013-.041.025-.054.054.017.104.091.186.17.1.033.27.062.294.033.05-.062.07-.1.07-.124 0-.042-.057-.083-.107-.104-.128-.07-.199-.095-.331-.149-.124-.05-.145-.16-.145-.264 0-.112.058-.232.236-.29.054-.02.153-.041.207-.058a1 1 0 0 0 .029-.186c.029-.004.083-.013.09.008zM2.665 5c-.248 0-.406-.067-.654-.042-.178.013-.352.091-.525.157-.104.05-.083.096.008.133a.5.5 0 0 0 .24.062c.513-.041 1.088-.1 1.601-.149a.7.7 0 0 0 .083-.14c-.195-.129-.447-.104-.683-.174zm5.892 7.659a.5.5 0 0 0-.12.108.3.3 0 0 1-.103.074l-.07-.041.111-.27c.042-.103.083-.115.182-.049l.091.074c.075.063.174.112.265.07.087-.04.041-.165-.05-.21-.132-.083-.231-.108-.393-.207-.099-.058-.14-.145-.14-.27 0-.103.07-.227.202-.24.05-.011.112-.011.182-.011.087 0 .145-.013.2-.087.04-.054.086-.087.098-.03a.76.76 0 0 1-.024.406c-.03-.008-.05-.008-.075-.02-.079-.125-.182-.183-.269-.17-.083.012-.124.074-.062.14.112.116.269.178.401.253.19.103.178.248.154.352a.27.27 0 0 1-.278.223.53.53 0 0 1-.302-.095m-.376-.38c.016.318-.24.434-.422.43-.17 0-.27-.038-.327-.207-.03-.1-.062-.402-.083-.513-.033-.042-.091-.058-.178-.083-.041-.008-.045-.042-.054-.079.062-.029.174-.062.253-.074.182-.03.182-.017.21.149.026.19.054.389.092.579.062.186.26.145.26-.012 0-.15.009-.319 0-.476-.029-.038-.082-.116-.14-.17-.07-.083-.075-.108.025-.145.231-.09.248-.149.28.157.013.116.084.294.084.443zm.215 1.63.58-.137c.152-.041.24-.207.227-.352-.017-.111-.083-.173-.199-.198a1.6 1.6 0 0 0-.745.103c-.02.199.05.414.137.58zM3.074 11.85a1 1 0 0 0-.248.037.9.9 0 0 1-.364.038c-.083-.009-.215-.063-.294-.083-.087.008-.174.087-.207.21-.016.125.058.212.195.237.277.062.538.111.794.111.1 0 .112-.012.116-.095.013-.157.008-.29.008-.455m6.621-5.917a1.7 1.7 0 0 1-.36-.112c-.041-.012-.07-.112-.07-.165.012-.145-.025-.29 0-.443.012-.083.058-.108.136-.091.112.025.216.05.323.083.14.057.352.446.29.583-.062.124-.174.14-.315.149zm-2.387 6.782a.4.4 0 0 1-.116.112c-.137.09-.385.144-.555.256-.083.058-.041-.14-.05-.215l-.086-.463a.6.6 0 0 0-.15-.249c-.049-.058.092-.083.162-.103l.27-.083c.098-.033.123.037.094.058-.136.1-.124.145-.107.273.02.124.02.26.024.364.021.05.05.116.087.162.083-.025.174-.087.174-.112l.02-.265c.1-.124.117-.062.133-.008.042.099.062.161.1.273m.41-2.938a8 8 0 0 1-.158-.55c-.012-.075.05-.116.12-.104q.37.08.74.178c.083.017.083.083.03.137a1.8 1.8 0 0 1-.555.405c-.112.062-.116.017-.178-.066zm10.72-6.563a1.8 1.8 0 0 0-.285-.687c-.112-.14-.248-.153-.372-.025a1 1 0 0 0-.108.125c-.124.157-.112.206.075.298.28.082.442.248.645.455zM5.289 19.291a1.2 1.2 0 0 0-.372.331c-.083.153-.174.298-.257.447-.029.07-.078.24-.099.352l.05.05a2 2 0 0 0 .364-.27c.21-.207.26-.401.376-.815l.021-.05zM23.524 2.276a4.6 4.6 0 0 0-.405-.654c-.112-.14-.166-.153-.29-.025a1 1 0 0 0-.112.124c-.124.153-.198.344.004.373.174.029.41 0 .522.078.103.067.194.137.24.162zM2.544 13.394c-.032.303-.024.303-.024.514 0 .115.054.115.157.124.095.004.124-.083.145-.195l.062-.418c.017-.136.025-.215-.058-.227-.153-.021-.269.074-.281.202zM4.16 7.8a1.6 1.6 0 0 1-.39-.137c-.206-.107-.405-.33-.372-.537q.027-.146.153-.08c.158.117.29.29.406.415a.8.8 0 0 1 .207.339zm1.551 4.916c.004.083.075.327.1.467.012.075.029.133.136.12.14-.02.19-.082.17-.194-.017-.128-.05-.257-.075-.389-.024-.124-.078-.194-.19-.19-.116.012-.153.053-.14.186zm6.15-7.808c-.088.157-.166.314-.27.45-.078.112-.202.183-.314.278-.108.029-.112.02-.075-.087.162-.265.315-.472.489-.7.124-.066.17-.012.165.059zm8.3 4.295c0 .1-.017.19-.05.285l-.025.013c-.128-.323-.438-.844-.417-.898-.009-.037.074-.058.111-.05l.141.058c.083.19.166.372.24.592m.902-6.857a.25.25 0 0 1 .104.05c.062.05.07.107-.013.14-.194.092-.521.265-.732.344-.042.02-.087.025-.07-.05.04-.124.537-.484.711-.484m-7.08 8.992c-.136 0-.252.108-.252.215.004.12.157.248.293.248.125 0 .211-.082.211-.207.009-.148-.099-.256-.252-.256M3.074 21.778c-.028 0-.082.091-.128.095-.165.013-.223.03-.223.1 0 .095.05.144.128.12.248-.075.306-.067.629-.042l.112-.132c-.038-.033-.066-.075-.112-.087a2 2 0 0 0-.406-.054M17.648 9.869c-.054.033-.099.066-.082.128l.04.1c.096-.017.204-.025.303-.017.132.041.356.091.497.116.033.008.074-.03.099-.062.008-.004-.017-.03-.03-.054-.19-.19-.508-.194-.827-.207zM8.532 5.686l-.339-.15c-.02-.012-.033-.074-.012-.099q.112-.166.231-.314.064-.063.096.016l.17.422c.032.083-.005.116-.146.125M4.08 9.844c.083-.016.124.033.112.108-.009.041-.021.058-.087.09a1.5 1.5 0 0 1-.753.026c-.083-.013-.137-.03-.15-.05a.16.16 0 0 1 .096-.066zm2.375-6.641c-.025.008-.054.029-.07.016-.22-.124-.534-.29-.733-.418-.045-.066-.016-.09.046-.082.161.053.443.136.604.198.104.05.137.145.153.286m3.373 4.833c.024.037.05.074-.021.186-.112.174-.14.352-.215.592a.7.7 0 0 1-.075.14c-.025.025-.062.034-.09.05-.01-.029-.026-.066-.021-.09l.223-.73c.033-.086.1-.132.199-.148m8.081-2.442a4 4 0 0 1-.869-.306c-.095-.082-.079-.078.046-.082l.815.219c.157.12.124.116.008.165zm-3.364 5.181a.28.28 0 0 0-.124-.153c-.042-.025-.12-.012-.166.025a1 1 0 0 0-.132.116c-.062.087-.025.174.074.244.083.058.174.054.228-.025.05-.062.095-.108.12-.207M9.09 6.778c-.029.062-.037.124-.079.17-.111.132-.235.26-.355.389-.12.053-.125-.021-.112-.08.112-.206.269-.38.414-.55.016-.016.062-.028.082-.016s.033.041.05.083zM4.415 5.64c-.029.02-.467-.662-.521-.803 0-.025.07-.074.107-.103a.2.2 0 0 1 .075.066c.14.298.385.803.364.823zM4.23 8.367l-.186-.083c-.137.03-.249.091-.402.108-.161.012-.227-.021-.29-.062.026-.05.112-.1.24-.124.075-.013.402-.042.688-.017zM21.07 4.89l.48.36c.05.033.042.1.062.14l-.107-.012c-.207-.103-.422-.186-.559-.389-.116-.17.075-.149.124-.099m-12.157.592-.054.083c-.02-.025-.05-.05-.062-.083-.041-.083-.041-.178-.05-.265-.024-.207-.012-.319.112-.443.05-.058.091-.025.091.03.009.26-.004.421-.037.678M5.834 4.73c.046.016.125.509.178.761a.6.6 0 0 1 0 .186c-.02.058-.041.07-.09.02-.083-.26-.125-.525-.166-.773-.017-.074-.017-.153.078-.194M19.87 7.72c.199.112.43.31.526.427.025.024.012.09 0 .14-.033-.012-.07-.016-.095-.037-.166-.103-.319-.22-.472-.327-.02-.016-.025-.136-.041-.161a.2.2 0 0 1 .082-.042m-9.05-4.26c.034.021.05.042.071.07a.17.17 0 0 1-.07.075c-.141.054-.468.054-.604-.025a.4.4 0 0 1-.07-.082l.094-.054a1.3 1.3 0 0 1 .58.02zm3.725.795c.132.207.19.405.248.629 0 .012-.008.016-.008.05-.033-.021-.05-.025-.062-.042a1.16 1.16 0 0 1-.331-.546c-.017-.05-.009-.091.053-.128a.2.2 0 0 1 .1.037M11.97 18.418c.157-.091.203-.161.343-.248.058-.033.05-.042.021-.096-.033-.062-.062-.062-.145-.04-.153.053-.215.09-.372.152-.066.025-.091.054-.02.104zM7.126 3.745c.19-.133.397-.203.608-.282.033-.008.083.005.12.038l-.075.066c-.165.116-.33.207-.488.302a1 1 0 0 1-.165-.029.12.12 0 0 1 0-.095M2.18 7.8c-.046-.223-.108-.497-.07-.695a.3.3 0 0 1 .086-.124c.042.037.083.066.087.103.042.232-.025.497-.041.712zm10.77-4.994a3.5 3.5 0 0 1 .56-.327 2.1 2.1 0 0 1-.572.608c-.012-.083-.041-.232.013-.281zm-2.648 8.644c0 .09.042.19.116.26.042-.033.075-.095.075-.124.016-.174.029-.352.029-.534.02-.07-.083-.09-.108-.016-.041.136-.107.273-.112.414m9.087 7.158-.765.257c.178.203.695.037.765-.257M8.12 4.705a1.17 1.17 0 0 1-.137.641c-.012.025-.041.042-.074.066-.013-.037-.05-.066-.042-.09.042-.208.095-.456.145-.663.008-.012.041-.025.058-.029zm10.717 14.632c.165 0 .323-.005.447-.042.111-.07.107-.215.145-.314l-.042-.013-.182.166a3 3 0 0 1-.372.074.3.3 0 0 0-.058.075c.02.029.041.05.066.054zm-1.531-8.202c.054-.12.103-.227.145-.34.008-.024-.03-.086-.075-.127a.3.3 0 0 0-.09.041 1.7 1.7 0 0 0-.24.364c.016.03.098.03.256.062zM4.494 7.895l.161-.414q.044-.013.075.005a1.4 1.4 0 0 1-.009.4c-.024.113-.066.179-.165.228a.7.7 0 0 1-.062-.219m9.34 3.037c-.113 0-.2.067-.208.166 0 .083.091.161.19.161.104-.008.183-.082.19-.173 0-.1-.061-.154-.173-.154zm-.1 1.018c0-.111-.066-.186-.186-.186-.096 0-.166.062-.166.15 0 .098.104.198.207.19.091 0 .145-.067.145-.154m-.418-1.042c0 .09-.058.144-.145.144-.116 0-.203-.07-.203-.178 0-.082.083-.165.166-.165.087-.008.182.074.182.199m.074.413c-.099 0-.165.062-.165.145 0 .087.09.166.186.166.074 0 .145-.079.145-.166.004-.078-.07-.145-.166-.145m-1.088 7.399c-.128 0-.24.062-.236.132.008.07.108.166.186.166.083 0 .129-.087.129-.199-.004-.082 0-.099-.079-.099M4.415 3.062c-.062-.248-.033-.472.03-.724.103.215.11.563-.03.724m9.31 7.25c-.066.041-.124.107-.115.136.008.05.062.095.095.145a.27.27 0 0 0 .112-.132c.012-.03-.05-.083-.096-.15z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/embarcadero.svg������������������������������0000664�0000000�0000000�00000001300�14753064456�0026061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a11.96 11.96 0 0 0-8.485 3.515A11.96 11.96 0 0 0 0 12.001c0 3.313 1.344 6.311 3.515 8.484A11.96 11.96 0 0 0 12 24a11.96 11.96 0 0 0 8.485-3.515A11.97 11.97 0 0 0 24 12.001c0-3.315-1.344-6.314-3.515-8.486A11.96 11.96 0 0 0 12 0m.052 4.401q1.85 0 3.332.664 1.482.665 2.449 2.096.87 1.262 1.128 2.93.15.975.122 2.811H8.764q.087 2.132 1.482 2.99.848.533 2.042.533 1.266 0 2.057-.65.432-.352.762-.975h3.783q-.15 1.26-1.374 2.56-1.903 2.067-5.33 2.067-2.829 0-4.99-1.743-2.163-1.743-2.162-5.672 0-3.683 1.951-5.646Q8.937 4.401 12.052 4.4zm.001 3.055q-1.426 0-2.211.81t-.987 2.192h6.382q-.1-1.475-.987-2.238-.886-.764-2.197-.764"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/embark.svg�����������������������������������0000664�0000000�0000000�00000000314�14753064456�0025062�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.658 16.662v-6.644C9.197 10.017 13.687 5.533 13.69 0h6.653c-.003 9.202-7.472 16.662-16.685 16.662M3.656 24v-6.672h16.689V24z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/emberdotjs.svg�������������������������������0000664�0000000�0000000�00000001040�14753064456�0025754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm12.29 4.38c1.66-.03 2.83.42 3.84 1.85 2.25 5.58-6 8.4-6 8.4s-.23 1.48 2.02 1.42c2.78 0 5.7-2.15 6.81-3.06a.66.66 0 0 1 .9.05l.84.87a.66.66 0 0 1 .01.9c-.72.8-2.42 2.46-4.97 3.53 0 0-4.26 1.97-7.13.1a4.95 4.95 0 0 1-2.38-3.83s-2.08-.11-3.42-.63c-1.33-.52.01-2.1.01-2.1s.42-.65 1.2 0 2.24.36 2.24.36c.13-1.03.35-2.38.98-3.81 1.34-3 3.38-4.01 5.05-4.05m.33 2.8c-1.1.07-2.8 1.78-2.88 4.93 0 0 .75.23 2.41-.91 1.67-1.14 2-2.97 1.11-3.81a.82.82 0 0 0-.64-.21"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/emby.svg�������������������������������������0000664�0000000�0000000�00000001305�14753064456�0024556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.041 0c-.007 0-1.456 1.43-3.219 3.176L4.615 6.352l.512.513.512.512-2.819 2.791L0 12.961l1.83 1.848 3.182 3.209 1.351 1.359.508-.496c.28-.273.515-.498.524-.498.008 0 1.266 1.264 2.794 2.808L12.97 24l.187-.182c.23-.225 5.007-4.95 5.717-5.656l.52-.516-.502-.513c-.276-.282-.5-.52-.496-.53.003-.009 1.264-1.26 2.802-2.783s2.8-2.776 2.803-2.785c.005-.012-3.617-3.684-6.107-6.193L17.65 4.6l-.505.505c-.279.278-.517.501-.53.497s-1.27-1.267-2.793-2.805A450 450 0 0 0 11.041 0M9.223 7.367c.091.038 7.951 4.608 7.957 4.627.003.013-1.781 1.056-3.965 2.32a1000 1000 0 0 1-3.996 2.307c-.019.006-.026-1.266-.026-4.629 0-3.7.007-4.634.03-4.625"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/emirates.svg���������������������������������0000664�0000000�0000000�00000004506�14753064456�0025441�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6.247 15.56-1.386 1.385c.945.945 1.26 1.386 1.323 1.827.063-.063 1.323-1.134 1.323-1.512 0-.567-.378-.756-1.26-1.7m-3.15-2.458h-.755s.756.441.756 1.45v3.4c0 2.205 1.826 4.284 4.031 4.284h1.827c1.134 0 1.512-.252 2.142-.882l.692-.693c.378-.44.82-.755.82-1.952v-1.134c0-.945-.568-1.386-.82-1.638l-.63-.63v2.268s.441.504.693.63c.945.756.19 2.078-.692 2.078H7.066c-1.89-.063-3.402-1.637-3.465-3.527v-1.827c0-1.827-.503-1.827-.503-1.827m5.92 2.457-1.385 1.386c.945.945 1.26 1.386 1.323 1.827.063-.063 1.323-1.134 1.323-1.512 0-.567-.378-.82-1.26-1.7M11.853 0l-.944.945c-.378.378-.252 1.134.504 1.89v1.89c0 .188-.19.377-.19.377s-1.133-1.008-2.14-1.008H7.57c-.945 0-1.7.882-1.827.945-.504.504-.504 1.45-.126 1.89L6.688 8s-.252-1.7 0-2.835c.063-.252.378-.567.693-.567l2.457 1.89-2.835 2.96c-.126.127-.504.379-.882.379-.44 0-.63-.252-.819-.504v1.386c0 .44.63.945 1.197.945h3.78c.252 0 .567-.063.819-.315l1.26-1.26c.188-.19.251-.441.251-.756V7.874c0-1.386-1.07-2.457-1.07-2.457s.251-.189.251-.756V3.213s.441.44.504.63l.82-.82c.377-.377-.253-1.07-.505-1.385C11.853.818 11.853 0 11.853 0M7.13 9.953c.378-.19.441-.315.756-.693l2.394-2.52s1.322 1.386 1.763 2.142c.19.378.441 1.07-.692 1.07zM3.915 7.056h-.692c.44.252.755 1.008.755 1.449v2.772c0 .755.567 3.464 3.024 3.464h7.118v4.536c0 .755-.252 1.196-.44 1.385l-1.072 1.008h.504l1.953-1.763c.378-.441.819-.882.819-2.268V14.74l.819-.819 1.386-1.323c0 1.134.567 1.638 1.07 1.638a1.26 1.26 0 0 0 .756-.315l1.26-1.197c.567-.567.882-2.33-.504-2.33-.882 0-1.89 1.26-1.952 1.386-.315-.19-.567-.63-.567-.63v1.07c-.126.19-.693.63-1.134.63h-1.134v-1.07c0-.504.189-1.071.44-1.323l1.072-1.008h-.504l-2.142 1.953c-.378.44-.63 1.26-.63 1.448H6.058c-1.008 0-1.638-1.007-1.638-1.826v-2.08c0-1.7-.44-1.889-.504-1.889m16.315 6.047c-.189 0-.378-.063-.63-.252-.251-.189-.692-.819-.692-.819.126-.125.504-.251.818-.251.252 0 .504.063.567.189.441.566.378 1.133-.063 1.133M16.893 0 14.75 1.953c-.126.126-.63.882-.63 1.764v5.606c0 .378-.252.945-.44 1.134l-1.072 1.008h.504l2.016-1.827c.252-.252.756-.882.756-1.953V2.331c0-.82.378-1.26.567-1.45L17.397 0zm.315 14.362v2.205l.756.819c.63.63.567 1.827-1.323 3.653a3.78 3.78 0 0 1-2.583 1.197h-3.401L12.672 24h1.386c1.386 0 2.646-.567 3.465-1.449.756-.819 1.197-1.89 1.134-3.023V16.63c0-1.008-.63-1.575-.756-1.7-.126 0-.693-.568-.693-.568"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/emlakjet.svg���������������������������������0000664�0000000�0000000�00000001605�14753064456�0025421�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.65 16.105v-.24a3.54 3.54 0 0 0-1.267-2.471c-.724-.663-1.69-.965-2.655-.904-1.87.12-3.378 1.747-3.378 3.615 0 .784.12 1.567.422 2.471H4.55V6.946l7.42-5.123 7.482 5.122v11.692h-4.223c.18-.663.422-1.688.422-2.532m5.068-10.244L12.452.136c-.301-.181-.663-.181-.905 0L3.222 5.86c-.242.12-.362.361-.362.663V19.48c0 .482.362.844.844.844H9.92a.824.824 0 0 0 .844-.844c0-.06 0-.18-.06-.24l-.06-.182c-.302-.723-.664-1.627-.664-2.53v-.182c-.06-.542.12-1.084.482-1.446a2.1 2.1 0 0 1 1.388-.723c.543-.06 1.026.12 1.448.482s.664.844.724 1.386v.18c.06 1.206-.724 2.954-.845 3.135l-1.146 2.17-.18-.362c-.122-.181-.302-.362-.483-.422-.182-.06-.423-.06-.604.06-.18.12-.362.301-.422.482s-.06.422.06.603l.905 1.687c.121.241.423.422.724.422.302 0 .604-.18.724-.422l1.81-3.375h5.732a.824.824 0 0 0 .844-.843V6.524c-.06-.302-.18-.543-.422-.663"/></svg>���������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/empirekred.svg�������������������������������0000664�0000000�0000000�00000001614�14753064456�0025754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 4.678c0-2.08-1.674-3.774-3.727-3.774H3.725C1.67.904 0 2.597 0 4.684v7.535q0 .503.135.997.045.201.12.39c.25.623.653 1.17 1.173 1.593.51.524 1.17 1.095 1.965 1.71l.105.074.435.33.52.397c1.19.912 3.205 2.453 6.165 4.71.483.366 1.038.676 1.383.676.342 0 .901-.31 1.382-.676 2.96-2.257 4.972-3.798 6.164-4.71l.972-.74h-.002l.11-.085c.798-.612 1.463-1.19 1.968-1.71.514-.418.908-.96 1.15-1.576.166-.44.252-.906.254-1.376v-7.15h-.003l.003-.003v-.39zm-4.14 6.242a6 6 0 0 0-.283-.045c-.105 0-.226-.015-.33-.015a1.9 1.9 0 0 0-.81.164c-.214.1-.4.248-.54.436-.135.196-.23.415-.286.646q-.09.381-.09.81v2.88h-5.027l-3.733-5.583-1.556 1.575v3.975h-2.72V3.393H7.2v5.13l4.83-5.127h3.395l-4.83 4.885 5.166 7.293V9.395h1.662v1.182h.023c.084-.195.195-.38.33-.547.144-.168.3-.312.483-.43.18-.106.375-.21.58-.27q.309-.09.64-.09c.114 0 .24.03.38.06z"/></svg>��������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/endeavouros.svg������������������������������0000664�0000000�0000000�00000001265�14753064456�0026161�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.03 2.036v.002C13.303 2.138 0 18.46 0 18.46s.957.272 3.135.588c0 0 10.435-17.061 10.904-17.008-.001 0-.01-.006-.01-.004zM3.135 19.048c-.95 1.562-1.71 2.818-1.71 2.818s10.218.46 18.165-.606c11.308-1.516-2.324-15.96-5.537-19.214 2.542 3.36 13.473 17.751 2.459 17.937-3.89.066-13.377-.935-13.377-.935m10.906-17.01v.002c.022.01 0 .002 0-.002m-.037.797c-.055.073-.09.112-.156.205a61 61 0 0 0-1.285 1.9 357 357 0 0 0-3.723 5.842c-2.448 3.908-4.467 7.208-4.846 7.826 1.034.107 8.948.935 12.508.875 1.322-.022 2.274-.26 2.926-.623s1.022-.839 1.228-1.447c.413-1.217.063-3.047-.753-5.018-1.537-3.711-4.485-7.686-5.899-9.56"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/engadget.svg���������������������������������0000664�0000000�0000000�00000000353�14753064456�0025402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 20.067a3.9 3.9 0 0 0 4 3.866h16v-4H4v-4h15.733A4.23 4.23 0 0 0 24 12.067V4.333A4.483 4.483 0 0 0 19.733.067H4a4.346 4.346 0 0 0-4 4.266Zm20-8.134H4v-8h16Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/enpass.svg�����������������������������������0000664�0000000�0000000�00000001411�14753064456�0025111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.023 1.337c2.691 0 5.383-.008 8.075.004a3.84 3.84 0 0 1 2.963 1.308A3.72 3.72 0 0 1 24 4.947a9.7 9.7 0 0 1-.278 2.319c-.357 2.054-.73 4.104-1.094 6.155-.315 1.766-.616 3.535-.948 5.3a5.085 5.085 0 0 1-4.195 3.898 6 6 0 0 1-.743.045q-4.719.005-9.437 0a5.066 5.066 0 0 1-4.979-4.184A3553 3553 0 0 0 .421 7.91C.295 7.21.156 6.517.057 5.814A3.796 3.796 0 0 1 3.105 1.43a5 5 0 0 1 .971-.089q3.974-.011 7.947-.004M9.887 18.023a1.17 1.17 0 0 0 1.22 1.22h1.748a1.176 1.176 0 0 0 1.283-1.285q.002-2.066-.006-4.133a.385.385 0 0 1 .218-.385 4.415 4.415 0 0 0 2.015-4.936 4.52 4.52 0 0 0-5.49-3.166 4.21 4.21 0 0 0-3.035 2.5 4.685 4.685 0 0 0 1.888 5.635.29.29 0 0 1 .164.287c-.007 1.48-.005 2.706-.005 4.263"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/enterprisedb.svg�����������������������������0000664�0000000�0000000�00000001445�14753064456�0026315�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0M6.44 7.75q.11 0 .222.012l1.815.18a.384.384 0 0 1 .345.369v6.636c0 .186-.154.32-.345.301l-1.815-.18C5.47 14.95 4.5 13.918 4.5 12.762c0-.62.279-1.15.72-1.49-.441-.428-.72-1.011-.72-1.631 0-1.084.85-1.892 1.94-1.89zm11.12 0c1.09 0 1.94.807 1.94 1.89 0 .62-.278 1.204-.72 1.631.442.34.72.87.72 1.49 0 1.157-.967 2.19-2.16 2.307l-1.817.18a.302.302 0 0 1-.345-.3V8.31c0-.185.154-.35.345-.369l1.817-.18q.111-.01.22-.011m-7.374 2H12c1.194 0 2.16.93 2.16 2.074v3.09c0 1.145-.972 2.086-2.166 2.086H10.18a.343.343 0 0 1-.34-.344v-.092c0-.34.187-.331.27-.34l.136-.011c1.216-.13 1.735-.404 1.754-.766h-1.82c-.202 0-.34-.195-.34-.388v-4.977c0-.184.154-.332.346-.332"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/envato.svg�����������������������������������0000664�0000000�0000000�00000001352�14753064456�0025120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.156 0a2.7 2.7 0 0 0-1.886.8L4 11.253c-.382.42-.558.978-.453 1.57.176.945 1.116 1.571 2.06 1.399l5.54-1.13c.12-.025.183.136.082.204L5.088 17.23c-.769.487-1.119 1.36-.875 2.234.244 1.151 1.398 1.814 2.516 1.537l9.183-2.26a.11.11 0 0 1 .113.176l-1.433 1.77c-.383.487.244 1.15.77.767l4.716-3.877c.84-.697.281-2.062-.803-1.957l-.011-.004-6.047.65a.111.111 0 0 1-.08-.199l5.918-4.609c.382-.315.628-.801.523-1.326-.105-.803-.767-1.328-1.607-1.223l-6.43.942c-.112.015-.174-.128-.084-.2l6.375-4.867c1.256-.978 1.36-2.898.209-4.015A2.6 2.6 0 0 0 16.156 0M13.1 21.855a1.07 1.07 0 0 0-1.073 1.073A1.07 1.07 0 0 0 13.1 24a1.07 1.07 0 0 0 1.072-1.072 1.07 1.07 0 0 0-1.072-1.073"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/envoyproxy.svg�������������������������������0000664�0000000�0000000�00000002031�14753064456�0026061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.351 7.593-7.068-4.379a1.03 1.03 0 0 0-.84-.117c-.02.01-.052.021-.074.032L8.471 6.105a.695.695 0 0 0-.435.68l.17 7.355c.01.298.191.595.478.765l7.068 4.38c.255.159.574.201.84.116.02-.01.053-.021.074-.032l6.898-2.976a.705.705 0 0 0 .436-.68l-.17-7.355c-.011-.297-.192-.584-.479-.765m-7.185 10.044-6.143-3.805-.149-6.388 5.995-2.583 6.143 3.805.149 6.388zm.011-6.027a.83.83 0 0 0-.414-.67l-5.06-3.135-.159.064.032 1.52 4.007 2.487.095 4.06 1.53.946.086-.032zm-6.058 7.132L5.41 15.83l-.116-4.89 2.146-.924-.042-1.69-3.327 1.435a.61.61 0 0 0-.382.595l.138 5.74c0 .265.16.52.414.67l5.516 3.422c.224.138.5.18.734.106a.2.2 0 0 1 .064-.021l3.252-1.403-1.616-1zm-2.615-6.1-1.52-.947.032 1.446 1.52.946zm2.19 5.059-.032-1.414-1.329-.83c-.021-.01-.042-.031-.053-.042l.032 1.425zm-4.751 1.902-3.476-2.158-.085-3.613 1.7-.734-.031-1.445-2.72 1.17a.53.53 0 0 0-.33.51l.106 4.336c0 .223.138.446.35.574l4.167 2.582a.82.82 0 0 0 .627.096c.021-.01.043-.01.064-.021l2.561-1.106-1.392-.86Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/epel.svg�������������������������������������0000664�0000000�0000000�00000001531�14753064456�0024550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.702 2.361c-1.188.11-.88.154 1.98.286 5.677.242 9.043 1.144 11.353 2.993 1.232 1.012 2.187 3.146 2.187 3.146s-3.639.836-7.797 1.65c-4.159.814-7.46 1.54-7.327 1.584.352.11 5.214-.484 10.319-1.276l4.87-.734c.078-.012.036.394.036.514 0 1.1-1.122 2.948-2.794 4.599-2.75 2.684-6.623 4.686-11.573 5.962-1.364.352-2.2.638-1.892.638 1.188.044 5.742-1.298 7.81-2.266 2.685-1.276 4.401-2.508 6.491-4.664 1.48-1.842 2.994-2.796 3.056-5.017l3.06-.506c1.629-.264 3.103-.55 3.28-.616.241-.088.285-.352.197-1.012-.154-1.21-1.1-2.156-3.014-3.037-2.904-1.342-5.88-1.603-7.442-.68-.173.101-.376.417-.534.486l-2.365-.862C7.567 2.515 3.848 2.075.702 2.361m19.032 2.773c1.628.484 4.18 2.014 3.792 2.09l-3.066.601-3.386.772c-.644-1.435-1.491-2.232-2.628-3.305l.133-.327c.322-.796 2.536-.602 5.155.169"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/epicgames.svg��������������������������������0000664�0000000�0000000�00000005026�14753064456�0025563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.537 0C2.165 0 1.66.506 1.66 1.879V18.44a4 4 0 0 0 .02.433c.031.3.037.59.316.92.027.033.311.245.311.245.153.075.258.13.43.2l8.335 3.491c.433.199.614.276.928.27h.002c.314.006.495-.071.928-.27l8.335-3.492c.172-.07.277-.124.43-.2 0 0 .284-.211.311-.243.28-.33.285-.621.316-.92a4 4 0 0 0 .02-.434V1.879c0-1.373-.506-1.88-1.878-1.88zm13.366 3.11h.68c1.138 0 1.688.553 1.688 1.696v1.88h-1.374v-1.8c0-.369-.17-.54-.523-.54h-.235c-.367 0-.537.17-.537.539v5.81c0 .369.17.54.537.54h.262c.353 0 .523-.171.523-.54V8.619h1.373v2.143c0 1.144-.562 1.71-1.7 1.71h-.694c-1.138 0-1.7-.566-1.7-1.71V4.82c0-1.144.562-1.709 1.7-1.709zm-12.186.08h3.114v1.274H6.117v2.603h1.648v1.275H6.117v2.774h1.74v1.275h-3.14zm3.816 0h2.198c1.138 0 1.7.564 1.7 1.708v2.445c0 1.144-.562 1.71-1.7 1.71h-.799v3.338h-1.4zm4.53 0h1.4v9.201h-1.4zm-3.13 1.235v3.392h.575c.354 0 .523-.171.523-.54V4.965c0-.368-.17-.54-.523-.54zm-3.74 10.147a1.7 1.7 0 0 1 .591.108 1.8 1.8 0 0 1 .49.299l-.452.546a1.3 1.3 0 0 0-.308-.195.9.9 0 0 0-.363-.068.7.7 0 0 0-.28.06.7.7 0 0 0-.224.163.8.8 0 0 0-.151.243.8.8 0 0 0-.056.299v.008a.9.9 0 0 0 .056.31.7.7 0 0 0 .157.245.7.7 0 0 0 .238.16.8.8 0 0 0 .303.058.8.8 0 0 0 .445-.116v-.339h-.548v-.565H7.37v1.255a2 2 0 0 1-.524.307 1.8 1.8 0 0 1-.683.123 1.6 1.6 0 0 1-.602-.107 1.5 1.5 0 0 1-.478-.3 1.4 1.4 0 0 1-.318-.455 1.4 1.4 0 0 1-.115-.58v-.008a1.4 1.4 0 0 1 .113-.57 1.5 1.5 0 0 1 .312-.46 1.4 1.4 0 0 1 .474-.309 1.6 1.6 0 0 1 .598-.111h.045zm11.963.008a2 2 0 0 1 .612.094 1.6 1.6 0 0 1 .507.277l-.386.546a1.6 1.6 0 0 0-.39-.205 1.2 1.2 0 0 0-.388-.07.35.35 0 0 0-.208.052.15.15 0 0 0-.07.127v.008a.16.16 0 0 0 .022.084.2.2 0 0 0 .076.066 1 1 0 0 0 .147.06q.093.03.236.061a3 3 0 0 1 .43.122 1.3 1.3 0 0 1 .328.17.7.7 0 0 1 .207.24.74.74 0 0 1 .071.337v.008a.9.9 0 0 1-.081.382.8.8 0 0 1-.229.285 1 1 0 0 1-.353.18 1.6 1.6 0 0 1-.46.061 2.2 2.2 0 0 1-.71-.116 1.7 1.7 0 0 1-.593-.346l.43-.514q.416.335.9.335a.46.46 0 0 0 .236-.05.16.16 0 0 0 .082-.142v-.008a.15.15 0 0 0-.02-.077.2.2 0 0 0-.073-.066.8.8 0 0 0-.143-.062 3 3 0 0 0-.233-.062 5 5 0 0 1-.413-.113 1.3 1.3 0 0 1-.331-.16.7.7 0 0 1-.222-.243.73.73 0 0 1-.082-.36v-.008a.9.9 0 0 1 .074-.359.8.8 0 0 1 .214-.283 1 1 0 0 1 .34-.185 1.4 1.4 0 0 1 .448-.066zm-9.358.025h.742l1.183 2.81h-.825l-.203-.499H8.623l-.198.498h-.81zm2.197.02h.814l.663 1.08.663-1.08h.814v2.79h-.766v-1.602l-.711 1.091h-.016l-.707-1.083v1.593h-.754zm3.469 0h2.235v.658h-1.473v.422h1.334v.61h-1.334v.442h1.493v.658h-2.255zm-5.3.897-.315.793h.624zm-1.145 5.19h8.014l-4.09 1.348z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/epson.svg������������������������������������0000664�0000000�0000000�00000002125�14753064456�0024747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.616 13.915c-1.029 0-1.428-.952-1.428-1.915 0-.975.398-1.927 1.428-1.927s1.429.952 1.429 1.927c0 .963-.399 1.915-1.429 1.915m0-4.805c-1.627 0-2.567 1.218-2.567 2.89s.94 2.89 2.567 2.89 2.568-1.218 2.568-2.89-.94-2.89-2.568-2.89M0 9.266h4.085v.974H1.141v1.207h2.745v.952H1.141v1.351h2.944v.975H0zm6.73 2.844H5.701v-1.871H6.73c.709 0 1.185.311 1.185.941 0 .621-.476.93-1.185.93m-2.168 2.614h1.14v-1.639H6.73c1.384 0 2.314-.687 2.314-1.904 0-1.229-.931-1.915-2.314-1.915H4.562zm16.206-5.458h-1.162v5.458h1.118v-2.215c0-.598-.022-1.14-.044-1.605.133.267.531 1.085.708 1.396l1.45 2.425H24V9.266h-1.106v2.158c0 .599.022 1.196.044 1.672-.133-.276-.531-1.096-.72-1.406zM10.34 12.919c0 .73.608 1.019 1.251 1.019.421 0 1.118-.122 1.118-.687 0-.598-.842-.709-1.649-.919-.853-.232-1.672-.543-1.672-1.561 0-1.13 1.063-1.661 2.059-1.661 1.152 0 2.204.498 2.204 1.771h-1.13c-.044-.664-.554-.83-1.129-.83-.388 0-.875.154-.875.619 0 .421.277.487 1.661.842.398.11 1.66.354 1.66 1.595 0 1.018-.797 1.771-2.292 1.771-1.217 0-2.357-.598-2.347-1.959z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/equinixmetal.svg�����������������������������0000664�0000000�0000000�00000000540�14753064456�0026327�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.399 7.789v7.005l-1.599.56V7.231L16 5.557v11.472l-1.601.557V4.996L12 4.16l-2.4.836v12.59l-1.599-.557V5.557L3.2 7.232v8.121l-1.599-.56V7.79L0 8.349v7.582l4.801 1.676v-9.24l1.6-.558v10.356L11.2 19.84V6.133l.8-.28.8.28v13.708l4.801-1.676V7.809l1.599.558v9.24L24 15.93V8.349z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/eraser.svg�����������������������������������0000664�0000000�0000000�00000000405�14753064456�0025103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.186 7.328c-.248 0-.482.168-.608.443l-3.476 7.51c-.283.61.057 1.39.605 1.39h10.682V7.329zm8.425 0-.002 9.344h7.205c.248 0 .482-.168.608-.443l3.476-7.51c.283-.61-.057-1.39-.605-1.39Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ericsson.svg���������������������������������0000664�0000000�0000000�00000001443�14753064456�0025452�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.76 1.593A2.36 2.36 0 0 0 19.572.225c-.54-.27-1.188-.336-2.256.02L5.187 4.29c-1.068.357-1.548.795-1.818 1.338a2.36 2.36 0 0 0 1.059 3.174c.54.27 1.188.336 2.256-.021l12.129-4.044c1.068-.354 1.548-.795 1.818-1.338a2.35 2.35 0 0 0 .13-1.806zm0 7.485a2.36 2.36 0 0 0-1.188-1.368c-.54-.27-1.188-.336-2.256.021L5.187 11.775c-1.068.357-1.548.795-1.818 1.338a2.36 2.36 0 0 0 1.059 3.174c.54.27 1.188.336 2.256-.021l12.129-4.041c1.068-.357 1.548-.795 1.818-1.341a2.35 2.35 0 0 0 .13-1.806zm0 7.488a2.36 2.36 0 0 0-1.188-1.368c-.54-.27-1.188-.336-2.256.021L5.187 19.263c-1.068.357-1.548.795-1.818 1.338a2.36 2.36 0 0 0 1.059 3.174c.54.27 1.188.336 2.256-.02l12.129-4.045c1.068-.354 1.548-.795 1.818-1.338a2.35 2.35 0 0 0 .13-1.806z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/erlang.svg�����������������������������������0000664�0000000�0000000�00000000734�14753064456�0025077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.859 7.889c.154-1.863 1.623-3.115 3.344-3.119 1.734.004 2.986 1.256 3.029 3.119zm12.11 11.707c.802-.86 1.52-1.872 2.172-3.03l-3.616-1.807c-1.27 2.064-3.127 3.965-5.694 3.977-3.738-.012-5.206-3.208-5.198-7.322h13.966c.019-.464.019-.68 0-.904.091-2.447-.558-4.504-1.737-6.106l-.007.005H24v15.186h-3.039zm-17.206-.001C1.901 17.62.811 14.894.813 11.64c-.002-2.877.902-5.35 2.456-7.232H0v15.187h3.761Z"/></svg>������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/erpnext.svg����������������������������������0000664�0000000�0000000�00000000425�14753064456�0025311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.88 0A2.88 2.88 0 0 0 0 2.88v18.24A2.88 2.88 0 0 0 2.88 24h18.24A2.88 2.88 0 0 0 24 21.12V2.88A2.88 2.88 0 0 0 21.12 0Zm5.04 5.76h8.254v2.146H7.92Zm0 5.033h7.85v2.146h-5.233v2.954h5.703v2.146H7.92Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/esbuild.svg����������������������������������0000664�0000000�0000000�00000000437�14753064456�0025256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0M6.718 5.282 13.436 12l-6.718 6.718-2.036-2.036L9.364 12 4.682 7.318zm7.2 0L20.636 12l-6.718 6.718-2.036-2.036L16.564 12l-4.682-4.682z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/esea.svg�������������������������������������0000664�0000000�0000000�00000000365�14753064456�0024544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.054 2.767 8.95 9.511 0 9.65l5.832 4.47L1.042 21l8.491-4.088 5.711 4.322V14.12L24 9.796l-17.255 4.02a12.6 12.6 0 0 0 1.589-1.955 5.5 5.5 0 0 0 .617-1.786l5.593-.15z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/eslgaming.svg��������������������������������0000664�0000000�0000000�00000000550�14753064456�0025571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12c0 6.628 5.373 12 12 12s12-5.372 12-12c0-6.627-5.373-12-12-12m.455 2.163a9.8 9.8 0 0 1 5.789 2.222L4.384 18.244a10 10 0 0 1-1.06-1.582zm7.191 3.632a9.8 9.8 0 0 1 2.192 5.806l-14.45 9.1a10 10 0 0 1-1.592-1.055zm1.979 8.292c-.888 4.45-5.619 8.892-11.9 7.494Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/eslint.svg�����������������������������������0000664�0000000�0000000�00000001266�14753064456�0025126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.257 9.132 11.816 6.5a.37.37 0 0 1 .368 0l4.559 2.632a.37.37 0 0 1 .184.32v5.263a.37.37 0 0 1-.184.319l-4.559 2.632a.37.37 0 0 1-.368 0l-4.559-2.632a.37.37 0 0 1-.184-.32V9.452a.37.37 0 0 1 .184-.32m16.595 2.398-5.446-9.475c-.198-.343-.564-.596-.96-.596H6.555c-.396 0-.762.253-.96.596L.149 11.509a1.13 1.13 0 0 0 0 1.117l5.447 9.398c.197.342.563.517.959.517h10.893c.395 0 .76-.17.959-.512l5.446-9.413a1.07 1.07 0 0 0 0-1.086m-4.51 4.556a.4.4 0 0 1-.204.338L12.2 20.426a.4.4 0 0 1-.392 0l-6.943-4.002a.4.4 0 0 1-.205-.338V8.08c0-.14.083-.269.204-.338L11.8 3.74c.12-.07.272-.07.392 0l6.943 4.003a.4.4 0 0 1 .206.338z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/esotericsoftware.svg�������������������������0000664�0000000�0000000�00000001317�14753064456�0027215�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.97 9.88C22.3 2.25 15.71-.68 10.15.13 4.37.97-.62 5.83.06 13.34c.28 3.08 1.85 5.97 4.17 7.94 2.58 2.2 6.08 3.16 9.39 2.53.08-.02.14-.1.12-.18 0-.04-.08-.06-.16-.05-3.18.42-6.51-.65-8.87-2.86a11.22 11.22 0 0 1-3.48-7.09C.66 6.99 5.42 2.51 10.64 1.97c4.25-.44 8.79 1.91 10.68 6.76.16.41-.08.81-.5.89-2.92.54-12.51 2.34-14.43 2.7-.17.03-.32-.08-.32-.26-.12-6.02 5.96-8.55 10.45-4.79.06.05.26.01.32-.05.03-.03.04-.22-.02-.28-5.39-5.33-13.24-.85-12.8 6.39.03.44.43.74.85.69l12.33-1.64c0 .08.02.14.02.14.37 6.24-5.86 8.98-10.43 5.15-.06-.05-.24-.03-.29.03-.02.03-.07.19 0 .25 5.25 5.19 12.85 1.06 12.81-5.86l3.38-.45c.85-.11 1.47-.91 1.28-1.77Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/esphome.svg����������������������������������0000664�0000000�0000000�00000005310�14753064456�0025262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.253 2.755c-.676 0-1.231.555-1.231 1.232v.976h-.083a.72.72 0 0 0-.717.716v11.682H.71v-.57h3.544a.355.355 0 0 0 .354-.354v-1.279a.355.355 0 0 0-.354-.355H.709v-.565h3.544a.355.355 0 0 0 .354-.355v-1.278a.355.355 0 0 0-.354-.355H.709v-.569h3.544a.355.355 0 0 0 .354-.355V10.05a.355.355 0 0 0-.354-.354H.709V6.113a.355.355 0 0 0-.355-.355.355.355 0 0 0-.354.355v3.937a.355.355 0 0 0 .354.355h3.544v.566H.354a.355.355 0 0 0-.354.355v1.279a.355.355 0 0 0 .354.354h3.544v.57H.354a.355.355 0 0 0-.354.354v1.275a.355.355 0 0 0 .354.355h3.544v.57H.354a.355.355 0 0 0-.354.354v1.278a.355.355 0 0 0 .354.355h4.868v.086c0 .389.323.716.717.716h.083v1.14c0 .677.555 1.233 1.231 1.233.677 0 1.233-.556 1.233-1.232v-1.14h.477v1.137c0 .676.556 1.232 1.232 1.232.677 0 1.232-.556 1.232-1.232v-1.138h.481v1.138c0 .676.556 1.232 1.232 1.232s1.233-.556 1.233-1.232v-1.138h.48v1.138c0 .676.556 1.232 1.232 1.232.677 0 1.232-.556 1.232-1.232v-1.138h.481v1.138c0 .676.556 1.232 1.232 1.232s1.233-.556 1.233-1.232v-1.138h.477v1.138c0 .676.555 1.232 1.231 1.232.677 0 1.233-.556 1.233-1.232v-1.138h.079c.39 0 .717-.323.717-.716V5.679a.723.723 0 0 0-.714-.716h-.082v-.979c0-.676-.556-1.231-1.232-1.23h-.001a1.24 1.24 0 0 0-1.231 1.233v.976h-.477v-.98c0-.675-.557-1.23-1.233-1.228h-.001c-.676 0-1.23.556-1.23 1.232v.976h-.482v-.976c0-.677-.555-1.232-1.232-1.232s-1.232.555-1.232 1.232v.976h-.48v-.976c0-.677-.557-1.232-1.233-1.232s-1.232.555-1.232 1.232v.976h-.48v-.976c0-.677-.556-1.232-1.233-1.232-.676 0-1.232.555-1.232 1.232v.976h-.477v-.976c0-.677-.556-1.232-1.233-1.232m0 .715a.51.51 0 0 1 .517.517v.976H6.737v-.976a.51.51 0 0 1 .516-.517m2.942 0a.51.51 0 0 1 .517.517v.976H9.679v-.976a.51.51 0 0 1 .516-.517m2.945 0a.51.51 0 0 1 .516.517v.976h-1.032v-.976a.51.51 0 0 1 .516-.517m2.945 0a.51.51 0 0 1 .517.517v.976h-1.033v-.976a.51.51 0 0 1 .516-.517m2.945 0h.001a.507.507 0 0 1 .515.513v.98h-1.032v-.976a.51.51 0 0 1 .516-.517m2.942.001h.001a.507.507 0 0 1 .515.513v.979h-1.032v-.976a.51.51 0 0 1 .516-.516M6.018 5.758h17.186v12.319H6.018zm8.63 2.777a.32.32 0 0 0-.234.095l-3.776 3.78a.322.322 0 0 0 .228.55h.62v2.225a.32.32 0 0 0 .323.322h5.67a.32.32 0 0 0 .322-.322V12.96h.621a.322.322 0 0 0 .228-.55l-.856-.859v-1.533a.32.32 0 0 0-.322-.323h-.591a.32.32 0 0 0-.323.323v.3L14.87 8.63a.32.32 0 0 0-.221-.095zm-7.91 10.337H7.77v1.14a.51.51 0 0 1-.517.517.51.51 0 0 1-.516-.516zm2.94 0h1.034v1.138a.51.51 0 0 1-.517.516.51.51 0 0 1-.516-.516zm2.946 0h1.032v1.138a.51.51 0 0 1-.516.516.51.51 0 0 1-.516-.516zm2.945 0h1.033v1.138a.51.51 0 0 1-.517.516.51.51 0 0 1-.516-.516zm2.945 0h1.032v1.138a.51.51 0 0 1-.516.516.51.51 0 0 1-.516-.516zm2.941 0h1.033v1.138a.51.51 0 0 1-.517.516.51.51 0 0 1-.516-.516z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/espressif.svg��������������������������������0000664�0000000�0000000�00000002040�14753064456�0025622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.926 19.324a7.6 7.6 0 0 0-2.983-6.754 7.44 7.44 0 0 0-3.828-1.554.697.697 0 0 1-.606-.731.674.674 0 0 1 .743-.617 8.97 8.97 0 0 1 8 9.805 8 8 0 0 1-.298 1.542l1.989.56a11 11 0 0 0 1.714-.651 12 12 0 0 0 .217-2.343A12.57 12.57 0 0 0 7.212 6.171a5.5 5.5 0 0 0-2 0 4.35 4.35 0 0 0-2.16 1.337 4.274 4.274 0 0 0 1.909 6.856 10 10 0 0 0 1.074.195 4.01 4.01 0 0 1 3.337 3.954 3.97 3.97 0 0 1-.64 2.16l1.371.88a10 10 0 0 0 2.057.342 7.5 7.5 0 0 0 .754-2.628m.16 4.73A13.073 13.073 0 0 1 .001 10.983 12.98 12.98 0 0 1 3.83 1.737l.743.697a12.067 12.067 0 0 0 0 17.141 12.067 12.067 0 0 0 17.141 0l.697.697a12.97 12.97 0 0 1-9.336 3.726M24 10.993A10.993 10.993 0 0 0 12.949 0c-.389 0-.766 0-1.143.057l-.252.732a18.91 18.91 0 0 1 11.588 11.576l.731-.263c0-.366.069-.732.069-1.143m-1.269 5.165A17.53 17.53 0 0 0 7.818 1.27a11.1 11.1 0 0 0-2.457 1.77v1.635A13.92 13.92 0 0 1 19.268 18.57h1.634a11.7 11.7 0 0 0 1.771-2.446M7.92 17.884a1.691 1.691 0 1 1-1.69-1.691 1.69 1.69 0 0 1 1.69 1.691"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/esri.svg�������������������������������������0000664�0000000�0000000�00000010035�14753064456�0024564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.64.003C10.057.04 8.595.448 7.103 1.065c-2.07.873-4.706 2.881-6.312 6.67-.375 1.057-1.878 6.091.792 10.413 2.167 3.507 4.957 5.177 8.371 5.654 3.407.475 5.255.064 7.41-.893 5.039-2.236 8.887-10.634 5.038-16.72-1.519-2.81-5.498-5.274-9.855-5.084v.002c-1.03-.032-1.637.102-2.246.22-.182-.047-.525.003-.545.4 0 .213.069.38.204.477s1.264.93 2.094 1.813c-.398.044-.83.116-1.274.208-.495-1.07-2.086-.097-3.144-.055-.123.007-.242.024-.365.03-.116-.894-.2-1.821-.178-2.473C8.464.951 11.115.378 12.915.35l.315-.008c.264-.003.285-.212.036-.246q-.838-.114-1.627-.093m-.193 1.53c3.912-.017 7.35 1.641 8.925 3.57-.56-.291-1.767-.707-2.258-.816-.265-.27-.599-.49-.888-.676-.229-.146-.514-.092-.396.163.045.1.22.267.362.435-.835-.23-3.055-.407-4.111-.31-.69-.775-1.477-1.716-2.423-2.34q.396-.024.79-.026m-4.856.426c-.013.339.074 1.328.186 2.282q-.725.072-1.433.177A10.2 10.2 0 0 0 2.707 7.88c-.1-.892-.152-1.635-.113-2.092C3.705 4.231 5.214 2.715 6.59 1.96m8.418 2.65c.488.016.988.051 1.466.1-.859.307-1.237 1.062-1.658 1.662-.008.013-.024.023-.034.034a20 20 0 0 0-1.165-1.787c.426-.025.903-.027 1.391-.01m-2.375.12a13.3 13.3 0 0 1 1.48 2.153c-.681.33-1.59.582-1.96 1.11-.153.22-.19.519-.196.842a20 20 0 0 0-3.283 1.089 35 35 0 0 1-.951-3.253c1.097-1.048 2.38-1.217 2.91-1.628a15 15 0 0 1 2-.313m6.89.634c.45.171 1.029.408 1.486.657.347.437 1.34 1.418 1.871 4.165.478 2.474-.05 4.354-.212 4.898l-.163.64a15 15 0 0 1-.705 1.882c.077-.561.145-2.019.125-2.312.136.042.425-.122.473-.286.048-.165-.477-.42-.477-.42a18 18 0 0 0-.145-2.286c.12-.195.242-.383.367-.555a10 10 0 0 0-.157-1.333c.106.035.202.062.273.063.24.003.24-.161.163-.253-.049-.059-.278-.2-.545-.355a10.2 10.2 0 0 0-2.354-4.505M1.869 7.005s.051.896.095 1.55c0 0-.662.751-1 1.347.135-1.221.423-1.85.905-2.897m5.352.232c.198 1 .436 1.829.751 2.978-1.187.524-3.286 1.818-4.213 2.516-.168-.425-.343-1.028-.5-1.647.212-.624.643-1.06 1.25-1.121 1.04-.104 1.93-1.652 2.664-2.665.016-.023.033-.04.048-.06M2.07 9.478l.014.111a10.2 10.2 0 0 0-.34 2.294c.314.33.683.88 1.09 1.446-.262.195-.767.543-.886.628-.347.247-.342.636-.095.858.137.122.417.07.52-.01.303-.242.555-.433.902-.65.127.332.247.632.363.918-.148.16-.253.37-.288.677-.115.992.828 1.77 1.623 1.997.03.01.05.013.079.02.042.064.08.124.125.19a5 5 0 0 0-.888.898c-.112.146-.237.365-.136.408.104.042.454 0 .61-.028.395-.077.699-.514.971-.675.328.452.861 1.032 1.416 1.591.024.102.046.21.074.3.106.34.25.679.42 1.01.4.187.815.34 1.24.475a7 7 0 0 0-.527.61c-3.426-1.073-5.963-3.96-6.869-6.988a14.8 14.8 0 0 1-.551-5.48c.047.01.157.061.32.016.115-.079.524-.363.813-.616m9.891.182c-.006.282-.037.55-.153.765-.166.31-.09 1.209.113 1.503.639.93 1.701.412 2.5.747.366.153.61.407.815.71a13.6 13.6 0 0 0-4.832 1.196c-.781-1.66-1.455-3.83-1.455-3.83v-.003A16.4 16.4 0 0 1 11.96 9.66m-3.757 1.418c.423 1.262 1.028 2.95 1.447 3.852l-.183.093a35 35 0 0 0-2.757-.66c-.842-.173-.873-.128-1.82.147q-.203.057-.392.113a31 31 0 0 1-.376-1.018 23 23 0 0 1 4.08-2.527m13.136 1.976c.051.463.087.916.109 1.325a8 8 0 0 0-.656-.249c.166-.344.35-.712.547-1.076m-5.611 1.175c.16.28.34.56.585.81.641.655-.372 1.595-.08 3.449h-.003c-.3.032-.597.069-.86.109-.652.102-1.492.322-2.273.613-.449-.713-1.65-2.448-2.258-3.757 1.221-.6 2.926-1.104 4.889-1.224m4.755.556c.354.1.686.207.975.325.036.521.035 2.31-.067 3.184a3.5 3.5 0 0 1-.537.757 8 8 0 0 0-1.076-.32c.066-.079.139-.153.204-.235.227-1.52-.286-2.007.355-3.398zm-9.67 2.378c.482.811 1.057 1.693 1.502 2.383-.693.336-1.499.856-2.26 1.427.052-.878.07-1.746.247-2.209.248-.647.44-1.128.511-1.6m8.545 2.053c.463.054.926.131 1.208.202-.627.793-1.492 1.454-2.413 2.028.02-.345.033-.78.044-1.182.412-.32.802-.668 1.161-1.048m-2.952.01a6.5 6.5 0 0 0 .378.927c.16.324.347.56.549.721.072-.045.139-.096.21-.143-.005.355-.015.716-.036 1.064-.243.16-1.41.688-1.868.836a20 20 0 0 1-2.066-2.71c.715-.3 1.815-.567 2.833-.694m-3.628 1.002c.34.533 1.46 2.123 1.91 2.635-.815.142-1.956.249-2.86.21 0 0-1.356-.9-1.7-1.246.68-.565 1.781-1.235 2.65-1.599m-3.156 2.053c.396.263.82.564 1.157.758-.52-.06-1.131-.074-1.585-.229.131-.171.265-.383.428-.528"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/etcd.svg�������������������������������������0000664�0000000�0000000�00000002440�14753064456�0024542�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.985 10.715A1.565 1.565 0 1 1 9.42 9.151a1.566 1.566 0 0 1 1.565 1.564m2.023 0a1.565 1.565 0 1 0 1.565-1.564 1.564 1.564 0 0 0-1.565 1.564m10.653 1.698a4 4 0 0 1-.346.013 4.5 4.5 0 0 1-1.986-.462 18.5 18.5 0 0 0 .267-3.515 18 18 0 0 0-2.274-2.695 4.5 4.5 0 0 1 1.603-1.717l.294-.182-.23-.26a12 12 0 0 0-4.182-3.05l-.319-.138-.08.336a4.5 4.5 0 0 1-1.135 2.058 18 18 0 0 0-3.277-1.35 18 18 0 0 0-3.272 1.348A4.5 4.5 0 0 1 7.594.745L7.512.408l-.317.139a12.1 12.1 0 0 0-4.182 3.05l-.23.259.294.182a4.5 4.5 0 0 1 1.599 1.708 18.3 18.3 0 0 0-2.27 2.685 18.4 18.4 0 0 0 .26 3.538 4.5 4.5 0 0 1-1.975.458 4 4 0 0 1-.346-.013L0 12.386l.032.344a11.9 11.9 0 0 0 1.609 4.924l.175.298.263-.223a4.5 4.5 0 0 1 2.132-.998 18.3 18.3 0 0 0 1.824 2.971 18.5 18.5 0 0 0 3.457.85 4.5 4.5 0 0 1-.287 2.36l-.132.319.338.075a12 12 0 0 0 2.59.286l2.59-.286.338-.075-.131-.32a4.5 4.5 0 0 1-.287-2.361 18.5 18.5 0 0 0 3.443-.848 18 18 0 0 0 1.826-2.974 4.5 4.5 0 0 1 2.143.999l.263.223.175-.296a11.9 11.9 0 0 0 1.607-4.924l.032-.343zm-7.958 4.209a14 14 0 0 1-7.416 0 14.2 14.2 0 0 1-2.256-7.013 14.1 14.1 0 0 1 2.687-2.558 14.3 14.3 0 0 1 3.279-1.784 14.4 14.4 0 0 1 3.27 1.779 14.2 14.2 0 0 1 2.7 2.576 14.3 14.3 0 0 1-.675 3.652 14.4 14.4 0 0 1-1.59 3.348z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ethereum.svg���������������������������������0000664�0000000�0000000�00000000264�14753064456�0025443�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.944 17.97 4.58 13.62 11.943 24l7.37-10.38-7.372 4.35zM12.056 0 4.69 12.223l7.365 4.354 7.365-4.35z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ethers.svg�����������������������������������0000664�0000000�0000000�00000000713�14753064456�0025116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 17.443c-12.547 1.64-21.503 3.61-21.636-4.474 0 0 .274-3.133 4.116-3.33 0 0 .13-2.782 3.065-3.097 1.578-.171 3.37 1.454 3.565 3.165 0 0 3.883-.719 4.051 3.067.059 1.32-.238 3.563-3.983 3.465 0 0-2.167-.294-2.461-3.644-.61 6.485 8.767 6.108 8.902.218.06-2.547-1.572-5.167-5.246-4.676-2.014-5.066-7.375-4.775-9.37-.076-2.854 0-5.035 2.196-5.003 5.064.11 9.23 12.954 6.447 24 4.318"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ethiopianairlines.svg������������������������0000664�0000000�0000000�00000001125�14753064456�0027331�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.308 11.603c2.39-1.456 4.239-2.53 4.966-4.355 1.544-4.17.363-5.865-1.104-4.564C20.293 4.506 11.478 13.754.195 20.257c-.172.098-.2.322.558.091 4.48-1.572 14.23-6.705 17.555-8.745m1.823-.333c.942-.586 1.976-.237.316 2.466-1.126 1.662-1.905 2.63-4.92 3.544-2.075.785-9.768 3.024-15.157 3.675-.401.033-.524-.114-.128-.246 5.135-1.306 17.984-8.21 19.889-9.44zm-8.977 10.47c2.204-.072 3.862.242 5.725-1.73 1.95-2.02 1.72-3.07.544-2.743-1.745.524-8.111 2.69-15.622 3.735-.338.046-.256.226.14.25 5.018.474 6.911.51 9.213.488"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/etihadairways.svg����������������������������0000664�0000000�0000000�00000006445�14753064456�0026472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.07 7.833s-.194.44-.533.66l.002.024c.007.067.046.092.084.117.046.03.091.06.096.168.005.08 0 1.734 0 1.734l-.43.45-.432-.45c0-.026-.006-1.66 0-1.736.005-.107.048-.136.094-.166.038-.025.078-.05.086-.12v-.033c-.307-.214-.533-.646-.533-.646v2.922l.517.51-.43.431.698.696.693-.696-.431-.431.52-.551zm.52 0v3.422h.424s-.008-2.39 0-2.469c.005-.104.06-.134.117-.164.048-.025.097-.05.107-.123v-.033c0-.04-.029-.054-.066-.07a1.2 1.2 0 0 1-.236-.17c-.219-.188-.271-.276-.272-.278zm-6.219.016s-.273.36-.648.636l.002.014v.023c.01.07.059.096.107.122.057.03.127.057.127.162v2.449h2.72v.05a.4.4 0 0 0-.003.067c0 .194.069.328.191.377a.3.3 0 0 0 .15.035q.101 0 .194-.06l.047-.03-.043-.035c-.08-.06-.107-.237-.106-.37v-.034h1.014V9.003s-.135.301-.623.654c0 0 .016.098.102.145.126.07.117.136.117.136v.903h-.606v-.09c-.001-.228-.07-.758-.681-.758-.177.005-.37.01-.563.01-.362 0-.552-.04-.598-.127l-.021-.037-.033.023c-.066.043-.106.124-.106.223.002.146.082.307.227.318.09.004.221.006.353.006.236 0 .47-.004.471-.004.505.004.514.216.518.319v.117h-2.31zm2.76.416-.32.322.32.32.322-.32.32.32.323-.322-.03-.025-.293-.295-.32.32-.03-.025zm-6.37.716v1.229q1.075 0 2.15-.002c.065.001.154.02.155.156v.983c0 .008-.002.21-.212.21-.338 0-.315-.17-.317-.17l.002-.552H6.762v.42h1.394v.34s-.044.36.705.36c.61 0 .63-.38.63-.384l.001-1.406c0-.08-.022-.34-.271-.344H7.096v-.154c0-.035.031-.047.056-.063.125-.076.145-.144.106-.17-.251-.143-.496-.453-.496-.453zm8.528 2.426.287.291-.287.29-.29-.29zm1.045 1.713-.422.442.469.496.484.488h-.818l-.447.469.095.066.106-.057.031-.01.076-.001 1.399.002.964 1.03s-.015.018-.1.018h-.036v.104h1.092zm2.57 0v.086s.112.074.116.074v.317h2.552c.516 0 .894.069 1.123.203.365.213.543.49.543.846q0 .268-.14.484a1.1 1.1 0 0 1-.426.363c-.247.128-.625.194-1.121.194h-1.33v-1.87h-.729v2.145l-.004.031-.02.022-.097.06v.088h2.184q.632 0 .98-.07.477-.101.836-.344.366-.245.518-.56a1.24 1.24 0 0 0 .056-.877c-.115-.365-.38-.664-.785-.89-.365-.204-.883-.302-1.584-.302zm-14.81.002-.444.557.09.031.014.004.137-.07a.2.2 0 0 1 .117-.038h1.758v2.356l-.008.033a.1.1 0 0 1-.022.018l-.1.066v.086h.981v-.088l-.101-.062-.024-.022-.002-.027v-2.36h1.56c.06.007.068.02.068.022v.084h.088l.483-.59zm4.806 0v.088l.098.064q.035.024.035.041v2.643l-.006.033-.027.022-.1.064v.088h.975v-.088l-.09-.062q-.017-.014-.021-.014h-.002v-2.682l.002-.027.023-.021.088-.06v-.089zm1.332 0v.088l.096.064q.012.009.026.014v2.672l-.006.035a.1.1 0 0 1-.018.018l-.098.066v.086h.983v-.088l-.104-.064q-.022-.014-.025-.014v-2.68l.002-.029q0-.003.023-.016l.094-.056.01-.006v-.09zm.854 1.65.105.034.137-.078a.2.2 0 0 1 .06-.03.2.2 0 0 1 .057-.008h2.051v.942l.733-.787v-1.557c0-.011.015-.021.015-.021l.106-.055v-.09h-.983v.088l.1.064c.029.018.031.032.031.041v.893H11.53zm-8.66-1.646c-.31 0-.553.01-.72.03a2.4 2.4 0 0 0-.893.292c-.329.186-.564.424-.7.705q-.114.24-.113.53c0 .49.264.882.785 1.164.235.129.5.218.787.265q.324.053.877.053h2.03l.484-.588h-.041l-.108.004-.126.072c-.035.021-.056.028-.06.03l-2.18.005q-.75 0-1.126-.19c-.376-.196-.56-.475-.56-.852q0-.256.144-.477a1.26 1.26 0 0 1 .85-.54c.102-.018.2-.02.265-.02h1.125c.068-.003.057.012.06.019l-.013.078h.092l.483-.58zm13.289.553-2.371 2.478h1.092v-.103h-.04q-.026-.002-.048-.006a.1.1 0 0 1-.041-.012l1.832-1.906zm-14.576.58-.32.476h2.867c.053.006.072.02.074.03l-.012.084h.098l.472-.59Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/etsy.svg�������������������������������������0000664�0000000�0000000�00000001250�14753064456�0024605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.559 2.445c0-.325.033-.52.59-.52h7.465c1.3 0 2.02 1.11 2.54 3.193l.42 1.666h1.27c.23-4.728.43-6.784.43-6.784s-3.196.36-5.09.36H6.635L1.521.196v1.37l1.725.326c1.21.24 1.5.496 1.6 1.606 0 0 .11 3.27.11 8.64 0 5.385-.09 8.61-.09 8.61 0 .973-.39 1.333-1.59 1.573l-1.722.33V24l5.13-.165h8.55c1.935 0 6.39.165 6.39.165.105-1.17.75-6.48.855-7.064h-1.2l-1.284 2.91c-1.005 2.28-2.476 2.445-4.11 2.445h-4.906c-1.63 0-2.415-.64-2.415-2.05V12.8s3.62 0 4.79.096c.912.064 1.463.325 1.76 1.598l.39 1.695h1.41l-.09-4.278.192-4.305h-1.391l-.45 1.89c-.283 1.244-.48 1.47-1.754 1.6-1.666.17-4.815.14-4.815.14V2.45h-.05z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/europeanunion.svg����������������������������0000664�0000000�0000000�00000002222�14753064456�0026510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.373 1.94 10.36 1.2h1.253L12 0l.387 1.2h1.253l-1.013.74.386 1.207L12 2.4l-1.013.747Zm1.254 20.86.386 1.2L12 23.26l-1.013.74.386-1.2-1.013-.74h1.253L12 20.853l.387 1.207h1.253ZM1.64 12.8l-1.013.747.386-1.2L0 11.627h1.253l.387-1.2.387 1.2h1.26l-1.02.746.386 1.2-1.013-.746Zm5.807-9.467.386 1.2L6.82 3.8l-1.013.74.386-1.2L5.18 2.6h1.253l.387-1.2.387 1.2H8.46Zm-4.78 3.08.386-1.2.394 1.2h1.22l-1.014.747.387 1.2-1.02-.747L2 8.36l.387-1.2-1.014-.747ZM1.387 16.84h1.28l.386-1.2.394 1.2h1.22l-1.014.747.387 1.2-1.02-.74-1.02.74.387-1.2-1.014-.747Zm4.806 4.56-1.013-.733h1.253l.387-1.2.387 1.2H8.46l-1.013.733.386 1.2-1.013-.74-1.013.74Zm16.794-9.027.386 1.2-1.013-.746-1.027.746.387-1.2-1.02-.746H22l.387-1.2.386 1.2H24Zm-6.434-9.04L15.54 2.6h1.253l.387-1.2.387 1.2h1.253l-1.013.733.386 1.2L17.18 3.8l-1.013.74.386-1.2Zm4 3.074.394-1.2.386 1.2h1.254l-.987.753.387 1.2-1.014-.747-1.02.747.387-1.2-1.007-.747Zm.78 10.433h1.254l-.987.747.387 1.2-1.014-.74-1.02.74.387-1.2-1.007-.747h1.254l.393-1.2.387 1.2zm-2.513 3.827-1.013.733.386 1.2-1.013-.74-1.013.74.386-1.2-1.013-.733h1.253l.387-1.2.387 1.2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/eventbrite.svg�������������������������������0000664�0000000�0000000�00000000640�14753064456�0025772�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.542 5.81c2.653-.6 5.3.487 6.775 2.54L5.591 11c.405-2.479 2.298-4.591 4.951-5.19m6.84 9.746a6.47 6.47 0 0 1-3.919 2.634c-2.67.604-5.335-.501-6.804-2.582l11.763-2.657 1.915-.433L24 11.691a11.6 11.6 0 0 0-.305-2.333C22.205 3.04 15.76-.9 9.303.558 2.846 2.017-1.18 8.322.31 14.642s7.935 10.259 14.392 8.8c3.805-.86 6.765-3.402 8.25-6.638z"/></svg>������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/eventstore.svg�������������������������������0000664�0000000�0000000�00000003027�14753064456�0026023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.785 3.414a11 11 0 0 1 1.339-.666 10.3 10.3 0 0 1 3.036-.765l1.127 1.274-.525 1.319a8.8 8.8 0 0 0-2.879 1.11l-.195.12-.178-1.737-1.725-.66zm-.49.31 1.789.69.188 1.71a7.3 7.3 0 0 0-2.264 2.73 4 4 0 0 0-.139.3l-1.26-1.529-2.054.434a10.4 10.4 0 0 1 2.063-2.96q.772-.782 1.667-1.376zm11.782 12.052q.292-.485.48-.99l1.938 2.35 3.255-.701a13 13 0 0 1-.662 1.507 11.3 11.3 0 0 1-2.648 3.36 10.6 10.6 0 0 1-3.771 2.107q-.041.012-.083.026l-2.411-2.039.629-2.775.051-.021c1.379-.6 2.457-1.529 3.224-2.835v.011zm4.076-10.971c.199.273.384.56.563.854a12.7 12.7 0 0 1 1.539 4.004c.271 1.41.315 2.829.12 4.252a13 13 0 0 1-.464 2.002l-3.255.699-1.95-2.357a5.9 5.9 0 0 0 .06-2.709 5.77 5.77 0 0 0-1.454-2.85l3.509-.42 1.306-3.476zM1.338 8.584l2.1-.444 1.236 1.509c-.391 1.084-.48 2.21-.285 3.38.045.334.119.656.21.969l-2.22-.505-1.59 1.881a11.3 11.3 0 0 1-.283-2.554q.003-2.176.807-4.199l.016-.039zm3.442 5.934a7.4 7.4 0 0 0 1.409 2.316c.465.539.99.975 1.563 1.319l-2.2 1.261.12 2.864a10.8 10.8 0 0 1-2-1.605 10.9 10.9 0 0 1-2.34-3.6c-.149-.375-.27-.75-.375-1.125l1.635-1.919 2.22.509zm3.452 3.897q.71.354 1.518.54a6.46 6.46 0 0 0 3.529-.141l-.625 2.757 2.387 2.02a12.6 12.6 0 0 1-3.659.401 11.5 11.5 0 0 1-5.231-1.435l-.119-2.882zM20.815 4.364 19.502 7.85l-3.614.435a3 3 0 0 0-.327-.255 7.8 7.8 0 0 0-4.004-1.575c-.346-.029-.675-.029-.99-.029l1.26-3.226L9.1.095c.827-.09 1.637-.104 2.459-.09q.734.021 1.459.113c.68.089 1.351.239 2.015.42 1.405.4 2.685 1.034 3.842 1.93a11.2 11.2 0 0 1 1.94 1.896"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/evernote.svg���������������������������������0000664�0000000�0000000�00000002632�14753064456�0025455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.222 5.393c0 .239-.02.637-.256.895-.257.24-.652.259-.888.259H4.552c-.73 0-1.165 0-1.46.04-.159.02-.356.1-.455.14-.04.019-.04 0-.02-.02L8.38.796c.02-.02.04-.02.02.02-.04.099-.118.298-.138.457-.04.298-.04.736-.04 1.472v2.647zm5.348 17.869c-.67-.438-1.026-1.015-1.164-1.373a2.9 2.9 0 0 1-.217-1.095 3.007 3.007 0 0 1 3-3.004c.493 0 .888.398.888.895a.88.88 0 0 1-.454.776c-.099.06-.237.1-.336.12-.098.02-.473.06-.65.218-.198.16-.356.418-.356.697 0 .298.118.577.316.776.355.358.829.557 1.342.557a2.436 2.436 0 0 0 2.427-2.447c0-1.214-.809-2.29-1.875-2.766-.158-.08-.414-.14-.651-.2a8 8 0 0 0-.592-.1c-.829-.1-2.901-.755-3.04-2.605 0 0-.611 2.785-1.835 3.54-.118.06-.276.12-.454.16-.177.04-.374.06-.434.06-1.993.12-4.105-.517-5.565-2.03 0 0-.987-.815-1.5-3.103-.118-.558-.355-1.553-.493-2.488-.06-.338-.08-.597-.099-.836 0-.975.592-1.631 1.342-1.73h4.026c.69 0 1.086-.18 1.342-.42.336-.317.415-.775.415-1.312V1.354C9.05.617 9.703 0 10.669 0h.474c.197 0 .434.02.651.04.158.02.296.06.533.12 1.204.298 1.46 1.532 1.46 1.532s2.27.398 3.415.597c1.085.199 3.77.378 4.282 3.104 1.204 6.487.474 12.775.415 12.775-.849 6.129-5.901 5.83-5.901 5.83a4.1 4.1 0 0 1-2.428-.736m4.54-13.034c-.652-.06-1.204.2-1.402.697-.04.1-.079.219-.059.278s.06.08.099.1c.237.12.631.179 1.204.239.572.06.967.1 1.223.06.04 0 .08-.02.119-.08.04-.06.02-.18.02-.28-.06-.536-.553-.934-1.204-1.014"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/excalidraw.svg�������������������������������0000664�0000000�0000000�00000010040�14753064456�0025741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.943 19.806a.2.2 0 0 0-.168-.034c-1.26-1.855-2.873-3.61-4.419-5.315l-.252-.284c-.001-.073-.067-.12-.134-.15l-.084-.084c-.05-.1-.169-.167-.286-.1-.47.234-.907.585-1.327.919-.554.434-1.109.87-1.63 1.354a5 5 0 0 0-.588.618c-.084.117-.017.217.084.267-.37.368-.74.736-1.109 1.12a.2.2 0 0 0-.05.134c0 .05.033.1.067.117l.655.502v.016c.924.92 2.554 2.173 4.285 3.527.251.201.52.402.773.602.117.134.234.285.335.418.05.066.169.084.236.033.033.034.084.067.118.1a.24.24 0 0 0 .1.034.15.15 0 0 0 .135-.066.24.24 0 0 0 .033-.1c.017 0 .017.016.034.016a.2.2 0 0 0 .134-.05l3.058-3.327c.12-.116.014-.267 0-.267m-7.628-.134-1.546-1.17-.15-.1c-.035-.017-.068-.05-.102-.067l-.117-.1c.66-.66 1.33-1.308 2-1.956-.488.484-1.463 1.906-1.261 2.373.002 0 .018.042.067.084zm4.1 3.126-1.277-.97a27 27 0 0 0-1.58-1.504c.69.518 1.277.97 1.361 1.053.673.585.638.485 1.093.87l.554.4c-.074.103-.151.148-.151.151m.336.25-.034-.016a1 1 0 0 0 .152-.117zM.588 3.476c.033.217.084.435.117.636.201 1.103.403 2.106.772 2.858l.152.568c.05.217.134.485.219.552a67 67 0 0 0 3.578 2.942.18.18 0 0 0 .219 0s0 .016.016.016a.15.15 0 0 0 .118.05.2.2 0 0 0 .134-.05c1.798-1.989 3.142-3.627 4.1-4.998.068-.066.084-.167.084-.25.067-.067.118-.151.185-.201.067-.067.067-.184 0-.235l-.017-.016c0-.033-.017-.084-.05-.1-.42-.401-.722-.685-1.042-.986a94 94 0 0 1-2.352-2.273c-.017-.017-.034-.034-.067-.034-.336-.117-1.025-.234-1.882-.385-1.277-.216-3.008-.517-4.57-.986 0 0-.101 0-.118.017l-.05.05C.05.714.022.707 0 .718c.017.1.017.167.05.284 0 .033.068.301.068.334zm7.19 4.78-.033.034a.036.036 0 0 1 .033-.034M6.553 2.238c.101.1.521.502.622.585-.437-.2-1.529-.702-2.034-.869.505.1 1.194.201 1.412.284M.79 1.403c.252.434.454 1.939.655 3.41-.118-.469-.201-.936-.302-1.372C.992 2.673.84 1.988.638 1.386c.124 0 .152.021.152.017m-.286-.369c0-.016 0-.033-.017-.033.085 0 .135.017.202.05 0 .006-.145-.017-.185-.017m23.17-.217c.017-.066-.336-.367-.219-.384.253-.017.253-.401 0-.401-.335.017-.688.1-1.008.15-.587.117-1.192.234-1.78.367a80 80 0 0 0-3.949.937c-.403.117-.857.2-1.243.401-.135.067-.118.2-.05.284-.034.017-.051.017-.085.034-.117.017-.218.034-.335.05-.102.017-.152.1-.135.2 0 .017.017.05.017.067-.706.936-1.496 1.923-2.353 2.976-.84.969-1.73 1.989-2.62 3.042-2.84 3.31-6.05 7.07-9.594 10.38a.16.16 0 0 0 0 .234c.016.016.033.033.05.033-.05.05-.101.085-.152.134q-.05.05-.05.1a.4.4 0 0 0-.067.084c-.067.067-.067.184.017.234.067.066.185.066.235-.017.017-.017.017-.033.033-.033a.265.265 0 0 1 .37 0c.202.217.404.435.588.618l-.42-.35c-.067-.067-.184-.05-.234.016-.068.066-.051.184.016.234l4.469 3.727c.034.034.067.034.118.034a.15.15 0 0 0 .117-.05l.101-.1c.017.016.05.016.067.016.05 0 .084-.016.118-.05 6.049-6.05 10.922-10.614 16.5-14.693.05-.033.067-.1.067-.15.067 0 .118-.05.15-.117 1.026-3.125 1.228-5.9 1.295-7.27 0-.059.016-.038.016-.068.017-.033.017-.05.017-.05a.98.98 0 0 0-.067-.619zm-10.82 4.915c.268-.301.537-.619.806-.903-1.73 2.273-4.603 5.767-8.67 9.929 2.773-3.059 5.562-6.218 7.864-9.026ZM5.14 23.466c-.016-.017-.016-.017 0-.017zm2.504-2.156c.135-.15.27-.284.42-.434 0 0 0 .016.017.016-.224.198-.433.418-.437.418m.69-.668c.099-.1.14-.173.284-.318.992-1.02 2.017-2.04 3.059-3.076l.016-.016c.252-.2.555-.418.824-.619a228 228 0 0 0-4.184 4.029M14.852 3.91c-.554.719-1.176 1.671-1.697 2.423-1.646 2.374-6.94 8.174-7.057 8.274a1190 1190 0 0 1-4.839 4.597l-.1.1c-.085-.1-.085-.25.016-.334C8.652 11.966 13.19 6.133 15.021 3.576c-.05.116-.084.216-.168.334zm2.906 3.427c-.671-.386-.99-.987-.806-1.572l.05-.2a.8.8 0 0 1 .085-.167 1.9 1.9 0 0 1 .756-.703c.016 0 .033 0 .05-.016-.017-.034-.017-.084-.017-.134.017-.1.085-.167.202-.167.202 0 .824.184 1.059.384.067.05.134.117.202.184.084.1.218.268.285.401.034.017.067.184.118.268.033.134.067.284.05.418-.017.016 0 .116-.017.116a1.6 1.6 0 0 1-.218.619c-.03.03.006.012-.05.067a1.2 1.2 0 0 1-.32.334 1.49 1.49 0 0 1-1.26.234 2 2 0 0 0-.169-.066m4.37 1.403c0 .017-.017.05 0 .067-.034 0-.05.017-.085.034a110 110 0 0 0-3.915 3.025c1.11-.986 2.218-1.989 3.378-2.975.336-.301.571-.686.638-1.12l.168-1.003v-.033c.085-.201.404-.118.353.1-.004-.001-.173.795-.537 1.905"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/exercism.svg���������������������������������0000664�0000000�0000000�00000002565�14753064456�0025452�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.35 1.66q-1.439 0-2.181.893-.744.893-.744 2.605v3.474q0 1.207-.259 1.858-.26.651-.96 1.218-.207.17-.206.278 0 .108.205.277.714.579.967 1.225.254.645.253 1.851v3.462q0 1.725.75 2.618t2.174.892h.882q.568 0 .72-.054.15-.055.15-.271 0-.302-.399-.398l-.483-.109q-1.595-.361-1.595-3.148v-3.293q0-1.87-.906-2.642l-.23-.193q-.168-.145-.168-.217 0-.085.169-.217l.23-.193q.905-.772.905-2.642V5.641q0-1.665.405-2.31t1.685-.995q.387-.11.387-.35 0-.326-.87-.326zm14.419.029q-.87 0-.87.325 0 .242.386.35 1.281.35 1.686.995t.405 2.31v3.294q0 1.869.906 2.641l.229.193q.17.133.17.217 0 .073-.17.217l-.23.193q-.905.773-.905 2.642v3.293q0 2.787-1.595 3.149l-.484.108q-.398.096-.398.398 0 .217.15.272.152.054.72.054h.882q1.425 0 2.174-.893.75-.892.75-2.617v-3.462q0-1.207.253-1.852.254-.645.967-1.224.205-.169.205-.278 0-.108-.205-.277-.702-.567-.961-1.218-.26-.652-.26-1.858V5.187q0-1.712-.743-2.606-.743-.892-2.18-.892zM7.683 9.735c-1.456 0-2.64 1.111-2.64 2.478h1.02c0-.838.727-1.52 1.62-1.52.892 0 1.619.682 1.619 1.52h1.02c0-1.367-1.183-2.478-2.64-2.478zm8.406 0c-1.456 0-2.639 1.111-2.639 2.478h1.02c0-.838.727-1.52 1.62-1.52.892 0 1.62.682 1.62 1.52h1.02c0-1.367-1.185-2.478-2.64-2.478zM9.71 14.36v.561c0 1.277 1.062 2.316 2.366 2.316s2.367-1.039 2.367-2.316v-.56h-.934v.56c0 .877-.76 1.426-1.433 1.426s-1.48-.273-1.48-1.426v-.56z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/exordo.svg�����������������������������������0000664�0000000�0000000�00000004451�14753064456�0025127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a12 12 0 0 0-5.514 1.342l2.01 14.062 2.033-5.281a.38.38 0 0 1 .334-.24.4.4 0 0 1 .15.023.375.375 0 0 1 .217.487l-1.59 4.136L18.95 2.22A12 12 0 0 0 15.097.41l-.844 2.327-.318.828a.375.375 0 0 1-.485.215.375.375 0 0 1-.215-.484l.315-.822.812-2.239A12 12 0 0 0 12 0M5.785 1.736a12 12 0 0 0-5.691 8.762l.699.49a.375.375 0 0 1 .09.524.375.375 0 0 1-.522.09l-.343-.243A12 12 0 0 0 0 12a12 12 0 0 0 1.129 5.078.38.38 0 0 1 .21-.084l6.05-.422-5.213-3.693a.375.375 0 0 1-.088-.524.38.38 0 0 1 .28-.158.38.38 0 0 1 .243.069l5.205 3.691-2.03-14.22zm13.764.934L9.275 16.252l10.037-2.57-.126-.493a.375.375 0 0 1 .27-.455.4.4 0 0 1 .075-.011.375.375 0 0 1 .38.279l.128.492 3.951-1.012A12 12 0 0 0 24 12a12 12 0 0 0-4.451-9.33m-7.48 1.607a.4.4 0 0 1 .156.024l.826.316.826.315a.375.375 0 0 1 .217.484.375.375 0 0 1-.485.215l-.826-.315-.828-.314a.375.375 0 0 1-.217-.484.38.38 0 0 1 .33-.24zm.13 2.13a.4.4 0 0 1 .155.023.375.375 0 0 1 .214.484l-.271.711.389.148a.375.375 0 0 1 .216.485.375.375 0 0 1-.482.217l-.393-.149-.091.238a.375.375 0 0 1-.485.215.375.375 0 0 1-.215-.484l.09-.236-.56-.215a.375.375 0 0 1-.217-.485.38.38 0 0 1 .33-.24.4.4 0 0 1 .154.024l.56.214.276-.71a.38.38 0 0 1 .33-.24m11.733 6.864-3.705.95.127.49a.375.375 0 0 1-.27.459.375.375 0 0 1-.457-.27l-.127-.494-9.785 2.506 4.91 1.502a.375.375 0 0 1 .248.467.375.375 0 0 1-.469.25l-4.922-1.504 1.032 1.17a.375.375 0 0 1-.034.53.375.375 0 0 1-.529-.034l-1.328-1.51-.52 5.567A12 12 0 0 0 12 24a12 12 0 0 0 2.07-.18l-2.441-2.636-.303.265a.375.375 0 0 1-.53-.035.375.375 0 0 1 .036-.53l.295-.257-.313-.354a.375.375 0 0 1 .034-.529.38.38 0 0 1 .252-.094.38.38 0 0 1 .277.127l.312.354.383-.334a.38.38 0 0 1 .252-.094.38.38 0 0 1 .278.129.375.375 0 0 1-.036.53l-.373.327 2.729 2.95a12 12 0 0 0 5.164-2.772l-3.264-.998a.375.375 0 0 1-.25-.469.375.375 0 0 1 .367-.265.4.4 0 0 1 .102.017l3.654 1.118a12 12 0 0 0 3.237-6.999M7.465 17.34l-5.912.562a12 12 0 0 0 2.728 3.285l.358-.427a.38.38 0 0 1 .273-.137.38.38 0 0 1 .256.086.375.375 0 0 1 .049.527l-.344.416a12 12 0 0 0 2.5 1.418l.467-5.01-.559.678a.375.375 0 0 1-.527.051.375.375 0 0 1-.05-.527l.76-.922zm-2.541 1.88a.38.38 0 0 1 .254.087l.681.562.684.563a.375.375 0 0 1 .05.529.375.375 0 0 1-.529.05l-.681-.564-.682-.562a.375.375 0 0 1-.05-.528.38.38 0 0 1 .273-.136Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/exoscale.svg���������������������������������0000664�0000000�0000000�00000000311�14753064456�0025421�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1.608 0 22.392h1.665L12 4.593v2.929l-8.612 14.87H5.11L12 10.507v2.986l-5.167 8.9h1.722L12 16.477v2.929l-1.722 2.985H24Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/expedia.svg����������������������������������0000664�0000000�0000000�00000001201�14753064456�0025234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.067 0H4.933A4.94 4.94 0 0 0 0 4.933v14.134A4.93 4.93 0 0 0 4.933 24h14.134A4.93 4.93 0 0 0 24 19.067V4.933C24.01 2.213 21.797 0 19.067 0M7.336 19.341c0 .19-.148.337-.337.337h-2.33a.333.333 0 0 1-.337-.337v-2.33c0-.189.148-.336.337-.336H7c.19 0 .337.147.337.337zm12.121-1.486-2.308 2.298c-.169.168-.422.053-.422-.2V9.57l-6.44 6.44a.53.53 0 0 1-.421.17H8.169a.32.32 0 0 1-.338-.338v-1.697c0-.2.053-.316.169-.422l6.44-6.44H4.058c-.253 0-.369-.253-.2-.421l2.297-2.309c.137-.137.285-.232.517-.232H18.15c.854 0 1.539.686 1.539 1.54v11.478c-.01.231-.095.368-.232.516"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/expensify.svg��������������������������������0000664�0000000�0000000�00000001072�14753064456�0025635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.16 17.52h7.68v-2.28h-4.872v-2.136h4.152v-2.328h-4.152v-2.04h4.872V6.48H8.16zM21.6 12a9.6 9.6 0 0 1-2.16 6.072l1.704 1.704A11.96 11.96 0 0 0 24 12c0-2.928-1.056-5.616-2.784-7.68l-1.704 1.704A9.6 9.6 0 0 1 21.6 12m-3.528 7.44a9.61 9.61 0 0 1-12.048.072L4.32 21.216A11.9 11.9 0 0 0 12 24c2.976 0 5.688-1.08 7.776-2.856zm-13.44-1.272A9.6 9.6 0 0 1 2.4 12c0-5.304 4.296-9.6 9.6-9.6 2.352 0 4.488.84 6.168 2.232l1.704-1.704A12.02 12.02 0 0 0 12 0C5.376 0 0 5.376 0 12c0 3 1.104 5.76 2.928 7.872z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/expertsexchange.svg��������������������������0000664�0000000�0000000�00000000272�14753064456�0027021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.28.9H0L8.36 12 0 23.1h7.28L15.64 12zM24 .9h-7.28l-2.3 3.06 3.64 4.82zm-9.58 19.15 2.3 3.05H24l-5.94-7.88z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/expo.svg�������������������������������������0000664�0000000�0000000�00000000645�14753064456�0024603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 20.084c.043.53.23 1.063.718 1.778.58.849 1.576 1.315 2.303.567.49-.505 5.794-9.776 8.35-13.29a.76.76 0 0 1 1.248 0c2.556 3.514 7.86 12.785 8.35 13.29.727.748 1.723.282 2.303-.567.57-.835.728-1.42.728-2.046 0-.426-8.26-15.798-9.092-17.078-.8-1.23-1.044-1.498-2.397-1.542h-1.032c-1.353.044-1.597.311-2.398 1.542C8.267 3.991.33 18.758 0 19.77Z"/></svg>�������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/express.svg����������������������������������0000664�0000000�0000000�00000001343�14753064456�0025315�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 18.588a1.53 1.53 0 0 1-1.895-.72l-3.45-4.771-.5-.667-4.003 5.444a1.466 1.466 0 0 1-1.802.708l5.158-6.92-4.798-6.251a1.595 1.595 0 0 1 1.9.666l3.576 4.83 3.596-4.81a1.435 1.435 0 0 1 1.788-.668L21.708 7.9l-2.522 3.283a.666.666 0 0 0 0 .994l4.804 6.412zM.002 11.576l.42-2.075c1.154-4.103 5.858-5.81 9.094-3.27 1.895 1.489 2.368 3.597 2.275 5.973H1.116C.943 16.447 4.005 19.009 7.92 17.7a4.08 4.08 0 0 0 2.582-2.876c.207-.666.548-.78 1.174-.588a5.42 5.42 0 0 1-2.589 3.957 6.27 6.27 0 0 1-7.306-.933 6.58 6.58 0 0 1-1.64-3.858c0-.235-.08-.455-.134-.666A88 88 0 0 1 0 11.577zm1.127-.286h9.654c-.06-3.076-2.001-5.258-4.59-5.278-2.882-.04-4.944 2.094-5.071 5.264z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/expressdotcom.svg����������������������������0000664�0000000�0000000�00000002566�14753064456�0026533�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.904 10.081c-.774 0-1.484.362-1.484 1.24 0 .536.367.893 1.041 1l.756.123c.27.046.408.139.408.323 0 .316-.44.417-.68.417-.433 0-.734-.169-1.05-.455l-.693.45c.494.54 1.02.74 1.636.74.678 0 1.664-.203 1.664-1.295 0-.694-.597-.92-1.32-1.037l-.348-.057c-.346-.056-.506-.152-.506-.345 0-.235.307-.367.516-.367.382 0 .735.168.974.458l.688-.496c-.409-.454-1-.699-1.602-.699m3.494 0c-.775 0-1.484.362-1.484 1.24 0 .536.367.893 1.04 1l.755.123c.27.046.408.139.408.323 0 .316-.437.417-.678.417-.433 0-.735-.169-1.05-.455l-.694.45c.494.54 1.02.74 1.637.74.677 0 1.662-.203 1.662-1.295 0-.694-.596-.92-1.32-1.037l-.346-.057c-.348-.056-.506-.152-.506-.345 0-.235.307-.367.516-.367.382 0 .733.168.972.458l.69-.496a2.16 2.16 0 0 0-1.602-.699M0 10.185v3.632h2.824v-.705H.91v-.857h1.646v-.703H.909v-.664h1.765v-.703zm3.285 0 1.2 1.677-1.399 1.955h1.098l.86-1.357.837 1.357h1.11L5.6 11.862l1.194-1.677H5.707l-.658 1.107-.662-1.107Zm3.988 0v3.632h.918v-1.174H8.9c1.244 0 1.513-.745 1.513-1.23 0-.72-.36-1.228-1.34-1.228zm3.386 0v3.632h.908v-1.306h.577l.712 1.306h1.016l-.832-1.459c.454-.132.75-.51.75-.98 0-.816-.499-1.193-1.314-1.193zm3.492 0v3.632h2.824v-.705h-1.918v-.857h1.648v-.703h-1.648v-.664h1.766v-.703zm-5.972.672h.74c.415 0 .586.2.586.562 0 .28-.147.55-.56.55h-.766Zm3.388 0h.83c.291.005.485.153.485.49s-.194.484-.485.49h-.83z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/expressvpn.svg�������������������������������0000664�0000000�0000000�00000000674�14753064456�0026047�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.705 2.349a4.87 4.87 0 0 0-4.39 2.797L6.033 7.893h14.606c.41 0 .692.308.692.668 0 .359-.282.666-.692.666H2.592L0 14.772h2.824c-.796 1.72-1.002 2.567-1.002 3.26 0 2.105 1.72 3.62 4.416 3.62h8.239c1.771 0 3.337-1.412 3.337-3.03 0-1.411-1.206-2.515-2.772-2.515H5.596c-.873 0-1.284-.59-.924-1.335h11.859c4.004 0 7.469-3.029 7.469-6.802 0-3.183-2.618-5.621-6.16-5.621z"/></svg>��������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/eyeem.svg������������������������������������0000664�0000000�0000000�00000001544�14753064456�0024733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.673 9.204v-1.04H0v5.722h3.68v-1.048H1.186V11.46h2.158v-1.017H1.186v-1.24zm2.162 6.633 2.532-5.906h-1.24l-.902 2.357-.91-2.357H4.081l1.546 3.604-1.01 2.303zm6.625-3.572v-.445c0-1.232-.75-1.966-1.89-1.966-1.179 0-2.013.78-2.013 2.059 0 1.27.834 2.057 2.043 2.057.926 0 1.684-.536 1.821-1.285l-1.124-.054c-.085.275-.337.436-.727.436-.505 0-.804-.314-.827-.803zm-1.898-1.539c.505 0 .75.314.773.796H9.743c.031-.505.345-.796.82-.796zm6.478-1.524v-1.04h-3.672v5.724h3.68v-1.048h-2.495V11.46h2.158v-1.018h-2.158v-1.24zm5.46.65c-.597 0-.987.269-1.216.629-.26-.406-.697-.627-1.24-.627s-.864.206-1.04.482v-.407h-1.056v3.956h1.117V11.69c0-.474.268-.796.711-.796.406 0 .643.283.643.788v2.205h1.117v-2.333c.046-.399.291-.659.689-.659.428 0 .658.284.658.789v2.204H24V11.46c0-1.002-.597-1.606-1.5-1.606z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/f1.svg���������������������������������������0000664�0000000�0000000�00000000521�14753064456�0024127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.6 11.24h7.91L19.75 9H9.39c-2.85 0-3.62.34-5.17 1.81C2.71 12.3 0 15 0 15h3.38c.77-.75 2.2-2.13 2.85-2.75.92-.87 1.37-1.01 3.37-1.01M20.39 9l-6 6H18l6-6zm-3.25 2.61H9.88c-2.22 0-2.6.12-3.55 1.07C5.44 13.57 4 15 4 15h3.15l.75-.75c.49-.49.75-.55 1.78-.55h5.37z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/f5.svg���������������������������������������0000664�0000000�0000000�00000004033�14753064456�0024135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12a11.94 11.94 0 0 0 2.336 7.111c.509.004.86-.11.898-.33.046-.229.007-.582-.033-.94a55 55 0 0 1-.234-7.446c-.61.027-1.155.055-1.678.086.02-.471.046-.92.084-1.383.517-.05 1.064-.094 1.666-.145.026-.406.057-.798.092-1.195.27-2.43 2.828-3.916 4.959-4.49.946-.23 1.524-.303 1.978-.327.164-.005.34-.011.518-.011.442 0 .89.041 1.174.234.46.345.913.687 1.396 1.068.048.065.103.168-.017.344-.222.26-.437.509-.662.776-.13.157-.346.116-.528.066-.38-.194-.746-.373-1.117-.553-.672-.299-1.367-.606-2.14-.576-.484.04-.952.532-1 1.21a101 101 0 0 0-.151 3.228c1.343-.038 2.684-.063 4.096-.069l-.002.946c-.46.206-.896.413-1.358.623-.953.01-1.86.02-2.771.035a125 125 0 0 0 .119 7.931c.024.378.042.76.15 1.018.13.322.88.57 2.51.662.007.284.015.553.025.828-2.655-.077-5.205-.33-7.248-.699A11.96 11.96 0 0 0 12 24c6.628 0 12-5.373 12-12a11.94 11.94 0 0 0-2.096-6.775c-.147.607-.225 1.237-.367 1.882-1.8-.234-3.913-.405-6.287-.488-.191.602-.371 1.192-.578 1.836 3.973.245 5.905 1.292 7.05 2.525 1.114 1.248 1.35 2.627 1.286 3.907-.143 2.08-1.061 3.397-2.32 4.37-1.274.96-2.814 1.437-4.047 1.54-1.82.137-4.252-.296-4.77-.613a178 178 0 0 1-.95-2.202c-.08-.166-.129-.337.098-.535.354-.339.693-.666 1.051-1.013.158-.155.334-.3.467-.078.49.755.947 1.447 1.406 2.136.522.77 1.317 1.47 3.053 1.354 1.46-.13 2.568-1.234 2.686-2.448.128-2.246-2.145-3.84-8.055-4.35a2571 2571 0 0 1 3.123-9.37c1.404.065 2.704.18 3.945.34.92.116 1.772.328 2.627.427A11.97 11.97 0 0 0 12 0m10.02 21.111a.91.91 0 1 0 .908.908.91.91 0 0 0-.908-.908m0 .127c.431 0 .779.35.779.781a.78.78 0 0 1-.78.78.78.78 0 0 1-.78-.78.78.78 0 0 1 .78-.78m-.366.278v.996h.174v-.393h.139q.139 0 .195.033.094.057.094.229v.08l.002.03.004.011q-.001.006.004.01h.162l-.006-.014a.1.1 0 0 1-.008-.049 1 1 0 0 1-.004-.074v-.074a.28.28 0 0 0-.053-.155.25.25 0 0 0-.171-.097.4.4 0 0 0 .142-.049q.098-.065.098-.197.001-.188-.155-.252a.8.8 0 0 0-.27-.035zm.174.123h.15a.45.45 0 0 1 .211.037q.065.037.067.144a.15.15 0 0 1-.104.157.5.5 0 0 1-.166.021h-.158z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/facebook.svg���������������������������������0000664�0000000�0000000�00000000741�14753064456�0025376�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.101 23.691v-7.98H6.627v-3.667h2.474v-1.58c0-4.085 1.848-5.978 5.858-5.978.401 0 .955.042 1.468.103a9 9 0 0 1 1.141.195v3.325a9 9 0 0 0-.653-.036 27 27 0 0 0-.733-.009c-.707 0-1.259.096-1.675.309a1.7 1.7 0 0 0-.679.622c-.258.42-.374.995-.374 1.752v1.297h3.919l-.386 2.103-.287 1.564h-3.246v8.245C19.396 23.238 24 18.179 24 12.044c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.628 3.874 10.35 9.101 11.647"/></svg>�������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/facebookgaming.svg���������������������������0000664�0000000�0000000�00000000222�14753064456�0026553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h15.67v-7.35H7.35v-9.3H24V0zm8.33 15.68h8.32V24H24V8.32H8.33Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/facebooklive.svg�����������������������������0000664�0000000�0000000�00000001163�14753064456�0026255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.478 7.81a.46.46 0 0 0-.462.463v7.452a.46.46 0 0 0 .462.462h14.06v.002a.46.46 0 0 0 .462-.462V8.273a.46.46 0 0 0-.462-.462zm-5.286.008a4.191 4.191 0 0 0-.654 8.328v-2.928H2.467v-1.211h1.07v-.924c0-1.05.621-1.633 1.579-1.633.457 0 .933.088.933.088v1.024h-.524c-.52 0-.687.327-.687.656v.787h1.164l-.187 1.21h-.979v2.929a4.188 4.188 0 0 0-.644-8.326m7.167 2.407h.635v2.993h1.628v.554h-2.263zm2.945 0h.635v3.547h-.635zm1.244 0h.702l.893 2.808h.043l.886-2.808h.675l-1.227 3.547h-.733zm3.81.003h2.296v.547h-1.66v.94h1.57v.517h-1.57v.993h1.66v.55h-2.296Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/faceit.svg�����������������������������������0000664�0000000�0000000�00000000344�14753064456�0025057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.999 2.705a.167.167 0 0 0-.312-.1 1141 1141 0 0 0-6.053 9.375H.218c-.221 0-.301.282-.11.352 7.227 2.73 17.667 6.836 23.5 9.134.15.06.39-.08.39-.18z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/facepunch.svg��������������������������������0000664�0000000�0000000�00000001046�14753064456�0025560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.388 0 0 5.388 0 12s5.388 12 12 12 12-5.388 12-12S18.629 0 12 0m0 21.314c-5.133 0-9.297-4.164-9.297-9.297S6.867 2.72 12 2.72s9.297 4.164 9.297 9.297-4.164 9.297-9.297 9.297M10.028 12l1.48 1.479-1.922 1.92-1.478-1.478-1.428 1.444-1.92-1.92L6.203 12l-1.377-1.377 1.92-1.904 1.36 1.377 1.411-1.41 1.921 1.903L10.03 12zm9.162-1.462-1.411 1.411 1.479 1.479-1.92 1.904-1.48-1.48-1.444 1.446-1.904-1.921 1.445-1.428-1.377-1.377 1.904-1.92 1.376 1.376 1.411-1.41 1.92 1.92z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fairphone.svg��������������������������������0000664�0000000�0000000�00000003776�14753064456�0025613�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.25 12.358q.186-.459.38-.918.087.46.185.918zm.129-1.943a46 46 0 0 0-1.396 3.151h.649a.23.23 0 0 0 .216-.154q.075-.205.155-.41h.957l.103.411a.2.2 0 0 0 .195.155h.667a38 38 0 0 1-.752-3.152zm1.935 3.152h.784q.094-1.566.321-3.134h-.783a37 37 0 0 0-.322 3.134m3.23-2.018c-.029.25-.201.407-.467.407h-.388q.042-.41.094-.819h.384c.262 0 .41.134.378.402zm.793-.04q0-.012.003-.023c.037-.318-.026-.56-.172-.734-.17-.206-.461-.318-.871-.318H6.882a28 28 0 0 0-.096.703h.218q-.154 1.215-.226 2.43h.78q.03-.484.07-.97h.278q.193.427.394.856a.2.2 0 0 0 .183.115h.756a53 53 0 0 1-.542-1.137 1.11 1.11 0 0 0 .64-.922m2.093.062c-.031.264-.212.43-.487.43h-.274c.03-.293.062-.572.099-.865h.27c.283 0 .427.134.393.42l-.001.014m-.257-1.137H9.866c-.033.23-.066.473-.096.703h.217a37 37 0 0 0-.224 2.432h.78q.027-.454.065-.909h.3c.669-.009 1.225-.367 1.31-1.12l.002-.017c.083-.703-.326-1.088-1.046-1.088m3.032 1.19h-.866q.067-.594.154-1.19h-.784a36 36 0 0 0-.32 3.134h.784q.034-.605.09-1.209h.867q-.056.604-.09 1.21h.788a37 37 0 0 1 .321-3.135h-.789q-.087.596-.154 1.19m6.068.386a52 52 0 0 1-.847-1.631l-.718.12a36 36 0 0 0-.312 3.07h.773q.047-.821.133-1.642.417.774.865 1.548a.19.19 0 0 0 .163.094h.59a37 37 0 0 1 .32-3.134h-.772a39 39 0 0 0-.196 1.576M.941 11.713q.03-.277.066-.556h1.427q.046-.36.1-.724H.104q-.054.363-.1.725h.218A36 36 0 0 0 0 13.568h.784q.034-.58.087-1.16h.845a.25.25 0 0 0 .236-.221q.024-.236.05-.473H.94zm21.461 1.147q.022-.27.047-.538h.859a.25.25 0 0 0 .237-.221q.021-.223.047-.446h-1.075q.03-.258.062-.515h1.324q.045-.353.097-.707h-2.317a34 34 0 0 0-.097.707h.218a35 35 0 0 0-.225 2.427h2.119q.02-.354.048-.707zm-5.079-.795-.005.049c-.054.542-.293.782-.66.782-.36 0-.59-.332-.535-.874q.001-.024.005-.049c.056-.542.349-.869.71-.869a.46.46 0 0 1 .408.225l-.11.106c.093.15.217.357.188.63m.414-1.202.108-.105c-.212-.243-.52-.383-.903-.383-.818 0-1.52.658-1.616 1.593l-.007.068c-.095.94.463 1.59 1.286 1.59.822 0 1.419-.572 1.513-1.508l.007-.067a1.55 1.55 0 0 0-.388-1.188"/></svg>��mkdocs-material-9.6.4/material/templates/.icons/simple/falco.svg������������������������������������0000664�0000000�0000000�00000003237�14753064456�0024714�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.812 0c-.23.012-.416.112-.503.329-.155.382.043.66.298.916l10.186 10.17c.16.16.336.31.523.37l.742-.742c-.06-.187-.212-.363-.373-.523Q8.595 5.434 3.5.35C3.31.16 3.107-.01 2.812 0m.95 4.485a.54.54 0 0 0-.434.178c-.265.262-.246.573-.037.867q.141.192.312.36 3.658 3.654 7.323 7.302c.165.164.363.333.578.404l.738-.738c-.094-.268-.316-.447-.51-.641a4831.46 4831.315 0 0 0-6.246-6.24c-.431-.43-.861-.865-1.306-1.281a.7.7 0 0 0-.418-.211M19.33 8.262a.3.3 0 0 0-.213.078q-2.562 2.547-5.127 5.092l-8.027 8.014-.02-.02a56.5 56.498 0 0 0-1.36 1.401c-.233.25-.32.57-.05.86.282.303.623.284.934.054.233-.172.434-.388.64-.594l.543-.54 1.506-1.503q5.484-5.47 10.953-10.955l2.637-.46c-.377-.38-1.794-1.44-2.416-1.427m-14.78.803a.58.58 0 0 0-.345.193c-.208.228-.206.492-.045.733q.226.326.508.605a773.152 773.129 0 0 0 3.486 3.484c.394.393.787.787 1.195 1.164.09.087.2.15.32.184l.774-.774c-.05-.198-.184-.356-.332-.503a3008.15 3008.06 0 0 0-4.724-4.715 1.4 1.4 0 0 0-.452-.315.7.7 0 0 0-.384-.056Zm15.137 2.56c-.27.018-.485.208-.687.41l-9.86 9.844-.726.724c-.174.175-.352.367-.408.575-.045.164-.013.34.156.521.423.455.82.13 1.154-.205q5.351-5.337 10.7-10.68c.169-.168.339-.34.357-.6a.56.56 0 0 0-.395-.542.7.7 0 0 0-.29-.046zm.057 3.58c-.226.012-.438.178-.625.364-1.357 1.346-2.706 2.702-4.063 4.05-.474.47-.452.91.018 1.37.796.782 1.59 1.565 2.363 2.37.433.45.907.732 1.518.613.14.01.249.03.353.02.446-.042 1.01-.012 1.024-.626.014-.633-.535-.636-.995-.619-.466.017-.809-.174-1.119-.5-.476-.5-.952-1.004-1.466-1.463-.456-.406-.391-.703.023-1.1 1.091-1.05 2.152-2.132 3.217-3.207.314-.318.593-.697.17-1.096-.143-.134-.283-.183-.418-.176"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/falcon.svg�����������������������������������0000664�0000000�0000000�00000006271�14753064456�0025073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.929 19.487c0 .035.264.2.592.364 1.578.835 2.55 1.742 2.914 2.75.164.435.171.592.028.92-.178.436-.207.429.95.393 1.043-.035 1.657-.15 1.657-.314 0-.078-.857-.885-1.171-1.093a1.4 1.4 0 0 1-.186-.15 8 8 0 0 0-.321-.257 12 12 0 0 1-.372-.278 6 6 0 0 0-.25-.193l-.45-.35a5 5 0 0 0-.535-.357c-.328-.178-.528-.307-.571-.357-.05-.057-1.036-.593-1.5-.814-.214-.1-.45-.214-.514-.25-.157-.086-.271-.093-.271-.014m-5.75-1.536a5 5 0 0 0-.056.415c-.043.5-.379 1.164-.764 1.52-.465.436-.75.572-.993.48a3.4 3.4 0 0 0-.628-.115c-.357-.043-.486-.022-.657.078-.186.108-.222.179-.222.4 0 .315-.007.307.257.165a1 1 0 0 1 .3-.108c.15 0 .093.143-.093.229-.207.093-.264.271-.278.828-.007.422.121.586.236.286.035-.093.17-.221.3-.293A1.4 1.4 0 0 0 8 21.43c.186-.314.286-.364.286-.15 0 .457.236.479.436.036.121-.243.186-.307.271-.271.236.1.515.114.615.028s.092-.114-.043-.257c-.086-.093-.15-.179-.129-.193.157-.114.5-.193.85-.193.628 0 .714-.107.714-.914 0-.82-.214-1.406-.564-1.556-.179-.072-.236-.079-.257-.008zM22.535 1.062a1.2 1.2 0 0 0-.193.315c-.414.885-1.785 1.72-3.949 2.392-.193.064-.535.164-.75.236-.214.064-.635.2-.928.285-3.635 1.107-4.27 1.678-5.57 4.963-.586 1.472-.893 1.964-1.5 2.364-.507.343-.92.457-2.07.6-1.829.221-2.536.436-3.107.943-.35.3-.464.614-.464 1.242 0 .286-.029.536-.057.557-.036.022-.1.214-.15.436-.072.3-.072.45-.007.643.1.292.378.535.628.535.178 0 .186-.05.05-.371q-.045-.117.136-.307c.157-.157.235-.179.72-.179.558 0 .744-.057 1.008-.3.15-.135.157-.135.357.086.421.464 1.52 1.121 2.892 1.735.65.293 1.057.643 1.364 1.186.207.357.236.457.236.97 0 .836-.3 1.408-.886 1.68-.1.05-.243.113-.307.15-.071.035-.336.063-.593.063H8.93l-.15.336a8 8 0 0 1-.25.528c-.078.158-.078.208 0 .322.093.121.122.107.464-.243.358-.364.579-.471.579-.271 0 .057-.129.2-.279.321-.35.278-.4.478-.235.95.135.385.314.5.357.235.014-.078.121-.235.235-.35.115-.107.208-.242.208-.292s.05-.129.107-.179c.157-.128.221.1.121.457-.064.243-.057.314.036.414.071.079.093.186.064.307-.029.129-.014.179.05.179.1 0 .336-.221.336-.314 0-.029.064-.15.15-.264.15-.215.157-.258.021-1.014-.021-.143-.014-.265.014-.265.15 0 .664.329.693.443.05.186.264.079.264-.136a.8.8 0 0 0-.428-.678c-.236-.1-.279-.257-.086-.314.45-.143.871-.4 1.25-.779.457-.442.535-.535.828-.964.407-.592.786-.857 1.221-.857.6 0 2.485.843 3.942 1.764.679.429 2.007 1.357 2.228 1.557.043.043.286.221.543.407.257.179.7.521.986.764.285.236.542.436.57.436.236 0 .315-.614.108-.8a5 5 0 0 0-.557-.343c-.521-.293-1.528-.971-1.964-1.335-.985-.807-2.242-2.385-3.078-3.864a10 10 0 0 1-.278-.485c-.6-1.05-1.743-2.385-2.05-2.385-.121 0-.121-.008.072-.929.057-.293.142-.792.185-1.107.129-.87.314-1.863.45-2.356.386-1.45 1.207-2.457 2.7-3.3 2.092-1.192 2.927-1.928 3.527-3.12.322-.636.386-.793.579-1.507.1-.364.221-1.25.171-1.25a.4.4 0 0 0-.1.057zM3.496.484C1.839 2.198 1.003 3.926 1.003 5.647c0 .393.029.729.072.75s.071.114.071.2c0 .2.172.693.4 1.157.3.621.736 1.057 1.921 1.914.929.67 1.443 1.428 1.614 2.385l.093.514.257-.107c.65-.279 1.15-.379 2.642-.536.957-.1 1.328-.243 1.771-.678.629-.629.329-1.036-1.635-2.2-2.114-1.257-2.87-1.842-3.692-2.863-.657-.822-.993-1.5-1.157-2.343-.157-.785.057-2.028.536-3.142.135-.328.25-.614.25-.642 0-.15-.236.007-.65.428"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fampay.svg�����������������������������������0000664�0000000�0000000�00000001632�14753064456�0025102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.828 23.971a.21.21 0 0 1-.233-.016c-.646-.407-3.892-2.571-6.089-5.288-1.34-1.677 3.783-4.173 3.783-3.844.005 1.782.5 6.467 2.603 8.747a.27.27 0 0 1-.013.356l-.051.035M13.48 13.082l4.659-2.119a4.39 4.39 0 0 0 2.542-2.636l.581-1.634a.174.174 0 0 0-.11-.222.17.17 0 0 0-.125 0l-8.897 3.771.033-.142a.9.9 0 0 1 .439-.626c1.505-.927 6.903-3.686 6.903-3.686a6.6 6.6 0 0 0 3.53-4.112L23.444.28a.225.225 0 0 0-.153-.268.22.22 0 0 0-.144 0s-8.123 3.156-10.734 4.425C9.8 5.707 7.126 7.34 6.2 12.142c-.376 1.945.313 3.592 1.607 5.46-.006-1.836 4.637-4.02 5.673-4.52M2.026 4.86C1.289 4.299.662 4.25.553 4.299c-.049-.174.846-.597.956-.707.362-.346.565-.804.988-1.098.863-.611 1.93-.424 2.824.064.455.25 1.709 1.071 1.728 1.112a14 14 0 0 1 1.896 1.71.24.24 0 0 1 0 .314c-.211.203-.418.348-.675.565-1.703 1.43-2.73 5.24-2.746 5.711V12s-.999-5.38-3.498-7.14"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fandango.svg���������������������������������0000664�0000000�0000000�00000000721�14753064456�0025400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.664 6.956 8.05 8.496l1.14 4.224 5.615-1.54 1.145 4.22-5.615 1.49 1.093 4.224-5.615 1.49L4.42 17.54c.846-.995 1.194-2.386.846-3.728-.398-1.342-1.392-2.385-2.584-2.832L1.29 5.763 12.57 2.78zm7.106-.198L18.932.05 0 5.068l1.838 6.758a3.05 3.05 0 0 1 2.385 2.236c.348 1.193-.1 2.385-.944 3.18l1.788 6.708L24 18.882l-1.79-6.708c-1.142-.2-2.086-1.043-2.434-2.236-.298-1.193.1-2.435.994-3.18"/></svg>�����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fandom.svg�����������������������������������0000664�0000000�0000000�00000001173�14753064456�0025071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.123.008a.43.43 0 0 0-.512.42v9.746L4.104 6.666a.432.432 0 0 0-.66.064.43.43 0 0 0-.071.239v10.064a2.39 2.39 0 0 0 .701 1.694l4.565 4.57a2.4 2.4 0 0 0 1.693.703h3.34a2.4 2.4 0 0 0 1.691-.701l4.565-4.572a2.4 2.4 0 0 0 .699-1.694V13.41a2.4 2.4 0 0 0-.7-1.693L8.343.125a.43.43 0 0 0-.219-.117zM9.646 12.51a.72.72 0 0 1 .508.21l1.848 1.85 1.844-1.85a.714.714 0 0 1 1.015 0l1.32 1.321a.72.72 0 0 1 .212.508v1.406a.72.72 0 0 1-.21.508l-3.68 3.7a.72.72 0 0 1-1.019 0l-3.668-3.7a.72.72 0 0 1-.209-.506v-1.408a.7.7 0 0 1 .211-.506l1.32-1.322a.71.71 0 0 1 .508-.211"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fanfou.svg�����������������������������������0000664�0000000�0000000�00000001313�14753064456�0025077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.96.066 1.369 2.081q-4.9 1.358-10.787 1.83v3.807h10.194q-.672 6.64-3.504 10.552Q21.09 20.55 24 22.274l-1.7 1.66a25 25 0 0 1-4.582-3.74 21 21 0 0 1-4.993 3.74l-1.528-1.726q3.214-1.818 5.019-3.793-2.4-3.78-3.135-8.312h-.54q.105 8.339-2.885 13.806l-2.002-1.396q2.594-4.546 2.594-12.792V1.897q6.43-.25 11.712-1.83Zm-1.897 10.038h-4.61q.526 3.451 2.292 6.335 1.776-2.791 2.318-6.335M9.405 3.623Q9.22 6.6 8.246 9.8L6.1 9.182q.461-1.332.83-3.2H3.583Q2.648 8.259 1.646 9.97L0 8.18Q1.778 5.032 2.858.092l2.24.646a64 64 0 0 1-.764 2.885Zm-.96 15.754q-2.426 2.423-4.61 3.86l-1.385-1.91q.382-.33.382-1.002V8.431h2.345v10.84q.935-.724 2.318-2.107z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fantom.svg�����������������������������������0000664�0000000�0000000�00000002424�14753064456�0025111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.96.23c.584-.307 1.471-.307 2.055 0l5.952 3.128c.351.184.544.46.579.744h.005v15.722c-.007.31-.202.617-.584.818l-5.952 3.128c-.584.307-1.471.307-2.055 0l-5.952-3.128c-.38-.2-.563-.51-.572-.818V4.102h.003c.026-.288.21-.556.57-.744Zm7.654 12.643-5.6 2.943c-.583.306-1.47.306-2.054 0L5.373 12.88v6.913l5.587 2.92c.316.168.643.332.964.353l.064.002c.333 0 .657-.168.986-.327l5.64-2.973Zm-15.146 6.61c0 .601.07.997.21 1.276.116.232.29.408.607.623l.018.013a7 7 0 0 0 .24.153l.11.067.338.203-.485.797-.378-.227-.064-.039a8 8 0 0 1-.285-.182c-.904-.606-1.241-1.267-1.248-2.643v-.042Zm8.05-10.824a1 1 0 0 0-.12.051l-5.952 3.128-.018.01-.005.003.01.005.013.007 5.952 3.128a1 1 0 0 0 .121.052zm.938 0v6.384a1 1 0 0 0 .121-.052l5.952-3.128.018-.01.005-.002-.01-.005-.013-.008-5.952-3.128a1 1 0 0 0-.121-.051m6.158-3.442-5.34 2.806 5.34 2.806zm-13.241.006v5.6l5.327-2.8Zm7.204-4.169c-.31-.163-.87-.163-1.179 0L5.446 4.182l-.018.01-.005.003.01.005.013.007 5.952 3.128c.31.163.87.163 1.179 0l5.952-3.128.018-.01.005-.002-.01-.006-.013-.007zm6.917.343.378.227.064.04c.11.067.2.124.285.181.904.607 1.241 1.268 1.248 2.643v.042h-.937c0-.602-.07-.998-.21-1.277-.116-.231-.29-.408-.607-.623l-.018-.012a7 7 0 0 0-.24-.153l-.11-.067-.338-.203z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/farcaster.svg��������������������������������0000664�0000000�0000000�00000001141�14753064456�0025572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.24.24H5.76A5.76 5.76 0 0 0 0 6v12a5.76 5.76 0 0 0 5.76 5.76h12.48A5.76 5.76 0 0 0 24 18V6A5.76 5.76 0 0 0 18.24.24m.816 17.166v.504a.49.49 0 0 1 .543.48v.568h-5.143v-.569c-.002-.288.257-.505.544-.479v-.504c0-.22.153-.402.358-.458l-.01-4.364c-.158-1.737-1.64-3.098-3.443-3.098s-3.285 1.361-3.443 3.098l-.01 4.358c.228.042.532.208.54.464v.504a.49.49 0 0 1 .543.48v.568H4.392v-.569a.49.49 0 0 1 .543-.479v-.504c0-.253.201-.454.454-.472V9.039h-.49l-.61-2.031H6.93V5.042h9.95v1.966h2.822l-.61 2.03h-.49v7.896c.252.017.453.22.453.472"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fareharbor.svg�������������������������������0000664�0000000�0000000�00000007516�14753064456�0025747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.475 3.936.002.04c0 .78-.632 1.413-1.413 1.413l-.058-.002V6.86q.029-.003.058-.005a.64.64 0 0 1 .64.64.64.64 0 0 1-.64.639q-.03-.001-.058-.006v1.168q.029-.005.058-.006a.64.64 0 0 1 .64.639.64.64 0 0 1-.64.64q-.03-.001-.058-.006v1.166c.02-.001.038-.006.058-.006a.64.64 0 0 1 .64.641.64.64 0 0 1-.64.639q-.03-.002-.058-.006v1.432q.03-.003.058-.004c.78 0 1.413.633 1.413 1.414v.011h19.088v-.011c0-.78.631-1.414 1.412-1.414l.017.002v-1.426l-.017.002a.64.64 0 0 1-.641-.639.64.64 0 0 1 .64-.64l.018.002v-1.159l-.017.002a.64.64 0 0 1-.641-.64.64.64 0 0 1 .64-.639l.018.002v-1.16l-.017.002a.64.64 0 0 1-.641-.639.64.64 0 0 1 .64-.64l.018.001V5.39h-.017c-.78 0-1.412-.632-1.412-1.412l.002-.041zm9.517.832a.2.2 0 0 1 .102.027l3.39 2.006a.2.2 0 0 1 .121.183.2.2 0 0 1-.2.202h-.821v3.609h1.018v1.057l-.641.601v1.795h5.37c.188 0 .34-.174.34-.389V6.04c0-.215-.152-.389-.34-.389h-4.794v-.402h4.795c.408 0 .74.355.74.791v7.82c0 .436-.332.791-.74.791H3.684c-.409 0-.74-.355-.74-.79V6.038c0-.436.331-.791.74-.791h4.718v.402H3.684c-.187 0-.34.174-.34.389v7.82c0 .215.153.389.34.389h5.328v-1.805l-.631-.592v-1.056h1.017v-3.61h-.816a.2.2 0 0 1-.195-.148.2.2 0 0 1 .092-.224l3.412-2.018a.2.2 0 0 1 .101-.027zm0 .433L9.314 6.783h5.354zm7.145 1.662a.2.2 0 0 1 .166.149.2.2 0 0 1-.14.246l-3.231.877a.2.2 0 0 1-.053.008.2.2 0 0 1-.193-.149.2.2 0 0 1 .14-.246l3.23-.879a.2.2 0 0 1 .08-.006M5.03 6.916a.2.2 0 0 1 .08.006l2.928.826a.201.201 0 0 1-.055.395.2.2 0 0 1-.054-.008l-2.926-.826a.2.2 0 0 1-.139-.248.2.2 0 0 1 .166-.145m4.77.27v3.609h1.996v-.61a1.22 1.22 0 0 1-1.026-1.203c0-.606.445-1.11 1.026-1.203v-.593zm2.398 0v.597a1.22 1.22 0 0 1 1.012 1.2c0 .6-.438 1.101-1.012 1.2v.612h1.983v-3.61Zm-.207.978a.82.82 0 0 0-.818.818.818.818 0 1 0 .818-.818m-7.848.63h3.43a.2.2 0 0 1 .2.202.2.2 0 0 1-.2.201h-3.43a.2.2 0 0 1-.2-.2.2.2 0 0 1 .2-.202m12.147 0h3.43a.2.2 0 0 1 .2.202.2.2 0 0 1-.2.201h-3.43a.2.2 0 0 1-.201-.2.2.2 0 0 1 .201-.202m-8.283.903a.2.2 0 0 1 .17.143.2.2 0 0 1-.135.25l-2.72.82a.2.2 0 0 1-.06.008.2.2 0 0 1-.193-.143.2.2 0 0 1 .135-.25l2.723-.82a.2.2 0 0 1 .08-.008m7.85 0a.2.2 0 0 1 .08.008l3.076.924a.2.2 0 0 1 .134.25.2.2 0 0 1-.193.143.2.2 0 0 1-.057-.008l-3.076-.924a.2.2 0 0 1-.135-.25.2.2 0 0 1 .17-.143m-7.077 1.5v.48l.516.483h5.388l.516-.482v-.48H9.398Zm.631 1.366v1.156l3.004-1.156Zm4.121 0L9.44 14.139q-.014.003-.027.004v.105h2.535l2.612-1.107v-.579Zm1.026 1.013-1.608.672h1.608zM0 17.617v2.412h.508v-.933h1.178v-.483H.508V18.1h1.336v-.483zm9.52 0v2.412h.484v-1.011h1.002v1.011h.506v-2.412h-.506v.943h-1.002v-.943zm10.943.348c-.64 0-1.107.472-1.107 1.049v.006c0 .576.46 1.045 1.101 1.045.64 0 1.106-.475 1.106-1.051v-.006c0-.577-.46-1.043-1.1-1.043m-17.565.021-.89 2.043h.467l.19-.455h.876l.19.455h.478l-.89-2.043zm9.98 0-.888 2.043h.465l.19-.455h.879l.189.455h.477l-.89-2.043ZM4.708 18v2.03h.457v-.651h.358l.445.65H6.5l-.506-.724c.264-.096.445-.302.445-.63v-.005c0-.417-.293-.67-.783-.67Zm2.44 0v2.03h1.582v-.4H7.602v-.425h.978v-.396h-.978v-.412h1.11V18Zm7.54 0v2.03h.458v-.651h.359l.445.65h.533l-.507-.724c.264-.096.445-.302.445-.63v-.005c0-.417-.294-.67-.783-.67Zm2.383 0v2.03h.987c.468 0 .777-.186.777-.557v-.006c0-.273-.148-.408-.389-.498.149-.081.274-.209.274-.438v-.006c0-.318-.262-.525-.686-.525Zm5.135 0v2.03h.457v-.651h.36l.445.65H24l-.508-.724c.264-.096.445-.302.445-.63v-.005c0-.417-.293-.67-.783-.67Zm-1.748.377a.62.62 0 0 1 .627.637v.006a.613.613 0 0 1-.621.632.624.624 0 0 1-.63-.638v-.006c0-.348.256-.631.624-.631m-2.943.014h.45c.194 0 .302.075.302.209v.006c0 .15-.129.214-.33.214h-.422zm-12.35.011h.453c.223 0 .36.1.36.291v.006c0 .171-.128.287-.35.287h-.463Zm9.98 0h.456c.222 0 .357.1.357.291v.006c0 .171-.127.287-.35.287h-.463zm7.518 0h.455c.223 0 .358.1.358.291v.006c0 .171-.128.287-.35.287h-.463zm-19.56.12.277.658h-.553Zm9.982 0 .275.658h-.55zm4.43.67h.529c.234 0 .338.084.338.22v.006c0 .15-.123.219-.324.219h-.543z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/farfetch.svg���������������������������������0000664�0000000�0000000�00000000466�14753064456�0025413�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 10.248V6.749H13.586c-3.062 0-4.737 1.837-4.737 4.488v2.231H4.321V8.599c0-3.425.332-5.074 4.212-5.074H24V0H6.259C2.336 0 0 2.589 0 6.386V24h4.321v-7.033h4.527V24h4.339v-7.033H24v-3.499H13.188v-1.155c0-1.461.232-2.064 2.257-2.064z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fastapi.svg����������������������������������0000664�0000000�0000000�00000000377�14753064456�0025261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .039c-6.627 0-12 5.354-12 11.96-.001 6.606 5.372 11.963 12 11.962S24.001 18.605 24 12 18.627.039 12 .039m-.829 5.415h7.55l-7.58 5.329h5.182L5.28 18.543Q8.226 12 11.171 5.455"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fastify.svg����������������������������������0000664�0000000�0000000�00000002113�14753064456�0025265�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.245 6.49 24 4.533l-.031-.121-7.473 1.967c.797-1.153.523-2.078.523-2.078s-2.387 1.524-4.193 1.485c-1.804-.04-2.387-.52-5.155.362S4.12 9.738 3.32 10.321C2.516 10.904 0 12.798 0 12.798l.006.034 2.27-.724s-.622.585-1.945 2.37l-.062-.057.002.011s1.064 1.626 2.107 1.324a2 2 0 0 0 .353-.147c.419.234.967.463 1.572.525 0 0-.41-.475-.752-1.017l.238-.154.865.318-.096-.812q.005-.003.008-.006l.849.311-.105-.738a6 6 0 0 1 .322-.158l.885-3.345 3.662-2.497-.291.733c-.741 1.826-2.135 2.256-2.135 2.256l-.582.22c-.433.512-.614.637-.764 2.353.348-.088.682-.107.984-.028 1.564.421 2.107 2.307 1.685 2.827-.104.13-.356.354-.673.617H7.77l-.008.514-.065.051h-.645l-.009.504-.17.127c-.607.011-1.373-.518-1.373-.518 0 .481.401 1.225.401 1.225l.07-.034-.061.045s1.625 1.083 2.646.681c.91-.356 3.263-2.213 5.296-3.093l6.15-1.62.811-2.1-4.688 1.235v-1.889l5.5-1.448.811-2.1-6.31 1.662V8.367zm-11.163 4 1.459-.384.02.074-.455 1.179-1.513.398zm.503 2.526-1.512.398.489-1.266 1.459-.385.02.074zm1.971-.424-1.513.398.49-1.266 1.459-.385.02.073Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fastlane.svg���������������������������������0000664�0000000�0000000�00000007042�14753064456�0025423�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.144 19.182a1.45 1.45 0 0 0-1.237-.868l-1.615-4.976-.37-1.135c-.017.01-.112.052-.13.06-.008.01-.025.01-.033.018a.4.4 0 0 0-.07.037.5.5 0 0 1-.102.043c-.043.016-.078.034-.12.042-.035.01-.07.027-.104.036-.04.01-.083.025-.126.034q-.05.014-.103.026a.6.6 0 0 1-.137.017c-.035.01-.07.01-.103.017-.028 0-.054 0-.08.01h-.16c-.052 0-.095 0-.146-.01-.035 0-.07 0-.095-.01l-.165-.025c-.026-.01-.052-.01-.086-.017a3 3 0 0 1-.25-.06 2.5 2.5 0 0 1-1.633-3.137C1.7 7.97 3.102 7.23 4.417 7.65l.344-1.1A3.673 3.673 0 0 0 .167 8.94a3.674 3.674 0 0 0 2.39 4.59 3.9 3.9 0 0 0 1.624.128l1.634 5.035a1.4 1.4 0 0 0-.232.267 1.47 1.47 0 0 0 .387 2.053 1.47 1.47 0 0 0 2.2-.662 1.57 1.57 0 0 0-.03-1.167zM11.901.412a3.656 3.656 0 0 0-3.62 3.697c.01.54.147 1.09.38 1.58L4.381 8.8a1.5 1.5 0 0 0-.327-.138 1.47 1.47 0 0 0-1.83.997c-.233.78.214 1.596.996 1.83q.155.049.31.05c.404.025.8-.11 1.09-.38.2-.18.354-.4.43-.678a1.44 1.44 0 0 0 .018-.764l4.237-3.08.962-.702c-.017-.018-.077-.086-.094-.103l-.026-.026q-.026-.026-.052-.06a.5.5 0 0 1-.07-.087 2 2 0 0 0-.076-.103c-.026-.026-.043-.06-.07-.086a1 1 0 0 1-.068-.11.6.6 0 0 0-.06-.096 1 1 0 0 1-.06-.12c-.017-.034-.034-.06-.043-.095l-.026-.07c-.006-.017-.014-.042-.023-.06-.01-.034-.025-.07-.034-.094-.016-.044-.025-.096-.042-.147l-.025-.096c-.01-.05-.017-.11-.026-.163 0-.025-.01-.05-.018-.085a2 2 0 0 1-.017-.26 2.5 2.5 0 0 1 2.475-2.526 2.5 2.5 0 0 1 2.526 2.475l1.152-.01C15.576 2.01 13.92.386 11.9.41zm11.908 8.664a3.664 3.664 0 0 0-4.632-2.303 3.8 3.8 0 0 0-1.385.851l-4.28-3.109c.026-.113.034-.233.034-.354a1.483 1.483 0 0 0-1.512-1.435 1.483 1.483 0 0 0-1.436 1.513 1.47 1.47 0 0 0 .744 1.23c.232.128.5.205.782.197.267-.01.525-.086.73-.224l4.239 3.077.962.705.07-.12c.008-.008.008-.025.016-.034.008-.027.025-.044.034-.07.017-.034.034-.06.05-.094a.5.5 0 0 0 .07-.112l.06-.085q.037-.053.086-.104c.026-.026.043-.05.07-.086l.094-.095.077-.078c.018-.017.035-.034.06-.05.018-.018.036-.027.053-.044a.3.3 0 0 1 .086-.06c.04-.026.084-.052.12-.078a.5.5 0 0 1 .084-.05c.052-.027.094-.053.146-.08.026-.008.052-.025.077-.033a2.51 2.51 0 0 1 3.412 1.477 2.507 2.507 0 0 1-1.572 3.17l.37 1.09c1.9-.627 2.93-2.7 2.294-4.615zm-2.166.62a1.474 1.474 0 0 0-1.881-.895 1.5 1.5 0 0 0-.284.14c-.344.214-.584.56-.662.945-.05.258-.043.533.052.8.094.257.24.463.438.627l-1.616 4.976-.37 1.134c.018 0 .112.026.138.026.017 0 .026 0 .043.01.028.008.054.008.08.017q.053.014.104.025c.043.01.086.026.13.035.033.01.068.017.102.034l.12.05c.035.018.07.027.103.044.04.017.076.043.12.06.033.017.06.034.093.052.026.01.043.025.06.043.018.01.035.024.052.033.026.018.06.035.086.06a.6.6 0 0 1 .113.096c.025.016.05.042.077.06.043.033.077.076.12.12.02.016.043.034.06.06.06.06.11.13.164.197a2.505 2.505 0 0 1-.516 3.497 2.507 2.507 0 0 1-3.5-.515l-.927.686c1.205 1.616 3.5 1.96 5.116.757s1.96-3.497.756-5.112a3.8 3.8 0 0 0-1.237-1.058l1.632-5.036a1.48 1.48 0 0 0 1.238-1.968zM18.2 18.905a1.45 1.45 0 0 0-1.315-.558 1.4 1.4 0 0 0-.748.3c-.215.163-.37.378-.465.61H9.243c0 .017.01.12.02.137 0 .018 0 .026.01.043 0 .026.01.052.01.078 0 .034.007.07.007.112 0 .043 0 .086.01.128v.112c0 .043-.01.086-.01.13 0 .034-.01.068-.01.11-.01.044-.02.087-.02.138-.007.035-.007.07-.015.103-.01.025-.01.05-.017.08-.01.014-.01.04-.018.06q-.014.047-.026.1c-.017.043-.034.095-.052.14-.01.032-.025.06-.034.092a3 3 0 0 1-.077.146c-.016.025-.024.05-.033.077a2 2 0 0 1-.138.215 2.504 2.504 0 0 1-3.49.583 2.5 2.5 0 0 1-.585-3.489l-.937-.67a3.66 3.66 0 0 0 .86 5.096 3.656 3.656 0 0 0 5.095-.86c.318-.445.524-.97.628-1.502h5.294a1.48 1.48 0 0 0 2.252.567c.61-.508.73-1.436.232-2.08z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fastly.svg�����������������������������������0000664�0000000�0000000�00000001124�14753064456�0025123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.919 3.036V1.3h.632V0H9.377v1.3h.631v1.749a10.57 10.57 0 0 0-8.575 10.384C1.433 19.275 6.17 24 12 24c5.842 0 10.567-4.737 10.567-10.567 0-5.186-3.729-9.486-8.648-10.397m-1.628 15.826v-.607h-.619v.607c-2.757-.158-4.955-2.38-5.101-5.137h.607v-.62h-.607a5.436 5.436 0 0 1 5.101-5.089v.607h.62v-.607a5.435 5.435 0 0 1 5.137 5.114h-.607v.619h.607a5.444 5.444 0 0 1-5.138 5.113m2.26-7.712-.39-.389-1.979 1.725a.9.9 0 0 0-.316-.06.986.986 0 0 0-.971.995c0 .547.437.996.971.996.535 0 .972-.45.972-.996a.8.8 0 0 0-.049-.304Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fathom.svg�����������������������������������0000664�0000000�0000000�00000003127�14753064456�0025104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.185 0c-1.702.008-3.693.467-6.068 1.331C.115 4.244-1.581 7.881 1.33 15.883s6.55 9.698 14.552 6.786 9.699-6.55 6.786-14.552C20.62 2.491 18.214-.018 14.185 0m2.77 6.57h1.253a.25.25 0 0 1 .199.098.25.25 0 0 1 .043.217L15.672 17.22a.25.25 0 0 1-.241.186h-1.254a.25.25 0 0 1-.242-.315l.169-.628.123-.457 2.486-9.252a.25.25 0 0 1 .241-.185zm-9.184.808h.504a.25.25 0 0 1 .25.25v.844a.25.25 0 0 1-.25.25h-.428a2 2 0 0 0-.258.012.22.22 0 0 0-.12.048.2.2 0 0 0-.049.078.9.9 0 0 0-.043.315v.641h.898a.25.25 0 0 1 .25.25v.844a.25.25 0 0 1-.25.25h-.898v5.094a.25.25 0 0 1-.25.25h-.985a.25.25 0 0 1-.25-.25v-7.23a1.7 1.7 0 0 1 .169-.78 1.4 1.4 0 0 1 .453-.523c.37-.257.826-.341 1.257-.343m3.85 2.344c.767 0 1.419.218 1.883.622.465.404.725.994.723 1.668v1.683l-.755 2.809h-.48a.25.25 0 0 1-.25-.25v-.187a2 2 0 0 1-.223.167c-.335.213-.79.352-1.39.352a2.94 2.94 0 0 1-1.337-.29 1.9 1.9 0 0 1-.883-.907 2.2 2.2 0 0 1-.187-.916 1.9 1.9 0 0 1 .245-.99 1.7 1.7 0 0 1 .646-.618c.52-.293 1.16-.396 1.788-.48H11.4c.342-.046.616-.075.827-.103a2 2 0 0 0 .431-.088.15.15 0 0 0 .065-.04l.01-.021a.3.3 0 0 0 .009-.086v-.035a.8.8 0 0 0-.274-.638c-.178-.155-.458-.26-.847-.261-.385 0-.686.106-.89.262a.82.82 0 0 0-.338.588.25.25 0 0 1-.249.228H9.101a.25.25 0 0 1-.25-.261 2.14 2.14 0 0 1 .825-1.593c.491-.391 1.165-.615 1.945-.615m1.121 3.783q-.134.036-.296.068c-.303.06-.67.113-1.025.163a2.9 2.9 0 0 0-.692.171q-.295.124-.407.308a.57.57 0 0 0-.08.307v.007a.6.6 0 0 0 .062.275.55.55 0 0 0 .176.198c.16.115.428.194.79.194.56-.002.915-.164 1.14-.39.223-.228.33-.542.332-.896z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fauna.svg������������������������������������0000664�0000000�0000000�00000001022�14753064456�0024710�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.864 5.034c-1.454.496-2.155 1.385-2.632 2.77-.123.369-.43.778-.777 1.053l1.193 1.306-3.787-2.706L1.411 0s.754 5.003 1.015 6.844c.185 1.298.5 1.88 1.5 2.47l.401.22 1.724.928-1.024-.543 4.726 2.636-.031.07-5.087-2.407c.27.944.793 2.761 1.016 3.564.238.865.508 1.18 1.331 1.487l1.516.566.94-.378-1.194.81L2.28 24c3.963-3.76 7.319-5.097 9.774-6.19 3.132-1.385 5.018-2.274 6.249-5.468.877-2.242 1.562-5.113 2.432-6.222l1.855-2.423s-3.84 1.039-4.726 1.337"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/favro.svg������������������������������������0000664�0000000�0000000�00000001400�14753064456�0024733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.586 1.655a6.623 6.623 0 0 0-6.62 6.62v.773a7.5 7.5 0 0 1 3.31 3.269V8.276a3.3 3.3 0 0 1 3.31-3.31A1.66 1.66 0 0 0 13.24 3.31a1.66 1.66 0 0 0-1.656-1.655zm-9.93 7.448A1.66 1.66 0 0 0 0 10.758c0 .91.745 1.655 1.655 1.655a3.3 3.3 0 0 1 3.31 3.31v4.966c0 .91.745 1.655 1.655 1.655a1.66 1.66 0 0 0 1.655-1.655v-4.966a6.623 6.623 0 0 0-6.62-6.621zm15.724 0a6.623 6.623 0 0 0-6.622 6.621 6.623 6.623 0 0 0 6.622 6.621 6.6 6.6 0 0 0 3.462-.979c.262.58.84.98 1.503.98A1.66 1.66 0 0 0 24 20.69v-9.93a1.66 1.66 0 0 0-1.655-1.655c-.676 0-1.241.4-1.503.979a6.57 6.57 0 0 0-3.462-.98zm0 3.311a3.303 3.303 0 0 1 3.31 3.31 3.303 3.303 0 0 1-3.31 3.31 3.3 3.3 0 0 1-3.31-3.31 3.303 3.303 0 0 1 3.31-3.31"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fcc.svg��������������������������������������0000664�0000000�0000000�00000001113�14753064456�0024352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.412 17.587A7.89 7.89 0 0 1 10.268 6.414a7.867 7.867 0 0 1 11.144 0 8 8 0 0 1 .839.996L24 6.116a10.03 10.03 0 0 0-8.16-4.196c-5.19 0-9.458 3.942-9.996 9.002h-3.82V4.328H6.78L8.508 1.92H0v20.16l2.024-1.488V13.08h3.82c.538 5.059 4.806 9 9.996 9A10.03 10.03 0 0 0 24 17.884l-1.749-1.296a8 8 0 0 1-.84.999m-5.57-9.205a3.61 3.61 0 0 1 2.97 1.572l1.752-1.296a5.77 5.77 0 0 0-4.723-2.456c-3.194 0-5.782 2.595-5.782 5.798s2.588 5.796 5.782 5.797a5.77 5.77 0 0 0 4.723-2.455l-1.751-1.296a3.61 3.61 0 1 1-2.972-5.664"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fdroid.svg�����������������������������������0000664�0000000�0000000�00000002260�14753064456�0025072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.472 10.081H3.528a1.59 1.59 0 0 0-1.589 1.589v10.59a1.59 1.59 0 0 0 1.589 1.589h16.944a1.59 1.59 0 0 0 1.589-1.589V11.67a1.59 1.59 0 0 0-1.589-1.589M12 22.525c-3.066 0-5.56-2.494-5.56-5.56s2.494-5.56 5.56-5.56 5.56 2.494 5.56 5.56-2.494 5.56-5.56 5.56m0-10.114c-2.511 0-4.554 2.043-4.554 4.554S9.489 21.519 12 21.519s4.554-2.043 4.554-4.554-2.043-4.554-4.554-4.554m0 7.863a3.32 3.32 0 0 1-3.221-2.568h1.67c.275.581.859.979 1.551.979.96 0 1.721-.761 1.721-1.721S12.96 15.243 12 15.243a1.7 1.7 0 0 0-1.493.874H8.805A3.32 3.32 0 0 1 12 13.655a3.32 3.32 0 0 1 3.309 3.309A3.32 3.32 0 0 1 12 20.274M23.849.396l-.002.003-.006-.005.004-.004a.67.67 0 0 0-.519-.238.65.65 0 0 0-.512.259l-1.818 2.353a1.6 1.6 0 0 0-.523-.095H3.528c-.184 0-.358.038-.523.095L1.187.41A.657.657 0 0 0 .156.389L.16.393.153.399.151.396a.66.66 0 0 0-.012.824l1.909 2.471a1.6 1.6 0 0 0-.108.566v3.707a1.59 1.59 0 0 0 1.589 1.589h16.944a1.59 1.59 0 0 0 1.589-1.589V4.257c0-.2-.041-.39-.109-.566l1.909-2.471a.66.66 0 0 0-.013-.824M6.904 8.228a1.787 1.787 0 1 1 0-3.574 1.787 1.787 0 0 1 0 3.574m10.325 0a1.787 1.787 0 1 1 0-3.574 1.787 1.787 0 0 1 0 3.574"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fedex.svg������������������������������������0000664�0000000�0000000�00000002741�14753064456�0024722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.498 14.298c-.016-.414.345-.751.75-.755a.745.745 0 0 1 .752.755.755.755 0 0 1-.751.745c-.395.002-.759-.346-.751-.745m.759-.083c.067-.02.164-.042.162-.13.007-.09-.086-.133-.162-.134h-.163v.263c0 .001.165-.002.163.001m-.163.107v.418h-.14v-.91h.327c.156-.021.294.092.286.253a.22.22 0 0 1-.156.19c.162.083.108.322.173.467h-.156a2 2 0 0 1-.04-.205c-.018-.093-.047-.229-.17-.213zm.76-.024a.603.603 0 0 0-.605-.632c-.338-.012-.62.302-.605.632a.62.62 0 0 0 .605.622.61.61 0 0 0 .605-.622m-5.052-.579-.878 1.008h-1.306l1.559-1.745-1.56-1.75h1.355l.902.997.878-.998h1.306l-1.543 1.743 1.559 1.753h-1.371zm-4.703-.352v-.827h1.904v-1.506l1.724 1.948-1.724 1.941v-1.556zm1.56 1.36h-3.2V9.044h3.224v1.024H13.77v1.163h1.888v.958h-1.904v1.522h1.904v1.016zm-5.705-.655c-.54.017-.878-.552-.877-1.04-.01-.507.307-1.123.878-1.105.579-.025.871.6.845 1.103.023.501-.29 1.062-.846 1.042M4.743 12.41c.076-.358.403-.67.78-.663a.79.79 0 0 1 .803.663zm15.182.564 1.815-2.047h-2.125l-.74.844-.763-.844h-4.037v-.548h1.912V8.741H10.84v2.58c-.362-.448-.981-.559-1.526-.492-.782.123-1.427.762-1.634 1.514-.254-.958-1.179-1.588-2.157-1.554-.781.009-1.6.365-1.987 1.071v-.818h-1.87v-.9h2.043v-1.4H0v6.287h1.666v-2.644h1.666a8 8 0 0 0-.082.622c-.013 1.232 1.042 2.27 2.274 2.236a2.2 2.2 0 0 0 2.157-1.432H6.254c-.14.268-.441.38-.73.36-.457.009-.83-.417-.829-.86h2.914c.083 1.027.988 1.966 2.043 1.947a1.53 1.53 0 0 0 1.19-.639v.41h7.215l.754-.86.754.86h2.192z"/></svg>�������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fedora.svg�����������������������������������0000664�0000000�0000000�00000001507�14753064456�0025066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.001 0C5.376 0 .008 5.369.004 11.992H.002v9.287h.002A2.726 2.726 0 0 0 2.73 24h9.275c6.626-.004 11.993-5.372 11.993-11.997C23.998 5.375 18.628 0 12 0zm2.431 4.94c2.015 0 3.917 1.543 3.917 3.671 0 .197.001.395-.03.619a1 1 0 0 1-1.137.893 1 1 0 0 1-.842-1.175 3 3 0 0 0 .013-.337c0-1.207-.987-1.672-1.92-1.672-.934 0-1.775.784-1.777 1.672.016 1.027 0 2.046 0 3.07l1.732-.012c1.352-.028 1.368 2.009.016 1.998l-1.748.013c-.004.826.006.677.002 1.093 0 0 .015 1.01-.016 1.776-.209 2.25-2.124 4.046-4.424 4.046-2.438 0-4.448-1.993-4.448-4.437.073-2.515 2.078-4.492 4.603-4.469l1.409-.01v1.996l-1.409.013h-.007c-1.388.04-2.577.984-2.6 2.47a2.44 2.44 0 0 0 2.452 2.439c1.356 0 2.441-.987 2.441-2.437l-.001-7.557c0-.14.005-.252.02-.407.23-1.848 1.883-3.256 3.754-3.256"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/feedly.svg�����������������������������������0000664�0000000�0000000�00000001342�14753064456�0025073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.86 1.989a2.61 2.61 0 0 0-3.726 0L.768 11.527a2.73 2.73 0 0 0 0 3.795l6.684 6.808a2.62 2.62 0 0 0 1.74.664h5.613a2.62 2.62 0 0 0 1.872-.791l6.554-6.675a2.726 2.726 0 0 0 0-3.795zM13.6 19.41l-.935.95a.37.37 0 0 1-.268.114h-.8a.38.38 0 0 1-.247-.096l-.954-.97a.39.39 0 0 1 0-.542l1.337-1.36a.37.37 0 0 1 .53 0l1.338 1.36a.39.39 0 0 1 0 .544zm0-5.711-3.737 3.808a.37.37 0 0 1-.268.11h-.8a.38.38 0 0 1-.25-.092l-.95-.97a.39.39 0 0 1 0-.544l4.139-4.214a.37.37 0 0 1 .53 0l1.338 1.362a.386.386 0 0 1 0 .54zm0-5.707-6.54 6.66a.37.37 0 0 1-.268.113h-.8a.37.37 0 0 1-.25-.094L4.79 13.7a.39.39 0 0 1 0-.54l6.943-7.07a.37.37 0 0 1 .53 0l1.338 1.36a.39.39 0 0 1 0 .543z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ferrari.svg����������������������������������0000664�0000000�0000000�00000045455�14753064456�0025272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.543 0s-.01.141-.053.227c-.032.075-.118.128-.107.182s.064.119.15.162.117.074.203.096c.075.021.184.076.205.011.033-.064-.01-.151-.064-.226-.086-.14-.13-.172-.248-.365C11.607.044 11.586 0 11.543 0m.678 0c-.022.011-.054.174-.108.313-.064.161-.022.236.01.3.043.065.098.108-.01.173-.107.064-.248.043-.248.043s-.118-.023-.215-.076l-.3-.13s-.194-.053-.323-.042-.14.022-.236.033c-.054 0-.075-.001-.129.01-.043.01-.096-.02-.096.033s.107.054.182.086.247.031.215.074c-.043.043-.204.054-.215.043-.01 0-.117-.021-.203-.021-.14.01-.15.01-.353.107-.033.01-.022.086.042.064a1.1 1.1 0 0 1 .301-.043c.13 0 .203.044.332.077.108.032.118.052.28.074.032 0 .095-.022.095.021 0 .022-.043.055-.043.055s-.096.02-.086.053c.022.043.108 0 .15 0 .044 0 .11.012.098.054l-.021.032a2 2 0 0 0-.291.097c-.269.108-.375.237-.633.366-.247.118-.644.267-.644.267s-.118.065-.29.107c-.171.044-.182.034-.3.055a.6.6 0 0 0-.27.086.5.5 0 0 0-.15.117l-.15.227-.087.127c-.021.043-.042.064-.052.107-.022.054-.033.076-.043.13-.032.128 0 .204.021.333.011.032.011.054.022.086s.052.065.052.065l.043.01s.152-.01.248-.032c.097-.021.237-.055.237-.055l.181-.052.12-.043s.075 0 .086.043c.01.032-.022.086-.022.086s-.065.03-.119.052-.183.054-.193.065l-.14.043-.118.011s-.022.011-.043.043c-.022.033-.022.032-.022.053.022.022.033.043.055.065.043.032.064.053.117.064.075.032.118.022.193.022a.6.6 0 0 0 .27-.065c.086-.054.118-.053.236-.096a.5.5 0 0 1 .118-.021c.204-.022.32.01.525.043.204.032.302.097.506.129.215.032.343.096.568.043.108-.022.173-.076.227.031.053.097.043.15.043.15s-.001.066-.076.27c-.076.204-.311.709-.311.709l-.162.322s-.13.257-.43.59l-.32.353s-.161.119-.322.323-.163.279-.313.43c-.097.096-.15.15-.268.226-.118.075-.258.053-.634.31-.322.226-.494.41-.516.399-.021-.01-.129-.098-.172-.12-.032-.02-.654-.439-.654-.439l-.258-.172-.119-.076-.021-.043-.063-.086s-.097-.118-.215-.214a.9.9 0 0 0-.441-.237c-.183-.053-.3-.086-.482-.021a.65.65 0 0 0-.27.172c-.107.107-.129.193-.215.322s-.172.248-.215.312c-.043.065-.129.237-.129.237s-.214.343-.332.568c-.14.247-.193.399-.322.635-.204.376-.495.762-.57.933l-.084.194s-.023.095-.033.16c-.011.064-.011.172-.022.215a.3.3 0 0 1-.053.119c-.01.01-.129.257-.172.418s-.14.666-.021.73c.118.065.987-.31 1.105-.676.076-.236-.236-.355-.15-.57.032-.075.054-.085.107-.16.086-.14.054-.429.215-.697.118-.193.354-.442.676-.807.204-.225.398-.59.398-.59s.043-.129.13-.107c.096.021.181.01.181.01l.043.033.086.086.129.193s.216.31.29.397c.076.086.151.15.259.236.118.107.16.161.31.28.215.171.139.236-.14.085a2 2 0 0 0-.364-.138c-.128-.033-.612-.162-.859-.194-.236-.032-.28-.021-.28-.021s-.118-.012-.257.074c-.14.086-.215.15-.215.15s-.161.183-.172.215-.086.16-.086.16-.044.066-.054.14c-.022.076-.01.151-.01.151l.01.16.011.15s.033.377.108.753c.021.107.043.279.043.279l.052.387s.033.409.065.548c.032.13.054.14.076.225.043.161-.032.236.043.43.075.193.14.17.215.289.054.086.074.107.117.215.043.107.183.463.344.72.172.269.398.601.549.569.15-.033.257-.268.257-.268s.172-.463.065-.914c-.108-.462-.602-.245-.666-.578-.01-.075 0-.193 0-.193s-.012-.141-.033-.184-.194-.364-.258-.633c-.054-.204-.043-.86-.086-1.043-.118-.472-.129-.43-.065-.515.076-.086.141-.065.141-.065l.096.012.076.031.139.086c.043.032.193.15.193.15l.365.237s.205.119.291.162.16.096.16.096l.096.064.162.12.031.03.022.043s.076.173.398.356c.258.15.484.106.58.225.022.021.203.27.29.42.107.171.236.374.279.439.043.064.312.396.312.396l.354.387.463.43.418.355.267.215s.237.226.506.408c.258.172.268.193.44.31.128.087.3.206.472.335.172.14.366.396.291.482-.054.032-.151-.106-.334-.267a4 4 0 0 0-.375-.301c-.193-.15-.291-.227-.506-.356-.107-.064-.3-.181-.31-.16-.075.226-.066.44-.055.719.01.193.043.386.107.633.054.236.108.366.194.591.086.226.248.58.248.58l.246.495.226.375.118.193.043.064s.053.13 0 .215-.119.269-.215.28c-.097.021-.322.033-.322.033l-1.278-.022-.666-.054s-.074-.043-.46-.043c-.226 0-.409.096-.538.107-.107.01-.634-.032-.988.107-.333.14-.484.172-.602.387-.086.161.42.42.838.516.677.15.483-.14.74-.322.033-.022.044-.042.077-.053.171-.054.267.084.44.084.192 0 .3-.064.493-.096.977-.129 2.502.332 2.502.332s.377.118.549.086c.204-.043.16-.118.224-.236.054-.097.033-.117.043-.225 0-.064-.01-.096-.021-.16-.043-.183-.16-.441-.16-.441s-.087-.193-.12-.29c-.042-.139-.085-.226-.107-.376-.064-.398-.053-.365-.053-.59 0-.408.043-.634.15-1.031.162-.58.463-.827.688-1.385.065-.15.064-.365.14-.387.085-.01.075.269.032.43-.14.558-.483.794-.644 1.363-.118.44-.183.697-.15 1.148.01.247.107.635.107.635s.129.429.193.59c.065.161.193.43.193.43l.29.515.15.246s.106.097.053.258c-.054.161-.16.26-.29.399-.364.43-1.212 1.062-1.427 1.212-.3.226-.291.291-.313.356-.118.344-.462.354-.837.762-.086.086-.311.321-.268.525.021.075.945.237 1.482.012.42-.183.054-.388.172-.592.086-.15.3-.15.397-.28.16-.214.053-.203.193-.374.462-.559.763-.88 1.59-1.385.075-.043.215-.107.215-.107s.117-.055.16-.12c.054-.086.043-.16.043-.257 0-.065-.01-.096-.01-.16 0-.076.01-.119-.012-.194-.021-.118-.095-.215-.138-.28a.8.8 0 0 1-.162-.355.9.9 0 0 1 .033-.6c.086-.225.279-.407.279-.407l.482-.323s.42-.301.55-.42c.139-.118.407-.365.6-.644.226-.311.344-.505.44-.88.032-.14.065-.354.065-.354s0-.15.086-.16.107.02.107.02.074.042.096.257c.01.215-.053.463-.053.463s-.065.246-.086.396c-.01.097-.012.15-.012.258 0 .183.076.334.076.334s.043.032.043-.043a1.6 1.6 0 0 1 .055-.344c.032-.107.053-.087.117-.27.086-.236.01-.213.053-.353.022-.064.076-.129.14-.129s.075.086.075.086.065.28.012.537c-.054.258-.248.612-.248.612l-.149.257s-.107.183-.15.301c-.043.129-.055.183-.033.3.032.13.13.303.183.27.043-.032-.064-.14.065-.398s.298-.418.298-.418.237-.28.344-.494c.097-.193.194-.506.194-.506s.076-.28.054-.516c-.01-.225-.054-.343-.054-.343l-.096-.172-.055-.127.022-.076c.021-.011.097.043.162.129a.85.85 0 0 1 .16.343 1 1 0 0 1 .043.301c0 .086-.031.44.097.666.054.108.183.354.194.246.021-.247-.087-.364-.076-.59.01-.257.076-.193.097-.322.022-.14.053-.173.032-.355a3 3 0 0 0-.096-.397l-.076-.172-.032-.064s.021-.031.053-.031l.258-.086s.334-.15.463-.258c.14-.097.3-.27.3-.27s.215-.267.323-.46c.258-.484.257-1.096.246-1.376-.01-.268-.086-.623-.086-.623s-.086-.43-.064-.709.043-.408.043-.408-.01-.279.226-.58.342-.493.385-.719c.043-.193-.022-.504-.108-.386-.096.129-.137.387-.277.601-.193.301-.474.666-.613.666-.075 0-.096-.172-.096-.172s-.096-.29.065-.656c.118-.258.181-.332.332-.525.14-.183.225-.28.322-.473.086-.172.106-.204.16-.472.01-.065-.01-.204-.074-.194-.086 0-.322.517-.569.807-.236.268-.677.611-.677.611s-.043.031-.043-.055c-.01-.075-.022-.3.021-.503a2.2 2.2 0 0 1 .291-.72c.204-.354.461-.6.59-.73.054-.053.215-.151.13-.205-.076-.043-.302.15-.474.28-.214.16-.289.205-.503.463-.215.257-.27.365-.27.365s-.204.332-.258.654-.053.504-.053.504 0 .291.032.463c.021.182.097.46.097.46s.108.313.15.507c.044.193.118.761.118.761s.054.409.021.795c-.032.387-.064.612-.107.73-.043.119-.16.43-.354.645-.182.204-.226.236-.226.236s-.193.16-.354.246a4 4 0 0 1-.505.227 2 2 0 0 1-.268.031h-.139l-.043-.03-.023-.087s-.106-.419-.234-.687c-.108-.226-.334-.537-.334-.537s-.387-.527-.688-.817c-.344-.343-.73-.6-.967-.783-.086-.064-.279-.184-.279-.184s-.783-.783-1.062-1.406c-.194-.43-.322-.74-.268-1.213.01-.107.053-.312.074-.312l.14.043c.012.01.14.129.259.172.064.021.181.043.181.043s.097.01.15.021c.054.022.151.054.215.086.065.032.16.098.16.098l.184.138.194.15s.106.076.138.087.054.021.065.021h.043s.044-.012.054-.055c.011-.053-.053-.01-.15-.117a.7.7 0 0 1-.15-.181s-.022-.087-.108-.184-.193-.182-.193-.182-.076-.053-.184-.086c-.107-.032-.14-.033-.15-.076s.129-.021.129-.021.162.021.29.086c.13.064.204.14.204.14l.086.075.055.054.052.032s.054.053.065-.022c.01-.064-.011-.118-.022-.129l-.053-.053-.214-.183a1 1 0 0 0-.172-.15 1.3 1.3 0 0 0-.28-.15c-.107-.044-.171-.033-.279-.087-.075-.032-.14-.053-.183-.117-.011-.01-.064-.055.033-.033.096.021.16.054.267.076.172.043.28.042.442.096.064.021.15.064.15.064l.203.086s.28.151.473.162a.94.94 0 0 0 .42-.064.8.8 0 0 0 .215-.13.4.4 0 0 0 .052-.064l.022-.054v-.043c-.054-.065-.16.108-.332.14-.183.033-.173.053-.291.032a.48.48 0 0 1-.3-.15c-.173-.162-.236-.312-.462-.409-.096-.043-.27-.086-.27-.086s-.236-.075-.365-.15c-.096-.054-.298-.086-.234-.172.032-.043.29.107.482.129.14.021.237.011.344.011s.258-.033.28-.033c.021-.01.106 0 .181.022s.118.053.193.086.163.086.184.086l.043.011.022-.021.01-.022-.01-.021-.034-.022-.064-.043s-.096-.054-.182-.14-.162-.182-.29-.225c-.13-.043-.28-.064-.28-.064l-.15-.012-.065-.01s-.107-.033-.021-.054a1 1 0 0 1 .15-.032.5.5 0 0 1 .248.01c.086.032.226.107.236.107.011.011.14.109.28.141s.322.043.322.043l.086-.021.043-.012.031-.022-.01-.052s0-.044-.064-.055a.7.7 0 0 1-.313-.117c-.118-.086-.203-.172-.203-.172s-.086-.076-.258-.12c-.16-.042-.214-.042-.214-.042l-.055-.022-.117-.052s-.055-.033-.098-.086c-.043-.054-.106-.152.076-.098.183.054.225.086.225.086s.097.097.183.107c.054.011.097.022.13-.021.053-.054-.098-.118-.206-.194a.7.7 0 0 1-.172-.193s-.063-.053.034-.031c.096.021.267.129.267.129s.086.042.13.053c.031.01.118.064.161.085.032.011.13.033.193.065.086.054.13.14.172.172.043.032.076.087.13.097.053.011.063.032.095.01l.043-.031s.01-.023-.043-.055-.117-.117-.117-.117l-.022-.043-.011-.043-.053-.086-.098-.14s-.15-.204-.289-.28c-.129-.075-.226-.117-.226-.117s-.064-.031-.096-.053c-.054-.043-.076-.077-.12-.13-.053-.065-.073-.106-.138-.17-.118-.118-.483-.184-.344-.27.076-.043.172-.02.215-.01s.14.052.237.084c.064.022.107.024.171.045.065.022.14.031.172.053s.065.065.086.076c.011.01.096.15.246.225s.227.128.377.138c.118.011.31-.03.31-.03s.055-.023.012-.077c-.053-.054-.054-.064-.097-.074-.172-.065-.31-.043-.44-.172-.053-.054-.076-.065-.119-.15-.043-.086-.02-.107-.052-.16-.022-.054-.077-.13-.077-.13s-.16-.194-.332-.29a2 2 0 0 1-.334-.215c-.032-.022-.095-.108-.095-.108l-.055-.086-.031-.064c-.022-.118.192.033.31.076.194.064.291.15.485.215.107.032.172.031.279.074.182.075.236.258.43.28.107.01.322.053.279-.044-.043-.107-.258-.107-.365-.236-.054-.054-.054-.106-.108-.16-.086-.108-.29-.205-.29-.205s-.064-.053-.14-.203c-.064-.15-.225-.26-.515-.399-.193-.096-.58-.118-.43-.215.086-.064.161-.053.28-.021.118.043.16.098.257.14.097.044.14.054.16.065.022.01.097.043.13.043.02.01.183.032.226.043l.215.053.172.064s.085.033.138.033.141-.021.141-.021l.064-.043.01-.022s.033-.053-.053-.064a1 1 0 0 0-.128-.012l-.077-.021-.03-.01s-.151-.118-.28-.172l-.162-.064-.053-.012-.064-.01s-.055 0-.141-.076c-.086-.075-.118-.118-.193-.193l-.096-.096s-.086-.066-.086-.12c.01-.085.193.098.193.098l.13.086s.107.076.3.086c.193.011.43-.054.43-.054s.031-.02.138.011.194.096.194.096l.086.076.129.139.021-.01c.01-.01.065-.065-.031-.183-.097-.119-.258-.225-.258-.225s-.215-.129-.43-.172c-.214-.043-.312-.043-.312-.043s-.161 0-.258-.107c-.097-.108-.16-.215-.16-.215l-.033-.15s-.053-.065-.16-.108c-.097-.043-.206-.107-.206-.107s-.16-.054-.172-.13c-.032-.139.27 0 .43.032.15.032.215.087.365.12a.9.9 0 0 0 .344.03c.075 0 .118-.008.193-.02.076 0 .13-.01.206 0 .107.022.15.075.257.118.065.032.097.063.172.074.065.011.194.055.172-.01l-.033-.043c-.054-.075-.117-.075-.182-.128-.14-.108-.204-.193-.365-.268a1 1 0 0 0-.29-.098c-.087-.01-.151.012-.237-.01-.097-.032-.128-.075-.225-.128-.15-.086-.237-.162-.398-.227a3 3 0 0 0-.29-.086l-.076-.01-.03-.011c-.151-.054.267-.171.46-.225.097-.021.14-.044.236-.033.086.01.183.13.28.076.14-.075-.161-.28-.258-.312-.129-.054-.354-.01-.354-.01l-.494-.012-.14-.021s-.086 0-.15-.075c-.065-.075-.311-.377-.59-.42-.29-.043-.376 0-.397-.02-.247-.388-.506-.473-.7-.655-.053-.054-.138-.173-.16-.162zm1.173 1.14h.051l.053.033a.5.5 0 0 1 .107.15c.011.043-.128-.01-.181-.022a.4.4 0 0 1-.15-.076s-.023-.032.03-.064a.2.2 0 0 1 .09-.022zm.252.53c.026 0 .045.006.045.006l.053.034a.5.5 0 0 1 .107.15c.011.043-.128-.01-.181-.022a.4.4 0 0 1-.15-.076s-.022-.032.043-.064a.13.13 0 0 1 .083-.027zm-1.882.014a.4.4 0 0 1 .08.004s.043 0 .107.031c.065.043.108.172.108.172s.01.022-.043.022c-.033 0-.033-.053-.065-.075-.043-.032-.075-.043-.129-.064-.053-.021-.128.01-.138-.043 0-.032.04-.044.08-.047m-.844.125c.042-.012 0 .072 0 .072s-.139.225-.332.311-.322.13-.688.162c-.053 0-.03-.033-.03-.033s.417-.117.654-.246a2.4 2.4 0 0 0 .322-.215.3.3 0 0 1 .074-.05zm.752.06s.065.002.14.055c.076.054.14.237.14.237s.022.117-.032.16-.14-.031-.184-.096a.27.27 0 0 0-.16-.107c-.086-.032-.215.064-.236 0 0-.022.01-.076.01-.076s.022-.064.119-.117c.086-.054.203-.055.203-.055zm1.998.415c.043.004.103.037.15.037.14 0 .257 0 .354.021.086.022.107.075.064.075a.3.3 0 0 1-.096.011c-.096 0-.086-.043-.214.022-.13.064-.033.033-.215.097-.172.065-.13-.107-.13-.107s.013-.033.034-.12c.008-.031.027-.039.053-.036m-4.844.498c.065 0 .184.044.184.14.01.097-.066.054-.12.086-.031.022-.052.033-.095.065-.054.043-.108.15-.14.117-.044-.032-.022-.15-.022-.15s.033-.086.076-.172c.054-.086.117-.086.117-.086m5.137.111a.2.2 0 0 1 .05.008s.032.01.053.031c.022.022.108.098.108.14 0 .033-.139-.022-.203-.032-.065-.011-.15-.075-.15-.075s-.022-.02.042-.052a.2.2 0 0 1 .1-.02m-1.895.088q.017-.001-.01.049c-.042.086-.171.193-.171.193s-.15.214-.182.246c-.14.108-.312.044-.387.055-.064.01-.021-.055-.021-.055s.183-.074.3-.138c.158-.079.427-.35.471-.35M9.86 3.17c.023 0 .041.01.041.043.011.075-.128.128-.128.128s-.042.011-.053-.064.053-.086.053-.086.05-.024.087-.021m2.66.117c.018-.01.003.097.003.097s-.033.141-.108.184c-.096.054-.334.118-.355.086 0-.022.311-.12.45-.355zm1.454.039a.2.2 0 0 1 .052.006s.03.01.063.03c.032.033.108.12.119.163s-.14-.01-.215-.021c-.064-.011-.162-.086-.162-.086s-.02-.033.045-.065a.2.2 0 0 1 .098-.027m-1.301.244c.02-.006-.012.084-.012.084s-.043.14-.129.172c-.107.032-.514.042-.525.01-.01-.033.472-.076.654-.258a.03.03 0 0 1 .012-.008m1.334.185a.3.3 0 0 1 .06.006s.033.01.065.032c.032.032.118.13.129.183.01.065-.15 0-.225-.021a.5.5 0 0 1-.184-.098s-.021-.031.043-.074a.2.2 0 0 1 .112-.028m0 .537a.3.3 0 0 1 .06.006s.033.01.065.032c.032.032.118.13.129.183.01.054-.15-.011-.225-.033a.5.5 0 0 1-.184-.096s-.021-.021.043-.064a.2.2 0 0 1 .112-.027zm-1.568.514c.083.024.007.629-.153.91a4.7 4.7 0 0 1-.742.944c-.15.107-.053-.086-.053-.086s.418-.579.612-.987c.14-.29.226-.676.29-.752q.029-.033.046-.029m1.55.008a.3.3 0 0 1 .069.01s.042.01.074.043.14.151.15.205c0 .064-.182-.023-.267-.033a.54.54 0 0 1-.203-.108s-.023-.043.052-.086a.2.2 0 0 1 .125-.031m-.068.52a.3.3 0 0 1 .06.005s.033.012.065.034c.032.032.118.128.129.181.01.054-.15-.01-.225-.021a.5.5 0 0 1-.182-.096s-.02-.033.043-.076a.2.2 0 0 1 .11-.027m-.031.466h.048l.055.033a.5.5 0 0 1 .108.15c0 .044-.13-.01-.194-.02s-.15-.075-.15-.075-.022-.032.043-.064a.2.2 0 0 1 .09-.024m-.059.457.045.006.043.022c.021.021.084.085.084.117 0 .043-.117-.01-.16-.01a.3.3 0 0 1-.117-.064s-.012-.023.03-.055c.022-.016.05-.017.075-.016m-.09.422.037.002.043.022c.022.021.074.075.074.107-.01.022-.107-.021-.15-.021a.5.5 0 0 1-.107-.053s-.01-.022.033-.043a.2.2 0 0 1 .07-.014m-7.609.207c.118.022.14.032.129.086.01.054-.139.053-.139.053s-.216.044-.183-.031c.043-.076.193-.108.193-.108m7.511.125c.022 0 .04.004.04.004l.043.022c.021.021.074.075.074.107-.011.032-.108-.01-.15-.021-.044-.011-.108-.055-.108-.055s-.01-.022.033-.043a.2.2 0 0 1 .068-.014m-.12.377.03.002.032.022c.01.01.064.064.064.086 0 .032-.076 0-.119-.01-.032-.01-.084-.043-.084-.043s-.01-.022.022-.043a.1.1 0 0 1 .054-.014zm-3.061.12a2 2 0 0 1 .182.011c.3.043.59.312.546.344s-.107 0-.129 0l-.107-.053-.162-.043s-.29-.065-.504-.055-.408.086-.408.086-.086.044-.107-.01c-.011-.064.033-.097.033-.097l.01-.022s.246-.164.646-.162zm-5.113.128q.01.001.01.002l.021.022c-.01 0 .032.107-.064.214-.097.108-.397.677-.461.58-.065-.075.29-.613.365-.72.056-.089.107-.098.129-.098m8.05.117q.024.001.026.002l.031.012.055.074c-.011.032-.076.011-.108 0-.032 0-.076-.043-.076-.043s-.01-.01.022-.03a.1.1 0 0 1 .05-.015m-6.783.303c.017-.006.029.008.043.012l.053.021.033.032.108.107c.043.064.16.28.138.3-.096.097-.128-.032-.267-.193-.14-.15-.108-.279-.108-.279m6.633.05a.1.1 0 0 1 .025.005l.032.01.054.076c0 .021-.065-.012-.097-.012-.033 0-.075-.043-.075-.043s-.022-.01.01-.021a.1.1 0 0 1 .051-.014zM8.4 8.497c.035.003-.013.065-.013.065s-.184.246-.291.397c-.14.203-.312.514-.344.482s.151-.374.248-.557c.107-.225.268-.343.332-.365a.2.2 0 0 1 .068-.021zm-3.052.805.021.022s.011.042-.064.16-.13.119-.13.119c0-.01-.02-.053.044-.182s.129-.119.129-.119m-1.317.42a.03.03 0 0 1 .016.01c.032.043-.064.236-.064.236s-.097.203-.13.117c-.032-.075.034-.214.034-.214.075-.066.108-.156.144-.149m8.565.277c.096.011.086.194.086.237.032.311.162.624.398 1 .333.526.87.934.848.967-.054.053-.59-.366-.784-.602-.322-.387-.56-.806-.634-1.332-.022-.118-.022-.291.086-.27m-6.324.15c.021 0 .117.034.117.034l.236.096c.01 0 .13.054.227.107l.234.15.066.055c0 .022.075.14-.076.108-.15-.033-.472-.28-.601-.344-.13-.064-.343-.086-.246-.172.01-.01.021-.033.043-.033zm-1.14.593a.1.1 0 0 1 .022 0c.065 0 .065.052.065.052v.033s-.001.194.01.344c0 .043.119.526.119.526s.021.043-.022.043c-.032 0-.064-.065-.064-.065s-.087-.128-.12-.224c-.031-.086-.042-.227-.042-.227s-.022-.182-.022-.246c.011-.086.011-.162.022-.205a.04.04 0 0 1 .031-.031zm-1.49.257a.1.1 0 0 1 .03 0c.064.011.031.128.031.182s-.062.15-.084.15c-.021 0-.065-.096-.054-.15.01-.047.018-.167.078-.182zm5.442.893c.122-.01.475.497.988 1.05.58.624 1.256 1.215 1.278 1.29.043.129-.473-.28-.752-.494-.741-.57-1.643-1.729-1.535-1.836a.04.04 0 0 1 .021-.01m10.273.523c.02-.002.037.024.037.024l.022.031c0 .022.128.526.117.848-.022.45-.042.773-.31 1.117-.323.419-.882.85-.764.506.075-.204.57-.462.763-1.031.108-.344.13-.667.13-.667l-.022-.654s-.012-.053-.012-.129c.012-.032.027-.043.04-.045zm-5.478 1.12c.1.011.145.074.027.16-.14.096-.193.085-.28.181-.096.118-.127.517-.224.356-.096-.161-.032-.387.13-.559a.42.42 0 0 1 .347-.139zm-7.799.439c.041-.008.149.074.149.074.053.01.107.108.107.108s.022.076-.043.097c-.064.032-.107-.033-.107-.033s-.14-.193-.12-.236a.02.02 0 0 1 .014-.01m10.307 1.525c.021 0 .065.022.119.13s-.086.868-.258.76c-.097-.064.053-.256.053-.417 0-.129-.022-.227-.022-.334s.108-.139.108-.139M13.2 16.824c.038.004.048.058-.004.166-.075.161-.096.215-.107.366-.022.16.076.61-.074.44-.054-.076-.108-.43-.065-.602.047-.242.186-.375.25-.37m-.82 2.118c.036-.005.054.013.054.013.022.043-.022.087-.033.098a.4.4 0 0 1-.129.043c-.064.01-.03-.043-.03-.043s.041-.066.095-.098a.1.1 0 0 1 .043-.013m-2.877.228c.086 0 .086.043.086.043 0 .032-.033.044-.12.033-.074-.01-.084-.032-.073-.043 0-.01.021-.033.107-.033m.652.031a.1.1 0 0 1 .024.002s.365.064.601.074c.172.011.258.023.43.012.097 0 .043-.012.193-.012.054-.01.022.066-.021.077-.161.043-.226.02-.365.031-.119.01-.173.021-.291.021-.204 0-.224.012-.514-.074-.054-.021-.12-.086-.098-.107a.06.06 0 0 1 .041-.024m-2.435.065c.126.003.086.045.086.045s-.001.042-.076.095c-.076.054-.107.022-.118.022s-.086-.043-.086-.086c.011-.043.13-.074.13-.074a1 1 0 0 1 .064-.002m6.761 1.48.026.002.021.043c0 .01-.086.13-.129.13-.053-.012-.033-.075-.033-.075s-.021-.065.043-.086a.2.2 0 0 1 .072-.014m-.802.318q.014 0 .023.006v.043c.01.033-.27.345-.463.528-.182.172-.494.408-.494.408h-.043v-.055l.012-.021.021-.032.022-.033.021-.03.065-.077.15-.139.15-.14.237-.237s.085-.095.117-.117c.032-.021.054-.043.086-.064.032-.016.07-.038.096-.04m-1.553 1.293a.06.06 0 0 1 .05.014c.033.075-.02.096-.02.096l-.098.076c-.011 0-.075.054-.096.021-.022-.032.01-.075.01-.086s.065-.085.119-.107a.1.1 0 0 1 .035-.014m-1.047.994c.044-.005.076.061.076.061s.022.031.022.074c0 .033-.097.022-.15.065-.065.043.065.173-.14.162-.117-.01-.053-.118-.042-.129l.074-.107c.054-.076.087-.087.14-.12a.1.1 0 0 1 .02-.006"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ferrarinv.svg��������������������������������0000664�0000000�0000000�00000002645�14753064456�0025630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.297 13.283v-1.745c0-.541-.297-.646-1.135-.646-.908 0-1.222.122-1.222.751v.279h.768v-.227c0-.314.017-.367.419-.367.332 0 .349.035.349.367v.628h-.803c-.628 0-.82.297-.82.646h.785v-.017c0-.157.105-.297.262-.297h.593v.698c0 .244-.122.297-.297.297h-.314c-.192 0-.262-.122-.262-.297v-.384h-.785v.436c0 .367.279.663.716.663h2.06v-.471h-.314zm6.389.332v-2.653h-1.169v.436h.332v2.217h-.332v.454H24v-.454zm-2.95-2.723c-.436 0-.716.541-.908.768v-.716h-1.152v.436h.314v2.217h-.314v.471h1.431v-.471h-.297V12.41c0-.105.681-.96.681-.873v1.187h.803v-1.327c.001-.313-.191-.505-.558-.505M5.324 12.393h-.82v-.838c0-.157.052-.244.244-.244h.349c.14 0 .227.07.227.175zm-.349-1.501h-.123c-.943 0-1.187.209-1.187.751v1.745c0 .593.349.698 1.204.716h.087c.925-.017 1.204-.087 1.204-.646v-.454h-.801v.227c0 .314-.052.332-.436.332-.454 0-.436-.035-.419-.332v-.541H6.18v-1.17c-.001-.436-.333-.628-1.205-.628m17.89-.489h.855v-.559h-.855zm-22.743 0h.489v3.299H0v.454h2.269v-.454h-.768v-1.466h.436v.419h.524v-1.309h-.524v.384h-.436v-1.327h20.701v-.559H.122zm9.269.489c-.436 0-.716.541-.908.768v-.716H7.331v.436h.314v2.217h-.314v.471h1.431v-.471h-.297V12.41c0-.105.681-.96.681-.873v1.187h.803v-1.327c0-.313-.192-.505-.558-.505m3.665 0c-.436 0-.716.541-.908.768v-.716h-1.152v.436h.314v2.217h-.314v.471h1.431v-.471h-.297V12.41c0-.105.681-.96.681-.873v1.187h.803v-1.327c.001-.313-.191-.505-.558-.505"/></svg>�������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ferretdb.svg���������������������������������0000664�0000000�0000000�00000002741�14753064456�0025424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.736.223a8 8 0 0 0-1.48.12C8.821.744 6.504 2.14 5.02 4.086c-.817 1.098-1.203 1.737-1.04 1.737.045 0 .283-.134.52-.312 1.99-1.41 5.6-2.05 8.005-1.41 2.302.608 3.52 1.559 4.544 3.578.862 1.664 1.04 2.302 1.47 5.05l.105.579.282-.357c.505-.653 1.128-2.123 1.38-3.222.847-3.817-.771-6.995-4.44-8.747-1.03-.49-2.048-.742-3.11-.76zm-6.597 5.76c-.307.018-.637.27-1.12.76q-.78.766-1.604 1.487C1.975 9.447.653 11.6.193 13.456c-.43 1.768-.12 4.352.727 6.03 1.292 2.584 4.738 4.336 8.42 4.291.728 0 .818-.03.565-.178-.832-.505-2.05-1.856-2.495-2.762-.445-.92-.475-1.07-.475-2.614 0-1.5.03-1.693.416-2.42.683-1.292 1.396-1.901 2.732-2.287 1.604-.46 2.406-1.233 2.852-2.733.178-.579.311-1.129.311-1.203 0-.312-.43-.49-1.559-.653-2.109-.282-3.371-.936-4.574-2.302-.386-.446-.668-.66-.974-.642m1.182 1.93c.186 0 .408.056.653.167.342.149.387.238.298.624-.268 1.233-.268 1.574 0 1.871.415.46.816.357 1.559-.356.653-.654.861-.728 1.648-.698.297.015.43.119.49.371.045.208.223.416.386.46.387.12.372.357-.074.98-1.544 2.11-4.633 2.095-5.717-.014-.49-.965-.357-2.376.326-3.238.097-.11.245-.167.431-.167m14.702 1.771c-.074 0-.208.342-.297.758-.564 2.613-2.54 5.569-4.678 6.95-1.663 1.084-2.346 1.262-4.99 1.277-1.262 0-2.658-.06-3.103-.119l-.802-.119.104.49c.133.713 1.069 1.976 2.004 2.748 1.708 1.396 3.312 1.9 5.51 1.782 3.906-.208 7.07-2.57 8.034-5.97.12-.446.209-1.381.194-2.302 0-1.292-.075-1.767-.401-2.718-.402-1.173-1.322-2.777-1.575-2.777"/></svg>�������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ffmpeg.svg�����������������������������������0000664�0000000�0000000�00000000573�14753064456�0025074�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.72 17.91V6.5l-.53-.49L9.05 18.52l-1.29-.06L24 1.53l-.33-.95-11.93 1-5.75 6.6v-.23l4.7-5.39-1.38-.77-9.11.77v2.85l1.91.46v.01l.19-.01-.56.66v10.6c.609-.126 1.22-.241 1.83-.36L14.12 5.22l.83-.04L0 21.44l9.67.82 1.35-.77 6.82-6.74v2.15l-5.72 5.57 11.26.95.35-.94v-3.16l-3.29-.18a65 65 0 0 0 1.28-1.23"/></svg>�������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fi.svg���������������������������������������0000664�0000000�0000000�00000000735�14753064456�0024226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.908 4.621c0-1.749 1.472-3.162 3.286-3.162 1.813 0 3.287 1.416 3.287 3.162s-1.472 3.162-3.287 3.162c-1.816 0-3.286-1.414-3.286-3.162M24 17.077h-.735c-1.507 0-2.267-1.069-2.267-2.753v-3.162h-5.569v4.482c0 4.869 3.228 6.913 6.353 6.913H24ZM5.578 18.581c0-1.628.901-2.369 2.731-2.369h4.541v-5.064H5.578V9.057c0-1.654 1.427-2.552 3.132-2.552h4.133V1.443H7.289C2.925 1.443 0 3.753 0 8.594v13.95h5.578Z"/></svg>�����������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fiat.svg�������������������������������������0000664�0000000�0000000�00000005364�14753064456�0024556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.175 6.25c.489 1.148.726 2.442.726 3.956 0 .818-.068 1.69-.206 2.666-.286 2.01-1.048 4.11-1.75 5.494-.114.223-.205.371-.388.533-.32.282-.602.352-.706.291-.084-.05-.131-.302-.114-.673.014-.316.089-.55.204-.924a36 36 0 0 0 1.2-5.416c.385-2.664.37-5.06-.201-6.52a2.2 2.2 0 0 0-.22-.427c-.062-.09-.106-.136-.106-.136-1.181-1.183-4.37-1.776-7.56-1.776s-6.378.593-7.558 1.776c0 0-.045.045-.106.136a2 2 0 0 0-.221.426c-.572 1.46-.586 3.857-.201 6.521.26 1.807.672 3.72 1.227 5.504.096.307.158.516.173.84.016.369-.03.62-.114.67-.104.06-.389-.01-.71-.295-.23-.205-.345-.405-.49-.701-.68-1.385-1.393-3.397-1.667-5.323a19 19 0 0 1-.206-2.666c0-1.514.238-2.807.726-3.954.367-.86.983-1.58 1.782-2.083a13.9 13.9 0 0 1 6.526-2.122 14 14 0 0 1 .815-.026h.02q.412.001.818.026c2.282.138 4.539.873 6.525 2.122a4.6 4.6 0 0 1 1.782 2.082zm-4.763 14.526c-.088.019-.361.083-.632.157-.243.067-.483.12-.597.143a16.5 16.5 0 0 1-3.115.285h-.028c-1.117 0-2.177-.103-3.114-.285a9 9 0 0 1-.56-.133 15 15 0 0 0-.604-.148c-.418-.095-.796-.163-.817-.083-.025.093.162.288.401.472.056.042.195.14.357.22.15.073.32.128.386.15 1.098.355 2.346.502 3.941.502h.022c1.563 0 2.794-.142 3.877-.483.371-.117.59-.211.853-.42.22-.174.385-.353.361-.44-.02-.075-.348-.021-.731.063m-2.508-10.313c-.145-.81-.32-1.432-.518-1.85l-.002-.004h-.021l-.682-.006h-.01l-.027 2.998h1.426l-.001-.01c0-.005-.056-.522-.165-1.128m5.76 1.687c-.322 2.228-.88 4.623-1.66 6.701-.13.35-.248.48-.53.7a6.2 6.2 0 0 1-2.431 1.028c-.897.175-1.908.272-2.974.272h-.029a15.7 15.7 0 0 1-2.973-.272 6.2 6.2 0 0 1-2.433-1.028c-.282-.22-.399-.35-.527-.7-.782-2.078-1.34-4.473-1.661-6.701-.373-2.577-.35-4.847.18-6.202.067-.17.138-.292.19-.369.046-.065.078-.1.078-.1 1.068-1.07 4.06-1.652 7.16-1.652s6.093.582 7.16 1.653c0 0 .032.033.078.1.052.076.124.197.19.368.531 1.355.554 3.625.182 6.202M8.904 7.565 6.222 7.55l.267 9.337 1.122.012-.016-4.25h1.014v-1.097H7.595V8.66h1.31V7.564zm1.876-.02-1.365.003.181 9.35h1.157zm3.448.014h-2.732l.108 9.334h1.092l.009-4.222h1.418l.002.007c.128.797.138 4.171.138 4.205v.015h1.063l.009-.479c.048-2.42.13-6.469-1.107-8.86m4.32-.013-3.344.013v1.077h.998v.01l-.042 8.252h1.132l.275-8.262h.981zM23.975 12c0 6.617-5.372 12-11.976 12C5.397 24 .025 18.617.025 12S5.397 0 12 0c6.604 0 11.976 5.383 11.976 12zm-.33-.008C23.64 5.561 18.418.33 11.998.33 5.642.33.46 5.463.358 11.811a1.7 1.7 0 0 1 .684-.78c.655-.388.834-1.385.893-1.981l.012-.062c-.039.395-.07.79-.07 1.218 0 .832.07 1.718.21 2.708.412 2.9 1.813 6.007 2.637 6.958l.046.05.192.202.007.006c2.01 1.647 3.857 2.23 7.061 2.23h.022c3.203 0 5.05-.583 7.06-2.23l.009-.006.185-.197.052-.056c.826-.954 2.226-4.057 2.638-6.957.14-.99.209-1.876.209-2.708q0-.68-.064-1.309l.006.006c.06.597.379 2.141.995 2.586q.313.226.503.503"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fidoalliance.svg�����������������������������0000664�0000000�0000000�00000002471�14753064456�0026241�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.849 7.513a1.085 1.085 0 1 0 1.085 1.086v-.001c0-.599-.486-1.085-1.085-1.085m-2.907 3.04v1.418H6.89v4.793h.704V14.04h.509v2.724h.71v-6.211H4.941zm9.18.536H14.1c-.287-.416-.862-.702-1.639-.702-1.489 0-2.797 1.224-2.786 3.319 0 1.936 1.181 3.201 2.659 3.201.797 0 1.56-.361 1.935-1.04l.117.893h1.669V7.651h-1.934zm0 2.904q0 .237-.034.465l.002-.017c-.11.532-.574.925-1.13.925h-.014.001c-.797 0-1.318-.659-1.318-1.723 0-.978.446-1.767 1.329-1.767.606 0 1.022.437 1.138.947.014.09.023.194.023.3l-.001.054v-.003zM4.802 8.89l.475-1.6a3 3 0 0 0-.384-.101l-.019-.003a3.7 3.7 0 0 0-.829-.092 3.7 3.7 0 0 0-1.084.159l.027-.007a2 2 0 0 0-.38.153l.011-.005a2.6 2.6 0 0 0-.663.475c-.5.49-.754 1.155-.754 1.975v.708H-.001v1.418h1.199v4.793h1.921V11.97h1.199v-1.416H3.119v-.75a1.02 1.02 0 0 1 .23-.713l-.001.002a1 1 0 0 1 .063-.062l.001-.001s.414-.41 1.389-.14zm15.504 1.498c-2.01 0-3.327 1.286-3.327 3.307s1.393 3.212 3.213 3.212c1.664 0 3.276-1.04 3.276-3.327-.002-1.874-1.267-3.192-3.162-3.192m-.063 5.126c-.832 0-1.276-.797-1.276-1.871 0-.915.361-1.861 1.276-1.861.871 0 1.234.936 1.234 1.851 0 1.137-.482 1.882-1.234 1.882zm2.25-5.753h.232v.589h.14v-.589h.231v-.117h-.603zm1.306-.117-.182.505-.181-.505h-.203v.707h.13V9.78l.198.571h.113l.195-.571v.571h.13v-.707h-.201z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fifa.svg�������������������������������������0000664�0000000�0000000�00000000540�14753064456�0024527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 8.064v7.872h2.486v-2.843h1.728l.671-1.72H2.486V9.775h2.92l.637-1.711zm6.804 0L6.8 15.936h2.457V8.064zm4.15 0v7.872h2.484v-2.843h1.726l.677-1.72h-2.403V9.775h2.922L17 8.064zm7.658 0-2.83 7.872h2.375l.306-1.058h2.769l.32 1.058H24l-2.837-7.872zm1.235 2.023.981 3.277h-1.927z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fig.svg��������������������������������������0000664�0000000�0000000�00000001340�14753064456�0024366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.543 0A4.543 4.543 0 0 0 0 4.543v14.914A4.543 4.543 0 0 0 4.543 24h14.914A4.543 4.543 0 0 0 24 19.457V4.543A4.543 4.543 0 0 0 19.457 0zm10.715 2.572h3.086a3.3 3.3 0 0 1 .656.065 3.3 3.3 0 0 1 .898.326q.139.076.268.164.131.087.252.186a3.3 3.3 0 0 1 .789.96q.076.14.139.286a3.2 3.2 0 0 1 .187.61 3.3 3.3 0 0 1 .067.66v12.343a3.3 3.3 0 0 1-.146.97 3 3 0 0 1-.108.3 3.3 3.3 0 0 1-.301.552 3.3 3.3 0 0 1-.627.694q-.12.098-.252.185a3.2 3.2 0 0 1-.553.3 3.2 3.2 0 0 1-1.27.255h-3.085a3.3 3.3 0 0 1-.658-.065 3.24 3.24 0 0 1-2.344-1.922 3.2 3.2 0 0 1-.256-1.27V5.829a3.3 3.3 0 0 1 .393-1.555 3.2 3.2 0 0 1 1.04-1.146 3.2 3.2 0 0 1 .553-.3 3.3 3.3 0 0 1 1.272-.255z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/figma.svg������������������������������������0000664�0000000�0000000�00000002006�14753064456�0024704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.852 8.981h-4.588V0h4.588c2.476 0 4.49 2.014 4.49 4.49s-2.014 4.491-4.49 4.491M12.735 7.51h3.117c1.665 0 3.019-1.355 3.019-3.019s-1.355-3.019-3.019-3.019h-3.117zm0 1.471H8.148c-2.476 0-4.49-2.014-4.49-4.49S5.672 0 8.148 0h4.588v8.981zm-4.587-7.51c-1.665 0-3.019 1.355-3.019 3.019s1.354 3.02 3.019 3.02h3.117V1.471zm4.587 15.019H8.148c-2.476 0-4.49-2.014-4.49-4.49s2.014-4.49 4.49-4.49h4.588v8.98zM8.148 8.981c-1.665 0-3.019 1.355-3.019 3.019s1.355 3.019 3.019 3.019h3.117V8.981zM8.172 24c-2.489 0-4.515-2.014-4.515-4.49s2.014-4.49 4.49-4.49h4.588v4.441c0 2.503-2.047 4.539-4.563 4.539m-.024-7.51a3.023 3.023 0 0 0-3.019 3.019c0 1.665 1.365 3.019 3.044 3.019 1.705 0 3.093-1.376 3.093-3.068v-2.97zm7.704 0h-.098c-2.476 0-4.49-2.014-4.49-4.49s2.014-4.49 4.49-4.49h.098c2.476 0 4.49 2.014 4.49 4.49s-2.014 4.49-4.49 4.49m-.097-7.509c-1.665 0-3.019 1.355-3.019 3.019s1.355 3.019 3.019 3.019h.098c1.665 0 3.019-1.355 3.019-3.019s-1.355-3.019-3.019-3.019z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/figshare.svg���������������������������������0000664�0000000�0000000�00000026761�14753064456�0025427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a1.007 1.007 0 0 0-1.008 1.008A1.009 1.009 0 1 0 12 0M8.69.541a1 1 0 0 0-.399.047c-.528.17-.82.74-.646 1.27a1.007 1.007 0 1 0 1.918-.624A1 1 0 0 0 8.69.541m6.62 0a1.01 1.01 0 1 0 1.047 1.316 1.01 1.01 0 0 0-.65-1.27 1 1 0 0 0-.396-.046m-4.722 1.45a1 1 0 0 0-.172.009.85.85 0 0 0-.707.973.85.85 0 0 0 .975.707.85.85 0 0 0 .707-.973.854.854 0 0 0-.803-.717m2.824 0a.85.85 0 0 0-.8.716c-.075.464.241.9.704.973.464.073.9-.242.975-.705A.853.853 0 0 0 13.584 2a1 1 0 0 0-.172-.01M5.504 2.1a1 1 0 0 0-.557.191 1.01 1.01 0 1 0 .557-.191m12.992 0a1.007 1.007 0 0 0-.629 1.824 1.01 1.01 0 0 0 1.188-1.633 1 1 0 0 0-.559-.191M7.73 2.887a.8.8 0 0 0-.325.091.85.85 0 0 0-.37 1.145.846.846 0 0 0 1.142.371.853.853 0 0 0 .373-1.144.85.85 0 0 0-.82-.463m8.543 0a.85.85 0 0 0-.82.463.85.85 0 0 0 .372 1.144.846.846 0 0 0 1.143-.37.85.85 0 0 0-.37-1.146.9.9 0 0 0-.325-.091M12 3.563a.71.71 0 0 0-.709.708c0 .393.317.71.709.71a.71.71 0 0 0 .709-.71.71.71 0 0 0-.709-.709m-2.328.38a.7.7 0 0 0-.28.034.71.71 0 0 0-.454.892.71.71 0 0 0 .892.455.71.71 0 0 0 .457-.892.71.71 0 0 0-.615-.489m4.656 0a.71.71 0 1 0 .734.926.71.71 0 0 0-.454-.892.7.7 0 0 0-.28-.034m-11.183.588a1.01 1.01 0 0 0-.854.416 1.01 1.01 0 0 0 .225 1.409c.45.327 1.08.228 1.406-.223.33-.45.231-1.082-.22-1.41a1 1 0 0 0-.557-.192zm17.713 0a1 1 0 0 0-.56.192 1.008 1.008 0 1 0 .559-.191M5.443 4.59a.85.85 0 0 0-.601.25.853.853 0 0 0-.002 1.205.855.855 0 0 0 1.205 0 .855.855 0 0 0 0-1.205.85.85 0 0 0-.602-.25m13.116 0a.85.85 0 0 0-.604.25.853.853 0 0 0 0 1.205.854.854 0 0 0 1.205 0 .85.85 0 0 0 0-1.205.85.85 0 0 0-.601-.25m-11.125.45a.7.7 0 0 0-.393.134.71.71 0 0 0 .834 1.146.707.707 0 0 0 .156-.988.7.7 0 0 0-.597-.293zm9.132 0a.7.7 0 0 0-.597.292c-.23.317-.16.76.156.988a.707.707 0 0 0 .99-.156.708.708 0 0 0-.549-1.125m-5.546.009a.6.6 0 0 0-.12.008.59.59 0 1 0 .676.49.59.59 0 0 0-.557-.498m1.96 0a.59.59 0 0 0-.554.498.59.59 0 1 0 .674-.49.6.6 0 0 0-.12-.008m-3.945.623a.6.6 0 0 0-.228.064.59.59 0 0 0-.258.793.59.59 0 0 0 .795.26.595.595 0 0 0 .26-.797.59.59 0 0 0-.569-.32zm5.932 0a.59.59 0 0 0-.569.32.59.59 0 0 0 .256.795.59.59 0 0 0 .797-.258.59.59 0 0 0-.26-.793.6.6 0 0 0-.224-.064M12 6.188a.49.49 0 0 0-.488.488.49.49 0 1 0 .488-.488m-1.603.261a.5.5 0 0 0-.192.024.487.487 0 1 0 .3.928.49.49 0 0 0 .315-.616.49.49 0 0 0-.424-.336m3.206 0a.49.49 0 0 0-.421.336.49.49 0 0 0 .312.616.488.488 0 0 0 .303-.928.5.5 0 0 0-.194-.024m-7.83.3a.7.7 0 0 0-.597.292.709.709 0 1 0 .988-.158.7.7 0 0 0-.39-.135m12.456 0a.7.7 0 0 0-.393.134.707.707 0 0 0-.158.99.709.709 0 1 0 1.149-.832.7.7 0 0 0-.598-.293m-10.784.107a.6.6 0 0 0-.418.173.59.59 0 0 0 0 .834.59.59 0 0 0 .836 0 .59.59 0 0 0 .002-.836.6.6 0 0 0-.42-.171m9.11 0a.6.6 0 0 0-.418.173.587.587 0 0 0 0 .834.59.59 0 0 0 .834 0 .59.59 0 0 0 .002-.834.6.6 0 0 0-.418-.173M3.799 6.94a.86.86 0 0 0-.82.464.85.85 0 0 0 .372 1.143.85.85 0 1 0 .772-1.516.8.8 0 0 0-.324-.091m16.404 0a.9.9 0 0 0-.326.091.851.851 0 1 0 1.144.373.85.85 0 0 0-.818-.464m-11.35.265a.5.5 0 0 0-.269.092.49.49 0 0 0 .574.79.49.49 0 0 0 .108-.68.48.48 0 0 0-.412-.202m6.294 0a.49.49 0 0 0-.413.201.487.487 0 0 0 .11.682.49.49 0 0 0 .681-.108.49.49 0 0 0-.109-.683.5.5 0 0 0-.27-.092m-3.813.068a.4.4 0 0 0-.08.004.403.403 0 1 0 .08-.004m1.332 0a.4.4 0 0 0-.379.338.41.41 0 0 0 .334.461.403.403 0 0 0 .127-.795.4.4 0 0 0-.082-.004m-11.205.325a1.009 1.009 0 1 0 .396.045 1 1 0 0 0-.396-.046m21.078 0a1 1 0 0 0-.396.045c-.53.173-.821.743-.649 1.273.174.53.741.82 1.27.646a1.007 1.007 0 0 0-.225-1.964m-12.555.1a.4.4 0 0 0-.156.042.403.403 0 0 0-.176.54.4.4 0 0 0 .541.175.4.4 0 0 0 .176-.539.4.4 0 0 0-.385-.219m4.032 0a.4.4 0 0 0-.385.216.4.4 0 0 0 .176.541.4.4 0 0 0 .539-.176.4.4 0 0 0-.176-.54.4.4 0 0 0-.154-.042m-6.305.685a.488.488 0 1 0 .27.092.5.5 0 0 0-.27-.092m8.58 0a.5.5 0 0 0-.271.092.487.487 0 0 0-.108.681.489.489 0 1 0 .79-.572.48.48 0 0 0-.411-.201m-9.986.103a.59.59 0 0 0-.57.322.59.59 0 0 0 .26.794.587.587 0 0 0 .792-.256.593.593 0 0 0-.258-.797.6.6 0 0 0-.224-.063m11.392 0a.6.6 0 0 0-.226.063.593.593 0 0 0-.258.797.59.59 0 0 0 .793.257.59.59 0 0 0 .258-.795.59.59 0 0 0-.567-.322M8.904 8.5a.4.4 0 0 0-.287.12.4.4 0 0 0 .002.568.4.4 0 0 0 .568 0 .4.4 0 0 0 0-.569.4.4 0 0 0-.283-.119m6.194.002a.4.4 0 0 0-.286.117.4.4 0 0 0 .003.569.4.4 0 0 0 .566 0 .4.4 0 0 0 0-.569.4.4 0 0 0-.283-.117M4.59 8.906a.708.708 0 0 0-.158 1.379.707.707 0 0 0 .892-.453.707.707 0 0 0-.455-.893.7.7 0 0 0-.28-.033m14.82 0a.7.7 0 0 0-.28.033.707.707 0 1 0 .438 1.346.71.71 0 0 0 .457-.892.71.71 0 0 0-.615-.487zm-11.283.705a.4.4 0 0 0-.387.22.4.4 0 0 0 .176.538.397.397 0 0 0 .539-.174.4.4 0 0 0-.176-.54.4.4 0 0 0-.152-.044m7.746 0a.4.4 0 0 0-.152.043.4.4 0 0 0-.176.541.403.403 0 0 0 .539.174.4.4 0 0 0 .176-.54.4.4 0 0 0-.387-.218M2.801 9.7a.85.85 0 0 0-.803.717.85.85 0 0 0 .709.973.85.85 0 0 0 .973-.705.85.85 0 0 0-.705-.975 1 1 0 0 0-.174-.01zm18.398 0a1 1 0 0 0-.172.01.85.85 0 0 0-.707.975.85.85 0 0 0 .973.705.85.85 0 0 0 .707-.973.85.85 0 0 0-.8-.717m-14.305.168a.49.49 0 0 0-.421.336.487.487 0 0 0 .314.615.487.487 0 0 0 .615-.312.49.49 0 0 0-.314-.617.5.5 0 0 0-.194-.022m10.211 0a.5.5 0 0 0-.193.022.493.493 0 0 0-.314.617.49.49 0 0 0 .617.312.486.486 0 0 0 .31-.615.48.48 0 0 0-.42-.336M5.611 10.4a.59.59 0 0 0-.554.498.591.591 0 1 0 1.166.188.593.593 0 0 0-.493-.678.6.6 0 0 0-.119-.008m12.778 0a.6.6 0 0 0-.12.008.59.59 0 0 0-.492.678.59.59 0 0 0 .676.49.59.59 0 0 0 .49-.678.59.59 0 0 0-.554-.498m-10.733.514a.404.404 0 0 0-.379.336.4.4 0 0 0 .336.461.4.4 0 0 0 .457-.332.403.403 0 0 0-.334-.463.4.4 0 0 0-.08-.002zm8.688 0a.4.4 0 0 0-.082.004.4.4 0 0 0-.332.461c.034.218.24.366.459.332a.4.4 0 0 0 .334-.459.4.4 0 0 0-.38-.338m-15.336.078a1.008 1.008 0 0 0 0 2.016A1.007 1.007 0 0 0 2.016 12c0-.556-.451-1.008-1.008-1.008zm21.984 0a1.008 1.008 0 1 0-.003 2.017 1.008 1.008 0 0 0 .003-2.017zm-18.72.3a.71.71 0 0 0-.71.708.71.71 0 0 0 .71.709A.71.71 0 0 0 4.98 12a.71.71 0 0 0-.709-.709m15.456 0a.71.71 0 0 0 0 1.417.706.706 0 0 0 .707-.709.707.707 0 0 0-.707-.709m-13.052.218a.49.49 0 0 0-.489.49c0 .269.219.488.489.486a.488.488 0 1 0 0-.976m10.648 0a.49.49 0 0 0-.488.49.486.486 0 0 0 .488.486.487.487 0 0 0 .488-.486.49.49 0 0 0-.488-.49m-1.017.773a.4.4 0 0 0-.377.338.401.401 0 1 0 .793.127.4.4 0 0 0-.334-.459.4.4 0 0 0-.082-.006m-8.614.002a.4.4 0 0 0-.082.004.4.4 0 0 0-.334.46c.035.219.241.366.461.333a.404.404 0 0 0 .334-.46.4.4 0 0 0-.379-.337zm-2.027.133a.6.6 0 0 0-.121.006.59.59 0 0 0-.488.676.59.59 0 0 0 .673.492.59.59 0 0 0 .493-.678.59.59 0 0 0-.557-.496m12.668 0a.59.59 0 0 0-.557.498.59.59 0 1 0 1.166.184.59.59 0 0 0-.49-.676.6.6 0 0 0-.119-.006M2.879 12.6a1 1 0 0 0-.172.01.852.852 0 1 0 .973.707.85.85 0 0 0-.801-.717zm18.242 0a.851.851 0 1 0 .174.01 1 1 0 0 0-.174-.01m-14.14.558a.5.5 0 0 0-.194.022.49.49 0 0 0-.314.617.49.49 0 0 0 .93-.303.49.49 0 0 0-.423-.336m10.04 0a.49.49 0 0 0-.423.336.49.49 0 0 0 .314.615.485.485 0 0 0 .613-.312.49.49 0 0 0-.31-.617.5.5 0 0 0-.194-.022m-8.95.428a.4.4 0 0 0-.153.043.4.4 0 0 0-.176.54.4.4 0 0 0 .537.177.4.4 0 0 0 .176-.54.4.4 0 0 0-.385-.22m7.86 0a.41.41 0 0 0-.388.219.404.404 0 0 0 .176.54.404.404 0 0 0 .543-.175c.1-.196.02-.44-.178-.541a.4.4 0 0 0-.152-.043m-11.22.094a.7.7 0 0 0-.28.033.71.71 0 0 0-.454.894.707.707 0 0 0 .892.454.707.707 0 0 0 .455-.893.71.71 0 0 0-.613-.488m14.578 0a.71.71 0 0 0-.613.49c-.12.372.082.77.455.89a.707.707 0 0 0 .892-.453.71.71 0 0 0-.455-.894.7.7 0 0 0-.279-.033m-13.07.654a.6.6 0 0 0-.225.062.59.59 0 0 0-.26.795.59.59 0 0 0 .795.258.586.586 0 0 0 .258-.793.59.59 0 0 0-.568-.322zm11.562 0a.59.59 0 0 0-.568.32.59.59 0 0 0 .258.795.592.592 0 1 0 .535-1.053.6.6 0 0 0-.225-.062m-16.148.057a1 1 0 0 0-.397.046 1.009 1.009 0 1 0 1.27.647 1.01 1.01 0 0 0-.873-.693m20.734 0a1.01 1.01 0 0 0-.873.693 1.008 1.008 0 1 0 1.27-.646 1 1 0 0 0-.397-.047m-14.691.25a.5.5 0 0 0-.27.093.49.49 0 0 0-.11.682.49.49 0 0 0 .685.11.49.49 0 0 0 .109-.684.5.5 0 0 0-.414-.201m8.648 0a.49.49 0 0 0-.412.2.49.49 0 0 0 .107.684c.219.159.526.11.682-.109a.49.49 0 0 0-.107-.682.5.5 0 0 0-.27-.093m-7.42.054a.4.4 0 0 0-.285.115.4.4 0 0 0 0 .569.403.403 0 0 0 .569.002.403.403 0 0 0 0-.57.4.4 0 0 0-.284-.116m6.192 0a.4.4 0 0 0-.283.117.401.401 0 1 0 .568.569.4.4 0 0 0 0-.569.4.4 0 0 0-.285-.117m-11.42.666a.8.8 0 0 0-.324.09.851.851 0 1 0 .324-.09zm16.648 0a.86.86 0 0 0-.82.463.851.851 0 1 0 1.144-.373.8.8 0 0 0-.324-.09m-6.365.139a.4.4 0 0 0-.154.043.405.405 0 0 0-.174.541.4.4 0 0 0 .539.176.404.404 0 0 0 .176-.541.4.4 0 0 0-.387-.219m-3.918.002a.4.4 0 0 0-.387.217.4.4 0 0 0 .176.54.402.402 0 0 0 .365-.717.4.4 0 0 0-.154-.04m-1.152.316a.49.49 0 0 0-.412.202.487.487 0 1 0 .789.572.49.49 0 0 0-.108-.682.5.5 0 0 0-.27-.092m6.224 0a.5.5 0 0 0-.27.092.489.489 0 1 0 .682.11.49.49 0 0 0-.412-.202m-9.39.016a.7.7 0 0 0-.391.133.71.71 0 0 0-.156.992.704.704 0 0 0 .988.156.707.707 0 0 0 .158-.988.71.71 0 0 0-.6-.293m12.554 0a.71.71 0 0 0-.6.293.705.705 0 0 0 .159.988.706.706 0 0 0 .99-.156.71.71 0 0 0-.158-.992.7.7 0 0 0-.39-.133m-6.98.088a.405.405 0 0 0-.381.342.406.406 0 0 0 .338.459.402.402 0 0 0 .125-.795.4.4 0 0 0-.082-.006m1.406.002a.4.4 0 0 0-.082.004.4.4 0 0 0-.332.46.4.4 0 0 0 .46.335.4.4 0 0 0 .331-.46.4.4 0 0 0-.377-.34m-5.258.039a.6.6 0 0 0-.418.174.59.59 0 0 0 .836.834.59.59 0 0 0 .002-.834.6.6 0 0 0-.42-.174m9.11 0a.6.6 0 0 0-.418.174.587.587 0 0 0 0 .834.59.59 0 0 0 .834 0 .59.59 0 0 0 0-.834.59.59 0 0 0-.416-.174m-6.242.613a.49.49 0 0 0-.422.336.486.486 0 0 0 .314.615.49.49 0 0 0 .615-.312.49.49 0 0 0-.314-.617.5.5 0 0 0-.193-.022m3.375 0a.5.5 0 0 0-.194.022.489.489 0 0 0 .303.93.49.49 0 0 0 .312-.616.49.49 0 0 0-.421-.336m-1.688.26a.49.49 0 0 0-.488.488.488.488 0 1 0 .488-.488m-2.883.312a.59.59 0 0 0-.568.32.593.593 0 0 0 .258.796.59.59 0 0 0 .797-.258.594.594 0 0 0-.258-.795.6.6 0 0 0-.229-.063m5.766 0a.6.6 0 0 0-.227.063.593.593 0 0 0-.26.795c.15.29.507.406.797.258a.59.59 0 0 0 .256-.795.59.59 0 0 0-.566-.32m-11.81.303a1 1 0 0 0-.557.193 1.01 1.01 0 1 0 1.408.223 1.01 1.01 0 0 0-.852-.416m17.855.002a1.009 1.009 0 1 0 .556.192 1 1 0 0 0-.556-.192m-13.446.09a.71.71 0 0 0-.597.293.71.71 0 1 0 .99-.158.7.7 0 0 0-.393-.135m9.036 0a.7.7 0 0 0-.393.135.71.71 0 0 0-.156.99.71.71 0 0 0 .99.158.71.71 0 0 0 .156-.99.7.7 0 0 0-.597-.293m-11.075.162a.85.85 0 0 0-.601.25.85.85 0 1 0 1.203 1.203.852.852 0 0 0-.602-1.453m13.116.002a.86.86 0 0 0-.604.248.85.85 0 0 0 0 1.203.854.854 0 0 0 1.205 0 .85.85 0 0 0 0-1.203.84.84 0 0 0-.601-.248m-7.592.062a.59.59 0 0 0-.066 1.174.59.59 0 0 0 .675-.492.587.587 0 0 0-.49-.674.6.6 0 0 0-.12-.008m2.066 0a.6.6 0 0 0-.119.008.59.59 0 0 0-.488.674c.05.322.35.544.674.492a.59.59 0 0 0 .49-.675.59.59 0 0 0-.557-.498m-3.482.873a.71.71 0 0 0-.613.489.71.71 0 0 0 .455.892.71.71 0 0 0 .894-.455.71.71 0 0 0-.457-.892.7.7 0 0 0-.28-.033m4.898 0a.7.7 0 0 0-.28.032.71.71 0 1 0 .893.457.71.71 0 0 0-.613-.488zM12 19.02a.71.71 0 0 0-.709.709c0 .391.317.709.709.709a.71.71 0 0 0 .709-.71.71.71 0 0 0-.709-.708m-4.15.394a.85.85 0 0 0-.819.463.85.85 0 1 0 1.145-.373.9.9 0 0 0-.326-.09m8.3 0a.9.9 0 0 0-.328.09.852.852 0 1 0 .775 1.516.85.85 0 0 0 .37-1.143.85.85 0 0 0-.817-.463zm-10.576.469a1.01 1.01 0 0 0-.851.416 1.01 1.01 0 0 0 .224 1.408 1.01 1.01 0 0 0 1.409-.223 1.007 1.007 0 0 0-.223-1.408 1 1 0 0 0-.559-.193m12.852 0a1 1 0 0 0-.559.193 1.009 1.009 0 1 0 1.41.223 1.01 1.01 0 0 0-.851-.416m-7.914.426a.854.854 0 0 0-.803.718.85.85 0 1 0 1.68.264.85.85 0 0 0-.705-.973 1 1 0 0 0-.172-.01m2.978 0a.85.85 0 0 0-.879.984.85.85 0 1 0 1.68-.266.85.85 0 0 0-.8-.718m-4.972 1.14a1.01 1.01 0 0 0-.227 1.963 1.008 1.008 0 1 0 .623-1.918 1 1 0 0 0-.396-.045m6.964 0a1 1 0 0 0-.396.045 1.01 1.01 0 0 0-.65 1.27 1.01 1.01 0 0 0 1.921-.621 1.01 1.01 0 0 0-.875-.694M12 21.982A1.01 1.01 0 0 0 12 24a1.007 1.007 0 0 0 1.008-1.008c0-.556-.45-1.01-1.008-1.01"/></svg>���������������mkdocs-material-9.6.4/material/templates/.icons/simple/fila.svg�������������������������������������0000664�0000000�0000000�00000001601�14753064456�0024534�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.814 8.027c-.614 0-1.113.498-1.113 1.113v5.72a1.113 1.113 0 0 0 2.226 0V9.14c0-.614-.498-1.113-1.113-1.113m-2.849.078H1.113a1.113 1.113 0 0 0 0 2.226h4.852a1.113 1.113 0 0 0 0-2.226m17.411 4.417L21.03 8.705c-.275-.444-.65-.658-1.125-.658-.488 0-.904.229-1.162.658l-2.715 4.5c-.186.308-.4.436-.753.436h-2.019a.275.275 0 0 1-.285-.284V9.102c0-.613-.497-1.075-1.11-1.075s-1.11.463-1.11 1.076v5.215c0 .784.774 1.544 1.544 1.544h4.064c.576 0 .963-.42 1.292-.996l2.114-3.627c.018-.04.053-.091.093-.091.043 0 .07.051.091.088l1.384 2.22c.058.094.069.141.032.225-.033.077-.108.093-.23.093h-1.943a1.044 1.044 0 1 0 0 2.088h3.17c.77 0 1.638-.734 1.638-1.693 0-.608-.117-.822-.624-1.647M5.431 10.954H1.113c-.615 0-1.113.498-1.113 1.113v2.715a1.113 1.113 0 1 0 2.226 0v-1.268c0-.185.15-.334.334-.334h2.87a1.113 1.113 0 0 0 0-2.226"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/filament.svg���������������������������������0000664�0000000�0000000�00000006317�14753064456�0025431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.074 9.603c-.404 0-.866.122-1.128.596q-.128.225-.197.558l-.084.41H.149l-.149.71h.515q-.254 1.217-.506 2.435h.925q.257-1.217.508-2.436h.849l.149-.71h-.888l.058-.295a.66.66 0 0 1 .18-.364c.1-.086.229-.13.36-.122.173.003.344.044.5.12l.224-.757a2.2 2.2 0 0 0-.8-.145m3.865.007-.944.082q-.479 2.31-.962 4.62h.928c.021-.104.491-2.381.978-4.702m-2.046.022c-.288-.01-.605.136-.654.473-.13.663.559.652.874.481q.172-.097.227-.37c.054-.21-.027-.584-.447-.584m19.43.347-.95.167-.213 1.02h-.5l-.15.71h.503q-.137.672-.279 1.342-.084.4.02.662c.13.348.483.517.961.517.127-.003.473-.031.664-.151l.1-.772a.8.8 0 0 1-.46.154c-.42 0-.37-.409-.326-.617l.235-1.135h.923l.149-.71h-.925s.074-.348.248-1.187M7.542 11.08c-.562.001-1.147.192-1.204.211l-.146.825c.2-.087.66-.264 1.077-.264a.9.9 0 0 1 .357.058.336.336 0 0 1 .217.411c-.902.148-1.15.172-1.342.238-.38.116-.665.375-.728.762-.084.389.03.726.292.918a.8.8 0 0 0 .493.147c.402.008.714-.216.9-.495h.072l-.04.42h.8q.213-.992.416-1.987.084-.383-.028-.662c-.197-.485-.735-.582-1.136-.582m3.958 0q-.214 0-.41.076c-.258.1-.482.273-.644.498h-.08l.067-.536-.783.047q-.324 1.573-.655 3.145h.929l.133-.65c.095-.438.183-.878.273-1.317.301-.357.501-.406.646-.406.335 0 .34.33.278.627q-.114.548-.225 1.097-.065.326-.134.65h.925c.77-3.66-.303 1.396.417-1.998.053-.064.117-.116.175-.174.108-.099.266-.203.447-.203.328 0 .343.317.279.628l-.36 1.746h.928c.135-.673.278-1.345.419-2.017q.119-.551-.074-.882-.191-.33-.668-.331-.213 0-.412.077a1.5 1.5 0 0 0-.658.51h-.068a.7.7 0 0 0-.204-.404q-.195-.183-.541-.183m4.752 0q-.434 0-.773.188c-.633.352-.825 1.049-.878 1.324-.087.437-.114 1.182.57 1.581q.375.22.932.22c.428 0 .825-.103.978-.196l.124-.8q-.133.075-.292.124c-.464.144-1.192.182-1.404-.304a.7.7 0 0 1-.053-.313l.001-.012h1.9c.048-.12.073-.249.109-.373q.106-.431-.003-.756a.9.9 0 0 0-.416-.503q-.307-.18-.795-.18m3.956 0q-.22 0-.424.076a1.4 1.4 0 0 0-.654.498h-.076l.064-.536-.782.047c-.088.426-.292 1.421-.655 3.145h.928q.205-.984.407-1.967a2 2 0 0 1 .203-.208 1 1 0 0 1 .218-.144c.168-.08.476-.097.556.117q.066.172.004.456l-.36 1.746h.928l.138-.654q.14-.682.284-1.363c.124-.59.004-1.213-.779-1.213m-16.63.08-.453.016-.058.212a.08.08 0 0 0 .03.074l.314.219-.366.024c-.03.002-.053.026-.06.058l-.03.137a.08.08 0 0 0 .03.074l.314.218-.366.024c-.03.002-.053.026-.06.058l-.029.135a.08.08 0 0 0 .03.075l.314.218-.367.025c-.028.002-.053.025-.06.057q-.016.069-.029.138a.08.08 0 0 0 .03.073l.314.218-.366.025c-.03.002-.053.025-.06.058l-.03.137a.08.08 0 0 0 .032.073l.313.22-.367.023c-.028.002-.053.025-.06.057l-.127.504h.41l.065-.274.513-.045c.03-.002.054-.025.06-.058l.03-.136a.08.08 0 0 0-.031-.074l-.314-.219.367-.024c.029-.002.053-.026.06-.058q.015-.068.028-.136a.08.08 0 0 0-.03-.074l-.313-.219.366-.025c.03 0 .054-.025.06-.057l.03-.137a.08.08 0 0 0-.03-.074l-.315-.218.367-.025c.029-.002.053-.025.06-.057l.028-.128v-.009a.08.08 0 0 0-.03-.074l-.313-.218.367-.024c.029-.002.053-.025.06-.057l.028-.128v-.01a.08.08 0 0 0-.03-.073l-.415-.292Zm12.693.585q.251 0 .357.208a.67.67 0 0 1 .057.398l-1.122.024.01-.028c.122-.368.392-.6.698-.602M7.728 12.75l-.105.504c-.173.256-.409.405-.633.408-.099.004-.359-.054-.305-.368a.37.37 0 0 1 .252-.286c.234-.089.519-.113.685-.196a1 1 0 0 0 .106-.062"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/filedotio.svg��������������������������������0000664�0000000�0000000�00000001220�14753064456�0025574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.034 11.837a2.98 2.98 0 0 1-1.868 2.718l-4.385 1.401-.06-5.23c-.011-1.256-.514-2.48-1.135-2.727-2.024-.816-4.054-1.619-6.07-2.456a1.03 1.03 0 0 1-.509-.934c.001-.272.11-.532.303-.724q.173-.092.36-.149L18.049.084c1.051-.331 1.91.341 1.91 1.504zm-7.02 10.296c.011 1.256-.485 2.073-1.102 1.821-2.287-.916-4.565-1.869-6.854-2.773-.775-.509-.999-1.023-.999-2.653L3.975 7.471a4.3 4.3 0 0 1 .256-1.732 2.76 2.76 0 0 1 1.116-1.368q.095-.067.196-.121c-.195.19-.304.451-.303.723-.019.381.175.741.504.934l1.13.467 4.945 2.013c.616.252 1.135 1.47 1.135 2.726.027 3.673.043 7.347.06 11.02"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/files.svg������������������������������������0000664�0000000�0000000�00000001113�14753064456�0024721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.367 2.453a.82.82 0 0 0-.576.238L.241 14.213a.82.82 0 0 0-.241.584v.066c0-.323.209-.608.516-.709l7.275-2.318a2.44 2.44 0 0 0 1.584-1.592l2.318-7.267a.76.76 0 0 1 .719-.524zM0 14.863v5.047c0 .904.733 1.637 1.637 1.637h20.726c.904 0 1.637-.733 1.637-1.637V4.09c0-.904-.733-1.637-1.637-1.637h-9.951v.5l.088 9.861c.01 1.175-.962 2.14-2.137 2.14zM12 3.66l-2.148 6.735v.001a2.94 2.94 0 0 1-1.909 1.916l-6.716 2.141h9.136c.905 0 1.638-.734 1.637-1.639zm-10.363.975c-.905 0-1.638.734-1.637 1.638v7.473l9.135-9.111Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/filezilla.svg��������������������������������0000664�0000000�0000000�00000002741�14753064456�0025602�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.999 1.861V.803a.8.8 0 0 1-.568-.236.8.8 0 0 1-.234-.567h-1.06a.806.806 0 0 1-1.608 0h-1.06a.805.805 0 0 1-1.608 0h-1.059a.807.807 0 0 1-.845.765.81.81 0 0 1-.764-.765h-1.06a.806.806 0 0 1-1.609 0h-1.058a.805.805 0 0 1-1.608 0h-1.06a.794.794 0 0 1-.825.774A.803.803 0 0 1 7.197 0h-1.06A.806.806 0 0 1 4.53 0H3.47a.803.803 0 0 1-1.607 0H.803a.806.806 0 0 1-.802.803V1.86a.804.804 0 0 1 0 1.607v1.06a.803.803 0 0 1 0 1.607v1.059a.805.805 0 0 1 0 1.608v1.06a.803.803 0 1 1 0 1.607v1.06a.803.803 0 0 1 0 1.606v1.06a.803.803 0 1 1 0 1.608v1.06c.444.017.79.388.774.83a.8.8 0 0 1-.774.775v1.061a.803.803 0 1 1 0 1.608v1.06A.805.805 0 0 1 .804 24h1.06a.806.806 0 0 1 1.607 0h1.06a.806.806 0 0 1 1.608 0h1.059a.806.806 0 0 1 1.609 0h1.06a.804.804 0 0 1 1.607 0h1.06a.806.806 0 0 1 1.607 0H15.2a.807.807 0 0 1 1.61 0h1.058a.807.807 0 0 1 1.61 0h1.059a.804.804 0 0 1 1.606 0h1.054c0-.21.086-.418.235-.568a.8.8 0 0 1 .567-.234v-1.06a.805.805 0 0 1 0-1.606v-1.06a.805.805 0 0 1 0-1.608v-1.06a.806.806 0 0 1 0-1.608v-1.061a.804.804 0 0 1 0-1.608V11.47a.806.806 0 0 1 0-1.608v-1.06a.804.804 0 0 1 0-1.607v-1.06a.805.805 0 0 1 0-1.606v-1.06a.806.806 0 0 1 0-1.608m-4.067 9.836L13.53 17.92c.58.09 1.14.225 1.742.225 1.464 0 3.147-.445 4.285-.916l-.584 2.745c-1.675.805-2.7.87-3.701.87-1.095 0-2.144-.356-3.215-.356-.602 0-1.473.045-2.008.4l-1.16-2.052 6.604-6.54h-7.6l-1.45 6.806h-3.17L6.577 3.528h10.487l-.67 3.145H9.097l-.624 2.924h11.973z"/></svg>�������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fineco.svg�����������������������������������0000664�0000000�0000000�00000002137�14753064456�0025071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.712 8.72a1.7 1.7 0 0 0-1.21.488A1.68 1.68 0 0 0 0 10.404v3.176a1.68 1.68 0 0 0 .496 1.207 1.7 1.7 0 0 0 1.216.493h20.576v-.016a1.7 1.7 0 0 0 1.21-.487A1.68 1.68 0 0 0 24 13.58v-3.176a1.68 1.68 0 0 0-.502-1.196 1.7 1.7 0 0 0-1.21-.488Zm18.256 1.462c1.136 0 2.048.81 2.048 1.795s-.912 1.794-2.048 1.794-2.048-.683-2.048-1.794c0-1.112.912-1.795 2.048-1.795m-3.344.016a3.2 3.2 0 0 1 .96.143l-.16.524a2.4 2.4 0 0 0-.8-.127c-.992 0-1.792.397-1.792 1.254 0 .858.8 1.255 1.792 1.255a2.4 2.4 0 0 0 .784-.127l.16.524a3.2 3.2 0 0 1-.944.143c-1.52 0-2.464-.683-2.464-1.795s1.104-1.794 2.464-1.794m-14.336.063h2.576v.508h-1.92v.97h1.824v.508H2.944v1.477h-.656Zm3.312 0h.656v3.469H5.6Zm1.504 0h.816l1.088 1.477a9 9 0 0 1 .72 1.16h.016a13 13 0 0 1-.064-1.446v-1.191h.656v3.462H9.6L8.496 12.2a12 12 0 0 1-.752-1.207h-.016c.032.444.032.905.032 1.477v1.238l-.656.016zm4 0h2.576v.524h-1.92v.953h1.824v.524H11.76v.953l1.92-.016v.524h-2.576zm8.864.445c-.768 0-1.392.397-1.392 1.27 0 .874.624 1.271 1.392 1.271s1.392-.572 1.392-1.27c0-.7-.624-1.271-1.392-1.271"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fing.svg�������������������������������������0000664�0000000�0000000�00000004555�14753064456�0024557�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.706 9.583c1.359.018 2.375 1.094 2.347 2.485-.027 1.317-1.117 2.352-2.46 2.337-1.333-.015-2.352-1.113-2.334-2.515.018-1.334 1.069-2.325 2.447-2.307m6.259-3.852c-.654-.716-1.447-1.271-2.316-1.726-.26-.136-.535-.241-.8-.367-.444-.211-.719-.539-.579-1.052.147-.537.547-.738 1.071-.597 1.196.323 2.198 1.004 3.15 1.769q.171.139.333.288c.194.179.346.542.611.459.254-.08.079-.446.129-.681.048-.228.161-.422.405-.402.256.021.519.141.511.455a47 47 0 0 1-.116 2.518c-.03.375-.31.509-.68.491a72 72 0 0 0-2.081-.068c-.329-.006-.679.012-.685-.439-.005-.435.333-.47.667-.483.118-.002.256.039.38-.165m-4.422-3.714c-.007 1.068-.87 1.938-1.917 1.934-1.063-.004-1.98-.923-1.971-1.973.009-1.057.944-1.993 1.973-1.978 1.059.016 1.922.926 1.915 2.017M5.465 20.792c-1.049-.013-1.895-.891-1.894-1.964.001-1.106.893-2.018 1.949-1.993 1.063.025 1.925.959 1.893 2.049-.032 1.081-.89 1.921-1.948 1.908m5.267 1.174c.023-1.124.857-1.896 2.017-1.866 1.04.026 1.9.948 1.861 1.992-.039 1.04-.955 1.92-1.984 1.908-1.062-.013-1.917-.931-1.894-2.034M5.649 6.814c-1.13.002-1.966-.822-1.964-1.937.001-1.051.875-1.947 1.911-1.96 1.046-.012 1.953.868 1.965 1.907.013 1.126-.816 1.988-1.912 1.99m-2.954 7.082a1.92 1.92 0 0 1-1.927-1.923c-.004-1.08.894-1.988 1.96-1.981 1.08.007 1.94.912 1.916 2.014-.025 1.099-.845 1.894-1.949 1.89m18.931 5.047c-.009 1.103-.872 1.926-1.997 1.906-1.077-.02-1.84-.844-1.831-1.979.009-1.11.811-1.921 1.899-1.92 1.077.002 1.938.892 1.929 1.993m1.606-6.87a10.5 10.5 0 0 1-.856 4.046c-.188.443-.51.724-1.044.546-.495-.164-.75-.587-.542-1.095a9.8 9.8 0 0 0 .731-4.062c-.016-.522.304-.818.836-.814.487.003.793.245.843.75.021.208.022.419.032.629m-6.363 7.897c.575-.027.804.255.925.598a.81.81 0 0 1-.351.989c-.404.25-.84.473-1.328.529-.418.048-.741-.114-.918-.502-.168-.369-.102-.738.216-.965a4.1 4.1 0 0 1 1.456-.649M4.67 7.84c-.027.8-.622 1.588-1.179 1.563-.441-.02-.886-.47-.885-.896.001-.762.622-1.615 1.161-1.595.512.017.92.437.903.928m5.254 13.317c.003.597-.317.906-.902.853-.495-.045-.914-.299-1.291-.586-.302-.23-.411-.589-.213-.958.192-.358.472-.564.919-.497.838.124 1.484.627 1.487 1.188m-6.456-6.743c.531.002 1.093.781 1.075 1.491a.87.87 0 0 1-.859.835c-.508.009-1.082-.738-1.1-1.432-.011-.423.456-.895.884-.894M9.102 2.002c.53.009.839.344.818.885-.021.528-.81 1.1-1.487 1.078-.47-.015-.783-.369-.778-.879.006-.596.675-1.097 1.447-1.084"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/firebase.svg���������������������������������0000664�0000000�0000000�00000003106�14753064456�0025403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.455 8.369c-.538-.748-1.778-2.285-3.681-4.569a447 447 0 0 0-1.884-2.245l-.488-.576-.207-.245-.113-.133-.022-.032-.01-.005L12.57 0l-.609.488a13.34 13.34 0 0 0-3.681 4.64 11.4 11.4 0 0 0-1.043 3.176 12 12 0 0 0-.121.738 11 11 0 0 0-.632-.033l-.059-.003a7.5 7.5 0 0 0-2.28.274l-.317.089-.163.286a9.6 9.6 0 0 0-1.252 4.416 9.53 9.53 0 0 0 1.583 5.625 9.57 9.57 0 0 0 4.42 3.611l.236.095.071.025.003-.001a9.6 9.6 0 0 0 2.941.568q.171.006.342.006a9.5 9.5 0 0 0 3.69-.742l.008.004.313-.145a9.63 9.63 0 0 0 3.927-3.335 9.6 9.6 0 0 0 1.641-5.042c.075-2.161-.643-4.304-2.133-6.371m-7.083 6.695c.328 1.244.264 2.44-.191 3.558-1.135-1.12-1.967-2.352-2.475-3.665-.543-1.404-.87-2.74-.974-3.975.48.157.922.366 1.315.622 1.132.737 1.914 1.902 2.325 3.461zm.207 6.022c.482.368.99.712 1.513 1.028a7.9 7.9 0 0 1-2.369.273 8 8 0 0 1-.373-.022 9 9 0 0 0 1.228-1.279zm1.347-6.431c-.516-1.957-1.527-3.437-3.002-4.398a7.4 7.4 0 0 0-2.194-.95 9 9 0 0 1 .089-.713 11.6 11.6 0 0 1 .91-2.765l.004-.008c.177-.358.376-.719.61-1.105l.092-.152-.003-.001a11.7 11.7 0 0 1 1.942-2.311l.288.341c.672.796 1.304 1.548 1.878 2.237 1.291 1.549 2.966 3.583 3.612 4.48 1.277 1.771 1.893 3.579 1.83 5.375a7.97 7.97 0 0 1-3.995 6.641 15.5 15.5 0 0 1-2.539-1.599c.79-1.575.952-3.28.479-5.072zm-2.575 5.397a7.9 7.9 0 0 1-2.09 1.856 6 6 0 0 1-.243-.093l-.065-.026a7.97 7.97 0 0 1-3.635-3.01 7.94 7.94 0 0 1-1.298-4.653 7.9 7.9 0 0 1 .882-3.379q.476-.105.96-.131l.084-.002q.245-.005.478 0 .341.017.677.07c.073 1.513.445 3.145 1.105 4.852.637 1.644 1.694 3.162 3.144 4.515z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/firefish.svg���������������������������������0000664�0000000�0000000�00000001403�14753064456�0025420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.771 0c-.68-.016-1.342.507-1.342 1.304V7.27a1.3 1.3 0 0 0 1.3 1.301h5.967c1.16 0 1.74-1.401.92-2.22L17.65.383A1.27 1.27 0 0 0 16.771 0M6.573.106c-.672-.017-1.326.5-1.326 1.287v5.892c0 .71.575 1.285 1.285 1.285h5.892c1.145 0 1.718-1.384.908-2.194L7.44.484a1.26 1.26 0 0 0-.867-.379ZM1.286 10.287c-.71 0-1.286.576-1.286 1.286v11.142C0 23.425.576 24 1.286 24h11.143c.71 0 1.285-.575 1.285-1.285V11.573c0-.71-.575-1.286-1.285-1.286zm15.485 0c-.68-.017-1.342.507-1.342 1.304v5.966a1.3 1.3 0 0 0 1.3 1.3h5.967c1.16 0 1.74-1.4.92-2.22L17.65 10.67a1.27 1.27 0 0 0-.879-.384zM3.43 17.144a1.714 1.714 0 1 1 0 3.428 1.714 1.714 0 0 1 0-3.428m4.285 0a1.714 1.714 0 1 1 0 3.428 1.714 1.714 0 0 1 0-3.428"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fireflyiii.svg�������������������������������0000664�0000000�0000000�00000002771�14753064456�0025765�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.107 0s.917 3.103-.842 4.91c-1.76 1.807-1.57 3.803-.856 4.754.713.951.665 1.664.095 2.187s-1.046.904-1.379.048-.713-.856-.856-1.284a44 44 0 0 0-.428-1.189s-.903 1.427-1.474 2.283c-.57.855-.57 2.187-.19 2.9s.238 1.569-.047 2.757c-.286 1.189.095 2.996 1.426 3.709s2.948 1.283 3.66 1.949c.714.666 2.378 1.284 4.518.808 2.14-.475 4.85-2.662 5.324-4.136 0 0 1.237-1.379 1-3.185-.239-1.807-1.095-1.76-1.475-3.138-.38-1.38.823-1.04-.19-3.406 0 0-.452-1.127-2.168-1.939-1.102-.521-.352-2.88-2.3-5.258C11.974.393 10.106 0 10.106 0zm-.326 11.753c1.373-.01 2.14 1.376 2.14 1.376 1.78-.216 3.533.152 4.374.94.531.498.965.956 1.181 1.834-.1-.034-.282-.08-.52-.076a1.9 1.9 0 0 0-.902.256s-.99-.333-1.52.097c-.55.446-.604.968-.576 1.586 0 0 .476-1.628 1.68-1.208 0 0-.852 1.5.472 1.762 0 0 .313-.002.57-.158.247-.148.44-.424.361-.92 0 0-.16-.494-.577-.794 0 0 .378-.267 1.096-.104q.052.355.063.802c.047 2.057-1.326 3.402-1.326 3.402v.927c-.167.334-.445.445-1.39.445-.946 0-1.076-.26-1.076-.26v-.185c-1.446.186-2.234 0-2.234 0 0 .167 0 .195-.14.334-.138.139-1 .148-1.65.055-.649-.092-.574-.407-.574-.407v-.946a3.66 3.66 0 0 1-1.354-1.873l-.61.012c-.334 0-.477-.428-.477-.428v-1.379c0-.428.428-.523.428-.523l.594-.045c.201-1.426 1.688-2.522 1.688-2.522l-.083-1.966q.188-.034.362-.034m-.548 4.716a.35.35 0 0 0-.353.352.35.35 0 0 0 .353.352.35.35 0 0 0 .352-.352.35.35 0 0 0-.352-.352m6.85.301s.124.031.39.469c.257.425-.182.635-.182.635-.827.063-.208-1.104-.208-1.104"/></svg>�������mkdocs-material-9.6.4/material/templates/.icons/simple/firefox.svg����������������������������������0000664�0000000�0000000�00000001665�14753064456�0025275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.452 3.445a11 11 0 0 0-2.482-1.908C16.944.997 15.098.093 12.477.032q-1.1-.026-2.174.144c-.72.114-1.398.292-2.118.56-1.017.377-1.996.975-2.574 1.554.583-.349 1.476-.733 2.55-.992a10.1 10.1 0 0 1 3.729-.167c2.341.34 4.178 1.381 5.48 2.625a8 8 0 0 1 1.298 1.587c1.468 2.382 1.33 5.376.184 7.142-.85 1.312-2.67 2.544-4.37 2.53-.583-.023-1.438-.152-2.25-.566-2.629-1.343-3.021-4.688-1.118-6.306-.632-.136-1.82.13-2.646 1.363-.742 1.107-.7 2.816-.242 4.028a6.5 6.5 0 0 1-.59-1.895 7.7 7.7 0 0 1 .416-3.845A8.2 8.2 0 0 1 9.45 5.399c.896-1.069 1.908-1.72 2.75-2.005-.54-.471-1.411-.738-2.421-.767C8.31 2.583 6.327 3.061 4.7 4.41a8.2 8.2 0 0 0-1.976 2.414c-.455.836-.691 1.659-.697 1.678.122-1.445.704-2.994 1.248-4.055-.79.413-1.827 1.668-2.41 3.042C.095 9.37-.2 11.608.14 13.989c.966 5.668 5.9 9.982 11.843 9.982C18.62 23.971 24 18.591 24 11.956a11.93 11.93 0 0 0-3.548-8.511"/></svg>���������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/firefoxbrowser.svg���������������������������0000664�0000000�0000000�00000002465�14753064456�0026700�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.824 7.287c.008 0 .004 0 0 0m-2.8-1.4c.006 0 .003 0 0 0m16.754 2.161c-.505-1.215-1.53-2.528-2.333-2.943.654 1.283 1.033 2.57 1.177 3.53l.002.02c-1.314-3.278-3.544-4.6-5.366-7.477-.091-.147-.184-.292-.273-.446a4 4 0 0 1-.13-.24 2 2 0 0 1-.172-.46.03.03 0 0 0-.027-.03.04.04 0 0 0-.021 0l-.006.001-.01.005.005-.008c-2.585 1.515-3.657 4.168-3.932 5.856a6.2 6.2 0 0 0-2.305.587.297.297 0 0 0-.147.37c.057.162.24.24.396.17a5.6 5.6 0 0 1 2.008-.523l.067-.005a5.9 5.9 0 0 1 1.957.222l.095.03a6 6 0 0 1 .616.228q.12.054.238.112l.107.055a6 6 0 0 1 .368.211 5.95 5.95 0 0 1 2.034 2.104c-.62-.437-1.733-.868-2.803-.681 4.183 2.09 3.06 9.292-2.737 9.02a5.2 5.2 0 0 1-1.513-.292 4.4 4.4 0 0 1-.538-.232c-1.42-.735-2.593-2.121-2.74-3.806 0 0 .537-2 3.845-2 .357 0 1.38-.998 1.398-1.287-.005-.095-2.029-.9-2.817-1.677-.422-.416-.622-.616-.8-.767a4 4 0 0 0-.301-.227 5.4 5.4 0 0 1-.032-2.842c-1.195.544-2.124 1.403-2.8 2.163h-.006c-.46-.584-.428-2.51-.402-2.913-.006-.025-.343.176-.389.206a8.4 8.4 0 0 0-1.136.974q-.596.606-1.085 1.303a9.8 9.8 0 0 0-1.562 3.52c-.003.013-.11.487-.19 1.073q-.02.135-.037.272a8 8 0 0 0-.069.667l-.002.034-.023.387-.001.06C.386 18.795 5.593 24 12.016 24c5.752 0 10.527-4.176 11.463-9.661q.028-.223.052-.448c.232-1.994-.025-4.09-.753-5.844z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fireship.svg���������������������������������0000664�0000000�0000000�00000001506�14753064456�0025436�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.245.05c-.042-.035-.14-.035-.22-.05-.041.06-.098.113-.113.166a3 3 0 0 0-.064.416 15.42 15.42 0 0 1-3.742 8.693c-1.258 1.474-2.51 2.982-3.44 4.585-2.293 3.972-.249 8.031 4.763 9.804.163.06.348.087.76.181-1.701-1.534-2.57-3.1-2.28-4.944.284-1.765 1.172-3.337 2.525-4.77a1.04 1.04 0 0 1 .099.549c-.068 1.572.453 2.96 2.063 4.055.741.507 1.41 1.081 2.079 1.644.684.57.884 1.263.688 2.015-.09.366-.227.725-.378 1.171 1.145-.11 2.203-.264 2.914-.9.68-.604 1.183-1.322 1.909-2.154.049.707.15 1.255.113 1.8-.045.566-.22 1.126-.336 1.689 3.477-.525 6.546-3.934 6.682-7.427.098-2.543-2.071-6.274-3.893-6.637l.302.688c.631 1.391.817 2.8.416 4.256-.4 1.448-2.426 3.073-4.214 3.277.06-.144.087-.28.17-.39 1.927-2.596 1.946-5.31.854-8.084C15.44 5.98 12.632 2.88 9.245.053Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/firewalla.svg��������������������������������0000664�0000000�0000000�00000001107�14753064456�0025570�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.156 0c-3.602 4.89.391 7.768 2.61 11.893-.751 1.527-1.745 3.08-2.733 4.836l-.072.025c-.849-.983-1.99-1.85-3.033-2.967 2.606-5.783-.809-9.812-.809-9.812a12.6 12.6 0 0 0-1.916 2.021c-2.296 3.06-2.027 5.897-2.027 5.897C4.176 19.07 12.125 24 12.125 24a22 22 0 0 0 2.139-1.594c5.864-4.974 5.564-10.513 5.564-10.513.122-4.308-1.622-5.905-4.82-9.014A84 84 0 0 1 12.156 0m.678 18.057a4 4 0 0 1 .14.328 5 5 0 0 0-.14-.328m.266.718a4.3 4.3 0 0 1 .14.791q.037.428-.006.91a5 5 0 0 0 .006-.91 4.5 4.5 0 0 0-.14-.79z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/first.svg������������������������������������0000664�0000000�0000000�00000014065�14753064456�0024760�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.318 20.734c.608.18 1.239.274 1.873.278.834 0 1.472-.189 2.02-.585.609-.432 1.001-1.098 1.001-1.702a1.33 1.33 0 0 0-.49-1.035c-.245-.198-.5-.352-1.02-.595l-.422-.198c-.137-.072-.206-.144-.206-.225 0-.216.275-.378.647-.378.28 0 .612.081 1.247.289l.438-1.626a5.3 5.3 0 0 0-1.4-.194c-1.746 0-3.09.954-3.09 2.188 0 .649.432 1.108 1.51 1.612.51.234.599.297.599.46 0 .242-.265.396-.696.396-.383 0-.873-.117-1.54-.36h-.001Zm-4.526-5.818.138-.018c.686-.08 1.54-.135 2.01-.135.785 0 1.393.09 1.854.28.589.242.942.774.942 1.413 0 .55-.187 1.072-.54 1.477-.304.35-.578.522-1.147.693l-.138.045c.06.045.079.063.108.09.167.19.667 1.162 1.09 2.125h-2.355a33 33 0 0 0-.795-2.053l-.47 2.053h-2.08Zm-2.697-.036h2.138L6.84 20.886H4.702Zm-4.702 0h4.139l-.39 1.594H3.158l-.196.837h2.07l-.36 1.477H2.628l-.49 2.098H0Zm17.419 0H24l-.363 1.739h-1.54l-1.02 4.267H18.94l1.02-4.267h-1.67zm-8.441 2.864c.687 0 1.168-.406 1.168-.982 0-.306-.226-.46-.667-.46a1.5 1.5 0 0 0-.334.037l-.324 1.387c.07.009.079.018.157.018m10.89-9.72L16 2.996 14.232 4.84c-.73-.283-1.88-.51-2.753-.51-1.271 0-2.581.434-3.496 1L5.516 2.992v-.003h-.002l-.002-.001v.002l-.882.092-1.904 10.427.886.092v-.003l4.019-1.758.019.018c.956.843 2.39 1.38 3.996 1.38 1.113 0 2.144-.259 2.991-.699l1.615 1.551 5.01-5.216v-.849ZM3.651 13.38 5.486 3.166l2.618 2.48.82.777.626.594 1.488 1.418v.647l.632.607-1.975.9a3.6 3.6 0 0 1-1.138-.745l-.02-.021 1.516-.708-3.564-3.32-.07-.07-.086.46-.842 4.387-.13.682.223-.096.001-.005 1.145-.491c.18.377.436.728.755 1.042zm12.601-.14-1.068-1.026a4.3 4.3 0 0 0 1.05-1l.01-.016L18.842 8.5l.077-.083.34-.353-3.173-3.046-.713.742-.787.82-.536.558-1.01 1.052-.087.092.295.282 1.367 1.333c-.3.283-.68.526-1.109.704l-.903-.865-.886-.851-.602-.571 1.432-1.492.72-.75.781-.814 1.953-2.034 5.143 4.922zm-1.728-1.652a6 6 0 0 1-.604.263c-.72.266-1.497.4-2.307.4-1.15 0-2.238-.272-3.147-.79a4.5 4.5 0 0 1-1.254-1.03 3.6 3.6 0 0 1-.332-.472 3 3 0 0 1-.419-1.491c0-.55.158-1.08.47-1.577l.836.846a2.1 2.1 0 0 0-.025 1.08q.086.35.291.676.163.259.39.485c.415.415.978.74 1.628.943a5.2 5.2 0 0 0 1.562.232c.438 0 .87-.052 1.287-.155.236-.06.465-.134.678-.223.493-.205.926-.49 1.253-.826a2.44 2.44 0 0 0 .652-1.131q.06-.25.06-.493c0-.466-.175-.993-.46-1.396l.71-.741c.61.634.97 1.48.97 2.28q0 .221-.038.456c-.11.671-.466 1.31-1.03 1.848-.33.316-.724.59-1.17.816zm-2.534-1.59.853.82a5.2 5.2 0 0 1-2.923-.14l1.892-.85zm4.925-1.083q.036-.229.037-.447c0-.853-.387-1.752-1.035-2.422l.169-.176 2.628 2.524-2.176 2.266c.23-.538.38-1.2.38-1.676zm-10.6.04.004.018-.004.063c0 .251.154.848.216 1.086l-.817.35.78-4.06.32.316a3.13 3.13 0 0 0-.54 1.74c0 .158.013.317.04.487zm8.415.827-1.24-1.209 1.05-1.094c.374.311.65.684.797 1.093q-.013.1-.037.201-.133.546-.57 1.009m-6.509-.348-.029-.04a2.1 2.1 0 0 1-.267-.62q-.007-.034-.013-.068a2.2 2.2 0 0 1 .283-.61l.994.982zm4.317-2.83-1.53 1.594-1.343-1.274c.626-.266 1.3-.4 1.98-.396q.463.001.893.076m-1.101-2.075c.83 0 1.938.213 2.643.47l-.032.033-.782.814-.002.003a5.1 5.1 0 0 0-1.618-.257c-1.01 0-1.927.28-2.609.737l-.01-.01-.82-.777-.073-.069c.896-.541 2.06-.944 3.303-.944m1.881 16.205c.608.18 1.239.274 1.873.278.834 0 1.472-.189 2.02-.585.609-.432 1.001-1.098 1.001-1.702a1.33 1.33 0 0 0-.49-1.035c-.245-.198-.5-.352-1.02-.595l-.422-.198c-.137-.072-.206-.144-.206-.225 0-.216.275-.378.647-.378.28 0 .612.081 1.247.289l.438-1.626a5.3 5.3 0 0 0-1.4-.194c-1.746 0-3.09.954-3.09 2.188 0 .649.432 1.108 1.51 1.612.51.234.599.297.599.46 0 .242-.265.396-.696.396-.383 0-.873-.117-1.54-.36h-.001Zm-4.526-5.818.138-.018c.686-.08 1.54-.135 2.01-.135.785 0 1.393.09 1.854.28.589.242.942.774.942 1.413 0 .55-.187 1.072-.54 1.477-.304.35-.578.522-1.147.693l-.138.045c.06.045.079.063.108.09.167.19.667 1.162 1.09 2.125h-2.355a33 33 0 0 0-.795-2.053l-.47 2.053h-2.08Zm-2.697-.036h2.138L6.84 20.886H4.702Zm-4.702 0h4.139l-.39 1.594H3.158l-.196.837h2.07l-.36 1.477H2.628l-.49 2.098H0Zm17.419 0H24l-.363 1.739h-1.54l-1.02 4.267H18.94l1.02-4.267h-1.67zm-8.441 2.864c.687 0 1.168-.406 1.168-.982 0-.306-.226-.46-.667-.46a1.5 1.5 0 0 0-.334.037l-.324 1.387c.07.009.079.018.157.018m10.89-9.72L16 2.996 14.232 4.84c-.73-.283-1.88-.51-2.753-.51-1.271 0-2.581.434-3.496 1L5.516 2.992v-.003h-.002l-.002-.001v.002l-.882.092-1.904 10.427.886.092v-.003l4.019-1.758.019.018c.956.843 2.39 1.38 3.996 1.38 1.113 0 2.144-.259 2.991-.699l1.615 1.551 5.01-5.216v-.849ZM3.651 13.38 5.486 3.166l2.618 2.48.82.777.626.594 1.488 1.418v.647l.632.607-1.975.9a3.6 3.6 0 0 1-1.138-.745l-.02-.021 1.516-.708-3.564-3.32-.07-.07-.086.46-.842 4.387-.13.682.223-.096.001-.005 1.145-.491c.18.377.436.728.755 1.042zm12.601-.14-1.068-1.026a4.3 4.3 0 0 0 1.05-1l.01-.016L18.842 8.5l.077-.083.34-.353-3.173-3.046-.713.742-.787.82-.536.558-1.01 1.052-.087.092.295.282 1.367 1.333c-.3.283-.68.526-1.109.704l-.903-.865-.886-.851-.602-.571 1.432-1.492.72-.75.781-.814 1.953-2.034 5.143 4.922zm-1.728-1.652a6 6 0 0 1-.604.263c-.72.266-1.497.4-2.307.4-1.15 0-2.238-.272-3.147-.79a4.5 4.5 0 0 1-1.254-1.03 3.6 3.6 0 0 1-.332-.472 3 3 0 0 1-.419-1.491c0-.55.158-1.08.47-1.577l.836.846a2.1 2.1 0 0 0-.025 1.08q.086.35.291.676.163.259.39.485c.415.415.978.74 1.628.943a5.2 5.2 0 0 0 1.562.232c.438 0 .87-.052 1.287-.155.236-.06.465-.134.678-.223.493-.205.926-.49 1.253-.826a2.44 2.44 0 0 0 .652-1.131q.06-.25.06-.493c0-.466-.175-.993-.46-1.396l.71-.741c.61.634.97 1.48.97 2.28q0 .221-.038.456c-.11.671-.466 1.31-1.03 1.848-.33.316-.724.59-1.17.816zm-2.534-1.59.853.82a5.2 5.2 0 0 1-2.923-.14l1.892-.85zm4.925-1.083q.036-.229.037-.447c0-.853-.387-1.752-1.035-2.422l.169-.176 2.628 2.524-2.176 2.266c.23-.538.38-1.2.38-1.676zm-10.6.04.004.018-.004.063c0 .251.154.848.216 1.086l-.817.35.78-4.06.32.316a3.13 3.13 0 0 0-.54 1.74c0 .158.013.317.04.487zm8.415.827-1.24-1.209 1.05-1.094c.374.311.65.684.797 1.093q-.013.1-.037.201-.133.546-.57 1.009m-6.509-.348-.029-.04a2.1 2.1 0 0 1-.267-.62q-.007-.034-.013-.068a2.2 2.2 0 0 1 .283-.61l.994.982zm4.317-2.83-1.53 1.594-1.343-1.274c.626-.266 1.3-.4 1.98-.396q.463.001.893.076m-1.101-2.075c.83 0 1.938.213 2.643.47l-.032.033-.782.814-.002.003a5.1 5.1 0 0 0-1.618-.257c-1.01 0-1.927.28-2.609.737l-.01-.01-.82-.777-.073-.069c.896-.541 2.06-.944 3.303-.944"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fishshell.svg��������������������������������0000664�0000000�0000000�00000002415�14753064456�0025606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.164 9.228-3.016 2.688v.527l3.016 2.688v-1.228l-1.936-1.723 1.936-1.724zm-6.658.046v1.208l1.905 1.696-1.905 1.695v1.209l2.968-2.645v-.518zM9.781 7.847a6.5 6.5 0 0 0-2.038-.335q-1.008 0-2.03.335a9.2 9.2 0 0 0-2.088 1.017v.723q1.035-.6 2.06-.897a7.4 7.4 0 0 1 2.058-.296q1.026 0 2.052.296a9.5 9.5 0 0 1 2.075.897v-.723a9.2 9.2 0 0 0-2.09-1.017m.014 7.78a7.4 7.4 0 0 1-2.052.296 7.4 7.4 0 0 1-2.057-.296 9.2 9.2 0 0 1-2.061-.897v.723a9.2 9.2 0 0 0 2.088 1.017 6.5 6.5 0 0 0 2.03.335q1.017 0 2.038-.335a9.2 9.2 0 0 0 2.089-1.017v-.723q-1.05.6-2.075.897m.602-11.23h-.51L7.28 6.92h1.19l1.672-1.62 1.671 1.62h1.191l-2.607-2.525m-2.965 13.68v-.824H6.427v.825l.786 1.527h.614zM4.127 10.95v1.216H5.13V10.95zm-1.16-1.695L0 11.901v.518l2.967 2.645v-1.208L1.063 12.16l1.904-1.695zm20.68 3.28q-.352-.45-1.017-.626.593-.154.902-.525.31-.37.31-.926 0-.819-.59-1.314t-1.575-.495q-.33 0-.758.073-.427.072-.974.217v.84q.47-.18.9-.27a4 4 0 0 1 .832-.091q.605 0 .933.278.327.277.328.798 0 .492-.353.768t-.98.276h-.697v.75h.696q.687 0 1.09.346.402.345.402.934 0 .637-.402.976-.403.339-1.153.339a3.6 3.6 0 0 1-.89-.117 4.4 4.4 0 0 1-.91-.358v.909a6 6 0 0 0 .95.249q.484.085.95.085 1.107 0 1.733-.53.626-.532.626-1.463 0-.673-.353-1.123"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fitbit.svg�����������������������������������0000664�0000000�0000000�00000003154�14753064456�0025107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.298 1.825c0 .976-.81 1.785-1.786 1.785a1.8 1.8 0 0 1-1.784-1.785c0-.973.813-1.785 1.784-1.785.976 0 1.786.813 1.786 1.785m-1.786 3.243c-1.052 0-1.863.81-1.863 1.866 0 1.053.81 1.865 1.865 1.865 1.053 0 1.865-.811 1.865-1.865s-.825-1.866-1.875-1.866zm0 5.029c-1.052 0-1.945.891-1.945 1.945s.894 1.945 1.947 1.945 1.946-.891 1.946-1.945-.894-1.945-1.946-1.945zm0 5.107c-1.052 0-1.863.81-1.863 1.864s.81 1.866 1.865 1.866a1.836 1.836 0 0 0 1.865-1.866c0-.972-.825-1.864-1.875-1.864zm0 5.191a1.8 1.8 0 0 0-1.784 1.784 1.8 1.8 0 0 0 1.784 1.781c.977 0 1.786-.809 1.786-1.784 0-.973-.81-1.781-1.786-1.781M16.46 4.823c-1.136 0-2.108.977-2.108 2.111s.973 2.107 2.108 2.107 2.106-.975 2.106-2.107c0-1.135-.972-2.109-2.106-2.109zm0 5.03c-1.216 0-2.19.973-2.19 2.19a2.18 2.18 0 0 0 2.19 2.187 2.18 2.18 0 0 0 2.189-2.189 2.18 2.18 0 0 0-2.189-2.188m0 5.108c-1.136 0-2.108.976-2.108 2.107 0 1.135.973 2.109 2.108 2.109s2.106-.976 2.106-2.109-.971-2.107-2.106-2.107m5.106-5.353a2.44 2.44 0 0 0-2.43 2.434c0 1.297 1.051 2.433 2.43 2.433 1.381 0 2.434-1.065 2.434-2.444-.082-1.382-1.135-2.431-2.434-2.431zM6.486 5.312c-.892 0-1.62.73-1.62 1.623 0 .891.729 1.62 1.62 1.62.893 0 1.619-.729 1.619-1.62 0-.893-.727-1.62-1.619-1.62zm0 5.027c-.973 0-1.703.729-1.703 1.703s.721 1.703 1.695 1.703 1.695-.73 1.695-1.703c0-.975-.735-1.703-1.71-1.703zm0 5.107c-.892 0-1.62.731-1.62 1.62 0 .895.729 1.623 1.62 1.623.893 0 1.619-.735 1.619-1.635s-.727-1.62-1.619-1.62zm-5.025-4.863c-.813 0-1.461.646-1.461 1.459 0 .81.648 1.459 1.46 1.459.81 0 1.459-.648 1.459-1.459s-.648-1.459-1.458-1.459"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fivem.svg������������������������������������0000664�0000000�0000000�00000001303�14753064456�0024726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.4 24h-5.225c-.117 0-.455-1.127-1.026-3.375-1.982-6.909-3.124-10.946-3.417-12.12l3.37-3.325h.099q.681 2.13 6.299 18.768ZM12.342 7.084h-.048a3.382 3.385 0 0 1-.098-.492v-.098a102.619 102.715 0 0 1 3.272-3.275c.13.196.196.356.196.491v.05a140.694 140.826 0 0 1-3.322 3.324M5.994 10.9h-.05q1.004-3.178 1.223-3.275L14.492.343c.08 0 .258.524.533 1.562zm1.37-4.014h-.05Q9.563.071 9.71 0h4.495v.05a665 665 0 0 1-6.841 6.839Zm-2.69 7.874h-.05c.166-.798.554-1.418 1.174-1.855a312.918 313.213 0 0 1 5.71-5.717h.05c-.117.672-.375 1.175-.781 1.52zM1.598 24l-.098-.05q2.098-6.258 2.248-6.45l6.74-6.694v.05C10.232 11.88 8.974 16.263 6.73 24Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fiverr.svg�����������������������������������0000664�0000000�0000000�00000001517�14753064456�0025124�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.004 15.588a.995.995 0 1 0 .002-1.99.995.995 0 0 0-.002 1.99m-.996-3.705h-.85c-.546 0-.84.41-.84 1.092v2.466h-1.61v-3.558h-.684c-.547 0-.84.41-.84 1.092v2.466h-1.61v-4.874h1.61v.74c.264-.574.626-.74 1.163-.74h1.972v.74c.264-.574.625-.74 1.162-.74h.527zm-6.786 1.501h-3.359c.088.546.43.858 1.006.858.43 0 .732-.175.83-.487l1.425.4c-.351.848-1.22 1.364-2.255 1.364-1.748 0-2.549-1.355-2.549-2.515 0-1.14.703-2.505 2.45-2.505 1.856 0 2.471 1.384 2.471 2.408 0 .224-.01.37-.02.477zm-1.562-.945c-.04-.42-.342-.81-.889-.81-.508 0-.81.225-.908.81zM7.508 15.44h1.416l1.767-4.874h-1.62l-.86 2.837-.878-2.837H5.72l1.787 4.874zm-6.6 0H2.51v-3.558h1.524v3.558h1.591v-4.874H2.51v-.302c0-.332.235-.536.606-.536h.918V8.412H2.85c-1.162 0-1.943.712-1.943 1.755v.4H0v1.316h.908v3.558z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fizz.svg�������������������������������������0000664�0000000�0000000�00000000650�14753064456�0024606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.822 17.813h3.274v-7.228H5.822Zm4.298-7.228v2.841h2.107l-2.243 4.387h6.779v-2.824h-2.24l2.24-4.399h-6.644v-.005zm13.88 0h-6.762v2.841h2.241l-2.24 4.387h6.633v-2.824H21.76ZM6.633 6.966l-1.23 2.736a1.6 1.6 0 0 0-.955-.324c-.56 0-1.012.363-1.012 1.125v.038H5.13v2.858h-1.7v4.414H0v-7.804c0-2.292 1.737-3.822 3.895-3.822 1.056 0 2.023.351 2.738.779"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/flashforge.svg�������������������������������0000664�0000000�0000000�00000000314�14753064456�0025741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m.025 12 11.98-12 11.97 12-11.97 12Zm14.544 2.672-2.574 2.584v5.916L23.177 11.97 11.995.76v5.136L9.402 8.53v6.123l5.157-5.196Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/flask.svg������������������������������������0000664�0000000�0000000�00000021513�14753064456�0024725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.172 20.36c-.914-.72-1.89-1.41-2.556-2.38-1.402-1.712-2.482-3.694-3.22-5.777-.446-1.355-.6-2.808-1.174-4.11-.602-.944.103-1.978 1.138-2.28.46-.087 1.272-.522.293-.211-.878.644-.963-.585-.063-.662.615-.082.84-.585.63-1.037-.66-.43 1.6-.903.463-1.544C1.5 1.08 4.34.835 3.64 2.285 3.473 3.4 5.624 2.08 5.125 3.368c.507.619 1.9.14 1.865 1.009.74.05.993.672 1.687.72.72.325 2.022.58 2.266 1.39-.713.566-2.364-1.165-2.443.398.215 2.31.16 4.689 1.004 6.888.4 1.332 1.37 2.38 2.244 3.418.837 1.016 1.971 1.73 3.127 2.333 1.014.478 2.107.795 3.213.994.448-.343 1.24-1.617 1.938-1.08.033.604-1.388 1.263-.067 1.196.776-.234 1.314.6 1.953-.152.588.697 2.446-.446 2.027.98-.566.364-1.392.144-1.959.646-.935-.467-1.68.418-2.715.306a20 20 0 0 1-3.484.29c-1.912-.15-3.865-.214-5.684-.88-1.024-.297-2.023-.881-2.924-1.464zm1.615.7c1 .432 1.978.888 3.074 1.026 1.74.24 3.537.614 5.283.274-.79-.357-1.608.14-2.395-.255-.944.203-1.957-.052-2.917-.177-1.092-.486-2.27-.82-3.291-1.452-1.277-.466.66.598 1.005.685.798.453-.877-.233-1.114-.421-.668-.375-.754-.297-.066.084.139.08.276.166.42.235zm-1.904-1.346c.97.359-.004-.682-.45-.622-.196-.341-.751-.557-.36-.74-.704.244-.737-.93-1.07-.763-.744-.235-.29-1.07-1.176-1.58-.081-.54-.882-1.008-1.138-1.822-.113-.416-.905-1.613-.418-.5.414 1.072 1.143 1.99 1.75 2.907.47.873 1.027 1.786 1.885 2.33.29.278.568.703.977.79M4.09 16.647c.033-.146.177.317 0 0m3.954 3.497c.215-.096-.31-.12 0 0m.526.192c-.054-.265-.24.148 0 0m.66.275c.312-.3-.484-.188 0 0m1.127.63c.191-.282-.61-.107 0 0M8.19 19.728c.487-.315-.63-.004 0 0m.494.246c-.014-.166-.176.075 0 0m2.47 1.542c.397.25 2.32.55 1.115.103-.2.042-2.23-.574-1.116-.103zm-3.921-3.054c-.04-.167-.616-.185 0 0m1.15.67c.3-.21-.621-.16 0 0m.966.593c.43-.162-.696-.163 0 0m-2.584-1.773c.466.358 1.88.046.714-.213-.53-.283-1.727-.476-.912.17zm3.24 1.978c.193-.33-.815-.19 0 0m-.984-.783c1.14.323-.958-.72-.281-.118l.15.068zm1.973 1.14c1.08.01-.975-.147 0 0m-4.644-2.96c-.042-.2-.266.018 0 0m6.47 3.985c.028-.363-.353.27 0 0m-4.63-2.856c-.064-.191-.336-.008 0 0m-1.738-1.254c.62-.037-.848-.273 0 0m-2.06-1.332c-.077-.297-.674-.534 0 0m5.407 3.435c-.114-.13-.054.028 0 0m3.366 2.065c-.01-.197-.183.075 0 0m-3.664-2.373c.06-.255-.528-.077 0 0m-2.506-1.592c.46-.05-.74-.311 0 0m4.241 2.637c.718-.285-.7-.14 0 0M9.03 18.545c.827.106-.985-.563-.181-.06zm2.876 1.768c.773-.462.518 1.082 1.311.13.782-.57-.675.707.29.103.696-.467 1.726.22 2.376.445.468-.023.923.405 1.403.145.923-.25-1.806-.37-1.09-.81-.845.245-1.47-.294-1.885-.835-.948-.22-2.044-.703-2.517-1.542-.192-.315.28.044-.166-.47-.57-.508-.856-1.085-1.24-1.702-.457-.244-.51-.963-.557-.024.004-.593-.553-.992-.688-.826-.002-.571.595-.285.176-.707-.09-.592-.386-1.21-.475-1.877-.138-.322-.02-1.011-.473-.282-.165.77-.055-.947.202-.38.337-.58-.12-.51-.14-.43.22-.488.14-1.18-.057-.916.117-.517.185-1.902-.175-1.656.218-.54.414-2.473-.534-1.736-.384.005-1.048.14-1.363.296.986.543-.1.196-.5.11-.052.502-.45.285-.946.29.793.098-.386.81-.841.534-.59.282.51.987.012 1.205.06.328-.905-.12-.83.64-.573-.241-.078.9.209.514.975.264.686.866.71 1.437-.158.333-.784-.783-.14-.731-.507-.827-.561-.3-.984.085-.1.028 1.079.547.34.803.65.1.668.67.8 1.03.39.407.31-.45.779.04-.296-.436-1.567-1.228-.544-.974-.005-.44-.185-.793.129-.784.31-.562-.325 1.387.375.672.193-.085.24-.563.59.045.505.498.182.858-.531.403.127.433.954.587.799 1.265.165.595.395.376.596.342.158.578.247.153.255-.123.72.155.552.58.778.88.497.224-.712-1.522.142-.526.898.81.337 1.15-.47 1.02.51-.041.675.69 1.313.664.582.277.975 1.34-.027.897-.348-.313-1.58-.7-.573-.104.929.43 1.665.688 2.561 1.227.64.458.918.982 1.16 1.086-.538.257-1.623-.206-.817-.348-.503-.091-1.068-.345-.587.28.41.343 1.45.306 1.637.345-.159.348-.43.376.006.403-.486.26.156.3.201.448zm-.994-2.808c-.296-.31-.373-.89-.053-.385.164.066.525.947.053.385m3.238 2.057c.185-.011.006.14 0 0m-3.706-2.816c-.01-.468.107.36 0 0m-.322-.433c-.372-.72.47.204 0 0m-3.9-2.692c.219-.06.108.374 0 0m3.104 1.682c.134-.504.158.424 0 0m-2.192-1.525c-.155-.278.323.26 0 0m1.882.604c-.352-.79.25-.432.078.13zM5.77 12.217c-.158-.26-.418-1.02-.334-1.252.076.378.804 1.627.357.518-.494-.93.59.302.702.534.05.23-.305-.063-.064.478-.44-.617-.26.34-.661-.278m-1.003-.691c.04-.603.23.413 0 0m.45.155c.216-.455.366.634 0 0m-1.084-.84c-.374-.37-.644-.713.017-.23.255.01-.566-.778.06-.25.66.12.327 1.082-.077.48m.57-.015c.217-.215.115.212 0 0m.35.113c-.328-.617.4.258 0 0m-.697-.667c-1.086-.966 1.365.506.177.18zm3.11 1.808c-.47-.282-.123-1.984.037-.82.457-.148-.025.6.315.594-.053.473-.206.643-.35.226zm1.15.68c.048-.513.099.35 0 0m-.2-.198c.054-.22.007.258 0 0M4.57 9.955c-.697-.963 2.027.973.447.244-.165-.043-.364-.06-.447-.244m2.216 1.175c-.066-.81.147.134 0 0m1.682 1.079c.13-.462.01.305 0 0M4.676 9.587c.415-.088 1.718.729.52.234-.132-.148-.416-.08-.52-.234m3.56 1.775c.044-.83.248-.495.002.118zM4.985 9.299c.169-.248-.45-1.12.089-.313.232.185.672.31.283.387.61.539-.15.146-.372-.074m3.075 1.804c.117-.944.103.553 0 0M4.632 8.427c.129-.055.068.172 0 0m.802.478c.206-.434.38.483 0 0m2.263 1.259c-.002-.167.043.242 0 0m-.131-.29c-.314-.776.292.41 0 0m-.193-.51c-.053-.32.18.404 0 0m.314-.51c-.216-.38.272-1.673.326-.87-.227.625-.065.975.093.136.293-.66-.063 1.303-.42.735zm.322-1.923c.094-.115.02.139 0 0M7.47 17.544c-.128-.111.016.07 0 0m1.11.56c.615.16.612-.095.055-.17-.3-.28-1.246-.575-.4-.035.057.142.235.139.344.206zM6.389 16.65c.34.253 1.28.719.484.096.269-.312-.514-.478-.254-.686-.66-.404-.52-.368-.058-.356-.794-.354.114-.328.07-.51-.305-.06-1.52-.54-.804.04-.726-.37-.173.138-.392.084-.743-.202.66.565-.118.375.425.337 1.146.864.18.357-.128.183.69.46.892.6m1.16.667c1.41.454-.691-.556 0 0m5.94 3.598c.02-.28-.193.24 0 0m.611.257c.325-.315.013.503.54-.077.005-.415-.017-.66-.606-.156-.162.09-.234.473.066.233m-9.692-6.087c-.1-.393-.7-.39 0 0m.652.428c-.242-.402-.864-.364 0 0m3.71 2.237c.362.32 1.662.236.44.04-.182-.27-1.151-.204-.44-.04m5.097 3.149c.558-.468-.54.208 0 0m1.16.796c.003-.15-.24.066 0 0m.001-.21c.617-.654-.598.039 0 0M2.805 13.743c-.526-.75-.327-1.088-.835-1.7-.096-.47-.87-1.533-.4-.406.43.659.558 1.679 1.235 2.106m12.03 7.534c1.135-.734-.466-.32 0 0m.866.34c.57-.488-.36-.102 0 0M4.215 14.255c.163-.242-.42-.031 0 0m11.305 7.129c.551-.355-.126-.3-.1.032zm-7.47-4.71c-.02-.24-.291.02 0 0m.46.267c-.145-.297-.224.047 0 0m7.894 4.684c.705-.51-.428-.098-.148.096zm-.27-.13c.574-.482-.607.213 0 0m1.38.918c.386-.258-.469-.083 0 0M4.57 14.08c.517.116 2.066 1.274 1.152.08-.468-.138-.187-1.283-.665-1.08.32.535.264.763-.41.426-.845-.413-.474.204-.31.374-.224.052.299.196.233.2m-2.356-1.86c.092-.383-.853-2.107-.446-.864.146.26.13.754.446.864m4.324 2.666c-.266-.223-.013-.032 0 0m.656.152c0-.405-.725-.164 0 0m5.681 3.583c-.108-.278-.428-.006 0 0m.273.199c-.04-.155-.157.03 0 0m2.252 1.42c.216-.16-.27-.02 0 0M3.39 12.52c.62-.24-.664-.17 0 0m8.984 5.662c-.007-.401-.395.1 0 0m-9.23-6.231c.399-.135-.367-.09 0 0m1.156.56c-.007-.133-.122.05 0 0m14.09 8.64c.512-.104 1.678.26 1.866-.136-.62-.015-2.15-.438-2.222.1l.136.023zM4.667 12.603c.009-.407-.317-.015 0 0M1.63 10.495c-.138-.775-.525-.118 0 0m.724.182c.009-.25-.663-.224 0 0m.414.203c-.12-.097-.094.122 0 0m2.605 1.67c.122-.112-.29-.083 0 0m-2.88-2.128c-.07-.585-.84-.088 0 0m-1.486-.964c-.02-.27-.144.102 0 0m.22-.167c-.035-.32-.19.04 0 0m1.22.729c.518-.203-.94-.42-.104-.04zm16.334 10.089c.33-.303-.42-.094 0 0m1.974 1.023c.132-.392-.334.05 0 0M2.573 9.38c.055-.38-.41.075 0 0M.837 8.218c-.093-.535-.08-1.474.812-1.156-1.191.236.824 1.48.57.498.5.024.98-.296.716.19.987-.11 1.67-.964 2.624-.845.742-.098 1.554-.172 2.354-.471.658-.048 1.29-.756.93-1.175-.896-.076-1.835.036-2.827.233-1.098.228-2.096.662-3.205.849-1.08.145.217.4-.092.456-.564.196.672.328-.073.534-.46-.088-.94-.246-.743-.73-1.035.133-1.945.563-1.127 1.616zm2.494-1.27c.243-.894 1.3.735.398.118-.108-.08-.285-.146-.398-.12zm.047-.434c.35-.26.186.146 0 0m.445.008c.032-.411 1.018.218.163.148zm.608-.245c.222-.26.064.23 0 0m.156-.104c.37-.444 2.095-.283.832-.043-.338-.255-.598.15-.832.043m2.25-.347c-.055-1.214 1.119.432 0 0m.64-.004c.233-.612.906-.245.108-.123.017.065-.024.316-.108.123M2.322 9.067c.697-.427-.741-.37 0 0m.515.144c.245-.26-.531-.106 0 0m-1.52-1.08c.399-.305-.471-.116 0 0m20.602 12.89c.012-.355-.304.16 0 0m-2.093-1.43c.06-.408-.27.037 0 0m2.67 1.568c.557 0 1.688-.173.475-.173-.19.03-1.109.024-.476.173zM3.29 8.959c.45-.03.706-.497-.087-.47-1.23-.127 1.084.42-.158.264-.167.11.236.237.245.207zm.398.202c-.048-.29-.14.154 0 0m.47-1.257c.197-.243-.27-.065 0 0m-1.5-2.508c.806-.274 1.907-.581 2.287.135-.387-.466-.156-.924.21-.243.516.689.775-.313.438-.545.383.476.819.7.257.03.61-.734-1.223.097-1.64.088-.2.09-2.071.477-1.551.535zm.472-.903c.46-.347 1.588.206.864-.345-.07-.062-1.586.418-.864.345m1.674.069c.538.013-.231-.722.409-.39-.105-.343-.746-.407-1.06-.544-.176.314.36.938.65.934zm-1.38-1.52c.186-.252-.326.128 0 0m.684.164c.866-.115-.22-.373-.174-.01zm-1.277-1c-.61-.796 1.146.134.527-.7-.522-.415-1.023.468-.527.7m7.824 4.215c.28-.496-1.155-.668-.188-.175.09.03.07.21.188.175"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/flat.svg�������������������������������������0000664�0000000�0000000�00000000426�14753064456�0024553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.546 17.455v3.272a3.273 3.273 0 1 1-3.273-3.273Zm8.727-8.728V12A3.273 3.273 0 0 1 12 15.273H5.455a3.273 3.273 0 0 1 0-6.546zM24 0v3.273a3.273 3.273 0 0 1-3.273 3.273H7.637a3.273 3.273 0 0 1 0-6.546Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/flathub.svg����������������������������������0000664�0000000�0000000�00000001154�14753064456�0025251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.068 0a6 6 0 0 0-6 6 6 6 0 0 0 6 6 6 6 0 0 0 5.998-6 6 6 0 0 0-5.998-6m9.15.08a1.656 1.656 0 0 0-1.654 1.656v8.15a1.656 1.656 0 0 0 2.483 1.434l7.058-4.074a1.656 1.656 0 0 0 0-2.869l-1.044-.604-6.014-3.47a1.66 1.66 0 0 0-.828-.223Zm3.575 13.135a.815.815 0 0 0-.816.818v2.453h-2.454a.817.817 0 1 0 0 1.635h2.454v2.453a.817.817 0 1 0 1.635 0v-2.453h2.452a.817.817 0 1 0 0-1.635h-2.453v-2.453a.817.817 0 0 0-.818-.818M2.865 13.5a2.794 2.794 0 0 0-2.799 2.8v4.9c0 1.55 1.248 2.8 2.8 2.8h4.9c1.55 0 2.8-1.25 2.8-2.8v-4.9c0-1.55-1.25-2.8-2.8-2.8Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/flatpak.svg����������������������������������0000664�0000000�0000000�00000000750�14753064456�0025247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c-.556 0-1.111.144-1.61.432l-7.603 4.39a3.22 3.22 0 0 0-1.61 2.788v8.78c0 1.151.612 2.212 1.61 2.788l7.603 4.39a3.22 3.22 0 0 0 3.22 0l7.603-4.39a3.22 3.22 0 0 0 1.61-2.788V7.61a3.22 3.22 0 0 0-1.61-2.788L13.61.432A3.2 3.2 0 0 0 12 0m0 2.358c.15 0 .299.039.431.115l7.604 4.39c.132.077.24.187.315.316L12 12v9.642a.86.86 0 0 1-.431-.116l-7.604-4.39a.87.87 0 0 1-.431-.746V7.61c0-.153.041-.302.116-.43L12 12Z"/></svg>������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/flickr.svg�����������������������������������0000664�0000000�0000000�00000000412�14753064456�0025072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.334 6.666a5.335 5.335 0 0 0 0 10.668A5.333 5.333 0 0 0 10.666 12a5.333 5.333 0 0 0-5.332-5.334m13.332 0A5.333 5.333 0 0 0 13.334 12 5.333 5.333 0 1 0 24 12a5.335 5.335 0 0 0-5.334-5.334"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/flightaware.svg������������������������������0000664�0000000�0000000�00000010327�14753064456�0026123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.178 12.905-1.064 2.519h-.47l1.37-3.22h.322l1.443 3.22h-.47zm10.837 1.5h-1.477a.69.69 0 0 0 .203.481.67.67 0 0 0 .481.181q.41 0 .759-.255v.408a1.4 1.4 0 0 1-.38.181 1.7 1.7 0 0 1-.44.057c-.233 0-.42-.046-.561-.148a1.05 1.05 0 0 1-.345-.39 1.2 1.2 0 0 1-.13-.566q0-.484.271-.78c.181-.205.419-.3.708-.3.277 0 .503.095.667.294q.249.295.25.786v.051zm-1.472-.249h1.064a.6.6 0 0 0-.147-.39.48.48 0 0 0-.356-.136.52.52 0 0 0-.368.136.67.67 0 0 0-.193.39m-1.76-.843v.48l.023-.033c.204-.328.408-.487.606-.487q.237 0 .492.238l-.22.368q-.223-.204-.403-.204c-.135 0-.249.062-.35.192a.72.72 0 0 0-.147.459v1.103h-.42v-2.11h.42zm-1.131.843v.9q-.002.108.073.107c.075-.001.13-.04.238-.113v.25q-.143.09-.226.124a.5.5 0 0 1-.181.034c-.182 0-.283-.068-.317-.21a.92.92 0 0 1-.566.21.503.503 0 0 1-.515-.515.5.5 0 0 1 .141-.357 1 1 0 0 1 .408-.249l.532-.181v-.113q.001-.384-.38-.385-.34.002-.662.35v-.452q.247-.282.696-.283a.83.83 0 0 1 .55.181q.066.06.124.153a.5.5 0 0 1 .068.193c.011.056.017.18.017.356m-.408.849v-.623l-.277.108a.9.9 0 0 0-.3.17.3.3 0 0 0-.09.215q0 .129.084.215.086.084.215.085a.57.57 0 0 0 .368-.17m-1.771-1.692h.447l-.928 2.156h-.141l-.623-1.477-.611 1.477h-.142l-.933-2.156h.447l.554 1.284.532-1.284h.312l.537 1.284zm7.526-4.182c.006.017-.028.062-.056.096-.045.045-.176.198-.696.311-.52.114-1.177.232-1.223.244-.045.005-.135-.012-.186.141l-.623 2.218-.175.04-.198-2.162s-1.228.244-1.353.244l-.311.826-.158.017.033-.838s-.17-.028-.198-.034c-.01 0-.022 0-.028-.017q0-.015.017-.022c.023-.017.17-.108.17-.108l-.368-.752.153-.051.617.634c.113-.051 1.335-.323 1.335-.323l-.685-2.066.176-.033s1.358 1.663 1.466 1.782.18.068.226.057c.045-.012.696-.164 1.217-.272.52-.107.701-.017.763.006.034.011.085.045.085.062m-12.908 6.293a.16.16 0 0 1-.084-.023.147.147 0 0 1-.04-.21c.006-.01.17-.26.498-.65a.146.146 0 0 1 .21-.017c.062.05.073.147.016.21-.317.373-.475.616-.48.622a.13.13 0 0 1-.12.068m1.025-1.228a.14.14 0 0 1-.102-.04.145.145 0 0 1-.006-.21c.187-.192.38-.384.577-.565a.15.15 0 0 1 .21.005.15.15 0 0 1-.006.21c-.192.18-.385.368-.566.554a.13.13 0 0 1-.107.046m1.171-1.081a.13.13 0 0 1-.113-.057.146.146 0 0 1 .023-.21c.209-.169.424-.339.639-.491a.147.147 0 0 1 .21.033.147.147 0 0 1-.035.21 11 11 0 0 0-.622.486.2.2 0 0 1-.102.029m1.296-.945a.14.14 0 0 1-.125-.068.154.154 0 0 1 .046-.21q.34-.222.69-.418a.15.15 0 0 1 .204.056.15.15 0 0 1-.057.204c-.226.13-.458.266-.679.407a.11.11 0 0 1-.079.029m1.392-.781a.149.149 0 0 1-.068-.283q.364-.18.736-.334c.073-.034.164.006.198.08a.15.15 0 0 1-.08.197c-.243.102-.486.21-.718.323a.2.2 0 0 1-.068.017m1.471-.617a.15.15 0 0 1-.141-.102.154.154 0 0 1 .09-.192c.255-.085.515-.17.77-.238a.15.15 0 0 1 .187.102.15.15 0 0 1-.102.187c-.255.068-.51.147-.753.232-.017.011-.034.011-.05.011zm-8.601 2.875.786-.77v.436h.663v.373H9.63v1.042q.002.363.3.362a.95.95 0 0 0 .47-.147v.39a1.04 1.04 0 0 1-.52.136.68.68 0 0 1-.476-.17.5.5 0 0 1-.096-.113.6.6 0 0 1-.062-.164 2 2 0 0 1-.029-.39v-.94H8.85v-.045zM6.666 12.22h.419v1.363a.81.81 0 0 1 .645-.316.67.67 0 0 1 .628.401c.057.125.08.312.08.555v1.205h-.42v-1.307a.6.6 0 0 0-.113-.373.36.36 0 0 0-.3-.142.5.5 0 0 0-.26.074 1.1 1.1 0 0 0-.266.237v1.517h-.418V12.22zm-2.224 1.822q.001-.338.25-.532.246-.197.673-.198h.871v.322h-.424a.7.7 0 0 1 .17.232q.05.103.05.238a.65.65 0 0 1-.096.328.63.63 0 0 1-.243.244c-.102.056-.26.102-.487.135q-.237.036-.237.165-.002.075.09.118c.057.034.164.063.323.097q.389.084.498.135.111.052.198.136a.51.51 0 0 1 .152.38.56.56 0 0 1-.266.48c-.175.12-.418.181-.713.181-.3 0-.543-.062-.718-.18a.55.55 0 0 1-.272-.482q0-.43.526-.554-.21-.137-.209-.266-.002-.103.09-.181a.5.5 0 0 1 .244-.12c-.311-.146-.47-.367-.47-.678m.69 1.482a.6.6 0 0 0-.345.091c-.09.062-.135.136-.135.232q.001.329.588.328a1 1 0 0 0 .43-.079c.102-.057.153-.13.153-.232 0-.096-.062-.181-.192-.238a1.1 1.1 0 0 0-.498-.102m.096-1.85q-.17.002-.289.113a.377.377 0 0 0 0 .55.42.42 0 0 0 .3.107.4.4 0 0 0 .294-.108.36.36 0 0 0 .12-.272.36.36 0 0 0-.12-.277.45.45 0 0 0-.305-.113M3.622 12.43c.068 0 .13.023.175.074a.23.23 0 0 1 .074.175.24.24 0 0 1-.074.175.24.24 0 0 1-.175.074.23.23 0 0 1-.17-.074.24.24 0 0 1-.074-.175q-.001-.093.074-.17a.22.22 0 0 1 .17-.079m-.204.883h.419v2.11h-.419zM2.269 12.22h.419v3.203h-.419zM0 12.22h1.709v.407H.453v.9h1.256v.402H.453v1.494H0Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/flipboard.svg��������������������������������0000664�0000000�0000000�00000000203�14753064456�0025560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm19.2 9.6h-4.8v4.8H9.6v4.8H4.8V4.8h14.4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/flipkart.svg���������������������������������0000664�0000000�0000000�00000001416�14753064456�0025441�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.833 1.333a1 1 0 0 0-.333.061V1c0-.551.449-1 1-1h14.667c.551 0 1 .449 1 1v.333zm17.334 2.334H2.833c-.551 0-1 .449-1 1V23c0 .551.449 1 1 1h7.3l1.098-5.645h-2.24c-.051 0-5.158-.241-5.158-.241l4.639-.327-.078-.366-1.978-.285 1.882-.158-.124-.449-3.075-.467s3.341-.373 3.392-.373h3.232l.247-1.331c.289-1.616.945-2.807 1.973-3.693 1.033-.892 2.344-1.332 3.937-1.332.643 0 1.053.151 1.231.463.118.186.201.516.279.859.074.352.14.671.095.903-.057.345-.461.465-1.197.465h-.253c-1.327 0-2.134.763-2.405 2.31l-.243 1.355h1.54c.574 0 .781.402.622 1.306-.17.941-.539 1.36-1.111 1.36H14.9L13.804 24h7.362c.551 0 1-.449 1-1V4.667a1 1 0 0 0-.999-1M20.5 2.333A.334.334 0 0 0 20.167 2H3.833a.334.334 0 0 0-.333.333V3h17z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/floatplane.svg�������������������������������0000664�0000000�0000000�00000002265�14753064456�0025755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.948 20.162a10 10 0 0 1-6.466 2.366 9.99 9.99 0 0 1-7.088-2.933 9.96 9.96 0 0 1-2.933-7.088c0-2.399.84-4.667 2.366-6.466l-.916-1.167A11.45 11.45 0 0 0 0 12.518 11.476 11.476 0 0 0 11.482 24a11.45 11.45 0 0 0 7.644-2.911zM8.331 2.988a10.1 10.1 0 0 1 3.151-.502 9.99 9.99 0 0 1 7.088 2.933 9.96 9.96 0 0 1 2.933 7.088c0 1.09-.174 2.148-.502 3.151l1.134 1.134a11.4 11.4 0 0 0 .829-4.285A11.476 11.476 0 0 0 11.482 1.025c-1.516 0-2.966.294-4.285.829zm1.352 3.456L3.446 0l-.97 1.516a.39.39 0 0 0 .032.458L7.916 8.92zM7.655 14.96l-2.508-1.886-.458.774a.215.215 0 0 0 .033.273l2.115 2.29zm4.503-5.953-.578-.6.153-.611c.065-.273.087-.491.065-.622a2.4 2.4 0 0 0-.273-.687l-5.474 5.866s.371.36.905-.055c.24-.185 1.189-.96 2.203-1.799l.927 1.189zm5.343 5.256.153-.611c.055-.207.087-.382.065-.502a2.6 2.6 0 0 0-.218-.687l-5.866 5.474s.36.371.916 0c.273-.185 1.428-.992 2.584-1.821l6.891 5.365c.131.109.316.12.458.033L24 20.543zm-8.44 2.126c.883-.676 2.115-1.625 3.217-2.475l1.243.97 2.039-2.475-.676-.654.218-.774c.109-.393.153-.698.12-.883a3.3 3.3 0 0 0-.36-.981l-8.069 8.069s.251.207.774 0l2.279 2.104a.25.25 0 0 0 .273.033l.774-.458z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/flood.svg������������������������������������0000664�0000000�0000000�00000001723�14753064456�0024731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.683 16.283c-1.233-.066-1.85-1.533-2.15-2.433-.266-.767-.666-2.117-.966-2.933-.35-.95-.45-1.017-.65-1.017-.417 0-.734 1.183-1.05 2.067-.667 1.833-1.167 3.85-2.934 3.85-1.533 0-2.216-1.184-2.7-1.884-.45-.666-.716-.816-1.133-.816-.533 0-.783.466-1.267 1.283-.283.467-.6.95-.966 1.267-.1.083-.934.733-1.717.633-.45-.067-.767-.333-.767-.783 0-.617.684-.734 1.067-.884.333-.116.733-.716.933-1.05.534-.916 1.217-2.116 2.75-2.116 1.35 0 2 .866 2.5 1.55.45.616.717 1.116 1.234 1.133.433.017 1.033-1.617 1.383-2.75.533-1.733 1.233-3.333 2.633-3.333 1.884 0 2.434 2.633 3.017 4.65.083.3.283.933.333 1.016.267.567.484.934.717 1.05.267.15.7.434.567.934-.084.383-.434.583-.834.566m-15.366-1.6q.024 0 0 0 .024 0 0 0M12 0C5.367 0 0 5.367 0 12s5.367 12 12 12 12-5.367 12-12S18.633 0 12 0m0 22.017A10.015 10.015 0 0 1 1.983 12 10.015 10.015 0 0 1 12 1.983 10.015 10.015 0 0 1 22.017 12 10.015 10.015 0 0 1 12 22.017"/></svg>���������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fluentbit.svg��������������������������������0000664�0000000�0000000�00000003351�14753064456�0025621�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.412 3.517c-.038 0-.072 0-.102.01a.3.3 0 0 0-.087.035H.215a.3.3 0 0 0-.113.113.4.4 0 0 0-.053.1c-.008.021-.019.036-.023.067a.4.4 0 0 0-.015.071v-.01H.004v.018L0 3.936l.007-.023v.046L0 4.004v.015h.004l.003-.004v-.003a1.3 1.3 0 0 0 .095.472l.019.046v.007l.06.144.023.06.064.163a19.7 19.7 0 0 0 1.724 3.254L2 8.173l.023.038c.922 1.44 2.037 2.885 3.202 4.095l.037.04c.832.859 1.686 1.6 2.514 2.129a4 4 0 0 0 .37.216l.038.019-.026.019c-1.127 1.64-2.42 2.834-3.742 3.704C2.51 19.763.91 20.172.91 20.172s4.237 1.164 8.887-1.013c3.534-1.664 5.368-4.903 5.787-5.621l2.124-3.61c.333-.458.522-.647.54-.68.065-.065.538-.614 1.524-.946 1.46-.488 3.667-.783 4.188-.832a.11.11 0 0 0 .03-.132.08.08 0 0 0-.056-.05 4 4 0 0 0-.544-.037 9 9 0 0 0-1.399.068 18 18 0 0 0-1.383.204 30 30 0 0 0-1.066.204l-.053.012h-.023a3.5 3.5 0 0 1-.574.037 3 3 0 0 1-.473-.075 7 7 0 0 1-.465-.129 7 7 0 0 0-.484-.143 4.6 4.6 0 0 0-1.463-.152 2.8 2.8 0 0 0-.657.133l-.167.06a2.77 2.77 0 0 0-1.22.972c-.401.536-1.233 2.178-2.374 2.613l-.023-.023h.01a77 77 0 0 0-.9-.829l-.021-.015-.2-.189-.053-.042a61 61 0 0 0-2.307-2.014 28 28 0 0 0-1.504-1.13l-.227-.163a31 31 0 0 0-3.93-2.332c-.114-.064-.23-.102-.36-.166-.038-.016-.076-.038-.102-.038l.196.11-.079-.038h-.01V4.18l-.054-.023-.023-.015-.03-.015a1 1 0 0 1-.102-.05l-.072-.033-.098-.046c-.03-.01-.057-.022-.076-.022a1.3 1.3 0 0 0-.22-.08l-.007-.004-.015-.007h-.007l-.012-.004v-.004h-.022l-.038-.019-.038-.018a.1.1 0 0 0-.034-.012h-.004l-.234-.094a3 3 0 0 0-.242-.087.6.6 0 0 0-.151-.03Zm-.318.967.012.027Zm.012.03c.022.06.041.118.068.17zm.068.174.003.012zM16.757 8.3a.4.4 0 0 1 .113.015.386.386 0 0 1 .269.473.386.386 0 0 1-.473.264.386.386 0 0 1-.264-.468.39.39 0 0 1 .355-.284"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fluentd.svg����������������������������������0000664�0000000�0000000�00000003070�14753064456�0025264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.83 2.195C1.279 2.191.8 2.377.425 2.82-.429 3.823.03 6.135 1.787 8.917l.02.028a10 10 0 0 0 .197.297c1.733 2.579 4.249 4.677 3.743 7.586a4.3 4.3 0 0 1-.599 1.564C3.615 20.797.003 21.047.003 21.047l.042.001-.045.005s4.355 1.344 8.533.438c.598-.13 1.192-.305 1.769-.537l.023-.01q.514-.207.975-.437a12 12 0 0 0 .282-.145q.427-.225.814-.467l.152-.095q.473-.306.888-.635l.146-.116q.246-.201.476-.407l.123-.105.036-.04q.011-.012.024-.023a13 13 0 0 0 .86-.888q.076-.084.148-.169.089-.102.175-.203l.1-.123q.19-.232.372-.465l.032-.042c.679-.88 1.28-1.779 1.933-2.639l.216-.278c.294-.374.6-.74.932-1.091l.03-.031q.162-.17.334-.337l.07-.067a11 11 0 0 1 .264-.243q.054-.049.109-.096a5 5 0 0 1 .374-.293q.018-.014.038-.027a5 5 0 0 1 .85-.48l-.065.03.022-.01.06-.027a5.6 5.6 0 0 1 1.63-.412h.001a6 6 0 0 1 .533-.026h.07l.115.002.428-.003a.2.2 0 0 0 .088-.016c.062-.03.047-.102-.012-.186a1.4 1.4 0 0 0-.39-.343l-.098-.052-.036-.022a4 4 0 0 1-.256-.161l-.129-.096a4 4 0 0 1-.193-.15c-.205-.2-.432-.733-.523-.888a2 2 0 0 0-.24-.33c-.272-.306-.665-.533-1.302-.615-.891-.115-1.727.072-2.565.333l.1-.035c-1.168.354-2.334.87-3.655.94h-.04a6 6 0 0 1-.668-.01l-.06-.004a5.5 5.5 0 0 1-1.16-.233c-1.312-.412-3.154-1.88-5.047-3.316l-.651-.49a52 52 0 0 0-.789-.58l-.222-.155-.236-.166-.086-.06a18 18 0 0 0-1.612-.997l-.019-.01a10 10 0 0 0-.367-.186q-.059-.027-.117-.053a8 8 0 0 0-.548-.23l-.05-.017a5 5 0 0 0-.316-.101l-.026-.007a3 3 0 0 0-.816-.125zM20.6 8.641a.504.5 0 0 1 .505.5.504.5 0 0 1-.505.5.504.5 0 0 1-.504-.5.504.5 0 0 1 .504-.5"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fluke.svg������������������������������������0000664�0000000�0000000�00000001543�14753064456�0024734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.603 12.656h-.092v-.131h.08c.065 0 .078.013.078.065 0 .04-.026.066-.066.066m.263.013c0 .157-.118.288-.276.288s-.275-.13-.275-.288.105-.276.262-.289c.17 0 .289.118.289.289m-.118.197-.105-.17c.052-.014.091-.053.091-.106 0-.079-.052-.118-.13-.118h-.145v.394h.066v-.17h.065l.105.17zM24 8.393v7.214H0V8.393zM6.44 11.567H4.222V11.2h2.203v-.498H3.633v2.308h.59v-.892h2.216v-.55zm2.819.866H7.384v-1.731h-.577v2.308h2.452zm3.462-1.731h-.577v1.77h-2.02v-1.77h-.576v1.875c.039.42.432.433.432.433h2.308s.38-.013.433-.433zm3.568 2.308-1.837-1.18 1.745-1.128h-1.023l-1.299.8v-.8h-.577v2.308h.577v-.866l1.377.866zm3.239-2.308h-2.912v2.308h2.912v-.538h-2.335v-.328h2.335v-.537h-2.335v-.355h2.335zm1.403 1.967a.347.347 0 0 0-.34-.341.347.347 0 0 0-.342.34c0 .184.158.342.341.342a.347.347 0 0 0 .341-.341"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/flutter.svg����������������������������������0000664�0000000�0000000�00000000274�14753064456�0025313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.314 0 2.3 12 6 15.7 21.684.013h-7.357zm.014 11.072L7.857 17.53l6.47 6.47H21.7l-6.46-6.468 6.46-6.46h-7.37z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/flux.svg�������������������������������������0000664�0000000�0000000�00000003032�14753064456�0024577�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.402 23.747q.231.112.454.238c.181.038.37.004.525-.097l.386-.251c-1.242-.831-2.622-1.251-3.998-1.602zm-7.495-5.783a8 8 0 0 1-.222-.236.696.696 0 0 0 .112 1.075l2.304 1.498c1.019.422 2.085.686 3.134.944 1.636.403 3.2.79 4.554 1.728l.697-.453c-1.541-1.158-3.327-1.602-5.065-2.03-2.039-.503-3.965-.977-5.514-2.526m1.414-1.322-.665.432q.033.037.068.073c1.702 1.702 3.825 2.225 5.877 2.731 1.778.438 3.469.856 4.9 1.982l.682-.444c-1.612-1.357-3.532-1.834-5.395-2.293-2.019-.497-3.926-.969-5.467-2.481m7.502 2.084c1.596.412 3.096.904 4.367 2.036l.67-.436c-1.484-1.396-3.266-1.953-5.037-2.403zm.698-2.337-.698-.174v.802l.512.127c2.039.503 3.965.978 5.514 2.526l.007.009.663-.431q-.06-.064-.121-.128c-1.702-1.701-3.824-2.225-5.877-2.731m-.698-1.928v.816c.624.19 1.255.347 1.879.501 2.039.502 3.965.977 5.513 2.526q.116.116.226.239a.704.704 0 0 0-.238-.911l-3.064-1.992c-.744-.245-1.502-.433-2.251-.618a31 31 0 0 1-2.065-.561m-1.646 3.049c-1.526-.4-2.96-.888-4.185-1.955l-.674.439c1.439 1.326 3.151 1.88 4.859 2.319zm0-1.772a8.5 8.5 0 0 1-2.492-1.283l-.686.446c.975.804 2.061 1.293 3.178 1.655zm0-1.946a8 8 0 0 1-.776-.453l-.701.456c.462.337.957.627 1.477.865zm3.533.269-1.887-1.226v.581q.922.386 1.887.645m5.493-8.863L12.381.112a.7.7 0 0 0-.762 0L3.797 5.198a.698.698 0 0 0 0 1.171l7.38 4.797V7.678a.414.414 0 0 0-.412-.412h-.543a.413.413 0 0 1-.356-.617l1.777-3.079a.412.412 0 0 1 .714 0l1.777 3.079a.413.413 0 0 1-.356.617h-.543a.414.414 0 0 0-.412.412v3.488l7.38-4.797a.7.7 0 0 0 0-1.171"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/flydotio.svg���������������������������������0000664�0000000�0000000�00000001434�14753064456�0025456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.987 0c-2.45-.01-5.002.925-6.541 2.897-1.17 1.502-1.664 3.474-1.49 5.356.29 2.112 1.476 3.96 2.676 5.672a41.5 41.5 0 0 0 4.216 4.831c-1.063.832-1.943 2.286-1.357 3.644.821 2.32 4.665 2.05 5.122-.372.39-1.288-.694-2.533-1.428-3.309 2.388-2.431 4.706-5.036 6.17-8.145.595-1.32.902-2.802.614-4.24-.28-2.341-1.823-4.473-3.967-5.46C14.76.266 13.364.016 11.987 0m-.236 1.577v15.534C9.881 13.483 7.724 9.266 8.73 5.069c.35-1.539 1.253-3.309 3.02-3.492m1.996.04c1.534.357 3.031 1.096 3.906 2.48 1.3 1.93 1.318 4.55.1 6.521-1.268 2.395-3.06 4.463-4.916 6.415 1.472-2.974 3.074-6.106 3.182-9.5-.043-2.08-.438-4.612-2.272-5.916M11.97 20.103c.848.342 1.597 1.983.153 2.173-.664.15-1.367-.599-.995-1.222.213-.355.488-.73.842-.95"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/flyway.svg�����������������������������������0000664�0000000�0000000�00000003364�14753064456�0025144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3.02 21.055 1.12-.23c1.054-.219 2.114-.415 3.161-.66a4.955 4.952 0 0 0 3.696-3.915 6.06 6.057 0 0 0 .085-1.153l.366-.09a4.936 4.933 0 0 0 3.75-3.717 3.8 3.798 0 0 0 .128-1.06c-.002-.096 0-.193 0-.305.094-.023.18-.047.267-.067a4.552 4.549 0 0 0 2.68-1.755 5.772 5.769 0 0 0 1.005-4.854c-.021-.088-.035-.179-.061-.264a.63.629 0 0 0-.728-.432l-3.184.652-3.485.716-4.002.822q-2.186.449-4.373.893a1.1 1.1 0 0 1-.422.06c-.007-.074-.017-.14-.017-.204-.001-1.12.002-2.243-.005-3.364a.32.32 0 0 1 .174-.307 8.493 8.488 0 0 1 1.9-.86A17.205 17.194 0 0 1 7.827.315C8.373.23 8.922.181 9.47.12a26.795 26.777 0 0 1 3.526-.102c.496.01.992.051 1.487.097.542.051 1.085.11 1.623.192a14.482 14.472 0 0 1 4.007 1.124c.262.123.509.28.764.422a.215.215 0 0 1 .122.223c-.004.054 0 .11 0 .163v19.519c0 .347.045.28-.262.472a8.437 8.432 0 0 1-1.961.857 16.78 16.769 0 0 1-2.851.63c-.6.08-1.2.146-1.804.207-.277.03-.556.035-.835.043-.564.015-1.128.041-1.691.03-.636-.014-1.272-.059-1.907-.099a20.054 20.041 0 0 1-2.519-.332 13.423 13.415 0 0 1-3.224-.976c-.273-.13-.53-.29-.797-.435a.25.25 0 0 1-.144-.248c.008-.23 0-.46.003-.69 0-.049.01-.096.016-.163zm9.985-10.652a1.25 1.25 0 0 1-.09.55 2.624 2.622 0 0 1-2.045 1.84c-1.3.28-2.607.537-3.912.805l-.57.114a1.147 1.146 0 1 0 .403 2.256c.595-.11 1.186-.242 1.779-.363.064-.014.128-.022.209-.035a2.584 2.582 0 0 1-.55 1.41A2.801 2.8 0 0 1 6.516 18q-1.655.336-3.308.676c-.052.01-.106.013-.156.02-.048-.146-.061-10.38-.014-10.63l14.048-2.883a2 2 0 0 1-.016.18 3.438 3.436 0 0 1-.738 1.502 2.399 2.397 0 0 1-1.426.804c-1.11.216-2.218.45-3.326.677l-.96.196a1.17 1.17 0 0 0-.953 1.057 1.15 1.15 0 0 0 .875 1.186 1.747 1.746 0 0 0 .807-.054q.737-.151 1.475-.304c.053-.01.108-.014.18-.023z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fmod.svg�������������������������������������0000664�0000000�0000000�00000002542�14753064456�0024553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.352 10.17a.903.903 0 0 0-.903.903v4.07H1.127v-2.814H0v-1.318h1.128a2.225 2.225 0 0 1 2.224-2.17h1.321v1.322zm7.326 1.84a.25.25 0 0 0-.238.174l-.532 1.834a1.564 1.564 0 0 1-3.001 0l-.532-1.835a.252.252 0 0 0-.477 0l-.532 1.835a1.57 1.57 0 0 1-1.512 1.123h-.368v-1.32h.373a.25.25 0 0 0 .235-.172l.532-1.835a1.57 1.57 0 0 1 3.009 0l.536 1.837a.246.246 0 0 0 .471 0l.532-1.834a1.57 1.57 0 0 1 3.009 0l.532 1.834a.25.25 0 0 0 .235.174h.374v1.319h-.369a1.57 1.57 0 0 1-1.512-1.123l-.532-1.835a.25.25 0 0 0-.233-.176m2.69.906a2.225 2.225 0 1 1 2.225 2.225 2.225 2.225 0 0 1-2.225-2.225m3.128 0a.903.903 0 1 0-.903.903.903.903 0 0 0 .903-.903m4.674.46a1 1 0 0 0 .067-.123.67.67 0 0 1 1.266.308.7.7 0 0 1-.055.262l-.019.04a2.27 2.27 0 0 1-2.034 1.276 2.225 2.225 0 0 1 0-4.45h.098a2.25 2.25 0 0 1 1.014.29V8.842h1.322v3.01a.74.74 0 0 1-.712.721 1.6 1.6 0 0 1-1.07-.373.9.9 0 0 0-.549-.191H20.4a.903.903 0 1 0 .776 1.366zM4.228 11.625a.704.704 0 0 1-.704.704.704.704 0 0 1-.704-.704.704.704 0 0 1 .704-.704.704.704 0 0 1 .704.704m18.398 2.835a.687.687 0 1 0 .687-.674.68.68 0 0 0-.687.674m.123 0a.56.56 0 1 1 .561.583.56.56 0 0 1-.565-.583zm.282.383h.124V14.5h.137l.216.34h.137l-.226-.35a.203.203 0 0 0 .209-.216q.001-.227-.275-.227h-.307zm.124-.688h.158c.084 0 .175.017.175.121 0 .105-.1.138-.21.138h-.129z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fnac.svg�������������������������������������0000664�0000000�0000000�00000002405�14753064456�0024533�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.874 7.2s-1.622-.106-1.684 1.369v.04c.062 1.476 1.684 1.39 1.684 1.39.737 0 1.137-.23 1.326-.652h.842l.232-1.495H22.18c-.19-.42-.569-.673-1.305-.652zm-4.59 1.516c-.147.19-.862.19-.862.19-.717.042-1.79.02-1.769.652.02.673.884.59 1.305.569.464-.021.863-.148 1.18-.548.294-.337.168-.842.146-.863.022-.021 0 0 0 0M3.295 0l-1.01 6.358h.442c-.02-.19-.02-.97.547-1.474 0 0 .632-.632 2.485-.485 0 0 1.894.148 1.894 1.516H6.347s-.042-.757-1.22-.715c0 0-1.2-.021-1.096 1.137h3.621v.59c.106-.17.38-.443 1.074-.632 0 0 2.968-.654 3.284 1.474v2.989h-1.304V8.316C10.516 6.99 9.02 7.221 9.02 7.221c-1.011.084-1.306.673-1.369 1.095V10.8H6.347V7.263H4.052V10.8H2.747V7.263h-.59L.01 20.716 20.726 24l2.148-13.622c-.442.316-1.179.548-2.358.485-.484-.021-.863-.085-1.179-.21-.59-.21-1.536-.822-1.536-2.001v-.147c-.022-1.16.947-1.769 1.536-2 .316-.126.695-.17 1.18-.21 1.768-.106 2.525.483 2.841.989l.633-4.043zM16.37 10.799l-.043-.505v-.02c-.526.652-1.789.609-1.789.609-2.358.043-2.316-1.241-2.316-1.241-.19-1.348 1.537-1.327 2.968-1.41 1.432-.085 1.095-.653 1.095-.653-.063-.464-1.094-.506-1.094-.506-1.432-.105-1.453.757-1.453.757H12.39s0-1.136 1.411-1.452c.02 0 .842-.252 2.295 0 0 0 1.62.21 1.516 1.768l.042 2.674H16.37z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/folium.svg�����������������������������������0000664�0000000�0000000�00000004674�14753064456�0025131�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.209 17.302v.558h-.558v-.558zm-1.116-.558v.558h.558v-.558zm1.116 1.116v.558h.558v-.558zm-1.674-1.674v.558h.558v-.558zm2.232 2.233v.558h.558v-.558zm.559-4.466v.558h.558v-.558zM9.767 2.791v.558h.558v-.558zm.559 5.581v.558h.558v-.558zm0 10.605v.558h.558v-.558zm-2.233-7.256v-.558h-.558v.558zm1.116-4.465v-.558h-.558v.558zm-.558-.558V6.14h-.558v.558zm1.116 1.116v-.558h-.558v.558zM8.093 6.14v-.559h-.558v.559zm1.116 6.697v-.558h-.558v.558zm1.117 1.116v-.558h-.559v.558zm-1.675-1.674v-.558h-.558v.558zm1.116 1.116v-.558h-.558v.558zm.559-5.023v-.558h-.559v.558zM6.977 18.977v.558h.558v-.558zm1.116-15.07h-.558v.558h.558zm0 16.186v.558h.558v-.558zm-.558-3.907v-.558h-.558v-4.465h.558v-.558h-.558V5.581h.558V4.465h-.558v.558h-.558v13.953h.558v-2.791h.558zm0 3.349v.558h.558v-.558zm1.116 1.116v.558h.558v-.558zm1.675 1.675v.558h.558v-.558zm-.559-.559v.558h.558v-.558zm-.558-.558v.558h.558v-.558zm1.117-19.535h-.559v.558h.558zm0 1.675v.558h.558v-.558zm-.559-1.116h-.558v.558h.558zm1.117-1.117h-.558v.558h.558zM9.209 2.791h-.558v.558h.558zm-.558.558h-.558v.558h.558zm5.023 15.628h.558v-.558h-.558zm.559-16.186h-.558v.558h.558zm0 15.628h.558v-.559h-.558zm-1.117 1.116h.558v-.558h-.558zm2.233-7.256h-.558v.558h.558zm.558 4.465h.558v-.558h-.558zm-1.116 1.116h.558v-.558h-.558zm.558-.558h.558v-.558h-.558zm-1.675-3.349h-.558v.558h.558zm.559-.558h-.558v.558h.558zm.558-6.139h-.558v.558h.558zm.558-.558h-.558v.558h.558zm.558-.558h-.558v.558h.558zm-2.233-2.791h-.558v.558h.558zm1.117 9.488h-.558v.558h.558zm1.116-1.116h-.558v.558h.558zm-1.674-3.907h-.558v.558h.558zm-.559.558h-.558v.558h.558zm-.558 14.512h.558v-.558h-.558zm1.675-1.675h.558v-.558h-.558zm-.558.558h.558v-.558h-.558zm1.674-10.046h.558v-.558h-.558zm-.558 8.93h.558v-.558h-.558zm.558-.558h.558v-.558h-.558zm1.116-15.07v-.558h-.558v1.116h.558v5.023h-.558v.558h.558v4.465h-.558v.558h.558v2.791h.558V5.023zm-.558 14.512h.558v-.558h-.558zm-2.791 2.791h.558v-.558h-.558zm2.791-17.861v-.558h-.558v.558zm-.558-.558v-.558h-.558v.558zm-.558-.558v-.558h-.558v.558zm.558 2.791h.558v-.559h-.558zm-2.233-4.466v-.558h-.558v.558zm1.117 1.117v-.558h-.558v.558zm-2.233 17.302h.558v-.558h-.558V15.07h.558v-.558h-.558V9.488h.558V8.93h-.558V4.465h.558v-.558h-.558V1.116h.558V.558h-.558V0h-1.116v.558h-.558v.558h.558v2.791h-.558v.558h.558V8.93h-.558v.558h.558v5.023h-.558v.558h.558v4.465h-.558v.558h.558v2.791h-.558v.558h.558V24h1.116v-.558h.558v-.558h-.558zm1.675-17.86v-.559h-.558v.558z"/></svg>��������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fonoma.svg�����������������������������������0000664�0000000�0000000�00000001005�14753064456�0025076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.706 21.919a4.295 4.295 0 0 0 4.293-4.296 4.295 4.295 0 1 0-4.293 4.296M4.296 10.672a4.295 4.295 0 0 0 4.293-4.295 4.295 4.295 0 1 0-4.294 4.295zm10.412 0h4.975a4.277 4.277 0 0 0 4.293-4.295 4.277 4.277 0 0 0-4.293-4.296h-4.975a4.277 4.277 0 0 0-4.294 4.296 4.277 4.277 0 0 0 4.294 4.295M4.295 21.92h4.976a4.277 4.277 0 0 0 4.293-4.296 4.277 4.277 0 0 0-4.293-4.295H4.295a4.277 4.277 0 0 0-4.293 4.295c.068 2.318 1.976 4.296 4.293 4.296"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fontawesome.svg������������������������������0000664�0000000�0000000�00000000406�14753064456�0026152�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.393 4.5a2.438 2.438 0 1 0-2.8-.141V24h3v-3h17.513c.684 0 1.238-.554 1.238-1.237a1.2 1.2 0 0 0-.107-.503l-2.893-6.51 2.893-6.51a1.2 1.2 0 0 0 .107-.503c0-.683-.554-1.237-1.238-1.237Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fontbase.svg���������������������������������0000664�0000000�0000000�00000000563�14753064456�0025430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.079 13.996c-2.702-2.771-5.702-5.703-8.105-8.103-1.62-1.621-4.284-1.621-5.943 0-2.97 2.963-5.248 5.21-8.104 8.066a3.12 3.12 0 0 0 0 4.437 3.12 3.12 0 0 0 4.437 0l2.2-2.2 2.2 2.2a3.12 3.12 0 0 0 4.438 0 3.12 3.12 0 0 0 0-4.438l4.4 4.4a3.12 3.12 0 0 0 4.438 0c1.274-1.16 1.274-3.165.039-4.362"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fontforge.svg��������������������������������0000664�0000000�0000000�00000003122�14753064456�0025612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12c6.628 0 12-5.373 12-12S18.628 0 12 0m6.32 7.04c-.602 0-.305-1.375-1.156-1.375-.696 0-1.274 1.836-1.563 3.437h1.5c.172 0 .203.125.203.258 0 .359-.164.664-.46.664h-1.477s-.679 3.212-1.18 5.218c-.201.806-.527 1.439-.92 1.93l.02.01 2.461-2.272-.383-.016h-.002v-.003l.013-.337q0-.002.003-.002l.614.024.024-.614.001-.002h.002l.337.013q.003 0 .003.003l-.025.614.614.024.002.001v.002l-.013.337-.003.003-.614-.024-.024.613v.002l-.003.001-.332-.013h-.005l-.002-.001v-.002l.014-.36-2.448 2.26a.633.633 0 0 1-.268.854.63.63 0 0 1-.485.044.6.6 0 0 1-.147-.067l-2.389 2.205.34.013q.002 0 .003.004l-.014.337-.003.002-.614-.024-.024.613-.003.003h-.001l-.336-.013-.003-.003.024-.614-.613-.024-.003-.003.013-.337q0-.003.003-.003l.614.024.024-.613.001-.002.002-.001.338.013.002.001v.002l-.016.403 2.424-2.237-.008-.016c-.758.515-1.59.7-2.233.7-.617 0-1.274-.218-1.711-.671-.586.601-1.476 1.078-2.43 1.078-.468 0-1.25-.313-1.25-.906 0-.336.337-.844.696-.844.633 0 .71.687 1.422.687.343 0 .582-.094.867-1.124.625-2.258 1.57-6.89 1.57-6.89H8.196c-.18 0-.203-.11-.203-.227 0-.312.117-.695.515-.695h1.04c.57-1.96 1.835-3.796 4.163-3.796.75 0 1.437.25 1.78.68.844-.852 1.633-1.087 2.313-1.087 1.094 0 1.437.696 1.437 1.156 0 .578-.367.985-.921.985m-8.415 7.975c-.247.953-.454 1.488-.67 1.938.445.523 1.023.788 1.523.788.61 0 1.094-.203 1.39-1.265.703-2.53 1.485-6.452 1.485-6.452h-2.578c-.375 1.728-.787 3.591-1.15 4.991m3.196-8.928c-1.101 0-1.601 1.827-1.843 3.015h2.609a9 9 0 0 1 .836-2.055c-.375-.593-1.024-.96-1.602-.96"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/foobar2000.svg�������������������������������0000664�0000000�0000000�00000001744�14753064456�0025403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.382 7.62 15.381 0l-2.396 5.166c-.509-.174-1.461-.176-1.97 0L8.619 0 5.618 7.62c-.846 2.146-1.622 4.379 0 6.81.597.896 6.375 9.58 6.382 9.57l6.382-9.57c1.622-2.431.846-4.664 0-6.81m-5.007 7.25c-.336-.297-.417-.844-.228-1.54.19-.695.626-1.454 1.23-2.135.603-.682 1.303-1.207 1.972-1.479.667-.271 1.22-.257 1.556.04.336.299.417.846.228 1.54-.19.697-.626 1.455-1.23 2.137-.603.681-1.304 1.206-1.972 1.478s-1.22.258-1.556-.04m.445 4.834c-.157.09-.376.08-.489-.116l-1.328-2.304-.003-.005-1.333 2.311a.32.32 0 0 1-.281.169.41.41 0 0 1-.348-.202.32.32 0 0 1 .005-.331l1.555-2.688a.46.46 0 0 1 .4-.228c.171 0 .322.086.406.23l1.547 2.686c.12.208.016.393-.131.478m-4.751-4.793c-.669-.272-1.369-.797-1.972-1.478-.604-.681-1.04-1.44-1.23-2.136-.19-.695-.108-1.242.228-1.54.176-.156.412-.234.693-.234.254 0 .546.064.863.194.669.272 1.369.797 1.972 1.478.604.681 1.04 1.44 1.23 2.136.189.695.108 1.242-.228 1.54s-.89.312-1.556.04"/></svg>����������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/foodpanda.svg��������������������������������0000664�0000000�0000000�00000002731�14753064456�0025561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.224 0a3.14 3.14 0 0 0-3.14 3.127 3.1 3.1 0 0 0 1.079 2.36 11.8 11.8 0 0 0-2.037 6.639C.126 18.68 5.458 24 12 24s11.874-5.32 11.874-11.874a11.7 11.7 0 0 0-2.025-6.614 3.14 3.14 0 0 0 1.09-2.373A3.13 3.13 0 0 0 19.8.012a3.12 3.12 0 0 0-2.636 1.438A11.8 11.8 0 0 0 12.012.264 11.8 11.8 0 0 0 6.86 1.438 3.13 3.13 0 0 0 4.224 0M12 1.198c1.713 0 3.331.396 4.78 1.102a11 11 0 0 1 4.29 3.715 10.9 10.9 0 0 1 1.882 6.135c.011 6.039-4.901 10.951-10.94 10.951-6.04 0-10.951-4.912-10.951-10.951 0-2.277.694-4.386 1.88-6.135A11.1 11.1 0 0 1 7.232 2.3 10.8 10.8 0 0 1 12 1.198M7.367 6.345c-.853.012-1.743.292-2.28.653-1.031.682-2.29 2.156-2.085 4.181.191 2.025 1.785 3.283 2.612 3.283.826 0 1.234-.42 1.485-1.45.252-1.018 1.115-2.192 2.217-3.45s-.024-2.469-.024-2.469c-.393-.513-1.052-.727-1.755-.747zm9.233.007-.17.001c-.702.02-1.358.233-1.746.752 0 0-1.126 1.21-.024 2.469 1.114 1.258 1.965 2.432 2.217 3.45.251 1.019.659 1.438 1.485 1.45.827 0 2.409-1.258 2.612-3.283s-1.054-3.51-2.084-4.182c-.544-.36-1.437-.643-2.29-.657m-8.962 2c.348 0 .624.275.624.623-.012.335-.288.623-.624.623a.62.62 0 0 1-.623-.623.62.62 0 0 1 .623-.624zm8.891 0c.348 0 .623.275.623.623-.012.335-.287.623-.623.623a.62.62 0 0 1-.623-.623c0-.348.288-.624.623-.624zm-4.541 4.025c-.527 0-2.06.096-2.06.587 0 .887 1.88 1.522 2.06 1.474.18.048 2.06-.587 2.06-1.474 0-.49-1.52-.587-2.06-.587M9.076 15.17c0 1.414 1.294 2.564 2.912 2.564s2.924-1.15 2.924-2.564z"/></svg>���������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ford.svg�������������������������������������0000664�0000000�0000000�00000007707�14753064456�0024570�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8.236C5.872 8.236.905 9.93.905 12.002S5.872 15.767 12 15.767c6.127 0 11.094-1.693 11.094-3.765S18.127 8.236 12 8.236m-5.698 6.24c-.656.005-1.233-.4-1.3-1.101a1.42 1.42 0 0 1 .294-1.02c.195-.254.525-.465.804-.517.09-.017.213-.006.264.054.079.093.056.194-.023.234-.213.109-.47.295-.597.55a.68.68 0 0 0 .034.696c.263.397.997.408 1.679-.225.169-.156.32-.304.473-.48.3-.344.4-.47.8-1.024q.007-.01.004-.018-.004-.01-.02-.01c-.267.007-.5.087-.725.255-.065.048-.159.041-.2-.021-.046-.07-.013-.163.062-.215.363-.253.76-.298 1.166-.367 0 0 .028.002.051-.03.167-.213.292-.405.47-.621.178-.22.41-.42.586-.572.246-.212.404-.283.564-.37.043-.022-.005-.049-.018-.049-.896-.168-1.827-.386-2.717-.056-.616.23-.887.718-.757 1.045.093.231.397.27.683.13a1.55 1.55 0 0 0 .611-.544c.087-.134.27-.038.171.195-.26.611-.757 1.097-1.363 1.118-.516.016-.849-.363-.848-.831.002-.924 1.03-1.532 2.11-1.622 1.301-.108 2.533.239 3.825.395.989.12 1.938.123 2.932-.106.118-.025.2.05.193.168-.01.172-.143.337-.47.516-.373.204-.763.266-1.17.27-.984.008-1.901-.376-2.85-.582.002.041.012.091-.023.117-.525.388-1 .782-1.318 1.334-.011.013-.005.025.013.024.277-.015.525-.022.783-.042.045-.004.047-.015.043-.048a.64.64 0 0 1 .2-.558c.172-.153.387-.17.53-.06.16.126.147.353.058.523a.63.63 0 0 1-.382.31s-.03.006-.026.034c.006.043.2.151.217.18.017.027.008.07-.021.102a.12.12 0 0 1-.095.045c-.033 0-.053-.012-.096-.035a.9.9 0 0 1-.27-.217c-.024-.031-.037-.032-.099-.029-.279.017-.714.059-1.009.096-.071.008-.082.022-.096.047-.47.775-.972 1.61-1.523 2.17-.592.6-1.083.758-1.604.762M19.05 10.71c-.091.158-1.849 2.834-1.96 3.11-.035.088-.04.155-.004.204.092.124.297.051.425-.038.381-.262.645-.58.937-.858.017-.013.046-.018.065 0 .043.04.106.091.15.137a.04.04 0 0 1 .002.057 6 6 0 0 1-.904.911c-.47.364-.939.457-1.172.224a.5.5 0 0 1-.14-.316c-.002-.057-.031-.06-.058-.034-.278.275-.76.579-1.198.362-.366-.18-.451-.618-.383-.986.001-.008-.006-.06-.051-.03a1.3 1.3 0 0 1-.3.162.85.85 0 0 1-.366.077.52.52 0 0 1-.451-.253.76.76 0 0 1-.095-.347c-.001-.011-.017-.032-.033-.005-.3.457-.579.899-.875 1.363-.016.022-.03.036-.06.037l-.587.001c-.036 0-.053-.028-.034-.063.104-.2.674-1.03 1.06-1.736.107-.194.085-.294.019-.337-.083-.054-.248.027-.387.133-.379.287-.697.735-.859.935-.095.117-.185.291-.433.56-.391.425-.91.669-1.408.5a.85.85 0 0 1-.546-.58c-.015-.052-.044-.066-.073-.032-.08.1-.245.249-.383.342-.015.011-.052.033-.084.017a.9.9 0 0 1-.152-.199.07.07 0 0 1 .016-.08c.197-.173.305-.271.391-.38.064-.08.113-.17.17-.315.12-.302.393-.866.938-1.158a1.8 1.8 0 0 1 .652-.219c.1-.01.183.002.213.08.011.033.039.105.056.158.011.032.003.057-.035.071-.32.122-.643.311-.865.61-.253.338-.321.746-.152.98.123.17.322.2.514.139.29-.092.538-.363.666-.663.138-.329.16-.717.058-1.059-.016-.059-.001-.104.037-.136.077-.063.184-.112.215-.128a.14.14 0 0 1 .182.045c.106.157.163.378.17.607.006.049.026.05.05.025.19-.202.366-.418.568-.58.185-.147.422-.267.643-.262.286.006.428.2.419.546-.001.044.03.04.051.011a1.2 1.2 0 0 1 .24-.264q.296-.244.611-.222c.26.02.468.257.425.527a.53.53 0 0 1-.281.406.36.36 0 0 1-.405-.044.34.34 0 0 1-.096-.322c.005-.025-.027-.048-.054-.02-.254.264-.273.606-.107.76.183.17.458.056.658-.075.366-.239.65-.563.979-.813.218-.166.467-.314.746-.351a.87.87 0 0 1 .454.052c.2.081.326.25.342.396.004.043.036.048.063.01.158-.246 1.005-1.517 1.075-1.65.02-.041.044-.047.089-.047h.606c.035 0 .051.02.036.047m-2.32 2.204a.05.05 0 0 0-.003.04c.003.02.03.04.056.05.01.003.015.01.004.032-.075.16-.143.252-.237.391a1.5 1.5 0 0 1-.3.325c-.178.147-.424.307-.628.2-.09-.047-.13-.174-.127-.276.004-.288.132-.584.369-.875.288-.355.607-.539.816-.438.216.103.148.354.05.55zm-5.949-1.881a.4.4 0 0 1 .132-.345c.057-.05.133-.062.18-.022.052.045.027.157-.026.234a.43.43 0 0 1-.245.177c-.018.004-.034-.004-.041-.044M12 7.5C5.34 7.5 0 9.497 0 12c0 2.488 5.383 4.5 12 4.5s12-2.02 12-4.5-5.383-4.5-12-4.5m0 8.608C5.649 16.108.5 14.27.5 12.002.5 9.733 5.65 7.895 12 7.895s11.498 1.838 11.498 4.107c0 2.268-5.148 4.106-11.498 4.106"/></svg>���������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/forgejo.svg����������������������������������0000664�0000000�0000000�00000001127�14753064456�0025257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.777 0a2.9 2.9 0 1 1-2.529 4.322H12.91a4.266 4.266 0 0 0-4.265 4.195v2.118a7.08 7.08 0 0 1 4.147-1.42l.118-.002h1.338a2.9 2.9 0 0 1 5.43 1.422 2.9 2.9 0 0 1-5.43 1.422H12.91a4.266 4.266 0 0 0-4.265 4.195v2.319A2.9 2.9 0 0 1 7.222 24 2.9 2.9 0 0 1 5.8 18.57V8.589a7.11 7.11 0 0 1 6.991-7.108l.118-.001h1.338A2.9 2.9 0 0 1 16.778 0M7.223 19.905a1.194 1.194 0 1 0 0 2.389 1.194 1.194 0 0 0 0-2.389m9.554-10.464a1.194 1.194 0 1 0 0 2.389 1.194 1.194 0 0 0 0-2.39m0-7.735a1.194 1.194 0 1 0 0 2.389 1.194 1.194 0 0 0 0-2.389"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/formik.svg�����������������������������������0000664�0000000�0000000�00000001272�14753064456�0025114�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.545 10.295-2.753-1.583.001-3.3 2.753 1.582Zm-.001 3.59-2.752-1.583V9.15l2.753 1.582zm.026 3.63-2.786-1.6.001-3.153 2.786 1.601zm-7.152-6.506 3.998-2.298V5.56l-3.997 2.298zm-2.475 4.983 6.457-3.711V9.128l-6.457 3.712zM6.6 22.135l10.823-6.221v-3.152l-10.822 6.22zM9.59 24l-2.77-1.593 10.784-6.201 2.77 1.593ZM3.455 13.778l2.753 1.582-.001 3.36-2.753-1.582Zm.001-3.59 2.752 1.582v3.153L3.454 13.34zM3.43 6.576l2.786 1.602-.001 3.153-2.786-1.602Zm7.151 6.486L6.584 15.36v3.152l3.997-2.298zm2.476-4.983L6.599 11.79v3.153l6.457-3.712zm4.358-6.152L6.577 8.157v3.152l10.838-6.23ZM14.534 0l2.77 1.593L6.396 7.865l-2.77-1.593Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/formspree.svg��������������������������������0000664�0000000�0000000�00000000503�14753064456�0025623�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.333 2a2 2 0 0 1 2-2h17.334a2 2 0 0 1 2 2v2.857a2 2 0 0 1-2 2H3.333a2 2 0 0 1-2-2zm0 8.571a2 2 0 0 1 2-2h17.334a2 2 0 0 1 2 2v2.858a2 2 0 0 1-2 2H3.333a2 2 0 0 1-2-2zm2 6.572a2 2 0 0 0-2 2V22a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-2.857a2 2 0 0 0-2-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/formstack.svg��������������������������������0000664�0000000�0000000�00000001157�14753064456�0025620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 4.035h1.4a.6.6 0 0 1 .6.6v14.73a.6.6 0 0 1-.6.6H19zm3 1.991h1.4a.6.6 0 0 1 .6.6v10.747a.6.6 0 0 1-.6.6H22zM.6 2.044h16.8a.6.6 0 0 1 .6.6v18.712a.6.6 0 0 1-.6.6H.6a.6.6 0 0 1-.6-.6V2.644a.6.6 0 0 1 .6-.6M4.2 5.23a.2.2 0 0 0-.2.2v7.35q0 .07.044.125a.2.2 0 0 0 .281.032l9.228-7.35a.2.2 0 0 0-.125-.356zM4 17.185q0 .062.035.113a.2.2 0 0 0 .278.052l7.576-5.184a.2.2 0 0 0-.113-.365H6.89a.2.2 0 0 0-.123.042l-2.69 2.102a.2.2 0 0 0-.077.158zm.086 1.157a.2.2 0 0 0-.086.164v.087c0 .106.086.192.192.192H7a.2.2 0 0 0 .2-.2v-2.022a.2.2 0 0 0-.314-.164z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fortinet.svg���������������������������������0000664�0000000�0000000�00000000670�14753064456�0025460�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 9.785h6.788v4.454H0zm8.666-6.33h6.668v4.453H8.666zm0 12.637h6.668v4.454H8.666zm8.522-6.307H24v4.454h-6.812zM2.792 3.455C1.372 3.814.265 5.404 0 7.425v.506h6.788V3.454zM0 16.091v.554c.24 1.926 1.276 3.466 2.624 3.9h4.188v-4.454zm24-8.184v-.506c-.265-1.998-1.372-3.587-2.792-3.972h-4.02v4.454H24zM21.376 20.57c1.324-.458 2.36-1.974 2.624-3.9v-.554h-6.812v4.454Z"/></svg>������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fortran.svg����������������������������������0000664�0000000�0000000�00000002034�14753064456�0025275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.536 0H4.464A4.463 4.463 0 0 0 0 4.464v15.073A4.463 4.463 0 0 0 4.464 24h15.073A4.463 4.463 0 0 0 24 19.536V4.464A4.463 4.463 0 0 0 19.536 0m1.193 6.493v3.871l-.922-.005c-.507-.003-.981-.021-1.052-.041-.128-.036-.131-.05-.192-.839-.079-1.013-.143-1.462-.306-2.136-.352-1.457-1.096-2.25-2.309-2.463-.509-.089-2.731-.176-4.558-.177L10.13 4.7v5.82l.662-.033c.757-.038 1.353-.129 1.64-.252.306-.131.629-.462.781-.799.158-.352.262-.815.345-1.542.033-.286.07-.572.083-.636.024-.116.028-.117 1.036-.117h1.012v9.3h-2.062l-.035-.536c-.063-.971-.252-1.891-.479-2.331-.311-.601-.922-.871-2.151-.95a11 11 0 0 1-.666-.059l-.172-.027.02 2.926c.021 3.086.03 3.206.265 3.465.241.266.381.284 2.827.368.05.002.065.246.065 1.041v1.039H3.271v-1.039c0-.954.007-1.039.091-1.041.05-.001.543-.023 1.097-.049.891-.042 1.033-.061 1.244-.167a.7.7 0 0 0 .345-.328c.106-.206.107-.254.107-6.78 0-6.133-.006-6.584-.09-6.737a.94.94 0 0 0-.553-.436c-.104-.032-.65-.07-1.215-.086l-1.026-.027V2.622h17.458z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fossa.svg������������������������������������0000664�0000000�0000000�00000005515�14753064456�0024744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.398 9.516a.12.12 0 0 1 .036.087v.693a.123.123 0 0 1-.123.123H1.018v1.155h1.766a.123.123 0 0 1 .123.123v.693a.123.123 0 0 1-.123.12H1.018v1.9a.123.123 0 0 1-.124.123h-.77A.123.123 0 0 1 0 14.41V9.6a.123.123 0 0 1 .123-.12h3.188q.051 0 .087.036m5.829 1.803a3.25 3.25 0 0 1 0 1.366q-.08.366-.256.696a2.4 2.4 0 0 1-.45.621 2.1 2.1 0 0 1-.719.436 2.8 2.8 0 0 1-.992.17c-.34.005-.68-.053-1-.17a2.1 2.1 0 0 1-.718-.436 2.5 2.5 0 0 1-.462-.62 2.7 2.7 0 0 1-.26-.697 3.25 3.25 0 0 1 0-1.366q.082-.364.26-.693c.121-.23.278-.44.463-.62a2.1 2.1 0 0 1 .719-.441 2.7 2.7 0 0 1 .998-.173c.339-.005.675.054.992.173.266.097.51.247.718.44.183.182.335.392.451.621q.174.33.256.693m-.96.675q0-.167-.028-.332a2.2 2.2 0 0 0-.123-.426 1.7 1.7 0 0 0-.242-.434 1.16 1.16 0 0 0-.431-.325 1.46 1.46 0 0 0-.633-.126 1.5 1.5 0 0 0-.65.134c-.165.07-.312.18-.428.317a1.8 1.8 0 0 0-.243.437q-.087.206-.124.426a1.95 1.95 0 0 0 .123 1.091q.09.238.246.44c.116.141.263.253.43.328.202.093.423.139.646.134v.006c.219.003.435-.044.633-.138.165-.076.31-.188.425-.328q.158-.202.248-.442a2 2 0 0 0 .152-.762zm5.5.385a1 1 0 0 0-.242-.27 4 4 0 0 0-.278-.21 2 2 0 0 0-.346-.172 8 8 0 0 0-.335-.134l-.353-.123a8 8 0 0 1-.368-.13 3 3 0 0 1-.268-.126.6.6 0 0 1-.224-.177.4.4 0 0 1-.067-.217q.022-.468.685-.469c.444.027.88.137 1.284.325a.123.123 0 0 0 .165-.072l.268-.628a.112.112 0 0 0-.058-.166 4.3 4.3 0 0 0-1.736-.41 1.74 1.74 0 0 0-1.183.397 1.35 1.35 0 0 0-.45 1.074q0 .798.751 1.203a6.4 6.4 0 0 0 1.039.382c.225.06.439.158.632.288a.4.4 0 0 1 .173.415.5.5 0 0 1-.254.349c-.17.093-.361.138-.554.13a3.3 3.3 0 0 1-1.353-.36.12.12 0 0 0-.093 0 .12.12 0 0 0-.07.064l-.332.629a.13.13 0 0 0 0 .093.11.11 0 0 0 .058.072c.57.297 1.204.451 1.847.45.466.019.924-.127 1.294-.411a1.39 1.39 0 0 0 .549-1.039 1.3 1.3 0 0 0-.18-.757zm4.637 0a1 1 0 0 0-.242-.27 5 5 0 0 0-.278-.21 2 2 0 0 0-.346-.172 8 8 0 0 0-.335-.134l-.353-.123a8 8 0 0 1-.368-.13 3 3 0 0 1-.268-.126.6.6 0 0 1-.224-.177.4.4 0 0 1-.072-.217q.02-.468.685-.469c.446.027.883.137 1.288.325a.123.123 0 0 0 .166-.072l.267-.628a.11.11 0 0 0-.015-.14.1.1 0 0 0-.042-.026 4.3 4.3 0 0 0-1.74-.41c-.43-.02-.852.122-1.183.397a1.35 1.35 0 0 0-.451 1.074q0 .798.751 1.203.503.236 1.039.382c.224.06.437.158.63.288a.4.4 0 0 1 .173.415.49.49 0 0 1-.256.353c-.169.092-.36.137-.551.13a3.3 3.3 0 0 1-1.353-.361.12.12 0 0 0-.093 0 .12.12 0 0 0-.073.061l-.332.629a.13.13 0 0 0 0 .093.11.11 0 0 0 .057.072c.57.297 1.205.451 1.848.45.465.018.921-.127 1.29-.41a1.39 1.39 0 0 0 .55-1.04 1.3 1.3 0 0 0-.04-.422 1.5 1.5 0 0 0-.129-.335M24 14.452a.1.1 0 0 1-.01.04.07.07 0 0 1-.065.041h-.902a.16.16 0 0 1-.17-.115l-.436-1.068h-1.58l-.431 1.062a.17.17 0 0 1-.171.115h-.916a.07.07 0 0 1-.066-.04.1.1 0 0 1-.007-.083l2.208-4.924a.19.19 0 0 1 .15-.065.18.18 0 0 1 .165.066l2.222 4.93a.1.1 0 0 1 .009.041m-1.93-1.912-.451-1.133-.45 1.133z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fossilscm.svg��������������������������������0000664�0000000�0000000�00000010121�14753064456�0025620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.571 0c-.699.022-2.041.555-3.458 1.419C7.464 2.42 6.258 3.538 6.16 4.108q-.014.011-.026.023c-.563.746.203 2.277 1.711 3.414 1.408 1.063 2.958 1.397 3.617.832.518-.09 1.227-1.776 1.627-3.94.383-2.054.35-3.812-.045-4.214-.006-.02.001-.048-.01-.066-.069-.113-.23-.163-.463-.156zm-2.277 2.936c-.164.193-.329.383-.492.605-.217.296-.403.587-.568.866a5.7 5.7 0 0 0-.908-.432 14 14 0 0 0 1.785-.914c.067-.04.118-.084.183-.125m.912 1.084c-.004.024-.01.043-.015.066a16 16 0 0 0-.227 1.78 6 6 0 0 0-.654-.674c.215-.241.436-.507.652-.801.093-.127.16-.246.244-.371m-3.14 4.002c-.41-.075-.968 1.14-1.246 2.706-.276 1.566-.164 2.897.246 2.969s.972-1.141 1.248-2.707.164-2.896-.248-2.968m-5.56 2.708c-.072.032-.026.314.103.625.132.312.297.539.37.51.074-.031.025-.311-.104-.623-.13-.312-.295-.54-.37-.512zm-.602.506q-.053-.008-.076.018c-.062.067.083.298.322.512.24.215.483.332.545.265.06-.07-.084-.298-.324-.513-.18-.16-.361-.267-.467-.282m-.224.684c-.118 0-.197.02-.205.058-.017.077.247.205.587.282.343.078.636.078.653.002.017-.08-.248-.204-.588-.284a2 2 0 0 0-.447-.058m1.296.144c-.251.067-.235.954.036 1.98.27 1.03.695 1.81.945 1.745.25-.067.234-.954-.037-1.98-.271-1.03-.694-1.812-.944-1.745m10.394.186c-.072-.031-.237.198-.369.51-.13.311-.178.59-.103.62.072.032.24-.197.369-.51.13-.31.178-.591.103-.62m.61.504c-.105.015-.285.12-.463.281-.238.213-.382.445-.323.512.058.064.304-.057.541-.27s.38-.443.32-.508q-.022-.023-.075-.015m-7.625.593c-.34.035-.86.369-1.326.883-.621.686-.914 1.437-.652 1.672.261.237.978-.125 1.601-.81.621-.689.912-1.437.65-1.674-.065-.059-.16-.082-.273-.07zm7.85.092a2 2 0 0 0-.446.057c-.343.077-.607.202-.59.281.017.077.31.077.652 0 .34-.077.607-.202.588-.28-.008-.037-.087-.057-.205-.058zm-6.13.168a.15.15 0 0 0-.099.028c-.21.163.143.978.793 1.82.647.841 1.346 1.393 1.557 1.23.21-.16-.148-.977-.795-1.818-.567-.737-1.172-1.251-1.455-1.26zm4.557.043c-.267-.03-.843.36-1.387.96-.62.685-.966 1.386-.767 1.563.196.18.861-.232 1.482-.917.621-.686.964-1.385.768-1.565a.17.17 0 0 0-.096-.04zm-5.603.133c-.386.082-.48 1.2-.205 2.492.273 1.292.815 2.275 1.2 2.193.387-.081.481-1.2.208-2.49-.276-1.292-.815-2.279-1.203-2.195m15.448 2.459c-.13-.055-.48.471-.78 1.174-.297.705-.432 1.323-.3 1.378.13.056.48-.47.777-1.173.297-.705.433-1.324.303-1.38zm-9.503.412c-.07.031-.024.31.105.621.132.312.298.542.367.514.072-.031.027-.31-.105-.621-.13-.312-.295-.543-.367-.514m-.6.506q-.053-.008-.078.017c-.06.07.087.297.324.51s.481.33.541.264c.06-.067-.083-.297-.32-.51-.178-.158-.36-.266-.467-.281m-.224.681c-.118 0-.195.019-.203.057-.017.079.245.204.585.283.343.077.636.077.653 0 .016-.077-.246-.204-.586-.281a2 2 0 0 0-.45-.059zm1.37.21c-.26 0-.476.75-.476 1.675s.215 1.676.477 1.676c.26 0 .478-.75.478-1.676s-.217-1.676-.478-1.676zm-5.175.333a.24.24 0 0 0-.133.045c-.294.216.04 1.17.744 2.13.703.962 1.514 1.564 1.807 1.35.295-.215-.035-1.171-.74-2.13-.617-.842-1.315-1.41-1.678-1.395m13.02.522c-.105-.094-.601.297-1.105.873-.503.575-.824 1.119-.718 1.213.108.093.603-.298 1.107-.873.504-.576.825-1.12.717-1.213zm-11.014.443c-.113-.005-.194.019-.23.074-.144.223.46.875 1.353 1.453.89.58 1.73.872 1.875.649s-.46-.877-1.35-1.457c-.667-.434-1.308-.704-1.648-.719M8.73 20.451c-.266 0-.48.75-.48 1.675 0 .926.214 1.676.48 1.676s.482-.75.482-1.676-.216-1.675-.482-1.675m-3.644.06c-.072.031-.026.313.103.625.132.312.297.539.37.51.074-.031.025-.312-.104-.623-.13-.312-.295-.54-.37-.512zm14.296.477c-.368-.04-1.127.127-1.96.453-1.107.434-1.929.984-1.833 1.228.096.242 1.074.093 2.181-.342 1.11-.434 1.932-.985 1.836-1.23-.024-.06-.102-.096-.224-.11zm-14.898.029q-.053-.008-.076.018c-.062.067.082.298.322.511.24.216.483.333.545.266.06-.07-.084-.298-.324-.514-.18-.16-.362-.267-.467-.281m-.223.685c-.118 0-.196.019-.205.057-.016.08.248.204.588.283.343.077.636.077.653 0 .016-.077-.248-.204-.588-.281a2 2 0 0 0-.448-.059m1.29.047c-.114-.005-.194.019-.231.075-.144.223.461.875 1.353 1.453.89.58 1.731.871 1.875.648.147-.223-.46-.877-1.35-1.457-.666-.433-1.307-.704-1.648-.719zm6.628.09c-.865-.036-1.493.081-1.527.32-.046.317.98.73 2.289.92 1.311.19 2.415.087 2.46-.232.046-.317-.98-.73-2.292-.92a9 9 0 0 0-.93-.088"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/foundryvirtualtabletop.svg�������������������0000664�0000000�0000000�00000004231�14753064456�0030453�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.391 23.879-9.386-5.5c-.269-.158-.492-.546-.492-.86V6.48c0-.314.223-.7.494-.857L11.506.116c.274-.157.717-.154.988.003l9.499 5.561c.271.16.494.546.494.86v10.979c0 .314-.223.7-.494.857l-9.613 5.509c-.271.154-.717.154-.989-.006m1.221-.934 6.929-3.958c.274-.157.471-.354.443-.443-.029-.088-.309-.125-.62-.085l-6.684.877a.67.67 0 0 0-.566.646v2.674c0 .315.226.446.498.289M9.714 1.951l-6.766 3.92c-.272.158-.272.418 0 .575l2.208 1.288a.676.676 0 0 0 .846-.162l4.075-5.204c.194-.248.306-.508.243-.577s-.335.003-.606.16m2.429 16.222 5.212-9.064c.157-.272.028-.494-.286-.494H6.725c-.314 0-.443.222-.289.497l5.141 9.058c.154.274.409.274.566.003m1.489-7.247s-.949.28-.952.958c0 .674 1.129 1.025 1.129 1.025v.669h-1.12a1.37 1.37 0 0 0-.752-.237c-.268 0-.523.086-.751.237H10.12v-.669c.36 0 1.086-.591 1.086-1.02 0-.428-.683-.517-.683-.517h-.54c-1.258 0-1.749-1.186-1.749-1.186h2.08v-.228h4.824v.731c-.646 0-1.506.237-1.506.237m-3.052-.58h4.303c.026 0 .049-.02.049-.048v-.029a.05.05 0 0 0-.049-.048H10.58a.05.05 0 0 0-.049.048v.029c0 .025.02.048.049.048m-.297.2v-.097a.023.023 0 0 0-.023-.023H8.868c-.02 0-.028.032-.008.043.211.112.351.1.351.1h1.049a.023.023 0 0 0 .023-.023M2.17 7.166v7.972c0 .315.075.589.166.606s.266-.203.386-.494l2.617-6.252a.655.655 0 0 0-.28-.803L2.67 6.872c-.274-.152-.5-.02-.5.294m11.459-5.375c-.06.071.048.329.243.577l4.072 5.204c.194.248.574.32.845.162l2.209-1.288c.272-.157.272-.417 0-.575l-6.763-3.92c-.272-.157-.546-.229-.606-.16m8.172 13.347V7.166c0-.314-.226-.446-.5-.294l-2.389 1.323a.65.65 0 0 0-.28.803l2.618 6.252c.123.291.294.511.385.494.092-.02.166-.291.166-.606m-8.895 3.652 8.218-1.083c.311-.04.466-.311.346-.6l-3.201-7.644c-.123-.288-.348-.303-.505-.031l-5.141 8.938c-.154.271-.029.46.283.42m4.317-11.144-4.88-6.444c-.189-.251-.503-.254-.697-.005L6.594 7.649c-.195.248-.095.451.22.451h10.184c.314 0 .414-.203.225-.454M2.759 17.71l8.055 1.077c.314.043.44-.146.286-.42L6.036 9.44c-.157-.274-.38-.26-.5.032L2.41 17.104c-.12.292.037.563.349.606m8.841 4.946h-.003v-2.669a.675.675 0 0 0-.566-.648l-6.54-.878c-.312-.042-.592-.002-.621.083-.028.086.169.289.441.446l6.795 3.949c.271.16.494.032.494-.283"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/foursquare.svg�������������������������������0000664�0000000�0000000�00000001732�14753064456�0026022�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.376 0h7.338v1.204h-6.12v3.372h5.44V5.78h-5.44v4.874H2.376zm-.208 20.16 1.19-.268c.213 1.473 1.232 2.352 2.89 2.352 1.487 0 2.664-.694 2.664-1.828 0-.807-.595-1.487-2.919-2.18-2.635-.752-3.513-1.715-3.513-3.13 0-1.829 1.473-2.805 3.613-2.805 2.393 0 3.456 1.218 3.825 2.89l-1.19.269c-.299-1.374-1.233-1.955-2.679-1.955-1.36 0-2.323.51-2.323 1.487 0 .793.624 1.403 2.777 2.083 2.565.793 3.67 1.658 3.67 3.301 0 2.04-1.715 3.103-3.896 3.103-2.281-.003-3.84-1.193-4.11-3.318zm9.223-2.238c0-3.159 2.068-5.624 5.242-5.624 3.159 0 5.2 2.479 5.2 5.624 0 1.573-.525 2.933-1.404 3.925a36 36 0 0 1 1.247 1.303l-.879.85a57 57 0 0 0-1.303-1.346c-.807.524-1.771.822-2.861.822-3.061 0-5.242-2.352-5.242-5.554m7.181 3.825a31 31 0 0 0-1.247-1.148l.85-.863a37 37 0 0 1 1.331 1.218c.638-.764 1.02-1.813 1.02-3.046 0-2.493-1.516-4.39-3.896-4.39s-3.91 1.897-3.91 4.39c0 2.565 1.658 4.363 3.91 4.363.725 0 1.375-.184 1.942-.524"/></svg>��������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fox.svg��������������������������������������0000664�0000000�0000000�00000000663�14753064456�0024424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.069 9.7h3.42L6.3 6.932H0v10.136h3.069V13.8h2.789v-2.778H3.069ZM24 6.932h-3.291L19.48 9.1l-1.231-2.168h-3.292l2.871 5.076-2.871 5.06h3.308l1.215-2.142 1.213 2.142H24l-2.871-5.06Zm-12.592 0A5.067 5.067 0 1 0 16.475 12a5.067 5.067 0 0 0-5.067-5.065Zm.888 7.146a.867.867 0 0 1-.873.847.847.847 0 0 1-.837-.858V9.919a.88.88 0 0 1 .837-.9.913.913 0 0 1 .873.9Z"/></svg>�����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/foxtel.svg�����������������������������������0000664�0000000�0000000�00000001121�14753064456�0025117�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.867 10.631.341-1.024H0v4.779h1.16v-1.72h1.434l.341-1.024H1.16v-1.01zm3.03-1.085a2.454 2.454 0 1 0-.006 4.908 2.454 2.454 0 0 0 .007-4.908zm0 3.74a1.287 1.287 0 1 1-.007-2.574 1.287 1.287 0 0 1 .008 2.575zm6.506-3.679h-1.297l-.812 1.304-.82-1.304H8.177l1.468 2.335-1.536 2.444h1.297l.888-1.405.88 1.405h1.297l-1.529-2.444zm.102 1.024h1.413v3.755h1.16V10.63h1.23V9.607h-3.16zm7.304 0 .341-1.024h-3.208v4.779h2.867l.341-1.024h-2.046v-.915h1.432l.341-1.024h-1.773v-.792zm2.143 2.73V9.608h-1.16v4.779h2.867L24 13.362Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fozzy.svg������������������������������������0000664�0000000�0000000�00000001030�14753064456�0024776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.494 20.48-.998-2.095 5.787-11.273c.897 1.396 1.496 3.092 1.496 4.888 0 3.99-2.594 7.382-6.285 8.48M12.998.029C5.615-.471-.47 5.615.028 12.998c.5 5.786 5.188 10.475 10.974 10.973 7.383.5 13.468-5.586 12.97-12.969C23.471 5.216 18.783.527 12.997.03zM7.112 4.717c1.297-.897 2.793-1.396 4.39-1.496L8.807 8.409zm3.491 7.383 4.19-8.38c.798.3 1.497.598 2.195 1.097L11.9 14.793zM3.221 12c0-1.796.599-3.492 1.496-4.888l6.485 13.667C6.712 20.38 3.22 16.589 3.22 12z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/framer.svg�����������������������������������0000664�0000000�0000000�00000000161�14753064456�0025075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 0h16v8h-8zm0 8h8l8 8H4zm0 8h8v8z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/framework.svg��������������������������������0000664�0000000�0000000�00000001722�14753064456�0025622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.186 9.07 21.41 8.019a2.78 2.78 0 0 1-1.344-2.391V3.523c0-.431-.19-.837-.516-1.108A12 12 0 0 0 16.317.493a1.36 1.36 0 0 0-1.193.091L13.347 1.64a2.62 2.62 0 0 1-2.688 0L8.882.584a1.35 1.35 0 0 0-1.194-.09 12 12 0 0 0-3.231 1.918 1.44 1.44 0 0 0-.516 1.108v2.104c0 .986-.51 1.897-1.344 2.392L.823 9.068c-.363.215-.61.588-.675 1.013A12 12 0 0 0 0 12.001q0 .978.145 1.916c.065.425.312.801.675 1.016l1.774 1.052a2.78 2.78 0 0 1 1.344 2.392v2.104c0 .431.191.837.516 1.108.965.8 2.054 1.452 3.231 1.919.393.155.831.124 1.194-.091l1.777-1.055a2.62 2.62 0 0 1 2.688 0l1.777 1.055c.363.215.804.246 1.193.091a12 12 0 0 0 3.232-1.92 1.44 1.44 0 0 0 .516-1.107v-2.104a2.78 2.78 0 0 1 1.344-2.392l1.774-1.052c.363-.215.61-.588.675-1.016q.143-.938.145-1.916 0-.98-.145-1.917a1.41 1.41 0 0 0-.67-1.013zM12.003 19.41c-3.981 0-7.21-3.317-7.21-7.407s3.229-7.406 7.21-7.406 7.21 3.316 7.21 7.406-3.23 7.407-7.21 7.407"/></svg>����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/framework7.svg�������������������������������0000664�0000000�0000000�00000000456�14753064456�0025714�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 12a11.95 11.95 0 0 1 2.713-7.6h18.574L8.037 23.33C3.358 21.694 0 17.24 0 12m22.271-6.208A11.94 11.94 0 0 1 24 12c0 6.627-5.373 12-12 12q-1.193-.002-2.32-.224zM4.295 2.8A11.95 11.95 0 0 1 12 0c2.933 0 5.62 1.052 7.705 2.8z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/franprix.svg���������������������������������0000664�0000000�0000000�00000000624�14753064456�0025456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6.305c3.691 0 6.323-3.071 6.13-6.286-2.124-.17-5.069.791-6.13 3.79C10.939.81 7.993-.15 5.87.02 5.677 3.234 8.309 6.305 12 6.305m11.002 6.962c-.139-3.413-2.821-6.362-6.55-6.362-1.69 0-3.236.635-4.452 1.744-1.217-1.11-2.763-1.744-4.452-1.744-3.729 0-6.412 2.949-6.55 6.362C.758 19.19 5.913 24 12 24s11.242-4.81 11.002-10.733"/></svg>������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/frappe.svg�����������������������������������0000664�0000000�0000000�00000000377�14753064456�0025107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.88 0A2.88 2.88 0 0 0 0 2.88v18.24A2.88 2.88 0 0 0 2.88 24h18.24A2.88 2.88 0 0 0 24 21.12V2.88A2.88 2.88 0 0 0 21.12 0zM8.4 6h8.024v2.111H8.4zm0 5.385h7.49v2.113h-4.93V18H8.4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fraunhofergesellschaft.svg�������������������0000664�0000000�0000000�00000001072�14753064456�0030347�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.06 23.99c5.681-2.926 14-7.653 23.88-14.567v-2.32C15.247 12.792 6.406 17.359.06 20.38zm0-6.93c6.325-2.575 15.166-6.558 23.88-11.74V4.174C15.751 8.238 7.24 10.781.06 12.366zM23.94 24V12.332A201.394 201.393 0 0 1 8.596 24zM5.542 24a166.927 166.926 0 0 0 14.7-9.765 323.136 324.76 0 0 0 3.698-2.81V9.98C16.257 15.74 8.413 20.542 2.287 24zM.06 10.668C7.044 9.44 15.589 7.231 23.94 3.262v-1.3C15.526 5.737 7.102 7.338.06 7.91zM.06 0v6.686q.783-.05 1.596-.111C7.464 6.126 15.387 5.1 23.94 1.402V0z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/freebsd.svg����������������������������������0000664�0000000�0000000�00000002052�14753064456�0025234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.682 2.406c-.001-.149-.097-.187-.24-.189h-.25v.659h.108v-.282h.102l.17.282h.122l-.184-.29c.102-.012.175-.065.172-.18m-.382.096v-.193h.13c.06-.002.145.011.143.089.005.09-.08.107-.153.103zM21.851 1.49c1.172 1.171-2.077 6.319-2.626 6.869-.549.548-1.944.044-3.115-1.128s-1.676-2.566-1.127-3.115S20.68.318 21.851 1.49M1.652 6.61C.626 4.818-.544 2.215.276 1.395c.81-.81 3.355.319 5.144 1.334A11 11 0 0 0 1.652 6.61m18.95.418a10.6 10.6 0 0 1 1.368 5.218c0 5.874-4.762 10.636-10.637 10.636C5.459 22.882.697 18.12.697 12.246.697 6.371 5.459 1.61 11.333 1.61c1.771 0 3.441.433 4.909 1.199-.361.201-.69.398-.969.574-.428-.077-.778-.017-.998.202-.402.402-.269 1.245.263 2.2.273.539.701 1.124 1.25 1.674q.154.155.315.297c1.519 1.446 3.205 2.111 3.829 1.486.267-.267.297-.728.132-1.287.167-.27.35-.584.538-.927m2.814-5.088c-.322 0-.584.266-.584.595s.261.595.584.595.584-.266.584-.595-.261-.595-.584-.595m0 1.087c-.252 0-.457-.22-.457-.492s.204-.492.457-.492c.252 0 .457.22.457.492s-.204.492-.457.492"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/freecad.svg����������������������������������0000664�0000000�0000000�00000001434�14753064456�0025216�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h5.6v-9.6h4.8V8.8H5.6V5.6h8V0Zm15.552 6.4-1.638.086a.4.4 0 0 0-.363.295l-.702 2.576-.714.342L10.9 9.16v5.74H6.404l.092 1.59a.4.4 0 0 0 .293.363l2.576.7.344.714-1.076 2.437a.4.4 0 0 0 .097.46l1.225 1.1a.4.4 0 0 0 .467.052l2.312-1.329.752.268.967 2.488a.4.4 0 0 0 .394.256l1.65-.092a.4.4 0 0 0 .366-.297l.691-2.578.713-.341 2.446 1.08a.4.4 0 0 0 .46-.1l1.102-1.225a.4.4 0 0 0 .049-.466l-1.328-2.315.261-.751 2.487-.967a.4.4 0 0 0 .256-.393l-.084-1.648a.4.4 0 0 0-.295-.365l-2.578-.692-.344-.714 1.072-2.45a.4.4 0 0 0-.1-.459l-1.224-1.101a.4.4 0 0 0-.467-.049l-2.314 1.326-.744-.258-.975-2.49a.4.4 0 0 0-.395-.253zm2.249 8.801a2.6 2.6 0 0 1-2.6 2.6 2.6 2.6 0 0 1-2.6-2.6 2.6 2.6 0 0 1 2.6-2.6 2.6 2.6 0 0 1 2.6 2.6"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/freecodecamp.svg�����������������������������0000664�0000000�0000000�00000002140�14753064456�0026235�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.885 3.906a.62.62 0 0 0-.354.12c-.08.08-.161.196-.161.313 0 .2.236.474.673.923 1.822 1.754 2.738 3.903 2.732 6.494-.007 2.867-.97 5.17-2.844 6.954-.394.353-.556.63-.557.867 0 .116.08.237.16.353a.58.58 0 0 0 .353.162c.434 0 1.04-.512 1.833-1.509 1.542-1.89 2.24-3.978 2.279-6.824.036-2.847-.857-4.777-2.603-6.77-.63-.712-1.153-1.082-1.511-1.083m-15.769.002c-.358 0-.882.37-1.51 1.083C.858 6.984-.035 8.914.001 11.761c.04 2.846.737 4.933 2.28 6.824.791.997 1.398 1.51 1.832 1.509a.57.57 0 0 0 .352-.162c.08-.116.16-.237.16-.353 0-.237-.162-.514-.556-.866-1.873-1.785-2.837-4.087-2.844-6.955-.006-2.591.91-4.74 2.732-6.494.437-.449.674-.722.673-.923 0-.117-.08-.233-.161-.313a.62.62 0 0 0-.354-.12zm7.056.895s.655 2.081-2.649 6.727c-3.156 4.433 1.045 7.15 1.432 7.386-.281-.18-2.001-1.5.402-5.423.466-.77 1.076-1.47 1.834-3.041 0 0 .67.946.32 2.998-.523 3.101 2.271 2.214 2.314 2.257.976 1.15-.808 3.17-.917 3.233-.108.061 5.096-3.13 1.399-7.935-.253.253-.582 1.442-1.267 1.266-.684-.174 2.125-3.494-2.868-7.468M9.955 18.916q.036.024.038.024z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/freedesktopdotorg.svg������������������������0000664�0000000�0000000�00000002476�14753064456�0027366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.855 13.112-2.054-7.875a4.414 4.414 0 0 0-5.379-3.153L3.296 5.509a4.413 4.413 0 0 0-3.153 5.378l2.055 7.875a4.416 4.416 0 0 0 5.379 3.153l13.126-3.425a4.38 4.38 0 0 0 2.69-2.036 4.38 4.38 0 0 0 .462-3.342m-1.047 3a3.7 3.7 0 0 1-2.277 1.723L7.406 21.26a3.735 3.735 0 0 1-4.551-2.668L.8 10.717a3.734 3.734 0 0 1 2.668-4.552L16.593 2.74a3.727 3.727 0 0 1 4.551 2.668l2.054 7.875a3.7 3.7 0 0 1-.39 2.829m-2.362-9.893c-.482-2.061-2.122-2.941-4.369-2.437l-11.65 3.04c-2.426.706-3.104 2.014-2.621 4.261l1.748 6.698c.482 2.112 2.281 3.098 4.369 2.437l11.651-3.04c2.121-.504 3.104-2.095 2.622-4.261zm-6.277 3.097.173.663-4.117.475-.173-.663zm-9.05 3.861a.64.64 0 0 1-.783-.46l-.777-2.975a.643.643 0 0 1 .459-.783l4.169-1.087a.644.644 0 0 1 .784.458l.776 2.975a.643.643 0 0 1-.459.784zm5.618 1.76-2.06-1.988.769-.201 2.03 1.959-.519.135a1 1 0 0 0-.22.095m3.397 1.93a.21.21 0 0 1-.128.097l-2.336.609a.21.21 0 0 1-.257-.151l-.435-1.667a.21.21 0 0 1 .151-.257l2.336-.609a.21.21 0 0 1 .256.15l.435 1.667a.21.21 0 0 1-.022.161m.011-2.398a1 1 0 0 0-.178-.142.9.9 0 0 0-.463-.119l1.562-2.351c.183.147.41.235.649.248zm5.151-3.94-3.401.887a.46.46 0 0 1-.563-.33l-.633-2.428a.46.46 0 0 1 .33-.563l3.401-.887a.47.47 0 0 1 .35.049.46.46 0 0 1 .213.282l.633 2.428a.46.46 0 0 1-.33.562"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/freelancer.svg�������������������������������0000664�0000000�0000000�00000000460�14753064456�0025731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.096 3.076 1.634 2.292L24 3.076M5.503 20.924l4.474-4.374-2.692-2.89m6.133-10.584L11.027 5.23l4.022.15M4.124 3.077l.857 1.76 4.734.294m-3.058 7.072 3.497-6.522L0 5.13m7.064 7.485 3.303 3.548 3.643-3.57 1.13-6.652-4.439-.228Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/freelancermap.svg����������������������������0000664�0000000�0000000�00000001341�14753064456�0026426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12l-.011-1.396H12c5.857 0 10.604-4.747 10.604-10.604H24c0-6.628-5.372-12-12-12m0 21.205c-5.084 0-9.205-4.121-9.205-9.205S6.916 2.792 12 2.792a9.205 9.205 0 0 1 0 18.411zm6.325-4.597c3.577-5.049.173-10.211-2.863-11.614-3.61.575-6.861 3.925-7.233 7.91 2.818 4.817 8.504 4.224 10.099 3.705m-9.912-1.45c.265 1.636.725 3.247 1.703 4.438 3.425.884 6.45-.782 7.943-2.642-3.15 1.463-6.662.623-9.644-1.796M4.706 9.072c-1.897 4.993 1.325 9.143 4.676 10.303-1.076-1.31-1.853-3.164-2.052-4.998-1.43-1.43-2.411-3.25-2.626-5.306M14.31 4.53c-3.09-1.006-6.05.192-7.742 1.795.043 2.075.376 3.695.909 5.07.731-3.48 3.551-6.341 6.833-6.863"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/freenas.svg����������������������������������0000664�0000000�0000000�00000003706�14753064456�0025254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.598 2.707h.143q.09 0 .124.032a.1.1 0 0 1 .034.083q0 .067-.051.097a.3.3 0 0 1-.153.029h-.098zm0 .391h.09l.214.337h.203l-.242-.356v-.008a.3.3 0 0 0 .161-.081.24.24 0 0 0 .059-.168.25.25 0 0 0-.03-.125.24.24 0 0 0-.08-.082.4.4 0 0 0-.114-.045.7.7 0 0 0-.133-.013h-.303v.879h.175zm-.485-.368a.63.63 0 0 1 .348-.367.7.7 0 0 1 .277-.053.64.64 0 0 1 .625.42.7.7 0 0 1 .049.27.7.7 0 0 1-.049.271.64.64 0 0 1-.348.366.7.7 0 0 1-.277.054.65.65 0 0 1-.624-.421.7.7 0 0 1-.049-.27q0-.143.048-.27m.014.884a.8.8 0 0 0 .273.179.9.9 0 0 0 .338.064q.18 0 .339-.064A.83.83 0 0 0 20.598 3a.85.85 0 0 0-.249-.613.8.8 0 0 0-.272-.179q-.158-.064-.339-.064a.7.7 0 0 0-.338.064.82.82 0 0 0-.454.45.8.8 0 0 0-.067.342q-.001.187.067.343a.8.8 0 0 0 .181.271m-1.864 12.361a3.3 3.3 0 0 1-.931 1.215 3.2 3.2 0 0 1-2.008.695 3.2 3.2 0 0 1-2.423-1.085 2 2 0 0 1-.439-.855 2.2 2.2 0 0 1-.06-.519c.002-.854.428-1.71.845-2.362.21-.326.418-.602.575-.794l.208.254.036.046a7.5 7.5 0 0 0 1.126 1.083c.766.597 1.85 1.197 3.126 1.229q.018.001.035.004a.2.2 0 0 1 .064 0 .16.16 0 0 1 .126.189c-.061.33-.158.628-.28.9m6.719-7.025a5.3 5.3 0 0 1-.821.905c-.752.664-1.936 1.343-3.649 1.435l-.505.926a.173.173 0 0 1-.299.008l-.581-.954c-.275.051-.984.168-1.808.168-1.376-.03-1.807-.241-2.263-.532l1.538-2.072-3.297-.764 4.136-.795c1.208-2.437 1.583-4.521 1.675-5.157-4.638.514-8.102 1.666-10.329 2.632l-.179.079-.034.014-.249-.241a9.3 9.3 0 0 0-1.459-.985 9.4 9.4 0 0 0-4.516-1.175 8 8 0 0 0-.894.043c-.491.031-.253.153-.194.203.225.184.544.573.753 1.112.211.541.354 1.27.354 2.254 0 .275-.012.579-.036.896q-.294.544-.539 1.132C.311 9.227 0 10.479 0 11.767c0 2.291.9 4.378 2.181 6.074l.173.262-1.355 2.7a.063.063 0 0 0 .021.08q.017.01.035.01a.07.07 0 0 0 .047-.02l2.117-1.863.248.24a10.1 10.1 0 0 0 6.812 2.63c4.516 0 8.342-2.953 9.652-7.032l.288-.124a6.3 6.3 0 0 0 1.132-.555c.684-.424 1.502-1.107 2.045-2.141.362-.687.604-1.534.604-2.576q0-.244-.018-.502"/></svg>����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/freenet.svg����������������������������������0000664�0000000�0000000�00000001731�14753064456�0025255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.327 6.184c-.771-.17-1.577-.48-4.266-1.884C1.48 2.467.692 2.33.23 3.084c-.617.993-.051 3.512 2.415 8.103 1.594 3.015 4.112 6.904 4.574 7.418.103.102.223.137.326.068.103-.068.154-.154.069-.308-.377-.703-1.68-3.41-2.279-4.814-1.405-3.392-1.73-4.54-1.25-4.797.136-.068.308-.017.702.206 1.353.72 4.334 3.015 4.865 4.625.223.703.343 1.508.394 4.386.069 3.786.343 4.488 1.268 4.488 1.233 0 3.289-1.713 6.356-5.996 2.021-2.81 4.385-6.767 4.625-7.4.069-.138 0-.24-.086-.309-.102-.068-.222-.051-.308.086-.463.65-2.33 3.066-3.358 4.248-2.45 2.81-3.34 3.632-3.837 3.375-.137-.068-.171-.24-.171-.65 0-1.474.633-5.02 1.867-6.22.531-.53 1.25-1.027 3.906-2.5 3.512-1.954 4.009-2.519 3.546-3.29-.617-.993-3.22-1.799-8.771-2.124-3.615-.223-8.497-.137-9.2-.017-.154.017-.222.103-.24.222 0 .103.069.206.24.206.84.051 4.026.343 5.636.565 3.855.549 5.088.874 5.088 1.405 0 .137-.137.257-.53.463-1.388.788-5.02 2.038-6.75 1.661"/></svg>���������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/freepik.svg����������������������������������0000664�0000000�0000000�00000002717�14753064456�0025257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.315 6.939c-.702.702-1.204 1.505-1.706 2.308l-.702-.402c-.1-.401-.602-.702-1.004-.702-.602.1-.903.502-.903 1.104 0 .501.502.903 1.004.803.1 0 .2 0 .3-.1l.703.4c-.401.904-.702 1.807-.803 2.81l1.204.201c.402-2.107 1.305-4.014 2.81-5.52Zm12.544 7.626c-1.204 0-2.107-1.003-2.107-2.107 0-1.204 1.004-2.107 2.107-2.107 1.205 0 2.108 1.003 2.108 2.107 0 1.204-.903 2.107-2.108 2.107m-7.325 1.506a2.91 2.91 0 0 1-2.91-2.91c0-1.707 1.304-3.011 2.91-3.011a2.91 2.91 0 0 1 2.91 2.91c0 1.606-1.305 3.01-2.91 3.01zm3.311-10.337a9.42 9.42 0 0 0-9.433 9.434c0 .702.1 1.304.2 2.007 1.004.802 4.216 1.405 8.33 1.204 4.516-.301 8.23-1.505 10.437-3.412 0-.301 0-.602-.1-.903-.603-4.817-4.617-8.33-9.434-8.33m-.803 13.749c-.602 0-1.204.1-1.806.1q-2.108 0-3.914-.3c-.602-.101-1.304-.302-2.007-.503 1.606 2.91 4.817 4.918 8.43 4.918 4.415 0 8.229-3.011 9.232-7.125a16.8 16.8 0 0 1-3.813 1.806c-1.806.602-3.914 1.003-6.122 1.104M23.182 7.34c.501-.1.903-.502.803-1.104-.1-.502-.502-.903-1.004-.803s-.803.502-.803 1.004l-.702.602c-.703-.703-1.405-1.305-2.208-1.806l-.602 1.003a11.2 11.2 0 0 1 4.014 4.616l1.104-.501c-.402-.904-.903-1.706-1.505-2.51l.602-.601c.1.1.2.1.3.1zM12.845 3.326h-.803l-.1-1.004c.301-.2.502-.602.401-1.003-.1-.602-.602-1.104-1.204-1.004s-1.003.602-1.003 1.305q.15.602.602.903l.1 1.004c-1.104.2-2.208.501-3.211 1.003l.502 1.104a10.4 10.4 0 0 1 4.616-1.104c.803 0 1.505.1 2.308.301l.2-1.204q-1.053-.3-2.408-.301"/></svg>�������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fresh.svg������������������������������������0000664�0000000�0000000�00000003540�14753064456�0024734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.144 1.913c-.818-.017-1.704.078-2.626.264-2.46.496-5.215 1.667-7.73 3.319-2.877 1.89-5.037 4.094-6.346 6.056-.656.981-1.1 1.9-1.309 2.708s-.192 1.536.187 2.067c.93 1.3 1.312 2.654 1.748 3.747.218.547.449 1.034.809 1.409s.868.606 1.49.606c.368 0 .685-.08.937-.247s.422-.407.537-.665a3.3 3.3 0 0 0 .178-.544c3.863 1.74 7.955 1.54 10.295.732 1.096 1.247 3.982.724 3.258-1.81 2.963-2.534 6.465-7.13 2.963-15.678a5 5 0 0 0-.88-.74q-.062-.063-.13-.125h-.002c-.674-.587-1.56-.92-2.586-1.044q-.384-.047-.793-.055m-.031.732q.374.01.72.05c.92.112 1.68.398 2.216.863.404.352.572.715.596 1.136s-.112.916-.407 1.463c-.59 1.091-1.797 2.349-3.265 3.559-2.937 2.42-6.922 4.68-9.034 5.52-2.462.98-3.108 2.701-3.389 4.043-.078.383-.14.73-.204 1.027v.003a5 5 0 0 1-.07.291q-.044.16-.097.282a1 1 0 0 1-.125.215.7.7 0 0 1-.15.14c-.112.076-.27.128-.537.128q-.173 0-.312-.024a1.04 1.04 0 0 1-.467-.192 1.5 1.5 0 0 1-.189-.167c-.244-.253-.452-.66-.659-1.176-.105-.268-.213-.566-.33-.881a28 28 0 0 0-.292-.756c-.034-.082-.065-.163-.102-.247A10.4 10.4 0 0 0 .91 15.905a1 1 0 0 1-.07-.12 1 1 0 0 1-.064-.184l-.011-.05a1.5 1.5 0 0 1-.032-.231 2 2 0 0 1 .002-.26l.004-.073a3 3 0 0 1 .044-.311v-.002q.022-.112.053-.232c.18-.695.586-1.556 1.207-2.488C3.287 10.09 5.388 7.94 8.187 6.101c2.443-1.604 5.13-2.743 7.474-3.216a11.2 11.2 0 0 1 2.452-.24m-2.007.923c-1.601.254-5.374 1.608-8.391 3.636-.679.456-.681.559-.291 1.118-.583 0-1.008-.102-1.653.469-3.576 3.162-4.71 6.603-2.183 6.603 1.167 0 3.236-.562 4.224-.932.17-.064.676-1.383.676-1.685 0-.906.906.85 1.171.725.954-.45 3.035-1.548 5.737-3.498 2.851-2.057 6.479-5.276 3.115-6.181-.295-.08-1.516.1-1.813.2 0-.202-.327-.444-.592-.455m-5.45 3.507c.235.337 1.2.44 1.776.507-.517.327-.764.617-1.05 1.525-1.06-.442-2.294-.22-3.18.304.714-.541 1.19-.732 1.521-1.829.41.087.608-.057.933-.507"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/frontendmentor.svg���������������������������0000664�0000000�0000000�00000001027�14753064456�0026667�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.17 1.272a.73.73 0 0 0-.718.732v13.914a.73.73 0 0 0 .732.732.73.73 0 0 0 .732-.732V2.004a.73.73 0 0 0-.745-.732M23.246 5.44a.7.7 0 0 0-.277.063l-6.282 2.804a.733.733 0 0 0 0 1.336l6.282 2.814a.7.7 0 0 0 .3.064.732.732 0 0 0 .297-1.4l-4.786-2.145 4.786-2.137a.734.734 0 0 0 .37-.966.73.73 0 0 0-.69-.433m-22.5 5.032a.732.732 0 0 0-.722.915c1.736 6.677 7.775 11.341 14.683 11.341a.732.732 0 0 0 0-1.464A13.706 13.706 0 0 1 1.44 11.02a.73.73 0 0 0-.694-.547"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/frontify.svg���������������������������������0000664�0000000�0000000�00000002320�14753064456�0025460�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.13 15.777-2.588-1.495a.75.75 0 0 1-.376-.649v-2.989a1.74 1.74 0 0 0-.872-1.508l-2.588-1.494a.76.76 0 0 1-.375-.651V4.002a1.75 1.75 0 0 0-.871-1.511L12 .496 8.54 2.491a1.75 1.75 0 0 0-.868 1.511v2.989a.76.76 0 0 1-.375.65L4.706 9.137a1.75 1.75 0 0 0-.87 1.508v2.99a.75.75 0 0 1-.375.648l-2.59 1.495A1.75 1.75 0 0 0 0 17.287v3.989l3.46 1.994a1.74 1.74 0 0 0 1.741 0l2.589-1.494a.75.75 0 0 1 .75 0l2.589 1.494a1.75 1.75 0 0 0 1.743 0l2.588-1.494a.75.75 0 0 1 .75 0l2.59 1.494a1.74 1.74 0 0 0 1.741 0L24 21.276v-3.99a1.75 1.75 0 0 0-.87-1.51ZM15.343 4.002v2.989a1.75 1.75 0 0 0 .872 1.508l2.588 1.495a.75.75 0 0 1 .376.65v2.99a1.75 1.75 0 0 0 .87 1.507l2.589 1.495a.75.75 0 0 1 .375.65v2.85l-10.517-6.07V1.928l2.468 1.425a.75.75 0 0 1 .38.65zM1.367 16.636l2.589-1.495a1.75 1.75 0 0 0 .871-1.508v-2.989a.75.75 0 0 1 .374-.65L7.79 8.499a1.75 1.75 0 0 0 .871-1.508V4.002a.75.75 0 0 1 .375-.649l2.471-1.425v12.138L.993 20.136v-2.85a.75.75 0 0 1 .374-.65m18.677 5.784a.75.75 0 0 1-.75 0l-2.588-1.494a1.74 1.74 0 0 0-1.742 0l-2.588 1.494a.75.75 0 0 1-.75 0l-2.589-1.494a1.74 1.74 0 0 0-1.743 0L4.706 22.42a.75.75 0 0 1-.75 0l-2.468-1.425L12 14.919l10.512 6.07Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fsecure.svg����������������������������������0000664�0000000�0000000�00000001617�14753064456�0025264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.928 2.946a35.92 35.92 0 0 0-22.228-.6A2.22 2.22 0 0 0 .08 5.094c.4 1.6.98 3.439 1.68 5.108.01.04.03.02.03-.02-.1-.78.5-1.77 1.679-2.13a27.55 27.55 0 0 1 17.381.23c.86.3 1.82-.17 2.099-1.059.7-2.248.98-3.778 1.05-4.157.01-.07-.05-.1-.07-.12zM6.658 7.893c-.86.18-2.05.46-2.94.76-1.778.61-1.698 2.778-.749 3.468.07-.4.5-.95.98-1.13 1.779-.7 3.688-1.119 5.617-1.289-.98-.4-1.94-.97-2.899-1.809m14.163 4.338a21.15 21.15 0 0 0-16.441-.65c-.85.32-1.38 1.35-.85 2.329a38 38 0 0 0 3.148 4.797c-.17-.58.13-1.659 1.27-2.009 3.148-.969 6.456-.56 8.655.33.62.25 1.5.1 1.99-.64a39 39 0 0 0 2.288-4.017c.03-.06 0-.11-.06-.14m-5.107 7.766a9.9 9.9 0 0 1-2.499-1.8c-.34-.34-.84-.829-1.37-1.409-1.199 0-2.368.12-3.617.52-1.16.36-1.27 1.7-.76 2.399.86 1.07 1.46 1.65 2.419 2.639a2.74 2.74 0 0 0 3.818.02 43 43 0 0 0 2.059-2.21c.05-.05.03-.14-.05-.16"/></svg>�����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fsharp.svg�����������������������������������0000664�0000000�0000000�00000000315�14753064456�0025105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 12 11.39.61v5.695L5.695 12l5.695 5.695v5.695zm7.322 0 4.068-4.068v8.136zM24 12 12.203.61v5.695L17.898 12l-5.695 5.695v5.695z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fubo.svg�������������������������������������0000664�0000000�0000000�00000001733�14753064456�0024562�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.898 16.705H9.114v-.29c-.265.196-.656.416-1.32.416-2.158 0-2.996-1.167-2.996-3.43V9.809h1.783v3.592c-.006.616 0 1.778 1.284 1.778 1.241 0 1.248-1.1 1.248-1.765V9.809h1.783v6.896zM4.101 7.207c-1.961-.216-2.407.233-2.763.7-.316.413-.357.988-.357 1.401v.501H0v1.652h.999v5.244h1.783v-5.244h1.346V9.809h-1.31v-.465c0-.474.38-.533.571-.521l.392.018zM24 13.257c0-1.984-1.594-3.592-3.561-3.592-.835 0-1.603.29-2.21.775.384.44.677.965.85 1.543a1.7 1.7 0 0 1 1.337-.666c.975 0 1.765.86 1.765 1.922s-.79 1.922-1.765 1.922c-.969 0-1.757-.851-1.765-1.904 0-.913-.332-1.747-.878-2.381a3.45 3.45 0 0 0-2.617-1.211c-.651 0-1.261.183-1.783.502V7.259l-1.783.35v9.097h1.783v-.288c.522.319 1.132.432 1.783.432a3.42 3.42 0 0 0 2.176-.781 4.2 4.2 0 0 1-.876-1.537c-.321.429-.8.702-1.336.702-.965 0-1.747-.884-1.747-1.975s.782-1.975 1.747-1.975 1.748.885 1.748 1.976c0 1.984 1.6 3.591 3.566 3.591C22.4 16.849 24 15.241 24 13.257"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fueler.svg�����������������������������������0000664�0000000�0000000�00000001604�14753064456�0025106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c1.204 0 2.086 1.932 3.172 2.283 1.126.364 2.978-.67 3.915.009.946.685.527 2.762 1.216 3.704.682.933 2.8 1.175 3.165 2.295.353 1.081-1.207 2.51-1.207 3.709 0 1.198 1.56 2.628 1.207 3.709-.365 1.12-2.483 1.362-3.165 2.295-.69.942-.27 3.02-1.217 3.704-.937.68-2.789-.355-3.914.01C14.086 22.067 13.204 24 12 24s-2.086-1.932-3.172-2.283c-1.126-.364-2.978.67-3.915-.009-.946-.685-.527-2.762-1.216-3.704-.682-.933-2.8-1.175-3.165-2.295-.353-1.081 1.207-2.51 1.207-3.709 0-1.198-1.56-2.628-1.207-3.709.365-1.12 2.483-1.362 3.166-2.295.688-.942.27-3.02 1.216-3.704.937-.68 2.789.355 3.914-.01C9.914 1.933 10.796 0 12 0m-.199 6.34-3.247 6.169c-.158.3.065.653.388.654h1.707c.234 0 .44.193.44.445v3.706c0 .459.603.618.825.218l3.39-6.11a.447.447 0 0 0-.384-.663l-1.85-.002c-.243 0-.44-.2-.44-.445V6.549c0-.464-.613-.619-.829-.21Z"/></svg>����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fugacloud.svg��������������������������������0000664�0000000�0000000�00000001157�14753064456�0025600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.088 13.977-1.102-.637v-2.534l1.101.639 3.174-1.83v2.527zm-14.176.01h-.006l-3.167-1.835V9.625l3.17 1.828 1.098-.637v2.535zm.06-3.548L1.739 8.57V5.946l.97-.556L11.995 0l1.954 1.137 5.957 3.47.201.131 1.03.592.166.095.96.569v2.56l-3.175 1.835-1.1-.636V8.434l-4.95-2.89-1.043-.628-.97.557-5.034 2.95v1.425l-1.018.588m0 4.42 1.018-.58v1.207l6.063 3.542.225-.142.048-.024 5.672-3.317-.012-.426v-.892l1.102.631 3.173-1.833v5.02l-.959.557-1.196.698-.201.119-5.957 3.482L11.994 24l-1.93-1.137-5.969-3.47-.201-.131-1.184-.687-.971-.57v-4.62l.012-.397z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fujifilm.svg���������������������������������0000664�0000000�0000000�00000002735�14753064456�0025437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.288 10v3.129c0 .204.096.313.3.313h1.034v.352c0 .04-.028.068-.068.068h-1.672c-.518 0-.6-.284-.6-.544v-3.1c0-.148.056-.216.232-.216h.774m-1.916 0v3.656c0 .164-.068.204-.204.204h-.788v-3.655c0-.125.04-.205.216-.205zM0 10.532c0-.3 0-.53.49-.53h2.12v.366c0 .028-.012.054-.054.054H1.28c-.162 0-.244.083-.244.26v.979h1.496v.393c0 .04-.028.054-.056.054h-1.44v1.55c0 .15-.082.204-.246.204H0zm4.148-.531v2.95c0 .26.04.434.216.53.232.136.64.136.884 0 .164-.096.232-.244.232-.53v-2.76c0-.122.04-.19.218-.19h.774v2.853c0 .667-.42.94-.788 1.035a3.6 3.6 0 0 1-1.7 0c-.558-.164-.816-.49-.816-1.035v-2.663c0-.122.04-.204.19-.204h.79M22.872 10c-.19 0-.314.094-.354.272l-.626 2.663h-.014L21.212 10h-.884c-.176 0-.23.08-.23.23v3.644h.38c.054 0 .08-.026.08-.094v-3.06h.056l.802 3.14h.53c.204 0 .272-.08.328-.272l.72-2.868h.054v3.14h.708c.176 0 .244-.069.244-.23V10zm-11.708 2.093h-.992v1.767h.788c.136 0 .204-.04.204-.205zm-.054-.747c.04-.028.054-.056.054-.11V10h-.776c-.176 0-.216.08-.216.204v1.875zm-3.4 2.216c.436-.055.572-.314.572-.695v-2.663c0-.164.08-.204.19-.204h.788v2.513c0 .612-.136.927-.49 1.198-.19.136-.516.3-1.25.3-.408 0-.6-.028-.626-.028-.04-.014-.054-.028-.054-.056v-.326c.204-.014.584 0 .87-.04M12.674 10c-.49 0-.49.244-.49.53v.992c0 .028-.014.028-.014.04l-.68.532h.694v1.766h.788c.164 0 .244-.054.244-.204v-1.562h1.442c.028 0 .054-.014.054-.056v-.394h-1.496v-.98c0-.176.082-.256.26-.256h1.278c.04 0 .054-.028.054-.056V10z"/></svg>�����������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fujitsu.svg����������������������������������0000664�0000000�0000000�00000001020�14753064456�0025305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.56 3c-2.41 0-4.52 1.24-5.88 2.97v3.79c1.82-5.05 5.88-4.68 5.88-4.68 2.94 0 5.28 2.3 5.28 5.12 0 2.84-2.34 5.13-5.28 5.13a5.32 5.32 0 0 1-3.72-1.5l-2.56-2.8a6.06 6.06 0 0 0-4.25-1.71C2.7 9.32 0 11.93 0 15.16 0 18.4 2.7 21 6.03 21c1.87 0 3.55-.81 4.65-2.11v-3.03c-1.8 3.43-4.65 3.06-4.65 3.06-2.13 0-3.86-1.68-3.86-3.76 0-2.06 1.73-3.74 3.86-3.74 1.06 0 2.02.42 2.72 1.08l2.56 2.81a7.5 7.5 0 0 0 5.25 2.12c4.11 0 7.44-3.24 7.44-7.23S20.67 3 16.56 3"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/furaffinity.svg������������������������������0000664�0000000�0000000�00000021773�14753064456�0026163�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.7 22.086c-.43-.11-1.068-.505-1.193-.74-.113-.21-.02-1.356.116-1.44.113-.07.113-.265 0-.444-.069-.109-.235-.081-.801.132-.89.335-1.195.336-1.839.01C1.348 19.282.7 18.557.273 17.69c-.45-.914-.388-1.097.518-1.538.392-.19.932-.485 1.2-.655l.485-.31-.049-.724-.05-.725.492-.525.492-.526-.185-.285-.438-.671c-.212-.323-.234-.424-.132-.615.158-.295.095-.347-.256-.213-.157.06-.33.108-.384.108-.133 0-.124-.387.016-.648.158-.296.036-.373-.221-.14-.157.141-.245.162-.331.076-.299-.299.627-2.522 1.193-2.867l.351-.214h-.447c-.247 0-.448-.04-.448-.09 0-.302 1.386-.99 2.37-1.175l.678-.128 1.169-1.878c.643-1.033 1.235-1.932 1.316-2 .313-.26.532-.028 1.471 1.548.524.879.982 1.628 1.018 1.664s.371-.164.743-.446c.83-.627 3.339-2.091 4.391-2.562.588-.262.817-.32.949-.237.142.09.206.518.355 2.364.1 1.24.18 2.61.177 3.045-.007 1.202.004 1.37.09 1.367.043 0 .265-.262.493-.58.702-.981.523-.945 2.491-.508l1.731.384 1.197 1.007c1.127.949 1.378 1.217 1.253 1.342-.03.029-.758.063-1.62.076-1.845.028-2.937.289-3.567.852-.328.294-.366.386-.377.907-.007.319-.009.612-.004.65.005.04.445-.114.977-.342.532-.227 1.042-.413 1.135-.413s.582.416 1.089.926l.921.925-.55 1.06-.552 1.06.5.57c.274.313.485.622.47.686-.044.179-1.023.99-1.195.99-.083 0-.151-.036-.152-.079 0-.043-.09-.228-.202-.41l-.201-.33-.718.199c-.956.265-1.105.253-1.456-.114-.358-.373-.478-.33-.478.173 0 .512-.368 1.125-.83 1.381-.409.227-2.396.944-3.438 1.24a8 8 0 0 0-1.13.43c-1.05.528-1.072.256-.089-1.108.608-.842.946-1.18 2.002-2.007.698-.547 1.29-1.068 1.316-1.16.025-.09.153-.944.284-1.896l.238-1.732-.52-.983c-.518-.978-.52-.984-.34-1.298.098-.173.16-.315.137-.315-.038 0-.784.414-.887.492-.023.018.085.132.24.255.323.253.724.99.904 1.659.137.507.04 2.034-.113 1.792-.057-.09-.09.025-.09.314-.003.465-.376 1.495-.542 1.495-.051 0-.093-.095-.093-.21 0-.117-.048-.212-.106-.212-.065 0-.081.16-.042.41l.066.41-.685-.015c-.502-.01-.738.032-.881.159-.287.253-2.584 1.447-3.396 1.766-1.069.419-1.14.494-1.498 1.602-.176.545-.389 1.096-.473 1.226-.34.521-1.547.87-2.326.67zm1.11-.594c.18-.204.327-.309.327-.231a.45.45 0 0 1-.125.265c-.068.069-.092.158-.051.198.1.1.344-.254.502-.734.153-.463.299-.61.226-.228-.027.143-.025.26.005.26.148 0 .537-.872.724-1.622.28-1.122.361-1.259 1.283-2.13.63-.596.816-.842.91-1.212.192-.748.233-.814.32-.516.044.145.055.382.025.527-.08.403.11.163.607-.763.543-1.011.668-1.105.617-.467l-.038.484.351-.338c.465-.447 1.386-1.672 1.387-1.845 0-.075-.13-.257-.289-.405-.276-.255-.231-.269.25-.075.139.056.156.023.091-.184-.424-1.372-.948-2.169-2.166-3.296-1-.925-1.51-1.273-2.411-1.645l-.727-.299-.658.386c-.614.36-3.89 3.406-3.89 3.617 0 .558 2.683-1.523 3.953-3.064.326-.397.607-.64.74-.64.392-.002 1.555.78 2.428 1.632 1.001.978 1.359 1.584 1.28 2.171-.06.442-.456 1.3-.691 1.495-.13.107-.146.075-.103-.215.027-.189.034-.343.014-.343s-.181.155-.36.343c-.285.303-.317.315-.271.105.063-.289.046-.29-.729-.022a26 26 0 0 1-1.628.47c-1.125.287-1.701.505-2.13.81-.346.246-.372.402-.065.402.124 0 .388.172.586.383l.362.383.165-.236c.155-.221.728-.53.983-.53.063 0-.006.158-.153.35-.24.315-.267.443-.258 1.239.009.824-.03.993-.543 2.363-.303.811-.665 1.628-.804 1.815-.339.455-1.1.887-1.678.952-.444.05-.462.064-.303.24.284.314.759.464 1.05.331.209-.095.243-.088.194.038-.117.306.364.154.69-.219zm-1.664-.97a4 4 0 0 0-.251-.386c-.144-.192-.154-.188-.225.095-.08.317.047.47.39.473.147.001.166-.038.086-.183zm1.443-.68q.291-.291-.127-.482c-.326-.15-.387-.078-.255.3.118.338.191.372.382.182m-3.1-.35c.21-.087.381-.178.381-.201 0-.175-1.24-.886-2.034-1.165a38 38 0 0 1-1.158-.421c-.306-.131.179.609.8 1.22.714.703 1.294.867 2.01.567zm-1.279-.127c-.158-.056-.177-.345-.023-.345.11 0 .269.295.195.359-.022.018-.1.012-.172-.014m-.734-.688c-.2-.26-.242-.381-.149-.439.128-.08.664.352.588.474-.085.138-.32.12-.44-.035zm3.975.296c.813-.147.928-.198 1.245-.557.563-.638.986-1.455.948-1.834-.052-.525-.448-.75-1.425-.805-.451-.026-1.02.006-1.262.072-.582.157-1.206.863-1.45 1.64l-.184.583.276.47c.296.506.547.706.798.637.087-.024.561-.116 1.054-.206m.1-.96c-.11-.134-.106-.192.03-.328.21-.21.397-.099.397.234 0 .293-.22.342-.426.094zm-.953-.638c-.27-.326.26-.736.594-.459.224.186.19.288-.152.465-.273.141-.32.14-.442-.006m1.226-.526c-.161-.161-.162-.193-.013-.343.183-.182.338-.09.395.237.047.268-.162.326-.382.106m4.412 1.437c.425-.182.99-.798.855-.932-.1-.1-1.189.63-1.3.873-.145.319-.157.317.445.06zm-8.732-.641c-.46-.23-.879-.458-.929-.508s.19-.122.546-.163c.7-.079 1.748-.36 1.662-.447-.03-.03-.426.017-.88.105-1.457.28-1.653.294-1.5.109.074-.089.363-.277.642-.418.544-.276.68-.42.236-.251-.602.229-1.204.657-1.204.857 0 .136.77.61 1.44.885.932.383.926.298-.013-.169m10.603-.325c.972-.547.98-.556.391-.48-.636.084-1.04.274-1.04.49a.5.5 0 0 1-.127.299c-.218.218-.023.14.776-.309m8.076-1.603c.037-.565-.019-.588-.69-.283-.496.225-.491.213-.34.761l.11.39.444-.189c.422-.179.446-.212.476-.679m-5.436-.145c.046-.392-.033-.972-.179-1.32-.045-.107-.031-.185.032-.185.117 0 .546 1.053.546 1.342 0 .14.026.149.13.044.247-.246.077-1.808-.293-2.703-.169-.407.257.05.481.515l.208.433-.035-.527c-.062-.934-.38-1.46-1.203-1.993-1.042-.673-1.089-.759-.417-.753.563.004 1.724-.433 1.985-.747.099-.12.085-.133-.077-.071-.12.046-.042-.085.196-.33.518-.533.535-.822.026-.433-.445.338-.466.277-.08-.229.267-.349.293-.47.327-1.494.036-1.091.033-1.11-.165-.932-.123.111-.24.145-.3.086-.23-.227-.43.18-.615 1.258-.105.609-.253 1.258-.33 1.442-.143.347-.665.751-1.323 1.025l-.38.157-.58-.933-.582-.932.32-.064c.297-.06.306-.075.128-.205-.18-.131-.171-.146.113-.209.309-.068.85-.456.761-.545-.026-.026-.2-.005-.384.048-.39.112-.44-.006-.098-.234.13-.087.397-.453.593-.813.327-.603.338-.65.132-.585-.178.056-.246.014-.33-.206a1.8 1.8 0 0 1-.105-.53c0-.182-.045-.237-.157-.194-.222.085-.298-.192-.175-.637.057-.208.082-.378.055-.378-.118 0-1.311.811-1.962 1.334-.79.634-.854.828-.55 1.67.083.231.152.428.153.438 0 .01-.07.006-.158-.007s-.337-.196-.553-.407c-.573-.557-1.494-.93-2.448-.992-.83-.053-.883.098-.083.233.863.146.47.26-.896.26-1.059 0-1.615.052-2.222.207-.99.253-1.374.438-.732.353.554-.074 1.637.055 1.556.185-.033.054-.2.098-.373.098-.573 0-1.49.4-1.95.853-.402.394-1.07 1.528-.963 1.634.025.025.254-.07.509-.213.66-.366 1.57-.708 1.57-.59 0 .055-.102.154-.226.22-.53.285-1.46 1.31-1.46 1.611 0 .027.25-.018.553-.099.305-.08.673-.147.82-.148.248-.001.264.029.232.447l-.034.447.237-.316c.395-.528 2.1-2.244 2.853-2.872.39-.325.697-.604.682-.619s-.204.013-.42.061c-.609.138-.461-.06.214-.285l.606-.202-.395-.075c-.676-.127-.433-.245.304-.146 1.468.197 2.966 1.002 4.336 2.33 1.051 1.02 1.635 1.917 2.014 3.097l.311.972-.5.766c-.659 1.007-.906 1.438-.848 1.48.051.037 1.375.473 1.485.489.037.005.088-.167.113-.382m-9.664-.727 1.053-1.013-.422.068-.421.068.263-.211c.312-.251.258-.269-.224-.072-.195.08-.474.182-.619.225-.262.08-.262.079-.063-.145.438-.49.006-.183-.76.54-.446.42-1 .92-1.232 1.108-.366.298-.387.336-.158.289.145-.03.5-.012.79.039.29.05.575.098.634.105.058.007.58-.444 1.159-1zm-1.747-.388c.327-.297.423-.452.375-.606-.068-.212-.262-.287-.262-.1a.106.106 0 0 1-.106.105c-.058 0-.105-.118-.105-.263q-.002-.51-.414.014c-.276.351-.28.5-.008.355.249-.134.273-.017.056.27-.167.221-.22.718-.068.66.05-.019.29-.215.532-.435m15.769-.113c.443-.196.754-.388.69-.427-.135-.084-1.518.504-1.573.669-.055.163-.008.15.883-.242m-15.231-1.64c-.06-.112-.11-.35-.11-.527 0-.344-.173-.437-.283-.151-.07.183.254.882.41.882.05 0 .043-.092-.017-.204m.38-.272c.063-.164-.127-.473-.291-.473-.108 0-.126.459-.023.562.117.117.25.08.314-.089m4.212-.492.347-.262c.023-.018-.078-.126-.225-.242-.319-.25-.641-.998-.552-1.28.087-.272-.09-.25-.445.056-.252.216-.295.33-.289.768.009.626.309 1.19.634 1.19.124 0 .363-.104.53-.23m-4.962-1.33c-.078-.078-.396.107-.447.26-.02.058.072.155.204.214.211.095.244.077.275-.15.018-.142.004-.288-.032-.324m5.232.016c.106-.096.192-.231.192-.3 0-.208-.378-.484-.564-.413-.203.078-.234.574-.047.76.163.164.189.161.419-.047m5.653-1.38c.377-.361.427-.476.583-1.344.094-.521.244-1.517.334-2.213a87 87 0 0 1 .262-1.89c.055-.345.082-.644.06-.666-.021-.021-.261.616-.533 1.417-.272.8-.52 1.527-.552 1.614-.033.089.062.047.22-.098.152-.14.277-.216.277-.167 0 .271-.39 1.314-.599 1.601-.28.385-.317.542-.083.347.433-.36.226.322-.27.887-.304.345-.318.554-.017.254.238-.239.14.15-.103.41-.378.402-.023.274.421-.152m-4.133-2.467c-.191-.273-.227-.183-.055.138.063.117.139.188.17.158.03-.03-.022-.163-.115-.296m-.64-1.149c.16-.31.156-.343-.125-.817-.208-.352-.303-.44-.33-.31-.047.23-.22.235-.532.016-.24-.167-.24-.166-.172.2.038.201.025.394-.028.427s-.339-.103-.634-.302l-.537-.362-.069.314c-.038.173-.11.314-.16.314-.137 0-.419-.442-.419-.656 0-.331-.148-.201-.599.525l-.44.71.322.034c.177.02.373-.016.435-.079.187-.186 1.744-.127 2.337.089.729.265.763.261.952-.103zm1.1 14.733-.47-.237v-1.264l.79-.394c.435-.216.824-.394.865-.395.106-.002.61.881.61 1.07 0 .159-1.114 1.457-1.25 1.457-.042 0-.287-.106-.545-.237m-1.154-.657c-.196-.202-.335-.386-.31-.41s.223-.117.44-.207l.395-.164v.574c0 .316-.038.574-.084.574s-.245-.165-.44-.367zm2.876-1.33c-.278-.42-.282-.448-.097-.558.107-.063.51-.316.894-.561.691-.441.962-.54.962-.354 0 .116-1.2 1.748-1.356 1.845-.061.038-.243-.13-.403-.373z"/></svg>�����mkdocs-material-9.6.4/material/templates/.icons/simple/furrynetwork.svg�����������������������������0000664�0000000�0000000�00000005414�14753064456�0026410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.91 0C12.79 0 9.69 0 6.6.03c0 .05-.06.05-.09.08a10.5 10.5 0 0 0-3.66 2.57c-.84.87-1.52 1.9-2.06 3-.2.38-.38.79-.55 1.2-.02.08-.05.2-.13.25v6.22c.05.08.05.2.08.3a8.66 8.66 0 0 0 3.42 4.83c.03.03.05.09.11.06-.03-.03-.03-.06-.06-.08-.24-.36-.46-.69-.67-1.04a9.1 9.1 0 0 1-1.28-5.57 10.1 10.1 0 0 1 1.71-4.53 23 23 0 0 1 3.64-4.18A13 13 0 0 1 10.32.98 8.8 8.8 0 0 1 14.74.2c.7.06 1.39.17 2.07.27L17 .5c.08.03.13.03.21.03-.38-.16-.76-.33-1.14-.44-.05-.02-.1-.02-.16-.08zm-1.66.66c-.43.02-.84.05-1.27.13-.74.14-1.44.36-2.15.58a7.5 7.5 0 0 0-1.44.62c-.02 0-.08 0-.08.06h.05a28 28 0 0 1 3.05-.33c.51-.03 1.06 0 1.57.08.76.11 1.47.39 2.12.77a10.8 10.8 0 0 1 4.4 4.7 15.1 15.1 0 0 1 1.38 5.43c.06.65.06 1.34.03 2.02l-.08 1.14c-.03.33-.08.66-.14.99a6 6 0 0 1-.27 1.17 11.7 11.7 0 0 1-1.55 2.73c-.49.66-1.05 1.26-1.6 1.86-.08.08-.13.13-.19.22.06 0 .06-.03.08-.03a17 17 0 0 0 2.31-1.61 10.9 10.9 0 0 0 3.2-4.45l.17-.41h.03v5.87c0 .02 0-9.17.02-15 0 .02 0 .05-.02.07l-.03-.09a10.8 10.8 0 0 0-1.52-2.73 9.7 9.7 0 0 0-3.12-2.64A9.76 9.76 0 0 0 14.25.66m9.63 6.54.01-.02zm-13-3.33c-.4-.04-.8.09-1.19.42a2.3 2.3 0 0 0-.62.9c-.33.8-.38 1.58-.22 2.4.11.63.4 1.18.92 1.58.52.44 1.12.5 1.66.2.33-.2.57-.44.76-.77.33-.57.46-1.2.46-1.85 0-.3-.02-.58-.08-.88a2.8 2.8 0 0 0-.62-1.4 1.7 1.7 0 0 0-1.08-.6zM16 5.15a2.38 2.38 0 0 0-1.72.83c-.3.27-.46.63-.65.98a3.04 3.04 0 0 0-.38 1.53c0 .38.05.74.21 1.1.28.65.8 1 1.44 1 .47 0 .85-.16 1.2-.43a3.75 3.75 0 0 0 1.5-2.57c.05-.46 0-.93-.17-1.4-.16-.4-.4-.75-.82-.92a1.6 1.6 0 0 0-.6-.12zM6.38 7.56c-.44.03-.84.2-1.11.6-.36.5-.47 1.07-.5 1.64-.02.6.12 1.15.39 1.67.22.43.51.82.92 1.1.52.34 1.17.34 1.63.02.27-.2.46-.47.6-.77.27-.63.32-1.3.16-1.99a3.3 3.3 0 0 0-1.06-1.86c-.3-.24-.62-.4-1.03-.4zm11.86 2.64a1.84 1.84 0 0 0-.9.2 3.5 3.5 0 0 0-1.81 1.97 2.44 2.44 0 0 0-.11 1.58c.14.5.4.85.9.99.19.05.4.08.6.08.32 0 .54-.03.8-.17.53-.24.93-.6 1.28-1.03a2.9 2.9 0 0 0 .63-2.46 1.3 1.3 0 0 0-1.09-1.12 2 2 0 0 0-.3-.04m-7.11 1.65c-.08 0-.22 0-.35.03a3.6 3.6 0 0 0-1.5.4c-.6.34-1.1.77-1.57 1.26a10 10 0 0 0-1.39 1.83c-.21.38-.35.8-.32 1.23.03.25.03.47.14.68.3.39.7.66 1.19.77.46.08.92.03 1.38-.03.52-.05 1-.1 1.5-.08.78.05 1.5.3 2.12.79.24.2.46.41.73.6.51.36 1.06.52 1.68.38.52-.1.87-.43.98-.95.1-.44.08-.85.02-1.29a9.5 9.5 0 0 0-.37-1.5 10 10 0 0 0-1-2.26c-.3-.5-.66-.93-1.15-1.26a3.7 3.7 0 0 0-2.09-.6M.11 14.64v2.13c.1.13.16.3.22.46a12.8 12.8 0 0 0 2.41 4.18 9.6 9.6 0 0 0 3.83 2.56c.03 0 .05.03.08.03h8.01c.03-.03.03-.03.05-.03a8.7 8.7 0 0 0 1.99-.9 11.4 11.4 0 0 0 4.26-4.8c.43-1.01.65-2.08.7-3.2a.4.4 0 0 0 0-.24c-.02.02-.05.05-.05.08l-.22.7a8.3 8.3 0 0 1-1.87 3.2 8.1 8.1 0 0 1-2.85 1.91c-.95.39-1.95.55-2.99.6-.76.03-1.49 0-2.22-.05a24 24 0 0 1-3.1-.44 15.5 15.5 0 0 1-3.75-1.36 10.15 10.15 0 0 1-3.3-2.76 7.5 7.5 0 0 1-1.2-2.07"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fusionauth.svg�������������������������������0000664�0000000�0000000�00000002423�14753064456�0026011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a1.667 1.667 0 0 0-1.666 1.666A1.667 1.667 0 0 0 12 3.334a1.667 1.667 0 0 0 1.666-1.668A1.667 1.667 0 0 0 12 0M9.506 1.145A11.57 11.57 0 0 0 .442 12.317a.716.716 0 0 0 1.075.618.7.7 0 0 0 .358-.6 10.14 10.14 0 0 1 5.06-8.666 10 10 0 0 1 2.696-1.074 2.55 2.55 0 0 1-.125-1.452Zm8.015 1.26a.71.71 0 0 0-.695.713.7.7 0 0 0 .34.61 10.13 10.13 0 0 1 4.545 11.587c.314.046.618.15.894.309q.223.127.42.293a11.57 11.57 0 0 0-5.15-13.43.7.7 0 0 0-.354-.082m-5.519 3.791a6.247 6.247 0 1 0 .002 12.494 6.247 6.247 0 0 0-.002-12.494m0 1.43a4.819 4.819 0 0 1 3.41 8.222 4.817 4.817 0 1 1-3.41-8.222m-.01 2.295c-1.412.014-1.896 1.887-.668 2.584l-.435 2.207a.237.237 0 0 0 .234.281h1.772a.236.236 0 0 0 .234-.281l-.438-2.207a1.38 1.38 0 0 0 .692-1.202 1.38 1.38 0 0 0-1.39-1.382zm-9.324 6.242a1.667 1.667 0 0 0-1.666 1.666 1.667 1.667 0 0 0 1.666 1.668 1.667 1.667 0 0 0 1.666-1.668 1.667 1.667 0 0 0-1.666-1.666m18.664 0a1.667 1.667 0 0 0-1.666 1.666 1.667 1.667 0 0 0 1.666 1.668 1.667 1.667 0 0 0 1.666-1.668 1.667 1.667 0 0 0-1.666-1.666M4.655 19.427a2.5 2.5 0 0 1-.702.608 2.6 2.6 0 0 1-.468.207 11.576 11.576 0 0 0 14.208 2.273.713.713 0 0 0 0-1.238.7.7 0 0 0-.703-.012 10.13 10.13 0 0 1-10.052-.05 10.2 10.2 0 0 1-2.283-1.788"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/futurelearn.svg������������������������������0000664�0000000�0000000�00000000237�14753064456�0026161�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.081.61v7.566h-7.223v6.661H7.566v6.634H0v1.92h9.471v-6.649h7.306v-6.66H24V.61Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/fyle.svg�������������������������������������0000664�0000000�0000000�00000001077�14753064456�0024567�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.024 0H1.241C.56 0 0 .56 0 1.243v21.514C0 23.44.56 24 1.241 24h21.518A1.24 1.24 0 0 0 24 22.757V1.243C24 .56 23.44 0 22.759 0H11.675v15.592c-.04.775-.29 1.397-.761 1.865-.92.927-2.521 1.049-3.921 1.049-1.891 0-4.432-.244-4.862-2.273l-.06-.508c-.02-.101-.02-.387-.02-1.131V3.965c0-.488.16-.907.51-1.254A1.7 1.7 0 0 1 3.812 2.2l4.611.02.161.041v1.562H3.962c-.12 0-.18.061-.18.142v3.484h3.491v1.599H3.782v6.566c.04 1.15 1.74 1.375 3.181 1.375.64-.021 1.991-.021 2.601-.632.16-.165.32-.471.46-.928z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/g2.svg���������������������������������������0000664�0000000�0000000�00000001263�14753064456�0024135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a12 12 0 1 0 0 24 12 12 0 0 0 0-24m.122 5.143c.45 0 .9.044 1.342.132l-1.342 2.806C9.962 8.08 8.203 9.84 8.203 12s1.76 3.92 3.92 3.92c.937 0 1.844-.338 2.553-.951l1.483 2.572A6.856 6.856 0 0 1 5.266 12a6.856 6.856 0 0 1 6.856-6.856Zm3.498.49h.026q.639 0 1.101.34.465.345.466.946c0 .639-.36 1.03-1.035 1.376l-.377.191c-.403.204-.602.385-.657.706h2.05v.85h-3.101v-.144q-.001-.788.314-1.306.315-.517 1.102-.917l.242-.117c.427-.216.538-.401.538-.625 0-.266-.228-.458-.6-.458-.44 0-.773.228-1.004.694l-.592-.595q.196-.417.619-.675a1.7 1.7 0 0 1 .908-.266m-2.094 5.388h3.394l1.697 2.937-1.697 2.94-1.697-2.94H11.83z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/g2a.svg��������������������������������������0000664�0000000�0000000�00000001174�14753064456�0024277�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m24 15.419-3.157-6.015a1.7 1.7 0 0 0-.467-.566 1.3 1.3 0 0 0-.793-.257 1.24 1.24 0 0 0-.772.257 1.7 1.7 0 0 0-.467.566 1739 1739 0 0 1-3.178 6.015h1.739l2.678-5.133 1.258 2.412h-1.937l.683 1.306h1.935l.739 1.415zm-20.513-1.46a1.94 1.94 0 1 1 0-3.879l3.934-.003V8.621H3.395a3.399 3.399 0 0 0 0 6.798H7.42v-4.128H3.053v1.457h2.845v1.214zm7.23-1.211h3.065a2.063 2.063 0 0 0 0-4.127h-3.646c-.804 0-1.456.652-1.457 1.456h4.997a.616.616 0 0 1 .62.591.606.606 0 0 1-.59.623h-3.2c-1.073 0-1.942.87-1.942 1.943v2.185h5.453l.772-1.457h-4.701v-.584a.63.63 0 0 1 .63-.63"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/g2g.svg��������������������������������������0000664�0000000�0000000�00000000263�14753064456�0024303�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v4.357h19.643v6.43H24V0zm0 6.44V24h24V12.805H6.648v4.36h12.995v2.478H4.357v-8.846h12.995V6.439H0z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/galaxus.svg����������������������������������0000664�0000000�0000000�00000002671�14753064456�0025275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6.181c3.604 0 6.53 3.111 6.53 6.943s-2.926 6.942-6.53 6.942-6.53-3.111-6.53-6.942S8.396 6.181 12 6.181m2.506-3.088c-.101.258-.209.531-.209.733 0 .245.072.458.144.673.043.127.086.254.114.389.024.11-.014.174-.078.283-.04.069-.092.157-.145.288a1 1 0 0 0-.078-.019 7.36 7.36 0 0 0-4.515.002l-.023.005-.05.013a2 2 0 0 0-.146-.289c-.062-.107-.099-.169-.076-.277q.046-.195.114-.384c.072-.216.145-.431.145-.676 0-.205-.108-.478-.21-.736-.091-.232-.178-.451-.178-.599 0-.192.384-.462.783-.744.253-.179.513-.362.685-.532.158-.156.315-.357.465-.55.271-.348.524-.673.739-.673h.039c.213.012.463.331.729.672.15.191.305.39.462.545.171.169.43.351.682.53.4.282.785.554.785.745 0 .148-.087.368-.178.601M5.054 9.69a3.45 3.45 0 0 0-1.467-.273c-1.659.036-1.694-3.348-1.384-3.553.257-.169 3.032-.061 4.656 1.293A8.1 8.1 0 0 0 5.054 9.69m1.361 10.137c-.163 1.58-3.578 1.29-3.748.971-.16-.3.184-3.356 2.311-4.417a8.1 8.1 0 0 0 1.661 2.494c-.107.246-.183.557-.224.952m12.607-3.445c2.135 1.068 2.542 4.185 2.382 4.486-.17.318-3.658.538-3.82-1.04a3.2 3.2 0 0 0-.224-.952 8.1 8.1 0 0 0 1.662-2.494m-6.96 4.78q.548 0 1.091-.082c-.117 1.287.312 2.387 1.562 2.599a.3.3 0 0 0 .091-.002.3.3 0 0 1 .082-.004c-.53.251-1.112.397-1.728.293-1.43-.243-2.425-1.496-2.421-2.926q.645.12 1.323.122m5.08-14.006c1.623-1.353 4.398-1.461 4.654-1.292.311.205.276 3.59-1.383 3.553a3.46 3.46 0 0 0-1.468.273 8.1 8.1 0 0 0-1.803-2.534"/></svg>�����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gamebanana.svg�������������������������������0000664�0000000�0000000�00000000722�14753064456�0025676�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.249 0v3h1.5V1.5h1.505V3h-1.505v4.5h1.5v-3h3.002V3h-1.505V0Zm6.002 4.498v1.5h1.5V4.501Zm1.5 1.5v10.503h1.5V5.998Zm0 10.503h-1.5V19.5h1.5zm-1.5 2.998h-1.505v1.5h1.5zm-1.5 1.5h-3.002v1.5h3.001zm-3.002 1.5H6.75V24h9zm-8.999 0V21h-3v1.5zm-3-1.5v-1.497H2.248v1.5zm-1.501-1.497v-2.997H9.75v-1.5H.748v4.497zm7.502-4.497h2.997v-1.5H9.751Zm2.997-1.5h1.5v-1.501h-1.5zm1.5-1.501h1.501V7.506h-1.5z"/></svg>����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gamedeveloper.svg����������������������������0000664�0000000�0000000�00000001731�14753064456�0026444�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.955 11.956a.84.84 0 0 0-.837-.796H17.37V1.9q0-.028-.002-.055a.84.84 0 0 0-.494-.806A11.9 11.9 0 0 0 12 0a11.9 11.9 0 0 0-8.454 3.515A11.98 11.98 0 0 0 .043 12c0 1.62.316 3.192.94 4.672a11.9 11.9 0 0 0 2.563 3.813 12 12 0 0 0 3.799 2.572C8.82 23.683 10.386 24 12 24s3.18-.317 4.655-.943a11.9 11.9 0 0 0 3.799-2.572A11.98 11.98 0 0 0 23.957 12q0-.022-.002-.044m-4.685 7.343a10.24 10.24 0 0 1-7.272 3.022 10.23 10.23 0 0 1-7.273-3.022A10.3 10.3 0 0 1 1.714 12a10.31 10.31 0 0 1 6.281-9.511 10.2 10.2 0 0 1 4.003-.809 10.2 10.2 0 0 1 3.694.688v8.792h-3.765a.84.84 0 0 0 0 1.68h3.729a3.78 3.78 0 0 1-1.205 2.012 3.75 3.75 0 0 1-2.458.92A3.77 3.77 0 0 1 8.235 12a3.77 3.77 0 0 1 3.758-3.772.84.84 0 0 0 0-1.68 5.39 5.39 0 0 0-3.841 1.597A5.43 5.43 0 0 0 6.559 12c0 1.457.564 2.825 1.591 3.855a5.38 5.38 0 0 0 3.841 1.597 5.43 5.43 0 0 0 3.555-1.329 5.46 5.46 0 0 0 1.813-3.281h4.89a10.3 10.3 0 0 1-2.979 6.457"/></svg>���������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gamejolt.svg���������������������������������0000664�0000000�0000000�00000001210�14753064456�0025417�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.353 0v2.824H4.94v2.823H3.53v2.824H2.118v2.823H.706v2.824h8.47v2.823H7.765v2.824H6.353v2.823h1.412v-1.412h1.411v-1.411h1.412v-1.412H12V16.94h1.412v-1.41h1.412v-1.411h1.411v-1.412h1.412v-1.412h1.412V9.882h1.412V8.471h1.411V7.059h-4.235V5.647h1.412V4.235h1.412V2.824h1.411V1.412h1.412V0zm0 22.588H4.94V24h1.412zM7.765 2.824h9.882v1.411h-1.412v1.412h-1.411V7.06h-1.412v1.41H12v1.411h1.412v1.412H12V9.882h-1.412v1.412H9.176V9.882H7.765v1.412H6.353V9.882H4.94V8.471h1.412V5.647h1.412zM6.353 8.47v1.411h1.412v-1.41zm2.823 1.411h1.412v-1.41H9.176zm5.648 0h1.411v1.412h-1.411Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gameloft.svg���������������������������������0000664�0000000�0000000�00000001675�14753064456�0025432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.841 18.938c.494.86 1.247 1.262 2.192 1.368 3.394.387 13.519.176 13.534.176 2.402 0 4.33-1.1 4.852-3.372.133-.579.238-2.54.117-4.619-.126-2.16-1.11-3.587-4.048-3.787-3.901-.264-9.42-.14-11.651.09-1.193.124-1.887.939-1.872 2.05.036 2.647.065 3.054.093 3.197 1.185.17 1.17.18 1.206.116.21-.385.596-.642 1.032-.688.503-.066.124-.046 10.598-.205.41 0 .653.185.729.588.086.522.102 1.054.047 1.58-.034.45-.404 1.166-1.08 1.175-.015 0-7.503.035-11.076-.13-1.08-.05-2.263-1.114-2.263-3.094 0-.841 0-3.548.07-4.39A2.235 2.235 0 0 1 5.174 6.96c1.333-.242 13.753-.095 14.542.085 2.241.513 2.43 3.198 2.437 3.255.21 1.543.23 3.283.211 4.855-.046 3.548-1.371 4.327-1.814 4.84-.133.154.039.225.3.415 1.115-.209 2.708-1.427 3.02-4.011.12-.999.213-3.283.02-7.382-.125-2.661-1.243-4.954-4.952-5.376-3.217-.366-10.3-.074-13.482 0C-.097 3.767.008 6.937.006 8.229c-.021 8.174-.014 9.233.836 10.709Z"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gamemaker.svg��������������������������������0000664�0000000�0000000�00000000273�14753064456�0025556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.012 11.994 12.006 0l11.982 12.006h-6.831l-5.163-5.151-5.151 5.151 5.163 5.151v-5.151h5.151v6.903L12.006 24z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gamescience.svg������������������������������0000664�0000000�0000000�00000001150�14753064456�0026063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.847 19.089c-.555-.137-.853-.305-1.213-.685-.613-.645-.76-1.273-.534-2.287.394-1.77 1.645-3.34 3.321-4.166 1.03-.508 1.64-.657 2.693-.656.759 0 .928.027 1.325.212l.456.213 4.263-2.841c2.344-1.563 4.276-2.828 4.294-2.81s-.177.987-.431 2.155c-.254 1.169-.462 2.176-.462 2.24 0 .063 1.865-1.167 4.144-2.734 4.153-2.856 4.42-3.037 4.265-2.883-.268.266-10.33 8.653-10.353 8.63-.015-.017.174-1.036.419-2.267s.436-2.28.426-2.334c-.011-.053-1.231.964-2.712 2.26l-2.693 2.356-.053.765c-.17 2.428-2.022 4.156-5.168 4.823-.69.146-1.42.15-1.987.009"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/garmin.svg�����������������������������������0000664�0000000�0000000�00000006022�14753064456�0025100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.265 12.024a.29.29 0 0 0-.236-.146h-.182a.29.29 0 0 0-.234.146l-1.449 3.025c-.041.079.004.138.094.138h.335c.132 0 .193-.061.228-.134.037-.073.116-.234.13-.266.02-.045.083-.071.175-.071h1.559c.089 0 .148.016.175.071.018.035.098.179.136.256a.24.24 0 0 0 .234.142h.486c.089 0 .13-.069.098-.132-.034-.061-1.549-3.029-1.549-3.029m-.914 2.224c-.089 0-.132-.067-.094-.148l.571-1.222c.039-.081.1-.081.136 0l.555 1.222c.037.081-.006.148-.096.148zm12.105-2.201v3.001c0 .083.073.138.163.138h.396c.089 0 .163-.057.163-.146v-2.998c0-.089-.059-.163-.148-.163h-.411c-.09-.001-.163.054-.163.168m-6.631 1.88c-.051-.073-.022-.154.063-.181 0 0 .342-.102.506-.25q.247-.22.246-.636a1 1 0 0 0-.096-.457.8.8 0 0 0-.27-.303 1.3 1.3 0 0 0-.423-.171c-.165-.035-.386-.047-.386-.047a9 9 0 0 0-.325-.008H8.495a.164.164 0 0 0-.163.163v2.998c0 .089.073.146.163.146h.388c.089 0 .163-.057.163-.146v-1.193s.002 0 .002-.002l.738-.002c.089 0 .205.061.258.134l.766 1.077c.071.096.138.132.228.132h.508c.089 0 .104-.085.073-.128-.032-.038-.794-1.126-.794-1.126m-.311-.61a2 2 0 0 1-.213.028 9 9 0 0 1-.325.006h-.763a.164.164 0 0 1-.163-.163v-.608c0-.089.073-.163.163-.163h.762c.089 0 .236.004.325.006 0 0 .114.004.213.028a.6.6 0 0 1 .24.098.36.36 0 0 1 .126.148.47.47 0 0 1 0 .374.35.35 0 0 1-.126.148.6.6 0 0 1-.239.098m11.803-1.439c-.089 0-.163.059-.163.146v1.919c0 .089-.051.11-.114.047l-1.921-1.992a.38.38 0 0 0-.276-.118h-.362c-.114 0-.163.061-.163.122v3.068c0 .061.059.12.148.12h.362c.089 0 .152-.049.152-.132l.002-2.021c0-.089.051-.11.114-.045l2.004 2.082a.36.36 0 0 0 .279.116h.272a.164.164 0 0 0 .163-.163v-2.986a.164.164 0 0 0-.163-.163zm-7.835 1.87c-.043.079-.116.077-.159 0l-.939-1.724a.26.26 0 0 0-.236-.146h-.51a.164.164 0 0 0-.163.163v2.996c0 .089.059.15.163.15h.317c.089 0 .154-.057.154-.142 0-.041.002-2.179.004-2.179.004 0 1.173 2.177 1.173 2.177a.105.105 0 0 0 .189 0s1.179-2.173 1.181-2.173c.004 0 .002 2.11.002 2.173 0 .087.069.142.159.142h.364c.089 0 .163-.045.163-.163V12.04a.164.164 0 0 0-.163-.163h-.488a.27.27 0 0 0-.244.142zM0 13.529c0 1.616 1.653 1.697 1.984 1.697 1.098 0 1.561-.297 1.58-.309a.29.29 0 0 0 .152-.264v-1.116a.186.186 0 0 0-.187-.187H2.151c-.104 0-.171.083-.171.187v.116c0 .104.067.187.171.187h.797a.14.14 0 0 1 .14.14v.52c-.157.065-.874.274-1.451.136-.836-.199-.901-.89-.901-1.096 0-.173.053-1.043 1.079-1.13.831-.071 1.378.264 1.384.268.098.051.199.014.254-.089l.104-.209c.043-.085.028-.175-.077-.246-.006-.004-.59-.319-1.494-.319C.055 11.813 0 13.354 0 13.529m22.134-2.478h-2.165c-.079 0-.148-.039-.187-.108s-.039-.146 0-.215l1.084-1.874a.21.21 0 0 1 .187-.108.21.21 0 0 1 .187.108l1.084 1.874a.2.2 0 0 1 0 .215.22.22 0 0 1-.19.108m1.488 3.447c.207 0 .378.169.378.378a.38.38 0 0 1-.378.378.38.38 0 0 1-.378-.378.38.38 0 0 1 .378-.378m.002.7c.173 0 .305-.14.305-.321s-.13-.321-.305-.321-.307.14-.307.321c0 .18.13.321.307.321m-.146-.543h.169q.152 0 .152.124c0 .071-.045.122-.114.122l.126.195h-.077l-.124-.195h-.061v.195h-.073v-.441zm.073.189h.085c.055 0 .091-.012.091-.069 0-.051-.045-.065-.091-.065h-.085z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gatling.svg����������������������������������0000664�0000000�0000000�00000002276�14753064456�0025257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.136 17.306a5.4 5.4 0 0 0 1.683-1.56h.774a.713.713 0 0 0 .712-.712.713.713 0 0 0-.712-.713h-.062c.148-.454.246-.92.27-1.412h.762a.713.713 0 0 0 .712-.712.713.713 0 0 0-.712-.713h-.786a5.4 5.4 0 0 0-.344-1.412h.147a.713.713 0 0 0 .713-.713.713.713 0 0 0-.713-.712h-.958a5.48 5.48 0 0 0-4.262-2.051h-1.216c-.761 0-1.498.16-2.161.454h1.277c2.948 0 5.367 2.42 5.367 5.368 0 2.726-2.05 4.986-4.691 5.33-.16.012-.32.025-.492.025H8.917a6.6 6.6 0 0 0 2.248-2.027.4.4 0 0 0 .123.012h4.814a.713.713 0 0 0 .713-.712.713.713 0 0 0-.713-.712h-4.188a7 7 0 0 0 .369-1.413h5.514a.713.713 0 0 0 .713-.712.713.713 0 0 0-.713-.713h-5.453a6.7 6.7 0 0 0-.27-1.412h4.053a.713.713 0 0 0 .712-.713.713.713 0 0 0-.712-.712h-4.68a6.58 6.58 0 0 0-5.65-3.23h-.466A6.58 6.58 0 0 0 0 8.18a5.85 5.85 0 0 1 4.434-2.027 5.85 5.85 0 0 1 5.503 3.857H6.964a3.22 3.22 0 0 0-2.53-1.228c-1.781.025-3.218 1.462-3.218 3.243s1.45 3.23 3.23 3.23a3.21 3.21 0 0 0 2.58-1.29H3.955a2.566 2.566 0 0 1 2.567-2.567h3.746q.037.314.037.627a5.866 5.866 0 0 1-5.859 5.858A5.88 5.88 0 0 1 .123 15.98a6.57 6.57 0 0 0 5.22 2.592h9.63c4.986 0 9.027-.295 9.027-.675 0-.246-1.977-.48-4.864-.59"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gatsby.svg�����������������������������������0000664�0000000�0000000�00000000725�14753064456�0025120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.6 0 12 0m0 2.571c3.171 0 5.915 1.543 7.629 3.858l-1.286 1.115C16.886 5.572 14.571 4.286 12 4.286c-3.343 0-6.171 2.143-7.286 5.143l9.857 9.857c2.486-.857 4.373-3 4.973-5.572h-4.115V12h6c0 4.457-3.172 8.228-7.372 9.17L2.83 9.944C3.772 5.743 7.543 2.57 12 2.57zm-9.429 9.6 9.344 9.258c-2.4-.086-4.801-.943-6.601-2.743s-2.743-4.201-2.743-6.515"/></svg>�������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gcore.svg������������������������������������0000664�0000000�0000000�00000001370�14753064456�0024723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.285 12c0 6.627-5.36 12-11.973 12-2.67 0-5.138-.877-7.13-2.358a11.04 11.04 0 0 0 5.392 1.418c2.78 0 5.455-1.054 7.492-2.945a11.06 11.06 0 0 0 3.5-7.263 8 8 0 0 0 .05-.787c.01-.418-.066-1.08-.075-1.296l-.01.01a24 24 0 0 0-.102-.814h-8.687c-.748 1.398-1.486 2.802-2.226 4.204h6.565a6.9 6.9 0 0 1-1.075 2.019 6.8 6.8 0 0 1-2.403 1.98 6.8 6.8 0 0 1-3.03.709 6.8 6.8 0 0 1-2.358-.425 6.85 6.85 0 0 1-3.263-2.514A6.9 6.9 0 0 1 1.715 12a6.9 6.9 0 0 1 .522-2.631 6.9 6.9 0 0 1 1.486-2.231 6.8 6.8 0 0 1 2.226-1.49 6.9 6.9 0 0 1 2.625-.523 6.82 6.82 0 0 1 4.043 1.32c.663-1.237 1.317-2.479 1.973-3.72a11.03 11.03 0 0 0-11.374-.396A11.94 11.94 0 0 1 10.312 0c6.612 0 11.973 5.373 11.973 12"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gdal.svg�������������������������������������0000664�0000000�0000000�00000013436�14753064456�0024541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.326 13.627.034-.034zm-.229.225-.008-.043.005.047Zm-.293-4.662-.003.001h.025zm1.349 10.05.19.702a1.3 1.3 0 0 0-.011-.49.54.54 0 0 0-.179-.211m-2.111.41h.493l-.246-1.015zM9.88 21.609a3.8 3.8 0 0 0 .713-2.418 3.15 3.15 0 0 0-1.021-2.714 2.65 2.65 0 0 0-1.593-.443h-1.74v6.478h1.74a2.3 2.3 0 0 0 1.9-.903m-.46-1.991a3.1 3.1 0 0 1-.4 1.141 1.31 1.31 0 0 1-1.127.57h-.548V17.22h.541a1.35 1.35 0 0 1 1.138.532 2.35 2.35 0 0 1 .406 1.457 2.6 2.6 0 0 1-.01.408m6.616 2.901v.294h-.3l.043.046a8 8 0 0 1-.878.119c.056-.07.07-.13-.108-.138.004-.011.012-.017.017-.027h-.527l-.056-.23-.293-1.211H12.66l-.29 1.21-.056.23h-1.828l.104-.38 1.787-6.478.06-.22h.36a.5.5 0 0 0-.11-.094c-.167-.079-.26.034-.435.01a2.6 2.6 0 0 1-.516-.243.94.94 0 0 1-.569-.546 2 2 0 0 0-.404-.56c-.169-.204-.222-.38-.482-.434-.03-.007.064.215.074.233a5 5 0 0 0 .344.483c.165.232.095.276-.073.051-.192-.257-.415-.513-.581-.786-.063-.103-.051-.17-.155-.267-.1-.095-.232-.14-.333-.23a1.18 1.18 0 0 1-.388-.84 11.4 11.4 0 0 0-2.146 2.122.44.44 0 0 1-.357.187.5.5 0 0 1-.166-.033.436.436 0 0 1-.265-.474l.58-3.563a8.44 8.44 0 0 0-.876 7.31v-2.327h2.039c1.33 0 2.915.6 2.915 3.458a4.1 4.1 0 0 1-.779 2.604 2.7 2.7 0 0 1-.8.675 8.75 8.75 0 0 0 9.345.342h-2.545ZM5.725 6.435a.33.33 0 0 0 .103.23c.017.016.045.014.066.027a.3.3 0 0 0 .164.066l.006-.002.002.001a.33.33 0 0 0 .165-.049l.705-.435.815.59-1.219 7.498a.14.14 0 0 0 .084.15.14.14 0 0 0 .05.009.14.14 0 0 0 .112-.059A13.87 13.87 0 0 1 14.9 9.556a.14.14 0 0 0 .108-.123.14.14 0 0 0-.089-.137L7.957 6.74l-.162-.998.687-.423a.367.367 0 0 0-.017-.575l-.967-.522a.7.7 0 0 0-.097-.278l-.314-.509.29-.178.288.849 3.33-2.228-.163-.477L10.355 0l-.953.637-2.377 1.59.277.814-.332.205-.421-.683a.713.713 0 0 0-.978-.232l-.735.454a.71.71 0 0 0-.232.978l.421.683-.3.185-.293-.862-1.665 1.114-1.665 1.114.64 1.88 1.994-1.335 1.335-.893-.273-.8.172-.107.172-.106.314.509a.7.7 0 0 0 .238.225Zm2.272.61 6.391 2.346a14.42 14.42 0 0 0-7.504 4.503Zm-.11 10.476h-.241v3.507h.247a1.01 1.01 0 0 0 .884-.444 2.33 2.33 0 0 0 .352-1.374 2.07 2.07 0 0 0-.344-1.275 1.06 1.06 0 0 0-.899-.414m7.174-8.475c.011-.089-.04-.1-.166-.185a1.5 1.5 0 0 0-.46-.286c-.207-.04-.287.015-.329.103l.914.335c.017.006.025.025.04.033m-4.01-.124a3.6 3.6 0 0 1 .614.008c.081.01.355.1.43.06a.25.25 0 0 0 .05-.103l-.43-.158a.57.57 0 0 1-.38.055c-.218-.03-.447-.1-.635.087.104.062.39.302.351.051M9.093 11.49a1 1 0 0 0-.06-.073l-.105-.164a1.4 1.4 0 0 0-.278-.38 7 7 0 0 0-.453-.338 7.8 7.8 0 0 1 2.707-2.103L9.66 7.975a8.8 8.8 0 0 0-1.738 1.4l-.583 3.59a15 15 0 0 1 1.754-1.475m5.175-4.832a8.8 8.8 0 0 0-3.57.769l1.751.643a.6.6 0 0 1 .226-.25h-.028a7.8 7.8 0 0 1 2.68-.095c-.12.062-.032.104-.119.167a3.3 3.3 0 0 1-.661.299c.252 0 .863.233.98-.116l-.244-.037a2.2 2.2 0 0 1 .5-.239 7.8 7.8 0 0 1 4.122 2.246h-.023a1.24 1.24 0 0 0-.757.175 1 1 0 0 1-.289.19c-.111.031-.232.004-.343.041-.399.134-.336.978-.862.85-.247-.06-.421-.348-.546-.536-.11-.166-.309-.303-.174-.51-.061.016-.127-.002-.188.01.085-.183.367-.167.414-.26.118-.234-.322-.259-.447-.291.15-.158.226.053.375.017.142-.035-.076-.22-.16-.24-.032-.008-.533.136-.243-.12l-1.074-.676c-.06.251.477.393.652.482-.027.103-.19.254-.315.21-.118-.042-.07-.234-.248-.215-.127.291.269.206.305.384.042.203-.15.117-.223.114-.017-.001-.154-.14-.161-.035-.01.126.218.077.234.204a.9.9 0 0 1-.596-.214.42.42 0 0 1-.277.225l-.023.006a1.4 1.4 0 0 0 .195.055c.149.018.233.222.314.305.054.055.15.173.245.16.15-.02.087-.15.173-.209.233-.159.294.057.387.273a.94.94 0 0 0 .324.409c.072.06.388.277.358.41-.02.09-.38.226-.477.256-.353.11-1.014-.18-1.085.372.137-.05.526-.364.643-.215.053.067-.043.165-.02.232.067.2.223.13.388.099l-.035.018c.225-.114.202-.09.305-.275a1.3 1.3 0 0 1 .131-.25c.164-.149.189-.047.29.068.027.03.277.386.188.368a1.06 1.06 0 0 0-.813.107 2.2 2.2 0 0 1-.437.274c-.04.014-.334.041-.3-.008.051-.073.227-.12.296-.199-.192-.077-.352.094-.502.195-.16.075-.197.213-.333.335-.06.053-.172.063-.23.132-.057.068-.064.175-.117.24-.038.044-.134.017-.174.085-.05.089.047.171.026.235-.04.116-.263.215-.35.299a1.3 1.3 0 0 0-.229.225 2.5 2.5 0 0 1 .102.574c-.09.264-.265-.143-.335-.248-.243-.361-.73-.12-1.061-.09a.728.728 0 0 0-.579 1.023.516.516 0 0 0 .58.245c.216-.044.28-.342.484-.347.373-.01.008.361-.024.497-.03.126.046.138.178.17.097.022.235-.042.319.013a.1.1 0 0 1 .029.045h.418l.06.222.12.444a.4.4 0 0 1 .06 0c.323.082.169-.023.452-.192.192-.114.223.021.354.022.089 0 .145-.127.294-.09.121.03.17.123.314.144.058.009.118-.02.174-.015v-.535h1.706v1.797a.6.6 0 0 0 .107-.076.6.6 0 0 1-.107.076c-.05.028-.098.046-.098.011 0 .023.05.057.098.087.023.015.05.031.06.039.094-.301.248-.108.434-.033a4 4 0 0 0 .52.106 1.4 1.4 0 0 1 .563.244c.128.139.04.364-.055.502-.123.18-.309.25-.386.462a3.4 3.4 0 0 0-.05.526c-.046.253-.084.164-.25.319-.138.13-.001.107-.19.19-.19.083-.358.058-.49.264l.014-.04a1.7 1.7 0 0 0-.11.285 1 1 0 0 1-.06.077v.458h1.817v1.203a8.6 8.6 0 0 0 3.498-6.902 8.73 8.73 0 0 0-8.79-8.671m-1.06 1.376c.165-.06.637-.004.696-.158a4.1 4.1 0 0 0-1.029.227 1 1 0 0 0-.118.08l.25.091c.056-.131.035-.18.2-.24m1.232 2.808c.231-.169.18-.179.096-.447a1.7 1.7 0 0 1-.103-.418 14 14 0 0 0-1.648.51c.2.11.466.181.615.247.131.06.517.14.588.238.097.133-.082.256.118.35a.25.25 0 0 0 .252-.026c.09-.1-.036-.123-.058-.238-.042-.222.027-.134.14-.216m-1.773 5.192-1.786 6.478h1.198l.172-.72.173-.72h1.746l.349 1.44h1.205l-1.746-6.478Zm-.006 3.916.533-2.195a3 3 0 0 0 .086-.566h.027c.002.025.009.048.01.072a4 4 0 0 0 .072.511l.264 1.09.263 1.088Zm-9.464.037h.983v1.265a1.16 1.16 0 0 1-.63.15 1.22 1.22 0 0 1-1.05-.548 2.63 2.63 0 0 1-.388-1.545 2.6 2.6 0 0 1 .433-1.574 1.33 1.33 0 0 1 1.121-.59 2.23 2.23 0 0 1 1.39.433V16.21a3.16 3.16 0 0 0-1.376-.284 2.39 2.39 0 0 0-1.985.962 3.95 3.95 0 0 0-.746 2.49 3.76 3.76 0 0 0 .683 2.384 2.25 2.25 0 0 0 1.867.864 2.87 2.87 0 0 0 1.786-.546V18.82H3.197Zm14.245-3.953h-1.106v6.478h2.923v-1.184h-1.817Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/geeksforgeeks.svg����������������������������0000664�0000000�0000000�00000002463�14753064456�0026454�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.45 14.315c-.143.28-.334.532-.565.745a3.7 3.7 0 0 1-1.104.695 4.5 4.5 0 0 1-3.116-.016 3.8 3.8 0 0 1-2.135-2.078 4 4 0 0 1-.13-.353h7.418a4.3 4.3 0 0 1-.368 1.008zm-11.99-.654a3.8 3.8 0 0 1-2.134 2.078 4.5 4.5 0 0 1-3.117.016 3.7 3.7 0 0 1-1.104-.695 2.7 2.7 0 0 1-.564-.745 4.2 4.2 0 0 1-.368-1.006H9.59q-.056.18-.13.352m14.501-1.758a4 4 0 0 0-.082-.475l-9.634-.008a3.93 3.93 0 0 1 1.143-2.348c.363-.35.79-.625 1.26-.809a3.97 3.97 0 0 1 4.484.957l1.521-1.49a5.7 5.7 0 0 0-1.922-1.357 6.3 6.3 0 0 0-2.544-.49 6.4 6.4 0 0 0-2.405.457 6 6 0 0 0-1.963 1.276 6.1 6.1 0 0 0-1.325 1.94 5.9 5.9 0 0 0-.466 1.864h-.063a5.9 5.9 0 0 0-.467-1.865 6.1 6.1 0 0 0-1.325-1.939A6 6 0 0 0 8.21 6.34a6.7 6.7 0 0 0-4.949.031A5.7 5.7 0 0 0 1.34 7.73l1.52 1.49a4.17 4.17 0 0 1 4.484-.958c.47.184.898.46 1.26.81.368.36.66.792.859 1.268.146.344.242.708.285 1.08l-9.635.008A4.7 4.7 0 0 0 0 12.457a6.5 6.5 0 0 0 .345 2.127 4.9 4.9 0 0 0 1.08 1.783c.528.56 1.17 1 1.88 1.293a6.5 6.5 0 0 0 2.504.457c.824.005 1.64-.15 2.404-.457a6 6 0 0 0 1.964-1.277 6.1 6.1 0 0 0 1.686-3.076h.273a6.13 6.13 0 0 0 1.686 3.077 6 6 0 0 0 1.964 1.276 6.35 6.35 0 0 0 2.405.457 6.5 6.5 0 0 0 2.502-.457 5.4 5.4 0 0 0 1.882-1.293 4.9 4.9 0 0 0 1.08-1.783A6.5 6.5 0 0 0 24 12.457a5 5 0 0 0-.039-.554"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/generalelectric.svg��������������������������0000664�0000000�0000000�00000005450�14753064456�0026757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.001 24C5.385 24 0 18.647 0 11.999 0 5.385 5.385 0 12.001 0 18.614 0 24 5.385 24 11.999 24 18.647 18.614 24 12.001 24m0-23.436C5.684.564.565 5.685.565 12c0 6.316 5.12 11.435 11.436 11.435S23.435 18.316 23.435 12C23.434 5.717 18.316.564 12.001.564M22.169 15.42l-.062.013-.034-.043c.002-.019.403-1.202.4-2.56-.005-1.463-.599-2.36-1.363-2.36-.465 0-.798.334-.798.831 0 .898 1.097.964 1.097 2.926 0 .798-.166 1.561-.432 2.393-1.23 4.154-5.153 6.082-8.975 6.082-1.763 0-3.014-.361-3.387-.529-.015-.008-.028-.037-.016-.066l.048-.034c.151.06 1.226.397 2.556.397 1.463 0 2.327-.598 2.327-1.33a.823.823 0 0 0-.832-.829c-.898 0-.964 1.13-2.892 1.13-.831 0-1.561-.166-2.427-.432-4.122-1.263-6.087-5.154-6.084-9.01.002-1.878.527-3.372.536-3.388l.059-.01.035.043c-.049.155-.398 1.228-.398 2.556 0 1.463.598 2.327 1.362 2.327a.79.79 0 0 0 .799-.798c0-.898-1.098-.997-1.098-2.925 0-.831.167-1.562.432-2.426 1.265-4.12 5.154-6.052 8.977-6.081 1.776-.013 3.331.518 3.39.565l.011.06-.044.033c-.018-.002-1.029-.425-2.559-.425-1.429-.001-2.327.598-2.327 1.363 0 .432.333.798.831.798.898 0 .964-1.097 2.892-1.097.831 0 1.562.166 2.427.432 4.156 1.261 6.05 5.185 6.084 8.974.018 1.941-.529 3.41-.535 3.42m-5.715-2.855c-1.13 0-1.995.832-1.995 1.828 0 .831.498 1.495 1.164 1.495.233 0 .465-.133.465-.432 0-.431-.573-.537-.528-1.184.028-.427.43-.711.828-.711.798 0 1.171.774 1.171 1.57-.034 1.23-.938 2.086-2.001 2.086-1.398 0-2.293-1.33-2.293-2.759 0-2.128 1.396-2.959 2.127-3.158.008-.001 1.911.34 1.852-.499-.026-.369-.575-.511-.974-.527-.441-.017-.885.142-.885.142-.233-.117-.393-.346-.492-.611 1.363-1.03 2.326-2.027 2.326-3.158 0-.598-.4-1.131-1.164-1.131-1.363 0-2.394 1.729-2.394 3.291 0 .266 0 .532.067.766-.865.631-1.507 1.023-2.671 1.721 0-.146.031-.521.128-1.008.399-.432.946-1.079.946-1.578 0-.233-.132-.432-.4-.432-.664 0-1.164.998-1.296 1.695-.3.366-.897.832-1.397.832-.399 0-.531-.366-.566-.498 1.263-.432 2.826-2.162 2.826-3.724 0-.333-.133-1.064-1.13-1.064-1.496 0-2.759 2.228-2.759 3.955-.532 0-.731-.565-.731-.996s.166-.865.166-.997c0-.134-.067-.3-.266-.3-.499 0-.798.664-.798 1.429.034 1.064.732 1.729 1.663 1.795.132.632.698 1.23 1.396 1.23.432 0 .964-.133 1.33-.465-.034.233-.067.431-.1.631-1.463.765-2.527 1.297-3.491 2.161-.762.698-1.195 1.628-1.195 2.359 0 .997.632 1.928 1.928 1.928 1.529 0 2.693-1.23 3.257-2.925.267-.798.373-1.958.44-3.022 1.529-.864 2.254-1.364 3.051-1.931.099.166.2.3.334.399-.699.366-2.36 1.397-2.36 3.823 0 1.729 1.164 3.656 3.457 3.656 1.895 0 3.191-1.562 3.191-3.057 0-1.362-.765-2.625-2.227-2.625m-9.141 4.653c-.498.023-.83-.296-.83-.827 0-1.429 1.981-2.793 3.477-3.526-.266 1.996-.939 4.275-2.647 4.353M8.41 9.374c0-1.097 1.082-3.182 1.745-2.962.781.26-.648 2.364-1.745 2.962m6.283-.499c0-1.362.923-2.688 1.427-2.436.574.287-.43 1.572-1.427 2.436"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/generalmotors.svg����������������������������0000664�0000000�0000000�00000001376�14753064456�0026513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.34 0A3.345 3.345 0 0 0 0 3.34v17.32A3.345 3.345 0 0 0 3.34 24h17.32A3.345 3.345 0 0 0 24 20.66V3.34C23.982 1.5 22.501 0 20.66 0zm0 1.535h17.32c.992 0 1.805.813 1.805 1.806v17.3c0 .993-.813 1.806-1.806 1.806H3.341a1.81 1.81 0 0 1-1.806-1.806v-17.3c0-.993.813-1.806 1.806-1.806zm2.98 4.677A1.877 1.877 0 0 0 4.442 8.09v4.569c0 1.03.85 1.86 1.879 1.878h1.552v.343c-.018.85-.505 1.337-1.679 1.355h-.74v1.535h.74c2.167 0 3.395-1.03 3.431-2.908v-8.65zm4.623 0v8.307h1.752V7.73h1.68v6.79h1.752V7.73h1.01c.362 0 .669.289.669.668v6.14h1.752V8.09c-.018-1.029-.85-1.878-1.879-1.878zM6.863 7.73h1.01v5.273h-1.01a.666.666 0 0 1-.669-.668V8.397c0-.36.29-.668.668-.668zm4.08 8.506v1.535h8.596v-1.535z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/genius.svg�����������������������������������0000664�0000000�0000000�00000001453�14753064456�0025120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 6.827c0 2.164.79 4.133 2.167 5.51.393.393.786.59 1.18.983h.195c.197 0 .196-.196.196-.196-.393-.787-.588-1.77-.588-2.754 0-2.164.982-4.329 2.36-5.706V1.518c0-.197-.197-.196-.197-.196h-2.95C.789 2.896 0 4.664 0 6.827m2.559 12.59c2.36 2.164 5.31 3.343 8.851 3.343 7.082 0 12.59-5.702 12.59-12.586 0-3.344-1.378-6.492-3.542-8.656h-.196c0-.197-.196 0-.196 0 .59 1.574.983 3.147.983 4.918 0 7.278-5.902 13.373-13.377 13.373-1.77 0-3.344-.393-4.917-.983-.197 0-.196.199-.196.395zm5.9-11.998c0 .59.395 1.178.788 1.571h.392c3.54 1.18 4.722-.193 4.722-1.767V5.056c0-.196.196-.196.196-.196h.787c.197 0 .196-.196.196-.196-.196-1.18-.784-2.358-1.571-3.342h-2.363c0-.197-.196 0-.196.196v2.95c0 1.574-1.18 2.754-2.754 2.951 0-.197-.196 0-.196 0z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gentoo.svg�����������������������������������0000664�0000000�0000000�00000003004�14753064456�0025113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.94 0a7.3 7.3 0 0 0-1.26.116c-4.344.795-7.4 4.555-7.661 7.031-.126 1.215.53 2.125.89 2.526.977 1.085 2.924 1.914 4.175 2.601-1.81 1.543-2.64 2.296-3.457 3.154C1.403 16.712.543 18.125.54 19.138c0 .325-.053 1.365.371 2.187.16.309.613 1.338 1.98 2.109.874.494 2.119.675 3.337.501 3.772-.538 8.823-3.737 12.427-6.716 2.297-1.9 3.977-3.739 4.462-4.644.39-.731.434-2.043.207-2.866-.645-2.337-5.887-7.125-10.172-9.051A7.8 7.8 0 0 0 9.94 0m-.008.068a7.4 7.4 0 0 1 3.344.755c3.46 1.7 9.308 6.482 9.739 8.886.534 2.972-9.931 11.017-16.297 12.272-2.47.485-4.576.618-5.537-1.99-.832-2.262.783-3.916 3.16-6.09a93 93 0 0 1 2.96-2.576c.065-.069-5.706-2.059-5.89-4.343C1.221 4.634 4.938.3 9.697.076a6 6 0 0 1 .235-.008m-.112.52a6 6 0 0 0-.506.032c-2.337.245-2.785.547-4.903 2.149-.71.537-2.016 1.844-2.35 3.393-.128.59.024 1.1.448 1.458 1.36 1.144 3.639 2.072 5.509 2.97.547.263.185.74-.698 1.505-2.227 1.928-5.24 4.276-5.45 6.066-.099.842.19 1.988 1.213 2.574 1.195.685 3.676.238 5.333-.379 2.422-.902 5.602-2.892 8.127-4.848 2.625-2.034 5.067-4.617 5.188-5.038.148-.517.133-.996-.154-1.546-.448-.862-1.049-1.503-1.694-2.22-1.732-1.825-3.563-3.43-5.754-4.658C12.694 1.242 11.417.564 9.82.588m1.075 3.623c.546 0 1.176.173 1.853.5 1.688.817 3.422 2.961-.015 4.195-.935.336-3.9-.824-3.81-2.407.09-1.57.854-2.289 1.972-2.288m.285 1.367c-.317-.002-.575.079-.694.263-.557.861-.303 1.472.212 1.862.192-.457 2.156.043 2.148.472a.3.3 0 0 0 .055-.032c1.704-1.282-.472-2.557-1.72-2.565z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/geocaching.svg�������������������������������0000664�0000000�0000000�00000002653�14753064456�0025720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 11.239h1.918c.151-1.738.841-3.819 2.521-5.498C2.81 4.532 2.484 3.136 2.484 2.36h.652c.068.682.357 1.656 2.247 2.753C7.167 4.067 7.532 3.037 7.631 2.36h.652c0 .721-.317 2.082-1.951 3.38 1.366.89 2.506 2.195 2.928 4.237H7.576c-.294-1.461-1.04-2.616-2.193-3.504-1.169 1.143-1.774 3.023-1.811 4.766h6.57V1.098H0zM5.383 2.63c.469 0 .85.377.85.842s-.38.841-.85.841a.846.846 0 0 1-.85-.841.847.847 0 0 1 .85-.842M3.574 12.779h6.567v6.567a7.34 7.34 0 0 1-3.775-1.528L5.195 18.99a8.98 8.98 0 0 0 4.946 2.012v1.919H0V12.779h1.919a9 9 0 0 0 2.03 4.968l1.171-1.171a7.33 7.33 0 0 1-1.546-3.797m8.108-11.681h10.142V11.24h-1.919a9 9 0 0 0-2.012-4.947l-1.171 1.171a7.34 7.34 0 0 1 1.528 3.776h-6.568V4.672a7.35 7.35 0 0 1 3.798 1.545l1.171-1.171a9 9 0 0 0-4.968-2.03zm0 11.681h10.142V22.92h-5.988l-1.172-4.736c.473-.572.965-.836 2.137-1.018 2.184-.341 2.576-2.232 2.576-2.232-1.02.245-1.837.001-2.799-.234-.949-.231-1.859-.211-2.727.092-.659.23-.818.445-.818.445l1.907 7.683h-3.257zm11.4-11.7a.894.894 0 0 0-.913.918c0 .521.392.913.913.913A.894.894 0 0 0 24 1.997a.895.895 0 0 0-.918-.918m0 1.679a.74.74 0 0 1-.753-.761c0-.437.319-.764.753-.764.437 0 .759.327.759.764a.74.74 0 0 1-.759.761m.379-.907c0-.201-.149-.298-.327-.298h-.411v.889h.204v-.309h.084l.259.309h.22v-.04l-.251-.28c.118-.028.222-.122.222-.271m-.335.133h-.199v-.262h.199c.076 0 .133.044.133.131.001.081-.057.131-.133.131"/></svg>�������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/geode.svg������������������������������������0000664�0000000�0000000�00000001427�14753064456�0024712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a1.4 1.4 0 0 0-.857.29L.596 8.343c-.47.36-.667.973-.492 1.539l4.056 13.12c.183.593.73.997 1.35.997h12.98c.62 0 1.167-.404 1.35-.996l4.056-13.121a1.41 1.41 0 0 0-.492-1.54l-.972-.741-1.12 3.517-3.07 9.99a.93.93 0 0 1-.888.657H6.578a.93.93 0 0 1-.889-.657L2.33 10.176a.93.93 0 0 1 .321-1.012l8.748-6.717a1 1 0 0 1 .11-.072L13.553.82l-.696-.53A1.4 1.4 0 0 0 12 0m.068 4.758a.76.76 0 0 0-.46.156L5.083 9.918a.76.76 0 0 0-.264.824l.434 1.408 2.197-1.619 4.315-3.377a.38.38 0 0 1 .468 0l4.705 3.682a.38.38 0 0 1 .13.406l-1.81 5.992a.38.38 0 0 1-.363.27H9.104a.4.4 0 0 1-.077-.008H6.9l.428 1.393a.76.76 0 0 0 .725.535h8.033a.76.76 0 0 0 .723-.535l2.51-8.147a.76.76 0 0 0-.264-.824l-6.526-5.004a.76.76 0 0 0-.46-.156"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/geopandas.svg��������������������������������0000664�0000000�0000000�00000001163�14753064456�0025565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.004 0C5.391 0 0 5.38 0 12c0 6.61 5.383 12 12.004 12C18.626 24 24 18.61 24 12c0-6.62-5.382-12-11.996-12m9.83 12a9.7 9.7 0 0 1-.824 3.925v-7.85A9.7 9.7 0 0 1 21.833 12m-4.1 7.98v-1.872h-2.09v3.015a9.8 9.8 0 0 1-3.64.702c-.303 0-.606-.017-.91-.043V9.192H9.005v12.165c-3.96-1.273-6.838-4.99-6.838-9.366 0-5.424 4.412-9.834 9.837-9.834a9.8 9.8 0 0 1 6.926 2.86v13.888h.06c-.39.399-.814.754-1.256 1.075M15.644 9.2h2.09v4.333h-2.09zM12.36 14.54h2.089v4.332h-2.09Zm0-8.907h2.089v4.332h-2.09Zm3.285 9.167h2.089v2.044h-2.09Zm-3.285-3.57h2.089v2.045h-2.09Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gerrit.svg�����������������������������������0000664�0000000�0000000�00000020246�14753064456�0025123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.648 2.678-.245-.266c.004-.004.29-.268.413-.41.121-.146.342-.484.346-.486l.301.195c-.014.016-.234.359-.375.522-.137.165-.428.432-.44.445m1.577 10.597c-.012-.004-.24-.154-.365-.221-.117-.059-.32-.146-.422-.191l.213-.612-.898-.444-.286.871c-.174.004-.713.053-1.51.389-.959.4-1.688 1.025-1.695 1.029l-.143.125.641.025.02-.016c.006-.006.721-.535 1.119-.705a2.4 2.4 0 0 1 .33-.105 13 13 0 0 0-.6.32c-.199.119-.57.381-.586.393l-.186.129.682.016.018-.01c.012-.008 1.164-.623 1.789-.76l.196-.047c.145-.037.246-.064.422-.064.156 0 .369.021.688.07.398.059.66.158.664.16l.24.094-.322-.436-.012-.008zm-8.98-7.298h-.029l-1.006.916v.03a.97.97 0 0 0 .258.716c.182.196.42.309.686.319h.043a.99.99 0 0 0 .992-.94 1.003 1.003 0 0 0-.944-1.041M5.2 7.808h-.041a.8.8 0 0 1-.33-.085.515.515 0 0 0 .596-.573.514.514 0 0 0-1.022.089.9.9 0 0 1-.045-.28l.912-.833c.446.042.79.431.768.882s-.391.8-.842.8zm9.329-3.725-.293-.195-.41.265-.395-.285-.301.18.404.291-.416.27.297.18.4-.254.387.28.309-.169-.407-.296M24 19.525c-.213-.209-.418-.416-.629-.627-.48-.488-.957-.984-1.418-1.486a32 32 0 0 1-1.582-1.844c-.225-.283-.441-.58-.646-.881a10 10 0 0 1-.668-1.215c-.211-.445-.398-.9-.576-1.356.24.21.463.444.664.692q.032-.322.059-.648l.023-.322c0-.033.012-.066-.008-.096a.5.5 0 0 0-.053-.075 4 4 0 0 0-.406-.413 18 18 0 0 0-.584-.533l-.18-.156a1 1 0 0 0-.086-.074c-.031-.03-.041-.096-.055-.136l-.154-.479c.607.285 1.109.741 1.578 1.215a18 18 0 0 0-.008-.998c0-.029.006-.1-.016-.127-.012-.02-.031-.036-.043-.055a3 3 0 0 0-.357-.314 12 12 0 0 0-.527-.408c-.156-.117-.318-.232-.477-.345-.018-.016-.076-.039-.064-.06l.039-.08c.02-.035.014-.045.053-.029l.17.059c.406.156.779.368 1.143.608a6.6 6.6 0 0 0-.525-1.296 10 10 0 0 0-1.463-2.105 12 12 0 0 0-1.219-1.193 8 8 0 0 0-.699-.533c-.113-.074-.225-.149-.346-.217-.049-.03-.105-.056-.15-.094-.18-.144-.365-.284-.549-.429q.358.147.689.338c-.127-.194-.342-.331-.545-.436a6 6 0 0 0-.967-.378c.113-.12.234-.228.346-.348q.17-.182.33-.372.19-.224.375-.455l-1.156-.726-.48-.303a3.1 3.1 0 0 1-.458.68c-.18.203-.391.369-.6.539q-.286.236-.566.472c-.047.04-.092.085-.145.12-.025.021-.096.004-.127.004H10.7a8 8 0 0 0-.891.068 1 1 0 0 1-.175.008l-.178-.01c-.137-.008-.271-.016-.408-.016-.289-.004-.58 0-.871.025a5 5 0 0 0-.729.112 1.9 1.9 0 0 0-.66.312c-.193.141-.387.32-.504.53s-.17.456-.213.689c-.135.013-.268.01-.4.016a4.618 4.618 0 0 0-1.211.219 3.6 3.6 0 0 0-1.336.75q-.294.272-.539.596c-.02.025-.037.051-.063.068-.01.009-.027.016-.033.027a1 1 0 0 1-.051.076l-.134.212c-.168.285-.276.595-.383.906l-.045.123.033-.021q-.016.101-.025.202l-.008.105v.053l-.066.013c-.135.026-.271.06-.4.101-.12.039-.233.086-.337.15-.105.066-.195.153-.285.239-.318.31-.562.698-.687 1.128a2.3 2.3 0 0 0-.059 1.092.7.7 0 0 0 .107.262c.074.09.199.126.313.095.131-.036.248-.124.371-.187l.314-.157c.455-.226.93-.446 1.438-.525.035-.005.1.067.131.091q.075.057.148.104.164.103.334.181c.262.114.541.174.818.231a8 8 0 0 0 1.529.18q.311.008.625-.018c.225-.02.451-.049.678-.051.25-.005.496.025.74.055q.382.048.764.105c.518.079 1.031.169 1.543.279q-.172.27-.338.545c-.008.013-.072 0-.088 0a1 1 0 0 0-.127 0q-.112.001-.225.019-.316.046-.615.156c-.49.181-.938.483-1.326.833-.221.195-.43.408-.609.641q-.072.097-.139.193.158-.034.318-.07.09-.023.176-.039c.021-.008.029-.016.049-.027q.329-.306.695-.563.165-.122.348-.215a2.5 2.5 0 0 1 .533-.174c-.33.18-.678.35-.977.584-.172.139-.328.291-.49.439l.654-.104c.01 0 .014-.004.023-.01l.17-.094q.17-.095.346-.186c.24-.123.482-.24.732-.34.236-.094.48-.178.732-.225.221-.046.428-.052.648 0 .342.074.67.232.969.414.021.014.035.033.055.014.016-.014.098-.074.09-.092l-.18-.334c-.016-.029-.023-.049-.051-.066l-.131-.077a6 6 0 0 1-.51-.331c-.037-.023-.078-.039-.082-.089-.004-.046.014-.093.029-.136.033-.09.08-.169.131-.248.033-.058.072-.111.109-.166.014-.018.01-.021.031-.014l.119.034c.236.077.469.159.711.22.27.068.545.123.82.176l.048.01c-.056-.03-.091-.09-.132-.136-.023-.03-.035-.05-.074-.06l-.105-.02q-.11-.022-.225-.049a6 6 0 0 1-.777-.209c-.375-.13-.758-.232-1.145-.322a29 29 0 0 0-1.465-.275c-.25-.041-.498-.074-.75-.109-.246-.034-.496-.07-.746-.087-.539-.034-1.074.087-1.615.081-.365-.004-.734-.055-1.096-.105l-.068-.009q.377-.14.75-.285.354-.143.705-.289.19-.079.373-.157c.113-.051.225-.1.328-.17.408-.279.676-.727.975-1.109.273-.361.586-.7.99-.908q.193-.098.4-.156c-.283-.439-.549-.93-.623-1.455l.094.037c.035.012.064.016.072.045l.029.135q.038.135.086.262.109.287.26.551c.219.396.484.766.766 1.12.539.686 1.145 1.305 1.736 1.941.145.158.275.324.41.492q.226.281.457.561c.121.141.234.285.356.426l.094.112c.016.018.037.026.061.036q.907.451 1.822.895c.434.209.869.42 1.309.623.236.109.471.219.711.32a1 1 0 0 0 .098.039c.016.01.029.016.047.023l.016.049q.04.108.076.217.073.211.148.416c.33.912.695 1.814 1.145 2.676.346.656.715 1.301 1.09 1.939a125.615 125.615 0 0 0 2.233 3.63c.146.227.289.459.439.688l.063.094.775-1.141.191-.283a.5.5 0 0 0 .076-.109l-.156-.24c-.291-.451-.584-.898-.871-1.35l-.828-1.283-.105-.166.656.799 1.115 1.35c.121.146.236.289.354.438q.328-.602.662-1.201.13-.247.266-.492M12.13 1.915c.309-.246.563-.563.757-.906l1.178.743.18.112c-.246.3-.496.604-.775.873-.035.034-.074.069-.107.104-.021.025-.047.051-.07.075l-.033.038q-.034-.012-.068-.02a8.585 8.585 0 0 0-1.322-.263 35 35 0 0 0-.578-.058c.275-.234.557-.467.838-.698m-1.754 1.37c.232-.096.482-.15.73-.191a5.5 5.5 0 0 1 1.489-.04q.531.057 1.041.21l-.141.115-.225-.061c-.141-.029-.281-.06-.422-.082a6 6 0 0 0-.749-.065 5 5 0 0 0-1.371.159 4.2 4.2 0 0 0-.879.332 3.1 3.1 0 0 0-.78.582 2.6 2.6 0 0 0-.57.874l-.029.075-.012.038-.068-.011-.082-.011c.234-.719.763-1.286 1.418-1.649a3 3 0 0 1 .65-.279m-3.93.374a1.86 1.86 0 0 1 1.139-.743c.502-.101 1.016-.119 1.525-.107-.525.131-1.05.326-1.488.652a2.3 2.3 0 0 0-1.314.86h-.084q.034-.204.098-.4a1 1 0 0 1 .119-.26m.882.056c-.145.143-.27.303-.391.469-.047.069-.098.153-.18.191-.085.039-.194-.005-.28-.031.224-.279.521-.494.851-.629M2.308 6.585c.08-.16.182-.315.275-.465.016-.027.053-.046.074-.063q.073-.05.143-.106.463-.34.939-.656c.166-.107.33-.213.502-.307q.272-.15.565-.244A7 7 0 0 1 5.874 4.5c.174-.025.361-.057.531-.015q-.494.283-.99.558c-.342.191-.689.367-1.035.552-.332.18-.66.375-.981.577-.336.206-.67.419-1.002.629q-.12.078-.24.155c.045-.125.09-.251.151-.371m1.009 3.056c-.029.056-.134.042-.187.042q-.14-.001-.279.006-.386.022-.758.138c-.475.147-.922.375-1.365.604-.1.055-.203.135-.316.162a.155.155 0 0 1-.166-.063.6.6 0 0 1-.064-.198 1.6 1.6 0 0 1-.033-.368c0-.33.076-.66.215-.96q.145-.315.371-.574c.15-.175.326-.351.539-.45.355-.162.775-.213 1.164-.235q.109-.007.217-.007c.1 0 .217-.016.311.019.074.027.121.105.15.173.045.105.074.225.1.336.061.26.123.525.145.791.01.119.016.239.004.359-.009.073-.014.156-.05.223m2.829-1.973a3.82 3.82 0 0 1-1.276.479 2 2 0 0 1-.293.021c-.101-.003-.193-.036-.293-.067a3 3 0 0 1-.57-.233.5.5 0 0 1-.174-.15.3.3 0 0 1-.023-.174c.012-.231.094-.458.203-.66a1.8 1.8 0 0 1 .84-.775c.879-.396 1.865-.029 2.611.49l.08.061c-.154.165-.311.321-.473.477a4.6 4.6 0 0 1-.634.531M8.31 5.739a9 9 0 0 1-1.356-.738c.449.188.934.3 1.414.37.258.037.521.072.781.08.281.008.564-.021.84-.075a6.1 6.1 0 0 0 1.566-.551c.494-.245.964-.537 1.413-.859q.327-.23.633-.487c.021-.016.174-.161.184-.154l.041.031.537.416q.492.383.988.762c-.906.326-1.826.629-2.752.904-.519.156-1.038.301-1.565.42-.412.098-.834.189-1.256.21-.507.022-1.006-.135-1.47-.33m8.85 3.942c.076.021.145.045.215.067l.094.033q.024.01.045.02l.021.06q.067.218.139.432l-.451-.379-.09-.074c-.021-.016-.045-.021-.029-.046l.059-.114m-.671 1.444.035-.063.027-.046c.012-.018.008-.022.029-.012q.194.081.385.17.36.164.703.364c.107.065.217.135.322.205l.15.105.074.057c.033.027.041.063.057.102q.158.423.338.844.118.284.248.566a11 11 0 0 0-.957-1.045 16 16 0 0 0-1.078-.981l-.323-.264m3.746 6.42-.121.09.008.016.063.094.271.42.904 1.402q.466.721.932 1.445l.309.48.084.133a.3.3 0 0 1 .029.045q-.392.578-.783 1.154-.04.057-.074.111-.36-.558-.715-1.117c-.4-.635-.795-1.277-1.184-1.916a72 72 0 0 1-1.264-2.141 21 21 0 0 1-1.059-2.076 31 31 0 0 1-.811-2.121q.73.29 1.48.521.216.07.436.127l.063.018c.008 0 .014-.039.018-.049q.026-.096.045-.195c.031-.125.051-.254.074-.381.205.428.436.844.701 1.236q.323.471.686.92a33 33 0 0 0 1.643 1.898q.696.742 1.408 1.465l.389.389c.006.006.039.031.037.041l-.031.053-.148.275-.588 1.068q-.27-.327-.541-.658l-1.125-1.361c-.314-.387-.637-.773-.953-1.16l-.186-.225"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/getx.svg�������������������������������������0000664�0000000�0000000�00000002411�14753064456�0024570�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.643.934c-.302.067-.928.29-1.386.503-2.167 1.05-3.485 3.52-3.15 5.899a5.76 5.76 0 0 0 1.575 3.25c1.128 1.174 2.469 1.732 4.134 1.744 1.642 0 2.994-.57 4.133-1.743C19.39 7 17.055 1.113 12.095.867c-.492-.022-1.14 0-1.452.067M13.77 3.17c.905.335 1.966 1.374 2.178 2.145.213.793.1 1.82-.29 2.547-.86 1.575-2.816 2.726-3.989 2.346-.536-.179-1.25-.994-1.642-1.855-.847-1.889-1.127-3.52-.736-4.28.592-1.15 2.715-1.575 4.48-.904Zm-9.663 8.69c-2.838.916-4.513 3.598-4.022 6.48.48 2.86 3.173 4.994 6.033 4.77 2.033-.145 3.765-1.24 4.681-2.96.503-.96.681-1.676.681-2.815 0-2.045-.971-3.799-2.737-4.894-1.24-.782-3.25-1.028-4.636-.58Zm2.436 1.799c2.737.447 4.222 2.737 3.15 4.882-.436.86-1.352 1.732-2.29 2.179-.637.29-.838.335-1.43.29-1.028-.067-1.486-.48-2.045-1.877-.67-1.642-.95-3.608-.614-4.245.413-.771 1.117-1.162 2.413-1.33.067 0 .424.045.816.101m9.842-1.743c-3.34 1.173-4.837 4.882-3.273 8.077.435.894 1.463 1.944 2.38 2.425 2.356 1.24 4.904.871 6.78-.995 3.05-3.016 1.9-8.077-2.178-9.507-1.039-.368-2.67-.368-3.709 0m3.419 1.978c1.184.38 2.368 1.485 2.636 2.48.179.659.078 1.609-.223 2.234-.548 1.129-1.91 2.145-3.251 2.413-1.81.358-2.737-.882-3.15-4.19-.247-1.999.3-2.915 1.91-3.16.67-.101 1.25-.046 2.078.223"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ghost.svg������������������������������������0000664�0000000�0000000�00000000665�14753064456�0024756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m.256 2.313c2.47.005 5.116 2.008 5.898 2.962l.244.3c1.64 1.994 3.569 4.34 3.569 6.966 0 3.719-2.98 5.808-6.158 7.508-1.433.766-2.98 1.508-4.748 1.508-4.543 0-8.366-3.569-8.366-8.112 0-.706.17-1.425.342-2.15.122-.515.244-1.033.307-1.549.548-4.539 2.967-6.795 8.422-7.408a4 4 0 0 1 .49-.026Z"/></svg>���������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ghostery.svg���������������������������������0000664�0000000�0000000�00000001463�14753064456�0025473�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.058 19.93c-1.01-2.29-1.185-4.228-1.212-4.99V8.67C20.846 3.882 16.886 0 12 0S3.15 3.882 3.15 8.671v6.36c-.037.82-.236 2.7-1.207 4.899-1.306 2.955-.226 2.603.742 2.36.968-.242 3.13-1.192 3.805-.022s1.238 2.184 2.814 1.523c1.576-.663 2.318-.883 2.543-.883h.306c.225 0 .968.22 2.543.882s2.14-.353 2.814-1.522c.676-1.17 2.837-.22 3.805.022.968.243 2.048.595.743-2.36M9.268 4.728c.953 0 1.725 1.198 1.725 2.676s-.772 2.677-1.725 2.677-1.726-1.198-1.726-2.677c0-1.478.773-2.676 1.726-2.676m2.73 10.697c-2.1 0-3.867-2.025-4.4-4.279 1.029 1.387 2.617 2.277 4.4 2.277s3.372-.89 4.401-2.277c-.533 2.254-2.3 4.28-4.4 4.28m2.73-5.345c-.953 0-1.725-1.198-1.725-2.677 0-1.478.772-2.676 1.726-2.676.953 0 1.725 1.198 1.725 2.676s-.772 2.677-1.725 2.677Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gimp.svg�������������������������������������0000664�0000000�0000000�00000003076�14753064456�0024565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.848 1.636c-.106-.016-.228.107-.324.397-.157.47-1.073 3.203-5.504 4.326.596.512.976 1.242.976 2.059 0 1.547-1.344 2.8-3 2.8s-2.997-1.254-2.998-2.8c0-.603.208-1.158.555-1.616-3.135-.322-4.49-3.123-4.49-3.123l-.096 4.163c-.025.564-.009 1.111-.27 1.636a3.335 2.365 54.527 0 0-.05-.072 3.335 2.365 54.527 0 0-2.849-1.654 3.335 2.365 54.527 0 0-1.013.334 3.335 2.365 54.527 0 0 .029 4.095 3.335 2.365 54.527 0 0 3.291 1.59c2.997 2.22 8.482 4.148 12.231 1.885l-2.025-1.629c-1.064.345-2.604.34-4.397-.295 2.9.582 4.47-.053 5.334-.722-.228-.296-.71-.526-.71-.526s.563.107.93.496c.147.155.198.387.218.653.553.298 1.183.656 1.875 1.062 2.06-2.06 3.253-5.933 2.52-12.617-.035-.269-.127-.425-.233-.442M6.855 7.096c1.051-.001 1.903.795 1.903 1.777 0 .98-.853 1.776-1.903 1.775-1.05 0-1.9-.795-1.9-1.775 0-.981.85-1.777 1.9-1.778zm5.776.482a1.325 1.325 0 1 0-.002 2.65 1.325 1.325 0 0 0 .002-2.65m-10.942.639a.964.947 0 0 1 .002 0 .964.947 0 0 1 .021 0 .964.947 0 0 1 .965.949.964.947 0 0 1-.965.947.964.947 0 0 1-.962-.947.964.947 0 0 1 .94-.95zm5.559.123a.84.84 0 1 0 .02 1.68.84.84 0 0 0-.02-1.68m8.26 4.964c-.043.053-.103.099-.156.147l.21.115c-.017-.1-.033-.21-.054-.262m-.55.1-.733.361.06.05.198.157 1.994 1.606.015.012a82 82 0 0 0 1.952 1.513.5.5 0 0 0-.008.127l.26-.04.103.152 2.317 1.472c-.12.41-.065.953.207 1.457.79 1.465 2.677 2.094 2.677 2.094-.771-1.968-.209-3.569-1.73-4.133-.242-.09-.453-.093-.629-.033l-2.047-1.895-.174-.052-.025-.262a1 1 0 0 0-.12.059c-.306-.26-.687-.537-1.09-.815-1.364-.835-2.257-1.3-3.228-1.83z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gin.svg��������������������������������������0000664�0000000�0000000�00000021317�14753064456�0024404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.836 23.977c-2.059-.105-3.37-.36-4.468-.868-.131-.061-.115-.028-.278-.596a43 43 0 0 1-.785-3.29c-.135-.678-.153-.762-.471-2.118-.51-2.176-.64-2.831-.804-4.056-.107-.796.122-1.315.275-.625.603 2.715 1.124 4.697 1.675 6.368.19.577.176.553.335.537.11-.01.11-.01.028.181-.112.26-.057.4.291.741.261.256.264.271.04.239-.173-.025-.165-.043-.102.214.03.12.081.345.115.5.264 1.23.609 1.833 1.112 1.94 1.468.314 3.6.45 5.48.35 2.18-.115 2.703-.198 3.38-.536.459-.229.853-.657.611-.663-.178-.005-.194-.047-.043-.11.329-.136.468-.281.44-.46-.007-.054.003-.11.043-.232.123-.376.144-.682.112-1.664-.014-.455-.013-.487.021-.658.091-.449.132-.788.2-1.656.047-.613.062-.766.111-1.119.05-.353.065-.553.093-1.187.055-1.238.116-1.731.229-1.844.188-.188.187-.289-.006-.563-.22-.313-.22-.477.003-.711.108-.114.113-.242.039-1.065-.02-.212-.04-.529-.045-.705-.008-.217-.017-.32-.03-.32-.041 0-.306.226-.89.76-.663.607-.836.75-1.208.998-.768.513-1.505.764-2.78.947-1.286.184-2.8.14-3.791-.11-.668-.168-1.055-.35-1.809-.85-.706-.47-.667-1.229.08-1.563.335-.15.075-.315-.6-.378-.507-.047-.249-.146.4-.153.789-.008 1.35-.288 2.074-1.036.303-.313.374-.375.778-.677.643-.481.87-.69.972-.895.078-.155.073-.308-.01-.34q-.04-.015-.04-.056c0-.052.157-.045-2.561-.122-2.869-.083-5.04-.212-6.148-.367-.216-.03-.113.161.15.28.085.038.092.072.02.085-.194.038-.184.01-.128.329.218 1.235.555 1.542 1.216 1.104.13-.086.176-.102.496-.175.7-.159 1.455-.246 2.583-.3 1.164-.054 1.29-.058 1.304-.044.03.03-.56.11-1.594.215-1.07.109-1.429.158-1.926.264-.134.028-.28.052-.324.052-.29 0-.712.293-.865.599-.192.385-.015.615.51.663.177.015.607.092.684.12.065.026.052.067-.034.105-.093.042-.093.04-.009.092.17.107.097.1-.37-.035-.778-.225-.936-.238-.723-.058q.153.127-.013.076c-.171-.052-.167-.087-.063.605.133.886.03.842-.155-.067-.255-1.25-.669-2.314-.484-1.246.04.231.085.414.22.888.18.638.287 1.249.223 1.288-.03.019-.19-.484-.302-.947-.124-.51-.177-.8-.433-2.382-.13-.802-.243-1.346-.378-1.826-.077-.274-.05-.403.128-.601C4 4.838 4.91 4.59 4.91 4.896c0 .147-.187.246-.643.34-.52.108-.563.175-.29.458.249.257 1.814.481 3.726.533l1.212.035c2.134.068 4.388.067 4.518-.002.015-.008.084-.105.153-.216.283-.454.552-.795.945-1.195.278-.284.286-.294.241-.306-.132-.033-.142-.562-.012-.628.238-.12.354-.292.728-1.072.198-.414.31-.596.478-.783.145-.162.256-.385.42-.845.162-.452.264-.664.38-.782.223-.229.233-.103.037.49-.162.49-.711 1.686-1.127 2.454-.355.656-.307.845.188.743a.8.8 0 0 1 .246-.017c.13.012.273-.018.622-.129.289-.092.326-.076.2.082-.089.113-.088.114.054.18.14.065.13.078-.062.078-.265 0-.45.106-.476.274-.012.074-.012.074-.123-.048-.306-.335-.645-.28-.85.136-.073.146-.186.253-.27.253-.05 0-.038-.034.083-.232.293-.478.298-.562.028-.424-.308.156-.784.826-.803 1.13-.017.266.295.409.533.244.901-.627 1.348-.875.979-.544a3 3 0 0 0-.183.176c-.175.203-.31.294-.566.376-.85.274-.85.656 0 .635.227-.005.423-.002.478.008.412.076 2.233-.237 3.161-.544.588-.193.685-.429.323-.786-.465-.46-.959-.369-.647.119.194.302-.388.623-1.37.756-.443.06-.611.09-.774.136-.11.032-.438.072-.704.087-.352.019-.464-.028-.192-.08.415-.08.582-.105 1.078-.16 1.33-.147 1.76-.355 1.763-.855.002-.278-.223-.32-.851-.16q-.302.078-.025-.056c.282-.136.26-.252-.071-.374-.111-.04-.111-.04.051-.054.742-.06 1.105-.355.76-.618-.068-.052-.066-.069.01-.084a.4.4 0 0 0 .126-.063c.163-.118.3.246.156.414-.198.231-.036.531.357.66.403.133.588-.05.422-.416a3.4 3.4 0 0 1-.131-.426c-.24-.964-.76-2.041-.984-2.041q-.032.001-.048-.064c-.215-.834-.288-.99-.535-1.133-.42-.245-.55-.67-.163-.528.887.324 1.822 1.45 2.532 3.05.566 1.274.693 3.168.324 4.803-.203.9-.363 2.666-.546 6.03a68 68 0 0 1-.239 3.254c-.022.216-.045.47-.05.563-.044.708-.204 2.028-.361 2.98-.033.2-.048.37-.059.692-.042 1.22-.431 1.823-1.258 1.947a3 3 0 0 0-.325.075c-1.08.331-2.166.47-4.342.557-.728.028-.71.028-1.307-.002zm.262-.236c.047-.047-.242-.09-.885-.13a8 8 0 0 1-.419-.035c-.417-.058-1.17-.102-1.17-.07 0 .128 2.357.352 2.474.235m-4.096-.863c0-.04-.336-1.37-.404-1.598-.125-.42-.377-1.016-.423-1.003-.07.02.099.905.275 1.447.175.536.552 1.325.552 1.154m-.524-.13c.043-.275-.042-.674-.335-1.57-.176-.54-.234-.742-.276-.965-.044-.236-.04-.225-.08-.219-.166.025-.151.285.054.975.148.5.165.568.188.751.064.52.405 1.302.449 1.028m-.79-3.282c0-.344-.05-.624-.205-1.183-.174-.625-.244-.896-.283-1.106-.074-.401-.229-.62-.18-.256.026.195.215 1.18.266 1.388.024.094.062.327.086.517.066.528.102.674.197.805.098.135.118.106.118-.165m5.782-8.22c.047-.052.038-.166-.035-.46-.1-.4-.1-.586.001-.74.17-.26-.816-.376-1.398-.164-.53.193-.648.517-.32.877.162.177-.074.272-.296.12-.305-.207-.277-.86.036-.86.036 0 .106-.074.106-.112 0-.056-.067-.103-.211-.148-.198-.062-.197-.074.008-.108.484-.08.94-.422 1.66-1.247.934-1.071 1.307-1.392.81-.7-.25.35-.459.592-.877 1.016-.75.76-.844.922-.532.922.472 0 .683-.193 1.114-1.024.408-.785.609-.987.897-.901.122.036.12.038-.219.875-.314.774-.3.986.054.81.177-.087.17-.075.24-.409.174-.82.53-1.946.618-1.946.115 0 .046.505-.143 1.041-.284.809-.298 1.069-.068 1.296.25.248.53.202.747-.121.08-.119.115-.103.177.08.046.137.053.141.244.144.261.004.62-.091.639-.169.006-.025.02-.04.035-.036.14.036.139-.107-.003-.168-.091-.04-.1-.064-.032-.099.15-.076.306.038.306.224 0 .079.02.089.205.11 1.218.142 1.95-.176 2.364-1.024.071-.144.205-.408.3-.587q.502-.955.412-1.393c-.036-.17-.017-.164-.38-.12a75 75 0 0 1-5.572.488c-.152.01-.152.01-.452.304-.485.475-.904.86-1.7 1.56-.226.199-.434.386-.462.416-.08.087-.344.296-.734.58-.815.597-1.238 1.055-1.097 1.19.16.154 1.37.375 2.378.434.169.01.403.029.52.042.31.036.32.037.48.04.13.002.15-.001.18-.033m4.933-2.689c-.635-.103-1.247-.461-1.883-1.103-.419-.422-.37-.455.226-.152.437.222.594.278.778.273l.205-.004c.19-.004.925.402.855.472-.024.024-.16-.02-.42-.134-.835-.369-1.368-.372-.803-.005.596.387 1.25.571 1.64.464.146-.04.186-.04.193.004.024.17-.35.257-.79.185m-3.517 2.69c.075-.018.363-.072.64-.12 1.31-.224 1.609-.339 2.422-.924.552-.397.62-.789.126-.73-.552.063-.613.112-.775.622-.188.593-.272.665-.775.666-.527 0-.74-.181-.889-.76-.052-.205-.067-.222-.216-.272q-.833-.276-.832 1.112c0 .16-.01.168-.193.173-.298.008-.33-.091-.154-.475.233-.509.242-.609.061-.686-.392-.165-.783.255-.71.763.067.455.394.695.803.589.116-.03.116-.03.218.022.123.064.107.063.274.02zm1.822-.776c.233-.02.388-.185.388-.41 0-.326-.282-.468-.63-.317-.1.044-.122.047-.206.034-.357-.058-.502.239-.254.52.159.181.28.21.702.173zm-3.21-.95c.373-.19.832-1.164.684-1.45-.044-.084-.06-.077-.158.074-.048.073-.168.24-.266.37-.458.608-.578.868-.456.99.062.061.1.065.196.016m-2.196 11.74a19 19 0 0 1-.785-.142c-.644-.128-.933-.172-1.124-.172-.176 0-.216-.034-.167-.142.054-.118.217-.105.757.058q.533.16.744.18c.061.006.15.021.196.034.135.037 1.206.178 1.352.178q.006.001-.002.017c-.016.025-.751.017-.971-.01m1.759-.748c-.223-.11-.292-.254-.352-.736-.062-.504-.159-.66-.453-.726l-.115-.027c-.04-.011-.071-.173-.056-.294.034-.272.204-.492.717-.92.113-.095.235-.203.271-.24.36-.376 1.53.104 1.99.815.325.505.322.619-.028.85-.432.284-.494.365-.485.636l.008.257c.01.323-.177.407-.645.29-.397-.1-.523-.084-.683.084-.06.063-.063.063-.17.01m1.138-.226c.31-.158.375-.55.147-.892-.244-.365-.56-.239-.548.22.014.563.154.799.4.672m-.866-.082c.245-.11.326-.537.167-.875-.156-.33-.447-.135-.502.335a4 4 0 0 1-.033.222c-.067.345.062.456.368.318m-.54-1.137c.272-.181.542-.19 1.375-.043.478.085.863.029.862-.125-.002-.572-.348-.742-1.23-.603-.554.088-.758.088-1.007.002-.275-.095-.602.165-.554.44.045.257.372.451.554.33M9.77 18.18c-1.242-.26-2.03-1.747-1.379-2.602.2-.262.262-.17.123.179-.58 1.458 1.23 2.822 2.635 1.986 1.028-.612 1.015-2.107-.022-2.62a3 3 0 0 1-.196-.11c-.401-.248-.853-.232-1.716.06-.505.171-.49.171-.33 0 .605-.654 1.898-.634 2.686.04 1.433 1.226.115 3.47-1.801 3.067m5.037-.112c-1.959-.3-2.62-2.187-1.153-3.292 1.31-.987 3.322-.01 3.258 1.584-.04.981-1.121 1.858-2.105 1.708m.402-.32c1.503-.02 2.006-1.931.735-2.794-.798-.542-2.093-.295-2.555.487-.542.918.047 2.147 1.111 2.319.028.004.147.004.265 0 .117-.006.317-.01.444-.013m-1.504-.836c-.44-.125-.51-.655-.138-1.057.335-.363.817-.206 1.018.332.09.24.058.275-.223.259-.179-.011-.264.002-.263.04 0 .007.06.057.134.111.22.162.225.216.027.284a1.25 1.25 0 0 1-.555.03m-4.654.107c-.466-.044-.63-.297-.442-.68.224-.452.732-.585 1.015-.264.428.486.11 1.01-.573.944M5.261 4.894c-.006-.01.009-.046.033-.081l.089-.126a.4.4 0 0 0 .053-.132c.006-.043.02-.072.037-.077.07-.022.69-.149.95-.196.67-.12.85-.132 2.365-.156 2.81-.044 3.885-.08 4.925-.162.357-.029.338-.032.423.084.133.183.016.311-.338.37-.425.07-2.138.025-2.594-.067-.484-.099-.636-.094-.775.026-.081.07-.064.07-.278-.002-.27-.09-.507-.118-.876-.106-.3.01-.417.024-1.136.13-.193.027-.462.059-.598.07-.472.035-1.013.135-1.756.324-.498.127-.507.129-.524.101m11.997-1.208c0-.085.11-.21.595-.668.269-.255.464-.481.464-.54 0-.056.047-.06.066-.006.105.3-.107.597-.698.983l-.32.212c-.085.058-.107.062-.107.019"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/giphy.svg������������������������������������0000664�0000000�0000000�00000000264�14753064456�0024745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.666 0v24h18.668V8.666l-2.668 2.668v10H5.334V2.668H10L12.666 0zm10.668 0v8h8V5.334h-2.668V2.668H16V0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/git.svg��������������������������������������0000664�0000000�0000000�00000001070�14753064456�0024404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.546 10.93 13.067.452a1.55 1.55 0 0 0-2.188 0L8.708 2.627l2.76 2.76a1.838 1.838 0 0 1 2.327 2.341l2.658 2.66a1.838 1.838 0 0 1 1.9 3.039 1.837 1.837 0 0 1-2.6 0 1.85 1.85 0 0 1-.404-1.996L12.86 8.955v6.525c.176.086.342.203.488.348a1.85 1.85 0 0 1 0 2.6 1.844 1.844 0 0 1-2.609 0 1.834 1.834 0 0 1 0-2.598c.182-.18.387-.316.605-.406V8.835a1.834 1.834 0 0 1-.996-2.41L7.636 3.7.45 10.881c-.6.605-.6 1.584 0 2.189l10.48 10.477a1.545 1.545 0 0 0 2.186 0l10.43-10.43a1.544 1.544 0 0 0 0-2.187"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gitbook.svg����������������������������������0000664�0000000�0000000�00000002115�14753064456�0025260�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.513 1.097c-.645 0-1.233.34-2.407 1.017L3.675 5.82A7.23 7.23 0 0 0 0 12.063v.236a7.23 7.23 0 0 0 3.667 6.238L7.69 20.86c2.354 1.36 3.531 2.042 4.824 2.042 1.292.001 2.47-.678 4.825-2.038l4.251-2.453c1.177-.68 1.764-1.02 2.087-1.579.323-.56.324-1.24.323-2.6v-2.63a1.04 1.04 0 0 0-1.558-.903l-8.728 5.024c-.587.337-.88.507-1.201.507-.323 0-.616-.168-1.204-.506l-5.904-3.393c-.297-.171-.446-.256-.565-.271a.6.6 0 0 0-.634.368c-.045.111-.045.282-.043.625.002.252 0 .378.025.494.053.259.189.493.387.667.089.077.198.14.416.266l6.315 3.65c.589.34.884.51 1.207.51s.617-.17 1.206-.509l7.74-4.469c.202-.116.302-.172.377-.13.075.044.075.16.075.392v1.193c0 .34.001.51-.08.649-.08.14-.227.224-.522.394l-6.382 3.685c-1.178.68-1.767 1.02-2.413 1.02s-1.236-.34-2.412-1.022l-5.97-3.452-.043-.025a4.1 4.1 0 0 1-2.031-3.52V11.7a2.25 2.25 0 0 1 1.12-1.944 1.98 1.98 0 0 1 1.982-.001l4.946 2.858c1.174.679 1.762 1.019 2.407 1.02.645 0 1.233-.34 2.41-1.017l7.482-4.306a1.091 1.091 0 0 0 0-1.891L14.92 2.11c-1.175-.675-1.762-1.013-2.406-1.013Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gitconnected.svg�����������������������������0000664�0000000�0000000�00000001211�14753064456�0026264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.734 5.42C2.865 5.42 0 8.405 0 12.035c0 3.607 2.842 6.545 6.688 6.545 3.859 0 6.708-2.936 6.755-6.58l.002-.08c.03-2.19 1.504-3.967 3.797-3.967 2.268 0 3.87 1.838 3.87 4.082 0 2.222-1.483 4.037-3.823 4.037-1.334 0-2.43-.657-3.107-1.656a7.6 7.6 0 0 1-1.41 2.53c1.163 1.013 2.71 1.634 4.47 1.634 3.893 0 6.758-2.986 6.758-6.592 0-3.63-2.841-6.568-6.71-6.568-3.828 0-6.672 2.922-6.733 6.5-.015.04 0 .101 0 .115 0 2.222-1.482 4.037-3.823 4.037-2.244 0-3.845-1.84-3.845-4.084 0-2.221 1.482-4.035 3.799-4.035 1.232 0 2.254.554 2.943 1.41l1.385-2.449A6.75 6.75 0 0 0 6.734 5.42"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gitea.svg������������������������������������0000664�0000000�0000000�00000003311�14753064456�0024712�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.209 4.603c-.247 0-.525.02-.84.088-.333.07-1.28.283-2.054 1.027C-.403 7.25.035 9.685.089 10.052c.065.446.263 1.687 1.21 2.768 1.749 2.141 5.513 2.092 5.513 2.092s.462 1.103 1.168 2.119c.955 1.263 1.936 2.248 2.89 2.367 2.406 0 7.212-.004 7.212-.004s.458.004 1.08-.394c.535-.324 1.013-.893 1.013-.893s.492-.527 1.18-1.73c.21-.37.385-.729.538-1.068 0 0 2.107-4.471 2.107-8.823-.042-1.318-.367-1.55-.443-1.627-.156-.156-.366-.153-.366-.153s-4.475.252-6.792.306c-.508.011-1.012.023-1.512.027v4.474l-.634-.301c0-1.39-.004-4.17-.004-4.17-1.107.016-3.405-.084-3.405-.084s-5.399-.27-5.987-.324c-.187-.011-.401-.032-.648-.032zm.354 1.832h.111s.271 2.269.6 3.597C5.549 11.147 6.22 13 6.22 13s-.996-.119-1.641-.348c-.99-.324-1.409-.714-1.409-.714s-.73-.511-1.096-1.52C1.444 8.73 2.021 7.7 2.021 7.7s.32-.859 1.47-1.145c.395-.106.863-.12 1.072-.12m8.33 2.554c.26.003.509.127.509.127l.868.422-.529 1.075a.69.69 0 0 0-.614.359.69.69 0 0 0 .072.756l-.939 1.924a.69.69 0 0 0-.66.527.69.69 0 0 0 .347.763.686.686 0 0 0 .867-.206.69.69 0 0 0-.069-.882l.916-1.874a.7.7 0 0 0 .237-.02.66.66 0 0 0 .271-.137 9 9 0 0 1 1.016.512.76.76 0 0 1 .286.282c.073.21-.073.569-.073.569-.087.29-.702 1.55-.702 1.55a.69.69 0 0 0-.676.477.681.681 0 1 0 1.157-.252c.073-.141.141-.282.214-.431.19-.397.515-1.16.515-1.16.035-.066.218-.394.103-.814-.095-.435-.48-.638-.48-.638-.467-.301-1.116-.58-1.116-.58s0-.156-.042-.27a.7.7 0 0 0-.148-.241l.516-1.062 2.89 1.401s.48.218.583.619c.073.282-.019.534-.069.657-.24.587-2.1 4.317-2.1 4.317s-.232.554-.748.588a1.1 1.1 0 0 1-.393-.045l-.202-.08-4.31-2.1s-.417-.218-.49-.596c-.083-.31.104-.691.104-.691l2.073-4.272s.183-.37.466-.497a.9.9 0 0 1 .35-.077"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gitee.svg������������������������������������0000664�0000000�0000000�00000001032�14753064456�0024714�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.984 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zm6.09 5.333c.328 0 .593.266.592.593v1.482a.594.594 0 0 1-.593.592H9.777c-.982 0-1.778.796-1.778 1.778v5.63c0 .327.266.592.593.592h5.63c.982 0 1.778-.796 1.778-1.778v-.296a.593.593 0 0 0-.592-.593h-4.15a.59.59 0 0 1-.592-.592v-1.482a.593.593 0 0 1 .593-.592h6.815c.327 0 .593.265.593.592v3.408a4 4 0 0 1-4 4H5.926a.593.593 0 0 1-.593-.593V9.778a4.444 4.444 0 0 1 4.445-4.444h8.296Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gitextensions.svg����������������������������0000664�0000000�0000000�00000001067�14753064456�0026532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.504 0-4.631 4.875 2.533.004c0 2.604-1.327 4.58-3.32 6.16l-6.393 5.065c-2.559 2.027-3.859 4.392-3.859 7.886.01-.009 4.283.026 4.283 0 0-1.91.73-3.581 2.223-4.793l6.723-5.455c2.57-2.085 4.514-4.86 4.517-8.867h2.586zM1.834 4.873c0 3.78 1.833 6.398 4.148 8.518l1.11.88 3.222-2.554-1.078-.858C7.43 9.22 6.117 7.383 6.117 4.873c-1.423-.004-2.856 0-4.283 0m12.592 10.115-3.178 2.58.992.787c1.82 1.593 3.166 3.33 3.166 5.635h4.166c-.009-3.633-1.788-6.1-4.066-8.144-.356-.28-.722-.572-1.08-.858"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gitforwindows.svg����������������������������0000664�0000000�0000000�00000001541�14753064456�0026531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.976 0a1.54 1.54 0 0 0-1.093.453L8.707 2.629l2.76 2.76a1.834 1.834 0 0 1 2.325 2.34l.91.91 3.277-3.276-4.91-4.91A1.54 1.54 0 0 0 11.975 0M7.638 3.698 5.926 5.41l4.91 4.91c.153.153.331.267.521.342V8.83a1.8 1.8 0 0 1-.602-.401 1.84 1.84 0 0 1-.396-2.01Zm10.916 2.24-3.276 3.276 1.174 1.175a1.838 1.838 0 1 1-1.101 1.037l-1.143-1.142-.588.588a1.546 1.546 0 0 0 0 2.187l4.993 4.993 4.934-4.934a1.547 1.547 0 0 0 0-2.187zM5.34 5.996.453 10.883a1.546 1.546 0 0 0 0 2.186l4.84 4.84 4.887-4.888a1.547 1.547 0 0 0 0-2.186zm7.53 2.95v1.498c.05-.04.104-.077.151-.124l.611-.611zm-1.513 4.222a1.5 1.5 0 0 0-.635.376L5.825 18.44l5.107 5.106a1.546 1.546 0 0 0 2.186 0l4.896-4.897-5.106-5.106c-.012-.012-.026-.02-.039-.032v1.962a1.9 1.9 0 0 1 .487.348 1.84 1.84 0 1 1-2.601 0 1.8 1.8 0 0 1 .602-.402z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/github.svg�����������������������������������0000664�0000000�0000000�00000001426�14753064456�0025110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/githubactions.svg����������������������������0000664�0000000�0000000�00000003116�14753064456�0026467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.984 13.836a.5.5 0 0 1-.353-.146l-.745-.743a.5.5 0 1 1 .706-.708l.392.391 1.181-1.18a.5.5 0 0 1 .708.707l-1.535 1.533a.5.5 0 0 1-.354.146m9.353-.147 1.534-1.532a.5.5 0 0 0-.707-.707l-1.181 1.18-.392-.391a.5.5 0 1 0-.706.708l.746.743a.497.497 0 0 0 .706-.001M4.527 7.452l2.557-1.585A1 1 0 0 0 7.09 4.17L4.533 2.56A1 1 0 0 0 3 3.406v3.196a1.001 1.001 0 0 0 1.527.85m2.03-2.436L4 6.602V3.406zM24 12.5c0 1.93-1.57 3.5-3.5 3.5a3.5 3.5 0 0 1-3.46-3h-2.08a3.5 3.5 0 0 1-3.46 3 3.5 3.5 0 0 1-3.46-3h-.558c-.972 0-1.85-.399-2.482-1.042V17c0 1.654 1.346 3 3 3h.04c.244-1.693 1.7-3 3.46-3 1.93 0 3.5 1.57 3.5 3.5S13.43 24 11.5 24a3.5 3.5 0 0 1-3.46-3H8c-2.206 0-4-1.794-4-4V9.899A5.01 5.01 0 0 1 0 5c0-2.757 2.243-5 5-5s5 2.243 5 5a5.005 5.005 0 0 1-4.952 4.998A2.48 2.48 0 0 0 7.482 12h.558c.244-1.693 1.7-3 3.46-3a3.5 3.5 0 0 1 3.46 3h2.08a3.5 3.5 0 0 1 3.46-3c1.93 0 3.5 1.57 3.5 3.5m-15 8c0 1.378 1.122 2.5 2.5 2.5s2.5-1.122 2.5-2.5-1.122-2.5-2.5-2.5S9 19.122 9 20.5M5 9c2.206 0 4-1.794 4-4S7.206 1 5 1 1 2.794 1 5s1.794 4 4 4m9 3.5c0-1.378-1.122-2.5-2.5-2.5S9 11.122 9 12.5s1.122 2.5 2.5 2.5 2.5-1.122 2.5-2.5m9 0c0-1.378-1.122-2.5-2.5-2.5S18 11.122 18 12.5s1.122 2.5 2.5 2.5 2.5-1.122 2.5-2.5m-13 8a.5.5 0 1 0 1 0 .5.5 0 0 0-1 0m2 0a.5.5 0 1 0 1 0 .5.5 0 0 0-1 0m12 0c0 1.93-1.57 3.5-3.5 3.5a3.5 3.5 0 0 1-3.46-3.002q-.01.003-.021.005l-.506.017h-.017a.5.5 0 0 1-.016-.999l.506-.017c.018-.002.035.006.052.007A3.5 3.5 0 0 1 20.5 17c1.93 0 3.5 1.57 3.5 3.5m-1 0c0-1.378-1.122-2.5-2.5-2.5S18 19.122 18 20.5s1.122 2.5 2.5 2.5 2.5-1.122 2.5-2.5"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/githubcopilot.svg����������������������������0000664�0000000�0000000�00000003072�14753064456�0026501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.922 16.997C23.061 18.492 18.063 22.02 12 22.02S.939 18.492.078 16.997A.6.6 0 0 1 0 16.741v-2.869a1 1 0 0 1 .053-.22c.372-.935 1.347-2.292 2.605-2.656.167-.429.414-1.055.644-1.517a10 10 0 0 1-.052-1.086c0-1.331.282-2.499 1.132-3.368.397-.406.89-.717 1.474-.952C7.255 2.937 9.248 1.98 11.978 1.98s4.767.957 6.166 2.093c.584.235 1.077.546 1.474.952.85.869 1.132 2.037 1.132 3.368 0 .368-.014.733-.052 1.086.23.462.477 1.088.644 1.517 1.258.364 2.233 1.721 2.605 2.656a.8.8 0 0 1 .053.22v2.869a.6.6 0 0 1-.078.256m-11.75-5.992h-.344a4 4 0 0 1-.355.508c-.77.947-1.918 1.492-3.508 1.492-1.725 0-2.989-.359-3.782-1.259a2 2 0 0 1-.085-.104L4 11.746v6.585c1.435.779 4.514 2.179 8 2.179s6.565-1.4 8-2.179v-6.585l-.098-.104s-.033.045-.085.104c-.793.9-2.057 1.259-3.782 1.259-1.59 0-2.738-.545-3.508-1.492a4 4 0 0 1-.355-.508m2.328 3.25c.549 0 1 .451 1 1v2c0 .549-.451 1-1 1s-1-.451-1-1v-2c0-.549.451-1 1-1m-5 0c.549 0 1 .451 1 1v2c0 .549-.451 1-1 1s-1-.451-1-1v-2c0-.549.451-1 1-1m3.313-6.185c.136 1.057.403 1.913.878 2.497.442.544 1.134.938 2.344.938 1.573 0 2.292-.337 2.657-.751.384-.435.558-1.15.558-2.361 0-1.14-.243-1.847-.705-2.319-.477-.488-1.319-.862-2.824-1.025-1.487-.161-2.192.138-2.533.529-.269.307-.437.808-.438 1.578v.021q0 .397.063.893m-1.626 0q.063-.496.063-.894v-.02c-.001-.77-.169-1.271-.438-1.578-.341-.391-1.046-.69-2.533-.529-1.505.163-2.347.537-2.824 1.025-.462.472-.705 1.179-.705 2.319 0 1.211.175 1.926.558 2.361.365.414 1.084.751 2.657.751 1.21 0 1.902-.394 2.344-.938.475-.584.742-1.44.878-2.497"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/githubpages.svg������������������������������0000664�0000000�0000000�00000006526�14753064456�0026136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.088 13.126h-.296V9.858h.998c.815 0 1.094.47 1.094.98s-.28.98-1.094.98h-.701zm0-1.582h.74a.642.642 0 0 0 .733-.705.642.642 0 0 0-.732-.706h-.741zm2.881-.37a1.9 1.9 0 0 0-.653.11v-.262a1.8 1.8 0 0 1 .653-.118c.654 0 .824.297.824.732v1.49h-.17l-.066-.174a1.14 1.14 0 0 1-.657.218.663.663 0 0 1-.763-.702c0-.37.205-.645.776-.68l.575-.035v-.122c0-.318-.113-.457-.519-.457m-.078.85c-.31.03-.445.192-.445.445 0 .196.048.431.462.431a1.06 1.06 0 0 0 .58-.174v-.758zm1.86.493a.25.25 0 0 0-.083.16c0 .11.053.158.166.17l.74.088c.41.044.598.205.598.584 0 .532-.532.74-1.133.74-.61 0-.976-.178-.976-.657a.61.61 0 0 1 .449-.575v-.005a.32.32 0 0 1-.14-.287.4.4 0 0 1 .166-.297.75.75 0 0 1-.349-.714c0-.449.192-.82.85-.82a1.4 1.4 0 0 1 .349.044h.74v.165l-.365.105a.9.9 0 0 1 .126.505c0 .449-.192.82-.85.82a1.4 1.4 0 0 1-.288-.027zm.127.588c-.288.065-.532.2-.532.48 0 .322.244.413.693.413.435 0 .845-.109.845-.48 0-.221-.105-.309-.37-.34zm.727-1.381c0-.288-.056-.554-.566-.554s-.567.266-.567.554.057.553.567.553.566-.266.566-.554zm1.637-.82c.74 0 .828.506.828 1.133v.14h-1.438c.018.379.118.723.61.723a1.7 1.7 0 0 0 .719-.122v.261a1.8 1.8 0 0 1-.719.131c-.736 0-.915-.505-.915-1.133s.179-1.133.915-1.133m-.61 1.024h1.133c0-.387-.022-.753-.523-.753-.506 0-.597.36-.61.753m2.601-.052c.619.057.767.266.767.623 0 .336-.213.671-.876.671a2.2 2.2 0 0 1-.649-.109V12.8a1.9 1.9 0 0 0 .654.1c.453 0 .575-.192.575-.397 0-.2-.061-.34-.492-.374-.632-.057-.763-.28-.763-.58 0-.31.2-.645.815-.645a1.6 1.6 0 0 1 .627.11v.26a1.8 1.8 0 0 0-.631-.1c-.432 0-.523.162-.523.376 0 .19.078.29.496.326m-20.787-.659H1.38a.05.05 0 0 0-.05.05v.522a.05.05 0 0 0 .05.05h.416v.649a1.3 1.3 0 0 1-.351.032c-.305 0-.731-.112-.731-1.048s.443-1.06.86-1.06a1.7 1.7 0 0 1 .614.094.05.05 0 0 0 .06-.05l.12-.504a.05.05 0 0 0-.02-.039 1.7 1.7 0 0 0-.903-.165C.73 9.748 0 10.05 0 11.508s.837 1.675 1.542 1.675a1.74 1.74 0 0 0 .938-.25.04.04 0 0 0 .016-.038v-1.628a.05.05 0 0 0-.05-.05m5.545-1.294a.05.05 0 0 0-.05-.05H7.34a.05.05 0 0 0-.05.05v1.161h-.936V9.923a.05.05 0 0 0-.05-.05h-.6a.05.05 0 0 0-.05.05v3.145a.05.05 0 0 0 .05.05h.6a.05.05 0 0 0 .05-.05v-1.345h.937l-.002 1.345a.05.05 0 0 0 .05.05h.603a.05.05 0 0 0 .05-.05zm-4.389.412a.388.388 0 1 0-.387.392.39.39 0 0 0 .387-.392m-.042 2.068v-1.451a.05.05 0 0 0-.05-.05h-.6a.06.06 0 0 0-.051.056v2.08c0 .06.038.079.087.079h.54c.06 0 .074-.03.074-.08zm6.764-1.497h-.597a.05.05 0 0 0-.05.05v1.542a.67.67 0 0 1-.367.11c-.215 0-.272-.097-.272-.307v-1.344a.05.05 0 0 0-.05-.05h-.604a.05.05 0 0 0-.05.05v1.446c0 .626.348.779.828.779a1.4 1.4 0 0 0 .71-.217 1 1 0 0 0 .022.128.05.05 0 0 0 .044.027l.385-.002a.05.05 0 0 0 .05-.05v-2.112a.05.05 0 0 0-.05-.05zm1.662-.07a1.1 1.1 0 0 0-.569.15V9.923a.05.05 0 0 0-.05-.05h-.602a.05.05 0 0 0-.05.05v3.145a.05.05 0 0 0 .05.05h.418a.05.05 0 0 0 .044-.027 1 1 0 0 0 .025-.144 1.08 1.08 0 0 0 .713.233c.548 0 .862-.278.862-1.248s-.502-1.095-.841-1.095zm-.235 1.771a.7.7 0 0 1-.347-.1v-.996a.8.8 0 0 1 .308-.1c.215-.019.422.046.422.558 0 .54-.094.647-.383.639zm-6.475-1.706h-.45l-.002-.595q.001-.034-.037-.034h-.615q-.036 0-.036.033v.615l-.33.08a.05.05 0 0 0-.035.048v.387a.05.05 0 0 0 .05.05h.315v.93c0 .692.484.76.812.76a1.4 1.4 0 0 0 .357-.06.05.05 0 0 0 .028-.044l.001-.426a.05.05 0 0 0-.05-.05c-.026 0-.094.01-.163.01-.221 0-.296-.102-.296-.236v-.884h.451a.05.05 0 0 0 .05-.05v-.484a.05.05 0 0 0-.05-.05"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/githubsponsors.svg���������������������������0000664�0000000�0000000�00000001372�14753064456�0026717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.625 1.499c-2.32 0-4.354 1.203-5.625 3.03-1.271-1.827-3.305-3.03-5.625-3.03C3.129 1.499 0 4.253 0 8.249c0 4.275 3.068 7.847 5.828 10.227a33 33 0 0 0 5.616 3.876l.028.017.008.003-.001.003c.163.085.342.126.521.125.179.001.358-.041.521-.125l-.001-.003.008-.003.028-.017a33 33 0 0 0 5.616-3.876C20.932 16.096 24 12.524 24 8.249c0-3.996-3.129-6.75-6.375-6.75m-.919 15.275a30.8 30.8 0 0 1-4.703 3.316l-.004-.002-.004.002a31 31 0 0 1-4.703-3.316c-2.677-2.307-5.047-5.298-5.047-8.523 0-2.754 2.121-4.5 4.125-4.5 2.06 0 3.914 1.479 4.544 3.684.143.495.596.797 1.086.796.49.001.943-.302 1.085-.796.63-2.205 2.484-3.684 4.544-3.684 2.004 0 4.125 1.746 4.125 4.5 0 3.225-2.37 6.216-5.048 8.523"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gitignoredotio.svg���������������������������0000664�0000000�0000000�00000002003�14753064456�0026644�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.08 7.143c-.958.57-1.977 1.065-3.743 1.02-2.082 0-3.55 1.11-3.55 2.91 0 1.035.405 1.74 1.409 2.28-.57.36-.884.93-.884 1.516 0 .84.719 1.575 2.456 1.575h1.257c.794 0 1.153.33 1.153.795 0 .525-.344.915-1.841.915-1.513 0-1.812-.315-1.812-1.005H7.428c0 1.575.794 2.565 3.849 2.565 2.815 0 4.252-1.005 4.252-2.64 0-1.335-1.183-2.31-3.024-2.31h-1.318c-.764 0-.869-.24-.869-.48 0-.18.09-.36.255-.45.284.06.584.09.928.09 2.052 0 3.37-1.125 3.37-2.67 0-1.036-.54-1.62-1.543-2.056 1.003 0 1.737-.09 2.291-.315zm-3.683 2.565c.793 0 1.212.42 1.212 1.305 0 .915-.434 1.395-1.212 1.395-.734 0-1.213-.495-1.213-1.365 0-.825.464-1.335 1.213-1.335m9.135-5.423c-.826 0-1.412.588-1.412 1.341 0 .77.586 1.342 1.412 1.342s1.396-.573 1.396-1.341c0-.754-.57-1.341-1.396-1.341zm1.426 4.19h-4.55v1.627h2.178v4.747h-2.253v1.627H24V14.85h-2.042zM3.933 13.933l1.02 1.02-2.477 2.476-.62-.62v-.8zm-2.695-.219v2.477L0 14.952zm2.257-.219-1.638 1.639v-2.039l.619-.619 1.019 1.02z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gitkraken.svg��������������������������������0000664�0000000�0000000�00000002545�14753064456�0025610�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.225 6.252a.478.478 0 0 0-.923.171.8.8 0 0 0 .026.171c2.15 5.71-.751 12.077-6.46 14.226a11 11 0 0 1-2.426.607v-5.155c.33-.066.646-.158.962-.264v4.338c5.445-1.332 8.794-6.817 7.463-12.262a10.15 10.15 0 0 0-4.958-6.487.47.47 0 0 0-.646.185.47.47 0 0 0 .185.646c4.443 2.452 6.051 8.056 3.6 12.499a9.13 9.13 0 0 1-4.681 4.1v-3.836a1.47 1.47 0 0 0 1.028-1.398c0-.527-.264-1.002-.725-1.266.343-3.309 1.859-2.439 1.859-3.493v-.62c0-1.582-3.665-6.737-5.38-6.856h-.316c-1.714.119-5.379 5.274-5.379 6.856v.62c0 1.054 1.503.184 1.859 3.493a1.46 1.46 0 0 0-.725 1.266c0 .646.422 1.2 1.028 1.398v3.836C3.91 17.168 1.59 11.83 3.448 7.11a9.24 9.24 0 0 1 4.1-4.68.48.48 0 0 0 .185-.66.49.49 0 0 0-.422-.237.44.44 0 0 0-.224.065 10.14 10.14 0 0 0-3.982 13.791 10.15 10.15 0 0 0 6.487 4.958V16.02c.316.106.633.198.962.264v5.155C4.503 20.636.257 15.085 1.062 9.034a11 11 0 0 1 .606-2.426.49.49 0 0 0-.277-.62.494.494 0 0 0-.62.277c-2.333 6.21.805 13.131 7.015 15.452 1.2.448 2.452.699 3.73.751v-6.09c.172.012.489.012.489.012s.316 0 .488-.013v6.078c6.631-.277 11.773-5.867 11.496-12.499a12.5 12.5 0 0 0-.764-3.704m-9.019 6.842a.995.995 0 0 1 1.398 0 .995.995 0 0 1 0 1.398.995.995 0 0 1-1.398 0 .99.99 0 0 1 0-1.398m-4.43 1.398a.98.98 0 0 1-1.384 0 .995.995 0 0 1 0-1.398.995.995 0 0 1 1.398 0 .983.983 0 0 1-.013 1.398z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gitlab.svg�����������������������������������0000664�0000000�0000000�00000000707�14753064456�0025071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.6 9.593-.033-.086L20.3.98a.85.85 0 0 0-.336-.405.875.875 0 0 0-1 .054.88.88 0 0 0-.29.44L16.47 7.818H7.537L5.333 1.07a.86.86 0 0 0-.29-.441.875.875 0 0 0-1-.054.86.86 0 0 0-.336.405L.433 9.502l-.032.086a6.066 6.066 0 0 0 2.012 7.01l.01.009.03.021 4.977 3.727 2.462 1.863 1.5 1.132a1.01 1.01 0 0 0 1.22 0l1.499-1.132 2.461-1.863 5.006-3.75.013-.01a6.07 6.07 0 0 0 2.01-7.002"/></svg>���������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gitlfs.svg�����������������������������������0000664�0000000�0000000�00000000355�14753064456�0025116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.967.304 0 7.215v9.68l11.79 6.802V14.02l11.96-6.91-4.383-2.53-11.959 6.905v3.887l-2.775-1.601V9.886l11.965-6.91zM24 7.545 12.29 14.31v9.387L24 16.929V7.547z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gitpod.svg�����������������������������������0000664�0000000�0000000�00000001026�14753064456�0025110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.033 1.195a2.387 2.387 0 0 1-.87 3.235l-6.98 4.04a.6.6 0 0 0-.3.522v6.342a.6.6 0 0 0 .3.521l5.524 3.199a.59.59 0 0 0 .586 0l5.527-3.199a.6.6 0 0 0 .299-.52V11.39l-4.969 2.838a2.326 2.326 0 0 1-3.19-.9 2.39 2.39 0 0 1 .89-3.23l7.108-4.062C20.123 4.8 22.8 6.384 22.8 8.901v6.914a4.52 4.52 0 0 1-2.245 3.919l-6.345 3.672a4.41 4.41 0 0 1-4.422 0l-6.344-3.672A4.52 4.52 0 0 1 1.2 15.816V8.51a4.52 4.52 0 0 1 2.245-3.918l7.393-4.28a2.326 2.326 0 0 1 3.195.883"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gitter.svg�����������������������������������0000664�0000000�0000000�00000000244�14753064456�0025121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.501 4.001H10.5V24H8.501zm6.999 0V24h-2V4.001zM3.5 0h2.001v15H3.5zm15 4.001h2V15h-2z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/glassdoor.svg��������������������������������0000664�0000000�0000000�00000001071�14753064456�0025617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.11 0a.124.124 0 0 0-.136.128v3.45c0 .068.054.12.121.128 2.62.172 4.61.95 4.61 3.681h-5.619a.134.134 0 0 0-.135.135v8.964c0 .075.06.135.135.135h10.003c.075 0 .135-.06.135-.135V7.342c0-2.237-.8-4.056-2.416-5.328C19.32.847 17.088.143 14.11.001M.91 7.388a.134.134 0 0 0-.134.135v8.956c0 .075.06.135.135.135H6.53c0 2.731-1.99 3.51-4.61 3.681a.13.13 0 0 0-.119.127v3.451c0 .075.06.135.135.127 2.978-.142 5.208-.846 6.697-2.013 1.616-1.272 2.416-3.09 2.416-5.328V7.522a.134.134 0 0 0-.135-.135z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/glide.svg������������������������������������0000664�0000000�0000000�00000000255�14753064456�0024711�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.8 17.52a6.72 6.72 0 0 1 6.72-6.72H24L10.8 24ZM0 13.2 13.2 0v6.48a6.72 6.72 0 0 1-6.72 6.72z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/glitch.svg�����������������������������������0000664�0000000�0000000�00000007450�14753064456�0025103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.146 2.393c-.618 0-1.794 1.61-1.794 1.61s-.453 0-1.803.07-2.553.67-4.159 1.934S.011 8.537.011 8.537s1.498.507 1.498.781c0 .275-1.311.6-1.311.6.845 1.081 3.467 2.09 4.13 2.09h.524c-1.086.214-2.136.804-3.462 1.847-1.606 1.264-1.379 2.53-1.379 2.53s1.498.507 1.498.781c0 .275-1.311.6-1.311.6.845 1.081 3.467 2.09 4.13 2.09.635 0 1.079.018 1.882-.132.06.134.686 1.461 1.965 1.736 1.347.29 2.092.062 2.092.062s.067-.595-.24-1.189c1.17.115 2.495.145 3.792-.052 3.603-.547 5.382-1.413 5.963-1.528s3.904 1.476 4.106 1.104c.203-.373-.73-1.188-.295-2.288.434-1.1-.534-1.827.003-2.705s.43-2.219.292-2.29c-.295-.15-3.423 1.407-4.106 1.28-1.686-.311-1.377-.513-3.647-1.027-.907-.206-.781-.084-.982-.236-.134-.102-.265-.116-.455-.306 3.015-.543 4.552-1.275 5.084-1.38.582-.116 3.904 1.476 4.106 1.103.202-.372-.73-1.187-.295-2.288.434-1.1-.534-1.826.003-2.705.537-.878.43-2.218.292-2.289-.295-.151-3.423 1.407-4.106 1.28-1.686-.312-1.377-.513-3.647-1.027-.907-.206-.781-.084-.982-.236s-.39-.106-.782-.74c-.392-.635-4.916-1.61-5.225-1.61M8.09 5.158l.04.002.111.006.397.02a287 287 0 0 1 1.59.088c.348.02.64.038.865.054.861.06 2.172.26 3.177.464 1.556.315 2.82.778 4.81 1.673l.677.305c.131.059.195.228.143.377-.052.15-.201.222-.333.163l-.675-.305c-1.962-.881-3.198-1.335-4.711-1.64-.988-.2-2.28-.397-3.12-.457a77 77 0 0 0-.859-.054l-.384-.022c-.383-.021-.793-.044-1.203-.065l-.126-.006a7 7 0 0 1 .339 1.187q.03.165.045.32c.034.336-.028.816-.162 1.42q-.067.3-.153.624a21 21 0 0 1-.29.995l-.02.064-.008.023c-.05.15-.198.226-.33.17-.133-.057-.2-.225-.15-.375l.007-.02.089-.283c.072-.236.144-.487.212-.741q.083-.312.146-.599c.12-.54.175-.966.15-1.213a3 3 0 0 0-.038-.269 6 6 0 0 0-.21-.796 8 8 0 0 0-.264-.685c-.091-.199.041-.435.238-.425m-1.653.17c.066.002.13.033.179.091a5 5 0 0 1 .417.627c.224.404.374.816.415 1.221q.033.348-.038.771c-.044.27-.115.555-.206.845a8 8 0 0 1-.25.688c-.063.144-.216.203-.343.132-.127-.07-.18-.245-.117-.389l.018-.044a8 8 0 0 0 .21-.582c.082-.263.146-.518.185-.755a2.4 2.4 0 0 0 .032-.6c-.03-.306-.153-.64-.34-.978a4 4 0 0 0-.356-.538.32.32 0 0 1 .01-.41.24.24 0 0 1 .184-.08zm-3.042.97c.62 0 1.122.57 1.122 1.272 0 .704-.503 1.273-1.122 1.273-.555 0-1.016-.457-1.106-1.058.077.452.428.793.849.793.477 0 .864-.44.864-.981 0-.542-.387-.981-.864-.981-.474 0-.86.432-.865.968V7.57c0-.703.502-1.273 1.122-1.273zM2.88 7.622a.234.265 0 0 1 .233.266.234.265 0 0 1-.233.265.234.265 0 0 1-.234-.265.234.265 0 0 1 .234-.266m3.329 4.253.006.013-.115.005zm1.88 1.13.04.003.111.005.397.02a287 287 0 0 1 1.59.088c.348.02.64.039.865.055.861.06 2.172.26 3.177.463 1.556.315 2.82.778 4.81 1.673l.677.305c.131.06.195.228.143.377-.052.15-.201.222-.333.163l-.675-.305c-1.962-.881-3.198-1.334-4.711-1.64-.988-.2-2.28-.397-3.12-.456a77 77 0 0 0-1.243-.077l-1.203-.065-.126-.006a7 7 0 0 1 .339 1.187q.03.165.045.32c.034.336-.028.817-.162 1.42q-.067.301-.153.625a21 21 0 0 1-.31 1.058l-.008.023c-.05.15-.198.226-.33.17-.133-.057-.2-.224-.15-.375l.007-.02.089-.283c.072-.236.144-.487.212-.74q.083-.313.146-.6c.12-.539.175-.966.15-1.213a3 3 0 0 0-.038-.268 6 6 0 0 0-.21-.796 8 8 0 0 0-.264-.686c-.091-.198.041-.434.238-.424zm-1.653.17c.066.002.13.033.179.091a5 5 0 0 1 .417.627c.224.405.374.816.415 1.222q.033.347-.038.77c-.044.27-.115.555-.206.845a8 8 0 0 1-.25.688c-.063.144-.216.204-.343.133s-.18-.246-.117-.39l.07-.173a8 8 0 0 0 .158-.453c.082-.262.146-.518.185-.755a2.4 2.4 0 0 0 .032-.6c-.03-.305-.153-.64-.34-.978a4 4 0 0 0-.356-.537.32.32 0 0 1 .01-.411.24.24 0 0 1 .184-.079m-3.042.97c.62 0 1.122.57 1.122 1.273s-.503 1.273-1.122 1.273c-.555 0-1.016-.458-1.106-1.058.077.451.428.792.849.792.477 0 .864-.439.864-.98 0-.543-.387-.982-.864-.982-.474 0-.86.433-.865.969v-.014c0-.703.502-1.273 1.122-1.273m-.514 1.326a.234.265 0 0 1 .233.265.234.265 0 0 1-.233.265.234.265 0 0 1-.234-.265.234.265 0 0 1 .234-.265"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/globus.svg�����������������������������������0000664�0000000�0000000�00000011230�14753064456�0025113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.998 4.39c-3.825 0-7.15 1.695-8.787 4.16-.39.022-.78.041-1.17.067-.582.041-1.32.56-1.427 1.24L.432 10.99c-.18 1.125-.327 2.011-.426 3.16-.033.403.065.78.262 1.01.263.312.781.386.986.41q1.094.1 2.164.18c1.698 2.302 4.906 3.86 8.58 3.86s6.883-1.56 8.581-3.862c.442-.034.88-.064 1.326-.104.624-.057 1.2-.582 1.338-1.222.18-.821.24-1.14.305-1.55q.037-.197.072-.454c0-.025.017-.114.033-.229.041-.246.1-.64.15-.92l.18-1.207a1.09 1.09 0 0 0-.27-.935c-.214-.246-.585-.419-.954-.443a160 160 0 0 0-1.96-.12c-1.63-2.473-4.962-4.173-8.8-4.173Zm0 .33c3.594 0 6.725 1.547 8.327 3.821l-.428-.02c-.773-.98-1.858-1.807-3.156-2.398-.336.09-.73.173-1.148.238a13.6 13.6 0 0 1 1.101 2.034l-.556-.014a14 14 0 0 0-1.096-1.945c-.828.106-1.772.163-2.757.18v.294h-.433q-.03 0-.06.004v-.299a25 25 0 0 1-2.831-.172 14 14 0 0 0-1.09 1.932l-.28.006h-.106l.007-.108a1.5 1.5 0 0 0-.01-.255 14 14 0 0 1 .93-1.649 11 11 0 0 1-1.173-.238c-1.283.59-2.354 1.406-3.12 2.373q-.218.01-.435.02C5.29 6.26 8.414 4.72 11.998 4.72m-.213.417c-.686.01-1.357.084-2.003.207a12 12 0 0 0-.508.648c.77.082 1.625.13 2.51.14zm.5 0v.986a25 25 0 0 0 2.44-.14c-.28-.378-.477-.608-.51-.649a12 12 0 0 0-1.93-.197m-3.265.37q-.506.135-.986.304c.213.04.443.074.68.107.108-.156.216-.295.306-.41Zm5.967 0c.09.116.188.256.294.403.23-.033.453-.074.666-.107a9 9 0 0 0-.96-.295Zm-3.004 1.92h.476c.189 0 .36.09.475.247a.8.8 0 0 1 .14.607c-.024.205-.057.402-.082.608.5 0 1.01.01 1.51.017.189 0 .362.09.477.246a.8.8 0 0 1 .138.598c-.213 1.666-.468 3.333-.722 5.008-.066.435-.41.77-.78.779-.722.008-1.453.01-2.175.01a.6.6 0 0 1-.485-.246.81.81 0 0 1-.138-.592V14.7c.32-2.421.673-4.844 1.01-7.265.057 0 .106 0 .156-.008zm-5.567.141c.18 0 .33.074.436.213.115.148.156.36.115.582-.402 2.373-.746 4.705-.984 7.02-.214-.008-.42-.025-.633-.033a.65.65 0 0 1-.484-.256.78.78 0 0 1-.157-.575 93 93 0 0 1 1.043-6.91c.214-.008.418-.025.631-.033q.01.002.033-.008m3.884 1.33c.197 0 .362.081.477.23a.84.84 0 0 1 .13.606c-.237 1.683-.475 3.357-.697 5.032-.057.435-.394.764-.763.755a98 98 0 0 1-2.176-.074.66.66 0 0 1-.492-.261.78.78 0 0 1-.157-.575 119 119 0 0 1 .682-4.902c.066-.427.427-.77.805-.78q1.095-.022 2.19-.032m5.54.05c.213.008.427.007.64.015.198 0 .37.09.485.246.123.156.181.37.148.592a132 132 0 0 1-.625 4.234l.871-.023q.358-2.156.631-4.262c.05-.419.394-.737.772-.72l.69.023a87 87 0 0 1-.846 5.574c-.074.41-.426.755-.803.77-.73.034-1.453.067-2.184.09a.55.55 0 0 1-.476-.227.78.78 0 0 1-.123-.584 187 187 0 0 0 .82-5.729M4.185 9.06a.62.62 0 0 1 .492.205.78.78 0 0 1 .123.584q-.11.617-.205 1.222c-.304 0-.606.008-.91.008a.4.4 0 0 1-.387-.402c0-.025.033-.213.033-.213-.31.008-.69.01-1.002.017-.057.238-.475 3.045-.492 3.366.312.016.69.04 1.002.056.115-.64.165-.836.198-1.066-.04-.008-.14-.008-.182-.008-.205-.008-.384-.23-.352-.47.041-.286.082-.549.131-.844H4.07c.213 0 .46.073.402.45-.09.731-.213 1.808-.361 2.653-.082.435-.28.664-.73.672-.436 0-1.569-.08-2.225-.188-.197-.032-.41-.09-.54-.238-.133-.156-.173-.41-.173-.6 0-.508.27-2.668.582-4.318.074-.394.55-.738.935-.779a26 26 0 0 1 2.225-.107m16.548.04h.025c1.256.025 1.814.083 2.142.124.19.024.402.18.508.312.123.148.181.287.157.484q-.077.528-.165 1.07c-.295 0-.59-.01-.886-.01a.416.416 0 0 1-.395-.394c0-.024 0-.057.008-.08.008-.043.025-.084.033-.125l-.894-.025c-.025.18-.13.771-.172 1.025h1.502c.19 0 .361.076.476.215.115.148.164.279.131.533-.123 1.035-.237 1.56-.385 2.102-.098.378-.468.754-.845.795-1.076.123-1.405.133-2.2.174a.54.54 0 0 1-.476-.207.68.68 0 0 1-.115-.557 66 66 0 0 0 .213-1.232c.303-.017.606-.025.91-.034.205-.008.38.165.38.387 0 .033 0 .057-.009.09 0 .04-.01.09-.018.13.296-.007.592-.024.887-.04.033-.18.14-.73.182-.984-.296.008-1.43.007-1.43.007-.197.008-.344-.032-.46-.18-.114-.147-.195-.262-.212-.492.1-.919.31-2.06.352-2.388.05-.402.378-.7.756-.7m-7.937 1.24c-.033.247-.484 3.392-.533 3.745h.918c.04-.255.486-3.383.535-3.744zm-3.324.01c-.304 0-.616.006-.92.006-.041.255-.477 3.343-.51 3.696.304.008.609.007.912.015.025-.246.46-3.357.518-3.718zm-5.55 5.436.454.03c.732.823 1.691 1.522 2.813 2.044a11 11 0 0 1 1.19-.264 14 14 0 0 1-.9-1.613l.57.024c.29.575.6 1.09.88 1.508.862-.115 1.847-.18 2.865-.188v-1.25l.287.002.205-.002v1.25a24 24 0 0 1 2.784.188c.279-.42.587-.935.876-1.51.19-.007.38-.01.568-.018a15 15 0 0 1-.904 1.62q.665.109 1.183.269c1.137-.522 2.11-1.226 2.848-2.057l.443-.033C18.42 17.88 15.417 19.28 12 19.28c-3.417 0-6.414-1.401-8.078-3.494zm7.872 2.033a24 24 0 0 0-2.553.147c.27.377.485.624.56.715.64.115 1.304.189 1.993.197zm.492 0v1.059a12 12 0 0 0 1.914-.198 13 13 0 0 0 .55-.705 25 25 0 0 0-2.464-.156m-3.603.22a14 14 0 0 0-.73.134 9 9 0 0 0 1.076.336c-.1-.132-.223-.29-.346-.47m6.625.01a25 25 0 0 1-.336.46q.541-.133 1.058-.328c-.221-.05-.468-.09-.722-.131z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/glovo.svg������������������������������������0000664�0000000�0000000�00000001106�14753064456�0024747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.012 0C7.847 0 4.459 3.388 4.459 7.553c0 1.576.494 3.106 1.412 4.4l.211.281 3.93 5.555s.47.775 1.529.775h.941c1.036 0 1.53-.775 1.53-.775l3.93-5.555.187-.28a7.43 7.43 0 0 0 1.412-4.401C19.564 3.388 16.176 0 12.011 0Zm0 3.693a3.837 3.837 0 0 1 3.836 3.836 3.8 3.8 0 0 1-.73 2.237l-.212.28-2.894 4.095-2.895-4.07-.21-.305a3.85 3.85 0 0 1-.731-2.237 3.837 3.837 0 0 1 3.836-3.836m-2.117 18.26c0 1.106.893 2.023 2.07 2.047 1.223 0 2.117-.917 2.117-2.059 0-1.14-.894-2.058-2.094-2.058s-2.093.917-2.093 2.07"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gltf.svg�������������������������������������0000664�0000000�0000000�00000003013�14753064456�0024554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.154 9.357h-.205v.533h-.179v-.533h-.206v-.154h.59zm.08-.154h.263l.119.458h.002l.118-.458H24v.687h-.169v-.522h-.001l-.145.522h-.137l-.144-.522h-.002v.522h-.168zM9.671 16.29c-.742.832-2.001 1.293-4.483 1.208C2.094 16.427 0 14.366 0 11.998 0 8.53 4.497 5.72 10.043 5.721c3.621 0 6.788 1.263 8.555 3.061-1.619-1.073-4.052-1.691-6.767-1.691C6.959 7.091 3.01 9.289 3.01 12c0 1.7 1.552 3.198 3.911 4.079v-.001l.017.007.182.066q.083.025.173.043.247.048.473.048.45 0 .762-.156t.516-.429.295-.661c.091-.387.091-.544.091-.859v-.365h-.021q-.119.257-.3.445-.183.189-.414.312a2.184 2.184 0 0 1-1.015.252q-.624 0-1.085-.225a2.25 2.25 0 0 1-.774-.613q-.31-.386-.467-.896c-.157-.51-.155-.7-.155-1.08q0-.494.128-1.01.129-.514.43-.945.3-.43.795-.703.494-.274 1.214-.274.526 0 .966.231t.688.693h.01v-.795h.87v5.08c0 .909-.217 1.584-.629 2.046m-.375-3.689q.091-.387.091-.774 0-.365-.085-.719a2 2 0 0 0-.274-.639 1.44 1.44 0 0 0-.489-.457 1.46 1.46 0 0 0-.73-.172q-.441 0-.752.167a1.45 1.45 0 0 0-.51.446q-.2.28-.291.644-.09.366-.091.763 0 .375.075.751.075.377.258.683c.183.306.283.368.484.494q.3.188.751.188.452 0 .768-.188a1.5 1.5 0 0 0 .511-.494q.192-.306.284-.693m.798 4.213c.604.072 1.095.095 1.738.095 2.704 0 5.128-.607 6.746-1.673-1.771 1.785-4.93 3.044-8.537 3.043-.933 0-1.836-.079-2.693-.228 1.28-.214 2.22-.76 2.746-1.237m5.554-2.082h-1.311v-4.415h-1.644V9.194h4.599v1.123h-1.644zm3.637 0h-1.31V9.194h4.046v1.123h-2.736v1.036h2.395v1.123h-2.395zm-8.222-6.917h.913v6.902h-.913z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gmail.svg������������������������������������0000664�0000000�0000000�00000000463�14753064456�0024717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 5.457v13.909c0 .904-.732 1.636-1.636 1.636h-3.819V11.73L12 16.64l-6.545-4.91v9.273H1.636A1.636 1.636 0 0 1 0 19.366V5.457c0-2.023 2.309-3.178 3.927-1.964L5.455 4.64 12 9.548l6.545-4.91 1.528-1.145C21.69 2.28 24 3.434 24 5.457"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gmx.svg��������������������������������������0000664�0000000�0000000�00000001171�14753064456�0024416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.904 11.571v1.501H5.46c-.075.845-.712 1.274-1.539 1.274-1.255 0-1.934-1.157-1.934-2.3 0-1.118.65-2.317 1.906-2.317.77 0 1.321.468 1.586 1.166l1.812-.76c-.631-1.37-1.802-2.049-3.312-2.049C1.614 8.087 0 9.654 0 12.037c0 2.309 1.604 3.876 3.913 3.876 1.227 0 2.308-.439 3.025-1.44.651-.916.731-1.831.75-2.904zM13.65 8.3l-1.586 3.95-1.5-3.95H8.67l-1.255 7.392h1.91l.619-4.257h.019l1.695 4.257h.765l1.775-4.257h.024l.538 4.257h1.92L15.562 8.3zm7.708 3.473 2.086-3.475h-2.128l-1.11 1.767L19.012 8.3H16.68l2.459 3.47-2.46 3.922h2.333l1.33-2.223 1.576 2.223H24z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gnome.svg������������������������������������0000664�0000000�0000000�00000001253�14753064456�0024731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.703 0c-4.99 0-5.927 7.111-3.12 7.111 2.81 0 8.113-7.111 3.12-7.111M11.99.872q-.119-.001-.25.016c-2.811.364-1.82 5.25-.324 5.34 1.449.09 3.032-5.347.574-5.356M7.123 2.803a1.4 1.4 0 0 0-.488.114c-2.259.933-.344 4.776.921 4.519 1.168-.24 1.319-4.671-.433-4.632Zm-3.6 3.016a1.05 1.05 0 0 0-.634.215c-1.807 1.248.607 4.269 1.671 3.799.93-.41.338-3.967-1.037-4.014m10.032 2.309c-3.835.033-8.716 1.978-9.567 5.784C3.044 18.14 7.875 24 12.915 24c2.48 0 5.34-2.24 5.875-5.077.409-2.163-4.81-1.295-4.623.137.225 1.715-1.258 2.561-2.711 1.454-4.623-3.52 7.658-5.276 6.847-10.086-.263-1.56-2.29-2.322-4.748-2.301Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gnometerminal.svg����������������������������0000664�0000000�0000000�00000001135�14753064456�0026464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.846 0A1.84 1.84 0 0 0 0 1.846v18.463c0 1.022.823 1.845 1.846 1.845h20.308A1.84 1.84 0 0 0 24 20.31V1.846A1.84 1.84 0 0 0 22.154 0zm0 .924h20.308c.512 0 .922.41.922.922v18.463c0 .511-.41.921-.922.921H1.846a.92.92 0 0 1-.922-.921V1.846c0-.512.41-.922.922-.922m0 .922v18.463h20.308V1.846zm1.845 2.14 3.235 1.758v.836L3.69 8.477V7.385l2.243-1.207v-.033L3.69 5.076zM7.846 9.23h3.693v.924H7.846zM0 21.736v.418C0 23.177.823 24 1.846 24h20.308A1.84 1.84 0 0 0 24 22.154v-.418a2.33 2.33 0 0 1-1.846.918H1.846A2.33 2.33 0 0 1 0 21.736"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gnu.svg��������������������������������������0000664�0000000�0000000�00000034251�14753064456�0024421�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.072 13.931a.62.62 0 0 0-.52.338c-.114.211-.388.242-.516.201-.21-.07-.48-.119-.744.068-.263.187-.546.045-.495-.297.05-.34.172-.645.5-.83.713-.41.216-.695.607-1.108.394-.412.307-.537.293-1.1-1.326-.2-2.077-.58-2.915-1.63C.442 8.528.117 7.664.03 6.35-.057 5.033.02 4.18.588 3.09s1.168-1.615 2.2-2.16C3.825.383 4.84.254 5.78.271c.938.014 1.563.082 2.093.386.53.303 1.016.684 1.324.685.24.015.477-.053.673-.192.04 1.02-.878 1.108-1.698 1.13-.82.02-1.324-.317-2.08-.192-.754.128-1.992.47-2.595 1.52s-.624 1.42-.573 2.3c.05.879.806 1.535 1.234 1.543.428.007.523-.117.898-.36.374-.246 2.284-2.61 2.934-3.14.653-.53 1.296-.696 1.99-.705.695-.008.87.015 1.433.246.56.229.903.652 1.355.91.23-.135.375-.34.584-.495.76-.552 1.152-.702 2.053-.615.518.052 1.17.347 1.56.686.693.604 1.265 1.44 1.727 2.079.36.497.785 1.09 1.392 1.277.66.2 1.157-.652 1.23-1.13.043-.27.097-.505.097-.8 0-.297-.03-.655-.115-.965a3.5 3.5 0 0 0-.392-.87c-.258-.415-.68-.85-1.116-1.071-.246-.125-.826-.353-1.19-.36-.449-.01-.79.14-1.202.168-.5.034-1.396.146-1.786-.24-.25-.246-.283-.41-.324-.73a.76.76 0 0 0 .4.162c.314.026.606-.23.86-.378.21-.123.504-.34.778-.45.704-.285 1.567-.278 2.31-.2.594.06 1.367.324 1.89.62.525.297 1.03.798 1.4 1.269.465.594.72 1.104.888 1.844.216.945.277 2.365.015 3.299-.205.734-.887 1.86-1.467 2.414-.573.547-1.235.81-1.986.955.03.149.033.29.071.416.056.178.163.375.38.313.086-.025.133-.047.246.053.115.1.056.484-.266.66-.164.085-.334.103-.595.11a5.6 5.6 0 0 1-.953-.046c-.283-.047-.45-.272-.765-.308-.484-.055-.854-.404-1.244-.653-.162-.104-.218-.104-.31-.158.05.154.117.314.15.465.034.145.02.284.037.403.02.12.052.21.07.308.077.068.103.173.233.207.13.035.334-.018.468-.037.135-.018.224-.09.327-.07.105.02.204.096.292.166s.164.08.234.254c.07.178.135.537.146.777q.016.36-.089.648c-.07.19-.135.273-.327.463s-.505.465-.818.66c.058.084.083.162.173.254.09.094.277.197.36.295s.126.168.126.277a.6.6 0 0 1-.092.373c-.223.3-.483.352-.803.492.054.334.098.572.02.906-.03.137-.102.445-.27.525-.17.08-.492.041-.698.074-.205.031-.32.063-.48.094-.097.141-.24.297-.29.422-.05.127-.034.172.006.3.042.128.185.315.225.468a.93.93 0 0 1 .01.463.83.83 0 0 1-.23.396c-.128.135-.38.24-.508.346-.125.11-.252.123-.217.303.047.248.41.646.67.744a.8.8 0 0 0 .557-.04c-.014.208-.195.353-.315.493.322-.094.636-.27.854-.504-.067.203-.3.529-.645.816s-.343.229-.517.344c.314.06.606.045.85.002a1.7 1.7 0 0 1-.64.207 1.9 1.9 0 0 1-.73-.055c-.26-.063-.499-.301-.814-.465.03.119.053.26.185.38.136.12.335.183.55.284-.273-.03-.559-.037-.825-.096a2 2 0 0 1-.478-.164c-.144-.07-.255-.176-.384-.264.06.117.08.256.184.352.104.098.275.135.412.199-.143-.004-.28.029-.43-.01a1.2 1.2 0 0 1-.443-.21 3 3 0 0 1-.445-.395c-.132-.145-.296-.332-.345-.463-.048-.133.03-.225.044-.338-.09.06-.2.094-.272.18-.07.088-.131.166-.1.318.03.15.171.338.27.506-.295-.242-.46-.336-.53-.625-.064-.273.104-.52.233-.725.064-.104.161-.2.22-.3-.134-.128-.284-.24-.4-.388-.112-.15-.161-.352-.276-.492-.117-.143-.274-.232-.41-.348.119.256.317.572.359.77.044.2-.048.323-.12.43-.07.108-.183.134-.291.198-.11.068-.277.016-.342.113s-.083.246-.021.344l.256.398a1.2 1.2 0 0 1-.327-.28c-.074-.097-.186-.189-.2-.317-.015-.13-.022-.246.064-.363.084-.117.318-.156.422-.246.105-.09.162-.148.156-.264s-.12-.2-.217-.273c-.3-.225-.68-.43-.934-.699a.9.9 0 0 1-.24-.379c-.03-.105.002-.188.072-.314.072-.13.315-.305.346-.443.029-.14-.095-.172-.205-.22-.111-.05-.322.024-.425-.062s.03-.266-.086-.365-.38-.045-.52-.15a.72.72 0 0 1-.24-.395.83.83 0 0 1-.02-.436c.032-.113.128-.133.187-.19.06-.058.108-.105.03-.192-.074-.088-.33.004-.476-.105-.15-.113-.06-.38-.163-.494-.104-.109-.287-.066-.386-.104-.097-.035-.135.09-.194-.109-.06-.199-.063-.797-.143-1.02s-.238-.016-.31-.236c-.076-.22-.005-.574-.038-.908l-.15-.91c-.52.352-.867.463-1.428.561-.047 1.373-.176 2.182.29 3.705.466 1.521 1.409 2.42 2.68 3.707-1.68-1.256-2.478-2.279-2.98-3.588s-.406-2.407-.356-3.666zm8.918-.553a.84.84 0 0 1 .376.098c.09.061.188.107.27.19.206.21.36.462.428.751.044.186.05.422.064.64-.062-.2-.103-.409-.192-.589-.14-.285-.376-.56-.672-.688a.35.35 0 0 0-.214-.027c.023.041.063.076.065.133 0 .06-.012.174-.112.223-.16.078-.34.021-.464-.086a.41.41 0 0 1-.102-.459c.08-.194.375-.194.553-.186m-1.62-.272c.016-.332.134-.609.432-.77.187-.107.392-.18.604-.215.207-.026.713-.008 1.018.13.232.105.39.271.597.394.205.121.35.201.546.338.3.211.475.44.682.576.1.066.24.057.374.098-.104.03-.24.064-.35.03a1.6 1.6 0 0 1-.438-.265 3 3 0 0 0-.497-.359c-.124-.072-.33-.158-.466-.246-.135-.09-.37-.283-.502-.349a1.6 1.6 0 0 0-.65-.125c-.256.008-.626.05-.822.228-.197.18-.27.336-.227.566.073-.084.123-.19.195-.254.154-.133.33-.139.52-.113.216.027.323.15.394.354-.047-.033-.135-.109-.204-.135a.5.5 0 0 0-.438.043c-.18.098-.13.24-.154.396-.013.076-.04.133-.06.2a.4.4 0 0 1-.18-.099c0 .076-.01.141.005.223.014.084.055.184.084.273-.126-.125-.256-.24-.335-.402a1.06 1.06 0 0 1-.13-.517zm.218-2.4c.09-.134.12-.343.174-.515-.02.217.02.453-.083.609-.105.158-.292.129-.443.176.118-.09.258-.131.352-.268zm-2.206 3.203c.119-.096.438-.02.676-.002l-.514.133c-.017.06-.01.123-.048.174-.04.051-.114.068-.171.104.006-.155-.062-.313.057-.409m1.682-6.65c.143.075.32.178.45.18.123.004.157-.08.231-.131.115.38.25.797.448 1.142.083.146.136.079.2.224.063.145.09.439.15.626s.137.32.207.483c-.174-.25-.4-.566-.5-.773-.098-.207-.035-.225-.115-.421-.078-.198-.238-.504-.357-.756-.086.01-.19.026-.255.006-.065-.021-.054-.091-.112-.134-.06-.045-.158-.027-.24-.1-.08-.07-.1-.217-.107-.346m-.766 1.875c.135-.012.299.023.425.017s.216-.04.324-.06c-.02-.19-.002-.537-.175-.664-.115-.08-.578-.02-.701.006-.28.06-.604.227-.873.33.258-.18.48-.346.79-.44.189-.054.622-.128.814-.075.089.023.104.06.158.135.183.255.183.475.23.773.046.07.095.119.134.194a.9.9 0 0 1 .068.289c-.048-.07-.018-.155-.15-.206-.134-.053-.335-.005-.515.014.13.096.195.186.2.384.007.233-.19.4-.397.417-.285.022-.434-.041-.55-.285-.05-.107-.015-.236-.017-.341-.346.024-.34.013-.592.222.139.2.224.315.45.436.126.066.27.133.426.16.157.027.415.053.58.027a.63.63 0 0 0 .38-.187c.122-.112.134-.274.181-.403a1.2 1.2 0 0 1-.07.37c-.14.27-.38.353-.667.353-.275 0-.616-.063-.873-.17-.205-.084-.545-.324-.625-.533-.056-.143-.012-.318-.018-.477.285-.19.354-.143.689-.198.14-.025.239-.076.374-.088m-1.655-1.28c.007-.113.02-.11.03-.166-.26-.07-.36.099-.514.41-.057.116 0 .187-.062.264-.06.076-.16.065-.257.139-.098.074-.196.215-.29.292-.188.156-.446.25-.666.358.15-.111.443-.28.538-.44.05-.085.042-.246.12-.324.078-.075.105-.13.205-.15.1-.018.06-.135.093-.228.032-.091.097-.158.165-.251s.156-.23.29-.282c.136-.05.348.005.45-.023.103-.03.044-.105.119-.15s.219-.023.32-.072c.176-.084.26-.227.367-.377.015.326.01.56-.107.869-.131.346-.266.55-.641.763-.128.072-.257.098-.365.137.062-.086.152-.123.188-.256.034-.136.009-.4.017-.512zM15.7 9.447c-.177.014-.22-.012-.363.09l.232.36c-.006-.236.018-.284.133-.45zm-.465-.172c.246-.104.46-.19.73-.207.107-.008.274.009.383.016.094-.137.21-.244.256-.4.028-.104.015-.584-.038-.71-.146-.36-.29-.376-.495-.584-.146-.15-.152-.38-.197-.638-.015-.094-.062-.213-.084-.31a4 4 0 0 0-.857-.045c.148-.143.29-.271.334-.486a.96.96 0 0 0-.113-.667c-.12-.191-.315-.36-.494-.517-.178-.155-.436-.284-.604-.412.22-.077.444-.194.66-.235.56-.108 1.043.057 1.584.384.315.19.573.37.902.716.33.344.735.975 1.053 1.348.317.375.575.67.853.893.276.226.528.289.792.43l.412.439.335-.413.535.06.111-.601.49-.136-.079-.811.354-.252-.267-.504.27-.553-.352-.63.135-.607-.407-.348-.053-.646-.569-.217-.227-.56-.64-.008-.315-.417-.43.03-.48-.053-.27-.2-.395.26-.477-.247-.947.36.618-.538.64-.102.49-.126.662.218.582-.147.563.33.596-.03.293.525.591.067.32.58.372.206.1.746.333.315-.148.653.39.494-.363.529.39.332-.499.443.506.529-.613.2.398.566-.5.088.327.622-.563-.008.285.466-.62-.074.147.672-.468-.411-.159.814-.322-.585-.175.73-.397-.537.011.765-.439-.688c.091.39.073.817.33 1.185.793-.107 1.311-.307 1.92-.892.552-.533 1.214-1.644 1.394-2.35.204-.802.21-2.281.01-3.101-.195-.787-.447-1.163-.897-1.807-.43-.455-.853-.94-1.399-1.264-.8-.48-1.828-.608-2.74-.596a3.2 3.2 0 0 0-1.147.215c-.527.19-.95.61-1.487.818-.175.067-.315.068-.454-.004.135.27.28.39.62.49.243.07.824.025 1.226-.012.43-.04.654-.167 1.238-.16.57.01 1.024.225 1.272.368.511.292.877.614 1.196 1.13.175.28.298.6.383.924s.124.688.13 1.006-.019.602-.097.888c-.182.669-.583 1.35-1.407 1.245-.504-.063-1.263-1.01-1.518-1.357-.514-.701-1.042-1.477-1.687-2.06a2.6 2.6 0 0 0-1.463-.65c-.992-.09-1.287.099-2.033.716.15.047.3.074.455.145.346.156.662.357.938.615.29.27.42.442.43.829.007.259-.204.465-.4.649-.117.114-.274.218-.37.307-.128.117-.286.246-.125.432.06.07.165.123.252.189.14.103.075.488-.108.592a.61.61 0 0 1-.713-.061c.246-.035.402-.068.395-.27-.002-.115-.15-.213-.297-.28-.35-.16-.614-.134-.963-.386-.353-.254-.36-.393-.455-.79-.17.017-.327.02-.554.097-.226.074-.478.254-.684.299-.52.11-.623.078-.907.006-.501-.132-1.15.09-1.8.299-.107.033-.543 0-.836.102a5.5 5.5 0 0 0-1.457.853c-.556.469-1.286 1.869-1.698 3.477-.045.49.095.817-.213 1.055-.308.24-.3.851-.405 1.023-.103.17-.225.094-.45.336-.223.24-.337.201-.332.654.195-.125.477-.273.725-.285.22-.006.222.283.785-.273.3-.299.88-.309 1.283-.439s1.125-.402 1.85-1.21c.725-.81 1.072-1.664 1.213-2.896.02.215.06.463-.033 1.065-.095.604-.296 1.28.13 2.092l.264.504c-.157-.215-.465-.566-.56-.815l-.21-.577c-.48.752-.59.885-1.256 1.423-.026.334-.033.682.076 1.002.108.32-.064.688.02.9.082.21.273.09.336.303s-.032.635.064.842c.1.207.337.082.453.15.115.066.154.158.215.246.063.088-.023.297.103.365.126.066.32.01.453.074.13.066.15.223.12.361-.033.141-.173.205-.234.348a.37.37 0 0 0 .02.373c.074.131.236.201.4.27.162.064.39.027.559.12.169.09.32.272.408.405a.54.54 0 0 1 .109.363 1 1 0 0 1-.137.434c-.074.135-.236.3.02.555.254.254.246.145.393.313-.017-.289-.135-.52-.05-.738.089-.217.35-.256.485-.352.139-.1.219-.232.326-.348 0 .148.015.31-.002.42-.033.227-.102.432.237.467.153.016.299-.082.458-.14-.084.147-.23.27-.252.45a.8.8 0 0 0 .13.56c.123.18.34.312.498.415.158.105.244.115.365.174.006.176-.03.363-.01.53a.96.96 0 0 0 .17.454c.098.14.252.22.398.32-.08-.188-.242-.365-.24-.56.002-.197.06-.335.252-.51.19-.175.64-.325.85-.495a1.03 1.03 0 0 0 .355-.436c.075-.164.055-.43.07-.576.068.205.078.27.102.486.02.217-.127.521-.19.68a1.02 1.02 0 0 0 .51-.525c.058.035.03.125.05.301.094-.092.2-.162.293-.25.094-.088.195-.164.243-.287.046-.12.027-.252-.007-.393-.035-.143-.193-.307-.28-.463-.083-.152.017-.305.01-.492-.17-.029-.313-.117-.51-.088-.196.03-.42.248-.622.252-.2 0-.314-.188-.478-.238-.165-.053-.33-.045-.495-.07.21-.199 1.02-.295 1.576-.385a10 10 0 0 1 1.47-.133c.22-.006.506.068.66.025.153-.045.12-.15.165-.264.13-.318.066-.604-.004-.924-.444-.053-.908-.115-1.356-.082-.438.033-.956.242-1.41.256-.39.014-.975-.074-1.31-.28-.414-.25-.732-.79-.846-.966-.184-.28-.415-.836-.56-1.088-.14-.254-.171-.324-.29-.43-.116-.105-.276-.113-.417-.17.16.014.336-.035.482.047.22.127.465.648.601.877.145-.486.11-.676.53-.95-.337.378-.347.665-.429 1.11.28.46.67 1.193 1.18 1.396.186.074.502.12.7.145.622.076 1.22-.119 1.83-.27.444-.11.896-.066 1.437-.035.183.012.616-.1.707-.283a.33.33 0 0 0-.024-.33c-.07-.105-.255-.158-.355-.254-.1-.098-.156-.21-.235-.314a6.5 6.5 0 0 1-1.062.115c.22-.09.433-.14.66-.23q.356-.148.676-.359c.186-.123.303-.193.438-.334.133-.143.304-.289.403-.463s.114-.369.12-.584c.004-.215-.005-.516-.088-.69-.084-.173-.243-.226-.37-.265-.128-.04-.217.063-.35.076-.134.014-.258.096-.452.006a1.7 1.7 0 0 1-.617-.548c-.196-.274-.335-.722-.534-1.067-.343-.596-.77-1.15-1.18-1.702a3.4 3.4 0 0 1-.1-.508c-.032-.322-.036-.656.064-.97.075-.24.188-.493.438-.591a.48.48 0 0 1 .317-.022c.09.032.18.135.142.252-.04.129-.127.134-.188.198a.7.7 0 0 0-.183.33c.11-.004.262-.011.354.013.12.03.23.11.29.279-.142-.126-.212-.185-.39-.188-.082-.002-.18.026-.27.04-.034.109-.054.244-.1.33-.05.084-.142.063-.177.16a1 1 0 0 0-.02.392h.004zm1.242-.15c.056.022.075.028.146.08s.165.105.22.23a.9.9 0 0 1 .04.4c-.048-.015-.113-.005-.163-.047s-.08-.14-.143-.18c-.065-.043-.117-.034-.188-.043.038.096.05.199.036.3-.036.204-.156.308-.352.33-.084.013-.22-.015-.292-.028.034.075.09.143.126.219.164-.023.285-.02.375-.061.088-.041.183-.135.296-.173.113-.04.214-.04.338-.06-.098.085-.162.168-.26.254l.215.623c.152.096.294.146.485.263.19.116.42.327.67.44.248.112.395.176.656.224.26.05.467.262.722.295s.735.041.932.021c.225-.02.516-.135.542-.38-.188.044-.475.004-.619-.35-.064-.156-.034-.446-.132-.63-.099-.187-.236-.246-.4-.475-.164-.23-.43-.59-.58-.895-.15-.308-.188-.654-.313-.93-.128-.273-.319-.494-.469-.707-.323-.463-.584-.777-1.12-1.011-.257-.112-.55-.143-.823-.213-.113.05-.268.104-.295.237a.54.54 0 0 0 .12.42c.16.166.395.343.487.604.06.168.076.73.025.883-.054.16-.178.257-.282.36m.052 1.332c-.05.043-.087.087-.167.122s-.19.045-.295.07c.148.232.305.467.447.71s.266.51.4.764c-.006-.147.003-.301-.018-.437s-.083-.254-.145-.461c-.06-.206-.135-.484-.222-.768m-4-5.087a3.3 3.3 0 0 0 .065.806c.058.267.11.404.328.564.396.295.648.245.955.416.145.08.328.217.382.359.053.146-.036.3-.146.363.192.029.408-.19.318-.41-.045-.11-.255-.16-.32-.271a.4.4 0 0 1-.033-.335c.053-.202.454-.388.597-.546.218-.248.3-.453.177-.77-.172-.445-.842-.804-1.242-.98-.183-.08-.287-.083-.43-.128.293.174.602.31.75.69.124.32.016.444.022.72.002.13.172.197.248.277.064.072.06.125.008.223a.26.26 0 0 0-.11-.2c-.113-.08-.235-.062-.295-.224-.09-.248.09-.484-.112-.762-.15-.208-.353-.441-.625-.447a1.1 1.1 0 0 0-.36.058l-.183-.22-.005-.003c-.372-.34-.626-.62-1.146-.852-.522-.234-.78-.27-1.38-.256-.596.013-1.19.063-1.882.66-.694.6-2.48 2.888-2.915 3.177-.43.289-.527.389-1.068.389-.54 0-1.387-.766-1.42-1.723-.032-.956-.045-1.297.62-2.45.665-1.151 1.867-1.504 2.762-1.624s1.432.194 2.092.195 1.314-.11 1.508-.637c-.095.056-.221.12-.577.1-.355-.018-.85-.43-1.402-.705C7.157.548 6.54.515 5.75.501s-1.777.045-2.755.574C2.018 1.6 1.35 2.16.783 3.195.215 4.228.13 5.07.223 6.322.313 7.57.7 8.5 1.442 9.42c.744.914 1.485 1.363 2.823 1.529l.283-1.242-.504.72.014-.802-.455.565-.202-.767-.367.615-.183-.855-.535.432.17-.705-.707.078.324-.491-.644.006.375-.653-.57-.091.454-.596-.698-.206.578-.555-.573-.467.448-.348-.42-.56.448-.52-.167-.684.379-.33.113-.785.426-.214.365-.61.677-.073.334-.553.68.035.642-.348.666.154.756-.228.562.13.73.108.706.564-1.08-.377-.545.26-.45-.273-.31.21-.55.056-.492-.03-.358.436-.732.007-.26.59-.65.227-.06.678-.468.366.155.637-.401.664.31.58-.305.53.403.264-.09.853.563.14.125.634.613-.063.38.434.47-.461c.859-.428 1.213-.668 1.883-1.391.76-.823 1.196-1.584 2.208-2.147.73-.405 1.32-.551 2.139-.408.766.132 1.024.593 1.59 1.077.06-.11.07-.14.168-.218-.03.142-.08.287-.093.423z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gnubash.svg����������������������������������0000664�0000000�0000000�00000002701�14753064456�0025252�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.038 4.9 13.461.402a2.86 2.86 0 0 0-2.923.001L2.961 4.9A3.02 3.02 0 0 0 1.5 7.503v8.995c0 1.073.557 2.066 1.462 2.603l7.577 4.497a2.86 2.86 0 0 0 2.922 0l7.577-4.497a3.02 3.02 0 0 0 1.462-2.603V7.503A3.02 3.02 0 0 0 21.038 4.9M15.17 18.946l.013.646c.001.078-.05.167-.111.198l-.383.22c-.061.031-.111-.007-.112-.085l-.007-.635c-.328.136-.66.169-.872.084-.04-.016-.057-.075-.041-.142l.139-.584a.24.24 0 0 1 .069-.121.2.2 0 0 1 .036-.026q.033-.017.062-.006c.229.077.521.041.802-.101.357-.181.596-.545.592-.907-.003-.328-.181-.465-.613-.468-.55.001-1.064-.107-1.072-.917-.007-.667.34-1.361.889-1.8l-.007-.652c-.001-.08.048-.168.111-.2l.37-.236c.061-.031.111.007.112.087l.006.653c.273-.109.511-.138.726-.088.047.012.067.076.048.151l-.144.578a.26.26 0 0 1-.065.116.2.2 0 0 1-.038.028.1.1 0 0 1-.057.009c-.098-.022-.332-.073-.699.113-.385.195-.52.53-.517.778.003.297.155.387.681.396.7.012 1.003.318 1.01 1.023.007.689-.362 1.433-.928 1.888m3.973-1.087c0 .06-.008.116-.058.145l-1.916 1.164c-.05.029-.09.004-.09-.056v-.494c0-.06.037-.093.087-.122l1.887-1.129c.05-.029.09-.004.09.056zm1.316-11.062-7.168 4.427c-.894.523-1.553 1.109-1.553 2.187v8.833c0 .645.26 1.063.66 1.184a2.3 2.3 0 0 1-.398.039c-.42 0-.833-.114-1.197-.33L3.226 18.64a2.5 2.5 0 0 1-1.201-2.142V7.503c0-.881.46-1.702 1.201-2.142L10.803.863a2.34 2.34 0 0 1 2.394 0l7.577 4.498a2.48 2.48 0 0 1 1.164 1.732c-.252-.536-.818-.682-1.479-.296"/></svg>���������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gnuemacs.svg���������������������������������0000664�0000000�0000000�00000002241�14753064456�0025424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 24C5.448 24 .118 18.617.118 12S5.448 0 12 0s11.882 5.383 11.882 12S18.552 24 12 24M12 .661C5.813.661.779 5.748.779 12S5.813 23.339 12 23.339 23.221 18.253 23.221 12 18.187.661 12 .661M8.03 20.197s.978.069 2.236-.042c.51-.045 2.444-.235 3.891-.552 0 0 1.764-.377 2.707-.725.987-.364 1.524-.673 1.766-1.11-.011-.09.074-.408-.381-.599-1.164-.488-2.514-.4-5.185-.457-2.962-.102-3.948-.598-4.472-.997-.503-.405-.25-1.526 1.907-2.513 1.086-.526 5.345-1.496 5.345-1.496-1.434-.709-4.109-1.955-4.659-2.224-.482-.236-1.254-.591-1.421-1.021-.19-.413.448-.768.804-.87 1.147-.331 2.766-.536 4.24-.56.741-.012.861-.059.861-.059 1.022-.17 1.695-.869 1.414-1.976-.252-1.13-1.579-1.795-2.84-1.565-1.188.217-4.05 1.048-4.05 1.048 3.539-.031 4.131.028 4.395.398.156.218-.071.518-1.015.672-1.027.168-3.163.37-3.163.37-2.049.122-3.492.13-3.925 1.046-.283.599.302 1.129.558 1.46 1.082 1.204 2.646 1.853 3.652 2.331.379.18 1.49.52 1.49.52-3.265-.18-5.619.823-7.001 1.977-1.562 1.445-.871 3.168 2.33 4.228 1.891.626 2.828.921 5.648.667 1.661-.09 1.923-.036 1.939.1.023.192-1.845.669-2.355.816-1.298.374-4.699 1.129-4.716 1.133"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gnuicecat.svg��������������������������������0000664�0000000�0000000�00000010456�14753064456�0025573�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.437.001Q9.89.009 9.301.076c-4.786.54-7.595 4.525-7.758 9.357C.423 11.63.094 14.213.821 16.74c1.392 4.841 6.201 7.767 11.143 7.187l.906-.107c4.944.327 5.999-1.021 7.182-4.308.125-.27.305-.768.568-1.57.007-.037.016-.076.021-.096.788-2.147.903-4.57.24-6.875a10 10 0 0 0-.272-.81c-.03-.19-.024-.42.009-.599.29-.474.648-.83 1.076-1.097l.272-1.871c.287-.322.177-.6.19-1.058.166-.08.258-.214.327-.43.077-.237.447-.686.861-1.034.064-.188.224-.572.222-.893-1.984.227-3.23.608-4.226-.61l-.53-.208c-.24-.372-.67-.584-.978-.95l-.35 1.21c-.43-.265-2.742-2.688-7.045-2.62m.14.795c2.59.036 4.962 1.344 6.207 2.28l-.95.354-.596-.382-.27.787v.325l-.733 1.762-.08-.026.379-1.573.57-1.517-.191-.163-.84.92c-.18.979-.09 2.358-.541 2.93.14-1.15.34-2.155.352-3.498l-.488-.162c-.113.594-.265 1.275-.382 1.652l.163-1.706-.621.405v.976l-.163-.541-.056-.976-.216-.03-.162.625c.028.27-.015.542.216.813l.056 2.06.133.246-.243 1.165.027-1.139-.08-.08-.163-2.007-.271-1.085-.435-.27-.163-.46-.46-.03 1.03 3.69.08 1.109c-.117-.526-.112-1.1-.567-1.49.045-.553-.036-1.093-.706-1.573l-.976-2.005c-.033-.237-.366-.276-.597-.381-.07.319-.13.642.082 1.032.488.775.976 1.555 1.464 1.978l.027.949c-.16-.875-.602-1.347-.76-1.219-.005-.713-.79-.98-1.245-1.437l-.056-.786-.27-.056c.17.532-.217.57.542 1.626l.027.381c-.29-.196-.578-.563-.867-.975l-.352-.624c.038.427-.175.523.134 1.274.454.395.864.974 1.383 1.112 0 0 .109.19 0 .19-.108 0-.325-.084-.325-.084-.3-.137-.585-.259-1.165-.677l-.597-1.762-.272-.053.056.949.242.107.027.623c.106.37.227.517.408.462-.101.124-.22.15-.461.136-.2-.378-.324-.745-.733-1.192l-.27-.787-.162.163a2.2 2.2 0 0 0 0 .976c-.264-.157-.656-.592-1.122-.819C6.105 1.513 8.469.832 10.327.798q.126-.002.25-.002m7.553 2.188.517.171 1.514.864 2.146.018c-.615.242-1.373.525-1.858.672l-.613-.018c-.485-.414-.874-.612-1.309-.875-.526.551-.837 1.033-1.01 1.736l.152-1.19.52-1.17zm-13.577.331.547 1.09.026.243-.298-.107-.27-.623-.298.215-.216-.128q.235-.369.51-.69zm3.519 2.309c1.613-.037 1.868 1.303 2.127 2.543v2.223c.186.019.567 1.135.488 1.49-.045.204.488 1.422.45 1.426.288.278.235.248.465.424.316.243.602 1.134.426 1.264-.167.124.22.4.312.6.566.506.987 1.013.978 1.52l.27.487.514.08.136.192.65.08c.375-.08.32-.485.435-.76.022-.278-.057-.598-.461-.949.021-.421.074-.836-.325-1.327.056-.503-.311-.92-.598-1.355-.034-.373-.196-.883-.32-1.378-.06-.244-.089-.497-.138-.738-.181-1.674.058-1.862.133-2.765.618-.93.943-1.376 1.493-1.573l.704.87c.347.631.198 1.44 1.058 1.599l.022.021c.439-.396 1.02-.383 1.493-.395l-.057.187c-.57-.06-1.035-.074-1.42.216l.383.374c.412-.536.98-.5 1.539-.52l.006.206c-.604-.08-1.181.021-1.494.362l.123.117h.005c.465-.363 1.022-.383 1.549-.39l-.104.184c-.53.044-.893.008-1.272.23q.44.044.88.085l.11.243.676.056c.12.03.215.042.302.045q.124.33.224.674a10 10 0 0 1 .058 5.27c-1.356 3.64-2.797 4.614-5.729 4.418-3.06-.205-5.53-3.605-7.706-8.264-.475-1.292-1.638-2.11-2.313-1.42-3.073 3.055.394 8.49 2.1 9.801a16.3 16.3 0 0 0 2.87 1.67c-3.38-.563-6.27-2.914-7.245-6.308-1.177-4.092.77-8.374 4.486-10.423l.014-.006c.694-.259 1.251-.376 1.703-.386m10.22 2.04c.293.044.838.365 1.136.663.09.243-.135.353-.12.496.008.023.004.031.003.032q0-.017-.003-.032c-.023-.072-.42-.56-1.016-1.16zm1.804 2.18c-.003.254-.083.341-.192.475-.111.009-.39-.075-.512-.25.185-.212.469-.21.704-.224zm-2.834.172c-.059.07-.086.157-.156.305.092-.14.146-.2.207-.244zm.141.176c-.225.063-.386.418-.611.92.24-.296.406-.716.744-.85zm-11.84 2.91.054 1.055-1.653.949-.027-.786c.689.179 1.147-.56 1.627-1.219zm.734 2.25.242.623-2.087 1.138-.299-.706c2.09-.764 1.731-.759 2.144-1.056zm.757 1.436.272.461c-.787.389-1.435.912-2.005 1.517l-.435-.866c.789-.24 1.53-.572 2.168-1.112m1.005 1.301.46.434c-.36.81-1.106 1.312-1.817 1.843l-.73-.84c.716-.469 1.626-.84 2.087-1.437m1.539 1.503c.072.432-.222 1.073-1.214 2.021-.386-.174-.785-.336-1.032-.65 1.607-.814 2.02-1.253 2.139-1.468.042-.006.112.032.107.097m1.01.667c.036.382-.041.829.188 1.082l.216.056c-.113.47-.34.821-.325 1.291-.857-.208-.951-.297-1.274-.504.996-1.549 1.186-1.913 1.194-1.925zm1.407.784 1.058 1.22c-.106.584-.097.933.299 1.085-.599-.033-1.186-.04-1.68-.344.43-.637.423-1.208.323-1.961m5.325.475c.307.467.348.706.655.813-.405.393-.587.47-1.063.65.149-.303 0-.728-.134-1.244-.1-.192.4-.176.542-.219m-2.993.284c1.786.534 1.18.872 1.729 1.405-.472.1-.904.205-1.656.163.555-.411.301-.87-.073-1.568"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gnuprivacyguard.svg��������������������������0000664�0000000�0000000�00000002076�14753064456�0027042�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.968 11.583h1.274v-3.82A7.76 7.76 0 0 1 12.005 0a7.76 7.76 0 0 1 7.762 7.763v3.783c-.018.01-.037.028-.056.037l-.01.01-.008.009h-.01l-.01.01-.009.009h-.028l-.018.018h-.02l-.018.01h-.01l-.009.01-.009.009h-.01l-.009.009-.009.01-.01.009-.009.009-.028.019-.019.01-.028.018-.018.01-.02.009-.027.018-.019.01-.01.009-.027.019-.02.01-.046.027-.019.01-.018.009-.02.01h-.008l-.057.027h-.019c-.018.01-.037.02-.065.038h-.01l-.009.01-.028.018-.018.01-.029.018-.018.01h-.01l-.028.018-.018.01-.02.009c-.018.01-.046.019-.065.028l-.018.01-.02.009-.037.018-.037.02-.047.018-.047.019-.019.009-.037.019-.019.01c-1.545.739-4.017 1.516-8.708 1.853-3.362.244-5.403 1.723-6.724 3.502zm4.842 0h8.371v-3.82a4.184 4.184 0 0 0-4.186-4.186A4.184 4.184 0 0 0 7.81 7.763zm13.222 1.461V24H5.572c1.704-.946 2.968-.852 5.075-.787 2.865.094 6.03-1.105 7.585-2.696s-.14-.375-1.901.074c-1.76.45-5.17.497-7.454-.103 7.173.094 9.973-2.219 11.555-4.307 1.583-2.079-.683-.365-2.153.356-1.47.72-4.036 1.227-6.864.852 4.27-.01 7.52-2.144 9.607-4.345z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gnusocial.svg��������������������������������0000664�0000000�0000000�00000001663�14753064456�0025615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.217 0A3.157 3.157 0 0 0 1.06 3.156V15.77a3.16 3.16 0 0 0 3.157 3.158h9.367C13.567 22.498 8.756 24 8.756 24s8.138-.038 9.305-5.072h1.72a3.157 3.157 0 0 0 3.157-3.157V3.157A3.157 3.157 0 0 0 19.782 0H4.218zm4.527 2.53q.11-.02.174.034c.335.3-.556.593-.484 2.063.032.646-.16 1.146 1.076 1.146.826 0 .483-.734 1.523-.734.656 0 .86.435.934.767.072-.33.274-.768.93-.768 1.04 0 .7.733 1.525.733 1.237 0 1.044-.5 1.076-1.146.072-1.47-.82-1.764-.484-2.063q.064-.054.172-.02c.5.143 1.607 1.558 1.638 2.155.038.71.04 1.825-1.015 2.407 1.19 1.167 1.352 2.72 1.352 2.72l-2.045-.034s-.464-2.118-2.94-2.01c-2.474.108-2.796.538-2.796 3.156 0 2.617 1.147 3.517 2.905 3.585 2.76.108 2.51-1.433 2.51-1.433l-1.29.072-.718-1.937h4.41c0 2.116-.897 5.414-5.092 5.2-4.196-.216-5.128-3.515-5.164-5.74-.018-1.225.188-2.602 1.2-3.574-1.052-.58-1.033-1.7-1.033-2.414 0-.88 1.13-2.084 1.637-2.17z"/></svg>�����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/go.svg���������������������������������������0000664�0000000�0000000�00000003077�14753064456�0024237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.811 10.231c-.047 0-.058-.023-.035-.059l.246-.315c.023-.035.081-.058.128-.058h4.172c.046 0 .058.035.035.07l-.199.303c-.023.036-.082.07-.117.07zM.047 11.306c-.047 0-.059-.023-.035-.058l.245-.316c.023-.035.082-.058.129-.058h5.328c.047 0 .07.035.058.07l-.093.28c-.012.047-.058.07-.105.07zm2.828 1.075c-.047 0-.059-.035-.035-.07l.163-.292c.023-.035.07-.07.117-.07h2.337c.047 0 .07.035.07.082l-.023.28c0 .047-.047.082-.082.082zm12.129-2.36c-.736.187-1.239.327-1.963.514-.176.046-.187.058-.34-.117-.174-.199-.303-.327-.548-.444-.737-.362-1.45-.257-2.115.175-.795.514-1.204 1.274-1.192 2.22.011.935.654 1.706 1.577 1.835.795.105 1.46-.175 1.987-.77.105-.13.198-.27.315-.434H10.47c-.245 0-.304-.152-.222-.35.152-.362.432-.97.596-1.274a.32.32 0 0 1 .292-.187h4.253c-.023.316-.023.631-.07.947a5 5 0 0 1-.958 2.29c-.841 1.11-1.94 1.8-3.33 1.986-1.145.152-2.209-.07-3.143-.77-.865-.655-1.356-1.52-1.484-2.595-.152-1.274.222-2.419.993-3.424.83-1.086 1.928-1.776 3.272-2.02 1.098-.2 2.15-.07 3.096.571.62.41 1.063.97 1.356 1.648.07.105.023.164-.117.2m3.868 6.461c-1.064-.024-2.034-.328-2.852-1.029a3.67 3.67 0 0 1-1.262-2.255c-.21-1.32.152-2.489.947-3.529.853-1.122 1.881-1.706 3.272-1.95 1.192-.21 2.314-.095 3.33.595.923.63 1.496 1.484 1.648 2.605.198 1.578-.257 2.863-1.344 3.962-.771.783-1.718 1.273-2.805 1.495-.315.06-.63.07-.934.106m2.78-4.72c-.011-.153-.011-.27-.034-.387-.21-1.157-1.274-1.81-2.384-1.554-1.087.245-1.788.935-2.045 2.033-.21.912.234 1.835 1.075 2.21.643.28 1.285.244 1.905-.07.923-.48 1.425-1.228 1.484-2.233z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gocd.svg�������������������������������������0000664�0000000�0000000�00000000534�14753064456�0024541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.043 13.237-8.907 5.935a1.47 1.47 0 0 1-.823.25 1.45 1.45 0 0 1-.696-.173 1.48 1.48 0 0 1-.784-1.308V12a1.482 1.482 0 1 1 2.957 0v3.163L14.537 12 7.478 7.304A1.49 1.49 0 1 1 9.13 4.823l8.913 5.94a1.492 1.492 0 0 1 0 2.474M12 0a12 12 0 1 0 12 12A12.01 12.01 0 0 0 12 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/godaddy.svg����������������������������������0000664�0000000�0000000�00000002100�14753064456�0025227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.702 2.29c-2.494-1.554-5.778-1.187-8.706.654C9.076 1.104 5.79.736 3.3 2.29c-3.941 2.463-4.42 8.806-1.07 14.167 2.47 3.954 6.333 6.269 9.77 6.226 3.439.043 7.301-2.273 9.771-6.226 3.347-5.361 2.872-11.704-1.069-14.167M4.042 15.328a12.8 12.8 0 0 1-1.546-3.541 10.1 10.1 0 0 1-.336-3.338c.15-1.98.956-3.524 2.27-4.345 1.315-.822 3.052-.87 4.903-.137q.422.17.825.382A15.1 15.1 0 0 0 7.5 7.54c-2.035 3.255-2.655 6.878-1.945 9.765a13.3 13.3 0 0 1-1.514-1.98zm17.465-3.541a12.9 12.9 0 0 1-1.547 3.54 13.3 13.3 0 0 1-1.513 1.984c.635-2.589.203-5.76-1.353-8.734a.39.39 0 0 0-.563-.153l-4.852 3.032a.397.397 0 0 0-.126.546l.712 1.139a.395.395 0 0 0 .547.126l3.145-1.965c.101.306.203.606.28.916.296 1.086.41 2.214.335 3.337-.15 1.982-.956 3.525-2.27 4.347a4.44 4.44 0 0 1-2.25.65h-.101a4.43 4.43 0 0 1-2.25-.65c-1.314-.822-2.121-2.365-2.27-4.347a10.2 10.2 0 0 1 .335-3.337 13.2 13.2 0 0 1 4.05-6.482 10.2 10.2 0 0 1 2.849-1.765c1.845-.733 3.586-.685 4.9.137 1.316.822 2.122 2.365 2.271 4.345a10.2 10.2 0 0 1-.33 3.334z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/godotengine.svg������������������������������0000664�0000000�0000000�00000002762�14753064456�0026134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.56.683c-1.096.244-2.181.583-3.199 1.095.023.898.081 1.758.2 2.632-.396.253-.81.47-1.179.766-.375.288-.758.564-1.097.902A21 21 0 0 0 2.15 4.836C1.353 5.693.608 6.62 0 7.655c.458.74.936 1.435 1.452 2.094h.014v6.356q.018 0 .035.003l3.896.376a.42.42 0 0 1 .378.39l.12 1.72 3.4.241.234-1.587a.42.42 0 0 1 .415-.358h4.111c.208 0 .385.152.415.358l.234 1.587 3.4-.242.12-1.72a.42.42 0 0 1 .377-.389l3.896-.376q.018-.002.035-.003v-.507h.002V9.75h.014c.516-.66.994-1.353 1.452-2.094-.608-1.036-1.354-1.961-2.151-2.82-.74.372-1.457.793-2.135 1.242-.34-.337-.721-.613-1.096-.901-.37-.296-.785-.514-1.179-.767.117-.874.175-1.734.2-2.632-1.018-.512-2.102-.85-3.199-1.095a23 23 0 0 0-1.187 2.312 8 8 0 0 0-1.246-.099h-.016c-.417.005-.832.03-1.246.1A23 23 0 0 0 9.557.682zM6.476 9.989a2.349 2.349 0 1 1 .001 4.697 2.349 2.349 0 0 1 0-4.697m11.05 0a2.349 2.349 0 1 1-.001 4.697 2.349 2.349 0 0 1 0-4.697m-10.824.93a1.559 1.559 0 1 0 0 3.118 1.559 1.559 0 0 0 0-3.118zm10.598 0a1.558 1.558 0 1 0 0 3.116 1.558 1.558 0 0 0 0-3.116M12 11.372c.417 0 .757.308.757.687v2.162c0 .38-.339.687-.757.687s-.756-.308-.756-.687V12.06c0-.379.339-.687.756-.687m-10.54 5.574c.001.377.005.79.005.871 0 3.702 4.695 5.48 10.527 5.5h.014c5.833-.02 10.526-1.798 10.526-5.5 0-.084.005-.495.007-.87l-3.502.338-.121 1.729a.42.42 0 0 1-.39.39l-4.18.296a.42.42 0 0 1-.416-.358l-.238-1.614h-3.386l-.238 1.614a.42.42 0 0 1-.445.357l-4.151-.296a.42.42 0 0 1-.39-.39l-.12-1.729-3.504-.337z"/></svg>��������������mkdocs-material-9.6.4/material/templates/.icons/simple/gofundme.svg���������������������������������0000664�0000000�0000000�00000002741�14753064456�0025433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.624 4.08 17.4 7.15a1.5 1.5 0 0 0-.33 2.092c.489.67 1.421.813 2.091.331l4.222-3.07c.67-.49.813-1.423.332-2.093a1.49 1.49 0 0 0-2.092-.33m-9.649-1.182c-.828 0-1.498.67-1.498 1.497v2.521a1.497 1.497 0 1 0 2.996 0v-2.52c0-.829-.67-1.498-1.498-1.498M.288 4.41c-.49.67-.339 1.603.33 2.093l4.223 3.07c.67.49 1.603.339 2.092-.331s.339-1.603-.331-2.092L2.38 4.08a1.5 1.5 0 0 0-2.092.33zm3.695 7.79a11.96 11.96 0 0 1 7.992-3.056c3.07 0 5.87 1.159 7.993 3.056zm14.555 1.633c-1.347 0-2.236.443-2.8.993-.595.587-1.023 1.505-1.023 2.65 0 1.301.564 2.144 1.009 2.588.843.843 1.926 1.038 2.829 1.038 1.482 0 2.28-.458 2.784-.947a3.06 3.06 0 0 0 .828-1.408h-2.34a1.16 1.16 0 0 1-.43.459c-.308.165-.736.181-.797.181-.549 0-.858-.188-1.008-.339-.294-.286-.43-.775-.43-1.144h5.095v-.263c0-.76-.12-1.957-1.083-2.875-.814-.768-1.836-.933-2.634-.933m.06 1.558c.241 0 .685.045 1.008.368.188.188.339.475.4.738h-2.77c.045-.308.203-.557.369-.738.256-.263.58-.368.993-.368m-16.85-1.355h2.445v.828c.58-.7 1.377-.949 2.047-.949.49 0 .949.106 1.317.31.505.263.783.639.948.977.28-.489.626-.782.934-.948.49-.278.963-.338 1.423-.338.503 0 1.331.075 1.896.624.61.595.64 1.408.64 1.882v4.455H10.95v-3.38c0-.722-.075-1.21-.353-1.467-.136-.12-.324-.226-.64-.226a.99.99 0 0 0-.722.279c-.414.399-.444.963-.444 1.302v3.507H6.346v-3.38c0-.654-.045-1.18-.324-1.467-.21-.226-.49-.278-.737-.278-.264 0-.474.045-.67.248-.429.414-.429 1.069-.429 1.498v3.379H1.74v-6.856Z"/></svg>�������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gogdotcom.svg��������������������������������0000664�0000000�0000000�00000002777�14753064456�0025622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.15 15.24H4.36a.4.4 0 0 0-.4.4v2c0 .21.18.4.4.4h2.8v1.32h-3.5c-.56 0-1.02-.46-1.02-1.03v-3.39c0-.56.46-1.02 1.03-1.02h3.48zm1.01-3.7c0 .58-.47 1.05-1.05 1.05H2.63v-1.35h3.78a.4.4 0 0 0 .4-.4V6.39a.4.4 0 0 0-.4-.4H4.39a.4.4 0 0 0-.41.4v2.02c0 .23.18.4.4.4H6v1.35H3.68c-.58 0-1.05-.46-1.05-1.04V5.68c0-.57.47-1.04 1.05-1.04H7.1c.58 0 1.05.47 1.05 1.04v5.86zm13.2 7.82h-1.32v-4.12h-.93a.4.4 0 0 0-.4.4v3.72h-1.33v-4.12h-.93a.4.4 0 0 0-.4.4v3.72h-1.33v-4.42c0-.56.46-1.02 1.03-1.02h5.61zm.01-7.82c0 .58-.47 1.05-1.05 1.05h-4.48v-1.35h3.78a.4.4 0 0 0 .4-.4V6.39a.4.4 0 0 0-.4-.4h-2.03a.4.4 0 0 0-.4.4v2.02c0 .23.18.4.4.4h1.62v1.35H16.9c-.58 0-1.05-.46-1.05-1.04V5.68c0-.57.47-1.04 1.05-1.04h3.43c.58 0 1.05.47 1.05 1.04v5.86zm-7.65-6.9h-3.44c-.58 0-1.04.47-1.04 1.04v3.44c0 .58.46 1.04 1.04 1.04h3.44c.57 0 1.04-.46 1.04-1.04V5.68c0-.57-.47-1.04-1.04-1.04m-.3 1.75v2.02a.4.4 0 0 1-.4.4h-2.03a.4.4 0 0 1-.4-.4V6.4c0-.22.17-.4.4-.4H13c.23 0 .4.18.4.4zm-.79 7.53H9.24c-.57 0-1.03.46-1.03 1.02v3.39c0 .57.46 1.03 1.03 1.03h3.39c.57 0 1.03-.46 1.03-1.03v-3.39c0-.56-.46-1.02-1.03-1.02m-.3 1.72v2a.4.4 0 0 1-.4.4v-.01H9.94a.4.4 0 0 1-.4-.4v-1.99c0-.22.18-.4.4-.4h2c.22 0 .4.18.4.4zM23.49 1.1a1.74 1.74 0 0 0-1.24-.52H1.75A1.74 1.74 0 0 0 0 2.33v19.34a1.74 1.74 0 0 0 1.75 1.75h20.5A1.74 1.74 0 0 0 24 21.67V2.33c0-.48-.2-.92-.51-1.24m0 20.58a1.23 1.23 0 0 1-1.24 1.24H1.75A1.23 1.23 0 0 1 .5 21.67V2.33a1.23 1.23 0 0 1 1.24-1.24h20.5a1.24 1.24 0 0 1 1.24 1.24v19.34z"/></svg>�mkdocs-material-9.6.4/material/templates/.icons/simple/gojek.svg������������������������������������0000664�0000000�0000000�00000001214�14753064456�0024720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.072.713a15 15 0 0 0-.643.011C5.317.998.344 5.835.017 11.818c-.266 4.913 2.548 9.21 6.723 11.204 1.557.744 3.405-.19 3.706-1.861.203-1.126-.382-2.241-1.429-2.742-2.373-1.139-3.966-3.602-3.778-6.406.22-3.28 2.931-5.945 6.279-6.171 3.959-.267 7.257 2.797 7.257 6.619 0 2.623-1.553 4.888-3.809 5.965a2.51 2.51 0 0 0-1.395 2.706l.011.056c.295 1.644 2.111 2.578 3.643 1.852C21.233 21.139 24 17.117 24 12.461 23.996 5.995 18.664.749 12.072.711zm-.061 7.614c-2.331 0-4.225 1.856-4.225 4.139 0 2.282 1.894 4.137 4.225 4.137s4.225-1.855 4.225-4.137c0-2.283-1.895-4.139-4.225-4.139"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/goland.svg�����������������������������������0000664�0000000�0000000�00000001217�14753064456�0025070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0Zm6.764 3a5.45 5.45 0 0 1 3.892 1.356L9.284 6.012A3.65 3.65 0 0 0 6.696 5c-1.6 0-2.844 1.4-2.844 3.08v.028c0 1.812 1.244 3.14 3 3.14a3.47 3.47 0 0 0 2.048-.596V9.228H6.708v-1.88H11v4.296a6.43 6.43 0 0 1-4.228 1.572c-3.076 0-5.196-2.164-5.196-5.092v-.028A5.08 5.08 0 0 1 6.764 3m10.432 0c3.052 0 5.244 2.276 5.244 5.088v.028a5.116 5.116 0 0 1-5.272 5.12c-3.056-.02-5.248-2.296-5.248-5.112v-.028A5.116 5.116 0 0 1 17.196 3m-.028 2A2.96 2.96 0 0 0 14.2 8.068v.028a3.01 3.01 0 0 0 3 3.112 2.96 2.96 0 0 0 2.964-3.084v-.028A3.004 3.004 0 0 0 17.168 5M2.252 19.5h9V21h-9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/goldenline.svg�������������������������������0000664�0000000�0000000�00000000316�14753064456�0025743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.997 24a11.995 11.995 0 0 0 11.949-13.04h-6.781v2.943h1.226a6.667 6.667 0 1 1-.114-4.156h5.509A11.995 11.995 0 1 0 12 23.991z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/goldmansachs.svg�����������������������������0000664�0000000�0000000�00000007071�14753064456�0026273�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.963 9.264h1.452v2.378c-.484.098-.855.148-1.262.148C.561 11.79 0 10.878 0 9.377c0-1.614.778-2.526 2.329-2.526.196 0 .567.014 1.03.084v1.522h-.336l-.19-.582c-.183-.553-.4-.827-.744-.827-.596 0-.912.806-.912 2.315 0 1.515.126 2.23.904 2.23.106 0 .231-.014.351-.048V9.776l-.469-.323zm1.424 6.382c0 .954-.651 1.501-1.802 1.501-.315 0-.778-.048-1.213-.119v-1.865h.337l.14.441c.315 1.017.54 1.353.94 1.353.421 0 .722-.371.722-.862 0-.399-.189-.68-.595-.898l-.702-.378c-.541-.287-.835-.736-.835-1.283 0-.828.68-1.326 1.796-1.326.252 0 .547.022 1.016.085v1.521h-.337l-.188-.581c-.19-.618-.393-.842-.764-.842-.415 0-.66.266-.66.652 0 .343.19.589.561.799l.708.399c.596.337.876.786.876 1.403m3.101 1.102.14.211v.106H5.556l-.05-.407c-.112.308-.407.491-.786.491-.561 0-.912-.351-.912-.926 0-.561.315-.933 1.283-1.311l.414-.161v-.525c0-.463-.085-.652-.344-.652-.21 0-.329.112-.533.623l-.231.573h-.315v-1.144c.414-.126.828-.21 1.185-.21.792 0 1.221.378 1.221 1.066zm.405-6.824c0 1.192-.637 1.866-1.459 1.866-.82 0-1.457-.674-1.457-1.866s.637-1.866 1.459-1.866c.82 0 1.457.673 1.457 1.866m-1.387 6.235v-1.213l-.133.056c-.414.169-.569.547-.569 1.101 0 .414.099.652.329.652.231 0 .373-.225.373-.596m.357-6.235c0-1.347-.112-1.704-.427-1.704s-.428.357-.428 1.704.113 1.704.428 1.704.427-.358.427-1.704m3.521 6.269.126.064c-.224.646-.511.89-1.066.89-.904 0-1.409-.679-1.409-1.865s.589-1.866 1.55-1.866c.258 0 .603.042.897.16v1.193h-.329l-.132-.449c-.176-.596-.273-.75-.449-.75-.281 0-.505.365-.505 1.754 0 1.114.168 1.521.595 1.521.287.001.532-.181.722-.652m-.779-4.488H7.342v-.104l.141-.211V7.476l-.141-.21V7.16l1.123-.084v4.313l.14.211zm1.726.085c-.772 0-1.235-.702-1.235-1.901 0-1.192.483-1.83 1.227-1.83.379 0 .589.147.68.441V7.476l-.141-.21V7.16l1.123-.084v4.313l.14.211v.104h-.996l-.077-.533c-.111.457-.321.619-.721.619m2.461 4.958.14.211v.106H11.67v-.106l.14-.211v-2.525c0-.301-.091-.483-.309-.483-.26 0-.449.218-.449.645v2.363l.141.211v.106H9.93v-.106l.14-.211v-3.914l-.14-.21v-.105l1.122-.084v1.451c.127-.301.414-.469.82-.469.576 0 .919.365.919 1.073zm-2.664-6.846c0 1.263.112 1.648.421 1.648.385 0 .455-.554.455-1.662 0-1.073-.077-1.606-.449-1.606-.315 0-.427.379-.427 1.62m7.041 1.487.14.211v.104h-1.262V11.6l.14-.211V8.787c0-.252-.084-.407-.281-.407-.244 0-.441.219-.441.638v2.371l.14.211v.104h-1.262V11.6l.14-.211V8.787c0-.252-.084-.407-.28-.407-.245 0-.442.219-.442.638v2.371l.141.211v.104h-1.263V11.6l.14-.211V8.535l-.14-.169v-.104l1.01-.12h.084l.028.393c.119-.309.414-.477.814-.477.427 0 .708.21.834.589.105-.365.435-.589.856-.589.553 0 .904.365.904 1.072zm-1.311 4.644c0 .609-.393 1.114-1.339 1.114-.245 0-.575-.028-1.087-.119v-1.304h.287l.091.281c.224.715.441.982.785.982.323 0 .533-.232.533-.59 0-.294-.147-.497-.497-.687l-.603-.323c-.385-.21-.596-.539-.596-.946 0-.638.499-1.024 1.325-1.024.239 0 .547.034.884.105v1.024h-.287l-.148-.373c-.168-.449-.329-.595-.595-.595-.287 0-.456.168-.456.449 0 .238.141.399.484.595l.595.337c.406.232.624.561.624 1.074m4.538-4.644.14.211v.104h-1.073l-.048-.407c-.112.309-.407.491-.786.491-.561 0-.911-.35-.911-.926 0-.561.315-.932 1.283-1.311l.413-.16v-.526c0-.463-.084-.652-.343-.652-.211 0-.329.113-.533.624l-.231.575h-.317V8.27c.415-.127.828-.211 1.185-.211.792 0 1.221.379 1.221 1.066zm-.982-.589V9.587l-.133.056c-.413.168-.567.547-.567 1.101 0 .414.098.653.329.653.23 0 .371-.225.371-.597m4.586.8v.104h-1.263V11.6l.141-.211V8.864c0-.302-.091-.484-.309-.484-.26 0-.449.219-.449.646v2.363l.14.211v.104h-1.262V11.6l.14-.211V8.535l-.14-.169v-.104l1.01-.12h.084l.028.393c.119-.309.407-.477.82-.477.575 0 .918.365.918 1.072v2.259z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/goodreads.svg��������������������������������0000664�0000000�0000000�00000001222�14753064456�0025567�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.43 23.995c-3.608-.208-6.274-2.077-6.448-5.078.695.007 1.375-.013 2.07-.006.224 1.342 1.065 2.43 2.683 3.026 1.583.496 3.737.46 5.082-.174 1.351-.636 2.145-1.822 2.503-3.577.212-1.042.236-1.734.231-2.92l-.005-1.631h-.059c-1.245 2.564-3.315 3.53-5.59 3.475-5.74-.054-7.68-4.534-7.528-8.606.01-5.241 3.22-8.537 7.557-8.495 2.354-.14 4.605 1.362 5.554 3.37l.059.002.002-2.918 2.099.004-.002 15.717c-.193 7.04-4.376 7.89-8.209 7.811zm6.1-15.633c-.096-3.26-1.601-6.62-5.503-6.645-3.954-.017-5.625 3.592-5.604 6.85-.013 3.439 1.643 6.305 4.703 6.762 4.532.591 6.551-3.411 6.404-6.967"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/google.svg�����������������������������������0000664�0000000�0000000�00000000643�14753064456�0025102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.48 10.92v3.28h7.84c-.24 1.84-.853 3.187-1.787 4.133-1.147 1.147-2.933 2.4-6.053 2.4-4.827 0-8.6-3.893-8.6-8.72s3.773-8.72 8.6-8.72c2.6 0 4.507 1.027 5.907 2.347l2.307-2.307C18.747 1.44 16.133 0 12.48 0 5.867 0 .307 5.387.307 12s5.56 12 12.173 12c3.573 0 6.267-1.173 8.373-3.36 2.16-2.16 2.84-5.213 2.84-7.667 0-.76-.053-1.467-.173-2.053z"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googleadmob.svg������������������������������0000664�0000000�0000000�00000001077�14753064456�0026107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.46.033h-.052A11.993 11.993 0 0 0 0 11.922v.052c0 7.475 6.563 11.928 11.447 11.928h.17a3.086 3.086 0 0 0 3.125-3.047c0-1.693-1.433-2.917-3.152-2.917h-.039a6.016 6.016 0 0 1-5.508-6.368v-.052a6.016 6.016 0 0 1 5.573-5.509c1.719 0 3.125-1.237 3.125-2.917A3.086 3.086 0 0 0 11.604.02h-.143zm2.031.026a3.52 3.52 0 0 1 1.746 3.021 3.39 3.39 0 0 1-1.928 3.047c2.865.6 4.532 3.126 4.688 5.378v7.684a3.49 3.49 0 0 1 6.003.026v-7.736A12.046 12.046 0 0 0 13.491.045zm7.475 17.932a2.995 2.995 0 1 0 .04 0z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googleads.svg��������������������������������0000664�0000000�0000000�00000000501�14753064456�0025563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 22.93a4 4 0 1 1 0-8 4 4 0 0 1 0 8m19.464-6.001-8-13.857a4 4 0 0 0-6.93 4l8.001 13.857a4.001 4.001 0 0 0 6.93-4M7.514 4.844l-5.95 10.304A4.5 4.5 0 0 1 4 14.43c2.56-.008 4.625 2.158 4.494 4.715l3.217-5.573-3.61-6.25a4.46 4.46 0 0 1-.587-2.478"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googleadsense.svg����������������������������0000664�0000000�0000000�00000001131�14753064456�0026436�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.056 8.447a3.894 3.894 0 0 0-5.313 1.419l-3.889 6.72a3.874 3.874 0 0 0 1.415 5.293l.01.005a3.894 3.894 0 0 0 5.312-1.42l3.889-6.718a3.875 3.875 0 0 0-1.416-5.294zm-14.7 12.168c-1.08 1.888-3.514 2.583-5.384 1.493S-.561 18.653.519 16.765s3.494-2.586 5.365-1.496 2.554 3.457 1.474 5.344m4.131-19.228a3.94 3.94 0 0 0-3.267 2.189l-3.67 6.279a5 5 0 0 0-.227.387l-2.746 4.737c1.345-.86 3.09-.993 4.55-.143a4.46 4.46 0 0 1 2.22 4.041l2.77-4.763q.123-.186.224-.385l3.67-6.281a3.86 3.86 0 0 0-1.283-5.55 3.96 3.96 0 0 0-2.24-.511z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googleanalytics.svg��������������������������0000664�0000000�0000000�00000000672�14753064456�0027014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.84 2.998v17.999a2.983 2.983 0 0 1-2.967 2.998 3 3 0 0 1-.368-.02 3.06 3.06 0 0 1-2.61-3.1V3.12A3.06 3.06 0 0 1 19.51.02a2.983 2.983 0 0 1 3.329 2.978zM4.133 18.055a2.973 2.973 0 1 0 0 5.945 2.973 2.973 0 0 0 0-5.945m7.872-9.01h-.05a3.06 3.06 0 0 0-2.892 3.126v7.985c0 2.167.954 3.482 2.35 3.763a2.978 2.978 0 0 0 3.57-2.927v-8.959a2.983 2.983 0 0 0-2.978-2.988"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googleappsscript.svg�������������������������0000664�0000000�0000000�00000003011�14753064456�0027203�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.363 2.54a3 3 0 0 0-.376.022 2.86 2.86 0 0 0-1.589.828c-.562.58-.82 1.115-.773 1.943-.01.264.193 1.023.272 1.274 1.115 3.546 2.09 6.75 3.26 10.279q.12.369.267.72.03.07.048-.004.116-.445.29-.945 1.341-3.863 2.633-7.696a.35.35 0 0 0 .004-.217 163 163 0 0 0-1.49-4.572 2.6 2.6 0 0 0-.704-.933q-.827-.69-1.842-.7Zm9.078.117a2.734 2.734 0 0 0-2.878 1.828l-4.576 13.289a2.734 2.734 0 0 0 1.695 3.475l.12.04a2.734 2.734 0 0 0 3.475-1.694L23.85 6.307a2.734 2.734 0 0 0-1.695-3.476c-.233-.1-.506-.124-.716-.174ZM12.375 3.96a1.396 1.396 0 1 1 0 2.791 1.395 1.395 0 0 1 0-2.79zm8.809.07a1.402 1.402 0 1 1 0 2.803 1.402 1.402 0 0 1 0-2.803M5.419 7.605a3 3 0 0 0-.468.052 2.7 2.7 0 0 0-1.337.627 2.62 2.62 0 0 0-.924 1.833 4 4 0 0 0 0 .648 2.52 2.52 0 0 0 .673 1.52q.331.357.732.648 4.565 3.314 9.108 6.664a.8.8 0 0 0 .158.089q.045-.064.007-.167a17 17 0 0 0-.317-1.066 533 533 0 0 1-2.02-6.251 42 42 0 0 0-.497-1.477c-.967-.849-2.078-1.6-3.023-2.302A3.85 3.85 0 0 0 6.153 7.7a2.4 2.4 0 0 0-.734-.094Zm.02 1.424a1.398 1.398 0 1 1 0 2.796 1.398 1.398 0 0 1 0-2.796m-2.458 6.792q-1.1-.008-1.927.622a2.72 2.72 0 0 0-.95 1.45 2.8 2.8 0 0 0-.09 1.04 2.74 2.74 0 0 0 .695 1.583c.664.578 1.26.85 2 .945q2.13-.008 4.262-.02h.418q3.416-.005 6.706.003.223.008.392-.01.09-.008.092-.077a11 11 0 0 0-.834-.653 489 489 0 0 1-6.57-4.815.24.24 0 0 0-.14-.047q-2.01-.005-4.054-.02zm-.19 1.418a1.402 1.402 0 1 1 0 2.803 1.402 1.402 0 0 1 0-2.803m13.874.002a1.4 1.4 0 1 1 0 2.8 1.4 1.4 0 0 1 0-2.8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googleassistant.svg��������������������������0000664�0000000�0000000�00000000664�14753064456�0027037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.365 8.729c.9 0 1.635-.735 1.635-1.635s-.735-1.636-1.635-1.636-1.636.735-1.636 1.636.723 1.635 1.636 1.635m-4.907 5.452a3.27 3.27 0 1 0 0-6.542 3.27 3.27 0 0 0 0 6.542m0 8.722c2.105 0 3.816-1.711 3.816-3.829s-1.711-3.816-3.829-3.816a3.82 3.82 0 0 0-3.816 3.816 3.825 3.825 0 0 0 3.829 3.83M6.542 14.18a6.542 6.542 0 1 0 0-13.084 6.542 6.542 0 1 0 0 13.084"/></svg>����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googleauthenticator.svg����������������������0000664�0000000�0000000�00000001704�14753064456�0027674�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.957 1.338a2 2 0 0 0-.957.27 2.02 2.02 0 0 0-.74 2.761l3.238 5.61H2.022a2.021 2.021 0 1 0 0 4.043h6.476L5.26 19.63a2.022 2.022 0 1 0 3.502 2.021L12 16.045l3.238 5.607a2.022 2.022 0 0 0 3.502-2.021l-3.238-5.61h6.477a2.022 2.022 0 0 0 0-4.043h-6.477L18.74 4.37a2.022 2.022 0 1 0-3.502-2.021L12 7.955 8.762 2.348a2.02 2.02 0 0 0-1.805-1.01m9.959 1.006c.193-.013.393.031.578.138a.996.996 0 0 1 .371 1.381l-4.113 7.125h8.226c.571 0 1.012.441 1.012 1.012s-.44 1.012-1.012 1.012H14.92l-1.168-2.024-1.168-2.023 3.53-6.112c.178-.308.48-.488.802-.51zm-9.934.004c.36-.01.708.166.905.506l3.529 6.11-1.168 2.024-1.168 2.024H2.022c-.571 0-1.012-.441-1.012-1.012s.44-1.012 1.012-1.012h8.226L6.135 3.863a.996.996 0 0 1 .37-1.38 1 1 0 0 1 .477-.135m2.684 11.674h4.668l3.531 6.115a.996.996 0 0 1-.37 1.38.996.996 0 0 1-1.382-.37L12 14.025l-4.113 7.121a.996.996 0 0 1-1.381.372.996.996 0 0 1-.371-1.381Z"/></svg>������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlebigquery.svg���������������������������0000664�0000000�0000000�00000001113�14753064456�0026643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.676 10.595h2.052v5.244a5.9 5.9 0 0 1-2.052-2.088zm18.179 10.836a.504.504 0 0 1 0 .708l-1.716 1.716a.504.504 0 0 1-.708 0l-4.248-4.248-.007-.007c-.02-.02-.028-.045-.043-.066a10.74 10.74 0 0 1-6.334 2.065C4.835 21.599 0 16.764 0 10.799S4.835 0 10.8 0s10.799 4.835 10.799 10.8c0 2.369-.772 4.553-2.066 6.333.025.017.052.028.074.05zm-5.028-10.632a8.015 8.015 0 1 0-8.028 8.028h.024a8.016 8.016 0 0 0 8.004-8.028m-4.86 4.98a6 6 0 0 0 2.04-2.184v-1.764h-2.04zm-4.5.948q.664.085 1.332.072.6.037 1.2 0V7.692H9.468z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlebigtable.svg���������������������������0000664�0000000�0000000�00000003321�14753064456�0026570�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.511.278s0-.4.456-.24c.267.094 3.728 2.243 5.88 3.533l.006.003.364.217q.006.006.011.011c.322.2.656.42 1.006.673a.88.88 0 0 1 .42.78l-.06 7.566a.42.42 0 0 1-.192.396l-1.2.815V5.436c-.042-.034-.083-.07-.131-.098l-5.06-3.01c-.744-.466-1.5-1.642-1.5-2.05m-2.89 12.171 4.39 2.614 4.388-2.566v-1.079L12.25 13.84a.8.8 0 0 1-.24.072.43.43 0 0 1-.24-.072l-4.149-2.47zm0 1.943c0 .17.086.327.228.42l3.933 2.398c.123.06.162.07.228.064.088-.003.173-.074.252-.112l3.933-2.398a.47.47 0 0 0 .228-.42v-.791L12.25 16.07a.43.43 0 0 1-.48 0L7.621 13.6v.79zm8.778-4.137v-.516a.47.47 0 0 0-.228-.408l-3.933-2.398a.44.44 0 0 0-.456 0L7.85 9.331a.49.49 0 0 0-.228.408v.516l4.39 2.614zm-4.473 11.332L6.95 18.625c-.041-.025-.06-.07-.096-.1v-8.63l-1.2.708a.49.49 0 0 0-.227.395v7.867a.9.9 0 0 0 .407.72l1.272.79q-.002-.001-.005-.004l6.024 3.59a.216.216 0 0 0 .336-.216 3.26 3.26 0 0 0-1.535-2.158M8.891 4.097a.85.85 0 0 1 .859.009l6.66 3.954V6.645a.44.44 0 0 0-.24-.371L9.79 2.496a.81.81 0 0 0-.85-.012l-1.433.856C5.56 4.498 1.525 6.893 1.36 6.975a.276.276 0 0 0 0 .48 3.15 3.15 0 0 0 2.495-.312zM22.635 16.49a3.15 3.15 0 0 0-2.519.3l-5.036 2.986a.88.88 0 0 1-.887 0l-.018-.006-6.554-3.867v1.39a.67.67 0 0 0 .204.397l6.356 3.765a.84.84 0 0 0 .887 0l1.415-.863h-.004l6.156-3.646a.252.252 0 0 0 0-.456M10.967 6.13l-1.2-.708a.41.41 0 0 0-.431 0L3.688 8.756a.86.86 0 0 0-.456.767v8.862a.216.216 0 0 0 .36.156 3.3 3.3 0 0 0 1.043-2.398v-5.996a.9.9 0 0 1 .098-.367zm2.11 11.728 1.2.683a.42.42 0 0 0 .443 0l5.684-3.418c.335-.207.442-.408.442-.706l.002-.001v-1.751q-.002.008-.004.017c-.006-2.494-.013-6.831.004-7.104.024-.384-.372-.252-.372-.252a3.37 3.37 0 0 0-1.007 2.399v5.995a1 1 0 0 1-.191.413z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlecalendar.svg���������������������������0000664�0000000�0000000�00000001703�14753064456�0026572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.316 5.684H24v12.632h-5.684zM5.684 24h12.632v-5.684H5.684zM18.316 5.684V0H1.895A1.894 1.894 0 0 0 0 1.895v16.421h5.684V5.684zm-7.207 6.25v-.065q.407-.216.687-.617c.28-.401.279-.595.279-.982q0-.568-.3-1.025a2.05 2.05 0 0 0-.832-.714 2.7 2.7 0 0 0-1.197-.257q-.9 0-1.481.467-.579.467-.793 1.078l1.085.452q.13-.374.413-.633.284-.258.767-.257.495 0 .816.264a.86.86 0 0 1 .322.703q0 .495-.36.778t-.886.284h-.567v1.085h.633q.611 0 1.02.327.407.327.407.843 0 .505-.387.832c-.387.327-.565.327-.924.327q-.527 0-.897-.311-.372-.312-.521-.881l-1.096.452q.268.923.977 1.401.707.479 1.538.477a2.84 2.84 0 0 0 1.293-.291q.574-.29.902-.794.327-.505.327-1.149 0-.643-.344-1.105a2.07 2.07 0 0 0-.881-.689m2.093-1.931.602.913L15 10.045v5.744h1.187V8.446h-.827zM22.105 0h-3.289v5.184H24V1.895A1.894 1.894 0 0 0 22.105 0m-3.289 23.5 4.684-4.684h-4.684zM0 22.105C0 23.152.848 24 1.895 24h3.289v-5.184H0z"/></svg>�������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlecampaignmanager360.svg�����������������0000664�0000000�0000000�00000001613�14753064456�0030364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.82 0c-2.093 0-4.186.8-5.783 2.397a8.14 8.14 0 0 0-2.33 4.761 9 9 0 0 1 .473-.013 8.65 8.65 0 0 1 5.076 1.638 2.66 2.66 0 0 1 .713-2.47c1.046-1.046 2.711-.998 3.715.005a2.772 2.772 0 1 0 3.92-3.922A8.15 8.15 0 0 0 15.82 0m7.078 4.078a3.27 3.27 0 0 1-.941 2.594 3.28 3.28 0 0 1-3.639.674c.312.938.065 1.99-.633 2.687-.99.992-2.663 1.066-3.725.004q-.024-.026-.046-.053l-.003.002A8.18 8.18 0 0 0 2.395 21.603a2.975 2.975 0 0 0 4.206 0c1.162-1.161.87-2.756-.293-3.917-.935-.936-1.122-2.593-.005-3.711.91-.91 2.537-1.17 3.726-.008q.11.108.225.203a8.177 8.177 0 0 0 11.35-.207 8.18 8.18 0 0 0 1.294-9.885M10.725 15.2a2.65 2.65 0 0 1-.702 2.498 2.64 2.64 0 0 1-2.591.658c.21.393.347.809.392 1.237.088.827-.192 1.688-.869 2.365a3.47 3.47 0 0 1-2.773 1 8.18 8.18 0 0 0 9.78-1.353 8.14 8.14 0 0 0 2.329-4.762 8.67 8.67 0 0 1-5.566-1.643"/></svg>���������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlecardboard.svg��������������������������0000664�0000000�0000000�00000001277�14753064456�0026750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.087 4.235a3.07 3.07 0 0 0-2.183.91A3.13 3.13 0 0 0 0 7.35v9.296a3.13 3.13 0 0 0 .903 2.206 3.07 3.07 0 0 0 2.184.913h4.28a3.08 3.08 0 0 0 2.713-1.645l1.209-2.276a.79.79 0 0 1 .703-.42.78.78 0 0 1 .701.42l1.21 2.276a3.08 3.08 0 0 0 2.718 1.645h4.292a3.07 3.07 0 0 0 2.184-.913A3.13 3.13 0 0 0 24 16.646V7.35c0-.825-.324-1.618-.904-2.205a3.07 3.07 0 0 0-2.183-.91zm3.495 5.656c1.138 0 2.06.937 2.06 2.092 0 1.157-.922 2.093-2.06 2.093-1.139 0-2.061-.936-2.061-2.093 0-1.155.922-2.092 2.06-2.092zm10.832 0c1.139 0 2.061.937 2.061 2.092 0 1.157-.922 2.093-2.06 2.093-1.14 0-2.063-.936-2.063-2.093 0-1.155.923-2.092 2.062-2.092"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlechat.svg�������������������������������0000664�0000000�0000000�00000000437�14753064456�0025743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.637 0C.733 0 0 .733 0 1.637v16.5c0 .904.733 1.636 1.637 1.636h3.955v3.323c0 .804.97 1.207 1.539.638l3.963-3.96h11.27c.903 0 1.636-.733 1.636-1.637V5.592L18.408 0Zm3.955 5.592h12.816v8.59H8.455l-2.863 2.863Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlechrome.svg�����������������������������0000664�0000000�0000000�00000000745�14753064456�0026303�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C8.21 0 4.831 1.757 2.632 4.501l3.953 6.848A5.454 5.454 0 0 1 12 6.545h10.691A12 12 0 0 0 12 0M1.931 5.47A11.94 11.94 0 0 0 0 12c0 6.012 4.42 10.991 10.189 11.864l3.953-6.847a5.45 5.45 0 0 1-6.865-2.29zm13.342 2.166a5.446 5.446 0 0 1 1.45 7.09l.002.001h-.002l-5.344 9.257q.309.015.621.016c6.627 0 12-5.373 12-12 0-1.54-.29-3.011-.818-4.364zM12 16.364a4.364 4.364 0 1 1 0-8.728 4.364 4.364 0 0 1 0 8.728"/></svg>���������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlechronicle.svg��������������������������0000664�0000000�0000000�00000000407�14753064456�0026767�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.719 4.812 4.812 3v4l-4.812 3Zm0 10 4.812-3v9.375l-3.914-2.389a1.88 1.88 0 0 1-.898-1.6ZM2.719 0h18.562v4.812H2.719Zm4.812 21.188 13.75-8.594v4.618c0 .626-.323 1.208-.854 1.539L12 24Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googleclassroom.svg��������������������������0000664�0000000�0000000�00000001277�14753064456�0027031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.637 1.637C.732 1.637 0 2.369 0 3.273v17.454c0 .904.732 1.636 1.637 1.636h20.726c.905 0 1.637-.732 1.637-1.636V3.273c0-.904-.732-1.636-1.637-1.636zm.545 2.181h19.636v16.364h-2.726v-1.09h-4.91v1.09h-12zM12 8.182a1.636 1.636 0 1 0 0 3.273 1.636 1.636 0 1 0 0-3.273m-4.363 1.91c-.678 0-1.229.55-1.229 1.226a1.228 1.228 0 0 0 2.455 0c0-.677-.549-1.226-1.226-1.226m8.726 0a1.227 1.227 0 1 0 0 2.453 1.227 1.227 0 0 0 0-2.453M12 12.545c-1.179 0-2.413.401-3.148 1.006a4.1 4.1 0 0 0-1.215-.188c-1.314 0-2.729.695-2.729 1.559v.896h14.184v-.896c0-.864-1.415-1.559-2.729-1.559-.41 0-.83.068-1.215.188-.735-.605-1.969-1.006-3.148-1.006"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlecloud.svg������������������������������0000664�0000000�0000000�00000001164�14753064456�0026130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.19 2.38a9.344 9.344 0 0 0-9.234 6.893c.053-.02-.055.013 0 0-3.875 2.551-3.922 8.11-.247 10.941l.006-.007-.007.03a6.7 6.7 0 0 0 4.077 1.356h5.173l.03.03h5.192c6.687.053 9.376-8.605 3.835-12.35a9.37 9.37 0 0 0-2.821-4.552l-.043.043.006-.05A9.34 9.34 0 0 0 12.19 2.38m-.358 4.146c1.244-.04 2.518.368 3.486 1.15a5.19 5.19 0 0 1 1.862 4.078v.518c3.53-.07 3.53 5.262 0 5.193h-5.193l-.008.009v-.04H6.785a2.6 2.6 0 0 1-1.067-.23h.001a2.597 2.597 0 1 1 3.437-3.437l3.013-3.012A6.75 6.75 0 0 0 8.11 8.24c.018-.01.04-.026.054-.023a5.19 5.19 0 0 1 3.67-1.69z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlecloudcomposer.svg����������������������0000664�0000000�0000000�00000000353�14753064456�0027677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.636 4.752h-6.42V0h17.556v4.728h-6.36v6.396H9.636zm-6.42 1.692h4.74v6.36h6.408V24H9.636v-6.42h-6.42zm12.84-.012h4.728V24h-4.728zM7.92 24H3.216v-4.728H7.92z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlecloudspanner.svg�����������������������0000664�0000000�0000000�00000001036�14753064456�0027515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 9.06 7.944 6.864V2.388L10.38.924v3.66l1.62.744 1.62-.744V.924l2.436 1.464v4.476zm-8.124 4.752L0 16.056v2.988l3.228-1.86 1.404.912.096 1.632-3.24 1.872 2.616 1.476 3.828-2.268-.132-4.596zm9.732-.9V8.758l-1.37.742-.238.129-.238-.13-1.37-.741v4.154l-3.613 2.09 1.282.783.231.142.008.27.046 1.612L12 15.696l3.595 2.079.045-1.59.008-.27.231-.142 1.301-.795zm7.164 4.272L24 19.044v-2.988L20.064 13.8l-3.924 2.4-.132 4.596 3.888 2.244 2.616-1.44-3.24-1.836.096-1.668z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlecloudstorage.svg�����������������������0000664�0000000�0000000�00000000510�14753064456�0027507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 2.4v8.4h-2.4V2.4zM0 10.8h2.4V2.4H0zm3-8.4h18v8.4H3zm12.6 4.2a1.8 1.8 0 1 0 3.6 0 1.8 1.8 0 0 0-3.6 0m-10.8.6H12V6H4.8zm16.8 14.4H24v-8.4h-2.4zM0 21.6h2.4v-8.4H0zm3-8.4h18v8.4H3zm12.6 4.2a1.8 1.8 0 1 0 3.6 0 1.8 1.8 0 0 0-3.6 0M4.8 18H12v-1.2H4.8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlecolab.svg������������������������������0000664�0000000�0000000�00000001146�14753064456�0026102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.941 4.976a7.03 7.03 0 0 0-4.93 2.064 7.033 7.033 0 0 0-.124 9.807l2.395-2.395a3.646 3.646 0 0 1 5.15-5.148l2.397-2.399a7.03 7.03 0 0 0-4.888-1.93m-9.871.01a7.03 7.03 0 0 0-4.888 1.931l2.391 2.391a3.643 3.643 0 0 1 5.023.127l1.734-2.973-.1-.08a7.03 7.03 0 0 0-4.16-1.396m15.01 2.172-2.39 2.39a3.646 3.646 0 0 1-5.15 5.15l-2.406 2.407a7.036 7.036 0 0 0 9.945-9.947m-20.148.01a7.033 7.033 0 0 0-.002 9.681l2.397-2.397a3.643 3.643 0 0 1-.004-4.892zm7.664 7.423a3.635 3.635 0 0 1-5.017.113L2.182 17.1a7.03 7.03 0 0 0 9.007.546l.137-.112z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlecontaineroptimizedos.svg���������������0000664�0000000�0000000�00000000667�14753064456�0031302�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m0 21.6a9.6 9.6 0 0 1-5.016-1.416L11.28 17.7v-5.4L6.612 9.6v5.424l3.3 1.908-4.152 2.4A9.6 9.6 0 0 1 7.296 3.6v4.8L12 11.136 16.68 8.4 12 5.724 8.688 7.632V2.964a9.6 9.6 0 0 1 12.372 5.64A9.7 9.7 0 0 1 21.672 12v.084L17.352 9.6l-4.68 2.712v5.412l4.68-2.7v-3.816l4.14 2.4A9.6 9.6 0 0 1 12 21.6"/></svg>�������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googledataflow.svg���������������������������0000664�0000000�0000000�00000001466�14753064456�0026630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.856 9.6 3.72 9.564l.036-2.46 6.312-3.516L5.94 1.14 8.028 0l4.092 2.436h.012L16.284.108h.06l1.992 1.188-4.188 2.352 6.168 3.684v2.46l-2.124-.036.012-1.284L13.116 5.4l-.024 2.076-1.224-.012v-.002l-.84-.01.024-2.076-5.172 2.94zm12.252 6.072-5.16 2.94.024-2.064-2.064-.024-.024 2.064-5.1-3.072.012-1.248H3.684v2.4l6.168 3.684 2.011 1.197.005.015L15.972 24h.06l2.028-1.14-4.128-2.448-.02.011.008-.023 6.324-3.516.036-2.508-2.148-.024zM5.664 22.704l1.992 1.188h.06l4.152-2.328-2.016-1.212zm13.68-12.024a1.368 1.368 0 1 0 0 2.736 1.368 1.368 0 0 0 0-2.736M4.656 13.224a1.368 1.368 0 1 0 0-2.736 1.368 1.368 0 0 0 0 2.736m7.416-5.004a1.368 1.368 0 1 0 0 2.736 1.368 1.368 0 0 0 0-2.736m-.108 4.812a1.368 1.368 0 1 0 0 2.736 1.368 1.368 0 0 0 0-2.736"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googledataproc.svg���������������������������0000664�0000000�0000000�00000002131�14753064456�0026612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.373 20.364a4.682 4.682 0 0 1-8.1 0 4.7 4.7 0 0 1 0-4.669c.326-.564.778-.995 1.272-1.358.472.198 3.394 1.421 3.917 1.717a2.29 2.29 0 0 0-3.109.842 2.3 2.3 0 0 0 0 2.267 2.27 2.27 0 0 0 2.564 1.053 2.25 2.25 0 0 0 1.375-1.053 2.33 2.33 0 0 0 0-2.279 2.5 2.5 0 0 0-.83-.83l-3.53-2.045-5.727-3.317a5.02 5.02 0 0 0 4.139-.36l6.32 3.641a4.68 4.68 0 0 1 1.709 6.391m-14-2.01v.004l-3.558 2a2.27 2.27 0 0 1-3.102-.823 2.267 2.267 0 0 1 2.551-3.332c.591.161 1.089.56 1.375 1.102v-.05a2.27 2.27 0 0 1-.824 3.103c.559-.303 3.352-2.62 3.465-2.714-.304-1.744-1.573-3.24-3.396-3.72a4.6 4.6 0 0 0-3.558.479 4.67 4.67 0 0 0-1.694 6.383 4.68 4.68 0 0 0 2.865 2.192 4.66 4.66 0 0 0 3.66-.56l6.877-3.973c-.019-1.303.512-2.604 1.375-3.58l-6.036 3.49zm-2.4-4.703v-8.1h.012c.002-1.617.821-3.189 2.321-4.055a4.682 4.682 0 1 1 2.337 8.737 4.7 4.7 0 0 1-1.55-.28c-.016-.085-.733-3.796-.733-4.188L9.29 9.59v6.761a4.08 4.08 0 0 0-2.317-2.7m2.403-8.1a2.279 2.279 0 1 0 4.546 0 2.23 2.23 0 0 0-.297-1.127 2.28 2.28 0 0 0-1.97-1.14 2.267 2.267 0 0 0-2.279 2.254z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googledatastudio.svg�������������������������0000664�0000000�0000000�00000001110�14753064456�0027152�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.197 23.002a3.502 3.502 0 0 1 0-6h-6.909a3 3 0 0 0-.252-.011A3.05 3.05 0 0 0 9 20.002v.014a3.015 3.015 0 0 0 3.288 2.986zm1.803-6a3.001 3.001 0 0 1 0 6 3.001 3.001 0 0 1 0-6m-10.803-2.004a3.502 3.502 0 0 1 0-6H3.288a3 3 0 0 0-.252-.011A3.05 3.05 0 0 0 0 11.998v.014a3.015 3.015 0 0 0 3.288 2.986zm1.803-6a3.001 3.001 0 0 1 0 6 3.001 3.001 0 0 1 0-6m7.197-2.004a3.502 3.502 0 0 1 0-6h-6.909a3.062 3.062 0 0 0-3.288 3v.014a3.015 3.015 0 0 0 3.288 2.986zm1.803-6a3.001 3.001 0 0 1 0 6 3.001 3.001 0 0 1 0-6"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googledisplayandvideo360.svg�����������������0000664�0000000�0000000�00000001135�14753064456�0030430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.421.01a2.95 2.95 0 0 0-2.828 1.52 2.967 2.967 0 0 0 1.094 4.076l10.6 6.064 4.79-2.672a3.55 3.55 0 0 1 1.811-.443L5.701.424A2.95 2.95 0 0 0 4.42.01ZM1.164 4.768v14.484a3.47 3.47 0 0 1 2.972-1.687 3.47 3.47 0 0 1 2.961 1.672l.004-10.53L2.44 6.04a3.43 3.43 0 0 1-1.275-1.271Zm18.42 4.289a3.1 3.1 0 0 0-1.264.379L7.6 15.414c.003 1.873-.011 3.745.003 5.617 0 .4-.072.988-.396 1.606l12.548-7.227 1.487-.83a2.98 2.98 0 0 0 1.463-3.511 3.08 3.08 0 0 0-3.121-2.012M4.136 18.065A2.967 2.967 0 1 0 4.134 24a2.967 2.967 0 0 0 .002-5.935"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googledocs.svg�������������������������������0000664�0000000�0000000�00000000504�14753064456�0025747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.727 6.727H14V0H4.91c-.905 0-1.637.732-1.637 1.636v20.728c0 .904.732 1.636 1.636 1.636h14.182c.904 0 1.636-.732 1.636-1.636V6.727zm-.545 10.455H7.09v-1.364h7.09v1.364zm2.727-3.273H7.091v-1.364h9.818zm0-3.273H7.091V9.273h9.818zM14.727 6h6l-6-6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googledrive.svg������������������������������0000664�0000000�0000000�00000001061�14753064456�0026127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.01 1.485c-2.082 0-3.754.02-3.743.047.01.02 1.708 3.001 3.774 6.62l3.76 6.574h3.76c2.081 0 3.753-.02 3.742-.047-.005-.02-1.708-3.001-3.775-6.62l-3.76-6.574zm-4.76 1.73a789.828 789.861 0 0 0-3.63 6.319L0 15.868l1.89 3.298 1.885 3.297 3.62-6.335 3.618-6.33-1.88-3.287C8.1 4.704 7.255 3.22 7.25 3.214zm2.259 12.653-.203.348c-.114.198-.96 1.672-1.88 3.287a423.93 423.948 0 0 1-1.698 2.97c-.01.026 3.24.042 7.222.042h7.244l1.796-3.157c.992-1.734 1.85-3.23 1.906-3.323l.104-.167h-7.249z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googleearth.svg������������������������������0000664�0000000�0000000�00000001250�14753064456�0026121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c-1.326 0-2.597.22-3.787.613 4.94-1.243 8.575 1.72 11.096 5.606 1.725 2.695 2.813 2.83 4.207 2.412A11.956 11.956 0 0 0 12 0M7.658 2.156c-1.644.019-3.295.775-4.931 2.207A11.97 11.97 0 0 0 0 12c.184-2.823 2.163-5.128 4.87-5.07 2.104.044 4.648 1.518 7.13 5.289 4.87 7.468 10.917 5.483 11.863 1.51.081-.566.137-1.14.137-1.729 0-.176-.02-.347-.027-.521-1.645 1.725-4.899 2.35-8.264-2.97-2.59-4.363-5.31-6.383-8.05-6.353zM3.33 13.236c-1.675.13-2.657 1.804-2.242 3.756A11.96 11.96 0 0 0 12 24c4.215 0 7.898-2.149 10.037-5.412v-.043c-2.836 3.49-8.946 4.255-13.855-2.182-1.814-2.386-3.544-3.228-4.852-3.127"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googleearthengine.svg������������������������0000664�0000000�0000000�00000003147�14753064456�0027316�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.853.717a1.2 1.2 0 0 0-.65.17L4.53 2.49c-.53.317-.732.984-.467 1.543l.93 1.958a9.2 9.2 0 0 0-1.745 3.076l-2.124.135A1.2 1.2 0 0 0 0 10.399v3.116a1.2 1.2 0 0 0 1.084 1.194l2.171.21a9.2 9.2 0 0 0 1.748 3.066l-.941 1.982a1.2 1.2 0 0 0 .467 1.543l2.673 1.603a1.2 1.2 0 0 0 1.605-.347l1.22-1.771a9.2 9.2 0 0 0 1.971.216q.048-.002.096-.004a9.2 9.2 0 0 0 1.876-.212l1.22 1.77a1.2 1.2 0 0 0 1.606.348l2.673-1.603c.53-.317.732-.984.467-1.543l-.941-1.982q.035-.036.07-.076c.066-.077.125-.159.188-.238a9.2 9.2 0 0 0 1.484-2.736l2.138-.137A1.2 1.2 0 0 0 24 13.601v-3.116a1.2 1.2 0 0 0-1.084-1.194V9.29l-2.16-.21a9.2 9.2 0 0 0-1.501-2.786q-.093-.12-.19-.238-.028-.033-.058-.065l.93-1.958a1.2 1.2 0 0 0-.467-1.543L16.797.887a1.2 1.2 0 0 0-1.605.347L13.99 2.976a9 9 0 0 0-1.896-.219c-.033 0-.064-.004-.096-.004a9.2 9.2 0 0 0-1.992.223L8.808 1.234a1.2 1.2 0 0 0-.955-.517m4.148 3.882c.574 0 1.13.072 1.668.197a7.41 7.41 0 0 1 5.384 4.993 7.4 7.4 0 0 1 .332 2.193c0 .764-.116 1.5-.332 2.193a7.41 7.41 0 0 1-5.384 4.992 7.4 7.4 0 0 1-1.668.199c-4.071 0-7.384-3.313-7.384-7.384s3.313-7.383 7.384-7.383M11.907 6C9.558 6 8.429 7.207 8.429 7.207c3.501-1.577 5.23 2.986 6.702 4.386s2.887.203 2.887.203c-.012-.787-.252-1.533-.252-1.533-.968.168-1.398-.494-1.97-1.252S13.561 6 11.907 6m-3.84 3.228c-.705.015-1.3.35-1.653 1-.868 1.601-.096 3.64-.096 3.64s.3-1.532 1.537-1.309c1.238.224 1.754 1.208 2.504 1.985.75.776 1.895 2.064 3.978 2.064 2.082 0 3.018-1.516 3.435-2.937v-.002l-.053.04c-1.265.98-3.335.882-4.548-.275-.89-.846-1.403-1.908-2.135-2.68-.981-1.038-2.065-1.545-2.97-1.526z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlefit.svg��������������������������������0000664�0000000�0000000�00000001316�14753064456�0025603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.218 4.868c-1.235-2.194-3.927-3.356-6.378-2.843-1.11.243-2.173.774-2.979 1.583q-.932.921-1.864 1.841c-.915-.91-1.788-1.937-2.882-2.648a5.98 5.98 0 0 0-3.904-.845c-4.757.578-6.936 6.346-3.615 9.85 3.481 3.418 6.937 6.863 10.413 10.288 3.291-3.251 6.573-6.51 9.871-9.752 2.132-1.831 2.8-5.026 1.338-7.474M6.162 11.223c-.692-.755-1.511-1.404-2.141-2.208-.821-1.218-.158-3.012 1.26-3.397.781-.256 1.683-.031 2.279.527.627.609 1.236 1.237 1.866 1.843l.005.006a415 415 0 0 0-3.269 3.229m5.846 5.758-3.255-3.22c2.555-2.516 5.103-5.042 7.65-7.566.393-.394.93-.646 1.487-.673 2.086-.154 3.285 2.372 1.801 3.866-2.549 2.542-5.121 5.062-7.683 7.593"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlefonts.svg������������������������������0000664�0000000�0000000�00000000431�14753064456�0026147�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2.8A3.6 3.6 0 1 0 4 10a3.6 3.6 0 0 0 0-7.2m7.6 0v18.4h7.2a5.2 5.2 0 1 1 0-10.4 4 4 0 1 1 0-8zm7.2 0v8a4 4 0 1 0 0-8m0 8v10.4A5.2 5.2 0 0 0 24 16a5.2 5.2 0 0 0-5.2-5.2m-7.7-7.206L0 21.199h8.8l2.3-3.64Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googleforms.svg������������������������������0000664�0000000�0000000�00000000743�14753064456�0026152�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.727 6h6l-6-6zm0 .727H14V0H4.91c-.905 0-1.637.732-1.637 1.636v20.728c0 .904.732 1.636 1.636 1.636h14.182c.904 0 1.636-.732 1.636-1.636V6.727zM7.91 17.318a.819.819 0 1 1 .001-1.638.819.819 0 0 1 0 1.638zm0-3.273a.819.819 0 1 1 .001-1.637.819.819 0 0 1 0 1.637zm0-3.272a.819.819 0 1 1 .001-1.638.819.819 0 0 1 0 1.638zm9 6.409h-6.818v-1.364h6.818zm0-3.273h-6.818v-1.364h6.818zm0-3.273h-6.818V9.273h6.818z"/></svg>�����������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlegemini.svg�����������������������������0000664�0000000�0000000�00000000552�14753064456�0026272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.04 19.32Q12 21.51 12 24q0-2.49.93-4.68.96-2.19 2.58-3.81t3.81-2.55Q21.51 12 24 12q-2.49 0-4.68-.93a12.3 12.3 0 0 1-3.81-2.58 12.3 12.3 0 0 1-2.58-3.81Q12 2.49 12 0q0 2.49-.96 4.68-.93 2.19-2.55 3.81a12.3 12.3 0 0 1-3.81 2.58Q2.49 12 0 12q2.49 0 4.68.96 2.19.93 3.81 2.55t2.55 3.81"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlehome.svg�������������������������������0000664�0000000�0000000�00000000515�14753064456�0025751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a1.44 1.44 0 0 0-.947.399L.547 10.762a1.26 1.26 0 0 0-.342.808v11.138c0 .768.53 1.292 1.311 1.292h20.968c.78 0 1.311-.522 1.311-1.292V11.57a1.25 1.25 0 0 0-.34-.804L15.68 3.097h-.001L12.947.4A1.45 1.45 0 0 0 12 0m0 6.727 6.552 6.456v5.65H5.446v-5.65z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlekeep.svg�������������������������������0000664�0000000�0000000�00000001054�14753064456�0025744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.908 0c-.904 0-1.635.733-1.635 1.637v20.726c0 .904.732 1.637 1.635 1.637H19.09c.904 0 1.637-.733 1.637-1.637V6.5h-6.5V0zm9.819 0v6h6zM11.97 8.229c.224 0 .571.031.765.072.2.04.576.185.842.312.828.414 1.467 1.164 1.774 2.088.168.511.188 1.34.05 1.865a3.75 3.75 0 0 1-1.277 1.952l-.25.193h-1.87c-2.134 0-1.931.042-2.478-.494a3.35 3.35 0 0 1-.984-1.844c-.148-.766-.053-1.437.32-2.203.19-.399.303-.556.65-.899.68-.679 1.513-1.037 2.458-1.042m-1.866 7.863h3.781v1.328h-3.779v-1.328z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlelens.svg�������������������������������0000664�0000000�0000000�00000000740�14753064456�0025762�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 16.667a4.666 4.666 0 1 0 0-9.333 4.666 4.666 0 0 0 0 9.333m8 6a2.666 2.666 0 1 0 0-5.333 2.666 2.666 0 0 0 0 5.333m-13.333-2a3.343 3.343 0 0 1-3.334-3.334v-2.666H0v2.666A6.665 6.665 0 0 0 6.667 24h2.666v-3.333zm-3.334-14c0-1.834 1.5-3.334 3.334-3.334h2.666V0H6.667A6.665 6.665 0 0 0 0 6.667v2.666h3.333zm14-3.334c1.834 0 3.334 1.5 3.334 3.334v2.666H24V6.667A6.665 6.665 0 0 0 17.333 0h-2.666v3.333Z"/></svg>��������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlemaps.svg�������������������������������0000664�0000000�0000000�00000001601�14753064456�0025756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.527 4.799c1.212 2.608.937 5.678-.405 8.173-1.101 2.047-2.744 3.74-4.098 5.614-.619.858-1.244 1.75-1.669 2.727-.141.325-.263.658-.383.992-.121.333-.224.673-.34 1.008-.109.314-.236.684-.627.687h-.007c-.466-.001-.579-.53-.695-.887-.284-.874-.581-1.713-1.019-2.525-.51-.944-1.145-1.817-1.79-2.671zM8.545 7.705l-3.959 4.707c.724 1.54 1.821 2.863 2.871 4.18q.371.465.737.936l4.984-5.925-.029.01c-1.741.601-3.691-.291-4.392-1.987a3.4 3.4 0 0 1-.209-.716c-.063-.437-.077-.761-.004-1.198zM5.492 3.149l-.003.004c-1.947 2.466-2.281 5.88-1.117 8.77l4.785-5.689-.058-.05zM14.661.436l-3.838 4.563.027-.01c1.6-.551 3.403.15 4.22 1.626.176.319.323.683.377 1.045.068.446.085.773.012 1.22l-.003.016 3.836-4.561A8.38 8.38 0 0 0 14.67.439zM9.466 5.868 14.162.285l-.047-.012A8.3 8.3 0 0 0 11.986 0a8.44 8.44 0 0 0-6.169 2.766l-.016.018z"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlemarketingplatform.svg������������������0000664�0000000�0000000�00000001341�14753064456�0030545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C8.926 0 5.852 1.17 3.511 3.511c-4.37 4.371-4.66 11.299-.869 16.01a3.14 3.14 0 0 1 .719-3.314 3.14 3.14 0 0 1 3.672-.56 6.163 6.163 0 0 1 9.324-8.004 2.921 2.921 0 1 0 4.132-4.132A11.97 11.97 0 0 0 12 0m9.36 4.481a3.14 3.14 0 0 1-.72 3.313 3.14 3.14 0 0 1-3.672.56 6.165 6.165 0 0 1-.61 8.003 2.921 2.921 0 1 0 4.131 4.132c4.37-4.37 4.66-11.298.87-16.008zM5.576 15.501a2.92 2.92 0 0 0-2.922 2.922 2.92 2.92 0 0 0 2.922 2.922 2.92 2.92 0 0 0 2.922-2.922A2.92 2.92 0 0 0 5.577 15.5zm10.07 1.467a6.17 6.17 0 0 1-7.293 0 3.14 3.14 0 0 1-.56 3.672 3.14 3.14 0 0 1-3.314.718c4.376 3.523 10.665 3.523 15.04 0a3.14 3.14 0 0 1-3.313-.718 3.14 3.14 0 0 1-.56-3.672"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlemeet.svg�������������������������������0000664�0000000�0000000�00000001101�14753064456�0025743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.53 2.13 0 7.75h5.53zm.398 0v5.62h7.608v3.65l5.47-4.45c-.014-1.22.031-2.25-.025-3.46-.148-1.09-1.287-1.47-2.236-1.36zM23.1 4.32c-.802.295-1.358.995-2.047 1.49-2.506 2.05-4.982 4.12-7.468 6.19 3.025 2.59 6.04 5.18 9.065 7.76 1.218.671 1.428-.814 1.328-1.64v-13a.83.83 0 0 0-.877-.825zM.038 8.15v7.7h5.53v-7.7zm13.577 8.1H6.008v5.62c3.864-.006 7.737.011 11.58-.009 1.02-.07 1.618-1.12 1.468-2.07v-2.51l-5.47-4.68v3.65zm-13.577 0c.02 1.44-.041 2.88.033 4.31.162.948 1.158 1.43 2.047 1.31h3.464v-5.62z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlemessages.svg���������������������������0000664�0000000�0000000�00000001146�14753064456�0026631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0M4.911 7.089h11.456a2.197 2.197 0 0 1 2.165 2.19v5.863a2.213 2.213 0 0 1-2.177 2.178H8.04c-1.174 0-2.04-.99-2.04-2.178v-4.639L4.503 7.905c-.31-.42-.05-.816.408-.816m3.415 2.19c-.347 0-.68.21-.68.544s.333.544.68.544h7.905c.346 0 .68-.21.68-.544s-.334-.545-.68-.545zm0 2.177c-.347 0-.68.21-.68.544s.333.544.68.544h7.905c.346 0 .68-.21.68-.544s-.334-.544-.68-.544zm-.013 2.19c-.346 0-.68.21-.68.544s.334.544.68.544h5.728c.347 0 .68-.21.68-.544s-.333-.545-.68-.545z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlenearby.svg�����������������������������0000664�0000000�0000000�00000000504�14753064456�0026277�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.546 12 12 6.545 17.455 12l-5.454 5.454zm16.976-1.154L13.158.48a1.635 1.635 0 0 0-2.314 0L.478 10.846a1.63 1.63 0 0 0 0 2.305l10.37 10.372a1.63 1.63 0 0 0 2.304 0l10.37-10.372a1.63 1.63 0 0 0 0-2.305zM12 20.726l-8.727-8.728L12 3.27l8.727 8.728z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlenews.svg�������������������������������0000664�0000000�0000000�00000002173�14753064456�0025777�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.267 21.2a.614.614 0 0 1-.613.613H3.344a.614.614 0 0 1-.612-.613V8.115a.614.614 0 0 1 .613-.613h17.309a.614.614 0 0 1 .613.613zm-3.032-3.42v-1.195a.08.08 0 0 0-.08-.08h-5.373v1.361h5.373a.08.08 0 0 0 .08-.083zm.817-2.587v-1.201a.08.08 0 0 0-.079-.082h-6.19v1.362h6.189a.08.08 0 0 0 .08-.078v-.004zm-.817-2.588V11.4a.08.08 0 0 0-.08-.08h-5.373v1.361h5.373a.08.08 0 0 0 .08-.079zM8.15 14.045v1.226h1.77c-.145.748-.804 1.292-1.77 1.292a1.976 1.976 0 0 1 0-3.95 1.77 1.77 0 0 1 1.253.49l.934-.932a3.14 3.14 0 0 0-2.187-.853 3.268 3.268 0 1 0 0 6.537c1.89 0 3.133-1.328 3.133-3.197a4 4 0 0 0-.052-.619zM2.27 7.654a.616.616 0 0 1 .613-.613h12.154l-1.269-3.49a.595.595 0 0 0-.743-.383L.368 7.775a.594.594 0 0 0-.323.775l2.225 6.112za.616.616 0 0 1 .613-.613h12.154l-1.269-3.49a.595.595 0 0 0-.743-.383L.368 7.775a.594.594 0 0 0-.323.775l2.225 6.112zm21.312-.31-8.803-2.37.751 2.067h5.584a.614.614 0 0 1 .613.613v8.794l2.247-8.365a.59.59 0 0 0-.392-.74m-4.496-1.675V2.795a.61.61 0 0 0-.611-.608H5.524a.61.61 0 0 0-.616.605v2.837l8.39-3.052a.594.594 0 0 1 .743.39l.544 1.497z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlepay.svg��������������������������������0000664�0000000�0000000�00000002300�14753064456�0025604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.963 7.235A3.96 3.96 0 0 0 .422 9.419a3.96 3.96 0 0 0 0 3.559 3.96 3.96 0 0 0 3.541 2.184c1.07 0 1.97-.352 2.627-.957.748-.69 1.18-1.71 1.18-2.916a5 5 0 0 0-.07-.806H3.964v1.526h2.14a1.84 1.84 0 0 1-.79 1.205c-.356.241-.814.379-1.35.379-1.034 0-1.911-.697-2.225-1.636a2.38 2.38 0 0 1 0-1.517c.314-.94 1.191-1.636 2.225-1.636a2.15 2.15 0 0 1 1.52.594l1.132-1.13a3.8 3.8 0 0 0-2.652-1.033zm6.501.55v6.9h.886V11.89h1.465q.904 0 1.522-.588a1.91 1.91 0 0 0 .635-1.464 1.92 1.92 0 0 0-.635-1.456 2.13 2.13 0 0 0-1.522-.598zm2.427.85a1.16 1.16 0 0 1 .823.365 1.176 1.176 0 0 1 0 1.686 1.17 1.17 0 0 1-.877.357H11.35V8.635h1.541m4.124 1.175q-1.262 0-1.907.925l.781.491q.432-.626 1.175-.626a1.25 1.25 0 0 1 .856.323 1 1 0 0 1 .366.785v.202q-.51-.29-1.3-.289-.926 0-1.479.434-.555.432-.554 1.165a1.48 1.48 0 0 0 .525 1.156q.525.463 1.305.463.915 0 1.465-.81h.038v.655h.848v-2.909q0-.915-.568-1.44-.57-.525-1.551-.525m2.263.154 1.946 4.422-1.098 2.38h.915L24 9.963h-.965l-1.368 3.391h-.02l-1.406-3.39zm-2.146 2.368q.741 0 1.156.33 0 .558-.44.973a1.41 1.41 0 0 1-.997.414 1.08 1.08 0 0 1-.69-.232.71.71 0 0 1-.293-.578q0-.383.363-.647.36-.26.9-.26Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlephotos.svg�����������������������������0000664�0000000�0000000�00000001175�14753064456�0026340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.678 16.672c0 2.175.002 4.565-.001 6.494-.001.576-.244.814-.817.833-7.045.078-8.927-7.871-4.468-11.334-1.95.016-4.019.007-5.986.007-1.351 0-1.414-.01-1.405-1.351.258-6.583 7.946-8.275 11.323-3.936L11.308.928c-.001-.695.212-.906.906-.925 6.409-.187 9.16 7.308 4.426 11.326l6.131.002c1.097 0 1.241.105 1.228 1.217-.223 6.723-7.802 8.376-11.321 4.124m.002-15.284-.003 9.972c6.56-.465 6.598-9.532.003-9.972m-1.36 21.224-.001-9.97c-6.927.598-6.29 9.726.002 9.97zM1.4 11.315l9.95.008c-.527-6.829-9.762-6.367-9.95-.008m11.238 1.365c.682 6.875 9.67 6.284 9.977.01z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googleplay.svg�������������������������������0000664�0000000�0000000�00000000550�14753064456�0025765�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.018 13.298-3.919 2.218-3.515-3.493 3.543-3.521 3.891 2.202a1.49 1.49 0 0 1 0 2.594M1.337.924a1.5 1.5 0 0 0-.112.568v21.017c0 .217.045.419.124.6l11.155-11.087zm12.207 10.065 3.258-3.238L3.45.195a1.47 1.47 0 0 0-.946-.179zm0 2.067-11 10.933c.298.036.612-.016.906-.183l13.324-7.54z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlepubsub.svg�����������������������������0000664�0000000�0000000�00000002541�14753064456�0026322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.3 7.452a2.064 2.064 0 1 1 4.128 0 2.064 2.064 0 0 1-4.128 0M3.636 9.516a2.064 2.064 0 1 0 0-4.128 2.064 2.064 0 0 0 0 4.128M12 19.872A2.064 2.064 0 1 0 12 24a2.064 2.064 0 0 0 0-4.128m-5.774-3.151a2.6 2.6 0 0 0-.118-.48q0-.003-.002-.006a2.6 2.6 0 0 0-.2-.436l-.004-.008a2.6 2.6 0 0 0-.276-.39l-.001-.001a2.6 2.6 0 0 0-.346-.336 2.6 2.6 0 0 0-1.643-.592A2.628 2.628 0 1 0 6.264 17.1c0-.13-.02-.254-.038-.38zm8.499-2.53q.048-.071.094-.147a3 3 0 0 0 .201-.37q.04-.081.074-.164a3.3 3.3 0 0 0 .242-1.234c0-1.51-1.01-2.772-2.388-3.183a3 3 0 0 0-.42-.1A3 3 0 0 0 12 8.94c-.183 0-.359.021-.532.054a3 3 0 0 0-.428.103 3.325 3.325 0 0 0-2.376 3.179c0 .567.155 1.093.405 1.561q.04.082.086.16.094.152.201.292.06.076.12.147a3.314 3.314 0 0 0 4.885.196q.2-.204.364-.44zm-8.987.608c.473.433.818 1.002.956 1.651l2.575-1.486a3.8 3.8 0 0 1-.946-1.657L5.738 14.8zm5.302-9.21v2.988A3.8 3.8 0 0 1 12 8.44c.329 0 .643.055.948.133v-2.98c-.3.097-.615.163-.948.163-.337 0-.656-.067-.96-.166zm7.317 9.132L15.711 13.2a3.8 3.8 0 0 1-.914 1.683l2.542 1.46a3.1 3.1 0 0 1 1.018-1.622m2.007-.249c-.58 0-1.112.194-1.547.513a2.6 2.6 0 0 0-.662.701l-.013.024q-.125.194-.212.409-.01.03-.02.061a2.6 2.6 0 0 0-.124.421 2.628 2.628 0 1 0 2.578-2.129m-8.862-9.266a2.5 2.5 0 0 0 .99 0A2.626 2.626 0 0 0 12 0a2.627 2.627 0 0 0-.498 5.206"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlescholar.svg����������������������������0000664�0000000�0000000�00000000336�14753064456�0026455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.242 13.769 0 9.5 12 0l12 9.5-5.242 4.269C17.548 11.249 14.978 9.5 12 9.5c-2.977 0-5.548 1.748-6.758 4.269M12 10a7 7 0 1 0 0 14 7 7 0 0 0 0-14"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlesearchconsole.svg����������������������0000664�0000000�0000000�00000002005�14753064456�0027645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.548 1.156 6.832 2.872v1.682h1.716zm0 3.398v.035H6.832v-.035H3.386L0 7.844v3.577h2.826V8.94c0-.525.429-.954.954-.954h16.476c.525 0 .954.43.954.954v2.48h2.754V7.844l-3.386-3.29H17.3v.035h-1.717v-.035zm7.035 0H17.3V2.872l-1.717-1.716zM8.679 1.188V2.84h6.773V1.188zm11.471 7.07a1 1 0 0 0-.132.01l-.543.002c-5.216.014-10.432-.008-15.648.01-.435-.063-.794.436-.716.883v2.264h17.812c-.016-.888.045-1.782-.034-2.666-.104-.342-.427-.502-.739-.502zm-15.422.634a.689.698 0 0 1 .689.698.689.698 0 0 1-.689.697.689.698 0 0 1-.688-.697.689.698 0 0 1 .688-.698m2.134 0a.689.698 0 0 1 .689.698.689.698 0 0 1-.689.697.689.698 0 0 1-.688-.697.689.698 0 0 1 .688-.698M.036 11.645v9.156c0 1.05.858 1.908 1.907 1.908h.883V11.645zm21.174 0v11.064h.882c1.05 0 1.908-.858 1.908-1.908v-9.156zM4.057 13.133v6.85h6.137v-6.85zm13.243.021v3.777l-1.708.977-1.708-.977v-3.758a4.006 4.006 0 0 0 0 7.23v2.441h3.457v-2.442a4.006 4.006 0 0 0-.041-7.248m-13.243 8.26v1.43h7.925v-1.43z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlesheets.svg�����������������������������0000664�0000000�0000000�00000000600�14753064456�0026307�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.318 12.545H7.91v-1.909h3.41v1.91zM14.728 0v6h6zm1.363 10.636h-3.41v1.91h3.41zm0 3.273h-3.41v1.91h3.41zM20.727 6.5v15.864c0 .904-.732 1.636-1.636 1.636H4.909a1.636 1.636 0 0 1-1.636-1.636V1.636C3.273.732 4.005 0 4.909 0h9.318v6.5zm-3.273 2.773H6.545v7.909h10.91v-7.91zm-6.136 4.636H7.91v1.91h3.41v-1.91z"/></svg>��������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googleslides.svg�����������������������������0000664�0000000�0000000�00000000463�14753064456�0026306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.09 15.273H7.91v-4.637h8.18zm1.728-8.523h2.91v15.614c0 .904-.733 1.636-1.637 1.636H4.909a1.636 1.636 0 0 1-1.636-1.636V1.636C3.273.732 4.005 0 4.909 0h9.068v6.75zm-.363 2.523H6.545v7.363h10.91zm-2.728-5.979V6h6.001l-6-6v3.294z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googlestreetview.svg�������������������������0000664�0000000�0000000�00000001642�14753064456�0027224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.571 5.714a5.714 5.714 0 1 1 11.43 0 5.714 5.714 0 0 1-11.43 0m2.264 5.165-3.502 3.502c2.015-1.488 4.48-2.31 6.953-2.31 1.155 0 2.307.182 3.428.53v-1.709a6.18 6.18 0 0 1-3.428 1.037 6.18 6.18 0 0 1-3.45-1.05zm6.88 11.407V13.12a11 11 0 0 0-3.43-.55 11.25 11.25 0 0 0-6.731 2.265c-.425.34-.697.863-.697 1.45V24H20a1.72 1.72 0 0 0 1.714-1.714zM13.12 9.165.001 22.285V4a1.72 1.72 0 0 1 1.713-1.714h11.394a6.18 6.18 0 0 0-1.037 3.428c0 1.276.388 2.463 1.05 3.45zm-5.246-1.95a2.7 2.7 0 0 0-.077-.644h-2.94v1.142h1.69c.001.303-.228.755-.625 1.025-.258.176-.606.298-1.066.298-.818 0-1.512-.552-1.76-1.295a1.9 1.9 0 0 1 0-1.196c.248-.743.942-1.295 1.76-1.295.6 0 .987.268 1.19.458l.913-.889A3.02 3.02 0 0 0 4.857 4a3.143 3.143 0 1 0 0 6.287c.848 0 1.563-.279 2.083-.759.593-.547.935-1.356.935-2.313zm2.482 9.07c0-.511.17-.995.471-1.399L1.714 24h8.643v-7.714z"/></svg>����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googletagmanager.svg�������������������������0000664�0000000�0000000�00000001224�14753064456�0027125�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.003 0a3 3 0 0 0-2.121 5.121l6.865 6.865-4.446 4.541 1.745 1.836a3.4 3.4 0 0 1 .7.739l.012.011-.001.002a3.43 3.43 0 0 1 .609 1.953 3.4 3.4 0 0 1-.09.78l7.75-7.647c.031-.029.067-.05.098-.08.023-.023.038-.052.06-.076a2.994 2.994 0 0 0-.06-4.166l-9-9A3 3 0 0 0 12.003 0M8.63 2.133.88 9.809a3 3 0 0 0 0 4.238l7.7 7.75a3.4 3.4 0 0 1-.077-.729 3.43 3.43 0 0 1 3.431-3.431 3.4 3.4 0 0 1 .826.101l-5.523-5.81 4.371-4.373-2.08-2.08c-.903-.904-1.193-2.183-.898-3.342m3.304 16.004a2.93 2.93 0 0 0-2.931 2.931A2.93 2.93 0 0 0 11.934 24a2.93 2.93 0 0 0 2.932-2.932 2.93 2.93 0 0 0-2.932-2.931"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googletasks.svg������������������������������0000664�0000000�0000000�00000001070�14753064456�0026143�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.383.617C5.097.617 0 5.714 0 12s5.097 11.383 11.383 11.383S22.763 18.286 22.763 12a11.3 11.3 0 0 0-.878-4.389l-3.203 3.203c.062.387.1.782.1 1.186a7.398 7.398 0 1 1-7.4-7.398c1.499 0 2.889.448 4.054 1.214l2.857-2.857a11.33 11.33 0 0 0-6.91-2.342m9.674.756c-.292 0-.583.112-.805.334q-4.453 4.449-8.9 8.902L9.596 8.854a1.14 1.14 0 0 0-1.61 0l-1.775 1.773a1.14 1.14 0 0 0 0 1.61l4.166 4.163a1.42 1.42 0 0 0 2.012 0L23.666 5.121a1.136 1.136 0 0 0 0-1.61l-1.805-1.804a1.14 1.14 0 0 0-.804-.334"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/googletranslate.svg��������������������������0000664�0000000�0000000�00000001776�14753064456�0027030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.401 4.818h-9.927L10.927 0H1.599C.72 0 .002.719.002 1.599v16.275c0 .878.72 1.597 1.597 1.597h10L13.072 24H22.4c.878 0 1.597-.707 1.597-1.572V6.39c0-.865-.72-1.572-1.597-1.572zm-15.66 8.68c-2.07 0-3.75-1.68-3.75-3.75s1.68-3.75 3.75-3.75c1.012 0 1.86.375 2.512.976l-.99.952a2.2 2.2 0 0 0-1.522-.584c-1.305 0-2.363 1.08-2.363 2.409S5.436 12.16 6.74 12.16c1.507 0 2.13-1.08 2.19-1.808l-2.188-.002V9.066h3.51c.05.23.09.457.09.764 0 2.147-1.434 3.669-3.602 3.669zm16.757 8.93c0 .59-.492 1.072-1.097 1.072h-8.875l3.649-4.03h.005l-.74-2.302.006-.005s.568-.488 1.277-1.24c.712.771 1.63 1.699 2.818 2.805l.771-.772c-1.272-1.154-2.204-2.07-2.89-2.805.919-1.087 1.852-2.455 2.049-3.707h2.034v.002h.002v-.94h-4.532v-1.52h-1.471v1.52H14.3l-1.672-5.21.006.022h9.767c.605 0 1.097.48 1.097 1.072zm-6.484-7.311c-.536.548-.943.873-.943.873l-.008.004-1.46-4.548h4.764c-.307 1.084-.988 2.108-1.651 2.904-1.176-1.392-1.18-1.844-1.18-1.844h-1.222s.05.678 1.7 2.61z"/></svg>��mkdocs-material-9.6.4/material/templates/.icons/simple/gotomeeting.svg������������������������������0000664�0000000�0000000�00000001641�14753064456�0026146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.3 13.72a3.16 3.16 0 0 0-3.462.124.63.63 0 0 1-.682.035l-3.137-1.81a.08.08 0 0 1 0-.137l3.12-1.8a.63.63 0 0 1 .685.036 3.16 3.16 0 0 0 3.47.139A3.194 3.194 0 0 0 22.442 6.1a3.158 3.158 0 0 0-5.924 1.773.63.63 0 0 1-.311.606l-3.136 1.811a.08.08 0 0 1-.118-.068V6.6a.63.63 0 0 1 .372-.573 3.158 3.158 0 1 0-2.64 0 .63.63 0 0 1 .373.573v3.622a.08.08 0 0 1-.119.068L7.804 8.48a.63.63 0 0 1-.311-.605 3.157 3.157 0 1 0-1.307 2.294.63.63 0 0 1 .687-.038l3.12 1.8a.08.08 0 0 1 0 .137L6.854 13.88a.63.63 0 0 1-.683-.035 3.16 3.16 0 0 0-3.461-.124 3.194 3.194 0 0 0-1.143 4.202 3.159 3.159 0 0 0 5.924-1.792.63.63 0 0 1 .31-.61l3.137-1.81a.08.08 0 0 1 .119.068V17.4a.63.63 0 0 1-.372.573 3.158 3.158 0 1 0 2.64 0 .63.63 0 0 1-.373-.573v-3.621a.08.08 0 0 1 .118-.069l3.137 1.812a.63.63 0 0 1 .31.609 3.159 3.159 0 0 0 5.924 1.792A3.194 3.194 0 0 0 21.3 13.72"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/grab.svg�������������������������������������0000664�0000000�0000000�00000005312�14753064456�0024537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.129 10.863a2.93 2.93 0 0 0-2.079-.872c-.57 0-1.141.212-1.455.421-.651.434-1.186.904-2.149 2.148v.894c.817-1.064 1.59-1.903 2.177-2.364.386-.31.933-.501 1.427-.501 1.275 0 2.352 1.077 2.352 2.352v.538c0 .63-.247 1.223-.698 1.668a2.34 2.34 0 0 1-1.654.685c-1.048 0-1.97-.719-2.22-1.701l-.422.51c.307 1.03 1.417 1.789 2.642 1.789a2.93 2.93 0 0 0 2.079-.872c.562-.562.871-1.3.871-2.079v-.538c0-.778-.31-1.517-.871-2.078m-12.8-.274c.406 0 .757.087 1.074.266a5 5 0 0 1 .411-.449c-.335-.256-.903-.415-1.485-.415-.83 0-1.584.3-2.122.843-.534.54-.83 1.287-.83 2.107v3.489h.598v-3.49c0-1.385.968-2.352 2.354-2.352m5.678 5.84V12.94c0-1.072-.84-1.913-1.913-1.913-.5 0-.976.203-1.343.57a1.9 1.9 0 0 0-.57 1.343v.538c0 1.037.877 1.913 1.913 1.913.285 0 .671-.07.908-.264v-.631c-.232.187-.57.298-.908.298a1.3 1.3 0 0 1-1.315-1.316v-.538a1.3 1.3 0 0 1 1.315-1.314 1.3 1.3 0 0 1 1.316 1.314v3.489zM0 12.596v.193c0 1.036.393 2.003 1.107 2.722a3.76 3.76 0 0 0 2.689 1.112c.82 0 1.548-.186 2.162-.551.506-.302.73-.607.75-.635V12.22H3.65v.597h2.46v2.434l-.002.002c-.288.288-.972.77-2.312.77a3.17 3.17 0 0 1-2.279-.938 3.25 3.25 0 0 1-.92-2.297v-.193c0-.83.375-1.656 1.026-2.269a3.56 3.56 0 0 1 2.442-.967c.847 0 1.438.129 1.913.416v-.67c-.494-.21-1.085-.305-1.913-.305C1.862 8.8 0 10.538 0 12.595m10.329-.968q.341 0 .571.112c.075-.186.151-.339.262-.525-.162-.116-.549-.186-.833-.186-1.09 0-1.913.823-1.913 1.913v3.489h.598v-3.49c0-.774.54-1.314 1.315-1.314m-4.351-.702v-.707c-.541-.29-1.131-.419-1.913-.419-.799 0-1.555.293-2.132.824-.577.532-.895 1.233-.895 1.972v.193c0 1.542 1.237 2.796 2.758 2.796 1.237 0 1.745-.405 1.874-.533v-1.794H3.65v.598h1.46v.899l-.005.001c-.187.075-.578.231-1.31.231a2.13 2.13 0 0 1-1.528-.636 2.2 2.2 0 0 1-.632-1.562v-.193c0-1.192 1.113-2.198 2.43-2.198.91 0 1.45.147 1.913.528m14.105 1.126c.27-.27.623-.424.967-.424a1.3 1.3 0 0 1 1.315 1.314v.538c0 .738-.578 1.316-1.315 1.316-.357 0-.702-.196-.972-.55a2.15 2.15 0 0 1-.418-1.12l-.484.591c.095.452.33.885.665 1.19.344.313.774.486 1.209.486a1.915 1.915 0 0 0 1.913-1.913v-.538c0-.499-.202-.977-.57-1.343a1.9 1.9 0 0 0-1.343-.57c-.316 0-.818.114-1.417.652l-.002.002c-.16.16-.536.536-.765.804-.384.42-.943 1.054-1.42 1.688v.933c.529-.68.833-1.06 1.33-1.634.445-.519.996-1.15 1.307-1.422m-8.939 1.428c0 .779.31 1.517.872 2.08a2.93 2.93 0 0 0 2.078.87c.33 0 .669-.07.908-.188v-.597a2.5 2.5 0 0 1-.908.188c-1.274 0-2.352-1.077-2.352-2.353v-.538c0-1.275 1.078-2.352 2.352-2.352a2.34 2.34 0 0 1 2.353 2.353v3.488h.598v-3.604a2.98 2.98 0 0 0-.915-2.006 2.92 2.92 0 0 0-2.036-.83c-.778 0-1.516.31-2.078.873a2.93 2.93 0 0 0-.872 2.078zm6.918-2.313a5 5 0 0 1 .596-.631V7.378h-.596zm1.037-.876V7.378h.597V9.88a3.6 3.6 0 0 0-.597.41"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gradio.svg�����������������������������������0000664�0000000�0000000�00000001223�14753064456�0025066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1.527a1.53 1.53 0 0 0-.76.203L.77 7.732A1.53 1.53 0 0 0 0 9.021v.088A1.53 1.53 0 0 0 .77 10.4l2.8 1.6-2.8 1.61c-.514.29-.77.81-.77 1.33 0 .51.256 1.03.77 1.32l10.47 6.01c.47.27 1.05.27 1.52 0l10.47-6.01c.5-.28.76-.78.77-1.29v-.07c-.01-.5-.27-1.01-.77-1.29L20.42 12l2.81-1.6A1.53 1.53 0 0 0 24 9.223V8.91a1.53 1.53 0 0 0-.77-1.178L12.76 1.73a1.53 1.53 0 0 0-.76-.203m0 3.299 7.39 4.235-2.05 1.179-4.58-2.638a1.52 1.52 0 0 0-1.52 0L6.652 10.24 4.613 9.061zm0 5.874 2.27 1.3L12 13.3 9.734 12zm-5.348 3.07 4.588 2.62a1.53 1.53 0 0 0 1.52 0l4.58-2.62 2.05 1.17L12 19.17l-7.387-4.23z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gradle.svg�����������������������������������0000664�0000000�0000000�00000001522�14753064456�0025061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.695 4.297a3.807 3.807 0 0 0-5.29-.09.37.37 0 0 0 0 .533l.46.47a.36.36 0 0 0 .474.032 2.182 2.182 0 0 1 2.86 3.291c-3.023 3.02-7.056-5.447-16.211-1.083a1.24 1.24 0 0 0-.534 1.745l1.571 2.713a1.24 1.24 0 0 0 1.681.461l.037-.02-.029.02.688-.384a16 16 0 0 0 2.193-1.635.384.384 0 0 1 .499-.016.357.357 0 0 1 .016.534 16.4 16.4 0 0 1-2.316 1.741H8.77l-.696.39a1.96 1.96 0 0 1-.963.25 1.99 1.99 0 0 1-1.726-.989L3.9 9.696C1.06 11.72-.686 15.603.26 20.522a.36.36 0 0 0 .354.296h1.675a.363.363 0 0 0 .37-.331 2.478 2.478 0 0 1 4.915 0 .36.36 0 0 0 .357.317h1.638a.36.36 0 0 0 .357-.317 2.478 2.478 0 0 1 4.914 0 .36.36 0 0 0 .358.317h1.627a.363.363 0 0 0 .363-.357c.037-2.294.656-4.93 2.42-6.25 6.108-4.57 4.502-8.486 3.088-9.9zm-6.229 6.901-1.165-.584a.73.73 0 1 1 1.165.587z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gradleplaypublisher.svg����������������������0000664�0000000�0000000�00000001174�14753064456�0027670�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.191 6.777a1.41 1.41 0 0 0-1.384 1.41v7.62a1.406 1.406 0 0 0 2.109 1.218l6.633-3.832a1.38 1.38 0 0 0 0-2.392L9.916 6.969a1.4 1.4 0 0 0-.725-.192m.381 1.33a.9.9 0 0 1 .602.106l5.22 3.014a.896.896 0 0 1 0 1.546l-5.22 3.014a.894.894 0 0 1-1.342-.773V8.986a.895.895 0 0 1 .74-.878zM8.154.633C3.414 2.233 0 6.716 0 12c0 6.626 5.374 12 12 12 5.161 0 9.568-3.266 11.258-7.84l-3.838-.844-5.148 5.149-8.465-2.272-2.272-8.465 5.059-5.056zM12 0c-.471 0-.929.025-1.387.076l.412 3.801 7.168 1.924 1.91 7.101 3.774.832c.084-.567.123-1.14.123-1.734 0-6.626-5.374-12-12-12"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/grafana.svg����������������������������������0000664�0000000�0000000�00000006321�14753064456�0025224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.02 10.59a8.6 8.6 0 0 0-.862-3.034 8.9 8.9 0 0 0-1.789-2.445c.337-1.342-.413-2.505-.413-2.505-1.292-.08-2.113.4-2.416.62q-.077-.032-.154-.064-.33-.134-.677-.247-.348-.11-.711-.197a10 10 0 0 0-.875-.161C14.557.753 12.94 0 12.94 0c-1.804 1.145-2.147 2.744-2.147 2.744l-.018.093q-.149.042-.298.088c-.138.042-.275.094-.413.143-.138.055-.275.107-.41.166a9 9 0 0 0-1.557.87l-.063-.029c-2.497-.955-4.716.195-4.716.195-.203 2.658.996 4.33 1.235 4.636a11.6 11.6 0 0 0-.607 2.635C1.636 12.677.953 15.014.953 15.014c1.926 2.214 4.171 2.351 4.171 2.351q.005-.002.006-.005c.285.509.615.994.986 1.446q.235.284.488.548c-.704 2.009.099 3.68.099 3.68 2.144.08 3.553-.937 3.849-1.173a9.8 9.8 0 0 0 3.164.501h.08l.055-.003.107-.002.103-.005.003.002c1.01 1.44 2.788 1.646 2.788 1.646 1.264-1.332 1.337-2.653 1.337-2.94v-.058q-.002-.03-.003-.06.4-.28.758-.6a7.9 7.9 0 0 0 1.415-1.7c1.43.083 2.437-.885 2.437-.885-.236-1.49-1.085-2.216-1.264-2.354l-.018-.013-.016-.013-.031-.02q.013-.137.02-.27.016-.244.016-.48v-.253l-.005-.098-.008-.135a2 2 0 0 0-.01-.13q-.005-.063-.013-.125l-.016-.124-.018-.122a6.2 6.2 0 0 0-2.032-3.73 6 6 0 0 0-3.222-1.46 6 6 0 0 0-.85-.048l-.107.002h-.063l-.044.003-.104.008a4.78 4.78 0 0 0-3.335 1.695c-.332.4-.592.84-.768 1.297a4.6 4.6 0 0 0-.312 1.817l.003.091q.006.083.013.164a3.6 3.6 0 0 0 .698 1.82 3.53 3.53 0 0 0 1.827 1.282c.33.098.66.14.971.137q.06 0 .114-.002l.063-.003q.03-.002.062-.003.05-.004.099-.01.012-.001.028-.003l.031-.005.06-.008a1 1 0 0 0 .112-.02c.036-.008.072-.013.109-.024a2.6 2.6 0 0 0 .914-.415q.042-.03.085-.065a.25.25 0 0 0 .039-.35.244.244 0 0 0-.309-.06l-.078.042q-.135.066-.283.116a2.5 2.5 0 0 1-.475.096q-.04.005-.083.006l-.083.002q-.04 0-.08-.002l-.102-.006h-.012l-.024.006q-.024-.003-.044-.006-.046-.004-.091-.01a2.6 2.6 0 0 1-.724-.213 2.6 2.6 0 0 1-.667-.438 2.52 2.52 0 0 1-.805-1.475 2.3 2.3 0 0 1-.029-.444l.006-.122v-.023l.002-.031q.003-.03.005-.06a3.16 3.16 0 0 1 1.352-2.29 3.1 3.1 0 0 1 .937-.43 3 3 0 0 1 .776-.101h.06l.07.002.045.003h.026l.07.005a4 4 0 0 1 1.635.49 3.94 3.94 0 0 1 1.602 1.662 3.8 3.8 0 0 1 .397 1.414l.005.076.003.075q.002.038.002.075c0 .024.003.052 0 .07v.065l-.002.073-.008.174a6 6 0 0 1-.08.639 5 5 0 0 1-.267.927 5.3 5.3 0 0 1-.624 1.13 5.05 5.05 0 0 1-3.237 2.014 5 5 0 0 1-.649.066l-.039.003h-.287a6.6 6.6 0 0 1-1.716-.265 6.78 6.78 0 0 1-3.4-2.274 6.8 6.8 0 0 1-.746-1.15 6.6 6.6 0 0 1-.714-2.596l-.005-.083-.002-.02v-.056l-.003-.073v-.096l-.003-.104v-.07l.003-.163c.008-.22.026-.45.054-.678a9 9 0 0 1 .28-1.355q.192-.668.473-1.277a7 7 0 0 1 1.456-2.1 6 6 0 0 1 .953-.763q.253-.166.524-.306c.089-.05.182-.091.273-.135q.07-.031.138-.062a7 7 0 0 1 .714-.267l.145-.045c.049-.015.098-.026.148-.041q.147-.042.296-.076c.049-.013.1-.02.15-.033l.15-.032.151-.028.076-.013.075-.01.153-.024c.057-.01.114-.013.171-.023l.169-.021q.055-.006.106-.01l.073-.008.036-.003.042-.002q.086-.006.171-.01l.086-.006h.023l.037-.003.145-.007a8 8 0 0 1 1.708.125 8 8 0 0 1 2.048.68 8.3 8.3 0 0 1 1.672 1.09l.09.077.089.078c.06.052.114.107.171.159q.085.079.166.16.08.08.159.164a8.7 8.7 0 0 1 1.41 1.978c.012.026.028.052.04.078l.04.078.075.156c.023.051.05.1.07.153l.065.15a9 9 0 0 1 .45 1.34.19.19 0 0 0 .201.142.186.186 0 0 0 .172-.184q.015-.37-.024-.856z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/grammarly.svg��������������������������������0000664�0000000�0000000�00000001046�14753064456�0025617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 24H.032V12a12 12 0 0 1 3.504-8.486A11.92 11.92 0 0 1 12 0c3.305 0 6.297 1.344 8.463 3.514 2.164 2.172 3.505 5.172 3.505 8.486s-1.338 6.314-3.505 8.486A11.92 11.92 0 0 1 12 24m2.889-13.137-1.271 2.205h4.418c-.505 2.882-3.018 5.078-6.036 5.078-3.38 0-6.132-2.757-6.132-6.146S8.618 5.854 12 5.854c1.821 0 3.458.801 4.584 2.069l1.143-1.988a8.29 8.29 0 0 0-5.725-2.29c-4.6 0-8.332 3.74-8.332 8.355s3.73 8.354 8.332 8.354 8.332-3.739 8.332-8.354c0-.387-.029-.765-.079-1.137z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/grandfrais.svg�������������������������������0000664�0000000�0000000�00000004154�14753064456�0025747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.003 0a11.92 11.92 0 0 0-8.485 3.512A11.92 11.92 0 0 0 0 11.998c0 3.205 1.248 6.22 3.515 8.488A11.91 11.91 0 0 0 11.995 24a11.92 11.92 0 0 0 8.487-3.512A11.92 11.92 0 0 0 24 12.003c0-3.205-1.247-6.219-3.512-8.486A11.92 11.92 0 0 0 12.003 0m0 1.336c5.879.002 10.66 4.785 10.66 10.664v.003l-.001.146H19.41c.488.15.816.594.884 1.233l.004.044-.933.103-.003-.046c-.04-.479-.313-.53-.428-.53-.258 0-.4.164-.4.463 0 .369.34.657.73.99.503.427 1.073.912 1.073 1.714 0 .845-.553 1.37-1.446 1.37-.9 0-1.341-.74-1.376-1.475l-.002-.04.933-.134.003.048c.031.469.208.738.485.738.298 0 .47-.156.47-.428 0-.443-.353-.737-.76-1.077-.489-.407-1.042-.868-1.042-1.698 0-.847.516-1.334 1.418-1.334q.206 0 .386.057c.627-.16.945-.667.945-1.513V8.61c.001-.545-.132-.953-.395-1.213-.237-.236-.584-.355-1.031-.355h-1.341l-.001 5.104h-.802l.002-5.104-.853-.002v.014l-.004 2.814-1.044-2.828h-.866l-.002 5.105h-.463l-.948-5.105h-1.145l-.951 5.105h-.314L9.46 9.874c.282-.136.613-.471.613-1.3 0-1.06-.47-1.533-1.525-1.534h-1.27v5.105h-.845l.001-2.589H4.93v.748h.565v.467c-.002.495-.126.679-.459.679-.263 0-.386-.162-.386-.509V8.318q.002-.53.366-.53c.31 0 .479.148.479.934v.027h.898v-.353c0-.866-.532-1.427-1.355-1.427-.807 0-1.328.525-1.328 1.335v2.629c0 .576.241 1.008.645 1.21h1.1c.13-.073.239-.175.35-.303l.131.303h.451v.86H4.799v1.242h1.187v.863H4.799v2.288H3.82v-5.252H1.338l-.002-.146c0-2.85 1.11-5.527 3.126-7.541a10.6 10.6 0 0 1 7.54-3.121zm-3.785 6.48.287.001c.476 0 .628.184.628.757s-.152.757-.629.757h-.286zm10.307.003h.28c.454 0 .608.173.608.686v2.235c0 .282-.046.452-.149.554-.093.092-.235.132-.461.132h-.278zm-6.494.4.322 2.032h-.647l.056-.351.27-1.68zm2.84.884 1.073 3.04h.409v5.253h-.975v-5.25h-.507zm-6.243.985.609 2.058h-.49c1.001.03 1.45.514 1.45 1.565 0 .834-.324 1.18-.612 1.324l.76 2.361h-.997L8.72 15.26a5 5 0 0 1-.382.019v2.117h-.976v-5.253h.856v-2.037c.142 0 .303-.008.41-.018m2.942.981h.92l.151 1.074h.635l.967 5.253h-.93l-.176-1.144h-.896l-.173 1.144h-.935l.968-5.25h-.682l.15-1.077zM8.338 12.96v1.5h.27c.47 0 .613-.175.613-.75 0-.574-.142-.75-.612-.75zm4.353.355-.328 2.151h.654z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/grapheneos.svg�������������������������������0000664�0000000�0000000�00000002270�14753064456�0025757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6.953 7.244 3.458-1.97a1.9 1.9 0 0 1-.108-.608c0-.835.608-1.525 1.407-1.67V0h.58v2.995a1.704 1.704 0 0 1 1.407 1.67c0 .219-.045.418-.118.609l3.468 1.97q.192-.219.454-.382a1.705 1.705 0 0 1 2.151.382l2.596-1.498.29.508-2.595 1.498a1.69 1.69 0 0 1-1.244 2.242v4.012a1.69 1.69 0 0 1 1.244 2.242l2.596 1.498-.29.508-2.597-1.498a1.705 1.705 0 0 1-2.151.382 2 2 0 0 1-.454-.382c-1.153.654-2.306 1.317-3.468 1.97.073.19.118.39.118.608 0 .835-.608 1.525-1.407 1.67V24h-.58v-2.995a1.704 1.704 0 0 1-1.407-1.67c0-.219.045-.418.108-.609l-3.458-1.97a2 2 0 0 1-.454.382 1.705 1.705 0 0 1-2.151-.382l-2.596 1.498-.29-.508 2.595-1.498a1.69 1.69 0 0 1 1.244-2.242V9.994a1.69 1.69 0 0 1-1.244-2.242L1.461 6.254l.29-.508 2.597 1.498a1.705 1.705 0 0 1 2.151-.382c.173.11.327.236.454.382m9.803 9.004a1.68 1.68 0 0 1 .128-1.425 1.7 1.7 0 0 1 1.234-.835v-3.976a1.7 1.7 0 0 1-1.234-.835 1.68 1.68 0 0 1-.128-1.425L13.29 5.773a1.7 1.7 0 0 1-1.289.59 1.7 1.7 0 0 1-1.289-.59L7.244 7.752c.163.454.136.98-.128 1.425a1.7 1.7 0 0 1-1.234.835v3.976a1.7 1.7 0 0 1 1.234.835c.264.445.291.971.128 1.425l3.467 1.979a1.7 1.7 0 0 1 1.289-.59 1.7 1.7 0 0 1 1.289.59z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/graphite.svg���������������������������������0000664�0000000�0000000�00000000375�14753064456�0025433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.215 0-12 3.215-3.215 12L8.785 24l12-3.215 3.215-12zm1.958 20.966H6.827L1.655 12l5.172-8.966h10.346L22.345 12zm.68-14.823L9.86 4 4.006 9.858l2.14 8 7.995 2.141 5.853-5.857z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/graphql.svg����������������������������������0000664�0000000�0000000�00000001164�14753064456�0025263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.002 0a2.138 2.138 0 1 0 0 4.277 2.138 2.138 0 1 0 0-4.277m8.54 4.931a2.138 2.138 0 1 0 0 4.277 2.138 2.138 0 1 0 0-4.277m0 9.862a2.138 2.138 0 1 0 0 4.277 2.138 2.138 0 1 0 0-4.277m-8.54 4.931a2.138 2.138 0 1 0 0 4.276 2.138 2.138 0 1 0 0-4.276m-8.542-4.93a2.138 2.138 0 1 0 0 4.276 2.138 2.138 0 1 0 0-4.277zm0-9.863a2.138 2.138 0 1 0 0 4.277 2.138 2.138 0 1 0 0-4.277m8.542-3.378L2.953 6.777v10.448l9.049 5.224 9.047-5.224V6.777zm0 1.601 7.66 13.27H4.34zm-1.387.371L3.97 15.037V7.363zm2.774 0 6.646 3.838v7.674zM5.355 17.44h13.293l-6.646 3.836z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/grav.svg�������������������������������������0000664�0000000�0000000�00000003743�14753064456�0024571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m6.489 13.965c-1.251-.825-1.965-1.523-2.589-2.777-.427.859-1.421 2.135-3.098 3.139-.84 2.61-4.823 7.605-6.113 6.885-.381-.195-.452-.48-.367-.765.093-.704 1.566-2.34 1.566-2.34s.029.345.494 1.065c-.629-1.936 1.021-4.305 1.456-5.131.689-.209.734-1.095.734-1.095.046-1.364-.569-2.34-1.155-2.94.421.525.556 1.306.57 2.025v.255c-.029.601-.21 1.41-.585 1.41v.016c-.39-.016-.885.074-1.319.21l-.961.239s.51-.015.78.226c-.314.51-1.005 1.125-1.771 1.484-1.109.525-1.439-.51-.869-1.17.135-.165.285-.3.404-.404a.56.56 0 0 1-.149-.36c-.075-.345-.045-.78.45-1.485.09-.149.21-.3.345-.449l.015-.016.016-.015v-.015c.029-.046.074-.076.104-.12.57-.585 1.485-1.2 2.911-1.74 1.694-2.49 2.309-2.956 2.309-2.956.181-.179.511-.419.615-.479-.87-1.515-1.049-3.646-.824-4.215a.24.24 0 0 0-.061.105c.09-.195.135-.255.225-.36.24-.27 1.035-.42 1.336.18.15.315.18.735.18 1.035-.645-.029-1.215.69-1.215.69s.524-.24 1.186-.255c0 0 .179.164.389.449-.284.556-.779 1.725-.42 2.971.061.24.15.45.256.629.015.016.015.016.015.031l.03.029c.585.886 1.649.976 1.649.976a2.65 2.65 0 0 1-1.169-1.125 3.2 3.2 0 0 1-.271-.646c-.285-1.08.135-1.725.375-2.145a2.74 2.74 0 0 1 2.609-1.23 2.72 2.72 0 0 1 2.399 3.03 2.72 2.72 0 0 1-1.409 2.085c.181.494-.015 1.08-.015 1.08.449.57.479.9.465 1.215-.585-.09-1.141.301-1.141.301s1.111-.256 1.756.314c.42.449.704.87.869 1.17.24.435 1.35.465 1.229 1.23-.135.779-.989.779-2.31-.09zm-4.824-4.61a.563.563 0 0 0-.795 0l-.465.468a.56.56 0 0 0 0 .796l.51.51c.222.225.577.21.795 0l.47-.466a.56.56 0 0 0 0-.794l-.515-.525zm-2.205-.186a.363.363 0 0 0 0 .511.366.366 0 0 0 .51 0 .36.36 0 1 0-.51-.511m1.269-.252a.36.36 0 0 0 0-.51.366.366 0 0 0-.51 0 .364.364 0 0 0 0 .51.36.36 0 0 0 .51 0m5.385-1.304c.591-1.131-.247-1.791-.825-2.332-.924-.87-1.846-1.245-2.9-.029-1.052 1.199-.383 2.609.58 3.284.96.69 2.535.226 3.135-.915zm-1.595-.463c-.372-.445.322-1.252.757-.77.8.89-.387 1.216-.757.77"/></svg>�����������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gravatar.svg���������������������������������0000664�0000000�0000000�00000000474�14753064456�0025437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a2.4 2.4 0 0 0-2.4 2.4v8.4c0 1.324 1.074 2.398 2.4 2.398s2.4-1.074 2.4-2.398V5.21a7.2 7.2 0 0 1 4.799 6.789 7.2 7.2 0 1 1-12.29-5.09 2.4 2.4 0 1 0-3.396-3.396A11.98 11.98 0 0 0 0 12c0 6.627 5.373 12 12 12s12-5.373 12-12S18.627 0 12 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/graylog.svg����������������������������������0000664�0000000�0000000�00000001545�14753064456�0025274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.93 11.369a.84.84 0 0 1 .75.45h.705l1.112-2.675a.48.48 0 0 1 .3-.278c.235-.042.47.086.513.321l1.177 5.177 1.198-6.974a.41.41 0 0 1 .32-.342.44.44 0 0 1 .535.321l1.284 5.24.663-1.946a.45.45 0 0 1 .17-.235c.193-.129.471-.086.6.107l.556.791c.021.193.021.385.021.578a8 8 0 0 1-.043.748.5.5 0 0 1-.213-.15l-.557-.77-.855 2.589a.45.45 0 0 1-.556.278.39.39 0 0 1-.278-.3l-1.156-4.663-1.219 7.08a.45.45 0 0 1-.492.364c-.192-.021-.32-.17-.363-.363l-1.305-5.99-.706 1.69a.44.44 0 0 1-.406.278H7.679a.86.86 0 0 1-.748.428.88.88 0 0 1-.877-.877c.02-.47.406-.877.877-.877zM12 .396c6.973 0 12 5.369 12 11.615 0 6.353-4.77 11.593-12 11.593S0 18.364 0 12.011C-.02 5.765 5.005.396 12 .396M4.064 12.01c0 4.256 3.658 8 7.915 8s7.914-3.744 7.914-8c0-4.6-3.658-8.043-7.914-8.043-4.236 0-7.915 3.444-7.915 8.043"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/greasyfork.svg�������������������������������0000664�0000000�0000000�00000000743�14753064456�0026003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.89 2.227a.28.28 0 0 1 .266.076l5.063 5.062c.54.54.509 1.652-.031 2.192l8.771 8.77c1.356 1.355-.36 3.097-1.73 1.728l-8.772-8.77c-.54.54-1.651.571-2.191.031l-5.063-5.06c-.304-.304.304-.911.608-.608l3.714 3.713L7.59 8.297 3.875 4.582c-.304-.304.304-.911.607-.607l3.715 3.714 1.067-1.066L5.549 2.91c-.228-.228.057-.626.342-.683ZM12 0C5.374 0 0 5.375 0 12s5.374 12 12 12c6.625 0 12-5.375 12-12S18.625 0 12 0"/></svg>�����������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/greatlearning.svg����������������������������0000664�0000000�0000000�00000000451�14753064456�0026445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.373 0c-6.617 0-12 5.383-12 12s5.383 12 12 12h.856q1.435-1.764 2.867-3.531h-3.723c-4.669 0-8.469-3.8-8.469-8.469 0-4.67 3.8-8.469 8.469-8.469h4.375L21.615 0Zm3.723 20.469 3.531-4.354v-6.013h-7.502l-2.861 3.533h6.832z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/greenhouse.svg�������������������������������0000664�0000000�0000000�00000001555�14753064456�0025775�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.279 7.13c0 1.16-.49 2.185-1.293 2.987-.891.891-2.184 1.114-2.184 1.872 0 1.025 1.65.713 3.231 2.295 1.048 1.047 1.694 2.43 1.694 4.034C17.727 21.482 15.187 24 12 24s-5.727-2.518-5.727-5.68c0-1.607.646-2.989 1.694-4.036 1.582-1.582 3.23-1.27 3.23-2.295 0-.758-1.292-.98-2.183-1.872-.802-.802-1.293-1.827-1.293-3.03 0-2.318 1.895-4.19 4.212-4.19.446 0 .847.067 1.181.067.602 0 .914-.268.914-.691 0-.245-.112-.557-.112-.891 0-.758.647-1.382 1.427-1.382s1.404.646 1.404 1.426c0 .825-.647 1.204-1.137 1.382-.401.134-.713.312-.713.713 0 .758 1.382 1.493 1.382 3.61zm-.446 11.19c0-2.206-1.627-3.99-3.833-3.99s-3.833 1.784-3.833 3.99c0 2.184 1.627 3.989 3.833 3.989s3.833-1.808 3.833-3.99zM14.518 7.086c0-1.404-1.136-2.562-2.518-2.562S9.482 5.682 9.482 7.086 10.618 9.65 12 9.65s2.518-1.159 2.518-2.563z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/greensock.svg��������������������������������0000664�0000000�0000000�00000020215�14753064456�0025603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.21 0c-.545.003-1.084.134-1.256.367-.11.165-.192 1.196-.11 1.718 0 0 .032.345.09.614l-.02.182a7 7 0 0 1-.097.605c-.01.056-.207.095-.425.152a3 3 0 0 0-.138-.042c-.234-.069-.385.123-.618.26-.069-.04-.371-.178-.536-.082s-.275.193-.44.261c-.082-.041-.302-.041-.48.028a1.3 1.3 0 0 0-.483.278c-2.314.58-4.813 1.635-5.012 1.741-1.017.522-2.679 1.415-3.434 2.033-1.291 1.071-2.06 2.322-2.363 3.242-.385 1.14-.275 1.827.096 1.387.298-.366 1.632-1.454 2.475-1.999l-.002.007a3 3 0 0 1 .44-.26l.233-.124.505-.323c.602.552.803 1.433.937 2.63.22 1.841 1.704 2.693 3.434 2.72 1.8.028 2.446.399 3.119 1.305.153.201.318.307.47.368a2 2 0 0 0-.16.405c-.075.17-.125.38-.157.608a.16.16 0 0 0-.03.075c-.068.536-.055 1.8-.068 2.473s-.028.77-.083.866c-.055.11-.11.178-.178.467-.069.302-.193.384-.316.631-.206.385-.165.81.041 1.003s.77.481 1.538.385c.77-.096.88-.151.756-.893-.014-.11-.192-.605-.137-.797.082-.206-.096-.563-.055-.577s.096-.288.096-.426c0-.137-.014-.796.137-1.14.062-.14.193-.46.326-.785.442-.723.459-1.161.48-1.41.03-.202.046-.46.018-.744.055-.083.289-.275.316-.646 0 0 .644-.337 1.102-1.148.16.557.31.91.286 1.272-.499.39-.684.678-.76.959-.048-.02-.076-.037-.11-.04h-.027a.4.4 0 0 0-.106.029c-.192.068-.041 1.318.165 1.827s.316.81.398 1.36c.083.549-.192 1.222-.302 1.524 0 0-.179.536.233.824.358.248 1.704.18 2.308.18.605 0 1.511.219 2.088.109.715-.124.824-.55.399-.77-.426-.22-1.072-.329-1.91-.933-.22-.152-.522-.289-.563-.412-.041-.124-.041-.838-.027-1.457.013-.618.22-1.414.288-1.84.064-.398-.076-.388-.262-.351.032-.147.066-.292.097-.446.344-.632.193-1.223.193-1.223.82-1.044.4-3.27.22-4.048.64.303.96.188.96.188.102-.055.192-.134.274-.224.337-.362.51-.916.51-.916V11c.782-.783 1.151-1.936.26-2.692a1.33 1.33 0 0 0-.219-1.263 1.56 1.56 0 0 0-.37-1.731 1.4 1.4 0 0 0-.487-.297c-.2-.295-.245-.417-.572-.349-.15-.165-.178-.288-.494-.178 0 0-.096-.234-.275-.289a.3.3 0 0 0-.05-.015c-.302-.21-.576-.215-.772-.16-.064-.048-.061-.124-.07-.388-.008-.2-.019-.486-.031-.744.027-.328.102-.974.126-1.303.028-.37.042-.948-.123-1.195C18.303.12 17.754-.003 17.21 0m-.005.34c.7 0 1.002.22 1.044.343.013.028.082.495.04.797-.013.11-.027.509-.054.687-.014.179-.069.385-.124.673-.041.234-.233.495-.384.536-.261.069-.742.055-1.017 0-.069-.014-.124-.055-.192-.096-.151-.248-.234-.44-.261-.742-.028-.289-.083-.412-.096-.632-.014-.33-.014-.55-.014-.55.014-.178.069-.618.069-.659.013-.123.233-.357.989-.357m-1.133 2.702c.146.149.301.306.432.416.124.11.426.096.7.096.248 0 .468.028.564-.027.154-.077.355-.235.523-.394.011.152.022.304.026.435.01.295-.043.468.024.57-.082.048-.174.105-.269.156-.151.08-.306.136-.403.115h-.002c-.209-.035-.931-.215-1.331-.407-.167-.259-.335-.398-.326-.448.027-.137.04-.247.054-.425q.005-.044.008-.088zm-.853.69.035.001c.424.036.65.152.808.284l.076.03.008-.027q.071.045.162.088c.47.159 1.104.308 1.309.353.247.055.645-.192.838-.316.343-.22.783-.04.989.193.137.15.192.247.192.288.316-.11.357.041.508.206.385-.179.412.041.44.137-.122 0-.298.014-.538.04l-.012-.012c-.144-.153-.402-.289-.599-.384-.087-.031-.18-.049-.252-.097-.11-.055-.22-.137-.385-.123-.687.082-.824.315-1.415.178-.577-.134-.737-.254-1.333-.221l.001.026c-.105.016-.2.03-.22.03-.206.012-.722.067-1.153-.1a1 1 0 0 0-.161-.076l-.005-.002h-.001q-.27-.107-.63-.112h-.026c.218-.11.356-.259.56-.218.22.041.44.22.564.357a.9.9 0 0 0-.178-.288c.128-.09.245-.229.418-.234zm-1.1.545c.15.002.28.026.417.073.018.009.034.018.059.029.288.137.81.164 1.25.137a2.3 2.3 0 0 0 .563-.095c.322.024.514.11.977.216.31.07.502.045.695-.007.193-.053.386-.13.723-.17a.5.5 0 0 1 .188.013q.057.03.11.061c.062.049.214.135.343.189.164.068.59.357.645.425a.1.1 0 0 0 .038.03c.242.314.407.755.396 1.21-.06.46-.426.214-.626.12-.412-.178-.824-.302-1.305-.302-.48 0-1.099.041-1.635.179-.741.206-.961.192-1.29.027-.33-.178-.907-.618-.907-.618v.01q-.01-.012-.014-.01c-.042.069-.138.247-.193.33-.027.522-.343 1.346-.934 1.552a.55.55 0 0 1-.467-.041 2.5 2.5 0 0 0-.55-.275c.481.384.729.673.949 1.181.174.43.415 1.017 1.002 1.646.363-.004.725.097.962.346.137.137.357.289.33.426 0 .041-.083.151-.151.234a3 3 0 0 1-.207.22c-.054.04-.247.192-.288.22s-.096.095-.137.109c-.138.069-.289.014-.426-.055s.027-.082-.124-.192c-.34-.24-.541-.411-.454-.832-.932-.794-2.561-1.26-2.911-2.108-.22-.55-.248-.824-.042-1.058.605-.687.371-1.346.825-1.634.425-.275.783.04.989.33-.124-.509-.55-.633-.55-.674 0-.632.605-1.071 1.21-1.181.218-.041.389-.062.54-.06zm-1.847.534c-.14.196-.231.435-.246.721-.206.028-.673.055-.907.907a3.4 3.4 0 0 1-.214.62c-.103.045-2.946 1.274-5.229 2.542l-.01-.007q-.48.27-.919.546l-.125.077-.001.003c-1.136.723-2.04 1.45-2.637 2.112.412-2.679 2.528-4.08 3.53-4.698 2.42-1.489 4.629-2.225 6.758-2.823m8.037.323c.26-.004.536.06.756.275.59.577.425 1.209.247 1.648.15.179.508.687.288 1.291-.04.138-.343.138-.563.495.55-.316.893-.233 1.017.165.192.618-.234 1.36-.605 1.772 0-.014-.014-.028-.014-.041-.055.206-.123.604-.535 1.044-.206.22-.371.192-.605.137-.215-.054-.322-.142-.543-.276-.036-.207-.102-.482-.102-.59 0-.044-.004-.141-.01-.243q.047-.054.106-.114s.178-.247.44-.233c.26.014.535-.041.604-.11 0-.48-.55-.494-.357-1.319.013-.04.082-.11.302-.137-.33-.069-.48-.083-.714-.302l-.013-.013c.11-.253.224-.457.301-.605.193-.385.082-.852.082-.852.207-.069.385-.179.413-.247.203-.673-.164-1.322-.605-1.74q.054-.005.11-.006zm-5.46.925q.014.024.034.05c.179.22.577.495 1.113.673.26.083.467.028.7-.027 1.123-.278 2.304-.346 3.33.155a1.8 1.8 0 0 1-.157 1.068c-.232.465-.533 1.068-.48 2.215-.246.044-1.419.144-1.992.037-.521-.097-1.416-.525-1.62-.69a7 7 0 0 1-.125-.848 1.4 1.4 0 0 0 .454-.343c-.412.068-.577.04-.825-.097-.235-.13-.642-.533-.87-.82.229-.29.393-.69.335-1.226q.055-.075.102-.147zm-4.38 1.598c-.09.253.093.654.224.953.508 1.179 2.07 1.29 3.127 2.18a.7.7 0 0 0 .06.388c.083.165.371.413.371.413-.055.054-.027.164-.027.164.204.217.504.243.547.246-.435 1.248-.816 2.626-.451 4.095-.179.244-.368.445-.531.668a.85.85 0 0 1-.444-.31c-.591-.852-1.457-1.416-3.023-1.374-2.349.055-3.283-.907-3.461-2.748-.094-.974-.357-1.922-.888-2.479C7.489 9.014 9.6 7.937 10.268 7.73a3 3 0 0 0 .2-.073zm3.496.18c.381.442.795.727 1.193.979.082.343.11.577.192 1.03h-.041l-.027.308a3 3 0 0 0-.62-.113l.001-.003c-.893-1.057-.7-1.47-1.058-2.019.097-.034.225-.094.36-.182m5.911 1.086c.076.067.178.12.323.154-.327.68.33.912.37 1.17-.143.083-.367.037-.603.025-.115-.006-.229.065-.321.147l.032-.367c.006-.43.09-.809.2-1.13zM15.79 9.947c.024.035.178.131 1.002.352 1.026.275 2.323.12 2.55.09a.4.4 0 0 1-.022.089c0 .343.055.59.096.81.053.308.13.533.163.74l.008-.007c.234 1.367.561 3.133-.267 4.048.041.192.069.467.014.783a3 3 0 0 1-.151.535 2.3 2.3 0 0 0-.108.352c-1.1.142-1.755.055-2.06-.015.123-.374.407-.754.876-.735-.022-.911-.264-1.223-.511-1.891.395-.883.299-1.665.621-2.848-.247.261-.44 1.209-.604 1.786-.206.838-.563 1.648-1.525 2.294 0 .22-.069.384-.151.494-.179.261-.412.344-.494.77.11-.138.26-.261.26-.22a9 9 0 0 1-.025.493l.012.001c-.165 1.044-.522 1.525-.742 2.115-.151.426-.096 1.36-.151 1.374-.385.083-.975-.068-1.14-.15.162-1.14.019-2.278.436-3.6l-.015-.006c.16-.554.478-.878.939-1.464-.161-.52-.532-1.64.266-4.182q.049-.02.105-.049l.206-.137c.04-.028.096-.069.137-.096.069-.042.371-.371.412-.412.096-.097.165-.124.192-.234.055-.206-.247-.412-.37-.55q-.025-.027-.043-.05.02-.059.042-.114c.01-.125.028-.26.042-.367zm.883 7.942c.05.002.174.122.751.158.66.04 1.539-.083 1.772-.138s.097.11.069.275l-.026.169c-.399.134-1.008.188-1.416.202-.393.013-.846-.012-1.161-.11-.048-.26-.063-.47-.007-.55a.02.02 0 0 1 .018-.006m2.506.846c-.02.135-.035.223-.058.372-.388.12-.888.122-1.27.135a4.4 4.4 0 0 1-1.012-.07l-.033-.109-.065-.252c.179.034.53.079 1.15.087a4.1 4.1 0 0 0 1.288-.163m-.106.685c-.069.44-.055 1.786-.014 2.157.014.11.948.522 1.277.77.107.085.259.157.422.222.042.042.116.105.197.203.162.213.052.436-.135.526-.264-.007-.568-.052-1.074-.128-.695-.104-1.129-.101-1.73-.106v-.003c-.152-.275-.056-.728-.056-.728a2.2 2.2 0 0 1-.809-.18l.012-.026c.234-.48.22-.591.151-1.415-.047-.578-.196-.883-.335-1.195.169.016.409.035.857.041a4.6 4.6 0 0 0 1.237-.138m-5.306 2.084c.243 0 .6.032.676.1v.014c.014.165.165.399.11.522-.027.069-.096-.041-.192-.068.041.26.151.741.316 1.112.11.248.041.426-.33.495-.33.014-.755 0-1.112-.083-.412-.206-.55-.316-.467-.7.068-.275.494-.59.865-.838-.206.014-.426.165-.398-.014.055-.357.206-.33.302-.508-.02-.02.084-.032.23-.032"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/griddotai.svg��������������������������������0000664�0000000�0000000�00000000412�14753064456�0025566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.732 9.091v-3.52H6.506v12.816h5.612v-5.613h11.226V24h-5.613v-5.613H12.12V24h-4.5a6.965 6.965 0 0 1-6.964-6.964V6.966A6.966 6.966 0 0 1 7.619 0h8.762a6.965 6.965 0 0 1 6.964 6.964v2.127z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gridsome.svg���������������������������������0000664�0000000�0000000�00000001130�14753064456�0025427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.026.017-.108.001C4.905.135-.102 5.975.002 11.956.025 19.286 6.02 24.13 12.083 23.98c7.208-.2 12.323-6.461 11.892-12.05a2.197 2.197 0 0 0-2.192-2.001h-3.15a2.155 2.155 0 0 0-2.161 2.147c0 1.187.967 2.148 2.16 2.148h.788c-.87 2.791-3.62 5.455-7.44 5.56-3.803.095-7.61-2.904-7.768-7.569a2 2 0 0 0 0-.159c-.148-3.72 2.895-7.637 7.88-7.845a2.096 2.096 0 0 0 2.003-2.183 2.095 2.095 0 0 0-2.07-2.011zm-.018 9.911a2.15 2.15 0 0 0-2.146 2.151 2.15 2.15 0 0 0 2.146 2.152 2.15 2.15 0 0 0 2.147-2.152 2.15 2.15 0 0 0-2.147-2.15Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/grocy.svg������������������������������������0000664�0000000�0000000�00000001317�14753064456�0024750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.621.068C7.527.786 3.608 4.618 2.345 10.082c-.316 1.35-.392 3.896-.163 5.203.62 3.57 2.96 6.574 6.15 7.913 1.36.577 2.1.73 3.842.784 1.22.043 1.862.01 2.722-.13 2.688-.447 5.399-1.699 6.65-3.092l.403-.447-.054-1.872a482 482 0 0 1-.12-5.344l-.065-3.473-2.907.087a267 267 0 0 0-4.746.142l-1.85.065-.087 2.319c-.055 1.284-.076 2.34-.055 2.362.022.022.882.076 1.916.12l1.872.076v.294c0 .707-.13.98-.555 1.208-.653.326-1.872.479-2.623.326-2.71-.566-3.777-4.55-1.96-7.369C11.86 7.48 13.873 6.62 16.562 6.74c.74.043 1.665.163 2.123.272.446.12.838.174.87.12.098-.142.468-5.726.403-5.9-.087-.24-1.35-.697-2.569-.947-1.252-.25-3.722-.37-4.767-.218z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/groupme.svg����������������������������������0000664�0000000�0000000�00000001407�14753064456�0025303�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.16 6.574h1.68V8.17h-1.68zM18.2 0H5.8C3.15 0 1 2.04 1 4.556v11.768c0 2.516 2.149 4.556 4.8 4.556h4.127L11.98 24l2.052-3.12H18.2c2.65 0 4.8-2.04 4.8-4.556V4.556C23 2.04 20.85 0 18.2 0M7.568 8.169h1.78V6.574h-1.78v-1.72h1.78V3.166h1.812v1.688h1.68V3.166h1.812v1.688h1.779v1.72h-1.78V8.17h1.78v1.72h-1.78v1.688H12.84V9.89h-1.68v1.688H9.348V9.89h-1.78zm12.744 5.263s-2.392 4.276-8.071 4.276l-.234-.002-.233.002c-5.68 0-8.072-4.276-8.072-4.276s-.155-.278-.155-.579a.83.83 0 0 1 .395-.71 1.1 1.1 0 0 1 .46-.167c.684-.07 1.08.353 1.406.836.36.533 2.436 2.866 6.199 2.955 3.763-.089 5.84-2.422 6.2-2.955.325-.482.736-.906 1.406-.836.142.015.296.066.46.167.292.183.406.44.396.71-.023.396-.157.58-.157.58"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/groupon.svg����������������������������������0000664�0000000�0000000�00000000753�14753064456�0025321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.316 20.334C5.618 22.736 8.554 24 12.012 24c3.988 0 7.739-1.95 9.978-5.163 1.353-1.95 2.01-4.158 2.01-6.755 0-.484-.032-1.006-.063-1.529H10.595v4.61h6.687c-1.155 2.012-3.094 3.12-5.27 3.12-3.229 0-6.125-2.824-6.125-6.497 0-3.315 2.699-6.069 6.125-6.069 1.844 0 3.355.749 4.811 2.239h6.52C21.468 3.019 17.084 0 12.083 0c-3.323 0-6.22 1.17-8.53 3.409C1.25 5.647 0 8.572 0 11.754c-.008 3.417 1.108 6.271 3.316 8.58"/></svg>���������������������mkdocs-material-9.6.4/material/templates/.icons/simple/grubhub.svg����������������������������������0000664�0000000�0000000�00000005555�14753064456�0025273�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.708 9.556h-.84c-.048 0-.072.048-.072.072v1.828h-.84V9.628c0-.048-.048-.072-.072-.072h-.84c-.048 0-.072.048-.072.072v4.692c0 .048.048.072.072.072h.84c.048 0 .072-.048.072-.072v-1.876h.84v1.876c0 .048.048.072.072.072h.84c.048 0 .072-.048.072-.072V9.628c0-.024-.024-.072-.072-.072m-7.08 0h-.84q-.072 0-.072.072v3.324a.6.6 0 0 1-.12.384c-.072.096-.168.12-.288.12a.4.4 0 0 1-.288-.12.6.6 0 0 1-.12-.384V9.628c0-.048-.048-.072-.072-.072h-.84q-.072 0-.072.072v3.348c0 .432.096.84.36 1.108.264.264.624.408 1.036.408.432 0 .796-.144 1.036-.408.264-.264.36-.648.36-1.108V9.628c-.004-.024-.028-.072-.08-.072m-8.232-.072c-.432 0-.796.144-1.036.408C.096 10.156 0 10.54 0 11v2c0 .432.096.84.36 1.108.264.264.624.408 1.036.408.432 0 .796-.144 1.036-.408.264-.264.36-.648.36-1.108v-1.104a.1.1 0 0 0-.096-.096H1.468a.1.1 0 0 0-.096.096v.82c0 .048.048.096.096.096h.316v.192a.68.68 0 0 1-.12.408c-.072.096-.168.12-.288.12a.4.4 0 0 1-.288-.12.7.7 0 0 1-.12-.408v-1.976c0-.168.048-.316.12-.408.072-.096.168-.12.288-.12.116 0 .216.048.288.12.072.096.12.24.12.408v.192c0 .048.048.072.072.072h.84q.072 0 .072-.072v-.192c0-.432-.096-.84-.36-1.108-.216-.292-.604-.436-1.012-.436m10.832 3.828c-.072.096-.168.12-.316.12h-.48v-1.016h.48c.12 0 .216.048.288.12.079.104.121.23.12.36.008.2-.016.316-.092.416m-.364-2.768c.12 0 .216.024.288.12.072.072.096.192.096.34s-.024.264-.096.36a.39.39 0 0 1-.264.12h-.432v-.94zm.964 1.372c.144-.144.408-.48.408-.916 0-.508-.192-.82-.34-.988-.264-.288-.624-.432-1.036-.432h-1.316c-.048 0-.072.048-.072.072v4.696c0 .048.048.072.072.072h1.396c.432 0 .84-.168 1.108-.508.144-.192.316-.508.316-.988-.028-.576-.388-.916-.536-1.008m-7.652-.46c-.072.096-.192.144-.34.144h-.408v-1.056h.408c.144 0 .264.048.34.144.096.096.12.216.12.384s-.02.288-.12.384m.532.868c.096-.072.168-.12.24-.216.168-.192.384-.532.384-1.06 0-.508-.192-.84-.384-1.036-.24-.288-.6-.432-1.012-.456H3.54c-.048 0-.072.048-.072.072v4.692c0 .048.048.072.072.072h.84c.048 0 .072-.048.072-.072v-1.736h.288l.532 1.78c0 .024.048.048.072.048h.888c.024 0 .048-.024.072-.024s.024-.048.024-.072zm17.136.988c-.072.096-.168.12-.316.12h-.48v-1.016h.48c.12 0 .216.048.288.12.079.104.121.23.12.36.028.2-.016.316-.092.416m-.34-2.768c.12 0 .216.024.288.12.072.072.096.192.096.34s-.024.264-.096.36a.39.39 0 0 1-.264.12h-.432v-.94zm.964 1.372c.144-.144.408-.48.408-.916 0-.508-.192-.82-.34-.988-.264-.288-.624-.432-1.036-.432h-1.328c-.048 0-.072.048-.072.072v4.696c0 .048.048.072.072.072h1.404c.432 0 .84-.168 1.108-.508.144-.192.316-.508.316-.988a1.44 1.44 0 0 0-.532-1.008m-3.224-2.36h-.84q-.072 0-.072.072v3.324a.6.6 0 0 1-.12.384c-.072.096-.168.12-.288.12a.4.4 0 0 1-.288-.12.6.6 0 0 1-.12-.384V9.628c0-.048-.048-.072-.072-.072H17.6q-.072 0-.072.072v3.348c0 .432.096.84.36 1.108.264.264.624.408 1.036.408.432 0 .796-.144 1.036-.408.264-.264.36-.648.36-1.108V9.628c.024-.024-.024-.072-.076-.072"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/grunt.svg������������������������������������0000664�0000000�0000000�00000013476�14753064456�0024775�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.04 0c-1.381.488-1.731 1.231-1.835 1.906-.355-.254-.316-1.079-.336-1.29-.353.041-1.366 1.025-1.32 2.265a8 8 0 0 0-.276.08c-.296-.402-1.167-1.472-2.314-1.842A3.7 3.7 0 0 0 5.832.936c-1.36 0-2.163.81-2.17.818l-.383.445.576.114c.01.002.966.201 1.362.826.065.104.083.31.101.527a1.2 1.2 0 0 1-.043.379c-.02.09-.038.181-.043.273q-.539.02-.914.211a1.25 1.25 0 0 0-.662.797c-.233.854.525 1.805.551 1.836.089.158.126 1.303-.078 1.762-.028.063-.103.126-.201.205q-.046.036-.102.076c-.288.217-.722.548-.722 1.305 0 1.036 1.05 1.597 1.894 2.049q.21.11.39.212l-.003.004c.126.073.57.534.57 1.223 0 .323-.028 1.859-.172 2.924-.541-.464-1.04-1.211-1.152-2.049 0 0-1.372 1.057-.969 3.32.246 1.385 1.087 2.16 2.203 2.565.405.89 1.365 2.143 3.155 2.326.677.554 1.613.913 2.978.914V24h.008c1.367-.001 2.305-.36 2.982-.916 1.786-.185 2.744-1.437 3.149-2.326 1.116-.406 1.957-1.18 2.203-2.565.402-2.263-.969-3.32-.969-3.32-.112.838-.61 1.585-1.152 2.049-.144-1.065-.174-2.601-.174-2.924 0-.689.446-1.15.572-1.223l-.004-.004c.12-.068.253-.138.39-.212.845-.452 1.893-1.013 1.893-2.05 0-.756-.434-1.087-.722-1.304l-.102-.076c-.097-.079-.173-.142-.2-.205-.205-.46-.168-1.604-.079-1.762.026-.03.784-.982.55-1.836a1.25 1.25 0 0 0-.661-.797q-.374-.19-.91-.21a1.7 1.7 0 0 0-.043-.276 1.3 1.3 0 0 1-.043-.379c.018-.218.036-.423.101-.527.396-.625 1.35-.825 1.36-.826l.576-.114-.381-.445c-.007-.008-.812-.818-2.172-.818-.371 0-.75.06-1.129.183-1.148.37-2.018 1.443-2.312 1.844a8 8 0 0 0-.45-.127c-.196-.74.42-1.803.42-1.803s-.635-.14-1.578.715C13 1.442 12.743.784 13.04 0m5.118 1.637c.516 0 .936.14 1.158.234-.144.065-.3.15-.455.252a2.5 2.5 0 0 0-.43-.037 2.33 2.33 0 0 0-1.347.418c-.578.406-.846.793-.969 1.049a6 6 0 0 0-.552-.28c.285-.418.926-1.236 1.767-1.507q.399-.13.828-.13zm-12.314.002c.285 0 .564.043.828.129.839.27 1.481 1.086 1.767 1.505q-.112.05-.222.104a6 6 0 0 0-.33.176c-.124-.256-.392-.641-.969-1.047a2.32 2.32 0 0 0-1.346-.418c-.172 0-.32.017-.433.037a3 3 0 0 0-.453-.25 3 3 0 0 1 1.158-.236m-.157.982q.525.02.913.328c.386.308.572.844.634 1.057a3 3 0 0 0-.49.521 7 7 0 0 0-.543-.125C6.048 4.194 6.025 3.91 6 3.61c-.024-.29-.05-.588-.205-.834a2 2 0 0 0-.107-.154zm12.625.002a2 2 0 0 0-.105.15c-.155.246-.18.544-.205.834-.025.3-.05.587-.203.795q-.297.056-.541.125a3 3 0 0 0-.488-.52c.065-.221.256-.754.634-1.056q.387-.307.909-.328zm-6.31.727c1.307 0 2.477.25 3.482.74.667.325.916.57 1.01.705-1.596.709-2.483 2.164-2.492 2.18l-.162.273.262-.182.02-.015c.407-.321 1.827-1.395 3.003-1.768.329-.104.966-.28 1.541-.28q.44 0 .707.136.248.126.314.369c.117.425-.289 1.057-.439 1.246a.5.5 0 0 0-.06.1 6 6 0 0 1-.016-.672c-.188.41-.305 1.477-.238 2.017.168 1.373.736 2.078.736 2.078-.037-.073-.082-.362-.125-.699q.051.044.101.084l.024.02c.214.172.416.333.416.853 0 .665-.72 1.056-1.416 1.432q-.202.107-.395.217c-.406.234-.845.784-.894 1.603-.041.687.043 2.338.162 3.555-.584.226-1.253.3-1.861.318a5 5 0 0 1-.258-.617h.002c-.032-.092-.919-2.394-1.239-2.918.257 1.835.823 3.459 1.102 4.201a4 4 0 0 0-.549-.035l-2.736-.002h-.006l-2.736.002q-.307.001-.55.035c.28-.742.846-2.366 1.102-4.201-.319.524-1.205 2.826-1.236 2.918a5 5 0 0 1-.258.617c-.608-.017-1.277-.092-1.861-.318.12-1.217.201-2.868.16-3.555-.049-.819-.486-1.37-.892-1.603q-.192-.11-.395-.217c-.696-.376-1.416-.767-1.416-1.432 0-.52.202-.681.416-.853l.023-.02.102-.084c-.043.335-.089.623-.125.697.006-.007.569-.71.736-2.076.067-.54-.052-1.607-.24-2.017.008.227 0 .454-.016.67a.5.5 0 0 0-.058-.098c-.15-.189-.556-.821-.44-1.246a.57.57 0 0 1 .315-.37q.266-.134.707-.134c.575 0 1.214.175 1.543.28C8.055 5.655 9.474 6.73 9.88 7.05l.02.015.26.182-.163-.273c-.01-.016-.895-1.471-2.49-2.18.094-.135.342-.38 1.01-.705 1.005-.49 2.177-.74 3.484-.74zm-1.281 4.613s.68.827 1.277.834v.002h.006c.597-.007 1.277-.834 1.277-.834v-.002c-.466.282-.884.38-1.281.389a2.5 2.5 0 0 1-1.28-.39zm-4.434.066a3.4 3.4 0 0 0-.717.096q.307.068.633.191l-.004.002c-.192.085-.3.323-.326.555-.054.47.244.898.244.898.03-.35.104-.6.19-.777.02.483.147 1.104.597 1.602.323.357 1.667 1.094 2.57.285.048.115.1.25.141.398.137.481-.125 1.184-.125 1.184s.705-.8.65-1.525c.507-.023 1.005-.394.99-.915 0 0-.883.488-1.663-.41-.4-.458-1.567-1.622-3.18-1.584m11.428 0c-1.613-.038-2.781 1.126-3.18 1.584-.78.898-1.664.41-1.664.41-.014.52.482.892.988.915-.054.724.653 1.525.653 1.525s-.262-.703-.125-1.184c.042-.147.091-.282.138-.396.903.807 2.248.07 2.57-.287.452-.5.579-1.12.598-1.604.086.178.16.428.19.78 0 0 .3-.43.246-.899-.027-.232-.134-.47-.326-.555q-.003 0-.006-.002.327-.123.635-.191a3.4 3.4 0 0 0-.717-.096m-10.512.76c.915.514 1.754 1.204 2.104 1.736-.263.155-1.008.496-1.778-.076-.487-.362-.465-1.235-.326-1.66m9.596 0c.14.425.161 1.298-.326 1.66-.77.572-1.517.23-1.78.076.35-.532 1.191-1.222 2.106-1.736M4.455 16.197c.512 1.614 2.212 2.075 3.486 2.131a7 7 0 0 1-.34.485l-.052.052c-.339.366-.404.87-.194 1.494-1.057-.016-2.163-.468-2.724-1.392-.569-.936-.41-2.535-.176-2.77m15.092 0c.233.235.393 1.834-.176 2.77-.561.923-1.664 1.373-2.72 1.39.21-.624.144-1.125-.194-1.49l-.002-.002q-.029-.03-.06-.06a7 7 0 0 1-.334-.477c1.274-.055 2.975-.517 3.486-2.13zM12 18.895l2.045.001h.74c.709 0 1.019.184 1.154.338.198.226.21.589.04 1.08v.002c-.31.886-1.14 3.03-3.979 3.034-2.839-.004-3.67-2.148-3.979-3.034-.17-.491-.157-.856.041-1.082.136-.154.446-.338 1.155-.338h.74zm-1.805.72-.896.002h-.182c-.256 0-.384.074-.445.135q-.133.135-.041.37c.163.415.533.756.642.85a.86.86 0 0 0 .551.196l.002.002c.207 0 .39-.076.516-.211.352-.376.561-.782.611-.906.029-.071.062-.207-.04-.313q-.122-.124-.417-.125zm3.31 0c-.194 0-.335.043-.415.125-.104.106-.07.242-.041.313.05.124.259.53.611.906v.002c.126.135.31.209.518.209a.86.86 0 0 0 .55-.197c.11-.094.48-.434.643-.85q.092-.235-.04-.371c-.061-.06-.188-.135-.444-.135h-.184l-.896-.002h-.301zm-6.728 1.387q.425.077.873.111c.163.379.347.748.577 1.088a3.2 3.2 0 0 1-1.45-1.199m10.446 0a3.2 3.2 0 0 1-1.442 1.195c.228-.34.413-.707.574-1.084a8 8 0 0 0 .868-.111"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gsk.svg��������������������������������������0000664�0000000�0000000�00000001663�14753064456�0024415�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.769 13.5v2.114h1.49V12.3c0-.15.115-.174.2-.093l3.512 3.408H24L20.279 12 24 8.384h-2.034l-3.512 3.408c-.081.081-.2.058-.2-.093V8.384h-1.485v2.125c0 .763.5 1.225 1.386 1.468.035.011.035.046 0 .057-.89.243-1.386.705-1.386 1.466m-8.446-2.309c0 .924.774 1.5 1.825 1.5h3.535a.388.388 0 0 1 .416.416v.6a.388.388 0 0 1-.416.416H8.7v1.49h5.014a1.793 1.793 0 0 0 1.837-1.838v-.657a1.79 1.79 0 0 0-1.836-1.837H10.2a.388.388 0 0 1-.416-.416v-.717a.255.255 0 0 1 .277-.277h4.9V8.384H10.76a1.01 1.01 0 0 0-1.016 1V9.8a.067.067 0 0 1-.065.069h-.005a1.27 1.27 0 0 0-1.351 1.322m-1.657.093H4.274v.448a.957.957 0 0 0 .951.962h.585v1.155a.28.28 0 0 1-.278.277H1.907a.416.416 0 0 1-.416-.416v-3.42a.415.415 0 0 1 .415-.416H5.8v-1.49h-4a1.8 1.8 0 0 0-1.8 1.8v3.635a1.8 1.8 0 0 0 1.8 1.8h3.017A1.02 1.02 0 0 0 5.834 14.6v-.4a.067.067 0 0 1 .065-.07c.808-.023 1.328-.416 1.328-1.1v-1.746Z"/></svg>�����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gsmarenadotcom.svg���������������������������0000664�0000000�0000000�00000001054�14753064456�0026626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.324 22.992c-.905-.454-12.625-5.27-12.625-5.27a1.3 1.3 0 0 0-.389-.122c-.39-.056-.78.091-1.061.444 0 0-2.672 4.354-3.066 4.948C2.782 23.58 3.2 24 3.726 24h16.38c.644 0 .898-.67.218-1.008M19.688 0h-7.743c-.868 0-1.49.28-2.042 1.043L4.05 10.497c-.333.457-.14.985.336 1.185.974.412 2.766.977 3.68 1.388.718.326 1.157.204 1.552-.382l4.092-6.507.49-.005v7.405c0 .924.37 1.279.946 1.54.577.246 4.144 1.773 4.689 1.973.644.246 1.143-.05 1.143-.731V1.289c0-.706-.585-1.289-1.29-1.289"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gstreamer.svg��������������������������������0000664�0000000�0000000�00000006205�14753064456�0025617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.091 14.055c-.029-.586.226-1.949.811-1.82.25.055.181.399.1.77-.11.502-.3 1.049-.3 1.049s.714.028.7 0c.071-.9.26-1.878.785-1.805.435.061-.124 1.805-.124 1.805h.65c-.023-.296.136-.985.226-1.483s-.101-.716-.502-.72-.798.347-.798.347c.016-.3-.38-.347-.38-.347-.421-.027-.826.257-.826.257l.038-.22h-.636s-.032.35-.16.99c-.129.638-.3 1.176-.3 1.176h.716zm4.354-2.22c-.87 0-1.259.614-1.259 1.242s.371 1.042 1.128 1.042c.355 0 .556-.328.556-.328s.012-.09-.055-.053c-.067.038-.25.116-.49.116s-.497-.227-.497-.791h1.37c.072-.229.118-1.229-.753-1.229zm.127.974h-.665c0-.46.368-.806.618-.683.228.106.047.683.047.683m-8.306-.975c-.871 0-1.26.615-1.26 1.243s.372 1.042 1.128 1.042c.356 0 .557-.328.557-.328s.012-.09-.056-.053c-.067.038-.25.116-.489.116s-.497-.227-.497-.791h1.37c.072-.229.118-1.229-.753-1.229m.127.975h-.665c0-.46.31-.757.56-.634.228.106.105.634.105.634m9.623 1.28h-.703s.41-1.472.446-2.194c-.006.006.609 0 .609 0s-.053.163-.076.305c.174-.193.233-.366.705-.366.006 0 0 .609 0 .609s-.44-.11-.6.049c-.158.158-.328.285-.381 1.597m-12.12 0h-.702s.41-1.472.446-2.194c-.006.006.609 0 .609 0s-.053.163-.076.305c.174-.193.233-.366.705-.366.006 0 0 .609 0 .609s-.44-.11-.6.049c-.158.158-.328.285-.382 1.597m-.856-2.95-.574.198-.132.535h-.366v.352h.289s-.308 1.103-.25 1.44c.057.366.414.443.626.433s.27-.164.26-.221-.299.055-.328-.205c-.02-.154.24-1.447.24-1.447h.454v-.352h-.357zm5.985 2.916c.085-.07.028-.21-.045-.228-.084-.172.173-1.178.173-1.454s-.462-.828-1.416-.308c-.092.059-.058.155-.036.187s.066.053.086.032c.09-.098.48-.2.663-.007.125.115.12.339.033.425-.106.01-1.15-.02-1.276.644-.216 1.18 1.107.558 1.175.51s.06.14.172.219c.301.026.412.03.471-.02m-.66-.493c-.107.282-.505.24-.528.04-.086-.668.603-.618.603-.618s.032.296-.075.578m-6.948-1.04.2-.337s-.163-.347-.644-.347-.758.347-.758.758.915.721.694 1.128c-.37.379-.76-.24-.753-.28-.028.04-.219.304-.21.304.047.092.214.385.75.392.444.005.712-.324.72-.73.01-.546-.785-.823-.794-1.072s.527-.537.795.184m-1.048-.803c-.085-.08-.15.027-.342.107s-.257.07-.45.043c-.316-.07-.871-.049-1.017.022-.975.391-.452 1.116-.293 1.26-.001 0-.238.125-.272.32-.044.251.071.387.075.39-.319.017-.524.338-.474.6.053.283.39.508.872.51 1.02.022 1.072-.63 1.072-.63.14-.793-.533-.83-1.012-.792-.173-.155-.038-.3-.045-.3 1.619.039 1.211-1.041 1.211-1.041.273-.067.81-.36.675-.489m-2.168 2.272c.634.114.89-.031.933.292.018.316-.25.406-.561.425-.311.02-.538-.138-.551-.34-.012-.203.164-.182.179-.377m.98-1.38c-.06.26-.239.44-.402.404-.163-.037-.248-.277-.19-.537.06-.26.239-.44.402-.403s.248.277.19.537zM4.037 9.475c-.464 0-1.142-.378-1.802-.378s-1.055.378-1.124.43c-.069.05-.112.248.094.188s.378-.06.704-.06 1.107.446 1.896.446 1.45-.609 1.596-.823c.145-.215.008-.284-.103-.232-.112.051-.832.429-1.261.429m2.012 1.175c-.487 0-1.199-.377-1.893-.377s-1.108.377-1.18.429c-.073.051-.118.248.099.188.216-.06.396-.06.739-.06s1.162.446 1.992.446 1.523-.609 1.676-.823c.153-.215.009-.283-.108-.232s-.874.43-1.325.43zm-2.8 1.297c-.506 0-1.244-.408-1.964-.408s-1.15.408-1.224.464-.122.268.103.203.41-.065.766-.065 1.206.482 2.066.482 1.58-.658 1.738-.89c.16-.23.01-.305-.112-.25-.121.056-.906.464-1.374.464z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gtk.svg��������������������������������������0000664�0000000�0000000�00000000527�14753064456�0024414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.01 23.773V14.45l-7.584 2.245Zm0-13.87L.91 3.828l.502 12.526 7.597-2.249ZM9.57 24l12.353-5.146-8.285-5.775-4.068 1.204ZM23.09 5.815l-9.257 2.849v4.148l8.237 5.741ZM9.57 9.975v3.964l3.932-1.164v-4.01Zm-.228-.52 4.16-1.28V0L1.231 3.37ZM22.715 5.34 13.833.052v8.021Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/guangzhoumetro.svg���������������������������0000664�0000000�0000000�00000000377�14753064456�0026710�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.433 12.329A16.19 16.19 0 0 1 22.118.009L17.684 0a16.2 16.2 0 0 0-4.776 11.374V24h3.525zm-8.869 0A16.17 16.17 0 0 0 1.882.009L6.319 0a16.24 16.24 0 0 1 4.773 11.374V24H7.564z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/guilded.svg����������������������������������0000664�0000000�0000000�00000000573�14753064456�0025245�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.297 6.255s.02 2.846 1.481 5.79c1.502 2.834 3.572 4.654 5.28 5.38 1.765-.826 3.47-2.258 4.4-3.8h-4.845c-1.253-1.04-2.24-2.763-2.466-4.755H23.36c-.701 3.203-2.188 6.116-3.605 7.971a17.1 17.1 0 0 1-7.686 5.659h-.045c-5.098-2.031-7.84-5.23-9.65-8.84C1.214 11.347 0 7.147 0 1.5h24a34 34 0 0 1-.32 4.755z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/guitarpro.svg��������������������������������0000664�0000000�0000000�00000001611�14753064456�0025636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.998 0C6.422 0 1.773 3.573 1.773 7.295S8.561 23.973 11.998 24c3.435.027 10.218-12.971 10.229-16.705C22.227 3.575 17.575 0 11.998 0m3.842 5.078a2.29 2.29 0 0 1 2.389 2.34l.007 1.783a2.267 2.267 0 0 1-2.265 2.342 2.36 2.36 0 0 1-1.772-.799v3.115l-1.746.239V5.375l1.688-.287.058.785a2.3 2.3 0 0 1 1.64-.795zm-5.555.035h1.7l-.005 5.953c0 1.736-.931 2.973-2.58 2.973a4.95 4.95 0 0 1-2.423-.523l.207-1.748a3.3 3.3 0 0 0 1.996.843.946.946 0 0 0 1.056-.998v-.904l-.011.014a2.33 2.33 0 0 1-1.77.806 2.28 2.28 0 0 1-2.26-2.345V7.47a2.285 2.285 0 0 1 4.03-1.551zM9.082 6.385a1.156 1.156 0 0 0-1.139 1.273v1.26a1.164 1.164 0 0 0 1.139 1.258 1.183 1.183 0 0 0 1.154-1.139V7.55a1.16 1.16 0 0 0-1.154-1.153zm5.98.008a1.15 1.15 0 0 0-.874 1.228v1.33a1.18 1.18 0 0 0 1.152 1.26 1.166 1.166 0 0 0 1.14-1.26v-1.33a1.152 1.152 0 0 0-1.418-1.228"/></svg>�����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gulp.svg�������������������������������������0000664�0000000�0000000�00000012506�14753064456�0024576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.936 4.694c-.336 0-.675.078-1.013.222q-.51.217-1.007.605a7 7 0 0 0-.97.917c-.313.354-.61.745-.887 1.164-.276.42-.533.867-.78 1.32h-.001v.001q-.358.711-.63 1.455-.268.742-.438 1.497-.166.749-.2 1.465a1 1 0 0 0-.01.091v.095c0 .261.038.53.075.776v.002l.001.002c.068.262.175.504.31.717a1.7 1.7 0 0 0 .537.518q.324.207.776.207.395.001.817-.185c.279-.125.557-.288.834-.479.268-.192.536-.412.794-.66.207-.192.396-.392.583-.59l-.196.608c-.085.293-.18.576-.257.853q-.126.411-.209.738c-.057.216-.096.362-.096.456v.215c0 .241.025.411.104.518a.4.4 0 0 0 .333.152.44.44 0 0 0 .265-.095c.081-.06.15-.137.219-.224v-.002l.002-.001c.057-.087.115-.18.164-.278.05-.101.078-.19.107-.269v-.001l.067-.24.143-.495.19-.662c.076-.247.142-.495.227-.747l.225-.75q.108-.367.203-.661.094-.298.16-.493.031-.097.054-.154l.014-.032.04.018.018-.048q.114-.327.227-.626c.076-.2.152-.4.21-.597a3.8 3.8 0 0 0 .22-1.29.6.6 0 0 0-.05-.255.44.44 0 0 0-.124-.18.5.5 0 0 0-.174-.1.6.6 0 0 0-.19-.03.66.66 0 0 0-.378.127c-.129.086-.225.229-.297.422v.001l-.55 1.764a4 4 0 0 1-.317.513v.001a9.4 9.4 0 0 1-1.71 1.832 3.5 3.5 0 0 1-.6.404 1.06 1.06 0 0 1-.5.146.48.48 0 0 1-.312-.103.64.64 0 0 1-.204-.275 1.6 1.6 0 0 1-.102-.387 3 3 0 0 1-.028-.422c0-.413.066-.874.198-1.394s.312-1.04.539-1.579c.227-.54.492-1.06.786-1.571.293-.511.605-.965.926-1.362.32-.396.64-.706.97-.95.327-.244.62-.362.902-.362a.9.9 0 0 1 .497.145q.226.147.42.496v-.001c.134.259.269.46.385.606.12.15.259.227.408.227a.51.51 0 0 0 .416-.208c.115-.138.17-.327.17-.556q0-.145-.03-.307a.9.9 0 0 0-.14-.334c-.314-.47-.651-.807-1.01-1.024H7.06a2.2 2.2 0 0 0-1.125-.317zm10.961.855a.8.8 0 0 0-.41.12h-.001l-.001.001a.85.85 0 0 0-.318.43l-1.889 4.758-.417 1.045c-.153.38-.295.76-.447 1.148a5 5 0 0 0-.176.551 5 5 0 0 1-.257.215q-.31.24-.589.365h-.002a1.05 1.05 0 0 1-.463.129q-.121-.002-.172-.053c-.035-.033-.056-.084-.056-.166q0-.277.084-.615c.057-.22.132-.451.217-.683a9 9 0 0 1 .274-.69l.276-.644c.086-.2.153-.382.21-.534a1.2 1.2 0 0 0 .089-.377.7.7 0 0 0-.143-.437.47.47 0 0 0-.39-.19.47.47 0 0 0-.378.179 1.5 1.5 0 0 0-.254.42 4 4 0 0 0-.201.537c-.056.19-.131.368-.207.535-.113.25-.246.524-.416.826a6.6 6.6 0 0 1-.565.849q-.31.39-.675.654a1.26 1.26 0 0 1-.75.257q-.124 0-.167-.088a.5.5 0 0 1-.052-.225q.014-.306.112-.643.099-.334.226-.66c.085-.21.18-.424.283-.625.105-.201.2-.391.294-.56v-.001l.248-.47a2 2 0 0 0 .135-.33l.001-.002v-.001c.01-.04.021-.09.021-.145a.4.4 0 0 0-.054-.214v-.001l-.001-.001a.53.53 0 0 0-.335-.238.65.65 0 0 0-.588.103c-.132.091-.231.232-.319.426a23 23 0 0 0-.79 1.817c-.19.505-.323.914-.418 1.229a5 5 0 0 0-.163.7v.001l-.02.231v.002c0 .214.029.4.09.55v.002c.068.147.148.266.249.357a.9.9 0 0 0 .36.191q.199.06.41.059c.311 0 .598-.058.861-.155s.501-.232.714-.396a3.4 3.4 0 0 0 .563-.548c.12-.14.21-.285.3-.427-.04.22-.078.437-.078.614 0 .33.063.57.202.717a.7.7 0 0 0 .523.214q.312 0 .694-.17.38-.17.77-.446.096-.068.19-.141l.005.036a1 1 0 0 0 .15.35h.001l.001.002c.08.099.17.18.291.24a1 1 0 0 0 .45.091 2 2 0 0 0 .787-.175h.002c.268-.125.537-.279.805-.48a9 9 0 0 0 .812-.697l.01-.009q-.068.159-.138.319-.327.724-.674 1.471c-.233.5-.466.994-.684 1.488l-.001.003-.001.002a4 4 0 0 1-.104.278c-.036.092-.085.188-.115.298v.001c-.037.1-.075.198-.095.306-.03.11-.04.217-.04.315 0 .208.059.367.172.447a.67.67 0 0 0 .398.115c.122 0 .234-.03.335-.08v-.001h.001a1 1 0 0 0 .263-.22q.113-.135.198-.308a4 4 0 0 0 .154-.365l.002-.004v-.004q.013-.057.084-.244l.162-.436.19-.512.199-.522.17-.435q.07-.187.095-.255v-.001c.019-.038.048-.095.085-.189l.133-.313.161-.37.172-.38.142-.342.103-.226.001-.001q.13-.255.302-.566v-.001c.123-.207.255-.405.396-.612v-.001c.152-.2.302-.397.463-.585s.33-.347.5-.498c.173-.14.346-.262.521-.345a1.14 1.14 0 0 1 .499-.128c.086 0 .143.018.178.039a.14.14 0 0 1 .042.103c0 .08-.043.207-.144.353v.001c-.104.16-.226.33-.377.519-.162.19-.323.389-.503.597q-.27.315-.514.628a6 6 0 0 0-.412.603v.001a1.5 1.5 0 0 0-.205.53v.007l-.004.022c-.003.01-.006.014-.006.035v.057c0 .257.092.465.274.606.183.152.441.22.76.22q.522 0 .97-.204c.298-.134.605-.316.92-.556h.001c.315-.236.64-.517.991-.843.341-.325.739-.685 1.184-1.08a.85.85 0 0 0 .262-.352q.089-.207.089-.41a.64.64 0 0 0-.082-.324.28.28 0 0 0-.248-.148.4.4 0 0 0-.164.043q-.079.04-.17.101c-.104.033.017.063.03.108-.538.481-1.004.887-1.373 1.206-.38.332-.699.588-.946.788a6 6 0 0 1-.574.41c-.132.079-.233.117-.289.117-.078 0-.132-.02-.156-.043a.14.14 0 0 1-.043-.108.2.2 0 0 1 .035-.075 2 2 0 0 1 .117-.152l.398-.465c.162-.181.324-.381.504-.6.18-.22.35-.447.502-.682.16-.23.285-.467.39-.7.101-.233.156-.455.156-.666a.84.84 0 0 0-.106-.426.9.9 0 0 0-.277-.3c-.11-.08-.238-.14-.375-.181h-.001a1.56 1.56 0 0 0-1.043.073 3 3 0 0 0-.598.332 6 6 0 0 0-.565.45 10 10 0 0 0-.38.378l.036-.176q.021-.109.034-.207v-.001q.014-.1.013-.149a.53.53 0 0 0-.126-.373v-.001h-.002c-.087-.09-.222-.129-.4-.129-.122 0-.24.07-.34.19a2.2 2.2 0 0 0-.263.418 4 4 0 0 0-.202.48l-.133.378v.001q-.07.239-.15.485l-.041.014a.33.33 0 0 0-.136.089l.003-.003c-.118.114-.251.247-.399.389q-.221.213-.464.426c-.162.133-.326.275-.49.407q-.244.195-.471.345-.225.15-.419.241a.8.8 0 0 1-.309.088c-.06 0-.085-.014-.1-.042h-.001a.3.3 0 0 1-.032-.155q-.001-.17.064-.39.063-.219.13-.385l.028-.03.374-.952c.142-.365.294-.746.465-1.152l.513-1.254c.17-.427.342-.84.503-1.234l.475-1.102q.213-.504.37-.848l-.001.002c.059-.117.097-.227.135-.32v-.002a1 1 0 0 0 .055-.297c0-.196-.061-.35-.18-.443a.6.6 0 0 0-.384-.133"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gumroad.svg����������������������������������0000664�0000000�0000000�00000000716�14753064456�0025265�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m-.007 5.12c4.48 0 5.995 3.025 6.064 4.744h-3.239c-.069-.962-.897-2.406-2.896-2.406-2.136 0-3.514 1.857-3.514 4.126s1.378 4.125 3.514 4.125c1.93 0 2.758-1.512 3.103-3.025h-3.103v-1.238h6.509v6.327h-2.855v-3.989c-.207 1.444-1.102 4.264-4.617 4.264-3.516 0-5.584-2.82-5.584-6.326 0-3.645 2.276-6.602 6.618-6.602"/></svg>��������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gumtree.svg����������������������������������0000664�0000000�0000000�00000001520�14753064456�0025271�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.846 6.582a.7.7 0 0 1-.333-.599C18.181 2.66 15.39 0 12 0 8.609 0 5.75 2.593 5.485 5.983a.8.8 0 0 1-.332.599C3.49 7.778 2.36 9.707 2.36 11.9c0 2.991 2.061 5.584 4.853 6.316.465.133.998.2 1.13.066.333-.2.798-1.862.599-2.194-.134-.2-.533-.399-1.064-.532-1.662-.465-2.86-1.928-2.86-3.723 0-.997.4-1.861.998-2.592a2.9 2.9 0 0 1 .998-.798c.73-.4 1.13-1.13 1.13-1.928q0-.6.2-1.196c.531-1.53 1.927-2.66 3.656-2.66 1.728 0 3.125 1.13 3.656 2.66q.199.599.2 1.196c0 .798.397 1.529 1.13 1.928.398.2.664.465.997.798a3.92 3.92 0 0 1 .997 2.592 3.86 3.86 0 0 1-3.855 3.856c-2.46 0-4.388 1.995-4.388 4.455v2.526c0 .465.066.997.2 1.13.266.267 1.995.267 2.26 0 .133-.133.2-.665.2-1.13v-2.593c0-.93.797-1.728 1.728-1.728 3.59 0 6.515-2.925 6.515-6.515-.002-2.128-1.133-4.056-2.794-5.252"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gunicorn.svg���������������������������������0000664�0000000�0000000�00000003650�14753064456�0025453�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.145 20.014c-.266-.085-.267-.122-.022-.865.244-.743.132-1.432-.32-1.974-.617-.737-.914-1.366-1.009-2.135-.08-.66-.107-.713-.376-.764-.18-.035-.43.034-1.023.281-.864.36-1.07.52-1.273.98-.108.242-.12.387-.06.667.075.342.378.892.494.893.03 0 .196.114.368.252.287.23.307.27.225.458-.176.408-.595.902-.764.902-.095 0-.482-.272-.91-.637-.836-.717-.872-.79-.96-1.965-.1-1.403.244-2.058 1.78-3.375l.964-.827.062-.5c.063-.518-.026-1.748-.177-2.427-.09-.4-.382-.783-.66-.86-.303-.084-.48.09-.712.694-.25.654-.486.882-.92.882-.27 0-.52-.173-.694-.477C4.033 9 3.96 7.691 4.035 7.002c.036-.33.038-.666.005-.745-.054-.128-.52-.405-1.62-.962a4 4 0 0 1-.518-.303 3 3 0 0 0-.49-.267C.994 4.54-.095 3.903.007 3.903c.193 0 1.01.252 1.446.445.266.118.52.215.565.215s.558.165 1.14.366c.58.202 1.111.367 1.18.367.16 0 .185-.14.134-.746-.024-.275-.023-.5.002-.5s.132.053.238.118c.324.198 1.02.32 1.84.32.783.002 1.806.157 2.196.335.56.254 1.211 1.05 2.036 2.49.574 1.002 1.19 1.426 2.073 1.427.357 0 1.31-.147 2.6-.4 1.063-.21 2.467-.259 3.012-.103.665.19 1.545.7 2.27 1.314.68.576.786.704 1.204 1.468.5.912 1.05 2.207 1.54 3.622.07.202.216.54.326.753.294.568.28.603-.255.603-.58 0-.853-.092-1.233-.415-.365-.31-.46-.5-1.032-2.05-.292-.796-.577-1.273-.76-1.273-.124 0-.376.852-.376 1.273 0 .3.187.702.67 1.447.788 1.21 1.202 2.922 1.036 4.28l-.07.586-.526.022c-.825.034-.817.046-.817-1.135 0-1.257-.085-1.529-.64-2.035-.23-.21-.748-.81-1.149-1.33-.402-.52-.786-.946-.854-.946-.158 0-.236.428-.244 1.332-.006.595-.03.696-.205.88-.476.497-.81 1.403-1.016 2.754-.046.3-.085.355-.279.398-.285.064-1.075.075-1.143.015-.059-.05.044-.863.278-2.19.088-.504.185-1.18.214-1.503.053-.574-.065-1.65-.204-1.867-.058-.09-.353-.11-1.732-.116-.915-.003-1.918-.033-2.23-.066l-.565-.06v.25c0 .27.07.506.53 1.822.162.464.397 1.17.523 1.57l.227.728-.192.592a6 6 0 0 1-.348.867c-.152.266-.17.274-.595.27a3 3 0 0 1-.677-.083"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gurobi.svg�����������������������������������0000664�0000000�0000000�00000000405�14753064456�0025111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.036 0 7.032 1.359L24 18.37 18.37 24 0 17.635 1.805 5.952zm12.389 18.239L17.887 2.36l-3.557 7.83 3.88 13.264 5.215-5.214Zm-5.822-16.46L11.138.528l-8.71 5.617 11.554 3.6 3.62-7.968Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gusto.svg������������������������������������0000664�0000000�0000000�00000003116�14753064456�0024765�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.311 8.768c-1.482 0-2.69 1.212-2.69 2.702s1.208 2.701 2.69 2.701c1.483 0 2.689-1.212 2.689-2.701s-1.206-2.702-2.689-2.702m0 4.123a1.42 1.42 0 0 1-1.415-1.421 1.42 1.42 0 0 1 1.415-1.422c.78 0 1.415.638 1.415 1.422s-.635 1.42-1.415 1.42Zm-7.919-1.969-.47-.235q-.306-.152-.384-.239a.28.28 0 0 1-.078-.19q0-.137.122-.228.12-.093.338-.091.396 0 .878.48l.794-.797a2.1 2.1 0 0 0-.744-.63 2.06 2.06 0 0 0-.937-.22q-.727 0-1.196.431a1.37 1.37 0 0 0-.468 1.04q-.001.945 1.24 1.57l.433.218q.56.282.559.58 0 .16-.155.284a.63.63 0 0 1-.409.122q-.235 0-.538-.163a1.8 1.8 0 0 1-.528-.427l-.79.864q.668.877 1.786.878.842 0 1.34-.458.502-.457.502-1.141 0-.514-.277-.897-.278-.382-1.018-.75Zm-7.985 2.66V8.876H4.131v.316a2.66 2.66 0 0 0-1.442-.423C1.206 8.768 0 9.98 0 11.47s1.206 2.701 2.689 2.701c.505 0 1-.142 1.427-.412l-.002.104a1.42 1.42 0 0 1-1.415 1.42c-.265 0-.524-.075-.748-.217l-.631 1.11c.416.255.894.39 1.382.39a2.713 2.713 0 0 0 2.705-2.702c0-.057.004-.227 0-.281ZM2.69 12.89a1.42 1.42 0 0 1-1.415-1.42c0-.784.636-1.422 1.415-1.422s1.415.638 1.415 1.422a1.42 1.42 0 0 1-1.415 1.42m7.803-4.016H9.21v2.568c.002.365.002.995-.265 1.264-.128.128-.269.245-.563.245a.7.7 0 0 1-.565-.245c-.269-.27-.266-.901-.265-1.264V8.874H6.27v2.56c-.004.528-.01 1.509.633 2.16.377.38.827.575 1.476.575.65 0 1.1-.193 1.477-.576.643-.65.637-1.633.633-2.159zm7.27 3.787c-.104.078-.353.253-.636.213-.23-.03-.418-.2-.447-.768v-2.13h1.507V8.87H16.68V7.434H15.4v.281h-.002v4.223c0 .671.17 2.231 1.726 2.231.788-.012 1.266-.441 1.467-.609l.026-.02-.767-.95-.089.07Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/gutenberg.svg��������������������������������0000664�0000000�0000000�00000043354�14753064456�0025616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.34 0a.2.2 0 0 0-.18.116c-.05.105-.01.23.095.28.503.25.459.692.418.87-.08.352-.391.723-.8.723-.522 0-.772-.263-1.052-.746-.138-.236-.523-.81-1.113-.982a1.615 1.615 0 0 0-1.718.533 1.615 1.615 0 0 0-1.717-.533c-.59.172-.975.746-1.114.982-.28.483-.53.746-1.042.746H8.11a.83.83 0 0 1-.81-.62c-.04-.146-.124-.642.442-.98a.21.21 0 0 0 .071-.286.21.21 0 0 0-.286-.071c-.652.388-.753 1.002-.631 1.447.148.55.637.921 1.21.925h.01c.787 0 1.138-.493 1.404-.952.088-.151.412-.658.871-.79.567-.164 1.17.099 1.407.615a.21.21 0 0 0 .182.121h.024a.21.21 0 0 0 .182-.121c.236-.516.84-.78 1.407-.614.459.135.783.638.87.79.267.462.618.95 1.414.95.479 0 1.046-.357 1.204-1.042.132-.566-.11-1.08-.64-1.34a.2.2 0 0 0-.102-.02zM3.821.093a.21.21 0 0 0-.21.209c0 .115.092.21.21.21H6.41a.21.21 0 0 0 .209-.21.21.21 0 0 0-.21-.21zm13.863 0a.21.21 0 0 0-.209.209c0 .115.095.21.21.21h2.587a.21.21 0 0 0 .21-.21.21.21 0 0 0-.21-.21zM2.904.096a.21.21 0 0 0-.206.21.21.21 0 0 0 .21.208.21.21 0 0 0 .209-.209.21.21 0 0 0-.21-.209zm18.24 0a.21.21 0 0 0-.206.21.21.21 0 0 0 .209.208.21.21 0 0 0 .21-.209.21.21 0 0 0-.21-.209h-.004zm-19.39 0a.21.21 0 0 0-.196.21v2.216c0 .115.091.21.206.21a.21.21 0 0 0 .21-.21V.859l1.015 1.153a.209.209 0 0 0 .313-.273L1.922.167a.21.21 0 0 0-.167-.07zm20.512 0a.21.21 0 0 0-.168.07l-1.38 1.57a.205.205 0 0 0 .02.293.2.2 0 0 0 .29-.02L22.045.855V2.52c0 .114.095.209.21.209a.21.21 0 0 0 .209-.21V.306a.21.21 0 0 0-.197-.208zM8.235.526a.564.564 0 1 0 .563.563.564.564 0 0 0-.563-.563m7.591 0a.564.564 0 0 0 0 1.126.565.565 0 0 0 0-1.126m3.59.224a.21.21 0 0 0-.212.164q-.117.532.134.846c.243.304.635.314.679.314a.21.21 0 0 0 .202-.158c.078-.29.047-.547-.094-.756-.226-.338-.641-.402-.689-.408zM4.581.75q-.01 0-.02.002c-.047.006-.459.07-.688.408q-.209.314-.098.759a.21.21 0 0 0 .202.159c.044 0 .435-.01.678-.314.169-.21.213-.496.135-.847A.21.21 0 0 0 4.581.75m3.654.19a.15.15 0 0 1 .148.149.15.15 0 0 1-.148.148.15.15 0 0 1-.148-.148.15.15 0 0 1 .148-.148zm7.591 0a.15.15 0 0 1 .149.149.15.15 0 0 1-.149.148.15.15 0 0 1-.148-.148.15.15 0 0 1 .148-.148zM4.41 1.234a.4.4 0 0 1-.078.267.4.4 0 0 1-.178.121.4.4 0 0 1 .064-.226.5.5 0 0 1 .192-.162m15.18 0c.07.034.144.088.192.162q.062.095.064.226a.4.4 0 0 1-.176-.121.4.4 0 0 1-.08-.267m-6.593.135a1.3 1.3 0 0 0-.439.07.206.206 0 0 0-.121.267.21.21 0 0 0 .266.125c.034-.013.844-.283 1.464.682.04.06.108.094.176.094.037 0 .077-.01.111-.034a.21.21 0 0 0 .064-.286c-.465-.72-1.07-.918-1.52-.918zm-1.989.003a1.6 1.6 0 0 0-.262.017c-.35.05-.853.25-1.272.901a.207.207 0 0 0 .064.287.2.2 0 0 0 .112.034.21.21 0 0 0 .175-.095c.618-.965 1.427-.695 1.464-.681a.21.21 0 0 0 .267-.125.21.21 0 0 0-.125-.27c-.023-.008-.184-.065-.423-.068m.976.162a.21.21 0 0 0-.205.21.21.21 0 0 0 .209.209.21.21 0 0 0 .209-.21.21.21 0 0 0-.21-.209zm6.779.303c-.2-.007-.455.052-.77.244a3.2 3.2 0 0 0-.533.415c-.513.452-.941.442-.965.442a.208.208 0 0 0-.1.395c.33.155.63.216.9.216.516 0 .928-.226 1.215-.463.458-.378.695-.853.705-.873a.206.206 0 0 0-.081-.27.8.8 0 0 0-.372-.106zm-13.434.002a.8.8 0 0 0-.372.104.206.206 0 0 0-.081.27c.01.02.246.495.705.873.287.237.695.463 1.214.463.274 0 .574-.061.901-.216a.21.21 0 0 0 .112-.24.21.21 0 0 0-.213-.158c-.017 0-.449.013-.962-.44A3.2 3.2 0 0 0 6.1 2.08c-.315-.19-.57-.248-.77-.242zM12 2.114c-.263 0-.469.273-.627.634-1.677.074-3.762 1.157-3.85 1.201-1.427.719-2.898-.638-3.273-1.019-.057-.064-.097-.101-.1-.108a.208.208 0 0 0-.304.283l.26.294c.151.189.343.462.505.79.405.82.412 1.565.024 2.22a8.8 8.8 0 0 0-1.174 1.896c-1.13.368-1.535-.32-1.552-.351 0-.004-.003-.003-.003-.007-.213-.357-.129-.84.195-1.147.25-.236.685-.256.82-.256h.003c.453 0 .918-.071 1.219-.59a1.01 1.01 0 0 0-.156-1.219c-.327-.334-.82-.391-1.258-.148a.206.206 0 0 0-.081.283.206.206 0 0 0 .283.081c.28-.152.564-.125.76.078a.596.596 0 0 1 .09.718c-.185.32-.438.385-.843.385h-.014c-.185 0-.617.027-.961.25V3.335a.21.21 0 0 0-.21-.21.21.21 0 0 0-.208.21v3.509c-.23.412-.243.914-.007 1.32.023.043.168.286.492.468.186.105.453.203.807.203q.193 0 .421-.044c-.364.978-.546 2.03-.553 3.178v.037a9.1 9.1 0 0 0 2.052 5.729 9.45 9.45 0 0 0 4.527 3.047 3.84 3.84 0 0 0-3.634 1.491 1.4 1.4 0 0 0-.192-.206.77.77 0 0 0 .375-.658.767.767 0 0 0-.989-.732 1.2 1.2 0 0 0-.087-.368c-.324-.725-.915-.847-1.445-.904-.175-.02-.765-.108-1.076-.472-.391-.442-.398-1.1-.023-1.525a.208.208 0 1 0-.31-.277c-.51.58-.507 1.474.006 2.082q.102.119.226.209a1.7 1.7 0 0 0-.651.334c-.496.408-.75 1.09-.756 2.017a.21.21 0 0 0 .095.22q.05.03.107.03.022 0 .044-.007h.004q.008 0 .017-.007a.2.2 0 0 0 .033-.013q.004-.002.007-.003a.24.24 0 0 0 .084-.081c.081-.105.415-.237.692-.294 1.083-.236 1.31-.968 1.275-1.32a.208.208 0 1 0-.415.038c0 .003.004.064-.016.155-.051.21-.237.57-.932.722h-.006a2.8 2.8 0 0 0-.55.179q.09-.902.58-1.312c.503-.419 1.167-.3 1.174-.297a.2.2 0 0 0 .064 0 3 3 0 0 0 .277.043c.557.061.897.183 1.11.658.165.375-.047.807-.334 1.023-.145.111-.533.33-.968-.027a.209.209 0 0 0-.267.32c.196.162.415.257.641.284a2.5 2.5 0 0 0-.573.688c-.284.49-.513.752-.895.756v-1.461a.21.21 0 0 0-.209-.21.21.21 0 0 0-.209.21v1.694c0 .084.05.155.122.189.037.027.08.047.128.047h4.858a.21.21 0 0 0 .176-.095.2.2 0 0 0 .06-.1 1.686 1.686 0 0 1 3.192-.223h-.445a1.2 1.2 0 0 0-1.117-.75c-.543 0-1.022.368-1.167.891a.21.21 0 0 0 .145.257.21.21 0 0 0 .256-.145.791.791 0 0 1 1.407-.253h-.121a.21.21 0 0 0-.21.209c0 .114.095.209.21.209h.421l.024.003q.016 0 .027-.003h.837a.21.21 0 0 0 .209-.21q.001-.015-.004-.03a.3.3 0 0 0-.003-.087 2.106 2.106 0 0 0-4.035-.092h-1.09q.132-.42.354-.782.013-.02.027-.04a3.434 3.434 0 0 1 4.862-.97.2.2 0 0 0 .05.025q.133.157.26.33l.058.081q-.03.645.695 1.336.027.077.044.128v.044c0 .115.094.21.209.21a.2.2 0 0 0 .199-.156c0-.003.03-.104.091-.273q.653-.638.648-1.242a7 7 0 0 1 .381-.496 3.4 3.4 0 0 1 1.947-.607 3.42 3.42 0 0 1 3.273 2.413h-1.09a2.1 2.1 0 0 0-2.004-1.461c-.948 0-1.782.637-2.031 1.552a.17.17 0 0 0 0 .1v.018a.21.21 0 0 0 .209.209h1.828a.21.21 0 0 0 .21-.21.21.21 0 0 0-.21-.208h-.664a.791.791 0 0 1 1.41.263.206.206 0 0 0 .253.148.21.21 0 0 0 .152-.253 1.21 1.21 0 0 0-2.288-.159h-.421a1.687 1.687 0 0 1 3.191.223c.004.017.014.034.02.05a.21.21 0 0 0 .2.146h4.95a.21.21 0 0 0 .208-.21v-.067q.005-.03.004-.06.001-.006-.004-.011v-1.582a.21.21 0 0 0-.209-.21.21.21 0 0 0-.209.21v1.417c-.35-.027-.57-.287-.84-.752a2.7 2.7 0 0 0-.54-.658q.28-.06.53-.267a.209.209 0 0 0-.267-.32c-.432.357-.82.138-.968.027-.287-.216-.5-.652-.334-1.023.212-.475.553-.6 1.11-.658q.107-.009.277-.043a.3.3 0 0 0 .067 0c.007 0 .665-.122 1.17.296q.497.41.584 1.316a2.8 2.8 0 0 0-.553-.182h-.007c-.691-.152-.88-.51-.93-.719a.5.5 0 0 1-.018-.155.208.208 0 1 0-.415-.037c-.033.354.193 1.083 1.28 1.32.28.06.633.198.698.303l.034.04.01.007c.01.007.02.017.03.02.003.003.01.007.013.007q.015.01.03.014l.014.003q.021.006.047.007.02 0 .037-.003.006 0 .01-.003.014-.005.034-.01h.004q.014-.006.027-.014l.003-.003c.007-.003.014-.01.017-.013q.006-.004.014-.014l.013-.013c.003-.007.01-.01.013-.017l.01-.017.01-.017q.004-.01.007-.02.004-.01.007-.02.002-.012.004-.017.002-.01.003-.024v-.003c-.003-.955-.26-1.646-.763-2.061a1.7 1.7 0 0 0-.65-.334c.08-.061.158-.132.225-.21.517-.607.52-1.5.007-2.081a.205.205 0 0 0-.293-.017.205.205 0 0 0-.017.293c.374.426.367 1.083-.014 1.536-.31.364-.9.452-1.076.472-.53.057-1.124.179-1.444.904q-.076.168-.088.371a.767.767 0 0 0-1.002.729c0 .29.162.543.402.671a1.6 1.6 0 0 0-.2.216 3.85 3.85 0 0 0-3.62-1.518 9.41 9.41 0 0 0 5.55-4.619 8.9 8.9 0 0 0 1.016-4.153v-.044a8.5 8.5 0 0 0-.644-3.168q.209.039.388.037c.873 0 1.258-.6 1.299-.671a1.3 1.3 0 0 0 .11-1.05q.005-.016.004-.037V3.286a.21.21 0 0 0-.209-.21.21.21 0 0 0-.21.21V6.48c-.353-.307-.866-.34-1.079-.34-.411.003-.668-.062-.857-.385a.59.59 0 0 1 .091-.72c.2-.202.483-.228.76-.077a.209.209 0 0 0 .202-.364c-.439-.243-.931-.182-1.259.148-.323.331-.384.82-.155 1.218.3.517.756.59 1.205.59h.017c.135 0 .57.021.82.257.323.307.408.79.195 1.147q-.001.001-.003.007c-.017.03-.419.712-1.539.354a10.5 10.5 0 0 0-1.093-1.808l-.165.125.165-.128-.067-.088c-.719-1.205.111-2.487.543-3.03l.243-.277a.208.208 0 0 0-.304-.283 3 3 0 0 0-.101.108c-.375.381-1.839 1.73-3.26 1.026l-.04-.027-.02-.014c-1.272-.685-2.527-1.08-3.725-1.18-.155-.355-.36-.625-.62-.625zm-8.509.077a.21.21 0 0 0-.205.21.21.21 0 0 0 .209.209.21.21 0 0 0 .209-.21.21.21 0 0 0-.21-.209zm16.91 0a.21.21 0 0 0-.206.21.21.21 0 0 0 .21.209.21.21 0 0 0 .209-.21.21.21 0 0 0-.21-.209zm-15.017.061c.35.017.8.385.958.543l.01.01c.159.142.318.247.463.324-.73.007-1.212-.55-1.43-.877zm13.324 0a2.6 2.6 0 0 1-.46.513q-.455.374-.97.364c.14-.074.3-.182.461-.324l.01-.01c.159-.158.608-.526.959-.543m-6.718.283c.186.071.473.945.56 1.539.017.118.027.226.027.314a.59.59 0 0 1-1.18 0 3 3 0 0 1 .03-.31c.09-.632.401-1.475.563-1.543m-8.84.313-.02.001c-.047.007-.459.071-.688.408q-.208.315-.098.76a.21.21 0 0 0 .203.158c.043 0 .435-.01.678-.314.168-.209.212-.496.135-.846a.206.206 0 0 0-.21-.167m17.727 0a.21.21 0 0 0-.213.163q-.116.532.135.847c.25.304.641.314.682.317a.21.21 0 0 0 .202-.158q.114-.445-.097-.76c-.226-.337-.641-.401-.689-.408zm-8.11.325c1.082.122 2.212.493 3.363 1.11l.044.03.023.014c.334.169.692.253 1.063.253.392 0 .8-.094 1.211-.283l-1.08 1.231a.76.76 0 0 0-.732.047 7.9 7.9 0 0 0-3.69-1.46 7 7 0 0 0-.203-.942zm-1.556.007c-.101.34-.169.695-.203.938a7.9 7.9 0 0 0-3.735 1.504.75.75 0 0 0-.712-.03L5.429 4.3q.624.28 1.211.28a2.36 2.36 0 0 0 1.066-.253c.02-.01 1.947-1.012 3.506-1.147zm-8.23.152q0 .165-.077.266a.4.4 0 0 1-.179.122q.002-.134.065-.226a.5.5 0 0 1 .192-.162zm18.071 0a.5.5 0 0 1 .193.162c.04.064.064.138.064.226a.4.4 0 0 1-.176-.122.4.4 0 0 1-.08-.266zm-10.05 1.207a.99.99 0 0 0 .79.837v.145A6.47 6.47 0 0 0 7.83 7.036l-.297-.34a.76.76 0 0 0 .037-.77 7.5 7.5 0 0 1 3.432-1.387m1.983 0a7.5 7.5 0 0 1 3.398 1.353.76.76 0 0 0 .044.746l-1.68 1.916a.205.205 0 0 0 .02.294.21.21 0 0 0 .297-.02l1.677-1.913a.75.75 0 0 0 .749-.047 7.5 7.5 0 0 1 1.96 4.15 1.01 1.01 0 0 0-.715.769l-.24.01a6.48 6.48 0 0 0-1.69-4.157.208.208 0 0 0-.307.28 6.07 6.07 0 0 1 1.569 3.63l-2.244-2.236a.208.208 0 0 0-.294.293l2.41 2.409L12 17.954l-5.938-5.938 2.389-2.389a.208.208 0 0 0-.294-.293L5.941 11.55a6.07 6.07 0 0 1 1.855-3.92l1.046 1.194c.04.048.098.071.159.071a.22.22 0 0 0 .138-.05.21.21 0 0 0 .02-.294L8.11 7.353a6.04 6.04 0 0 1 3.428-1.396L9.757 7.72a.208.208 0 0 0 .148.354q.082 0 .149-.06l1.956-1.937 1.9 1.9a.208.208 0 0 0 .293-.294l-1.727-1.727a6.03 6.03 0 0 1 2.976 1.049.21.21 0 0 0 .29-.054.21.21 0 0 0-.054-.29 6.44 6.44 0 0 0-3.468-1.134V5.38c.39-.095.705-.429.765-.84zm-7.75.17 1.013 1.156a.76.76 0 0 0-.058.73 7.9 7.9 0 0 0-2.058 4.399c-.3.047-.698.175-.998.367.118-1.78.715-3.323 1.822-4.693l.016-.023c.351-.58.439-1.242.264-1.937zm13.435.003c-.182.695-.094 1.353.257 1.936l.088.118c.765 1.023 1.663 2.605 1.835 4.575a2.5 2.5 0 0 0-.989-.354 7.9 7.9 0 0 0-2.098-4.44.75.75 0 0 0-.05-.742zm-1.622 1.167h.043c.156.01.287.121.321.27q.006.028.007.057c-.004.004 0 .01 0 .017a.35.35 0 0 1-.24.33.4.4 0 0 1-.108.018h-.033a.344.344 0 0 1-.314-.345.35.35 0 0 1 .324-.348zm-10.186.057h.023c.159 0 .294.108.334.257q.012.045.014.09a.345.345 0 0 1-.32.344h-.028a.347.347 0 0 1-.344-.344q-.001-.023.004-.046.001-.014.003-.027a.345.345 0 0 1 .314-.274m-4.045.938a.621.621 0 1 0 0 1.243.621.621 0 0 0 0-1.243m18.296 0a.621.621 0 1 0 .001 1.243.621.621 0 0 0 0-1.243zM6.46 6.918a.78.78 0 0 0 .756.054l.3.344a6.49 6.49 0 0 0-2.01 4.477l-.17-.01a1.01 1.01 0 0 0-.782-.786A7.5 7.5 0 0 1 6.46 6.918m.223.368a.2.2 0 0 0-.145.064c-.054.054-1.296 1.343-1.508 3.165a.21.21 0 0 0 .185.23h.024a.205.205 0 0 0 .206-.186c.192-1.677 1.38-2.909 1.39-2.919a.21.21 0 0 0-.004-.293.2.2 0 0 0-.148-.06zm10.65.002a.208.208 0 0 0-.15.353c.013.013 1.2 1.244 1.393 2.921a.21.21 0 0 0 .206.186h.023a.21.21 0 0 0 .183-.233c-.21-1.822-1.455-3.111-1.509-3.165a.21.21 0 0 0-.146-.062m-14.516.005c.11 0 .202.09.202.202a.203.203 0 0 1-.202.203.203.203 0 0 1-.203-.203c0-.111.091-.202.203-.202m18.296 0c.112 0 .203.09.203.202a.203.203 0 0 1-.203.203.2.2 0 0 1-.202-.203c0-.111.09-.202.202-.202M1.741 9.026a.206.206 0 0 0-.22.207v3.802a.2.2 0 0 0 .206.206.21.21 0 0 0 .209-.21V9.628c.337.156.668.145.688.145a.205.205 0 0 0 .2-.215.205.205 0 0 0-.217-.2c-.003 0-.455.01-.728-.27a.2.2 0 0 0-.138-.061zm20.5 0a.2.2 0 0 0-.14.062c-.273.28-.721.27-.728.27h-.007a.21.21 0 0 0-.209.199.21.21 0 0 0 .2.215c.02 0 .35.01.687-.145v3.405c0 .114.095.209.21.209a.21.21 0 0 0 .209-.21V9.234a.21.21 0 0 0-.132-.193.2.2 0 0 0-.09-.014zm-10.234.824q-.734 0-1.184.483-.425.451-.449 1.18l-.003.102.003.948h-.003q.001.804.452 1.285.45.482 1.184.483.617 0 1.026-.297a1.08 1.08 0 0 0 .448-.719l.01-1.06c.308-.074.726-.242.989-.64a.173.173 0 0 0-.044-.257.185.185 0 0 0-.256.05c-.334.504-1.043.53-1.08.53h-.017c-.874 0-1.208.746-1.221.777a.186.186 0 0 0 .169.26c.07 0 .138-.041.168-.112.004-.007.233-.52.824-.553v.954a.67.67 0 0 1-.294.49q-.27.188-.712.189c-.35 0-.638-.122-.85-.361q-.324-.36-.324-1.02l.003-1.052q.024-.584.32-.914.325-.36.851-.361.442 0 .712.189.27.186.297.52v.023a.233.233 0 0 0 .466 0v-.024a1.08 1.08 0 0 0-.46-.796q-.408-.299-1.025-.297m7.706 1.542q.091.001.189.017c.455.074.968.381.978.567v.01c-.006.189-.523.496-.978.57a1 1 0 0 1-.189.017.59.59 0 0 1-.59-.59.59.59 0 0 1 .59-.591m-15.361.003a.59.59 0 0 1 .59.59.59.59 0 0 1-.59.591q-.119 0-.257-.03c-.428-.091-.971-.361-.978-.557v-.01c.007-.196.55-.466.978-.553q.143-.03.257-.03zm.981.807.173.01a6.49 6.49 0 0 0 2.405 4.852 7.7 7.7 0 0 0-1.613-.193 7.5 7.5 0 0 1-1.744-3.903 1.01 1.01 0 0 0 .78-.766zm13.402 0c.08.36.354.65.711.749a7.5 7.5 0 0 1-1.747 3.92c-.462 0-.999.054-1.606.186a6.49 6.49 0 0 0 2.399-4.845zm-12.798.276 5.598 5.598a6.09 6.09 0 0 1-5.598-5.598m12.123 0a6.09 6.09 0 0 1-3.533 5.065c-.135.054-.23.097-.276.118-.56.222-1.16.367-1.788.415zM3.137 12.6c.3.196.702.324.999.371a7.9 7.9 0 0 0 1.643 3.92 5 5 0 0 0-1.006.196A8.54 8.54 0 0 1 3.137 12.6m17.723.023a8.5 8.5 0 0 1-.948 3.354q-.305.582-.692 1.117a4.8 4.8 0 0 0-1.002-.2 7.94 7.94 0 0 0 1.643-3.913c.29-.034.692-.158 1-.358zm1.407.878a.21.21 0 0 0-.21.209.21.21 0 0 0 .21.21.21.21 0 0 0 .21-.21.21.21 0 0 0-.21-.21zm-20.55.01a.21.21 0 0 0-.206.209.21.21 0 0 0 .209.21.21.21 0 0 0 .21-.21.21.21 0 0 0-.21-.21h-.004zm20.236.61a.21.21 0 0 0-.209.21c0 .114.095.209.21.209h.333a.21.21 0 0 0 .21-.21.21.21 0 0 0-.21-.208zM1.7 14.129a.21.21 0 0 0-.21.21c0 .114.095.209.21.209h.334a.21.21 0 0 0 .209-.21.21.21 0 0 0-.21-.209zm20.074.59a.21.21 0 0 0-.209.21.21.21 0 0 0 .21.209h.512a.21.21 0 0 0 .21-.21.21.21 0 0 0-.21-.208zM1.7 14.723a.21.21 0 0 0-.21.21c0 .117.095.208.21.208h.513a.21.21 0 0 0 .209-.209.21.21 0 0 0-.21-.209zm19.835.59a.21.21 0 0 0-.21.21c0 .114.095.209.21.209h.752a.21.21 0 0 0 .21-.21.21.21 0 0 0-.21-.209zM1.7 15.32a.21.21 0 0 0-.21.21c0 .114.095.209.21.209h.752a.21.21 0 0 0 .21-.21.21.21 0 0 0-.21-.209zm19.538.59a.21.21 0 0 0-.21.21c0 .114.095.209.21.209h1.05a.21.21 0 0 0 .209-.21.21.21 0 0 0-.21-.208zM1.7 15.917a.21.21 0 0 0-.21.21c0 .114.095.209.21.209h1.05a.21.21 0 0 0 .208-.21.21.21 0 0 0-.209-.209zm19.238.587a.21.21 0 0 0-.21.21c0 .114.095.209.21.209h1.35a.21.21 0 0 0 .209-.21.21.21 0 0 0-.21-.209zM1.7 16.51a.21.21 0 0 0-.21.21c0 .117.095.208.21.208h1.35a.21.21 0 0 0 .209-.209.21.21 0 0 0-.21-.209zm18.877.584a.21.21 0 0 0-.21.209c0 .115.095.21.21.21h.52a.21.21 0 0 0 .209-.21.21.21 0 0 0-.21-.21zm-17.686.01a.21.21 0 0 0-.21.21.21.21 0 0 0 .21.208h.52a.21.21 0 0 0 .209-.209.21.21 0 0 0-.21-.209zm14.891.177c.386.005.78.05 1.162.157a9 9 0 0 1-.554.62c-.283-.077-1.005-.225-1.98-.12-1.06.114-2.618.566-4.21 2.037v-.368a.21.21 0 0 0-.21-.209.21.21 0 0 0-.209.21v.347c-1.582-1.454-3.134-1.903-4.187-2.018-.999-.108-1.73.054-1.997.128a10 10 0 0 1-.523-.587q-.015-.018-.03-.037c1.015-.28 2.125-.131 2.904.054.942.226 1.63.554 1.637.557l.003-.007a6.5 6.5 0 0 0 4.808.004l.02-.01c.088-.038.179-.075.263-.115a9 9 0 0 1 1.35-.432 7.2 7.2 0 0 1 1.753-.211m2.322.407a.21.21 0 0 0-.209.209.21.21 0 0 0 .21.209h1.288c.115 0 .21-.091.21-.21a.21.21 0 0 0-.21-.208zm-17.51.01a.21.21 0 0 0-.21.209c0 .115.095.21.21.21h1.289a.21.21 0 0 0 .209-.21.21.21 0 0 0-.21-.21zm16.974.587a.21.21 0 0 0-.21.209c0 .115.095.21.21.21h1.009a.21.21 0 0 0 .209-.21.21.21 0 0 0-.21-.21zm1.855 0a.21.21 0 0 0-.205.209.21.21 0 0 0 .209.21.21.21 0 0 0 .21-.21.21.21 0 0 0-.21-.21zm-18.86.007a.21.21 0 0 0-.209.209.21.21 0 0 0 .21.209.21.21 0 0 0 .209-.21.21.21 0 0 0-.21-.208m.847 0a.21.21 0 0 0-.209.209c0 .114.095.209.21.209h1.008a.21.21 0 0 0 .21-.21.21.21 0 0 0-.21-.208zm3.547.033q.289 0 .623.037c1.873.21 3.31 1.28 4.211 2.177v.61a1 1 0 0 0-.101.064 7 7 0 0 0-.867-.924c-.85-.753-2.281-1.603-4.258-1.367v.004a9 9 0 0 1-.604-.51 5 5 0 0 1 .996-.09zm10.096.002c.416-.002.755.042.987.086a8 8 0 0 1-.601.506c-1.97-.23-3.394.618-4.244 1.367a7 7 0 0 0-.878.94c-.04-.026-.077-.053-.11-.07v-.594c1.595-1.602 3.18-2.081 4.233-2.2q.329-.035.613-.035m1.86.555a.21.21 0 0 0-.209.21.21.21 0 0 0 .21.208h.573a.21.21 0 0 0 .21-.209.21.21 0 0 0-.21-.209zm1.171 0a.21.21 0 0 0-.209.21.21.21 0 0 0 .21.208.21.21 0 0 0 .208-.209.21.21 0 0 0-.209-.209m-16.181.007a.21.21 0 0 0-.206.209.21.21 0 0 0 .21.21.21.21 0 0 0 .208-.21.21.21 0 0 0-.209-.21zm.597 0a.21.21 0 0 0-.21.209c0 .115.095.21.21.21h.574a.21.21 0 0 0 .209-.21.21.21 0 0 0-.21-.21zm2.71.41c1.225-.008 2.339.424 3.326 1.29.35.307.628.624.837.898a1.3 1.3 0 0 0-.172.236 5.3 5.3 0 0 0-1.259-1.174l.004-.01a.1.1 0 0 0-.03-.007 5 5 0 0 0-2.022-.76 9 9 0 0 1-.803-.472zm9.581 0 .118.001a9 9 0 0 1-.81.476 5.03 5.03 0 0 0-3.066 1.69 5 5 0 0 0-.23.28 1.6 1.6 0 0 0-.168-.24c.209-.272.492-.6.85-.913.98-.863 2.09-1.296 3.306-1.294m-11.727 1.77a.347.347 0 1 1 0 .693.347.347 0 0 1 0-.694zm13.856 0a.347.347 0 1 1 .001.693.347.347 0 0 1 0-.694zm-6.93.445h.004q.033.02.077.05a1.2 1.2 0 0 1 .307.294.8.8 0 0 1 .139.32c.037.247-.068.517-.307.81a3 3 0 0 1-.213.226l-.003.003-.004.003v-.007q-.012-.01-.024-.023a2 2 0 0 1-.178-.193q-.372-.441-.317-.816.003-.03.013-.061a.8.8 0 0 1 .138-.283q.078-.1.166-.176.076-.065.145-.111.03-.02.054-.034.002 0 .003-.003zm.004 1.703c.003-.003 0-.003 0-.007zm0-1.116h.003zm7.625 0q.177 0 .354.05c.459.135.783.638.87.79.108.189.253.438.466.634h-2.331a4 4 0 0 0-.372-.894c.2-.358.595-.577 1.013-.58m-15.125.038c.381.005.713.19.9.512a4 4 0 0 0-.388.924H2.81a2.9 2.9 0 0 0 .418-.59c.088-.152.412-.658.87-.79q.204-.06.396-.056"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/h3.svg���������������������������������������0000664�0000000�0000000�00000005113�14753064456�0024135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.236 6.105c-.099-.045-.256-.084-.373-.173-.485-.375-.96-.768-1.442-1.148-.172-.135-.195-.279-.089-.468.31-.558.594-1.133.924-1.677a1 1 0 0 1 .503-.395 39 39 0 0 1 2.4-.712.97.97 0 0 1 .63.084c.523.269 1.024.582 1.532.883.265.157.291.233.182.522-.216.566-.44 1.127-.647 1.697a.87.87 0 0 1-.609.557c-.88.26-1.76.512-2.641.765-.101.026-.207.036-.37.065m-6.106 4.93c-.132-.084-.295-.144-.392-.259-.424-.5-.828-1.017-1.245-1.524-.139-.167-.123-.34-.026-.501.464-.754.922-1.51 1.415-2.246.113-.168.337-.298.537-.363.817-.263 1.645-.494 2.472-.735.258-.076.49-.048.708.143.441.39.894.77 1.351 1.145.192.155.228.328.127.542-.373.783-.727 1.577-1.133 2.344a1.1 1.1 0 0 1-.575.497c-1.012.325-2.04.602-3.063.893-.046.014-.098.012-.146.017zm14.928-9.188c.162.046.337.072.487.144q1.074.515 2.137 1.049c.268.133.41.282.33.644-.137.614-.231 1.239-.328 1.861-.048.307-.216.497-.496.579q-1.578.461-3.16.901c-.282.079-.552.009-.795-.152L13.17 5.496c-.197-.132-.265-.296-.18-.527.228-.623.433-1.252.68-1.866a.71.71 0 0 1 .387-.375c.926-.297 1.863-.564 2.797-.838.062-.019.13-.012.195-.017q.006-.013.009-.026M9.653 12.65c-.2-.11-.435-.185-.596-.337-.609-.573-1.192-1.176-1.792-1.757-.217-.212-.267-.438-.144-.71.36-.79.7-1.59 1.088-2.366a.98.98 0 0 1 .523-.445c.943-.306 1.898-.573 2.85-.841a.86.86 0 0 1 .753.125q.997.697 1.995 1.396c.313.219.37.384.266.757-.232.828-.472 1.654-.7 2.482a.93.93 0 0 1-.677.681 366 366 0 0 1-3.236.915c-.094.026-.193.028-.29.041zM0 16.098c.09-.23.152-.45.258-.647.49-.917.992-1.827 1.489-2.74.184-.342.458-.57.832-.676q1.418-.402 2.837-.807c.357-.103.643-.027.905.258a67 67 0 0 0 1.673 1.735c.268.27.336.568.201.918-.429 1.116-.855 2.231-1.288 3.343-.166.426-.48.688-.923.807-1.105.301-2.209.61-3.314.914-.537.149-.756.063-1.05-.404-.462-.734-.929-1.468-1.386-2.205-.09-.15-.15-.318-.234-.496m23.986-6.187c-.057.95-.106 1.87-.166 2.785-.036.533-.207.735-.727.879-1.184.328-2.37.648-3.553.978-.464.129-.874.04-1.244-.258-.894-.718-1.786-1.44-2.684-2.155-.33-.264-.455-.57-.337-.992.23-.82.437-1.646.645-2.472.086-.337.298-.54.62-.635 1.007-.292 2.016-.578 3.024-.867a1.3 1.3 0 0 1 1.043.128q1.434.836 2.866 1.671c.37.22.586.519.513.938M8.16 18.325c.092-.298.156-.534.238-.765.347-.97.713-1.934 1.049-2.91.17-.495.484-.783.99-.918 1.021-.268 2.034-.564 3.05-.853.428-.122.797-.048 1.143.248.858.735 1.725 1.46 2.596 2.184.4.334.57.727.469 1.256-.245 1.286-.46 2.58-.693 3.869-.089.49-.38.807-.862.937-1.343.361-2.687.724-4.034 1.075-.487.126-.882-.045-1.195-.433q-.858-1.06-1.721-2.12c-.243-.299-.506-.585-.722-.901-.142-.21-.216-.464-.308-.669z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/habr.svg�������������������������������������0000664�0000000�0000000�00000034340�14753064456�0024543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m1.14 9.295.17.253c-.34-.01-.696-.043-.764-.189q0-.01.004-.021c.19-.05.353-.053.59-.043m1.806.77.082.25-.192.008.046-.256.064-.003zM3.6 11.89c-.17.156-.301.26-.402.497-.14-.115-.213-.343-.258-.598-.05-.278-.066-.587-.104-.818l.012-.118.197-.014.502.95.053.1zm-.254-2.342.077-.512.065-.004q-.072.258-.142.516m-.137-2.322.9.244-.004.04c-.419.31-.806.446-1.014 1.006L3.17 7.27zm.84-1.29c-.058.58.024.836.125 1.196.16.114.224.183.172.352-.27-.134-.556-.274-.97-.252l-.03-.035c.116-.457.342-.738.517-1.1l.187-.162zm1.294-.772.039-.003c-.124.428-.174 1.415-.391 1.807-.513-.243-.503-1.296.071-1.712l.28-.092zm-.478 3.17.432.469c-.17.522-.491.915-.627 1.52l-.255-.02c-.218-.609.327-1.601.42-2.045l.4.046q.074.187.147.376l-.517-.347zM6.047 5.16c-.044.507.068.77.098 1.162q-.381.194-.763.387a5.3 5.3 0 0 1 .373-1.527zm.296-.77.057-.004-.086.247-.169.011.13-.153zM6.4 6.755l-.764.47c.016-.284.378-.667.681-.773l.07.038zm.51-1.778q-.07.393-.138.785l-.143.09-.076.083c-.138-.194-.173-.67-.143-1.032zm.508-.59q0 .014-.003.026L7.22 4.6c-.13.05-.146.048-.31.042q.033-.127.068-.255zm.51-1.032L7.7 3.87l-.79-.057.003-.042c.325-.15.61-.328 1.014-.417zm-.412 1.34.084-.05.073.258-.255-.05zm.666.763c-.303.118-.722.085-.965.22l-.053-.31.158-.207q.386.15.77.303zm-.651.464-.346.013q-.011-.054-.021-.109c.243-.099.651-.108 1.018-.149l-.387.213zm.905 0c-.291.073-.57.33-.761.53-.037-.234.412-.646.627-.775.095.085.105.076.134.245m.51-3.083-.004.04-.306.185-.454.033.004-.04zm-.412.774-.098-.145c.23-.193.737-.087 1.019-.058zm2.278-.76c.425.035.814.135 1.11.32L12 3.168l-.047.066-.407.12q-.368-.052-.734-.105L9.2 3.02l.004-.033a5.4 5.4 0 0 1 1.608-.133zm1.693-.136-.09.122a1.23 1.23 0 0 1-.67-.258l.764.097zm1.356.954.211-.08.219.188c-.03.215-.237.391-.396.6l-.122.008c-.332-.55-.751-1.151-1.486-1.363l-.032-.065.297-.12c.499.174.915.438 1.378.59.06.145.041.096-.07.242zm.614 1.223-.058-.057-.126.009.21-.2zm.225 2.848c.344.298.432.73.289 1.29q-.221-.498-.444-.997.074-.111.146-.222.004-.036.009-.071m.1-2.32-.004.048-.181.207-.07-.137c.109-.195.03-.09.173-.11zm.212-.003.806.299-.007.08q-.102.07-.204.137l-.807-.298.007-.081zm1.57 1.033-.447-.297-.062-.12c.194-.12.166-.114.371-.074q.068.246.138.49zm.254-.098-.09.098c-.108-.056-.127-.127-.164-.259l.233.102zm-.19-.739-.064.005q.105-.1.212-.2-.076.098-.148.195m1.209 1.298-.125.055-.681-.383-.213-.29c.353-.26.366.042.699.207zm.254.228-.254-.093.153-.08zm-.31.416c.092.185.092.133.31.105L17.718 8l-.373-.712.005-.044c.275-.059.363.04.632.08l.103.166-.285.067zm.056.463.509-.278c-.102.23-.235.348-.392.516zm1.018.985c-.138.119-.228.157-.489.179l.21.023-.004.037-.717.304-.018-.92.494-.585.09-.043zm-.255-1.412c1.406-.392 1.134.354.507.923q-.255-.46-.507-.923m1.273.149c-.518 2.434-.618 2.567-2.45 3.613a3 3 0 0 0-.096-.145l.065-.272c1.195-.34 1.874-.966 1.803-2.383l.599-.77zm.062 0q-.03-.126-.062-.252l.19-.006zm-3.117 2.367.018-.269.016-.23.176-.059q.013 0 .025-.003c.05.305 0 .53-.1.775-.086-.055-.103-.078-.135-.214m-1.018 2.258.004-.045.334-.799.07-.168.588.04q.013.066.018.128c.026.304-.079.547-.187.864zm.255 1.036.007-.4.01-.1.43.032.062-.005q-.149.244-.294.49zm-.252-1.67.026-.013.203-.105.023-.002-.03.107-.119.409-.106-.364zm-.397 1.285-.115-.115c.112.078.039.002.115.115m-.624-.307c.143-.09.298-.062.51-.06l-.063.207c-.175.07-.2.044-.397.023zm.312.966.197.466q-.228.154-.457.309c-.136-.187.012-.71.26-.775m-.503-1.62-.064.005.084-.191zm.733.072-.033-.021.112-.236.037-.001.106.248zm1.763-3.355-.014-.087c.067-.082.11-.133.225-.17l.03.152q-.075.049-.149.099zm-.014.63c-.046.061-.128.095-.186.144l-.069-1.29zm-.467 1.73c.168-.094.192-.007.212.22h-.509l.009-.08zm-.25-.713.115-.098.093.166-.043.092-.212-.025zm-.047.684-.265.25-.173-.029-.07.007q.06-.119.123-.236zm-.96-.147c-.106-.074-.03-.064-.05-.12zm.802-1.152-.86-.446c.04-.59.112-1.268.054-1.876.663.24 1.258 1.319.806 2.322m-.605 0c.211.112.2.214.493.304.051.191-.027.267-.149.47l-.312-.012c-.064-.34.006-.535-.032-.762m.058 1.669c-.107-.074-.03-.064-.05-.12zm1.723-2.484.003-.048.23-.169c.04.264.025.704-.035 1.032-.136-.106-.161-.554-.198-.815m0 .815q.078-.129.154-.258l-.09.254zm1.485-.771.043-.003c.012.989-.598 1.169-1.4 1.54l-.128.009.5-1.036zm-1.51-1.932q.013.039.024.077l-.063.046-.191-.258zm-.23.43.007-.045.056-.004.192.258c-.148-.07-.172-.088-.255-.21zm.254.66-.343.323-.737-1.07-.956-.83.21-.164c.463.2 1.273.581 1.436 1.057.053.155-.13.283-.006.412.148.154.296.044.397.271zm-2.148 1.613.078.031.034.744-.119-.028c-.112-.083-.19-.467-.088-.634zm-.564 1.294.082-.003.085.202-.13.05-.125.006q.046-.128.088-.255m-.232 4.126-.11-.377q.235-.067.47-.137l.04-.002-.005.035-.395.48zm-.365-1.032c.047-.152.08-.175.165-.259l.07.028.02.066-.157.154-.098.01zm.12.258-.12-.132.255-.126-.066.253zm-.268 1.17q-.053-.042-.106-.087l.078-.005.393-.304.038.31-.301.206zm.02 2.956c-.613.026-.98-.13-1.48-.174l-.573-1.133-.11-.114c.962-.114 1.567-.578 2.28-.899.252.24.823 1.462.32 2.003-.12.185-.255.204-.438.317zm-2.632-1.273.23-.015c.347.233.583.65.749 1.033l-1.019-.295c.076-.258.108-.52.04-.723m-.732-.974L11.691 16l1.804.176.032.091c-.537.242-1.148.446-1.764.758-.667.053-.828-.196-1.29-.36l.071-.334zm-.071 1.216.023-.224.439-.033c.036.195.074.304.02.516l-.482-.26zm-.51.404.171-.094c.21-.139.367.046.593.119l-.09.088-.673-.113zm.495-.403-.166-.075-.074-.183.255.016zm-.749 0 .255.219c0 .135-.012.12-.043.297zm-.66-.967c.239-.073.557-.057.915-.065l-.333.258-.685-.067zM8.436 3.648c.473-.452 1.659-.317 1.956-.03l.08-.007c-.395.369-1.007.411-1.383.776-.295-.196-.539-.322-.653-.739m2.6.739.2.227c-.178.01-.365.021-.552.037-.421.036-.837.099-1.128.25l-.038.002-.063-.099a3.64 3.64 0 0 1 1.544-.414zm.992-1.29c.329.33.82.526.99 1.032-.69-.321-1.752-.316-2.29-.827.474.101.878.063 1.3-.205m.227 1.806.944.13.074-.006-.757.65c-.12-.239-.148-.563-.261-.774m1.213 1.104-.195-.03.254-.042-.06.072zm-.195-.617.233-.229.021.258-.169-.037zm.462 8.54-.112.005-.096-.09.074-.097.18-.07-.046.253zm-.203.472q.046-.054.094-.108l.008-.1.148.235-.255.023zm-.101.824-.158-.19.509-.068-.243.25zm.096.774-.509-.061.36-.197zm-.357-.728.103.098-.369.094-.395.02.55-.258zM11.746 4.129c.297.008.611.083.763.258-.205-.02-.574.013-.667-.145zm.258 1.032c.145.127.196.277.17.516-.224-.077-.166-.322-.17-.516m.25 1.627.009-.044c.507-.11.616.066.385.224-.2-.028-.29-.103-.393-.18zm.653 6.631.111.028-.004.036-.25.194.104-.255zm-.14-6.294.19-.157.061.258-.254-.056zm.76 6.9-.615.161-.148.007q0-.012.004-.025c.23-.046.378-.122.514-.233l.216.04zm-.439-.606-.07-.143.175-.115.08.043-.1.208zm-1.597 1.785.303-.236.938.08.032.07-.634.366c-.235-.039-.438-.143-.56-.286zm-.471.022.47.258-.763-.135q.146-.06.293-.123m-.038.527-.003.062-.145.08-.107.014.004-.062c.111-.147.092-.098.25-.094zM9.782 5.25l-.073-.077c.253-.138.652-.204 1.044-.235.323-.027.641-.03.869-.035l.124.774c-.333-.036-.65-.08-.993-.095a5 5 0 0 0-.888.032zm.374 10.355.062.11-.06.231-.703.054c.075-.23.187-.341.308-.516zm-.868-.895c-.32-.018-.758-.252-.852-.516l1.019.259zm.358-.014-.191.014.006-.062.212-.196q-.014.121-.027.244m-.7-9.437.31-.098.199.25-.21.008zm-.004 11.08q-.025.084-.048.17l-.074.007-.129-.258.255.026zm.141-1.113.594.12.032.08-.461.574-.557-.082zm4.444-8.088.115-.169.042-.001.32.08.032.046-.357.132zm.689-.834-.18-.11c.183.067.078-.009.18.11m-.058 1.18-.122-.104.255-.154zm-.122 1.806.396.098c.107.042.104.053.113.16-.17-.065-.454-.11-.509-.258m.04-.703.054-.07.161.257-.255-.05zm-5.157 8.491.027.068-.343.131-.167.013.004-.035.117-.183c.162-.075.166-.026.362.006m-.737-12.95c.222.166.28.37.245 1.033-.146-.187-.235-.584-.245-1.032zm.146-.515L8.31 3.8l-.127.009.146-.196zm-.146.258q-.01.093-.02.186l-.235-.043.194-.139zm0 14.968.126-1.314.892-.235-.938 1.501zm.063-3.532.137-.081c.125.148.013.361-.105.516-.098-.092-.109-.15-.083-.359zm-.827-.126.293-.471.47.276q-.241.378-.485.756c-.146-.13-.236-.321-.278-.56zm0 2.021.47-.428.221.02.073.12q-.03.189-.056.376zm-.763-.35.56-.336.426.067.032.059-.449.39c-.224-.023-.373-.083-.49-.185zm-.075-.499.205-.095.088.019.036.042-.593.197-.17-.06zm-.689-.242.15-.363c.278-.036.344.101.553.188l.06.092-.311.213-.253.017zm-.51 1.059.371-.654c.246 0 .276.02.377.15.045.076.006.035-.092.052l-.023.225.386.06c-.076.189-.088.164-.202.284-.38.02-.551-.052-.816-.117zm-.428-.912.647.195.036.077-.415.502-.603-.198zM2.46 15.56l.008-.077.361.278.031.074c-.751.58.398 2.47 1.705 1.245l.562.226c-.216.385-.587.537-.978.755-.935.078-2.244-1.449-1.69-2.501zm.872.264.014.175q-.106-.079-.208-.157l-.047-.101.24.083zm1.286 1.096-.465.36c-.916.096-1.287-.538-1.317-1.317l.179-.216.078-.006c.461.363.869.917 1.495 1.1zm-.887-3.76c-.083-.06-.088-.09-.13-.192l.174-.662.203-.178.131.192zm-.13.223.401-.949.082-.048c.185.326.453.474.534.917l-.604.631a1.2 1.2 0 0 1-.414-.55zm.763.79.51-.497.253.517zm1.272-5.215c-.241.515-.562.865-.754 1.364-.084-.453.422-1.104.585-1.504l.078-.045zm0-1.42c.379-.117.633-.331.904-.571l.115.344-.322.43-.697-.202zm1.273.027-.138.176-.116-.02.002-.028.232-.21zm-.2-1.112.04-.002.16.337-.06.179c-.233-.122-.224-.267-.14-.514m-.048 7.481.235.169-.241-.106zm-.004.259.252.109-.004.03-.54.377c-.155-.07-.174-.209-.22-.36l.005-.032zm-.753-.517.242.098-.13.075-.125.014zm-.013-5.16c.306.086.209.028.222.257-.14-.082-.15-.121-.222-.258zm0 4.609.021-.223c.119.083.16.132.234.258zm.51-3.223c-.096.123-.092.09-.255.161l.111-.258zm0-1.038-.16.167c-.16-.09-.085-.054-.013-.221l.095-.037zm-.021-.439-.234-.168c.18.069.138.027.234.168m-.489 4.735.255.203c-.13-.003-.2-.031-.255-.203m.764-.01-.104.01-.089-.164-.062-.08.138-.014q.058.125.117.248m-.14-4.778L6.4 8.258c.112.078.038.002.114.115zm.015 4.25-.13-.27.055-.222.032-.002.168.516zm-.667 3.003.028.034L5.8 16a.7.7 0 0 1-.418-.516zM5.127 16l.255.226c-.163-.072-.173-.069-.255-.226m.44-2.288.03.223-.215-.258zm-.252 1.207-.188-.467c.223.085.397.34.51.516zm.2-4.594.063-.002-.186.258c-.03-.064.007-.125.11-.2zm-.133 2.218-.051.102-.146-.113-.058-.123.2-.022zM3.6 14.71c.51.332 1.377.64 1.527 1.29A4.2 4.2 0 0 1 3.6 14.71m1.323-.25.204.25-.509-.258zm1.864.766-.387-.39.677-.642.087.707zm.377.431.067-.168.09-.005.097.258zm.343-.947-.089-.258.185.034zm-.343-8.69.002-.023q.126-.03.252-.062l-.176.258zm-2.567 5.335-.233-.516c.299.065.25.278.233.516m-.623.258c-.218-.151-.357-.452-.374-.774.447.105.422.281.51.689zm-.263-1.347c-.325-.307.148-1.535.356-1.818.11-.139.248-.136.43-.19l.121.031c-.306.542-.512 1.28-.585 2.034zm-.475 4.186.155.261-.139.325-.08.085c.114.016.14-.082.31-.221.33.535.834 1.047 1.39 1.338l-.303.534-.92-.592c-.105-.195.04-.419-.129-.538-.153-.108-.35.048-.506.001l-.432-.396c.127-.284.249-.562.5-.707zm-.88-2.846a7 7 0 0 1 .149-.764l.034-.003.133.767.07.4q.3.837.604 1.671c-.484-.264-.783-.875-.74-1.697-.116.265-.02.682.018.916-.297-.252-.335-.753-.269-1.29zm-.442.265a1 1 0 0 1-.086-.31 2 2 0 0 1 .004-.435l.044-.092.197-.195-.111.721-.048.31zm17.722 2.58-.509-.196.494-.061.015.258zm-13.47 4.2.133-.07-.154.257.02-.186zM2.327 9.807l-.217-.02c-.27-.089-.523-.404-.546-.754.413.037.553.233.757.472q.004.15.006.302m-.03-.021c.03-.557-.395-.905-.947-.89.094-.782.774-1.182 1.38-1.445l.117-.009c-.101.982-.024 1.828-.391 2.678-.271.626-1.232.614-1.18 1.58l.007.08c.137 1.284 1.533 1.545 1.726 2.674-2.07 1.053.453 5.478 2.09 2.879.294.042.555.175.92.047.17-.094.203-.17.269-.366l.585.303.03.074c-.536.416-.914.987-1.49 1.377l.055-.158-.15-.027-.083.045-.075.35c.329.336 1.326-.879 1.618-1.117-.165.577-.573.874-.8 1.402l.07.072c.43-.308.957-1.18 1.037-1.843l.644.107c-.807 1.091-2.88 3.491-3.97 4.132.166-.521.43-.919.564-1.347l-.078.006-.07-.072c-.265.522-.702.889-.78 1.593a.7.7 0 0 0 .174.179c1.296-.216 3.46-3.473 4.494-4.363-.28 2.81-1.786 3.248-3.092 4.95 1.187-.592 1.907-2.102 2.922-2.94C7.781 20.91 7.502 23.533 6.8 24l.116-.009c.788-.49.834-2.505 1.097-3.535l.112-1.083 1.125-1.58.082-.045c.126.395.696.824 1.313.709l.443-.186 1.112.416c.146 1.6.09 2.497-.923 3.715 1.035-.529 1.415-2.567 1.07-3.649 2.407.279 2.31-.533 1.854-2.286l.423.007c-.078-.117-.289-.03-.45-.12-.073-.047-.059-.038-.104-.108.572-.645 1.95-.004 1.66 1.067.396-.888-.479-1.678-1.322-1.36.36-.427.796-.778 1.024-1.343l.082-.044 1.98 2.08.117-.009.09-.122q-.945-1.12-1.887-2.24l.202-.092a.41.41 0 0 1 .349-.121l-.1-.05c1.011.101 2.303.944 3.358.672.097-.169.102-.26.043-.425 1.124.028 3.146-.348 3.79-.894-1.73.363-3.678.486-5.266.274l-1.407-.165-.079.006.379-.68c1.16-.022 4.202-.051 4.817-.779l-.136-.182-.53-.076a.4.4 0 0 0-.06.197l.42.045c-.912.23-3.452.715-4.281.432-.087-.106-.023-.474-.019-.739a1 1 0 0 0-.006-.142c1.192-.356 2.077-1.158 2.44-2.368.207-.693.07-1.603.518-2.035.286.025.344.146.554.228-.111-.154-.27-.24-.469-.31l-.373.257c-.341.132-.698-.213-1.277.056-.47-.402-.735-1.037-1.37-1.28l-.065-.11.77-.749c-.252.211-.509.46-.766.71l-.516-.231-.03-.075c.588-.416 1.11-.57 1.779-.438q.047.093.096.185c-.031.053-.059.068-.086.083l-.225-.06c.097.057.198.075.299.093l.085-.083.013-.116c-.146-.13-.191-.224-.478-.234l.137-.202c-.328.226-.994.286-1.32.482l.754-.594.09-.121-1.395.832c-.298-.02-.615-.16-.776-.327l-.077.006 1.656-1.12-.027-.113q-.943.549-1.884 1.099l-.602-.148.056-.541 4.317-3.39.077-.006-.061-.149c-.16-.076-.817.457-1.065.616-.956.613-1.801 1.376-2.741 1.93.388-.493 1.098-.984 1.216-1.702l-.19-.024-.296.252.322-.14c-.208.633-1.15 1.763-1.682 2.121l-.062-.149c.346-.582.687-1.365.527-2.112l-.29-.17-.311.023c.199.079.334.098.48.195.093.724-.263 1.214-.455 1.8l-.082.044c-.128-.237-.12-.351-.383-.394l-.023-.152.18-.244.124-.086c.042.08.044.051.057.188a.4.4 0 0 0 .059-.196l-.147-.066-.389.412c-.325-.217-.683-.445-1.14-.53.259-.537 1.046-1.4.64-2.081-.496-.828-2.189.126-2.809.783a1.2 1.2 0 0 0-.186.244l.186-.144c.612-.456 2.241-1.548 2.594-.675.37.487-.339 1.424-.532 1.805-.66-.067-1.35-.13-2.06-.116a7.4 7.4 0 0 0-2.201.354c-.36.119-1.896 1.039-1.955 1.027l-.7-.678-1.464-.735-.008.077-.086.083 1.876 1.588-.286.175c-.772-.585-1.304-.94-2.453-1.239l-.194.015c.671.462 1.347.885 2.022 1.309l.135.182c-.482.203-.686.625-1.093.887-.636-.304-1.225-.58-1.996-.813l-.054.158 1.444.93.078-.006-.249.172c-.115.387-.34.836-.528 1.382-.72.586-1.653.551-1.798 1.745-.23.063-.392.083-.602.237l-.016.155c.132.184 1.301.679 1.58.727l.172-.166zm8.54-8.256.107.02-.143-.018q-.038 0-.074.003c.113-.21.445-.262.764-.239l-.022.152-.624.031-.008.05zm.446.277.3-.098c.13-.216.204-.445.138-.654-.309-.061-.487.014-.776.136l-.157.257-.06.1a1 1 0 0 0 .06.06c.098.08.216.108.433.09.06.102-.01.057-.117.085zm7.403 2.323-.322.06.198-.014.227.098-.344.63c.177-.209.353-.357.428-.674zm-1.85 10.065c-.08-.143-.167-.237-.254-.259.077.073.166.159.254.259m-1.018 3.096-.254.148.195-.018zm1.018-3.096c.259.292.453.852.397 1.29.294-.635-.041-1.031-.397-1.29"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hackaday.svg���������������������������������0000664�0000000�0000000�00000003712�14753064456�0025373�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 4.124q0-.305.06-.595l1.956 1.734 2.144-2.38L2.246 1.18c.259-.072.53-.114.812-.114a3.06 3.06 0 0 1 3.058 3.037v.021q0 .23-.033.45l2.385 2.112a6.7 6.7 0 0 0-2.013 2.54L3.982 7.037a3 3 0 0 1-.924.145A3.06 3.06 0 0 1 0 4.124m20.942 12.694q-.46.002-.88.129l-2.308-2.044a6.86 6.86 0 0 1-1.819 2.706l1.993 1.765a3 3 0 0 0-.044.502 3.06 3.06 0 0 0 3.935 2.929l-1.992-1.77 2.14-2.365 1.981 1.76q.051-.27.052-.554v-.026a3.057 3.057 0 0 0-3.058-3.032m-3.397-7.592 2.473-2.189c.292.093.601.145.924.145A3.06 3.06 0 0 0 23.94 3.53l-1.956 1.734-2.144-2.38 1.914-1.703a3 3 0 0 0-.812-.114 3.06 3.06 0 0 0-3.058 3.037v.021q0 .23.033.45l-2.385 2.112a6.7 6.7 0 0 1 2.013 2.54zm-11.3 5.677-2.307 2.044A3.057 3.057 0 0 0 0 19.85v.026q0 .284.052.554l1.982-1.76 2.14 2.365-1.993 1.77a3.06 3.06 0 0 0 3.935-2.929 3 3 0 0 0-.044-.502l1.993-1.765a6.86 6.86 0 0 1-1.82-2.706m8.971 2.657a1.076 1.076 0 1 1-1.961.424h-.192a1.076 1.076 0 1 1-2.127 0h-.15A1.105 1.105 0 0 1 9.7 19.23c-.604 0-1.094-.5-1.094-1.115 0-.21.057-.405.156-.572-1.493-1.142-2.474-3.051-2.474-5.213 0-3.497 2.559-6.332 5.713-6.332s5.713 2.835 5.713 6.332c0 2.173-.991 4.091-2.497 5.231zm-4.194-5.914a2 2 0 0 0-.559-.66 1.8 1.8 0 0 0-.918-.264 1.5 1.5 0 0 0-.319.036c-.405.05-.747.327-.983.647-.207.257-.368.569-.372.905-.032.278.024.556.075.828.066.322.293.584.55.774.119.095.29.226.44.116.1-.134.016-.33.107-.478a.5.5 0 0 1 .258-.326c.263-.132.527-.262.808-.355.228-.067.416-.219.61-.349.255-.197.424-.558.303-.874m.996 2.325c-.279-.007-.63 1.237-.574 1.78.175.72.237-.505.574-.506.323.014.275 1.255.53.504.078-.5-.224-1.77-.53-1.778m4.036-.833c.051-.272.107-.55.075-.828-.004-.336-.165-.648-.372-.905-.236-.32-.578-.596-.983-.647a1.5 1.5 0 0 0-.319-.036c-.32-.001-.644.1-.918.264-.235.171-.42.406-.559.66-.121.316.048.677.303.874.194.13.382.282.61.35.28.092.545.222.808.354a.5.5 0 0 1 .258.326c.091.147.007.344.106.478.151.11.322-.021.44-.116.258-.19.485-.452.551-.774"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hackclub.svg���������������������������������0000664�0000000�0000000�00000000472�14753064456�0025402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C2.4 0 0 2.4 0 12s2.4 12 12 12 12-2.4 12-12S21.6 0 12 0m4.5 19.51h-3.31v-6.507c0-.975-.187-1.622-.834-1.622-.712 0-1.575 1.003-1.575 2.625v5.503H7.5V4.97l3.29-.563v5.428c.713-.646 1.707-.928 2.72-.928 2.156 0 2.99 1.416 2.99 3.628z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hackerearth.svg������������������������������0000664�0000000�0000000�00000001030�14753064456�0026076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.447 20.936H5.553V19.66h12.894zM20.973 0H9.511v6.51h.104c.986-1.276 2.206-1.4 3.538-1.306 1.967.117 3.89 1.346 4.017 5.169v7.322c0 .089-.05.177-.138.177h-2.29c-.09 0-.253-.082-.253-.177V10.6c0-1.783-.58-3.115-2.341-3.115-1.282 0-2.637.892-2.637 2.77v7.417c0 .089-.008.072-.102.072h-2.29c-.09 0-.29.022-.29-.072V0H3.178c-.843 0-1.581.673-1.581 1.515v20.996c0 .843.738 1.489 1.58 1.489h17.797c.843 0 1.431-.646 1.431-1.489V1.515c0-.842-.588-1.515-1.43-1.515"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hackernoon.svg�������������������������������0000664�0000000�0000000�00000000620�14753064456�0025750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.701 0v6.223H8.85V4.654h1.576v7.842H12V4.654h1.574v1.569h3.15V0zm11.024 6.223v3.136h1.574V6.223zm1.574 3.136v4.705h1.576v-1.568h1.574v-1.568h-1.574V9.359zm0 4.705h-1.574v3.137h1.574zm-1.574 3.137h-3.15v1.569H8.85V17.2H5.7V24h11.024zm-11.024 0v-3.137H4.125v3.137zm-1.576-3.137V9.36H2.551v4.705zm0-4.705h1.576V6.223H4.125Z"/></svg>����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hackerone.svg��������������������������������0000664�0000000�0000000�00000001023�14753064456�0025556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.207 0q-.725.002-1.182.3c-.305.2-.46.463-.46.78v21.809q0 .414.476.76.472.351 1.166.351.663 0 1.168-.35.504-.346.506-.761V1.082c0-.32-.163-.577-.49-.782Q7.901.002 7.207 0m9.523 8.662q-.724-.001-1.168.3l-4.439 2.783c-.199.186-.284.469-.247.855q.052.575.524 1.09c.314.347.666.563 1.068.655q.596.134.896-.143l1.755-1.095v9.782q0 .414.461.76c.3.234.687.351 1.15.351q.695 0 1.199-.35c.337-.233.506-.484.506-.761V9.739q-.001-.48-.49-.776-.488-.303-1.215-.301"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hackerrank.svg�������������������������������0000664�0000000�0000000�00000000712�14753064456�0025734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm9.95 8.002h1.805c.061 0 .111.05.111.111v7.767c0 .061-.05.111-.11.111H9.95a.11.11 0 0 1-.111-.11v-2.87H7.894v2.87c0 .06-.05.11-.11.11H5.976a.11.11 0 0 1-.11-.11V8.112c0-.06.05-.11.11-.11h1.806c.061 0 .11.05.11.11v2.869H9.84v-2.87c0-.06.05-.11.11-.11zm2.999 0h5.778c.061 0 .111.05.111.11v7.767a.11.11 0 0 1-.11.112h-5.78a.11.11 0 0 1-.11-.11v-7.77c0-.06.05-.11.11-.11z"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hackster.svg���������������������������������0000664�0000000�0000000�00000002156�14753064456�0025433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.091 13.294c-.057.05-.247.09-.396.132l-4.778 1.306c-.15.041-.273-.052-.273-.208V13.29a.28.28 0 0 0-.283-.283H8.117a.28.28 0 0 1-.282-.282V11.29a.283.283 0 0 0-.283-.283H5.035c-.1 0-.18-.08-.18-.178 0-.058.025-.098.055-.126.056-.052.246-.093.397-.134l4.758-1.3c.15-.042.272.051.272.208v1.247c0 .156.128.283.284.283h5.24c.156 0 .282.126.282.283v1.42c0 .157.127.284.282.284h2.542a.18.18 0 0 1 .18.179.16.16 0 0 1-.056.12m-2.948 2.288a.39.39 0 0 1-.272.356l-1.954.534c-.15.042-.273-.052-.273-.208v-.728c0-.157.127-.284.283-.284h1.933c.157 0 .283.127.283.284zm-5.81 1.586a.39.39 0 0 1-.272.357l-1.953.535c-.15.04-.273-.053-.273-.209v-3.758c0-.157.127-.284.283-.284h1.933c.156 0 .283.127.283.284zM7.836 8.46a.39.39 0 0 1 .273-.357l1.952-.534c.152-.042.274.052.274.208v.729a.283.283 0 0 1-.283.283H8.118a.283.283 0 0 1-.283-.283zm5.809-1.587c0-.157.122-.316.273-.358l1.954-.533c.15-.042.272.052.272.208v3.759a.283.283 0 0 1-.283.283h-1.933a.283.283 0 0 1-.283-.283zM12 0C5.384 0 0 5.384 0 12c0 6.617 5.384 12 12 12 6.618 0 12-5.383 12-12 0-6.616-5.382-12-12-12"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hackthebox.svg�������������������������������0000664�0000000�0000000�00000001710�14753064456�0025742�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.51 6.457.001-.013a.89.89 0 0 0-.271-.638l-.027-.024q-.028-.025-.057-.048-.03-.022-.06-.04l-.029-.02-9.61-5.547a.89.89 0 0 0-.922.004L1.933 5.674l-.03.02-.023.014-.02.015a1 1 0 0 0-.147.134l-.003.003a.9.9 0 0 0-.221.584v.014l-.001.027v11.07c0 .328.18.63.469.784l9.599 5.542.023.011a1 1 0 0 0 .166.07l.04.01.072.015q.018.004.035.006a.8.8 0 0 0 .216 0q.018-.002.035-.006l.072-.014.04-.012.064-.022a1 1 0 0 0 .102-.047l.023-.011 9.599-5.542a.89.89 0 0 0 .469-.784V6.478zM5.255 6.082l6.537-3.774a.42.42 0 0 1 .418 0l6.537 3.774a.418.418 0 0 1 0 .725l-6.537 3.774a.42.42 0 0 1-.418 0L5.254 6.807a.418.418 0 0 1 0-.725m5.614 14.345a.417.417 0 0 1-.626.361l-6.524-3.766a.42.42 0 0 1-.209-.361V9.127a.417.417 0 0 1 .626-.361l6.524 3.766a.42.42 0 0 1 .209.362zm9.623-3.766a.42.42 0 0 1-.209.36l-6.524 3.767a.417.417 0 0 1-.626-.36v-7.533c0-.15.08-.287.209-.362l6.524-3.766a.417.417 0 0 1 .626.36z"/></svg>��������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hal.svg��������������������������������������0000664�0000000�0000000�00000002410�14753064456�0024364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.794 5.327c.48.485 1.118.75 1.797.755h.009a2.5 2.5 0 0 0 1.58-.553 12.1 12.1 0 0 0-3.548-3.615 2.555 2.555 0 0 0 .162 3.413m-.647.71A7.06 7.06 0 0 1 16.058.624a12 12 0 0 0-2.64-.62 9.69 9.69 0 0 0 2.834 7.933 9.92 9.92 0 0 0 7.002 2.893h.036q.358 0 .71-.027c-.09-.92-.283-1.81-.566-2.66a7.27 7.27 0 0 1-5.287-2.106m4.6 7.322a21.6 21.6 0 0 1-7.142-4.717 21.2 21.2 0 0 1-5.283-8.61 12.3 12.3 0 0 0-2.605.66 23.9 23.9 0 0 0 5.992 9.85 24.2 24.2 0 0 0 8.027 5.3q.737.299 1.487.549.486-1.242.696-2.597c-.39-.13-.786-.278-1.172-.435m-1.316 6.145L4.54 2.493a12 12 0 0 0-1.913 1.882l16.907 17.029c.7-.562 1.334-1.2 1.896-1.9zm-10.974-5.885a24.2 24.2 0 0 0-8.027-5.3q-.855-.344-1.725-.624a12 12 0 0 0-.67 2.6 21.56 21.56 0 0 1 8.53 5.224 21.24 21.24 0 0 1 5.216 8.405c.903-.135 1.77-.369 2.596-.692-.18-.553-.377-1.1-.602-1.644a23.8 23.8 0 0 0-5.318-7.969m-2.542 2.606A9.91 9.91 0 0 0 0 13.372c.103.921.314 1.806.61 2.65q.135-.005.27-.004c1.865 0 3.729.705 5.144 2.111a7.06 7.06 0 0 1 2.097 5.044c0 .081-.004.167-.004.248.844.287 1.734.48 2.65.575q.034-.404.036-.814a9.69 9.69 0 0 0-2.888-6.957m-2.538 2.61a2.55 2.55 0 0 0-3.437-.162 12.1 12.1 0 0 0 3.63 3.535c.35-.445.543-.993.548-1.568a2.52 2.52 0 0 0-.741-1.806z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/handlebarsdotjs.svg��������������������������0000664�0000000�0000000�00000001667�14753064456�0027004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.1 4.948a4 4 0 0 0-.398.014C6.32 5.15 5.373 6.375 4.802 6.9c-.572.525-1.656 1.763-2.376 1.545-.721-.217-.924-1.107-.67-1.381s.454-.225.613 0c.097.18.145.383.14.587a1.36 1.36 0 0 0 .438-.665.79.79 0 0 0-.443-1.017c-1.3-.659-2.139.514-2.26.787-.122.273-.336.707-.2 1.695.135.989.612 1.902 2.104 2.261a6.3 6.3 0 0 0 4.238-.495l4.41-1.84a5 5 0 0 1 .556-.101v9.864c0 .506.316.913.708.913s.707-.407.707-.913V8.29a5 5 0 0 1 .437.088l4.41 1.84a6.3 6.3 0 0 0 4.238.494c1.492-.36 1.969-1.272 2.105-2.26.135-.989-.08-1.423-.2-1.696-.122-.273-.962-1.446-2.261-.787a.79.79 0 0 0-.443 1.017c.076.26.229.492.437.665a1.2 1.2 0 0 1 .141-.587c.159-.225.359-.274.613 0s.051 1.164-.67 1.382c-.72.217-1.804-1.02-2.376-1.546-.571-.525-1.518-1.75-3.9-1.938A3.45 3.45 0 0 0 12 6.653a3.45 3.45 0 0 0-2.9-1.705m12.39 2.703v.004l.006.002q-.003-.003-.006-.004zm-18.98 0q-.003.003-.006.004l.006-.001z"/></svg>�������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/handm.svg������������������������������������0000664�0000000�0000000�00000003527�14753064456�0024721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.866 4.565c.871-.429 1.303-.372 1.313.061.012.565-.071 1.313-.131 1.857-.323 2.947-.864 5.356-.906 8.383 1.424-3.686 2.619-6.248 4.156-9.403.488-1.004.799-.818 1.2-.996 1.563-.695 1.622-.268 1.417.581-.758 3.15-2.695 13.068-2.992 14.595-.086.442-.566.255-.691.082-.556-.769-1.183-.781-1.112-1.293.348-2.546 1.603-8.934 1.93-10.439-1.669 3.42-3.398 7.694-4.286 10.118-.189.515-.531.477-.745.1-.3-.529-.883-.799-.979-1.424-.306-1.987.348-5.776.439-8.172-.908 2.618-2.433 7.701-3.101 9.997-.276.95-1.193.795-.949-.131 1.015-3.854 3.201-10.67 4.148-13.121.222-.576.805-.556 1.289-.795m-5.535-.474c.276.067.254.393.085.838-.499 1.314-1.19 3.04-1.981 5.076.497-.057.767-.076.767-.076.713-.088.846.269.645.648-.16.303-.353.101-1.02 1.096-.376.561-.99.709-1.332.784a183 183 0 0 0-2.557 7.188.339.339 0 0 1-.598.142c-.402-.562-.698-.58-1.01-1.034-.037-.074-.11-.173-.066-.354.229-.936.837-2.859 1.762-5.392-1.165.253-2.426.524-2.947.645a237 237 0 0 0-1.811 4.944c-.358 1.015-1.29.819-.963-.141a167 167 0 0 1 1.673-4.654c-.646-.069-.864-.525-1.225-.906-.139-.147-.443-.126-.592-.332-.267-.371-.241-.536.377-.714A62 62 0 0 1 2.97 11.2a373 373 0 0 1 2.49-6.239c.388-.951 1.387-.862 1.008.075a457 457 0 0 0-2.344 5.893 57 57 0 0 1 2.904-.576 149 149 0 0 1 2.247-5.449c.055-.126.215-.304.381-.332.525-.09 1.379-.552 1.675-.481M9.543 16.426q.123-.076.244-.178l-.183-.55q-.091.117-.179.237c-.349.479-.142.65.118.491m.465-2.275c.433-.489-.423-.693-.226.054l.04.146a7 7 0 0 0 .186-.2m.45 1.473c.429-.372.838-.003.414.624a7 7 0 0 1-.307.424q.067.192.14.381c.219.562-.357.703-.542.237l-.05-.129c-.35.31-.754.505-1.186.37-.711-.221-.892-1.222-.228-1.993.266-.309.466-.524.634-.695a14 14 0 0 1-.118-.401c-.087-.312-.164-.675.148-1.046.586-.695 1.945-.078 1.257.992a8 8 0 0 1-.561.748q.105.331.212.661a4 4 0 0 1 .187-.173"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/handshake.svg��������������������������������0000664�0000000�0000000�00000000276�14753064456�0025556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.728 0 16.49 24h-4.583l1.87-10.532-4.743 3.893L7.856 24H3.272L7.51 0h4.582L9.806 13.012l4.729-3.862L16.145 0z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/handshake_protocol.svg�����������������������0000664�0000000�0000000�00000001547�14753064456�0027501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.348 7.829-1.491-2.65 2.889.001c.077 0 .167.051.21.12l1.533 2.529zm-5.344 16.046c-.07.125-.161.125-.19.125h-2.956l4.591-8.243a.442.442 0 0 0-.384-.657l-7.825.01-1.556-2.694h11.397c.248-.017.362-.158.393-.231l1.879-3.473h3.101zm-3.91-.314-1.522-2.506c-.023-.037-.034-.128.014-.214l2.694-4.853 3.034-.004zM5.92 18.403l-1.508-2.68 1.52-2.848 1.524 2.64c-.474.891-1.213 2.283-1.536 2.888m-3.668.417a.27.27 0 0 1-.207-.12L.51 16.17h3.141l1.491 2.65-2.891-.001zM8.996.126C9.066 0 9.156 0 9.186 0h2.968L7.551 8.243c-.11.167-.11.712.58.657l7.63-.01c.527.92 1.002 1.752 1.51 2.642H5.922a.47.47 0 0 0-.397.234l-1.879 3.522h-3.1zm3.917.323 1.515 2.496c.023.037.034.128-.015.214L11.72 8.012l-3.032.004zm5.166 5.145 1.509 2.68-1.538 2.844c-.517-.905-.997-1.745-1.529-2.673.328-.6 1.195-2.189 1.558-2.851"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/happycow.svg���������������������������������0000664�0000000�0000000�00000011377�14753064456�0025466�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.695 1.23h-.03a3.5 3.5 0 0 0-1.118.23c-.84.34-1.563 1.139-1.971 2.192a5.64 5.64 0 0 0-.123 3.604c.181-.295.396-.577.65-.833q.59-.593 1.368-.916c-.173-.81-.494-3.076 1.187-3.648 0 0-1.37.91-.606 3.45a5 5 0 0 1 .393-.09c-.353-.901-.408-1.661-.159-2.265a2.5 2.5 0 0 1 .504-.64c.264-.271.512-.527.478-.78a.33.33 0 0 0-.181-.221.9.9 0 0 0-.392-.084m9.763 1.9a.35.35 0 0 0-.255.12c-.139.196-.04.533.062.888a2.5 2.5 0 0 1 .146.815c-.095.9-.816 1.602-1.333 2.014q.153.126.308.278c2.02-1.938 1.2-3.432 1.2-3.432 1.34 1.435-.417 3.51-.775 3.905.564.718.887 1.54 1.049 2.383a5.62 5.62 0 0 0 1.607-3.246c.137-1.121-.12-2.162-.706-2.859-.236-.28-.86-.862-1.287-.865zm-8.147 1.147c.315.149.84.473.979 1.029l.024.098-.1-.019c-1.08-.205-1.688.307-1.945.613a2 2 0 0 1 .778-.147 2.9 2.9 0 0 1 1.112.238l.164.077-.176.045q-.642.163-.827.585c-.142.331-.04.71.046.932.282-1.168 1.875-1.374 1.897-1.376h.015a2.71 2.71 0 0 1 2.104 1.37c.029-.354-.024-1.085-.883-1.4l-.146-.058.143-.066c.649-.295 1.848.413 2.275.689-.425-1.121-2.016-1.244-2.032-1.245l-.126-.008.08-.097c.284-.343 1.004-.254 1.39-.176-.974-.772-2.051-.164-2.063-.157l-.097.056v-.11a1.1 1.1 0 0 0-.321-.747.97.97 0 0 0-.353.635l-.007.151-.105-.11c-.695-.728-1.448-.812-1.826-.802zm-.622.963c-1.463-.008-2.64.422-3.494 1.284-1.427 1.44-1.603 3.725-1.603 4.775a3 3 0 0 1 .338-.087 3.8 3.8 0 0 1 1.699.042c.023-.625.212-3.264 1.8-3.193q.087.005.18.02c2.518.405 1.309 4.26 1.161 4.701.461.209.965.389 1.55.506a6.3 6.3 0 0 0 1.76.096c.027-.566.278-4.12 2.448-4.103q.235.002.502.063c1.699.408.958 2.792.735 3.411a3.3 3.3 0 0 1 1.234.183q.39.141.715.409c.294-1.769.28-4.039-1.114-5.687a4.5 4.5 0 0 0-2.01-1.383l-.09-.018c.203.2.368.452.45.773l.041.168-.142-.1c-.014-.01-1.373-.955-2.137-.827 1.04.504.767 1.668.764 1.68l-.047.201-.072-.194a2.56 2.56 0 0 0-2.087-1.476 3.2 3.2 0 0 0-.867.265c-.579.278-.896.685-.946 1.207l-.019.2-.101-.178c-.016-.028-.376-.674-.137-1.234q.18-.416.729-.606c-.347-.12-1.155-.32-1.833.092l-.199.122.11-.207a1.8 1.8 0 0 1 .517-.559 2 2 0 0 1 .723-.321 8 8 0 0 0-.558-.025zm-7.441.99c-.539 0-1.113.124-1.583.552a2.1 2.1 0 0 0-.662 1.434 1.46 1.46 0 0 0 .386 1.083c.722.76 2.206.627 3.19.54h.05l.086-.008c.36-.03.639-.061.869-.094.112-.694.334-1.546.78-2.33a6 6 0 0 1-.114-.406c-.242-.106-.48-.207-.638-.266a9.7 9.7 0 0 0-1.454-.409 5 5 0 0 0-.91-.097zm.146.675c.168-.002.342.023.525.056.287.047.883.21 1.13.497s.985 1.36-.747 1.627c-.564.058-1.464.162-1.895-.296-.393-.422-.23-1.168.172-1.55.269-.251.534-.33.815-.334m6.127 1.86c-.75.023-1.342.905-1.324 1.986a2.7 2.7 0 0 0 .116.74c.4.174.788.394 1.196.626q.314.18.64.357c.451-.325.763-.997.75-1.776C9.88 9.617 9.27 8.742 8.52 8.765m11.906.716a9 9 0 0 0-.434.01h-.051l-.411.025a6 6 0 0 1-.644.737c.097.575.122 1.157.1 1.721.225.105.513.229.923.386l.087.035c.875.34 2.33.907 3.25.47a1.3 1.3 0 0 0 .692-.834 1.75 1.75 0 0 0-.203-1.38c-.498-.772-1.459-.992-2.241-1.102a9 9 0 0 0-1.068-.068M8.59 9.713h.004a.415.415 0 0 1 .411.412.412.412 0 1 1-.415-.412m6.861.22c-.602.027-1.238.573-1.564 1.392-.293.736-.238 1.48.08 1.938.355-.064.696-.14 1.022-.214.392-.09.772-.177 1.145-.233a2.8 2.8 0 0 0 .26-.498c.402-1.009.162-2.039-.536-2.317a1 1 0 0 0-.407-.068m5.644.185c.167 0 .321.014.429.028.497.071.909.164 1.195.623.278.44.221 1.12-.287 1.369-.545.264-1.369-.076-1.895-.287-1.578-.708-.562-1.417-.238-1.594.203-.111.518-.142.796-.14m-5.755.643a.41.41 0 0 1 .403.402.412.412 0 1 1-.421-.402zm-9.624.503a4 4 0 0 0-.766.073c-1.625.309-2.713 2.055-2.647 4.247a6.8 6.8 0 0 0 1.785 4.358c1.308 1.443 3.233 2.365 5.567 2.667v.002c8.105 1.041 9.79-3.28 10.114-4.633.511-2.134-.32-4.387-1.817-4.922-.957-.344-1.876-.13-2.94.117-1.063.247-2.276.528-3.722.24-1.18-.236-2.067-.741-2.85-1.186-.89-.507-1.681-.958-2.724-.963m1.662 2.01c.398-.01.88.315 1.159.797.306.552.22 1.11-.201 1.235s-1.015-.22-1.324-.772-.22-1.11.2-1.235a.6.6 0 0 1 .166-.025m-2.563.944c.518.008 1.132.317 1.56.916.622.871.623 2.038.085 2.421-.537.383-1.57.009-2.191-.861-.623-.87-.622-1.904-.077-2.297.17-.123.387-.182.623-.179m10.738.173c.308.007.543.158.602.427.093.432-.287.993-.862 1.273-.575.278-1.12.154-1.213-.278-.094-.431.287-.993.861-1.273.216-.105.427-.153.612-.149m2.083 1.633c.24.008.45.085.605.238.469.467.239 1.464-.527 2.22-.755.756-1.751.994-2.22.527s-.23-1.464.526-2.22c.472-.474 1.039-.743 1.511-.765a1 1 0 0 1 .105 0M7.317 17.782h.002a.13.13 0 0 1 .066.02.14.14 0 0 1 .047.182.9.9 0 0 1-.216.243 4.2 4.2 0 0 0 3.08 2.122c2.08.291 3.66-.662 4.103-.966a1 1 0 0 1-.148-.26.12.12 0 0 1 .086-.162.15.15 0 0 1 .172.087.72.72 0 0 0 .479.43.145.145 0 0 1 .11.153.15.15 0 0 1-.15.096h-.018a1 1 0 0 1-.338-.16c-.437.323-2.111 1.413-4.315 1.06-2.197-.351-3.087-1.835-3.302-2.263a.9.9 0 0 1-.315.061h-.019l-.004-.004a.127.127 0 0 1-.11-.134.118.118 0 0 1 .124-.13.65.65 0 0 0 .552-.308.13.13 0 0 1 .114-.067"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/harbor.svg�����������������������������������0000664�0000000�0000000�00000001465�14753064456�0025106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.006 15.751 4.256 1.876.066.805-4.388-1.934zm.304-3.435h-.605V11.21h.381V8.95h-.381v-.649l2.118-2.073v-.146c0-.11.09-.2.2-.2s.2.09.2.2v.146l2.12 2.073v.65h-.382v2.259h.381v1.106h-.514l.27 3.313L7.17 13.9zm.39-1.106h.628v-.965c0-.383.313-.696.695-.696s.696.313.696.696v.965h.628V8.95H7.7zm-.81 5.84-.066.747 4.618 2.035-.066-.805zm.23-2.6-.066.747 4.158 1.832-.065-.805-4.026-1.774zM24 12c0 6.617-5.383 12-12 12S0 18.617 0 12 5.383 0 12 0s12 5.383 12 12m-2.43-.715a10 10 0 0 0-.223-1.523l-9.751.332 8.801-2.828-.019-.037A9.8 9.8 0 0 0 19.23 5.59l-7.786 4.03 5.712-5.941a9.68 9.68 0 0 0-5.14-1.474c-5.371 0-9.74 4.369-9.74 9.74a9.74 9.74 0 0 0 4.35 8.11l.151-1.704 4.715 2.078.102 1.246q.21.01.422.01c4.646 0 8.54-3.27 9.507-7.63l-10.08-3.497z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/harmonyos.svg��������������������������������0000664�0000000�0000000�00000003644�14753064456�0025651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.861 0H3.59v3.548h3.861V0H9.19v8.883H7.458V5.136H3.59v3.746H1.858Zm11.993 0h1.706l2.809 4.7h.1L21.278 0h1.719v8.883h-1.719v-4.38l.1-1.489h-.1l-2.334 3.983h-1.039l-2.347-3.983h-.1l.1 1.489v4.38h-1.706Zm4.702 21.648a4 4 0 0 1-1.154-.161 3.4 3.4 0 0 1-1.01-.484 3.5 3.5 0 0 1-.8-.782 3.8 3.8 0 0 1-.538-1.092l1.666-.62a2.4 2.4 0 0 0 .643 1.116 1.68 1.68 0 0 0 1.207.434 2.2 2.2 0 0 0 .524-.062 1.8 1.8 0 0 0 .459-.2 1 1 0 0 0 .328-.335.9.9 0 0 0 .118-.459 1.05 1.05 0 0 0-.092-.447 1 1 0 0 0-.315-.373 2.5 2.5 0 0 0-.564-.335 8 8 0 0 0-.852-.335l-.577-.2a5 5 0 0 1-.774-.335 3.4 3.4 0 0 1-.7-.509 2.7 2.7 0 0 1-.525-.695 2.1 2.1 0 0 1-.2-.918 2.25 2.25 0 0 1 .21-.968 2.4 2.4 0 0 1 .616-.794 2.9 2.9 0 0 1 .957-.533 3.7 3.7 0 0 1 1.246-.2 3.6 3.6 0 0 1 1.22.186 2.8 2.8 0 0 1 .879.459 2.5 2.5 0 0 1 .59.608 3 3 0 0 1 .328.633l-1.56.62a1.55 1.55 0 0 0-.485-.67 1.4 1.4 0 0 0-.944-.3 1.66 1.66 0 0 0-.957.261.75.75 0 0 0-.38.658.84.84 0 0 0 .367.682 4.2 4.2 0 0 0 1.167.534l.59.186a6.3 6.3 0 0 1 1.023.434 3 3 0 0 1 .8.57 2.2 2.2 0 0 1 .511.769 2.4 2.4 0 0 1 .183.98 2.3 2.3 0 0 1-.3 1.2 2.6 2.6 0 0 1-.747.819 3.4 3.4 0 0 1-1.036.484 4.2 4.2 0 0 1-1.128.161Zm-13.028 0a4.44 4.44 0 0 1-3.23-1.34 4.8 4.8 0 0 1-.956-1.476 4.9 4.9 0 0 1-.339-1.824 4.8 4.8 0 0 1 .339-1.811 4.6 4.6 0 0 1 .956-1.477 4.4 4.4 0 0 1 1.427-.992 4.5 4.5 0 0 1 1.8-.36 4.4 4.4 0 0 1 1.79.36 4.3 4.3 0 0 1 1.44.992 4.4 4.4 0 0 1 .944 1.477 4.7 4.7 0 0 1 .351 1.811 4.8 4.8 0 0 1-.351 1.824 4.6 4.6 0 0 1-.944 1.476 4.5 4.5 0 0 1-3.23 1.34Zm0-1.588a2.8 2.8 0 0 0 1.125-.223 2.8 2.8 0 0 0 .92-.621 2.7 2.7 0 0 0 .617-.955 3.3 3.3 0 0 0 .23-1.253 3.2 3.2 0 0 0-.23-1.24 2.7 2.7 0 0 0-.617-.968 2.8 2.8 0 0 0-.92-.62 2.8 2.8 0 0 0-1.125-.223 2.86 2.86 0 0 0-2.057.844 2.95 2.95 0 0 0-.617.968 3.4 3.4 0 0 0-.218 1.24 3.5 3.5 0 0 0 .218 1.253 3 3 0 0 0 .617.955 2.86 2.86 0 0 0 2.057.843m-3.297 2.428h6.5V24h-6.5Z"/></svg>��������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hashicorp.svg��������������������������������0000664�0000000�0000000�00000000453�14753064456�0025605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.114 4.094 4.215 7.5v13.09L.666 18.542V5.45L10.114 0zm3.772 13.37 3.549-2.049V2.05L13.885 0v10.426h-3.77v-3.89L6.562 8.585v13.357l3.551 2.054V13.599h3.772zM19.783 3.41V16.5l-5.897 3.405V24l9.448-5.45V5.458l-3.551-2.05z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hashnode.svg���������������������������������0000664�0000000�0000000�00000000442�14753064456�0025414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.351 8.019-6.37-6.37a5.63 5.63 0 0 0-7.962 0l-6.37 6.37a5.63 5.63 0 0 0 0 7.962l6.37 6.37a5.63 5.63 0 0 0 7.962 0l6.37-6.37a5.63 5.63 0 0 0 0-7.962M12 15.953a3.953 3.953 0 1 1 0-7.906 3.953 3.953 0 0 1 0 7.906"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/haskell.svg����������������������������������0000664�0000000�0000000�00000000425�14753064456�0025247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 3.535 5.647 12 0 20.465h4.235L9.883 12 4.235 3.535zm5.647 0L11.294 12l-5.647 8.465h4.235l3.53-5.29 3.53 5.29h4.234L9.883 3.535zm8.941 4.938 1.883 2.822H24V8.473zm2.824 4.232 1.882 2.822H24v-2.822z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hasura.svg�����������������������������������0000664�0000000�0000000�00000002007�14753064456�0025105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.558 8.172c.707-2.152.282-6.447-1.09-8.032a.42.42 0 0 0-.664.051l-1.69 2.59a1.32 1.32 0 0 1-1.737.276C16.544 1.885 14.354 1.204 12 1.204s-4.544.68-6.378 1.853a1.326 1.326 0 0 1-1.736-.276L2.196.191A.42.42 0 0 0 1.532.14C.16 1.728-.265 6.023.442 8.172c.236.716.3 1.472.16 2.207-.137.73-.276 1.61-.276 2.223C.326 18.898 5.553 24 11.997 24c6.447 0 11.671-5.105 11.671-11.398 0-.613-.138-1.494-.276-2.223a4.47 4.47 0 0 1 .166-2.207m-11.56 13.284c-4.984 0-9.036-3.96-9.036-8.827q0-.239.014-.473c.18-3.316 2.243-6.15 5.16-7.5 1.17-.546 2.481-.848 3.864-.848s2.69.302 3.864.85c2.917 1.351 4.98 4.187 5.16 7.501q.013.236.014.473c-.003 4.864-4.057 8.824-9.04 8.824m3.915-5.43-2.31-3.91-1.98-3.26a.26.26 0 0 0-.223-.125H9.508a.26.26 0 0 0-.227.13.25.25 0 0 0 .003.254l1.895 3.109-2.542 3.787a.25.25 0 0 0-.011.259.26.26 0 0 0 .23.132h1.905a.26.26 0 0 0 .218-.116l1.375-2.096 1.233 2.088a.26.26 0 0 0 .224.127h1.878c.094 0 .18-.049.224-.127a.24.24 0 0 0 0-.251z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hatenabookmark.svg���������������������������0000664�0000000�0000000�00000001534�14753064456�0026614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.47 0A3.53 3.53 0 0 1 24 3.53v16.94A3.53 3.53 0 0 1 20.47 24H3.53A3.53 3.53 0 0 1 0 20.47V3.53A3.53 3.53 0 0 1 3.53 0zm-3.705 14.47a1.412 1.412 0 0 0 0 2.824c.78 0 1.41-.645 1.41-1.425s-.63-1.41-1.41-1.41zM8.61 17.247c1.2 0 2.056-.042 2.58-.12.526-.084.976-.222 1.32-.412.45-.232.78-.564 1.02-.99s.36-.915.36-1.48q0-1.17-.63-1.87c-.42-.48-.99-.734-1.74-.794.66-.18 1.156-.45 1.456-.81.315-.344.465-.824.465-1.424 0-.48-.103-.885-.3-1.26a2.34 2.34 0 0 0-.883-.87c-.345-.195-.735-.315-1.215-.405-.464-.074-1.29-.12-2.474-.12H5.654v10.486H8.61zm.736-4.185q1.058 0 1.44.262c.27.18.39.495.39.93 0 .405-.135.69-.42.855-.27.18-.765.254-1.44.254H8.31v-2.297h1.05zm8.656.706v-7.06h-2.46v7.06H18zM8.925 9.08q1.063 0 1.432.24.367.239.367.83 0 .569-.39.804-.396.231-1.452.232h-.57V9.08h.615z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/haveibeenpwned.svg���������������������������0000664�0000000�0000000�00000003211�14753064456�0026604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.03 2.37a2 2 0 0 0-.333.02 1 1 0 0 0-.244.067.5.5 0 0 0-.166.088.5.5 0 0 0-.133.144L.652 4.943a4 4 0 0 0-.308.532 2.2 2.2 0 0 0-.2.496q-.077.255-.11.543A6 6 0 0 0 0 7.143q0 .298.066.474a.48.48 0 0 0 .188.266.75.75 0 0 0 .32.123q.2.033.465.031v.002q.276 0 .475-.033a.9.9 0 0 0 .332-.123.56.56 0 0 0 .187-.266q.067-.176.067-.474V5.729L3.547 2.71a.4.4 0 0 0 .045-.154.18.18 0 0 0-.067-.112.34.34 0 0 0-.177-.054 2 2 0 0 0-.319-.022zm4.347 5.61a2 2 0 0 0-.559.065.65.65 0 0 0-.343.205.8.8 0 0 0-.182.387 3.4 3.4 0 0 0-.043.6q0 .343.043.58a.9.9 0 0 0 .182.386.75.75 0 0 0 .343.205q.216.054.559.053a2.2 2.2 0 0 0 .547-.053.75.75 0 0 0 .344-.205.75.75 0 0 0 .183-.387q.053-.235.053-.58a2.8 2.8 0 0 0-.053-.6.7.7 0 0 0-.183-.386.65.65 0 0 0-.344-.205 2 2 0 0 0-.547-.065m4.05 3.69a.34.34 0 0 0-.308.172q-.102.171-.103.605 0 .435.103.617.104.171.309.17h4.779q.194.001.297-.17.101-.171.101-.617 0-.218-.033-.367a.6.6 0 0 0-.08-.24.25.25 0 0 0-.127-.137.34.34 0 0 0-.158-.033zm7.395 0a.34.34 0 0 0-.308.172q-.104.171-.104.605 0 .435.104.617.102.171.308.17H23.6q.194.001.296-.17.104-.171.104-.617 0-.218-.035-.367a.6.6 0 0 0-.08-.24.25.25 0 0 0-.125-.137.34.34 0 0 0-.16-.033zm-11.32 4.29q-.276 0-.475.034a.9.9 0 0 0-.332.123.56.56 0 0 0-.187.266 1.4 1.4 0 0 0-.067.474v1.414L4.994 21.29a.4.4 0 0 0-.045.154q.011.067.067.112.055.043.177.054.133.02.32.022.199.001.33-.022a1 1 0 0 0 .245-.066.5.5 0 0 0 .166-.088.5.5 0 0 0 .133-.144l1.504-2.254a4 4 0 0 0 .308-.532q.132-.242.197-.496.079-.255.112-.543.033-.286.033-.629a1.4 1.4 0 0 0-.066-.474.48.48 0 0 0-.188-.266.75.75 0 0 0-.32-.123 3 3 0 0 0-.465-.031z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/haxe.svg�������������������������������������0000664�0000000�0000000�00000001733�14753064456�0024554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.784 0a.2.2 0 0 0-.043.003h-5.853a.2.2 0 0 0-.1.023L12 2.918 6.21.026a.2.2 0 0 0-.098-.023h-5.9a.22.22 0 0 0-.21.256v5.853a.2.2 0 0 0 .024.1l2.894 5.785L.026 17.79a.2.2 0 0 0-.024.099v5.84a.2.2 0 0 0 .002.078.22.22 0 0 0 .253.19h5.855a.2.2 0 0 0 .099-.023L12 21.076l5.789 2.898a.2.2 0 0 0 .099.023h5.877a.22.22 0 0 0 .232-.257v-5.85a.2.2 0 0 0-.023-.1l-2.895-5.792 2.895-5.786a.2.2 0 0 0 .023-.099V.267a.2.2 0 0 0-.005-.098.22.22 0 0 0-.208-.169M2.022.445H6.06l4.038 2.017zm15.918 0h4.038l-8.075 2.017zM.528.528l11.039 2.76-8.28 8.275-.238-.953zM23.47.535l-2.76 11.031-8.277-8.279zm.084 1.487V6.06l-2.019 4.035zm-23.11.003L2.29 9.398l.175.7L.445 6.06zM12 3.48 20.52 12l-8.517 8.516-8.241-8.234L3.48 12zm8.712 8.952.088.351 2.672 10.688-11.04-2.76zm-17.424 0 8.274 8.274L.531 23.46l.266-1.065zm18.247 1.466 2.02 4.042v4.027zm-19.07 0-2.02 8.08V17.94zm7.626 7.638-4.032 2.018H2.02zm3.818 0 8.071 2.018h-4.04z"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hbo.svg��������������������������������������0000664�0000000�0000000�00000001344�14753064456�0024375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.042 16.896H4.414v-3.754H2.708v3.754H.01L0 7.22h2.708v3.6h1.706v-3.6h2.628zm12.043.046C21.795 16.94 24 14.689 24 11.978a4.89 4.89 0 0 0-4.915-4.92c-2.707-.002-4.09 1.991-4.432 2.795.003-1.207-1.187-2.632-2.58-2.634H7.59v9.674l4.181.001c1.686 0 2.886-1.46 2.888-2.713.385.788 1.72 2.762 4.427 2.76zm-7.665-3.936c.387 0 .692.382.692.817s-.305.817-.692.817h-1.33v-1.634zm.005-3.633c.387 0 .692.382.692.817 0 .436-.305.818-.692.818h-1.33V9.373zm1.77 2.607c.305-.039.813-.387.992-.61-.063.276-.068 1.074.006 1.35-.204-.314-.688-.701-.998-.74m3.43 0a2.462 2.462 0 1 1 4.924 0 2.462 2.462 0 0 1-4.925 0zm2.462 1.936a1.936 1.936 0 1 0 0-3.872 1.936 1.936 0 0 0 0 3.872"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hcl.svg��������������������������������������0000664�0000000�0000000�00000001022�14753064456�0024364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.397 10.401-1.097 2.44H24l-.343.763h-6.363l1.433-3.203zm-6.399 1.09h2.464c-.016-.538-.536-.911-1.568-1.06-2.034-.299-4.235-.171-5.802.694-1.234.686-1.329 1.718-.099 2.223 1.036.422 3.211.466 4.767.201 1.008-.17 1.778-.502 2.21-.997h-2.516c-.326.25-.753.376-1.25.38-1.412.01-1.599-.418-1.352-.91.293-.58.907-.897 1.844-.922.738-.02 1.103.144 1.302.39M0 13.608h2.604l.558-1.28h2.553l-.573 1.278h2.635l1.445-3.203H6.57l-.477 1.08h-2.55l.483-1.08H1.447Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hdfcbank.svg���������������������������������0000664�0000000�0000000�00000000404�14753064456�0025361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.572 0v10.842h3.712V4.485h6.381V0Zm12.413 0v4.485h6.383v6.357h4.06V0Zm-4.64 8.53v6.938h6.963V8.53ZM.572 13.153V24h10.093v-4.486h-6.38v-6.361zm18.796 0v6.361h-6.383V24h10.443V13.153Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/headlessui.svg�������������������������������0000664�0000000�0000000�00000002556�14753064456�0025761�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.477 13.192c-.36-2.274-.584-3.711-.65-4.805-.062-1.035.051-1.354.1-1.468.169-.395.424-.746.746-1.029.093-.081.363-.288 1.366-.548 1.06-.275 2.496-.507 4.769-.867s3.71-.584 4.804-.65c1.034-.062 1.354.051 1.468.1.395.169.746.424 1.029.747.08.093.287.362.547 1.366.242.933.45 2.156.743 3.987l-14.646 4.89c-.085-.515-.176-1.085-.276-1.723m-3.762.596C.018 9.387-.33 7.187.425 5.422a6.7 6.7 0 0 1 1.743-2.401C3.614 1.757 5.813 1.41 10.211.713c4.4-.698 6.6-1.046 8.367-.291.92.393 1.74.99 2.399 1.743 1.264 1.447 1.612 3.647 2.308 8.047.697 4.4 1.045 6.601.29 8.366a6.7 6.7 0 0 1-1.743 2.402c-1.445 1.263-3.645 1.611-8.045 2.308-4.398.697-6.598 1.045-8.363.29a6.7 6.7 0 0 1-2.4-1.743c-1.263-1.448-1.611-3.648-2.308-8.048zm7.759 7.814c1.178-.072 2.695-.31 4.94-.665 2.247-.356 3.762-.599 4.905-.895 1.107-.288 1.617-.568 1.947-.856a4.3 4.3 0 0 0 1.12-1.543c.172-.402.281-.974.212-2.116-.071-1.178-.309-2.696-.665-4.942-.355-2.247-.598-3.763-.894-4.906-.287-1.107-.568-1.618-.855-1.947a4.3 4.3 0 0 0-1.543-1.12c-.402-.174-.974-.282-2.116-.213-1.178.071-2.694.309-4.94.664-2.246.357-3.762.6-4.905.896-1.107.287-1.616.568-1.946.855a4.3 4.3 0 0 0-1.12 1.543c-.173.403-.281.974-.212 2.116.07 1.179.308 2.696.664 4.943s.598 3.762.895 4.905c.287 1.108.567 1.618.855 1.947.423.485.95.868 1.543 1.121.402.173.973.282 2.116.213Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/headphonezone.svg����������������������������0000664�0000000�0000000�00000000702�14753064456�0026451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.63 4.702 17.96 0 9.086 2.484c-.463 1.754-.694 4.139.133 6.655.232-.067.463-.1.695-.133a4.724 4.724 0 0 1 5.133 4.305 4.724 4.724 0 0 1-4.305 5.133 4.724 4.724 0 0 1-5.132-4.305 4.62 4.62 0 0 1 1.159-3.543c-.86-1.325-1.987-3.609-1.954-6.49C1.107 6.623-.847 11.258.378 15.86c1.49 5.828 7.45 9.305 13.245 7.782 4.603-1.192 7.748-5.198 8.113-9.702l2.251-1.622-6.358-7.616Z"/></svg>��������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/headspace.svg��������������������������������0000664�0000000�0000000�00000000552�14753064456�0025542�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.971 11.861c.28 3.888-1.527 6.094-2.615 7.636-1.694 1.786-3.84 4.22-9.291 4.356-4.624.183-6.896-1.85-8.804-3.617-2.487-2.733-3.136-4.35-3.26-8.375-.013-2.467.939-4.929 2.602-7.095C4.934 1.474 8.64.37 12.065.143c3.592-.14 6.449 1.672 8.399 3.624 2.496 2.632 3.263 4.892 3.505 8.094Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hearth.svg�����������������������������������0000664�0000000�0000000�00000000315�14753064456�0025075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.196 10.318v9.576L.453 24v-9.33zm7.659-4.162 7.692 4.162v9.573L15.853 24v-9.33l-7.658-4.352ZM8.196 0v9.576L.453 13.803V4.155Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hearthisdotat.svg����������������������������0000664�0000000�0000000�00000001306�14753064456�0026466�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.485 3.515C15.799-1.17 8.2-1.17 3.515 3.515c-4.687 4.686-4.687 12.285 0 16.97 4.685 4.686 12.284 4.686 16.97 0 4.687-4.685 4.687-12.284 0-16.97m-5.81 14.433c-.252.252-1.25.562-1.25-.012 0-.573-.157-3.089-2.028-4.958-1.88-1.88-4.55-2.192-5.056-2.192s-.331-1-.078-1.252c.253-.253.558-.15 1.064-.15 0 0 3.445.464 5.326 2.345 1.868 1.869 2.173 5.153 2.173 5.153 0 .463.102.813-.15 1.066zm4.022-.509c-.36.36-1.786.803-1.786-.015 0-.82-.224-4.41-2.893-7.079C11.335 7.662 7.524 7.217 6.8 7.217c-.723 0-.473-1.426-.113-1.787.361-.36.799-.214 1.52-.214 0 0 4.918.663 7.603 3.348 2.666 2.667 3.1 7.356 3.1 7.356 0 .658.147 1.158-.214 1.52z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hedera.svg�����������������������������������0000664�0000000�0000000�00000000343�14753064456�0025053�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a12 12 0 1 0 0 24 12 12 0 0 0 0-24m4.957 17.396h-1.581V14.01H8.622v3.378H7.05V6.604H8.63v3.384h6.754V6.604h1.58zm-1.581-6.259H8.622v1.724h6.754Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/helium.svg�����������������������������������0000664�0000000�0000000�00000002155�14753064456�0025111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c6.627 0 12 5.373 12 12s-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0m2.554 5.606a2.7 2.7 0 0 0-.743 1.386 5.3 5.3 0 0 0-5.596 1.204 5.3 5.3 0 0 0-1.203 5.602 2.7 2.7 0 0 0-1.395.744 2.716 2.716 0 0 0 3.84 3.84 2.7 2.7 0 0 0 .747-1.403 5.3 5.3 0 0 0 1.837.332 5.3 5.3 0 0 0 3.744-1.544 5.3 5.3 0 0 0 1.213-5.576 2.7 2.7 0 0 0 1.396-.745 2.715 2.715 0 1 0-3.84-3.84m3.172 3.173a1.78 1.78 0 0 1-1.523.507.3.3 0 0 0-.08 0 .92.92 0 0 0-.987.604.92.92 0 0 0 .03.7 3.445 3.445 0 0 1-.688 3.87 3.445 3.445 0 0 1-3.87.688.92.92 0 0 0-.71-.028.92.92 0 0 0-.517.479.9.9 0 0 0-.083.453.3.3 0 0 0 0 .092 1.8 1.8 0 0 1-.5 1.564c-.7.699-1.838.699-2.537 0a1.78 1.78 0 0 1-.525-1.268c0-.48.186-.93.525-1.269a1.8 1.8 0 0 1 1.552-.506 1 1 0 0 0 .182.02q.197.001.388-.085a.92.92 0 0 0 .475-.51.92.92 0 0 0-.025-.717 3.445 3.445 0 0 1 .689-3.87 3.445 3.445 0 0 1 3.87-.688.92.92 0 0 0 .707.029.92.92 0 0 0 .52-.48.93.93 0 0 0 .07-.558 1.8 1.8 0 0 1 .5-1.564c.7-.699 1.838-.699 2.537 0 .7.7.7 1.837 0 2.537m-7.118 1.81a1.987 1.987 0 1 0 2.81 2.81 1.987 1.987 0 0 0-2.81-2.81"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/helix.svg������������������������������������0000664�0000000�0000000�00000001667�14753064456�0024746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.968 4.97 4.364 0v3.55c0 .449.239.863.627 1.087l4.276 2.47zm5.339 3.083-3.7 2.138 4.86 2.807c.11-.19.17-.407.17-.633V9.552c0-.452-.241-.87-.633-1.096zm1.33 12.397c0-.449-.24-.863-.627-1.087l-4.253-2.456-3.7 2.137L19.637 24zm-13.92-4.49 3.7-2.137c-2.703-1.562-4.884-2.82-4.884-2.82a1.26 1.26 0 0 0-.17.632v2.813c0 .452.242.87.634 1.096zm-.287-1.252a.93.93 0 0 1 .343-.342l12.455-7.194-.01.007.786-.455c.392-.226.633-.643.633-1.096V2.815c0-.452-.241-.87-.633-1.096l-.765-.442a.944.944 0 0 1-.005 1.617l-.006.004-13.231 7.641a1.26 1.26 0 0 0-.633 1.096v2.813c0 .453.24.87.633 1.096l.72.416h.002a.944.944 0 0 1-.29-1.252m12.873-6.652a.945.945 0 0 1-.07 1.575l-.005.004-13.231 7.641a1.26 1.26 0 0 0-.633 1.096v2.813c0 .452.24.87.633 1.096l.765.442a.945.945 0 0 1 .01-1.62l12.456-7.194-.01.006.786-.454c.392-.226.633-.644.633-1.096V9.552c0-.453-.241-.87-.633-1.096l-.697-.403z"/></svg>�������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hellofresh.svg�������������������������������0000664�0000000�0000000�00000002007�14753064456�0025755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.79 22.233c-.967-.097-2-.326-3.043-.759a11 11 0 0 1-1.212-.61c-.362-.207-.657-.458-1.213-.728a6.4 6.4 0 0 0-2.111-.61c-.984-.067-1.038.012-1.319-.075a1.2 1.2 0 0 1-.495-.285 1.4 1.4 0 0 1-.16-.18 1.3 1.3 0 0 1-.195-.4A1 1 0 0 1 0 18.252c0-.157.015-.24.035-.312.076-.278.173-.34.43-.847a6.1 6.1 0 0 0 .618-1.956 5.7 5.7 0 0 0 .055-1.017c-.015-.506-.038-.614-.04-1.045a10.1 10.1 0 0 1 .554-3.286c.206-.607.389-1.007.605-1.433a11.8 11.8 0 0 1 2.935-3.692c.773-.655 1.974-1.5 3.554-2.118a12.4 12.4 0 0 1 3.064-.761c.664-.087 1.807-.124 2.975.053.996.151 2.244.487 3.513 1.2.431.243.681.438 1.014.63.814.47 1.65.705 2.448.801.424.051 1.061.005 1.302.067.147.038.255.086.39.175.113.076.362.277.49.649.061.177.125.608-.098.991l-.156.267c-.05.084-.142.262-.207.396-.661 1.368-.647 2.546-.601 3.263.053.84.05 2.234-.542 3.965-.103.303-.336.931-.702 1.614a12 12 0 0 1-2.537 3.226 12.7 12.7 0 0 1-3.927 2.402c-.897.34-1.583.51-2.302.632-.694.12-1.82.243-3.08.116"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hellyhansen.svg������������������������������0000664�0000000�0000000�00000001025�14753064456�0026133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.912 5.945a1.089 1.089 0 1 0-.002 2.178 1.089 1.089 0 0 0 .002-2.178m.012.242a.85.85 0 1 1 0 1.7.85.85 0 0 1 0-1.7m-.332.375v.952h.18v-.352h.171l.184.352h.207l-.213-.385c.046-.017.19-.067.19-.28 0-.166-.12-.287-.323-.287zm.18.157h.167c.124 0 .184.057.184.144 0 .089-.065.143-.156.143h-.196zM0 7.039v11.016h3.684v-3.78h3.523v3.78h1.42l2.15-11.016H7.221v3.854H3.695V7.039zm12.127 0L9.988 18.055h3.545V14.2h3.524v3.854h3.697V7.039H17.07v3.78h-3.525v-3.78z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/helm.svg�������������������������������������0000664�0000000�0000000�00000002616�14753064456�0024555�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.337 0c-.475 0-.861 1.016-.861 2.269 0 .527.069 1.011.183 1.396a8.5 8.5 0 0 0-3.961 1.22 5.2 5.2 0 0 0-.595-1.093c-.606-.866-1.34-1.436-1.79-1.43a.4.4 0 0 0-.217.066c-.39.273-.123 1.326.596 2.353.267.381.559.705.84.948a8.7 8.7 0 0 0-1.528 1.716h1.734a7.18 7.18 0 0 1 5.381-2.421 7.18 7.18 0 0 1 5.382 2.42h1.733a8.7 8.7 0 0 0-1.32-1.53c.35-.249.735-.643 1.078-1.133.719-1.027.986-2.08.596-2.353a.4.4 0 0 0-.217-.065c-.45-.007-1.184.563-1.79 1.43a4.9 4.9 0 0 0-.676 1.325 8.5 8.5 0 0 0-3.899-1.42c.12-.39.193-.887.193-1.429 0-1.253-.386-2.269-.862-2.269M1.624 9.443v5.162h1.358v-1.968h1.64v1.968h1.357V9.443H4.62v1.838H2.98V9.443zm5.912 0v5.162h3.21v-1.108H8.893v-.95h1.64v-1.142h-1.64v-.84h1.853V9.443zm4.698 0v5.162h3.218v-1.362h-1.86v-3.8zm4.706 0v5.162h1.364v-2.643l1.357 1.225 1.35-1.232v2.65h1.365V9.443h-.614l-2.1 1.914-2.109-1.914zm-11.82 7.28a8.7 8.7 0 0 0 1.412 1.548 5.2 5.2 0 0 0-.841.948c-.719 1.027-.985 2.08-.596 2.353.39.273 1.289-.338 2.007-1.364a5.2 5.2 0 0 0 .595-1.092 8.5 8.5 0 0 0 3.961 1.219 5 5 0 0 0-.183 1.396c0 1.253.386 2.269.861 2.269.476 0 .862-1.016.862-2.269 0-.542-.072-1.04-.193-1.43a8.5 8.5 0 0 0 3.9-1.42c.121.4.352.865.675 1.327.719 1.026 1.617 1.637 2.007 1.364s.123-1.326-.596-2.353c-.343-.49-.727-.885-1.077-1.135a8.7 8.7 0 0 0 1.202-1.36h-1.771a7.17 7.17 0 0 1-5.227 2.252 7.17 7.17 0 0 1-5.226-2.252z"/></svg>������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/helpdesk.svg���������������������������������0000664�0000000�0000000�00000001063�14753064456�0025422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 10.71 6.12-5.31H12c-2.16 0-4.32.06-6.36.21-.84.06-1.5.69-1.56 1.53-.12 1.26-.18 2.85-.18 4.41v.87c0 1.59.06 3.15.18 4.41.09.81.75 1.47 1.56 1.5a90 90 0 0 0 12.72 0c.81-.03 1.5-.69 1.56-1.5.09-1.2.15-2.67.18-4.17L24 9.3v3.36c0 1.59-.06 3.18-.18 4.47a5.57 5.57 0 0 1-5.19 5.1c-2.13.18-4.38.27-6.63.27s-4.5-.09-6.63-.24a5.57 5.57 0 0 1-5.19-5.1C.06 15.81 0 14.13 0 12.45v-.87C0 9.9.06 8.22.18 6.84a5.57 5.57 0 0 1 5.19-5.1C7.5 1.59 9.75 1.5 12 1.5h12v3.9L12 15.81l-5.61-4.86L9.33 8.4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/helpscout.svg��������������������������������0000664�0000000�0000000�00000000725�14753064456�0025635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3.497 14.044 7.022-7.021a4.95 4.95 0 0 0 1.474-3.526A5 5 0 0 0 10.563 0L3.54 7.024a4.95 4.95 0 0 0-1.473 3.525c0 1.373.55 2.6 1.43 3.496zm17.007-4.103-7.023 7.022a4.95 4.95 0 0 0-1.473 3.525c0 1.36.55 2.601 1.43 3.497l7.022-7.022a4.94 4.94 0 0 0 1.474-3.526c0-1.373-.55-2.6-1.43-3.496m-.044-2.904a4.94 4.94 0 0 0 1.474-3.525c0-1.36-.55-2.6-1.43-3.497L3.54 16.965A4.986 4.986 0 0 0 3.497 24Z"/></svg>�������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hepsiemlak.svg�������������������������������0000664�0000000�0000000�00000004245�14753064456�0025752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.721 14.99c0 .477-.398.785-1.08.785-.32 0-.74-.06-1.046-.272l.25-.472c.202.13.447.226.8.226.295 0 .436-.08.436-.217 0-.11-.12-.173-.391-.212l-.192-.026q-.814-.11-.813-.702c0-.475.374-.755.993-.755.34-.007.678.069.983.219l-.214.485a2 2 0 0 0-.75-.188c-.24 0-.362.083-.362.21 0 .133.17.166.384.197l.209.031c.51.076.793.3.793.691m-2.278-.46c0 .675-.483 1.184-1.124 1.184-.312 0-.532-.119-.683-.293v.961h-.623v-2.977h.61v.248c.152-.183.375-.309.694-.309.642 0 1.126.509 1.126 1.185m-.642 0c0-.344-.23-.621-.6-.621-.354 0-.596.264-.596.62 0 .355.242.62.597.62.369 0 .599-.276.599-.62m-2.092.027a2 2 0 0 1-.012.208h-1.63c.067.333.3.48.591.48a.92.92 0 0 0 .581-.22l.363.4c-.26.24-.593.35-.98.35-.703 0-1.192-.48-1.192-1.208s.474-1.223 1.162-1.223c.662 0 1.114.494 1.117 1.213m-.621-.214c-.057-.296-.235-.463-.5-.463-.292 0-.463.177-.517.463zm6.09 1.368h.607v-2.279h-.608zm-5.469-1.154v-.001zm.608-4.445 2.87 2.519 1.23-1.415-4.1-3.598-4.102 3.598 1.231 1.415zM1.34 13.358c-.264 0-.52.08-.692.308v-.99H0v3.038h.649v-1.258c0-.345.232-.518.51-.518.296 0 .47.183.47.514v1.262h.65v-1.461c0-.533-.391-.895-.938-.895zm16.583 2.356h.608v-3.038h-.608zm5.196-1.217.871-1.08h-.767l-.655.818h-.22l-.001-1.56h-.626l.001 3.039h.626v-.93h.211l.67.93.77-.001zm-1.703-1.09v2.309h-.61v-.255a.86.86 0 0 1-.695.315c-.64 0-1.124-.522-1.124-1.215s.482-1.215 1.123-1.216c.319 0 .541.13.695.317v-.255zm-.592 1.153c0-.364-.242-.636-.6-.636-.366 0-.598.284-.598.637s.233.636.6.635c.357 0 .599-.271.598-.636m-4.281-1.25c-.308 0-.614.105-.796.402-.157-.249-.436-.401-.774-.401-.266 0-.522.088-.689.337v-.275h-.614v2.342h.631V14.43c0-.353.225-.53.496-.53.288 0 .457.188.457.526v1.287h.631V14.43c0-.353.225-.53.496-.53.285 0 .457.188.457.526v1.288h.63v-1.491c0-.543-.374-.913-.925-.913zm-3.025 1.247a2 2 0 0 1-.012.21h-1.629c.067.332.3.48.591.48a.93.93 0 0 0 .58-.222l.364.4c-.261.241-.593.35-.98.35-.704 0-1.192-.48-1.192-1.206 0-.727.473-1.223 1.16-1.224.662 0 1.115.493 1.118 1.212zm-.621-.213c-.057-.295-.235-.462-.5-.462-.292 0-.463.177-.517.462zm-2.439-1.968a.38.38 0 0 0-.351.235.38.38 0 0 0 .082.413.38.38 0 0 0 .414.083.38.38 0 0 0 .123-.62.38.38 0 0 0-.268-.11"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/here.svg�������������������������������������0000664�0000000�0000000�00000002322�14753064456�0024545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.29 1.007c-.697.036-1.367.384-2.008 1.036-.97.987-1.104 2.206-.679 3.316l-1.091-1.312c-.106.041-.306.203-.506.406-.572.596-.705 1.516-.558 2.125l-.734-.635-1.45 1.475 1.996 2.03c-1.583-1.326-3.007-1.259-4.323.082-1.331 1.353-1.252 3.006-.147 4.385l-.186-.189c-1.184-1.205-2.328-1.463-3.46-.298-.666.663-.772 1.314-.706 1.897l-2.794-2.83-1.625 1.651 5.372 5.48H0l3.312 3.37 3.282-3.34h3.128l-2.275-2.314c-.798-.8-1.039-1.354-.547-1.855.36-.379.773-.367 1.278.148l2.741 2.803 1.65-1.679-2.049-2.084c1.623 1.368 3.393 1.03 4.738-.351.706-.704 1.09-1.355 1.278-1.801l-1.452-.825a6.5 6.5 0 0 1-.878 1.218c-.799.812-1.543.812-2.048.392l2.94-2.992L17 12.25l1.65-1.678-1.782-1.815c-1.45-1.476-1.025-2.26-.691-2.599.212-.217.425-.378.572-.46a4.2 4.2 0 0 0 .797 1.096c1.728 1.774 3.62 1.53 5.07.042.865-.88 1.279-1.692 1.384-2.099l-1.424-.799a5.9 5.9 0 0 1-1.023 1.489c-.786.812-1.532.813-2.037.394l2.97-3.007-.374-.379C21.13 1.43 20.188.961 19.291 1.007zm-.055 1.918c.273-.002.558.113.838.35l-1.596 1.623c-.452-.527-.465-1.136 0-1.623.226-.23.485-.349.758-.35m-7.357 7.486c.275-.002.564.113.85.35l-1.61 1.626c-.452-.528-.466-1.151 0-1.626.227-.23.486-.349.76-.35"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hermes.svg�����������������������������������0000664�0000000�0000000�00000000463�14753064456�0025111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.818 4.516-1.05 4.148h2.175L24 4.516m-4.59 9.524h2.17l1.04-4.08h-2.178m-2.41 9.523h2.154l1.056-4.147h-2.16m.193-5.377H5.55v.92l3.341 3.161h9.349m2.41-9.525H0v1.116l3.206 3.032H19.6m-8.372 7.58 3.43 3.24h2.205l1.05-4.147h-6.685"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/heroku.svg�����������������������������������0000664�0000000�0000000�00000001146�14753064456�0025122�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.61 0H3.39a2.15 2.15 0 0 0-2.16 2.16v19.681A2.15 2.15 0 0 0 3.39 24h17.22a2.15 2.15 0 0 0 2.159-2.159V2.16A2.15 2.15 0 0 0 20.61 0m.96 21.841c0 .539-.421.96-.96.96H3.39a.95.95 0 0 1-.96-.96V2.16c0-.54.42-.961.96-.961h17.22a.95.95 0 0 1 .96.961zM6.63 20.399 9.33 18l-2.7-2.4zm9.72-9.719c-.479-.48-1.379-1.08-2.879-1.08-1.621 0-3.301.421-4.5.84V3.6h-2.4v10.38l1.68-.78s2.76-1.26 5.16-1.26c1.2 0 1.5.66 1.5 1.26v7.2h2.4v-7.2c.059-.179.059-1.501-.961-2.52M13.17 7.5h2.4c1.08-1.26 1.62-2.521 1.8-3.9h-2.399c-.241 1.379-.841 2.64-1.801 3.9"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hetzner.svg����������������������������������0000664�0000000�0000000�00000000566�14753064456�0025311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm4.602 4.025h2.244c.509 0 .716.215.716.717v5.64h8.883v-5.64c0-.509.215-.717.717-.717h2.229c.5 0 .71.23.724.717v14.516c0 .509-.215.717-.717.717h-2.23c-.51 0-.717-.215-.717-.717v-5.735H7.562v5.735c0 .516-.215.717-.716.717H4.602c-.51 0-.717-.208-.717-.717V4.742c0-.509.207-.717.717-.717"/></svg>������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hevy.svg�������������������������������������0000664�0000000�0000000�00000005412�14753064456�0024600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.76 2.489c1.473 0 2.672 1.16 2.716 2.607q.002 1.622.001 3.244c0 .572-.416 1.2-1.045 1.4-.63.202-1.013-.431-1.044-.975q-.002-1.794-.001-3.587a.624.624 0 0 0-.71-.615c-.375.047-.704.105-1.048.159l-.32.058q-1.33.253-2.122.584c-.338.142-.584.287-.737.423-.096.085-.133.141-.14.177-.041.167-.044.286-.069.449-.047.45-.057.749-.083 1.176l-.018.453c-.041 1.41-.049 2.343-.049 3.648.007 1.219.019 2.056.047 3.192.016.69.044 1.229.074 1.913q.02.348.046.696c.013.218.038.384.058.588q.025.026.053.05c.137.116.377.252.716.39q.495.203 1.212.39c.344.095.68.161 1.001.234.497.104.88.165 1.36.248a.626.626 0 0 0 .72-.512c.008-.033.006-.067.009-.1v-2.091a5.57 5.57 0 0 1 2.688-4.76l2.693-1.559a3.51 3.51 0 0 0 1.759-2.926c.005-.734.002-1.468.002-2.202 0-1.485 1.216-2.69 2.717-2.69q.22 0 .438.036c.506.08.85.148 1.323.236.268.052.478.102.744.16.139.032.271.065.415.1l.264.07c2.073.56 3.168 1.302 3.322 2.444.022.16.031.285.048.437q.023.28.043.56c.034.503.049.91.073 1.418.023.553.032.982.047 1.527l.019.914c.012.75.015 1.337.018 2.082l-.003.941q-.006.635-.015 1.27-.01.506-.026 1.012c-.011.387-.028.681-.044 1.053q-.015.263-.033.524c-.01.153-.026.305-.039.457-.014.167-.036.297-.056.462q-.02.138-.052.273c-.297 1.233-1.592 2.017-3.886 2.553-.243.058-.515.11-.733.156-.293.059-.52.094-.796.143q-.341.055-.682.104c-1.486.213-2.864-.807-3.078-2.277a3 3 0 0 1-.025-.256c-.007-1.09-.003-2.18-.003-3.269 0-.571.506-1.273 1.045-1.4s1.012.432 1.043.976q.004 1.782.002 3.564c.003.38.341.67.717.614.335-.045.572-.09.872-.138.284-.048.5-.096.776-.149.249-.05.437-.102.679-.158.183-.046.322-.088.491-.135.116-.033.23-.072.344-.108.102-.034.201-.073.302-.109q.13-.051.258-.107c.073-.032.143-.07.214-.105.079-.039.134-.082.208-.127q.19-.137.219-.252c.091-.44.106-.946.134-1.327.09-1.976.081-3.96.064-5.744a147 147 0 0 0-.058-2.548l-.031-.783c-.018-.403-.04-.715-.062-1.089-.01-.165-.029-.329-.043-.493l-.015-.128-.047-.044c-.136-.116-.375-.251-.713-.39q-.765-.313-2.063-.59c-.58-.124-1.01-.193-1.518-.282a.625.625 0 0 0-.726.564c-.005.713-.002 1.427-.002 2.14a5.57 5.57 0 0 1-2.689 4.759q-1.344.783-2.692 1.559a3.51 3.51 0 0 0-1.76 2.927v2.201q0 .217-.037.435c-.242 1.465-1.64 2.46-3.12 2.22-.366-.058-.646-.112-1.004-.176-.284-.052-.501-.101-.766-.155-.33-.068-.666-.16-.966-.234C1.52 20.31.421 19.57.255 18.434c-.038-.263-.047-.454-.075-.718-.033-.407-.047-.72-.07-1.12-.03-.593-.044-1.076-.063-1.677-.025-.877-.032-1.546-.043-2.391l-.003-.495L0 11.65l.002-.85c.004-.806.016-1.426.035-2.214.008-.305.022-.61.033-.916.011-.305.034-.61.052-.915.015-.24.037-.423.057-.653.013-.123.033-.246.049-.369.01-.077.029-.152.043-.228.272-1.18 1.41-1.955 3.4-2.48.249-.07.443-.106.679-.163.195-.043.391-.079.587-.118q.232-.043.466-.082c.24-.04.424-.065.654-.101l.342-.047q.18-.024.36-.024"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hexlet.svg�����������������������������������0000664�0000000�0000000�00000000306�14753064456�0025113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.732 7.099v6.422H7.268V7.099L4.563 6.085V24h2.705v-7.775h9.464V24h2.705V6.085zm3.043-4.057L12 0 4.225 3.042 12 5.746z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hexo.svg�������������������������������������0000664�0000000�0000000�00000000404�14753064456�0024564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.02 0 1.596 6.02l-.02 12L11.978 24l10.426-6.02.02-12zm4.828 17.14-.96.558-.969-.574V12.99H9.081v4.15l-.96.558-.969-.574V6.854l.964-.552.965.563v4.145h5.838V6.86l.965-.552.964.563z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hey.svg��������������������������������������0000664�0000000�0000000�00000002523�14753064456�0024412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.57 6.698a5.7 5.7 0 0 0-2.644 1.572c-.84-2.952-2.65-7.42-4.415-8.15a1.28 1.28 0 0 0-1.181.05c-1.104.643-1.823 2.709-1.194 6.624C7.71 2.353 6.863 2.36 6.472 2.353a.96.96 0 0 0-.873.597c-.263.584-.79 2.406.494 6.327C4.547 7.16 4.072 6.89 3.526 6.917a.97.97 0 0 0-.821.557c-.463.873-.41 3.068 1.027 6.34a2.95 2.95 0 0 0-1.773-.73 1.06 1.06 0 0 0-.853.544c-.584 1.073.642 4.083 2.157 6.124C4.49 21.427 6.947 24 10.515 24a8 8 0 0 0 1.489-.141.654.654 0 0 0-.25-1.284c-2.965.578-5.2-1.052-6.553-2.515-2.021-2.19-2.908-4.82-2.959-5.622.424.173 1.644.892 4.018 3.934a.65.65 0 0 0 1.059-.757c-3.337-5.066-3.664-8.132-3.555-9.166.982 1 3.433 4.671 5.28 7.445a.64.64 0 0 0 .88.199.64.64 0 0 0 .238-.873C6.312 8.16 6.446 4.952 6.67 3.874c.577.584 2.11 2.618 5.34 9.626a.64.64 0 0 0 .84.327.64.64 0 0 0 .366-.827c-3.132-8.504-1.772-11.385-1.252-11.712.674 0 2.567 3.247 3.748 7.502q.107.395.205.77a4 4 0 0 0-.385.924c-.64 2.355-1.283 7.7-.045 9.17a1.2 1.2 0 0 0 1.04.444 1.69 1.69 0 0 0 1.232-.757c1.15-1.675.475-5.879-.443-9.557a4.83 4.83 0 0 1 2.567-1.84 1.28 1.28 0 0 1 1.284.307c.526.59 1.445 2.798-1.34 10.583a.654.654 0 0 0 1.231.436c2.22-6.206 2.568-10.204 1.084-11.886A2.53 2.53 0 0 0 19.57 6.7zm-2.888 11.918a.4.4 0 0 1-.218.186c-.48-.571-.48-3.953.045-6.727.995 4.795.417 6.2.173 6.54z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hibernate.svg��������������������������������0000664�0000000�0000000�00000000406�14753064456�0025564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.365 0 9.98 7.994h8.95L14.31 0zm-.431.248L.46 7.994l4.613 8.008L9.55 8.24zm13.992 7.75-4.475 7.76 4.617 7.992 4.471-7.744zm-4.905 8.006-8.95.002L9.688 24h8.946l-4.615-7.994.001-.002Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hibob.svg������������������������������������0000664�0000000�0000000�00000001647�14753064456�0024716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.527 17.538c-2.077 0-3.767-1.705-3.767-3.8 0-2.096 1.69-3.8 3.767-3.8s3.767 1.704 3.767 3.8-1.69 3.8-3.766 3.8m0-6.408c-1.426 0-2.586 1.17-2.586 2.607 0 1.439 1.159 2.609 2.585 2.609s2.585-1.17 2.585-2.609c0-1.437-1.16-2.606-2.585-2.606M1.707 10.4V7.082a.86.86 0 0 0-.853-.86.856.856 0 0 0-.854.86v6.632c.002 2.244 1.81 4.065 4.03 4.065s4.029-1.823 4.029-4.065c0-2.24-1.808-4.063-4.029-4.063a3.98 3.98 0 0 0-2.323.748zm2.323 5.658a2.335 2.335 0 0 1-2.323-2.343 2.335 2.335 0 0 1 2.323-2.342 2.335 2.335 0 0 1 2.323 2.342 2.335 2.335 0 0 1-2.323 2.343m16.465-5.854a3.49 3.49 0 0 0-2.848 1.484V6.704a.33.33 0 0 0-.327-.331.33.33 0 0 0-.328.331v7.036c.002 1.949 1.572 3.533 3.504 3.533S24 15.687 24 13.737s-1.573-3.534-3.505-3.534m0 6.408c-1.57 0-2.847-1.289-2.847-2.873s1.278-2.872 2.847-2.872c1.57 0 2.848 1.288 2.848 2.872 0 1.585-1.277 2.873-2.848 2.873"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hilton.svg�����������������������������������0000664�0000000�0000000�00000002316�14753064456�0025122�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 7.544v8.912h24V7.544zm23.588 8.503H.406V7.95h23.182zM3.682 14.41h-1.62v-.249l.324-.044V9.873l-.324-.045v-.242h1.62v.242l-.324.045v1.813h2.107V9.873l-.355-.045v-.242h1.647v.242l-.334.045v4.244l.334.044v.25H5.11v-.25l.355-.044v-1.933H3.358v1.933l.324.044zm5.298 0H7.466v-.218l.31-.044V11.24l-.31-.045v-.218h1.203v3.17l.31.045zm2.171.004H9.638v-.215l.303-.041V9.845l-.303-.044V9.59h1.203v4.568l.31.04zm.941-3.116h-.634v-.32h.658v-.717l.88-.262v.978h.807v.32h-.81v2.043c0 .528.108.695.589.695.177 0 .334 0 .48-.037v.235c-.436.153-.804.218-1.114.218-.696 0-.856-.314-.856-.914v-2.24zm3.924 3.214c1.139 0 1.861-.715 1.861-1.786 0-1.176-.678-1.844-1.803-1.844-1.139 0-1.861.74-1.861 1.844 0 1.32.702 1.786 1.803 1.786m.024-3.364c.525 0 .849.474.849 1.558 0 1.111-.304 1.544-.85 1.544-.51 0-.834-.453-.834-1.544 0-1.105.323-1.558.835-1.558m3.72 3.262h-1.521v-.218l.31-.044v-2.884l-.31-.045v-.242h1.21v.478c.375-.3.74-.543 1.248-.543.678 0 .981.396.981 1.173v2.066l.31.041v.218h-1.513v-.218l.303-.044v-1.954c0-.542-.2-.784-.613-.784-.191 0-.495.133-.716.287v2.45l.31.045v.218zM7.738 10.07a.487.487 0 0 1 .975 0 .487.487 0 0 1-.488.485.485.485 0 0 1-.487-.485"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hiltonhotelsandresorts.svg�������������������0000664�0000000�0000000�00000001442�14753064456�0030445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.197 3.696C4.749 3.696 0 7.802 0 12.19c0 2.267 1.275 4.177 2.88 5.5l.122-.083C1.729 16.553.58 14.9.58 12.637.916 7.836 6.826 5.13 12.076 5.13c3.718 0 10.394.86 10.394 7.086 0 3.248-3.465 7.473-10.737 7.473-3.725 0-6.618-1.999-6.618-4.87 0-2.488 1.943-4.258 4.841-4.258.799 0 1.547.187 2.118.342-1.209-.218-3.085.093-4.056.857v4.205h3.561v-4.78a4.4 4.4 0 0 1 1.551.598v4.182h.928c-.73.82-2.088 1.319-3.264 1.135v.176c3.384.267 4.816-1.341 4.816-3.15 0-2.128-1.994-3.378-4.03-3.634V7.349H8.017v3.18c-2.305.465-4.56 1.837-4.56 4.11 0 3.498 4.88 5.665 9.125 5.665 6.452 0 11.417-3.125 11.417-7.51 0-5.31-7.168-9.098-12.803-9.098m4.908 10.552c0-1.545-1.055-2.784-2.975-3.382V7.35h3.557v8.616h-1.112c.391-.552.53-1.178.53-1.717"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hitachi.svg����������������������������������0000664�0000000�0000000�00000002201�14753064456�0025227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.787 11.41h-1.026a.9.9 0 0 0-.052-.284.71.71 0 0 0-.459-.427 1.4 1.4 0 0 0-.913.019.89.89 0 0 0-.535.542 2.3 2.3 0 0 0-.04 1.425.88.88 0 0 0 .535.584 1.5 1.5 0 0 0 .977.027.7.7 0 0 0 .428-.384 1 1 0 0 0 .08-.396h1.031a2 2 0 0 1-.049.351c-.09.365-.346.672-.684.814a3.25 3.25 0 0 1-2.251.104c-.477-.15-.89-.493-1.054-.96a2.4 2.4 0 0 1-.133-.788c0-.388.068-.764.254-1.077.192-.321.486-.569.842-.701a3.06 3.06 0 0 1 2.318.063 1.2 1.2 0 0 1 .698.853q.025.115.033.235m-3.979 2.436H12.72l-.32-.793h-1.834c-.001.001-.315.794-.319.793h-1.09l1.727-3.693c0 .002 1.199 0 1.199 0zm5.483.001h-.977s.005-3.693 0-3.693h.977v1.477h1.976c0 .005-.002-1.478 0-1.477h.979s.003 3.686 0 3.693h-.979v-1.626c0 .005-1.976 0-1.976 0 .002.007 0 1.624 0 1.626m-18.312 0H0s.005-3.693 0-3.693h.979s-.002 1.487 0 1.477h1.976c0 .005-.004-1.478 0-1.477h.978s.004 3.686 0 3.693h-.978v-1.626c0 .005-1.976 0-1.976 0 0 .007-.002 1.625 0 1.626m7.531-.001h-.977v-3.065H6.036s.002-.626 0-.627c.002.001 3.971 0 3.971 0v.627H8.51zm-3.801-3.692h.977v3.692h-.977zm18.312 0H24v3.692h-.979zm-11.537.627-.681 1.68h1.361z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hive.svg�������������������������������������0000664�0000000�0000000�00000002572�14753064456�0024564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.442 21.355c.55-.19.74-.256.99-.373.342-.152.605-.39.605-.818a.85.85 0 0 0-.605-.813c-.318-.092-.703.042-.99.122l-5.42 1.46a7.8 7.8 0 0 1-4.057 0l-5.407-1.46c-.287-.08-.672-.214-.99-.122a.85.85 0 0 0-.605.813c0 .427.263.666.605.818.25.117.44.184.99.373l5.138 1.79a6.98 6.98 0 0 0 4.601 0zm-9.263-3.224a7.6 7.6 0 0 0 3.636 0l8.01-1.967c.507-.122.709-.165.99-.257.354-.116.605-.415.605-.806a.85.85 0 0 0-.605-.813c-.281-.08-.697.024-.99.08l-8.664 1.545a6.8 6.8 0 0 1-2.334 0l-8.652-1.545c-.293-.056-.708-.16-.99-.08a.85.85 0 0 0-.604.813c0 .39.25.69.604.806.282.092.483.135.99.257zM14.75.621a24.4 24.4 0 0 0-5.511 0L6.495.933c-.294.03-.715.055-.99.14-.28.092-.605.355-.605.807 0 .39.257.702.605.806.281.08.696.074.99.074h11.01c.293 0 .709.006.99-.074a.835.835 0 0 0 .605-.806c0-.452-.324-.715-.605-.807-.275-.085-.697-.11-.99-.14zm6.037 6.767c.3-.019.709-.037.99-.116a.84.84 0 0 0 0-1.614c-.281-.085-.69-.073-.99-.073H3.214c-.3 0-.709-.012-.99.073a.84.84 0 0 0 0 1.614c.281.079.69.097.99.116l7.808.556c.642.042 1.308.042 1.943 0zm1.62 4.242c.513-.08.708-.104.989-.202.354-.121.605-.409.605-.806a.84.84 0 0 0-.605-.806c-.28-.086-.69-.019-.99.012l-9.232.929a11.8 11.8 0 0 1-2.358 0l-9.22-.93c-.3-.03-.715-.097-.99-.011a.84.84 0 0 0-.605.806c0 .397.25.685.605.806.275.092.476.123.99.202l8.823 1.418c1.038.165 2.12.165 3.158 0Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hive_blockchain.svg��������������������������0000664�0000000�0000000�00000001217�14753064456�0026734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.076 1.637a.1.1 0 0 0-.09.05L.014 11.95a.1.1 0 0 0 0 .104l6.039 10.26c.04.068.14.068.18 0l5.972-10.262a.1.1 0 0 0-.002-.104L6.166 1.687a.1.1 0 0 0-.09-.05m2.863 0a.103.103 0 0 0-.09.154l5.186 8.967a.1.1 0 0 0 .09.053h3.117c.08 0 .13-.088.09-.157l-5.186-8.966a.1.1 0 0 0-.09-.051zm5.891 0a.102.102 0 0 0-.088.154L20.656 12l-5.914 10.209a.102.102 0 0 0 .088.154h3.123a.1.1 0 0 0 .088-.05l5.945-10.262a.1.1 0 0 0 0-.102L18.041 1.688a.1.1 0 0 0-.088-.051zm-.79 11.7a.1.1 0 0 0-.089.052l-5.101 8.82c-.04.069.01.154.09.154h3.117a.1.1 0 0 0 .09-.05l5.1-8.82a.103.103 0 0 0-.09-.155z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hivemq.svg�����������������������������������0000664�0000000�0000000�00000003015�14753064456�0025113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.38 0 0 5.38 0 12s5.38 12 12 12 12-5.38 12-12S18.62 0 12 0m0 1.01c6.06 0 10.99 4.93 10.99 10.99S18.06 22.99 12 22.99 1.01 18.06 1.01 12 5.94 1.01 12 1Zm0 .95C6.47 1.97 1.97 6.47 1.97 12S6.47 22.03 12 22.03 22.03 17.53 22.03 12 17.53 1.97 12 1.97Zm-.9 3.79c.05 0 .1.04.12.09l.23.5c.38-.12.8-.12 1.18 0l.23-.5c.03-.07.12-.11.2-.07.07.03.1.12.07.19l-.21.46v.02c.2.1.39.23.55.39.3.29.49.67.56 1.09a2.016 2.016 0 0 1-.18 1.24c2.77-1.25 5.03-1.6 5.57-.85.48.85-.49 1.92-2.12 3.31l-.04-.04c-.11-.11-.1-.29.01-.4.62-.58 1.98-1.96 1.2-2.36-.87-.44-3.23.17-5.85 1.56 3.73 2.16 6.26 4.74 5.66 5.78-.38.65-1.94.56-3.94-.14l.07-.12c.07-.11.2-.16.33-.12 1.39.42 2.25.62 2.55.17.42-.72-1.7-3.22-4.99-5.12-.08-.05-.17-.1-.25-.14l-.25.14c-3.29 1.9-5.41 4.39-4.99 5.12.3.45 1.16.25 2.55-.17.12-.04.26.01.33.12l.07.12c-2 .71-3.56.79-3.94.14-.6-1.04 1.94-3.62 5.66-5.78-.72-.38-1.47-.72-2.23-1.02-.73-.28-3.08-1.07-3.71-.47-.2.19-.19.54.23 1.12.32.44.78.9 1.07 1.17.11.11.12.28.01.4l-.04.04c-.6-.51-2.83-2.3-2.1-3.32.8-1.12 4.78.52 5.5.85-.48-1.01-.06-2.21.94-2.69l-.02-.04-.2-.45c-.03-.07 0-.16.07-.2.02-.01.05-.02.08-.01Zm.22.96c-.69.32-1.08 1.06-.97 1.82.69-.32 1.08-1.06.97-1.82m1.42 0c-.12.75.27 1.49.97 1.82.12-.75-.28-1.49-.97-1.82m-.7 4.58c.78.46 1.54.95 2.27 1.49.13.4.2.81.18 1.23H9.58c-.02-.42.05-.83.18-1.23.73-.53 1.49-1.03 2.27-1.49Zm-2.31 3.57h4.63c-.11.37-.29.72-.52 1.02h-3.58c-.24-.3-.42-.65-.52-1.02Zm1.3 1.88h2.02c-.31.32-.55.61-1.01 1.44-.46-.83-.7-1.12-1.01-1.44"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/homarr.svg�����������������������������������0000664�0000000�0000000�00000002177�14753064456�0025122�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.256 15.698a6.52 6.52 0 0 0 1.25-3.848 6.52 6.52 0 0 0-2.011-4.716 6.5 6.5 0 0 0-.833-.678 6.5 6.5 0 0 0-2.881-1.095q-.001 0-.002.002l1.251 5.1H0a6.03 6.03 0 0 0 4.253 4.991l.435 1.772a6.6 6.6 0 0 0 1.568-1.528Zm14.714-5.235 1.251-5.1-.002-.002a6.5 6.5 0 0 0-2.881 1.095 6.6 6.6 0 0 0-.833.678 6.52 6.52 0 0 0-2.01 4.716 6.52 6.52 0 0 0 1.25 3.848 6.6 6.6 0 0 0 1.567 1.528l.435-1.772A6.03 6.03 0 0 0 24 10.462zm-7.615 3.543a.82.82 0 0 0 .821-.822.82.82 0 0 0-.821-.821.82.82 0 0 0-.822.821c0 .454.368.822.822.822m-2.71-1.643a.82.82 0 0 0-.82.821c0 .454.367.822.82.822a.82.82 0 0 0 .823-.822.82.82 0 0 0-.822-.821m-.538 2.897a7.8 7.8 0 0 0-4.13 2.533 7.8 7.8 0 0 0-1.342 2.252l2.184.013 12.444.056.002-.004a7.83 7.83 0 0 0-9.157-4.85Zm3.247-4.91c.09 0 .178.018.26.046V7.263a2.448 2.448 0 0 1 4.5-1.332q.356-.298.749-.552a3.376 3.376 0 0 0-6.177 1.884v3.433a.82.82 0 0 1 .667-.346zM7.937 4.814a2.45 2.45 0 0 1 2.448 2.449v3.133a.8.8 0 0 1 .26-.046.82.82 0 0 1 .668.346V7.263a3.38 3.38 0 0 0-3.376-3.376 3.38 3.38 0 0 0-2.8 1.492q.39.254.748.552a2.45 2.45 0 0 1 2.052-1.117"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/homeadvisor.svg������������������������������0000664�0000000�0000000�00000000440�14753064456�0026141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.98 2.442H8.02L0 10.46h2.275l6.882-6.88 6.881 6.881H24l-8.02-8.018m-.492 9.348L9.157 5.459 4.01 10.605v4.987a1.33 1.33 0 0 0 1.329 1.329h6.077l4.637 4.637v-4.637h2.598a1.33 1.33 0 0 0 1.33-1.33V11.79h-4.494Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/homeassistant.svg����������������������������0000664�0000000�0000000�00000001160�14753064456�0026503�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.939 10.627 13.061.749a1.505 1.505 0 0 0-2.121 0l-9.879 9.878C.478 11.21 0 12.363 0 13.187v9c0 .826.675 1.5 1.5 1.5h9.227l-4.063-4.062a2 2 0 0 1-.664.113c-1.13 0-2.05-.92-2.05-2.05s.92-2.05 2.05-2.05 2.05.92 2.05 2.05c0 .233-.041.456-.113.665l3.163 3.163V9.928a2.05 2.05 0 0 1-1.15-1.84c0-1.13.92-2.05 2.05-2.05s2.05.92 2.05 2.05a2.05 2.05 0 0 1-1.15 1.84v8.127l3.146-3.146A2.05 2.05 0 0 1 18 12.239c1.13 0 2.05.92 2.05 2.05s-.92 2.05-2.05 2.05a2 2 0 0 1-.709-.13L12.9 20.602v3.088h9.6c.825 0 1.5-.675 1.5-1.5v-9c0-.825-.477-1.977-1.061-2.561z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/homeassistantcommunitystore.svg��������������0000664�0000000�0000000�00000001347�14753064456�0031534�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.63.47a.393.393 0 0 0-.39.39v2.417c0 .212.177.39.39.39h20.74c.213 0 .39-.178.39-.39V.859a.393.393 0 0 0-.39-.39zm-.045 4.126a.41.41 0 0 0-.407.337l-1.17 6.314C0 11.274 0 11.3 0 11.327v2.117c0 .23.186.416.416.416h23.168c.23 0 .416-.186.416-.416v-2.126c0-.027 0-.053-.009-.08l-1.169-6.305a.41.41 0 0 0-.407-.337zM1.7 14.781a.457.457 0 0 0-.46.46v7.829c0 .257.203.46.46.46h14.108c.257 0 .46-.203.46-.46v-6.589c0-.257.204-.46.461-.46h4.02c.258 0 .461.203.461.46v6.589c0 .257.204.46.46.46h.62a.456.456 0 0 0 .461-.46v-7.829a.46.46 0 0 0-.46-.46zm1.842 1.55h7.847c.212 0 .39.177.39.39V21.6c0 .212-.178.39-.39.39H3.542a.393.393 0 0 1-.39-.39v-4.88c0-.221.178-.39.39-.39Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/homebrew.svg���������������������������������0000664�0000000�0000000�00000006506�14753064456�0025442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.938 0a.214.214 0 0 0-.206.156c-.316 1.104.179 2.15.838 2.935q.23.27.476.501a2 2 0 0 0-.665.02c-1.184.233-2.193.985-2.74 2.532a3.9 3.9 0 0 0-.2 1.466 1.565 1.565 0 0 0-1.156 1.504 1.59 1.59 0 0 0 1.227 1.541l.026 12.046c0 .195.1.377.264.482l.008.005c.537.31 2.047.812 5.21.812 3.238 0 4.7-.678 5.181-1.04l.008-.007a.57.57 0 0 0 .206-.439c.002-.344.002-1.136.002-1.604a.143.143 0 0 1 .147-.144c.397.006.869.006 1.318.005a1.826 1.826 0 0 0 1.832-1.825v-5.804a1.826 1.826 0 0 0-1.825-1.826H16.56a.14.14 0 0 1-.143-.144V10.6h.007v-.001a1.57 1.57 0 0 0 1.356-1.556c0-.816-.627-1.489-1.424-1.563-.025-1.438-.437-2.126-.736-2.58l-.005-.007c-.364-.51-1.193-1.282-2.275-1.316-.503-.016-.842.124-1.125.254-.217.1-.42.177-.67.22.002-1.286.945-1.981.945-1.981a.214.214 0 0 0 .05-.298s-.087-.122-.21-.26c-.121-.136-.269-.294-.47-.378a.2.2 0 0 0-.079-.017.21.21 0 0 0-.145.055 4.3 4.3 0 0 0-.875 1.101 3 3 0 0 0-.133.273 3.5 3.5 0 0 0-.381-.846C9.794.978 9.063.436 8.017.016A.2.2 0 0 0 7.939 0zm.156.524c.85.378 1.43.83 1.79 1.403.274.438.426.962.484 1.584a3 3 0 0 0-.012.462l-.168-.052a5.5 5.5 0 0 1-1.29-1.106c-.551-.657-.935-1.46-.804-2.291M11.8 1.618c.07.054.141.101.212.18.034.039.032.04.058.073-.332.308-1.07 1.144-.952 2.453a.214.214 0 0 0 .222.195c.469-.017.782-.172 1.056-.299.273-.126.508-.228.931-.214.875.027 1.639.715 1.939 1.134.295.449.65 1 .663 2.36a1.7 1.7 0 0 0-.41.142 1.94 1.94 0 0 0-1.77-1.16 1.94 1.94 0 0 0-1.87 1.448 1.78 1.78 0 0 0-1.356-.64c-.484 0-.91.205-1.233.517a1.87 1.87 0 0 0-1.85-1.625c-.649 0-1.218.335-1.552.84a3 3 0 0 1 .157-.735c.51-1.437 1.355-2.045 2.42-2.254.367-.073.664-.011.99.095s.671.262 1.094.342a.214.214 0 0 0 .252-.245c-.112-.67.073-1.266.336-1.744a3.7 3.7 0 0 1 .663-.863M7.44 6.611a1.442 1.442 0 0 1 1.363 1.925.214.214 0 0 0 .168.283h.005a.214.214 0 0 0 .238-.146 1.373 1.373 0 0 1 2.613-.01.214.214 0 0 0 .417-.09 1.51 1.51 0 0 1 1.504-1.664c.678 0 1.249.445 1.442 1.056a.214.214 0 0 0 .259.143l.15-.04a.2.2 0 0 0 .051-.02 1.14 1.14 0 0 1 1.702.995 1.14 1.14 0 0 1-.985 1.131h-.001a2.2 2.2 0 0 0-.485.126 11 11 0 0 1-1.176.365.21.21 0 0 0-.162.186 1.3 1.3 0 0 1-.146.478 2.07 2.07 0 0 0-.239 1.111l.001.151a.44.44 0 0 1-.16.36.67.67 0 0 1-.43.14.586.586 0 0 1-.588-.59.8.8 0 0 0-.38-.681l-.002-.002c-.24-.145-.43-.37-.532-.636a.21.21 0 0 0-.207-.138 19.5 19.5 0 0 1-5.37-.6l-.003-.002a9 9 0 0 0-.838-.194h.003a1.16 1.16 0 0 1-.937-1.134c0-.619.488-1.118 1.101-1.14a.214.214 0 0 0 .204-.176 1.44 1.44 0 0 1 1.42-1.187m8.549 4.106v.455c0 .314.259.573.572.573h1.329a1.397 1.397 0 0 1 1.397 1.397v5.804a1.396 1.396 0 0 1-1.402 1.396h-.002c-.448.002-.918 0-1.31-.005a.573.573 0 0 0-.584.573c0 .468 0 1.262-.002 1.603v.001q-.002.065-.05.107c-.346.26-1.75.95-4.915.95-3.107 0-4.587-.52-4.99-.752a.14.14 0 0 1-.065-.118l-.025-11.955q.217.05.431.11h.003c.115.031.246.064.383.097v10.37c0 .129.069.247.18.31.453.217 1.767.732 4.071.732 2.32 0 3.595-.626 4.022-.884a.36.36 0 0 0 .164-.3l.001-10.21q.4-.111.792-.254m-7.99.894a.493.493 0 0 1 .494.493v8.578a.493.493 0 0 1-.493.493.493.493 0 0 1-.494-.493v-8.578A.493.493 0 0 1 8 11.611zm8.652 1.14a.663.663 0 0 0-.662.662v5.208a.663.663 0 0 0 .662.662h1.14a.663.663 0 0 0 .662-.662v-5.209a.663.663 0 0 0-.662-.662zm0 .428h1.14a.233.233 0 0 1 .233.233v5.21a.233.233 0 0 1-.233.232h-1.14a.233.233 0 0 1-.233-.233v-5.209a.233.233 0 0 1 .233-.233"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/homebridge.svg�������������������������������0000664�0000000�0000000�00000002426�14753064456�0025734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m8.116 12.262a.74.74 0 0 1-.741-.74c0-.008.005-.016.005-.025l-1.46-1.46a1.3 1.3 0 0 1-.38-.917V5.731a.285.285 0 0 0-.284-.283h-.915a.284.284 0 0 0-.284.283v2.413L12.17 4.383a.284.284 0 0 0-.4.003L4.438 11.72a.283.283 0 0 0 0 .4l.696.697a.286.286 0 0 0 .4 0l5.635-5.552a1.3 1.3 0 0 1 1.83.008l5.525 5.525a1.3 1.3 0 0 1 0 1.836l-.679.68a1.305 1.305 0 0 1-1.824.012l-3.876-3.766a.283.283 0 0 0-.4.004l-3.723 3.74a.285.285 0 0 0 0 .4l.687.69a.283.283 0 0 0 .4 0l2.013-1.986a1.3 1.3 0 0 1 1.824 0l1.994 1.96.007.007a1.3 1.3 0 0 1 0 1.837l-1.985 1.984v.013a.74.74 0 1 1-.74-.741c.009 0 .016.005.025.005l1.975-1.98a.28.28 0 0 0 .084-.201.28.28 0 0 0-.085-.2l-1.995-1.96a.285.285 0 0 0-.4 0l-2.006 1.98a1.3 1.3 0 0 1-1.83-.004l-.69-.689a1.3 1.3 0 0 1 0-1.834l3.72-3.74a1.303 1.303 0 0 1 1.826-.016l3.879 3.758a.285.285 0 0 0 .4 0l.679-.679a.285.285 0 0 0 0-.4L12.28 7.986a.284.284 0 0 0-.4 0l-5.637 5.555a1.3 1.3 0 0 1-1.829-.008l-.698-.694-.002-.003a1.296 1.296 0 0 1 .002-1.834l7.334-7.334a1.305 1.305 0 0 1 1.821-.015l2.166 2.097v-.019a1.3 1.3 0 0 1 1.299-1.298h.916a1.3 1.3 0 0 1 1.298 1.298v3.384a.28.28 0 0 0 .083.2l1.467 1.467h.014a.74.74 0 0 1 .001 1.48z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/homepage.svg���������������������������������0000664�0000000�0000000�00000001401�14753064456�0025404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.992.034C1.217.166.602.841.416 1.769.388 1.901.36 21.858.388 23.895c0 .181 0 .181.923-.593.497-.416 1.328-1.128 1.801-1.516.34-.28.626-.543.637-.576.011-.039.022-1.148.017-2.466L3.76 16.35h1.516c.829 0 1.52.022 1.537.044s.028.538.022 1.142c0 .61.011 1.104.022 1.104.017 0 .643-.522.725-.604.017-.017.401-.335.851-.714.923-.77.917-.764 1.373-1.148.28-.236.34-.264.412-.203.072.066 2.878 2.421 3.592 3.02a1239 1239 0 0 1 3.932 3.306c.003.003 2.02 1.74 2.076 1.702.021-.01.038-3.333.038-7.38-.006-6.574.005-7.365.082-7.381.044-.011.895-.017 1.884-.017h1.801l-.022-3.761c-.005-2.07-.033-3.817-.05-3.877-.142-.495-.51-1.022-.883-1.28-.473-.318.164-.302-10.566-.302-5.442-.005-9.99.011-10.11.033"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/homify.svg�����������������������������������0000664�0000000�0000000�00000001513�14753064456�0025116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.383 10.561v.055l-.004.048c-.088 2.33-.057 11.357-.057 11.823.002 1.078-.826 1.943-1.596 1.283l-6.98-5.53a374 374 0 0 1-4.742 4.925c-.977.946-1.786-1.327-1.045-1.808.066-.042 2.223-1.95 4.61-4.05L5.4 13.214c-.446-.356-.618-.946-.363-1.261a.46.46 0 0 1 .328-.127.5.5 0 0 1 .164.037c1.596.722 3.962 2.492 6.314 4.329 2.45-2.15 4.805-4.191 5.116-4.364.38-.214.48.354.354.516-.131.166-2.169 2.326-4.408 4.678 2.204 1.732 4.294 3.389 5.614 4.137l.217-10.62c-.17-.206-5.332-7.163-5.892-7.746-.892.78-5.566 6.112-5.802 6.342 1.067.11 5.597.382 8.452.684.721.07 1.2.606-.346.59l-11.105-.015a.44.44 0 0 1-.394-.267.415.415 0 0 1 .094-.457C3.8 9.613 11.782.748 12.454.184A.7.7 0 0 1 12.935 0a.73.73 0 0 1 .483.227c.083.077 4.292 5.94 6.344 8.802.492.678.617 1.137.621 1.5z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/honda.svg������������������������������������0000664�0000000�0000000�00000003242�14753064456�0024715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.902 6.87c-.33-3.218-2.47-3.895-4.354-4.204-.946-.16-2.63-.3-3.716-.34-.946-.06-3.168-.09-3.835-.09-.657 0-2.89.03-3.835.09-1.076.04-2.77.18-3.716.34C2.563 2.985.42 3.66.092 6.87c-.08.877-.1 2.023-.09 3.248.03 2.031.2 3.406.3 4.363.07.657.338 2.62.687 3.636.478 1.395.916 1.803 1.424 2.222.937.757 2.471.996 2.79 1.056 1.733.31 5.24.368 6.784.368s5.05-.05 6.784-.368c.329-.06 1.863-.29 2.79-1.056.508-.419.946-.827 1.424-2.222.35-1.016.628-2.979.698-3.636.1-.957.279-2.332.299-4.363.04-1.225.01-2.371-.08-3.248m-1.176 5.4c-.19 2.57-.418 4.104-.747 5.22-.29.976-.637 1.623-1.165 2.092-.867.787-2.063.956-2.76 1.056-1.514.23-4.055.3-6.057.3s-4.543-.08-6.057-.3c-.697-.1-1.893-.269-2.76-1.056-.518-.469-.876-1.126-1.155-2.093-.329-1.105-.558-2.65-.747-5.22-.11-1.543-.09-4.054.08-5.4.258-2.011 1.255-3.018 3.387-3.396.996-.18 2.34-.31 3.606-.37 1.016-.07 2.7-.1 3.636-.09.936-.01 2.62.03 3.636.09 1.275.06 2.61.19 3.606.37 2.142.378 3.139 1.395 3.388 3.397.199 1.345.229 3.856.11 5.4m-5.202-8.39c-.548 2.462-.767 3.588-1.216 5.37-.428 1.715-.767 3.298-1.335 4.065-.587.777-1.365.947-1.893 1.006-.279.03-.478.04-1.066.05a8 8 0 0 1-1.075-.05c-.528-.06-1.315-.229-1.892-1.006-.578-.767-.907-2.35-1.335-4.064-.47-1.773-.678-2.91-1.236-5.37 0 0-.548.02-.797.04-.329.02-.588.05-.867.09.343 5.372.692 11.079 1.126 16.13a22 22 0 0 0 2.39.169c.33-1.266.748-3.02 1.207-3.767.378-.608.966-.677 1.295-.717.518-.07.956-.08 1.165-.08.2-.01.637 0 1.165.08.33.05.917.11 1.295.717.47.747.877 2.5 1.206 3.766 0 0 .358-.01 1.165-.05q.616-.027 1.226-.12c.458-5.39.785-10.728 1.126-16.128-.28-.04-.538-.07-.867-.09-.23-.02-.787-.04-.787-.04z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/honey.svg������������������������������������0000664�0000000�0000000�00000001553�14753064456�0024751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.416 5.59c.04-.994.254-2.312.909-3.091.922-1.09 2.794-.914 3.102.658.146.767-.054 1.708-.402 2.367-.734 1.439-2.1 2.622-3.636 3.026.013-.901 0-2.071.027-2.96m12.54 13.904c-.775.901-1.764 1.6-2.714 1.56-1.07-.04-.963-1.372-.963-2.124v-3.16c.014-.605.014-1.21-.053-1.802-.174-1.761-1.204-3.173-3.142-3.307-3.37-.135-4.706 3.132-5.695 5.821v-5.89c2.94-.456 7.02-2.11 7.14-5.875.2-6.4-10.563-6.629-10.523 1.426.014.618.014 1.802.014 2.42-1.445-.215-2.608-2.34-3.143-3.604a.35.35 0 0 0-.427-.215C.43 5.27.137 7.407 1.5 8.86c1.124 1.197 2.915 1.654 4.493 1.735-.013 4.664-.013 7.542-.013 12.194.067.66.962.835 1.484.848.588.013 1.684-.16 1.738-.928.187-2.286 2.125-9.036 4.76-9.036.613 0 .908.403.908.995v5.5c0 2.286 1.284 3.818 3.623 3.832 2.073 0 3.891-1.72 4.8-3.698.281-.632-.922-1.278-1.337-.807z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/honeybadger.svg������������������������������0000664�0000000�0000000�00000001154�14753064456�0026113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.999 0c-.346 0-.691.131-.955.395L.394 11.045a1.35 1.35 0 0 0 0 1.91l6.243 6.24.915-1.95L2.306 12l9.693-9.693 1.158 1.157 1.432-1.432L12.954.395A1.35 1.35 0 0 0 11.999 0m5.54 1.106a.33.33 0 0 0-.218.102l-1.777 1.778-1.432 1.432-8.393 8.392h4.726l-3.76 9.26c-.139.34.29.626.55.366l1.321-1.32v-.001l1.432-1.432h.001l8.56-8.561h-4.727l2.083-4.91v.001l.854-2.012 1.112-2.623c.108-.256-.108-.485-.333-.472Zm.25 4.125-.853 2.012 4.756 4.756L12 21.693l-1.056-1.055-1.432 1.432 1.533 1.534a1.35 1.35 0 0 0 1.91 0l10.65-10.65a1.35 1.35 0 0 0 0-1.91z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/honeygain.svg��������������������������������0000664�0000000�0000000�00000002327�14753064456�0025610�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.721 3.048a1.352 1.352 0 0 0-1.38 1.56 6.4 6.4 0 0 0-1.864 3.2l-.77-.001c-.63 0-1.35.003-2.12.016l-7.965-.028A4.394 4.394 0 0 0 3.4 16.463l.002.002-2.096 3.543 4.343-1.48c2.612 1.705 6.279 2.425 10.278 2.425a6.572 6.572 0 0 0 3.058-12.39 4.97 4.97 0 0 1 2.552-1.16 1.352 1.352 0 1 0-.096-1.377c-1.47.188-2.787.861-3.881 1.987q-.33-.083-.67-.134a4.94 4.94 0 0 1 1.331-2.208 1.352 1.352 0 1 0 .5-2.623M4.391 9.167q.08-.001.16.004l.033.001h.033l7.936.028-6.08 5.168-.021.018-.02.018a3 3 0 0 1-2.195.793 3.02 3.02 0 0 1-2.856-3.17 3.014 3.014 0 0 1 3.01-2.86m10.553.017h.455l.528.001a5.2 5.2 0 0 1 5.196 5.196 5.2 5.2 0 0 1-5.196 5.195q-.53 0-1.043-.018c-1.779-1.578-2.676-3.269-2.665-5.026.021-3.025 2.698-5.325 2.725-5.348m-3.628 2.875a7.1 7.1 0 0 0-.474 2.463c-.011 1.722.65 3.36 1.963 4.889a20 20 0 0 1-2.575-.45c-1.076-1.835-1.427-3.545-1.045-5.091Zm-3.659 3.11q.013 1.557.736 3.218c-1.252-.488-2.297-1.124-3.118-1.898a4.4 4.4 0 0 0 2.089-1.071Zm9.237-4.08a1.7 1.7 0 1 0 0 3.4 1.7 1.7 0 0 0 0-3.4m-.431.723a.545.545 0 0 1 .521.708.54.54 0 0 1-.309.341.54.54 0 0 1-.322.032.54.54 0 0 1-.311-.188.55.55 0 0 1-.122-.403.56.56 0 0 1 .09-.25.55.55 0 0 1 .453-.24"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hono.svg�������������������������������������0000664�0000000�0000000�00000001113�14753064456�0024562�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.445.002a45.5 45.5 0 0 0-5.252 8.146 9 9 0 0 1-.555-.53 28 28 0 0 0-1.205-1.542 8.8 8.8 0 0 0-1.251 2.12 20.7 20.7 0 0 0-1.448 5.88 8.9 8.9 0 0 0 .338 3.468q1.968 5.22 7.445 6.337 4.583.657 8.097-2.312 4.015-3.885 2.047-9.132a33.3 33.3 0 0 0-2.988-5.59A91 91 0 0 0 12.615.053a.22.22 0 0 0-.17-.051m-.336 3.906a51 51 0 0 1 4.794 6.552q.672 1.15 1.108 2.41.91 3.579-1.951 5.904-2.768 1.947-6.072 1.156-3.564-1.105-4.121-4.794a5.1 5.1 0 0 1 .242-2.266q.536-1.361 1.3-2.601l1.446-2.121a397 397 0 0 0 3.254-4.24"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/honor.svg������������������������������������0000664�0000000�0000000�00000001734�14753064456�0024755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.601 9.753v1.823H.807V9.753H0v4.498h.807v-1.874h1.794v1.874h.807V9.753zm18.671.801h.898c.369 0 .667.297.667.662a.665.665 0 0 1-.667.663h-.898zm-.806-.801v4.498h.806v-2.002l1.68 2.002H24l-1.376-1.64a1.462 1.462 0 0 0-.444-2.858h-1.716zm-7.63-.014v2.807l-1.959-2.807h-.644v4.498h.807v-2.82l1.968 2.82h.633V9.739zm-7.532 2.26c0-.832.68-1.506 1.517-1.506A1.51 1.51 0 0 1 8.337 12c0 .832-.679 1.506-1.516 1.506-.403 0-.789-.159-1.073-.441A1.5 1.5 0 0 1 5.304 12zM4.497 12c0 .933.566 1.774 1.434 2.132.869.357 1.868.16 2.533-.5s.863-1.653.503-2.515a2.32 2.32 0 0 0-2.146-1.425 2.316 2.316 0 0 0-2.323 2.307zm11.04-.001a1.513 1.513 0 0 1 1.518-1.506c.838 0 1.516.675 1.516 1.507a1.513 1.513 0 0 1-1.518 1.506c-.402 0-.788-.159-1.072-.441a1.5 1.5 0 0 1-.444-1.066M14.73 12c0 .933.566 1.774 1.434 2.132.868.357 1.868.16 2.532-.5.665-.66.864-1.653.504-2.515a2.325 2.325 0 0 0-2.147-1.425 2.316 2.316 0 0 0-2.323 2.307z"/></svg>������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hootsuite.svg��������������������������������0000664�0000000�0000000�00000002517�14753064456�0025653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.417 11.14c.505.75.28 1.572-.38 2.017s-1.505.343-2.01-.407c-.506-.75-.282-1.572.378-2.017s1.506-.343 2.012.407m5.017-.274c-.66.444-.884 1.266-.379 2.016.506.75 1.352.852 2.012.407.66-.444.884-1.266.379-2.016-.506-.75-1.352-.852-2.012-.407m7.422-7.086L19.03 6.638l.236.272c2.224 2.613 3.591 6.409 4.247 8.606a4.36 4.36 0 0 1-.638 3.8C21.449 21.295 18.398 24 12.369 24c-6.58 0-10-3.25-11.644-5.251a3.12 3.12 0 0 1-.51-3.067c.909-2.444 2.766-7.126 4.257-8.825a13.2 13.2 0 0 1 2.897-2.478L2.4.534c-.27-.208-.034-.632.285-.513l8.077 3.006q.571-.1 1.13-.1c1.407 0 2.737.307 4.074 1.084l7.744-.695c.266-.024.378.331.147.464zm-8.218 13.656a4.13 4.13 0 0 1-3.316-.232c-.073-.037-.143.055-.087.115.457.49 1.273 1.35 1.766 1.775a.253.253 0 0 0 .35-.023l1.369-1.512c.053-.059-.008-.15-.082-.123m.24-1.156-1.796-2.018a.34.34 0 0 0-.513.008l-1.44 1.716a.18.18 0 0 0 .031.262c.333.239 1.148.76 1.942.76.734 0 1.402-.285 1.724-.447a.18.18 0 0 0 .052-.281m1.616-8.409c-.3-.034-.603.035-.862.188l-1.808 1.07c-.45.268-1.02.231-1.432-.091L11.819 7.82a4.7 4.7 0 0 0-1.776-.858c-2.698-.638-4.532.78-5.914 3.44-1.32 2.539-.583 6.184 2.672 7.05 3.438.914 5.71-2.903 6.618-4.175a.44.44 0 0 1 .712-.002c1.408 1.916 3.306 3.968 5.34 3.557 2.656-.535 2.342-3.905 1.512-5.7-.735-1.588-1.83-3.074-3.49-3.262z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hoppscotch.svg�������������������������������0000664�0000000�0000000�00000001733�14753064456�0026001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.632 4.746a8.89 8.89 0 0 1 5.29 7.938c1.867 1.47 3.723 3.527 2.86 5.465-.968 2.174-4.415 2.085-8.334.985A7.113 7.113 0 0 1 5.063 14.51C1.623 12.334-.75 9.832.218 7.658c.863-1.939 3.634-1.936 5.975-1.532a8.89 8.89 0 0 1 9.439-1.38M1.862 8.39c-.47 1.056 2.056 4.054 8.972 7.133 6.916 3.08 10.834 2.95 11.304 1.894.39-.874-1.212-2.554-3.046-3.856-1.426-1.02-3.38-2.143-5.929-3.278-.694-.309-.964-1.133-.673-1.788.292-.655.933-1.093 2.282-1.156.635-.002.718-.178.747-.329.036-.233-.287-.47-.62-.618-2.647-1.179-5.888-.685-8.134 1.68-2.195-.491-4.514-.556-4.903.318m11.083 5.666c-.24.54-.98.735-1.651.436s-1.02-.979-.78-1.518c.24-.54.979-.735 1.65-.436s1.021.979.78 1.518zm4.02 2.327c.703.202 1.404-.093 1.566-.658.162-.564-.276-1.186-.98-1.387-.702-.202-1.403.093-1.565.658-.162.564.276 1.186.98 1.387zM7.218 9.737c.62.388.87 1.106.559 1.604s-1.066.588-1.686.2-.87-1.105-.56-1.604c.312-.498 1.067-.588 1.687-.2"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hostinger.svg��������������������������������0000664�0000000�0000000�00000000425�14753064456�0025626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.415 0v7.16l5.785 3.384V2.949zM1.8 0v11.237h18.815L14.89 8.09l-7.457-.003V3.024zm14.615 20.894v-5.019l-7.514-.005c.007.033-5.82-3.197-5.82-3.197l19.119.091V24zM1.8 13.551v7.343l5.633 2.949v-6.988z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hotelsdotcom.svg�����������������������������0000664�0000000�0000000�00000001411�14753064456�0026324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.064 0H4.936a4.937 4.937 0 0 0-4.93 4.93v14.13A4.94 4.94 0 0 0 4.935 24h14.128a4.926 4.926 0 0 0 4.93-4.941V4.93A4.93 4.93 0 0 0 19.065 0zM8.55 10.63v2.329a.32.32 0 0 1-.337.337H5.884a.32.32 0 0 1-.337-.337V10.63c0-.2.137-.337.337-.337h2.34c.2 0 .336.137.336.337zm5.162 7.491a.32.32 0 0 1-.337.337h-2.328a.32.32 0 0 1-.337-.337v-2.328c0-.2.136-.337.337-.337h2.328c.19 0 .337.136.337.337zm0-5.162a.32.32 0 0 1-.337.337h-2.328a.32.32 0 0 1-.337-.337V10.63c0-.2.136-.337.337-.337h2.328c.2 0 .337.137.337.337zm5.974 4.372a.65.65 0 0 1-.22.516l-2.308 2.297c-.18.168-.432.052-.432-.2V7.28H4.062c-.253 0-.369-.264-.2-.432L6.169 4.55c.137-.147.274-.232.506-.232h11.473c.854 0 1.538.685 1.538 1.539V17.33z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hotjar.svg�����������������������������������0000664�0000000�0000000�00000000601�14753064456�0025107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.119 9.814C12.899 8.27 16.704 6.155 16.704 0h-4.609c0 3.444-1.676 4.375-4.214 5.786C5.1 7.33 1.295 9.444 1.295 15.6h4.61c0-3.444 1.676-4.376 4.214-5.786M18.096 8.4c0 3.444-1.677 4.376-4.215 5.785-2.778 1.544-6.585 3.66-6.585 9.815h4.609c0-3.444 1.676-4.376 4.214-5.786 2.78-1.544 6.586-3.658 6.586-9.814z"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hotwire.svg����������������������������������0000664�0000000�0000000�00000000267�14753064456�0025311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.764 6.917-3.48.81L16.32 0 7.236 11.705l4.334-.854-4.087 7.982 2.364-.532L7.456 24l7.51-8.111-2.77.64z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/houdini.svg����������������������������������0000664�0000000�0000000�00000001242�14753064456�0025261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 19.635V24h3.824A8.66 8.66 0 0 1 0 19.635m16.042-4.555c0-4.037-3.253-7.92-8.111-8.089C4.483 6.873 1.801 8.136 0 10.005v4.209c1.224-3.549 4.595-5.158 7.419-5.128 3.531.041 6.251 2.703 6.275 5.72 0 2.878-1.183 4.992-4.436 5.516-1.774.296-4.548-.754-4.436-3.434.065-1.381 1.138-2.162 2.366-2.106-1.207 1.618.39 2.801 1.52 2.561a2.51 2.51 0 0 0 1.966-2.502c0-1.017-.958-2.662-3.333-2.6-2.936.068-4.785 2.183-4.85 4.797-.071 3.28 3.007 5.457 6.174 5.483 4.633.059 7.395-2.984 7.377-7.441M0 0v6.906a12.86 12.86 0 0 1 7.931-2.609c6.801 0 11.134 4.762 11.131 10.765 0 4.17-1.946 7.308-4.995 8.938H24V0z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/houzz.svg������������������������������������0000664�0000000�0000000�00000000203�14753064456�0024775�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.27 0v24h8.05v-7.56h5.36V24h8.05V10.37L6.61 5.75V0z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hp.svg���������������������������������������0000664�0000000�0000000�00000001016�14753064456�0024230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.007 24h-.357l2.459-6.745h3.38c.59 0 1.236-.454 1.442-1.017l2.665-7.308c.44-1.196-.247-2.171-1.525-2.171h-4.698l-3.93 10.798-2.225 6.127A11.995 11.995 0 0 1 0 12.007C0 6.498 3.71 1.855 8.765.44L6.47 6.759 2.65 17.255h2.542l3.256-8.916h1.91l-3.256 8.916h2.541l3.022-8.325c.44-1.195-.247-2.17-1.525-2.17H8.998l2.46-6.746C11.635 0 11.814 0 11.992 0 18.628 0 24 5.372 24 12.007 24.014 18.629 18.642 24 12.007 24m7.267-15.675h-1.91l-2.678 7.336h1.91z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hsbc.svg�������������������������������������0000664�0000000�0000000�00000000316�14753064456�0024542�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m24 12.007-5.996 5.997V5.996zm-5.996-6.01H6.01l5.996 6.01 5.997-6.01zM0 12.006l6.01 5.997V5.996zm6.01 5.997h11.994l-5.997-5.997z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/htc.svg��������������������������������������0000664�0000000�0000000�00000000762�14753064456�0024406�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 14.75h-2.8c-.7-.05-1.15-.5-1.2-1.15v-1.15c.05-.65.6-1.25 1.2-1.25H24V9.95h-4.85c-.65.05-1.25.25-1.7.7-.4.4-.65 1.1-.7 1.75 0 .35-.05.85 0 1.15.05.75.3 1.3.7 1.7.4.45 1.05.7 1.7.7H24V14.7c0 .05-1.3.05-2 .05M8.5 10v1.25h2.95v4.7h1.25v-4.7h2.95V10Zm-1.3 2.35c0-.65-.25-1.25-.7-1.7-.5-.5-1.2-.7-1.7-.7H2.35c-.55 0-.95.2-1.15.35V8H0v8h1.25v-3.6c.05-.65.55-1.15 1.15-1.2.5-.05 1.95-.05 2.4 0 .65.05 1.1.55 1.15 1.2V16H7.2z"/></svg>��������������mkdocs-material-9.6.4/material/templates/.icons/simple/htcvive.svg����������������������������������0000664�0000000�0000000�00000001026�14753064456�0025272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.225 19.046a14.3 14.3 0 0 1-4.222.642 14.3 14.3 0 0 1-4.223-.642c-1.56-.505-2.525-2.066-2.203-3.672.596-2.938 2.111-5.508 4.268-7.482a3.19 3.19 0 0 1 4.36 0c2.112 1.928 3.627 4.544 4.27 7.482.275 1.606-.643 3.213-2.25 3.672m7.574-1.47L14.894 2.2a1.49 1.49 0 0 0-1.33-.78h-3.076a1.49 1.49 0 0 0-1.331.78L.207 17.577c-.276.505-.276 1.101 0 1.56l1.56 2.663c.276.504.78.78 1.331.78h17.763c.551 0 1.056-.276 1.331-.78l1.561-2.663c.321-.505.321-1.101.046-1.56"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/html5.svg������������������������������������0000664�0000000�0000000�00000000433�14753064456�0024654�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.5 0h21l-1.91 21.563L11.977 24l-8.564-2.438zm7.031 9.75-.232-2.718 10.059.003.23-2.622L5.412 4.41l.698 8.01h9.126l-.326 3.426-2.91.804-2.955-.81-.188-2.11H6.248l.33 4.171L12 19.351l5.379-1.443.744-8.157z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/htmlacademy.svg������������������������������0000664�0000000�0000000�00000001115�14753064456�0026111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0 2.524.994v17.368L12 24l9.476-5.638V.994L12.099.01zm8.236 17.657L12 22.557l-8.236-4.9v-7.119l8.2 4.881.014.885-5.626-3.349-.008.86 5.648 3.394.015.908-5.647-3.36-.008.86L12 19.01l5.703-3.412v-.862l-.008.004v-2.805l2.54-1.517v7.238zm-.006-8.162-2.254 1.328-1.04.613-4.96-2.951-.009.858 4.24 2.521-.037.023-.092.054-.602.355-3.5-2.083-.009.859 2.763 1.643-.652.436-.015.01-2.088-1.23-.008.858 1.37.807-1.395.837-8.16-4.85 8.172-4.912v.001zm.006-.864-8.28-4.882h-.002l-8.19 4.877V2.11L12 1.246l8.237.864v6.52z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/htmx.svg�������������������������������������0000664�0000000�0000000�00000000340�14753064456�0024600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 13.01v-2l7.09-2.98.58 1.94-5.1 2.05 5.16 2.05-.63 1.9Zm16.37 1.03 5.18-2-5.16-2.09.65-1.88L24 10.95v2.12L17 16zm-2.85-9.98H16l-5.47 15.88H8.05Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/htop.svg�������������������������������������0000664�0000000�0000000�00000001773�14753064456�0024605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.928 16.738v7.233h1.414v-7.233zm10.912 0v7.233h1.414v-7.233zm2.179 0v7.233h1.414v-7.233zm-4.366 0v7.233h1.414v-7.233zm-13.089 0v7.233h1.415v-7.233zm2.183 0v7.233h1.414v-7.233zM24 16.771l-.02 7.178-2.16-.008v-1.257h.827v-4.745h-.814V16.76zm-24-.009.02 7.178 2.16-.008v-1.257h-.827v-4.744h.814v-1.18zm6.928-8.356v7.233h1.414V8.406zm2.182 0v7.233h1.414V8.406zm2.181 0v7.233h1.414V8.406zm4.362 0v7.233h1.414V8.406zm2.187 0v7.233h1.414V8.406zm2.179 0v7.233h1.414V8.406zm-17.455 0v7.233h1.415V8.406zm2.183 0v7.233h1.414V8.406zm8.726 0v7.233h1.415V8.406zM24 8.433l-.02 7.178-2.16-.008v-1.257h.827V9.601h-.814V8.422zM0 8.43l.02 7.178 2.16-.008v-1.257h-.827V9.599h.814v-1.18zM6.928.029v7.233h1.414V.029zm8.725 0v7.233h1.414V.029zm4.366 0v7.233h1.414V.029zm-2.179 0v7.233h1.414V.029zm-15.276 0v7.233h1.415V.029zm2.183 0v7.233h1.414V.029zM24 .055l-.02 7.178-2.16-.009V5.967h.827V1.223h-.814V.044zM0 .052.02 7.23l2.16-.008V5.965h-.827V1.221h.814V.041z"/></svg>�����mkdocs-material-9.6.4/material/templates/.icons/simple/httpie.svg�����������������������������������0000664�0000000�0000000�00000000630�14753064456�0025117�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.28 0C4.4 0 1.992 2.279 1.933 5.155a5.263 5.263 0 0 0 5.26 5.358h4.223a.306.306 0 0 1 .122.584l-6.47 2.835a5.26 5.26 0 0 0-3.135 4.85C1.953 21.683 4.368 24 7.273 24h2.212c2.922 0 5.357-2.345 5.35-5.267a5.26 5.26 0 0 0-3.29-4.867.303.303 0 0 1-.007-.556l7.402-3.246a5.26 5.26 0 0 0 3.128-4.846C22.047 2.317 19.626.003 16.724.003z"/></svg>��������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/huawei.svg�����������������������������������0000664�0000000�0000000�00000002410�14753064456�0025102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.67 6.14S1.82 7.91 1.72 9.78v.35c.08 1.51 1.22 2.4 1.22 2.4 1.83 1.79 6.26 4.04 7.3 4.55 0 0 .06.03.1-.01l.02-.04v-.04C7.52 10.8 3.67 6.14 3.67 6.14M9.65 18.6c-.02-.08-.1-.08-.1-.08l-7.38.26c.8 1.43 2.15 2.53 3.56 2.2.96-.25 3.16-1.78 3.88-2.3.06-.05.04-.09.04-.09zm.08-.78C6.49 15.63.21 12.28.21 12.28c-.15.46-.2.9-.21 1.3v.07c0 1.07.4 1.82.4 1.82.8 1.69 2.34 2.2 2.34 2.2.7.3 1.4.31 1.4.31.12.02 4.4 0 5.54 0 .05 0 .08-.05.08-.05v-.06c0-.03-.03-.05-.03-.05M9.06 3.19a3.42 3.42 0 0 0-2.57 3.15v.41c.03.6.16 1.05.16 1.05.66 2.9 3.86 7.65 4.55 8.65.05.05.1.03.1.03a.1.1 0 0 0 .06-.1c1.06-10.6-1.11-13.42-1.11-13.42-.32.02-1.19.23-1.19.23m8.299 2.27s-.49-1.8-2.44-2.28c0 0-.57-.14-1.17-.22 0 0-2.18 2.81-1.12 13.43.01.07.06.08.06.08.07.03.1-.03.1-.03.72-1.03 3.9-5.76 4.55-8.64 0 0 .36-1.4.02-2.34m-2.92 13.07s-.07 0-.09.05c0 0-.01.07.03.1.7.51 2.85 2 3.88 2.3 0 0 .16.05.43.06h.14c.69-.02 1.9-.37 3-2.26l-7.4-.25zm7.83-8.41c.14-2.06-1.94-3.97-1.94-3.98 0 0-3.85 4.66-6.67 10.8 0 0-.03.08.02.13l.04.01h.06c1.06-.53 5.46-2.77 7.28-4.54 0 0 1.15-.93 1.21-2.42m1.52 2.14s-6.28 3.37-9.52 5.55c0 0-.05.04-.03.11 0 0 .03.06.07.06 1.16 0 5.56 0 5.67-.02 0 0 .57-.02 1.27-.29 0 0 1.56-.5 2.37-2.27 0 0 .73-1.45.17-3.14"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hubspot.svg����������������������������������0000664�0000000�0000000�00000001152�14753064456�0025306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.164 7.93V5.084a2.2 2.2 0 0 0 1.267-1.978v-.067A2.2 2.2 0 0 0 17.238.845h-.067a2.2 2.2 0 0 0-2.193 2.193v.067a2.2 2.2 0 0 0 1.252 1.973l.013.006v2.852a6.2 6.2 0 0 0-2.969 1.31l.012-.01-7.828-6.095A2.497 2.497 0 1 0 4.3 4.656l-.012.006 7.697 5.991a6.18 6.18 0 0 0-1.038 3.446 6.2 6.2 0 0 0 1.147 3.607l-.013-.02-2.342 2.343a2 2 0 0 0-.58-.095h-.002a2.033 2.033 0 1 0 2.033 2.033 2 2 0 0 0-.1-.595l.005.014 2.317-2.317a6.247 6.247 0 1 0 4.782-11.134l-.036-.005zm-.964 9.378a3.206 3.206 0 1 1 3.215-3.207v.002a3.206 3.206 0 0 1-3.207 3.207z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/huggingface.svg������������������������������0000664�0000000�0000000�00000007276�14753064456�0026106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.445 11.506c0 1.102.167 2.158.484 3.156-.038-.003-.069-.006-.106-.006-.42 0-.801.16-1.07.452-.345.373-.498.833-.431 1.293a1.6 1.6 0 0 0 .214.597 1.43 1.43 0 0 0-.484.758c-.065.245-.131.754.215 1.28a2 2 0 0 0-.063.105c-.208.392-.22.837-.037 1.25.279.626.97 1.118 2.313 1.647.835.329 1.599.54 1.605.543 1.105.284 2.104.427 2.97.427 1.417 0 2.475-.384 3.152-1.144 1.538.265 2.79.14 3.592.006.677.755 1.733 1.139 3.147 1.139.864 0 1.864-.143 2.969-.428.006-.002.77-.214 1.605-.543 1.343-.53 2.034-1.021 2.313-1.647a1.4 1.4 0 0 0-.037-1.25 2 2 0 0 0-.063-.105c.346-.525.28-1.035.215-1.28a1.43 1.43 0 0 0-.484-.758q.166-.27.215-.597c.066-.46-.087-.92-.432-1.293a1.43 1.43 0 0 0-1.07-.452l-.06.002c.317-.996.485-2.052.485-3.152 0-5.807-4.736-10.514-10.579-10.514-5.842 0-10.578 4.707-10.578 10.514m10.578-9.483c5.273 0 9.548 4.246 9.548 9.483a9.4 9.4 0 0 1-.27 2.236l-.011-.015a1.42 1.42 0 0 0-1.108-.506c-.352 0-.714.115-1.076.344-.24.151-.506.422-.78.76-.253-.35-.607-.584-1.013-.647a1.5 1.5 0 0 0-.235-.018c-.926 0-1.482.8-1.693 1.518-.105.243-.607 1.348-1.361 2.098-1.169 1.16-1.446 2.353-.84 3.638a9.3 9.3 0 0 1-2.365-.006c.59-1.212.363-2.439-.843-3.632-.755-.75-1.256-1.855-1.361-2.098-.21-.718-.767-1.518-1.694-1.518q-.117 0-.234.018c-.406.063-.76.297-1.014.646-.273-.337-.539-.608-.779-.76-.362-.228-.724-.343-1.076-.343-.427 0-.81.17-1.082.478a9.4 9.4 0 0 1-.26-2.193c0-5.237 4.275-9.483 9.547-9.483m-3.379 4.98a1.36 1.36 0 0 0-.629 2.563c.351.186.489-.526.836-.648.311-.11.841.399 1.008.086a1.36 1.36 0 0 0-.562-1.84 1.37 1.37 0 0 0-.653-.16m6.84 0a1.36 1.36 0 0 0-1.215 2c.168.314.698-.195 1.009-.085.347.122.486.835.838.648a1.36 1.36 0 0 0 .562-1.84 1.37 1.37 0 0 0-1.193-.722M5.729 8.423a.877.877 0 0 0-.877.877c0 .484.393.877.877.877a.877.877 0 0 0 .877-.877.877.877 0 0 0-.877-.877m12.644 0a.88.88 0 0 0-.88.877c0 .484.395.877.88.877a.877.877 0 0 0 .876-.877.877.877 0 0 0-.877-.877m-9.58 3.037c-.178-.003-.279.11-.279.416 0 .81.388 2.125 1.428 2.924.207-.712 1.346-1.283 1.508-1.201.232.116.22.441.608.726.388-.285.374-.61.605-.726.163-.082 1.301.489 1.508 1.201 1.04-.799 1.428-2.114 1.428-2.924 0-1.221-1.583.64-3.541.649-1.469-.007-2.727-1.056-3.264-1.065m-4.48 3.018c.58.365 1.696 2.275 2.106 3.018a.66.66 0 0 0 .582.353c.418 0 .746-.414.039-.94-1.064-.79-.692-2.084-.184-2.164a.4.4 0 0 1 .066-.004c.462 0 .666.79.666.79s.596 1.49 1.622 2.508c.942.935 1.062 1.703.496 2.666-.016-.004-.016.023-.148.215a1.9 1.9 0 0 1-.72.615c-.505.227-1.139.27-1.783.27-1.037 0-2.101-.183-2.697-.337-.03-.007-3.65-.956-3.192-1.822.077-.145.204-.203.364-.203.646 0 1.823.955 2.328.955.113 0 .196-.086.228-.203.225-.805-3.278-1.052-2.984-2.164.052-.197.193-.276.39-.276.854 0 2.77 1.493 3.173 1.493q.046 0 .064-.028c.201-.322.11-.586-1.309-1.44-1.418-.853-2.431-1.328-1.865-1.94.065-.072.157-.102.27-.102.86 0 2.894 1.84 2.894 1.84s.549.568.881.568a.2.2 0 0 0 .186-.105c.235-.395-2.186-2.219-2.323-2.971-.092-.51.064-.768.356-.768 0 .008.17-.029.494.176m16.226.592c-.137.752-2.558 2.576-2.323 2.97.044.074.11.106.186.106.332 0 .88-.568.88-.568s2.034-1.84 2.896-1.84c.112 0 .204.03.269.101.566.613-.447 1.088-1.865 1.942-1.419.853-1.51 1.116-1.309 1.44q.018.027.064.027c.402 0 2.318-1.493 3.172-1.493.198 0 .34.079.391.276.294 1.112-3.21 1.36-2.984 2.164.032.117.115.203.228.203.505 0 1.682-.955 2.328-.955.16 0 .287.058.364.203.459.866-3.163 1.815-3.192 1.822-.596.154-1.66.336-2.697.336-.636 0-1.261-.04-1.764-.26a1.9 1.9 0 0 1-.739-.624c-.04-.069-.102-.148-.142-.205-.573-.968-.455-1.738.49-2.676 1.026-1.019 1.621-2.508 1.621-2.508s.205-.79.666-.79a.4.4 0 0 1 .067.004c.508.08.88 1.374-.184 2.165-.707.525-.38.94.04.94a.66.66 0 0 0 .581-.354c.41-.743 1.527-2.653 2.106-3.018.559-.353.99-.182.85.592"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hugo.svg�������������������������������������0000664�0000000�0000000�00000001216�14753064456�0024565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.754 0a4 4 0 0 0-2.049.596L3.33 4.532a4.25 4.25 0 0 0-2.017 3.615v8.03a4.13 4.13 0 0 0 2.067 3.574l6.486 3.733a3.88 3.88 0 0 0 3.835.018l7.043-3.966a3.82 3.82 0 0 0 1.943-3.323V7.752a3.57 3.57 0 0 0-1.774-3.084L13.817.541a4 4 0 0 0-2.063-.54zm.022 1.674c.413-.006.828.1 1.2.315l7.095 4.127c.584.34.941.96.94 1.635v8.462c0 .774-.414 1.484-1.089 1.864l-7.042 3.966a2.2 2.2 0 0 1-2.179-.01l-6.485-3.734a2.45 2.45 0 0 1-1.228-2.123v-8.03c0-.893.461-1.72 1.221-2.19l6.376-3.935a2.3 2.3 0 0 1 1.19-.347zm-4.7 3.844V18.37h2.69v-5.62h4.46v5.62h2.696V5.518h-2.696v4.681h-4.46V5.518Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/humblebundle.svg�����������������������������0000664�0000000�0000000�00000001033�14753064456�0026266�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.895 19.341c-3.384 0 1.826-19.186 1.826-19.186L16.233.151s-1.427 4.515-2.37 9.533h-3.005c.078-1.032.116-2.076.099-3.114-.135-8.26-4.974-6.73-7.14-4.835C1.758 3.538.033 6.962 0 9.6c.328-.016 1.624-.022 1.624-.022S2.702 4.66 6.086 4.66c3.385 0-1.834 19.187-1.834 19.187l3.49.002s1.803-5.136 2.7-10.872l2.87-.017c-.167 1.485-.22 3.124-.196 4.646.136 8.26 4.956 6.488 7.122 4.593s3.782-5.9 3.762-7.822c.002-.002-1.645.013-1.665.013.006.152-1.056 4.951-4.44 4.951"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/humhub.svg�����������������������������������0000664�0000000�0000000�00000000715�14753064456�0025116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.709 7.78a3.88 3.88 0 0 0-2.451-3.844L11.945.27a3.88 3.88 0 0 0-4.418 1.146l-6.36 7.73a3.895 3.895 0 0 0-.274 4.563l5.387 8.463c.904 1.417 2.628 2.129 4.256 1.708l9.685-2.51c1.627-.421 2.79-1.88 2.89-3.56l.089-2.192s.165-1.303-1.37-1.325c-1.13-.015-.986.962-1.975 1.568-.793.486-3.358.726-4.024-1.93 0 0-.778-2.334.704-4.495s3.168-1.012 3.826-.097c1.31 1.824 3.252.987 3.238-.382z"/></svg>���������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hungryjacks.svg������������������������������0000664�0000000�0000000�00000011646�14753064456�0026163�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.868.215C1.284.215 0 1.476 0 3.032v17.936c0 1.555 1.284 2.817 2.868 2.817h18.264c1.584 0 2.868-1.262 2.868-2.817V3.032C24 1.476 22.716.215 21.132.215zm9.033 1.82c6.143 0 9.46 2.233 9.743 4.487.043.333.016 1.012.016 1.012v10.585s-.03.612-.325 1.112c-1.067 1.808-4.108 2.674-9.434 2.674s-8.367-.866-9.434-2.674c-.295-.5-.324-1.112-.324-1.112s0-10.679-.003-10.813v-.532c.003-.093.009-.18.018-.252.283-2.254 3.6-4.488 9.743-4.488zm-.13.537c-5.685 0-8.714 1.97-9.08 3.953-.086.455.197.611.48.611H20.37c.283 0 .566-.156.48-.611-.366-1.983-3.395-3.953-9.08-3.953zM6.692 8.21c-.19 0-.47.098-.47.325v1.917c0 .525.658.895 1.232.895s1.233-.37 1.233-.895V8.536c0-.227-.28-.325-.47-.325-.192 0-.471.098-.471.325v1.73c0 .127-.154.2-.292.2s-.29-.073-.29-.2v-1.73c0-.227-.28-.325-.471-.325zm2.75 0c-.195 0-.482.134-.482.38v2.531c0 .246.287.362.483.362s.481-.147.481-.362v-.943c0-.069.09-.055.132 0 0 0 .611.786.814 1.044.203.257.316.26.484.26.196 0 .482-.116.482-.36V8.59c0-.245-.286-.38-.482-.38s-.483.135-.483.38v.935c0 .07-.087.058-.148-.02l-.766-.996c-.117-.156-.265-.298-.514-.298zm4.325 0c-.978 0-1.658.666-1.658 1.628 0 1.133.725 1.645 1.649 1.645.715 0 1.364-.278 1.364-.789v-.89c0-.234-.152-.329-.396-.329h-.69c-.346 0-.422.228-.422.405s.06.419.413.419c.097 0 .126.007.126.07.012.167-.1.266-.42.266-.392 0-.615-.354-.615-.784s.18-.815.699-.815c.185 0 .275.003.58.141.307.138.475-.022.55-.126.077-.104.158-.332-.036-.504-.264-.23-.644-.337-1.144-.337m-10.08.136c-.194 0-.477.11-.477.346v2.445c0 .234.283.346.476.346.194 0 .476-.112.476-.346v-.713c0-.076.054-.097.114-.097h.474c.06 0 .11.021.11.097v.713c0 .234.282.346.475.346.194 0 .476-.112.476-.346V8.693c0-.235-.282-.346-.476-.346-.193 0-.476.11-.476.346v.653c0 .073-.041.1-.105.1h-.486c-.056 0-.106-.027-.106-.1v-.653c0-.235-.282-.346-.476-.346zm12.185 0c-.23 0-.477.12-.477.345v2.465c0 .225.283.322.477.322.193 0 .475-.097.475-.322v-.638c0-.06.055-.079.093-.033l.677.862c.138.177.486.163.648.062.18-.111.313-.358.174-.534l-.53-.678c-.022-.03-.027-.056.018-.09.333-.222.417-.55.417-.836 0-.319-.274-.925-1.074-.925zm4.293 0c-.174-.008-.384.052-.463.2l-.36.566c-.029.05-.062.049-.09.004l-.358-.57c-.105-.197-.441-.233-.619-.168-.232.084-.343.337-.239.535l.706 1.154c.053.092.077.144.076.236v.834c0 .235.285.346.48.346s.48-.111.48-.346v-.834c0-.092.006-.133.074-.233l.707-1.157c.105-.198-.012-.445-.239-.535a.5.5 0 0 0-.155-.031zm-3.636.545c.305 0 .372.133.372.344s-.161.338-.354.338c-.124 0-.193.003-.193-.056V8.96c.035-.046.063-.068.175-.068zM5.163 12.166c-.264 0-.649.164-.649.51v2.599c.028.413-.244.52-.349.214-.15-.367-.526-.287-.67-.214s-.351.26-.264.615c.153.543.543.907 1.291.913 1 0 1.284-.625 1.284-1.297l.005-.07v-2.76c0-.346-.384-.51-.648-.51m2.634 0c-.246.008-.654.115-.75.458L5.97 16.122c-.108.336.188.629.447.675.232.042.633-.132.702-.435l.062-.206c.017-.065.046-.08.1-.08h1.034c.074 0 .08.03.095.08l.062.206c.07.303.47.477.702.435.259-.046.556-.339.447-.675l-1.075-3.498c-.1-.349-.504-.45-.75-.458zm3.833 0c-1.252 0-2.122.949-2.122 2.318s.87 2.32 2.122 2.32c.542 0 .898-.152 1.148-.41.248-.244.143-.544.046-.692-.097-.149-.308-.366-.704-.18-.225.104-.248.128-.427.128-.663 0-.895-.548-.895-1.16h-.001c0-.613.233-1.175.896-1.175.187 0 .225.034.427.128.396.186.607-.031.704-.18.097-.148.202-.444-.046-.688-.279-.287-.618-.41-1.148-.41zm2.347 0c-.258 0-.635.164-.635.512v3.613c0 .348.377.512.635.512s.635-.164.635-.512V15.3l-.001.014c0-.213.12-.096.12-.096l1.173 1.428s.28.375.774-.06c.494-.437.014-.897.014-.897s-.721-.849-.883-1.064c-.145-.194.04-.387.04-.387l.908-1.115c.22-.275.167-.545-.087-.763-.286-.246-.639-.238-.875.067l-1.057 1.277c-.05.068-.12.062-.126-.047v.003l-.001-.013.001.01v-.978c0-.348-.377-.512-.635-.512zm3.254 0c-.182 0-.33.138-.33.31.007.21.132.273.173.288.041.016.03.047.026.066a.34.34 0 0 1-.116.17c-.14.086-.002.266.113.257.128-.01.644-.452.443-.892a.34.34 0 0 0-.31-.2zm1.979 0c-.996 0-1.608.678-1.61 1.684-.001.61.525 1.019 1.052 1.126l.27.055c.123.029.29.097.29.289s-.103.372-.334.372c-.155 0-.197.04-.526-.13-.37-.19-.573.032-.665.175-.092.145-.19.433.045.67.3.282.66.396 1.266.396 1.102 0 1.609-.668 1.6-1.594-.006-.72-.502-1.133-1.073-1.28l-.305-.079c-.104-.028-.276-.105-.276-.263 0-.174.103-.317.301-.317.126 0 .178-.02.449.128.366.199.574-.031.666-.175.091-.143.19-.424-.045-.66-.308-.31-.565-.397-1.105-.397M7.725 14.212c.027-.002.054.022.068.075l.202.668c.02.062-.001.075-.071.075H7.51c-.038 0-.07-.026-.05-.075l.202-.666c.01-.048.036-.076.062-.077zm-4.554 3.665c-.283 0-.566.11-.48.473.516 1.98 3.395 3.018 9.08 3.018 5.684 0 8.563-1.037 9.08-3.018.085-.363-.198-.473-.48-.473h-8.6zm17.161 2.685c.288 0 .534.228.534.536a.53.53 0 0 1-.534.538.53.53 0 0 1-.536-.538c0-.308.246-.536.536-.536m0 .09a.43.43 0 0 0-.43.446c0 .259.189.45.43.45.239 0 .428-.191.428-.45a.43.43 0 0 0-.428-.446m-.21.128h.232c.144 0 .216.055.216.177 0 .11-.07.159-.159.17l.174.273h-.104l-.16-.269h-.107v.269h-.092zm.092.08v.192h.11c.079 0 .149-.006.149-.101 0-.077-.069-.09-.133-.09Z"/></svg>������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/husqvarna.svg��������������������������������0000664�0000000�0000000�00000002451�14753064456�0025635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c1.022 0 1.687.18 1.968.242-.14 1.307-.1 2.354 0 2.657.34 1.005 2.276 1.474 3.058 1.011.86-.522.664-2.11.664-3.156 0 0 1.268.3 2.046.593.632.238 1.563.703 1.563.703.185 1.324.01 3.282-1.292 3.946.982.985 1.312 2.152 1.732 4.304.34 1.93.26 3.28.24 4.405-.1 1.53-.1 2.355-.46 3.743-.52 1.589-.829 2.335-1.883 3.439C17.496 24.132 14.007 24 12 23.998c-2.007.002-5.494.134-7.635-2.111-1.055-1.104-1.363-1.85-1.883-3.439-.36-1.388-.36-2.213-.46-3.743-.021-1.125-.1-2.474.24-4.405.42-2.154.75-3.319 1.732-4.304-1.302-.664-1.477-2.622-1.292-3.946 0 0 .933-.465 1.563-.703C5.043 1.055 6.31.754 6.31.754c0 1.047-.196 2.632.664 3.156.782.461 2.716-.006 3.058-1.011.1-.303.14-1.35 0-2.657C10.313.18 10.979 0 12 0m-.003 21.125c2.342 0 3.09 0 4.251-.322.4-.142 1.122-.342 1.644-1.167.96-1.65.96-4.748.96-6.235 0-1.49 0-4.124-.96-5.754-.52-.844-1.233-1.078-1.644-1.186-1.186-.316-1.948-.297-4.251-.302h.001c-2.303.005-3.065-.014-4.251.302-.41.11-1.122.342-1.644 1.186-.96 1.63-.96 4.266-.96 5.754s0 4.586.96 6.235c.52.825 1.241 1.025 1.644 1.167 1.16.324 1.909.322 4.25.322M12 14.458c2.004 0 1.96.002 1.96.644v4.053h2.724V7.928H13.96V11.3c0 .664.044.662-1.96.662h.002c-2.003 0-1.96.002-1.96-.662V7.928H7.321v11.23h2.721v-4.056c0-.644-.04-.644 1.958-.644"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hyper.svg������������������������������������0000664�0000000�0000000�00000000260�14753064456�0024750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.565 17.91H24v1.964H13.565zm-3.201-5.09-9.187 8.003 2.86-7.004L0 11.179l9.187-8.002-3.11 7.451z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hyperskill.svg�������������������������������0000664�0000000�0000000�00000000777�14753064456�0026024�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 22.6a1.4 1.4 0 0 1-1.4 1.4h-1.2a1.4 1.4 0 0 1-1.4-1.4V1.4A1.4 1.4 0 0 1 19.4 0h1.2A1.4 1.4 0 0 1 22 1.4zm-8-14a1.4 1.4 0 0 1-1.4 1.4h-1.2A1.4 1.4 0 0 1 10 8.6V3.4A1.4 1.4 0 0 1 11.4 2h1.2A1.4 1.4 0 0 1 14 3.4zm-8.001 8a1.4 1.4 0 0 1-1.4 1.4H3.4A1.4 1.4 0 0 1 2 16.6V7.4A1.4 1.4 0 0 1 3.4 6h1.2A1.4 1.4 0 0 1 6 7.4v9.2zm8.001 4a1.4 1.4 0 0 1-1.4 1.4h-1.2a1.4 1.4 0 0 1-1.4-1.4v-5.2a1.4 1.4 0 0 1 1.4-1.4h1.2a1.4 1.4 0 0 1 1.4 1.4z"/></svg>�mkdocs-material-9.6.4/material/templates/.icons/simple/hyperx.svg�����������������������������������0000664�0000000�0000000�00000001406�14753064456�0025143�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.428 5.234c-.036-.005-.055.05-.055.05-.935 2.297-2.446 4.096-4.25 5.503-2.157-1.445-4.476-2.16-6.477-2.5l.508-1.695H10.56l-.445 1.496c-2.12-.194-3.61.004-3.664.008-.085.007-.108.027-.106.056.004.042.084.043.084.043 4.228.324 7.684 1.789 10.367 3.528C9.926 16.098.15 15.826.15 15.826c-.123-.002-.149.019-.15.065-.004.07.113.07.113.07 12.395 1.527 17.776-2.796 18.238-3.143 3.685 2.82 5.513 5.867 5.513 5.867.034.05.069.092.105.079.056-.02.02-.106.02-.106-1.062-3.053-2.666-5.243-4.475-6.808 2.846-2.757 2.926-6.242 2.945-6.499.01-.113-.01-.115-.03-.117zM4.939 6.592l-1.313 4.384h1.582l1.314-4.384Zm1.39 2.023-.222.748h3.625c-.09.297-.483 1.613-.483 1.613h1.594l.422-1.414a22 22 0 0 0-4.936-.947"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hypothesis.svg�������������������������������0000664�0000000�0000000�00000000734�14753064456�0026026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.425 0c-.93 0-1.71.768-1.71 1.72v17.14c0 .94.78 1.71 1.71 1.71h5.95l2.62 3.43 2.62-3.43h5.95c.93 0 1.72-.77 1.72-1.71V1.72c0-.95-.79-1.72-1.72-1.72zm1.71 3.43h2.58v6s.86-1.71 2.56-1.71c1.72 0 3.46.85 3.46 3.52v5.9h-2.58V12c0-1.39-.88-1.93-1.73-1.71-.86.21-1.71 1.12-1.71 3v3.85h-2.58zm12.86 10.29c.95 0 1.72.78 1.72 1.7a1.71 1.71 0 0 1-1.72 1.71 1.71 1.71 0 0 1-1.71-1.71c0-.92.76-1.71 1.71-1.71z"/></svg>������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hyprland.svg���������������������������������0000664�0000000�0000000�00000003751�14753064456�0025452�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.1.001c.07.075.116.112.147.158.57.842 1.13 1.69 1.708 2.527.333.482.687.949 1.042 1.414.343.451.706.887 1.05 1.338.397.522.8 1.04 1.169 1.582.473.693.95 1.388 1.359 2.118.348.622.626 1.285.892 1.948.188.47.314.965.449 1.454.062.226.08.466.116.7.045.285.121.57.126.857.012.747.077 1.496-.053 2.239a9.2 9.2 0 0 1-.74 2.36c-.36.765-.798 1.472-1.333 2.125-.485.592-1.054 1.081-1.67 1.53a7.6 7.6 0 0 1-1.438.83c-.458.2-.93.36-1.415.495-1.096.305-2.208.372-3.327.294-.675-.048-1.357-.13-2-.373-.528-.2-1.06-.397-1.566-.646a6.5 6.5 0 0 1-1.13-.719c-.46-.36-.91-.742-1.308-1.167a8 8 0 0 1-.94-1.258 11.4 11.4 0 0 1-.77-1.47c-.239-.545-.393-1.12-.518-1.71-.195-.916-.132-1.833-.092-2.747.022-.525.161-1.05.294-1.564.14-.54.31-1.078.515-1.598s.444-1.032.718-1.52c.343-.613.722-1.207 1.112-1.79.354-.531.737-1.043 1.122-1.552.31-.41.647-.799.961-1.206.317-.412.622-.833.93-1.252.324-.444.651-.887.965-1.339.398-.573.78-1.156 1.175-1.731.057-.082.139-.148.208-.22L10.9.13c.003.063.009.126.009.19 0 .938.005 1.876-.006 2.815a.83.83 0 0 1-.133.408c-.303.48-.613.956-.94 1.419-.31.438-.646.86-.97 1.289q-.4.53-.803 1.058c-.187.244-.383.482-.566.729-.255.346-.511.693-.75 1.051-.287.432-.57.869-.827 1.318-.185.322-.33.667-.485 1.004a5 5 0 0 0-.227.576c-.11.348-.199.702-.309 1.05-.31.978-.245 1.983-.175 2.977.035.504.217 1.003.37 1.493.215.686.582 1.294.997 1.88q.424.601.967 1.082c.3.263.624.505.965.71.388.233.792.456 1.216.609.453.163.93.285 1.408.345.567.072 1.146.056 1.72.083.532.025 1.049-.081 1.566-.183.656-.129 1.255-.412 1.838-.722.697-.37 1.283-.896 1.796-1.488.524-.605.964-1.285 1.244-2.032.296-.787.542-1.603.505-2.468-.02-.468.005-.94-.038-1.404-.032-.343-.129-.682-.22-1.016a12 12 0 0 0-.362-1.167c-.146-.378-.333-.74-.517-1.102a12 12 0 0 0-.523-.943 17 17 0 0 0-.737-1.085c-.394-.53-.81-1.045-1.209-1.572a93 93 0 0 1-1.382-1.866c-.389-.542-.76-1.098-1.13-1.653a.6.6 0 0 1-.108-.311c-.008-1.016-.005-2.031-.005-3.047 0-.034.009-.068.02-.158z"/></svg>�����������������������mkdocs-material-9.6.4/material/templates/.icons/simple/hyundai.svg����������������������������������0000664�0000000�0000000�00000002420�14753064456�0025262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18.162c-6.627 0-12-2.758-12-6.163 0-3.403 5.373-6.161 12-6.161 6.628 0 12 2.758 12 6.161 0 3.405-5.372 6.163-12 6.163M7.602 7.17C3.701 7.978.973 9.83.973 11.984c0 1.193.838 2.294 2.248 3.176.117.072.194.086.251.083.102-.006.16-.07.201-.146.028-.049.063-.123.097-.197.46-1.084 2.078-4.833 4.203-7.376a1 1 0 0 0 .104-.146c.046-.084.036-.151 0-.192-.058-.065-.224-.065-.475-.016m2.14 1.73c-1.173 2.849 1.047 2.496 1.648 2.363 1.02-.226 1.994-.613 2.774-.925 2.222-.889 3.402-1.78 3.793-2.123a2 2 0 0 0 .108-.099c.055-.058.097-.119.097-.2q0-.14-.237-.223l-.064-.025c-1.698-.541-3.724-.856-5.902-.856-.017 0-.059-.002-.117 0-.26.008-.55.066-.787.189-.778.404-1.116 1.423-1.313 1.899m10.585.003a4 4 0 0 0-.096.198c-.46 1.082-2.077 4.83-4.202 7.373a1 1 0 0 0-.104.147c-.05.084-.039.153 0 .193.057.064.223.065.474.016 3.9-.81 6.628-2.66 6.628-4.815 0-1.193-.836-2.293-2.247-3.175-.116-.073-.194-.087-.25-.083-.103.007-.16.07-.203.146M14.258 15.1c1.173-2.849-1.048-2.494-1.647-2.362-1.022.225-1.996.613-2.775.924-2.223.888-3.402 1.782-3.795 2.123q-.071.063-.106.1c-.057.057-.097.118-.097.2 0 .093.08.17.236.223.012.005.051.022.066.026 1.696.54 3.722.856 5.9.856h.118c.26-.009.552-.068.787-.19.778-.404 1.117-1.423 1.313-1.9"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/i18next.svg����������������������������������0000664�0000000�0000000�00000002007�14753064456�0025122�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.936 2.487v4.517l5.076 13.036s1.55 3.184-2.882 3.96H7.02s-4.132-.431-3.141-3.702L9.213 7.004V2.487zm2.09 13.108c-4.43-1.374-8.155-.637-9.975-.079l-1.836 4.419c-.783 2.499 2.273 2.941 2.597 2.98l.028.004h8.444c3.54-.598 2.511-2.972 2.415-3.177l-.007-.014zm-7.814.777c.79 0 1.43.386 1.43.865 0 .476-.64.864-1.43.864-.788 0-1.427-.388-1.427-.864 0-.479.639-.865 1.427-.865m5.084 0c.787 0 1.427.386 1.427.865 0 .476-.64.864-1.427.864-.79 0-1.429-.388-1.429-.864 0-.479.638-.865 1.43-.865m-4.5-5.213c-.552 0-1 .54-1 1.205 0 .666.448 1.205 1 1.205s1-.54 1-1.205c0-.666-.448-1.205-1-1.205m3.641-1.297c-.655 0-1.186.638-1.186 1.43 0 .786.531 1.426 1.186 1.426.653 0 1.187-.64 1.187-1.427 0-.79-.533-1.429-1.187-1.429m6.037-2.738s-2.122 1.546-4.086-.42V4.556s2.724-.6 4.086 2.568m-14.844 0c1.36-3.168 4.085-2.568 4.085-2.568v2.148c-1.965 1.966-4.085.42-4.085.42M15.044 0c.495 0 .895.439.895.981s-.4.98-.895.98h-6.09c-.492 0-.894-.438-.894-.98S8.462 0 8.955 0z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/i3.svg���������������������������������������0000664�0000000�0000000�00000002221�14753064456�0024133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.933 9.09a1.34 1.34 0 0 0 .031 1.896l6.973 6.945a1.342 1.342 0 1 0 1.893-1.901l-6.973-6.945a1.344 1.344 0 0 0-1.924.005m-1.66 7.176a426 426 0 0 0-1.338-1.339c-.377-.369-.829-.843-1.401-.856a1.7 1.7 0 0 0-.615.132c-.123.05-.383.276-.383.276a1.34 1.34 0 0 0-.394 1.122c.051.414.364.728.653.993.066.063.142.132.262.25.305.298.755.751 1.312 1.312 1.114 1.123 2.658 2.688 4.39 4.414 1.508 1.501 3.668 1.701 5.549 1.149s3.66-1.757 5.148-3.25 2.685-3.278 3.229-5.162.335-4.042-1.173-5.544l-6.22-6.194a1.34 1.34 0 0 0-1.923.005 1.34 1.34 0 0 0 .03 1.896l6.22 6.194c.739.736.858 1.619.488 2.898-.369 1.28-1.325 2.781-2.552 4.013-1.228 1.233-2.725 2.195-4.002 2.57-1.278.374-2.162.259-2.9-.476-1.723-1.716-3.261-3.275-4.38-4.403m-4.946-4.947c.522.52.524 1.376.004 1.897a1.347 1.347 0 0 1-1.897.004 1.35 1.35 0 0 1-.004-1.897 1.35 1.35 0 0 1 1.897-.004m5.364-5.386c.522.519.524 1.376.004 1.897a1.347 1.347 0 0 1-1.897.004 1.35 1.35 0 0 1-.004-1.897 1.347 1.347 0 0 1 1.897-.004M13.213.388c.521.52.523 1.376.004 1.897a1.347 1.347 0 0 1-1.897.004 1.347 1.347 0 0 1-.004-1.897 1.35 1.35 0 0 1 1.897-.004"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/iata.svg�������������������������������������0000664�0000000�0000000�00000004305�14753064456�0024543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3.417 19.695.98-4.885H5.99l-.973 4.884zm4.808-1.6h1.012l-.26-1.792zm-2.235 1.6 2.412-4.885h1.57l.99 4.884H9.487l-.088-.58H7.827l-.25.58zm6.439 0 .547-3.674h-1.394l.238-1.233h4.28l-.237 1.233h-1.327L14 19.695zm5.354-1.6h1.012l-.26-1.792zm-2.23 1.6 2.407-4.885h1.57l.99 4.884h-1.487l-.073-.58h-1.57l-.25.58zM24 9.289h-7.495c-.276 1.372-1.228 2.517-3.125 3.308.215.652.95 1.255 1.714 1.255h4.066c.62 0 1.112-.52 1.31-.94h-4.13c-.254-.044-.265-.25-.01-.271h4.06c.524 0 1-.448 1.276-.935h-4.73c-.237-.04-.237-.238 0-.277h4.77c.48 0 .918-.558 1.1-.934h-5.232c-.26-.033-.26-.277 0-.282H22.9c.415 0 .819-.454 1.1-.924m-24 0h7.495c.27 1.372 1.228 2.517 3.12 3.308-.216.652-.952 1.255-1.715 1.255H4.84c-.62 0-1.112-.52-1.311-.94h4.13c.25-.044.266-.25.01-.271H3.608c-.525 0-1-.448-1.272-.935H7.07c.238-.04.238-.238 0-.277H2.3c-.481 0-.918-.558-1.1-.934h5.232c.26-.033.26-.277 0-.282H1.106c-.42 0-.824-.454-1.106-.924m9.569-4.114c.277.238.586.448.918.58.282-.553.675-1.028 1.129-1.45a4.05 4.05 0 0 0-2.047.87M8.242 7.902h1.67a5.4 5.4 0 0 1 .454-1.91 4 4 0 0 1-1.002-.63 3.83 3.83 0 0 0-1.122 2.54m3.628-1.567V7.9H10.2a4.6 4.6 0 0 1 .414-1.815c.399.143.83.237 1.256.25m2.56-1.161a3.4 3.4 0 0 1-.917.58 5.2 5.2 0 0 0-1.134-1.443 4 4 0 0 1 2.052.863zM15.754 7.9h-1.665a5.1 5.1 0 0 0-.442-1.91c.354-.165.69-.375.984-.63a3.72 3.72 0 0 1 1.123 2.54M12.14 6.335V7.9h1.66c0-.631-.155-1.234-.415-1.815a4 4 0 0 1-1.245.25m-2.571 4.57c.277-.216.597-.454.918-.57.299.559.67 1.018 1.129 1.433a4.05 4.05 0 0 1-2.047-.863M8.242 8.173h1.67c.039.69.182 1.3.454 1.924a4.2 4.2 0 0 0-1.002.625 3.86 3.86 0 0 1-1.122-2.55zm3.628 1.57v-1.57H10.2c.01.63.154 1.255.414 1.814.399-.144.83-.232 1.256-.244m2.56 1.162a3.4 3.4 0 0 0-.917-.57 5.1 5.1 0 0 1-1.134 1.433 4.1 4.1 0 0 0 2.052-.863zm1.323-2.732h-1.665a5.1 5.1 0 0 1-.442 1.924c.354.166.674.366.984.625a3.8 3.8 0 0 0 1.123-2.55zm-3.612 1.57v-1.57h1.66c0 .63-.155 1.244-.415 1.814a4 4 0 0 0-1.245-.244m-.271-5.276a4.4 4.4 0 0 0-1.123 1.382c.36.122.74.222 1.123.222zm.27 0c.444.365.847.846 1.113 1.382a3.3 3.3 0 0 1-1.112.222zm-.27 7.146a4.2 4.2 0 0 1-1.123-1.388c.36-.128.74-.2 1.123-.2zm.27.01c.444-.37.847-.867 1.113-1.4a3.7 3.7 0 0 0-1.112-.197z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ibeacon.svg����������������������������������0000664�0000000�0000000�00000003060�14753064456�0025222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .053c-6.617 0-12 5.383-12 12 0 6.077 4.541 11.113 10.408 11.894v-.364C4.741 22.804.36 17.931.36 12.053.36 5.635 5.582.413 12 .413s11.64 5.222 11.64 11.64c0 5.878-4.38 10.751-10.048 11.53v.364C19.459 23.166 24 18.13 24 12.053c0-6.617-5.383-12-12-12m0 1.696c-5.653 0-10.251 4.598-10.251 10.25 0 5.112 3.76 9.362 8.66 10.129v-.366c-4.7-.763-8.3-4.85-8.3-9.762 0-5.454 4.437-9.89 9.891-9.89s9.891 4.436 9.891 9.89c0 4.912-3.6 8.999-8.3 9.762v.366c4.9-.767 8.66-5.017 8.66-10.128 0-5.653-4.598-10.25-10.251-10.25zm0 1.736c-4.695 0-8.515 3.82-8.515 8.515 0 4.151 2.986 7.618 6.923 8.365v-.367C6.671 19.256 3.845 15.952 3.845 12c0-4.496 3.659-8.155 8.155-8.155S20.154 7.504 20.154 12c0 3.952-2.825 7.256-6.562 7.998v.367c3.937-.747 6.923-4.214 6.923-8.365 0-4.695-3.82-8.515-8.515-8.515m0 1.725A6.8 6.8 0 0 0 5.21 12c0 3.196 2.22 5.883 5.198 6.602v-.372C7.63 17.52 5.57 14.996 5.57 12A6.437 6.437 0 0 1 12 5.57 6.437 6.437 0 0 1 18.43 12c0 2.996-2.06 5.52-4.838 6.23v.372c2.979-.719 5.198-3.406 5.198-6.602A6.8 6.8 0 0 0 12 5.21m0 1.749A5.047 5.047 0 0 0 6.959 12a5.05 5.05 0 0 0 3.45 4.782v-.38A4.69 4.69 0 0 1 7.318 12c0-2.58 2.1-4.68 4.681-4.68s4.68 2.1 4.68 4.68a4.69 4.69 0 0 1-3.088 4.402v.38A5.05 5.05 0 0 0 17.042 12 5.047 5.047 0 0 0 12 6.96zm0 1.737A3.31 3.31 0 0 0 8.696 12c0 1.245.692 2.33 1.712 2.894v-.42a2.943 2.943 0 1 1 3.184 0v.42A3.3 3.3 0 0 0 15.304 12 3.31 3.31 0 0 0 12 8.696m0 1.712A1.59 1.59 0 0 0 10.408 12 1.59 1.59 0 0 0 12 13.592 1.59 1.59 0 0 0 13.592 12 1.59 1.59 0 0 0 12 10.408"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/iberia.svg�����������������������������������0000664�0000000�0000000�00000000401�14753064456�0025051�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.356 11.563c4.53-3.254 9.047-5.217 13.547-5.723L24 2.978c-6.662 0-7.57 1.457-9.873 3.752M0 21.021c14.719 0 18.189-3.46 20.213-8.17l1.7-4.434c-4.958.143-12.441 3.066-17.673 8.324"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/iced.svg�������������������������������������0000664�0000000�0000000�00000001065�14753064456�0024531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.605 0-6.023 6.123 1.313 1.291 6.023-6.123zm-5.638.047L7.932 9.232l1.312 1.29 9.035-9.184zM9.699 1.775c-2.337 2.377-3.477 3.528-4.617 4.68a1972 1972 0 0 0-4.621 4.686l-.379.384 2.867 9.772L12.762 24l10.511-10.5-1.3-1.3-9.02 9.007-1.908-6.83 5.559-5.65-1.311-1.291-5.559 5.65-6.845-1.79C4.506 9.655 5.449 8.703 6.39 7.75c1.14-1.153 2.282-2.305 4.62-4.684L9.7 1.776zM21.605 6.73l-1.53 1.53-6.458 6.565 1.313 1.291 6.45-6.558 1.528-1.528zM2.46 13.088l6.812 1.781 1.895 6.783-6.738-1.857z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/iceland.svg����������������������������������0000664�0000000�0000000�00000002556�14753064456�0025232�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.744 13.919c-.942 0-1.256-.419-1.325-.768L9 12.593c0-1.884-1.151-2.232-1.884-2.232-.942 0-1.988.697-1.988 2.197 0 1.326.907 2.163 2.407 2.163.453 0 .942-.105 1.22-.21l-.139-.697c-.244.07-.593.105-.872.105m-.628-2.756c.384 0 .663.279.698.837l-1.5.314c.035-.733.314-1.151.802-1.151m6.07-.802c-.663 0-1.256.174-1.605.278 0 .036.14.698.175.768.384-.14.907-.244 1.256-.244.558 0 .802.174.802.558v.174c-1.744 0-2.477.628-2.477 1.43 0 .908.803 1.396 1.954 1.396a7 7 0 0 0 1.674-.21v-2.72c.035-.977-.558-1.43-1.779-1.43zm.628 3.523c-.105.035-.314.035-.419.035-.383 0-.837-.175-.837-.628 0-.454.384-.698 1.221-.663v1.256zm9-4.605v1.186a2.3 2.3 0 0 0-.593-.07c-1.012 0-2.093.698-2.093 2.198 0 1.326.872 2.128 2.302 2.128.593 0 1.29-.105 1.57-.174V9.279Zm0 4.64c-.105.035-.244.035-.314.035-.733 0-1.151-.524-1.151-1.396 0-.663.279-1.36 1.081-1.36.105 0 .314.035.384.035zM0 9.279h1.081v5.233H0Zm3.977 5.442c-1.221 0-2.023-.837-2.023-2.058 0-1.326.872-2.268 2.058-2.268.279 0 .628.07.837.175l-.21.732c-.139-.035-.314-.104-.453-.104-.663 0-1.116.558-1.116 1.395s.418 1.326 1.046 1.326c.175 0 .419-.035.628-.105l.175.733c-.21.07-.628.174-.942.174m5.651-5.442h1.081v5.233H9.628Zm9.872 5.233h-1.151v-2.686c0-.559-.28-.698-.698-.698-.21 0-.453.035-.628.07v3.314h-1.15V10.57a9.2 9.2 0 0 1 1.813-.21c1.256 0 1.814.454 1.814 1.396z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/icicibank.svg��������������������������������0000664�0000000�0000000�00000001215�14753064456�0025536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.926 2.096C19.279-1.648 12.698-.243 7.214 5.242 1.73 10.717-.573 18.204 2.074 21.948 2.947 23.186 4.258 23.85 5.813 24c1.051.008 1.913-1.185 2.615-2.777.726-1.668 1.17-3.218 1.514-4.66.508-2.293.544-3.934.29-4.278-.435-.58-1.432-.435-2.556.217-.544.3-1.26.1-.408-.933.861-1.043 4.26-3.563 5.493-3.953 1.342-.39 2.874.136 2.357 1.623-.37 1.085-5.047 13.486-1.596 12.272a22.3 22.3 0 0 0 3.264-2.709c5.484-5.475 7.787-12.962 5.14-16.706m-5.366 3.21c-1.097 1.096-2.52 1.486-3.137.851-.662-.634-.272-2.058.825-3.173 1.106-1.115 2.53-1.459 3.145-.834.635.644.245 2.05-.834 3.155"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/icinga.svg�����������������������������������0000664�0000000�0000000�00000001512�14753064456�0025054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.829.009a2.12 2.12 0 0 0-1.155.47 2.134 2.134 0 0 0-.306 3.004c.174.213.382.38.609.507l-2 4.153a4.1 4.1 0 0 0-4.076.641 4 4 0 0 0-.28.254L4.388 7.213A1.218 1.218 0 0 0 2.72 5.66a1.225 1.225 0 0 0 1.076 2.2q.146-.075.264-.181l2.184 1.786a4.097 4.097 0 0 0 .972 5.907L4.71 18.967a2.73 2.73 0 0 0-1.76-.484 2.762 2.762 0 1 0 2.962 2.548 2.74 2.74 0 0 0-.766-1.695l2.569-3.683a4.11 4.11 0 0 0 3.672-.05l1.444 2.411a.84.84 0 0 0-.263.509.86.86 0 1 0 .953-.755c-.057-.007-.11.01-.165.014L11.87 15.3c.072-.052.145-.101.214-.158a4.1 4.1 0 0 0 1.493-3.473l6.968-1.718c.326.484.888.788 1.511.742a1.678 1.678 0 1 0-1.797-1.548q.013.142.049.277l-6.81 1.68a4.1 4.1 0 0 0-.825-1.73 4.1 4.1 0 0 0-1.18-.985l2.017-4.189c.63.156 1.322.033 1.863-.408A2.135 2.135 0 0 0 13.829.008"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/icloud.svg�����������������������������������0000664�0000000�0000000�00000000527�14753064456�0025106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.762 4.29a6.51 6.51 0 0 0-5.669 3.332 3.6 3.6 0 0 0-1.558-.36 3.57 3.57 0 0 0-3.516 3A4.92 4.92 0 0 0 0 14.796a4.92 4.92 0 0 0 4.92 4.914 5 5 0 0 0 .617-.045h14.42c2.305-.272 4.041-2.258 4.043-4.589v-.009a4.594 4.594 0 0 0-3.727-4.508 6.51 6.51 0 0 0-6.511-6.27z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/icomoon.svg����������������������������������0000664�0000000�0000000�00000001747�14753064456�0025277�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c-1.66 0-3.21.313-4.66.938A12 12 0 0 0 3.5 3.5 12 12 0 0 0 .937 7.34C.313 8.79 0 10.34 0 12s.313 3.21.938 4.66A12 12 0 0 0 3.5 20.5a12 12 0 0 0 3.84 2.56c1.45.63 3 .94 4.66.94s3.21-.31 4.66-.94a12 12 0 0 0 3.84-2.56 12 12 0 0 0 2.56-3.84c.63-1.45.94-3 .94-4.66s-.31-3.21-.94-4.66A12 12 0 0 0 20.5 3.5 12 12 0 0 0 16.66.937C15.21.313 13.66 0 12 0M8.88 1.5a11.7 11.7 0 0 1 2.49 1.92 12.3 12.3 0 0 1 1.9 2.45c.53.9.93 1.86 1.23 2.9.28 1.03.43 2.11.43 3.23s-.15 2.2-.43 3.23a11.7 11.7 0 0 1-1.23 2.9 12.3 12.3 0 0 1-1.9 2.45c-.75.75-1.58 1.38-2.49 1.92a12 12 0 0 1-2.46-1.92 12.3 12.3 0 0 1-1.92-2.45 11.7 11.7 0 0 1-1.19-2.9A11.6 11.6 0 0 1 2.86 12c0-1.12.14-2.2.45-3.23a11.7 11.7 0 0 1 1.19-2.9 12.3 12.3 0 0 1 1.92-2.45C7.17 2.67 8 2.04 8.88 1.5m-.02 7.73c-.77 0-1.42.27-1.96.81A2.67 2.67 0 0 0 6.09 12c0 .77.27 1.42.81 1.96s1.19.81 1.96.81 1.42-.27 1.96-.81.81-1.19.81-1.96-.27-1.42-.81-1.96a2.67 2.67 0 0 0-1.96-.81"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/icon.svg�������������������������������������0000664�0000000�0000000�00000000775�14753064456�0024564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.927 23.935a2.4 2.4 0 0 1-1.882-1.883 2.4 2.4 0 0 1 2.82-2.82 2.4 2.4 0 0 1 1.882 1.882 2.4 2.4 0 0 1-2.82 2.82M21.135 4.768a2.4 2.4 0 0 1-1.882-1.882 2.4 2.4 0 0 1 2.82-2.82 2.4 2.4 0 0 1 1.882 1.882 2.4 2.4 0 0 1-2.82 2.82M12.021 6.01c1.147 0 2.219.324 3.13.883l2.585-2.585A9.583 9.583 0 0 0 4.328 17.716l2.586-2.586a5.99 5.99 0 0 1 5.107-9.12m5.107 2.86a5.99 5.99 0 0 1-8.237 8.237l-2.586 2.585A9.583 9.583 0 0 0 19.713 6.284Z"/></svg>���mkdocs-material-9.6.4/material/templates/.icons/simple/iconfinder.svg�������������������������������0000664�0000000�0000000�00000002234�14753064456�0025744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C4.492 2.746-.885 11.312.502 19.963.502 19.963 4.989 24 12 24s11.496-4.037 11.496-4.037C24.882 11.312 19.508 2.746 12 0m0 1.846s2.032.726 3.945 2.488c.073.067.13.163.129.277-.001.168-.128.287-.301.287a.5.5 0 0 1-.137-.027 6.5 6.5 0 0 0-2.316-.4 6.63 6.63 0 0 0-3.914 1.273l-.002.002a7.98 7.98 0 0 1 6.808.768C20.48 9.11 22.597 14.179 21.902 19c0 0-1.646 1.396-4.129 2.172a.37.37 0 0 1-.303-.026c-.144-.084-.185-.255-.1-.404a.5.5 0 0 1 .094-.103 6.6 6.6 0 0 0 1.504-1.809 6.63 6.63 0 0 0 .856-4.027l-.002-.002a7.95 7.95 0 0 1-3.838 5.383c-4.42 2.552-9.99 1.882-13.885-1.184 0 0-.388-2.124.182-4.662a.37.37 0 0 1 .176-.25c.145-.084.31-.033.396.117a.5.5 0 0 1 .045.13c.126.762.405 1.5.814 2.208a6.64 6.64 0 0 0 3.059 2.756 8 8 0 0 1-1.672-2.033 7.93 7.93 0 0 1-1.066-4.205C4.128 8.047 7.464 3.659 12 1.846m0 7.623c-2.726 0-5.117.93-6.483 2.332-.064.32-.1.65-.1.984 0 3.146 2.947 5.695 6.583 5.695 3.635 0 6.584-2.549 6.584-5.695 0-.334-.038-.664-.102-.984C17.116 10.4 14.724 9.469 12 9.469m0 .693a3.12 3.12 0 0 1 0 6.238 3.118 3.118 0 0 1-2.872-4.336 1.3 1.3 0 1 0 1.657-1.656A3.1 3.1 0 0 1 12 10.162"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/iconify.svg����������������������������������0000664�0000000�0000000�00000001147�14753064456�0025266�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 19.5c3.75 0 7.159-3.379 6.768-4.125-.393-.75-2.268 1.875-6.768 1.875s-6-2.625-6.375-1.875S8.25 19.5 12 19.5m4.125-12c.623 0 1.125.502 1.125 1.125v1.5c0 .623-.502 1.125-1.125 1.125A1.123 1.123 0 0 1 15 10.125v-1.5c0-.623.502-1.125 1.125-1.125m-8.25 0C8.498 7.5 9 8.002 9 8.625v1.5c0 .623-.502 1.125-1.125 1.125a1.123 1.123 0 0 1-1.125-1.125v-1.5c0-.623.502-1.125 1.125-1.125M12 0C5.381 0 0 5.381 0 12s5.381 12 12 12 12-5.381 12-12S18.619 0 12 0m0 1.5c5.808 0 10.5 4.692 10.5 10.5S17.808 22.5 12 22.5 1.5 17.808 1.5 12 6.192 1.5 12 1.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/iconjar.svg����������������������������������0000664�0000000�0000000�00000001462�14753064456�0025253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.15 5.875c-.492 0-.936-.453-.936-.954 0-1.155 2.858-2.01 6.11-2.01.295 0 .492 0 .492-.25 0-.452-.985-.602-.985-1.355C9.831.502 10.767 0 11.95 0s2.12.502 2.12 1.306c0 .753-.986.853-.986 1.355 0 .151.148.251.492.251 3.252 0 6.16.803 6.16 2.009a.944.944 0 0 1-.937.953H5.151zm14.732 4.568c1.183.753 1.626 2.109 1.43 3.365l-1.38 7.58C19.636 22.897 18.354 24 16.826 24H7.17c-1.526 0-2.808-1.104-3.104-2.611l-1.38-7.581a3.31 3.31 0 0 1 1.48-3.315c.69-.501.836-1.355 0-1.656-1.184-.452-.938-1.908.245-1.908h7.193c1.133 0 2.514.853 2.514 3.615s-1.282 2.51-1.282 4.468c0 .854.69 1.758 1.527 1.859 1.43.15 2.267-.402 2.267-2.41 0-2.06-1.182-3.013-1.182-4.72 0-2.059 1.28-2.863 2.118-2.863h2.07c1.182 0 1.43 1.457.246 1.909-.837.35-.69 1.205 0 1.656"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/icons8.svg�����������������������������������0000664�0000000�0000000�00000000242�14753064456�0025024�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0H0v24h12zm6 12a6 6 0 1 0 0-12 6 6 0 0 0 0 12m0 12a6 6 0 1 0 0-12 6 6 0 0 0 0 12"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/icq.svg��������������������������������������0000664�0000000�0000000�00000001627�14753064456�0024405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.189 0a3.784 3.784 0 0 0-3.055 5.93l1.741 2.562a1.855 1.855 0 0 0 3.334-.13l1.454-2.929h-.006A3.784 3.784 0 0 0 10.189 0m9.173 4.496a4.2 4.2 0 0 0-1.662.306 4.23 4.23 0 0 0-1.817 1.396l-2.214 2.837q-.038.047-.074.096l-.01.012a2.088 2.088 0 0 0 1.509 3.306l3.614.536-.003-.007a4.26 4.26 0 0 0 4.532-5.807 4.26 4.26 0 0 0-3.875-2.675M3.586 7.242A3.154 3.154 0 0 0 .55 9.628a3.15 3.15 0 0 0 3.903 3.804l2.539-.737a1.545 1.545 0 0 0 .742-2.673L5.79 8.118v.005a3.13 3.13 0 0 0-2.204-.881M13.9 13.959a1.886 1.886 0 0 0-1.858 2.233l.387 3.263.005-.003a3.846 3.846 0 0 0 6.134 2.574 3.846 3.846 0 0 0-.9-6.645l-2.877-1.197a1.9 1.9 0 0 0-.89-.225zm-5.55.08c-.377 0-.75.104-1.076.3L4.06 16.018l.006.003a4.2 4.2 0 0 0-1.593 1.485 4.24 4.24 0 0 0 1.342 5.843 4.24 4.24 0 0 0 5.845-1.332 4.2 4.2 0 0 0 .647-2.172l.108-3.45a2.08 2.08 0 0 0-2.062-2.356z"/></svg>���������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ieee.svg�������������������������������������0000664�0000000�0000000�00000004745�14753064456�0024544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.74 14.973h-.05v-.064h.04c.022 0 .051.002.051.03s-.015.034-.04.034zm.101-.03c0-.06-.04-.079-.109-.079h-.099v.265h.057v-.111h.027l.061.111h.068l-.069-.116c.036-.003.064-.02.064-.07m-.11.243c-.098 0-.176-.076-.176-.19 0-.113.078-.188.176-.188.095 0 .177.075.177.188 0 .114-.082.19-.177.19m-.247-.19c0 .156.116.247.247.247.13 0 .247-.09.247-.247a.24.24 0 0 0-.247-.246.24.24 0 0 0-.247.246M3.35 12.61c-.02.374-.025.72-.052 1.096.148.013.315.026.473.003l-.047-1.046-.009-.05c-.12.005-.234.01-.365-.003m-.926-1.051c-.182.091-.45.23-.421.48.04.136.187.224.304.28.647.286 1.506.295 2.19.083.168-.065.395-.16.426-.366-.002-.171-.183-.279-.313-.344v-.008a.6.6 0 0 1 .144-.039v-.004c-.228-.041-.45-.101-.671-.16.043.097.073.2.109.301q.1-.033.207-.047c.117.045.284.11.3.256.014.137-.136.204-.23.26-.501.181-1.065.2-1.588.06-.144-.045-.353-.103-.37-.287.102-.242.367-.292.588-.351-.114-.073-.23-.138-.34-.22-.119.007-.227.059-.335.106m1.107-1.46-.064.208-.326.932c.082.008.183 0 .263.008v.008l-.048 1.054.008.01c.104.01.234.016.34-.002V12.3l-.042-1.022.006-.035.286-.004a47 47 0 0 1-.414-1.14zm-.15-.469c.239-.163.453.065.639.195.717.578 1.393 1.238 1.909 1.984.065.096.094.246.036.355-.134.223-.314.426-.485.633v.011c-.426.454-.876.92-1.363 1.305-.237.144-.455.46-.761.264a11 11 0 0 1-1.927-1.82c-.096-.149-.246-.271-.312-.44-.093-.23.112-.394.229-.566.576-.71 1.291-1.407 2.034-1.92zm.6-.678-.266-.376c-.032-.02-.073-.052-.108-.062-.079-.034-.163.007-.227.056l-.48.624c-.769.953-1.68 1.843-2.673 2.525-.079.061-.195.121-.22.222-.026.091.022.166.078.223a13 13 0 0 1 2.234 1.94c.12.127.217.252.335.37.198.265.43.53.613.813.057.06.066.158.156.187.07.024.156.04.223 0l.066-.067a13.3 13.3 0 0 1 3.034-3.06c.117-.103.34-.142.343-.336a.3.3 0 0 0-.137-.226l-.02-.003c-.6-.408-1.159-.87-1.686-1.394l-.582-.609a17 17 0 0 1-.684-.827zm.039.672c.206.157.42.336.61.518l.034.02a10 10 0 0 1 1.405 1.592c.065.1.122.212.086.343-.133.332-.403.597-.639.887-.51.55-1.05 1.081-1.652 1.506-.122.086-.287.166-.433.097-.444-.232-.818-.613-1.207-.96-.45-.417-.902-.904-1.244-1.413a.4.4 0 0 1-.064-.253c.044-.176.165-.32.279-.469.403-.514.897-1.002 1.397-1.447.011-.012.032-.036.05-.047.215-.186.428-.35.652-.511.234-.182.529-.031.726.137m15.942-.197H24v1.028h-2.569v1.094h2.364v1.028H21.43V13.7H24v1.028h-4.038zm-4.859 0h4.037v1.028h-2.57v1.094h2.363v1.028H16.57V13.7h2.569v1.028h-4.037zm-4.86 0h4.037v1.028h-2.57v1.094h2.365v1.028H11.71V13.7h2.57v1.028h-4.038zm-2.24 0h1.469v5.301H8.004Z"/></svg>���������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ifixit.svg�����������������������������������0000664�0000000�0000000�00000001352�14753064456�0025120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.345 12.506 2.37 3.131c.198.261.211.69.025.961l-.119.177c-.181.27-.55.645-.814.831l-.285.201c-.266.195-.697.195-.956-.016l-3.135-2.369c-.255-.195-.681-.195-.94 0l-3.136 2.369c-.258.211-.689.211-.956.03l-.207-.135a4 4 0 0 1-.825-.81l-.181-.256a.87.87 0 0 1 .018-.96l2.377-3.149c.195-.256.195-.675 0-.945L6.197 8.43c-.194-.263-.203-.69-.013-.957l.2-.285c.187-.264.56-.629.828-.814l.175-.119c.27-.196.703-.182.961.014l3.135 2.37c.26.195.684.195.942 0l3.135-2.385c.258-.195.698-.226.979-.061l.33.195c.28.165.639.524.795.81l.12.21c.154.285.123.721-.075.99l-2.37 3.135c-.194.255-.194.676 0 .945zM12 0C5.37 0 0 5.373 0 12s5.37 12 12 12c6.627 0 12-5.373 12-12S18.627 0 12 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ifood.svg������������������������������������0000664�0000000�0000000�00000001053�14753064456�0024722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.428 1.67c-4.65 0-7.184 4.149-7.184 6.998 0 2.294 2.2 3.299 4.25 3.299l-.006-.006c4.244 0 7.184-3.854 7.184-6.998 0-2.29-2.175-3.293-4.244-3.293m11.328 0c-4.65 0-7.184 4.149-7.184 6.998 0 2.294 2.2 3.299 4.25 3.299l-.006-.006C21.061 11.96 24 8.107 24 4.963c0-2.29-2.18-3.293-4.244-3.293m-5.584 12.85 2.435 1.834c-2.17 2.07-6.124 3.525-9.353 3.17A8.91 8.91 0 0 1 .23 14.541H0a9.6 9.6 0 0 0 8.828 7.758c3.814.24 7.323-.905 9.947-3.13l-.004.007 1.08 2.988 1.555-7.623-7.234-.02Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ifttt.svg������������������������������������0000664�0000000�0000000�00000000517�14753064456�0024760�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 8.82h2.024v6.36H0zm11.566 0h-3.47v2.024h1.446v4.337h2.024v-4.337h1.446V8.82zm5.494 0h-3.47v2.024h1.446v4.337h2.024v-4.337h1.446V8.82zm5.494 0h-3.47v2.024h1.446v4.337h2.024v-4.337H24V8.82zM7.518 10.843V8.82H2.892v6.36h2.024v-1.734H6.65v-2.024H4.916v-.578z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/igdb.svg�������������������������������������0000664�0000000�0000000�00000003452�14753064456�0024534�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 6.228q-12 .001-24 0v11.543a89 89 0 0 1 2.271-.333 74 74 0 0 1 17.038-.28c1.57.153 3.134.363 4.69.614zm-.706.707v10.013a74.8 74.8 0 0 0-22.588 0V6.934zM7.729 8.84a2.62 2.62 0 0 0-1.857.72 2.55 2.55 0 0 0-.73 1.33c-.098.5-.063 1.03.112 1.51.177.488.515.917.954 1.196.547.354 1.224.472 1.865.401a3.24 3.24 0 0 0 1.786-.777c-.003-.724.002-1.449-.002-2.173-.725.004-1.45-.002-2.174.003.003.317 0 .634.001.951h1.105c.002.236 0 .473.002.71a1.7 1.7 0 0 1-.932.298c-.32.02-.65-.05-.922-.225a1.46 1.46 0 0 1-.59-.744c-.18-.499-.134-1.085.163-1.53.23-.355.619-.61 1.043-.647a1.8 1.8 0 0 1 1.012.206c.152.082.286.192.424.295q.344-.42.692-.838a3 3 0 0 0-.595-.403c-.418-.212-.892-.285-1.357-.283m11.66.086q-.14.002-.28 0c-.68.002-1.359-.004-2.038.003.003 1.666 0 3.332.002 4.998h2.497q.36-.003.709-.097c.276-.076.546-.208.742-.422.194-.208.297-.492.304-.776.016-.278-.032-.572-.195-.804-.175-.252-.453-.408-.734-.514.211-.122.407-.285.521-.505.134-.246.149-.535.117-.807a1.16 1.16 0 0 0-.436-.73c-.264-.207-.599-.304-.93-.334a3 3 0 0 0-.279-.012m-16.715 0v5.002h1.102V8.927q-.552-.002-1.102 0zm8.524 0v5.002h2.016a2.9 2.9 0 0 0 1.07-.211 2.44 2.44 0 0 0 1.174-.993c.34-.555.429-1.244.292-1.876a2.37 2.37 0 0 0-.828-1.338c-.478-.387-1.096-.577-1.707-.584zm6.949.967c.392.002.784-.001 1.176.002.183.011.38.054.51.19.11.112.136.28.112.43a.44.44 0 0 1-.22.316 1.1 1.1 0 0 1-.483.116c-.365.002-.73-.001-1.094.001q-.001-.527-.001-1.054zm-5.031.026c.28 0 .567.053.815.19.274.149.491.396.607.685.113.272.138.574.107.865a1.46 1.46 0 0 1-.335.786 1.43 1.43 0 0 1-.865.466c-.168.031-.34.022-.51.023h-.632V9.92zm5.03 1.948h1.36c.174.006.354.035.505.127a.45.45 0 0 1 .212.308c.025.15.004.32-.099.44-.102.12-.258.176-.409.2-.172.032-.348.02-.522.022-.35-.001-.698.002-1.047-.001z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ign.svg��������������������������������������0000664�0000000�0000000�00000002000�14753064456�0024370�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.38 7.66c.59-.9 1.359-1.67 2.26-2.26.13-1.18.31-2.26.52-3.21a10.6 10.6 0 0 0-6 6c.95-.22 2.03-.39 3.21-.52m10.97-2.3v.02c.9.59 1.67 1.37 2.27 2.27 1.18.13 2.26.31 3.21.52a10.63 10.63 0 0 0-6.02-6.01c.22.95.4 2.02.54 3.2m-8.7 13.26c-.9-.59-1.67-1.37-2.27-2.27h-.03c-1.19-.14-2.26-.32-3.19-.54 1.07 2.75 3.26 4.95 6.01 6.02-.22-.95-.39-2.03-.52-3.21m11-2.27h-.03c-.59.9-1.37 1.67-2.27 2.27v.03c-.14 1.17-.32 2.25-.54 3.19a10.6 10.6 0 0 0 6.03-6.03c-.94.22-2 .4-3.19.54M10.04.01h3.9c.85 1.85 1.2 4.59 1.3 5.52q.06.33.06.63L12 9.12 8.7 6.16c0-.17.02-.35.05-.55.1-.95.43-3.75 1.29-5.61M8.7 17.84c0 .17.02.35.05.55.1.95.43 3.75 1.29 5.61h3.9c.85-1.84 1.2-4.59 1.3-5.52.04-.22.06-.43.06-.64L12 14.88zM6.16 8.69c-.17 0-.35.02-.55.05-.95.12-3.75.45-5.61 1.31v3.9c1.84.85 4.59 1.19 5.52 1.3.22.04.43.06.64.06l2.95-3.3-2.95-3.3zM24 10.03c-1.86-.86-4.66-1.19-5.61-1.29-.2-.03-.38-.05-.55-.05l-2.96 3.3 2.96 3.3c.2 0 .41-.02.64-.06.93-.11 3.68-.45 5.52-1.3z"/></svg>mkdocs-material-9.6.4/material/templates/.icons/simple/iheartradio.svg������������������������������0000664�0000000�0000000�00000007074�14753064456�0026126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.403 21.983c.597 0 1.023-.306 1.023-.817v-.012c0-.489-.375-.784-1.017-.784H3.182v1.613zm-1.67-1.8c0-.125.102-.228.221-.228h1.489c.488 0 .88.148 1.13.398a1.1 1.1 0 0 1 .307.784v.011c0 .654-.443 1.034-1.062 1.154l.988 1.272c.046.051.074.102.074.164 0 .12-.114.222-.227.222-.091 0-.16-.05-.21-.12l-1.12-1.453h-1.14v1.346a.23.23 0 0 1-.228.227.227.227 0 0 1-.221-.227zm6.674 2.29-.914-2.035-.915 2.034zm-2.812 1.164 1.614-3.528c.056-.125.142-.2.284-.2h.022c.137 0 .228.075.279.2l1.613 3.522a.3.3 0 0 1 .029.113c0 .12-.097.216-.216.216-.108 0-.182-.074-.222-.165l-.415-.914H7.402l-.415.926c-.04.097-.113.153-.216.153a.204.204 0 0 1-.204-.204.26.26 0 0 1 .028-.12m6.078-.118c1.005 0 1.647-.682 1.647-1.563v-.011c0-.88-.642-1.574-1.647-1.574h-.932v3.148zm-1.38-3.335c0-.125.102-.228.221-.228h1.16c1.249 0 2.112.858 2.112 1.977v.012c0 1.119-.863 1.988-2.113 1.988h-1.159a.226.226 0 0 1-.221-.227zm4.481-.029c0-.124.103-.227.222-.227.125 0 .227.103.227.227v3.579a.23.23 0 0 1-.227.227.227.227 0 0 1-.222-.227zm5.027 1.801v-.011c0-.904-.659-1.642-1.568-1.642s-1.556.727-1.556 1.63v.012c0 .903.659 1.642 1.567 1.642.91 0 1.557-.728 1.557-1.631m-3.59 0v-.011c0-1.097.824-2.057 2.033-2.057s2.023.949 2.023 2.045v.012c0 1.096-.824 2.056-2.034 2.056s-2.022-.949-2.022-2.045m2.03-17.192c0 1.397-.754 2.773-2.242 4.092a.345.345 0 0 1-.458-.517c1.333-1.182 2.01-2.385 2.01-3.575v-.016c0-.966-.606-2.103-1.38-2.588a.345.345 0 1 1 .367-.586c.97.61 1.703 1.974 1.703 3.174zM14.76 7.677a.345.345 0 1 1-.337-.602c.799-.448 1.336-1.318 1.339-2.167a2.1 2.1 0 0 0-1.124-1.855.345.345 0 1 1 .321-.611 2.79 2.79 0 0 1 1.493 2.46v.011c-.004 1.09-.683 2.199-1.692 2.764m-2.772-1.015a1.498 1.498 0 1 1 .001-2.997 1.498 1.498 0 0 1-.001 2.997m-2.303.882a.345.345 0 0 1-.47.133c-1.009-.565-1.688-1.674-1.692-2.764v-.01a2.79 2.79 0 0 1 1.493-2.461.346.346 0 0 1 .321.611 2.1 2.1 0 0 0-1.124 1.855c.003.849.54 1.719 1.34 2.166a.345.345 0 0 1 .132.47M7.464 8.825a.344.344 0 0 1-.488.03C5.49 7.536 4.734 6.16 4.734 4.763v-.016c0-1.2.732-2.564 1.703-3.174a.346.346 0 0 1 .367.586c-.774.485-1.38 1.622-1.38 2.588v.016c0 1.19.677 2.393 2.01 3.575a.345.345 0 0 1 .03.487M16.152 0c-1.727 0-3.27.915-4.164 2.252C11.094.915 9.55 0 7.823 0A4.98 4.98 0 0 0 2.84 4.983c0 1.746 1.106 3.005 2.261 4.17l4.518 4.272a.371.371 0 0 0 .626-.27V9.827c0-.963.78-1.743 1.743-1.745a1.745 1.745 0 0 1 1.742 1.745v3.328c0 .326.39.493.626.27l4.518-4.272c1.155-1.165 2.261-2.424 2.261-4.17A4.98 4.98 0 0 0 16.152 0M4.582 14.766h1.194v1.612h1.532v-1.612H8.5v4.307H7.308v-1.637H5.776v1.637H4.582zm6.527 2.353a.563.563 0 0 0-.578-.587c-.308 0-.55.238-.578.587zm-2.264.305v-.012c0-.972.696-1.741 1.68-1.741 1.15 0 1.68.842 1.68 1.82 0 .075 0 .16-.007.24H9.971c.093.364.357.549.72.549.277 0 .498-.105.738-.34l.647.536c-.32.406-.782.677-1.447.677-1.045 0-1.784-.695-1.784-1.729m7.29-1.68h1.17v.67c.19-.454.498-.75 1.051-.725v1.23h-.098c-.609 0-.954.351-.954 1.12v1.034h-1.168zm2.95 2.295v-1.353h-.393v-.942h.393v-.842h1.17v.842h.775v.942h-.775v1.126c0 .234.105.332.32.332.153 0 .301-.043.442-.11v.916c-.209.117-.485.19-.812.19-.7 0-1.12-.307-1.12-1.1m-15.65-3.584a.62.62 0 1 0 0 1.24.62.62 0 0 0 0-1.24m10.502 3.952c-.303.013-.483-.161-.483-.371 0-.203.16-.307.454-.307h.667v.036c-.004.137-.06.617-.638.642m1.746-1.008c0-1.033-.739-1.729-1.784-1.729-.665 0-1.126.271-1.447.677l.647.536c.24-.234.461-.34.738-.34.359 0 .621.182.716.537l.001.025-.77.003c-.956.013-1.458.37-1.458 1.045 0 .65.464.999 1.262.999.432 0 .764-.17.987-.401v.32h1.106v-1.628l.002-.032zM3.458 15.99h-.043a.61.61 0 0 0-.61.61v2.474h1.263V16.6a.61.61 0 0 0-.61-.61"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ikea.svg�������������������������������������0000664�0000000�0000000�00000003163�14753064456�0024537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 7.2v9.6h24V7.2zm12.002 9.12C5.308 16.32.48 14.36.48 12s4.831-4.32 11.522-4.32S23.52 9.64 23.52 12s-4.824 4.32-11.518 4.32m-.225-6.062h4.176v.964c-.103-.047-.203-.047-.306-.047h-1.758v.46h1.689v.732h-1.689v.457h1.758c.103 0 .203 0 .306-.05v.967h-4.176c.052-.101.052-.198.052-.299V10.56c0-.101 0-.198-.052-.302m-7.076.302v2.881c0 .101 0 .198.052.299H2.4c.052-.101.052-.198.052-.299V10.56c0-.101 0-.198-.052-.299h2.353c-.052.101-.052.198-.052.299m6.447 2.881c.076.107.158.208.255.299H8.805c0-.101-.1-.306-.21-.467s-.705-1.044-.705-1.044v1.212c0 .101 0 .198.052.299H5.778c.052-.101.052-.198.052-.299V10.56c0-.101 0-.198-.052-.299h2.164c-.052.101-.052.198-.052.299v1.259s.691-.88.85-1.085c.12-.154.268-.373.268-.473h2.257c-.155.101-.327.282-.468.45l-.826.984s1.039 1.548 1.177 1.746m10.546-3.005a.18.18 0 0 0-.175-.178h-.21v.551h.083v-.195h.12l.11.195h.093l-.12-.212a.18.18 0 0 0 .099-.161m-.189.101h-.114v-.191h.124c.055 0 .093.047.093.101 0 .053-.048.093-.103.09m-.021-.457h-.031a.444.444 0 0 0-.437.457q0 .012-.003.023a.466.466 0 0 0 .482.447.464.464 0 0 0 .458-.47v-.017a.454.454 0 0 0-.469-.44m0 .823a.37.37 0 0 1-.375-.366v-.027a.357.357 0 0 1 .375-.339c.206 0 .375.165.375.366s-.168.366-.375.366m-.877-.339c-.038-.101-.093-.198-.065-.299h-3.017c.014.101-.024.198-.062.299l-1.07 2.881a.9.9 0 0 1-.162.299h1.785c-.014-.101.024-.198.058-.299s.072-.198.072-.198l.021-.054h1.304l.021.05c.048.118.083.198.083.198.041.101.079.198.069.299h2.263a.8.8 0 0 1-.169-.299 690 690 0 0 0-1.131-2.877m-2.167 1.893c.155-.42.289-.772.299-.806q.041-.112.062-.228.026.116.069.228l.316.806z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/iledefrancemobilites.svg���������������������0000664�0000000�0000000�00000001611�14753064456�0027773�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.54.001A5.461 5.447 0 0 1 24 5.447v13.107A5.461 5.447 0 0 1 18.54 24H5.459A5.461 5.447 0 0 1 0 18.553V5.446A5.461 5.447 0 0 1 5.46 0h13.081Zm-9.781 15.26c-1.365 1.816-2.503 3.405-3.925 5.334-.34.454-.057.624.398.34.512-.34.967-.736 1.309-1.247.3-.421.857-1.175 1.448-1.977l.595-.808c.33-.445.646-.876.914-1.243.796-1.135 2.047-1.023 2.9.17a398.137 397.144 0 0 0 3.242 4.481c.739 1.02 2.957.851 3.924.794.17 0 .228-.17.17-.283a310.878 310.103 0 0 0-4.663-6.467c-2.047-2.894-4.606-1.42-6.312.907ZM17.8 7.32c-2.9 1.474-3.809 1.304-6.255 1.701-2.445.34-4.266.908-6.313 3.064-.51.567-.74 1.021.058.624 2.9-1.475 3.81-1.305 6.254-1.702 2.446-.34 4.267-.907 6.314-3.064.512-.566.796-1.02-.057-.623Zm-5.06-4.142c-.966-.454-2.218.17-2.786 1.419-.569 1.19-.228 2.553.74 3.007.966.454 2.217-.17 2.786-1.42.568-1.246.228-2.609-.74-3.006"/></svg>�����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/imagedotsc.svg�������������������������������0000664�0000000�0000000�00000003114�14753064456�0025741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.658 15.812h.255a.437.437 0 0 1 .437.437v3.8a.437.437 0 0 1-.437.436h-3.8a.437.437 0 0 1-.437-.437v-.122l-2.837 1.648v.635c0 .615.498 1.113 1.113 1.113h8.121c.615 0 1.113-.498 1.113-1.113v-8.121c0-.615-.498-1.113-1.113-1.113h-4.056zm-.807-3.337 2.013-3.531c.304-.534.984-.72 1.518-.416l7.056 4.02c.534.305.72.985.416 1.52l-4.021 7.055c-.305.534-.984.72-1.519.416l-.627-.358v-3.265l.155.088a.437.437 0 0 0 .596-.163l1.881-3.301a.437.437 0 0 0-.163-.596l-3.301-1.882a.437.437 0 0 0-.596.164l-.145.253zm4.929-6.549a.437.437 0 0 1 .597.158l1.908 3.286a.437.437 0 0 1-.158.597l-.104.06 2.852 1.625.545-.317c.532-.308.712-.99.404-1.521l-4.08-7.023a1.113 1.113 0 0 0-1.52-.403L11.2 6.467c-.532.308-.713.99-.404 1.521l2.037 3.507 1.63-2.843-.129-.22a.437.437 0 0 1 .159-.598m-4.153.354h-.254a.437.437 0 0 1-.437-.437v-3.8a.437.437 0 0 1 .437-.436h3.8a.437.437 0 0 1 .437.436v.123l2.837-1.648v-.635c0-.615-.498-1.113-1.113-1.113H7.927c-.615 0-1.113.498-1.113 1.113v8.121c0 .615.498 1.113 1.113 1.113h4.056zm-2.455 3.333-.145.253a.437.437 0 0 1-.596.164l-3.3-1.882a.437.437 0 0 1-.164-.596L5.562 6.16a.437.437 0 0 1 .596-.163l.156.088V2.82l-.628-.358a1.113 1.113 0 0 0-1.519.416L.147 9.933a1.113 1.113 0 0 0 .415 1.518l7.056 4.021a1.113 1.113 0 0 0 1.518-.416l2.013-3.53zm3.28.984 2.037 3.507a1.113 1.113 0 0 1-.404 1.522l-7.022 4.078a1.113 1.113 0 0 1-1.522-.403L.176 14.186a1.113 1.113 0 0 1 .404-1.521l.546-.317 2.85 1.624-.103.06a.437.437 0 0 0-.158.598l1.908 3.286a.437.437 0 0 0 .597.158l3.286-1.908a.437.437 0 0 0 .158-.598l-.127-.22z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/imagej.svg�����������������������������������0000664�0000000�0000000�00000001221�14753064456�0025053�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.129 17.508H5.057a.187.187 0 0 1-.187-.187v-.444a.187.187 0 0 1 .187-.187h8.072a.187.187 0 0 1 .187.187v.444a.187.187 0 0 1-.187.187m5.623-12.195c-1.423.004-4.218-.01-5.641-.006a.404.404 0 0 0-.404.403v3.607c0 .222.18.403.404.403h1.747v8.19a1.83 1.83 0 0 1-.911 1.576 1.83 1.83 0 0 1-1.822 0 1.83 1.83 0 0 1-.912-1.578H6.941a6.11 6.11 0 0 0 3.047 5.278c.94.543 1.994.814 3.048.814s2.107-.271 3.047-.814a6.12 6.12 0 0 0 3.047-5.274V5.692a.38.38 0 0 0-.378-.379M7.455 15.231h3.276a.64.64 0 0 0 .64-.64V.64A.64.64 0 0 0 10.73 0H7.455a.64.64 0 0 0-.64.64v13.95c0 .354.286.64.64.64"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/imdb.svg�������������������������������������0000664�0000000�0000000�00000002527�14753064456�0024544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.378 0H1.622a1.72 1.72 0 0 0-1.62 1.595L0 22.378c.058.876.712 1.543 1.556 1.62l.045.002h20.797l.043-.002A1.723 1.723 0 0 0 24 22.29V1.71A1.72 1.72 0 0 0 22.415.002zm0 .496a1.214 1.214 0 0 1 1.125 1.214v20.58c0 .637-.487 1.16-1.104 1.214H1.602a1.214 1.214 0 0 1-1.106-1.126V1.628c.041-.61.522-1.092 1.126-1.132zM4.795 8.26v7.364H2.89V8.26zm6.537 0v7.364H9.671v-4.97L9 15.624H7.813l-.699-4.862-.006 4.862H5.44V8.26h2.468c.075.448.149.97.23 1.574l.272 1.871.44-3.445zm2.977 1.33q.112.06.142.203c.028.095.035.311.035.644v2.855c0 .488-.035.786-.096.895q-.092.171-.502.17V9.52c.204 0 .346.02.421.068m-.02 6.034c.454 0 .8-.027 1.024-.074q.345-.072.57-.265a.96.96 0 0 0 .324-.522c.061-.224.102-.665.102-1.322v-2.584q-.002-1.047-.074-1.403a1.3 1.3 0 0 0-.313-.644c-.169-.197-.42-.333-.745-.421-.32-.081-.854-.129-1.77-.129h-1.424v7.364zm5.14-1.783q-.001.529-.055.671c-.033.095-.19.142-.305.142-.108 0-.19-.047-.224-.135q-.06-.134-.06-.623v-1.947q.002-.501.054-.624.052-.121.217-.122c.115 0 .27.041.311.142q.061.145.061.604zm-2.475-5.58v7.363h1.715l.115-.468q.233.285.516.428c.182.088.46.135.678.135.304 0 .563-.075.78-.237a1.05 1.05 0 0 0 .42-.563c.054-.217.088-.543.088-.984v-2.067a7 7 0 0 0-.034-.868 1 1 0 0 0-.17-.42 1 1 0 0 0-.427-.333 1.929 1.929 0 0 0-1.342.013 1.6 1.6 0 0 0-.509.4v-2.4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/imessage.svg���������������������������������0000664�0000000�0000000�00000000650�14753064456�0025421�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.285 0A5.273 5.273 0 0 0 0 5.285v13.43A5.273 5.273 0 0 0 5.285 24h13.43A5.273 5.273 0 0 0 24 18.715V5.285A5.273 5.273 0 0 0 18.715 0ZM12 4.154a8.809 7.337 0 0 1 8.809 7.338A8.809 7.337 0 0 1 12 18.828a8.809 7.337 0 0 1-2.492-.303A8.656 7.337 0 0 1 5.93 19.93a9.929 7.337 0 0 0 1.54-2.155 8.809 7.337 0 0 1-4.279-6.283A8.809 7.337 0 0 1 12 4.154"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/imgur.svg������������������������������������0000664�0000000�0000000�00000007576�14753064456�0024765�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.147 3.043c-.002-.113-.069-.182-.189-.191a14 14 0 0 0-.51-.045l-.162-.01a22 22 0 0 0-1.085-.046l-.217-.005q-.259-.004-.532-.004l-.189-.001q-.442 0-.919.01l-.106.003a56 56 0 0 0-.87.026l-.237.009q-.502.02-1.027.049l-.012.001q-.537.032-1.095.071l-.275.021q-.455.034-.92.076l-.25.021q-.57.053-1.156.115-.12.014-.242.027-.479.053-.965.113l-.33.042q-.604.076-1.212.164a.6.6 0 0 0-.154.045.3.3 0 0 0-.097.074l-.003.002c-.045.055-.047.12.004.179q.002.006.005.012l3.488 3.456-6.629 6.596c-.069.067-.068.165 0 .251.856 1.093 1.44 1.793 2.143 2.492.699.703 1.398 1.286 2.493 2.143a.22.22 0 0 0 .132.051.17.17 0 0 0 .119-.051l6.597-6.629 3.455 3.488a.14.14 0 0 0 .101.047c.096 0 .187-.118.212-.292.746-5.141.882-10.051.634-12.31M15.87 24l6.356-6.357.026-.026.156-.155-.006-.006a3.14 3.14 0 0 0 .822-1.711c.804-5.53.903-10.591.654-12.952a2.9 2.9 0 0 0-.834-1.812 2.96 2.96 0 0 0-1.816-.855C20.458.042 19.476 0 18.318 0c-2.999 0-6.667.284-10.063.777a3.14 3.14 0 0 0-1.887.991L0 8.137V24zm1.528-6.707c-.151 0-.563.405-.563.613a.1.1 0 0 1-.099.1.1.1 0 0 1-.099-.1c0-.208-.411-.613-.563-.613a.1.1 0 0 1-.099-.1c0-.054.044-.098.099-.098.152 0 .563-.404.563-.614 0-.055.044-.098.099-.098.054 0 .099.043.099.098 0 .21.412.614.563.614a.1.1 0 0 1 0 .198M5.4 7.045c.197 0 .735-.528.735-.801a.13.13 0 0 1 .128-.129c.071 0 .128.058.128.129 0 .272.538.801.735.801.071 0 .128.057.128.128a.13.13 0 0 1-.128.128c-.197 0-.735.528-.735.801a.13.13 0 0 1-.128.128.13.13 0 0 1-.128-.128c0-.273-.538-.801-.735-.801a.128.128 0 0 1 0-.256m-3.99 3.26c0-.065.057-.098.119-.118.69-.228 1.269-.8 1.403-1.554.011-.064.053-.118.118-.118.066 0 .107.054.119.118.133.754.711 1.326 1.401 1.554.062.02.118.053.118.118s-.056.098-.118.119c-.69.227-1.269.799-1.403 1.553-.011.064-.053.119-.119.119-.065 0-.106-.054-.118-.119-.134-.754-.713-1.326-1.403-1.553-.061-.022-.117-.054-.117-.119m1.565 9.307c-.113 0-.42.302-.42.459 0 .04-.034.073-.074.073a.074.074 0 0 1-.074-.073c0-.157-.307-.459-.42-.459a.074.074 0 0 1-.074-.073c0-.039.034-.073.074-.073.113 0 .42-.302.42-.457 0-.042.033-.073.074-.073s.074.031.074.073c0 .155.307.457.42.457.04 0 .073.034.073.073a.073.073 0 0 1-.073.073m.568-3.047c-.14 0-.521.375-.521.568a.092.092 0 1 1-.183 0c0-.193-.381-.568-.521-.568a.09.09 0 0 1-.091-.09c0-.051.041-.092.091-.092.14 0 .521-.375.521-.568a.09.09 0 0 1 .092-.09.09.09 0 0 1 .091.09c0 .193.381.568.521.568a.091.091 0 0 1 0 .182m3.334 4.382c-.203 0-.758.546-.758.827 0 .073-.06.133-.132.133a.133.133 0 0 1-.133-.133c0-.281-.555-.827-.758-.827a.134.134 0 0 1-.133-.133c0-.073.059-.132.133-.132.204 0 .758-.545.758-.828 0-.071.06-.132.133-.132s.132.061.132.132c0 .283.555.828.758.828.074 0 .133.059.133.132a.133.133 0 0 1-.133.133m1.922-.806c-1.086-.851-1.869-1.498-2.653-2.287-.789-.784-1.436-1.566-2.287-2.654-.626-.8-.566-1.897.144-2.607l.001-.001.002-.001L9.364 7.26 7.149 5.066l-.003-.003-.002-.003c-.52-.52-.7-1.27-.472-1.958.148-.447.464-.802.867-1.049a2 2 0 0 1 .371-.19 2 2 0 0 1 .468-.131q.007-.001.014-.004C11.746 1.24 15.363.96 18.317.96h.002c1.125 0 2.072.041 2.818.121.469.046.903.249 1.228.576.328.331.525.767.562 1.237.243 2.311.144 7.253-.651 12.714-.001.01-.006.016-.007.025a2.3 2.3 0 0 1-.18.586q-.008.021-.018.042c-.333.699-1.001 1.163-1.771 1.163-.51 0-.992-.2-1.358-.567l-.003-.002-.004-.004-2.192-2.215-5.333 5.359-.001.002h-.001a1.94 1.94 0 0 1-1.378.573c-.44 0-.877-.151-1.231-.429m2.576 2.09c-.139 0-.518.373-.518.566a.09.09 0 0 1-.091.09.09.09 0 0 1-.09-.09c0-.193-.379-.566-.519-.566a.09.09 0 1 1 0-.18c.139 0 .519-.373.519-.566a.09.09 0 0 1 .09-.09c.05 0 .091.041.091.09 0 .193.379.566.518.566.05 0 .091.039.091.09s-.04.09-.091.09m2.115-2.437c.248 0 .922-.662.922-1.003 0-.088.072-.161.161-.161.088 0 .161.073.161.161 0 .341.674 1.003.921 1.003.089 0 .161.073.161.161a.16.16 0 0 1-.161.161c-.247 0-.921.662-.921 1.005a.16.16 0 0 1-.161.162.16.16 0 0 1-.161-.162c0-.343-.674-1.005-.922-1.005a.161.161 0 0 1 0-.322"/></svg>����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/immer.svg������������������������������������0000664�0000000�0000000�00000001646�14753064456�0024743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.27 14.333a2.272 2.272 0 0 1 0-4.543 2.272 2.272 0 0 1 0 4.543m19.46.858a3.12 3.12 0 0 1-1.822-.584c-.743.837-1.046 1.047-2.067 1.047-1.541 0-3.12-2.32-4.558-4.315 1.497-2.335 2.87-3.878 4.331-3.878 1.115 0 2.185.493 2.787 1.767a3.1 3.1 0 0 1 1.329-.296 3.1 3.1 0 0 1 1.17.226c-.88-2.599-2.997-3.913-5.113-3.913-2.335 0-4.06 2.16-5.576 4.629-1.783-2.432-3.483-4.63-5.923-4.63-2.077 0-4.154 1.287-5.044 3.83a3.1 3.1 0 0 1 .936-.142 3.1 3.1 0 0 1 1.718.514c.546-.773 1.245-1.235 2.007-1.21 1.537.052 2.928 1.85 4.687 4.325-1.28 1.959-2.923 3.868-4.31 3.868-1.057 0-2.074-.444-2.69-1.574a3.1 3.1 0 0 1-1.412.336c-.371.007-.734-.077-1.085-.185.932 2.417 2.972 3.64 5.013 3.64 2.326 0 3.931-2.056 5.525-4.615 1.748 2.464 3.5 4.724 5.992 4.724 2.025 0 4.297-1.333 5.223-3.75-.358.088-.724.2-1.118.186m0-5.401a2.272 2.272 0 0 0 0 4.543 2.272 2.272 0 0 0 0-4.543"/></svg>������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/immich.svg�����������������������������������0000664�0000000�0000000�00000002111�14753064456�0025064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.986.27C9.577.27 6.78 1.36 6.78 4.164v.152c1.343.597 2.935 1.663 4.412 2.971 1.572 1.391 2.838 2.882 3.653 4.287 1.4-2.503 2.336-5.478 2.347-7.373v-.037c0-2.803-2.796-3.895-5.205-3.895m7.512 4.49a3.6 3.6 0 0 0-1.191.186l-.145.047c-.152 1.461-.675 3.304-1.463 5.113-.837 1.925-1.862 3.59-2.947 4.8 2.813.557 5.93.527 7.736-.048q.02-.005.035-.01c2.667-.866 2.84-3.863 2.096-6.154-.628-1.933-2.08-3.89-4.12-3.933m-14.997.039C2.462 4.842 1.01 6.797.381 8.73c-.744 2.291-.57 5.288 2.096 6.155l.144.047c.982-1.093 2.487-2.277 4.188-3.278 1.808-1.064 3.619-1.808 5.207-2.148-1.949-2.105-4.489-3.913-6.287-4.51l-.036-.012A3.6 3.6 0 0 0 4.502 4.8m4.672 6.758c-2.604 1.202-5.109 3.06-6.233 4.586l-.021.029c-1.648 2.268-.027 4.795 1.922 6.21 1.948 1.417 4.852 2.177 6.5-.091l.09-.121c-.736-1.272-1.396-3.072-1.823-4.998-.453-2.05-.602-4-.435-5.615m1.072 3.338c.339 2.847 1.332 5.803 2.436 7.343l.021.03c1.648 2.268 4.551 1.507 6.5.091s3.57-3.943 1.922-6.21l-.088-.124c-1.437.307-3.352.38-5.316.19-2.09-.202-3.99-.663-5.475-1.32"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/imou.svg�������������������������������������0000664�0000000�0000000�00000002156�14753064456�0024600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.643 9.148A2.857 2.857 0 0 0 11.787 12a2.857 2.857 0 0 0 5.711 0 2.856 2.856 0 0 0-2.855-2.852m-9.819.006a2.5 2.5 0 0 0-2.502 2.498v2.954c0 .088.072.16.16.16h.973a.16.16 0 0 0 .16-.16v-2.954a1.21 1.21 0 0 1 2.418 0v2.954c0 .088.073.16.162.16h.971a.16.16 0 0 0 .162-.16v-2.954a1.21 1.21 0 0 1 2.418 0v2.954c0 .088.071.16.16.16h.973a.16.16 0 0 0 .16-.16v-2.954a2.5 2.5 0 0 0-2.502-2.498c-.737 0-1.397.321-1.855.828a2.5 2.5 0 0 0-1.858-.828M.16 9.285a.16.16 0 0 0-.16.16v5.16c0 .09.071.16.16.16h.963a.16.16 0 0 0 .162-.16v-5.16a.16.16 0 0 0-.162-.16zm18.29 0a.16.16 0 0 0-.163.16v1.45c0 .089.073.16.162.16h.963a.16.16 0 0 0 .16-.16v-1.45a.16.16 0 0 0-.16-.16zm4.427 0a.16.16 0 0 0-.162.16v1.45c0 .089.073.16.162.16h.963a.16.16 0 0 0 .16-.16v-1.45a.16.16 0 0 0-.16-.16zm-8.234 1.147c.866 0 1.57.703 1.57 1.568a1.57 1.57 0 0 1-3.143 0c0-.865.706-1.568 1.573-1.568m3.806 1.258a.16.16 0 0 0-.162.16v.08c0 1.544 1.2 2.861 2.746 2.92A2.86 2.86 0 0 0 24 12v-.15a.16.16 0 0 0-.16-.16h-.963a.16.16 0 0 0-.162.16V12a1.57 1.57 0 0 1-3.143 0v-.15a.16.16 0 0 0-.16-.16z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/improvmx.svg���������������������������������0000664�0000000�0000000�00000001474�14753064456�0025512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.043 7.203 7.326 9.757 7.309 4.75h1.66l6.13-.026h1.66l.009 4.998zm1.72-5.875.008 2.077-3.482.009V1.337h3.473zm4.341 9.11-.025-7.041h-2.98L15.09 0 8.96.017v3.405H5.98l.018 7.041-2.767 1.499.92 3.32a5.8 5.8 0 0 1 1.387.068l-.75-2.724 6.59-3.559.018 8.548h1.328l-.026-8.548 6.615 3.525-.715 2.656a5.8 5.8 0 0 1 1.345.085l.937-3.414-2.784-1.481zm-2.81 7.654a4.623 4.623 0 0 1-6.58 0 5.95 5.95 0 0 0-8.403 0l.91.91a4.657 4.657 0 0 1 6.582 0A5.9 5.9 0 0 0 12 20.748a5.9 5.9 0 0 0 4.197-1.746 4.657 4.657 0 0 1 6.581 0l.911-.91a5.95 5.95 0 0 0-8.403 0m.009 3.252a4.623 4.623 0 0 1-6.581 0 5.87 5.87 0 0 0-3.346-1.652v1.286a4.74 4.74 0 0 1 2.435 1.277A5.9 5.9 0 0 0 12 24a5.9 5.9 0 0 0 4.197-1.745 4.6 4.6 0 0 1 2.299-1.243v-1.303a5.9 5.9 0 0 0-3.21 1.635"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/indeed.svg�����������������������������������0000664�0000000�0000000�00000001176�14753064456�0025060�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.566 21.563v-8.762c.255.023.5.035.758.035 1.223 0 2.374-.32 3.35-.893v9.618c0 .822-.195 1.429-.575 1.834-.378.403-.88.605-1.491.605-.6 0-1.077-.202-1.468-.618-.378-.403-.574-1.01-.574-1.819M11.589.566c2.545-.893 5.442-.845 7.619.987.405.369.867.833 1.051 1.38.22.692-.77-.073-.906-.167-.71-.453-1.418-.833-2.212-1.094C12.86.387 8.812 2.709 6.295 6.315c-1.052 1.594-1.737 3.272-2.3 5.117-.06.202-.109.465-.22.642-.112.203-.048-.546-.048-.57.084-.763.244-1.5.441-2.237C5.33 5.337 7.897 2.066 11.59.566m4.928 7.059a3.02 3.02 0 1 1-6.04 0 3.02 3.02 0 1 1 6.04 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/indiansuperleague.svg������������������������0000664�0000000�0000000�00000006752�14753064456�0027341�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.598.11C8.954.1 7.555.583 6.943.88a8 8 0 0 0-.351.182C4.782 3.767 4.336 6.699 4.096 7.88c.264.307.527.588.8.85-1.072.038-2.032-.008-2.808-.155-.33.635-.617 1.202-.867 1.73-.222-.523-.406-1.02-.47-1.74-.333.397-.498.778-.556 1.116v.03c-.094.491-.148.973-.177 1.485-.037.68-.015 1.352.058 2.006a12.93 12.93 0 0 0 .277 1.56c.009.033-.008-.015.038.151 0 0 .07.254.072.246.838 2.879 2.312 4.764 4.357 6.381q.15.028.315.047c.313.286.653.561 1.113.88.715.302 1.604.675 2.775.995q.125-.2.342-.422c-.817-.505-1.304-.811-1.974-1.447.954-.069 1.996-.198 3.033-.328v-.004c.078-.667.181-1.268.347-2.024.577.486 1.145.919 1.848 1.434-.05.273-.078.51-.115.855.392.216.682.372.94.502q-.721.135-1.413.239c-.007.588 0 .61.135 1.115.858.298 1.036.339 1.777.51.346-.07.953-.223 1.356-.35h.004c.076-.305.1-.311.279-.766l-.336-.185c.617-.117 1.25-.262 1.877-.43 0 0 .323-.534 1.064-1.896-.182-.156-.61-.51-1.152-.955.313-.825.534-1.423.71-1.922a29 29 0 0 1 .778-.168c.476-1.374.652-1.872 1.506-4.037a33 33 0 0 0-.69-1.168c.204.175.425.364.702.605q.201-.08.402-.166a30 30 0 0 0 2.737-1.295v-.002c.312-1.566.343-2.414.382-3.592-.923-.839-1.54-1.293-2.478-1.972-.745.403-1.6.811-2.559 1.21-.123.052-.247.106-.375.153a28 28 0 0 1-.521 2.688c-.058-.073-.109-.14-.17-.215a48 48 0 0 0-4.473 1.14 39 39 0 0 0-.435 2.635q-.902.193-1.781.346a32 32 0 0 1-1.868-2.336c.216.096.427.19.662.289 1.336-1.036 2.359-1.865 3.29-2.68.332.162.681.33 1.091.526a48 48 0 0 0 2.672-2.307c-.588-1.73-.92-2.413-1.469-3.543l-.976-.273C13.432 1.427 12.939.52 12.939.488A7.4 7.4 0 0 0 10.598.11m6.88.783c-.879.284-1.626.671-1.646.671.25.684.417 1.391.566 2.016.978.502 1.673.974 2.237 1.36.588-.284 1.14-.517 1.652-.684-.149-.912-.355-1.515-.537-2.045-.847-.618-1.636-1.006-2.271-1.318M3.462 3.38l.002.002.002-.002zm.002.002c-.42.414-.822.852-1.192 1.32 0 0-.002.012-.005.016a31 31 0 0 0-.67 1.885q.225.217.549.417c.334-.465.793-1.06 1.142-1.507.17-.542.436-1.253.643-1.78a3 3 0 0 1-.467-.351m11.318.527c.449.925.774 1.67 1.237 2.986a48 48 0 0 1-2.145 1.854l-.61-.293a51 51 0 0 0 2.118-2.016 61 61 0 0 0-.977-2.636zM2.414 9.063c.862.127 1.863.156 2.967.1.724.605 1.557 1.12 2.666 1.657.582.875 1.29 1.805 2.238 2.909a49 49 0 0 0-.982 4.177c.387.372.73.687 1.06.977a22 22 0 0 0-.342 1.902c-1.174.145-2.343.277-3.337.317A22 22 0 0 1 4.57 19.79q-.251.248-.424.484c-1.53-1.43-2.632-3.104-3.29-5.556a4 4 0 0 1-.063-.272c.111-.163.245-.33.39-.502-.031-.762-.06-1.45.01-2.322.291-.732.717-1.584 1.221-2.56m14.832.935.227.291-.03.121.348.291c.682.9 1.132 1.59 1.68 2.547a79 79 0 0 0-1.323 3.55l-.216.05c.09-.267.183-.545.29-.871-1.613-1.574-1.873-1.843-3.337-3.336q-.9.24-1.797.443c.085-.65.199-1.314.35-2.115 2.16-.65 3.791-.96 3.808-.971m-14.09 3.006c-.305 1.126-.383 1.922-.449 2.627.643 1.145 1.344 2.005 1.914 2.695.668.073 1.418.098 2.234.076.07-.912.249-1.807.405-2.603-.854-1.08-1.41-1.988-1.858-2.715a17 17 0 0 1-2.246-.08m19.293 1.043c-.698.429-1.422.843-2.16 1.25-.214.796-.25.916-.685 2.348q.599.362 1.474.947c.643-.349 1.192-.727 1.799-1.098.062-.036.116-.073.174-.105.012 0 .02-.016.023-.028-.013-.013.034-.022.229-.476q.396-.84.668-1.74.014-.046.029-.088c-.385-.378-.392-.374-1.352-1.137zm-3.078 6.281c-.327.356-.784.803-1.133 1.137q.15.226.23.435a12 12 0 0 0 1.39-.584q.002-.001.003-.007c.375-.342.85-.84 1.196-1.204a2.5 2.5 0 0 0-.268-.52c-.465.263-.943.5-1.418.743m-2.523-.523c.292.24.534.44.699.578a96 96 0 0 1-.75 1.338c-.634.164-1.27.306-1.885.416a19 19 0 0 1-1.846-.895c.02-.169.047-.338.079-.517a43 43 0 0 0 3.66-.809z"/></svg>����������������������mkdocs-material-9.6.4/material/templates/.icons/simple/indiehackers.svg�����������������������������0000664�0000000�0000000�00000000241�14753064456�0026251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h24v24H0zm5.4 17.2h2.4V6.8H5.4zm4.8 0h2.4v-4h3.6v4h2.4V6.8h-2.4v4h-3.6v-4h-2.4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/indigo.svg�����������������������������������0000664�0000000�0000000�00000002543�14753064456�0025100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.99 0c-.25 0-.5.096-.691.287a.983.983 0 0 0 0 1.386.975.975 0 0 0 1.382 0 .983.983 0 0 0 0-1.386A.98.98 0 0 0 22.99 0m-2.444 1.959c-.25 0-.5.096-.691.287a.983.983 0 0 0 0 1.386.977.977 0 0 0 1.382 0 .981.981 0 0 0-.691-1.673M6.384 4.408a.98.98 0 0 0 0 1.959.979.979 0 0 0 0-1.959m2.928 0a.979.979 0 0 0 0 1.959.978.978 0 1 0 0-1.959m3.42 0a.979.979 0 0 0 0 1.959.98.98 0 0 0 0-1.959m2.931 0a.979.979 0 0 0 0 1.959.979.979 0 0 0 0-1.959m2.931 0a.978.978 0 1 0-.001 1.961.978.978 0 0 0 .001-1.961m-2.931 2.939a.98.98 0 0 0 0 1.958.98.98 0 0 0 0-1.958m2.931 0a.98.98 0 0 0 0 1.959.977.977 0 0 0 .976-.979.98.98 0 0 0-.976-.98m-5.373 1.959a.97.97 0 0 0-.691.287.979.979 0 0 0 1.382 1.386.981.981 0 0 0-.691-1.673m5.373.98a.979.979 0 0 0 0 1.959.979.979 0 0 0 0-1.959m-7.327 1.469a.979.979 0 0 0 0 1.959.979.979 0 0 0 0-1.959m7.327 1.47a.98.98 0 0 0 0 1.958.978.978 0 0 0 0-1.958m-9.282.489a.981.981 0 0 0-.69 1.673.975.975 0 0 0 1.381 0 .981.981 0 0 0-.691-1.673m-8.303 2.45a.978.978 0 1 0 .004 1.956.978.978 0 0 0-.004-1.956m2.931 0a.978.978 0 1 0 .004 1.956.978.978 0 0 0-.004-1.956m2.931 0a.978.978 0 0 0 0 1.958.978.978 0 0 0 0-1.958m11.723.489a.98.98 0 0 0 0 1.958.978.978 0 0 0 0-1.958m-11.723 2.45a.978.978 0 0 0 0 1.958.978.978 0 0 0 0-1.958m0 2.938a.979.979 0 0 0 0 1.959.979.979 0 0 0 0-1.959"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/inductiveautomation.svg����������������������0000664�0000000�0000000�00000003215�14753064456�0027717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.72 11.998c0-.616-2.647-4.598-2.647-4.598-.21-.362-.885-.362-1.507-.001s-.956.947-.745 1.31l.294.506.821 1.425H9.004l-1.43-.002c-.418 0-.758.61-.76 1.36v.004c.002.75.342 1.36.76 1.36l1.43-.001h3.932l-.82 1.424-.295.507c-.21.362.123.949.745 1.31.622.36 1.297.36 1.507-.002 0 0 2.647-3.982 2.647-4.598zM12 19.473a7.472 7.472 0 1 1 0-14.945 7.472 7.472 0 1 1 0 14.945M21.937 12q0-.483-.046-.955L24 9.63a12 12 0 0 0-.42-1.577l-2.534-.172a10 10 0 0 0-.958-1.655l1.116-2.274a12 12 0 0 0-1.156-1.157L17.773 3.91a10 10 0 0 0-1.656-.958L15.945.419A12 12 0 0 0 14.37 0l-1.415 2.108a10 10 0 0 0-1.912 0L9.631 0A12 12 0 0 0 8.05.422l-.17 2.531a10 10 0 0 0-1.657.958L3.95 2.795q-.616.54-1.156 1.157l1.119 2.274a10 10 0 0 0-.959 1.655L.42 8.053A12 12 0 0 0 0 9.63l2.109 1.413a9.8 9.8 0 0 0 0 1.913L0 14.369a12 12 0 0 0 .42 1.579l2.534.17q.402.877.959 1.653l-1.12 2.275q.542.618 1.16 1.158l2.274-1.117c.517.368 1.07.69 1.654.957l.17 2.534c.513.173 1.038.317 1.578.422l1.415-2.11c.315.029.632.048.956.048.321 0 .642-.02.957-.049L14.372 24a12 12 0 0 0 1.573-.422l.172-2.534c.584-.267 1.14-.589 1.657-.957l2.274 1.117q.616-.539 1.156-1.156l-1.115-2.274q.556-.777.957-1.656l2.532-.17a12 12 0 0 0 .422-1.58l-2.108-1.412a10 10 0 0 0 .045-.956m.658 6.056c.113 0 .315.021.315-.126 0-.094-.125-.111-.225-.111h-.246v.237zm.432.555h-.156l-.276-.425h-.155v.425h-.13v-.922h.401c.167 0 .329.045.329.243 0 .182-.126.25-.292.254zm.314-.457a.72.72 0 0 0-.716-.712.72.72 0 0 0-.717.712c0 .398.33.715.717.715a.72.72 0 0 0 .716-.715m-1.563 0c0-.468.373-.841.847-.841a.84.84 0 0 1 .847.841.84.84 0 0 1-.847.844.84.84 0 0 1-.847-.844"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/inertia.svg����������������������������������0000664�0000000�0000000�00000000260�14753064456�0025254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.901 5.331H0L6.669 12 0 18.669h6.901L13.571 12zm10.43 0H10.43L17.099 12l-6.67 6.669h6.902L24 12z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/infiniti.svg���������������������������������0000664�0000000�0000000�00000000570�14753064456�0025436�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.953 11.643c0 1.51 1.83 2.69 4.601 3.344l4.841-5.523H12l-4.19 8.06C3.25 16.744 0 14.71 0 12.233c0-3.184 5.376-5.757 12-5.757s12 2.573 12 5.757c0 2.477-3.25 4.511-7.81 5.293L12 9.464h.605l4.84 5.523c2.772-.654 4.601-1.834 4.601-3.344 0-2.664-4.484-4.88-10.047-4.88-5.562 0-10.046 2.216-10.046 4.88"/></svg>����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/influxdb.svg���������������������������������0000664�0000000�0000000�00000002471�14753064456�0025442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.778 14.482-2.287-9.959c-.13-.545-.624-1.09-1.169-1.248L9.87.051C9.74 0 9.584 0 9.426 0c-.443 0-.909.18-1.222.443L.716 7.412C.3 7.776.092 8.504.222 9.024l2.445 10.662c.13.545.624 1.092 1.169 1.248l9.775 3.015c.13.051.285.051.443.051.443 0 .91-.18 1.223-.443l8.007-7.435c.418-.39.624-1.092.494-1.64M10.962 2.417l7.175 2.21c.285.08.285.21 0 .286l-3.77.858c-.285.08-.674-.05-.883-.26l-2.626-2.834c-.235-.232-.184-.336.104-.26m4.47 12.872c.079.286-.105.444-.39.365l-7.748-2.392c-.285-.079-.338-.313-.13-.52l5.93-5.514c.209-.209.443-.13.52.156zM2.667 8.267l6.293-5.85c.21-.209.545-.18.754.025L12.86 5.85c.209.21.18.545-.026.754l-6.293 5.85c-.21.21-.545.181-.754-.025L2.64 9.024a.536.536 0 0 1 .026-.757zm1.536 9.284L2.54 10.244c-.08-.285.05-.34.234-.13L5.4 12.949c.209.209.285.624.209.909L4.462 17.55c-.079.285-.208.285-.26 0zm9.202 4.264-8.217-2.522a.547.547 0 0 1-.364-.675l1.378-4.421a.547.547 0 0 1 .675-.365l8.216 2.522c.285.079.443.39.364.675L14.08 21.45a.553.553 0 0 1-.674.365zm7.279-5.98L15.2 20.93c-.209.209-.31.13-.234-.155l1.144-3.694c.079-.285.39-.573.674-.624l3.77-.858c.288-.076.339.054.13.234zm.598-1.09-4.523 1.039a.534.534 0 0 1-.65-.39l-1.922-8.372a.534.534 0 0 1 .39-.65L19.1 5.335a.534.534 0 0 1 .649.39l1.923 8.371c.079.31-.102.596-.39.65Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/infomaniak.svg�������������������������������0000664�0000000�0000000�00000000437�14753064456�0025743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.4 0A2.395 2.395 0 0 0 0 2.4v19.2C0 22.93 1.07 24 2.4 24h19.2c1.33 0 2.4-1.07 2.4-2.4V2.4C24 1.07 22.93 0 21.6 0H10.112v11.712l3.648-4.128h6l-4.58 4.35 4.868 8.13h-5.52l-2.594-5.021-1.822 1.757v3.264H5.12V0Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/infoq.svg������������������������������������0000664�0000000�0000000�00000004502�14753064456�0024740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.931 8.321q-.672 0-1.23.191a3.03 3.03 0 0 0-1.835 1.728q-.28.676-.28 1.533.002 1.228.564 2.07l.007.01q.027.04.056.08l.023.032a3 3 0 0 0 .143.18l.018.02a2.95 2.95 0 0 0 1.32.87 3.8 3.8 0 0 0 1.215.18q.495 0 .94-.105a3.2 3.2 0 0 0 .81-.306 2.6 2.6 0 0 0 1.037.7q.364.133.786.175L24 14.504a2.6 2.6 0 0 1-.552-.122 2.3 2.3 0 0 1-.796-.465 3 3 0 0 0 .278-.454 3 3 0 0 0 .228-.633l.002-.006a4.5 4.5 0 0 0 .116-1.051q0-1.566-.915-2.51-.915-.942-2.43-.942M0 8.471v6.584h1.62V8.472Zm9.88 0q-.863 0-1.241.344-.38.345-.38 1.122a3 3 0 0 0 .02.342h-.753v.897h.752v3.879h1.48v-3.879h.92v-.897h-.92v-.187q0-.3.132-.4.13-.1.54-.1h.248V8.567a3.4 3.4 0 0 0-.797-.095zm10.051 1.23q.782 0 1.226.548.443.549.443 1.524-.001.415-.083.753a2 2 0 0 1-.051.184l-.013.04a2 2 0 0 1-.056.142l-.027.06a2 2 0 0 1-.097.178l-.026.04a1.5 1.5 0 0 1-.322.353l-.008.006-.008.005a1.4 1.4 0 0 1-.27.162q-.005 0-.008.003a1.5 1.5 0 0 1-.323.101h-.005l-.003.001a2 2 0 0 1-.369.034q-.782 0-1.225-.549a2 2 0 0 1-.102-.141l-.002-.002q-.046-.074-.087-.152l-.002-.004a2 2 0 0 1-.074-.163l-.012-.034a2.9 2.9 0 0 1-.164-1.017q0-.966.446-1.519.445-.553 1.222-.553m-6.577.3q-1.186 0-1.915.72-.728.72-.728 1.889.001.107.008.21v.002a3 3 0 0 0 .024.239l.002.016q.015.105.036.206l.012.052a3 3 0 0 0 .126.395l.032.072q.03.069.066.135l.05.089q.033.054.068.109.042.06.088.12l.05.066a2.4 2.4 0 0 0 1.253.793q.128.033.26.055h.001q.27.045.567.045 1.19 0 1.92-.717a2 2 0 0 0 .163-.176v-.002q.053-.064.098-.13.025-.03.047-.063.047-.07.088-.146.018-.029.034-.058.046-.086.084-.178l.015-.035a2 2 0 0 0 .075-.21l.004-.012v-.003a2.7 2.7 0 0 0 .099-.49 3 3 0 0 0 .02-.262v-.003c0-.04.004-.079.004-.12q0-1.173-.726-1.89c-.726-.717-1.126-.717-1.925-.717zm-7.74.046q-.447 0-.807.14a1.9 1.9 0 0 0-.645.429v-.455h-1.48v4.894h1.48v-2.882q0-.528.19-.744t.635-.216q.378 0 .553.232.175.231.175.728v2.882h1.48V12.1q0-1.042-.39-1.548-.39-.505-1.19-.505zm7.74 1.102a.99.99 0 0 1 .825.396q.307.396.307 1.065 0 .082-.004.16v.002q-.005.069-.013.134v.003l-.013.083q-.004.028-.009.054-.007.035-.015.068a2 2 0 0 1-.075.242 1.4 1.4 0 0 1-.092.184l-.02.035a1 1 0 0 1-.068.096.99.99 0 0 1-.823.396.99.99 0 0 1-.822-.394 1 1 0 0 1-.065-.093l-.027-.045a1.3 1.3 0 0 1-.107-.232l-.012-.034-.026-.088-.002-.007a2 2 0 0 1-.06-.364 3 3 0 0 1-.008-.2q0-.66.31-1.06a.98.98 0 0 1 .819-.401"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/informatica.svg������������������������������0000664�0000000�0000000�00000000312�14753064456�0026113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 0 3.547 10.788-4.5-1.255-.25 4.43 7.121 4.035V18h.001l5.919-6zm-.64.65L.162 12l6.32 6.407L12 24l5.184-5.255-9.736-3.856z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/infosys.svg����������������������������������0000664�0000000�0000000�00000003777�14753064456�0025333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.273 7.57a.725.725 0 1 0 0 1.452.725.725 0 0 0 0-1.452m0 .108c.34 0 .62.28.62.619a.619.619 0 1 1-.62-.62m-15.136.054c-.9 0-1.55.592-1.639 1.641h-.695v.522h.685c.003 1.666-.002 3.334-.002 4.998h.778q-.003-2.499-.002-4.998H9.01c-.646.524-1.067 1.373-1.067 2.334 0 1.593 1.157 2.884 2.582 2.884 1.426 0 2.582-1.291 2.582-2.884q0-.286-.048-.555c.256.413.748.613 1.408.898.778.33 1.213.617 1.213 1.108 0 .588-.556.895-1.182.89-.611 0-1.088-.249-1.62-.73v.924c.325.209.827.328 1.37.328.684-.003 2.092-.25 2.092-1.676-.005-.856-.715-1.224-1.486-1.559-.939-.465-1.297-.563-1.288-1.095 0-.71.618-.922 1.1-.922.21 0 .39.03.559.086.316.12.42.355.533.611.528 1.236 1.034 2.481 1.549 3.723a32 32 0 0 1-.717 1.527l-.004.01-.16.297-.18.336h.762c.332-.734 1.743-4.169 2.047-4.909.2.533.685.747 1.43 1.069.778.329 1.214.616 1.214 1.107 0 .589-.556.894-1.181.889-.635 0-1.126-.269-1.682-.787l-.05-.041v.941c.31.26.87.41 1.482.41.684-.002 2.091-.249 2.091-1.675-.004-.856-.715-1.226-1.486-1.56-.938-.466-1.26-.564-1.25-1.097 0-.709.579-.922 1.06-.922.549 0 .896.204 1.38.555v-.826a3.2 3.2 0 0 0-1.165-.19c-.89-.001-1.696.324-1.9 1.077l-1.105 2.734-.116.344-.101-.344c-.502-1.209-.994-2.424-1.486-3.63-.316-.084-.831-.202-1.194-.196h-.115c-1.03-.002-2.024.433-2.024 1.457q0 .089.006.17c-.412-.981-1.303-1.66-2.338-1.66q-.187 0-.367.027H7.254c-.12-.733.223-1.15.738-1.15.647 0 .924.192 1.205.45h.028c.003-.245.002-.531.002-.794-.185-.086-.506-.147-1.09-.147M0 7.756v7.137h.86V7.756zm23 .139v.765h.139v-.308h.164l.119.308h.154l-.14-.33c.049-.025.132-.052.132-.187 0-.223-.167-.248-.312-.248zm.139.132h.154c.083 0 .129.034.129.102s-.052.1-.117.1h-.166zM4.172 9.356c-.945 0-1.343.335-1.658.673a.3.3 0 0 0-.035.065H2.47v-.043l-.01-.623h-.754v5.465h.775v-3.997c.023-.49.714-.974 1.252-.974.648 0 1.178.436 1.178 1.039v3.932h.775l-.002-4.288c-.023-.483-.609-1.25-1.513-1.25m6.283.556c.974-.017 1.783 1.021 1.805 2.318s-.75 2.362-1.725 2.38c-.974.016-1.782-1.02-1.804-2.317s.75-2.363 1.724-2.38"/></svg>�mkdocs-material-9.6.4/material/templates/.icons/simple/infracost.svg��������������������������������0000664�0000000�0000000�00000001641�14753064456�0025615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.553.444 8.04 7.984h4.03c2.713 0 3.95 2.562 3.95 4.004v11.371c0 .354.286.641.638.641h6.664a.64.64 0 0 0 .639-.64c.004-3.295.039-10.078.039-15.377C24 3.34 20.312.334 16.68.005c-.421-.038-.828.139-1.127.44M0 .64C0 .287.288 0 .643 0h.804c.355 0 .643.287.643.64v6.72c0 .353-.288.64-.643.64H.643A.64.64 0 0 1 0 7.36zM3.618 0a.64.64 0 0 0-.643.64v6.72c0 .353.288.64.643.64h.804a.64.64 0 0 0 .643-.64V.64A.64.64 0 0 0 4.422 0zm2.975 0a.64.64 0 0 0-.643.64v6.72c0 .353.288.64.643.64H8.04L6.326 9.705c-.24.24-.376.566-.376.905v12.75c0 .354.288.64.643.64h.804a.64.64 0 0 0 .643-.64V.64A.64.64 0 0 0 7.397 0zM.377 15.625c-.241.24-.377.566-.377.905v6.83c0 .354.288.64.643.64h.804a.64.64 0 0 0 .643-.64v-9.054a.16.16 0 0 0-.274-.113zm2.598-2.055c0-.34.135-.665.377-.905l1.439-1.432a.16.16 0 0 1 .274.113V23.36c0 .354-.288.64-.643.64h-.804a.64.64 0 0 1-.643-.64z"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ingress.svg����������������������������������0000664�0000000�0000000�00000001145�14753064456�0025276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.55 6.55v10.9q0 .65-.55.95l-9.45 5.45q-.55.3-1.1 0L2 18.4q-.55-.3-.55-.95V6.55q0-.65.55-.95L11.45.15q.55-.3 1.1 0L22 5.6q.55.3.55.95M21 17.8l-3.9-2.25.5-.9 3.9 2.249V6.549l-.05-.048-8.95-5.2v4.5h-1v-4.5l-9 5.2v10.398l3.9-2.248.5.899L3 17.8l8.95 5.15h.1zM4.55 7.675q0-.024.05-.025h14.8q.05 0 .05.025v.075l-7.4 12.799q0 .05-.05.05t-.05-.05L4.55 7.75zm6.95 5.076q0-.45-.45-.7L6.9 9.65h-.05v.05l4.6 7.9q.05-.002.05-.051v-4.8zm.9-1.601 4.2-2.45H7.4l.05.051 4.15 2.399a.7.7 0 0 0 .8 0m4.75-1.45v-.05h-.05l-4.15 2.4q-.45.25-.45.749v4.8h.1z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/inkdrop.svg����������������������������������0000664�0000000�0000000�00000001611�14753064456�0025270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.854 1.812A3.7 3.7 0 0 1 11.607.02a3.68 3.68 0 0 1 2.656.77 3.7 3.7 0 0 1 .873 1.01c2.164 3.72 4.314 7.45 6.47 11.176.343.595.501 1.282.476 1.963a3.64 3.64 0 0 1-.463 1.658c-1.067 1.862-2.142 3.72-3.213 5.58a3.71 3.71 0 0 1-3.134 1.821c-2.17.004-4.339 0-6.508 0a3.71 3.71 0 0 1-3.137-1.8c-1.082-1.86-2.156-3.723-3.234-5.585a3.71 3.71 0 0 1-.007-3.628C4.534 9.256 6.698 5.537 8.854 1.813ZM4.625 14.15a1.19 1.19 0 0 0 0 1.184c1.074 1.863 2.085 3.627 3.174 5.482a1.19 1.19 0 0 0 1.02.585c2.169.004 4.219.013 6.388 0a1.19 1.19 0 0 0 1.018-.591c1.075-1.858 2.095-3.612 3.154-5.479a1.19 1.19 0 0 0-.004-1.176c-2.15-3.73-4.172-7.26-6.352-10.972a1.2 1.2 0 0 0-1.118-.58 1.19 1.19 0 0 0-.933.584A2975 2975 0 0 0 4.625 14.15Zm8.466 4.064a1.26 1.26 0 0 1-2.182 0l-2.164-3.748a1.26 1.26 0 0 1 1.091-1.89h4.328a1.26 1.26 0 0 1 1.091 1.89z"/></svg>�����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/inkscape.svg���������������������������������0000664�0000000�0000000�00000001746�14753064456�0025430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.666 14.871c.237.147 3.818.875 4.693 1.02.303.064.088.376-.33.587-.943.251-5.517-1.607-4.363-1.607m5.647-13.264 3.505 3.56c.333.34.328.998.142 1.187l-1.74-1.392-.342 2.061-1.455-.767-2.328 1.47-.771-3.1L9.073 6.79H7.16c-.78 0-.871-.99-.163-1.698 1.237-1.335 2.657-2.696 3.429-3.485.776-.793 2.127-.77 2.887 0M9.786.97l-8.86 9.066c-2.993 3.707 2.038 3.276 4.194 4.343.774.791-2.965 1.375-2.191 2.166.773.791 4.678 1.524 5.453 2.314.773.791-1.584 1.63-.81 2.42.773.792 2.563.042 2.898 1.868.238 1.304 3.224.56 4.684-.508.774-.791-1.48-.717-.706-1.508 1.923-1.967 3.715-.714 4.373-2.686.325-.974-2.832-1.501-2.057-2.292 2.226-1.3 9.919-2.146 6.268-5.796L13.85.97c-1.123-1.078-2.998-1.09-4.063 0zm10.177 17.475c0 .45 3.314.745 3.314-.106-.472-1.366-2.922-1.274-3.314.106m-14.928 2.39c.784.679 1.997-.169 2.36-1.116-.76-1.01-3.607.037-2.36 1.116m14.512-1.466c-1.011.908.114 1.828 1.111 1.242.222-.225-.006-1.016-1.11-1.242Z"/></svg>��������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/inoreader.svg��������������������������������0000664�0000000�0000000�00000000305�14753064456�0025571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c6.627 0 12 5.373 12 12s-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0m3.6 4.8a3.6 3.6 0 1 0 0 7.2 3.6 3.6 0 0 0 0-7.2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/insomnia.svg���������������������������������0000664�0000000�0000000�00000000525�14753064456�0025442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.136 3.458a8.542 8.542 0 1 1-7.9 5.286A3.322 3.322 0 1 0 8.88 4.1a8.5 8.5 0 0 1 3.256-.642M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m0 1.22c5.953 0 10.78 4.827 10.78 10.78S17.953 22.78 12 22.78 1.22 17.953 1.22 12 6.047 1.22 12 1.22"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/inspire.svg����������������������������������0000664�0000000�0000000�00000000442�14753064456�0025274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm3.873 3.688a1.874 1.874 0 1 1 .003 3.747 1.874 1.874 0 0 1-.003-3.747m4.49.507h3.532l6.734 10.813h.045V4.195H22v16.118h-3.547L11.736 9.522h-.047v10.79H8.364zM2.24 8.982s.013.004 3.389 0v11.276H2.24z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/insta360.svg���������������������������������0000664�0000000�0000000�00000001674�14753064456�0025202�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.402 11.19c-.701.7-1.838.7-2.54 0a1.796 1.796 0 1 1 2.539 0m.998-3.614a6.17 6.17 0 0 0-4.39-1.818 6.17 6.17 0 0 0-4.392 1.818 6.217 6.217 0 0 0 0 8.782 6.17 6.17 0 0 0 4.39 1.819 6.17 6.17 0 0 0 4.392-1.82 6.217 6.217 0 0 0 0-8.78m1.554 10.33a8.35 8.35 0 0 1-5.945 2.462 8.35 8.35 0 0 1-5.944-2.46c-3.277-3.277-3.277-8.607 0-11.883a8.35 8.35 0 0 1 5.944-2.46 8.35 8.35 0 0 1 5.944 2.46c3.278 3.276 3.278 8.606 0 11.882m4.51-11.293-.137-.292a2.78 2.78 0 0 1 .485-3.007c.018-.014.08-.08.117-.118a.4.4 0 0 0 .053-.069.66.66 0 0 0-.097-.81l-.026-.02a1 1 0 0 0-.18-.11l-.068-.034A19.08 19.08 0 0 0 9.71.443l-.016.022a11.7 11.7 0 0 0-6.012 3.218c-3.75 3.75-4.44 9.403-2.065 13.852.023.043.107.195.123.233a2.78 2.78 0 0 1-.556 2.919l-.072.08a.66.66 0 0 0 0 .934q.09.084.198.146l.01.006a19.08 19.08 0 0 0 13 1.677v.002a11.7 11.7 0 0 0 5.997-3.216c3.709-3.708 4.423-9.277 2.144-13.702"/></svg>��������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/instacart.svg��������������������������������0000664�0000000�0000000�00000001014�14753064456�0025607�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.629 9.619c1.421 1.429 2.58 3.766 1.917 5.152-1.778 3.715-15.04 10.226-16.169 9.1C.252 22.746 6.768 9.476 10.481 7.697c1.388-.66 3.724.51 5.152 1.92l-.005.014v-.012zm7.028-1.566c-.231-.855-.821-1.717-1.7-1.82-1.61-.186-4.151 2.663-3.971 3.339.181.69 3.766 1.875 5.1.915.691-.494.781-1.56.556-2.414zM17.666.158c1.198.324 2.407 1.148 2.551 2.382.261 2.259-3.732 5.819-4.68 5.564-.948-.251-2.618-5.284-1.269-7.162.695-.972 2.201-1.106 3.399-.788z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/instagram.svg��������������������������������0000664�0000000�0000000�00000003105�14753064456�0025607�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.03.084c-1.277.06-2.149.264-2.91.563a5.9 5.9 0 0 0-2.124 1.388 5.9 5.9 0 0 0-1.38 2.127C.321 4.926.12 5.8.064 7.076s-.069 1.688-.063 4.947.021 3.667.083 4.947c.061 1.277.264 2.149.563 2.911.308.789.72 1.457 1.388 2.123a5.9 5.9 0 0 0 2.129 1.38c.763.295 1.636.496 2.913.552 1.278.056 1.689.069 4.947.063s3.668-.021 4.947-.082c1.28-.06 2.147-.265 2.91-.563a5.9 5.9 0 0 0 2.123-1.388 5.9 5.9 0 0 0 1.38-2.129c.295-.763.496-1.636.551-2.912.056-1.28.07-1.69.063-4.948-.006-3.258-.02-3.667-.081-4.947-.06-1.28-.264-2.148-.564-2.911a5.9 5.9 0 0 0-1.387-2.123 5.86 5.86 0 0 0-2.128-1.38C19.074.322 18.202.12 16.924.066 15.647.009 15.236-.006 11.977 0S8.31.021 7.03.084m.14 21.693c-1.17-.05-1.805-.245-2.228-.408a3.7 3.7 0 0 1-1.382-.895 3.7 3.7 0 0 1-.9-1.378c-.165-.423-.363-1.058-.417-2.228-.06-1.264-.072-1.644-.08-4.848-.006-3.204.006-3.583.061-4.848.05-1.169.246-1.805.408-2.228.216-.561.477-.96.895-1.382a3.7 3.7 0 0 1 1.379-.9c.423-.165 1.057-.361 2.227-.417 1.265-.06 1.644-.072 4.848-.08 3.203-.006 3.583.006 4.85.062 1.168.05 1.804.244 2.227.408.56.216.96.475 1.382.895s.681.817.9 1.378c.165.422.362 1.056.417 2.227.06 1.265.074 1.645.08 4.848.005 3.203-.006 3.583-.061 4.848-.051 1.17-.245 1.805-.408 2.23-.216.56-.477.96-.896 1.38a3.7 3.7 0 0 1-1.378.9c-.422.165-1.058.362-2.226.418-1.266.06-1.645.072-4.85.079s-3.582-.006-4.848-.06m9.783-16.192a1.44 1.44 0 1 0 1.437-1.442 1.44 1.44 0 0 0-1.437 1.442M5.839 12.012a6.161 6.161 0 1 0 12.323-.024 6.162 6.162 0 0 0-12.323.024M8 12.008A4 4 0 1 1 12.008 16 4 4 0 0 1 8 12.008"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/instapaper.svg�������������������������������0000664�0000000�0000000�00000000410�14753064456�0025764�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.766 20.259c0 1.819.271 2.089 2.934 2.292V24H6.301v-1.449c2.666-.203 2.934-.473 2.934-2.292V3.708c0-1.784-.27-2.089-2.934-2.292V0h11.398v1.416c-2.662.203-2.934.506-2.934 2.292v16.551z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/instatus.svg���������������������������������0000664�0000000�0000000�00000000777�14753064456�0025510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.994 21.028a9.65 9.65 0 0 0 5.056-9.564 37 37 0 0 0-3.87 3.69c-2.066 2.27-3.748 4.657-4.996 6.983a9.6 9.6 0 0 0 3.81-1.109M3.6 18.465c-1.34 1.82-2.377 4.5-1.303 5.307 1.515 1.14 8.404-2.013 13.908-8.805S23.53 1.17 21.084.094c-1.129-.497-3.486 1.083-4.84 2.394l.585.314c1.332-.852 3.552-1.733 1.499 1.976l-.03.053A9.65 9.65 0 0 0 7.92 4c-4.703 2.506-6.484 8.35-3.978 13.052a9.6 9.6 0 0 0 2.266 2.816c-3.559 2.75-2.69.36-2.193-.816z"/></svg>�mkdocs-material-9.6.4/material/templates/.icons/simple/instructables.svg����������������������������0000664�0000000�0000000�00000021275�14753064456�0026514�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.417 0a2 2 0 0 0-.449.037c-.902.2-1.237 1.112-1.621 1.953-.104.225-.192.107-.558.975-1.148-.137-2.559-.106-3.406-.204.14.485.832.198 1.295.204.759.006 1.545.201 2.111.204.034.21.214.442.25.649a4.4 4.4 0 0 1-.112 2.005c-.183.649-1.25 1.189-1.5 2.045-.103.353.013.655-.137 1.09-.11.138-.325.17-.475.271-1.057 1.192-1.673 3.178-1.974 4.903.725.338 1.347.019 1.703.271.216.061.092-.225.271-.204.137.022.131.183.271.204-.113 1.027.067 1.731.067 2.791 1.116.482 2.377.4 3.956.412-.019.204.386.96.057 1.457.488.496-.24 2.178.759 2.22-.332.488-.558 1.08-.546 1.908-.24.107-.04-.232-.204-.204-1.69-.043-2.684-.308-4.494-.204.506.207 1.444.119 2.179.271.079.012.055.125.067.204.295-.14 1.103-.03 1.633 0-.238.125.332.247.341 0 .457.07.83.585 1.225.68 1.307.314 2.045-.631 2.861-1.223.128.268.756.016 1.158 0-.335-.198-1.136-.134-1.499 0 .122-.963-.353-1.328-.817-1.703.19-.107.396-.195.545-.34.019-1.342-.054-1.796-.136-2.996.725-.15 1.761-.244 2.657-.408-.317.969-.14 1.444-.271 2.723.167.083.398.101.612.138-.67.36-1.057 1.895-.204 2.382-.076.174-.366.135-.613.138.01.356.85-.122.75.34.457-.368 3.18-.039 4.29.068-.119-.61-1.453-.12-2.044-.546.764-.487.776-1.962-.068-2.382.646-.43.269-2.197.476-3.2.618-.268 1.59-.18 2.111-.545-.015-.872-.182-1.587-.34-2.316.216-.149.749-.335 1.02-.204.15-.012.146-.174.137-.341.06-.165.2.152.408.067.01-.814-.368-1.225-.75-1.908-.572-1.023-1.319-2.029-2.452-2.453-.954-1.636-1.971-3.205-4.153-3.61-.122-.308-.049-.814-.067-1.225.301-.265.564-.573.546-1.158.828-.353 2.13.085 2.928 0-.128-.42-.866-.155-1.363-.204-.527-.052-1.048-.28-1.499 0-.13-.387-.353-1.106-.59-.93-.141-.337-.132-.865-.092-1.383C12.82.546 11.89.281 10.943.174 10.52.126 9.913.008 9.417 0m-.382.238c1.545.134 3.166.192 4.427.612.217 1.551-.085 2.98.138 4.632-1.648-.28-3.51-.619-5.177-.342.08-1.63.146-3.434.612-4.902zm-.408.271c-.094 1.539-.396 2.843-.408 4.631-.323.244-.674.46-1.091.613-.037-.57.02-1.34.137-1.77.097.106.265.143.475.137.555-.64.28-1.743-.067-2.52.28-.4.49-.871.954-1.09m2.263.79a2.9 2.9 0 0 0-.831.097c.332.006.72-.037.954.067-.475.207-.796.566-.75 1.295.728 1.011 1.971-.226 1.225-1.225.475-.034 1.338.329 1.974.271-.694-.194-1.69-.492-2.572-.505m.356.354c.297.041.324.751.242 1.028-.32.387-.987.14-1.09-.27.161-.086-.025-.522.27-.476-.082.515.165.701.546.75a.97.97 0 0 0 .204-.476c-.058-.234-.283-.304-.408-.475a.4.4 0 0 1 .172-.08.2.2 0 0 1 .064-.001m-3.573.423c.119.417.214 1.172.067 1.77-1.039-.025-.722-1.582-.067-1.77m3.133 0c.225.002.48-.028.475.204a.35.35 0 0 1-.204.204c-.086-.14-.33-.125-.271-.408m1.692.023c-.275.021-.54.247-.535.796.24.119.402.323.817.271.668-.565.177-1.101-.282-1.067zm.01.043c.3.021.516.12.476.476-.22-.095-.274-.357-.475-.476m1.363.138c.393.432.414 1.718-.205 1.907-.024-.567-.06-1.441.205-1.907m-1.494.069c.026.002.05.021.065.067-.19.104-.01.409.07.479-.268.04-.302-.153-.342-.342.016-.059.127-.21.207-.204m.132.135q.32-.045.27.27c-.213.034-.3-.057-.27-.27zM9.102 3.3c-.079.013-.058.125-.067.204 1.527.183 2.773.65 4.086.546-.213-.35-.71-.174-1.02-.204-.945-.095-1.893-.454-2.862-.476-.079.01-.121-.015-.137-.07m2.093 1.902c.932.044 2.03.469 2.542.618.14.04.323-.043.475 0 .485.134 1.198.472 1.5.683.843.59 1.425 1.807 1.974 2.79.195.354.515.61.612.887.302.86.35 1.767.75 2.52l.073.341c.216.759.427 1.82.545 2.453-3.028.43-5.872.75-8.31 1.02-2.022-.328-4.167-.173-5.993-.34-.301-2.304.4-4.595.272-6.948.012-.192.222-.185.271-.34-.174-.01-.35-.013-.341-.205.198-2.105 2.407-3.967 4.698-3.337.238-.036.305-.115.546-.136a3 3 0 0 1 .387-.006zM9.894 9a1.6 1.6 0 0 0-.314.022c-.225.348-.155.662-.137 1.158 1.115 1.192 1.87-1.134.451-1.18m5.063.017c-1.353.032-.382 2.697.684 1.3.253-.807-.137-1.255-.545-1.295a1 1 0 0 0-.139-.005m-2.36.03a1.07 1.07 0 0 0-.704.247c-.085.417.089.944.342 1.225.518.042.91-.043 1.157-.272.094-.727-.3-1.177-.796-1.2m-7.307.11c.36 1.093-.045 2.522-.067 3.677-.566-.091-1.069-.246-1.703-.27.33-1.396.664-2.79 1.77-3.408zm4.885.067a.26.26 0 0 1 .152.07c.162.161-.012.335 0 .545-.277.067-.274-.006-.612 0 .049-.253-.116-.292-.067-.545.194.023.37-.088.527-.07m2.3.003c.598-.053.924.804-.104.75-.076-.22-.274-.318-.34-.546a.8.8 0 0 1 .443-.204m2.579.013c.269-.001.52.163.52.532-.235.274-.472.558-.954.408-.03-.164.122-.15.067-.341-.134.003-.085.186-.27.137-.086-.46.29-.735.637-.736m3.107.258c1.042.503 1.645 1.444 2.111 2.52-.496.042-.789-.119-1.295-.067-.103-.576-.447-.911-.475-1.566.18-.003.402.036.409-.138-.05-.262-.351-.47-.546-.204-.01-.24-.195-.304-.204-.545m-13.282.204c-.088.29-.06.52.271.545.107-.192-.018-.28.07-.545zm5.723.204c.003.207-.144.265-.204.408-.384.022-.714-.015-.75-.34.362.076.673.09.954-.068zm2.586 0v.341c-.271.125-1.21.28-.953-.204.246.308.767.034.953-.137m2.316.204c-.027.387-.762.582-.954.204.412.11.707.013.954-.204m-6.332 1.365c.128.503-.134.634-.204 1.091.926.067 1.98-.021 2.791-.003.043-.06.082-.122 0-.137H9.511c2.553-.527 4.21-.365 7.014-.271.076.213-.019.18.067.341-1.615.326-3.251-.402-4.833.067 1.563-.052 3.196.164 4.903.271.036-.347.088-.832 0-1.225-.247-.064-.07.293-.204.342-1.865-.14-4.677-.125-7.082.204-.094-.088-.066-.296-.066-.475 1.46-.247 4.305.252 5.448-.205-1.7.104-3.724-.012-5.586 0m6.543.064c-.324-.01-.674.014-.89.003.31.302 1.21.015 1.633.204-.118-.15-.418-.196-.742-.207m3.896.615c.318.002.662.07.799.205-.46-.158-.911.167-1.295-.137a1.5 1.5 0 0 1 .496-.068m.15.325c.23-.002.46.023.579.084-.208.143-1.08.363-1.158 0 .12-.05.35-.081.58-.084m.965.244c.244-.038.371.35.363.657-.252.134-.438-.308-.475-.613a.3.3 0 0 1 .112-.044m-17.276.044c.408 0 1.34.067 1.703.341-.588-.094-1.383.022-1.703-.34m16.89.137c.213.268.25.482.271.817-.262-.055-.284-.71-.271-.817m-.95.068h.27c.006.313.171.463.137.816-.387-.021-.332-.484-.408-.816m.609 0c.04.213.32.542.137.749-.107-.146-.311-.548-.137-.75m-16.04.13c.43.01.945.114 1.058.344-.546-.088-1.134-.133-1.634-.27.091-.054.319-.081.577-.075m-.25.343c.117 0 .21.028.22.142-.15.17-.077.557-.342.612 0-.112-.189-.04-.204-.137.094-.176.25-.295.204-.612a2 2 0 0 1 .123-.005m-.393.005q-.026.38-.271.545c-.021-.292-.006-.551.271-.545m1.225.134c.116.137.097.551-.067.612-.143-.076-.274-.649.067-.612m.408.07c.015.125.177.45 0 .545-.021-.119-.314-.524 0-.545m14.574 2.041c.226.025.106.393.137.613-2.38.582-4.564.713-7.163 1.1l-1.216-.01c-1.792.132-4.171.165-5.856-.204-.034-.24-.101-.444-.067-.749 2.282-.167 4.643.314 6.947.137 2.526-.195 4.951-.783 7.218-.887m-.408.137a.32.32 0 0 1-.204.067c.006.199.024.384.27.342.01-.168.013-.33-.066-.409m-2.657.342q-.024.365.341.34.077-.09.067-.27c-.08-.082-.24-.08-.408-.07m-10.488.408c-.046.229.116.25.271.271q.082-.091.07-.271zm6.947.067c-.1.213-.003.277.137.408.174-.005.134-.228.134-.408zm-4.113.075a.25.25 0 0 0-.177.062q-.024.365.341.341c.135-.185.008-.392-.164-.403m8.812.196c.009.521-.083.582-.07 1.158-1.021.07-1.472-.098-2.383-.137.31-.911 1.55-.872 2.453-1.021m-5.582.683c.045.246.094.493.067.816-.869.028-1.737-.222-2.52-.066-.077-.214-.007-.156 0-.409.603-.402 1.913-.229 2.453-.341m3.906.663c.138-.006.327.029.451.153h-.204c-.57-.017-.477-.142-.247-.153m1.382.004c.133-.008.239.01.227.15-.077.09-.537-.007-.613-.138.095.03.254-.004.386-.012m-6.395.215c.182.007.337.04.424.138-.247-.003-.536.037-.612-.137a3 3 0 0 1 .188 0m5.294.063c.424-.002.86.043 1.26.28-.916-.205-2.02.11-2.452-.271.355.044.768-.006 1.192-.009m-6.076.176c.68-.005 1.616.097 2.023.378-.972-.125-1.743.021-2.587-.341.14-.022.338-.036.564-.037m5.515.171c.691.006 1.352.044 1.892.207-.116.18-.01.585-.137.75-.637-.067-1.828.128-2.52 0-.037-.378.036-.644.067-.954q.35-.005.698-.003zm-6.012.136c.573.104 1.92.19 2.52.275-.089.493.167.944 0 1.295-.598.353-1.527.378-2.383.475-.147-.536-.317-1.41-.137-2.045m6.947 1.091c.954-.042 1.407.766 1.292 1.43-.208 1.203-2.502 1.486-3.132.475.009-.716.003-1.45.545-1.633.064.49-.22.59-.204.887.058 1.21 2.282 1.377 2.453.27.13-.855-.622-.898-.954-1.429m-.756.24a.08.08 0 0 1 .104.061c.004.005.009.005.012.01.036.07.043.146.058.223.01.045-.022.076-.061.088a1 1 0 0 1-.204.034c-.061.003-.12-.062-.076-.12.054-.076.088-.16.125-.252a.07.07 0 0 1 .042-.043m1.03.306c.265.006.552.454.475 1.02-.277.488-1.554.528-1.566.342.795.091 1.036-.372 1.362-.75.022-.274-.442-.417-.271-.612m-.364.165c.185-.006.367.25.431.447-.31.21-.5.546-.954.613-.17-.168-.448-.235-.408-.613.47-.04.418-.158.75.068.15-.144-.034-.195 0-.409.058-.072.12-.104.181-.106m-5.29.31c.886.025 1.175.64 1.291 1.43.03.188-.253.063-.271.203.079.034.155.073.204.137-.46.893-3.169 1.45-2.724-.408.07 1.176 1.78.951 2.248.272.226-.957-.438-1.04-.749-1.633m-.476.546c.088.09.255.102.275.262a.3.3 0 0 1-.001.079c-.131.128-.171.006-.342 0 .037-.1-.079-.354.068-.341m.545 0c1.401.551-.159 2.05-1.225 1.227-.094-.265-.31-.966.067-1.09.12.198.161.475.137.817.299.472 1.384.304 1.43-.272-.28-.076-.132-.478-.41-.682m.067.475c.094.089.067.296.07.479-.332.042-.71.237-.887-.138.418.03.491-.28.817-.34m8.503.532a.73.73 0 0 0-.33.084c.392.17.539-.069.33-.084"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/instructure.svg������������������������������0000664�0000000�0000000�00000000371�14753064456�0026213�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.996 0-5.11 2.878L12 5.76l5.115-2.878ZM6.032 3.36.918 6.237 6.036 9.12l5.115-2.879Zm11.929 0-5.112 2.878 5.115 2.882 5.118-2.879zM12 11.52.918 17.76 12 24l11.082-6.241Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/intel.svg������������������������������������0000664�0000000�0000000�00000003141�14753064456�0024735�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.42 7.345v9.18h1.651v-9.18zM0 7.475v1.737h1.737V7.474zm9.78.352v6.053q0 .77.13 1.292.131.511.44.828c.203.21.475.359.803.451q.502.138 1.255.136h.216v-1.533c-.24 0-.445-.012-.593-.037a.67.67 0 0 1-.39-.173.7.7 0 0 1-.173-.377 4 4 0 0 1-.037-.606v-2.182h1.193v-1.416h-1.193V7.827zm-3.505 2.312c-.396 0-.76.08-1.082.241q-.49.242-.822.668l-.087.117v-.902H2.658v6.256h1.639v-3.214q.025-.881.433-1.299c.29-.297.642-.445 1.044-.445.476 0 .841.149 1.082.433.235.284.359.686.359 1.2v3.324h1.663V12.97c.006-.89-.229-1.595-.686-2.09s-1.1-.742-1.917-.742zm10.065.006a3.25 3.25 0 0 0-2.306.946c-.29.29-.525.637-.692 1.033a3.15 3.15 0 0 0-.254 1.273q0 .679.241 1.274c.161.395.39.742.674 1.032s.637.526 1.045.693c.408.173.86.26 1.342.26 1.397 0 2.262-.637 2.782-1.23l-1.187-.904c-.248.297-.841.699-1.583.699-.464 0-.847-.105-1.138-.321a1.6 1.6 0 0 1-.593-.872l-.019-.056h4.915v-.587q-.001-.676-.235-1.267a3.4 3.4 0 0 0-.661-1.033 3 3 0 0 0-1.02-.692 3.35 3.35 0 0 0-1.311-.248m-16.297.118v6.256h1.651v-6.256zm16.278 1.286c1.132 0 1.664.797 1.664 1.255l-3.32.006c0-.458.525-1.255 1.656-1.261m7.073 3.814a.606.606 0 0 0-.606.606.606.606 0 0 0 .606.606.606.606 0 0 0 .606-.606.606.606 0 0 0-.606-.606m-.008.105h.002a.5.5 0 0 1 .5.501.5.5 0 0 1-.5.5.5.5 0 0 1-.5-.5.5.5 0 0 1 .498-.5zm-.233.155v.699h.13v-.285h.093l.173.285h.136l-.18-.297a.2.2 0 0 0 .118-.056c.03-.03.05-.074.05-.136q0-.1-.063-.154c-.037-.038-.105-.056-.185-.056zm.13.099h.154q.028.001.056.012a.06.06 0 0 1 .037.031c.013.013.012.031.012.056a.1.1 0 0 1-.012.055.2.2 0 0 1-.037.031q-.028.011-.056.013h-.154Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/intellijidea.svg�����������������������������0000664�0000000�0000000�00000000731�14753064456�0026261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm3.723 3.111h5v1.834h-1.39v6.277h1.39v1.834h-5v-1.834h1.444V4.945H3.723zm11.055 0H17v6.5c0 .612-.055 1.111-.222 1.556-.167.444-.39.777-.723 1.11-.277.279-.666.557-1.11.668a3.9 3.9 0 0 1-1.445.278c-.778 0-1.444-.167-1.944-.445a4.8 4.8 0 0 1-1.279-1.056l1.39-1.555a3.2 3.2 0 0 0 .833.722c.277.167.611.278.945.278.389 0 .721-.111 1-.389.221-.278.333-.667.333-1.278zM2.222 19.5h9V21h-9z"/></svg>���������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/interactiondesignfoundation.svg��������������0000664�0000000�0000000�00000052757�14753064456�0031443�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 12.036C-.035 5.397 5.326.036 11.964 0s12 5.326 12.036 11.965S18.674 23.964 12.036 24H12C5.397 24 .036 18.639 0 12.036m.355 0C.355 18.462 5.574 23.68 12 23.68s11.645-5.218 11.645-11.644S18.461.426 12.036.391H12C5.574.391.355 5.61.355 12.036m13.708 8.055a.6.6 0 0 1 .109.207.8.8 0 0 1 .036.247.8.8 0 0 1-.045.279.52.52 0 0 1-.312.33.7.7 0 0 1-.245.042.7.7 0 0 1-.263-.049.5.5 0 0 1-.188-.135.6.6 0 0 1-.112-.209.9.9 0 0 1-.038-.258.8.8 0 0 1 .036-.25.6.6 0 0 1 .113-.207.5.5 0 0 1 .189-.141.65.65 0 0 1 .264-.052.6.6 0 0 1 .269.053.5.5 0 0 1 .187.143m1.438 0a.6.6 0 0 1 .109.207.8.8 0 0 1 .036.247.8.8 0 0 1-.045.279.6.6 0 0 1-.122.204.5.5 0 0 1-.19.126.7.7 0 0 1-.245.042.7.7 0 0 1-.263-.049.5.5 0 0 1-.188-.135.6.6 0 0 1-.112-.209.9.9 0 0 1-.037-.258.8.8 0 0 1 .036-.25.6.6 0 0 1 .112-.207.5.5 0 0 1 .189-.141.65.65 0 0 1 .264-.052.6.6 0 0 1 .269.053.5.5 0 0 1 .187.143m-6.113.516a.3.3 0 0 1 .072.095q.025.054.025.132a.32.32 0 0 1-.117.256.46.46 0 0 1-.304.099.5.5 0 0 1-.3-.1l-.023.074h-.086l-.011-.392h.079a.5.5 0 0 0 .111.212.4.4 0 0 0 .107.085.3.3 0 0 0 .14.035q.11 0 .169-.051t.06-.143a.2.2 0 0 0-.019-.083.2.2 0 0 0-.055-.061.5.5 0 0 0-.093-.047 1 1 0 0 0-.123-.042 2 2 0 0 1-.119-.044.5.5 0 0 1-.113-.066.3.3 0 0 1-.082-.098.3.3 0 0 1-.032-.138q0-.138.103-.234A.39.39 0 0 1 9.052 20a.53.53 0 0 1 .249.058l.026-.06h.082l.018.363h-.079a.37.37 0 0 0-.104-.198.27.27 0 0 0-.194-.076.2.2 0 0 0-.147.047.14.14 0 0 0-.054.114q0 .051.018.086a.15.15 0 0 0 .053.058.4.4 0 0 0 .086.043l.129.045q.076.024.142.056a.5.5 0 0 1 .111.071m.964.504q-.074.03-.141.052a.5.5 0 0 1-.162.021q-.142 0-.2-.072a.32.32 0 0 1-.057-.202v-.764h-.204v-.11h.208v-.351h.208v.351h.324v.11h-.321v.63q0 .072.005.119a.2.2 0 0 0 .024.083.12.12 0 0 0 .055.05.2.2 0 0 0 .099.017 1 1 0 0 0 .162-.018zm.505-.083a.15.15 0 0 1-.047.109.15.15 0 0 1-.11.046.15.15 0 0 1-.11-.046.15.15 0 0 1-.047-.109.15.15 0 0 1 .047-.11.15.15 0 0 1 .11-.047q.065 0 .11.047a.15.15 0 0 1 .047.11m-2.35-.347-.031.479H7.128v-.082q.034-.002.092-.009a.3.3 0 0 0 .074-.016.1.1 0 0 0 .051-.044.2.2 0 0 0 .014-.07v-1.167a.2.2 0 0 0-.012-.067.1.1 0 0 0-.053-.048.5.5 0 0 0-.083-.026l-.083-.014v-.081h1.256v.391h-.086a.5.5 0 0 0-.098-.184q-.076-.098-.145-.107a1 1 0 0 0-.085-.007q-.05-.002-.112-.002h-.255v.645h.183a.4.4 0 0 0 .129-.017.2.2 0 0 0 .071-.055.3.3 0 0 0 .043-.089.6.6 0 0 0 .024-.105h.085v.637h-.085a.6.6 0 0 0-.025-.117.3.3 0 0 0-.042-.088.17.17 0 0 0-.081-.059.4.4 0 0 0-.119-.013h-.183v.486q0 .073.01.116a.1.1 0 0 0 .04.064q.03.02.081.028.052.006.147.006h.099q.062 0 .105-.005a1 1 0 0 0 .089-.016.14.14 0 0 0 .066-.033.7.7 0 0 0 .111-.166q.058-.112.073-.165zm8.455.479H15.89v-.157a1 1 0 0 1 .086-.079 2 2 0 0 1 .24-.163l.145-.08q.09-.048.139-.085a.4.4 0 0 0 .089-.09.3.3 0 0 0 .042-.089.5.5 0 0 0 .016-.151q0-.142-.077-.21a.3.3 0 0 0-.196-.067q-.075 0-.141.029a.23.23 0 0 0-.1.081l.02.087a.4.4 0 0 1 .012.098.1.1 0 0 1-.036.078q-.035.033-.107.033a.1.1 0 0 1-.088-.039.17.17 0 0 1-.031-.106q0-.061.035-.124a.4.4 0 0 1 .098-.115.5.5 0 0 1 .156-.084.6.6 0 0 1 .2-.032q.235 0 .372.105.138.105.138.279a.5.5 0 0 1-.024.152.3.3 0 0 1-.08.122.6.6 0 0 1-.142.1 7 7 0 0 1-.248.116q-.1.043-.185.093a1 1 0 0 0-.141.094h.88zm-4.185 0h-1.072v-.157a1 1 0 0 1 .085-.079 2 2 0 0 1 .386-.243q.09-.048.139-.085a.5.5 0 0 0 .089-.09.3.3 0 0 0 .042-.089.5.5 0 0 0 .016-.151q0-.142-.077-.21a.3.3 0 0 0-.196-.067q-.075 0-.141.029a.23.23 0 0 0-.1.081l.02.087a.4.4 0 0 1 .012.098.1.1 0 0 1-.036.078q-.035.033-.107.033a.1.1 0 0 1-.088-.039.17.17 0 0 1-.031-.106q0-.061.035-.124a.4.4 0 0 1 .098-.115.5.5 0 0 1 .156-.084.6.6 0 0 1 .2-.032.6.6 0 0 1 .372.105q.138.105.138.279a.4.4 0 0 1-.025.152.3.3 0 0 1-.079.122.6.6 0 0 1-.142.1 7 7 0 0 1-.248.116q-.1.043-.186.093a1 1 0 0 0-.14.094h.88zm1.178-.615q0-.272-.093-.422a.29.29 0 0 0-.254-.15.29.29 0 0 0-.256.15q-.094.15-.094.422 0 .259.09.416.09.158.258.158t.259-.158a.83.83 0 0 0 .09-.416m1.438 0q0-.272-.093-.422t-.253-.15a.29.29 0 0 0-.257.15q-.093.15-.094.422 0 .259.09.416.09.158.258.158a.28.28 0 0 0 .259-.158.83.83 0 0 0 .09-.416M5.148 19.456h-.071c-1.811-1.669-2.911-3.941-3.16-6.391.036-.071.071-.071.142-.071l.036.036a9.9 9.9 0 0 0 3.124 6.248c.036.036.036.107 0 .142h-.071zm13.739 0h-.142c-.035-.036-.035-.107 0-.142 1.776-1.634 2.876-3.87 3.125-6.284-.036-.071 0-.107.071-.142.071-.036.106 0 .142.071 0 .035 0 .071-.036.106a10.2 10.2 0 0 1-3.16 6.391M12.142 8.508a3.9 3.9 0 0 0-.284-1.407c.355 0 .675-.071.994-.213 0 .497.107.958.284 1.42-.35 0-.665.069-.98.207.518.242.815 1.446 1.087 1.958l-.462.249c.32.497.568 1.03.675 1.598l.568-.462-.249-.106c.178-.355.462-.639.817-.852.177.213.39.39.603.532a2.27 2.27 0 0 0-.781.852l-.319-.319c-.249.319-.462.71-.604 1.1.036.426 0 .888-.106 1.314a2.65 2.65 0 0 1 1.171-.355q.16-.64.746-.959l-.391-.461c.426-.426 1.243-1.207 1.704-1.314q.64.586.959 1.385a4.1 4.1 0 0 0-1.846.923l-.32-.462a1.57 1.57 0 0 0-.39.852c.532-.035 1.1 0 1.633.071.035-.213.071-.39.035-.603.284-.036 1.42 0 2.059.461-.142.462-.248.959-.248 1.456 0 0-1.314-.568-2.059-.426.071-.213.142-.462.177-.675a4.7 4.7 0 0 0-2.201.32l.71.142a.7.7 0 0 0 .071-.249c.391.071.746.284 1.03.568a1.37 1.37 0 0 0-.426.675 2.6 2.6 0 0 0-1.03-.533l.249-.39c-.32-.036-.639-.071-.959-.036l-.568.391a2.1 2.1 0 0 0-.497.745c.107.142.142.32.142.497.036.284-.106.533-.355.675 0 .39.142.781.391 1.065l.167.107h4.767v.177H5.858v-.177h4.694c.203-.116.357-.218.383-.32a4.2 4.2 0 0 0 0-1.882A2.44 2.44 0 0 0 9.55 14.84c-.213.036-.426.142-.639.249l.355.248a2.27 2.27 0 0 0-.781.852c-.177-.213-.39-.39-.603-.568.177-.355.461-.639.816-.852l.178.178c.142-.107.284-.213.461-.249-.603-.213-1.242-.39-1.881-.461v.639c-.71-.071-1.385 0-2.059.248 0-.071-.213-1.065.035-1.668.249-.604 1.598.035 2.166.142-.036.142-.071.319-.107.461a5.8 5.8 0 0 1 1.349-.071 1.94 1.94 0 0 0-.887-.71 4 4 0 0 1-.852-.523 4 4 0 0 1-.178-.116l.024-.014-.024-.021-.532.284c-.107-.675-.462-1.349-.923-1.846.532-.107 1.029-.32 1.491-.569.071.498.177 1.527.532 1.989a1.05 1.05 0 0 0-.544.163q.077.067.154.13c.316.188.672.327 1.029.417a1.4 1.4 0 0 1 0-.533h-.248a2.7 2.7 0 0 1 .035-.923c.249-.035.497 0 .71.071a1.9 1.9 0 0 0-.213.888H8.13c0 .213.036.39.142.568.462.142.888.461 1.136.887l.959.249c0-.178-.036-.355-.107-.497l-.248.071a1.65 1.65 0 0 0-.426-.817c.213-.106.461-.213.71-.248.142.284.213.568.248.887h-.284c.107.178.178.355.213.568l.568.249a3.19 3.19 0 0 0-.745-2.308l-.568.462C9.55 12 8.45 11.042 8.45 11.042a4.5 4.5 0 0 0 1.171-.853c.675.355 1.172 1.385 1.278 1.669l-.532.284.639.533.248.355c.142-.107.249-.249.355-.426l-.355-.107c.249-.355.391-.745.462-1.171.248.177.533.284.817.319a2.5 2.5 0 0 1-.426 1.207l-.356-.177a1.5 1.5 0 0 1-.355.603c.213.462.355.994.568 1.491 1.279-1.065.924-3.088.675-4.011l-.603.461a4.8 4.8 0 0 0-1.669-1.598c.035-.035.781-.958 1.491-1.136a.44.44 0 0 1 .284.023v.013l.014-.006zm.675 7.823c.035-.142-.036-.284-.178-.355-.142.036-.213.178-.213.32-.035.142.036.284.178.355.142-.036.248-.178.213-.32m-.249-.639c-.248.071-.355.355-.284.746a.81.81 0 0 1 .249-.675c.106-.071.035-.106.035-.106zm5.787-2.059c.071-.248-.249-1.065-.533-1.633a5.36 5.36 0 0 0 2.308-.745c.071.568.249 1.136.533 1.633-.426-.071-1.811.461-2.308.745M5.61 11.787c-.142.178-.178.959-.142 1.491a6 6 0 0 0-2.095-.248c.142-.497.213-.994.142-1.491.319.248 1.598.284 2.095.248m-3.17.07.009.443-.05.001-.005-.054a.2.2 0 0 0-.009-.049.1.1 0 0 0-.025-.033.1.1 0 0 0-.044-.01l-.713.014a.1.1 0 0 0-.04.008q-.016.009-.027.037a.3.3 0 0 0-.014.053.3.3 0 0 0-.008.051l-.049.001-.009-.443.05-.001q0 .022.006.052a.3.3 0 0 0 .012.051q.009.026.028.035a.1.1 0 0 0 .042.008l.712-.013a.1.1 0 0 0 .04-.011.07.07 0 0 0 .027-.035.3.3 0 0 0 .018-.104zm20.033.454a.2.2 0 0 0-.012-.06.2.2 0 0 0-.023-.057q-.018-.024-.067-.032a1 1 0 0 0-.125-.006l-.72.017-.002-.061.792-.614-.508.011a.7.7 0 0 0-.131.014.12.12 0 0 0-.064.035.4.4 0 0 0-.039.132l-.049.001-.01-.403.05-.001a.4.4 0 0 0 .038.117.1.1 0 0 0 .06.032.6.6 0 0 0 .136.006l.485-.011a.2.2 0 0 0 .063-.012.1.1 0 0 0 .049-.031.2.2 0 0 0 .037-.069.2.2 0 0 0 .016-.069l.05-.001.006.281-.737.57.467-.011a.6.6 0 0 0 .132-.014q.046-.012.061-.033a.3.3 0 0 0 .024-.064.3.3 0 0 0 .012-.067l.05-.002.009.4zM15.16 9.976c.674-.355 1.349-1.633 1.349-1.633.319.391.674.71 1.1.994-.213.746-1.065 1.492-1.313 1.634-.107-.142-.213-.285-.355-.391a2.46 2.46 0 0 0-.604 1.065c.071-.426.249-.816.462-1.172zm2.094.639c.568-.355 1.349-1.1 1.527-1.704a5.5 5.5 0 0 0 1.278 1.278c-.497.284-1.491.888-1.811 1.421a2.7 2.7 0 0 0-.994-.995m-15.627-.171a.3.3 0 0 0 .005.06.2.2 0 0 0 .016.06q.014.027.062.04a1 1 0 0 0 .124.021l.717.072-.006.06-.861.513.505.05a.6.6 0 0 0 .132.003q.047-.006.068-.027a.2.2 0 0 0 .035-.062.4.4 0 0 0 .02-.064l.049.004-.04.402-.049-.005a.4.4 0 0 0-.023-.121.1.1 0 0 0-.056-.039 1 1 0 0 0-.135-.023l-.482-.048a.2.2 0 0 0-.065.005.1.1 0 0 0-.051.024.2.2 0 0 0-.046.064.2.2 0 0 0-.025.067l-.049-.005.028-.28.802-.476-.466-.046a.6.6 0 0 0-.133-.002q-.046.006-.064.025a.3.3 0 0 0-.032.061.3.3 0 0 0-.02.065l-.049-.005.04-.398zm12.326-.539c-.107.462-.32.924-.604 1.314a3.6 3.6 0 0 0 .355-1.385l-.568-.142c.355-.461.426-1.491.462-1.988.497.249.994.426 1.526.497-.426.355-.71 1.278-.781 1.917zm8.372.864a.5.5 0 0 1-.147.126.6.6 0 0 1-.204.068.6.6 0 0 1-.216-.005.47.47 0 0 1-.301-.21.46.46 0 0 1 .029-.532.56.56 0 0 1 .344-.188.6.6 0 0 1 .218.005.46.46 0 0 1 .356.572.4.4 0 0 1-.079.164m-.705.003q.068.03.149.035.082.005.179-.01a1 1 0 0 0 .181-.047.5.5 0 0 0 .134-.079.26.26 0 0 0 .089-.244.26.26 0 0 0-.059-.134.3.3 0 0 0-.116-.079.5.5 0 0 0-.149-.029.84.84 0 0 0-.348.054.5.5 0 0 0-.132.078.26.26 0 0 0-.094.247.27.27 0 0 0 .166.208m-12.78-.689c-.497.035-.958.213-1.384.461-.036-.674-.675-1.633-.994-2.13.639-.035 1.775-.603 1.775-.603-.142.639.213 1.633.603 2.272m-6.758-.72-.011.047a.5.5 0 0 0-.134.031.3.3 0 0 0-.064.032.1.1 0 0 0-.037.04l-.04.15.769.172a.1.1 0 0 0 .043 0 .1.1 0 0 0 .036-.027.3.3 0 0 0 .024-.048.3.3 0 0 0 .022-.059l.048.011-.101.453-.048-.01.008-.059a.2.2 0 0 0 .001-.057.06.06 0 0 0-.018-.038.1.1 0 0 0-.042-.02l-.774-.173-.019.091-.009.061q-.002.022.016.052a.5.5 0 0 0 .153.141l-.01.047-.261-.058.187-.837zm3.528.791c-.213-.568-1.101-1.243-1.101-1.243.32-.213.604-.426.852-.71.497.284.888.675 1.136 1.172-.319.213-.639.461-.887.781m15.639-.336-.112-.428.048-.013.017.052a.2.2 0 0 0 .021.046.1.1 0 0 0 .032.026.1.1 0 0 0 .045-.001l.689-.181a.1.1 0 0 0 .038-.018q.014-.012.017-.042.002-.022.002-.054a.3.3 0 0 0-.005-.052l.048-.013.112.429-.047.012-.019-.048q-.011-.028-.024-.048-.015-.022-.035-.027a.1.1 0 0 0-.042.002l-.689.181a.1.1 0 0 0-.037.02.06.06 0 0 0-.018.04q-.002.015 0 .049a.4.4 0 0 0 .007.056zM8.521 8.343c.355-.142.71-.355.994-.639q.159.746.639 1.385c-.284.106-.568.248-.781.461-.142-.461-.462-.887-.852-1.207m-5.672.05.267.113-.27.768-.046-.016.013-.054.006-.046a.06.06 0 0 0-.016-.038.1.1 0 0 0-.037-.022l-.664-.233a.1.1 0 0 0-.041-.007q-.019.001-.038.021a.5.5 0 0 0-.056.086l-.046-.016.251-.715.223.078-.017.049a.3.3 0 0 0-.125.019q-.07.024-.09.061l-.044.11-.051.146.367.129.037-.104a.2.2 0 0 0 .016-.077.1.1 0 0 0-.017-.052.2.2 0 0 0-.042-.042.3.3 0 0 0-.055-.034l.017-.049.362.127-.017.049a.3.3 0 0 0-.071-.009.2.2 0 0 0-.059.006.1.1 0 0 0-.049.034.3.3 0 0 0-.032.065l-.036.105.277.097q.042.014.068.017a.06.06 0 0 0 .044-.01.1.1 0 0 0 .032-.041l.053-.138a1 1 0 0 0 .027-.115q.002-.029-.006-.044a.7.7 0 0 0-.151-.171zm18.91.508-.016-.044a.6.6 0 0 0 .097-.098.4.4 0 0 0 .037-.062.1.1 0 0 0 .009-.054l-.047-.148-.74.268a.1.1 0 0 0-.036.023.07.07 0 0 0-.016.042.3.3 0 0 0 .005.054.3.3 0 0 0 .013.061l-.047.017-.158-.437.047-.016.025.054q.018.036.029.048.015.018.035.023a.1.1 0 0 0 .047-.006l.745-.269-.032-.088-.025-.056q-.01-.02-.042-.035a.4.4 0 0 0-.143-.036.4.4 0 0 0-.062-.001l-.016-.046.251-.091.291.807zm-11.357-.7a4.6 4.6 0 0 0-1.349-1.633c.036-.035.817-.745 1.456-.887s.852 1.384 1.029 1.917l-.603.248a1 1 0 0 1 0 .639c-.036-.177-.071-.39-.142-.568zm8.237-.781c-.355.284-.675.639-.852 1.065a2.2 2.2 0 0 0-.781-.355c.142-.355.39-1.065.639-1.278.355.107.71.284.994.533zM3.647 7.362l-.117.239a6 6 0 0 0-.539.085l-.044.091.281.137a.1.1 0 0 0 .042.012q.02.001.039-.017a.2.2 0 0 0 .028-.035l.027-.045.044.021-.183.375-.044-.022.017-.045a.2.2 0 0 0 .011-.044.06.06 0 0 0-.01-.039.1.1 0 0 0-.036-.028l-.64-.313a.1.1 0 0 0-.042-.012q-.02-.003-.04.016a.5.5 0 0 0-.057.076l-.044-.022.2-.409a.5.5 0 0 1 .063-.1.3.3 0 0 1 .081-.071.2.2 0 0 1 .095-.03.2.2 0 0 1 .108.025.3.3 0 0 1 .083.06.2.2 0 0 1 .046.079.3.3 0 0 1 .013.09 1 1 0 0 1-.009.103l.396-.073a.3.3 0 0 0 .13-.053.2.2 0 0 0 .032-.034l.025-.038zm10.767.413c.213-.426.675-1.633.639-1.988.426.249.923.391 1.42.462a5.4 5.4 0 0 0-.603 1.952c-.462-.248-1.207-.532-1.42-.461zm6.335.419-.183-.365.044-.022a.4.4 0 0 0 .052.074q.026.027.039.02l.013-.008.013-.011.16-.172-.155-.308-.09.009-.118.021-.029.011q-.025.012-.019.058a.4.4 0 0 0 .028.096l-.044.023-.166-.331.044-.023a.2.2 0 0 0 .063.069.17.17 0 0 0 .118.022q.2-.017.445-.041l.439-.042.025.049-.611.675a.2.2 0 0 0-.028.04.2.2 0 0 0-.013.048.2.2 0 0 0 .004.044l.013.042zM2.827 7.368a.2.2 0 0 0-.15-.016q-.07.023-.111.107l-.052.106.379.186.04-.082a.22.22 0 0 0 .015-.17.22.22 0 0 0-.121-.131m18.104.292.274-.305-.407.04zM8.237 7.527s-.604-.888-1.101-1.065c.284-.213.533-.497.71-.781q.693.372 1.065 1.065c-.284.213-.497.497-.674.781M4.263 6.416l-.222.343L4 6.732a.4.4 0 0 0 .037-.083q.01-.035-.002-.043l-.014-.008-.015-.005-.23-.051-.187.29q.03.043.054.072l.078.092.023.019q.024.015.06-.013a.4.4 0 0 0 .069-.073l.041.027-.201.311-.042-.027a.3.3 0 0 0 .018-.042.15.15 0 0 0 0-.104.3.3 0 0 0-.031-.056q-.115-.163-.261-.363l-.258-.358.03-.046.891.185a.14.14 0 0 0 .096-.009.1.1 0 0 0 .037-.026l.029-.032zm9.903.543a2.7 2.7 0 0 0-1.065 0c-.071-.462-.142-1.42.035-1.811a3.1 3.1 0 0 1 1.385.107c-.249.532-.391 1.1-.355 1.704m6.436-.109a.45.45 0 0 1-.401.065.6.6 0 0 1-.169-.092.7.7 0 0 1-.134-.147l-.228-.338.041-.027a.4.4 0 0 0 .063.071.05.05 0 0 0 .039.01.1.1 0 0 0 .041-.016l.589-.397a.1.1 0 0 0 .03-.03q.012-.017.007-.043a.2.2 0 0 0-.013-.047l-.019-.039.041-.027.24.356a.57.57 0 0 1 .098.326.43.43 0 0 1-.058.203.54.54 0 0 1-.167.172m-.095-.141a.6.6 0 0 0 .134-.122.4.4 0 0 0 .072-.142.3.3 0 0 0 .009-.147.4.4 0 0 0-.06-.147l-.068-.096-.626.423q-.053.035-.052.079 0 .044.043.108.05.072.112.11a.3.3 0 0 0 .131.04.4.4 0 0 0 .147-.024.7.7 0 0 0 .158-.082M3.711 6.53l-.402-.083.241.331zm8.857-.317a3.2 3.2 0 0 0-1.278.178 3.8 3.8 0 0 0-.71-1.846c.035-.036 1.029-.426 1.669-.32.639.107.355 1.456.319 1.988m-7.891-.277a.43.43 0 0 1-.303.153.5.5 0 0 1-.185-.026.6.6 0 0 1-.187-.107.6.6 0 0 1-.142-.165.5.5 0 0 1-.063-.183.4.4 0 0 1 .013-.182.47.47 0 0 1 .298-.309l-.018-.052.035-.043.274.22-.036.043a1 1 0 0 0-.107-.045.4.4 0 0 0-.112-.025.3.3 0 0 0-.107.013.2.2 0 0 0-.087.064.28.28 0 0 0-.054.249.5.5 0 0 0 .07.14q.053.073.134.141.073.06.149.093a.5.5 0 0 0 .15.036.3.3 0 0 0 .139-.022.3.3 0 0 0 .112-.083.29.29 0 0 0 .054-.275.4.4 0 0 0-.037-.087l.052-.024q.075.14.06.255a.43.43 0 0 1-.102.221m15.552-.415a.3.3 0 0 0-.047-.038.3.3 0 0 0-.054-.029q-.03-.008-.073.019a1 1 0 0 0-.099.075l-.542.475-.04-.046.213-.979-.382.335a.6.6 0 0 0-.091.094q-.028.038-.028.068 0 .022.022.068a1 1 0 0 0 .033.059l-.037.032-.266-.303.037-.033a.4.4 0 0 0 .105.066.1.1 0 0 0 .067-.014.7.7 0 0 0 .108-.083l.365-.319a.2.2 0 0 0 .04-.05.1.1 0 0 0 .018-.055.3.3 0 0 0-.047-.141l.037-.032.185.212-.2.91.352-.308a.6.6 0 0 0 .092-.096q.027-.039.025-.064A.2.2 0 0 0 20 5.279a1 1 0 0 0-.034-.059l.037-.033.263.301zM5.165 4.342l-.034.033a.5.5 0 0 0-.203-.056q-.035 0-.053.013l-.116.105.553.57a.1.1 0 0 0 .037.023.06.06 0 0 0 .045-.002.5.5 0 0 0 .098-.065l.035.036-.336.327-.035-.036a1 1 0 0 0 .072-.092.06.06 0 0 0 .006-.042.1.1 0 0 0-.024-.041l-.558-.574-.067.067-.041.046q-.015.018-.015.053a.3.3 0 0 0 .006.073.5.5 0 0 0 .045.131l-.035.034-.188-.193.62-.604zm14.122.157a.3.3 0 0 0-.109-.055q-.029-.003-.068.028a1 1 0 0 0-.088.086l-.282.321a.28.28 0 0 1-.252.099.4.4 0 0 1-.122-.036.46.46 0 0 1-.247-.31.25.25 0 0 1 .06-.209l.384-.437a.1.1 0 0 0 .021-.035.1.1 0 0 0-.005-.044.3.3 0 0 0-.051-.076l.032-.037.308.271-.033.037a.4.4 0 0 0-.08-.049.05.05 0 0 0-.042 0 .1.1 0 0 0-.034.027l-.358.407a.3.3 0 0 0-.048.068.2.2 0 0 0-.014.178.3.3 0 0 0 .08.103.3.3 0 0 0 .112.066.2.2 0 0 0 .103.006.2.2 0 0 0 .082-.032.3.3 0 0 0 .063-.054l.266-.303a.6.6 0 0 0 .075-.101q.024-.045.018-.07a.2.2 0 0 0-.032-.064l-.041-.051.033-.037.301.266zM6.206 4.436l-.344.274-.031-.039.04-.036a.2.2 0 0 0 .034-.038.07.07 0 0 0 .01-.039.1.1 0 0 0-.019-.041l-.44-.554a.1.1 0 0 0-.031-.027q-.017-.008-.045.001a.4.4 0 0 0-.096.045l-.031-.038.345-.274.03.038q-.016.014-.036.036l-.034.041a.06.06 0 0 0-.01.043.1.1 0 0 0 .018.038l.441.554q.014.018.033.025a.07.07 0 0 0 .044.001.4.4 0 0 0 .092-.049zm11.858-.874a.5.5 0 0 1-.007.193.6.6 0 0 1-.088.197.6.6 0 0 1-.15.156.49.49 0 0 1-.359.078.5.5 0 0 1-.171-.072.46.46 0 0 1-.2-.31.5.5 0 0 1 .01-.19.6.6 0 0 1 .236-.347.5.5 0 0 1 .177-.077.463.463 0 0 1 .552.372m-.475.521a.5.5 0 0 0 .126-.087.8.8 0 0 0 .115-.138.8.8 0 0 0 .087-.165.5.5 0 0 0 .033-.152.26.26 0 0 0-.119-.231.25.25 0 0 0-.138-.047.3.3 0 0 0-.136.031.5.5 0 0 0-.123.09.9.9 0 0 0-.196.292.5.5 0 0 0-.033.151.3.3 0 0 0 .025.131.26.26 0 0 0 .094.105.26.26 0 0 0 .13.046.3.3 0 0 0 .135-.026M6.645 3.099q.093.022.175.083.083.06.146.159a.6.6 0 0 1 .084.199.5.5 0 0 1 .001.193.46.46 0 0 1-.204.296.46.46 0 0 1-.364.061.5.5 0 0 1-.171-.084.6.6 0 0 1-.141-.153.6.6 0 0 1-.084-.2.5.5 0 0 1-.002-.193.45.45 0 0 1 .071-.169.48.48 0 0 1 .308-.198.5.5 0 0 1 .181.006m.291.643a.5.5 0 0 0-.029-.151.9.9 0 0 0-.199-.305.5.5 0 0 0-.127-.09.26.26 0 0 0-.259.018.25.25 0 0 0-.098.109.3.3 0 0 0-.025.137.5.5 0 0 0 .034.148.85.85 0 0 0 .192.296.5.5 0 0 0 .125.089.26.26 0 0 0 .264-.016.27.27 0 0 0 .122-.235m1.059-1.426a.3.3 0 0 0-.092.079q-.016.027-.002.075a1 1 0 0 0 .045.116l.308.652-.055.025-.883-.473.217.459q.036.078.066.114.029.038.058.045a.2.2 0 0 0 .071-.002 1 1 0 0 0 .066-.016l.021.045-.365.172-.021-.045a.3.3 0 0 0 .051-.039.2.2 0 0 0 .041-.043.1.1 0 0 0 .005-.068 1 1 0 0 0-.05-.127l-.208-.438a.2.2 0 0 0-.037-.053.1.1 0 0 0-.048-.032.2.2 0 0 0-.078-.006.2.2 0 0 0-.07.013l-.021-.044.254-.121.821.442-.2-.423a.6.6 0 0 0-.066-.115q-.03-.036-.055-.041a.2.2 0 0 0-.069.004.3.3 0 0 0-.066.016l-.021-.045.361-.171zm9.026.746-.046-.023a.4.4 0 0 0 0-.133q-.013-.077-.048-.102l-.102-.059-.147-.076-.182.353.101.052a.3.3 0 0 0 .076.027.13.13 0 0 0 .059-.007.1.1 0 0 0 .044-.031.3.3 0 0 0 .045-.054l.047.023-.178.345-.047-.024a.3.3 0 0 0 .02-.068.2.2 0 0 0 .002-.062.1.1 0 0 0-.03-.055.3.3 0 0 0-.064-.044l-.101-.052-.156.302a.1.1 0 0 0-.01.04.07.07 0 0 0 .015.041.3.3 0 0 0 .078.062l-.023.044-.38-.196.023-.044a1 1 0 0 0 .095.035.06.06 0 0 0 .039-.01.1.1 0 0 0 .028-.034l.327-.632a.1.1 0 0 0 .012-.04q.002-.02-.015-.04a.4.4 0 0 0-.079-.068l.023-.044.687.355zm-1.446-.907a.4.4 0 0 0-.06-.007.2.2 0 0 0-.061.004q-.03.009-.052.054a1 1 0 0 0-.045.117l-.21.689-.058-.018-.335-.944-.148.485a.6.6 0 0 0-.028.129.13.13 0 0 0 .012.072.2.2 0 0 0 .055.046 1 1 0 0 0 .059.033l-.015.047-.386-.118.015-.047.064.005q.047.002.06-.005a.1.1 0 0 0 .049-.046 1 1 0 0 0 .048-.128l.142-.464a.2.2 0 0 0 .008-.064.13.13 0 0 0-.014-.056.2.2 0 0 0-.053-.057.2.2 0 0 0-.061-.037l.014-.047.269.082.31.879.136-.447a.5.5 0 0 0 .028-.13q.003-.047-.012-.068a.4.4 0 0 0-.113-.076l.014-.047.383.117zm-5.657.046a.45.45 0 0 1-.072.401.6.6 0 0 1-.144.128.7.7 0 0 1-.184.077l-.395.102-.012-.048q.02-.005.049-.016a.2.2 0 0 0 .04-.02.06.06 0 0 0 .022-.033.1.1 0 0 0-.001-.044l-.178-.688a.1.1 0 0 0-.018-.039.06.06 0 0 0-.038-.022.2.2 0 0 0-.049-.003l-.043.005-.013-.048.417-.107a.56.56 0 0 1 .34.017.4.4 0 0 1 .173.123.5.5 0 0 1 .106.215m-.165.042a.6.6 0 0 0-.07-.167.4.4 0 0 0-.11-.116.36.36 0 0 0-.294-.05l-.113.032.189.733q.015.061.057.076a.2.2 0 0 0 .116-.005.4.4 0 0 0 .141-.069.3.3 0 0 0 .082-.111.4.4 0 0 0 .027-.146.7.7 0 0 0-.025-.177m4.389.062-.045-.001a.2.2 0 0 0-.047.005.06.06 0 0 0-.034.024.1.1 0 0 0-.016.043l-.031.187-.006.048q-.099.025-.193.032a.8.8 0 0 1-.182-.009.48.48 0 0 1-.308-.191.5.5 0 0 1-.076-.176.6.6 0 0 1 .069-.416.48.48 0 0 1 .506-.233.46.46 0 0 1 .24.111l.036-.042.055.009-.052.342-.056-.01a1 1 0 0 0-.017-.117.4.4 0 0 0-.038-.107.24.24 0 0 0-.182-.129.28.28 0 0 0-.252.08.4.4 0 0 0-.089.131.73.73 0 0 0-.063.365.4.4 0 0 0 .041.153.3.3 0 0 0 .229.175.3.3 0 0 0 .191-.027l.018-.071.02-.116a.2.2 0 0 0 .001-.052.06.06 0 0 0-.027-.038.6.6 0 0 0-.119-.043l.009-.05.427.073zm-3.033-.08.019.289-.808.106-.006-.049q.02-.003.054-.013a.2.2 0 0 0 .043-.015.06.06 0 0 0 .027-.031.1.1 0 0 0 .003-.043l-.092-.699a.1.1 0 0 0-.013-.039q-.01-.016-.035-.024a.3.3 0 0 0-.103-.011l-.006-.049.753-.099.031.234-.052.007a.3.3 0 0 0-.073-.103q-.054-.052-.096-.053l-.118.011-.153.02.051.386.109-.014a.2.2 0 0 0 .076-.02.1.1 0 0 0 .039-.039.2.2 0 0 0 .018-.057.2.2 0 0 0 .006-.064l.052-.007.05.381-.052.007a.3.3 0 0 0-.024-.068.2.2 0 0 0-.032-.049.1.1 0 0 0-.052-.029.3.3 0 0 0-.073.001l-.11.015.038.291a.3.3 0 0 0 .016.069.06.06 0 0 0 .029.035q.02.01.051.01l.148-.016.062-.01.052-.017a.1.1 0 0 0 .037-.025.4.4 0 0 0 .053-.109 1 1 0 0 0 .031-.104zm1.76.301-.442-.028.003-.049.055-.001a.2.2 0 0 0 .05-.005.1.1 0 0 0 .035-.023.1.1 0 0 0 .013-.042l.046-.711a.1.1 0 0 0-.005-.041q-.007-.017-.034-.03a.5.5 0 0 0-.102-.031l.003-.049.442.029-.003.049a.3.3 0 0 0-.052.002.3.3 0 0 0-.052.008q-.027.006-.037.024a.1.1 0 0 0-.012.041l-.046.711a.1.1 0 0 0 .007.041.07.07 0 0 0 .033.03q.014.007.046.015.033.01.056.011zm-.84-.495a.3.3 0 0 1 .048.075.3.3 0 0 1 .016.096.27.27 0 0 1-.092.217.35.35 0 0 1-.237.089.4.4 0 0 1-.132-.018.5.5 0 0 1-.115-.047l-.029.051-.055.001-.017-.336.056-.001a1 1 0 0 0 .043.111.4.4 0 0 0 .063.093.3.3 0 0 0 .086.064.26.26 0 0 0 .196.007.2.2 0 0 0 .057-.036.2.2 0 0 0 .032-.055.2.2 0 0 0 .009-.071.2.2 0 0 0-.035-.109.2.2 0 0 0-.101-.076l-.104-.037a2 2 0 0 1-.102-.04.3.3 0 0 1-.131-.095.26.26 0 0 1-.049-.157.24.24 0 0 1 .021-.106.3.3 0 0 1 .063-.088.34.34 0 0 1 .33-.062.6.6 0 0 1 .099.046l.028-.047.055-.002.012.327-.056.001a2 2 0 0 0-.036-.107.4.4 0 0 0-.052-.092.2.2 0 0 0-.074-.062.2.2 0 0 0-.106-.022.16.16 0 0 0-.111.044.13.13 0 0 0-.045.105.2.2 0 0 0 .032.105q.031.041.088.067l.196.076a1 1 0 0 1 .081.039.3.3 0 0 1 .068.052"/></svg>�����������������mkdocs-material-9.6.4/material/templates/.icons/simple/interactjs.svg�������������������������������0000664�0000000�0000000�00000000477�14753064456�0026001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.382.01C12.255.006 12.128 0 12 0A11.999 11.999 0 0 0 1.804 18.327l9.911-17.17zm7.097 19.686L11.201 5.121 2.788 19.689l.007.007zm.184 1.538H4.337a12 12 0 0 0 15.326 0m2.917-3.568A12 12 0 0 0 12.382.01l.667 1.148zM12.383.009l-.001.001h.001z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/interbase.svg��������������������������������0000664�0000000�0000000�00000003774�14753064456�0025612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.69 8.83c0 .13-.115.246-.247.248a.25.25 0 0 1-.248-.243.24.24 0 0 1 .237-.251.25.25 0 0 1 .258.246m14.294 3.678c-.026.409-.06.818-.113 1.225a11 11 0 0 1-.364 1.674 12 12 0 0 1-.892 2.194 12 12 0 0 1-2.411 3.158 11.95 11.95 0 0 1-7.716 3.235c-.05.002-.855.004-.868.004a12 12 0 0 1-1.452-.133 12 12 0 0 1-1.794-.418 12 12 0 0 1-2.283-.996 12 12 0 0 1-2.913-2.311 11.96 11.96 0 0 1-3.103-6.79 12 12 0 0 1-.073-1.527q.01-.648.087-1.29a11.9 11.9 0 0 1 1.317-4.17 12 12 0 0 1 2.033-2.77 12 12 0 0 1 1.152-1.03A12 12 0 0 1 8.027.677c.481-.17.97-.314 1.47-.411a16 16 0 0 1 1.151-.182 14 14 0 0 1 1.033-.077c.236-.011.473-.001.71.004a11.944 11.944 0 0 1 5.224 1.385A12 12 0 0 1 20.63 3.67a12 12 0 0 1 1.362 1.692 12 12 0 0 1 1.47 3.089q.336 1.083.46 2.21c.068.614.1 1.23.061 1.848m-10.77-3.846c.052.087.129.135.266.136.028-.013.089-.03.14-.063a35 35 0 0 1 2.514-1.495.32.32 0 0 0 .15-.16l.576-1.299c.05-.113.047-.223-.041-.316-.089-.094-.2-.109-.313-.058-.158.069-.317.137-.466.223-.368.212-.693.484-1.005.77-.648.595-1.225 1.256-1.78 1.937a.4.4 0 0 0-.04.057.25.25 0 0 0 0 .268m8.192-2.643q-.069-.013-.14-.015a4.5 4.5 0 0 0-1.063.08c-.682.125-1.334.347-1.972.61-1.028.422-2.007.943-2.963 1.507a37 37 0 0 0-3.139 2.07c-.207.152-.437.082-.487-.157-.02-.096-.058-.187-.09-.28a2.4 2.4 0 0 0-2.38-1.64c-.352.015-.69.1-1.018.222a.46.46 0 0 1-.276.018c-.164-.038-.33-.07-.494-.105l-4.449-.936q-.402-.086-.805-.168c-.036-.007-.083-.04-.116.02.033.054.093.053.142.068l5.565 1.65c.075.022.151.044.22.08.538.275.868.708.978 1.303.022.114.026.233.028.35.006.494-.013.989.016 1.481.055.961.45 1.775 1.137 2.446.572.559 1.157 1.105 1.72 1.672.768.774 1.192 1.717 1.301 2.8a.43.43 0 0 0 .132.277q.942.938 1.88 1.878.033.034.069.065a.25.25 0 0 0 .276.034.26.26 0 0 0 .158-.241q0-.035-.006-.07a12 12 0 0 0-.386-1.946 6 6 0 0 0-1.347-2.45c-.302-.329-.628-.635-.943-.952q-.065-.06-.125-.124c-.115-.124-.114-.265.002-.387q.04-.043.083-.083l8.55-8.545q.048-.044.09-.093a.266.266 0 0 0-.148-.44"/></svg>����mkdocs-material-9.6.4/material/templates/.icons/simple/intercom.svg���������������������������������0000664�0000000�0000000�00000001235�14753064456�0025444�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 0H3a3 3 0 0 0-3 3v18a3 3 0 0 0 3 3h18c1.658 0 3-1.342 3-3V3a3 3 0 0 0-3-3m-5.801 4.399c0-.44.36-.8.802-.8.44 0 .8.36.8.8v10.688a.802.802 0 0 1-1.602 0zM11.2 3.994a.8.8 0 0 1 1.6 0v11.602a.8.8 0 0 1-1.6 0zm-4 .405a.801.801 0 0 1 1.601 0v10.688a.801.801 0 0 1-1.601 0zM3.199 6A.801.801 0 0 1 4.8 6v7.195a.8.8 0 0 1-1.601 0zM20.52 18.202c-.123.105-3.086 2.593-8.52 2.593s-8.397-2.486-8.521-2.593a.8.8 0 0 1 1.039-1.218c.047.041 2.693 2.211 7.481 2.211 4.848 0 7.456-2.186 7.479-2.207a.8.8 0 0 1 1.128.086c.289.336.25.84-.086 1.128m.281-5.007a.802.802 0 0 1-1.602 0V6a.802.802 0 0 1 1.602 0z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/intermarche.svg������������������������������0000664�0000000�0000000�00000006072�14753064456�0026131�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.948 13.05.677 1.18h12.782l.15-1.18zm1.961-2.556a3.2 3.2 0 0 0-.694.071 1.7 1.7 0 0 0-.537-.07 2.7 2.7 0 0 0-1.007.168l-.215 1.53.317.552h.384l.254-1.834a.7.7 0 0 1 .2-.03c.17 0 .229.086.23.192l-.234 1.672h.782l.215-1.525a1 1 0 0 0 .008-.093l.03-.214a.7.7 0 0 1 .201-.029c.197 0 .246.115.227.25l-.22 1.608h.778l.215-1.524c.062-.442-.185-.72-.93-.72M8.88 11.88a.73.73 0 0 0 .438-.593l.012-.078h-.004c.062-.442-.185-.72-.93-.72a2.7 2.7 0 0 0-1.007.17v.003L7.1 12.741h.778l.104-.74h.2l1.466 2c.097.13.219.23.375.23h.208l-1.355-2.352zm-.32-.755-.01.084-.025.165a.27.27 0 0 1-.3.247h-.19l.01-.078.09-.638a.6.6 0 0 1 .202-.03c.197 0 .247.114.227.25zm-3.84 1.503c.014-.102-.023-.174-.145-.174h-.09c-.197 0-.247-.114-.228-.25l.165-1.178v-.015l.01-.078h.23c.113 0 .207-.115.231-.289H4.47l.122-.871c-.558.061-.815.32-.871.705l-.066.434-.006.042-.004.03-.14 1.04c-.061.432.17.707.876.72h.322l.016-.114m1.416-2.14a2.7 2.7 0 0 0-1.007.17l-.119.846-.068.509c-.06.43.175.705.877.718h.853l.015-.102c.015-.103-.021-.186-.143-.186H5.92c-.197 0-.246-.114-.227-.25l.025-.186h.244c.714-.01 1.03-.283 1.092-.713l.012-.079h-.004c.06-.44-.187-.719-.931-.719zm.166.642-.011.085-.027.155a.27.27 0 0 1-.3.247h-.191l.01-.078.09-.638a.6.6 0 0 1 .202-.029c.196 0 .245.115.226.25zm16.764-.642a2.7 2.7 0 0 0-1.005.17l-.12.846-.068.509c-.06.43.175.705.876.718h.854l.015-.103c.015-.103-.022-.185-.144-.185h-.625c-.196 0-.246-.114-.226-.25l.025-.186h.244c.713-.01 1.03-.283 1.092-.713l.012-.079h-.004c.061-.44-.186-.719-.93-.719zm.163.642-.01.085-.025.164a.27.27 0 0 1-.3.247h-.191l.01-.077.09-.639a.6.6 0 0 1 .202-.028c.196-.01.246.105.226.24zm-9.025-.632h-.665c-.116 0-.208.115-.233.29h.794c.197 0 .246.121.227.253l-.034.247h-.258c-.703.013-1.017.284-1.078.713l-.012.078h.007c-.06.44.187.719.933.719.342.008.684-.05 1.005-.17l.12-.847.075-.564c.06-.43-.175-.713-.876-.726zm.024 1.245-.09.645a.6.6 0 0 1-.201.03c-.196 0-.245-.115-.227-.25l.01-.085.026-.165a.27.27 0 0 1 .298-.248h.192l-.01.077zm3.16-.456.012-.079h.005c.06-.44-.187-.718-.93-.718a2.7 2.7 0 0 0-1.007.17v.003l-.293 2.08h.778l.104-.74h.198l.437.739h.778l-.513-.862a.73.73 0 0 0 .438-.593zm-.747-.165-.01.085-.039.163a.27.27 0 0 1-.3.247h-.19l.01-.078.09-.638a.6.6 0 0 1 .201-.029c.201.001.25.115.232.25zm2.604 1.33.018-.132a3.3 3.3 0 0 1-.647.073h-.06c-.196 0-.245-.115-.227-.254l.065-.479.018-.136.07-.477a.27.27 0 0 1 .296-.254h.06q.317-.003.624.067l.018-.137c.016-.114.027-.207-.127-.236a3 3 0 0 0-.537-.037c-.744 0-1.07.277-1.13.718l-.117.835c-.06.44.188.719.932.719q.291 0 .58-.048c.085-.02.14-.058.165-.236m1.486-1.946q-.109 0-.21.006l.1-.73c-.558.061-.815.32-.87.706l-.071.507-.247 1.76h.778l.254-1.834a.7.7 0 0 1 .2-.029c.197 0 .246.114.227.25l-.227 1.613h.778l.216-1.524c.062-.442-.186-.72-.932-.72M.865 11.51l.007-.055.243-1.684h-.78l-.27 1.843v.007l-.056.424c-.054.385.128.646.67.706l.18-1.239m22.771-1.53h-1.07l-.042.29h.878c.115 0 .208-.116.233-.29M2.274 12.741l.227-1.613c.019-.135-.03-.25-.227-.25a.6.6 0 0 0-.2.03l-.254 1.833h-.78l.293-2.079a2.7 2.7 0 0 1 1.006-.17c.745 0 .992.28.93.72l-.214 1.525h-.778"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/internetarchive.svg��������������������������0000664�0000000�0000000�00000001467�14753064456�0027025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.667 22.884V24H1.333v-1.116zm-.842-1.675v1.396H2.175v-1.396zM4.233 6.14l.234.118.118 1.882.117 3.058v2.941l-.117 3.666-.02 2.47-.332.098H3.062l-.352-.098-.136-2.47-.118-3.646v-2.941l.118-3.078.107-1.892.244-.107zm16.842 0 .235.118.117 1.882.117 3.058v2.941l-.117 3.666-.02 2.47-.332.098h-1.171l-.352-.098-.137-2.47-.117-3.646v-2.941l.117-3.078.108-1.892.244-.107zm-11.79 0 .235.118.117 1.882.117 3.058v2.941l-.117 3.666-.02 2.47-.331.098H8.114l-.352-.098-.136-2.47-.117-3.646v-2.941l.117-3.078.107-1.892.244-.107zm6.457 0 .234.118.117 1.882.118 3.058v2.941l-.118 3.666-.019 2.47-.332.098H14.57l-.351-.098-.137-2.47-.117-3.646v-2.941l.117-3.078.108-1.892.244-.107zm6.083-2.511V5.58H2.175V3.628zM11.798 0l10.307 2.347-.413.723H1.951l-.618-.587Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/internetcomputer.svg�������������������������0000664�0000000�0000000�00000001077�14753064456�0027237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.264 6.24c-2.52 0-5.376 3.024-6.264 3.984-.72-.792-3.696-3.984-6.264-3.984C2.568 6.24 0 8.832 0 12s2.568 5.76 5.736 5.76c2.52 0 5.376-3.024 6.264-3.984.72.792 3.696 3.984 6.264 3.984C21.432 17.76 24 15.168 24 12s-2.568-5.76-5.736-5.76M5.736 15.384A3.38 3.38 0 0 1 2.352 12a3.395 3.395 0 0 1 3.384-3.384c1.176 0 3.24 1.8 4.68 3.384-.408.456-3.144 3.384-4.68 3.384m12.528 0c-1.176 0-3.24-1.8-4.68-3.384.408-.456 3.168-3.384 4.68-3.384A3.38 3.38 0 0 1 21.648 12c-.024 1.872-1.536 3.384-3.384 3.384"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/intigriti.svg��������������������������������0000664�0000000�0000000�00000003352�14753064456�0025630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.913 6.036c-1.105.574-3.763 1.924-5.9 3.009-3.773 1.913-7.026 3.593-7.111 3.667-.032.022.01.404.085.861.574 3.413 2.147 6.453 4.316 8.356l.69.616.692-.595c1.839-1.616 3.327-4.22 4.05-7.058.149-.564.276-1.308.287-1.648l.021-.617-2.955-1.53-.734.371c-.393.202-.723.394-.723.426s.67.393 1.489.797l1.488.733-.064.383c-.393 2.169-1.616 4.752-2.923 6.187l-.606.67-.447-.426c-.924-.893-1.934-2.615-2.519-4.305-.33-.946-.723-2.434-.659-2.487.021-.022 3.04-1.542 6.708-3.391l6.654-3.37.213.35c.67 1.085.723 2.541.138 3.732-.648 1.318-1.754 1.988-3.37 2.062l-.978.043-.064.319c-.031.18-.063.478-.063.68 0 .319.032.361.382.425.574.107 1.765-.032 2.456-.287 1.68-.627 2.849-1.913 3.37-3.731.446-1.563-.032-3.423-1.265-4.848-.213-.244-.447-.446-.51-.446-.075.01-1.032.478-2.148 1.052m-18.54-.552C.184 6.876-.262 8.62.152 10.235c.468 1.808 1.659 3.136 3.37 3.774.691.255 1.882.393 2.456.287.414-.085.457-.202.319-1.03l-.064-.394-.978-.043c-1.626-.074-2.721-.744-3.38-2.083-.574-1.148-.532-2.541.085-3.615l.265-.457L6.073 8.63l3.858 1.956.713-.35c.393-.203.712-.405.712-.447 0-.064-9.344-4.805-9.482-4.805-.043 0-.266.223-.5.5m6.315-3.615-.265.404.233.064c.691.18 1.69.957 2.105 1.637l.213.34-.595.883c-.596.893-1.212 2.03-1.212 2.232 0 .096.956.638 1.137.638.043 0 .287-.404.532-.883.531-1.041.956-1.658 1.658-2.402l.5-.531.446.478a10.2 10.2 0 0 1 1.69 2.424c.245.467.468.882.49.914.063.074 1.2-.542 1.2-.66 0-.19-.648-1.37-1.222-2.21l-.595-.872.223-.35c.33-.532 1.201-1.277 1.754-1.5.266-.117.478-.255.478-.308 0-.064-.106-.245-.244-.415l-.245-.297-.52.244c-.309.149-.872.585-1.34 1.053l-.808.808-.659-.606-.648-.617-.649.617-.659.616-.755-.765c-.606-.617-1.637-1.329-1.913-1.329-.032 0-.18.18-.33.393z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/intuit.svg�����������������������������������0000664�0000000�0000000�00000001062�14753064456�0025136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.32 12.38c0 1.174.974 2.033 2.211 2.033s2.212-.859 2.212-2.033v-2.7h-1.198v2.56c0 .633-.44 1.06-1.017 1.06s-1.017-.424-1.017-1.06V9.68h-1.198l.008 2.699zm7.624-1.619h1.429v3.563h1.198V10.76H24V9.68h-4.056v1.082zM19.17 9.68h-1.198v4.645h1.198zM7.482 10.761h1.43v3.563h1.197V10.76h1.428V9.68H7.482v1.082zM1.198 9.68H0v4.645h1.198zm5.653 1.94c0-1.174-.974-2.032-2.212-2.032s-2.212.858-2.212 2.032v2.705h1.198v-2.56c0-.633.44-1.06 1.017-1.06s1.018.425 1.018 1.06v2.56h1.197L6.85 11.62z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/invision.svg���������������������������������0000664�0000000�0000000�00000001463�14753064456�0025465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.265 15.108a4.7 4.7 0 0 0-.124 1.036c0 1.215.658 2.021 2.058 2.021 1.16 0 2.102-.69 2.78-1.803l-.415 1.661h2.304l1.319-5.28c.329-1.338.966-2.032 1.934-2.032.761 0 1.235.473 1.235 1.255a2.5 2.5 0 0 1-.103.742l-.679 2.427a3.6 3.6 0 0 0-.144 1.03c0 1.151.679 1.996 2.099 1.996 1.214 0 2.182-.781 2.716-2.654l-.905-.35c-.453 1.255-.844 1.482-1.152 1.482s-.474-.206-.474-.618a2.7 2.7 0 0 1 .103-.638l.66-2.366a5.2 5.2 0 0 0 .226-1.5c0-1.771-1.07-2.695-2.368-2.695-1.214 0-2.449 1.096-3.066 2.249L13.721 9h-3.518l-.495 1.824h1.648l-1.014 4.055c-.797 1.77-2.26 1.799-2.443 1.758-.302-.068-.494-.183-.494-.576a3.9 3.9 0 0 1 .144-.942l1.544-6.124H5.184l-.493 1.824h1.625zm2.902-7.385a1.38 1.38 0 1 0-1.4-1.38 1.384 1.384 0 0 0 1.4 1.38M0 0h24v24H0Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/invoiceninja.svg�����������������������������0000664�0000000�0000000�00000002661�14753064456�0026304�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.247 10.326a1.164 1.164 0 1 1-2.328 0 1.164 1.164 0 0 1 2.328 0m-6.288 0a1.164 1.164 0 1 1-2.329 0 1.164 1.164 0 0 1 2.329 0m-.14 13.52c-4.712-.98-8.227-4.257-9.482-8.842-.421-1.537-.421-4.49 0-6.027C1.506 4.709 4.73 1.485 8.997.316c1.538-.421 4.49-.421 6.028 0 4.267 1.169 7.492 4.393 8.66 8.66.24.874.294 1.43.294 3.014s-.054 2.14-.293 3.014c-1.17 4.271-4.439 7.536-8.661 8.65-1.391.367-3.916.46-5.206.192m6.64-9.315c-3.047-1.348-4.054-1.737-4.5-1.737s-1.433.38-4.38 1.684c-2.091.926-3.828 1.76-3.86 1.79h16.663zm-9.873-.361c1.621-.729 3.06-1.387 3.196-1.464.258-.145.337-.09-5.285-3.682-.56-.358-1.023-.698-1.025-.65v7.19a790 790 0 0 0 3.114-1.394m14.078-2.194V8.417c0-.11-1.676.993-3.496 2.12-3 1.854-3.281 2.06-3.004 2.185 1.345.611 6.42 2.862 6.5 2.872zm-8.169.11c.545.125.643.104 1.226-.263.349-.22.655-.419.681-.442s-.05-.181-.167-.35-.215-.5-.215-.739V9.86l-.569.21c-.726.267-2.28.27-3 .005l-.556-.205.013.452c.007.26-.088.563-.225.715-.232.256-.22.276.45.726.64.432.725.455 1.23.327a2.35 2.35 0 0 1 1.132-.002zm-4.23-2.65c-.105-.113-2.97-.954-3.033-.891-.03.03.504.414 1.186.854l1.24.8.34-.344c.186-.188.307-.377.268-.42zm9.76-.373c.473-.306.8-.555.728-.555-.155 0-2.877.804-3.027.894-.057.034.033.229.2.433l.304.37.47-.293c.257-.162.854-.544 1.326-.85zm-1.636-.555c2.11-.59 3.867-1.102 3.904-1.139H3.59c.187.187 7.779 2.195 8.323 2.202.41.005 2.014-.376 4.476-1.063"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/iobroker.svg���������������������������������0000664�0000000�0000000�00000000770�14753064456�0025443�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c-.61 0-1.201.044-1.787.133v3.285a8.9 8.9 0 0 1 3.574.004V.139A12 12 0 0 0 12 0M9.38.295C4.084 1.5.13 6.283.13 12 .129 18.628 5.44 24 12 24s11.871-5.372 11.871-12c0-5.717-3.953-10.499-9.246-11.705v3.34c3.575 1.113 6.18 4.44 6.18 8.365 0 4.83-3.949 8.76-8.8 8.76-4.85 0-8.804-3.93-8.804-8.76 0-3.924 2.605-7.247 6.18-8.365zM12 4.137q-.925.001-1.783.2V19.53a8 8 0 0 0 1.783.2q.924-.001 1.787-.2V4.343A7.7 7.7 0 0 0 12 4.137"/></svg>��������mkdocs-material-9.6.4/material/templates/.icons/simple/ionic.svg������������������������������������0000664�0000000�0000000�00000001175�14753064456�0024730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.922 7.027-.103-.23-.169.188c-.408.464-.928.82-1.505 1.036l-.159.061.066.155a9.7 9.7 0 0 1 .75 3.759c0 5.405-4.397 9.806-9.806 9.806S2.194 17.405 2.194 12 6.596 2.194 12 2.194c1.467 0 2.883.319 4.2.947l.155.075.066-.155a3.77 3.77 0 0 1 1.106-1.453l.197-.159-.225-.117A11.9 11.9 0 0 0 12.001.001c-6.619 0-12 5.381-12 12s5.381 12 12 12 12-5.381 12-12c0-1.73-.361-3.403-1.078-4.973zM12 6.53A5.476 5.476 0 0 0 6.53 12 5.476 5.476 0 0 0 12 17.47 5.476 5.476 0 0 0 17.47 12 5.48 5.48 0 0 0 12 6.53m10.345-2.007a2.494 2.494 0 1 1-4.988 0 2.494 2.494 0 0 1 4.988 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ionos.svg������������������������������������0000664�0000000�0000000�00000002614�14753064456�0024755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.182 15.499a1.8 1.8 0 0 1-.354-.036 1.83 1.83 0 0 1-1.208-.863l-.007-.012a.543.543 0 0 1 .2-.716.5.5 0 0 1 .27-.074.53.53 0 0 1 .462.272l.018.03.057.076.075.077a.74.74 0 0 0 .346.167.76.76 0 0 0 .595-.136.72.72 0 0 0 .3-.54.74.74 0 0 0-.208-.577s-1.6-1.661-1.671-1.738a2 2 0 0 1-.193-.23c-.226-.32-.296-.696-.261-1.07a1.7 1.7 0 0 1 .225-.74s.073-.123.095-.155c.084-.123.251-.283.366-.372a2 2 0 0 1 .306-.185 1.75 1.75 0 0 1 2.282.705.52.52 0 0 1 .055.402.53.53 0 0 1-.253.326.5.5 0 0 1-.259.07.53.53 0 0 1-.46-.27.7.7 0 0 0-.466-.33.72.72 0 0 0-.564.128.69.69 0 0 0-.267.498.7.7 0 0 0 .19.54l1.636 1.686a1.83 1.83 0 0 1 .507 1.393c-.047.524-.307 1-.715 1.305a1.84 1.84 0 0 1-1.099.369m-5.175 0a1.76 1.76 0 0 0 1.759-1.76v-3.478a1.759 1.759 0 0 0-3.518 0v3.478a1.76 1.76 0 0 0 1.759 1.76m0-5.935c.378 0 .697.32.697.697v3.478a.7.7 0 0 1-.697.697.69.69 0 0 1-.697-.697v-3.478a.7.7 0 0 1 .697-.697m-7.898.323v5.08a.53.53 0 0 0 1.061 0V12.09Zm2.88 2.025v-2.88a.531.531 0 0 1 1.062 0v5.084zm1.053 2.94v.114a.533.533 0 0 1-1.007.24l-2.92-6.052v-.121a.53.53 0 0 1 .303-.477.525.525 0 0 1 .709.247Zm-7.907.646a1.76 1.76 0 0 0 1.759-1.759v-3.478a1.759 1.759 0 0 0-3.518 0v3.478a1.76 1.76 0 0 0 1.76 1.76m0-5.935a.707.707 0 0 1 .696.697v3.478a.697.697 0 1 1-1.394 0v-3.478a.7.7 0 0 1 .697-.697M0 14.911a.58.58 0 1 0 1.158 0v-5.83A.58.58 0 0 0 0 9.08z"/></svg>��������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ios.svg��������������������������������������0000664�0000000�0000000�00000001421�14753064456�0024413�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.1 6.05c-.614 0-1.1.48-1.1 1.08a1.08 1.08 0 0 0 1.1 1.08c.62 0 1.11-.48 1.11-1.08S1.72 6.05 1.1 6.05m7.61.02c-3.36 0-5.46 2.29-5.46 5.93 0 3.67 2.1 5.95 5.46 5.95 3.34 0 5.45-2.28 5.45-5.95 0-3.64-2.11-5.93-5.45-5.93m10.84 0c-2.5 0-4.28 1.38-4.28 3.43 0 1.63 1.01 2.65 3.13 3.14l1.49.36c1.45.33 2.04.81 2.04 1.64 0 .96-.97 1.64-2.35 1.64-1.41 0-2.47-.69-2.58-1.75h-2c.08 2.12 1.82 3.42 4.46 3.42 2.79 0 4.54-1.37 4.54-3.55 0-1.71-1-2.68-3.32-3.21l-1.33-.3c-1.41-.34-1.99-.79-1.99-1.55 0-.96.88-1.6 2.18-1.6 1.31 0 2.21.65 2.31 1.72h1.96c-.05-2.02-1.72-3.39-4.26-3.39M8.71 7.82c2.04 0 3.35 1.63 3.35 4.18 0 2.57-1.31 4.2-3.35 4.2-2.06 0-3.36-1.63-3.36-4.2 0-2.55 1.3-4.18 3.36-4.18M.111 9.31v8.45H2.1V9.31z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/iota.svg�������������������������������������0000664�0000000�0000000�00000006304�14753064456�0024562�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.446 18.824a.74.74 0 1 0-.742-.74.74.74 0 0 0 .742.74m9.186 2.217a1.158 1.158 0 1 0-1.16-1.157 1.16 1.16 0 0 0 1.16 1.157m-4.395.392a.986.986 0 1 0-.988-.984.987.987 0 0 0 .988.985m2.494 2.07a1.158 1.158 0 1 0-1.16-1.157 1.16 1.16 0 0 0 1.16 1.158m-4.545-.394a.986.986 0 1 0-.987-.985.987.987 0 0 0 .987.985m-1.703-2.168a.863.863 0 1 0-.865-.86.863.863 0 0 0 .865.86m2.049-1.674a.863.863 0 1 0-.863-.866.864.864 0 0 0 .863.866m3.631-.296a.986.986 0 1 0-.988-.985.987.987 0 0 0 .988.985m-1.729-2.143a.863.863 0 1 0-.863-.863.864.864 0 0 0 .863.863m-2.939.32a.74.74 0 1 0-.741-.74.74.74 0 0 0 .741.74m-2.519-.32a.616.616 0 1 0-.618-.616.617.617 0 0 0 .618.616m-.025-1.7a.542.542 0 1 0-.543-.542.543.543 0 0 0 .543.542m2.1.024a.616.616 0 1 0-.617-.616.617.617 0 0 0 .617.616m2.37-.467a.74.74 0 1 0-.74-.74.74.74 0 0 0 .74.74m-.469-1.97a.616.616 0 1 0-.617-.617.617.617 0 0 0 .617.616m-1.95.738a.542.542 0 1 0-.545-.542.543.543 0 0 0 .544.542m-1.779.222a.443.443 0 1 0-.444-.444.445.445 0 0 0 .444.444M8.67 7.123a.863.863 0 1 0-.865-.862.863.863 0 0 0 .865.862m2.246-.025a.74.74 0 1 0-.74-.739.74.74 0 0 0 .74.739m-.42-2.61a.74.74 0 1 0-.74-.74.74.74 0 0 0 .74.74M8.25 4.487a.863.863 0 1 0-.865-.862.863.863 0 0 0 .865.862m-2.618.591a.986.986 0 1 0-.99-.985.986.986 0 0 0 .99.985M6.05 7.69a.986.986 0 1 0-.988-.986.987.987 0 0 0 .988.986M3.186 9.093a1.158 1.158 0 1 0-1.16-1.158 1.16 1.16 0 0 0 1.16 1.158M1.383 14.34A1.38 1.38 0 1 0 0 12.96a1.38 1.38 0 0 0 1.383 1.38m2.963-2.365a1.158 1.158 0 1 0-1.16-1.158 1.16 1.16 0 0 0 1.16 1.158m2.866-1.403a.986.986 0 1 0-.989-.986.987.987 0 0 0 .989.986m2.617-.592a.863.863 0 1 0-.868-.86.863.863 0 0 0 .868.86m2.247 0a.74.74 0 1 0-.74-.739.74.74 0 0 0 .74.74m.692-2.488a.616.616 0 1 0-.618-.615.617.617 0 0 0 .618.615m-.42-2.613a.616.616 0 1 0-.618-.616.617.617 0 0 0 .619.616m7.162 11.48a.616.616 0 1 0-.618-.615.616.616 0 0 0 .618.615m-5.755-10.76a.543.543 0 1 0-.543-.542.54.54 0 0 0 .543.542m1.038.834a.443.443 0 1 0-.445-.443.444.444 0 0 0 .445.443M14.2 8.207a.543.543 0 1 0-.543-.542.543.543 0 0 0 .543.542m-.271 2.167a.616.616 0 1 0-.618-.616.617.617 0 0 0 .618.616m.024 4.631a.616.616 0 1 0-.617-.616.617.617 0 0 0 .617.616m1.68 1.182a.542.542 0 1 0-.544-.542.543.543 0 0 0 .543.542m1.16 1.281a.443.443 0 1 0-.445-.443.444.444 0 0 0 .444.443m1.308-.347a.542.542 0 1 0-.543-.542.54.54 0 0 0 .543.542m-1.058-1.697a.616.616 0 1 0-.618-.615.616.616 0 0 0 .618.615m-1.708-1.65a.74.74 0 1 0-.74-.74.74.74 0 0 0 .74.74m5.557 1.38a.74.74 0 1 0-.74-.74.74.74 0 0 0 .74.74m-2.494-.937a.74.74 0 1 0-.74-.739.74.74 0 0 0 .74.74m3.729-.838a.863.863 0 1 0-.864-.861.863.863 0 0 0 .864.861M16.546 12a.863.863 0 1 0-.863-.862.864.864 0 0 0 .863.862m3.087.419a.863.863 0 1 0-.864-.862.863.863 0 0 0 .864.861m3.383-1.404a.986.986 0 1 0-.987-.986.987.987 0 0 0 .987.986m-2.47-.961a.986.986 0 1 0-.988-.985.987.987 0 0 0 .989.985m-3.086-.418a.986.986 0 1 0-.988-.986.987.987 0 0 0 .988.986m3.482-2.489a1.158 1.158 0 1 0-1.16-1.158 1.16 1.16 0 0 0 1.16 1.158m-3.087-.443a1.158 1.158 0 1 0-1.161-1.158 1.16 1.16 0 0 0 1.16 1.158m1.16 16.035a1.38 1.38 0 1 0-1.383-1.377 1.38 1.38 0 0 0 1.383 1.377M17.46 3.255a1.38 1.38 0 1 0-1.384-1.38 1.38 1.38 0 0 0 1.384 1.38"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ipfs.svg�������������������������������������0000664�0000000�0000000�00000001000�14753064456�0024553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0 1.608 6v12L12 24l10.392-6V6zm-1.073 1.445za1.8 1.8 0 0 0 2.138 0l7.534 4.35a1.8 1.8 0 0 0 0 .403l-7.535 4.35a1.8 1.8 0 0 0-2.137 0l-7.536-4.35a1.8 1.8 0 0 0 0-.402zM21.324 7.4q.164.12.349.201v8.7a1.8 1.8 0 0 0-1.069 1.852l-7.535 4.35a1.8 1.8 0 0 0-.349-.2l-.009-8.653a1.8 1.8 0 0 0 1.07-1.851zm-18.648.048 7.535 4.35a1.8 1.8 0 0 0 1.069 1.852v8.7q-.186.081-.349.202l-7.535-4.35a1.8 1.8 0 0 0-1.069-1.852v-8.7a2 2 0 0 0 .35-.202z"/></svg>mkdocs-material-9.6.4/material/templates/.icons/simple/iris.svg�������������������������������������0000664�0000000�0000000�00000002720�14753064456�0024572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.691 11.281c-1.26-.322-1.573-.479-1.573-.957v-.021c0-.354.323-.635.937-.635.578 0 1.174.239 1.779.639l.074.05c.026.01.055.002.074-.018l.775-1.121a.06.06 0 0 0-.009-.068q-.033-.024-.068-.05l-.007-.005c-.716-.541-1.584-.843-2.592-.843-1.492 0-2.552.874-2.552 2.196v.021c0 1.448.949 1.854 2.416 2.228 1.22.313 1.468.521 1.468.927v.021c0 .427-.396.687-1.052.687-.797 0-1.461-.315-2.092-.817l-.043-.035a.064.064 0 0 0-.075.012l-.881 1.049a.07.07 0 0 0 0 .073l.068.059a4.64 4.64 0 0 0 2.986 1.075c1.572 0 2.676-.813 2.676-2.259v-.018c.005-1.273-.828-1.805-2.309-2.19M5.765 8.42a.07.07 0 0 1 .068-.065h1.475a.07.07 0 0 1 .064.068v7.157a.064.064 0 0 1-.064.064H5.829a.07.07 0 0 1-.067-.064zM0 13.339c0-.035.029-.063.064-.063h1.475a.07.07 0 0 1 .065.063v2.241a.07.07 0 0 1-.065.064H.064A.064.064 0 0 1 0 15.58zM15.836 8.42c0-.035.029-.064.064-.064h1.476c.034 0 .063.029.063.064v7.16a.064.064 0 0 1-.063.064H15.9a.064.064 0 0 1-.064-.064zm-.887 7.172-1.744-2.551c.926-.344 1.559-1.084 1.559-2.259v-.022c0-.688-.218-1.261-.624-1.667-.478-.477-1.193-.737-2.123-.737H8.749a.064.064 0 0 0-.063.064v7.16c0 .035.028.064.063.064h1.476a.064.064 0 0 0 .064-.064v-2.268h1.26l1.559 2.332h1.81c.038 0 .051-.024.031-.052M2.847 10.966a.07.07 0 0 1 .068-.063h1.47a.07.07 0 0 1 .064.063v4.61a.064.064 0 0 1-.064.063H2.909a.07.07 0 0 1-.068-.063zm7.448.93.008-2.093h1.578c.782 0 1.26.354 1.26 1.041v.021c0 .614-.447 1.031-1.228 1.031z"/></svg>������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/irobot.svg�����������������������������������0000664�0000000�0000000�00000000737�14753064456�0025130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.848 8.166c.75-3.536-1.287-7.264-5.747-7.264h-6.955l-1.152 5.4h5.246c1.076 0 1.748.884 1.517 1.941-.23 1.076-1.267 1.903-2.344 1.903H9.11l7.111 13.143h7.437l-4.806-8.82c1.288-.692 4.21-2.632 4.997-6.303zM1.23 17.505 0 23.31h6.342l2.767-13.145c-3.863.135-6.9 2.71-7.88 7.34zM5.4 6.648a2.985 2.985 0 0 0 2.997-2.98A2.986 2.986 0 0 0 5.4.69a2.986 2.986 0 0 0-2.998 2.98c0 1.633 1.346 2.978 2.998 2.978"/></svg>���������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/isc2.svg�������������������������������������0000664�0000000�0000000�00000003117�14753064456�0024465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.153 8.677c.876 0 1.592.333 2.196.839.014.012.063.051.077.064.059.049.071.052.142-.022l.068-.072.518-.566c.055-.065.046-.07.006-.112l-.071-.069c-.777-.69-1.776-1.183-2.936-1.183-2.454 0-4.366 1.972-4.366 4.45s1.912 4.438 4.366 4.438c1.16 0 2.161-.523 2.939-1.226.086-.074.118-.101.032-.187l-.528-.577c-.086-.087-.109-.066-.195.008-.604.505-1.372.861-2.248.861-1.763 0-3.194-1.431-3.194-3.317 0-1.898 1.431-3.329 3.194-3.329M4.1 9.824c0-.752.617-1.208 1.443-1.208.716 0 1.246.296 1.814.826.086.086.114.134.2.035l.512-.553c.087-.099.04-.123-.046-.209a3.32 3.32 0 0 0-2.492-1.159c-1.419 0-2.541.924-2.541 2.256 0 2.786 4.292 2.207 4.292 4.142 0 .789-.69 1.406-1.714 1.406-.985 0-1.504-.454-2.047-.971-.086-.087-.105-.107-.179-.033l-.585.553c-.087.074-.078.08-.017.179.561.756 1.607 1.344 2.828 1.344 1.53 0 2.849-1.011 2.849-2.429 0-2.934-4.317-2.28-4.317-4.179M1.147 7.639v7.616a.06.06 0 0 1-.019.044L.044 16.346c-.016.016-.044.004-.044-.019V7.639c0-.014.012-.026.026-.026h1.095c.014 0 .026.012.026.026m20.056-.066c-1.11 0-1.99.49-2.533 1.168a1 1 0 0 0-.057.081c-.04.061-.029.066.027.128.14.156.576.649.576.649q.027.028.051.006l.075-.071c.346-.358.936-.95 1.849-.95 1.024 0 1.64.642 1.64 1.578 0 1.33-.762 1.962-2.459 3.389-.494.415-1.405 1.215-1.633 1.414a.16.16 0 0 0-.052.117v1.194c0 .053.063.082.103.047.468-.411 2.405-2.107 3.034-2.641 1.629-1.384 2.068-2.324 2.068-3.532 0-1.467-1.06-2.577-2.689-2.577m2.734 7.792H21.2a.064.064 0 0 0-.064.064v.81c0 .035.029.063.064.063h2.737a.063.063 0 0 0 .063-.063v-.81a.064.064 0 0 0-.063-.064"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/issuu.svg������������������������������������0000664�0000000�0000000�00000001010�14753064456�0024763�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.996 0A1 1 0 0 0 0 .996V12c0 6.628 5.372 12 12 12s12-5.372 12-12S18.628 0 12 0zm11.17 3.582a8.333 8.333 0 0 1 8.254 8.41 8.333 8.333 0 0 1-8.41 8.252c-4.597-.045-8.296-3.81-8.254-8.41.045-4.6 3.81-8.296 8.41-8.252m-.031 2.27a6.107 6.107 0 0 0-6.155 6.046 6.11 6.11 0 0 0 6.05 6.163 6.1 6.1 0 0 0 6.154-6.047 6.107 6.107 0 0 0-6.041-6.162zm-.02 3.013a3.1 3.1 0 0 1 3.063 3.123 3.09 3.09 0 0 1-3.121 3.06l.002-.001a3.091 3.091 0 0 1 .056-6.182"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/istio.svg������������������������������������0000664�0000000�0000000�00000000166�14753064456�0024755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 21h16l-10 3zm0-1 6-1V8zm7-1 9 1-9-20z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/itchdotio.svg��������������������������������0000664�0000000�0000000�00000003260�14753064456�0025612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.13 1.338C2.08 1.96.02 4.328 0 4.95v1.03c0 1.303 1.22 2.45 2.325 2.45 1.33 0 2.436-1.102 2.436-2.41 0 1.308 1.07 2.41 2.4 2.41 1.328 0 2.362-1.102 2.362-2.41 0 1.308 1.137 2.41 2.466 2.41h.024c1.33 0 2.466-1.102 2.466-2.41 0 1.308 1.034 2.41 2.363 2.41 1.33 0 2.4-1.102 2.4-2.41 0 1.308 1.106 2.41 2.435 2.41C22.78 8.43 24 7.282 24 5.98V4.95c-.02-.62-2.082-2.99-3.13-3.612-3.253-.114-5.508-.134-8.87-.133-3.362 0-7.945.053-8.87.133m6.376 6.477a2.7 2.7 0 0 1-.468.602c-.5.49-1.19.795-1.947.795a2.79 2.79 0 0 1-1.95-.795 2.6 2.6 0 0 1-.446-.59 2.8 2.8 0 0 1-.486.59 2.8 2.8 0 0 1-1.95.795.8.8 0 0 1-.264-.052 40 40 0 0 0-.168 2.95v.005l-.006 1.167c.02 2.334-.23 7.564 1.03 8.85 1.952.454 5.545.662 9.15.663 3.605 0 7.198-.21 9.15-.664 1.26-1.284 1.01-6.514 1.03-8.848l-.006-1.167v-.004a40 40 0 0 0-.168-2.95.9.9 0 0 1-.263.052 2.8 2.8 0 0 1-1.95-.795 2.7 2.7 0 0 1-.486-.59c-.127.22-.265.412-.447.59a2.79 2.79 0 0 1-1.95.794c-.76 0-1.446-.303-1.948-.793a2.7 2.7 0 0 1-.468-.602 2.7 2.7 0 0 1-.463.602 2.79 2.79 0 0 1-1.95.794h-.16a2.79 2.79 0 0 1-1.95-.793 2.7 2.7 0 0 1-.464-.602zm-2.004 2.59v.002c.795.002 1.5 0 2.373.953A20 20 0 0 1 12 11.253c.72 0 1.438.035 2.125.107.873-.953 1.578-.95 2.372-.953.376 0 1.876 0 2.92 2.934l1.123 4.028c.832 2.995-.266 3.068-1.636 3.07-2.03-.075-3.156-1.55-3.156-3.025-1.124.184-2.436.276-3.748.277-1.312 0-2.624-.093-3.748-.277 0 1.475-1.125 2.95-3.156 3.026-1.37-.004-2.468-.077-1.636-3.072l1.122-4.027c1.045-2.934 2.545-2.934 2.92-2.934zM12 12.714c-.002.002-2.14 1.964-2.523 2.662l1.4-.056v1.22c0 .056.56.033 1.123.007.562.026 1.124.05 1.124-.008v-1.22l1.4.055C14.138 14.677 12 12.713 12 12.713z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/iterm2.svg�����������������������������������0000664�0000000�0000000�00000002253�14753064456�0025027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 5.359v13.282A5.36 5.36 0 0 1 18.641 24H5.359A5.36 5.36 0 0 1 0 18.641V5.359A5.36 5.36 0 0 1 5.359 0h13.282A5.36 5.36 0 0 1 24 5.359m-.932-.233A4.196 4.196 0 0 0 18.874.932H5.126A4.196 4.196 0 0 0 .932 5.126v13.748a4.196 4.196 0 0 0 4.194 4.194h13.748a4.196 4.196 0 0 0 4.194-4.194zm-.816.233v13.282a3.613 3.613 0 0 1-3.611 3.611H5.359a3.613 3.613 0 0 1-3.611-3.611V5.359a3.613 3.613 0 0 1 3.611-3.611h13.282a3.613 3.613 0 0 1 3.611 3.611M8.854 4.194v6.495h.962V4.194zM5.483 9.493v1.085h.597V9.48q.283-.037.508-.133.373-.165.575-.448.208-.284.208-.649a.9.9 0 0 0-.171-.568 1.4 1.4 0 0 0-.426-.388 3 3 0 0 0-.544-.261 32 32 0 0 0-.545-.209 1.8 1.8 0 0 1-.426-.216q-.164-.12-.164-.284 0-.223.179-.351.18-.126.485-.127.344 0 .575.105.239.105.5.298l.433-.5a2.3 2.3 0 0 0-.605-.433 1.6 1.6 0 0 0-.582-.159v-.968h-.597v.978a2 2 0 0 0-.477.127 1.2 1.2 0 0 0-.545.411q-.194.268-.194.634 0 .335.164.56.164.224.418.38a4 4 0 0 0 .552.262q.291.104.545.209.261.104.425.238a.39.39 0 0 1 .165.321q0 .225-.187.359-.18.134-.537.134-.381 0-.717-.134a4.4 4.4 0 0 1-.649-.351l-.388.589q.209.173.477.306.276.135.575.217.191.046.373.064"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/itunes.svg�����������������������������������0000664�0000000�0000000�00000002610�14753064456�0025131�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.977 23.999c-2.483 0-4.898-.777-6.954-2.262a11.93 11.93 0 0 1-4.814-7.806A11.95 11.95 0 0 1 2.3 4.994 11.85 11.85 0 0 1 10.08.159a11.83 11.83 0 0 1 8.896 2.104 11.93 11.93 0 0 1 4.815 7.807 11.96 11.96 0 0 1-2.091 8.937 11.86 11.86 0 0 1-7.78 4.835 12 12 0 0 1-1.943.157m-6.474-2.926a11.02 11.02 0 0 0 8.284 1.96 11.04 11.04 0 0 0 7.246-4.504c3.583-5.003 2.445-12.003-2.538-15.603a11.02 11.02 0 0 0-8.284-1.96A11.05 11.05 0 0 0 2.966 5.47C-.618 10.474.521 17.473 5.503 21.073m10.606-3.552a2.08 2.08 0 0 0 1.458-1.468l.062-.216.008-5.786c.006-4.334 0-5.814-.024-5.895a.54.54 0 0 0-.118-.214.5.5 0 0 0-.276-.073c-.073 0-.325.035-.56.078-1.041.19-7.176 1.411-7.281 1.45a.8.8 0 0 0-.399.354l-.065.128s-.031 9.07-.078 9.172a.7.7 0 0 1-.376.35 9 9 0 0 1-.609.137c-1.231.245-1.688.421-2.075.801-.22.216-.382.51-.453.82-.067.294-.045.736.051 1.005.1.281.262.521.473.71q.29.223.674.324c.563.144 1.618-.016 2.158-.328a2.4 2.4 0 0 0 .667-.629c.06-.089.15-.268.2-.399.176-.456.181-8.581.204-8.683a.44.44 0 0 1 .32-.344c.147-.04 6.055-1.207 6.222-1.23.146-.02.284.027.36.12a.3.3 0 0 1 .109.096c.048.07.051.213.058 2.785.008 2.96.012 2.892-.149 3.079-.117.136-.263.189-.864.31-.914.188-1.226.276-1.576.447-.437.213-.679.446-.867.835a1.6 1.6 0 0 0-.182.754c.001.49.169.871.55 1.245q.052.05.104.097c.192.148.387.238.633.294.37.082 1.124.025 1.641-.126"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/itvx.svg�������������������������������������0000664�0000000�0000000�00000002665�14753064456�0024626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.91 11.018a60 60 0 0 0-.98-.27c-.1 0-.16.05-.2.17-.35 1.2-.9 2.53-1.38 3.36-.16-.3-.45-.83-.73-1.3l-1.04-1.83c-.22-.34-.36-.43-.64-.43-.57 0-1.42.51-1.42 1 0 .16.04.28.21.57.2.32.3.6.3.92 0 .82-.62 1.56-1.8 1.56-.55 0-.99-.16-1.27-.45-.27-.28-.4-.65-.4-1.27v-1.03c.2.08.44.12.73.12h.93c.13 0 .17-.05.17-.16v-1c0-.11-.04-.17-.17-.17H6.56v-1.63c0-.2-.05-.33-.16-.43-.16-.15-.5-.22-.89-.22-.4 0-.72.07-.89.22-.1.1-.16.24-.16.43v4c0 .66-.1 1.02-.34 1.27-.2.22-.53.34-.88.34s-.66-.12-.84-.31c-.2-.2-.29-.48-.29-.9v-2.6c0-.11-.04-.16-.16-.16H.18c-.12 0-.17.05-.17.16v2.35c0 .94.25 1.47.67 1.9.55.54 1.48.79 2.38.79.88 0 1.81-.32 2.36-.82a4 4 0 0 0 2.6.82c1.42 0 2.47-.6 3.08-1.6.27.43.47.74.67 1.02.28.42.54.58 1.12.58.54 0 .87-.13 1.17-.59.78-1.18 1.44-2.59 1.92-3.88.05-.16.1-.28.1-.35 0-.08-.05-.14-.17-.18m-14.85-.92c.66 0 1.07-.46 1.07-1.05 0-.6-.4-1.06-1.07-1.06-.65-.01-1.06.46-1.06 1.05s.4 1.05 1.06 1.05zm22.84 5.1-2.28-3.13c-.05-.07-.05-.14 0-.2l2.1-3.07c.07-.09.11-.15.11-.28 0-.12-.07-.25-.19-.37a.51.51 0 0 0-.39-.17.4.4 0 0 0-.24.1l-2.9 2.22c-.06.05-.13.05-.2 0l-2.89-2.22a.4.4 0 0 0-.25-.1.5.5 0 0 0-.38.17c-.12.12-.2.25-.2.37 0 .13.05.2.11.28l2.11 3.07c.05.06.05.13 0 .2l-2.28 3.13a.42.42 0 0 0-.1.26c0 .14.06.26.18.38.11.11.24.18.38.18.1 0 .17-.04.26-.1l3.06-2.23a.17.17 0 0 1 .2 0l3.07 2.23c.09.06.16.1.26.1.14 0 .27-.07.38-.18.12-.12.18-.24.18-.38 0-.1-.04-.17-.1-.26"/></svg>���������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/iveco.svg������������������������������������0000664�0000000�0000000�00000002507�14753064456�0024734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.084 10.059a.084.084 0 0 0-.084.084v3.574c0 .046.038.084.084.084h.912a.083.083 0 0 0 .082-.084v-3.574a.083.083 0 0 0-.082-.084zm1.775 0c-.062 0-.105.058-.076.11l1.895 3.257.011.02c.195.306.577.495 1.002.494s.807-.196.997-.508L7.75 10.17c.028-.046-.007-.111-.076-.111H6.658a.09.09 0 0 0-.074.039l-1.857 2.925c-.017.028-.064.023-.079.006L2.936 10.1a.09.09 0 0 0-.077-.04zm7.598 0c-.73-.001-1.324.488-1.324 1.091v1.557c0 .603.594 1.094 1.324 1.094h3.049a.08.08 0 0 0 .082-.084v-.733a.08.08 0 0 0-.082-.084H9.234c-.017 0-.03-.015-.03-.033V10.99c0-.017.013-.033.03-.033h3.272a.08.08 0 0 0 .082-.082v-.732a.08.08 0 0 0-.082-.084zm5.443 0c-.73-.001-1.324.488-1.324 1.091v1.557c0 .603.594 1.094 1.324 1.094h3.05a.084.084 0 0 0 .083-.084v-.733a.084.084 0 0 0-.084-.084h-3.271a.03.03 0 0 1-.032-.033V10.99c0-.017.014-.033.032-.033h3.271a.08.08 0 0 0 .084-.082v-.732a.084.084 0 0 0-.084-.084zm5.334 0c-.73 0-1.324.49-1.324 1.093v1.555c0 .603.594 1.094 1.324 1.094h2.442c.73 0 1.324-.49 1.324-1.094v-1.555c0-.603-.594-1.093-1.324-1.093zm-.226.898h2.879c.015 0 .027.012.027.027v1.889a.027.027 0 0 1-.027.027h-2.88a.027.027 0 0 1-.027-.027v-1.889c0-.015.013-.027.028-.027m-10.215.56a.05.05 0 0 0-.049.051v.73c0 .028.022.052.049.052h2.72a.05.05 0 0 0 .05-.051v-.73a.05.05 0 0 0-.05-.051z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jabber.svg�����������������������������������0000664�0000000�0000000�00000005637�14753064456�0025063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.597 11.737c0-.35-.065-.732-.268-1.025-.408-.588-1.283-.775-1.892-.405-.308.188-.48.515-.576.851-.191.668-.104 1.43.03 2.1.043.214.088.428.148.639.021.076.031.186.08.25.087.11.297.141.426.12.387-.065.291-.703.278-.974-.03-.634-.218-1.25-.036-1.881.076-.268.225-.568.494-.684.244-.105.49.023.586.261.156.385.117.83.215 1.23.033.137.07.272.131.399.018.037.043.113.094.108.126-.011.304-.22.398-.298.304-.25.616-.52.965-.705.165-.088.435-.23.603-.08a.6.6 0 0 1 .108.13c.198.31.002.55-.127.845-.166.38-.336.758-.577 1.098-.207.293-.49.549-.655.869-.107.205-.167.43-.123.663.036.188.181.301.373.257.143-.033.24-.156.322-.269.146-.202.281-.412.426-.615.28-.393.61-.76.846-1.183a3.4 3.4 0 0 0 .42-1.664c0-.474-.171-1.198-.723-1.298a1 1 0 0 0-.326.01 1.4 1.4 0 0 0-.374.12 2.7 2.7 0 0 0-.818.637c-.146.16-.276.363-.449.495M9.078.016c-.435.058-.878.052-1.315.12-.838.129-1.64.389-2.425.703q-.43.172-.845.376c-.103.05-.26.09-.343.17-.043.041-.039.139-.044.195-.014.156-.034.313-.05.47-.058.605-.1 1.229-.013 1.834.028.195.09.55.33.587.369.058.656-.397.837-.648.424-.586.905-1.132 1.6-1.394.817-.308 1.753-.381 2.618-.44 2.426-.167 5.078.277 6.865 2.064.254.254.495.524.7.82.8 1.159 1.223 2.477 1.427 3.86.096.65.161 1.308.013 1.955-.257 1.122-.932 2.1-1.706 2.931-.53.57-1.128 1.084-1.749 1.552-.347.261-.736.483-1.062.768-.375.329-.688.74-.925 1.179-.639 1.181-.81 2.602-.622 3.92.038.27.073.542.134.809.018.08.022.217.073.282.097.122.36.189.508.196.154.007.256-.11.294-.249.064-.236.026-.498-.012-.736-.076-.487-.147-.977-.125-1.471a3.7 3.7 0 0 1 1.026-2.425c.643-.673 1.512-1.061 2.243-1.625 1.474-1.136 2.794-2.668 3.301-4.492a5.2 5.2 0 0 0 .159-2.015c-.105-.849-.415-1.697-.708-2.497-.892-2.437-2.422-4.755-4.851-5.87-.964-.443-1.973-.645-3.016-.79q-.735-.1-1.472-.132c-.274-.012-.572-.042-.845-.006M5.277 15.796c-.473.068-.61.447-.523.876.112.548.543.965.97 1.295a6.03 6.03 0 0 0 3.884 1.238c.538-.023 1.124-.112 1.617-.34.265-.122.542-.563.181-.751a.6.6 0 0 0-.169-.051c-.157-.026-.333.041-.482.084-.263.075-.526.153-.797.196-.808.13-1.683-.055-2.352-.534-.542-.387-.98-.898-1.393-1.415-.253-.316-.482-.663-.936-.598m-.615 2.678c-.12.016-.259.011-.362.087-.215.158.022.476.135.62.328.417.76.763 1.192 1.068a7.83 7.83 0 0 0 4.03 1.442c.421.03.85 0 1.267-.07.152-.026.342-.037.482-.103.399-.186.284-.939-.072-1.106-.155-.073-.404.023-.567.046-.385.054-.771.06-1.158.05-1.015-.025-2.096-.338-2.98-.831a5.6 5.6 0 0 1-.966-.693c-.181-.16-.368-.42-.603-.502-.11-.037-.284-.023-.398-.008m.241 2.256a.64.64 0 0 0-.413.236c-.078.088-.152.167-.197.278-.246.609.41 1.183.864 1.47.504.32 1.055.558 1.616.758 1.266.45 2.752.739 4.066.336.391-.12.778-.338 1.062-.634.16-.167.27-.419-.024-.526-.174-.063-.385.098-.543.162a4.6 4.6 0 0 1-1.158.312c-.527.064-1.001-.052-1.508-.179a12 12 0 0 1-1.291-.373 4.5 4.5 0 0 1-1.026-.513c-.094-.066-.206-.125-.282-.211-.25-.282-.439-.612-.707-.88-.116-.116-.281-.256-.459-.236"/></svg>�������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jaeger.svg�����������������������������������0000664�0000000�0000000�00000017252�14753064456�0025067�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.816 22.377c0 .073-.128.132-.286.132-.159 0-.287-.06-.287-.131 0-.073.128-.132.286-.132.159 0 .287.059.287.131m-.738.156c0 .075-.126.136-.281.136s-.282-.061-.282-.136.126-.136.282-.136.281.06.281.136m-.743.14c0 .07-.174.127-.388.127s-.388-.057-.388-.126c0-.07.174-.127.388-.127s.388.057.388.127m-1.136.112c0 .089-.158.16-.354.16s-.354-.071-.354-.16c0-.088.158-.16.354-.16s.354.072.354.16m-1.194.04c0 .096-.237.174-.53.174-.291 0-.528-.078-.528-.175s.237-.175.529-.175.529.078.529.175m1.107-.88c.612-.029.772-.121.791-.325 0 0 .122-.15-.291-.233-.413-.082-.995-.082-.893-.413.102-.335 1.155-.393 1.786-.393s1.345-.039 1.253.301c-.088.34-.549.345-.51.573s.418.16.35.52c-.068.359-1.743.49-2.928.592-1.18.102-1.932-.02-1.743-.34.19-.32 1.573-.252 2.185-.282m-9.97 1.076c.007.045-.127.102-.3.127-.172.025-.317.009-.324-.036-.006-.045.128-.102.3-.127.173-.025.318-.01.325.036m.093.226c.007.053-.148.12-.347.148-.199.03-.366.01-.374-.043s.147-.12.346-.149c.2-.029.367-.01.375.044m.164.204c.008.053-.147.12-.346.148-.199.03-.367.01-.374-.043s.147-.12.346-.149.367-.01.374.044m.739.114c.009.064-.15.138-.355.166-.204.028-.377-.001-.386-.065-.008-.064.15-.138.355-.166.204-.028.377.001.386.065m1.18.13c.007.084-.24.17-.55.196s-.566-.023-.572-.106.239-.17.549-.194.567.022.573.105m1.193.002c.018.084-.2.203-.489.265-.288.063-.536.046-.555-.038-.018-.084.2-.203.49-.265.287-.063.536-.046.554.038m1.246-2.033c.355-.078 1.986-.039 2.03.247.053.292-2.67.544-3.287.631-.617.088-.641.263-.641.263 0 .014-.053.155.35.15.563-.01.956.107.723.379s-2.811.199-3.34 0c-.53-.2-.32-.398-.049-.5.272-.097 1.044-.19 1.937-.36.894-.17 1.928-.728 2.277-.81m6.792-9.734a.646.646 0 1 1-1.291 0 .646.646 0 0 1 1.29 0m-6.233 1.51a.646.646 0 1 1-1.292 0 .646.646 0 0 1 1.291 0m-2.991 6.583c-.354 0-.602-.14-.757-.418a1.3 1.3 0 0 1-.131-.373c-.063-.335-.044-.729.029-1.098.082-.412.228-.796.383-1.039.141-.223.272-.368.389-.465a51 51 0 0 0 .52 1.32c.237.587.455 1.107.616 1.476-.01.02-.025.034-.04.053-.232.31-.557.544-1.009.544m15.016-2.194a.2.2 0 0 0 .019.072c.053.292.233 1.078.354 1.53-1.864.208-4.505.34-7.432.34-2.476 0-4.748-.093-6.515-.248a87 87 0 0 1-.675-1.607c-.597-1.456-1.33-3.393-1.558-4.578-.21-1.092-.462-2.418.116-3.612l-.33-.029c-1.369-.146-1.553-.413-1.626-.524a.38.38 0 0 1-.04-.374c.122-.306.535-.583 1.015-.81a5 5 0 0 0 .136.28c-.437.21-.776.433-.859.646-.02.044-.01.063.005.088.068.097.461.398 2.685.47a.63.63 0 0 1-.5-.504.63.63 0 0 1 .058-.393 6 6 0 0 0-.602.364S1.936 6.765 3.12 6.046a.76.76 0 0 1 .398-.121c.99 0 1.723 2.16 1.723 2.16s-.145.054-.359.15c.262.025.782.146 1.83.569 1.068.432 1.496.46 1.612.46A.63.63 0 0 1 9 9.344l.034.034a23 23 0 0 0 .456-.04q.072-.008.195-.038a.63.63 0 0 1 .286-.583.62.62 0 0 1 .733.044.4.4 0 0 0 .087-.034c.272-.136 1.233-1.16 1.957-2.034a.62.62 0 0 1 .612-.214c.194-.655.97-2.976 2.155-2.976 1.379 0 .578 2.729.442 2.923 0 0-.32-.024-.758-.024-.485 0-1.116.029-1.63.165l.053.039a.624.624 0 0 1 .082.878c-.116.136-.267.32-.442.52.36-.146.733-.306 1.107-.466a49 49 0 0 0 1.724-.792h.01l.004-.01c.442-.213.84-.417 1.175-.606 1.17-.656 1.316-.942 1.33-1.015.01-.048 0-.063-.005-.068-.01-.02-.092-.097-.46-.097-.404 0-.967.092-1.554.219a4 4 0 0 0 .029-.326c.573-.116 1.121-.204 1.529-.204.369 0 .592.068.709.214a.37.37 0 0 1 .068.335c-.044.19-.243.52-1.48 1.214a9 9 0 0 1-.375.204c-.092.053-.194.102-.296.155.558.47.976 1.175 1.238 2.194.53 2.04.937 4.428 1.219 6.321-.462.058-.743.277-.801.631-.063.384.136.592.344.816.224.238.48.505.563 1.107M14.5 5.498c0 .024.004.02.004.02l.063-.117c.044-.073.102-.175.17-.296.073-.122.156-.258.258-.38.048-.057.106-.116.165-.16a.44.44 0 0 1 .184-.082c.02 0 .034-.005.049-.005.014.005.034 0 .048.005.015.005.034.005.049.01l.039.01.01.004c0 .005.004.005.004.01.01.015.015.044.02.078 0 .068-.005.15-.02.223-.01.073-.029.146-.044.214-.033.136-.063.247-.082.33-.024.082-.034.13-.034.13s.034-.033.087-.101c.054-.063.122-.165.195-.291.034-.063.072-.136.102-.219s.058-.175.068-.281a.4.4 0 0 0-.02-.185c-.005-.02-.014-.034-.024-.053l-.015-.025-.02-.024a.4.4 0 0 0-.101-.077l-.01-.005h-.005l-.014-.005h-.005l-.02-.01-.043-.015c-.024-.01-.058-.014-.088-.019s-.063-.005-.092-.005c-.029.005-.063.005-.092.01a.7.7 0 0 0-.32.155c-.088.073-.151.156-.204.238-.102.165-.16.33-.2.471a2 2 0 0 0-.058.35q-.006.058-.005.097m-4.287 3.578a.187.187 0 0 0-.063.252c.014.02.092.131.257.194a.7.7 0 0 0 .252.044c.146 0 .306-.039.471-.112.36-.16 1.238-1.048 2.243-2.257a.184.184 0 0 0-.14-.301.18.18 0 0 0-.141.068c-.433.52-1.656 1.922-2.093 2.146l-.02.01q-.078.03-.15.053l-.223.063-.18-.146a.17.17 0 0 0-.116-.043.2.2 0 0 0-.097.029M9.17 14.304c.058.335.587.524 1.185.427.597-.097 1.038-.451.98-.786s-.587-.525-1.184-.427c-.597.102-1.034.456-.981.786M4.417 7.949l.073.093s-.005-.015-.005-.035c-.005-.019-.005-.048-.014-.087a2 2 0 0 0-.078-.31 2.4 2.4 0 0 0-.175-.418 2 2 0 0 0-.14-.223 1 1 0 0 0-.205-.214c-.048-.03-.097-.063-.165-.083-.014-.004-.034-.004-.053-.01h-.073c-.01 0-.029.006-.034.006l-.029.01-.02.004-.004.005-.01.005a.34.34 0 0 0-.16.136.45.45 0 0 0-.054.175c-.01.106.015.194.035.272.024.077.053.15.082.208a1.5 1.5 0 0 0 .17.272q.036.045.058.068l.024.024-.024-.116c-.014-.073-.039-.18-.058-.301a2 2 0 0 1-.024-.194.6.6 0 0 1 .01-.19.1.1 0 0 1 .024-.053c.01-.005.014-.01.029-.015h.01l.014-.005c.005 0 0 .005 0 .005h.005a.2.2 0 0 1 .063.034c.049.04.102.093.15.15.054.064.102.122.146.185.087.126.175.248.248.35a5 5 0 0 0 .184.252m.355 1.078.034.005c.13.015.553.092 1.592.51.854.344 1.5.52 1.913.52.31 0 .393-.098.422-.132.044-.053.049-.107.044-.136a.19.19 0 0 0-.185-.17.16.16 0 0 0-.082.02l-.088.043h-.116c-.248 0-.762-.082-1.767-.49-1.204-.485-1.646-.539-1.777-.539-.03 0-.039 0-.058.005a.2.2 0 0 0-.117.078.182.182 0 0 0 .15.286zm.043 3.695a2.039 2.039 0 1 0 4.078 0 2.039 2.039 0 0 0-4.078 0m5.525 3.364c-.267.102-.5.247-.704.374.049.218.199.708.631.582.354-.107.15-.733.073-.956m.621.781c.117.044.578.083.534-.475-.014-.195-.029-.33-.038-.423q-.065-.006-.122-.005c-.136 0-.262-.004-.369-.004-.111 0-.17.004-.194.01l-.155.028c.038.253.145.797.344.87m1.787-1.378c.432-.195.432-.525.408-.695-.03-.18-.297-.558-1.38-.568 0 0-.334.782-1.242.928-.908.15-1.296-.025-1.451-.219 0 0-.874.257-.947.81-.073.554.66.749 1.01.554s.873-.616 1.573-.708c.373-.049 1.597.092 2.029-.102m2.47-4.234a2.039 2.039 0 1 0-4.077 0 2.039 2.039 0 0 0 4.078 0M3.117 18.198a3.3 3.3 0 0 0-.024.956c-.66-.14-1.034-.306-1.034-.476s.383-.335 1.058-.48m18.487.038c.573.136.888.287.883.442 0 .248-.767.476-2.063.656.233-.063.495-.233.796-.515a1.5 1.5 0 0 0 .35-.5 1 1 0 0 0 .034-.083m-.35-.072a1.05 1.05 0 0 1-.276.388c-.389.369-.622.447-.753.447-.257 0-.447-.36-.558-1.064-.005-.048-.015-.097-.02-.145-.092-.7-.412-1.04-.645-1.282-.204-.213-.301-.33-.262-.548.053-.316.436-.384.747-.384.146 0 .257.015.257.015h.02c.573.01 1.17.529 1.451 1.252.156.398.219.903.04 1.32M4.71 6.362a2 2 0 0 0-.326-.36c-.01-.398-.01-.757.01-.898.039-.262.69-1.024 1.296-1.607.51-.49 1.486-1.335 2.301-1.5q.189-.037.442-.038c1.554 0 4.7 1.165 4.855 1.32l.01.01c.038-.379.077-.908.01-1.059 0 0 .295.093.349.277 0 0 .733-.738.66-1.655 0 0 .165 0 .184.296 0 0 .53-1.253.918-1.141s-.126 1.86-.403 2.19c0 0 .442-.107.495-.404 0 0 .054.258-.02.403 0 0 .996-.81.957-1.12 0 0 .131.315.092.552 0 0 .826-.66.826-.937 0 0 .126 1.603-1.471 2.19 0 0 .422-.053.626-.092 0 0-.175.228-.442.553q-.242-.152-.563-.15c-.64 0-1.228.485-1.748 1.442.078-.418-.029-.758-.184-.792q-.009-.006-.024-.005c-.16 0-.389.277-.481.69-.092.437.015.806.175.84.058.014.13-.02.204-.088-.15.36-.267.694-.345.932-3.976 1.792-6.505 1.753-7.656 1.573a7 7 0 0 0-.442-.942c-.058-.097-.116-.194-.174-.281 2.776.747 6.476-.65 7.956-1.296-.077-.219-.087-.5-.02-.806.064-.296.195-.549.355-.719a2 2 0 0 0-.072-.242c-.34-.185-3.156-1.234-4.627-1.234-.146 0-.272.015-.379.034-1.3.267-3.277 2.53-3.35 2.85-.024.155-.014.68.005 1.214"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jaguar.svg�����������������������������������0000664�0000000�0000000�00000013025�14753064456�0025075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.241 6.609a7 7 0 0 0-.293.01s-1.6.072-2.1.798c0 0-.085.098-.037.203 0 0 .01.03-.01.05 0 0-.27.24-.406.455-.048.078-.102.209 0 .3 0 0 .045.035.063.065.039.064.075.159.123.215.07.084.211.228.41.193.073-.013.09-.04.09-.04.1.099.26.096.26.096-.02-.064-.09-.188-.1-.263a.4.4 0 0 1 .015-.162.7.7 0 0 1 .145-.271c.054-.054.192-.115.303-.038.088.063.194.268.106.56 0 .022-.1.23-.205.26 0 0-.01.004-.03.004-.07 0-.2-.073-.2-.073s0 .018.015.094c.012.043.027.09.04.127 0 0-.025.046-.042.072-.025.045-.046.131.01.17 0 0 .23.157.455.171.154.01.212-.095.212-.095.114-.156.2-.29.32-.399.327-.3.786-.38.786-.38.03-.004.533-.144 1.386.539-.244.02-.534.078-.756.117-.632.113-1.037.71-1.155.952-.307.633.32.851.32.851.01-.006.6-.052.886-.683 0 0 .104-.279.383-.188.182.059 1.79.62 2.152.716 0 0 1.077.28 1.482-.215.649.213 1.257.316 2.85.11.277-.036.495-.027.495-.027.372.027.712.278.815.442.42.671.95 2.003 2.796 1.841l.835-.076c.51-.03.924-.05 1.345.172.183.096.285.131.596.428.425.404.816.842 1.336.603.185-.085.393-.415.393-.415a.6.6 0 0 0-.253-.419c.473.113 1.54.185 1.952-.536.107-.168.118-.318.078-.408-.113-.253-.426-.17-.426-.17-.148.03-.317.2-.568.274-.538.16-.968-.026-.968-.026-.829-.359-3.493-1.884-4.848-2.55 0 0-1.555-.78-3.839-1.684 0 0-4.148-1.823-7.212-1.77zm0 .136c3-.051 7.113 1.739 7.154 1.758v.001q.552.22 1.043.425l-.475-.188a43 43 0 0 0-1.828-.645c-1.544-.533-2.22-.627-2.267-.633a6 6 0 0 0-.256-.038l-.278-.032.154.249c-1.09-.771-2.395-.81-2.459-.812-.263 0-.492.075-.67.16l.089-.165-.216-.01a6 6 0 0 0-.901.018 5 5 0 0 1 .908-.088zm-.319.198q.142 0 .307.008l-.036.067c-.077.146-.385.448-.892.336 0 0 0 .226.555.307 0 0 .497.088 1.341.767 0 0-.403-.802-1.088-1.01 0 0-.086-.018-.044-.072 0 0 .404-.38.967-.38 0 0 1.754.038 2.869 1.204 0 0-.05-.203-.225-.49l-.073-.12s.067.008.25.038c0 0 .67.083 2.243.626 0 0 1.179.388 1.824.643.97.387 3.398 1.327 4.947 2.172.276.15 3.077 1.61 3.077 1.61.775.349 1.312.137 1.312.137.175-.066.492-.31.63-.172.071.071.081.167.047.26-.04.14-.24.328-.483.435-.255.114-.787.144-1.094.094 0 0-.596-.06-1.117-.605-.165-.172-.367-.367-.554-.559a1.04 1.04 0 0 0-.62-.333c-.35-.047-1.205-.07-1.526-.177-.215-.072-.474-.217-.819-.728-.166-.244-.283-.311-.509-.455 0 0 .173.138.271.312.142.252.213.435.29.57s.164.254.295.36c.164.131.266.156.443.185.17.028.742.023 1.232.016.483-.008.699.148.857.282.147.124.4.477.554.632.184.184.32.372.684.556.127.064.334.222.323.374-.164.164-.367.207-.855.076.035.034.29.303.727.176a.56.56 0 0 1-.396.15c-.458-.026-.906-.59-1.158-.798-.19-.158-.213-.197-.537-.422-.493-.341-1.598-.245-1.598-.245l-.812.042c-1.58.12-2.244-1.28-2.419-1.572a2 2 0 0 0-.168-.25c-.08-.108-.512-.668-.949-.852 0 0 .43.37.404.614 0 0-.178-.083-.662-.014-2.081.297-2.79-.224-2.79-.224.097-.417-.194-.845-.194-.845.16.05 1.184.396 2.155.2 0 0-1.581.008-2.69-.877 0 0 .69.865.526 1.431 0 0-.113.603-1.316.36-.129-.025-.28-.068-2.08-.568-.424-.127-.57.075-.647.197 0 .178-.213.386-.318.45-.558-.1-.336-.617-.336-.617-.35.502.017.724.133.74q-.106.049-.19.078s-.457-.271-.202-.715c.355-.62.717-.819 1.38-.88.29-.027.531-.048.715-.022.48.066.782.338 1.502.407-1.528-.45-1.532-1.335-1.537-1.352V8.5c-.085.292-.038.538.037.746-.02-.008-.355-.228-.483-.305-.548-.335-.982-.394-.982-.394-.182-.023-.266-.244-.266-.244-.01-.011-.013-.022-.02-.032-.252-.432-.502-.44-.502-.44a.84.84 0 0 1 .136.372c.01.055.014.157.014.187 0 .462-.54.607-.54.607-.372.473-.353.483-.436.495s-.265-.08-.265-.08c-.014-.008-.018-.029-.016-.042 0-.029.028-.047.028-.047.07-.055.127-.11.127-.11.394-.403.441-.6.393-.861-.1-.524-.474-.463-.474-.463-.182.018-.256.168-.256.168a5 5 0 0 0-.195.392c-.08.176-.164.215-.207.223a.4.4 0 0 1-.065.003c-.127-.005-.223-.121-.223-.121-.01-.006-.01-.013-.016-.018-.116-.124-.032-.287-.032-.287.156-.363.46-.416.5-.421l.182-.026c.385-.065.567-.466.567-.466a3 3 0 0 0-.386.014c-.256.045-.343.346-.343.345-.216.05-.21-.136-.172-.193.034-.052.16-.275.991-.467 0 0 .314-.095.978-.092m-.159.12c-.2 0-.305.112-.305.123 0 .006.027.009.07.01l.07.003a.8.8 0 0 0 .32-.083.4.4 0 0 0 .092-.052l-.245-.002zm.164.363v.004c.03.081.108.11.143.12v-.001c.163.05.309.138.437.241-.39-.218-.613-.261-.628-.264a2 2 0 0 1-.157-.032 1 1 0 0 0 .208-.068zm-1.364.05s-.05.16-.247.194c0 0-.077.018-.108.019l.021-.06c0-.012.051-.138.165-.15 0 0 .066-.004.169-.004zm-.683.233a.2.2 0 0 0 .056.047c-.135.057-.485.432-.485.432.177-.262.408-.458.41-.46 0-.003.01-.006.01-.009s.01-.007.01-.01zm.737.315c.038-.005.217-.012.3.27a.43.43 0 0 0-.14-.185.34.34 0 0 0-.254-.055.2.2 0 0 1 .094-.03m-1.282 7.398v.873c0 .255-.056.426-.18.55-.165.162-.437.228-.84.228H0v.256h1.428c.677 0 1.156-.092 1.405-.347.143-.146.212-.329.212-.63v-.93zm2.688 0L3.37 17.33h.412l.348-.406h2.104l.35.406h.796l-1.656-1.907zm4.086 0c-.483 0-.772.056-1.03.2a.83.83 0 0 0-.432.75c0 .385.175.666.557.82q.341.138.917.137h2.055v-.875h-.707v.62H9.336c-.366 0-.58-.053-.737-.173q-.227-.172-.229-.525c0-.229.075-.4.215-.513.158-.128.365-.186.745-.186h1.774v-.255zm5.656 0v.924c0 .24-.03.393-.122.52-.154.217-.397.295-.896.295h-.06c-.476 0-.741-.078-.895-.294-.091-.128-.122-.273-.122-.521v-.923h-.71v.95c0 .246.027.44.15.603.202.264.574.416 1.6.416h.011c1.032 0 1.402-.152 1.604-.416.124-.163.15-.357.15-.603v-.95zm2.677 0-1.654 1.907h.412l.349-.406h2.103l.35.406h.796l-1.656-1.907zm2.986 0v1.908h.71v-.661h.933l1.064.66H24l-1.117-.673c.266-.009.493-.05.667-.143a.52.52 0 0 0 .267-.472c0-.255-.114-.418-.321-.51-.185-.08-.413-.108-.866-.108zm.71.24h1.399c.266 0 .384.026.465.086.077.058.105.146.105.283v.036c0 .123-.03.223-.12.286s-.214.075-.441.075h-1.408zM5.18 15.7l.84.977H4.342zm12.419 0 .84.977h-1.68z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jamboard.svg���������������������������������0000664�0000000�0000000�00000000345�14753064456�0025404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.143 0v7.877h7.783V0zm0 8.155v7.784h7.783V8.155zm-.28.005a7.926 7.923 0 0 0-7.789 7.917A7.926 7.923 0 0 0 12 24a7.926 7.923 0 0 0 7.918-7.78h-8.056Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jameson.svg����������������������������������0000664�0000000�0000000�00000002473�14753064456�0025265�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.35 0a.01.01 0 0 1 .012.007l.014.052a.01.01 0 0 1-.004.01c-.594.406-1.168 1.487-.837 2.726l1.259 4.71 1.82 6.808c.373 1.398.892 2.173 1.611 2.28a.01.01 0 0 1 .008.006l.02.055a.01.01 0 0 1-.003.01c-.373.365-.678 1.27-1.064 2.102q-.065.142-.126.285c-.444 1.036-1.388 3.244-4.223 4.331-3.415 1.308-6.886.483-8.35-1.94-.958-1.58-.729-3.739.827-4.614 1.35-.757 2.806-.26 3.354.86.532 1.085.165 2.242-.274 2.623-.09.08-.002.232.204.37.91.629 1.945.595 2.945.065 1.28-.677 1.735-1.84 1.071-4.323L9.278 3.94C8.947 2.7 7.91 2.05 7.194 1.998a.01.01 0 0 1-.008-.007l-.014-.052a.01.01 0 0 1 .007-.012zm1.142.288c.01-.003.017.008.01.015-.386.438-.643 1.101-.35 2.196L18.2 13.894c.534 1.997 1.44 2.106 1.869 2.233a.02.02 0 0 1 .009.032c-.223.226-.78 1.574-1.043 2.227-.412 1.027-1.157 2.176-1.895 2.764-.009.006-.02-.004-.014-.013.673-1.065 1.271-2.549 1.68-3.579.195-.494.383-.937.552-1.151a1 1 0 0 1 .056-.064c.012-.012.005-.032-.011-.033a1 1 0 0 1-.128-.016c-.35-.073-.71-.352-.97-.715-.265-.37-.491-.882-.666-1.535L14.631 2.8c-.327-1.222.144-2.287.861-2.511ZM8.715 16.25c.608.206 1.14.649 1.504 1.401a3.3 3.3 0 0 1 .165 2.502.02.02 0 0 1-.015.013.85.85 0 0 1-.533-.08.06.06 0 0 1-.029-.071 3.44 3.44 0 0 0-.153-2.638 2.8 2.8 0 0 0-.947-1.11c-.01-.006-.003-.02.008-.017"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jamstack.svg���������������������������������0000664�0000000�0000000�00000000417�14753064456�0025422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.365 0 0 5.364 0 12s5.365 12 12 12 12-5.364 12-12V0zm.496 3.318h8.17v8.17h-8.17zm-9.168 9.178h8.16v8.149c-4.382-.257-7.904-3.767-8.16-8.149m9.168.016h8.152a8.684 8.684 0 0 1-8.152 8.148z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/japanairlines.svg����������������������������0000664�0000000�0000000�00000003035�14753064456�0026444�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.138.034A12 12 0 0 0 2.35 4.873a9.35 9.35 0 0 0 1.351 7.82.014.014 0 1 1-.022.018 8.23 8.23 0 0 1-2.08-6.656c0-.015-.012-.019-.019-.007A11.9 11.9 0 0 0 .362 9.065a8.76 8.76 0 0 0 2.421 5.358.015.015 0 0 1-.018.023 7.17 7.17 0 0 1-2.64-4.044c0-.015-.02-.015-.02 0a12 12 0 0 0-.058 2.656A7.2 7.2 0 0 0 2.24 16.21c.016.015 0 .035-.016.027A6.5 6.5 0 0 1 .27 14.457c-.007-.011-.02-.007-.017.006a11.996 11.996 0 0 0 23.48 0c0-.013-.009-.017-.017-.006a6.5 6.5 0 0 1-1.955 1.78c-.018.01-.032-.011-.016-.026a7.2 7.2 0 0 0 2.196-3.153h.013a12 12 0 0 0-.06-2.656c0-.015-.017-.015-.02 0a7.17 7.17 0 0 1-2.64 4.044.015.015 0 0 1-.018-.023 8.76 8.76 0 0 0 2.42-5.358 11.9 11.9 0 0 0-1.218-3.017c-.008-.012-.022-.008-.018.007a8.23 8.23 0 0 1-2.08 6.656.015.015 0 1 1-.023-.017 9.34 9.34 0 0 0 1.353-7.821A12 12 0 0 0 11.138.034m.044.311a7.721 7.721 0 0 1 6.238 13.173l-.001.002c-2.454 2.387-6.118.862-5.745-2.07.286-2.26 3.057-4.51 5.156-5.732a.016.016 0 0 0 0-.027 18 18 0 0 1-1.214-1.296 2.413 2.413 0 0 0-3.855.067l-6.032.56a.019.019 0 0 0 0 .037l6.466.375c1.147.064 1.521 1.105.416 1.943-4.107 3.113-4.84 6.407-3.919 9.018a.017.017 0 0 1-.031.014 5.3 5.3 0 0 1-.814-1.875A7.721 7.721 0 0 1 11.182.345M9.12 17.335h1.635l-.874 2.281a2.195 2.195 0 0 1-2.339 1.262 5.3 5.3 0 0 1-1.138-.112l.28-.728c.748.087 1.39.021 1.641-.633zm3.866 0h1.463l.328 3.43H13.14l-.025-.677h-1.477l-.543.678H9.743l2.74-3.176a.7.7 0 0 1 .503-.254zm3.545 0h1.636l-1.039 2.704h2.079l-.28.727h-3.71zm-3.47.999-.88 1.096h.92z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jasmine.svg����������������������������������0000664�0000000�0000000�00000001465�14753064456�0025257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.591 19.649h.771v-3.786h-.77zm-6.874-5.03-.238-.733 3.6-1.17.238.735-3.6 1.17m4.645-5.762L7.138 5.796l.624-.453 2.224 3.062zm5.315.028-.624-.454 2.225-3.062.624.453zm4.592 5.78-3.6-1.17.238-.734 3.6 1.17zM12 .001C5.383.001 0 5.384 0 11.998 0 18.617 5.383 24 12 24s12-5.382 12-12c0-6.617-5.383-12-12-12zm0 2.43c5.284 0 9.569 4.283 9.569 9.567 0 5.287-4.285 9.573-9.569 9.573-5.286 0-9.57-4.286-9.57-9.573 0-5.284 4.285-9.567 9.57-9.567m1.552 7.96.575 1.768.747.242 4.736-1.538-.86-2.645-4.736 1.539zm.337 2.5-1.504 1.093v.785l2.927 4.03 2.25-1.636-2.927-4.029zm-2.275 1.093-1.504-1.093-.747.243-2.927 4.029 2.25 1.635 2.928-4.029zM9.873 12.16l.574-1.767-.462-.635-4.736-1.54-.86 2.646 4.737 1.54zm1.198-2.22h1.859l.462-.636v-4.98H10.61v4.98z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/javascript.svg�������������������������������0000664�0000000�0000000�00000001625�14753064456�0025775�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h24v24H0zm22.034 18.276c-.175-1.095-.888-2.015-3.003-2.873-.736-.345-1.554-.585-1.797-1.14-.091-.33-.105-.51-.046-.705.15-.646.915-.84 1.515-.66.39.12.75.42.976.9 1.034-.676 1.034-.676 1.755-1.125-.27-.42-.404-.601-.586-.78-.63-.705-1.469-1.065-2.834-1.034l-.705.089c-.676.165-1.32.525-1.71 1.005-1.14 1.291-.811 3.541.569 4.471 1.365 1.02 3.361 1.244 3.616 2.205.24 1.17-.87 1.545-1.966 1.41-.811-.18-1.26-.586-1.755-1.336l-1.83 1.051c.21.48.45.689.81 1.109 1.74 1.756 6.09 1.666 6.871-1.004.029-.09.24-.705.074-1.65zm-8.983-7.245h-2.248c0 1.938-.009 3.864-.009 5.805 0 1.232.063 2.363-.138 2.711-.33.689-1.18.601-1.566.48-.396-.196-.597-.466-.83-.855-.063-.105-.11-.196-.127-.196l-1.825 1.125c.305.63.75 1.172 1.324 1.517.855.51 2.004.675 3.207.405.783-.226 1.458-.691 1.811-1.411.51-.93.402-2.07.397-3.346.012-2.054 0-4.109 0-6.179z"/></svg>�����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jbl.svg��������������������������������������0000664�0000000�0000000�00000001361�14753064456�0024373�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m0 5.265 2.022 4.589 2.022-4.59zm2.022 7.6c.698 0 1.266-.565 1.266-1.26 0-.699-.568-1.262-1.266-1.262a1.262 1.262 0 1 0 0 2.523M.928 16.228c0 .957.862 2.509 3.315 2.509s3.315-1.188 3.315-2.51V5.266H5.369l.001 11.342c0 .62-.503 1.14-1.126 1.14a1.127 1.127 0 0 1-1.128-1.124l-.001-2.311H.928zm8.289 2.311V5.265h4.374c.845 0 2.187.693 2.187 2.162v2.261c0 .662-.58 1.833-1.44 1.833.86 0 1.44.742 1.44 1.305v3.979c0 .676-.546 1.733-2.187 1.733zm3.38-7.559c.796 0 .995-.134.995-2.214s-.2-2.246-.995-2.246h-1.195v4.457zm.995 3.811c0-2.081 0-2.69-.864-2.69h-1.326v5.348l1.326.003c.863 0 .863-.581.863-2.66m3.779 3.748H24v-4.226h-2.189l.002 2.31a1.126 1.126 0 0 1-2.255 0V5.265H17.37Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jcb.svg��������������������������������������0000664�0000000�0000000�00000001571�14753064456�0024365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.05 9.864c.972.074 1.726.367 2.355.685v-1.31s-1.258-.317-2.441-.368C8.838 8.686 7.669 10.305 7.669 12s1.17 3.314 5.295 3.13c1.183-.054 2.44-.37 2.44-.37v-1.309c-.619.308-1.382.611-2.354.683-1.68.128-2.69-.69-2.69-2.134 0-1.445 1.01-2.261 2.69-2.135m7.685 4.122c-.051.01-.158.02-.215.02h-1.8v-1.631h1.8c.057 0 .164.01.215.02a.806.806 0 0 1 .632.795.804.804 0 0 1-.632.796M18.72 9.95h1.632c.059 0 .145.007.177.013.338.058.626.331.626.74a.735.735 0 0 1-.626.739 2 2 0 0 1-.178.013h-1.63zm3.499 1.985V11.9c.913-.133 1.415-.726 1.415-1.42 0-.883-.734-1.392-1.73-1.442-.077-.003-.202-.01-.304-.01h-5.332v5.946h5.755c1.13 0 1.977-.604 1.977-1.547 0-.87-.772-1.422-1.781-1.491zm-17.864.68c0 .878-.591 1.53-1.666 1.53-.917 0-1.817-.272-2.689-.694v1.309s1.402.383 3.191.383c2.971 0 3.837-1.125 3.837-2.529V9.027H4.354z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jeep.svg�������������������������������������0000664�0000000�0000000�00000002627�14753064456�0024555�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.165 7.169v5.2c0 .677-.444 1.079-1.163 1.079-.718 0-1.099-.529-1.099-1.1v-.93H0v.952c0 .972.296 2.707 3.024 2.707 2.727 0 3.108-1.862 3.108-2.75V7.17Zm4.918 2.156c-1.798 0-2.6 1.648-2.6 3.066 0 1.416.909 2.79 2.769 2.79 1.628.022 2.707-1.035 2.707-1.818h-1.798s-.211.508-.846.508c-.634 0-.993-.36-.993-1.227h3.658c0-2.727-1.353-3.32-2.897-3.32m5.847 0c-1.797 0-2.6 1.648-2.6 3.066 0 1.416.909 2.79 2.77 2.79 1.628.022 2.706-1.035 2.706-1.818H16.01s-.212.508-.846.508c-.635 0-.994-.36-.994-1.227h3.657c0-2.727-1.352-3.32-2.896-3.32m6.743.063c-.913 0-1.318.497-1.34.522-.128.154-.287.317-.287-.078v-.296h-1.82v7.295h1.84v-2.009c0-.148.148-.126.255 0 .106.128.57.444 1.375.444 1.459 0 2.304-1.268 2.304-3.002 0-2.241-1.416-2.876-2.327-2.876m-12.4 1.12c.676 0 .971.508.971 1.037h-1.86c0-.572.233-1.036.888-1.036m5.846 0c.677 0 .973.508.973 1.037H14.23c0-.572.233-1.036.888-1.036m5.92.297c.932 0 1.1.719 1.1 1.459s-.127 1.712-1.013 1.712c-.889 0-1.122-.57-1.102-1.648.022-1.079.444-1.523 1.016-1.523zm2.282 4.566a.586.586 0 0 0-.586.586.585.585 0 1 0 .586-.586m0 .062a.524.524 0 0 1 .524.524.525.525 0 0 1-.524.524.526.526 0 0 1-.525-.524c0-.29.235-.524.525-.524m-.21.202v.621h.072v-.269h.176l.116.27h.08l-.121-.288a.14.14 0 0 0 .072-.045.18.18 0 0 0 .043-.115c0-.103-.08-.174-.195-.174zm.07.068h.172c.072 0 .118.041.118.105 0 .072-.049.116-.128.116h-.162z"/></svg>���������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jekyll.svg�����������������������������������0000664�0000000�0000000�00000003170�14753064456�0025116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.073 24q-.523 0-1.02-.189a2.85 2.85 0 0 1-1.726-3.402l-.015-.006.09-.226L12.399 2.01c.105-.27.057-.91.006-1.267a.5.5 0 0 1 .008-.24l.008-.023.006-.015V.458l.009-.019c.108-.292.45-.439 1.008-.439.673 0 1.602.21 2.551.573.797.307 1.523.689 2.033 1.075.602.45.842.854.707 1.2l-.031.045-.016.015a.8.8 0 0 1-.15.165c-.314.271-.764.735-.84.945l-7.063 18.421-.016-.006a2.87 2.87 0 0 1-2.543 1.561H8.07zm-2.187-3.718-.02.05A2.36 2.36 0 0 0 7.23 23.35q.407.156.837.154c.971 0 1.83-.585 2.188-1.5l.027-.061 6.959-18.09c.146-.39.84-1.02.979-1.14l.016-.016c.012-.015.02-.015.02-.03 0-.06-.061-.27-.557-.645-.479-.36-1.154-.72-1.904-1.005-.868-.328-1.768-.539-2.368-.539-.39 0-.524.082-.545.126v.04c.016.104.147 1.035-.034 1.515l-6.962 18.12zm8.95-11.507s-.964 1.109-1.843 1.509c-.88.398-1.529.293-2.32.756-.789.461-1.188 1.103-1.188 1.103L6.27 20.505c-.348.944.168 2.05 1.125 2.42.96.369 2.04-.12 2.412-1.056zM9.905 18.76c.104-.041.225 0 .266.105.042.104 0 .222-.105.264-.104.043-.225 0-.266-.104a.204.204 0 0 1 .105-.265m-1.014-1.802a.297.297 0 0 1-.397-.155.296.296 0 0 1 .154-.397c.154-.07.335 0 .398.153.074.15.008.314-.155.39zm.286-1.096a.58.58 0 0 1 .287-.758.574.574 0 0 1 .75.285.583.583 0 0 1-.285.757c-.3.126-.629 0-.765-.285zm2.426-2.258a.295.295 0 0 1 .398.15c.07.154 0 .336-.153.399a.297.297 0 0 1-.399-.155.293.293 0 0 1 .154-.397zm-1.293-1.379c.105-.042.226 0 .266.105.043.104 0 .226-.104.266-.104.042-.226 0-.265-.104a.205.205 0 0 1 .103-.267M13.681 1.14c.1-.261.993-.162 1.995.226.999.384 1.729.909 1.63 1.17-.104.264-.997.164-1.996-.221-1.005-.385-1.734-.91-1.632-1.176z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jellyfin.svg���������������������������������0000664�0000000�0000000�00000000576�14753064456�0025447�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .002C8.826.002-1.398 18.537.16 21.666c1.56 3.129 22.14 3.094 23.682 0S15.177 0 12 0zm7.76 18.949c-1.008 2.028-14.493 2.05-15.514 0C3.224 16.9 9.92 4.755 12.003 4.755c2.081 0 8.77 12.166 7.759 14.196zM12 9.198c-1.054 0-4.446 6.15-3.93 7.189.518 1.04 7.348 1.027 7.86 0 .511-1.027-2.874-7.19-3.93-7.19z"/></svg>����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jenkins.svg����������������������������������0000664�0000000�0000000�00000010766�14753064456�0025276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.872 24h-.975a4 4 0 0 1-.07-.197c-.215-.666-.594-1.49-.692-2.154-.146-.984.78-1.039 1.374-1.465.915-.66 1.635-1.025 2.627-1.62.295-.179 1.182-.624 1.281-.829.201-.408-.345-.982-.49-1.3-.225-.507-.345-.937-.376-1.435-.824-.13-1.455-.627-1.844-1.185-.63-.925-1.066-2.635-.525-3.936.045-.103.254-.305.285-.463.06-.308-.105-.72-.12-1.048-.06-1.692.284-3.15 1.425-3.66.463-1.84 2.113-2.453 3.673-3.367.58-.342 1.224-.562 1.89-.807 2.372-.877 6.027-.712 7.994.783.836.633 2.176 1.97 2.656 2.939 1.262 2.555 1.17 6.825.287 9.934-.12.421-.29 1.032-.533 1.533-.168.35-.689 1.05-.625 1.36.064.314 1.19 1.17 1.432 1.395.434.422 1.26.975 1.324 1.5.07.557-.248 1.336-.41 1.875-.217.721-.436 1.441-.654 2.131H2.87zm11.104-3.54a7.7 7.7 0 0 0-2.065-.757c-.87-.164-.78 1.188-.75 1.994.03.643.36 1.316.51 1.744.076.197.09.41.256.449.3.068 1.29-.326 1.575-.479.6-.328 1.064-.844 1.574-1.189.016-.17.016-.34.03-.508a2.65 2.65 0 0 0-1.095-.277c.314-.15.75-.15 1.035-.332l.016-.193c-.496-.03-.69-.254-1.021-.436zm7.454 2.935a18 18 0 0 0 .465-1.752c.06-.287.215-.918.178-1.176-.059-.459-.684-.799-1.004-1.086-.584-.525-.95-.975-1.56-1.469-.249.375-.78.615-.983.914 1.447-.689 1.71 2.625 1.141 3.69.09.329.391.45.514.735l-.086.166h1.29c.013 0 .03 0 .044.014zm-6.634-.012c-.05-.074-.1-.135-.15-.209l-.301.195h.45zm2.77 0c.008-.209.018-.404.03-.598-.53.029-.825-.48-1.196-.527-.324-.045-.6.361-1.02.195-.095.105-.183.227-.284.316q.23.27.424.584h.815a.3.3 0 0 1 .3-.285c.165 0 .284.121.284.27h.66zm2.116 0c-.314-.479-.947-.898-1.68-.555l-.03.541h1.71zm-8.51 0-.104-.344c-.225-.72-.36-1.26-.405-1.68-.914-.436-1.875-.87-2.654-1.426-.15-.105-1.109-1.35-1.23-1.305-1.739.676-3.359 1.86-4.814 2.984.256.557.48 1.141.69 1.74h8.505zm8.265-2.113c-.029-.512-.164-1.56-.48-1.74-.66-.39-1.846.78-2.34.943.045.15.135.271.15.48.285-.074.645-.029.898.092-.299.03-.629.03-.824.164-.074.195.016.48-.029.764.69.197 1.5.303 2.385.332.164-.227.225-.645.211-1.082zm-4.08-.36c-.044.375.046.51.12.943 1.26.391 1.034-1.74-.135-.959zM8.76 19.5c-.45.457 1.27 1.082 1.814 1.115 0-.29.165-.564.135-.77-.65-.118-1.502-.042-1.945-.347zm5.565.215c0 .043-.061.03-.068.064.58.451 1.014.545 1.802.51.354-.262.67-.563 1.043-.807-.855.074-1.931.607-2.774.23zm3.42-17.726c-1.606-.906-4.35-1.591-6.076-.731-1.38.692-3.27 1.84-3.899 3.292.6 1.402-.166 2.686-.226 4.109-.018.757.36 1.42.391 2.242-.2.338-.825.38-1.26.356-.146-.729-.4-1.549-1.155-1.63-1.064-.116-1.845.764-1.89 1.683-.06 1.08.833 2.864 2.085 2.745.488-.046.608-.54 1.139-.54.285.57-.445.75-.523 1.154-.016.105.06.511.104.705.233.944.744 2.16 1.245 2.88.635.9 1.884 1.051 3.229 1.141.24-.525 1.125-.48 1.706-.346-.691-.27-1.336-.945-1.875-1.529-.615-.676-1.23-1.41-1.261-2.28 1.155 1.604 2.1 3 4.2 3.704 1.59.525 3.45-.254 4.664-1.109.51-.359.811-.93 1.17-1.439 1.35-1.936 1.98-4.71 1.846-7.394-.06-1.111-.06-2.221-.436-2.955-.389-.781-1.695-1.471-2.475-.781-.15-.764.63-1.23 1.545-.96-.66-.854-1.336-1.858-2.266-2.384zM13.58 14.896c.615 1.544 2.724 1.363 4.505 1.323-.084.194-.256.435-.465.515-.57.232-2.145.408-2.937-.012-.506-.27-.824-.873-1.102-1.227-.137-.172-.795-.608-.012-.609zm.164-.87c.893.464 2.52.517 3.731.48.066.267.066.593.068.913-1.55.08-3.386-.304-3.794-1.395h-.005zm6.675-.586c-.473.9-1.145 1.897-2.539 1.928-.023-.284-.045-.735 0-.904 1.064-.103 1.727-.646 2.543-1.017zm-.649-.667c-1.02.66-2.154 1.375-3.824 1.21-.351-.31-.485-1-.14-1.458.181.313.06.885.57.97.944.165 2.038-.579 2.73-.84.42-.713-.046-.976-.42-1.433-.782-.93-1.83-2.1-1.802-3.51.314-.224.346.346.391.45.404.96 1.424 2.175 2.174 3 .18.21.48.39.51.524.092.39-.254.854-.209 1.11zm-13.439-.675c-.314-.184-.393-.99-.768-1.01-.535-.03-.438 1.05-.436 1.68-.37-.33-.435-1.365-.164-1.89-.308-.15-.445.164-.618.284.22-1.59 2.34-.734 1.99.96zM4.713 5.995c-.685.756-.54 2.174-.459 3.188 1.244-.785 2.898.06 2.883 1.394.595-.016.223-.744.115-1.215-.353-1.528.592-3.187.041-4.59-1.064.084-1.939.52-2.578 1.215zm9.12 1.113c.307.562.404 1.148.84 1.57.195.19.574.424.387.95-.045.121-.365.391-.551.45-.674.195-2.254.03-1.721-.81.563.015 1.314.36 1.732-.045-.314-.524-.885-1.53-.674-2.13zm6.198-.013h.068c.33.668.6 1.375 1.004 1.965-.27.628-2.053 1.19-2.023.057.39-.17 1.05-.035 1.395-.25-.193-.556-.48-1.006-.434-1.771zm-6.927-1.617c-1.422-.33-2.131.592-2.56 1.553-.384-.094-.231-.615-.135-.883.255-.701 1.28-1.633 2.119-1.506.359.057.848.386.576.834zM9.642 1.593c-1.56.44-3.56 1.574-4.2 2.974.495-.07.84-.321 1.33-.351.186-.016.428.074.641.015.424-.104.78-1.065 1.102-1.41.31-.345.685-.496.94-.81.167-.09.409-.074.42-.33-.073-.075-.15-.135-.232-.105z"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/simple/jest.svg�������������������������������������0000664�0000000�0000000�00000004757�14753064456�0024605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.251 11.82a3.12 3.12 0 0 0-2.328-3.01L22.911 0H8.104L11.1 8.838a3.12 3.12 0 0 0-2.244 2.988 3.12 3.12 0 0 0 1.313 2.536 8.3 8.3 0 0 1-1.084 1.244 8.1 8.1 0 0 1-2.55 1.647c-.834-.563-1.195-1.556-.869-2.446a3.11 3.11 0 0 0-.91-6.08 3.117 3.117 0 0 0-3.113 3.113c0 .848.347 1.626.903 2.182q-.072.144-.146.299c-.465.959-.993 2.043-1.195 3.259-.403 2.432.257 4.384 1.849 5.489A5.1 5.1 0 0 0 5.999 24c1.827 0 3.682-.917 5.475-1.807 1.279-.632 2.599-1.292 3.898-1.612.48-.118.98-.187 1.508-.264 1.07-.153 2.175-.312 3.168-.89a4.48 4.48 0 0 0 2.182-3.091c.174-.994 0-1.994-.444-2.87.298-.48.465-1.042.465-1.647zm-1.355 0c0 .965-.785 1.75-1.75 1.75a1.753 1.753 0 0 1-1.085-3.126l.007-.007q.085-.063.18-.125s.008 0 .008-.007c.028-.014.055-.035.083-.05.007 0 .014-.006.021-.006q.044-.021.097-.042.054-.02.098-.041c.007 0 .013-.007.02-.007.028-.007.056-.021.084-.028.007 0 .02-.007.028-.007.034-.007.062-.014.097-.02h.007l.104-.022c.007 0 .02 0 .028-.007.028 0 .055-.007.083-.007h.035c.035 0 .07-.007.111-.007h.09c.028 0 .05 0 .077.007h.014q.083.009.167.028a1.766 1.766 0 0 1 1.396 1.723zM10.043 1.39h10.93l-2.509 7.4c-.104.02-.208.055-.312.09l-2.64-5.385-2.648 5.35c-.104-.034-.216-.055-.327-.076zm4.968 9.825a3.1 3.1 0 0 0-.938-1.668l1.438-2.904 1.452 2.967c-.43.43-.743.98-.868 1.605zm-3.481-1.098c.034-.007.062-.014.097-.02h.02c.029-.008.056-.008.084-.015h.028c.028 0 .049-.007.076-.007h.271c.028 0 .049.007.07.007.014 0 .02 0 .035.007.027.007.048.007.076.014q.009-.002.028.007l.097.02h.007q.042.01.083.029c.007 0 .014.007.028.007.021.007.049.014.07.027.007 0 .014.007.02.007.028.014.056.021.084.035h.007a.4.4 0 0 1 .09.049h.007c.028.014.056.034.084.048.007 0 .007.007.013.007.028.014.05.035.077.049l.007.007c.083.062.16.132.236.201l.007.007a1.75 1.75 0 0 1 .48 1.209 1.752 1.752 0 0 1-3.502 0 1.74 1.74 0 0 1 1.32-1.695m-6.838-.049c.966 0 1.751.786 1.751 1.751s-.785 1.751-1.75 1.751-1.752-.785-1.752-1.75.786-1.752 1.751-1.752m16.163 6.025a3.07 3.07 0 0 1-1.508 2.133c-.758.438-1.689.577-2.669.716a17 17 0 0 0-1.64.291c-1.445.355-2.834 1.05-4.182 1.717-1.724.854-3.35 1.66-4.857 1.66a3.65 3.65 0 0 1-2.154-.688c-1.529-1.056-1.453-3.036-1.272-4.12.167-1.015.632-1.966 1.077-2.877.028-.055.049-.104.077-.16q.228.084.479.126c-.264 1.473.486 2.994 1.946 3.745l.264.139.284-.104c1.216-.431 2.342-1.133 3.336-2.071a9.3 9.3 0 0 0 1.445-1.716c.16.027.32.034.48.034a3.12 3.12 0 0 0 3.008-2.327h1.167a3.11 3.11 0 0 0 3.01 2.327c.576 0 1.11-.16 1.57-.43.18.52.236 1.063.139 1.605"/></svg>�����������������mkdocs-material-9.6.4/material/templates/.icons/simple/jet.svg��������������������������������������0000664�0000000�0000000�00000001346�14753064456�0024411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.778 19.044c3.048-.498 4.755-.73 8.219-2.395L24 13.81c-3.228 3.225-9.249 5.146-15.07 5.098-.75-.01-1.948.017-2.246-.024 3.1.49 6.18.556 9.094.159M3.836 15.764c.75.003 1.805-.014 2.403-.394.535-.467.93-1.106 1.247-1.828l1.545-4.697-2.157.013-1.199 3.664c-.225 1.161-.943 1.566-1.483 1.483l-1.354-.097-.515 1.676zm13.29-.104 1.672-5.074h2.44l.543-1.665-5.907-.01-.556 1.662H16.6l-1.73 5.077 2.257.01m-3.859-.024.564-1.718h-3.204l.297-.909h2.668l.543-1.641h-2.661l.262-.81h3.08l.57-1.713-5.267.027-2.205 6.757zm1.245-9.809c1.883-.072 3.743.083 5.969.277-2.192-.809-5.7-1.407-8.344-1.407-4.344 0-8.644 1.054-12.117 2.675L0 11.07c3.321-3.387 9.114-5.298 14.513-5.243"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jetblue.svg����������������������������������0000664�0000000�0000000�00000002664�14753064456�0025265�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.779 9.795h.926v4.986a1.265 1.265 0 0 1-1.344 1.256H0v-.869h.265c.316 0 .52-.147.52-.491V9.795M.779 7.96h.926v.926H.779zm2.444 3.748a.98.98 0 0 1 .971-1.081.98.98 0 0 1 .97 1.081zm2.867.762v-.762l.001-.074a1.877 1.877 0 0 0-1.868-1.868h-.029c-.887 0-1.897.565-1.897 2.365 0 1.885 1.095 2.337 2.043 2.337a2.12 2.12 0 0 0 1.665-.723l-.671-.564a1.45 1.45 0 0 1-1.005.446q-.036.003-.072.002a1.037 1.037 0 0 1-1.029-1.131zm.734-4.047h.925v1.372h.672v.705h-.672v2.681c0 .254.102.344.328.344h.344v.869h-.48a1.06 1.06 0 0 1-1.129-1.128v-2.738H6.35v-.733h.462zm4.673 3.127a.98.98 0 0 1 1.081.971.98.98 0 0 1-1.081.97H9.99V11.55zm-2.483 2.867h2.755a1.77 1.77 0 0 0 1.761-1.761l-.001-.073a1.45 1.45 0 0 0-1.05-1.49c.588-.201.977-.768.954-1.389 0-1.016-.655-1.732-1.913-1.732H9.019v6.456m2.393-5.587a.935.935 0 0 1 1.034.925.936.936 0 0 1-1.034.926H9.996V8.841zm2.647-.881h.926v5.272c0 .209.119.316.344.316h.316v.869h-.406c-.672 0-1.18-.288-1.18-1.129zm1.976 1.835h.925v2.737a.92.92 0 0 0 .912.986.92.92 0 0 0 .911-.986V9.795h.926v4.599h-.926v-.491a1.47 1.47 0 0 1-1.19.565 1.554 1.554 0 0 1-1.542-1.547l.001-.05zm5.096 1.913a.97.97 0 0 1 .971-1.072c.565 0 .943.372.971 1.072zm2.868.762v-.762l.001-.074a1.877 1.877 0 0 0-1.868-1.868h-.03c-.886 0-1.896.565-1.896 2.365 0 1.885 1.095 2.337 2.037 2.337a2.12 2.12 0 0 0 1.66-.745l-.672-.565a1.45 1.45 0 0 1-1.071.448 1.037 1.037 0 0 1-1.029-1.131z"/></svg>����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jetbrains.svg��������������������������������0000664�0000000�0000000�00000001134�14753064456�0025603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.345 23.997A2.347 2.347 0 0 1 0 21.652V10.988C0 9.665.535 8.37 1.473 7.433l5.965-5.961A5 5 0 0 1 10.989 0h10.666A2.347 2.347 0 0 1 24 2.345v10.664a5.06 5.06 0 0 1-1.473 3.554l-5.965 5.965A5.02 5.02 0 0 1 13.007 24v-.003zm8.969-6.854H5.486v1.371h5.828zM3.963 6.514h13.523v13.519l4.257-4.257a3.94 3.94 0 0 0 1.146-2.767V2.345c0-.678-.552-1.234-1.234-1.234H10.989a3.9 3.9 0 0 0-2.767 1.145zm-.192.192L2.256 8.22a3.94 3.94 0 0 0-1.145 2.768v10.664c0 .678.552 1.234 1.234 1.234h10.666a3.9 3.9 0 0 0 2.767-1.146l1.512-1.511H3.771z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jetpackcompose.svg���������������������������0000664�0000000�0000000�00000002615�14753064456�0026636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.135.003a2.6 2.6 0 0 0-1.42.344L2.55 5.06a2.6 2.6 0 0 0-.953.967l3.957 2.17a1.77 1.77 0 0 1 .603-.588l4.951-2.86a1.76 1.76 0 0 1 1.76 0l4.951 2.86a1.8 1.8 0 0 1 .526.46l3.921-2.265a2.6 2.6 0 0 0-.816-.744L13.291.347a2.6 2.6 0 0 0-1.152-.34Zm-.145 4.912a1.36 1.36 0 0 0-.68.182L6.36 7.953a1.35 1.35 0 0 0-.454.435l1.92 1.055a1.1 1.1 0 0 1 .31-.275l3.34-1.928a1.05 1.05 0 0 1 1.051 0l3.336 1.928a1 1 0 0 1 .238.199l.018-.01-.002-.002 1.877-1.08a1.4 1.4 0 0 0-.373-.322l-4.95-2.86a1.36 1.36 0 0 0-.68-.178Zm10.432 1.149-3.92 2.26a1.76 1.76 0 0 1 .2.812v5.715c0 .627-.332 1.21-.88 1.528l-4.95 2.86a1.8 1.8 0 0 1-.64.214v4.524a2.6 2.6 0 0 0 1.059-.313l8.162-4.713a2.58 2.58 0 0 0 1.289-2.23V7.297a2.6 2.6 0 0 0-.318-1.228Zm-20.937.238a2.6 2.6 0 0 0-.227.99v9.43c0 .918.491 1.767 1.293 2.229l8.162 4.713a2.6 2.6 0 0 0 1.225.336v-4.531a1.76 1.76 0 0 1-.833-.235L6.156 16.38a1.77 1.77 0 0 1-.877-1.528V9.136a1.8 1.8 0 0 1 .131-.676Zm16.67 2.223-1.89 1.092a1.06 1.06 0 0 1 .124.46v3.856c0 .378-.2.72-.526.907l-3.336 1.93a1 1 0 0 1-.295.107v2.17c.152-.027.304-.078.44-.157l4.949-2.859a1.36 1.36 0 0 0 .68-1.18V9.136a1.36 1.36 0 0 0-.147-.607Zm-12.387.13a1.4 1.4 0 0 0-.088.481v5.715a1.36 1.36 0 0 0 .68 1.18l4.95 2.86c.194.112.412.166.627.177v-2.174a1.05 1.05 0 0 1-.46-.123L8.14 14.843a1.05 1.05 0 0 1-.532-.908v-3.853a1 1 0 0 1 .077-.38l-.034-.013z"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jfrog.svg������������������������������������0000664�0000000�0000000�00000007507�14753064456�0024743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.655 15.631-1.268.353c.11.32.2.893.2 1.665v3.795h1.421v-4.015c.265-.32.552-.474.86-.474.156 0 .277.033.409.11l.386-1.312a1.05 1.05 0 0 0-.53-.122 1.2 1.2 0 0 0-.463.09c-.265.131-.596.43-.805.715 0-.32-.077-.573-.21-.805M5.76 13.757h-.154v7.676h1.477v-3.398h1.864v-1.268H7.082v-1.764H9.41l.088-.673c-1.4-.1-2.668-.32-3.738-.573m-3.452 8.7.684.796c.662-.265 1.49-.86 1.71-1.81.077-.308.1-.506.1-1.51v-6.165H3.308v6.33c0 .828-.032 1.136-.142 1.423-.144.32-.486.695-.86.938zm13.422-3.892c0 1.346-.264 1.92-.871 1.92a.78.78 0 0 1-.717-.464c-.11-.286-.176-.773-.176-1.434 0-.563.055-.96.143-1.268.11-.353.386-.574.728-.574.254 0 .474.11.606.298.199.265.287.76.287 1.522m.87 2.206c.465-.551.674-1.225.674-2.195 0-.916-.187-1.544-.617-2.073-.464-.574-1.06-.85-1.831-.85-1.456 0-2.426 1.18-2.426 2.967s.96 2.934 2.426 2.934c.827.01 1.367-.297 1.775-.783zm4.038-3.177c0 .52-.31.805-.86.805-.497 0-.828-.23-.828-.805 0-.529.31-.838.838-.838.53 0 .85.31.85.838m2.503-1.213-.585-.937c-.33.31-.727.485-1.113.485-.177 0-.276-.022-.662-.12a3.3 3.3 0 0 0-.97-.145c-1.38 0-2.272.75-2.272 1.92 0 .837.375 1.367 1.158 1.576-.32.077-.662.243-.816.43a.8.8 0 0 0-.166.52c0 .176.044.33.11.463a.7.7 0 0 0 .31.275c.253.1.66.166 1.29.177.33 0 .529.01.595.01.386.023.584.09.739.166.143.089.253.287.253.508 0 .22-.132.44-.341.573-.188.132-.497.188-.894.188-.65 0-1.014-.243-1.014-.695 0-.2.022-.243.066-.364h-1.301c-.055.11-.122.265-.122.573 0 .386.144.717.442 1.004.485.474 1.279.606 2.04.606.838 0 1.654-.198 2.128-.727.298-.331.43-.695.43-1.17 0-.507-.143-.893-.463-1.212-.375-.364-.805-.497-1.632-.508l-.761-.01c-.143 0-.232-.056-.232-.133 0-.154.199-.288.563-.464.11.01.143.01.21.01 1.146 0 1.984-.705 1.984-1.686 0-.375-.11-.662-.32-.927.177.022.232.033.364.033.375 0 .673-.12.982-.419M5.384 7.085c-1.764.43-2.966 1.279-2.966 2.25 0 .606.463 1.157 1.224 1.587a2.15 2.15 0 0 1-.353-1.157c.01-1.004.794-1.941 2.095-2.68M24 10.889c0-.64-.397-1.224-1.059-1.709.055.2.1.397.1.596 0 1.82-2.548 3.385-6.165 4.036.408.044.827.066 1.268.066 3.23-.01 5.856-1.345 5.856-2.989m-2.084-.992c0-.673-.574-1.29-1.555-1.798.23.276.353.574.353.883 0 1.62-3.44 2.933-7.698 2.933-4.246 0-7.698-1.312-7.698-2.933q0-.314.165-.596c-.683.452-1.07.97-1.07 1.522 0 1.753 3.916 3.176 8.747 3.176s8.756-1.445 8.756-3.187M18.1 9.81c-1.786 1.147-7.279 1.588-9.639.11-1.853-1.158-1.213-3-6.518-7.036-.694-.53.133-1.092.651-.728s.044.453 1.092 1.5c2.117 2.118 2.095.21 2.426.938.706 1.51 2.25 3.032 2.25 3.032 1.555 1.015 2.79 1.235 5.084-.32 1.456-.981.86 1.566 4.423-.275 1.3-.673 1.246-.22 2.569-2.063.55-.76 1.6.585.408.772-.474.078-1.28.596-1.621 1.412-.496 1.224-.287 2.128-1.125 2.658M8.196 6.7c-.44-.199-.904-.95-1.08-1.246.496-.486.297-1.29.01-1.732-.275-.44-.617-.32-.98-.727-.376-.41.142-1.467.617-.651 1.775 3.055 2.944 1.786 4.39 1.599 1.39-.177 2.624.584 3-1.566.065-.353.407-.43.44.143.033.585.254 1.996 1.015 2.173.76.187 1.378-.177 1.555-.375.176-.2.275-.177.353.33.077.497.275 1.192 1.345.42 2.195-1.566 1.566-2.173 2.426-2.58.485-.232 1.257.518.144 1.08-1.588.805-1.754 1.797-2.757 2.426-1.688 1.059-1.17.044-3.882-.342-1.048-.143-1.38 1.015-2.195.684-1.864-.772-3.177-.618-4.4.364zm5.879-5.657c.066.463.143.452.309.485.165.044.375-.22.375-.463.01-.254-.11-.408-.353-.397-.254.01-.342.132-.331.375m8.16.827c.2.187.728.066.85-.078.32-.352.33-.562.165-.805-.165-.231-.507-.198-.85.056-.341.253-.275.727-.164.827zm-.143 2.338c-.165.22-.176.386-.055.507.132.132.397.242.585.1.187-.155.187-.376.033-.563-.166-.2-.386-.2-.563-.044M5.352 1.45c.253.077.374.32.584.044.11-.133.12-.32-.023-.52-.088-.12-.507-.21-.683-.032-.177.177-.01.464.121.508zM.178 1.295c.463.287.76.717 1.114.33.121-.131.264-.363.01-.826C1.117.457.511.325.301.457c-.22.12-.485.618-.121.838zM4.447 3.49c.143.154.397.143.551.055.144-.088.121-.32-.022-.518-.088-.122-.353-.188-.53 0-.176.187-.098.352 0 .463z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jfrogpipelines.svg���������������������������0000664�0000000�0000000�00000002551�14753064456�0026646�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.844 0 .021 1.2C7.226 1.636 4.1 4.387 3.231 8.176c-1.041 4.517 1.518 9.036 5.783 10.55.042.015.639.18.96.272v.01l.203.047c1.848.43 1.777.347 2.132-1.27.304-.117.568-.095.882-.15a7 7 0 0 0 .764-.178c1.081 1.476.687 1.635 2.696.378 2.453-1.534 1.331-1.205.86-2.593l.98-1.336c1.309.313 1.657.537 1.974-.889.608-2.742.89-2.653-1.054-3.083-.109-.31-.233-1.25-.31-1.635.378-.337 1.272-.589 1.197-1.271-.013-.115-1.523-2.754-1.91-2.887-.538-.188-1.091.449-1.523.6-.244-.206-1.176-.798-1.305-1.058.15-.645.544-1.42-.34-1.735-.685-.25-1.501-.443-2.477-.577l.003.004.527.497-.82.904c.67.045 1.185.165 1.848.356-.404 1.974-.029 1.192 1.322 2.258.252.198.85.794 1.098.854.456.108.894-.363 1.219-.532l.71 1.185c-1.368.866-1.019.648-.663 2.224.371 1.645-.506 1.713 1.457 2.198l-.332 1.35c-1.964-.425-1.197-.007-2.256 1.328-.933 1.172-1.275 1.008-.355 2.333l-1.16.68c-.782-1.409-.777-.959-2.22-.652-1.626.335-1.732-.44-2.194 1.458l-.285-.07-1.137-.344C5.879 16.168 3.7 12.38 4.573 8.588a7.52 7.52 0 0 1 5.955-5.702q.184-.032.366-.057l.021 1.176 1.92-2.118zm1.385 6.854a3.6 3.6 0 0 0-1.142.168c-4.232 1.296-2.575 7.69 1.83 6.567 4.049-1.031 2.777-6.665-.688-6.735m-.108 1.389c2.233.046 2.91 3.542.239 4.095-1.201.248-2.176-.667-2.352-1.657-.228-1.284.665-2.222 1.647-2.4q.243-.044.466-.038M1.534 22.392V24h20.932v-1.608z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jhipster.svg���������������������������������0000664�0000000�0000000�00000000500�14753064456�0025446�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.709 7.171c-2.455-.029-6.332 1.749-8.684 2.962-3.434-1.75-10.178-4.729-10.942-1.54-1.03 4.297-2.187 7.563.985 8.167 2.207.42 7.122-2.43 9.912-4.205 2.78 1.771 7.746 4.66 9.96 4.231 3.168-.616 2-3.896.961-8.208-.24-1-1.067-1.394-2.192-1.407"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jinja.svg������������������������������������0000664�0000000�0000000�00000005126�14753064456�0024722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.718.668-.08.04s-4.563 2.174-8.244 2.651c-1.854.24-4.554.481-6.964.62a66 66 0 0 1-3.254.117c-.917.005-1.63-.032-1.95-.11a20 20 0 0 1-2.4-.732l-.252-.1.346 1.172-.92.81.248.436.44.033 1.052.131.162.514.635.057.318 1.078.092.006s1.338.115 1.762.115c.365 0 .93-.04 1.072-.05l.024.396.287.054v.315l-.8.71.157.028c-.14.01-.227.018-.5.03-.43.017-.934.02-1.203-.018-.586-.086-.71-.086-.71-.086H2.98l-.122.13-.046.446h.152l.055 1.111 2.933-.113-.205 3.682-.02.347-2.242-.127-.02-.761h.538l.057-.42.464-.106.223-.312-2.111-.51-1.705.506.465.388h.166l.025.334.494.028v.763l-.611.157.19.404.105.068v.825h.343v3.296l-.566.086.098 1.247.334.056-.055 2.342 1.803.033-.32-2.303 1.982-.048-.14 1.087-.25 1.032 2.609.033.027-2.28 1.322-.12-.072 1.294-.063.99h1.633l-.053-2.3.176.027.067-1.392h-.243l-.058-.34-.131-1.29.049-1.364h.295v-1.182l-.364.027.04-.806.43-.043.023-.352.172-.025.51-.389-1.827-.375-1.71.379.286.469.239-.02.054-.004.034.442.41-.02.004.674-1.526-.035.053-.877.059-.926v-1.213l.048-1.152 3.485-.178 4.155-.24.033.674-.152 1.949-.063 1.693-1.32-.023-.006-1.018.574-.021.028-.373.27-.041-.012-.057.152-.01.29-.388-2.01-.471-1.986.426.258.45.14-.01v.089h.246v.402l.524.008-.006.856h-.527l-.014.505.187.022-.021.978.393.02-.044 3.615-.523.108.016.423h.176v.985h.289l-.07 1.205-.112 1.314 2.17.057-.07-1.172-.138-.848-.022-.593 1.325-.024-.04 1.002-.009 1.33 1.033.082 1.252-.05.533-.157-.25-.76-.053-1-.08-.583 1.233-.045-.057.742-.006 1.515.738.069.631-.016.416-.13-.187-1.424-.049-.862.25-.027.006-.895.08-.017-.027-.43h-.303l-.049-.527-.023-2.692.222-.006v-.902l.096.014v-.461l-.334-.027.006-.836.57-.051-.033-.362.26-.021-.024-.117.58-.29-2.056-.413-1.88.38.231.432.223-.02.014.077h.203l.011.426.547-.006.035.773-1.67-.012-.212-1.457-.178-.826-.145-1.469.075-.746 3.847-.293.012-1.316.201-.05-.023-.38-.239-.138h-.037l-.357.05-.793.116a62 62 0 0 1-1.625.216l-.19.02-.015-.178-.785-.41.006-.275.271-.008.02-.672c.09-.006.352-.024.771-.062.484-.045 1.04-.105 1.361-.18.597-.14 1.452-.28 1.452-.28l.076-.013.408-1.108.805-.234.066-.184 1.78-.492.306-.252-.717-1.564.047-.236.344-.18.297-.906-.252-.223zM14.825 6.73l-.01.526.407.017-.016.32-.789.518-.086.258-1.86.09.01-.184.112-.18.01-.154.001-.228.067-.156.031-.16v-.092l.08-.323zm-5.18.461-.043.264.199.234-.014.387.176.27-.047.328.025.035-1.847.074.02-.152-.653-.354-.022-.345.29-.014.029-.598zm4.014 8.5 1.258.082-.05 1.938.183 1.54-1.34-.046zm-10.225.084 2.16.112L5.4 17.17v1.219l.137.523-2.09.098zm15.376.01v3.256l-1.29.094-.052-1.723-.158-1.592zm-11.494.076 1.538.006.017 2.996-1.43.026-.076-.928-.006-1.047z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jio.svg��������������������������������������0000664�0000000�0000000�00000001554�14753064456�0024411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 1 1 0 12 12 12 0 0 1 12 0m5.587 14.559c-.883 0-1.49-.648-1.49-1.574 0-.912.62-1.56 1.49-1.56s1.491.648 1.491 1.573c0 .897-.634 1.56-1.49 1.56zm.03-5.152c-2.265 0-3.772 1.437-3.772 3.576 0 2.195 1.451 3.604 3.729 3.604 2.264 0 3.755-1.409 3.755-3.59 0-2.153-1.475-3.59-3.713-3.59zM11.78 6.272c-.856 0-1.395.483-1.395 1.243 0 .774.552 1.257 1.435 1.257.857 0 1.395-.483 1.395-1.257s-.552-1.243-1.435-1.243m.152 3.204h-.277c-.675 0-1.187.317-1.187 1.285v4.42c0 .98.496 1.284 1.216 1.284h.275c.677 0 1.16-.33 1.16-1.285v-4.419c0-.995-.47-1.285-1.187-1.285M8.316 7.392h-.4c-.76 0-1.174.43-1.174 1.285v4.13c0 1.063-.36 1.436-1.2 1.436-.662 0-1.201-.29-1.63-.816C3.87 13.373 3 13.786 3 14.81c0 1.104 1.035 1.781 2.955 1.781 2.334 0 3.563-1.173 3.563-3.742V8.675c0-.856-.413-1.283-1.202-1.283"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jira.svg�������������������������������������0000664�0000000�0000000�00000000652�14753064456�0024553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.571 11.513H0a5.22 5.22 0 0 0 5.232 5.215h2.13v2.057A5.215 5.215 0 0 0 12.575 24V12.518a1.005 1.005 0 0 0-1.005-1.005zm5.723-5.756H5.736a5.215 5.215 0 0 0 5.215 5.214h2.129v2.058a5.22 5.22 0 0 0 5.215 5.214V6.758a1 1 0 0 0-1.001-1.001M23.013 0H11.455a5.215 5.215 0 0 0 5.215 5.215h2.129v2.057A5.215 5.215 0 0 0 24 12.483V1.005A1 1 0 0 0 23.013 0"/></svg>��������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jirasoftware.svg�����������������������������0000664�0000000�0000000�00000000561�14753064456�0026325�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.004 0c-2.35 2.395-2.365 6.185.133 8.585l3.412 3.413-3.197 3.198a6.5 6.5 0 0 1 1.412 7.04l9.566-9.566a.95.95 0 0 0 0-1.344zm-1.748 1.74L.67 11.327a.95.95 0 0 0 0 1.344C4.45 16.44 8.22 20.244 12 24c2.295-2.298 2.395-6.096-.08-8.533l-3.47-3.469 3.2-3.2c-1.918-1.955-2.363-4.725-1.394-7.057z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jitpack.svg����������������������������������0000664�0000000�0000000�00000002545�14753064456�0025256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.191 0c-2.03.393-3.466 1.199-4.325 2.318l2.883 1.664a2.8 2.8 0 0 1 1.882-.194c.181-1.091.048-2.358-.44-3.788m-4.94 3.06L5.83 10.715l4.734 2.736 1.113-1.925c-.505-.498-.716-1.256-.742-2.045-.032-.966.202-2.039.638-3.01.324-.72.759-1.387 1.308-1.892L10.252 3.06zm10.498.15c-1.494.289-2.665.803-3.522 1.499a2.82 2.82 0 0 1 .777 1.731l2.874 1.658c.543-1.305.533-2.948-.129-4.888m-18.361.409L.459 6.961l5.186 2.173L8.737 3.78zm12.539 1.016c-.332.005-.64.115-.943.297-.608.364-1.163 1.085-1.543 1.929s-.584 1.805-.558 2.588c.026.782.271 1.325.652 1.546h.001c.382.219.974.16 1.664-.208.69-.369 1.421-1.026 1.962-1.776.541-.751.887-1.594.899-2.303s-.238-1.283-1.042-1.747c-.402-.233-.759-.331-1.091-.326zm2.991 2.853c-.163.728-.524 1.438-.985 2.079-.623.863-1.433 1.602-2.285 2.057-.699.373-1.464.57-2.15.378l-1.111 1.923 4.735 2.734 4.419-7.656zm2.756 3.185-3.09 5.356 4.476 3.406 1.929-3.343zm-14.066 1.59c-1.143.5-2.02 1.177-2.634 2l4.449 2.57c.408-.945.561-2.039.432-3.272zm-3.055 2.855-3.542 6.13v1.899l4.365-7.554zm8.613.354c-1.143.501-2.02 1.177-2.634 2.001l4.449 2.569c.409-.945.562-2.04.432-3.273zm-6.869.653L.722 24h1.099l4.301-7.398-.825-.476zm1.751 1.011L3.094 24H4.19l3.68-6.389zm2.077 1.2L5.911 24h1.093l2.944-5.189zm1.751 1.012L8.28 24h1.086l2.333-4.179zm1.751 1.01L10.647 24h1.084l1.72-3.167z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jitsi.svg������������������������������������0000664�0000000�0000000�00000010417�14753064456�0024750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.671 8.622a2.3 2.3 0 0 0-.895-.998c-.464-.294-1.044-.356-1.448-.356q-.204 0-.408.02h-.01a3 3 0 0 1 .034-.185c.02-.103.043-.22.056-.341.054-.521-.132-1.222-.473-1.785-.054-.09-.052-.12-.052-.12a.4.4 0 0 1 .06-.07l.03-.033c.807-.864 1.051-1.814.724-2.829C16.67 0 16.504 0 16.382 0a.2.2 0 0 0-.144.063.22.22 0 0 0-.048.177c.063.638-.081 1.552-.177 1.9-.118.438-.528 1.09-1.824 1.711a3 3 0 0 1-.279.103c-.423.141-1.13.378-1.522.918-.296.347-.368.695-.496 1.322-.114.558-.206 1.237-.026 2.048l.052.207.028.112.015-.003-.016.004c.012.048.004.06-.013.072a1.3 1.3 0 0 1-.192.059c-.192.03-.384.065-.567.1-.584.1-2.348.405-3.161 1.699-.502.798-.573 1.84-.212 3.1.374 1.249 1.116 2.106 1.624 2.281l.008.003q.054.025.105.042a2 2 0 0 1-.007.126l-.01.069c-.056.407-.248.845-.444.857-.103-.02-.512-.252-.801-.442l-.264-.174c-.808-.535-1.254-.829-1.934-.905l-.07-.004c-.72 0-2.016 1.213-2.044 3.63-.014 1.21.113 2.316.378 3.288.189.697.39 1.094.45 1.2l.232.437.107-.48c.562-2.544 1.255-3.157 2.408-3.89.845.792 1.956 1.21 3.22 1.21 1.066 0 2.18-.31 3.139-.873.941-.552 1.668-1.296 2.112-2.156.074.048.163.11.222.152.211.148.256.179.331.179h.007c.082-.003.861-.264 1.658-1.238.463-.566.846-1.266 1.135-2.082.36-1.008.576-2.198.65-3.537.082-1.124-.032-2.02-.339-2.66zm-2.987-6.47c.067.27.076.55.026.824a2.7 2.7 0 0 1-.685 1.442 8.2 8.2 0 0 0 .66-2.267m-.557 3.301q.177.268.265.576a1.47 1.47 0 0 1-.033.811q-.208.493-.55.494h-.03a.6.6 0 0 1-.226-.083c-.292-.171-.45-.624-.336-.956l.014-.03c.018-.049.072-.14.22-.283a8 8 0 0 1 .675-.528zm-3.38-.09.004-.005v-.005c.062-.154.491-.402.776-.567l.107-.062a4 4 0 0 1 .384-.177c.47-.2 1.2-.51 1.802-1.09-.175.613-.595 1.644-1.286 2.269-.154.138-.464.261-.824.403-.387.153-.853.336-1.304.613.035-.353.144-.97.34-1.379zm-.3 1.996c.233-.192.658-.452 2.051-.912l.032.154.028.141c.091.45.192.956 1.13 1.237-.088.192-.267.517-.33.578l-.02.018-.015.024c-.182.293-1.168.931-1.61.931a.3.3 0 0 1-.056-.004c-.266-.051-.877-.594-1.056-.994-.347-.787-.276-1.07-.156-1.171zm-3.471 7.221c-.511-.76-.898-2.087-.645-3.155v-.005c.123-.58.528-.922.696-1.042l.024-.018c.249-.217.757-.446 1.433-.646.096-.025.15-.036.151-.036.125-.026.26-.057.393-.088a7 7 0 0 1 .758-.148 2 2 0 0 0 .19-.03 1.5 1.5 0 0 1 .252-.033.32.32 0 0 1 .192.05c.25.298.864.886 1.266.92h.025c.458-.024 1.176-.471 2.134-1.329.163-.144.314-.27.462-.38l.018-.013a3.5 3.5 0 0 1 .856-.478c-.1.328-.18.89.144 1.68.168.409.492 1.33.76 2.233.462 1.554.398 1.828.388 1.853a.5.5 0 0 1-.062.15.4.4 0 0 1-.103-.036c-.233-.108-.494-.3-.799-.526-.566-.415-1.27-.931-2.301-1.334a6.2 6.2 0 0 0-2.236-.445 4.7 4.7 0 0 0-.897.085c-1.623.32-2.479 1.036-2.938 1.42l-.003.004a.19.19 0 0 0-.06.209.185.185 0 0 0 .177.121 1 1 0 0 0 .218-.05 9 9 0 0 1 1.488-.31q.27-.032.543-.033c.786 0 1.51.24 2.274.76.175.147.282.244.347.307l-.066.018-.464.13c-1.15.326-2.886.817-3.709.817a1.4 1.4 0 0 1-.188-.011c-.213-.032-.474-.254-.715-.61zm-3.39 5.83a4.1 4.1 0 0 0-.7 1.415c-.155-.741-.337-1.96-.234-2.908.215-1.965 1.189-2.623 1.333-2.657h.01c.008 0 .017 0 .036.02.078.085.246.441.124 1.916q-.044.457.218.765c.117.135.265.24.432.305a5 5 0 0 0-1.22 1.144zm1.655-1.929a.4.4 0 0 1-.16.037.13.13 0 0 1-.106-.04c-.032-.033-.102-.144-.08-.473.016-.161.039-.323.06-.48a7 7 0 0 0 .084-.893c.568.372 1.197.765 1.604.947-.266.235-.82.66-1.402.903zm7.404-.053a5.35 5.35 0 0 1-3.47 1.632 6 6 0 0 1-.463.017c-1.736 0-2.618-.736-3.024-1.147 1.962-.846 2.36-2.056 2.534-2.585a2 2 0 0 1 .048-.134c.075-.037.313-.144 1.047-.419.576-.207 1.267-.44 1.876-.645.507-.171.946-.32 1.185-.407l.02-.006a1 1 0 0 1 .096-.023l.013.017c.223.29.592.468.595.47.277.124.573.199.875.221-.007 1.049-.486 2.137-1.33 3.009zm1.522-3.59c-.727 0-.981-.234-1.22-.517-1.179-1.406-2.482-1.637-2.989-1.67a7 7 0 0 0-.473-.016q-.191 0-.374.01a5.7 5.7 0 0 1 1.824-.303c1.3 0 2.553.461 3.72 1.37.477.37.827.632 1.13.843a28 28 0 0 1-.598.168l-.095.026a6 6 0 0 1-.924.088zm.452 2.658c-.076-.067-.192-.174-.311-.283a4.7 4.7 0 0 0 .247-.864c.057-.312.092-.72.109-.937a9 9 0 0 0 1.022-.217q.607-.173.94-.399c-.695 1.735-1.7 2.496-2.007 2.699zm2.404-3.966c-.104-.855-.45-1.912-.585-2.323q-.021-.07-.035-.108c-.01-.033-.04-.12-.105-.297-.167-.465-.514-1.432-.576-1.718-.089-.42.112-.999.24-1.05a.4.4 0 0 1 .124-.022c.236 0 .528.223.758.583.28.432.445 1.005.467 1.608.048 1.316-.074 2.415-.288 3.327"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/johndeere.svg��������������������������������0000664�0000000�0000000�00000004544�14753064456�0025575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.999 1.16c-3.458.001-6.983.746-10.296 2.348A22 22 0 0 0 0 12.007c0 2.806.526 5.657 1.696 8.484A23.6 23.6 0 0 0 12 22.839c3.464 0 6.977-.738 10.303-2.348a22.04 22.04 0 0 0-.006-16.983A23.6 23.6 0 0 0 12 1.161zm0 .917c3.418 0 6.696.757 9.572 2.105a21 21 0 0 1 1.503 7.825c0 2.75-.528 5.386-1.496 7.81-2.878 1.35-6.158 2.107-9.58 2.107-3.42 0-6.7-.757-9.577-2.108a21 21 0 0 1-1.497-7.81c0-2.757.53-5.394 1.502-7.824C5.305 2.834 8.581 2.077 12 2.077zm-.001.687c-3.128 0-6.24.668-9.022 1.924-.9 2.34-1.359 4.8-1.359 7.319 0 2.513.458 4.968 1.354 7.306 2.783 1.258 5.897 1.923 9.027 1.923s6.245-.665 9.028-1.923l.004-.003a10.6 10.6 0 0 0-1.427-1.807c-.01-.005-.169-.055-.169-.055-1.725-.53-2.855-.928-3.355-1.187-.687-.357-1.41-1.224-1.49-1.322a10.6 10.6 0 0 0-2.114.03l-.408.053c-.78.1-1.584.208-2.373.081-.525-.086-1.035-.254-1.575-.43-.832-.272-1.685-.552-2.66-.55h-.038l.017.034c.221.43 1.096 1.737 2.19 2.096.242.058.417.122.493.182l.534 1.086c-.682-.31-2.79-1.381-4.49-3.45v-.003c0-.028-.044-.43-.053-.518 1.013-.378 3.293-.597 3.55-.622l.018-.002.008-.02c.137-1.2.42-2.16.953-3.21a.2.2 0 0 0 .024-.087.1.1 0 0 0-.013-.052c-.03-.056-.102-.067-.106-.067l-1.551-.271-.168-.513a28 28 0 0 1 3.287-.977c.133-.213.17-.328.17-.467 0-.118-.057-.22-.17-.297-.56-.379-2.322-.15-4.105.533-.004-.007-.003-.009-.009-.016.37-.277 1.032-.688 1.523-.916l.019-.011-.006-.019c-.133-.45-1.004-.796-1.102-.83l.006-.038c.885-.06 1.472.354 1.652.65l.009.013.017-.005c.114-.037.513-.164.946-.215l.026-.001-.007-.027C8.94 5.325 8.217 4.82 7.97 4.666c.007-.012.01-.017.017-.025.854.066 1.643.802 1.821 1.424l.005.017.018.001c.23.008.507.034.694.065l.019.004.007-.017a1.3 1.3 0 0 0 .103-.517c0-.56-.316-1.16-.705-1.54.007-.01.01-.02.02-.03 1.123.426 1.409 1.235 1.409 1.988 0 .528-.14 1.03-.23 1.35l-.038.133 1.765-.214c-.168.213-.53.592-1.255.992 0-.004-.746-.095-.746-.095l-.02-.003-.006.02c-.05.153-.487 1.533-.489 2.547q.001.565.317.869c.374.36.993.38 1.426.363 1.84-.067 3.276.046 4.273.34l.06.017.008-.014c.062-.095.11-.272.11-.506 0-.445-.177-1.107-.776-1.856.007-.005.007-.01.015-.015.099.055 1.714.972 1.93 2.356-.039.014-.775.315-.775.315l.024.024c.682.714.918 1.577 1.107 2.268.15.548.33.897.567 1.103.276.237 1.32.736 1.634.883.26.37.71 1.064 1.034 1.602a20.3 20.3 0 0 0 1.067-6.508c0-2.52-.46-4.98-1.358-7.32a22.1 22.1 0 0 0-9.024-1.923"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/joomla.svg�����������������������������������0000664�0000000�0000000�00000002251�14753064456�0025104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.719 14.759 14.22 17.26l-2.37 2.37-.462.466a5.33 5.33 0 0 1-5.047 1.397 3.21 3.21 0 1 1-3.872-3.844 5.32 5.32 0 0 1 1.396-5.08l.179-.18 2.37 2.37-.184.181a1.974 1.974 0 0 0 0 2.789c.771.78 2.022.78 2.787 0l.465-.465 2.367-2.371 2.502-2.506zm.924 6.652a5.32 5.32 0 0 1-5.328-1.318l-.18-.185 2.365-2.369.18.184a1.974 1.974 0 0 0 2.787 0 1.965 1.965 0 0 0-.004-2.781l-.466-.465-2.365-2.37-2.502-2.503 2.37-2.369 2.499 2.505 2.367 2.37.464.464a5.28 5.28 0 0 1 1.411 5.021A3.215 3.215 0 0 1 24 20.775a3.204 3.204 0 0 1-3.209 3.21 3.19 3.19 0 0 1-3.135-2.565zM6.975 9.461l2.508-2.505 2.37-2.369.462-.461A5.3 5.3 0 0 1 17.58 2.79 3.215 3.215 0 0 1 20.759.015a3.211 3.211 0 0 1 .421 6.395 5.31 5.31 0 0 1-1.35 5.234l-.182.184-2.369-2.369.184-.184a1.967 1.967 0 1 0-2.781-2.78l-.462.461-2.37 2.369-2.505 2.502zm-2.653 2.647-.461-.462a5.31 5.31 0 0 1-1.332-5.288A3.22 3.22 0 0 1 .03 3.224C.03 1.454 1.47.015 3.24.015a3.215 3.215 0 0 1 3.17 2.691 5.32 5.32 0 0 1 4.979 1.415l.184.185-2.37 2.37-.183-.181a1.977 1.977 0 0 0-2.785 0 1.977 1.977 0 0 0-.005 2.79l.465.466 2.37 2.369 2.505 2.505-2.367 2.37-2.51-2.505-2.371-2.37z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/joplin.svg�����������������������������������0000664�0000000�0000000�00000001631�14753064456�0025117�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.969 0h-8.904a.15.15 0 0 0-.152.152v2.827c0 .095.077.172.172.172h1.221c.493 0 .894.38.937.863v13.378h-.001l-.017.363-.05.282q-.015.067-.033.132a2.1 2.1 0 0 1-.384.708l-.021.021q-.08.095-.172.18-.095.085-.2.16c-.498.353-1.169.508-1.918.436-.955-.089-1.903-.523-2.669-1.22-.765-.696-1.242-1.558-1.34-2.427-.089-.778.144-1.462.655-1.927l.004-.003q.03-.026.062-.05c.366-.307.842-.493 1.387-.544l.017-.002.298-.014.35.017.024.003c.499.05.993.199 1.462.425q.015 0 .036.011c.143.079.17-.005.174-.061V9.626a.26.26 0 0 0-.203-.256c-2.527-.556-5.005.022-6.754 1.615-1.528 1.389-2.267 3.395-2.027 5.502.213 1.876 1.176 3.679 2.712 5.076 1.497 1.362 3.402 2.213 5.368 2.399q.408.038.809.038c1.877 0 3.619-.644 4.905-1.814a6.32 6.32 0 0 0 2.055-4.288l.01-10.866h.001V4.077a.946.946 0 0 1 .945-.926h1.221a.17.17 0 0 0 .172-.172V.152A.15.15 0 0 0 20.969 0"/></svg>�������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jordan.svg�����������������������������������0000664�0000000�0000000�00000004755�14753064456�0025113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.55 2.194v-.075q0-.525.338-.938.337-.412.862-.412c.525 0 .663.112.938.337s.425.525.45.9q.037.563-.338.938c-.375.375-.55.375-.9.375l-.225.075.075.112-.075.413-.15 1.2q.075.075.075.15l-.15.75q-.075.15-.15.225l-.075.3a23 23 0 0 1-.45 1.575v.15q-.075.375-.112.6t-.263.75q-.15.3 0 .975l.075.075q0 .225.188.525c.188.3.187.375.187.525q.075 1.5-.225 2.55l.15.45q.9.45.525.975l.375.15q.9.45 1.275.787.375.338.75.713.3.075.45.225l.225.075q1.575 1.05 3.15 2.55l.3.225v.075l-.075.15.225.15h.075q.225.15.3.15h.075q.075 0 .15-.075l.15-.075q.15-.15.3-.225h.3q.075 0 0 .075l-.3.15-.375.45h.525l.525.075q.225-.075.375-.15l.375-.225q.225-.075.45.15h.075q.075.075-.075.225l-.9.825q-.375.3-.675.375l-.975.675q-.075.075-.15 0l-.225-.3-.15-.3-.188-.263-.225-.3-.187-.225-.15-.187-.3-.225q-.15 0-.3-.075l-.975-.75q-.225 0-.525-.225-1.125-.975-1.5-1.2l-.45-.3-.9-.15q-.45-.075-1.2-.45l-.6-.3q-.6-.3-.825-.3l-.3-.15q-.3-.075-.45-.15l-.15-.15q-.15 0-.3.075l-1.5.75-1.875.825q-.75.6-1.425.975l-.825.375-1.275.9q-.15.15-.3 0l-.15.15q-.225.075-.3.075l-.3.15v.15H3.2l-.15.225q-.15.3-.3.337t-.187.113a.4.4 0 0 1-.075.112l-.15.15-.225.15-.338-.037-.45.075-.3.075q-.375.075-.6-.113-.225-.187-.375-.562-.15-.225.15-.375l.075-.075q.075-.075.225-.075h.45l.6-.225.3-.075q0-.15.075-.225t.225-.075v-.075a.7.7 0 0 1-.075-.3q-.076-.15-.037-.225.037-.075.075-.075h.037l.075.225q.075.375.225.225l.075-.15q.075-.15.225-.15l.15.15.15-.15-.075-.075q0-.075.075-.075l.3-.3q.375-.45.9-.825 1.05-.825 2.25-1.275.375-.375.825-.375.3-.525.9-1.125.525-.375.75-.525.15-.3.375-.3h.075l.15-.15q.15-.075.225-.15v-.375q0-.375.075-.6t.375-.225l.3-.3q-.15-.3-.15-.675h-.075q-.15-.225-.15-.45-.225-.375-.3-.6H9.65q-.075.225-.375.3l-.075.15q-.3.525-.525.787-.225.263-.825.638-.375.375-.525.825-.075.225 0 .45l-.075.15h.075q0 .15.075.15h.075q.15.075.15.187c0 .112-.075.1-.225.075a.6.6 0 0 1-.337-.15q-.113-.112-.188-.112l-.225.225q-.15.225-.3.187-.15-.037-.075-.112l.075-.075q.075-.15 0-.15l-.6.15q-.075.075-.187 0c-.112-.075-.063-.1.037-.15l.375-.15q0-.075-.075-.075-.3.15-.6.075l-.375-.075-.075-.075q0-.075.075-.075.3.075.75-.075l.525-.225.6-.675.075-.15q.3-.6.638-1.088a3.7 3.7 0 0 1 .712-.787l.075-.3q.15-.3.3-.525t.375-.6l.225-.3q.3-.45.675-.45l.225-.225q.075-.075.075-.225l.15-.15-.075-.075q-.45-.375-.45-.675-.075-.525.338-.9c.413-.375.55-.363.825-.338q.412.038.637.263l.15.15q.075 0 .075.075l.3.15v.225q.15.15.15.225.15-.225.45-.525l.375-1.2q0-.3.15-.6l.15-.225v-.15l.225-.9h.15l.225-.9a.93.93 0 0 0 0-.525l-.3-.75z"/></svg>�������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jouav.svg������������������������������������0000664�0000000�0000000�00000002030�14753064456�0024742�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4.822 13.107.112-.07A1.36 1.36 0 0 1 4.453 12a1.37 1.37 0 0 1 1.374-1.365c.41 0 .776.18 1.03.462l.016-.027c.115-.203.226-.402.31-.6.038-.078.066-.157.097-.233a2.3 2.3 0 0 0-1.452-.517A2.287 2.287 0 0 0 3.533 12c0 .562.205 1.076.544 1.473a3 3 0 0 0 .14-.058c.2-.085.4-.194.605-.308m2.702-2.642a5 5 0 0 1-.312.787 7 7 0 0 1-.118.216 1.4 1.4 0 0 1 .108.532 1.37 1.37 0 0 1-1.88 1.269 6 6 0 0 1-.316.175 5 5 0 0 1-.673.272l-.012.004a2.3 2.3 0 0 0 1.506.56A2.287 2.287 0 0 0 8.122 12a2.26 2.26 0 0 0-.598-1.535m-6.202-.673H2.72v2.754q0 .887-.437 1.31-.438.42-1.36.42A3.7 3.7 0 0 1 0 14.16v-.96a1.4 1.4 0 0 0 .446.076q.474 0 .674-.23.202-.231.202-.795zm7.555 0h1.4v2.55q-.001.56.199.811.2.25.638.25.45 0 .68-.27.229-.266.228-.791v-2.55h1.332v2.55q0 .969-.56 1.45-.559.484-1.68.484-1.11 0-1.673-.486-.564-.487-.563-1.448zm6.914 0h1.687l1.985 4.383h-1.495l-.372-.928h-2.02l-.39.928h-1.385zm.815.978-.68 1.644h1.337zm2.174-.978h1.462l1.17 3.41 1.156-3.41H24l-1.778 4.383h-1.754z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jovian.svg�����������������������������������0000664�0000000�0000000�00000000526�14753064456�0025114�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.25 1.65C20.25.74 19.51 0 18.6 0H5.4c-.91 0-1.65.74-1.65 1.65v20.7c0 .91.74 1.65 1.65 1.65h13.2c.91 0 1.65-.74 1.65-1.65zm-5.275 4.341a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3m.04 9.018a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3m-6.015 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jpeg.svg�������������������������������������0000664�0000000�0000000�00000002035�14753064456�0024550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.559 20.407c-.63 0-1.08-.026-1.08-.026V17.22h1.073c1.19 0 1.95.33 1.95 1.426 0 .93-.329 1.76-1.943 1.76m.028-3.965H6.61V24h.87v-2.797h1.275c1.783 0 2.634-1.096 2.634-2.483 0-1.413-.871-2.279-2.8-2.279m4.781 4.13h3.063v-.812H13.37v-2.55h3.548v-.768H12.5v7.42h4.566v-.768H13.37zm8.115-.633v.753h1.289v1.866c-.395.587-1.452.587-1.452.587-.805 0-1.454-.277-1.927-.838-.47-.558-.707-1.158-.707-2.06 0-.947.235-1.675.711-2.257.482-.583 1.15-.905 1.982-.905.427 0 .884.131 1.33.405l.538-.602q-.723-.594-1.84-.593c-1.11 0-2.005.361-2.656 1.08-.657.715-.99 1.668-.99 2.832s.305 2.043.9 2.745c.591.692 1.42 1.047 2.44 1.047.46 0 .932-.043 1.423-.197.378-.12.508-.216 1.075-.216v-3.647zM3.856 16.441h-.584v.768h.584v3.571c0 1.101.033 1.746-.345 2.124a1.27 1.27 0 0 1-.865.367c-1.362 0-1.412-1.091-1.412-1.091H.4c.08 1.942 2.362 1.813 2.362 1.813.607-.033 1.087-.233 1.462-.609.495-.499.507-1.422.507-2.192v-4.75zM17.352 0H3.063v14.282h8.266V8.271h6.023zm.686 9.067h5.213v5.216h-5.213z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jquery.svg�����������������������������������0000664�0000000�0000000�00000005343�14753064456�0025147�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.525 5.87c-2.126 3.054-1.862 7.026-.237 10.269q.057.117.118.229.035.076.077.15.021.042.047.082.04.078.081.152l.157.266c.03.049.057.097.09.146.056.094.12.187.178.281q.037.06.079.117a6 6 0 0 0 .31.445q.115.16.24.315.042.057.086.115l.22.269c.028.03.055.067.084.099q.148.176.306.35l.005.006a3 3 0 0 0 .425.44q.119.125.245.245l.101.097q.165.158.34.309.002 0 .005.003l.057.05q.153.135.31.26l.125.105q.13.1.26.2l.137.105c.093.07.192.139.287.207q.052.038.106.073l.03.023.28.185.12.08q.221.14.44.272.063.031.123.068.164.095.329.183.09.05.184.094.113.062.234.125a.3.3 0 0 1 .056.023q.049.023.096.047.18.09.375.175.037.014.076.034.215.094.438.182c.034.01.07.027.105.04q.204.078.411.152l.05.018q.23.078.46.15.054.016.111.033c.16.048.314.105.474.137 10.273 1.872 13.258-6.177 13.258-6.177-2.508 3.266-6.958 4.127-11.174 3.169-.156-.036-.312-.086-.47-.132a14 14 0 0 1-.567-.182l-.062-.024q-.202-.07-.4-.148a2 2 0 0 0-.11-.04q-.22-.09-.433-.184c-.031-.01-.057-.024-.088-.036l-.362-.17a2 2 0 0 1-.106-.052c-.094-.044-.188-.095-.28-.143a4 4 0 0 1-.187-.096c-.114-.06-.227-.125-.34-.187q-.052-.035-.112-.066a16 16 0 0 1-.439-.27 2 2 0 0 1-.118-.078 6 6 0 0 1-.312-.207q-.05-.035-.103-.073a10 10 0 0 1-.295-.212q-.064-.05-.132-.1c-.088-.07-.177-.135-.265-.208l-.118-.095a11 11 0 0 1-.335-.28.3.3 0 0 0-.037-.031l-.347-.316-.1-.094q-.123-.125-.25-.246l-.098-.1a9 9 0 0 1-.309-.323l-.015-.016q-.159-.174-.313-.355-.04-.046-.08-.097l-.227-.277a21 21 0 0 1-.34-.449C2.152 11.79 1.306 7.384 3.177 3.771m4.943-.473c-1.54 2.211-1.454 5.169-.254 7.508a9 9 0 0 0 .678 1.133c.23.33.484.721.793.988q.162.181.344.36l.09.09q.172.164.35.325l.016.013a10 10 0 0 0 .414.342c.034.023.063.05.096.073q.21.161.428.316l.015.009q.093.066.198.13c.028.018.06.042.09.06q.158.1.318.197.025.011.048.023c.09.055.188.108.282.157.033.02.065.035.1.054q.1.05.197.102l.032.014q.204.1.408.19.05.02.092.039.167.072.336.137c.05.017.097.037.144.052.102.038.21.073.31.108l.14.045c.147.045.295.104.449.13C22.164 17.206 24 11.098 24 11.098c-1.653 2.38-4.852 3.513-8.261 2.628a8 8 0 0 1-.449-.13c-.048-.014-.09-.029-.136-.043-.104-.036-.211-.07-.312-.109l-.144-.054c-.113-.045-.227-.087-.336-.135-.034-.015-.065-.025-.091-.04q-.211-.093-.418-.192l-.206-.107-.119-.06a6 6 0 0 1-.265-.15 1 1 0 0 1-.062-.035c-.106-.066-.217-.13-.318-.198q-.05-.03-.097-.062l-.208-.136c-.144-.1-.285-.208-.428-.313q-.048-.042-.094-.079c-1.499-1.178-2.681-2.79-3.242-4.613-.59-1.897-.46-4.023.56-5.75m4.292-.147c-.909 1.334-.996 2.99-.37 4.46.665 1.563 2.024 2.79 3.608 3.37q.096.036.196.07l.088.027c.092.03.185.063.28.084 4.381.845 5.567-2.25 5.886-2.704-1.043 1.498-2.792 1.857-4.938 1.335a5 5 0 0 1-.516-.16 6 6 0 0 1-.618-.254 6.5 6.5 0 0 1-1.082-.66c-1.922-1.457-3.113-4.236-1.859-6.5"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jrgroup.svg����������������������������������0000664�0000000�0000000�00000000563�14753064456�0025317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.955 13.653h1.089c2.684 0 2.684-4.123 2.684-4.123s0-4.162-2.684-4.162H9.18v8.869c0 1.556-3.112 1.478-3.112 1.478s-3.073.116-3.073-1.478v-3.423H0v4.395c0 3.19 5.68 3.384 6.107 3.423.428 0 6.107-.194 6.107-3.423V8.363h7.896c.661 0 .661 1.167.661 1.167s0 1.167-.66 1.167h-6.069l5.952 7.702H24Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jsdelivr.svg���������������������������������0000664�0000000�0000000�00000004050�14753064456�0025444�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.851 0 .811 4.02l1.56 14.7L11.85 24l9.6-5.28 1.74-14.76zm.062 4.622a6.668 6.75 0 0 1 2.666.572 12.5 12.5 0 0 0-2.59 1.95c-.045-.02-.092-.031-.138-.045a1.2 1.2 0 0 0-.346-.056c-.071 0-.141.01-.21.021a9 9 0 0 1-.615-2.318 6.668 6.75 0 0 1 1.171-.122 6.668 6.75 0 0 1 .062-.002m-1.99.312a9.8 9.8 0 0 0 .69 2.504 1.2 1.2 0 0 0-.328.825 1.2 1.2 0 0 0 .18.63c-.937 1.294-1.656 2.803-1.905 4.31-.01.056-.013.11-.02.166-.282.09-.515.284-.656.54-.987-.333-1.885-.968-2.615-2.022a6.668 6.75 0 0 1-.026-.515 6.668 6.75 0 0 1 4.68-6.438m5.507.709a6.668 6.75 0 0 1 2.53 2.9c-.377.953-1.049 1.892-1.893 2.727a1.24 1.24 0 0 0-.644-.184 1.24 1.24 0 0 0-.768.27 11 11 0 0 1-1.318-1.168c-.333-.35-.637-.73-.921-1.123.19-.215.31-.494.31-.802a1.2 1.2 0 0 0-.159-.586c1.058-1.008 2.112-1.67 2.863-2.034m-3.925 1.982a.62.62 0 0 1 .346.114.62.62 0 0 1 .292.524.62.62 0 0 1-.292.524.63.63 0 0 1-.346.113.634.634 0 0 1-.638-.637c0-.355.283-.638.638-.638m-.441 1.771a1.2 1.2 0 0 0 .675.062q.055.073.112.148a11 11 0 0 0 .921 1.119 12 12 0 0 0 1.446 1.277c-.032.11-.054.224-.054.342a1.2 1.2 0 0 0 .066.38 10 10 0 0 1-2.118 1.042c-.087.029-.173.052-.261.078a7.7 7.7 0 0 1-1.87.332 1.15 1.15 0 0 0-.66-.773q.004-.036.01-.073c.219-1.333.873-2.73 1.733-3.934m7.272.19a6.668 6.75 0 0 1 .245 1.786 6.668 6.75 0 0 1-.259 1.856 10 10 0 0 1-1.666-.63 1.24 1.24 0 0 0-.065-.713 9.4 9.4 0 0 0 1.745-2.3zm-2.913 2.101c.367 0 .657.291.657.658s-.291.657-.657.657-.658-.29-.658-.657.29-.658.658-.658m.837 1.59a11 11 0 0 0 1.802.688 6.668 6.75 0 0 1-6.149 4.157 6.668 6.75 0 0 1-.062-.004 6.668 6.75 0 0 1-.042 0c-.087-.042-.168-.08-.266-.129-.312-.154-.667-.352-.846-.5a3.8 3.8 0 0 1-1.294-2.03c.21-.111.38-.284.487-.495a8.4 8.4 0 0 0 1.96-.306 9 9 0 0 0 .513-.154 11 11 0 0 0 2.341-1.13c.205.143.452.23.719.23a1.25 1.25 0 0 0 .837-.328zm-10.707.116a5.8 5.8 0 0 0 2.212 1.298 1.15 1.15 0 0 0 .857.87 4.6 4.6 0 0 0 1.24 2.222 6.668 6.75 0 0 1-4.31-4.39zm3.327.464c.331 0 .595.263.595.596s-.264.595-.595.595a.59.59 0 0 1-.596-.595.59.59 0 0 1 .596-.596"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jsfiddle.svg���������������������������������0000664�0000000�0000000�00000002640�14753064456�0025411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.9 3.602c-2.749 0-5.103 1.544-6.35 3.779-.536-.317-1.139-.54-1.806-.54-1.981 0-3.6 1.606-3.6 3.579 0 .263.063.513.118.762C.912 12.09 0 13.602 0 15.344c0 2.763 2.241 5.012 5.008 5.054h14.008c2.746.017 4.984-2.206 4.984-4.937 0-1.946-1.153-3.602-2.799-4.41.003-.062.01-.115.01-.184 0-4.008-3.28-7.265-7.31-7.265zm0 .843c3.58 0 6.47 2.872 6.47 6.422 0 .115-.012.242-.02.387a.42.42 0 0 0 .26.414 4.1 4.1 0 0 1 2.546 3.793 4.094 4.094 0 0 1-4.135 4.096H5.02C2.702 19.52.844 17.653.844 15.344c0-1.545.834-2.883 2.08-3.62a.42.42 0 0 0 .187-.49 2.7 2.7 0 0 1-.125-.814 2.74 2.74 0 0 1 2.758-2.736 2.75 2.75 0 0 1 1.686.576.42.42 0 0 0 .636-.15A6.46 6.46 0 0 1 13.9 4.444zm-5.33 6.877c-1.586 0-2.91 1.213-2.91 2.737 0 1.523 1.324 2.736 2.91 2.736 1.411 0 2.182-.931 2.496-1.266a.421.421 0 1 0-.613-.578c-.378.402-.819 1.002-1.883 1.002-1.162 0-2.068-.86-2.068-1.894 0-1.035.906-1.895 2.068-1.895.533 0 1.105.297 1.686.77.372.303.737.668 1.098 1.043a.4.4 0 0 0 .085.123c.533.552 1.122 1.205 1.774 1.736s1.386.959 2.217.959c1.586 0 2.91-1.213 2.91-2.736s-1.324-2.737-2.91-2.737c-1.411 0-2.182.931-2.496 1.266a.421.421 0 1 0 .613.578c.378-.402.819-1.002 1.883-1.002 1.162 0 2.068.86 2.068 1.895 0 1.034-.906 1.894-2.068 1.894-.533 0-1.105-.297-1.686-.77-.372-.303-.737-.67-1.098-1.044a.4.4 0 0 0-.085-.121c-.533-.552-1.122-1.208-1.774-1.739-.652-.53-1.386-.957-2.217-.957"/></svg>������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/json.svg�������������������������������������0000664�0000000�0000000�00000004254�14753064456�0024601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.043 23.968c.479-.004.953-.029 1.426-.094a11.8 11.8 0 0 0 3.146-.863 12.4 12.4 0 0 0 3.793-2.542 12 12 0 0 0 2.44-3.427 11.8 11.8 0 0 0 1.02-3.476c.149-1.16.135-2.346-.045-3.499a12 12 0 0 0-.793-2.788 11 11 0 0 0-.854-1.617c-1.168-1.837-2.861-3.314-4.81-4.3a13 13 0 0 0-2.172-.87h-.005c.119.063.24.132.345.201.12.074.239.146.351.225a9 9 0 0 1 1.559 1.33c1.063 1.145 1.797 2.548 2.218 4.041.284.982.434 1.998.495 3.017.044.743.044 1.491-.047 2.229-.149 1.27-.554 2.51-1.228 3.596a7.5 7.5 0 0 1-1.903 2.084c-1.244.928-2.877 1.482-4.436 1.114a4 4 0 0 1-.748-.258 4.7 4.7 0 0 1-.779-.45 6 6 0 0 1-1.244-1.105 6.5 6.5 0 0 1-1.049-1.747 7.4 7.4 0 0 1-.494-2.54c-.03-1.273.225-2.553.854-3.67a6.4 6.4 0 0 1 1.663-1.918c.225-.178.464-.333.704-.479l.016-.007a5.1 5.1 0 0 0-1.441-.12 5 5 0 0 0-1.228.24c-.359.12-.704.27-1.019.45a6 6 0 0 0-.733.494c-.211.18-.42.36-.615.555-1.123 1.153-1.768 2.682-2.022 4.256-.15.973-.15 1.96-.091 2.95.105 1.395.391 2.787.945 4.062a8.5 8.5 0 0 0 1.348 2.173 8.14 8.14 0 0 0 3.132 2.23 8 8 0 0 0 2.113.54c.074.015.149.015.209.015zm-2.934-.398a4 4 0 0 1-.45-.228 8.5 8.5 0 0 1-2.038-1.534c-1.094-1.137-1.827-2.566-2.247-4.08a15.2 15.2 0 0 1-.495-3.172 12 12 0 0 1 .046-2.082c.135-1.257.495-2.501 1.124-3.58a6.9 6.9 0 0 1 1.783-2.053 6.2 6.2 0 0 1 1.633-.9 5.36 5.36 0 0 1 3.522-.045c.029 0 .029 0 .045.03.015.015.045.015.06.03.045.016.104.045.165.074.239.12.479.271.704.42a6.3 6.3 0 0 1 2.097 2.502c.42.914.615 1.934.631 2.938.014 1.079-.18 2.157-.645 3.146a6.4 6.4 0 0 1-2.638 2.832c.09.03.18.045.271.075.225.044.449.074.688.074 1.468.045 2.892-.66 3.94-1.647q.293-.27.54-.585c.225-.27.435-.54.614-.823.239-.375.435-.75.614-1.154a8 8 0 0 0 .509-1.664c.196-1.004.211-2.022.149-3.026-.135-2.022-.673-4.045-1.842-5.724a9 9 0 0 0-.555-.719 10 10 0 0 0-1.063-1.034 8.5 8.5 0 0 0-1.363-.915 10 10 0 0 0-1.692-.598l-.3-.06c-.209-.03-.42-.044-.634-.06a9 9 0 0 0-1.015.016c-.704.045-1.412.16-2.112.337C5.799 1.227 2.863 3.566 1.3 6.67A11.8 11.8 0 0 0 .238 9.801a11.8 11.8 0 0 0-.104 3.775c.12 1.02.374 2.023.778 2.977.227.57.511 1.124.825 1.648 1.094 1.783 2.683 3.236 4.51 4.24.688.39 1.408.69 2.157.944.226.074.45.15.689.21z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jsonwebtokens.svg����������������������������0000664�0000000�0000000�00000001106�14753064456�0026514�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.2 0v6.456L12 8.928l1.8-2.472V0zm3.6 6.456v3.072l2.904-.96L20.52 3.36l-2.928-2.136zm2.904 2.112-1.8 2.496 2.928.936 6.144-1.992-1.128-3.432zM17.832 12l-2.928.936 1.8 2.496 6.144 1.992 1.128-3.432zm-1.128 3.432-2.904-.96v3.072l3.792 5.232 2.928-2.136zM13.8 17.544 12 15.072l-1.8 2.472V24h3.6zm-3.6 0v-3.072l-2.904.96L3.48 20.64l2.928 2.136zm-2.904-2.112 1.8-2.496L6.168 12 .024 13.992l1.128 3.432zM6.168 12l2.928-.936-1.8-2.496-6.144-1.992-1.128 3.432zm1.128-3.432 2.904.96V6.456L6.408 1.224 3.48 3.36Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jsr.svg��������������������������������������0000664�0000000�0000000�00000000530�14753064456�0024417�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.692 5.538v3.693H0v7.384h7.385v1.847h12.923v-3.693H24V7.385h-7.385V5.538Zm1.846 1.847h1.847v7.384H1.846v-3.692h1.846v1.846h1.846zm3.693 0h5.538V9.23h-3.692v1.846h3.692v5.538H9.231V14.77h3.692v-1.846H9.231Zm7.384 1.846h5.539v3.692h-1.846v-1.846h-1.846v5.538h-1.847z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jss.svg��������������������������������������0000664�0000000�0000000�00000002236�14753064456�0024425�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 2.5v19h19.2v-1.95c.506.263 1.124.42 1.857.42 1.687 0 2.943-.877 2.943-2.475 0-1.483-.852-2.143-2.36-2.79l-.444-.19c-.762-.33-1.092-.546-1.092-1.078 0-.431.33-.761.85-.761.51 0 .838.215 1.142.76l1.383-.887c-.585-1.029-1.396-1.422-2.525-1.422-.715 0-1.312.207-1.754.555V2.5zm.36.359h18.48v9.182a2.27 2.27 0 0 0-.487 1.432c0 .654.176 1.152.486 1.552v2.537l-1.018.592c.232.456.57.864 1.018 1.177v1.81H.361zm14.188 8.268c-1.586 0-2.6 1.014-2.6 2.346 0 1.445.85 2.13 2.132 2.675l.443.19c.81.355 1.293.57 1.293 1.18 0 .508-.47.875-1.205.875-.876 0-1.371-.457-1.752-1.078l-1.443.839c.521 1.03 1.587 1.816 3.236 1.816 1.687 0 2.943-.876 2.943-2.475 0-1.483-.852-2.143-2.361-2.79l-.444-.19c-.762-.33-1.092-.546-1.092-1.078 0-.431.33-.761.85-.761.51 0 .838.215 1.143.76l1.382-.887c-.584-1.029-1.396-1.422-2.525-1.422m-5.868.101v6.038c0 .888-.368 1.116-.951 1.116-.61 0-.864-.418-1.143-.913l-1.446.875c.419.886 1.242 1.622 2.664 1.622 1.574 0 2.652-.837 2.652-2.676v-6.062zm10.52 4.173c.345.295.781.532 1.286.747l.443.19c.81.355 1.293.57 1.293 1.18 0 .508-.47.875-1.206.875-.876 0-1.37-.457-1.752-1.078l-.064.037z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/juce.svg�������������������������������������0000664�0000000�0000000�00000003366�14753064456�0024561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.383 0 0 5.383 0 12s5.383 12 12 12 12-5.383 12-12S18.617 0 12 0m0 22.402c-5.744 0-10.417-4.667-10.417-10.404S6.256 1.595 12 1.595s10.417 4.666 10.417 10.403S17.744 22.402 12 22.402m8.097-5.04a9.8 9.8 0 0 1-2.5 2.572 1.23 1.23 0 0 1-1.787-.42c-.97-1.794-1.75-3.59-2.468-5.391a.504.504 0 0 1 .669-.648c1.729.749 3.503 1.46 5.414 2.04a1.227 1.227 0 0 1 .672 1.847m1.615-5.36q0 .895-.156 1.746a1.235 1.235 0 0 1-1.559.97c-2.01-.583-3.87-1.324-5.687-2.111l.002.001a.503.503 0 0 1 .013-.93c1.802-.713 3.606-1.48 5.416-2.437.727-.385 1.62.04 1.782.846.124.619.19 1.26.19 1.915zm-6.847 7.713c.383.726-.04 1.61-.842 1.78a9.7 9.7 0 0 1-2.021.212 9.7 9.7 0 0 1-1.607-.132 1.233 1.233 0 0 1-.98-1.56c.583-2.003 1.322-3.854 2.107-5.666a.503.503 0 0 1 .93.014h.002c.704 1.78 1.468 3.565 2.411 5.352M9.181 4.276a1.232 1.232 0 0 1 .844-1.782 9.7 9.7 0 0 1 3.692-.05c.722.129 1.176.852.973 1.557-.585 2.028-1.33 3.9-2.125 5.73a.503.503 0 0 1-.93-.013h-.001c-.715-1.81-1.49-3.623-2.453-5.442m-5.374 2.51a9.8 9.8 0 0 1 2.635-2.747 1.233 1.233 0 0 1 1.787.42c1.021 1.88 1.83 3.763 2.578 5.65a.504.504 0 0 1-.668.648c-1.802-.783-3.644-1.53-5.64-2.13a1.234 1.234 0 0 1-.692-1.842zm6.864 7.223c-.763 1.753-1.486 3.55-2.072 5.488a1.23 1.23 0 0 1-1.838.679 9.8 9.8 0 0 1-2.662-2.53 1.23 1.23 0 0 1 .414-1.794c1.834-.99 3.67-1.783 5.51-2.513a.504.504 0 0 1 .648.668zm2.72-3.872c.775-1.777 1.51-3.6 2.103-5.57a1.23 1.23 0 0 1 1.85-.672A9.8 9.8 0 0 1 20 6.497a1.23 1.23 0 0 1-.425 1.779c-1.842.998-3.688 1.796-5.538 2.53a.504.504 0 0 1-.648-.67zm-9.098 4.78a1.23 1.23 0 0 1-1.773-.81 9.7 9.7 0 0 1-.103-3.683 1.234 1.234 0 0 1 1.56-.981c2.02.584 3.888 1.328 5.713 2.119a.503.503 0 0 1-.014.93c-1.79.71-3.585 1.474-5.383 2.425"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/juejin.svg�����������������������������������0000664�0000000�0000000�00000000502�14753064456�0025104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 14.316 7.454-5.88-2.022-1.625L12 11.1l-.004.003-5.432-4.288-2.02 1.624 7.452 5.88Zm0-7.247 2.89-2.298L12 2.453l-.004-.005-2.884 2.318 2.884 2.3Zm0 11.266-.005.002-9.975-7.87L0 12.088l.194.156 11.803 9.308 7.463-5.885L24 12.085l-2.023-1.624Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/juke.svg�������������������������������������0000664�0000000�0000000�00000002361�14753064456�0024563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.965 15.778c-1.947 0-2.751-.929-2.751-2.58V8.409c0-.102.084-.184.188-.184h1.499c.104 0 .188.082.188.184v4.82a.87.87 0 0 0 .876.816c.466 0 .85-.358.876-.816v-4.82a.19.19 0 0 1 .188-.185h1.498c.104 0 .188.083.188.185v4.789c0 1.652-.805 2.58-2.751 2.58zm-4.495-2.66c0 1.652-.726 2.583-2.667 2.583H.188A.186.186 0 0 1 0 15.516v-1.367c0-.102.084-.185.188-.185h.677c.636 0 .73-.336.73-.735V9.582a.4.4 0 0 0-.157-.314L.259 8.456a.13.13 0 0 1-.042-.145.13.13 0 0 1 .125-.087h2.939c.104 0 .188.083.188.185zm10.927.106v2.195a.187.187 0 0 1-.188.185h-1.5a.187.187 0 0 1-.183-.18V8.409c0-.1.081-.182.183-.185h1.5c.104 0 .188.083.188.185v2.2c0 .108.045.122.101.028l1.323-2.251c.08-.136.159-.161.336-.161h1.772c.103 0 .137.084.075.185l-2.063 3.387a.25.25 0 0 0 0 .239l2.063 3.387c.057.101.028.185-.075.185h-1.772c-.179 0-.257-.03-.337-.161l-1.323-2.25c-.056-.094-.101-.082-.101.026zm9.602-1.308a.16.16 0 0 1-.093.13l-2.406 1.45a.1.1 0 0 0-.058.091c0 .039.023.074.057.091l2.446 1.694a.13.13 0 0 1 .042.145.13.13 0 0 1-.126.087h-4.299a.187.187 0 0 1-.188-.18V8.407c0-.102.084-.185.188-.185h4.305c.056 0 .107.035.125.087a.13.13 0 0 1-.042.145l-2.445 1.693a.1.1 0 0 0 0 .182l2.395 1.456q.098.055.098.13z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/julia.svg������������������������������������0000664�0000000�0000000�00000000425�14753064456�0024730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.138 17.569a5.569 5.569 0 1 1-11.138 0 5.569 5.569 0 1 1 11.138 0m6.431-11.138a5.569 5.569 0 1 1-11.138 0 5.569 5.569 0 1 1 11.138 0M24 17.569a5.569 5.569 0 1 1-11.138 0 5.569 5.569 0 1 1 11.138 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/junipernetworks.svg��������������������������0000664�0000000�0000000�00000005010�14753064456�0027070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.086 13.164c.046 0 .072-.013.072-.062 0-.048-.025-.059-.073-.059h-.102v.121zm-.103.042v.129h-.045V13h.149c.085 0 .117.034.117.1 0 .054-.023.091-.08.102l.075.132h-.048l-.075-.129zm.074-.292a.254.254 0 0 0-.253.253c0 .14.114.254.253.254a.254.254 0 0 0 .253-.254.253.253 0 0 0-.253-.253m-.29.253a.29.29 0 0 1 .29-.29.29.29 0 0 1 .29.29.29.29 0 0 1-.29.291.29.29 0 0 1-.29-.29m-20.745-.66V8.83H1.6v3.677c0 .85.033 1.533-1.44 1.533L0 14.037v.397l.16.002c1.786 0 1.862-.8 1.862-1.929m15.54-1.697h3.134c-.042-.918-.101-1.701-1.44-1.701-1.29 0-1.643.699-1.694 1.7m1.702-2.089c1.794 0 1.853 1.205 1.845 2.476h-3.555c.008 1.12.286 1.955 1.743 1.955.775 0 1.13-.21 1.508-.489l.236.312c-.421.312-.918.556-1.744.556-1.82 0-2.156-1.053-2.156-2.41 0-1.355.388-2.4 2.123-2.4m-4.149 2.706q1.115.002 1.114-1.095c0-.733-.399-1.08-1.132-1.08h-1.729v2.175zm-.006-2.588c1.068 0 1.552.53 1.552 1.474 0 .95-.478 1.527-1.558 1.527h-1.735v1.598h-.412V8.84zm-2.925 0v4.6h-.412v-4.6zm-1.194 4.6h-.43v-2.814c0-.809.009-1.491-1.474-1.491-1.474 0-1.44.682-1.44 1.533v2.771h-.422v-2.771c0-1.129.076-1.93 1.862-1.93 1.794 0 1.904.801 1.904 1.896zM2.747 8.83h.43v2.814c0 .809-.01 1.49 1.473 1.49 1.474 0 1.44-.681 1.44-1.532V8.83h.422v2.772c0 1.128-.076 1.929-1.862 1.929-1.794 0-1.903-.8-1.903-1.896zm18.967 1.837v2.771h.421v-2.771c0-.85-.034-1.533 1.44-1.533q.237 0 .425.023v-.401a5 5 0 0 0-.424-.018c-1.786 0-1.862.8-1.862 1.929zm-.431 4.36a.8.8 0 0 0 .454.129c.262 0 .379-.074.379-.249 0-.18-.151-.206-.38-.247-.273-.048-.459-.094-.459-.351 0-.246.158-.342.46-.342.199 0 .341.045.442.114l-.072.11a.7.7 0 0 0-.37-.1c-.228 0-.326.063-.326.214 0 .161.132.192.358.233.278.05.479.091.479.364 0 .252-.161.373-.508.373a.9.9 0 0 1-.526-.145zm-.789-.442-.254.277v.396h-.132v-1.27h.132v.701l.643-.7h.156l-.456.498.518.771h-.153zm-1.1.032c.18 0 .29-.055.29-.255 0-.197-.107-.249-.296-.249h-.413v.504zm-.038.124h-.38v.517h-.133v-1.27h.549c.295 0 .428.118.428.37 0 .22-.104.348-.326.377l.307.523h-.144zm-.924-.117c0-.343-.16-.528-.506-.528-.345 0-.502.185-.502.528 0 .345.157.53.502.53.346 0 .506-.185.506-.53m-.506-.657c.408 0 .641.203.641.655 0 .455-.233.657-.641.657-.406 0-.638-.202-.638-.657 0-.452.232-.655.638-.655m-2.357.021.334 1.05.341-1.05h.117l.34 1.05.335-1.05h.13l-.408 1.279h-.116l-.343-1.058-.341 1.058h-.118l-.41-1.279zm-1.392.129v-.129h1.088v.129h-.476v1.141h-.136v-1.141zm-.204-.129v.129h-.705v.42h.688v.127h-.688v.47h.712v.124h-.847v-1.27zm-2.054 0 .76 1.048v-1.048h.13v1.27h-.124l-.783-1.078v1.078h-.13v-1.27Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/junit5.svg�����������������������������������0000664�0000000�0000000�00000001612�14753064456�0025041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.886 9.769q2.47 0 3.912 1.307 1.442 1.308 1.442 3.566 0 2.616-1.643 4.09-1.632 1.465-4.65 1.465-2.739 0-4.303-.883v-2.38a7.9 7.9 0 0 0 2.079.793q1.173.28 2.18.28 1.776 0 2.704-.794t.928-2.325q0-2.928-3.733-2.929-.525 0-1.297.112-.771.1-1.352.235l-1.174-.693.626-7.98H16.1v2.335H9.919l-.37 4.046q.393-.066.95-.156.57-.09 1.387-.09zM12 0C5.373 0 0 5.373 0 12a12 12 0 0 0 6.65 10.738v-3.675h.138c.01.004 4.86 2.466 8.021 0 3.163-2.468 1.62-5.785 1.08-6.557-.54-.771-3.317-2.083-5.708-1.851-2.391.231-2.391.308-2.391.308l.617-7.096 7.687-.074V.744A12 12 0 0 0 11.999 0zm4.095.744v3.049l-7.688.074-.617 7.096s0-.077 2.391-.308c2.392-.232 5.169 1.08 5.708 1.851.54.772 2.083 4.089-1.08 6.557-3.16 2.467-8.013.004-8.02 0h-.14v3.675A12 12 0 0 0 12 24c6.628 0 12-5.373 12-12A12.01 12.01 0 0 0 16.35.83a9 9 0 0 0-.255-.086M6.299 22.556"/></svg>����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/jupyter.svg����������������������������������0000664�0000000�0000000�00000001516�14753064456�0025330�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.157 22.201A1.784 1.799 0 0 1 5.374 24a1.784 1.799 0 0 1-1.784-1.799 1.784 1.799 0 0 1 1.784-1.799 1.784 1.799 0 0 1 1.783 1.799M20.582 1.427a1.415 1.427 0 0 1-1.415 1.428 1.415 1.427 0 0 1-1.416-1.428A1.415 1.427 0 0 1 19.167 0a1.415 1.427 0 0 1 1.415 1.427M4.992 3.336A1.047 1.056 0 0 1 3.946 4.39a1.047 1.056 0 0 1-1.047-1.055A1.047 1.056 0 0 1 3.946 2.28a1.047 1.056 0 0 1 1.046 1.056m7.336 1.517c3.769 0 7.06 1.38 8.768 3.424a9.36 9.36 0 0 0-3.393-4.547 9.24 9.24 0 0 0-5.377-1.728A9.24 9.24 0 0 0 6.95 3.73a9.36 9.36 0 0 0-3.394 4.547c1.713-2.04 5.004-3.424 8.772-3.424m.001 13.295c-3.768 0-7.06-1.381-8.768-3.425a9.36 9.36 0 0 0 3.394 4.547A9.24 9.24 0 0 0 12.33 21a9.24 9.24 0 0 0 5.377-1.729 9.36 9.36 0 0 0 3.393-4.547c-1.712 2.044-5.003 3.425-8.772 3.425Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/justeat.svg����������������������������������0000664�0000000�0000000�00000002710�14753064456�0025302�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.196.232a1.38 1.38 0 0 1 1.528 0 33 33 0 0 1 3.384 2.438s.293.203.301-.14a5.4 5.4 0 0 1 .079-1.329.61.61 0 0 1 .562-.39s1.329.066 2.173.179c.377.05.671.352.711.73 0 0 .543 3.62.665 4.925 0 0 .105.664 1.067 1.79 0 0 1.953 2.735 2.18 3.259 0 0 .454.946-.523 1.074 0 0-1.783.18-1.955.22a.446.446 0 0 0-.39.484s-.094 6.296-.555 9.32c0 0-.121 1.2-.782 1.173 0 0-1.833-.059-2.259-.047 0 0-.183 0-.156-.246 0 0 .934-9.817.301-14.78 0 0-.028-.64-.516-.782 0 0-.445-.18-.871.391a15.57 15.57 0 0 0-2.9 8.86s-.05 1.563.188 1.953c0 0 .148.274.907.336l.96.13s.176 0 .16.233c0 0-.218 2.88-.28 3.393a1 1 0 0 1-.071.34s-.035.098-.336.086c0 0-4.236-.03-4.713 0 0 0-.2 0-.242-.105-.043-.106-.294-3.717-.286-4.229a.255.255 0 0 1 .149-.25 2.55 2.55 0 0 0 1.172-1.871q.078-.823.024-1.646s.156-5.522.195-6.41c0 0 .031-.3-.36-.355a.364.364 0 0 0-.437.27v.03c0 .032-.274 3.643-.223 5.081 0 0 .094.942-.558.961 0 0-.634.095-.665-.69 0 0 .047-3.542.203-5.292a.39.39 0 0 0-.348-.391.39.39 0 0 0-.437.316.1.1 0 0 0 0 .031s-.274 3.39-.223 5.179c0 0 .078.868-.614.836 0 0-.578.066-.61-.704 0 0 .157-4.85.2-5.224A.39.39 0 0 0 6.647 9h-.039a.39.39 0 0 0-.418.325v.035s-.258 5.8-.223 7.503c0 0-.023 1.751 1.27 2.462 0 0 .192.11.196.277 0 0 .145 3.076.277 4.069 0 0 .047.238-.164.238L4.291 24a.67.67 0 0 1-.665-.633 73 73 0 0 1-.601-9.829.5.5 0 0 0-.391-.535S.969 12.85.566 12.749a.692.692 0 0 1-.422-1.02A33.5 33.5 0 0 1 11.197.232Z"/></svg>��������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/justgiving.svg�������������������������������0000664�0000000�0000000�00000000553�14753064456�0026017�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.716 9.925H15.33l-4.898 4.919h6.727c-.885 1.975-2.865 3.061-5.16 3.061-3.104 0-5.639-2.67-5.639-5.771C6.36 9.02 8.896 6.42 12 6.42c1.134 0 2.189.295 3.061.871l4.542-4.561A11.92 11.92 0 0 0 12 0C5.37 0 0 5.367 0 12c0 6.623 5.37 12 12 12s12-5.115 12-11.738c0-.896-.103-1.35-.284-2.337"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/k3s.svg��������������������������������������0000664�0000000�0000000�00000001121�14753064456�0024316�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.46 2.172H2.54A2.55 2.55 0 0 0 0 4.712v14.575a2.55 2.55 0 0 0 2.54 2.54h18.92a2.55 2.55 0 0 0 2.54-2.54V4.713a2.55 2.55 0 0 0-2.54-2.54ZM10.14 16.465 5.524 19.15a1.235 1.235 0 1 1-1.242-2.137L8.9 14.33a1.235 1.235 0 1 1 1.241 2.136zm1.817-4.088h-.006a1.235 1.235 0 0 1-1.23-1.24l.023-5.32a1.236 1.236 0 0 1 1.236-1.23h.005a1.235 1.235 0 0 1 1.23 1.241l-.023 5.32a1.236 1.236 0 0 1-1.235 1.23zm8.17 6.32a1.235 1.235 0 0 1-1.688.453l-4.624-2.67a1.235 1.235 0 1 1 1.235-2.14l4.624 2.67a1.235 1.235 0 0 1 .452 1.688z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/k6.svg���������������������������������������0000664�0000000�0000000�00000001203�14753064456�0024137�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 23.646H0L7.99 6.603l4.813 3.538L19.08.354Zm-8.8-3.681h.052a2.3 2.3 0 0 0 1.593-.64 2.09 2.09 0 0 0 .685-1.576 1.91 1.91 0 0 0-.66-1.511 2 2 0 0 0-1.37-.59h-.04a.7.7 0 0 0-.199.027l1.267-1.883-1.01-.705-.477.705-1.22 1.864c-.21.31-.386.582-.495.77q-.169.301-.29.625a1.9 1.9 0 0 0-.138.719 2.09 2.09 0 0 0 .676 1.558c.422.411.989.641 1.578.64Zm-5.365-2.027 1.398 1.978h1.496l-1.645-2.295 1.46-2.029-.97-.671-.427.565-1.314 1.853v-3.725l-1.31-1.068v7.37h1.31v-1.98Zm5.367.792a.963.963 0 1 1 0-1.927h.009a.94.94 0 0 1 .679.29.9.9 0 0 1 .29.668.98.98 0 0 1-.977.967Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kaggle.svg�����������������������������������0000664�0000000�0000000�00000004162�14753064456�0025060�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.103 7.348Q0 7.348 0 7.45v6.752q0 .102.103.102h.704q.102 0 .103-.103v-1.48l.418-.4 1.502 1.91a.18.18 0 0 0 .143.072h.909q.072 0 .082-.04.02-.062-.02-.102l-1.982-2.462 1.9-1.839q.03-.03.01-.092-.02-.05-.082-.05h-.94q-.07 0-.143.07L.91 11.608V7.45q0-.102-.103-.102zm18.041 0q-.102 0-.102.102v6.752q0 .101.102.101h.705q.102 0 .102-.102V7.45q0-.102-.102-.102zM5.961 9.625q-.848 0-1.634.542-.082.081-.031.143l.368.52q.04.072.133.021.592-.409 1.164-.409.44.001.669.266a.84.84 0 0 1 .2.644q-.991.102-1.482.245-1.245.357-1.246 1.358 0 .634.46 1.042.47.399 1.113.398.705 0 1.154-.337v.143q0 .103.113.102h.704q.102 0 .102-.102v-2.829q0-.99-.674-1.44-.459-.307-1.113-.307m4.323 0q-1.012 0-1.563.787-.47.654-.47 1.594 0 .99.49 1.644.562.745 1.553.745.797 0 1.277-.398v.531q0 1.287-1.236 1.287-.541 0-1.114-.572a.1.1 0 0 0-.071-.03.1.1 0 0 0-.082.03l-.48.48q-.061.093.01.154.204.173.358.29.153.118.265.19.531.296 1.124.296 1.02 0 1.578-.577.557-.578.557-1.69V9.82q0-.102-.102-.102h-.705q-.103 0-.102.102v.204q-.522-.399-1.287-.399m4.802 0q-1.012 0-1.563.787-.47.654-.47 1.594 0 .99.49 1.644.562.745 1.553.745.797 0 1.277-.398v.531q0 1.287-1.236 1.287-.541 0-1.114-.572a.1.1 0 0 0-.071-.03.1.1 0 0 0-.082.03l-.48.48q-.06.093.01.154.204.173.358.29.152.118.266.19.53.296 1.123.296 1.022 0 1.578-.577.557-.578.557-1.69V9.82q0-.102-.102-.102h-.705q-.102 0-.102.102v.204q-.522-.399-1.287-.399zm6.745 0q-.98 0-1.593.634-.664.694-.664 1.695 0 1.063.674 1.747.695.694 1.737.694.97 0 1.705-.551.082-.061 0-.143l-.48-.49q-.06-.062-.153 0-.45.316-1.011.316-.634 0-1.052-.357a1.32 1.32 0 0 1-.43-.838h3.32q.102 0 .102-.102l.01-.224q.052-1.032-.602-1.717a2.08 2.08 0 0 0-1.563-.664m-.02.787a1.2 1.2 0 0 1 .837.317q.368.316.378.786h-2.461q.09-.49.439-.797.346-.306.807-.306m-11.425.102q.93 0 1.185.654v1.685q-.255.654-1.216.654-.47 0-.766-.296-.399-.378-.398-1.206 0-1.491 1.195-1.491m4.802 0q.93 0 1.185.654v1.685q-.256.654-1.216.654-.47 0-.766-.296-.398-.378-.398-1.206 0-1.491 1.195-1.491m-8.359 1.655v1.021q-.429.429-1.144.378a.9.9 0 0 1-.45-.158.52.52 0 0 1-.224-.363q-.051-.399.45-.613.367-.163 1.368-.265"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kagi.svg�������������������������������������0000664�0000000�0000000�00000001405�14753064456�0024536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.483 18.392h-5.11c-1.382 0-1.622-1.508-1.382-2.11.12-.302.421-.724.661-1.026a6.74 6.74 0 0 0 3.306.844c3.847 0 6.913-3.135 6.913-6.934 0-2.05-.902-3.86-2.284-5.186l.18-.181c.36-.362.902-.603 1.443-.543l.841.06V0H17.61c-1.683 0-3.066 1.025-3.667 2.472a6.8 6.8 0 0 0-1.923-.301c-3.847 0-6.913 3.136-6.913 6.935 0 1.507.481 2.954 1.322 4.1-.12.12-.3.241-.42.302l-.18.18c-1.383 1.327-2.044 3.015-1.684 4.945.18 1.025 1.082 2.11 1.984 2.714.601.422 1.382.603 2.164.603l5.77-.241c.661 0 1.263.301 1.623.904L16.407 24l3.546-1.206-.601-1.327c-.902-1.869-2.765-3.075-4.87-3.075M12.02 5.849c1.803 0 3.306 1.508 3.306 3.317s-1.503 3.316-3.306 3.316-3.306-1.507-3.306-3.316c0-1.87 1.442-3.317 3.306-3.317"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kahoot.svg�����������������������������������0000664�0000000�0000000�00000000443�14753064456�0025111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.557 18.87 2.747-17.513L16.174 0zM.696 2.348v19.078l4.035.14-.035-6.679 2.487-2.4 2.626 9.078h3.565L10.087 9.722l4.957-5.444-3.496-1.339L4.73 9.443V1.322zm18.295 17.86-.99 2.331L20.12 24l2.088-1.235-.887-2.556Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kaios.svg������������������������������������0000664�0000000�0000000�00000000620�14753064456�0024727�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.342 0a3.674 3.674 0 0 0-3.647 3.674 3.673 3.673 0 0 0 3.673 3.673A3.674 3.674 0 1 0 17.342 0M4.623.16a2.746 2.746 0 0 0-2.747 2.747v18.167a2.747 2.747 0 1 0 5.494 0V2.907A2.75 2.75 0 0 0 4.623.16m6.95 7.208a2.729 2.729 0 0 0-2.237 4.294l7.81 11.155a2.729 2.729 0 1 0 4.471-3.131L13.807 8.53a2.73 2.73 0 0 0-2.234-1.163"/></svg>����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kakao.svg������������������������������������0000664�0000000�0000000�00000002565�14753064456�0024721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3.074 10.44.655.473-1.61 2.02 1.865 2.237-.646.5-2.201-2.692zM.837 15.542H0v-7.03l.837-.182zM21.78 11.16q-.655 0-1.005.49-.35.492-.35 1.438 0 .937.35 1.414t1.005.478q.663 0 1.014-.478.35-.477.35-1.414 0-.946-.35-1.437-.351-.491-1.014-.491m0-.673q1.036 0 1.627.673.592.672.592 1.928 0 1.237-.587 1.9-.586.665-1.632.665-1.037 0-1.628-.664-.591-.665-.592-1.901 0-1.256.596-1.928.596-.673 1.624-.673m-5.534 4.465a1.5 1.5 0 0 0 .357-.045 3 3 0 0 0 .372-.118 2 2 0 0 0 .348-.178 2 2 0 0 0 .29-.223v-1.164h-.87q-.66 0-.964.228-.303.226-.303.718 0 .782.77.782m-1.57-.745q0-.756.504-1.15.505-.397 1.469-.397h.964v-.318q0-1.155-1.019-1.155-.327 0-.686.091t-.66.227l-.245-.59q.373-.21.805-.324.431-.113.84-.114 1.766 0 1.766 1.883v3.183h-.62l-.1-.545q-.372.3-.795.464-.423.163-.805.163-.665 0-1.041-.377-.378-.378-.378-1.041m-1.65-3.766.655.473-1.61 2.02 1.864 2.237-.645.5-2.201-2.692zm-2.237 5.102h-.837v-7.03l.837-.182zm-4.494-.59q.172 0 .358-.046a3 3 0 0 0 .37-.118 2 2 0 0 0 .35-.178 2 2 0 0 0 .29-.223v-1.164h-.87q-.66 0-.965.228-.303.226-.303.718 0 .783.77.782m-1.57-.745q0-.756.505-1.15.504-.397 1.468-.397h.965v-.318q0-1.155-1.02-1.155-.326 0-.686.091t-.66.227l-.245-.59q.373-.21.805-.324.432-.113.841-.113 1.765 0 1.765 1.882v3.183h-.618l-.1-.545q-.375.3-.796.464-.422.163-.806.163-.663 0-1.04-.377-.378-.378-.378-1.041"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kakaotalk.svg��������������������������������0000664�0000000�0000000�00000002457�14753064456�0025575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.125 0H1.875C.839 0 0 .84 0 1.875v20.25C0 23.161.84 24 1.875 24h20.25C23.161 24 24 23.16 24 22.125V1.875C24 .839 23.16 0 22.125 0M12 18.75q-.888 0-1.732-.12c-.562.396-3.813 2.679-4.12 2.722 0 0-.125.049-.232-.014s-.088-.229-.088-.229c.032-.22.843-3.018.992-3.533-2.745-1.36-4.57-3.769-4.57-6.513 0-4.246 4.365-7.688 9.75-7.688s9.75 3.442 9.75 7.688S17.385 18.75 12 18.75M8.05 9.867h-.878v3.342c0 .296-.252.537-.563.537s-.562-.24-.562-.537V9.867h-.878a.552.552 0 0 1 0-1.101h2.88a.552.552 0 0 1 0 1.101m10.987 2.957a.56.56 0 0 1 .109.417.56.56 0 0 1-.219.37.56.56 0 0 1-.338.114.56.56 0 0 1-.45-.224l-1.319-1.747-.195.195v1.227a.564.564 0 0 1-.562.563.563.563 0 0 1-.563-.563V9.328a.563.563 0 0 1 1.125 0v1.21l1.57-1.57a.44.44 0 0 1 .311-.126c.14 0 .282.061.388.167a.56.56 0 0 1 .165.356.44.44 0 0 1-.124.343l-1.282 1.281zm-8.35-3.502c-.095-.27-.383-.548-.75-.556-.366.008-.654.286-.749.555l-1.345 3.541c-.171.53-.022.728.133.8a.9.9 0 0 0 .357.077c.235 0 .414-.095.468-.248l.279-.73h1.715l.279.73c.054.153.233.248.468.248a.9.9 0 0 0 .357-.078c.155-.071.304-.268.133-.8zm-1.311 2.443.562-1.596.561 1.596zm5.905 1.383a.53.53 0 0 1-.539.516h-1.804a.53.53 0 0 1-.54-.516v-3.82c0-.31.258-.562.575-.562s.574.252.574.562v3.305h1.195c.297 0 .54.231.54.515"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kalilinux.svg��������������������������������0000664�0000000�0000000�00000002446�14753064456�0025631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.778 5.943s-1.97-.13-5.327.92c-3.42 1.07-5.36 2.587-5.36 2.587s5.098-2.847 10.852-3.008zm7.351 3.095.257-.017s-1.468-1.78-4.278-2.648c1.58.642 2.954 1.493 4.021 2.665m.42.74c.039-.068.166.217.263.337.004.024.01.039-.045.027-.005-.025-.013-.032-.013-.032s-.135-.08-.177-.137-.049-.157-.028-.195m3.448 8.479s.312-3.578-5.31-4.403a18 18 0 0 0-2.524-.187c-4.506.06-4.67-5.197-1.275-5.462 1.407-.116 3.087.643 4.73 1.408-.007.204.002.385.136.552s.648.35.813.445c.164.094.691.43 1.014.85.07-.131.654-.512.654-.512s-.14.003-.465-.119c-.326-.122-.713-.49-.722-.511s-.015-.055.06-.07c.059-.049-.072-.207-.13-.265s-.445-.716-.454-.73c-.009-.016-.012-.031-.04-.05-.085-.027-.46.04-.46.04s-.575-.283-.774-.893c.003.107-.099.224 0 .469-.3-.127-.558-.344-.762-.88-.12.305 0 .499 0 .499s-.707-.198-.82-.85c-.124.293 0 .469 0 .469s-1.153-.602-3.069-.61c-1.283-.118-1.55-2.374-1.43-2.754 0 0-1.85-.975-5.493-1.406-3.642-.43-6.628-.065-6.628-.065s6.45-.31 11.617 1.783c.176.785.704 2.094.989 2.723-.815.563-1.733 1.092-1.876 2.97s1.472 3.53 3.474 3.58c1.9.102 3.214.116 4.806.942 1.52.84 2.766 3.4 2.89 5.703.132-1.709-.509-5.383-3.5-6.498 4.181.732 4.549 3.832 4.549 3.832M12.68 5.663l-.15-.485s-2.484-.441-5.822-.204S0 6.38 0 6.38s6.896-1.735 12.68-.717"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kamailio.svg���������������������������������0000664�0000000�0000000�00000002762�14753064456�0025420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3.647 13.643 1.113-2.62m-3.277.747 1.366-1.413H2.14L.577 12.009v-1.652H0v3.286h.577v-.953l.512-.526 1.122 1.479h.7L1.482 11.77zm11.06-.746.567 1.314h-.793l-.217.511h1.221l.334.794h.61l-1.446-3.31h-.535l-1.446 3.31h.592c.373-.88.736-1.741 1.112-2.62zm-7.783 0 .568 1.314h-.794l-.217.511H5.54l.333.794h.61l-1.445-3.31H4.5l-1.445 3.31h.591M24 11.995a1.72 1.72 0 0 0-.479-1.197 1.7 1.7 0 0 0-.54-.364 1.8 1.8 0 0 0-.694-.133 1.72 1.72 0 0 0-1.24.505 1.7 1.7 0 0 0-.356.541 1.7 1.7 0 0 0-.127.658 1.72 1.72 0 0 0 .479 1.196q.225.23.54.364.314.135.694.134a1.72 1.72 0 0 0 1.24-.505 1.7 1.7 0 0 0 .356-.542q.127-.309.127-.657m-.606.01q0 .24-.082.453-.081.213-.227.37a1.06 1.06 0 0 1-.798.34 1.08 1.08 0 0 1-.805-.347 1.2 1.2 0 0 1-.23-.373 1.3 1.3 0 0 1-.082-.453q0-.24.082-.453.081-.213.227-.37a1.06 1.06 0 0 1 .798-.34 1.08 1.08 0 0 1 .805.346q.149.16.23.374.082.213.082.453m-4.14-1.648v3.286h.578v-3.286zm-2.938 3.286h2.305v-.526h-1.728v-2.76h-.577zm-1.455-3.286v3.286h.577v-3.286zm-5.163.93v2.356h.577v-3.286H9.66l-1 1.554-1-1.554h-.614v3.286h.568v-2.347l1.028 1.54h.018l1.038-1.55zm-.499-1.74q4.743-1.527 8.606-1.717c1.125-.056 2.34-.077 3.452.12.397.07.782.18 1.137.356q.425.21.671.51.333-1.155-.53-1.688c-.54-.334-1.272-.413-1.889-.464q-4.09-.336-11.447 2.882zm5.637 5.235q-4.788 1.377-8.656 1.447c-1.126.02-2.341.003-3.446-.228a4.2 4.2 0 0 1-1.125-.391 2 2 0 0 1-.655-.53q-.368 1.144.477 1.703c.53.35 1.26.452 1.874.522q4.078.464 11.53-2.523z"/></svg>��������������mkdocs-material-9.6.4/material/templates/.icons/simple/kaniko.svg�����������������������������������0000664�0000000�0000000�00000001036�14753064456�0025077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.783 0h18.434c1.352 0 2.478.963 2.73 2.24a17.1 17.1 0 0 1-3.2 4.42 16.9 16.9 0 0 1-8.399 4.605V3.304h-.696V11.4c-.976.169-1.965.253-2.956.252v.696q1.518.002 2.956.252v8.096h.696v-7.961a16.9 16.9 0 0 1 8.399 4.605 17.1 17.1 0 0 1 3.2 4.42 2.78 2.78 0 0 1-2.73 2.24H2.783A2.783 2.783 0 0 1 0 21.217V2.783A2.783 2.783 0 0 1 2.783 0m18.456 7.152A17.7 17.7 0 0 0 24 3.572v16.856a17.7 17.7 0 0 0-2.761-3.58 17.8 17.8 0 0 0-8.891-4.815v-.066a17.8 17.8 0 0 0 8.891-4.815"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/karlsruherverkehrsverbund.svg����������������0000664�0000000�0000000�00000001007�14753064456�0031143�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.91 6.089c-2.491 2.4-6.153 4.238-11.265 4.3l-.397 1.745h22.316L24 10.388H9.309c2.984-1.01 4.688-2.676 6.56-4.3zm10.45 6.721c-5.723.013-8.441 2.712-10.095 5.101h2.49c2.6-3.296 5.827-3.428 7.196-3.442zm-22.307.475L0 17.887h1.236l.488-2.173 1.097 2.173H4.27l-1.34-2.368 2.23-2.234H3.575l-1.723 1.869.436-1.87zm4.237 0 .509 4.602h1.517l2.63-4.602h-1.32l-1.852 3.463-.265-3.463zm4.89 0 .503 4.602h1.54l2.62-4.602h-1.32l-1.852 3.463-.268-3.463Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kasasmart.svg��������������������������������0000664�0000000�0000000�00000000557�14753064456�0025620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0q-.75 0-1.5.75L7.97 3.28l8.83 8.83q1.5 1.5 1.5 3V24h3.3q2.4 0 2.4-2.4v-8.85q0-1.5-1.5-3l-9-9Q12.75 0 12 0M6.9 4.34 2.89 8.37 9.6 15.1q1.5 1.5 1.5 3V24h5.7v-8.89c-.03-.83-.6-1.46-1.06-1.94L6.91 4.34zm-5.08 5.1-.32.31q-1.5 1.5-1.5 3v8.85Q0 24 2.4 24h7.2v-5.9c-.03-.8-.56-1.42-1.06-1.95Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kashflow.svg���������������������������������0000664�0000000�0000000�00000000656�14753064456�0025450�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.278 2.141-.83 2.702C8.007.174 2.958 4.724 2.958 4.724-1.638 8.564.49 14.678.495 14.678 1.252-.016 14.24 8.943 14.24 8.943c-.237 1.066-.996 2.63-.972 2.654l8.508-1.256zm7.228 7.181C22.747 24.016 9.76 15.057 9.76 15.057c.332-1.066 1.02-2.654 1.02-2.607l-8.51 1.21 5.451 8.2.83-2.702c7.441 4.669 12.49.119 12.49.119 4.597-3.84 2.464-9.954 2.464-9.954z"/></svg>����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kaspersky.svg��������������������������������0000664�0000000�0000000�00000003654�14753064456�0025647�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.812 12.014c0 .91-.555 1.34-1.25 1.34h-.424v-.546h.392c.419 0 .698-.226.698-.794 0-.563-.264-.844-.71-.844-.43 0-.738.265-.738.833v2.282H8.2v-3.589h.58v.309h.082a.94.94 0 0 1 .776-.375c.64 0 1.174.463 1.174 1.384m-3.804-.237-.386-.039c-.304-.027-.464-.11-.464-.287 0-.21.204-.33.497-.33.303 0 .496.143.512.347h.557c-.022-.518-.424-.838-1.064-.838-.645 0-1.08.342-1.08.843 0 .42.264.69.865.75l.392.039c.237.022.397.072.397.298 0 .204-.15.352-.54.352-.361 0-.539-.163-.601-.382H5.49c.06.5.481.89 1.203.89.678 0 1.12-.359 1.12-.888 0-.469-.31-.706-.805-.755m6.047.753c-.091.208-.308.366-.616.366-.425 0-.739-.276-.739-.871 0-.568.292-.882.744-.882.403 0 .634.242.657.606h-1.043v.42h1.61v-.277c0-.766-.507-1.262-1.23-1.262-.672 0-1.317.457-1.317 1.395s.645 1.395 1.318 1.395c.615 0 1.054-.38 1.19-.89zm-9.127-1.9c-.634 0-1.108.33-1.163.838h.623c.044-.188.215-.325.54-.325.42 0 .557.22.557.49v.91c-.237.27-.513.397-.788.397-.287 0-.486-.138-.486-.386 0-.237.155-.386.452-.386h.464v-.419h-.48c-.662 0-1.031.331-1.031.838 0 .474.358.833.948.833.331 0 .623-.133.838-.292h.083v.226h.579v-1.776c0-.656-.447-.948-1.136-.948M0 13.354h.579v-3.64H0zm2.432-2.658h-.706l-.844 1.108v.348l.866 1.202h.717L1.45 11.975zm20.928 0-.474 1.053c-.116.254-.226.502-.259.667h-.083c-.033-.165-.148-.408-.264-.661l-.474-1.059h-.64l1.114 2.387-.552 1.202h.618L24 10.696zm-2.322 0h-.706l-.843 1.108v.348l.865 1.202h.717l-1.015-1.379zm-3.625 1.08-.386-.038c-.303-.027-.463-.11-.463-.287 0-.21.204-.33.496-.33.303 0 .496.143.513.347h.557c-.022-.518-.425-.838-1.064-.838-.645 0-1.081.342-1.081.843 0 .42.265.69.866.75l.391.039c.237.022.397.072.397.298 0 .204-.149.352-.54.352-.36 0-.538-.163-.6-.382h-.603c.06.5.481.89 1.203.89.678 0 1.12-.359 1.12-.888 0-.469-.31-.706-.806-.755zm1.193 1.578h.58v-3.64h-.58zm-3.817-2.35h-.083v-.308h-.579v2.658h.579v-1.39c0-.474.219-.75.65-.75h.367v-.584h-.212c-.4 0-.57.15-.722.375z"/></svg>������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/katana.svg�����������������������������������0000664�0000000�0000000�00000001557�14753064456�0025072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m.016 22.762H12c-5.95-.009-10.765-4.84-10.756-10.789.009-5.95 4.839-10.766 10.789-10.757 5.943.009 10.756 4.829 10.756 10.773 0 5.95-4.823 10.773-10.773 10.773m9.475-10.857a5.562 5.562 0 0 1-9.142 3.214 6.33 6.33 0 0 0 3.251-2.062l.104.169c.339.584.568 1.226.676 1.893a6.3 6.3 0 0 0-.349-2.656 6.328 6.328 0 0 0-8.94-8.63 5.563 5.563 0 0 1 7.418 6.256 6.33 6.33 0 0 0-3.425-1.762l.093-.175a5.5 5.5 0 0 1 1.304-1.533 6.3 6.3 0 0 0-2.122 1.636 6.327 6.327 0 0 0-3.016 12.044 5.564 5.564 0 0 1 1.713-9.562 6.33 6.33 0 0 0 .185 3.818h-.186a5.5 5.5 0 0 1-1.98-.36 6.3 6.3 0 0 0 2.471 1.025 6.33 6.33 0 0 0 8.513 2.758 6.32 6.32 0 0 0 3.432-6.073m-11.018-1.443a5.58 5.58 0 0 1 3.6.998 5.6 5.6 0 0 1-2.667 2.618 5.57 5.57 0 0 1-.933-3.616"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kaufland.svg���������������������������������0000664�0000000�0000000�00000000350�14753064456�0025406�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 24h24V0H0zm23.008-.989H.989V.989h22.022zM3.773 3.776h7.651v7.65H3.773zm8.801 0v7.652l7.653-7.652zm-8.801 8.8h7.651v7.651H3.773zm8.801-.004v7.652h7.653z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kde.svg��������������������������������������0000664�0000000�0000000�00000001446�14753064456�0024373�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.881 0 9.89.382v16.435l3.949-.594V9.216l5.308 7.772 4.162-1.317-5.436-7.475 5.479-7.05L19.105.17 13.84 7.22zM4.834 4.005a.2.2 0 0 0-.123.059L3.145 5.63a.2.2 0 0 0-.03.248L4.949 8.9a7.8 7.8 0 0 0-.772 1.759l-3.367.7a.2.2 0 0 0-.162.199v2.215c0 .093.064.174.155.196l3.268.8a7.8 7.8 0 0 0 .801 2.03L2.98 19.683a.2.2 0 0 0 .027.254l1.566 1.567a.204.204 0 0 0 .249.03l2.964-1.8c.582.336 1.21.6 1.874.78l.692 3.325c.02.094.102.161.198.161h2.215a.2.2 0 0 0 .197-.155l.815-3.332a7.8 7.8 0 0 0 1.927-.811l2.922 1.915c.08.053.186.042.254-.026l1.567-1.566a.2.2 0 0 0 .03-.248l-1.067-1.758-.345.11a.12.12 0 0 1-.135-.047L17.371 15.8a6.347 6.347 0 1 1-8.255-8.674V5.488c-.401.14-.79.31-1.159.511l-.001-.002-2.99-1.96a.2.2 0 0 0-.132-.033Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kdenlive.svg���������������������������������0000664�0000000�0000000�00000000631�14753064456�0025424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.727 1.554 2.727 4.334v16.558h1.091V5.889l2.728-4.335zm-6 4.948V9.8h7.091c.003-.83 0-1.672-.006-2.498 0-.383-.356-.732-.718-.8zm12.303.001c-.402.024-.835.41-.834.837l-.014 12.619c0 .57.767 1.065 1.207.727l8.28-6.331c.441-.335.44-1.12 0-1.455l-8.265-6.287a.55.55 0 0 0-.374-.11M-.001 12v3.299h9.818V12zm4.363 5.497v3.3h5.455v-3.3z"/></svg>�������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kdeplasma.svg��������������������������������0000664�0000000�0000000�00000000556�14753064456�0025572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 0c-.831 0-1.5.669-1.5 1.5S5.169 3 6 3s1.5-.669 1.5-1.5S6.831 0 6 0m10.5 0-3 3L18 7.5 13.5 12l3 3 4.5-4.5 3-3zM2.25 9A2.245 2.245 0 0 0 0 11.25a2.245 2.245 0 0 0 2.25 2.25 2.245 2.245 0 0 0 2.25-2.25A2.245 2.245 0 0 0 2.25 9M9 18c-1.662 0-3 1.338-3 3s1.338 3 3 3 3-1.338 3-3-1.338-3-3-3"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kedro.svg������������������������������������0000664�0000000�0000000�00000000145�14753064456�0024727�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 0 12 12-12 12L0 12z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/keenetic.svg���������������������������������0000664�0000000�0000000�00000000451�14753064456�0025412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.718 10.188 24 2.376h-6.588L9.788 9.812H4.33V2.376H0v19.248h4.33V14.14h7.623c3.2 0 5.412.706 6.588 2.07.706.8 1.035 1.883 1.035 3.248v2.165h4.33v-2.165c0-2.353-.706-4.424-2.07-6.024-1.46-1.647-3.483-2.776-6.118-3.247"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/keepachangelog.svg���������������������������0000664�0000000�0000000�00000004543�14753064456�0026566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.803.179Q8.76.171 7.72.38C5.639.797 3.974 1.828 2.77 3.445 1.232 5.515.367 8.072.049 11.492c-.125 1.353.008 2.711.181 4.216a9.97 9.97 0 0 0 2.144 5.214c.933 1.157 2.004 1.917 3.272 2.324a12 12 0 0 0 3.336.574 6 6 0 0 0 .795-.034l.416-.041a93 93 0 0 0 1.721-.186 21.4 21.4 0 0 0 7.393-2.257c2.007-1.048 3.41-2.594 4.17-4.597.354-.93.523-1.713.523-2.445a4.6 4.6 0 0 0-.064-.762c-.405-2.379-1.235-4.428-2.555-6.264-1.634-2.276-3.288-3.878-5.202-5.045C13.993.86 11.89.193 9.803.18Zm-.439 1.064q1.154-.032 2.376.237h-.001c2.73.597 5.137 2.002 7.154 4.173 2.288 2.46 3.591 5.045 3.988 7.899.071.528-.013 1.114-.096 1.622-.388 2.327-1.663 4.063-3.786 5.16a21 21 0 0 1-7.166 2.182c-.558.066-1.12.123-1.757.187l-.088.01a6.8 6.8 0 0 1-1.658-.03c-.69-.098-1.472-.21-2.224-.389-1.767-.42-3.069-1.622-3.978-3.658-.684-1.538-1.038-3.245-1.081-5.233a17.9 17.9 0 0 1 1.149-6.798c.62-1.641 1.517-3.453 3.462-4.418a8.75 8.75 0 0 1 3.706-.944m1.108 1.47a7.8 7.8 0 0 0-2.24.41c-1.6.525-2.718 1.304-3.523 2.438-1.499 2.118-2.275 4.58-2.31 7.325a10.1 10.1 0 0 0 .803 4.388c1.081 2.569 3.053 4.064 5.707 4.326 2.796.27 5.543-.381 8.178-1.937a8.1 8.1 0 0 0 2.772-2.624 7.1 7.1 0 0 0 1.168-3.86c0-2.162-1.015-4.47-3.049-6.862a6.4 6.4 0 0 0-.704-.707c-2.333-2.006-4.567-2.966-6.802-2.898zm.099 1.035c1.492-.022 3.015.475 4.672 1.508 1.783 1.117 3.161 2.763 4.091 4.909.887 2.02.905 3.938.058 5.696a6.8 6.8 0 0 1-2.907 2.988c-2.253 1.232-4.315 1.776-6.458 1.713h-.022c-1.55.06-2.89-.32-4.098-1.163-.7-.488-1.241-1.202-1.655-2.183a10.9 10.9 0 0 1-.872-4.273A12.7 12.7 0 0 1 4.404 8.09a12 12 0 0 1 .874-1.622l.163-.27c.67-1.108 1.725-1.639 3.103-2.099a6.8 6.8 0 0 1 2.027-.35zm.03 1.62c-1.18.037-2.28.465-3.289 1.283-1.395 1.13-2.23 2.72-2.63 4.993a7.24 7.24 0 0 0 .676 4.613c1.062 2.054 2.8 3.11 5.026 3.05h.008c2.958-.155 5.11-1.249 6.573-3.347a5.6 5.6 0 0 0 1.06-3.245 5.8 5.8 0 0 0-.242-1.639c-.72-2.435-2.161-4.145-4.29-5.085q-1.514-.667-2.892-.624Zm.312 1.064c.77.008 1.547.191 2.35.55 1.862.833 3.073 2.332 3.598 4.462.526 2.13-.27 4.205-2.066 5.423-1.479.999-2.93 1.447-4.438 1.367h-.04c-1.004.08-1.994-.226-2.943-.91a3.67 3.67 0 0 1-1.29-1.72 7.6 7.6 0 0 1-.514-2.727 8.5 8.5 0 0 1 .747-3.38c.676-1.556 1.724-2.503 3.215-2.893q.69-.18 1.38-.172zM9.455 8.758v6.882h1.155v-1.908l1.68 1.908h1.462l-2.273-2.5 1.871-1.958h-1.509l-1.231 1.337V8.758Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/keepassxc.svg��������������������������������0000664�0000000�0000000�00000001222�14753064456�0025606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.378 0 0 5.378 0 12c0 6.623 5.378 12 12 12 6.623 0 12-5.377 12-12 0-6.622-5.377-12-12-12m0 .791a11.203 11.203 0 0 1 11.209 11.21A11.2 11.2 0 0 1 12 23.208 11.203 11.203 0 0 1 .791 12 11.203 11.203 0 0 1 12.001.791zm0 1.871a9.4 9.4 0 0 0-1.705.162A1.746 1.746 0 0 0 12 4.95a1.746 1.746 0 0 0 1.706-2.126A9.3 9.3 0 0 0 12 2.662M7.2 4a9.34 9.34 0 0 0-4.54 8 9.338 9.338 0 0 0 18.677 0 9.34 9.34 0 0 0-4.54-7.998 4.89 4.89 0 0 1-2.701 5.365l-.12 2.066 1.482 1.483-1.483 1.482.989.989-.989.988.12 1.857L12 20.328l-2.096-2.096V9.367A4.89 4.89 0 0 1 7.2 4m3.4 6.543v6.99h.7v-6.99z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/keeper.svg�����������������������������������0000664�0000000�0000000�00000001070�14753064456�0025074�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m1.365 1.788 1.854.472v2.597l2.073-1.704 1.537 1.135-3.949 3.247-1.515-.008zm-9.067 15.54L2.445 15.75V8.7L4.298 7zm3.631 2.22L6.076 21.16V3l1.853 1.614zm9.363 1.555-2.073-1.705v2.597l-1.854.473v-5.74l1.515-.007 3.95 3.246zm2.733-2.473-4.604-3.674h-3.826v7.512H9.742v-9.365h6.329l5.11 4.078zm2.62-8.329-2.059 1.7 2.059 1.698-1.181 1.431L17.67 12l3.793-3.13zm-6.574.6H9.742V1.534h1.853v7.512h3.826l4.604-3.674 1.156 1.449z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/keeweb.svg�����������������������������������0000664�0000000�0000000�00000001753�14753064456�0025073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.414 24c-.23 0-.484-.097-.746-.234-.56-.294-.944-.665-.623-1.276L12.83 7.648l-.223-.116c-2.807-1.473-4.053-3.65-3.045-5.573 1.16-2.209 4.75-2.61 8.018-.895 3.27 1.715 4.98 4.896 3.82 7.105-.996 1.9-3.599 2.07-6.216.697l-.321-.167-7.792 14.854c-.17.325-.398.447-.658.447M4.98 20.82l-.147-.077-.033-.017-1.994-1.046-.481-.253a.166.166 0 0 1-.07-.224l.631-1.204a.167.167 0 0 1 .224-.07l.962.505a.167.167 0 0 0 .225-.07l.631-1.203a.167.167 0 0 0-.07-.225l-.48-.252-.481-.253a.166.166 0 0 1-.07-.224l.63-1.204a.166.166 0 0 1 .225-.07l.481.253 1.252.656.775.407h.001l.147.077-.663 1.264-.046.087-.94 1.793-.096.182-.535 1.02v.002zm3.152-6.007-.148-.078-.7-.367-.553-.29a.167.167 0 0 1-.07-.225l.631-1.203a.167.167 0 0 1 .225-.07l.553.29.7.367h.001l.147.078-.078.147-.315.602-.316.601zm10.302-7.121c.415 0 .74-.167.955-.578.658-1.253-.558-3.187-2.716-4.319s-4.44-1.034-5.097.22 1.17 2.076 3.328 3.208c1.45.76 2.68 1.467 3.53 1.469"/></svg>���������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kentico.svg����������������������������������0000664�0000000�0000000�00000002314�14753064456�0025257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm11.65 3.417c.698 0 1.566.216 1.566 1.279v2.72c0 1.5-2.433 1.533-2.433.018V3.63a.146.146 0 0 1 .118-.142c.15-.028.432-.072.75-.071zm5.508 1.76a.15.15 0 0 1 .079.026c.408.277 1.875 1.397.782 2.49L16.091 9.62c-1.06 1.06-2.803-.64-1.733-1.707l2.695-2.695a.15.15 0 0 1 .105-.041m-10.27.4c.263.01.538.123.811.396l1.928 1.93c1.061 1.059-.64 2.803-1.707 1.73L5.226 6.94a.14.14 0 0 1-.018-.182c.209-.307.891-1.208 1.68-1.18zm5.104 4.65H12A1.773 1.773 0 1 1 10.227 12a1.773 1.773 0 0 1 1.765-1.773m-7.291.55h2.728c1.499 0 1.532 2.433.017 2.433h-3.81a.144.144 0 0 1-.142-.117c-.092-.48-.337-2.315 1.207-2.315zm11.859 0h3.802a.14.14 0 0 1 .142.117c.093.48.338 2.316-1.206 2.316h-2.72c-1.5 0-1.533-2.433-.018-2.433m-1.238 3.24c.259.002.523.102.756.337l2.695 2.692a.146.146 0 0 1 .017.184c-.278.41-1.398 1.876-2.49.784l-1.929-1.93c-.829-.827.028-2.072.951-2.066zm-6.657.013c.93-.011 1.811 1.209.975 2.044l-2.694 2.692a.144.144 0 0 1-.184.018c-.408-.278-1.876-1.398-.783-2.49l1.928-1.93a1.08 1.08 0 0 1 .758-.334m3.334 1.403c.608-.007 1.217.364 1.217 1.122v3.802a.144.144 0 0 1-.118.14c-.48.093-2.316.338-2.316-1.206v-2.72c0-.749.609-1.132 1.217-1.138"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/keras.svg������������������������������������0000664�0000000�0000000�00000000332�14753064456�0024726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 0H0v24h24zM8.45 5.16l.2.17v6.24l6.46-6.45h1.96l.2.4-5.14 5.1 5.47 7.94-.2.3h-1.94l-4.65-6.88-2.16 2.08v4.6l-.19.2H7l-.2-.2V5.33l.17-.17z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/keybase.svg����������������������������������0000664�0000000�0000000�00000004711�14753064456�0025251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.445 21.372a.953.953 0 1 1-.955-.954c.524 0 .951.43.951.955m5.923-.001a.953.953 0 1 1-.958-.954c.526 0 .954.43.954.955m4.544-9.16-.156-.204q-.07-.088-.143-.175c-.045-.06-.094-.113-.141-.169q-.155-.18-.32-.359l-.075-.08-.091-.099-.135-.13q-.023-.027-.05-.054a10.9 10.9 0 0 0-3.955-2.504l-.23-.078.035-.083a4.1 4.1 0 0 0-.12-3.255 4.1 4.1 0 0 0-2.438-2.16c-.656-.216-1.23-.319-1.712-.305-.033-.105-.1-.577.496-1.848L10.662 0l-.287.399c-.33.455-.648.895-.945 1.328a1.86 1.86 0 0 0-1.245-.58L6.79 1.061h-.012q-.051-.004-.104-.003c-.99 0-1.81.771-1.87 1.755l-.088 1.402v.003a1.876 1.876 0 0 0 1.755 1.98l1.002.06c-.065.84.073 1.62.405 2.306a11.3 11.3 0 0 0-3.66 2.484C.912 14.392.912 18.052.912 20.995v1.775l1.305-1.387c.266.93.652 1.807 1.145 2.615H5.06a9.2 9.2 0 0 1-1.68-3.848l1.913-2.03-.985 3.09 1.74-1.267c3.075-2.234 6.745-2.75 10.91-1.53 1.806.533 3.56.04 4.474-1.256l.104-.165c.09.498.14.998.14 1.496 0 1.563-.254 3.687-1.38 5.512h1.612c.776-1.563 1.181-3.432 1.181-5.512-.001-2.2-.786-4.421-2.184-6.274zM8.894 6.192c.122-1.002.577-1.949 1.23-2.97a1.36 1.36 0 0 0 1.283.749c.216-.008.604.025 1.233.232a2.7 2.7 0 0 1 1.608 1.425c.322.681.349 1.442.079 2.15a2.7 2.7 0 0 1-.806 1.108l-.408-.502-.002-.003a1.47 1.47 0 0 0-2.06-.205c-.334.27-.514.66-.534 1.058-1.2-.54-1.8-1.643-1.628-3.04zm4.304 5.11-.52.425a.23.23 0 0 1-.323-.032l-.11-.135a.24.24 0 0 1 .034-.334l.51-.42-1.056-1.299a.307.307 0 0 1 .044-.436.303.303 0 0 1 .435.041l2.963 3.646a.31.31 0 0 1-.168.499.32.32 0 0 1-.31-.104l-.295-.365-1.045.854a.24.24 0 0 1-.154.055.24.24 0 0 1-.186-.09l-.477-.58a.24.24 0 0 1 .035-.335l1.05-.858-.425-.533zM7.752 4.866l-1.196-.075a.463.463 0 0 1-.435-.488l.09-1.4a.46.46 0 0 1 .461-.437h.024l1.401.091a.46.46 0 0 1 .433.488l-.007.101a9.3 9.3 0 0 0-.773 1.72zm12.525 11.482c-.565.805-1.687 1.08-2.924.718-3.886-1.141-7.397-.903-10.469.7l1.636-5.122-5.29 5.609c.098-3.762 2.452-6.967 5.757-8.312.471.373 1.034.66 1.673.841.16.044.322.074.48.102a1.41 1.41 0 0 0 .21 1.408l.075.09c-.172.45-.105.975.221 1.374l.476.582a1.39 1.39 0 0 0 1.079.513c.32 0 .635-.111.886-.314l.285-.232c.174.074.367.113.566.113a1.45 1.45 0 0 0 .928-.326c.623-.51.72-1.435.209-2.06l-1.67-2.057a4 4 0 0 0 .408-.38q.204.055.4.12c.266.096.533.197.795.314a9.6 9.6 0 0 1 2.77 1.897q.046.043.086.083l.17.176q.058.059.11.12.12.128.24.267l.126.15q.066.078.13.16l.114.15q.06.075.117.154c.838 1.149.987 2.329.404 3.157v.005zM7.718 4.115l-.835-.05.053-.836.834.051z"/></svg>�������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/keycdn.svg�����������������������������������0000664�0000000�0000000�00000003277�14753064456�0025111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.304 19.06c.226.01.454.04.667.12v-.002l.032.012 2.81-2.74.101.138c.146.2.3.38.464.56l.06.067c.043.043.077.086.12.13l.326.325.077.07.07.06a7.46 7.46 0 0 0 4.653 1.775 7.5 7.5 0 0 0 4.009-1.04l.216.225c.25.266.507.533.756.8a8.86 8.86 0 0 1-5.016 1.4 8.83 8.83 0 0 1-5.461-2.063l.01-.015-1.802 1.776A2.246 2.246 0 1 1 0 21.305a2.245 2.245 0 0 1 2.245-2.245zm17.17-11.583a8.83 8.83 0 0 1 1.28 4.826 8.8 8.8 0 0 1-2.208 5.615l.01.01 1.107 1.177c.446-.06.891.094 1.201.42a1.394 1.394 0 0 1-.052 1.966 1.394 1.394 0 0 1-1.966-.052 1.38 1.38 0 0 1-.352-1.22 337 337 0 0 0-1.95-2.069l-.11-.12.129-.103a7 7 0 0 0 .927-.885 7.43 7.43 0 0 0 1.88-4.775 7.44 7.44 0 0 0-.927-3.812l1.03-.98zM3.827 2.225c.395-.006.765.15 1.04.432.31.326.44.782.352 1.22L7.348 6.11l-.128.104a7 7 0 0 0-.928.885 7.49 7.49 0 0 0-.962 8.594l-1.022.996a8.76 8.76 0 0 1-1.287-4.852c.044-2.067.85-4.065 2.203-5.62L4.052 4.993a1.4 1.4 0 0 1-1.203-.42 1.396 1.396 0 0 1 .052-1.967c.217-.204.497-.335.794-.37q.067-.007.133-.01zM21.746.443a2.247 2.247 0 1 1-.7 4.38l-.002.002-.033-.012-3.049 2.894-.102-.138a7 7 0 0 0-.533-.626l-.034-.043-.265-.266-.12-.103-.077-.07-.06-.05-.077-.07a7.46 7.46 0 0 0-4.619-1.752 7.43 7.43 0 0 0-4.003 1.04l-.98-1.022a8.84 8.84 0 0 1 5.016-1.4 8.8 8.8 0 0 1 5.462 2.07h.017l2.02-1.916A2.246 2.246 0 0 1 21.75.444zm-9.79 5.015c.254 0 .507.02.76.05 3.623.455 6.19 3.76 5.744 7.385a6.624 6.624 0 0 1-7.385 5.745 6.624 6.624 0 0 1-5.746-7.385c.432-3.362 3.257-5.783 6.626-5.795zm-.1 2.84c-1.465.116-2.527 1.226-2.565 2.698.027 1.054.565 1.94 1.504 2.425l-.511 2.4h3.421l-.51-2.4c.935-.506 1.49-1.345 1.505-2.422-.02-1.521-1.197-2.667-2.705-2.705zm.052-.016h-.01z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/keycloak.svg���������������������������������0000664�0000000�0000000�00000000724�14753064456�0025430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.742 1.182-12.493.002C4.155 4.784 2.079 8.393 0 12.002c2.071 3.612 4.162 7.214 6.252 10.816l12.49-.004 3.089-5.404h2.158v-.002H24L23.996 6.59h-2.168zM8.327 4.792h2.081l1.04 1.8-3.12 5.413 3.117 5.403-1.035 1.81H8.327a2048 2048 0 0 0-4.168-7.204q2.083-3.611 4.168-7.222m6.241 0 2.086.003q2.088 3.608 4.166 7.222l-4.167 7.2h-2.08c-.382-.562-1.038-1.808-1.038-1.808l3.123-5.405-3.124-5.413z"/></svg>��������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/keystone.svg���������������������������������0000664�0000000�0000000�00000000434�14753064456�0025465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.5 0A4.5 4.5 0 0 0 0 4.5v15A4.5 4.5 0 0 0 4.5 24h15a4.5 4.5 0 0 0 4.5-4.5v-15A4.5 4.5 0 0 0 19.5 0zm5.47 14.789v3.586H6.744V5.692H9.97v5.45h.167l4.218-5.45h3.463l-4.385 5.599 4.64 7.084h-3.788l-3.2-5.001z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kfc.svg��������������������������������������0000664�0000000�0000000�00000003203�14753064456�0024364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.893 8.23c-4.187.001-5.249 2.365-5.42 3.97-.194 1.802 1.053 3.57 4.127 3.57 1.294 0 2.14-.225 2.44-.32a.22.22 0 0 0 .147-.166l.173-.91a.184.184 0 0 0-.236-.21c-.336.106-.93.252-1.685.252-1.469 0-2.53-.882-2.395-2.4.13-1.47 1.121-2.59 2.485-2.59.82 0 1.183.43 1.156 1.003v.033a.184.184 0 0 0 .182.193h.557c.086 0 .16-.06.18-.143l.39-1.76a.215.215 0 0 0-.15-.255 7.2 7.2 0 0 0-1.95-.266zm-20.157.116a.2.2 0 0 0-.195.156l-.108.484a.2.2 0 0 0 .13.23l.033.01c.208.082.45.266.348.748l-.792 3.62c-.207.987-.542 1.19-.86 1.226h-.01a.2.2 0 0 0-.176.157l-.102.464a.192.192 0 0 0 .187.233h3.487c.085 0 .159-.06.177-.142l.12-.543a.184.184 0 0 0-.112-.21l-.022-.01c-.177-.07-.418-.224-.356-.51l.405-1.85c1.389 2.535 1.848 3.266 3.514 3.265H8.91a.18.18 0 0 0 .177-.142l.105-.47a.195.195 0 0 0-.186-.238c-.376-.006-.56-.093-.935-.575l-1.932-2.614 2.51-2.088c.337-.264.748-.338.976-.368l.022-.002a.185.185 0 0 0 .163-.144l.103-.464a.184.184 0 0 0-.18-.223h-3.02a.2.2 0 0 0-.193.155l-.102.46a.2.2 0 0 0 .138.235c.178.069.217.24.063.366L4.046 11.7l.44-2.014a.68.68 0 0 1 .477-.487l.025-.008a.2.2 0 0 0 .135-.147l.106-.477a.18.18 0 0 0-.177-.22zm8.88 0a.2.2 0 0 0-.194.156l-.107.483a.19.19 0 0 0 .122.221l.02.008c.204.077.487.274.364.758l-1.21 5.48a.182.182 0 0 0 .178.222h2.777c.086 0 .16-.06.179-.143l.12-.547a.174.174 0 0 0-.098-.196l-.027-.013c-.176-.086-.438-.285-.35-.67.009-.05.27-1.24.27-1.24h2.362c.086 0 .16-.06.18-.143l.221-1a.183.183 0 0 0-.18-.224h-2.28l.427-1.94 1.592-.003c.515 0 .672.27.642.728l-.002.024a.184.184 0 0 0 .183.205h.587c.086 0 .16-.06.178-.144l.4-1.8a.184.184 0 0 0-.18-.222z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/khanacademy.svg������������������������������0000664�0000000�0000000�00000001113�14753064456�0026064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.724 4.973 13.418.328a3.21 3.21 0 0 0-2.828 0L2.276 4.973A3.05 3.05 0 0 0 .862 7.371v9.256a3.05 3.05 0 0 0 1.414 2.4l8.306 4.645a3.21 3.21 0 0 0 2.828 0l8.314-4.645a3.05 3.05 0 0 0 1.414-2.4V7.373a3.05 3.05 0 0 0-1.414-2.4M12 4.921a2.571 2.571 0 1 1 .001 5.143A2.571 2.571 0 0 1 12 4.92zm3.094 13.627a9.1 9.1 0 0 1-3.103.549 9 9 0 0 1-3.076-.55 8.49 8.49 0 0 1-5.486-7.987v-.857c4.646.017 8.074 3.823 8.074 8.51v.198h.926v-.197c0-4.688 3.445-8.51 8.056-8.51.026.29.043.582.086.856a8.5 8.5 0 0 1-5.477 7.988"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/khronosgroup.svg�����������������������������0000664�0000000�0000000�00000010757�14753064456�0026375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.496 12.919H0V10.38h.496zm.008-1.261.768-1.278h.554l-.814 1.26.814 1.277h-.554zm3.02.23v1.031h-.497V10.38h.497v1.031h.818V10.38h.497v2.539h-.497v-1.031zm3.272 1.031h-.497V10.38h.603q.288 0 .429.02c.141.02.174.035.239.065q.217.102.33.283c.113.181.114.263.114.426a.78.78 0 0 1-.162.5.72.72 0 0 1-.44.261l.635.984h-.592l-.658-1.177zm0-1.301h.11q.303 0 .46-.11a.36.36 0 0 0 .157-.318q0-.202-.132-.298c-.132-.096-.224-.097-.41-.097h-.185zm8.262 1.301h-.488V10.38h.472l1.05 1.621V10.38h.488v2.539h-.461l-1.061-1.67zm2.876-1.275q0-.209.056-.395.057-.186.166-.347a1.29 1.29 0 0 1 1.093-.572q.253 0 .488.098.233.098.419.281.19.19.29.427t.099.499q0 .272-.094.51a1 1 0 0 1-.274.424 1.284 1.284 0 0 1-.936.401q-.283 0-.524-.101-.238-.102-.423-.3a1.3 1.3 0 0 1-.27-.422 1.4 1.4 0 0 1-.09-.503m.519-.018a.83.83 0 0 0 .48.759.7.7 0 0 0 .307.069.74.74 0 0 0 .559-.237.82.82 0 0 0 .226-.591q0-.323-.228-.553a.75.75 0 0 0-.548-.229.78.78 0 0 0-.565.228.76.76 0 0 0-.231.554m3.291.507.455-.002v.037q0 .16.082.256c.082.096.129.096.221.096a.3.3 0 0 0 .234-.089.33.33 0 0 0 .087-.243q0-.245-.35-.351-.045-.013-.071-.023-.296-.092-.439-.262a.65.65 0 0 1-.143-.43q0-.357.198-.574c.198-.217.307-.217.528-.217q.308 0 .491.192.183.193.205.539h-.45v-.021a.27.27 0 0 0-.074-.194.26.26 0 0 0-.192-.074.25.25 0 0 0-.193.076.3.3 0 0 0-.07.208q0 .056.015.098t.046.076q.072.079.307.146.104.028.161.047a.8.8 0 0 1 .386.255q.123.165.124.424 0 .392-.218.63a.75.75 0 0 1-.578.238.7.7 0 0 1-.549-.229q-.208-.233-.213-.609m-4.886 1.298-.067.076a.3.3 0 0 0-.101-.063.3.3 0 0 0-.107-.02.26.26 0 0 0-.195.081q-.078.081-.078.2c0 .119.027.145.078.199a.26.26 0 0 0 .195.082.3.3 0 0 0 .097-.017.3.3 0 0 0 .086-.049v-.168h-.151v-.099h.258v.326a.6.6 0 0 1-.143.083.4.4 0 0 1-.147.028.375.375 0 0 1-.384-.384.4.4 0 0 1 .1-.261.38.38 0 0 1 .284-.123q.08 0 .154.029c.074.029.09.045.121.08m1.06-.091h.139q.058 0 .096.006a.3.3 0 0 1 .067.022.2.2 0 0 1 .074.073.24.24 0 0 1 .027.111q0 .071-.046.124c-.046.053-.073.056-.124.065l.222.301-.103.044-.245-.355v.337l-.109.009zm.109.095v.232h.039q.069 0 .109-.031.038-.032.038-.088c0-.056-.012-.065-.036-.084s-.06-.029-.108-.029zm1.687-.114q.072 0 .135.024a.386.386 0 0 1 .221.5.4.4 0 0 1-.075.122.4.4 0 0 1-.127.091.4.4 0 0 1-.157.032.4.4 0 0 1-.136-.024.3.3 0 0 1-.113-.068.4.4 0 0 1-.099-.134.4.4 0 0 1-.035-.159q0-.083.035-.159a.4.4 0 0 1 .099-.133.36.36 0 0 1 .252-.092m0 .102a.25.25 0 0 0-.194.081.27.27 0 0 0-.078.199q0 .119.078.2c.078.081.116.08.195.08a.27.27 0 0 0 .195-.081q.078-.081.079-.2c.001-.119-.027-.145-.078-.199a.27.27 0 0 0-.197-.08m1.518-.093v.414q0 .13.034.185.033.053.114.053c.081 0 .093-.017.117-.05a.3.3 0 0 0 .036-.167v-.424l.105-.01v.459a.6.6 0 0 1-.012.137.2.2 0 0 1-.044.082.2.2 0 0 1-.084.058.3.3 0 0 1-.112.021q-.131 0-.197-.074c-.066-.074-.065-.124-.065-.224v-.448zm1.471.01h.193q.123 0 .19.056.066.057.065.165 0 .1-.075.161c-.075.061-.119.059-.207.059l-.055-.002h-.002v.288l-.109.009zm.109.096v.244l.03.003q.016.003.036.002.08 0 .12-.032.042-.031.042-.092 0-.064-.038-.094c-.038-.03-.065-.031-.119-.031zm-11.68-.683c-.871-.031-2.061-.428-2.308-1.003-.213-.522-.001-1.13 1.004-1.563.597-.248 1.499-.318 2.195-.254.987.09 1.927.6 1.928.603v.715l-.001.048s-.306-.277-.688-.5c-.36-.211-.69-.359-1.344-.419-.153-.014-.414-.049-.836.01-.171.024-.411.042-.953.28a2.3 2.3 0 0 0-.463.277c-.065.054-.154.13-.216.195-.155.193-.236.339-.197.602.045.198.133.322.387.512.11.082.123.081.172.106.455.236.818.322 1.337.388zm.048-2.231c.873-.004 2.112.346 2.434.91.282.513.152 1.128-.794 1.598-.561.272-1.452.378-2.154.341-.997-.051-2.002-.524-2.004-.525l-.095-.713-.006-.048s.342.265.753.473c.388.195.736.331 1.397.365.154.008.418.031.832-.043.167-.03.405-.058.913-.316a1.9 1.9 0 0 0 .614-.498c.128-.199.19-.347.117-.608-.072-.195-.176-.316-.454-.495-.121-.078-.133-.076-.186-.1-.485-.217-.859-.288-1.386-.334zM24 10.58a.25.25 0 0 1-.035.129.26.26 0 0 1-.094.094.27.27 0 0 1-.129.035.24.24 0 0 1-.129-.035.24.24 0 0 1-.094-.094.26.26 0 0 1-.035-.129q0-.07.035-.13a.263.263 0 0 1 .223-.129.26.26 0 0 1 .223.129.25.25 0 0 1 .035.13m-.05 0a.2.2 0 0 0-.062-.147.2.2 0 0 0-.146-.062.2.2 0 0 0-.147.062.2.2 0 0 0-.061.147q0 .085.061.146.06.061.147.062c.087.001.106-.02.146-.062a.2.2 0 0 0 .062-.146m-.325-.138h.123q.052 0 .076.021c.024.021.024.033.024.056a.07.07 0 0 1-.017.048.1.1 0 0 1-.057.029l.024.012a.1.1 0 0 1 .023.028l.045.08h-.082q-.039-.079-.052-.094c-.013-.015-.018-.015-.028-.015l-.009.001v.109h-.069zm.068.117h.03q.03 0 .041-.01a.03.03 0 0 0 .013-.025.03.03 0 0 0-.011-.025.07.07 0 0 0-.041-.01h-.032z"/></svg>�����������������mkdocs-material-9.6.4/material/templates/.icons/simple/kia.svg��������������������������������������0000664�0000000�0000000�00000001647�14753064456�0024377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.923 14.175q.001.07.041.072a.1.1 0 0 0 .058-.024l7.48-4.854a.72.72 0 0 1 .432-.13h1.644c.252 0 .422.168.422.42v3.139c0 .38-.084.6-.42.801l-1.994 1.2a.14.14 0 0 1-.067.024c-.024 0-.048-.019-.048-.088v-3.663c0-.043-.012-.071-.041-.071a.1.1 0 0 0-.058.024l-5.466 3.551a.73.73 0 0 1-.42.127h-3.624c-.254 0-.422-.168-.422-.422V9.757c0-.033-.015-.064-.044-.064a.1.1 0 0 0-.057.024L7.732 11.88c-.036.024-.046.041-.046.058 0 .014.008.029.032.055l2.577 2.575c.034.034.058.06.058.089 0 .024-.039.043-.084.043H7.94c-.183 0-.324-.026-.423-.125l-1.562-1.56a.07.07 0 0 0-.048-.024.1.1 0 0 0-.048.015l-2.61 1.57a.72.72 0 0 1-.423.122H.425C.168 14.7 0 14.53 0 14.279v-3.08c0-.38.084-.6.422-.8L2.43 9.192a.1.1 0 0 1 .052-.016c.032 0 .048.03.048.1V13.4c0 .043.01.063.041.063a.14.14 0 0 0 .06-.024L9.407 9.36a.73.73 0 0 1 .446-.124h3.648c.252 0 .422.168.422.42l-.002 4.518z"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kibana.svg�����������������������������������0000664�0000000�0000000�00000000241�14753064456�0025045�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.625 0v21.591L21.375 0zm10.864 12.47L3.477 24h17.522a18.76 18.76 0 0 0-7.51-11.53"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kicad.svg������������������������������������0000664�0000000�0000000�00000003670�14753064456�0024704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.467 7.304a.891.891 0 1 0 .045 0zM.25 8.01c-.14 0-.25.121-.25.254v8.178c0 .132.11.253.25.253h8.522c.139 0 .247-.12.247-.254V8.266a.254.254 0 0 0-.248-.254h-.26a1 1 0 0 1 .003.361h.144v7.963H.361V8.372H6.51a1 1 0 0 1-.016-.177q0-.094.018-.184zm.262.512v7.664h7.996V8.523h-.033a1.02 1.02 0 0 1-.489.57.85.85 0 0 1-.474.142.85.85 0 0 1-.475-.142 1.02 1.02 0 0 1-.488-.57zm21.56.252a.7.7 0 0 1 .18.355q.018.094.018.41v1.664q-.414-.39-1.14-.39-.548 0-.97.302-.892.642-.892 2.391 0 .526.14.957.203.615.639.97.46.38 1.088.38.743 0 1.222-.471v.373H24q-.202-.224-.201-.773V8.775Zm-9.632.298q-1.177 0-2.038.862-.93.931-.931 2.513 0 1.41.76 2.354.816 1.02 2.19 1.02a3.1 3.1 0 0 0 1.565-.395q.396-.225.45-.211l-.73-1.195q-.519.57-1.186.57a1.18 1.18 0 0 1-.703-.236q-.708-.51-.708-1.907 0-.492.1-.9.308-1.248 1.318-1.248.646 0 1.034.492l.787-1.142a1 1 0 0 1-.334-.127q-.805-.45-1.574-.45M.56 9.175h2.065q-.246.245-.246.852v1.613l1.262-1.596q.386-.487.386-.728a.4.4 0 0 0-.023-.141h2.201q-.25.14-.627.592-.1.12-.355.435L3.57 12.26l1.973 2.715q.18.247.457.555.074.078.215.187H3.957a.7.7 0 0 0 .025-.18q0-.24-.334-.699l-1.269-1.73v1.754q0 .61.246.855H.561a.8.8 0 0 0 .218-.39q.028-.124.028-.462v-4.838q0-.337-.028-.46a.8.8 0 0 0-.219-.391m16.204 1.639q-.356 0-.658.06l-.598.15q-.423.106-.568.106l.435 1.049q.616-.325 1.174-.324.654 0 .654.752-.325-.018-.457-.018-.927 0-1.441.25-.891.434-.89 1.348 0 .4.14.716.196.444.63.686.415.229.92.225.712-.01 1.164-.471v.373h1.64a.7.7 0 0 1-.186-.36 3 3 0 0 1-.018-.414v-2.148q0-.645-.176-1.084-.36-.896-1.765-.896m-10.211.095h1.726v4.034q0 .316.018.414a.7.7 0 0 0 .185.359H6.55q.15-.162.183-.36.018-.097.018-.413v-3.268q0-.316-.018-.408a.73.73 0 0 0-.18-.358m15.07 1.02q.356 0 .647.246v2.193q-.344.277-.713.276-.707 0-.707-1.211 0-1.504.773-1.504m-4.793 1.648q.184 0 .352.03v.761q-.22.377-.7.377a.67.67 0 0 1-.43-.136.48.48 0 0 1-.189-.399q0-.333.334-.502.264-.131.633-.13"/></svg>������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kick.svg�������������������������������������0000664�0000000�0000000�00000000270�14753064456�0024543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.333 0h8v5.333H12V2.667h2.667V0h8v8H20v2.667h-2.667v2.666H20V16h2.667v8h-8v-2.667H12v-2.666H9.333V24h-8Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kickstarter.svg������������������������������0000664�0000000�0000000�00000000644�14753064456�0026155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.168 0c-3.2 0-5.797 2.579-5.797 5.758v12.484C1.371 21.42 3.968 24 7.168 24a5.8 5.8 0 0 0 4.768-2.479l.794.79c2.26 2.245 5.943 2.245 8.203 0a5.72 5.72 0 0 0 1.696-4.075 5.72 5.72 0 0 0-1.696-4.074l-2.182-2.168 2.182-2.156a5.72 5.72 0 0 0 1.696-4.074 5.72 5.72 0 0 0-1.696-4.074c-2.26-2.246-5.942-2.246-8.203 0l-.794.789A5.8 5.8 0 0 0 7.168 0"/></svg>��������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kik.svg��������������������������������������0000664�0000000�0000000�00000002240�14753064456�0024377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.482 16.752a1.25 1.25 0 0 1-1.238 1.242c-.689 0-1.23-.541-1.244-1.23h-.016v-6.243H9v-.029c0-.693.556-1.256 1.237-1.256s1.236.563 1.236 1.258v.045h.016v6.225h-.016zm11.137-4.889c.75 0 1.381.618 1.381 1.377a1.388 1.388 0 0 1-2.776-.004c0-.766.615-1.381 1.379-1.381zm-2.084 4.186c.121.195.193.432.193.686 0 .703-.553 1.26-1.244 1.26a1.24 1.24 0 0 1-1.08-.631l-2.053-2.746-.631.586v1.635h-.014a1.233 1.233 0 0 1-1.225 1.168 1.23 1.23 0 0 1-1.221-1.238v-.025h-.016v-9.45h.027v-.047c0-.69.551-1.253 1.23-1.253.674 0 1.225.562 1.225 1.253v.07h.016l.01 4.597 2.311-2.261c.229-.255.559-.405.928-.405.689 0 1.248.57 1.248 1.26 0 .346-.133.646-.344.871l.012.015-1.621 1.605 2.281 3.061-.016.016zm-13.246 0c.12.195.195.432.195.686 0 .703-.555 1.26-1.244 1.26-.466 0-.871-.256-1.081-.631l-2.054-2.746-.63.586v1.631H2.46a1.23 1.23 0 0 1-1.221 1.17 1.23 1.23 0 0 1-1.225-1.238v-.027H0V7.29h.031q-.005-.022-.004-.044c0-.69.551-1.252 1.23-1.252.675 0 1.225.559 1.225 1.25v.07h.016l.01 4.6 2.311-2.261c.23-.255.562-.405.931-.405.687 0 1.245.57 1.245 1.26 0 .33-.131.646-.346.871l.016.015-1.627 1.605 2.271 3.061-.016.016z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kingstontechnology.svg�����������������������0000664�0000000�0000000�00000004276�14753064456�0027564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.123 0c-.544-.003-1.03.009-1.439.021C7.185.17 4.212 1.706 4.212 1.706s-.297.199-.149.843c0 0 .1.792.199 1.138l.05.1c-.1.1-.497.297-.645.496-.347.445-.05 2.477-.05 2.477.347 2.13.694 2.526.694 2.526s.496.644 1.19 1.09c.297.148.247.495.247.495L3.32 24h16.35l-3.42-7.48c.694 0 2.131.346 2.924-1.884.743-2.13 1.14-5.35 1.19-6.291.098-.942-.1-2.924-.051-3.419 0-.149.347-.644.347-.941.05-.446 0-.842-.1-1.585-.049-.298-.098-.644-.197-.991-.05-.248-.1-.397-.298-.496-2.155-.743-4.31-.9-5.942-.912m-1.439.418c.545 0 5.103-.05 7.233.892.198.149.05.892-.05 1.288-.049.297-.396.397-.396.397-.347.099-.446.346-.446.346s.446 4.31.495 4.459c.05.198-.148.198-.544.248-.198 0-2.477.049-2.477.049s-.496-.05-.446-.346c0-.199.099-.596.198-.596h.446s.99.05.694-.049l-1.04-.248s-.249 0-.348.15c-.05.148-.297.94-.297.94s0 .05.05.1c.049.05 2.576 1.883 2.576 1.883s-2.13-.2-2.775-.05c-.644.148-1.981.841-2.823.99-.843.149-3.964.496-4.162.496l-1.239-5.35s-.148-1.338-1.536-1.288c-1.04.05-1.189.296-1.238.395a.48.48 0 0 0 0 .397l3.37 5.747s-2.28-1.09-3.172-2.328c-.495-.644-.941-3.865-.644-4.41.297-.495 2.13-.891 2.923-.792.396.05.743.445.942.693.05.099.098.05.148.1 0 0-.199-1.24-.991-1.289-1.14-.099-2.378.347-2.378.347s-.1 0-.149-.15c-.05-.198-.198-1.238-.198-1.238s.05-.198.248-.297c0 0 3.22-1.486 8.026-1.486m.644 1.427c-.07.003-.1.01-.1.01-2.08.842-3.764 2.675-3.764 2.576.198.05.594 0 .594 0 1.833-1.586 3.419-2.23 3.419-2.23 1.337 0 3.616.793 3.765.743.05 0 .05-.247-.05-.297-.247-.05-.743-.297-1.684-.495-1.375-.297-1.97-.316-2.18-.307m6.788 1.397c.198.05.198.05.297.148.148.1.099.397 0 .446-.1.1-.149-.098-.793-.049 0 0 .297-.594.496-.545m-4.871.102c-.363-.019-.865.047-1.422.195-.743.199-2.23.942-2.23.942.595.248 1.587.347 2.528.495 1.04.1 2.18-.446 2.18-.446-.05-.148-.397-1.04-.744-1.14a1.4 1.4 0 0 0-.313-.046m.786 7.401c.724.018 1.576.102 2.45.325 0 0 .495.396.445.743 0 0-3.567.198-4.954-.942 0 0 .852-.155 2.06-.126m-9.738.176 1.536 1.04 2.526 11.544h-6.44Zm11.803 1.456a9 9 0 0 1 .732.03s.297.248-.496 1.04c-.99.942-2.725 1.685-4.261 1.289 0 0 .566-2.351 4.025-2.36m-8.087 4.192s3.121 1.932 3.617 2.675l.346 4.31h-2.279Zm5.3 3.963s1.834 1.685 2.379 3.023h-3.071z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kinopoisk.svg��������������������������������0000664�0000000�0000000�00000000647�14753064456�0025640�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.049 0C5.45 0 .104 5.373.104 12S5.45 24 12.049 24c3.928 0 7.414-1.904 9.592-4.844l-9.803-5.174 6.256 6.418h-3.559l-4.373-6.086V20.4h-2.89V3.6h2.89v6.095L14.535 3.6h3.559l-6.422 6.627 9.98-5.368C19.476 1.911 15.984 0 12.05 0zm10.924 7.133-9.994 4.027 10.917-.713a12 12 0 0 0-.923-3.314m-10.065 5.68 10.065 4.054c.458-1.036.774-2.149.923-3.314z"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kinsta.svg�����������������������������������0000664�0000000�0000000�00000005237�14753064456�0025123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.223 10.404a2 2 0 0 0-.628-.43 1.9 1.9 0 0 0-.762-.154 2 2 0 0 0-.72.135 2 2 0 0 0-.617.381l-.317-.368a.18.18 0 0 0-.136-.062h-.01a.18.18 0 0 0-.18.18v4.07a.18.18 0 0 0 .18.18H7.8a.18.18 0 0 0 .18-.18v-2.349a.8.8 0 0 1 .066-.328.8.8 0 0 1 .18-.27.85.85 0 0 1 .607-.249.8.8 0 0 1 .326.066.85.85 0 0 1 .45.452.8.8 0 0 1 .065.33v2.35a.18.18 0 0 0 .18.181h.765a.18.18 0 0 0 .18-.18v-2.351a2 2 0 0 0-.154-.772 2 2 0 0 0-.422-.632m8.692-.487h-3.02a.18.18 0 0 0-.178.18v.763a.18.18 0 0 0 .179.18h.19a.18.18 0 0 1 .18.18v1.136a1.95 1.95 0 0 0 .154.77 2 2 0 0 0 1.055 1.057 1.9 1.9 0 0 0 .767.155h.675a.18.18 0 0 0 .18-.18v-.763a.18.18 0 0 0-.18-.18h-.676a.8.8 0 0 1-.334-.069.9.9 0 0 1-.272-.183.9.9 0 0 1-.181-.271.8.8 0 0 1-.065-.334v-1.135a.18.18 0 0 1 .18-.18h1.347a.18.18 0 0 0 .18-.18V10.1a.18.18 0 0 0-.181-.183m4.908-.082h-.008a.18.18 0 0 0-.14.066l-.264.317a.18.18 0 0 1-.254.023 3 3 0 0 0-.202-.157 2.5 2.5 0 0 0-.377-.223 2.2 2.2 0 0 0-.408-.15 1.7 1.7 0 0 0-.425-.053 2.3 2.3 0 0 0-.877.172 2.2 2.2 0 0 0-.719.48 2.3 2.3 0 0 0-.485.743 2.5 2.5 0 0 0-.176.95 2.6 2.6 0 0 0 .176.988 2.2 2.2 0 0 0 .485.734 2.1 2.1 0 0 0 .718.457 2.4 2.4 0 0 0 .876.158 1.7 1.7 0 0 0 .423-.054 2.3 2.3 0 0 0 .407-.147 2.5 2.5 0 0 0 .377-.22 3 3 0 0 0 .196-.147.18.18 0 0 1 .258.035l.27.375a.18.18 0 0 0 .326-.106v-4.06a.18.18 0 0 0-.179-.181zm-1.043 2.616a1.3 1.3 0 0 1-.24.385 1.2 1.2 0 0 1-.358.269 1 1 0 0 1-.435.1 1.2 1.2 0 0 1-.435-.078 1 1 0 0 1-.354-.232 1.1 1.1 0 0 1-.239-.378 1.58 1.58 0 0 1 0-1.03 1.1 1.1 0 0 1 .239-.378 1 1 0 0 1 .354-.232 1.2 1.2 0 0 1 .435-.079 1 1 0 0 1 .435.101 1.2 1.2 0 0 1 .357.269 1.3 1.3 0 0 1 .241.385 1.2 1.2 0 0 1 0 .9zM.956 9.91H.181a.18.18 0 0 0-.18.18v4.07a.18.18 0 0 0 .18.18h.774a.18.18 0 0 0 .18-.18v-4.07a.18.18 0 0 0-.18-.18zm3.169.307a.181.181 0 0 0-.136-.299h-.87a.18.18 0 0 0-.136.064l-1.746 2.03a.18.18 0 0 0 0 .238l1.746 2.03a.18.18 0 0 0 .136.063h.869a.181.181 0 0 0 .136-.3L2.573 12.25a.18.18 0 0 1 0-.239zm1.687-.307h-.01a.18.18 0 0 0-.136.063l-.036.042-.72.834a.18.18 0 0 0-.044.118v3.193a.18.18 0 0 0 .18.18h.765a.18.18 0 0 0 .18-.18v-4.07a.18.18 0 0 0-.18-.18Zm9.205 2.072a1.4 1.4 0 0 0-.446-.27 1.5 1.5 0 0 0-.544-.096h-1.173a.27.27 0 0 1-.198-.085.28.28 0 0 1-.083-.205.28.28 0 0 1 .281-.28h2.102a.18.18 0 0 0 .18-.181v-.766a.18.18 0 0 0-.18-.18h-2.103a1.4 1.4 0 0 0-.548.109 1.4 1.4 0 0 0-.744.746 1.44 1.44 0 0 0 0 1.1 1.42 1.42 0 0 0 .744.754 1.4 1.4 0 0 0 .549.111h1.209a.24.24 0 0 1 .241.216.24.24 0 0 1-.238.26H11.63a.18.18 0 0 0-.179.18v.762a.18.18 0 0 0 .18.18h2.393a1.4 1.4 0 0 0 .99-.41 1.5 1.5 0 0 0 .301-.448 1.4 1.4 0 0 0 .112-.548 1.3 1.3 0 0 0-.112-.533 1.3 1.3 0 0 0-.3-.415z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kirby.svg������������������������������������0000664�0000000�0000000�00000000421�14753064456�0024740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.571 12-2.857 1.48v.234h2.857V16H7.43v-2.286h2.857v-.25L7.429 12V9.143L12 11.598l4.571-2.455M12 0l10.286 5.999V18L12 24 1.714 18.001V6zM2.857 6.682v10.636L12 22.651l9.143-5.333V6.682L12 1.349Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kit.svg��������������������������������������0000664�0000000�0000000�00000001214�14753064456�0024410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3.5 11.633-2.434 2.408V8.687a.53.53 0 0 0-.533-.527.53.53 0 0 0-.533.527v6.624a.53.53 0 0 0 .532.526.53.53 0 0 0 .377-.153l2.974-2.939 2.974 2.94a.535.535 0 0 0 .754 0 .52.52 0 0 0 0-.746l-2.974-2.938L7.61 9.06a.52.52 0 0 0 0-.745.54.54 0 0 0-.753 0l-3.344 3.307q-.004.001-.007.005zm8.826 4.206a.53.53 0 0 1-.533-.526V8.688a.53.53 0 0 1 .533-.528.53.53 0 0 1 .533.528v6.624a.53.53 0 0 1-.533.526zm7.257-6.624v6.098c0 .29.238.526.532.526a.53.53 0 0 0 .533-.526V9.215h2.818A.53.53 0 0 0 24 8.688a.53.53 0 0 0-.533-.527h-6.702a.53.53 0 0 0-.533.527.53.53 0 0 0 .533.527h2.819z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kitsu.svg������������������������������������0000664�0000000�0000000�00000003374�14753064456�0024771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.429 5.441a12.5 12.5 0 0 0 1.916 2.056c.011.011.022.011.022.022.452.387 1.313.947 1.937 1.173 0 0 3.886 1.496 4.091 1.582a1.4 1.4 0 0 0 .237.075.694.694 0 0 0 .808-.549c.011-.065.022-.172.022-.248V5.161c.011-.667-.205-1.679-.398-2.239 0-.011-.011-.022-.011-.032A12 12 0 0 0 8.824.36L8.781.285a.697.697 0 0 0-.958-.162c-.054.032-.086.075-.129.119L7.608.36a4.74 4.74 0 0 0-.786 3.412 8 8 0 0 0-.775.463c-.043.032-.42.291-.71.56A4.8 4.8 0 0 0 1.87 4.3c-.043.011-.097.021-.14.032-.054.022-.107.043-.151.076a.7.7 0 0 0-.193.958zM8.222 1.07c.366.614.678 1.249.925 1.917q-.743.129-1.453.388a3.9 3.9 0 0 1 .528-2.305M4.658 5.463a7.5 7.5 0 0 0-.893 1.216 11.7 11.7 0 0 1-1.453-1.55 3.83 3.83 0 0 1 2.346.334m13.048-.302a7.7 7.7 0 0 0-2.347-.474 7.6 7.6 0 0 0-3.811.818l-.215.108v3.918c0 .054 0 .258-.032.431a1.54 1.54 0 0 1-.646.98 1.55 1.55 0 0 1-1.152.247 2.6 2.6 0 0 1-.409-.118 748 748 0 0 1-3.402-1.313 9 9 0 0 0-.323-.129 30.6 30.6 0 0 0-3.822 3.832l-.075.086a.698.698 0 0 0 .538 1.098.68.68 0 0 0 .42-.118c.011-.011.022-.022.043-.032 1.313-.947 2.756-1.712 4.284-2.325a.7.7 0 0 1 .818.13.704.704 0 0 1 .054.915l-.237.388a20.3 20.3 0 0 0-1.97 4.306l-.032.129a.65.65 0 0 0 .108.538.71.71 0 0 0 .549.301.66.66 0 0 0 .42-.118c.054-.043.108-.086.151-.14l.043-.065a19 19 0 0 1 1.765-2.153 20.16 20.16 0 0 1 10.797-6.018c.032-.011.065-.011.097-.011.237.011.42.215.409.452a.424.424 0 0 1-.344.398c-3.908.829-10.948 5.469-8.483 12.208.043.108.075.172.129.269a.71.71 0 0 0 .538.301.74.74 0 0 0 .657-.398c.398-.754 1.152-1.593 3.326-2.497 6.061-2.508 7.062-6.093 7.17-8.364v-.129a7.72 7.72 0 0 0-5.016-7.451m-6.083 17.762c-.56-1.669-.506-3.283.151-4.823 1.26 2.035 3.456 2.207 3.456 2.207-2.25.937-3.133 1.863-3.607 2.616"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/klarna.svg�����������������������������������0000664�0000000�0000000�00000000422�14753064456�0025071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.592 2v20H0V2zm11.46 0c0 4.194-1.583 8.105-4.415 11.068l-.278.283L17.702 22h-5.668l-6.893-9.4 1.779-1.332c2.858-2.14 4.535-5.378 4.637-8.924L11.562 2zM21.5 17a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kleinanzeigen.svg����������������������������0000664�0000000�0000000�00000001503�14753064456�0026445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.064 24c-3.234 0-4.816-2.245-5.137-2.71-.955.935-2.396 2.71-4.991 2.71-2.998 0-5.524-2.254-5.524-5.908V5.907C1.412 2.245 3.942 0 6.936 0c2.993 0 5.524 2.385 5.524 5.852a5.5 5.5 0 0 1 1.842-.314c3.083 0 5.524 2.515 5.524 5.538 0 .848-.161 1.602-.513 2.324a5.54 5.54 0 0 1 3.275 5.062c0 3.053-2.478 5.538-5.524 5.538m-3.802-4.048c.795 1.383 2.132 2.202 3.802 2.202a3.69 3.69 0 0 0 3.683-3.692 3.69 3.69 0 0 0-2.518-3.505zM6.936 1.846c-1.832 0-3.683 1.256-3.683 4.061v12.185c0 2.806 1.85 4.062 3.683 4.062 1.456 0 2.26-.736 3.557-2.037l.575-.576c-.297-.886-.45-1.869-.45-2.926V5.908c0-2.806-1.849-4.062-3.682-4.062m5.524 6.031v8.738q.002.744.12 1.409l4.003-4.013c1.163-1.165 1.402-2.016 1.402-2.934 0-1.962-1.573-3.692-3.683-3.692a3.64 3.64 0 0 0-1.842.493z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/klm.svg��������������������������������������0000664�0000000�0000000�00000001442�14753064456�0024407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.75 13.034H4.5l-2.25 2.257v-2.257H0v6.018h2.25v-2.257l2.25 2.257h3l-3.375-3.385zm3 0H7.5v6.018h6v-1.518H9.75zm10.5 0-1.125 3.385L18 13.034h-3.75v6.018h2.25v-4.514l1.5 4.514h2.25l1.5-4.514v4.514H24v-6.018zM10.5 9.649c.725 0 1.313-.589 1.313-1.316s-.588-1.317-1.313-1.317-1.312.589-1.312 1.317.587 1.316 1.312 1.316m1.688-1.316c0 .727.588 1.316 1.312 1.316s1.313-.589 1.313-1.316-.588-1.317-1.313-1.317-1.312.589-1.312 1.317m2.999 0c0 .727.588 1.316 1.312 1.316s1.313-.589 1.313-1.316-.588-1.317-1.313-1.317-1.312.589-1.312 1.317m-6.375 0c0-.727-.588-1.317-1.313-1.317s-1.312.589-1.312 1.317.588 1.316 1.313 1.316 1.312-.589 1.312-1.316M7.5 10.025h9v1.505h-9zm4.125-2.821h.75v-.752h.75V5.7h-.75v-.753h-.75V5.7h-.75v.752h.75z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/klook.svg������������������������������������0000664�0000000�0000000�00000001051�14753064456�0024737�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.8 0A4.79 4.79 0 0 0 0 4.8v14.4C0 21.86 2.14 24 4.8 24h14.4c2.66 0 4.8-2.14 4.8-4.8V4.8C24 2.14 21.86 0 19.2 0zM12 3.449zc4.242 0 7.833 1.904 7.833 6.17 0 2.932-3.86 7.815-6.164 10.164-.99 1.008-2.32 1.036-3.338 0-2.303-2.349-6.164-7.232-6.164-10.164 0-4.162 3.476-6.171 7.833-6.171m3.54 2.155-5.05 4.96 5.05 4.956a1.84 1.84 0 0 0 0-2.634v-.001l-2.366-2.323 2.366-2.323a1.84 1.84 0 0 0 0-2.635m-7.349.144v9.772a1.86 1.86 0 0 0 1.868-1.852V7.602a1.86 1.86 0 0 0-1.866-1.854z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/knative.svg����������������������������������0000664�0000000�0000000�00000002132�14753064456�0025262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.14 2.358 4.714 2.27-.915 1.584a.27.27 0 0 0-.032.182l.607 3.441a.26.26 0 0 0 .093.16l2.676 2.245c.048.041.11.064.174.064h1.878l.507 2.22a.5.5 0 0 1-.095.415l-5.237 6.567a.5.5 0 0 1-.383.184h-8.4a.5.5 0 0 1-.383-.184L.107 14.939a.5.5 0 0 1-.095-.415l1.869-8.189a.5.5 0 0 1 .266-.333l7.567-3.644a.49.49 0 0 1 .426 0M7.244 16.626h1.667v-2.429l.64-.784 1.822 3.213h1.965l-2.594-4.273 2.462-3.169h-2.065l-1.689 2.473c-.166.265-.342.53-.508.817h-.033v-3.29H7.244zM19.281 2.352l2.975 1.083q.083.031.128.108l1.583 2.742c.029.05.039.108.029.165l-.55 3.118a.24.24 0 0 1-.083.145l-2.426 2.035a.25.25 0 0 1-.157.058h-3.166a.25.25 0 0 1-.158-.058l-2.425-2.035a.24.24 0 0 1-.084-.145l-.55-3.118a.24.24 0 0 1 .029-.165l1.583-2.742a.25.25 0 0 1 .129-.108l2.975-1.083a.24.24 0 0 1 .168 0m-.71 3.404q-.048-.138-.197-.137h-.487V8.57h.79V6.449q.132-.13.278-.2a.7.7 0 0 1 .312-.072q.223 0 .338.136.114.136.114.382V8.57h.787V6.695q0-.246-.064-.452a1 1 0 0 0-.192-.355.9.9 0 0 0-.313-.232 1.2 1.2 0 0 0-.697-.054 1.2 1.2 0 0 0-.436.203 2 2 0 0 0-.184.157z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/knexdotjs.svg��������������������������������0000664�0000000�0000000�00000010632�14753064456�0025636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 10.288v.126l-.095.249q-.02.052-.071.076l-2.847 1.29a.024.024 0 0 0 0 .044L24 13.444v.638q-.264.444-.722.655-.05.023-.1.002l-2.224-.902q-.05-.02-.1-.004l-.909.283a.086.087 59.4 0 1-.089-.023l-.822-.86q-.066-.067-.082.025-.3 1.698-1.343 3.057a.02.02 0 0 0 .015.03l1.364-.024q.049 0 .072.043l.416.795a.204.207 88 0 0 .104.095l2.142.908a.14.14 0 0 1 .078.086c.139.475.157 1.172-.426 1.334q-.05.014-.097-.004l-2.9-1.094a.028.028 0 0 0-.035.036l1.068 2.845q.019.05.002.1c-.183.563-.846.543-1.312.414a.176.175 86.1 0 1-.113-.1l-.901-2.137q-.023-.053-.074-.08l-.813-.415q-.047-.025-.047-.079l.018-1.148a.04.04 0 0 1 .004-.018q.024-.052.018-.107-.007-.075-.07-.031-1.44 1.026-3.137 1.247a.033.033 0 0 0-.019.056l.957.912q.045.043.027.102l-.263.826a.28.28 0 0 0 .008.19l.867 2.135q.018.043-.002.085-.19.403-.552.645h-.745l-1.3-2.866a.023.022 44.7 0 0-.04 0l-1.31 2.866h-.604q-.436-.246-.652-.7-.024-.05-.003-.1l.881-2.17q.02-.05.003-.101l-.28-.878a.09.09 0 0 1 .026-.098l.916-.861a.032.032 0 0 0-.016-.056q-1.623-.288-2.937-1.216-.051-.036-.05.026l.023 1.225q0 .055-.047.08l-.837.448a.15.149 87.5 0 0-.067.074l-.938 2.213q-.024.058-.084.075c-.488.144-1.19.164-1.376-.434q-.012-.043.003-.084l1.111-2.955q.037-.096-.06-.06l-2.867 1.08q-.057.021-.116.005c-.59-.162-.56-.902-.416-1.375q.018-.056.072-.08l2.208-.935q.055-.024.083-.077l.433-.83a.107.108 14.6 0 1 .098-.057l1.111.038q.091.003.039-.07a6.9 6.9 0 0 1-1.185-2.876.026.026 0 0 0-.044-.014l-.853.9q-.033.033-.078.019l-.904-.28a.19.184 41.8 0 0-.126.005l-2.222.9q-.048.02-.095-.002-.552-.26-.763-.797v-.327l.07-.15a.13.13 0 0 1 .065-.066l2.928-1.327a.023.023 0 0 0 0-.042L.2 10.734q-.051-.024-.074-.076c-.246-.56.232-1.032.696-1.259a.125.127 43.2 0 1 .105-.004l2.227.906q.05.02.103.004l.909-.287a.087.085 58.8 0 1 .086.023l.783.817q.052.056.066-.02.252-1.493 1.136-2.776.035-.05-.027-.05l-1.158.026a.09.089 75.4 0 1-.08-.047l-.416-.798a.273.272 87.6 0 0-.137-.126l-2.168-.918a.116.112 2.4 0 1-.061-.064c-.177-.475-.193-1.2.402-1.395q.045-.015.09.002L5.585 5.78q.085.032.053-.053l-1.122-2.98a.13.13 0 0 1 0-.087c.206-.578.901-.573 1.389-.408a.133.132 88.3 0 1 .077.074l.934 2.21a.16.16 0 0 0 .07.075l.82.43q.049.024.05.079.028.584-.019 1.212-.006.08.058.032 1.21-.894 2.798-1.226.103-.02.027-.093l-.787-.748q-.044-.04-.026-.099l.288-.9q.016-.053-.004-.103L9.285.965q-.02-.05.003-.097c.22-.461.725-.976 1.261-.698q.055.029.081.085l1.282 2.824a.034.035 45.2 0 0 .063 0l1.313-2.9q.025-.056.08-.078c.568-.233 1.028.223 1.257.69q.028.058.004.115l-.906 2.23a.133.13 47.8 0 0-.003.09l.284.903a.106.103 60 0 1-.028.107l-.86.82a.028.029 28.1 0 0 .015.05 6.85 6.85 0 0 1 2.934 1.2q.058.042.057-.03l-.015-1.157q0-.047.041-.067l.827-.428q.058-.03.084-.09l.939-2.22q.02-.05.072-.066c.505-.153 1.192-.163 1.382.421q.014.042-.002.082l-1.094 2.924q-.028.073.045.046l2.961-1.114q.062-.024.125-.002c.577.192.553.888.408 1.377a.123.124 86.7 0 1-.07.078l-2.217.933q-.054.023-.081.075l-.434.832q-.03.059-.095.057l-1.202-.037q-.094-.003-.04.074.895 1.235 1.202 2.844.012.068.06.017l.779-.822q.028-.03.068-.018l.923.289q.053.016.103-.004l2.213-.897q.05-.02.1 0 .624.253.796.885M10.04 9.025c.344-.205.719-.38 1.113-.461a.09.09 0 0 0 .072-.088V7.099q0-.075-.075-.061-1.2.22-2.162.94-.048.034-.006.076l.96.959q.045.045.1.012zm2.707-.469c.425.104.81.263 1.156.493q.058.037.105-.012l1.035-1.034a.032.032 0 0 0-.004-.049q-1.032-.744-2.278-.933-.062-.009-.062.053v1.42a.064.063 7.7 0 0 .048.062m4.302 2.716a5.16 5.16 0 0 0-.9-2.192.055.055 0 0 0-.084-.007l-1.034 1.033q-.043.044-.01.096.314.5.442 1.079.013.06.075.06h1.45q.07 0 .06-.069zm-8.598.011c.089-.402.24-.773.462-1.12q.034-.053-.01-.097l-.966-.967a.03.03 0 0 0-.047.004q-.69.953-.89 2.171a.058.058 0 0 0 .058.067h1.32q.06 0 .073-.058m5.15.785a1.644 1.644 0 0 0-1.643-1.644 1.644 1.644 0 0 0-1.644 1.644 1.644 1.644 0 0 0 1.644 1.643 1.644 1.644 0 0 0 1.644-1.643zm-6.592.807a5.1 5.1 0 0 0 .905 2.168q.037.051.083.007l.932-.933q.047-.048.01-.104-.342-.52-.48-1.136-.014-.062-.08-.062H7.062q-.061 0-.052.06zm9.067 2.246c.5-.66.824-1.425.962-2.248q.01-.059-.05-.059l-1.452.001a.08.08 0 0 0-.078.064q-.129.592-.481 1.144-.02.03.005.056l1.045 1.046q.026.026.049-.004m-3.344 1.958a5.2 5.2 0 0 0 2.247-.885.05.05 0 0 0 .006-.072l-1.011-1.012q-.042-.041-.091-.01-.537.341-1.145.477-.066.014-.066.08v1.371q0 .06.06.05zm-3.68-.9a5.1 5.1 0 0 0 2.131.88q.067.012.067-.055l.001-1.351q0-.064-.063-.078-.61-.132-1.114-.45a.06.06 0 0 0-.07.007l-.958.96q-.048.048.006.087"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/knime.svg������������������������������������0000664�0000000�0000000�00000001072�14753064456�0024726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.445 21.393 11.54-.775.451.775zM7.56 11.113l-5.092 10.28h-.904Zm10.427 2.652-6.43-9.505.452-.775zm2.57 5.216.627.896-10.652.707zM4.655 20.976l-1.143.09 4.709-9.488Zm6.173-14.667.476-.998 5.984 8.782zM19.1 17.364l.847 1.015-8.685 1.413zM6.76 20.532l-1.32.224 3.11-8.162Zm3.406-12.189.472-1.207 5.558 6.732Zm7.403 7.54 1.13 1.016-6.378 1.98zm-8.759 4.08-1.46.448 1.46-6.44zm.8-9.539.363-1.48 4.868 4.477zm-.348 9.402v-7.851l.244-1.085 6.864 3.926.834.758L10.34 19.5zM12.01 1.694 0 22.306h24z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/knip.svg�������������������������������������0000664�0000000�0000000�00000003035�14753064456�0024565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.518 0A4.51 4.51 0 0 0 0 4.518v14.964A4.51 4.51 0 0 0 4.518 24h14.964A4.51 4.51 0 0 0 24 19.482V4.518A4.51 4.51 0 0 0 19.482 0Zm12.965 2.547a3 3 0 0 1 .247.008l-5.589 9.747a1.94 1.94 0 0 1-.708.932c-.304.2-.468.176-.77.283a1.08 1.08 0 0 0-.623.537l-.104.33c-.093.296-.24.591-.02.88.145.189.42.26.783.247.316.064.615.193.877.38.27.2.499.448.676.733.52 1.006.554 2.116-.173 3.394-.8 1.506-1.915 2.029-3.194 2.01-.83-.112-1.399-.493-1.75-1.096-.54-.927-.53-1.927-.18-2.908.26-.66.583-1.294.965-1.893l.987-2.472.096.09 5.173-9.107c.97-1.404 2.08-2.09 3.307-2.095M4.752 7.437c1.47-.003 2.418.576 3.038 1.523.158.293.26.613.3.944a2.3 2.3 0 0 1-.096.957c-.191.309-.265.583-.171.804.142.333.471.35.774.415l.339.073c.13.006.262-.012.387-.052l-.617 1.105-.021-.002.005.028-.05.09-2.56-.351c-.709.037-1.42.005-2.123-.095-1.025-.178-1.903-.67-2.439-1.59-.349-.6-.403-1.287-.085-2.06.615-1.123 1.622-1.827 3.319-1.79M4.72 8.545a3.2 3.2 0 0 0-1.74.528c-1.035.735-.67 1.826.298 2.401a2.56 2.56 0 0 0 1.476.34 3.6 3.6 0 0 0 1.16-.25 1.82 1.82 0 0 0 .971-.837v-.001c.313-.625.04-1.212-.455-1.634-.397-.339-.93-.52-1.586-.545zm18.008 2.591c-.574 1.198-1.756 1.902-3.569 2.062l-6.9.005 1.184-2.023zm-11.712.583a.54.54 0 0 0-.277.072.536.536 0 0 0-.134.819.536.536 0 0 0 .866-.625.54.54 0 0 0-.455-.266m-.746 4.82a1.82 1.82 0 0 0-1.207.43 3.6 3.6 0 0 0-.791.886 2.55 2.55 0 0 0-.433 1.45c.023 1.125.792 1.98 1.943 1.445a3.2 3.2 0 0 0 1.381-1.354c.298-.59.404-1.142.304-1.655-.122-.64-.498-1.165-1.196-1.2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/knowledgebase.svg����������������������������0000664�0000000�0000000�00000001036�14753064456�0026435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.1 5.52V1.5h-.18c-3.36.15-6.15 2.31-7.83 4.02l-.09.09-.09-.09C10.2 3.81 7.44 1.65 4.08 1.5H3.9v4.02H0v6.93c0 1.68.06 3.36.18 4.74a5.57 5.57 0 0 0 5.19 5.1c2.13.12 4.38.21 6.63.21s4.5-.09 6.63-.24a5.57 5.57 0 0 0 5.19-5.1c.12-1.38.18-3.06.18-4.74v-6.9zm0 6.93c0 1.59-.06 3.15-.18 4.41-.09.81-.75 1.47-1.56 1.5a90 90 0 0 1-12.72 0c-.81-.03-1.5-.69-1.56-1.5-.12-1.26-.18-2.85-.18-4.41V5.52c2.82.12 5.64 3.15 6.48 4.32L12 12.09l1.62-2.25c.84-1.2 3.66-4.2 6.48-4.32z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/known.svg������������������������������������0000664�0000000�0000000�00000001240�14753064456�0024754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.387 16.926h.604v1.936h-6.086v-1.936h.904s.333-.072.26-.386l-2.392-3.776-1.893 1.847v1.322c0 .653.324.993.687.993h.844v1.936H5.414v-1.936h.741c.364 0 .688-.34.688-.993V7.992c0-.364-.324-.855-.688-.855h-.741V5.201h5.901v1.936h-.844c-.363 0-.687.491-.687.855v3.83l4.087-4.144a.316.316 0 0 0-.219-.541h-.747V5.201H19v1.936h-.872c-.363 0-.867.176-1.225.525l-3.058 2.985 3.396 5.276c.304.434.772 1.003 1.146 1.003M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12m-1.684 0c0-5.697-4.619-10.316-10.316-10.316S1.684 6.303 1.684 12 6.303 22.316 12 22.316 22.316 17.697 22.316 12"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/koa.svg��������������������������������������0000664�0000000�0000000�00000002146�14753064456�0024400�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 5.587v12.757h1.19v-4.099l.46-.527 3.147 4.626h1.19L2.33 12.97l2.773-3.13h-.17L1.19 14.058v-8.47zm11.039 4.185q-1.785 0-2.96 1.173-1.155 1.175-1.156 3.3 0 2.127 1.122 3.147t2.909 1.02q1.803 0 2.96-1.173 1.173-1.174 1.173-3.3t-1.122-3.147-2.926-1.02m8.896 0a7.3 7.3 0 0 0-3.079.697l.068.12q.392-.222 1.225-.443.85-.238 1.48-.238t1.02.17q.39.153.545.374.152.221.238.46.102.22.068.374c.007.97 0 1.988 0 2.976a9 9 0 0 0-.834-.034q-.459 0-1.003.051-2.195.136-2.841.749-.323.306-.391.561-.069.255-.068.476 0 .204.034.409.289 1.939 2.432 1.939 1.838 0 2.67-1.514v.357q0 .272.392.646.424.443 1.582.443H24v-.136h-.527l-.187-.034q-.204-.018-.409-.273-.186-.271-.187-.765v-5.698q0-.544-.442-1.038c-.498-.557-1.564-.624-2.313-.63zm-8.862.136q1.292 0 2.075.986.783.987.783 3.045 0 2.04-.85 3.198-.852 1.14-2.144 1.14t-2.075-.987-.783-3.028q0-2.058.85-3.198.851-1.155 2.144-1.156m9.491 4.456q.477 0 .936.034v2.058q-.051.58-.783 1.208a2.42 2.42 0 0 1-1.616.613q-1.36 0-1.513-1.803a3 3 0 0 1-.02-.307q0-.748.392-1.173.39-.426 1.684-.579c.314-.038.64-.039.92-.05z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/koc.svg��������������������������������������0000664�0000000�0000000�00000003276�14753064456�0024407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.72 9.887c-1.313-3.731-5.036-3.932-5.414-3.943-1.667-.036-3.511.541-4.917 1.906-.568.506-.97 1.095-1.395 1.719-.426-.636-.828-1.213-1.395-1.719C9.204 6.485 7.36 5.908 5.694 5.944c-.39.011-4.114.211-5.414 3.943-.46 1.33-.354 3.06.331 4.33.686 1.46 2.329 2.66 4.066 2.543 1.253-.035 2.624-.824 3.132-2.107.426-1.141.296-2.377-.685-3.354.024.247.035.6-.213.918-.39.541-1.016.683-1.666.447-.568-.259-.78-.67-.721-1.212.035-.46.413-.812.803-.989.757-.33 1.454-.164 2.14.483 1.123 1.247 1.253 3.13 1.785 4.567.378 1.177.969 2.2 2.28 2.495.154.035.32.059.485.047.166 0 .331-.012.485-.047 1.312-.294 1.903-1.318 2.281-2.495.532-1.436.662-3.32 1.773-4.567.686-.647 1.383-.812 2.14-.483.39.177.756.53.803.989.06.541-.153.953-.72 1.212-.65.236-1.265.094-1.667-.447-.248-.318-.237-.671-.213-.918-.981.977-1.111 2.213-.686 3.354.509 1.283 1.88 2.072 3.133 2.107 1.725.118 3.368-1.07 4.054-2.542.674-1.271.78-3.001.32-4.331m-2.637 4.449c-.792.694-1.844.894-2.695.506-.508-.248-.886-.683-1.004-1.154.72.718 2.02 1.071 3.203-.176 0 0 1.11-1.024.484-2.966-.319-.965-1.489-1.754-2.47-1.86-1.466-.235-2.837.259-3.794 1.589-1.123 1.73-1.265 3.66-2.092 5.59a.73.73 0 0 1-.721.448.73.73 0 0 1-.721-.447c-.816-1.919-.946-3.837-2.08-5.58-.958-1.33-2.341-1.824-3.795-1.588-.98.094-2.163.894-2.47 1.86-.627 1.941.484 2.965.484 2.965 1.194 1.248 2.483.883 3.204.177-.119.47-.485.906-1.005 1.153-.851.389-1.915.177-2.707-.506-1.17-1.153-1.347-2.636-.886-4.001.555-1.66 2.246-2.484 3.581-2.59 1.584-.141 3.77.824 4.645 2.484.201.376.627 1.365.627 1.365h2.222s.426-.989.626-1.365c.875-1.648 3.062-2.613 4.646-2.484 1.335.106 3.026.942 3.581 2.59.485 1.353.307 2.836-.863 3.99"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kodak.svg������������������������������������0000664�0000000�0000000�00000002241�14753064456�0024713�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.496 9.076a.735.735 0 0 0 .84-.844c0-.51-.255-.771-.84-.771s-.835.263-.835.77a.733.733 0 0 0 .835.845m.128 2.126h-.82v1.538h.82c.448 0 .634-.307.634-.81 0-.494-.186-.728-.634-.728M2.406 12.848a1.45 1.45 0 0 1-.346-.753 1.06 1.06 0 0 1 .173-.603l6.739-9.138a.45.45 0 0 0 .077-.282.51.51 0 0 0-.52-.51H1.54A1.56 1.56 0 0 0 0 3.106v17.805a1.53 1.53 0 0 0 1.536 1.526h6.993a.513.513 0 0 0 .52-.505v-.005a.63.63 0 0 0-.096-.32zM20.03 16.01h.928l-.464-1.154zm2.468-14.446h-6.782a2.22 2.22 0 0 0-1.522.716L2.905 11.887c-.1.106-.1.271 0 .377l11.59 9.74c.346.279.776.432 1.22.434h6.763A1.517 1.517 0 0 0 24 20.926V3.11a1.54 1.54 0 0 0-1.502-1.546M19.25 3.306h.643v1.166l1.157-1.166h.896l-1.295 1.272 1.345 1.268h-.918l-1.184-1.162v1.162h-.644zm1.332 3.621c.945 0 1.47.437 1.47 1.299 0 .846-.51 1.367-1.47 1.367s-1.47-.521-1.47-1.367c0-.863.527-1.299 1.472-1.299zm1.392 5c0 .824-.367 1.317-1.272 1.317h-1.447v-2.565h1.447c.905 0 1.272.425 1.272 1.248m-.896 8.703-1.184-1.163v1.163h-.643v-2.54h.643v1.166l1.158-1.166h.855l-1.252 1.272L22 20.63zm.325-3.692-.18-.449h-1.286l-.176.449h-.685l1.1-2.586h.848l1.096 2.586z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kodi.svg�������������������������������������0000664�0000000�0000000�00000002243�14753064456�0024552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.03.047c-.226 0-.452.107-.669.324Q9.979 1.754 8.598 3.139c-.233.233-.455.48-.703.695-.31.267-.405.583-.399.988.02 1.399.008 2.799.008 4.198q-.001 2.18 0 4.36c0 .11.002.223.03.327.087.337.303.393.546.15q1.964-1.966 3.928-3.933l4.449-4.453c.43-.431.43-.905 0-1.336L12.697.37c-.216-.217-.442-.324-.668-.324zm7.224 7.23c-.223 0-.445.104-.65.309L14.82 11.37c-.428.429-.427.895 0 1.322l3.76 3.766c.44.44.908.44 1.346.002 1.215-1.216 2.427-2.433 3.644-3.647.182-.18.353-.364.43-.615v-.33c-.077-.251-.246-.436-.428-.617-1.224-1.22-2.443-2.445-3.666-3.668-.205-.205-.429-.307-.652-.307zM4.18 7.611c-.086.014-.145.094-.207.157L.209 11.572c-.28.284-.278.677.004.96l2.043 2.046q.884.886 1.767 1.772c.169.168.33.139.416-.084.044-.114.062-.242.063-.364q.005-1.925.004-3.851h-.002V8.184q-.002-.127-.022-.252c-.019-.135-.072-.258-.207-.309a.2.2 0 0 0-.095-.012m7.908 6.838c-.224 0-.447.106-.656.315L7.66 18.537c-.433.434-.433.899.002 1.334q1.823 1.822 3.643 3.649c.18.18.361.354.611.433h.33c.244-.069.423-.226.598-.402 1.222-1.23 2.45-2.453 3.676-3.68.43-.43.427-.905-.004-1.338l-3.772-3.773c-.208-.208-.432-.311-.656-.31z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/koenigsegg.svg�������������������������������0000664�0000000�0000000�00000004232�14753064456�0025746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.64 2.278A27 27 0 0 0 11.997 0 27 27 0 0 0 7.36 2.278C4.848 3.808 3.357 5.27 3.357 5.27a32 32 0 0 0 1.03 7.299c.827 3.153 2.921 8.043 7.61 11.43 4.689-3.387 6.784-8.277 7.61-11.43a32 32 0 0 0 1.036-7.3s-1.491-1.462-4.003-2.992m2.724 10.228a22 22 0 0 1-2.33 5.562 19 19 0 0 1-5.037 5.621 19 19 0 0 1-5.037-5.621 22 22 0 0 1-2.33-5.562 32.5 32.5 0 0 1-1.027-7.13 25 25 0 0 1 3.883-2.884A27.4 27.4 0 0 1 11.997.265a27.4 27.4 0 0 1 4.51 2.225 25 25 0 0 1 3.883 2.887 32.6 32.6 0 0 1-1.026 7.13m-2.922-6.363c-2.18-.82-3.682-1.24-4.447-1.24-.764 0-2.266.424-4.446 1.24-1.255.473-3.058 1.24-3.058 1.24a39 39 0 0 0 .893 4.925c.75 2.857 2.507 7.188 6.61 10.406 4.108-3.218 5.862-7.548 6.611-10.406a39 39 0 0 0 .894-4.925s-1.803-.766-3.057-1.24zm1.84 6.08c-.76 2.9-2.468 6.974-6.286 10.063-3.824-3.089-5.523-7.165-6.286-10.062a38 38 0 0 1-.85-4.632 92 92 0 0 1 2.813-1.136C10.34 5.451 11.497 5.237 12 5.237s1.66.212 4.327 1.219a93 93 0 0 1 2.813 1.136 38 38 0 0 1-.86 4.63zm-3.32 6.243q.329-.471.62-.945l-1.417.564zm1.326-2.198a20 20 0 0 0 .645-1.395l-2.021.832zm1.016-2.347q.256-.717.442-1.372l-2.235.763zm.692-2.349c.112-.47.212-.94.298-1.393l-2.408.744zm-1.735-3.04 2.217.62c.08-.489.141-.932.19-1.294zm-1.282-2.113c-1.871-.647-2.663-.758-2.983-.758s-1.112.11-2.983.758l2.983.917zm-2.983 12.868-1.616.88a17 17 0 0 0 1.616 1.561 17 17 0 0 0 1.616-1.561zm-3.885-8.369 3.882 1.192 3.885-1.192-3.885-1.192zm.37 2.392 3.512 1.192 3.511-1.192-3.51-1.192zm-.748-4.78 4.26 1.19 4.262-1.19-4.262-1.192zm2.808-5.134-.244.242a1.096 1.096 0 0 0 1.528.02v.632h.35v-.638a1.096 1.096 0 0 0 1.528-.02l-.253-.236a.753.753 0 0 1-1.284-.53.75.75 0 0 1 .464-.692.75.75 0 0 1 .82.163l.244-.243a1.1 1.1 0 0 0-1.529-.02v-.63h-.343v.63a1.1 1.1 0 0 0-1.527.02l.243.242a.753.753 0 0 1 1.284.53.75.75 0 0 1-.464.693.75.75 0 0 1-.82-.163ZM8.403 17.517q.289.475.619.945l.79-.377zm-1.344-2.644q.284.686.644 1.395l1.377-.565ZM6.24 12.55q.186.656.442 1.371l1.793-.608Zm-.549-2.369c.087.452.186.922.297 1.392l2.117-.65zm-.371-2.325c.046.36.11.804.189 1.293l2.218-.617ZM9.08 15.7l2.914 1.19 2.914-1.19-2.914-1.194Zm.742 2.387 2.175 1.192 2.176-1.192-2.176-1.193z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kofax.svg������������������������������������0000664�0000000�0000000�00000001261�14753064456�0024733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m1.38 12.94.576-.5 1.273 1.698h1.835l-2.001-2.593 1.85-1.683h-1.82L1.38 11.545V9.862H0v4.276h1.38zm5.973-3.214c-1.455 0-2.683.5-2.683 2.274s1.228 2.274 2.683 2.274 2.684-.5 2.684-2.274-1.228-2.274-2.684-2.274m0 3.593c-.728 0-1.228-.41-1.228-1.319 0-.894.5-1.319 1.228-1.319.743 0 1.228.425 1.228 1.32 0 .894-.5 1.318-1.228 1.318m4.442.819v-1.653h2.365v-.925h-2.365v-.742h2.547v-.956h-3.926v4.276zM22.21 11.91l1.593-2.063h-1.638L21.407 11l-.758-1.153h-1.637l1.592 2.062-1.607 2.001-1.668-4.048h-1.683l-1.759 4.276h1.471l.243-.698h1.804l.242.698h2.896l.88-1.289.879 1.289H24zm-6.276.651.576-1.622h.015l.577 1.622z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kofi.svg�������������������������������������0000664�0000000�0000000�00000002077�14753064456�0024561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.351 2.715c-2.7 0-4.986.025-6.83.26C2.078 3.285 0 5.154 0 8.61c0 3.506.182 6.13 1.585 8.493 1.584 2.701 4.233 4.182 7.662 4.182h.83c4.209 0 6.494-2.234 7.637-4a9.5 9.5 0 0 0 1.091-2.338C21.792 14.688 24 12.22 24 9.208v-.415c0-3.247-2.13-5.507-5.792-5.87-1.558-.156-2.65-.208-6.857-.208m0 1.947c4.208 0 5.09.052 6.571.182 2.624.311 4.13 1.584 4.13 4v.39c0 2.156-1.792 3.844-3.87 3.844h-.935l-.156.649c-.208 1.013-.597 1.818-1.039 2.546-.909 1.428-2.545 3.064-5.922 3.064h-.805c-2.571 0-4.831-.883-6.078-3.195-1.09-2-1.298-4.155-1.298-7.506 0-2.181.857-3.402 3.012-3.714 1.533-.233 3.559-.26 6.39-.26m6.547 2.287c-.416 0-.65.234-.65.546v2.935c0 .311.234.545.65.545 1.324 0 2.051-.754 2.051-2s-.727-2.026-2.052-2.026m-10.39.182c-1.818 0-3.013 1.48-3.013 3.142 0 1.533.858 2.857 1.949 3.897.727.701 1.87 1.429 2.649 1.896a1.47 1.47 0 0 0 1.507 0c.78-.467 1.922-1.195 2.623-1.896 1.117-1.039 1.974-2.364 1.974-3.897 0-1.662-1.247-3.142-3.039-3.142-1.065 0-1.792.545-2.338 1.298-.493-.753-1.246-1.298-2.312-1.298"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/komoot.svg�����������������������������������0000664�0000000�0000000�00000000634�14753064456�0025136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.8 14.829 2.2-3.43 2.2 3.43 5.962 5.962A11.95 11.95 0 0 1 12 24c-3.043 0-5.935-1.14-8.162-3.209zM0 12C0 5.385 5.385 0 12 0c6.62 0 12 5.385 12 12 0 2.663-.855 5.175-2.469 7.284l-6.018-6.018c.15-.412.226-.839.226-1.27A3.743 3.743 0 0 0 12 8.257a3.743 3.743 0 0 0-3.739 3.739c0 .431.075.858.226 1.27l-6.018 6.018A11.87 11.87 0 0 1 0 12"/></svg>����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/konami.svg�����������������������������������0000664�0000000�0000000�00000003223�14753064456�0025101�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.167 12.562.59-1.298a2 2 0 0 0 .062-.158h.012c.013.04.037.095.061.158l.575 1.298zm1.887 1.325h1.036l-1.635-3.537a.4.4 0 0 0-.359-.233h-.717c-.041 0-.041.04-.012.055.085.044.146.19.081.325l-1.582 3.39h.702l.39-.87h1.713zm-4.089-3.77v2.152c0 .107.004.174.008.269h-.008a6 6 0 0 0-.273-.348l-1.618-1.871c-.127-.147-.229-.202-.461-.202H8.79c-.037 0-.041.04-.013.055.123.056.22.123.22.345v3.37h.616v-2.425c0-.13-.004-.23-.008-.34h.008c.114.154.27.356.396.502l1.944 2.263h.322a.305.305 0 0 0 .306-.305v-3.465zm11.733 0h-.856c-.04 0-.045.04-.016.055.126.056.224.123.224.345v3.37H24v-3.465a.3.304 0 0 0-.302-.305m-1.386 3.77-.562-3.442a.4.4 0 0 0-.384-.328h-.53l-.921 2.144a2 2 0 0 0-.09.23h-.008a2 2 0 0 0-.081-.218l-.816-1.91a.4.4 0 0 0-.367-.246h-.807c-.04 0-.045.04-.016.055.11.048.192.131.155.34l-.55 3.375h.582l.367-2.382c.017-.118.041-.268.045-.344h.004c.037.1.086.218.139.34l1.015 2.386h.302l1.027-2.429c.057-.142.098-.245.126-.324h.004c.013.095.029.237.053.38l.38 2.373zm-16.205-.25c-.758 0-1.19-.739-1.19-1.59 0-.973.432-1.685 1.19-1.685s1.19.744 1.19 1.59c0 1.001-.432 1.686-1.19 1.686m0-3.66c-1.272 0-2.21.887-2.21 2.022 0 1.14.865 2.022 2.21 2.022 1.272 0 2.206-.883 2.206-2.022 0-1.135-.86-2.021-2.206-2.021M4.33 13.85c-.327-.07-.58-.225-.856-.506-.302-.309-1.387-1.586-1.387-1.586l1.729-1.642h-.934L1.305 11.66c-.07.067-.11.11-.147.154H1.15c.004-.051.004-.107.004-.158v-1.234a.3.304 0 0 0-.302-.305h-.82c-.036 0-.044.04-.012.055.123.056.22.123.22.345v3.37h.914V12.15c0-.047 0-.079-.004-.13h.008c.032.051.09.11.147.182 0 0 .962 1.131 1.064 1.238.407.427.978.578 1.957.483.053-.004.053-.06.004-.072"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kong.svg�������������������������������������0000664�0000000�0000000�00000000626�14753064456�0024565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.88 18.96h4.405l2.286 2.876-.393.979h-5.69l.139-.979-1.341-2.117zm3.152-12.632 2.36-.004L24 18.97l-.824 3.845h-4.547l.283-1.083L9 9.912zm4.17-5.144 4.932 3.876-.632.651.855 1.191v1.273l-2.458 2.004-4.135-4.884h-2.407l.969-1.777zM4.852 13.597l3.44-2.989 4.565 5.494-1.296 2.012h-4.21l-2.912 3.822-.665.879H0v-4.689l3.517-4.529z"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kongregate.svg�������������������������������0000664�0000000�0000000�00000000614�14753064456�0025752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.667 0A2.667 2.667 0 0 0 0 2.667v18.666A2.667 2.667 0 0 0 2.667 24h18.666A2.667 2.667 0 0 0 24 21.333V2.667A2.667 2.667 0 0 0 21.333 0ZM5.6 5.333h2.667v5.334H13.6v2.666H8.267v5.334H5.6Zm8 8h1.678a1.6 1.6 0 0 1 1.43.885L17.6 16h1.333v2.667h-2.666zm0-2.666 2.667-5.334h2.666V8H17.6l-.891 1.782a1.6 1.6 0 0 1-1.431.885z"/></svg>��������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/konva.svg������������������������������������0000664�0000000�0000000�00000000472�14753064456�0024744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m1.391 18.541-.239-3.76-2.391-1.608.152 5.129-4.325.152-.173-13.409L10.5 4.98l.087 5.346 2.217-1.608.109-3.781 4.412.283-.348 4.586-2.608 1.608 2.673 1.174.913 5.694z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kotlin.svg�����������������������������������0000664�0000000�0000000�00000000142�14753064456�0025120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 24H0V0h24L12 12Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/koyeb.svg������������������������������������0000664�0000000�0000000�00000000435�14753064456�0024736�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 12.822V7.044L11.985.115 24 7.037v5.77L11.992 5.892Zm11.985 1.114L1.92 19.759 0 18.645v-3.557l11.985-6.93L24 15.089v3.542l-1.92 1.13Zm-3.028 9.949L3.95 21.004l8.036-4.656 8.066 4.656-5.009 2.88-3.05-1.759Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/krita.svg������������������������������������0000664�0000000�0000000�00000002072�14753064456�0024736�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.652.76a.63.63 0 0 0-.5.246c-.352.448-.035.898.362 1.262.206.189 1.77 1.794 3.428 3.527a11 11 0 0 1 1.815-1.983C3.667 2.515 1.694 1.266 1.461 1.1 1.201.914.917.762.652.76m5.105 3.052c1.848 1.148 3.786 2.332 4.693 2.84 1.469.821 3.758 2.684 4.092 4.434.535.466 2.182 1.916 2.596 2.413.698-.211 1.518.133 2.06 1.12.866 1.583.227 3.747-1.968 4.988a5 5 0 0 1-.296.267l.296-.267c1.14-1.468-.714-2.44-1.175-3.864a2.1 2.1 0 0 1-.11-.78c-.533-.282-2.11-1.452-2.795-1.965-1.801.16-4.207-1.773-5.35-3.08-.7-.802-2.32-2.517-3.858-4.123a11.05 11.05 0 0 0-2.046 6.393A11.052 11.052 0 1 0 12.948 1.136c-2.64.004-5.19.954-7.19 2.676zm8.71 7.552c-.515.126-.968.831-1.118 1.306-.038.115-.04.303.066.342.802.592 1.556 1.168 2.4 1.7.162-.393.746-.963 1.096-1.2zm-11.53 1.639c.812 1.898 5.798 7.17 12.06 2.695a2.1 2.1 0 0 0 .114.715c.46 1.42 2.36 2.427 1.238 3.89-2.135 1.364-5 1.201-6.989.528-3.558-1.204-5.914-4.332-6.424-7.828zm13.782.7a1 1 0 0 0-.065.049q-.006.006-.011.008.005-.006.01-.008c.024-.015.044-.034.066-.048z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ktm.svg��������������������������������������0000664�0000000�0000000�00000000537�14753064456�0024423�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 15.735h3.354l.843-2.06 1.55 2.06h7.225l2.234-2.081-.372 2.081h2.83L20 13.675l-.32 2.06h3.052L24 9.99h-3.068l-2.486 2.191.48-2.19h-2.942l-3.209 3.216 1.342-3.938h4.907l.225-1.003H6.381l-.378 1.003h4.732l-1.994 5.054-1.572-2.066L9.886 9.99H7.612l-2.787 2.23.938-2.23H2.44z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ktor.svg�������������������������������������0000664�0000000�0000000�00000000160�14753064456�0024577�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 0 0 8l8 8V8h8zm8 8v8H8l8 8 8-8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kuaishou.svg���������������������������������0000664�0000000�0000000�00000002076�14753064456�0025460�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.315 12.264c2.33 0 4.218 1.88 4.218 4.2V19.8c0 2.32-1.888 4.2-4.218 4.2h-6.202a4.22 4.22 0 0 1-4.023-2.938l-3.676 1.833a2.04 2.04 0 0 1-2.731-.903 2 2 0 0 1-.216-.907v-5.94a2.03 2.03 0 0 1 2.035-2.024 2.04 2.04 0 0 1 .919.218l3.673 1.85a4.22 4.22 0 0 1 4.02-2.925zm-.062 2.162h-6.078c-1.153 0-2.09.921-2.108 2.065v3.247c0 1.148.925 2.081 2.073 2.1h6.113c1.153 0 2.09-.922 2.109-2.065v-3.247a2.104 2.104 0 0 0-2.074-2.1zM4.18 15.72a.554.554 0 0 0-.555.542v3.734a.556.556 0 0 0 .798.496l.01-.004 3.463-1.756V17.51l-3.467-1.73a.56.56 0 0 0-.249-.06M9.28 0a5.67 5.67 0 0 1 4.98 2.965 4.92 4.92 0 0 1 3.36-1.317c2.714 0 4.913 2.177 4.913 4.863s-2.2 4.863-4.912 4.863a4.92 4.92 0 0 1-3.996-2.034 5.65 5.65 0 0 1-4.345 2.034c-3.131 0-5.67-2.546-5.67-5.687S6.149 0 9.28 0m8.34 3.926c-1.441 0-2.61 1.157-2.61 2.585s1.169 2.585 2.61 2.585c1.443 0 2.612-1.157 2.612-2.585s-1.169-2.585-2.611-2.585zM9.28 2.287a3.395 3.395 0 0 0-3.39 3.4c0 1.877 1.518 3.4 3.39 3.4a3.395 3.395 0 0 0 3.39-3.4c0-1.878-1.518-3.4-3.39-3.4"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kubernetes.svg�������������������������������0000664�0000000�0000000�00000006473�14753064456�0026004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.204 14.35.007.01-.999 2.413a5.17 5.17 0 0 1-2.075-2.597l2.578-.437.004.005a.44.44 0 0 1 .484.606zm-.833-2.129a.44.44 0 0 0 .173-.756l.002-.011L7.585 9.7a5.14 5.14 0 0 0-.73 3.255l2.514-.725zm1.145-1.98a.44.44 0 0 0 .699-.337l.01-.005.15-2.62a5.14 5.14 0 0 0-3.01 1.442l2.147 1.523zm.76 2.75.723.349.722-.347.18-.78-.5-.623h-.804l-.5.623.179.779zm1.5-3.095a.44.44 0 0 0 .7.336l.008.003 2.134-1.513a5.2 5.2 0 0 0-2.992-1.442l.148 2.615zm10.876 5.97-5.773 7.181a1.6 1.6 0 0 1-1.248.594l-9.261.003a1.6 1.6 0 0 1-1.247-.596l-5.776-7.18a1.58 1.58 0 0 1-.307-1.34L2.1 5.573c.108-.47.425-.864.863-1.073L11.305.513a1.6 1.6 0 0 1 1.385 0l8.345 3.985c.438.209.755.604.863 1.073l2.062 8.955c.108.47-.005.963-.308 1.34m-3.289-2.057c-.042-.01-.103-.026-.145-.034-.174-.033-.315-.025-.479-.038-.35-.037-.638-.067-.895-.148-.105-.04-.18-.165-.216-.216l-.201-.059a6.5 6.5 0 0 0-.105-2.332 6.5 6.5 0 0 0-.936-2.163c.052-.047.15-.133.177-.159.008-.09.001-.183.094-.282.197-.185.444-.338.743-.522.142-.084.273-.137.415-.242.032-.024.076-.062.11-.089.24-.191.295-.52.123-.736s-.506-.236-.745-.045c-.034.027-.08.062-.111.088-.134.116-.217.23-.33.35-.246.25-.45.458-.673.609-.097.056-.239.037-.303.033l-.19.135a6.55 6.55 0 0 0-4.146-2.003l-.012-.223c-.065-.062-.143-.115-.163-.25-.022-.268.015-.557.057-.905.023-.163.061-.298.068-.475.001-.04-.001-.099-.001-.142 0-.306-.224-.555-.5-.555-.275 0-.499.249-.499.555l.001.014c0 .041-.002.092 0 .128.006.177.044.312.067.475.042.348.078.637.056.906a.55.55 0 0 1-.162.258l-.012.211a6.42 6.42 0 0 0-4.166 2.003l-.18-.128c-.09.012-.18.04-.297-.029-.223-.15-.427-.358-.673-.608-.113-.12-.195-.234-.329-.349l-.111-.088a.6.6 0 0 0-.348-.132.48.48 0 0 0-.398.176c-.172.216-.117.546.123.737l.007.005.104.083c.142.105.272.159.414.242.299.185.546.338.743.522.076.082.09.226.1.288l.16.143a6.46 6.46 0 0 0-1.02 4.506l-.208.06c-.055.072-.133.184-.215.217-.257.081-.546.11-.895.147-.164.014-.305.006-.48.039-.037.007-.09.02-.133.03l-.004.002-.007.002c-.295.071-.484.342-.423.608.061.267.349.429.645.365l.007-.001.01-.003.129-.029c.17-.046.294-.113.448-.172.33-.118.604-.217.87-.256.112-.009.23.069.288.101l.217-.037a6.5 6.5 0 0 0 2.88 3.596l-.09.218c.033.084.069.199.044.282-.097.252-.263.517-.452.813-.091.136-.185.242-.268.399-.02.037-.045.095-.064.134-.128.275-.034.591.213.71.248.12.556-.007.69-.282v-.002c.02-.039.046-.09.062-.127.07-.162.094-.301.144-.458.132-.332.205-.68.387-.897.05-.06.13-.082.215-.105l.113-.205a6.45 6.45 0 0 0 4.609.012l.106.192c.086.028.18.042.256.155.136.232.229.507.342.84.05.156.074.295.145.457.016.037.043.09.062.129.133.276.442.402.69.282.247-.118.341-.435.213-.71-.02-.039-.045-.096-.065-.134-.083-.156-.177-.261-.268-.398-.19-.296-.346-.541-.443-.793-.04-.13.007-.21.038-.294-.018-.022-.059-.144-.083-.202a6.5 6.5 0 0 0 2.88-3.622c.064.01.176.03.213.038.075-.05.144-.114.28-.104.266.039.54.138.87.256.154.06.277.128.448.173.036.01.088.019.13.028l.009.003.007.001c.297.064.584-.098.645-.365.06-.266-.128-.537-.423-.608M16.4 9.701l-1.95 1.746v.005a.44.44 0 0 0 .173.757l.003.01 2.526.728a5.2 5.2 0 0 0-.108-1.674A5.2 5.2 0 0 0 16.4 9.7zm-4.013 5.325a.44.44 0 0 0-.404-.232.44.44 0 0 0-.372.233h-.002l-1.268 2.292a5.16 5.16 0 0 0 3.326.003l-1.27-2.296zm1.888-1.293a.44.44 0 0 0-.27.036.44.44 0 0 0-.214.572l-.003.004 1.01 2.438a5.15 5.15 0 0 0 2.081-2.615l-2.6-.44z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kubuntu.svg����������������������������������0000664�0000000�0000000�00000003552�14753064456�0025325�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.257 14.292a.21.21 0 0 1 .11.237l-.577 1.53a.206.206 0 0 1-.203.155l-2.337-.229c-.063.001-.162-.008-.278.126-.017.02-.747.933-.978 1.183q-.117.106-.088.281l.552 2.196a.206.206 0 0 1-.098.232l-1.513.89a.206.206 0 0 1-.255-.042l-1.55-1.705c-.051-.056-.155-.1-.227-.076l-1.645.24c-.08.01-.126.063-.16.116l-.994 2.079a.206.206 0 0 1-.235.089l-1.669-.395a.21.21 0 0 1-.146-.182.2.2 0 0 1 .01-.082l.882-3.244a.22.22 0 0 1 .283-.137h.003a5.84 5.84 0 0 0 2.717.217 5.84 5.84 0 0 0 4.756-4.38l.01-.04c.028-.12.177-.183.297-.155 0 0 2.868.974 3.294 1.082a.2.2 0 0 1 .039.014zM5.539 4.99a.2.2 0 0 1 .066.049l2.392 2.357a.22.22 0 0 1-.019.313v.004a5.84 5.84 0 0 0-1.519 2.263 5.84 5.84 0 0 0 1.494 6.29l.036.04c.09.082.067.233-.015.324 0 0-2.245 2.024-2.547 2.342a.206.206 0 0 1-.293.007l-1.052-1.25a.206.206 0 0 1-.036-.253l1.335-1.926c.03-.055.087-.137.027-.303-.01-.026-.449-1.108-.554-1.432q-.036-.155-.202-.214l-2.18-.594a.206.206 0 0 1-.153-.199l-.037-1.755a.21.21 0 0 1 .162-.203l2.238-.516c.074-.017.162-.086.177-.16l.596-1.552c.03-.076.007-.142-.023-.197L4.111 6.54a.206.206 0 0 1 .037-.25l1.16-1.262a.21.21 0 0 1 .231-.038zm10.49-1.747.032.015 1.538.845a.21.21 0 0 1 .095.241l-.68 2.198c-.02.073-.005.184.052.234l1.046 1.292c.05.064.119.077.182.079l2.3-.203a.206.206 0 0 1 .196.156l.514 1.636a.21.21 0 0 1-.082.22.2.2 0 0 1-.076.032l-3.244.895a.22.22 0 0 1-.262-.173l-.002-.003a5.84 5.84 0 0 0-1.202-2.446 5.84 5.84 0 0 0-6.194-1.851l-.04.012c-.117.037-.248-.06-.285-.177 0 0-.624-2.958-.748-3.378a.206.206 0 0 1 .14-.257l1.61-.286a.206.206 0 0 1 .236.096l.993 2.12c.033.053.076.144.25.174.027.005 1.183.166 1.517.237q.151.046.286-.068l1.61-1.592a.21.21 0 0 1 .219-.048M16.022.696a12 12 0 0 0-8.227.067C1.589 3.086-1.558 9.999.764 16.204c2.324 6.205 9.237 9.353 15.442 7.03s9.352-9.237 7.03-15.442A12 12 0 0 0 16.02.696"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kucoin.svg�����������������������������������0000664�0000000�0000000�00000001015�14753064456�0025110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.928 11.996 7.122 7.122 4.49-4.49a2.004 2.004 0 0 1 2.865 0 2.004 2.004 0 0 1 0 2.865l-5.918 5.918a2.06 2.06 0 0 1-2.883 0l-8.541-8.542v5.07a2.034 2.034 0 1 1-4.07 0V4.043a2.034 2.034 0 1 1 4.07 0v5.088L13.604.589a2.06 2.06 0 0 1 2.883 0l5.918 5.918c.785.803.785 2.088 0 2.865-.804.785-2.089.785-2.865 0l-4.49-4.49zM15.05 9.96a2.04 2.04 0 0 0-2.053 2.035c0 1.133.902 2.052 2.035 2.052a2.04 2.04 0 0 0 2.053-2.035v-.018A2.07 2.07 0 0 0 15.05 9.96"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kueski.svg�����������������������������������0000664�0000000�0000000�00000002314�14753064456�0025116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.403 7.989h-4.142c.029-1.022.506-1.33 1.48-1.95l2.294-1.47a2.16 2.16 0 0 0 1.048-1.776V.609c0-.62-.45-.787-1.038-.407l-3.043 1.962c-1.088.706-1.72 1.493-2.007 2.463-.194-1.02-.982-1.976-1.977-2.478L9.007.643C8.416.357 7.966.43 7.96 1.046L7.954 3.23a1.88 1.88 0 0 0 1.038 1.668l2.263 1.12c.933.47 1.47.648 1.491 1.97H4.592a.67.67 0 0 0-.674.667v2.665a.68.68 0 0 0 .2.472.67.67 0 0 0 .474.193h14.811a.67.67 0 0 0 .678-.665V8.655a.66.66 0 0 0-.2-.474.67.67 0 0 0-.478-.192m0 0h-4.142c.029-1.022.506-1.33 1.48-1.95l2.294-1.47a2.16 2.16 0 0 0 1.048-1.776V.609c0-.62-.45-.787-1.038-.407l-3.043 1.962c-1.088.706-1.72 1.493-2.007 2.463-.194-1.02-.982-1.976-1.977-2.478L9.007.643C8.416.357 7.966.43 7.96 1.046L7.954 3.23a1.88 1.88 0 0 0 1.038 1.668l2.263 1.12c.933.47 1.47.648 1.491 1.97H4.592a.67.67 0 0 0-.674.667v2.665a.68.68 0 0 0 .2.472.67.67 0 0 0 .474.193h14.811a.67.67 0 0 0 .678-.665V8.655a.66.66 0 0 0-.2-.474.67.67 0 0 0-.478-.192m-.007 5.903c0 .343-.657 6.288-.968 9.195-.09.857-.955.913-1.188.913H7.244c-1.04 0-1.411-.456-1.512-1-.106-.572-.658-6.161-.934-8.108l-.096-.967c0-.482.339-.896.81-.896h13.021a.87.87 0 0 1 .8.537.9.9 0 0 1 .063.332z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kuma.svg�������������������������������������0000664�0000000�0000000�00000001633�14753064456�0024563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.02 0c-1.118 0-1.935.362-2.474.946A.19.19 0 0 1 16.35 1a17 17 0 0 0-2.634-.623.184.184 0 0 0-.205.158.2.2 0 0 0 .003.07c.186.699 1.305 5.133 2.205 8.51.544 2.043-.866 4.05-2.98 4.044h-1.31c-2.136 0-3.433-2.014-2.94-4.022.83-3.393 1.968-7.792 2.152-8.517a.183.183 0 0 0-.13-.226.2.2 0 0 0-.07-.005 14.4 14.4 0 0 0-3.048.698.19.19 0 0 1-.208-.056C6.646.398 5.806.003 4.643.003c-2.254 0-3.287 1.473-3.287 3.29 0 .952.905 2.24 1.766 3.253a.19.19 0 0 1 .034.18l-1.468 4.259v.011c-.038.148-.604 2.662 3.699 6.661 1.286 1.2 5.77 5.52 6.576 6.293a.18.18 0 0 0 .251 0l6.774-6.293c4.648-4.334 3.54-6.672 3.54-6.672L20.882 6.27a.18.18 0 0 1 .028-.175c.733-.925 1.4-1.991 1.4-2.808C22.31 1.473 21.274 0 19.02 0m-8.025 7.132a.525.525 0 0 0-.527.524l.217 2.157v.003a.525.525 0 0 0 .526.524h1.755a.525.525 0 0 0 .524-.53l.208-2.154a.525.525 0 0 0-.526-.524z"/></svg>�����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kununu.svg�����������������������������������0000664�0000000�0000000�00000002574�14753064456�0025160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.686 17.759a3.26 3.26 0 0 1-2.344-1.004 3.49 3.49 0 0 1-.971-2.422l.015-4.668a1.08 1.08 0 0 0-.302-.751 1.01 1.01 0 0 0-.728-.311c-.272 0-.534.112-.727.311-.192.2-.301.47-.3.752l-.015 4.669c0 .908-.349 1.78-.971 2.422a3.26 3.26 0 0 1-2.344 1.002 3.26 3.26 0 0 1-2.343-1.004 3.48 3.48 0 0 1-.97-2.422L8.7 9.665c0-.282-.109-.552-.302-.752a1.007 1.007 0 0 0-1.454.001c-.193.2-.301.47-.301.752l-.014 4.669a3.5 3.5 0 0 1-.56 1.902 3.34 3.34 0 0 1-1.487 1.26 3.2 3.2 0 0 1-1.914.195 3.28 3.28 0 0 1-1.696-.937 3.4 3.4 0 0 1-.721-1.111A3.5 3.5 0 0 1 0 14.333v-3.707c0-.313.121-.613.335-.835s.505-.346.808-.346.594.125.808.346a1.2 1.2 0 0 1 .335.835v3.707c0 .282.108.552.301.751.193.2.455.312.728.312s.534-.112.727-.312c.193-.199.301-.469.301-.751l.015-4.669c0-.908.349-1.779.971-2.422A3.26 3.26 0 0 1 7.673 6.24c.879 0 1.722.361 2.343 1.004s.97 1.514.97 2.423l-.014 4.667c0 .282.109.552.302.752s.454.311.727.311.534-.113.727-.312c.193-.2.301-.47.301-.752l.014-4.668c.001-.909.35-1.78.972-2.422a3.26 3.26 0 0 1 2.344-1.003c.879 0 1.721.362 2.343 1.004.621.643.97 1.514.97 2.423l-.014 4.668c0 .282.108.552.301.751.194.199.455.311.728.311s.534-.112.727-.312.301-.47.301-.752v-3.706c0-.313.12-.613.334-.835s.505-.346.809-.346c.303 0 .593.124.808.346.214.222.334.522.334.835v3.706c0 .908-.349 1.78-.97 2.422a3.26 3.26 0 0 1-2.344 1.004"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kuula.svg������������������������������������0000664�0000000�0000000�00000000502�14753064456�0024741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.388 0 0 5.388 0 12s5.388 12 12 12 12-5.388 12-12S18.612 0 12 0m0 2.547A9.433 9.433 0 0 1 21.453 12 9.433 9.433 0 0 1 12 21.453 9.433 9.433 0 0 1 2.547 12 9.433 9.433 0 0 1 12 2.547m-.606 5.366 4.372-.693 2.01 3.944-3.13 3.13-3.944-2.01z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kx.svg���������������������������������������0000664�0000000�0000000�00000000421�14753064456�0024242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 5.873h3.59v12.254H0zm11.746 0L7.65 12l4.097 6.127H7.65L3.59 12l4.06-6.127zm12.254 0L19.903 12 24 18.127h-4.097l-2.03-3.045-2.03 3.045h-4.097L15.843 12l-4.097-6.127h4.097l2.03 3.082 2.03-3.082z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/kyocera.svg����������������������������������0000664�0000000�0000000�00000000413�14753064456�0025256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.677 4.645 2.323 12V4.645zm-7.354 14.71h7.355L2.323 12zm7.354 0L17.032 12 9.677 4.645zM21.677 0h-7.355L9.677 4.645h7.355V12l4.645-4.645zm-12 19.355L14.323 24h7.355v-7.355L17.032 12v7.355z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/labview.svg����������������������������������0000664�0000000�0000000�00000004246�14753064456�0025262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.176 4.469a.817.817 0 0 0-.768.816v7.055a.816.816 0 0 0 1.182.73l7.058-3.527a.818.818 0 0 0 0-1.463L9.59 4.553a.8.8 0 0 0-.414-.084m1.918 3.107h.638v.916h.916v.639h-.916v.918h-.638V9.13h-.918v-.639h.918zm-4.752 7.51v.367h.262c.086 0 .136.05.136.137v3.869h.41v-.273a3 3 0 0 0-.011-.256h.011s.281.603 1.028.603c.82 0 1.41-.646 1.41-1.635 0-.97-.522-1.642-1.361-1.642-.802 0-1.065.598-1.065.598H7.15s.012-.113.012-.256v-1.131c0-.267-.112-.381-.379-.381zm2.855 0v.387h.063c.118 0 .18.018.224.136l1.436 3.85h.467l1.437-3.85c.044-.118.105-.136.223-.136h.834v3.601h-.41v.385h1.25v-.385h-.418v-3.601h.418v-.387h-1.805c-.31 0-.404.056-.516.361l-1.076 2.942c-.08.223-.168.566-.168.566h-.011s-.088-.343-.168-.566L9.9 15.447c-.105-.298-.199-.361-.51-.361zm5.922 0v.387h.404v3.607c0 .268.112.379.38.379h1.89c.268 0 .379-.111.379-.379v-.435h-.404v.29c0 .094-.05.14-.137.14h-1.535c-.087 0-.137-.046-.137-.14v-1.484h1.64v-.387h-1.64v-1.591h1.492c.087 0 .137.043.137.136v.293h.41v-.435c0-.268-.112-.381-.379-.381zM0 15.088v.385h.268c.086 0 .136.043.136.136v3.471c0 .268.112.379.38.379h1.81c.267 0 .379-.111.379-.379v-.435h-.41v.29c0 .094-.05.137-.137.137H.976c-.086 0-.136-.043-.136-.136v-3.47c0-.267-.112-.378-.38-.378zm18.334 0v.385h.076c.118 0 .197.018.229.136l1.002 3.85h.515l.897-3.047c.08-.28.156-.64.156-.64h.012s.067.366.142.646l.815 3.041h.515l1.008-3.85c.031-.118.106-.136.23-.136H24v-.385h-.193c-.311 0-.453.055-.528.36l-.76 3.015c-.055.224-.1.467-.1.467h-.01s-.039-.243-.1-.467l-.877-3.358h-.43l-.963 3.358c-.062.224-.12.467-.12.467h-.01s-.039-.243-.095-.467l-.757-3.016c-.075-.304-.219-.36-.53-.36zM4.637 16.256c-.274 0-1.02.094-1.02.53v.298h.404v-.2c0-.23.454-.273.61-.273.572 0 .808.23.808.883v.037h-.173c-.542 0-1.916.038-1.916 1.076 0 .622.54.926 1.062.926a1.11 1.11 0 0 0 1.04-.678h.01s-.005.094-.005.23c0 .256.106.374.373.374h.43v-.367h-.262c-.087 0-.137-.044-.137-.137v-1.498c0-.672-.236-1.201-1.224-1.201m3.527.387c.578 0 .988.49.988 1.255 0 .796-.452 1.262-1.006 1.262-.671 0-.996-.628-.996-1.256 0-.889.492-1.261 1.014-1.261m-2.906 1.224h.181v.143c0 .54-.362 1.162-.959 1.162-.466 0-.695-.298-.695-.59 0-.703.982-.715 1.473-.715"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lada.svg�������������������������������������0000664�0000000�0000000�00000001770�14753064456�0024531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.998 7.312c-5.908 0-10.82 1.669-11.81 3.866a2 2 0 0 0-.188.831c0 .193.028.508.227.895 1.078 2.156 5.94 3.784 11.775 3.784C18.629 16.688 24 14.588 24 12c0-2.589-5.375-4.688-12.002-4.688m-.89.993c.42.383.16 1.217-.642 2.368-.894 1.276-1.752 1.976-2.771 2.233L9.91 8.084h.01c.566-.025.949.005 1.188.22zm5.027 4.7c-.065-.04-.045-.139.03-.154l1-.201a.07.07 0 0 0 .052-.047l.16-.474c.015-.044-.018-.087-.063-.09l-1.866-.103a.3.3 0 0 0-.18.048l-.748.496a.385.385 0 0 0-.17.394c.209 1.09-.202 1.684-2.354 1.942-3.127.373-5.461 0-5.868-.074a.22.22 0 0 0-.234.121l-.213.463c-2.209-.657-3.742-1.653-4.112-2.793 0-.036-.081-.226-.081-.535 0-1.893 3.186-3.49 7.544-3.992h.016s-2.232 4.863-2.612 5.688a.088.088 0 0 0 .08.122h.124c1.31.044 2.892.091 4.87-.396 2.102-.518 3.688-2.005 4.296-3.087.616-1.099.263-1.943.195-2.232 3.878.596 6.359 2.095 6.413 3.84-.014.356-.11.704-.283 1.019-.728 1.214-2.796 2.22-5.55 2.76 1.084-1.188.236-2.27-.446-2.712z"/></svg>��������mkdocs-material-9.6.4/material/templates/.icons/simple/lamborghini.svg������������������������������0000664�0000000�0000000�00000016657�14753064456�0026135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.192 13.826c-.032.02-.232.114-.288.136-.406.18-.772.152-1.18-.088-.294-.172-.566-.552-.672-.684-.084-.106-.186-.244-.332-.374-.272-.244-.638-.404-1.272-.392a.3.3 0 0 1-.146-.036c-.64-.338-1.746-.752-2.8-.7-.21.016-.24-.136-.31-.306a3.9 3.9 0 0 0-.46-.936c-.168-.238-.24-.24-.378-.278-.152-.042-.32-.06-.42-.236-.012-.022-.062-.116-.006-.182.14-.164.528-.388-.056-.718-.356-.2-.196-.33-.138-.36a.6.6 0 0 1 .392-.042 1 1 0 0 1 .56.36c.19.222.832 1.264 1.222 2.054.006.01.014.066.086.074.108.01.296.01.334.014.06.004.06-.044.054-.064-.552-1.836-1.19-4.124-2.296-5.714-.02-.046-.002-.094.068-.088.988.1 1.276 1.51 1.856 2.434.744 1.19 1.18.724 1.252-.08.048-.56-.1-1.272-.49-1.672-.092-.114-.258-.256-.326-.34-.024-.032-.028-.082.038-.1a.5.5 0 0 1 .118-.006c.458.034 1.092.404 1.36.816.546.846.506 1.3.43 1.6-.128.512-.368.806-.07 1.618.588 1.604.434 1.268.1 2.278-.03.076.018.134.084.128.77-.072 1.004.104 1.17.192.018.01.032.024.044.02.03-.01.04-.048.044-.098.064-.432-.026-.616-.124-.87-.06-.15-.124-.32-.146-.484a.8.8 0 0 1 .07-.488c.131-.274.16-.587.084-.882-.194-.856-.896-2.264-1.344-3.076q-.194-.368-.392-.734c-.032-.06-.02-.128.006-.184l.054-.136c.108-.274.164-.48.196-.72.104-.766-.098-1.312-.652-1.768-.516-.424-1.432-.612-2.654-.544l-.26.016c-1.148.066-2.452.14-3.434.06-.95-.08-1.504-.23-1.696-.46a.33.33 0 0 1-.076-.262A.84.84 0 0 1 9.74.96c.17-.13.37-.2.514-.18.254.012.536.156.86.322.29.15.62.32 1.004.428a3 3 0 0 0 .952.124c.29-.012.576-.072.846-.18a.9.9 0 0 0 .232-.132c.02-.016.026-.048.004-.08-.014-.016-.03-.016-.09-.016a4.5 4.5 0 0 1-1-.12c-.256-.064-.28-.124-.276-.148.006-.056.14-.108.294-.114.752-.034 1.328.006 1.71.034q.241.025.486.016c.022-.002.03-.016.032-.022a.04.04 0 0 0-.012-.04c-.264-.22-1.126-.55-2.11-.724-1.582-.28-2.642-.05-3.252.192a3 3 0 0 0-.714.4q-.46.358-.508.77c-.04.364.224.836 1.72 1.01 1.586.184 3.068.158 4.374.136l.402-.008c.828-.012 1.528.188 1.83.522.289.34.393.798.28 1.228q-.046.173-.14.324c-.094.13-.2.168-.39.118-.612-.162-1.704-.52-2.232-.7-.472-.16-.844-.284-1.16-.362-.936-.23-1.228-.078-1.858.32-.152.096-.306.2-.484.322-.26.176-.55.376-.94.62q-.428.258-.868.494c-.332.18-.674.37-1.01.572-1.076.632-1.248 1.48-1.448 2.46-.14.696-.3 1.484-.832 2.284-.058.086-.52.646-.616.804-.366.586-.56 1.092-.484 1.94.06.636-.16 1.188-.37 1.722-.164.42-.32.82-.346 1.244-.02.264-.01.51 0 .748.014.394.02.788-.1 1.128-.092.26-.328.52-.42.772a3.9 3.9 0 0 0-.198 1.212c-.006.36-.272.622-.554.9-.248.246-.508.504-.602.84-.014.044-.02.078-.038.104-.024.04-.06.064-.11.1a.96.96 0 0 0-.336.408c-.096.253-.089.533.02.78.016.028.058.096.122.104q.067.006.13-.07s.276-.318.382-.412a.086.086 0 0 1 .108-.008c.032.022.038.06.02.1-.012.024-.178.32-.274.568l-.002.008c-.014.034-.03.08-.006.114q.031.054.17.06.06.005.12.004c.508 0 .776-.136.914-.254a.34.34 0 0 0 .08-.124l.02-.04c.1-.272.168-.588.178-.824 0-.1.028-.128.096-.196.268-.272.268-.628.268-.974 0-.32 0-.648.21-.906.57-.64.866-1.384 1.152-2.104.296-.744.6-1.514 1.208-2.154.154-.158.302-.244.4-.228q.075.012.116.094c.13.24.09.562.052.874-.042.354-.082.686.104.904.126.162.16.334.098.494-.08.256-.324 1.032-.902 1.376a2 2 0 0 0-.216.164.4.4 0 0 0-.064.094.47.47 0 0 1-.312.262.96.96 0 0 0-.536.346c-.22.331-.314.73-.264 1.124.01.06.03.138.088.214q.052.072.116.082a.13.13 0 0 0 .1-.028 1 1 0 0 0 .126-.132c.08-.09.178-.204.3-.296.04-.03.08-.022.104-.006.02.016.032.04.024.06a1 1 0 0 1-.094.174c-.06.094-.134.21-.192.348q-.024.047-.006.084c.016.04.06.056.07.06.37.118.92-.022 1.23-.312a.76.76 0 0 0 .228-.59.36.36 0 0 1 .098-.228c.216-.186.306-.476.4-.784l.072-.222c.098-.317.287-.6.542-.812.406-.38.59-.74.706-.96.118-.238.144-.37.23-.508.17-.268.742-.32.954-.194q.131.078.058.214c-.032.058-.334.546-.476.88-.07.164-.228.226-.32.28-.568.332-.672.956-.688 1.212-.006.08.002.186.044.246a.14.14 0 0 0 .09.06.14.14 0 0 0 .106-.028c.032-.026.34-.336.376-.368.052-.044.096-.036.12-.016.022.02.032.062 0 .11-.04.062-.254.382-.228.452.04.118.162.116.282.116.974-.08 1.318-.774 1.318-.774.024-.04.052-.094.036-.238-.028-.26-.088-1.16.432-1.72.154-.172.246-.056.28.02.064.14.156.378.21.498.112.254.188.44.32.692.216.424.546.482.952.432.526-.066.888-.024 1.24.01.3.026.466.046.688-.156.12-.11.35-.31.504-.53.1-.138.128-.226.104-.44-.072-1.082.49-2.022 1.504-2.514.152-.062.32-.044.424.096.228.336.756 1.2.756 1.934a.8.8 0 0 1-.058.234c-.072.2-.16.45.004.79.012.294-.098.524-.194.728-.138.288-.246.516.13.74q.213.12.45.18a.1.1 0 0 0 .04-.012.05.05 0 0 0 .024-.034c.01-.086.02-.38.036-.448.006-.028.02-.06.052-.064.03 0 .06.022.068.046.03.072.106.36.128.404q.026.06.068.076c.15.042.356-.216.432-.35.132-.274.078-.68-.138-1.036a.3.3 0 0 1-.036-.158.97.97 0 0 0-.04-.66 1.5 1.5 0 0 1-.088-.344c-.06-.508.254-2.12.282-2.284.054-.3.098-.514.116-.734a.86.86 0 0 0-.216-.62c-.136-.146-.3-.28-.46-.408a5 5 0 0 1-.378-.33.87.87 0 0 1-.228-.512q0-.03.012-.04a.05.05 0 0 1 .026-.006c.24.018.434.176.676.38.22.18.466.384.81.536.684.304 1.332.26 1.984-.136.276-.196.362-.366.376-.388.018-.03-.008-.116-.088-.07M7.054 11.124c.04-.316.272-.65.374-1.044.146-.444.186-1.22.266-1.836.04-.308.156-.436.378-.464.146-.014.3.114.378.548.272 1.774.804 2.02 1.114 2.49l.016.026c.08.148.104.284-.02.384-.072.06-.316.146-.728-.104-.496-.298-.57-.62-1.392.038 0 0-.11.084-.214.108-.09.02-.188-.014-.172-.146m4.3 6.51c-.03.02-.064.006-.112-.024-.326-.21-1.23-.374-1.992-.068-.786.314-1.504.76-1.552-.018-.01-.688.136-.988-.104-1.396l-.02-.032c-.02-.032.004-.04.012-.04 1.102-.086 1.398-.43 1.466-.55.014-.028-.004-.056-.032-.06-.254-.028-1.518-.066-2.024.008-.894.13-1.494 1.474-1.61 1.602-.134.146-.304.034-.304-.1 0-.224.134-1.314.22-1.692.14-.598.332-1.04.916-1.132.408-.062 1.412-.168 1.344-.44a2.4 2.4 0 0 1-.088-.5c0-.132.068-.16.202-.128.1.02.232.08.404.12 1.26.298 1.908.06 2.66-.274l.318-.144a.168.168 0 0 1 .23.222c-.04.086-.094.126-.21.236-.248.24-1.174 1-.616 2.284.434 1 .56 1.26.87 1.942.05.112.058.16.02.184zm2.346 1.732c-.062.096-.158.164-.34.164-.228 0-.388-.068-.484-.17a.76.76 0 0 1-.174-.688c.03-.12.1-.198.18-.22.032-.012.05-.008.068.014.034.054.156.248.184.288a.34.34 0 0 0 .142.108c.092.038.21.07.272.098.19.082.234.278.152.406m3.638-3.54c-.024.04-.046.046-.078.06-1.142.432-2.052 1.6-1.886 3a.34.34 0 0 1-.09.246s-.24.244-.39.348c-.052.036-.11.064-.244.056l-.51-.032c-.08-.014-.046-.084-.04-.1a.3.3 0 0 0 .016-.05c.044-.21.012-.504-.284-.614-.042-.024-.016-.064-.01-.076.126-.314.286-.7.412-1.242.09-.313.023-.65-.18-.906l-.18-.24c-.052-.058-.038-.12.034-.144l.254-.066c.06-.02.056-.114-.004-.13l-.13-.04a.6.6 0 0 1-.256-.228.6.6 0 0 1-.1-.226l-.014-.074c-.002-.038-.06-.04-.088-.012a.62.62 0 0 0-.114.754c.206.344.198.31.38.57.06.084.098.154.118.24.029.21.008.425-.06.626l-.208.632c-.126.28-.266.214-.344.16-.104-.068-.2-.244-.25-.432 0 0-.144-.526-.14-1.228-.008-.084-.066-.222-.25-.1l-.49.404c-.068.038-.188.018-.164-.142 0 0 .352-1.57.73-2.454.284-.72-.032-1.126-.408-1.572-.618-.788-.756-1.846.68-1.266.386.176.524-.052 1-.094.34-.028.452.11.48.168a.4.4 0 0 1 .04.14c0 .012-.004.02-.02.02-.804.048-1.764.716-1.02 1.766.726 1.028 2.73 1.372 3.626.392.012-.012.014-.042-.004-.056a.04.04 0 0 0-.046-.008 3 3 0 0 1-.556.16c-.428.07-1.334.02-1.76-.47-.246-.28-.24-.602.174-.652.23-.018.344.024.444.026.258-.004.31-.26.258-.38a1 1 0 0 0-.292-.364c-.134-.094-.06-.194.026-.192.828.048 1.62.192 1.92 1.186.012.038.032.164.064.21.064.096.174.168.298.274.3.262.57.73-.344 2.152m1.076-.616c.146-.304.344-.1.44.234.12.426.136 1.108.084 1.46-.064.46-.28.368-.396.204-.184-.258-.38-.6-.52-.836l-.01-.022c-.064-.134-.074-.24-.006-.336.068-.106.34-.564.408-.704"/></svg>���������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/landrover.svg��������������������������������0000664�0000000�0000000�00000006110�14753064456�0025615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.182 11.491h.717l.625-1.85.365 1.85h.718l.978-2.858-.75.001-.522 1.554-.299-1.554h-1.01l-.025.074.05.048c.053.053.05.114.005.246zm3.749-2.489-.853 2.49h1.259c.54 0 .847-.12 1.098-.387.313-.332.6-1.195.59-1.67-.009-.485-.322-.8-.98-.8H13.9l-.024.073.05.048c.052.053.05.114.004.246m.685.31h.313c.213 0 .33.071.333.236.002.106-.027.252-.137.565-.098.28-.176.443-.287.562-.088.094-.207.135-.478.135h-.261zm4.066.347H16.78l-.247.68h1.318l-1.497.509-.093.243 2.157-.71.264-.722zM5.043 11.492h1.95l.236-.682H6.095l.75-2.176h-.979l-.024.074.049.048c.053.053.051.114.005.246zm2.153-.001h.83l.359-.632h.859l.008.632h.753l-.162-2.857H8.716l-.025.074.036.036c.06.058.035.142-.184.49zm1.996-2.067h.026l.014.864h-.527zM8.01 12.11H6.776l-.025.074.05.05c.053.051.05.113.004.245l-.862 2.49h.788l.337-.989h.267l.296.988h.792l-.372-1.01a.76.76 0 0 0 .433-.194c.149-.136.252-.326.337-.607.124-.407.049-.64-.031-.76-.11-.164-.342-.287-.78-.287m.068 1.038c-.05.122-.104.151-.175.18a.9.9 0 0 1-.245.026H7.28l.205-.591h.455c.136 0 .192.07.194.152a.8.8 0 0 1-.057.233m10.436-1.038H17.28l-.024.074.05.05c.053.051.05.113.005.245l-.863 2.49h.789l.336-.988h.267l.297.987h.79l-.37-1.01a.76.76 0 0 0 .431-.194c.15-.136.253-.326.338-.607.124-.407.05-.64-.03-.76-.11-.164-.343-.287-.782-.287m.069 1.038c-.05.122-.104.151-.174.18a.9.9 0 0 1-.245.026h-.376l.203-.591h.455c.136 0 .192.07.193.152a.8.8 0 0 1-.056.233m1.367-4.742c-2.365-1.222-5.31-1.69-7.95-1.69s-5.585.468-7.95 1.69C2.72 9.093 1.035 10.331 1.035 12s1.686 2.907 3.015 3.594c2.365 1.222 5.31 1.69 7.95 1.69s5.585-.467 7.95-1.69c1.329-.687 3.015-1.925 3.015-3.594 0-1.67-1.685-2.907-3.015-3.594m-.12 6.954c-2.33 1.203-5.227 1.66-7.83 1.66s-5.5-.457-7.83-1.66C2.939 14.721 1.3 13.546 1.3 12c0-1.548 1.638-2.722 2.87-3.359C6.5 7.438 9.398 6.981 12 6.981s5.5.456 7.83 1.66c1.233.637 2.87 1.81 2.87 3.36 0 1.547-1.638 2.721-2.87 3.359m.595-7.873C18.171 6.322 15.18 5.681 12 5.681c-3.179 0-6.17.641-8.425 1.806C2.24 8.177 0 9.681 0 12s2.24 3.823 3.575 4.513C5.829 17.678 8.821 18.32 12 18.32s6.171-.641 8.425-1.806C21.76 15.823 24 14.32 24 12s-2.24-3.823-3.575-4.513m-.293 8.46C17.967 17.064 15.08 17.68 12 17.68s-5.966-.616-8.132-1.735C1.786 14.87.638 13.468.638 12c0-1.469 1.148-2.87 3.23-3.946C6.034 6.936 8.921 6.32 12 6.32c3.08 0 5.967.617 8.132 1.735 2.083 1.075 3.23 2.477 3.23 3.946 0 1.468-1.147 2.87-3.23 3.946m-9.41-3.87h-.091c-.539 0-.846.144-1.099.412-.314.333-.609 1.23-.603 1.706.006.484.32.82.978.82h.096c.54 0 .848-.145 1.1-.413.314-.333.603-1.23.597-1.706-.006-.484-.32-.82-.979-.82m.046 1.515c-.098.281-.175.462-.288.581-.09.094-.207.161-.48.161-.212 0-.33-.087-.33-.251-.002-.107.027-.268.141-.582.098-.28.175-.462.289-.581.088-.094.207-.161.478-.161.213 0 .331.087.33.25.003.108-.026.27-.14.583M6.035 12.48l-2.157.709-.263.723h1.902l.248-.681H4.446l1.497-.507zm7.846-.369-1.046 2.055h-.022l-.053-2.055h-.875l-.034.074.075.046c.073.051.093.103.102.246l.119 2.492h.975l1.573-2.858zm2.396 1.712.219-.597H15.49l.156-.457h1.088l.24-.66H14.92l-.029.084.05.049c.053.051.05.112.004.246l-.855 2.48h1.92l.232-.663h-1.12l.164-.482z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/langchain.svg��������������������������������0000664�0000000�0000000�00000004457�14753064456�0025561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.099 5.918C2.736 5.918 0 8.646 0 12s2.736 6.083 6.099 6.083H17.9C21.264 18.083 24 15.353 24 12s-2.736-6.082-6.099-6.082ZM5.977 7.85c.493.012 1.02.25 1.273.623.368.459.478 1.067.895 1.493.56.612 1.199 1.15 1.716 1.802.49.595.839 1.294 1.144 1.998.124.233.125.52.31.72.09.12.534.448.438.564.055.12.47.286.326.402-.194.04-.413.048-.562-.107-.054.126-.182.06-.281.043l-.025.074c-.33.022-.576-.313-.732-.565-.311-.168-.665-.27-.982-.446-.019.29.045.648-.231.835-.014.557.843.066.922.48-.061.007-.129-.009-.178.038-.223.217-.48-.165-.738-.007-.346.174-.38.316-.81.352-.023-.036-.014-.06.006-.081.12-.14.13-.305.336-.365-.212-.033-.39.084-.569.176-.232.095-.23-.214-.588.017-.04-.033-.02-.062.002-.087.091-.11.21-.127.345-.12-.663-.37-.975.45-1.281.043-.092.024-.127.106-.185.165-.05-.055-.012-.121-.01-.186-.06-.028-.135-.041-.117-.137-.117-.04-.2.03-.286.096-.08-.061.053-.15.077-.213.07-.121.23-.025.311-.112.23-.131.552.08.816.045.203.026.454-.182.352-.39-.217-.277-.179-.639-.183-.97-.027-.192-.491-.438-.626-.646-.166-.187-.295-.404-.424-.618-.467-.9-.32-2.058-.908-2.895-.266.147-.612.078-.841-.119-.124.113-.13.26-.14.417-.296-.297-.259-.856-.021-1.186.096-.13.212-.237.342-.332.029-.02.039-.041.038-.074.117-.527.576-.74 1.07-.727m12.407.46c.557 0 1.08.216 1.473.608s.61.915.61 1.47a2.06 2.06 0 0 1-.61 1.47v.001l-.902.9a2.1 2.1 0 0 1-.86.516l-.016.005-.005.016a2.05 2.05 0 0 1-.474.731l-.902.9c-.394.392-.917.608-1.475.608s-1.08-.216-1.474-.608a2.077 2.077 0 0 1 0-2.94l.902-.9a2.06 2.06 0 0 1 .858-.514l.017-.006.006-.016a2.1 2.1 0 0 1 .475-.733l.902-.9a2.07 2.07 0 0 1 1.474-.608m0 .897a1.18 1.18 0 0 0-.84.346l-.901.9a1.18 1.18 0 0 0-.343.924l.005.058c.033.265.15.504.338.691.13.13.273.212.447.269a1 1 0 0 1 .014.158.88.88 0 0 1-.26.63l-.056.056a1.96 1.96 0 0 1-.78-.48 2.06 2.06 0 0 1-.576-1.096l-.01-.058-.046.037a1 1 0 0 0-.087.08l-.903.899a1.182 1.182 0 0 0 .84 2.019c.304 0 .607-.116.838-.346l.902-.9a1.18 1.18 0 0 0 0-1.673 1.2 1.2 0 0 0-.436-.275 1 1 0 0 1-.014-.16c0-.26.102-.506.29-.693a2.064 2.064 0 0 1 1.372 1.592l.01.058.046-.038a1 1 0 0 0 .088-.08l.902-.899a1.183 1.183 0 0 0 0-1.673 1.18 1.18 0 0 0-.84-.346ZM8.41 14.364c-.08.309-.105.833-.506.848-.033.177.123.244.265.187.141-.064.208.051.256.166.218.032.54-.073.552-.33-.325-.187-.426-.542-.567-.87"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/langflow.svg���������������������������������0000664�0000000�0000000�00000001777�14753064456�0025450�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.755 1.52zc-.31 0-.608.124-.828.343L4.037 6.752a1.17 1.17 0 0 1-.827.343H1.17A1.17 1.17 0 0 0 0 8.295l.052 1.984a1.17 1.17 0 0 0 1.17 1.14h2.37c.31 0 .607-.124.827-.344l4.93-4.93c.22-.22.517-.343.827-.343h2.874a1.17 1.17 0 0 0 1.17-1.17V2.69a1.17 1.17 0 0 0-1.17-1.17zm9.78 2.503c-.31 0-.608.123-.828.343l-4.889 4.889a1.17 1.17 0 0 1-.827.342h-2.756c-.31 0-.608.124-.827.344L4.15 15.197a1.17 1.17 0 0 1-.827.343H1.32a1.17 1.17 0 0 0-1.17 1.17v1.996c0 .646.524 1.17 1.17 1.17h2.017c.302 0 .592-.116.81-.325l5.535-5.304a1.17 1.17 0 0 1 .81-.326h2.88c.31 0 .607-.123.827-.342l4.93-4.93c.22-.22.517-.344.827-.344h2.873A1.17 1.17 0 0 0 24 7.135V5.193a1.17 1.17 0 0 0-1.17-1.17zm0 8.559c-.31 0-.608.123-.828.343l-4.889 4.889a1.17 1.17 0 0 1-.827.343h-2.04a1.17 1.17 0 0 0-1.17 1.2l.052 1.984a1.17 1.17 0 0 0 1.17 1.14h2.37c.31 0 .607-.124.827-.343l4.93-4.93c.22-.22.517-.343.827-.343h2.873a1.17 1.17 0 0 0 1.17-1.17v-1.943a1.17 1.17 0 0 0-1.17-1.17z"/></svg>�mkdocs-material-9.6.4/material/templates/.icons/simple/langgraph.svg��������������������������������0000664�0000000�0000000�00000004557�14753064456�0025601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.099 5.88H17.9c3.364 0 6.1 2.745 6.1 6.12s-2.736 6.12-6.099 6.12H6.1C2.736 18.12 0 15.375 0 12s2.736-6.12 6.099-6.12m5.419 9.487c.148.156.367.148.561.108h.002c.09-.073-.038-.166-.16-.254-.074-.054-.145-.105-.166-.15.068-.083-.132-.27-.289-.417a2 2 0 0 1-.15-.151c-.11-.12-.155-.273-.2-.427a1.6 1.6 0 0 0-.11-.297c-.304-.708-.653-1.41-1.143-2.01-.315-.398-.674-.755-1.033-1.112-.232-.23-.463-.46-.683-.701-.226-.234-.362-.521-.499-.81-.114-.24-.228-.482-.396-.693-.507-.75-2.107-.955-2.342.105 0 .033-.01.054-.039.075a1.6 1.6 0 0 0-.342.334c-.238.332-.274.895.022 1.193l.001-.02c.01-.15.02-.29.139-.399.228.198.576.268.841.12.32.46.422 1.015.525 1.572.085.464.17.93.382 1.341l.014.022c.124.208.25.419.41.6.059.09.178.187.297.284.157.128.314.256.329.366v.146c-.001.29-.002.59.184.83.103.208-.15.418-.352.392a1 1 0 0 1-.354-.043c-.165-.04-.329-.08-.462-.003-.038.04-.091.042-.145.043-.064.002-.129.004-.167.07a.3.3 0 0 1-.045.066c-.042.051-.087.107-.033.149l.015-.011c.082-.063.16-.123.27-.085-.014.082.039.103.092.125l.027.012a.4.4 0 0 1-.008.057c-.009.046-.017.09.018.13a1 1 0 0 0 .046-.056c.037-.046.073-.094.139-.11.144.192.289.112.471.012.206-.114.459-.253.81-.056-.135-.007-.255.01-.345.121-.023.025-.042.054-.002.087.207-.135.294-.086.375-.04.06.032.115.063.212.024l.07-.037c.155-.084.314-.17.499-.14-.139.04-.188.127-.242.223a1 1 0 0 1-.094.143c-.021.021-.03.046-.007.082.29-.024.4-.098.548-.197.07-.047.15-.1.261-.157.124-.076.248-.028.368.02.13.05.255.1.371-.013.037-.035.083-.035.129-.036q.024 0 .05-.002c-.037-.194-.24-.191-.448-.189-.24.003-.483.005-.475-.295.222-.152.224-.415.226-.665q-.001-.09.005-.176c.163.092.336.163.508.234.162.066.323.133.474.215.157.254.404.59.732.568q.012-.037.026-.074a1 1 0 0 1 .059.014c.086.021.178.045.223-.057m6.429-2.886a1.014 1.014 0 0 0 1.729-.715 1.01 1.01 0 0 0-1.013-1.01 1 1 0 0 0-.364.068l-.58-.848-.405.278.583.851a1.01 1.01 0 0 0 .05 1.376m-1.818-2.744a1.014 1.014 0 0 0 1.42-.615 1.008 1.008 0 0 0-.845-1.293 1.015 1.015 0 0 0-1.095.712 1.01 1.01 0 0 0 .52 1.196m0 5.867a1.015 1.015 0 0 0 1.42-.615 1.008 1.008 0 0 0-.845-1.293 1.015 1.015 0 0 0-1.095.712 1.01 1.01 0 0 0 .52 1.196m.932-3.586v-.503h-1.55a1 1 0 0 0-.218-.412l.583-.864-.424-.28-.583.863a1 1 0 0 0-.333-.06c-.268 0-.525.106-.714.294a1.002 1.002 0 0 0 1.047 1.655l.583.864.42-.281-.579-.864c.104-.119.178-.26.217-.412z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/languagetool.svg�����������������������������0000664�0000000�0000000�00000002503�14753064456�0026304�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.28 20.494 0 18.865c.67-.938 1.36-1.66 2.088-2.171.805-.568 1.667-.869 2.555-.869.824 0 1.539.198 2.178.582q.39.24.734.549c.16.14.281.255.53.504.383.384.537.524.728.633.205.127.422.185.735.185s.53-.058.734-.185c.192-.109.351-.25.734-.633.25-.249.37-.364.537-.51a4.7 4.7 0 0 1 .728-.543c.639-.384 1.348-.582 2.171-.582.824 0 1.533.198 2.172.582.255.153.491.332.728.542.166.147.287.262.536.511.383.384.543.524.735.633.204.127.421.185.734.185.281 0 .588-.109.945-.358.44-.306.92-.81 1.418-1.507L24 18.042c-.67.938-1.36 1.666-2.088 2.17-.805.57-1.667.87-2.555.87-.824 0-1.539-.199-2.178-.582a5 5 0 0 1-.734-.543c-.166-.146-.281-.261-.537-.51v-.007c-.376-.377-.536-.517-.728-.626-.204-.127-.415-.185-.728-.185s-.523.058-.728.185c-.191.109-.35.25-.728.626v.007c-.255.249-.37.364-.536.51-.243.211-.48.39-.735.543-.638.383-1.354.581-2.177.581-.824 0-1.54-.198-2.178-.58a5.6 5.6 0 0 1-.735-.544 11 11 0 0 1-.53-.51c-.383-.384-.536-.524-.728-.633-.204-.127-.421-.185-.734-.185-.281 0-.588.109-.945.358-.44.313-.92.81-1.418 1.507M3.417 2.919h2.33c.965 0 1.75.779 1.75 1.75v6.795h4.554v2.452H6.795c-.964 0-1.75-.786-1.75-1.75V5.371H3.417Zm17.818 1.75v1.82h-2.453V5.37h-1.928v8.545H14.4V5.37h-1.928v1.118H10.02v-1.82c0-.971.786-1.75 1.75-1.75h7.708a1.75 1.75 0 0 1 1.757 1.75zm0 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lapce.svg������������������������������������0000664�0000000�0000000�00000000351�14753064456�0024706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.802 1.267 1.608 0v24L8 20.31v-2.535L3.802 20.2Zm4.208 13.9V6.231L18.003 12l-7.798 4.503v2.533L22.392 12 5.806 2.424V16.44Zm5.598-3.231L10.205 9.97v3.93Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/laragon.svg����������������������������������0000664�0000000�0000000�00000002106�14753064456�0025245�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.843.979c-2.12-.096-3.477 1.439-3.477 1.439C2.52 2.5.791 8.429.75 8.552l-.248.74c-2.268 8.78 3.889 12.22 3.889 12.22.188.091.375-.066.375-.066.5-.31.252-.53.252-.53-1.43-1.742-1.595-5.864-1.596-5.899-.64-.532-1.248-1.318-1.111-2.342 0 0 .084-.51.584-.197 0 0 1.186.644 2.123.83-.001 0 .476.043.5.177 0 0 .374 1.752-.78 2.32.745.437 1.465.85 1.465.85.124 1.263.81 5.32.81 5.32.064.797.906.954.906.954.483.172 4.12.062 4.12.062 1.014-.044 1.062-.953 1.062-.953.015-.545.03-3.62.03-3.62.096-.575.766-.5.766-.5.703-.03.688.454.688.454-.017.515.045 3.496.045 3.496.03.858.781 1.125.781 1.125.488 0 .828-.004 1.365 0 .252.002 1.473 0 1.473 0 .55-.307 1.377-.969 1.377-.969 5.868-4.91 4.135-11.9 4.135-11.9C22.93 5.88 17.792 5.1 17.792 5.1c-.582-1.811-1.643-2.682-1.643-2.682-1.222-1.015-2.343-1.396-3.306-1.44zm5.006 4.273s1.845 3.08-1.727 7.86c.001.001-2.94 4.116-8.232 1.223 1.084.523 5.536 2.312 8.375-1.98 0 0 2.632-3.437 1.584-7.103M6.703 8.868s1.296.036 1.341 1.82c0 0-1.02-2.668-3.271-.2 0 0 .404-1.729 1.93-1.62"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/laravel.svg����������������������������������0000664�0000000�0000000�00000003111�14753064456�0025245�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.642 5.43a.4.4 0 0 1 .014.1v5.149c0 .135-.073.26-.189.326l-4.323 2.49v4.934a.38.38 0 0 1-.188.326L9.93 23.949a.3.3 0 0 1-.066.027q-.012.005-.024.01a.35.35 0 0 1-.192 0q-.016-.005-.03-.012-.031-.01-.062-.025L.533 18.755a.38.38 0 0 1-.189-.326V2.974q0-.05.014-.098c.003-.012.01-.02.014-.032a.4.4 0 0 1 .023-.058c.004-.013.015-.022.023-.033l.033-.045q.018-.014.037-.027.02-.018.041-.034H.53L5.043.05a.38.38 0 0 1 .375 0L9.93 2.647h.002q.021.015.04.033l.038.027c.013.014.02.03.033.045.008.011.02.021.025.033q.014.029.024.058c.003.011.01.021.013.032q.014.047.014.098v9.652l3.76-2.164V5.527q0-.05.013-.098.007-.014.013-.032a1 1 0 0 1 .024-.059c.007-.012.018-.02.025-.033q.017-.023.033-.043.019-.017.037-.028.02-.017.041-.032h.001l4.513-2.598a.38.38 0 0 1 .375 0l4.513 2.598c.016.01.027.021.042.031q.019.014.036.028.018.022.034.044c.008.012.019.021.024.033a.3.3 0 0 1 .024.06q.01.015.015.032m-.74 5.032V6.179l-1.578.908-2.182 1.256v4.283zm-4.51 7.75v-4.287l-2.147 1.225-6.126 3.498v4.325zM1.093 3.624v14.588l8.273 4.761v-4.325l-4.322-2.445-.002-.003H5.04q-.02-.016-.04-.031-.018-.014-.035-.027l-.001-.002q-.018-.018-.031-.04-.016-.016-.028-.036h-.002q-.01-.022-.02-.047c-.006-.016-.014-.027-.018-.043l-.008-.057q-.005-.02-.006-.041V5.789l-2.18-1.257zM5.23.81 1.47 2.974l3.76 2.164 3.758-2.164zm1.956 13.505 2.182-1.256V3.624l-1.58.91-2.182 1.255v9.435zm11.581-10.95-3.76 2.163 3.76 2.163 3.759-2.164zm-.376 4.978L16.21 7.087l-1.58-.907v4.283l2.182 1.256 1.58.908zm-8.65 9.654 5.514-3.148 2.756-1.572-3.757-2.163-4.323 2.489-3.941 2.27z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/laravelhorizon.svg���������������������������0000664�0000000�0000000�00000000550�14753064456�0026662�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.486 3.516C15.8-1.171 8.202-1.172 3.516 3.513A11.96 11.96 0 0 0 0 11.998a11.98 11.98 0 0 0 4.2 9.13h.01a12 12 0 0 0 16.274-.642c4.687-4.685 4.688-12.283.002-16.97M16 13.998c-4 0-4-4-8-4-2.5 0-3.44 1.565-4.765 2.74H3.23a8.801 8.801 0 0 1 17.54-1.48c-1.33 1.175-2.27 2.74-4.77 2.74"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/laravelnova.svg������������������������������0000664�0000000�0000000�00000001457�14753064456�0026144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.333 4.319C16.56.386 9.453.632 4.973 5.057a7.57 7.57 0 0 0 0 10.8c3.018 2.982 7.912 2.982 10.931 0a3.245 3.245 0 0 0 0-4.628 3.34 3.34 0 0 0-4.685 0 1.114 1.114 0 0 1-1.561 0 1.08 1.08 0 0 1 0-1.543 5.57 5.57 0 0 1 7.808 0 5.41 5.41 0 0 1 0 7.714c-3.881 3.834-10.174 3.834-14.055 0a9.734 9.734 0 0 1-.015-13.87C5.596 1.35 8.638 0 12 0c3.75 0 7.105 1.68 9.333 4.319m-.714 16.136A12.18 12.18 0 0 1 12 24a12.18 12.18 0 0 1-9.333-4.319c4.772 3.933 11.88 3.687 16.36-.738a7.57 7.57 0 0 0 0-10.8c-3.018-2.982-7.912-2.982-10.931 0a3.245 3.245 0 0 0 0 4.628 3.34 3.34 0 0 0 4.685 0 1.114 1.114 0 0 1 1.561 0 1.08 1.08 0 0 1 0 1.543 5.57 5.57 0 0 1-7.808 0 5.41 5.41 0 0 1 0-7.714c3.881-3.834 10.174-3.834 14.055 0a9.734 9.734 0 0 1 .03 13.855"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lastdotfm.svg��������������������������������0000664�0000000�0000000�00000001400�14753064456�0025613�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.584 17.21-.88-2.392s-1.43 1.594-3.573 1.594c-1.897 0-3.244-1.649-3.244-4.288 0-3.382 1.704-4.591 3.381-4.591 2.42 0 3.189 1.567 3.849 3.574l.88 2.749c.88 2.666 2.529 4.81 7.285 4.81 3.409 0 5.718-1.044 5.718-3.793 0-2.227-1.265-3.381-3.63-3.931l-1.758-.385c-1.21-.275-1.567-.77-1.567-1.595 0-.934.742-1.484 1.952-1.484 1.32 0 2.034.495 2.144 1.677l2.749-.33c-.22-2.474-1.924-3.492-4.729-3.492-2.474 0-4.893.935-4.893 3.932 0 1.87.907 3.051 3.189 3.601l1.87.44c1.402.33 1.869.907 1.869 1.704 0 1.017-.99 1.43-2.86 1.43-2.776 0-3.93-1.457-4.59-3.464l-.907-2.75c-1.155-3.573-2.997-4.893-6.653-4.893C2.144 5.333 0 7.89 0 12.233c0 4.18 2.144 6.434 5.993 6.434 3.106 0 4.591-1.457 4.591-1.457"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lastpass.svg���������������������������������0000664�0000000�0000000�00000000600�14753064456�0025451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.629 6.857c0-.379.304-.686.686-.686.378 0 .685.312.685.686v10.286a.684.684 0 0 1-.686.686.69.69 0 0 1-.686-.686V6.857zM2.057 10.286a2.057 2.057 0 1 1 0 4.114 2.057 2.057 0 0 1 0-4.114m7.543 0a2.057 2.057 0 1 1 0 4.114 2.057 2.057 0 0 1 0-4.114m7.543 0a2.057 2.057 0 1 1 0 4.114 2.057 2.057 0 0 1 0-4.114"/></svg>��������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/latex.svg������������������������������������0000664�0000000�0000000�00000012515�14753064456�0024744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.176 2.814c.233.42.476.78.73 1.09.247-.013 1.132.456 1.312.523.508.282 1.063.63 1.567.966.505.337.96.662 1.272.9.156.12.278.218.352.286a.5.5 0 0 1 .078.082l.01.021a.06.06 0 0 1-.004.047.06.06 0 0 1-.04.03.1.1 0 0 1-.028 0c-.057 0-.203-.163-.497-.415a23.5 23.5 0 0 0-2.759-1.827c-.504-.28-.956-.542-1.264-.613a2.3 2.3 0 0 0-.36-.025 2.7 2.7 0 0 0-.788.133c.494.414.91.716 1.28.949-.57-.182-1.182-.21-1.902.133.526.329.967.567 1.354.745 1.103.156 2.258.696 3.224 1.309.483.307.904.615 1.219.867.157.125.29.237.39.328.098.091.174.154.197.21.03.073-.019.104-.084.058-.032-.022-.088-.102-.184-.191a7 7 0 0 0-.384-.327 14 14 0 0 0-1.209-.857c-.893-.562-2.232-1.013-3.173-1.397a2.46 2.46 0 0 0-1.906.39c.449.2.837.349 1.182.463.812 0 1.892.365 2.935.922 1.042.556 2.04 1.214 2.523 1.774.066.077-.016.126-.074.07-.52-.495-1.463-1.204-2.498-1.756-.639-.337-2.153-1.01-2.886-1.01l.004.002c-.567.02-1.13.195-1.679.716.477.118.885.196 1.244.249-.44.088-.87.3-1.289.722q.485.103.882.162a2.5 2.5 0 0 0-.923.78c.373.03.703.042 1 .044-.36.166-.696.43-.996.85.533.027.98.025 1.364.003-.422.172-.812.464-1.145.968.662.01 1.188-.022 1.628-.076l-.006.002c.99-.073 2.297.127 2.962.847.052.057-.024.118-.072.074-.648-.58-1.493-.827-2.89-.921h-.002c-.543.149-1.046.446-1.46 1.074.536.008.982-.013 1.366-.05-.469.257-.873.644-1.139 1.306.483-.092.888-.19 1.237-.292-.363.265-.668.636-.873 1.194q.484-.108.871-.221a2.5 2.5 0 0 0-.513 1.095c.352-.13.655-.254.926-.377-.257.3-.453.681-.55 1.19.495-.199.899-.388 1.238-.568-.31.333-.543.76-.635 1.356a12 12 0 0 0 1.442-.744c-.433.362-.764.843-.879 1.587.788-.348 1.339-.663 1.767-.955-.184.372-.282.806-.235 1.348.762-.584 1.243-1.056 1.602-1.473-.024.269-.003.56.077.884.546-.939 1.089-1.212 1.65-1.526-.895.451-.762.79-.762 1.184.683-.72 1.635-1.482 1.927-1.96-.39.585-.547 1.14-.65 1.63-1.993 1.054-3.207 1.329-4.568 1.75.528.194 1.093.383.859.652l-.624.622c.399-.124.805-.3 1.158-.059-.035.327-.447.492-.8.683.621-.224.756-.172.92-.12.081.393-.203.603-.388.862 1.565-1.19 3.606-2.13 5.044-2.522 2.022-.681 4.63-1.389 5.339-3.115l.712-2.847-.004.004c-.111-.034-.246-.063-.35-.133a.65.65 0 0 1-.235-.297c-.252.065-.44.03-.56-.088-.117-.117-.167-.296-.203-.491-.203.041-.362.016-.467-.077-.116-.101-.17-.26-.198-.444l-.008-.039.037-.015a.84.84 0 0 0 .302-.194.26.26 0 0 0 .07-.225l-.006-.037.03-.016c.163-.093.345-.169.428-.28a.27.27 0 0 0 .053-.21.9.9 0 0 0-.155-.357l-.027-.04.04-.027c.118-.09.244-.179.308-.26q.048-.06.047-.11c0-.033-.015-.07-.064-.117l-.098-.094.135.006q.321.015.538-.053a.5.5 0 0 0 .274-.197c-.007-.033-.02-.063-.02-.098a.484.484 0 0 1 .967 0c0 .044-.015.084-.026.125.177.014.347.01.507-.06l.002.001.035-.013c.236-.085.334.045.72-.456-1.69-2.19-4.157-.635-4.977 1.622-.21.576-1.405.578-1.751 0-1.37-2.95-5.53-6.068-9.07-7.218m.86 2.145c.906.293 1.913.782 2.77 1.328.43.273.813.543 1.114.779s.566.473.62.575 0 .14-.082.06c-.081-.078-.303-.32-.6-.553a14 14 0 0 0-1.106-.777c-.775-.49-1.982-.958-2.716-1.412m-1.7 2.7c1.116.014 2.35.447 3.434.997a11.5 11.5 0 0 1 1.395.83c.372.263.672.524.734.657.061.134-.02.13-.087.055a4.4 4.4 0 0 0-.704-.626 11.5 11.5 0 0 0-1.385-.826C3.76 8.264 2.439 7.82 1.336 7.66zm14.916.772a.381.381 0 1 0 0 .762.381.381 0 0 0 0-.762M1.7 8.478c.822.072 1.72.368 2.534.75 1.086.509 2.035 1.158 2.434 1.667.035.045-.014.131-.08.062-.428-.44-1.322-1.131-2.397-1.635-.913-.421-2.282-.87-3.262-.78.251-.03.497-.088.771-.064m16.339.01c-.366.475-.53.423-.703.464.094.43.35.586.585.77l-.06.012c2.315-.447 4.186-.286 6.139-.236zm-.178 1.246h-.002l-.004.016zm-.625-.757a1.2 1.2 0 0 1-.563.059.48.48 0 0 1-.42.26.48.48 0 0 1-.435-.278.6.6 0 0 1-.274.188 1.6 1.6 0 0 1-.493.055c.02.035.054.068.055.104a.27.27 0 0 1-.069.174c-.073.092-.189.17-.295.248q.13.21.149.362a.4.4 0 0 1-.07.284c-.106.14-.288.21-.439.293a.37.37 0 0 1-.09.268.9.9 0 0 1-.297.198c.027.156.074.283.154.354.086.076.211.103.425.047l.055-.014.01.055c.033.207.088.385.187.483.1.099.244.135.503.055l.049-.015.016.048a.52.52 0 0 0 .209.282c.087.06.247.112.358.147.798-.869 1.525-1.772 1.884-2.86-.225-.177-.506-.338-.609-.797m-16.23.386c1.165-.08 2.283.196 3.202.626.92.43 1.658.939 1.974 1.307.075.087-.019.12-.072.072a8.2 8.2 0 0 0-1.947-1.29c-.904-.414-2.193-.644-3.157-.715m.864.802c.61.02 1.24.155 1.806.352.756.262 1.421.614 1.747.98.045.05-.007.127-.074.069-.349-.304-.961-.693-1.706-.951-.574-.195-1.613-.369-2.268-.397.197-.022.292-.06.495-.053m1.05 1.788c.423.034.886.133 1.341.407.043.026.049.136-.049.09-.856-.402-1.326-.49-2.457-.31.386-.128.74-.221 1.164-.187zm-.04.788c.4-.035.784-.002 1.297.204.044.018.08.126-.033.094-.857-.243-1.167-.328-2.287.104a1.84 1.84 0 0 1 1.023-.402m1.285.687c.317-.023.635-.026.934.006.052.006.055.105-.006.102a8 8 0 0 0-1.837.115c-.243.046-.423.043-1.405.458.287-.233.794-.452 1.385-.56a9 9 0 0 1 .93-.12zm1.28.49c.099.003.062.104.006.103-.728-.01-1.304.132-1.875.295a10 10 0 0 0-1.318.525c.283-.23.713-.457 1.291-.622.579-.166 1.248-.326 1.896-.302zm.528.398c.036-.005.105.084.018.1-.73.137-1.244.267-1.794.454-.216.074-.58.207-1.243.587.26-.269.656-.492 1.213-.68a10.6 10.6 0 0 1 1.806-.46zm.311.507c.075-.012.097.087.02.102-1.217.241-1.76.556-2.54 1.144.504-.523 1.297-1.051 2.52-1.246m.595.448c.087-.013.11.087.021.1-.872.13-1.477.553-2.255 1.33.295-.493 1.004-1.24 2.234-1.43m.372.39c.046-.006.114.073.023.1a2.6 2.6 0 0 0-.669.3c-.182.118-.3.2-.597.507.111-.245.296-.434.542-.59.247-.157.509-.293.7-.317z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/launchpad.svg��������������������������������0000664�0000000�0000000�00000000635�14753064456�0025566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.999 18.676-4.432-2.556-4.783 2.764V24zM11.216 24v-5.119l-4.785-2.762-4.43 2.557zm.779-6.475 4.789-2.765V9.236l-4.785-2.76-4.783 2.76v5.527l4.781 2.761zM1.22 6.682v10.641l4.432-2.559V9.239L1.219 6.68zm19.615 1.121-2.484 1.436v5.522l4.43 2.559V6.678zM2.001 5.324l4.435 2.559 4.781-2.762V.003zm15.566 2.559 4.434-2.559L12.782 0v5.121z"/></svg>���������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lazarus.svg����������������������������������0000664�0000000�0000000�00000004312�14753064456�0025304�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.457.447c0 .198.035.367.092.367.123 0 .51.715.592 1.092.053.288.053.288-.45.398-1.225.248-1.532 1.092-.694 2.383.276.417.276.436.245 1.588-.017 1.092 0 1.192.195 1.589.213.397.5.655 1 .854.419.159 1.94.081 2.349-.13.51-.247 1.224-1.091 1.53-1.588.235-.606.164-1.49-.193-2.284-.357-.724-1.225-1.688-1.94-2.085-.408-.228-.582-.377-.745-.685a4.493 4.369 0 0 0-.531-.754C12.518.755 11.681 0 11.579 0c-.038 0-.075.169-.075.367zm-6.33 1.688a6.127 5.958 0 0 0-.162 1.986c.054.437.027.556-.154.873-.377.676-.53 1.291-.49 2.383.029.725.083.964.287 1.291.46.894 1.123 1.291 2.144 1.589.664.129 1.225.083 1.735-.189 1.634-.715 1.94-1.986.624-3.276-.512-.596-.756-1.093-.756-1.49 0-.526-.255-1.191-.572-1.49-.255-.228-.337-.237-.837-.198a6.772 6.586 0 0 0-.797.12c-.234.055-.276.026-.429-.368a2.144 2.085 0 0 1-.173-.774c.027-.348-.195-.835-.378-.835-.045 0-.133.17-.193.378zm16.338 3.078c-.036.198-.02.377.054.457.063.072.122.347.133.615l.008.487-.327.01c-.674.018-.756.044-1.123.377a2.552 2.482 0 0 0-.49.804c-.091.248-.43 1.092-.796 1.688-.358.725-.654 1.49-.675 1.688-.122.755.317 1.291 1.328 1.887.46.228.664.248 1.327.248.674 0 .858-.037 1.327-.288.736-.347 1.124-.755 1.532-1.49.215-.436.246-.615.235-1.489-.01-1.092-.204-1.688-.704-2.383a4.084 3.972 0 0 1-.46-.993c-.194-.685-.909-1.986-1.123-1.986-.074 0-.154.13-.195.318zM.022 11.17c-.1.17.154 1.688.368 2.284.123.308.285.854.357 1.192.378 1.886 1.736 3.177 3.267 3.276 1.123.074 2.042-.248 2.553-.923.745-.874.867-1.688.357-2.383-.153-.189-.592-.526-.99-.775-.388-.238-1.123-.675-1.532-.963-1.327-.874-1.531-.933-1.735-1.092-.49-.13-.838-.028-1.226.348l-.357.317-.194-.317c-.1-.17-.194-.378-.194-.497 0-.1-.122-.288-.255-.437-.286-.268-.358-.288-.429-.159Zm13.274 2.284c-.654.169-1.327.417-1.634.566-.674.348-1.225.894-1.532 1.49-.173.436-.204.565-.153 1.489.054.834.037.963-.163 1.29-.215.457-.878 1.192-1.226 1.291-.112.046-.295.239-.418.408-.633.933.235 2.78 1.635 3.574.653.348 1.53.497 2.347.417 2.962-.268 6.126-1.092 8.373-2.085 1.532-.695 2.144-1.688 2.144-3.078-.028-1.49-.787-2.383-2.043-2.383-1 0-2.042-.616-2.45-1.49-.317-.615-.939-1.191-1.532-1.588-.326-.13-.653-.199-1.327-.229-.745-.026-1.02.02-2.042.288z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lazyvim.svg����������������������������������0000664�0000000�0000000�00000005416�14753064456�0025324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.87 0a2.5 2.5 0 0 0-.697.1q-.187.058-.351.147-.163.09-.297.213l-.008.006q-.133.124-.235.27a1.7 1.7 0 0 0-.27.643 1.8 1.8 0 0 0 .105 1.023q.072.164.176.308.105.14.24.26l.007.004q.137.12.299.205.159.084.348.14.32.093.682.092h2.8l-4.256 5.09-.618.733.01.008q-.046.06-.088.124l-.07.116L.59 9.6q-.03.06-.05.12l-.006.016a1.8 1.8 0 0 0-.122.66q0 .219.042.423.039.204.12.4.084.2.21.372a2 2 0 0 0 1.067.746h.002q.397.117.87.117H9.65q.169 0 .338-.02.163-.02.312-.06l.044-.013q.185-.056.344-.144a1.6 1.6 0 0 0 .297-.21l.012-.01a1.65 1.65 0 0 0 .414-.592q.063-.157.095-.33a2 2 0 0 0 .004-.672 1.6 1.6 0 0 0-.084-.304l-.02-.055a1.5 1.5 0 0 0-.436-.58l-.006-.005a1.65 1.65 0 0 0-.635-.325 2.7 2.7 0 0 0-.675-.087H5.918l4.157-4.95.243-.304a6 6 0 0 0 .353-.486 2.1 2.1 0 0 0 .262-.64q.075-.315.074-.674 0-.46-.142-.83a1.7 1.7 0 0 0-.437-.648 1.8 1.8 0 0 0-.66-.39A2.6 2.6 0 0 0 8.938 0Zm12.36 6.062q-.179 0-.347.024a2 2 0 0 0-.325.073q-.18.054-.338.142a1.6 1.6 0 0 0-.29.21l-.003.003a1.6 1.6 0 0 0-.394.56q-.065.15-.097.317-.03.165-.032.337a1.7 1.7 0 0 0 .135.655q.07.162.171.3.098.131.225.242l.01.012q.133.114.29.197.155.082.335.134a2.4 2.4 0 0 0 .658.09h2.673L13.82 14.24l-.594.703.01.008-.088.123a1 1 0 0 0-.066.113l-.057.112c-.015.036-.046.097-.055.133a1.8 1.8 0 0 0-.118.64 2.1 2.1 0 0 0 .158.796 1.87 1.87 0 0 0 .83.912q.19.102.406.166h.001q.192.057.404.085.214.03.437.03h6.678q.168 0 .325-.02.154-.02.304-.06l.042-.012a1.7 1.7 0 0 0 .33-.14q.155-.083.288-.203l.01-.01q.134-.124.233-.265.103-.146.168-.308.06-.152.093-.318.03-.166.03-.34a1.8 1.8 0 0 0-.112-.605l-.02-.05a1.5 1.5 0 0 0-.417-.56l-.004-.004a1.6 1.6 0 0 0-.29-.19 2 2 0 0 0-.332-.128 2.4 2.4 0 0 0-.65-.083h-3.575l3.727-4.435q.154-.182.262-.314l.234-.291a6 6 0 0 0 .34-.47q.085-.137.15-.293a2.4 2.4 0 0 0 .102-.324 2.8 2.8 0 0 0 .07-.65q0-.445-.14-.8a1.7 1.7 0 0 0-.423-.628 1.8 1.8 0 0 0-.639-.377 2.5 2.5 0 0 0-.804-.12Zm-11.39 9.23q-.127 0-.256.016a1.5 1.5 0 0 0-.498.162q-.12.068-.22.158l-.001.004a1.2 1.2 0 0 0-.37.665 1.2 1.2 0 0 0 .002.506 1.15 1.15 0 0 0 .374.65l.01.01a1.2 1.2 0 0 0 .47.25q.23.067.49.067h1.776l-2.833 3.39-.468.553.01.007-.078.124-.042.084c-.014.03-.027.068-.042.097a1.3 1.3 0 0 0-.09.48q0 .156.03.305.029.147.088.289.063.146.152.27a1.4 1.4 0 0 0 .47.413q.142.076.304.125.142.042.299.063.159.02.32.02h4.776q.118 0 .24-.014.118-.015.224-.044l.034-.01q.135-.041.249-.104.12-.066.219-.154l.007-.008a1.2 1.2 0 0 0 .303-.432q.048-.113.07-.24a1.4 1.4 0 0 0 .002-.486 1.2 1.2 0 0 0-.06-.222l-.016-.042a1.14 1.14 0 0 0-.322-.426 1.2 1.2 0 0 0-.467-.24 1.8 1.8 0 0 0-.483-.06h-2.42l2.768-3.294.167-.21.139-.183a2 2 0 0 0 .106-.158q.066-.104.112-.22a1.8 1.8 0 0 0 .115-.472q.014-.126.013-.247 0-.33-.103-.596a1.26 1.26 0 0 0-.32-.47 1.3 1.3 0 0 0-.478-.284 1.8 1.8 0 0 0-.596-.092z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lbry.svg�������������������������������������0000664�0000000�0000000�00000000505�14753064456�0024573�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.35 14.19.168-1.066-1.031-.177.067-.414 1.446.245-.237 1.48zm.151-5.496v1.192l-11.734 7.211-8.842-4.336.017-.668 8.792 4.328L22.91 9.557v-.49l-10.55-5.09-11.768 7.28v3.254l11.142 5.512 11.632-7.135.33.507L11.767 20.7 0 14.883v-3.956L12.325 3.3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/leaderprice.svg������������������������������0000664�0000000�0000000�00000003076�14753064456�0026110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.836 7.574h-1.1v3.97h2.822v-.965H1.836zM17.08 9.943h1.794V9.15H17.08v-.636h1.987v-.941H15.99v3.97h3.106v-.936h-2.021v-.665zm-12.075 0H6.8V9.15H5.005v-.636h1.992v-.941H3.92v3.97h3.106v-.936H5.005zm17.314.217c.492-.208.815-.613.815-1.22v-.01q-.002-.587-.352-.927c-.265-.27-.685-.43-1.293-.43h-1.877v3.971h1.1v-1.201h.483l.8 1.201h1.27zm-.29-1.153c0 .29-.217.472-.588.472h-.724v-.95h.719c.367 0 .593.16.593.473zm-8.731-1.433h-1.53v3.97h1.51c1.428 0 2.263-.849 2.263-1.997v-.01c-.005-1.148-.825-1.963-2.243-1.963m1.11 1.992c0 .642-.44 1.004-1.096 1.004h-.448V8.553h.448c.656 0 1.095.367 1.095 1.004zM11.734 0 5.497 6.238h12.475zm-2.88 7.574-1.68 3.97h1.149l.28-.704h1.52l.289.704h1.172l-1.679-3.97zm.072 2.417.444-1.158.439 1.158zm-.781 5.248h.482l.8 1.202h1.27l-.946-1.385c.492-.207.815-.613.815-1.22v-.01c0-.39-.12-.7-.352-.926-.265-.27-.685-.43-1.293-.43H7.046v3.966h1.1zm0-1.813h.718c.367 0 .594.159.594.472v.01c0 .29-.217.473-.589.473h-.723zm-1.54.453v-.01c0-.878-.646-1.394-1.65-1.394h-1.7v3.966h1.1v-1.134H4.9c.984 0 1.708-.492 1.708-1.428zm-1.1.048c0 .314-.236.516-.626.516h-.526v-1.046h.516c.396 0 .637.183.637.52zm6.788-1.457H11.19v3.966h1.104zm2.634 4.091c.695 0 1.341-.342 1.737-.916l.024-.034-.892-.613-.025.034a1.02 1.02 0 0 1-1.862-.574 1.02 1.02 0 0 1 1.023-1.018c.338 0 .651.164.84.444l.024.034.892-.613-.024-.034a2.1 2.1 0 0 0-1.737-.912 2.11 2.11 0 0 0-2.103 2.104c0 1.153.94 2.098 2.103 2.098m3.295-1.056v-.666h1.906v-.791h-1.906v-.637h2.103v-.936h-3.193v3.966h3.218v-.936zM11.735 24l6.237-6.238H5.497z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/leaflet.svg����������������������������������0000664�0000000�0000000�00000000502�14753064456�0025234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.69 0c-.355.574-8.432 4.74-10.856 8.649-2.424 3.91-3.116 6.988-2.237 9.882s2.559 2.763 3.516 3.717c.958.954 2.257 2.113 4.332 1.645 2.717-.613 5.335-2.426 6.638-7.508s.448-9.533-.103-11.99A35 35 0 0 0 17.69 0m-.138.858-9.22 21.585-.574-.577Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/leagueoflegends.svg��������������������������0000664�0000000�0000000�00000001016�14753064456�0026752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m1.912 0 1.212 2.474v19.053L1.912 24h14.73l1.337-4.682H8.33V0ZM12 1.516c-.913 0-1.798.112-2.648.312v1.74A9.7 9.7 0 0 1 12 3.2c5.267 0 9.536 4.184 9.536 9.348a9.2 9.2 0 0 1-2.3 6.086l-.273.954-.602 2.112c2.952-1.993 4.89-5.335 4.89-9.122C23.25 6.468 18.213 1.516 12 1.516m0 2.673c-.924 0-1.814.148-2.648.414v13.713h8.817a8.25 8.25 0 0 0 2.36-5.768c0-4.617-3.818-8.359-8.529-8.359M2.104 7.312A10.86 10.86 0 0 0 .75 12.576c0 1.906.492 3.7 1.355 5.266z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/leanpub.svg����������������������������������0000664�0000000�0000000�00000002075�14753064456�0025255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.19 5.284c-.806-.454-2.93-1.478-5.652-1.478-2.445 0-3.837.751-4.538 1.234-.701-.483-2.093-1.235-4.538-1.235-2.723 0-4.846 1.025-5.651 1.479L0 20.194h.054a6.9 6.9 0 0 0 2.957-.673c1.032-.487 2.66-1.06 4.602-1.06 2.364 0 3.71 1.056 4.387 1.733.678-.677 2.023-1.732 4.387-1.732 1.943 0 3.57.572 4.602 1.06a6.9 6.9 0 0 0 2.957.672H24zM20.934 17.78a12.2 12.2 0 0 0-2.875-.801 12 12 0 0 0-1.674-.122c-1.571 0-2.991.392-4.22 1.165l-.166.103-.165-.103c-1.23-.773-2.65-1.165-4.222-1.165-.552 0-1.115.04-1.673.122-.949.137-1.916.407-2.875.801l-1.218.501L3.3 6.321l.108-.048c1.225-.542 2.797-.865 4.205-.865 1.745 0 3.22.556 4.387 1.652 1.168-1.096 2.642-1.652 4.386-1.652 1.409 0 2.98.323 4.206.865l.108.048 1.453 11.961zm-4.085-1.328a12 12 0 0 0-.464-.009c-1.627 0-3.103.402-4.386 1.194-1.283-.792-2.759-1.194-4.387-1.194-.572 0-1.155.043-1.732.126-.983.143-1.983.421-2.973.829l-.565.232 1.34-11.025c1.159-.492 2.618-.783 3.93-.783 1.705 0 3.131.562 4.24 1.672L12 7.64l.146-.146c1.07-1.07 2.433-1.629 4.055-1.669z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/leetcode.svg���������������������������������0000664�0000000�0000000�00000001514�14753064456�0025410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.483 0a1.37 1.37 0 0 0-.961.438L7.116 6.226l-3.854 4.126a5.3 5.3 0 0 0-1.209 2.104 5 5 0 0 0-.125.513 5.5 5.5 0 0 0 .062 2.362 6 6 0 0 0 .349 1.017 5.9 5.9 0 0 0 1.271 1.818l4.277 4.193.039.038c2.248 2.165 5.852 2.133 8.063-.074l2.396-2.392c.54-.54.54-1.414.003-1.955a1.38 1.38 0 0 0-1.951-.003l-2.396 2.392a3.02 3.02 0 0 1-4.205.038l-.02-.019-4.276-4.193c-.652-.64-.972-1.469-.948-2.263a2.7 2.7 0 0 1 .066-.523 2.55 2.55 0 0 1 .619-1.164L9.13 8.114c1.058-1.134 3.204-1.27 4.43-.278l3.501 2.831c.593.48 1.461.387 1.94-.207a1.384 1.384 0 0 0-.207-1.943l-3.5-2.831c-.8-.647-1.766-1.045-2.774-1.202l2.015-2.158A1.384 1.384 0 0 0 13.483 0m-2.866 12.815a1.38 1.38 0 0 0-1.38 1.382 1.38 1.38 0 0 0 1.38 1.382H20.79a1.38 1.38 0 0 0 1.38-1.382 1.38 1.38 0 0 0-1.38-1.382z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lefthook.svg���������������������������������0000664�0000000�0000000�00000003032�14753064456�0025434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5.46 18.517-.103.03L0 16.14l.121-.273c.854-1.973 2.119-3.704 3.771-5.193a22 22 0 0 1 .714-.618l-.278-.526-.34-.636-.108-.212-.073-.139.067-.14c.744-1.512 1.907-2.36 3.801-2.874 1.156-.303 2.125-.285 2.906.084a17.4 17.4 0 0 1 4.612-1.797l.06-.012L24 13.184l-.097.182a193 193 0 0 1-2.264 4.395c-1.047 1.973-2.784 2.687-5.042 2.36-1.695-.242-3.54-1.029-5.75-2.288l-.666-.369c-1.023.151-2.603.502-4.727 1.053Zm-1.168-7.39A14.4 14.4 0 0 0 .799 15.83l3.704 1.67a31 31 0 0 1 3.784-1.107 1649 1649 0 0 0-3.85-2.155l-.279-.158 1.41-2.209-.671-1.271a21 21 0 0 0-.606.527m2.252 2.941h.006c2.288-.405 4.08-2.221 4.722-3.371a13 13 0 0 0 .35-.557l3.136-5.58a16.6 16.6 0 0 0-4.527 1.96l-.654-.302.327-.206a4.13 4.13 0 0 0-2.076.109c-1.671.442-2.676 1.162-3.342 2.415l.043.073.333.635 1.186 2.24a3 3 0 0 0 1.15.012 3.2 3.2 0 0 0 1.544-.648c.853-.69 1.307-1.21 1.343-1.67.043-.545-.314-1.278-1.313-2.67 1.41.945 2.373 2.458 1.598 3.547v.006a4 4 0 0 1-.26.34c-.255.29-.563.574-.987.92a3.84 3.84 0 0 1-1.834.774 4 4 0 0 1-1.156.018l-1.12 1.756 2.996 1.67v-.012c3.087-.163 5.085-2.034 7.016-5.102-1.477 3.135-3.305 5.145-6.126 5.617a99 99 0 0 1 1.61.908c3.026-.2 4.854-1.859 6.767-4.897-1.459 3.099-3.141 4.927-5.871 5.399a33 33 0 0 0 .89.484l-.03-.03a14 14 0 0 0 .332.182 25 25 0 0 0 .503.242c3.014-.194 4.697-1.64 6.61-4.68-1.405 2.985-2.906 4.631-5.43 5.146 1.846.545 3.341.212 4.842-.727.515-.332 1.75-2.088 3.693-5.278l-7.482-8.026-3.184 5.678a10.5 10.5 0 0 1-1.822 2.324 5.7 5.7 0 0 1-3.777 1.301z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/legacygames.svg������������������������������0000664�0000000�0000000�00000001650�14753064456�0026106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.62 5.985v12.033L11.992 24l10.37-5.987L22.38 6 11.988 0Zm19.146.955.002 10.123-8.793 5.045-8.758-5.023L3.216 6.94l8.77-5.06Zm-8.781-3.176a2.03 2.03 0 0 1 .87 3.863v2.936l3.863-2.256c.203-.118.427-.196.66-.227l1.602-.218a.104.104 0 0 1 .098.165l-.963 1.308a1.8 1.8 0 0 1-.54.485L13.6 12.13l2.393 1.403c.564-.41 1.393-.46 2.144-.082l.16.088c1.041.618 1.488 1.86.999 2.771-.49.913-1.731 1.15-2.772.532-.748-.444-1.19-1.21-1.198-1.944l-2.472-1.451v3.042a2.03 2.03 0 0 1 1.154 1.673l.006.16a2.03 2.03 0 1 1-2.899-1.833v-2.915l-4.236 2.46a.6.6 0 0 1-.242.079l-1.746.166a.104.104 0 0 1-.093-.165l1.043-1.399a.6.6 0 0 1 .177-.157l4.374-2.555-2.418-1.418c-.564.409-1.391.458-2.142.08l-.16-.087c-1.04-.619-1.488-1.86-.998-2.772s1.73-1.15 2.772-.531c.75.445 1.19 1.212 1.197 1.947l2.471 1.449.001-3.043a2.03 2.03 0 0 1-1.153-1.674l-.006-.16c0-1.12.908-2.03 2.029-2.03"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/leica.svg������������������������������������0000664�0000000�0000000�00000004046�14753064456�0024704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.42 10.954c.198.011.35.146.343.29-.033.94-1.19.795-1.19.795s.17-1.126.846-1.085zm9.313 2.064c.794 0 .952-1.605.952-1.64a.41.41 0 0 0-.423-.398c-.66 0-.9 1.203-.9 1.508 0 .116.007.53.37.53zm-9.949-5.08c.036-.318-.12-.662-.555-.662-1.06 0-1.509 2.963-1.509 2.963s1.853-.438 2.064-2.301m-6.244 5.82c-.207.021-.423.114-.423.344 0 .139.235.382.608.37.49-.014 1.085-.475 1.085-.475s-.506-.207-1.085-.239a1 1 0 0 0-.185 0M24 12.003C24 18.628 18.627 24 12 24 5.37 24 0 18.628 0 12.003 0 5.374 5.371 0 12 0c6.627 0 12 5.374 12 12.003M11.933 9.446c0 .446.377.555.794.555s.82-.18.82-.635c0-.456-.48-.555-.82-.555-.471 0-.794.193-.794.635M9.366 10.53c-1.41 0-2.407.866-2.407 1.904 0 .948.808 1.35 1.852 1.35 1.184 0 2.354-.714 2.354-.714s.071.714 1.006.714c.964 0 1.72-.714 1.72-.714s.417.687 1.376.687c.98 0 1.72-.793 1.72-.793s.272.74 1.243.74c.759 0 1.164-.476 1.164-.476s.212.477.873.477c.808 0 1.402-.556 1.402-.556l-.132-.476s-.307.238-.529.238c-.168 0-.265-.137-.265-.291 0-.347.556-2.064.556-2.064l-1.35.026-.052.212s-.201-.37-.9-.37c-1.352 0-2.085 1.166-2.116 1.852-.007.149-.027.158-.027.158-.032.036-.497.583-1.085.583-.47 0-.555-.384-.555-.635 0-.273.233-1.35.873-1.35.348 0 .555.291.555.291l.186-.608s-.292-.236-.9-.238c-1.308-.001-2.19.967-2.222 1.852-.007.132-.03.176-.027.185-.043.053-.35.423-.767.423-.286 0-.291-.219-.291-.317 0-.135.555-2.064.555-2.064l-1.481.026-.503 1.879s-.826.581-1.958.661c-.584.04-.794-.32-.794-.529v-.08c.001 0 .246.027.424.027.14 0 1.878-.134 1.878-1.19 0-.605-.613-.82-1.376-.82m12.568 3.889-.132-.476s-3.096 1.078-9.022 1.005c-4.089-.05-7.224-1.243-7.224-1.243s.119-.212.185-.344c.41-.835.9-2.514.9-2.514s2.805-.785 2.805-3.016c0-.706-.674-1.162-1.323-1.19-2.264-.089-2.877 3.128-3.017 3.677-.007.039-.026.053-.026.053-.698-.095-1.085-.238-1.085-.238l-.159.45c.471.223 1.165.29 1.165.29-.136.865-.82 2.488-.82 2.488s-.608-.186-1.376-.186c-1 0-1.35.47-1.376.768-.066.77.911 1.137 1.587 1.137 1.32 0 2.011-.714 2.011-.714s3.695 1.402 7.567 1.402c5.069 0 9.34-1.35 9.34-1.35z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lemmy.svg������������������������������������0000664�0000000�0000000�00000004465�14753064456�0024757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.96 4.223a4 4 0 0 0-.333.019A2.84 2.84 0 0 0 .474 5.628c-.475.8-.593 1.68-.35 2.497.242.816.83 1.558 1.698 2.145l.016.011c.746.45 1.492.743 2.288.9-.02.332-.028.669-.006 1.018.063 1.043.436 2 .996 2.85l-2.006.818a.42.42 0 0 0-.228.224.42.42 0 0 0 .088.455.42.42 0 0 0 .294.123.4.4 0 0 0 .16-.031l2.209-.904c.408.486.87.932 1.372 1.318q.03.02.06.043l-1.291 1.71a.416.416 0 0 0 .664.5l1.314-1.738a9.3 9.3 0 0 0 2.229 1.025c.383.72 1.138 1.187 2.02 1.187.89 0 1.644-.501 2.024-1.207a9.4 9.4 0 0 0 2.208-1.027l1.332 1.76a.416.416 0 0 0 .744-.193.42.42 0 0 0-.08-.307l-1.31-1.735c.008-.007.018-.01.026-.018.497-.38.955-.818 1.362-1.294l2.155.88a.416.416 0 0 0 .541-.228.415.415 0 0 0-.227-.544l-1.944-.792c.577-.854.97-1.819 1.05-2.87.027-.35.025-.691.009-1.026a7 7 0 0 0 2.273-.897l.017-.012c.868-.587 1.456-1.328 1.698-2.145.242-.816.125-1.697-.35-2.497a2.84 2.84 0 0 0-2.155-1.386 3 3 0 0 0-.332-.019c-.786-.015-1.623.23-2.429.694-.593.342-1.125.867-1.543 1.439-1.17-.67-2.693-1.048-4.564-1.078a16 16 0 0 0-.51 0c-2.086.034-3.755.43-5.015 1.144-.003-.003-.005-.011-.008-.015-.423-.591-.973-1.136-1.584-1.489-.805-.465-1.643-.708-2.428-.694Zm.285.736c.557.042 1.17.236 1.779.588.485.28.976.755 1.346 1.27a6 6 0 0 0-.497.408c-.92.852-1.461 1.96-1.668 3.233a6.2 6.2 0 0 1-1.984-.794C1.466 9.15 1.005 8.54.821 7.919.636 7.295.713 6.648 1.098 6c.375-.63.928-.953 1.612-1.032a3 3 0 0 1 .535-.007Zm17.51 0a3 3 0 0 1 .535.008c.684.078 1.237.402 1.612 1.032.385.648.462 1.296.277 1.92-.184.622-.645 1.231-1.4 1.744a6.2 6.2 0 0 1-1.96.789c-.194-1.297-.737-2.434-1.666-3.302a6 6 0 0 0-.47-.392c.364-.49.828-.943 1.293-1.212.61-.351 1.222-.545 1.779-.587Zm-8.749 1.045a15 15 0 0 1 .487 0c2.39.039 4.085.67 5.163 1.678 1.15 1.075 1.642 2.6 1.5 4.467-.132 1.707-1.221 3.228-2.653 4.324a9 9 0 0 1-2.225 1.229c.003-.045.014-.089.014-.135.003-1.196-.932-2.213-2.292-2.213s-2.322 1.015-2.292 2.221c.001.05.014.097.018.147a8.9 8.9 0 0 1-2.278-1.245c-1.423-1.095-2.5-2.613-2.603-4.322-.113-1.857.378-3.339 1.521-4.397s2.986-1.711 5.64-1.754m-3.642 6.829a1.096 1.096 0 1 0 0 2.192 1.096 1.096 0 0 0 0-2.192m7.282.011a1.086 1.086 0 1 0 0 2.173 1.086 1.086 0 0 0 0-2.173M12 16.084c1.024 0 1.565.638 1.563 1.482-.001.785-.672 1.485-1.563 1.485-.917 0-1.54-.562-1.563-1.493-.022-.834.54-1.474 1.563-1.474"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lemonsqueezy.svg�����������������������������0000664�0000000�0000000�00000001214�14753064456�0026361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.492 10.835 2.374-6.511a3.15 3.15 0 0 0-.065-2.342C9.031.183 6.943-.398 5.293.265c-1.65.664-2.583 2.17-1.781 4.04l2.82 6.561c.219.51.97.49 1.16-.03m1.68 1.097 6.533-2.776c2.17-.922 2.722-3.69 1.022-5.29l-.068-.063c-1.667-1.547-4.422-1.002-5.37 1.036l-2.932 6.295c-.234.503.295 1.02.816.798m.372.87 6.646-2.512c2.208-.835 4.62.745 4.589 3.04l-.003.09c-.048 2.236-2.393 3.737-4.553 2.947l-6.672-2.442a.595.595 0 0 1-.006-1.123M9.16 14.73l6.437 2.976a3.3 3.3 0 0 1 1.666 1.7c.769 1.8-.283 3.639-1.933 4.3-1.65.663-3.41.236-4.21-1.635l-2.802-6.57c-.217-.508.328-1.008.842-.771"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lenovo.svg�����������������������������������0000664�0000000�0000000�00000002166�14753064456�0025132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.044 12.288c0 .5-.343.867-.815.867-.464 0-.827-.38-.827-.867 0-.51.343-.868.815-.868.464 0 .827.381.827.868m-14.305-.92a.79.79 0 0 0-.651.307 1 1 0 0 0-.172.738l1.479-.614a.71.71 0 0 0-.656-.43zm6.963.052c-.472 0-.816.358-.816.868 0 .486.364.867.828.867.472 0 .815-.368.815-.867 0-.487-.363-.868-.827-.868M24 7.997v8.006H0V7.997zM5.01 13.05H3.088V9.825H2.23v4.003h2.78zm1.137-.094 2.163-.897a1.67 1.67 0 0 0-.37-.86c-.284-.33-.704-.505-1.216-.505-.931 0-1.633.686-1.633 1.593 0 .93.704 1.593 1.726 1.593.572 0 1.158-.272 1.432-.589l-.535-.411c-.357.264-.56.326-.885.326-.292 0-.52-.09-.682-.25m5.57-1.039c0-.709-.507-1.223-1.252-1.223a1.28 1.28 0 0 0-1.005.494v-.442h-.846v3.081h.846v-1.753c0-.316.245-.651.698-.651.35 0 .712.243.712.651v1.753h.847zm3.647.37c0-.904-.725-1.593-1.65-1.593-.933 0-1.663.7-1.663 1.593 0 .903.726 1.592 1.651 1.592.932 0 1.662-.7 1.662-1.592m2.066 1.54 1.268-3.081h-.967l-.765 2.099-.765-2.1h-.966l1.268 3.081zm4.449-1.54c0-.904-.725-1.593-1.65-1.593-.932 0-1.662.7-1.662 1.593 0 .903.725 1.592 1.65 1.592.932 0 1.662-.7 1.662-1.592"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lens.svg�������������������������������������0000664�0000000�0000000�00000000452�14753064456�0024565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.255 3.5H3.5v4.255l3.75 4.715ZM3.5 8.955v7.125h5.665ZM19.545 3.5H10.02L8.87 8.635Zm-.9 17H20.5v-8.4l-4.32-2.105Zm-5.79-12.95 7.645 3.72v-7.4ZM3.5 16.825V20.5h6.88l2.875-3.675zm7.83 3.675h6.545l-1.51-6.435zM0 0h24v24H0Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/leptos.svg�����������������������������������0000664�0000000�0000000�00000001510�14753064456�0025126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.097 17.876A6.21 6.21 0 0 1 5.834 12c0-3.393 2.773-6.166 6.166-6.166.248 0 .517.021.766.042a9.9 9.9 0 0 1 1.49-2.504 3.58 3.58 0 0 1-.85-2.296c0-.331.042-.662.146-.993A20 20 0 0 0 12 0C5.38 0 0 5.38 0 12c0 4.366 2.338 8.172 5.814 10.283l.124-.062a8.43 8.43 0 0 0 4.159-4.345m6.848-14.979c.662 0 1.262-.352 1.593-.952v-.02a12.3 12.3 0 0 0-3.269-1.49v.02a1.9 1.9 0 0 0-.124.642c0 .993.807 1.8 1.8 1.8M19.924 3c-.662 1.014-1.758 1.634-2.98 1.634a3.5 3.5 0 0 1-.806-.103 3 3 0 0 1-.476-.145 8.8 8.8 0 0 0-1.22 1.945c2.275.993 3.724 3.186 3.724 5.669 0 3.393-2.773 6.166-6.166 6.166h-.145a10.37 10.37 0 0 1-4.117 5.048C9.062 23.71 10.51 24 12 24c6.62 0 12-5.38 12-12 0-3.58-1.572-6.807-4.076-9m-8.848 4.67a4.428 4.428 0 1 0 1.849 8.661 4.428 4.428 0 1 0-1.85-8.66z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lequipe.svg����������������������������������0000664�0000000�0000000�00000002314�14753064456�0025267�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6.109 9.885-.132.301H5l-.258.612h.399l-1.32 3.092h2.398l.265-.611H5.312l.454-1.051h1.172l.234-.557H6.008l.375-.866h1.164l.258-.611H6.711l.133-.309zm3.575.27c-1.223.008-1.74.891-2.024 1.492-.811 1.722.479 2.232.773 2.285.168.031.505.031.674 0l.107.183h.635l-.215-.328c.475-.03 1.034-.678 1.278-1.195.245-.518.962-2.397-1.228-2.437m11.449.012-.269.63h.437l-1.317 3.077h2.422l.242-.551h-1.234l.461-1.078h1.235l.242-.567h-1.235l.383-.885h1.226l.274-.626zm-17.828.004-.27.625h.415c-.087.211-.192.477-.34.805.828-.195 1.249-.844 1.359-1.43zm-2.109.001-.266.619h.398L0 13.89h2.445l.258-.603H1.539l1.336-3.115zm10.749.009-.266.61h.415l-.766 1.804c-.312.682.141 1.31 1.149 1.318 1.038.009 1.39-.636 1.5-.904l1.203-2.828h-.664l-1.203 2.798c-.211.413-1.149.376-.883-.153l1.133-2.645zm5.688.008-.27.603h.426l-1.313 3.098h1.212l.546-1.29h1.203c.571 0 .974-.562 1.164-1.051.196-.502.063-1.36-.718-1.36zm-2.031.001-.258.605h.351l-1.32 3.103h1.211l1.601-3.708zm-5.918.555c.279-.012.553.172.448.431l-.842 1.972-.191-.312-.467.259.115.175c-.406 0-.336-.335-.237-.525l.734-1.715a.49.49 0 0 1 .44-.285m9.308.047h.36c.304 0 .124.61.07.719-.055.108-.211.471-.446.471h-.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lerna.svg������������������������������������0000664�0000000�0000000�00000002104�14753064456�0024721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.452 18.006c-.147 0-.257.073-.367.147-1.764 3.38-5.329 5.034-10.583 5.034q-1.213 0-2.646-.11c-.074-.11-.257-.368-.551-.735-.22-.294-.331-.551-.368-.809.074-2.094.147-5.254.147-9.443 0-4.19.037-7.35.147-9.444.22-.698.698-1.03 1.47-1.03.147 0 .33 0 .551.038.258.036.441.036.551.036.552 0 .993-.147 1.287-.477V.772c0-.11-.037-.258-.147-.331C10.84.257 9.333.184 7.46.184H5.586C4.263.184 2.94.147 1.616 0c-.183.367-.256.661-.256.882q0 .495.771.551c.515.037 1.066.074 1.58.11.588.147.956.478 1.066 1.066a36 36 0 0 0 .037 3.38c.073 1.654.147 2.72.147 3.271 0 .845-.037 1.727-.184 2.572.037.441.074 1.507.184 3.234q.11 2.205.11 3.528c0 .918-.037 1.837-.147 2.719-.184.551-.33.882-.367.955q-.33.551-.882.551-.276.11-1.323.11c-.588 0-.992.111-1.176.368.147.368.367.551.625.625 1.102.037 2.241.037 3.49.037 1.287 0 3.124 0 5.512-.037 2.426-.037 4.226-.037 5.439-.037 1.654 0 3.16.037 4.593.11.294.037.478-.147.551-.514.11-.441.184-.698.258-.772-.037-.588.147-1.396.588-2.351s.624-1.728.588-2.279c-.11 0-.221-.036-.368-.073"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/leroymerlin.svg������������������������������0000664�0000000�0000000�00000007365�14753064456�0026177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.407 7.419c-.17-.164-.329-.323-.478-.468q1.062-1.083 2.116-2.166c.239.234.468.453.687.683.02.02.01.084-.01.119q-.33.65-.657 1.3c-.02.04-.04.074-.07.139l.134-.055c.449-.204.902-.403 1.35-.612.074-.035.12-.035.184.03.2.199.403.393.583.567-.722.742-1.434 1.464-2.136 2.181q-.268-.262-.513-.503c.348-.353.707-.717 1.065-1.075l-.015-.03-.11.045-1.284.582c-.07.03-.12.04-.174-.025-.075-.09-.21-.164-.224-.258-.015-.095.074-.215.124-.32.18-.393.364-.786.528-1.194q-.554.537-1.1 1.06m11.71 10.357c.01-.045.016-.06.016-.074q.292-1.024.577-2.047c.01-.04.02-.104-.005-.13-.234-.238-.473-.467-.722-.706l-2.116 2.16c.15.145.319.31.493.484.463-.454.941-.917 1.4-1.36 0-.015 0 0-.006.015-.159.667-.313 1.335-.483 1.997-.044.18-.035.304.115.428.17.14.319.309.488.478L24 16.851c-.144-.14-.309-.3-.503-.494-.443.458-.901.926-1.38 1.42zm-7.956-6.582c.124-.13.269-.274.433-.443-.299-.294-.612-.593-.906-.877.164-.164.314-.318.478-.488.234.234.478.478.717.712.14-.144.284-.289.458-.463-.239-.234-.493-.473-.717-.692l.334-.358q.471.461.936.916c.134-.135.274-.28.413-.424q-.748-.73-1.519-1.483l-2.11 2.156c.487.468.99.96 1.483 1.444M3.187 15.102q-.231-.209-.409-.373c.294-.314.588-.622.887-.941-.13-.12-.27-.254-.414-.389-.488.478-.985.966-1.473 1.44l2.15 2.15q.735-.715 1.49-1.453c-.15-.14-.29-.27-.434-.409-.304.294-.617.603-.916.897l-.463-.434c.249-.264.488-.522.737-.786-.14-.13-.284-.264-.468-.439zm5.258-6.647c-.07-.025-.115-.02-.165.035-.149.154-.308.304-.463.453-.02.02-.034.045-.06.075.38.124.743.239 1.111.358.264.085.553.13.787.27.229.139.408.373.602.572.1.104.194.214.294.328.2-.214.373-.398.553-.587-.24-.244-.498-.503-.747-.767a.4.4 0 0 1-.09-.16c-.09-.363-.174-.731-.264-1.095-.07-.294-.144-.592-.219-.906-.214.21-.413.403-.607.598-.02.02-.02.074-.01.11.04.148.084.293.124.442.06.214.12.428.185.667-.364-.149-.698-.268-1.031-.393m11.193 3.998-.558-.542c-.697.712-1.399 1.434-2.116 2.166.478.468.976.95 1.47 1.429.154-.16.323-.329.507-.518-.294-.289-.602-.588-.911-.886q.823-.85 1.608-1.649m-17.532 6.33c.498-.484.986-.962 1.479-1.445-.174-.16-.344-.319-.518-.478-.289.279-.592.578-.906.881-.548-.562-1.09-1.115-1.633-1.673-.18.19-.354.369-.528.558.692.707 1.394 1.43 2.106 2.156zm18.842-4.995c-.697.712-1.4 1.434-2.102 2.15.16.16.339.34.533.529.697-.712 1.404-1.434 2.106-2.156-.159-.16-.343-.334-.537-.523m-2.973-1.759c-.294.23-.612.299-.976.16-.154.478-.309.946-.463 1.424-.19-.185-.368-.354-.543-.538-.025-.03-.015-.105-.005-.15q.187-.857.379-1.722c.005-.02.005-.04-.01-.075-.374.388-.747.777-1.116 1.155l-.552-.538 2.086-2.16c.468.452.921.87 1.344 1.319.284.289.195.856-.144 1.125m-.543-.97c-.154-.17-.333-.32-.498-.474-.154.16-.318.324-.493.503.1.105.205.22.31.329.02.025.039.05.064.064.045.035.09.07.14.09.159.07.338.02.442-.114.115-.14.14-.29.035-.399zm-8.086.084c0 .812-.762 1.543-1.608 1.543-.807 0-1.549-.746-1.549-1.558 0-.901.657-1.569 1.554-1.569a1.58 1.58 0 0 1 1.603 1.584m-.747 0a1.6 1.6 0 0 0-.752-.837.58.58 0 0 0-.642.05c-.21.15-.329.354-.304.623.04.428.657.99 1.086.985.398-.005.757-.463.612-.821m-1.045 2.276c-.17.18-.334.359-.503.533-.025.025-.095.015-.14.005-.538-.14-1.075-.284-1.613-.423a.2.2 0 0 0-.115-.005l1.096 1.125c-.18.194-.359.384-.523.558L3.59 13.091c.03-.035.05-.06.07-.08.338-.338.682-.672 1.02-1.006.225-.219.493-.333.812-.293.408.05.707.378.717.801.005.15-.02.304-.03.463.463.145.926.299 1.375.443m-2.063-.826c-.134-.135-.304-.164-.443-.055-.154.12-.294.259-.443.393.189.175.363.339.552.513.08-.074.185-.169.284-.264.04-.04.08-.074.11-.12.104-.158.084-.323-.06-.467m15.86 6.622H2.554c-.015-.015-.025-.03-.04-.045.04-.02.085-.03.115-.06q1.956-1.935 3.904-3.863l4.566-4.521c.264-.264.533-.518.796-.787.085-.085.13-.085.215 0 1.483 1.494 2.977 2.982 4.466 4.471q2.35 2.354 4.7 4.7a1 1 0 0 0 .1.08c-.01.01-.015.02-.025.025"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/leslibraires.svg�����������������������������0000664�0000000�0000000�00000001131�14753064456�0026277�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.79.002a10.58 10.58 0 0 0-7.735 3.575C.18 7.958.593 14.647 4.981 18.518a10.56 10.56 0 0 0 5.3 2.51L12.002 24l1.717-2.971a10.56 10.56 0 0 0 6.227-3.437c3.876-4.38 3.461-11.07-.926-14.94a10.57 10.57 0 0 0-7.23-2.65M11.277 7.5l.613.512-1.862 2.444c-.005.007-.048.06-.048.115s.045.112.045.113l1.866 2.461-.615.502-2.573-2.403a.88.88 0 0 1-.3-.667c0-.38.22-.596.304-.678zm3.265 0 .613.512-1.863 2.444c-.005.007-.048.06-.048.115s.045.112.046.113l1.866 2.461-.615.502-2.573-2.403a.88.88 0 0 1-.301-.667c0-.38.222-.596.305-.678z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/less.svg�������������������������������������0000664�0000000�0000000�00000005273�14753064456�0024600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.598 7.15a8 8 0 0 0-1.054.068q-.421.062-.717.249a1.2 1.2 0 0 0-.45.497c-.098.208-.14.47-.14.802V10.3c0 .428-.084.732-.253.884-.169.166-.492.25-.984.25v1.16c.478 0 .815.083.984.249q.253.249.253.912v1.548c0 .594.183 1.009.548 1.23.38.207.984.318 1.813.318v-1.078c-.393 0-.646-.07-.773-.194-.126-.124-.183-.373-.183-.746v-1.465c0-.373-.098-.663-.28-.87-.184-.208-.479-.374-.886-.484.393-.125.688-.29.871-.512.183-.22.281-.511.281-.87V9.167c0-.36.057-.608.183-.733.122-.12.412-.195.787-.2v4.547q0 .624.09 1.044.089.419.314.724.226.304.616.443.39.14.984.14.147 0 .32-.02a5 5 0 0 0 .65-.107l-.036-.98q-.405.057-.667.057-.529 0-.713-.276-.183-.275-.183-1.051V7.149H3.598zm16.818-.001v1.092c.393 0 .647.069.773.193.127.125.183.373.183.733v1.465c0 .359.098.65.28.87.184.222.479.387.872.512-.407.11-.702.276-.885.483-.183.208-.281.498-.281.871v1.465c0 .373-.057.622-.183.746-.126.125-.38.194-.773.194v1.078c.83 0 1.434-.11 1.813-.318.365-.221.548-.636.548-1.23v-1.548q0-.663.253-.912c.169-.166.506-.249.984-.249v-1.16c-.492 0-.815-.084-.984-.25-.168-.151-.253-.456-.253-.884V8.766c0-.332-.042-.594-.14-.801a1.2 1.2 0 0 0-.45-.498 1.8 1.8 0 0 0-.717-.249 7 7 0 0 0-1.04-.069m-6.479 1.975c-.675 0-1.209.14-1.588.421-.38.281-.576.689-.576 1.209 0 .422.112.773.351 1.026s.618.478 1.152.688c.043.015.14.057.296.113.45.183.758.31.913.436a.6.6 0 0 1 .239.478q0 .336-.253.506-.254.168-.717.168c-.295 0-.632-.056-.984-.155a4 4 0 0 1-.885-.337l-.14 1.04c.505.296 1.18.436 2.037.436.717 0 1.265-.155 1.659-.464.393-.309.59-.759.59-1.335q0-.654-.38-1.054c-.252-.267-.632-.492-1.166-.689-.382-.15-.84-.277-1.209-.506a.47.47 0 0 1-.224-.421c0-.183.084-.324.239-.422s.365-.14.646-.14c.506 0 1.026.126 1.574.379l.365-.956q-.843-.42-1.939-.421m4.512 0c-.675 0-1.21.14-1.589.421-.38.281-.576.689-.576 1.209 0 .422.112.773.351 1.026.24.253.619.478 1.153.688.042.015.14.057.295.113.45.183.759.31.914.436a.6.6 0 0 1 .238.478q0 .336-.253.506-.252.168-.716.168a3.7 3.7 0 0 1-.984-.155 4 4 0 0 1-.886-.337l-.14 1.04c.506.296 1.18.436 2.038.436q1.054 0 1.686-.464c.394-.309.59-.759.59-1.335q0-.654-.379-1.054c-.379-.4-.632-.492-1.166-.689-.392-.153-.842-.277-1.209-.506a.47.47 0 0 1-.225-.421c0-.183.085-.324.24-.422s.364-.14.646-.14c.506 0 1.026.126 1.574.379l.337-.956q-.843-.42-1.94-.421zm-9.46.014c-.842 0-1.503.267-1.995.815s-.73 1.279-.73 2.192c0 .956.252 1.687.772 2.22.52.535 1.237.802 2.165.802.8 0 1.49-.183 2.08-.52l-.197-.984a3.66 3.66 0 0 1-1.813.492c-.492 0-.886-.155-1.167-.45-.28-.295-.435-.716-.45-1.25h3.852v-.591c0-.829-.225-1.49-.661-1.982-.45-.491-1.054-.744-1.855-.744zm-.013.983q.57 0 .885.38c.211.253.323.618.323 1.082H7.67c.042-.492.182-.857.407-1.096.253-.239.548-.366.9-.366Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/letsencrypt.svg������������������������������0000664�0000000�0000000�00000001713�14753064456�0026201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.991 0a.883.883 0 0 0-.871.817v3.02a.883.883 0 0 0 .88.884.883.883 0 0 0 .88-.88V.816A.883.883 0 0 0 11.991 0m7.705 3.109a.88.88 0 0 0-.521.174L16.8 5.231a.88.88 0 0 0 .559 1.563.88.88 0 0 0 .56-.2l2.37-1.951a.88.88 0 0 0-.594-1.534M4.32 3.122a.883.883 0 0 0-.611 1.52l2.37 1.951a.88.88 0 0 0 .56.2v-.002a.88.88 0 0 0 .56-1.56L4.828 3.283a.9.9 0 0 0-.508-.16zm7.66 3.228a5.046 5.046 0 0 0-5.026 5.045v1.488H5.787a.967.967 0 0 0-.965.964v9.189a.967.967 0 0 0 .965.964h12.426a.967.967 0 0 0 .964-.964v-9.19a.967.967 0 0 0-.964-.963h-1.168v-1.488A5.046 5.046 0 0 0 11.98 6.35m.012 2.893a2.15 2.15 0 0 1 2.16 2.152v1.488H9.847v-1.488a2.15 2.15 0 0 1 2.145-2.152zm7.382.503a.883.883 0 1 0 .07 1.763h3.027a.883.883 0 0 0 0-1.76h-3.027zM1.529 9.75a.883.883 0 0 0 0 1.76h2.999a.883.883 0 0 0 0-1.76zm10.46 6.774a1.28 1.28 0 0 1 .64 2.393v1.245a.63.63 0 0 1-1.259 0v-1.245a1.28 1.28 0 0 1 .619-2.393"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/letterboxd.svg�������������������������������0000664�0000000�0000000�00000001211�14753064456�0025772�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.224 14.352a4.45 4.45 0 0 1-3.775 2.092C1.992 16.444 0 14.454 0 12s1.992-4.444 4.45-4.444c1.592 0 2.988.836 3.774 2.092-.427.682-.673 1.488-.673 2.352s.246 1.67.673 2.352M15.101 12c0-.864.247-1.67.674-2.352-.786-1.256-2.183-2.092-3.775-2.092s-2.989.836-3.775 2.092c.427.682.674 1.488.674 2.352s-.247 1.67-.674 2.352c.786 1.256 2.183 2.092 3.775 2.092s2.989-.836 3.775-2.092A4.4 4.4 0 0 1 15.1 12zm4.45-4.444a4.45 4.45 0 0 0-3.775 2.092c.427.682.673 1.488.673 2.352s-.246 1.67-.673 2.352a4.45 4.45 0 0 0 3.775 2.092C22.008 16.444 24 14.454 24 12s-1.992-4.444-4.45-4.444z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/levelsdotfyi.svg�����������������������������0000664�0000000�0000000�00000000672�14753064456�0026341�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.494 18.913h3.52v-3.52c0-.43.35-.78.781-.78h3.52v-3.52c0-.432.35-.783.781-.783h3.52V6.791c0-.432.35-.782.782-.782h3.519V2.49c0-.432.35-.782.782-.782h3.52c.43 0 .781.35.781.782v20.724c0 .432-.35.782-.782.782H2.494a.78.78 0 0 1-.782-.782v-3.52c0-.43.35-.78.782-.78ZM.172 15.928a.587.587 0 0 1 0-.83L15.102.168a.587.587 0 0 1 .83.83l-14.93 14.93c-.23.23-.6.23-.83 0"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lg.svg���������������������������������������0000664�0000000�0000000�00000001647�14753064456�0024235�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.522 14.078h3.27v1.33h-4.847v-6.83h1.577zm6.74-1.274h1.284v1.195c-.236.09-.698.18-1.137.18-1.42 0-1.893-.721-1.893-2.186 0-1.398.45-2.221 1.869-2.221.791 0 1.24.248 1.612.722l.982-.903c-.6-.855-1.646-1.114-2.629-1.114-2.208 0-3.368 1.205-3.368 3.504 0 2.288 1.047 3.528 3.358 3.528 1.06 0 2.096-.27 2.66-.665V11.53h-2.739v1.274zM5.291 6.709a5.29 5.29 0 1 1 0 10.582 5.291 5.291 0 1 1 0-10.582m3.16 8.457a4.45 4.45 0 0 0 1.31-3.161v-.242l-.22.001H6.596v.494h2.662l-.001.015a3.985 3.985 0 0 1-3.965 3.708 3.95 3.95 0 0 1-2.811-1.165 3.95 3.95 0 0 1-1.164-2.811c0-1.061.414-2.059 1.164-2.81a3.95 3.95 0 0 1 2.81-1.164l.252.003v-.495l-.251-.003a4.475 4.475 0 0 0-4.47 4.469c0 1.194.465 2.316 1.309 3.161a4.44 4.44 0 0 0 3.16 1.31 4.44 4.44 0 0 0 3.162-1.31m-2.91-1.297V9.644H5.04v4.72h1.556v-.495zm-1.265-3.552a.676.676 0 1 0-.675.674.676.676 0 0 0 .675-.674"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/liberadotchat.svg����������������������������0000664�0000000�0000000�00000002170�14753064456�0026430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.264 2.761-1.23 9.432-1.648 1.882-1.71-11.301h-.002l-.2.042-.066.013-.132.03-.064.016a12 12 0 0 0-1.74.55l-.037.019 3.398 11.263-.158.18-1.598-.703-.105.134L3.445 6.1a11 11 0 0 0-.927 1.047 13 13 0 0 0-.552.76v.006l6.481 7.081-1.021 1.313-7.205-4.15a11.7 11.7 0 0 0-.22 2.31l6.853 2.575-1.576 2.025-4.31.02A12 12 0 0 0 2.18 21.24h.003l1.696-.373h.45l4.863-6.223 1.583.701 3.338-3.812c1.85 3.145 3.844 6.17 5.657 9.337h.453l-.008-.014 1.612.363.016-.018a11 11 0 0 0 .774-1.256 11 11 0 0 0 .353-.726l-3.788-.064-1.333-2.196 6.146-2.241v-.031l.004-.203v-.312l-.004-.064v-.067l-.003-.068-.003-.067-.003-.068-.003-.067-.005-.064-.003-.068-.007-.067-.003-.067-.006-.064-.006-.068-.006-.067-.007-.067-.006-.065a10 10 0 0 0-.113-.796v-.016l-6.506 3.72-1.047-1.725 5.737-6.493a11 11 0 0 0-.888-1.17 12 12 0 0 0-.692-.729l-4.725 7.455-1.372-2.258 2.153-7.754-.055-.021a11.6 11.6 0 0 0-2.006-.595l-.132-.027zm-.159 9.331-3.246 3.721-1.583-.659-4.483 5.708h.496l4.103-5.251 1.574.652 3.084-3.537 4.851 8.152.477-.01zm-.073 1.302-2.912 3.344-1.605-.653-3.746 4.774 12.636.007z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/liberapay.svg��������������������������������0000664�0000000�0000000�00000001470�14753064456�0025575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.32 0A2.32 2.32 0 0 0 0 2.32v19.36A2.32 2.32 0 0 0 2.32 24h19.36A2.32 2.32 0 0 0 24 21.68V2.32A2.32 2.32 0 0 0 21.68 0zm9.208 3.98-2.27 9.405a3 3 0 0 0-.073.539.85.85 0 0 0 .09.432.7.7 0 0 0 .334.302q.236.115.661.147l-.49 2.008q-1.159 0-1.82-.3-.662-.303-.947-.826a2.4 2.4 0 0 1-.278-1.2q.008-.678.188-1.445l2.074-8.67zm3.9 3.888q.915 0 1.576.277.66.277 1.085.76.425.48.629 1.126t.204 1.379v.001q0 1.19-.392 2.179a5.2 5.2 0 0 1-1.086 1.706 4.8 4.8 0 0 1-1.665 1.118q-.972.4-2.114.4-.555 0-1.11-.098l-.735 2.956H9.403l2.71-11.298q.653-.196 1.494-.351a10 10 0 0 1 1.821-.155m-.31 2.041a4.7 4.7 0 0 0-.98.098l-1.143 4.752q.277.066.685.065.638 0 1.16-.237a2.56 2.56 0 0 0 .89-.661q.366-.424.571-1.02a4 4 0 0 0 .204-1.315q0-.702-.31-1.192t-1.077-.49"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/librariesdotio.svg���������������������������0000664�0000000�0000000�00000002076�14753064456�0026643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.152 23.998c-1.164-.054-1.75.044-2.021-.48-.265-.306-.138-3.465-.185-4.694 1.702-1.365 3.42-2.688 5.145-4.025 0 2.892.147 8.186-.17 8.72-.27.56-1.33.474-2.77.479zm6.468-.62c-.304-.006-.171-6.048-.204-11.204 1.704-1.357 3.42-2.678 5.143-4.01-.028 5.924.123 14.775-.108 15.098-.334.71-1.064.543-2.467.585-1.094-.06-2.058.16-2.364-.469m8.41.018c-.174-.33-.158-7.898-.104-15.204a501 501 0 0 1 5.12 3.977c-.027 1.216.103 11.184-.165 11.18-.28.47-.641.488-2.44.488-.933-.085-1.852.18-2.411-.441M.979 15.564C.957 10.754.927 6.047.999 1.1c.028-.633.251-1.003.94-1.041.538-.07 3.012-.04 3.463.05a.87.87 0 0 1 .624.65c.097 2.718.075 6.154.097 10.776-1.717 1.341-3.431 2.678-5.144 4.024zm8.458-6.656c-.048-2.518 0-7.016.03-7.696.077-1.552 1.087-1.115 2.41-1.2 1.977-.018 2.279.097 2.5.455.246.368.204 2.598.204 4.422-1.693 1.323-3.594 2.83-5.144 4.017zm13.583-.013c-1.706-1.338-3.353-2.633-5.064-3.964.015-1.322-.064-2.744.01-3.995.107-.54.257-.836 1.16-.866 1.118-.122 2.726-.09 3.419.142.524.124.52 1.379.485 5.226z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/librarything.svg�����������������������������0000664�0000000�0000000�00000004306�14753064456�0026324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.16 0h7.68c2.66 0 3.508 0 4.708.4 1.4.5 2.552 1.65 3.052 3.05.4 1.2.4 2.05.4 4.71v7.68c0 2.66 0 3.51-.4 4.71a5.04 5.04 0 0 1-3.05 3.05c-1.2.4-2.05.4-4.71.4H8.16c-2.66 0-3.51 0-4.71-.4A5.04 5.04 0 0 1 .4 20.55C0 19.35 0 18.5 0 15.84V8.16C0 5.5 0 4.65.4 3.45A5.04 5.04 0 0 1 3.45.4C4.65 0 5.5 0 8.16 0m2.834 6.682v-.297l-.023-.321q0-.138-.091-.412a1.6 1.6 0 0 1-.092-.481q0-.137.115-.23a6 6 0 0 0 .24-.194q.149-.126.424-.126.16 0 .527.046.32 0 .481-.138.069-.045.252-.183c.183-.138.183-.199.183-.32q0-.3-.332-.482-.332-.183-.836-.183l-.94.069q-.32 0-1.214.149t-1.397.149a5 5 0 0 1-.7-.08 5 5 0 0 0-.79-.08q-.252.09-.515.171-.264.08-.263.24l.045.207q.138.297.413.458l.183.091q.137.046.23.046.113 0 .343-.023.184 0 .343.092l.252.229q.184.206.264.4t.08.356q0 .114-.046.39a3 3 0 0 0-.046.434q0 .207.104.596.102.39.103.641-.024.39-.023.78v.778q0 .297.046.779.045.48.045.755l-.045.962-.023 1.535-.07 1.26q0 .253.093.664.09.412.091.664 0 .252-.069.642-.068.39-.068.618 0 .114.023.298a.8.8 0 0 1 0 .275.56.56 0 0 1-.126.263l-.218.264q-.206.252-.458.389-.252.138-.71.16-.458.023-.665.195-.206.172-.206.263 0 .596 1.1.596l.16-.023a35 35 0 0 1 1.317-.137q.333-.023.768-.023h.275q.413.023.825.023h2.2q.32-.024.606-.058a4 4 0 0 1 .516-.034q.297 0 .825.149.526.149.893.103.023 0 .264-.069a1.7 1.7 0 0 1 .47-.068q.022 0 .308.034.287.034.47.034.092 0 .32-.046.574-.114.803-.435a.77.77 0 0 0 .16-.435 4 4 0 0 1-.069-.435 3 3 0 0 1 0-.504q.115-.229.252-.458.115-.298.16-.813.046-.516.081-.687a3 3 0 0 1 .195-.527q.16-.356.16-.607a1 1 0 0 0-.114-.481q-.115-.206-.298-.206-.115 0-.367.206-.114.09-.195.343a3 3 0 0 1-.126.344q-.274.412-.55.802a4 4 0 0 0-.229.435q-.228.48-.366.664-.046.069-.367.344a1.1 1.1 0 0 0-.217.24q-.104.15-.287.47l-.39.206-.274.069a2 2 0 0 0-.367.114q-.229.092-.343.115a1.6 1.6 0 0 1-.298.022q-.207 0-.619-.068a4 4 0 0 0-.664-.069l-.481.023q-.825 0-1.215-.893-.251-.573-.39-1.787a2.3 2.3 0 0 1-.022-.366q0-.184.023-.619 0-.115.057-.48a4 4 0 0 0 .057-.596v-1.604q0-.206.023-.527.024-.32.023-.458a2 2 0 0 0-.023-.343q0-.138-.091-.39a1.2 1.2 0 0 1-.092-.389q0-.114.046-.32.045-.207.046-.321 0-.252-.023-.688a14 14 0 0 1-.023-.687q0-.297.092-.733a3.6 3.6 0 0 0 .091-.71"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/libreoffice.svg������������������������������0000664�0000000�0000000�00000000610�14753064456�0026071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.365 0a.6.6 0 0 0-.555.352.58.58 0 0 0 .128.635l4.985 4.996a.6.6 0 0 0 .635.133.59.59 0 0 0 .363-.53V.577A.605.605 0 0 0 21.335 0zM2.661 0a.59.59 0 0 0-.582.59v22.82a.59.59 0 0 0 .582.59h18.67a.59.59 0 0 0 .59-.59V8.716a.6.6 0 0 0-.17-.42L13.674.182a.6.6 0 0 0-.42-.181zm.59 1.184h9.754l7.733 7.77v13.863H3.251z"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/libreofficebase.svg��������������������������0000664�0000000�0000000�00000001033�14753064456�0026724�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 13h-1v-1h1zm0 1h-1v1h1zm0 2h-1v1h1zm-.6-16H15l7 7V0zM13 0l9 9v12c0 1.662-1.338 3-3 3H5c-1.662 0-3-1.338-3-3V3c0-1.662 1.338-3 3-3zM6 11c0 .552 1.343 1 3 1s3-.448 3-1v-1c0-.552-1.343-1-3-1s-3 .448-3 1zm0 2c0 .552 1.343 1 3 1s3-.448 3-1v-1c0 .552-1.343 1-3 1s-3-.448-3-1zm0 2c0 .552 1.343 1 3 1s3-.448 3-1v-1c0 .552-1.343 1-3 1s-3-.448-3-1zm0 2c0 .552 1.343 1 3 1s3-.448 3-1v-1c0 .552-1.343 1-3 1s-3-.448-3-1zm12-6h-5v7h5zm-3 1h-1v1h1zm0 4h-1v1h1zm0-2h-1v1h1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/libreofficecalc.svg��������������������������0000664�0000000�0000000�00000000516�14753064456�0026721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 13H7v-1h2zm6-3h-2v1h2zm-6 0H7v1h2zm3 0h-2v1h2zm3-10 7 7V0zM9 14H7v1h2zm5 3h1v-3h-1zm2 0h1v-1h-1zm-4 0h1v-2h-1zm1-17 9 9v12c0 1.662-1.338 3-3 3H5c-1.662 0-3-1.338-3-3V3c0-1.662 1.338-3 3-3zm5 13h-7v5h7zm-2-4H6v7h4.5v-1H10v-1h.5v-1H10v-1h2v.5h1V12h2v.5h1z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/libreofficedraw.svg��������������������������0000664�0000000�0000000�00000000537�14753064456�0026757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 0C3.338 0 2 1.338 2 3v18c0 1.662 1.338 3 3 3h14c1.662 0 3-1.338 3-3V9l-9-9zm1 12a3 3 0 0 1 3-3c1.6 0 2.897 1.257 2.984 2.837L11.5 11l-2.298 3.98c-.068.004-.133.02-.203.02a3 3 0 0 1-3-3zm3.191 5 2.31-4 2.31 4H9.19zM18 16h-3.613L13 13.597V11h5zm4-16v7l-7-7zm-5 15h-3v-3h3z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/libreofficeimpress.svg�����������������������0000664�0000000�0000000�00000000524�14753064456�0027500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 0v7l-7-7zm-9 0 9 9v12c0 1.662-1.338 3-3 3H5c-1.662 0-3-1.338-3-3V3c0-1.662 1.338-3 3-3zM7 17H6v1h1zm0-2H6v1h1zm0-2H6v1h1zm3 4H8v1h2zm0-2H8v1h2zm0-2H8v1h2zm6-1v-1H8v1zm2 1h-7v5h7zm0-4H6v1h12zm-4 6.707 1 1 2.207-2.207-.707-.707-1.5 1.5-1-1-2.207 2.207.707.707z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/libreofficemath.svg��������������������������0000664�0000000�0000000�00000000664�14753064456�0026754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 0v7l-7-7zm-9 0 9 9v12c0 1.662-1.338 3-3 3H5c-1.662 0-3-1.338-3-3V3c0-1.662 1.338-3 3-3zM8 17H6v1h2zm5 0h-2v1h2zm2.293-1.293a1 1 0 0 0 1.414-1.414l-.793-.793.793-.793a1 1 0 0 0-1.414-1.414l-.793.793-.793-.793a1 1 0 1 0-1.414 1.414l.793.793-.793.793a1 1 0 0 0 1.414 1.414l.793-.793zM18 17h-2v1h2zm0-8H9.862L8 13.653 7.338 12H6v1h.662L8 16.347 10.539 10H18z"/></svg>����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/libreofficewriter.svg������������������������0000664�0000000�0000000�00000000440�14753064456�0027327�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 0v7l-7-7zm0 9v12c0 1.662-1.338 3-3 3H5c-1.662 0-3-1.338-3-3V3c0-1.662 1.338-3 3-3h8zM6 10h5V9H6zm0 2h5v-1H6zm0 2h5v-1H6zm5 3H6v1h5zm7-2H6v1h12zm0-6h-6v5h6zm-1.5 2a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1M14 11l-1 2h3z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/libretranslate.svg���������������������������0000664�0000000�0000000�00000001224�14753064456�0026635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.784 0q-1.717 4.666-8.892 7.991l1.362 1.523q5.395-2.638 7.819-5.996 2.478 3.186 8.195 6.125l1.276-1.577q-6.103-2.928-8.42-6.242.118-.183.483-1.255ZM9.547 7.991q-.322 3.508-1.448 5.803-1.116 2.295-3.669 4.569l1.427 1.276q2.842-2.606 4.194-5.556 1.18 1.03 2.413 2.65l1.459-1.309q-1.148-1.459-3.229-3.25.547-2.027.762-3.98zm7.1 0q-.171 4.151-1.415 6.393-1.245 2.241-3.733 3.893l1.405 1.298q3.572-2.606 4.709-5.824 1.726 3.464 4.87 5.867l1.404-1.34q-1.78-1.32-3.014-2.79-1.222-1.48-1.866-3.046-.633-1.576-.633-2.145l.075-.75q.086-.838.086-1.395zm-16.534.81V24h9.444v-1.71H2.05V8.803Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/libretube.svg��������������������������������0000664�0000000�0000000�00000000642�14753064456�0025602�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.12 0a.52.52 0 0 0-.514.52V5.52c0 .187.101.36.264.452l9.877 5.577a.52.52 0 0 1 0 .905L1.87 18.03a.52.52 0 0 0-.264.453v4.997a.52.52 0 0 0 .783.448l19.818-11.616a.378.378 0 0 0 0-.652L2.388.072A.5.5 0 0 0 2.12 0zm-.005 7.946a.52.52 0 0 0-.509.52v7.056c0 .398.43.649.776.452l6.222-3.528a.52.52 0 0 0 0-.904L2.382 8.014a.5.5 0 0 0-.267-.068z"/></svg>����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/librewolf.svg��������������������������������0000664�0000000�0000000�00000003422�14753064456�0025611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12A12 12 0 0 0 12 0m.03 2.417c2.54 0 4.793.91 6.62 2.672.88.85 1.47 1.654 1.975 2.695.683 1.409.96 2.634.96 4.25 0 2.129-.615 3.985-1.891 5.712a11.6 11.6 0 0 1-1.612 1.695 9.7 9.7 0 0 1-4.774 2.077c-.59.078-1.982.087-2.523.018-1.681-.216-3.289-.886-4.692-1.956-.458-.349-1.316-1.213-1.691-1.702-1.05-1.369-1.703-2.923-1.918-4.566-.092-.703-.092-1.996 0-2.639.464-3.213 2.486-5.968 5.39-7.345 1.35-.64 2.587-.91 4.157-.91m-.032 1.45a7.94 7.94 0 0 0-4.05 1.06c-1.165.657-2.37 1.863-3.03 3.034a8.5 8.5 0 0 0-.981 2.82c-.091.613-.093 1.83-.004 2.417a8.3 8.3 0 0 0 1.27 3.309c.353.531.342.526.653.348.557-.319.702-.473 1.005-1.067.355-.695.734-1.302 1.076-1.723.396-.487.45-.573.648-1.033.1-.231.28-.57.398-.755l.217-.334-.28-.275c-.372-.365-.682-.78-.74-.99-.06-.216.011-.336.29-.498.283-.163.485-.21 1.24-.287.368-.038.767-.107.893-.155.125-.047.498-.251.83-.452.958-.58 1.039-.61 1.613-.598.485.01.486.01.773-.164.603-.364 1.469-1.021 2.607-1.98.219-.183.429-.328.468-.32.16.03.457.757.502 1.231.027.288-.029.573-.2 1.018-.046.122-.067.238-.047.258.049.049.216-.16.216-.27 0-.14.093-.156.219-.038.091.086.17.11.354.11.201 0 .25.02.329.124.133.177.164.661.063.968-.1.298-.4.642-.67.77-.244.114-.736.595-.967.943a11 11 0 0 0-.367.617c-.114.207-.305.518-.425.693-.235.344-.437.823-.631 1.502-.115.398-.124.502-.129 1.391-.006 1.075-.061 1.338-.352 1.669-.33.376-.66 1.202-.687 1.723a4 4 0 0 1-.14.886c-.032.104.027.103.38-.008a8.2 8.2 0 0 0 2.672-1.39c.43-.334 1.172-1.084 1.483-1.497.845-1.12 1.42-2.523 1.588-3.878.082-.653.035-2.034-.09-2.633-.33-1.587-1.039-2.928-2.156-4.076-.697-.715-1.331-1.187-2.148-1.596-1.238-.62-2.3-.872-3.693-.873m1.516 5.314-.696.097-.433.555.696-.098z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/libuv.svg������������������������������������0000664�0000000�0000000�00000034571�14753064456�0024756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.534 19.21c-.573.117-1.183.506-1.656.594-1.044.193-1.66.007-1.108-.22.8-.332 3.44-.415 3.716-2.374s.083-2.843-.055-3.34a7 7 0 0 0-.351-.891 4 4 0 0 0-.134-.523 2 2 0 0 1-.074-.228s-.034-.241.076-.476c.098-.208.433-.659.456-1.095v-.08a1 1 0 0 0-.008-.087l-.002-.026a.8.8 0 0 0-.374-.542c-.123-.082-.29-.107-.382-.224.073-.23.306-.313.404-.501.06-.167.011-.343-.081-.503-.178-.2-.528-.372-.842-.49-.393-.147-.792-.264-1.062-.475-.285-.152-.477-.445-.302-.833a.7.7 0 0 0 .064-.3v-.028q-.002-.029-.006-.055l-.008-.042-.006-.024-.008-.027c-.072-.243-.453-.31-.59-.323-.307-.027-.506-.111-.67-.163.132.069.264.16.433.228.106.044.26.07.389.112 0 0 .239.048.304.214a.6.6 0 0 1 0 .403l-.01.027c-.024.073-.05.143-.056.215-.022.286.153.434.246.673.167.159.406.324.736.473.298.134.653.215.874.348.127.077.36.263.354.399-.004.104-.195.245-.272.348-.056.074-.083.171-.132.24-.043.069-.099.112-.162.112-.083 0-.271.032-.147.041s.446.161.446.161c.435.18.727.514.567.99-.134.399-.442.732-.463 1.17-.023.467.19.85.218 1.22.046.623-.043 1.051-.164 1.52-.056.218-.086.434-.136.647-.213.906-.76 1.299-1.5 1.718-.322.181-.666.516-1.01.622-.056.017-.141-.009-.192 0-.317.057-.602.215-.927.274-.306.057-.628.03-.991.121-.184.066-.42.165-.559.223q-.319.147-.631.3l-.693.396s-.386.224.042.059c.344-.134 1.527-.722 1.031-.377-.342.172-.527.416-.83.624 0 0-1.016.504-1.169.645-.167.155-.372.069-.507.22a1.2 1.2 0 0 1-.49.332c-.138.046-.294.35-.506.506-.211.156-.671.11-1.076.285a2.4 2.4 0 0 1-.824.177q-.061.006-.116.007H9.56a1.6 1.6 0 0 1-.556-.096c-.169-.062-.231-.03-.193-.01s.148.124.148.124c-.472 0-.601-.315-.819-.548.1-.014.381.055.238-.028-.283-.135-.827-.145-.838-.47-.008-.255.11-.2.11-.2.197.346.809.38 1.254.375.83-.01 1.393-.466 1.937-.723a10 10 0 0 0 .382-.246v.004c.171-.112.345-.22.492-.355.256-.236.429-.543.655-.804a.7.7 0 0 1 .146-.153q.095-.09.208-.164l.003.006.03-.02-.006-.01c.548-.311 1.058-.655 1.489-1.072l.003-.005c.062-.056.386-.418.542-.593.185-.246.318-.557.395-.87.028-.114.01-.251.054-.374.069-.19.242-.36.355-.548.117-.195.195-.408.273-.622.341-.938.736-1.685 1.473-2.191.355-.244.787-.402 1.037-.772a1.67 1.67 0 0 1-.703.408c-.811.267-1.338.95-1.603 1.385a5.2 5.2 0 0 0-.477 1.22 4 4 0 0 0-.355-1.395c-.16-.37-.303-.761-.6-.996 0 0-.011.001-.058-.027-.046-.027.767-.048.767-.048.143.006.287.026.434.045a.4.4 0 0 1 .103.006c.447.079.91-.088 1.2-.298.15-.11.412-.197.628-.256.004-.01.025-.02.08-.03 0 0 .33-.104.682-.2a3.3 3.3 0 0 0 .533-.175.8.8 0 0 0 .187-.162c.104-.127.106-.28.192-.498.085-.217.216-.386.218-.573.006-.611-.573-1.098-1.2-.772.617-.16 1.056.142.982.723-.092.716-1.172 1.248-1.829 1.518-.26.107-.565.243-.873.274-.443.045-.846-.05-1.227-.025-.49.032-.815.291-1.228.324-.355.028-.307-.212-.615-.239-.063-.036-.257 0-.45-.01-.532.14-.874-.103-1.309-.299-.314-.141-.648-.27-.982-.299-.838-.07-1.348.046-2.033-.027-.193-.02-.594-.045-.784-.116-.593-.222-1.047-.141-1.69-.15-.469-.007-.903-.032-1.196.02-.08.014-.16.034-.245.05-.628.109-1.583.166-1.555.721.046-.032.033-.118.109-.124-.003.102-.006.204.027.274-.365-.01-.58-.262-.573-.548.012-.487.796-.69 1.337-.822.542-.13 1.105-.284 1.5-.348-.947.139-1.95.228-2.673.572a1 1 0 0 1-.021-.108c-.058-.263-.183-.666-.27-1.058-.102-.451.055-1.242.055-1.242l.004.004c.065-.402.148-.58.228-.821.172-.513.726-.674 1.114-.723a1.74 1.74 0 0 0-.668.901q-.025.207-.039.377c.294-.914 1.113-1.256 1.113-1.256l.262-.283-.003.013c.452-.438 1.05-.777 1.809-.798.383-.01.845.09.844.466 0 .212-.167.392-.393.491a.3.3 0 0 0 .183-.019l.235-.263c.078-.192.07-.435-.06-.581.346-.296.884.036.845.428.101-.085.163-.247.094-.375.465-.273.726.39 1.194.235-.044-.133-.27-.106-.338-.217.612-.087 1.15.128 1.764.08q.057.05.124.1c-1.149.126-.215.126-.215.126.147-.014.5-.038.638-.014.225.04.37-.014.569-.092.004.009.024.008.036-.014.103-.041.222-.086.373-.127a1 1 0 0 0 .174-.042l.024-.005.004-.004c.079-.027.153-.06.216-.09.58-.279 1.06-.934 1.554-1.278.819-.569 1.595.134 2.165.59l-.004.006c.143.098.332.218.537.344.537.233 1.245.437 1.623.811.302.299.405.684.535 1.083.122.373.357.702.49 1.12a.16.16 0 0 0 .05-.092c-.004-.036-.01-.073 0-.097l.008.007a1 1 0 0 0-.043-.249c-.112-.229-.309-.49-.285-.693 0 0 .697.36 1.488.718.273.123.522.326.74.559l.063-.002a.14.14 0 0 0-.004.065c.384.43.657.944.752 1.24a4 4 0 0 0 .16.412h.001q.02.038.032.074c.115.247.227.448.258.503.1.124.181.285.268.42a11.38 11.38 0 0 1-2.465 8.17q-.133.016-.378.066zm-.718 1.12c-.549.18-1.11.516-1.467.55-1.076.102-1.27-.376-.41-.455.325-.03.805-.067 1.188-.248.564-.269 1.142-.529 1.528-.722q-.396.46-.839.875m-11.735.052c-.092.03-.092-.015-.092-.015s-.165-.236-.19-.456c-.026-.218.03-.412.084-.44.055-.03.067.097.112.256.045.16.268.49.268.49.032.067-.09.134-.182.165m.575.1c-.105.036-.105-.016-.105-.016s-.189-.269-.217-.519c-.03-.247.036-.468.099-.5.063-.035.076.11.127.29.051.183.307.558.307.558.036.077-.105.153-.211.188zm.194-.697c-.036-.313.048-.593.129-.636.08-.043.098.14.162.37.065.231.39.706.39.706.046.098-.134.194-.27.238-.135.044-.134-.02-.134-.02s-.24-.34-.277-.658m4.669-3.587c.056-.05.116.056.226.176.11.122.5.313.5.313.063.046-.062.162-.164.232-.1.07-.117.03-.117.03s-.287-.136-.396-.321c-.108-.183-.106-.379-.05-.43zm-.924.492c.069-.065.143.073.281.229.14.16.631.414.631.414.08.06-.076.21-.203.3-.127.091-.148.038-.148.038s-.359-.182-.495-.423c-.136-.237-.136-.493-.066-.558m-.825 1.11c-.122-.256-.111-.52-.04-.584.07-.064.138.083.266.255.131.175.602.467.602.467.075.067-.084.215-.212.301-.128.087-.147.03-.147.03s-.344-.21-.469-.47zm-.754.63c-.102-.269-.075-.54-.003-.6.073-.06.128.097.24.28.115.189.55.522.55.522.069.075-.094.214-.224.292-.129.078-.142.018-.142.018s-.318-.24-.421-.512m-1.017 1.654c-.136.041-.134-.021-.134-.021s-.23-.331-.257-.637c-.026-.304.066-.574.148-.614s.094.136.15.358c.059.225.37.686.37.686.043.094-.14.186-.277.228m.275-1.059c-.066-.304-.002-.59.08-.642.082-.054.116.124.205.34.089.218.48.646.48.646.058.09-.125.21-.267.273-.14.062-.145-.004-.145-.004s-.286-.305-.353-.613m3.688-7.155s.08.013.043.126c-.035.112-.042.46.066.61.11.15-.075.093-.219-.059-.144-.15-.246-.43-.215-.619 0 0-.008-.08.325-.058m-.51.921c.176.195-.092.143-.316-.049-.223-.191-.406-.565-.39-.834 0 0-.022-.11.447-.13 0 0 .114.007.079.17-.033.163.006.65.18.843m-1.19 1.016c1.017.067 1.747-.286 2.264-.647.136-.095.316-.326.546-.174-.098.203-.358.337-.573.448-.377.195-.712.365-1.146.473.732-.112 1.253-.417 1.8-.697.068.14.143.423.192.662h.008s.05.133.034.264c.003.063-.01.116-.055.146a.2.2 0 0 1-.055.052c-.2.13-.794.42-1.27.455q-.023.001-.046.004l-.035.01-.001-.006c-.432.05-.711.228-.16.137.553-.091 1.736-.292 1.305-.13h.002c-.538.21-1.245.415-1.938.348-.448-.043-.91-.263-1.31-.473-.397-.21-.775-.485-1.2-.573-.323-.067-.59.027-.873.075-.188.032-.45.108-.563-.01-.048-.056-.01-.115-.01-.115.108-.266.421-.423.682-.498.819-.235 1.611.198 2.401.25zm.23-.891c.171.248-.126.148-.353-.105s-.38-.71-.323-1.017c0 0-.01-.13.529-.08 0 0 .129.025.066.206-.064.182-.09.747.08.996zm-1.084-.119c.169.283-.146.159-.376-.132-.23-.29-.367-.802-.284-1.136 0 0-.002-.144.58-.064 0 0 .137.035.057.232-.08.196-.145.818.023 1.1m-1.12-.156c.172.286-.147.164-.38-.13-.234-.292-.376-.812-.293-1.155 0 0-.003-.145.585-.072 0 0 .14.034.059.236-.08.2-.143.836.029 1.121m-1.027.323c.212.37-.159.213-.441-.166s-.472-1.053-.397-1.5c0 0-.011-.19.662-.099 0 0 .161.042.081.306-.08.263-.116 1.089.095 1.46zm-1.09-.275c.211.323-.16.2-.441-.128s-.467-.927-.389-1.332c0 0-.01-.171.665-.12 0 0 .162.032.08.272s-.125.985.085 1.308m-1.154-.376c.149.277-.14.154-.345-.133-.205-.285-.318-.787-.232-1.115 0 0 .002-.14.54-.058 0 0 .127.035.046.226-.08.193-.158.802-.009 1.08m-.88-.24c.14.221-.114.125-.303-.102s-.308-.628-.248-.892c0 0-.005-.113.46-.053 0 0 .11.026.05.182-.06.154-.1.644.04.865zm-.925.16c.17.248-.126.149-.353-.105s-.38-.71-.322-1.017c0 0-.01-.13.528-.08 0 0 .129.025.066.206-.064.182-.09.747.081.996m-.746-.066c.175.195-.093.143-.316-.049-.224-.191-.407-.565-.39-.834 0 0-.023-.111.446-.13 0 0 .115.007.08.17-.034.163.005.65.18.843m10.24 10.242c-.516.179-1.435.627-2.173 1.003q-.265.012-.533.012C5.69 23.423.577 18.31.577 12c0-4.888 3.07-9.057 7.387-10.688q.033.03.07.058c.048.039.129.059.17.109.057.067.033.203.058.287.075.259.235.497.501.691.04.029.114.043.148.08.074.085.052.227.108.324.06.102.16.226.284.321.067.052.169.08.232.143.052.05.066.14.103.216.1.204.362.44.488.653a.5.5 0 0 1 .041.088c.053.108.18.338.353.444 0 0 .018.319.336.682-.644-.035-1.265-.399-1.743-.037-.138-.15-.58-.269-.77-.058-.139-.242-.88-.398-1.025-.014-1.053-.472-2.325.202-2.734.878a3 3 0 0 0-.214.114 1.2 1.2 0 0 0-1.102.187c-.417.301-.853 1.65-.778 2.584.008.1.198.336.266.81.068.469.12.623.12.623-.093.162-.204.234-.219.423-.033.41.318.632.646.842.117.054.249.093.392.099.087.137.42.6.973.6l.04-.001c.211.177.431.225.28.006a.4.4 0 0 1-.034-.059.9.9 0 0 0 .334.13c.002 0 .054.013.097.013.015 0 .06 0 .076-.035s-.016-.072-.027-.084c-.044-.051-.094-.184-.131-.307q.06.112.134.205c.262.322.63.475.425.154a1 1 0 0 1-.122-.392.95.95 0 0 0 .562.33c.235.223.528.315.352.077a.6.6 0 0 1-.091-.225c.142.17.382.389.676.389h.027c.202.136.371.158.22-.038a.7.7 0 0 1-.117-.33c.134.272.39.646.834.767.003 0 .08.022.143.022q.073 0 .094-.04c.022-.038-.006-.083-.016-.098a1 1 0 0 1-.078-.16c.2.117.346.127.191-.063a.75.75 0 0 1-.14-.379c.108.29.329.695.764.96.003.002.081.04.168.04a.25.25 0 0 0 .112-.026.1.1 0 0 0 .053-.067c.022-.09-.063-.22-.071-.23a2 2 0 0 1-.134-.35l.003.003c.315.254.723.371.471.118-.153-.154-.212-.417-.217-.632.092.257.315.704.778.792.003 0 .075.014.128.014.029 0 .064-.003.077-.031.005-.012.007-.032-.014-.055a.8.8 0 0 1-.11-.251q.033.025.067.049c.224.147.489.224.523.176.072.06.184.136.337.204q.021.048.04.098s.07.198.098.305c-.363-.094-.984-.276-1.446-.174-.365.08-1.317.606-1.086.976a.2.2 0 0 0 .057.056l.014.005a1 1 0 0 0 .42.075l.061-.001a3 3 0 0 0 .442-.07c.254-.084.482-.034.482-.034l-.004.003q.272.032.569.185c.212.107.5.285.573.373.132.16-.07.532-.146.761l-.013.042-.005.019-.039.1-.033-.047c-.072-.121-.11-.228-.148-.179s-.04.244.032.427l.026.055c-.082.15-.182.307-.287.458a1.2 1.2 0 0 1-.204-.234c-.093-.16-.142-.3-.19-.235-.048.064-.05.322.042.565a.9.9 0 0 0 .123.213 5 5 0 0 1-.307.352 1.7 1.7 0 0 1-.276-.345c-.089-.178-.135-.33-.185-.265s-.06.338.024.603c.034.108.094.207.152.287a17 17 0 0 1-.345.32 1.5 1.5 0 0 1-.178-.284c-.079-.192-.116-.355-.17-.293-.052.063-.075.347-.005.63q.028.105.075.199-.181.162-.34.3a1.3 1.3 0 0 1-.072-.183c-.062-.23-.085-.419-.146-.36-.061.056-.114.361-.069.685q.006.047.017.093l-.03.026q-.104.091-.222.21a1 1 0 0 1-.042-.164c-.04-.24-.045-.43-.108-.385-.062.045-.137.34-.122.67q.003.077.017.155-.138.156-.267.313A2 2 0 0 1 8 19.008c-.045-.25-.055-.45-.119-.401-.058.044-.122.312-.115.623-.064.047-.147.264-.15.51a1 1 0 0 0 .035.246c-.042.058-.114.099-.164.17-.261.365-.155.8.409.896.173.532.61.79 1.282.797.09 0 .185-.03.273-.025.1.007.182.047.273.05.49.015.746-.14 1.118-.25.278-.08.564-.106.737-.173.265-.104.39-.389.6-.523.079-.05.226-.074.355-.15.11-.064.204-.18.3-.224.085-.038.225-.03.328-.074.17-.075.36-.235.573-.35a17 17 0 0 1 1.282-.622c.227-.1.467-.333.6-.348.158-.018.341.113.464.1.25.297.338.713.327 1.248.015.001.004.132.004.132s.087 1.148-1.705 1.768zM7.583.205c.188.052.397.159.197.477-.122-.131-.164-.304-.197-.477m.358.42c.06-.105 0-.159.032-.222.539.07.585.448.352.984-.359-.121-.455-.361-.523-.605C7.86.72 7.904.69 7.94.625zm.588.106c.502.221.58.776.234 1.499a.9.9 0 0 1-.278-.274c-.053-.082-.127-.216-.11-.326.01-.075.07-.177.1-.261.089-.244.123-.463.054-.638m2.403 2.105c-.009-.026.01-.025.031-.045.75.152.81.884.487 1.435-.152.261-.302.399-.536.326-.194-.06-.22-.217-.314-.324.382-.556.375-.966.332-1.392m-.866-.55c-.004-.068-.016-.144.011-.21a.7.7 0 0 1 .27.07c.422.223.596 1.018.351 1.486-.105.2-.211.298-.408.241-.317-.09-.409-.45-.537-.599.346-.368.326-.692.313-.988M9.05 1.287l.02-.01c.825.29 1.299.84.549 1.85-.286-.144-.447-.335-.521-.552-.044-.127-.078-.143-.048-.3.064-.341.085-.717 0-.988m3.201 4.238-.052.024c-.1.051-.206.082-.306.1-.62-.134-.807-.84-.807-.84.58-.256.907-.99.7-1.393.006-.015.02-.012.033-.01.263.117.54.311.673.522.256.399.331 1 .119 1.482-.095.022-.156.044-.232.07l-.04.012-.07.026-.007.003zm1-.501-.122.104c-.036.068-.145.158-.284.217.11-.335.124-.691.132-.955.228.119.38.282.468.467l-.087.075a.6.6 0 0 0-.163-.194q.047.14.057.286zM12 .577c5.596 0 10.251 4.023 11.232 9.335a2 2 0 0 0-.358-.198c-.28-1.248-.882-2.037-2.118-2.487-.414-.151-.807-.326-1.216-.504.024-1.328-1.52-1.3-2.482-1.984-.418-.298-.893-.848-1.371-.95-.926-.197-1.495.448-2.042.899-.134-.146-.335-.29-.627-.42 0 0-.522-.744-.765-.884a.1.1 0 0 1-.034-.026c-.134-.063-.303-.098-.422-.177-.117-.077-.14-.26-.257-.348a1 1 0 0 0-.225-.122c-.095-.038-.256-.03-.351-.083-.117-.064-.127-.272-.211-.376a.84.84 0 0 0-.408-.273c-.08-.026-.198-.028-.27-.066-.079-.043-.098-.177-.16-.26-.143-.192-.384-.341-.66-.439-.06-.02-.139-.02-.182-.05-.051-.034-.057-.119-.088-.184C9.945.718 10.956.577 12 .577m11.343 10.068c-.116-.199-.223-.39-.263-.559q.118.079.212.172.03.192.051.387M12 0a12 12 0 0 0-3.55.535.3.3 0 0 0-.044-.062c-.103-.1-.226-.177-.482-.112A.65.65 0 0 0 7.52.11l-.006.01c.025.233.058.468.235.629l-.003.028C3.22 2.494 0 6.87 0 12c0 6.628 5.372 12 12 12 6.627 0 12-5.372 12-12S18.627 0 12 0M5.9 6.312s-.471.107-.6.942c0 0-.022.42.11.328-.111-.506.37-.735.48-.787.155-.069.283-.046.293.086.01.142-.152.205-.2.352.172-.098.558-.326.518-.623-.03-.218-.235-.412-.6-.298zm6.206.512c-.81-.475-2.907-.393-3.4-.43-.484-.038-.726.579-.726.579-.007.13.1-.02.1-.02.317-.57.595-.466.595-.466 1.003.293 1.182 1.767 1.224 2.108.041.34.127.119.127.119.097-.848-.52-1.882-.65-2.015-.13-.131-.007-.206.408-.09 1.247.35 1.364 2.349 1.44 2.59.075.242.122.01.122.01-.17-1.837-.868-2.29-1.054-2.543-.077-.105.554-.12.831.06 1.568 1.013 1.392 2.953 1.534 2.676.143-.283-.395-2.038-1.15-2.636-.152-.119.524.09.773.319 1.18 1.09 1.324 2.271 1.415 2.612.09.34.133.225.133.225.016-1.155-.899-2.617-1.722-3.098m2.274-.804c.174-.094.379-.707.8-.452.314.189.463.236.463.236s-.219.062-.319.226-.218.29-.566.239c-.366-.055-.433.003-.617.033 0 0 .065-.187.239-.282m-.673.49c.269.059.516.163.764.324.275.179.573.507.983.474.13-.01.368-.137.463-.2.12-.078.404-.263.328-.547-.034-.126-.184-.147-.273-.25-.124-.143-.12-.283-.218-.448.216.044.34.172.572.2a4 4 0 0 0-1.31-.797c.04-.022.065-.113.192-.15.115-.033.484.024.246-.025-.24-.067-.389.002-.546.1-.362.226-.656.745-1.037.971-.165.099-.327.076-.464.25.089.177.18.072.3.099zm2.838-.323c-.09.052.057.1.082.125.104.102.336.29.409.448.15.323.103.817-.164.996-.18.12-1.06.449-1.446.448-1.083-.001-1.193-1.191-1.855-1.594.012.114.095.353.19.476.372.486.727 1.487 1.773 1.32.37-.059 1.061-.314 1.339-.488.301-.188.525-.909.218-1.308-.138-.178-.467-.405-.546-.423"/></svg>���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lichess.svg����������������������������������0000664�0000000�0000000�00000001633�14753064456�0025260�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.457 6.161a.237.237 0 0 0-.296.165c-.8 2.785 2.819 5.579 5.214 7.428.653.504 1.216.939 1.591 1.292 1.745 1.642 2.564 2.851 2.733 3.178a.24.24 0 0 0 .275.122c.047-.013 4.726-1.3 3.934-4.574a.3.3 0 0 0-.023-.06L18.204 3.407 18.93.295a.24.24 0 0 0-.262-.293c-1.7.201-3.115.435-4.5 1.425-4.844-.323-8.718.9-11.213 3.539C.334 7.737-.246 11.515.085 14.128c.763 5.655 5.191 8.631 9.081 9.532.993.229 1.974.34 2.923.34 3.344 0 6.297-1.381 7.946-3.85a.24.24 0 0 0-.372-.3c-3.411 3.527-9.002 4.134-13.296 1.444-4.485-2.81-6.202-8.41-3.91-12.749C4.741 4.221 8.801 2.362 13.888 3.31c.056.01.115 0 .165-.029l.335-.197c.926-.546 1.961-1.157 2.873-1.279l-.694 1.993a.24.24 0 0 0 .02.202l6.082 10.192c-.193 2.028-1.706 2.506-2.226 2.611-.287-.645-.814-1.364-2.306-2.803-.422-.407-1.21-.941-2.124-1.56-2.364-1.601-5.937-4.02-5.391-5.984a.24.24 0 0 0-.165-.295"/></svg>�����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lidl.svg�������������������������������������0000664�0000000�0000000�00000001506�14753064456�0024551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm.209.209h23.582v23.582H.209zm11.789.625C5.83.834.83 5.834.83 12.002s5 11.168 11.168 11.168 11.167-5 11.168-11.166C23.165 5.837 18.166.837 12 .834zm.002.709c5.777 0 10.46 4.682 10.46 10.459v.004c-.004 5.773-4.686 10.452-10.46 10.453-5.777 0-10.46-4.68-10.46-10.457S6.222 1.543 12 1.543M9.229 7.85c-.645 0-1.166.521-1.166 1.166v.004c0 1.044 1.261 1.567 1.999.829s.215-2-.829-1.999zM2.73 10.059v.71h.551v2.465h-.55v.713h4.644v-.65l.537-.54 1.486 1.491-.55.547.357.36 2.973-2.977v-.713l-.826.83-1.848-1.848-2.129 2.133v-.576l-1.904 1.06V10.77h.549v-.711zm8.905 0v.71h.549v2.465h-.555v.713h3.129c2.325 0 2.355-3.888.008-3.888zm4.963 0v.71h.55v2.465h-.55v.713h4.648v-1.943l-1.906 1.06V10.77h.55v-.711zm-2.43 1.21h.133c.687 0 .685 1.461.023 1.461h-.156z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lifx.svg�������������������������������������0000664�0000000�0000000�00000001610�14753064456�0024563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.128 8.2a3.1 3.1 0 0 0-2.212.92A3.15 3.15 0 0 0 0 11.347a3.14 3.14 0 0 0 .916 2.226l.27.266.014-.014a2.73 2.73 0 0 1 1.932-.795 2.74 2.74 0 0 1 1.931.795l.015.014.266-.27a3.16 3.16 0 0 0 .916-2.226c0-.806-.305-1.612-.916-2.226A3.14 3.14 0 0 0 3.128 8.2m0 .725a2.4 2.4 0 0 1 1.701.707 2.43 2.43 0 0 1 .156 3.252 3.42 3.42 0 0 0-3.72 0 2.45 2.45 0 0 1-.544-1.537c0-.618.234-1.24.706-1.715a2.38 2.38 0 0 1 1.701-.707m5.316.082v6.025h3.167v-1.487H9.928l.004-4.538zm4.247 0v6.022h1.487V9.007zm2.585 0v6.025h1.487V13.15h1.918v-1.41h-1.918v-1.228h3.047l.863 1.545-1.662 2.975h1.662l.813-1.53.696 1.53h1.779l-1.665-2.975L24 9.007h-1.779l-.735 1.686-.735-1.686zM3.128 13.75c-.518 0-1.04.202-1.438.6l.444.443a1.41 1.41 0 0 1 1.996 0l.443-.443c-.4-.398-.92-.6-1.445-.6m0 1.324a.7.7 0 0 0-.507.213l.507.511.508-.511a.7.7 0 0 0-.508-.213"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lightburn.svg��������������������������������0000664�0000000�0000000�00000005732�14753064456�0025630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.419 23.947c-.481-.13-.956-.505-1.18-.933-.248-.475-.228.159-.228-7.504V8.606l.214-.312A9.4 9.4 0 0 1 2.968 5.7c1.18-.723 2.468-1.173 3.925-1.372.546-.075 1.87-.103 2.382-.051 2.234.227 4.417 1.19 5.777 2.549l.338.338-.289.295c-.159.162-.323.334-.364.38l-.076.086.524.022c1.01.042 2.43.423 3.41.916.154.078.287.14.296.14s-.074-.172-.185-.384c-.615-1.175-1.069-2.77-1.019-3.583l.018-.295-.347.363-.347.364-.24-.221c-1.801-1.663-3.841-2.598-6.406-2.935-1.354-.178-3.068-.145-4.362.085a11.8 11.8 0 0 0-3.339 1.095c-.892.437-1.708.97-2.405 1.57l-.248.213v-1.86c.003-1.832.004-1.86.079-2.082A1.94 1.94 0 0 1 1.485.052C1.68.006 2.908 0 11.978 0c8.925 0 10.303.007 10.511.05.677.143 1.22.653 1.448 1.361.055.168.058.876.049 10.572-.009 8.875-.018 10.42-.06 10.587-.148.597-.595 1.086-1.208 1.325l-.229.089-2.217.01c-1.22.005-2.217 0-2.217-.01 0-.012.022-.063.048-.113.194-.38.386-1.304.421-2.032.02-.408.025-.435.083-.404.168.09.469.884.48 1.265.01.373.094.473.199.234a6.6 6.6 0 0 0 .256-.92c.143-.837.166-2.06.052-2.827-.175-1.179-.472-2.208-.923-3.199-.352-.771-.841-1.574-1.294-2.122l-.21-.253c-.051-.062-.048-.064.083-.041.431.074.922.339 1.211.652.079.086.152.155.162.155.04 0-.42-.634-.652-.9-.719-.822-1.597-1.403-2.73-1.808-.542-.194-1.292-.373-1.56-.373-.089 0-.114-.016-.131-.086-.082-.324.252-.841.79-1.223.219-.156.23-.169.12-.146a5 5 0 0 0-.84.291c-.309.147-.795.582-1.13 1.007l-.103.132-.323-.007a2 2 0 0 1-.34-.022c-.066-.066.422-.755.796-1.122.3-.294.781-.69.941-.774.044-.023.073-.049.064-.058-.02-.02-.749.27-1.154.458-.537.25-1.139.7-1.713 1.281-.431.437-.463.449-.912.337-.429-.106-1.039-.13-1.415-.053-.9.182-1.457.794-1.434 1.577l.006.205-.447.76c-.49.835-.737 1.178-1.092 1.522-.349.338-.51.444-.616.404-.126-.048-.36-.039-.527.02a.77.77 0 0 0-.45.375c-.118.24-.418.34-.526.174-.085-.128-.327-.233-.476-.205-.174.032-.438.282-.563.531-.213.426-.268 1.07-.126 1.472a.94.94 0 0 0 .621.576c.04.012.168.134.286.271.205.238.292.3.211.149-.057-.107-.045-.296.023-.355.105-.092.198-.126.543-.2.327-.072.338-.072.372-.01.121.22.633.628.79.628.046 0 .044-.015-.017-.1-.122-.171-.206-.39-.206-.54-.001-.204.102-.307.544-.542.333-.176.419-.241.713-.544.579-.597.692-.7.979-.89.574-.38 1.267-.673 1.773-.748.241-.035.277-.032.478.041.18.066.477.227.477.26 0 .004-.22.135-.488.29-.269.155-.588.347-.71.427-.67.434-1.402 1.156-1.937 1.909-.42.59-.703.888-.998 1.045-.237.126-.467.168-1.116.2-.319.016-.468.036-.46.062.028.086.47.298.797.382.508.13 1.012.149 1.434.051.6-.138.94-.362 1.346-.887.536-.693.79-.955 1.151-1.194.917-.607 1.463-.734 2.299-.536.72.17.93.15 1.332-.138.166-.118.308-.276.622-.692.468-.62.751-.937.714-.8-.032.115-.296.64-.587 1.166l-.239.431.13.109c.178.15.335.479.36.759.029.302-.049.59-.265.979-.273.494-.582.878-1.209 1.505a12.6 12.6 0 0 1-3.495 2.503L7.766 24l-3.081-.002c-2.576-.002-3.112-.01-3.266-.052zm6.004-9.468c.126-.427.521-.941.846-1.1a1.55 1.55 0 0 1 1.252-.026l.15.066-.08.142c-.283.505-1.09.92-1.906.98l-.287.02z"/></svg>��������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lighthouse.svg�������������������������������0000664�0000000�0000000�00000000316�14753064456�0025776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 0 5.5 3.5v5H20v3h-2.25l2 12.5H4.25l2-12.5H4v-3h2.5V3.53zm2.94 13.25-6.22 2.26L8 20.04l7.5-2.75zM12 3.56 9.5 5.17V8.5h5V5.15Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lightning.svg��������������������������������0000664�0000000�0000000�00000000261�14753064456�0025605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0 1.75 6v12L12 24l10.25-6V6zm-1.775 18 1.08-4.657-2.428-2.397L13.79 6l-1.082 4.665 2.414 2.384z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/limesurvey.svg�������������������������������0000664�0000000�0000000�00000002537�14753064456�0026036�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.934 2.301c.718 0 1.436.166 2.154.387.663.22 1.326.552 1.989.884q.912.497 1.823 1.16l.829.663c.165.11.276.22.386.331.056.055.11.11.221.166l.11.166.111.11H9.568l.166-.22.166-.166.331-.332c.221-.276.442-.497.663-.718a7 7 0 0 1 .718-.608c.111-.11.277-.22.387-.276l.166-.166.166-.166c.497-.386 1.05-.718 1.602-1.05a17 17 0 0 1 1.712-.883c1.16-.552 2.376-.94 3.59-1.215.609-.11 1.272-.221 1.88-.277a7.6 7.6 0 0 1 1.933-.055l-.829.497c-.11.056-.276.166-.387.221-.055.056-.11.056-.22.11l-.222.111c-.497.332-1.05.608-1.547.94-.939.662-1.878 1.27-2.872 1.933s-1.878 1.326-2.817 1.989l-.663.497c-.221.166-.442.331-.663.552s-.442.387-.663.553c-.11.11-.221.165-.332.276l-.276.276-1.215 1.05-.774-1.05-.055-.055-.055-.11-.22-.166-.332-.387a9 9 0 0 0-.663-.718L6.917 5.063c-.442-.497-.884-.994-1.381-1.436a12 12 0 0 0-1.602-1.326M20.34 14.294a9.6 9.6 0 0 0-.663-3.536l-3.48 1.492c.994 2.762-.166 5.855-2.762 7.236l1.491 3.48c3.315-1.601 5.414-4.971 5.414-8.672M16.474 6.56l-3.315 2.43c1.105.553 2.044 1.437 2.597 2.486l3.48-1.491c-.608-1.326-1.547-2.486-2.762-3.425M4.763 14.294A5.96 5.96 0 0 1 7.58 9.267L5.15 6.339C1.502 8.825.011 13.52 1.558 17.663l3.535-1.491a5.6 5.6 0 0 1-.331-1.878m5.855 5.91a5.9 5.9 0 0 1-5.248-3.259l-3.48 1.492c2.154 4.585 7.513 6.74 12.264 4.916l-1.492-3.48a6.3 6.3 0 0 1-2.044.332"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/line.svg�������������������������������������0000664�0000000�0000000�00000001646�14753064456�0024561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.365 9.863a.631.631 0 0 1 0 1.261H17.61v1.125h1.755a.63.63 0 1 1 0 1.259h-2.386a.63.63 0 0 1-.627-.629V8.108c0-.345.282-.63.63-.63h2.386a.63.63 0 0 1-.003 1.26H17.61v1.125zm-3.855 3.016a.63.63 0 0 1-.631.627.62.62 0 0 1-.51-.25l-2.443-3.317v2.94a.63.63 0 0 1-1.257 0V8.108a.627.627 0 0 1 .624-.628c.195 0 .375.104.495.254l2.462 3.33V8.108c0-.345.282-.63.63-.63.345 0 .63.285.63.63zm-5.741 0a.63.63 0 0 1-.631.629.63.63 0 0 1-.627-.629V8.108c0-.345.282-.63.63-.63.346 0 .628.285.628.63zm-2.466.629H4.917a.634.634 0 0 1-.63-.629V8.108c0-.345.285-.63.63-.63.348 0 .63.285.63.63v4.141h1.756a.63.63 0 0 1 0 1.259M24 10.314C24 4.943 18.615.572 12 .572S0 4.943 0 10.314c0 4.811 4.27 8.842 10.035 9.608.391.082.923.258 1.058.59.12.301.079.766.038 1.08l-.164 1.02c-.045.301-.24 1.186 1.049.645 1.291-.539 6.916-4.078 9.436-6.975C23.176 14.393 24 12.458 24 10.314"/></svg>������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lineageos.svg��������������������������������0000664�0000000�0000000�00000001153�14753064456�0025571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.645 12.057a2.4 2.4 0 0 0-1.803.8l-.138-.054a18 18 0 0 0-2.867-.86 4.808 4.808 0 0 0-9.615 0H7.09a18 18 0 0 0-2.765.836l-.138.054a2.404 2.404 0 1 0 .559 1.07 16.6 16.6 0 0 1 2.578-.776 4.808 4.808 0 0 0 9.357 0 16.6 16.6 0 0 1 2.578.77 2.404 2.404 0 1 0 2.386-1.84M2.414 15.663a1.202 1.202 0 1 1 1.202-1.202 1.2 1.2 0 0 1-1.202 1.202m9.616 0a3.606 3.606 0 1 1 3.605-3.606 3.606 3.606 0 0 1-3.605 3.606m9.615 0a1.202 1.202 0 1 1 1.202-1.202 1.2 1.2 0 0 1-1.202 1.202m-7.812-3.606a1.803 1.803 0 1 1-1.803-1.803 1.803 1.803 0 0 1 1.803 1.803"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/linear.svg�����������������������������������0000664�0000000�0000000�00000000607�14753064456�0025100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.886 4.18A11.98 11.98 0 0 1 11.99 0C18.624 0 24 5.376 24 12.009c0 3.64-1.62 6.903-4.18 9.105L2.887 4.18ZM1.817 5.626l16.556 16.556q-.787.496-1.65.866L.951 7.277q.371-.863.866-1.65ZM.322 9.163l14.515 14.515q-1.066.26-2.195.322L0 11.358a12 12 0 0 1 .322-2.195m-.17 4.862 9.823 9.824a12.02 12.02 0 0 1-9.824-9.824Z"/></svg>�������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lining.svg�����������������������������������0000664�0000000�0000000�00000000723�14753064456�0025105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.926 8.815c-.261-.004-.696.011-1.422.084-1.937.194-2.398.828-2.398.828L0 15.177h1.017c4.279-4.664 8.291-6.278 8.291-6.278s.052-.075-.382-.084m2.332 1.571c-1.71-.008-3.181.092-3.803.366-1.422.625-3.838 2.271-6.035 4.425 0 0 .864.115 1.902-.48 0 0 3.416-2.586 6.165-2.07s5.169 1.829 5.169 1.829 1.751 1 3.39.438S24 11.996 24 11.996s-3.266-.776-6.265-1.182c-1.687-.229-4.279-.418-6.477-.428"/></svg>���������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/linkerd.svg����������������������������������0000664�0000000�0000000�00000002543�14753064456�0025257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.329 5.04v9.034l1.666.964V6.004zM0 15.038l1.666-.964V5.04L0 6.004zm8.165-.089 7.665 4.424V17.45l-7.176-4.142-.489.282zm8.105 6.989-8.105-4.681v1.923l2.164 1.25-2.604 1.503a.263.263 0 0 0 0 .454l1.27.737 3-1.73 3 1.73 1.27-.737c.178-.093.178-.35.005-.449m6.059-11.511v8.012c0 .202.218.331.396.227l1.142-.657a.27.27 0 0 0 .133-.228V9.468zm-3.271 10.354 1.072-.623a.39.39 0 0 0 .198-.341v-8.233l-1.666.963v8.012c0 .198.218.326.396.222m-4.063 2.348 1.537-.885a.27.27 0 0 0 .134-.227v-8.318l-1.671.964zm-7.532-.89L9 23.124v-8.461l-1.666-.964v8.313c0 .094.05.183.129.227m-3.598-2.076 1.072.623a.265.265 0 0 0 .396-.227v-8.017l-1.666-.963v8.238c0 .144.074.277.198.346M.198 18.048l1.072.623a.265.265 0 0 0 .396-.228v-8.016L0 9.468v8.239c0 .138.074.267.198.341M23.995 6.004l-1.666-.964-3 1.73-1.996-1.152 2.604-1.502a.264.264 0 0 0 0-.455l-1.077-.623a.4.4 0 0 0-.395 0l-2.803 1.616-1.996-1.151L16.27 2a.263.263 0 0 0 0-.454L15.193.923a.4.4 0 0 0-.396 0l-2.802 1.616L9.193.923a.4.4 0 0 0-.396 0l-1.077.623a.263.263 0 0 0 0 .454l14.6 8.432 1.665-.964-3-1.73zM5.135 3.038l-1.072.623a.264.264 0 0 0 0 .455l14.599 8.431 1.666-.963L5.53 3.038a.4.4 0 0 0-.395 0M0 6.004l3 1.729-3 1.735 1.671.959 2.995-1.73 2.001 1.157-3 1.73 1.666.963 3-1.734 1.996 1.156-3 1.73L9 14.663l2.995-1.735 3 1.735 1.666-.964L1.666 5.04z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/linkfire.svg���������������������������������0000664�0000000�0000000�00000001711�14753064456�0025426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.08 1.997A10.04 10.04 0 0 0 0 12.006a10.04 10.04 0 0 0 10.08 10 10.04 10.04 0 0 0 7.12-2.933c2.883-2.796 4.509-8.065 5.775-12.861l.038-.152.09-.343a.23.23 0 0 0-.038-.197.23.23 0 0 0-.185-.09h-1.711a.23.23 0 0 1-.215-.14.23.23 0 0 1 .053-.25l2.925-2.646v-.011a.23.23 0 0 0 .053-.246.23.23 0 0 0-.216-.143zm.385 4.645h3.847a1.686 1.686 0 0 1 1.682 1.686v3.844a1.686 1.686 0 0 1-1.682 1.686H10.47a1.686 1.686 0 0 1-1.684-1.686v-.722h1.442v.722a.246.246 0 0 0 .242.242h3.848a.24.24 0 0 0 .242-.242V8.324a.24.24 0 0 0-.242-.242H10.47a.24.24 0 0 0-.242.242v.722H8.784v-.718a1.686 1.686 0 0 1 1.684-1.686zM7.582 9.526h3.84a1.686 1.686 0 0 1 1.684 1.686v.718h-1.44v-.718a.24.24 0 0 0-.24-.242H7.577a.24.24 0 0 0-.242.242v3.847a.24.24 0 0 0 .242.242h3.847a.24.24 0 0 0 .241-.242v-.718h1.448v.718a1.686 1.686 0 0 1-1.686 1.682H7.582a1.686 1.686 0 0 1-1.69-1.682v-3.847a1.686 1.686 0 0 1 1.69-1.686"/></svg>�������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/linksys.svg����������������������������������0000664�0000000�0000000�00000000332�14753064456�0025315�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.871 0a3.082 3.082 0 1 0 0 6.164 3.082 3.082 0 0 0 0-6.164M1.047.488V24h21.31v-3.469H5.167V.488Zm7.156 0v17.156h14.154v-3.47H12.318V.487Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/linktree.svg���������������������������������0000664�0000000�0000000�00000000463�14753064456�0025443�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.736 5.853 4.005-4.117 2.325 2.38-4.2 4.005h5.908v3.305h-5.937l4.229 4.108-2.325 2.334-5.74-5.769-5.741 5.769-2.325-2.325 4.229-4.108H2.226V8.121h5.909l-4.2-4.004 2.324-2.381 4.005 4.117V0h3.472zm-3.472 10.306h3.472V24h-3.472z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/linphone.svg���������������������������������0000664�0000000�0000000�00000002032�14753064456�0025434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.976.001C.87-.005.787.01.737.047c-.533.41 1.518 4.677 1.518 4.677s-2.38 3.282-2.01 4.76C.232 9.425 1.804 7.76 1.804 7.76c.082.451 3.897 1.56 3.897 1.56.507.322.682.554.78 1.066v1.97c1.318.82 2.529 1.091 5.456 1.271 3.111-.133 4.396-.408 5.539-1.272 0 0-.123-1.518 0-2.051s.396-.838.82-.985c1.583-.362 2.365-.758 3.857-1.518l1.64 1.682c-.249-1.849-.677-2.873-1.968-4.676-1.026-1.172-1.683-1.786-3.036-2.79-1.472-.87-2.288-1.201-3.734-1.6-2.509-.514-3.892-.512-6.318 0-1.486.448-2.227.786-3.323 1.6 0 0-3.403-1.954-4.438-2.016m22.738 14.44c-1.648 1.293-2.719 2.048-4.759 2.995-2.524.996-3.993 1.315-6.728 1.395-3.186-.055-4.74-.37-7.139-1.395-1.905-.834-2.938-1.464-4.717-2.871.427 1.77.826 2.703 1.805 4.266 1.042 1.411 1.683 2.04 2.912 2.913 1.33.913 2.128 1.312 3.652 1.805 1.369.33 2.132.434 3.487.451 1.381-.069 2.098-.22 3.282-.492 1.306-.52 1.97-.848 3.077-1.477 1.834 1.036 4.102 2.216 4.43 1.723.329-.492-1.476-4.472-1.476-4.472 1.204-1.724 1.696-2.885 2.174-4.84z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lintcode.svg���������������������������������0000664�0000000�0000000�00000000350�14753064456�0025422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.11 0 5.064 10.467l4.797 6.142 1.322-2.289-3.149-4.032 4.722-8.184zm3.029 7.391L12.817 9.68l3.148 4.032-4.721 8.184q.82 1.054 1.646 2.104l6.045-10.469z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/linux.svg������������������������������������0000664�0000000�0000000�00000012230�14753064456�0024760�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.504 0q-.232 0-.48.021c-4.226.333-3.105 4.807-3.17 6.298-.076 1.092-.3 1.953-1.05 3.02-.885 1.051-2.127 2.75-2.716 4.521-.278.832-.41 1.684-.287 2.489a.4.4 0 0 0-.11.135c-.26.268-.45.6-.663.839-.199.199-.485.267-.797.4-.313.136-.658.269-.864.68-.09.189-.136.394-.132.602 0 .199.027.4.055.536.058.399.116.728.04.97-.249.68-.28 1.145-.106 1.484.174.334.535.47.94.601.81.2 1.91.135 2.774.6.926.466 1.866.67 2.616.47.526-.116.97-.464 1.208-.946.587-.003 1.23-.269 2.26-.334.699-.058 1.574.267 2.577.2.025.134.063.198.114.333l.003.003c.391.778 1.113 1.132 1.884 1.071s1.592-.536 2.257-1.306c.631-.765 1.683-1.084 2.378-1.503.348-.199.629-.469.649-.853.023-.4-.2-.811-.714-1.376v-.097l-.003-.003c-.17-.2-.25-.535-.338-.926-.085-.401-.182-.786-.492-1.046h-.003c-.059-.054-.123-.067-.188-.135a.36.36 0 0 0-.19-.064c.431-1.278.264-2.55-.173-3.694-.533-1.41-1.465-2.638-2.175-3.483-.796-1.005-1.576-1.957-1.56-3.368.026-2.152.236-6.133-3.544-6.139m.529 3.405h.013c.213 0 .396.062.584.198.19.135.33.332.438.533.105.259.158.459.166.724 0-.02.006-.04.006-.06v.105l-.004-.021-.004-.024a1.8 1.8 0 0 1-.15.706.95.95 0 0 1-.213.335 1 1 0 0 0-.088-.042c-.104-.045-.198-.064-.284-.133a1.3 1.3 0 0 0-.22-.066c.05-.06.146-.133.183-.198q.08-.193.088-.402v-.02a1.2 1.2 0 0 0-.061-.4c-.045-.134-.101-.2-.183-.333-.084-.066-.167-.132-.267-.132h-.016c-.093 0-.176.03-.262.132a.8.8 0 0 0-.205.334 1.2 1.2 0 0 0-.09.4v.019q.002.134.02.267c-.193-.067-.438-.135-.607-.202a2 2 0 0 1-.018-.2v-.02a1.8 1.8 0 0 1 .15-.768 1.08 1.08 0 0 1 .43-.533 1 1 0 0 1 .594-.2zm-2.962.059h.036c.142 0 .27.048.399.135.146.129.264.288.344.465.09.199.14.4.153.667v.004c.007.134.006.2-.002.266v.08c-.03.007-.056.018-.083.024-.152.055-.274.135-.393.2q.018-.136.003-.267v-.015c-.012-.133-.04-.2-.082-.333a.6.6 0 0 0-.166-.267.25.25 0 0 0-.183-.064h-.021c-.071.006-.13.04-.186.132a.55.55 0 0 0-.12.27 1 1 0 0 0-.023.33v.015c.012.135.037.2.08.334.046.134.098.2.166.268q.014.014.034.024c-.07.057-.117.07-.176.136a.3.3 0 0 1-.131.068 2.6 2.6 0 0 1-.275-.402 1.8 1.8 0 0 1-.155-.667 1.8 1.8 0 0 1 .08-.668 1.4 1.4 0 0 1 .283-.535c.128-.133.26-.2.418-.2m1.37 1.706c.332 0 .733.065 1.216.399.293.2.523.269 1.052.468h.003c.255.136.405.266.478.399v-.131a.57.57 0 0 1 .016.47c-.123.31-.516.643-1.063.842v.002c-.268.135-.501.333-.775.465-.276.135-.588.292-1.012.267a1.1 1.1 0 0 1-.448-.067 4 4 0 0 1-.322-.198c-.195-.135-.363-.332-.612-.465v-.005h-.005c-.4-.246-.616-.512-.686-.71q-.104-.403.193-.6c.224-.135.38-.271.483-.336.104-.074.143-.102.176-.131h.002v-.003c.169-.202.436-.47.839-.601.139-.036.294-.065.466-.065zm2.8 2.142c.358 1.417 1.196 3.475 1.735 4.473.286.534.855 1.659 1.102 3.024.156-.005.33.018.513.064.646-1.671-.546-3.467-1.089-3.966-.22-.2-.232-.335-.123-.335.59.534 1.365 1.572 1.646 2.757.13.535.16 1.104.021 1.67.067.028.135.06.205.067 1.032.534 1.413.938 1.23 1.537v-.043c-.06-.003-.12 0-.18 0h-.016c.151-.467-.182-.825-1.065-1.224-.915-.4-1.646-.336-1.77.465-.008.043-.013.066-.018.135-.068.023-.139.053-.209.064-.43.268-.662.669-.793 1.187-.13.533-.17 1.156-.205 1.869v.003c-.02.334-.17.838-.319 1.35-1.5 1.072-3.58 1.538-5.348.334a2.7 2.7 0 0 0-.402-.533 1.5 1.5 0 0 0-.275-.333c.182 0 .338-.03.465-.067a.62.62 0 0 0 .314-.334c.108-.267 0-.697-.345-1.163s-.931-.995-1.788-1.521c-.63-.4-.986-.87-1.15-1.396-.165-.534-.143-1.085-.015-1.645.245-1.07.873-2.11 1.274-2.763.107-.065.037.135-.408.974-.396.751-1.14 2.497-.122 3.854a8.1 8.1 0 0 1 .647-2.876c.564-1.278 1.743-3.504 1.836-5.268.048.036.217.135.289.202.218.133.38.333.59.465.21.201.477.335.876.335q.058.005.11.006c.412 0 .73-.134.997-.268.29-.134.52-.334.74-.4h.005c.467-.135.835-.402 1.044-.7zm2.185 8.958c.037.6.343 1.245.882 1.377.588.134 1.434-.333 1.791-.765l.211-.01c.315-.007.577.01.847.268l.003.003c.208.199.305.53.391.876.085.4.154.78.409 1.066.486.527.645.906.636 1.14l.003-.007v.018l-.003-.012c-.015.262-.185.396-.498.595-.63.401-1.746.712-2.457 1.57-.618.737-1.37 1.14-2.036 1.191-.664.053-1.237-.2-1.574-.898l-.005-.003c-.21-.4-.12-1.025.056-1.69.176-.668.428-1.344.463-1.897.037-.714.076-1.335.195-1.814.12-.465.308-.797.641-.984l.045-.022zm-10.814.049h.01q.08 0 .157.014c.376.055.706.333 1.023.752l.91 1.664.003.003c.243.533.754 1.064 1.189 1.637.434.598.77 1.131.729 1.57v.006c-.057.744-.48 1.148-1.125 1.294-.645.135-1.52.002-2.395-.464-.968-.536-2.118-.469-2.857-.602q-.553-.1-.723-.4c-.11-.2-.113-.602.123-1.23v-.004l.002-.003c.117-.334.03-.752-.027-1.118-.055-.401-.083-.71.043-.94.16-.334.396-.4.69-.533.294-.135.64-.202.915-.47h.002v-.002c.256-.268.445-.601.668-.838.19-.201.38-.336.663-.336m7.159-9.074c-.435.201-.945.535-1.488.535-.542 0-.97-.267-1.28-.466-.154-.134-.28-.268-.373-.335-.164-.134-.144-.333-.074-.333.109.016.129.134.199.2.096.066.215.2.36.333.292.2.68.467 1.167.467.485 0 1.053-.267 1.398-.466.195-.135.445-.334.648-.467.156-.136.149-.267.279-.267.128.016.034.134-.147.332a8 8 0 0 1-.69.468zm-1.082-1.583V5.64c-.006-.02.013-.042.029-.05.074-.043.18-.027.26.004.063 0 .16.067.15.135-.006.049-.085.066-.135.066-.055 0-.092-.043-.141-.068-.052-.018-.146-.008-.163-.065m-.551 0c-.02.058-.113.049-.166.066-.047.025-.086.068-.14.068-.05 0-.13-.02-.136-.068-.01-.066.088-.133.15-.133.08-.031.184-.047.259-.005.019.009.036.03.03.05v.02h.003z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/linuxcontainers.svg��������������������������0000664�0000000�0000000�00000001562�14753064456�0027054�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.15 8.98 1.647.951-5.756 3.345.005-1.911zm1.723-1.001-1.553.902 1.548.893zM6.028 5.33 6.025 6.4l.543.316 3.602 2.079 1.632-.948-2.19-1.279-3.231-1.887-.351-.203zm.072-.983.359.209 6.321 3.65 5.258 3.037 5.858-3.405L11.956.943zm6.002 12.602-.005 1.924 5.858-3.404.005-1.924zm-.077-9.009-.005 1.922 5.94 3.428.005-1.92zm-10.13.945 4.075 2.352 4.031-2.342-4.075-2.353zM24 7.982l-5.858 3.404-.015 3.982 5.858-3.404zm-12.048 10.04.003-1.073L7.6 14.436l-1.565-.903v.001l-.939-.542L.015 10.06.01 11.979l11.94 6.895zm5.935-4.605-5.922-3.411-5.853 3.401 5.917 3.414zm6.072-1.238-11.862 6.864-.01 4.013 11.863-6.894zM11.944 21.27l.005-2.227L.01 12.148 0 16.162l11.94 6.895zM.021 9.802 1.6 8.885.025 7.976zm5.832-3.39.024-1.636.001-.296L.099 7.848l1.647.951zm.041 4.951L1.749 8.97l-.46.267-1.195.695 5.795 3.345z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/linuxfoundation.svg��������������������������0000664�0000000�0000000�00000000223�14753064456�0027046�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.8 19.2h9.6V24H0V9.6h4.8zM0 0v7.2h4.8V4.822h14.4V19.2h-2.4V24H24V0z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/linuxmint.svg��������������������������������0000664�0000000�0000000�00000001214�14753064456�0025650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.438 5.906v8.438c0 2.06 1.69 3.75 3.75 3.75h5.625c2.06 0 3.75-1.69 3.75-3.75V9.656a2.827 2.827 0 0 0-2.813-2.812 2.8 2.8 0 0 0-1.875.737A2.8 2.8 0 0 0 12 6.844a2.827 2.827 0 0 0-2.812 2.812v4.688h1.875V9.656c0-.529.408-.937.937-.937s.938.408.938.937v4.688h1.875V9.656c0-.529.408-.937.937-.937s.938.408.938.937v4.688a1.86 1.86 0 0 1-1.875 1.875H9.188a1.86 1.86 0 0 1-1.875-1.875V5.906ZM12 0C5.384 0 0 5.384 0 12s5.384 12 12 12 12-5.384 12-12S18.616 0 12 0m0 1.875A10.11 10.11 0 0 1 22.125 12 10.11 10.11 0 0 1 12 22.125 10.11 10.11 0 0 1 1.875 12 10.11 10.11 0 0 1 12 1.875"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/linuxprofessionalinstitute.svg���������������0000664�0000000�0000000�00000000555�14753064456�0031365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m0 20.987a8.987 8.987 0 1 1 0-17.973 8.987 8.987 0 1 1 0 17.973m5.104-3.003.8-2.998H10.74l2.765-10.491h-2.998L6.912 17.984Zm.29-10.494c0 .822-.67 1.494-1.494 1.494a1.493 1.493 0 0 1 0-2.985c.822 0 1.494.669 1.494 1.49"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/linuxserver.svg������������������������������0000664�0000000�0000000�00000002621�14753064456�0026212�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.256.719c-5.944 2.988-8.144 11.402-4.44 16.91h.002a12.03 12.03 0 0 0 5.12 4.503v-.002c8.72 4.335 19.309-4.302 16.643-13.793-.212-.891-1.081-3.824-3.742-6.095-1.237-1.133-4.163-1.606-6.21-1.152a.5.5 0 0 0-.148.064c-.667.435-1.482.596-2.264.739a.356.356 0 0 0-.29.34c-.011.351.18.76.312 1.037.33.643.925 1.02 1.629 1.11 2.584.739 4.583 3.083 4.814 5.828-1.967 1.247-4.603 1.414-6.885-.477q-.054-.043-.107-.09c-.74-.598-1.884.314-1.389 1.21 1.93 2.526 5.008 3.41 7.842 2.907-3.182.593-7.13 1.05-10.184-.017-.705-1.455-1.771-2.733-3.08-3.649a7.5 7.5 0 0 1 1-4.498c.604-.926-.796-1.836-1.404-.936-.769 1.12-1.249 2.415-1.47 3.75l.061-.4C2.548 5.162 3.862 2.42 6.256.72m10.668.719c.047.004.061.011.061.004.394.032.783.205.816.445.026.188-.17.372-.435.502a1.9 1.9 0 0 1-.547.168c-.473.066-.036-.247-.078-.553s-.55-.488-.076-.554a1.2 1.2 0 0 1 .26-.012m-2.892.472c.478.032.477.497 0 .53-.478-.033-.478-.498 0-.53m-3.958 4.477a.636.636 0 0 0-.636.633v2.139c.348-.171.782-.167 1.187-.018.573.342 1.27.701 2.02.977a.636.636 0 0 0 .535-.63V7.02a.636.636 0 0 0-.637-.633Zm-1.87 3.922a.636.636 0 0 0-.635.637v2.469a.636.636 0 0 0 .634.635h2.47a.635.635 0 0 0 .636-.635v-.15a8.1 8.1 0 0 1-2.406-2.112l-.022-.03-.017-.032a1.38 1.38 0 0 1-.17-.782Zm5.03 0c.69.2 1.408.313 2.108.26a.64.64 0 0 0-.51-.26zm-1.491 3.19a.636.636 0 0 0 .62.55h.8a8.4 8.4 0 0 1-1.42-.55"/></svg>���������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lionair.svg����������������������������������0000664�0000000�0000000�00000003677�14753064456�0025275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.473 7.088h-.097v.192l.097.096c.07.971-.866 1.537-.866 1.537-.015-.603-.48-.672-.48-.672-1.132-.291-1.443 1.057-1.443 1.057-.127 1.13.673 1.153.673 1.153.45.125.865-.384.865-.384v.192l-.096.865c-.226.766-1.25.48-1.25.48-.444-.182-.48.097-.48.097.05 1.338.673 1.825.673 1.825.733.358.673.48.673.48.157.302-.193.481-.193.481-.324.168-.384.385-.384.385-.128.284.384.864.384.864.192.02.289.385.289.385-.047.468-.481.48-.481.48-.134.086-.384.865-.384.865-.993 3.22-4.364 3.678-5.062 3.739.071.773.077 1.788-.322 2.122 0 0-.422.53-1.441.192 0 0 1.058-.876.864-3.267 0 0-.307-.048-.48-.096 0 0-.233 3.74-2.211 3.844 0 0-.886.03-1.154-.48 0 0 2.136-.685 2.788-3.556l-.384-.192s-1.388 3.682-3.75 3.747c0 0-.887.126-1.442-.96 0 0 2.77-.205 4.71-3.172l-.384-.288s-2.869 3.316-5.287 2.786c0 0-1.677-.366-1.634-1.825 0 0 3.297 1.098 6.537-1.537l-.288-.48s-3.503 1.79-6.152 1.345c0 0-3.487-.667-2.404-3.171 0 0 3.572 2.36 8.171 1.153v-.577s-8.873.756-9.132-4.036c0 0 .113-1.279.672-1.345 0 0 2.346 3.597 8.46 4.709v-.48s-8.614-2.96-8.651-8.265c0 0 .073-2.21 1.826-1.922 0 0 .163 5.086 7.018 9.514l.191-.385S4.582 10.517 4.688 2.86c0 0 .376-3.894 3.269-2.595 0 0-1.898 8.103 3.557 13.55 0 0 .79-1.495 3.076-1.442 0 0 3.54-.145 3.94 3.748 0 0 .308 3.757-3.749 4.132 0 0 .037.189.076.474 3.464-.247 4.058-3.645 4.058-3.645.516-3.73-2.883-4.901-2.883-4.901-2.675-1.016-4.615.96-4.615.96C8.815 11.023 8.534 6.8 8.534 6.8l.673-.288c-.846-.556-.481-1.73-.481-1.73.44.365 2.019-.287 2.019-.287-.227-.895.288-1.058.288-1.058.46-.063 2.691 0 2.691 0 0-.929.673-.864.673-.864.223.249 1.058.384 1.058.384 1.366.581 1.25.672 1.25.672.07.164.192.097.192.097-.015-.815.865-.48.865-.48.088.869 2.499 2.017 2.499 2.017.353.238 0 .673 0 .673l.384.288h.385l.192.096.961.096c.389.093.29.673.29.673m-7.114-2.114s-.534.256-.193.865c0 0 .15.214.481.384 0 0-.68-1.198.865-.865 0 0-.342-.66-1.153-.384m4.518 1.345h-.673v.192l.48.48.385-.768Z"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/liquibase.svg��������������������������������0000664�0000000�0000000�00000001236�14753064456�0025603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.019 0C6.65 0 2.966 1.922 2.965 3.646S6.692 7.29 12.02 7.29s9.055-1.922 9.055-3.645S17.347 0 12.019 0m9.056 6.45c-1.603 1.283-3.486 1.723-7.333 2.645-5.328 1.242-10.817 2.524-10.817 7.532v.56c2.003-1.722 5.609-2.523 9.135-3.324h.001c4.407-1.002 9.014-2.044 9.014-4.607zm0 5.85c-1.923 1.563-5.328 2.324-8.694 3.085-4.647 1.042-9.456 2.123-9.456 5.007 0 .642.522 1.323 1.483 1.924 1.924-1.282 4.928-2.003 7.812-2.684 4.368-1.041 8.855-2.123 8.855-4.807zm0 5.65c-1.884 1.601-5.25 2.404-8.494 3.165-2.364.562-4.768 1.122-6.45 1.963 1.522.562 3.565.922 5.89.922 5.288 0 9.054-1.885 9.054-3.647z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/listmonk.svg���������������������������������0000664�0000000�0000000�00000000417�14753064456�0025465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m0 5.195A6.805 6.805 0 0 1 18.805 12 6.805 6.805 0 0 1 12 18.805 6.805 6.805 0 0 1 5.195 12 6.805 6.805 0 0 1 12 5.195"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lit.svg��������������������������������������0000664�0000000�0000000�00000000261�14753064456�0024412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.4 9.6 4.8 4.8V24l-4.8-4.8zm4.8-4.8v9.6L12 9.6V0zM12 9.6v9.6l4.8-4.8V4.8zm4.8 4.8V24l4.8-4.8V9.6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/litecoin.svg���������������������������������0000664�0000000�0000000�00000000541�14753064456�0025431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a12 12 0 1 0 12 12A12 12 0 0 0 12 0m-.262 3.678h2.584a.343.343 0 0 1 .33.435l-2.03 6.918 1.905-.582-.408 1.385-1.924.56-1.248 4.214h6.676a.343.343 0 0 1 .328.437l-.582 2a.46.46 0 0 1-.44.33H6.733l1.723-5.822-1.906.58.42-1.361 1.91-.58 2.422-8.18a.456.456 0 0 1 .437-.334"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/literal.svg����������������������������������0000664�0000000�0000000�00000000602�14753064456�0025255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.148 5.719.128-1.798 3.234.223-1.52-2.902 1.63-.836L16.176 3.4 18.142.65l1.495 1.05-1.916 2.665 3.212.221-.128 1.797-3.167-.217 1.498 2.878-1.628.836-1.578-3.017-1.99 2.771-1.495-1.05L14.36 5.94zm-8.129 9.513L5.197 0l2.569.355-1.817 12.708 5.978.825-.361 2.525zM20.981 21.7 4.328 24l-.36-2.524 16.652-2.3z"/></svg>������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/litiengine.svg�������������������������������0000664�0000000�0000000�00000000523�14753064456�0025752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m0 12.018 2.09 2.088L11.987 24l2.146-2.146-9.897-9.893 6.586-6.582-2.09-2.089Zm13.211 6.624 2.08 2.078 5.425-5.422-2.08-2.078zM9.85 2.151l6.606 6.602L9.9 15.306l2.134 2.133 6.555-6.553 3.258 3.257L24 11.993 12 0Zm-3.276 9.853 2.035 2.034 5.453-5.45-2.035-2.035z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/livechat.svg���������������������������������0000664�0000000�0000000�00000001000�14753064456�0025411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.849 14.91c-.24 2.94-2.73 5.22-5.7 5.19h-3.15l-6 3.9v-3.9l6-3.9h3.15c.93.03 1.71-.66 1.83-1.59.18-3 .18-6-.06-9-.06-.84-.75-1.47-1.56-1.53-2.04-.09-4.2-.18-6.36-.18s-4.32.06-6.36.21c-.84.06-1.5.69-1.56 1.53-.21 3-.24 6-.06 9 .09.93.9 1.59 1.83 1.56h3.15v3.9h-3.15a5.644 5.644 0 0 1-5.7-5.19c-.21-3.21-.18-6.39.06-9.6a5.57 5.57 0 0 1 5.19-5.1c2.1-.15 4.35-.21 6.6-.21s4.5.06 6.63.24a5.57 5.57 0 0 1 5.19 5.1c.21 3.18.24 6.39.03 9.57"/></svg>mkdocs-material-9.6.4/material/templates/.icons/simple/livejournal.svg������������������������������0000664�0000000�0000000�00000000657�14753064456�0026165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.09 14.696a6.57 6.57 0 0 0-3.381 3.399l4.27.883-.886-4.282zM2.475 8.317 0 5.85A11.26 11.26 0 0 1 5.823 0h.006l2.469 2.463a11.2 11.2 0 0 1 4.463-.921C18.967 1.542 24 6.569 24 12.771S18.967 24 12.761 24C6.551 24 1.52 18.976 1.52 12.771c0-1.591.355-3.081.952-4.451l9.143 9.114a11.27 11.27 0 0 1 5.823-5.85l-9.135-9.12h-.008a11.29 11.29 0 0 0-5.823 5.85z"/></svg>���������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/livewire.svg���������������������������������0000664�0000000�0000000�00000002135�14753064456�0025452�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.001 0C6.174 0 1.448 4.957 1.448 11.072c0 2.09.552 4.042 1.51 5.71.25.279.544.484.965.484 1.339 0 1.268-2.065 2.607-2.065s1.411 2.065 2.75 2.065c1.34 0 1.266-2.065 2.606-2.065.584 0 .928.397 1.24.84-.221-.205-.48-.348-.82-.348-1.196 0-1.307 1.678-2.201 2.141v4.51a1.657 1.657 0 0 0 3.312 0V16.45c.308.433.647.815 1.22.815 1.34 0 1.267-2.065 2.606-2.065.465 0 .774.255 1.04.58a1.1 1.1 0 0 0-.43-.088c-1.159 0-1.297 1.574-2.118 2.094v2.436a1.49 1.49 0 0 0 2.98 0V16.37c.324.466.67.895 1.278.895.796 0 1.093-.73 1.485-1.32a11.5 11.5 0 0 0 1.074-4.874C22.552 4.957 17.828 0 12 0m-.566 2.877c2.88 0 5.214 2.784 5.214 5.807s-1.545 5.15-5.214 5.15-5.215-2.127-5.215-5.15 2.335-5.807 5.215-5.807m-1.403 1.66a1.955 2.158 0 0 0-1.955 2.158 1.955 2.158 0 0 0 1.955 2.158 1.955 2.158 0 0 0 1.955-2.158 1.955 2.158 0 0 0-1.955-2.158m-.326.664a.978.996 0 0 1 .979.996.978.996 0 0 1-.979.996.978.996 0 0 1-.977-.996.978.996 0 0 1 .977-.996m-2.95 10.493c-1.074 0-1.272 1.354-1.95 1.964v1.782a1.49 1.49 0 0 0 2.98 0v-3.182c-.264-.324-.577-.564-1.03-.564"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/llvm.svg�������������������������������������0000664�0000000�0000000�00000014254�14753064456�0024603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.83 2.978-.086.095a16 16 0 0 0-1.19 1.487 6 6 0 0 0-.446.719 3 3 0 0 0-.249.596.5.5 0 0 0-.033.177v.004a.3.3 0 0 0-.21.29.3.3 0 0 0 .187.284c.038.371.08 1.142.07 2.2l-.004.142a8 8 0 0 1-.434 2.327q-.024-.015-.04-.013c-.03.003-.11.12-.19.251-.058.09-.119.195-.154.291a.4.4 0 0 0-.03.14.3.3 0 0 0 .01.088c.01.037.022.058.022.058l-.003.007a.14.14 0 0 0-.028.067l-.012.029a7 7 0 0 1-.257.527l-.077.142-.07.115-.022-.014a.16.16 0 0 0-.113.024c-.047.035-.151.194-.498.368a1.4 1.4 0 0 1-.32.114 14 14 0 0 0 .248-2.07 5 5 0 0 0-.064-1.057q.004-.016.003-.017l-.005.01a4 4 0 0 0-.104-.458 3.55 3.55 0 0 0-.724-1.385c-.631-.754-1.496-1.14-2.256-1.165l-.125-.002q0-.012.002-.022c.02-.098.024-.127-.087-.032l-.057.054-.146.007a1 1 0 0 1-.003-.108c.004-.076.024-.127-.087-.032a.6.6 0 0 0-.142.167c-.05.008-.08.015-.08.015l.045-.002-.047.008c-.016-.042-.053-.105-.048-.16.01-.118.043-.14-.037-.065-.098.09-.202.226-.22.3l-.096.03c-.018-.019-.074-.07-.086-.179-.013-.11-.012-.166-.08-.05a1.1 1.1 0 0 0-.13.348q-.048.022-.093.046a.27.27 0 0 1-.057-.173c-.005-.144.04-.26-.067-.068a1.6 1.6 0 0 0-.146.406 2 2 0 0 0-.105.08 3 3 0 0 1-.008-.17c-.002-.143.021-.296-.067-.026a2 2 0 0 0-.07.321c-.404.385-.65.917-.644 1.572v.007a3 3 0 0 0 .014.33q.031.356.107.605c-.095.13-.103.689-.01.818.073.104.496.35.586.399a.4.4 0 0 1 .094.093c.115.188.115.567.027.762-.107.238.107.285.285.32s.415-.023.463-.118c.047-.095-.154-.31-.237-.748-.084-.439.13-.474.13-.474s.095.024.237.249c.11.175.227.313.336.413a.7.7 0 0 1-.201.172c.12.005.24-.051.304-.087a1 1 0 0 0 .07.045l-.05.05a.5.5 0 0 0 .109-.022.3.3 0 0 0 .084.022c.155.012.57-.368.57-.439q-.002-.028-.038-.063c-.042-.045-.12-.1-.207-.177a1 1 0 0 1-.11-.116.7.7 0 0 1-.141-.374v-.01l-.003-.031s.007-.007.016-.02v.004l.004-.01c.052-.08.15-.379-.47-1.078a3.05 3.05 0 0 0-.924-.706c-.042-.472.15-.913.626-1.13l-.005.005.008-.006c.227-.102.517-.155.877-.136.69.036 1.22.36 1.59.845.514.712.738 1.78.575 2.856-.068.065-.055.075-.013.077a5 5 0 0 1-.055.273l-.027.015c-.123.074-.071.073 0 .092l-.006.02a4 4 0 0 1-.066.193 1 1 0 0 0-.087.03c-.135.053-.08.06-.012.09l.044.023a6 6 0 0 1-.101.237 1 1 0 0 0-.08.017c-.142.036-.088.05-.024.09l.04.027a7 7 0 0 1-.107.214 1 1 0 0 0-.153.025c-.14.036-.087.05-.023.09q.05.03.08.059l-.094.165-.023.036a.6.6 0 0 0-.206.024c-.142.036-.088.05-.024.09a.7.7 0 0 1 .104.079l-.126.18a.5.5 0 0 0-.23-.005c-.144.02-.092.04-.033.086.068.053.1.099.118.118l-.062.084c-.044-.058-.15-.124-.246-.193a.9.9 0 0 0-.29-.13c-.048 0-.2.268-1.017.197-.819-.071-.87-.15-.942-.15a1 1 0 0 0-.228.059l-.034-.02a11 11 0 0 1-.972-.674c-.464-.37-.72-.647-.72-.647s.137-.125-.047-.284a3 3 0 0 0-.338-.277 2 2 0 0 0-.242-.166l-.088-.127a12 12 0 0 1-.363-.628 11 11 0 0 1-.25-.527c-.16-.36-.27-.682-.346-.964a5.6 5.6 0 0 1-.148-.923 2 2 0 0 1 .004-.242.41.41 0 0 0 .158-.323.41.41 0 0 0-.358-.407c-.204-.427-.982-1.477-3.881-3.68l-.127-.097.005.004-.036-.027C7.067 6.599 7.644 7.587 7.795 8l-.027.033-.018-.013c.018 0 .025-.005.025-.005s-.672-.546-1.787-1.23c-1.118-.687-1.748-.849-1.88-.877l-.026-.006s.206.19.174.285c-.01.032-.168.022-.421.028a4 4 0 0 0-.725.07 4.1 4.1 0 0 0-1.567.63C.238 7.785 0 8.401 0 8.401s.55-.768 1.58-1.305c-.014.337-.047 1.97.445 4.12.53 2.32 1.53 4.487 1.614 4.665.004.178.016.272.016.272s.148-1.79.756-3.647c.175.283.758 1.117 2.075 2.096 1.628 1.21 2.37 1.536 2.4 1.548.001.157.005.24.005.24s.005-.1.018-.263a4.7 4.7 0 0 1 .552-.67 3.6 3.6 0 0 1 .54-.435q.048.166.093.276-.029-.145-.052-.282c.107.01.538.066 1.206.393.343.168.609.395.798.595l-.014.006s.123.112.269.403a2.4 2.4 0 0 0-.73.084 3 3 0 0 0-.098-.19.5.5 0 0 0-.039-.134c-.027-.061-.095-.1-.164-.14a.4.4 0 0 0-.104-.073.2.2 0 0 1-.055-.073c-.084-.184-.798.012-.942.18-.175.204-.209.464-.14.608.021.045.07.082.138.11.002.22.137.75.404 1.133a5 5 0 0 1-.108-.666c-.009-.16 0-.274.015-.35.047.328.174.684.577 1.124-.248-.54-.22-.861-.195-1.143l.01-.044.005-.001c.036.263.142.534.482.963l-.014-.028.014.021a1.63 1.63 0 0 1-.167-1.03l.008-.002q.07.044.134.126c.128.172.188.349.212.47a.53.53 0 0 0 .067.383 18 18 0 0 1-.72.501c-.23.15-.49.313-.757.47q-.21.121-.414.23l-.135-.077h.002l-.008-.004c-.97-.559-1.69-.932-2.518-1.082-.93-.166-1.786.283-1.982 1.082a1.28 1.28 0 0 0 .552 1.38l.012.008q.02.014.04.026l.06.036h.002a2.1 2.1 0 0 0 .69.237l.028.005h.006a4 4 0 0 0 .412.044c.975.047 2.156-.408 3.323-.982q.15.08.306.166c2.547 1.403 4.098 1.585 6.154.728-.502.151-1.208.356-2.094.344a.1.1 0 0 0-.02-.006v.006a6 6 0 0 1-.647-.05l-.03-.004v-.003l-.001.002a6.3 6.3 0 0 1-1.556-.436 8 8 0 0 1-.745-.362 57 57 0 0 1-1.006-.569c.348-.178.692-.363 1.026-.545.355-.189.672-.362.918-.5l.009-.004h.007s.083-.019.16-.043c.17-.052.41-.149.695-.283.028.117.095.215.195.253.235.091.407.027.522-.102l.018-.01.047-.037c.05-.03.107-.067.156-.09l.053-.022q.06-.016.116-.037l.033-.01c-.145.297-.091.581-.091.581.043-.37.22-.608.392-.715q.096-.041.2-.067c.064 0 .116.023.144.07.07.12.217.194.364.226.024.15-.045.404-.4.866l.09-.062.004-.003.072-.053q.213-.162.334-.305a1 1 0 0 0 .19-.305c.013.2-.042.507-.31 1.036 0 0 .317-.276.514-.63.006.191-.01.443-.063.785.345-.673.325-1.085.239-1.326l-.01-.036a.4.4 0 0 0-.01-.065l.042-.057c.118-.166-.048-.344-.154-.414-.06-.04-.2-.154-.454-.157-.225-.27-.51-.15-.958.145a1.3 1.3 0 0 1-.166.092 1 1 0 0 0-.055-.116q.241-.145.494-.308c.317-.207.553-.416.728-.615.51-.517.69-1.02 1.21-1.446h-.013l.06-.031c.854-.458 1.306-.547 1.338-.553l-.003.128.018-.125a1.8 1.8 0 0 1 .481.344 2.1 2.1 0 0 1 .362.487l.044.3s0-.116-.01-.33c.153-.151 1.02-1.043 1.724-2.466.694-1.404.944-2.523 1.017-2.924a18 18 0 0 1 .665 2.466s-.002-.133-.03-.374c.096-.336.515-1.872.626-3.756.1-1.68-.065-2.78-.14-3.173.648.536.995 1.306.995 1.306s-.04-.163-.188-.437l.02.027s-.236-.455-.644-.904a7 7 0 0 0-.157-.172c-.432-.46-.854-.617-1.17-.672a1.6 1.6 0 0 0-.308-.03h-.019c-.125-.003-.2.002-.207-.026-.02-.095.11-.285.11-.285s-.177.046-.554.33c-.23.167-.52.41-.853.76a14 14 0 0 0-.89.994l-.075.095-.023-.017c.076-.33.362-1.117 1.788-3.111zM11.92 14.09l.012.006zm-.263 2.606q.133.064.303.194h-.005a.5.5 0 0 0-.155.07 1 1 0 0 1-.126-.224zm-4.855 1.57q.198-.002.432.047l.02.005.017.004q.165.041.337.102l.057.021q.287.11.611.248c.32.14.62.277.838.375l.183.088c-.22.106-.424.196-.577.261-1.014.416-1.83.536-2.338.391-.944-.269-.76-1.536.42-1.542"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lmms.svg�������������������������������������0000664�0000000�0000000�00000000476�14753064456�0024602�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.714 0A1.71 1.71 0 0 0 0 1.714v20.572C0 23.236.765 24 1.714 24h20.572A1.71 1.71 0 0 0 24 22.286V1.714A1.71 1.71 0 0 0 22.286 0zM12 3l9 5.143v10.286l-3 1.714-3-1.714V15l3-1.714V9.857L12 6.43 6 9.857v3.429L9 15v3.429l-3 1.714-3-1.714V8.143Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lobsters.svg���������������������������������0000664�0000000�0000000�00000001305�14753064456�0025457�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm5.414 4.02h7.86c.105 0 .15.014.15.134-.015.285 0 .556 0 .841v.12c-.21.015-.42 0-.615.03-.3.045-.6.089-.885.164-.525.165-.793.527-.853 1.022a5 5 0 0 0-.047.674v9.586c0 .405.046.808.091 1.198.045.435.33.72.736.87.345.135.718.167 1.078.182.945.03 1.877.014 2.792-.226 1.32-.33 2.204-1.156 2.64-2.46.134-.42.193-.855.298-1.29.015-.03.046-.09.076-.09h.99c-.03 1.8.03 3.599 0 5.399H5.25v-.944c0-.165 0-.149.15-.164.344-.03.689-.045 1.034-.105.69-.12 1.005-.467 1.11-1.172.03-.21.047-.434.047-.644V7.035c0-.27-.032-.54-.062-.795-.045-.465-.344-.749-.779-.914-.405-.15-.825-.166-1.245-.196h-.226v-.976c0-.105.03-.134.135-.134"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/local.svg������������������������������������0000664�0000000�0000000�00000003170�14753064456�0024716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4.49 11.97 6.682-6.681a.64.64 0 0 0 .204-.476V.838a.7.7 0 0 0-.42-.624.68.68 0 0 0-.736.148L1.4 9.193c-.94.94-1.388 1.85-1.4 2.805s.434 1.85 1.36 2.774l8.858 8.86a.64.64 0 0 0 .476.203.4.4 0 0 0 .26-.082.68.68 0 0 0 .42-.626v-4a.7.7 0 0 0-.204-.476L4.489 11.97zm-2.64 1.32c-.34-.45-.502-.872-.502-1.28.012-.57.34-1.182 1.007-1.85l7.66-7.662v2.057l-7.06 7.06A4.36 4.36 0 0 0 1.85 13.29m8.166 8.205-6.451-6.45a1 1 0 0 0-.094-.12c-.204-.207-.816-.819.094-1.961l6.45 6.449zM13.782.376a.67.67 0 0 0-.734-.15.68.68 0 0 0-.422.626v4.015c.004.18.076.35.204.476l6.681 6.68-6.681 6.682a.64.64 0 0 0-.204.476v3.96a.682.682 0 0 0 1.156.49l8.817-8.817c.94-.94 1.389-1.85 1.4-2.804.017-.952-.433-1.85-1.36-2.775zm.204 4.205V2.5l6.451 6.448q.041.066.094.122c.204.204.816.817-.094 1.96l-6.449-6.45-.002.002zm7.647 9.267-7.66 7.661v-2.04l7.06-7.077a4.45 4.45 0 0 0 1.104-1.674c.34.45.504.872.504 1.28-.014.57-.34 1.17-1.008 1.85m-4.626-1.294H6.9a.516.516 0 0 1-.516-.516v-.054c0-.286.23-.518.516-.518h10.11a.52.52 0 0 1 .518.518v.054a.526.526 0 0 1-.518.516h-.004zm-1.44-2.544v.056a.516.516 0 0 1-.52.516H8.842a.516.516 0 0 1-.518-.516v-.056c0-.285.232-.517.518-.517h6.205c.286 0 .516.232.516.517h.002zm-1.92-1.987v.054a.516.516 0 0 1-.517.518h-2.464a.516.516 0 0 1-.516-.518v-.054c0-.286.232-.516.516-.516h2.464a.51.51 0 0 1 .516.516zm-.517 7.443c.284 0 .516.232.516.518v.054a.516.516 0 0 1-.516.516h-2.464a.516.516 0 0 1-.516-.516v-.054c0-.286.232-.518.516-.518zm1.918-.912H8.843a.516.516 0 0 1-.518-.516v-.054a.52.52 0 0 1 .518-.518h6.205c.286 0 .516.232.516.518v.054a.516.516 0 0 1-.516.516"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lodash.svg�����������������������������������0000664�0000000�0000000�00000001032�14753064456�0025071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 20.253h24v2.542H0zM18.061 5.212l.223.031c1.933-.071 3.885 1.006 4.882 2.674.844 1.566.976 3.458.712 5.187-.204 1.657-1.149 3.234-2.644 4.027-2.177 1.139-5.085 1.017-7.017-.59-1.994-1.942-2.461-5.136-1.444-7.678.711-2.207 3-3.661 5.288-3.63zm.234 1.8h-.183c-1.424-.03-2.777.915-3.285 2.237-.732 1.831-.732 4.17.691 5.695 1.17 1.434 3.458 1.597 4.882.438 1.525-1.312 1.83-3.59 1.322-5.451-.275-1.648-1.78-2.929-3.458-2.929zM0 1.205h2.237v14.847h8.848v1.831H0z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/logitech.svg���������������������������������0000664�0000000�0000000�00000001655�14753064456�0025430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 5.098a1.35 1.35 0 0 1-1.35 1.35 1.35 1.35 0 0 1-1.352-1.35 1.35 1.35 0 0 1 1.351-1.351A1.35 1.35 0 0 1 24 5.097zM16.549 18.31a2.29 2.29 0 0 1-2.322-2.322H12.2c0 2.449 1.9 4.264 4.306 4.264s4.348-1.857 4.348-4.264H18.87c-.043 1.351-1.056 2.322-2.322 2.322zm5.108-2.828h1.984V7.377h-1.984zM0 15.483h1.984V4H0zm7.135-8.359c-2.449 0-4.307 1.858-4.307 4.264a4.27 4.27 0 0 0 4.307 4.306c2.406 0 4.306-1.858 4.306-4.264S9.583 7.124 7.135 7.124m0 6.628c-1.31 0-2.322-1.013-2.322-2.364a2.29 2.29 0 0 1 2.322-2.322 2.29 2.29 0 0 1 2.321 2.322c0 1.309-.97 2.364-2.321 2.364m13.635-4.77V7.377h-2.828c-.464-.21-.929-.253-1.393-.253-2.449 0-4.348 1.858-4.348 4.306s1.9 4.264 4.306 4.264 4.306-1.858 4.306-4.264c0-.844-.254-1.604-.676-2.195zm-4.221 4.77c-1.309 0-2.322-1.013-2.322-2.364a2.29 2.29 0 0 1 2.322-2.322 2.29 2.29 0 0 1 2.322 2.322c0 1.309-1.056 2.364-2.322 2.364"/></svg>�����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/logitechg.svg��������������������������������0000664�0000000�0000000�00000000636�14753064456�0025575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.566 0Q10.083 0 7.89.941a12.1 12.1 0 0 0-3.86 2.569 12 12 0 0 0-2.582 3.822Q.482 9.503.506 11.988q0 2.486.941 4.68c.854 1.97 2.677 4.771 6.442 6.367q2.194.965 4.677.965v-4.992q-1.47 0-2.75-.555a7.1 7.1 0 0 1-3.738-3.74 6.96 6.96 0 0 1 0-5.451 7.1 7.1 0 0 1 3.738-3.739 6.8 6.8 0 0 1 2.75-.554Zm.17 9.842v4.943h5.813V20.6h4.945V9.842Z"/></svg>��������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/logmein.svg����������������������������������0000664�0000000�0000000�00000002755�14753064456�0025266�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.372 0 0 5.373 0 12s5.372 12 12 12 12-5.373 12-12S18.628 0 12 0M5.379 4.768h1.74q.22 0 .424.01a.38.38 0 0 1 .303.152.7.7 0 0 1 .11.364q.01.223.01.484v12.093q0 .263.01.587t-.091.485q-.08.143-.363.222a.8.8 0 0 1-.304.02 3 3 0 0 0-.323-.02H5.702q-.223 0-.415-.02a.57.57 0 0 1-.314-.12.48.48 0 0 1-.12-.304 4 4 0 0 1-.02-.424V6.203q0-.282-.01-.667-.01-.383.09-.545a.6.6 0 0 1 .264-.202q.061 0 .11-.01a1 1 0 0 1 .092-.011m10.527 3.687q.303-.011.548.019.848.047 1.464.338a2.97 2.97 0 0 1 1.273 1.133q.142.223.222.475.083.253.164.515.039.162.05.304.008.142.05.284 0 .12.02.16.04.284.04.587v5.661q0 .386-.01.738-.011.356-.294.456a.9.9 0 0 1-.283.04h-1.415q-.244 0-.435-.03a.42.42 0 0 1-.293-.173.6.6 0 0 1-.09-.313 9 9 0 0 1-.01-.416v-4.426q0-.75-.06-1.386-.062-.636-.365-1.082a1.43 1.43 0 0 0-.668-.51c-.186-.095-.488-.156-.827-.156-.397 0-.74.083-.912.207q-.209.087-.362.197-.648.466-.77 1.354-.121.89-.123 2.002v4.125q0 .182-.06.304a.42.42 0 0 1-.323.262q-.223.04-.545.04H10.88q-.224 0-.446-.02t-.323-.142q-.143-.18-.131-.525.009-.345.009-.647V9.6q0-.221.01-.403a.5.5 0 0 1 .112-.305.24.24 0 0 1 .132-.09q.09-.03.191-.05h.102q.102-.021.212-.022h1.06q.163 0 .316.012.15.01.271.05.143.06.193.181c.03.072.03.147.054.24.056.23.118.486.291.508.08.01.159-.025.224-.09.031-.022.114-.11.14-.144.095-.114.28-.278.388-.346.078-.058.142-.1.202-.136.192-.134.483-.261.832-.36q.021-.01.042-.016.167-.054.342-.077l.159-.029c.224-.038.442-.06.643-.068Z"/></svg>�������������������mkdocs-material-9.6.4/material/templates/.icons/simple/logseq.svg�����������������������������������0000664�0000000�0000000�00000001516�14753064456�0025120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.3 9.838c-2.677-1.366-5.467-1.56-8.316-.607-1.738.58-3.197 1.58-4.267 3.088-1.031 1.452-1.45 3.071-1.184 4.837.268 1.781 1.164 3.228 2.505 4.4C9.96 23.231 12.24 23.942 15.092 24c.41-.053 1.157-.103 1.883-.255 2.004-.418 3.754-1.325 5.08-2.915 1.621-1.942 2.108-4.148 1.272-6.562-.704-2.034-2.138-3.467-4.027-4.43M7.515 6.295c.507-2.162-.88-4.664-2.988-5.37-1.106-.37-2.156-.267-3.075.492C.61 2.114.294 3.064.271 4.146c.009.135.016.285.029.435.01.102.021.205.042.305.351 1.703 1.262 2.98 2.9 3.636 1.912.766 3.808-.244 4.273-2.227m4.064-1.146c1.075.377 2.152.31 3.22-.033.94-.3 1.755-.793 2.341-1.609.803-1.117.5-2.387-.717-3.027-.6-.317-1.246-.438-1.927-.48-.47.076-.95.117-1.41.234-1.068.27-2.002.781-2.653 1.7-.495.697-.64 1.45-.174 2.227.303.504.779.799 1.32.988"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/logstash.svg���������������������������������0000664�0000000�0000000�00000000330�14753064456�0025443�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.745 24h8.291v-9.164h-8.29zm-2.618 0h.437v-9.164h-9.6A9.163 9.163 0 0 0 11.127 24m.438-9.164h-9.6V0h.873a8.727 8.727 0 0 1 8.727 8.727z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/looker.svg�����������������������������������0000664�0000000�0000000�00000001264�14753064456�0025121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.948 0A2.1 2.1 0 0 0 9.85 2.104a2.1 2.1 0 0 0 .356 1.166l.895-.896a.884.884 0 1 1 .565.564l-.895.895A2.096 2.096 0 0 0 13.119.359 2.1 2.1 0 0 0 11.949 0m-.836 6.113a3.26 3.26 0 0 0-.652-1.965L9.295 5.31a1.67 1.67 0 0 1-.317 2.012l.632 1.545a3.28 3.28 0 0 0 1.503-2.754m-3.25 1.666h-.03A1.67 1.67 0 0 1 7.83 4.44a1.67 1.67 0 0 1 .92.275L9.9 3.564a3.28 3.28 0 0 0-4.133 5.094 3.28 3.28 0 0 0 2.728.666zm4.129 1.336c-.728 0-1.452.106-2.15.315l.922 2.252a5.02 5.02 0 1 1-1.127.435l-.91-2.244a7.44 7.44 0 0 0-3.41 9.956v.001a7.44 7.44 0 0 0 9.957 3.41h.001a7.44 7.44 0 0 0 3.412-9.957A7.44 7.44 0 0 0 12 9.113h-.008z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/loom.svg�������������������������������������0000664�0000000�0000000�00000000753�14753064456�0024576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 10.665h-7.018l6.078-3.509-1.335-2.312-6.078 3.509 3.508-6.077L16.843.94l-3.508 6.077V0h-2.67v7.018L7.156.94 4.844 2.275l3.509 6.077-6.078-3.508L.94 7.156l6.078 3.509H0v2.67h7.017L.94 16.844l1.335 2.313 6.077-3.508-3.509 6.077 2.312 1.335 3.509-6.078V24h2.67v-7.017l3.508 6.077 2.312-1.335-3.509-6.078 6.078 3.509 1.335-2.313-6.077-3.508h7.017v-2.67zm-12 4.966a3.645 3.645 0 1 1 0-7.29 3.645 3.645 0 0 1 0 7.29"/></svg>���������������������mkdocs-material-9.6.4/material/templates/.icons/simple/loop.svg�������������������������������������0000664�0000000�0000000�00000002103�14753064456�0024570�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.371 0 0 5.371 0 12s5.371 12 12 12 12-5.371 12-12c.011-6.629-5.371-12-12-12m.7 22.611C6.837 22.611 2.089 17.863 2.089 12S6.837 1.389 12.7 1.389 23.311 6.137 23.311 12 18.563 22.611 12.7 22.611M7.045 3.413C2.298 6.148.679 12.208 3.413 16.955c2.735 4.737 8.806 6.366 13.542 3.632 4.747-2.735 6.366-8.806 3.632-13.542C17.852 2.297 11.792.678 7.045 3.413m9.823 15.621a8.524 8.524 0 0 1-11.639-3.118A8.524 8.524 0 0 1 8.347 4.277a8.524 8.524 0 0 1 11.639 3.118c2.351 4.069.962 9.287-3.118 11.639M5.229 8.084c-2.166 3.741-.875 8.532 2.866 10.687 3.741 2.166 8.532.875 10.698-2.866s.875-8.532-2.866-10.687c-3.752-2.155-8.543-.875-10.698 2.866m12.842 6.618a6.603 6.603 0 0 1-9.025 2.417c-3.161-1.827-4.244-5.863-2.418-9.025s5.863-4.244 9.025-2.418c3.162 1.817 4.245 5.865 2.418 9.026M6.093 12c0 3.271 2.647 5.918 5.918 5.918s5.918-2.647 5.918-5.918-2.647-5.918-5.918-5.918A5.915 5.915 0 0 0 6.093 12m10.611-.7c0 2.593-2.1 4.693-4.693 4.693s-4.693-2.1-4.693-4.693 2.1-4.693 4.693-4.693c2.582 0 4.693 2.1 4.693 4.693"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/loopback.svg���������������������������������0000664�0000000�0000000�00000001030�14753064456�0025407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6.333 18.413 2.512-1.615 3.179 1.814 3.209-1.876 2.656 1.515-5.849 3.418zM5.273 6.239l6.687-3.907 6.73 3.839.022 6.755-2.654-1.513-.011-3.701-4.071-2.322-4.05 2.367.011 3.698-.903.526-1.739 1.118zm3.608 2.463 1.913 1.089-1.906 1.11zm4.337 5.514 2.634-1.544 3.271 1.862 2.221-1.296-.013-2.571-1.677-.957-.01-3.054 4.355 2.485.001 5.611-4.859 2.841zm-13.189.661L0 9.249l4.322-2.525.009 3.061-1.675.979.013 2.57 2.234 1.274L15.098 8.66l.009 3.062-10.189 5.944z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lootcrate.svg��������������������������������0000664�0000000�0000000�00000002640�14753064456�0025621�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.895 11.048a.116.116 0 0 0 .031.201c1.621.579 2.393.66 2.393 2.081v4.011c0 .716-.051.88-.531 1.254-.877.683-6.185 4.747-6.392 4.913-.774.62-1.169.556-2.054.339a515 515 0 0 1-9.945-2.577c-1.746-.47-1.701-2.064-1.701-3.203 0-3.945-.015-7.468-.015-11.202 0-1.186.049-1.222.95-1.881.83-.607 4.296-3.135 6.153-4.499.553-.406.828-.607 1.618-.406 1.616.41 6.664 1.649 9.382 2.339 2.083.529 2.535.893 2.535 2.326V8.38c0 .465-.007.638-.408.981-.202.173-1.348 1.14-2.016 1.687m1.624-2.556a.113.113 0 0 0 .141-.112c.001-1.414.011-2.495.011-3.666 0-.622-.35-1.137-1.121-1.343C16.501 2.29 10.486.866 10.191.778c-.197-.059-.322.108-.322.199-.001 4.294.029 7.832.029 11.854 0 .741.408 1.525 1.292 1.765 3.582.973 6.578 1.655 10.331 2.667a.115.115 0 0 0 .143-.112c.001-.848.014-1.405.014-1.95 0-2.27.279-2.679-1.57-3.194-2.198-.612-5.306-1.378-5.554-1.441-.485-.124-.548-.266-.548-.591 0-.122-.011-2.346-.003-2.869.002-.157.006-.31.157-.397.134-.077.264-.046.664.053.448.111 4.598 1.186 6.695 1.73m-7.65 14.735a.114.114 0 0 0 .142-.111c.001-1.185.017-2.484.017-3.352 0-1.475.182-1.334-1.064-1.639-1.474-.36-4.433-1.146-5.967-1.552-.355-.094-.459-.424-.459-.998 0-1.726-.006-4.575-.006-6.577 0-1.834.193-1.599-.703-1.832-.565-.146-2.468-.637-3.313-.828-.144-.032-.225.085-.225.224-.003 3.939.053 8.211.053 11.994 0 1.228.439 1.815 1.321 2.051 3.589.963 6.446 1.652 10.204 2.62"/></svg>������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lospec.svg�����������������������������������0000664�0000000�0000000�00000000171�14753064456�0025107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.23 0v24h15.541v-8.4h-7.172v3.6h-1.197V0z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lotpolishairlines.svg������������������������0000664�0000000�0000000�00000001323�14753064456�0027366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.375 0 0 5.375 0 12s5.375 12 12 12 12-5.375 12-12S18.625 0 12 0M.745 12A11.25 11.25 0 0 1 12 .745c1.287 0 2.511.227 3.66.618L9.387 13.93l-8.113 1.476A11.3 11.3 0 0 1 .744 12M12 23.256c-4.997 0-9.237-3.269-10.7-7.773h7.836l7.079 6.952c-1.3.518-2.726.82-4.215.82m4.227-.833a2.25 2.25 0 0 0 .631-1.565c0-.707-.328-1.35-.845-1.754l-4.732-3.621H22.7a11.3 11.3 0 0 1-6.474 6.94m5.161-8.089h-2.7l.202.29h.92l.468.568h-5.086c0-1.009-.82-1.842-1.842-1.842-.1 0-.202.013-.29.025l-1.83.278 5.4-8.984c.215-.353.329-.757.329-1.186 0-.909-.505-1.716-1.25-2.095 4.392 1.527 7.547 5.69 7.547 10.612 0 1.11-.164 2.183-.467 3.192a1.75 1.75 0 0 1-1.401-.858"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lottiefiles.svg������������������������������0000664�0000000�0000000�00000001066�14753064456�0026151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.928 0H6.072A6.076 6.076 0 0 0 0 6.073v11.854A6.076 6.076 0 0 0 6.073 24h11.854A6.076 6.076 0 0 0 24 17.927V6.073A6.076 6.076 0 0 0 17.927 0m1.42 7.013a1.4 1.4 0 0 1-.26.39c-.11.11-.24.2-.39.26-.14.06-.3.09-.45.09-2.511 0-3.482 1.53-4.792 4.042l-.8 1.51c-1.231 2.382-2.762 5.323-6.894 5.323-.31 0-.62-.12-.84-.35a1.188 1.188 0 0 1 .84-2.031c2.511 0 3.482-1.53 4.792-4.042l.8-1.51c1.231-2.382 2.762-5.323 6.894-5.323q.24 0 .45.09c.14.06.27.15.39.26.11.11.2.24.26.39a1.17 1.17 0 0 1 0 .9"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ltspice.svg����������������������������������0000664�0000000�0000000�00000001316�14753064456�0025267�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.327 3.485c-.797.627-.975 1.621-1.165 3.317-.365 3.257-.64 5.198-1.047 8.658-.199 1.701.976 1.902 2.365 1.886h2.884c.26.002.352.123.319.38-.124.966-.258 2.79-1.19 2.79L0 20.492s2.83-1.032 3.165-3.372l1.34-10.887c.208-1.357 1.288-2.75 2.634-2.75zm5.556 17.03c1.346 0 2.426-1.392 2.634-2.749l1.34-10.887c.335-2.34 3.165-3.372 3.165-3.372l-11.493-.022c-.932 0-1.066 1.823-1.19 2.788-.033.258.059.379.32.38h2.883c1.39-.015 2.564.186 2.365 1.887-.406 3.46-.682 5.4-1.047 8.658-.19 1.696-.368 2.69-1.165 3.317zm8.319-13.862c.259 0 .496-.21.528-.466l.267-2.23a.41.41 0 0 0-.414-.472h-.88c-1.088 0-2.202 1.795-2.255 2.696a.408.408 0 0 0 .411.472z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lua.svg��������������������������������������0000664�0000000�0000000�00000006625�14753064456�0024415�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m.38 10.377-.272-.037c-.048.344-.082.695-.101 1.041l.275.016q.027-.512.098-1.02m3.756-7.088-.184-.205c-.258.232-.509.48-.746.734l.202.188c.231-.248.476-.49.728-.717m1.633-1.23-.146-.235q-.446.28-.863.594l.166.219c.27-.203.554-.399.843-.578m-3.945 16.31q.278.447.593.863l.22-.164a12 12 0 0 1-.58-.844zm-.697-1.967-.255.104q.195.479.431.943l.005.01.245-.125-.005-.01a12 12 0 0 1-.421-.922M.298 9.309l.269.063c.076-.332.168-.664.272-.986l-.261-.087c-.108.332-.202.672-.28 1.01M.274 12.42l-.275.01c.012.348.04.699.083 1.043l.273-.033c-.042-.336-.069-.68-.081-1.02m-.018 2.086c.073.34.162.682.264 1.014l.263-.08q-.15-.49-.258-.99zM11.573.275 11.563 0c-.348.012-.699.039-1.044.082l.034.273q.508-.062 1.02-.08m11.648 8.291c.1.326.186.66.256.992l.27-.059c-.072-.34-.16-.682-.262-1.014zm-5.6-7.177a12 12 0 0 0-.947-.449l-.107.252q.473.2.926.439zM15.693.572q-.499-.159-1.01-.277l-.063.268q.5.115.988.273zm-9.019.973q.449-.226.916-.418L7.486.873q-.478.192-.937.428l-.015.008.125.244zm17.053 10.043.275-.01a12 12 0 0 0-.082-1.045l-.273.033c.041.338.068.682.08 1.022M13.654.105q-.52-.07-1.043-.098l-.014.273c.339.018.683.051 1.019.098zm-4.11.422-.058-.27c-.34.072-.681.16-1.014.264l.081.262c.325-.099.659-.185.991-.256M1.921 5.469l.231.15c.185-.285.384-.566.592-.834l-.217-.17q-.321.416-.606.854M.943 7.318l.253.107c.132-.313.28-.625.439-.924l-.243-.128c-.163.307-.314.625-.449.945m17.28 14.625.145.234c.295-.186.586-.385.863-.594l-.164-.219c-.272.204-.557.4-.844.579m3.025-2.724.217.17c.215-.273.418-.561.607-.854l-.23-.148q-.28.429-.594.832m-1.393 1.496.184.203c.258-.23.51-.479.746-.732l-.201-.188c-.23.248-.477.488-.729.717m2.504-3.211.244.129c.162-.307.314-.625.449-.945l-.254-.107a11 11 0 0 1-.439.923m1.258-3.875.273.039q.073-.52.102-1.043l-.275-.014a11 11 0 0 1-.1 1.018m-.461 1.992.264.086q.161-.499.279-1.01l-.268-.063c-.077.333-.169.665-.275.987m-.703-8.949c.154.303.297.617.424.932l.256-.104a12 12 0 0 0-.436-.953zM8.296 23.418q.498.161 1.009.279l.062-.268a12 12 0 0 1-.986-.273zm2.039.471c.345.049.696.082 1.043.102l.014-.275a12 12 0 0 1-1.019-.098zm6.991-1.44q-.456.232-.926.424l.104.256c.318-.131.639-.275.947-.434l.004-.002-.123-.246zm-12.713-.982c.274.213.562.418.854.605l.149-.23a12 12 0 0 1-.833-.592zm7.804 2.258.009.275a13 13 0 0 0 1.045-.084l-.035-.271c-.336.041-.68.068-1.019.08M6.37 22.604q.463.245.946.449l.107-.254a12 12 0 0 1-.924-.439zm-3.287-2.563c.233.258.48.51.734.746l.188-.201c-.249-.23-.49-.477-.717-.729zm11.362 3.434.059.27a12 12 0 0 0 1.014-.266l-.082-.262c-.325.099-.659.185-.991.258M21.18.129a2.689 2.689 0 1 0 0 5.378 2.689 2.689 0 1 0 0-5.378m-5.856 15.318c0 .471.314.66.852.66.67 0 1.297-.396 1.297-1.016v-.645c-.23.107-.379.141-1.107.24-.735.109-1.042.306-1.042.761M12 2.818a9.18 9.18 0 0 0-9.18 9.18A9.18 9.18 0 1 0 12 2.818m-2.487 13.77H5.771v-6.023h.769v5.346h2.974zm4.13 0h-.619v-.67c-.405.57-.811.793-1.446.793-.843 0-1.38-.463-1.38-1.182v-3.271h.686v3c0 .52.347.85.893.85.719 0 1.181-.578 1.181-1.461v-2.389h.686v4.33zm-.53-8.393a2.69 2.69 0 1 1 5.375.001 2.69 2.69 0 0 1-5.375-.001m5.567 7.856v.52c-.223.059-.33.074-.471.074a.73.73 0 0 1-.711-.57 2.03 2.03 0 0 1-1.471.637c-.877 0-1.422-.463-1.422-1.248 0-.527.256-.916.76-1.123.266-.107.414-.141 1.389-.264.545-.066.719-.191.719-.48v-.182c0-.412-.348-.645-.967-.645-.645 0-.957.24-1.016.77h-.693c.041-1 .686-1.404 1.734-1.404 1.066 0 1.627.412 1.627 1.182v2.412c0 .215.133.338.373.338.041-.002.074-.002.149-.017"/></svg>�����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lubuntu.svg����������������������������������0000664�0000000�0000000�00000002152�14753064456�0025321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m1.287 4.723q.316-.031.63.004a3.17 3.17 0 0 1 2.41 1.642l5.665.781h-6.458a2.58 2.58 0 0 0-1.66-.955 2.57 2.57 0 0 0-1.371.192c-.43.19-.8.495-1.068.88-.268.387-.424.84-.451 1.31-.026.468.078.935.3 1.349a3.13 3.13 0 0 1-.795-1.68 3.13 3.13 0 0 1 .305-1.832 3.14 3.14 0 0 1 1.299-1.332 3.1 3.1 0 0 1 1.195-.36m-9.88 1.09 8.673 6.232-7.154-4.012a3.6 3.6 0 0 0-.072 2.022 3.57 3.57 0 0 0 1.998 2.34l4.748 1.334-6.002-.983c.061.58.275 1.133.619 1.604a3.33 3.33 0 0 0 2.652 1.33 3.95 3.95 0 0 1-3.062-.451 3.9 3.9 0 0 1-1.432-1.563 3.9 3.9 0 0 1-.398-2.08l1.32.371a4.7 4.7 0 0 1-1.246-.986 4.7 4.7 0 0 1-1.111-2.48 4.67 4.67 0 0 1 .466-2.678m11.667 3.132q-.01.138-.008.278c.007 1.143.535 2.21 1.057 3.226.523 1.017 1.064 2.076 1.094 3.22.024.95-.32 1.895-.899 2.651-.578.756-1.377 1.328-2.255 1.696a6.5 6.5 0 0 1-3.91.338l-1 2.373v-3.327a6.23 6.23 0 0 0 3.665-.31c.7-.285 1.352-.707 1.862-1.264s.875-1.255.986-2.002c.15-1-.151-2.007-.447-2.974s-.595-1.977-.436-2.975a3.3 3.3 0 0 1 .291-.93"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lucia.svg������������������������������������0000664�0000000�0000000�00000000303�14753064456�0024714�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.382 20.714 12 0 3.618 20.714 2.288 24h19.423zM12 13.61l-5.73 7.058 1.288-3.184L12 6.505l4.442 10.978 1.289 3.184z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lucid.svg������������������������������������0000664�0000000�0000000�00000000202�14753064456�0024715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0 3.694 4.8V24L12 19.2Zm0 19.2v4.502h8.305V14.4Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lucide.svg�����������������������������������0000664�0000000�0000000�00000001575�14753064456�0025100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.483 1.123a1.1 1.1 0 0 0-.752.362 1.09 1.09 0 0 0 .088 1.54 11.96 11.96 0 0 1 4 8.946 7.62 7.62 0 0 1-7.637 7.636 7.62 7.62 0 0 1-7.637-7.636 3.255 3.255 0 0 1 3.273-3.273c1.82 0 3.273 1.45 3.273 3.273a1.09 1.09 0 0 0 1.09 1.09 1.09 1.09 0 0 0 1.092-1.09c0-3-2.455-5.455-5.455-5.455s-5.454 2.455-5.454 5.455c0 5.408 4.408 9.818 9.818 9.818S24 17.379 24 11.971A14.16 14.16 0 0 0 19.272 1.4a1.1 1.1 0 0 0-.789-.277M9.818 2.15C4.408 2.151 0 6.561 0 11.97a14.16 14.16 0 0 0 4.8 10.637 1.09 1.09 0 0 0 1.54-.096 1.09 1.09 0 0 0-.095-1.54 11.96 11.96 0 0 1-4.063-9 7.62 7.62 0 0 1 7.636-7.637 7.62 7.62 0 0 1 7.637 7.636 3.256 3.256 0 0 1-3.273 3.273 3.256 3.256 0 0 1-3.273-3.273 1.09 1.09 0 0 0-1.09-1.09 1.09 1.09 0 0 0-1.092 1.09c0 3 2.455 5.455 5.455 5.455s5.454-2.455 5.454-5.455c0-5.408-4.408-9.818-9.818-9.818z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ludwig.svg�����������������������������������0000664�0000000�0000000�00000000317�14753064456�0025117�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h24v24H0zm13.714 10.286V3.429h-3.428v10.285H20.57V3.43h-3.428v6.857h-3.429Zm-6.857 6.857V3.429H3.43V20.57h17.14v-3.428H6.857Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lufthansa.svg��������������������������������0000664�0000000�0000000�00000001763�14753064456�0025617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 12c0-6.648-5.352-12-12-12C5.376 0 0 5.352 0 12c0 6.624 5.376 12 12 12 6.648 0 12-5.376 12-12m-.864 0c0 6.12-4.992 11.136-11.136 11.136C5.88 23.136.864 18.121.864 12 .864 5.856 5.88.864 12 .864 18.144.864 23.136 5.856 23.136 12m-6.888-.72c-.264 0-.6 0-1.032.024l.312-.528h.504c1.8 0 3.144.096 4.368.312l.552-.528c-1.368-.24-3.024-.384-4.704-.384h-.408l.264-.504h.456a26 26 0 0 1 4.872.432l.576-.552c-1.728-.336-3.576-.503-5.568-.503q-1.274.004-2.544.12c-.96 2.063-2.496 3.264-4.224 3.24-.672-.025-1.513-.312-2.592-.889l-1.008-.576.312-.288 2.328 1.008.504-.384-4.704-2.136-.72.552L2.112 9l.024.696c2.256 1.032 3.192 1.608 5.568 3.312 3.096 2.208 5.856 3.408 9.696 4.176l1.008-.96h-.24c-2.544 0-4.824-.84-6.144-2.256 1.104-.672 2.471-.983 4.368-.983.504 0 1.224.047 1.896.119l.576-.552a23 23 0 0 0-2.712-.168 22 22 0 0 0-1.824.072l.432-.528q.767-.045 1.536-.048c1.272 0 2.112.048 3.072.192l.552-.528c-1.008-.167-2.4-.264-3.672-.264"/></svg>�������������mkdocs-material-9.6.4/material/templates/.icons/simple/lumen.svg������������������������������������0000664�0000000�0000000�00000002245�14753064456�0024746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.649 0a.75.75 0 0 0-.342.072l-4.878 2.23a.75.751 0 1 0 .624 1.366l4.878-2.23A.75.75 0 0 0 11.649 0m5.624.354a.75.75 0 0 0-.341.074L6.425 5.306a.75.75 0 0 0 .632 1.362L17.563 1.79a.75.75 0 0 0-.29-1.436m0 3.002a.75.75 0 0 0-.341.074L6.425 8.31a.75.75 0 0 0 .632 1.362l10.506-4.88a.75.75 0 0 0-.29-1.436m0 3.002a.75.75 0 0 0-.341.074L6.425 11.311a.75.75 0 0 0 .632 1.361l10.506-4.878a.75.75 0 0 0-.29-1.436m.009 3.003a.75.75 0 0 0-.342.07l-3.753 1.688a.75.75 0 0 0-.442.685v3.518l.001.047h-1.503v-2.627a.75.75 0 0 0-.761-.761.75.75 0 0 0-.74.761v2.58l.002.047h-.94a.46.46 0 0 0-.47.555l.19 1.14a.69.69 0 0 0 .656.557h2.28l-2.537.476a.375.375 0 1 0 .139.737l6.003-1.126a.375.375 0 0 0 .307-.41.6.6 0 0 0 .092-.232l.19-1.142a.46.46 0 0 0-.47-.555h-.94l.002-.047V12.29l3.31-1.49a.75.75 0 0 0-.274-1.438zm-2.292 9.385a.4.4 0 0 0-.063.007l-6.004 1.126a.375.375 0 1 0 .139.737l6.003-1.125a.375.375 0 0 0-.075-.745m0 1.876a.4.4 0 0 0-.063.008l-6.004 1.125a.375.375 0 1 0 .139.737l6.003-1.125a.375.375 0 0 0-.075-.745m-.743 1.876a.4.4 0 0 0-.064.006l-4.471.751a.375.375 0 1 0 .124.74l4.472-.75a.375.375 0 0 0-.061-.747"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lunacy.svg�����������������������������������0000664�0000000�0000000�00000001115�14753064456�0025114�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.031 6h-6v12h11.996v-6l-5.996 5.996Zm6.563 2.309a4.01 4.01 0 0 1-2.371-2.375 4.03 4.03 0 0 1-2.375 2.375 4.04 4.04 0 0 1 2.375 2.375 4.01 4.01 0 0 1 2.37-2.375ZM0 9.602c0-3.364 0-5.043.652-6.325A6.04 6.04 0 0 1 3.277.652C4.56 0 6.238 0 9.602 0h4.796c3.364 0 5.043 0 6.325.652a6.04 6.04 0 0 1 2.625 2.625C24 4.56 24 6.238 24 9.602v4.796c0 3.364 0 5.043-.652 6.325a6.04 6.04 0 0 1-2.625 2.625C19.44 24 17.762 24 14.398 24H9.602c-3.364 0-5.043 0-6.325-.652a6.04 6.04 0 0 1-2.625-2.625C0 19.44 0 17.762 0 14.398Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lutris.svg�����������������������������������0000664�0000000�0000000�00000003466�14753064456�0025156�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.231 18.89.001-.002c-1.293 3.243-5.218 5.232-9.447 5.105C5.3 23.993 0 18.48 0 11.906S5.276.001 11.785.001c1.793 0 3.493.406 5.015 1.13.081-.177.271-.544.451-.557.238-.017.374.137.526.309.154.172.46.429.46.429s1.393-.481 2.955.377 1.783 1.116 2.09 1.716c.152.301.195.829.2 1.282l-.07-.003c-.496 0-.96.455-.96 1.08 0 .263.082.496.215.678l-.01.007a2 2 0 0 0-.132.01 19 19 0 0 0-.389-.142 2.5 2.5 0 0 1-.82-.472 1.402 1.402 0 0 0-1.196-2.112c-.383 0-.73.156-.982.41-.472-.271-1.174-.482-2.527-.565l-.407-.011c-2.282.012-3.611.279-5.979 1.301-.603.283-1.206.615-1.785 1.001-.423.3-.639.67-.709 1.137a1.326 1.326 0 0 0 1.23 1.373h.042c1.27.06 2.039 1.99 2.063 2.497.004.05.004.023.003.08-.032.727-.37 1.267-1.088 1.246a1.23 1.23 0 0 1-.976-.494c-.063-.077-.103-.172-.159-.254-.666-1.081-1.732-1.36-2.771-1.523-.438-.068-1.073-.122-1.31.25a8.3 8.3 0 0 0-.577 3.063c-.02 5.036 4.041 9.118 9.026 9.118 2.575 0 5.349-.952 6.993-2.7l-.035.03c-1.772 1.473-4.66 1.941-6.027 1.941-4.302 0-7.818-3.232-7.818-7.578 0-1.276.288-2.396.814-3.36.495.183.947.483 1.28 1.022l.013.021c.064.092.111.197.182.284.424.524.881.658 1.342.68h.01c.43.013.768-.12 1.024-.342.347-.3.55-.79.577-1.382v-.014c.002-.085 0-.053-.004-.112-.024-.376-.333-1.318-.906-2.027-.266-.331-.587-.607-.95-.774l.12-.074c.756-.457 2.364-.977 4.592-.638 1.13.173 2.055.419 3.483.879 1.657.534 2.579 1.279 3.854 1.427q.226.026.45.003c.41 1.129.634 2.35.634 3.621 0 2.068-.59 3.995-1.611 5.62zm1.947-12.274s-.115.201-.364.322c-.103.05-.282-.075-.45.1-.359.726.516 1.332.923 1.315s.73-.432.712-.793c-.017-.558-.82-.944-.82-.944zm.234-1.432c.255 0 .462.26.462.58s-.207.58-.462.58c-.254 0-.46-.26-.46-.58s.206-.58.46-.58m-3.292-.951c.492 0 .89.403.89.9a.895.895 0 0 1-.89.898.895.895 0 0 1-.89-.899c0-.496.399-.899.89-.899"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lvgl.svg�������������������������������������0000664�0000000�0000000�00000001367�14753064456�0024576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.23 16.615h5.54c.51 0 .922.412.922.923v5.539a.92.92 0 0 1-.923.923H9.231a.92.92 0 0 1-.923-.923v-5.539a.92.92 0 0 1 .923-.923zM0 17.538c0-.51.413-.923.923-.923h5.539c.51 0 .923.413.923.923v5.539c0 .51-.414.923-.923.923H2.769A2.77 2.77 0 0 1 0 21.23zm.923-9.23h5.539a.92.92 0 0 1 .923.922v5.539a.92.92 0 0 1-.923.923H.923A.92.92 0 0 1 0 14.769V9.23c0-.511.412-.923.923-.923zM2.77 0A2.77 2.77 0 0 0 0 2.769V6.46c0 .51.413.923.923.923h5.539c1.02 0 1.846.827 1.846 1.846v5.539c0 .51.413.923.923.923h5.538c1.02 0 1.847.826 1.847 1.846v5.539c0 .51.413.923.923.923h3.692A2.77 2.77 0 0 0 24 21.23V2.77A2.77 2.77 0 0 0 21.23 0zm18 1.846a1.385 1.385 0 1 1 0 2.769 1.385 1.385 0 0 1 0-2.77z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lydia.svg������������������������������������0000664�0000000�0000000�00000000570�14753064456�0024727�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m5.895 17.611a.4.4 0 0 1-.168.035h-1.155a.61.61 0 0 1-.56-.377l-4-9.613-3.991 9.607a.61.61 0 0 1-.56.377H6.273a.42.42 0 0 1-.385-.59L10.91 5.575a.79.79 0 0 1 .726-.475h.748a.79.79 0 0 1 .726.48l5.003 11.482a.42.42 0 0 1-.218.549"/></svg>����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/lyft.svg�������������������������������������0000664�0000000�0000000�00000001517�14753064456�0024605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.38 15.883c.036.042.125.135.125.135s-.094.059-.152.086a3.05 3.05 0 0 1-1.28.286C1.593 16.39 0 15.29 0 12.878v-8.78h3.512v9.365c0 .95.306 1.781.867 2.42zM24 11.122V7.61h-1.253c-.524-2.76-3.425-4.574-6.341-3.484-1.624.607-2.943 2.548-2.943 4.282v7.979h.153a3.5 3.5 0 0 0 2.38-1.077c.632-.658.98-1.522.98-2.432h1.463V9.366h-1.463V8.4c0-.375.198-.726.526-.909.9-.5 1.815.143 1.815.996v3.22c0 1.273.48 2.456 1.354 3.329a4.67 4.67 0 0 0 3.178 1.351H24v-3.51a1.17 1.17 0 0 1-1.17-1.17v-.586zm-14.927 1.17a.585.585 0 0 1-1.17 0V7.61H4.39v5.853a2.928 2.928 0 0 0 4.83 2.224c-.055.433-.294.792-.69 1.04-.373.234-.857.357-1.402.357a3.8 3.8 0 0 1-1.65-.382s-.093-.044-.21-.11v3.119a6.7 6.7 0 0 0 2.468.484c1.312 0 2.51-.41 3.371-1.155.967-.836 1.478-2.056 1.478-3.528V7.61H9.073z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/maas.svg�������������������������������������0000664�0000000�0000000�00000001230�14753064456�0024540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.383 0 0 5.384 0 12s5.383 12 12 12 12-5.384 12-12S18.617 0 12 0M6.343 6.257h11.314c.284 0 .514.23.514.515v.685c0 .285-.23.515-.514.515H6.343a.515.515 0 0 1-.515-.515v-.685c0-.284.23-.515.515-.515m0 3.257h11.314c.284 0 .514.23.514.515v.685c0 .285-.23.515-.514.515H6.343a.515.515 0 0 1-.515-.515v-.685c0-.284.23-.515.515-.515m0 3.257h11.314c.284 0 .514.23.514.515v.685c0 .285-.23.515-.514.515H6.343a.515.515 0 0 1-.514-.515v-.685c0-.284.23-.515.514-.515m0 3.258h11.314c.284 0 .514.23.514.513v.687c0 .284-.23.515-.514.515H6.343a.515.515 0 0 1-.514-.515v-.687c0-.284.23-.513.514-.513"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/macos.svg������������������������������������0000664�0000000�0000000�00000003035�14753064456�0024726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 14.727h.941v-2.453c0-.484.318-.835.771-.835.439 0 .71.276.71.722v2.566h.915V12.25c0-.48.31-.812.764-.812.46 0 .718.28.718.77v2.518h.94v-2.748c0-.801-.517-1.334-1.307-1.334-.578 0-1.054.31-1.247.805h-.023c-.147-.514-.552-.805-1.118-.805-.545 0-.968.306-1.142.771H.903v-.695H0v4.006zm7.82-.646c-.408 0-.68-.208-.68-.537 0-.318.26-.522.714-.552l.926-.057v.307c0 .483-.427.839-.96.839m-.284.71c.514 0 1.017-.268 1.248-.703h.018v.639h.908v-2.76c0-.804-.647-1.33-1.64-1.33-1.021 0-1.66.537-1.701 1.285h.873c.06-.332.344-.548.79-.548.464 0 .748.242.748.662v.287l-1.058.06c-.976.061-1.524.488-1.524 1.199 0 .721.564 1.209 1.338 1.209m6.305-2.642c-.065-.843-.719-1.512-1.777-1.512-1.164 0-1.92.805-1.92 2.087 0 1.3.756 2.082 1.928 2.082 1.005 0 1.697-.59 1.772-1.485h-.888c-.087.453-.397.725-.873.725-.597 0-.982-.483-.982-1.322 0-.824.381-1.323.975-1.323.502 0 .8.321.876.748zm2.906-2.967c-1.591 0-2.589 1.085-2.589 2.82s.998 2.816 2.59 2.816c1.586 0 2.584-1.081 2.584-2.816s-.997-2.82-2.585-2.82m0 .832c.971 0 1.591.77 1.591 1.988 0 1.213-.62 1.984-1.59 1.984-.976 0-1.592-.77-1.592-1.984 0-1.217.616-1.988 1.591-1.988m2.982 3.178c.042 1.006.866 1.626 2.12 1.626 1.32 0 2.151-.65 2.151-1.686 0-.813-.469-1.27-1.576-1.523l-.627-.144c-.67-.158-.945-.37-.945-.733 0-.453.415-.756 1.032-.756.623 0 1.05.306 1.096.817h.93c-.023-.96-.817-1.61-2.019-1.61-1.187 0-2.03.653-2.03 1.62 0 .78.477 1.263 1.482 1.494l.707.166c.688.163.967.39.967.782 0 .454-.457.779-1.115.779-.665 0-1.167-.329-1.228-.832z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/macpaw.svg�����������������������������������0000664�0000000�0000000�00000001770�14753064456�0025100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.622.21c.235-.126 1.12-.432 1.38.06s-.483 1.061-.736 1.196c-.252.136-.664.122-.898-.321A.675.675 0 0 1 9.622.21m2.634 4.822c.236-.126 1.12-.431 1.38.06.26.492-.482 1.061-.735 1.196-.253.136-.664.123-.899-.32a.675.675 0 0 1 .254-.936M12 24a11.4 11.4 0 0 1-8.08-3.345 11.38 11.38 0 0 1-3.35-8.077 11.38 11.38 0 0 1 3.35-8.077 11.4 11.4 0 0 1 3.632-2.446 2.835 2.835 0 0 1 3.719 1.508 2.84 2.84 0 0 1-1.508 3.716c-.684.289-1.3.704-1.83 1.233a5.7 5.7 0 0 0-1.684 4.067 5.7 5.7 0 0 0 1.684 4.065A5.73 5.73 0 0 0 12 18.327a5.73 5.73 0 0 0 4.068-1.683 5.71 5.71 0 0 0 1.685-4.065 2.84 2.84 0 0 1 2.838-2.837 2.84 2.84 0 0 1 2.838 2.836 11.3 11.3 0 0 1-.9 4.447 11.4 11.4 0 0 1-2.447 3.63A11.42 11.42 0 0 1 12 24m.426-21.111c.263-.14 1.346-.533 1.635.016.29.549-.633 1.235-.915 1.386s-.742.136-1.003-.359a.754.754 0 0 1 .283-1.043m-1.004-1.806c.263-.14 1.32-.518 1.61.03.29.55-.608 1.221-.89 1.372s-.741.136-1.003-.358a.754.754 0 0 1 .283-1.044"/></svg>��������mkdocs-material-9.6.4/material/templates/.icons/simple/macys.svg������������������������������������0000664�0000000�0000000�00000000274�14753064456�0024742�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.015.624 9.19 9.293H0l7.445 5.384-2.819 8.673L12 17.986l7.422 5.393-2.835-8.713L24 9.292h-9.162L12.015.622z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/magasinsu.svg��������������������������������0000664�0000000�0000000�00000002161�14753064456�0025612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.49 7.179h-3.51c-.642 0-.73.26-.73.654v5.7c-.044 1.305-.53 1.723-1.46 1.723-.956 0-1.444-.44-1.464-1.828V7.833c0-.393-.092-.654-.734-.654h-3.51v6.78c0 1.5.29 2.134.912 2.778.962 1 2.645 1.423 4.794 1.423 2.15 0 3.834-.422 4.798-1.423.62-.644.911-1.278.911-2.778zM14.26.906C8.425-.23 2.7 3.809 1.47 9.924.246 16.042 3.98 21.92 9.817 23.054c5.84 1.132 11.565-2.905 12.792-9.02C23.834 7.917 20.1 2.038 14.261.904m-2.465 21.384c-5.664 0-10.253-4.582-10.253-10.234 0-5.65 4.59-10.23 10.253-10.23 5.661 0 10.253 4.58 10.253 10.23 0 5.652-4.592 10.234-10.253 10.234M.026 11.136C-.4 17.289 4.367 22.646 10.869 23.2q-.522-.046-1.052-.147C3.981 21.92.244 16.04 1.471 9.924 2.69 3.85 8.346-.172 14.14.884c-.488-.094-.98-.16-1.486-.196C6.041.235.46 4.91.028 11.138M13.388.755a8 8 0 0 0-.774-.037 10 10 0 0 1 1.648.186c5.836 1.134 9.573 7.01 8.346 13.128-1.228 6.114-6.953 10.153-12.79 9.02a10 10 0 0 1-.767-.182c.992.306 2.06.473 3.183.473 1.126 0 1.996-.152 2.827-.34 3.604-.816 6.523-3.342 7.98-6.506.635-1.421.961-2.96.959-4.515-.001-6.26-4.916-10.743-10.613-11.226"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/magic.svg������������������������������������0000664�0000000�0000000�00000001156�14753064456�0024706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a29.7 29.7 0 0 1-3.611 3.53A27.3 27.3 0 0 1 9.729 12c0 2.948-.47 5.792-1.34 8.47A29.7 29.7 0 0 1 12 24a29.7 29.7 0 0 1 3.611-3.53 27.3 27.3 0 0 1-1.34-8.47c0-2.948.47-5.792 1.34-8.47A29.7 29.7 0 0 1 12 0m6.109 5.381A27.4 27.4 0 0 0 17.3 12c0 2.278.28 4.494.809 6.619a30.7 30.7 0 0 1 4.391-2.424A13.7 13.7 0 0 1 21.843 12c0-1.46.23-2.868.657-4.195a30.7 30.7 0 0 1-4.391-2.424m-12.218 0A31 31 0 0 1 1.5 7.805 13.7 13.7 0 0 1 2.157 12c0 1.46-.23 2.868-.657 4.195a30.7 30.7 0 0 1 4.391 2.424C6.42 16.494 6.7 14.278 6.7 12s-.28-4.494-.809-6.619"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/magisk.svg�����������������������������������0000664�0000000�0000000�00000004600�14753064456�0025076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.857 14.458s.155.921-.034 2.952c-.236 2.546.97 6.59.97 6.59s1.645-4.052 1.358-6.67c-.236-2.152.107-2.904.034-2.803-1.264 1.746-2.328-.069-2.328-.069m3.082 2.185c.206 1.591-.023 2.462-.32 4.164-.15.861 3.068-2.589 4.302-4.645.206-.343-1.18 1.337-2.55.137-.952-.832-1.115-1.085-1.854-1.808-.249-.244.277 1.014.423 2.151zm-3.512-2.025c-.739.723-.903.976-1.853 1.808-1.371 1.2-2.757-.48-2.551-.137 1.234 2.057 4.452 5.506 4.302 4.645-.297-1.703-.526-2.574-.32-4.164.147-1.137.673-2.395.423-2.15zm3.166-2.839c1.504.434 2.088 2.523 3.606 2.781.314.053.667.148 1.08.128.77-.037 1.743-.472 3.044-2.318.385-.546-.955 3.514-4.313 3.563-2.46.036-2.747-2.408-4.387-2.482-.592-.027-.629-1.156-.629-1.156s.706-.774 1.598-.517zm-3.186-.012c-1.504.434-2.088 2.523-3.606 2.781-.314.053-.667.148-1.08.128-.77-.037-1.743-.472-3.044-2.318-.385-.546.955 3.514 4.313 3.563 2.46.036 2.747-2.408 4.387-2.482.592-.027.629-1.156.629-1.156s-.706-.774-1.598-.517zm5.626-.02c1.513 1.146 1.062 2.408 1.911 2.048 2.86-1.212 2.36-7.434 2.128-6.682-1.303 4.242-4.143 4.48-6.876 2.528-.534-.38 1.985 1.46 2.837 2.105zm-5.24-2.106C8.06 11.592 5.22 11.355 3.917 7.113c-.231-.752-.731 5.47 2.128 6.682.849.36.398-.902 1.91-2.048.853-.646 3.372-2.486 2.838-2.105zm5.526.584c3.3-.136 3.91-5.545 3.65-4.885-1.165 2.963-5.574 1.848-5.995 3.718-.083.367.747 1.233 2.345 1.167m-6.304-1.167c-.421-1.87-4.831-.755-5.995-3.718-.26-.66.35 4.75 3.65 4.885 1.599.066 2.428-.8 2.345-1.167m3.753-.824s1.794-.964 3.33-1.384c1.435-.393 2.512-1.359 2.631-2.38.09-.76-1.11-2.197-1.11-2.197s-.84 2.334-1.945 3.501c-1.2 1.27-.745 1.1-2.906 2.46m-6.453-2.46c-1.104-1.167-1.945-3.5-1.945-3.5S4.17 3.708 4.26 4.47c.12 1.021 1.196 1.987 2.63 2.38 1.537.421 3.331 1.384 3.331 1.384-2.162-1.36-1.705-1.19-2.906-2.46m6.235 2.312c1.943-1.594 2.976-3.673 4.657-5.949.317-.429-1.419-1.465-2.105-1.533S14.84 3.057 14.775 4.54c-.059 1.354-1.486 3.761-1.224 3.547zM9.214 4.54C9.149 3.056 8.573.535 7.887.603 7.2.671 5.465 1.707 5.782 2.136c1.68 2.276 2.713 4.356 4.657 5.95.261.213-1.165-2.194-1.224-3.548zm4.531-1.602c.137-1.098.631-1.9 1.613-2.574-.868-.29-1.591-.526-1.968-.217s-1.403 1.342-1.266 3.023.007 7.962.305 7.846c.16-4.302 1.522-5.538 1.316-8.077zm-2.186 8.077c.297.116.167-6.165.305-7.846S10.976.455 10.598.146c-.377-.309-1.1-.073-1.968.217.983.674 1.476 1.476 1.613 2.574-.206 2.54 1.156 3.775 1.316 8.077z"/></svg>��������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mahindra.svg���������������������������������0000664�0000000�0000000�00000002346�14753064456�0025413�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.145 11.311H6.78a.67.67 0 0 1 .674.66v1.509H5.009a.41.41 0 0 1-.41-.404v-.524a.38.38 0 0 1 .383-.375h1.354l-.144.306h-.998c-.043 0-.092.034-.092.081v.412c0 .047.049.082.092.082h1.73v-.99c0-.191-.169-.338-.357-.338H4.945zm13.427-.787v2.959h-2.383a.41.41 0 0 1-.41-.403v-1.11a.67.67 0 0 1 .675-.659h1.357l-.2.422h-.948c-.188 0-.357.147-.357.337v.91c0 .046.049.08.092.08h1.644v-2.536zM10.2 13.483h.527v-1.51a.67.67 0 0 0-.674-.659H8.932l-.2.422h1.111c.188 0 .357.147.357.337zm-2.195-2.96v2.96h.527v-2.96zm-4.4 2.96h.527v-1.51a.67.67 0 0 0-.674-.659H0v2.169h.526v-1.669c0-.047.05-.081.093-.081h1.09c.043 0 .092.034.092.081v1.669h.527v-1.669c0-.047.049-.081.092-.081h.828c.188 0 .357.147.357.337zm17.72-2.172H20a.67.67 0 0 0-.674.66v1.509h.527v-1.41c0-.19.169-.337.357-.337h.914zm-6.753 0a.67.67 0 0 1 .675.66v1.509h-.527v-1.41c0-.19-.17-.337-.357-.337h-1.268v1.75h-.527v-2.169q.998-.002 2.004-.003m-3.19.137.527-.306v2.338h-.526zm.53-.609v-.322h-.526v.625zm9.782.472h1.632a.67.67 0 0 1 .674.66v1.509h-2.445a.41.41 0 0 1-.41-.404v-.524a.38.38 0 0 1 .383-.375h1.354l-.144.306h-.998c-.043 0-.092.034-.092.081v.412c0 .047.049.082.092.082h1.73v-.99c0-.191-.169-.338-.357-.338h-1.622z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mailboxdotorg.svg����������������������������0000664�0000000�0000000�00000000354�14753064456�0026477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.229 22.844H24V10.501l-8.628 5.882c-.613.419-1.226-.003-1.226-.003L0 6.646v13.969s0 2.229 2.229 2.229m12.558-9.273L24 7.261V1.156H2.229S0 1.156 0 3.384v.06z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mailchimp.svg��������������������������������0000664�0000000�0000000�00000007561�14753064456�0025577�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.267 0C6.791-.015-1.82 10.246 1.397 12.964l.79.669a3.9 3.9 0 0 0-.22 1.792c.084.84.518 1.644 1.22 2.266.666.59 1.542.964 2.392.964 1.406 3.24 4.62 5.228 8.386 5.34 4.04.12 7.433-1.776 8.854-5.182.093-.24.488-1.316.488-2.267 0-.956-.54-1.352-.885-1.352-.01-.037-.078-.286-.172-.586s-.19-.51-.19-.51c.375-.563.382-1.065.332-1.35-.053-.353-.2-.653-.496-.964s-.902-.63-1.753-.868l-.446-.124c-.002-.019-.024-1.053-.043-1.497-.014-.32-.042-.822-.197-1.315-.186-.668-.508-1.253-.911-1.627 1.112-1.152 1.806-2.422 1.804-3.511-.003-2.095-2.576-2.729-5.746-1.416l-.672.285L12.7.504C12.304.159 11.817.002 11.267 0m.073.873q.25 0 .465.058c.297.084 1.28 1.224 1.28 1.224s-1.826 1.013-3.52 2.426c-2.28 1.757-4.005 4.311-5.037 7.082-.811.158-1.526.618-1.963 1.253-.261-.218-.748-.64-.834-.804-.698-1.326.761-3.902 1.781-5.357C5.834 3.44 9.37.867 11.34.873m3.286 3.273c.04-.002.06.05.028.074-.143.11-.299.26-.413.414a.04.04 0 0 0 .031.064c.659.004 1.587.235 2.192.574.041.023.012.103-.034.092-.915-.21-2.414-.369-3.97.01-1.39.34-2.45.863-3.224 1.426-.04.028-.086-.023-.055-.06.896-1.035 1.999-1.935 2.987-2.44.034-.018.07.019.052.052-.079.143-.23.447-.278.678-.007.035.032.063.062.042.615-.42 1.684-.868 2.622-.926m3.023 3.205.056.001a.9.9 0 0 1 .456.146c.534.355.61 1.216.638 1.845.015.36.059 1.229.074 1.478.034.571.184.651.487.751.17.057.33.098.563.164.706.198 1.125.4 1.39.658.157.162.23.333.253.497.083.608-.472 1.36-1.942 2.041-1.607.746-3.557.935-4.904.785l-.471-.053c-1.078-.145-1.693 1.247-1.046 2.201.417.615 1.552 1.015 2.688 1.015 2.604 0 4.605-1.111 5.35-2.072a1 1 0 0 0 .06-.085c.036-.055.006-.085-.04-.054-.608.416-3.31 2.069-6.2 1.571 0 0-.351-.057-.672-.182-.255-.1-.788-.344-.853-.891 2.333.72 3.801.039 3.801.039a.07.07 0 0 0 .042-.072.067.067 0 0 0-.074-.06s-1.911.283-3.718-.378c.197-.64.72-.408 1.51-.345a11 11 0 0 0 3.647-.394c.818-.234 1.892-.697 2.727-1.356.281.618.38 1.299.38 1.299s.219-.04.4.073c.173.106.299.326.213.895-.176 1.063-.628 1.926-1.387 2.72a5.7 5.7 0 0 1-1.666 1.244q-.511.27-1.087.46c-2.863.935-5.794-.093-6.739-2.3a3.6 3.6 0 0 1-.189-.522c-.403-1.455-.06-3.2 1.008-4.299.065-.07.132-.153.132-.256 0-.087-.055-.179-.102-.243-.374-.543-1.669-1.466-1.409-3.254.187-1.284 1.31-2.189 2.357-2.135q.133.007.266.015c.453.027.85.085 1.223.1.625.028 1.187-.063 1.853-.618.225-.187.405-.35.71-.401.028-.005.092-.028.215-.028m.022 2.18a.4.4 0 0 0-.06.005c-.335.054-.347.468-.228 1.04.068.32.187.595.32.765q.264-.031.498 0c.089-.205.104-.557.024-.942-.112-.535-.261-.872-.554-.868m-3.66 1.546a1.72 1.72 0 0 0-1.016.326c-.16.117-.311.28-.29.378.008.032.031.056.088.063.131.015.592-.217 1.122-.25.374-.023.684.094.923.2.239.104.386.173.443.113.037-.038.026-.11-.031-.204-.118-.192-.36-.387-.618-.497a1.6 1.6 0 0 0-.621-.129m4.082.81c-.171-.003-.313.186-.317.42-.004.236.131.43.303.432s.314-.185.318-.42c.004-.236-.132-.429-.304-.432m-3.58.172q-.075 0-.155.008c-.311.05-.483.152-.593.247-.094.082-.152.173-.152.237a.075.075 0 0 0 .075.076c.07 0 .228-.063.228-.063a2 2 0 0 1 1.001-.104c.157.018.23.027.265-.026.01-.016.022-.049-.01-.1-.063-.103-.311-.269-.66-.275zm2.26.4c-.127 0-.235.051-.283.148-.075.154.035.363.246.466.21.104.443.063.52-.09.075-.155-.035-.364-.246-.467a.54.54 0 0 0-.237-.058zm-11.635.024q.072 0 .149.003c.73.04 1.806.6 2.052 2.19.217 1.41-.128 2.843-1.449 3.069q-.185.03-.374.026c-1.22-.033-2.539-1.132-2.67-2.435-.145-1.44.591-2.548 1.894-2.811q.177-.037.398-.042m-.07.927a1.14 1.14 0 0 0-.847.364c-.38.418-.439.988-.366 1.19.027.073.07.094.1.098.064.008.16-.039.22-.2l.017-.052a1.6 1.6 0 0 1 .157-.37.69.69 0 0 1 .955-.199c.266.174.369.5.255.81-.058.161-.154.469-.133.721.043.511.357.717.64.738.274.01.466-.143.515-.256.029-.067.005-.107-.011-.125-.043-.053-.113-.037-.18-.021a.6.6 0 0 1-.16.022.35.35 0 0 1-.294-.148c-.078-.12-.073-.3.013-.504q.017-.041.04-.092c.138-.308.368-.825.11-1.317-.195-.37-.513-.602-.894-.65a1 1 0 0 0-.138-.01z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/maildotcom.svg�������������������������������0000664�0000000�0000000�00000000664�14753064456�0025761�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.017-.008H0V15.66c0 1.406.96 2.571 2.246 2.914L24 24.01V5.99c.017-3.308-2.674-6-5.983-6zm3 15.668H18V8.786c0-.669-.223-2.229-2.211-2.229-1.32 0-2.28.909-2.28 2.229v6.874H10.49V8.786c0-.669-.205-2.229-2.194-2.229-1.354 0-2.28.909-2.28 2.229v6.874H3V3.609h5.297c1.594 0 2.897.634 3.737 1.662.892-1.028 2.212-1.662 3.737-1.662C19.063 3.609 21 5.786 21 8.854z"/></svg>����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/maildotru.svg��������������������������������0000664�0000000�0000000�00000001337�14753064456�0025627�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.61 12c0 1.99-1.62 3.61-3.61 3.61S8.39 13.99 8.39 12 10.01 8.39 12 8.39s3.61 1.62 3.61 3.61M12 0C5.383 0 0 5.383 0 12s5.383 12 12 12c2.424 0 4.761-.722 6.76-2.087l.034-.024-1.617-1.879-.027.017A9.5 9.5 0 0 1 12 21.54c-5.26 0-9.54-4.28-9.54-9.54S6.74 2.46 12 2.46s9.54 4.28 9.54 9.54a9.6 9.6 0 0 1-.225 2.05c-.301 1.239-1.169 1.618-1.82 1.568-.654-.053-1.42-.52-1.426-1.661V12A6.076 6.076 0 0 0 12 5.93 6.076 6.076 0 0 0 5.93 12 6.076 6.076 0 0 0 12 18.07a6.02 6.02 0 0 0 4.3-1.792 3.9 3.9 0 0 0 3.32 1.805c.874 0 1.74-.292 2.437-.821.719-.547 1.256-1.336 1.553-2.285.047-.154.135-.504.135-.507l.002-.013c.175-.76.253-1.52.253-2.457 0-6.617-5.383-12-12-12"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mailgun.svg����������������������������������0000664�0000000�0000000�00000001315�14753064456�0025257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.837 0c6.602 0 11.984 5.381 11.984 11.994-.017 2.99-3.264 4.84-5.844 3.331l-.06-.035-.055-.033-.022.055c-2.554 4.63-9.162 4.758-11.894.232-2.732-4.527.46-10.313 5.746-10.416a6.87 6.87 0 0 1 7.002 6.866 1.265 1.265 0 0 0 2.52 0c0-5.18-4.197-9.38-9.377-9.387C4.611 2.594.081 10.41 3.683 16.673c3.238 5.632 11.08 6.351 15.289 1.402l1.997 1.686A11.95 11.95 0 0 1 11.837 24C2.6 23.72-2.87 13.543 1.992 5.684A12 12 0 0 1 11.837 0m0 7.745c-3.276-.163-5.5 3.281-4.003 6.2a4.26 4.26 0 0 0 4.014 2.31c3.276-.171 5.137-3.824 3.35-6.575a4.26 4.26 0 0 0-3.36-1.935Zm0 2.53c1.324 0 2.152 1.433 1.49 2.58a1.72 1.72 0 0 1-1.49.86 1.72 1.72 0 1 1 0-3.44"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mailtrap.svg���������������������������������0000664�0000000�0000000�00000001441�14753064456�0025434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5.371 17.607-2.036 1.208c-.277.181-.15.494 0 .557l7.91 4.432a1.55 1.55 0 0 0 1.51 0l8.014-4.491c.243-.144.203-.436 0-.535l-2.153-1.163c-.182-.12-.587-.08-.73.017l-5.131 2.875a1.55 1.55 0 0 1-1.51 0l-5.176-2.9c-.193-.119-.499-.112-.698 0M11.245.197a1.55 1.55 0 0 1 1.51 0l6.37 3.568c.254.129.277.474 0 .63l-1.45.81a1.8 1.8 0 0 1-1.757-.003L12.755 3.43a1.55 1.55 0 0 0-1.51 0L8.078 5.204a1.8 1.8 0 0 1-1.757.002l-1.5-.836c-.236-.1-.285-.401 0-.574zm10.724 5.371c.467.262.755.746.755 1.27v10.325c0 .51-.32.606-.661.428l-2.36-1.273V9.376l-6.948 3.893a1.55 1.55 0 0 1-1.51 0L4.296 9.376v6.94L2.153 17.59c-.256.163-.877.214-.877-.426V6.838c0-.524.288-1.008.755-1.27.752-.393 1.529 0 1.529 0l8.44 4.74 8.427-4.74s.749-.45 1.542 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mainwp.svg�����������������������������������0000664�0000000�0000000�00000000537�14753064456�0025123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m0 2.4c1.325 0 2.4 1.076 2.4 2.4a2.4 2.4 0 0 1-.703 1.696 2.4 2.4 0 0 1-.595.436l2.978 12.267L12 21.602l-4.08-2.403 2.978-12.267a2.4 2.4 0 0 1-.593-.436 2.4 2.4 0 0 1-.703-1.695A2.4 2.4 0 0 1 12 2.4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/majorleaguehacking.svg�����������������������0000664�0000000�0000000�00000020667�14753064456�0027456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.769 6.947q.096 0 .16.063a.23.23 0 0 1 .071.161v7.778a.21.21 0 0 1-.07.161.22.22 0 0 1-.161.064H22.07a.23.23 0 0 1-.231-.224v-2.715a.2.2 0 0 0-.063-.154c-.042-.042-.091-.056-.162-.056h-2.377a.25.25 0 0 0-.161.056.21.21 0 0 0-.07.154v2.714c0 .147-.078.225-.232.225h-1.683c-.155 0-.232-.078-.232-.225V7.171q0-.222.232-.224h1.683q.231.002.231.224v2.63q0 .223.232.225h2.377q.098 0 .162-.063a.22.22 0 0 0 .063-.162v-2.63a.21.21 0 0 1 .07-.161.22.22 0 0 1 .161-.063zm-8.374 6.207c.063 0 .119.02.154.063a.22.22 0 0 1 .063.161v1.55a.23.23 0 0 1-.063.161.2.2 0 0 1-.154.064h-5.45c-.154 0-.231-.078-.231-.225V7.171q0-.222.231-.224h1.67q.23.002.23.224v5.78a.19.19 0 0 0 .07.154c.043.042.099.056.162.056h3.318zm-7.75-6.102q.242.107.42.288c.12.119.21.26.288.42q.105.244.105.52v6.648a.2.2 0 0 1-.063.154.2.2 0 0 1-.154.064H6.649a.18.18 0 0 1-.148-.064.23.23 0 0 1-.056-.154V8.883H5.162v6.045a.23.23 0 0 1-.056.154.2.2 0 0 1-.147.064H3.514a.2.2 0 0 1-.155-.064.2.2 0 0 1-.063-.154V8.883H2.013v6.045c0 .147-.07.218-.218.218H.217c-.147 0-.217-.07-.217-.218V7.164q-.002-.219.217-.217H7.12c.189 0 .357.035.526.105zm16.341 9.314q.009.01.007.02v.45q-.002.042-.014.084-.021.04-.042.07a.15.15 0 0 1-.07.042c-.028.014-.056.014-.084.014h-.639a.4.4 0 0 1-.084-.014q-.04-.021-.07-.042a.15.15 0 0 1-.042-.07c-.014-.028-.014-.056-.014-.084v-.842q.002-.042.014-.084c.007-.028.028-.05.042-.07a.15.15 0 0 1 .07-.042c.028-.014.056-.014.084-.014h.75c.008 0 .022 0 .022.007q.009.01.007.02v.24c0 .006 0 .02-.007.02q-.01.009-.021.007h-.603c-.007 0-.021 0-.021.007q-.009.01-.007.021v.59q-.002.01.007.02c.007.008.014.008.02.008h.358q.01.002.021-.007.009-.01.007-.022v-.315c0-.007 0-.021.007-.021q.01-.009.021-.007h.253q.02.002.028.014m-1.466-.568q.041.021.07.042a.15.15 0 0 1 .042.07c.014.028.014.056.014.084v1.024c0 .007 0 .021-.007.021q-.01.009-.02.007h-.253q-.01.002-.021-.007-.009-.01-.007-.02v-.892q.002-.01-.007-.02t-.021-.008h-.358c-.007 0-.021 0-.021.007s-.007.014-.007.021v.891q-.002.033-.035.035h-.253a.034.034 0 0 1-.035-.035v-1.2q.002-.032.035-.034h.821c.014-.007.042 0 .063.014M21.3 17.01q-.002.033-.035.035h-.253a.034.034 0 0 1-.035-.035v-1.2c0-.02.014-.034.035-.034h.253c.02 0 .035.014.035.035zm-.975-.701c-.007.007-.007.007 0 .014l.42.694q.012.01 0 .021c-.006.007-.006.007-.02.007h-.302c-.007 0-.02 0-.028-.007l-.02-.02-.274-.492q-.009-.01-.007 0l-.148.161q-.012.01-.014.029c-.007.014-.007.02-.007.035v.266q-.002.033-.035.035h-.245q-.033-.002-.035-.035v-1.2q.002-.032.035-.034h.252q.033.002.035.035v.54l.47-.547a.1.1 0 0 1 .028-.021q.02-.009.028-.007h.302q.012-.002.014.007.003.012-.007.02zm-1.648-.218q-.009.01-.007.021v.59q-.002.01.007.02c.007.008.014.008.02.008h.583c.007 0 .021 0 .021.007q.009.01.007.02v.24c0 .006 0 .02-.007.02q-.01.009-.021.007h-.722a.4.4 0 0 1-.085-.014 1 1 0 0 1-.07-.042.15.15 0 0 1-.042-.07c-.014-.028-.014-.056-.014-.084v-.849q.002-.042.014-.084a1 1 0 0 1 .042-.07.15.15 0 0 1 .07-.042c.028-.014.057-.014.085-.014h.722c.007 0 .021 0 .021.007q.009.01.007.02v.24c0 .006 0 .02-.007.02q-.01.009-.021.007h-.582c-.007.035-.014.042-.021.042m-.82-.315q.04.002.083.014.041.021.07.042a.15.15 0 0 1 .043.07.4.4 0 0 1 .014.084v1.024c0 .007 0 .021-.007.021q-.01.009-.021.007h-.253c-.007 0-.021 0-.021-.007q-.009-.01-.007-.02v-.324c0-.007 0-.02-.007-.02q-.01-.01-.021-.008h-.358c-.007 0-.02 0-.02.007q-.01.01-.008.021v.323q-.002.033-.035.035h-.252q-.033-.002-.035-.035v-1.024q.002-.042.014-.084a1 1 0 0 1 .042-.07.15.15 0 0 1 .07-.042c.028-.014.056-.014.084-.014zm-.106.603v-.316h-.428v.316zm-1.066-.603c.007 0 .021 0 .021.007q.009.01.007.02v1.2c0 .007 0 .021-.007.021q-.01.009-.021.007h-.253c-.007 0-.02 0-.02-.007-.008-.007-.008-.014-.008-.02v-.422q.002-.01-.007-.02t-.02-.008h-.358c-.007 0-.021 0-.021.007q-.009.01-.007.021v.421q-.002.033-.035.035h-.253a.034.034 0 0 1-.035-.035v-1.2c0-.02.014-.034.035-.034h.253c.02 0 .035.014.035.035v.407c0 .02.014.035.035.035h.357q.01.002.021-.007.009-.01.007-.021v-.407c0-.007 0-.021.007-.021q.01-.009.022-.007h.245zm-1.943.014q.009.01.007.02v.232q.002.01-.007.021-.01.009-.02.007h-.604q-.009-.002-.007.007v.197q-.002.009.007.007h.52q.01-.002.02.007.009.01.007.02v.183c0 .007 0 .021-.007.021q-.01.009-.02.007h-.52q-.009-.002-.007.007v.197q-.002.009.007.007h.604c.006 0 .02 0 .02.007q.009.01.007.02v.225c0 .007 0 .021-.007.021q-.01.009-.02.007h-.899a.034.034 0 0 1-.035-.035v-1.199c0-.007 0-.021.007-.021q.01-.009.021-.007h.898a.1.1 0 0 0 .028.042m-1.255 0q.009.01.007.02v1.025a.4.4 0 0 1-.014.084q-.021.04-.042.07a.15.15 0 0 1-.07.042c-.028.014-.056.014-.085.014h-.638a.4.4 0 0 1-.084-.014q-.04-.021-.07-.042a.15.15 0 0 1-.042-.07c-.014-.028-.014-.056-.014-.084v-1.024q.002-.033.035-.035h.252q.033.002.035.035v.89q-.002.012.007.022t.022.007h.357q.01.002.021-.007.009-.01.007-.021v-.891c0-.007 0-.021.007-.021q.01-.009.021-.007h.253c.02-.007.028 0 .035.007m-1.333.575q.009.01.007.02v.45a.4.4 0 0 1-.014.084q-.021.04-.042.07a.15.15 0 0 1-.07.042c-.028.014-.056.014-.084.014h-.638a.4.4 0 0 1-.084-.014 1 1 0 0 1-.07-.042.15.15 0 0 1-.043-.07c-.014-.028-.014-.056-.014-.084v-.842q.002-.042.014-.084c.007-.028.028-.05.042-.07a.15.15 0 0 1 .07-.042c.029-.014.057-.014.085-.014h.75c.007 0 .021 0 .021.007q.009.01.007.02v.24c0 .006 0 .02-.007.02q-.01.009-.02.007h-.604c-.007 0-.021 0-.021.007q-.009.01-.007.021v.59q-.002.01.007.02t.021.008h.358q.01.002.02-.007c.008-.007.008-.014.008-.022v-.315c0-.007 0-.021.007-.021q.01-.009.02-.007h.253c.007 0 .021.007.028.014m-1.55-.59c.028 0 .056.008.084.015q.042.021.07.042a.15.15 0 0 1 .043.07.4.4 0 0 1 .014.084v1.024c0 .007 0 .021-.007.021q-.01.009-.021.007h-.26c-.007 0-.02 0-.02-.007-.008-.007-.008-.014-.008-.02v-.324c0-.007 0-.02-.007-.02q-.01-.01-.02-.008h-.366c-.007 0-.02 0-.02.007q-.01.01-.008.021v.323q-.002.033-.035.035h-.252q-.033-.002-.035-.035v-1.024q.002-.042.014-.084a1 1 0 0 1 .042-.07.15.15 0 0 1 .07-.042c.028-.014.056-.014.084-.014zm-.112.604v-.316h-.428v.316zm-1.038-.59q.009.012.007.022v.231q.002.01-.007.021-.01.009-.02.007H8.83q-.009-.002-.007.007v.197q-.002.009.007.007h.519q.01-.002.021.007.009.01.007.02v.183c0 .007 0 .021-.007.021q-.01.009-.021.007h-.52q-.008-.002-.006.007v.197q-.002.009.007.007h.604c.006 0 .02 0 .02.007q.009.01.007.02v.225c0 .007 0 .021-.007.021q-.01.009-.02.007h-.899a.034.034 0 0 1-.035-.035v-1.199c0-.007 0-.021.007-.021q.01-.009.021-.007h.898a.1.1 0 0 0 .028.042zm-1.171.948q.01-.002.02.007t.008.02v.24c0 .006 0 .02-.007.02q-.01.009-.021.007h-.779a.034.034 0 0 1-.035-.035v-1.2q.002-.032.035-.034h.253c.02 0 .035.014.035.035v.89q-.002.011.007.022.01.009.021.007h.463zm-1.704.28q.01.01 0 .021c-.007.007-.007.007-.021.007H6.27c-.007 0-.021 0-.028-.007l-.021-.02-.19-.345q-.001-.009-.013-.007H5.8q-.009-.002-.007.007v.337q-.002.033-.035.035h-.252c-.021 0-.036-.014-.036-.035v-1.2c0-.02.015-.034.036-.034h.82q.042.002.084.014.041.021.07.042a.15.15 0 0 1 .043.07.2.2 0 0 1 .014.084v.477a.2.2 0 0 1-.043.126.23.23 0 0 1-.105.077h-.007q-.009.002-.007.014v.007zm-.358-.947h-.435v.309h.435zm-1.241-.294q.042.002.084.014.04.021.07.042a.15.15 0 0 1 .042.07.4.4 0 0 1 .014.084v.842q-.002.042-.014.084-.021.04-.042.07a.15.15 0 0 1-.07.042c-.028.014-.056.014-.084.014h-.64q-.042-.002-.084-.014-.04-.021-.07-.042a.15.15 0 0 1-.042-.07c-.014-.028-.014-.056-.014-.084v-.842q.002-.042.014-.084c.007-.028.028-.05.042-.07a.15.15 0 0 1 .07-.042c.028-.014.056-.014.084-.014zm-.113.308H4.44v.653h.427zm-1.03-.294q.007.01.006.02v1.025q-.002.042-.014.084-.021.04-.042.07a.15.15 0 0 1-.07.042c-.028.014-.056.014-.084.014h-.547a.4.4 0 0 1-.084-.014 1 1 0 0 1-.07-.042.15.15 0 0 1-.042-.07c-.014-.028-.014-.056-.014-.084v-.386q.002-.033.035-.035h.252q.033.002.035.035v.26q-.002.01.007.02t.021.008h.26c.007 0 .02 0 .02-.007.008-.007.008-.014.008-.021v-.891c0-.007 0-.021.007-.021q.01-.009.02-.007h.253c.021-.014.035-.007.042 0zm-1.354-.014q.042.002.084.014.04.021.07.042a.15.15 0 0 1 .042.07.4.4 0 0 1 .014.084v1.024c0 .007 0 .021-.007.021q-.01.009-.02.007h-.253c-.007 0-.021 0-.021-.007q-.009-.01-.007-.02v-.324c0-.007 0-.02-.007-.02q-.01-.01-.021-.008h-.358c-.007 0-.021 0-.021.007q-.009.01-.007.021v.323q-.002.033-.035.035h-.253a.034.034 0 0 1-.035-.035v-1.024q.002-.042.014-.084a1 1 0 0 1 .042-.07.15.15 0 0 1 .07-.042c.028-.014.057-.014.085-.014zm-.112.603v-.316h-.428v.316zm-1.158-.582q.041.021.07.042a.15.15 0 0 1 .043.07.4.4 0 0 1 .014.084v1.024c0 .007 0 .021-.007.021q-.01.009-.021.007h-.253q-.01.002-.021-.007-.009-.01-.007-.02v-.927H.828v.926c0 .007 0 .021-.007.021q-.01.009-.021.007H.568c-.007 0-.021 0-.021-.007q-.009-.01-.007-.02v-.927H.337v.926q-.002.033-.035.035H.049a.034.034 0 0 1-.035-.035v-1.2q.002-.032.035-.034h1.094c.021-.007.05 0 .07.014"/></svg>�������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/make.svg�������������������������������������0000664�0000000�0000000�00000001045�14753064456�0024540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.38 3.498c-.27 0-.511.19-.566.465L9.85 18.986a.58.58 0 0 0 .453.678l4.095.826a.58.58 0 0 0 .682-.455l2.963-15.021a.58.58 0 0 0-.453-.678l-4.096-.826a.6.6 0 0 0-.113-.012zm-5.876.098a.58.58 0 0 0-.516.318L.062 17.697a.575.575 0 0 0 .256.774l3.733 1.877a.58.58 0 0 0 .775-.258l6.926-13.781a.577.577 0 0 0-.256-.776L7.762 3.658a.6.6 0 0 0-.258-.062m11.74.115a.576.576 0 0 0-.576.576v15.426c0 .318.258.578.576.578h4.178a.58.58 0 0 0 .578-.578V4.287a.58.58 0 0 0-.578-.576Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/makerbot.svg���������������������������������0000664�0000000�0000000�00000001653�14753064456�0025434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.055 7.328a12 12 0 0 0-2.569-3.813A12 12 0 0 0 16.672.944 11.9 11.9 0 0 0 12 0a11.986 11.986 0 0 0-8.485 3.515A12 12 0 0 0 .943 7.328 11.9 11.9 0 0 0 0 12a11.971 11.971 0 0 0 3.514 8.485 12 12 0 0 0 3.813 2.57C8.81 23.686 10.38 24 12 24c1.619 0 3.189-.314 4.671-.944a12 12 0 0 0 3.814-2.564 12 12 0 0 0 2.57-3.811c.63-1.47.944-3.045.944-4.665 0-1.619-.314-3.18-.944-4.664zM12 22.335C6.293 22.335 1.665 17.707 1.665 12S6.293 1.665 12 1.665 22.335 6.293 22.335 12 17.707 22.335 12 22.335m3.242-18.214H8.757q-1.383 0-2.333.975a3.2 3.2 0 0 0-.953 2.334v10.182c0 .449.135.81.4 1.095.267.269.615.42 1.051.42q.668 0 1.079-.405.409-.406.409-1.08V7.08h2.141v10.529q0 .668.391 1.08.388.41 1.059.411.669 0 1.059-.411.39-.412.39-1.08V7.08h2.142v10.529q0 .668.408 1.08.412.41 1.08.411.651 0 1.05-.423.402-.421.401-1.069V7.426q0-1.364-.953-2.336-.949-.973-2.334-.975v.006z"/></svg>�������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/malt.svg�������������������������������������0000664�0000000�0000000�00000004363�14753064456�0024566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.195 8.581c-.069 0-.285.026-.484.113-.432.181-.597.311-.597.58v5.023c0 .277.26.355.735.355.467 0 .649-.087.649-.355V8.858c0-.173-.113-.277-.303-.277m3.502 4.903c-.345.087-.45.113-.57.113-.147 0-.2-.044-.2-.2v-2.161h.788c.207 0 .285-.078.285-.285 0-.173-.078-.26-.285-.26h-.787v-.839c0-.259-.087-.363-.268-.363-.173 0-.415.156-.934.597-.528.45-.83.744-.83.951 0 .121.086.199.224.199h.424v2.335c0 .683.337 1.08.925 1.08.39 0 .675-.146 1.012-.406.311-.242.51-.432.51-.596 0-.139-.103-.217-.294-.165m-15.21-3.078c-.13 0-.285.026-.484.112-.433.19-.597.312-.597.58v3.2c0 .276.26.354.735.354.467 0 .649-.087.649-.355v-3.614c0-.173-.113-.277-.303-.277m1.816 0c-.355 0-.675.121-.986.363-.173.138-.32.294-.32.424 0 .112.078.173.19.173.19 0 .251-.078.416-.078s.25.173.25.476v2.533c0 .277.26.355.735.355.467 0 .649-.087.649-.355v-2.776c0-.657-.39-1.115-.934-1.115m2.43 0c-.337 0-.692.121-1.003.363-.173.138-.32.294-.32.424 0 .112.078.173.19.173.19 0 .25-.078.432-.078s.268.173.268.476v2.533c0 .277.26.355.735.355.467 0 .649-.087.649-.355v-2.776c0-.657-.39-1.115-.951-1.115m5.335 0a1.3 1.3 0 0 0-.484.112c-.26.113-.398.2-.467.312-.26-.303-.597-.398-.977-.398-1.116 0-1.911.942-1.911 2.283 0 1.124.605 1.954 1.461 1.954.26 0 .493-.104.77-.363.216-.2.32-.329.32-.45a.14.14 0 0 0-.147-.147c-.121 0-.251.104-.416.104-.354 0-.596-.545-.596-1.35 0-.803.32-1.348.804-1.348.32 0 .562.242.562.657v2.525c0 .277.26.355.735.355.467 0 .649-.087.649-.355v-3.614c0-.173-.113-.277-.303-.277M3.499 13.563l-.21.21.619.618c.304.304.79.598 1.244.144.339-.34.26-.695.073-.98-.06.004-1.726.008-1.726.008m-.963-2.325.21-.21-.608-.607c-.304-.303-.765-.621-1.243-.143-.351.35-.273.692-.087.97Zm2.86.416a384 384 0 0 1-1.511 1.524h1.154c.43 0 .981-.101.981-.777 0-.496-.296-.683-.624-.747m-3.244-.031H.981c-.43 0-.981.135-.981.778 0 .479.307.676.641.745.04-.046 1.511-1.523 1.511-1.523m1.484 3.04-.618-.618-.608.607a3 3 0 0 1-.137.128c.07.333.266.639.745.639s.676-.307.745-.641q-.064-.054-.127-.115M2.41 10.15l.608.607.618-.618a2 2 0 0 1 .128-.118c-.065-.327-.251-.623-.747-.623s-.682.297-.746.625q.068.058.14.127zm2.742.117c-.455-.454-.94-.16-1.244.144l-2.87 2.87c-.303.303-.621.765-.143 1.243s.94.16 1.243-.143l2.87-2.87c.304-.304.598-.79.144-1.244"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/malwarebytes.svg�����������������������������0000664�0000000�0000000�00000001314�14753064456�0026321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.87 22.903c.157 0 .28-.124.28-.283 0-.124-.088-.283-.245-.283h-.088l-.193-.035c-3.238-.636-5.635-3.55-5.635-6.96 0-1.448.437-2.825 1.19-3.938.123-.159.315-.283.525-.088l5.111 5.228a.33.33 0 0 0 .193.088c.087 0 .157-.035.192-.088l5.146-5.193c.193-.194.368-.159.473.035a7.1 7.1 0 0 1 1.19 3.939 7.04 7.04 0 0 1-1.803 4.716l-.122.124c0 .035-.035.088-.035.123 0 .16.122.283.28.283h.035c.035 0 .087-.035.122-.035 6.826-2.897 6.512-9.75 6.512-9.75a12.21 12.21 0 0 0-4.674-9.626c-.122-.089-.315-.089-.403.035l-6.703 6.853a.305.305 0 0 1-.438 0L5.023 1.195a.297.297 0 0 0-.402-.035A12.24 12.24 0 0 0 0 10.786c0 6.288 4.709 11.48 10.783 12.117Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mambaui.svg����������������������������������0000664�0000000�0000000�00000002042�14753064456�0025234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.045 15.831c1.303.349 2.496.773 3.91 1.042a30.7 30.7 0 0 0 .405 6.07c-1.698-1.908-4.137-5.187-4.315-7.112m15.843 0c-1.258.349-2.41.773-3.777 1.042a31.8 31.8 0 0 1-.39 6.07c1.644-1.908 4.001-5.187 4.167-7.112M6.783 1.057c2.317 4.17 9.686 3.63 11.46 0a6.2 6.2 0 0 1 2.337 1.386c-.087 3.608-2.338 4.898-2.338 4.898l.078.837c2.566-.742 3.522-.663 3.336-5.021 1.29 1.058 2.456 3.067 2.335 4.358-.125 1.342-2.037 5.377-1.8 5.306a88 88 0 0 1-8.444 3.204 2.93 2.93 0 0 0-1.944-1.672 12.8 12.8 0 0 0-1.784 1.78c-2.347-.853-4.424-1.8-6.594-2.722l-1.706-.628-.776-1.99C-.099 8.214-.573 6.778 1.1 4.515c.364-.492.997-1.56 1.555-1.795-.109 3.695-1.224 5.454 2.944 5.457l.078-.837s-1.81-.227-2.25-4.898zM8.856 12.26c-.208.279-.337.349-.543.628.052.14-.207.175-.156.314a2.87 2.87 0 0 0 .853 1.151 2.66 2.66 0 0 0 1.705-1.151c-.206-.44-1.443-1.163-1.86-.941Zm5.663 0c-.414.279-.905.663-1.32.942.13.21.802.732.932.942.39.235.296.427.776.21a1.4 1.4 0 0 0 .853-1.256c-.207-.245-.414-.593-.62-.838Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mamp.svg�������������������������������������0000664�0000000�0000000�00000001353�14753064456�0024557�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.102 9.629c.245-1.695 2.139-6.979 7.454-7.98 3.137-.592 7.005 1.034 9.72 3.788-1.354.929-2.259 1.732-2.944 2.708.511 1.892 2.018 2.663 3.078 2.984-1.175-.711-1.917-1.381-2.376-2.812 2.513-2.988 5.205-3.954 5.432-3.978 2.102 1.677 3.586 4.735 3.532 7.955-.062 3.728-2.09 7.569-4.415 9.121-.318.151-1.053-.25-1.153-.687.476-1.105 1.601-3.795 1.74-5.806.131-1.928-1.146-3.061-2.219-1.667-1.489 2.494-2.139 5.592-2.789 8.934-1.095.313-2.952.392-3.756-.036-.101-2.068.381-5.601-.991-6.84-.588-.533-1.169-.285-1.562.205-.992 1.227-.972 4.414-.78 6.479-1.109.686-2.99.543-4.179.117-.477-3.245-1.597-7.202-2.512-10.23a17.4 17.4 0 0 0-.34 3.908c-.611-.498-1.308-3.116-.94-6.163"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/man.svg��������������������������������������0000664�0000000�0000000�00000001070�14753064456�0024374�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.979 14.943h2.05L15.46 18.7h-2.054l-.263-.409h-2.278l-.264.41H8.548zm1.025 1.568-.458.711h.916l-.458-.712zM0 17.372C0 10.704 5.372 5.3 12 5.3s12 5.405 12 12.073q0 .674-.072 1.328H22.58q.081-.653.082-1.328c0-5.924-4.774-10.726-10.662-10.726S1.339 11.449 1.339 17.373q0 .675.08 1.328H.073A12.254 12.274 0 0 1 0 17.372m2.237-2.43h1.83l1.22 1.228 1.22-1.227h1.831V18.7H6.363v-1.38l-1.075 1.082-1.076-1.082v1.38H2.237zm13.42 0h1.927l2.17 1.62v-1.62h1.975V18.7h-1.942l-2.156-1.605V18.7h-1.975Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/manageiq.svg���������������������������������0000664�0000000�0000000�00000001150�14753064456�0025402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.095.1C5.718.094.544 5.26.538 11.637v.022c0 2.069.547 4.005 1.496 5.683l2.869-2.868a7.7 7.7 0 0 1-.54-2.815c0-4.262 3.47-7.73 7.732-7.73s7.732 3.468 7.732 7.73-3.47 7.732-7.732 7.732a7.7 7.7 0 0 1-2.6-.46L6.596 21.83a11.5 11.5 0 0 0 5.499 1.388c2.316 0 4.467-.686 6.275-1.856l2.393 2.392L24 20.512l-2.349-2.349c1.262-1.852 2-4.09 2-6.505C23.66 5.269 18.452.078 12.096.101zm0 9.34c-1.225 0-2.214.991-2.214 2.217s.989 2.215 2.214 2.215a2.216 2.216 0 1 0 0-4.432m-4.24 3.368C7.57 13.09.273 20.39 0 20.662L3.24 23.9l7.855-7.855-3.24-3.238z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/manjaro.svg����������������������������������0000664�0000000�0000000�00000000224�14753064456�0025250�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h6.75V6.75h8.625V0zm8.625 8.625V24h6.75V8.625zM17.25 0v24H24V0z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mantine.svg����������������������������������0000664�0000000�0000000�00000001241�14753064456�0025254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.377 0 0 5.377 0 12s5.377 12 12 12 12-5.377 12-12S18.623 0 12 0m-1.613 6.15a.9.9 0 0 1 .59.176q.647.477 1.177 1.082h2.588a.91.91 0 0 1 .912.906.91.91 0 0 1-.912.907h-1.43c.4.908.604 1.889.602 2.88a7.1 7.1 0 0 1-.601 2.883h1.427a.91.91 0 0 1 .914.907.91.91 0 0 1-.914.906h-2.588a7.4 7.4 0 0 1-1.175 1.082.92.92 0 0 1-1.28-.19.904.904 0 0 1 .191-1.268 5.32 5.32 0 0 0 2.2-4.32c0-1.715-.801-3.29-2.2-4.32a.906.906 0 0 1-.191-1.268H9.7a.92.92 0 0 1 .688-.363zm-.778 4.295a1.36 1.36 0 0 1 1.354 1.354v.033a1.36 1.36 0 0 1-1.354 1.32 1.36 1.36 0 0 1-1.353-1.32v-.033a1.36 1.36 0 0 1 1.353-1.354"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mapbox.svg�����������������������������������0000664�0000000�0000000�00000000567�14753064456�0025121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0m5.696 14.943c-4.103 4.103-11.433 2.794-11.433 2.794S4.94 10.421 9.057 6.304c2.281-2.281 6.061-2.187 8.45.189s2.471 6.168.189 8.45m-4.319-7.91-1.174 2.416-2.416 1.174 2.416 1.174 1.174 2.416 1.174-2.416 2.416-1.174-2.416-1.174z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mapillary.svg��������������������������������0000664�0000000�0000000�00000001672�14753064456�0025623�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.362 11.812c-.564-.305-.46-1.099.25-1.302.602-.17 5.495-1.81 6.975-2.308a.9.9 0 0 0 .565-.558L10.528.671C10.75.02 11.555.017 11.884.65c.117.224 4.546 8.25 4.7 8.591s.055.718-.295.935-.918.544-1.117.667c-.36.223-.704.068-.869-.277-.163-.346-1.427-2.577-1.942-3.525-.258-.472-1.033-.654-1.295.111-.187.553-.627 1.842-.857 2.514a.93.93 0 0 1-.567.564l-2.582.855c-.509.168-.756.948-.069 1.277.144.07 3.24 1.73 3.56 1.882s.497.59.31.9c-.255.425-.582.962-.7 1.138a.73.73 0 0 1-.948.224c-.34-.179-8.651-4.584-8.853-4.692zm22.528 11.91c-.334-.18-10.918-5.78-11.355-6.003-.436-.222-.542-.606-.308-1.021.118-.211.376-.633.586-.972.288-.467.709-.468.946-.33.238.138 3.598 1.906 3.816 2.025.512.284 1.27-.363.93-.93-.163-.27-1.579-2.853-2.03-3.705-.203-.387-.147-.736.31-.968a18 18 0 0 0 .98-.568c.357-.216.834-.052 1.028.27.193.325 5.926 10.887 6.109 11.215.362.651-.343 1.348-1.011.988"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/maplibre.svg���������������������������������0000664�0000000�0000000�00000001177�14753064456�0025424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m0 3.19c2.937 0 5.371 2.265 5.371 5.035 0 4.111-4.364 7.635-5.035 8.138-.084 0-.084.084-.084.084-.084.084-.168.084-.168.084s-.168 0-.168-.084l-.084-.084c-.84-.503-5.203-3.943-5.203-8.138 0-2.77 2.434-5.036 5.371-5.036zm0 2.601c-1.427 0-2.602 1.173-2.602 2.684 0 1.51 1.175 2.685 2.602 2.685s2.602-1.175 2.602-2.685S13.427 5.79 12 5.79zM8.979 17.287h6.042a.66.66 0 0 1 .67.672v2.014a.66.66 0 0 1-.67.67H8.98a.66.66 0 0 1-.67-.67v-2.014a.66.66 0 0 1 .67-.672zm.755 1.258v.924h4.448v-.924z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/maptiler.svg���������������������������������0000664�0000000�0000000�00000001116�14753064456�0025437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.794 1.655 4.188 4.188 4.204-4.204A6.13 6.13 0 0 0 12 0a6.14 6.14 0 0 0-4.204 1.655ZM3.25 6.197 7.455 1.99l4.19 4.19-4.206 4.207Zm-.315 8.697 4.168-4.168-2.889-2.89-1.298-1.299a6.19 6.19 0 0 0 .02 8.357zm14.728-5.64 3.073-3.073-4.208-4.207-4.207 4.207 4.207 4.206Zm-6.015 6.013L7.44 11.061l-4.172 4.172 4.206 4.208zm5.216-4.543 4.185 4.185a6.18 6.18 0 0 0 .02-8.387zm-2.448 6.639 2.093 2.092 4.207-4.206-4.188-4.188-4.207 4.206zM11.968 24a3007 3007 0 0 0 4.2-4.208l-4.187-4.188-4.17 4.174q2.08 2.11 4.157 4.222"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mariadb.svg����������������������������������0000664�0000000�0000000�00000002454�14753064456�0025227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.157 4.412c-.676.284-.79.31-1.673.372-.65.045-.757.057-1.212.209-.75.246-1.395.75-2.02 1.59-.296.398-1.249 1.913-1.249 1.988 0 .057-.65.998-.915 1.32-.574.713-1.08 1.079-2.14 1.59-.77.36-1.224.524-4.102 1.477-1.073.353-2.133.738-2.367.864-.852.449-1.515 1.036-2.203 1.938-1.003 1.32-.972 1.313-3.042.947a12 12 0 0 0-.675-.063c-.644-.05-1.023.044-1.332.334L0 17.193l.177.088c.094.05.353.234.561.398.215.17.461.347.55.391.088.044.17.088.183.101s-.089.17-.228.353c-.435.581-.593.871-.574 1.048.019.164.032.17.43.17.517-.006.826-.056 1.261-.208.65-.233 2.058-.94 2.784-1.4.776-.5 1.717-.998 1.956-1.042.082-.02.354-.07.594-.114.58-.107 1.464-.095 2.587.05.108.013.373.045.6.064.227.025.43.057.454.076.026.012.474.037.998.056.934.026 1.104.007 1.3-.189.126-.133.385-.631.498-.985.209-.643.417-.921.366-.492-.113.966-.322 1.692-.713 2.411-.259.499-.663 1.092-.934 1.395-.322.347-.315.36.088.315.619-.063 1.471-.397 2.096-.82.827-.562 1.647-1.691 2.19-3.03.107-.27.22-.22.183.083-.013.094-.038.315-.057.498l-.031.328.353-.202c.833-.48 1.414-1.262 2.127-2.884.227-.518.877-2.922 1.073-3.976a10 10 0 0 1 .271-1.042c.127-.429.196-.555.48-.858.183-.19.625-.555.978-.808.72-.505.953-.75 1.187-1.205.208-.417.284-1.13.132-1.357-.132-.202-.284-.196-.763.006"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mariadbfoundation.svg������������������������0000664�0000000�0000000�00000004261�14753064456�0027314�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.475 4.031c-.369.013-.262.179-1.06.376-.805.198-1.78.077-2.646.441-2.267.95-2.634 4.624-5.335 6.045-1.77 1-3.576 1.229-5.19 1.735-1.295.52-2.101.864-3.051 1.683-.737.635-.917 1.252-1.687 2.05-.782 1.062-3.744.118-4.506 1.45.402.26.634.332 1.34.24-.146.276-1.074.64-.906 1.048 0 0 2.245.409 4.137-.733.882-.359 1.71-1.119 3.08-1.301 1.777-.236 3.778.373 5.925.544-.444.877-.902 1.395-1.391 2.119-.152.163.13.307.65.209.937-.232 1.615-.483 2.289-.949.878-.606 1.256-1.16 1.997-2.039.644 1.032 2.914 1.26 3.38.367-.867-.367-1.052-2.277-.755-3.101.35-.786.603-1.896.886-2.928.256-.93.413-2.349.718-3.075.365-.903 1.073-1.185 1.605-1.664S24.015 5.67 24 4.574c-.006-.356-.19-.553-.525-.543m-.573.445c.09.307.231.448.841.504-.089.774-.606 1.196-1.183 1.602-.509.356-1.066.7-1.424 1.258-.367.57-.951 2.23-1.52 4.159-.492 1.668-1.065 2.807-2.276 3.807-.15-.36.17-.568.03-.897-.175.496-.558 1.218-.789 1.66-.76 1.454-2.019 2.63-3.901 2.962.893-1.21 1.787-2.543 1.896-4.627-.4.087-.432 1.164-1.078 1.56-.415.045-.995-.05-1.573-.12-1.726-.203-3.465-.282-5.087.24-1.105.353-2.356 1.447-3.292 1.853-1.1.478-1.477.515-2.869.473-.174-.234 1.002-.536.936-1.047-.536-.058-.848.071-1.314-.14a.7.7 0 0 1 .223-.24c.854-.59 3.278-.14 3.927-.777.401-.392.663-.804.935-1.204.265-.388.538-.765.953-1.105.154-.125.394-.341.571-.463.709-.484 1.51-.831 2.373-1.133 1.174-.413 2.361-.552 3.613-1.03.774-.296 1.508-.576 2.193-1.088.162-.121.407-.326.55-.465 2.22-2.192 2.361-5.177 5.415-5.49.37-.038.672-.026.948-.034.317-.01.597-.047.902-.218m-.15.197c-.017 0-.049.015-.093.056-.265.272-.79.884-.98 1.454-.05.155.048.11.082.01.189-.584.788-1.226.971-1.42.045-.052.051-.099.02-.1m.08.133c-.017.002-.046.022-.084.069-.224.306-.657.77-.766 1.36-.027.16.064.103.082-.001.106-.605.608-1.11.763-1.327.037-.058.036-.105.006-.101zm.098.12c-.017.004-.044.026-.077.076-.199.325-.46.699-.519 1.295-.013.162.073.097.083-.008.052-.612.379-1.032.515-1.262.032-.06.028-.107-.002-.1zm.107.091q-.027.006-.071.082c-.169.34-.328.6-.334 1.2.002.163.08.09.081-.015 0-.614.22-.925.335-1.166.026-.063.018-.11-.011-.1zm-2.064.294q-.788.021-.938.68c.432.375 1.338.074 1.177-.672a2 2 0 0 0-.24-.008Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/markdown.svg���������������������������������0000664�0000000�0000000�00000000566�14753064456�0025454�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.27 19.385H1.73A1.73 1.73 0 0 1 0 17.655V6.345a1.73 1.73 0 0 1 1.73-1.73h20.54A1.73 1.73 0 0 1 24 6.345v11.308a1.73 1.73 0 0 1-1.73 1.731zM5.769 15.923v-4.5l2.308 2.885 2.307-2.885v4.5h2.308V8.078h-2.308l-2.307 2.885-2.308-2.885H3.46v7.847zM21.232 12h-2.309V8.077h-2.307V12h-2.308l3.461 4.039z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/marko.svg������������������������������������0000664�0000000�0000000�00000000371�14753064456�0024735�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.4 5.46h-3.39l-2.3 3.77L7.4 5.46H4l-4 6.55 4 6.53h3.39l-4-6.54L5.7 8.23 8.01 12h3.39l2.31-3.78L16.03 12l-4.01 6.54h3.39l4-6.54zm4.6 0h-3.39l4 6.54-4.01 6.54h3.39L24 12z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/marriott.svg���������������������������������0000664�0000000�0000000�00000000550�14753064456�0025464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.802 11.083-1.178 2.41c-.8 1.425-1.931 3.167-3.646 3.603-.668.232-1.255.023-1.9-.023L0 20.476a1.6 1.6 0 0 0 .59.386c3.647 1.39 5.122-.1 8.722-8.238l3.403 7.249h4.53l-2.14-4.893 1.213-2.53 3.345 7.311 4.337.027-7.59-16.677-3.475 1.738 2.738 6.222-1.201 2.445L9.45 2.678l-3.7 1.877Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/marvelapp.svg��������������������������������0000664�0000000�0000000�00000000721�14753064456�0025612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.339 8.13c1.373 0-1.162 7.076-.845 10.138s3.696 2.218 3.485.423c-.423-3.063 1.69-12.672 3.696-12.672 1.478 0-1.69 6.547-1.056 10.665.422 2.64 4.012 1.901 3.59.106-1.162-5.386 2.64-10.56 2.112-14.361C21.11.845 20.159 0 19.209 0c-3.379 0-6.125 6.97-6.125 6.97s.423-3.908-2.428-4.119C6.643 2.64 2.525 12.777 2.63 21.964c.106 2.957 3.696 2.429 3.485.106-.211-4.12 2.112-13.94 4.225-13.94z"/></svg>�����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/maserati.svg���������������������������������0000664�0000000�0000000�00000001552�14753064456�0025433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.678 21.213h4.67v.909h-4.67zm.87 2.787h2.93v-1.409h-2.93zm-.844-5.313c.575.523.881 1.28.83 2.056h2.944a2.58 2.58 0 0 1 .818-2.056zm-3.052-2.17v.683h10.696v-.683zm.478 3.087a3.83 3.83 0 0 0 1.74-.917H7.009zm9.74 0 .121-.917h-1.86c.49.451 1.089.768 1.739.917m-8.666-4.556A74 74 0 0 0 5.913 8.63q.967.153 1.913.405A18.9 18.9 0 0 0 3.51 5.583c1.226 2.378 2.378 5.987 2.965 9.465zm9.326 0c.587-3.478 1.74-7.087 2.961-9.465a18.9 18.9 0 0 0-4.308 3.452q.945-.254 1.913-.405a66 66 0 0 0-2.292 6.418zM6.087 16.17h11.83v-.679H6.087zm5.135-1.144q.468-1.11.77-2.278.305 1.167.773 2.278h2.052c-1.743-2.87-2.234-6.665-2.343-10-.009-.343.13-.43.46-.283l1.053.474A15.5 15.5 0 0 1 11.991 0 15.5 15.5 0 0 1 10 5.217l1.052-.474c.33-.152.457-.06.457.283-.109 3.313-.6 7.109-2.34 10zm-5.135 3.191h11.83v-.678H6.087z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mastercard.svg�������������������������������0000664�0000000�0000000�00000001122�14753064456�0025744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.343 18.031q.088.074.181.146a7.4 7.4 0 0 1-4.107 1.238 7.416 7.416 0 1 1 4.104-13.593c-.06.051-.12.098-.165.15A7.96 7.96 0 0 0 8.595 12a8 8 0 0 0 2.748 6.031m5.241-13.447c-1.52 0-2.931.456-4.105 1.238.06.051.12.098.165.15A7.96 7.96 0 0 1 15.405 12a8 8 0 0 1-2.748 6.031q-.088.074-.181.146a7.4 7.4 0 0 0 4.107 1.238A7.414 7.414 0 0 0 24 12a7.417 7.417 0 0 0-7.416-7.416M12 6.174q-.144.111-.28.231A7.39 7.39 0 0 0 9.169 12 7.39 7.39 0 0 0 12 17.827q.144-.112.28-.232A7.4 7.4 0 0 0 14.831 12 7.39 7.39 0 0 0 12 6.174"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mastercomfig.svg�����������������������������0000664�0000000�0000000�00000000655�14753064456�0026311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.479 0 .174 5.304.174 11.826V24h1.337v-6.716C3.486 21.064 7.446 23.65 12 23.65s8.514-2.586 10.49-6.367V24h1.336V11.826h-1.337c0 5.798-4.69 10.489-10.489 10.489a10.484 10.484 0 0 1-10.49-10.49C1.51 6.028 6.203 1.338 12 1.338zm0 3.72a8.107 8.107 0 1 0 0 16.214 8.107 8.107 0 0 0 0-16.215zm0 1.336a6.77 6.77 0 1 1 0 13.538 6.77 6.77 0 0 1 0-13.538"/></svg>�����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mastodon.svg���������������������������������0000664�0000000�0000000�00000002162�14753064456�0025450�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.268 5.313c-.35-2.578-2.617-4.61-5.304-5.004C17.51.242 15.792 0 11.813 0h-.03c-3.98 0-4.835.242-5.288.309C3.882.692 1.496 2.518.917 5.127.64 6.412.61 7.837.661 9.143c.074 1.874.088 3.745.26 5.611.118 1.24.325 2.47.62 3.68.55 2.237 2.777 4.098 4.96 4.857 2.336.792 4.849.923 7.256.38q.398-.092.786-.213c.585-.184 1.27-.39 1.774-.753a.06.06 0 0 0 .023-.043v-1.809a.05.05 0 0 0-.02-.041.05.05 0 0 0-.046-.01 20.3 20.3 0 0 1-4.709.545c-2.73 0-3.463-1.284-3.674-1.818a5.6 5.6 0 0 1-.319-1.433.053.053 0 0 1 .066-.054c1.517.363 3.072.546 4.632.546.376 0 .75 0 1.125-.01 1.57-.044 3.224-.124 4.768-.422q.059-.011.11-.024c2.435-.464 4.753-1.92 4.989-5.604.008-.145.03-1.52.03-1.67.002-.512.167-3.63-.024-5.545m-3.748 9.195h-2.561V8.29c0-1.309-.55-1.976-1.67-1.976-1.23 0-1.846.79-1.846 2.35v3.403h-2.546V8.663c0-1.56-.617-2.35-1.848-2.35-1.112 0-1.668.668-1.67 1.977v6.218H4.822V8.102q0-1.965 1.011-3.12c.696-.77 1.608-1.164 2.74-1.164 1.311 0 2.302.5 2.962 1.498l.638 1.06.638-1.06c.66-.999 1.65-1.498 2.96-1.498 1.13 0 2.043.395 2.74 1.164q1.012 1.155 1.012 3.12z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/materialdesign.svg���������������������������0000664�0000000�0000000�00000000771�14753064456�0026620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.377 0 0 5.377 0 12s5.377 12 12 12 12-5.377 12-12S18.623 0 12 0m0 .75c2.871 0 5.482 1.082 7.469 2.85H4.53A11.2 11.2 0 0 1 12 .75m-7.186 3.6h14.372L12 18.723zM3.6 4.53v14.94A11.2 11.2 0 0 1 .75 12c0-2.87 1.082-5.481 2.85-7.468zm16.8 0A11.2 11.2 0 0 1 23.25 12c0 2.871-1.082 5.482-2.85 7.469zM4.35 5.1l7.275 14.55H4.35zm15.3 0v14.55h-7.275L19.651 5.1zM4.533 20.4h14.936A11.2 11.2 0 0 1 12 23.25a11.2 11.2 0 0 1-7.468-2.85z"/></svg>�������mkdocs-material-9.6.4/material/templates/.icons/simple/materialdesignicons.svg����������������������0000664�0000000�0000000�00000000441�14753064456�0027646�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h7.2v2.4h9.6V0H24v7.2h-2.4v9.6H24V24h-7.2v-2.4H7.2V24H0v-7.2h2.4V7.2H0zm16.8 7.2V4.8H7.2v2.4H4.8v9.6h2.4v2.4h9.6v-2.4h2.4V7.2M2.4 2.4v2.4h2.4V2.4m14.4 0v2.4h2.4V2.4M2.4 19.2v2.4h2.4v-2.4m14.4 0v2.4h2.4v-2.4z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/materialformkdocs.svg������������������������0000664�0000000�0000000�00000000430�14753064456�0027326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.029 18.772.777 1.166-5.417 2.709L0 16.451V4.063l5.417-2.709 5.298 7.948 7.867-5.24L24 1.354V16.84l-5.417 2.709zm2.023-13.827v13.253l3.949-1.975V2.97zM5.076 2.642 1.458 4.45 12.73 21.358l3.618-1.809z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/matillion.svg��������������������������������0000664�0000000�0000000�00000001730�14753064456�0025614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c-.552 0-1.104.142-1.598.428L2.777 4.831A3.2 3.2 0 0 0 1.18 7.597v8.806c0 1.141.609 2.195 1.597 2.766l7.625 4.403a3.2 3.2 0 0 0 3.195 0l7.626-4.403a3.2 3.2 0 0 0 1.597-2.766V7.597a3.2 3.2 0 0 0-1.597-2.766L13.597.428A3.2 3.2 0 0 0 12 0m.033 6.215a1.383 1.383 0 0 1 1.012 2.286l-7.277 8.403a1.382 1.382 0 0 1-2.09-1.81l7.278-8.402a1.37 1.37 0 0 1 1.077-.477m2.689 3.105.025.001.059.002.082.005.055.007a1 1 0 0 1 .135.026l.073.019.035.012.091.034.038.017q.044.02.087.043l.033.018q.04.023.077.048l.045.031.071.055q.008.006.018.013l.019.019q.034.03.065.062l.037.039.031.033 4.533 5.296a1.38 1.38 0 0 1-1.049 2.281h-.001a1.38 1.38 0 0 1-1.05-.484l-3.484-4.07-3.482 4.07a1.38 1.38 0 0 1-1.051.484h-.001A1.38 1.38 0 0 1 9.164 15.1l4.533-5.296.03-.033.037-.039.062-.059.023-.022.022-.017.066-.05q.023-.017.047-.033l.067-.042.049-.027.072-.036a1 1 0 0 1 .177-.066 1 1 0 0 1 .141-.035l.06-.01.058-.007.081-.005z"/></svg>����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/matomo.svg�����������������������������������0000664�0000000�0000000�00000001667�14753064456�0025131�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.664 15.37a3.336 3.336 0 0 1-3.332 3.332C1.495 18.702 0 17.208 0 15.37s1.495-3.333 3.332-3.333a3.34 3.34 0 0 1 3.332 3.333m11.565-3.644a3.66 3.66 0 0 1-1.987.591 3.64 3.64 0 0 1-1.872-.529l.008.012a3.7 3.7 0 0 1-1.235-1.19l-2.612-3.693a.2.2 0 0 1-.027-.033A3.31 3.31 0 0 0 7.67 5.298a3.32 3.32 0 0 0-2.848 1.586.2.2 0 0 1-.021.028l-3.428 5.343a3.663 3.663 0 0 1 5.094 1.18l.015.018 2.756 3.869a3.3 3.3 0 0 0 2.699 1.38 3.31 3.31 0 0 0 2.711-1.379l.009-.013c.073-.103.137-.202.195-.305l1.442-2.255zm5.275 1.902-.014-.028-.044-.066-.029-.044-3.525-5.37c.024.168.052.335.052.51 0 .741-.219 1.457-.634 2.068l-2.803 4.38 1.416 2.179-.002.002a.1.1 0 0 1 .024.028 3.34 3.34 0 0 0 2.723 1.415A3.335 3.335 0 0 0 24 15.37c0-.613-.171-1.216-.496-1.742m-7.262-1.666a3.336 3.336 0 0 0 3.332-3.333 3.336 3.336 0 0 0-3.332-3.332 3.336 3.336 0 0 0-3.332 3.332 3.34 3.34 0 0 0 3.332 3.333"/></svg>�������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/matrix.svg�����������������������������������0000664�0000000�0000000�00000001432�14753064456�0025127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.632.55v22.9H2.28V24H0V0h2.28v.55zm7.043 7.26v1.157h.033a3.3 3.3 0 0 1 1.117-1.024c.433-.245.936-.365 1.5-.365q.81.002 1.481.314c.448.208.785.582 1.02 1.108q.382-.562 1.034-.992.651-.43 1.546-.43.679 0 1.26.167c.388.11.716.286.993.53.276.245.489.559.646.951q.229.587.23 1.417v5.728h-2.349V11.52q0-.43-.032-.812a1.8 1.8 0 0 0-.18-.66 1.1 1.1 0 0 0-.438-.448q-.292-.165-.785-.166-.498 0-.803.189a1.4 1.4 0 0 0-.48.499 2 2 0 0 0-.231.696 5.6 5.6 0 0 0-.06.785v4.768h-2.35v-4.8q.002-.38-.018-.752a2.1 2.1 0 0 0-.143-.688 1.05 1.05 0 0 0-.415-.503c-.194-.125-.476-.19-.854-.19q-.168 0-.439.074c-.18.051-.36.143-.53.282a1.64 1.64 0 0 0-.439.595q-.18.39-.18 1.02v4.966H5.46V7.81zm15.693 15.64V.55H21.72V0H24v24h-2.28v-.55z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/matterdotjs.svg������������������������������0000664�0000000�0000000�00000006637�14753064456�0026177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.494 9.614c-.152 0-.265.046-.333.121a.41.41 0 0 0-.114.296q.001.47.416.469.25 0 .364-.114a.42.42 0 0 0 .11-.302q.002-.47-.417-.47h-.023zm-17.341.038-1.078 1.866L0 13.383h2.85v-1.9l-.058-.722Zm18.086.015v3.394l.25-.461.022.007a2.2 2.2 0 0 0 .73.224.3.3 0 0 0 .179-.053c.049-.03.068-.065.068-.125 0-.065-.027-.114-.099-.155a1.3 1.3 0 0 0-.17-.091 2.8 2.8 0 0 1-.738-.39c-.151-.129-.227-.322-.227-.567a.76.76 0 0 1 .303-.625 1.2 1.2 0 0 1 .753-.227c.295 0 .53.076.704.212a.84.84 0 0 1 .302.587v.022l-.726.14-.008-.03c-.011-.114-.038-.185-.087-.238a.3.3 0 0 0-.223-.08.23.23 0 0 0-.163.057q-.068.065-.068.129c0 .049.008.079.019.102a.3.3 0 0 0 .05.068l.075.064a1 1 0 0 0 .094.053l.13.05q.062.038.313.15v-.01a1.4 1.4 0 0 1 .44.275c.116.114.177.28.177.489q0 .317-.291.567a1 1 0 0 1-.492.227H24V9.667Zm-10.08.292-.726.215-.03.504-.333.045-.072.503h.39v1.124q0 .578.15.832c.107.17.322.254.655.254a1.43 1.43 0 0 0 .704-.197l-.136-.446a1.6 1.6 0 0 1-.288.049q-.171 0-.242-.102-.073-.1-.072-.356v-1.162h.59l.091-.556h-.68zm1.903 0-.726.215-.03.504-.333.045-.076.503h.394v1.124q0 .578.15.832.156.255.655.254a1.4 1.4 0 0 0 .7-.197l-.136-.446a1.6 1.6 0 0 1-.287.049q-.17 0-.242-.102-.069-.1-.069-.356v-1.162h.59l.091-.556h-.68zm-7.862.67a.85.85 0 0 0-.677.332h-.02l-.071-.31-.598.076.053.757v1.891h.772v-2.001a.39.39 0 0 1 .306-.148c.182 0 .277.114.277.33v1.82h.768v-2.002a.38.38 0 0 1 .31-.148c.178 0 .265.114.265.33v1.82h.78v-1.783q-.002-.965-.78-.965a.9.9 0 0 0-.727.33c-.12-.22-.333-.33-.628-.33Zm3.61 0a2.2 2.2 0 0 0-.564.086 2 2 0 0 0-.473.174l.215.477a2.6 2.6 0 0 1 .666-.151q.205.002.273.083.073.077.072.242v.2l-.44.076a1.4 1.4 0 0 0-.665.273q-.227.198-.227.594 0 .756.726.757a.91.91 0 0 0 .742-.379h.019a.96.96 0 0 0 .386.379l.435-.413a.8.8 0 0 1-.167-.25 1 1 0 0 1-.034-.302v-.95a1.6 1.6 0 0 0-.03-.34.7.7 0 0 0-.113-.277.52.52 0 0 0-.292-.211 1.5 1.5 0 0 0-.492-.069zm6.337 0c-.39.007-.68.136-.881.382a1.6 1.6 0 0 0-.303 1.033q.002 1.393 1.173 1.392a2 2 0 0 0 1.003-.273l-.16-.472a2.1 2.1 0 0 1-.688.147c-.19 0-.318-.05-.393-.147a.76.76 0 0 1-.114-.45h1.04l.36-.05q0-.319-.015-.53c-.03-.352-.114-.605-.242-.756q-.238-.278-.742-.277zm2.683 0a.6.6 0 0 0-.378.155.87.87 0 0 0-.254.423h-.019l-.094-.556-.583.076.057.749v1.9h.768v-1.514q0-.283.159-.428a.52.52 0 0 1 .355-.147 1 1 0 0 1 .273.049l.178-.605a.95.95 0 0 0-.432-.099h-.026zm3.05.018-.772.08v2.395a1.5 1.5 0 0 1-.053.507q-.051.13-.295.31l.423.447a1.9 1.9 0 0 0 .56-.466 1.06 1.06 0 0 0 .137-.598zm1.43 0a1.16 1.16 0 0 0-.727.224.69.69 0 0 0-.28.575c0 .242.076.408.216.526a2.8 2.8 0 0 0 .719.386 2 2 0 0 1 .182.102c.079.045.12.113.12.189a.19.19 0 0 1-.09.174.37.37 0 0 1-.208.05 2.1 2.1 0 0 1-.73-.205l-.25.45c.329.19.654.288.983.288a1.14 1.14 0 0 0 .769-.235c.185-.163.272-.337.272-.533a.6.6 0 0 0-.163-.454 1.3 1.3 0 0 0-.416-.258 4 4 0 0 1-.325-.147l-.114-.05a1 1 0 0 1-.113-.06l-.08-.068a.3.3 0 0 1-.06-.08.4.4 0 0 1-.015-.125.22.22 0 0 1 .075-.166.28.28 0 0 1 .197-.072c.106 0 .19.038.253.099a.44.44 0 0 1 .103.242l.62-.118a.8.8 0 0 0-.265-.53 1 1 0 0 0-.673-.204m-7.204.58h.022q.177 0 .227.113c.034.075.05.212.05.4h-.613a.8.8 0 0 1 .083-.381c.049-.084.125-.125.23-.133zm-6.103 1.01v.472a.47.47 0 0 1-.341.144q-.266 0-.265-.25c0-.113.05-.189.14-.242a1.4 1.4 0 0 1 .466-.125zm-4.295.128v1.007h.48v-.174zm14.094.064a.49.49 0 0 0-.454.489.49.49 0 0 0 .492.488.49.49 0 0 0 .484-.492.49.49 0 0 0-.488-.485h-.037zm2.437.742v.257h.704a2.2 2.2 0 0 1-.704-.257"/></svg>�������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mattermost.svg�������������������������������0000664�0000000�0000000�00000001363�14753064456�0026025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.081 0C7.048-.034 2.339 3.125.637 8.153c-2.125 6.276 1.24 13.086 7.516 15.21s13.086-1.24 15.21-7.516c1.727-5.1-.172-10.552-4.311-13.557l.126 2.547c2.065 2.282 2.88 5.512 1.852 8.549-1.534 4.532-6.594 6.915-11.3 5.321-4.708-1.593-7.28-6.559-5.745-11.092 1.031-3.046 3.655-5.121 6.694-5.67l1.642-1.94A5 5 0 0 0 12.08 0zm3.528 1.094a.3.3 0 0 0-.123.024l-.004.001a.3.3 0 0 0-.109.071c-.145.142-.657.828-.657.828L13.6 3.4l-1.3 1.585-2.232 2.776s-1.024 1.278-.798 2.851c.226 1.574 1.396 2.34 2.304 2.648.907.307 2.302.408 3.438-.704 1.135-1.112 1.098-2.75 1.098-2.75l-.087-3.56-.07-2.05-.047-1.775s.01-.856-.02-1.057a.3.3 0 0 0-.035-.107l-.006-.012-.007-.011a.28.28 0 0 0-.229-.14"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/matternet.svg��������������������������������0000664�0000000�0000000�00000001722�14753064456�0025630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.229 4.18-4.066 2.327V1.826L11.993 0 8.827 1.83v4.677L4.78 4.17 1.606 6v3.664L5.657 12l-4.054 2.343V18l3.165 1.831 4.044-2.338v4.681L11.983 24l3.174-1.831v-4.676l4.052 2.327 3.173-1.829v-3.646L18.339 12l4.058-2.336V6l-3.164-1.82zm.373 3.429V5.715l1.639.942v1.905l-1.636-.953zm1.638 9.286-6.075-3.504 1.65-.945L21.239 15v1.896zm-6.827-3.95L12.763 12l6.452-3.726 1.641.944-6.446 3.727zM3.134 9.219l1.641-.944L11.228 12l-1.639.945zm5.69 4.17-6.075 3.508V15l4.435-2.555 1.641.945v-.001zM2.749 8.564V6.66l1.64-.945v1.898zm9.627 0V1.55l1.641.937V7.61zm-2.402-.96V2.493l1.64-.944v7.004zm8.866-1.889v1.898l-6.456 3.734V9.442zm-7.228 3.724v1.897L5.153 7.609V5.715l6.46 3.721zm-2.403 6.513-4.435 2.555-1.64-.944 6.074-3.508zm.765-2.343 1.64-.945v7.453l-1.64.959zm3.656 8.115-1.639.954-1.64-.951 1.64-.946 1.639.946zm.394-.657-1.648-.95v-7.441l1.648.944zm6.831-3.504-1.641.944-4.425-2.555v-1.897l6.075 3.508z"/></svg>����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mautic.svg�����������������������������������0000664�0000000�0000000�00000001106�14753064456�0025103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.394 0 0 5.374 0 12s5.394 12 12 12c6.626 0 12-5.394 12-11.98a11.9 11.9 0 0 0-.727-4.12.815.815 0 0 0-1.05-.486.815.815 0 0 0-.486 1.05c.425 1.132.627 2.324.627 3.556 0 5.717-4.647 10.364-10.364 10.364S1.637 17.737 1.637 12.02 6.283 1.657 12 1.657c1.374 0 2.707.262 3.98.787A.843.843 0 0 0 17.05 2a.843.843 0 0 0-.444-1.07A11.6 11.6 0 0 0 12 0m8.08 4.323-3.595.707.646.647L12 11.111 7.616 6.606 5.091 17.051h2.343l1.394-5.799L12 14.707l6.788-7.394.646.667zm-2.828 6.445-1.858 1.94 1.03 4.343h2.344z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/max.svg��������������������������������������0000664�0000000�0000000�00000001363�14753064456�0024413�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.769 0A1.77 1.77 0 0 0 0 1.769V22.23A1.77 1.77 0 0 0 1.769 24H22.23A1.77 1.77 0 0 0 24 22.231V1.77A1.77 1.77 0 0 0 22.231 0zm12.485 3.28a4.3 4.3 0 0 1 4.3 4.302 4.3 4.3 0 0 1-1.993 3.63 6.1 6.1 0 0 1 1.054 3.422 6.085 6.085 0 0 1-6.085 6.085 6.085 6.085 0 0 1-6.085-6.085 6.085 6.085 0 0 1 4.66-5.916 4.3 4.3 0 0 1-.152-1.136 4.3 4.3 0 0 1 4.301-4.301zm0 1.849a2.453 2.453 0 0 0-2.453 2.453 2.453 2.453 0 0 0 2.453 2.453 2.453 2.453 0 0 0 2.453-2.453 2.453 2.453 0 0 0-2.453-2.453m-2.724 5.268a4.237 4.237 0 0 0-4.237 4.237 4.237 4.237 0 0 0 4.237 4.237 4.237 4.237 0 0 0 4.237-4.237 4.237 4.237 0 0 0-4.237-4.237m.032 2.54a1.781 1.781 0 1 1 0 3.562 1.781 1.781 0 0 1 0-3.562"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/maxplanckgesellschaft.svg��������������������0000664�0000000�0000000�00000030300�14753064456�0030162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a12 12 0 1 0 12 12A12.01 12.01 0 0 0 12 0m-.049.331A11.67 11.67 0 0 1 23.67 12 11.68 11.68 0 0 1 12 23.669 11.669 11.669 0 0 1 11.951.33zM12 1.464A10.56 10.56 0 0 0 1.45 12c0 3.371 1.715 6.617 4.503 8.64a1.5 1.5 0 0 0 .32.183.13.13 0 0 0 .126-.023l.034-.057a.11.11 0 0 0 .035-.092c0-.08-.103-.148-.24-.343a3.17 3.17 0 0 1-.537-1.725 2.53 2.53 0 0 1 .514-1.566c.423.446 1.337 1.246 1.314 1.989s-.789.777-.617 1.394c.103.389.389.229.446.526.08.503.765.834 1.062.788.08-.011.138.046.275.194.137.15.708.183.937.138.228-.046.468.16.914.103s.697-.103.937-.103 2.572-.035 4.115.205c.274.046.354-.08.24-.285-.56-.983-.64-1.806-.32-2.858.57.046 1.394.195 2.468-.457a1.26 1.26 0 0 0 .583-1.085c-.011-.24-.114-.537-.057-.766s.148-.308.24-.366c.411-.297.114-.525.046-.548a.39.39 0 0 0 .125-.526c-.08-.08-.308-.709-.045-.834.262-.126.605-.206.925-.355a.514.514 0 0 0 .275-.685 125 125 0 0 0-1.029-2.4c-.16-.355-.057-.583-.103-.835-.046-.251-.308-.8-.491-1.234-.08-.194.434-.148.046-.868 0-.023.537-.229 0-.629a3 3 0 0 1-.686-.766.114.114 0 0 1 0-.148c.308-.274.32-.663-.012-.857-.331-.195-.514 0-.765.16-.08.057-.126.09-.218.057l-.205-.137c.308-.298.377-.595.354-.64s-.526-.149-1.166.114l-.045-.034c.263-.446.114-.766.102-.79h-.011a9.3 9.3 0 0 1 1.417-1.519h.012c.022-.034.034-.069-.023-.103l-.115-.068A10.56 10.56 0 0 0 12 1.464m-.073.316a10.2 10.2 0 0 1 4.805 1.169.046.046 0 0 1 .012.08 11 11 0 0 0-1.166 1.302 8.35 8.35 0 0 0-3.577-.8A8.49 8.49 0 0 0 3.531 12a8.24 8.24 0 0 0 2.046 5.508 2.6 2.6 0 0 0-.217 1.075 2.9 2.9 0 0 0 .377 1.451C3.268 18.07 1.783 15.097 1.783 12A10.206 10.206 0 0 1 11.926 1.78zm.28.266c-.034 0-.046.023-.057.046l-.103 1.142a.046.046 0 0 0 .046.046h.125c.023.011.046-.011.046-.034l.114-1.143a.06.06 0 0 0-.046-.057zm-1.686.111q-.008 0-.017.003h-.137c-.023.011-.046.034-.035.057l.218 1.132c0 .034.023.045.057.045l.125-.023c.023 0 .046-.022.035-.045l-.217-1.132a.04.04 0 0 0-.03-.037zm3.514.106L13.59 3.36a.046.046 0 0 0 .034.069l.126.034a.06.06 0 0 0 .057-.034l.434-1.075a.046.046 0 0 0-.034-.068l-.137-.023zm-5.313.34-.013.003-.114.034a.046.046 0 0 0-.034.068l.514 1.04.057.023.126-.045a.046.046 0 0 0 .035-.069L8.766 2.63a.05.05 0 0 0-.045-.026zm6.913.134a.05.05 0 0 0-.034.017l-.743.949c-.023.023-.011.057.023.068l.126.046c.023.012.034 0 .057-.011l.743-.949a.06.06 0 0 0-.023-.068l-.126-.046a.1.1 0 0 0-.023-.006m-8.592.639a.03.03 0 0 0-.025.007l-.114.068c-.034.012-.034.046-.011.07l.765.879c.012.023.034.023.057.011l.115-.068a.046.046 0 0 0 .011-.069l-.766-.88a.06.06 0 0 0-.032-.018m4.93.498h.028a8 8 0 0 1 3.383.732 2.6 2.6 0 0 0-.469.297A7.2 7.2 0 0 0 12 4.32 7.69 7.69 0 0 0 4.32 12c0 1.84.571 3.451 1.691 4.8-.057.103-.148.24-.251.4h-.011A7.9 7.9 0 0 1 3.874 12a8.137 8.137 0 0 1 8.098-8.126zm-6.51.618-.102.09a.057.057 0 0 0 0 .08l.971.675c.023.011.046.012.058-.011l.103-.08a.057.057 0 0 0 0-.08l-.972-.674zm10.177.191q.012 0 .018.003c.069.034-.091.64-.446.983-.354.342-.925.708-.982.697-.058-.012.194-.674.491-1.017.3-.365.8-.659.919-.666m-3.616.025a6.5 6.5 0 0 1 2.56.526 3.6 3.6 0 0 0-.423.755c0-.218-.057-.389-.046-.526s-.582.103-1.108.948a2.3 2.3 0 0 0-.252.606c-.011-.32-.08-.56-.103-.56a1.84 1.84 0 0 0-.971 1.006 2.6 2.6 0 0 0-.126.388c-.023-.217-.08-.365-.103-.365s-.674.263-.982 1.017a1.8 1.8 0 0 0-.126.526c-.057-.263-.16-.423-.194-.389-.217.274-.652.4-.87 1.097a1.5 1.5 0 0 0-.079.48c-.091-.228-.229-.366-.263-.366s-.697.629-.8 1.246a1.8 1.8 0 0 0 .023.663c-.126-.206-.286-.343-.354-.549-.103.058-.652.572-.663 1.223a2.3 2.3 0 0 0 .08.697c-.183-.331-.434-.48-.469-.468s-.457.468-.548 1.268a1.4 1.4 0 0 0 .045.526c-.171-.194-.32-.297-.33-.286a2.6 2.6 0 0 0-.413 1.018A7.5 7.5 0 0 1 4.651 12c-.16-4.046 3.235-7.303 7.372-7.292zm4.571.618h.035c.091.011-.218.548-.755.777s-.971.285-1.017.263c-.046-.023.469-.663.914-.858a2 2 0 0 1 .823-.182m-2.643.316q.005-.001.003.004c-.011.045.24.754-.297 1.188a2.4 2.4 0 0 0-.64.732c-.057.102-.217-.572.194-1.212.236-.375.693-.71.74-.712M4.15 5.89a.03.03 0 0 0-.024.018l-.08.103a.046.046 0 0 0 .023.08l1.12.435a.05.05 0 0 0 .045-.023l.092-.103c.023-.023.011-.057-.023-.069l-1.12-.434a.06.06 0 0 0-.033-.007m13.44.1q.073 0 .124.044c.297.298-.331.469-.206.697a3.5 3.5 0 0 0 .858.96c.137.115.16.355-.377.469-.538.114-2.697.674-3.84 1.886-1.429 1.508-2.332 3.463-2.457 3.2-.126-.263-.412-.32-.366-.4 2.045-3.52 5.257-6.298 6.011-6.766a.47.47 0 0 1 .254-.09zm-1.339.113.183.126c.115.068.16.09.103.137C13.943 8.57 12 11.372 11.154 12.72c-.023.046-.068.034-.148.034-.903-.068-1.417 1.017-1.017 2.035-.046.205-.48.605-.515.628-.034.023-.114.16.034.149.15-.012.48-.366.618-.515.045.069.251.229.148.32a7.3 7.3 0 0 1-1.588 1.2c-.297.138.48.24 1.794-.948.08-.069.171.274.286.423-.229.743.331 2.183.24 2.628a.32.32 0 0 1-.32.309c-1.303.034-1.429-.034-2.092.16-.308.091-.228.297-.011.24s.526-.172 1.931-.08c.355.011.743-.069.743-.652s-.411-2.102-.274-2.32a.8.8 0 0 0 .4.16c-.023.515.8 2.172.434 3.086-.137.343-.731.309-1.76.206-1.748-.172-2.32.206-2.354 0-.034-.229.183-.446.183-.937s-.755-1.44-1.269-1.977a2.2 2.2 0 0 0 .903-.218c.754-.354.903-1.154.926-1.188a1.3 1.3 0 0 0-.435-.046l.092-.046c.731-.4.925-1.257.891-1.268a2 2 0 0 0-.457-.034l.229-.08c.777-.309.994-1.177.971-1.212a2 2 0 0 0-.4-.046l.217-.091c.709-.354.96-1.154.926-1.177a1.2 1.2 0 0 0-.377-.046 2.7 2.7 0 0 0 .514-.171c.766-.332 1.017-1.063.983-1.097a1.3 1.3 0 0 0-.343-.057 4 4 0 0 0 .503-.15c.754-.25 1.051-.97 1.006-.982l-.423-.091a2.8 2.8 0 0 0 .754-.149c.812-.274 1.097-.766 1.12-.983a.7.7 0 0 0-.263-.091 3.4 3.4 0 0 0 .538-.138c.754-.308 1.074-1.062 1.097-1.12a3.4 3.4 0 0 0 .445-.182zm-1.28.5a2 2 0 0 1 .229.014c.034.023-.286.56-.811.766s-1.006.217-1.075.171c-.057-.034.492-.651.937-.823a2 2 0 0 1 .72-.127zm-2.468.105c.057-.01.217.664 0 .984-.389.582-.412.377-.834.948-.023.023-.023-.743.125-1.074.24-.538.652-.846.709-.858m-9.36.823-.057.023a.6.6 0 0 1-.057.126.046.046 0 0 0 .034.069l1.2.171c.023 0 .045-.011.045-.034l.07-.115a.046.046 0 0 0-.035-.068zm10.289.233a2 2 0 0 1 .476.065c.058.022-.32.571-.88.742s-1.108.149-1.097.115c.012-.035.469-.675.926-.835a1.9 1.9 0 0 1 .575-.087m-2.152.019c.068-.012.194.651-.046 1.063-.194.343-.377.263-.708.765-.035.046-.126-.411.08-1.04a1.44 1.44 0 0 1 .674-.788m6.96.673c.034.005.06.035.034.104-.114.331-1.04.629-.994.4s0-.251.069-.263c.068-.011.4-.126.857-.24a.1.1 0 0 1 .035-.001zm-1.368.317q.047-.001.054.016c.034.091-.206.685-.537.8s-.537.103-.526.045a1.3 1.3 0 0 0 .057-.468c-.02-.12.739-.389.952-.393m1.286.187a.09.09 0 0 1 .093.069c.423 1.017.595 1.291.56 1.805-.034.515.995 2.457 1.075 2.64s.091.389 0 .48c-.377.332-.949.355-1.178.56s-.17.286-.045.594c.126.31.125.195-.126.263-.251.069-.468.663-1.006.56-.205-.034-.057.092.023.103.297.035.423-.057.526-.16s.252-.274.412-.331.33-.057.342.068c.012.126-.217.24-.308.286.114.057.445.217.16.411-.286.195-.526-.057-.56-.08-.035-.022-.194-.022-.149.035s.595.148.515.251c-.4.537-.07.858-.195 1.406-.126.549-.88.857-1.463.96-1.988.354-3.92-1.326-5.051-2.606.103-.24.091-.548-.012-.434-.102.114-.08.274-.32.331-.445.115-.65-.674-.788-.81-.549-.538-.766-1.304-.446-1.978s1.029-.537 1.303-.126.194.8.388.949c.195.148.55.023.618 0s.194.491.914.468.674-1.222.789-1.325c.982-.96.48-1.818.297-2.012s.114-.411.171-.423a1.49 1.49 0 0 0 1.074-.88s.96-.023 1.303-.708c.092-.183.378.171 1.018-.332a.1.1 0 0 1 .066-.034m-8.085.015c.13-.046.188.654-.016 1.094-.206.445-.331.457-.571.731-.035.046-.206-.423-.046-1.006s.457-.64.606-.8a.1.1 0 0 1 .027-.02zm1.82.027c.247.007.444.077.53.084.137.011-.149.514-.754.731-.606.217-1.029.206-1.109.172-.023-.023.389-.72.846-.903a1.2 1.2 0 0 1 .486-.084zm-8.22.22h-.004l-1.235.115-.045.034-.035.137c0 .035.023.07.057.058l1.223-.115a.034.034 0 0 0 .035-.034 1 1 0 0 0 .045-.125.046.046 0 0 0-.04-.07zm11.806.203c.032.003.044.032.052.083a1.2 1.2 0 0 1-.297.858c-.262.285-.525.263-.663.297-.137.034-.091.263-.274.388-.251.172-.606-.057-.537-.16a5 5 0 0 1 1.314-1.257c.243-.15.352-.215.405-.21zm-6.622.724c.092 0 .24.365.24.674a1.2 1.2 0 0 1-.046.343c-.148.491-.445.708-.605.926a1.8 1.8 0 0 1-.183-.663 1.74 1.74 0 0 1 .594-1.28m2.106.104a2 2 0 0 1 .294.021c.034.035-.217.629-.743.857a2.8 2.8 0 0 1-1.177.206c-.034-.023.503-.731.96-.948a1.8 1.8 0 0 1 .665-.136zm6.614.033c-.56.023-1.211.708-1.417.8-.206.091-.149.171-.023.125.126-.045.674-.537 1.223-.731s.411.206.571.183-.034-.389-.354-.377m-14.262.544-.023.004-1.19.412c-.022.011-.033.023-.033.045 0 .023-.012.092-.012.138a.046.046 0 0 0 .069.045l1.177-.411a.034.034 0 0 0 .034-.034c0-.046.012-.103.012-.15q-.001-.048-.034-.049m14.388.004c-.046.012.045.252-.195.263-.525.034-.948.537-1.268.686a1.5 1.5 0 0 1-.434.16.035.035 0 0 0 .011.068c1.337.183 1.851.126 1.863.08.011-.045-.068-.137-.046-.194a1.3 1.3 0 0 0 .012-.629c-.023-.09.205-.034.205-.148s-.068-.297-.148-.286m-.297.537a.09.09 0 0 1 .091.069 1.2 1.2 0 0 1 0 .457c-.023.103-.628.057-.948.023-.08 0-.206-.011.034-.16s.469-.32.823-.389m-3.848.003c.121.01.24.169.248.34.034.412-.206.64-.446.823s-.354.503-.297.583a.17.17 0 0 0 .217-.103c.171-.377.686-.56.766-.766s.034-.503.023-.64.102-.137.182-.125c.08.011.16.16.206.308.332.857-.491 1.372-.628 1.577-.138.206.125.789-.229 1.006-.457.286-.709-.251-.777-.354a.42.42 0 0 1-.057-.355c.034-.16.057-.377-.046-1.062-.046-.309.571-1.052.72-1.189a.15.15 0 0 1 .118-.043m-5.855.169c.057.205.423.365.423.743a1.7 1.7 0 0 1-.583 1.234 2 2 0 0 1-.251-.869c-.023-.72.274-.971.41-1.108zm2.283.046a2 2 0 0 1 .197.011c.034.011-.206.617-.709.869-.503.251-1.177.285-1.154.228.023-.046.4-.731.846-.937a2 2 0 0 1 .82-.17zm-6.738.875a.1.1 0 0 0-.025.004l-1.074.72c-.023 0-.023.023-.023.046s.011.092.011.137a.057.057 0 0 0 .08.035l1.075-.709c.01-.011.022-.023.01-.034v-.149a.06.06 0 0 0-.054-.05m9.195.438a.06.06 0 0 1 .06.047c.068.468 0 1.12-.411 1.028-.115-.023-.16-.24-.138-.331.023-.092.355-.595.457-.732a.06.06 0 0 1 .032-.012m-3.26.012a2 2 0 0 1 .234.012c.057.022-.194.64-.663.868-.468.229-.743.103-1.223.252.035-.172.343-.743.812-.949a2.1 2.1 0 0 1 .84-.183m-2.44.092c.206.103.446.388.468.937.023.548-.365.994-.525 1.074-.103-.423-.297-.503-.297-.914a2.06 2.06 0 0 1 .354-1.097m4.152.227c-.347.016-.568.511-.518 1.041a.91.91 0 0 0 .583.812c.263.091.069.457.423.457.16 0 .194-.24.103-.275-.08-.034-.057.138-.16.115s-.023-.149-.206-.343-.32-.137-.491-.411c-.172-.275-.035-1.372.354-1.235.388.137.183.572.114.914s.286.32.32.24-.126-.102-.16-.217c-.034-.114.4-.868-.206-1.074a.4.4 0 0 0-.156-.024m7.24.093a.08.08 0 0 0-.066.068 4 4 0 0 1-.08.606c-.046.206.137.457.411.308.274-.148.549-.33.834-.388.069-.011.08-.114.012-.114-.103 0-.515.183-.675.286s-.502.308-.48-.092c.012-.149.103-.503.103-.606 0-.051-.028-.071-.058-.068zm-14.64.772a.05.05 0 0 0-.032.016l-.88.972c-.012.011-.023.034-.012.045a.6.6 0 0 1 .046.138.046.046 0 0 0 .08.023l.869-.96c.011-.012.011-.023.011-.046l-.034-.149a.046.046 0 0 0-.047-.039zm4.976.149a.7.7 0 0 1 .226.016c.023.023-.171.674-.674.937s-1.086.309-1.143.24.172-.777.697-1.006c.329-.142.675-.183.894-.187m-2.523.264c.107.011.59.419.6.997a1.65 1.65 0 0 1-.388 1.052c-.149-.137-.469-.491-.503-.949v-.068c0-.492.217-.983.274-1.029q.006-.004.017-.003m1.985 1.07c.133.003.217.018.204.03-.034.035-.206.663-.708.915a1.38 1.38 0 0 1-.995.148c.263-.297.206-.731.64-.937.279-.129.638-.159.86-.155zm-3.866.133a.06.06 0 0 0-.044.023l-.617 1.177c-.012.012 0 .035 0 .046l.08.137a.046.046 0 0 0 .08-.011l.617-1.166c0-.011.011-.023 0-.046l-.069-.137a.06.06 0 0 0-.047-.023m7.66.829q.022.003.044.028c1.783 1.932 2.915 2.31 3.532 2.492.057.023.046.091.023.16-.286 1.005-.435 1.406 0 2.503.057.148.103.262-.023.24-.88-.16-1.075-.297-3.852-.069-.194.023.069-.388.035-.663.251-.034.663-.148.743-.56.08-.411-.24-.868-.206-.937.4-.766-.023-1.611-.354-3.04-.026-.103.012-.16.057-.154zm-6.873.5c-.017.003-.031.014-.031.031l-.331 1.372c-.012.023 0 .034 0 .046l.114.114a.046.046 0 0 0 .08-.012l.32-1.36c.011-.011 0-.023 0-.034l-.103-.137a.05.05 0 0 0-.049-.02m2.489 2.851c.056.007.111.04.154.083.114.115-.08.32-.103.492-.08.022-.331.034-.274-.309.036-.214.13-.277.223-.266m1.583.096c.155-.01.304.046.297.124-.035.492-.24 1.052.137 1.612.149.217-.594.251-.731-.32-.092-.423-.126-1.143.045-1.314a.4.4 0 0 1 .252-.102m.962.04c.203-.002.475.028.546.05.115.034-.091.777.777 1.12.08.034-.011 1.006-1.28.686-.182-.046-.685-.846-.274-1.806.013-.034.11-.048.23-.05zm1.938.018c.23.031.238.746-.112.866-.674.229-.948-.56-.834-.731.114-.172.503.114.834-.103a.16.16 0 0 1 .112-.032m-3.78.073c.128-.004.245.022.251.085.012.126-.126.617.034 1.165-.034.08-.525.046-.662-.32-.069-.308-.046-.72.057-.834.051-.057.191-.091.32-.096"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/maytag.svg�����������������������������������0000664�0000000�0000000�00000004615�14753064456�0025113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.167 9.864c-.714 0-1.193.194-1.513.465-.65.55-.648 1.373-.648 1.627 0 .297.025 1.285.61 1.784.338.286.72.396 1.312.396.62 0 .962-.407.962-.407h.026s.065.102.179.196c.105.085.256.16.256.16h.358s-.026-.249-.026-.716v-.662q0-.14.081-.198a.5.5 0 0 1 .236-.073v-.31h-1.803v.31c.066 0 .272.008.348.056.077.048.15.09.15.262v.418c0 .134.036.266.036.266-.226.213-.731.242-.954.16-.343-.126-.532-.321-.532-1.635 0-.36-.025-1.078.281-1.409.178-.192.47-.23.678-.23.38 0 .622.11.794.47.075.159.246.561.246.561h.325l-.056-1.282c-.206-.082-.57-.209-1.346-.209M.015 9.902v.345c.423 0 .582.077.582.287v2.843q0 .209-.15.295-.148.084-.447.084v.349h1.56v-.349q-.302 0-.428-.087-.125-.087-.125-.3v-2.7h.037l1.195 3.436h.579l1.047-3.435h.045v2.776c0 .108-.012.212-.118.268-.078.043-.274.042-.354.042v.349h3.526v-.349c-.09.002-.326-.016-.416-.054-.096-.04-.212-.159-.081-.58l.142-.462h1.303l.121.38c.15.465.195.595.078.66-.103.056-.303.056-.387.056v.349h2.064v-.35c-.045-.002-.158.002-.259-.07-.12-.096-.18-.268-.212-.367a69 69 0 0 1-.874-2.836 17 17 0 0 1-.155-.58H7.163l-1.03 3.099c-.08.24-.173.47-.28.6-.116.142-.297.155-.42.155-.279 0-.376-.05-.376-.31v-2.912c0-.21.16-.287.583-.287v-.345H3.659l-.749 2.623h-.037l-.878-2.623zm9.229 0v.345c.149 0 .262.017.33.049a.4.4 0 0 1 .171.192 75 75 0 0 1 1.026 2.23v.752a.3.3 0 0 1-.035.149.23.23 0 0 1-.113.087.7.7 0 0 1-.203.04 4 4 0 0 1-.283.01v.349h2.288v-.351l-.14-.007a.7.7 0 0 1-.212-.043.24.24 0 0 1-.118-.09.26.26 0 0 1-.037-.148v-.848l.816-1.78c.063-.147.167-.367.263-.434.096-.068.213-.064.41-.066.3-.002.357.04.405.104.042.057.052.184.051.363v2.669q0 .147-.158.215a1.2 1.2 0 0 1-.403.064v.352h2.273v-.352a1.2 1.2 0 0 1-.403-.064q-.158-.068-.158-.215v-2.67c0-.178.009-.303.048-.358.047-.068.104-.108.404-.108.243 0 .338.006.413.066.12.096.21.31.275.457l.176.386h.294l-.067-1.345h-4.583v.349c.138 0 .272.02.315.113.058.125-.012.398-.167.786-.225.564-.389.956-.389.956H11.7l-.562-1.223q-.198-.43-.198-.53c0-.055.01-.105.33-.105v-.346zm8.309 0-1.029 3.099c-.08.24-.167.44-.273.57a.47.47 0 0 1-.321.175v.359h1.424v-.349c-.09.002-.325-.016-.416-.054-.096-.04-.212-.159-.081-.58L17 12.66h1.3l.123.38c.15.465.194.595.077.66-.103.056-.303.056-.387.056v.349h2.065v-.35c-.046-.002-.159.002-.26-.07-.12-.096-.18-.268-.212-.367a71 71 0 0 1-.874-2.836c-.066-.24-.118-.424-.155-.58zm-10.247.66h.027l.475 1.761h-1.08zm10.39 0h.027l.475 1.761h-1.08Z"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mazda.svg������������������������������������0000664�0000000�0000000�00000002645�14753064456�0024726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.999 12.876c-.036 0-.105-.046-.222-.26a7.5 7.5 0 0 0-1.975-2.353A8.3 8.3 0 0 0 7.7 9.065l-.345-.136c-1.012-.4-2.061-.813-3.035-1.377a9 9 0 0 1-.32-.19c.194-.34.42-.665.67-.962a6 6 0 0 1 1.253-1.131 7.1 7.1 0 0 1 1.618-.806c1.218-.434 2.677-.647 4.458-.649 1.783.002 3.241.215 4.459.65a7 7 0 0 1 1.619.805 6 6 0 0 1 1.253 1.13c.25.298.475.623.67.963q-.156.097-.32.192c-.976.564-2.023.977-3.037 1.376l-.345.136a8.3 8.3 0 0 0-2.1 1.198 7.5 7.5 0 0 0-1.975 2.354c-.117.213-.187.259-.224.259m0 7.072c-1.544-.002-2.798-.129-3.83-.387-1.013-.252-1.855-.64-2.576-1.188a5.8 5.8 0 0 1-1.392-1.537 7.6 7.6 0 0 1-.81-1.768 10.3 10.3 0 0 1-.467-2.983c0-.674.047-1.313.135-1.901 1.106.596 2.153.895 3.08 1.16l.215.06c1.29.371 2.314.857 3.135 1.488.475.368.89.793 1.23 1.264.369.508.663 1.088.877 1.725.096.289.2.468.403.468.207 0 .308-.18.405-.468a6.12 6.12 0 0 1 2.107-2.988c.82-.632 1.845-1.118 3.135-1.489l.216-.06c.926-.265 1.973-.564 3.078-1.16.09.589.136 1.227.136 1.9 0 .458-.046 1.664-.465 2.984a7.6 7.6 0 0 1-.809 1.768 5.8 5.8 0 0 1-1.396 1.537c-.723.548-1.565.936-2.574 1.188-1.035.258-2.288.385-3.833.387m9.692-14.556c-1.909-2.05-4.99-2.99-9.692-2.995-4.7.005-7.781.944-9.69 2.994C.89 6.913 0 9.018 0 11.874c0 1.579.39 5.6 3.564 7.676 1.9 1.242 4.354 2.046 8.435 2.052 4.083-.006 6.536-.81 8.437-2.052C23.609 17.474 24 13.452 24 11.874c0-2.848-.897-4.968-2.31-6.483Z"/></svg>�������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/maze.svg�������������������������������������0000664�0000000�0000000�00000001277�14753064456�0024566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.126 16.547a3.787 3.787 0 0 1 0-5.389l4.078-4.042a3.87 3.87 0 0 1 4.68-.584c.456.27.452.886.077 1.258s-.988.34-1.497.192a1.93 1.93 0 0 0-1.901.481l-4.078 4.042a1.894 1.894 0 0 0 0 2.695c.75.744 1.968.744 2.719 0l8.155-8.084a3.87 3.87 0 0 1 5.437 0l4.078 4.042a3.787 3.787 0 0 1 0 5.389 3.87 3.87 0 0 1-5.437 0l-1.36-1.347-1.698 1.684a3.87 3.87 0 0 1-4.68.583c-.457-.268-.453-.885-.078-1.257.376-.372.988-.34 1.498-.192.652.189 1.386.029 1.9-.481l1.748-1.733a1.865 1.865 0 0 1 2.621 0l1.408 1.396c.75.744 1.968.744 2.719 0a1.894 1.894 0 0 0 0-2.695l-4.078-4.042a1.935 1.935 0 0 0-2.719 0l-8.155 8.084a3.87 3.87 0 0 1-5.437 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mcafee.svg�����������������������������������0000664�0000000�0000000�00000000275�14753064456�0025047�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4.823 1.58 0v19.177L12 24l10.42-4.823V0zm6.172 11.626-6.143 2.843-6.144-2.843V6.69l6.144 2.842 6.143-2.842z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mcdonalds.svg��������������������������������0000664�0000000�0000000�00000000546�14753064456�0025574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.243 3.006c2.066 0 3.742 8.714 3.742 19.478H24c0-11.588-3.042-20.968-6.766-20.968-2.127 0-4.007 2.81-5.248 7.227-1.241-4.416-3.121-7.227-5.231-7.227C3.031 1.516 0 10.888 0 22.476h3.014c0-10.763 1.658-19.47 3.724-19.47s3.741 8.05 3.741 17.98h2.997c0-9.93 1.684-17.98 3.75-17.98Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mclaren.svg����������������������������������0000664�0000000�0000000�00000002240�14753064456�0025242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.062 11.713c3.305-2.139 7.748-2.208 2.564 1.248l.082-.11c1.467-2.016-1.522-1.563-2.578-1.166zM6.967 13.236h1.399v.549H6.747c-.686 0-.987-.206-.987-.754v-.123c0-.466.274-.768.96-.768h1.646v.549H6.967a.25.25 0 0 0-.247.247v.069a.246.246 0 0 0 .247.231M9.6 11.864v1.371h.823v.549h-1.92v-1.92zm-5.198.247c.191-.154.427-.241.672-.247h.549v1.92H4.525v-.96l-1.056.96H2.468v-.96l-1.221.96H0l2.18-1.646c.206-.151.343-.274.699-.274h.686v.96zm9.312.206a.316.316 0 0 1 .343-.316h1.303v.549h-.686v1.234h-.96zm6.431-.316c.823 0 1.111.178 1.111.782v1.001h-.96v-.686a.41.41 0 0 0-.411-.411h-.411v1.097h-.96v-1.783zm-7.487 0c.631 0 .919.261.919.699v.411c0 .507-.288.672-.987.672h-1.083c-.398 0-.686-.041-.837-.178a.5.5 0 0 1-.11-.315v-.069c0-.274.165-.535.686-.535h1.234c0-.123.014-.137-.137-.137h-1.646V12zm-.179 1.166v-.069h-.754a.07.07 0 0 0 0 .138h.686a.07.07 0 0 0 .068-.069m5.02-1.166c.727 0 .878.219.878.521v.069c0 .329-.261.507-.686.507h-1.234c0 .123.123.137.274.137h1.508v.549H16.36c-.59 0-.864-.247-.864-.699v-.315c0-.521.288-.768.946-.768h1.057zm-.151.686a.07.07 0 0 0 0-.138h-.823a.07.07 0 0 0-.069.069v.069z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mdbook.svg�����������������������������������0000664�0000000�0000000�00000003400�14753064456�0025073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.77 5.343c.023.337 0 .613-.073.817l-4.314 14.227c-.072.252-.24.445-.504.6a1.7 1.7 0 0 1-.805.23H3.772c-1.154 0-1.839-.337-2.079-1.01-.096-.264-.096-.469.012-.625.108-.144.288-.216.553-.216h12.52c.89 0 1.514-.168 1.85-.493s.686-1.07 1.034-2.21l3.954-13.05c.216-.71.12-1.334-.265-1.875-.384-.54-.937-.817-1.646-.817H8.735c-.12 0-.373.048-.734.132l.012-.048A2.5 2.5 0 0 0 7.33.933a1 1 0 0 0-.517.168 1.8 1.8 0 0 0-.385.337c-.096.12-.18.264-.276.456a6 6 0 0 0-.228.517 8 8 0 0 1-.217.505c-.084.18-.156.324-.24.444-.06.073-.144.18-.24.3-.096.121-.193.241-.265.337a.8.8 0 0 0-.132.265c-.024.084-.012.216.024.384s.048.289.048.373c-.036.36-.168.829-.396 1.394-.229.564-.433.973-.613 1.213a5 5 0 0 1-.312.325c-.169.168-.277.312-.313.444-.036.048-.036.18-.012.409.036.216.048.372.036.456q-.054.487-.36 1.298a9.5 9.5 0 0 1-.601 1.322c-.024.06-.108.168-.24.336-.133.168-.217.3-.24.409-.025.072-.013.216.011.408.024.193.024.337-.012.433-.072.36-.216.805-.432 1.322-.217.516-.433.949-.65 1.321-.06.097-.131.205-.24.337-.096.132-.18.24-.24.336a.9.9 0 0 0-.12.3.53.53 0 0 0 .048.277c.036.132.048.228.048.313-.012.132-.024.312-.06.528-.024.216-.048.349-.048.385-.216.576-.204 1.19.024 1.826.264.745.745 1.382 1.43 1.899.685.516 1.406.769 2.139.769H17.05c.625 0 1.214-.205 1.767-.625s.925-.937 1.105-1.55l3.966-13.05c.216-.696.12-1.31-.265-1.862-.204-.3-.48-.505-.853-.649M7.16 15.677l1.707-5.143h1.297c.457 0 3.46-.204 3.052 2.103s-2.259 3.028-4.422 3.052-1.634-.012-1.634-.012m2.283-.721c.565-.012 2.271-.349 2.656-2.055.384-1.706-1.382-1.61-1.382-1.61h-1.07l-1.225 3.665c.012.012.469.012 1.021 0m-.396-5.78 1.646-5.107h1.178l.096 4.086 2.835-4.086h1.19l-1.634 5.107h-.853l1.502-4.253-2.944 4.253h-.817l-.096-4.205-1.298 4.205z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mdnwebdocs.svg�������������������������������0000664�0000000�0000000�00000000303�14753064456�0025744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.538 1.1-6.745 21.8h-2.77L18.77 1.1ZM24 1.1v21.8h-2.462V1.1Zm-12 0v21.8H9.538V1.1Zm-2.462 0L2.77 22.9H0L6.746 1.1Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mdx.svg��������������������������������������0000664�0000000�0000000�00000000777�14753064456�0024426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.79 7.12h22.42c.436 0 .79.355.79.792v8.176a.79.79 0 0 1-.79.79H.79a.79.79 0 0 1-.79-.79V7.912a.79.79 0 0 1 .79-.791zm2.507 7.605v-3.122l1.89 1.89L7.12 11.56v3.122h1.055v-5.67l-2.99 2.99L2.24 9.056v5.67h1.055v-.001Zm8.44-1.845-1.474-1.473-.746.746 2.747 2.747 2.745-2.747-.746-.746-1.473 1.473v-4h-1.054v4Zm10.041.987-2.175-2.175 2.22-2.22-.746-.746-2.22 2.22-2.22-2.22-.747.746 2.22 2.22-2.176 2.177.746.746 2.177-2.177 2.176 2.175z"/></svg>�mkdocs-material-9.6.4/material/templates/.icons/simple/mediafire.svg��������������������������������0000664�0000000�0000000�00000001202�14753064456�0025543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.13 7.171c-.496.42 2.943-.458 2.6 1.239-.332 1.633-3.62-.343-7.223-.176-1.594.073-3.054.53-3.985 1.668.973-1.108 2.901-.844 2.398-.081-1.172 1.776-3.376.497-4.92 3.975.185-.4.685-1.196 2.843-1.526 1.586-.242 4.214-.016 5.054 1.297.924 1.444-3.759 1.28-1.167 1.573 3.593.406 6.299 3.31 9.813 3.311 4.55 0 7.422-2.324 7.457-6.146.063-6.923-9.101-8.318-12.87-5.134m6.768 7.554c-1.195-.033-2.404-.512-3.364-.98-2.365-1.155-3.338-1.553-3.338-1.608 0-.067 1.42.484 3.813-.789 1.383-.735 1.432-1.377 2.89-1.505 1.73-.152 2.962 1.13 2.962 2.478s-1.222 2.453-2.963 2.404"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mediamarkt.svg�������������������������������0000664�0000000�0000000�00000004475�14753064456�0025753�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.829 22.075c-.064.192 2.63-2.76 2.63-2.76-.256-2.759-1.54-5.775-1.54-5.775-2.117-4.428-6.801-5.904-9.56-3.53-.129.065-.322.129-.45.193 2.118-2.952 6.93-2.695 10.075.963 0 0 1.412 1.732 2.438 4.363.257-.898.45-1.86.514-2.823-1.669-2.31-3.594-3.658-3.594-3.658-3.978-2.695-8.663-1.732-9.946 1.604-.129.193-.257.385-.321.578.385-3.594 4.684-5.84 9.176-4.3 0 0 2.182.835 4.428 2.631 0-.128-.064-.256-.128-.449-.257-.962-.578-1.86-1.027-2.695-2.567-1.155-4.877-1.347-4.877-1.347-4.877-.321-8.535 3.08-7.765 6.802v.513c-1.668-3.337.963-7.636 5.776-8.535 0 0 2.246-.385 5.005 0a11.8 11.8 0 0 0-2.374-1.989c-2.76.32-4.813 1.283-4.813 1.283-4.428 2.182-5.84 7.06-3.401 9.819.064.192.192.32.32.449-3.08-2.054-2.887-7.123.77-10.396 0 0 1.733-1.476 4.3-2.503C14.375.193 13.283 0 12.193 0 10.01 1.668 8.79 3.465 8.79 3.465c-2.759 4.171-1.604 9.113 1.99 10.268h.064c.128.064.192.128.32.192-3.657-.192-6.031-4.684-4.427-9.369 0 0 .77-2.053 2.374-4.171-.962.257-1.796.578-2.63 1.09-1.027 2.568-1.284 4.75-1.284 4.75-.321 4.94 3.016 8.599 6.61 7.893H12c.128 0 .257 0 .385-.065-3.273 1.669-7.444-1.026-8.406-5.903 0 0-.385-2.182 0-4.941-.77.77-1.476 1.604-2.054 2.63.321 2.696 1.284 4.685 1.284 4.685 2.181 4.492 6.994 5.968 9.754 3.401l.064-.064c.128-.064.256-.128.32-.257-1.989 3.145-6.994 3.016-10.203-.77 0 0-1.604-2.117-2.438-4.556 0-.064-.642 3.209-.642 3.209 1.604 1.925 3.658 3.529 3.658 3.529 3.979 2.695 8.663 1.668 9.946-1.668a1.4 1.4 0 0 0 .321-.514c-.385 3.594-4.684 5.84-9.176 4.236 0 0-1.99-.77-4.107-2.439 0 .064.064.193.064.257a15 15 0 0 0 1.091 2.823c2.438 1.027 4.62 1.22 4.62 1.22 4.877.32 8.47-3.08 7.765-6.674v-.514c1.54 3.337-1.09 7.508-5.84 8.47 0 0-2.117.386-4.748 0a11.2 11.2 0 0 0 2.117 1.798c2.76-.321 4.813-1.284 4.813-1.284 4.3-2.117 5.776-6.802 3.53-9.625-.065-.193-.193-.385-.321-.578 2.952 2.118 2.76 7.059-.899 10.267 0 0-1.796 1.476-4.427 2.567 1.026.321 2.117.578 3.208.642 2.246-1.733 3.594-3.658 3.594-3.658 2.76-4.17 1.604-9.112-1.925-10.267a1.04 1.04 0 0 0-.45-.257c3.722.193 6.032 4.685 4.428 9.37 0 0-.77 2.245-2.567 4.491.129 0 .257-.064.45-.128a17.6 17.6 0 0 0 2.566-.963c1.091-2.63 1.284-4.94 1.284-4.94.32-4.878-2.888-8.472-6.417-7.958-.129 0-.321-.064-.45-.064h-.128c3.273-1.412 7.316 1.219 8.214 5.968 0 0 .578 2.246.128 4.94-.064.386-.256.963-.577 1.54z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mediapipe.svg��������������������������������0000664�0000000�0000000�00000001551�14753064456�0025562�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.182 0a2.18 2.18 0 0 0-2.18 2.114L0 2.182v6.545a2.182 2.182 0 0 0 4.364 0V2.182A2.18 2.18 0 0 0 2.182 0m6.545 0a2.18 2.18 0 0 0-2.18 2.114l-.002.068v13.09a2.182 2.182 0 0 0 4.364 0V2.183A2.18 2.18 0 0 0 8.727 0m6.546 0a2.18 2.18 0 0 0-2.182 2.182 2.18 2.18 0 0 0 2.182 2.182 2.18 2.18 0 0 0 2.182-2.182A2.18 2.18 0 0 0 15.273 0m6.545 0a2.18 2.18 0 0 0-2.18 2.114l-.002.068v19.636a2.182 2.182 0 0 0 4.364 0V2.182A2.18 2.18 0 0 0 21.818 0m-6.545 6.545c-1.183 0-2.145.94-2.181 2.114l-.001.068v13.091a2.182 2.182 0 0 0 4.364 0V8.728a2.18 2.18 0 0 0-2.182-2.183M2.182 13.091a2.18 2.18 0 0 0-2.18 2.114L0 15.273v6.545a2.182 2.182 0 0 0 4.364 0v-6.545a2.18 2.18 0 0 0-2.182-2.182m6.545 6.545a2.18 2.18 0 0 0-2.182 2.182A2.18 2.18 0 0 0 8.727 24a2.18 2.18 0 0 0 2.182-2.182 2.18 2.18 0 0 0-2.182-2.182"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mediatek.svg���������������������������������0000664�0000000�0000000�00000001762�14753064456�0025414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.863 8.996c-.296 0-.664.21-.815.467L.064 14.537c-.15.257-.029.467.267.467h19.805c.297 0 .665-.21.816-.467l2.983-5.074c.15-.257.03-.467-.268-.467zm3.41 1.975h1.09l-.232.402h-.776c-.238 0-.312.093-.312.338v.807h1.37l-.233.402H6.502v-1.197c0-.589.307-.752.771-.752m1.444 0h.937c.703 0 1.002.27 1.002.959 0 .73-.301.99-.976.99h-.963zm7.832 0h1.09l-.233.402h-.775c-.239 0-.313.093-.313.338-.004.264-.002.539-.002.807h1.372l-.233.402h-1.678v-1.197c0-.589.308-.752.772-.752m-11.567.004v.986l.569-.984.65-.002v1.941h-.547v-1.191l-.672 1.191h-.546v-1.191l-.688 1.19h-.535l1.121-1.938zm5.98 0h.546v1.941h-.545zm1.798 0h.781v1.941h-.553v-1.383l-.797 1.383h-.552zm1.256 0h1.714l-.232.404h-.504v1.537h-.533v-1.537h-.68zm3.873 0h.547v1.941h-.547zm1.345 0h.545l-.558.968-.002.004h.002l.558.969h-.545l-.56-.97zm-9.994.398v1.145h.297c.432 0 .567-.104.567-.586 0-.483-.135-.559-.567-.559zm-1.847.416h.87l-.185.318h-.86zm9.255 0h.872l-.186.318h-.86Z"/></svg>��������������mkdocs-material-9.6.4/material/templates/.icons/simple/medibangpaint.svg����������������������������0000664�0000000�0000000�00000003037�14753064456�0026430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.516 0H6.478L4.417.164a5.16 5.16 0 0 0-3.184 1.827 5.5 5.5 0 0 0-.981 2.06C-.068 5.336.015 6.992.015 8.548v7.284c0 2.377.038 4.504 1.007 5.878a5.15 5.15 0 0 0 2.435 1.873c1.232.332 2.509.467 3.783.401h6.967c.622 0 1.25.007 1.87.007 2.149 0 4.19-.092 5.504-.921a5.07 5.07 0 0 0 2.013-2.53c.459-1.308.398-3.127.398-4.871V9.415c0-3.264.115-5.748-1.335-7.565S18.727 0 15.516 0m0 .327a23 23 0 0 1 4.167.237 4.32 4.32 0 0 1 2.718 1.49 5.65 5.65 0 0 1 1.108 2.823c.143 1.284.195 2.576.156 3.867v7.475c.005 1.52.011 3.092-.382 4.212a4.72 4.72 0 0 1-1.878 2.36 5.75 5.75 0 0 1-2.307.724 23.5 23.5 0 0 1-3.021.147l-1.87-.008H7.241a12 12 0 0 1-3.675-.381 4.83 4.83 0 0 1-2.276-1.754 5.3 5.3 0 0 1-.81-2.414 26 26 0 0 1-.137-3.272V8.548c0-.268 0-.545-.005-.812A15.6 15.6 0 0 1 .567 4.13a5.2 5.2 0 0 1 .927-1.94A4.83 4.83 0 0 1 4.464.491L5.852.382l.639-.055zm2.147 8.845-.174-.286-.26-.357a7 7 0 0 0-.267-.331c-.029-.034-.055-.061-.085-.094.362 7.124-6.189 10.879-10.683 7.917a6.7 6.7 0 0 0 5.716 3.224c3.665 0 6.68-3.015 6.68-6.679 0-1.194-.32-2.366-.927-3.394M5.674 14.978c.081.207.636.521.795.626 4.195 2.764 10.247-.825 9.908-7.474-.007-.148-.006-.538-.089-.61a7.7 7.7 0 0 0-1.44-.995c-1.103 3.961-6.324 6.303-9.404 4.362a6.6 6.6 0 0 0 .23 4.091m-.075-4.598q.05.05.111.084c1.117.704 2.547.769 3.922.385 2.116-.591 4.119-2.248 4.735-4.458.014-.05.039-.156.028-.165a3.4 3.4 0 0 1-.341-.296c-.679-.715-.826-.975-.382-2.603-3.168.512-6.771 4.01-7.534 5.87q-.003.011-.005.022a6.7 6.7 0 0 0-.534 1.161"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/medium.svg�����������������������������������0000664�0000000�0000000�00000001603�14753064456�0025103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.21 0A4.2 4.2 0 0 0 0 4.21v15.58A4.2 4.2 0 0 0 4.21 24h15.58A4.2 4.2 0 0 0 24 19.79v-1.093a5 5 0 0 1-.422.02c-2.577 0-4.027-2.146-4.09-4.832a8 8 0 0 1 .022-.708c.093-1.186.475-2.241 1.105-3.022a3.9 3.9 0 0 1 1.395-1.1c.468-.237 1.127-.367 1.664-.367h.023q.151 0 .303.01V4.211A4.2 4.2 0 0 0 19.79 0Zm.198 5.583h4.165l3.588 8.435 3.59-8.435h3.864v.146l-.019.004c-.705.16-1.063.397-1.063 1.254h-.003l.003 10.274c.06.676.424.885 1.063 1.03l.02.004v.145h-4.923v-.145l.019-.005c.639-.144.994-.353 1.054-1.03V7.267l-4.745 11.15h-.261L6.15 7.569v9.445c0 .857.358 1.094 1.063 1.253l.02.004v.147H4.405v-.147l.019-.004c.705-.16 1.065-.397 1.065-1.253V6.987c0-.857-.358-1.094-1.064-1.254l-.018-.004zm19.25 3.668c-1.086.023-1.733 1.323-1.813 3.124H24V9.298a1.4 1.4 0 0 0-.342-.047m-1.862 3.632c-.1 1.756.86 3.239 2.204 3.634v-3.634z"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/medusa.svg�����������������������������������0000664�0000000�0000000�00000000670�14753064456�0025104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.325 3.896 14.891.769a5.73 5.73 0 0 0-5.734 0L3.698 3.896A5.78 5.78 0 0 0 .844 8.848v6.279a5.75 5.75 0 0 0 2.854 4.952l5.434 3.152a5.73 5.73 0 0 0 5.734 0l5.434-3.152a5.69 5.69 0 0 0 2.855-4.952V8.848c.05-2.026-1.052-3.927-2.83-4.952m-8.313 13.682A5.586 5.586 0 0 1 6.428 12a5.586 5.586 0 0 1 5.584-5.578c3.08 0 5.609 2.501 5.609 5.578s-2.504 5.578-5.61 5.578"/></svg>������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/meetup.svg�����������������������������������0000664�0000000�0000000�00000004440�14753064456�0025124�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.98.555a.5.5 0 0 0-.105.011.53.53 0 1 0 .222 1.04.533.533 0 0 0 .409-.633.53.53 0 0 0-.526-.418m6.455.638a1 1 0 0 0-.514.143.99.99 0 1 0 1.02 1.699.99.99 0 0 0 .34-1.36.99.99 0 0 0-.846-.482m-3.03 2.236a5.03 5.03 0 0 0-4.668 3.248 3.3 3.3 0 0 0-1.46.551 3.374 3.374 0 0 0-.94 4.562 3.634 3.634 0 0 0-.605 4.649 3.6 3.6 0 0 0 2.465 1.597c.018.732.238 1.466.686 2.114a3.9 3.9 0 0 0 5.423.992c.068-.047.12-.106.184-.157.987.881 2.47 1.026 3.607.24a2.9 2.9 0 0 0 1.162-1.69 4.24 4.24 0 0 0 2.584-.739 4.274 4.274 0 0 0 1.19-5.789 2.466 2.466 0 0 0 .433-3.308 2.45 2.45 0 0 0-1.316-.934 4.44 4.44 0 0 0-.776-2.873 4.47 4.47 0 0 0-5.195-1.656 5.1 5.1 0 0 0-2.773-.807zm-5.603.817a.76.76 0 0 0-.423.135.758.758 0 1 0 .863 1.248.757.757 0 0 0 .193-1.055.76.76 0 0 0-.633-.328m15.994 2.37a.84.84 0 0 0-.47.151.845.845 0 1 0 1.175.215.85.85 0 0 0-.705-.365zm-8.15 1.028q.095 0 .182.014a.9.9 0 0 1 .45.187c.169.134.273.241.432.393.24.227.414.089.534.02.208-.122.369-.219.984-.208.633.011 1.363.237 1.514 1.317.168 1.199-1.966 4.289-1.817 5.722.106 1.01 1.815.299 1.96 1.22.186 1.198-2.136.753-2.667.493-.832-.408-1.337-1.34-1.12-2.26.16-.688 1.7-3.498 1.757-3.93.059-.44-.177-.476-.324-.484-.19-.01-.34.081-.526.362-.169.255-2.082 4.085-2.248 4.398-.296.56-.67.694-1.044.674-.548-.029-.798-.32-.72-.848.047-.31 1.26-3.049 1.323-3.476.039-.265-.013-.546-.275-.68-.263-.135-.572.07-.664.227-.128.215-1.848 4.706-2.032 5.038-.316.576-.65.76-1.152.784-1.186.056-2.065-.92-1.678-2.116.173-.532 1.316-4.571 1.895-5.599.389-.69 1.468-1.216 2.217-.892.387.167.925.437 1.084.507.366.163.759-.277.913-.412s.302-.276.49-.357c.142-.06.343-.095.532-.094m10.88 2.057a.5.5 0 0 0-.093.011.467.467 0 0 0-.36.555.47.47 0 0 0 .557.36.47.47 0 0 0 .36-.557.47.47 0 0 0-.464-.37zm-22.518.81a1 1 0 0 0-.832.434 1 1 0 1 0 1.39-.258 1 1 0 0 0-.558-.176m21.294 2.094a.6.6 0 0 0-.127.013.627.627 0 0 0-.48.746.63.63 0 0 0 .746.483.63.63 0 0 0 .482-.746.63.63 0 0 0-.621-.496m-18.24 6.097a.5.5 0 0 0-.092.012.464.464 0 1 0 .195.908.464.464 0 0 0 .356-.553.465.465 0 0 0-.459-.367m13.675 1.55a1.04 1.04 0 0 0-.583.187 1.047 1.047 0 1 0 1.456.265 1.04 1.04 0 0 0-.873-.451zM11.4 22.154a.64.64 0 0 0-.36.115.646.646 0 0 0-.164.899.646.646 0 0 0 .899.164.646.646 0 0 0 .164-.898.65.65 0 0 0-.54-.28z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mega.svg�������������������������������������0000664�0000000�0000000�00000001012�14753064456�0024526�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0m6.23 16.244a.37.37 0 0 1-.373.372H16.29a.37.37 0 0 1-.372-.372v-4.828c0-.04-.046-.06-.08-.033l-3.32 3.32a.74.74 0 0 1-1.043 0l-3.32-3.32c-.027-.027-.08-.007-.08.033v4.828a.37.37 0 0 1-.372.372H6.136a.37.37 0 0 1-.372-.372V7.757c0-.206.166-.372.372-.372h1.076a.75.75 0 0 1 .525.22l4.13 4.13a.18.18 0 0 0 .26 0l4.13-4.13c.14-.14.325-.22.525-.22h1.075c.206 0 .372.166.372.372z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/meilisearch.svg������������������������������0000664�0000000�0000000�00000000565�14753064456�0026116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6.505 18.998 4.434-11.345a4.17 4.17 0 0 1 3.882-2.651h2.674l-4.434 11.345a4.17 4.17 0 0 1-3.883 2.651zm6.505 0 4.434-11.345a4.17 4.17 0 0 1 3.883-2.651H24l-4.434 11.345a4.17 4.17 0 0 1-3.882 2.651zm-13.01 0L4.434 7.653a4.17 4.17 0 0 1 3.882-2.651h2.674L6.556 16.347a4.17 4.17 0 0 1-3.883 2.651z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/meituan.svg����������������������������������0000664�0000000�0000000�00000002206�14753064456�0025265�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.923 0c-2.408 0-3.28.25-4.16.721A4.906 4.907 0 0 0 .722 2.763C.25 3.643 0 4.516 0 6.923v10.154c0 2.407.25 3.28.72 4.16a4.9 4.9 0 0 0 2.042 2.042c.88.47 1.752.721 4.16.721h10.156c2.407 0 3.28-.25 4.16-.721a4.906 4.907 0 0 0 2.04-2.042c.471-.88.722-1.753.722-4.16V6.923c0-2.407-.25-3.28-.722-4.16A4.906 4.907 0 0 0 21.238.72C20.357.251 19.484 0 17.077 0ZM4.17 7.51h1.084c.04.24.07.488.11.737h3.47c.05-.25.08-.497.1-.736h1.105a10 10 0 0 1-.09.736h1.562v.866H7.62v.696h3.642v.855h-3.64v.667h3.64v.854h-3.64v.816h3.89v.865H7.88c.775.935 2.218 1.532 3.78 1.651l-.538.936c-1.442-.17-3.103-.846-4.028-2.04-.856 1.194-2.487 1.92-4.525 2.07l.318-1.005c1.382-.02 2.814-.736 3.431-1.612h-3.62v-.865h3.86v-.816h-3.64v-.854h3.64v-.667h-3.64v-.855h3.64v-.697H2.7v-.866h1.56zm8.603.182h7.976c.358 0 .567.198.567.547v8.146H13.33c-.358 0-.557-.199-.557-.547zm1.044.885V15.5h6.455V8.577Zm3.999.476h1.024v.756h.975v.835h-.975V13c0 .806-.1 1.402-.318 2.02h-1.113c.338-.717.408-1.224.408-1.99v-2.387h-.935c-.14 1.541-.736 3.451-1.363 4.376h-1.134c.607-.855 1.303-2.526 1.472-4.376h-1.512v-.835h3.472z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/meizu.svg������������������������������������0000664�0000000�0000000�00000001057�14753064456�0024757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.045 18.818h3.546A.41.41 0 0 0 24 18.41v-3.545a.41.41 0 0 0-.41-.41h-3.545a.41.41 0 0 0-.409.41v3.545c0 .226.184.41.41.41zM13.8 12.11a.095.095 0 0 1-.163-.068V5.591a.41.41 0 0 0-.409-.41H10.59a.55.55 0 0 0-.385.16L.16 15.387a.55.55 0 0 0-.16.385v2.638c0 .226.183.41.41.41h2.637a.55.55 0 0 0 .385-.16l6.769-6.769a.096.096 0 0 1 .163.068v6.451c0 .226.183.41.409.41h2.638a.55.55 0 0 0 .385-.16L23.84 8.613A.55.55 0 0 0 24 8.23V5.59a.41.41 0 0 0-.41-.41h-2.637a.55.55 0 0 0-.386.16z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mendeley.svg���������������������������������0000664�0000000�0000000�00000002157�14753064456�0025432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.004 9.168h.019a2.355 2.355 0 0 1 1.504 4.166 1.8 1.8 0 0 1-.857.452 2.4 2.4 0 0 1-.648.092h-.02q-.337-.002-.648-.092a1.8 1.8 0 0 1-.856-.452 2.35 2.35 0 0 1-.851-1.81 2.36 2.36 0 0 1 2.357-2.356M2.03 18.642c1.265.159 2.388-.762 2.507-2.057a2.44 2.44 0 0 0-.214-1.236c-1.772-3.889 6.973-3.978 5.495-.308l-.01.016c-.699 1.118-.32 2.57.841 3.24.427.249.9.351 1.363.331.462.02.935-.082 1.362-.33 1.161-.672 1.54-2.123.841-3.24l-.01-.017c-1.477-3.67 7.269-3.58 5.494.308a2.45 2.45 0 0 0-.213 1.236c.12 1.295 1.243 2.216 2.509 2.057a2.35 2.35 0 0 0 1.424-.737s.589-.488.58-1.733c-.008-1.016-.58-1.578-.58-1.578a2.21 2.21 0 0 0-1.814-.646c-1.623-.036-1.864-1.307-1.406-3.703.169-.425.242-.88.227-1.335a3.42 3.42 0 0 0-2.13-3.296q-.06-.024-.119-.046a2 2 0 0 0-.134-.046 3.416 3.416 0 0 0-4.004 1.453c-.817.897-1.187 1.441-2.027 1.441-.8 0-1.211-.544-2.027-1.441a3.41 3.41 0 0 0-4.138-1.408l-.12.046A3.42 3.42 0 0 0 3.6 8.91c-.016.455.058.91.225 1.335.458 2.397.218 3.667-1.404 3.703-.795-.085-1.389.243-1.988.843-.602.6-.552 2.206 0 2.907.4.51.942.863 1.598.945"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mentorcruise.svg�����������������������������0000664�0000000�0000000�00000000462�14753064456�0026344�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m-.387 3.791v8.08H6.947q2.335-4.04 4.666-8.08m.774 0q2.331 4.04 4.666 8.08h-4.666Zm-9.244 8.854h17.714l-1.68 2.91H4.823Zm2.125 3.683h13.464l-1.68 2.908H6.948Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mercadopago.svg������������������������������0000664�0000000�0000000�00000007623�14753064456�0026114�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.115 16.479a.93.927 0 0 1-.939-.886c-.002-.042-.006-.155-.103-.155-.04 0-.074.023-.113.059-.112.103-.254.206-.46.206a.816.814 0 0 1-.305-.066c-.535-.214-.542-.578-.521-.725.006-.038.007-.08-.02-.11l-.032-.03h-.034c-.027 0-.055.012-.093.039a.788.786 0 0 1-.454.16.7.699 0 0 1-.253-.05c-.708-.27-.65-.928-.617-1.126q.008-.062-.03-.092l-.05-.04-.047.043a.728.726 0 0 1-.505.203.73.728 0 0 1-.732-.725c0-.4.328-.722.732-.722.364 0 .675.27.721.63l.026.195.11-.165c.01-.018.307-.46.852-.46.102 0 .21.016.316.05.434.13.508.52.519.68.008.094.075.1.09.1.037 0 .064-.024.083-.045a.746.744 0 0 1 .54-.225q.193 0 .402.09c.69.293.379 1.158.374 1.167-.058.144-.061.207-.005.244l.027.013h.02c.03 0 .07-.014.134-.035.093-.032.235-.08.367-.08a.944.942 0 0 1 .94.93.936.934 0 0 1-.94.928m7.302-4.171c-1.138-.98-3.768-3.24-4.481-3.77-.406-.302-.685-.462-.928-.533a1.559 1.554 0 0 0-.456-.07q-.274 0-.58.095c-.46.145-.918.505-1.362.854l-.023.018c-.414.324-.84.66-1.164.73a1.986 1.98 0 0 1-.43.049c-.362 0-.687-.104-.81-.258q-.03-.037.04-.125l.008-.008 1-1.067c.783-.774 1.525-1.506 3.23-1.545h.085c1.062 0 2.12.469 2.24.524a7 7 0 0 0 3.056.724c1.076 0 2.188-.263 3.354-.795a9.135 9.11 0 0 0-.405-.317c-1.025.44-2.003.66-2.946.66-.962 0-1.925-.229-2.858-.68-.05-.022-1.22-.567-2.44-.57q-.049 0-.096.002c-1.434.033-2.24.536-2.782.976-.528.013-.982.138-1.388.25-.361.1-.673.186-.979.185-.125 0-.35-.01-.37-.012-.35-.01-2.115-.437-3.518-.962q-.213.15-.415.31c1.466.593 3.25 1.053 3.812 1.089.157.01.323.027.491.027.372 0 .744-.103 1.104-.203.213-.059.446-.123.692-.17l-.196.194-1.017 1.087c-.08.08-.254.294-.14.557a.705.703 0 0 0 .268.292c.243.162.677.27 1.08.271q.23 0 .43-.044c.427-.095.874-.448 1.349-.82.377-.296.913-.672 1.323-.782a1.494 1.49 0 0 1 .37-.05.611.61 0 0 1 .095.005c.27.034.533.125 1.003.472.835.62 4.531 3.815 4.566 3.846.002.002.238.203.22.537-.007.186-.11.352-.294.466a.902.9 0 0 1-.484.15.804.802 0 0 1-.428-.124c-.014-.01-1.28-1.157-1.746-1.543-.074-.06-.146-.115-.22-.115a.12.12 0 0 0-.096.045c-.073.09.01.212.105.294l1.48 1.47c.002 0 .184.17.204.395q.017.367-.35.606a.957.955 0 0 1-.526.171.766.764 0 0 1-.42-.127l-.214-.206a21.035 20.978 0 0 0-1.08-1.009c-.072-.058-.148-.112-.221-.112a.13.13 0 0 0-.094.038c-.033.037-.056.103.028.212a.698.696 0 0 0 .075.083l1.078 1.198c.01.01.222.26.024.511l-.038.048a1.18 1.178 0 0 1-.1.096c-.184.15-.43.164-.527.164a.8.798 0 0 1-.147-.012q-.16-.027-.212-.089l-.013-.013c-.06-.06-.602-.609-1.054-.98-.059-.05-.133-.11-.21-.11a.13.13 0 0 0-.096.042c-.09.096.044.24.1.293l.92 1.003a.2.2 0 0 1-.033.062c-.033.044-.144.155-.479.196a.91.907 0 0 1-.122.007c-.345 0-.712-.164-.902-.264a1.343 1.34 0 0 0 .13-.576 1.368 1.365 0 0 0-1.42-1.357c.024-.342-.025-.99-.697-1.274a1.455 1.452 0 0 0-.575-.125q-.22 0-.42.075a1.153 1.15 0 0 0-.671-.564 1.52 1.515 0 0 0-.494-.085q-.421 0-.767.242a1.168 1.165 0 0 0-.903-.43 1.173 1.17 0 0 0-.82.335c-.287-.217-1.425-.93-4.467-1.613a17.39 17.344 0 0 1-.692-.189 4.822 4.82 0 0 0-.077.494l.67.157c3.108.682 4.136 1.391 4.309 1.525a1.145 1.142 0 0 0-.09.442 1.16 1.158 0 0 0 1.378 1.132c.096.467.406.821.879 1.003a1.165 1.162 0 0 0 .415.08q.135 0 .266-.034c.086.22.282.493.722.668a1.233 1.23 0 0 0 .457.094q.183 0 .355-.063a1.373 1.37 0 0 0 1.269.841c.37.002.726-.147.985-.41.221.121.688.341 1.163.341q.09.001.175-.01c.47-.059.689-.24.789-.382a.571.57 0 0 0 .048-.078c.11.032.234.058.373.058.255 0 .501-.086.75-.265.244-.174.418-.424.444-.637v-.01q.125.026.251.026c.265 0 .527-.082.773-.242.48-.31.562-.715.554-.98a1.28 1.279 0 0 0 .978-.194 1.04 1.04 0 0 0 .502-.808 1.088 1.085 0 0 0-.16-.653c.804-.342 2.636-1.003 4.795-1.483a4.734 4.721 0 0 0-.067-.492 27.742 27.667 0 0 0-5.049 1.62zm5.123-.763c0 4.027-5.166 7.293-11.537 7.293S.465 15.572.465 11.545 5.63 4.252 12.004 4.252c6.371 0 11.537 3.265 11.537 7.293zm.46.004c0-4.272-5.374-7.755-12-7.755S.002 7.277.002 11.55L0 12.004c0 4.533 4.695 8.203 11.999 8.203 7.347 0 12-3.67 12-8.204z"/></svg>�������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mercedes.svg���������������������������������0000664�0000000�0000000�00000000622�14753064456�0025412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c6.623 0 12 5.377 12 12s-5.377 12-12 12S0 18.623 0 12 5.377 0 12 0M3.245 17.539A10.36 10.36 0 0 0 12 22.36c3.681 0 6.917-1.924 8.755-4.821L12 14.203zm10.663-6.641 7.267 5.915A10.3 10.3 0 0 0 22.36 12c0-5.577-4.417-10.131-9.94-10.352zm-2.328-9.25C6.057 1.869 1.64 6.423 1.64 12c0 1.737.428 3.374 1.185 4.813l7.267-5.915z"/></svg>��������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/merck.svg������������������������������������0000664�0000000�0000000�00000000321�14753064456�0024720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 6a6 6 0 0 1 12 0zm0 12a6 6 0 0 1 6-6 6 6 0 0 1-6-6 6 6 0 0 0 0 12 6 6 0 1 0 12 0zm6-6a6 6 0 0 1 6 6 6 6 0 1 0 0-12 6 6 0 0 1-6 6"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mercurial.svg��������������������������������0000664�0000000�0000000�00000006425�14753064456�0025615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.822.431A10 10 0 0 0 12.4.51c-7.083.876-7.198 8.33-.956 10.101 7.07 1.07 2.813 6.405 2.209 9.095-.542 2.41 5.714 2.807 8.608-6.769C23.997 7.932 20.7.538 13.82.431m6.165 2.096c-.022.015 0 .066.103.174 1.01 1.067 1.488 1.692 2.469 3.871 2.19 4.87-2.165 12.59-4.996 14.195-1.133.643-2.568.708-3.227.65-.414-.036-.818.438-.554.866.993 1.611 3.541.72 5.72-.832 2.174-1.55 3.659-5.133 4.09-6.717.618-2.277.703-5.907-.96-8.96-.984-1.807-1.944-2.917-2.49-3.204-.07-.036-.134-.058-.155-.043m-13.784.955c-1.947 3.188-.283 7.656 4.773 9.09 6.636 1.885 1.371 6.093 1.525 8.897.154 2.802 5.77 3.82 10.199-3.542.053-.089.1-.182.15-.272-4.426 7.338-10.03 6.321-10.184 3.521-.154-2.803 5.111-7.013-1.526-8.897-4.902-1.391-6.613-5.634-4.937-8.797m-.23 2.906c-.068.054-.036.25.001.486.106.66.52 1.824 1.335 2.89 1.106 1.446 3.018 2.06 4.5 2.5 1.9.564 2.342 1.659 2.56 1.524.217-.134.164-1.318-.48-1.867-.626-.533-2.477-.987-3.37-1.193A5.66 5.66 0 0 1 7.444 8.76c-.863-1.093-1.44-2.398-1.472-2.373M2.835 8.59c-.59-.03-1.278.154-1.761.594-.55.5-.702 1.337-.487 2.014.088.278.316.685.793.753.636.09.767.378 1.519.228.752-.149 1.32-.764 1.549-1.446.261-.943-.128-1.432-.717-1.867-.22-.163-.541-.257-.896-.276m1.79.74c-.048-.03-.06.03.018.244.393 1.083-.37 2.097-1.03 2.566-.657.469-1.491.247-1.832.143s-.522.014-.507.194c.009.101.092.221.243.318a2.46 2.46 0 0 1-1.341-1.96A2.4 2.4 0 0 1 .39 9.562a2.4 2.4 0 0 0-.379 1.567 2.47 2.47 0 0 0 2.695 2.222 2.47 2.47 0 0 0 1.754-1.003c.79-.857.786-2.326.373-2.739-.075-.134-.16-.25-.208-.28zm-1.12.627a.69.69 0 0 1 .546.326c.38.6-.384 1.388-.961 1.539-.613.16-.899.005-.855-.82.028-.516.547-.958 1.047-1.035a1 1 0 0 1 .223-.01m18.691.03c.183.084.193 1.621-.11 2.737-.521 1.924-2.324 4.901-3.532 6.28-.927 1.057-1.963 1.499-3.212 1.684-2.6.506.158-3.82 2.074-3.583s3.972-3.732 4.436-6.155c.142-.738.26-1.002.344-.963m-17.367.621c.014.003.025.091.036.21-.07 1.247-1.215 1.934-1.87 2.025-.178.024-.49.011-.34-.123.098-.089.593-.054 1.04-.294.448-.241.98-.768 1.075-1.518.028-.22.045-.302.06-.3m3.935.111c.406.149.734.324 1.057.424.589.18 1.277.345 1.7.428.657.13 1.342.451 1.75.587.602.2.873.576.851 1.014-.02.438-.23-.055-.56-.276-.31-.208-1.054-.641-2.58-1.142-1.263-.414-1.905-.769-2.218-1.034m14.908 2.118c.126.515-.695 4.097-3.015 7.124-.778 1.015-1.84 1.768-2.89 2.294-.774.388-1.343.463-2.016.564-.525.079-.914.012-.886-.328.038-.447.567-.163 1.333-.35 2.751-.667 3.946-2.044 5.591-4.63 1.281-2.014 1.84-4.249 1.883-4.674m-16.471 2.53c-1-.034-2.08.394-2.747 1.233-1.442 1.874-.348 3.957.095 3.965.444.007.711.07 1.16.385.888.369 2.52.136 3.273-.856s.778-2.36.491-3.186c-.351-1.01-1.272-1.507-2.272-1.54m2.494 1.164q-.027.01.006.115c.622 1.898.048 3.4-1.025 4.173-1.051.759-2.497.886-3.654.286-.34-.176-.48.08-.322.226 2.937 2.721 7.357-1.016 5.41-4.317-.164-.278-.364-.506-.415-.483m-6.115.346a3.78 3.78 0 0 0-.449 2.953 3.775 3.775 0 0 0 4.608 2.697 3.78 3.78 0 0 0 2.42-1.96 3.78 3.78 0 0 1-2.255 1.666 3.775 3.775 0 0 1-4.608-2.695 3.78 3.78 0 0 1 .284-2.662zm5.438.61c.06-.008.102.075.13.283.283 2.196-1.228 2.81-1.72 2.94-1.665.435-1.856-.621-.154-1.186.913-.303 1.485-2.007 1.744-2.038m1.194 1.58c.021-.004.016.1-.006.25-.23 1.543-1.687 2.68-2.928 2.721-.251.026-.582-.082-.274-.147.374-.078 2.548-.642 3.059-2.43.08-.28.127-.39.149-.394"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mermaid.svg����������������������������������0000664�0000000�0000000�00000000431�14753064456�0025237�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.99 2.115A12.22 12.22 0 0 0 12 10.149 12.22 12.22 0 0 0 .01 2.115a12.23 12.23 0 0 0 5.32 10.604 6.56 6.56 0 0 1 2.845 5.423v3.754h7.65v-3.754a6.56 6.56 0 0 1 2.844-5.423 12.22 12.22 0 0 0 5.32-10.604Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/messenger.svg��������������������������������0000664�0000000�0000000�00000000755�14753064456�0025622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.001 11.639C.001 4.949 5.241 0 12.001 0S24 4.95 24 11.639s-5.24 11.638-12 11.638c-1.21 0-2.38-.16-3.47-.46a.96.96 0 0 0-.64.05l-2.39 1.05a.96.96 0 0 1-1.35-.85l-.07-2.14a.97.97 0 0 0-.32-.68A11.39 11.389 0 0 1 .002 11.64zm8.32-2.19-3.52 5.6c-.35.53.32 1.139.82.75l3.79-2.87c.26-.2.6-.2.87 0l2.8 2.1c.84.63 2.04.4 2.6-.48l3.52-5.6c.35-.53-.32-1.13-.82-.75l-3.79 2.87c-.25.2-.6.2-.86 0l-2.8-2.1a1.8 1.8 0 0 0-2.61.48"/></svg>�������������������mkdocs-material-9.6.4/material/templates/.icons/simple/meta.svg�������������������������������������0000664�0000000�0000000�00000002363�14753064456�0024555�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.915 4.03c-1.968 0-3.683 1.28-4.871 3.113C.704 9.208 0 11.883 0 14.449c0 .706.07 1.369.21 1.973a7 7 0 0 0 .265.86 5.3 5.3 0 0 0 .371.761c.696 1.159 1.818 1.927 3.593 1.927 1.497 0 2.633-.671 3.965-2.444.76-1.012 1.144-1.626 2.663-4.32l.756-1.339.186-.325c.061.1.121.196.183.3l2.152 3.595c.724 1.21 1.665 2.556 2.47 3.314 1.046.987 1.992 1.22 3.06 1.22 1.075 0 1.876-.355 2.455-.843a3.7 3.7 0 0 0 .81-.973c.542-.939.861-2.127.861-3.745 0-2.72-.681-5.357-2.084-7.45-1.282-1.912-2.957-2.93-4.716-2.93-1.047 0-2.088.467-3.053 1.308-.652.57-1.257 1.29-1.82 2.05-.69-.875-1.335-1.547-1.958-2.056-1.182-.966-2.315-1.303-3.454-1.303zm10.16 2.053c1.147 0 2.188.758 2.992 1.999 1.132 1.748 1.647 4.195 1.647 6.4 0 1.548-.368 2.9-1.839 2.9-.58 0-1.027-.23-1.664-1.004-.496-.601-1.343-1.878-2.832-4.358l-.617-1.028a45 45 0 0 0-1.255-1.98c.07-.109.141-.224.211-.327 1.12-1.667 2.118-2.602 3.358-2.602zm-10.201.553c1.265 0 2.058.791 2.675 1.446.307.327.737.871 1.234 1.579l-1.02 1.566c-.757 1.163-1.882 3.017-2.837 4.338-1.191 1.649-1.81 1.817-2.486 1.817-.524 0-1.038-.237-1.383-.794-.263-.426-.464-1.13-.464-2.046 0-2.221.63-4.535 1.66-6.088.454-.687.964-1.226 1.533-1.533a2.26 2.26 0 0 1 1.088-.285"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/metabase.svg���������������������������������0000664�0000000�0000000�00000007063�14753064456�0025412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.385 6.136c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.654 1.438 1.461m-1.438 2.63c-.794 0-1.438.654-1.438 1.461s.644 1.461 1.438 1.461 1.438-.654 1.438-1.461-.644-1.461-1.438-1.461m5.465-2.63c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.654 1.438 1.461m-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.499-1.088 1.111.488 1.111 1.088 1.111 1.088-.498 1.088-1.111m-1.088 5.592c.794 0 1.438-.654 1.438-1.461s-.644-1.461-1.438-1.461-1.438.654-1.438 1.461.643 1.461 1.438 1.461m5.464-5.592c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.654 1.438 1.461m-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.498-1.088 1.111S11.4 7.247 12 7.247s1.088-.498 1.088-1.111m.35-4.675c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461S11.206 0 12 0s1.438.654 1.438 1.461m-.35 0C13.088.848 12.6.35 12 .35s-1.088.498-1.088 1.111S11.4 2.572 12 2.572s1.088-.498 1.088-1.111m.35 8.806c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.654 1.438 1.461m-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.498-1.088 1.111.488 1.111 1.088 1.111 1.088-.499 1.088-1.111m4.376-4.131c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.654 1.438 1.461m-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.498-1.088 1.111.488 1.111 1.088 1.111 1.088-.498 1.088-1.111m2.939 1.461c.794 0 1.438-.654 1.438-1.461s-.644-1.461-1.438-1.461-1.438.654-1.438 1.461.644 1.461 1.438 1.461m-4.027 1.209c-.794 0-1.438.654-1.438 1.461s.644 1.461 1.438 1.461 1.438-.654 1.438-1.461-.643-1.461-1.438-1.461m4.027 0c-.794 0-1.438.654-1.438 1.461s.644 1.461 1.438 1.461 1.438-.654 1.438-1.461-.644-1.461-1.438-1.461M3.947 12.857a1.45 1.45 0 0 0-1.438 1.461c0 .807.644 1.461 1.438 1.461s1.438-.654 1.438-1.461a1.45 1.45 0 0 0-1.438-1.461m5.465 1.5c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.655 1.438 1.461m-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.498-1.088 1.111.488 1.111 1.088 1.111 1.088-.498 1.088-1.111M12 12.896c-.794 0-1.438.654-1.438 1.461s.644 1.461 1.438 1.461 1.438-.654 1.438-1.461-.644-1.461-1.438-1.461m5.464 1.461c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.655 1.438 1.461m-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.498-1.088 1.111.488 1.111 1.088 1.111 1.088-.498 1.088-1.111m2.939-1.461c-.794 0-1.438.654-1.438 1.461s.644 1.461 1.438 1.461 1.438-.654 1.438-1.461-.644-1.461-1.438-1.461M3.947 16.948c-.794 0-1.438.654-1.438 1.461s.644 1.461 1.438 1.461 1.438-.654 1.438-1.461-.644-1.461-1.438-1.461m5.465 1.5c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.654 1.438 1.461m-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.498-1.088 1.111.488 1.111 1.088 1.111 1.088-.498 1.088-1.111m4.376 0c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.654 1.438 1.461m-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.498-1.088 1.111.488 1.111 1.088 1.111 1.088-.498 1.088-1.111m.35 4.091c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.654 1.438 1.461m-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.498-1.088 1.111S11.4 23.65 12 23.65s1.088-.498 1.088-1.111m4.376-4.091c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.654 1.438 1.461m-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.498-1.088 1.111.488 1.111 1.088 1.111 1.088-.498 1.088-1.111m2.939-1.461c-.794 0-1.438.654-1.438 1.461s.644 1.461 1.438 1.461 1.438-.654 1.438-1.461-.644-1.461-1.438-1.461"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/metacritic.svg�������������������������������0000664�0000000�0000000�00000001267�14753064456�0025755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.99 0A12 12 0 1 0 24 12v-.014A12 12 0 0 0 11.99 0m-.055 2.564a9.4 9.4 0 0 1 9.407 9.389v.01a9.399 9.399 0 1 1-9.408-9.399Zm-1.61 17.198 2.046-2.046-3.94-3.94c-.165-.166-.345-.373-.442-.608-.221-.47-.318-1.203.221-1.742.664-.664 1.548-.387 2.406.47l3.788 3.788 2.046-2.046-3.954-3.954a2.5 2.5 0 0 1-.456-.622c-.263-.539-.25-1.216.235-1.7.677-.678 1.562-.429 2.544.553l3.677 3.677 2.046-2.046-3.982-3.982c-2.018-2.018-3.912-1.949-5.212-.65-.498.499-.802 1.024-.954 1.618a4 4 0 0 0-.055 1.686l-.027.028c-.996-.414-2.13-.166-3 .705-1.162 1.161-1.12 2.392-.982 3.11l-.042.043-1.009-.816-1.77 1.77a64 64 0 0 1 2.213 2.1z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/metafilter.svg�������������������������������0000664�0000000�0000000�00000000455�14753064456�0025763�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.548 5.26-.87 4.894h3.558l-.519 2.83h-3.592l-1.602 8.639h-2.857l3.586-19.248H24l-.537 2.885zm-7.331-2.884L7.19 13.472V2.376H3.581L0 21.624h2.452L5.198 6.728l-.251 14.896h1.421l5.225-14.896-2.786 14.896h2.48l3.581-19.248z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/metasploit.svg�������������������������������0000664�0000000�0000000�00000002100�14753064456�0025775�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.353 0h1.368q4.19.218 8.144 1.616.217.077.216.309-.015 4.033-.002 12.102 0 .81-.093 1.173c-.217.845-.76 1.635-1.326 2.325q-.318.388-1.024 1.046-2.955 2.75-6.01 5.094-.183.14-.516.335h-.17q-.627-.42-.945-.673-3.992-3.184-5.442-4.459-1.348-1.185-2.169-2.611c-.369-.64-.466-1.287-.465-2.099q.01-6.048.002-12.218c0-.183.09-.264.261-.325Q7.145.227 11.352 0ZM7.474 7.864q0-.094.069-.031l2.797 2.516a.374.372 21.2 0 1 .122.276l-.006 4.333a.18.18 0 0 0 .183.184l2.524-.018a.11.11 89.8 0 0 .108-.11q-.007-2.201.01-4.461.002-.173.146-.29 1.397-1.145 2.946-2.393.068-.055.068.032v10.881q0 .092.063.024.794-.865 1.628-1.838.71-.83.984-1.87.26-.989.262-1.997.007-4.754.009-9.768a.136.136 0 0 0-.137-.136q-1.15.004-2.424 0c-.287-.002-.441-.022-.619.149Q14.16 5.317 11.982 7.4a.046.046 0 0 1-.062 0Q9.782 5.437 7.769 3.525c-.234-.222-.515-.381-.843-.373q-1.09.026-2.33.005-.184-.004-.184.18-.003 4.54.005 9.032.002.536.036 1.027c.076 1.093.2 2.126.803 3.021.574.852 1.329 1.656 2.126 2.405q.023.022.054.026.04.006.04-.034z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/meteor.svg�����������������������������������0000664�0000000�0000000�00000001077�14753064456�0025123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m0 .234 21.912 20.537s.412.575-.124 1.151c-.535.576-1.236.083-1.236.083zm6.508 2.058 17.01 15.638s.413.576-.123 1.152c-.534.576-1.235.083-1.235.083zM1.936 6.696l17.01 15.638s.412.576-.123 1.152-1.235.082-1.235.082zm10.073-2.635 11.886 10.927s.287.401-.087.805-.863.058-.863.058zm-8.567 7.737 11.886 10.926s.285.4-.088.803c-.375.403-.863.059-.863.059zm14.187-5.185 5.426 4.955s.142.188-.044.377c-.185.188-.428.027-.428.027l-4.954-5.358zM6.178 17.231l5.425 4.956s.144.188-.042.377-.427.026-.427.026z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/metro.svg������������������������������������0000664�0000000�0000000�00000001530�14753064456�0024750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c-.655 0-1.31.143-1.807.43l-7.31 4.22c-.99.574-1.806 1.98-1.806 3.129v8.442c0 1.14.813 2.555 1.805 3.128l7.311 4.221c.994.573 2.619.573 3.612 0l7.311-4.22c.994-.574 1.807-1.982 1.807-3.129V7.779c0-1.14-.813-2.555-1.807-3.128L13.806.43C13.308.143 12.653 0 11.998 0zm.005 2.606c.29 0 .577.073.834.209l4.718 2.724-1.76 1.067L12 4.414 8.21 6.602 6.448 5.534l4.71-2.72c.26-.137.551-.21.847-.208m7.577 4.237a.905.905 0 0 1 .909.9c-.001 2.472 0 5.432-.008 8.313a1.76 1.76 0 0 1-.84 1.46l-6.8 3.927a1.7 1.7 0 0 1-.843.215 1.7 1.7 0 0 1-.844-.215l-6.802-3.927a1.76 1.76 0 0 1-.842-1.46V7.75a.905.905 0 0 1 1.376-.765C7.188 8.381 9.626 9.835 12 11.3c2.375-1.443 4.757-2.897 7.115-4.322a.9.9 0 0 1 .467-.135M5.32 9.355v6.632L12 19.844l6.682-3.857V9.355l-6.213 3.773a.9.9 0 0 1-.937 0Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/metrodelaciudaddemexico.svg������������������0000664�0000000�0000000�00000000614�14753064456�0030470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.965 8.704V24H.008V6.864h2.097c1.066 0 1.86.774 1.86 1.84m2.366-1.84c.268.521.521 1.315.521 1.84V24h3.685V8.704a1.784 1.784 0 0 0-1.84-1.84M17.4 24V8.704a1.795 1.795 0 0 0-1.844-1.84h-2.382c.269.521.269 1.315.269 1.84V24M.008 3.953V0h15.549c4.75 0 8.435 3.953 8.435 8.704V24h-3.685V8.704a4.735 4.735 0 0 0-4.75-4.75z"/></svg>��������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/metrodemadrid.svg����������������������������0000664�0000000�0000000�00000002072�14753064456�0026444�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4.74 0 12l12 7.26L24 12zm0 2.905 3.45 2.087h-6.9zM7.2 10.64h.786l.606 1.77.564-1.77h.79v2.568h-.524l-.006-1.82-.627 1.82h-.432l-.632-1.805v1.805h-.526V10.64zm5.275.148h.51l.001.559h.371v.343h-.37v.92c0 .174.041.215.212.215a.7.7 0 0 0 .158-.014v.4a2 2 0 0 1-.298.018c-.313 0-.584-.073-.584-.443V11.69h-.307v-.341h.307v-.559zm5.222.303 1.5.908-1.5.908zM6.3 11.094v1.812L4.8 12l1.498-.906zm8.455.203a.4.4 0 0 1 .11.017v.475a1 1 0 0 0-.18-.018c-.37 0-.5.27-.5.598v.842h-.508v-1.863h.48l.006.345a.65.65 0 0 1 .592-.396m1.127 0c.58 0 .957.39.957.982s-.377.98-.957.98c-.578 0-.953-.39-.953-.98 0-.593.375-.98.953-.982m-4.738.002c.628 0 .932.532.896 1.103v.004h-1.334c.015.325.172.473.455.473.204 0 .368-.126.4-.24h.446c-.141.439-.445.625-.863.625-.581 0-.942-.407-.942-.98 0-.56.382-.985.942-.985m-.012.383c-.322 0-.416.252-.422.396h.824c-.045-.262-.156-.396-.402-.396m4.75 0c-.343 0-.445.3-.445.597 0 .295.102.596.445.596.349 0 .45-.3.45-.596 0-.3-.104-.597-.45-.597M8.55 14.268h6.9L12 16.355l-3.451-2.087z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/metrodeparis.svg�����������������������������0000664�0000000�0000000�00000001435�14753064456�0026324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.708 18.099q-.303.228-.714.228-.363 0-.688-.228-.327-.229-.327-.66V9.626h-.023l-2.984 6.057a1.45 1.45 0 0 1-.385.505q-.217.168-.578.168-.36 0-.577-.168a1.44 1.44 0 0 1-.385-.505L8.063 9.627H8.04v7.811a.75.75 0 0 1-.339.66 1.23 1.23 0 0 1-.7.229q-.412 0-.702-.228-.29-.229-.29-.66V6.958q0-.457.29-.853.288-.396 1.036-.396.555 0 .856.252.3.253.542.757l3.277 6.754h.024l3.253-6.754q.24-.504.543-.757.3-.252.855-.252.748 0 1.036.396.29.398.29.854v10.478q0 .433-.302.66zm-5.732 4.156c5.658 0 10.279-4.64 10.279-10.327 0-5.62-4.603-10.183-10.279-10.183-5.674 0-10.23 4.536-10.23 10.183 0 5.59 4.715 10.327 10.23 10.327m0 1.745C5.495 24 0 18.48 0 11.928 0 5.315 5.34 0 11.976 0S24 5.34 24 11.928C24 18.577 18.6 24 11.976 24"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mewe.svg�������������������������������������0000664�0000000�0000000�00000003312�14753064456�0024557�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.029 7.712a.768.768 0 1 0 0 1.536.768.768 0 0 0 0-1.536m7.883 0a.768.768 0 1 0 0 1.536.768.768 0 0 0 0-1.536m4.414 0a.768.768 0 1 0 0 1.536.768.768 0 0 0 0-1.536m4.418 0a.768.768 0 1 0 0 1.537.768.768 0 0 0 0-1.537m-4.447 2.307c-.27 0-.453.175-.54.428l-1.378 4.175-1.403-4.193a.546.546 0 0 0-.532-.392c-.296 0-.55.227-.55.523 0 .07.018.148.044.21l1.805 5.056c.105.279.296.444.558.444h.105c.261 0 .461-.165.557-.444l1.36-3.985 1.36 3.985c.096.279.288.444.55.444h.105c.261 0 .462-.174.558-.444l1.804-5.057a.6.6 0 0 0 .052-.218.525.525 0 0 0-.531-.514.55.55 0 0 0-.523.383l-1.404 4.202-1.377-4.175c-.079-.253-.27-.428-.541-.428zM.54 10.045a.54.54 0 0 0-.54.541v5.117c0 .297.227.523.523.523a.52.52 0 0 0 .532-.523V12.05l1.482 2.224c.113.174.253.279.444.279.201 0 .34-.105.454-.28l1.49-2.24v3.661a.54.54 0 0 0 .533.532.53.53 0 0 0 .54-.532v-5.108a.54.54 0 0 0-.54-.54h-.114a.54.54 0 0 0-.488.278L3 13.227l-1.85-2.894a.56.56 0 0 0-.497-.288zm8.368 1.439c-1.316 0-2.25 1.081-2.25 2.397v.018c0 1.42 1.03 2.389 2.363 2.389.715 0 1.239-.236 1.657-.61a.46.46 0 0 0 .14-.323.415.415 0 0 0-.419-.427.4.4 0 0 0-.27.096 1.66 1.66 0 0 1-1.09.4c-.68 0-1.212-.418-1.325-1.168h2.885c.27 0 .497-.209.497-.505 0-1.064-.723-2.267-2.188-2.267m12.904 0c-1.317 0-2.25 1.081-2.25 2.397v.018c0 1.42 1.029 2.389 2.363 2.389.715 0 1.238-.236 1.657-.61a.46.46 0 0 0 .139-.323.415.415 0 0 0-.418-.427.4.4 0 0 0-.271.096 1.65 1.65 0 0 1-1.09.4c-.68 0-1.211-.418-1.325-1.168h2.886c.27 0 .497-.209.497-.505 0-1.064-.724-2.267-2.188-2.267m-12.913.863c.698 0 1.099.532 1.169 1.212H7.705c.096-.715.549-1.212 1.194-1.212m12.904 0c.697 0 1.098.532 1.168 1.212h-2.363c.096-.715.55-1.212 1.195-1.212"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mg.svg���������������������������������������0000664�0000000�0000000�00000010036�14753064456�0024226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.835 8.428q-.023-.276-.053-.552-.024-.206-.052-.411a.6.6 0 0 0-.104-.243q-.13-.165-.266-.323l-.365-.429a42 42 0 0 0-2.509-2.638A43 43 0 0 0 17.3 1.064a9 9 0 0 0-.336-.257.7.7 0 0 0-.252-.1 22 22 0 0 0-1-.102 45 45 0 0 0-3.71-.158 45 45 0 0 0-4.286.211Q7.503.68 7.29.706a.7.7 0 0 0-.253.1q-.17.127-.337.258a43 43 0 0 0-3.185 2.768A43 43 0 0 0 .641 6.898q-.136.16-.267.324a.6.6 0 0 0-.105.243q-.028.205-.05.41-.03.278-.056.553A41 41 0 0 0 0 12.001a41 41 0 0 0 .163 3.574l.057.552q.02.207.05.41.024.132.104.244a24 24 0 0 0 .633.753 43 43 0 0 0 2.507 2.636A42 42 0 0 0 6.7 22.938q.168.13.337.255a.7.7 0 0 0 .253.102l.426.048q.286.028.574.053a45 45 0 0 0 3.712.157q1.857-.001 3.71-.157.29-.025.573-.053.216-.023.427-.048a.7.7 0 0 0 .252-.102q.172-.125.336-.255a42 42 0 0 0 3.187-2.767 42 42 0 0 0 2.509-2.637l.365-.43q.136-.16.266-.323a.6.6 0 0 0 .104-.243q.028-.205.052-.411A40 40 0 0 0 24 12c0-1.191-.058-2.384-.165-3.573m-1.805 6.601q-.02.235-.044.469l-.044.348a.5.5 0 0 1-.089.205q-.11.139-.225.276l-.31.363a36 36 0 0 1-2.126 2.234q-1.291 1.241-2.7 2.346a8 8 0 0 1-.285.216.55.55 0 0 1-.214.087l-.362.04a38 38 0 0 1-3.63.178q-1.576 0-3.146-.132l-.486-.045-.362-.041a.55.55 0 0 1-.214-.087 10 10 0 0 1-.285-.216q-.19-.15-.376-.3a36 36 0 0 1-2.324-2.046 36 36 0 0 1-2.125-2.234q-.273-.315-.536-.639a.5.5 0 0 1-.089-.205 34 34 0 0 1-.09-.817A35 35 0 0 1 1.83 12q.003-1.515.138-3.029.022-.233.048-.467.018-.175.042-.348a.5.5 0 0 1 .089-.206 21 21 0 0 1 .536-.638 36 36 0 0 1 2.125-2.236 36 36 0 0 1 2.7-2.346q.141-.11.285-.218a.6.6 0 0 1 .214-.084q.423-.052.848-.086a39 39 0 0 1 3.146-.135 39 39 0 0 1 3.63.18q.183.018.362.04a.6.6 0 0 1 .214.085 27 27 0 0 1 .662.517 36 36 0 0 1 2.323 2.047q1.111 1.072 2.126 2.236l.31.364q.116.135.225.274a.5.5 0 0 1 .089.205l.044.349q.023.233.044.467.138 1.514.14 3.029-.001 1.516-.14 3.028m-1.225-3c-.098-.01-.981-.012-1.456-.017-.622-.005-1.042 0-1.246-.001-.06 0-.068-.003-.135 0-.003.047-.003.071-.005.13-.002.043-.01.19-.018.384a21 21 0 0 0-.018 1.116l.001.114c.036.002.616.002 1.007.005.053 0 .057.001.11.003-.001.027 0 .052.001.097 0 .048-.055.74-.088.94-.1.149-.163.23-.367.456-.217.24-.256.3-.934.984-.704.712-2.035 1.867-2.513 2.263a10 10 0 0 0-.303.257s.007-.243-.002-.361c.018-4.565.013-7.807-.004-12.84.008-.114-.005-.209 0-.347.15.117.156.123.259.208.7.594 1.438 1.203 2.024 1.79.81.815 1.156 1.174 1.74 1.863.058.073.069.088.108.15.01.064.01.076.021.157.023.193.062.588.068.696.002.062.009.091.007.151.06.006.1 0 .16.004a55 55 0 0 0 1.557 0c.068 0 .072.002.128 0a1.4 1.4 0 0 0 0-.17 12 12 0 0 0-.097-1.292 3 3 0 0 0-.032-.267c-.05-.068-.081-.1-.128-.155A28 28 0 0 0 18.5 6.02c-1.795-1.721-2.75-2.375-2.75-2.375s-.077-.057-.134-.095c-.075-.014-.058-.01-.13-.02a32 32 0 0 0-2.608-.168c-.124-.004-.16-.007-.293-.001.006.15.002.153-.002.267.014 6.216-.02 10.641-.009 16.813v.188s.088.008.203.004c.734 0 2.167-.08 2.534-.14.142-.022.219-.027.319-.056.075-.043.115-.074.176-.126a37 37 0 0 0 2.616-2.267c.983-.941 1.876-1.96 2.09-2.2.09-.099.15-.176.256-.315.045-.166.034-.215.054-.347.093-1.076.167-1.752.167-2.977-.004-.064-.002-.095-.007-.169-.089-.005-.128-.004-.177-.008m-9.539-8.672c-.152.006-.43-.003-.942.026-.537.031-.85.064-.977.075-.073.007-.117.007-.17.013-.022.048-.019.042-.042.103-.779 1.95-1.788 4.655-2.627 6.666-.042.085-.128.3-.128.3s-.039-.064-.139-.267A85 85 0 0 0 4.67 7.276c-.046-.077-.128-.246-.128-.246s-.123.132-.204.204c-.173.155-.805.878-.93 1.046-.064.083-.085.107-.157.21-.03.117-.036.187-.058.316-.045.257-.153 1.364-.18 2.852.004 1.21.076 2.292.186 3.498l.031.322s.137.186.166.219c.605.71 1.046 1.217 1.463 1.643l.358.365s-.018-.257-.025-.39l-.024-.413c-.082-1.297-.244-3.484-.29-4.621-.008-.144.018-.824.018-.824l1.742 3.508s.13-.315.188-.447c.7-1.754 1.366-3.327 2.05-5.081.047-.11.294-.77.294-.77s.007.712 0 .866c-.034 4.924-.019 7.741-.012 10.444l.001.249c0 .138-.003.156-.003.247.181.03.163.03.261.042.317.04.313.051.686.075.385.024.806.035 1.142.043.086-.004.133-.004.175-.006.003-.08.003-.118.003-.193-.029-6.302.044-16.917.044-16.917s.003-.057 0-.162a3 3 0 0 0-.2.001"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/microbit.svg���������������������������������0000664�0000000�0000000�00000000730�14753064456�0025433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.857 5.143A6.865 6.865 0 0 0 0 12a6.864 6.864 0 0 0 6.857 6.857h10.287A6.863 6.863 0 0 0 24 12a6.864 6.864 0 0 0-6.856-6.857zm0 2.744h10.287A4.117 4.117 0 0 1 21.257 12a4.12 4.12 0 0 1-4.113 4.116H6.857A4.12 4.12 0 0 1 2.743 12a4.12 4.12 0 0 1 4.114-4.113m10.168 2.729a1.385 1.385 0 1 0 .003 2.77 1.385 1.385 0 0 0-.003-2.77m-10.166 0a1.385 1.385 0 1 0-.003 2.771 1.385 1.385 0 0 0 .003-2.77Z"/></svg>����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/microdotblog.svg�����������������������������0000664�0000000�0000000�00000001006�14753064456�0026304�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.4 0 0 4.9 0 10.95S5.4 21.9 12 21.9c1.4 0 2.85-.25 4.2-.7.15-.05.35 0 .45.1 1 1.35 2.55 2.3 4.25 2.7l.25-.1v-.3a4.65 4.65 0 0 1 .2-5.9C22.9 15.85 24 13.5 24 10.95 24 4.9 18.55 0 12 0m-.05 5.2c.15 0 .3.1.35.25L13.55 9l3.85.1c.15 0 .3.1.35.2.05.15 0 .3-.15.4L14.55 12l1.1 3.6c.05.15 0 .3-.15.4h-.4l-3.15-2.15L8.8 16h-.4c-.15-.1-.2-.25-.15-.4l1.1-3.6L6.3 9.7c-.15-.1-.2-.25-.15-.4.05-.1.2-.2.35-.2l3.85-.1 1.25-3.55c.05-.15.2-.25.35-.25"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/microeditor.svg������������������������������0000664�0000000�0000000�00000004011�14753064456�0026137�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0m5.698 13.628c-.117.465-.303.837-.558 1.14-.233.302-.466.488-.721.58-.256.094-.512.14-.791.14-.28 0-.512-.046-.698-.162-.186-.093-.325-.256-.442-.442a1.9 1.9 0 0 1-.232-.675 4.7 4.7 0 0 1-.07-.837c0-.116 0-.232.023-.395.022-.163.047-.372.07-.372h-.047c-.373.93-.883 1.604-1.534 2.14-.652.534-1.372.79-2.164.79-.535 0-.977-.21-1.28-.605-.325-.395-.487-1-.487-1.79 0-.117 0-.233.022-.373.023-.116.023-.162.046-.395h-.163c-.209.465-.395 1.116-.534 1.698-.14.58-.255 1.116-.326 1.604-.093.489-.14.93-.186 1.303-.047.372-.07.628-.093.767.023.116.046.233.07.372.046.14.07.28.116.396s.07.255.093.372.046.209.046.279c0 .325-.07.58-.209.744-.14.162-.302.255-.465.255a.83.83 0 0 1-.535-.186c-.163-.14-.232-.35-.232-.628 0-.396.07-.907.21-1.512.14-.604.348-1.372.604-2.279.14-.418.255-.837.395-1.256.14-.418.256-.814.372-1.162.116-.35.21-.675.302-.954a3.7 3.7 0 0 0 .163-.65c.023-.07.047-.234.07-.466.023-.233.046-.489.093-.79.046-.303.07-.629.116-.954.047-.35.093-.652.116-.93.047-.21.07-.443.117-.698.046-.255.116-.512.209-.72.093-.233.233-.42.395-.583.163-.162.372-.232.628-.232.28 0 .465.093.558.256.093.162.14.372.117.604-.023.233-.047.49-.117.744-.07.256-.14.49-.21.675-.185.581-.371 1.116-.58 1.558-.21.442-.396.93-.558 1.442-.14.35-.186.674-.186.953 0 .512.162.884.465 1.163.325.28.697.395 1.14.395a1.63 1.63 0 0 0 1.022-.372q.489-.383.907-.907c.28-.348.512-.72.698-1.14a8 8 0 0 0 .419-1.069c.023-.046.046-.14.07-.325.046-.187.07-.396.116-.628.046-.233.093-.465.14-.72.046-.257.091-.466.116-.629.046-.186.07-.372.116-.605s.116-.442.21-.65c.092-.21.232-.373.371-.513a.87.87 0 0 1 .605-.209c.302 0 .488.093.605.256.093.163.14.372.14.605a3.6 3.6 0 0 1-.117.697c-.07.233-.116.42-.163.558a23 23 0 0 1-.558 1.558c-.186.466-.349.884-.512 1.21-.14.349-.256.604-.349.814q-.14.315-.14.418c0 .605.14 1.047.396 1.303.256.255.535.395.837.395.512 0 .907-.163 1.21-.465.302-.326.535-.907.674-1.605h.186a5.4 5.4 0 0 1-.14 1.698z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/micropython.svg������������������������������0000664�0000000�0000000�00000000301�14753064456�0026170�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h11.509v18.737h.982V0H24v24h-5.263V5.263h-.983V24H6.246V5.263l-.983.035V24H0zm22.246 19.509h-1.404v2.386h1.404z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/microstation.svg�����������������������������0000664�0000000�0000000�00000001036�14753064456�0026336�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 .357c-.938.217-3.086.22-3.631 1.15l-.55.922c-1.376 2.348-4.833 11.069-8.183 11.181-3.35.113 1.762-10.712 2.27-11.797-2.08.489-4.078.193-4.826 2.326-.775 2.212-1.54 4.425-2.363 6.62-1.71 4.532-3.795 8.89-6.634 12.767.064-.086.127-.171-.083.117 2.111-.422 4.03-.352 5.295-2.253 1.17-1.759 1.92-3.73 2.712-5.68l.377-.927.303.286c3.017 2.844 5.334 0 7.697-2.219l.349-.327 1.322 4.977 2.932-3.144a34 34 0 0 1-.713-1.342l-.037-.08C18.302 8.742 21.6 3.935 23.861.566Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/microstrategy.svg����������������������������0000664�0000000�0000000�00000000242�14753064456�0026515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.095 2.572h5.827v18.856H9.096zM0 2.572h5.825v18.856H.001zm18.174 0v18.854H24V8.33z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/midi.svg�������������������������������������0000664�0000000�0000000�00000000540�14753064456�0024544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.775 7.517H24v8.966h-2.225zm-8.562 0h6.506c.66 0 1.045.57 1.045 1.247v6.607c0 .84-.35 1.112-1.112 1.112h-6.439v-5.696h2.225v3.505h3.135V9.54h-5.36zm-3.235 0h2.19v8.966h-2.19zM0 7.517h7.854c.66 0 1.045.57 1.045 1.247v7.72H6.708v-6.71H5.427v6.708H3.438V9.775H2.191v6.708H0Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/migadu.svg�����������������������������������0000664�0000000�0000000�00000001315�14753064456�0025071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.082 1.898a7.085 7.085 0 0 0-7.08 6.915c.002 7.002-.004 3.868 0 5.921-.064 3.519 2.407 7.254 7.082 7.368h.006l.017-4.311c-.009-.007-.033.006-.023-.018a3 3 0 0 1-.178-.007 4 4 0 0 1-1.228-.364c-.713-.413-1.22-1.234-1.35-2.015-.075-2.297 1.67-3.178 2.754-3.135 1.79.07 2.855 1.473 2.754 3.254v6.596h4.328V15.02a2.8 2.8 0 0 1 .11-.772c.298-1.04 1.204-1.863 2.445-1.982h.383a2.783 2.783 0 0 1 2.57 2.718v7.118H24c-.006-2.361 0-4.722 0-7.082a7.085 7.085 0 0 0-9.836-6.526l-.017-.01a7.086 7.086 0 0 0-7.065-6.586m-2.762 8.32a1.024 1.024 0 0 1 1.024 1.024 1.024 1.024 0 0 1-1.024 1.024 1.024 1.024 0 0 1-1.023-1.024A1.024 1.024 0 0 1 4.32 10.22"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mihoyo.svg�����������������������������������0000664�0000000�0000000�00000004123�14753064456�0025127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.939 8.8a.65.65 0 0 0-.653.653.65.65 0 0 0 .653.653.65.65 0 0 0 .653-.653.65.65 0 0 0-.653-.653m-5.506 1.886A1.43 1.43 0 0 0 0 12.118v2.474a.59.59 0 0 0 .592.592.59.59 0 0 0 .592-.592v-2.25a.464.464 0 0 1 .465-.464.464.464 0 0 1 .465.465v2.249a.59.59 0 1 0 1.184 0v-2.25a.464.464 0 0 1 .465-.464.464.464 0 0 1 .465.465v1.208c.001.914.736 1.649 1.65 1.649s1.649-.735 1.649-1.649V11.49a.59.59 0 0 0-.592-.592.59.59 0 0 0-.592.592v2.037a.464.464 0 0 1-.465.465.464.464 0 0 1-.466-.465v-1.409a1.43 1.43 0 0 0-1.433-1.432c-.448 0-.853.202-1.115.525-.033.04-.08.079-.158.079s-.125-.038-.158-.079a1.43 1.43 0 0 0-1.115-.525M9.057 9.16a.59.59 0 0 0-.592.591v4.84a.59.59 0 0 0 .592.593.59.59 0 0 0 .592-.592v-1.588a.27.27 0 0 1 .27-.27h.636a.27.27 0 0 1 .27.27v1.588a.59.59 0 0 0 .591.592.59.59 0 0 0 .592-.592V9.75a.59.59 0 0 0-.592-.592.59.59 0 0 0-.592.592v1.465a.27.27 0 0 1-.269.27h-.637a.27.27 0 0 1-.269-.27V9.751a.59.59 0 0 0-.592-.592m7.784 0a.286.286 0 0 0-.203.47l1.166 2.11v2.853a.59.59 0 0 0 .592.592.59.59 0 0 0 .592-.592v-2.853l1.166-2.11c.168-.233-.015-.47-.203-.47h-.606a.27.27 0 0 0-.218.126l-.65 1.188c-.017.03-.046.041-.077.041s-.063-.01-.08-.04l-.655-1.19a.27.27 0 0 0-.218-.125zm-3.776 1.2c-.032 0-.053.155-.053.368s.041.416.082.416c.04 0 .04-.025.237-.196s.228-.171.228-.22-.073-.09-.245-.213c-.171-.122-.216-.155-.249-.155m3.437 0c-.032 0-.077.033-.249.155s-.245.164-.245.213.033.048.229.22.196.196.237.196.081-.204.081-.416-.02-.368-.053-.368m-1.718.343c-1.082 0-1.96 1.006-1.96 2.245s.878 2.245 1.96 2.245 1.959-1.005 1.959-2.245-.877-2.245-1.96-2.245m0 1.118c.541 0 .98.506.98 1.127 0 .622-.438 1.126-.98 1.126s-.979-.504-.979-1.126c0-.62.44-1.127.98-1.127m8.685-1.33c-.334 0-.498.147-.596.22s-.18.147-.269.147c-.229 0-.392-.155-.849-.155-1.082 0-1.96 1.005-1.96 2.245s.878 2.245 1.96 2.245 1.96-1.005 1.96-2.245c0-.452-.12-.894-.343-1.267-.037-.096-.05-.194-.05-.386 0-.265.128-.46.27-.56a.8.8 0 0 1 .408-.138 1.2 1.2 0 0 0-.53-.106m-1.715 1.33c.54 0 .98.505.98 1.127s-.439 1.126-.98 1.126-.98-.504-.98-1.126c0-.62.44-1.126.98-1.127"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mikrotik.svg���������������������������������0000664�0000000�0000000�00000002370�14753064456�0025456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.041 6.188a1.4 1.4 0 0 0-.218-.36c-.24-.296-.634-.586-1.14-.864l-4.052-2.22L13.576.519C13.074.243 12.61.065 12.22.013A2 2 0 0 0 12 0c-.432 0-.974.192-1.576.52L6.37 2.74 2.317 4.96c-.504.279-.9.569-1.14.867a2 2 0 0 0-.122.17 2 2 0 0 0-.096.19c-.15.348-.22.816-.22 1.368v8.887c0 .66.1 1.2.316 1.558.216.356.66.706 1.262 1.036l4.054 2.22 4.053 2.223c.504.276.966.456 1.36.506q.218.03.436 0c.39-.05.852-.228 1.356-.506l8.107-4.443c.6-.33 1.046-.68 1.262-1.036q.054-.09.096-.188c.15-.348.22-.818.22-1.37V7.556c0-.552-.07-1.02-.22-1.368M7.233 16.618c0 .2-.218.33-.396.233l-1.45-.796a1.07 1.07 0 0 1-.552-.934v-4.296c0-.2.216-.33.394-.235l1.728.947a.53.53 0 0 1 .276.468v4.612zm11.934-1.497c0 .39-.213.748-.554.936l-1.45.794a.266.266 0 0 1-.394-.234v-5.692c0-.2-.217-.33-.395-.232l-2.62 1.434c-.34.187-.552.545-.552.934v5.646a.53.53 0 0 1-.278.468l-.41.224c-.32.176-.707.176-1.026 0l-.408-.224a.53.53 0 0 1-.278-.468v-5.646c0-.389-.212-.747-.552-.934L4.835 9.16v-.28c0-.388.212-.746.552-.934l.6-.328a1.06 1.06 0 0 1 1.022 0l4.48 2.452c.318.176.704.176 1.021 0l2.07-1.134a.266.266 0 0 0 0-.468L9.932 5.922a.266.266 0 0 1 0-.468l1.556-.852c.32-.176.707-.176 1.026 0l6.1 3.34c.342.188.554.547.553.936z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/milanote.svg���������������������������������0000664�0000000�0000000�00000000654�14753064456�0025440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c6.627 0 12 5.373 12 12s-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0m0 12.943L15.057 16H8.943Zm4-4v6.114L12.943 12Zm-8 6.114V8.943L11.057 12Zm8.917 2.227a.67.67 0 0 0 .367-.367l-.003.009a.7.7 0 0 0 .052-.26V7.334a.667.667 0 0 0-1.138-.471L12 11.057 7.805 6.862a.667.667 0 0 0-1.138.471v9.334a.667.667 0 0 0 .666.666h9.334q.139 0 .26-.052l-.01.004z"/></svg>������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/milvus.svg�����������������������������������0000664�0000000�0000000�00000002416�14753064456�0025145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.536 11.997a4.005 4.005 0 0 1-4.015 4.018c-2.36-.005-4.05-1.954-4.01-4.08a4.013 4.013 0 0 1 8.025.061zm8.463-.04a.82.82 0 0 1-.25.616q-1.122 1.128-2.248 2.25-.123.124-.25.054c-.091-.048-.124-.121-.098-.242a13 13 0 0 0 .25-1.626 12 12 0 0 0 .028-1.49 11.6 11.6 0 0 0-.27-2.114.26.26 0 0 1 .017-.213.194.194 0 0 1 .273-.052 1 1 0 0 1 .086.075l2.174 2.174c.171.17.29.366.289.567zM11.226 20c-1.89-.002-3.488-.565-4.926-1.611a8 8 0 0 1-.952-.816q-1.125-1.112-2.253-2.221l-1.931-1.899q-.437-.427-.873-.857c-.393-.39-.387-.83.012-1.217q.443-.433.885-.868 1.433-1.41 2.867-2.818c.532-.522 1.057-1.051 1.604-1.555a8 8 0 0 1 3.786-1.95A7.7 7.7 0 0 1 11.135 4c1.89.015 3.612.546 5.113 1.723a8 8 0 0 1 2.282 2.77 7.6 7.6 0 0 1 .76 2.556c.255 2.404-.414 4.518-2.046 6.312a7.77 7.77 0 0 1-3.927 2.366 9 9 0 0 1-2.091.274zm.364-2.137a6 6 0 0 0 .605-.036 5 5 0 0 0 .38-.05c1.525-.28 2.76-1.051 3.704-2.263.92-1.178 1.28-2.542 1.168-4.028a5.6 5.6 0 0 0-.631-2.168c-.627-1.213-1.596-2.067-2.817-2.646-1.096-.519-2.248-.649-3.443-.464A5.8 5.8 0 0 0 7.33 7.8c-.858.83-1.707 1.669-2.56 2.504-.426.419-.85.841-1.28 1.257-.274.266-.286.588-.013.857q.804.793 1.61 1.583c.722.709 1.44 1.42 2.165 2.126 1.184 1.153 2.604 1.737 4.339 1.738z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/minds.svg������������������������������������0000664�0000000�0000000�00000002667�14753064456�0024750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.496 18.381a.05.05 0 0 0 .03-.033l.693-2.217 3.192-4.791.003-.004.001-.002.001-.002.002-.005v-.003l.002-.003v-.015l-.416-6.947v-.008L19 4.343l-.002-.005-.002-.004-.003-.005-.003-.003v-.001L14.818.016V.014l-.005-.003-.003-.002-.003-.002-.002-.001-.002-.001-.002-.001V.003h-.003l-.002-.001L14.79 0H9.209l-.003.001-.003.001-.005.002-.004.003-.004.002h-.001l-.003.004h-.001l-.003.003-4.172 4.31-.003.005-.006.009-.002.005-.002.008v.002l-.001.003v.003l-.417 6.95v.021l.002.002v.002l.002.002.003.004v.003l3.195 4.79.692 2.215v.003l.001.002.002.003v.001l.001.002v.001l.002.001.001.003.001.001.001.001.002.002.003.004.002.001.002.002h.001l.003.003h.001l.002.001.002.002h.002l.001.001h.002l.001.001h.001l.003.001h.002v.001h.005l.003.001h6.957a.1.1 0 0 0 .02-.004zm-.058-.1H8.889l7.203-2.095zm.618-2.193L8.619 18.25l2.704-5.678zm.068-.08L11.39 12.49l5.14-4.125zm.11-.087.4-7.542 2.668 2.937zm-7.7 2.27-.647-2.07 3.232-3.36zm-.698-2.166-3.094-4.641 6.457 1.143zm11.472-4.858-2.655-2.92 2.256-3.718zm-7.975 1.236L9.3 5.283l7.188 2.983zm-.102.024-6.508-1.152 4.475-5.966zm5.285-4.26L9.315 5.175 14.748.15zm.095-.053L14.87.217l4.015 4.15zM4.693 11.14l.403-6.72 4.03.807zm4.474-6.011-4.015-.803L9.167.178zm.104-.056V.1h5.376zm-.748 13.36v4.143l1.672-1.403zm.057 4.232 1.53.612 1.81.723-1.67-2.737zM12.081 24l3.339-1.335-1.67-1.402zm3.395-1.424v-4.144l-1.67 2.74zm-6.86-4.192L12 23.932l3.383-5.548z"/></svg>�������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/minetest.svg���������������������������������0000664�0000000�0000000�00000007112�14753064456�0025454�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.69 12.436-.406.24-2.31 1.355v.558l-1.087.667v1.11l-1.087.664v2.857l4.89-2.872v-4.044zm-.543.96v3.298l-3.803 2.234v-1.583l1.087-.666v-1.11l1.086-.666v-.551zm-3.77-7.854-1.128.792v4.746l.139.08 1.004.577 1.03-.603V6.152zm.026.654.475.278v4.339l-.49.286-.597-.344v-4.13zM6.215 0l-4.24 2.491V7.03l.136.08 2.907 1.708v2.205l.134.08 1.061.637 1.196-.717V8.816l2.662-1.565V2.327zm-.003.643 3.316 2V6.93L6.213 8.878 2.52 6.708V2.812zm.654 8.492v1.57l-.653.39-.651-.39v-1.57l.651.383zm8.947 2.074-7.88 4.54v1.434l.869.5v1.107l3.208 1.881 6.79-4.102v-1.166l1.087-.666v-1.15zm-.002.638 3.533 2.061v.515l-1.086.665v1.164l-6.251 3.777-2.66-1.56v-1.11l-.87-.5v-.785zm-2.98-9.03a.26.26 0 0 0-.143.038l-2.616 1.543v.64l2.753-1.624 3.529 2.067-4.317 2.533a.28.28 0 0 0-.001.48l3.23 1.92-7.058 4.069-7.067-4.175 3.202-1.89-.544-.32-3.337 1.97a.28.28 0 0 0 0 .48l7.608 4.494c.083.049.185.05.27 0l7.606-4.382a.28.28 0 0 0 .003-.482l-3.235-1.922 4.32-2.535a.28.28 0 0 0 0-.48L12.96 2.853a.3.3 0 0 0-.13-.038zm4.34 2.668a.28.28 0 0 1-.136.237l-.407.24v.468l-3.515 2.062.542.322 3.38-1.983a.28.28 0 0 0 .136-.24zm-14.128 8.17v1.1l-1.086-.665v3.978l6.412 3.82v-1.752l-.924-.555V18.47l-1.141-.666v-2.218zm.544.963 2.173 1.286v2.22l1.141.667V19.9l.925.554v.467L2.5 17.75v-2.681l1.087.666v-.49zM11.88 3.33l-1.809 1.065v.003l1.81-1.067zM3.79 8.095.309 10.147v6.979L11.99 24l11.681-7.042v-6.7l-3.25-1.909v.64l2.707 1.59v6.062l-11.141 6.716L.85 16.805v-6.027l-.389-.23a.28.28 0 0 1 0-.48L3.8 8.098zm19.9 4.34-.406.24-2.31 1.356v.558l-1.087.666v1.11l-1.087.665v2.857l4.89-2.872v-4.044zm-.543.96v3.3l-3.803 2.233v-1.584l1.086-.665v-1.11l1.087-.666v-.551zm-3.77-7.853-1.129.792v4.746l.14.08 1.003.577 1.031-.603V6.152zm.025.654.476.278v4.338l-.49.287-.597-.344v-4.13zM6.216 0l-4.24 2.491V7.03l.136.08L5.02 8.817v2.205l.134.08 1.06.637 1.197-.717V8.815l2.662-1.564V2.327zm-.003.643 3.316 2V6.93L6.214 8.878 2.52 6.708V2.812zm.654 8.492v1.57l-.653.39-.651-.39v-1.57l.651.383zm8.947 2.074-7.88 4.54v1.434l.869.5v1.107l3.208 1.881 6.79-4.102v-1.166l1.087-.666v-1.15zm-.002.638 3.533 2.061v.515l-1.087.665v1.164l-6.25 3.777-2.661-1.56v-1.11l-.87-.5v-.786zm-2.98-9.03a.26.26 0 0 0-.143.038l-2.616 1.543v.64l2.753-1.624 3.529 2.067-4.318 2.533a.28.28 0 0 0 0 .48l3.23 1.92-7.059 4.068-7.067-4.174 3.203-1.89-.544-.32-3.337 1.97a.28.28 0 0 0 0 .48L8.07 15.04c.084.05.186.05.27.001l7.607-4.382a.28.28 0 0 0 .003-.482l-3.235-1.922 4.32-2.535a.28.28 0 0 0 0-.481L12.96 2.854a.3.3 0 0 0-.13-.038zm4.34 2.668a.28.28 0 0 1-.136.236l-.407.24v.47l-3.515 2.061.542.322 3.38-1.983a.28.28 0 0 0 .136-.24zm0 .968v.137c0 .1-.052.191-.136.24l-.156.092 1.37.8v-.64zm3.252 1.897v.64l2.725 1.59v.512l-1.984 1.195-1.764 1.03-3.316-1.949v-.95c0-.098-.05-.19-.135-.24l-2.295-1.363-.543.319 2.43 1.444v.95c0 .1.052.192.137.242l3.586 2.107c.083.05.186.05.27.001l1.901-1.11h.004l1.709-1.03v.902l.001.026q.004.03.011.054c.003.007.007.02.011.027q.006.01.012.026l.014.023q.033.045.079.075l.022.015.026.011a.1.1 0 0 0 .026.007.26.26 0 0 0 .16-.007l.026-.011c.015-.007.034-.019.047-.027.007-.007.015-.01.022-.019q.009-.012.018-.018l.019-.023q.008-.01.015-.023a.14.14 0 0 0 .022-.05c.003-.008.004-.02.007-.027l.004-.027.001-.026v-2.222c0-.1-.051-.192-.136-.242zm-17.38 5.305v1.1l-1.086-.665v3.978l6.412 3.819v-1.751l-.925-.555v-1.112l-1.14-.666v-2.218zm.544.963 2.173 1.286v2.22l1.14.667v1.107l.925.555v.467l-5.325-3.17v-2.681l1.087.666v-.49zM11.88 3.33l-1.808 1.065v.003l1.81-1.067zM3.792 8.095.308 10.147v6.978L11.992 24l11.681-7.043v-6.699l-3.25-1.909v.64l2.707 1.59v6.062l-11.141 6.716L.852 16.805v-6.028l-.389-.23a.28.28 0 0 1 0-.48L3.8 8.1z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mingww64.svg���������������������������������0000664�0000000�0000000�00000000677�14753064456�0025317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m0 9.396 4.187-4.188 4.187 4.188-4.187 4.187zm0 10.417 4.187-4.187 4.187 4.187L4.187 24zm5.208-5.209 4.187-4.187 4.187 4.187-4.187 4.187zm0-10.417L9.395 0l4.187 4.187-4.187 4.187Zm5.209 5.208 4.187-4.187 4.187 4.187-4.187 4.187zm5.208-5.208L19.812 0 24 4.187l-4.187 4.187zm-5.208 15.626 4.187-4.187 4.187 4.187L14.604 24Zm5.209-5.208 4.187-4.188L24 14.604l-4.187 4.187z"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mini.svg�������������������������������������0000664�0000000�0000000�00000002146�14753064456�0024562�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 9.172h7.556A5.3 5.3 0 0 1 9.45 7.39a5.1 5.1 0 0 1 2.548-.659q1.376 0 2.553.662a5.25 5.25 0 0 1 1.889 1.78H24l-.748.749h-6.4a4.3 4.3 0 0 1 .3.888h5.233l-.749.75h-4.369q.02.289.02.439t-.02.44h3.49l-.748.748H17.15a4 4 0 0 1-.299.884h2.264l-.758.748H16.44a5.3 5.3 0 0 1-1.89 1.786 5.1 5.1 0 0 1-2.552.666q-1.375 0-2.548-.663a5.3 5.3 0 0 1-1.894-1.788H5.642l-.744-.749h2.26a4 4 0 0 1-.296-.884H4.006l-.758-.748h3.49a7 7 0 0 1-.02-.44q0-.15.02-.44h-4.36l-.758-.749H6.86a4.3 4.3 0 0 1 .296-.888H.749zm7.844 1.072a4.4 4.4 0 0 0-.358 1.754q0 .916.358 1.754t.963 1.444q.604.607 1.44.967.834.358 1.751.358t1.753-.359a4.5 4.5 0 0 0 1.443-.966q.605-.607.965-1.444t.36-1.754-.36-1.754a4.6 4.6 0 0 0-.965-1.443 4.6 4.6 0 0 0-1.443-.963 4.4 4.4 0 0 0-1.753-.36q-.916 0-1.751.36-.836.359-1.44.963a4.5 4.5 0 0 0-.963 1.443m.553 2.942h.468l-.013-1.773.566 1.773.52-.003.556-1.76v1.763h.499v-2.377h-.703l-.603 1.895-.615-1.893-.674-.002zm3.134 0h.495v-2.377h-.495zm1.033 0h.477v-1.712l.949 1.712h.575v-2.377h-.468v1.722l-.949-1.722h-.584zm2.548 0h.486v-2.377h-.486z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/minio.svg������������������������������������0000664�0000000�0000000�00000001100�14753064456�0024726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.207.006a2.16 2.16 0 0 0-1.62.582 2.15 2.15 0 0 0-.095 3.035l3.408 3.55a3.042 3.042 0 0 1-.663 4.688l-.463.239V7.285a15.42 15.42 0 0 0-8.018 10.487v.017l6.549-3.328v7.621L13.779 24V13.682l.897-.463a4.443 4.443 0 0 0 1.22-7.03l-3.37-3.525a.75.75 0 0 1 .037-1.055.75.75 0 0 1 1.056.038l.467.486-.006.006 4.07 4.244a.057.057 0 0 0 .082 0 .06.06 0 0 0 0-.07l-3.14-5.143-.149.143.149-.145C14.494.393 13.829.054 13.207.006m-.902 9.865v2.994l-4.152 2.149a14 14 0 0 1 2.767-3.928 14 14 0 0 1 1.385-1.215"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mintlify.svg���������������������������������0000664�0000000�0000000�00000001112�14753064456�0025451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.158.002a8.8 8.8 0 0 0-6.249 2.59l-.062.063h-.003L2.655 8.844a1 1 0 0 0-.062.058 8.84 8.84 0 0 0-.83 11.55l6.251-6.249.065-.063a8.78 8.78 0 0 1-1.758-5.385 8.8 8.8 0 0 1 .283-2.151 9 9 0 0 1 2.151-.286 8.8 8.8 0 0 1 5.386 1.76 8.8 8.8 0 0 1 3.032 4.11 8.9 8.9 0 0 1 .225 5.21 9 9 0 0 0-.341.082 8.85 8.85 0 0 1-4.868-.303 8.7 8.7 0 0 1-2.323-1.25l-.064.065L3.55 22.24a8.85 8.85 0 0 0 11.548-.83l.06-.062 6.19-6.187a9 9 0 0 1-.367.337q.188-.165.366-.341l.063-.058A8.82 8.82 0 0 0 24 8.844V.002Zm3.289 17.05"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/minutemailer.svg�����������������������������0000664�0000000�0000000�00000000235�14753064456�0026316�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.187 19.181 24 4.755 0 12.386l9.196 1.963.043 4.896 2.759-2.617-2.147-2.076z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/miraheze.svg���������������������������������0000664�0000000�0000000�00000001007�14753064456�0025425�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.677 12.923 3.768.011 1.949 3.369-1.926 3.323H2.666L.727 16.292zm-.004-8.6 3.761.011 1.944 3.367-1.922 3.326H2.662L.727 7.69zm14.882 0 3.768.011 1.95 3.367-1.928 3.326h-3.801L15.606 7.69zm0 8.6 3.768.011 1.95 3.369-1.928 3.323h-3.802l-1.937-3.334zm-7.456 4.373 3.767.011 1.951 3.368L13.889 24h-3.801l-1.939-3.336zm0-17.296 3.767.011 1.951 3.369-1.928 3.324h-3.801L8.149 3.368zm0 8.628 3.767.011 1.951 3.368-1.928 3.325h-3.801l-1.939-3.336z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/miro.svg�������������������������������������0000664�0000000�0000000�00000000334�14753064456�0024571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.392 0H13.9L17 4.808 10.444 0H6.949l3.102 6.3L3.494 0H0l3.05 8.131L0 24h3.494L10.05 6.985 6.949 24h3.494L17 5.494 13.899 24h3.493L24 3.672z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/misskey.svg����������������������������������0000664�0000000�0000000�00000001737�14753064456�0025317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.91 16.892c-1.039.003-1.931-.63-2.352-1.366-.225-.322-.67-.437-.676 0v2.014q0 1.215-.876 2.1-.85.86-2.078.86-1.2 0-2.077-.86A2.93 2.93 0 0 1 0 17.54V6.46q0-.936.526-1.695a2.86 2.86 0 0 1 1.402-1.088 2.9 2.9 0 0 1 1-.177q1.353 0 2.253 1.063l2.997 3.515c.067.05.263.437.732.437.47 0 .692-.386.758-.437l2.972-3.515Q13.567 3.5 14.918 3.5q.501 0 1.001.177a2.73 2.73 0 0 1 1.377 1.088q.55.758.55 1.695v11.08q0 1.215-.875 2.1-.852.86-2.078.86-1.201 0-2.078-.86a2.93 2.93 0 0 1-.85-2.1v-2.014c-.05-.55-.531-.204-.702 0-.45.843-1.313 1.361-2.352 1.366M21.448 8.61q-1.05 0-1.802-.733-.726-.759-.726-1.822c0-1.063.242-1.307.726-1.796a2.44 2.44 0 0 1 1.802-.758q1.05 0 1.803.758.75.735.75 1.796 0 1.063-.75 1.822-.751.732-1.803.733m.025.507q1.05 0 1.777.758.75.759.751 1.822v6.248q0 1.064-.75 1.821a2.4 2.4 0 0 1-1.778.734q-1.05 0-1.802-.733a2.5 2.5 0 0 1-.75-1.822v-6.248a2.5 2.5 0 0 1 .75-1.822 2.44 2.44 0 0 1 1.802-.758"/></svg>���������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mitsubishi.svg�������������������������������0000664�0000000�0000000�00000000222�14753064456�0025777�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 22.38H0l4-6.92h8zm8 0h8l-4-6.92h-8zm0-13.84-4-6.92-4 6.92 4 6.92Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mix.svg��������������������������������������0000664�0000000�0000000�00000000757�14753064456�0024431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.001 0v21.61c0 1.32 1.074 2.39 2.4 2.39a2.396 2.396 0 0 0 2.402-2.39V8.54c0 .014-.005.026-.006.04V6.364a2.395 2.395 0 0 1 2.399-2.393 2.396 2.396 0 0 1 2.398 2.393v9.356a2.394 2.394 0 0 0 2.398 2.393 2.394 2.394 0 0 0 2.398-2.39v-3.692a2.4 2.4 0 0 1 2.385-2.078 2.4 2.4 0 0 1 2.41 2.389v1.214a2.397 2.397 0 0 0 2.408 2.389 2.4 2.4 0 0 0 2.406-2.39V.006l-.145-.004c-1.31 0-2.558.264-3.693.74A9.45 9.45 0 0 1 23.841 0z"/></svg>�����������������mkdocs-material-9.6.4/material/templates/.icons/simple/mixcloud.svg���������������������������������0000664�0000000�0000000�00000000555�14753064456�0025454�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.462 8.596 1.372 6.49h.319l1.372-6.49h2.462v6.808H6.742v-5.68l.232-.81h-.402l-1.43 6.49H2.854l-1.44-6.49h-.391l.222.81v5.68H0V8.596zM24 8.63v1.429L21.257 12 24 13.941v1.43l-3.235-2.329h-.348l-3.226 2.329v-1.43l2.734-1.94-2.733-1.942V8.63l3.225 2.338h.348zm-7.869 2.75v1.24H9.304v-1.24z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mixpanel.svg���������������������������������0000664�0000000�0000000�00000001506�14753064456�0025442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.967 9.996h3.053c-.763-.477-1.048-1.145-1.431-2.384L7.443 3.366C6.919 1.458 6.49.551 4.39.551H.004v1.145h.621c1.286 0 1.431.477 1.814 1.908L3.44 7.326c.524 1.814 1.337 2.67 3.53 2.67zm7.06 0h3.053c2.194 0 2.956-.86 3.484-2.67l1.001-3.722c.382-1.431.57-1.908 1.814-1.908H24V.551h-4.34c-2.146 0-2.576.86-3.053 2.815l-1.145 4.246c-.384 1.286-.673 1.907-1.435 2.384m-4.007 4.008h4.007V9.996H10.02zM0 23.449h4.39c2.1 0 2.529-.907 3.053-2.815l1.146-4.246c.383-1.239.668-1.907 1.431-2.384H6.967c-2.194 0-3.007.86-3.531 2.67l-1.001 3.722c-.383 1.431-.524 1.907-1.814 1.907H0zm19.65 0h4.343v-1.146h-.622c-1.239 0-1.431-.476-1.814-1.907l-1.001-3.722c-.524-1.814-1.286-2.67-3.483-2.67h-3.046c.762.477 1.041 1.098 1.424 2.384l1.145 4.246c.477 1.955.907 2.815 3.054 2.815"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mlb.svg��������������������������������������0000664�0000000�0000000�00000002073�14753064456�0024377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.003 5.53a1.99 1.99 0 0 1 1.99 1.827l.007.177v8.927a2.007 2.007 0 0 1-1.848 2.002l-.15.006h-20a2 2 0 0 1-1.42-.586 1.98 1.98 0 0 1-.575-1.245L0 16.46V7.535a2 2 0 0 1 .583-1.427 2.02 2.02 0 0 1 1.242-.57l.176-.007h20.002zm-7.5.703H2.001a1.3 1.3 0 0 0-.926.375 1.3 1.3 0 0 0-.374.926v8.927a1.28 1.28 0 0 0 .374.922c.246.245.579.383.926.384h8.116a92 92 0 0 0-.495-.843H8.66c0-2.402.812-3.73 1.784-3.995.133-.024.07-.68-.1-.88h-.561c-.09 0-.038-.169-.038-.169l.456-.972-.062-.266H8.455l1.383-.967c.064-2.55 2.68-2.748 4.255-1.686.937.62 1.008 1.849.937 2.698-.012.054-.244.018-.244.018s-.16.937.257.937h1.838c.749-.03 1.472.478 1.472.478l.176-.643zm7.5 0h-5.59l3.207 5.36.296.038.187.245v.229l.202.041.188.255v.221l.21.037.211.23v.51c.252.228.536.418.843.563.283.108.315.562.486.803.213.352.505.493.444.69-.143.526-.682 1.414-1.184 1.456h-1.986v.85h2.488a1.3 1.3 0 0 0 1.294-1.311V7.534h-.002a1.285 1.285 0 0 0-1.294-1.3zM4.022 14.404a.888.888 0 0 1-.638 1.513.88.88 0 0 1-.88-.888.888.888 0 0 1 1.518-.625"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mlflow.svg�����������������������������������0000664�0000000�0000000�00000000467�14753064456�0025132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.883.002a12.044 12.044 0 0 0-9.326 19.463l3.668-2.694A7.573 7.573 0 0 1 12.043 4.45v2.867l6.908-5.14A12 12 0 0 0 11.883.002m9.562 4.533L17.777 7.23a7.573 7.573 0 0 1-5.818 12.322v-2.867l-6.908 5.14a12.046 12.046 0 0 0 16.394-17.29"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mobx.svg�������������������������������������0000664�0000000�0000000�00000001106�14753064456�0024566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.402 0C.625 0 0 .625 0 1.402v21.196C0 23.375.625 24 1.402 24h21.196c.777 0 1.402-.625 1.402-1.402V1.402C24 .625 23.375 0 22.598 0zm2.882 5.465h3.038v13.068H4.284v-.986h1.863V6.45H4.284zm12.394 0h3.038v.985h-1.863v11.098h1.863v.986h-3.038zm-7.856 3.55h1.35q.162.662.378 1.418.23.742.472 1.485.257.729.513 1.417.256.69.486 1.229.23-.54.486-1.229.257-.688.5-1.417.256-.742.472-1.485.23-.756.392-1.418h1.296a34 34 0 0 1-1.242 3.78 56 56 0 0 1-1.364 3.24h-1.134a63 63 0 0 1-1.377-3.24 36 36 0 0 1-1.228-3.78"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mobxstatetree.svg����������������������������0000664�0000000�0000000�00000001351�14753064456�0026511�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.436.592c-.533.001-1.073.271-1.432.807L.306 17.553c-.94 1.98.422 3.874 2.269 4.41 3.469.773 6.646-1.292 6.646-1.292 4.68-2.995 7.702-4.685 7.702-4.685 3.73-1.891 6.993.429 7 .434L13.825 1.399c-.331-.54-.856-.808-1.39-.807m.004 1.66c.42-.002.833.21 1.093.635 2.466 3.66 5.27 7.435 7.629 11.161 0 0-2.252-1.172-5.19.318 0 0-2.38 1.33-6.062 3.687 0 0-2.5 1.624-5.23 1.016-1.453-.422-2.526-1.912-1.786-3.471l8.42-12.711c.282-.421.707-.634 1.126-.635m8.42 14.165c-4.035.1-7.535 3.87-10.387 4.983 4.335 5.21 17.314-.97 12.454-4.424-.617-.42-1.315-.578-2.067-.56m-.025 1.016c.545.003 1.04.145 1.457.478 2.288 2.286-6.305 6.262-9.958 3.647 1.18-.091 5.56-4.141 8.501-4.125"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mocha.svg������������������������������������0000664�0000000�0000000�00000001546�14753064456�0024720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.325 0c-.907 1.116-2.442 2.302-.768 4.814.558.628.838 1.953.768 2.372 0 0 2.512-1.464.977-4.116-.907-1.395-1.326-2.582-.977-3.07m-2.79 2.582c-.628.767-1.605 1.535-.489 3.279.35.349.489 1.256.489 1.535 0 0 1.673-.978.627-2.792-.628-.907-.906-1.743-.627-2.022m-5.094 6a.7.7 0 0 0-.697.698c0 2.372.349 10.535 3.837 14.512.14.139.28.208.489.208h5.86c.21 0 .35-.069.489-.208 3.488-3.908 3.837-12.07 3.837-14.512a.7.7 0 0 0-.698-.699H12zm2.023 2.163h9.21c.349 0 .697.278.697.697 0 1.953-.348 7.465-2.72 10.326-.21.14-.35.208-.559.208H9.976a.63.63 0 0 1-.488-.208c-2.372-2.79-2.652-8.373-2.722-10.326 0-.35.28-.697.698-.697m8.792 4.744s-.071.627-1.745 1.255c-2.303.837-6.348.28-6.348.28.349 1.465.906 2.86 1.743 3.907.07.14.28.209.419.209h3.489q.21 0 .418-.209c1.186-1.395 1.745-3.558 2.024-5.442"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mockserviceworker.svg������������������������0000664�0000000�0000000�00000001132�14753064456�0027364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.5 0A4.49 4.49 0 0 0 0 4.5v15A4.49 4.49 0 0 0 4.5 24h15a4.49 4.49 0 0 0 4.5-4.5v-15A4.49 4.49 0 0 0 19.5 0Zm1.633 4.43 11.715.013c.623.001 1.208.26 1.62.674.414.414.671 1 .67 1.623v.086l-1.224 11.799a2.3 2.3 0 0 1-.836 1.545 2.293 2.293 0 0 1-3.15-.246L4.426 8.262a2.3 2.3 0 0 1-.586-1.657A2.295 2.295 0 0 1 6.133 4.43m2.363 3.35 7.334 8.146.844-8.137zm1.123.501 3.244.004 2.92 3.244-.336 3.227zM4.678 9.287l3.017 3.354-.369 3.57 3.588.004 3.018 3.351-7.78-.01c-.623 0-1.208-.26-1.62-.673-.414-.414-.671-1-.67-1.623v-.086z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/modal.svg������������������������������������0000664�0000000�0000000�00000000703�14753064456�0024717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.89 5.57 0 14.002l2.521 4.4h5.05l4.396-7.718 4.512 7.709 4.996.037L24 14.057l-4.857-8.452-5.073-.015-2.076 3.598L9.94 5.57Zm.837.729h3.787l1.845 3.252H7.572Zm9.189.021 3.803.012 4.228 7.355-3.736-.027zm-9.82.346L6.94 9.914l-4.209 7.389-1.892-3.3Zm9.187.014 4.297 7.343-1.892 3.282-4.3-7.344zm-6.713 3.6h3.79l-4.212 7.394H3.361Zm11.64 4.109 3.74.027-1.893 3.281-3.74-.027z"/></svg>�������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/modin.svg������������������������������������0000664�0000000�0000000�00000004572�14753064456�0024741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.44 7.391h2.066a.36.36 0 0 0 .354-.353.36.36 0 0 0-.354-.359H6.44a.358.358 0 1 0 0 .712m14.08 7.082a1.74 1.74 0 0 0-1.773 1.777 1.773 1.773 0 0 0 1.773 1.796h1.703A1.773 1.773 0 0 0 24 16.273a1.745 1.745 0 0 0-1.777-1.777zm1.703-4.95A1.745 1.745 0 0 0 24 7.744a1.773 1.773 0 0 0-1.777-1.773H20.52a1.773 1.773 0 0 0-1.773 1.773 1.74 1.74 0 0 0 1.773 1.777zm-1.703.697a1.777 1.777 0 0 0-1.773 1.778 1.74 1.74 0 0 0 1.773 1.777h1.703A1.745 1.745 0 0 0 24 11.998a1.777 1.777 0 0 0-1.777-1.773zm-4.886 4.253a1.74 1.74 0 0 0-1.773 1.777 1.77 1.77 0 0 0 1.773 1.796h.633a1.773 1.773 0 0 0 1.777-1.772 1.745 1.745 0 0 0-1.777-1.801zm.633-4.95a1.745 1.745 0 0 0 1.777-1.778 1.773 1.773 0 0 0-1.777-1.773h-.651a1.77 1.77 0 0 0-1.773 1.773 1.74 1.74 0 0 0 1.773 1.777zm-.651.697a1.777 1.777 0 0 0-1.754 1.778 1.74 1.74 0 0 0 1.772 1.777h.633a1.745 1.745 0 0 0 1.796-1.777 1.777 1.777 0 0 0-1.796-1.778zM3.914 8.824h1.033a.354.354 0 0 0 .358-.353.363.363 0 0 0-.358-.358H3.932a.354.354 0 0 0 0 .707zm-3.15-2.13h.27a.354.354 0 0 0 .358-.354.363.363 0 0 0-.358-.358h-.27a.354.354 0 0 0 0 .707zm5.676 9.91h2.066a.354.354 0 0 1 .354.354.36.36 0 0 1-.354.358H6.44a.358.358 0 1 1 0-.712m-2.508-1.42h1.033a.354.354 0 1 1 0 .708H3.932a.354.354 0 0 1 0-.707m-3.15 2.132h.27a.354.354 0 0 1 .359.354.363.363 0 0 1-.359.358h-.27a.354.354 0 0 1 0-.707zm1.587.73h9.027a1.773 1.773 0 0 0 1.772-1.772 1.74 1.74 0 0 0-1.772-1.778H1.694a.358.358 0 0 0 0 .712h.931a.354.354 0 0 1 0 .707H.317a.358.358 0 0 0 0 .712H5.17a.358.358 0 0 1 0 .712H2.378a.354.354 0 0 0-.34.354.36.36 0 0 0 .354.358Zm4.071-6.388h2.066a.354.354 0 0 0 .354-.354.36.36 0 0 0-.354-.358H6.44a.363.363 0 0 0-.358.358.36.36 0 0 0 .358.354m-2.508 1.424h1.033a.358.358 0 1 0 0-.712H3.932a.354.354 0 0 0-.353.353.36.36 0 0 0 .353.359M.782 10.95h.27a.354.354 0 1 0 0-.707h-.27a.36.36 0 0 0-.353.353.36.36 0 0 0 .353.358zm1.587-.712h9.027a1.777 1.777 0 0 1 1.772 1.759 1.74 1.74 0 0 1-1.772 1.777H1.694a.354.354 0 0 1 0-.707h.931a.36.36 0 0 0 .354-.358.36.36 0 0 0-.354-.354H.317a.358.358 0 0 1 0-.712H5.17a.358.358 0 0 0 0-.712H2.378a.358.358 0 0 1 0-.712zm0-4.253h9.027a1.773 1.773 0 0 1 1.772 1.773 1.74 1.74 0 0 1-1.772 1.777H1.694a.36.36 0 0 1-.353-.353.354.354 0 0 1 .34-.359h.93a.354.354 0 0 0 0-.707H.317a.358.358 0 0 1 0-.712H5.17a.358.358 0 0 0 0-.712H2.378a.354.354 0 0 1-.34-.353.36.36 0 0 1 .331-.391Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/modrinth.svg���������������������������������0000664�0000000�0000000�00000002575�14753064456�0025460�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.252.004a11.78 11.768 0 0 0-8.92 3.73 11 11 0 0 0-2.17 3.11 11.37 11.359 0 0 0-1.16 5.169c0 1.42.17 2.5.6 3.77.24.759.77 1.899 1.17 2.529a12.3 12.298 0 0 0 8.85 5.639c.44.05 2.54.07 2.76.02.2-.04.22.1-.26-1.7l-.36-1.37-1.01-.06a8.5 8.489 0 0 1-5.18-1.8 5.3 5.3 0 0 1-1.3-1.26c0-.05.34-.28.74-.5a37.572 37.545 0 0 1 2.88-1.629c.03 0 .5.45 1.06.98l1 .97 2.07-.43 2.06-.43 1.47-1.47c.8-.8 1.48-1.5 1.48-1.52 0-.09-.42-1.63-.46-1.7-.04-.06-.2-.03-1.02.18-.53.13-1.2.3-1.45.4l-.48.15-.53.53-.53.53-.93.1-.93.07-.52-.5a2.7 2.7 0 0 1-.96-1.7l-.13-.6.43-.57c.68-.9.68-.9 1.46-1.1.4-.1.65-.2.83-.33.13-.099.65-.579 1.14-1.069l.9-.9-.7-.7-.7-.7-1.95.54c-1.07.3-1.96.53-1.97.53-.03 0-2.23 2.48-2.63 2.97l-.29.35.28 1.03c.16.56.3 1.16.31 1.34l.03.3-.34.23c-.37.23-2.22 1.3-2.84 1.63-.36.2-.37.2-.44.1-.08-.1-.23-.6-.32-1.03-.18-.86-.17-2.75.02-3.73a8.84 8.84 0 0 1 7.9-6.93c.43-.03.77-.08.78-.1.06-.17.5-2.999.47-3.039-.01-.02-.1-.02-.2-.03Zm3.68.67c-.2 0-.3.1-.37.38-.06.23-.46 2.42-.46 2.52 0 .04.1.11.22.16a8.51 8.499 0 0 1 2.99 2 8.38 8.379 0 0 1 2.16 3.449 6.9 6.9 0 0 1 .4 2.8c0 1.07 0 1.27-.1 1.73a9.4 9.4 0 0 1-1.76 3.769c-.32.4-.98 1.06-1.37 1.38-.38.32-1.54 1.1-1.7 1.14-.1.03-.1.06-.07.26.03.18.64 2.56.7 2.78l.06.06a12.07 12.058 0 0 0 7.27-9.4c.13-.77.13-2.58 0-3.4a11.96 11.948 0 0 0-5.73-8.578c-.7-.42-2.05-1.06-2.25-1.06Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/modx.svg�������������������������������������0000664�0000000�0000000�00000000363�14753064456�0024574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.145 9.49 4.47-7.19H12.118l-1.24 2.023zM2.92 0v11.497l2.48 1.55 13.435-3.1zm18.16 24V12.503l-1.984-1.263-5.168 8.267zM5.165 14.053l-4.78 7.648h11.497L18.6 10.953Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mojeek.svg�����������������������������������0000664�0000000�0000000�00000001407�14753064456�0025077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.141 16.488c-.53 0-.824-.353-.824-1.147 0-.795.49-4.182.68-5.736.35-2.885-1.313-4.976-3.725-4.976-1.912 0-3.37.756-4.514 1.973-.776-1.173-1.648-1.973-3.343-1.973-1.652 0-2.676.605-3.684 1.574C6.189 5.138 5.222 4.63 3.777 4.63 2.578 4.629.967 5.23 0 5.825l1.077 2.44c.734-.409 1.336-.718 1.853-.718.566 0 .902.408.808 1.262-.09.824-1.09 10.268-1.09 10.268H5.9s.638-6.061.863-7.885c.264-2.137 1.299-3.49 2.774-3.49 1.294 0 1.735 1.018 1.642 2.21-.08 1.037-1.025 9.165-1.025 9.165h3.27s.72-6.738.946-8.408c.293-2.17 1.692-2.967 2.57-2.967 1.443 0 1.882 1.18 1.747 2.299-.11.91-.5 4.118-.62 5.782-.147 2.058.824 3.589 2.663 3.589 1.206 0 2.412-.344 3.27-.835l-.703-2.413c-.41.177-.797.364-1.155.364"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/moleculer.svg��������������������������������0000664�0000000�0000000�00000001336�14753064456�0025615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.442.718a2.58 2.58 0 0 0-2.579 2.579 2.58 2.58 0 0 0 1.368 2.275L12.809 8.27a3.5 3.5 0 0 0-1.077-.172 3.505 3.505 0 0 0-3.505 3.505 3.5 3.5 0 0 0 .085.745l-2.83 1.036a2.97 2.97 0 0 0-2.513-1.39A2.97 2.97 0 0 0 0 14.962a2.97 2.97 0 0 0 2.97 2.97 2.97 2.97 0 0 0 2.969-2.97 3 3 0 0 0-.072-.634l2.716-1.193a3.5 3.5 0 0 0 3.15 1.972 3.5 3.5 0 0 0 2.129-.724l2.276 2.167a4.3 4.3 0 0 0-.749 2.426 4.305 4.305 0 0 0 4.306 4.305A4.305 4.305 0 0 0 24 18.977a4.305 4.305 0 0 0-4.305-4.305 4.3 4.3 0 0 0-2.718.969l-2.424-1.964a3.5 3.5 0 0 0 .684-2.074 3.5 3.5 0 0 0-1.521-2.89l1.204-2.891a2.6 2.6 0 0 0 .522.054 2.58 2.58 0 0 0 2.58-2.58 2.58 2.58 0 0 0-2.58-2.578"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/momenteo.svg���������������������������������0000664�0000000�0000000�00000002057�14753064456�0025452�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.925 6.615c-.6.01-1.154.323-1.472.831-.348.41-3.163 3.98-4.142 5.22l.765.968c1.036-1.306 4.096-5.169 4.243-5.348a.765.765 0 0 1 1.265 0c.344.42 1.624 2.047 2.703 3.408q.724.888 1.328 1.862c.626 1.043-.395 2.02-.792 2.457l-3.254-4.098a.81.81 0 0 0-1.25-.016L14.2 15.836 7.548 7.447a1.774 1.774 0 0 0-3.02.024c-.059.067-1.706 2.156-2.989 3.776-.528.701-.956 1.33-1.178 1.7-1.048 1.75.441 3.462 1.239 4.165.174.16.399.257.636.272a.73.73 0 0 0 .677-.368l3.145-3.97s2.882 3.644 3.227 4.07a.64.64 0 0 0 1.033-.005c.198-.253.76-.962 1.373-1.733l-.765-.964c-.548.69-1.021 1.286-1.127 1.426l-3.118-3.938a.81.81 0 0 0-1.25.016l-3.254 4.099c-.397-.438-1.416-1.415-.792-2.458a18 18 0 0 1 1.329-1.861c1.078-1.362 2.358-2.989 2.703-3.408a.765.765 0 0 1 1.264 0l7 8.823a.64.64 0 0 0 1.034.005c.345-.426 3.227-4.07 3.227-4.07l3.146 3.968a.73.73 0 0 0 .675.367c.238-.015.463-.11.638-.272.797-.702 2.286-2.414 1.238-4.165-.222-.37-.65-1-1.179-1.7-1.282-1.621-2.929-3.71-2.989-3.777a1.77 1.77 0 0 0-1.546-.854"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/monero.svg�����������������������������������0000664�0000000�0000000�00000000566�14753064456�0025131�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.365 0 0 5.373 0 12.015c0 1.335.228 2.607.618 3.81h3.577V5.729L12 13.545l7.805-7.815v10.095h3.577c.389-1.203.618-2.475.618-3.81C24 5.375 18.635 0 12 0m-1.788 15.307-3.417-3.421v6.351H1.758C3.87 21.689 7.678 24 12 24s8.162-2.311 10.245-5.764h-5.04v-6.351l-3.386 3.421-1.788 1.79-1.814-1.79z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/moneygram.svg��������������������������������0000664�0000000�0000000�00000001051�14753064456�0025616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12c0-1.826.407-3.555 1.137-5.105a9.8 9.8 0 0 0-.704 3.591c0 5.434 4.387 6.22 6.254 6.203 2.837-.026 6.154-1.416 8.948-3.991l-.471 2.65c-.106.605.29 1.138.896 1.142h.25c.627 0 1.073-.511 1.186-1.143l1.006-5.662c.12-.628-.293-1.14-.921-1.14h-5.673c-.63 0-1.207.334-1.32.968l-.044.255c-.09.603.33 1.057.931 1.057h2.96l-.142.139c-2.04 1.93-4.556 2.988-6.64 2.988-2.08 0-4.41-1.313-4.41-4.269C3.243 3.555 8.99 0 12 0c6.614 0 12 5.373 12 12"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mongodb.svg����������������������������������0000664�0000000�0000000�00000000741�14753064456�0025252�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.193 9.555c-1.264-5.58-4.252-7.414-4.573-8.115-.28-.394-.53-.954-.735-1.44-.036.495-.055.685-.523 1.184-.723.566-4.438 3.682-4.74 10.02-.282 5.912 4.27 9.435 4.888 9.884l.07.05A74 74 0 0 1 11.91 24h.481a29 29 0 0 1 .51-3.07c.417-.296.604-.463.85-.693a11.34 11.34 0 0 0 3.639-8.464c.01-.814-.103-1.662-.197-2.218m-5.336 8.195s0-8.291.275-8.29c.213 0 .49 10.695.49 10.695-.381-.045-.765-1.76-.765-2.405"/></svg>�������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mongoose.svg���������������������������������0000664�0000000�0000000�00000004565�14753064456�0025463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.014 7.37a9 9 0 0 0-.808.025c-.218.017-.434.072-.65.11.229.118.456.213.68.315q.339.155.629.387c-.253-.097-.499-.208-.752-.298a8 8 0 0 0-1.624-.421c-.273-.037-.546-.073-.819.005-.276.078-.354.18-.38.458-.04.46.098.887.281 1.298a4.4 4.4 0 0 0 1.185 1.573 4.6 4.6 0 0 0 1.305.787q.205.078.411.155l-.009.032c-.263-.072-.532-.126-.787-.22a4.1 4.1 0 0 1-1.222-.73 4.2 4.2 0 0 1-1.007-1.22 3.4 3.4 0 0 1-.43-1.609l-.012.005C4.891 7.488.402 11.595.035 11.94l-.034.014q-.002.007.003.016L0 11.974l.005-.002q.007.012.013.024c.087-.019.173-.042.26-.054l.069-.01c.324-.115.655-.205.997-.253.484-.069.985-.159 1.48-.156.468.002.943.074 1.402.153q.193.034.38.087c.335.075.65.21.933.391l.06.03c.403.19.758.47 1.038.811.052.057.141.116.187.178.096.114.142.236.303.363v-1.737h2.01l.939 1.733.942-1.733h2.07v3.357l.343-.226s.375-1 2.116-1.14l1.996-.064c-.308-.637-.307-.637-.159-.83.147-.19 1.28-.314 1.48-.433l2.912-.588c.007-.022.015.012.03.007.072-.022.147-.037.25-.061l.66-.16c.042-.025.093-.034.14-.05.308-.107.577-.245.726-.573.145-.319.339-.616.41-.967.022-.111.003-.208-.078-.288a.73.73 0 0 0-.35-.171c-.421-.173-.84-.35-1.264-.513-.261-.101-.529-.185-.795-.27a31 31 0 0 0-.794-.243q-.366-.106-.736-.205c-.24-.066-.48-.133-.72-.192-.282-.07-.565-.13-.847-.195-.215-.05-.428-.102-.644-.146q-.351-.07-.706-.13c-.302-.053-.602-.112-.905-.153-.366-.05-.734-.082-1.101-.125q-.518-.061-1.038-.07m-3.303.767a.2.2 0 0 1 .056.007c.42.13.83.277 1.216.491.365.203.695.45.979.756.012.013.02.028.036.05l-.645-.293-.021.026.37.551-.022.022a2 2 0 0 0-.665-.322l-.02.02.633.74-.416-.136-.017.02c.163.27.376.505.58.775-.354-.2-.665-.42-.956-.669a4.5 4.5 0 0 1-1.01-1.185c-.107-.19-.201-.385-.222-.606a.5.5 0 0 1 .011-.15.12.12 0 0 1 .113-.097m5.424.668c.154.002.311-.006.464.015.278.037.555.092.832.14.158.027.317.052.474.086q.446.098.89.2.294.068.587.14l-.329.161c-.365.027-.731.055-1.097.057a3.3 3.3 0 0 1-.675-.074c-.28-.058-.514-.196-.652-.466-.02-.04-.09-.063-.14-.078-.18-.054-.362-.1-.544-.168.063-.005.126-.014.19-.013m3.223 2.635.005.02q-.12.031-.239.067c-.455.14-.916.266-1.363.428-.28.101-.544.25-.81.388-.233.119-.315.322-.287.575.019.162.04.324.055.488a1.8 1.8 0 0 1-.288-.701c-.035-.169.058-.273.18-.365.238-.178.496-.318.777-.41.35-.117.702-.233 1.059-.325.251-.065.513-.09.77-.133q.071-.014.141-.032M9.141 13.955v2.676h1.869l.064-.066v-2.61l-.97 1.495z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mongoosedotws.svg����������������������������0000664�0000000�0000000�00000002365�14753064456�0026540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a4.86 4.86 0 0 0-3.456 1.43L1.43 8.545a4.88 4.88 0 0 0-.09 6.804L7.41 9.28a1.45 1.45 0 0 1 .37-1.434 1.47 1.47 0 0 1 2.079 0c.58.58.58 1.512.006 2.085-.37.37-.89.496-1.368.388l-6.099 6.1 6.147 6.146a4.887 4.887 0 0 0 6.911.007l6.243-6.243-2.951-2.951a1.45 1.45 0 0 1-1.434-.37 1.47 1.47 0 0 1 0-2.08 1.474 1.474 0 0 1 2.085-.006c.37.37.496.89.388 1.368l2.963 2.963a4.87 4.87 0 0 0-.185-6.708l-7.108-7.108A4.88 4.88 0 0 0 12 0m3.16 7.4q.184-.002.361.04c.257.054.508.185.711.388.185.185.317.412.37.657a1.43 1.43 0 0 1-.364 1.428 1.47 1.47 0 0 1-1.368.388l-1.416 1.416a1.457 1.457 0 0 1-1.756 1.756 1.4 1.4 0 0 1-.71-.388 1.35 1.35 0 0 1-.371-.657A1.43 1.43 0 0 1 10.98 11a1.47 1.47 0 0 1 1.368-.388l1.416-1.416a1.46 1.46 0 0 1 1.396-1.795zm.033.733a.736.736 0 0 0-.52 1.254.737.737 0 0 0 1.046.006.737.737 0 0 0-.006-1.046.73.73 0 0 0-.52-.214m-6.374.018a.735.735 0 0 0-.52 1.254.737.737 0 0 0 1.046.006.737.737 0 0 0-.006-1.045.73.73 0 0 0-.52-.215m9.54 3.077a.75.75 0 0 0-.526.22.736.736 0 0 0 1.04 1.04.737.737 0 0 0 .006-1.046.73.73 0 0 0-.52-.214m-6.329.078a.72.72 0 0 0-.41.119 1 1 0 0 0-.12.096q-.051.054-.095.119a.74.74 0 0 0 .102.926.735.735 0 0 0 1.039-1.04.74.74 0 0 0-.516-.22"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/monica.svg�����������������������������������0000664�0000000�0000000�00000002252�14753064456�0025072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.99 1.13C1.88 1.13 0 3.369 0 5.575c0 1.4.827 2.505 1.73 3.127a17 17 0 0 0-.978 3.608c-1.205 7.394 5.824 10.56 11.441 10.56s11.85-3.612 11.063-10.56a14.7 14.7 0 0 0-.883-3.682C23.235 7.993 24 6.92 24 5.574c0-2.206-1.879-4.443-3.99-4.443-1.534 0-3.215.245-4.02 1.224a11.8 11.8 0 0 0-3.797-.609c-1.462 0-2.856.218-4.14.666-.787-1.026-2.5-1.281-4.063-1.281zm8.13 2.772c4.505 0 8.24 2.896 8.872 8.467.632 5.57-4.367 8.467-8.873 8.467s-10.146-2.539-9.18-8.467 4.674-8.467 9.18-8.467zM7.604 9.08c-1.752 0-2.771 2.205-2.771 4.377s.666 2.845 2.264 3.227c1.598.38 3.423-1.692 3.423-3.864S9.357 9.08 7.604 9.08m8.852 0c-1.753 0-2.916 1.569-2.916 3.74s1.824 4.245 3.422 3.864 2.266-1.055 2.266-3.227-1.02-4.377-2.772-4.377m-8.38 1.58c.922 0 1.1.71 1.1 1.635 0 .924-.57 1.633-1.493 1.633-.435 0-.566-.11-.762-.36-.22-.28-.384-.603-.33-1.273.09-1.119.562-1.635 1.484-1.635zm7.91 0c.922 0 1.392.516 1.482 1.635.054.67-.11.994-.33 1.273-.197.25-.327.36-.762.36-.923 0-1.494-.709-1.494-1.633s.18-1.635 1.103-1.635zm-3.925 5.004c-.868 0-1.724.089-1.724.637s.868 1.826 1.736 1.826c.869 0 1.711-1.278 1.711-1.826s-.854-.637-1.723-.637"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/monkeytie.svg��������������������������������0000664�0000000�0000000�00000005305�14753064456�0025632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.002 0C9.79 0 7.575.71 5.722 2.127a.47.47 0 0 0-.093.658.46.46 0 0 0 .654.093 9.404 9.404 0 0 1 11.44 0c.202.16.5.116.653-.093a.474.474 0 0 0-.093-.658A10.32 10.32 0 0 0 12.003 0zm.03 3.11a11.95 11.95 0 0 0-5.966 1.608 13.8 13.8 0 0 0-4.83 4.747c-.303.536.444 1.021.8.497a12.8 12.8 0 0 1 4.494-4.43 11 11 0 0 1 5.5-1.481c1.905.003 3.78.507 5.432 1.462 1.71.977 3.26 2.457 4.503 4.45a.46.46 0 0 0 .414.23.46.46 0 0 0 .4-.252.46.46 0 0 0-.022-.474v-.002c-1.31-2.12-2.982-3.71-4.834-4.77A11.8 11.8 0 0 0 12.03 3.11zM12 6.164a9.3 9.3 0 0 0-3.71.73c-1.643.706-2.97 1.88-4.064 3.343-1.096 1.46-1.97 3.213-2.73 5.102a.474.474 0 0 0 .262.612c.375.134.552-.144.6-.267.985-2.46 2.16-4.624 3.697-6.14a8.3 8.3 0 0 1 2.6-1.784 8.4 8.4 0 0 1 3.34-.648 9.5 9.5 0 0 1 2.98.447 7.35 7.35 0 0 1 3.39 2.25c.898 1.057 1.557 2.423 1.917 4.09.172.83.255 1.675.255 2.524a9.2 9.2 0 0 1-.17 1.837.47.47 0 0 0 .355.556.47.47 0 0 0 .558-.36c.134-.67.2-1.351.19-2.033 0-.916-.09-1.827-.272-2.722a11.2 11.2 0 0 0-1.207-3.2 8.4 8.4 0 0 0-3.288-3.232c-1.358-.731-2.95-1.104-4.7-1.104zm.102 3.076a7.5 7.5 0 0 0-2.214.3 5.3 5.3 0 0 0-1.45.7 6.6 6.6 0 0 0-1.787 1.906c-.702 1.093-1.19 2.33-1.698 3.479a17 17 0 0 1-.793 1.626c-.27.478-.594.92-.964 1.314-.418.459.216 1.094.665.662v.002c.763-.78 1.28-1.754 1.75-2.776.348-.76.664-1.541 1.007-2.277q.371-.814.846-1.567A5.4 5.4 0 0 1 9.2 10.865c.718-.425 1.603-.685 2.802-.685a5.8 5.8 0 0 1 2.565.538c.518.25.986.59 1.385 1.003.6.633 1.05 1.395 1.322 2.226a8.6 8.6 0 0 1 .438 2.776c-.002.98-.145 1.955-.425 2.895a8.9 8.9 0 0 1-1.21 2.563.47.47 0 0 0 .122.65.465.465 0 0 0 .646-.11 9.9 9.9 0 0 0 1.34-2.836c.3-1.024.458-2.09.46-3.157a9.8 9.8 0 0 0-.385-2.753c-.39-1.317-1.084-2.5-2.128-3.363a5.8 5.8 0 0 0-1.824-1.008 7.5 7.5 0 0 0-2.204-.364zm-.094 3.083c-.726.01-1.425.27-1.986.73a3.7 3.7 0 0 0-1.23 1.779c-.116.358-.185.749-.283 1.189a9 9 0 0 1-.782 2.249c-.438.838-1.11 1.757-2.22 2.72a.474.474 0 0 0-.052.66c.168.198.465.22.66.05.7-.6 1.32-1.285 1.846-2.038a8.7 8.7 0 0 0 1.266-2.705c.11-.393.187-.754.254-1.065a9 9 0 0 1 .19-.777c.168-.525.49-.988.922-1.33a2.26 2.26 0 0 1 1.405-.522c.31.005.617.077.898.213.458.23.84.57 1.12.996.282.414.44.9.45 1.402.02 1.09-.11 2.18-.397 3.234a9.36 9.36 0 0 1-2.403 4.09c-.18.186-.18.48.002.665.272.242.566.113.662-.005a10.3 10.3 0 0 0 2.642-4.495 12.5 12.5 0 0 0 .438-3.49 3.4 3.4 0 0 0-.284-1.327 3.84 3.84 0 0 0-1.245-1.567 3.13 3.13 0 0 0-1.873-.656m-.015 3.08a.47.47 0 0 0-.466.47h.002a7.5 7.5 0 0 1-.244 1.972 7.3 7.3 0 0 1-1.163 2.395 20.4 20.4 0 0 1-1.994 2.308.474.474 0 0 0 .015.667.47.47 0 0 0 .662-.016c1.05-1.096 1.958-2.1 2.622-3.252a7.5 7.5 0 0 0 .76-1.868c.186-.72.282-1.461.274-2.205a.47.47 0 0 0-.468-.47z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/monkeytype.svg�������������������������������0000664�0000000�0000000�00000001570�14753064456�0026032�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 14.4a.8.8 0 1 1 0 1.6.8.8 0 0 1 0-1.6m-11.2 0h4.8a.8.8 0 1 1 0 1.6H8.8a.8.8 0 1 1 0-1.6M7.2 9.6a.8.8 0 0 1 .8.8V12a.8.8 0 1 1-1.6 0v-1.6a.8.8 0 0 1 .8-.8m-3.999.759A2.4 2.4 0 0 1 7.2 8.612a2.4 2.4 0 0 1 4 1.788V12a.8.8 0 1 1-1.6 0v-1.6a.8.8 0 1 0-1.6 0V12a.8.8 0 1 1-1.6 0v-1.6a.8.8 0 1 0-1.6 0V12a.8.8 0 1 1-1.6 0v-1.6zM17.6 12.8v2.4a.8.8 0 1 1-1.6 0v-2.4h-2.306c-.493 0-.894-.358-.894-.8s.401-.8.894-.8h6.212c.493 0 .894.358.894.8s-.401.8-.894.8zM16.8 8H20a.8.8 0 1 1 0 1.6h-3.2a.8.8 0 1 1 0-1.6M4 14.4h1.6a.8.8 0 1 1 0 1.6H4a.8.8 0 1 1 0-1.6M13.2 8h.4a.8.8 0 1 1 0 1.6h-.4a.8.8 0 1 1 0-1.6M1.6 14.4H0V8.8c0-2.208 1.792-4 4-4h16c2.208 0 4 1.792 4 4v6.4c0 2.208-1.792 4-4 4H4c-2.208 0-4-1.792-4-4v-1.6h1.6v1.6A2.4 2.4 0 0 0 4 17.6h16a2.4 2.4 0 0 0 2.4-2.4V8.8A2.4 2.4 0 0 0 20 6.4H4a2.4 2.4 0 0 0-2.4 2.4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/monogame.svg���������������������������������0000664�0000000�0000000�00000000610�14753064456�0025422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 10.356V7.083a7.083 7.083 0 0 0-12-5.098A7.083 7.083 0 0 0 0 7.083v9.834A7.083 7.083 0 0 0 7.083 24h9.834a7.083 7.083 0 0 0 7.07-7.51H24v-4.332H9.834v4.332h9.834v.427a2.75 2.75 0 0 1-2.751 2.751H7.083a2.75 2.75 0 0 1-2.751-2.751V7.083a2.751 2.751 0 1 1 5.502 0v3.273h4.332V7.083a2.751 2.751 0 1 1 5.502 0v3.273z"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/monoprix.svg���������������������������������0000664�0000000�0000000�00000000511�14753064456�0025473�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.072 8.042C21.072 3.612 16.981 0 12 0 6.991 0 2.928 3.612 2.928 8.042S6.99 16.085 12 16.085c.282 0 .564-.029.847-.043.62.339.747.706.761.988.142 1.608-2.44 5.08-4.303 6.49l.254.48c.113-.028 10.723-3.47 11.429-15.026.056-.283.07-.565.084-.875v-.043z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/monster.svg����������������������������������0000664�0000000�0000000�00000000204�14753064456�0025306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h5.42V12.39l6.58 5.8 6.58-5.8V24H24V0L12 11.23z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/monzo.svg������������������������������������0000664�0000000�0000000�00000000765�14753064456�0024775�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.244 1.174a.44.44 0 0 0-.271.13l-3.97 3.97-.001.001c3.884 3.882 8.093 8.092 11.748 11.748v-8.57L4.602 1.305a.44.44 0 0 0-.358-.131m15.483 0a.44.44 0 0 0-.329.13L12.25 8.456v8.568L24 5.275c-1.316-1.322-2.647-2.648-3.97-3.97a.44.44 0 0 0-.301-.131zM0 5.979l.002 10.955c0 .294.118.577.326.785l4.973 4.976c.28.282.76.083.758-.314V12.037zm23.998.003-6.06 6.061v10.338c-.004.399.48.6.76.314l4.974-4.976a1.1 1.1 0 0 0 .326-.785z"/></svg>�����������mkdocs-material-9.6.4/material/templates/.icons/simple/moo.svg��������������������������������������0000664�0000000�0000000�00000001416�14753064456�0024417�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.964 24c-2.525 0-4.801-1.107-6.34-3.138-1.109-1.417-1.661-3.078-1.661-4.86 0-.555.06-1.109.185-1.602.299-1.785 1.59-4.678 3.93-8.678C9.805 2.767 11.215.554 11.289.554c.123-.246.308-.554.675-.554.372 0 .555.308.741.555 0 0 1.477 2.215 3.199 5.168 2.342 4 3.631 6.893 3.939 8.678.131.492.193 1.045.193 1.6a7.82 7.82 0 0 1-1.65 4.861C16.766 22.834 14.424 24 11.964 24m0-2.092c1.905 0 3.629-.861 4.801-2.341a6.05 6.05 0 0 0 1.229-3.69c0-.432-.059-.801-.123-1.229-.246-1.354-1.293-3.692-3.074-6.833-1.357-2.399-2.525-4.121-2.525-4.121l-.31-.433-.254.37s-1.171 1.785-2.521 4.125c-1.843 3.149-2.893 5.474-3.072 6.839-.061.431-.123.8-.123 1.229 0 1.355.429 2.587 1.229 3.693 1.11 1.538 2.831 2.399 4.74 2.399z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/moodle.svg�����������������������������������0000664�0000000�0000000�00000001445�14753064456�0025106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m1.135 5.74.035.123-2.736 1.99c.369.261.796.61 1.007.844l.077.104C10.23 11.058 7.78 11.857 5.2 10.982l.02-.16h-.002A6.5 6.5 0 0 1 5.16 9.36c-.75-.003-1.53-.04-2.283-.066l-.516.018c-.1.844-.035 2.135-.025 2.322.35 1.282.298 2.29.295 3.53-.413-1.004-.9-2.098-.416-3.468l-.01-.318c0-.014-.068-1.153.037-2.062l-.408.013-.037-.119C5.792 6.84 8.503 6.218 13.135 5.74m1.623 2.514q1.83 0 2.904.807 1.22.9 1.22 2.658v5.685h-2.734v-5.369q0-1.683-1.39-1.683-1.391 0-1.39 1.683v5.37h-2.735v-5.37q-.001-.776-.293-1.193a5.5 5.5 0 0 0 1.572-1.725q.046.044.088.088.756-.952 2.758-.951m-9.61 3.234c.932.3 1.862.393 2.737.287a4 4 0 0 0-.01.26v5.37H5.143v-5.686q0-.118.005-.23"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/moonrepo.svg���������������������������������0000664�0000000�0000000�00000000766�14753064456�0025472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.514 7.342c.197.52.3 1.071.302 1.627 0 3.525-3.818 5.728-6.87 3.965a4.58 4.58 0 0 1-2.289-3.965c0-3.323 3.428-5.538 6.458-4.176a10.6 10.6 0 0 0-6.46-2.181C4.772 2.614.005 7.381 0 13.265c.002 5.883 4.772 10.653 10.655 10.655 5.883-.004 10.651-4.773 10.655-10.655.002-2.11-.623-4.17-1.796-5.923m-4.673-2.676c0 3.525 3.816 5.729 6.868 3.966A4.58 4.58 0 0 0 24 4.666c0-3.526-3.816-5.727-6.87-3.967a4.59 4.59 0 0 0-2.289 3.967"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/simple/moq.svg��������������������������������������0000664�0000000�0000000�00000005305�14753064456�0024422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.134.001a13 13 0 0 0-1.281.049c-.799.066-1.771.27-2.611.547-.68.216-2.673 1.152-2.673 1.248 0 .024-.072.073-.156.115-.306.138-1.334.973-1.91 1.543-.57.577-1.405 1.602-1.543 1.909-.042.084-.09.156-.113.156C1.75 5.568.815 7.55.61 8.18c-.81 2.504-.81 5.145.006 7.625.198.6.821 1.958 1.11 2.403.066.096.174.282.24.408.066.12.152.223.182.223.036 0 .058.028.058.064 0 .114.727.973 1.375 1.615 1.381 1.375 2.95 2.32 4.871 2.932.739.234 1.428.365 2.485.473 1.009.102 1.106.102 2.115 0 .583-.06 1.29-.16 1.578-.227.697-.162 1.833-.553 2.463-.853.487-.229 1.573-.853 1.795-1.034.054-.042.318-.25.582-.455a12.7 12.7 0 0 0 1.885-1.886c.204-.265.415-.528.457-.582.18-.223.811-1.31 1.04-1.79.293-.624.683-1.771.85-2.486.067-.294.17-1.002.224-1.572.096-.973.096-1.099 0-2.108-.283-2.918-1.405-5.344-3.405-7.35-.642-.648-1.501-1.375-1.615-1.375-.036 0-.067-.024-.067-.06 0-.03-.102-.114-.222-.18a6 6 0 0 1-.408-.24c-.427-.276-1.795-.907-2.39-1.106a12 12 0 0 0-3.685-.619m-7.39 8.311a2 2 0 0 1 .21 0c.19.013.382.062.567.15l.252.121.324-.132c.804-.337 1.712-.006 1.922.697.102.348.102 5.013 0 5.115-.084.084-.937.096-1.069.012-.078-.048-.089-.397-.107-2.402-.018-2.552-.013-2.504-.35-2.354l-.142.072v2.336c0 2.672.041 2.47-.541 2.47s-.541.196-.541-2.434c0-2.012-.012-2.317-.096-2.395-.048-.054-.132-.096-.174-.096s-.126.042-.174.096c-.084.078-.095.378-.095 2.36 0 1.68-.019 2.281-.073 2.335-.114.114-.98.097-1.1-.023-.083-.09-.095-.348-.077-2.51.018-2.168.03-2.432.127-2.648.208-.458.649-.734 1.136-.77m6.825 0q.422-.024.877.09c.576.144 1.122.607 1.404 1.19.156.33.156.336.156 1.831 0 1.46-.004 1.508-.142 1.772-.3.576-.667.9-1.28 1.147-.432.168-1.272.162-1.789-.018-.48-.174-.931-.59-1.177-1.1l-.174-.36V9.862l.156-.299a2.32 2.32 0 0 1 1.969-1.25m6.139.086a3 3 0 0 1 .36 0q.211.014.425.059c.174.036.426.12.558.185.252.126.75.572.75.674 0 .03.036.102.084.15.042.054.132.246.192.426.168.48.17 2.624.008 3.14-.169.53-.548.99-1.1 1.35-.456.295-.462.302-.426.59.036.367.246.666.582.834.33.168.36.222.36.684 0 .396-.114.607-.33.607-.247 0-.828-.246-1.092-.468-.51-.415-.86-1.086-.86-1.663 0-.246-.09-.45-.191-.45-.228 0-.92-.637-1.16-1.063-.24-.439-.282-.786-.258-2.21l.017-1.322.182-.353c.345-.685 1.069-1.115 1.899-1.17Zm-5.983 1.139c-.132 0-.33.05-.443.103-.114.054-.266.18-.332.27-.115.156-.125.263-.143 1.41-.012 1.093 0 1.267.09 1.453.336.649 1.32.649 1.656 0 .09-.186.102-.36.09-1.453-.018-1.147-.028-1.254-.143-1.41-.162-.222-.475-.373-.775-.373m6.018.076a.8.8 0 0 0-.194.021c-.168.042-.427.3-.54.528-.073.156-.09.433-.09 1.334.006 1.26.037 1.386.421 1.668.277.204.792.21 1.08.011.397-.264.427-.406.409-1.757-.018-1.165-.024-1.214-.162-1.418a1.3 1.3 0 0 0-.264-.288c-.1-.058-.425-.103-.66-.1"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/moqups.svg�����������������������������������0000664�0000000�0000000�00000003130�14753064456�0025144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.219 0c-2.367 0-3.55 0-4.824.41A5.05 5.05 0 0 0 .402 3.457c-.4 1.297-.4 2.501-.4 4.91v7.266c0 2.409 0 3.613.4 4.91a5.05 5.05 0 0 0 2.993 3.047c1.273.41 2.457.41 4.824.41h7.562c2.367 0 3.55 0 4.824-.41a5.05 5.05 0 0 0 2.993-3.047c.4-1.297.4-2.501.4-4.91V8.367c.003-2.409.002-3.613-.398-4.91A5.05 5.05 0 0 0 20.607.41C19.334 0 18.151 0 15.785 0ZM6.502 6.918a2.62 2.62 0 0 1 1.76.533c.266.226.456.528.545.865a4.3 4.3 0 0 1 3.056-1.398c.433-.017.86.102 1.221.342.342.266.547.67.559 1.103a5 5 0 0 1 1.564-1.123 4 4 0 0 1 1.563-.322 2.12 2.12 0 0 1 1.386.467c.418.402.63.973.573 1.55a5 5 0 0 1-.04.6c-.037.302-.044.359-.216 1.154l-.614 2.903a4.3 4.3 0 0 0-.115.842c-.02.16.032.321.143.439.145.09.316.13.486.113a1.76 1.76 0 0 0 1.037-.4q.345-.257.62-.588a.08.08 0 0 1 .134.066h.004l-.395 1.895a.55.55 0 0 1-.228.348c-.676.453-1.477.772-2.395.775a2.12 2.12 0 0 1-1.386-.467 1.9 1.9 0 0 1-.573-1.55 6.3 6.3 0 0 1 .155-1.276q.364-1.69.716-3.38.098-.416.114-.843a.54.54 0 0 0-.143-.439.8.8 0 0 0-.484-.115c-.38.018-.744.159-1.037.4a2.95 2.95 0 0 0-1.125 1.756l-1.157 5.463a.3.3 0 0 1-.294.24H9.98a.146.146 0 0 1-.142-.178l1.314-6.191a4.2 4.2 0 0 0 .133-.957.52.52 0 0 0-.142-.42.75.75 0 0 0-.465-.113c-.372.015-.73.149-1.02.383l-.01.005a3.06 3.06 0 0 0-1.187 1.838l-1.15 5.44a.244.244 0 0 1-.239.193h-2.08a.16.16 0 0 1-.156-.191l1.37-6.414c.056-.315.065-.586.067-.702a.76.76 0 0 0-.191-.533.56.56 0 0 0-.418-.21 1.4 1.4 0 0 0-.61.142 3.5 3.5 0 0 0-.59.353 3.1 3.1 0 0 0-.624.602l.451-2.094a.45.45 0 0 1 .201-.289 6 6 0 0 1 .45-.256 3.4 3.4 0 0 1 1.56-.361"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/morrisons.svg��������������������������������0000664�0000000�0000000�00000007562�14753064456�0025670�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.514 11.486c0 .28-.224.523-.523.523a.51.51 0 0 1-.524-.523c0-.28.225-.523.524-.523.28 0 .504.243.523.523m2.318-2.112a.52.52 0 0 1-.505.523.52.52 0 0 1-.523-.504.52.52 0 0 1 .504-.524.507.507 0 0 1 .524.505m-1.234-1.57c0 .71-.617 1.103-.617 1.103s-.617-.393-.617-1.103.617-1.103.617-1.103.617.392.617 1.103M10 8.869s-.15.71.355 1.215 1.215.337 1.215.337.15-.71-.355-1.215C10.71 8.72 10 8.869 10 8.869m-.822 1.178c.616.355.654 1.065.654 1.065s-.654.337-1.271-.019c-.617-.355-.654-1.084-.654-1.084s.654-.317 1.27.038m-.317 2.336s.168.71.822.953c.673.243 1.253-.205 1.253-.205s-.15-.71-.823-.953-1.252.205-1.252.205m4.448-.747c-.299.635-1.028.728-1.028.728s-.392-.616-.093-1.252c.299-.635 1.028-.729 1.028-.729s.392.598.093 1.253m2.785-1.608s-.654-.336-1.27.019c-.617.355-.655 1.084-.655 1.084s.654.336 1.271-.019c.617-.374.654-1.084.654-1.084m-1.757 3.308c-.672.243-1.252-.205-1.252-.205s.15-.71.823-.953 1.252.186 1.252.186-.15.73-.823.972M5.607 17.28c-.86 0-1.514-.616-1.514-1.439 0-.822.655-1.44 1.514-1.44.86 0 1.514.618 1.514 1.44 0 .823-.654 1.44-1.514 1.44m0-2.15c-.392 0-.691.318-.691.729s.299.729.691.729c.393 0 .692-.318.692-.73 0-.41-.299-.728-.692-.728m6.804 2.056v-2.673a.04.04 0 0 0-.037-.037h-.73a.04.04 0 0 0-.037.037v2.673a.04.04 0 0 0 .038.037h.729a.04.04 0 0 0 .037-.037m4.449.093c-.86 0-1.514-.616-1.514-1.439 0-.822.654-1.44 1.514-1.44s1.514.618 1.514 1.44c0 .823-.654 1.44-1.514 1.44m0-2.15c-.393 0-.692.318-.692.729s.3.729.692.729.691-.318.691-.73c0-.41-.299-.728-.691-.728m4.486 2.056v-1.701c0-.71-.337-1.065-.99-1.065-.319 0-.636.13-.842.373v-.261a.04.04 0 0 0-.037-.038h-.71a.04.04 0 0 0-.038.038v2.654a.04.04 0 0 0 .037.037h.73a.04.04 0 0 0 .037-.037v-1.234c0-.112.018-.224.037-.317a.64.64 0 0 1 .617-.468c.243 0 .336.112.336.449v1.57a.04.04 0 0 0 .038.037h.729c.037 0 .056-.018.056-.037M3.7 17.224h-.748a.04.04 0 0 1-.037-.037c0-.841-.056-1.794-.094-2.094-.28.393-.523.823-.71 1.271 0 .02-.019.02-.037.02h-.411c-.02 0-.038 0-.038-.02a6.5 6.5 0 0 0-.71-1.27c-.019.299-.094 1.252-.094 2.093a.04.04 0 0 1-.037.037H.037A.04.04 0 0 1 0 17.187c0-1.14.075-2.636.28-3.402 0-.019.02-.019.038-.037h.58c.018 0 .018 0 .018.018.374.412.691.879.934 1.365a6.8 6.8 0 0 1 .935-1.365l.019-.018h.58a.04.04 0 0 1 .037.037c.186.766.28 2.262.28 3.402.037.019.019.037 0 .037m4.617-.037V16.12q0-.195.056-.392a.66.66 0 0 1 .635-.486h.169l.018-.019v-.729a.04.04 0 0 0-.037-.037h-.094a.89.89 0 0 0-.747.411v-.336a.04.04 0 0 0-.038-.038h-.71a.04.04 0 0 0-.037.038v2.673a.04.04 0 0 0 .037.037h.73c0-.019.018-.037.018-.056m2 .037h-.73a.04.04 0 0 1-.037-.037v-2.673a.04.04 0 0 1 .038-.037h.71a.04.04 0 0 1 .037.037v.336a.98.98 0 0 1 .748-.41h.094a.04.04 0 0 1 .037.037v.71c0 .019 0 .019-.019.019 0 0-.018.018-.037 0h-.131a.66.66 0 0 0-.635.486q-.057.195-.057.392v1.066c.02.056.02.074-.018.074.018 0 0 0 0 0m4.747-.86c0 .58-.43.898-1.158.898-.43 0-.767-.15-1.14-.412-.02 0-.02-.018-.02-.037v-.019l.318-.486c0-.018.02-.018.038-.018h.018c.318.205.543.299.823.299.187 0 .299-.056.299-.168v-.02c0-.13-.112-.186-.411-.28l-.112-.037c-.468-.13-.898-.336-.898-.86v-.018c0-.524.43-.86 1.103-.86.337 0 .654.093.954.261.018 0 .018.02.018.038v.019l-.28.542c0 .018-.019.018-.038.018h-.018c-.28-.13-.449-.187-.636-.187-.168 0-.28.075-.28.169v.018c0 .131.168.187.448.262l.094.037c.449.113.878.337.878.841m8.038-.86-.094-.037c-.28-.074-.448-.13-.448-.261v-.02c0-.111.112-.167.28-.167.187 0 .374.056.636.187h.018c.019 0 .019 0 .038-.02l.299-.485v-.019c0-.018 0-.018-.019-.037a1.9 1.9 0 0 0-.953-.262c-.673 0-1.103.318-1.103.86v.019c0 .523.43.729.897.86l.112.037c.28.093.412.15.412.28v.019c-.02.112-.113.168-.3.168-.28 0-.504-.093-.822-.299h-.019c-.018 0-.018 0-.037.019l-.318.486v.018c0 .02 0 .02.019.038.374.262.71.411 1.14.411.73 0 1.159-.318 1.159-.878v-.02c-.019-.522-.449-.747-.897-.896m-10.617-2c0 .28-.224.504-.505.504a.503.503 0 0 1-.504-.504c0-.28.224-.505.504-.505.28.019.505.224.505.505"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/moscowmetro.svg������������������������������0000664�0000000�0000000�00000001033�14753064456�0026176�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.603 11.85-2.481-6.26-2.092 3.66-2.092-3.66-2.481 6.262H6.74v.941h3.736v-.941h-.553l.538-1.555 1.569 2.57 1.569-2.57.538 1.555h-.553v.941h3.751v-.941zm5.335-1.912A9.933 9.933 0 0 0 12 0C6.516 0 2.062 4.453 2.062 9.938c0 2.75 1.121 5.23 2.914 7.023a.804.804 0 0 0 1.375-.568.83.83 0 0 0-.239-.582 8.3 8.3 0 0 1-2.42-5.873c0-4.588 3.72-8.324 8.308-8.324s8.324 3.736 8.324 8.324a8.3 8.3 0 0 1-2.436 5.888l-7.024 7.023L12 24l7.039-7.039a9.9 9.9 0 0 0 2.899-7.023"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/motorola.svg���������������������������������0000664�0000000�0000000�00000000771�14753064456�0025464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12C24.002 5.375 18.632.002 12.007 0zm7.327 18.065s-.581-2.627-1.528-4.197c-.514-.857-1.308-1.553-2.368-1.532-.745 0-1.399.423-2.2 1.553q-.704 1.156-1.235 2.403s-.29-.675-.63-1.343a8 8 0 0 0-.605-1.049c-.804-1.13-1.455-1.539-2.2-1.553-1.049-.021-1.854.675-2.364 1.528-.948 1.574-1.528 4.197-1.528 4.197h-.864l4.606-15.12 3.56 11.804.024.021.024-.021 3.56-11.804 4.61 15.113z"/></svg>�������mkdocs-material-9.6.4/material/templates/.icons/simple/movistar.svg���������������������������������0000664�0000000�0000000�00000001753�14753064456�0025475�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.512 5.187c-1.113.018-3.165.567-4.102 4.401-.409 1.67-.567 3.413-.217 5.485.322 1.912.893 3.562 1.278 4.471.132.314.339.64.498.842.456.579 1.217.542 1.536.384.348-.172.748-.586.605-1.534-.07-.458-.272-1.127-.386-1.499-.349-1.141-.814-2.518-.854-3.5-.054-1.311.463-1.483.806-1.56.576-.126 1.06.508 1.52 1.303.548.949 1.488 2.63 2.255 3.915.692 1.16 1.97 2.401 4.02 2.316 2.091-.087 3.633-.886 4.427-3.402.594-1.882.999-3.289 1.651-4.729.75-1.657 1.75-2.543 2.592-2.272.782.25.977 1.016.986 2.14.009.996-.107 2.093-.196 2.898-.032.293-.09.881-.066 1.207.047.643.325 1.284 1.046 1.386.77.109 1.387-.506 1.633-1.25.098-.293.18-.742.225-1.06.226-1.608.284-2.689.183-4.333-.12-1.924-.495-3.678-1.152-5.196-.627-1.452-1.635-2.382-2.927-2.464-1.43-.091-3.072.86-3.934 2.704-.793 1.7-1.428 3.444-1.814 4.336-.39.903-.965 1.459-1.847 1.552-1.08.114-2.01-.67-2.692-1.79-.593-.975-1.77-2.832-2.4-3.456-.592-.584-1.267-1.317-2.674-1.295"/></svg>���������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mozilla.svg����������������������������������0000664�0000000�0000000�00000000712�14753064456�0025272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm10.13 6.706c1.481 0 2.858.706 3.352 2.224.565-1.377 1.73-2.224 3.353-2.224 1.87 0 3.565 1.13 3.565 3.564v4.765h1.412v2.26h-4.341v-5.86c0-1.8-.6-2.47-1.765-2.47-1.412 0-1.976 1.024-1.976 2.435V15h1.376v2.259h-4.341v-5.824c0-1.8-.6-2.47-1.765-2.47-1.412 0-1.976 1.024-1.976 2.435V15H9v2.259H2.647V15h1.377V9.176H2.647V6.918H6.99V8.47c.635-1.095 1.693-1.765 3.14-1.765z"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mpv.svg��������������������������������������0000664�0000000�0000000�00000000703�14753064456�0024425�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m.312 22.775c-6.153 0-11.142-4.988-11.142-11.142S6.16.491 12.312.491c6.154 0 11.142 4.989 11.142 11.142s-4.988 11.142-11.142 11.142m.643-20.464a8.587 8.587 0 1 0 0 17.174 8.587 8.587 0 0 0 0-17.174m-1.113 15.257a5.517 5.517 0 1 1 0-11.034 5.517 5.517 0 0 1 0 11.034m-1.399-7.995L14.4 11.97l-3.957 2.518z"/></svg>�������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mqtt.svg�������������������������������������0000664�0000000�0000000�00000001023�14753064456�0024604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.657 23.994h-9.45A1.21 1.21 0 0 1 0 22.788v-9.18h.071c5.784 0 10.504 4.65 10.586 10.386m7.606 0h-4.045C14.135 16.246 7.795 9.977 0 9.942V6.038h.071c9.983 0 18.121 8.044 18.192 17.956m4.53 0h-.97C21.754 12.071 11.995 2.407 0 2.372v-1.16C0 .55.544.006 1.207.006h7.64C15.733 2.49 21.257 7.789 24 14.508v8.291c0 .663-.544 1.195-1.207 1.195M16.713.006h6.092A1.19 1.19 0 0 1 24 1.2v5.914c-.91-1.242-2.046-2.65-3.158-3.762C19.588 2.11 18.122.987 16.714.005Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/msi.svg��������������������������������������0000664�0000000�0000000�00000017516�14753064456�0024425�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.362 10.042c-1.044.56-2.193 1.05-3.7 1.142a4.26 4.26 0 0 1-2.321-.556c-.155-.09-.51-.26-.503-.457.011-.242.582-.303.816-.306 5.262-.178 6.29-2.472 6.286-2.563 0-.083-.09.011-.09.011-1.38 1.777-4.937 1.973-4.937 1.973-.877.121-1.761-.08-2.215-.529a.8.8 0 0 1-.215-.39c-.102.122-.17.25-.291.379-.114.128-.458.499-.484.06-.019-.325.076-.393.2-.586a5 5 0 0 1 .193-.276c.374-.49.684-.997 1.123-1.402.037-.038.11-.075.09-.11a6.22 6.22 0 0 0-3.624 4.166 6.5 6.5 0 0 0-.23 1.72c0 .62.082 1.209.21 1.75.258 1.073.56 1.817 1.033 2.66.155-.211.219-.491.306-.752.098-.276.166-.642.302-.87.321-.528 2.079-.396 1.599-.763a4 4 0 0 1-.397-.359 7 7 0 0 1-.673-.831c-.412-.582-.756-1.285-.79-2.2.469 1.21 1.18 2.222 2.313 2.774.378.182.813.378 1.323.367-1.341-.253-2.162-1.285-2.717-2.374-.087-.17-.208-.332-.25-.476a.4.4 0 0 1-.011-.189c.076-.336.484-.17.726-.083a8.5 8.5 0 0 0 3.602.438 6.7 6.7 0 0 0 1.874-.476c.545-.227 1.04-.518 1.452-.896m-2.34 2.657a8 8 0 0 1-2.4-.189 4 4 0 0 1-1.754-.865c-.181-.166-.295-.469-.597-.397-.026.22.151.378.272.514a3.5 3.5 0 0 0 1.573.896c.835.257 2.003.283 2.906.038M11.35 10.22c-.178 0-.771-.098-.786.098-.012.121.245.212.381.25.53.136 1.255.086 1.784.037a8.5 8.5 0 0 0 2.098-.465c.99-.362 1.795-.88 2.457-1.55.181-.18.162-.234-.034-.067a6.4 6.4 0 0 1-1.769 1.032c-1.172.472-2.517.665-4.131.665m6.576-6.717c.136.034.299.027.37.068.133.08.133.273.224.431-.54.091-.718-.302-.972-.585.091.007.227.052.378.086M7.325 16.57c-.393-.613-2.39-3.19-.832-6.989 2.128-5.178 7.88-3.772 8.421-3.557.064-.434.257-.884.764-.994a1.7 1.7 0 0 1 .612 0c-.522.193-1.077.427-1.05.976.022.49.52.835.936.91 0 0 .33.072.567-.075a.02.02 0 0 0 .016-.012c.064-.037.12-.075.204-.105a1 1 0 0 1 .529-.023c.049.011.143.09.227.087.052 0 .136-.076.211-.087.2-.038.397.072.582.147.125.053.465.099.488.273.011.12-.178.264-.28.34a1.8 1.8 0 0 1-.423.23c.56-.045 1.682-.48 1.512.246-.015.076-.057.14-.042.178.578-.197.76-.685.673-1.372-.076.022-.14.17-.2.215v-.004c0-.196.01-.491-.125-.612.068.359-.121.53-.382.654a6 6 0 0 0-.695-.975c-.027.113-.012.26-.046.37a.52.52 0 0 0-.438-.351c-.129-.02-.272.022-.427 0-.2-.034-.431-.174-.446-.325-.027-.25.423-.367.65-.428.049.163.117.295.17.45a1.7 1.7 0 0 1 .964-.43c.102 0 .329.037.363.113.079.162-.129.355-.19.427-.037.038-.098.08-.079.102.39-.102.567-.355.84-.544.143.189.196.59.173.858.31-.303.318-.824.291-1.376a1.76 1.76 0 0 1 .749.597 1.94 1.94 0 0 0-.68-.756c-.1-.064-.228-.094-.303-.166-.068-.068-.151-.303-.242-.322-.113-.022-.265.11-.397.118-.238.019-.367-.144-.416-.378-.578.158-.8-.197-.937-.632-.023-.075-.023-.18-.06-.264-.042-.106-.273-.212-.394-.257a1.1 1.1 0 0 0-.548-.068c-.17.026-.294.113-.491.12-.476.027-.971-.18-1.357-.37A8.3 8.3 0 0 1 12.896.113c-.03-.038-.053-.094-.11-.113.125.385.348.707.556 1.005.639.915 1.47 1.58 2.283 2.215a1.3 1.3 0 0 1-.805-.208 4 4 0 0 1-.65-.416c-.85.726-2.548.81-3.916 1.134.567-.019 1.417.163 1.916.246h-.015c-2.389.094-4.449.794-5.877 2.147.37-.136.706-.306 1.118-.405-.59.537-1.171 1.096-1.644 1.75-.468.647-.967 1.33-.986 2.404.287-.28.578-.642.979-.847a13 13 0 0 0-.85 2.268c-.197.718-.492 1.913-.02 2.582.03-.238.03-.51.19-.624.28.661.76 1.996 2.26 3.319m5.68-14.095c.114.102.333.273.465.265.208 0 .314-.189.458-.272-.719-.321-1.388-.786-2.034-1.168.098.151.227.28.355.435.239.272.477.506.756.74m-8.05 5.16c.075.155 0 .366.011.517.234-.635.688-1.134 1.119-1.572.023-.026.087-.08.049-.072-.227.11-.355.314-.665.34-.174-.196-.174-.793.06-.922.288.087.477-.162.446-.427-.056-.423-.578-.707-.816-.877.125.159.367.303.423.537.02.083.015.242-.075.268-.133.038-.208-.11-.34-.09-.114.018-.167.219-.19.359a2.8 2.8 0 0 0-.03.529c0 .087.034.219-.03.283-.08-.038-.098-.136-.132-.215-.125-.276-.34-.647-.254-1.013.057-.023.163.007.2-.03.02-.227-.143-.443-.29-.586a.98.98 0 0 0-.926-.227c.211.038.68.068.684.302 0 .087-.102.212-.129.28-.166.408.023.93.22 1.194.113.152.28.295.181.575-.128-.008-.246-.09-.363-.155-.166-.095-.34-.185-.423-.329-.083-.162-.09-.325-.204-.446-.284-.321-.896-.544-1.342-.272.378-.011.73.011.877.26a1.1 1.1 0 0 1 .12.454c.008.068-.01.16.023.208.057.098.235.083.34.144.14.08.227.298.382.435a1 1 0 0 0 .133.102c.242.143.816.196.937.446m3.046 10.057c-.578.306-.914.907-.986 1.67.113-.302.43-.46.767-.615.216-.099.601-.197.662-.397.053-.155.037-.405-.038-.507-.083-.113-.227-.147-.405-.15m1.406 2.683a1.71 1.71 0 0 0-.907 1.38c.117-.28.424-.398.734-.53.189-.076.517-.162.578-.317.045-.125.045-.326-.023-.416-.064-.095-.283-.167-.382-.121m1.701 1.625c-.321.287-.506.88-.476 1.444.08-.321.325-.446.605-.631.162-.102.491-.261.552-.42a.47.47 0 0 0-.118-.461c-.181-.151-.453-.026-.567.072m2.627.567c-.313.276-.415.831-.34 1.432.076-.302.238-.45.454-.635.128-.113.332-.264.374-.42.068-.256-.208-.51-.491-.377m.544-6.085c.174.022.34.113.476.158.011-.049-.05-.071-.08-.098-.385-.329-1.277-.196-1.473.208.034.072.155.076.173.162.016.091-.117.223-.185.295-.177.193-.344.303-.544.439-.098.068-.185.181-.302.17.06-.238.189-.333.29-.537.076-.136.25-.499.152-.646-.057-.095-.355-.046-.4-.151-.039-.087.03-.197.079-.25.14-.151.43-.234.687-.287-.393 0-1.103.132-1.27.457-.113.22-.015.53.231.556.095.306-.151.684-.333.824a.34.34 0 0 1-.15.083c-.303.038-.22-.31-.296-.53-.026-.075-.075-.139-.12-.2-.084.783.086 1.554.264 2.17-.019-.215.015-.43.151-.495.31-.151.726.075 1.089.098.378.019.597-.212.858-.22.136 0 .234.092.359.061.087-.022.159-.181.234-.28a1 1 0 0 1 .265-.256c.359-.208.73.075.967.208-.211-.39-.914-.688-1.451-.428-.113.053-.204.193-.336.265-.205.121-.48.087-.745.076-.09-.008-.189.019-.26-.042.067-.34.392-.351.634-.499.348-.208.68-.525.718-1.02 0-.068-.026-.163.027-.227.049-.068.174-.076.29-.06m3.138 5.204c-.136-.17-.446-.125-.488.087-.038.215.151.438.284.574a1.13 1.13 0 0 0 .514.36c.011 0 .019.018.022 0a1 1 0 0 1-.215-.477c-.038-.211-.026-.43-.12-.548m.585-9.343c.359.026.847.14.979.348-.087-.284-.631-1.867-3.156-1.758.503.151 1.077.321 1.512.597.132.08.325.204.302.405-.026.223-.446.434-.748.457-.325.023-.575-.128-.764-.227.321.409.847.715 1.591.635-.018-.094-.143-.204-.09-.347.038-.099.2-.125.374-.114m2.086 6.04c-.098.023-.219.163-.208.302.02.19.254.28.465.265a1.18 1.18 0 0 0 .718-.291c-.396.102-.672-.34-.975-.276m.34-.922c.235-.34.31-.896.393-1.414.042-.276.08-.529.16-.733.09-.22.241-.393.294-.616.05-.216-.038-.37-.113-.548-.174-.4-.348-.798-.673-1.002-.386-.245-.987-.177-1.535-.132a18 18 0 0 0-.767.076 5 5 0 0 1-.794.064c-1.096-.02-1.727-.548-1.848-1.542 0 0 0-.012-.011-.008-.151.99.408 1.576 1.21 1.75.064.136.21.257.162.446-.053.227-.424.234-.684.2a1.4 1.4 0 0 1-.658-.28 3.4 3.4 0 0 1-.854-1 2.7 2.7 0 0 0 2.721 1.836c.48-.034.919-.14 1.3-.287-.555 0-1.292.019-1.451-.367a.5.5 0 0 1 .06-.438c.47.056.889-.046 1.282-.068a2.7 2.7 0 0 1 .96.117 1.22 1.22 0 0 1 .642.438c.272.4.303.987.204 1.561a7 7 0 0 1-.453 1.41c-.37.922-1.111 2.317-1.697 2.835-.703.593-1.584.937-2.608 1.202a6.7 6.7 0 0 1-1.323.208c-1.054.045-1.901-.102-2.46-.598a2.44 2.44 0 0 1-.605-.914 6.5 6.5 0 0 1-.363-3.04c-.038-.007-.064.035-.083.046-.03.03-.057.065-.09.091-.371.333-1.146.813-1.834.488a.64.64 0 0 1-.314-.288c-.189-.363.095-.676.314-.846.162-.125.382-.284.654-.216.162.038.416.246.416.416 0 .098-.223.28-.394.28-.177 0-.29-.144-.377-.227-.016-.027-.046-.087-.087-.06-.19.83.986.8 1.39.404.348-.34.48-1.062.163-1.52-.189-.264-.54-.366-.93-.31-.347.053-.812.152-1.028.314-.302.235-.34.726-.46 1.111a3.7 3.7 0 0 1-.454.972c-.027.038-.072.064-.065.11.465.03.862.15 1.002.487a.9.9 0 0 1 .038.465c-.065.302-.238.555-.102.915.226.597 1.092.71 1.36 1.254.114.223.091.537.235.756.177.269.597.238.986.303.22.045.439.09.605.192.321.19.332.632.718.768.23.075.43-.038.624-.091.15-.042.31-.064.453-.09.337-.054.582.026.9.12a1.4 1.4 0 0 0 .895 0c.257-.098.443-.276.643-.438.408-.325.809-.631 1.353-.805.552-.174 1.21-.261 1.512-.643a2.1 2.1 0 0 0 .302-.839c.14-.631.344-1.202.639-1.652.151-.226.37-.4.525-.623m1.24-4.12c-.087.117-.28.132-.408.212-.027.46.476-.02.408-.216m.19 2.192c-.186.121-.553-.064-.711.095-.084.605.653.159.729-.068 0-.015 0-.03-.023-.027"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/msibusiness.svg������������������������������0000664�0000000�0000000�00000001215�14753064456�0026166�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.215 10.794 3.78 2.416h-2.663l-3.78-2.416zM5.656 8.518l-.438 1.626-.175.65-.652 2.416-.175.65-.437 1.622h1.869l.437-1.622.175-.65.651-2.416.175-.65.438-1.626zm6.06 5.342-.437 1.622h4.947l2.543-1.622zm3.556-5.342-2.548 1.626h7.086l.438-1.626zm6.86 0-.438 1.626-.175.65-.651 2.416-.175.65-.437 1.622h1.869l.437-1.622.175-.65.651-2.416.175-.65L24 8.518zm-20.255 0-.438 1.626-.175.65-.651 2.416-.175.65L0 15.482h1.869l.437-1.622.175-.65.651-2.416.175-.65.438-1.626zm7.536 0-.438 1.626-.175.65-.651 2.416-.175.65-.437 1.622h1.869l.437-1.622.175-.65.651-2.416.175-.65.438-1.626z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mta.svg��������������������������������������0000664�0000000�0000000�00000001162�14753064456�0024404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.171 10.07-1.293-.109v6.861l-1.926.34-.004-7.371-1.637-.145V6.944l4.86.85zm3.668 5.884-1.142.198-.134-1-1.113.145-.14 1.1-1.473.26 1.458-8.651 1.385.24zm-1.48-2.492-.305-2.642h-.068l-.31 2.682zM10.991 24c6.59 0 11.932-5.373 11.932-12 0-6.628-5.342-12-11.932-12C6.86 0 3.22 2.112 1.077 5.323l3.307.583.91 6.965c.003-.012.066-.004.066-.004l.998-6.615 3.309.58v10.735l-2.089.367V13.32s.078-1.987.032-2.327c0 0-.09.002-.092-.005l-1.246 7.18-2.075.366L2.672 10.8l-.092-.007c-.032.28.112 2.707.112 2.707v5.298l-1.364.24C3.498 22.044 7.016 24 10.991 24"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mtr.svg��������������������������������������0000664�0000000�0000000�00000001251�14753064456�0024424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.987 1.913c-1.9 0-3.693.321-5.298.883C2.756 4.268 0 7.826 0 12c0 4.147 2.756 7.706 6.689 9.204 1.632.562 3.425.883 5.325.883a16.7 16.7 0 0 0 5.27-.856C21.217 19.759 24 16.174 24 12.027V12c0-4.174-2.783-7.732-6.716-9.204a16.3 16.3 0 0 0-5.297-.883M10.89 5.257h2.167v3.827c1.525-.402 2.702-1.766 2.782-3.399l2.168.027c-.16 2.73-2.22 4.95-4.897 5.378v1.793c2.676.428 4.736 2.675 4.924 5.404l-2.167.028c-.08-1.633-1.258-2.997-2.783-3.425v3.853h-2.167V14.89a3.775 3.775 0 0 0-2.81 3.425l-2.167-.028a5.87 5.87 0 0 1 4.923-5.404v-1.766C8.187 10.716 6.1 8.468 5.94 5.74l2.167-.027A3.71 3.71 0 0 0 10.89 9.11Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mubi.svg�������������������������������������0000664�0000000�0000000�00000001650�14753064456�0024561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.357.033A3.357 3.357 0 0 0 0 3.39a3.357 3.357 0 0 0 3.357 3.357A3.357 3.357 0 0 0 6.713 3.39 3.357 3.357 0 0 0 3.357.033m8.643 0A3.357 3.357 0 0 0 8.645 3.39 3.357 3.357 0 0 0 12 6.746a3.357 3.357 0 0 0 3.357-3.357A3.357 3.357 0 0 0 12 .033m-8.643 8.61A3.357 3.357 0 0 0 0 12a3.357 3.357 0 0 0 3.357 3.355A3.357 3.357 0 0 0 6.713 12a3.357 3.357 0 0 0-3.356-3.357m8.643 0A3.357 3.357 0 0 0 8.645 12 3.357 3.357 0 0 0 12 15.355 3.357 3.357 0 0 0 15.357 12 3.357 3.357 0 0 0 12 8.643m8.643 0A3.357 3.357 0 0 0 17.287 12a3.357 3.357 0 0 0 3.356 3.355A3.357 3.357 0 0 0 24 12a3.357 3.357 0 0 0-3.357-3.357m-17.286 8.61A3.357 3.357 0 0 0 0 20.612a3.357 3.357 0 0 0 3.357 3.356 3.357 3.357 0 0 0 3.356-3.356 3.357 3.357 0 0 0-3.356-3.357Zm8.643 0a3.357 3.357 0 0 0-3.355 3.358A3.357 3.357 0 0 0 12 23.967a3.357 3.357 0 0 0 3.357-3.356A3.357 3.357 0 0 0 12 17.254z"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mui.svg��������������������������������������0000664�0000000�0000000�00000002551�14753064456�0024420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.229 15.793a.67.67 0 0 0 .244-.243.67.67 0 0 0 .09-.333l.012-3.858a.67.67 0 0 1 .09-.333.67.67 0 0 1 .245-.243L23 9.58a.67.67 0 0 1 .333-.088.67.67 0 0 1 .333.09.67.67 0 0 1 .244.243.67.67 0 0 1 .089.333v7.014a.67.67 0 0 1-.335.578l-7.893 4.534a.67.67 0 0 1-.662 0l-6.194-3.542a.67.67 0 0 1-.246-.244.67.67 0 0 1-.09-.335v-3.537q.001-.007.008-.004.01.003.008-.005v-.004q0-.004.004-.007l5.102-2.93c.004-.003.002-.01-.003-.01l-.004-.002-.001-.004.01-3.467a.67.67 0 0 0-.333-.58.67.67 0 0 0-.667 0L8.912 9.799a.67.67 0 0 1-.665 0l-3.804-2.19a.667.667 0 0 0-.999.577v6.267a.67.67 0 0 1-.332.577.67.67 0 0 1-.332.09.67.67 0 0 1-.333-.088L.336 13.825a.67.67 0 0 1-.246-.244.67.67 0 0 1-.09-.336L.019 2.292a.667.667 0 0 1 .998-.577l7.23 4.153a.67.67 0 0 0 .665 0l7.228-4.153a.67.67 0 0 1 .333-.088.67.67 0 0 1 .333.09.67.67 0 0 1 .244.244.67.67 0 0 1 .088.333V13.25c0 .117-.03.232-.089.334a.67.67 0 0 1-.245.244l-3.785 2.18a.67.67 0 0 0-.245.245.67.67 0 0 0-.089.334.67.67 0 0 0 .09.334.67.67 0 0 0 .247.244l2.088 1.189a.7.7 0 0 0 .33.087.67.67 0 0 0 .332-.089zm.438-9.828a.67.67 0 0 0 .09.335.67.67 0 0 0 .248.244.67.67 0 0 0 .67-.008l2.001-1.2a.67.67 0 0 0 .237-.243.67.67 0 0 0 .087-.329V2.32a.67.67 0 0 0-.091-.335.67.67 0 0 0-.584-.33.67.67 0 0 0-.334.094l-2 1.2a.67.67 0 0 0-.238.243.67.67 0 0 0-.086.329z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mulesoft.svg���������������������������������0000664�0000000�0000000�00000001262�14753064456�0025462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12c0 6.628 5.373 12 12 12 6.628 0 12-5.373 12-12S18.627 0 12 0m0 1.055c6.045 0 10.945 4.9 10.945 10.945S18.045 22.945 12 22.945 1.055 18.045 1.055 12c0-6.044 4.9-10.945 10.945-10.945M7.33 4.364s-2.993 1.647-3.96 5.25c-.647 2.224-.39 4.702.903 6.914a8.96 8.96 0 0 0 3.95 3.596l.802-3.062c-1.801-.85-3.11-2.571-3.11-4.79a5.65 5.65 0 0 1 .943-3.141l3.752 5.866h2.792l3.753-5.866a5.65 5.65 0 0 1 .943 3.14c0 2.22-1.308 3.94-3.109 4.791l.802 3.062a8.96 8.96 0 0 0 3.948-3.594c1.294-2.213 1.551-4.692.904-6.916l.002.003c-.966-3.603-3.96-5.251-3.96-5.251l-.336.527-4.341 6.797h-.003L7.656 4.876z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/muller.svg�����������������������������������0000664�0000000�0000000�00000003650�14753064456�0025127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.433 14.671c-.056-1.287-.138-2.808-.138-3.013 0-.623.097-2.252.21-2.64.138-.47.76-.582.76-1.133 0-.868-1.388-.91-1.996-.91-1.833 0-1.843.414-2.553 1.711-.5.914-1.067 2.584-1.496 2.487-.613-.138-1.471-2.405-1.956-3.217-.419-.704-.388-.98-2.012-.98-1.113 0-2.4.189-2.4.98 0 .567.792.664.93.95.153.322.209.75.209 1.578 0 2.002-.128 3.288-.24 4.447-.107 1.134-.94.486-.94 1.272 0 .72 1.261.76 1.747.76.54 0 2.027-.03 2.027-.816 0-.746-.889-.056-.889-1.532 0-.455-.138-2.283.291-2.283.25 0 .399.419.485.598l.802 1.797c.832 1.864.945 1.833 1.17 1.864.439.056.939-1.522 1.245-2.155.332-.705.777-1.92 1.205-1.92.486 0 .21 2.375.154 2.61-.097.444-.72.525-.72 1.01 0 .884 1.9.828 2.471.828.608 0 2.507.04 2.507-.884 0-.623-.832-.403-.873-1.409m5.004-4.157c-.75.787-1.317 1.15-2.343 1.492 1.031.362 1.598.735 2.343 1.531 1.297 1.39 1.609 2.635 1.548 4.632v5.81h-5.827c-1.833.016-3.104-.31-4.498-1.536-.843-.74-1.241-1.307-1.66-2.35-.347 1.032-.715 1.604-1.511 2.35-1.39 1.312-2.748 1.65-4.647 1.537H.005v-5.811c-.05-1.772.312-3.12 1.553-4.504.766-.858 1.358-1.261 2.435-1.66-1.077-.382-1.67-.776-2.435-1.618C.29 9.003.015 7.68.005 5.842V.001h5.837c1.9-.016 3.15.29 4.534 1.542.848.77 1.241 1.368 1.624 2.446.429-1.083.848-1.675 1.726-2.446C15.105.343 16.386.052 18.158 0h5.827v5.841c.092 1.87-.225 3.284-1.548 4.672zm-.893-8.042h-3.79c-1.68-.04-2.88.22-4.197 1.317-.76.634-1.123 1.119-1.531 2.017-.383-.893-.736-1.378-1.471-2.017-1.312-1.138-2.41-1.297-4.259-1.317H2.512l-.005 3.784c-.02 1.532.169 2.599 1.088 3.87.669.925 1.22 1.384 2.252 1.87-1.037.505-1.588.98-2.252 1.924-.888 1.262-1.088 2.155-1.072 3.794v3.769h3.773c1.793-.01 2.957-.158 4.274-1.302.73-.639 1.083-1.124 1.456-2.017.413.898.78 1.378 1.542 2.017 1.312 1.093 2.446 1.378 4.187 1.312h3.789v-3.779c-.01-1.521-.082-2.568-.97-3.824-.685-.965-1.282-1.44-2.375-1.895 1.098-.47 1.69-.955 2.375-1.93.878-1.25.934-2.323.97-3.794z"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mullvad.svg����������������������������������0000664�0000000�0000000�00000003252�14753064456�0025271�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.371 0 0 5.362 0 12c0 6.629 5.381 12 12 12s12-5.371 12-12S18.629 0 12 0m1.651 3.363c1.908-.02 4.059 1.28 4.701 2.951.381 1 .267 2.086-.057 3.086-.266.819-1.238 2-.876 2.886-.143-.038-3.124-1.048-3.98-1.505-1.344-.838-2.544-1.867-3.448-2.657l-.03-.029-3.047-1.447a1 1 0 0 1-.104-.058c.419.029 2.085.23 2.828.058-.143-.39-.105-.896.095-1.372.286-.657.83-1.095 1.343-1.095.105 0 .2.019.296.057A3.4 3.4 0 0 1 12.39 3.6a3.5 3.5 0 0 1 1.26-.237zm-2.499.97c-.457 0-.962.42-1.228 1.02-.2.447-.229.933-.086 1.304a.81.81 0 0 0 .41.457.7.7 0 0 0 .285.058c.457 0 .962-.42 1.22-1.02.161-.362.209-.742.152-1.076a.91.91 0 0 0-.467-.676.6.6 0 0 0-.286-.067m0 .286c.057 0 .115.01.172.038.152.067.266.238.304.467.048.276.01.6-.133.905-.21.485-.619.838-.962.838a.4.4 0 0 1-.162-.029.48.48 0 0 1-.257-.295c-.114-.286-.085-.705.076-1.086.21-.495.62-.838.962-.838M3.01 6.362 2.943 7.79l.133.037.943-1.123-.648 1.104c1.01-.2 2.658-.247 4.42-.114l1.837.895c.915.8 2.124 1.839 3.486 2.686l3.553 1.4.438.638h-.372l.781.943-.714-.114c.01.066.714.876.714.876l-.562.076c.02.067.572.753.572.753l-.42-.03c.03.106.677 1.153.677 1.163s-.229-.057-.381-.105c.543 1.21 1.324 1.448 1.362 1.943-2.667 3.419-9.667 3.952-12.771.124-.067-.314.619-.838 1.057-1.429.21-.286.4-.59.533-.905.19-.58-.21-.533-.476-1.028-.047-.086-.086-.2-.047-.305.057-.19.38-.324.438-.286 1.314.877 3.762.59 5.266-1.142 0 0 .458.114.696.18l-.686-.457-.048-.028c-.028.019-.067.038-.095.057-3.124 2.38-5.152 1.352-5.152 1.352a3.2 3.2 0 0 0-.438-.39c-2.124-1.495-3.639-3.505-4.324-4.81l-.257 1.381.057-1.838-.914 1.276.676-1.371c-.505-.067-.79-.572-.676-.981.094-.426.63-.738 1.096-.527z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/multisim.svg���������������������������������0000664�0000000�0000000�00000002437�14753064456�0025474�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.364 5.778c-.162.323-.566.565-.97.565-.646 0-1.131-.484-1.131-1.13s.485-1.132 1.13-1.132c.405 0 .728.242.97.565h3.556V.121H0V2.87h15.03c.162-.324.566-.566.97-.566.647 0 1.131.485 1.131 1.131S16.646 4.566 16 4.566c-.404 0-.727-.243-.97-.566H0v6.545h2.101v-4.04h10.586c.162-.323.566-.566.97-.566.646 0 1.131.485 1.131 1.132s-.485 1.131-1.131 1.131c-.404 0-.728-.242-.97-.566H3.313v3.071h11.798c.162-.323.566-.566.97-.566.646 0 1.131.485 1.131 1.132s-.485 1.131-1.131 1.131c-.404 0-.728-.242-.97-.566H0v3.071h6.546c.161-.323.565-.566.97-.566.646 0 1.13.485 1.13 1.132s-.484 1.131-1.13 1.131c-.405 0-.728-.242-.97-.566H0v3.071h7.677c.161-.323.565-.566.97-.566.646 0 1.13.485 1.13 1.132s-.484 1.131-1.13 1.131c-.405 0-.728-.242-.97-.566H0v3.637h12.606v-7.435c-.323-.161-.566-.565-.566-.97 0-.646.485-1.13 1.132-1.13s1.131.484 1.131 1.13c0 .405-.242.728-.566.97v7.435h2.667v-5.657c-.323-.161-.566-.565-.566-.97 0-.646.485-1.13 1.132-1.13s1.131.484 1.131 1.13c0 .404-.242.728-.566.97v5.657h2.667v-8.323c-.323-.162-.566-.566-.566-.97 0-.647.485-1.132 1.132-1.132s1.131.485 1.131 1.132c0 .404-.242.727-.566.97v8.323H24v-13.9h-2.99c-.162.324-.566.566-.97.566-.646 0-1.13-.484-1.13-1.13s.484-1.132 1.13-1.132c.404 0 .728.242.97.566H24V5.696z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mumble.svg�����������������������������������0000664�0000000�0000000�00000004206�14753064456�0025106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .08A12 11.92 0 0 0 0 12a12 11.92 0 0 0 12 11.92A12 11.92 0 0 0 24 12 12 11.92 0 0 0 12 .08M9.463 1.56c.393 0 .763.21.944.57-.013 1.409-.007 2.819-.008 4.23v.001c.013.303-.019.633.004.951s.102.627.341.88c.357.447.942.468 1.45.446h-.003.003c.736.093 1.468-.476 1.519-1.225v-.001c.013-1.74.008-3.479 0-5.218.115-.387.562-.669.973-.617h.006c1.457-.108 3.002.616 3.661 1.953l.001.002c.252.448.328 1.023.381 1.496v4.258a3.4 3.4 0 0 0-.757-.174l-.037-.004v.281h-.022v-.193c0-.148-.13-.265-.285-.265h-.36a.3.3 0 0 0-.102.018c-.002-1.298.007-2.592-.01-3.895v-.001a2.2 2.2 0 0 0-.571-1.358c-.337-.368-.801-.606-1.33-.567l-.03.002v3.995c.104 1.115-.673 2.259-1.791 2.469-.742.09-1.498.028-2.252.047h-.002c-1.184.1-2.306-.88-2.39-2.06-.027-1.475-.004-2.952-.012-4.428v-.032h-.032c-.508-.006-.945.241-1.26.606a2.25 2.25 0 0 0-.534 1.319C6.94 6.383 6.95 7.71 6.948 9.04a.3.3 0 0 0-.156-.045H6.44a.273.273 0 0 0-.28.265v.122h-.007v-.217l-.036.004a3.4 3.4 0 0 0-.733.166V5.273c.007-.371.045-.734.139-1.117.401-1.573 2.014-2.627 3.604-2.588l.082.003.08.001h.003a1 1 0 0 1 .17-.013zM17.275 9h.36c.122 0 .217.088.217.196v10.736c0 .107-.095.196-.218.196h-.36c-.122 0-.217-.089-.217-.196V9.196c0-.108.095-.196.218-.196M6.44 9.064h.353q.062 0 .11.03l.013.007a.2.2 0 0 1 .035.028q.053.053.054.131v10.737c0 .108-.093.196-.212.196H6.44c-.12 0-.212-.088-.212-.196V9.26c0-.108.093-.196.212-.196m11.567.118q.083.011.164.025c2.061.356 3.662 2.656 3.662 5.452 0 2.869-1.686 5.217-3.826 5.476zM6.09 9.241v10.952c-2.14-.259-3.826-2.607-3.826-5.476 0-2.775 1.578-5.063 3.618-5.444l.011-.002.034-.006zm11.83 10.642h.022v.326l.036-.004a3 3 0 0 0 .371-.062.2.2 0 0 1-.09.173l-.002.001v.001s-.618.496-.947.707c-.314.187-.49.338-.758.455a2 2 0 0 1-.19.067 1 1 0 0 1-.14.032h-2.206l-.02-.002a.68.68 0 0 0 .052-.456h2.068s.127-.011.28-.085c.19-.091.39-.225.577-.347.209-.137.403-.283.607-.435q.039-.03.072-.06c.148-.008.268-.12.268-.263zm-5.684.39c.487 0 .928.115 1.244.299.317.184.506.433.506.705s-.19.52-.506.705c-.316.183-.757.299-1.244.299-.488 0-.93-.116-1.245-.3-.317-.183-.506-.433-.506-.704 0-.272.19-.521.506-.705s.757-.3 1.245-.3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/muo.svg��������������������������������������0000664�0000000�0000000�00000001641�14753064456�0024425�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.887 6.016 0 10.903v7.048h19.108l4.873-4.874v-7.06Zm5.46 3.57a.295.295 0 0 1 .314.314v3.652h3V9.9a.303.303 0 0 1 .331-.314.295.295 0 0 1 .315.314v3.72a.506.506 0 0 1-.56.552h-3.18a.502.502 0 0 1-.551-.552V9.9a.303.303 0 0 1 .33-.314zm-5.113.041a.6.6 0 0 1 .465.22l1.638 1.99L8.96 9.81a.47.47 0 0 1 .378-.183h.164a.18.18 0 0 1 .183.183.2.2 0 0 1-.046.128L7.668 12.4a.43.43 0 0 1-.33.19.44.44 0 0 1-.323-.185l-1.45-1.753v3.246a.303.303 0 0 1-.331.315.295.295 0 0 1-.315-.315V9.942a.295.295 0 0 1 .315-.315m9.942 0h3.334a.502.502 0 0 1 .552.552v3.44a.502.502 0 0 1-.552.553h-3.334a.502.502 0 0 1-.552-.552v-3.44a.502.502 0 0 1 .552-.553m.093.62v3.304h3.148v-3.303zm-5.775.584c.032 0 .191.012.191.25v2.817a.303.303 0 0 1-.33.315.295.295 0 0 1-.315-.315V11.49a.6.6 0 0 1 .133-.378l.131-.164.012-.013c.058-.058.104-.104.178-.104M24 14.498l-3.486 3.486H24Z"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mural.svg������������������������������������0000664�0000000�0000000�00000000777�14753064456�0024756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.53 8.118H24v13.258h-3.47zM5.497 6.094A2.03 2.03 0 0 1 7.524 8.12h3.47a5.503 5.503 0 0 0-5.497-5.497A5.503 5.503 0 0 0 0 8.121h3.47a2.03 2.03 0 0 1 2.027-2.027m2.027 15.285 3.47-.002V8.12h-3.47v13.258zm8.952-.005v-3.468h-3.47l-2.013.001v3.47zm0-13.256a2.03 2.03 0 0 1 2.027-2.027V2.62a5.503 5.503 0 0 0-5.497 5.497v9.788h3.47zm4.055 0H24a5.503 5.503 0 0 0-5.497-5.497v3.47a2.03 2.03 0 0 1 2.027 2.027zM0 21.378h3.47V8.122H0V21.38z"/></svg>�mkdocs-material-9.6.4/material/templates/.icons/simple/musescore.svg��������������������������������0000664�0000000�0000000�00000005114�14753064456�0025631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.777 23.997a11.99 11.99 0 0 1-8.98-4.296 12 12 0 0 1-2.406-4.655A12.1 12.1 0 0 1 .273 9.44a11.9 11.9 0 0 1 1.72-4.064 12.06 12.06 0 0 1 4.056-3.799 11.9 11.9 0 0 1 4.13-1.44 12.2 12.2 0 0 1 3.693.007c1.708.27 3.302.89 4.751 1.848.873.577 1.692 1.29 2.385 2.08a11.97 11.97 0 0 1 2.68 5.196c.402 1.718.416 3.556.039 5.291a12 12 0 0 1-4.024 6.643 12 12 0 0 1-4.655 2.407c-.743.195-1.499.316-2.29.367a18 18 0 0 1-.809.026l-.172-.003zm-6.924-6.684a.5.5 0 0 0 .23-.133.55.55 0 0 0 .139-.232c.013-.043.014-.178.018-2.363.004-2.12.005-2.327.018-2.438.033-.298.076-.51.146-.72.101-.303.224-.516.406-.705.14-.144.26-.232.434-.315a1.8 1.8 0 0 1 .504-.148c.114-.017.382-.024.493-.012a1.8 1.8 0 0 1 1.308.807c.166.25.271.528.327.866l.017.106.004 2.438c.004 2.324.005 2.44.019 2.485a.56.56 0 0 0 .133.226.5.5 0 0 0 .201.128c.052.019.068.021.167.021a.46.46 0 0 0 .37-.145.5.5 0 0 0 .149-.3c.006-.042.008-.774.008-2.407 0-1.542.003-2.375.008-2.428q.071-.72.523-1.225c.183-.204.464-.39.73-.482.21-.074.394-.101.626-.095.304.01.55.066.8.186.284.136.514.341.668.597.178.294.28.662.299 1.083.002.053.013.491.023.973.022 1.002.024 1.063.04 1.238.072.787.307 1.426.711 1.935.087.11.311.333.417.417q.651.516 1.532.634c.177.024.507.03.68.012.797-.082 1.53-.463 2.015-1.046.373-.45.606-.99.704-1.64.046-.302.043-.143.046-2.506.003-2.417.007-2.223-.054-2.346a.48.48 0 0 0-.332-.251.58.58 0 0 0-.416.06c-.1.06-.19.183-.22.304-.009.031-.012.478-.016 2.22-.005 2.415 0 2.23-.055 2.51-.18.917-.81 1.522-1.73 1.66a2.4 2.4 0 0 1-.512-.008q-.695-.105-1.13-.557c-.332-.345-.53-.816-.601-1.432-.018-.151-.026-.387-.043-1.212-.018-.853-.026-1.05-.047-1.24-.129-1.123-.68-1.983-1.548-2.417a2.8 2.8 0 0 0-1.121-.294c-.55-.035-1.136.12-1.671.441a3 3 0 0 0-.813.707l-.038.049-.028-.038a3 3 0 0 0-.235-.261c-.457-.433-1.1-.722-1.78-.8a4 4 0 0 0-.65-.001c-.635.07-1.141.286-1.559.666-.48.437-.795 1.103-.912 1.926-.056.393-.057.436-.054 2.915l.002 2.184.022.064a.53.53 0 0 0 .359.339c.078.02.188.02.267 0zm11.99-8.863a.69.69 0 0 0 .546-.505.9.9 0 0 0 .008-.3.69.69 0 0 0-.455-.516.678.678 0 0 0-.895.649c0 .055.005.11.012.142a.684.684 0 0 0 .783.53zm-2.667-.138a.5.5 0 0 0 .32-.265c.046-.092.06-.158.067-.343a2.22 2.22 0 0 1 .617-1.49 1.93 1.93 0 0 1 1.146-.587c.145-.022.434-.024.581-.004q.46.065.822.3c.244.16.474.4.634.663.202.333.326.763.327 1.127q0 .148.036.26a.507.507 0 0 0 .94.068c.053-.111.06-.15.059-.35 0-.198-.01-.318-.043-.514-.217-1.298-1.165-2.294-2.426-2.545a2.5 2.5 0 0 0-.625-.055 3.03 3.03 0 0 0-2.738 1.638 3.3 3.3 0 0 0-.366 1.43c-.01.265.037.418.167.544a.51.51 0 0 0 .482.123"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/musicbrainz.svg������������������������������0000664�0000000�0000000�00000004710�14753064456�0026153�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.582 0 1.418 5.832v12.336L11.582 24V10.01L7.1 12.668v3.664q.015.168 0 .336c-.103.435-.54.804-1 1.111-.802.537-1.752.509-2.166-.111s-.141-1.631.666-2.168c.384-.28.863-.399 1.334-.332V6.619c0-.154.134-.252.226-.308L11.582 3zm.836 0v6.162c.574.03 1.14.16 1.668.387a2.23 2.23 0 0 0 1.656-.717 1.02 1.02 0 1 1 1.832-.803l.004.006a1.022 1.022 0 0 1-1.295 1.197c-.34.403-.792.698-1.297.85.34.263.641.576.891.928a1.04 1.04 0 0 1 .777.125c.768.486.568 1.657-.318 1.857s-1.574-.77-1.09-1.539q.03-.045.065-.09a3.6 3.6 0 0 0-1.436-1.166 4.1 4.1 0 0 0-1.457-.369v4.01c.855.06 1.256.493 1.555.834.227.256.356.39.578.402.323.018.568.008.806 0a5.4 5.4 0 0 1 .895.022c.94-.017 1.272-.226 1.605-.446a2.53 2.53 0 0 1 1.131-.463 1 1 0 0 1 .12-.263 1 1 0 0 1 .105-.137c.023-.025.047-.044.07-.066a4.8 4.8 0 0 1 0-2.405l-.012-.01a1.02 1.02 0 1 1 .692.272h-.057a4.3 4.3 0 0 0 0 1.877h.063a1.02 1.02 0 1 1-.545 1.883l-.047-.033a1 1 0 0 1-.352-.442 1.9 1.9 0 0 0-.814.354 3 3 0 0 1-.703.365c.757.555 1.772 1.6 2.199 2.299a1 1 0 0 1 .256-.033 1.02 1.02 0 1 1-.545 1.88l-.047-.03a1.017 1.017 0 0 1-.27-1.376 1 1 0 0 1 .051-.072c-.445-.775-2.026-2.28-2.46-2.387a4 4 0 0 0-1.31-.117c-.24.008-.513.018-.866 0-.515-.027-.783-.333-1.043-.629s-.51-.56-1.055-.611V18.5a2 2 0 0 0 .426-.135.3.3 0 0 1 .058-.027c.56-.267 1.421-.91 2.096-2.447a1.02 1.02 0 0 1-.27-1.344 1.02 1.02 0 1 1 .915 1.54 6.3 6.3 0 0 1-1.432 2.136 1.8 1.8 0 0 1 .691.306.67.67 0 0 0 .37.168 3.3 3.3 0 0 0 .888-.222 1.02 1.02 0 0 1 1.787-.79v-.005a1.02 1.02 0 0 1-.773 1.683 1.02 1.02 0 0 1-.719-.287 4 4 0 0 1-1.168.287h-.05a1.3 1.3 0 0 1-.71-.275c-.262-.177-.51-.345-1.402-.12a2.1 2.1 0 0 1-.707.2V24l10.164-5.832V5.832zm4.154 4.904a.352.352 0 0 0-.197.639l.018.01c.163.1.378.053.484-.108v-.002a.352.352 0 0 0-.303-.539zm-4.99 1.928L7.082 9.5v2l4.5-2.668zm8.385.38a.35.35 0 0 0-.295.165v.002a.35.35 0 0 0 .096.473l.013.01a.357.357 0 0 0 .487-.108.352.352 0 0 0-.301-.541zM16.09 8.647a.35.35 0 0 0-.277.163.355.355 0 0 0 .296.54c.482 0 .463-.73-.02-.703zm3.877 2.477a.35.35 0 0 0-.295.164.35.35 0 0 0 .094.475l.015.01a.357.357 0 0 0 .485-.11.352.352 0 0 0-.3-.539zm-4.375 3.594a.35.35 0 0 0-.291.172.35.35 0 0 0-.04.265.352.352 0 1 0 .33-.437zm4.375.789a.35.35 0 0 0-.295.164v.002a.35.35 0 0 0 .094.473l.015.01a.357.357 0 0 0 .485-.108.352.352 0 0 0-.3-.54zm-2.803 2.488v.002a.35.35 0 0 0-.223.084.352.352 0 0 0 .23.62.35.35 0 0 0 .23-.085.35.35 0 0 0 .12-.24.353.353 0 0 0-.35-.38h-.007Z"/></svg>��������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mxlinux.svg����������������������������������0000664�0000000�0000000�00000000672�14753064456�0025334�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.001 13.301 3.277 3.819-.75.9-2.133-2.521-1.131-1.338zM24 2.41v19.182c0 .655-.531 1.186-1.186 1.186H1.186A1.186 1.186 0 0 1 0 21.591V2.409c0-.655.531-1.186 1.186-1.186h21.628c.655 0 1.186.53 1.186 1.186zM21.759 19.5l-2.116-2.542-2.115-2.541-.586.704-3.25-3.788 4.913-5.73-1.175-1.008-4.76 5.549-4.743-5.527-1.947 1.67 5 5.827-.73.851L9.01 11.5l-3.384 4-3.385 4z"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/myanimelist.svg������������������������������0000664�0000000�0000000�00000001234�14753064456�0026156�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.273 7.247v8.423l-2.103-.003v-5.216l-2.03 2.404-1.989-2.458-.02 5.285H.001L0 7.247h2.203l1.865 2.545 2.015-2.546zm8.628 2.069.025 6.335h-2.365l-.008-2.871h-2.8c.07.499.21 1.266.417 1.779.155.381.298.751.583 1.128l-1.705 1.125c-.349-.636-.622-1.337-.878-2.082a9.3 9.3 0 0 1-.507-2.179c-.085-.75-.097-1.471.107-2.212a3.9 3.9 0 0 1 1.161-1.866c.313-.293.749-.5 1.1-.687s.743-.264 1.107-.359a7.4 7.4 0 0 1 1.191-.183c.398-.034 1.107-.066 2.39-.028l.545 1.749H14.51c-.593.008-.878.001-1.341.209a2.24 2.24 0 0 0-1.278 1.92l2.663.033.038-1.81zm3.992-2.099v6.627l3.107.032-.43 1.775h-4.807V7.187z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/myget.svg������������������������������������0000664�0000000�0000000�00000000331�14753064456�0024745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.96 0 1.1 4.34v14.28L11.9 24l11-5.38V13.8h-3.2v2.87l-7.8 3.83-7.64-3.83V8.02l7.64 3.72 10.8-5.6Zm-.24 3.53L16.02 6l-4.15 2.17-5.22-2.56Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/myob.svg�������������������������������������0000664�0000000�0000000�00000005003�14753064456�0024567�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.77 7.031c-.903 0-1.055.61-1.067.914v6.598h.633c.516.012.633-.316.645-.504v-.047c.398.422.949.656 1.57.656 1.347 0 2.449-1.171 2.449-2.695 0-1.547-1.102-2.719-2.45-2.719-.597 0-1.124.223-1.51.61V7.03zm.27 4.922c0-.82.585-1.488 1.312-1.488.738 0 1.324.644 1.324 1.488 0 .832-.586 1.465-1.324 1.465-.727 0-1.313-.656-1.313-1.465m-6.962 0c0 1.547 1.16 2.707 2.59 2.707 1.441 0 2.602-1.16 2.602-2.707 0-1.559-1.16-2.742-2.602-2.742-1.43 0-2.59 1.183-2.59 2.742m1.324 0c0-.89.575-1.523 1.266-1.523.703 0 1.277.632 1.277 1.523 0 .879-.574 1.488-1.277 1.488-.691 0-1.266-.609-1.266-1.488M3.961 9.95c-.363-.457-.937-.738-1.64-.738C.913 9.21 0 10.207 0 11.53v3.012h.434c.293-.023.867-.164.89-1.031v-2.004c0-.586.41-.996.996-.996.88 0 .961.703.961.996v3.035h.434c.293-.023.867-.164.89-1.02v-2.015c0-.586.422-.996.996-.996.88 0 .973.703.973.996v3.035h.434c.293-.023.879-.164.89-1.043V11.53c0-1.36-.843-2.32-2.296-2.32-.668 0-1.243.281-1.641.738zm7.746-.023-1.113 3.093-1.207-3.21c-.176-.504-.656-.481-.656-.481H7.699l2.051 5.051c0-.012 0-.012-.012-.012 0 0 .012 0 .012.012s.012.023.012.023l-.012-.023c.07.2.047.316-.012.516l-.047.129c-.234.597-.574.761-1.289.714v.012l.493 1.219c.925-.024 1.605-.328 2.074-1.477l2.46-6.164h-.925a.87.87 0 0 0-.797.598zM19.77 7.03c-.903 0-1.055.61-1.067.914v6.598h.633c.516.012.633-.316.645-.504v-.047c.398.422.949.656 1.57.656 1.348 0 2.45-1.172 2.45-2.695 0-1.547-1.103-2.719-2.45-2.719-.598 0-1.125.223-1.512.61V7.03zm.27 4.922c0-.82.585-1.488 1.312-1.488.738 0 1.324.644 1.324 1.488 0 .832-.586 1.465-1.324 1.465-.727 0-1.313-.656-1.313-1.465m-6.962 0c0 1.547 1.16 2.707 2.59 2.707 1.442 0 2.602-1.16 2.602-2.707 0-1.559-1.16-2.742-2.602-2.742-1.43 0-2.59 1.183-2.59 2.742m1.324 0c0-.89.575-1.523 1.266-1.523.703 0 1.277.632 1.277 1.523 0 .879-.574 1.488-1.277 1.488-.691 0-1.266-.61-1.266-1.488M3.961 9.949c-.363-.457-.937-.738-1.64-.738-1.407 0-2.321.996-2.321 2.32v3.012h.434c.293-.023.867-.164.89-1.031v-2.004c0-.586.41-.996.996-.996.88 0 .961.703.961.996v3.035h.434c.293-.023.867-.164.89-1.02v-2.015c0-.586.422-.996.996-.996.88 0 .973.703.973.996v3.035h.434c.293-.023.879-.164.89-1.043v-1.969c0-1.36-.843-2.32-2.296-2.32-.668 0-1.243.281-1.641.738zm7.746-.023-1.113 3.094-1.207-3.211c-.176-.504-.656-.48-.656-.48H7.699l2.051 5.05c0-.012 0-.012-.012-.012 0 0 .012 0 .012.012s.012.023.012.023l-.012-.023c.07.2.047.316-.012.516l-.047.128c-.234.598-.574.762-1.289.715v.012l.493 1.219c.925-.024 1.605-.328 2.074-1.477l2.46-6.164h-.925a.87.87 0 0 0-.797.598z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/myspace.svg����������������������������������0000664�0000000�0000000�00000001537�14753064456�0025272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.802 12.274A3.81 3.81 0 0 0 23.62 8.47c0-2.101-1.71-3.795-3.818-3.795a3.816 3.816 0 0 0-3.818 3.81 3.817 3.817 0 0 0 3.818 3.811zm-8.602.705a3.43 3.43 0 0 0 3.435-3.424A3.43 3.43 0 0 0 11.2 6.13a3.44 3.44 0 0 0-3.436 3.436A3.436 3.436 0 0 0 11.2 13zm-7.8.635c1.71 0 3.093-1.38 3.093-3.081 0-1.704-1.395-3.084-3.105-3.084A3.086 3.086 0 0 0 .3 10.539c0 1.7 1.387 3.078 3.095 3.078zm0 .705c-1.96 0-3.4 1.717-3.4 3.495v1.196c0 .17.138.31.31.31h6.18a.31.31 0 0 0 .309-.31v-1.196c0-1.779-1.437-3.5-3.398-3.5zm7.8-.56c-2.18 0-3.78 1.915-3.78 3.891v1.331c0 .188.156.344.345.344h6.87a.344.344 0 0 0 .342-.344V17.65c0-1.976-1.598-3.891-3.777-3.891m8.602-.617c-2.422 0-4.197 2.126-4.197 4.323v1.477c0 .21.172.381.382.381h7.63c.21 0 .383-.171.383-.381v-1.477c-.001-2.197-1.776-4.323-4.198-4.323"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/mysql.svg������������������������������������0000664�0000000�0000000�00000006270�14753064456�0024775�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.405 5.501c-.115 0-.193.014-.274.033v.013h.014c.054.104.146.18.214.273.054.107.1.214.154.32l.014-.015c.094-.066.14-.172.14-.333-.04-.047-.046-.094-.08-.14-.04-.067-.126-.1-.18-.153zM5.77 18.695h-.927a51 51 0 0 0-.27-4.41h-.008l-1.41 4.41H2.45l-1.4-4.41h-.01a73 73 0 0 0-.195 4.41H0q.083-2.95.41-5.53h1.15l1.335 4.064h.008l1.347-4.064h1.095q.363 3.024.428 5.53zm4.017-4.08q-.567 3.069-1.492 4.46-.723 1.074-1.583 1.073-.228 0-.566-.138v-.494q.166.026.386.026.402 0 .647-.222.295-.27.295-.605 0-.233-.23-.944L6.23 14.615h.91l.727 2.36q.247.804.205 1.123.6-1.598.835-3.483zm12.325 4.08h-2.63v-5.53h.885v4.85h1.745zm-3.32.135-1.016-.5q.136-.113.255-.25.649-.76.648-2.253 0-2.745-2.155-2.746-1.056 0-1.65.697-.646.762-.646 2.245-.001 1.459.574 2.14.524.615 1.583.615.396 0 .725-.098l1.325.772.36-.622zM15.5 17.588q-.337-.541-.337-1.736 0-2.09 1.27-2.09.666 0 .977.5.336.543.336 1.723 0 2.107-1.27 2.108-.667 0-.978-.5zm-1.658-.425q0 .706-.516 1.156-.514.45-1.384.45c-.543 0-1.064-.172-1.573-.515l.237-.476q.656.329 1.19.328.498 0 .783-.22a.75.75 0 0 0 .3-.615c0-.33-.23-.61-.648-.845-.388-.213-1.163-.657-1.163-.657-.422-.307-.632-.636-.632-1.177q0-.674.47-1.085.471-.416 1.22-.415.769 0 1.4.41l-.213.476a2.7 2.7 0 0 0-1.064-.23q-.425 0-.654.206a.69.69 0 0 0-.248.524c0 .328.234.61.666.85.393.215 1.187.67 1.187.67.433.305.648.63.648 1.168zm9.382-5.852c-.535-.014-.95.04-1.297.188-.1.04-.26.04-.274.167.055.053.063.14.11.214.08.134.218.313.346.407q.208.167.427.31c.26.16.555.255.81.416.145.094.293.213.44.313.073.05.12.14.214.172v-.02c-.046-.06-.06-.147-.105-.214-.067-.067-.134-.127-.2-.193a3.2 3.2 0 0 0-.695-.675c-.214-.146-.682-.35-.77-.595l-.013-.014c.146-.013.32-.066.46-.106.227-.06.435-.047.67-.106q.16-.042.32-.094v-.06c-.12-.12-.21-.283-.334-.395a9 9 0 0 0-1.104-.823c-.21-.134-.476-.22-.697-.334-.08-.04-.214-.06-.26-.127-.12-.146-.19-.34-.275-.514a18 18 0 0 1-.547-1.163c-.12-.262-.193-.523-.34-.763-.69-1.137-1.437-1.826-2.586-2.5-.247-.14-.543-.2-.856-.274-.167-.008-.334-.02-.5-.027-.11-.047-.216-.174-.31-.235-.38-.24-1.364-.76-1.644-.072-.18.434.267.862.422 1.082.115.153.26.328.34.5.047.116.06.235.107.356.106.294.207.622.347.897.073.14.153.287.247.413.054.073.146.107.167.227-.094.136-.1.334-.154.5-.24.757-.146 1.693.194 2.25.107.166.362.534.703.393.3-.12.234-.5.32-.835.02-.08.007-.133.048-.187v.015c.094.188.188.367.274.555.206.328.566.668.867.895.16.12.287.328.487.402v-.02h-.015c-.043-.058-.1-.086-.154-.133a3.5 3.5 0 0 1-.35-.4 9 9 0 0 1-.747-1.218c-.11-.21-.202-.436-.29-.643-.04-.08-.04-.2-.107-.24-.1.146-.247.273-.32.453-.127.288-.14.642-.188 1.01-.027.007-.014 0-.027.014-.214-.052-.287-.274-.367-.46-.2-.475-.233-1.238-.06-1.785.047-.14.247-.582.167-.716-.042-.127-.174-.2-.247-.303a2.5 2.5 0 0 1-.24-.427c-.16-.374-.24-.788-.414-1.162-.08-.173-.22-.354-.334-.513-.127-.18-.267-.307-.368-.52-.033-.073-.08-.194-.027-.274.014-.054.042-.075.094-.09.088-.072.335.022.422.062.247.1.455.194.662.334.094.066.195.193.315.226h.14c.214.047.455.014.655.073.355.114.675.28.962.46a5.95 5.95 0 0 1 2.085 2.286c.08.154.115.295.188.455.14.33.313.663.455.982.14.315.275.636.476.897.1.14.502.213.682.286.133.06.34.115.46.188.23.14.454.3.67.454.11.076.443.243.463.378"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/n26.svg��������������������������������������0000664�0000000�0000000�00000002042�14753064456�0024226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 3.803v1.195h7.436V3.803zM12.69 7.29c-2.034 0-3.038 1.252-3.038 2.684 0 .234.027.468.092.728l1.393.135a3.7 3.7 0 0 1-.09-.793c0-1.072.71-1.586 1.598-1.586.866 0 1.507.485 1.507 1.652 0 1.186-.58 1.995-1.464 2.88-.925.923-2.4 2.027-3.112 2.534v1.092h6.135v-1.195h-4.168c.695-.48 1.69-1.279 2.133-1.72.502-.503 1.931-1.794 1.931-3.636 0-1.903-1.24-2.775-2.918-2.775zm8.34 0c-1.976 0-3.454 1.517-3.454 4.916 0 3.017 1.233 4.508 3.356 4.508 1.754 0 3.068-1.198 3.068-3.172 0-1.542-.823-3.066-2.793-3.066-1.1 0-1.884.51-2.281 1.263 0-1.78.62-3.33 2.094-3.33.937 0 1.309.538 1.507 1.422l1.366-.271c-.321-1.527-1.292-2.27-2.864-2.27zM.075 7.389v9.228h1.33v-6.312c0-.56-.013-.898-.039-1.223h.026c.136.372.298.699.539 1.123l3.732 6.412h1.69V7.39H6.04v6.31c0 .56.013.898.04 1.223h-.028a7 7 0 0 0-.537-1.123L1.783 7.389H.076zm20.817 4.185c1.114 0 1.744.822 1.744 1.992 0 1.256-.717 2.034-1.701 2.034-1.09 0-1.843-1.001-1.973-2.329.33-1.133 1.063-1.697 1.93-1.697M0 19.008v1.19h7.436v-1.19z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/n8n.svg��������������������������������������0000664�0000000�0000000�00000002047�14753064456�0024331�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.474 5.684a2.53 2.53 0 0 0-2.447 1.895H16.13a2.526 2.526 0 0 0-2.492 2.11l-.103.624a1.26 1.26 0 0 1-1.246 1.055h-1.001a2.527 2.527 0 0 0-4.893 0H4.973a2.527 2.527 0 1 0 0 1.264h1.422a2.527 2.527 0 0 0 4.894 0h1a1.26 1.26 0 0 1 1.247 1.055l.103.623a2.526 2.526 0 0 0 2.492 2.111h.37a2.527 2.527 0 1 0 0-1.263h-.37a1.26 1.26 0 0 1-1.246-1.056l-.103-.623A2.52 2.52 0 0 0 13.96 12a2.52 2.52 0 0 0 .82-1.48l.104-.622a1.26 1.26 0 0 1 1.246-1.056h2.896a2.527 2.527 0 1 0 2.447-3.158m0 1.263a1.263 1.263 0 0 1 1.263 1.263 1.263 1.263 0 0 1-1.263 1.264A1.263 1.263 0 0 1 20.21 8.21a1.263 1.263 0 0 1 1.264-1.263m-18.948 3.79A1.263 1.263 0 0 1 3.79 12a1.263 1.263 0 0 1-1.264 1.263A1.263 1.263 0 0 1 1.263 12a1.263 1.263 0 0 1 1.263-1.263m6.316 0A1.263 1.263 0 0 1 10.105 12a1.263 1.263 0 0 1-1.263 1.263A1.263 1.263 0 0 1 7.58 12a1.263 1.263 0 0 1 1.263-1.263m10.106 3.79a1.263 1.263 0 0 1 1.263 1.263 1.263 1.263 0 0 1-1.263 1.263 1.263 1.263 0 0 1-1.264-1.263 1.263 1.263 0 0 1 1.263-1.264"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/namebase.svg���������������������������������0000664�0000000�0000000�00000000531�14753064456�0025375�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.098 2.406c0 1.329-1.052 2.406-2.349 2.406S18.4 3.735 18.4 2.406 19.452 0 20.75 0s2.348 1.077 2.348 2.406m-11.51.542C5.688 2.948.903 7.848.903 13.894V24H7.48V13.895c0-2.326 1.84-4.21 4.11-4.21s4.11 1.884 4.11 4.21V24h6.577V13.895c0-6.046-4.785-10.947-10.687-10.947"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/namecheap.svg��������������������������������0000664�0000000�0000000�00000001145�14753064456�0025545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.295 17.484c.227.403.57.728.985.931-.309.15-.647.229-.99.232h-3.068a2.26 2.26 0 0 1-1.957-1.143L6.705 6.511a2.27 2.27 0 0 0-.974-.922c.309-.153.652-.233.997-.232h3.05c.81.003 1.558.438 1.959 1.143zm-9.329-7.392L6.269 6.755c-.209-.392-.582-.657-.984-.829-.204.165-.391.35-.522.581-.184.349-4.391 8.648-4.569 8.987a2.245 2.245 0 0 0 4.016 1.999zm15.846-1.593a2.245 2.245 0 0 0-1.162-2.955v-.001a2.2 2.2 0 0 0-.892-.187l-.003-.011c-.816 0-1.569.443-1.965 1.157l-3.749 7.414 1.689 3.323c.213.399.59.664.998.839.252-.2.473-.444.605-.742z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/namemc.svg�����������������������������������0000664�0000000�0000000�00000000204�14753064456�0025057�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0Zm4.8 4.8H16V8h3.2v11.2H16V8H8v11.2H4.8V8Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/namesilo.svg���������������������������������0000664�0000000�0000000�00000001130�14753064456�0025425�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.65 0A4.65 4.65 0 0 0 0 4.65v14.7A4.65 4.65 0 0 0 4.65 24h14.7A4.65 4.65 0 0 0 24 19.35V4.65A4.65 4.65 0 0 0 19.35 0Zm7.21 4.2 4.64 3.048V8.86h-.006c-.124.4-2.156.718-4.644.718S7.33 9.26 7.206 8.86H7.2V7.248ZM7.2 9.384c0 .5 2.082.906 4.65.906s4.65-.406 4.65-.906v2.587c0 .5-2.082.905-4.65.905s-4.65-.405-4.65-.905zm0 3.3c0 .5 2.082.906 4.65.906s4.65-.405 4.65-.905v2.586c0 .5-2.082.906-4.65.906s-4.65-.406-4.65-.906zm0 3.301c0 .5 2.082.906 4.65.906s4.65-.406 4.65-.906v2.587c0 .5-2.082.906-4.65.906s-4.65-.406-4.65-.906z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/namuwiki.svg���������������������������������0000664�0000000�0000000�00000002010�14753064456�0025440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0M6.49 5.922a2.083 2.083 0 0 1 2.096 2.064 2.07 2.07 0 0 1-.832 1.674l1.787 4.22L12.5 12.63l-.385-.908a2 2 0 0 1-.281.023A2.083 2.083 0 0 1 9.738 9.68a2.08 2.08 0 0 1 4.16-.032 2.08 2.08 0 0 1-.767 1.627l1.125 2.657 3.53-1.496a2 2 0 0 1-.046-.413 2.08 2.08 0 1 1 2.096 2.063 2.08 2.08 0 0 1-1.535-.664l-3.614 1.53.496 1.173a.554.554 0 0 1-.292.727.555.555 0 0 1-.727-.295l-1.23-2.909-4.883 2.067q.018.127.02.256a2.083 2.083 0 0 1-2.065 2.095 2.083 2.083 0 0 1-2.096-2.064 2.083 2.083 0 0 1 2.065-2.096 2.07 2.07 0 0 1 1.642.79l.904-.383-1.796-4.245a2 2 0 0 1-.202.012 2.08 2.08 0 0 1-2.095-2.062A2.08 2.08 0 0 1 6.49 5.922M6.5 7.14a.861.861 0 1 0 .015 1.722.861.861 0 0 0-.015-1.722m5.313 1.662a.861.861 0 1 0 .012 1.719.861.861 0 0 0-.013-1.72m7.956 2.343a.861.861 0 1 0 .91.854.863.863 0 0 0-.866-.853zM5.985 15.125a.86.86 0 0 0-.853.867.86.86 0 0 0 .865.856.862.862 0 0 0-.012-1.723"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nano.svg�������������������������������������0000664�0000000�0000000�00000001363�14753064456�0024561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.286 6.858c-.945 0-1.713.766-1.713 1.713 0 1.284-.428 1.714-1.714 1.714-.945 0-1.713.766-1.713 1.713 0 1.285-.428 1.714-1.714 1.714a1.714 1.714 0 1 0 1.714 1.713c0-1.284.427-1.713 1.713-1.713.946 0 1.714-.767 1.714-1.714 0-1.284.427-1.713 1.713-1.713a1.714 1.714 0 0 0 0-3.427M8.57 6.859c-.945 0-1.713.767-1.713 1.714 0 1.284-.428 1.713-1.714 1.713A1.714 1.714 0 1 0 6.858 12c0-1.284.429-1.713 1.713-1.713s1.714.427 1.714 1.713a1.715 1.715 0 0 0 3.428 0c0-.945-.766-1.713-1.716-1.713-1.285 0-1.714-.428-1.714-1.714 0-.945-.768-1.714-1.714-1.714m-6.856 6.856A1.714 1.714 0 0 0 0 15.43a1.714 1.714 0 0 0 1.714 1.713 1.714 1.714 0 0 0 1.713-1.713 1.714 1.714 0 0 0-1.713-1.714Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nanostores.svg�������������������������������0000664�0000000�0000000�00000000252�14753064456�0026015�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.708 24 .6 14.822l7.679-2.995 11.235 7.867zM10.292 0 23.4 9.178l-7.679 2.995L4.486 4.306z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/napster.svg����������������������������������0000664�0000000�0000000�00000001636�14753064456�0025305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.495 4.543c-.22 0-.438 0-.657.03h-.031l-.032-.03C17.93 2.21 15.02.798 12.015.798S6.07 2.21 4.255 4.573l-.031.03h-.031c-.22-.03-.439-.03-.658-.03H2.16v2.394l-.032.03A3.63 3.63 0 0 0 0 10.282c0 1.412.844 2.701 2.127 3.284h.063v.062c.031 5.278 4.443 9.575 9.825 9.575s9.794-4.297 9.825-9.575v-.062l.032-.03C23.155 12.92 24 11.632 24 10.25a3.63 3.63 0 0 0-2.128-3.284l-.032-.03V4.542zM6.821 5.34a7.44 7.44 0 0 1 5.194-2.117c1.94 0 3.818.767 5.195 2.117l.062.062-.094.061c-.375.215-.72.43-1.064.675l-.03.031-.032-.03c-.908-.461-2.347-.983-4.005-.983s-3.098.522-4.006.982l-.03.031-.032-.03a10 10 0 0 0-1.064-.676l-.188-.061zm12.329 8.195c0 3.866-3.223 7.027-7.166 7.027-3.942 0-7.134-3.16-7.134-7.027V7.458l.094.03c1.252.308 2.44 1.658 2.722 1.996.313-.338 1.784-1.658 4.35-1.658s4.036 1.35 4.35 1.658c.28-.338 1.438-1.688 2.721-1.995l.094-.031v6.077z"/></svg>��������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nasa.svg�������������������������������������0000664�0000000�0000000�00000002560�14753064456�0024550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.344 13.598c.075.281.195.39.407.39.22 0 .335-.132.335-.39V8.804h1.379v4.794c0 .675-.088.968-.43 1.31-.247.248-.703.439-1.278.439-.464 0-.909-.154-1.192-.438-.249-.25-.386-.505-.599-1.311l-.846-3.196c-.074-.281-.194-.39-.406-.39-.22 0-.336.132-.336.39v4.794H0v-4.794c0-.675.088-.968.43-1.31.247-.248.703-.439 1.278-.439.464 0 .909.154 1.192.438.249.25.385.505.599 1.311zm18.231 1.598-1.591-4.98a.4.4 0 0 0-.06-.132.23.23 0 0 0-.186-.082.23.23 0 0 0-.185.082.4.4 0 0 0-.06.132l-1.591 4.98h-1.425l1.739-5.44c.09-.283.22-.524.384-.684.282-.275.614-.419 1.138-.419.525 0 .857.144 1.139.42.164.16.294.4.384.683L24 15.196zm-7.044 0c.903 0 1.344-.192 1.692-.538.385-.383.569-.802.569-1.427 0-.553-.202-1.064-.51-1.37-.403-.4-.903-.527-1.719-.527h-1.142c-.436 0-.61-.053-.748-.188-.094-.093-.139-.23-.139-.393 0-.168.04-.334.156-.448.103-.1.243-.147.511-.147h3.301V8.804h-3.049c-.903 0-1.343.192-1.691.538-.385.383-.57.802-.57 1.427 0 .553.203 1.064.51 1.37.404.4.904.527 1.72.527h1.141c.437 0 .61.053.748.188.095.093.14.23.14.393 0 .169-.041.335-.157.448-.102.1-.242.147-.51.147h-3.405l-1.306-4.086c-.09-.283-.22-.524-.384-.684-.282-.275-.615-.419-1.139-.419s-.857.144-1.138.42c-.165.16-.294.4-.385.683l-1.738 5.44h1.424l1.592-4.98a.4.4 0 0 1 .06-.132.23.23 0 0 1 .185-.082q.121 0 .186.082a.4.4 0 0 1 .06.132l1.591 4.98z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nationalgrid.svg�����������������������������0000664�0000000�0000000�00000005022�14753064456�0026275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 11.06h.292v.415h.01c.106-.289.426-.485.764-.485.673 0 .877.355.877.928v1.547H1.65v-1.5c0-.415-.135-.728-.608-.728-.464 0-.742.355-.75.825v1.403H0zm2.467.736c.027-.563.422-.806.969-.806.422 0 .88.13.88.774v1.277c0 .112.056.177.172.177.033 0 .07-.01.093-.019v.247a.8.8 0 0 1-.19.019c-.297 0-.343-.168-.343-.42h-.01c-.204.313-.412.49-.871.49-.44 0-.803-.22-.803-.704 0-.676.655-.699 1.285-.773.241-.028.375-.061.375-.327 0-.396-.282-.494-.625-.494-.362 0-.63.168-.64.56zm1.557.355h-.008c-.038.07-.168.093-.246.107-.497.088-1.113.084-1.113.554 0 .294.26.476.533.476.445 0 .84-.285.834-.755zm1.443-1.091h.487v.247h-.487v1.622c0 .19.028.302.236.317q.126 0 .25-.015v.252c-.088 0-.171.01-.26.01-.388 0-.523-.13-.518-.541v-1.645h-.418v-.247h.418v-.722h.292zm1.308 2.405V11.06h-.293v2.405zm0-2.857v-.47h-.293v.47zm2.702 1.655c0 .69-.398 1.272-1.13 1.272-.734 0-1.132-.583-1.132-1.272s.398-1.273 1.131-1.273 1.131.583 1.131 1.273m-1.97 0c0 .512.278 1.025.84 1.025.56 0 .838-.513.838-1.025 0-.513-.278-1.026-.839-1.026s-.839.513-.839 1.026m2.401-1.203h.293v.415h.01c.106-.289.425-.485.764-.485.673 0 .877.355.877.928v1.547h-.292v-1.5c0-.415-.135-.728-.608-.728-.464 0-.742.355-.751.825v1.403h-.293zm2.467.736c.029-.563.422-.806.97-.806.421 0 .88.13.88.774v1.277c0 .112.056.177.172.177a.3.3 0 0 0 .093-.019v.247a.8.8 0 0 1-.19.019c-.298 0-.344-.168-.344-.42h-.009c-.204.313-.412.49-.872.49-.44 0-.802-.22-.802-.704 0-.676.654-.699 1.285-.773.24-.028.375-.061.375-.327 0-.396-.283-.494-.626-.494-.361 0-.63.168-.64.56zm1.558.355h-.01c-.036.07-.166.093-.245.107-.496.088-1.113.084-1.113.554 0 .294.26.476.534.476.445 0 .839-.285.834-.755zm1.33 1.314v-3.328h-.291v3.328zm2.839-2.48v2.35c0 .428-.033 1.141-1.248 1.141-.51 0-1.047-.219-1.075-.746h.704c.028.126.08.252.455.252.347 0 .514-.168.514-.569v-.298l-.009-.009c-.106.191-.269.373-.658.373-.593 0-1.062-.415-1.062-1.282 0-.857.482-1.277 1.024-1.277.46 0 .645.27.724.434h.01v-.368zm-1.197 1.944c.441 0 .552-.378.552-.718 0-.4-.195-.727-.557-.727-.24 0-.51.178-.51.755 0 .317.13.69.515.69m1.753-1.943h.62v.429h.01c.135-.252.283-.495.678-.495q.062.001.125.01v.661c-.056-.009-.125-.009-.186-.009-.505 0-.598.317-.598.592v1.29h-.649zm2.526 2.478v-2.495h-.648v2.495zm-.802-3.461.477.479.477-.48-.477-.478zM24 13.465h-.635v-.312h-.01c-.157.28-.444.377-.713.377-.732 0-1.039-.652-1.039-1.333 0-.857.482-1.277 1.025-1.277a.79.79 0 0 1 .714.387h.009V10.12H24zm-1.196-.47c.413 0 .575-.346.575-.714 0-.396-.111-.797-.556-.797-.413 0-.552.369-.552.76 0 .294.115.75.533.75z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nationalrail.svg�����������������������������0000664�0000000�0000000�00000000531�14753064456�0026277�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 12C0 5.373 5.372 0 12 0c6.627 0 11.999 5.373 11.999 12 0 6.628-5.372 12-11.999 12S0 18.628 0 12m6.195-5.842 6.076 2.794H2.835v1.884h9.499l-4.616 2.246H2.835v1.868h4.883l5.778 2.795h4.333l-6.092-2.795h9.469v-1.868h-9.453l4.616-2.246h4.837V8.952h-4.868l-5.777-2.794z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nativescript.svg�����������������������������0000664�0000000�0000000�00000001170�14753064456�0026335�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.77 1.76A5.68 5.68 0 0 1 5.8 0h12.6c1.37 0 2.65.6 3.83 1.76A5.43 5.43 0 0 1 24 5.7v12.77c0 1.34-.56 2.58-1.68 3.73a5.77 5.77 0 0 1-4.07 1.8H5.87a6.3 6.3 0 0 1-4.1-1.57C.69 21.45.1 20.03 0 18.13V5.73a5.21 5.21 0 0 1 1.77-3.97m6.25 8.3 7.93 10.06h2.12c.49-.06.88-.2 1.17-.43.3-.23.5-.56.64-1v-4.94c.08-.95.67-1.54 1.77-1.75q-1.65-.6-1.77-1.86V5.42c-.12-.44-.33-.8-.64-1.07a1.83 1.83 0 0 0-1.09-.47H16v10.2L8.02 3.87H5.79c-.56.1-.97.3-1.25.6S4.08 5.25 4 5.9v4.85c-.35.69-.9 1.1-1.65 1.25.85.16 1.4.61 1.65 1.36v4.77c.02.55.2 1 .54 1.37.33.36.7.53 1.1.5H8z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/natsdotio.svg��������������������������������0000664�0000000�0000000�00000000342�14753064456�0025626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.004 0H.404v18.807h9.938l1.714 1.602v-.026L15.966 24v-5.193h7.63V0zm7.578 14.45H15.38L6.898 6.519v7.93H4.116V4.376h4.349l8.344 7.784V4.375h2.773z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/naver.svg������������������������������������0000664�0000000�0000000�00000000215�14753064456�0024734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.273 12.845 7.376 0H0v24h7.726V11.156L16.624 24H24V0h-7.727z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nba.svg��������������������������������������0000664�0000000�0000000�00000003506�14753064456�0024367�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.19 0a2.486 2.486 0 0 0-2.485 2.484v19.029A2.49 2.49 0 0 0 9.19 24h5.615a2.493 2.493 0 0 0 2.49-2.487V2.484A2.49 2.49 0 0 0 14.81 0zm0 .584h3.21c-.62.237-.707.508-.73 1.366-.105.01-.325-.087-.25.434 0 0 .043.346.18.286-.133.918.023.99-.93 1.031l-.047.067c-.95.093-1.25-.027-2.05 1.603 0 0-.207.505-.268.714-.197.415-.674 1.328-.819 1.919-.046.2-.14.264-.01.553.185.417-.124.527.95.496V9.3s-.286.247-.346.398c-.061.147-.226.89-.22 1.237.019.917.767 1.683.992 2.597l.492.07c.282.634 1.495 2.355 1.743 2.582.057.159.365.355.545.551.149.141 1.025 1.1 2.054 1.692-.007-.001.164.344.249.618-.342.275.32.777.52 1.609.012.107-.19.222.114.495-.022 1.256-.402 1.918.241 2.266H9.191a1.9 1.9 0 0 1-1.9-1.901V2.486a1.9 1.9 0 0 1 1.9-1.902zm3.804.002h1.815a1.9 1.9 0 0 1 1.897 1.898v9.193a1.7 1.7 0 0 0-.22-.397c0-.255-.272-.249-.346-.344-.07-.081.067-.128-.407-.235-.09-.05-.158-.747-.158-.747-.07-.447-.229-.754-.467-1.227-.12-.243-.177-1.001-.305-1.386.071-1.767-.493-2.28-.95-2.569-.174-.11-.262-.191-.433-.29l-.005-.082c-.133-.126-.402-.264-.623-.362-.068-.07-.037-.22.01-.276.15-.02.348-.356.513-.703.129.009.174-.118.214-.19.138-.222.288-.413.096-.542.435-.777.154-1.301-.08-1.321-.095-.195-.26-.316-.551-.42m.551 6.338c.06.319.34 1.929.456 2.187.123.259.535 1.05.73 1.54a1.69 1.69 0 0 0-1.294 1.646 1.69 1.69 0 0 0 1.693 1.691 1.69 1.69 0 0 0 1.576-1.066v8.59a1.89 1.89 0 0 1-1.598 1.877h-.017c.833-.502.319-1.46.16-2.022-.012-.033.014-.074.026-.1.045-.08-.045-.257-.045-.257-.098-.09-.127-.561-.182-.772-.089-.358.157-.971.157-1.18 0-.206-.156-.491-.445-.858-.069-.078-.276-1.86-.462-2.313-.258-.623-.339-.526-.64-1.266-.24-.525-.055-1.295-.59-3.085.005.006.12-.113.12-.113s-.422-1.55-.561-1.975-.385-.456-.385-.456.002-.172.012-.216c.02-.07.516-1.367.558-1.407.001-.03.717-.514.731-.445"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nbb.svg��������������������������������������0000664�0000000�0000000�00000001714�14753064456�0024367�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.714 11.176h.02l.167 4.327h2.105L6.5 8.482H4.652l-.915 4.288h-.02L3.63 8.482H1.495L0 15.503h1.79zm7.254.649.01-.02c.462-.098 1.219-.481 1.453-1.583.248-1.16-.362-1.74-1.59-1.74H7.007l-1.494 7.02h2.94c1.209 0 2.153-.619 2.458-2.025.295-1.416-.549-1.613-.944-1.652zm-1.052 1.504c-.099.462-.354.757-.787.757h-.345l.334-1.602h.354c.454 0 .542.373.444.845m.472-2.753c-.108.511-.452.669-.708.669h-.295l.285-1.347h.266c.403 0 .55.225.452.678m6.83 2.901c.295-1.416-.55-1.613-.944-1.652l.01-.02c.462-.098 1.219-.481 1.453-1.583.248-1.16-.362-1.74-1.591-1.74h-2.831l-1.495 7.02h2.94c1.21 0 2.153-.619 2.458-2.025m-1.996-.148c-.098.462-.354.757-.787.757h-.344l.335-1.602h.354c.452 0 .54.373.442.845m.472-2.753c-.108.511-.453.669-.708.669h-.294l.285-1.347h.266q.602 0 .45.678zm4.97-2.094h-2.951c.75.615.51 1.669.51 1.669H19.2l2.338 1.857-2.167 1.834h-2.72c-.117.568-.712 1.424-1.125 1.676h4.148L24 12.01z"/></svg>����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nbc.svg��������������������������������������0000664�0000000�0000000�00000001551�14753064456�0024367�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.828 4.606c-1.406.006-2.567 1.208-2.416 2.785h1.08s.503-.007.649.338c0 0-1.594.612-1.467 1.609l.992 7.328 3.473-8.432c.53-1.279-.062-3.166-1.698-3.556a2.6 2.6 0 0 0-.613-.072m-5.642.002a2.6 2.6 0 0 0-.628.072c-1.635.387-2.226 2.275-1.697 3.556l3.473 8.432 1.242-9.158c.22-1.63-.956-2.888-2.39-2.903zM4.292 8.31a2.38 2.38 0 0 0-1.559.659c-.803.773-1.427 2.879.371 4.156l6.954 4.926-3.334-8.076c-.488-1.17-1.479-1.7-2.432-1.665m15.272 0c-.908.02-1.825.553-2.29 1.664l-3.332 8.077 6.953-4.926c1.8-1.275 1.172-3.383.37-4.156a2.38 2.38 0 0 0-1.702-.659m1.939 5.788c-.452.007-.935.157-1.42.502l-6.77 4.794h8.026c1.873 0 3.065-1.582 2.533-3.484-.26-.926-1.213-1.832-2.369-1.812M2.496 14.1c-1.155-.019-2.108.885-2.369 1.81-.532 1.902.66 3.484 2.533 3.484h8.025L3.916 14.6c-.485-.344-.968-.493-1.42-.5"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ndr.svg��������������������������������������0000664�0000000�0000000�00000001140�14753064456�0024402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5.184 19.325-3.137-5.648v5.649H0V9.64h2.149l3.267 6.025V9.641h2.047v9.684zm2.279-9.684V.537H8.61v9.104zm0 13.822v-4.138H8.61v4.138zM12.037 9.64c2.395 0 3.63 1.147 3.63 3.368v2.918c0 2.28-1.19 3.398-3.63 3.398H8.61V9.641zm-.19 7.855c1.163 0 1.728-.581 1.728-1.771v-2.498c0-1.176-.58-1.757-1.727-1.757h-1.03v6.026zm9.845 1.83-1.728-3.718h-1.161v3.717h-2.15V9.641h3.384c2.381 0 3.513.944 3.513 2.962 0 1.335-.493 2.134-1.597 2.613L24 19.326zm-1.568-5.475c.857 0 1.365-.494 1.365-1.32 0-.858-.377-1.177-1.365-1.177H18.76v2.498h1.365z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/near.svg�������������������������������������0000664�0000000�0000000�00000000773�14753064456�0024557�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.443 0c-.89 0-1.714.46-2.18 1.218l-5.017 7.448a.533.533 0 0 0 .792.7l4.938-4.282a.2.2 0 0 1 .334.151v13.41a.2.2 0 0 1-.354.128L5.03.905A2.56 2.56 0 0 0 3.078 0h-.521A2.557 2.557 0 0 0 0 2.557v18.886a2.557 2.557 0 0 0 4.736 1.338l5.017-7.448a.533.533 0 0 0-.792-.7l-4.938 4.283a.2.2 0 0 1-.333-.152V5.352a.2.2 0 0 1 .354-.128l14.924 17.87c.486.574 1.2.905 1.952.906h.521A2.56 2.56 0 0 0 24 21.445V2.557A2.56 2.56 0 0 0 21.443 0"/></svg>�����mkdocs-material-9.6.4/material/templates/.icons/simple/nebula.svg�����������������������������������0000664�0000000�0000000�00000000316�14753064456�0025071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.417 9.307 0 14.693h9.167L12 23.413l2.833-8.72H24s-3.915-2.84-7.417-5.386l2.834-8.72L12 5.976C8.499 3.438 4.583.588 4.583.588z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nec.svg��������������������������������������0000664�0000000�0000000�00000001331�14753064456�0024366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.496 8.8a14 14 0 0 0-2.453.198c-.6.11-1.165.223-1.693.57-.807.526-1.076 1.49-1.086 2.394-.012.98.283 2.06 1.21 2.54.735.384 1.537.552 2.355.624 1.397.118 2.792.1 4.171-.09v-.98c-1.04.19-2.107.31-3.184.152-1.652-.24-1.93-1.473-1.93-2.286 0-.451.06-.987.482-1.526.676-.865 2.667-.956 4.55-.59V8.95a23 23 0 0 0-2.422-.15m-12.812.197v4.446c.03.744.295 1.518 1.834 1.581 1.814.075 3.54.045 5.334-.024v-.896c-.89.014-3.487.001-3.65 0-.704-.042-.973-.256-.998-.837a32 32 0 0 1-.02-1.055h4.177v-.834h-4.176V9.851h4.582v-.854zM0 8.997v5.999h1.146v-4.254l3.383 3.764c.41.404.763.478 1.122.49h2.015V8.997h-1.15v4.397l-3.39-3.757c-.232-.227-.753-.64-1.194-.64z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/neo4j.svg������������������������������������0000664�0000000�0000000�00000001352�14753064456�0024643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.629 13.227c-.593 0-1.139.2-1.58.533l-2.892-1.976a2.6 2.6 0 0 0 .101-.711 2.633 2.633 0 0 0-2.629-2.629A2.63 2.63 0 0 0 0 11.073a2.63 2.63 0 0 0 2.629 2.629c.593 0 1.139-.2 1.579-.533L7.1 15.145c-.063.226-.1.465-.1.711 0 .247.037.484.1.711l-2.892 1.976a2.6 2.6 0 0 0-1.579-.533A2.63 2.63 0 0 0 0 20.639a2.63 2.63 0 0 0 2.629 2.629 2.63 2.63 0 0 0 2.629-2.629c0-.247-.037-.485-.101-.711l2.892-1.976c.441.333.987.533 1.58.533a2.633 2.633 0 0 0 2.629-2.629c0-1.45-1.18-2.629-2.629-2.629M16.112.732c-4.72 0-7.888 2.748-7.888 8.082v3.802a3.53 3.53 0 0 1 3.071.008v-3.81c0-3.459 1.907-5.237 4.817-5.237s4.817 1.778 4.817 5.237v8.309H24V8.814C24 3.448 20.832.732 16.112.732"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/neovim.svg�����������������������������������0000664�0000000�0000000�00000000441�14753064456�0025117�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.214 4.954v13.615L7.655 24V10.314L3.312 3.845zm4.999 17.98-4.557-4.548V5.136l.59-.596 3.967 5.908v12.485zm14.573-4.457-.862.937-4.24-6.376V0l5.068 5.092zM7.431.001l12.998 19.835-3.637 3.637L3.787 3.683 7.43 0z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/neptune.svg����������������������������������0000664�0000000�0000000�00000003254�14753064456�0025305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 12c0 6.62-5.372 11.986-12 11.986C5.373 23.986 0 18.62 0 12S5.373.014 12 .014C18.628.014 24 5.38 24 12m-9.67-5.291c-.754 0-1.144.476-1.437 1.055-.397.78-.606 1.656-.819 2.636-.27 1.244-.496 2.497-.748 3.744-.06.294-.093.64-.209.916-.062.15-.21.367-.38.198-.192-.19-.258-.568-.313-.828-.295-1.454-.573-2.912-.902-4.358a17 17 0 0 0-.731-2.34 1.54 1.54 0 0 0-.492-.681 1.34 1.34 0 0 0-.768-.27c-.06 0-.482.008-.888.276a1.6 1.6 0 0 0-.582.687c-.359.744-.636 1.587-.871 2.656a12 12 0 0 0-.266 1.62.8.8 0 0 0 .125.488c.092.145.23.26.386.316a.77.77 0 0 0 .678-.056.82.82 0 0 0 .362-.541c.107-.497.202-1.01.293-1.502.045-.249.313-1.539.375-1.702.028-.09.074-.249.162-.357.083-.103.191-.102.27.006.087.122.125.275.161.418.077.304.301 1.515.57 2.732.257 1.183.5 2.369.807 3.54.141.532.393 1 .58 1.3.244.39.632.619 1.063.627.343.01.667-.105.943-.324a2.16 2.16 0 0 0 .649-.918c.392-1.002.612-2.098.826-3.16.36-1.821.54-2.728.62-3.125.027-.125.177-.754.218-.864a.6.6 0 0 1 .125-.255c.063-.066.168-.08.236-.014.178.173.326.81.445 1.41.112.584.24 1.165.36 1.748.199.967.396 1.934.607 2.898.185.853.424 1.449.768 1.936.258.364.564.577.896.645s.696-.008 1.074-.243c.32-.198.606-.546.78-.963.273-.652.432-1.422.578-2.181.058-.305.114-.61.174-.9.081-.395.116-.647.095-.934-.024-.331-.314-.696-.699-.703-.5-.013-.759.242-.846.705q-.222 1.203-.45 2.404c-.052.26-.021.578-.212.787-.029.029-.118.109-.236.088-.075-.013-.173-.077-.252-.248-.154-.43-.524-2.642-1.053-4.955a18 18 0 0 0-.732-2.371c-.268-.69-.685-1.043-1.34-1.043m-9.549 8.428c-.647 0-1.172.534-1.172 1.193 0 .656.548 1.196 1.172 1.195.597 0 1.172-.536 1.172-1.195s-.525-1.193-1.172-1.193"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nestjs.svg�����������������������������������0000664�0000000�0000000�00000012751�14753064456�0025137�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.131.047c-.173 0-.334.037-.483.087.316.21.49.49.576.806.007.043.019.074.025.117a1 1 0 0 1 .013.112c.024.545-.143.614-.26.936-.18.415-.13.861.086 1.22a.7.7 0 0 0 .074.137c-.235-1.568 1.073-1.803 1.314-2.293.019-.428-.334-.713-.613-.911a1.37 1.37 0 0 0-.732-.21zM16.102.4c-.024.143-.006.106-.012.18-.006.05-.006.112-.012.161-.013.05-.025.1-.044.149q-.019.075-.05.149l-.067.142c-.02.025-.031.05-.05.075l-.037.055a2 2 0 0 1-.093.124c-.037.038-.068.081-.112.112v.006c-.037.031-.074.068-.118.1-.13.099-.278.173-.415.266-.043.03-.087.056-.124.093a1 1 0 0 0-.118.099c-.043.037-.074.074-.111.118-.031.037-.068.08-.093.124a2 2 0 0 0-.087.13c-.025.05-.043.093-.068.142-.019.05-.037.093-.05.143a2 2 0 0 0-.043.155c-.006.025-.006.056-.012.08-.007.025-.007.05-.013.075 0 .05-.006.105-.006.155q-.002.055.006.111 0 .074.019.155.01.075.03.15c.02.049.032.098.05.148.013.03.031.062.044.087l-1.426-.552c-.241-.068-.477-.13-.719-.186l-.39-.093q-.56-.111-1.128-.167c-.013 0-.019-.006-.031-.006A11 11 0 0 0 8.9 2.855c-.378.025-.756.074-1.134.136a13 13 0 0 0-.837.174l-.279.074c-.092.037-.18.08-.266.118l-.205.093c-.012.006-.024.006-.03.012-.063.031-.118.056-.174.087a3 3 0 0 0-.236.118c-.043.018-.086.043-.124.062l-.055.03q-.085.048-.162.094a2 2 0 0 0-.148.093c-.044.03-.087.055-.124.086-.006.007-.013.007-.019.013-.037.025-.08.056-.118.087l-.012.012-.093.074c-.012.007-.025.019-.037.025-.031.025-.062.056-.093.08-.006.013-.019.02-.025.025-.037.038-.074.069-.111.106-.007 0-.007.006-.013.012a2 2 0 0 0-.111.106c-.007.006-.007.012-.013.012a2 2 0 0 0-.093.1c-.012.012-.03.024-.043.036a1 1 0 0 1-.106.112c-.006.012-.018.019-.024.03-.05.05-.093.1-.143.15l-.018.018c-.1.106-.205.211-.317.304q-.168.15-.347.273a3.8 3.8 0 0 1-.762.421c-.13.056-.267.106-.403.149-.26.056-.527.161-.756.18-.05 0-.105.012-.155.018l-.155.037-.149.056q-.075.03-.148.068c-.044.031-.093.056-.137.087a1 1 0 0 0-.124.106c-.043.03-.087.074-.124.111-.037.043-.074.08-.105.124-.031.05-.068.093-.093.143a1 1 0 0 0-.087.142c-.025.056-.05.106-.068.161q-.028.077-.056.161c-.012.05-.025.1-.03.15 0 .005-.007.012-.007.018-.012.056-.012.13-.019.167C.006 7.95 0 7.986 0 8.03a.66.66 0 0 0 .074.31v.006q.03.056.069.112.035.056.08.111c.031.031.068.069.106.1a1 1 0 0 0 .117.099c.149.13.186.173.378.272.031.019.062.031.1.05.006 0 .012.006.018.006 0 .013 0 .019.006.031a1.3 1.3 0 0 0 .08.298c.02.037.032.074.05.111q.01.02.02.031c.024.05.049.093.073.137l.093.13c.031.037.069.08.106.118s.074.068.118.105c0 0 .006.006.012.006q.055.048.112.087a1 1 0 0 0 .136.08c.043.025.093.05.142.069a1 1 0 0 0 .124.043c.007.006.013.006.025.012.025.007.056.013.08.019-.018.335-.024.65.026.762.055.124.328-.254.6-.688-.036.428-.061.93 0 1.079.069.155.44-.329.763-.862 4.395-1.016 8.405 2.02 8.826 6.31-.08-.67-.905-1.041-1.283-.948-.186.458-.502 1.047-1.01 1.413.043-.41.025-.83-.062-1.24a4 4 0 0 1-.769 1.562c-.588.043-1.177-.242-1.487-.67-.025-.018-.031-.055-.05-.08q-.029-.065-.05-.13a.5.5 0 0 1-.037-.13q-.008-.064-.006-.137v-.093a1 1 0 0 1 .031-.13q.017-.064.044-.13c.024-.043.043-.087.074-.13.105-.298.105-.54-.087-.682a1 1 0 0 0-.118-.062c-.024-.006-.055-.018-.08-.025l-.05-.018a1 1 0 0 0-.13-.031.5.5 0 0 0-.13-.019 1 1 0 0 0-.136-.012c-.031 0-.062.006-.093.006a.5.5 0 0 0-.137.019q-.064.008-.13.024a1 1 0 0 0-.13.044c-.043.018-.08.037-.124.056-.037.018-.074.043-.118.062-1.444.942-.582 3.148.403 3.787-.372.068-.75.148-.855.229l-.013.012q.4.24.837.416c.397.13.818.247 1.004.297v.006a6 6 0 0 0 1.562.112c2.746-.192 4.996-2.281 5.405-5.033l.037.161c.019.112.043.23.056.347v.006q.016.085.025.162v.024q.01.085.012.162.01.102.012.204v.1c0 .03.007.067.007.098 0 .038-.007.075-.007.112v.087c0 .043-.006.08-.006.124q.002.036-.006.08c0 .044-.006.087-.006.137q-.007.027-.006.055l-.02.143q.001.028-.005.056c-.007.062-.019.118-.025.18v.012l-.037.174v.018l-.037.167c0 .007-.007.02-.007.025a2 2 0 0 1-.043.168v.018q-.03.091-.05.174-.008.01-.006.012l-.056.186c-.024.062-.043.118-.068.18s-.043.124-.068.18c-.025.062-.05.117-.074.18h-.007c-.024.055-.05.117-.08.173l-.019.043c-.006.006-.006.013-.012.019a5.9 5.9 0 0 1-1.742 2.082c-.05.031-.099.069-.149.106-.012.012-.03.018-.043.03a3 3 0 0 1-.136.094l.018.037h.007l.26-.037h.006q.241-.039.483-.087c.044-.006.093-.019.137-.031l.087-.019c.043-.006.086-.018.13-.024.037-.013.074-.02.111-.031.62-.15 1.221-.354 1.798-.595a9.9 9.9 0 0 1-3.85 3.142c.714-.05 1.426-.167 2.114-.366a9.9 9.9 0 0 0 5.857-4.68 9.9 9.9 0 0 1-1.667 3.986 9.8 9.8 0 0 0 1.655-1.376 9.82 9.82 0 0 0 2.61-5.268c.21.98.272 1.99.18 2.987 4.474-6.241.371-12.712-1.346-14.416-.006-.013-.012-.019-.012-.031-.006.006-.006.006-.006.012 0-.006 0-.006-.007-.012q-.002.11-.012.223a8 8 0 0 1-.062.415c-.03.136-.068.273-.105.41-.044.13-.093.266-.15.396a5 5 0 0 1-.185.378 5 5 0 0 1-.477.688c-.093.111-.192.21-.292.31a4 4 0 0 1-.18.155l-.142.124a4 4 0 0 1-.347.241 4 4 0 0 1-.366.211q-.195.091-.39.174a4.4 4.4 0 0 1-.818.223c-.143.025-.285.037-.422.05a5 5 0 0 1-.297.012 5 5 0 0 1-.422-.025 3 3 0 0 1-.421-.062 3 3 0 0 1-.415-.105h-.007c.137-.013.273-.025.41-.05a4.5 4.5 0 0 0 .818-.223c.136-.05.266-.112.39-.174.13-.062.248-.13.372-.204q.178-.119.347-.248.168-.13.316-.279c.105-.093.198-.198.291-.304q.14-.167.26-.334c.013-.019.026-.044.038-.062q.095-.15.18-.298a4.3 4.3 0 0 0 .334-.775c.044-.13.075-.266.106-.403.025-.142.05-.278.062-.415.012-.142.025-.285.025-.421 0-.1-.007-.199-.013-.298a7 7 0 0 0-.05-.415 5 5 0 0 0-.092-.415c-.044-.13-.087-.267-.137-.397s-.111-.26-.173-.384q-.102-.187-.211-.366a7 7 0 0 0-.248-.34q-.138-.16-.285-.317a4 4 0 0 0-.161-.155q-.422-.327-.862-.607a1 1 0 0 0-.124-.062 2.4 2.4 0 0 0-.589-.26Z"/></svg>�����������������������mkdocs-material-9.6.4/material/templates/.icons/simple/netapp.svg�����������������������������������0000664�0000000�0000000�00000000153�14753064456�0025111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 2v20h9.33V10h5.34v12H24V2Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/netbsd.svg�����������������������������������0000664�0000000�0000000�00000010173�14753064456�0025104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.686 10.681a.63.63 0 0 1 .193-.464.63.63 0 0 1 .464-.193q.272 0 .465.193a.63.63 0 0 1 .192.464.64.64 0 0 1-.192.465.63.63 0 0 1-.465.193.63.63 0 0 1-.464-.193.63.63 0 0 1-.193-.465m1.206 0a.53.53 0 0 0-.16-.388.53.53 0 0 0-.389-.16.53.53 0 0 0-.388.16.53.53 0 0 0-.161.388.53.53 0 0 0 .16.389.53.53 0 0 0 .39.161.53.53 0 0 0 .388-.161.53.53 0 0 0 .16-.389m-.344.396-.207-.349h-.117v.349h-.114v-.808h.207q.292 0 .292.223 0 .156-.157.22l.221.365zm-.324-.71v.27l.076.001q.113 0 .151-.028.04-.03.04-.11 0-.134-.175-.134h-.092m-3.892 3.28c0 .403.014.667.146.82.132.147.344.213.607.213 1.266 0 1.698-1.127 1.698-2.122 0-1.318-.695-2.1-2.02-2.1-.197 0-.336.036-.38.095-.044.058-.051.197-.051.424zm-1.046-2.319c0-.695-.015-.834-.352-.87l-.139-.015c-.073-.037-.073-.25.015-.257a31 31 0 0 1 1.96-.065c.6 0 1.2.059 1.706.241.958.344 1.485 1.208 1.485 2.122 0 .981-.468 1.771-1.31 2.188-.497.25-1.097.344-1.85.344-.345 0-.71-.044-.974-.044-.351 0-.724.008-1.141.022-.059-.044-.059-.22 0-.256l.226-.036c.33-.059.374-.11.374-.783zm-2.405 3.76c-.673 0-1.09-.19-1.244-.277-.139-.161-.234-.688-.234-1.186.051-.095.22-.102.278-.022.146.476.636 1.149 1.258 1.149.542 0 .79-.373.79-.74 0-.592-.555-.943-.994-1.163-.527-.263-1.098-.702-1.105-1.427 0-.827.636-1.398 1.697-1.398.242 0 .542.03.834.118.095.029.161.043.25.058.057.161.13.556.13 1.047-.036.087-.219.095-.285.022-.124-.374-.439-.908-.965-.908-.483 0-.747.315-.747.68 0 .337.3.645.666.835l.483.256c.454.242 1.032.666 1.032 1.471 0 .9-.74 1.486-1.844 1.486m-4.2-1.354c0 .57.072.93.643.93.542 0 .827-.418.827-1.01 0-.637-.366-1.084-1.068-1.084-.403 0-.403.007-.403.3v.864zm0-1.69c0 .19.007.204.387.204.63 0 .863-.402.863-.841 0-.637-.395-.952-.9-.952-.343 0-.35.06-.35.381zm-1.01-.71c0-.74-.015-.82-.322-.857l-.198-.03c-.066-.036-.08-.255.03-.263.555-.036 1.09-.065 1.821-.065.703 0 1.171.08 1.493.27.314.19.505.498.505.93 0 .615-.52.856-.747.915-.073.014-.146.044-.146.08 0 .022.037.044.103.059.578.124 1.068.504 1.075 1.214.007.673-.395 1.069-.856 1.23-.461.16-1.01.183-1.456.183-.263 0-.541-.03-.754-.03-.358 0-.717.008-1.134.022-.058-.044-.058-.234 0-.256l.213-.044c.329-.065.373-.117.373-.775zM9.038 12.44c-.095 0-.102.007-.102.168v1.097c0 .41 0 .864.512.864.102 0 .22-.051.307-.11.073.022.117.103.102.19-.204.22-.6.425-1.053.425-.607 0-.82-.351-.82-.834v-1.632c0-.154-.007-.168-.139-.168H7.62c-.08-.03-.103-.176-.044-.227a2.8 2.8 0 0 0 .607-.33c.132-.095.315-.248.541-.57.051-.03.183-.022.22.036v.549c0 .139.007.146.139.146h.651c.037.03.059.074.059.14 0 .08-.022.211-.095.256zm-2.627.475c.103 0 .22-.015.3-.066.037-.022.051-.095.051-.168 0-.241-.139-.402-.388-.402-.307 0-.57.292-.57.526 0 .103.102.11.336.11zm-.483.322c-.168 0-.183.015-.183.132 0 .549.351 1.083 1.032 1.083.205 0 .483-.044.68-.38.08-.015.19.043.19.168-.3.622-.84.834-1.28.834-.988 0-1.522-.695-1.522-1.493 0-.922.666-1.64 1.58-1.64.762 0 1.171.491 1.171 1.055 0 .139-.036.241-.263.241H5.927m-1.255.49c0 .476 0 .937.014 1.179-.05.087-.256.168-.431.168-.008 0-.25-.373-.593-.798l-1.69-2.093c-.417-.527-.666-.826-.798-.936-.036.073-.036.197-.036.468v1.42c0 .593.029 1.141.11 1.339.065.154.234.198.424.234l.205.03c.058.058.044.212 0 .255a27 27 0 0 0-.98-.022q-.405 0-.82.022c-.044-.043-.059-.197 0-.256l.124-.022c.198-.044.337-.087.403-.241.073-.198.102-.746.102-1.34v-1.858c0-.402 0-.52-.051-.622-.051-.124-.161-.198-.417-.249l-.205-.029c-.051-.059-.044-.234.03-.256.343.014.709.022 1.009.022.249 0 .46-.008.615-.022.073.33.548.885 1.207 1.668l.614.725c.33.38.535.636.703.805.03-.073.03-.198.03-.33v-1.01c0-.592-.03-1.141-.11-1.339-.067-.153-.227-.197-.425-.234l-.198-.029c-.058-.059-.043-.212 0-.256.396.014.68.022.98.022.272 0 .535-.008.82-.022.044.044.059.197 0 .256l-.131.022c-.19.044-.33.088-.396.242-.08.197-.11.746-.11 1.339zM21.537 3.59c-2.848-1.367-5.425-.715-8.306.148-2.902.868-5.482 1.337-8.381.154l.79 1.41.87 1.557.79 1.41c2.309.652 4.22-.194 6.271-1.22 2.463-1.23 4.688-2.337 7.502-1.696-2.378-1.19-4.534-.895-7.02-.22 2.434-1.24 4.726-2.204 7.484-1.543M13.16 20.478l-2.272-4.385H9.91l2.283 4.826s.23.455.724.203c.493-.25.245-.644.245-.644M4.634 4.025s-.068-.159-.26-.053c-.16.089-.077.253-.077.253l3.004 6.351h.728z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/netcup.svg�����������������������������������0000664�0000000�0000000�00000000516�14753064456�0025123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.25 0A5.24 5.24 0 0 0 0 5.25v13.5A5.24 5.24 0 0 0 5.25 24h13.5A5.24 5.24 0 0 0 24 18.75V5.25A5.24 5.24 0 0 0 18.75 0zm-.045 5.102h9.482c1.745 0 2.631.907 2.631 2.753v8.352h1.477v2.691h-4.666V8.58c0-.514-.298-.785-.889-.785H9.873v11.103H6.682V7.795H5.205z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/netdata.svg����������������������������������0000664�0000000�0000000�00000000264�14753064456�0025245�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.764 21.827H9.922L0 2.173h14.084c5.476.01 9.913 4.565 9.916 10.183-.009 5.235-4.14 9.47-9.238 9.47z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/neteasecloudmusic.svg������������������������0000664�0000000�0000000�00000002337�14753064456�0027344�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.046 9.388a4 4 0 0 0-.66.19c-.809.312-1.447.991-1.666 1.775a2.3 2.3 0 0 0-.074.81 1.85 1.85 0 0 0 .764 1.35 1.483 1.483 0 0 0 2.01-.286c.406-.531.355-1.183.24-1.636-.098-.387-.22-.816-.345-1.249a65 65 0 0 1-.269-.954m-.82 10.07c-3.984 0-7.224-3.24-7.224-7.223 0-.98.226-3.02 1.884-4.822A7.2 7.2 0 0 1 9.502 5.6a.792.792 0 1 1 .587 1.472 5.62 5.62 0 0 0-2.795 2.462 5.54 5.54 0 0 0-.707 2.7 5.645 5.645 0 0 0 5.638 5.638c1.844 0 3.627-.953 4.542-2.428 1.042-1.68.772-3.931-.627-5.238a3.3 3.3 0 0 0-1.437-.777c.172.589.334 1.18.494 1.772.284 1.12.1 2.181-.519 2.989-.39.51-.956.888-1.592 1.064a3.04 3.04 0 0 1-2.58-.44 3.45 3.45 0 0 1-1.44-2.514c-.04-.467.002-.93.128-1.376.35-1.256 1.356-2.339 2.622-2.826a5.5 5.5 0 0 1 .823-.246l-.134-.505c-.37-1.371.25-2.579 1.547-3.007a2.4 2.4 0 0 1 1.025-.105c.792.09 1.476.592 1.709 1.023.258.507-.096 1.153-.706 1.153a.8.8 0 0 1-.54-.213c-.088-.08-.163-.174-.259-.247a.83.83 0 0 0-.632-.166.81.81 0 0 0-.634.551c-.056.191-.031.406.02.595.07.256.159.597.217.82 1.11.098 2.162.54 2.97 1.296 1.974 1.844 2.35 4.886.892 7.233-1.197 1.93-3.509 3.177-5.889 3.177zM0 12c0 6.627 5.373 12 12 12s12-5.373 12-12S18.627 0 12 0 0 5.373 0 12"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/netflix.svg����������������������������������0000664�0000000�0000000�00000000456�14753064456�0025301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.398 0v.006c3.028 8.556 5.37 15.175 8.348 23.596 2.344.058 4.85.398 4.854.398-2.8-7.924-5.923-16.747-8.487-24zm8.489 0v9.63L18.6 22.951c-.043-7.86-.004-15.913.002-22.95zM5.398 1.05V24c1.873-.225 2.81-.312 4.715-.398v-9.22z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/netgear.svg����������������������������������0000664�0000000�0000000�00000002455�14753064456�0025256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.496 12.459h.678c-.035.362-.296.545-.67.545-.566 0-.849-.496-.849-.982 0-.479.244-.991.811-.991.347 0 .598.2.716.499l.817-.324c-.285-.588-.813-.88-1.493-.88-1.068 0-1.746.672-1.746 1.691 0 .987.699 1.657 1.74 1.657.555 0 1.017-.186 1.341-.616.295-.391.329-.782.338-1.24h-1.683zM6.86 11.122h.833v2.449h.874v-2.449h.834v-.692H6.86zm-4.565 1.229h-.009L.861 10.43H0v3.141h.861v-1.924H.87l1.425 1.924h.861V10.43h-.861zm15.414-1.921-1.157 3.141h.889l.19-.578h1.149l.189.578h.889l-1.156-3.141zM4.174 13.571h2.098v-.691H5.036v-.543h1.185v-.69H5.036v-.525h1.236v-.692H4.174zm9.761 0h2.099v-.691h-1.237v-.543h1.185v-.69h-1.185v-.525h1.237v-.692h-2.099zm8.954-2.174c0-.67-.497-.967-1.15-.967h-1.34v3.141h.86v-1.208h.062l.785 1.208h1.046l-.987-1.287c.47-.079.724-.453.724-.887m-5.054.971.358-1.096h.024l.359 1.096zm3.646-.53h-.222v-.782h.247c.282 0 .522.049.522.391s-.265.391-.547.391m2.133-1.408a.38.38 0 0 0-.386.378.386.386 0 0 0 .772 0 .376.376 0 0 0-.386-.378m0 .688a.313.313 0 0 1-.315-.31c0-.183.149-.311.316-.311.164 0 .316.132.316.311 0 .183-.15.31-.317.31m.184-.404c0-.104-.101-.122-.174-.122h-.161v.416h.11v-.164h.033l.075.164h.121l-.089-.182c.049-.016.085-.054.085-.112m-.185.061h-.04v-.111h.033c.037 0 .079.006.079.057 0 .045-.039.054-.072.054"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/netlify.svg����������������������������������0000664�0000000�0000000�00000001103�14753064456�0025270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.49 19.04h-.23L5.13 17.9v-.23l1.73-1.71h1.2l.15.15v1.2L6.5 19.04ZM5.13 6.31V6.1l1.13-1.13h.23L8.2 6.68v1.2l-.15.15h-1.2zm9.96 9.09h-1.65l-.14-.13v-3.83c0-.68-.27-1.2-1.1-1.23-.42 0-.9 0-1.43.02l-.07.08v4.96l-.14.14H8.9l-.13-.14V8.73l.13-.14h3.7a2.6 2.6 0 0 1 2.61 2.6v4.08l-.13.14Zm-8.37-2.44H.14L0 12.82v-1.64l.14-.14h6.58l.14.14v1.64zm17.14 0h-6.58l-.14-.14v-1.64l.14-.14h6.58l.14.14v1.64zM11.05 6.55V1.64l.14-.14h1.65l.14.14v4.9l-.14.14h-1.65zm0 15.81v-4.9l.14-.14h1.65l.14.13v4.91l-.14.14h-1.65z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nette.svg������������������������������������0000664�0000000�0000000�00000004641�14753064456�0024747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.244 14.334q-.512.364-.65.443-.732.436-1.338.437-.338-.001-.663-.155a1.17 1.17 0 0 1-.486-.403 1 1 0 0 1-.162-.556q0-.438.296-1.113.423-.987.452-1.057a.5.5 0 0 1-.015-.127 3 3 0 0 0-.268.127 7 7 0 0 0-.774.578 14 14 0 0 0-.691.676 6 6 0 0 0-.085 1.001q0 .38.043.761l-1.705.268A6.2 6.2 0 0 1 0 13.706q0-.438.085-.889.085-.45.309-1.014.156-.395.437-.987l1.959-.324q-.183.451-.267.677a9 9 0 0 0-.254.691q.705-.65 1.409-1.001.564-.282 1.015-.282.254 0 .522.098.267.1.387.311.12.21.12.507 0 .422-.24 1.043-.282.705-.549 1.409 0 .099.07.12a.5.5 0 0 0 .141.02q.283 0 .841-.294a1.7 1.7 0 0 1-.052-.424q0-.338.098-.648.1-.31.297-.648.352-.578.986-.987a3.45 3.45 0 0 1 1.339-.521q.254-.029.395-.029.465 0 .831.156.366.154.606.507.141.226.141.45 0 .354-.352.691-.254.24-.684.451a7 7 0 0 1-.853.352q-.31.1-.873.24.183.381.522.614.337.231.718.232.579 0 1.156-.296.027-.015.883-.557a4 4 0 0 1 .096-.641l.047-.214 2.035-.121-.151.525a2 2 0 0 0-.092.529q0 .339.135.471.133.135.387.135.366 0 .958-.31l.454-.274q.005-.113.018-.241.022-.203.084-.5l.048-.213 2.034-.122q-.072.255-.151.525-.091.317-.092.529 0 .339.135.471.133.135.387.135.368 0 .959-.31l.294-.178a2 2 0 0 1-.013-.203q0-.338.099-.648.1-.31.296-.648.352-.578.986-.987.636-.409 1.339-.521.255-.029.396-.029.463 0 .831.156.366.154.605.507.141.226.141.45 0 .354-.352.691-.252.24-.683.451a7 7 0 0 1-.853.352q-.31.1-.874.24.183.381.522.614.339.231.718.232.579 0 1.156-.296.028-.014.958-.606v.634q-.084.057-.675.479a4.6 4.6 0 0 1-.72.437q-.705.31-1.55.31-.563 0-1.001-.133a2.1 2.1 0 0 1-.803-.473 1.6 1.6 0 0 1-.357-.456q-.621.45-.954.64-.747.422-1.352.422c-.227 0-.41-.014-.62-.113q-.537-.225-.748-.584a1.5 1.5 0 0 1-.158-.397q-.653.474-.997.672-.747.422-1.353.422c-.227 0-.41-.014-.62-.113q-.536-.225-.748-.584a1.5 1.5 0 0 1-.177-.493q-.148.101-.625.443a4.7 4.7 0 0 1-.719.437q-.705.31-1.55.31-.565 0-1.001-.133a2.1 2.1 0 0 1-.804-.473 1.7 1.7 0 0 1-.224-.245m2.832-2.574a1 1 0 0 0 .013-.169q0-.366-.309-.366a.8.8 0 0 0-.155.028q-.423.1-.663.536a1.9 1.9 0 0 0-.239.915q.592-.154.859-.309.438-.24.494-.635m12.782 0a.7.7 0 0 0 .014-.169q0-.366-.31-.366a1 1 0 0 0-.155.028q-.422.1-.662.536t-.24.915q.593-.154.86-.309.436-.24.493-.635m-10.838.043.283-1.113.578-.028.549-1.509 2.085-.366-.591 1.776.944-.043-.253 1.057q-1.796.121-3.595.226m3.877 0 .281-1.113.578-.028.549-1.509 2.086-.366-.592 1.776.944-.043-.253 1.057c-1.201.082-2.408.156-3.593.226"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/netto.svg������������������������������������0000664�0000000�0000000�00000017051�14753064456�0024760�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.878 6.859a.7.7 0 0 0-.434.157.64.64 0 0 0-.228.397L.01 13.625a.63.63 0 0 0 .12.506.62.62 0 0 0 .47.217h20.24v.012c.18 0 .373-.012.553-.036a2.7 2.7 0 0 0 1.084-.35 2.7 2.7 0 0 0 .843-.794q.216-.326.361-.686.144-.344.217-.723c.048-.24.084-.481.096-.734.012-.241 0-.494-.012-.747a2.3 2.3 0 0 0-.145-.602 1.6 1.6 0 0 0-.313-.505 2 2 0 0 0-.47-.374 2.1 2.1 0 0 0-.565-.216 5 5 0 0 0-.458-.085 6 6 0 0 0-.47-.024h-.192a4 4 0 0 0-.41.049c-.131.024-.264.048-.384.084a2 2 0 0 0-.374.143c-.12.06-.228.12-.337.194a3 3 0 0 0-.313.24c-.06.06-.132.12-.18.192l.024-.107a.63.63 0 0 0-.12-.507.62.62 0 0 0-.47-.216h-.602l.096-.53a.63.63 0 0 0-.12-.505.62.62 0 0 0-.47-.217h-.963a.7.7 0 0 0-.433.157.64.64 0 0 0-.23.397l-.133.699h-1.08l.095-.53a.63.63 0 0 0-.12-.506.62.62 0 0 0-.47-.217h-.963a.7.7 0 0 0-.433.157.64.64 0 0 0-.23.397l-.132.699h-.313a.7.7 0 0 0-.433.156.64.64 0 0 0-.229.397l-.036.205a1.8 1.8 0 0 0-.518-.481 2.2 2.2 0 0 0-.674-.253 3.5 3.5 0 0 0-.807-.085c-.096 0-.18 0-.277.011a3.2 3.2 0 0 0-.819.146 2 2 0 0 0-.385.143c-.12.06-.24.12-.348.194a3 3 0 0 0-.326.252 8 8 0 0 0-.29.3 4 4 0 0 0-.24.35c-.024.037-.036.073-.06.109 0 0 0 .012-.012 0-.012 0 0-.012 0-.012l.47-2.409a.63.63 0 0 0-.12-.505.62.62 0 0 0-.47-.216H5.658a.7.7 0 0 0-.433.157.64.64 0 0 0-.23.396l-.408 2.13-.494-2.141a.5.5 0 0 0-.096-.217.6.6 0 0 0-.145-.168.7.7 0 0 0-.433-.157zm-.012.458h1.469c.108 0 .217.084.24.192l.952 4.118c0 .011.024.011.024 0l.806-4.119a.24.24 0 0 1 .23-.192h1.07c.12 0 .18.084.17.192l-1.193 6.128a.24.24 0 0 1-.228.194H3.9a.26.26 0 0 1-.241-.194l-.94-4.056c0-.013-.022-.013-.022 0l-.795 4.056a.24.24 0 0 1-.23.194H.603c-.11 0-.18-.085-.158-.194L1.637 7.51a.24.24 0 0 1 .229-.192zm14.846.42h.963c.108 0 .18.085.157.194l-.205 1.035c0 .012 0 .012.012.012h1.132c.108 0 .18.084.156.193l-.132.674a.24.24 0 0 1-.23.192h-1.131c-.012 0-.012 0-.012.012l-.41 2.144c-.06.324.085.552.314.59.325.06.674.01.95 0 .013 0 .013.011.013.011l-.144.746c-.012.06-.036.109-.097.133-.132.072-.445.192-1.06.192-1.3 0-1.469-.95-1.3-1.842l.385-1.986c0-.013 0-.012-.012-.012h-1.963v.047c-.012 0-.012 0-.012.013l-.409 2.143c-.06.325.084.554.313.59.325.06.674.012.951 0 .012 0 .012.012.012.012l-.144.746c-.012.06-.036.11-.097.133-.132.072-.445.192-1.06.192-1.3 0-1.456-.95-1.3-1.842l.386-1.987c0-.012 0-.01-.012-.01h-.674c-.109 0-.18-.086-.157-.194l.132-.674a.24.24 0 0 1 .23-.193h.673c.012 0 .012 0 .012-.011l.205-1.048a.24.24 0 0 1 .23-.193h.962c.11 0 .18.085.157.194l-.205 1.035c0 .011 0 .011.012.011h1.964c.012 0 .012 0 .012-.012l.204-1.047a.24.24 0 0 1 .229-.193m4.919 1.21c.25.003.508.037.752.09.674.157 1.095.614 1.155 1.3.073.917-.072 1.819-.577 2.602-.374.566-.94.879-1.602.95-.373.037-.758.049-1.132-.023-.915-.17-1.348-.734-1.348-1.818.024-.494.12-1.095.36-1.65.41-.938 1.157-1.396 2.144-1.444a3 3 0 0 1 .248-.007m-12.086.008c.241-.004.49.016.725.07.818.145 1.252.77 1.155 1.674-.12.95-.77 1.276-1.54 1.312-.494.024-1.626.012-1.783.012 0 0-.011 0-.011.012-.025.47.096.855 1.035.867.855.013 1.24-.083 1.722-.216.012-.013.024 0 .024.011l-.169.844c-.012.071-.06.12-.132.143a5.8 5.8 0 0 1-2.12.23c-1.312-.084-1.745-.831-1.733-1.673a4.7 4.7 0 0 1 .36-1.758c.423-.987 1.205-1.457 2.228-1.517a3 3 0 0 1 .24-.01zM9.36 9.998a1.04 1.04 0 0 0-.884.472c-.157.24-.205.433-.23.554 0 0 .001.012.013.012h1.348c.314.012.47-.097.506-.373.048-.325-.12-.553-.397-.625a1.5 1.5 0 0 0-.356-.04m12.043.05c-.372.007-.706.185-.85.628-.145.42-.23.879-.265 1.336-.05.506.24.759.794.747.35.012.638-.157.807-.53.217-.482.289-1 .289-1.517 0-.337-.145-.542-.397-.614a1.4 1.4 0 0 0-.378-.05m-13.361 5.47c-.096 0-.144.072-.18.156l-.241.747-.253-.76c-.024-.071-.084-.131-.168-.131-.097 0-.157.06-.17.156l-.276 1.168a.3.3 0 0 0-.012.108c0 .097.084.169.18.169.12 0 .17-.096.193-.193l.145-.662.204.71c.024.073.073.157.157.157a.17.17 0 0 0 .157-.12c0-.012.012-.025.012-.037l.216-.71.157.662c.024.109.06.193.192.193a.21.21 0 0 0 .157-.193c0-.036-.012-.072-.024-.108l-.277-1.156c-.024-.084-.084-.156-.169-.156m8.85.012a.19.19 0 0 0-.192.192c0 .109.084.18.193.18.096 0 .18-.083.18-.18 0-.108-.084-.192-.18-.192zm-1.517.012c-.133 0-.205.072-.205.204V16.9c0 .133.072.205.205.205h.35c.24 0 .433-.048.614-.23a.76.76 0 0 0 .24-.553.79.79 0 0 0-.47-.722c-.132-.06-.229-.06-.385-.06zm-4.443.012c-.096 0-.157.084-.157.168v1.24c0 .097.06.169.157.169.096 0 .156-.084.156-.17v-.3l.374.398c.048.048.084.084.144.084.096-.024.17-.096.17-.18 0-.06-.049-.11-.086-.145l-.325-.313.301-.217c.06-.036.11-.084.11-.156a.16.16 0 0 0-.158-.157c-.06 0-.096.036-.144.072l-.386.3v-.625c0-.096-.048-.168-.156-.168m12.245.06c-.096 0-.156.072-.156.168v.204c-.096 0-.18.036-.18.145s.084.144.18.144v.674c0 .097.06.169.156.169.097 0 .157-.084.157-.17v-.673h.06c.084 0 .157-.06.157-.144 0-.097-.073-.145-.157-.145h-.06v-.205c0-.096-.06-.168-.157-.168zm-7.426.265c.256.008.467.163.467.445 0 .193-.12.373-.3.434a.7.7 0 0 1-.218.024h-.157v-.903zm1.888.072c-.205 0-.41.108-.41.337 0 .12.073.229.17.277.083.048.18.06.276.096.048.012.097.024.097.085 0 .048-.06.096-.11.096-.18 0-.192-.133-.336-.157-.084-.012-.17.049-.17.133 0 .204.302.3.47.3.24 0 .447-.132.447-.384.036-.23-.145-.301-.301-.338l-.157-.036c-.036-.012-.096-.024-.096-.072s.036-.084.084-.084c.156-.012.18.084.313.084a.13.13 0 0 0 .108-.108c.012-.157-.253-.23-.385-.23zm1.144 0a.586.586 0 0 0-.578.578c0 .325.265.59.59.59.132.012.457-.096.457-.277a.16.16 0 0 0-.156-.157c-.108 0-.145.12-.301.12a.267.267 0 0 1-.265-.264c0-.156.12-.265.277-.265.144 0 .18.108.277.108a.16.16 0 0 0 .156-.156c0-.18-.313-.277-.457-.277m-8.694.012a.143.143 0 0 0-.144.12.2.2 0 0 0-.013.085v.77c0 .097.06.169.157.169.096 0 .157-.085.157-.17v-.516c0-.05 0-.145.072-.145.06 0 .096.06.168.06.097.012.193-.072.193-.18 0-.11-.096-.193-.205-.193a.36.36 0 0 0-.24.096.16.16 0 0 0-.145-.096m2.312 0a.586.586 0 0 0-.578.578c0 .313.265.59.59.59.06 0 .108-.012.168-.024.11-.024.277-.12.277-.253-.012-.084-.048-.12-.144-.12h-.024c-.012 0-.012 0-.024.012-.024.012-.036.024-.06.036a.2.2 0 0 1-.085.048c-.024.012-.06.012-.108.012H12.4a.34.34 0 0 1-.193-.084l-.012-.012.566-.253c.072-.036.12-.072.12-.145 0-.24-.277-.385-.48-.385m1.107 0c-.313 0-.505.253-.505.542v.433c0 .097.06.169.156.169.097 0 .157-.085.157-.17v-.468c0-.11.072-.205.192-.205.073 0 .145.048.17.108a.4.4 0 0 1 .023.169v.396c0 .097.06.169.157.169.12.012.168-.072.168-.157v-.421a.534.534 0 0 0-.518-.566zm6.406 0a.59.59 0 0 0-.59.59c0 .325.277.566.59.566a.56.56 0 0 0 .578-.566.59.59 0 0 0-.578-.59m2.336 0c-.313 0-.505.253-.505.542v.433c0 .097.06.169.156.169s.157-.085.157-.17v-.468c0-.11.072-.205.192-.205a.19.19 0 0 1 .169.108c.024.049.024.109.024.169v.396c0 .097.06.169.156.169.109.012.169-.072.169-.157v-.421a.53.53 0 0 0-.157-.41.52.52 0 0 0-.36-.156zm-13.136.012c-.325 0-.542.265-.542.578s.229.59.542.59c.12 0 .23-.048.325-.132.024.072.072.12.156.12.11-.012.17-.084.17-.18v-.807c0-.097-.06-.17-.17-.17-.084 0-.132.037-.156.12a.45.45 0 0 0-.325-.12zm11.655 0c-.096 0-.156.084-.156.169v.42c0 .158.036.29.144.41a.52.52 0 0 0 .36.157c.314 0 .507-.253.507-.554v-.433c0-.097-.06-.17-.156-.17-.097 0-.157.085-.157.17v.456c0 .109-.072.205-.193.205a.19.19 0 0 1-.168-.11c-.024-.048-.024-.108-.024-.156v-.397c0-.096-.06-.168-.157-.168zm-3.876.012c-.097 0-.157.084-.157.169v.794c0 .097.06.169.157.169.096 0 .156-.084.156-.17v-.793c0-.097-.06-.17-.156-.17zm-4.468.24c.084 0 .144.037.18.097l.012.012-.517.217v-.024c0-.156.144-.301.325-.301zm-3.25.037a.287.287 0 0 1 .264.277c0 .145-.12.265-.265.265-.156 0-.265-.12-.265-.277 0-.144.12-.265.265-.265zm10.756.024c.143.005.248.13.248.265 0 .145-.12.265-.265.265-.144 0-.276-.108-.276-.253a.27.27 0 0 1 .264-.277zm-5.496.036c-.096 0-.168.06-.168.157 0 .096.072.156.168.156h.313c.085 0 .17-.06.17-.156s-.073-.157-.17-.157z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/neutralinojs.svg�����������������������������0000664�0000000�0000000�00000010057�14753064456�0026343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.563 1.396a.95.95 0 0 0-.534.184c-.404.307-.501.9-.425 1.654.075.755.335 1.704.751 2.8.357.937.835 1.984 1.407 3.095-1.17.146-2.24.338-3.158.57-1.08.274-1.958.6-2.583.973C.397 11.045 0 11.484 0 12s.397.955 1.021 1.328c.55.33 1.308.618 2.217.87a1 1 0 0 0-.006.097c0 .485.365.887.82.887.368 0 .678-.26.784-.616q.89.171 1.898.297a31 31 0 0 0-1.408 3.067c-.421 1.093-.686 2.04-.765 2.795-.08.754.016 1.347.42 1.656.201.154.46.208.734.181s.572-.125.896-.287c.649-.323 1.407-.894 2.244-1.67.962-.89 2.026-2.058 3.118-3.421 1.086 1.37 2.146 2.543 3.103 3.439.834.78 1.588 1.355 2.235 1.682.323.163.62.265.894.293s.534-.025.736-.178c.405-.307.502-.9.426-1.654-.054-.54-.206-1.18-.437-1.9a.91.91 0 0 0 .343-.72.92.92 0 0 0-.238-.625.8.8 0 0 0-.701-.251c-.312-.75-.69-1.557-1.125-2.4a27 27 0 0 0 3.187-.575c1.08-.273 1.958-.597 2.583-.97.624-.374 1.021-.813 1.021-1.329s-.397-.957-1.021-1.33c-.625-.373-1.503-.696-2.583-.969a27 27 0 0 0-3.156-.568 31 31 0 0 0 1.406-3.063c.422-1.093.687-2.04.766-2.795.08-.754-.017-1.347-.42-1.656a.95.95 0 0 0-.531-.185 1.3 1.3 0 0 0-.203.004c-.274.026-.57.127-.895.289-.51.254-1.092.665-1.722 1.205a.8.8 0 0 0-.418-.123c-.456 0-.82.4-.82.886q0 .178.06.334a35 35 0 0 0-2.465 2.791c-1.086-1.37-2.146-2.543-3.103-3.439-.834-.78-1.588-1.355-2.235-1.682-.323-.163-.62-.265-.894-.293a1.3 1.3 0 0 0-.204-.006zm.021.385a1 1 0 0 1 .143.004c.205.02.462.105.757.254.592.298 1.33.855 2.147 1.62.955.893 2.022 2.077 3.119 3.466-.428.544-.859 1.12-1.29 1.72a42 42 0 0 0-3.29.235 31 31 0 0 1-1.453-3.184c-.409-1.075-.658-2.002-.729-2.7-.07-.7.05-1.136.276-1.307a.55.55 0 0 1 .32-.108m12.854.033a.55.55 0 0 1 .32.108c.225.172.343.61.27 1.308s-.33 1.624-.743 2.698a31 31 0 0 1-1.455 3.15 42 42 0 0 0-3.312-.234 49 49 0 0 0-1.274-1.717 35 35 0 0 1 2.436-2.772.78.78 0 0 0 .543.223c.456 0 .82-.401.82-.887a.94.94 0 0 0-.133-.484c.61-.519 1.163-.909 1.625-1.139.297-.147.555-.23.76-.25a1 1 0 0 1 .142-.004zm-6.442 5.622c.344.443.69.913 1.035 1.394q-.51-.012-1.031-.014-.532.001-1.05.014c.35-.481.699-.95 1.046-1.394M12 9.203q.668.001 1.314.02.398.563.793 1.154c.366.55.71 1.093 1.041 1.633a54 54 0 0 1-1.046 1.623q-.395.584-.791 1.138-.646.02-1.311.022-.684-.001-1.348-.022a53 53 0 0 1-.789-1.148 52 52 0 0 1-1.04-1.633 53 53 0 0 1 1.84-2.765q.658-.02 1.337-.022m-1.824.04q-.315.444-.625.905c-.334.496-.647.988-.953 1.477a47 47 0 0 1-1.239-2.178 41 41 0 0 1 2.817-.205zm3.625 0a41 41 0 0 1 2.838.202 47 47 0 0 1-1.264 2.198 53 53 0 0 0-1.574-2.4m3.248.251c1.213.146 2.317.34 3.252.576 1.057.268 1.907.587 2.478.928s.834.689.834.998-.263.655-.834.996c-.57.342-1.421.662-2.478.93-.943.239-2.056.433-3.281.58a47 47 0 0 0-1.416-2.492 47 47 0 0 0 1.445-2.516M6.95 9.496c.424.805.899 1.64 1.418 2.494a47 47 0 0 0-1.443 2.508 30 30 0 0 1-2.059-.318.9.9 0 0 0-.23-.508.8.8 0 0 0-.584-.262.8.8 0 0 0-.696.418c-.894-.247-1.63-.53-2.136-.832C.65 12.655.387 12.31.387 12s.263-.654.834-.996c.57-.342 1.421-.662 2.478-.93.935-.237 2.039-.431 3.252-.578zm4.34.8c-.576 0-1.041.5-1.041 1.112 0 .484.29.897.695 1.049v.063c0 .612.466 1.109 1.041 1.109.576 0 1.041-.497 1.041-1.11q0-.025-.002-.05c.424-.141.73-.565.73-1.063 0-.294-.107-.575-.302-.783a1.01 1.01 0 0 0-.738-.326 1 1 0 0 0-.711.3 1 1 0 0 0-.713-.3zm-2.695 2.061a51 51 0 0 0 1.572 2.397c-.99-.04-1.941-.108-2.832-.205q.573-1.067 1.26-2.192m6.779.02c.448.743.862 1.472 1.236 2.176a42 42 0 0 1-2.814.199q.313-.443.625-.902c.333-.495.647-.986.953-1.473m-8.23 2.537c1.033.117 2.141.198 3.304.236.427.6.854 1.179 1.278 1.723-1.103 1.382-2.176 2.561-3.135 3.45-.821.76-1.562 1.31-2.155 1.605-.296.147-.554.23-.76.25s-.35-.018-.462-.104c-.225-.172-.343-.61-.27-1.308s.329-1.624.742-2.698c.366-.948.861-2.018 1.458-3.154m9.656.004c.459.884.854 1.727 1.178 2.504a.91.91 0 0 0-.348.724c0 .486.364.887.82.887a1 1 0 0 0 .123-.01c.218.686.36 1.293.408 1.782.07.698-.05 1.135-.275 1.306-.113.086-.258.124-.463.104s-.462-.105-.758-.254c-.59-.298-1.329-.855-2.146-1.62-.955-.893-2.023-2.077-3.12-3.466.43-.545.862-1.123 1.294-1.725a42 42 0 0 0 3.287-.232m-3.776.246a49 49 0 0 1-1.05 1.4 49 49 0 0 1-1.04-1.398 47 47 0 0 0 2.09-.002"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/newbalance.svg�������������������������������0000664�0000000�0000000�00000001335�14753064456�0025724�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.169 10.306 1.111-1.937 3.774-.242.132-.236-3.488-.242.82-1.414h6.47c1.99 0 3.46.715 2.887 2.8-.17.638-.979 2.233-3.356 2.899.507.06 1.76.616 1.54 2.057-.384 2.558-3.69 3.774-5.533 3.774l-7.641.006-.38-1.48 4.005-.28.137-.237-4.346-.264-.467-1.755 6.178-.363.137-.231-11.096-.693.534-.925 11.948-.775.138-.231zm5 .385 1.1-.006c.738-.005 1.502-.34 1.783-1.018.259-.632-.088-1.171-.55-1.166h-1.067zm-1.27 2.195-1.326 2.305h1.265c.589 0 1.64-.292 1.964-1.128.302-.781-.253-1.177-.638-1.177zM6.26 16.445l-.77 1.315-5.49.01.534-.923zm.385-10.216 4.417.006.336 1.248-5.276-.33zm5 2.245.484 1.832-7.542-.495.528-.92zm-3.84 5.281-.957 1.661-5.32-.302.534-.924z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/newegg.svg�����������������������������������0000664�0000000�0000000�00000011017�14753064456�0025077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.082 5.873q-.136 0-.276.01c-.73.05-1.504.281-2.256.64a9.6 9.6 0 0 0-3.024 2.3 7 7 0 0 0-.944 1.343c.393-.019.9-.043 1.023-.043.318-.003.547.097.71.246 0 0 .3-.033.416-.087l.002-.002a2 2 0 0 1 .799-.175c.354-.004.632.071.838.197a.52.52 0 0 1 .361-.15l.783-.01a.5.5 0 0 1 .209.042.5.5 0 0 1 .205-.046l.748-.005q.104 0 .197.039a.5.5 0 0 1 .199-.043l.783-.006a.52.52 0 0 1 .371.15l.102-.05q.369-.166.793-.175h.008c.381 0 .673.09.887.233l.17.142.057-.058a1.2 1.2 0 0 1 .278-.197c-.044-1.63-.56-3.1-1.686-3.82-.514-.334-1.114-.48-1.753-.475m-4.481.039a4 4 0 0 0-.276.008c-.703.048-1.447.263-2.173.598-1.394.646-2.722 1.736-3.588 2.946a7 7 0 0 0-.238.357C3.661 12.5 4.193 15.878 6.52 17.37a4.5 4.5 0 0 0 2.222.695l-.187.007a5.15 5.15 0 0 0 2.457-.435 4 4 0 0 1-.522-.284 4.5 4.5 0 0 1-1.466-1.541 5.1 5.1 0 0 1-.579-1.524h-.12a.518.518 0 0 1-.506-.647l.779-3.061a.52.52 0 0 1 .476-.39q.104-.194.221-.383a8 8 0 0 1 1.118-1.396c.84-.848 1.88-1.572 2.946-2.024l-.002-.003c-.517-.331-1.117-.474-1.755-.472Zm-4.384.036C4.976 5.977 2.259 7.807.969 9.88c-1.666 2.675-1.13 6.055 1.197 7.546 1.34.86 2.988.903 4.459.27a4.4 4.4 0 0 1-.603-.324c-2.324-1.489-2.86-4.866-1.193-7.545.896-1.442 2.482-2.762 4.116-3.445-.51-.308-1.1-.442-1.728-.434m15.314 4.579a.74.74 0 0 0-.521.197q-.202.194-.315.629l-.282 1.11a1.5 1.5 0 0 0-.06.468.37.37 0 0 0 .152.264q.134.102.383.097a.8.8 0 0 0 .288-.057 1.1 1.1 0 0 0 .29-.168l-.06.237a.9.9 0 0 1-.102.264q-.052.062-.156.063-.145.002-.093-.207l-.889.01q-.106.446.122.594.223.152.663.146a2 2 0 0 0 .61-.087 1.1 1.1 0 0 0 .429-.241.9.9 0 0 0 .227-.294 6 6 0 0 0 .18-.619l.603-2.36-.852.005-.124.233a.51.51 0 0 0-.493-.284m-2.414.02a.74.74 0 0 0-.517.195q-.202.195-.315.629l-.284 1.11a1.4 1.4 0 0 0-.06.468.36.36 0 0 0 .152.266q.133.101.381.1a.8.8 0 0 0 .286-.06 1.1 1.1 0 0 0 .294-.166l-.063.235a.8.8 0 0 1-.101.266q-.05.06-.152.063-.147.002-.096-.205l-.904.004v.317c.007.141.039.216.138.282q.227.148.665.142a1.9 1.9 0 0 0 .609-.083 1.2 1.2 0 0 0 .426-.242.9.9 0 0 0 .229-.298 5 5 0 0 0 .182-.617l.6-2.359-.847.004-.126.233a.5.5 0 0 0-.2-.213.6.6 0 0 0-.297-.07zm-1.988.02q-.315.005-.588.128a1.1 1.1 0 0 0-.438.361c-.11.154-.202.365-.268.631l-.23.893c-.055.23-.085.4-.085.52a.67.67 0 0 0 .09.324.55.55 0 0 0 .284.235 1.2 1.2 0 0 0 .49.08 1.4 1.4 0 0 0 .52-.09 1.1 1.1 0 0 0 .393-.264 1.3 1.3 0 0 0 .248-.326 2.5 2.5 0 0 0 .146-.436l.059-.224-.87.009-.104.403a1 1 0 0 1-.113.307.17.17 0 0 1-.159.08q-.08.001-.095-.058-.012-.06.04-.268l.169-.661 1.18-.01.102-.408q.113-.445.075-.69a.56.56 0 0 0-.25-.391q-.213-.144-.596-.144zm-5.59.057q-.314.003-.59.128-.274.125-.441.36-.166.233-.266.632l-.23.895q-.086.34-.085.517a.7.7 0 0 0 .09.327.56.56 0 0 0 .284.233q.202.082.49.081a1.5 1.5 0 0 0 .52-.091q.22-.089.391-.264c.114-.114.2-.223.248-.326a2.5 2.5 0 0 0 .146-.437l.057-.225-.87.006-.104.406a1 1 0 0 1-.114.308.18.18 0 0 1-.156.08q-.082.003-.097-.057-.012-.06.04-.268l.169-.663 1.183-.01.105-.406q.114-.446.075-.692a.56.56 0 0 0-.25-.388q-.212-.151-.596-.146zm-1.93.019a.75.75 0 0 0-.351.085q-.166.086-.31.253l.089-.282-.935.01-.781 3.06.919-.008.527-2.07a2.5 2.5 0 0 1 .132-.424.16.16 0 0 1 .142-.08c.061-.003.091.023.093.066q.003.07-.079.386l-.54 2.12.917-.004.548-2.147q.102-.404.104-.572a.37.37 0 0 0-.12-.284q-.119-.111-.355-.11zm6.252 0-.785.006a20 20 0 0 0-.655 1.763l.26-1.76-.749.005q-.592 1.586-.66 1.763l.248-1.76-.783.011-.391 3.057.983-.01.587-1.485q-.122.89-.185 1.44c0 .016.011.022.01.035h.97zm5.968.428q.08-.002.092.054a1 1 0 0 1-.045.27l-.241.948a1.4 1.4 0 0 1-.116.334c-.03.051-.077.073-.136.077q-.08 0-.09-.06a1 1 0 0 1 .044-.268l.263-1.029a.9.9 0 0 1 .098-.26.16.16 0 0 1 .131-.066m-2.41.018q.082 0 .09.059a.9.9 0 0 1-.043.268l-.243.949a1.4 1.4 0 0 1-.112.337.16.16 0 0 1-.138.075q-.08-.001-.09-.061a1 1 0 0 1 .043-.268l.264-1.03a.7.7 0 0 1 .1-.26.16.16 0 0 1 .13-.07zm-2.393.02h.012q.076 0 .083.071a1.2 1.2 0 0 1-.055.307l-.055.227h-.267l.059-.225a1.5 1.5 0 0 1 .1-.319q.037-.057.123-.06zm-5.583.057q.072 0 .079.069.008.07-.05.308l-.06.226-.263.004.056-.226a1.5 1.5 0 0 1 .104-.32q.034-.058.134-.06zm.442 2.806a1.7 1.7 0 0 1-.38.215l-.005.002q-.299.12-.704.127h-.004q-.407-.001-.69-.121a1.2 1.2 0 0 1-.25-.136.52.52 0 0 1-.418.215l-.917.004a.5.5 0 0 1-.137-.016.5.5 0 0 1-.136.018l-.305.004q.123.59.372 1.124a4.57 4.57 0 0 0 1.675 1.943 4.4 4.4 0 0 0 2.22.694c1.87.082 3.828-.952 5.008-2.846q.209-.335.388-.708l-.014-.008c-.175-.115-.28-.237-.331-.426l-.16.075a2 2 0 0 1-.706.126 1.7 1.7 0 0 1-.698-.122c-.204-.085-.765.091-.982.091h-.97a.5.5 0 0 1-.194-.038.5.5 0 0 1-.211.048l-.986.01a.52.52 0 0 1-.465-.275"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/newjapanprowrestling.svg���������������������0000664�0000000�0000000�00000056350�14753064456�0030117�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.95.086C10.875.082 9.814.24 8.69.563c-3.17.913-6.005 3.227-7.422 6.064a13 13 0 0 0-1.184 3.728c-.122.8-.11 2.422.025 3.3.204 1.327.562 2.498 1.08 3.536a11.8 11.8 0 0 0 2.295 3.187c2.015 2.007 4.58 3.207 7.502 3.51.516.053 1.876.018 2.479-.065 4.408-.602 8.04-3.365 9.696-7.376 1.065-2.578 1.12-5.86.14-8.506a15 15 0 0 0-1.058-2.156 12.04 12.04 0 0 0-4.65-4.299c-1.137-.59-2.306-.98-3.67-1.218A11.7 11.7 0 0 0 11.95.086m.05.207c6.465 0 11.705 5.24 11.705 11.707 0 6.466-5.24 11.706-11.705 11.706C5.534 23.706.293 18.466.293 12S5.533.293 12 .293m-.098.211c-.436 0-.86.018-1.162.053A12 12 0 0 0 2.594 5.24c-.779 1.04-1.52 2.592-1.86 3.9-.253.976-.316 1.513-.318 2.73-.003 1.18.028 1.516.232 2.523.68 3.336 2.987 6.31 6.096 7.856 1.43.71 2.564 1.036 4.334 1.244.41.048 2.023-.016 2.592-.103 3.306-.508 6.203-2.323 7.997-5.01.416-.622 1.028-1.803 1.268-2.45.215-.58.448-1.497.556-2.203.12-.774.12-2.62.004-3.372-.386-2.488-1.483-4.662-3.242-6.425-1.821-1.826-4.14-2.96-6.835-3.346a11 11 0 0 0-1.328-.08zm-.02.113c1.977-.005 3.637.39 5.407 1.287a11.25 11.25 0 0 1 4.638 4.34c1.073 1.834 1.55 3.598 1.553 5.74.002 1.91-.318 3.314-1.12 4.928-.956 1.925-2.185 3.34-3.901 4.491-2.154 1.446-5.024 2.185-7.494 1.93-2.242-.232-4.313-1.066-6.125-2.467-.533-.412-1.422-1.303-1.887-1.893-.68-.864-1.347-2.05-1.709-3.028-.856-2.316-.942-5.08-.226-7.263.166-.508.567-1.497.771-1.903C3.229 3.92 6.165 1.67 9.473.887 10.336.683 10.9.62 11.88.617m.074.211a10.5 10.5 0 0 0-1.518.106c-1.68.24-3.25.85-4.76 1.845-1.313.87-2.577 2.173-3.36 3.467-.498.827-1.036 2.129-1.284 3.11-.436 1.726-.404 3.704.088 5.568.776 2.94 2.922 5.576 5.692 6.99 1.437.733 2.666 1.076 4.496 1.255.35.034.967.027 1.49-.018a11.3 11.3 0 0 0 4.22-1.166 11.04 11.04 0 0 0 5.017-4.885c.848-1.622 1.212-3.13 1.215-5.047.004-1.895-.314-3.284-1.127-4.92-.934-1.882-2.11-3.227-3.811-4.364A11.66 11.66 0 0 0 11.955.83m.668.463q.116 0 .242.022c.37.06.467.15.496.46l.024.233h-.233c-.205 0-.233-.01-.246-.102-.012-.088-.048-.105-.234-.117-.17-.01-.224.002-.246.06-.038.1.035.143.32.18.469.063.627.21.627.594 0 .3-.078.468-.252.55-.18.087-.66.095-.894.015-.175-.06-.322-.285-.32-.49 0-.198.058-.245.265-.21.144.025.188.055.2.13.025.179.542.205.542.028 0-.11-.105-.16-.412-.195-.295-.033-.467-.143-.524-.34-.055-.192.007-.549.112-.654.108-.108.3-.166.533-.164m1.492.193c.038 0 .2.027.393.07.826.18.93.25.93.62 0 .305-.153.718-.3.814-.137.09-.293.09-.618.004l-.262-.068a2 2 0 0 0-.067.275c-.06.295-.075.304-.35.225-.081-.024-.148-.06-.148-.078 0-.02.094-.442.207-.938.114-.495.205-.91.205-.922zm-3.13.26.03.16c.036.19-.002.22-.312.264-.153.02-.22.053-.22.102 0 .056.04.064.218.04.12-.018.253-.043.297-.056.067-.02.08.006.08.16V2.6l-.268.052-.267.055.033.19c.04.216.006.257-.213.257l-.142.002-.1-.603c-.055-.332-.093-.61-.084-.62.01-.009.227-.056.482-.103zm3.56.367q-.055 0-.074.018a.4.4 0 0 0-.051.174c-.012.11.006.14.1.166.244.07.366.047.423-.078.047-.102.042-.128-.027-.178a.8.8 0 0 0-.371-.102m-5.11.033c.19 0 .23.017.33.15.243.33.286.75.094.927-.198.183-.6.29-.85.222-.105-.028-.312-.426-.345-.668a.57.57 0 0 1 .027-.306c.08-.147.485-.324.745-.324m6.803.075c.182-.008.608.135.785.27.215.162.273.342.207.636-.063.285-.407.896-.582 1.033-.153.12-.377.12-.691 0a1.15 1.15 0 0 1-.408-.28c-.16-.174-.168-.2-.14-.398.064-.474.527-1.205.796-1.257zm-9.113.258h.03c.154.004.28.088.398.254l.12.17-.194.12c-.192.12-.198.12-.272.034-.073-.085-.08-.086-.215-.006-.21.124-.286.224-.256.346.037.147.39.63.46.63.108 0 .443-.25.443-.332 0-.106-.072-.103-.233.012l-.13.094-.118-.174a1 1 0 0 1-.117-.205c0-.036.626-.45.68-.45.034 0 .282.36.37.536a.8.8 0 0 1 .052.285c0 .238-.173.44-.543.64-.283.15-.374.167-.545.1-.266-.108-.885-1.005-.885-1.283 0-.184.133-.36.414-.547.217-.145.393-.22.54-.224m2.276.09h-.01a1 1 0 0 0-.138.04c-.157.054-.174.11-.092.29.053.115.145.145.287.09.103-.04.08-.266-.04-.42Zm6.96.19a.22.22 0 0 0-.141.05c-.137.123-.342.626-.291.71.047.078.322.233.412.233.03 0 .126-.117.215-.26.224-.36.254-.51.115-.617a.5.5 0 0 0-.31-.117m1.695.398c.065 0 .87.65.92.742.038.07.036.143-.004.276-.065.215-.344.54-.465.54-.06 0-.088.033-.088.108 0 .06-.068.2-.152.31a3 3 0 0 0-.21.306c-.071.135-.108.13-.302-.04l-.162-.142.17-.23c.185-.252.178-.3-.051-.47l-.125-.093-.125.14a3 3 0 0 0-.2.247l-.075.107-.184-.146-.184-.145.602-.756c.33-.415.617-.754.635-.754m-12.567.32c.018 0 .315.322.66.715l.63.715-.198.203c-.11.112-.23.202-.265.202-.037 0-.286-.117-.553-.26-.522-.28-.523-.278-.065.242l.287.324-.15.145c-.082.08-.17.145-.193.144-.024 0-.327-.324-.674-.72l-.63-.72.14-.144c.28-.288.3-.29.84-.005.269.14.486.242.486.228s-.15-.2-.33-.416l-.328-.393.156-.13a.8.8 0 0 1 .187-.13m6.375.187c.67-.004 1.406.044 1.848.133 2.845.57 5.293 2.692 6.236 5.402.862 2.479.43 5.567-1.058 7.563-.353.472-1.135 1.292-1.57 1.646a8.4 8.4 0 0 1-3.641 1.704c-.447.09-.734.117-1.45.13-.493.01-1.052 0-1.24-.022-.64-.08-1.327-.23-1.797-.392-2.01-.7-3.853-2.35-4.81-4.308-.386-.79-.628-1.688-.733-2.723-.31-3.1 1.067-6.02 3.665-7.766 1.073-.72 2.087-1.1 3.49-1.302a8 8 0 0 1 1.06-.065m.162.14c-.645.003-1.346.05-1.744.13-1.626.328-3.092 1.156-4.302 2.43a7.6 7.6 0 0 0-1.37 1.95 7.8 7.8 0 0 0-.83 2.844c-.07.65-.024 1.777.096 2.383.48 2.416 2.187 4.635 4.426 5.75.718.358 1.74.66 2.668.787.45.062 1.982.025 2.424-.06 1.86-.35 3.39-1.16 4.623-2.456.642-.675.985-1.16 1.367-1.93.956-1.928 1.131-4.37.453-6.314-.211-.605-.69-1.542-1.041-2.035-.347-.487-1.103-1.292-1.565-1.668a7.97 7.97 0 0 0-4.183-1.773 9 9 0 0 0-1.024-.043m6.07.053c-.025.003-.05.03-.091.084-.084.11-.083.112.062.236q.257.22.35.043c.046-.086.009-.137-.242-.328q-.04-.032-.067-.035zm1.468.486.394.414c.216.228.437.47.49.535l.093.12-.176.18-.175.18-.165-.16c-.091-.088-.18-.16-.198-.16s-.267.215-.553.479l-.52.48-.15-.154c-.082-.085-.141-.176-.132-.2.009-.026.233-.25.498-.497.265-.248.487-.47.494-.498.007-.027-.05-.11-.125-.182-.076-.073-.137-.155-.135-.182s.084-.117.182-.2zm-8.737.2c.183.004.384.053.576.157.27.148.423.326.524.612.084.237.094.83.015.91-.08.08-.316.067-.453-.026a6 6 0 0 1-.32-.246 2 2 0 0 0-.41-.256c-.245-.107-.53-.406-.572-.6-.076-.344.238-.557.64-.55m2.432.098h.049a.65.65 0 0 1 .295.068c.306.168.346.57.088.898-.054.068-.296.224-.54.346-.243.123-.493.276-.554.342-.14.15-.168.15-.248-.006-.18-.352-.12-1.052.113-1.318.172-.196.508-.323.797-.33M9.34 4.84q.07 0 .15.004c.333.016.823.89.616 1.097-.073.073-.29.066-.518-.017a3.4 3.4 0 0 0-.604-.112c-.496-.05-.65-.11-.69-.267-.023-.097.01-.148.194-.317.31-.28.52-.38.852-.386Zm5.26.056c.16 0 .307.04.504.14.317.158.668.506.625.618-.041.107-.35.25-.698.323-.346.073-.43.076-.64.015-.203-.058-.33-.274-.33-.56 0-.192.02-.245.156-.38.135-.135.186-.155.383-.155M3.822 5.05h.022c.11.01.293.168.76.56.407.342.74.638.74.657s-.067.1-.15.18l-.147.144-.748-.62-.746-.618.09-.13c.072-.1.114-.167.18-.173m-.588.72c.014 0 .132.216.264.48l.24.483h.575c.315 0 .574.01.574.022s-.058.114-.127.228l-.125.21H3.67l.318.206c.175.114.326.215.336.225.022.022-.185.393-.218.39a23 23 0 0 1-.82-.48 38 38 0 0 1-.82-.498c-.03-.032.19-.395.24-.394.026 0 .158.072.296.16.138.087.27.16.29.16.023 0-.044-.16-.151-.354l-.196-.353.13-.244c.073-.133.145-.24.159-.24m13.02.047h.04l.147.008c.808.058.953.576.446 1.584q-.344.686-.56.356c-.111-.172-.05-.32.277-.66.33-.345.392-.45.392-.64q0-.325-.392-.36c-.347-.03-.6.118-.782.458-.176.332-.264.414-.513.485-.24.068-.283.156-.153.318.21.262.217.31.055.494-.11.125-.141.194-.117.266.017.053.042.173.054.266.03.22-.078.29-.578.379a3.5 3.5 0 0 0-.867.294c-.27.126-.53.236-.578.244-.17.03-.276.245-.27.555l.01.975.004.687-.138.125c-.162.147-.592.283-.797.252a1.5 1.5 0 0 1-.29-.082c-.12-.05-.158-.05-.218 0-.124.103-.09.32.072.455.373.315.453.412.453.545 0 .142.134.242.324.242.083 0 .088-.02.06-.226-.03-.226-.028-.227.202-.44.127-.116.245-.268.262-.336.05-.2.154-.277.537-.398.627-.198 1.162-.124 1.525.21.242.224.323.47.29.903-.023.339-.151.64-.344.82-.166.154-.196.137-.196-.1 0-.172-.017-.213-.103-.245-.181-.067-.714-.09-.79-.033-.038.028-.09.166-.116.304a1.4 1.4 0 0 1-.211.49c-.173.252-.46.505-.514.452-.017-.018-.03-.24-.03-.492 0-.425-.01-.465-.11-.545-.15-.122-.38-.154-.71-.1-.22.036-.317.032-.433-.016-.18-.073-.278-.045-.313.092-.022.09.072.749.147 1.026q.053.193-.237.015c-.077-.047-.28-.24-.45-.427l-.307-.344-.37-.053c-.667-.094-1.104-.41-1.41-1.02-.092-.183-.21-.36-.26-.392-.14-.09-.307.013-.38.236-.048.146-.108.21-.297.32-.13.076-.3.225-.375.33a1 1 0 0 1-.203.22q-.138.057-.295-.297c-.117-.264-.17-1.29-.076-1.514.037-.09.197-.243.443-.422.262-.19.416-.338.48-.46.05-.1.083-.19.073-.2s-.1.046-.2.125c-.098.08-.328.215-.51.303-.382.182-.504.177-.702-.036l-.125-.134-.05.125a2 2 0 0 0-.077.287c-.052.264-.144.395-.428.613a7 7 0 0 0-.637.6c-.2.215-.397.392-.435.392-.08 0-.108-.19-.155-1.035-.045-.81.067-1.314.38-1.705.23-.287.625-.455.939-.402.234.04.314.128.314.343 0 .437.094.419.324-.064.19-.398.268-.48.553-.572.18-.06.352-.215.297-.27-.02-.02-.18-.033-.36-.033-.294 0-.33-.01-.343-.092-.05-.323-.043-.32-.26-.097a.9.9 0 0 1-.4.26 3.1 3.1 0 0 0-.782.37.5.5 0 0 1-.2.086c-.132 0-.056-.33.134-.593a5 5 0 0 0 .322-.545c.272-.54.5-.743.832-.743.152 0 .173.017.24.184.04.1.1.184.13.184.12 0 .156-.164.11-.512-.112-.87-.021-1.33.296-1.48.285-.136.45-.086 1.03.312.35.24.394.258.646.258.147 0 .45-.045.673-.1.31-.076.554-.1 1.047-.103.612-.004.656.002.918.125.514.24.644.446.57.9-.025.156-.032.302-.017.326.08.127-.054.36-.422.737q-.385.395-.36.464c.022.057.14.073.587.09.6.023.723-.003.816-.178.052-.097.047-.137-.04-.304-.12-.234-.18-1.068-.101-1.363.1-.367.485-.647 1.11-.807a1.6 1.6 0 0 1 .633-.04c.817.083.885.072 1.504-.224.413-.198.529-.25.689-.256m4.401.135c.3 0 .648.46.65.856.002.16-.02.213-.16.336-.092.08-.19.136-.22.127s-.094-.094-.145-.188c-.077-.143-.08-.175-.027-.21.054-.032.055-.064.008-.18-.078-.186-.196-.287-.278-.237-.053.033-.038.096.082.358.237.513.186.683-.277.93-.276.147-.39.12-.651-.15-.226-.235-.346-.485-.346-.724 0-.113.34-.474.422-.447.026.01.09.09.144.182.09.156.092.172.02.252s-.07.096.025.267c.057.1.137.19.18.197.144.028.144-.133-.005-.435-.08-.162-.145-.328-.145-.37 0-.248.405-.564.723-.564M7.142 6.32c-.112-.003-.205.028-.256.102-.105.15-.095.618.02.928.082.216.265.44.36.44.016 0 .158-.116.315-.257.413-.368.458-.625.164-.92-.182-.182-.417-.287-.603-.293m10.422.567c.063.004.142.075.263.213.288.326.276.348-.222.435a.35.35 0 0 1-.205-.025c-.101-.06-.103-.234-.004-.442.059-.124.105-.186.168-.18m.355 1h.014a.7.7 0 0 1 .18.055c.266.102.648.442.777.69.105.203.139.63.056.713-.107.108-.32.096-.605-.033-.497-.226-.61-.398-.61-.922 0-.242.022-.342.087-.422.042-.053.064-.08.1-.082m-.95.037q.11.003.25.133c.142.132.289.526.3.806.007.15-.078.19-.27.125a3 3 0 0 1-.282-.133c-.215-.114-.276-.275-.23-.613.028-.213.114-.322.234-.318m-14.482.703a.74.74 0 0 1 .504.186c.292.255.362.586.197.923-.17.35-.62.52-.964.368-.523-.235-.66-.808-.29-1.217a.76.76 0 0 1 .553-.26m18.947.002c.212.003.427.09.582.27a.9.9 0 0 1 .185.359.784.784 0 0 1-.99.873.776.776 0 0 1-.457-1.1.74.74 0 0 1 .68-.402m-12.79.17c-.15 0-.272.009-.272.02 0 .01.043.265.094.568.19 1.128.38 1.367 1.27 1.586.773.19.864.262.827.666-.017.195-.007.298.04.367.058.082.156.132.156.08a2 2 0 0 0-.05-.162c-.04-.11-.038-.162.005-.213.04-.048.046-.167.023-.41-.028-.307-.02-.353.07-.475.09-.125.094-.153.044-.398a2.3 2.3 0 0 1-.024-.623c.03-.345.028-.365-.084-.477-.097-.097-.16-.117-.373-.117-.193 0-.322-.034-.53-.14A2.95 2.95 0 0 0 8.646 8.8m-6.197.062c-.346.027-.59.45-.437.758.158.333.68.41.906.11.19-.233.138-.634-.14-.778a.54.54 0 0 0-.286-.09Zm18.937.002c-.374.013-.623.5-.41.809.168.265.58.348.81.125.232-.196.254-.596.012-.79a.6.6 0 0 0-.412-.144m-6.011.188q.009 0 .012.002c.044.042-.293 1.034-.418 1.23q-.363.57-1.227.389a1.5 1.5 0 0 0-.4-.02l-.194.026.028-.31c.028-.318.095-.502.219-.604.063-.053.072-.037.072.127 0 .273.064.404.27.54.31.206.697.12.947-.208.116-.154.122-.56.01-.78-.045-.086-.066-.173-.046-.193.04-.04.632-.2.727-.2m-6.605.023c.016 0 .108.023.203.05l.172.054-.094.156c-.075.126-.087.204-.065.395.065.547.56.819 1.07.588.18-.083.43-.346.43-.456 0-.03.018-.052.04-.052.094 0 .178.142.208.35.018.122.043.265.055.318.02.09-.002.099-.36.127l-.61.05a1.4 1.4 0 0 1-.383-.017c-.323-.082-.52-.307-.625-.713-.07-.27-.098-.85-.04-.85m8.174.05c.122-.002.278.099.407.284.126.183.129.19.129.918 0 .503-.018.74-.053.752-.03.01-.164-.086-.303-.213-.368-.336-.468-.595-.432-1.111.016-.22.053-.45.082-.516a.18.18 0 0 1 .17-.115m-7.414.183q.046 0 .114.008c.513.057.74.533.365.765-.228.14-.413.123-.602-.055a.6.6 0 0 1-.187-.318c-.025-.144-.013-.188.09-.293.08-.08.127-.107.22-.107m4.72.095h.02c.05.002.089.025.15.07.092.07.128.14.139.274.025.342-.13.543-.457.596-.125.02-.175.002-.262-.092a.6.6 0 0 1-.133-.322c-.02-.176-.006-.223.092-.32a.86.86 0 0 1 .45-.206m-4.571.137c-.122.005-.203.08-.203.197 0 .23.328.302.423.092.07-.152.004-.267-.166-.287zm8.35.004q.078 0 .222.053c.45.16.93.587 1.125 1.004.245.52.246 1.447.004 1.69-.15.15-.277.104-.691-.247a21 21 0 0 0-.565-.463c-.192-.147-.342-.437-.344-.658 0-.08.03-.284.07-.453a2.6 2.6 0 0 0 .06-.574c-.013-.251.006-.35.12-.352m-3.922.127q-.23-.002-.228.24c0 .092.03.14.103.17.116.046.27.018.32-.06.052-.08.042-.234-.02-.295-.03-.03-.11-.055-.175-.055m2.659 1.285c.125 0 .406.335.447.535.053.26.038.738-.03 1.024-.07.3-.227.687-.28.687-.02 0-.117-.094-.217-.21-.277-.324-.316-.494-.198-.837.053-.153.107-.4.12-.545.06-.614.07-.654.158-.654M1.08 11.04l.287.025c.353.03 1.66.116 1.783.116.082 0 .09.027.08.283l-.015.283-.572.225a9 9 0 0 0-.596.246c-.013.012.253.008.588-.01l.607-.031-.013.199-.014.2-.873.079c-.48.043-.96.089-1.067.1l-.195.02.002-.35v-.35l.693-.228c.8-.265.793-.288-.109-.295l-.586-.004v-.254Zm21.001.307.076.002c.202.004.39.028.47.072.222.12.264.235.265.723 0 .537-.085.724-.37.81-.234.07-.648.068-1.052-.006-.522-.095-.65-.168-.713-.4-.06-.217-.033-.713.047-.861.06-.115.28-.231.435-.231.108 0 .117.016.117.2 0 .163-.018.207-.09.226-.135.035-.2.24-.138.428.04.124.08.158.22.187.243.052.733.032.811-.033.09-.076.093-.52.002-.594-.13-.108-.23-.037-.246.174l-.016.197-.214-.015-.215-.014v-.772l.138-.04a2 2 0 0 1 .473-.051zm-15.895.43c.036 0 .09.057.117.126.1.253.237.915.265 1.297.034.46 0 .552-.357.946-.127.14-.292.393-.367.56-.206.458-.317.55-.463.385-.19-.214-.492-1.225-.492-1.64 0-.242.18-.704.36-.923.16-.196.853-.752.937-.752m11.68.095q.053 0 .126.043c.177.1.735.852.85 1.147.143.367.142.903-.004 1.228-.108.242-.281.422-.402.422-.036 0-.261-.19-.502-.424-.605-.585-.7-.786-.54-1.164a6 6 0 0 0 .2-.68c.103-.42.163-.57.27-.572m-14.67.883q.025 0 .028.002c.026.026.248 1.097.23 1.11a3 3 0 0 1-.205.054c-.22.054-.185.103-.3-.42-.062-.28-.102-.33-.21-.262-.05.033-.05.099.012.395.04.195.074.362.074.369 0 .025-.464.124-.484.103a3 3 0 0 1-.1-.394c-.075-.36-.083-.375-.203-.375-.069 0-.137.019-.15.04-.014.023.015.223.064.446.05.224.075.42.057.436-.044.039-.47.18-.545.18-.033 0-.06-.013-.06-.028s-.076-.348-.165-.74a9 9 0 0 1-.148-.725c.032-.026 1.86-.19 2.105-.191m4.896.168c.096 0 .102.01.265.482.08.226.17.382.31.528.247.258.35.41.35.52 0 .116-.59.993-.67.993-.034 0-.13-.091-.212-.205a11 11 0 0 1-.38-.584c-.217-.358-.23-.392-.23-.7 0-.52.28-1.034.567-1.034m12.653.185c.414.006 2.005.093 2.03.118.018.018-.078.712-.102.734a18 18 0 0 1-.76.094c-.412.046-.723.09-.69.103.035.012.352.086.706.164.62.138.64.147.63.256-.03.31-.064.41-.14.406-.043-.002-.51-.143-1.037-.31-.528-.168-.96-.314-.96-.326l.032-.26.03-.236.56-.104c.31-.057.54-.112.514-.121a8 8 0 0 0-.504-.074l-.455-.057.015-.182a.7.7 0 0 1 .033-.2.5.5 0 0 1 .098-.005m-4.49.047c.083-.006.192.057.272.176.088.13.104.216.104.533 0 .454-.058.633-.397 1.227-.198.348-.276.447-.353.447-.054 0-.12-.027-.145-.06a22 22 0 0 1-.29-.424c-.214-.32-.24-.38-.214-.522.048-.253.145-.402.528-.808.197-.21.373-.425.39-.48s.057-.086.106-.09m-12.81.779c.04 0 .115.335.08.367a3 3 0 0 1-.405.2c-.202.09-.353.165-.336.165s.204-.04.414-.09.396-.092.414-.092c.037 0 .145.198.192.35.026.084-.025.124-.405.32-.238.124-.427.23-.42.237s.216-.05.46-.13c.247-.078.455-.134.464-.124s.05.093.088.185l.07.166-.746.235c-.41.129-.867.275-1.017.324a3 3 0 0 1-.305.09c-.017 0-.075-.107-.129-.237a1.5 1.5 0 0 1-.097-.29c0-.031.228-.164.505-.296.278-.131.504-.245.504-.253s-.22.044-.492.117a6 6 0 0 1-.568.133c-.048 0-.108-.094-.172-.26-.055-.143-.092-.265-.084-.274a90 90 0 0 1 1.984-.843m3.42.23c.176 0 .35.188.53.576.086.19.26.502.385.694.144.22.227.398.227.484 0 .075-.102.459-.227.854-.124.394-.24.796-.256.89-.015.099-.053.172-.088.172-.033 0-.214-.182-.402-.402-.434-.51-.748-.934-.902-1.227-.106-.2-.12-.284-.12-.643 0-.35.02-.451.126-.68.204-.44.484-.717.726-.718m10.427.086h.002c.098.005.208.082.35.229.428.445.647 1.477.337 1.595-.117.045-.285-.06-.41-.258-.083-.131-.147-.185-.224-.185-.163 0-.176.107-.053.434.174.462.19.672.072.916-.12.248-.377.486-.527.486-.095 0-.123-.044-.211-.31a5 5 0 0 0-.28-.635c-.248-.457-.24-.53.14-1.14a14 14 0 0 0 .456-.788c.12-.238.222-.35.348-.344m3.093.28c.043.002 2.034.59 2.047.607.02.024-.218.632-.246.63-.016 0-.463-.178-.993-.396s-.968-.4-.974-.404c-.023-.016.137-.436.166-.436m-11.095.229c.043 0 .138.088.213.195.295.422.43.892.43 1.514 0 .432-.003.447-.102.447-.067 0-.21-.111-.408-.318-.393-.41-.566-.758-.53-1.07.033-.273.288-.77.397-.77m1.873.048c.037 0 .375.688.375.763s-.222.244-.32.244a.2.2 0 0 1-.14-.07c-.098-.12-.11-.504-.022-.732.043-.113.09-.205.107-.205m2.023.023.065.16c.102.25.13.557.064.688-.07.137-.196.16-.367.066s-.158-.207.06-.594zm1.784.21q.1 0 .164.099c.089.143.18.785.146 1.017-.04.259-.23.477-.617.707-.36.214-.328.203-.414.149-.05-.032-.056-.105-.03-.332.02-.16.04-.426.048-.59.016-.368.15-.671.396-.893q.178-.16.307-.158zm-2.922.638c.072 0 .31.073.53.164.408.169.562.182 1.015.086.323-.07.338.209.027.482-.2.176-.323.177-.828.002-.553-.192-.79-.185-1.477.045-.3.1-.562.184-.58.184s-.1-.07-.185-.155c-.242-.242-.273-.535-.057-.533.058 0 .195.042.305.092.32.145.456.12.81-.14.2-.148.355-.227.44-.227m9.54.01.291.115.29.115-.276.59c-.153.325-.29.59-.305.59a24 24 0 0 1-.9-.48 44 44 0 0 0-.91-.495c-.044-.016.11-.353.163-.353.02 0 .325.143.674.318l.635.318.17-.36zm-1.94.542c.056 0 .377.14.377.17a1.5 1.5 0 0 1-.1.2c-.056.097-.092.186-.08.195.01.009.33.198.708.422l.7.414c.02.012-.238.43-.265.428a18 18 0 0 1-.71-.457l-.69-.455-.13.162-.13.16-.17-.123-.18-.133c-.01-.008.604-.92.66-.98q.004-.004.009-.003m-16.417.135.118.172a.8.8 0 0 1 .115.217c0 .026-.072.096-.16.156s-.16.135-.16.168c0 .075.222.342.285.342.04 0 .67-.42 1.058-.705l.127-.094.112.135a.7.7 0 0 1 .113.172c.004.089-.96.868-1.254 1.01-.262.13-.357.144-.512.08-.145-.057-.352-.294-.498-.563-.107-.198-.126-.277-.1-.41.036-.2.242-.416.542-.568zm12.547.047c.112 0 .292.263.344.504a1.65 1.65 0 0 1-.021.865c-.113.38-.3.544-1.1.963-.393.206-.72.373-.73.373-.007 0-.025-.19-.042-.424a3 3 0 0 0-.107-.638c-.11-.31-.04-.446.322-.637.342-.18.55-.338.96-.72.17-.158.34-.286.374-.286m-7.302.018q.035 0 .086.01c.24.047.385.135.718.445.17.158.395.354.5.435.31.24.343.456.2 1.338-.074.47-.107.572-.186.586-.037.007-.273-.104-.525-.246-.698-.393-.947-.573-1.1-.791-.124-.177-.142-.241-.156-.594-.022-.525.05-.837.244-1.04.1-.106.144-.143.22-.143m-3.208.986.152.148c.084.082.154.167.154.188s-.12.22-.267.44c-.416.62-.843 1.3-.827 1.316.01.008.325-.282.703-.645.38-.362.7-.661.713-.662.052-.004.558.45.666.598.2.27.137.473-.263.85-.136.13-.293.25-.348.269-.13.042-.368-.075-.562-.275-.085-.088-.177-.158-.204-.16-.026 0-.15.115-.28.257l-.231.26-.328-.38-.328-.376.136-.197a1 1 0 0 0 .133-.236c0-.021-.07-.118-.154-.217l-.155-.18-.222.098-.223.097-.172-.193a1.3 1.3 0 0 1-.172-.22c0-.016.468-.196 1.04-.403zm13.699.004c.112 0 .258.068.38.176.078.067.076.077-.04.199-.093.097-.152.12-.235.1-.082-.021-.144.005-.244.1-.15.145-.17.227-.062.269.04.015.08.027.088.027s.113-.082.236-.184c.288-.238.479-.292.7-.2.447.186.73.527.672.816-.036.18-.24.453-.47.627-.19.144-.424.174-.592.076a3 3 0 0 1-.273-.205l-.18-.15.17-.17.219.207.168-.186c.196-.218.208-.306.053-.377-.104-.047-.135-.032-.34.16-.334.312-.542.337-.828.096-.175-.147-.278-.337-.278-.512 0-.256.434-.7.686-.7m-8.297.469a.25.25 0 0 1 .13.033c.212.114.968 1.278.968 1.492 0 .162-.455.218-.79.098-.434-.155-.584-.396-.585-.936-.002-.424.105-.677.277-.687m-5.72.09c-.027.004-.12.038-.225.083-.214.092-.217.096-.137.184.08.09.083.09.23-.08a1 1 0 0 0 .14-.186zm8.519.13q.02 0 .039.002c.166.012.254.172.252.473-.005.5-.267.846-.73.967-.344.09-.38.088-.575-.01-.11-.055-.165-.116-.174-.195-.024-.21.466-.843.848-1.096q.2-.133.34-.14m4.562.158c.04.002.093.046.176.142l.152.178-.28.223c-.374.298-.362.279-.263.369.084.076.1.07.387-.174l.299-.254.164.203.166.2-.3.238c-.163.13-.298.263-.298.294 0 .032.036.092.08.13.075.068.108.053.42-.198.186-.15.353-.271.373-.271.042 0 .415.41.41.453-.002.024-.712.606-1.03.842l-.11.082-.201-.29c-.63-.89-.996-1.43-.996-1.46 0-.026.498-.453.816-.7a.05.05 0 0 1 .035-.01zm-12.176.529c-.02 0-.09.058-.16.13l-.127.132.196.164.197.162.127-.09c.07-.05.13-.12.13-.152 0-.063-.298-.346-.363-.346m1.23.394c.09-.005.415.18.415.244 0 .018-.12.453-.27.97-.15.514-.267.942-.26.95.007.006.216-.337.462-.766.594-1.036.505-.945.796-.823.232.096.242.106.22.241-.04.223-.09.99-.065.99.012 0 .11-.212.22-.47.108-.26.203-.476.208-.483a.7.7 0 0 1 .2.062c.145.058.185.095.163.15-.017.042-.185.5-.375 1.016-.19.518-.36.953-.375.97-.016.015-.163-.032-.326-.106a6 6 0 0 1-.303-.143c-.004-.005.037-.33.094-.72a10 10 0 0 0 .09-.73c-.008-.008-.153.262-.32.6-.17.336-.313.62-.32.628-.017.016-.78-.385-.878-.46-.04-.033-.033-.104.03-.29l.085-.248-.224-.145-.225-.145-.192.164c-.208.18-.227.177-.49-.048l-.15-.13.857-.617c.472-.341.885-.637.918-.657l.016-.002zm9.802.018c.226 0 .568.38.568.628q0 .15.066.15c.082 0 .287.205.553.55l.207.27-.226.137-.225.14-.232-.319c-.128-.175-.262-.32-.297-.32a.9.9 0 0 0-.252.107l-.186.107.203.358c.113.196.194.375.18.398-.026.042-.36.225-.41.225-.015 0-.234-.43-.486-.952l-.457-.95.103-.076c.184-.14.8-.453.89-.453m-.014.508a.4.4 0 0 0-.19.064c-.253.137-.253.14-.167.271a.4.4 0 0 0 .097.12c.01 0 .1-.053.2-.116.189-.12.204-.144.156-.27q-.027-.07-.096-.07m-1.03.005.342 1.024.342 1.024-.252.095a2 2 0 0 1-.304.098c-.03 0-.168-.227-.305-.504s-.252-.498-.26-.49c-.007.007.059.245.147.53.087.287.16.534.16.55 0 .027-.497.234-.563.234-.017 0-.061-.057-.097-.127-.1-.192-.856-1.8-.856-1.82 0-.023.276-.117.342-.117.029 0 .145.185.256.412.11.226.206.405.213.398a3 3 0 0 0-.1-.422 5 5 0 0 1-.113-.457c0-.043.452-.231.478-.2.007.01.11.2.23.42.12.223.226.397.235.388.01-.01-.053-.214-.138-.453l-.157-.435.2-.074zm-8.95.118c-.028 0-.094.05-.213.15-.107.092-.108.097-.024.16.124.094.163.068.227-.15.03-.106.04-.158.01-.16m2.802.475c.123-.005.908.187 1 .247a.37.37 0 0 1 .137.188c.052.207-.01.736-.105.898-.124.212-.27.252-.64.178-.35-.07-.36-.063-.407.27-.066.457-.046.438-.38.357-.19-.046-.197-.052-.167-.19.04-.187.53-1.925.547-1.945q.003-.002.015-.004m3.487.226c.207 0 .263.02.373.13.17.17.32.66.353 1.157.032.47-.04.674-.277.787-.216.103-.617.137-.805.07a.6.6 0 0 1-.24-.173c-.122-.165-.222-.69-.223-1.178 0-.385.01-.433.117-.56.136-.162.354-.233.702-.233m-1.674.045c.515 0 .574.01.652.096.124.136.153.683.045.847-.073.112-.074.125 0 .207.045.05.087.18.096.305.008.12.02.33.03.463l.019.242-.235-.014-.234-.013-.033-.344a3 3 0 0 0-.057-.402c-.013-.036-.11-.057-.252-.057h-.23v.826h-.252c-.21 0-.253-.013-.252-.08 0-.044.03-.504.068-1.02.037-.519.068-.968.068-.999 0-.043.145-.057.567-.057m-1.526.264q-.02 0-.025.006a1 1 0 0 0-.05.197l-.03.168.2.045.232.05c.018.001.054-.037.08-.085a.5.5 0 0 0 .047-.2c0-.097-.03-.118-.23-.158a1.4 1.4 0 0 0-.185-.023zm3.125.148a.54.54 0 0 0-.263.065c-.08.06-.083.093-.037.51.062.576.142.655.505.503l.164-.068-.025-.336a2 2 0 0 0-.096-.504c-.064-.153-.087-.17-.248-.17m-1.595.047c-.152 0-.16.005-.16.184 0 .178.007.183.16.183a.8.8 0 0 0 .228-.03c.042-.015.072-.08.072-.154 0-.142-.065-.183-.3-.183m2.888.057h.008c.026.028.157.37.147.38a3 3 0 0 1-.278.08l-.263.07-.026-.122-.04-.2c-.013-.062.038-.097.216-.15a2 2 0 0 1 .236-.058"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/newrelic.svg���������������������������������0000664�0000000�0000000�00000000316�14753064456�0025433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.002 14.31v7.383L12 24V12L1.608 6v4.616ZM12 0 2.823 5.298l3.998 2.308L12 4.616l6.393 3.692v7.384l-5.178 2.99V23.3l9.176-5.3V6Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/newyorktimes.svg�����������������������������0000664�0000000�0000000�00000001532�14753064456�0026364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.272 14.815h-.098a7.63 7.63 0 0 1-4.363 4.483v-4.483l2.444-2.182-2.444-2.182V7.397a3.917 3.917 0 0 0 3.927-3.84c0-2.629-2.509-3.556-3.927-3.556a4.3 4.3 0 0 0-1.091.12v.131h.556A1.473 1.473 0 0 1 18 1.583a1.43 1.43 0 0 1-1.488 1.367l-.061-.004c-2.444 0-5.323-1.985-8.454-1.985a4.484 4.484 0 0 0-4.713 4.178A3.12 3.12 0 0 0 5.76 8.346v-.12a1.48 1.48 0 0 1-.676-1.364 1.844 1.844 0 0 1 1.973-1.705l.034.004c2.629 0 6.872 2.182 9.501 2.182h.098v3.142l-2.444 2.182 2.444 2.182v4.549a9.4 9.4 0 0 1-3.033.469 6.75 6.75 0 0 1-4.614-1.516l4.429-1.985V7.451l-6.196 2.727a6.55 6.55 0 0 1 3.589-3.905v-.098c-4.516 1.004-8.138 4.243-8.138 8.705 0 5.193 4.025 9.12 9.818 9.12 6.011 0 8.727-4.363 8.727-8.814zM8.858 18.186a6.87 6.87 0 0 1-2.007-5.16 8.2 8.2 0 0 1 .371-2.596l2.051-.938v8.476z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nexon.svg������������������������������������0000664�0000000�0000000�00000000332�14753064456�0024750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.714 15.358V0L0 5.697v15.358L13.29 24 24 18.303zm-9.495-1.219 7.291 1.568-7.291 3.832zm11.895 8.578L2.35 20.327l7.454-3.926 10.846 2.406z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nextbilliondotai.svg�������������������������0000664�0000000�0000000�00000001167�14753064456�0027200�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.399 13.37a6 6 0 0 0-.565-.568 6.38 6.38 0 0 0-4.234-1.599h-4.8V6.401a6.38 6.38 0 0 0-1.598-4.234 6 6 0 0 0-.567-.564A6.397 6.397 0 0 0 .002 6.402V11.2a1.6 1.6 0 0 0 1.6 1.599h9.595v4.799a6.37 6.37 0 0 0 .855 3.198l.084.145a6.4 6.4 0 0 0 .662.895 7 7 0 0 0 .564.564 6.5 6.5 0 0 0 .891.658l.146.086a6.41 6.41 0 0 0 7.432-.744 7 7 0 0 0 .566-.566 6.397 6.397 0 0 0 0-8.467zm-11.198-2.171H1.605v-4.8a4.799 4.799 0 0 1 9.596 0zm6.397 11.195a4.77 4.77 0 0 1-3.2-1.225 4 4 0 0 1-.377-.376 4.78 4.78 0 0 1-1.221-3.199v-4.796h4.799a4.799 4.799 0 0 1 0 9.596z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nextcloud.svg��������������������������������0000664�0000000�0000000�00000001436�14753064456�0025634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.018 6.537c-2.5 0-4.6 1.712-5.241 4.015-.56-1.232-1.793-2.105-3.225-2.105A3.57 3.57 0 0 0 0 12a3.57 3.57 0 0 0 3.552 3.553c1.432 0 2.664-.874 3.224-2.106.641 2.304 2.742 4.016 5.242 4.016 2.487 0 4.576-1.693 5.231-3.977.569 1.21 1.783 2.067 3.198 2.067A3.57 3.57 0 0 0 24 12a3.57 3.57 0 0 0-3.553-3.553c-1.416 0-2.63.858-3.199 2.067-.654-2.284-2.743-3.978-5.23-3.977m0 2.085c1.878 0 3.378 1.5 3.378 3.378s-1.5 3.378-3.378 3.378A3.36 3.36 0 0 1 8.641 12c0-1.878 1.5-3.378 3.377-3.378m-8.466 1.91c.822 0 1.467.645 1.467 1.468s-.644 1.467-1.467 1.468A1.45 1.45 0 0 1 2.085 12a1.45 1.45 0 0 1 1.467-1.467zm16.895 0c.823 0 1.468.645 1.468 1.468s-.645 1.468-1.468 1.468A1.45 1.45 0 0 1 18.98 12a1.45 1.45 0 0 1 1.467-1.467z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nextdns.svg����������������������������������0000664�0000000�0000000�00000001141�14753064456�0025303�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.195 6.512-.001-.019c-.01-.23-.017-.474-.022-.746a2.543 2.543 0 0 0-2.395-2.492c-2.759-.154-4.894-1.053-6.717-2.831l-.016-.015a1.536 1.536 0 0 0-2.087 0l-.016.015C9.117 2.202 6.982 3.101 4.223 3.256a2.543 2.543 0 0 0-2.395 2.492c-.004.269-.011.513-.022.745l-.001.044c-.053 2.813-.12 6.315 1.052 9.494.644 1.748 1.619 3.267 2.899 4.516 1.458 1.422 3.367 2.552 5.674 3.356q.113.04.233.063a1.7 1.7 0 0 0 .675 0q.12-.023.233-.063c2.305-.806 4.212-1.936 5.668-3.358 1.28-1.25 2.255-2.769 2.9-4.518 1.176-3.188 1.109-6.696 1.056-9.515"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nextdoor.svg���������������������������������0000664�0000000�0000000�00000004647�14753064456�0025500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.65 9.997a.07.07 0 0 0-.07.069v1.415c-.123-.177-.42-.37-.805-.37-.745 0-1.316.659-1.316 1.445 0 .787.571 1.447 1.316 1.447.386 0 .682-.194.806-.372v.221c0 .05.04.09.09.09h.607a.07.07 0 0 0 .07-.07v-3.806a.07.07 0 0 0-.07-.069zm-3.913.404a.07.07 0 0 0-.069.07c0 .779.064.7-.504.7a.09.09 0 0 0-.09.09v.486c0 .05.04.089.09.089h.504v1.136c0 .676.476 1.003 1.07 1.003.183 0 .32-.017.434-.046a.07.07 0 0 0 .052-.067v-.526a.07.07 0 0 0-.086-.066 1 1 0 0 1-.227.023c-.33 0-.476-.133-.476-.47v-.987h.608a.07.07 0 0 0 .07-.069v-.527a.07.07 0 0 0-.07-.069h-.608v-.701a.07.07 0 0 0-.069-.07zm-8.396.676c-.516 0-.955.236-1.201.598-.02.03-.055.095-.102.095-.226.002-.24-.276-.247-.524a.07.07 0 0 0-.069-.066l-.653-.004a.07.07 0 0 0-.069.07c.014.606.126 1.018.86 1.181.04.01.068.045.068.087v1.36c0 .037.03.068.069.068h.634a.07.07 0 0 0 .069-.07V12.47c0-.312.221-.667.64-.667.4 0 .642.355.642.667v1.404c0 .038.03.069.069.069h.634a.07.07 0 0 0 .069-.07v-1.508c0-.72-.616-1.287-1.413-1.287zm3.207.033c-.851 0-1.472.626-1.472 1.446 0 .876.65 1.431 1.483 1.447.655.012 1.09-.363 1.194-.494a.07.07 0 0 0-.015-.097l-.435-.34c-.047-.047-.084-.021-.112.001-.07.057-.203.22-.626.237-.37.015-.7-.205-.745-.576h2.03a.07.07 0 0 0 .069-.065c.006-.082.006-.142.006-.196 0-.897-.644-1.363-1.377-1.363m11.652 0c-.812 0-1.472.637-1.472 1.446 0 .81.66 1.447 1.472 1.447s1.472-.638 1.472-1.447-.66-1.446-1.472-1.446m3.229 0c-.812 0-1.472.637-1.472 1.446 0 .81.66 1.447 1.472 1.447s1.472-.638 1.472-1.447-.66-1.446-1.472-1.446m3.314.028a.745.745 0 0 0-.695.476v-.374a.07.07 0 0 0-.069-.069h-.628a.07.07 0 0 0-.07.07v2.632a.07.07 0 0 0 .07.069h.628a.07.07 0 0 0 .07-.07v-1.255c0-.454.24-.737.604-.737.092 0 .175.013.26.035A.07.07 0 0 0 24 11.85v-.624a.07.07 0 0 0-.056-.068 1 1 0 0 0-.201-.02m-16.666.033a.069.069 0 0 0-.058.108l.88 1.305L7 13.832a.07.07 0 0 0 .056.11h.745a.07.07 0 0 0 .056-.03l.564-.79.563.79a.07.07 0 0 0 .056.03h.74a.069.069 0 0 0 .057-.11l-.899-1.248.88-1.305a.069.069 0 0 0-.058-.108h-.738a.07.07 0 0 0-.058.03l-.548.818-.549-.817a.07.07 0 0 0-.057-.03zm-1.552.565c.286 0 .566.155.633.482h-1.31c.073-.338.392-.482.677-.482m8.412.067c.42 0 .705.321.705.753 0 .433-.285.754-.705.754s-.705-.321-.705-.754c0-.432.285-.753.705-.753m3.263.016c.403 0 .694.31.694.737s-.291.737-.694.737-.7-.31-.7-.737c0-.426.297-.737.7-.737m3.229 0c.403 0 .694.31.694.737s-.291.737-.694.737-.7-.31-.7-.737c0-.426.297-.737.7-.737"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nextdotjs.svg��������������������������������0000664�0000000�0000000�00000000411�14753064456�0025641�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.665 21.978A11.94 11.94 0 0 1 12 24C5.377 24 0 18.623 0 12S5.377 0 12 0s12 5.377 12 12c0 3.583-1.574 6.801-4.067 9.001L9.219 7.2H7.2v9.596h1.615V9.251zm-3.332-8.533 1.6 2.061V7.2h-1.6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nextflow.svg���������������������������������0000664�0000000�0000000�00000000700�14753064456�0025466�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.005 4.424V0c6.228.259 11.227 5.268 11.477 11.506H7.058C6.828 7.715 3.786 4.673.005 4.424m7.082 8.089h4.424C11.251 18.741 6.242 23.741.005 23.99v-4.423c3.79-.231 6.832-3.273 7.082-7.054m9.826-1.036h-4.424C12.749 5.249 17.758.25 23.995 0v4.424c-3.79.23-6.832 3.263-7.082 7.053m7.082 8.099V24c-6.228-.259-11.227-5.268-11.477-11.506h4.424c.23 3.791 3.272 6.833 7.053 7.082"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nextra.svg�����������������������������������0000664�0000000�0000000�00000001120�14753064456�0025116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.68 21.031c-4.98-4.98-4.98-13.083 0-18.063l.978-.978c.22-.22.342-.513.342-.825s-.122-.604-.342-.824c-.44-.441-1.207-.44-1.648 0l-.979.978c-4.98 4.98-13.084 4.98-18.063 0L1.99.34a1.17 1.17 0 0 0-1.649 0 1.17 1.17 0 0 0 0 1.649l.978.978c4.98 4.98 4.98 13.083 0 18.063l-.977.978c-.221.22-.342.513-.342.825 0 .31.121.604.341.824.442.443 1.21.441 1.65 0l.977-.977c4.98-4.983 13.083-4.98 18.064 0l.978.977c.22.22.513.342.824.342.312 0 .605-.122.824-.342.22-.22.342-.512.342-.824 0-.313-.122-.605-.342-.825l-.977-.978z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nextui.svg�����������������������������������0000664�0000000�0000000�00000001103�14753064456�0025132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.353 0h11.294A6.353 6.353 0 0 1 24 6.353v11.294A6.353 6.353 0 0 1 17.647 24H6.353A6.353 6.353 0 0 1 0 17.647V6.353A6.353 6.353 0 0 1 6.353 0m7.755 6.913h-.933v6.702a2.9 2.9 0 0 1-.362 1.45c-.24.424-.596.77-1.025 1q-.664.366-1.553.365-.888 0-1.55-.364a2.6 2.6 0 0 1-1.024-1 2.87 2.87 0 0 1-.365-1.45V6.912h-.933v6.767a3.56 3.56 0 0 0 .489 1.862c.327.547.798.994 1.362 1.292q.873.474 2.021.474 1.154 0 2.024-.471a3.47 3.47 0 0 0 1.36-1.293c.33-.565.5-1.21.49-1.864zm3.648 10.22V6.914h-.933v10.22h.933Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nexusmods.svg��������������������������������0000664�0000000�0000000�00000005244�14753064456�0025655�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.376 0c-.993 0-2.18.686-2.907 1.182-1.676-.36-4.036-.545-6.787.635-1.365-.513-2.425-.562-3.32-.488a2.16 2.16 0 0 0-1.27.429c-.33.22-2.788 2.69-3.069 4.652C-.15 7.508.68 8.932 1.218 9.718c-.44 1.76-.2 4.572.517 6.188-.353 1.041-.713 2.089-.664 3.205.01.584.061 1.188.398 1.684C1.72 21.19 4.528 24 6.545 24c.957 0 1.93-.428 3.07-1.24 2.16.383 4.402.348 6.448-.532 2.573 1.001 4.224.625 4.84.162.587-.457 2.826-2.915 3.07-4.622.1-.672-.023-1.638-1.226-3.397a11 11 0 0 0-.501-6.455c.396-1.069.673-2.188.59-3.337-.015-.68-.221-1.167-.487-1.507-.209-.335-2.415-2.39-4.028-2.91A3.1 3.1 0 0 0 17.376 0m-.03 2.082c.65.015 2.155 1.093 3.01 1.906l.355.34c-.959-.163-2.125.428-3.26 1.55a10.3 10.3 0 0 0-1.358 1.595c-.28.384-.517.768-.753 1.285l1.18.635-3.895 1.477-1.122-4.18 1.033.547c1.358-3.102 2.524-3.973 3.232-4.416h.015a5.1 5.1 0 0 1 1.49-.724zM12 3.065a9 9 0 0 1 2.22.279 8 8 0 0 0-.42.488 8.4 8.4 0 0 0-1.8-.196 8.34 8.34 0 0 0-5.897 2.432 8 8 0 0 1-.37-.433A8.9 8.9 0 0 1 12 3.065m-7.076.305c.71-.002 1.309.127 2.2.466a9.5 9.5 0 0 0-1.713 1.337c-.327-.542-.624-1.156-.488-1.803m-.606.042c-.162.96.428 2.126 1.55 3.264.457.487 1.003.945 1.594 1.358.383.281.767.517 1.283.754l.62-1.182 1.49 3.914-4.176 1.122.546-1.033c-3.099-1.36-3.969-2.526-4.412-3.235v-.015a5.1 5.1 0 0 1-.723-1.491l-.015-.074c.015-.65 1.092-2.156 1.904-3.013Zm16.035 1.483a1.3 1.3 0 0 1 .26.015l.14.023a5 5 0 0 1-.13 1.137v.015q-.152.574-.377 1.148a9.5 9.5 0 0 0-1.346-1.776c.547-.357 1.051-.546 1.453-.562M18.43 5.8a8.9 8.9 0 0 1 2.506 6.2 9 9 0 0 1-.27 2.183 8 8 0 0 0-.488-.425A8.4 8.4 0 0 0 20.364 12 8.33 8.33 0 0 0 18 6.173a8 8 0 0 1 .429-.373M3.315 9.905q.235.222.488.425A8.4 8.4 0 0 0 3.636 12c0 2.248.887 4.286 2.327 5.788a8 8 0 0 1-.426.376A8.9 8.9 0 0 1 3.065 12a9 9 0 0 1 .25-2.095m13.988 1.541-.546 1.034c3.098 1.359 3.969 2.526 4.412 3.235v.014c.34.488.575.99.723 1.492l.014.074c-.014.65-1.092 2.156-1.903 3.013l-.34.354c.163-.96-.427-2.127-1.549-3.264a10.3 10.3 0 0 0-1.594-1.359 7 7 0 0 0-1.283-.753l-.605 1.152-1.505-3.87zm-6.006 1.684 1.121 4.18-1.033-.547c-1.357 3.102-2.523 3.973-3.231 4.416h-.015c-.487.34-.989.576-1.49.724l-.074.015c-.65-.015-2.154-1.093-3.01-1.906l-.354-.34c.959.163 2.124-.428 3.26-1.55.488-.458.945-1.004 1.358-1.595.28-.384.517-.768.753-1.285l-1.166-.635ZM3.72 16.663A9.5 9.5 0 0 0 5.086 18.5c-.697.47-1.33.665-1.777.59l-.138-.024c0-.367.038-.748.128-1.137v-.015c.11-.417.254-.835.42-1.252m14.131 1.314q.194.21.372.43A8.9 8.9 0 0 1 12 20.936a9 9 0 0 1-2.282-.296 8 8 0 0 0 .417-.487 8.34 8.34 0 0 0 7.716-2.175m.696.889c.43.666.607 1.267.534 1.698l-.023.138a5 5 0 0 1-1.136-.128h-.014a11 11 0 0 1-1.114-.366 9.5 9.5 0 0 0 1.753-1.342"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nfc.svg��������������������������������������0000664�0000000�0000000�00000001501�14753064456�0024366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.958 1.98C23.895 1 23.143.256 22.145.197c-1.102-.066-4.668-.12-5.693-.12 1.832 1.264 2.082 3.644 2.255 8.066.101 2.62.01 11.799.002 12.188l-.049 2.504-9.628-9.63v-3.014l7.656 7.658c.02-1.516.04-3.492.04-5.299 0-1.76-.026-3.354-.076-4.193-.288-4.819-.737-7.077-3.253-7.962-.77-.27-1.487-.335-2.683-.351C9.728.032 2.848.037 1.854.091.8.147.09.914.042 1.9c-.048.977-.064 19.174 0 20.165.062.98.815 1.724 1.812 1.782 1.102.067 4.668.075 5.694.075-1.832-1.264-2.083-3.643-2.255-8.066-.1-2.62-.009-11.8 0-12.188l.047-2.504 9.629 9.63v3.013L7.312 6.152c-.02 1.514-.04 3.49-.04 5.298 0 1.76.026 3.354.077 4.192.288 4.82.736 7.077 3.252 7.962.77.271 1.487.337 2.683.352.987.012 7.868.006 8.861-.047 1.056-.056 1.765-.822 1.813-1.811.048-.976.064-19.127 0-20.118"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nfcore.svg�����������������������������������0000664�0000000�0000000�00000007252�14753064456�0025105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.848 10.88s.013-.31.036-.573c.024-.263.065-.69.119-1.004s.112-.593.198-.88a7 7 0 0 1 .317-.834c.098-.212.144-.288.246-.445.102-.156.267-.363.37-.486.102-.122.085-.125.237-.256.153-.132.472-.355.709-.487.237-.131.439-.215.705-.306s.541-.163.89-.228c.35-.065.842-.114 1.206-.143.365-.03.75-.033.981-.041s.404-.011.404-.011-.008-.218.01-.5c.016-.282.06-.84.12-1.19a7 7 0 0 1 .226-.916c.081-.255.146-.422.24-.615a4 4 0 0 1 .325-.543c.124-.171.243-.323.413-.485s.4-.341.613-.467a3.3 3.3 0 0 1 .654-.29c.222-.073.508-.123.671-.149s.172-.02.3-.026c.13-.006.309-.008.472 0s.366.03.505.052c.138.021.205.035.326.068.12.033.314.086.396.133s.086.049.115.098a.35.35 0 0 1 .043.188c-.005.057-.026.08-.06.137a1 1 0 0 1-.157.2 2.2 2.2 0 0 1-.353.277c-.154.1-.441.244-.579.307s-.145.083-.236.092a.8.8 0 0 1-.292-.047c-.06-.02-.045-.02-.075-.041a.6.6 0 0 1-.105-.087 1.3 1.3 0 0 1-.122-.174c-.027-.046-.03-.056-.048-.098s-.019-.12-.06-.156c-.043-.035-.082-.022-.159-.032a1.8 1.8 0 0 0-.688.043 2 2 0 0 0-.415.178 1.6 1.6 0 0 0-.333.26c-.12.118-.28.33-.364.456-.083.127-.09.147-.155.288-.063.14-.147.344-.21.56a7 7 0 0 0-.152.728c-.03.193-.031.252-.039.423a8 8 0 0 0 0 .606c.008.163.023.274.034.373.011.1.03.225.03.225l.113-.01s.421-.062.647-.089c.225-.027.471-.059.703-.07a8 8 0 0 1 .688 0c.281.01.665.016 1.002.064.336.049.686.11 1.01.229.325.118.654.298.92.475.266.178.481.364.676.57.194.208.348.426.488.661a5 5 0 0 1 .527 1.335c.057.237.117.603.152.834s.035.293.05.56c.017.268.023.803.016 1.042-.007.24-.024.384-.024.384s-.52-.43-.757-.596a7 7 0 0 0-.662-.412c-.181-.098-.414-.19-.414-.19s-.3-.016-.604.096c-.305.112-.287.09-.492.21s-.528.347-.71.542c-.183.195-.259.343-.395.592s-.3.644-.398.908a5 5 0 0 0-.2.664 6.7 6.7 0 0 0-.188 1.452c-.006.233-.01.344.015.7s.104.94.167 1.433.204 1.242.237 1.463c.033.22.087.578.12.783.033.204.078.29.141.417.064.128.173.268.233.342s.048.057.113.116.285.227.285.227.372-.166.533-.252a7 7 0 0 0 .724-.449c.145-.101.425-.31.575-.425.15-.116.185-.15.328-.265l.525-.431s.027.068.078.325c.05.257.17.856.189 1.222a5 5 0 0 1-.051.96 3.4 3.4 0 0 1-.163.627c-.055.158-.083.209-.146.328a4 4 0 0 1-.236.383 3 3 0 0 1-.275.33c-.09.094-.148.148-.26.24a4 4 0 0 1-.417.306 4 4 0 0 1-.578.318 10 10 0 0 1-.999.372c-.3.092-.592.152-.798.196a4 4 0 0 1-.438.08c-.138.017-.253.032-.388.023a2.3 2.3 0 0 1-.418-.077c-.116-.032-.2-.068-.276-.1s-.188-.087-.188-.087-.35-.19-.473-.254-.169-.092-.267-.134a2 2 0 0 0-.32-.116 1.4 1.4 0 0 0-.32-.043.8.8 0 0 0-.24.036.8.8 0 0 0-.221.103c-.077.05-.127.102-.231.198s-.25.272-.387.383a3 3 0 0 1-.435.283c-.099.05-.05.026-.134.05s-.238.06-.371.072c-.133.013-.3-.007-.451-.023a3 3 0 0 1-.451-.082c-.175-.044-.384-.096-.571-.163a5 5 0 0 1-.551-.238 3 3 0 0 1-.382-.232 4 4 0 0 1-.37-.298 2.6 2.6 0 0 1-.29-.312c-.104-.13-.225-.3-.322-.472a3.6 3.6 0 0 1-.252-.56 5.2 5.2 0 0 1-.247-1.179 6 6 0 0 1-.029-.578c0-.192.008-.372.024-.574.015-.203.071-.64.071-.64s.352.315.55.455c.2.14.434.28.641.38s.427.177.596.229c.17.052.252.068.413.095.163.027.35.051.559.059a6 6 0 0 0 .691-.023c.188-.019.437-.075.437-.075s.218-.24.318-.374c.099-.133.206-.297.276-.425s.097-.185.155-.336.113-.356.177-.574.153-.54.205-.735c.053-.194.056-.197.113-.43s.153-.629.217-.971c.063-.342.124-.733.16-1.082.035-.35.055-.7.055-1.009s-.018-.563-.049-.843a9 9 0 0 0-.135-.833 5 5 0 0 0-.172-.646 8 8 0 0 0-.34-.865c-.1-.19-.11-.195-.195-.295s-.191-.208-.317-.296a1.8 1.8 0 0 0-.434-.217 1.4 1.4 0 0 0-.433-.072c-.146.001-.431.076-.431.076s-.224.19-.368.32c-.145.129-.365.34-.497.456a12 12 0 0 1-.287.244s-.185-.167-.282-.244-.197-.158-.296-.216a1.2 1.2 0 0 0-.29-.134 1.4 1.4 0 0 0-.405-.056 1.1 1.1 0 0 0-.388.071c-.172.057-.439.202-.624.303-.186.101-.49.299-.49.299"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nginx.svg������������������������������������0000664�0000000�0000000�00000000566�14753064456�0024755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0 1.605 6v12L12 24l10.395-6V6zm6 16.59c0 .705-.646 1.29-1.529 1.29-.631 0-1.351-.255-1.801-.81l-6-7.141v6.66c0 .721-.57 1.29-1.274 1.29H7.32c-.721 0-1.29-.6-1.29-1.29V7.41c0-.705.63-1.29 1.5-1.29.646 0 1.38.255 1.83.81l5.97 7.141V7.41c0-.721.6-1.29 1.29-1.29h.075c.72 0 1.29.6 1.29 1.29v9.18z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nginxproxymanager.svg������������������������0000664�0000000�0000000�00000004530�14753064456�0027405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.008 0A823 823 0 0 0 1.59 6.043V18c3.578 2.087 7.238 4.274 10.418 6 3.928-2.267 6.71-3.868 10.402-6v-3.043l-1.045.6v1.8l-1.545.9-1.56-.9v-1.8l1.56-.885v-.002l.268.156a8 8 0 0 0 .404-1.754v-.002a9 9 0 0 0 .072-1.072 10 10 0 0 0-.072-1.127 9 9 0 0 0-.515-1.97v-.003a8.1 8.1 0 0 0-1.301-2.242 7 7 0 0 0-.615-.699 10 10 0 0 0-.846-.728 8 8 0 0 0-1.902-1.116 5 5 0 0 0-.586-.213v-.957q.616.177 1.2.442a9.2 9.2 0 0 1 1.618.943 9.4 9.4 0 0 1 1.158.986q.409.416.774.872c.532.686.97 1.44 1.302 2.244h-.002a9.5 9.5 0 0 1 .645 2.613q.061.476.056.957c0 .314-.014.614-.043.914-.082.838-.37 1.786-.542 2.373l.472.27 1.045-.602V8.986l-1.303-.742v-.002l1.303.744V6c-3.56-2.057-7.212-4.154-10.402-6m8.08 14.826c-.02.052.003.002.004.002zM12.035 1.213l1.56.9v1.801l-1.56.885-1.545-.885h-.002v-.328a8.5 8.5 0 0 0-1.744.516 8.2 8.2 0 0 0-1.889 1.07l-.001.002a7 7 0 0 0-.9.783 9 9 0 0 0-.616.672 8.8 8.8 0 0 0-1.3 2.228l.228.127 1.287-.742 1.203.686c1.929-1.112 3.397-1.961 5.252-3.014l.027.014c1.926 1.114 3.398 1.955 5.238 3.029.028 1.997.014 4.064.014 6.086-1.874 1.084-3.753 2.16-5.28 3.043a860 860 0 0 1-5.294-3.043V8.957l.043-.027-1.203-.688-1.287.744-.229-.129h-.002a8.4 8.4 0 0 0-.53 2.057q-.067.54-.07 1.086.003.517.07 1.027v.002c.015.215.06.429.102.643l-.83.484a7 7 0 0 1-.2-1.199A7 7 0 0 1 2.52 12c0-.329.028-.672.056-1a9.8 9.8 0 0 1 .658-2.6 9.4 9.4 0 0 1 1.303-2.244c.243-.3.5-.57.758-.842q.556-.558 1.203-1.013-1.823-.125 0-.002a9.4 9.4 0 0 1 1.645-.942 9.9 9.9 0 0 1 2.347-.7l-.002-.542-1.043-.601 1.045.6zm0 .773-.887.514v1.027l.887.516.887-.516V2.5Zm-.03 6.928c-.935.532-1.888 1.084-2.689 1.543v3.086c.933.535 1.892 1.095 2.692 1.557.926-.565 1.865-1.093 2.676-1.557v-3.086c-.945-.542-1.857-1.074-2.678-1.543Zm-7.74 5.758 1.546.885v1.8l-.329.186q.219.266.471.5.417.432.902.785a8 8 0 0 0 1.83 1.059h.002a8.1 8.1 0 0 0 2.061.57q.626.087 1.258.086a8.4 8.4 0 0 0 1.332-.1 8.6 8.6 0 0 0 2.017-.572 8 8 0 0 0 1.86-1.1c.172-.114.315-.242.472-.37l.83.47a10 10 0 0 1-.945.787l.946.541 1.302-.756-1.302.758-.946-.543c-.516.37-1.067.69-1.644.955l-.002.002a9.5 9.5 0 0 1-2.588.756q-.662.086-1.33.086a12 12 0 0 1-1.26-.072v.002a9.4 9.4 0 0 1-2.605-.744 9 9 0 0 1-1.688-.971 9.6 9.6 0 0 1-1.775-1.658h-.002l-.412.244-1.56-.9v-1.801zm0 .756-.886.515v1.028l.887.515.886-.515v-1.028zm15.555 0-.902.515v1.028l.902.515.887-.515v-1.028z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ngrok.svg������������������������������������0000664�0000000�0000000�00000002021�14753064456�0024736�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.951 7.598v6.713h1.463v-1.69l1.61 1.69H24v-.08l-2.123-2.153 2.002-1.846v-.07H21.95l-1.537 1.496v-4.06zm-2.93 2.41a2.63 2.63 0 0 0-1.787.635 2.05 2.05 0 0 0-.703 1.556c-.002.75.311 1.287.7 1.643.526.478 1.221.626 1.767.623.666 0 1.34-.195 1.805-.62.521-.483.713-1.029.713-1.607 0-.73-.31-1.247-.71-1.603-.553-.475-1.202-.628-1.785-.627m-9.062.039c-1.188-.005-2.1.977-2.104 2.25-.004 1.296.908 2.108 2.032 2.096.664.002.983-.244 1.308-.541v1.193h-1.37l-1.03 1.158v.2H9.66v-6.24H8.195v.435c-.381-.408-.772-.542-1.236-.551m-4.805.11-.691.786v-.771H0v4.15h1.463v-2.799c.547.002 1.023-.002 1.49-.003v2.802h1.465v-2.595c-.004-.547-.1-.819-.307-1.061a1.43 1.43 0 0 0-.914-.51zm8.114.005v4.15h1.468l.002-2.779h1.065l1.164-1.314v-.057h-1.598l-.635.715v-.715zm-2.946 1.115c.504 0 .96.444.948.948a.956.956 0 0 1-.948.945c-.523 0-.931-.403-.947-.945-.002-.52.443-.94.947-.948m8.703.001c.525 0 .94.434.944.95-.027.544-.42.95-.944.95s-.934-.417-.95-.95a.955.955 0 0 1 .95-.95"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ngrx.svg�������������������������������������0000664�0000000�0000000�00000001761�14753064456�0024606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.024.017V0L12 .008 11.976 0v.017L.812 3.892l1.605 14.875 9.559 5.207V24l.024-.013.024.013v-.026l9.559-5.207 1.605-14.875zm6.868 14.244q-1.64 3.948-6.031 4.166c-2.829 0-4.661-1.7-4.66-1.7q-1.745-1.359-2.398-3.417c-.695-.76-.702-.841-.774-1.145-.072-.303.045-.388.249-.685q.204-.298.098-.85-.26-.36-.3-1.128 0-.37.496-.783.495-.413.607-.632.083-.119.065-1.031-.006-.897.995-.975c1-.08 1.565-.832 1.879-1.174.21-.228.52-.339.91-.341.551-.026 1.052.185 1.484.62 1.075-.055 2.176.235 3.292.863q2.379 1.414 2.596 3.055-.257 2.158-5.788-.113-2.895.819-2.846 3.552 0 2.508 2.422 3.643c-.787-.772-1.122-1.422-1.01-1.959q2.456 2.906 5.588 2.173c-.92.032-1.65-.264-2.198-.893q2.116-.05 3.998-1.972c-.724.576-1.482.794-2.284.657q3.26-2.563 2.307-5.98l-.002-.006a3.02 3.02 0 0 1 .788 2.03q.023 1.175-.795 2.477.613-.478 1.413-2.047c.23 2.117-.625 3.724-2.574 4.825q.934-.085 2.473-1.23m-5.567-6.63a.319.319 0 1 1 .638 0 .319.319 0 0 1-.638 0"/></svg>���������������mkdocs-material-9.6.4/material/templates/.icons/simple/nhl.svg��������������������������������������0000664�0000000�0000000�00000006336�14753064456�0024414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.455 0 4.61 2.314c-.262.72-.693 1.172-1.277 1.344l-1.914.565.812 1.843c.376.851.567 1.738.567 2.64 0 2.49-1.272 3.06-1.272 5.827 0 3.988 3.083 6.597 5.948 7.334 1.448.353 1.886.375 3.193.697L12 24l1.334-1.436c1.308-.322 1.744-.344 3.191-.697 2.865-.737 5.95-3.346 5.95-7.334 0-2.767-1.272-3.336-1.272-5.828 0-.9.191-1.788.567-2.639l.812-1.843-1.914-.565c-.585-.172-1.014-.624-1.277-1.344L18.545 0l-1.887 1.563c-.5.414-1.006.623-1.506.623-.668 0-1.429-.326-1.937-.829L12 .157l-1.215 1.2c-.508.503-1.269.829-1.937.829-.5 0-1.006-.21-1.506-.623zm.14.523 1.546 1.28c.508.42 1.09.697 1.707.697.827 0 1.646-.414 2.158-.92L12 .596l.996.984c.512.506 1.33.92 2.156.92.617 0 1.199-.276 1.707-.697l1.545-1.28.694 1.899c.298.817.796 1.335 1.48 1.537l1.572.463-.668 1.517a6.9 6.9 0 0 0-.591 2.766c0 2.591 1.271 3.108 1.271 5.828 0 3.643-2.711 6.257-5.713 7.03-1.484.375-2.177.413-3.283.722C13.022 22.436 12 23.54 12 23.54s-1.022-1.103-1.166-1.254c-1.106-.31-1.797-.347-3.281-.723-3.003-.772-5.715-3.386-5.715-7.029 0-2.72 1.271-3.237 1.271-5.828a6.9 6.9 0 0 0-.591-2.766L1.85 4.422l1.572-.463c.685-.202 1.183-.72 1.482-1.537L5.596.523zM12 1.607s-1.25 1.616-3.152 1.616c-1.475 0-2.93-1.498-2.93-1.498-.658 2.949-3.084 3.16-3.084 3.16s.988 1.746.988 3.814c0 2.654-1.27 3.406-1.27 5.834 0 2.675 1.833 5.482 5.178 6.328 1.59.402 2.687.504 3.495.795.103.097.775.826.775.826s.672-.729.775-.826c.808-.291 1.905-.393 3.495-.795 3.344-.846 5.177-3.653 5.177-6.328 0-2.428-1.267-3.18-1.267-5.834 0-2.068.986-3.814.986-3.814s-2.426-.211-3.084-3.16c0 0-1.455 1.498-2.93 1.498C13.251 3.223 12 1.607 12 1.607m0 1.01s1.258 1.33 3.152 1.33c1.512 0 2.608-1.021 2.608-1.021.769 2.09 2.42 2.422 2.42 2.422s-.715 1.459-.715 3.351c0 2.809 1.27 3.623 1.27 5.834 0 3.091-2.41 5.058-4.643 5.625-1.769.45-2.925.5-3.701.875 0 0-.284.258-.391.377-.107-.119-.389-.377-.389-.377-.776-.375-1.934-.426-3.703-.875-2.233-.567-4.642-2.534-4.642-5.625 0-2.211 1.27-3.025 1.27-5.834 0-1.892-.716-3.351-.716-3.351s1.651-.333 2.42-2.422c0 0 1.096 1.021 2.608 1.021 1.894 0 3.152-1.33 3.152-1.33m0 1.06c-.632.465-1.737 1.08-3.152 1.08-.934 0-1.729-.315-2.29-.628A4.5 4.5 0 0 1 4.862 5.79c.224.67.485 1.708.485 2.908 0 2.313-.79 3.396-1.123 4.705l11.582-8.697q-.314.05-.653.05c-1.414 0-2.52-.615-3.152-1.08zm5.674.805L4.08 14.69c.065 2.008 1.362 3.472 2.844 4.233l11.828-8.883a9 9 0 0 1-.098-1.34c0-1.2.26-2.237.485-2.908a4.4 4.4 0 0 1-1.465-1.309zm-1.666 2.153v3.398l1.8-1.351s-.06.433 0 1.164l-2.822 2.12V8.304c0-.518-.494-.532-.494-.532l1.516-1.136zm-1.871 1.404v4.565l-.975.73v-1.668l-1.121.842v1.67l-1.023.767v-3.662c0-.518-.495-.531-.495-.531l1.518-1.139V11.3l1.121-.842V8.77zm4.838 3.012L7.949 19.33q.079.022.158.042c1.401.357 3.116.54 3.633.836.117.085.26.236.26.236s.143-.15.26-.236c.517-.296 2.232-.48 3.633-.836 1.941-.493 4.03-2.216 4.03-4.84 0-1.307-.573-2.168-.948-3.482zm-8.852.002v4.564l-1.053.791-1.133-1.738v2.59l-.996.746v-3.662c0-.518-.494-.531-.494-.531l1.41-1.06L9.13 14.7v-2.898l.994-.748zm10.346 9.799a.818.818 0 1 0 0 1.637.818.818 0 0 0 0-1.637m0 .175a.643.643 0 1 1 0 1.285.643.643 0 0 1 0-1.285m-.336.176v.934h.176v-.38h.125l.177.38h.194l-.184-.395a.28.28 0 0 0 .184-.262.277.277 0 0 0-.278-.277zm.176.176h.218a.101.101 0 1 1 0 .203h-.218z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nicehash.svg���������������������������������0000664�0000000�0000000�00000000336�14753064456�0025407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 24c6.627 0 12-5.373 12-12h-8a4 4 0 0 1-8 0H0c0 6.627 5.373 12 12 12M8 4a4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4 4 4 0 0 1 4 4m4-4h12v8H12Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/niconico.svg���������������������������������0000664�0000000�0000000�00000000665�14753064456�0025433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.479 7.534v12.128A2.02 2.02 0 0 0 2.5 21.683h2.389l1.323 2.095a.48.48 0 0 0 .404.22.48.48 0 0 0 .441-.22l1.323-2.095h6.983l1.323 2.095a.48.48 0 0 0 .44.22c.185 0 .332-.073.405-.22l1.323-2.095H21.5a2.02 2.02 0 0 0 2.022-2.021V7.534A2.02 2.02 0 0 0 21.5 5.549h-7.68l4.446-4.447L17.164 0l-5.146 5.145L6.8 0 5.697 1.103l4.41 4.41h-7.57A2.02 2.02 0 0 0 .479 7.57z"/></svg>���������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nike.svg�������������������������������������0000664�0000000�0000000�00000000426�14753064456�0024553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 7.8 6.442 15.276q-2.184.925-3.668.925-1.68 0-2.437-1.177-.475-.756-.28-1.918.196-1.162 1.036-2.478.7-1.065 2.297-2.8a6.1 6.1 0 0 0-.784 1.848q-.42 1.792.756 2.632.56.392 1.54.392.783 0 1.764-.252z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nikon.svg������������������������������������0000664�0000000�0000000�00000001734�14753064456�0024746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.267 8.681c-.69 0-1.054.463-1.054.873 0 .144.032.653.949.653.762 0 1.057-.488 1.057-.854 0-.244-.2-.672-.952-.672m-6.87.215L0 15.146h1.72c.194-1 .455-2.056.711-3.138l1.206 3.136H5.27L6.681 8.9H5l-.715 3.176-1.18-3.18Zm8.587.004L8.6 15.144h1.663l.558-2.375.703 2.375h1.705l-.707-2.508 1.715-2.08h-1.91l-1.38 1.664.743-3.32zm6.608 1.465c-2.582 0-2.962 2.01-3.034 2.379-.19.93.02 2.137 1.235 2.457.8.21 2.051.187 2.855-.47.736-.6 1.1-1.619 1.088-2.575-.012-.92-.79-1.791-2.144-1.791m6.193.072c-.573.038-1.156.35-1.486.807.044-.188.088-.404.14-.658h-1.7l-.999 4.558h1.695l.563-2.586c.104-.476.488-.68.826-.591.146.04.35.15.281.548l-.574 2.63h1.674l.767-3.51a.96.96 0 0 0-.627-1.14 1.6 1.6 0 0 0-.56-.058m-15.66.121-1.02 4.586h1.676l1.022-4.586zm9.23 1.104c.372-.002.472.218.44.426-.09.545-.245 1.081-.362 1.539-.082.254-.321.4-.601.4-.286 0-.458-.178-.432-.406.04-.384.286-1.357.356-1.549.12-.334.451-.408.6-.41z"/></svg>������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nim.svg��������������������������������������0000664�0000000�0000000�00000001343�14753064456�0024407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.095 3.2s-.92.778-1.857 1.55c-.964-.032-2.856.199-3.88.598C5.412 4.708 4.582 4 4.582 4s-.709 1.305-1.154 2.07c-.662.377-1.325.8-1.917 1.36A82 82 0 0 1 0 6.77c.911 1.967 1.524 3.936 3.19 5.12 2.654-4.483 14.983-4.07 17.691-.025 1.75-.977 2.43-3.078 3.119-5.018-.075.026-1.012.362-1.619.61-.363-.423-1.217-1.072-1.702-1.385a96 96 0 0 0-1.131-2.122s-.794.632-1.715 1.322c-1.243-.246-2.747-.544-4.012-.47A53 53 0 0 1 12.095 3.2M.942 10.95l2.189 5.67c3.801 5.367 13.508 5.74 17.74.105 1.001-2.415 2.352-5.808 2.352-5.808-1.086 1.72-2.852 2.909-3.94 3.549-.774.453-2.558.727-2.558.727l-4.684-2.597-4.71 2.545s-1.761-.303-2.558-.701c-1.608-.92-2.69-2.004-3.83-3.49z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nissan.svg�����������������������������������0000664�0000000�0000000�00000003313�14753064456�0025116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.576 14.955-.01.028c-1.247 3.643-4.685 6.086-8.561 6.086s-7.32-2.448-8.562-6.09l-.01-.029H.71v.329l1.133.133c.7.08.847.39 1.038.78l.048.096c1.638 3.495 5.204 5.752 9.08 5.752s7.443-2.257 9.081-5.747l.048-.095c.19-.39.338-.7 1.038-.781l1.134-.134v-.328zM3.443 9.012c1.247-3.643 4.686-6.09 8.562-6.09s7.319 2.447 8.562 6.09l.01.028h2.728v-.328l-1.134-.133c-.7-.081-.847-.39-1.038-.781l-.047-.096C19.448 4.217 15.88 1.96 12.005 1.96c-3.881 0-7.443 2.257-9.081 5.752l-.048.095c-.19.39-.338.7-1.038.781l-1.133.133v.329h2.724zm13.862 1.586-1.743 2.795h.752l.31-.5h2.033l.31.5h.747l-1.743-2.795zm1.033 1.766h-1.395l.7-1.124zm2.81-1.066 2.071 2.095H24v-2.795h-.614v2.085l-2.062-2.085h-.795v2.795h.619zM0 13.393h.619v-2.095l2.076 2.095h.781v-2.795h-.619v2.085L.795 10.598H0zm4.843-2.795h.619v2.795h-.62zm4.486 2.204c-.02.005-.096.005-.124.005H6.743v.572h2.5c.019 0 .167 0 .195-.005.51-.048.743-.472.743-.843 0-.381-.243-.79-.705-.833-.09-.01-.166-.01-.2-.01H7.643a1 1 0 0 1-.181-.014c-.129-.034-.176-.148-.176-.243 0-.086.047-.2.18-.238a.7.7 0 0 1 .172-.014h2.357v-.562H7.6c-.1 0-.176.004-.238.014a.79.79 0 0 0-.695.805c0 .343.214.743.685.81.086.009.205.009.258.009H9.2c.029 0 .1 0 .114.005.181.023.243.157.243.276a.26.26 0 0 1-.228.266m4.657 0c-.02.005-.096.005-.129.005H11.4v.572h2.5c.019 0 .167 0 .195-.005.51-.048.743-.472.743-.843 0-.381-.243-.79-.705-.833-.09-.01-.166-.01-.2-.01H12.3a1 1 0 0 1-.181-.014c-.129-.034-.176-.148-.176-.243 0-.086.047-.2.18-.238a.7.7 0 0 1 .172-.014h2.357v-.562h-2.395c-.1 0-.176.004-.238.014a.79.79 0 0 0-.695.805c0 .343.214.743.686.81.085.009.204.009.257.009h1.59c.029 0 .1 0 .114.005.181.023.243.157.243.276a.27.27 0 0 1-.228.266"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nixos.svg������������������������������������0000664�0000000�0000000�00000001343�14753064456�0024764�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.352 1.592-1.364.002L5.32 2.75l1.557 2.713-3.137-.008-1.32 2.34h11.69l-1.353-2.332-3.192-.006-2.214-3.865zm6.175 0-2.687.025 5.846 10.127 1.341-2.34-1.59-2.765 2.24-3.85-.683-1.182h-1.336l-1.57 2.705-1.56-2.72zm6.887 4.195-5.846 10.125 2.696-.008 1.601-2.76 4.453.016.682-1.183-.666-1.157-3.13-.008L21.778 8.1l-1.365-2.313zM9.432 8.086l-2.696.008-1.601 2.76-4.453-.016L0 12.02l.666 1.157 3.13.008-1.575 2.71 1.365 2.315zM7.33 12.25l-.006.01-.002-.004-1.342 2.34 1.59 2.765-2.24 3.85.684 1.182H7.35l.004-.006h.001l1.567-2.698 1.558 2.72 2.688-.026-.004-.006h.01zm2.55 3.93 1.354 2.332 3.192.006 2.215 3.865 1.363-.002.668-1.156-1.557-2.713 3.137.008 1.32-2.34z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nodedotjs.svg��������������������������������0000664�0000000�0000000�00000002433�14753064456�0025616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.998 24c-.321 0-.641-.084-.922-.247L8.14 22.016c-.438-.245-.224-.332-.08-.383.585-.203.703-.25 1.328-.604.065-.037.151-.023.218.017l2.256 1.339a.29.29 0 0 0 .272 0l8.795-5.076a.28.28 0 0 0 .134-.238V6.921a.28.28 0 0 0-.137-.242l-8.791-5.072a.28.28 0 0 0-.271 0L3.075 6.68a.28.28 0 0 0-.139.241v10.15a.27.27 0 0 0 .139.235l2.409 1.392c1.307.654 2.108-.116 2.108-.89V7.787c0-.142.114-.253.256-.253h1.115c.139 0 .255.112.255.253v10.021c0 1.745-.95 2.745-2.604 2.745-.508 0-.909 0-2.026-.551L2.28 18.675a1.86 1.86 0 0 1-.922-1.604V6.921c0-.659.353-1.275.922-1.603L11.075.236a1.93 1.93 0 0 1 1.848 0l8.794 5.082c.57.329.924.944.924 1.603v10.15a1.86 1.86 0 0 1-.924 1.604l-8.794 5.078c-.28.163-.599.247-.925.247m7.101-10.007c0-1.9-1.284-2.406-3.987-2.763-2.731-.361-3.009-.548-3.009-1.187 0-.528.235-1.233 2.258-1.233 1.807 0 2.473.389 2.747 1.607a.254.254 0 0 0 .247.199h1.141a.26.26 0 0 0 .186-.081.26.26 0 0 0 .067-.196c-.177-2.098-1.571-3.076-4.388-3.076-2.508 0-4.004 1.058-4.004 2.833 0 1.925 1.488 2.457 3.895 2.695 2.88.282 3.103.703 3.103 1.269 0 .983-.789 1.402-2.642 1.402-2.327 0-2.839-.584-3.011-1.742a.255.255 0 0 0-.253-.215h-1.137a.25.25 0 0 0-.254.253c0 1.482.806 3.248 4.655 3.248 2.788.001 4.386-1.096 4.386-3.013"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nodemon.svg����������������������������������0000664�0000000�0000000�00000001237�14753064456�0025265�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.33 7.851-.716-.398c1.101-1.569 1.758-3.927.934-7.453 0 0-1.857 5.029-5.59 4.863l-4.37-2.431a1.2 1.2 0 0 0-.536-.15h-.101a1.2 1.2 0 0 0-.538.15L7.042 4.863C3.309 5.03 1.452 0 1.452 0c-.825 3.526-.166 5.884.934 7.453l-.716.398a1.13 1.13 0 0 0-.589.988l.022 14.591c0 .203.109.392.294.491a.58.58 0 0 0 .584 0l5.79-3.204c.366-.211.589-.582.589-.987v-6.817c0-.406.223-.783.588-.984l2.465-1.372a1.2 1.2 0 0 1 .59-.154c.2 0 .407.05.585.154l2.465 1.372c.365.201.588.578.588.984v6.817c0 .405.226.779.59.987l5.788 3.204a.59.59 0 0 0 .589 0 .56.56 0 0 0 .292-.491l.019-14.591a1.13 1.13 0 0 0-.589-.988"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nodered.svg����������������������������������0000664�0000000�0000000�00000002161�14753064456�0025243�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 0C1.338 0 0 1.338 0 3v6.107h2.858c1.092 0 1.97.868 1.964 1.96v.021c.812-.095 1.312-.352 1.674-.683.416-.382.69-.91 1.016-1.499.325-.59.71-1.244 1.408-1.723.575-.395 1.355-.644 2.384-.686v-.45c0-1.092.88-1.976 1.972-1.976h7.893c1.091 0 1.974.884 1.974 1.976v1.942c0 1.091-.883 2.029-1.974 2.029h-7.893c-1.092 0-1.972-.938-1.972-2.03v-.453c-.853.037-1.408.236-1.798.504-.48.33-.774.802-1.086 1.368-.312.565-.63 1.22-1.222 1.763l-.077.069c3.071.415 4.465 1.555 5.651 2.593 1.39 1.215 2.476 2.275 6.3 2.288v-.46c0-1.092.894-1.946 1.986-1.946H24V3c0-1.662-1.338-3-3-3zm10.276 5.41c-.369 0-.687.268-.687.637v1.942c0 .368.318.636.687.636h7.892a.614.614 0 0 0 .635-.636V6.047a.614.614 0 0 0-.635-.636zM0 10.448v3.267h2.858a.696.696 0 0 0 .678-.69v-1.942c0-.368-.31-.635-.678-.635zm4.821 1.67v.907A1.965 1.965 0 0 1 2.858 15H0v6c0 1.662 1.338 3 3 3h18c1.662 0 3-1.338 3-3v-1.393h-2.942c-1.092 0-1.986-.913-1.986-2.005v-.445c-4.046-.032-5.598-1.333-6.983-2.544-1.437-1.257-2.751-2.431-7.268-2.496zM21.058 15a.644.644 0 0 0-.647.66v1.942c0 .368.278.612.647.612H24V15z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nokia.svg������������������������������������0000664�0000000�0000000�00000001056�14753064456�0024726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.59 9.348v5.304h.796V9.348Zm-8.497-.09c-1.55 0-2.752 1.127-2.752 2.742 0 1.687 1.202 2.742 2.752 2.742s2.754-1.055 2.751-2.742a2.72 2.72 0 0 0-2.751-2.742M10.05 12c0 1.195-.876 1.987-1.957 1.987-1.082 0-1.958-.792-1.958-1.987 0-1.174.876-1.987 1.958-1.987 1.08 0 1.957.813 1.957 1.987M0 9.176v5.476h.812v-3.619l4.218 3.79v-1.135zM11.442 12l2.952 2.652h1.184L12.622 12l2.956-2.652h-1.184ZM24 14.652h-.875l-.64-1.175h-2.898l-.64 1.175h-.875l1.06-1.958h2.937l-1.465-2.72.432-.798Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nomad.svg������������������������������������0000664�0000000�0000000�00000000330�14753064456�0024715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.004 0-10.4 6v12l10.392 6 10.4-6V6zm4.639 13.204-2.77 1.6-3.347-1.832v3.826l-3.144 1.995V10.8L9.88 9.272l3.462 1.823V7.191l3.301-1.984z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/norco.svg������������������������������������0000664�0000000�0000000�00000000437�14753064456�0024747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.055 2.707a.97.97 0 0 0-.688.387L0 16.78h4.049l7.27-9.597 1.927 5.74 1.42-1.875-2.578-7.676a.98.98 0 0 0-1.033-.666zM19.95 7.22l-7.27 9.597-1.927-5.74-1.42 1.875 2.578 7.676a.987.987 0 0 0 1.72.28L24 7.218z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nordicsemiconductor.svg����������������������0000664�0000000�0000000�00000001231�14753064456�0027675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.338 12.448 12.08 6.991-2.894 1.73-1.92 1.093c-.298.199-.563.298-.894.165h-.033c-.033 0-.066 0-.1-.033l-11.42-6.587v6.72c-.245 0-.382-.039-.563-.133L.564 19.448a1.14 1.14 0 0 1-.563-.96V5.871l10.766 6.24zm5.755-10.774-4.466 2.553 4.466 2.596zm6.046 2.546-4.436-2.549a1.9 1.9 0 0 0-.86-.198v6.654L7.879 2.334l-1.126-.63c-.497-.264-.927-.297-1.423-.066l-1.953 1.16L.86 4.253a1.78 1.78 0 0 0-.729.827l.244.141 3.262 1.891 7.424 4.303-.659-.382.739.428.577.34 5.077 2.938 6.998 4.05.107.062c.066-.231.099-.653.099-.653V5.71c0-.629-.331-1.192-.86-1.49zM6.907 22.253l4.453-2.58-4.453-2.568z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nordvpn.svg����������������������������������0000664�0000000�0000000�00000000411�14753064456�0025305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.284 21.541A12 12 0 0 1 0 14.483C0 7.842 5.373 2.46 12 2.46c6.628 0 12 5.383 12 12.024a12 12 0 0 1-2.284 7.058l-5.763-9.378-.557.942.565 2.619L12 8.934l-2.45 4.145.57 2.645-2.076-3.556z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/normalizedotcss.svg��������������������������0000664�0000000�0000000�00000000301�14753064456�0027035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.427 6.361v5.064l-5.381.705 7.058.924v-1.915l5.469 6.5v-5.064l5.382-.705-7.059-.924v1.914zM12 0l12 12-12 12L0 12Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/norton.svg�����������������������������������0000664�0000000�0000000�00000000767�14753064456�0025154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.978 12c0 6.617-5.373 12-11.978 12S.022 18.617.022 12 5.395 0 12 0c1.826 0 3.557.41 5.107 1.146l-1.99 2.567A8.8 8.8 0 0 0 12 3.145c-4.657 0-8.484 3.627-8.815 8.21a10 10 0 0 0-.023.645c0 4.883 3.964 8.855 8.838 8.855s8.838-3.972 8.838-8.855c0-.652-.07-1.29-.205-1.902l2.309-2.979A11.95 11.95 0 0 1 23.978 12m-2.442-7.253L19.518 7.35l-7.082 9.14-5.778-5.175L8.75 8.97l3.27 2.928 5.36-6.918 1.924-2.484a12 12 0 0 1 2.231 2.25"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/simple/norwegian.svg��������������������������������0000664�0000000�0000000�00000003641�14753064456�0025620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.696 11.055c-.433-.217-.86-.41-1.305-.63a.5.5 0 0 0 .032-.374l-.193-.213-.275.045-.284.15a2 2 0 0 0-.229-.115l.21-.13c.35-.244.713-.471 1.054-.739.33-.253.67-.507.89-.857.052-.104.132-.217.1-.348l-.064-.112-.107-.06-.228-.09c-.196-.036-.409-.077-.613-.07a3.8 3.8 0 0 0-.773.132c-.364.098-.777.284-1.224.521-.475.252-.916.554-1.36.875-.067-.096-.204-.198-.34-.182-.232.051-.448.232-.627.382-.09-.012-.212-.046-.303-.057-.403-.066-.83-.11-1.226-.153a15 15 0 0 0-.915-.118c-.26-.026-.452-.07-.698-.057l-.308.17-.219.202.006.083c.155.077.328.085.48.15.432.106.619.163 1.126.282.26.061.328.087.594.161.265.11.523.245.773.359-.258.186-.624.436-.92.615l-.22.104-.22-.066c-.339-.148-.598-.265-.9-.397l-.288.076-.091.05-.07.105.062.13c.17.176.33.35.501.521l-.007.006a10 10 0 0 0-.42-.047.5.5 0 0 0-.416.08l.015.143c.292.133.668.199.972.327-5.325 2.388-10.474 3.481-12.505 3.236-1.824-.22-1.614-3.25 1.276-5.67l-.757.001C.04 12.358-1.206 15.865 1.34 16.383c2.828.574 8.586-1.23 14.522-4.218.15.059.288-.041.414-.069.32.079.653.178.977.25l.186-.06.036-.053c-.05-.159-.203-.221-.307-.348.306-.09.606-.196.906-.298.466-.16.863-.354 1.287-.546.272.03.54.04.81.045.223.01.437 0 .656.033.179.006.321.034.503.064.513.098 1.026.186 1.533.299.196.05.364.084.557.13.186-.01.331-.127.49-.206l.089-.19zm-5.937-.255c-.349.185-.735.4-1.247.626a.7.7 0 0 1-.428.066l-.213-.03c-.212-.218-.449-.434-.658-.659l.121-.067h.047c.356.156.674.331 1.033.484l.307-.086c.453-.28.801-.5 1.223-.766.143.058.206.087.342.143-.179.106-.356.198-.527.29m.774-1.016-.077-.133.02-.266.053-.047c.075-.058.239-.164.324-.205l.015.256.07.13c-.137.087-.266.19-.405.265m2.036-.83c-.15.096-.464.357-.473.368-.239-.029-.463-.035-.69-.06l.047-.024c.302-.248.57-.408.907-.613.298-.18.74-.417 1.103-.57.328-.128.661-.232 1.018-.285.198-.029.394-.045.592.02a3 3 0 0 0-.582.183c-.204.084-.528.215-.79.343-.388.194-.712.37-1.132.638"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/notepadplusplus.svg��������������������������0000664�0000000�0000000�00000015252�14753064456�0027072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.443 2.285c-.305.005-.6.06-.853.248-.256.168-.546.32-.723.578a6.3 6.3 0 0 0-.71 2.463c-1.009-.413-2.08-.716-3.177-.676a8.6 8.6 0 0 0-1.93.604c-1.26.657-2.058 1.943-2.53 3.246a6.8 6.8 0 0 0-.604 1.805c-.107.568-.322 1.115-.357 1.695-.002.394.029.788.023 1.182-.422.263-.926.245-1.398.328-.34-.008-.67-.18-1.014-.07-.36.172-.75.269-1.111.437-.087.51-.166 1.225.457 1.424 1.064-.002 2.132.002 3.195.021.192.98.38 1.99.898 2.86.613.987 1.213 2.025 2.147 2.75.888.593 2.02.617 3.039.441.387-.043.656-.35 1.004-.492.212-.126.527-.156.607-.428.698-1.13.163-2.531-.47-3.56-.403-.707-1.275-.853-2.018-.82-.436.065-.712.44-1.063.667-.388.235-.761.735-.468 1.186.251.473.561 1.107 1.193 1.074.399-.046.932-.136 1.106-.553.077-.505-.519-.748-.92-.838.019.247.045.494.07.743q-.31-.213-.625-.418c.128-.667.87-.65 1.38-.854.52.81 1.068 1.852.645 2.815-.489.612-1.37.535-2.054.375-.894-.137-1.487-.933-1.881-1.682-.594-1.035-1.323-2.145-1.196-3.387q.626-.032 1.25.004c.398.094.752.438 1.182.27.922-.252 1.881-.1 2.822-.11a20 20 0 0 1 2.225-.031c.268.073.411.4.72.38.358.12.558-.246.827-.4a18 18 0 0 1 1.79.002c.283.494.706 1.022 1.31 1.092.734.027 1.356-.493 1.753-1.064.52.117 1.082.282 1.586.021 1.095-.464 2.3-.464 3.43-.785v-.322c-.907-.61-2.027-.441-3.043-.695-.775-.133-1.562-.012-2.34-.022-.345-.236-.683-.509-1.119-.537q-.202.087-.404.168c.356.04.728.12.994.38-.336-.02-.684-.004-1.002-.126-.428.157-.835.4-.902.894-.182-.255.083-.493.189-.72-.24-.507-.826-.768-.994-1.315a.29.29 0 0 1 .48-.008q.352.519.573 1.104.325.019.654.045v-.25q-.163.066-.322.142a10 10 0 0 1-.485-1.271c.258.062.506.155.766.207 1.176-.184 2.439-.412 3.36-1.232.194-.2.542-.37.484-.698-.057-.474-.402-.841-.573-1.277.267-.101.535-.2.793-.32.918-.899 1.377-2.185 1.477-3.448-.092-.673-.282-1.413-.803-1.886-.95-.48-2.07-.324-3.035.025-.437.174-.76.527-1.123.813-.296-.066-.477-.41-.672-.633-.375-.64-.89-1.235-1.596-1.51-.293-.011-.608-.055-.914-.05zm.395.516c.59.02 1.109.506 1.443.972.222.37.524.682.885.916a5.22 5.22 0 0 1-.277 3.791c-.167.375-.519.605-.864.795-.91.267-1.874-.133-2.521-.783l.012-.094c-.458-.214-.537-.767-.616-1.21-.39-.893-.293-1.916-.006-2.823.212-.71.756-1.39 1.526-1.498a1.1 1.1 0 0 1 .418-.066m5.592 1.025c.616.002 1.29.28 1.44.926.48 1.112-.052 2.344-.688 3.273-.368.345-.792.627-1.137 1-.425-.844-1.359-1.219-2.223-1.437.16-.808.04-1.628.022-2.44.468-.835 1.44-1.154 2.326-1.304q.127-.017.26-.018m.775 1.62a8 8 0 0 1-.523.138q-.187.272-.381.545c.141.372.636.718.984.38a1.3 1.3 0 0 0-.08-1.064c-.178-.318 0 0 0 0zm-11.988.046c.9-.011 1.793.272 2.601.653.38.153.353.6.438.933.065.26.14.516.217.774.126.383.292.78.62 1.037.546.418 1.108.867 1.794 1.025a2.42 2.42 0 0 0 1.787-.303c.45-.404.668-1.007 1.137-1.396.44.215.927.318 1.351.568.44.278.653.777.912 1.207.09.194.164.392.242.588-.786.782-1.936.988-2.974 1.23-.43.128-.829-.096-1.186-.304-.184.101-.367.209-.552.309a3.7 3.7 0 0 1-2.145.45 33 33 0 0 1-.55-.072c.084-.376.182-.749.259-1.127-.092.008-.277.02-.37.026-.31.476-.325 1.052-.263 1.597q.023.31.037.62a1.57 1.57 0 0 1-.408-.932c.016-.391.065-.778.1-1.168-.41-.177-.571.292-.647.596 0 .168.012.335.024.502-.714.163-1.48.246-2.188.011-.514-.168-1.075-.182-1.557-.445q-.023-.3-.054-.596-.212-.038-.422-.08c-.189.507-.452 1.021-.424 1.575.095.365.401.634.629.925-.335.098-.791.022-1.016.334-.135.601.413.948.772 1.319-.516-.19-1.089-.463-1.266-1.03q.39-.455.881-.797c-.471-.698-.676-1.743-.066-2.421-.118-.143-.257-.39-.477-.268-.172.162-.318.35-.484.52-.7.533-.976 1.386-1.399 2.12q-.308-.012-.615-.013l-.01-.254a4.6 4.6 0 0 1-.023-1.014c.153-.596.418-1.158.568-1.755l.051-.194.086-.293c.452-1.231 1.008-2.494 2.012-3.379.642-.636 1.563-.81 2.396-1.07q.091-.005.182-.008m5.12.496c-.38-.012-.738.145-.675.596-.055.394.323.572.592.76.602-.003.872-.686.707-1.178a1.26 1.26 0 0 0-.623-.178zm-8.064 5.79a1.87 1.87 0 0 0 .225 1.622c-.391.203-.826.213-1.256.211-.09-.648.318-1.202.621-1.736q.207-.045.41-.098zm1.213.544c.353.101.773.09 1.051.358a8 8 0 0 0-.113.525 5 5 0 0 0-.654.465 1.75 1.75 0 0 1-.284-1.348m7.168.324c.211.023.262.279.4.407.236.306.573.512.852.775-.67.018-1.475.102-1.88-.562-.271.074-.543.183-.684.445l-.4-.217q-.007-.376.025-.752h.457q.62.005 1.23-.096m-5.306.147c.02.336.18.73-.07 1.02-.246-.021-.492-.041-.733-.084.326-.195.567-.505.674-.87zm2.51.117c.315.24.445.634.591.986q-1.408.054-2.814-.039c.064-.31.17-.61.252-.916.655-.02 1.313 0 1.97-.03zm.826.535q.228.276.498.512c.24-.277.775-.727.998-.193-.363.174-.813.305-.934.742l-.012.053q.114.572.307 1.123c-.773-.505-.391-1.548-.857-2.237m-10.815.293c-.02.295-.422.42-.373.727q.137.436.354.838c-.491-.023-.989.003-1.475-.088-.046-.256-.161-.635.11-.805.259-.16.47-.389.615-.658.255.04.516.036.77-.014zm.66.153c-.208.362-.461.81-.138 1.191l-.176.078a2.7 2.7 0 0 1-.361-.676 7 7 0 0 0 .28-.566 9 9 0 0 0 .395-.027m.518.086.033.08.11-.047c-.04.227-.205.391-.346.562.233.014.296.764-.041.557l-.127-.225c.024-.227-.012-.48.181-.648l.055-.067.086-.095zm3.943.074c.347.082.895-.121 1.11.166.31.05.603.197.92.205 1.122-.329 2.316-.154 3.47-.154.006.1.02.298.028.398q-1.303.048-2.604.014c-.452-.003-.881-.307-1.338-.17-.2.018-.424.229-.6.043-.28-.003-.562-.012-.843-.018-.045-.17-.1-.34-.143-.484m-2.428.017c.375.05.849-.096 1.131.225l-.12.27c-.74-.036-1.48-.043-2.221-.065.151-.495.8-.404 1.21-.43m15.87.016c.502-.022.98.166 1.478.215.003.207.065.428-.035.623-.608.116-1.185.383-1.81.398q.017-.252.023-.506l.287-.187zm-1.61.014q.153 0 .307.01c.229.044.396.227.588.347-.552.275-1.181.207-1.772.127-.456-.062-.93.022-1.377-.115l.125-.225c.708-.06 1.416-.151 2.13-.144zm-3.761.097q.325.004.652.006.033.33-.28.319c-.517.014-1.034.012-1.55-.018-.05-.306.34-.249.525-.295.217-.013.435-.014.653-.012m-.516.647c.542 0 1.083.051 1.615.152.744-.097 1.494-.005 2.235-.135.306.024.95-.115.876.371-.349.042-.674-.177-1.027-.14-.694.043-1.393.107-2.08-.045-.787.165-1.591.088-2.387.137l-.021-.305c.268-.03.546-.024.789-.035m-10.418.012c.6 0 1.203.111 1.803.132l.125.143c-.808-.002-1.622.062-2.426-.022l-.104-.209q.301-.046.602-.044m3.426.119c.34.003.683.008 1.025.002 1.337.016 2.672.035 4.006.125l-.098.168c-1.304.043-2.606.02-3.91.015l-.822-.029q-.1-.143-.201-.281m8.642.39c.43.192.857.393 1.305.543.259-.104.615-.671.826-.26-.328.305-.791.614-1.26.51-.36-.17-.59-.52-.87-.793zm-11.984.07.33.05c.363.841.38 1.81.873 2.599.284.467.518.96.793 1.432.287.492.762.824 1.207 1.162.955.702 2.52.596 3.197-.438.427-.922-.104-1.898-.474-2.74-.634-.996-2.29-.238-2.242.848.364.218.767.663 1.222.384a11 11 0 0 1-.013-.533c.108.12.19.261.296.383-.255.329-.67.314-1.045.262-.151-.168-.307-.331-.46-.496-.188-1.083 1.193-1.994 2.11-1.446.655.42.838 1.228 1.099 1.91.301.821-.144 1.793-.924 2.159-.601.388-1.346.234-2.018.234-.917-.044-1.515-.793-2.117-1.387-.58-.712-.958-1.557-1.41-2.351a7.7 7.7 0 0 1-.424-2.031z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/notion.svg�����������������������������������0000664�0000000�0000000�00000001661�14753064456�0025135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.459 4.208c.746.606 1.026.56 2.428.466l13.215-.793c.28 0 .047-.28-.046-.326L17.86 1.968c-.42-.326-.981-.7-2.055-.607L3.01 2.295c-.466.046-.56.28-.374.466zm.793 3.08v13.904c0 .747.373 1.027 1.214.98l14.523-.84c.841-.046.935-.56.935-1.167V6.354c0-.606-.233-.933-.748-.887l-15.177.887c-.56.047-.747.327-.747.933zm14.337.745c.093.42 0 .84-.42.888l-.7.14v10.264c-.608.327-1.168.514-1.635.514-.748 0-.935-.234-1.495-.933l-4.577-7.186v6.952L12.21 19s0 .84-1.168.84l-3.222.186c-.093-.186 0-.653.327-.746l.84-.233V9.854L7.822 9.76c-.094-.42.14-1.026.793-1.073l3.456-.233 4.764 7.279v-6.44l-1.215-.139c-.093-.514.28-.887.747-.933zM1.936 1.035l13.31-.98c1.634-.14 2.055-.047 3.082.7l4.249 2.986c.7.513.934.653.934 1.213v16.378c0 1.026-.373 1.634-1.68 1.726l-15.458.934c-.98.047-1.448-.093-1.962-.747l-3.129-4.06c-.56-.747-.793-1.306-.793-1.96V2.667c0-.839.374-1.54 1.447-1.632"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/notist.svg�����������������������������������0000664�0000000�0000000�00000001505�14753064456�0025144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.933 3.8c-1.1.11-2.288.4-3.038.74-1.07.5-1.26.87-.91 1.869.36 1.04.19 2.308-1 7.505C.109 17.79-.04 18.6.01 19.32c.04.47.09.63.29.79.22.18.33.19 1.688.13 3.408-.17 4.057-.22 4.267-.34.24-.13.25-.2.44-1.759.32-2.868 1.788-7.155 3.027-8.894 1.06-1.479 2.359-2.128 3.098-1.549.78.62.76 1.559-.13 4.147-.68 1.999-.79 2.428-.91 3.617-.15 1.46.13 2.49.96 3.408.85.94 2.119 1.41 3.847 1.41 1.64 0 2.968-.41 4.377-1.34 1.29-.86 2.828-2.608 3.008-3.428.1-.41-.07-.859-.35-.969-.41-.15-.65-.04-1.389.63-.859.78-1.249.95-2.008.89-1.01-.08-1.45-.66-1.45-1.92 0-.899.09-1.349.65-3.317.79-2.728.93-3.967.58-5.027C19.434 4.03 17.026 3.26 14.358 4c-1.45.41-3.238 1.449-4.597 2.688-.38.34-.68.59-.68.56 0-.02.07-.35.16-.72.34-1.5.2-2.248-.48-2.598-.39-.2-1.598-.26-2.827-.13z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nounproject.svg������������������������������0000664�0000000�0000000�00000000570�14753064456�0026173�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.672 8.846H24v6.327h-6.328zM6.328 11.99a3.164 3.164 0 0 1-3.164 3.163A3.164 3.164 0 0 1 0 11.991a3.164 3.164 0 0 1 3.164-3.164 3.164 3.164 0 0 1 3.164 3.164m5.504 1.142 2.04 2.021 1.142-1.16-2.022-2.003 2.022-2.003-1.142-1.142-2.04 2.003L9.81 8.846 8.649 9.988l2.022 2.003-2.022 2.003 1.16 1.16Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/novu.svg�������������������������������������0000664�0000000�0000000�00000000746�14753064456�0024621�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.48 9.62a.72.72 0 0 1-1.235.503L8.007.68C9.256.24 10.6 0 12 0c2.387 0 4.611.697 6.48 1.898zm3.36-4.49v4.49c0 3.656-4.44 5.466-6.996 2.853L4.909 2.319A11.98 11.98 0 0 0 0 12c0 2.555.799 4.924 2.16 6.87v-4.465c0-3.657 4.44-5.467 6.996-2.854l9.922 10.14A11.98 11.98 0 0 0 24 12c0-2.555-.799-4.924-2.16-6.87M6.755 13.9l9.22 9.425A12 12 0 0 1 12 24c-2.387 0-4.611-.697-6.48-1.898v-7.697a.72.72 0 0 1 1.235-.504"/></svg>��������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/now.svg��������������������������������������0000664�0000000�0000000�00000001547�14753064456�0024435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.8 11.997c0-.974.789-1.763 1.76-1.763.972 0 1.76.79 1.76 1.763 0 .974-.788 1.764-1.76 1.764-.971 0-1.76-.79-1.76-1.764M21.83 9.101l-1.217 2.453-.788-2.319h-.001a1.144 1.144 0 0 0-2.039-.257c-.526.802-1.05 1.61-1.574 2.414l-.278-1.956a1.145 1.145 0 1 0-2.263.342l.049.328a3.675 3.675 0 0 0-6.332.028l.07-.343a1.108 1.108 0 1 0-2.171-.444l-.476 2.338-1.752-2.718a1.106 1.106 0 0 0-2.012.374L.023 14.353a1.11 1.11 0 0 0 1.087 1.336c.513.004.976-.358 1.084-.892l.476-2.338q.888 1.383 1.78 2.764a1.108 1.108 0 0 0 1.993-.456l.469-2.302a3.68 3.68 0 0 0 3.648 3.219 3.68 3.68 0 0 0 3.57-2.797l.262 1.759c.074.579.548 1.037 1.141 1.037.427 0 .776-.245.997-.584l1.885-2.895.905 2.665c.162.475.58.814 1.096.814.479 0 .855-.288 1.06-.716l2.403-4.845a1.15 1.15 0 0 0-.512-1.54 1.143 1.143 0 0 0-1.538.52"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/npm.svg��������������������������������������0000664�0000000�0000000�00000000440�14753064456�0024413�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.763 0C.786 0 0 .786 0 1.763v20.474C0 23.214.786 24 1.763 24h20.474c.977 0 1.763-.786 1.763-1.763V1.763C24 .786 23.214 0 22.237 0zM5.13 5.323l13.837.019-.009 13.836h-3.464l.01-10.382h-3.456L12.04 19.17H5.113z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nrwl.svg�������������������������������������0000664�0000000�0000000�00000003624�14753064456�0024612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.357 8.258a3.4 3.4 0 0 0-.845.123l.054-.02a3.4 3.4 0 0 0-.841.346 3 3 0 0 0-.262.168l-.11.078-.025.022-.01.005-.103.084-.115.104-.05.045-.08.08-.099.107-.03.034-.071.086-.034.04-.066.088-.006.008-.072.1-.014.02-.082.132-.074.127-.012.026-.062.12-.067.143-.054.135-.008.02a3.4 3.4 0 0 0-.131.437l-.031.152-.026.149v.013a3 3 0 0 0-.027.303L0 11.68v.04l.004.124.012.156.015.14.01.057.018.108v.004l.025.123.037.15a3 3 0 0 0 .096.297l.056.144a3.4 3.4 0 0 0 .432.745c.014.02.025.024.04.043l.007.01a3.4 3.4 0 0 0 .305.33l.011.013c.1.09.16.132.137.129q.014.008.03.018l.017.017a.7.7 0 0 1-.205-.08.7.7 0 0 0-.39-.088.696.696 0 0 0-.608.947 2 2 0 0 1 .564-.12 2 2 0 0 1 .34.007 2 2 0 0 0 .283.006q.074-.006.147-.018a1.7 1.7 0 0 0 .584-.203 3.4 3.4 0 0 0 .437.17 4.43 4.43 0 0 0 2.989-.193.5.5 0 0 0 .115-.076.2.2 0 0 0 .076.03l1.789.169v.863H8.75v-.734l1.12.105-4.204-.754-.014-.004c-.01-.1-.095-.172-.13-.218a.13.13 0 0 1-.03-.07 1.64 1.64 0 0 0-1.496-1.52.5.5 0 0 0-.18-.193.5.5 0 0 1-.187-.4.56.56 0 0 0-.498.44 1.393 1.393 0 0 1-.377-2.222 1.8 1.8 0 0 1 1.312-.563A1.824 1.824 0 0 1 5.83 10.96a.9.9 0 0 1-.543.32.9.9 0 0 0-.736.748c.35 0 .585.477 1.236.477a.59.59 0 0 0 .547-.367.59.59 0 0 0 .549.367 1.2 1.2 0 0 0 .49-.106v2.002l1.377.327v-1.592l2.193 2.605H12.1v-4.89h-1.38v2.605l-2.19-2.604H7.373v.427c-.283-.05-.556-.255-.65-.52a3.424 3.424 0 0 0-3.366-2.501M22.109 9.96v4.414c0 1.186.766 1.336 1.485 1.336.219 0 .406-.02.406-.02v-1.03s-.078.007-.164.007c-.305 0-.375-.12-.375-.453V9.96zm-6.816 1.932a2 2 0 0 0-.709.128 1.25 1.25 0 0 0-.535.385v-.453h-1.285v3.79h1.347v-1.74q0-.474.244-.704.246-.23.678-.23a3 3 0 0 1 .307.017v-1.193zm.584.06 1.094 3.787h1.306l.477-1.736.45 1.736h1.306l1.094-3.787h-1.186l-.54 1.932-.52-1.932h-1.15l-.542 1.912-.512-1.912zm-12.281 2.14c.03 0 .07.016.117.027.092.023.17.02.15.108a.171.171 0 0 1-.332-.08c.01-.044.033-.056.065-.055"/></svg>������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nsis.svg�������������������������������������0000664�0000000�0000000�00000001060�14753064456�0024574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.736 24H24l-5.132-4.919zm-6.021-5.064 5.133 4.918 5.132-4.919zm-6.539-5.272v9.838l5.132-4.919-1.503-1.441zm21.648-1.626-5.132 4.919 5.132 4.919zm-4.844 6.193-5.132-4.92-5.132 4.92zM1.696 13.165l5.132 4.92 5.132-4.92zm20.608-1.625H12.039l5.133 4.919zM6.828 7.541l-5.132 4.92H11.96zm-5.652 4.421 5.132-4.919-5.132-4.919zm21.128-1.127-5.132-4.92-5.133 4.92zm-6.02-5.065H6.02l5.132 4.919zm6.54-5.272-5.132 4.919 5.132 4.92zm-6.539 4.567L11.152.146 6.02 5.065zM10.264 0H0l5.132 4.919z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ntfy.svg�������������������������������������0000664�0000000�0000000�00000000767�14753064456�0024615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.597 13.693v2.156h6.205v-2.156ZM5.183 6.549v2.363l3.591 1.901.023.01-.023.009-3.591 1.901v2.35l.386-.211 5.456-2.969V9.729ZM3.659 2.037C1.915 2.037.42 3.41.42 5.154v.002L.438 18.73 0 21.963l5.956-1.583h14.806c1.744 0 3.238-1.374 3.238-3.118V5.154c0-1.744-1.493-3.116-3.237-3.117h-.001zm0 2.2h17.104c.613.001 1.037.447 1.037.917v12.108c0 .47-.424.916-1.038.916H5.633l-3.026.915.031-.179-.017-13.76c0-.47.424-.917 1.038-.917"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/simple/nubank.svg�����������������������������������0000664�0000000�0000000�00000001444�14753064456�0025104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.28 5.434a4 4 0 0 0-2.944 1.252h-.002q-.08-.003-.162-.002A4.19 4.19 0 0 0 .473 8.94c-.308.6-.423 1.244-.459 1.9-.032.589 0 1.186 0 1.77v5.652h3.17s.002-2.784 0-5.178c-.001-1.611-.012-3.047 0-3.342.056-1.394.437-2.305 1.148-3.05 2.359.001 3.886 1.608 3.97 4.167.02.588.026 3.73.026 3.73v3.673h3.168v-4.965c0-1.5.013-2.8-.092-3.695-.292-2.5-1.82-4.168-4.124-4.168m8.39.3-3.166.004v4.965c0 1.501-.013 2.8.092 3.695.292 2.5 1.82 4.168 4.124 4.168a4 4 0 0 0 2.944-1.252h.002q.081.003.164.002c1.543 0 2.99-.883 3.697-2.255.309-.6.423-1.245.459-1.9.032-.59 0-1.187 0-1.77V5.738h-3.17s-.002 2.784 0 5.178c.002 1.611.012 3.047 0 3.342-.056 1.393-.437 2.305-1.148 3.05-2.359-.001-3.886-1.609-3.97-4.167-.02-.588-.028-2.044-.028-3.733Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nucleo.svg�����������������������������������0000664�0000000�0000000�00000001010�14753064456�0025100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.025 0a3.87 3.87 0 0 0-1.964.525L1.354 5.55v.95h15.853a3.9 3.9 0 0 0 3.463-2.115L13.922.508A3.87 3.87 0 0 0 12.025 0m9.81 5.072L13.91 18.801a3.9 3.9 0 0 0 .1 4.056l6.734-3.908a3.87 3.87 0 0 0 1.914-3.35V5.55l-.822-.477zM1.46 7.848l-.117.004.017 7.787a3.87 3.87 0 0 0 1.946 3.334L12.008 24l.824-.475-7.926-13.73A3.9 3.9 0 0 0 1.46 7.848M11.992 9.1a2.6 2.6 0 0 0-2.584 2.6 2.6 2.6 0 0 0 2.6 2.599 2.6 2.6 0 0 0 2.6-2.6 2.6 2.6 0 0 0-2.6-2.6z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nuget.svg������������������������������������0000664�0000000�0000000�00000000646�14753064456�0024753�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.998.342a1.997 1.997 0 1 0 0 3.995 1.997 1.997 0 0 0 0-3.995m9.18 4.34a6.156 6.156 0 0 0-6.153 6.155v6.667c0 3.4 2.756 6.154 6.154 6.154h6.667c3.4 0 6.154-2.755 6.154-6.154v-6.667a6.154 6.154 0 0 0-6.154-6.155zm-1.477 2.8a2.496 2.496 0 1 1 0 4.993 2.496 2.496 0 0 1 0-4.993m7.968 6.16a3.996 3.996 0 1 1-.002 7.992 3.996 3.996 0 0 1 .002-7.992"/></svg>������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nuke.svg�������������������������������������0000664�0000000�0000000�00000002125�14753064456�0024565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.293.004c6.625.162 11.865 5.664 11.703 12.29s-5.664 11.865-12.29 11.703S-.159 18.333.003 11.707l.001-.025C.18 5.066 5.678-.158 12.293.004m0 1.238c-5.941-.164-10.89 4.52-11.054 10.461s4.52 10.89 10.461 11.054 10.89-4.52 11.054-10.461l.001-.025c.15-5.932-4.53-10.866-10.462-11.029m5.842 8.302h2.4c.976 0 .682-.873.682-.873a9.6 9.6 0 0 0-2.111-3.431l-.005.011a10.05 10.05 0 0 0-3.355-2.329.612.612 0 0 0-.894.622c-.044.802-.142 2.395-.142 2.395s.016.769-.627.769c-.813.011-1.489-.044-1.489-.044a2.3 2.3 0 0 1-1.255-.545L8.868 3.511a1.09 1.09 0 0 0-1.407-.196 9.76 9.76 0 0 0-4.713 5.384c-.256.714.333.806.731.806h6a2.09 2.09 0 0 1 1.68.627c.785.824 1.331 1.369 1.331 1.369s.48.54 1.26 1.358c.431.459.632 1.089.545 1.713 0 0-.295 5.744-.295 6-.027.398.038.993.769.775a9.76 9.76 0 0 0 5.618-4.424 1.09 1.09 0 0 0-.12-1.418l-2.471-2.607a2.3 2.3 0 0 1-.496-1.282s-.022-.682.033-1.489c.044-.643.802-.583.802-.583m-2.362 1.374c-.475.469-1.484.229-2.22-.545-.736-.775-.924-1.801-.45-2.254s1.502-.239 2.239.536c.737.774.906 1.794.431 2.263"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/numba.svg������������������������������������0000664�0000000�0000000�00000001141�14753064456�0024722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.419 15.204s7.235-5.335 4.305-8.786c-3.398-4.003-12.921 4.486-13.962 2.76-1.04-1.725 8.452-5.86 9.481-6.55.112-.075.144-.218.112-.383l1.099-.127-.685-.345.175-.685-.796.621C15.85 1.173 15.34.595 15.049.393c-1.035-.685-2.93-.52-5.685.86-2.756 1.38-9.147 5.685-5.877 10.51 2.93 4.306 11.35-3.094 12.756-1.9 1.205 1.035-8.095 7.411-8.095 7.411h3.965C11.43 18.999 8.148 24 8.148 24l11.934-8.621c-1.253-.186-3.663-.175-3.663-.175M13.175.908a.776.776 0 0 1 .823.716.776.776 0 0 1-.717.823.776.776 0 0 1-.823-.716.77.77 0 0 1 .717-.823"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/numpy.svg������������������������������������0000664�0000000�0000000�00000001172�14753064456�0024774�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.315 4.876-4.01-2.024-4.401 2.196 4.118 2.068zm1.838.928 4.205 2.122-4.363 2.19L7.87 8.046zm5.615-2.922 4.32 2.166-3.863 1.94-4.213-2.125zM15.91 1.95 12.021 0 8.174 1.92l4.007 2.02zm-3.04 16.744V24l4.711-2.35-.005-5.31zm4.704-4.206-.005-5.253-4.699 2.336v5.254zm5.655-.984v5.327l-4.018 2.005-.002-5.303zm0-1.863v-5.22l-4.025 2.001.003 5.264zm-12.022-.07L8.033 9.976v6.895s-3.88-8.257-4.24-8.998c-.046-.096-.237-.201-.285-.227A358 358 0 0 0 .773 6.25V18.43l2.82 1.508V13.57s3.84 7.378 3.878 7.458c.04.08.425.858.837 1.132.548.363 2.899 1.776 2.899 1.776z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nunjucks.svg���������������������������������0000664�0000000�0000000�00000000436�14753064456�0025466�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 12v12h24V0H0zm8.2-1.9V3h3v17.3h-3c-.7-2.5-1.4-5-2.2-7.5v7.5H3V3h3c.8 2.3 1.5 4.7 2.2 7.1M20.9 7v11.6c0 .2-.1.7-.5 1.1s-.8.5-.9.6h-5.1c-.2 0-.7-.1-1-.5-.4-.4-.5-.9-.6-1.2v-3.8c1-.2 2-.5 3-.7v3.1h2.1V7zM0 24"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nushell.svg����������������������������������0000664�0000000�0000000�00000000751�14753064456�0025300�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 16.338h1.25v-5.7c.417-.624 1.205-1.309 2.127-1.309 1.176 0 1.34.64 1.34 2.247v4.762h1.25v-5.685c0-1.458-.67-2.32-2.202-2.32-.923 0-1.964.46-2.59 1.264l-.103-1.1H0Zm10.177-7.842h-1.25v5.698c0 1.46.745 2.307 2.263 2.307.921 0 1.889-.431 2.514-1.22l.104 1.057h1.072V8.496h-1.25v5.773c-.432.67-1.265 1.25-2.129 1.25-.907 0-1.324-.446-1.324-1.458zm8.11-.997-.61.952 5.251 3.229-5.251 3.244.669.922L24 12.32v-1.28z"/></svg>�����������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nutanix.svg����������������������������������0000664�0000000�0000000�00000001177�14753064456�0025317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.394 3.617a.395.395 0 0 0-.393.395c0 .12.054.225.14.297l8.506 7.404a.39.39 0 0 1-.013.588l-8.52 7.412a.393.393 0 0 0 .28.67h4.86a.4.4 0 0 0 .265-.104l9.17-7.98a.396.396 0 0 0 0-.596L5.52 3.721a.39.39 0 0 0-.264-.104zm18.358 0a.4.4 0 0 0-.273.113l-4.716 4.106a.39.39 0 0 0-.04.564l2.427 2.114a.4.4 0 0 0 .291.13.4.4 0 0 0 .278-.119l7.127-6.203a.39.39 0 0 0 .154-.31.395.395 0 0 0-.393-.395zm-2.31 9.742c-.116 0-.22.05-.292.13l-2.426 2.113a.39.39 0 0 0 .039.564l4.716 4.104c.07.07.166.113.273.113h4.855a.393.393 0 0 0 .239-.705l-7.127-6.203a.4.4 0 0 0-.278-.116z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nuxt.svg�������������������������������������0000664�0000000�0000000�00000001300�14753064456�0024613�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.464 19.83h8.922c.283 0 .562-.073.807-.21a1.6 1.6 0 0 0 .591-.574 1.53 1.53 0 0 0 .216-.783 1.53 1.53 0 0 0-.217-.782L17.792 7.414a1.6 1.6 0 0 0-.591-.573 1.65 1.65 0 0 0-.807-.21c-.283 0-.562.073-.807.21a1.6 1.6 0 0 0-.59.573L13.463 9.99 10.47 4.953a1.6 1.6 0 0 0-.591-.573 1.65 1.65 0 0 0-.807-.21c-.284 0-.562.073-.807.21a1.6 1.6 0 0 0-.591.573L.216 17.481a1.53 1.53 0 0 0-.217.782c0 .275.074.545.216.783a1.6 1.6 0 0 0 .59.574c.246.137.525.21.808.21h5.6c2.22 0 3.856-.946 4.982-2.79l2.733-4.593 1.464-2.457 4.395 7.382h-5.859Zm-6.341-2.46-3.908-.002 5.858-9.842 2.923 4.921-1.957 3.29c-.748 1.196-1.597 1.632-2.916 1.632"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nvidia.svg�����������������������������������0000664�0000000�0000000�00000001475�14753064456�0025104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.948 8.798v-1.43a7 7 0 0 1 .424-.018c3.922-.124 6.493 3.374 6.493 3.374s-2.774 3.851-5.75 3.851a3.7 3.7 0 0 1-1.158-.185v-4.346c1.528.185 1.837.857 2.747 2.385l2.04-1.714s-1.492-1.952-4-1.952a6 6 0 0 0-.796.035m0-4.735v2.138l.424-.027c5.45-.185 9.01 4.47 9.01 4.47s-4.08 4.964-8.33 4.964a6.5 6.5 0 0 1-1.095-.097v1.325c.3.035.61.062.91.062 3.957 0 6.82-2.023 9.593-4.408.459.371 2.34 1.263 2.73 1.652-2.633 2.208-8.772 3.984-12.253 3.984-.335 0-.653-.018-.971-.053v1.864H24V4.063zm0 10.326v1.131c-3.657-.654-4.673-4.46-4.673-4.46s1.758-1.944 4.673-2.262v1.237H8.94c-1.528-.186-2.73 1.245-2.73 1.245s.68 2.412 2.739 3.11M2.456 10.9s2.164-3.197 6.5-3.533V6.201C4.153 6.59 0 10.653 0 10.653s2.35 6.802 8.948 7.42v-1.237c-4.84-.6-6.492-5.936-6.492-5.936"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nvm.svg��������������������������������������0000664�0000000�0000000�00000007064�14753064456�0024432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.178 7.98-.199.004a.045.045 0 0 0-.037.068l.104.172a.05.05 0 0 0 .04.022l.198-.005a.045.045 0 0 0 .037-.068l-.104-.171a.05.05 0 0 0-.039-.022m-1.218.084-.162.004a.045.045 0 0 0-.038.068l.085.14a.05.05 0 0 0 .04.023l.162-.004a.045.045 0 0 0 .038-.068L6 8.087a.05.05 0 0 0-.04-.022m.711.396-.28.006a.045.045 0 0 0-.038.068l.17.283a.05.05 0 0 0 .04.022l.281-.006a.045.045 0 0 0 .038-.069l-.171-.282a.05.05 0 0 0-.04-.022m.843.249-.352.007a.045.045 0 0 0-.038.069l.185.305a.05.05 0 0 0 .04.022l.352-.008a.045.045 0 0 0 .038-.068l-.185-.305a.05.05 0 0 0-.04-.022m8.73.125a.45.45 0 0 0-.231.067q-1.342.773-2.687 1.541l.106-.179c.07-.157.027-.224-.145-.224l-1.807-.001a.19.19 0 0 0-.19.109q-.304.535-.615 1.067c-.271.468-.842 1.412-.903 1.513l-1.034 1.885v-.003.003c.08.127.169.263.257.398l.041.065h.002c.13.199.26.397.378.583-.13-.21.114.148.192.23.162.173.3.175.46.003.064-.068.12-.144.174-.22.251-.35.47-.72.687-1.09.454-.77.896-1.546 1.344-2.318q.301-.518.605-1.035l.032-.058.006 4.23c0 .25.118.318.333.195.543-.309 1.084-.623 1.63-.929a.44.44 0 0 0 .244-.425c-.007-.655.002-1.308-.006-1.963-.002-.224.083-.376.282-.48.202-.104.399-.22.593-.34a.43.43 0 0 1 .493-.002c.194.12.39.236.593.34.207.106.29.265.287.495-.007.642.004 1.285-.006 1.927a.47.47 0 0 0 .27.464c.522.29 1.037.59 1.554.885.283.162.382.105.383-.218.003-1.057.007-2.114.004-3.172 0-.16.062-.266.194-.342q.343-.195.684-.393a.41.41 0 0 1 .447.006c.2.12.4.24.608.348s.29.265.287.495c-.006.642.004 1.285-.006 1.927-.003.22.082.36.271.465.526.292 1.047.594 1.57.892.261.149.365.09.366-.209v-2.19h.007c0-.73-.003-1.46.002-2.19a.47.47 0 0 0-.26-.456 313 313 0 0 1-2.797-1.605.5.5 0 0 0-.557.002c-.599.353-1.205.692-1.806 1.043-.093.054-.159.054-.252 0-.616-.359-1.237-.71-1.854-1.066a.46.46 0 0 0-.23-.07zM3.33 8.837q-.119 0-.246.075a334 334 0 0 1-2.811 1.614c-.197.112-.277.259-.274.483.008.718.003 1.436.003 2.154h.005v2.208c0 .292.113.354.37.207.522-.299 1.041-.602 1.568-.893a.47.47 0 0 0 .27-.465c-.009-.654-.001-1.308-.004-1.962-.001-.192.064-.336.24-.431q.336-.187.668-.384a.4.4 0 0 1 .43.001c.207.121.411.247.624.356.21.107.286.268.284.497-.007.648.002 1.296-.005 1.944-.002.206.08.337.257.436.53.296 1.056.601 1.584.902.255.146.364.083.365-.214q.003-2.007.008-4.014l2.072 3.258.747-2.364.121.205-.3-.516-.08-.138-.183-.314a.05.05 0 0 0-.045-.022l-.726.098-.062-.113-.234-.401a.05.05 0 0 0-.04-.023l-.258.004a.045.045 0 0 0-.038.067l.032.054-.554.004-.13-.226a.05.05 0 0 0-.04-.022l-.286.002c-.02-.165-.101-.281-.26-.372A358 358 0 0 1 3.577 8.91a.5.5 0 0 0-.246-.072m2.836.023-.237.005a.045.045 0 0 0-.037.069l.144.237a.05.05 0 0 0 .04.022l.236-.005a.045.045 0 0 0 .038-.068l-.144-.238a.05.05 0 0 0-.04-.022m.55.414-.25.006a.045.045 0 0 0-.037.068l.13.216a.05.05 0 0 0 .04.021l.25-.005a.045.045 0 0 0 .037-.068l-.13-.216a.05.05 0 0 0-.04-.022m.755.04-.366.007a.045.045 0 0 0-.037.069l.19.315a.05.05 0 0 0 .04.022l.224-.004.177.29a.05.05 0 0 0 .04.022l.519-.01a.045.045 0 0 0 .037-.069l-.316-.522a.05.05 0 0 0-.04-.022l-.377.008-.052-.085a.05.05 0 0 0-.04-.021m-1.361.08-.2.003a.045.045 0 0 0-.037.069l.104.171a.05.05 0 0 0 .04.022l.198-.004a.045.045 0 0 0 .038-.068l-.104-.172a.05.05 0 0 0-.04-.022m.602.46-.288.005a.045.045 0 0 0-.038.069l.176.29a.05.05 0 0 0 .04.021l.077-.001.15.247a.05.05 0 0 0 .04.022l.472-.01a.045.045 0 0 0 .037-.068l-.288-.475a.05.05 0 0 0-.039-.021l-.261.005-.038-.063a.05.05 0 0 0-.04-.022m1.925.643-.644.014a.045.045 0 0 0-.038.069l.128.21a.05.05 0 0 0 .04.022l.17-.003.106.173a.05.05 0 0 0 .04.022l.447-.01a.045.045 0 0 0 .037-.068l-.246-.407a.05.05 0 0 0-.04-.022"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nx.svg���������������������������������������0000664�0000000�0000000�00000002034�14753064456�0024247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.987 14.138-3.132 4.923-5.193-8.427-.012 8.822H0V4.544h3.691l5.247 8.833.005-3.998zm.601-5.761c.024-.048 0-3.784.008-3.833h-3.65c.002.059-.005 3.776-.003 3.833zm5.634 4.134a2.06 2.06 0 0 0-1.969 1.336 1.96 1.96 0 0 1 2.343-.739c.396.161.917.422 1.33.283a2.1 2.1 0 0 0-1.704-.88m3.39 1.061c-.375-.13-.8-.277-1.109-.681q-.088-.121-.176-.265a2.1 2.1 0 0 0-.533-.642c-.294-.216-.68-.322-1.18-.322a2.48 2.48 0 0 0-2.294 1.536 2.325 2.325 0 0 1 4.002.388.75.75 0 0 0 .836.334c.493-.105.46.36 1.203.518v-.133c-.003-.446-.246-.55-.75-.733zm2.024 1.266a.72.72 0 0 0 .347-.638c-.01-2.957-2.41-5.487-5.37-5.487a5.36 5.36 0 0 0-4.487 2.418c-.01-.026-1.522-2.39-1.538-2.418H8.943l3.463 5.423-3.379 5.32h3.54l1.54-2.366 1.568 2.366h3.541l-3.21-5.052a.7.7 0 0 1-.084-.32 2.69 2.69 0 0 1 2.69-2.691h.001c1.488 0 1.736.89 2.057 1.308.634.826 1.9.464 1.9 1.541a.707.707 0 0 0 1.066.596m.35.133c-.173.372-.56.338-.755.639-.176.271.114.412.114.412s.337.156.538-.311c.104-.231.14-.488.103-.74"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/nxp.svg��������������������������������������0000664�0000000�0000000�00000000774�14753064456�0024440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.797 7.914 9.317 12l-2.52 4.086-4.272-4.938.001 4.938H.005L0 16.08V7.914h2.524l4.271 4.938V7.914m14.851 2.895c0-.552-.273-.868-1.037-.868h-3.188v2.312h3.405c.592 0 .82-.557.82-1.042zm-.63-2.895C23.42 7.914 24 9.108 24 10.707v.96c0 1.217-.535 2.614-2.323 2.614h-4.26l.002 1.805h-.001L14.898 12l2.52-4.086zm-6.745 0h-.462l-1.702 2.716-1.701-2.716H7.418L9.94 12l-2.52 4.086h2.987l1.701-2.716 1.702 2.716h2.987L14.276 12l2.52-4.086z"/></svg>����mkdocs-material-9.6.4/material/templates/.icons/simple/nzxt.svg�������������������������������������0000664�0000000�0000000�00000000616�14753064456�0024631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m1.763 8.936 2.101 3.04-.002-3.04h1.773v6.128H3.99l-2.218-3.227v3.227H0V8.936zm22.237 0v1.614h-1.612v4.514h-1.883V10.55h-1.611V8.936zm-9.598 0 .996 1.573 1.061-1.573h1.947l-1.98 3.034 2.013 3.094h-2.063l-1.005-1.558-.99 1.558h-2.015l1.975-3.038-2.004-3.09zm-2.652 0L9.327 13.51h2.372v1.554H6.573l2.379-4.584H6.704V8.936z"/></svg>������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/o2.svg���������������������������������������0000664�0000000�0000000�00000001055�14753064456�0024144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.473.191C3.827.191 0 4.271 0 9.917c0 5.317 3.86 9.726 9.472 9.726 5.61 0 9.433-4.409 9.433-9.726C18.905 4.27 15.116.19 9.473.19zm-.002 2.77c3.677 0 5.79 3.422 5.79 6.956 0 3.314-1.785 6.956-5.79 6.956-4.007 0-5.827-3.642-5.827-6.956 0-3.534 2.148-6.956 5.827-6.956m11.69 12.48a5.5 5.5 0 0 0-2.44.588l.13 1.367c.543-.353 1.204-.66 1.9-.66.695 0 1.34.355 1.34 1.11 0 1.509-2.791 3.84-3.558 4.584v1.38H24v-1.298h-3.36c1.344-1.32 3.1-2.924 3.1-4.668 0-1.614-1.013-2.403-2.58-2.403z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/obb.svg��������������������������������������0000664�0000000�0000000�00000002161�14753064456�0024365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.375 9.305-1.123 1.226c.304.426.471.934.471 1.469 0 .679-.264 1.317-.744 1.797s-1.118.744-1.797.744a2.53 2.53 0 0 1-1.797-.744A2.52 2.52 0 0 1 1.641 12a2.543 2.543 0 0 1 2.496-2.54l1.32-1.44a4.2 4.2 0 0 0-1.275-.202A4.187 4.187 0 0 0 0 12c0 1.117.435 2.167 1.225 2.957s1.84 1.225 2.957 1.225a4.15 4.15 0 0 0 2.957-1.225A4.15 4.15 0 0 0 8.364 12c0-.998-.35-1.941-.989-2.695M5.983 8.082v-.005L3.076 11.24h1.949l2.897-3.16H5.983m5.39 4.516h2.29c.314 0 .954.043.954.934 0 1.087-.764 1.108-1.269 1.108h-1.975zm0-3.162h1.998c.583 0 1.044.217 1.044.902 0 .63-.416.902-1.134.902h-1.908zm-1.684 6.563h3.693c.516 0 1.425-.076 1.987-.544.73-.608.853-1.26.853-1.673 0-.945-.494-1.64-.977-2a2.1 2.1 0 0 0 .775-1.63c0-.325-.157-2.075-2.952-2.075h-3.38v7.922m9.463-3.401h2.29c.314 0 .954.043.954.934 0 1.087-.764 1.108-1.269 1.108h-1.975zm0-3.162h1.998c.583 0 1.044.217 1.044.901 0 .63-.415.902-1.134.902h-1.908zm-1.684 6.563h3.693c.516 0 1.426-.076 1.987-.544.73-.608.853-1.26.853-1.673 0-.945-.494-1.64-.977-2a2.1 2.1 0 0 0 .775-1.63c0-.325-.157-2.075-2.952-2.075h-3.38z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/observable.svg�������������������������������0000664�0000000�0000000�00000001263�14753064456�0025751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20q-1.597 0-2.77-.696a4.7 4.7 0 0 1-1.794-1.89 10 10 0 0 1-.916-2.53A13.6 13.6 0 0 1 6.23 12q0-1.149.152-2.2.15-1.049.556-2.132A6.8 6.8 0 0 1 7.98 5.79a4.7 4.7 0 0 1 1.668-1.293Q10.681 4 12 4q1.597 0 2.77.696a4.7 4.7 0 0 1 1.794 1.89q.627 1.193.916 2.53T17.77 12q0 1.149-.152 2.2a9.8 9.8 0 0 1-.567 2.132 7.2 7.2 0 0 1-1.042 1.878q-.627.796-1.657 1.293-1.031.498-2.352.497m2.037-5.882c.551-.554.858-1.32.848-2.118q0-1.236-.827-2.118Q13.23 9 12 9t-2.058.882A2.99 2.99 0 0 0 9.115 12q0 1.236.827 2.118Q10.77 15 12 15t2.037-.882M12 24c6.372 0 11.538-5.373 11.538-12S18.372 0 12 0 .462 5.373.462 12 5.628 24 12 24"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/obsidian.svg���������������������������������0000664�0000000�0000000�00000002311�14753064456�0025410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.355 18.538a68.967 68.959 0 0 0 1.858-2.954.81.81 0 0 0-.062-.9c-.516-.685-1.504-2.075-2.042-3.362-.553-1.321-.636-3.375-.64-4.377a1.7 1.7 0 0 0-.358-1.05l-3.198-4.064a4 4 0 0 1-.076.543c-.106.503-.307 1.004-.536 1.5-.134.29-.29.6-.446.914l-.31.626c-.516 1.068-.997 2.227-1.132 3.59-.124 1.26.046 2.73.815 4.481q.192.016.386.044a6.36 6.36 0 0 1 3.326 1.505c.916.79 1.744 1.922 2.415 3.5zM8.199 22.569q.11.019.22.02c.78.024 2.095.092 3.16.29.87.16 2.593.64 4.01 1.055 1.083.316 2.198-.548 2.355-1.664.114-.814.33-1.735.725-2.58l-.01.005c-.67-1.87-1.522-3.078-2.416-3.849a5.3 5.3 0 0 0-2.778-1.257c-1.54-.216-2.952.19-3.84.45.532 2.218.368 4.829-1.425 7.531zM5.533 9.938q-.035.15-.098.29L2.82 16.059a1.6 1.6 0 0 0 .313 1.772l4.116 4.24c2.103-3.101 1.796-6.02.836-8.3-.728-1.73-1.832-3.081-2.55-3.831zM9.32 14.01c.615-.183 1.606-.465 2.745-.534-.683-1.725-.848-3.233-.716-4.577.154-1.552.7-2.847 1.235-3.95q.17-.35.328-.664c.149-.297.288-.577.419-.86.217-.47.379-.885.46-1.27.08-.38.08-.72-.014-1.043-.095-.325-.297-.675-.68-1.06a1.6 1.6 0 0 0-1.475.36l-4.95 4.452a1.6 1.6 0 0 0-.513.952l-.427 2.83c.672.59 2.328 2.316 3.335 4.711q.136.317.253.653"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/obsstudio.svg��������������������������������0000664�0000000�0000000�00000001533�14753064456�0025640�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 24C5.383 24 0 18.617 0 12S5.383 0 12 0s12 5.383 12 12-5.383 12-12 12m0-22.891C5.995 1.109 1.11 5.995 1.11 12S5.995 22.89 12 22.89 22.89 18.005 22.89 12 18.005 1.109 12 1.109M6.182 5.99c.352-1.698 1.503-3.229 3.05-3.996-.269.273-.595.483-.844.78-1.02 1.1-1.48 2.692-1.199 4.156.355 2.235 2.455 4.06 4.732 4.028 1.765.079 3.485-.937 4.348-2.468 1.848.063 3.645 1.017 4.7 2.548.54.799.962 1.736.991 2.711-.342-1.295-1.202-2.446-2.375-3.095a4.9 4.9 0 0 0-3.772-.425c-1.56.448-2.849 1.723-3.293 3.293-.377 1.25-.216 2.628.377 3.772-.825 1.429-2.315 2.449-3.932 2.756-1.244.261-2.551.059-3.709-.464 1.036.302 2.161.355 3.191-.011a4.91 4.91 0 0 0 3.024-2.935c.556-1.49.345-3.261-.591-4.54-.7-1.007-1.803-1.717-3.002-1.969-.38-.068-.764-.098-1.148-.134-.611-1.231-.834-2.66-.528-3.996z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/obtainium.svg��������������������������������0000664�0000000�0000000�00000003376�14753064456�0025623�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.85.97c-.269.004-.77.17-2.751.899-.668.245-1.291.48-1.758.658a40 40 0 0 0-.737.292 1 1 0 0 0-.083.04.526.526 0 0 0-.218.6c.026.092.143.429.308.89a262 262 0 0 0 1.383 3.781q.081.211.104.259a.6.6 0 0 0 .168.226c.07.05.162.07.288.06.252-.02.656-.154 1.395-.415.745-.263 1.112-.394 1.31-.44a.4.4 0 0 1 .188-.018c.037.01.062.03.103.063.058.048.082.073.09.11a.6.6 0 0 1-.031.206c-.03.121-.198.582-.43 1.197a192 192 0 0 1-1.663 4.227 41 41 0 0 1-.38.897l-.028.058-.014.023-.08.09a.14.14 0 0 1-.077.041c-.063.013-.175-.012-.4-.113-.45-.202-1.349-.702-3.246-1.75-.68-.373-1.31-.727-1.782-.996a41 41 0 0 1-.74-.433l-.073-.05c-.086-.079-.117-.163-.104-.243s.074-.16.185-.224c.044-.026.217-.1.451-.193.234-.092.53-.205.835-.315s.599-.222.829-.312l.289-.117q.113-.048.153-.07a.5.5 0 0 0 .191-.172.45.45 0 0 0 .044-.278c-.023-.238-.147-.604-.385-1.247-.207-.56-.583-1.588-.836-2.283-.126-.347-.253-.69-.357-.962a11 11 0 0 0-.216-.542.65.65 0 0 0-.266-.303.5.5 0 0 0-.369-.042q-.053.013-.278.092A280 280 0 0 0 3.371 5.8q-.108.041-.176.069-.065.025-.086.036c-.206.107-.41.354-.537.644-.03.067-.191.482-.433 1.104s-.562 1.45-.902 2.333a131 131 0 0 0-.943 2.501q-.15.418-.222.648a1.3 1.3 0 0 0-.072.297c0 .157.04.279.196.416s.423.296.886.55c.407.225 2.627 1.455 4.932 2.735 8.284 4.598 10.051 5.577 10.356 5.738l.043.023v-.008c.16.082.29.138.397.143.118.005.215-.04.315-.128a.2.2 0 0 0 .036-.048q.02-.035.048-.093.057-.116.154-.345c.13-.307.32-.777.589-1.456a903 903 0 0 0 2.687-6.944c.924-2.405 1.763-4.61 2.372-6.224a272 272 0 0 0 .919-2.474q.034-.097.05-.15.01-.027.014-.044c.003-.011.006-.015.006-.028 0-.123-.061-.248-.174-.37a2 2 0 0 0-.488-.362C20.29 2.678 18.755 1.83 17.94 1.401a8 8 0 0 0-.784-.376.7.7 0 0 0-.306-.055"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ocaml.svg������������������������������������0000664�0000000�0000000�00000004434�14753064456�0024723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.178 21.637c-.085-.17-.187-.524-.255-.676-.067-.135-.27-.506-.37-.625-.22-.253-.27-.27-.338-.608-.12-.574-.405-1.588-.76-2.296-.187-.372-.49-.677-.761-.947-.236-.236-.777-.624-.878-.607-.895.169-1.166 1.046-1.587 1.739-.237.388-.473.71-.66 1.115-.167.371-.151.793-.439 1.115a2.95 2.95 0 0 0-.624 1.097c-.034.084-.101.929-.186 1.131l1.318-.084c1.233.085.877.557 2.787.456l3.022-.1a5.4 5.4 0 0 0-.27-.71zM20.96 1.539H3.023A3.02 3.02 0 0 0 0 4.56v6.587c.44-.152 1.047-1.08 1.25-1.3.337-.389.405-.895.574-1.2.389-.709.456-1.215 1.334-1.215.406 0 .575.1.845.473.186.253.523.743.675 1.064.186.371.474.86.609.962.1.068.185.136.27.17.135.05.253-.051.354-.12.118-.1.17-.286.287-.556.17-.39.339-.827.44-.997.169-.27.236-.608.422-.76.27-.236.641-.253.743-.27.557-.118.81.27 1.08.507.186.168.423.49.609.91.135.339.304.661.388.846.068.185.237.49.338.86.101.322.337.575.44.744 0 0 .152.406 1.03.778a8 8 0 0 0 .81.286c.39.135.76.12 1.233.068.338 0 .524-.49.676-.878.084-.237.185-.895.236-1.081s-.085-.32.034-.49c.135-.186.22-.203.287-.439.17-.523 1.114-.54 1.655-.54.456 0 .389.44 1.149.287.439-.085.86.05 1.318.185.388.102.76.22.98.473.134.17.489.997.134 1.031.033.033.067.118.118.151-.085.322-.422.085-.625.051-.253-.05-.44 0-.693.118-.439.187-1.063.17-1.452.49-.32.271-.32.861-.473 1.2 0 0-.422 1.063-1.317 1.722-.237.17-.692.574-1.672.726-.44.068-.86.068-1.318.05-.22-.016-.438-.016-.658-.016-.136 0-.575-.017-.558.034l-.05.119a.6.6 0 0 0 .033.169c.017.1.017.185.034.27 0 .185-.017.388 0 .574.017.388.17.743.186 1.148.017.44.236.913.456 1.267.085.135.203.152.254.32.067.186 0 .406.033.609.118.794.355 1.638.71 2.364v.017c.439-.067.895-.236 1.47-.32 1.063-.153 2.532-.085 3.478-.17 2.399-.22 3.7.98 5.844.49V4.562a3.045 3.045 0 0 0-3.04-3.023m-8.951 14.187q0-.051 0 0m-6.47 2.769c.17-.372.271-.778.406-1.15.135-.354.337-.86.693-1.046-.05-.05-.744-.068-.929-.085a7 7 0 0 1-.608-.084 23 23 0 0 1-1.15-.236c-.22-.051-.979-.322-1.13-.39-.39-.168-.642-.658-.93-.607-.185.034-.37.101-.49.287-.1.152-.134.423-.202.608-.084.203-.22.405-.32.608-.238.354-.626.676-.795 1.03-.033.085-.05.169-.084.254v4.07c.202.034.405.068.624.135 1.69.456 2.095.49 3.75.304l.152-.017c.118-.27.22-1.165.304-1.435.067-.22.153-.39.187-.591.033-.203 0-.406-.017-.59-.034-.491.354-.661.54-1.065z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/oclc.svg�������������������������������������0000664�0000000�0000000�00000001526�14753064456�0024547�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.628 7.117C18.366 2.388 13.69-.691 8.746.133 3.478 1.01-.076 5.97.8 11.214c.605 3.685 3.22 6.52 6.529 7.602a5.34 5.34 0 0 0 2.42 4.304c2.474 1.623 5.809.94 7.419-1.547.142-.219.27-.45.386-.682a7.53 7.53 0 0 0 5.512-5.322c.915-3.35-.592-6.79-3.451-8.465zM7.393 17.863c-2.253-1.057-3.966-3.234-4.417-5.914-.708-4.317 2.086-8.362 6.259-9.045 2.975-.49 5.847.863 7.495 3.247a7.52 7.52 0 0 0-8.14 5.463 7.46 7.46 0 0 0-.076 3.685 5.45 5.45 0 0 0-1.133 2.577zm2.1-3.518c0-.541.077-1.108.23-1.662.916-3.324 4.264-5.321 7.484-4.42 3.22.89 5.1 4.291 4.172 7.641a6.3 6.3 0 0 1-3.503 4.11 5.37 5.37 0 0 0-2.253-5.85 5.34 5.34 0 0 0-6.143.181zm6.477 6.958c-1.287 1.958-3.85 2.538-5.743 1.301s-2.383-3.84-1.095-5.785c1.275-1.958 3.85-2.538 5.744-1.301 1.893 1.25 2.382 3.852 1.094 5.785"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/oclif.svg������������������������������������0000664�0000000�0000000�00000003421�14753064456�0024717�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.887 8.804a.58.58 0 0 0-.417-.172H.585A.586.586 0 0 0 0 9.219v5.562c0 .325.262.587.585.587H14.47a.58.58 0 0 0 .417-.172l2.633-2.774a.607.607 0 0 0 0-.837zm-4.38 1.684c.07-.066.162-.1.257-.097q.091.002.171.047.083.046.134.125a.3.3 0 0 1 .05.172.3.3 0 0 1-.05.173.4.4 0 0 1-.134.124.364.364 0 0 1-.486-.124.3.3 0 0 1-.048-.173.33.33 0 0 1 .106-.247m-6.804 2.86a1.102 1.102 0 0 1-1.971 0 1.4 1.4 0 0 1-.15-.66c-.002-.221.05-.44.153-.635a1.17 1.17 0 0 1 .413-.453c.348-.22.792-.22 1.14 0 .175.111.318.268.413.453.103.195.155.414.153.635a1.4 1.4 0 0 1-.151.66m2.465-1.083a.74.74 0 0 0-.645-.34.54.54 0 0 0-.318.1.7.7 0 0 0-.234.27 1 1 0 0 0-.084.422.95.95 0 0 0 .084.39.58.58 0 0 0 .545.356 1 1 0 0 0 .191-.02.6.6 0 0 0 .128-.054.86.86 0 0 0 .292-.243l.332.385a1.22 1.22 0 0 1-.948.426 1.2 1.2 0 0 1-.617-.16 1.14 1.14 0 0 1-.428-.45 1.35 1.35 0 0 1-.155-.645c-.002-.226.05-.448.155-.648.098-.189.246-.347.428-.458a1.2 1.2 0 0 1 .628-.172 1.3 1.3 0 0 1 .552.12.97.97 0 0 1 .404.345zm2.858 1.618H7.14v-.446h.655V10.87h-.619v-.453h1.2v3.02h.65zm2.581 0H9.943v-.462h.574v-1.474h-.55v-.46h1.118v1.934h.514zm2.812-2.8a1.2 1.2 0 0 0-.264-.194.6.6 0 0 0-.245-.052.44.44 0 0 0-.355.141.63.63 0 0 0-.12.417v.098h.732v.456h-.729v1.934h-.557v-1.94h-.514v-.457h.514v-.1c-.005-.192.04-.382.132-.55a.9.9 0 0 1 .357-.345c.153-.08.324-.121.497-.119.298-.003.585.118.792.334zm-11.213 1.18q.071.205.067.423.003.217-.067.422a.64.64 0 0 1-.194.286.46.46 0 0 1-.297.101.45.45 0 0 1-.291-.1.64.64 0 0 1-.195-.279 1.3 1.3 0 0 1-.067-.43q-.004-.218.068-.422a.6.6 0 0 1 .192-.273.46.46 0 0 1 .295-.088.48.48 0 0 1 .297.094c.087.07.154.16.192.266M24 15.088a.28.28 0 0 1-.28.28h-4.67a.28.28 0 0 1-.279-.28v-.274a.28.28 0 0 1 .28-.28h4.671a.28.28 0 0 1 .278.28z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/octanerender.svg�����������������������������0000664�0000000�0000000�00000001237�14753064456�0026277�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.71 0C8.24 3.9 6.92 6 6.64 9.14c-.01-.01-.03-.01-.04-.02-1.28-.73-2.3-2.22-2.91-3.73l-2.23.87c1.64 4.95 2.81 7.13 5.39 8.94-.02.01-.03.02-.05.03-1.27.74-3.07.89-4.68.66l-.36 2.37c5.11 1.06 7.59 1.15 10.46-.19v.06c0 1.47-.77 3.09-1.78 4.38L12.3 24c3.46-3.89 4.78-5.99 5.06-9.13.02.01.03.01.05.02 1.27.73 2.29 2.21 2.9 3.73l2.23-.87c-1.64-4.95-2.8-7.14-5.39-8.95.02-.01.03-.02.05-.03 1.27-.74 3.07-.88 4.68-.65l.36-2.38c-5.1-1.06-7.58-1.14-10.44.19v-.06c0-1.47.77-3.09 1.78-4.38zm.19 8.82a3.18 3.18 0 0 1 3.28 3.07 3.18 3.18 0 0 1-3.07 3.28 3.18 3.18 0 0 1-3.28-3.07 3.18 3.18 0 0 1 3.07-3.28"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/octave.svg�����������������������������������0000664�0000000�0000000�00000002374�14753064456�0025112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5.007c-2.414-.09-4.658.715-6.286 2.485C2.913 3.906 2.188 5.75 1.987 7.77h-.42C.703 7.77 0 8.473 0 9.335v4.743c0 .863.702 1.567 1.565 1.567h2.091a17 17 0 0 0 2.57 3.687c4.46 4.848 10.696 6.036 14.561 3.016h2.102c.577 0 1.05-.473 1.05-1.05V18.43a1.03 1.03 0 0 0-.257-.668c.858-3.433-.045-7.642-2.52-11.219.002-.017.01-.032.01-.049V4.482a.82.82 0 0 0-.816-.819h-1.703C16.142 1.372 13.218.11 10.5.007m1.75 2.18c1.78-.01 3.69.62 5.425 1.85a.8.8 0 0 0-.15.445v2.013c0 .449.368.82.816.82h2.016a.8.8 0 0 0 .392-.116c2.248 3.302 2.735 7.322 1.24 10.18h-1.964c-.579 0-1.052.475-1.052 1.051v1.794c-2.991 1.3-7.005.222-9.964-2.992a12.7 12.7 0 0 1-1.55-2.098c.256-.279.416-.647.416-1.056V9.335c0-.862-.702-1.565-1.565-1.565H5.9c.238-1.364.781-2.612 1.688-3.596 1.225-1.331 2.88-1.98 4.661-1.988zm6.091 2.01h2.016c.162 0 .283.123.283.285v2.013c0 .163-.12.285-.283.285H18.34a.28.28 0 0 1-.285-.285V4.482a.28.28 0 0 1 .285-.285zM1.566 8.303h4.743c.578 0 1.033.456 1.033 1.032v4.743c0 .577-.455 1.033-1.032 1.033H1.567a1.024 1.024 0 0 1-1.034-1.032V9.335c0-.576.455-1.032 1.032-1.032zm18.459 9.61h2.865c.29 0 .52.226.52.518v2.865a.51.51 0 0 1-.52.519h-2.865a.51.51 0 0 1-.519-.519v-2.864a.51.51 0 0 1 .519-.518z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/octobercms.svg�������������������������������0000664�0000000�0000000�00000001115�14753064456�0025761�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.949 11.496C20.573 5.365 13.894.06 11.143 0 8.391-.059 3.247 6.435 3.04 13.033 2.844 19.219 8.124 23.462 10.397 24c.063-2.91.296-13.627.335-14.877.082-2.553.207-6.527.634-6.659.244-.076.578 2.158.537 3.478-.008.252-.011 1.068-.011 2.226.46-.469.94-.955 1.233-1.242.8-.787 1.155-.693.77.009-.236.432-1.253 1.868-2.001 2.909.004 2.099.013 4.74.023 7.202 1.057-1.237 2.35-2.72 3.03-3.378 1.425-1.382 1.576-1.207.903.243-.413.888-2.434 3.258-3.925 5.127.009 2.185.016 4.021.018 4.898 4-.88 9.373-6.42 9.006-12.44"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/octoprint.svg��������������������������������0000664�0000000�0000000�00000001072�14753064456�0025644�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.942 4.613C2.424 5.987 1.107 7.473.476 9.71c-.634 2.248-.585 5.094-.145 7.398s1.12 4.107 1.873 5.83h13.179c-.31-.988-.761-1.967-1.446-3.237-.685-1.268-1.658-2.692-2.648-4.178s-1.985-3.077-1.851-4.472c.094-.987.49-1.976 1.492-2.76 1.16-.909 2.289-1.437 3.353-1.595 3.325-.496 6.422.601 8.925 3.366.288.316.36.726.545 1.127l.166-.653c.15-.589.088-1.359-.152-2.371-.243-1.029-.563-1.792-1.46-2.973-.893-1.176-2.467-2.322-4.48-3.226-1.5-.673-3.305-1-5.798-.879-2.522.124-5.494 1.177-8.087 3.526"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/octopusdeploy.svg����������������������������0000664�0000000�0000000�00000001262�14753064456�0026535�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.18 18.212c1.805-1.162 3.928-3.162 3.122-5.51-.437-1.282-1.046-2.379-1.127-3.762a8.5 8.5 0 0 1 .515-3.46C6.31 1.14 11.126-.917 15.481.389c4.03 1.216 6.808 5.893 5.119 9.973-.965 2.356-1.395 4.173.755 6.006.582.496 2 1.24 1.992 2.123 0 1.163-2.27-.244-2.522-.445.286.503 3.138 3.487 1.325 3.688-1.67.194-3.147-2.139-4.15-3.142-1.686-1.682-1.395 2.042-1.403 2.81 0 1.212-.868 3.676-2.41 2.072-1.27-1.321-.775-3.433-1.674-4.905-.968-1.612-2.58 1.612-2.983 2.2-.45.66-2.713 3.844-3.596 2.147-.725-1.38.434-3.538 1.007-4.785-.209.453-1.685 1.123-2.115 1.34a5.74 5.74 0 0 1-3.057.706c-2.267-.163-.527-1.368.387-1.96z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/oculus.svg�����������������������������������0000664�0000000�0000000�00000001502�14753064456�0025133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.135 13.949c-.319.221-.675.355-1.057.416s-.761.049-1.142.049H8.063c-.382 0-.762.014-1.145-.049a2.6 2.6 0 0 1-1.057-.416 2.38 2.38 0 0 1-1.027-1.951c0-.796.387-1.515 1.029-1.95.314-.225.674-.359 1.049-.42s.75-.061 1.141-.061h7.875c.375 0 .765-.014 1.14.046s.735.194 1.051.405a2.34 2.34 0 0 1 1.02 1.949c0 .78-.391 1.5-1.035 1.95zm3.174-7.555a7.2 7.2 0 0 0-2.865-1.398 8.8 8.8 0 0 0-1.822-.23c-.449-.015-.899-.01-1.364-.01H8.76c-.457 0-.915-.005-1.372.01a9 9 0 0 0-1.825.23 7.3 7.3 0 0 0-2.865 1.4A7.17 7.17 0 0 0 0 12c0 2.182.99 4.241 2.689 5.606a7.3 7.3 0 0 0 2.865 1.4 8.8 8.8 0 0 0 1.823.229c.45.016.9.012 1.365.012h6.496c.449 0 .914.004 1.364-.012a8.6 8.6 0 0 0 1.814-.229 7.4 7.4 0 0 0 2.866-1.402A7.13 7.13 0 0 0 24 12c0-2.181-.99-4.241-2.691-5.606"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/odin.svg�������������������������������������0000664�0000000�0000000�00000001014�14753064456�0024550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A11.999 11.999 0 0 0 1.607 18c.001 0 .143.279.545.861.456.661.725.939.725.939L14.194.2s-.468-.09-1.17-.158C12.56-.002 12 0 12 0m4.184.755L4.35 21.248a12 12 0 0 0 1.652 1.144c5.734 3.312 13.078 1.342 16.39-4.394 3.31-5.735 1.342-13.08-4.394-16.39 0 0-.42-.236-.926-.479a12 12 0 0 0-.891-.373m-5.38 1.317L2.806 15.926A9.98 9.98 0 0 1 3.34 7a9.99 9.99 0 0 1 7.463-4.928M17 3.34c4.78 2.759 6.42 8.88 3.66 13.66-2.758 4.779-8.881 6.42-13.66 3.66z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/odnoklassniki.svg����������������������������0000664�0000000�0000000�00000001145�14753064456�0026474�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a6.2 6.2 0 0 0-6.194 6.195 6.2 6.2 0 0 0 6.195 6.192 6.2 6.2 0 0 0 6.193-6.192A6.2 6.2 0 0 0 12.001 0zm0 3.63a2.567 2.567 0 0 1 2.565 2.565 2.57 2.57 0 0 1-2.564 2.564 2.57 2.57 0 0 1-2.565-2.564 2.567 2.567 0 0 1 2.565-2.564zM6.807 12.6a1.814 1.814 0 0 0-.91 3.35 11.6 11.6 0 0 0 3.597 1.49l-3.462 3.463a1.815 1.815 0 0 0 2.567 2.566L12 20.066l3.405 3.403a1.813 1.813 0 0 0 2.564 0c.71-.709.71-1.858 0-2.566l-3.462-3.462a11.6 11.6 0 0 0 3.596-1.49 1.814 1.814 0 1 0-1.932-3.073 7.87 7.87 0 0 1-8.34 0c-.318-.2-.674-.29-1.024-.278"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/odoo.svg�������������������������������������0000664�0000000�0000000�00000001121�14753064456�0024556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.1 15.796a2.9 2.9 0 1 1 0-5.8 2.9 2.9 0 0 1 0 5.8m0-1.2a1.7 1.7 0 1 0 .002-3.4H21.1a1.7 1.7 0 0 0 0 3.4m-6.065 1.2a2.9 2.9 0 1 1 0-5.8 2.9 2.9 0 0 1 0 5.8m0-1.2a1.7 1.7 0 1 0 .002-3.4h-.002a1.7 1.7 0 0 0 0 3.4m-3.17-1.738c0 1.62-1.298 2.938-2.898 2.938s-2.9-1.314-2.9-2.936S7.248 10 8.968 10c.636 0 1.224.134 1.7.484v-1.68a.6.6 0 0 1 1.2 0v4.054zm-2.898 1.74a1.7 1.7 0 0 0 .002-3.4h-.002a1.7 1.7 0 0 0 0 3.4M2.9 15.796a2.9 2.9 0 1 1 0-5.8 2.9 2.9 0 0 1 0 5.8zm0-1.2a1.7 1.7 0 1 0 .002-3.4H2.9a1.7 1.7 0 0 0 0 3.4"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/odysee.svg�����������������������������������0000664�0000000�0000000�00000003541�14753064456�0025116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.965 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12 12 12 0 0 0-3.209-8.167 7.3 7.3 0 0 1-.799 3.218c-.548.957-2.281 2.77-3.264 3.699a.723.723 0 0 0 .056 1.104c.996.74 2.658 2.151 2.788 3.422.176 1.835 1.6 4.02 1.675 4.159a.7.7 0 0 1-.105.327 12 12 0 0 1-2.03 1.898 2.4 2.4 0 0 1-.807.126c-1.944-.04-1.526-1.866-1.712-2.905s-.78-3.085-2.716-2.788c0 0 .484 4.243-1.489 5.546s-5.843 2.27-6.55-.408 2.46-2.384 2.684-2.384c.223 0 2.233-.632 1.267-2.53s-2.01-3.5-2.01-3.5a11.4 11.4 0 0 0-2.735 1.285 5.4 5.4 0 0 0-1.061.82c-1.065 1.104-2.19 1.713-2.954 1.358a1.4 1.4 0 0 1-.32-.221A12 12 0 0 1 .1 13.503c.43-.641 2.082-2.038 3.696-2.906 1.304-.702 2.737-.988 3.118-1.355-.671-2.235-1.882-5.703.832-7.33C9.881.634 12.69-.142 13.77 2.958s.802 3.796 1.267 3.796 1.608.223 2.09-1.75c.356-1.445.574-2.685 1.379-3.087A12 12 0 0 0 12 0zm-.498 2.125c-.353-.019-.78.05-1.303.224 0 0-1.895.52-1.749 2.53.13 1.777 1.08 2.753 3.053 2.01 1.972-.737 2.31-1.264 1.824-2.753-.364-1.117-.765-1.956-1.825-2.011m.48.726a.25.25 0 0 1 .183.07 1.6 1.6 0 0 1 .232.346.253.253 0 0 1-.197.37.25.25 0 0 1-.233-.131 1.6 1.6 0 0 0-.148-.232.256.256 0 0 1 0-.353.25.25 0 0 1 .163-.07m3.529.152a.22.22 0 0 1 .192.103.22.22 0 0 1-.07.305.22.22 0 1 1-.122-.408M12.609 4.27a.25.25 0 0 1 .227.133 1.5 1.5 0 0 1 .102.982.25.25 0 0 1-.246.205h-.049a.253.253 0 0 1-.2-.295 1 1 0 0 0-.071-.697.253.253 0 0 1 .237-.328m-8.035.552.029.003a.12.12 0 1 1-.147.091.12.12 0 0 1 .118-.094m15.77 3.419.273.539.593.12-.539.275-.123.592-.272-.539-.592-.123.538-.272zm-17.767.535a.22.22 0 0 1 .193.104.22.22 0 0 1-.07.304.22.22 0 1 1-.123-.408m16.004 2.79a.3.3 0 0 1 .062.007.258.258 0 1 1-.31.195.26.26 0 0 1 .248-.202M4.914 16.115a.17.17 0 0 1 .165.14.17.17 0 0 1-.137.197.17.17 0 1 1-.028-.337m9.769 4.094.036.004a.2.2 0 1 1-.233.15.2.2 0 0 1 .197-.154"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ohdear.svg�����������������������������������0000664�0000000�0000000�00000001047�14753064456�0025067�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.811 9.333c2.535 0 4.597 1.994 4.597 4.445 0 2.45-2.063 4.444-4.597 4.444-2.214 0-4.067-1.521-4.5-3.54H0v-1.797h6.306c.43-2.024 2.285-3.552 4.504-3.552m7.33-3.555v3.876c.602-.384 1.334-.586 2.14-.586 1.716 0 3.72 1.152 3.72 4.4v4.458h-1.846v-4.458c0-1.024-.25-1.757-.744-2.18-.389-.332-.845-.402-1.159-.402-.963 0-2.11.448-2.11 2.582v4.458h-1.846V5.778zm-7.33 5.374c-1.498 0-2.716 1.178-2.716 2.626s1.218 2.626 2.716 2.626 2.716-1.178 2.716-2.626-1.218-2.626-2.716-2.626"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/okcupid.svg����������������������������������0000664�0000000�0000000�00000003654�14753064456�0025271�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.287 5.336c-1.656 0-2.609.886-2.831 2.632l-.106.804a.275.275 0 0 1-.382.218c-.67-.294-1.472-.45-2.397-.45C2.24 8.54 0 10.794 0 14.146 0 16.933 1.738 18.6 4.65 18.6c1.213 0 2.275-.27 3.142-.766a.27.27 0 0 1 .323.045c.452.44 1.108.688 1.906.688.74 0 1.281-.072 1.702-.228l.489-.18a.28.28 0 0 1 .248.03c.371.234.84.378 1.456.378 1.138 0 1.927-.218 2.474-.535a.28.28 0 0 1 .272-.005q.285.15.61.264c.623.244 1.355.374 2.198.374 3.635 0 4.38-1.791 4.38-2.838 0-.515-.127-1.04-.473-1.435-.01-.013-.027-.023-.038-.04-.387-.539-1.147-.349-1.324-.701-.09-.181-.016-.494.59-.466 1.09.05 1.395-1.399 1.395-2.172 0-.954-.449-2.556-3.455-2.556-1.144 0-2.151.247-2.993.697q-.121.057-.241.116a.27.27 0 0 1-.298-.034c-.435-.379-1.115-.661-2.177-.661q-.336 0-.625.039a.275.275 0 0 1-.312-.31l.118-.888.097-.727a.28.28 0 0 0-.106-.257l-.582-.447c-.735-.563-1.656-.648-2.14-.648zm.013 1.545c.46 0 .92.115 1.2.33l-.773 5.784c1.956-2.712 2.136-2.876 3.122-2.876 1.036 0 1.397.296 1.397.887 0 .345-.098.575-.263.756-.246-.016-.493-.016-.69-.016-.345 0-.542.082-1.512 1.413L14.9 15.18c.082.132.164.247.345.247.148 0 .395-.017.592-.066.164.115.23.346.23.559 0 .772-.773 1.101-2.137 1.101-.64 0-.87-.23-1.216-.97L11.612 13.8l-.411 3.09c-.312.115-.821.131-1.167.131-.723 0-1.051-.295-1.051-.92q0-.271.098-.937l.92-7c.132-1.036.477-1.283 1.299-1.283m-5.716 3.204c2.383 0 3.221 1.184 3.221 2.943 0 2.482-1.512 4.026-4.141 4.026-1.874 0-3.107-.822-3.107-2.909 0-2.432 1.48-4.06 4.027-4.06m14.718.017c1.561 0 1.939.477 1.939 1.101 0 .345-.115.543-.329.707-.377-.115-.772-.18-1.38-.18-1.184 0-1.857.69-1.857 2.169 0 1.084.328 1.479 1.199 1.479.493 0 1.068-.116 1.693-.345.23.115.345.443.345.69 0 .838-.756 1.331-2.613 1.331-1.988 0-3.057-.805-3.057-2.893 0-2.596 1.578-4.059 4.06-4.059M5.452 11.68c-1.002 0-1.56 1.019-1.56 2.383 0 .986.279 1.43 1.084 1.43.903 0 1.594-.872 1.594-2.367 0-.969-.263-1.446-1.117-1.446z"/></svg>������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/okta.svg�������������������������������������0000664�0000000�0000000�00000000317�14753064456�0024562�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.389 0 0 5.35 0 12s5.35 12 12 12 12-5.35 12-12S18.611 0 12 0m0 18c-3.325 0-6-2.675-6-6s2.675-6 6-6 6 2.675 6 6-2.675 6-6 6"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/okx.svg��������������������������������������0000664�0000000�0000000�00000002715�14753064456�0024431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.15 8.685c.03.02.05.06.05.1v6.44c0 .04-.02.08-.05.1a.17.17 0 0 1-.11.05H.16a.17.17 0 0 1-.11-.05.14.14 0 0 1-.05-.1v-6.44c0-.04.02-.08.05-.1a.17.17 0 0 1 .11-.05h6.88c.04 0 .08.02.11.05m-2.35 2.35a.14.14 0 0 0-.05-.1.16.16 0 0 0-.11-.05H2.56a.17.17 0 0 0-.11.04.14.14 0 0 0-.05.1v1.95c0 .04.02.08.05.1.03.04.07.05.11.05h2.08c.04 0 .08-.01.11-.04a.14.14 0 0 0 .05-.1zm16.8 0v1.94c0 .09-.07.15-.16.15h-2.08c-.09 0-.16-.06-.16-.15v-1.94c0-.08.07-.15.16-.15h2.08c.09 0 .16.06.16.15m-2.4-2.25v1.95c0 .08-.07.15-.16.15h-2.08c-.09 0-.16-.07-.16-.15v-1.95c0-.08.07-.15.16-.15h2.08c.09 0 .16.07.16.15m4.8 0v1.95c0 .08-.07.15-.16.15h-2.08c-.09 0-.16-.07-.16-.15v-1.95c0-.08.07-.15.16-.15h2.08c.09 0 .16.07.16.15m-4.8 4.5v1.94c0 .08-.07.15-.16.15h-2.08c-.09 0-.16-.07-.16-.15v-1.95c0-.08.07-.15.16-.15h2.08c.09 0 .16.07.16.15zm4.8 0v1.94c0 .08-.07.15-.16.15h-2.08c-.09 0-.16-.07-.16-.15v-1.95c0-.08.07-.15.16-.15h2.08c.09 0 .16.07.16.15zm-8.4-4.5v1.95c0 .08-.07.15-.16.15h-2.08c-.09 0-.16-.07-.16-.15v-1.95c0-.08.07-.15.16-.15h2.08c.09 0 .16.07.16.15m0 4.5v1.94c0 .08-.07.15-.16.15h-2.08c-.09 0-.16-.07-.16-.15v-1.95c0-.08.07-.15.16-.15h2.08c.09 0 .16.07.16.15zm-2.4-.3a.16.16 0 0 1-.16.15H10.8v2.08c0 .04-.02.08-.05.11a.17.17 0 0 1-.11.04H8.56a.17.17 0 0 1-.12-.04.14.14 0 0 1-.04-.1v-6.45c0-.04.01-.08.04-.1a.17.17 0 0 1 .12-.05h2.08c.04 0 .08.02.11.05.03.02.05.06.05.1v2.1h2.24c.04 0 .08.01.11.04s.05.07.05.1v1.97"/></svg>���������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ollama.svg�����������������������������������0000664�0000000�0000000�00000010632�14753064456�0025072�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.361 10.26a.9.9 0 0 0-.558.47l-.072.148.001.207c0 .193.004.217.059.353.076.193.152.312.291.448.24.238.51.3.872.205a.86.86 0 0 0 .517-.436.75.75 0 0 0 .08-.498c-.064-.453-.33-.782-.724-.897a1.1 1.1 0 0 0-.466 0m-9.203.005c-.305.096-.533.32-.65.639a1.2 1.2 0 0 0-.06.52c.057.309.31.59.598.667.362.095.632.033.872-.205.14-.136.215-.255.291-.448.055-.136.059-.16.059-.353l.001-.207-.072-.148a.9.9 0 0 0-.565-.472 1 1 0 0 0-.474.007m4.184 2c-.131.071-.223.25-.195.383.031.143.157.288.353.407.105.063.112.072.117.136.004.038-.01.146-.029.243-.02.094-.036.194-.036.222.002.074.07.195.143.253.064.052.076.054.255.059.164.005.198.001.264-.03.169-.082.212-.234.15-.525-.052-.243-.042-.28.087-.355.137-.08.281-.219.324-.314a.365.365 0 0 0-.175-.48.4.4 0 0 0-.181-.033c-.126 0-.207.03-.355.124l-.085.053-.053-.032c-.219-.13-.259-.145-.391-.143a.4.4 0 0 0-.193.032m.39-2.195c-.373.036-.475.05-.654.086a4.5 4.5 0 0 0-.951.328c-.94.46-1.589 1.226-1.787 2.114-.04.176-.045.234-.045.53 0 .294.005.357.043.524.264 1.16 1.332 2.017 2.714 2.173.3.033 1.596.033 1.896 0 1.11-.125 2.064-.727 2.493-1.571.114-.226.169-.372.22-.602.039-.167.044-.23.044-.523 0-.297-.005-.355-.045-.531-.288-1.29-1.539-2.304-3.072-2.497a7 7 0 0 0-.855-.031zm.645.937a3.3 3.3 0 0 1 1.44.514c.223.148.537.458.671.662.166.251.26.508.303.82.02.143.01.251-.043.482-.08.345-.332.705-.672.957a3 3 0 0 1-.689.348c-.382.122-.632.144-1.525.138-.582-.006-.686-.01-.853-.042q-.856-.16-1.35-.68c-.264-.28-.385-.535-.45-.946-.03-.192.025-.509.137-.776.136-.326.488-.73.836-.963.403-.269.934-.46 1.422-.512.187-.02.586-.02.773-.002m-5.503-11a1.65 1.65 0 0 0-.683.298C5.617.74 5.173 1.666 4.985 2.819c-.07.436-.119 1.04-.119 1.503 0 .544.064 1.24.155 1.721.02.107.031.202.023.208l-.187.152a5.3 5.3 0 0 0-.949 1.02 5.5 5.5 0 0 0-.94 2.339 6.6 6.6 0 0 0-.023 1.357c.091.78.325 1.438.727 2.04l.13.195-.037.064c-.269.452-.498 1.105-.605 1.732-.084.496-.095.629-.095 1.294 0 .67.009.803.088 1.266.095.555.288 1.143.503 1.534.071.128.243.393.264.407.007.003-.014.067-.046.141a7.4 7.4 0 0 0-.548 1.873 5 5 0 0 0-.071.991c0 .56.031.832.148 1.279L3.42 24h1.478l-.05-.091c-.297-.552-.325-1.575-.068-2.597.117-.472.25-.819.498-1.296l.148-.29v-.177c0-.165-.003-.184-.057-.293a.9.9 0 0 0-.194-.25 1.7 1.7 0 0 1-.385-.543c-.424-.92-.506-2.286-.208-3.451.124-.486.329-.918.544-1.154a.8.8 0 0 0 .223-.531c0-.195-.07-.355-.224-.522a3.14 3.14 0 0 1-.817-1.729c-.14-.96.114-2.005.69-2.834.563-.814 1.353-1.336 2.237-1.475.199-.033.57-.028.776.01.226.04.367.028.512-.041.179-.085.268-.19.374-.431.093-.215.165-.333.36-.576.234-.29.46-.489.822-.729.413-.27.884-.467 1.352-.561.17-.035.25-.04.569-.04s.398.005.569.04a4.07 4.07 0 0 1 1.914.997c.117.109.398.457.488.602.034.057.095.177.132.267.105.241.195.346.374.43.14.068.286.082.503.045.343-.058.607-.053.943.016 1.144.23 2.14 1.173 2.581 2.437.385 1.108.276 2.267-.296 3.153-.097.15-.193.27-.333.419-.301.322-.301.722-.001 1.053.493.539.801 1.866.708 3.036-.062.772-.26 1.463-.533 1.854a2 2 0 0 1-.224.258.9.9 0 0 0-.194.25c-.054.109-.057.128-.057.293v.178l.148.29c.248.476.38.823.498 1.295.253 1.008.231 2.01-.059 2.581a1 1 0 0 0-.044.098c0 .006.329.009.732.009h.73l.02-.074.036-.134c.019-.076.057-.3.088-.516a9 9 0 0 0 0-1.258c-.11-.875-.295-1.57-.597-2.226-.032-.074-.053-.138-.046-.141a1.4 1.4 0 0 0 .108-.152c.376-.569.607-1.284.724-2.228.031-.26.031-1.378 0-1.628-.083-.645-.182-1.082-.348-1.525a6 6 0 0 0-.329-.7l-.038-.064.131-.194c.402-.604.636-1.262.727-2.04a6.6 6.6 0 0 0-.024-1.358 5.5 5.5 0 0 0-.939-2.339 5.3 5.3 0 0 0-.95-1.02l-.186-.152a.7.7 0 0 1 .023-.208c.208-1.087.201-2.443-.017-3.503-.19-.924-.535-1.658-.98-2.082-.354-.338-.716-.482-1.15-.455-.996.059-1.8 1.205-2.116 3.01a7 7 0 0 0-.097.726c0 .036-.007.066-.015.066a1 1 0 0 1-.149-.078A4.86 4.86 0 0 0 12 3.03c-.832 0-1.687.243-2.456.698a1 1 0 0 1-.148.078c-.008 0-.015-.03-.015-.066a7 7 0 0 0-.097-.725C8.997 1.392 8.337.319 7.46.048a2 2 0 0 0-.585-.041Zm.293 1.402c.248.197.523.759.682 1.388.03.113.06.244.069.292.007.047.026.152.041.233.067.365.098.76.102 1.24l.002.475-.12.175-.118.178h-.278c-.324 0-.646.041-.954.124l-.238.06c-.033.007-.038-.003-.057-.144a8.4 8.4 0 0 1 .016-2.323c.124-.788.413-1.501.696-1.711.067-.05.079-.049.157.013m9.825-.012c.17.126.358.46.498.888.28.854.36 2.028.212 3.145-.019.14-.024.151-.057.144l-.238-.06a3.7 3.7 0 0 0-.954-.124h-.278l-.119-.178-.119-.175.002-.474c.004-.669.066-1.19.214-1.772.157-.623.434-1.185.68-1.382.078-.062.09-.063.159-.012"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/omadacloud.svg�������������������������������0000664�0000000�0000000�00000002354�14753064456�0025737�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.766 7.75c-1.515 0-2.9.672-3.785 1.907l.658.675c.71-.99 1.908-1.625 3.127-1.625 1.22 0 2.421.634 3.131 1.625l.656-.674c-.885-1.235-2.271-1.907-3.787-1.907m-.006 2.192c-.966 0-1.842.4-2.48 1.194l.665.684c.461-.573 1.127-.921 1.815-.921s1.354.363 1.815.937l.674-.692a3.13 3.13 0 0 0-2.489-1.202m5.958.993v1.736a2 2 0 0 0-1.276-.466c-1.1 0-1.993.897-1.993 2s.894 2 1.993 2c.485 0 .93-.175 1.276-.465v.304h.718v-5.109Zm-12.524 1.27c-.883 0-1.6.72-1.6 1.606v2.234h.717V13.81c0-.488.396-.885.882-.885.487 0 .884.397.884.885v2.234h.717V13.81c0-.488.396-.885.883-.885s.884.397.884.885v2.234h.717V13.81c0-.885-.718-1.606-1.6-1.606a1.59 1.59 0 0 0-1.242.595 1.6 1.6 0 0 0-1.242-.595m6.668 0c-1.1 0-1.994.897-1.994 2s.894 2 1.994 2c.465 0 .916-.166 1.275-.467v.306h.718v-1.84c0-1.102-.894-1.999-1.993-1.999m9.145 0a1.999 1.999 0 0 0 0 4c.465 0 .916-.166 1.275-.467v.306H24v-1.84c0-1.102-.894-1.999-1.993-1.999m-20.012.045a2 2 0 0 0 0 4 2 2 0 0 0 0-4m10.867.676a1.28 1.28 0 0 1 0 2.558 1.278 1.278 0 0 1 0-2.559m4.58 0a1.28 1.28 0 0 1 0 2.558 1.279 1.279 0 0 1 0-2.559m4.565 0a1.279 1.279 0 0 1 0 2.558 1.28 1.28 0 0 1 0-2.559m-19.999.058a1.279 1.279 0 0 1 0 2.558 1.279 1.279 0 0 1 0-2.558z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/oneplus.svg����������������������������������0000664�0000000�0000000�00000000477�14753064456�0025320�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 3.74V24h20.26V12.428h-2.256v9.317H2.254V5.995h9.318V3.742zM18.004 0v3.74h-3.758v2.256h3.758v3.758h2.255V5.996H24V3.74h-3.758V0zm-6.45 18.756V8.862H9.562c0 .682-.228 1.189-.577 1.504-.367.297-.91.437-1.556.437h-.245v1.625h2.133v6.31h2.237z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/onlyfans.svg���������������������������������0000664�0000000�0000000�00000001007�14753064456�0025452�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 4.003h-4.015c-3.45 0-5.3.197-6.748 1.957a7.996 7.996 0 1 0 2.103 9.211c3.182-.231 5.39-2.134 6.085-5.173 0 0-2.399.585-4.43 0 4.018-.777 6.333-3.037 7.005-5.995M5.61 11.999A2.391 2.391 0 0 1 9.28 9.97a2.966 2.966 0 0 1 2.998-2.528h.008c-.92 1.778-1.407 3.352-1.998 5.263A2.392 2.392 0 0 1 5.61 12Zm2.386-7.996a7.996 7.996 0 1 0 7.996 7.996 7.996 7.996 0 0 0-7.996-7.996m0 10.394A2.399 2.399 0 1 1 10.395 12a2.396 2.396 0 0 1-2.399 2.398Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/onlyoffice.svg�������������������������������0000664�0000000�0000000�00000001455�14753064456�0025765�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.501 11.724.631 7.16c-.841-.399-.841-1.014 0-1.376l9.87-4.563c.841-.399 2.194-.399 2.998 0l9.87 4.563c.841.398.841 1.014 0 1.376l-9.87 4.563c-.841.362-2.194.362-2.998 0zm0 5.468-9.87-4.563c-.841-.399-.841-1.014 0-1.376l3.363-1.558 6.507 3.006c.841.398 2.194.398 2.998 0l6.507-3.006 3.363 1.558c.841.398.841 1.014 0 1.376l-9.87 4.563c-.841.398-2.194.398-2.998 0m0 0L.631 12.63c-.841-.399-.841-1.014 0-1.376l3.363-1.558 6.507 3.006c.841.398 2.194.398 2.998 0l6.507-3.006 3.363 1.558c.841.398.841 1.014 0 1.376l-9.87 4.563c-.841.398-2.194.398-2.998 0m0 5.613-9.87-4.563c-.841-.398-.841-1.014 0-1.376l3.436-1.593 6.398 2.97c.84.398 2.193.398 2.997 0l6.398-2.97 3.436 1.593c.841.4.841 1.014 0 1.376l-9.87 4.563c-.768.362-2.12.362-2.925 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/onnx.svg�������������������������������������0000664�0000000�0000000�00000002366�14753064456�0024614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.033 11.296c-.05 0-.101 0-.151.013L18.86 3.87a.968.968 0 0 0-1.558-1.118L9.286 1.156a.97.97 0 0 0-.968-.854.976.976 0 0 0-.967.967.93.93 0 0 0 .113.453L1.219 10.68a.8.8 0 0 0-.251-.038.968.968 0 0 0 0 1.935h.037l3.368 8.33a1.1 1.1 0 0 0-.088.403.968.968 0 0 0 1.671.666l10.115.993c.1.427.49.728.943.728.54 0 .967-.44.967-.967a1 1 0 0 0-.226-.628l5.114-8.872c.05.013.1.013.164.013.54 0 .967-.44.967-.968a.97.97 0 0 0-.967-.98zm-5.806-7.275a1 1 0 0 0 .453.327L16.147 15.92c-.1.025-.189.05-.277.1L7.451 8.708a.8.8 0 0 0 .038-.251c0-.063-.013-.126-.013-.189zm4.876 8.507-5.177 3.556a1 1 0 0 0-.126-.075l1.546-11.674h.012l3.946 7.288a.96.96 0 0 0-.201.905zM6.383 7.502a.98.98 0 0 0-.83.955v.062l-3.455 2.048 5.378-7.702zm.352 1.91a.9.9 0 0 0 .352-.164l8.356 7.263a1.1 1.1 0 0 0-.063.352v.05l-9.31 3.845a.97.97 0 0 0-.604-.402zm8.896 8.117a.92.92 0 0 0 .503.289l.465 4.046a1.05 1.05 0 0 0-.452.452l-9.814-.955zm1.144.213a.96.96 0 0 0 .54-.867.9.9 0 0 0-.038-.25l4.738-3.255-4.8 8.33zm.251-14.35-9.889 4.31-.113-.075 1.257-5.39h.037c.34 0 .641-.176.817-.44l7.891 1.57zM1.935 11.612c0-.063-.013-.126-.013-.189l3.908-2.3c.076.076.164.151.264.202L4.825 20.243l-3.204-7.904c.188-.176.314-.44.314-.728"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/onstar.svg�����������������������������������0000664�0000000�0000000�00000001710�14753064456�0025130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0m-.049.763c6.233 0 11.304 5.066 11.304 11.294s-5.07 11.295-11.304 11.295C5.718 23.352.647 18.286.647 12.057.647 5.83 5.718.763 11.951.763m0 .287C5.877 1.05.936 5.988.936 12.057c0 6.07 4.941 11.008 11.015 11.008s11.016-4.938 11.016-11.008S18.025 1.05 11.951 1.05m4.73 3.25.582 1.7 1.8.064-1.44 1.078.495 1.729-1.472-1.034-1.494 1.004.53-1.717-1.418-1.108 1.8-.028zM7.99 7.11c2.892 0 4.967 2.155 4.967 4.82v.027c0 2.664-2.102 4.847-4.994 4.847s-4.967-2.156-4.967-4.82v-.027c0-2.665 2.102-4.848 4.994-4.848zm-.027 1.9c-1.66 0-2.812 1.313-2.812 2.92v.027c0 1.606 1.179 2.945 2.839 2.945s2.812-1.312 2.812-2.918v-.027c0-1.607-1.178-2.946-2.839-2.946zm9.976.322c1.54 0 2.437 1.018 2.437 2.665v4.646h-2.035V12.64c0-.964-.455-1.46-1.232-1.46s-1.272.496-1.272 1.46v4.003h-2.035V9.466h2.035v1.018c.469-.603 1.071-1.152 2.102-1.152"/></svg>��������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/opel.svg�������������������������������������0000664�0000000�0000000�00000000753�14753064456�0024567�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.291 4.57a7.46 7.46 0 0 0-7.338 5.006h.568a6.93 6.93 0 0 1 6.483-4.494 6.92 6.92 0 0 1 6.922 6.924c0 .116 0 .234-.01.351l.533.059c0-.134.01-.273.01-.4a7.46 7.46 0 0 0-7.168-7.446M.869 10.113 0 10.566l13.25 1.44 3.63-1.893H.87zm3.682 1.483v.41a7.46 7.46 0 0 0 14.498 2.441h-.57a6.92 6.92 0 0 1-6.475 4.487 6.93 6.93 0 0 1-6.92-6.928v-.352zm6.193.414-3.63 1.898h16.011l.873-.453v-.006zm13.254 1.44H24l-.002-.007z"/></svg>���������������������mkdocs-material-9.6.4/material/templates/.icons/simple/openaccess.svg�������������������������������0000664�0000000�0000000�00000001314�14753064456�0025745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.971 13.486a7.6 7.6 0 0 0-.54-1.043V6.415a6.38 6.38 0 0 0-1.88-4.535A6.37 6.37 0 0 0 12.017 0h-.002a6.37 6.37 0 0 0-4.536 1.878 6.38 6.38 0 0 0-1.88 4.537v.877h2.57v-.877c0-1.026.4-1.992 1.127-2.72a3.82 3.82 0 0 1 2.72-1.125 3.85 3.85 0 0 1 3.847 3.845v3.508A7.5 7.5 0 0 0 12 8.865a7.54 7.54 0 0 0-5.35 2.216 7.54 7.54 0 0 0-2.216 5.35 7.54 7.54 0 0 0 2.215 5.35A7.54 7.54 0 0 0 12 24a7.54 7.54 0 0 0 5.35-2.216 7.54 7.54 0 0 0 2.216-5.35c0-1.021-.2-2.012-.595-2.946zM12 21.428a5.003 5.003 0 0 1-4.997-4.996A5.003 5.003 0 0 1 12 11.435a5 5 0 0 1 4.997 4.997A5 5 0 0 1 12 21.428m2.145-4.973a2.12 2.12 0 1 1-4.24 0 2.12 2.12 0 0 1 4.24 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/openai.svg�����������������������������������0000664�0000000�0000000�00000002373�14753064456�0025103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.282 9.821a5.99 5.99 0 0 0-.516-4.91 6.05 6.05 0 0 0-6.51-2.9A6.065 6.065 0 0 0 4.981 4.18a5.99 5.99 0 0 0-3.998 2.9 6.05 6.05 0 0 0 .743 7.097 5.98 5.98 0 0 0 .51 4.911 6.05 6.05 0 0 0 6.515 2.9A5.99 5.99 0 0 0 13.26 24a6.06 6.06 0 0 0 5.772-4.206 6 6 0 0 0 3.997-2.9 6.06 6.06 0 0 0-.747-7.073zM13.26 22.43a4.48 4.48 0 0 1-2.876-1.04l.141-.081 4.779-2.758a.8.8 0 0 0 .392-.681v-6.737l2.02 1.168a.07.07 0 0 1 .038.052v5.583a4.504 4.504 0 0 1-4.494 4.494M3.6 18.304a4.47 4.47 0 0 1-.535-3.014l.142.085 4.783 2.759a.77.77 0 0 0 .78 0l5.843-3.369v2.332a.08.08 0 0 1-.033.062L9.74 19.95a4.5 4.5 0 0 1-6.14-1.646M2.34 7.896a4.5 4.5 0 0 1 2.366-1.973V11.6a.77.77 0 0 0 .388.677l5.815 3.354-2.02 1.168a.08.08 0 0 1-.071 0l-4.83-2.786A4.504 4.504 0 0 1 2.34 7.872zm16.597 3.855-5.833-3.387L15.119 7.2a.08.08 0 0 1 .071 0l4.83 2.791a4.494 4.494 0 0 1-.676 8.105v-5.678a.79.79 0 0 0-.407-.667zm2.01-3.023-.141-.085-4.774-2.782a.78.78 0 0 0-.785 0L9.409 9.23V6.897a.07.07 0 0 1 .028-.061l4.83-2.787a4.5 4.5 0 0 1 6.68 4.66zm-12.64 4.135-2.02-1.164a.08.08 0 0 1-.038-.057V6.075a4.5 4.5 0 0 1 7.375-3.453l-.142.08-4.778 2.758a.8.8 0 0 0-.393.681zm1.097-2.365 2.602-1.5 2.607 1.5v2.999l-2.597 1.5-2.607-1.5Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/openaigym.svg��������������������������������0000664�0000000�0000000�00000006566�14753064456�0025630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 9.736V9.72c0-.018-.009-.035-.009-.053-.008-.017-.008-.034-.017-.052 0-.009-.009-.009-.009-.017a.2.2 0 0 0-.026-.044v-.009c-.009-.017-.026-.026-.044-.043l-.008-.009c-.018-.009-.035-.026-.053-.035l-3.72-2.143V3.02c0-.018 0-.044-.008-.061V2.94a.1.1 0 0 0-.017-.052V2.88c-.01-.017-.018-.035-.027-.043 0-.01-.008-.01-.008-.01a.2.2 0 0 0-.035-.043c-.018-.008-.026-.026-.044-.034-.008 0-.008-.01-.017-.01l-.009-.008L16.055.476a.34.34 0 0 0-.34 0l-3.72 2.143L8.286.476a.34.34 0 0 0-.34 0L4.06 2.723c-.01 0-.01.01-.01.01-.008 0-.008.008-.017.008-.017.009-.026.026-.043.035a.2.2 0 0 0-.035.043l-.009.009c-.008.017-.017.026-.026.044v.008c-.009.018-.009.035-.017.052v.018c0 .017-.009.043-.009.06v4.296L.166 9.457c-.018.01-.035.026-.053.035l-.008.009-.044.043v.01c-.009.017-.017.025-.026.043 0 .008-.009.008-.009.017a.1.1 0 0 0-.017.052C0 9.684 0 9.701 0 9.72v4.521a.34.34 0 0 0 .166.296l3.72 2.143v4.295a.34.34 0 0 0 .165.296l3.885 2.248c.009.008.018.008.026.017 0 0 .009 0 .009.009.009 0 .017.008.026.008s.009 0 .018.01q.012-.002.026.008h.061a.4.4 0 0 0 .13-.026c.018-.009.026-.009.044-.018l3.72-2.143 3.72 2.143c.017.009.026.018.043.018a.4.4 0 0 0 .13.026h.062c.008 0 .017 0 .026-.009.008 0 .008 0 .017-.009.009 0 .018-.008.026-.008s.009 0 .009-.009c.009 0 .017-.009.026-.017l3.885-2.248a.34.34 0 0 0 .166-.296V16.68l3.72-2.143a.34.34 0 0 0 .165-.296V9.754c.009-.01.009-.018.009-.018M12.17 20.67s-.009 0-.009-.009c-.009-.008-.017-.008-.035-.017-.008 0-.017-.009-.026-.009s-.017-.009-.035-.009c-.008 0-.026-.008-.035-.008h-.069c-.009 0-.026 0-.035.008-.009 0-.017 0-.035.01-.009 0-.017.008-.026.008-.009.009-.017.009-.035.017 0 0-.009 0-.009.009l-3.37 1.951v-3.702l3.545-2.047 3.545 2.047v3.702zM4.4 7.793c.017-.017.025-.026.034-.026.009-.008.018-.008.026-.017l.026-.026q.016-.014.018-.026c.009-.01.009-.018.017-.026.009-.01.009-.018.018-.027.008-.008.008-.017.008-.034 0-.01.01-.018.01-.035 0-.009 0-.018.008-.035V3.603L7.77 5.46v4.094L4.225 11.6 1.02 9.745zm7.596-4.381 3.545 2.047V9.16l-3.38-1.951s-.009 0-.009-.009c-.008-.009-.017-.009-.034-.017-.01 0-.018-.009-.027-.009-.008 0-.017-.009-.034-.009-.01 0-.018-.008-.035-.008h-.07c-.009 0-.026 0-.035.008-.008 0-.017 0-.035.009-.008 0-.017.009-.026.009-.008.008-.026.008-.035.017 0 0-.008 0-.008.009L8.45 9.16v-3.7zm0 12.675L8.45 14.04V9.945l3.546-2.047 3.545 2.047v4.095zm-7.431-3.903 3.206-1.856v3.947q-.002.01.008.035c0 .008.009.017.009.034 0 .01.009.018.009.035.008.009.008.018.017.026.009.01.009.018.018.027.008.008.017.017.017.026l.026.026q.014.015.026.017c.009.009.018.018.026.018l.01.008 3.38 1.952-3.207 1.855-3.545-2.047zm11.325 6.15-3.206-1.855 3.38-1.952.009-.008c.008-.009.017-.018.026-.018.008-.008.017-.008.026-.017l.026-.026q.015-.014.017-.026c.01-.01.01-.018.018-.027.009-.008.009-.017.017-.026s.009-.017.009-.035c0-.008.009-.017.009-.034 0-.01 0-.018.008-.035v-3.947l3.206 1.856v4.094zm3.885-6.734-3.546-2.047V5.46l3.206-1.856V7.55c0 .008 0 .017.009.034 0 .01.009.018.009.035 0 .009.008.018.008.035.01.009.01.018.018.026s.008.018.017.026c.009.01.018.018.018.026q.012.014.026.027c.008.008.017.017.026.017q.013.015.026.017l.009.01 3.38 1.95zM15.89 1.164l3.205 1.856-3.205 1.855-3.206-1.855zm-7.78 0 3.206 1.856L8.11 4.866 4.905 3.02zM.68 10.337l3.205 1.856v3.702L.68 14.04zM7.77 22.62l-3.205-1.855v-3.703l3.206 1.856zm11.665-1.846-3.206 1.855v-3.702l3.206-1.856zm3.886-6.734-3.206 1.855v-3.702l3.206-1.856Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/openapiinitiative.svg������������������������0000664�0000000�0000000�00000006335�14753064456�0027353�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.039 0a2.96 2.96 0 0 0-2.65 4.274l-6.447 6.447a2.96 2.96 0 1 0 1.335 1.336l6.447-6.447A2.959 2.959 0 1 0 21.04 0zM10.628 2.745q-.108.001-.214.004-.107.002-.215.005a11 11 0 0 0-1.335.138l-.03.005-.185.033-.105.02a8 8 0 0 0-.289.062l-.032.008a10.7 10.7 0 0 0-2.55.95l-.155.089q-.094.052-.187.105-.07.039-.14.079H5.19l-.01.005-.036.02v.002l.111.184 3.15 5.23a4 4 0 0 1 .38-.202 4.3 4.3 0 0 1 1.628-.413q.107-.007.214-.008zm.428.01v6.333q.489.05.96.209l4.66-4.66q-.259-.181-.528-.347l-.026-.015q-.084-.052-.168-.1l-.098-.056-.099-.055-.171-.092-.027-.014a11 11 0 0 0-1.425-.617c-.69-.241-1.403-.41-2.128-.505l-.089-.012-.09-.01-.17-.019-.049-.004-.204-.017a6 6 0 0 0-.255-.015q-.046-.004-.093-.004M4.782 4.498a10 10 0 0 0-1.36 1.062l4.461 4.461.018.018q.073-.06.149-.116l-.011-.018zm-1.67 1.36q-.074.076-.147.154l-.149.155q-.494.536-.902 1.118l-.039.056a11 11 0 0 0-.216.326 10.6 10.6 0 0 0-1.65 5.276l-.006.215-.003.214h6.317c0-.072.007-.143.01-.214.005-.072.006-.144.013-.215a4.3 4.3 0 0 1 .952-2.3c.045-.055.096-.106.144-.16.048-.052.093-.107.144-.158zm16.255 1.464-4.663 4.663q.158.47.21.959h6.332l-.004-.094a12 12 0 0 0-.032-.456l-.005-.052-.026-.241v-.009l-.033-.24v-.009a11 11 0 0 0-.327-1.493l-.003-.01-.07-.228-.01-.03-.069-.204-.02-.055a6 6 0 0 0-.153-.405l-.093-.227-.063-.144-.037-.081-.08-.171-.024-.052-.096-.194-.014-.027-.112-.212-.004-.008a11 11 0 0 0-.604-.98m-4.43 6.05c0 .071-.006.142-.01.214q-.003.108-.012.214a4.3 4.3 0 0 1-.952 2.301c-.045.055-.096.107-.144.16s-.093.108-.144.159l4.467 4.467q.075-.078.148-.155.076-.078.148-.155.497-.538.905-1.122l.032-.046.098-.144.085-.13.04-.063a10.6 10.6 0 0 0 1.647-5.272q.004-.107.006-.214.003-.107.004-.214zM.01 13.8l.004.093.01.179.005.076.017.206.005.046q.01.115.024.228l.003.022.033.248q.109.758.327 1.497l.002.006q.034.116.071.23l.004.014.005.014a16 16 0 0 0 .153.439l.03.08.059.148.093.228.062.14.038.084.078.169.027.054a11 11 0 0 0 .225.441l.025.043 5.408-3.258.02-.012a4.3 4.3 0 0 1-.395-1.414h-.025zm.505 2.846-.206.058.002.005zm6.425-1.052-5.415 3.262q.125.207.259.406l.008.014.004.005.008.014h.001l.022.032.001.002v.001a11 11 0 0 0 .298.417l.006.008a10 10 0 0 0 .29.368l.033.04q.064.078.13.153l.057.065.112.127.064.069.029.031.083.09.035.035q.073.077.149.153L7.58 16.42a4 4 0 0 1-.285-.321 4.4 4.4 0 0 1-.356-.505zm6.416 1.111q-.075.06-.15.116l.011.018 3.257 5.407q.227-.148.446-.307.473-.348.914-.756l-4.46-4.46zm-5.457.003-.015.015-4.46 4.46.195.176q.033.03.065.058l.152.13.215.174.023.017.191.148.008.005q.403.3.834.564l.03.018.164.097.101.057a6 6 0 0 0 .27.148q.012.007.025.013.243.127.493.24l.158-.385 2.243-5.448.009-.02a4.3 4.3 0 0 1-.701-.467m4.951.353q-.092.054-.187.104a4.32 4.32 0 0 1-3.271.336c-.069-.02-.135-.047-.203-.071-.067-.024-.136-.044-.202-.072l-2.242 5.444-.088.213-.075.183v.001l.017.007.019.007.005.003q.079.03.159.06.1.04.2.077l.102.04c.702.247 1.43.42 2.168.518l.087.012.09.01.172.019a7 7 0 0 0 .252.022q.035 0 .071.003l.184.011.112.005a7 7 0 0 0 .358.007h.05a10.7 10.7 0 0 0 1.793-.15l.185-.034.105-.02.109-.023.18-.04.032-.008a10.7 10.7 0 0 0 2.55-.95q.078-.044.156-.089.094-.052.187-.105.065-.035.13-.073h.001l.002-.002.002-.001.002-.001.007-.004.042-.025-.11-.183-.11-.184zm3.262 5.414-.042.025zm-.055.033h-.002z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/openbadges.svg�������������������������������0000664�0000000�0000000�00000001457�14753064456�0025741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.43 18.584-8.265-4.749 1.078-.641.719-.411.719.41 1.796 1.027 1.437.821 1.797 1.027 1.438.822 1.078.616zm-3.234 1.873-8.24-4.774 1.797-1.027 8.24 4.75zm-3.209 1.848-8.24-4.748 1.797-1.027 8.24 4.749zM3.03 14.246l8.24-4.748v2.079l-.719.41-1.797 1.027-1.438.821-1.796 1.027-1.437.822-1.053.615v-2.054zm0-3.722 8.24-4.749v2.08l-8.24 4.723zm0-3.722 8.24-4.749v2.054L3.03 8.856zm9.677-4.749 1.797 1.027v9.523l-1.078-.616-.719-.41V2.052zm3.209 1.848 1.796 1.027v9.523l-1.797-1.027V3.901zm3.234 1.875 1.796 1.026v9.523l-1.796-1.027zm3.26.205-1.49-.822-1.796-1.026-1.412-.847-1.797-1.027-1.437-.822L12.68.411 11.962 0l-.719.411-9.651 5.57v12.012l.718.41L11.987 24l1.438-.822 1.797-1.026 1.437-.821 1.797-1.027 1.437-.821 1.797-1.027.718-.411Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/openbsd.svg����������������������������������0000664�0000000�0000000�00000036671�14753064456�0025272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.695 1.653c-.202.47-.146 1.02-.293 1.509-.034.112-.146.452-.308.429-.333-.048-.16-.688-.545-.7l.12.934c-.577.073-.498-.829-.733-1.195-.27-.423-.335.192-.317.38.011.122.036.242.05.363.026.21.032.393.005.603-.552-.007-.35-.733-.754-.844l.03.874c-.612-.005-.89-.557-1.159-1.025-.112-.196-.261-.574-.53-.453.126.544.423 1.064.454 1.63.007.145-.13.516-.333.448-.469-.158-.406-1.008-.796-1.231-.08-.045-.204-.006-.29-.002 0 .45.198.996.356 1.418.034.09.129.41-.069.403-.353-.01-.441-.695-.8-.615.044.185.153.335.215.513.037.109.106.219.126.332.044.247-.269.267-.432.22-.384-.114-.66-.428-.935-.703-.076-.076-.277-.344-.404-.222-.141.135.136.373.215.464.234.271.488.589.6.935.049.148.058.36-.09.462-.146.1-.384-.083-.502-.16-.362-.239-.721-.654-1.176-.664l-.107.271.29.392.752.845-.875-.362c.035.229.583.506.475.742-.064.14-.38.142-.505.124-.446-.064-.762-.396-1.177-.515-.366-.105-.298.18-.09.343q.107.086.211.177.187.161.362.336c.183.183.343.378.513.573l-.875-.03v.06l.845.392-.151.603c-.244 0-.442-.067-.664-.163-.151-.066-.31-.175-.482-.163-.206.014-.328.202-.19.377.206.263.62.412.883.617.1.078.247.212.133.345-.225.264-.832-.074-1.128.013v.06c.275.161.839.253 1 .549.128.231-.232.756-.487.736-.227-.019-.436-.275-.603-.41-.401-.322-.83-.7-1.298-.923-.801-.38-1.597.226-2.232.622.081.256.402-.017.603.029.271.061.477.313.651.513.84.968 1.543 2.064 1.857 3.319.083.33.224.725-.023 1.021-.066.08-.165.09-.238.155-.055.05-.052.118.023.141.138.043.34-.021.475-.054.443-.107.949-.346 1.15-.78.125-.271.169-.797.48-.905.068.29.394.673.363.965-.029.259-.302.56-.461.751-.057.068-.193.217-.112.315.082.097.25-.112.3-.16.229-.216.73-.558.865-.062.118.432-.261 1.13-.45 1.509-.054.105-.297.435-.202.553.11.135.338-.218.387-.282.19-.249.856-.987 1.21-.722.431.324.282.555.119.994-.046.123-.216.433-.1.55.111.114.258.01.315-.098.104-.197.383-.78.661-.631.175.093.441.251.543.425.158.272.02.815-.022 1.111-.024.17-.207.702-.055.825.14.113.254-.228.296-.312.149-.295.32-.597.54-.845.08-.089.192-.237.327-.212.7.131-.015.829.273 1.185.058.072.215.067.3.083l.362-.935c.184.07.455.095.591.248.114.128.137.344.17.506.092.454.142.896.084 1.357.057.042.148.138.225.088.097-.062.11-.315.143-.42.106-.332.269-.65.42-.965.099-.207.37-.427.565-.142.2.292.12.804.246 1.138.32-.158.355-.825.362-1.147l.415.061.25.513.45 1.297c.234-.09.16-.538.187-.754.035-.293.103-.882.318-1.1.086-.087.258-.095.37-.137.129.312.199.666.354.965.06.116.198.242.337.17.133-.068.128-.224.111-.35-.042-.313-.113-.62-.138-.936.598-.042.95.441 1.325.845.145.155.271.362.485.422l-.31-.905-.172-.845c.217-.09.676-.534.905-.47.34.097.6 1.046 1.023.823.18-.095.088-.257.003-.383-.126-.188-.506-.639-.465-.874.03-.175.324-.379.494-.377.391.006 1.071.304 1.297.618l.272-.03c-.04-.54-.85-.787-.966-1.328a.4.4 0 0 1 .004-.172c.086-.347.294-.195.51-.102.067.029.213.103.269.02.06-.091-.048-.212-.087-.289-.082-.156-.156-.337-.122-.513.282.074.455.242.694.4.056.038.18.131.251.08.075-.056-.036-.167-.071-.208-.106-.123-.432-.42-.4-.6.022-.122.227-.252.31-.335.276-.276.59-.556.815-.875h.03c.532.621 2.203.186 1.99-.754-.132.019-.256.123-.392.077-.594-.205-.45-1.157-1.116-1.163-.049-.62-.298-1.24-.599-1.78-.138-.247-.424-.473-.525-.725-.055-.14-.046-.36-.052-.512.349-.054.177-.407.05-.603-.142-.218-.292-.477-.475-.66-.226-.227-.562-.374-.533-.758.027-.357.642-.311.747-.633-.183.008-.363.053-.543.083-.449.075-.527-.076-.317-.475.183-.349.474-.613.73-.905.083-.093.336-.306.205-.441-.107-.112-.286.058-.377.119-.333.22-.705.384-1.086.502-.113.035-.448.166-.486-.035-.051-.272.463-.322.395-.628-.205.049-.61.374-.807.223-.238-.18.111-.643.149-.856.038-.216-.136-.224-.258-.09q-.063.074-.12.15c-.07.087-.126.17-.17.271-.494-.288.44-.623.265-.89-.063-.095-.179 0-.235.05-.117.102-.558.61-.654.237-.106-.412.108-.908.22-1.297.028-.102.159-.376.032-.449-.185-.106-.266.253-.31.359a2.3 2.3 0 0 1-.615.839c-.086.077-.232.225-.36.19-.187-.051-.188-.57-.182-.728.003-.075.045-.205-.028-.26-.096-.071-.147.072-.16.14-.048.222-.186.856-.515.44-.298-.376.163-1.157-.444-1.315l-.332 1.056c-.398-.087-.31-.656-.211-.966l-.181-.06a3 3 0 0 1-.112.362c-.16.451-.375.539-.541.03-.127-.388-.082-.807-.145-1.207-.025-.159-.04-.32-.198-.392m.03.905c.153.364-.008.82.237 1.176.25.364.716.168 1.02.397.108.081.022.256-.007.358-.1.347-.278.604-.465.905.655-.335.875-1.29.965-1.96h.03c-.026.596-.007 1.182 0 1.779.003.27-.037.582.272.633V4.46c.323.093.808.502 1.159.381.179-.061.342-.277.467-.411q.14-.152.244-.332h.03l-.12.965-.302-.06.663.473.261.226-.2.294-.875.636c.637-.094.958-.564 1.418-.935-.15.63-.491 1.262-.332 1.93h.03l.362-1.448c.274.13.37.476.633.633.383.228.919-.204 1.267-.331-.227.322-.57.548-.633.965l-.272-.12c.236.606.519 1.19.62 1.84.093.594-.024 1.183.016 1.78.02.275.133.517.179.784-.563.191-.666.98-1.207 1.236.043-.188.11-.377.11-.573 0-.14-.066-.282-.03-.422.073-.277.314-.508.412-.784.152-.43.05-.835-.009-1.267l.301.03-.758-1.177-.376-.573.139-.392c-.762.586-1.867 1.188-1.87 2.293l.271-.091.09.664-.422.06v.06c.353.1.722.149 1.056.306.244.114.514.265.682.479.56.71.112 1.818-.31 2.473-.213.33-.594.634-.734.996.382-.092.577-.457.792-.754.091-.127.17-.303.325-.362.24-.09.32.354.371.512.065.2.218.546.18.755-.071.401-.415.662-.34 1.116.166-.202.217-.604.482-.702.17-.062.347.095.513.12.36.053.73-.082.996-.326.285-.263.48-.686.408-1.083-.043-.24-.177-.476-.16-.724.012-.2.148-.362.22-.543.173-.427.152-.912-.257-1.189a.86.86 0 0 0-.362-.138c.033-.222.264-.706.53-.418.188.202.29.558.396.81.389.918.392 2.006-.163 2.865-.394.61-1.02 1.11-1.548 1.6l-.21-.604h-.061c-.07.36.185.772.332 1.086-.33-.075-.645-.415-.996-.362.099.17.748.572.242.754.003.148-.11.25-.2.362-.201.248-.454.618-.766.724l-.573-1.508h-.03c.084.661.314 1.305.61 1.9.154.307.403.611.506.935-.187-.159-.306-.413-.466-.603a6.3 6.3 0 0 0-.952-.892c-.227-.177-.45-.376-.754-.345.345.31.868.475.835 1.056-.01.165-.193.237-.322.296-.339.155-.67.322-1.026.438-.098.032-.279.12-.382.087-.11-.037-.097-.277-.109-.369-.037-.285.121-1.028-.172-1.146-.128 1.01.132 1.929.21 2.926h-.03c-.17-.737-.439-1.558-.838-2.202-.11-.177-.343-.597-.579-.543l.62 1.086.013.46-.452.08-1.297.033c.047-.373.13-.746.2-1.116.014-.081.074-.326-.078-.326-.14 0-.169.408-.189.507-.108.542-.204 1.106-.205 1.66h-.03c0-.913-.41-1.73-.784-2.535-.104.155.041.377.086.543.099.371.113.737.065 1.116-.612-.118-1.275-.278-1.84-.543.149-.357.576-.889.573-1.267-.554.556-.804 1.335-1.086 2.052h-.03l.12-1.448-.21-1.237c-.132.133-.06.399-.04.573.033.275.015.688-.188.9-.112.117-.226.014-.346-.034-.335-.136-.582-.36-.875-.564-.104-.072-.293-.15-.28-.302.032-.433.656-.638.672-1.026-.72.31-1.062 1.088-1.629 1.57.186-.785.782-1.703.634-2.535-.152.084-.145.295-.185.453a4.3 4.3 0 0 1-.388.965c-.4-.231-.72-.623-.983-.996-.073-.102-.233-.26-.235-.392-.002-.128.145-.274.225-.362.244-.265.54-.465.872-.603-.237-.147-.706.2-.965.272.175-.37.65-.732.513-1.177-.393.307-.66.97-.935 1.388h-.03l-.574-1.267.754.271c.023-.27-.36-.373-.573-.422.126-.328.476-.578.392-.965h-.06c-.087.28-.269.759-.573.844l-.09-.482h-.03c-.119.253.029.447-.04.687-.037.125-.217.106-.28.222-.085.158-.092.37-.164.539-.172.407-.5.706-.904.874l-.037-.54.459-.515-.483.361c-.062-.161-.203-.465-.12-.633.073-.145.254-.24.362-.362l-.483.241c-.163-.422.135-.3.302-.603-.122.07-.325.2-.471.133-.187-.085-.384-.64-.464-.827l.512-.09v-.03c-.242.03-.626.12-.663-.211h.633v-.03l-.712-.08-.194-.252-.421-.543a2 2 0 0 1 .935 0c-.368-.387-1.024.182-1.327-.453l.754-.15v-.03c-.234 0-.67.135-.874.028-.054-.028-.094-.075-.134-.12-.388-.438.48-.478.766-.44.55.076.975.452 1.358.833.194.193.473.538.754.595.278.055.51-.122.724-.263 0 .212-.022.422.15.573 0-.416.005-.857.07-1.267.023-.152.083-.352.263-.38.225-.034.531.309.693.44.002-.234-.175-.432-.319-.603-.396-.47-1.025-.914-1.58-1.177v-.03c.823.142 1.442.625 2.322.392v-.06l-1.026-.15c.043-.321.276-.734.203-1.057-.1-.44-.568-.644-.746-1.025.306.118.63.29.966.297.188.005.336-.098.512-.14.485-.113.766.123 1.086.446.088-.305-.15-.559-.334-.784-.186-.229-.35-.46-.57-.659-.267-.24-.662-.52-.815-.85.25.049.49.256.694.402.359.255.715.503 1.116.691.211.1.578.265.754.054l-.965-.362c.07-.101.17-.188.221-.302.138-.307-.104-.568-.191-.844.185.068.345.227.543.26.464.078.734-.47 1.086-.653L9.11 6.45c.201-.168.112-.494.078-.724-.099-.664-.493-1.251-.59-1.9h.03c.381.816.835 1.696 1.598 2.201l-.277-.363-.477-.723a1 1 0 0 0 .269-.142c.528-.423.078-1.012.002-1.517h.03c.065.155.14.314.235.453.441.638 1.023.536 1.696.482l-.18 1.328h.03c.089-.283.258-.516.318-.815.11-.544-.006-1.084-.017-1.629h.03c.048.322.179.63.282.936.162.482.293 1.01.653 1.387l-.331-1.357c.958-.001 1.219-.647 1.236-1.509m-.271 2.082-.483 2.172c.372-.227.45-1.053.483-1.448h.03c.065.348.096.696.238 1.025.056.13.117.305.275.302l-.386-1.357zm-2.956.392c.006.771.387 1.473.24 2.262.146-.088.15-.295.152-.452.004-.365-.06-.723-.06-1.086h.03c.105.364.39 1.09.814 1.146-.05-.196-.211-.344-.319-.513-.238-.374-.472-1.13-.857-1.357m6.184.332c-.336.526-.736 1.245-1.237 1.629v.03c.38-.068.791-.549.905-.905h.03c-.005.536-.251 1.105-.03 1.629h.03c.16-.543.077-1.184.215-1.75.043-.177.203-.473.087-.633M14.69 6.57c-.178.402-.265.775-.634 1.056v.06c.265.07.45-.262.513-.482h.03c.026.203.05.624.272.694l-.149-.694zm-6.456.03c.065.743 1.063 1.244.935 2.052.16-.094.119-.269.065-.423-.112-.317-.298-.596-.427-.905.289.264.716.562 1.117.393l-.633-.263zm4.163.242c-.091.3-.347.886-.241 1.176h.06l.211-.724h.03c.075.273.153.687.483.724l-.483-1.176zm-2.021.754.15 1.267h.061l-.03-.905c.197.137.463.474.724.362-.1-.11-.247-.129-.362-.222-.187-.151-.286-.482-.543-.502m6.636.18c-.318.32-.584.539-1.025.664v.061c.261.075.514-.07.724-.211-.035.177-.26.64-.09.754l.289-.875zm1.539.624c.138.01.242.186.323.282.239.279.508.575.612.935-.697-.144-1.452-.045-2.142.12.154-.405.446-.834.785-1.1.115-.092.258-.25.422-.237m-6.697.07-.181.936c.151-.115.187-.481.211-.664l.272.302a1.06 1.06 0 0 0-.302-.573zm2.956.091-.573.573.543-.392.09.543c.106-.154.05-.578-.06-.724m-6.334.078a.3.3 0 0 0-.06.013v.03c.253.256.463.61.621.935.088.179.063.376.253.483-.015-.353-.166-.62-.302-.935.214.124.5.31.754.24v-.06c-.342-.152-.607-.281-.905-.518-.11-.088-.224-.2-.361-.188m-2.082.284c.029.255.237.35.422.49a3.5 3.5 0 0 1 .687.657c.127.166.205.452.37.573-.036-.444-.298-.966-.725-1.147v-.03c.434.084.867.246 1.297.06v-.06l-.513-.02zm14.027.09c.296.115.613.522.724.815l-.664-.09zm-7.3.03-.271.514.301-.332.181.302zm5.95.712a.5.5 0 0 1 .172.031c.365.143.267.9.19 1.188-.061.234-.17.495-.4.604-.167-.3-.415-.496-.724-.64-.154-.073-.41-.101-.517-.243-.103-.137-.208-.646-.068-.78.152-.147.57-.117.766-.117.163 0 .392-.051.581-.043m-3.054.013-.513.392.453-.241-.06.362c.128-.09.175-.371.12-.513m4.404.18c.136.011.37-.002.47.1.331.34.145 1.25-.259 1.44l-.12-.695q.048.002.09-.003v.003h.09l-.04-.013c.356-.085.295-.577-.051-.59l-.09-.03.049.032-.018.001v-.003h-.06l.01.011a.4.4 0 0 0-.071.02zm-1.538.122c-.062.063-.152.11-.198.187-.318.545.886.559.546-.03-.039-.068-.108-.111-.167-.157l-.121.06h-.06zm-6.335.12c0 .154-.03.31.12.392v-.301l.363.12zm-1.676.086q-.07.004-.134.005c.053.194.137.36.302.482l-.181-.392.362.03c-.07-.127-.211-.131-.349-.125m3.685.011c-.09.01-.168.168-.169.325l.15-.271.182.12c-.05-.132-.109-.18-.163-.174m-4.845.084-.513.09.423.513-.241-.422.361-.06zm-2.655.42c-.307.013-.66.365-.904.515v.06l.875.302c-.018-.229-.315-.297-.513-.331l.603-.544a.4.4 0 0 0-.06-.002zm1.6.063-1.237.332v.06l.663.238.393.275c-.043-.32-.383-.375-.604-.543.28-.053.66-.058.785-.362m3.107.332c-.129.02-.23.12-.091.21zm.995.18-.03.212c.094-.056.11-.105.09-.211zm1.357 0c-.117.035-.214.118-.09.212zm1.117.302-.302.09v.121zm1.146.03v.362c.113-.11.113-.25 0-.362m4.272.179c.425.004.846.395.75.847-.062.29-.242.605-.528.718-.149.06-.486.04-.498-.175-.01-.2.388-.478.468-.694-.558.427-.9.79-1.659.694v-.03c.447-.331.634-.895 1.059-1.224a.65.65 0 0 1 .408-.136m-9.943.032c-.146.076-.235.236-.272.393l.362.09-.2-.193zm-4.585.061-1.147.603c.04.225.262.104.423.093.23-.015.657.06.784.27l.211-.03c-.054-.342-.546-.342-.814-.363.197-.2.48-.259.543-.573m5.822.241-.332.423.422.15-.302-.18c.063-.132.31-.247.212-.393m-2.625.09-.362.333c.142.047.468.233.573.09l-.392-.15zm7.813 0 .422.333v.06l-.392.211a.94.94 0 0 0 .543-.211.88.88 0 0 0-.573-.392zm-9.683.121c-.183.41-.464.743-.784 1.056-.184.179-.471.346-.543.603L7.45 13.8l.694-.14c-.414-.296-1.14.033-1.539.21.275-.55.813-.769.935-1.418l-.03-.03zm5.701.03c-.13.043-.146.149-.18.272l.18.03zm1.237.212.03.332a.5.5 0 0 0 .272-.332l-.212.15zm-4.193.422c-.13.038-.2.131-.06.211zm5.34.181-.031.422-.271-.18c.028.182.156.27.332.3l.03-.542zm-6.758.03c-.22.069-.596.692-.694.905.2-.008.895.018.996-.12l-.664-.091zm3.7.059c-.166.01-.327.105-.502.105-.507 0-1.34-.252-1.775.092-.396.314-.42.734-.669 1.132-.121.194-.336.325-.512.465-.065.052-.184.127-.159.227.03.122.238.187.34.233.228.105.477.187.724.238.131.027.328.022.44.103.204.148.135.653.163.876.227-.13.524-.52.633-.755-.241.073-.347.31-.513.483l-.09-.633c.705-.062 1.015-.833 1.43-1.296.253-.282.57-.405.893-.575-.19-.227-.455.013-.634.15-.479.37-.755.816-1.176 1.238l.241-.633h-.03c-.131.314-.288.65-.603.814l.12-.422h-.03c-.127.303-.27.452-.603.452l.301-.694h-.03l-.392.664-.12-.03.301-.573h-.03c-.152.244-.313.59-.633.512l.27-.512c-.15.118-.216.4-.394.471-.081.032-.235-.027-.202-.135.042-.14.272-.278.363-.397.31-.405.56-1.067 1.018-1.316.376-.205.947.054 1.358.05.235-.004.503-.084.573-.333a.4.4 0 0 0-.072-.001zm-7.591.092-.03.181.12-.181zm14.875.029c.228.004.48.037.61.214.133.18.101.427.17.632.052-.216.046-1.024.477-.57.349.367.256 1.162-.087 1.502-.216.213-.735.343-.992.144-.393-.303-.494-.926-.608-1.378-.027-.109-.154-.36-.084-.461.058-.086.209-.08.3-.082q.099-.001.214-.001m2.65.182c.569.103.615.907 1.117 1.147v.06c-.285.143-.38-.002-.573-.211l.211.392c-.233-.036-.283-.262-.422-.423l.21.453c-.346 0-.493-.057-.633-.392h-.03l.06.271-.214-.152.114-.39zm-4.735.03c-.123.036-.188.105-.09.212zm-4.163.242.332.362.15-.362-.15.241zm3.047 0-.03.452-.302-.18c-.017.198.288.424.453.512l-.06-.784zm-8.175.512c-.094.452-.417.859-.707 1.207-.138.166-.35.333-.41.543.5-.144 1.063-.652 1.6-.603-.138-.268-.783.103-1.026.15.196-.29.463-.542.59-.874.052-.14.086-.327-.047-.423m6.998.272c-.23.036-.218.264-.271.452-.128-.127-.258-.303-.452-.271l.573.694zm-2.805.03-.302.272-.03-.151h-.09l.03.392c.176-.03.358-.347.392-.513m.815.483-.151.392h-.03l-.242-.332.211.694h.03c.08-.202.365-.572.182-.754m3.348.18-.09.031.18.995c-.192-.168-.785-.942-1.025-.663.555.177.786.825 1.267 1.116l-.15-.573zm1.508.242c-.153.374.22.775.362 1.116-.392-.202-.74-.539-1.207-.543v.12c.672.06 1.03.747 1.569 1.057-.005-.563-.488-1.21-.664-1.75zm-6.123.453-.212.03c.072.169.197.306.256.482.065.196.023.466.227.573.095-.212.327-.557.271-.784-.17.085-.252.268-.27.453h-.031zm-2.806.03c0 .592-.08 1.148-.241 1.72.21.007.32-.211.433-.363.225-.299.45-.628.804-.784v-.03c-.359-.047-.807.49-.935.784h-.03c.106-.41.2-.924.03-1.327zm5.31.03c-.244.093-.182.42-.182.633l-.693-.482c.038.123.136.16.228.245.18.167.337.557.586.6zm1.538.573c-.213.377.097 1.154.15 1.569h-.03c-.168-.355-.492-.649-.754-.935-.037-.04-.228-.301-.296-.192-.071.114.278.385.343.463a6 6 0 0 1 .642.935c.105.189.197.44.397.543-.15-.778-.39-1.586-.392-2.383zm-10.045.302c.223.066.35.219.362.452l-.694.483zm5.007.24-.03.031c.147.405.293.742.364 1.177.034.202.013.465.179.603.17-.322.23-.695.385-1.026.09-.19.234-.356.188-.573-.29.143-.461.787-.543 1.086-.15-.399-.104-1.092-.543-1.297zm2.051.303c.341.677.594 1.314.785 2.05.212-.118.183-.329.18-.542-.005-.497.186-.99.152-1.478-.143.048-.168.194-.193.332-.06.329-.06.669-.14.995-.163-.38-.293-1.279-.784-1.357m6.365.24.453.665-.664-.302zM8.657 19.18c.647.057.205.652-.06.935zm8.296.724.272.845c-.224-.157-.488-.414-.604-.664zm-5.502.455.344.058-.272.965h-.03l-.06-.754zm2.85.174c.062 0 .121.013.169.053.163.138-.067.805-.141.977l-.332-.965c.086-.022.2-.063.304-.065"/></svg>�����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/openbugbounty.svg����������������������������0000664�0000000�0000000�00000000746�14753064456�0026532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.092 2.443a1.388 1.388 0 0 0-1.428 1.611c.42 2.567 2.11 4.115 3.58 4.998a14 14 0 0 0 .4 2.926H6.52a1.388 1.388 0 0 0 0 2.777h5.155c.39.767.85 1.475 1.37 2.108-1.816 1.36-3.516 3.734-4.34 4.983a1.388 1.388 0 1 0 2.316 1.531c1.376-2.08 3.15-4.046 4.09-4.604a8.2 8.2 0 0 0 3.757 1.416V6.492h-7.484c-.867-.588-1.753-1.506-1.979-2.886a1.39 1.39 0 0 0-1.313-1.163M18.859 0c-2.971 0-5.501 1.967-6.577 4.765h6.577Z"/></svg>��������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/opencollective.svg���������������������������0000664�0000000�0000000�00000000551�14753064456�0026637�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12c2.54 0 4.894-.79 6.834-2.135l-3.107-3.109a7.715 7.715 0 1 1 0-13.512l3.107-3.109A11.94 11.94 0 0 0 12 0m9.865 5.166-3.109 3.107A7.7 7.7 0 0 1 19.715 12a7.7 7.7 0 0 1-.959 3.727l3.109 3.107A11.94 11.94 0 0 0 24 12c0-2.54-.79-4.894-2.135-6.834"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/opencontainersinitiative.svg�����������������0000664�0000000�0000000�00000000370�14753064456�0030740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm20.547 20.431H3.448V3.573h17.104V20.43zm-5.155-9.979h3.436v8.255h-3.436zm0-5.16h3.436v3.436h-3.436zm-6.789 9.976V8.732h5.074v-3.44H5.164v13.415h8.513v-3.44Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/opencv.svg�����������������������������������0000664�0000000�0000000�00000001151�14753064456�0025113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.9.853a5.73 5.73 0 0 0-2.91 10.665l1.641-2.785a.154.154 0 0 0-.05-.204 2.35 2.35 0 1 1 2.635 0 .154.154 0 0 0-.049.204l1.642 2.785A5.73 5.73 0 0 0 11.899.852M5.73 11.689a5.73 5.73 0 1 0 0 11.458c3.179 0 5.807-2.699 5.727-5.876H8.23a.155.155 0 0 0-.152.157c-.008 1.266-1.064 2.34-2.35 2.34a2.35 2.35 0 1 1 .955-4.498.154.154 0 0 0 .196-.06l1.646-2.793a5.7 5.7 0 0 0-2.797-.728m15.442.761-1.637 2.788a.154.154 0 0 0 .05.205 2.35 2.35 0 0 1-1.31 4.3 2.35 2.35 0 0 1-1.325-4.295.154.154 0 0 0 .049-.205l-1.646-2.782a5.73 5.73 0 1 0 5.82-.01"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/openfaas.svg���������������������������������0000664�0000000�0000000�00000002102�14753064456�0025412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.304 0A4.31 4.31 0 0 0 0 4.304v15.391A4.31 4.31 0 0 0 4.304 24h15.392A4.31 4.31 0 0 0 24 19.695V4.305A4.31 4.31 0 0 0 19.695 0zm-.006.776h15.398a3.53 3.53 0 0 1 3.528 3.528v15.391q0 .308-.054.61c-1.234-.015-1.858-.412-2.514-.834-.708-.454-1.51-.97-3.04-.97s-2.33.516-3.038.97c-.17.11-.338.217-.514.317a43 43 0 0 1-.775-1.907.8.8 0 0 1 .01-.739c.3-.489 1.23-.691 1.572-.729.361-.027 5.97-.555 6.306-7.153a.42.42 0 0 0-.72-.317c-.457.464-1.886 1.634-3 1.47a11 11 0 0 1-.693-.127c-1.425-.293-3.339-.685-4.972 1.72-1.633-2.406-3.548-2.012-4.972-1.72-.248.05-.48.098-.697.128-1.108.162-2.538-1.007-2.997-1.471a.42.42 0 0 0-.72.316c.336 6.58 5.914 7.124 6.304 7.153.086.012 1.1.16 1.48.717.15.237.184.529.092.793a19 19 0 0 1-.552 1.747q-.16-.097-.32-.198c-.708-.454-1.51-.97-3.039-.97s-2.332.516-3.04.97c-.654.42-1.277.816-2.5.834a3.5 3.5 0 0 1-.055-.61V4.305A3.53 3.53 0 0 1 4.298.775zm4.474 2.108-4.74 1.429 1.293 4.288 3.165-.955-.19 1.229 4.894.757.684-4.426-4.62-.715zm10.494.813-4.938.348.315 4.466 4.938-.347Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/opengl.svg�����������������������������������0000664�0000000�0000000�00000006716�14753064456�0025121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.607 13.88c1.32 1.197 3.862 2.008 6.781 2.008 2.375 0 4.503-.481 5.923-1.325-1.555 1.413-4.328 2.41-7.495 2.41C3.947 16.972 0 14.745 0 11.999s3.948-4.973 8.818-4.972c3.179.001 5.96 1.001 7.511 2.425-1.421-.85-3.558-1.34-5.941-1.34-2.828 0-5.303.761-6.655 1.897l.028-.013a2.1 2.1 0 0 1 .885-.179q.504 0 .885.179.38.18.635.48.256.301.383.691.129.39.128.812 0 .423-.128.813-.127.39-.383.691-.255.3-.635.477a2.1 2.1 0 0 1-.885.176 2.1 2.1 0 0 1-.885-.176 2 2 0 0 1-.154-.08m-.347-1.283q.084.304.262.547c.178.243.271.292.458.391q.279.147.666.147t.666-.147q.28-.148.458-.391c.178-.243.206-.344.261-.547a2.3 2.3 0 0 0 0-1.232q-.082-.304-.261-.547c-.179-.243-.272-.293-.458-.391s-.408-.148-.666-.148-.48.05-.666.148q-.28.148-.458.391a1.3 1.3 0 0 0-.262.547 2.33 2.33 0 0 0 0 1.232m4.254-1.183v.356h.009a.65.65 0 0 1 .344-.318 1.3 1.3 0 0 1 .515-.099q.313 0 .544.112.232.111.385.302.154.191.232.441.078.249.078.529c0 .28-.025.363-.075.529a1.2 1.2 0 0 1-.229.435 1.1 1.1 0 0 1-.386.293 1.3 1.3 0 0 1-.539.107q-.099 0-.221-.02a1.3 1.3 0 0 1-.242-.067 1 1 0 0 1-.227-.125.7.7 0 0 1-.179-.196h-.009v1.359h-.446v-3.638zm1.585.936a1 1 0 0 0-.151-.313.7.7 0 0 0-.26-.219.8.8 0 0 0-.371-.081.77.77 0 0 0-.379.086.8.8 0 0 0-.255.226 1 1 0 0 0-.143.318 1.5 1.5 0 0 0 .003.735q.046.181.148.319a.76.76 0 0 0 .262.221q.162.084.39.084t.382-.087a.7.7 0 0 0 .246-.229 1 1 0 0 0 .135-.325q.042-.183.042-.377a1.3 1.3 0 0 0-.049-.358m2.799 1.527q-.302.224-.761.224-.324 0-.561-.102a1.1 1.1 0 0 1-.642-.723 2 2 0 0 1-.091-.554q0-.3.094-.55.093-.25.263-.433c.17-.183.248-.217.402-.285q.232-.1.51-.101.36 0 .598.145.237.145.381.37.144.224.198.489t.045.505h-2.018q-.006.172.041.328a.75.75 0 0 0 .151.274.75.75 0 0 0 .266.191.94.94 0 0 0 .38.071.8.8 0 0 0 .461-.128q.179-.127.237-.387h.438q-.089.442-.392.666m-.108-1.688a.7.7 0 0 0-.161-.237.8.8 0 0 0-.239-.157.8.8 0 0 0-.304-.059.8.8 0 0 0-.31.059.7.7 0 0 0-.237.16.8.8 0 0 0-.156.236.9.9 0 0 0-.067.287h1.545a.9.9 0 0 0-.071-.289m1.259-.775v.418h.009q.277-.48.88-.479.267 0 .445.071c.178.071.215.114.288.199a.7.7 0 0 1 .155.303q.044.176.044.39v1.733h-.446v-1.783q0-.244-.147-.387a.55.55 0 0 0-.402-.143.9.9 0 0 0-.353.062.65.65 0 0 0-.248.173.8.8 0 0 0-.149.262q-.05.15-.049.328v1.487h-.447v-2.634zm4.908 2.606a1.6 1.6 0 0 1-.611.125q-.486 0-.875-.166c-.389-.166-.477-.262-.655-.456a2 2 0 0 1-.409-.682 2.5 2.5 0 0 1-.142-.844q0-.465.142-.862a2.1 2.1 0 0 1 .408-.694q.266-.296.654-.464.388-.17.875-.169.325 0 .631.096.305.096.551.282.247.187.406.459.16.273.196.626h-.889q-.083-.347-.32-.521a.95.95 0 0 0-.575-.174q-.315 0-.534.119a.8.8 0 0 0-.356.319q-.136.201-.198.456-.063.255-.063.528 0 .262.063.508.062.247.199.444a1 1 0 0 0 .356.316q.219.12.534.119.463 0 .715-.228.253-.228.294-.661h-.936v-.681h1.776v2.237h-.591l-.095-.47a1.4 1.4 0 0 1-.551.438m2.746-4.107v3.368h2.063v.768h-2.992V9.913zM24 13.667q0 .104-.052.194a.39.39 0 0 1-.336.194.39.39 0 0 1-.336-.194.4.4 0 0 1-.052-.194.39.39 0 0 1 .194-.336.4.4 0 0 1 .194-.052.39.39 0 0 1 .336.194q.052.09.052.194m-.075 0a.3.3 0 0 0-.092-.221.3.3 0 0 0-.221-.092.3.3 0 0 0-.221.092.3.3 0 0 0-.092.221q0 .13.092.221c.092.091.135.092.221.092s.16-.031.221-.092a.3.3 0 0 0 .092-.221m-.489-.207h.186q.078 0 .114.032a.11.11 0 0 1 .035.085q0 .04-.027.072a.16.16 0 0 1-.085.044.1.1 0 0 1 .035.019q.017.015.033.042l.067.12h-.122a1 1 0 0 0-.079-.141q-.021-.023-.041-.023l-.013.001v.163h-.103zm.103.176h.045q.045 0 .063-.015a.05.05 0 0 0 .018-.037.05.05 0 0 0-.017-.038q-.018-.014-.06-.014h-.049z"/></svg>��������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/openhab.svg����������������������������������0000664�0000000�0000000�00000001033�14753064456�0025234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 9.103-9.76 9.768c-.376-.553-.725-1.123-.998-1.738l9.39-9.397L12 6.368l1.368 1.368 6.931 6.931-.01.035-.136.403-.156.393-.174.384-.192.374-.175.304zM12 0C5.39 0 0 5.39 0 12c0 1.306.211 2.563.6 3.741l.893-.893.668-.67A10 10 0 0 1 1.922 12C1.922 6.45 6.45 1.922 12 1.922S22.078 6.449 22.078 12 17.551 22.078 12 22.078a10.06 10.06 0 0 1-7.698-3.588l-.012.012-.309.309-.308.309-.308.308-.424.425C5.144 22.39 8.39 24 12.001 24 18.61 24 24 18.61 24 12S18.61 0 12 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/openid.svg�����������������������������������0000664�0000000�0000000�00000000530�14753064456�0025077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.54.889-3.63 1.773v18.17c-4.15-.52-7.27-2.78-7.27-5.5 0-2.58 2.8-4.75 6.63-5.41v-2.31C4.42 8.322 0 11.502 0 15.332c0 3.96 4.74 7.24 10.91 7.78l3.63-1.71zm.64 6.724v2.31c1.43.25 2.71.7 3.76 1.31l-1.97 1.11 7.03 1.53-.5-5.21-1.87 1.06c-1.74-1.06-3.96-1.81-6.45-2.11"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/openjdk.svg����������������������������������0000664�0000000�0000000�00000003152�14753064456�0025256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.915 0 11.7.215C9.515 2.4 7.47 6.39 6.046 10.483c-1.064 1.024-3.633 2.81-3.711 3.551-.093.87 1.746 2.611 1.55 3.235-.198.625-1.304 1.408-1.014 1.939.1.188.823.011 1.277-.491a13.4 13.4 0 0 0-.017 2.14c.076.906.27 1.668.643 2.232.372.563.956.911 1.667.911.397 0 .727-.114 1.024-.264.298-.149.571-.33.91-.5.68-.34 1.634-.666 3.53-.604 1.903.062 2.872.39 3.559.704s1.15.664 1.925.664c.767 0 1.395-.336 1.807-.9.412-.563.631-1.33.72-2.24.06-.623.055-1.32 0-2.066.454.45 1.117.604 1.213.424.29-.53-.816-1.314-1.013-1.937-.198-.624 1.642-2.366 1.549-3.236-.08-.748-2.707-2.568-3.748-3.586C16.428 6.374 14.308 2.394 12.13.215zm.175 6.038a2.95 2.95 0 0 1 2.943 2.942 2.95 2.95 0 0 1-2.943 2.943A2.95 2.95 0 0 1 9.148 8.98a2.95 2.95 0 0 1 2.942-2.942M8.685 7.983a3.5 3.5 0 0 0-.145.997c0 1.951 1.6 3.55 3.55 3.55s3.55-1.598 3.55-3.55q-.002-.495-.132-.951.502.143.915.336a43 43 0 0 1 2.042 5.829c.678 2.545 1.01 4.92.846 6.607-.082.844-.29 1.51-.606 1.94-.315.431-.713.651-1.315.651-.593 0-.932-.27-1.673-.61-.741-.338-1.825-.694-3.792-.758-1.974-.064-3.073.293-3.821.669-.375.188-.659.373-.911.5s-.466.2-.752.2c-.53 0-.876-.209-1.16-.64-.285-.43-.474-1.101-.545-1.948-.141-1.693.176-4.069.823-6.614a43 43 0 0 1 1.934-5.783c.348-.167.749-.31 1.192-.425m-3.382 4.362a.2.2 0 0 1 .13.031c-.166.56-.323 1.116-.463 1.665a34 34 0 0 0-.547 2.555 4 4 0 0 0-.2-.39c-.58-1.012-.914-1.642-1.16-2.08.315-.24 1.679-1.755 2.24-1.781m13.394.01c.562.027 1.926 1.543 2.24 1.783-.246.438-.58 1.068-1.16 2.08a4 4 0 0 0-.163.309 32 32 0 0 0-.562-2.49 41 41 0 0 0-.482-1.652.2.2 0 0 1 .127-.03"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/openjsfoundation.svg�������������������������0000664�0000000�0000000�00000001724�14753064456�0027214�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.992 0 1.603 6v12L12 24l10.397-5.992V6zM10.97 1.534 8.458 5.878H3.443l7.526-4.344M8.046 6.595 6.87 8.634 3.343 6.595zM7.13 9.603 11.275 12 7.13 14.397 5.748 12zm-.611-.351L5.343 11.29 2.985 7.214zm-4.1-1.595L4.932 12 2.42 16.343zm2.916 5.06 1.175 2.039-3.526 2.038zm1.535 2.648 1.176 2.039H3.343zm-3.427 2.756h5.015l2.511 4.344zM11.64 22.2l-2.35-4.078h2.351V22.2m0-4.794h-2.77l-1.383-2.397 4.145-2.397v4.794zm0-6.023L7.496 8.985l1.382-2.397h2.763v4.794m0-5.504H9.29l2.351-4.076zm5.832 3.374L21 7.214l-2.351 4.076zM18.237 12l-1.382 2.397L12.71 12l4.145-2.397zm-1.122-3.366L15.94 6.595h4.702zm3.428-2.756h-5.015l-2.504-4.344zm-8.19-4.076 2.35 4.076h-2.351zm0 4.793h2.763l1.382 2.397-4.145 2.397zm0 6.023 4.145 2.397-1.382 2.39h-2.763zm0 5.504h2.351l-2.351 4.076zm.672 4.344 2.504-4.344h5.015zm2.917-5.061 1.175-2.039 3.527 2.039zm1.534-2.657 1.176-2.038L21 16.786zm4.1 1.595L19.06 12l2.511-4.343v8.687"/></svg>��������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/openlayers.svg�������������������������������0000664�0000000�0000000�00000000663�14753064456�0026011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.7 13.08a3.5 3.5 0 0 1-1.119 1.619l-7.426 6.196a5.14 5.14 0 0 1-6.317 0L1.412 14.7a3.6 3.6 0 0 1-1.12-1.62 3.3 3.3 0 0 0 1.12 3.639l7.426 6.196a5.14 5.14 0 0 0 6.317 0l7.426-6.196a3.3 3.3 0 0 0 1.12-3.639M8.838 1.086a5.14 5.14 0 0 1 6.317 0l7.426 6.196a3.298 3.298 0 0 1 0 5.258l-7.426 6.187a5.14 5.14 0 0 1-6.317 0L1.412 12.53a3.298 3.298 0 0 1 0-5.248z"/></svg>�����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/openmediavault.svg���������������������������0000664�0000000�0000000�00000002225�14753064456�0026641�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.945 1.045A.947.947 0 0 0 0 1.988v20.024c0 .534.436.943.945.943h22.11a.944.944 0 0 0 .945-.943V1.988a.94.94 0 0 0-.945-.943Zm.118 1.064h21.875v19.784H1.063ZM3.53 4.385c-.198 0-.361.149-.361.334v3.699c0 .185.162.334.361.334h16.94c.198 0 .36-.15.36-.334v-3.7c0-.184-.161-.333-.36-.333zm2.057.886a1.3 1.3 0 0 1 1.297 1.297 1.3 1.3 0 0 1-1.297 1.3 1.3 1.3 0 0 1-1.299-1.3 1.3 1.3 0 0 1 1.299-1.297m-.002.62a.68.68 0 0 0-.676.677.68.68 0 0 0 .678.678.68.68 0 0 0 .678-.678.68.68 0 0 0-.678-.677ZM3.53 9.816c-.198 0-.361.15-.361.334v3.702c0 .184.162.332.361.332h16.94c.198 0 .36-.15.36-.334v-3.7c0-.184-.161-.334-.36-.334zm2.057.887A1.3 1.3 0 0 1 6.885 12a1.3 1.3 0 0 1-1.297 1.299A1.3 1.3 0 0 1 4.289 12a1.3 1.3 0 0 1 1.299-1.297m-.002.62A.68.68 0 0 0 4.91 12a.68.68 0 0 0 .678.68.68.68 0 0 0 0-1.358ZM3.53 15.247c-.198 0-.361.15-.361.334v3.701c0 .185.162.332.361.332h16.94c.198 0 .36-.15.36-.334v-3.699c0-.184-.161-.334-.36-.334zm2.057.887a1.3 1.3 0 0 1 1.297 1.297 1.3 1.3 0 0 1-1.297 1.298 1.3 1.3 0 0 1-1.299-1.298 1.3 1.3 0 0 1 1.299-1.297m-.002.619a.68.68 0 0 0 .002 1.358.68.68 0 0 0 0-1.358Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/openmined.svg��������������������������������0000664�0000000�0000000�00000000605�14753064456�0025602�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a1.43 1.43 0 0 0-1.25.725L7.082 7.082.725 10.75a1.44 1.44 0 0 0 0 2.5l6.357 3.668 3.668 6.357a1.44 1.44 0 0 0 2.5 0l3.668-6.357 6.357-3.668c.967-.544.967-1.945 0-2.5l-6.357-3.668L13.25.725A1.43 1.43 0 0 0 12 0m.006 4.237 7.757 7.769-7.769 7.757-7.757-7.757zm-.012 3.112-4.656 4.657 4.656 4.656 4.657-4.656z"/></svg>���������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/opennebula.svg�������������������������������0000664�0000000�0000000�00000002130�14753064456�0025747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.458 20.15v3.453s-.007.206-.087.283a.38.38 0 0 1-.294.113c-3.859-.005-7.718-.01-11.577-.003-1.576-.005-3.25-.173-4.532-1.117-.074-.08-.485-.289-.188-.259a92 92 0 0 0 14.367-1.92 92 92 0 0 0 2.31-.55zm-18.186.814c.206.302.36.766.71.898 5.88-.29 11.76-1.083 17.476-2.536v-3.391c-2.437 1.16-4.983 2.097-7.558 2.87a65 65 0 0 1-10.628 2.16zm-.66-1.886c.06.387.158.751.299 1.127 6.167-.726 12.276-2.236 17.925-4.864q.31-.148.62-.298v-3.278c-4.392 2.987-9.392 4.986-14.503 6.329-1.438.363-2.876.74-4.341.984m10.85-6.692c-3.178 1.803-6.578 3.195-10.067 4.238-.257.14-.734.086-.732.469a5.2 5.2 0 0 0-.12 1.18c5.668-1.085 11.252-2.89 16.283-5.793a34 34 0 0 0 2.632-1.685V5.899c-2.213 2.657-5.019 4.774-7.997 6.487zM20.905.126c-.963.413-4.859 2.33-5.443 4.875-.236.323-.596-.08-.854-.163-2.209-1.091-5.008-.736-6.9.872C5.82 7.238 4.782 9.976 5.65 12.348c.136.279.277.653-.018.883-.35.243-.743.419-1.05.728-.625.527-1.17 1.204-1.5 1.926 5.184-1.574 10.26-3.834 14.504-7.283 1.423-1.183 2.757-2.503 3.87-3.982V.083c-.073-.154-.296-.067-.551.043"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/openproject.svg������������������������������0000664�0000000�0000000�00000001201�14753064456�0026145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.35.37h-1.86a4.63 4.63 0 0 0-4.652 4.624v5.609H4.652A4.63 4.63 0 0 0 0 15.23v3.721c0 2.569 2.083 4.679 4.652 4.679h1.86c2.57 0 4.652-2.11 4.652-4.679v-3.72c0-.063 0-.158-.005-.158H8.373v3.88c0 1.026-.835 1.886-1.861 1.886h-1.86c-1.027 0-1.861-.864-1.861-1.886V15.23a1.84 1.84 0 0 1 1.86-1.833h14.697c2.57 0 4.652-2.11 4.652-4.679V4.997A4.63 4.63 0 0 0 19.35.37m1.861 8.345c0 1.026-.835 1.886-1.861 1.886h-3.721V4.997a1.84 1.84 0 0 1 1.86-1.833h1.86a1.84 1.84 0 0 1 1.862 1.833zm-8.373 9.706v.03c0 .746.629 1.344 1.396 1.344s1.395-.594 1.395-1.34v-3.384h-2.791z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/openscad.svg���������������������������������0000664�0000000�0000000�00000007127�14753064456�0025426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.065 2.418c-1.287.016-2.478.283-3.346.701-.895.432-1.426 1.014-1.426 1.627 0 .494.375.98.975 1.397.242-.178.493-.307.729-.422.235-.116.556-.147.976-.15s.856.09.856.09c.008.001 1.498.644 1.498.644l.894-.418h.002s.592-.266 1.268-.258q.067 0 .136.006c.187.013.355.038.655.107.3.07.591.239.777.39.562-.405.897-.879.897-1.364 0-.617-.501-1.203-1.364-1.639-.862-.436-2.068-.71-3.402-.71h-.125zm7.3.143c-.325-.02-.443.02-.695.13-.506.275-1.024.55-1.545.825a9.87 9.87 0 0 1 4.725 8.06c.418-.213.832-.427 1.229-.636 1.157-.844 1.234-3.073.177-5.194-.94-1.885-2.53-3.188-3.89-3.185ZM8.55 2.928a9.65 9.65 0 0 0-6.177 8.16c.425-.214.857-.424 1.294-.617l.002-.002h.002a1.7 1.7 0 0 1 .637-.133c.22-.005.445.029.672.094.454.13.916.386 1.355.726.88.68 1.693 1.714 2.213 2.883.576 1.293.84 2.532.795 3.56s-.412 1.875-1.138 2.268l-.977.467a9.6 9.6 0 0 0 4.744 1.248 9.6 9.6 0 0 0 5.334-1.611c-.745.289-1.48.318-2.086-.006-.54-.29-.915-.833-1.082-1.541-.121-.413-.09-.715-.103-1.147.015-.475.141-.929.207-1.248.104-.434.377-1.154.775-1.865.398-.71.977-1.41 1.611-2.008.635-.598 1.253-.966 1.704-1.082.45-.116.742-.17 1.043-.174s.608.046.921.21c.772.41 1.163 1.295 1.188 2.357.074-.226.108-1.16.129-1.525a9.64 9.64 0 0 0-5.123-8.516c.447.385.717.84.717 1.342 0 .618-.409 1.185-.92 1.523a6.2 6.2 0 0 1-1.498.744 7.3 7.3 0 0 1-2.211.377c-.738.002-1.25.012-1.664-.06a12 12 0 0 1-.844-.166c-.35-.067-.334-.053-.608-.15-.59-.21-.775-.29-1.377-.686-.601-.396-1.04-.972-1.04-1.604 0-.736.602-1.367 1.505-1.818m1.498 2.9c.054.332.147.729.162 1.131q.262.061.538.107c.46-.227.863-.423 1.27-.62l-1.247-.538c-.003 0-.09-.015-.215-.033a9 9 0 0 0-.508-.047m3.291.291-.869.405.022.638c.844-.032 1.631-.174 2.299-.406.02-.298.108-.59.152-.824-.145-.037-.305-.033-.693-.036s-.91.223-.91.223zm1.85-.115c-.04.123-.082.25-.107.39-.014.074-.02.168-.028.256q.4-.16.725-.359a1.8 1.8 0 0 0-.59-.287m-2.967.625c-.291.14-.64.306-.984.477.338.03.675.058 1.002.066zm-7.904 3.959a1.5 1.5 0 0 0-.549.111c-.755.333-1.507.71-2.213 1.088.106.01.208.025.3.037.388.052.811.218 1.509.762.28.219.592.543.898.92.327.388.61.844.865 1.238.173.288.326.575.45.848.151.316.26.641.377.945.112.306.18.617.261.91.078.285.104.573.15.844q.048.402.04.754c-.011.449-.044.854-.168 1.215q-.06.172-.154.328a77 77 0 0 0 2.001-.941c1.25-.676 1.36-2.978.235-5.506-.88-1.978-2.652-3.574-4.002-3.553m14.44.666c.185.347.338.904.13 1.633-.066.172-.12.377-.215.556-.528 1.1-1.506 1.61-1.789 1.739 0 .047-.002.112-.039.463a3.7 3.7 0 0 1-.174.86c-.11.365-.227.628-.384.88-.077.1-.15.257-.506.65-.436.271-1.008.453-1.313.453.17.567.445 1.027.871 1.256.671.358 1.554.239 2.452-.277a6.2 6.2 0 0 0 1.48-1.23c.35-.405.666-.836 1.172-1.72.505-.882.814-2.064.79-3.044-.022-1.004-.384-1.783-1.054-2.14a1.5 1.5 0 0 0-.721-.163c-.248 0-.493.06-.7.084m-.284.047c-.5.165-1.01.47-1.498.875.172.192.37.356.611.537a3.7 3.7 0 0 0 .909.502l.048-.113a3 3 0 0 0 .096-.284c.137-.48.102-.865.012-1.154a1.6 1.6 0 0 0-.178-.363m-17.178.732a.8.8 0 0 0-.468.155c-.473.369-.779.918-.823 1.894-.043.977.211 2.185.774 3.45.503 1.13 1.298 2.135 2.138 2.784.841.65 1.727.944 2.481.6.62-.343.737-.999.758-1.877s-.241-2.098-.807-3.344c-.474-1.044-1.459-2.381-2.139-2.912-.68-.53-1.04-.664-1.386-.71a3 3 0 0 0-.528-.04m15.475.323c-.582.582-1.084 1.197-1.45 1.796l1.444.793a3.2 3.2 0 0 0 .531-.312 3.5 3.5 0 0 0 1.065-1.192 4.3 4.3 0 0 1-.944-.539c-.356-.266-.509-.39-.646-.546m-1.574 2.033a7.5 7.5 0 0 0-.658 1.715l1.955-1.004c-.41-.22-.87-.468-1.297-.711m1.42.935-2.225 1.159-.03.146c.226.053.475.128.782.291.427.227.627.39.781.53q.078-.101.153-.217c.342-.548.472-1.156.523-1.586.012-.108.01-.218.016-.323"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/opensea.svg����������������������������������0000664�0000000�0000000�00000003603�14753064456�0025257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.374 0 0 5.374 0 12s5.374 12 12 12 12-5.374 12-12S18.629 0 12 0M5.92 12.403l.051-.081 3.123-4.884a.107.107 0 0 1 .187.014c.52 1.169.972 2.623.76 3.528-.088.372-.335.876-.614 1.342a2 2 0 0 1-.117.199.1.1 0 0 1-.09.045H6.013a.106.106 0 0 1-.091-.163zm13.914 1.68a.11.11 0 0 1-.065.101c-.243.103-1.07.485-1.414.962-.878 1.222-1.548 2.97-3.048 2.97H9.053a4.02 4.02 0 0 1-4.013-4.028v-.072c0-.058.048-.106.108-.106h3.485c.07 0 .12.063.115.132-.026.226.017.459.125.67.206.42.636.682 1.099.682h1.726v-1.347H9.99a.11.11 0 0 1-.089-.173l.063-.09c.16-.231.391-.586.621-.992.156-.274.308-.566.43-.86q.034-.08.065-.16c.033-.094.067-.182.091-.269a5 5 0 0 0 .065-.223c.057-.25.081-.514.081-.787 0-.108-.004-.221-.014-.327-.005-.117-.02-.235-.034-.352a3 3 0 0 0-.048-.312 7 7 0 0 0-.098-.468l-.014-.06c-.03-.108-.056-.21-.09-.317a12 12 0 0 0-.328-.972 5 5 0 0 0-.142-.355c-.072-.178-.146-.339-.213-.49a4 4 0 0 1-.094-.197 5 5 0 0 0-.103-.213c-.024-.053-.053-.104-.072-.152l-.211-.388c-.029-.053.019-.118.077-.101l1.32.357h.01l.173.05.192.054.07.019v-.783c0-.379.302-.686.679-.686a.66.66 0 0 1 .477.202.7.7 0 0 1 .2.484V6.65l.141.039q.016.007.031.017.052.037.147.11.074.059.165.137a10 10 0 0 1 .574.504c.214.199.454.432.684.691.065.074.127.146.192.226.062.079.132.156.19.232.079.104.16.212.235.324.033.053.074.108.105.161.096.142.178.288.257.435.034.067.067.141.096.213.089.197.159.396.202.598a.7.7 0 0 1 .029.132v.01c.014.057.019.12.024.184a2.1 2.1 0 0 1-.106.874c-.031.084-.06.17-.098.254-.075.17-.161.343-.264.502-.034.06-.075.122-.113.182-.043.063-.089.123-.127.18a4 4 0 0 1-.173.221q-.078.11-.166.209-.12.147-.245.278c-.048.058-.1.118-.156.17-.052.06-.108.113-.156.161-.084.084-.15.147-.208.202l-.137.122a.1.1 0 0 1-.072.03h-1.051v1.346h1.322c.295 0 .576-.104.804-.298.077-.067.415-.36.816-.802a.1.1 0 0 1 .05-.03l3.65-1.057a.108.108 0 0 1 .138.103z"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/opensearch.svg�������������������������������0000664�0000000�0000000�00000001274�14753064456�0025756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.152 8.813a.85.85 0 0 0-.849.848c0 6.982-5.66 12.642-12.642 12.642a.849.849 0 0 0 0 1.697C17.581 24 24 17.58 24 9.661a.85.85 0 0 0-.848-.848M18.03 14.25c.816-1.331 1.606-3.106 1.45-5.59C19.16 3.513 14.497-.392 10.095.03 8.372.197 6.602 1.601 6.76 4.118c.068 1.093.603 1.738 1.473 2.234.828.473 1.891.772 3.097 1.11 1.456.41 3.145.87 4.444 1.827 1.556 1.147 2.62 2.476 2.257 4.961m-16.56-9C.653 6.581-.136 8.356.02 10.84c.321 5.147 4.983 9.052 9.385 8.629 1.723-.166 3.492-1.57 3.335-4.087-.068-1.093-.603-1.738-1.473-2.234-.828-.473-1.891-.772-3.097-1.11-1.456-.41-3.145-.87-4.444-1.827C2.17 9.064 1.106 7.735 1.47 5.25"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/opensourcehardware.svg�����������������������0000664�0000000�0000000�00000002327�14753064456�0027527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.87 11.525c.071.013.13.084.13.157v3.033a.166.166 0 0 1-.13.157l-2.875.535a.24.24 0 0 0-.17.151l-.898 2.242a.25.25 0 0 0 .017.229l1.633 2.379a.17.17 0 0 1-.02.204l-2.144 2.144a.17.17 0 0 1-.203.019l-2.338-1.604a.23.23 0 0 0-.224-.008l-1.03.55a.12.12 0 0 1-.17-.062l-2.125-5.135a.16.16 0 0 1 .062-.192l.258-.158c.048-.03.113-.08.163-.125a3.354 3.354 0 1 0-3.612 0c.05.046.115.096.163.125l.258.158a.16.16 0 0 1 .062.192L8.552 21.65a.12.12 0 0 1-.17.063l-1.03-.55a.23.23 0 0 0-.224.007L4.79 22.775a.17.17 0 0 1-.204-.019l-2.145-2.144a.17.17 0 0 1-.019-.204l1.633-2.38a.25.25 0 0 0 .017-.228l-.897-2.242a.24.24 0 0 0-.17-.15L.13 14.871a.166.166 0 0 1-.13-.157v-3.032c0-.073.059-.144.13-.157l2.947-.548a.25.25 0 0 0 .175-.15l.903-2.108a.25.25 0 0 0-.014-.227L2.424 5.989a.17.17 0 0 1 .019-.203L4.587 3.64a.166.166 0 0 1 .204-.019L7.337 5.37c.06.041.163.048.229.016l2.043-.836c.07-.023.137-.1.15-.173l.567-3.047a.17.17 0 0 1 .157-.131h3.034c.073 0 .143.059.157.13l.567 3.048a.25.25 0 0 0 .15.173l2.043.836a.25.25 0 0 0 .23-.016l2.546-1.748a.166.166 0 0 1 .203.02l2.144 2.144c.052.051.06.143.02.203l-1.718 2.503a.25.25 0 0 0-.014.227l.903 2.108a.26.26 0 0 0 .175.15z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/opensourceinitiative.svg���������������������0000664�0000000�0000000�00000002345�14753064456�0030077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.959.447A11.94 11.94 0 0 0 0 12.407c0 5.576 3.874 10.097 7.783 11.114.193.05.392-.05.467-.234l2.771-6.822a.396.396 0 0 0-.246-.528C9.365 15.47 8.53 14.32 8.48 12.4c-.024-1.828 1.5-3.45 3.561-3.447 1.931.003 3.479 1.632 3.479 3.453 0 .966-.203 1.687-.575 2.238-.371.552-.922.951-1.695 1.239a.396.396 0 0 0-.23.515l2.685 6.903a.396.396 0 0 0 .465.24C20.163 22.534 24 18.062 24 12.406 24 5.804 18.603.447 11.959.447m0 .791c6.22 0 11.25 4.997 11.25 11.168 0 5.138-3.423 9.208-6.895 10.272L13.9 16.47c.703-.308 1.302-.79 1.702-1.384.477-.708.709-1.602.709-2.68 0-2.266-1.898-4.24-4.27-4.244-2.48-.004-4.382 1.976-4.352 4.25.023 1.995.934 3.492 2.451 4.13L7.648 22.66C4.251 21.592.791 17.458.791 12.406A11.13 11.13 0 0 1 11.959 1.238m10.617 20.149a1.03 1.03 0 0 0 0 2.058 1.03 1.03 0 0 0 0-2.058m0 .162c.48 0 .865.388.865.867a.86.86 0 0 1-.271.623l-.172-.342a.9.9 0 0 0-.111-.178.26.26 0 0 0-.114-.084.3.3 0 0 0 .17-.117.36.36 0 0 0 .061-.21q0-.195-.113-.292-.114-.096-.346-.095h-.41v1.343h.181v-.568h.2q.107 0 .17.045a.5.5 0 0 1 .129.18l.171.343.157.001a.88.88 0 0 1-.567.216.865.865 0 0 1 0-1.732m-.26.322h.229q.132-.001.2.059.066.06.066.177 0 .12-.067.18-.066.06-.2.06h-.228z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/openssl.svg����������������������������������0000664�0000000�0000000�00000006276�14753064456�0025321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.961 13.532a2 2 0 0 1-.818-.157 1.75 1.75 0 0 1-.616-.437 2 2 0 0 1-.389-.664A2.4 2.4 0 0 1 0 11.442q0-.448.137-.832t.389-.664a1.8 1.8 0 0 1 .617-.438q.365-.157.818-.157.454 0 .818.157t.616.437.389.664.137.832-.137.832a2 2 0 0 1-.389.664 1.74 1.74 0 0 1-.616.437 2 2 0 0 1-.818.158m0-.443q.353 0 .622-.126c.269-.126.331-.199.454-.345q.185-.219.277-.521t.092-.656-.092-.656a1.5 1.5 0 0 0-.277-.524q-.185-.221-.454-.347c-.269-.126-.386-.125-.622-.125q-.353 0-.622.126a1.3 1.3 0 0 0-.454.347 1.5 1.5 0 0 0-.277.524q-.092.302-.092.656 0 .353.092.656.093.303.277.521t.454.345q.27.125.622.125m2.494-2.538h.454v.409h.011q.162-.224.387-.35.224-.126.544-.126.274 0 .504.104t.392.297.255.479.092.644q0 .348-.087.63a1.4 1.4 0 0 1-.249.482 1.1 1.1 0 0 1-.398.305 1.3 1.3 0 0 1-.527.106q-.297 0-.516-.095a1 1 0 0 1-.398-.331h-.01v1.557h-.454zm1.345 2.6a.74.74 0 0 0 .625-.325q.103-.151.154-.359.05-.207.05-.454a2 2 0 0 0-.05-.451 1.1 1.1 0 0 0-.154-.364.75.75 0 0 0-.258-.241.7.7 0 0 0-.361-.087.9.9 0 0 0-.412.09.8.8 0 0 0-.289.247 1.1 1.1 0 0 0-.168.364 1.902 1.902 0 0 0-.006.886q.05.207.16.361a.8.8 0 0 0 .283.244.9.9 0 0 0 .426.089m3.037.375a1.4 1.4 0 0 1-.591-.12q-.26-.12-.44-.328-.18-.207-.275-.485a1.8 1.8 0 0 1-.095-.591q0-.314.098-.591t.28-.485a1.287 1.287 0 0 1 .994-.448q.325 0 .574.12t.417.336.255.516.087.658h-2.24q.011.219.078.409t.185.331a.84.84 0 0 0 .673.297.86.86 0 0 0 .521-.148.78.78 0 0 0 .28-.445h.443q-.1.471-.426.723-.326.25-.818.251m-.028-2.689a.9.9 0 0 0-.359.07.76.76 0 0 0-.266.196 1 1 0 0 0-.179.297 1.3 1.3 0 0 0-.092.367h1.743q-.022-.436-.238-.684-.218-.246-.609-.246m2.311.095h.011q.158-.207.378-.328.222-.12.541-.12.455 0 .714.238.261.238.261.692v2.034h-.454v-1.995q0-.286-.174-.437-.173-.151-.482-.151a.9.9 0 0 0-.319.059.8.8 0 0 0-.252.163.7.7 0 0 0-.165.252.9.9 0 0 0-.059.328v1.782h-.454v-2.897h.454zm4.289 2.598q-.823 0-1.271-.347-.449-.347-.47-.989h.8q.045.366.259.521t.648.155q.158 0 .299-.028a.8.8 0 0 0 .248-.09.5.5 0 0 0 .172-.161.43.43 0 0 0 .065-.24.4.4 0 0 0-.07-.242.56.56 0 0 0-.2-.161 1.6 1.6 0 0 0-.313-.113q-.183-.048-.414-.099a8 8 0 0 1-.521-.138 1.6 1.6 0 0 1-.44-.206 1 1 0 0 1-.304-.332 1.04 1.04 0 0 1-.116-.518q0-.299.116-.524.115-.225.321-.378.206-.152.487-.228t.62-.076q.682 0 1.096.321t.459.935h-.783q-.034-.304-.248-.456a.9.9 0 0 0-.53-.152q-.332 0-.53.13a.39.39 0 0 0-.197.344q0 .124.054.206t.163.144.273.107.389.096q.31.068.583.149.273.082.479.217t.324.344.118.535q0 .304-.118.544t-.327.4a1.5 1.5 0 0 1-.496.245 2.2 2.2 0 0 1-.625.085m3.759 0q-.823 0-1.271-.347c-.448-.347-.456-.561-.47-.989h.8q.045.366.259.521t.648.155q.158 0 .299-.028a.8.8 0 0 0 .248-.09.5.5 0 0 0 .172-.161.43.43 0 0 0 .065-.24.4.4 0 0 0-.07-.242.56.56 0 0 0-.2-.161 1.6 1.6 0 0 0-.313-.113q-.183-.048-.414-.099a8 8 0 0 1-.521-.138 1.6 1.6 0 0 1-.44-.206 1 1 0 0 1-.304-.332 1.04 1.04 0 0 1-.116-.518q0-.299.116-.524t.321-.378.487-.228.62-.076q.681 0 1.096.321.414.321.459.935h-.783q-.034-.304-.248-.456a.9.9 0 0 0-.53-.152q-.332 0-.53.13a.39.39 0 0 0-.197.344q0 .124.054.206t.163.144.273.107.389.096q.31.068.583.149.273.082.479.217t.324.344.118.535q0 .304-.118.544-.119.24-.327.4a1.5 1.5 0 0 1-.496.245q-.287.084-.625.085m2.122-4.12h.817v3.347H24v.682h-2.71z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/openstack.svg��������������������������������0000664�0000000�0000000�00000000730�14753064456�0025612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.575 9.29h5.418v5.42h-5.418zM0 9.29h5.419v5.42H0zm18.575 7.827a1.207 1.207 0 0 1-1.206 1.206H6.623a1.207 1.207 0 0 1-1.205-1.206v-.858H0v5.252a2.236 2.236 0 0 0 2.229 2.23h19.53A2.237 2.237 0 0 0 24 21.512V16.26h-5.425zM21.763.258H2.233a2.236 2.236 0 0 0-2.23 2.23V7.74h5.419v-.858a1.206 1.206 0 0 1 1.205-1.206h10.746a1.206 1.206 0 0 1 1.205 1.206v.858H24V2.487A2.237 2.237 0 0 0 21.763.258"/></svg>����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/openstreetmap.svg����������������������������0000664�0000000�0000000�00000005153�14753064456�0026515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.672 23.969c-.352-.089-.534-.234-1.471-1.168C.085 21.688.014 21.579.018 20.999c0-.645-.196-.414 3.368-3.986 3.6-3.608 3.415-3.451 4.064-3.449.302 0 .378.016.62.14l.277.14 1.744-1.744-.218-.343c-.425-.662-.825-1.629-1.006-2.429a7.66 7.66 0 0 1 1.479-6.44c2.49-3.12 6.959-3.812 10.26-1.588 1.812 1.218 2.99 3.099 3.328 5.314.07.467.07 1.579 0 2.074a7.55 7.55 0 0 1-2.205 4.402 6.7 6.7 0 0 1-1.943 1.401c-.959.483-1.775.71-2.881.803-1.573.131-3.32-.305-4.656-1.163l-.343-.218-1.744 1.744.14.28c.125.241.14.316.14.617.003.651.156.467-3.426 4.049-2.761 2.756-3.186 3.164-3.398 3.261-.271.125-.69.171-.945.106zM17.485 13.95a6.43 6.43 0 0 0 4.603-3.51c1.391-2.899.455-6.306-2.227-8.108-.638-.43-1.529-.794-2.367-.962-.581-.117-1.809-.104-2.414.025a6.6 6.6 0 0 0-2.452 1.064c-.444.315-1.177 1.048-1.487 1.487a6.384 6.384 0 0 0 .38 7.907 6.4 6.4 0 0 0 3.901 2.136c.509.078 1.542.058 2.065-.037zm-3.738 7.376a81 81 0 0 1-2.196-.651c-.025-.028 1.207-4.396 1.257-4.449.023-.026 4.242 1.152 4.414 1.236.062.026-.003.288-.525 2.102a399 399 0 0 0-.635 2.236c-.025.087-.069.156-.097.156-.028-.003-1.028-.287-2.219-.631zm2.912.524c0-.053 1.227-4.333 1.246-4.347.047-.034 4.324-1.23 4.341-1.211.019.019-1.199 4.337-1.23 4.36-.02.019-4.126 1.191-4.259 1.218-.054.011-.098 0-.098-.019zm-7.105-1.911c.846-.852 1.599-1.627 1.674-1.728.171-.218.405-.732.472-1.015.026-.118.053-.352.058-.522l.011-.307.182-.051c.103-.028.193-.044.202-.034.023.025-1.207 4.321-1.246 4.36-.02.016-.677.213-1.464.436l-1.425.405 1.537-1.542zm8.289-3.06a1.4 1.4 0 0 1-.059-.187l-.044-.156.156-.028c1.339-.227 2.776-.856 3.908-1.713.16-.125.252-.171.265-.134.054.165.272.95.265.959-.034.034-4.48 1.282-4.492 1.261zm-15.083-1.3c-.05-.039-1.179-3.866-1.264-4.29-.016-.084.146-.044 2.174.536 2.121.604 2.192.629 2.222.74.028.098.011.129-.125.223-.084.059-.769.724-1.523 1.479a64 64 0 0 1-1.39 1.367c-.016 0-.056-.025-.093-.054zm.821-4.378c-1.188-.343-2.164-.623-2.167-.626-.016-.012 1.261-4.433 1.285-4.46.022-.022 4.422 1.211 4.469 1.252.009.009-.269 1.017-.618 2.239-.576 2.02-.643 2.224-.723 2.22-.05-.003-1.059-.285-2.247-.626zm2.959.538c.012-.031.212-.723.444-1.534l.42-1.476.056.321c.093.556.265 1.188.464 1.741.106.296.187.539.181.545-.008.006-.332.101-.719.212-.389.109-.741.21-.786.224q-.085.025-.059-.034zM4.905 6.112c-1.187-.339-2.167-.635-2.18-.654-.04-.062-1.246-4.321-1.23-4.338.026-.025 4.31 1.204 4.351 1.246.047.051 1.28 4.379 1.246 4.376L4.91 6.113zm2.148-1.713-.519-1.806-.078-.28 1.693-.483c.934-.265 1.724-.495 1.76-.508.034-.016-.083.14-.26.336A8.7 8.7 0 0 0 7.69 5.23a4 4 0 0 0-.132.561c0 .293-.115-.025-.505-1.39z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/opensuse.svg���������������������������������0000664�0000000�0000000�00000002333�14753064456�0025465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.724 0a12 12 0 0 0-9.448 4.623c1.464.391 2.5.727 2.81.832.005-.19.037-1.893.037-1.893s.004-.04.025-.06c.026-.026.065-.018.065-.018.385.056 8.602 1.274 12.066 3.292.427.25.638.517.902.786.958.99 2.223 5.108 2.359 5.957.005.033-.036.07-.054.083a5 5 0 0 1-.313.228c-.82.55-2.708 1.872-5.13 1.656-2.176-.193-5.018-1.44-8.445-3.699q.503 1.185 1 2.371c.497.258 5.287 2.7 7.651 2.651 1.904-.04 3.941-.968 4.756-1.458 0 0 .179-.108.257-.048.085.066.061.167.041.27-.05.234-.164.66-.242.863l-.065.165c-.093.25-.183.482-.356.625-.48.436-1.246.784-2.446 1.305-1.855.812-4.865 1.328-7.66 1.31-1.001-.022-1.968-.133-2.817-.232-1.743-.197-3.161-.357-4.026.269A12 12 0 0 0 10.724 24a12 12 0 0 0 12-12 12 12 0 0 0-12-12M13.4 6.963a3.5 3.5 0 0 0-2.521.942 3.5 3.5 0 0 0-1.114 2.449 3.53 3.53 0 0 0 3.39 3.64 3.48 3.48 0 0 0 2.524-.946 3.5 3.5 0 0 0 1.114-2.446 3.527 3.527 0 0 0-3.393-3.64zm-.03 1.035a2.46 2.46 0 0 1 2.368 2.539 2.43 2.43 0 0 1-.774 1.706 2.46 2.46 0 0 1-1.762.659 2.46 2.46 0 0 1-2.364-2.542c.02-.655.3-1.26.777-1.707a2.42 2.42 0 0 1 1.756-.655zm.402 1.23c-.602 0-1.087.325-1.087.727 0 .4.485.725 1.087.725.6 0 1.088-.326 1.088-.725 0-.402-.487-.726-1.088-.726Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/opentelemetry.svg����������������������������0000664�0000000�0000000�00000001521�14753064456�0026516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.697 13.117A2.618 2.618 0 1 0 16.4 16.82a2.618 2.618 0 0 0-3.703-3.703m2.768 2.77a1.296 1.296 0 1 1-1.833-1.832 1.296 1.296 0 0 1 1.833 1.832M16.356.236 14.752 1.84a.81.81 0 0 0 0 1.144l6.263 6.263a.81.81 0 0 0 1.144 0l1.604-1.604a.81.81 0 0 0 0-1.144L17.498.235a.81.81 0 0 0-1.142 0M5.117 20.734a.733.733 0 0 0 0-1.034l-.815-.816a.733.733 0 0 0-1.035 0l-1.684 1.685-.003.002-.462-.463a.654.654 0 1 0-.925.925l2.775 2.775a.654.654 0 1 0 .925-.925l-.463-.462.003-.002zm8.486-15.893-3.564 3.564a.82.82 0 0 0 0 1.154l2.2 2.2a3.98 3.98 0 0 1 5.137.419l1.782-1.782a.82.82 0 0 0 0-1.154l-4.401-4.4a.815.815 0 0 0-1.154 0m-2.288 7.846-1.3-1.3a.786.786 0 0 0-1.108 0l-4.583 4.586a.786.786 0 0 0 0 1.107l2.597 2.598a.786.786 0 0 0 1.108 0l2.947-2.953a3.99 3.99 0 0 1 .339-4.038"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/opentext.svg���������������������������������0000664�0000000�0000000�00000003763�14753064456�0025502�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.412 11.809c0 .786-.468 1.637-1.7 1.637-.894 0-1.712-.49-1.712-1.637 0-.946.616-1.68 1.828-1.616 1.297.074 1.584 1.052 1.584 1.616m-2.307-.596c-.117.17-.159.383-.159.596 0 .478.244.914.765.914.51 0 .755-.404.755-.872 0-.34-.085-.595-.266-.754a.73.73 0 0 0-.553-.17c-.255.01-.414.095-.542.286m10.63-.67c.095-.095.148-.17.318-.244.149-.063.35-.106.585-.106.191 0 .404.032.563.117.33.17.425.446.425.935v2.126h-.946v-1.754c0-.276-.01-.382-.042-.467-.075-.17-.234-.234-.425-.234-.49 0-.49.382-.49.776v1.68h-.935v-3.105h.946zm-1.393 2.02c-.085.181-.361.883-1.584.883-.946 0-1.605-.564-1.605-1.584 0-.744.383-1.669 1.637-1.669.191 0 .733-.021 1.148.404.415.436.436 1.042.446 1.392H8.1c0 .383.223.776.734.776s.69-.33.807-.542zm-.935-1.148c-.022-.127-.043-.308-.181-.435a.66.66 0 0 0-.457-.17.67.67 0 0 0-.478.202c-.128.138-.16.276-.192.414zm13.977-.5H24v-.637h-.616V9.62h-.936v.648H22.3l-.425.638h.574v1.478c0 .297.01.52.138.701.202.287.553.308.883.308.17 0 .297-.02.488-.053v-.712l-.329.01c-.255 0-.255-.159-.244-.35v-1.371zM14.073 9.62h.935v.648h.967l-.425.638h-.553v1.382c-.01.191-.01.35.245.35l.33-.01v.712c-.203.032-.32.053-.49.053-.318 0-.68-.02-.882-.308-.127-.18-.138-.404-.138-.701V9.619h.01zm4.836 2.944-.18.266c-.171.234-.48.606-1.383.606-.946 0-1.573-.563-1.573-1.584 0-.744.383-1.669 1.637-1.669.191 0 .733-.02 1.148.404.415.436.436 1.042.446 1.393H16.73c-.01.382.191.776.69.776.51 0 .66-.33.777-.542zm-.872-1.148c-.021-.127-.042-.308-.18-.435a.66.66 0 0 0-.458-.17.67.67 0 0 0-.478.202c-.127.138-.16.276-.191.414zm4.071 1.956-1.17-1.626.968-1.467h-1.063l-.457.691-.5-.69h-1.062l1.052 1.466-1.084 1.626h1.063l.563-.86.617.86zm-17.41-2.827c.085-.138.372-.35.829-.35.776 0 1.329.573 1.329 1.604 0 .638-.234 1.637-1.372 1.637-.403 0-.722-.223-.797-.35v1.296h-.935v-4.114h.946zm.638.361a.58.58 0 0 0-.479.234c-.138.16-.19.404-.19.68 0 .362.105.585.222.712a.59.59 0 0 0 .425.192c.457 0 .66-.468.66-.925 0-.383-.117-.786-.5-.872-.053-.01-.096-.02-.138-.02z"/></svg>�������������mkdocs-material-9.6.4/material/templates/.icons/simple/opentofu.svg���������������������������������0000664�0000000�0000000�00000002201�14753064456�0025455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.184 23.25.002-.01-.033-.017-8.388-4.611a1.68 1.68 0 0 1-.873-1.475V6.864c0-.614.335-1.18.873-1.476l9.424-5.18a1.69 1.69 0 0 1 1.622 0l8.31 4.568.022.012.006.002-.004-.001 1.09.599c.538.296.873.862.873 1.476v10.273c0 .614-.335 1.179-.873 1.475l-8.388 4.611-.03.016-1.006.553a1.69 1.69 0 0 1-1.622 0l-1.003-.552zm.603-1.158-.005-.001.012.006a.388.388 0 0 0 .558-.338l.001-9.147a.39.39 0 0 0-.202-.34L2.763 7.661a.39.39 0 0 0-.576.341v9.135c0 .141.077.272.201.34l8.394 4.613zm-1.983-5.129-.005.003-1.959-1.031-.003-.004.001-.01c.023-.305.153-.525.346-.632.194-.107.45-.101.72.041.272.143.508.397.671.691s.252.628.229.935zM5.71 15.177l-.005.002-1.96-1.031-.002-.004.001-.01c.022-.304.152-.524.346-.632s.449-.101.72.042.508.396.671.69c.162.294.252.628.229.935zm14.981-8.999-.003-.018a.38.38 0 0 0-.191-.25l-8.31-4.567a.39.39 0 0 0-.374 0L3.503 5.91a.39.39 0 0 0-.193.423l.009.007-.009-.007c.022.1.083.194.183.253l8.32 4.572a.39.39 0 0 0 .374 0l8.321-4.573a.385.385 0 0 0 .183-.407M3.319 6.34l-.005-.006-.004-.003zm-.467-1.56-.003.002q.004.006.005.006zm.007.007-.003.001h-.002z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/openverse.svg��������������������������������0000664�0000000�0000000�00000001121�14753064456�0025624�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.882 1.018C2.182 1.018 0 3.214 0 5.932c0 2.704 2.182 4.915 4.882 4.915Zm7.118 0c-2.686 0-4.882 2.196-4.882 4.914 0 2.704 2.182 4.915 4.882 4.915zm7.118 0c-2.696 0-4.881 2.2-4.881 4.914s2.185 4.915 4.88 4.915c2.697 0 4.883-2.2 4.883-4.915s-2.186-4.914-4.882-4.914m0 12.093c-2.696 0-4.881 2.2-4.881 4.915s2.185 4.914 4.88 4.914c2.697 0 4.883-2.2 4.883-4.914s-2.186-4.915-4.882-4.915M12 13.126c-2.686 0-4.882 2.196-4.882 4.9S9.3 22.94 12 22.94zm-7.118.04c-2.7 0-4.882 2.197-4.882 4.9 0 2.719 2.182 4.916 4.882 4.916Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/openvpn.svg����������������������������������0000664�0000000�0000000�00000000760�14753064456�0025313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .357C5.385.357 0 5.69 0 12.254c0 4.36 2.358 8.153 5.896 10.204l.77-5.076a7.05 7.05 0 0 1-1.846-4.719c0-3.897 3.18-7.076 7.13-7.076 3.948 0 7.126 3.18 7.126 7.076 0 1.847-.717 3.488-1.846 4.77L18 22.51c3.59-2.05 6-5.899 6-10.258C24 5.69 18.615.357 12 .357m-.05 8.157a3.786 3.786 0 0 0-3.796 3.795 3.74 3.74 0 0 0 2.461 3.54L9.13 23.643h5.64l-1.435-7.795c1.385-.564 2.41-1.898 2.41-3.54a3.786 3.786 0 0 0-3.795-3.794"/></svg>����������������mkdocs-material-9.6.4/material/templates/.icons/simple/openwrt.svg����������������������������������0000664�0000000�0000000�00000001361�14753064456�0025322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A14.12 14.12 0 0 0 1.994 4.154L3.689 5.85A11.72 11.72 0 0 1 12 2.41a11.72 11.72 0 0 1 8.311 3.44l1.696-1.696A14.12 14.12 0 0 0 12 0zm0 4.32a9.8 9.8 0 0 0-6.947 2.893l1.695 1.695A7.41 7.41 0 0 1 12 6.73c2.043 0 3.905.832 5.252 2.178l1.695-1.695A9.81 9.81 0 0 0 12 4.32M4.272 8.076A9.76 9.76 0 0 0 2.16 14.16C2.16 19.58 6.582 24 12 24s9.84-4.42 9.84-9.84a9.86 9.86 0 0 0-2.111-6.084L18.016 9.79a7.4 7.4 0 0 1 1.43 4.371c0 4.105-3.34 7.448-7.446 7.448s-7.447-3.342-7.447-7.448c0-1.628.531-3.141 1.43-4.37zM12 8.643a5.56 5.56 0 0 0-3.906 1.613l1.695 1.695a3.13 3.13 0 0 1 4.422 0l1.695-1.695A5.5 5.5 0 0 0 12 8.643m0 3.888a1.629 1.629 0 1 0 0 3.258 1.629 1.629 0 0 0 0-3.258"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/openzeppelin.svg�����������������������������0000664�0000000�0000000�00000000352�14753064456�0026333�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.783 24H9.317l2.196-3.69a5.23 5.23 0 0 1 4.494-2.558h6.775ZM1.217 0h21.566l-3.718 6.247H1.217ZM9.76 9.763a5.73 5.73 0 0 1 4.92-2.795h4.01L8.498 24h-7.26Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/openzfs.svg����������������������������������0000664�0000000�0000000�00000005743�14753064456�0025320�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.357 3.404a.634.634 0 0 1-.901 0 .64.64 0 0 1 0-.905.634.634 0 0 1 .901 0 .63.63 0 0 1 0 .905m-.14 17.858a1.115 1.115 0 0 1-1.574-1.576 1.114 1.114 0 0 1 1.574 0 1.104 1.104 0 0 1 0 1.576m-3.722-2.154a1.11 1.11 0 0 1 0-1.57 1.103 1.103 0 0 1 1.573 0 1.107 1.107 0 0 1 0 1.57c-.435.44-1.145.44-1.573 0m-.576 2.154a1.115 1.115 0 0 1-1.573-1.576 1.114 1.114 0 0 1 1.573 1.576m-3.722-2.154a1.096 1.096 0 0 1 0-1.57 1.103 1.103 0 0 1 1.574 0 1.11 1.11 0 0 1 0 1.57c-.435.44-1.145.44-1.574 0m-.575 2.154a1.115 1.115 0 0 1-1.573-1.576 1.114 1.114 0 0 1 1.573 1.576m-3.728-2.154a1.107 1.107 0 0 1 0-1.57 1.11 1.11 0 0 1 1.58 0 1.107 1.107 0 0 1 0 1.57 1.116 1.116 0 0 1-1.58 0m-.57 2.148c-.434.44-1.144.44-1.573 0a1.096 1.096 0 0 1 0-1.57 1.103 1.103 0 0 1 1.573 0 1.11 1.11 0 0 1 0 1.57M4.604 2.58a.64.64 0 0 1 .908 0 .64.64 0 0 1 0 .904.64.64 0 0 1-.908 0 .646.646 0 0 1 0-.904m1.388 1.388a.64.64 0 0 1 .908 0 .64.64 0 0 1 0 .904.653.653 0 0 1-.908 0 .64.64 0 0 1 0-.904M7.38 5.35a.653.653 0 0 1 .908 0 .64.64 0 1 1-.908.904.64.64 0 0 1 0-.904m0-2.77a.64.64 0 0 1 .908 0 .64.64 0 0 1 0 .905.647.647 0 0 1-.908 0 .64.64 0 0 1 0-.904m1.387 4.157a.647.647 0 0 1 .908 0 .64.64 0 0 1 0 .904.64.64 0 0 1-.908 0 .64.64 0 0 1 0-.904m0-2.77a.64.64 0 0 1 .908 0 .64.64 0 0 1 0 .905.641.641 0 0 1-.908-.904m1.388-1.388a.64.64 0 0 1 .908 0 .64.64 0 0 1 0 .904.64.64 0 0 1-.908 0 .64.64 0 0 1 0-.904m1.388 4.157a.64.64 0 1 1 0 .904.64.64 0 0 1 0-.904m0-2.77a.634.634 0 0 1 .901 0 .634.634 0 0 1 0 .905.645.645 0 0 1-.901 0 .64.64 0 0 1 0-.904M12.93 2.58a.634.634 0 0 1 .901 0 .64.64 0 0 1 0 .904.634.634 0 0 1-.902 0 .64.64 0 0 1 0-.904m.429 12.804a1.114 1.114 0 0 1 1.573 1.576 1.115 1.115 0 0 1-1.573-1.576m.473-6.393a.634.634 0 0 1-.902 0 .64.64 0 0 1 0-.904.64.64 0 0 1 .902.006c.25.245.25.653 0 .898m0-2.77a.634.634 0 0 1-.902 0 .64.64 0 0 1 0-.903.634.634 0 0 1 .902 0 .64.64 0 0 1 0 .904m-2.29 3.253a.645.645 0 0 1 .902 0 .64.64 0 0 1 0 .904.634.634 0 0 1-.901 0 .64.64 0 0 1 0-.904m-.34 3.761a1.103 1.103 0 0 1 1.574 0 1.104 1.104 0 0 1 0 1.576 1.114 1.114 0 0 1-1.573-1.576m-.57 2.148a1.115 1.115 0 1 1-1.578 1.576 1.115 1.115 0 0 1 1.579-1.576m-.48-10.066a.64.64 0 0 1 .908 0 .65.65 0 0 1 0 .904.64.64 0 0 1-.908 0 .64.64 0 0 1 0-.904m0 2.775a.64.64 0 0 1 .902-.006c.25.251.25.66 0 .91a.645.645 0 0 1-.902 0 .64.64 0 0 1 0-.904m4.163-1.388a.634.634 0 0 1 .902 0 .64.64 0 0 1 0 .905.634.634 0 0 1-.902 0 .64.64 0 0 1 0-.905m0-2.775a.645.645 0 0 1 .902 0 .64.64 0 0 1 0 .904.634.634 0 0 1-.902 0 .64.64 0 0 1 0-.904m1.388 1.388a.634.634 0 0 1 .902 0 .64.64 0 0 1 0 .904.634.634 0 0 1-.902 0 .64.64 0 0 1 0-.904m0-2.77a.634.634 0 0 1 .902 0c.249.245.249.653 0 .898a.634.634 0 0 1-.902 0 .63.63 0 0 1 0-.898m1.388 1.382a.645.645 0 0 1 .901 0 .64.64 0 0 1 0 .904.634.634 0 0 1-.901 0 .64.64 0 0 1 0-.904M24 1.827A1.827 1.827 0 0 0 22.171 0H1.835C.825 0 0 .816 0 1.827V8.81h2.724L0 15.19v6.976C0 23.171.819 24 1.835 24h20.336c1.01 0 1.829-.823 1.829-1.834V15.19h-2.724L24 8.81Z"/></svg>�����������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/opera.svg������������������������������������0000664�0000000�0000000�00000001123�14753064456�0024726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.051 5.238c-1.328 1.566-2.186 3.883-2.246 6.48v.564c.061 2.598.918 4.912 2.246 6.479 1.721 2.236 4.279 3.654 7.139 3.654a8.65 8.65 0 0 0 4.807-1.471 11.93 11.93 0 0 1-8.567 3.042C5.064 23.689 0 18.436 0 12 0 5.371 5.373 0 12 0h.045a11.97 11.97 0 0 1 7.953 3.055c-1.408-.93-3.051-1.471-4.81-1.471-2.858 0-5.417 1.42-7.14 3.654zM24 12c0 3.556-1.545 6.748-4.002 8.945-3.078 1.5-5.946.451-6.896-.205 3.023-.664 5.307-4.32 5.307-8.74 0-4.422-2.283-8.075-5.307-8.74.949-.654 3.818-1.703 6.896-.205A11.96 11.96 0 0 1 24 12"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/operagx.svg����������������������������������0000664�0000000�0000000�00000001720�14753064456�0025270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 12.01c0 3.412-1.462 6.674-4.013 8.943A12 12 0 0 1 11.992 24c-.178 0-.385-.019-.563-.019C5.016 23.681 0 18.403 0 11.991 0 5.37 5.372 0 11.99 0h.038c2.944 0 5.775 1.087 7.96 3.047A12.04 12.04 0 0 1 24 12.009zm-9.14 10.443c-2.729-.056-5.279-1.397-7.041-3.684-1.388-1.64-2.203-4.013-2.269-6.516v-.544c.047-2.521.881-4.893 2.269-6.534 1.744-2.269 4.294-3.61 7.012-3.666a10.7 10.7 0 0 0-2.784-.384h-.038c-5.99 0-10.865 4.894-10.865 10.866 0 5.812 4.528 10.584 10.34 10.847a10.1 10.1 0 0 0 3.375-.385zm7.996-10.444c0-3.065-1.303-5.99-3.59-8.053a7.7 7.7 0 0 0-4.228-1.284c-2.447 0-4.754 1.181-6.357 3.244-1.247 1.462-1.969 3.59-2.025 5.83v.526c.056 2.25.778 4.369 2.006 5.812l.02.02c1.602 2.071 3.909 3.252 6.355 3.252a7.7 7.7 0 0 0 4.229-1.284 10.9 10.9 0 0 0 3.59-8.063m-3.75 0c0 4.05-2.184 7.341-4.912 7.585 2.128-1.388 3.61-4.257 3.61-7.585s-1.463-6.197-3.61-7.575c2.728.244 4.912 3.525 4.912 7.575"/></svg>������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/opnsense.svg���������������������������������0000664�0000000�0000000�00000001514�14753064456�0025456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.419 11.08h5.259v1.847h-5.254l1.66.885v1.847l-5.111-2.732h-.005V11.08l5.111-2.737v1.847zm.005 5.54 5.255 2.808v1.841c.01 1.453-1.176 2.744-2.655 2.731H.322v-4.573l5.252-2.808H2.119v-1.847h1.297v1.719l3.216-1.719h2.395v1.846l-3.453 1.847h12.85l-3.455-1.847v-1.846h2.4l3.216 1.719v-1.719h1.297v1.847zM3.949 20.307v-.972l-1.83.979v1.84h18.905c.481-.004.848-.393.857-.879v-.96l-1.764-.943v.936zm-.033-6.496v1.847l5.111-2.732V11.08L3.916 8.343v1.847l1.665.89H.322v1.847h5.254zM23.679 0v4.572L18.42 7.386h3.462v1.847h-1.303V7.508l-3.222 1.725h-2.39V7.386l3.451-1.847H5.578l3.449 1.847v1.847H6.638L3.416 7.508v1.725H2.119V7.386h3.459L.322 4.572V2.731C.3 1.291 1.495-.012 2.976 0zm-1.798 1.846H2.976c-.488.009-.847.394-.857.88v.962l1.797.962v-.957h16.168v.956l1.797-.962z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/oppo.svg�������������������������������������0000664�0000000�0000000�00000002211�14753064456�0024574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.85 12.786zC1.639 12.774.858 12.2.858 11.321s.781-1.452 1.99-1.465c1.21.013 1.992.588 1.992 1.465s-.782 1.453-1.99 1.465m.034-3.638h-.073C1.156 9.175 0 10.068 0 11.32s1.156 2.147 2.811 2.174h.073c1.655-.027 2.811-.921 2.811-2.174S4.54 9.175 2.885 9.148zm18.27 3.638c-1.21-.012-1.992-.587-1.992-1.465s.782-1.452 1.991-1.465c1.21.013 1.991.588 1.991 1.465s-.781 1.453-1.99 1.465m.035-3.638h-.073c-1.655.027-2.811.92-2.811 2.173s1.156 2.147 2.81 2.174h.074C22.844 13.468 24 12.574 24 11.32s-1.156-2.146-2.811-2.173zm-6.126 3.638c-1.21-.012-1.99-.587-1.99-1.465s.78-1.452 1.99-1.465c1.21.013 1.991.588 1.991 1.465s-.781 1.453-1.99 1.465zm.036-3.638h-.073c-.789.013-1.464.222-1.955.574v-.37h-.857v5.5h.857v-1.931c.49.351 1.166.56 1.954.574h.074c1.655-.027 2.81-.921 2.81-2.174s-1.155-2.146-2.81-2.173m-6.144 3.638c-1.21-.012-1.99-.587-1.99-1.465s.78-1.452 1.99-1.465c1.21.013 1.991.588 1.991 1.465s-.781 1.453-1.99 1.465zm.037-3.638H8.92c-.789.013-1.464.222-1.955.574v-.37h-.856v5.5h.856v-1.931c.491.351 1.166.56 1.955.574h.073c1.655-.027 2.811-.921 2.811-2.174s-1.156-2.146-2.81-2.173z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/opsgenie.svg���������������������������������0000664�0000000�0000000�00000001327�14753064456�0025437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.002 0a5.988 5.988 0 1 1 0 11.975 5.988 5.988 0 0 1 0-11.975m9.723 13.026h-.03l-4.527-2.242a.67.67 0 0 0-.876.268 22.4 22.4 0 0 1-4.306 5.217 22.4 22.4 0 0 1-4.286-5.2.67.67 0 0 0-.876-.269l-4.535 2.226h-.03a.67.67 0 0 0-.248.902 28.9 28.9 0 0 0 4.55 5.933l-.002.001q.037.037.075.072.502.504 1.027.981.123.11.247.217c.315.278.632.555.96.82.144.117.295.227.441.341.277.216.552.434.837.639q.66.478 1.346.917a.96.96 0 0 0 1.007.017 29 29 0 0 0 1.428-.98q.1-.077.2-.153.538-.397 1.06-.82c.234-.19.46-.39.688-.588.17-.147.34-.291.506-.442.295-.268.58-.545.864-.825.061-.06.127-.118.188-.179l-.004-.002a28.9 28.9 0 0 0 4.565-5.949.67.67 0 0 0-.269-.902"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/opslevel.svg���������������������������������0000664�0000000�0000000�00000000752�14753064456�0025460�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.246 4.86 13.527.411a3.07 3.07 0 0 0-3.071 0l-2.34 1.344v6.209l3.104-1.793a1.52 1.52 0 0 1 1.544 0l3.884 2.241c.482.282.764.78.764 1.328v4.482a1.54 1.54 0 0 1-.764 1.328l-3.884 2.241V24l8.482-4.897a3.08 3.08 0 0 0 1.544-2.656V7.532a3.05 3.05 0 0 0-1.544-2.672M6.588 14.222V2.652L2.754 4.876A3.08 3.08 0 0 0 1.21 7.532v8.915c0 1.095.581 2.108 1.544 2.656L11.236 24v-6.209L7.352 15.55a1.53 1.53 0 0 1-.764-1.328"/></svg>����������������������mkdocs-material-9.6.4/material/templates/.icons/simple/optimism.svg���������������������������������0000664�0000000�0000000�00000001702�14753064456�0025464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0M9.61 8.705q.693 0 1.244.235.549.225.863.683.316.45.316 1.08 0 .19-.045.479a20 20 0 0 1-.324 1.558q-.315 1.234-1.09 1.846-.774.603-2.072.604-1.072 0-1.756-.504-.675-.514-.676-1.46 0-.197.045-.486.117-.648.334-1.558.612-2.477 3.16-2.477m4.17.09h2.397q1 0 1.603.414.613.414.612 1.197-.001.225-.055.47-.224 1.035-.908 1.53-.676.496-1.856.496h-1.217l-.414 1.973a.26.26 0 0 1-.1.162.27.27 0 0 1-.17.063h-1.224q-.1 0-.154-.063a.22.22 0 0 1-.027-.162L13.51 9.02a.26.26 0 0 1 .097-.162.28.28 0 0 1 .172-.063m-4.287 1.207q-.503 0-.863.297-.351.298-.504.91-.162.603-.324 1.477a2 2 0 0 0-.037.379q0 .828.865.828.504 0 .855-.297.36-.297.514-.91.206-.847.314-1.477a2 2 0 0 0 .038-.389q0-.819-.858-.818m5.45.045-.342 1.611h1.035q.379 0 .658-.207a.97.97 0 0 0 .377-.594q.027-.152.027-.27 0-.26-.152-.396-.153-.144-.524-.144z"/></svg>��������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/orange.svg�����������������������������������0000664�0000000�0000000�00000000173�14753064456�0025077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h24v24H0zm3.43 20.572h17.143v-3.429H3.43z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/orcid.svg������������������������������������0000664�0000000�0000000�00000000710�14753064456�0024721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0M7.369 4.378c.525 0 .947.431.947.947s-.422.947-.947.947a.95.95 0 0 1-.947-.947c0-.525.422-.947.947-.947m-.722 3.038h1.444v10.041H6.647zm3.562 0h3.9c3.712 0 5.344 2.653 5.344 5.025 0 2.578-2.016 5.025-5.325 5.025h-3.919zm1.444 1.303v7.444h2.297c3.272 0 4.022-2.484 4.022-3.722 0-2.016-1.284-3.722-4.097-3.722z"/></svg>��������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/oreilly.svg����������������������������������0000664�0000000�0000000�00000002360�14753064456�0025303�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.07 10.679v-.672H9.32v3.97h2.751v-.656H9.975v-1h2.002v-.657H9.975v-.985zm2.049 3.299v-3.971h.656v3.314h1.908v.657zm3.111 0v-3.971h.657v3.314h1.907v.657zm-4.456-3.971h.657v3.97h-.657zM1.079 11.023c-.25.25-.407.594-.407.985 0 .39.157.735.407 1a1.42 1.42 0 0 0 1.986 0c.25-.265.406-.61.406-1 0-.391-.156-.735-.407-.985a1.42 1.42 0 0 0-1.985 0M0 12.008c0-1.142.922-2.064 2.064-2.064s2.064.922 2.064 2.064a2.06 2.06 0 0 1-2.064 2.064A2.06 2.06 0 0 1 0 12.008m6.176-.344v-.985h1.329a.5.5 0 0 1 .5.485c0 .281-.234.5-.5.5zm1.657.61c.485-.141.829-.579.829-1.11 0-.642-.516-1.157-1.157-1.157H5.519v3.97h.657v-1.656h.922l.985 1.657h.782zM5.05 10.429a.477.477 0 0 1-.485.484.47.47 0 0 1-.484-.484c0-.266.203-.485.484-.485.266 0 .485.219.485.485m17.684-.422h-.798l-1.016 1.47-1.016-1.47h-.813l1.485 2.157v1.814h.672v-1.814zm.781.813a.404.404 0 0 1-.406-.407c0-.219.172-.406.406-.406.22 0 .407.187.407.406a.414.414 0 0 1-.407.407m0-.892a.487.487 0 0 0-.484.485c0 .266.219.485.484.485a.487.487 0 0 0 .485-.485.487.487 0 0 0-.485-.485m-.125.313h.203c.032 0 .063.031.063.063a.07.07 0 0 1-.063.062h-.203zm.344.063a.14.14 0 0 0-.14-.141h-.282v.5h.078v-.219h.14l.11.22h.094l-.11-.22a.15.15 0 0 0 .11-.14"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/org.svg��������������������������������������0000664�0000000�0000000�00000002534�14753064456�0024416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.169 0c-.566.004-2.16 3.312-3.376 5.94a2.2 2.2 0 0 1-.408-1.267c-.03-.582-1.089.237-.936 1.275-.068-.035-1.26.227-1.26.23-.23-.93-.802-1.618-1.15-.563-.701 1.663-.88 2.984.115 4.585-.908 4.058-6.948 6.053-6.32 9.33.175.004 1.634 3.48 6.337 2.057 5.557-1.577 8.624 2.116 8.978 2.375.52.526-1.348-4.573-5.302-6.865-2.339-1.276-.87-3.474-.703-4.25 0 0 1.874 1.312 3.232-.692 1.227.316 2.05-.224 3.105.158.64.28 3.336.11 2.334-1.396-.148.129.07.27-.075.46-.043.056-.128.232-.408.315-.314.149-.83.27-1.43-.37-.434-.32-.748-.04-.992-.063.152-.098.577-.315 1.264-.315.388 0 .594.336.854.338.174 0 .685-.262.787-.365.63-.41.697-.278 1.012-.905.17-.759-.215-.92-.332-1.129-.032-.483-.436-.67-.919-.326-1.106-.198-2.192-.105-2.728-.15-1.175-.164-2.153-.786-2.153-.786.143-.19.075-.6-.842-.628-.315-.104-.45-.2-.745-.307.61-1.37.674-2.007 1.418-4.004.261-1.053 1.039-2.685.643-2.682m-4.297 8.093c.03-.086.443.138.952.176.395.03.805.048 1.296-.025.03-.005.172.095-.15.194-.02.01-.062-.01-.065.196 0 .022-.01.04-.02.046-.15.152-.708.223-1.065.1-.436-.17-.482-.316-.517-.443-.305-.147-.47-.123-.43-.244zM9.685 10.2C8.86 9 8.929 8.36 8.96 7.256 7.961 8.288 6.855 8.3 5.18 8.58c-1.299.234-3.657 2.447-4.025 4.742-.043.608-.08 2.183.424 3.498.492 1.13.828 1.727 1.844 2.335-.882-3.169 5.296-5.33 6.263-8.955z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/organicmaps.svg������������������������������0000664�0000000�0000000�00000001457�14753064456�0026135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.995 3.972c.573 1.524-2.495 5.23-5.42 6.182-5.289-1.832-5.461 1.244-9.79 4.168 5.117 3.538 10.479.783 10.379-2.7-4.029 2.308-6.552 2.56-8 2.49 4.874-.965 10.136-3.958 11.238-5.217l.002.168c0 6.014-9.29 14.937-9.29 14.937s-4.862-4.656-7.551-9.52c-.376-.004-2.638.818-3.473-.284-.931-1.23 2.523-5.357 5.52-6.588 5.361 2.434 8.3-3.874 9.977-4.223C11.584.419 6.638 1.636 6.08 6.042c2.781-1.58 6.193-2.476 7.77-2.406-4.43.906-9.504 4.182-11.024 5.427C2.825 4.058 6.984 0 12.115 0a9.35 9.35 0 0 1 7.423 3.614s3.027-.985 3.457.358zm-1.061.447c-.399-.542-1.786.092-1.786.092q.293.488.52 1.013a9 9 0 0 1 .394 1.097s1.417-1.46.872-2.202M2.12 13.684c.43.586 1.93-.098 1.93-.098a10 10 0 0 1-.563-1.096 10 10 0 0 1-.425-1.185s-1.53 1.578-.942 2.38"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/origin.svg�����������������������������������0000664�0000000�0000000�00000002250�14753064456�0025111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.588 3.11a8.8 8.8 0 0 1 3.417.919 8.8 8.8 0 0 1 2.706 2.094 9.1 9.1 0 0 1 1.715 2.963 8.65 8.65 0 0 1 .465 3.502 8.2 8.2 0 0 1-.307 1.848 9 9 0 0 1-.674 1.703 20 20 0 0 1-1.47 2.412 17.6 17.6 0 0 1-1.762 2.118 18.6 18.6 0 0 1-4.286 3.281l-.037.026a.2.2 0 0 1-.109.023.3.3 0 0 1-.159-.097.27.27 0 0 1-.062-.173q0-.045.012-.085a.2.2 0 0 1 .037-.062q.416-.59.686-1.235a5.4 5.4 0 0 0 .368-1.359.12.12 0 0 0-.038-.085.11.11 0 0 0-.085-.038 9 9 0 0 1-.795.062 5 5 0 0 1-.796-.037 8.82 8.82 0 0 1-6.123-3.013 9.1 9.1 0 0 1-1.715-2.963 8.7 8.7 0 0 1-.465-3.502 8.2 8.2 0 0 1 .306-1.848 8.6 8.6 0 0 1 .675-1.68q.66-1.296 1.469-2.436a18 18 0 0 1 1.76-2.119A18.8 18.8 0 0 1 11.609.05l.038-.025a.2.2 0 0 1 .11-.025.3.3 0 0 1 .157.098.26.26 0 0 1 .062.174.2.2 0 0 1-.012.084.2.2 0 0 1-.036.061 6.5 6.5 0 0 0-.687 1.237q-.269.649-.366 1.358 0 .05.036.086a.12.12 0 0 0 .085.037q.393-.05.795-.06.407-.014.798.034zm-.807 12.367a3.32 3.32 0 0 0 2.521-.855 3.4 3.4 0 0 0 1.176-2.4 3.36 3.36 0 0 0-.856-2.535 3.3 3.3 0 0 0-2.4-1.162 3.36 3.36 0 0 0-2.534.855 3.3 3.3 0 0 0-1.164 2.4 3.38 3.38 0 0 0 .846 2.535q.942 1.09 2.411 1.162"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/osano.svg������������������������������������0000664�0000000�0000000�00000000263�14753064456�0024743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6.091A5.909 5.909 0 1 0 17.909 12 5.91 5.91 0 0 0 12 6.091M12 0A12 12 0 1 1 0 12 12 12 0 0 1 12 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/osf.svg��������������������������������������0000664�0000000�0000000�00000004327�14753064456�0024420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.088 0a2.984 2.984 0 0 0-2.986 2.984 3 3 0 0 0 .525 1.68 2.65 2.65 0 0 1 2.482-1.734c1.121 0 2.083.706 2.467 1.695a3 3 0 0 0 .496-1.64A2.984 2.984 0 0 0 12.088 0M5.65 2.666A2.984 2.984 0 0 0 2.666 5.65 2.984 2.984 0 0 0 5.65 8.635 2.984 2.984 0 0 0 8.635 5.65 2.984 2.984 0 0 0 5.65 2.666m12.7 0a2.984 2.984 0 0 0-2.985 2.984 2.984 2.984 0 0 0 2.985 2.985 2.984 2.984 0 0 0 2.986-2.985 2.984 2.984 0 0 0-2.986-2.984m-6.24.764a2.147 2.147 0 0 0-2.147 2.146 2.147 2.147 0 0 0 2.146 2.147 2.147 2.147 0 0 0 2.147-2.147 2.147 2.147 0 0 0-2.147-2.146zM9.112 6.04A3.5 3.5 0 0 1 6.128 9.1a2.15 2.15 0 0 0 1.363.493A2.147 2.147 0 0 0 9.64 7.447a2.15 2.15 0 0 0-.526-1.406zm5.782.047a2.15 2.15 0 0 0-.489 1.36 2.147 2.147 0 0 0 2.147 2.146 2.15 2.15 0 0 0 1.355-.489 3.494 3.494 0 0 1-3.013-3.017M2.985 9.016A2.984 2.984 0 0 0 0 12a2.984 2.984 0 0 0 2.984 2.984 3 3 0 0 0 1.659-.505A2.655 2.655 0 0 1 2.922 12c0-1.131.719-2.102 1.723-2.479a3 3 0 0 0-1.66-.505m18.03 0a3 3 0 0 0-1.673.52 2.655 2.655 0 0 1 1.71 2.474c0 1.12-.705 2.082-1.695 2.467a3 3 0 0 0 1.659.507A2.984 2.984 0 0 0 24 12a2.984 2.984 0 0 0-2.984-2.984zm-15.447.838A2.147 2.147 0 0 0 3.422 12a2.147 2.147 0 0 0 2.146 2.146A2.147 2.147 0 0 0 7.715 12a2.147 2.147 0 0 0-2.147-2.146m12.838.01a2.147 2.147 0 0 0-2.146 2.146 2.147 2.147 0 0 0 2.146 2.146 2.147 2.147 0 0 0 2.147-2.146 2.147 2.147 0 0 0-2.147-2.147zM7.492 14.376a2.15 2.15 0 0 0-1.398.518 3.496 3.496 0 0 1 3.015 3.037 2.15 2.15 0 0 0 .53-1.409 2.147 2.147 0 0 0-2.147-2.146m9.06 0a2.147 2.147 0 0 0-2.146 2.146 2.15 2.15 0 0 0 .492 1.362 3.495 3.495 0 0 1 3.047-2.996 2.15 2.15 0 0 0-1.392-.512zm-10.902.988a2.984 2.984 0 0 0-2.984 2.985 2.984 2.984 0 0 0 2.984 2.986 2.984 2.984 0 0 0 2.985-2.986 2.984 2.984 0 0 0-2.985-2.985m12.7 0a2.984 2.984 0 0 0-2.985 2.985 2.984 2.984 0 0 0 2.985 2.986 2.984 2.984 0 0 0 2.986-2.986 2.984 2.984 0 0 0-2.986-2.985m-6.35.908a2.147 2.147 0 0 0-2.146 2.147A2.147 2.147 0 0 0 12 20.566a2.147 2.147 0 0 0 2.146-2.146A2.147 2.147 0 0 0 12 16.273zm2.268 3.504A2.65 2.65 0 0 1 12 21.067a2.65 2.65 0 0 1-2.188-1.16 2.734 2.635 0 0 0-.46 1.458A2.734 2.635 0 0 0 12.086 24a2.734 2.635 0 0 0 2.734-2.635 2.734 2.635 0 0 0-.552-1.588z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/osgeo.svg������������������������������������0000664�0000000�0000000�00000001267�14753064456�0024745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.387 0 9.882 2.637a9.59 9.59 0 0 0-7.47 8.764h2.41a7.21 7.21 0 0 1 6.565-6.58V2.425ZM12.6 2.411v2.41a7.205 7.205 0 0 1 6.565 6.566H24l-2.637-1.504A9.59 9.59 0 0 0 12.6 2.41m-.613 3.29-.746 4.555 1.492.998.998 1.492 4.555-.76-4.555-.745 1.971-2.957-2.956 1.971zm.746 5.553-4.449-2.97 2.97 4.449 4.448 2.97zm-1.479 1.479-.999-1.492L5.701 12l4.554.746-1.97 2.957 2.943-1.971.759 4.554.759-4.554zm.733-1.266c.28 0 .52.24.52.52a.52.52 0 1 1-.52-.52M0 12.6l2.638 1.504a9.59 9.59 0 0 0 8.763 7.472v-2.411a7.21 7.21 0 0 1-6.58-6.566H2.425Zm19.165 0a7.205 7.205 0 0 1-6.565 6.565V24l1.504-2.637a9.59 9.59 0 0 0 7.472-8.763z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/oshkosh.svg����������������������������������0000664�0000000�0000000�00000002713�14753064456�0025304�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.925 9.864V7.232c0-.414.183-.517.449-.517h5.335c.265 0 .428.145.428.537v2.612h-1.57V8.657c0-.227 0-.29-.225-.29H10.72c-.246 0-.246.063-.246.27v1.227h-1.55zm4.641 4.979v.48c0 .226-.041.288-.224.288h-2.54c-.306 0-.327 0-.327-.289v-.479h-1.55v1.925c0 .413.163.517.428.517h5.335c.245 0 .449-.145.449-.538v-1.904zm-2.036-1.905h.876v1.384h1.047V12.31c0-.087-.043-.433-.342-.433h-.534l.897-1.492h-1.111l-.833 1.297v-1.297h-.983v3.937h.983zm11.466-1.072h-.898v-1.47h-1.004v3.915h1.004v-1.298h.898v1.298H24v-3.915h-1.004zm-18.34-.043v-.39h1.773v-1.037H3.886a.38.38 0 0 0-.385.367v1.73c0 .217.086.37.278.37h1.496v.432H3.5v1.016h2.564c.214 0 .364-.194.364-.41v-1.71a.36.36 0 0 0-.364-.368h-1.41zm14.07 0v-.39h1.772v-1.037h-2.542a.38.38 0 0 0-.385.367v1.73c0 .217.086.37.278.37h1.496v.432H17.57v1.016h2.564c.214 0 .363-.194.363-.41v-1.71a.36.36 0 0 0-.363-.368h-1.41zm-9.8.021H8.05v-1.448H7.024v3.915H8.05v-1.298h.876v1.298H9.95v-3.915H8.926zm-6.02-1.066v3.15c0 .21-.173.383-.383.383H.383A.384.384 0 0 1 0 13.928v-3.15c0-.21.172-.382.383-.382h2.14c.21 0 .383.172.383.382m-1 .804a.17.17 0 0 0-.17-.17H1.17a.17.17 0 0 0-.17.17v1.542c0 .094.077.17.17.17h.567a.17.17 0 0 0 .17-.17zm15.07-.804v3.15c0 .21-.173.383-.383.383h-2.14a.384.384 0 0 1-.383-.383v-3.15c0-.21.172-.382.383-.382h2.14c.21 0 .382.172.382.382zm-1 .804a.17.17 0 0 0-.17-.17h-.567a.17.17 0 0 0-.17.17v1.542c0 .094.076.17.17.17h.567a.17.17 0 0 0 .17-.17z"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/osmc.svg�������������������������������������0000664�0000000�0000000�00000001326�14753064456�0024566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.768 12.002c0 5.935-4.829 10.768-10.768 10.768-5.935-.005-10.763-4.833-10.763-10.768 0-5.94 4.828-10.767 10.768-10.767 5.934 0 10.763 4.828 10.763 10.767m.292-4.673a11.9 11.9 0 0 0-2.57-3.813 12 12 0 0 0-3.813-2.57A11.9 11.9 0 0 0 12.005 0a11.93 11.93 0 0 0-8.486 3.516A12 12 0 0 0 .948 7.33c-.63 1.481-.946 3.05-.946 4.672s.316 3.192.942 4.673a11.9 11.9 0 0 0 2.57 3.813A11.96 11.96 0 0 0 12 24c1.619 0 3.191-.32 4.673-.942a11.9 11.9 0 0 0 3.813-2.57 11.96 11.96 0 0 0 3.512-8.486c0-1.623-.311-3.191-.938-4.673M8.566 14.631V9.263l2.574 2.684zM7.327 6.296v11.422l8.116-8.455v6.767c0 .343.279.618.617.618a.62.62 0 0 0 .622-.622v-9.74l-4.677 4.77z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/osu.svg��������������������������������������0000664�0000000�0000000�00000003633�14753064456�0024436�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.698 10.362a1.94 1.94 0 0 0-.7-.516q-.421-.189-.988-.189c-.567 0-.704.063-.982.189s-.51.298-.692.516q-.273.328-.413.777-.139.448-.139.96 0 .511.14.952.139.44.412.767.274.329.692.512t.982.184c.565 0 .707-.062.988-.184q.422-.184.7-.512.279-.327.413-.767.135-.44.135-.952a3.3 3.3 0 0 0-.135-.96 2.1 2.1 0 0 0-.413-.777m-.965 2.81q-.22.372-.723.372-.494 0-.713-.372-.22-.373-.22-1.073c0-.7.073-.824.22-1.073q.22-.372.713-.372.503 0 .723.372.22.373.22 1.073t-.22 1.073m11.89-.83-.09-4.39a4.5 4.5 0 0 1 .69-.054q.351 0 .701.054l-.09 4.39q-.315.053-.601.053a3.5 3.5 0 0 1-.61-.054m1.319 1.4q0 .332-.054.664a4 4 0 0 1-.655.054 4 4 0 0 1-.664-.054 4 4 0 0 1-.054-.655q0-.323.054-.665a4 4 0 0 1 .655-.054q.323 0 .664.054.054.341.054.656m-3.223-4.03q.315 0 .638.053v4.461q-.288.099-.759.193a5.246 5.246 0 0 1-1.863.023 1.7 1.7 0 0 1-.74-.305q-.32-.234-.507-.683-.189-.449-.189-1.193V9.765a4 4 0 0 1 .638-.054q.313 0 .637.054v2.46q0 .367.058.606a.9.9 0 0 0 .18.377.66.66 0 0 0 .3.197q.18.058.422.058.332 0 .557-.062V9.765a4 4 0 0 1 .628-.054m-4.362 2.683q.08.225.08.548a1.4 1.4 0 0 1-.542 1.117q-.265.212-.642.333-.378.12-.853.12a5 5 0 0 1-.395-.013 3 3 0 0 1-.346-.045 4 4 0 0 1-.327-.076 4 4 0 0 1-.35-.116 2.6 2.6 0 0 1 .085-.49 3 3 0 0 1 .175-.48q.296.117.561.175.265.06.552.059.126 0 .274-.023a1 1 0 0 0 .274-.08.65.65 0 0 0 .21-.153.35.35 0 0 0 .086-.247q0-.216-.13-.31a1.3 1.3 0 0 0-.364-.166l-.556-.162q-.503-.143-.786-.426-.282-.283-.283-.848 0-.682.49-1.068.489-.386 1.332-.386.35 0 .692.062.341.063.691.189a2.5 2.5 0 0 1-.09.485 2.3 2.3 0 0 1-.17.44 4 4 0 0 0-.476-.158 2.2 2.2 0 0 0-.548-.067q-.305 0-.476.094a.32.32 0 0 0-.17.301q0 .197.121.278t.346.153l.511.153q.252.072.454.175t.345.255.225.377M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12c6.628 0 12-5.373 12-12S18.628 0 12 0m0 22.8C6.035 22.8 1.2 17.965 1.2 12S6.035 1.2 12 1.2 22.8 6.035 22.8 12 17.965 22.8 12 22.8"/></svg>�����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/otto.svg�������������������������������������0000664�0000000�0000000�00000002013�14753064456�0024604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.893 7.95c-1.195 0-2.168.37-2.855 1.132q.146-.398.156-.968h-4.191c-.914 0-1.437.402-1.796 1.437l.185-1.437H8.157c-.775 0-1.307.37-1.5 1.096-.524-.84-1.457-1.26-2.636-1.26C1.779 7.95.32 9.246.059 12.01l-.033.35c-.228 2.47 1.067 3.69 3.08 3.69 2.243 0 3.702-1.307 3.963-4.072l.033-.348c.059-.634.015-1.185-.114-1.655h1.899l-.545 4.66c-.108.925.392 1.35 1.23 1.35.512 0 .686-.034.882-.066l.675-5.944h2.21l-.544 4.66c-.11.925.392 1.35 1.23 1.35.511 0 .685-.034.881-.066l.675-5.944h1.089q.563 0 .915-.26c-.342.604-.566 1.366-.654 2.296l-.032.348c-.229 2.471 1.066 3.69 3.08 3.69 2.243 0 3.701-1.306 3.962-4.07l.033-.349c.229-2.46-1.067-3.68-3.08-3.68zM4.86 11.477l-.022.262c-.152 1.872-.762 2.449-1.513 2.449-.675 0-1.153-.457-1.055-1.676l.021-.272c.153-1.862.762-2.45 1.513-2.45.664 0 1.154.468 1.056 1.687m16.873 0-.022.262c-.153 1.872-.762 2.449-1.513 2.449-.675 0-1.154-.457-1.056-1.676l.022-.272c.152-1.862.762-2.45 1.513-2.45.664 0 1.154.468 1.056 1.687"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/outline.svg����������������������������������0000664�0000000�0000000�00000001066�14753064456�0025305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.081 21.857v.602a1.54 1.54 0 0 1-2.296 1.341l-9.242-5.198a1.54 1.54 0 0 1-.785-1.342V6.742c0-.557.3-1.07.785-1.343L12.785.201a1.54 1.54 0 0 1 2.296 1.343v.601l1.097-.331a1.54 1.54 0 0 1 1.984 1.476v.625l1.349-.169a1.54 1.54 0 0 1 1.731 1.529v13.451a1.54 1.54 0 0 1-1.731 1.528l-1.349-.169v.625a1.54 1.54 0 0 1-1.984 1.476zm0-1.608 1.54.461V3.29l-1.54.463zm3.081-14.782v13.067l1.54.192V5.275zM2.758 16.801V7.2zm1.54-10.059V17.26l9.242 5.199V1.544zm1.54 1.023 1.541-.77v10.01l-1.541-.77z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/overcast.svg���������������������������������0000664�0000000�0000000�00000002471�14753064456�0025455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 24C5.389 24.018.017 18.671 0 12.061V12C0 5.35 5.351 0 12 0s12 5.35 12 12c0 6.649-5.351 12-12 12m0-4.751.9-.899-.9-3.45-.9 3.45zm-1.15-.05L10.4 20.9l1.05-1.052zm2.3 0-.6.601 1.05 1.051zm.85 3.102L12 20.3l-2 2.001c.65.1 1.3.199 2 .199s1.35-.05 2-.199M12 1.5C6.201 1.5 1.5 6.201 1.5 12a10.45 10.45 0 0 0 7.051 9.899l2.25-8.35a1.95 1.95 0 0 1-.801-1.6c0-1.101.9-2.001 2-2.001s2 .9 2 2.001c0 .649-.301 1.2-.801 1.6l2.25 8.35A10.445 10.445 0 0 0 22.5 12c0-5.799-4.701-10.5-10.5-10.5m6.85 15.7a.774.774 0 0 1-1.049.15.68.68 0 0 1-.15-1.001s1.35-1.799 1.35-4.35-1.35-4.35-1.35-4.35a.68.68 0 0 1 .151-1.001.774.774 0 0 1 1.049.15c.1.101 1.65 2.15 1.65 5.2S18.949 17.1 18.85 17.2m-3.651-1.95c-.3-.3-.249-.85.051-1.15 0 0 .75-.799.75-2.1s-.75-2.051-.75-2.1c-.3-.301-.3-.801-.051-1.15a.69.69 0 0 1 1.051-.051C16.301 8.75 17.5 10 17.5 12s-1.199 3.25-1.25 3.301c-.301.299-.75.25-1.051-.051m-6.398 0c-.301.301-.75.35-1.051.051C7.699 15.199 6.5 14 6.5 12s1.199-3.199 1.25-3.301c.301-.299.801-.299 1.051.051.3.3.249.85-.051 1.15 0 .049-.75.799-.75 2.1s.75 2.1.75 2.1c.3.3.351.799.051 1.15m-2.602 2.101a.776.776 0 0 1-1.05-.15C5.051 17.1 3.5 15.05 3.5 12s1.551-5.1 1.649-5.2a.774.774 0 0 1 1.05-.15.68.68 0 0 1 .151 1S5 9.449 5 12s1.35 4.35 1.35 4.35c.25.3.15.75-.151 1.001"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/overleaf.svg���������������������������������0000664�0000000�0000000�00000000772�14753064456�0025434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.352.748C19.11-.51 7.365-.982 7.345 6.027 3.918 8.22 1.65 11.795 1.65 15.625a8.373 8.373 0 0 0 13.122 6.898 8.373 8.373 0 0 0-1.767-14.72c-.606-.234-1.923-.648-2.975-.559-1.5.955-3.33 2.916-4.195 4.87 2.59-3.083 7.505-2.426 9.194 1.228s-.995 7.824-5.02 7.8a5.5 5.5 0 0 1-4.195-1.933c-1.485-1.748-1.868-3.644-1.561-5.497 1.057-6.495 8.759-10.19 14.486-11.61-1.868.99-5.238 2.614-7.595 4.384C18.015 9.138 19.13 3.345 22.352.748"/></svg>������mkdocs-material-9.6.4/material/templates/.icons/simple/ovh.svg��������������������������������������0000664�0000000�0000000�00000000473�14753064456�0024423�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.881 10.095 2.563-4.45A11.93 11.93 0 0 1 24 11.555c0 2.88-1.017 5.523-2.71 7.594h-6.62l2.04-3.541h-2.696l3.176-5.513zm-2.32-5.243L9.333 19.14l.003.009H2.709A11.95 11.95 0 0 1 0 11.555c0-2.152.57-4.17 1.561-5.918L5.855 13.1 10.6 4.852z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/owasp.svg������������������������������������0000664�0000000�0000000�00000004055�14753064456�0024760�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.897 20.503c-.384 0-1.782-2.489-1.97-3.198-.393-1.486-.308-2.114-.285-2.314.072-.613.667-.92.703-1.748.01-.256.14-1.535.243-2.534a1.7 1.7 0 0 1-.733-.343c.676.908-.32 1.995-1.767 3.443-1.536 1.536-4.945 2.961-4.945 2.961s1.425-3.41 2.961-4.945c1.13-1.129 2.04-1.983 2.816-1.983.22 0 .427.067.627.216a1.7 1.7 0 0 1-.343-.733c-.999.103-2.278.232-2.534.244-.829.036-1.135.63-1.747.702-.07.008-.194.024-.388.024-.36 0-.963-.054-1.926-.31-.772-.203-3.648-1.84-3.14-2.045.26-.105 1.087-.176 2.175-.176 1.047 0 2.337.066 3.596.23 1.57.205 3.01.463 3.992.656q.024-.08.058-.154l-1.004-.48s-.8-.92-.715-.984l.012-.003c.126 0 .767.733.829.816l.605.202-.284-.249s-.388-1.438-.287-1.472h.004c.106 0 .459 1.25.489 1.34.07.06.303.152.596.32l-.308-.79s.14-1.305.243-1.305h.003c.105.021-.02 1.089-.047 1.221l.51.783a1.3 1.3 0 0 1 .463-.082c.184 0 .374.036.558.107-.236-.502-.218-1.025.095-1.338a.84.84 0 0 1 .353-.209.46.46 0 0 1 .457-.383c.127 0 .254.05.352.148a.5.5 0 0 1 .147.335c.151-.311.329-.73.317-.867-.03-.307-.386-.852-.39-.857a.076.076 0 0 1 .064-.119c.025 0 .05.012.064.035.016.023.381.582.414.927.018.198-.21.696-.333.95a2.23 2.23 0 0 1 .873.874c.245-.12.715-.334.927-.334l.024.001c.345.033.904.399.927.414a.076.076 0 0 1-.084.128c-.005-.004-.55-.36-.857-.39h-.015c-.15 0-.552.171-.852.317.12.004.242.053.335.147a.48.48 0 0 1 .012.681.46.46 0 0 1-.247.128.85.85 0 0 1-.21.354.92.92 0 0 1-.67.255c-.212 0-.441-.055-.667-.16.132.343.142.708.025 1.02l.783.51c.095-.019.666-.088.993-.088.13 0 .222.011.228.04.02.106-1.305.247-1.305.247l-.79-.308c.168.293.26.527.32.596.091.03 1.374.392 1.34.493q-.007.018-.063.017c-.283 0-1.41-.304-1.41-.304l-.248-.284.202.605c.087.065.876.755.813.841q-.006.007-.016.007c-.139 0-.967-.722-.967-.722l-.481-1.004a1 1 0 0 1-.154.058c.193.982.451 2.422.656 3.992.335 2.569.26 5.261.054 5.77q-.024.06-.076.06M12 24C5.373 24 0 18.627 0 12S5.373 0 12 0s12 5.373 12 12-5.373 12-12 12m0-22.153C6.393 1.847 1.847 6.393 1.847 12S6.393 22.153 12 22.153 22.153 17.607 22.153 12 17.607 1.847 12 1.847"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/owncloud.svg���������������������������������0000664�0000000�0000000�00000006256�14753064456�0025466�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.189 9.52a1.7 1.7 0 0 1-.22-.825c0-.926.751-1.677 1.677-1.677.34 0 .66.1.926.284a3.5 3.5 0 0 0-.311 1.457c0 .092.009.193.009.285-.065 0-.129-.01-.202-.01a3.7 3.7 0 0 0-1.88.486zm-.367 6.518a3.89 3.89 0 0 1-1.613-3.144c0-.33.045-.651.119-.954h-.101A3.23 3.23 0 0 0 0 15.167a3.232 3.232 0 0 0 5.06 2.659 2.16 2.16 0 0 1-.339-1.155c0-.22.037-.431.101-.633m.138-.348c.293-.56.816-.972 1.448-1.1.055-.01.12-.019.183-.028.065-.009.12-.009.184-.018h.082c.101 0 .193.01.294.018a4.924 4.924 0 0 1 .908-3.575 3 3 0 0 1-.358-.54l-.083-.166c-.027-.055-.055-.11-.073-.165a3.8 3.8 0 0 1-.211-.715c-.082-.01-.165-.01-.247-.01-.605 0-1.183.157-1.678.432-.055.027-.11.064-.165.091-.055.037-.101.065-.156.101a3.54 3.54 0 0 0-1.274 1.605c-.018.055-.046.119-.064.174s-.037.119-.055.174a3.4 3.4 0 0 0-.129.926A3.57 3.57 0 0 0 4.96 15.69zm11.321-4.135c.468-.247.99-.394 1.55-.43a3.24 3.24 0 0 0-3.218-2.952c-.064 0-.129 0-.193.009.028.183.046.376.046.568q0 .457-.11.871a4.9 4.9 0 0 1 1.925 1.934zm-8.608-2.3c.01.064.028.128.037.192.036.147.073.293.128.43.028.065.046.12.073.184.028.055.055.12.083.174.082.165.183.321.293.468.23-.257.477-.495.752-.706.055-.037.1-.073.156-.11l.165-.11a4.8 4.8 0 0 1 2.558-.761h.064c.064 0 .119 0 .183.01q.124.002.248.018a4.7 4.7 0 0 1 1.595.421c.045-.229.073-.458.073-.706a3.2 3.2 0 0 0-.083-.706c-.009-.064-.027-.119-.045-.174a3.19 3.19 0 0 0-3.09-2.365c-1.219 0-2.282.678-2.832 1.669-.028.055-.065.11-.092.165l-.083.183c-.146.376-.238.78-.238 1.21 0 .11.01.21.018.32.019.065.028.13.037.193zm14.558 5.463a1.4 1.4 0 0 0-.284.028c.009.082.009.165.009.238a3.85 3.85 0 0 1-1.064 2.659c.321.375.807.614 1.339.614.971 0 1.769-.798 1.769-1.77 0-.971-.798-1.769-1.77-1.769zm-.651.12c0-.065-.01-.13-.01-.193-.008-.064-.008-.129-.017-.184a3.5 3.5 0 0 0-3.337-2.979h-.184c-.064 0-.119 0-.183.01a3.55 3.55 0 0 0-1.393.393c.256.56.403 1.174.43 1.816 0 .064.01.128.01.192v.055c0 .083 0 .165-.01.248a4.85 4.85 0 0 1-1.402 3.126 3.5 3.5 0 0 0 2.613 1.164c.889 0 1.705-.34 2.328-.89.046-.045.092-.082.138-.128.045-.045.091-.091.128-.137a3.48 3.48 0 0 0 .908-2.356.6.6 0 0 1-.019-.138zM7.866 16.505c-.037-.055-.065-.11-.101-.165a5 5 0 0 1-.541-1.394 1.6 1.6 0 0 0-.358-.036H6.83c-.064 0-.12.009-.184.009-.064.009-.119.018-.183.037-.522.119-.953.476-1.183.944-.027.055-.055.11-.073.174l-.055.174a1.7 1.7 0 0 0-.055.43c0 .34.101.66.266.927.037.055.064.1.11.156.037.046.073.091.12.137a1.76 1.76 0 0 0 1.283.55 1.77 1.77 0 0 0 1.65-1.127 4.6 4.6 0 0 1-.532-.651.5.5 0 0 1-.128-.165M16.5 14.24c.01-.073.01-.155.01-.238v-.12c0-.65-.138-1.264-.386-1.823l-.082-.165-.083-.165a4.54 4.54 0 0 0-1.723-1.76c-.055-.028-.11-.065-.165-.092l-.165-.083a4.5 4.5 0 0 0-1.825-.43h-.229c-.082 0-.156.009-.229.009a4.4 4.4 0 0 0-1.962.632c-.055.037-.11.064-.156.101-.055.037-.1.073-.155.11-.303.22-.578.468-.816.752-.037.046-.083.091-.12.146-.036.046-.073.101-.11.147a4.47 4.47 0 0 0-.843 2.622c0 .257.018.513.064.752.01.073.028.137.037.21.018.074.037.147.055.23.11.412.284.797.504 1.155.037.055.064.11.101.156.037.055.073.1.11.155q.126.18.266.33c.055.055.1.12.156.175.045.055.1.1.156.146a4.53 4.53 0 0 0 6.05.083c.046-.037.092-.083.138-.12.045-.045.091-.082.137-.128a4.55 4.55 0 0 0 1.238-2.567z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/oxygen.svg�����������������������������������0000664�0000000�0000000�00000001243�14753064456�0025134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.89 12c0-6.627-5.324-12-11.89-12S.109 5.373.109 12 5.433 24 12 24c2.014 0 3.91-.508 5.573-1.4.62.354 1.338.558 2.105.558 2.326 0 4.212-1.865 4.212-4.165 0-.946-.319-1.818-.857-2.517.552-1.383.857-2.894.857-4.476m-21.402.005c0-5.448 4.269-9.864 9.535-9.864s9.535 4.416 9.535 9.864c0 1.07-.166 2.099-.471 3.063a4.2 4.2 0 0 0-1.408-.239c-2.326 0-4.212 1.865-4.212 4.165 0 .72.185 1.397.51 1.988a9.2 9.2 0 0 1-3.953.888c-5.267-.001-9.536-4.418-9.536-9.865m17.191 9.864c-1.514.021-2.84-1.267-2.819-2.788 0-1.54 1.262-2.788 2.819-2.788 1.507-.025 2.843 1.27 2.819 2.788 0 1.54-1.263 2.788-2.819 2.788"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/oyo.svg��������������������������������������0000664�0000000�0000000�00000001215�14753064456�0024430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.843 16.185C22.135 16.185 24 14.307 24 12c0-2.309-1.865-4.185-4.157-4.185-2.293 0-4.158 1.876-4.158 4.185 0 2.307 1.865 4.185 4.158 4.185m0-5.677c.817 0 1.482.67 1.482 1.492s-.666 1.49-1.483 1.49A1.49 1.49 0 0 1 18.36 12c0-.824.665-1.493 1.482-1.493zM4.157 16.185c2.293 0 4.158-1.878 4.158-4.185 0-2.309-1.865-4.185-4.158-4.185C1.866 7.815 0 9.691 0 12c0 2.307 1.866 4.185 4.157 4.185m0-5.677c.818 0 1.483.67 1.483 1.492s-.665 1.49-1.483 1.49A1.49 1.49 0 0 1 2.677 12c0-.824.664-1.493 1.48-1.493zm7.84-.094L10.722 7.87H7.733l2.791 5.564v2.62h2.948v-2.62l2.791-5.564h-2.99z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/p5dotjs.svg����������������������������������0000664�0000000�0000000�00000004402�14753064456�0025213�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.345 9.122v.784h.035q.105-.164.274-.333a1.9 1.9 0 0 1 .416-.305 2.56 2.56 0 0 1 1.253-.31 2.63 2.63 0 0 1 1.964.854q.363.399.561.936.2.539.2 1.159t-.194 1.163a2.9 2.9 0 0 1-.549.948 2.6 2.6 0 0 1-.866.644q-.51.24-1.152.24-.597 0-1.094-.246a1.86 1.86 0 0 1-.766-.668h-.024v3.558H0V9.12zm3.276 2.785q0-.328-.1-.65a1.8 1.8 0 0 0-.298-.579 1.5 1.5 0 0 0-.503-.416 1.5 1.5 0 0 0-.714-.157 1.44 1.44 0 0 0-.691.163 1.8 1.8 0 0 0-.52.421 1.8 1.8 0 0 0-.328.585 1.97 1.97 0 0 0 0 1.305 1.8 1.8 0 0 0 .328.58 1.7 1.7 0 0 0 .52.414q.305.158.691.159a1.48 1.48 0 0 0 1.217-.586q.198-.256.297-.585a2.3 2.3 0 0 0 .1-.654zm13.682-3.054v6.223q0 .503-.082.952a2 2 0 0 1-.31.785 1.6 1.6 0 0 1-.62.532q-.392.199-1.024.199a3 3 0 0 1-.35-.024 4 4 0 0 1-.281-.047l.117-1.192a1.8 1.8 0 0 0 .386.047.75.75 0 0 0 .397-.094.63.63 0 0 0 .234-.258q.082-.163.105-.38.024-.216.024-.461V8.853zm4.784 1.765a1.6 1.6 0 0 0-.514-.427 1.45 1.45 0 0 0-.714-.18q-.339 0-.62.14a.48.48 0 0 0-.28.467.47.47 0 0 0 .31.462q.309.135.906.276.315.07.638.187.322.115.585.31a1.5 1.5 0 0 1 .427.48q.163.286.163.695 0 .515-.192.872-.194.356-.515.58a2.2 2.2 0 0 1-.75.32 4 4 0 0 1-.883.101 3.5 3.5 0 0 1-1.275-.24 2.7 2.7 0 0 1-1.03-.685l.925-.866a1.83 1.83 0 0 0 1.44.703q.15 0 .31-.035a1 1 0 0 0 .29-.112.6.6 0 0 0 .218-.205.6.6 0 0 0 .081-.316.52.52 0 0 0-.32-.503q-.324-.15-.967-.303a5 5 0 0 1-.614-.182 2 2 0 0 1-.531-.292 1.35 1.35 0 0 1-.375-.451 1.4 1.4 0 0 1-.14-.667q0-.467.192-.806a1.66 1.66 0 0 1 .51-.556q.315-.217.713-.322a3.2 3.2 0 0 1 .819-.105q.608 0 1.187.21t.919.643zm-8.29 2.931.837-.252.164.505-.833.283.517.734-.436.316-.544-.721-.53.701-.423-.322.517-.708-.84-.302.165-.506.843.271v-.872h.564zm-2.887-2.644a2.3 2.3 0 0 0-.602-.819 2.7 2.7 0 0 0-.907-.509 3.5 3.5 0 0 0-1.13-.175q-.221 0-.497.024a2.4 2.4 0 0 0-.474.082l.082-1.79h3.382V6.453H7.05l-.14 4.527a4 4 0 0 1 .426-.175 7 7 0 0 1 .491-.147 5 5 0 0 1 .515-.099 4 4 0 0 1 .497-.035q.34 0 .668.076.327.075.591.269.262.193.426.509t.164.795q0 .375-.123.673a1.4 1.4 0 0 1-.333.497 1.4 1.4 0 0 1-.49.304q-.284.106-.598.106-.562 0-.972-.299a1.63 1.63 0 0 1-.584-.79l-.015.006-1.016.952q.307.504.797.838.713.486 1.754.486a3.4 3.4 0 0 0 1.17-.2 2.7 2.7 0 0 0 1.609-1.491q.24-.543.24-1.233 0-.633-.216-1.118z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/packagist.svg��������������������������������0000664�0000000�0000000�00000030026�14753064456�0025572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.214 23.975c-.098-.053-.329-.062-1.615-.062h-1.26l-.017-.088-.096-.431a4 4 0 0 1-.07-.354c.005-.007-.012-.056-.038-.107l-.048-.094-.547.085c-.301.046-.598.1-.659.116-.1.03-.11.03-.103.004.038-.14.044-.201.028-.266-.018-.07-.017-.072.238-.645.276-.622.266-.594.237-.634-.018-.025-.042-.02-.307.07-.159.05-.294.093-.301.09a17 17 0 0 1 .414-.732c.451-.773.566-.976.566-1.003 0-.01-.12-.146-.271-.304-.15-.157-.311-.329-.357-.384a.6.6 0 0 0-.112-.11c-.05-.017-.264-.231-.738-.734a16 16 0 0 0-.525-.542c-.062-.05-.077-.074-.107-.175a7 7 0 0 0-.291-.714l-.096-.201v-.178c0-.271-.056-.542-.277-1.331l-.054-.191-.087-.01c-.193-.017-.283-.123-.431-.504a6 6 0 0 0-.231-.472c-.1-.191-.221-.428-.271-.532l-.086-.185-.08-.01a.7.7 0 0 0-.361.05c-.12.05-.345.063-.618.037l-.399-.038-.199-.02-.107-.191c-.161-.284-.161-.285-.238-.324-.09-.046-.161-.046-.572 0l-.325.035-.245-.035c-.645-.094-.797-.166-.797-.375 0-.042-.045-.261-.102-.489-.13-.528-.218-1.126-.195-1.332.034-.294.273-.996.636-1.87l.142-.341.023-.547c.142-3.274.178-3.76.284-3.951.035-.062.468-.431.644-.552.335-.224 1.503-.8 2.802-1.379l.384-.171.195-.012.193-.01.522.329.521.329.423-.2.658-.308c.235-.108.236-.11.367-.253.184-.201.492-.566.592-.703.118-.161.395-.388.816-.672.147-.098.185-.116.569-.264l.231-.09h.49c.451 0 .502.003.655.037.358.078.652.193.686.267.022.05.07.08.187.12.14.048.311.168 1.224.863.489.373.472.366 1.539.719l.298.1.176.211c.201.241.358.404.404.419.07.022.485-.08 1.009-.249.266-.085.303-.093.351-.077.03.01.175.02.321.02.271.005.514.034 1.117.137.153.027.281.048.283.048s.244.419.537.933c.293.512.61 1.048.705 1.192.167.249.174.264.189.375.026.191.08 1.008.09 1.309l.023.896c.02.843.036 1.04.09 1.154.093.199.276.747.572 1.719l.12.401.008.93-.14.728-.158.813-.016.083-.439.264-.441.265-.321-.016c-.179-.01-.335-.016-.349-.016-.03 0-.066.113-.135.411-.04.176-.042.178-.092.187l-.666.106c-.92.145-1.037.181-1.341.424-.264.211-.264.208-.556 1.681a17 17 0 0 1-.185.856c-.105.317-.941 1.708-1.246 2.074l-.165.199.064.228c.035.126.073.265.083.309.016.07.314 1.206.421 1.609l.038.14-.201-.084-.328-.136a.6.6 0 0 0-.13-.046c-.003.004.033.15.08.327.08.288.187.763.177.773-.003 0-.15-.008-.331-.022a6 6 0 0 0-.381-.02l-.055.005-.181.662c-.1.363-.184.664-.187.667-.01.007-.536-.02-1.005-.05-.54-.035-.7-.032-.836.017-.125.045-.241.05-.306.014zm1.957-.348c0-.026.023-.181.05-.345.027-.165.05-.337.05-.383q0-.085.04-.175c.02-.05.036-.09.033-.093-.002-.002-.368-.03-.813-.062-.637-.046-.86-.067-1.053-.103l-.244-.046-.58.072c-.414.05-.588.078-.607.095-.02.02-.201.042-.712.094-.376.038-.717.075-.756.083l-.072.013.004.083c.003.065.02.115.083.231.06.113.088.191.12.331.02.1.042.184.046.188.003.003.973.014 2.157.023 2.034.016 2.154.018 2.191.045.046.035.064.02.064-.05zm-4.782-1.179c.873-.123 1.226-.168 1.572-.194.387-.028.897-.087 1.259-.143.057-.01.248-.02.424-.026l.321-.01.377.097.379.098.682.04c.377.023.687.04.69.036a3 3 0 0 0-.07-.229c-.042-.122-.11-.333-.155-.468l-.077-.244-.231-.072-.231-.073-.156.066-.156.065-1.776.057-1.774.058-.118-.06-.118-.057H9.8l-.269.597c-.148.328-.271.602-.276.609-.008.016-.124.03 1.134-.147m6.127-1.036c0-.017-.431-1.435-.444-1.457-.007-.012-.05.024-.115.096l-.105.115.154.568.153.568.169.06c.181.064.191.067.191.05zm-6.788-.713.191-.355-.057-.083c-.032-.046-.063-.08-.068-.073-.007.006-.142.238-.303.515s-.297.511-.302.517c-.004.01.072-.026.171-.075l.176-.09zm2.957-.072c.106-.306.193-.562.193-.57a1 1 0 0 0-.198-.075 4 4 0 0 1-.201-.066.6.6 0 0 1 .063-.11l.068-.104.405-.02c.706-.033 1.114-.155 1.51-.451.15-.11.214-.128.296-.085.07.04.12.128.106.191-.01.042-.028.056-.241.197-.201.13-.876.428-1.114.492-.136.035-.289.12-.323.181-.04.066-.159.92-.132.947.006.006 1.148-.04 1.33-.056.11-.008.117-.01.161-.067.024-.032.13-.153.238-.267.106-.113.301-.333.431-.488s.328-.381.437-.502c.171-.189.263-.318.619-.857.878-1.324.937-1.441 1.003-1.969.045-.375.067-.447.214-.697.146-.249.294-.965.213-1.033-.072-.06-.153-.032-.427.15-.512.341-1.039.841-1.114 1.053-.034.095-.223.373-.285.418l-.519.369c-.582.414-.52.349-.849.879l-.11.174-.327.173-.328.171-.616.015c-1.23.028-1.288.022-1.943-.207l-.431-.153-.344-.303c-.191-.168-.53-.47-.754-.672l-.407-.368-.142-.321a29 29 0 0 1-.497-1.15c-.084-.226-.09-.231-.275-.428-.341-.361-.529-.757-.757-1.612q-.067-.248-.1-.281-.029-.025-.023-.012c.006.01 0 .046-.012.082-.157.441-.209.768-.249 1.559-.02.359-.02.351.096.983.225 1.226.296 1.5.409 1.565.04.024.165.146.291.286.341.376.448.485.604.61.285.231.735.71.901.961.04.06.102.14.135.177.15.163.462.6.899 1.259l.314.475.13-.007c.09-.006.329.012.74.054.336.035.635.064.665.065h.056zm-2.276.455a1 1 0 0 0-.122-.201c-.075-.107-.14-.195-.15-.191-.01.003-.138.268-.181.374-.01.031.341.044.453.018m2.766-2.758c.046-.033.127-.055.376-.105.311-.06.375-.083.628-.211a.3.3 0 0 0 .092-.11.7.7 0 0 1 .11-.138c.04-.036.055-.062.055-.098 0-.078.227-.275 1.091-.946a.9.9 0 0 0 .245-.268c.074-.11.158-.211.263-.309.085-.08.291-.284.459-.451.168-.171.391-.376.497-.462a3 3 0 0 0 .241-.204c.03-.032.157-.106.335-.196.159-.08.295-.156.301-.168.018-.03.09-.06.508-.217.889-.331 1.479-.492 1.79-.492.08 0 .096-.052.067-.219-.068-.395-.296-.552-.808-.552h-.181l-.063-.067c-.06-.065-.067-.087-.124-.325-.115-.485-.185-.532-.742-.516-.435.013-.552.06-1.754.718-.602.331-1.035.702-1.543 1.33a1 1 0 0 1-.11.123c-.311-.002-.303-.472.017-.949l.106-.157-.084-.035c-.236-.107-.532-.123-.74-.04-.291.116-1.023.525-1.117.622-.098.103-.187.106-.187.007 0-.122.114-.285.289-.411.04-.032.11-.088.153-.127a1.6 1.6 0 0 1 .435-.261c.147-.06.142-.052.09-.15-.14-.255-.525-.546-.915-.689-.05-.02-.169-.07-.263-.112-.221-.102-.331-.124-.672-.136-.244-.01-.283-.014-.267-.033.074-.09.311-.133.79-.144l.384-.01.248.11c.697.301.963.462 1.074.645.076.128.084.133.194.112.266-.05.518.032.765.249.135.12.184.13.274.063a.77.77 0 0 0 .273-.502c.035-.271-.06-1.136-.153-1.385-.07-.188-.057-.196.087-.046.171.178.171.178.326-.11.04-.076.103-.176.138-.221.291-.367.281-1.047-.017-1.347-.15-.15-.404-.291-.815-.446-.403-.155-.47-.211-.77-.628-.361-.506-.425-.567-.724-.708-.617-.293-2.101-.562-2.57-.467-.441.09-1.04.447-1.32.789-.175.213-.63.377-1.274.462-.84.108-1.254.828-1.041 1.806.04.191.038.189.165.034.405-.505 1.209-.976 1.93-1.13.575-.12 1.475-.126 2.01-.01l.096.022h-.144c-.75.01-1.904.257-2.722.584l-.176.07-.016.087c-.015.083-.022.093-.281.351-.536.539-.69.796-.775 1.286-.04.239.036.589.15.678.027.022.047.05.042.06a3 3 0 0 0-.026.225c-.076.845.323 1.866.96 2.453l.144.133.108-.09c.317-.259.859-.614.888-.582.043.05.034.09-.033.155-.085.082-.196.226-.496.642l-.259.361.007.104c.01.13.076.337.147.451.03.046.09.15.136.229.167.284.321.52.424.642.096.117.184.241.284.401q.041.068.07.06c.04-.01.09.026.279.204.186.171.083.122.845.408.823.309 1.131.369 1.465.286.09-.022.097-.022.168.015.09.047.09.047.163-.002zm-6.348-3.82c.003-.003.02-.103.037-.225.017-.12.053-.286.08-.367l.193-.644c.177-.602.159-.55.178-.52.025.042.015-.01-.016-.074a2 2 0 0 1-.066-.171l-.034-.108.034-.588.034-.589-.055-.397a6 6 0 0 0-.064-.406c-.032-.032-.464.145-.599.245-.175.13-.401.679-.492 1.194-.12.694-.008 1.647.226 1.916.07.08.226.378.357.68l.034.077.075-.01a.4.4 0 0 0 .078-.013m14.775-1.31c.126-.088.238-.177.246-.196.015-.037.213-1.099.281-1.507l.042-.257-.042-.447-.042-.446-.125-.48c-.124-.475-.128-.484-.264-.755-.216-.431-.194-.236-.379-3.358l-.035-.578-.053-.055c-.07-.075-.337-.458-.963-1.388a14 14 0 0 0-.546-.781 16 16 0 0 0-.821-.146c-.395-.055-.736-.025-1.055.094-.128.048-.14.05-.201.03-.138-.047-.293-.003-.569.164l-.145.087-.166-.221c-.191-.251-.194-.255-.57-.502-.64-.416-.716-.449-1.632-.692-.353-.094-.311-.062-.993-.742l-.535-.532-.585.008c-.989.015-1.482.06-1.6.142-.712.508-1.094.888-1.538 1.531l-.103.15-.386.184c-.422.203-1.034.392-1.201.369-.092-.012-.421-.18-.658-.341-.438-.291-.739-.326-1.088-.124-.284.163-.483.269-1.286.675-.861.437-.965.496-1.246.705l-.164.123-.143.288c-.311.626-.305.602-.321 1.415-.03 1.52-.035 2.008-.016 2.122.03.179.036.374.016.505-.028.171-.387 1.387-.585 1.977-.066.199-.135.52-.159.736-.01.07 0 .175.036.391.026.164.07.451.097.64.066.464.12.562.358.64.209.07.309.063.732-.045.793-.203.813-.197 1.134.378.078.137.112.184.143.193.105.03.725.01.866-.027l.194-.05.056-.015-.02-.096a2.4 2.4 0 0 1-.023-.624c.024-.268.064-.506.153-.889.004-.017-.006-.004-.022.03l-.03.06-.035-.157a1.9 1.9 0 0 0-.291-.672 6.4 6.4 0 0 1-.421-.87l-.093-.231.01-.161c.05-.718.224-1.186.597-1.595.227-.248.293-.351.325-.522.025-.13.106-.807.171-1.395l.057-.547.241-.715c.13-.394.231-.722.225-.728a9 9 0 0 0-.693-.321c-.124-.035-.412-.023-.632.027-.705.161-1.224.532-1.25.893-.007.08-.362.827-.395.828-.02 0-.074-.098-.093-.169-.02-.074-.012-.115.073-.351.032-.088.097-.307.145-.487.12-.443.14-.477.405-.599l.467-.221c.675-.325 1.657-.578 1.899-.49.143.05.359.226.552.446l.092.104-.09.246c-.458 1.266-.575 1.617-.606 1.823-.071.458-.066 1.465.008 1.695.058.188.054.195-.223.377-.477.316-.953.919-.973 1.233-.013.211.09.634.221.888.052.105.589.913.606.913.006 0 .03-.04.057-.09a1.9 1.9 0 0 1 .704-.773c.316-.204.317-.204.341-.313.161-.725.425-1.144.88-1.385l.197-.105-.095-.035c-.145-.053-.271-.143-.428-.308-.697-.733-.966-1.566-.688-2.127.02-.04.052-.122.072-.184.245-.755.931-1.164 1.842-1.101.896.063 1.294.296 1.618.94.311.624.294 1.191-.055 1.751l-.066.106.06-.058c.068-.063.766-.374.946-.421.268-.07.659-.03 1.894.193.499.09.584.125.823.341.05.048.09.076.09.064s-.01-.104-.025-.206c-.083-.617.034-1.401.269-1.786.284-.466 1.375-.883 1.974-.754.301.065.769.355 1.021.635.032.036.06.056.06.045 0-.01-.02-.325-.04-.699a11 11 0 0 1-.03-.689c.008-.006.144-.084.306-.174l.293-.161.052.04c.044.032.169.063.78.191l.763.164c.027.006.085.09.216.307.097.164.271.448.388.632.425.68.502.856.411.941-.093.087-.108.086-.169-.007-.03-.045-.201-.314-.379-.595a16 16 0 0 0-.351-.539c-.02-.02-.998-.346-1.487-.497-.239-.073-.492 1.151-.434 2.099.02.319.02.321.291.57.169.156.858 1.126.993 1.397l.067.136-.006.826-.005.825-.105.177c-.441.742-.694 1.021-.985 1.096-.161.04-.339.175-.324.241.005.022.013.154.02.291q.01.252.027.253c.01 0 .073-.01.14-.023.455-.087.958-.057 1.261.073.11.047.116.064.128.344.017.375.042.407.353.457.348.055.468.114.695.344l.128.13.462.002.462.002zM9.954 3.808a13 13 0 0 0-.833-.494c-.338-.171-.351-.201-.117-.309.341-.157.474-.11.908.315.168.165.369.349.448.411.156.118.328.275.328.297 0 .027-.115.14-.14.14a9 9 0 0 1-.594-.36m3.987.19a.5.5 0 0 1-.235-.191l-.042-.07.03-.068c.04-.095.076-.13.231-.231.074-.05.159-.11.188-.134.159-.14 1.179-.558 1.358-.558.1 0 .13.02.176.125a.6.6 0 0 0 .065.12c.05.056-.06.115-.341.179-.15.034-.502.176-.818.328l-.258.125-.148.201c-.08.11-.15.201-.15.201L13.94 4zm2.25 8.609c.117-.103.612-.334.898-.418.104-.03.171-.307.171-.72v-.234l-.092-.191c-.097-.201-.203-.378-.221-.371-.006.002-.203.251-.437.556l-.427.552.01.249.01.444c0 .225-.006.218.09.134zm1.639-1.799.344-.132.112-.169c.391-.592.512-.901.529-1.379l.01-.308-.228-.361c-.386-.607-.636-1.018-.722-1.187a.4.4 0 0 0-.062-.1c-.062-.04-.245.12-.458.401-.15.201-.226.254-.674.478-.592.295-.876.341-1.292.213a7 7 0 0 0-.552-.156c-.042 0 .133.206.294.347.126.11.221.161.346.181.191.03.547.231 1.094.612.303.214.261.133.291.55l.027.351.08.078c.1.098.214.251.381.51.07.112.13.205.132.205zm-1.719-3.119c.446-.164.704-.665.527-1.023-.194-.391-.634-.702-.998-.702-.425 0-.979.482-.979.853 0 .008.058-.038.127-.104.329-.311.692-.346 1.05-.105.385.258.469.77.173 1.064-.078.08-.067.08.1.02zm-7.704-.16a1 1 0 0 1-.026-.396c.145-.778 1.09-1.005 1.51-.364l.064.1-.009-.129c-.069-.971-1.094-1.234-1.726-.443-.356.447-.299 1.13.105 1.274.103.036.107.034.08-.042zm8.86-.527c.261-.439.226-1.053-.088-1.53-.421-.642-1.084-.841-1.806-.542-.559.231-.776.517-.825 1.081-.022.251-.012.281.058.176.238-.354.644-.547 1.094-.522.712.038 1.24.539 1.385 1.316l.034.183.008.04.04-.05a2 2 0 0 0 .1-.154zm-1.431.09a.13.13 0 0 0 .04-.096.13.13 0 0 0-.04-.095.13.13 0 0 0-.096-.04q-.058 0-.097.04a.13.13 0 0 0-.038.096c0 .123.146.185.233.098zm-8.218-.209c.138-.773.732-1.289 1.48-1.289.485 0 .838.274 1.043.809.054.14.06.143.087.035.07-.274-.01-.848-.163-1.149-.26-.518-1.032-.779-1.751-.591-.415.106-.9.64-.997 1.097-.1.468-.038.849.191 1.167.077.108.077.108.11-.08zm1.928 0a.13.13 0 0 0 .04-.096q0-.058-.04-.097c-.027-.028-.056-.041-.096-.041s-.07.013-.096.04a.13.13 0 0 0-.04.097.136.136 0 0 0 .232.097"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/packer.svg�����������������������������������0000664�0000000�0000000�00000000347�14753064456�0025074�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.844 0v3.38l5.75 3.32v10.148l2.705 1.552c1.676.967 3.045.388 3.045-1.285V9.668c-.014-1.687-1.382-3.832-3.059-4.799zM4.656 2.932v16.574L12.436 24V7.426z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/packt.svg������������������������������������0000664�0000000�0000000�00000001172�14753064456�0024726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.965 4.898q-1.061.001-1.908.452a4 4 0 0 0-.891.642v-.937H7.488v14.047h2.657V14.1q.39.374.898.638.859.44 1.92.44 1.37 0 2.453-.674c1.237-.77 2.328-2.27 2.328-4.453 0-2.206-1.09-3.704-2.328-4.477q-1.08-.676-2.451-.676M3.8 5.055 0 9.79l3.822 5.133H7.09L3.012 9.79l3.875-4.736Zm13.312 0 3.875 4.736-4.078 5.133h3.268L24 9.79l-3.8-4.736Zm-4.619 2.318c1.007 0 1.788.493 2.2 1.275.452.86.395 2.034 0 2.78-.221.419-.84 1.277-2.2 1.277q-.736.002-1.299-.336a2.34 2.34 0 0 1-.879-.941q-.316-.604-.316-1.399c0-.795.105-.978.316-1.38.393-.748 1.156-1.276 2.178-1.276"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/paddle.svg�����������������������������������0000664�0000000�0000000�00000000767�14753064456�0025066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.363 7.904v.849a3.95 3.95 0 0 1 3.65 2.425c.198.476.3.987.299 1.502h.791c0-1.04.416-2.037 1.157-2.772a3.96 3.96 0 0 1 2.792-1.149V7.91a3.96 3.96 0 0 1-3.65-2.425 3.9 3.9 0 0 1-.299-1.502h-.791c0 1.04-.416 2.037-1.157 2.772a3.96 3.96 0 0 1-2.792 1.149M13.105 2.51H6.312V0h6.793c4.772 0 8.532 3.735 8.532 8.314s-3.76 8.314-8.532 8.314H9.156V24H6.312v-9.882h6.793c3.319 0 5.688-2.352 5.688-5.804 0-3.451-2.37-5.804-5.688-5.804"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/simple/paddlepaddle.svg�����������������������������0000664�0000000�0000000�00000002224�14753064456�0026226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.172 4.832a1.15 1.15 0 0 0 0 2.298 1.15 1.15 0 0 0 0-2.298m9.991 0a1.15 1.15 0 0 0 0 2.298 1.15 1.15 0 0 0 0-2.298M6.673 8.006a.08.08 0 0 0-.077.049l-1.953 4.293H.753a.13.13 0 0 0-.12.076l-.626 1.398a.074.074 0 0 0 .066.104h3.853L1.6 19.047a.085.085 0 0 0 .076.122H3.33c.033 0 .064-.021.078-.051L8.407 8.126a.084.084 0 0 0-.077-.119zm3.478 0a.06.06 0 0 0-.059.037l-.58 1.285c-.019.043.012.09.059.09h1.023c.217-.003.377.012.555.04.825.127 1.336.732 1.324 1.534a1.393 1.393 0 0 1-1.399 1.362H7.41a.16.16 0 0 0-.145.093l-.61 1.34a.097.097 0 0 0 .09.137h4.286c1.776 0 3.194-1.533 2.995-3.299a2.935 2.935 0 0 0-2.81-2.619.2.2 0 0 0-.039.004l-.021-.004zm6.476 0a.09.09 0 0 0-.078.049L11.55 19.047a.086.086 0 0 0 .078.121h1.656c.033 0 .063-.02.076-.05l5-10.992a.085.085 0 0 0-.078-.119zm3.478 0a.06.06 0 0 0-.056.037l-.58 1.285c-.02.043.01.09.056.09h1.023c.218-.003.378.012.555.04.825.127 1.338.732 1.326 1.534a1.393 1.393 0 0 1-1.398 1.362h-3.668a.16.16 0 0 0-.144.093l-.61 1.34a.097.097 0 0 0 .09.137h4.285c1.777 0 3.196-1.533 2.998-3.299a2.94 2.94 0 0 0-2.812-2.619.2.2 0 0 0-.04.004l-.021-.004z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/paddypower.svg�������������������������������0000664�0000000�0000000�00000002205�14753064456�0026000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.014 3.713a18 18 0 0 0-1.626.084c-.816.082-1.714.245-2.53.408l.57 6.368.246 1.96.654 6.857 1.55-.083 1.796-.162v-.082l-.408-4.081v-.573a19 19 0 0 0 2.04-.408 10 10 0 0 0 1.633-.816 5.26 5.26 0 0 0 1.714-2.041 6.5 6.5 0 0 0 .409-2.774 4.75 4.75 0 0 0-2.858-4.082 7.4 7.4 0 0 0-2.694-.572 18 18 0 0 0-.496-.003m-10.775.98a18 18 0 0 0-1.626.085A14 14 0 0 0 0 5.105l.572 6.366.163 1.96.654 6.857 1.551-.082 1.795-.164-.327-4.081v-.571a19 19 0 0 0 2.041-.408 10 10 0 0 0 1.633-.817 5.26 5.26 0 0 0 1.714-2.04 6 6 0 0 0 .408-2.695A4.65 4.65 0 0 0 7.43 5.267a7.4 7.4 0 0 0-2.695-.57 18 18 0 0 0-.496-.004M15.1 6.731l.085.006a3.3 3.3 0 0 1 1.468.325 2.07 2.07 0 0 1 1.062 1.633 2.6 2.6 0 0 1-.164 1.143 1.86 1.86 0 0 1-.571.817 2.45 2.45 0 0 1-1.306.572 1.8 1.8 0 0 1-.653.081l-.409-4.49a1.2 1.2 0 0 1 .488-.087m-10.942.98a1 1 0 0 1 .17.005 3.3 3.3 0 0 1 1.47.327 2.07 2.07 0 0 1 1.06 1.633 5 5 0 0 1-.163 1.143 1.86 1.86 0 0 1-.573.816 2.45 2.45 0 0 1-1.305.57 1.8 1.8 0 0 1-.653.082l-.408-4.49a1.2 1.2 0 0 1 .402-.086m17.801 7.27A2.04 2.04 0 1 0 24 17.023a2.04 2.04 0 0 0-2.04-2.04z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pagekit.svg����������������������������������0000664�0000000�0000000�00000000223�14753064456�0025244�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.401 0v24h9.6v-3.527H5.929V3.526h12.146v13.421h-6.073v3.525H21.6V0z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pagerduty.svg��������������������������������0000664�0000000�0000000�00000000545�14753064456�0025633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.965 1.18C15.085.164 13.769 0 10.683 0H3.73v14.55h6.926c2.743 0 4.8-.164 6.61-1.37 1.975-1.303 3.004-3.484 3.004-6.007 0-2.716-1.262-4.896-3.305-5.994zm-5.5 10.326h-4.21V3.113l3.977-.027c3.62-.028 5.43 1.234 5.43 4.128 0 3.113-2.248 4.292-5.197 4.292M3.73 17.61h3.525V24H3.73Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pagespeedinsights.svg������������������������0000664�0000000�0000000�00000001454�14753064456�0027335�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.363 1.636H1.635C.732 1.636 0 2.37.001 3.273L0 20.727v.003c0 .903.733 1.634 1.635 1.634h20.73c.904 0 1.635-.734 1.635-1.637V3.273c.016-.89-.76-1.64-1.637-1.637M3.979 2.886c.492-.507 1.279.28.77.772-.491.508-1.278-.279-.77-.771zM1.8 2.89c.507-.509 1.28.265.772.771-.493.502-1.274-.28-.772-.771m21.7 17.838c.012.611-.524 1.148-1.137 1.136H1.635A1.137 1.137 0 0 1 .5 20.727L.501 4.91H23.5zM11 16.159l5.946-4.577c.235-.2.576.129.389.372l-.002-.002-3.936 6.35a1.638 1.638 0 0 1-2.448.405c-.785-.668-.811-1.835.05-2.548zm4.763-.75c.09-.168 2.002-3.181 2.06-3.35 2.056 1.813 3.029 4.382 2.898 7.026h-3.819c.073-1.39-.29-2.678-1.139-3.676m-8.679 3.682H3.278c-.357-7.022 7.148-11.735 13.39-7.92l-3.461 2.618c-3.3-.762-6.364 1.71-6.123 5.302"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pagseguro.svg��������������������������������0000664�0000000�0000000�00000001330�14753064456�0025614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.482 9.712c1.64 0 3.108.69 4.1 1.813.044-.388.087-.777.087-1.208C21.67 5.007 17.353.69 12 .69s-9.67 4.316-9.67 9.626c0 .345 0 .69.044 1.036a8.69 8.69 0 0 1 7.943-5.137c2.848 0 5.352 1.381 6.95 3.496h.215zm-7.122-2.72c-4.36 0-7.9 3.54-7.9 7.9a7.904 7.904 0 0 0 13.425 5.655 5.53 5.53 0 0 1-3.928-5.31c0-2.676 1.9-4.92 4.446-5.438-1.468-1.684-3.626-2.806-6.043-2.806zM4.79 21.583A11.96 11.96 0 0 1 0 12C0 5.353 5.396 0 12 0s12 5.396 12 12-5.396 12-12 12c-1.554 0-3.022-.302-4.36-.82-1.079-.389-2.028-.907-2.849-1.597zm12.777-1.51a4.827 4.827 0 0 0 4.835-4.835 4.827 4.827 0 0 0-4.835-4.834 4.827 4.827 0 0 0-4.834 4.834 4.827 4.827 0 0 0 4.834 4.835"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/palantir.svg���������������������������������0000664�0000000�0000000�00000000361�14753064456�0025435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.147 18 12 21.178 3.853 18 2.5 20.343 12 24l9.5-3.657zM12 0a9.5 9.5 0 1 0 0 19 9.5 9.5 0 0 0 0-19m0 16.078a6.568 6.568 0 1 1 0-13.136 6.568 6.568 0 0 1 0 13.136"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/paloaltonetworks.svg�������������������������0000664�0000000�0000000�00000000416�14753064456�0027234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.278 15.443 1.705 1.705-3.426 3.426-3.427-3.426 8.592-8.591-1.705-1.705 3.426-3.426 3.427 3.426zM0 12.017l3.426 3.426 8.591-8.59-3.426-3.427zm11.983 5.13 3.426 3.427L24 11.983l-3.426-3.426z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/paloaltosoftware.svg�������������������������0000664�0000000�0000000�00000001030�14753064456�0027203�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.995.005c-.58 0-1.158.228-1.615.685L.685 10.385c-.913.913-.913 2.318 0 3.231l.842.843 8.01-8.15a3.435 3.435 0 0 1 4.847 0l8.079 8.08.842-.843c.914-.843.915-2.248.072-3.161L13.612.69a2.28 2.28 0 0 0-1.617-.685m0 6.463c-.58 0-1.158.228-1.615.684L.685 16.848c-.913.913-.913 2.318 0 3.23l3.231 3.232c.914.913 2.318.913 3.232 0l4.847-4.846 4.848 4.846c.913.913 2.318.913 3.231 0l3.231-3.231c.914-.843.915-2.318.072-3.231l-9.765-9.696a2.28 2.28 0 0 0-1.617-.684"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/panasonic.svg��������������������������������0000664�0000000�0000000�00000010065�14753064456�0025600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.157 11.485a1.254 1.254 0 0 0-1.18-1.324H0v3.58h1.084v-1.1h.66q.25 0 .496-.059c.497-.103.87-.52.917-1.025zm-1.081.005a.35.35 0 0 1-.337.301c-.081.007-.15.007-.23.007h-.425v-.777h.632a.36.36 0 0 1 .36.326.7.7 0 0 1 0 .143m3.678 1.45c0-.278-.01-.51-.01-.786a1.7 1.7 0 0 0-.057-.42.67.67 0 0 0-.332-.43 1 1 0 0 0-.316-.118 2.6 2.6 0 0 0-1.065-.02q-.15.023-.29.082a.77.77 0 0 0-.455.5.6.6 0 0 0-.024.261.1.1 0 0 0 .014.048l.86.02a.4.4 0 0 1 .025-.153.26.26 0 0 1 .162-.162.5.5 0 0 1 .342 0 .23.23 0 0 1 .156.157.15.15 0 0 1-.02.13.2.2 0 0 1-.1.078l-.074.024q-.17.045-.343.075a7 7 0 0 0-.276.05 3 3 0 0 0-.365.095.8.8 0 0 0-.295.173.62.62 0 0 0-.205.393.8.8 0 0 0 .012.3.71.71 0 0 0 .51.54c.276.083.573.067.84-.044a.83.83 0 0 0 .344-.248q.028.089.057.176.019.048.051.087h.948a.4.4 0 0 1-.068-.207q-.02-.3-.026-.6m-.956-.088a.4.4 0 0 1-.067.193.4.4 0 0 1-.182.145.6.6 0 0 1-.21.054.5.5 0 0 1-.163-.013.24.24 0 0 1-.12-.074.2.2 0 0 1-.057-.106.17.17 0 0 1 .064-.174.3.3 0 0 1 .105-.063q.142-.053.288-.093.177-.052.342-.13a1 1 0 0 1 0 .261M8.06 11.14a1.04 1.04 0 0 0-.755.054 1.7 1.7 0 0 0-.393.262l-.023-.27H5.97v2.56h.982v-1.42a.4.4 0 0 1 .06-.222.383.383 0 0 1 .482-.16c.081.032.142.1.167.183q.02.065.02.131v1.484h1.01V12.09a1.2 1.2 0 0 0-.06-.394.82.82 0 0 0-.572-.558zm5.95 1.25a1.1 1.1 0 0 0-.42-.23l-.106-.03a5 5 0 0 0-.58-.123 2 2 0 0 1-.156-.03.3.3 0 0 1-.068-.024.117.117 0 0 1-.059-.152v-.008a.22.22 0 0 1 .131-.105.5.5 0 0 1 .316 0c.107.03.178.133.17.244h.902a.9.9 0 0 0-.055-.31.55.55 0 0 0-.184-.255.9.9 0 0 0-.242-.138 1.2 1.2 0 0 0-.262-.073 2.6 2.6 0 0 0-.642-.037 2 2 0 0 0-.366.054 1.1 1.1 0 0 0-.444.211.7.7 0 0 0-.28.526.7.7 0 0 0 .052.316.68.68 0 0 0 .393.393q.135.054.278.082l.554.104q.105.016.205.051c.06.018.103.07.113.131a.19.19 0 0 1-.052.176.3.3 0 0 1-.17.086.5.5 0 0 1-.262-.025.4.4 0 0 1-.105-.06.26.26 0 0 1-.089-.132.4.4 0 0 1-.02-.138h-.932v.055a.77.77 0 0 0 .256.555 1 1 0 0 0 .426.24c.33.098.676.12 1.014.065q.241-.035.455-.148a1 1 0 0 0 .176-.118.78.78 0 0 0 .246-.852.63.63 0 0 0-.193-.302zm6.198-2.226h.957v.676h-.957zm0 1.024h.957v2.558h-.957zm2.872 1.505a1 1 0 0 1-.018.154.4.4 0 0 1-.096.2.3.3 0 0 1-.185.097.36.36 0 0 1-.316-.1.53.53 0 0 1-.152-.26 1.17 1.17 0 0 1 .012-.703.4.4 0 0 1 .178-.232.36.36 0 0 1 .407.017c.092.068.153.17.17.284h.874a.8.8 0 0 0-.09-.417 1.12 1.12 0 0 0-.724-.564 1.7 1.7 0 0 0-.806-.02c-.48.094-.863.456-.984.93a1.4 1.4 0 0 0-.03.621q.034.226.151.42c.095.171.227.32.385.435.19.148.416.24.655.262q.27.03.538-.025a1.24 1.24 0 0 0 .685-.38.93.93 0 0 0 .263-.719zm-3.704-1.553a1.04 1.04 0 0 0-.755.054 1.7 1.7 0 0 0-.393.262l-.03-.27h-.919v2.56h.984v-1.429a.43.43 0 0 1 .06-.22.39.39 0 0 1 .484-.16c.08.032.14.1.164.182a.5.5 0 0 1 .021.14v1.483h1.016V12.09a1.2 1.2 0 0 0-.06-.394.82.82 0 0 0-.572-.558zm-7.879 1.8c0-.278-.01-.51-.012-.786q0-.214-.054-.42a.68.68 0 0 0-.333-.43 1 1 0 0 0-.315-.118 2.6 2.6 0 0 0-1.067-.02q-.15.023-.289.082a.77.77 0 0 0-.456.5.6.6 0 0 0-.025.261.2.2 0 0 0 .015.048l.86.02a.4.4 0 0 1 .024-.153.26.26 0 0 1 .163-.162.5.5 0 0 1 .342 0 .23.23 0 0 1 .156.157.15.15 0 0 1-.02.13.2.2 0 0 1-.099.078l-.075.024q-.17.045-.343.075a6 6 0 0 0-.274.05 3 3 0 0 0-.366.095.8.8 0 0 0-.296.173.62.62 0 0 0-.21.393.8.8 0 0 0 .012.3c.056.26.252.468.508.54.277.083.575.067.842-.044a.8.8 0 0 0 .335-.245q.025.087.057.173c.01.032.03.062.052.087h.948a.4.4 0 0 1-.054-.207 14 14 0 0 1-.026-.6m-.97-.084a.44.44 0 0 1-.07.19.37.37 0 0 1-.167.144.7.7 0 0 1-.205.054.5.5 0 0 1-.175-.015.25.25 0 0 1-.122-.073.2.2 0 0 1-.055-.105.17.17 0 0 1 .057-.17.3.3 0 0 1 .105-.063 5 5 0 0 1 .288-.093q.177-.053.344-.13.015.13 0 .261m5.483-1.72a1.9 1.9 0 0 0-.577 0 1.33 1.33 0 0 0-.747.371 1.2 1.2 0 0 0-.383.798c-.02.185-.003.372.048.551.073.278.24.522.47.693.147.117.32.197.504.235.26.055.527.055.787 0 .184-.038.36-.118.507-.235.23-.17.396-.415.468-.693a1.4 1.4 0 0 0 .05-.55 1.2 1.2 0 0 0-.383-.799 1.33 1.33 0 0 0-.743-.37zm.06 1.814a.39.39 0 0 1-.513.193.37.37 0 0 1-.194-.193 1 1 0 0 1-.072-.246 1.4 1.4 0 0 1 .012-.515.7.7 0 0 1 .1-.247.374.374 0 0 1 .622 0 .6.6 0 0 1 .105.247q.052.257.01.515a.9.9 0 0 1-.07.246"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pandas.svg�����������������������������������0000664�0000000�0000000�00000000463�14753064456�0025074�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.922 0h2.623v18.104h-2.623zm-4.126 12.94h2.623v2.57h-2.623zm0-7.037h2.623v5.446h-2.623zm0 11.197h2.623v5.446h-2.623zM4.456 5.896h2.622V24H4.455zm4.213 2.559h2.623v2.57H8.67zm0 4.151h2.623v5.447H8.67zm0-11.187h2.623v5.446H8.67Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pandora.svg����������������������������������0000664�0000000�0000000�00000000311�14753064456�0025242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.882 0v24H8.32a1.085 1.085 0 0 0 1.085-1.085v-4.61h1.612c7.88 0 11.103-4.442 11.103-9.636C22.119 2.257 17.247 0 12.662 0z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pantheon.svg���������������������������������0000664�0000000�0000000�00000001504�14753064456�0025437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.604 0 9.75 5.171H7.018l.904 2.276h5.535zm4.202 7.973.724 1.752h3.09c.066 0 .223-.086.223-.877 0-.79-.157-.875-.224-.875zm-4.367 0c-.306 0-.474 0-.612.456-.166.544-.185 1.571-.185 3.57 0 2 .02 3.028.185 3.572.138.456.306.456.612.456h3.486l-1.727-4.202v.014l-.816-2.116h1.912l.884 2.119 1.826-.016-1.591-3.853zm5.235 2.1.724 1.753h2.562c.068 0 .223-.086.223-.876s-.156-.876-.223-.876zm-3.742.076 2.633 6.403H8.346L14.297 24l-2.146-5.172h2.731l-.913-2.276H12.7l-2.634-6.403zm2.374 2.026.724 1.752h3.93c.067 0 .223-.086.223-.876s-.155-.876-.223-.876zm.868 2.1.723 1.752h2.722c.067 0 .223-.085.223-.875s-.156-.876-.223-.876zm4.624 1.2v.511h.103v-.391l.129.391h.096l.125-.391v.391h.107v-.511h-.15l-.127.394-.127-.394zm-.466 0v.092h.144v.42h.117v-.42h.144v-.092z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/paperlessngx.svg�����������������������������0000664�0000000�0000000�00000000744�14753064456�0026343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.338 23.028c-.117-.56-.353-1.678-.382-1.678-4.977-2.975-4.388-8.128-2.739-11.073.353 3.71 6.92 6.273 3.092 10.808-.03.059.177.765.353 1.413.766-1.296 1.915-2.856 1.856-3.004C3.806 8.01 18.53 7.126 21.592 0c1.385 6.89-.706 17.55-12.544 20.26-.06.03-2.15 3.71-2.238 3.74 0-.059-.884-.03-.766-.324.059-.177.177-.412.294-.648m-.147-2.768c1.502-1.737-.265-4.712-1.325-5.683 1.796 3.092 1.679 4.888 1.325 5.683"/></svg>����������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/paperspace.svg�������������������������������0000664�0000000�0000000�00000002502�14753064456�0025745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.832 10.848c0 3.04-1.883 6.402-4.471 8.879C16.774 22.202 13.275 24 10.093 24c-3.213 0-5.806-1.766-7.44-4.178C1.026 17.42.168 14.2.168 11.226c0-3.04 1.617-5.934 3.945-7.936C6.437 1.292 9.651 0 12.81 0c3.162 0 5.991 1.211 7.916 3.13 1.927 1.919 3.107 4.706 3.107 7.718Zm-11.023-9.69q-.67 0-1.328.078.41-.03.822-.034c2.931.017 5.67 1.04 7.58 2.725-1.77-1.753-4.154-2.768-7.074-2.768Zm-2.716 21.683a9 9 0 0 0 1.972-.23 9.4 9.4 0 0 1-1.844.192 8.13 8.13 0 0 1-4.128-1.11c1.125.732 2.445 1.148 4 1.148m9.052-18.02c-1.76-1.566-4.101-2.482-6.842-2.46-.91-.007-1.794.1-2.64.306q.923-.145 1.902-.145c2.748 0 5.439.772 7.36 2.208q.583.436 1.083.97a9 9 0 0 0-.863-.88ZM10.22 21.643c.966 0 1.95-.178 2.922-.502-.928.24-1.869.369-2.785.369-1.347 0-2.56-.265-3.611-.736.99.557 2.138.869 3.474.869m8.01-15.986c-1.757-1.313-4.077-1.977-6.666-1.977-2.572 0-4.638.738-6.166 2.132-1.524 1.392-2.364 3.285-2.364 5.792 0 2.547.586 4.687 1.825 6.275 1.234 1.58 2.96 2.472 5.498 2.472 2.564 0 5.178-1.038 7.248-2.752 2.067-1.71 3.401-3.9 3.401-6.374 0-2.481-1.03-4.262-2.777-5.568Zm-9 .732h4.719c1.765 0 3.217 1.131 3.217 3.08 0 2.475-1.95 3.961-4.377 3.961H10.35l-.696 3.99H7.287L9.232 6.39Zm3.45 5.149c1.207 0 2.149-.62 2.149-1.874 0-.975-.757-1.377-1.595-1.377h-1.978l-.572 3.246h1.996z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/paperswithcode.svg���������������������������0000664�0000000�0000000�00000000356�14753064456�0026650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 2v20h4.4v-2.4h-2V4.4h2V2zm19.6 0v2.4h2v15.2h-2V22H24V2zm-16 3.6v12.8H6V5.6zm7.2 0v12.8h2.4V5.6zm7.2 0v12.8h2.4V5.6zm-10.8.8v11.2h2.4V6.4zm7.2 0v11.2h2.4V6.4z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/paradoxinteractive.svg�����������������������0000664�0000000�0000000�00000007426�14753064456�0027530�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.384 12.65c-.141-.703.587-1.31.241-2.029-.345-.718-2.012-.67-2.038-1.488-.037-.949 1.347-.466 1.928-.446 0-1.52-.597-2.824-2.238-1.797a.89.89 0 0 1-.77-.299c-.524-.896 1.001-1.09 1.048-1.803 0-.42-.492-.686-.65-1.048a1.8 1.8 0 0 1 0-.76c0-.1-.12-.105-.199-.126-.309-.078-.597.1-.917.032a4.4 4.4 0 0 1-.86-.524 1.15 1.15 0 0 1-.298.403c-.23.32-1.048 1.457-1.573.964a.92.92 0 0 1-.125-.791C17.21.952 16.493.737 14.742.459c-.42-.068-1.489-.32-1.976-.173 0 .335.425 2.689-.33 2.563-.896 0-.409-2.332-1.709-2.62a1.2 1.2 0 0 0-.64.314c-.183.267.184 1.09.263 1.41a2.14 2.14 0 0 1-.058 1.263V3.3C8.814 3.3 8.977.034 6.671 1.643c0 .876 2.096 1.982 1.368 2.94a.85.85 0 0 1-.525.326c-1.116.136-1.572-2.275-2.803-2.06a.7.7 0 0 0-.451.367c-.32.555 1.048 1.389 1.263 1.955a1.7 1.7 0 0 1-.037.89c-1.048 0-2.285-1.503-3.265-.55a.64.64 0 0 0-.262.587c.1.399.812.33 1.048.708v.047c.372.844-.482 1.462-.492 2.228 0 .382.288.597.167 1.011-.42 1.426-1.771-.162-2.416.446s.079 1.682.126 2.327a8.5 8.5 0 0 1-.23 1.147 2.9 2.9 0 0 0 .335.986c.125.456 0 .959.246 1.352.729 1.121 1.944-1.94 2.521-.65.445 1.048-1.808.985-1.866 1.777-.057.791 1.29 1.493 1.814 1.986a2.74 2.74 0 0 1 .901 1.677 5.2 5.2 0 0 1-.377 1.85 2 2 0 0 0 .644.032c1.143-.34 1.814-2.165 1.625-3.297-.173-.954-.697-1.771-.765-2.767s.89-2.62 0-3.323l-.12-.073a.34.34 0 0 1-.336.136.74.74 0 0 1-.524-.173.445.445 0 0 1-.157-.624c.22-.325.843-.262.917-.697.157-.964-1.86-1.153-.64-2.343a1.17 1.17 0 0 1 .928-.356c.566.042 1.934.45 1.855 1.174-.036.33-.314.64-.194 1.006.12.367.682.341.834.697.199.488-.21.85-.168 1.305a.28.28 0 0 0 .147.226 1.6 1.6 0 0 1 .602.403c.257.566-.43 1.258.483 1.573 0-.404-.09-.944.262-1.153a1.2 1.2 0 0 0 .257.325c.288.45.408.875.995 1.048a3.3 3.3 0 0 0-.46-1.604c.418 0 .68.556 1.157.43s.048-.603-.052-.807c-.288-.582.126-1.049-.047-1.573s-1.735-1.037-2.207-1.478a.67.67 0 0 1-.246-.639c.288-.891 1.336-.362 2.096-.571a1.9 1.9 0 0 0 .85-.608 1.5 1.5 0 0 0 .361-1.494 1.6 1.6 0 0 1-.293-.912c.22-1.604 2.814-1.515 3.946-.933.577.294 1.127.975.823 1.667-.273.608-1.006.257-1.52.482a3.4 3.4 0 0 0-1.205 1.572c-.231.65.414 1.143.456 1.777.089 1.384-.566 2.657-.839 3.91-.052.23.152.524.026.75-.199.335-.613.214-.948.335a3.3 3.3 0 0 0-.603.44c-.482.299-1.048.446-1.106 1.106.304 0 .524-.163.854-.194a.058.058 0 0 1 .068.063v.063c-.073.576-.524 1.048-.256 1.666.408 0 .524-.953 1.184-.702.079 0 .068 0 .09.073a4.8 4.8 0 0 0 .434 1.211.27.27 0 0 0 .226-.267 4 4 0 0 1 .057-1.373c.2-.524.556-.451.467-1.153a2 2 0 0 0 .346-.22c.833-.289.97-.77 2.023-.74a1.75 1.75 0 0 1 .723.126c.183 0 .115-.288.047-.524-.372-1.226-.839-2.437-.839-3.852h.2a8 8 0 0 0 .744 1.206c.157.251.665 1.415 1.116 1.163.21-.126.336-1.572.456-1.913.446-1.2 1.704-1.462 2.448-.304s.267 3.417-.63 4.266c-.35.33-.853.33-1.189.64-.335.309-.037.927-.094 1.352a1.93 1.93 0 0 1-.603 1.048c-.629.634-1.483.917-2.128 1.499-.278.246-.34.655-.681.807-.34.152-.75-.042-1.1.063l-.771.482c-.472.247-1.237.66-1.489.74 0 1.005 2.406.47 2.899.204.35-.19.456-.65.802-.802.345-.152.697.215 1.095.078a5.3 5.3 0 0 0 1.048-.65 21 21 0 0 0 1.866-1.294 2.1 2.1 0 0 0 .597-.65c.152-.425-.524-1.473.671-1.3.923.12 1.845-1.735 2.018-2.39.105-.524.204-1.016.304-1.53l.383-.923c.22-.754-.462-.754-.572-1.278M2.462 14.594a.886.886 0 0 1-.928-1.294 1.37 1.37 0 0 1 .598-.525 1.28 1.28 0 0 1 .755.231.891.891 0 0 1-.425 1.588m4.942-5.393a.43.43 0 0 1-.267-.058c-.938-.398-.55-1.006-.194-1.671.713.288.875 1.509.461 1.73m1.316 2.757a1.81 1.81 0 0 1 1.137 1.536.5.5 0 0 1-.084.22.72.72 0 0 1-.466 0c-.702-.3-.598-1.064-.598-1.756Zm6.918 3.071a1.05 1.05 0 0 1-.372.65.75.75 0 0 1-.75-.461 2.3 2.3 0 0 1 0-.886 11.6 11.6 0 0 1 .472-2.945c.325.712.21 1.572.367 2.363a4 4 0 0 1 .278 1.28zm4.717-4.224a6.6 6.6 0 0 1-1.31-.037c-1.646-.325-.226-2.175.126-2.914.67.603 1.415 1.986 1.184 2.95"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/paramountplus.svg����������������������������0000664�0000000�0000000�00000004462�14753064456�0026543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.347 21.373c.057-.084.151-.314-.025-.74l-.53-1.428c-.073-.182.084-.293.19-.173 0 0 1.004 1.157 1.264 1.64l.495.822c.425.028 1.6.06 2.732.06a3 3 0 0 1-.316-.364c-1.93-2.392-3.154-3.724-3.166-3.737-.391-.426-.572-.508-.87-.643l-.138-.065v.364c0 .047-.057.073-.086.022l-2.846-5.001a1.6 1.6 0 0 0-.508-.587l-.277-.194-1.354 3.123c.212 0 .354.216.27.409l-1.25 2.893h1.147c.443 0 .883.087 1.294.255l.302.125s-.913 1.878-.913 2.867c0 .181.028.362.075.534h2.104l-.096-.595s1.266.294 2.502.413M12 2.437c-6.627 0-12 5.373-12 12 0 2.669.873 5.133 2.346 7.126.503-.218.783-.542.983-.791l2.234-2.858a.5.5 0 0 1 .179-.138l.336-.146 3.674-4.659.534-.417 1.094-1.524a.5.5 0 0 1 .101-.102l.478-.347a.34.34 0 0 1 .398-.004l.578.407c.308.216.557.504.726.84l2.322 4.077c.051.09.09.129.182.174.454.227.732.268 1.33.913.277.304 1.495 1.666 3.203 3.784.236.318.538.588.963.783A11.95 11.95 0 0 0 24 14.437c0-6.627-5.373-12-12-12M3.236 15.1l-.778-.253-.48.662v-.818l-.778-.253.778-.253v-.818l.48.662.778-.253-.48.662Zm-.185 2.676-.252.778-.253-.778h-.818l.661-.481-.253-.777.663.48.66-.48-.252.777.662.481Zm.156-6.195.253.778-.661-.48-.663.48.253-.778-.66-.48h.817l.253-.778.252.777h.818Zm1.314-1.76L4.04 9.16l-.778.253.48-.661-.48-.663.778.254.48-.662v.818l.778.253-.777.252Zm2.045-2.862-.253.777-.252-.777h-.818l.662-.48-.253-.778.661.48.661-.48-.252.777.662.48Zm2.577-1.313-.48.661V5.49l-.779-.254.778-.253v-.817l.48.66.78-.253-.481.663.48.66zm3.265-.75.253.778-.661-.48-.662.48.252-.777-.66-.481h.818L12 3.637l.252.778h.818zm2.93.595v.816l-.481-.661-.777.252.48-.662-.48-.662.777.253.48-.66v.817l.779.252zm5.426 8.285.778.253.48-.662v.818l.778.253-.778.253v.818l-.48-.662-.778.253.48-.662zm-3.077-6.04-.253-.777h-.818l.662-.48-.253-.778.662.48.662-.48-.254.778.662.48h-.818zm1.792 2.086v-.818l-.777-.252.777-.253V7.68l.481.662.777-.254-.48.663.48.66-.777-.252zm1.469 1.278.253-.777.254.777h.816l-.66.481.252.778-.662-.48-.661.48.253-.778-.662-.48zm.506 6.676-.253.778-.253-.778h-.817l.662-.481-.253-.777.66.48.663-.48-.253.777.661.481zm-12.08-.615.76-1.588c.024-.048-.032-.108-.067-.067l-.664.668c-.313.329-.847 1.25-.95 1.421l-.808 1.335a.109.109 0 0 1 .1.162l-.739 1.238c-.18.309.145.523.189.452 1.157-1.868 1.832-1.719 1.832-1.719l.387-.897c.022-.047-.001-.1-.05-.12-.12-.05-.316-.27.01-.885"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/paritysubstrate.svg��������������������������0000664�0000000�0000000�00000003022�14753064456�0027065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.254 0 1.795 6.038l-.254-.152-.008.008v.652l.576-.33-.254-.144L12.313.034zm1.677.965L3.472 7.004l-.212-.128-1.727 1v.601l2.252-1.296-.211-.118 10.458-6.038zm1.677.966L5.148 7.969l-.169-.102-3.446 1.99v.56l3.93-2.27-.17-.093 10.45-6.039zm1.668.957-6.512 3.777-.33-.186L8.57 7.554v.381L6.826 8.943l-.127-.076-5.166 2.972v.517l5.606-3.244-.127-.076 1.558-.898v.398l1.152.66L8.51 9.9l-.085-.051-6.885 3.98v.458l7.283-4.2-.084-.052 1.21-.703 1.178.686-2.55 1.465v.271L1.542 15.82v.407L8.58 12.16v.313l1.092.627-8.13 4.7v.178l.161.093 8.282-4.776 1.127.652-2.532 1.448v.33l-5.471 3.16.27.151 5.2-3.006v.381l3.414-1.973 1.024.593-1.008.584v.102l-7.19 4.15.23.126L12 15.98v.102l1.414-.813 1.118.643-1.82 1.059.16.093-.864.5v.144l-5.47 3.159.186.11 5.284-3.049v.144l1.305-.754.254.153 1.82-1.05v-.305l7.08-4.082v-.517l-7.071 4.09v-.186l-1.118-.643 8.19-4.726v-.457l-8.58 4.954-1.024-.593 2.532-1.473v-.34l7.071-4.072v-.407l-7.071 4.082v-.254l-1.143-.66 8.214-4.743-.008-.203-.153-.085-8.375 4.827-1.084-.618 2.54-1.474v-.372l5.505-3.176-.271-.152-5.242 3.023v-.313L11.975 9.51l-1.178-.686 8.376-4.835-.229-.127-8.358 4.835-1.144-.66 1.855-1.076-.347-.203 6.512-3.76zM11.983 10.5l1.084.627-1.211.703-1.33.762-1.084-.618zm1.389.813 1.152.66-2.558 1.466-1.135-.652L12 12.11zm9.087 2.134L12 19.486v.195l-3.743 2.16.135.084L12 19.842v.195l10.459-6.03zm0 1.931L12 21.417v.246L9.968 22.84l.101.05L12 21.782v.237l10.459-6.03zm0 1.94L12 23.347v.296l-.313.187.059.025.254-.144V24l10.459-6.03Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/parrotsecurity.svg���������������������������0000664�0000000�0000000�00000000465�14753064456�0026727�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m6.267 2.784L13.03 5.54l8.05-.179-8.05 3.333-2.154 2.688 5.007 9.038-1.536-1.605 1.645 3.456-4.937-5.527-6.268-6.28L2.77 12.11l.7-3.442 4.018-.261.823-4.06Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/parsedotly.svg�������������������������������0000664�0000000�0000000�00000005252�14753064456�0026015�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.01 0a.46.46 0 0 0-.29.1s-.724.561-1.193.967-.922.886-.922.886a.93.93 0 0 0-.271.615l.108 3.344c0 .2-.157.205-.226 0l-.868-2.106c-.06-.187-.21-.214-.334-.054a13 13 0 0 0-1.121 1.573 12.6 12.6 0 0 0-.777 1.717.76.76 0 0 0 .1.624l1.762 2.341c.124.16.093.363-.082.253l-1.844-.994c-.17-.11-.312-.033-.307.163a6.9 6.9 0 0 0 .307 1.898 7.6 7.6 0 0 0 2.034 2.91 14.3 14.3 0 0 1 2.83 4.159 3.54 3.54 0 0 1 2.16 0 14.5 14.5 0 0 1 2.811-4.15 7.7 7.7 0 0 0 1.926-2.63c.252-.7.39-1.435.415-2.178v-.01c0-.195-.132-.271-.307-.162l-1.835.994c-.17.11-.215-.093-.09-.253l1.762-2.332a.7.7 0 0 0 .127-.298.8.8 0 0 0-.018-.335q-.345-.938-.823-1.817a13 13 0 0 0-1.075-1.482c-.125-.155-.27-.124-.335.063l-.859 2.124c-.064.187-.23.183-.226 0l.1-3.335a.94.94 0 0 0-.253-.642s-.513-.512-.922-.886A25 25 0 0 0 12.299.1a.46.46 0 0 0-.29-.1zM4.108 14.77c-.129 0-.173.081-.1.182l.778 1.41c.073.105.002.2-.109.117L2.98 15.114a1.4 1.4 0 0 0-.524-.208 1.4 1.4 0 0 0-.56.028c-.378.059-.923.171-.923.171a.24.24 0 0 0-.144.09.26.26 0 0 0-.055.172s.045.549.09.913a1.34 1.34 0 0 0 .462.977l1.771 1.256c.11.073.03.181-.09.136l-1.582-.353c-.12-.045-.181-.001-.144.136 0 0 .258.714.488 1.184q.291.552.66 1.058a.5.5 0 0 0 .162.126.5.5 0 0 0 .2.063l1.906.046c.125 0 .152.144.037.18l-1.22.452c-.12.037-.13.13-.028.208.357.253.75.465 1.157.624.72.231 1.484.289 2.233.18a9 9 0 0 0 1.636-.379 4 4 0 0 1-.036-.46 3.5 3.5 0 0 1 .307-1.42c.2-.446.494-.838.859-1.166h-.018a.6.6 0 0 0-.027-.19 4.9 4.9 0 0 0-.796-2.07 5.3 5.3 0 0 0-.913-.913c-.1-.077-.194-.042-.199.081l-.09 1.284c0 .123-.144.128-.18 0l-.57-1.799a.5.5 0 0 0-.29-.29 9 9 0 0 0-1.166-.315c-.524-.092-1.283-.145-1.283-.145zm15.783.028s-.76.044-1.284.136a9 9 0 0 0-1.175.316.5.5 0 0 0-.172.117.5.5 0 0 0-.117.172l-.57 1.8c-.037.118-.176.113-.18 0l-.091-1.285c0-.123-.089-.158-.19-.08a5.3 5.3 0 0 0-.922.912 4.8 4.8 0 0 0-.795 2.052v.19a3.47 3.47 0 0 1 1.157 2.594 4 4 0 0 1-.027.452 9 9 0 0 0 1.636.389 5 5 0 0 0 2.233-.19c.407-.16.791-.362 1.148-.615.1-.077.092-.171-.028-.208l-1.22-.452c-.115-.036-.079-.176.045-.18l1.899-.046a.55.55 0 0 0 .37-.198c.227-.328.425-.667.606-1.022.235-.456.497-1.184.497-1.184.037-.119-.034-.181-.154-.136l-1.573.353c-.124.046-.196-.063-.09-.136l1.78-1.256a1.34 1.34 0 0 0 .461-.976c.047-.379.091-.913.091-.913l-.009-.018a.26.26 0 0 0-.054-.163.25.25 0 0 0-.145-.1s-.544-.108-.922-.162a1.4 1.4 0 0 0-.56-.027c-.186.03-.366.097-.524.198l-1.7 1.374c-.101.082-.182-.003-.108-.126l.777-1.41c.078-.1.039-.177-.09-.172m-7.883 4.646c-.455 0-.905.13-1.283.38a2.3 2.3 0 0 0-.85 1.021 2.27 2.27 0 0 0 .506 2.486 2.32 2.32 0 0 0 2.504.497 2.29 2.29 0 0 0 1.42-2.106c0-.604-.238-1.19-.67-1.618a2.3 2.3 0 0 0-1.627-.66"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/passport.svg���������������������������������0000664�0000000�0000000�00000000461�14753064456�0025477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.875 0A9.6 9.6 0 0 0 2.4 9.475h4.8A4.81 4.81 0 0 1 11.875 4.8zm.25 0v4.8A4.81 4.81 0 0 1 16.8 9.475h4.8A9.6 9.6 0 0 0 12.125 0M2.4 9.725V24H12v-4.8H7.2V9.724zm9.6 9.474a9.6 9.6 0 0 0 9.6-9.474h-4.8A4.807 4.807 0 0 1 12 14.4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pastebin.svg���������������������������������0000664�0000000�0000000�00000006327�14753064456�0025440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.02 0a2.1 2.1 0 0 0-.722.123L2.624 5.003A2.1 2.1 0 0 0 1.35 7.69l5.324 14.915a2.1 2.1 0 0 0 2.685 1.272l7.746-2.765c.792-.307 1.345-.534 1.464-.608.543-.314.962-.817 1.964-2.334.904-1.362 1.859-3.323 2.097-4.28.24-.97.239-1.48-.502-3.674l-3.146-8.82A2.1 2.1 0 0 0 17.02 0m-.083.414c.72-.031 1.4.403 1.657 1.12l3.68 10.357c.103.433-.281 1.147-.736 1.35-.2.1-.71.293-1.142.429-1.397.463-2.05.878-2.458 1.547-.363.591-.315 1.18.16 2.377.462 1.142.533 1.864.225 2.4-.113.188-.301.322-1.354.733l-.002-.005-7.746 2.765a1.68 1.68 0 0 1-2.157-1.022L1.74 7.55a1.68 1.68 0 0 1 1.022-2.157L16.437.513q.25-.09.5-.099M15.9 2.25l-1.203.885.187.519.523-.316.803 2.235-.696.249c.045.145.216.642.238.664l2.166-.78-.238-.662-.687.248zm-3.29 1.182-1.203.885.186.519.524-.316.803 2.235-.697.25c.046.144.216.64.238.663l2.167-.778-.238-.663-.687.247zM9.085 4.786c-.283 0-.56.076-.8.223-.732.448-.85 1.383-.332 2.558.337.776.873 1.218 1.462 1.215 1.345-.007 1.86-1.4 1.085-2.95-.307-.66-.837-1.036-1.415-1.046m-.191.672c.168-.01.357.085.539.279.145.155.347.51.437.787.35.998.164 1.688-.414 1.546C8.855 7.93 8.21 6 8.62 5.585a.4.4 0 0 1 .273-.127zm-3.765.75c-.283 0-.56.076-.8.223-.732.448-.85 1.382-.332 2.557.337.777.873 1.218 1.462 1.215 1.344-.007 1.86-1.398 1.085-2.95-.307-.66-.838-1.036-1.415-1.045m-.192.672c.168-.01.358.085.54.278.145.155.347.51.437.787.35.999.164 1.689-.415 1.547-.6-.141-1.243-2.072-.834-2.485a.4.4 0 0 1 .272-.127m13.362.655c-.283 0-.56.076-.8.223-.732.448-.85 1.382-.332 2.558.337.776.873 1.218 1.462 1.215 1.345-.007 1.86-1.4 1.085-2.95-.307-.66-.837-1.036-1.415-1.046m-.191.672c.168-.01.357.085.539.278.145.155.347.51.437.787.35.999.164 1.689-.414 1.547-.601-.141-1.244-2.072-.835-2.485a.4.4 0 0 1 .273-.127m-3.766.75a1.53 1.53 0 0 0-.8.222c-.73.448-.848 1.383-.331 2.558.337.776.873 1.218 1.462 1.215 1.344-.007 1.86-1.398 1.085-2.95-.307-.66-.838-1.036-1.416-1.045m-.19.67c.167-.008.357.086.539.28.145.155.347.51.437.787.35.998.164 1.688-.415 1.547-.6-.142-1.244-2.072-.835-2.485a.4.4 0 0 1 .273-.128zm-3.746.744a1.5 1.5 0 0 0-.8.223c-.732.448-.85 1.382-.332 2.557.337.777.873 1.218 1.462 1.215 1.345-.007 1.86-1.398 1.085-2.95-.307-.66-.838-1.036-1.415-1.045m-.192.672c.169-.01.358.085.54.278.145.155.347.51.437.787.35.999.164 1.689-.414 1.547-.601-.141-1.244-2.072-.835-2.485a.4.4 0 0 1 .272-.127m-3.515.616-1.203.884.187.52.524-.316.802 2.233-.696.25c.045.145.216.641.238.663l2.166-.778-.238-.663-.687.247zm15.664 1.33c.034 0 .049.047.064.135.023.11-.064.545-.195.957-.47 1.435-2.052 4.223-3.08 5.396l-.407.47.05-.667c.03-.567-.015-.812-.376-1.71-.496-1.263-.533-1.73-.158-2.31.34-.514 1.028-.907 2.448-1.37.72-.238 1.175-.463 1.385-.664.132-.145.207-.22.253-.235l.015-.003zm-6.43 1.476-1.202.885.187.52.523-.317.803 2.235-.696.25c.045.144.216.641.238.663l2.166-.779-.238-.662-.687.247zm-3.578 1.33c-.283 0-.56.077-.8.223-.731.448-.85 1.382-.332 2.558.337.776.873 1.218 1.462 1.215 1.345-.007 1.86-1.399 1.086-2.95-.307-.66-.838-1.036-1.416-1.046m-.191.672c.168-.009.358.085.54.28.144.153.346.51.437.786.35.998.164 1.688-.415 1.546-.6-.14-1.244-2.072-.835-2.485a.4.4 0 0 1 .273-.127m-3.515.616-1.204.885.187.52.524-.317.803 2.234-.697.25c.045.145.216.642.238.664l2.166-.779-.238-.663-.687.248z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/patreon.svg����������������������������������0000664�0000000�0000000�00000000517�14753064456�0025276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.957 7.21c-.004-3.064-2.391-5.576-5.191-6.482-3.478-1.125-8.064-.962-11.384.604C2.357 3.231 1.093 7.391 1.046 11.54c-.039 3.411.302 12.396 5.369 12.46 3.765.047 4.326-4.804 6.068-7.141 1.24-1.662 2.836-2.132 4.801-2.618 3.376-.836 5.678-3.501 5.673-7.031"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/paychex.svg����������������������������������0000664�0000000�0000000�00000001716�14753064456�0025271�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.118 11.891-.868-1.766h1.263l.365.977.75-.977H24l-1.57 1.766.919 1.994h-1.303l-.414-1.046-.879 1.046h-1.42Zm-3.907-1.766h3.108l-.197.967h-1.954l-.099.464h1.816l-.188.898h-1.815l-.1.464h1.994l-.197.967h-3.158Zm-3.691 0h1.164l-.276 1.303h1.056l.276-1.303h1.165l-.79 3.76h-1.154l.305-1.49h-1.055l-.316 1.49H12.74zm-.671 2.329c-.07.385-.365 1.52-1.935 1.52-1.095 0-1.618-.71-1.618-1.717 0-1.214.76-2.23 2.043-2.23.839 0 1.589.364 1.608 1.49h-1.095c.01-.356-.158-.553-.513-.553-.642 0-.878.74-.878 1.273 0 .316.078.79.611.79.365 0 .573-.247.642-.583zm-5.754.05-.809-2.379h1.165l.355 1.401.918-1.401h1.362L8.25 12.493l-.286 1.392H6.809Zm-1.894-1.086.138 1.125h-.72Zm-2.477 2.467h1.184l.286-.533h1.224l.059.533h1.135l-.573-3.76H4.895Zm-.987-2.793h.395c.246 0 .503.05.503.336 0 .246-.158.424-.622.424H1.58ZM0 13.885h1.145l.237-1.135h.78c.986 0 1.627-.651 1.627-1.411 0-.83-.444-1.214-1.134-1.214H.789Z"/></svg>��������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/payhip.svg�����������������������������������0000664�0000000�0000000�00000001133�14753064456�0025113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.695 0A3.696 3.696 0 0 0 0 3.695v12.92A7.384 7.384 0 0 0 7.385 24h12.92A3.696 3.696 0 0 0 24 20.305V0zm11.653 5.604h.166a3.88 3.88 0 0 1 2.677 1.132 3.88 3.88 0 0 1 0 5.48l-.36.356c-1.826-1.825-3.648-3.656-5.476-5.482l.358-.354a3.88 3.88 0 0 1 2.635-1.132m-6.627.125a3.88 3.88 0 0 1 2.566 1c2.068 2.062 4.127 4.133 6.192 6.199l-5.481 5.482-6.19-6.203C3.549 9.7 5.346 5.702 8.722 5.729zm-1.744 1.71a.464.464 0 0 0-.465.465v1.817c0 .256.208.463.465.463h1.816a.464.464 0 0 0 .463-.463l.008-1.817A.464.464 0 0 0 8.8 7.44H6.977z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/payloadcms.svg�������������������������������0000664�0000000�0000000�00000000246�14753064456�0025761�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.068 0 22.08 6.625v12.573L13.787 24V11.427L2.769 4.808zM1.92 18.302l8.31-4.812v9.812z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/payoneer.svg���������������������������������0000664�0000000�0000000�00000001013�14753064456�0025440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.474 3.31c.234 1.802 1.035 5.642 1.398 7.263.095.459.201.853.298 1.013.501.865.907-.287.907-.287C5.644 6.616 3.17 3.597 2.38 2.787c-.139-.15-.384-.332-.608-.396-.32-.095-.374.086-.374.236.01.148.065.565.075.682zm21.835-1.463c.31.224 1.386 1.355 0 1.526-1.984.234-5.76.373-12.022 5.61C8.92 10.968 3.607 16.311.76 22.957a.18.18 0 0 1-.216.106c-.255-.074-.714-.352-.48-1.418.32-1.44 3.201-8.938 10.817-15.552 2.485-2.155 8.416-7.232 12.426-4.245z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/paypal.svg�����������������������������������0000664�0000000�0000000�00000001111�14753064456�0025103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.016 19.198h-4.2a.562.562 0 0 1-.555-.65L5.093.584A.69.69 0 0 1 5.776 0h7.222c3.417 0 5.904 2.488 5.846 5.5q-.008.376-.066.747A6.794 6.794 0 0 1 12.071 12H8.743a.69.69 0 0 0-.682.583l-.325 2.056-.013.083-.692 4.39zM19.79 6.142c-.01.087-.01.175-.023.261a7.76 7.76 0 0 1-7.695 6.598H9.007l-.283 1.795-.013.083-.692 4.39-.134.843-.014.088H6.86l-.497 3.15a.562.562 0 0 0 .555.65h3.612c.34 0 .63-.249.683-.585l.952-6.031a.69.69 0 0 1 .683-.584h2.126a6.79 6.79 0 0 0 6.707-5.752c.306-1.95-.466-3.744-1.89-4.906z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/paytm.svg������������������������������������0000664�0000000�0000000�00000003735�14753064456�0024765�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.85 8.167-.04.004c-.68.19-.543 1.148-1.781 1.23h-.12a.2.2 0 0 0-.052.005h-.001a.24.24 0 0 0-.184.235v1.09c0 .134.106.241.237.241h.645v4.623c0 .132.104.238.233.238h1.058a.236.236 0 0 0 .233-.238v-4.623h.6c.13 0 .236-.107.236-.241v-1.09a.24.24 0 0 0-.236-.24h-.612V8.386a.22.22 0 0 0-.216-.22zm4.225 1.17c-.398 0-.762.15-1.042.395v-.124a.24.24 0 0 0-.234-.224h-1.07a.24.24 0 0 0-.236.242v5.92a.24.24 0 0 0 .236.242h1.07c.12 0 .217-.091.233-.209v-4.25a.393.393 0 0 1 .371-.408h.196a.4.4 0 0 1 .226.09.4.4 0 0 1 .145.319v4.074l.004.155a.24.24 0 0 0 .237.241h1.07a.24.24 0 0 0 .235-.23l-.001-4.246c0-.14.062-.266.174-.34a.4.4 0 0 1 .196-.068h.198c.23.02.37.2.37.408.005 1.396.004 2.8.004 4.224a.24.24 0 0 0 .237.241h1.07c.13 0 .236-.108.236-.241v-4.543c0-.31-.034-.442-.08-.577a1.6 1.6 0 0 0-1.51-1.09h-.015a1.58 1.58 0 0 0-1.152.5c-.291-.308-.7-.5-1.153-.5zM.232 9.4A.234.234 0 0 0 0 9.636v5.924c0 .132.096.238.216.241h1.09c.13 0 .237-.107.237-.24l.004-1.658H2.57c.857 0 1.453-.605 1.453-1.481v-1.538c0-.877-.596-1.484-1.453-1.484zm9.032 0a.24.24 0 0 0-.237.241v2.47c0 .94.657 1.608 1.579 1.608h.675s.016 0 .037.004a.253.253 0 0 1 .222.253c0 .13-.096.235-.219.251l-.018.004-.303.006H9.739a.24.24 0 0 0-.236.24v1.09a.24.24 0 0 0 .236.242h1.75c.92 0 1.577-.669 1.577-1.608v-4.56a.24.24 0 0 0-.236-.24h-1.07a.24.24 0 0 0-.236.24c-.005.787 0 1.525 0 2.255a.253.253 0 0 1-.25.25h-.449a.253.253 0 0 1-.25-.255c.005-.754-.005-1.5-.005-2.25a.24.24 0 0 0-.236-.24zm-4.004.006a.23.23 0 0 0-.238.226v1.023c0 .132.113.24.252.24h1.413c.112.017.2.1.213.23v.14c-.013.124-.1.214-.207.224h-.7c-.93 0-1.594.63-1.594 1.515v1.269c0 .88.57 1.506 1.495 1.506h1.94c.348 0 .63-.27.63-.6v-4.136c0-1.004-.508-1.637-1.72-1.637zm-3.713 1.572h.678c.139 0 .25.115.25.256v.836a.253.253 0 0 1-.25.256h-.1q-.289.002-.578 0zm4.67 1.977h.445c.139 0 .252.108.252.24v.932a.2.2 0 0 1-.014.076.25.25 0 0 1-.238.164h-.445a.247.247 0 0 1-.252-.24v-.933c0-.132.113-.239.252-.239"/></svg>�����������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pcgamingwiki.svg�����������������������������0000664�0000000�0000000�00000017170�14753064456�0026302�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.726 0 3.453 3.461v17.425L12.792 24l7.754-1.034-.002-.598V1.183zm-.742.991-.02 21.948-7.988-2.527L3.95 3.964zm1.349.114 6.4.869v20.189l-6.404.796zm.33.366.007 21.139 5.748-.727V2.228zm-2.152.263L8.251 2.91v4.924l3.279-.422zm-3.61 1.353L4.264 4.274v4.023l3.66-.408zm2.11.015a.74.74 0 0 1 .51.22c.531.502.583 1.41.44 2.076-.128.596-.537 1.477-1.278 1.411-.132-.012-.395-.079-.469-.207L9.212 6.6l.078-.205c.285.122.546.211.839.04.283-.166.471-.503.578-.803.211-.588.211-1.382-.171-1.9-.465-.63-1.126-.3-1.442.288a3 3 0 0 0-.25.937 2 2 0 0 0 .017.441c.02.168.107.341.086.511q-.008.079-.095.095c-.345-.58-.157-1.508.102-2.081.185-.41.615-.824 1.057-.82zM6.427 4.105l-.394 1.098.397-.213-1.151 2.655-.002-.002.502-1.908-.324.155.446-1.634zm3.416.201a.3.3 0 0 1 .106.018c.424.162.294.884.11 1.167-.097.151-.262.157-.424.157v.003c-.066-.24.238-.404.306-.588.04-.108-.002-.199-.045-.29-.102-.053-.186-.022-.223.083a1.3 1.3 0 0 1-.26.457 1.08 1.08 0 0 1 .136-.846.38.38 0 0 1 .294-.16zm-.138.148c-.04 0-.073.052-.073.114s.033.114.073.114.072-.052.072-.114c0-.064-.033-.114-.072-.114m.282 0c-.04 0-.072.052-.072.114s.033.114.072.114c.04 0 .073-.052.073-.114 0-.064-.033-.114-.073-.114m-.46.264c-.04 0-.072.053-.072.115s.033.114.073.114.072-.053.072-.114c0-.064-.033-.115-.072-.115zm.573.06c-.04 0-.072.053-.072.115s.033.114.072.114c.04 0 .073-.053.073-.114 0-.064-.033-.115-.073-.115m-.396.339h.002q.014.021.004.041-.29.66-.583 1.324c-.018-.008-.029-.008-.035-.014a1.2 1.2 0 0 1-.161-.271c-.019-.038.002-.075.025-.106l.677-.904a.2.2 0 0 1 .07-.07zm.305.015c-.04 0-.072.053-.072.114 0 .064.033.115.072.115.041 0 .073-.053.073-.115s-.033-.114-.073-.114m-.18.223c-.04 0-.073.052-.073.114 0 .064.033.114.073.114s.072-.052.072-.114c0-.064-.033-.114-.072-.114m4.285.295 4.992.156.002.401-4.994-.06zm-2.64 2.3-3.225.4-.006 6.944 3.206.1zm-3.561.434-3.628.339.025 6.341 3.594.207zm8.936.54c.33.004.648.287.832.782l1.367.008.033 1.279-1.406.06c-.227 1.04-1.36.943-1.618.058l-1.908.064-.004-1.405 1.846-.068c.229-.542.548-.783.858-.778m.018.41a.64 1.072 0 0 0-.64 1.07.64 1.072 0 0 0 .64 1.073.64 1.072 0 0 0 .64-1.072.64 1.072 0 0 0-.64-1.072zm-11.359.332.368.319 1.617-.058.01.128-1.67.062-.41-.353zm-.246.215a.173.173 0 0 1 .015.346.17.17 0 0 1-.163-.101l-.467.02-.006-.128.467-.02a.18.18 0 0 1 .154-.117m4.985.265c.054.108-.002.307.111.333.153.036.174.075.211.218.017.064-.008.095.058.132.072.041.157.029.159.126.002.133-.056.114-.157.114-.037 0-.05.07-.052.097-.008.098.009.118.104.145.122.035.1.068.1.18 0 .056.011.025-.063.04-.118.022-.145.006-.139.14.009.161.277.03.2.26-.032.1-.195.023-.195.11 0 .11-.023.16.111.17.132.01.124.188.008.228-.07.025-.095-.002-.12.082-.024.085-.022.174-.053.26-.126.092-.24-.036-.24.173 0 .056-.012.097-.022.15-.019.104-.046.015-.12.038-.02-.025 0-.163 0-.196 0-.098-.033-.12-.145-.112-.006.12-.004.248-.1.335-.06-.04-.083-.1-.088-.168-.006-.134.004-.138-.134-.171a.9.9 0 0 0-.03.3c-.108.054-.125-.112-.125-.178 0-.056.023-.118-.047-.139-.07-.018-.095.017-.097.08-.004.127-.01.183-.11.253-.04-.111-.006-.304-.136-.34-.145-.036-.163-.142-.165-.28-.003-.151-.184-.007-.184-.17 0-.016-.013-.101 0-.114.06-.043.12.025.175.002.027-.074.037-.186-.043-.205-.083-.018-.161-.028-.143-.124.023-.118.002-.111.13-.12.098-.006.062-.107.065-.173-.129-.06-.182.016-.182-.154 0-.115-.009-.105.107-.105.1 0 .07-.035.07-.13 0-.106-.19-.013-.198-.158-.004-.062.02-.116.08-.138.106-.042.118-.048.123-.162.006-.165.115-.184.247-.25l-.002-.002c-.002-.106 0-.207.066-.294.124.004.102.2.104.296.212.105.1-.224.21-.317.157-.016-.012.331.143.327.101-.002.08-.05.078-.138-.002-.081.009-.162.079-.213.17.064.016.376.231.326 0-.132-.02-.293.12-.364m-2.987.13a.17.17 0 0 1 .178.168.17.17 0 0 1-.168.178.17.17 0 0 1-.16-.097l-.523.015a.171.171 0 0 1-.329-.067.17.17 0 0 1 .167-.178v-.002a.175.175 0 0 1 .168.116l.508-.014a.17.17 0 0 1 .159-.118zm-1.206.253 1.475 2.15-.11.068-1.448-2.092-1.322.081-.004-.124zm1.501.157-.008.186-.136.197a.17.17 0 0 1-.023.192v-.002a.173.173 0 0 1-.244.017.17.17 0 0 1-.016-.242.17.17 0 0 1 .186-.05zM6.858 11a.17.17 0 0 1 .144.073c.041.06.041.135.004.193l.527.786.002.203-.634-.917a.17.17 0 0 1-.18-.068l-.002.002a.173.173 0 0 1 .043-.24.17.17 0 0 1 .096-.032m-.856.071a.173.173 0 0 1 .014.346.17.17 0 0 1-.163-.102l-1.181.06-.006-.128 1.181-.06a.18.18 0 0 1 .155-.116m.361.683.393.49a.17.17 0 0 1 .085-.022c.095 0 .173.078.173.173a.175.175 0 0 1-.173.174.175.175 0 0 1-.174-.174q.001-.024.008-.05l-.361-.46-1.626.04-.004-.13zm-1.117.436h.002c.059.001.11.032.138.077l.992.027.39.474a.17.17 0 0 1 .085-.023c.095 0 .174.079.174.174a.175.175 0 0 1-.174.174.175.175 0 0 1-.174-.174.2.2 0 0 1 .009-.05l-.36-.445-.919-.027a.164.164 0 0 1-.159.124.166.166 0 0 1-.002-.33zm-.447.205c.06 0 .104.014.15.085.136.213.264.432.394.65q.097.161.196.32c.095.153.12.166.302.178.13.009.262.009.394.009.137 0 .133-.114.263-.102.111.106.111.242 0 .348-.124.008-.11-.12-.203-.12H5.9c-.197 0-.256.043-.358-.116l-.694-1.109h-.171V12.4c.048 0 .088-.004.123-.004zm1.5.34a.17.17 0 0 1 .178.167.17.17 0 0 1-.167.178.17.17 0 0 1-.161-.097l-.459.01a.172.172 0 0 1-.328-.066.17.17 0 0 1 .167-.178v-.002a.175.175 0 0 1 .167.116l.444-.01a.17.17 0 0 1 .16-.118zm.965.181a.171.171 0 1 1-.023.34l-.516.76-.136.001.543-.827a.172.172 0 0 1 .132-.274m-2.437.013a.166.166 0 0 1 0 .331.166.166 0 0 1 0-.331m.364.563c.045 0 .089.017.123.051a.17.17 0 0 1 0 .245.17.17 0 0 1-.244 0 .2.2 0 0 1-.03-.042l-.147-.006-.163.228-.095-.09.2-.266.192.006a.2.2 0 0 1 .043-.075.17.17 0 0 1 .121-.05zm2.157.136c.06.001.129.013.17.013.006.058.01.11-.03.161-.071.002-.14-.029-.21-.035l-.123.17c.024.053.103.003.117.074-.02.085-.184.01-.24.019-.028-.09.174-.317.226-.39a.2.2 0 0 1 .09-.012m8.472.317v7.742l-1.452.174-.004-7.838zM4.337 15.563l-.004 2.125 1.692.231.01-2.234zm1.948.128v4.864l2.927.882v-5.554zm3.313.224.013 5.745.2.062c.15-.515.42-.316.438.14l.386.115c.004-.543.473-.348.395.117l.357.133-.012-6.188-.263-.017c.058.571-.512.565-.421-.027l-.42-.027c.067.549-.508.534-.419-.035zm-4.614.235.276.607.17-.31.396.897-1.292-.2zm.71.013c.091 0 .163.072.163.163a.16.16 0 0 1-.163.164.16.16 0 0 1-.163-.164c0-.09.072-.163.163-.163m4.103.498 1.402.147v1.382l-1.402-.205zm-2.24.019c.178.012.347.048.484.178.308.294-.238.863.008 1.208.221-.213.217-.478.384-.703.166.213.31.641.283.912-.142.172-.256.27-.597.294.01.076-.037.149-.016.238.182.194.382.163.622.149.033.17-.139.695-.267.821-.26-.118-.394-.37-.539-.602a.6.6 0 0 0-.132.126c.035.267.372.606.328.842a.64.64 0 0 1-.365.07c-.128-.018-.18-.088-.21-.225-.069-.303.065-.677-.19-.894-.125.246-.09.518-.123.785-.2-.05-.345-.45-.384-.621.035-.205.142-.356.266-.515.058-.075.077-.15.04-.236-.015-.033-.013-.075-.042-.102-.18.031-.287.17-.41.29-.14-.145-.108-.69.003-.85a.6.6 0 0 1 .467.12c.11-.108.116-.213.019-.325-.075-.085-.304-.184-.345-.271-.033-.13.21-.57.357-.563.161.238.256.507.31.788.056.023.105.044.17.031.032-.32-.04-.626-.141-.926q.015-.017.02-.019m-3.23 1.305v2.12l1.708.417.019-2.284zm5.472.245 1.4.225v1.395l-1.4-.3zm-4.6.3.014 1.398-.337-.432-.301-.066v-.598l.283.041zm.398.095.013.002c.037.085.08.172.105.265.103.393.103.773-.118 1.144l-.002-.002c-.04-.077-.029-.135-.002-.203.064-.168.122-.34.11-.521a1.5 1.5 0 0 0-.096-.464 4 4 0 0 1-.068-.186c.015-.022.03-.037.058-.035m-.143.145c.02.001.028.014.034.027.043.088.074.177.093.275.02.113.01.225.018.337.006.072-.016.143-.027.211a.27.27 0 0 1-.134.197v.002h-.002l.002-.002c-.006-.067.019-.127.033-.187.02-.09.052-.182.064-.273.017-.116-.02-.227-.05-.34l-.045-.154c-.008-.033-.014-.064.004-.093zm-.123.162q.016 0 .033.005a.96.96 0 0 1 .074.424c-.002.056-.023.106-.035.158-.01.039-.037.062-.07.08-.027-.027-.019-.051-.013-.078.017-.077.033-.151.035-.23.005-.12-.033-.232-.06-.35h-.002a.1.1 0 0 1 .038-.009m4.468.835 1.396.318v1.383l-1.396-.385z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pdm.svg��������������������������������������0000664�0000000�0000000�00000001135�14753064456�0024403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.44.418a3.12 3.12 0 0 1 3.12 0l7.69 4.44a3.12 3.12 0 0 1 1.56 2.702v8.88a3.12 3.12 0 0 1-1.56 2.702l-7.69 4.44a3.12 3.12 0 0 1-3.12 0l-7.69-4.44a3.12 3.12 0 0 1-1.56-2.702V7.56a3.12 3.12 0 0 1 1.56-2.702Zm3.87 3.315L12.311 2.58a.62.62 0 0 0-.624 0l-7.69 4.44a.62.62 0 0 0-.312.54v3.774l10.623-6.133Zm2.496 13.643 1.255.725 1.941-1.12a.62.62 0 0 0 .312-.541V7.56a.62.62 0 0 0-.312-.54l-3.196-1.845Zm-2.497-1.441V8.083l-6.8 3.926ZM3.686 14.217v2.223c0 .223.119.429.312.54l7.69 4.44a.62.62 0 0 0 .624 0l3.252-1.878-10.55-6.091Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pdq.svg��������������������������������������0000664�0000000�0000000�00000002702�14753064456�0024410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.813 7.373a4.66 4.66 0 0 0-3.323 1.354 4.6 4.6 0 0 0-1.2 2.078 4.2 4.2 0 0 0-.696-1.59 3.7 3.7 0 0 0-1.084-1.027c-.323-.2-.731-.4-1.184-.5-.479-.104-.994-.14-1.625-.14H6.707v8.891h3.502a4.5 4.5 0 0 0 1.727-.322 3.7 3.7 0 0 0 1.324-.904c.376-.409.664-.89.847-1.414q.105-.287.172-.596a4.46 4.46 0 0 0 1.237 2.09c.442.415.96.742 1.525.965a5 5 0 0 0 1.89.353q1.271.002 2.42-.693.309.331.858.52c.397.13.813.192 1.23.187.188.004.374-.017.561-.025v-1.801c-.082-.001-.11.014-.188.013q-.628.001-.976-.316c.25-.365.447-.766.582-1.187.123-.412.185-.839.182-1.268a4.6 4.6 0 0 0-.368-1.838 4.5 4.5 0 0 0-1.017-1.482 4.9 4.9 0 0 0-3.402-1.348M0 7.549v8.89l2.18-.002v-2.785h.976q.95 0 1.551-.173c1.117-.318 1.588-1.234 1.738-1.612.17-.41.256-.85.254-1.293a3.3 3.3 0 0 0-.267-1.332 2.7 2.7 0 0 0-1.256-1.34c-.319-.156-.746-.279-1.31-.32a12 12 0 0 0-.95-.033Zm18.81 1.824c.346-.003.689.06 1.01.188a2.35 2.35 0 0 1 1.319 1.334c.127.322.19.665.187 1.011.003.227 0 .573-.308 1.32a20 20 0 0 1-.32-.372c-.24-.288-.534-.513-.91-.788-1.65-1.15-2.842-.697-3.37-.453q.175-1.04.816-1.64t1.577-.6Zm-16.63.174h.828q.803 0 1.158.248t.354.812q0 1.047-1.418 1.047H2.18zm6.8 0h.989q1.043 0 1.605.64.561.64.56 1.84.001 1.173-.554 1.793t-1.625.62H8.98Zm8.467 3.43c.348-.003.692.075 1.004.226q.365.158.668.412.34.305.615.668c-.453.328-.762.337-.949.332a2.2 2.2 0 0 1-1.27-.406 2.4 2.4 0 0 1-.869-1.086c.575-.197.792-.131.801-.146"/></svg>��������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/peakdesign.svg�������������������������������0000664�0000000�0000000�00000000460�14753064456�0025735�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m24 10.523-9.446 6.493-4.74-3.271 4.723-3.255 3.738 2.57 3.705-2.537zm-6.743 3.255-2.72-1.886-2.704 1.853 2.737 1.869zm-7.794-.284-3.738-2.57-3.706 2.554H0l9.43-6.493 4.756 3.255zM6.726 10.24l2.737 1.869 2.704-1.869L9.43 8.37z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pearson.svg����������������������������������0000664�0000000�0000000�00000002143�14753064456�0025272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.22 1.546C12.596-1.648 5.258.088 2.096 6.928c-2.176 4.71-1.188 12.896 3.88 15.83 5.066 2.934 11.866.472 14.98-5.29 3.542-6.554 2.356-13.034-2.736-15.922m-6.244 18.526a1.2 1.2 0 0 1-.76.248 1.6 1.6 0 0 1-.4-.054 1.1 1.1 0 0 1-.528-.306.94.94 0 0 1-.21-.474 1.15 1.15 0 0 1 .208-.854c.2-.298.532-.48.89-.49a1 1 0 0 1 .186.018c.188.04.366.12.518.24.286.217.456.553.462.912a.94.94 0 0 1-.366.76m7.656-9.834c-.202 1.514-1.14 2.914-2.7 3.84-1.236.738-2.86 1.032-4.46 1.046-.012.248-.062 1.1-.088 1.236a.87.87 0 0 1-.196.42c-.172.218-.47.36-.766.44a2.5 2.5 0 0 1-.632.096.8.8 0 0 1-.568-.234.8.8 0 0 1-.204-.482l-.012-.17c-.034-.144-.22-7.496-.184-7.366.028-.88 1.48-1.034 2.27-.88.79.158.59 1.098.57 2.252 0 0-.04 1.52-.112 3.124a6.2 6.2 0 0 0 2.556-.684c1.512-.732 2.312-1.856 2.312-3.512s-1.648-3.51-4.688-3.51-4.346.75-5.818 1.94c-.332.27-.588.54-.83.72-.24.178-.882.204-1.054-.212-.208-.504.18-1.064.406-1.334.36-.426 1.24-1.284 2.218-1.78C8.772 4.616 10.14 4 12.048 3.954c1.724-.044 4.448.094 6.41 2.26l.014.014c1.02 1.066 1.34 2.684 1.16 4.01"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/peerlist.svg���������������������������������0000664�0000000�0000000�00000003031�14753064456�0025447�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C2.667 0 0 2.667 0 12s2.673 12 12 12 12-2.667 12-12S21.327 0 12 0m8.892 20.894c-1.57 1.569-4.247 2.249-8.892 2.249s-7.322-.68-8.892-2.25C1.735 19.522 1.041 17.3.89 13.654A40 40 0 0 1 .857 12c0-1.162.043-2.201.13-3.13.177-1.859.537-3.278 1.106-4.366.284-.544.62-1.006 1.013-1.398s.854-.729 1.398-1.013C5.592 1.524 7.01 1.164 8.87.988 9.799.9 10.838.858 12 .858c4.645 0 7.322.68 8.892 2.248s2.25 4.246 2.25 8.894-.681 7.325-2.25 8.894M20.538 3.46C19.064 1.986 16.51 1.357 12 1.357c-4.513 0-7.067.629-8.54 2.103C1.986 4.933 1.357 7.487 1.357 12c0 4.511.63 7.065 2.105 8.54C4.936 22.014 7.49 22.643 12 22.643s7.064-.629 8.538-2.103 2.105-4.029 2.105-8.54-.63-7.065-2.105-8.54M14.25 16.49a6.1 6.1 0 0 1-2.442.59v2.706H10.45v.357H6.429V5.57h.357V4.214h5.676c3.565 0 6.467 2.81 6.467 6.262 0 2.852-1.981 5.26-4.68 6.013zm-1.788-8.728H10.45v5.428h2.011c1.532 0 2.802-1.2 2.802-2.714s-1.27-2.714-2.802-2.714zm.901 4.351c.117-.239.186-.502.186-.78 0-1.01-.855-1.857-1.945-1.857h-.296V8.62h1.154c1.09 0 1.945.847 1.945 1.857 0 .705-.422 1.323-1.044 1.637zm4.104 1.493q.064-.096.123-.194a5.7 5.7 0 0 0 .526-1.103 6 6 0 0 0 .11-.362q.032-.113.06-.227a6 6 0 0 0 .073-.41c.01-.068.025-.134.032-.203q.037-.31.038-.63c0-3.198-2.687-5.763-5.967-5.763H7.286v14.572h4.022v-3.048h1.154c1.43 0 2.747-.488 3.778-1.303a6 6 0 0 0 .46-.406q.05-.052.1-.105.16-.163.308-.337.064-.08.126-.162.123-.156.233-.319m-5.005 1.775H10.45v3.048H8.143V5.57h4.319c2.837 0 5.11 2.211 5.11 4.905s-2.273 4.905-5.11 4.905z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/peertube.svg���������������������������������0000664�0000000�0000000�00000000221�14753064456�0025431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6.545v10.91L20.727 12M3.273 12v12L12 17.455M3.273 0v12L12 6.545"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pegasusairlines.svg��������������������������0000664�0000000�0000000�00000006536�14753064456�0027033�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.511 12.101-.574 1.331H8.77l-.05-.09c-.32.134-.593.185-.966.185a1.076 1.076 0 0 1-1.072-1.18 2.626 2.626 0 0 1 2.601-2.324c.648 0 1.017.12 1.56.383l-.144.342c-.027.067-.105.114-.166.084-.064-.029-.05-.069-.08-.134-.05-.108-.116-.142-.158-.171a.8.8 0 0 0-.496-.138c-.34 0-.647.128-.882.337a2.88 2.88 0 0 0-.963 1.798.478.478 0 0 0 .468.549c.323 0 .5-.187.623-.463l.228-.533c.027-.068-.044-.126-.073-.13-.049-.02-.08-.058-.08-.106 0-.066.05-.12.142-.12h1.416c.084-.004.147.088.113.166-.016.04-.047.062-.103.069-.1.016-.14.058-.177.145m-3.97-.693a.15.15 0 0 0-.13.075c-.05.078-.096.086-.176.092h-.716L6 10.464h.85c.05-.003.075.054.072.082-.002.052.023.097.067.116.06.026.134-.012.166-.085l.203-.471h-2.7c-.093 0-.148.05-.148.116 0 .048.031.089.08.108.042.009.098.07.075.131l-1.287 2.985h2.965l.166-.381a.12.12 0 0 0-.108-.17.16.16 0 0 0-.131.076.23.23 0 0 1-.213.118h-1.19l.509-1.181h.785c.046.003.065.057.063.082-.002.052.011.097.056.116.06.026.135-.012.166-.085l.193-.443c.034-.072-.012-.171-.096-.169m-3.716.722h-.976l-.432 1.014c-.016.028.005.063.032.075.05.018.08.059.08.107 0 .066-.064.119-.143.119H0l1.298-3.018c.019-.044-.023-.087-.049-.095-.048-.019-.08-.06-.08-.107 0-.066.065-.12.144-.12.513 0 1.72 0 2.22.003a.6.6 0 0 1 .555.358q.079.195.08.417c0 .233-.073.45-.194.63-.26.385-.688.617-1.15.617m.017-1.613c-.062-.046-.205-.06-.27-.054l-.548 1.272h.214c.272-.003.49-.156.641-.4.199-.323.182-.69-.037-.818m18.67-.129c.055-.006.086-.028.102-.068.034-.078-.028-.17-.113-.166h-1.34l-1.165 2.704a.5.5 0 0 1-.458.3c-.04 0-.087-.013-.125-.022a.3.3 0 0 1-.221-.298c.006-.198.126-.482.189-.629l.725-1.673c.038-.087.077-.132.177-.148.055-.006.086-.028.102-.068.034-.078-.028-.17-.113-.166H17.81c-.079 0-.143.054-.143.12 0 .048.031.088.08.107.026.008.068.051.049.094l-.526 1.218c-.133.285-.209.607-.216.938 0 .324.186.604.456.742.284.137.6.214.935.214a2.39 2.39 0 0 0 2.227-1.518l.662-1.532c.037-.087.079-.133.179-.149m1.196-.359c-.862.06-1.399.686-1.348 1.409.018.257.112.492.255.685 0 0 .644.773.682.822.022.031.082.122.089.212.016.24-.104.438-.41.46-.357.024-.653-.129-.782-.359-.02-.056-.016-.127-.083-.146-.059-.02-.127.02-.152.091l-.144.414c.323.248.753.393 1.295.353.863-.06 1.4-.685 1.348-1.408-.017-.257-.191-.487-.335-.68-.104-.128-.41-.494-.52-.627-.08-.114-.159-.241-.172-.385-.018-.25.153-.465.46-.487.354-.025.6.123.731.35.02.057.016.128.083.146.06.021.127-.02.152-.09l.143-.407c-.323-.248-.75-.392-1.292-.353m-5.663.85c-.067-.018-.063-.088-.083-.145-.131-.228-.378-.375-.732-.35-.306.021-.477.237-.46.487.014.143.092.27.172.385.112.134.415.496.52.626.144.194.318.423.336.68.05.723-.486 1.348-1.348 1.409-.543.039-.973-.105-1.296-.354l.06-.173H12.82c-.08 0-.142-.052-.142-.118 0-.048.03-.089.08-.107.025-.009.065-.048.05-.092l-.23-.988h-1.049l-.607.983c-.022.045.024.086.048.094.05.019.08.059.08.107.001.066-.063.12-.142.12l-.622.001c-.085.005-.15-.088-.114-.166.02-.046.06-.063.116-.07a.2.2 0 0 0 .154-.096l1.9-3.005h1.164c.079 0 .143.054.143.12 0 .048-.031.088-.08.107-.021.01-.053.031-.052.075l.703 3.02.08-.225c.025-.071.092-.112.151-.091.043.015.07.055.072.105a.1.1 0 0 0 .012.04c.128.23.424.384.78.359.307-.022.428-.22.41-.46a.46.46 0 0 0-.088-.211c-.038-.05-.681-.822-.681-.822a1.3 1.3 0 0 1-.256-.686c-.05-.723.486-1.348 1.349-1.408.542-.04.968.104 1.291.352l-.143.407c-.024.07-.093.111-.151.09m-4.562.855-.192-.83-.513.83z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pelican.svg����������������������������������0000664�0000000�0000000�00000003474�14753064456�0025246�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.942 0c.342 1.055 1.876 2.186 2.906 2.624 1.313.558 2.598.685 3.75.812.895.096 1.702.201 2.344.5.162.072.329.148.469.25.459.336.946.987 1.281 1.437.719.958.586 1.745 1.438 2.217.089.05.168.083.281.125.271.102.667.228.844-.156a.8.8 0 0 0 .062-.187c-.071-.23-.32-.433-.469-.531a2.8 2.8 0 0 1-.562-.469c-.35-.358-.348-.95-.594-1.374.31-.131 1.94-.36 2.281-.313.732.033 1.31.079 1.75.531.173.137.25.257.407.375.01.01.02.024.031.031.693.504 1.339.67 1.906.844.15.045.3.105.438.156.213.076.406.16.594.281.222.147.609.542.625.875-.559-.179-.207.032-1.032-.032-.401-.045-.805-.064-1.218-.093a16 16 0 0 1-1.875-.219c-.1-.018-.215-.039-.313-.062-.076-.017-.146-.011-.219-.032v.063c-.016.63.422.958-.593 2.155-.01.013-.02.017-.032.031-.27.315-1.657.917-2.093 1.031-1.86.373-3.292-.828-5.532-.219-.788.293-1.357 1.576-1.719 2.53-.482 1.268-.876 2.796-1.312 4.311-.2.698-.418 1.402-.657 2.062-.575 1.584-1.31 2.943-2.406 3.717-.164.125-.787.41-.812.625.404.203 4.185.056 4.812 0 2.504-.219 3.647-1.774 4.47-3.905.565-1.462 1.064-3.986 2.03-5.31.013-.018.019-.015.032-.031.145-.197.327-.37.5-.5.045-.035.077-.065.125-.094.034-.022.156-.059.344-.093 1.735-.308 9.349-1.348 9.844-6.872.05-.559.015-1.16-.094-1.812a9 9 0 0 0-.219-1.03c-.246-.87-.798-1.615-1.531-2.219a6 6 0 0 0-.625-.468c-.846-.54-1.878-.921-2.97-1.156a11.5 11.5 0 0 0-2.25-.25C9.84.033 6.399.207.943 0m1.625 4.217c.023.038.039.057.062.094 1.6 2.527 3.61 2.503 5.438 2.717.666.078 1.317.185 1.906.469.262.123.512.265.75.468a2.3 2.3 0 0 0-.125-.375c-.444-1.076-1.648-1.666-2.687-1.967-1.394-.499-2.404-.019-5.344-1.406m1.406 3.186c.01.053.01.095.031.156.22.635 1.04 1.65 2.094 1.874.457.164.315.118 1.094.094 1.14-.058 1.692-.08 2.5.25-.02-.05-.042-.11-.062-.156-.623-1.446-1.37-1.2-3.75-1.375-1.02-.307-1.26-.341-1.907-.843"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/peloton.svg����������������������������������0000664�0000000�0000000�00000001112�14753064456�0025276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.728 5.764 1.731-3.006a1.84 1.84 0 0 0-.672-2.513 1.84 1.84 0 0 0-2.513.673l-1.74 3.007a8.46 8.46 0 0 0-9.86 3.847 8.46 8.46 0 0 0-.664 7.032l3.205-5.558a5.5 5.5 0 0 1 3.353-2.572 5.43 5.43 0 0 1 4.183.554c2.631 1.523 3.541 4.905 2.018 7.536a5.523 5.523 0 0 1-7.536 2.018l1.84-3.185a1.84 1.84 0 0 0 2.511-.672 1.84 1.84 0 0 0-.672-2.512 1.84 1.84 0 0 0-2.512.672L4.545 21.242a1.84 1.84 0 0 0 .672 2.512 1.84 1.84 0 0 0 2.512-.672l1.741-3.007a8.46 8.46 0 0 0 9.86-3.847c2.018-3.491 1.257-7.833-1.602-10.464"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/penny.svg������������������������������������0000664�0000000�0000000�00000001317�14753064456�0024756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.053 11.914h.368c.419 0 .675-.245.718-.556.043-.27-.154-.556-.547-.556H2.24zm18.611-.638.839-1.504h1.924l-2.908 4.399H18.56l.933-1.26-1.07-3.049-.727 4.309h-1.54l-.949-2.036-.342 2.036h-1.54l.745-4.4h1.582l.915 1.971.334-1.97h3.37zm-7.21-1.504-.744 4.399h-1.54l-.949-2.036-.342 2.036h-1.54l.745-4.4h1.582l.915 1.971.334-1.97zM3.036 9.707c1.07 0 1.788.547 1.797 1.438l.23-1.373h3.49l-.188 1.112H6.517l-.094.523h1.668l-.188 1.104H6.235l-.094.548h1.873l-.188 1.112H4.32l.402-2.38c-.273.77-1.009 1.227-1.967 1.227h-.88l-.198 1.153H0l.753-4.464zM24 13.345c0 .523-.445.948-.992.948s-.992-.425-.992-.948.445-.948.992-.948c.556.008.992.425.992.948"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/penpot.svg�����������������������������������0000664�0000000�0000000�00000001323�14753064456�0025127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.654 0 5.13 3.554v2.01L2.934 6.608l-.02-.009v13.109l8.563 4.045L12 24l.523-.247 8.563-4.045V6.6l-.017.008-2.196-1.045V3.555l-.077-.108L16.349.001l-2.524 3.554v.004L11.989.973l-1.823 2.566-.065-.091zm.447 2.065.976 1.374H6.232l.964-1.358zm8.694 0 .976 1.374h-2.845l.965-1.358zm-4.36.971.976 1.375h-2.845l.965-1.359zM5.962 4.132h1.35v4.544l-1.35-.638Zm2.042 0h1.343v5.506l-1.343-.635zm6.652 0h1.35V9l-1.35.637zm2.042 0h1.343v3.905l-1.343.634zm-6.402.972h1.35v5.62l-1.35-.638zm2.042 0h1.343v4.993l-1.343.634zm6.534 1.493 1.188.486-1.188.561zM5.13 6.6v1.047l-1.187-.561ZM3.96 8.251l7.517 3.55v10.795l-7.516-3.55zm16.08 0v10.794l-7.517 3.55V11.802z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/percy.svg������������������������������������0000664�0000000�0000000�00000002734�14753064456�0024753�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.235 2.4s.569 1.169.616 1.547c0 0-1.856-.646-4.458-.891 0 0 1.25.872 1.734 1.538 0 0-1.84-.093-4.586 0 0 0 1.561.634 2.252 1.215 0 0-3.26.331-5.103.862 0 0 2.076.73 2.652 1.276 0 0-2.648.754-5.316 2.294 0 0 1.482.26 2.642.766 0 0-1.478 1.033-3.668 3.852 0 0 1.62-.309 2.73-.222 0 0-1.407 1.644-2.141 4.158 0 0 .813-.518 1.602-.706 0 0 .084 2.998 1.724 3.478v-.002a.8.8 0 0 0 .225.034q.12 0 .248-.036c.52-.15.915-.663 1.37-1.256.15-.195.303-.395.466-.59q.302-.427.706-.762c.58-.478 1.38-.84 2.358-.695 1.1.093 1.78 1.189 2.327 2.07.283.458.659 1.27 1.289 1.27.696 0 .94-.834 1.25-1.862.292-.97.726-1.891 1.29-2.732 1.085-1.617 2.474-2.495 4.14-3.36 1.595-.83 3.102-1.614 3.858-2.803.379-.594.567-1.325.558-2.169a7 7 0 0 0-.31-1.909c-.139-.455-.505-.902-.939-.72a3.4 3.4 0 0 1-1.151.256c-.858-.805-3.379-2.4-5.038-3.303 0 0 .202.592.482 1.699 0 0-1.787-1.396-3.81-2.296zm0 2.7 3.81.945-1.233.255zM9.957 6.67l4.571.354-1.388.46Zm6.955 1.082-.678.514-2.383.134zm-5.784.514-1.088.73-3.018-.287Zm4.505 1.206-1.105.617-3.002-.176zm-8.282.77-.679 1.312-2.982 1.313zm4.135.533-.77 1.265-3.853.942zm-5.845 2.354-.118 1.313L3.6 16.2zm11.31 3.151c-1.093 1.127-2.002 2.806-2.232 4.121.39.58.746.867 1.08.873h.012q.52-.002.68-.693c.077-.343.094-.813.114-1.36.029-.844.067-1.894.346-2.94zm-7.904 2.512c-1.018.011-2.008.83-2.506 1.532v.001c.283.64.587.953.925.953a1 1 0 0 0 .082-.007c.46-.072.886-.963 1.242-1.825a20 20 0 0 0 .257-.654"/></svg>������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/perforce.svg���������������������������������0000664�0000000�0000000�00000001261�14753064456�0025430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.741 8.755c.164-.425.352-.834.573-1.219-.213-.196-.745-.613-.712-.646 2.774-3.322 6.391-4.32 9.59-3.74.655.09 1.31.246 1.956.483 4.583 1.702 6.898 6.75 5.18 11.284a9.3 9.3 0 0 1-.614 1.285c.254.22.81.63.778.663-3.077 3.641-7.177 4.484-10.589 3.47a11 11 0 0 1-.982-.295c-4.574-1.702-6.898-6.751-5.18-11.285M19.371.982c-.581.556-1.277 1.227-1.62 1.53a12 12 0 0 0-1.727-.802C10.819-.221 5.337 1.964 2.317 6.03.738 8.364-.195 11.236.034 14.19c0 0 .009 5.556 5.14 8.83.417-.574.948-1.31 1.3-1.785a12.4 12.4 0 0 0 1.817.86c5.892 2.184 12.422-.606 14.557-6.228 0 0 1.563-3.428 1.048-7.176 0 0-.401-5.057-4.525-7.708z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/perl.svg�������������������������������������0000664�0000000�0000000�00000002531�14753064456�0024566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m.157 1.103a10.91 10.91 0 0 1 9.214 5.404c-1.962.152-3.156 1.698-5.132 3.553-2.81 2.637-4.562.582-5.288-.898-.447-1.004-.847-2.117-1.544-2.769A.4.4 0 0 1 9.3 6.02l.08-.37a.083.083 0 0 0-.074-.1c-.33-.022-.601.093-.84.368a2.5 2.5 0 0 0-.375-.064c-.863-.093-1.036.345-1.873.345H5.81c-.758 0-1.391.361-1.7.892-.248.424-.257.884.15.93-.126.445.292.62 1.224.192 0 0 .733.421 1.749.421.549 0 .712.087.914.967.486 2.138 2.404 5.655 6.282 5.655l.118.166c.659.934.86 2.113.48 3.184-.307.867-.697 1.531-.697 1.531q.01.178.01.349c0 .81-.175 1.553-.387 2.23a10.91 10.91 0 0 1-11.989-6.342A10.91 10.91 0 0 1 7.608 2.01a10.9 10.9 0 0 1 4.55-.907M7.524 6.47c.288 0 .575.231.477.272a.4.4 0 0 1-.1.02.38.38 0 0 1-.375.327.384.384 0 0 1-.378-.326.4.4 0 0 1-.101-.02c-.098-.042.19-.273.477-.273m10.193 10.49q.05 0 .101.007.326.054.694.096.135.01.269.026a13.4 13.4 0 0 0 2.846-.007 10.9 10.9 0 0 1-2.007 2.705c-.11-.23-.547-1.19-.573-2.196q-.156-.01-.313-.026-.13-.014-.256-.022a18 18 0 0 1-.735-.102h-.003c-.032 0-.06.01-.074.035l-.003.012q-.081.265-.182.544c.428 1.084.652 2.078.652 2.078.14.22.258.432.363.64a11 11 0 0 1-2.168 1.264 11 11 0 0 1-1.205.426 13.3 13.3 0 0 1 1.055-2.531s.678-1.445 1.027-2.564v-.004a.55.55 0 0 1 .512-.38"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/perplexity.svg�������������������������������0000664�0000000�0000000�00000000672�14753064456�0026035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.398 7.09h-2.31V.068l-7.51 6.354V.158h-1.156v6.196L4.49 0v7.09H1.602v10.397H4.49V24l6.933-6.36v6.201h1.155v-6.047l6.932 6.181v-6.488h2.888zm-3.466-4.531v4.53h-5.355zm-13.286.067 4.869 4.464h-4.87zM2.758 16.332V8.245h7.847L4.49 14.36v1.972zm2.888 5.04v-6.534l5.776-5.776v7.011zm12.708.025-5.776-5.15V9.061l5.776 5.776zm2.889-5.065H19.51V14.36l-6.115-6.115h7.848z"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/persistent.svg�������������������������������0000664�0000000�0000000�00000003346�14753064456�0026031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.92 3.984a5.9 5.9 0 0 0-1.2-2.09A5.8 5.8 0 0 0 19.814.49a5.5 5.5 0 0 0-4.542 0c-1.425.642-2.55 1.912-3.062 3.413a6 6 0 0 0-.268 1.158 7.6 7.6 0 0 0-.047 1.167l.02 2.247.034 4.496.011 2.248c.002.375-.002.75.004 1.124.002.186.008.378.007.56.002.18-.01.36-.014.541a8 8 0 0 1-.138 1.082q-.113.542-.34 1.044a5.6 5.6 0 0 1-1.263 1.792c-1.076.998-2.549 1.543-3.992 1.416a5.1 5.1 0 0 1-2.073-.605 5.25 5.25 0 0 1-1.654-1.427 6 6 0 0 1-.594-.936 5.4 5.4 0 0 1-.412-1.034 5.2 5.2 0 0 1-.167-2.195c.053-.362.137-.72.248-1.063q.173-.51.428-.982.246-.458.574-.86a4.3 4.3 0 0 1 .7-.71c1.007-.846 2.343-1.21 3.707-1.214 1.412.002 2.825.024 4.238.015l-.01-1.535c-1.408.03-2.815.128-4.22.235a7.2 7.2 0 0 0-2.287.569 6.4 6.4 0 0 0-1.04.57 6 6 0 0 0-1.66 1.646 6 6 0 0 0-.57 1.025 7.3 7.3 0 0 0-.62 2.267 7.6 7.6 0 0 0 .152 2.412c.187.805.518 1.57.976 2.258a6.4 6.4 0 0 0 1.79 1.788 6.1 6.1 0 0 0 2.412.92c.108.02.215.03.322.041.106.012.213.024.326.027q.168.011.335.01a5.8 5.8 0 0 0 1.658-.24 6.8 6.8 0 0 0 1.253-.504c.402-.21.78-.47 1.135-.76a7.05 7.05 0 0 0 1.864-2.492q.074-.161.136-.327a5.5 5.5 0 0 0 .219-.67 9.4 9.4 0 0 0 .25-1.384c.017-.233.04-.465.047-.697l.01-.302.015-.28.053-1.125.049-2.248.095-4.495.046-2.248.004-.282.002-.067.002-.047.005-.094a4 4 0 0 1 .223-1.087 3.9 3.9 0 0 1 .754-1.252 3.5 3.5 0 0 1 1.164-.856 3.4 3.4 0 0 1 1.402-.298c.487-.009.97.087 1.416.282.457.2.867.491 1.205.858.34.372.614.812.79 1.296.178.492.257 1.016.23 1.539a4 4 0 0 1-.378 1.529 3.77 3.77 0 0 1-2.35 2.016 4 4 0 0 1-.783.149l-.1.006c-.036.003-.06.006-.11.007l-.271.007-.543.015-2.02.056-.037 1.766 2.057.028.543.007.27.004.29-.003a5.6 5.6 0 0 0 3.29-1.204 5.8 5.8 0 0 0 1.523-1.861 6.2 6.2 0 0 0 .384-4.757"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/personio.svg���������������������������������0000664�0000000�0000000�00000002046�14753064456�0025463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.603 24H2.47v-1.563h19.133Zm-6.167-4.044c.557.145 1.137-.244 1.303-.867.166-.624-.157-1.25-.713-1.39-.556-.142-1.137.24-1.304.865-.167.624.156 1.25.714 1.39zM22.37.676c-1.737-1.347-5.387-.43-8.145.576A41.707 41.705 0 0 0 5.64 5.625C3.624 6.985 1.135 8.987.748 10.814a1.43 1.43 0 0 0 .28 1.263c.505.59 1.354.576 1.516.568a.781.781 0 0 0 .51-1.368.78.78 0 0 0-.58-.193 1 1 0 0 1-.181-.016c.58-2.136 6.69-6.232 12.47-8.342 3.858-1.408 5.964-1.342 6.649-.81.284.22.433.487.23 1.062-.545 1.535-3.2 3.96-7.108 6.48-.725.467-1.434.898-2.11 1.29.544-1.92 1.1-3.88 1.582-5.561a.782.782 0 0 0-1.504-.43 2070.72 2070.634 0 0 0-2.002 7.05c-1.564.811-2.754 1.3-3.22 1.366a.783.783 0 0 0-1.025 1.095c.134.226.4.476.929.476q.133 0 .264-.02c.54-.073 1.417-.395 2.485-.884-.758 2.702-1.373 4.975-1.407 5.282a.78.78 0 0 0 .69.858 1 1 0 0 0 .087 0 .783.783 0 0 0 .775-.685c.062-.38.822-3.133 1.746-6.42a58.241 58.239 0 0 0 4.01-2.401c5.435-3.587 7.007-5.917 7.362-7.241.277-1.02-.017-1.93-.825-2.557z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/petsathome.svg�������������������������������0000664�0000000�0000000�00000006742�14753064456�0026005�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.627 17.554c0-.7.399-1.209 1.19-1.209s1.138.574 1.138 1.203v.065c0 .068-.038.107-.107.107h-1.507c0 .282.227.57.72.57.204 0 .356-.052.551-.12.11-.039.198-.016.198.104 0 .23-.341.535-.928.535-.797 0-1.255-.493-1.255-1.255M7.778 16.066v.321h.383c.068 0 .107.039.107.107v.337c0 .068-.039.107-.107.107h-.383v1.025c0 .249.094.36.237.36a.5.5 0 0 0 .175-.043c.101-.042.159.01.159.104 0 .237-.269.425-.597.425-.505 0-.687-.318-.687-.756v-1.776q.002-.063.062-.091l.502-.211c.088-.039.149-.003.149.091m4.43 1.511c0-.756.46-1.232 1.189-1.232s1.19.476 1.19 1.232c0 .755-.46 1.232-1.19 1.232-.729 0-1.189-.477-1.189-1.232m-7.925 0c0-.756.409-1.232 1.031-1.232a.65.65 0 0 1 .613.389v-.24c0-.068.039-.107.107-.107h.499c.068 0 .107.039.107.107v2.163c0 .068-.039.107-.107.107h-.499c-.068 0-.107-.039-.107-.107v-.237a.65.65 0 0 1-.613.389c-.622 0-1.031-.477-1.031-1.232m12.574 1.19h-.499c-.068 0-.107-.039-.107-.107v-1.453c0-.243-.072-.288-.201-.288a.52.52 0 0 0-.383.172v1.566c0 .068-.039.107-.107.107h-.499c-.068 0-.107-.039-.107-.107v-1.998q.001-.062.061-.091l.503-.21c.091-.039.149-.004.149.091v.343c.13-.318.36-.45.678-.45.282 0 .489.132.587.428a.645.645 0 0 1 .638-.428c.38 0 .688.207.688.732v1.579c0 .068-.039.107-.107.107h-.5c-.068 0-.107-.039-.107-.107v-1.452c0-.243-.071-.289-.201-.289a.52.52 0 0 0-.382.172v1.566c.003.078-.036.117-.104.117m-6.922 0h-.532c-.068 0-.107-.039-.107-.107v-2.792c0-.068.039-.107.107-.107h.532c.068 0 .107.039.107.107v1.038h1.047v-1.038c0-.068.039-.107.107-.107h.532c.068 0 .107.039.107.107v2.792c0 .068-.039.107-.107.107h-.532c-.068 0-.107-.039-.107-.107v-1.184h-1.047v1.184c0 .068-.039.107-.107.107m3.459-.49c.302 0 .461-.236.461-.7s-.159-.7-.461-.7c-.301 0-.46.236-.46.7s.162.7.46.7m-7.921 0c.302 0 .461-.236.461-.7s-.159-.7-.461-.7c-.301 0-.46.236-.46.7s.159.7.46.7m14.805-.995c-.029-.289-.195-.448-.461-.448s-.428.159-.46.448zm1.734-6.598-.661-.159c-.726-.172-.992-.363-.992-.714 0-.353.353-.586.895-.586.619 0 1.076.214 1.835.726.084.052.159.097.214.097.107 0 .181-.042.201-.201a4 4 0 0 0 .032-.545c0-.321-.009-.535-.032-.651-.033-.182-.097-.276-.214-.354-.629-.395-1.333-.564-2.111-.564-1.751 0-2.892.853-2.892 2.166 0 .982.713 1.718 1.952 2.026l.694.172c.885.214.992.415.992.727 0 .363-.308.609-.82.609-.811 0-1.408-.298-2.069-.96-.097-.097-.159-.158-.276-.158a.28.28 0 0 0-.256.149c-.405.671-.713.917-1.141.917-.457 0-.778-.321-.778-.908V9.39h1.005c.133 0 .243-.11.243-.243V8.08a.245.245 0 0 0-.243-.243h-1.005V6.579c0-.276-.182-.383-.457-.266l-1.537.642a.29.29 0 0 0-.182.275v2.983c0 1.868-1.248 3.136-2.837 3.136-.833 0-1.589-.321-1.868-1.132.192.075.513.107.97.107 1.835 0 3.113-1.002 3.113-2.454 0-1.291-1.067-2.143-2.656-2.143-.59 0-1.157.113-1.647.321C9.092 6.323 7.415 5.191 5.1 5.191c-1.057 0-2.017.13-2.902.396-.246.074-.395.233-.395.479v4.212a2.96 2.96 0 0 1-1.281-.969C.447 9.212.392 9.15.276 9.15c-.172 0-.276.13-.276.298 0 .727.853 1.686 1.803 2.156v2.902c0 .133.11.244.243.244h1.903a.245.245 0 0 0 .243-.244v-2.198c.14.01.276.023.428.023 1.258 0 2.205-.198 2.896-.646.139 1.904 1.563 3.233 3.735 3.233 1.119 0 2.442-.395 3.178-1.397.353.852 1.183 1.397 2.198 1.397s1.621-.256 2.133-.843c.662.555 1.398.843 2.38.843 1.751 0 2.86-.875 2.86-2.25-.003-.983-.538-1.631-1.988-1.984M10.93 9.105c.512 0 .788.308.788.736 0 .713-.639 1.193-1.589 1.193-.331 0-.522-.023-.652-.075.004-1.105.568-1.854 1.453-1.854m-6.734 1.514V7.325c0-.202.084-.321.275-.351.289-.052.48-.052.639-.052 1.29 0 2.059.681 2.059 1.813.003 1.193-.914 1.855-2.973 1.884"/></svg>������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/peugeot.svg����������������������������������0000664�0000000�0000000�00000016557�14753064456�0025311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c3.5 0 7.13.299 10.817.935.055 1.478.118 3.762.013 5.7-.235 4.322-1.186 7.676-2.994 10.557C18.033 20.064 15.241 22.533 12 24c-3.242-1.467-6.033-3.936-7.836-6.808-1.808-2.88-2.759-6.235-2.994-10.557-.105-1.938-.042-4.222.013-5.7A63.7 63.7 0 0 1 12 0m0 .416C8.55.416 5.05.71 1.586 1.29c-.076 2.192-.076 3.936 0 5.324.23 4.248 1.162 7.54 2.93 10.357 1.77 2.818 4.422 5.146 7.484 6.572 3.062-1.426 5.715-3.754 7.484-6.572s2.7-6.11 2.93-10.357c.076-1.388.076-3.132 0-5.324A63.3 63.3 0 0 0 12 .416m-.03 12.62.089.522a.27.27 0 0 1-.003.15c-.048.169-.363 1.59-.538 2.625-.083.477-.154.95-.195 1.355a.95.95 0 0 0 .045.489c.172.577.808 2.083.93 2.358a.3.3 0 0 1 .026.095l.046.355c-.204-.308-1.312-2.345-1.747-3.474-.051-.133-.06-.198-.004-.443.302-1.296 1.121-3.499 1.351-4.032m-1.615-3.132c.03.092.29.98.31 1.192a.4.4 0 0 1-.028.262c-.228.606-.916 2.113-1.181 2.616-.06.11-.115.183-.226.296-.253.258-.739.746-1.039 1.019a.47.47 0 0 0-.16.312 8 8 0 0 0-.082.74c-.008.16.017.235.107.394.529.945 2.296 3.12 2.8 3.576a1 1 0 0 0 .14.106c.074.05.315.206.315.206a.1.1 0 0 1 .024.026l.088.154a38 38 0 0 1-.775-.393 1 1 0 0 1-.125-.084c-.59-.49-2.396-2.607-2.927-3.49-.133-.221-.146-.292-.129-.501.034-.389.085-.878.13-1.092a.6.6 0 0 1 .155-.32c.754-.864 2.206-2.773 2.63-3.59a.37.37 0 0 0 .052-.212c.002-.253-.078-.745-.1-.87a.2.2 0 0 1-.002-.059zm4.93-.474c.082.037.214.08.274.15.937.978 1.686 1.993 1.836 2.26a.4.4 0 0 1 .055.162c.169 1.427.024 2.938-.32 4.253a.4.4 0 0 1-.18.265c-.76.572-2.569 2.072-3.176 2.63a1 1 0 0 0-.171.209c-.153.25-.342.601-.462.825-.124-.27-.393-.928-.485-1.193-.03-.087-.036-.133-.004-.249.15-.55.862-2.153 1-2.443-.001.037.007.134-.007.17-.063.189-.445 1.452-.523 2a.8.8 0 0 0 0 .274c.034.255.187.724.187.724.017-.041.189-.383.309-.477.709-.698 2.197-1.973 3.05-2.664.096-.077.131-.13.153-.277.105-.725.136-2.027.072-2.975a1 1 0 0 0-.17-.5c-.232-.342-.508-.665-.927-1.08a.4.4 0 0 1-.115-.22 65 65 0 0 0-.395-1.844m-7.92 1.509a.33.33 0 0 1 .18-.007c.267.064.832.203 1.26.312.06.016.134.072.166.125l.093.155a.18.18 0 0 1 .006.177 22 22 0 0 1-.306.565l-.088.158c-.163.29-.326.57-.418.717-.06.097-.094.14-.202.178-.42.148-.943.325-1.253.425-.063.021-.085.06-.072.13.022.128.093.564.12.69.01.047.048.085.118.071.183-.034.671-.154.671-.154l-.23.212a.2.2 0 0 1-.054.032 9 9 0 0 1-.56.158c-.078.017-.128-.014-.149-.103 0 0-.138-.59-.188-.791l-.026-.087a7 7 0 0 0-.178-.464.1.1 0 0 1-.009-.044c.002-.137.027-.442.027-.442s.299.28.444.382c.032.023.052.028.092.017.198-.05.655-.202.906-.296a.35.35 0 0 0 .146-.105c.26-.313.585-.8.773-1.169a.22.22 0 0 0 .014-.163l-.04-.133a.17.17 0 0 0-.091-.098 34 34 0 0 0-1.2-.433zm8.742-3.798a.4.4 0 0 1 .3.007c.74.311 1.986 1.044 2.679 1.56.067.05.093.084.11.164.163.74.225 1.885.123 2.848a.5.5 0 0 1-.057.185c-.44.898-.933 1.743-1.453 2.395.008-.08.045-.461.047-.683a.08.08 0 0 1 .03-.06 9 9 0 0 0 .305-.247.4.4 0 0 0 .075-.086c.212-.343.59-1.06.743-1.491a.8.8 0 0 0 .043-.328c-.049-.602-.143-1.434-.284-1.978a.33.33 0 0 0-.17-.215 12 12 0 0 0-.9-.388.8.8 0 0 1-.207-.123 33 33 0 0 0-1.255-1.004.43.43 0 0 0-.352-.075 22 22 0 0 0-.752.186.3.3 0 0 1-.149.01c-.1-.011-.3-.027-.382-.033a21 21 0 0 1 1.506-.644m-7.833 4.86a8 8 0 0 1-.569.823.2.2 0 0 1-.083.06 14 14 0 0 1-.707.237zm-2.427-.398-.108.748-.369-.432c.068-.146.264-.283.477-.316m-.686-1.699-.133.084c-.034.021-.043.03-.057.06a3 3 0 0 1-.085.161.2.2 0 0 1-.047.05 17 17 0 0 1-.477.354q-.015.008-.028-.004a2 2 0 0 1-.098-.114.1.1 0 0 1-.015-.049 2 2 0 0 1 .006-.133c.004-.051.018-.075.08-.14q.105-.108.225-.225c.194-.164.686-.563 1.564-1.19a.2.2 0 0 0 .044-.043c.092-.124.354-.464.418-.545a.2.2 0 0 1 .031-.03 3 3 0 0 1 .26-.184c.244-.154.718-.436.983-.59l-.1.124-.018.016a42 42 0 0 0-.562.432.11.11 0 0 0-.047.078 7 7 0 0 0-.071.5c-.003.04-.02.058-.06.075-.173.07-.378.144-.544.21a.2.2 0 0 0-.066.036c-.017.013-.237.21-.237.21s.479-.118.655-.158a.12.12 0 0 1 .098.011c.037.017.097.041.129.053a.2.2 0 0 0 .129.005c.198-.044.53-.123.708-.17a.6.6 0 0 0 .22-.103c.085-.059.3-.22.3-.22l-.007.044a.06.06 0 0 1-.016.032 4 4 0 0 1-.158.178.6.6 0 0 1-.249.168c-.503.21-1.363.536-2.009.76a.2.2 0 0 0-.092.058l-.08.085s.527.039.688.057a.22.22 0 0 1 .129.057c.132.114.569.565.7.72 0 0-1.243.208-1.819.35a.16.16 0 0 0-.122.12c-.048.168-.16.707-.16.707s-.04-.013-.096-.045a.4.4 0 0 1-.1-.085 6 6 0 0 1-.468-.58c-.031-.047-.044-.107-.005-.155.117-.144.351-.406.48-.541a.3.3 0 0 0 .05-.077c.05-.103.104-.317.129-.413m8.021-2.816a.2.2 0 0 1 .109.015l.256.122a.1.1 0 0 1 .05.063c.035.147.078.341.106.507a.3.3 0 0 1-.036.2 14 14 0 0 1-.446.694.18.18 0 0 0-.022.136c.056.306.286 1.374.286 1.374l-.145-.132a.2.2 0 0 1-.06-.092 37 37 0 0 1-.385-1.24.16.16 0 0 1 .03-.145c.151-.184.372-.478.5-.664.036-.053.048-.11.027-.154a5 5 0 0 0-.127-.237.1.1 0 0 0-.06-.049l-.174-.055a.14.14 0 0 0-.093.001c-.379.138-.889.336-1.2.466-.047.019-.065.02-.12.012-.09-.013-.354-.06-.483-.085a.034.034 0 0 1-.023-.05l.153-.266a.15.15 0 0 1 .096-.07 39 39 0 0 1 1.761-.351M7.737 8.306a.054.054 0 0 1 .055.033.28.28 0 0 1-.008.221.12.12 0 0 1-.076.062l-.246.054a.023.023 0 0 1-.027-.023l.023-.29a.04.04 0 0 1 .036-.036zm2.794-1.854a.037.037 0 0 1 .032.055L9.964 7.54a.26.26 0 0 1-.155.126l-1.122.352a1.7 1.7 0 0 1-.377.07c-.249.02-.988.043-.988.043l.016-.035a.07.07 0 0 1 .038-.037l.35-.149a.2.2 0 0 0 .067-.05l.54-.666a.4.4 0 0 1 .107-.09c.357-.189.992-.471 1.437-.62a.5.5 0 0 1 .142-.024zm-.6-1.198a29 29 0 0 1 4.517-.017.8.8 0 0 1 .263.064c.525.22 1.456.704 2.491 1.296a1 1 0 0 1 .128.092c.274.242.969.954.969.954l-.217-.043a.2.2 0 0 1-.084-.035 17 17 0 0 0-1.615-.95.6.6 0 0 0-.203-.06 15 15 0 0 0-.844-.061.65.65 0 0 1-.303-.08 14 14 0 0 0-.985-.44.6.6 0 0 0-.273-.05c-.441.006-1.446.038-1.959.07a.3.3 0 0 1-.052-.003l-.244-.038c.693-.12 2.407-.273 3.117-.31l-.289-.096a.6.6 0 0 0-.173-.03c-.97-.022-2.303-.018-3.432.067a.6.6 0 0 0-.202.05c-.323.142-1.11.57-1.9 1.008l-.772.433.117-.152a.14.14 0 0 1 .045-.04c.102-.068.41-.268.534-.359.238-.179.613-.495.837-.691a.7.7 0 0 0 .128-.153c.073-.117.152-.244.2-.315a.27.27 0 0 1 .2-.111m-5.276-2.85c.306-.032.477.088.477.398v.171c0 .317-.171.446-.477.477a71 71 0 0 0-1.269.144v.47q-.133.014-.266.032V2.581a71 71 0 0 1 1.535-.177m14.203-.05a71 71 0 0 1 2.022.227v.245a69 69 0 0 0-.874-.105v1.27l-.266-.03v-1.27a68 68 0 0 0-.882-.092zM7.65 2.157V2.4a72 72 0 0 0-1.664.122v.373a69 69 0 0 1 1.48-.11v.244a71 71 0 0 0-1.48.11v.41a70 70 0 0 1 1.664-.122v.244a71 71 0 0 0-1.924.145V2.3a71 71 0 0 1 1.924-.145m8.633.415c0-.34.168-.41.548-.384q.499.035.998.075c.33.028.547.12.547.467v.676c0 .34-.188.402-.547.372a73 73 0 0 0-.998-.075c-.363-.025-.548-.095-.548-.455zm-2.581-.529q.964.024 1.927.073v.244a71 71 0 0 0-1.666-.066v.373q.741.021 1.482.057v.244a70 70 0 0 0-1.482-.056v.409a69 69 0 0 1 1.666.066v.244a71 71 0 0 0-1.927-.073zm-3.344-.001v1.096c0 .347-.182.423-.549.434a68 68 0 0 0-.957.036c-.34.015-.548-.05-.548-.393V2.12l.26-.014v1.142c0 .07.06.126.14.123a70 70 0 0 1 1.254-.048.13.13 0 0 0 .132-.132V2.048zm6.324.38a.125.125 0 0 0-.138.13V3.3c0 .07.06.142.138.148q.648.042 1.296.097a.134.134 0 0 0 .138-.126v-.75c0-.079-.07-.144-.138-.15a70 70 0 0 0-1.296-.098m-5.172-.397q.72-.005 1.437.004v.244a72 72 0 0 0-1.536-.004c-.07.001-.139.061-.139.13v.76c0 .069.07.138.139.137q.689-.006 1.378.002v-.41a67 67 0 0 0-.8-.004V2.64q.53 0 1.06.008v.898a71 71 0 0 0-1.49-.007c-.363.003-.548-.06-.548-.413v-.66c0-.33.166-.439.5-.441m-6.754.616h-.021a70 70 0 0 0-1.348.152v.558a71 71 0 0 1 1.348-.152c.069-.007.138-.07.138-.136v-.307c0-.07-.07-.122-.138-.115z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pexels.svg�����������������������������������0000664�0000000�0000000�00000000445�14753064456�0025126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.5 0A1.5 1.5 0 0 0 0 1.5v21A1.5 1.5 0 0 0 1.5 24h21a1.5 1.5 0 0 0 1.5-1.5v-21A1.5 1.5 0 0 0 22.5 0zm6.75 6.75h5.272a3.843 3.843 0 0 1 .626 7.635v2.865H8.25zm1.5 1.5v7.5h2.898v-2.814h.873a2.343 2.343 0 1 0 0-4.686z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pfsense.svg����������������������������������0000664�0000000�0000000�00000002257�14753064456�0025274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.013 0C.898 0 0 .929 0 2.044v17.775L3.252 8.27h3.282L6.1 9.785h.063c.186-.217.433-.403.742-.62.31-.216.62-.402.96-.588.342-.186.713-.31 1.116-.433.402-.124.805-.155 1.208-.155.867 0 1.579.154 2.198.433.62.279 1.084.712 1.455 1.239.31.464.5 1.019.593 1.669.006.06.027.135.027.189.062.712-.031 1.518-.28 2.385a8.6 8.6 0 0 1-1.02 2.322 10 10 0 0 1-1.58 1.95 8.1 8.1 0 0 1-2.044 1.364 5.5 5.5 0 0 1-2.354.495 5.7 5.7 0 0 1-1.982-.34c-.588-.217-.99-.62-1.238-1.177h-.062L2.353 24h19.603A2.04 2.04 0 0 0 24 21.956V4.706c-.093-.03-.186-.06-.248-.092a2.8 2.8 0 0 0-.557-.062q-.836 0-1.394.372c-.34.248-.65.743-.867 1.518l-.526 1.826h2.013l.495 1.58-1.3 1.27h-2.014l-2.446 8.67h-3.53l2.446-8.67h-1.455l.805-2.85h1.425l.557-2.044c.185-.619.403-1.238.681-1.795a5 5 0 0 1 1.053-1.487c.433-.434.99-.775 1.641-1.022.65-.248 1.487-.372 2.447-.372.248 0 .464 0 .712.031A2.08 2.08 0 0 0 21.988 0zm6.565 11.118c-.898 0-1.672.278-2.323.805-.65.526-1.083 1.239-1.331 2.106s-.217 1.579.155 2.105c.31.557.929.805 1.858.805.898 0 1.672-.278 2.322-.805.65-.526 1.115-1.238 1.363-2.105.247-.867.185-1.58-.155-2.106-.34-.527-.991-.805-1.89-.805Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/phabricator.svg������������������������������0000664�0000000�0000000�00000001345�14753064456�0026124�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.18 10.018-4.426-4.449C17.053 3.782 14.66 2.665 12 2.665S6.947 3.783 5.246 5.568L.821 10.02a2.8 2.8 0 0 0 0 3.962l4.542 4.578c1.692 1.711 4.04 2.773 6.637 2.773s4.945-1.062 6.637-2.774l4.543-4.579a2.8 2.8 0 0 0 0-3.962M12 19.384a7.384 7.384 0 1 1 0-14.768 7.384 7.384 0 0 1 0 14.768m3.651-7.572.999-1.014-.447-1.028H14.78l-.456-.45-.038-1.437-1.008-.431-1.01.998h-.624l-1.047-1.006-1.022.415.035 1.406-.444.443-1.444-.014-.409 1.023 1.034 1.01.006.633-.996 1.007.44 1.031 1.428-.002.456.453.016 1.422 1.068.447.965-1.009.636.01 1.028 1.011 1.044-.423-.043-1.409.442-.44 1.43.013.423-1.03-1.03-1zm-3.715 1.806a1.533 1.533 0 1 1 0-3.065 1.533 1.533 0 0 1 0 3.065"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/philipshue.svg�������������������������������0000664�0000000�0000000�00000002371�14753064456�0026000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.672 9.6c-2.043 0-3.505 1.386-3.682 3.416h-.664c-.247 0-.395.144-.395.384s.148.384.395.384h.661c.152 2.09 1.652 3.423 3.915 3.423.944 0 1.685-.144 2.332-.453.158-.075.337-.217.292-.471a.33.33 0 0 0-.15-.242c-.104-.065-.25-.072-.422-.02a8 8 0 0 0-.352.12c-.414.146-.771.273-1.599.273-1.75 0-2.908-1.023-2.952-2.605v-.025h5.444c.313 0 .492-.164.505-.463v-.058C23.994 9.865 21.452 9.6 20.672 9.6m2.376 3.416h-5l.004-.035c.121-1.58 1.161-2.601 2.649-2.601 1.134 0 2.347.685 2.347 2.606zM9.542 10.221c0-.335-.195-.534-.52-.534s-.52.2-.52.534v2.795h1.04zm4.29 3.817c0 1.324-.948 2.361-2.16 2.361-1.433 0-2.13-.763-2.13-2.333v-.282h-1.04v.34c0 2.046.965 3.083 2.868 3.083 1.12 0 1.943-.486 2.443-1.445l.02-.036v.861c0 .334.193.534.519.534.325 0 .52-.2.52-.534v-2.803h-1.04zm.52-4.351c-.326 0-.52.2-.52.534v2.795h1.04v-2.795c0-.335-.195-.534-.52-.534M3.645 9.6c-1.66 0-2.31 1.072-2.471 1.4l-.135.278V7.355c0-.347-.199-.562-.52-.562-.32 0-.519.215-.519.562v5.661h1.039v-.015c0-1.249.72-2.592 2.304-2.592 1.29 0 2.001.828 2.001 2.332v.275h1.04v-.246c0-2.044-.973-3.17-2.739-3.17M0 16.558c0 .347.199.563.52.563.32 0 .519-.216.519-.563v-2.774H0zm5.344 0c0 .347.2.563.52.563s.52-.216.52-.563v-2.774h-1.04z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/phoenixframework.svg�������������������������0000664�0000000�0000000�00000004765�14753064456�0027227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.012 15.241-.188-.036c-1.34-.248-2.186-1.06-2.588-2.334-.25-.794.204-1.38 1.038-1.416.682-.032 1.15.36 1.562.816.532.588 1.02 1.216 1.542 1.814.754.86 1.64 1.412 2.854 1.24a5.4 5.4 0 0 0 2.86-1.308c.124-.108.26-.2.392-.302l-.084-.098a6 6 0 0 1-2.12.252c-1.092-.054-2.132-.282-3.064-.882-.848-.548-1.476-1.28-1.774-2.26-.24-.79.252-1.344 1.072-1.23.313.049.606.187.842.398.2.168.39.346.594.51.958.77 2.294.812 3.508-.022-1.996-.01-3.354-1.108-4.548-2.5-.466-.544-.922-1.1-1.4-1.636-.92-1.038-1.944-1.952-3.346-2.264-1.79-.398-3.518-.136-5.176.622A4.2 4.2 0 0 0 0 5.217h.352c.836-.022 1.464.35 1.916 1.034.328.498.482 1.06.6 1.64.176.86.086 1.734.188 2.598.26 2.22 1.394 3.768 3.506 4.56.774.292 1.568.39 2.45.19zM3.674 5.113c-.334.084-.6-.05-.874-.328.47-.118.886-.164 1.332-.18a.56.56 0 0 1-.458.508m10.938 12.96c-.03-.212-.212-.306-.356-.42-.634-.492-1.378-.668-2.164-.682a4.1 4.1 0 0 1-1.378-.208c-.204-.076-.43-.174-.426-.436.006-.266.238-.34.448-.404.174-.052.352-.084.548-.13-.5-.32-.988-.364-1.636-.102-1.024.41-2.032.36-3.052-.006-.574-.208-1.086-.534-1.618-.824l-.026.02c.44.722 1.038 1.304 1.71 1.8 1.296.96 2.712 1.53 4.37 1.276a23 23 0 0 1 1.614-.19c.676-.054 1.32.136 1.966.308zm-3.124-10.37c-.036-.026-.07-.09-.144-.024a5.26 5.26 0 0 0 2.284 1.776c1.488.604 3 .708 4.544.174 1.2-.414 2.06-.01 2.508 1.156.066-1.352-.73-2.338-1.996-2.53-.712-.11-1.37.128-2.038.32-1.856.54-3.584.274-5.16-.872zm9.256 5.272.726.064c-.546-.48-1.212-.52-1.888-.48-1.026.058-1.766.65-2.44 1.356-.594.624-1.13 1.324-2.016 1.574l.02.04c.12.002.24.008.36.002 1.288-.058 2.5-.33 3.464-1.264.306-.294.576-.62.87-.926.226-.258.562-.394.904-.366m-2.992-1.596c-.96.084-1.794.48-2.58 1.006-.602.404-1.248.594-1.972.468q-.194-.032-.384-.058l-.006.054c.046.024.092.05.14.07.12.048.24.106.364.136 1.396.33 2.732.16 3.936-.618.76-.49 1.546-.582 2.398-.456q.129.022.258.036c.08.008.164.088.272 0a3.45 3.45 0 0 0-2.426-.638m-3.434-3.26a2.7 2.7 0 0 0 1.534-.364c-.154.014-.22.014-.282.026a2.3 2.3 0 0 1-1.96-.472l-.646-.5c-.856-.652-1.836-.872-2.91-.852.018.052.02.088.038.106 1.168 1.18 2.52 1.996 4.226 2.054zm8.452 6.06c-.724-.72-1.694-.81-2.59-.186.594.028 1.04.216 1.4.592q.191.201.404.378c.548.44 1.474.46 2.016.052-.636-.248-.636-.248-1.23-.838zm-7.198 5.486c-.634-1.18-1.7-1.448-2.936-1.368.364.1.708.26 1.02.474.286.2.526.448.764.702.472.504 1.208.812 1.696.708-.224-.14-.546-.514-.546-.514h-.012l.008.006.004.018c.004-.02.006-.016.008-.01h.02l-.028-.012v.01l.01.004s.114.208-.008-.018"/></svg>�����������mkdocs-material-9.6.4/material/templates/.icons/simple/phonepe.svg����������������������������������0000664�0000000�0000000�00000001264�14753064456�0025264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.206 9.941h2.949v4.692c-.402.201-.938.268-1.34.268-1.072 0-1.609-.536-1.609-1.743zm13.47 4.816c-1.523 6.449-7.985 10.442-14.433 8.919C2.794 22.154-1.199 15.691.324 9.243 1.847 2.794 8.309-1.199 14.757.324c6.449 1.523 10.442 7.985 8.919 14.433m-6.231-5.888a.887.887 0 0 0-.871-.871h-1.609l-3.686-4.222c-.335-.402-.871-.536-1.407-.402l-1.274.401c-.201.067-.268.335-.134.469l4.021 3.82H6.386c-.201 0-.335.134-.335.335v.67c0 .469.402.871.871.871h.938v3.217c0 2.413 1.273 3.82 3.418 3.82.67 0 1.206-.067 1.877-.335v2.145c0 .603.469 1.072 1.072 1.072h.938a.43.43 0 0 0 .402-.402V9.874h1.542c.201 0 .335-.134.335-.335z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/phosphoricons.svg����������������������������0000664�0000000�0000000�00000000727�14753064456�0026527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.404.001H3.866a.62.62 0 0 0-.619.619v15.173A8.217 8.217 0 0 0 11.449 24a.617.617 0 0 0 .618-.619v-6.969h.332a8.2 8.2 0 0 0 7.715-5.031 8.22 8.22 0 0 0 0-6.349A8.21 8.21 0 0 0 12.399.001zm-1.579 22.736a6.98 6.98 0 0 1-6.317-6.317h6.317zm0-9.562L4.869 1.238h5.967zm1.579 2h-.331V1.238h.331a6.98 6.98 0 0 1 5.016 1.993 7 7 0 0 1 1.546 2.277 6.99 6.99 0 0 1 0 5.397 6.975 6.975 0 0 1-6.562 4.27"/></svg>�����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/photobucket.svg������������������������������0000664�0000000�0000000�00000004447�14753064456�0026163�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.992 11.498A11.95 11.95 0 0 0 12.008 0c-6.614.008-12 5.385-12 12s5.386 12 12 12a11.957 11.957 0 0 0 11.975-11.373c0-.033 0-.058.009-.092zm-6.013-7.124c.075.025.15.058.234.1a7.8 7.8 0 0 0-1.99-.26c-3.997 0-7.4 3.111-7.752 7.092l-.025.393c0 .1-.008.2-.008.31 0 .1 0 .2.008.292 0 .094.025.12.025.418.351 3.972 3.755 7.075 7.752 7.075.686 0 1.355-.092 1.99-.26-.021 0-.106.05-.234.093-.079.02-.031.014-.109.033-.195.078-.395.14-.593.209a7 7 0 0 1-.62.159c-.2.053-.961.2-1.73.2-4.524 0-8.212-3.679-8.212-8.211s3.68-8.212 8.212-8.212c.259 0 .518.017.794.042a7 7 0 0 1 .77.117l.426.092c.229.056.452.133.677.2.289.105.289.113.352.134zM9.3 11.85v-.1a4.027 4.027 0 0 1 4.014-3.78c2.216 0 4.022 1.806 4.022 4.022s-1.806 4.022-4.022 4.022c-2.124 0-3.889-1.656-4.014-3.755v-.042c-.018-.164 0-.253 0-.368m4.022 5.034A4.89 4.89 0 0 0 18.205 12a4.89 4.89 0 0 0-4.884-4.884c-.117 0-.225.009-.343.017a5 5 0 0 1 1.389-.192A5.066 5.066 0 0 1 19.426 12a5.07 5.07 0 0 1-5.06 5.06 5.1 5.1 0 0 1-1.388-.193c.114.013.229.011.343.017M20.287 12c0-3.228-2.6-5.862-5.812-5.92a6 6 0 0 1 .803-.05 5.99 5.99 0 0 1 5.979 5.978 5.99 5.99 0 0 1-5.979 5.98 6 6 0 0 1-.803-.05c3.211-.076 5.812-2.71 5.812-5.938m-5.009 6.832c3.771 0 6.84-3.069 6.84-6.84s-3.069-6.84-6.84-6.84h-.075c.334-.051.669-.084 1.011-.084a6.914 6.914 0 0 1 6.908 6.522v.803c-.2 3.663-3.236 6.523-6.908 6.523 0-.005-.369.015-1.011-.084zm-3.27 4.298C5.87 23.13.878 18.138.878 12S5.87.87 12.008.87c1.94 0 3.755.485 5.344 1.354-.155-.077-1.01-.36-1.12-.36-.126-.033-.251-.066-.369-.091a11 11 0 0 0-2.374-.268C7.693 1.49 2.985 6.205 2.985 12s4.717 10.512 10.512 10.512c1.248 0 2.22-.236 2.283-.251.228-.044.482-.126.535-.126.21-.042.892-.279 1.054-.36a11.2 11.2 0 0 1-5.36 1.355zm4.934-2.124c-.247.093-.637.23-.928.293-.117.033-.234.059-.376.092-.028.01-.057.011-.084.017a4 4 0 0 1-.41.075 10 10 0 0 1-1.664.142c-5.319 0-9.65-4.332-9.65-9.65S8.17 2.35 13.488 2.35c1.809 0 3.039.474 3.671.727l.352.15q.223.104.434.218c-.137-.052-.278-.094-.418-.142-.334-.104-.766-.19-.878-.217a8 8 0 0 0-.844-.117 10 10 0 0 0-.87-.042c-5.009 0-9.082 4.072-9.082 9.073s4.073 9.073 9.074 9.073c.284 0 .577-.017.861-.042.155-.008.792-.09 1.062-.167.092-.017.176-.042.268-.058.711-.178.75-.243.82-.243-.143.075-.285.15-.436.217-.286.112-.293.126-.56.226"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/photocrowd.svg�������������������������������0000664�0000000�0000000�00000002651�14753064456�0026017�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.182 0C.977 0 0 1.058 0 2.364v19.462C0 23.026.977 24 2.182 24h19.636A2.18 2.18 0 0 0 24 21.826V2.364C24 1.058 23.023 0 21.818 0zM12 3.49a1.022 1.022 0 1 1 0 2.045 1.022 1.022 0 0 1 0-2.044zM8.326 4.498a1.022 1.022 0 1 1-.142 2.039 1.022 1.022 0 0 1 .142-2.04zm7.347 0a1.02 1.02 0 0 1 .955 1.529 1.021 1.021 0 1 1-.955-1.53zm-10.23 2.74a1.02 1.02 0 1 1 .145 2.037 1.02 1.02 0 0 1-.145-2.036zm13.113 0a1.02 1.02 0 1 1-.142 2.036 1.02 1.02 0 0 1 .142-2.035zm-7.497.116a1.021 1.021 0 1 1 .119 2.039 1.021 1.021 0 0 1-.12-2.04zm3.687.88a1.021 1.021 0 1 1 .001 2.042 1.021 1.021 0 0 1 0-2.043zm-6.308 1.864a1.02 1.02 0 1 1-.119 2.04 1.02 1.02 0 0 1 .12-2.04zm3.561.88a1.023 1.023 0 1 1-.001 2.047 1.023 1.023 0 0 1 .001-2.047m-7.488.002a1.022 1.022 0 1 1-.001 2.044 1.022 1.022 0 0 1 0-2.044zm14.977 0a1.02 1.02 0 1 1-.001 2.042 1.02 1.02 0 0 1 0-2.042zm-3.793.881a1.02 1.02 0 1 1-.119 2.038 1.02 1.02 0 0 1 .12-2.038zm-6.442 1.866a1.021 1.021 0 1 1-.001 2.042 1.021 1.021 0 0 1 0-2.042zm3.568.883a1.02 1.02 0 1 1 .12 2.038 1.02 1.02 0 0 1-.12-2.038m-7.235.116a1.02 1.02 0 0 1 .44 1.904 1.022 1.022 0 1 1-.44-1.904m12.827 0a1.022 1.022 0 1 1 .142 2.038 1.022 1.022 0 0 1-.142-2.038m-10.229 2.74a1.021 1.021 0 1 1 .142 2.038 1.021 1.021 0 0 1-.142-2.038m7.63 0a1.02 1.02 0 0 1 .44 1.904 1.022 1.022 0 1 1-.44-1.904M12 18.463a1.022 1.022 0 1 1 0 2.045 1.022 1.022 0 0 1 0-2.045"/></svg>���������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/photon.svg�����������������������������������0000664�0000000�0000000�00000004541�14753064456�0025136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.454 16.915-3.379 4.091a14 14 0 0 1-1.089-1.079l4.091-3.38c.123.116.252.246.377.368m1.045.809-2.517 4.679a11 11 0 0 1-1.281-.856l3.364-4.138c.357.262.434.262.434.315m-1.913-1.772-4.119 3.345a12 12 0 0 1-.856-1.277l4.682-2.518c.008.053.235.371.293.45M9.682 18.3l-1.558 5.063a12 12 0 0 1-1.419-.588l2.492-4.693c.416.192.478.177.485.217zM5.72 14.319q.089.245.198.481l-4.691 2.496a11.5 11.5 0 0 1-.589-1.423zm5.23 4.292-.532 5.287a12 12 0 0 1-1.51-.315l1.532-5.073q.25.06.51.101m-5.56-5.56q.04.255.1.509L.402 15.09a12 12 0 0 1-.299-1.508zm-.079-1.306v.522l-5.286.513a12 12 0 0 1 0-1.539zm6.948 6.942.51 5.29q-.77.045-1.539 0l.51-5.29q.26.01.519 0m2.832 4.912q-.745.205-1.51.315l-.532-5.287c.17-.026.343-.06.51-.1zm-9.6-13.16q-.062.254-.101.513l-5.286-.535q.1-.762.299-1.505l5.088 1.53zm9.311 7.644 2.492 4.692q-.694.338-1.423.588l-1.551-5.082q.24-.088.482-.198M5.928 9.177a5 5 0 0 0-.201.481L.651 8.085q.252-.731.595-1.423L5.928 9.18zm10.003 8.232 3.364 4.126q-.614.467-1.281.856L15.5 17.724q.22-.135.431-.29zM6.586 8.063a5 5 0 0 0-.29.431L1.617 5.976q.389-.665.856-1.277zm14.427 11.864a12 12 0 0 1-1.089 1.089l-3.379-4.101c.129-.116.245-.245.368-.368zM4.075 2.987l3.379 4.091c-.129.115-.245.245-.368.368l-4.091-3.38c.688-.778 1.163-1.135 1.08-1.079m18.313 15.029a12 12 0 0 1-.856 1.281l-4.116-3.364a6 6 0 0 0 .29-.431l4.682 2.518zM5.985 1.612l2.517 4.679a7 7 0 0 0-.434.29L4.704 2.468q.612-.472 1.281-.856M23.36 15.873q-.245.732-.588 1.423L18.08 14.8q.108-.236.199-.481zM8.137.633l1.548 5.085a6 6 0 0 0-.481.198L6.715 1.221A12 12 0 0 1 8.137.633m15.758 12.949a12 12 0 0 1-.315 1.508l-5.072-1.53q.063-.255.101-.509zM10.418.101l.532 5.287a8 8 0 0 0-.51.1L8.908.416a12 12 0 0 1 1.51-.315m13.556 11.131q.051.767 0 1.535l-5.286-.506v-.523zM12.769.022l-.51 5.29h-.519l-.51-5.29a13 13 0 0 1 1.539 0m10.827 8.89q.207.744.315 1.508l-5.286.535a6 6 0 0 0-.101-.513zM15.1.416l-1.541 5.073a9 9 0 0 0-.51-.101l.532-5.287c.709.094 1.498.273 1.519.315m2.203.824-2.502 4.68a5 5 0 0 0-.481-.202L15.871.636c.745.255 1.413.572 1.432.604m5.466 5.47q.34.691.588 1.422l-5.078 1.573c-.06-.16-.129-.314-.202-.481zm-6.854-.133a8 8 0 0 0-.434-.289l2.517-4.683q.67.386 1.281.856zm6.46-.613L17.7 8.481a7 7 0 0 0-.29-.434l4.11-3.367c0 .03.378.464.855 1.284m-1.362-1.892-4.091 3.383c-.113-.133-.245-.247-.368-.371l3.38-4.091c-.065-.044.476.387 1.079 1.079"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/photopea.svg���������������������������������0000664�0000000�0000000�00000001074�14753064456�0025444�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.098 0A3.9 3.9 0 0 1 24 3.903v16.194A3.9 3.9 0 0 1 20.098 24H6.393l-.051-10.34v-.074c0-3.92 3.112-7.09 6.963-7.09 2.31 0 4.177 1.902 4.177 4.254s-1.867 4.254-4.177 4.254c-.77 0-1.393-.634-1.393-1.418s.623-1.418 1.393-1.418c.769 0 1.392-.634 1.392-1.418s-.623-1.418-1.392-1.418c-2.31 0-4.178 1.9-4.178 4.253 0 2.352 1.868 4.254 4.178 4.254 3.85 0 6.962-3.169 6.962-7.09S17.155 3.66 13.305 3.66c-5.39 0-9.75 4.436-9.75 9.925v.086l.023 10.315A3.9 3.9 0 0 1 0 20.097V3.903A3.9 3.9 0 0 1 3.902 0z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/php.svg��������������������������������������0000664�0000000�0000000�00000001636�14753064456�0024420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.01 10.207h-.944l-.515 2.648h.838q.834 0 1.242-.314.408-.315.55-1.049.137-.705-.124-.995-.262-.29-1.047-.29M12 5.688C5.373 5.688 0 8.514 0 12s5.373 6.313 12 6.313S24 15.486 24 12s-5.373-6.312-12-6.312m-3.26 7.451c-.261.25-.575.438-.917.551q-.505.163-1.285.164H5.357l-.327 1.681H3.652l1.23-6.326h2.65q1.195 0 1.744.628.549.627.33 1.752a2.8 2.8 0 0 1-.305.847q-.215.383-.561.703m4.024.715.543-2.799q.094-.478-.068-.651-.16-.174-.687-.174H11.46l-.704 3.625H9.388l1.23-6.327h1.367l-.327 1.682h1.218q1.15 0 1.586.401c.436.401.378.7.263 1.299l-.572 2.944zm7.597-2.265a2.8 2.8 0 0 1-.305.847q-.214.383-.561.703a2.44 2.44 0 0 1-.917.551q-.504.163-1.286.164h-1.18l-.327 1.682h-1.378l1.23-6.326h2.649q1.195 0 1.744.628.55.626.331 1.751m-2.595-1.382h-.943l-.516 2.648h.838q.835 0 1.242-.314.407-.315.551-1.049.137-.705-.125-.995c-.262-.29-.524-.29-1.047-.29"/></svg>��������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/phpbb.svg������������������������������������0000664�0000000�0000000�00000006447�14753064456�0024731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.583 11.902q0 .579-.143 1.064t-.414.84a1.85 1.85 0 0 1-.676.552q-.405.196-.93.196-.4 0-.716-.2t-.494-.512v2.118H.836a.9.9 0 0 1-.311-.058.8.8 0 0 1-.267-.165.8.8 0 0 1-.187-.258Q0 15.328 0 15.132v-2.9q0-.597.138-1.095.138-.499.432-.855t.747-.551 1.086-.196q.48 0 .88.2.401.2.69.53.29.329.45.756t.16.881m-1.228.312q0-.855-.28-1.237-.281-.383-.86-.383-.498 0-.76.387t-.263 1.01q0 .72.325 1.112t.859.392q.436 0 .707-.352.272-.351.272-.93m5.47 2.234q-.373 0-.591-.205t-.218-.596V11.69q0-.294-.076-.503t-.205-.338a.8.8 0 0 0-.302-.192 1.1 1.1 0 0 0-.37-.062q-.142 0-.293.058t-.28.191-.21.347-.08.534v2.723H5.81q-.427 0-.623-.213-.196-.214-.196-.588V8.04h.374q.427 0 .636.214t.21.551v1.37q.062-.106.173-.217a2 2 0 0 1 .244-.205 1.4 1.4 0 0 1 .294-.156.9.9 0 0 1 .33-.062q.934 0 1.45.538.516.539.516 1.562v2.812zm5.56-2.545q0 .578-.142 1.063-.143.485-.414.841a1.85 1.85 0 0 1-.677.552q-.404.196-.93.196-.4 0-.716-.2t-.494-.512v2.118h-.373a.9.9 0 0 1-.312-.058.8.8 0 0 1-.267-.165.8.8 0 0 1-.187-.258q-.07-.151-.07-.347v-2.9q0-.597.137-1.095.138-.498.432-.854.293-.356.747-.552t1.086-.196q.48 0 .88.2.401.2.69.53.29.329.45.756t.16.881m-1.228.312q0-.855-.28-1.237t-.86-.383q-.497 0-.76.387t-.262 1.01q0 .721.324 1.112t.86.392q.435 0 .707-.351t.27-.93m6.032.347q0 .462-.169.818t-.458.601-.668.37-.796.124h-.658q-1.7 0-1.7-1.45V8.6q.107-.036.303-.085a9 9 0 0 1 .422-.093 6 6 0 0 1 .463-.071q.236-.027.423-.027h.738q.436 0 .801.111t.632.32.413.508.147.672q0 .507-.258.832t-.712.458q.232.062.427.204.196.143.343.325t.227.396.08.41m-1.326-2.519q0-.195-.084-.333a.64.64 0 0 0-.218-.218q-.134-.08-.303-.116a1.6 1.6 0 0 0-.338-.036h-.454a2 2 0 0 0-.258.023l-.267.04v1.379h.935q.409 0 .698-.174t.29-.565m.097 2.554q0-.498-.253-.685-.254-.187-.788-.187h-.97v1.255q0 .16.151.271.152.111.383.111h.498q.499 0 .739-.209t.24-.556m6.04-.035q0 .462-.169.818t-.458.6-.668.37-.796.125h-.658q-1.7 0-1.7-1.45V8.6q.107-.036.303-.085a9 9 0 0 1 .422-.093 6 6 0 0 1 .463-.071q.236-.027.423-.027h.738q.436 0 .8.111.366.111.633.32t.413.508q.147.298.147.672 0 .507-.258.832t-.712.458q.232.062.427.204a1.8 1.8 0 0 1 .343.325q.147.183.227.396t.08.41m-1.326-2.519q0-.195-.084-.333a.64.64 0 0 0-.218-.218q-.134-.08-.303-.116a1.6 1.6 0 0 0-.338-.036h-.454a2 2 0 0 0-.258.023l-.267.04v1.379h.934q.41 0 .699-.174t.29-.565m.097 2.554q0-.498-.254-.685-.253-.187-.787-.187h-.97v1.255q0 .16.151.271t.383.111h.498q.498 0 .739-.209.24-.209.24-.556m.195 3.081h-.122v-.73h.282q.135 0 .203.05.069.049.069.16 0 .099-.056.144-.056.046-.139.055l.21.321h-.14l-.192-.312h-.115zm.137-.414.066-.003a.14.14 0 0 0 .054-.015.1.1 0 0 0 .038-.034q.014-.022.014-.063 0-.033-.015-.053a.1.1 0 0 0-.039-.03.2.2 0 0 0-.052-.013l-.055-.003h-.148v.214zm.654.037q0 .148-.053.27a.6.6 0 0 1-.144.208.7.7 0 0 1-.21.134.7.7 0 0 1-.25.048q-.146 0-.268-.05a.6.6 0 0 1-.208-.14.6.6 0 0 1-.137-.208.7.7 0 0 1-.05-.262q0-.148.053-.27a.6.6 0 0 1 .144-.208.7.7 0 0 1 .212-.135.7.7 0 0 1 .253-.047.7.7 0 0 1 .251.047.7.7 0 0 1 .21.134.6.6 0 0 1 .144.209q.053.122.053.27m-.144 0a.6.6 0 0 0-.039-.22.5.5 0 0 0-.11-.174.5.5 0 0 0-.163-.112.5.5 0 0 0-.202-.04.5.5 0 0 0-.204.04.5.5 0 0 0-.164.112.5.5 0 0 0-.11.173.6.6 0 0 0-.04.22q0 .114.036.213a.5.5 0 0 0 .104.173.5.5 0 0 0 .163.117q.095.043.215.043a.5.5 0 0 0 .202-.04.5.5 0 0 0 .163-.112.5.5 0 0 0 .11-.172q.04-.1.04-.221"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/phpmyadmin.svg�������������������������������0000664�0000000�0000000�00000001564�14753064456�0025777�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.463 3.476C6.69 5.225 7.497 7.399 7.68 9.798a12.9 12.9 0 0 1-.672 5.254 4.3 4.3 0 0 1 2.969-1.523q.075-.005.148-.008c.08-.491.47-3.45-.977-6.68-1.068-2.386-3-3.16-3.685-3.365m1.777.037s2.406 1.066 3.326 5.547c.607 2.955.049 4.836-.402 5.773a7.35 7.35 0 0 1 4.506-1.994c.86-.065 1.695.02 2.482.233-.1-.741-.593-3.414-2.732-5.92-3.263-3.823-7.18-3.64-7.18-3.64Zm14.817 9.701-17.92 3.049a2.28 2.28 0 0 1 1.535 2.254 2.3 2.3 0 0 1-.106.61c.055-.027 2.689-1.275 6.342-2.034 3.238-.673 5.723-.36 6.285-.273a6.46 6.46 0 0 1 3.864-3.606m-6.213 4.078c-2.318 0-4.641.495-6.614 1.166-2.868.976-2.951 1.348-5.55 1.043C1.844 19.286 0 18.386 0 18.386s2.406 1.97 4.914 2.127c1.986.125 3.505-.822 5.315-1.414 2.661-.871 4.511-.97 6.253-.975C19.361 18.116 24 19.353 24 19.353s-2.11-1.044-5.033-1.72a14 14 0 0 0-3.123-.34Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/phpstorm.svg���������������������������������0000664�0000000�0000000�00000001244�14753064456�0025500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.833 6.611v-.055c0-1-.667-1.5-1.778-1.5H4.389v3.056h1.722c1.111-.001 1.722-.668 1.722-1.501M0 0v24h24V0zm2.167 3.111h4.056c2.389 0 3.833 1.389 3.833 3.445v.055c0 2.333-1.778 3.5-4.056 3.5H4.333v3H2.167zM11.278 21h-9v-1.5h9zM18.5 10.222c0 2-1.5 3.111-3.667 3.111-1.5-.056-3-.611-4.222-1.667l1.278-1.556c.89.722 1.833 1.222 3 1.222.889 0 1.444-.333 1.444-.944v-.056c0-.555-.333-.833-2-1.277C12.333 8.555 11 8 11 6v-.056c0-1.833 1.444-3 3.5-3 1.444 0 2.723.444 3.723 1.278l-1.167 1.667c-.889-.611-1.777-1-2.611-1-.833 0-1.278.389-1.278.889v.056c0 .667.445.889 2.167 1.333 2 .556 3.167 1.278 3.167 3z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/piaggiogroup.svg�����������������������������0000664�0000000�0000000�00000003262�14753064456�0026322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.657 21.15h-.42v-2.495h.42v2.494zm-9.79.001h-.42v-2.495l.582.03c.293-.015.58.082.794.27a.96.96 0 0 1 .337.72.6.6 0 0 1-.033.242c-.127.478-.6.806-1.13.781l-.13.002zm0-.82h.264a.7.7 0 0 0 .543-.422.5.5 0 0 0 .064-.24c0-.449-.419-.661-.872-.63v1.291zm10.144-.413c0-.698.608-1.264 1.359-1.264s1.358.566 1.358 1.264c-.003.7-.604 1.271-1.357 1.29h-.003c-.754-.018-1.355-.59-1.357-1.29m.45.003c-.002.471.4.858.907.871a.94.94 0 0 0 .651-.257.8.8 0 0 0 .255-.614c.017-.482-.388-.886-.906-.903-.513.028-.912.425-.906.903zm-1.74 1.228v-1.317h-.42v.93c-1.034.209-1.066-.752-1.066-.843 0-.57.612-1.085 1.486-.842v-.421c-1.65-.33-1.972.925-1.972 1.262 0 0-.163 1.622 1.972 1.231m-6.786-1.231v-1.262h-.453v2.493h.453zm4.46 1.231.008.004V19.83h-.388v.09l-.032.842c-1.035.209-1.067-.752-1.067-.843 0-.57.581-1.085 1.487-.842v-.421c-1.649-.33-2.004.925-1.971 1.262 0 0-.17 1.622 1.962 1.231zm-3.813 0h-.388l.486-1.231.484-1.262h.362l.478 1.262.484 1.231h-.453l-.194-.45h-1.065zm.355-.812h.808l-.163-.421-.224-.63-.258.63zm.589-14.813v-.06C11.454 2.4 8.06 2.34 8.06 2.34H5.474v6.217h2.53s3.522.093 3.522-3.033M22.801 0v21.227c.005.281-.043.561-.141.827-.274.7-.939 1.075-1.937 1.075h-7.42L12.035 24l-1.306-.871h-7.39a2.3 2.3 0 0 1-1.537-.54l-.06-.056a1.8 1.8 0 0 1-.402-.614 2 2 0 0 1-.142-.73V0zM2.923 16.312h3.004v-.09c-.454 0-.453-.572-.453-1.022V9.162s2.908.06 4.04.06q.962-.004 1.905-.18c1.422-.337 3.071-1.203 3.102-3.516l.002-.06c0-3.485-4.202-3.756-4.202-3.756H2.923v.103c.225 0 .453.25.453 1.04v12.349c0 .45-.083.992-.453.992zM22.312.46 2.104 22.22l.02.018c.33.286.766.44 1.216.43h7.55l1.142.763 1.116-.764h7.58c1.088 0 1.584-.458 1.584-1.444z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/piapro.svg�����������������������������������0000664�0000000�0000000�00000000547�14753064456�0025123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.988 0c-4.705 0-8.7 3.492-9.351 8.168-.06.207-.09.444-.09.68V24l5.21-3.403V9.44c0-2.338 1.893-4.261 4.231-4.261s4.261 1.894 4.261 4.232-1.894 4.261-4.231 4.261c-.77 0-1.54-.207-2.22-.621v5.563A9.45 9.45 0 0 0 21.191 11.6C22.405 6.51 19.268 1.45 14.207.266A9.5 9.5 0 0 0 11.988 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/picardsurgeles.svg���������������������������0000664�0000000�0000000�00000007476�14753064456�0026655�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.129 0 8.72.822c.08.149.501.88 1.337 1.368.007.003.575.35 1.172.472l.01.002V4.53l-.02-.001a5.3 5.3 0 0 1-2.248-.861c-.028-.016-1.112-.62-1.846-1.926l-1.413.829c.12.21.851 1.569.731 3.198 0 .008-.043.924-.385 1.745l-.017.037-.033-.02-1.552-.902-.027-.015.012-.029c.003-.006.257-.654.137-1.772-.002-.005-.158-.8-.463-1.321l-1.42.822c.08.15.416.836.23 1.607-.002.01-.223 1.186-1.449 1.636-.01.004-.3.125-.714.138v1.636c.168-.003.96-.034 1.692-.412a4.3 4.3 0 0 0 1.143-.85l.02-.019.022.014 1.559.895.035.02-.025.031c-.008.01-.73.922-1.655 1.414-.008.005-1.064.659-2.363.736l-.428.014v1.635a6.2 6.2 0 0 1 1.262.172c.045.007 1.606.282 2.89 1.675l.286.34.026.033-.036.022-1.572.901-.028.015-.017-.025c-.004-.005-.378-.503-1.294-.952-.007-.003-.792-.32-1.517-.32v1.64c.213.002 1.39.067 2 1.3.005.01.511 1.01-.07 2.083l1.417.814c.089-.15.52-.933.506-1.925 0-.008-.045-.85-.181-1.166l-.011-.029.026-.016 1.56-.91.032-.019.017.036c.003.007.31.71.393 1.737.002.011.119 1.172-.4 2.499-.012.026-.249.558-.346.723l1.42.827c.09-.18.584-1.083 1.72-1.855a5.6 5.6 0 0 1 2.373-.938l.02-.003v1.868l-.011.001c-.006.001-.574.078-1.437.65-.005.005-.732.548-1.07 1.19l1.415.823c.103-.173.686-1.058 1.865-1.103 1.18.045 1.763.93 1.865 1.103l1.415-.822c-.338-.643-1.064-1.186-1.07-1.19-.863-.573-1.432-.65-1.438-.65l-.01-.002V19.47l.02.002c1.39.2 2.365.932 2.373.938 1.136.772 1.63 1.674 1.721 1.855l1.42-.827a12 12 0 0 1-.346-.723c-.52-1.327-.402-2.488-.401-2.499.083-1.027.39-1.73.394-1.737l.016-.036.033.02 1.56.91.026.015-.013.029c-.136.315-.181 1.158-.181 1.165a3.9 3.9 0 0 0 .507 1.926l1.416-.814c-.581-1.072-.075-2.074-.07-2.083a2.28 2.28 0 0 1 2.001-1.3v-1.64c-.725 0-1.51.317-1.517.32-.916.449-1.29.947-1.294.952l-.018.025-.026-.015-1.573-.901-.036-.022.026-.032.286-.341c1.284-1.393 2.844-1.668 2.89-1.676a6.2 6.2 0 0 1 1.262-.17v-1.636l-.428-.013c-1.299-.077-2.355-.731-2.363-.736-.924-.493-1.647-1.405-1.655-1.414l-.025-.03.036-.022 1.558-.894.023-.014.018.02a4.3 4.3 0 0 0 1.144.85c.732.377 1.524.408 1.692.41V7.696a2.2 2.2 0 0 1-.714-.139c-1.226-.449-1.448-1.625-1.45-1.635-.186-.771.15-1.458.232-1.607l-1.42-.822c-.305.521-.462 1.316-.463 1.321-.12 1.118.134 1.766.136 1.772l.012.029-.027.015-1.552.902-.034.02-.015-.037c-.343-.821-.386-1.737-.386-1.745-.12-1.63.611-2.988.731-3.198l-1.413-.829c-.734 1.306-1.818 1.91-1.845 1.926a5.3 5.3 0 0 1-2.25.86l-.018.003V2.664l.01-.002c.596-.123 1.164-.469 1.17-.472A3.7 3.7 0 0 0 15.28.822L13.871 0c-.458.75-1.023.91-1.06.92a2.2 2.2 0 0 1-.811.181 2.2 2.2 0 0 1-.81-.181c-.038-.01-.603-.17-1.06-.92zM8.082 5.058l.056.037c.008.005.828.54 1.696.793.009.003.73.25 1.388.304l.016.001v.466h-.002L7.872 8.612l-.02-.012-.352-.2-.028-.016.013-.028c.004-.009.372-.878.454-1.442v-.006c.003-.006.172-.539.144-1.784zm7.835 0v.066c-.029 1.246.14 1.78.143 1.785v.006c.081.564.45 1.433.454 1.442l.013.028-.028.015-.352.2-.017.01-3.368-1.95v-.467h.016c.657-.056 1.38-.302 1.388-.305.869-.252 1.688-.788 1.696-.793zm-3.916 3.04 2.47 1.434.052.03-.052.031L12 11.033l-2.47-1.44-.053-.03.053-.03zM6.657 9.814l.37.211.018.01v.021l.012 3.9v.02l-.019.01-.355.196-.026.015-.018-.026c-.97-1.335-2.471-2.143-2.486-2.151l-.061-.034.062-.03c1.52-.723 2.475-2.102 2.485-2.116zm10.686 0 .019.026c.01.014.964 1.393 2.484 2.116l.062.03-.06.034c-.015.008-1.518.816-2.487 2.151l-.019.026-.026-.015-.354-.195-.018-.01v-.021l.011-3.9v-.02l.017-.01zm-8.626 1.232 2.503 1.446v2.886l-2.503-1.434zm6.566 0v2.898l-2.503 1.434v-2.886zM7.869 15.4l.018.01 3.35 1.943.001.001v.454h-.018c-.097 0-.582.09-.824.139a8.1 8.1 0 0 0-2.256.95l-.042.028-.01-.05a4 4 0 0 1 0-.423c.021-1.322-.588-2.8-.594-2.814l-.013-.03.03-.014.341-.185zm8.26 0 .018.009.343.185.029.015-.013.029c-.006.015-.615 1.492-.593 2.814.001.036.012.361 0 .422l-.012.05-.042-.028c-.01-.006-.95-.622-2.254-.95-.243-.048-.727-.138-.825-.138h-.018v-.454l.001-.001 3.35-1.943z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/picartodottv.svg�����������������������������0000664�0000000�0000000�00000001040�14753064456�0026340�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12c6.628 0 12-5.373 12-12S18.628 0 12 0M7.08 4.182h2.781c.233 0 .42.21.42.47v14.696c0 .26-.187.47-.42.47h-2.78c-.233 0-.42-.21-.42-.47V4.652c0-.26.187-.47.42-.47zm4.664 0a.6.6 0 0 1 .326.091c.355.209 7.451 4.42 8.057 4.78a.604.604 0 0 1 0 1.039c-.436.264-7.558 4.495-8.074 4.789a.577.577 0 0 1-.873-.512v-1.812c0-1.712 2.962-2.201 3.398-2.465a.604.604 0 0 0 0-1.04c-.605-.36-3.398-.746-3.398-2.452V4.79c0-.334.251-.605.564-.61z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/picnic.svg�����������������������������������0000664�0000000�0000000�00000006122�14753064456�0025071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm17.492 4.481c.851 0 1.635.279 2.261.749.037.029.068.073.027.158-.054.12-.183.413-.416.757a4 4 0 0 1-.424.555c-.12.117-.12.103-.27.012a2.3 2.3 0 0 0-1.155-.324c-.934 0-1.712.624-1.712 1.655l.005.1c.066 1.034.888 1.603 1.817 1.547a2.3 2.3 0 0 0 .73-.175c.143-.062.314-.153.455-.242.122-.076.148-.116.27-.007.12.114.252.287.395.502.238.345.398.661.458.776.06.1.022.13-.013.16-.412.355-.89.617-1.44.764q-.465.136-.988.138a5 5 0 0 1-.288-.009l-.091-.007c-.864-.058-1.64-.371-2.226-.916-.032-.027-.064-.06-.09-.084-.616-.605-.995-1.468-.995-2.547 0-2.26 1.653-3.562 3.69-3.562m-5.567.108h.15c.752 0 .785.043.837.082a.12.12 0 0 1 .038.073c.037.207.052 1.437.048 2.658.004 1.221-.011 2.438-.048 2.645 0 0-.002.045-.038.075-.052.041-.085.08-.838.083h-.149c-.754-.003-.788-.042-.833-.083-.043-.03-.044-.075-.044-.075-.035-.207-.051-1.424-.047-2.645-.004-1.221.012-2.451.047-2.658 0 0 .001-.04.044-.073.045-.04.079-.082.833-.082m-5.388.001c2.328.047 3.63.92 3.657 2.908v.091c0 1.895-1.357 2.909-3.657 2.909a9 9 0 0 1-.44-.012c-.008.419-.017.738-.03.817 0 0-.007.044-.043.076-.05.039-.083.079-.836.082h-.149c-.754-.003-.786-.043-.835-.082-.04-.032-.042-.076-.042-.076-.048-1.232-.045-2.183-.045-3.346-.002-1.223.009-2.991.045-3.181.017-.094.082-.113.155-.125.307-.038 1.661-.072 2.22-.06zm-.175 1.85a5 5 0 0 0-.249.014v2.162c.154.012.295.025.587.019.951-.016 1.502-.343 1.513-1.083v-.03C8.203 6.781 7.65 6.455 6.7 6.44a6 6 0 0 0-.338 0M11.999 11c.891 0 1.337 1.077.707 1.707s-1.707.184-1.707-.707c0-.55.451-1 1-1m5.493 1.392a3.76 3.76 0 0 1 2.261.748c.037.028.068.076.027.161-.054.117-.183.409-.416.757-.135.21-.248.36-.424.554-.12.118-.12.104-.27.012a2.26 2.26 0 0 0-1.155-.323c-.934 0-1.712.622-1.712 1.654l.005.1c.066 1.032.888 1.607 1.817 1.544a2.2 2.2 0 0 0 .73-.173c.143-.06.314-.153.455-.24.122-.077.148-.118.27-.007.12.112.252.287.395.5.238.344.398.66.458.776.06.097.022.129-.013.161-.412.353-.89.613-1.44.764a3.6 3.6 0 0 1-1.276.13l-.091-.007c-.864-.06-1.64-.373-2.226-.916l-.09-.088c-.616-.603-.995-1.465-.995-2.544 0-2.26 1.653-3.563 3.69-3.563m-12.453.148h.149c.753 0 .786.045.836.085.009.009.02.023.03.031.456.833.806 1.402 1.057 1.826.478.806.674 1.164.9 1.556a90 90 0 0 1 .048-3.337s.004-.046.042-.076c.051-.04.084-.084.836-.085h.15c.751 0 .781.045.831.085.042.03.043.076.043.076.035.202.05 2.093.048 3.312.002 1.222-.013 3.022-.048 3.228 0 0 0 .043-.043.074-.05.04-.08.084-.831.086h-.15c-.752-.002-.785-.047-.836-.086a.1.1 0 0 1-.026-.029c-.024-.03-1.9-3.123-1.962-3.225.003 1.22-.013 2.976-.047 3.18 0 0-.007.043-.042.074-.05.04-.083.084-.836.086h-.149c-.754-.002-.786-.047-.835-.086-.04-.031-.042-.074-.042-.074-.034-.206-.046-2.01-.045-3.232-.001-1.221.011-3.106.045-3.308 0 0 .001-.046.042-.076.05-.04.081-.084.835-.085m6.886 1.256h.149c.753 0 .786.041.838.082q.032.03.038.074c.037.205.052 1.424.048 2.644.004 1.222-.011 2.439-.048 2.645 0 0-.002.043-.038.074-.052.04-.085.084-.838.086h-.149c-.754-.002-.788-.047-.833-.086a.1.1 0 0 1-.044-.074c-.035-.206-.051-1.423-.047-2.645-.004-1.22.012-2.44.047-2.644 0 0 .001-.042.044-.074.045-.04.079-.082.833-.082"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/picpay.svg�����������������������������������0000664�0000000�0000000�00000000544�14753064456�0025113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.463 1.587v7.537H24V1.587zm1.256 1.256h5.025v5.025h-5.025zm1.256 1.256v2.513h2.513V4.099zM3.77 5.355V8.53h3.376c2.142 0 3.358 1.04 3.358 2.939 0 1.947-1.216 3.011-3.358 3.011H3.769V8.53H0v13.884h3.769v-4.76h3.57c4.333 0 6.815-2.352 6.815-6.32 0-3.771-2.482-5.978-6.814-5.978Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/picrew.svg�����������������������������������0000664�0000000�0000000�00000006447�14753064456�0025127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.222 10.831a.037.037 0 0 1 .038-.04.6.6 0 0 1 .44.216 1.04 1.04 0 0 1 .21.62.035.035 0 0 1-.04.037c-.474-.062-.593-.22-.648-.833m-.147 0a.037.037 0 0 0-.04-.04.6.6 0 0 0-.44.216 1.04 1.04 0 0 0-.207.62.035.035 0 0 0 .041.037c.47-.062.59-.22.646-.833m-.648 1.002a.036.036 0 0 0-.039.035 1.04 1.04 0 0 0 .21.625.6.6 0 0 0 .438.22.037.037 0 0 0 .039-.04c-.056-.613-.175-.772-.648-.84m.795.844a.037.037 0 0 0 .038.04.6.6 0 0 0 .44-.216 1.04 1.04 0 0 0 .21-.633.036.036 0 0 0-.04-.039c-.474.072-.593.23-.648.843zm2.616-1.846a.037.037 0 0 0-.038-.04.6.6 0 0 0-.44.216 1.04 1.04 0 0 0-.21.62.035.035 0 0 0 .04.037c.473-.062.593-.22.648-.833m.795.844a.035.035 0 0 0 .04-.037 1.04 1.04 0 0 0-.209-.625.6.6 0 0 0-.44-.216.037.037 0 0 0-.039.04c.056.607.175.765.648.832zm-.648 1.003a.037.037 0 0 0 .039.04.6.6 0 0 0 .44-.216 1.04 1.04 0 0 0 .21-.634.036.036 0 0 0-.041-.039c-.473.072-.592.23-.648.843zm-.794-.844a.036.036 0 0 0-.041.039 1.04 1.04 0 0 0 .21.624.6.6 0 0 0 .44.215.037.037 0 0 0 .038-.04c-.055-.612-.175-.771-.647-.839Zm17.22-.964a.29.29 0 0 0-.288.289v.88a.29.29 0 1 0 .577 0v-.88a.29.29 0 0 0-.288-.294zm-2.15-.395a.29.29 0 0 0-.288.289v1.27a.29.29 0 1 0 .577 0V10.76a.29.29 0 0 0-.29-.288Zm4.3 0a.29.29 0 0 0-.287.289v1.27a.29.29 0 1 0 .577 0V10.76a.29.29 0 0 0-.29-.288Zm-5.15 1.568a.29.29 0 0 1-.29.29h-2.745v.105a.29.29 0 0 1-.578 0 2.4 2.4 0 0 1 .05-.454c.262-1.447 2.012-1.974 3.061-1.03a1.5 1.5 0 0 1 .502 1.08zm-2.885-.296h2.25a1 1 0 0 0-.26-.376 1.3 1.3 0 0 0-.891-.322 1.22 1.22 0 0 0-1.099.698m-5.262-1.276a2.05 2.05 0 0 0-1.801 1.035 1.35 1.35 0 0 0-.783-.24 1.36 1.36 0 0 0-.664.17 4.3 4.3 0 0 0-.794-1.912.7.7 0 0 1-.097-.15c.013-.96-1.153-1.406-1.832-.724l-.052.056A1 1 0 0 1 4.11 8.7a5 5 0 0 0-.58-.029 7 7 0 0 0-.708.04c-.646-.763-1.9-.339-1.886.657a.7.7 0 0 1-.098.15 4.4 4.4 0 0 0-.836 2.249.29.29 0 0 0 .576.05A3.8 3.8 0 0 1 1.3 9.87a.8.8 0 0 0 .209-.502.43.43 0 0 1 .269-.431.51.51 0 0 1 .6.136c.151.185.31.241.63.193a5 5 0 0 1 .522-.026 5 5 0 0 1 .522.026c.338.05.492-.018.643-.208a.51.51 0 0 1 .583-.12.43.43 0 0 1 .27.431.8.8 0 0 0 .215.502 3.8 3.8 0 0 1 .724 1.947c.02.198 0 .37.174.47a.29.29 0 0 0 .4-.12.754.754 0 0 1 1.251.01.29.29 0 0 0 .528-.068 1.45 1.45 0 0 1 1.424-1.06 1.48 1.48 0 0 1 1.253.656.29.29 0 1 0 .482-.32 2.05 2.05 0 0 0-1.735-.914m13.721 2.927a1.405 1.405 0 0 1-1.273.989 1.64 1.64 0 0 1-1.3-.546c-.632.723-1.86.749-2.39-.068-.522.372-1.326.614-2.113.614-1.06-.035-1.58-.388-2.298-.956-.764-.712-1.852-.145-2.355.738v1.206a.29.29 0 0 1-.577 0v-1.532a2.09 2.09 0 0 1-1.415.544 2.05 2.05 0 0 1-1.801-1.035 1.37 1.37 0 0 1-1.55.01c-.587 1.096-1.817 1.724-3.377 1.724-1.229 0-2.25-.386-2.916-1.085v1.372a.29.29 0 0 1-.578 0v-2.3a.3.3 0 0 1 .12-.24.29.29 0 0 1 .416.096c.458 1.025 1.528 1.577 2.953 1.583s2.704-.63 2.997-1.78a.29.29 0 0 1 .148-.166.29.29 0 0 1 .376.12c.248.45 1.01.45 1.258 0a.29.29 0 0 1 .492-.02.3.3 0 0 1 .04.09 1.487 1.487 0 0 0 2.846 0 .29.29 0 0 1 .562.007c.014.035.006.43.007.475.44-.421 1.002-.7 1.5-.7.92-.031 1.235.565 1.878.923a2.55 2.55 0 0 0 1.276.353c.857 0 1.652-.311 2.058-.749a.292.292 0 0 1 .42.162c.242.785 1.383.79 1.755-.017a.288.288 0 0 1 .523-.031 1.04 1.04 0 0 0 1.01.635.83.83 0 0 0 .76-.587.289.289 0 0 1 .55.176zM7.68 13.81a.29.29 0 0 0-.288.29v1.274a.29.29 0 1 0 .577 0V14.1a.29.29 0 0 0-.289-.29"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/picsart.svg����������������������������������0000664�0000000�0000000�00000001073�14753064456�0025271�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.999 0h-.012c-2.21 0-4.3.863-5.888 2.432-.15.148-.428.458-.428.458q-.144.164-.276.334l-.036.047a8.7 8.7 0 0 0-1.836 5.016v15.41a.3.3 0 0 0 .05.17.3.3 0 0 0 .254.133h2.881a.303.303 0 0 0 .305-.304v-7.843c0-.054.037-.08.053-.087a.1.1 0 0 1 .104.008 8.3 8.3 0 0 0 4.815 1.525c1.32 0 2.547-.305 3.68-.86 2.847-1.392 4.812-4.356 4.812-7.793 0-4.78-3.796-8.645-8.478-8.645zm-.013 13.994c-2.841 0-5.152-2.396-5.152-5.34 0-2.946 2.31-5.342 5.152-5.342s5.152 2.396 5.152 5.341-2.31 5.341-5.152 5.341"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/picxy.svg������������������������������������0000664�0000000�0000000�00000007506�14753064456�0024767�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.214 9.193a.74.74 0 0 0-.488.276c-.072.093-.124.205-.215.46a246 246 0 0 1-.792 2.17 41 41 0 0 0-.408 1.147 3 3 0 0 1-.053.167 8 8 0 0 1-.228-.553 179 179 0 0 0-1.23-3.074c-.08-.202-.094-.228-.157-.32a.6.6 0 0 0-.328-.247c-.07-.022-.08-.022-.485-.022h-.413v.893l.157.002c.185 0 .218.012.284.087.037.04.091.166.476 1.076l.653 1.54.332.776c.18.435.406.982.408.994l.01.04c.01.042-.018.123-.12.369-.197.47-.3.644-.495.813q-.389.345-.807.21a3 3 0 0 1-.427-.206 1 1 0 0 0-.177-.086l-.094.162c-.05.086-.095.16-.1.168-.02.024-.21.376-.21.387 0 .03.215.177.387.264a1.9 1.9 0 0 0 .903.215c.32 0 .56-.055.827-.19.42-.212.704-.57.982-1.242.12-.287.56-1.374 1.22-3.01.81-2.003.784-1.94.862-2.098.074-.148.106-.185.198-.234.047-.024.063-.027.183-.032L24 10.09v-.903h-.364c-.2-.002-.39 0-.422.006M10.32 9.17c-.492.05-.865.169-1.238.389a2.75 2.75 0 0 0-.856.834 2.6 2.6 0 0 0-.39 1.098 5 5 0 0 0 .004.844c.044.348.112.579.252.862.1.2.157.292.285.45a2.86 2.86 0 0 0 1.71.984c.124.02.166.022.48.022.38 0 .5-.011.753-.072.422-.101.742-.256 1.137-.55.064-.048.157-.115.206-.15.065-.045.09-.07.09-.084a.2.2 0 0 0-.04-.088 1.5 1.5 0 0 0-.124-.204c-.013-.017-.02-.031-.017-.031s-.002-.01-.013-.022c-.01-.01-.017-.024-.015-.03q.003-.006-.002-.007-.01-.001-.018-.02a7 7 0 0 0-.157-.26l-.032-.051-.314.21a4 4 0 0 1-.448.278c-.17.08-.36.145-.535.18a1.4 1.4 0 0 1-.359.027 1.6 1.6 0 0 1-.62-.093 2.4 2.4 0 0 1-.506-.258 2.2 2.2 0 0 1-.362-.36 1.7 1.7 0 0 1-.307-.64 2 2 0 0 1-.066-.532c0-.2.02-.343.07-.544.053-.208.101-.324.21-.504.28-.462.714-.746 1.245-.816a3 3 0 0 1 .533-.005c.131.015.281.052.367.092a.74.74 0 0 1 .317.267c.042.072.086.274.086.397v.06h.854v-.29c0-.321-.01-.392-.067-.541-.087-.225-.316-.462-.563-.586a2.7 2.7 0 0 0-.545-.194c-.213-.05-.328-.062-.656-.064a7 7 0 0 0-.349.002m-4.765.028c-.004.004-.007.19-.007.413v.407h.256c.283 0 .3.003.363.068.067.072.063-.088.062 1.92 0 1.882.002 2.11.037 2.246q.075.299.356.364c.107.024.608.045.62.025.001-.004 0-1.12-.005-2.478l-.006-2.47-.02-.076q-.072-.26-.259-.352c-.13-.065-.139-.066-.797-.07a12 12 0 0 0-.6.003m7.484.006a10 10 0 0 0-.003.44l.003.427h.17c.13 0 .184.006.232.018.17.046.263.123.401.326a111 111 0 0 1 .952 1.405.1.1 0 0 1 .017.04c0 .006-.41.634-.908 1.395l-.908 1.39c0 .002.26.004.576.004h.575l.643-1.003.655-1.02c.011-.015.026.003.144.175.072.106.373.565.67 1.02l.536.828h.572c.541 0 .57-.002.562-.018l-.912-1.395c-.78-1.196-.9-1.382-.89-1.398.005-.01.216-.333.47-.717.48-.723.531-.795.662-.896a1 1 0 0 1 .142-.084l.085-.041.418-.01v-.893h-.384c-.412 0-.483.006-.626.05a.8.8 0 0 0-.36.222c-.072.073-.108.124-.226.323a48 48 0 0 1-.838 1.335c-.02-.012-.25-.372-.765-1.197-.225-.36-.266-.42-.352-.501-.197-.19-.406-.237-1.05-.237-.198 0-.26.003-.263.012M.461 7.104a.4.4 0 0 0-.168.042.5.5 0 0 0-.276.338c-.02.072-.018-.307-.014 4.27v2.875l.529-.002.526-.003V11.89h.45c.8-.002 1.372-.015 1.557-.037a2.1 2.1 0 0 0 .72-.2 2.03 2.03 0 0 0 .803-.71 2.2 2.2 0 0 0 .392-1.058 5 5 0 0 0 0-.79 2.19 2.19 0 0 0-.783-1.465 2.4 2.4 0 0 0-.95-.452 4 4 0 0 0-.461-.066A73 73 0 0 0 .46 7.105Zm2.15.953a1.5 1.5 0 0 1 .688.24c.09.058.265.227.338.326.164.219.252.453.28.743.014.125.014.11 0 .235-.028.29-.116.524-.28.743a1.9 1.9 0 0 1-.338.327 1.5 1.5 0 0 1-.693.24c-.124.013-.108.013-.233 0a1.5 1.5 0 0 1-.692-.24 2 2 0 0 1-.34-.327 1.4 1.4 0 0 1-.28-.743c-.012-.125-.012-.11 0-.235.03-.29.118-.524.28-.743a2 2 0 0 1 .34-.327c.2-.133.507-.237.706-.24a.4.4 0 0 0 .074-.01.1.1 0 0 1 .038-.002c.008.002.059.008.112.013m-.13.58a.64.64 0 0 0-.422.428.9.9 0 0 0 0 .332c.047.16.163.304.302.376.11.057.163.07.294.07s.182-.013.294-.07a.63.63 0 0 0 .302-.376.9.9 0 0 0 0-.332.64.64 0 0 0-.43-.43.9.9 0 0 0-.34.003zM6.46 7.15a.63.63 0 0 0-.443.445 1 1 0 0 0-.015.155c0 .183.053.312.18.438a.56.56 0 0 0 .437.179 1 1 0 0 0 .156-.015.63.63 0 0 0 .446-.446.9.9 0 0 0 0-.311.63.63 0 0 0-.446-.447.9.9 0 0 0-.316.002z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pihole.svg�����������������������������������0000664�0000000�0000000�00000004116�14753064456�0025105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.344 0c.238 4.792 3.256 7.056 6.252 7.376.165-1.692-4.319-5.6-4.319-5.6-.008-.011.009-.025.019-.014 0 0 4.648 4.01 5.423 5.645 2.762-.15 5.196-1.947 5-4.912 0 0-4.12-.613-5 4.618C11.48 2.753 8.993 0 4.344 0M12 7.682v.002a3.68 3.68 0 0 0-2.591 1.077L4.94 13.227a3.7 3.7 0 0 0-.86 1.356 3.3 3.3 0 0 0-.237 1.255A3.68 3.68 0 0 0 4.92 18.45l4.464 4.466a3.7 3.7 0 0 0 2.251 1.06l.002.001q.14.015.28.017l-.1-.008c.06.003.117.009.177.009l-.077-.001L12 24l-.004-.005a3.68 3.68 0 0 0 2.61-1.077l4.469-4.465a3.7 3.7 0 0 0 1.006-1.888l.012-.063a4 4 0 0 0 .057-.541l.003-.061c0-.017.003-.05.004-.06h-.002a3.68 3.68 0 0 0-1.077-2.607l-4.466-4.468a3.7 3.7 0 0 0-1.564-.927l-.07-.02a3.4 3.4 0 0 0-.946-.133zm3.165 3.357c.023 1.748-1.33 3.078-1.33 4.806.164 2.227 1.733 3.207 3.266 3.146q-.051.005-.104.009c-1.847.135-3.209-1.326-5.002-1.326-2.23.164-3.21 1.736-3.147 3.27l-.008-.104c-.133-1.847 1.328-3.21 1.328-5.002-.173-2.32-1.867-3.284-3.46-3.132q.15-.017.31-.027c1.847-.133 3.209 1.328 5.002 1.328 2.082-.155 3.074-1.536 3.145-2.968M4.344 0c.238 4.792 3.256 7.056 6.252 7.376.165-1.692-4.319-5.6-4.319-5.6-.008-.011.009-.025.019-.014 0 0 4.648 4.01 5.423 5.645 2.762-.15 5.196-1.947 5-4.912 0 0-4.12-.613-5 4.618C11.48 2.753 8.993 0 4.344 0M12 7.682v.002a3.68 3.68 0 0 0-2.591 1.077L4.94 13.227a3.7 3.7 0 0 0-.86 1.356 3.3 3.3 0 0 0-.237 1.255A3.68 3.68 0 0 0 4.92 18.45l4.464 4.466a3.7 3.7 0 0 0 2.251 1.06l.002.001q.14.015.28.017l-.1-.008c.06.003.117.009.177.009l-.077-.001L12 24l-.004-.005a3.68 3.68 0 0 0 2.61-1.077l4.469-4.465a3.7 3.7 0 0 0 1.006-1.888l.012-.063a4 4 0 0 0 .057-.541l.003-.061c0-.017.003-.05.004-.06h-.002a3.68 3.68 0 0 0-1.077-2.607l-4.466-4.468a3.7 3.7 0 0 0-1.564-.927l-.07-.02a3.4 3.4 0 0 0-.946-.133zm3.165 3.357c.023 1.748-1.33 3.078-1.33 4.806.164 2.227 1.733 3.207 3.266 3.146q-.051.005-.104.009c-1.847.135-3.209-1.326-5.002-1.326-2.23.164-3.21 1.736-3.147 3.27l-.008-.104c-.133-1.847 1.328-3.21 1.328-5.002-.173-2.32-1.867-3.284-3.46-3.132q.15-.017.31-.027c1.847-.133 3.209 1.328 5.002 1.328 2.082-.155 3.074-1.536 3.145-2.968"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pimcore.svg����������������������������������0000664�0000000�0000000�00000002767�14753064456�0025275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 10.579a.474.474 0 0 1-.474.474H22.19a.084.084 0 0 0-.084.084v.547H24v.158a.474.474 0 0 1-.474.474h-1.421v.547c0 .046.038.084.084.084H24v.158a.474.474 0 0 1-.474.474h-1.579a.474.474 0 0 1-.474-.474v-2.211c0-.261.212-.474.474-.474H24zm-5.589.474a.095.095 0 0 0-.095.095V12h1.421c.27 0 .487-.227.473-.5a.48.48 0 0 0-.481-.448h-1.318m2.431.46c.005.44-.246.821-.614 1.004l.614 1.063h-.547a.31.31 0 0 1-.273-.158l-.456-.789h-1.25v.474a.474.474 0 0 1-.474.474h-.158v-2.684c0-.262.212-.474.474-.474h1.549c.61-.001 1.128.48 1.135 1.09m-5.368 1.435c.522 0 .947-.425.947-.947a.948.948 0 0 0-1.736-.523l-.348.523.345.52c.17.257.461.427.792.427m0-2.526a1.58 1.58 0 1 1-1.316 2.451l-.2-.3-.43.648A2.21 2.21 0 0 1 9.473 12a2.211 2.211 0 0 1 4.05-1.228l.056.084-.379.573-.207-.313a1.578 1.578 0 1 0 .008 1.756l1.156-1.742a1.58 1.58 0 0 1 1.317-.709m-7.393.13-1.067 1.067a.095.095 0 0 1-.134 0l-1.065-1.065a.447.447 0 0 0-.763.316v2.711h.158a.474.474 0 0 0 .474-.474v-1.69c0-.037.045-.056.072-.03l.856.856a.474.474 0 0 0 .67 0l.856-.856a.042.042 0 0 1 .072.03v2.163h.158a.474.474 0 0 0 .474-.474v-2.242a.44.44 0 0 0-.442-.442h-.007a.44.44 0 0 0-.312.13m-4.134 3.028a.474.474 0 0 0 .474-.474v-2.684h-.158a.474.474 0 0 0-.474.474v2.684zM2.039 12a.48.48 0 0 0 .487-.45.475.475 0 0 0-.473-.498H.726a.096.096 0 0 0-.095.095V12zm-.015-1.579c.619 0 1.146.507 1.134 1.126a1.105 1.105 0 0 1-1.105 1.084H.632v.474a.474.474 0 0 1-.474.474H0v-2.684c0-.262.212-.474.474-.474z"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/simple/pinboard.svg���������������������������������0000664�0000000�0000000�00000000274�14753064456�0025424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.352 14.585-4.509 4.614.72-4.062L3.428 7.57 0 7.753 7.58 0v2.953l7.214 6.646 4.513-1.105-4.689 4.982L24 24z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pinescript.svg�������������������������������0000664�0000000�0000000�00000001031�14753064456�0025776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.785 16.14.124 21.287a.66.66 0 0 0 .536 1.044h22.681a.662.662 0 0 0 .536-1.045l-4.2-5.927-1.979 1.161a1.98 1.98 0 0 1-1.976 1.913 1.98 1.98 0 0 1-1.97-2.147l-3.173-2.328a1.97 1.97 0 0 1-2.674-.164zm7.693-14.194L3.813 12.732a.663.663 0 0 0 .197.95l.691.417 2.66-1.515a2 2 0 0 1-.007-.163 1.98 1.98 0 0 1 1.977-1.982 1.98 1.98 0 0 1 1.935 2.385l3.047 2.237a1.972 1.972 0 0 1 2.969.172l2.831-1.66a.665.665 0 0 0 .068-.849L12.553 1.948a.658.658 0 0 0-1.075-.002"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pinetwork.svg��������������������������������0000664�0000000�0000000�00000001471�14753064456�0025650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .002c-6.628 0-12 5.371-12 12s5.372 11.996 12 11.996 12-5.371 12-12S18.624.002 12 .002m0 1.719c5.679 0 10.281 4.602 10.281 10.281S17.68 22.283 12 22.283 1.719 17.681 1.719 12.002 6.32 1.721 12 1.721M9.102 5.943c-.123 0-.227.1-.227.227v1.139c0 .122.1.226.227.226h1.56a.225.225 0 0 0 .227-.226v-1.14c0-.121-.1-.226-.227-.226zm3.685 0c-.122 0-.226.1-.226.227v1.139c0 .122.1.226.226.226h1.559a.23.23 0 0 0 .226-.226v-1.14c0-.121-.1-.226-.226-.226zm3.219 1.407v1.19H7.352c-1.895.026-1.975 2.042-1.975 2.042v1.461H7.43l.008-1.447h1.398v7.574c-.005.457.451.285.451.285l1.461-.516c.23-.099.186-.308.186-.308v-7.022h1.591v7.641c.014.357.366.213.366.213l1.591-.565c.14-.076.118-.195.118-.195l-.022-7.062 1.527-.04c1.909-.027 1.963-2.103 1.963-2.103V7.35z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pingdom.svg����������������������������������0000664�0000000�0000000�00000001002�14753064456�0025251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.96 17.804 7.959-3.396-7.049 7.241a14.4 14.4 0 0 0-.91-3.844zM24 11.118a44.2 44.2 0 0 0-15.087 1.92 14.6 14.6 0 0 1 2.535 3.621c4.042-2.25 9.646-5.123 12.552-5.531v-.015zm-12.574.275.207-.06a40 40 0 0 0 4.523-1.656 16.6 16.6 0 0 0 4.159-2.367 9 9 0 0 0 2.915-4.122c.12-.267.211-.549.267-.837-2.024 2.76-10.041 3.048-10.041 3.048l1.89-1.734A26.4 26.4 0 0 0 0 8.645a14.44 14.44 0 0 1 8.139 3.634c1.086-.336 2.196-.576 3.286-.879v-.006z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pino.svg�������������������������������������0000664�0000000�0000000�00000000353�14753064456�0024571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.225 5.555 2.789 5.472 2.756-5.505L11.999 0M1.979 20.123h13.769v-.037L8.862 6.29m3.524 5.522 4.131 8.311h5.505L15.137 6.291M4.5 24h14.87l-1.554-3.188H6.056"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pinterest.svg��������������������������������0000664�0000000�0000000�00000001541�14753064456�0025641�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.017 0C5.396 0 .029 5.367.029 11.987c0 5.079 3.158 9.417 7.618 11.162-.105-.949-.199-2.403.041-3.439.219-.937 1.406-5.957 1.406-5.957s-.359-.72-.359-1.781c0-1.663.967-2.911 2.168-2.911 1.024 0 1.518.769 1.518 1.688 0 1.029-.653 2.567-.992 3.992-.285 1.193.6 2.165 1.775 2.165 2.128 0 3.768-2.245 3.768-5.487 0-2.861-2.063-4.869-5.008-4.869-3.41 0-5.409 2.562-5.409 5.199 0 1.033.394 2.143.889 2.741.099.12.112.225.085.345-.09.375-.293 1.199-.334 1.363-.053.225-.172.271-.401.165-1.495-.69-2.433-2.878-2.433-4.646 0-3.776 2.748-7.252 7.92-7.252 4.158 0 7.392 2.967 7.392 6.923 0 4.135-2.607 7.462-6.233 7.462-1.214 0-2.354-.629-2.758-1.379l-.749 2.848c-.269 1.045-1.004 2.352-1.498 3.146 1.123.345 2.306.535 3.55.535 6.607 0 11.985-5.365 11.985-11.987C23.97 5.39 18.592.026 11.985.026z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pioneerdj.svg��������������������������������0000664�0000000�0000000�00000001150�14753064456�0025577�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.46 5.569c1.474 1.144 1.715 2.695 1.107 4.319-.565 1.503-1.833 2.96-3.827 4.087-2.21 1.227-4.498 1.554-6.993 1.554H0L4.212 4.308h5.051c2.548 0 4.7.1 6.197 1.26zm-3.112 4.235c.33-.884.246-2.202-.34-2.906-.658-.782-1.673-.873-3.138-.873l-.716.016s-.616-.07-.866.49c-.153.35.064-.263-2.412 6.341-.326.876.452.919.452.919s2.794.17 5.132-1.448c.991-.685 1.577-1.705 1.888-2.539m5.938-1.467L24 8.366l-2.892 7.731c-.944 2.518-2.896 3.595-6.812 3.595l-3.058-.04.731-1.746c4.427.21 5.225-1.76 5.365-2.139l1.846-4.966s.317-.884-.402-.884h-1.132Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/piped.svg������������������������������������0000664�0000000�0000000�00000002511�14753064456�0024723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.947 22.915c0 .6-1.207 1.085-2.7 1.085-1.492 0-2.698-.485-2.698-1.085s1.206-1.086 2.699-1.086 2.699.485 2.699 1.086m-.018-.906V.789S9.593.58 9.06.33A7 7 0 0 0 8.1.07 8 8 0 0 0 6.986 0a8 8 0 0 0-1.043.144 6 6 0 0 0-.786.272A6 6 0 0 0 4.56.79v21.223c.609-.462 1.668-.684 2.687-.684 1.015 0 2.072.22 2.68.68zm1.906-17.195c.66 0 1.192-1 1.192-2.237S12.494.34 11.835.34c-.66 0-1.192 1-1.192 2.237s.533 2.237 1.192 2.237m.045 4.488c-.66 0-1.192 1.102-1.192 2.464 0 1.363.533 2.465 1.192 2.465.66 0 1.192-1.102 1.192-2.465s-.532-2.464-1.192-2.464m7.556-2.16a12 12 0 0 0-.142-1.026 12 12 0 0 0-.27-.994 12 12 0 0 0-.388-.939q-.226-.44-.492-.859a11 11 0 0 0-.578-.76 10 10 0 0 0-.647-.65 9.6 9.6 0 0 0-1.412-.941 9.6 9.6 0 0 0-1.412-.492 11 11 0 0 0-.65-.102 6 6 0 0 0-.626-.053c.433.486.708 1.294.708 2.25 0 1-.3 1.836-.767 2.313.224.041.575.163.708.212.215.096.432.211.641.344.356.258.543.471.73.77.263.474.31.856.247 1.287-.135.651-.495 1.035-.937 1.33a4.3 4.3 0 0 1-.623.297c-.087.026-.438.13-.694.158.453.521.74 1.418.74 2.48 0 1.042-.278 1.923-.716 2.448.114-.002.22-.003.35-.007.414-.037.9-.107 1.395-.207.314-.085.862-.25 1.531-.55a9 9 0 0 0 1.422-.996q.32-.32.605-.673a9 9 0 0 0 .504-.782q.217-.428.39-.876.154-.463.262-.951.086-.495.129-1.003c.02-.343-.001-.686-.008-1.028"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pipx.svg�������������������������������������0000664�0000000�0000000�00000006554�14753064456�0024615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.801 0q-.007-.002-.02.017a34 34 0 0 0-1.451 2.245l.231-.662a.034.034 0 0 0-.058-.033l-.52.648a.1.1 0 0 0-.042.004l.353-.727a.037.037 0 0 0-.061-.04l-1.073 1.23q-.08.024-.07-.007c.313-.871.874-1.732 1.345-2.53a.05.05 0 0 0 .008-.028q0-.016-.005-.027-.02-.04-.047-.005c-.143.192-.422.71-.602.817a.031.031 0 0 1-.047-.025q0-.008.003-.013l.123-.281a.024.024 0 0 0-.025-.034.03.03 0 0 0-.017.009c-.417.53-.75 1.137-1.099 1.714-.225.373-.637.983-.902 1.515L11.13 8.52l-.934 1.756C9.44 9.075 8.838 7.75 8.15 6.503c-.15-.273-.353-.59-.518-.89a.03.03 0 0 0-.024-.014H7.59a.016.016 0 0 0-.015.021l.154.409a.06.06 0 0 1-.008.053l-.082.107a.08.08 0 0 0-.013.07l.15.505q.033.11-.024.01c-.295-.515-.566-1.099-.845-1.646q-.012-.025-.03-.004-.014.016-.003.037.317.644.504 1.16.004.01-.007.01h-.019a.01.01 0 0 1-.01-.007l-.387-.746a.037.037 0 0 0-.07.015.2.2 0 0 0 .07.174c.01.008.007.024-.005.027l-.024.008a.035.035 0 0 1-.041-.015l-.261-.432a.044.044 0 0 0-.076.002.04.04 0 0 0-.003.032l.46 1.592q.008.025-.019.025-.029 0-.048-.042l-.47-1.017a.027.027 0 0 0-.051.017c.06.335.166.55.177.975q.006.198.248.735c.047.106.061.23.106.337a.009.009 0 0 1-.016.008c-.302-.554-.496-1.088-.902-1.61a.034.034 0 0 0-.06.031c.065.203.096.38.192.592.125.277.103.564.206.814q.075.183.168.36a126 126 0 0 0 2.19 4.587c.02.039.015.095.016.137l-.34.53-1.024 1.834-.86 1.58-.339.614a.024.024 0 0 0 .035.032l.176-.118q.056-.039.035.027a3 3 0 0 1-.295.659q-.027.043.024.033l.173-.035c.003.155-.192.464-.257.64-.01.024.01.05.037.046a.04.04 0 0 0 .024-.015l.482-.714c.121.169-.044.328-.094.486a.044.044 0 0 0 .072.044l.322-.31q.04-.037.058.014l.018.05a.045.045 0 0 0 .082.01l.194-.31a.034.034 0 0 1 .06.028l-.306.876a.031.031 0 0 0 .054.031l.906-1.054a4.2 4.2 0 0 1-.462.956.04.04 0 0 0-.007.022.1.1 0 0 0 .007.024q.02.033.043.001.369-.518.707-1.057a.3.3 0 0 1 .117-.087l.016.15q.008.08.048.012c.176-.295.396-.556.57-.838q.476-.775 1.074-1.47.03-.035.05.004l.11.202c.264.588.538 1.185.864 1.768.405.722.911 1.815 1.38 2.683q.282.52.568 1.04c.33.6.617 1.26.936 1.888.16.336.348.716.67.792q.047.01.03-.034l-.687-1.839q.412.331.682.747.03.049.065.051a.042.042 0 0 0 .045-.048l-.173-1.104q-.015.04 0 0l.11-.156c.093.13.228.224.314.365q.34.567.805 1.024a.05.05 0 0 0 .082-.023.1.1 0 0 0 0-.023c-.174-.731-.567-1.452-.783-2.215q-.075-.266.11-.06.34.375.64.786.463.633.123-.073a14 14 0 0 0-.508-.924c-.643-1.281-1.338-2.527-1.997-3.8-.573-1.108-1.197-2.192-1.73-3.305a.2.2 0 0 1-.019-.065l-.006-.059q.175-.18.358-.488.179-.298.786-1.162c.107-.152.313-.39.457-.63q.148-.248.589-.821c1.077-1.402 2.239-2.795 3.184-4.227a.022.022 0 1 0-.036-.026l-.427.52a.043.043 0 0 1-.077-.024l-.008-.13q-.004-.078-.055-.019l-.497.582h-.033c.008-.035.002-.072.02-.105q.492-.908 1.032-1.8a.044.044 0 0 0-.07-.054q-.139.148-.269.335-.087.125-.144.05l.573-1.097a.024.024 0 0 0-.04-.025l-1.1 1.567-.672.938q-.02.026-.047.01-.028-.016-.01-.049.476-.807.609-1.062.357-.523.647-1.124c.117-.244.33-.514.429-.813a.03.03 0 0 0-.05-.027l-.604.773.392-.78q.368-.686.804-1.4c.204-.333.358-.658.518-1q.003-.006-.001-.01l-.015-.014q-.018-.02-.03.003a24 24 0 0 1-1.123 1.598.9.9 0 0 0-.14.27q-.01.033-.031.006l-.014-.014q-.03-.024-.012-.059.24-.479.415-.984a.3.3 0 0 0 .021-.072q-.016-.119-.097-.029l-.448.491q-.039.054-.009-.044a.1.1 0 0 1 .02-.04c.229-.335.416-.755.588-1.05q.331-.564.646-1.138a.1.1 0 0 0 .01-.045Q17.809.001 17.801 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pivotaltracker.svg���������������������������0000664�0000000�0000000�00000001346�14753064456�0026661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.002 0c-6.617 0-12 5.382-12 11.998 0 6.618 5.384 12.002 12 12.002S24 18.616 24 11.998C24 5.382 18.619 0 12.002 0m0 2.43a9.57 9.57 0 0 1 9.568 9.568c0 5.286-4.283 9.572-9.568 9.572s-9.57-4.286-9.57-9.572 4.285-9.568 9.57-9.568m-.135 1.31L8.822 5.498V5.5l2.68 4.64c.425-.113.888-.08 1.31.118l1.41-2.442zm4.17 2.256-2.68 4.643c.325.324.52.749.557 1.195h2.816l2.356-4.076zM4.781 7.984v3.55h.002v-.03h5.36a1.9 1.9 0 0 1 .756-1.08L9.49 7.984zm2.487 4.182L4.912 16.24l3.049 1.762 2.682-4.645a1.93 1.93 0 0 1-.557-1.191zm6.59.33a1.9 1.9 0 0 1-.756 1.078l1.41 2.442h4.707v-3.52h-5.362zm-2.67 1.244-1.41 2.442 2.353 4.076 3.049-1.76-2.68-4.64c-.425.114-.89.08-1.313-.118z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/piwigo.svg�����������������������������������0000664�0000000�0000000�00000001236�14753064456�0025123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.712 12.777A4.713 4.713 0 0 1 12 17.49a4.713 4.713 0 0 1-4.713-4.713A4.713 4.713 0 0 1 12 8.066a4.713 4.713 0 0 1 4.712 4.711m2.4-12.776c-2.572.058-2.358 1.544-8.237 1.555h-4.15A5.947 5.947 0 0 0 .777 7.503v10.55A5.947 5.947 0 0 0 6.725 24h10.55a5.947 5.947 0 0 0 5.948-5.947V4.081l-.008-.018c0-.014.004-.028.004-.043 0-2.227-1.88-4.02-4.108-4.02zm.09 2.545a1.41 1.41 0 0 1 1.407 1.41A1.41 1.41 0 0 1 19.2 5.364a1.41 1.41 0 0 1-1.41-1.408 1.41 1.41 0 0 1 1.41-1.41zM12 6.12a6.656 6.656 0 0 1 6.656 6.655A6.656 6.656 0 0 1 12 19.434a6.656 6.656 0 0 1-6.656-6.657A6.656 6.656 0 0 1 12 6.122z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pix.svg��������������������������������������0000664�0000000�0000000�00000001336�14753064456�0024426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.283 18.36a3.5 3.5 0 0 0 2.493-1.032l3.6-3.6a.684.684 0 0 1 .946 0l3.613 3.613a3.5 3.5 0 0 0 2.493 1.032h.71l-4.56 4.56a3.647 3.647 0 0 1-5.156 0L4.85 18.36ZM18.428 5.627a3.5 3.5 0 0 0-2.493 1.032l-3.613 3.614a.67.67 0 0 1-.946 0l-3.6-3.6A3.5 3.5 0 0 0 5.283 5.64h-.434l4.573-4.572a3.646 3.646 0 0 1 5.156 0l4.559 4.559ZM1.068 9.422 3.79 6.699h1.492a2.48 2.48 0 0 1 1.744.722l3.6 3.6a1.73 1.73 0 0 0 2.443 0l3.614-3.613a2.48 2.48 0 0 1 1.744-.723h1.767l2.737 2.737a3.646 3.646 0 0 1 0 5.156l-2.736 2.736h-1.768a2.48 2.48 0 0 1-1.744-.722l-3.613-3.613a1.77 1.77 0 0 0-2.444 0l-3.6 3.6a2.48 2.48 0 0 1-1.744.722H3.791l-2.723-2.723a3.646 3.646 0 0 1 0-5.156"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pixabay.svg����������������������������������0000664�0000000�0000000�00000001041�14753064456�0025254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.627 10.234a.89.89 0 0 1-.887-.888H1.7c0 .49-.398.888-.888.888H0v9.447h15.56v-9.447H5.64zm-.886 2.796h-3.04v-1.323h3.04zm5.344 5.234a3.27 3.27 0 0 1-3.267-3.269c0-1.802 1.466-3.193 3.267-3.193s3.267 1.39 3.267 3.193a3.27 3.27 0 0 1-3.267 3.269m1.756-3.269c0 .969-.788 1.757-1.756 1.757a1.76 1.76 0 0 1-1.756-1.757c0-.969.788-1.757 1.756-1.757s1.756.788 1.756 1.757M24 9.501l-3.93 10.156-3.164-1.226V16.7l2.242.869 2.765-7.146L11.55 6.407l-.96 2.482H8.86l1.769-4.57z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pixelfed.svg���������������������������������0000664�0000000�0000000�00000000414�14753064456�0025422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 24C5.373 24 0 18.627 0 12S5.373 0 12 0s12 5.373 12 12-5.373 12-12 12m-.953-9.38h2.202c2.074 0 3.755-1.637 3.755-3.656S15.323 7.31 13.249 7.31h-3.177c-1.197 0-2.167.944-2.167 2.109v8.208z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pixiv.svg������������������������������������0000664�0000000�0000000�00000001353�14753064456�0024764�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.935 0A4.924 4.924 0 0 0 0 4.935v14.13A4.924 4.924 0 0 0 4.935 24h14.13A4.924 4.924 0 0 0 24 19.065V4.935A4.924 4.924 0 0 0 19.065 0zm7.81 4.547c2.181 0 4.058.676 5.399 1.847a6.12 6.12 0 0 1 2.116 4.66c.005 1.854-.88 3.476-2.257 4.563-1.375 1.092-3.225 1.697-5.258 1.697-2.314 0-4.46-.842-4.46-.842v2.718c.397.116 1.048.365.635.779H5.79c-.41-.41.19-.65.644-.779V7.666c-1.053.81-1.593 1.51-1.868 2.031.32 1.02-.284.969-.284.969l-1.09-1.73s3.868-4.39 9.553-4.39zm-.19.971c-1.423-.003-3.184.473-4.27 1.244v8.646c.988.487 2.484.832 4.26.832h.01c1.596 0 2.98-.593 3.93-1.533.952-.948 1.486-2.183 1.492-3.683-.005-1.54-.504-2.864-1.42-3.86-.918-.992-2.274-1.645-4.002-1.646"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pixlr.svg������������������������������������0000664�0000000�0000000�00000001777�14753064456�0024775�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.264 14.391a18 18 0 0 1-2.645-.299A16 16 0 0 1 0 11.821v.284c0 6.052 4.483 11.043 10.311 11.85a48.6 48.6 0 0 1-1.808-7.816c-.075-.552-.164-1.135-.239-1.748m6.276-4.633a2.8 2.8 0 0 0 .688-1.494c.015-.12.03-.24.03-.344a2 2 0 0 0-.24-1.016 1.34 1.34 0 0 0-.657-.628c-1.195-.582-2.615.658-3.123 1.69 0 0 0 .014-.015.014-.717 1.36-.523 3.542-.523 3.542a8.3 8.3 0 0 0 2.929-1.031c.329-.195.642-.434.911-.733M12 .045C6.486.045 1.853 3.765.463 8.847c.105.134.643.433.733.493.254.164.523.329.792.493 1.11.647 2.897 1.47 5.155 1.749.314.06.643.074.957.074 0-.12-.015-.239-.015-.358-.015-.583.015-1.18.074-1.764.03-.239.045-.463.09-.702.015-.045.015-.105.03-.15v-.044c.374-2.003 1.42-3.781 3.362-4.648 2.003-.882 4.29-.523 5.545 1.36a5.22 5.22 0 0 1-.12 5.484c-1.315 2.048-3.631 3.034-6.067 3.363a44 44 0 0 0 .642 4.035 48 48 0 0 0 .882 3.511c.015.06.03.12.06.18.194.672.418 1.345.642 2.002C19.278 23.328 24 18.217 24 12.015 23.97 5.41 18.605.045 12 .045"/></svg>�mkdocs-material-9.6.4/material/templates/.icons/simple/pkgsrc.svg�����������������������������������0000664�0000000�0000000�00000000321�14753064456�0025110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.908 8.763 9.157-5.132L11.25 0 1.62 4.42Zm1.5 2.29 9-5.368-.948 11.84-8.191 6.382zM.593 6.712 1.619 18.79 11.922 24l-.12-12.788Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/planet.svg�����������������������������������0000664�0000000�0000000�00000001101�14753064456�0025077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.891 6.582c-1.159 0-2.4.457-3.217 1.633h-.033a1.59 1.59 0 0 0-1.59-1.59h-.048v10.86a1.79 1.79 0 0 0 1.784 1.784v-4.703h.034c.343.571 1.29 1.536 3.185 1.536 2.857 0 4.572-2.352 4.572-4.638.002-2.416-1.616-4.882-4.687-4.882m-.066 7.975c-1.714 0-3.07-1.388-3.07-3.217 0-1.666 1.242-3.2 3.023-3.2 1.845 0 3.103 1.616 3.103 3.233-.001 1.905-1.455 3.184-3.056 3.184M12.001 24A12 12 0 1 1 24 12.001 12.013 12.013 0 0 1 12.001 24m0-22.856a10.861 10.861 0 1 0 10.861 10.862 10.87 10.87 0 0 0-10.86-10.862z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/planetscale.svg������������������������������0000664�0000000�0000000�00000000430�14753064456�0026113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 12C0 5.373 5.373 0 12 0c4.873 0 9.067 2.904 10.947 7.077l-15.87 15.87a12 12 0 0 1-1.935-1.099L14.99 12H12l-8.485 8.485A11.96 11.96 0 0 1 0 12m12.004 12L24 12.004C23.998 18.628 18.628 23.998 12.004 24"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/plangrid.svg���������������������������������0000664�0000000�0000000�00000001220�14753064456�0025416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.6 0c2.6 0 4.262.009 5.828 1.574C23.99 3.141 24 4.794 24 7.401v9.2c0 2.6-.01 4.261-1.574 5.828C20.859 23.991 19.207 24 16.598 24h-9.2c-2.599 0-4.26-.009-5.827-1.574C.01 20.861 0 19.207 0 16.599v-9.2C0 4.8.01 3.138 1.574 1.572 3.141.01 4.793 0 7.4 0zm4.398 11.151C20.57 6.578 16.684 3.002 12 3.002c-4.971 0-9 4.027-9 8.998 0 4.801 3.752 8.734 8.485 9h7.136A2.385 2.385 0 0 0 21 18.619v-7.47zm-2.285 8.589a1.025 1.025 0 0 1 0-2.048 1.024 1.024 0 1 1 0 2.048M12 18.949A6.956 6.956 0 0 1 5.051 12 6.956 6.956 0 0 1 12 5.051 6.956 6.956 0 0 1 18.949 12 6.956 6.956 0 0 1 12 18.949"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/platformdotsh.svg����������������������������0000664�0000000�0000000�00000000206�14753064456�0026507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 0H0v9.541h24zm0 20.755H0V24h24zM0 12.618h24v4.892H0z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/platformio.svg�������������������������������0000664�0000000�0000000�00000002217�14753064456�0026001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 23.992c1.25.211 7.051-3.743 9.113-8.217.253-.686.61-1.198.746-2.5.21-2.016-.41-3.912-1.59-5.419-.987-1.163-2.305-2.004-3.88-2.532l.683-2.583a1.371 1.371 0 1 0-.76-.189L15.64 5.1c-1.109-.288-2.328-.437-3.64-.444m5.978 11.667c-1.548 1.346-2.525 1.488-3.045 1.467-.274-.034-.75-.558-.919-1.104-.188-.612-.28-1.282-.273-2.2-.199-2.476 1.465-5.624 3.937-6.041 1.003-.186 2.39.493 2.889 2.088.506 1.422-.645 4.147-2.589 5.79M12 4.656c-1.315.007-2.538.156-3.65.447l-.675-2.56A1.37 1.37 0 0 0 6.962 0a1.372 1.372 0 0 0-.044 2.742L7.6 5.328c-1.57.528-2.885 1.367-3.871 2.528-1.179 1.507-1.8 3.403-1.588 5.419.136 1.302.492 1.814.745 2.5 2.062 4.474 7.862 8.428 9.113 8.217m-1.507-9.507c.007.92-.086 1.589-.274 2.201-.167.546-.644 1.07-.918 1.104-.52.021-1.498-.121-3.045-1.467-1.944-1.643-3.095-4.368-2.589-5.79.5-1.595 1.886-2.274 2.889-2.088 2.471.417 4.136 3.565 3.937 6.04m6.45-2.19a1.24 1.24 0 1 0 0 2.48 1.24 1.24 0 0 0 0-2.48m.416 1.149a.325.325 0 1 1 0-.65.325.325 0 0 1 0 .65M7.25 12.294a1.24 1.24 0 1 0 0 2.48 1.24 1.24 0 0 0 0-2.48m-.418 1.15a.325.325 0 1 1 0-.65.325.325 0 0 1 0 .65"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/platzi.svg�����������������������������������0000664�0000000�0000000�00000000504�14753064456�0025125�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.64 1.127 2.485 9.282a3.84 3.84 0 0 0 0 5.436l8.155 8.155a3.84 3.84 0 0 0 5.436 0l2.72-2.718-2.72-2.718-2.718 2.718L5.203 12l8.155-8.155 5.437 5.437-5.437 5.436 2.718 2.72L21.513 12a3.84 3.84 0 0 0 0-5.437l-5.448-5.436a3.83 3.83 0 0 0-5.425 0z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/plausibleanalytics.svg�����������������������0000664�0000000�0000000�00000001530�14753064456�0027512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.184.002c-.638-.01-1.289.022-1.725.1-1.858.322-3.424 1.11-4.72 2.376C4.405 3.781 3.581 5.3 3.181 7.193l-.139.644L3.008 24c.291.008.591-.04.842-.06 2.348-.287 4.344-1.709 5.431-3.866.275-.55.472-1.182.61-1.97.113-.67.12-.892.101-4.381l-.017-3.674.142-.357c.197-.49.743-1.035 1.232-1.233l.358-.142 3.346-.006c1.84 0 3.454-.025 3.58-.049.585-.113 1.211-.603 1.462-1.146.072-.15.168-.442.21-.639.065-.329.06-.419-.036-.789-.298-1.1-1.35-2.623-2.425-3.514C16.624 1.163 15.28.49 13.828.148c-.382-.086-1.007-.137-1.644-.146m8.536 6.8c-.05.18-.098.367-.172.522a2.59 2.59 0 0 1-1.822 1.43c-3.673.056-2.539.055-3.673.056l-3.248.006-.27.107c-.313.126-.827.64-.953.953l-.107.268.017 3.576c.015 2.889.007 3.582-.06 4.125a9 9 0 0 0 1.568.139 8.99 8.99 0 0 0 8.992-8.992 9 9 0 0 0-.272-2.19"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/playcanvas.svg�������������������������������0000664�0000000�0000000�00000000327�14753064456�0025766�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6.115 0-.002 3.414 5.823 3.41-5.82 3.414-.003 3.412 11.774-6.826zm11.77 10.35L6.113 17.174 17.887 24l-.002-3.414-5.82-3.412 5.822-3.412z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/playerdotme.svg������������������������������0000664�0000000�0000000�00000000466�14753064456�0026156�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.981 0a8.957 8.957 0 0 0-8.956 8.957v.363C3.283 15.828 10.082 24 10.082 24V13.205c-1.638-.747-2.756-2.369-2.756-4.253a4.66 4.66 0 1 1 6.152 4.416l-.033.01v4.427c4.296-.713 7.531-4.401 7.531-8.845A8.96 8.96 0 0 0 12.017.001h-.038z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/playerfm.svg���������������������������������0000664�0000000�0000000�00000003202�14753064456�0025437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.976 0a12 12 0 0 0-.347.012 19 19 0 0 0-1.129.11c-3.29.448-6.096 2.1-7.993 4.56a12 12 0 0 0-1.22 1.94 12 12 0 0 0-.173.358q-.138.298-.261.603a12 12 0 0 0-.288.788l-.045.143A12 12 0 0 0 0 11.986v.037A12 12 0 0 0 12 24a12 12 0 0 0 11.939-10.79l.003-.024A12 12 0 0 0 24 12.018v-.048a12 12 0 0 0-.769-4.182 9 9 0 0 0-.125-.313 12 12 0 0 0-.226-.507c-1.487-3.15-4.299-5.59-7.698-6.506-.76-.208-1.978-.39-2.813-.444A12 12 0 0 0 12.024 0zm2.321 2.88c.166.001.377.056.675.159 1.782.611 3.773 2.157 4.856 3.764.752 1.118 1.337 2.428 1.337 2.987 0 .358-.35.681-.725.681-.35 0-.708-.305-.804-.68-.13-.525-.83-1.852-1.345-2.534-.917-1.205-2.332-2.262-3.72-2.777-.979-.367-1.232-.795-.778-1.336.152-.182.29-.267.504-.265zm-3.885 1.4q.391.002.7.165c1.31.664 1.24 2.568-.122 3.092-1.686.637-2.533 1.319-3.084 2.437-1.153 2.34-.21 5.1 2.123 6.218 1.712.821 3.668.533 5.03-.725.62-.576.961-1.074 1.267-1.878.428-1.126.917-1.545 1.79-1.545 1.119 0 1.887.943 1.66 2.026-.463 2.13-2.253 4.27-4.42 5.275-1.196.55-1.851.69-3.362.69-1.485 0-2.131-.131-3.284-.655-3.144-1.424-5.075-4.83-4.673-8.21a8.12 8.12 0 0 1 5.511-6.734 2.7 2.7 0 0 1 .864-.156m3.463.96c.217.004.499.105.914.306 1.686.803 3.083 2.279 3.834 4.035.28.672.14 1.109-.41 1.283-.42.123-.7-.104-1.066-.864-.681-1.441-1.65-2.437-3.013-3.11-.795-.384-.891-.471-.97-.847-.035-.2 0-.314.184-.532.157-.184.31-.276.527-.271m-.398 2.443c.23-.001.496.108.84.334.961.629 2.044 1.983 2.044 2.55 0 .289-.28.656-.559.725-.376.097-.646-.087-1.04-.707-.427-.655-.925-1.153-1.44-1.415-.446-.227-.577-.402-.577-.769a.58.58 0 0 1 .245-.515.73.73 0 0 1 .487-.203"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/playstation.svg������������������������������0000664�0000000�0000000�00000001350�14753064456�0026171�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.984 2.596v17.547l3.915 1.261V6.688c0-.69.304-1.151.794-.991.636.18.76.814.76 1.505v5.875c2.441 1.193 4.362-.002 4.362-3.152 0-3.237-1.126-4.675-4.438-5.827-1.307-.448-3.728-1.186-5.39-1.502zm4.656 16.241 6.296-2.275c.715-.258.826-.625.246-.818-.586-.192-1.637-.139-2.357.123l-4.205 1.5V14.98l.24-.085s1.201-.42 2.913-.615c1.696-.18 3.785.03 5.437.661 1.848.601 2.04 1.472 1.576 2.072-.465.6-1.622 1.036-1.622 1.036l-8.544 3.107V18.86zM1.807 18.6c-1.9-.545-2.214-1.668-1.352-2.32.801-.586 2.16-1.052 2.16-1.052l5.615-2.013v2.313L4.205 17c-.705.271-.825.632-.239.826.586.195 1.637.15 2.343-.12L8.247 17v2.074c-.12.03-.256.044-.39.073-1.939.331-3.996.196-6.038-.479z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/playstation2.svg�����������������������������0000664�0000000�0000000�00000000403�14753064456�0026251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.46 13.779v.292h4.142v-3.85h3.796V9.93h-4.115v3.85zm16.248-3.558v1.62h-7.195v2.23H24v-.292h-7.168v-1.646H24V9.929h-7.487v.292zm-16.513 0v1.62H0v2.23h.292v-1.938H7.46V9.929H0v.292Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/playstation3.svg�����������������������������0000664�0000000�0000000�00000001771�14753064456�0026263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.362 9.433h-3.148c-.97 0-1.446.6-1.446 1.38v2.365c0 .483-.228.83-.71.83H7.304a.035.035 0 0 0-.035.035v.47q0 .031.03.032h3.11c.97 0 1.45-.597 1.45-1.377v-2.363c0-.484.224-.832.71-.832h2.781c.02 0 .04-.014.04-.033v-.475c0-.02-.02-.035-.04-.035zm-9.266 0H.038c-.022 0-.038.017-.038.035v.477c0 .02.016.036.038.036h5.694c.48 0 .71.347.71.83s-.228.83-.71.83H1.228c-.7 0-1.227.586-1.227 1.365v1.513c0 .02.02.037.04.037h1.03c.02 0 .04-.016.04-.037v-1.513c0-.48.28-.82.68-.82H6.1c.97 0 1.444-.594 1.444-1.374 0-.778-.473-1.38-1.442-1.38zm17.453 2.498a.04.04 0 0 1 0-.056c.3-.25.45-.627.45-1.062 0-.778-.474-1.38-1.446-1.38h-6.057c-.02 0-.036.018-.036.038v.475c0 .02.02.04.04.04h5.7c.48 0 .715.35.715.83s-.23.83-.712.83h-5.7c-.02 0-.036.02-.036.04v.48c0 .02.016.033.037.033h5.7c.63.007.71.62.71.93v.06c0 .485-.23.833-.71.833h-5.7c-.02 0-.036.015-.036.034v.477c0 .02.015.037.036.037h6.05c.973 0 1.446-.645 1.446-1.38v-.057c0-.47-.15-.916-.45-1.19z"/></svg>�������mkdocs-material-9.6.4/material/templates/.icons/simple/playstation4.svg�����������������������������0000664�0000000�0000000�00000002116�14753064456�0026256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.302 13.18v-2.387c0-.486.227-.834.712-.834h2.99c.017 0 .035-.018.035-.036v-.475q0-.006-.003-.012h-3.66c-.792.1-1.18.653-1.18 1.357v2.386c0 .482-.233.831-.71.831H7.332c-.018 0-.036.012-.036.036v.475q.002.031.023.04h3.584c.933-.025 1.393-.62 1.393-1.385zM.024 14.564h1.05a.04.04 0 0 0 .025-.04v-1.52c0-.487.275-.823.676-.823h4.323c.974 0 1.445-.6 1.445-1.384 0-.705-.386-1.257-1.18-1.357H.006c0 .003-.006.005-.006.01v.475q0 .036.037.036h5.697c.484 0 .712.35.712.833 0 .484-.227.836-.712.836H1.226c-.7 0-1.226.592-1.226 1.373v1.519c0 .02.01.036.028.04zm15.998-.55h5.738c.017 0 .03.012.03.024v.483c0 .024.017.036.035.036h1.035c.018 0 .036-.01.036-.036v-.475c0-.018.02-.036.04-.036h1.028c.024 0 .036-.018.036-.036v-.484c0-.018-.01-.036-.035-.036h-1.03c-.02 0-.037-.017-.037-.035V9.96c0-.283-.104-.463-.28-.523h-.3a1.2 1.2 0 0 0-.303.132l-6.18 3.815c-.24.15-.323.318-.263.445.048.104.185.182.454.182zm.895-.637 4.79-2.961c.03-.024.09-.018.09.048v2.961c0 .018-.016.036-.034.036h-4.817c-.04 0-.06-.012-.065-.024q-.01-.034.036-.06"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/playstation5.svg�����������������������������0000664�0000000�0000000�00000001614�14753064456�0026261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.45 14.57a1.383 1.383 0 0 0 1.383-1.384v-2.378a.833.833 0 0 1 .834-.833h2.684a.037.037 0 0 0 .036-.038v-.476a.036.036 0 0 0-.036-.036h-3.234a1.383 1.383 0 0 0-1.384 1.383v2.38a.834.834 0 0 1-.833.834H7.253a.036.036 0 0 0-.036.037v.476a.036.036 0 0 0 .036.036zm6.045-3.213V9.461a.036.036 0 0 1 .036-.036h7.308a.037.037 0 0 1 .037.036v.476a.04.04 0 0 1-.037.038h-6.21a.036.036 0 0 0-.036.036v1.236a.395.395 0 0 0 .397.397h4.622a1.465 1.465 0 0 1 0 2.925h-6.08a.036.036 0 0 1-.037-.036v-.474a.036.036 0 0 1 .036-.037h5.53a.916.916 0 1 0-.007-1.83h-4.726a.833.833 0 0 1-.833-.835m-10.846.287a.835.835 0 0 0 0-1.67H.037A.037.037 0 0 1 0 9.938v-.476a.036.036 0 0 1 .037-.036h6.152a1.384 1.384 0 0 1 0 2.767H1.933a.833.833 0 0 0-.833.834v1.513a.036.036 0 0 1-.037.036H.037a.036.036 0 0 1-.037-.04v-1.513a1.383 1.383 0 0 1 1.384-1.378Z"/></svg>��������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/playstationportable.svg����������������������0000664�0000000�0000000�00000000366�14753064456�0027730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 9.93v.296h7.182v1.626H.001v2.217h.295v-1.921h7.182V9.93zm11.29 0v3.844H7.478v.296h4.124v-3.844h3.813V9.93zm5.233 0v.296h7.182v1.626h-7.182v2.217h.296v-1.921H24V9.93z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/playstationvita.svg��������������������������0000664�0000000�0000000�00000001707�14753064456�0027063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.176 12.216H1.274c-.26 0-.453.198-.453.538v1.235H0v-1.19c0-.668.42-1.119 1.014-1.119h1.924c.471-.018.584-.252.584-.592 0-.26-.13-.616-.584-.58H0v-.49h3.176c.832 0 1.16.481 1.16 1.07 0 .669-.328 1.128-1.16 1.128m3.488-1.122v1.813c0 .663-.299 1.076-1.126 1.076H3.761v-.49h1.55c.318 0 .507-.258.507-.586v-1.813c0-.578.28-1.077 1.102-1.077h1.765v.49H7.158c-.412-.017-.494.32-.494.587m4.84 2.904c-.331-.018-.47-.27-.532-.377s-1.92-3.609-1.92-3.609h.924l1.538 2.855c.08.16.262.2.36.012l1.53-2.867h.577s-1.798 3.404-1.87 3.52c-.071.117-.276.484-.607.466m3.005-3.972h.84v3.96h-.84zm3.77.46.003 3.477h-.826V10.49l-1.57-.002v-.483L19.859 10l-.002.489zm3.235-.481c-.314.005-.51.354-.579.467-.071.116-1.873 3.527-1.873 3.527h.578l.44-.84h2.541l.454.84H24s-1.86-3.508-1.923-3.616c-.062-.107-.201-.36-.533-.378zm-.18.996c.078-.005.155.047.2.138l.825 1.525h-2.004l.818-1.538c.043-.082.102-.12.162-.125Z"/></svg>���������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pleroma.svg����������������������������������0000664�0000000�0000000�00000000342�14753064456�0025261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.36 0a1.87 1.87 0 0 0-1.87 1.868V24h5.964V0zm7.113 0v12h4.168a1.87 1.87 0 0 0 1.868-1.868V0zm0 18.036V24h4.168a1.87 1.87 0 0 0 1.868-1.868v-4.096Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/plesk.svg������������������������������������0000664�0000000�0000000�00000003167�14753064456�0024750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.102 7.021v7.353h.736V7.02zm13.655.01v7.343h.735V7.032zm.735 4.633 2.479 2.71h1.019l-2.574-2.731L24 9.122h-.987zm-4.008-2.636q-.803 0-1.31.378-.505.378-.505 1.07 0 .39.148.642.15.252.38.415.231.163.522.267.29.106.59.19.263.074.5.152t.418.194a.9.9 0 0 1 .286.278q.105.163.104.405 0 .315-.286.535-.285.22-.88.221-.913 0-1.485-.735l-.572.504q.429.472.913.678.484.204 1.11.204.408 0 .766-.1a1.9 1.9 0 0 0 .621-.294q.264-.194.419-.478.153-.283.153-.64 0-.389-.153-.646a1.5 1.5 0 0 0-.402-.436 2.3 2.3 0 0 0-.545-.289 13 13 0 0 0-.594-.205q-.242-.074-.467-.152a2 2 0 0 1-.397-.184.9.9 0 0 1-.275-.252.6.6 0 0 1-.104-.357q0-.304.225-.504t.787-.2q.44 0 .759.163t.594.51l.011.01.54-.494q-.408-.472-.853-.661a2.6 2.6 0 0 0-1.018-.19zm-14.688.041q-.882 0-1.796.284v7.626h.725v-2.72q.273.072.546.115a3.54 3.54 0 0 0 1.586-.11q.504-.153.898-.478.394-.326.636-.83.24-.504.241-1.208 0-.577-.2-1.071a2.4 2.4 0 0 0-.572-.851 2.6 2.6 0 0 0-.898-.557 3.3 3.3 0 0 0-1.166-.2m8.886 0q-.483 0-.914.163-.431.164-.756.5a2.4 2.4 0 0 0-.515.845q-.189.51-.189 1.202 0 .525.157.998.159.473.473.84.315.369.788.583.473.216 1.103.216.683 0 1.166-.205t.85-.604l-.44-.462a1.86 1.86 0 0 1-.683.488 2.2 2.2 0 0 1-.84.153q-.831 0-1.314-.526-.483-.525-.514-1.417h3.939q.02-1.356-.568-2.064-.588-.71-1.743-.71m.031.62q.39 0 .683.121.294.12.478.32.183.2.284.484t.1.609H9.074a2.13 2.13 0 0 1 .494-1.103q.167-.19.456-.31t.688-.12zM1.86 9.7q.924 0 1.434.563.51.561.51 1.475 0 .989-.552 1.518-.552.53-1.486.53-.252 0-.52-.057a5 5 0 0 1-.52-.142V9.868a3 3 0 0 1 .557-.132A5 5 0 0 1 1.86 9.7m2.377 6.588v.692H8.66v-.692z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/plex.svg�������������������������������������0000664�0000000�0000000�00000002055�14753064456�0024575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.987 8.409c-.96 0-1.587.28-2.12.933v-.72H0v8.88s.038.018.127.037c.138.03.821.187 1.331-.249.441-.377.542-.814.542-1.318v-1.283c.533.573 1.147.813 2 .813 1.84 0 3.253-1.493 3.253-3.48 0-2.12-1.36-3.613-3.266-3.613m16.748 5.595.406.591c.391.614.894.906 1.492.908.621-.012 1.064-.562 1.226-.755 0 0-.307-.27-.686-.72-.517-.614-1.214-1.755-1.24-1.803zm-3.205-1.955c0-2.08-1.52-3.64-3.52-3.64s-3.467 1.587-3.467 3.573a3.48 3.48 0 0 0 3.507 3.52c1.413 0 2.626-.84 3.253-2.293h-2.04l-.093.093c-.427.4-.72.533-1.227.533-.787 0-1.373-.506-1.453-1.266h4.986c.04-.214.054-.307.054-.52m-7.671-.219c0 .769.11 1.701.868 2.722l.056.069c-.306.526-.742.88-1.248.88-.399 0-.814-.211-1.138-.579a2.18 2.18 0 0 1-.538-1.441V6.409H9.86zm9.283 3.46h-2.39l2.247-3.332-2.247-3.335h2.39l2.248 3.335zM3.573 13.662c-.933 0-1.68-.773-1.68-1.72s.76-1.666 1.68-1.666 1.68.733 1.68 1.68c0 .946-.733 1.706-1.68 1.706m18.361-1.974L24 8.622h-2.391l-.87 1.293zm-9.404-.466c.16-.706.72-1.133 1.493-1.133s1.373.467 1.507 1.133z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/plotly.svg�����������������������������������0000664�0000000�0000000�00000011003�14753064456�0025141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.021 0C.967 0 .111.883.111 1.973v20.054c0 1.09.857 1.973 1.91 1.973H21.98c1.054 0 1.91-.884 1.91-1.973V1.973C23.89.883 23.034 0 21.98 0H2.02zM10.1 4.648a.7.7 0 0 1 .304.127 1.2 1.2 0 0 1 .356.373.21.21 0 0 1 .084.163c.165.388.135.857-.149 1.203-.19.232-.429.305-.648.263a.24.24 0 0 1-.096.04c-.41.13-.884-.218-.994-.663-.065-.26-.087-.674.076-.908a.4.4 0 0 1 .082-.086 1 1 0 0 1 .05-.264c.077-.214.256-.214.425-.148a1 1 0 0 1 .09-.006 2 2 0 0 1 .158.008.28.28 0 0 1 .262-.102m8.43 0c.098.012.204.06.304.127a1.2 1.2 0 0 1 .355.373.21.21 0 0 1 .084.163c.166.388.136.857-.148 1.203-.19.232-.43.305-.648.263a.24.24 0 0 1-.096.04c-.41.13-.885-.218-.994-.663-.065-.26-.087-.674.076-.908a.4.4 0 0 1 .082-.086 1 1 0 0 1 .049-.264c.077-.214.256-.214.424-.148a1 1 0 0 1 .091-.006 2 2 0 0 1 .159.008.28.28 0 0 1 .261-.102zm-13.159.16c.224-.013.461.063.649.198a1 1 0 0 1 .23.223l.059.039c.341.244.312.679.074.992l-.004.008a.91.91 0 0 1-.897.558c-.302-.008-.611-.084-.82-.271-.2-.143-.34-.356-.332-.627a.13.13 0 0 1 .092-.127 1.04 1.04 0 0 1 .342-.6.7.7 0 0 1 .607-.393m8.682.003c.224-.014.461.06.648.195a1 1 0 0 1 .229.224l.058.04c.342.244.315.679.076.992l-.005.006a.91.91 0 0 1-.895.558c-.302-.008-.614-.084-.822-.271a.73.73 0 0 1-.33-.627.13.13 0 0 1 .092-.125 1.04 1.04 0 0 1 .34-.6.7.7 0 0 1 .61-.393zm-8.282.496.034.04.011.005a.13.13 0 0 1 .088.076.6.6 0 0 1 .225.125.7.7 0 0 0-.078-.135 1.2 1.2 0 0 0-.28-.111m8.68 0 .033.04.012.005c.039.007.07.038.088.076a.6.6 0 0 1 .225.125.7.7 0 0 0-.079-.135 1.2 1.2 0 0 0-.279-.111m-4.553.119a2 2 0 0 0-.005.295c.075-.042.081-.17.064-.262a.3.3 0 0 0-.059-.033m8.428 0a2 2 0 0 0-.004.295c.076-.042.08-.17.063-.262l-.02-.014-.039-.02zM5.55 5.65l-.086.028.01.04c.057-.032.133-.028.175.028l-.003-.057a.3.3 0 0 1-.075-.023Q5.56 5.66 5.55 5.65m8.68 0-.086.028.011.04c.057-.032.134-.028.176.028l-.004-.057a.3.3 0 0 1-.074-.023zm-9.032.088q.004.026.01.053l.023.078q-.04-.044-.033-.13zm8.68.002a1 1 0 0 0 .033.13q-.04-.043-.033-.13m-3.18.02-.011.017a.38.38 0 0 1-.13.237l-.001.006a.12.12 0 0 1-.04.119l-.029.064a2 2 0 0 1-.148.285.6.6 0 0 0 .217-.205c.1-.156.147-.34.142-.523m8.43 0-.012.017a.38.38 0 0 1-.129.237q0 .002-.002.006c.013.043-.005.088-.039.119l-.029.064a2 2 0 0 1-.148.285.57.57 0 0 0 .216-.205c.1-.156.148-.34.143-.523m-9.961.039a1 1 0 0 0 .004.133c.017.185.078.383.219.513a.6.6 0 0 0 .086.067 1 1 0 0 1-.143-.278 2.6 2.6 0 0 1-.166-.435m8.43 0a1 1 0 0 0 .004.133c.017.185.078.383.218.513a.6.6 0 0 0 .086.067 1 1 0 0 1-.142-.278 2.5 2.5 0 0 1-.166-.435m-11.67.146a.4.4 0 0 1-.028.065l.036.068a.24.24 0 0 0-.008-.133m8.681 0a1 1 0 0 1-.029.065l.035.068a.24.24 0 0 0-.006-.133m-9.09.41a.6.6 0 0 1-.18.038l-.013.015a.5.5 0 0 0 .229-.013l-.035-.04zm8.68 0a.6.6 0 0 1-.18.038l-.013.015a.5.5 0 0 0 .228-.013zm-4.308 2.3a1.06 1.06 0 0 1 1.052 1.072v8.58c0 .592-.47 1.072-1.052 1.072s-1.055-.48-1.055-1.072v-8.58c0-.592.472-1.072 1.055-1.073zm8.431 0a1.06 1.06 0 0 1 1.053 1.072v8.58c0 .592-.47 1.072-1.053 1.072-.582 0-1.054-.48-1.054-1.072v-8.58c0-.592.472-1.072 1.054-1.073zm-12.95.105c.224-.013.461.06.649.195a1 1 0 0 1 .23.225l.059.039c.341.244.312.679.074.992l-.004.006a.91.91 0 0 1-.897.558c-.302-.007-.611-.083-.82-.271-.2-.142-.34-.354-.332-.625a.13.13 0 0 1 .092-.127 1.04 1.04 0 0 1 .342-.6.7.7 0 0 1 .607-.393zm8.682 0c.224-.013.461.06.648.195a1 1 0 0 1 .229.225l.058.039c.342.244.315.679.076.992l-.005.006a.91.91 0 0 1-.895.558c-.302-.007-.614-.083-.822-.271a.73.73 0 0 1-.33-.625.13.13 0 0 1 .092-.127 1.04 1.04 0 0 1 .34-.6.7.7 0 0 1 .61-.393zm-8.282.496.034.043.011.002a.13.13 0 0 1 .088.076.6.6 0 0 1 .225.125.7.7 0 0 0-.078-.133 1.2 1.2 0 0 0-.28-.113m8.68 0 .033.043.012.002c.039.007.07.038.088.076a.6.6 0 0 1 .225.125.7.7 0 0 0-.079-.133 1.2 1.2 0 0 0-.279-.113M5.55 9.6l-.086.027.01.041c.057-.032.133-.029.175.027l-.003-.054a.3.3 0 0 1-.075-.026Q5.56 9.608 5.55 9.6m8.68 0-.086.027.011.041c.057-.032.134-.029.176.027l-.004-.054a.3.3 0 0 1-.074-.026zm-9.032.09a.6.6 0 0 0 .032.123.16.16 0 0 1-.032-.124zm8.68 0a.6.6 0 0 0 .031.123.17.17 0 0 1-.031-.124zm-7.951.206a.4.4 0 0 1-.028.063l.036.07a.24.24 0 0 0-.008-.133m8.681 0a.4.4 0 0 1-.029.063l.035.07a.24.24 0 0 0-.006-.133m-9.09.409a.6.6 0 0 1-.18.037v.002l-.013.015a.55.55 0 0 0 .229-.015zm8.68 0a.6.6 0 0 1-.18.037v.002l-.013.015a.55.55 0 0 0 .228-.015zm-8.525 2.64c.582 0 1.053.48 1.053 1.073v4.289c0 .592-.47 1.072-1.053 1.072-.582 0-1.055-.48-1.055-1.072v-4.29c0-.592.473-1.072 1.055-1.072m8.432 0c.581 0 1.054.48 1.054 1.073v4.289c0 .592-.473 1.072-1.054 1.072-.583 0-1.053-.48-1.053-1.072v-4.29c0-.592.47-1.072 1.053-1.072"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/plume.svg������������������������������������0000664�0000000�0000000�00000003576�14753064456�0024760�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.528 9.532c0-.368.095-.735.284-1.063v-.001l2.94-5.093a3.78 3.78 0 0 1 3.27-1.887l6.644.002c.294 0 .526.262.476.565-.038.238-.261.402-.502.402l-6.618-.002a2.81 2.81 0 0 0-2.433 1.404L5.65 8.95h.001a1.17 1.17 0 0 0-.002 1.16l-.001-.002 2.75 4.764a.087.087 0 0 1-.074.13h-.767a.35.35 0 0 1-.301-.173L4.81 10.592v-.001a2.1 2.1 0 0 1-.282-1.059m.819 6.926v.001a2.13 2.13 0 0 0 1.837 1.064h4.894c.124 0 .24-.065.301-.173l.384-.664a.087.087 0 0 0-.076-.13H7.186h.001a1.16 1.16 0 0 1-1.003-.583v.002l-2.94-5.092a2.81 2.81 0 0 1 0-2.81l3.312-5.73c.12-.208.089-.483-.098-.636a.483.483 0 0 0-.727.13L2.407 7.59a3.78 3.78 0 0 0 0 3.776Zm14.126-1.99c0 .368-.096.735-.284 1.063v.001l-2.941 5.093a3.78 3.78 0 0 1-3.27 1.887l-6.643-.002a.484.484 0 0 1-.477-.565c.038-.238.262-.402.502-.402l6.618.002a2.81 2.81 0 0 0 2.433-1.404l2.94-5.092a1.17 1.17 0 0 0 .001-1.16l-2.75-4.763a.087.087 0 0 1 .076-.13h.766c.124 0 .24.066.302.174l2.444 4.237.001.002c.188.328.282.694.282 1.059m-6.937 5.525H6.655a3.78 3.78 0 0 1-3.27-1.888L.065 12.35a.483.483 0 0 1 .222-.683c.23-.104.503.005.63.224l3.306 5.73a2.81 2.81 0 0 0 2.432 1.405h5.88-.002a1.17 1.17 0 0 0 1.006-.578v.001l2.75-4.764a.087.087 0 0 1 .151 0l.383.663a.35.35 0 0 1 0 .349l-2.447 4.236v.001a2.13 2.13 0 0 1-1.84 1.06zm11.399-8.341-3.32-5.755a3.78 3.78 0 0 0-3.27-1.888h-5.88a2.13 2.13 0 0 0-1.84 1.059l-.001.002-2.447 4.236a.35.35 0 0 0 0 .348l.383.663a.087.087 0 0 0 .15 0l2.751-4.764v.001a1.16 1.16 0 0 1 1.005-.578h5.88c1.003 0 1.93.535 2.431 1.405l3.306 5.73c.127.22.4.328.63.224a.483.483 0 0 0 .222-.683M18.653 7.54l2.94 5.093a3.78 3.78 0 0 1 0 3.775l-3.324 5.753a.484.484 0 0 1-.727.13c-.187-.152-.218-.427-.097-.636l3.31-5.73a2.81 2.81 0 0 0 .001-2.809l-2.94-5.09a1.17 1.17 0 0 0-1.003-.583h-5.5a.087.087 0 0 1-.076-.13l.384-.664a.35.35 0 0 1 .301-.174l4.892.001h.002a2.13 2.13 0 0 1 1.837 1.064"/></svg>����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pluralsight.svg������������������������������0000664�0000000�0000000�00000000645�14753064456�0026166�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.72 1.755C10.08-.301 3.811 2.625 1.771 8.25c-2.071 5.699.854 11.956 6.494 14.01 5.655 2.055 11.956-.87 14.01-6.51 2.057-5.67-.87-11.939-6.524-13.995zM12 24C5.4 24 0 18.6 0 12S5.4 0 12 0s12 5.4 12 12-5.4 12-12 12M8.926 5.805v12.391L19.68 12zm1.049 1.769L17.625 12l-7.65 4.426zm-3.526-.419v9.689L14.85 12zm1.051 1.8L12.811 12 7.5 15.061V8.939"/></svg>�������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/plurk.svg������������������������������������0000664�0000000�0000000�00000003120�14753064456�0024754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.902 1.906a10.07 10.07 0 0 0-7.88 3.707 10 10 0 0 0-.284.357l.004-.003q.35-.295.717-.445l.058-.023c.3-.112.602-.147.9-.088 1.44.289 2.19 2.609 1.676 5.183-.515 2.574-2.1 4.427-3.54 4.139-1.01-.202-1.679-1.405-1.813-2.992v-.005.052a9 9 0 0 0 0 .4v.073l.002.059a11 11 0 0 0 .043.643 10 10 0 0 0 .961 3.443c.06.126.03.276-.078.363l-.277.226a.91.91 0 0 0-.29.97q0 .008.006.017a1 1 0 0 0 .06.142l.05-.04.23-.173a.261.261 0 1 1 .315.416l-.245.186-.037.028 1.177 1.448a.91.91 0 0 0 1.275.131l.258-.21a.3.3 0 0 1 .374 0 10.05 10.05 0 0 0 6.528 2.181 10.04 10.04 0 0 0 5.572-1.855.3.3 0 0 1 .38.025l.163.156a.91.91 0 0 0 1.179.059l-.004-.004-.21-.197a.262.262 0 0 1 .358-.382l.225.21 1.26-1.326a.91.91 0 0 0-.033-1.282l-.263-.25a.3.3 0 0 1-.054-.36 10.06 10.06 0 0 0 1.103-6.671c.3-.278.853-.824 1.069-1.292.231-.502.29-1.02-.323-.792-.476.177-.842.29-1.286.19-1.417-3.593-4.847-6.193-8.851-6.4a10 10 0 0 0-.473-.014zM2.265 6.246a1.228 1.228 0 0 0-1.083 1.765 1.23 1.23 0 1 0 .755 2.236c.176-.124.305-.29.394-.47.187.342.46.627.779.823a6 6 0 0 0 .017.6c.102 1.228.62 2.16 1.4 2.316 1.114.223 2.34-1.21 2.738-3.2.4-1.99-.18-3.784-1.295-4.007-.434-.087-.885.08-1.298.432-.45.383-.854.988-1.14 1.73q-.015-.002-.03-.007c-.14-.04-.214-.131-.311-.152a1.23 1.23 0 0 0-.926-2.065zm2.862 1.245q.08 0 .16.015c.726.143 1.104 1.312.844 2.608-.26 1.298-1.058 2.23-1.783 2.085-.493-.098-.824-.67-.905-1.433.18.07.37.113.56.122.526.024.87-.154 1.14-.513.345-.465.083-1.753-.375-1.92-.356-.13-.567.027-.884.05a2.5 2.5 0 0 1 .557-.72c.22-.185.453-.292.686-.295z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pluscodes.svg��������������������������������0000664�0000000�0000000�00000000735�14753064456�0025631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a2.4 2.4 0 0 0-2.4 2.4A2.4 2.4 0 0 0 12 4.8a2.4 2.4 0 0 0 2.4-2.4A2.4 2.4 0 0 0 12 0M9.543 9.543v4.914h4.914V9.543zM2.4 9.6A2.4 2.4 0 0 0 0 12a2.4 2.4 0 0 0 2.4 2.4A2.4 2.4 0 0 0 4.8 12a2.4 2.4 0 0 0-2.4-2.4m19.2 0a2.4 2.4 0 0 0-2.4 2.4 2.4 2.4 0 0 0 2.4 2.4A2.4 2.4 0 0 0 24 12a2.4 2.4 0 0 0-2.4-2.4M12 19.2a2.4 2.4 0 0 0-2.4 2.4A2.4 2.4 0 0 0 12 24a2.4 2.4 0 0 0 2.4-2.4 2.4 2.4 0 0 0-2.4-2.4"/></svg>�����������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pm2.svg��������������������������������������0000664�0000000�0000000�00000012704�14753064456�0024325�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.43 3.223c-.83 1.386-.906 1.499-1.21 1.81-.633.654-1.417 1.003-2.415 1.074-.187.013-1.265.033-2.702.05-.638.008-.75.011-.766.028-.01.011-.185.274-.39.586l-.37.565.104.005c.056.003.443-.003.858-.011a93.159 93.163 0 0 1 1.335-.019c.572 0 .58 0 .667.03.246.084.393.306.355.533a.5.5 0 0 1-.394.42c-.104.027-.375.034-2.821.075-.426.007-.78.015-.784.02a31 31 0 0 0-.747 1.145c.004.004.405 0 .893-.007 3.13-.051 5.844-.092 6.6-.1.727-.008.995-.02 1.19-.054.54-.092.954-.297 1.31-.65.253-.252.475-.572.852-1.23.125-.217.262-.45.307-.52l.138-.223c.033-.054.07-.11.082-.125.033-.038.1-.146.14-.23.034-.07.534-.906.75-1.257.15-.242.232-.312.42-.355.26-.06.58.102.653.332.06.188.033.305-.136.59-1.21 2.035-1.65 2.764-1.887 3.123-.672 1.018-1.684 1.564-2.991 1.613-.105.003-.773.015-1.486.026l-2.052.031-1.591.027a1166.545 1166.596 0 0 1-3.102.048q-.752.008-.78.022a.7.7 0 0 0-.12.186 2.9 2.9 0 0 0-.285.793.4.4 0 0 1-.039.132c-.024.007-.02.787.003.81a.4.4 0 0 1 .04.135c.057.285.197.616.395.932l.092.147 1.316.008c.724.004 2.597.015 4.164.021 1.692.008 2.914.019 3.01.027.318.026.488.052.75.118a3.37 3.37 0 0 1 1.652.95c.255.264.38.44.941 1.339a188 188 0 0 1 1.494 2.44c.142.28.05.571-.223.7a.59.59 0 0 1-.518.01c-.145-.072-.152-.08-.9-1.29a85 85 0 0 0-.512-.822 26.09 26.091 0 0 1-.344-.565c-.37-.62-.588-.93-.82-1.162a2.37 2.37 0 0 0-1.164-.627c-.286-.064-.338-.066-2.328-.077a590.763 590.789 0 0 0-3.215-.014c-.738 0-1.634-.005-1.99-.008-.517-.008-.647-.007-.647.007 0 .008.156.27.348.578l.348.56.332.003c2.407.019 2.53.02 2.619.037.194.04.309.123.386.28a.35.35 0 0 1 .05.212.43.43 0 0 1-.143.342.57.57 0 0 1-.251.142c-.075.022-.142.024-1.214.02-.92-.003-1.134 0-1.126.013a94 94 0 0 0 .704 1.135c.008.007.592.016 1.508.021 1.23.008 1.527.013 1.673.03 1.105.13 1.942.603 2.573 1.457.117.158.248.366.912 1.44l.466.754h.714c.392 0 .714-.003.714-.007s-.257-.42-.57-.924a493.191 493.213 0 0 1-1.49-2.407 13 13 0 0 0-.274-.43 2.4 2.4 0 0 0-1.434-.97c-.252-.061-.428-.077-.874-.083s-.522-.016-.646-.08a.55.55 0 0 1-.231-.227c-.033-.065-.037-.088-.037-.211 0-.127.003-.145.037-.208a.56.56 0 0 1 .357-.275c.07-.021.13-.024.52-.024.345 0 .48.005.625.024.937.12 1.64.445 2.224 1.027.276.276.397.443.758 1.042.127.209.412.672.636 1.028l1.05 1.686.644 1.04h.905c.722 0 .905-.005.9-.018a24 24 0 0 0-.24-.39c-.46-.737-.493-.796-.513-.943-.027-.206.118-.419.345-.5a.55.55 0 0 1 .6.134c.064.063.414.61.936 1.465l.156.255.178-.009a3.3 3.3 0 0 0 1.31-.325c.065-.03.125-.056.134-.059a3.15 3.15 0 0 0 1.078-.886 541.326 541.35 0 0 0 2.393-3.65c2.484-3.806 2.433-3.724 2.554-4.086a2.68 2.68 0 0 0-.115-2.016c-.048-.103-.838-1.387-2.263-3.683a536.842 536.866 0 0 0-2.253-3.617 2.94 2.94 0 0 0-1.1-.915 3.2 3.2 0 0 0-.902-.316c-.18-.033-.193-.036-.183-.052.004-.008-.106-.01-.292-.01l-.298.005-.265.44c-.588.98-.643 1.068-.726 1.151a.57.57 0 0 1-.309.169c-.222.04-.496-.093-.59-.287-.03-.057-.033-.084-.033-.204 0-.187-.009-.167.504-1.01a3 3 0 0 0 .147-.254c0-.007-.29-.012-.71-.012h-.71l-.019.03a442 442 0 0 1-1.829 3.028c-.21.347-.468.776-.57.953-.231.396-.326.54-.49.744a4 4 0 0 1-.563.56q-.795.617-1.92.747c-.361.042-.884.048-1.072.013a.58.58 0 0 1-.384-.276c-.033-.065-.037-.083-.037-.21 0-.12.004-.147.034-.21a.54.54 0 0 1 .352-.279c.073-.02.16-.027.515-.037.264-.007.485-.02.578-.033a3 3 0 0 0 .599-.15c.164-.065.396-.19.532-.288a2.9 2.9 0 0 0 .53-.526c.056-.074.325-.509.599-.966.273-.458.8-1.334 1.171-1.947.37-.614.677-1.124.68-1.135.006-.016-.098-.018-.703-.018h-.708zm7.036.536c0 .01.005.02.012.022.005.001.101.149.212.327.506.81.692 1.117.72 1.194.036.1.04.231.008.323a.65.65 0 0 1-.24.262.54.54 0 0 1-.657-.088c-.08-.075-.165-.201-.46-.685-.11-.182-.214-.346-.229-.366q-.024-.036-.016-.066c.01-.031.56-.88.601-.925.027-.03.05-.03.05.003zM16.08 5.896q-.004.011.005.016c.012.004 1.003 1.593 1.574 2.523.48.778.696 1.127.88 1.413.301.469.413.687.526 1.026.115.342.16.653.147 1.005-.007.24-.03.39-.088.624-.102.4-.325.866-.61 1.278-.09.128-.273.322-.304.322-.01 0-.02.005-.02.012 0 .006-.039.025-.086.04a.63.63 0 0 1-.39-.012.66.66 0 0 1-.294-.283c-.032-.067-.034-.087-.029-.19.007-.14.036-.202.231-.503.25-.385.352-.596.424-.885q.186-.735-.184-1.46a37 37 0 0 0-.692-1.138 342.675 342.69 0 0 1-1.16-1.867c-.308-.496-.569-.918-.584-.938-.014-.021-.024-.045-.02-.054.01-.027.59-.907.62-.938.02-.022.03-.026.043-.016.01.008.015.02.01.026zm3.142.909a.6.6 0 0 1 .26.188c.095.117 1.425 2.23 1.911 3.04.28.462.41.75.5 1.103.062.243.086.431.086.689 0 .343-.037.57-.145.897-.126.382-.217.553-.658 1.236-.16.25-.998 1.548-1.858 2.887l-1.862 2.89c-.163.253-.303.47-.31.485-.008.013-.019.023-.027.02a21 21 0 0 1-.625-1.006c0-.009.012-.033.025-.052a8337.117 8337.482 0 0 1 3.846-5.967c.205-.318.266-.429.343-.62a1.95 1.95 0 0 0 .15-.84c-.014-.316-.077-.54-.254-.894-.13-.266-.255-.476-.562-.95-.125-.193-.269-.42-.319-.504a76.564 76.567 0 0 0-.486-.789c-.764-1.226-.755-1.21-.757-1.35 0-.118.04-.212.128-.307a.67.67 0 0 1 .32-.184.6.6 0 0 1 .294.027zm-4.54 1.215.2.325c1.091 1.747 1.137 1.824 1.247 2.043q.691 1.38.014 2.735c-.096.19-.135.255-.767 1.236-.848 1.32-.947 1.47-.974 1.5-.022.022-.025.024-.025.003 0-.012-.533-.881-1.184-1.93a193.219 193.227 0 0 1-1.184-1.918c0-.007.554-.858 1.233-1.892a612.753 612.78 0 0 0 1.314-2.007.7.7 0 0 1 .096-.127c.007 0 .02.014.03.033zm2.437 6.843a.68.68 0 0 1 .277.26.5.5 0 0 1 .041.153c.01.133-.024.21-.264.588a820.264 820.3 0 0 1-1.25 1.954l-.125.194c-.022.04-.026.042-.048.026a29.746 29.747 0 0 1-.605-.97c-.012-.03 1.237-1.975 1.327-2.068a.55.55 0 0 1 .446-.182.44.44 0 0 1 .201.045"/></svg>������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pnpm.svg�������������������������������������0000664�0000000�0000000�00000000355�14753064456�0024600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v7.5h7.5V0zm8.25 0v7.5h7.498V0zm8.25 0v7.5H24V0zM8.25 8.25v7.5h7.498v-7.5zm8.25 0v7.5H24v-7.5zM0 16.5V24h7.5v-7.5zm8.25 0V24h7.498v-7.5zm8.25 0V24H24v-7.5z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pocket.svg�����������������������������������0000664�0000000�0000000�00000001253�14753064456�0025111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.813 10.259-5.646 5.419a1.65 1.65 0 0 1-2.282 0l-5.646-5.419a1.645 1.645 0 0 1 2.276-2.376l4.511 4.322 4.517-4.322a1.643 1.643 0 0 1 2.326.049 1.64 1.64 0 0 1-.045 2.326zm5.083-7.546a2.16 2.16 0 0 0-2.041-1.436H2.179c-.9 0-1.717.564-2.037 1.405-.094.25-.142.511-.142.774v7.245l.084 1.441c.348 3.277 2.047 6.142 4.682 8.139q.069.053.143.105l.03.023a11.9 11.9 0 0 0 4.694 2.072c.786.158 1.591.24 2.389.24.739 0 1.481-.067 2.209-.204.088-.029.176-.045.264-.06.023 0 .049-.015.074-.029a12 12 0 0 0 4.508-2.025l.029-.031.135-.105c2.627-1.995 4.324-4.862 4.686-8.148L24 10.678V3.445c0-.251-.031-.5-.121-.742z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pocketbase.svg�������������������������������0000664�0000000�0000000�00000003156�14753064456�0025750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.684 12a.63.63 0 0 1-.631-.632V4.421c0-.349.282-.632.631-.632h2.37q.69 0 1.287.139.61.125 1.053.44.454.303.715.82.26.502.26 1.246 0 .718-.273 1.247a2.4 2.4 0 0 1-.715.869 3.1 3.1 0 0 1-1.053.503q-.598.165-1.273.164h-.46a.63.63 0 0 0-.632.632v1.52a.63.63 0 0 1-.632.631Zm1.279-4.888c0 .349.283.632.632.632h.343q1.56 0 1.56-1.31 0-.642-.404-.907-.39-.264-1.156-.264h-.343a.63.63 0 0 0-.632.631Zm6.3 13.098a.63.63 0 0 1-.631-.631v-6.947a.63.63 0 0 1 .631-.632h2.203q.66 0 1.216.1.57.09.984.328.414.24.647.63.246.39.246.982 0 .278-.09.554a1.5 1.5 0 0 1-.26.516 1.86 1.86 0 0 1-1.076.7.03.03 0 0 0-.023.03c0 .015.01.028.025.03q.887.167 1.346.626.466.465.466 1.297 0 .63-.246 1.083a2.15 2.15 0 0 1-.685.755 3.4 3.4 0 0 1-1.036.441 5.5 5.5 0 0 1-1.268.139zm1.271-5.542c0 .349.283.631.632.631h.21q.698 0 1.009-.264t.31-.743q0-.453-.323-.642-.31-.202-.984-.202h-.222a.63.63 0 0 0-.632.632Zm0 3.463c0 .349.283.631.632.631h.39q1.528 0 1.528-1.108 0-.54-.376-.78-.361-.24-1.152-.24h-.39a.63.63 0 0 0-.632.632zM1.389 0C.629 0 0 .629 0 1.389V15.03a1.4 1.4 0 0 0 1.389 1.39H8.21a.63.63 0 0 0 .63-.632.63.63 0 0 0-.63-.63H1.389c-.078 0-.125-.05-.125-.128V1.39c0-.078.047-.125.125-.125H15.03c.078 0 .127.047.127.125v6.82a.63.63 0 0 0 .631.63.63.63 0 0 0 .633-.63V1.389A1.4 1.4 0 0 0 15.032 0ZM15.79 7.578a.63.63 0 0 0-.632.633.63.63 0 0 0 .631.63h6.822c.078 0 .125.05.125.128V22.61c0 .078-.047.125-.125.125H8.97c-.077 0-.127-.047-.127-.125v-6.82a.63.63 0 0 0-.631-.63.63.63 0 0 0-.633.63v6.822A1.4 1.4 0 0 0 8.968 24h13.643c.76 0 1.389-.629 1.389-1.389V8.97a1.4 1.4 0 0 0-1.389-1.39Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pocketcasts.svg������������������������������0000664�0000000�0000000�00000000447�14753064456�0026153�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0m3.564 12A3.564 3.564 0 1 0 12 15.564V17.6a5.6 5.6 0 1 1 5.6-5.6zM19 12a7 7 0 1 0-7 7v2.333a9.333 9.333 0 1 1 0-18.666A9.333 9.333 0 0 1 21.333 12z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/podcastaddict.svg����������������������������0000664�0000000�0000000�00000001456�14753064456�0026437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.36.037C2.41.037 0 2.447 0 5.397v13.207c0 2.95 2.41 5.36 5.36 5.36h13.28c2.945 0 5.36-2.41 5.36-5.36V5.396c0-2.95-2.415-5.36-5.36-5.36zm6.585 4.285a7.72 7.72 0 0 1 7.717 7.544l.005 7.896h-3.39v-1.326a7.7 7.7 0 0 1-4.327 1.326 7.8 7.8 0 0 1-2.384-.378v-4.63a3.65 3.65 0 0 0 2.416.91 3.666 3.666 0 0 0 3.599-2.97h-1.284a2.416 2.416 0 0 1-4.73-.66v-.031c0-1.095.728-2.023 1.728-2.316V8.403a3.67 3.67 0 0 0-2.975 3.6v6.852a7.72 7.72 0 0 1 3.625-14.533m.031 1.87V7.43h.006a4.575 4.575 0 0 1 4.573 4.574v.01h1.237v-.01a5.81 5.81 0 0 0-5.81-5.81zm0 2.149v1.246h.006a2.413 2.413 0 0 1 2.415 2.416v.01h1.247v-.01a3.66 3.66 0 0 0-3.662-3.662zm0 2.252c-.78 0-1.409.629-1.409 1.41s.629 1.409 1.41 1.409 1.409-.629 1.409-1.41-.629-1.409-1.41-1.409"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/podcastindex.svg�����������������������������0000664�0000000�0000000�00000002321�14753064456�0026306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.006.006c-.237.02-.467.103-.647.236C1.727 2.254.173 4.976.292 8.29c.12 3.195 1.675 6.27 4.067 8.046.24.118.48.236.72.236.358 0 .716-.118.956-.473.478-.591.359-1.301-.24-1.656-1.913-1.302-3.11-3.786-3.11-6.153 0-2.485 1.077-4.616 3.11-6.154.599-.355.598-1.183.24-1.656-.225-.37-.636-.508-1.03-.473m13.753 0c-.314.03-.613.177-.792.473-.36.473-.36 1.301.238 1.656 2.034 1.538 3.11 3.67 3.11 6.154 0 2.367-1.196 4.851-3.11 6.153-.598.355-.717 1.065-.239 1.656.24.355.6.473.958.473.24 0 .478-.118.718-.236 2.512-1.775 4.067-4.851 4.067-8.046.107-3.313-1.435-6.035-4.067-8.047a1.3 1.3 0 0 0-.883-.236m-2.265 3.552a1.2 1.2 0 0 0-.83.376 1.17 1.17 0 0 0 .06 1.669c1.532 1.408 1.663 3.798-.012 5.371a1.195 1.195 0 0 0-.036 1.681 1.2 1.2 0 0 0 1.687.047c2.716-2.556 2.488-6.52-.012-8.827a1.18 1.18 0 0 0-.856-.317m-8.993.007a1.2 1.2 0 0 0-.856.31c-2.5 2.307-2.727 6.271-.011 8.827a1.2 1.2 0 0 0 1.686-.047 1.17 1.17 0 0 0-.048-1.668C6.597 9.413 6.741 7.022 8.26 5.614a1.17 1.17 0 0 0 .06-1.668 1.15 1.15 0 0 0-.819-.381m4.5 2.15a2.57 2.57 0 0 0-2.572 2.57 2.57 2.57 0 0 0 1.193 2.17L7.714 24h2.525l2.877-13.402a2.57 2.57 0 0 0 1.456-2.312A2.57 2.57 0 0 0 12 5.714"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/podman.svg�����������������������������������0000664�0000000�0000000�00000022077�14753064456�0025111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.2.275 6.75.308a.26.26 0 0 0-.203.098L.056 8.602a.26.26 0 0 0-.05.219l2.356 10.194a.26.26 0 0 0 .14.174l9.43 4.511a.26.26 0 0 0 .224-.002l9.401-4.566a.26.26 0 0 0 .141-.175L23.993 8.75a.26.26 0 0 0-.051-.22L17.403.374A.26.26 0 0 0 17.2.275m-.123.517 6.385 7.966-2.242 9.964-9.177 4.457-9.205-4.402L.54 8.827 6.875.824zM11.46 2.857c-.933 0-1.84.1-2.426.332h-.002c-1.554.569-2.725 2.105-3.074 3.952v.004c-.309 1.463-.392 2.703-.556 3.824-.07.481-.159.94-.283 1.387-.628.497-1.079 1.263-1.244 2.138v.004c-.116.547-.181 1.04-.237 1.5h-.644v.518h8.891c-.061.464-.122.996-.181 1.42H7.596v.517h7.939c-.242-.078-.486-.218-.756-.502h-.697l-.85.488-.232-.396.162-.092h-1.069c.113-.776.17-1.601.373-2.564v-.004c.22-1.164.96-2.112 1.895-2.453l.004-.002h.002c.318-.127.928-.205 1.543-.205.613 0 1.244.075 1.622.207.935.341 1.676 1.29 1.895 2.453v.004c.204.963.26 1.788.373 2.564h-.742l.162.092-.233.396-.85-.488h-.75c-.219.25-.474.412-.747.502h4.392v-.518h-.842c-.103-.743-.181-1.67-.382-2.623v-.002a4 4 0 0 0-.264-.863h1.863v-.517h-2.13a3.5 3.5 0 0 0-.8-.906h1.8v-.518H17.95a9 9 0 0 1-.193-.775h1.484v-.518h-1.576q-.02-.12-.039-.244c-.164-1.12-.246-2.36-.555-3.824v-.004c-.348-1.848-1.52-3.383-3.075-3.952l-.002-.002h-.002c-.65-.227-1.596-.33-2.531-.33zm0 .386c.904 0 1.833.11 2.404.309h.002c1.4.514 2.5 1.934 2.826 3.666v.003c.303 1.436.385 2.66.552 3.805.076.515.173 1.013.315 1.505-.449-.135-1.05-.197-1.648-.197q-.179 0-.352.008l-1.863-1.865a2 2 0 0 0 .11-.246l2.13 1.23.13-.224-2.185-1.262q.023-.104.036-.21l2.302.616.068-.248-2.354-.63c-.02-1.153-1.008-2.078-2.208-2.078-1.205 0-2.196.931-2.206 2.091l-2.303.617.066.25 2.252-.605q.015.114.041.224L7.436 11.24l.129.222 2.087-1.207q.051.134.12.258l-1.266 1.266a7 7 0 0 0-1.045-.075c-.603 0-1.186.064-1.578.22a3 3 0 0 0-.285.124q.113-.502.187-1.021c.168-1.144.248-2.37.551-3.805l.002-.001v-.002c.326-1.733 1.426-3.153 2.828-3.666h.002l.004-.002c.488-.194 1.381-.307 2.287-.307zM8.473 5.194a1.3 1.3 0 0 0-.965.502l-.117.153.306.236.12-.152a.92.92 0 0 1 .673-.352.92.92 0 0 1 .67.262l.139.134.271-.275-.136-.137a1.3 1.3 0 0 0-.961-.37zm6.39 0a1.3 1.3 0 0 0-.96.371l-.138.137.274.275.136-.134a.92.92 0 0 1 .672-.262.92.92 0 0 1 .674.352l.119.152.307-.236-.12-.153c-.23-.3-.587-.486-.964-.502M8.53 6.708c-.642 0-1.164.538-1.164 1.19 0 .65.522 1.187 1.164 1.187.643 0 1.164-.536 1.164-1.188s-.521-1.19-1.164-1.19zm6.273 0c-.643 0-1.162.538-1.162 1.19 0 .65.52 1.187 1.162 1.187.643 0 1.164-.536 1.164-1.188s-.521-1.19-1.164-1.19zm-6.273.387c.428 0 .776.355.776.802s-.348.8-.776.8a.785.785 0 0 1-.775-.8q0-.053.006-.103c.07.191.248.318.445.318a.487.487 0 0 0 .477-.496.49.49 0 0 0-.383-.486.8.8 0 0 1 .23-.035m6.273 0c.428 0 .777.355.777.802s-.349.8-.777.8a.785.785 0 0 1-.77-.9c.072.19.248.315.444.315a.486.486 0 0 0 .479-.496.49.49 0 0 0-.383-.484.8.8 0 0 1 .23-.037m-3.08.716c1.012 0 1.819.775 1.819 1.723 0 .947-.807 1.722-1.819 1.722s-1.82-.775-1.82-1.722c0-.948.808-1.723 1.82-1.723m-.002.528c-.142 0-.258.043-.355.076a.8.8 0 0 1-.232.054c-.107 0-.2.047-.268.127a.6.6 0 0 0-.104.207c-.04.134-.062.268-.08.315a.28.28 0 0 0 .032.25c.033.056.071.1.117.146.09.092.206.183.322.268.12.088.237.166.326.224l-.008.09c-.043.036-.14.102-.324.178a.53.53 0 0 1-.299.025.43.43 0 0 1-.236-.172c.015-.138.044-.293.068-.449l-.376-.095c-.05.238-.067.43-.094.64l.037.059c.143.224.318.344.506.392a.9.9 0 0 0 .52-.033 1.6 1.6 0 0 0 .444-.242c.088.067.244.174.446.242a.9.9 0 0 0 .52.033.87.87 0 0 0 .507-.392l.037-.059a6 6 0 0 0-.096-.637l-.377.092c.032.148.051.32.07.451a.43.43 0 0 1-.237.17.53.53 0 0 1-.3-.025c-.178-.068-.272-.14-.325-.178l-.006-.084c.09-.058.209-.137.336-.23.115-.085.231-.176.322-.268a.7.7 0 0 0 .117-.146.27.27 0 0 0 .031-.25c-.018-.047-.039-.181-.08-.315a.6.6 0 0 0-.103-.207.34.34 0 0 0-.268-.127.8.8 0 0 1-.234-.054c-.097-.033-.212-.076-.354-.076zm.002.386c.057 0 .134.024.23.057.09.03.208.07.337.076.04.102.06.237.09.338a.4.4 0 0 1-.041.045 3 3 0 0 1-.276.228c-.165.122-.271.188-.342.233a5 5 0 0 1-.34-.233 3 3 0 0 1-.275-.228.3.3 0 0 1-.04-.047c.035-.119.046-.234.089-.34.08.012.246-.042.336-.072a.8.8 0 0 1 .232-.057m-3.234.61a.635.635 0 0 0-.611.517l1.084-.289a.61.61 0 0 0-.473-.228m6.336 0a.6.6 0 0 0-.436.187c.352.096.69.184 1.033.275a.63.63 0 0 0-.597-.462m-.623.607c-.007.035-.002.07-.002.103l.921.532a.65.65 0 0 0 .276-.313zm-5.086.05-1.18.315c.078.15.207.264.362.316l.797-.46c.018-.059.015-.12.021-.17zm4.441.714 1.656 1.658a4.2 4.2 0 0 0-.826.146l-.95-1.647a3 3 0 0 0 .12-.157m-3.646.03c.04.055.083.118.129.169l-.658 1.134a3 3 0 0 0-.276-.119l-.002-.002a3 3 0 0 0-.292-.082zm3.338.317.892 1.547c-.623.251-1.149.725-1.523 1.33h-1.652c-.262-.75-.741-1.38-1.358-1.764l.623-1.082c.394.347.919.559 1.492.559a2.25 2.25 0 0 0 1.526-.59M7.46 12.09c.574 0 1.167.073 1.518.195.867.319 1.555 1.203 1.76 2.285l.001.002v.002c.109.513.173.98.227 1.424H9.86a.386.386 0 0 0-.494 0H9.11a1.4 1.4 0 0 0-.078-.418.8.8 0 0 0 .569.238c.45 0 .814-.375.814-.828a.824.824 0 0 0-.814-.828.822.822 0 0 0-.791 1.016 1.5 1.5 0 0 0-1.18-.559c-.798 0-1.46.611-1.48 1.38h-.342a.386.386 0 0 0-.494 0H4.028c.054-.445.116-.912.224-1.425l.002-.002v-.002c.205-1.084.894-1.97 1.764-2.287h.002l.004-.002c.295-.117.863-.191 1.437-.19zm-1.91 1.105a.9.9 0 0 0-.67.348l-.119.154.307.237.119-.155a.53.53 0 0 1 .379-.197.52.52 0 0 1 .377.147l.138.136.272-.275-.137-.137a.9.9 0 0 0-.666-.258m4.094 0a.9.9 0 0 0-.668.258l-.137.137.273.275.137-.136a.52.52 0 0 1 .377-.147.53.53 0 0 1 .379.197l.119.155.307-.237-.12-.154a.9.9 0 0 0-.667-.348m4.222.735a.95.95 0 0 0-.707.365l-.117.154.306.237.12-.155a.57.57 0 0 1 .413-.213.57.57 0 0 1 .414.159l.14.136.27-.275-.138-.137a.94.94 0 0 0-.701-.271m4.374 0a.94.94 0 0 0-.7.271l-.14.137.272.275.139-.136a.57.57 0 0 1 .414-.159.57.57 0 0 1 .414.213l.119.155.306-.237-.117-.154a.95.95 0 0 0-.707-.365m-12.65.232a.824.824 0 0 0-.815.828c0 .453.365.828.814.828.45 0 .815-.375.815-.828a.824.824 0 0 0-.815-.828zm5.518.285h1.242a4 4 0 0 0-.263.864v.002q-.075.354-.127.685h-.602a17 17 0 0 0-.236-1.5l-.002-.002q-.006-.024-.012-.049m-5.519.102a.43.43 0 0 1 .426.441.43.43 0 0 1-.426.442c-.22 0-.4-.171-.422-.397a.3.3 0 0 0 .215.092.31.31 0 0 0 .305-.316.32.32 0 0 0-.129-.258q.015-.003.031-.004m4.014 0c.235 0 .427.193.427.441a.433.433 0 0 1-.427.442.427.427 0 0 1-.422-.405.3.3 0 0 0 .256.145.31.31 0 0 0 .304-.317.31.31 0 0 0-.207-.298q.034-.007.069-.008m4.304.414a.865.865 0 0 0-.856.87c0 .478.382.874.856.874a.87.87 0 0 0 .857-.873.867.867 0 0 0-.857-.871m4.292 0a.867.867 0 0 0-.814 1.14 1.6 1.6 0 0 0-1.295-.652c-.846 0-1.546.65-1.568 1.463l-1.525.408.066.248 1.477-.394c.004.028.009.06.015.087l-1.418.817.131.222 1.367-.789c.235.552.801.94 1.455.94.66 0 1.233-.397 1.463-.957l1.398.806.13-.222-1.45-.836q.007-.039.012-.078l1.511.404.067-.248-1.563-.418a1.4 1.4 0 0 0-.107-.5c.157.186.39.303.648.303a.867.867 0 0 0 .856-.873.865.865 0 0 0-.856-.871m-10.567.043c.598 0 1.071.444 1.092.992h-.41q.011-.014.023-.033a.24.24 0 0 0 .025-.22c-.005-.016-.021-.102-.05-.196a.4.4 0 0 0-.078-.156.28.28 0 0 0-.225-.108.5.5 0 0 1-.129-.031c-.062-.021-.142-.05-.248-.05s-.188.029-.25.05a.5.5 0 0 1-.127.031.29.29 0 0 0-.225.108.4.4 0 0 0-.08.156c-.029.094-.043.18-.048.195a.24.24 0 0 0 .023.22q.012.02.025.034h-.41c.02-.548.494-.992 1.092-.992m6.275.344c.259 0 .47.211.47.484a.477.477 0 0 1-.47.486.47.47 0 0 1-.467-.453.32.32 0 0 0 .246.115c.18 0 .326-.15.326-.338a.34.34 0 0 0-.156-.289q.025-.004.05-.005zm4.292 0c.26 0 .469.211.469.484 0 .272-.21.486-.469.486a.477.477 0 0 1-.47-.486q0-.024.004-.047a.33.33 0 0 0 .312.24c.18 0 .326-.15.326-.338a.34.34 0 0 0-.256-.332 1 1 0 0 1 .084-.007m-10.567.24q.032 0 .125.031c.086.03.117.039.186.049.012.041.022.088.033.129a1.5 1.5 0 0 1-.168.138c-.038.028-.064.045-.088.061h-.176c-.024-.016-.052-.033-.09-.06a2 2 0 0 1-.168-.14l.034-.128c.107-.014.146-.04.185-.049a.5.5 0 0 1 .127-.031m8.458.25c.661 0 1.184.502 1.184 1.113 0 .156-.035.304-.096.44l-.002-.024-.022-.156a2 2 0 0 0-.04-.24l-.377.093.044.274a.24.24 0 0 1-.115.074.3.3 0 0 1-.168-.014c-.087-.03-.132-.063-.18-.094.057-.037.13-.084.198-.134.08-.06.16-.123.226-.19a.5.5 0 0 0 .092-.111.25.25 0 0 0 .026-.225c-.008-.019-.022-.112-.053-.21a.44.44 0 0 0-.084-.163.29.29 0 0 0-.23-.107.6.6 0 0 1-.14-.037c-.065-.022-.152-.055-.263-.055-.11 0-.195.032-.262.055a.6.6 0 0 1-.14.037.3.3 0 0 0-.23.107.4.4 0 0 0-.083.162c-.03.1-.045.192-.052.211a.25.25 0 0 0 .025.225.5.5 0 0 0 .09.111c.066.067.146.13.226.19.068.05.138.095.194.132a.6.6 0 0 1-.18.096.3.3 0 0 1-.17.014.24.24 0 0 1-.111-.076c.008-.09.026-.177.04-.272l-.376-.094c-.032.146-.045.286-.063.409a1.05 1.05 0 0 1-.09-.428c0-.611.521-1.113 1.182-1.113m0 .623q.04 0 .14.033c.066.025.169.052.206.055l.035.156c-.04.04-.112.1-.184.152-.095.07-.14.095-.197.131-.056-.036-.1-.061-.195-.13a1.2 1.2 0 0 1-.184-.157l.035-.152a1 1 0 0 0 .206-.055.5.5 0 0 1 .138-.033m-2.22.353a.43.43 0 0 0-.385.272l.656-.176a.42.42 0 0 0-.271-.096m4.333 0a.4.4 0 0 0-.22.07l.603.16a.43.43 0 0 0-.383-.23m-4.054.567-.607.162a.4.4 0 0 0 .125.113zm3.925.002.407.234a.4.4 0 0 0 .087-.102zm-1.986.234c.067.047.165.108.285.148a.7.7 0 0 0 .389.024.6.6 0 0 0 .232-.121 1.2 1.2 0 0 1-.904.394c-.356 0-.67-.145-.885-.375a.6.6 0 0 0 .207.102c.144.036.28.014.391-.024.12-.04.218-.1.285-.148m-9.524 1.61v.517h6.214v-.518zm3.619 1.292v.517H15.3v-.517z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/poe.svg��������������������������������������0000664�0000000�0000000�00000003661�14753064456�0024414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 12.513V8.36c0-.888-.717-1.608-1.603-1.615h-.013c-.498-.009-1.194-.123-1.688-.619-.44-.439-.584-1.172-.622-1.783l-.001.003q-.002-.022-.003-.044l-.001-.03a1.616 1.616 0 0 0-1.607-1.45H5.54a2 2 0 0 0-.164.008l-.055.009q-.051.005-.102.015l-.069.017q-.042.01-.083.022-.034.01-.07.024-.04.014-.08.03-.032.014-.063.029-.04.018-.08.038l-.059.034q-.038.022-.077.047l-.061.045q-.032.021-.065.05a1 1 0 0 0-.099.09q-.01.007-.018.016l-.014.016a2 2 0 0 0-.094.102q-.024.031-.046.062-.025.031-.047.063l-.045.074-.037.062-.036.076a.7.7 0 0 0-.058.143l-.027.075-.02.074a1 1 0 0 0-.018.078q-.008.044-.013.088-.006.033-.01.069-.004.033-.004.068l-.002-.002c-.036.61-.182 1.345-.62 1.784-.496.495-1.191.61-1.69.618h-.012q-.076 0-.147.007l-.072.012q-.043.005-.084.012l-.082.02-.072.018q-.039.014-.079.027-.036.012-.07.026-.036.015-.072.034a1 1 0 0 0-.072.033l-.068.04-.068.041-.072.054q-.028.02-.053.04a1.6 1.6 0 0 0-.226.227q-.021.026-.041.053l-.054.074q-.023.034-.041.067L.19 7.6q-.017.035-.033.07l-.034.073q-.014.035-.026.07-.016.04-.027.08-.01.035-.018.071l-.02.082-.012.084c-.003.024-.009.048-.01.072q-.01.079-.01.16v4.152c0 .888.717 1.609 1.603 1.616h.01c.5.008 1.196.123 1.69.618.43.43.577 1.143.618 1.746v4.13c0 .524.66.754.986.346l2.333-2.92h11.22c.861 0 1.563-.675 1.611-1.524l.001.003c.037-.61.183-1.344.622-1.783.495-.496 1.19-.61 1.689-.619h.012q.066 0 .132-.007l.022-.001A1.613 1.613 0 0 0 24 12.513m-3.85 1.69c-.502.503-1.215.613-1.717.619H5.566c-.501-.006-1.215-.114-1.717-.618-.408-.409-.565-1.117-.618-1.744V8.415c.052-.627.209-1.337.618-1.745.503-.503 1.216-.613 1.717-.619h12.867c.502.006 1.216.115 1.718.619.409.41.564 1.117.618 1.744v4.041c-.052.63-.209 1.339-.618 1.749zM8.424 7.99c-.892 0-1.615.723-1.615 1.615v1.616a1.615 1.615 0 1 0 3.23 0V9.604c0-.892-.723-1.615-1.615-1.615Zm7.154 0c-.893 0-1.616.723-1.616 1.615v1.616a1.615 1.615 0 1 0 3.231 0V9.604c0-.892-.723-1.615-1.615-1.615z"/></svg>�������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/poetry.svg�����������������������������������0000664�0000000�0000000�00000000401�14753064456�0025140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.604 0a19.14 19.14 0 0 1-5.268 13.213L2.396 0l13.583 13.583a19.15 19.15 0 0 1-13.583 5.624V0zm-1.911 17.297A24.46 24.46 0 0 1 7.189 24l-4.053-4.053a19.9 19.9 0 0 0 13.37-5.838z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pointy.svg�����������������������������������0000664�0000000�0000000�00000001121�14753064456�0025140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.076.025S4.52.234 2.833 2.751c-1.58 2.351-1.465 5.145-1.1 8.121C2.096 13.831 2.587 24 2.587 24c.002.003 11.235-11.526 11.23-11.506 1.75-1.805 2.408-4.468 2.395-5.961-.037-4.274-3.461-6.815-8.136-6.508m.777 10.774c-1.991 0-3.604-1.632-3.604-3.645 0-2.015 1.614-3.649 3.604-3.649s3.642 1.512 3.642 3.527c0 2.011-1.652 3.767-3.642 3.767m2.765-3.741a1.58 1.58 0 1 1-3.162 0 1.58 1.58 0 0 1 3.162 0m10.879 1.431s-2.325.158-3.644.57c-1.317.413-2.502 1.076-2.502 1.076s.495-.852.705-2.361c.207-1.511-.14-2.652-.14-2.652z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/polars.svg�����������������������������������0000664�0000000�0000000�00000014076�14753064456�0025133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.954 7.714h.434c.106 0 .193.087.193.197v3.726a.197.197 0 0 1-.193.193h-.434a.197.197 0 0 1-.197-.193V7.911c0-.11.087-.197.197-.197m1.213 1.085h.435c.105 0 .192.087.192.196v2.521a.197.197 0 0 1-.192.193h-.435a.197.197 0 0 1-.197-.193v-2.52c0-.114.087-.197.197-.197m1.206 1.383h.43c.11 0 .197.087.197.197v.718a.197.197 0 0 1-.197.192h-.43a.197.197 0 0 1-.197-.196v-.718a.19.19 0 0 1 .197-.19zm-3.629-2.827h.431a.197.197 0 0 1 .197.196v.719a.197.197 0 0 1-.197.189h-.435a.197.197 0 0 1-.196-.19v-.718a.197.197 0 0 1 .196-.196Zm0 1.444h.431a.197.197 0 0 1 .197.196v.658a.197.197 0 0 1-.197.193h-.435a.197.197 0 0 1-.196-.193v-.658a.197.197 0 0 1 .196-.196zm0 1.387h.431a.197.197 0 0 1 .197.193v1.08a.197.197 0 0 1-.197.193h-.435a.197.197 0 0 1-.196-.192v-1.081a.197.197 0 0 1 .196-.193zm-1.24-3.133h.435a.197.197 0 0 1 .193.196v1.138a.197.197 0 0 1-.193.196h-.434a.197.197 0 0 1-.197-.196V7.249a.197.197 0 0 1 .197-.196Zm0 1.927h.435a.197.197 0 0 1 .193.197v2.162a.197.197 0 0 1-.193.192h-.434a.197.197 0 0 1-.197-.192V9.177a.197.197 0 0 1 .197-.197ZM17.3 6.694h.435a.197.197 0 0 1 .196.192v4.574a.197.197 0 0 1-.196.192H17.3a.197.197 0 0 1-.197-.192V6.886a.197.197 0 0 1 .197-.192m0 10.174h.435a.197.197 0 0 1 .196.197v.718a.197.197 0 0 1-.196.192H17.3a.197.197 0 0 1-.197-.196v-.718a.197.197 0 0 1 .197-.19zm-1.24-.964h.435a.197.197 0 0 1 .196.197v1.678a.197.197 0 0 1-.196.196h-.431a.197.197 0 0 1-.193-.196V16.1a.197.197 0 0 1 .193-.197zm0-5.117h.435a.197.197 0 0 1 .196.196v1.134a.197.197 0 0 1-.196.2h-.431a.197.197 0 0 1-.193-.196v-1.138a.197.197 0 0 1 .193-.196zm0-4.396h.435a.197.197 0 0 1 .196.197v3.605a.197.197 0 0 1-.196.197h-.431a.197.197 0 0 1-.193-.197V6.588a.197.197 0 0 1 .193-.197zm-1.22.06h.434a.197.197 0 0 1 .197.197V8.75a.197.197 0 0 1-.197.192h-.435a.197.197 0 0 1-.192-.192V6.648a.197.197 0 0 1 .192-.196zm0 2.892h.434a.197.197 0 0 1 .197.193v6.138a.197.197 0 0 1-.197.196h-.435a.197.197 0 0 1-.192-.196V9.536a.197.197 0 0 1 .192-.193Zm0 6.924h.434a.197.197 0 0 1 .197.193v1.14a.197.197 0 0 1-.197.193h-.435a.197.197 0 0 1-.192-.193v-1.14a.197.197 0 0 1 .192-.193zm-1.21-9.638h.43a.197.197 0 0 1 .197.2v4.925a.197.197 0 0 1-.196.197h-.435a.197.197 0 0 1-.193-.197V6.83a.197.197 0 0 1 .193-.197Zm0 5.722h.43a.197.197 0 0 1 .197.197v3.908a.197.197 0 0 1-.196.197h-.435a.197.197 0 0 1-.193-.197v-3.908a.197.197 0 0 1 .193-.197Zm-1.217-5.9h.435a.197.197 0 0 1 .192.197v3.179a.197.197 0 0 1-.192.196h-.435a.197.197 0 0 1-.197-.196V6.652a.197.197 0 0 1 .197-.197zm0 3.977h.435a.197.197 0 0 1 .192.192v2.646a.197.197 0 0 1-.192.193h-.435a.197.197 0 0 1-.197-.193V10.62a.197.197 0 0 1 .197-.192m0 3.428h.435a.197.197 0 0 1 .192.196v1.198a.197.197 0 0 1-.192.197h-.435a.197.197 0 0 1-.197-.197v-1.198a.197.197 0 0 1 .197-.196m-1.22-7.522h.434a.197.197 0 0 1 .196.19v1.443a.197.197 0 0 1-.196.193h-.439a.197.197 0 0 1-.196-.193v-1.44a.197.197 0 0 1 .196-.196zm0 2.227h.434a.197.197 0 0 1 .196.192v5.534a.197.197 0 0 1-.196.196h-.439a.197.197 0 0 1-.196-.196V8.753a.197.197 0 0 1 .196-.192Zm-1.225 8.182h.434a.197.197 0 0 1 .197.197v.835a.197.197 0 0 1-.197.197h-.434a.197.197 0 0 1-.193-.197v-.835a.197.197 0 0 1 .193-.197m0-10.658h.434a.197.197 0 0 1 .197.197v5.113a.197.197 0 0 1-.197.193h-.434a.197.197 0 0 1-.193-.193v-5.11a.197.197 0 0 1 .193-.196Zm0 5.904h.434a.197.197 0 0 1 .197.192v2.102a.197.197 0 0 1-.197.196h-.434a.197.197 0 0 1-.193-.196V12.18a.197.197 0 0 1 .193-.192zm-1.221 3.855h.434a.197.197 0 0 1 .193.189v1.742a.197.197 0 0 1-.193.197h-.434a.197.197 0 0 1-.197-.197v-1.738a.197.197 0 0 1 .197-.197zm0-6.025h.434a.197.197 0 0 1 .193.197v4.27a.197.197 0 0 1-.193.193h-.434a.197.197 0 0 1-.197-.196v-4.267a.197.197 0 0 1 .197-.19Zm0-3.794h.434a.197.197 0 0 1 .193.196v3.005a.197.197 0 0 1-.193.196h-.434a.197.197 0 0 1-.197-.196V6.22a.197.197 0 0 1 .197-.196Zm-1.221.06h.435a.197.197 0 0 1 .196.197V7a.197.197 0 0 1-.196.192h-.435A.197.197 0 0 1 7.332 7v-.718a.197.197 0 0 1 .193-.197Zm0 1.448h.435a.197.197 0 0 1 .196.192v5.541a.197.197 0 0 1-.196.193h-.435a.197.197 0 0 1-.193-.193V7.73a.197.197 0 0 1 .193-.193Zm0 6.323h.435a.197.197 0 0 1 .196.193v1.5a.197.197 0 0 1-.196.197h-.435a.197.197 0 0 1-.193-.197v-1.5a.197.197 0 0 1 .193-.193m0 2.286h.435a.197.197 0 0 1 .196.197v.956a.197.197 0 0 1-.196.197h-.435a.197.197 0 0 1-.193-.197v-.956a.197.197 0 0 1 .193-.197M6.305 6.57h.434a.197.197 0 0 1 .193.196v3.606a.197.197 0 0 1-.193.193h-.435a.197.197 0 0 1-.196-.193V6.765a.197.197 0 0 1 .196-.196Zm0 4.395h.434a.197.197 0 0 1 .193.193v.84a.197.197 0 0 1-.193.196h-.435a.197.197 0 0 1-.196-.197v-.839a.197.197 0 0 1 .196-.193Zm0 1.505h.43a.197.197 0 0 1 .197.196v3.727a.197.197 0 0 1-.197.196h-.43a.197.197 0 0 1-.197-.196v-3.727a.197.197 0 0 1 .196-.196ZM5.018 9.577h.56a.136.136 0 0 1 .132.136v2.763a.136.136 0 0 1-.132.136h-.556a.136.136 0 0 1-.136-.136V9.717a.136.136 0 0 1 .136-.14zm0 3.432h.56a.136.136 0 0 1 .132.136v2.483a.136.136 0 0 1-.132.136h-.556a.136.136 0 0 1-.136-.136v-2.475a.136.136 0 0 1 .136-.136zm0-5.96h.56a.136.136 0 0 1 .132.136v1.92a.136.136 0 0 1-.132.136h-.556a.136.136 0 0 1-.136-.136v-1.92a.136.136 0 0 1 .136-.136Zm-1.217.597h.552a.136.136 0 0 1 .136.132v2.884a.136.136 0 0 1-.136.132h-.552a.136.136 0 0 1-.136-.132V7.778a.136.136 0 0 1 .136-.132m0 3.5h.552a.136.136 0 0 1 .136.136v3.904a.136.136 0 0 1-.136.136h-.556a.136.136 0 0 1-.132-.136v-3.9a.136.136 0 0 1 .132-.136Zm-1.168 5.722h.435a.197.197 0 0 1 .197.197v.718a.197.197 0 0 1-.197.192h-.43a.197.197 0 0 1-.194-.196v-.718a.197.197 0 0 1 .193-.19zm-.06-2.562h.563a.136.136 0 0 1 .136.136v1.262a.136.136 0 0 1-.136.136h-.56a.136.136 0 0 1-.132-.136v-1.262a.136.136 0 0 1 .133-.136zm0-4.725h.563a.136.136 0 0 1 .136.132v4.075a.136.136 0 0 1-.136.136h-.56a.136.136 0 0 1-.132-.136V9.713a.136.136 0 0 1 .133-.132Zm-1.213 5.95h.555a.136.136 0 0 1 .136.135v2.173a.136.136 0 0 1-.136.136h-.56a.136.136 0 0 1-.135-.136v-2.173a.136.136 0 0 1 .136-.136zm.06-3.225h.431a.197.197 0 0 1 .197.193v2.506a.197.197 0 0 1-.197.196h-.435a.197.197 0 0 1-.196-.196v-2.506a.197.197 0 0 1 .196-.193ZM.14 15.001h.552c.075 0 .136.06.136.136v2.052c0 .076-.06.136-.136.136H.136A.136.136 0 0 1 0 17.19v-2.052c0-.076.06-.136.136-.136z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/polestar.svg���������������������������������0000664�0000000�0000000�00000000273�14753064456�0025456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.549 0-.457.555v11.191h11.19l.554-.457-9.4-1.89zM.719 12.26l-.555.457L9.563 14.6l1.886 9.4.457-.555V12.26Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/polkadot.svg���������������������������������0000664�0000000�0000000�00000001305�14753064456�0025437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c2.39 0 4.328 1.127 4.328 2.517S14.39 5.034 12 5.034 7.672 3.907 7.672 2.517 9.61 0 12 0m0 18.966c2.39 0 4.328 1.127 4.328 2.517S14.39 24 12 24s-4.328-1.127-4.328-2.517S9.61 18.966 12 18.966M1.606 6C2.8 3.93 4.747 2.816 5.952 3.511s1.212 2.937.017 5.007-3.141 3.182-4.345 2.489S.411 8.07 1.606 6m16.427 9.483c1.2-2.07 3.139-3.184 4.343-2.489s1.211 2.936.016 5.006-3.14 3.185-4.344 2.49-1.211-2.937-.015-5.007m-16.409-2.49c1.205-.7 3.15.419 4.346 2.489s1.187 4.311-.018 5.007S2.8 20.07 1.607 18s-1.187-4.311.017-5.007m16.425-9.481c1.2-.695 3.149.419 4.344 2.489s1.188 4.311-.016 5.007-3.148-.42-4.343-2.49-1.188-4.311.015-5.006"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/poly.svg�������������������������������������0000664�0000000�0000000�00000002767�14753064456�0024622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.569 16.102c-2.244 0-4.064-1.834-4.064-4.096s1.82-4.095 4.064-4.095 4.063 1.833 4.063 4.095-1.82 4.096-4.063 4.096m11.019-5.671-4.296 2.5.02-.118.012-.104.014-.173v-.013l.001-.012.009-.211.001-.232-.003-.168-.01-.24-.016-.22-.024-.239-.016-.13-.034-.233-.04-.228-.047-.223-.052-.219-.037-.135-.062-.211-.07-.207-.061-.168-.08-.2-.087-.195-.092-.19-.099-.189-.105-.185-.01-.015-.113-.183-.12-.18-.127-.176-.135-.175-.143-.172-.016-.02-.152-.17-.16-.168-.168-.167-.179-.166-.014-.013-.189-.165-.201-.166-.202-.158-.226-.167-.245-.172-.183-.124-.28-.181-.316-.197-.105-.063-.388-.23-.096-.057-.244-.142L1.705 0v3.175l4.296 2.5-.11.041-.096.042-.156.074-.012.006-.01.006-.186.098-.2.114-.142.087-.202.13-.181.124-.193.14-.106.08-.182.145-.175.149-.168.152-.162.155-.098.1-.15.16-.143.163-.114.14-.131.169-.125.172-.117.176-.112.18-.107.185-.01.017-.099.19-.094.194-.088.199-.082.204-.077.211-.009.025-.07.217-.065.223-.06.23-.053.24-.004.02-.047.246-.042.258-.034.256-.031.281-.026.299-.014.223-.016.334-.01.374-.003.125-.004.452V24l2.727-1.588v-5l.092.077.083.063.143.099.01.006.007.005.178.114.2.118.144.08.214.112.195.096.219.1.114.048.218.087.217.08.217.071.215.064.132.035.214.051.214.044.173.03.213.03.212.022.206.015.213.008h.227l.215-.008.216-.015.216-.022.22-.031.221-.039.02-.004.224-.047.226-.055.23-.065.233-.074.013-.004.238-.083.245-.093.233-.096.259-.115.272-.128.194-.097.298-.154.33-.18.102-.057.394-.225.094-.054.244-.142 8.697-5.06z"/></svg>���������mkdocs-material-9.6.4/material/templates/.icons/simple/polygon.svg����������������������������������0000664�0000000�0000000�00000001052�14753064456�0025310�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.82 16.342 5.692-3.287A.98.98 0 0 0 24 12.21V5.635a.98.98 0 0 0-.488-.846l-5.693-3.286a.98.98 0 0 0-.977 0L11.15 4.789a.98.98 0 0 0-.489.846v11.747L6.67 19.686l-3.992-2.304v-4.61l3.992-2.304 2.633 1.52V8.896L7.158 7.658a.98.98 0 0 0-.977 0L.488 10.945a.98.98 0 0 0-.488.846v6.573a.98.98 0 0 0 .488.847l5.693 3.286a.98.98 0 0 0 .977 0l5.692-3.286a.98.98 0 0 0 .489-.846V6.618l.072-.041 3.92-2.263 3.99 2.305v4.609l-3.99 2.304-2.63-1.517v3.092l2.14 1.236a.98.98 0 0 0 .978 0z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/polymerproject.svg���������������������������0000664�0000000�0000000�00000000335�14753064456�0026702�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.4 3.686 7.2 16.16 4.8 12l4.8-8.314H4.8L0 12l2.4 4.159 2.4 4.155h4.8l7.2-12.469L19.2 12l-4.8 8.314h4.8l2.4-4.155L24 12l-2.4-4.155-2.4-4.159Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/polywork.svg���������������������������������0000664�0000000�0000000�00000001071�14753064456�0025510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.125 0H4.875A4.865 4.865 0 0 0 0 4.875v14.25C0 21.825 2.175 24 4.875 24h6.6c2.7 0 4.875-2.175 4.875-4.875V16.65h2.775c2.7 0 4.875-2.175 4.875-4.875v-6.9C24 2.175 21.825 0 19.125 0M16.5 1.275h2.625a3.6 3.6 0 0 1 3.6 3.6v2.7H16.5zM15.075 9v6.45H8.85V9zM8.85 1.2h6.225v6.375H8.85zM1.275 4.8a3.6 3.6 0 0 1 3.6-3.6H7.5v6.375H1.275zM7.5 9v6.45H1.2V9zm0 13.725H4.8a3.6 3.6 0 0 1-3.6-3.6V16.8h6.3zm7.575-3.525a3.6 3.6 0 0 1-3.6 3.6H8.85v-5.925h6.225zm7.65-7.35a3.6 3.6 0 0 1-3.6 3.6H16.5V9h6.225z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pond5.svg������������������������������������0000664�0000000�0000000�00000001663�14753064456�0024656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.504 11.385h.755c.92 0 1.747.286 1.741 1.388 0 1.047-.932 1.412-1.717 1.412-.993 0-1.75-.359-1.754-1.37v-.14h.944v.14c0 .384.442.53.798.53.233 0 .784-.085.784-.572.006-.475-.508-.572-.797-.572h-1.644V9.875h3.146v.853h-2.256Zm-4.167 2.745h-1.76V9.87h1.76c1.478 0 2.134.985 2.134 2.1 0 1.113-.632 2.16-2.134 2.16m0-3.402h-.816v2.526h.816c.932 0 1.19-.682 1.19-1.297s-.295-1.23-1.19-1.23zm-6.055 1.14v2.262h-.955V9.81l.134-.023 2.598 2.33V9.869h.957v4.333l-.1.017zm-4.431 2.367c-1.374 0-2.319-.848-2.319-2.235s.945-2.235 2.319-2.235c1.373 0 2.318.847 2.318 2.235s-.944 2.234-2.318 2.234zm0-3.618c-.816 0-1.38.61-1.38 1.382 0 .798.564 1.376 1.38 1.376.834 0 1.38-.584 1.38-1.376 0-.779-.546-1.382-1.38-1.382m-4.827 2.308h-.587v-.87h.587c.46 0 .686-.299.686-.64 0-.34-.232-.645-.686-.645H.957v3.36H0V9.87h2.024c1.097 0 1.642.705 1.642 1.527 0 .852-.552 1.516-1.643 1.528z"/></svg>�����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/popos.svg������������������������������������0000664�0000000�0000000�00000002400�14753064456�0024757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.372 0 0 5.373 0 12c0 6.628 5.372 12 12 12 6.627 0 12-5.372 12-12 0-6.627-5.373-12-12-12M9.64 2.918c1.091-.026 1.548.229 2.182.635a4.46 4.46 0 0 1 1.902 2.764c.254 1.141.178 2.029-.127 2.664v.05c-.609 1.294-1.622 2.335-3.043 2.842l1.217 3.172c.228.583.432 1.192.254 1.75-.177.558-.989.736-1.572.127-1.116-1.192-4.871-8.702-5.15-9.26s-.584-1.016-.584-1.574c.026-.837 1.318-1.7 1.953-2.131.634-.431 1.877-1.014 2.968-1.039m-.996 2.311c-.789.022-.358 1.669-.197 2.129.178.507.661 1.572 1.193 2.105.127.127.254.229.407.254.152.027.457-.127.584-.33a.93.93 0 0 0 .15-.559 3.2 3.2 0 0 0-.049-1.216c-.228-.787-.711-1.548-1.346-2.055-.127-.102-.279-.229-.457-.279a.9.9 0 0 0-.285-.049m8.414 2.027a2.28 2.28 0 0 1 1.588.636c.305.279.33.582.229.963-.102.38-.457 1.194-.736 1.777l-.709 1.344c-1.37 2.435-1.649 2.689-2.03 2.537-.456-.178-.304-2.614.127-5.582.127-.812.329-1.217.557-1.42.171-.152.6-.248.975-.254zm-1.859 8.332c.554.011.789.7.656 1.232a.86.86 0 0 1-.379.559c-.203.127-.685.127-.965-.102-.278-.228-.33-.609-.254-.914.076-.304.331-.635.686-.736a.8.8 0 0 1 .256-.039m-8.604 2.805h10.809c.52 0 .938.419.938.939v.074c0 .52-.418.94-.938.94H6.595a.936.936 0 0 1-.937-.94v-.074c0-.52.417-.939.937-.939"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/porkbun.svg����������������������������������0000664�0000000�0000000�00000002141�14753064456�0025301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A11.97 11.97 0 0 0 .018 11.982C.018 18.612 5.37 24 12 24s11.982-5.353 11.982-11.982C23.982 5.388 18.63 0 12 0M5.832 5.885c1.064.248 2.092.638 3.014 1.135-1.1.531-1.987 1.382-2.66 2.375a3.4 3.4 0 0 1-.674-2.057c0-.532.107-.992.32-1.453m12.336 0c.213.425.32.921.32 1.453 0 .78-.248 1.49-.674 2.057-.673-.993-1.596-1.844-2.66-2.375a10 10 0 0 1 3.014-1.135m-6.072.81a6.39 6.39 0 0 1 6.32 6.457v3.829a1.18 1.18 0 0 1-1.17 1.17 1.18 1.18 0 0 1-1.17-1.17v-.958H7.852v.957a1.18 1.18 0 0 1-1.17 1.17 1.18 1.18 0 0 1-1.17-1.17v-3.65c0-3.51 2.73-6.489 6.24-6.63q.173-.007.344-.005m1.5 3.8a.94.94 0 0 0-.922.921c0 .248.07.424.213.602.141.212.353.354.566.46-.142.071-.319.143-.496.143-.213 0-.39.176-.39.389s.177.39.39.39h.178c.602 0 1.134-.355 1.383-.851.39-.142.709-.39.921-.744.071-.107.034-.249-.037-.213-.106-.036-.212-.034-.283.072a1.04 1.04 0 0 1-.426.354v-.143c0-.39-.14-.709-.353-.992a.88.88 0 0 0-.744-.389m0 .53c.212 0 .353.141.388.354v.178c0 .177-.034.354-.105.496a1.06 1.06 0 0 1-.604-.426c-.035-.071-.07-.14-.07-.211 0-.24.206-.39.39-.39"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/porsche.svg����������������������������������0000664�0000000�0000000�00000051602�14753064456�0025272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.972 0A26 26 0 0 0 9.93.091a28 28 0 0 0-4.248.685 24 24 0 0 0-2.975.966l-.06.022s.118 7.243.21 10.831a10 10 0 0 0 .569 3.098 15 15 0 0 0 1.622 3.214A12.9 12.9 0 0 0 7.56 21.66a11 11 0 0 0 1.192.873 15 15 0 0 0 2.038 1.031c.233.098.436.192.62.255A5 5 0 0 0 12 24a5 5 0 0 0 .59-.182c.182-.063.387-.156.62-.255a15 15 0 0 0 2.037-1.031 11 11 0 0 0 1.194-.873 12.9 12.9 0 0 0 2.511-2.752 15 15 0 0 0 1.622-3.214 10 10 0 0 0 .57-3.098c.091-3.588.21-10.827.21-10.827l-.057-.026a24 24 0 0 0-2.976-.966 28 28 0 0 0-4.248-.684A26 26 0 0 0 12.031 0zm0 .361h.057c.679.008 1.288.03 1.963.09a26.6 26.6 0 0 1 4.084.663 22.5 22.5 0 0 1 2.861.937l.057.025-.038 2.274-.019-.01a23 23 0 0 0-2.86-.937 26.6 26.6 0 0 0-4.085-.662c-.675-.06-1.281-.1-1.96-.108h-.058c-.679.009-1.29.048-1.965.108a26.6 26.6 0 0 0-4.084.665 23 23 0 0 0-2.861.938l-.02.01-.038-2.281.058-.022a22.5 22.5 0 0 1 2.86-.937A26.6 26.6 0 0 1 10.01.45c.675-.06 1.284-.08 1.963-.089zm.288.216a17 17 0 0 0-.902.008c-.121.005-.288.109-.29.23l-.007.648c-.002.132.172.236.305.239.462.01.87.002 1.318.03.033.003.062.023.062.056l-.003.13a.042.042 0 0 1-.045.046c-.521 0-1.066-.025-1.593.017-.028.002-.027-.005-.028.023l-.024.384-.002.03a16 16 0 0 1 1.882 0 .32.32 0 0 0 .305-.262l.006-.627c0-.129-.158-.224-.261-.23-.442-.028-.945-.013-1.394-.025a.046.046 0 0 1-.044-.05l.009-.145c0-.028.019-.036.047-.037.444-.016 1.107.005 1.562.019a.07.07 0 0 0 .06-.07V.674c0-.017-.032-.067-.063-.068V.605a33 33 0 0 0-.9-.028m-1.88.064c-.423.008-1.341.125-1.862.19L8.515 2.64v.023l.47-.06a.01.01 0 0 0 .01-.006.01.01 0 0 0 .003-.01v-.523l.947-.102c.083-.015.18.046.256.169a.9.9 0 0 1 .114.339l.467-.035c.01 0 .03 0 .028-.01a1 1 0 0 0-.307-.663.32.32 0 0 0 .197-.31 4 4 0 0 0-.022-.564.32.32 0 0 0-.3-.247zm3.59.019a.404.404 0 0 0-.413.332l-.01 1.195a.31.31 0 0 0 .24.289c.61.057 1.21.112 1.89.215.011 0 .032-.007.032-.017v-.416c0-.009-.02-.028-.027-.03-.454-.057-1.053-.137-1.589-.193a.08.08 0 0 1-.058-.07v-.812c0-.034.05-.052.084-.05.529.044 1.056.14 1.584.197.014.002.036-.007.037-.021l.01-.382a.04.04 0 0 0-.029-.033 36 36 0 0 0-1.75-.204zm1.98.237c-.012 0-.022.014-.022.025-.006.274-.045 1.457-.053 1.772v.027c.155.027.326.048.453.074.014.002.035-.008.035-.022-.002-.207 0-.448-.004-.636 0-.013.006-.014.02-.012a31 31 0 0 1 1.102.22c.008 0 .052.007.052.03-.003.217-.007.4-.013.617a.04.04 0 0 0 .027.04q.216.05.42.1c.037.008.043.001.044-.012.022-.451.03-1.174.036-1.784 0-.008-.003-.02-.01-.022-.153-.035-.297-.072-.453-.105-.014-.003-.022.02-.023.035-.015.223-.009.43-.026.652 0 .008 0 .012-.009.01-.37-.076-.765-.158-1.132-.227-.01-.002-.006-.02-.005-.031l.003-.653a.03.03 0 0 0-.026-.03zM7.934.92h-.037c-.543.086-1.089.201-1.64.32a.5.5 0 0 0-.23.143.32.32 0 0 0-.102.205l.004 1.118a.43.43 0 0 0 .106.266.24.24 0 0 0 .204.11 39 39 0 0 1 1.633-.323.5.5 0 0 0 .268-.166.36.36 0 0 0 .098-.23L8.236 1.2a.28.28 0 0 0-.11-.198.3.3 0 0 0-.191-.08zm2.157.197a.076.076 0 0 1 .08.069l.003.189a.17.17 0 0 1-.14.166l-1.062.104-.009-.008V1.23l.009-.004 1.111-.108zm-2.52.29a.2.2 0 0 1 .078.022.12.12 0 0 1 .054.106l-.009.704a.13.13 0 0 1-.049.105.3.3 0 0 1-.12.047 61 61 0 0 1-.997.19.1.1 0 0 1-.088-.017.13.13 0 0 1-.03-.1v-.726a.14.14 0 0 1 .04-.097.24.24 0 0 1 .12-.06c.29-.054.67-.129.968-.172zm10.81 0-.001.001c-.008 0-.008.012-.008.019-.014.606-.03 1.167-.035 1.773 0 .013.006.03.018.033a22 22 0 0 1 2.158.7c.032.011.031-.013.031-.022.003-.138.01-.278.003-.416a.04.04 0 0 0-.025-.033 17 17 0 0 0-1.66-.541.03.03 0 0 1-.019-.026l.008-.18c0-.008.014-.01.022-.008a22 22 0 0 1 1.67.542c.01.003.01-.01.01-.019a5 5 0 0 0 0-.468.03.03 0 0 0-.02-.026 22 22 0 0 0-1.638-.523c-.008-.002-.018-.01-.018-.018v-.192c0-.008.013-.013.021-.01.564.144 1.184.36 1.615.519.038.014.06.008.06-.027 0-.157.006-.168-.002-.324-.002-.02-.004-.04-.022-.047a21 21 0 0 0-2.169-.707zm-12.97.064a.4.4 0 0 0-.084.009c-.65.166-1.303.414-1.956.652a.06.06 0 0 0-.03.052V3.65l.003.33s.471-.177.573-.21c.013-.004.013-.017.013-.031l-.01-.52c0-.015.002-.037.016-.04l1.625-.502a.3.3 0 0 0 .138-.101.24.24 0 0 0 .052-.156l-.017-.683a.27.27 0 0 0-.119-.197.37.37 0 0 0-.204-.068zm-.286.496c.036-.01.07.031.072.063a2 2 0 0 1 .012.25c-.001.045-.066.097-.11.11l-1.184.386c-.011.004-.031 0-.031-.012l.002-.358c0-.017.02-.031.036-.036a11 11 0 0 1 1.203-.403m6.967.981c.653.01 1.246.03 1.9.088a26.6 26.6 0 0 1 4.083.663 22.5 22.5 0 0 1 2.861.937l.014.007-.007.448h-8.851zm-.317.002-.001 4.618H8.827c-.043-.004-.015-.023.015-.052a1.7 1.7 0 0 1 .715-.312c.022-.002.028-.014-.003-.054a.9.9 0 0 0-.93-.212.99.99 0 0 0-.624.603.04.04 0 0 1-.04.031 7 7 0 0 1-.47.013c-.025 0-.037-.032-.035-.056a.74.74 0 0 1 .343-.484 1.1 1.1 0 0 1 .519-.178.04.04 0 0 0 .02-.063.5.5 0 0 0-.105-.093.76.76 0 0 0-.504-.077 1.05 1.05 0 0 0-.948.964c-.01.06.006.074-.053.094-.112.038-.322.064-.434.088-.02.003-.05-.043-.045-.063a1.3 1.3 0 0 1 .244-.522 1 1 0 0 1 .342-.291c.026-.013.05-.044.026-.064-.253-.22-.771.012-.98.241a1.37 1.37 0 0 0-.275.91c0 .016.014.041 0 .047a5 5 0 0 1-.4.15c-.012.003-.014-.028-.016-.04a.93.93 0 0 1 .147-.677.66.66 0 0 1 .244-.241q.014-.011 0-.028c-.115-.149-.569-.042-.708.094-.32.312-.297.615-.312 1.097-.001.023-.03.111-.056.123a.6.6 0 0 1-.184.07c-.021.006-.023.014-.028-.007a.39.39 0 0 0-.57-.222.356.356 0 0 0-.077.532c.015.017.02.034-.003.041a.42.42 0 0 0-.275.534.34.34 0 0 0 .296.21.63.63 0 0 0 .37-.108.043.043 0 0 1 .06.01.386.386 0 0 0 .531.124c.162-.107.234-.273.114-.559-.007-.016.02-.046.034-.054a6.6 6.6 0 0 1 3.144-.88 1.8 1.8 0 0 1 .456.101l.023.008.002.941a.2.2 0 0 1-.034.025 1 1 0 0 0-.432.55c-.004.017-.006.021-.035.024-.193.019-.399.047-.591.062-.011.002-.032-.019-.028-.03a1.87 1.87 0 0 1 .725-.908.06.06 0 0 0 .01-.067.4.4 0 0 0-.168-.093 1.09 1.09 0 0 0-.895.362 1.42 1.42 0 0 0-.312.875c-.001.022.003.058-.019.065-.124.039-.261.074-.39.11-.015.004-.035-.011-.038-.027a1.01 1.01 0 0 1 .486-1.03c.051-.04-.038-.102-.102-.102a.96.96 0 0 0-.913.53 1.3 1.3 0 0 0-.03.793c.003.023.019.063-.006.069-.079.019-.265.09-.323.108q-.03.01-.047-.03a1.04 1.04 0 0 1-.021-.488 1.1 1.1 0 0 1 .268-.493c.008-.01.011-.032 0-.037a.54.54 0 0 0-.378-.025.74.74 0 0 0-.477.38c-.159.297-.118.583.051 1.005.008.02.018.058 0 .07l-.137.08c-.017.013-.032.002-.044-.015-.055-.078-.124-.202-.21-.24a.42.42 0 0 0-.428.035.41.41 0 0 0-.12.431 1 1 0 0 0 .1.152c.01.014-.001.036-.013.047-.059.052-.14.09-.188.14a.395.395 0 0 0-.01.471.365.365 0 0 0 .45.123 2 2 0 0 0 .232-.122c.027-.018.045-.051.07-.025a.55.55 0 0 0 .224.153.43.43 0 0 0 .354-.062.305.305 0 0 0 .168-.338.9.9 0 0 0-.143-.27c-.033-.035-.035-.033 0-.054a7.4 7.4 0 0 1 1.66-.724 5 5 0 0 1 1.69-.207h.046l.003 1.949H3.206c-.054-2.133-.116-5.51-.156-7.836l.014-.007a22.5 22.5 0 0 1 2.86-.937 26.6 26.6 0 0 1 4.084-.663 23 23 0 0 1 1.768-.086zm-3.088.816a1.24 1.24 0 0 0-.693.232c-.286.188-.456.773-.49.982a.044.044 0 0 1-.04.036 6 6 0 0 0-.676.125c-.007.001-.012-.01-.012-.017a1 1 0 0 1 .258-.59 3.5 3.5 0 0 1 .493-.396c.013-.011.004-.045-.012-.051a1.03 1.03 0 0 0-.797.012 1.13 1.13 0 0 0-.675.867 2 2 0 0 0-.029.41c.002.017-.03.018-.045.023-.246.077-.504.167-.71.236-.01.004-.039.002-.039-.01a1.17 1.17 0 0 1 .175-.655c.12-.195.343-.305.505-.469.011-.012.028-.044.011-.051-.41-.165-.797.004-1.124.375a1.4 1.4 0 0 0-.2 1.124c.009.036 0 .075-.019.083a2 2 0 0 1-.23.089.025.025 0 0 1-.033-.02c-.093-.296-.44-.238-.597-.148a.36.36 0 0 0-.139.489.03.03 0 0 1-.01.044.44.44 0 0 0-.205.596.35.35 0 0 0 .428.137 1.2 1.2 0 0 0 .246-.129.03.03 0 0 1 .03.004.393.393 0 0 0 .566.08c.115-.082.16-.096.204-.244a.4.4 0 0 0-.09-.3c-.012-.01-.001-.04.013-.047A9.7 9.7 0 0 1 8.947 5.51a2.35 2.35 0 0 1 1.446.553.07.07 0 0 0 .062.031.1.1 0 0 0 .054-.056.66.66 0 0 0-.204-.678 1.2 1.2 0 0 0-.612-.344c-.012-.003-.02-.029-.01-.037a1 1 0 0 1 .335-.22 3.6 3.6 0 0 1 .605-.05c.014-.001.035-.015.03-.028a.61.61 0 0 0-.527-.4 1.3 1.3 0 0 0-.693.1 1.12 1.12 0 0 0-.5.553.04.04 0 0 1-.032.02 12 12 0 0 0-.594-.007c-.014 0-.035 0-.035-.014a.94.94 0 0 1 .255-.517 2 2 0 0 1 .68-.386c.019-.006.04-.036.029-.051a.55.55 0 0 0-.201-.17 1.2 1.2 0 0 0-.347-.041zm3.405 1.607h8.845c-.012.686-.025 1.433-.04 2.195h-8.805zM8.681 7.801l6.666.003a.016.016 0 0 1 .017.013l-.002 5.138a2.4 2.4 0 0 1-.143.764 3.33 3.33 0 0 1-1.44 1.725 3.47 3.47 0 0 1-1.74.491 3.5 3.5 0 0 1-2.26-.86 3.08 3.08 0 0 1-1.105-2.31L8.667 7.82c0-.013.001-.019.014-.019m6.994.086h5.217c-.012.645-.025 1.296-.034 1.926h-5.183V8.318zm-6.839.071c-.013 0-.014.005-.014.018l.007 4.753a2.97 2.97 0 0 0 1.054 2.225 3.33 3.33 0 0 0 2.153.827 3.3 3.3 0 0 0 1.66-.473 3.2 3.2 0 0 0 1.374-1.66 2.3 2.3 0 0 0 .136-.734l.002-4.94a.015.015 0 0 0-.016-.014zm4.436.304za.11.11 0 0 1 .087.071l.242.715a.08.08 0 0 1-.003.07.07.07 0 0 1-.054.024.065.065 0 0 1-.063-.044l-.038-.125h-.33l-.036.128c-.01.04-.04.044-.071.044a.06.06 0 0 1-.044-.028.06.06 0 0 1-.01-.052l.232-.728a.1.1 0 0 1 .087-.075m-.763.007h.023a.23.23 0 0 1 .235.157.046.046 0 0 1-.031.059.053.053 0 0 1-.07-.02.17.17 0 0 0-.132-.09.15.15 0 0 0-.133.1.5.5 0 0 0-.055.222.5.5 0 0 0 .046.228.16.16 0 0 0 .154.102.23.23 0 0 0 .166-.243v-.039h-.135a.057.057 0 0 1-.059-.063c0-.023.007-.05.059-.05h.192c.064 0 .073.048.073.09a1 1 0 0 1-.011.152.4.4 0 0 1-.15.236.3.3 0 0 1-.15.043.26.26 0 0 1-.227-.145.6.6 0 0 1-.073-.31.6.6 0 0 1 .08-.304.23.23 0 0 1 .198-.125m-2.988.002h.004c.183.002.243.111.243.15 0 .035-.061.08-.095.039a.2.2 0 0 0-.157-.068.14.14 0 0 0-.15.096.114.114 0 0 0 .094.135.6.6 0 0 1 .267.08h-.001a.2.2 0 0 1 .081.18.25.25 0 0 1-.067.175.33.33 0 0 1-.247.088.3.3 0 0 1-.263-.14c-.004-.01-.01-.063.034-.078a.08.08 0 0 1 .082.026.24.24 0 0 0 .156.063.22.22 0 0 0 .148-.05.11.11 0 0 0 .024-.116.22.22 0 0 0-.193-.098.25.25 0 0 1-.172-.07.25.25 0 0 1-.069-.196.22.22 0 0 1 .1-.163.3.3 0 0 1 .181-.053m1.649 0zh.361a.06.06 0 1 1 0 .12l-.114.002v.682a.063.063 0 0 1-.125 0v-.683h-.116a.06.06 0 0 1-.007-.12zm.56 0zh.36a.06.06 0 1 1 0 .12l-.114.002v.682a.063.063 0 0 1-.125 0v-.683h-.115a.06.06 0 0 1-.007-.12zm2.74 0h.361a.06.06 0 1 1 0 .12l-.112.002v.682a.063.063 0 0 1-.125 0v-.683h-.116a.06.06 0 0 1-.007-.12zm-.677.004h.202a.36.36 0 0 1 .208.058.28.28 0 0 1 .108.206.24.24 0 0 1-.071.198.3.3 0 0 1-.117.075l-.02.007.158.2a.1.1 0 0 1 .023.056q-.004.049-.06.05a.07.07 0 0 1-.056-.027l-.187-.258h-.117v.23a.06.06 0 0 1-.063.067.06.06 0 0 1-.062-.067v-.726a.07.07 0 0 1 .016-.05.06.06 0 0 1 .038-.019m-3.87.002h.36a.06.06 0 0 1 0 .121h-.116v.684a.063.063 0 0 1-.125 0v-.684h-.116a.06.06 0 0 1-.003-.12zm.583 0h.002a.063.063 0 0 1 .065.064v.471a.26.26 0 0 0 .037.151.15.15 0 0 0 .127.056.14.14 0 0 0 .125-.056.27.27 0 0 0 .035-.15V8.34h.001a.063.063 0 0 1 .125 0v.432a.47.47 0 0 1-.056.262.25.25 0 0 1-.228.104.26.26 0 0 1-.23-.104.46.46 0 0 1-.061-.262V8.34a.063.063 0 0 1 .058-.063m3.354.115v.328h.13a.18.18 0 0 0 .2-.174.15.15 0 0 0-.051-.109.18.18 0 0 0-.13-.045zm-.584.015-.136.469h.278zm-1.14 1.005c.011 0 .021.002.022.011.002.018-.016.029-.042.042a.2.2 0 0 0-.094.08.3.3 0 0 0-.039.163.12.12 0 0 0 .063.079.3.3 0 0 0 .142.028.5.5 0 0 0 .215-.063.6.6 0 0 1 .276-.02.34.34 0 0 1 .194.063c.024.017.02.038.011.04-.014.005-.029-.012-.044-.01a.7.7 0 0 0-.142.03c-.06.027-.087.037-.116.09a.1.1 0 0 0-.007.073c.01.024.035.04.04.057a.5.5 0 0 0 .064.125l.03.023a3 3 0 0 1 .282.243.3.3 0 0 1 .04.093c.003.012-.007.03-.018.025a.3.3 0 0 1-.036-.029.2.2 0 0 0-.053-.039.4.4 0 0 0-.176-.025c-.027 0-.081.024-.05.036a.36.36 0 0 1 .132.116.43.43 0 0 1 .107.31c0 .006-.012.01-.015.006a.4.4 0 0 0-.102-.109.32.32 0 0 0-.21-.062c-.015.001-.06 0-.055.014a1.2 1.2 0 0 1 .123.191.56.56 0 0 1 .039.276c-.001.005-.02.01-.023.005a1 1 0 0 0-.077-.076.4.4 0 0 0-.094-.06.3.3 0 0 0-.204.028.33.33 0 0 0-.13.132.5.5 0 0 0-.062.205.46.46 0 0 0 .042.257.37.37 0 0 0 .19.164 1 1 0 0 0 .334.044c.139.005.278-.016.417-.02a2 2 0 0 1 .396.003.9.9 0 0 1 .3.12 3 3 0 0 1 .215.183c.008.006.026-.003.035-.009a.46.46 0 0 0 .131-.233.35.35 0 0 0-.056-.246c-.047-.085-.116-.18-.17-.27a3 3 0 0 1-.202-.296.3.3 0 0 1-.017-.221.24.24 0 0 1 .107-.128c.011-.007.022.006.017.021a.2.2 0 0 0-.008.112.3.3 0 0 0 .089.14c.013.01.047-.005.055-.021.018-.043.007-.11.023-.154a.6.6 0 0 1 .108-.226 1.5 1.5 0 0 1 .36-.196c.033-.019.054-.105.091-.091s.017.1-.011.142c-.04.062-.087.1-.131.156a1.5 1.5 0 0 0-.157.247.22.22 0 0 0-.029.137.14.14 0 0 0 .073.094c.022.01.05-.01.07-.025a.4.4 0 0 0 .097-.103c.023-.038.01-.089.032-.128.006-.009.03-.007.037 0a.14.14 0 0 1 .044.084.4.4 0 0 1-.01.113c-.003.008-.024.027-.031.045a.2.2 0 0 1-.02.04c-.036.063-.078.116-.125.126-.01.001-.017.021-.01.03a.4.4 0 0 0 .113.132.2.2 0 0 0 .152.01c.027-.008.048-.027.079-.037.013-.004.005.004.005.017a.3.3 0 0 1-.015.086.2.2 0 0 1-.075.083.4.4 0 0 1-.166.05c-.027.005-.068.025-.058.051a.3.3 0 0 0 .042.085.12.12 0 0 0 .08.039.2.2 0 0 0 .125-.036c.04-.026.061-.074.096-.108.007-.006.026 0 .026.01a.4.4 0 0 1-.041.158.5.5 0 0 1-.128.138c-.015.013-.033.029-.033.049a.2.2 0 0 0 .044.084.13.13 0 0 0 .083.054.3.3 0 0 0 .1 0c.013 0 .01.023-.001.031a.25.25 0 0 1-.117.068.25.25 0 0 1-.128.008c-.081-.02-.134-.05-.214-.073a.23.23 0 0 0-.135-.009.23.23 0 0 0-.106.083.13.13 0 0 0-.03.064c-.006.063.025.13.005.192a1.4 1.4 0 0 1-.081.234 1.3 1.3 0 0 1-.115.165c-.04.054-.093.074-.12.133a1 1 0 0 1-.038.063.5.5 0 0 0-.058.229.45.45 0 0 0 .085.209l.153.237a.15.15 0 0 1 .009.083.09.09 0 0 1-.044.07.9.9 0 0 0-.419.527l-.002.013v.004a.1.1 0 0 1-.021.042.33.33 0 0 1-.19.096q-.082.022-.165.046a.08.08 0 0 0-.044.031.08.08 0 0 0 .009.097.14.14 0 0 1 .03.071.06.06 0 0 1-.013.042.1.1 0 0 1-.028.022.9.9 0 0 1-.216.087c-.05.011-.086-.002-.07-.059a3 3 0 0 1 .098-.293.4.4 0 0 1 .133-.14 2 2 0 0 1 .212-.162.4.4 0 0 0 .119-.126 3 3 0 0 1 .19-.275.16.16 0 0 0 .029-.129.25.25 0 0 0-.142-.185l-.085-.034a.53.53 0 0 1-.246-.175.1.1 0 0 0-.062-.04c-.063.002-.081.09-.083.138a1 1 0 0 0 .004.212.2.2 0 0 1 .004.072.06.06 0 0 1-.039.034 2.7 2.7 0 0 0-.565.279.2.2 0 0 0-.063.07l-.017.029a.19.19 0 0 1-.223.08l-.044-.011a.1.1 0 0 0-.064.017.2.2 0 0 0-.041.036l-.01.019v.014l.004.017.022.06a.066.066 0 0 1-.038.096 1 1 0 0 1-.203.055c-.04.005-.075-.01-.065-.057a1 1 0 0 1 .07-.237.1.1 0 0 1 .057-.06.8.8 0 0 0 .179-.14.27.27 0 0 1 .169-.073.5.5 0 0 0 .262-.1 2 2 0 0 0 .225-.186.37.37 0 0 0-.006-.46l-.02-.035c-.019-.03-.03-.073-.046-.104a.24.24 0 0 1-.039-.104c0-.068.027-.133.031-.201a.024.024 0 0 0-.016-.025.5.5 0 0 0-.137-.03 2.7 2.7 0 0 1-.56.006 1.4 1.4 0 0 1-.39-.18c-.053-.033-.085-.07-.139-.101-.014-.008-.015-.005-.028.006a.67.67 0 0 1-.459.125h-.002a2 2 0 0 1-.294-.077c-.073-.027-.19-.074-.26-.015-.029.025-.022.06-.022.093a1.2 1.2 0 0 1-.01.305.04.04 0 0 0 .003.032l.006.006a.1.1 0 0 0 .036.02l.01.004c.028.01.033.023.05.058a.2.2 0 0 1 .016.062.2.2 0 0 1-.003.062l-.009.039a.2.2 0 0 0 .008.135.1.1 0 0 0 .042.053l.01.004.01.003h.02l.02-.008.004-.002a.05.05 0 0 1 .035-.012l.01.003a.08.08 0 0 1 .063.074.5.5 0 0 1-.046.221.06.06 0 0 1-.077.03l-.018-.007a.45.45 0 0 1-.14-.117.2.2 0 0 1-.049-.112.12.12 0 0 0-.028-.082.1.1 0 0 0-.032-.016.14.14 0 0 1-.07-.046.27.27 0 0 1-.052-.219 1.5 1.5 0 0 0-.046-.64.15.15 0 0 1 .002-.108l.016-.043.007-.016a.06.06 0 0 1 .042-.032l.029-.003a1.5 1.5 0 0 0 .45-.07.2.2 0 0 1 .062-.01l.073.002c.03 0 .06-.027.024-.05a1 1 0 0 1-.084-.087.05.05 0 0 0-.052-.022l-.01.005-.009.005a.098.098 0 0 1-.152-.029.8.8 0 0 1-.087-.202.56.56 0 0 0-.109-.238.24.24 0 0 0-.19-.063.22.22 0 0 0-.13.098l-.063.088a.14.14 0 0 0-.031.067v.016l.008.032a.13.13 0 0 1-.039.154l-.094.075a.1.1 0 0 0-.03.06l-.012.06a.1.1 0 0 0-.003.045l.002.012a.1.1 0 0 0 .031.04l.013.012.012.017a.06.06 0 0 1-.012.07l-.024.021a.8.8 0 0 1-.19.108l-.026.006c-.038.003-.05-.026-.052-.06q-.004-.066-.003-.134a.2.2 0 0 1 .057-.137.36.36 0 0 0 .072-.225.2.2 0 0 1 .04-.13.3.3 0 0 0 .057-.09.3.3 0 0 1 .039-.066 4 4 0 0 0 .281-.384c.054-.086.155-.192.237-.073a.4.4 0 0 0 .078.084 2 2 0 0 0 .259.164c.094.053.109-.042.125-.121v-.003a.3.3 0 0 1 .038-.092 1.3 1.3 0 0 1 .202-.247c.043-.038.105-.076.15-.113.018-.016.023-.018.03-.04.009-.022.024-.05.034-.078s.015-.055.024-.076a.3.3 0 0 0 .044-.098v-.015l-.003-.007a.05.05 0 0 0-.021-.024.2.2 0 0 0-.102-.026h-.003a.4.4 0 0 0-.148.031.1.1 0 0 0-.054.054.2.2 0 0 1-.042.063.1.1 0 0 1-.13.006c-.024-.016-.014-.043 0-.063a.4.4 0 0 0 .035-.05.04.04 0 0 0 .005-.025v-.004l-.002-.005-.005-.006a.05.05 0 0 0-.045-.007l-.083.027a.064.064 0 0 1-.094-.047.2.2 0 0 1-.003-.055.055.055 0 0 1 .04-.05c.02-.006.05-.017.046-.042v-.023a.1.1 0 0 1 .012-.024.1.1 0 0 1 .03-.025 4 4 0 0 0 .32-.234.05.05 0 0 1 .064-.01l.01.006a.22.22 0 0 0 .151.02.05.05 0 0 0 .041-.03v-.01l-.002-.006-.003-.004a.1.1 0 0 0-.035-.021l-.058-.021a.3.3 0 0 1-.052-.025.05.05 0 0 1-.025-.059c.023-.113.147-.114.241-.105h.004a.5.5 0 0 0 .14-.022c.06-.021.106-.067.163-.094s.117-.057.176-.08c.018-.006.033-.002.049-.009a.1.1 0 0 0 .035-.025 1 1 0 0 1 .142-.163.8.8 0 0 1 .236-.092.1.1 0 0 1 .03-.006zm-.425.557a.2.2 0 0 0-.105.026c-.009.005-.015.016-.008.024.018.021.049.03.07.05a.2.2 0 0 1 .035.046c.009.019.024.04.033.06a1 1 0 0 1 .045.123 1.2 1.2 0 0 1 .05.209c.01.057.007.117.01.175v.081q0 .035-.003.07a1 1 0 0 0-.004.098v.08c.002.07.013.12.044.12a.2.2 0 0 0 .084-.019.18.18 0 0 0 .085-.148 2 2 0 0 0-.003-.576.5.5 0 0 0-.188-.362.22.22 0 0 0-.144-.057zm3.96.161h5.177c-.017.825-.034 1.6-.05 2.263h-5.13l.004-1.862zm-.006 2.544h5.123a9.7 9.7 0 0 1-.545 2.911 14.5 14.5 0 0 1-1.56 3.118 12.5 12.5 0 0 1-2.415 2.669 11 11 0 0 1-1.147.848 14.6 14.6 0 0 1-1.96.999c-.224.096-.418.186-.596.247-.193.065-.358.125-.474.156v-.115l.003-7.295a4 4 0 0 0 .316-.023c.005.015.016.057.031.1a.33.33 0 0 0 .219.166.32.32 0 0 0 .306-.107.37.37 0 0 0 .388.067.235.235 0 0 0 .175-.227.43.43 0 0 0-.033-.208l-.036-.066a4 4 0 0 0 .744-.41l.02-.006c.373-.094 1.872-.631 2.791-.643a3.3 3.3 0 0 1 1.627.39 2.8 2.8 0 0 1 .682.56c.006.009.013.028.037.032a.04.04 0 0 0 .034-.022 1.14 1.14 0 0 0 .079-.516c-.02-.282-.3-.486-.383-.57-.003-.003-.01-.021.02-.041a.7.7 0 0 1 .105-.085 1 1 0 0 1 .562-.212c.03.003.02-.04.012-.076-.058-.25-.415-.412-.79-.354a.96.96 0 0 0-.613.417c-.007.011-.042.027-.056.013a3 3 0 0 0-.369-.107c-.045-.01-.021-.044-.019-.05a1 1 0 0 1 .304-.337 1.1 1.1 0 0 1 .494-.224c.022 0 .022-.03.016-.04a.55.55 0 0 0-.375-.302.84.84 0 0 0-.78.14 1.4 1.4 0 0 0-.445.673c-.014.02-.018.036-.036.032-.099-.02-.345-.007-.367-.022-.015-.007-.012-.03-.009-.045a.9.9 0 0 1 .222-.38.9.9 0 0 1 .364-.286.055.055 0 0 0 .01-.094.98.98 0 0 0-1.22.263 2.2 2.2 0 0 0-.304.696c-.002.009-.017.036-.036.036l-.508.112-.083.019-.022.023a3.3 3.3 0 0 0 .497-1.65zm-12.45.085h5.19v.09a3.15 3.15 0 0 0 .837 2.098H3.556a9.7 9.7 0 0 1-.342-2.188zm.415 2.443h5.863a3 3 0 0 0 .112.1 3.9 3.9 0 0 0 2.17.898v1.21h-7.22a14 14 0 0 1-.8-1.827 10 10 0 0 1-.125-.38zm10.584.29-.01.012h-.002l-.002-.002zm1.738.185a.9.9 0 0 0-.507.155.93.93 0 0 0-.392.41 2.7 2.7 0 0 0-.172.775.06.06 0 0 1-.038.035 3 3 0 0 0-.335.087.03.03 0 0 1-.023-.02 1.1 1.1 0 0 1 .15-.727.9.9 0 0 1 .218-.263.037.037 0 0 0-.017-.068.98.98 0 0 0-.648.114.89.89 0 0 0-.452.667 1.6 1.6 0 0 0 .042.594c0 .006.006.027-.016.031-.076.037-.282.145-.355.18-.005.002-.019.005-.022-.006a.58.58 0 0 0-.268-.358.53.53 0 0 0-.446.022.55.55 0 0 0-.216.224.375.375 0 0 0 .127.455c.006.006.017.02 0 .025-.09.049-.092.06-.16.161a.43.43 0 0 0 .052.45.465.465 0 0 0 .7.082c.004-.003.018.005.025.02a.6.6 0 0 0 .143.151.46.46 0 0 0 .455 0 .41.41 0 0 0 .21-.415.38.38 0 0 0-.111-.262c-.013-.016 0-.024.034-.046a5.4 5.4 0 0 1 1.96-.666 3.1 3.1 0 0 1 1.076.022 1.5 1.5 0 0 1 .629.312 3 3 0 0 1 .406.402.16.16 0 0 0 .117-.025.66.66 0 0 0 .014-.517 1.6 1.6 0 0 0-.384-.59c-.003-.002-.003-.013-.003-.02-.004-.03.015-.045.052-.079a1.2 1.2 0 0 1 .562-.297c.027-.002.038-.022.02-.053a.656.656 0 0 0-.808-.298h-.001a.92.92 0 0 0-.454.416c-.006.011-.022.05-.037.038-.09-.008-.242-.032-.331-.04-.041-.002-.025-.039-.024-.045a.74.74 0 0 1 .194-.316 1.2 1.2 0 0 1 .444-.318.02.02 0 0 0 .016-.031.63.63 0 0 0-.465-.229.8.8 0 0 0-.617.238 1.25 1.25 0 0 0-.337.74q-.012.035-.037.035a2 2 0 0 1-.278.025c-.015-.004-.014-.02-.014-.036a.9.9 0 0 1 .101-.406 1.5 1.5 0 0 1 .55-.582c.036-.025.038-.076.026-.082a.9.9 0 0 0-.355-.071M4.707 17.692h7.069v2.19H6.213a11 11 0 0 1-.898-1.181 17 17 0 0 1-.609-1.01zm10.076 1.176a.5.5 0 0 0-.273.069.98.98 0 0 0-.475.56 1.1 1.1 0 0 0 .012.571c.003.007.012.024-.002.03-.078.03-.136.065-.213.096-.004 0-.024.005-.028-.005a.63.63 0 0 1 .088-.736c.017-.015.027-.035-.008-.047a.59.59 0 0 0-.531.193.68.68 0 0 0-.117.659 1 1 0 0 0 .099.261c.003.005.03.021.014.028l-.15.115c-.003.003-.014.008-.019 0a.49.49 0 0 0-.29-.238.34.34 0 0 0-.317.088.36.36 0 0 0 .147.602c.007.003.017.012.005.02a.6.6 0 0 0-.19.212.38.38 0 0 0 .085.406.37.37 0 0 0 .29.089.6.6 0 0 0 .357-.313c.002-.003.021-.017.031-.006a.53.53 0 0 0 .264.2.32.32 0 0 0 .323-.065.35.35 0 0 0 .111-.4.6.6 0 0 0-.201-.216c-.013-.01-.003-.035.023-.055a3 3 0 0 1 1.402-.62 1.8 1.8 0 0 1 1.025.166 1.6 1.6 0 0 1 .337.267c.013.007.05.02.063.008a.397.397 0 0 0 .035-.548.7.7 0 0 0-.206-.165l-.007-.015a.9.9 0 0 1 .301-.393 1.4 1.4 0 0 1 .295-.143c.022-.006.018-.02.007-.047-.128-.293-.635-.304-.874-.15a1.1 1.1 0 0 0-.346.396c-.005.01-.012.04-.025.031l-.213-.064c-.004 0-.004-.024-.002-.028a1.12 1.12 0 0 1 .696-.565c.015-.006.01-.02.007-.028-.11-.268-.661-.245-.93-.074a1.17 1.17 0 0 0-.493.714c-.003.02.006.037-.007.04a1.2 1.2 0 0 1-.23.055.024.024 0 0 1-.022-.023.64.64 0 0 1 .067-.392 2 2 0 0 1 .324-.408.043.043 0 0 0-.003-.063.5.5 0 0 0-.236-.07zm-3.006 1.296v3.417c-.098-.032-.214-.074-.342-.117-.178-.06-.373-.151-.597-.247a14.6 14.6 0 0 1-1.96-1 11 11 0 0 1-1.147-.847 13 13 0 0 1-1.266-1.206h5.31z"/></svg>������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/portainer.svg��������������������������������0000664�0000000�0000000�00000001737�14753064456�0025636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.504 0v1.023l-.01-.015-6.106 3.526H3.417v.751h5.359v3.638h1.942V5.284h1.786V15.7c.027 0 .54-.01.751.091V5.285h.531v10.608c.293.147.55.312.751.54V5.286h6.046v-.75h-1.267l-6.061-3.5V0zm0 1.87v2.664H7.889zm.751.031 4.56 2.633h-4.56zM9.142 5.285h1.21v1.686h-1.21zm-4.736 2.73v1.951h1.942v-1.95zm2.19 0v1.951h1.941v-1.95zm-2.19 2.171v1.951h1.942v-1.95zm2.19 0v1.951h1.941v-1.95zm2.18 0v1.951h1.942v-1.95zM4.36 12.43a3.73 3.73 0 0 0-.494 1.851c0 1.227.604 2.308 1.52 2.986.239-.064.477-.1.724-.11.1 0 .165.01.266.019.284-1.191 1.383-1.988 2.665-1.988.724 0 1.438.201 1.924.668.229-.476.302-1.007.302-1.575 0-.65-.165-1.292-.494-1.85zm4.828 3.16c-1.21 0-2.226.844-2.492 1.97a1 1 0 0 0-.275-.009 2.56 2.56 0 0 0-2.564 2.556 2.565 2.565 0 0 0 3.096 2.5A2.58 2.58 0 0 0 9.233 24c.862 0 1.622-.43 2.09-1.081a2.557 2.557 0 0 0 4.186-1.97c0-.567-.193-1.099-.504-1.52a2.557 2.557 0 0 0-3.866-2.94 2.57 2.57 0 0 0-1.951-.898z"/></svg>���������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/portswigger.svg������������������������������0000664�0000000�0000000�00000000325�14753064456�0026177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h10.718v-3.805l3.496-4.272h-3.496v-5.205H4.427l6.291-7.767V0Zm13.282 0v3.884L9.786 8.155h3.496v5.205h6.291l-6.291 7.767V24H24V0Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/posit.svg������������������������������������0000664�0000000�0000000�00000001260�14753064456�0024760�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 .953v6.393l4.852 2.066-3.27 1.447v2.283l3.215 1.432L0 16.615v6.432l11.918-5.256.082-.035.082.035L24 23.047v-6.432l-4.797-2.04 3.215-1.433v-2.283l-3.27-1.447L24 7.346V.953L12 6.25Zm.879 1.352 10.039 4.431-4.96 2.19L.879 6.763Zm22.242 0v4.458l-5.066 2.162-4.973-2.19 10.04-4.431ZM12 7.209l4.945 2.19-4.95 2.107-4.94-2.108zM5.959 9.885l4.926 2.093-.006.002.006.002-4.979 2.12-3.446-1.529v-1.148zm12.082 0 3.514 1.54v1.15l-3.448 1.526-1.107.487-4.994 2.21L7 14.589l4.994-2.133L17 14.588l1.094-.487-4.973-2.12zM5.906 15.06l5.012 2.215-.066.03-9.973 4.404v-4.512zm12.201 0 5.014 2.137v4.512l-9.959-4.404-.066-.03z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/postcss.svg����������������������������������0000664�0000000�0000000�00000050400�14753064456�0025320�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.627.008q-.352.014-.706.065c-.226.024-.453.064-.672.097-.267.033-.534.05-.801.081-.252.033-.51.082-.762.123-.09.016-.178.048-.268.064-.194.04-.396.057-.59.122A16 16 0 0 0 6.79.917c-.316.13-.624.268-.923.43-.308.17-.6.373-.892.568q-.415.277-.82.592c-.257.203-.501.43-.736.657-.13.13-.235.284-.356.43-.203.236-.405.462-.6.706-.16.203-.308.414-.462.625-.275.373-.51.77-.728 1.168-.09.162-.17.325-.25.487-.123.243-.252.478-.366.73-.08.17-.146.357-.194.544a67 67 0 0 0-.332 1.2c-.098.358-.122.73-.13 1.096-.008.324.024.64.057.965.008.082-.04.18.056.244-.032.09-.008.138.04.154-.056.09.025.146-.007.227-.008.017.025.05.04.073 0 .025-.008.057 0 .08.01.074.04.147.04.229 0 .056.05.12.066.178.008.024 0 .065-.017.08-.048.058-.04.106.033.139.04.105.024.154.016.203.016.073-.008.097 0 .114.065.13.09.275.097.42 0 .034.016.066.033.107.008 0 0 .154 0 .154.04-.024.073-.032.113-.05q.036.16.081.294c.04.065.041.097.025.105.032.145.048.283.105.42 0-.153-.016-.307-.04-.453.113.04.21.08.275.08.008-.023.016-.055.025-.072-.049-.048-.09-.12-.138-.17.016.065 0 .09 0 .114a1 1 0 0 0-.114-.05c.033-.04.065-.08.114-.13 0-.072-.04-.137-.154-.13.05-.015.097-.04.154-.055.09-.048-.008-.138-.008-.25.008-.14-.073-.277-.097-.423-.04-.227-.033-.568-.057-.795-.049-.04-.09.065-.097.073q.04.293.064.584c-.048-.162-.08-.34-.12-.536-.01.057-.017.08-.017.114-.04.04-.008.09.016.146-.056-.025-.12-.016-.12-.016v.227c-.082-.08-.106-.146-.147-.203-.016-.065-.025-.13-.04-.194.015-.04 0-.065 0-.09l-.025-.195a1 1 0 0 0-.008-.13c.065.009.106.016.146.016-.08-.104-.025-.17.008-.234.016-.033.073-.04.09-.074.064-.12.17-.218.17-.373 0-.073.025-.154.032-.227q.027-.207.04-.414c.017-.178 0-.357.041-.527.065-.283.146-.568.235-.852.065-.203.138-.397.22-.6.12-.317.234-.633.388-.933.22-.438.47-.86.713-1.29.154-.268.316-.52.487-.78.16-.25.323-.51.51-.746.26-.332.543-.64.86-.917.323-.292.63-.592.98-.86a10 10 0 0 1 1.44-.925c.414-.219.843-.39 1.273-.552.275-.105.575-.154.859-.243.324-.106.648-.154.988-.162.219-.008.43-.033.648-.057a16 16 0 0 0 .6-.057.4.4 0 0 0-.04.065c-.09.13-.187.26-.276.39-.073.105-.154.218-.227.324-.13.17-.268.34-.39.52-.185.267-.356.543-.55.81-.194.26-.405.504-.608.755-.267.35-.518.706-.785 1.055-.244.332-.502.65-.737.982-.21.292-.398.6-.6.9-.3.446-.6.884-.9 1.33a84 84 0 0 1-.712 1.015c-.016.024-.04.032-.065.048-.064.105-.064.162-.09.21a4 4 0 0 1-.202.358c-.04.065-.097.122-.146.187-.008-.098.13-.147.065-.27-.04.067-.08.123-.12.188l-.1.194c.033.024.088.04.035.088-.005-.02-.032-.032-.053-.048a5 5 0 0 0-.194.293c.05.04.073.024.105-.033.03-.06.072-.104.11-.154l-.042.074a.3.3 0 0 0 .09-.08c0 .088-.05.16-.09.233-.033.065-.114.114-.17.163.008.008.065.032.073.04.073-.024.097-.064.106-.04.024-.033.048-.057.056-.08a.3.3 0 0 1 .162-.18q.046-.026.08-.064c.244-.252.495-.496.714-.764.34-.413.648-.843.973-1.265.137-.178.3-.357.445-.527.024.186.008.365 0 .535-.025.3-.04.6-.065.908-.008.122 0 .244-.008.366 0 .032-.025.056-.025.09 0 .08.025.17.025.25-.025.3-.057.592-.082.893-.008.064.024.13.04.186-.04.438.05.9-.024 1.364.057-.09.073-.147.073-.203.008-.05 0-.097 0-.154v-.08c.008-.147.04-.3.024-.448a1.5 1.5 0 0 1 .016-.47c.017-.065-.007-.146.033-.227v.12c-.008.463.01.926-.056 1.388-.008.04.024.114-.065.106-.073.146.016.252-.065.333-.016.016.016.09.024.138-.032.097-.032.097.016.105.008.18.025.34.033.51.13-.307.064-.624.122-.941.008.13.016.26.008.398 0 .21-.01.414-.017.625q-.002.06-.016.122c-.024.113-.032.227-.072.332-.033.08-.016.203-.016.3v.31c.032.137-.01.21.016.29-.025.083-.033.107-.025.13l.025.123c.162-.016.09.106.153.17-.048.065-.032.09-.032.122 0 .073-.008.138-.016.21 0 .188-.008.374-.008.553 0 .025.008.048.008.073l-.008.227c.016.024 0 .05-.025.073-.008 0-.032-1.03-.032-1.03h-.12c-.017.486.023.924-.066 1.38-.097.007-.13.023-.235.023q-.378-.002-.754.008c-.3 0-.59.008-.89.008-.147 0-.3.017-.446.017-.195 0-.397-.025-.59-.025-.3 0-.593.024-.893.032-.22.008-.437.008-.656.017-.146.008-.292.015-.438.032-.064.008-.12.032-.202.056-.025 0-.08-.008-.13 0-.08.017-.153.065-.235.082-.122.024-.154.056-.138.178v.08c-.008.017.178-.024.178-.024-.016 0-.024.05-.049.09.065-.025.106-.04.147-.057.121.057.226.025.323.05.316.08.64.113.964.145.21.016.414.025.624.032.3.017.6.033.9.033.25 0 .493-.025.744-.025.348 0 .697.016 1.045.025.073 0 .154-.008.235-.008h.592c.527-.016 1.053-.025 1.58-.04.3-.01.608-.025.907-.033l.924-.025c.357-.008.713-.008 1.062-.015.267 0 .526-.01.794-.017.3-.008.607-.032.907-.048.162-.008.324-.025.486-.04.195-.017.398-.04.592-.05.29-.016.59-.024.883-.04.365-.024.73-.057 1.102-.065.34-.016.689-.008 1.03-.016.3-.008.599-.025.907-.033l.51-.025s.34-.008.51-.024c.293-.016.584-.05.876-.057.186-.008.372 0 .559-.008.3-.008.606-.024.906-.024.113 0 .235.016.38.024-.064.057-.105.09-.153.13.032.008.064.025.097.04a.22.22 0 0 1-.13.04c-.016.042-.032.058-.048.139h.145c-.056 0-.105.073-.16.122-.066-.017-.123 0-.156.09.057.03.05.056.04.09-.096.03-.17.063-.128.169q-.05.022-.114.056c-.04.065-.113.08-.097.17.032.008.064.025.09.033-.042.016-.082.04-.123.056-.145.09-.08.13-.048.17q-.037.027-.073.04c.016.074.04.09.048.09l-.085.069.01-.027h-.032q0 .022.005.04l-.02.016c-.024.072-.056.104-.09.153-.03.048-.046.114-.087.162-.17.187-.292.406-.51.552-.081.057-.154.13-.227.203-.146.138-.276.292-.43.422a9 9 0 0 1-.631.478c-.267.187-.534.374-.802.552-.146.097-.308.17-.462.26s-.3.17-.454.26c-.097.064-.186.153-.291.202-.268.114-.551.211-.827.317-.268.114-.462.21-.664.284a5 5 0 0 1-.575.153c-.065.017-.138 0-.211.01-.138.024-.276.057-.414.073-.356.048-.713.08-1.07.13-.21.024-.413.064-.623.09-.146.007-.3-.009-.446-.009-.105 0-.218.025-.324.01-.17-.026-.34-.066-.51-.098-.04-.008-.097-.025-.13-.008-.064.032-.122-.016-.187 0-.04.008-.08-.025-.12-.025-.033-.008-.074.01-.115 0-.09-.024-.17-.056-.268-.048-.096.008-.194-.04-.298-.065l-.43-.097a.7.7 0 0 1-.162-.073c-.21 0-.348-.008-.478-.057-.113-.04-.22-.097-.34-.08-.032.007-.057-.009-.09-.009-.024-.033-.048-.098-.072-.098-.162.008-.26-.13-.397-.17-.073-.024-.13-.105-.202-.13-.18-.073-.324-.227-.527-.25-.064-.01-.13-.042-.202-.066.024.032.04.057.064.08-.235-.113-.453-.242-.672-.364-.032-.008-.056-.04-.08-.057l-.22-.147c-.12.024-.17-.025-.203-.04-.218-.154-.47-.252-.68-.421-.09-.074-.194-.122-.26-.212a1.3 1.3 0 0 0-.404-.316c-.122-.064-.235-.138-.348-.21-.057-.041-.114-.09-.114-.18 0-.056-.024-.113-.097-.08-.032-.05-.065-.106-.105-.122-.097-.04-.162-.114-.235-.18-.073-.064-.13-.153-.22-.185-.161-.065-.26-.203-.355-.316-.228-.268-.43-.56-.64-.844-.017-.024-.05-.04-.074-.065.033.09.073.162.114.243a.5.5 0 0 1-.186-.146c-.008.008.558.942.558.942.05.073.09.146.138.219a.25.25 0 0 1-.243-.13c-.073-.13-.154-.21-.316-.194a1.4 1.4 0 0 1-.04-.18.6.6 0 0 1-.114-.008c.114.179.21.333.316.51l-.08-.047c.145.154.25.349.436.446.04.187.25.276.3.454l-.114-.024c-.065-.081-.138-.162-.21-.251a.4.4 0 0 0 .072.145c.098.122.187.244.3.35.04.04.098.057.098.13.064.032.09.04.113.04.017.049-.008.122.09.106.064.12.128.12.218.08.105.105.162.114.235.05 0 .04.008.08.008.113.032-.017.025-.04.025-.081.04.033.064.049.08.065.08.114.154.219.268.307.154.13.29.268.437.39.283.235.6.43.916.608.39.22.762.455 1.16.665a6.2 6.2 0 0 0 1.513.545c.195.04.38.08.576.13.17.048.34.121.51.161.26.057.527.106.786.154l.179.025c.072.016.16-.016.177.008.04.065.073.032.122.024.057-.016.12-.016.186-.016.227.008.445.056.672.04.05 0 .122-.04.163.04.073-.032.113-.032.146-.04.008.073 0 .073-.016.08-.017.01-.04.017-.073.04.292.058.567.066.81 0a2.7 2.7 0 0 0 1.135-.136c.032.04.056.097.105.016.016-.025.056-.033.089-.04.073-.017.162-.05.227-.026.073.025.097-.04.154-.04.097 0 .186-.008.276-.024.048-.008.097-.033.153-.05a.4.4 0 0 0-.178-.04 7 7 0 0 1 .276-.13c-.017.025-.033.057-.065.057h.113c-.025 0-.057.073-.097.122.29-.073.558-.138.818-.204-.09-.17.097-.113.162-.21a3 3 0 0 1-.243.064c.275-.137.559-.26.834-.38-.04.048-.09.073-.162.114.049.008.08.008.106.015.129.04.097-.08.137-.154.154 0 .219-.024.292-.05q.12-.033.243-.08c.13-.056.25-.13.38-.194.025-.01.065 0 .098 0 .09-.057.12-.106.145-.098.114.017.194-.024.227-.13l.023-.015c.033.07.098.08.203.007q-.1-.002-.187-.016-.008.002-.011.006.06-.047.11-.08c.178-.096.347-.193.526-.29.065 0 .097 0 .113-.008a4 4 0 0 0 .3-.163c-.024-.008-.08-.04-.08-.04a1 1 0 0 0 .154-.04c.193-.23.46-.383.664-.56.089-.008.089-.032.089-.048.032-.041.064-.09.105-.122.177-.163.371-.3.533-.47q.354-.355.673-.732c.194-.227.39-.454.55-.705.228-.35.422-.706.625-1.072.146-.26.275-.52.422-.778.015-.025.048-.057.072-.057.22-.025.438-.04.65-.065.047-.008.104-.04.152-.065-.024-.04-.04-.09-.064-.13-.033-.05-.08-.09-.114-.138-.032-.04-.056-.09-.08-.138-.025-.04-.05-.072-.074-.114a3 3 0 0 1-.138-.275c-.008-.024-.025-.065-.016-.09.146-.315.202-.656.34-.972.138-.325.18-.69.243-1.04.057-.331.09-.664.13-.997.024-.235.057-.462.064-.697.05-.373.033-.723.025-1.072-.008-.308-.025-.624-.04-.933-.017-.317-.025-.633-.058-.95-.056-.43-.113-.868-.21-1.29a7 7 0 0 0-.316-1.014c-.154-.39-.308-.787-.503-1.16-.316-.6-.73-1.136-1.11-1.696-.252-.357-.576-.65-.82-1.014-.135-.21-.34-.39-.541-.55a14 14 0 0 0-1.004-.723 10 10 0 0 0-.794-.504c-.22-.122-.454-.22-.68-.325-.26-.12-.511-.268-.803-.324-.073-.016-.138-.04-.21-.065-.187-.065-.365-.138-.552-.195-.283-.089-.56-.194-.85-.267a8 8 0 0 0-.87-.163c-.323-.047-.655-.064-.98-.096a8 8 0 0 0-.623-.056c-.307-.018-.623-.018-.93-.025-.154-.008-.316-.024-.47-.016Zm.694.94q.156.027.3.041l.389.025c.292.023.583.04.875.08.243.033.486.081.737.122a10.4 10.4 0 0 1 1.572.405c.3.098.59.228.884.35.656.267 1.28.592 1.895.932.194.106.308.276.454.43.21.22.42.438.624.665.234.268.453.544.68.82.201.243.412.486.615.73.065.073.114.163.17.244.13.194.275.38.39.592.08.154.13.333.185.503.08.252.162.495.243.746.056.187.104.382.145.576.033.13.025.268.065.397.05.17 0 .358.05.528.007.017.015.04.023.057.033.032.057.065.008.114-.008.008-.008.04 0 .064.017-.016.025-.032.04-.057 0 .017.01.025.01.033 0 .032-.01.065 0 .097 0 .016.015.04.023.057.016-.017.032-.025.064-.05.073.276.082.552.082.836 0 .268.048.536-.065.795.024-.09-.033-.17-.008-.252l.003.002c-.008 0-.056-.05-.064-.057-.01.025 0 .05-.017.08-.008-.023-.064-.014-.064-.04-.01.115.048.228.04.34.024-.014.12-.023.146-.047a.1.1 0 0 0 .032.016c-.162.122-.12.244-.048.382.016.032.064.097.016.162-.016.016.008.065.016.106h.024v.015l-.073.025c-.016-.025-.113-.073-.113-.114v.414c.08.025.08.138.113.195a.2.2 0 0 0 .033-.064l.008.008q-.01.072-.032.146c-.016.072-.033.137-.04.21 0 .008.015.025.015.033-.09.203-.04.43-.072.64-.025.154 0 .317-.017.48a4 4 0 0 1-.08.42c-.009.025-.026.033-.066.05a.7.7 0 0 0-.008-.252c-.008 0-.114-.057-.122-.057 0 .114.065.268.09.398-.025-.008-.122-.065-.13-.065-.017.097-.017.227-.025.332-.008.082-.08.154-.09.244 0 .05.058.08.05.162h.064c0-.162.074-.308.074-.478h.023c.01.016.033.032.025.04-.016.09-.05.187-.04.276 0 .05.04.097.024.154a1 1 0 0 0-.033.17c-.008-.04-.016-.056-.016-.08l-.09-.008c-.007.05.058.097.05.138-.01.008-.017.008-.033.016l-.267-.39a82 82 0 0 1-.632-.932 2 2 0 0 1-.147-.244q-.372-.645-.833-1.24c-.235-.3-.422-.626-.64-.94-.203-.302-.405-.594-.608-.895-.073-.097-.162-.186-.227-.292-.21-.332-.397-.673-.607-1.006-.178-.276-.372-.544-.56-.81q-.097-.137-.194-.286a.1.1 0 0 1-.016-.055 12 12 0 0 1-.04-.528c0-.162.016-.324.016-.495V6.96c0-.04.008-.073.008-.113.008-.008.016-.025.024-.033-.235 0-.478-.01-.713 0-.154.008-.235-.057-.34-.17-.308-.35-.535-.747-.802-1.12a50 50 0 0 0-.77-1.055c-.211-.284-.422-.56-.632-.844-.236-.324-.462-.65-.705-.973q-.44-.585-.892-1.168c-.138-.179-.292-.35-.446-.536m-.752.426q.026.005.05.038c.218.276.437.56.655.835.163.204.325.398.48.61.185.26.364.52.55.778q.316.448.624.908c.308.455.6.91.907 1.363.227.333.454.658.672.99h-.413c-.38-.008-.77-.04-1.15-.024-.52.025-1.046.08-1.564.122a23 23 0 0 1-1.976.064c-.236 0-.47.033-.705.05-.284.016-.56.032-.843.04-.333.016-.656.024-.99.033-.185.008-.38 0-.582 0V7.18c.26-.357.527-.714.786-1.08.08-.105.145-.22.226-.324.025-.033.058-.05.098-.082l-.008-.015c.032-.04.064-.074.08-.106.042-.065.066-.138.099-.21a.1.1 0 0 1 .032-.033c.114.057.114-.064.154-.105a6 6 0 0 0 .21-.252c.05-.064.098-.12.139-.194.007-.025-.017-.065-.025-.098H9.05c.024-.016.049-.04.073-.056.008 0 .008 0 .016-.008a5 5 0 0 1 .146-.21c.097-.13.202-.26.315-.374q-.024.062-.048.113c.008 0 .008.008.016.008.097-.13.203-.252.3-.382q-.012-.014-.025-.016c-.04.04-.072.082-.113.122q-.012-.014-.025-.016c.082-.106.163-.21.243-.333.017.025.033.057.065.122.033-.08.065-.138.09-.195-.025.025-.057.05-.081.074l-.025-.025.146-.218c.154-.22.308-.447.462-.666.057-.08.13-.146.178-.227.154-.308.398-.552.584-.836.04-.056.097-.105.145-.154q.03-.035.056-.03zm-2.285 3.16c-.048.033-.09.057-.137.09-.01.008-.017.008-.01.008.01.04.01.073.017.13.057-.082.097-.147.146-.21zm6.838 3.342c.073 0 .113.025.154.09q.108.182.227.365c.008.016.024.04.024.064 0 .18 0 .365.008.544.008.187.025.365.032.552 0 .186-.016.38-.008.576.009.276.016.56.016.843h.002v.074c-.008 0-.016.008-.032.008-.033-.114-.065-.236-.106-.35a2.7 2.7 0 0 0-.316-.68c-.163-.228-.308-.463-.47-.698-.04-.057-.098-.106-.146-.154-.17-.187-.34-.382-.56-.52a6.6 6.6 0 0 0-1.012-.52 2 2 0 0 1-.284-.145h.194L15.23 7.9c.3-.008.59-.008.89-.024m-6.083.212q.088-.003.178.008c-.13.065-.26.13-.373.21-.146.098-.283.228-.43.334a2.4 2.4 0 0 0-.396.373c-.154.186-.324.348-.487.527-.113.13-.243.252-.34.39-.137.178-.26.372-.39.575.042-.77.09-1.533.058-2.312.382-.016.746-.04 1.12-.056.29-.017.59-.025.88-.04q.09-.008.18-.01zm2.033.415c.242.008.485.008.728.024.105.008.203.032.3.064.12.04.25.098.365.154q.204.11.397.244c.235.154.453.324.688.462.227.138.405.325.55.536.18.25.382.48.463.787l.12.535c.026.098.083.195.058.308-.04.203-.073.415-.105.617a1 1 0 0 0-.024.244c.015.252-.082.47-.18.698-.031.073-.08.146-.12.227a.2.2 0 0 0 .064.033l.073-.146c.009 0 .009 0 .016.008-.04.113-.072.235-.113.35-.097.25-.194.51-.316.753-.065.138-.178.25-.26.382-.08.113-.145.235-.226.34-.073.09-.145.18-.243.244a6 6 0 0 1-.68.454c-.146.09-.316.138-.478.178h.002c-.26.064-.527.138-.794.17-.227.033-.462.025-.697.025a8 8 0 0 1-.625-.025c-.235-.024-.47-.05-.696-.154-.195-.09-.398-.17-.591-.268-.196-.097-.39-.21-.536-.39-.105-.13-.251-.234-.38-.348a.38.38 0 0 0 .17.235c-.041.05-.098.025-.18-.106-.023.017-.047.025-.064.033.025-.057.049-.114.073-.162-.032-.065-.073-.138-.105-.204a7 7 0 0 1-.187-.324c-.016-.024-.016-.048-.032-.073a2 2 0 0 1-.114-.146c-.064-.097-.12-.202-.202-.3 0 .025.008.05.008.082-.008 0-.016.008-.016.008l-.17-.414c-.008 0-.008 0-.016.008l.145.535c-.008 0-.016.01-.024.01-.024-.034-.048-.066-.065-.106-.016-.066-.065-.066-.105-.04-.025.015-.041.072-.033.096q.088.207.187.414a1 1 0 0 0 .057.138c.008.016.032.032.032.056.033.065.057.13.098.187.073.097.154.195.227.292.072.097.137.203.2.3.009.016.034.016.04.025.043.12.18.21.277.162.025.186.227.25.308.43a4 4 0 0 1-.235-.106c-.008.008-.008.016-.016.032.097.05.195.098.283.154.082.05.163.098.236.155.097.09.21.138.348.17a.1.1 0 0 0-.016-.033c.227.106.462.22.64.308-.843.017-1.742.033-2.674.05 0-.155-.008-.3-.008-.455 0-.065.016-.122.008-.187-.025-.372-.025-.746-.073-1.11a8 8 0 0 1-.04-1.162c.007-.21-.01-.43-.017-.64 0-.284 0-.56.009-.844 0-.04.016-.073.032-.114h.025c.008.017 0 .04.015.05.025.024.066.064.082.056.048-.033.12-.065.138-.114a.8.8 0 0 0 .056-.3c0-.073.033-.12.065-.17.016-.025.025-.05.04-.08-.031-.025-.064-.042-.104-.074.032-.09.024-.195.146-.243.016-.008.016-.05.024-.073.008-.066.015-.14.024-.204.016.025.025.033.04.05q.015-.026.017-.026c0-.032-.008-.097 0-.097.097-.016.057-.122.105-.17.008-.01-.008-.033-.008-.05 0-.015 0-.04.008-.04.113-.024.097-.146.17-.203.024-.016.032-.04.065-.08.064.112-.05.17-.057.25.137-.08.178-.275.097-.332a.5.5 0 0 0 .089-.09c.09-.097.186-.186.267-.283.057-.073.09-.162.146-.235.033-.04.098-.073.146-.098.146-.08.284-.17.373-.307q.026-.025.064-.05c.025-.015.074-.015.082-.04.008-.016-.016-.057-.033-.08.032-.017.065-.05.13-.082-.025.05-.032.08-.05.114l.04.04c.074-.057.188-.12.26-.17 0-.008-.04-.04-.04-.04-.05.024-.121.065-.194.097.015-.024.015-.04.025-.05.113-.072.226-.144.348-.202.283-.13.567-.26.85-.38.049-.025.114-.01.17-.01.025 0 .04 0 .065-.006.13-.04.26-.082.39-.114a.7.7 0 0 1 .178-.024m-.316.12-.234.106c0 .008-.041.073-.033.073.04-.008.13-.073.178-.08.024 0 .057.007.082.015 0-.032 0-.065.007-.114m5.858 1.38c.08.107.17.204.227.309.187.34.43.634.656.942.195.268.373.56.552.835.218.333.429.665.648.998.162.252.332.503.502.747q.233.326.477.64c.137.187.283.374.42.56q.244.344.487.674c.08.113.17.227.26.34.05.065.121.114.17.154a.1.1 0 0 1-.032-.008q.034.05.056.073c.09.05.098.098.05.17v-.001c-.008.016-.025.033-.033.05-.008-.017-.008-.042-.016-.075-.05.13-.154.066-.227.066-.437.008-.883.008-1.32.008-.421 0-.85 0-1.271.008-.138 0-.284.032-.422.04a37 37 0 0 1-.997.033c-.024 0-.048-.04-.09-.073l-.048.073c-.008-.016-.024-.032-.04-.056l-.025.064h-.024c-.016-.113-.048-.22-.048-.332 0-.244.024-.487.032-.73.008-.114 0-.22 0-.325l.09.065a1 1 0 0 1 .048-.08s-.016-.008-.033-.025c.016-.008.033-.025.033-.033.008-.024.024-.05.024-.065 0-.057-.016-.105-.024-.153q.012.002.024-.008l.048.243h.025c-.032-.056.073-.106-.016-.17-.008-.008.008-.057.008-.082-.025-.048-.04-.097-.065-.162.008-.008.033-.016.057-.024q-.046-.026-.081-.04c.08-.073.08-.114.008-.195.016-.008.032-.008.032-.015 0-.074 0-.147-.016-.22-.016-.081.025-.178-.097-.227a.2.2 0 0 0 .032.065s-.024.008-.048.024c-.105-.097-.04-.228-.065-.373a1 1 0 0 1 .138.05c-.017-.058-.057-.123-.081-.196h-.033v-.536c0 .008.056.008.09.017 0-.008.007-.016.007-.025l-.09-.105.017-.016c-.065-.08-.032-.194-.032-.22v-.567c.08.082-.04.187.08.235v-.08h-.008c-.008-.122-.008-.244-.016-.366h-.016c-.008.017-.008.025-.016.04h-.016zm-13.65.665c-.098.113-.187.227-.276.34.015.008.04.065.055.082.09-.122.21-.276.3-.39-.008-.008-.072-.024-.08-.032m-.543.398c-.05.072-.17.202-.22.275.009.008.098-.032.106-.023.05-.073.098-.155.146-.228q-.022-.013-.032-.024m.17.12c-.05.034-.097.075-.146.107.016.016.016.025.016.04-.064-.007-.09.026-.12.114-.01.025-.05.033-.09.065-.01.016-.017.057-.033.097l.008.008a.1.1 0 0 1-.04.025c-.05.048-.106.09-.154.138q-.014.036-.016.073c.056-.057.153-.162.226-.227l.01.008c.03-.05.056-.098.09-.146.006.008.006.016.014.024-.024.065-.048.138-.073.203-.017.008-.04.024-.04.016-.033.025-.058.057-.09.08l-.146.098c-.08.073-.162.138-.25.21-.058.09-.114.17-.18.277.098-.025.122.016.114.097.113.016.122-.073.154-.138.008-.016.016-.05.032-.057.073-.065.154-.12.235-.186.017-.016.017-.05.017-.073 0-.008-.04-.008-.066-.017.073-.08.18-.218.25-.307.042-.025.083-.058.083-.082-.007-.075.032-.104.082-.13-.037.175-.144.325-.252.356.033.016.065.033.09.025s.04-.05.056-.074l.22-.316.072-.122-.032-.033c-.033.058-.065.107-.098.164l-.027-.014.002-.002c-.032-.025-.04-.05-.04-.057a.3.3 0 0 1 .04-.074c.017 0 .04-.008.04-.008.034-.056.034-.097.066-.146-.008-.008-.016-.008-.025-.016zm14.059.999h-.002v.006zm-.002.006a.2.2 0 0 0-.007.067q-.002-.034.007-.067m-.007.147v.008c.008.008.009.008.016 0-.008 0-.008 0-.016-.007zm0 .016c-.024.008-.05.008-.081.017.04.015.079.023.08.04zm0 .056v.002zm-1.192 1.422c-.016.925.09 1.833.21 2.75l-2.786.097a3.3 3.3 0 0 0 .94-.624 1 1 0 0 1 .13-.114c.34-.21.59-.503.818-.828.259-.373.429-.795.64-1.192a1 1 0 0 1 .048-.09m1.134.073.033.08c.04-.007.057-.007.073-.015q-.002-.012.008-.024c-.024-.01-.057-.024-.114-.04zm.024.074-.007.006c.008 0 .016.01.016.01l-.008-.01zM1.07 14.01a.2.2 0 0 0-.073.033c.032.08.073.17.105.252a.2.2 0 0 1 .065-.033c-.033-.08-.065-.17-.097-.252m-.228.333c-.024.04-.048.08-.04.113 0 .024.04.05.065.073 0-.008.008-.016.016-.023-.016-.057-.024-.106-.04-.163m21.657.008c0 .016.008.04 0 .057zm-21.235.18a.3.3 0 0 0-.073.03c.065.139.13.285.194.423.01 0 .073-.032.073-.032-.065-.14-.105-.293-.194-.422m-.162.324c0 .032-.04.024-.04.057-.049 0-.09-.008-.13-.008-.008.008.024.056.033.065h.17c0-.04-.008-.073-.008-.114zm7.453.316q.133.205.276.398l-.008.008c-.017-.008-.041-.017-.057-.033l-.194-.292a.1.1 0 0 1-.017-.08m9.043.438c-.008.097-.016.17-.016.243 0 .016.016.048.024.048.016.01.049-.008.065-.015a.06.06 0 0 0 .016-.032c-.024-.017-.048-.025-.073-.042.154-.08 0-.12-.016-.202m-14.114 4.59c.088.099.177.196.266.302-.048-.025-.105-.04-.13-.073-.056-.065-.104-.138-.16-.203zm.34.286c.024.04.04.089.064.138-.113-.008-.17-.057-.137-.122.024-.008.05-.008.073-.016m15.434 1.241c-.065.015-.114.024-.154.04-.016.033-.033.057-.05.09q.013.001.026.015c.049-.05.105-.09.178-.145m-.414.226c-.09.057-.186.113-.276.17.008.008.008.017.017.025a.8.8 0 0 0 .292-.146c-.008-.017-.025-.034-.033-.05m-3.97 1.542c-.371.106-.493.122-.534.065.187-.025.357-.04.535-.065m-.551.073c.008.016.008.032.016.048-.05 0-.081.017-.122.025-.113.024-.235.04-.348.057-.04.008-.09.05-.105-.025-.017.008-.033.008-.05.017.04.12.139.024.22.072-.18.025-.348.04-.52.065v-.016c.05-.008.107-.016.155-.025v-.024a2 2 0 0 0-.243-.016c-.024 0-.056.033-.08.04a.4.4 0 0 1-.106.017c-.138.008-.275.008-.405.016-.008 0-.025-.008-.033-.008v-.025c.543-.072 1.078-.145 1.62-.218zm-1.694.21v.024a4 4 0 0 1-.453.05v-.025z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/postgresql.svg�������������������������������0000664�0000000�0000000�00000007457�14753064456�0026043�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.56 14.723a.5.5 0 0 0-.057-.12q-.21-.395-1.007-.231c-1.654.34-2.294.13-2.526-.02 1.342-2.048 2.445-4.522 3.041-6.83.272-1.05.798-3.523.122-4.73a1.6 1.6 0 0 0-.15-.236C21.693.91 19.8.025 17.51.001c-1.495-.016-2.77.346-3.116.479a10 10 0 0 0-.516-.082 8 8 0 0 0-1.312-.127c-1.182-.019-2.203.264-3.05.84C8.66.79 4.729-.534 2.296 1.19.935 2.153.309 3.873.43 6.304c.041.818.507 3.334 1.243 5.744q.69 2.26 1.433 3.582.83 1.493 1.714 1.79c.448.148 1.133.143 1.858-.729a56 56 0 0 1 1.945-2.206c.435.235.906.362 1.39.377v.004a11 11 0 0 0-.247.305c-.339.43-.41.52-1.5.745-.31.064-1.134.233-1.146.811a.6.6 0 0 0 .091.327c.227.423.922.61 1.015.633 1.335.333 2.505.092 3.372-.679-.017 2.231.077 4.418.345 5.088.221.553.762 1.904 2.47 1.904q.375.001.829-.094c1.782-.382 2.556-1.17 2.855-2.906.15-.87.402-2.875.539-4.101.017-.07.036-.12.057-.136 0 0 .07-.048.427.03l.044.007.254.022.015.001c.847.039 1.911-.142 2.531-.43.644-.3 1.806-1.033 1.595-1.67M2.37 11.876c-.744-2.435-1.178-4.885-1.212-5.571-.109-2.172.417-3.683 1.562-4.493 1.837-1.299 4.84-.54 6.108-.13l-.01.01C6.795 3.734 6.843 7.226 6.85 7.44c0 .082.006.199.016.36.034.586.1 1.68-.074 2.918-.16 1.15.194 2.276.973 3.089q.12.126.252.237c-.347.371-1.1 1.193-1.903 2.158-.568.682-.96.551-1.088.508-.392-.13-.813-.587-1.239-1.322-.48-.839-.963-2.032-1.415-3.512m6.007 5.088a1.6 1.6 0 0 1-.432-.178c.089-.039.237-.09.483-.14 1.284-.265 1.482-.451 1.915-1 .099-.127.211-.27.367-.443a.4.4 0 0 0 .074-.13c.17-.151.272-.11.436-.042.156.065.308.26.37.475.03.102.062.295-.045.445-.904 1.266-2.222 1.25-3.168 1.013m2.094-3.988-.052.14c-.133.357-.257.689-.334 1.004-.667-.002-1.317-.288-1.81-.803-.628-.655-.913-1.566-.783-2.5.183-1.308.116-2.447.08-3.059l-.013-.22c.296-.262 1.666-.996 2.643-.772.446.102.718.406.83.928.585 2.704.078 3.83-.33 4.736a9 9 0 0 0-.23.546m7.364 4.572q-.024.266-.062.596l-.146.438a.4.4 0 0 0-.018.108c-.006.475-.054.649-.115.87-.064.229-.135.488-.18 1.057-.11 1.414-.878 2.227-2.417 2.556-1.515.325-1.784-.496-2.02-1.221a7 7 0 0 0-.078-.227c-.215-.586-.19-1.412-.157-2.555.016-.561-.025-1.901-.33-2.646q.006-.44.019-.892a.4.4 0 0 0-.016-.113 2 2 0 0 0-.044-.208c-.122-.428-.42-.786-.78-.935-.142-.059-.403-.167-.717-.087.067-.276.183-.587.309-.925l.053-.142c.06-.16.134-.325.213-.5.426-.948 1.01-2.246.376-5.178-.237-1.098-1.03-1.634-2.232-1.51-.72.075-1.38.366-1.709.532a6 6 0 0 0-.196.104c.092-1.106.439-3.174 1.736-4.482a4 4 0 0 1 .303-.276.35.35 0 0 0 .145-.064c.752-.57 1.695-.85 2.802-.833q.616.01 1.174.081c1.94.355 3.244 1.447 4.036 2.383.814.962 1.255 1.931 1.431 2.454-1.323-.134-2.223.127-2.68.78-.992 1.418.544 4.172 1.282 5.496.135.242.252.452.289.54.24.583.551.972.778 1.256.07.087.138.171.189.245-.4.116-1.12.383-1.055 1.717-.013.156-.043.447-.084.815-.046.208-.07.46-.1.766m.89-1.621c-.04-.832.27-.919.597-1.01l.135-.041a1 1 0 0 0 .134.103c.57.376 1.583.421 3.007.134-.202.177-.519.4-.953.601-.41.19-1.096.333-1.747.364-.72.034-1.086-.08-1.173-.151m.57-9.271c-.006.35-.054.669-.105 1.001-.055.358-.112.728-.127 1.177-.014.436.04.89.093 1.33.107.887.216 1.8-.207 2.701a4 4 0 0 1-.188-.385 8 8 0 0 0-.325-.617c-.616-1.104-2.057-3.69-1.32-4.744.38-.543 1.342-.566 2.179-.463m.228 7.013-.085-.107-.035-.044c.726-1.2.584-2.387.457-3.439-.052-.432-.1-.84-.088-1.222.013-.407.066-.755.118-1.092.064-.415.13-.844.111-1.35a.6.6 0 0 0 .012-.19c-.046-.486-.6-1.938-1.73-3.253a7.8 7.8 0 0 0-2.688-2.04A9.3 9.3 0 0 1 17.62.746c2.052.046 3.675.814 4.824 2.283a1 1 0 0 1 .067.1c.723 1.356-.276 6.275-2.987 10.54m-8.816-6.116c-.025.18-.31.423-.621.423a1 1 0 0 1-.081-.006.8.8 0 0 1-.506-.315c-.046-.06-.12-.178-.106-.285a.22.22 0 0 1 .093-.149c.118-.089.352-.122.61-.086.316.044.642.193.61.418m7.93-.411c.011.08-.049.2-.153.31a.72.72 0 0 1-.408.223 1 1 0 0 1-.075.005c-.293 0-.541-.234-.56-.371-.024-.177.264-.31.56-.352.298-.042.612.009.636.185"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/posthog.svg����������������������������������0000664�0000000�0000000�00000001604�14753064456�0025307�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.854 14.5 5 9.647.854 5.5A.5.5 0 0 0 0 5.854V8.44a.5.5 0 0 0 .146.353L5 13.647l.147.146L9.854 18.5l.146.147v-.049q.098.047.207.049h2.586a.5.5 0 0 0 .353-.854zm0-5-4-4a.49.49 0 0 0-.409-.144.52.52 0 0 0-.356.21.5.5 0 0 0-.089.288V8.44a.5.5 0 0 0 .147.353l9 9a.5.5 0 0 0 .853-.354v-2.585a.5.5 0 0 0-.146-.354zm1-4a.5.5 0 0 0-.854.354V8.44a.5.5 0 0 0 .147.353l4 4a.5.5 0 0 0 .853-.354V9.854a.5.5 0 0 0-.146-.354zm12.647 11.515a3.86 3.86 0 0 1-2.232-1.1l-4.708-4.707a.5.5 0 0 0-.854.354v6.585a.5.5 0 0 0 .5.5H23.5a.5.5 0 0 0 .5-.5v-.6c0-.276-.225-.497-.499-.532m-5.394.032a.8.8 0 1 1 0-1.6.8.8 0 0 1 0 1.6M.854 15.5a.5.5 0 0 0-.854.354v2.293a.5.5 0 0 0 .5.5h2.293c.222 0 .39-.135.462-.309a.49.49 0 0 0-.109-.545zM5 14.647.854 10.5a.5.5 0 0 0-.854.353v2.586a.5.5 0 0 0 .146.353L4.854 18.5l.146.147h2.793a.5.5 0 0 0 .353-.854z"/></svg>����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/postman.svg����������������������������������0000664�0000000�0000000�00000002357�14753064456�0025313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.527.099C6.955-.744.942 3.9.099 10.473c-.843 6.572 3.8 12.584 10.373 13.428 6.573.843 12.587-3.801 13.428-10.374C24.744 6.955 20.101.943 13.527.099m2.471 7.485a.86.86 0 0 0-.593.25l-4.453 4.453-.307-.307-.643-.643c4.389-4.376 5.18-4.418 5.996-3.753m-4.863 4.861 4.44-4.44a.62.62 0 1 1 .847.903l-4.699 4.125zm.33.694-1.1.238a.06.06 0 0 1-.067-.032.06.06 0 0 1 .01-.073l.645-.645zm-2.803-.459 1.172-1.172.879.878-1.979.426a.074.074 0 0 1-.085-.039.07.07 0 0 1 .013-.093m-3.646 6.058a.076.076 0 0 1-.069-.083.08.08 0 0 1 .022-.046h.002l.946-.946 1.222 1.222zm2.425-1.256a.23.23 0 0 0-.117.256l.203.865a.125.125 0 0 1-.211.117h-.003l-.934-.934-.294-.295 3.762-3.758 1.82-.393.874.874c-1.255 1.102-2.971 2.201-5.1 3.268m5.279-3.428h-.002l-.839-.839 4.699-4.125a1 1 0 0 0 .119-.127c-.148 1.345-2.029 3.245-3.977 5.091m3.657-6.46-.003-.002a1.822 1.822 0 0 1 2.459-2.684l-1.61 1.613a.12.12 0 0 0 0 .169l1.247 1.247a1.82 1.82 0 0 1-2.093-.343m2.578 0a1.7 1.7 0 0 1-.271.218h-.001l-1.207-1.207 1.533-1.533c.661.72.637 1.832-.054 2.522m-.1-1.544a.14.14 0 0 0-.053.157.42.42 0 0 1-.053.45.14.14 0 0 0 .023.197.14.14 0 0 0 .084.03.14.14 0 0 0 .106-.05.69.69 0 0 0 .087-.751.14.14 0 0 0-.194-.033"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/postmates.svg��������������������������������0000664�0000000�0000000�00000005024�14753064456�0025643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.545 14.954.44-1.284-1.138.692-1.08-.88.342 1.35-1.109.74 1.35.143.396 1.338.492-1.263 1.352.087zm5.308-2.61-1.14.692-1.08-.88.342 1.349-1.108.74 1.35.144.396 1.336.493-1.261 1.352.087-1.046-.924zm-1.328 4.864-1.139.692-1.08-.881.342 1.35-1.108.74 1.35.144.396 1.338.492-1.263 1.353.087-1.046-.924zM15.95 6.744l.72.041a.123.122 0 0 0 .092-.032l1.78-1.67a.032.032 0 0 0-.02-.056l-.7-.04a.2.2 0 0 0-.14.05l-1.754 1.646a.035.035 0 0 0 .022.06zm7.55 3.377a3.1 3.098 0 0 0-4.976-.342l-1.108-.83c.277-.113.857-.368.896-.525.022-.093-.273-.158-.727-.187l2.079-1.896a.05.05 0 0 0 .009-.053l-.529-.996a.04.04 0 0 0-.063-.01l-2.163 1.97c-.646 0-1.796.085-2.127-.123-.528-.333-.59-.822-.785-.997s-.415-.197-.462-.346a.015.015 0 0 1 .011-.019c.102-.026.67-.186.8-.58.129-.396-.135-.932-.18-1.016a.02.02 0 0 1 0-.02l.604-.527a.018.018 0 0 0-.013-.03l-.886.108a.02.02 0 0 1-.015 0c-.047-.062-.4-.484-1.121-.189-.842.34-.687 1.068-.687 1.068.112.753.374.902.8 1.148.012 0 .017.02 0 .027-.274.228-3.035 2.494-5.585 3.378a.05.05 0 0 0 0 .093c.738.32 2.952.147 3.606-.232a.016.016 0 0 1 .025.018c-.072.273-.458 1.873.147 2.37l.034.026-.82.578a.21.21 0 0 0 .147.38l.422-.047a1.2 1.2 0 0 0 .725-.34l.148-.14 1.193.886-.158 1.261a3.1 3.098 0 1 0 2.56 1.623l.305-.195a.748.748 0 0 0 1.218-.756l1.262-.37a.205.205 0 0 0 .147-.24l-.008-.041a.21.21 0 0 0-.203-.164h-1.071a.02.02 0 0 1-.015-.01l-.322-.727.64-3.762 1.034.767a3.1 3.098 0 1 0 5.224 0zm-8.594-2.228 1.46-.025.192.361c-.338.012-.69.039-1.033.082-.247.03-.545-.287-.634-.387a.02.02 0 0 1 .015-.03zm-2.214 2.185c.122-.204.831-1.384.92-1.787a.018.018 0 0 1 .03-.007c.471.55 1.468.866 1.545.885h.008l1.28-.394.287.213-1.34 1.229a.9.9 0 0 0-.52-.228c-.77-.098-1.975.076-2.194.11a.016.016 0 0 1-.006-.021zm3.31 4.029a.8.8 0 0 0-.249.074l-.915-.7a.02.02 0 0 1 0-.019l.458-.948a.016.016 0 0 1 .03 0l.752 1.18zm-1.942-1.025-.626-.468 1.2-1.1zm0-1.623-.974.894-.977-.727a11.265 11.258 0 0 0 1.97-.16zm-.778 1.553.643.478-.077.211a.286.286 0 0 0 .172.369l1.34.488.04.03a.753.752 0 0 0-.019.473l-.295.192a3.09 3.088 0 0 0-1.919-1.217zm-.208 1.661a2.46 2.458 0 0 1 1.465.925l-1.717 1.092zm.822 4.48a2.46 2.46 0 1 1-1.235-4.53l-.309 2.456a.21.21 0 0 0 .096.203.21.21 0 0 0 .223 0l2.089-1.328a2.462 2.46 0 0 1-.866 3.198zm1.83-8.045a.01.01 0 0 1 0-.01 1.3 1.3 0 0 0-.063-.518l1.133-1.033-.49 2.875zm6.486 2.751a2.46 2.458 0 0 1-3.418-3.362l1.95 1.452a.21.21 0 0 0 .237.008.2.2 0 0 0 .054-.05.21.21 0 0 0-.043-.295l-1.953-1.45a2.4 2.4 0 0 1 .526-.443 2.46 2.46 0 1 1 2.644 4.147Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/powers.svg�����������������������������������0000664�0000000�0000000�00000001024�14753064456�0025137�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.31 12.347s-.008.73-.008 1.068c0 .34.339.544.777.544v.486h-2.988v-.486c.408 0 .79-.204.79-.544v-2.673c0-.545-.52-.557-.79-.595v-.466h2.55c1.042 0 2.403-.125 2.403 1.228 0 1.403-1.233 1.441-2.304 1.441zm-.017-2.212v1.559h.494c.35 0 .777-.063.777-.772 0-.749-.318-.795-.907-.795-.254 0-.364.008-.364.008M12 4.551l12 7.45-12 7.448L0 12zm-8.645 7.45c2.764 1.713 7.373 4.575 8.645 5.364L20.644 12A7142 7142 0 0 0 12 6.636c-1.272.787-5.881 3.649-8.645 5.365"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/prdotco.svg����������������������������������0000664�0000000�0000000�00000000675�14753064456�0025305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4.67a7.3 7.3 0 0 1 5.183 2.147 7.27 7.27 0 0 1 1.898 3.285l1.79-1.79a1.832 1.832 0 0 1 2.592 2.59l-6.28 6.281A7.3 7.3 0 0 1 12 19.33a7.3 7.3 0 0 1-5.183-2.147 7.3 7.3 0 0 1-1.898-3.285l-1.791 1.79a1.832 1.832 0 1 1-2.591-2.59c2.092-2.094 4.19-4.19 5.95-5.951C8.183 5.287 10.258 4.672 12 4.67m2.592 4.738a3.666 3.666 0 1 0-5.184 5.185 3.666 3.666 0 0 0 5.184-5.185"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/preact.svg�����������������������������������0000664�0000000�0000000�00000006436�14753064456�0025112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10.406A1.594 1.594 0 0 0 10.406 12 1.594 1.594 0 0 0 12 13.594 1.594 1.594 0 0 0 13.594 12 1.594 1.594 0 0 0 12 10.406m5.499-4.33a3 3 0 0 1 .643.054 1.7 1.7 0 0 1 .48.172 1.1 1.1 0 0 1 .29.235 1 1 0 0 1 .185.315 1.5 1.5 0 0 1 .084.452c.007.195-.015.398-.058.603a4.5 4.5 0 0 1-.244.778c-.137.334-.304.66-.49.978q-.37.624-.817 1.207c-.145.191-.3.376-.455.561q-.329-.357-.673-.7a24 24 0 0 0-2.05-1.797l-.23.296.23-.296-.018-.014-.461.592.018.014a23 23 0 0 1 1.984 1.74q.361.355.703.73c-.099.108-.194.22-.296.326q-.149.156-.301.308l.53.53q.159-.158.313-.32c.085-.088.164-.182.248-.272.065.078.135.152.198.231a13 13 0 0 1 .909 1.262c.211.336.404.681.564 1.036a5 5 0 0 1 .293.806 3 3 0 0 1 .102.637c.008.178-.007.351-.05.508a1.1 1.1 0 0 1-.157.338h-.001a1 1 0 0 1-.26.256 1.5 1.5 0 0 1-.418.191c-.188.054-.39.081-.6.09-.266.01-.538-.01-.814-.05a8 8 0 0 1-1.067-.238c-.464-.137-.92-.307-1.369-.5h-.001a18 18 0 0 1-1.71-.86l-.025-.015a24 24 0 0 0 1.686-1.194l-.21-.27.211.27.018-.015-.463-.59-.017.014a23 23 0 0 1-2.168 1.505 19 19 0 0 1-1.827.983 13 13 0 0 1-1.444.576 9 9 0 0 1-1.142.296 5 5 0 0 1-.853.09 3 3 0 0 1-.643-.055 1.7 1.7 0 0 1-.48-.172 1.026 1.026 0 0 1-.475-.549 1.5 1.5 0 0 1-.084-.453 2.5 2.5 0 0 1 .058-.603c.055-.261.14-.52.245-.777a8 8 0 0 1 .49-.978 12 12 0 0 1 1.271-1.767q.348.377.712.737a24 24 0 0 0 2.02 1.765l.461-.591a23 23 0 0 1-1.955-1.709q-.381-.375-.741-.769.147-.164.295-.325a23 23 0 0 1 .31-.317l-.53-.53q-.162.163-.321.328c-.085.089-.165.183-.248.273-.055-.066-.114-.128-.169-.195a14 14 0 0 1-.916-1.263 9 9 0 0 1-.571-1.04 5 5 0 0 1-.308-.838 3 3 0 0 1-.102-.637 1.7 1.7 0 0 1 .05-.507q.051-.187.157-.339h.001c.068-.098.158-.186.26-.256a1.5 1.5 0 0 1 .419-.19 2.5 2.5 0 0 1 .599-.09 4.6 4.6 0 0 1 .814.048 8 8 0 0 1 1.067.24 12 12 0 0 1 1.369.5 17 17 0 0 1 1.736.874 24 24 0 0 0-1.694 1.202l.462.59a23 23 0 0 1 2.13-1.484 19 19 0 0 1 1.83-.99c.474-.222.956-.42 1.448-.583a9 9 0 0 1 1.146-.303c.298-.056.595-.092.887-.096m-.01-.75h-.001a6 6 0 0 0-1.014.108 10 10 0 0 0-1.245.329 14 14 0 0 0-1.529.616c-.583.272-1.146.582-1.696.91a18.04 18.04 0 0 0-2.152-1.112 13 13 0 0 0-1.455-.531 8.4 8.4 0 0 0-1.172-.262 5.2 5.2 0 0 0-.95-.055c-.254.01-.516.043-.776.117a2.2 2.2 0 0 0-.636.294 1.77 1.77 0 0 0-.717 1.014 2.4 2.4 0 0 0-.077.737 3.7 3.7 0 0 0 .127.798 6 6 0 0 0 .351.959 10 10 0 0 0 .62 1.128 14 14 0 0 0 .967 1.335c.08.098.166.19.248.286a16 16 0 0 0-.552.679c-.311.408-.604.834-.867 1.282a8.4 8.4 0 0 0-.538 1.075 5.3 5.3 0 0 0-.283.908 3.2 3.2 0 0 0-.073.782 2.2 2.2 0 0 0 .13.688v.001a1.78 1.78 0 0 0 .81.94 2.4 2.4 0 0 0 .697.253 3.7 3.7 0 0 0 .805.07 6 6 0 0 0 .977-.102l.001-.001a9.4 9.4 0 0 0 1.24-.32 14 14 0 0 0 1.526-.61 19 19 0 0 0 1.742-.93q.181.108.366.214a18 18 0 0 0 1.785.898 13 13 0 0 0 1.455.53c.38.112.772.204 1.172.262a5.3 5.3 0 0 0 .95.056c.254-.01.516-.044.776-.118.218-.063.436-.156.636-.294a1.78 1.78 0 0 0 .717-1.014c.068-.248.087-.497.077-.736a3.7 3.7 0 0 0-.127-.799 6 6 0 0 0-.335-.923 10 10 0 0 0-.612-1.127 15 15 0 0 0-.959-1.333c-.09-.111-.188-.216-.28-.324q.284-.332.552-.679c.311-.409.604-.835.867-1.283a8.4 8.4 0 0 0 .538-1.075 5.3 5.3 0 0 0 .283-.907c.053-.25.083-.513.073-.783a2.2 2.2 0 0 0-.13-.688v-.001a1.78 1.78 0 0 0-.81-.94 2.4 2.4 0 0 0-.697-.252 3.7 3.7 0 0 0-.805-.07M12 0l10.392 6v12L12 24 1.607 18V6Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/precommit.svg��������������������������������0000664�0000000�0000000�00000001734�14753064456�0025627�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c-.563 0-1.127.215-1.557.645L.645 10.443c-.86.86-.86 2.254 0 3.114l9.798 9.798c.86.86 2.254.86 3.114 0l9.798-9.798c.86-.86.86-2.254 0-3.114L13.557.645A2.2 2.2 0 0 0 12 0m0 1.74c.493 0 .987.186 1.361.56l8.339 8.34c.75.75.75 1.973 0 2.722L13.361 21.7c-.374.375-.868.56-1.361.56s-.987-.185-1.361-.56L2.3 13.361a1.93 1.93 0 0 1 0-2.722L10.639 2.3c.374-.375.868-.56 1.361-.56m0 .62c-.333 0-.664.127-.92.382L2.742 11.08a1.295 1.295 0 0 0 0 1.84l8.338 8.338a1.296 1.296 0 0 0 1.84 0l8.338-8.338a1.295 1.295 0 0 0 0-1.84L12.92 2.742A1.3 1.3 0 0 0 12 2.36M9.207 7.624h3.959q.824 0 1.4.238.578.24.942.633.362.393.527.897a3.34 3.34 0 0 1 0 2.084q-.165.51-.527.902a2.6 2.6 0 0 1-.942.633q-.576.239-1.4.238h-2.043v3.156H9.207zm1.916 1.484v2.657h1.514q.332 0 .64-.05a1.5 1.5 0 0 0 .547-.193 1.05 1.05 0 0 0 .38-.404q.141-.26.142-.682 0-.42-.143-.681a1.05 1.05 0 0 0-.379-.404 1.5 1.5 0 0 0-.547-.194 4 4 0 0 0-.64-.049z"/></svg>������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/prefect.svg����������������������������������0000664�0000000�0000000�00000000220�14753064456�0025245�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8.003 4.288 4.002 12 0l7.713 4v8.004L12 16v8l-7.71-4v-8L12 16z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/premierleague.svg����������������������������0000664�0000000�0000000�00000004064�14753064456�0026455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.176 0s-.681 1.938-.867 2.527C9.844 2.202 8.386 1.194 7.78.775c.14.806.356 2.124.403 2.403-.124-.093-.821-.698-1.875-1.194.589.682 1.008 1.736 1.271 2.588a10.57 10.57 0 0 1 5.238-1.379c.977 0 1.94.14 2.854.403.093-.884.279-1.968.682-2.758-.915.728-1.474 1.503-1.551 1.596-.031-.186-.093-1.52-.17-2.434-.372.403-1.8 2.016-2.063 2.264C12.384 1.938 11.176 0 11.176 0m1.674 3.86c-1.674 0-3.3.386-4.696 1.115.713.046 1.224.668 1.395 1.164-.558-.45-1.442-.667-1.985-.078-.511.589-.464 1.688.047 2.572-1.193-.605-1.194-2.185-.775-2.867A10.4 10.4 0 0 0 3.61 9.594l1.07.172c-1.24 1.426-2.107 3.953-2.107 5.146l1.75-.543c-.31 1.054-.401 4.602.653 6.385 0 0 1.38-.96 2.945-3.363.65 2.17.356 3.985 0 5.767 2.82 1.581 6.09.696 8.012-.683l.357 1.35c2.248-1.489 3.488-3.628 3.72-6.124l.837.93c1.286-3.829.28-6.883-1.565-9.502l-.078.637-.79-.87s.17-.077.31-.263c.03-.078-.046-.495-.371-.774-.31.078-.56.264-.684.45a3.2 3.2 0 0 0-.93-.543c.062.077.604.79.65 1.007.466.388 1.102.837 1.52 1.395-.34-.403-1.984-.497-2.728-.078 0 0-.744-.868-1.426-1.473-.14-.511.326-.96.326-.96s-.48-.03-.93.42c-.682-.512-1.55-.745-1.55-.745-.961.14-1.612.82-1.612.82.217.14.512.327.776.42.511.217 1.006.139 1.332.139.263 0 .636.078.636.078s.635.495 1.565 1.565c-1.426-.574-2.915.062-3.969-.45-1.24-.62-1.146-1.595-1.146-1.595s-.836-.11-.836-.141c0 0 .618-.82 1.548-1.1l-.464-.402c.558-.465 1.534-1.085 3.115-1.24 0 0 .683.262 2.11 1.285.232-.326.308-1.008.308-1.008.728.248 2.217 1.333 2.806 1.984-.325-.759-.559-1.223-.636-2.013-.357-.357-1.24-1.101-3.069-1.551.295.605.264 1.115.264 1.115-.34-.45-1.055-1.146-1.55-1.332-.295-.015-.605-.047-.93-.047zm3.271 7.068a4.3 4.3 0 0 0 1.256.697v1.348c-.465.403-1.985 1.675-3.008 1.566-.573-1.1-1.115-2.107-1.115-2.107s1.565-1.318 2.867-1.504m2.975.031c.465 1.131.59 2.48.078 3.379-.28-.605-.636-.947-1.008-1.35v-1.347s.418-.264.93-.682m-.977 3.395c.465.511.559 1.068.559 1.068-.202 1.131-.836 1.846-1.301 2.14.046-.821-.172-1.519-.172-1.519-.34.372-1.13.743-1.596.836l-.697-1.3c.822-.032 2.201-1.194 2.201-1.194z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/prepbytes.svg��������������������������������0000664�0000000�0000000�00000001305�14753064456�0025637�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.427 0 .1 5.372.102 12c0 6.628 5.327 12 11.898 12s11.898-5.374 11.898-12c0-6.628-5.327-12-11.898-12m1.408 7.16h1.127v3.914l.268-.185a3.57 3.57 0 0 1 2.252-.7q.015.001.029.003a3.493 3.493 0 0 1 3.297 3.673c-.216 3.54-5.07 4.585-6.625 1.395-.376-.776-.348-.484-.375-4.506zm-4.732.133a3.43 3.43 0 0 1 2.13.754 3.5 3.5 0 0 1-4.263 5.55c-.08-.053-.19-.106-.27-.16-.026 0-.027.857-.027 1.93v1.93H5.12v-3.19c0-3.861.001-4.076.377-4.828A3.6 3.6 0 0 1 7.91 7.375q.381-.085.766-.082m-.069 1.103a2.319 2.319 0 1 0 .59.08 2.2 2.2 0 0 0-.59-.08m8.42 2.897a2.379 2.379 0 0 0-.775 4.666 2.378 2.378 0 0 0 1.258-4.586 1.5 1.5 0 0 0-.483-.08"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/prestashop.svg�������������������������������0000664�0000000�0000000�00000006100�14753064456�0026010�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.558 1.034C5.174 1.034 0 6.21 0 12.592c0 1.258.201 2.47.574 3.597l.002-.007a12.4 12.4 0 0 1 .53-1.787l.011-.03q.129-.333.277-.66l.084-.181q.12-.256.253-.507.053-.102.108-.203c.02-.038.044-.073.064-.11q.14-.25.29-.493l.075-.114q.187-.292.393-.573l.035-.05q.217-.289.451-.563l.1-.118q.232-.266.481-.517l.099-.097a10 10 0 0 1 .546-.503c.74-2.48 3.005-4.285 5.686-4.285 1.079 0 2.152.31 3.071.873a6 6 0 0 1 2.211 2.407l.007.015.04.074v.003l.004.002a10 10 0 0 1 1.567 1.198q.06.054.12.109c.002 0 .006.005.007.006l-.002-.006-.001-.004v-.003l.042-.084c.377-2.384 1.43-4.102 2.67-4.102.934 0 1.762.975 2.276 2.476l.005.016.001.002q.218.236.424.521l.007.01.021.067-.02-.078c-1.542-4.569-5.863-7.857-10.952-7.857zM9.927 5.477C7.586 5.52 5.34 7.132 4.574 9.365l-.012.034a10 10 0 0 1 1.315-.895c2.806-1.656 6.479-1.646 9.278.016-.895-1.653-2.631-2.819-4.5-3.004a5 5 0 0 0-.728-.039m9.834.5a1.4 1.4 0 0 0-.39.067c-1.265.562-1.719 2.073-2.031 3.303l-.016.072c.365-.62.808-1.215 1.396-1.642.835-.687 2.105-.655 2.916.053.308.326.141.008.031-.22-.342-.75-1.025-1.653-1.906-1.634zM12.35 8.315l-1.07 3.27-.002.005-.006.002-4.498 1.112h-.009l4.456 1.087q.159.166.36.28h.002q.063.035.129.065l.01.005q.062.026.126.047l.021.008q.06.019.12.032l.033.008a1.7 1.7 0 0 0 .318.033 1.55 1.55 0 0 0 1.43-.948c.08-.186.123-.39.123-.604v-.011l-.001-.012a2 2 0 0 0-.01-.16l-.001-.002a2 2 0 0 0-.026-.153l-.001-.004a1.5 1.5 0 0 0-.096-.288v-.003a1.5 1.5 0 0 0-.348-.49v-.003zm3.148.626c.048 1.008.036 2.046-.1 3.057-.17 2.018-1.19 3.798-1.972 5.616l-.03.08-.035.086c1.51-1.522 3.17-3.04 3.969-5.082.383-.636.118-1.342-.115-1.976-.17-.877-1.069-1.278-1.717-1.781m6.172.572-.588 2.688a2 2 0 0 0-.047.2q-.004.03-.01.06a2 2 0 0 0-.016.222l-.002.031h.003c0 .628.297 1.136.663 1.137a.4.4 0 0 0 .182-.045l.027-.015a1 1 0 0 0 .07-.047q.019-.016.036-.033a.8.8 0 0 0 .137-.168l.03-.054a1 1 0 0 0 .052-.108l.017-.04q.03-.08.053-.166l.002-.002.001-.003.404-.451-.407-.456v.001l-.02-.063zm-4.381.856c.69 1.716.85 3.707.091 5.43-.49 1.368-1.587 2.463-1.874 3.905q1.096.172 2.21.186c2.166.029 4.332-.42 6.284-1.365-2.04-2.869-4.121-5.755-6.711-8.156m-4.948.977a.583.583 0 1 1 0 1.166.583.583 0 0 1 0-1.166m9.352.37c.138 0 .249.19.249.426s-.111.426-.249.426c-.137 0-.248-.19-.248-.426 0-.235.11-.426.248-.426m-4.044.184a5 5 0 0 1-.05.29l-.006.023q-.016.076-.033.128c-.48 1.417-1.275 2.52-2.36 3.697q-.221.239-.459.484a59 59 0 0 1-1.196 1.205c-.112.11-.259.261-.425.436-.103.287-.22.61-.318.95q-.065-.023-.131-.049c-2.108-.815-3.519-1.904-3.519-1.904s1.086 1.414 2.915 2.74q.265.192.522.339c-.075 1.194.452 2.34 2.83 2.682a4.8 4.8 0 0 0 1.228.008l-.01-.029-.004-.01s-.167-.133-.379-.377a3.8 3.8 0 0 1-.584-.897 3.4 3.4 0 0 1-.266-.862 3.2 3.2 0 0 1-.006-.972q.025-.18.072-.366c.093-.374.255-.772.507-1.192l.002-.003.241-.404c1.103-1.86 1.797-3.275 1.506-5.441a9 9 0 0 0-.078-.476zm4.681.779.003.036v.01q-.001.019-.003.038.002-.02.003-.043 0-.02-.003-.04zm-.012.275zl-.002.01-.002.014zm1.353 5.928c-2.553 1.138-5.44 1.44-8.192 1.007-.14 1.108.384 2.218 1.214 2.93l.012.01c2.703-.433 4.975-2.168 6.966-3.946z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/presto.svg�����������������������������������0000664�0000000�0000000�00000004674�14753064456�0025152�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.372 0C.618 0 0 .618 0 1.372v21.256C0 23.383.618 24 1.37 24h21.257c.754 0 1.371-.617 1.371-1.372V1.372C24 .618 23.382 0 22.628 0zm11.96 4.485h.031a.854.854 0 0 1 .854.854.854.854 0 0 1-.854.854.854.854 0 0 1-.854-.854.854.854 0 0 1 .822-.854m-4.447.094h.007a.76.76 0 0 1 .76.76.76.76 0 0 1-.76.759.76.76 0 0 1-.759-.76.76.76 0 0 1 .752-.76m-4.463.095a.665.665 0 0 1 .664.665.665.665 0 0 1-.664.664.665.665 0 0 1-.665-.664.665.665 0 0 1 .665-.665m11.176 1.951a.95.95 0 0 1 .95.95.95.95 0 0 1-.95.947.95.95 0 0 1-.949-.948.95.95 0 0 1 .95-.949m-4.502.094h.032a.855.855 0 0 1 .855.854.855.855 0 0 1-.855.855.855.855 0 0 1-.855-.855.855.855 0 0 1 .823-.854m-4.446.095h.007a.76.76 0 0 1 .76.76.76.76 0 0 1-.76.76.76.76 0 0 1-.759-.76.76.76 0 0 1 .752-.76m11.167 1.951h.018a1.044 1.044 0 0 1 1.043 1.044 1.044 1.044 0 0 1-1.043 1.044 1.044 1.044 0 0 1-1.044-1.044 1.044 1.044 0 0 1 1.026-1.043m-4.454.095a.95.95 0 0 1 .95.95.95.95 0 0 1-.95.948.95.95 0 0 1-.949-.948.95.95 0 0 1 .95-.95m-4.47.095a.854.854 0 0 1 .854.854.854.854 0 0 1-.855.854.854.854 0 0 1-.854-.854.854.854 0 0 1 .854-.854m11.176 1.951a1.14 1.14 0 0 1 1.139 1.139 1.14 1.14 0 0 1-1.139 1.138 1.14 1.14 0 0 1-1.139-1.138 1.14 1.14 0 0 1 1.139-1.139m-4.47.095a1.044 1.044 0 0 1 1.043 1.044 1.044 1.044 0 0 1-1.043 1.043 1.044 1.044 0 0 1-1.044-1.043 1.044 1.044 0 0 1 1.044-1.044m-4.471.094a.95.95 0 0 1 .95.949.95.95 0 0 1-.95.949.95.95 0 0 1-.95-.949.95.95 0 0 1 .95-.949m6.706 2.046a1.14 1.14 0 0 1 1.139 1.14 1.14 1.14 0 0 1-1.14 1.137 1.14 1.14 0 0 1-1.138-1.138 1.14 1.14 0 0 1 1.139-1.139m-4.489.095h.018a1.044 1.044 0 0 1 1.044 1.043 1.044 1.044 0 0 1-1.044 1.044 1.044 1.044 0 0 1-1.044-1.044 1.044 1.044 0 0 1 1.026-1.043m-4.46.284h.007a.76.76 0 0 1 .76.76.76.76 0 0 1-.76.76.76.76 0 0 1-.759-.76.76.76 0 0 1 .752-.76m6.68 1.857h.033a1.14 1.14 0 0 1 1.14 1.138 1.14 1.14 0 0 1-1.14 1.139 1.14 1.14 0 0 1-1.139-1.14 1.14 1.14 0 0 1 1.106-1.137m-8.915.379h.007a.76.76 0 0 1 .76.759.76.76 0 0 1-.76.76.76.76 0 0 1-.759-.76.76.76 0 0 1 .752-.76m4.47 0h.008a.76.76 0 0 1 .76.759.76.76 0 0 1-.76.76.76.76 0 0 1-.76-.76.76.76 0 0 1 .753-.76M4.417 17.99h.007a.76.76 0 0 1 .76.76.76.76 0 0 1-.76.759.76.76 0 0 1-.76-.759.76.76 0 0 1 .753-.76zm4.47 0h.006a.76.76 0 0 1 .76.76.76.76 0 0 1-.76.76.76.76 0 0 1-.759-.76.76.76 0 0 1 .752-.76m4.477.002a.76.76 0 0 1 .538.222.76.76 0 0 1 0 1.073.76.76 0 0 1-1.075 0 .76.76 0 0 1 0-1.073.76.76 0 0 1 .537-.222"/></svg>��������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/prettier.svg���������������������������������0000664�0000000�0000000�00000003310�14753064456�0025456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.571 23.429A.57.57 0 0 1 8 24H2.286a.571.571 0 0 1 0-1.143H8c.316 0 .571.256.571.572M8 20.57H6.857a.571.571 0 0 0 0 1.143H8a.571.571 0 0 0 0-1.143m-5.714 1.143H4.57a.571.571 0 0 0 0-1.143H2.286a.571.571 0 0 0 0 1.143M8 18.286H2.286a.571.571 0 0 0 0 1.143H8a.571.571 0 0 0 0-1.143M16 16H5.714a.571.571 0 0 0 0 1.143H16A.571.571 0 0 0 16 16M2.286 17.143h1.143a.571.571 0 0 0 0-1.143H2.286a.571.571 0 0 0 0 1.143m17.143-3.429H16a.571.571 0 0 0 0 1.143h3.429a.571.571 0 0 0 0-1.143M9.143 14.857h4.571a.571.571 0 0 0 0-1.143H9.143a.571.571 0 0 0 0 1.143m-6.857 0h4.571a.571.571 0 0 0 0-1.143H2.286a.571.571 0 0 0 0 1.143M20.57 11.43h-9.14a.571.571 0 0 0 0 1.142h9.142a.571.571 0 0 0 0-1.142zM9.714 12a.57.57 0 0 0-.571-.571H5.714a.571.571 0 0 0 0 1.142h3.429A.57.57 0 0 0 9.714 12m-7.428.571h1.143a.571.571 0 0 0 0-1.142H2.286a.571.571 0 0 0 0 1.142m19.428-3.428H16a.571.571 0 0 0 0 1.143h5.714a.571.571 0 0 0 0-1.143M2.286 10.286H8a.571.571 0 0 0 0-1.143H2.286a.571.571 0 0 0 0 1.143m13.143-2.857A.57.57 0 0 0 16 8h5.714a.571.571 0 0 0 0-1.143H16a.57.57 0 0 0-.571.572m-8.572-.572a.571.571 0 0 0 0 1.143H8a.571.571 0 0 0 0-1.143zM2.286 8H4.57a.571.571 0 0 0 0-1.143H2.286a.571.571 0 0 0 0 1.143m16.571-2.857c0 .315.256.571.572.571h1.142a.571.571 0 0 0 0-1.143H19.43a.57.57 0 0 0-.572.572zm-1.143 0a.57.57 0 0 0-.571-.572H12.57a.571.571 0 0 0 0 1.143h4.572a.57.57 0 0 0 .571-.571zm-15.428.571h8a.571.571 0 0 0 0-1.143h-8a.571.571 0 0 0 0 1.143m5.143-2.857c0 .316.255.572.571.572h11.429a.571.571 0 0 0 0-1.143H8a.57.57 0 0 0-.571.571m-5.143.572h3.428a.571.571 0 0 0 0-1.143H2.286a.571.571 0 0 0 0 1.143m0-2.286H16A.571.571 0 0 0 16 0H2.286a.571.571 0 0 0 0 1.143"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pretzel.svg����������������������������������0000664�0000000�0000000�00000001430�14753064456�0025306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.439.03 10.757 6.516a.3.3 0 0 0-.142.236v5.426l2.72 1.704v-5.54a.3.3 0 0 1 .143-.235l6.24-3.48a.286.286 0 0 1 .415.237v10.322a2.81 2.81 0 0 1-1.38 2.555 2.83 2.83 0 0 1-2.909-.02l-6.24-3.951-.03-.03a5.57 5.57 0 0 0-6.245.333 5.52 5.52 0 0 0-1.977 5.917 5.46 5.46 0 0 0 2.662 3.331A5.66 5.66 0 0 0 6.676 24a6 6 0 0 0 1.597-.236 5.54 5.54 0 0 0 3.43-2.919l.09-.236-2.308-1.474-.237.56a2.8 2.8 0 0 1-1.74 1.478 2.84 2.84 0 0 1-2.189-.236 2.74 2.74 0 0 1-1.36-1.704c-.413-1.42.414-2.949 1.805-3.45.294-.105.604-.153.916-.142a2.83 2.83 0 0 1 1.449.413l6.241 3.977h.03a5.56 5.56 0 0 0 2.898.797 6 6 0 0 0 1.597-.236 5.57 5.57 0 0 0 2.896-2.049 5.54 5.54 0 0 0 1.067-3.377V.266A.29.29 0 0 0 22.576 0a.3.3 0 0 0-.137.03"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/prevention.svg�������������������������������0000664�0000000�0000000�00000003455�14753064456�0026023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.993 14.246h-.71v-1.891c0-.37-.211-.515-.508-.515-.327 0-.63.217-.63.768v1.638h-.689v-3.015h.688v.442h.015c.166-.298.478-.544.884-.544.565 0 .957.312.957.994zm-2.755-1.522c0 .986-.668 1.595-1.493 1.595s-1.479-.58-1.479-1.587c0-1.015.66-1.602 1.479-1.602s1.493.601 1.493 1.594m-.725.008c0-.63-.304-.979-.768-.979s-.768.363-.768.971c0 .595.304.972.768.972s.768-.37.768-.965zm-2.283-2.138a.403.403 0 0 1-.413.384.396.396 0 0 1-.385-.384.403.403 0 0 1 .385-.414.4.4 0 0 1 .413.384zm-.76.68h.724v3.045h-.725zm-.146 2.85c-.181.115-.333.194-.725.194-.551 0-.855-.318-.855-1.058v-1.412h-.377v-.588h.377v-.746l.754-.327v1.073h.768v.595h-.768v1.334c0 .347.08.485.282.485a.7.7 0 0 0 .348-.094zm-2.102.122h-.71v-1.891c0-.37-.21-.515-.508-.515-.326 0-.623.217-.623.768v1.638h-.696v-3.015h.688v.442h.015c.167-.298.479-.544.883-.544.566 0 .959.312.959.994zm-4.762-1.82c.08-.47.412-.666.732-.666.42 0 .66.298.667.668zm.652-1.296c-.877 0-1.399.652-1.399 1.594 0 .972.623 1.595 1.515 1.595.58 0 .877-.08 1.138-.275l-.203-.58c-.226.137-.478.218-.884.218-.537 0-.805-.393-.826-.72h2.087c.036-1.064-.283-1.832-1.427-1.832zm-4.081.145h.811l.69 2.073.66-2.073h.739L8.879 14.32h-.804zm.218 1.682H5.16c.022.325.29.717.827.717.405 0 .659-.073.883-.217l.203.58c-.267.195-.565.275-1.138.275-.891.007-1.514-.609-1.514-1.588 0-.95.521-1.594 1.398-1.594 1.146 0 1.465.768 1.428 1.827zm-.682-.53c-.007-.37-.247-.66-.668-.66-.318 0-.65.196-.73.66zm-1.928-1.233-.153.704a.8.8 0 0 0-.26-.043c-.602 0-.617.564-.617.732v1.66H2.9V11.23h.703v.465h.015c.137-.356.362-.56.696-.56a.7.7 0 0 1 .326.058zm-1.885.11c0 1.254-.898 1.624-1.957 1.624v1.318H0V9.781a8 8 0 0 1 1.095-.101c.898 0 1.66.405 1.66 1.623zm-.804 0c0-.703-.384-.942-.884-.942-.08 0-.167.02-.26.028v1.842c.6.028 1.144-.175 1.144-.929z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/prezi.svg������������������������������������0000664�0000000�0000000�00000010663�14753064456�0024762�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.996 0q-.315 0-.63.015l.134 2.547c.333-.02.66-.013.987 0L12.62.015A13 13 0 0 0 11.996 0m-1.89.148c-.413.067-.826.154-1.22.26l.667 2.467c.32-.086.64-.153.973-.206zm3.761 0-.387 2.52c.334.054.66.12.974.207L15.1.408a13 13 0 0 0-1.233-.26M7.699.795c-.393.154-.773.32-1.146.514l1.166 2.273q.443-.22.894-.4zm8.608.007-.92 2.38q.472.179.914.407l1.146-2.28c-.366-.187-.746-.36-1.14-.507M5.46 1.935a11 11 0 0 0-1.02.74l1.607 1.98c.26-.2.527-.4.807-.58zm13.062 0-1.38 2.147q.42.27.8.58l1.62-1.973a13 13 0 0 0-1.04-.754m-6.528 1.56c-1.167 0-2.253.22-3.32.674a8.4 8.4 0 0 0-2.707 1.82A8.3 8.3 0 0 0 4.16 8.703c-.467 1.04-.674 2.14-.674 3.307 0 1.154.207 2.254.674 3.307a8.5 8.5 0 0 0 1.807 2.7 8.4 8.4 0 0 0 2.7 1.82 8.5 8.5 0 0 0 3.32.674 8.4 8.4 0 0 0 3.308-.673 8.8 8.8 0 0 0 2.714-1.82 8.5 8.5 0 0 0 1.806-2.7 8.2 8.2 0 0 0 .687-3.308 8 8 0 0 0-.68-3.307c-.413-1.04-1.04-1.934-1.807-2.714a8.6 8.6 0 0 0-2.713-1.82 8.4 8.4 0 0 0-3.308-.673zm8.495.027-1.814 1.794c.234.24.46.487.674.753l1.98-1.62a11 11 0 0 0-.84-.927m-16.99.007q-.437.44-.826.92l1.994 1.6q.302-.378.653-.727zm8.489.667a7.6 7.6 0 0 1 3.033.606c.947.4 1.76.96 2.474 1.68.72.72 1.28 1.548 1.68 2.474a7.7 7.7 0 0 1 .627 3.054 7.7 7.7 0 0 1-.62 3.034c-.4.927-.96 1.76-1.68 2.48a7.8 7.8 0 0 1-2.474 1.68 7.8 7.8 0 0 1-3.034.607 7.85 7.85 0 0 1-3.033-.607c-.947-.4-1.76-.96-2.494-1.68a7.8 7.8 0 0 1-1.66-2.48A7.7 7.7 0 0 1 4.2 12.01c0-1.073.193-2.08.607-3.054.386-.926.96-1.76 1.66-2.473a7.9 7.9 0 0 1 2.487-1.68 7.6 7.6 0 0 1 3.034-.607m0 .686q-2.95.001-5.021 2.094C5.56 8.363 4.873 10.043 4.873 12.01c0 1.947.687 3.627 2.094 5 1.374 1.388 3.054 2.094 5.02 2.094 1.948 0 3.628-.706 5.021-2.093 1.394-1.374 2.074-3.054 2.074-5.001 0-1.967-.687-3.647-2.074-5.034-1.393-1.387-3.067-2.094-5.02-2.094m10.074.587-2.14 1.394c.187.273.347.56.494.853l2.273-1.167a11 11 0 0 0-.627-1.08m-20.136.007c-.226.353-.44.713-.633 1.093l2.274 1.16c.16-.306.326-.593.506-.873zm10.062.106c1.76 0 3.273.62 4.54 1.887 1.247 1.247 1.854 2.747 1.854 4.541 0 1.76-.607 3.274-1.854 4.52-1.26 1.248-2.78 1.868-4.54 1.868-1.774 0-3.294-.62-4.52-1.867-1.261-1.247-1.888-2.767-1.888-4.521 0-1.787.627-3.294 1.887-4.54 1.234-1.26 2.747-1.888 4.52-1.888zm0 .72c-1.567 0-2.927.547-4.04 1.66-1.121 1.121-1.661 2.461-1.661 4.041 0 1.567.54 2.907 1.66 4.028s2.474 1.68 4.04 1.68c1.58 0 2.908-.56 4.028-1.674q1.68-1.678 1.68-4.027 0-2.37-1.68-4.04c-1.12-1.12-2.44-1.667-4.027-1.667zM12 7.01q.129 0 .259.006c1.36.067 2.507.627 3.434 1.647.927 1.013 1.36 2.213 1.28 3.587-.047 1.387-.607 2.54-1.627 3.467-1.04.927-2.24 1.36-3.614 1.28q-2.078-.118-3.467-1.626c-.913-1.04-1.34-2.234-1.28-3.628.08-1.373.62-2.527 1.66-3.447.944-.869 2.07-1.286 3.355-1.286m11.2.68-2.386.926q.178.452.306.934l2.467-.654c-.106-.413-.24-.813-.386-1.207zM.786 7.71c-.147.386-.28.78-.387 1.186l2.467.66c.087-.32.194-.633.307-.94zm11.222.133c-.16 0-.314.013-.467.026v8.262h.007c.14.033.3.033.46.033s.32 0 .46-.033h.006V7.869c-.153-.013-.306-.026-.466-.026m-1.407.233a4 4 0 0 0-.927.467v6.907c.007.007.013.007.02.014.28.187.593.347.907.453zm2.814.007v7.841a4 4 0 0 0 .926-.467v-6.9q-.438-.301-.926-.474m-4.668 1.32a4.03 4.03 0 0 0-.907 2.594c0 .726.16 1.393.494 1.967a4 4 0 0 0 .413.633zm6.521.013v5.174c.16-.193.294-.406.414-.613.32-.587.473-1.254.473-1.967 0-.987-.287-1.854-.887-2.594m-15.129.707c-.06.414-.106.827-.126 1.247l2.547.133q.028-.498.106-.987zm23.71 0-2.52.4c.047.327.087.654.107.987v.007l2.547-.134v-.006c-.02-.427-.067-.84-.134-1.254m-2.407 2.367c-.026.34-.06.674-.113 1l2.527.394c.067-.414.107-.834.133-1.26zm-18.876.013-2.547.134c.02.42.067.827.127 1.227l2.52-.4a7 7 0 0 1-.1-.96zm18.563 1.947c-.087.32-.193.634-.307.94l2.387.914q.222-.588.394-1.207zm-18.256.014-2.467.653q.16.609.38 1.187l2.387-.9a13 13 0 0 1-.3-.94m.7 1.827L1.3 17.458q.28.55.62 1.073l2.147-1.38q-.262-.41-.494-.86m16.843.006a8 8 0 0 1-.494.854l2.14 1.393q.342-.532.634-1.093zm-15.77 1.64-1.98 1.614q.4.492.84.934l1.814-1.8a9 9 0 0 1-.673-.747zm14.683.014q-.302.392-.654.733l1.8 1.807q.448-.45.847-.94zm-13.276 1.4-1.613 1.98q.49.4 1.02.74l1.4-2.133c-.28-.187-.546-.38-.807-.587m11.882 0a8 8 0 0 1-.78.574l1.38 2.146q.531-.35 1.02-.74zM7.706 20.425l-1.16 2.273c.373.187.76.36 1.153.514l.9-2.387a10 10 0 0 1-.893-.4m8.588 0c-.293.146-.594.28-.9.393l.9 2.394c.4-.154.78-.327 1.16-.514zm-6.734.706-.667 2.467q.6.16 1.22.26l.407-2.52a9 9 0 0 1-.96-.207m4.887 0c-.32.087-.647.154-.973.207l.4 2.52a13 13 0 0 0 1.226-.26zm-2.94.307-.147 2.547q.628.03 1.267 0l-.134-2.547q-.498.03-.986 0"/></svg>�����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/prime.svg������������������������������������0000664�0000000�0000000�00000004564�14753064456�0024750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.787 15.292c-.336-.43-2.222-.204-3.069-.103-.257.031-.296-.193-.065-.356 1.504-1.056 3.968-.75 4.255-.397.288.357-.076 2.827-1.485 4.007-.217.18-.423.084-.327-.155.317-.792 1.027-2.566.69-2.996m-1.093 1.248c-2.627 1.94-6.437 2.97-9.717 2.97-4.597 0-8.737-1.7-11.87-4.528-.246-.222-.026-.525.27-.353 3.38 1.967 7.559 3.151 11.876 3.151a23.6 23.6 0 0 0 9.06-1.854c.444-.188.816.293.381.614m.482-5.038q-1.142 0-1.755-.626-.613-.627-.613-1.797 0-1.198.627-1.88t1.741-.682q.858 0 1.341.415.484.414.484 1.105t-.52 1.046q-.522.355-1.535.355-.525 0-.912-.101.055.617.373.884.318.268.963.268.259 0 .502-.033a6 6 0 0 0 .733-.157l.046-.004q.156 0 .156.212v.424q0 .147-.04.207a.34.34 0 0 1-.162.106 4 4 0 0 1-1.429.258m-.304-2.893q.47 0 .682-.143t.212-.438q0-.58-.69-.58-.885 0-1.024 1.087.37.075.82.074m-9.84 2.755q-.12 0-.176-.055-.055-.056-.055-.175V6.886q0-.129.055-.18.056-.05.176-.05h.663q.212 0 .258.202l.074.249q.488-.322.88-.456.391-.135.806-.134.83 0 1.17.59a3.8 3.8 0 0 1 .885-.452q.414-.138.857-.138.645 0 1 .36.354.359.354 1.004v3.253q0 .12-.05.175t-.18.055h-.885q-.12 0-.175-.055-.055-.056-.055-.175V8.176q0-.627-.562-.627-.498 0-1.005.24v3.345q0 .12-.05.175t-.18.055h-.884q-.12 0-.176-.055-.054-.056-.055-.175V8.176q0-.627-.562-.627-.516 0-1.013.249v3.336q0 .12-.051.175t-.18.055zM9.987 5.927q-.35 0-.562-.193-.212-.194-.212-.525 0-.332.212-.526.211-.193.562-.193.35 0 .562.193a.68.68 0 0 1 .212.526q0 .33-.212.525-.212.193-.562.193m-.443 5.437q-.12 0-.175-.055-.055-.056-.055-.176V6.886q0-.129.055-.18.056-.05.175-.05h.885q.129 0 .18.05c.051.05.05.094.05.18v4.247q0 .12-.05.176t-.18.055zm-3.681 0q-.12 0-.176-.055-.054-.056-.055-.175V6.886q0-.129.055-.18.056-.05.176-.05h.663q.212 0 .258.202l.12.497q.368-.405.695-.575.328-.17.696-.17h.13q.128 0 .183.05.056.051.056.18v.773q0 .12-.051.176-.051.054-.18.055a2 2 0 0 1-.166-.01 3 3 0 0 0-.258-.009q-.21 0-.516.06-.303.06-.515.152v3.097q0 .12-.051.175t-.18.055zM.344 13.262q-.12 0-.175-.05-.055-.052-.055-.18V6.886q0-.129.055-.18t.175-.05h.664q.21 0 .258.202l.064.24a2 2 0 0 1 .668-.424 2.1 2.1 0 0 1 .797-.157q.894 0 1.414.654.521.655.521 1.77 0 .765-.258 1.336-.258.57-.7.88a1.73 1.73 0 0 1-1.014.308q-.377 0-.719-.12a1.7 1.7 0 0 1-.58-.331v2.018q0 .128-.05.18-.052.05-.18.05zm2.018-2.81q.516 0 .76-.35.245-.351.245-1.106 0-.765-.24-1.115t-.765-.35q-.48 0-.903.248v2.424q.405.249.903.249"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/primefaces.svg�������������������������������0000664�0000000�0000000�00000001147�14753064456�0025744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.43 0 3.875 2.564l3.833.367L8.988 0Zm3.104 0L8.081 3.465 1.5 2.931l1.094 4.58 7.853 2.931h1.095V0Zm2.74 0v10.442h1.278l7.853-2.93 1.095-4.58-6.756.547L14.283 0Zm2.556 0 1.28 2.931 3.834-.367L17.387 0ZM2.778 8.244v6.229l4.383 3.663v-5.68l1.278-1.83-1.643.366-2.009-2.016zm18.261 0-2.009.732-2.009 2.016-1.643-.367 1.278 1.832v5.68l4.383-3.664zM9.17 10.625l-1.462 2.199v8.243l1.097 1.65L10.083 24h3.652l1.278-1.284 1.096-1.649v-8.243l-1.46-2.199-.914.55h-3.652zm-4.383 6.23v2.38l2.374 2.382V18.87zm14.243 0-2.374 2.015v2.747l2.374-2.381z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/primeng.svg����������������������������������0000664�0000000�0000000�00000001231�14753064456�0025261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0 .784 3.984l1.711 14.772L12 24l9.506-5.244 1.71-14.772ZM8.354 4.212h1.674L9.19 6.124l-2.51-.24Zm2.032 0h1.315v6.812h-.717L5.843 9.112l-.717-2.988 4.308.35Zm1.794 0h1.314l.953 2.261 4.427-.349-.717 2.988-5.14 1.912h-.837Zm1.673 0h1.674L17.2 5.885l-2.51.239zM5.963 9.59l1.315.478 1.315 1.315 1.076-.24-.837 1.196v3.704l-2.87-2.39zm11.955 0v4.063l-2.87 2.39v-3.704l-.837-1.195 1.077.239 1.314-1.315zm-7.786 1.536.596.36h2.384l.597-.36.953 1.437v5.388l-.715 1.078-.835.838h-2.384l-.834-.838-.715-1.078v-5.388zm-2.854 4.08 1.554 1.315v1.793L7.278 16.76Zm9.324 0v1.554l-1.553 1.554V16.52z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/primereact.svg�������������������������������0000664�0000000�0000000�00000003020�14753064456�0025751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.01 0c-1.212 0-2.297.62-2.903 1.66l-1.52 2.608H4.303A3.29 3.29 0 0 0 1.43 5.911a3.23 3.23 0 0 0 0 3.285l1.642 2.819-1.646 2.825a3.2 3.2 0 0 0 0 3.261 3.27 3.27 0 0 0 2.851 1.631h2.925l.865.856L9.09 22.34A3.32 3.32 0 0 0 11.991 24c1.211 0 2.296-.62 2.902-1.66l.816-1.4 1.22-1.208h2.77a3.29 3.29 0 0 0 2.87-1.643c.6-1.028.6-2.256 0-3.285l-1.642-2.82 1.646-2.824a3.2 3.2 0 0 0 0-3.261 3.27 3.27 0 0 0-2.851-1.631H16.43L14.91 1.66A3.32 3.32 0 0 0 12.01 0m0 .719c.948 0 1.798.486 2.273 1.3l1.31 2.249H8.425l1.31-2.248A2.6 2.6 0 0 1 12.01.719m.33 4.265v7.74h.962l5.904-2.174.014-.057.87 1.492-1.33 2.282.171-3.173-1.51.543-1.51 1.494-1.237-.27.962 1.357v4.212l1.452-1.296-.708 1.216v.001l-.744.622v.654l-.412.708V14.49l-1.098-1.63-.687.407h-2.746l-.687-.407-1.098 1.63v6.101l-.412-.706v-.912l-1.036-.867-.729-1.25 1.765 1.574v-4.212l.961-1.358-1.236.271-1.51-1.494-1.511-.543.188 3.455-1.477-2.534.942-1.617.122-.208.088.36 5.904 2.174h.824V4.985Zm1.512 0h.412l.96 2.17 1.935-.2.237.406-2.452.192zm-3.985.001h.412L9.187 7.552l-2.556-.205.072-.124.001.001.163-.28 2.04.21Zm-5.565.001h2.867L5.831 7.282l-1.592-.127.49 2.018-1.237 2.124-1.433-2.46a2.52 2.52 0 0 1 0-2.567 2.57 2.57 0 0 1 2.243-1.284m12.547 0h2.873c.928 0 1.759.476 2.223 1.272a2.5 2.5 0 0 1 0 2.543l-1.437 2.466-1.042-1.789.563-2.323-1.833.143Zm3.659 7.718 1.433 2.46a2.52 2.52 0 0 1 0 2.566 2.57 2.57 0 0 1-2.243 1.283h-2.277V18zm-17.016.03 3.22 5.525v.754H4.277a2.55 2.55 0 0 1-2.223-1.27 2.5 2.5 0 0 1 0-2.544z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/primevideo.svg�������������������������������0000664�0000000�0000000�00000010212�14753064456�0025762�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 9.508q0-.064.028-.09.027-.025.086-.025h.329q.105 0 .127.101l.032.119q.137-.133.33-.21a1 1 0 0 1 .396-.079q.442 0 .7.326.257.325.257.88 0 .38-.127.665-.128.285-.347.437a.85.85 0 0 1-.502.154q-.187 0-.355-.06a.9.9 0 0 1-.288-.164v1.003q0 .065-.025.09t-.09.025H.115q-.06 0-.086-.025-.028-.025-.028-.09zm1.113.32a.87.87 0 0 0-.447.124v1.206a.83.83 0 0 0 .447.124q.256 0 .376-.174.121-.175.121-.55 0-.381-.118-.555-.12-.174-.379-.174zm2.248-.087q.182-.202.344-.286a.73.73 0 0 1 .345-.085h.063q.064 0 .092.025t.027.09v.385q0 .06-.025.087t-.089.027l-.082-.004a1.4 1.4 0 0 0-.383.025q-.15.03-.256.076v1.54q0 .06-.025.087-.024.028-.089.028h-.437q-.06 0-.087-.028-.027-.027-.028-.087V9.508q0-.064.028-.09.027-.025.087-.025h.328q.105 0 .128.1zm1.526-.71a.4.4 0 0 1-.278-.096.34.34 0 0 1-.105-.262q0-.165.105-.26a.4.4 0 0 1 .278-.097q.173 0 .278.096t.105.261a.34.34 0 0 1-.105.262.4.4 0 0 1-.278.096m-.333.477q0-.064.027-.09.029-.025.087-.025h.438q.064 0 .089.025c.025.025.025.047.025.09v2.113q0 .06-.025.087-.025.028-.09.028h-.437q-.06 0-.087-.028-.027-.027-.027-.087zm1.837.11q.242-.16.435-.227.195-.067.4-.067.41 0 .579.294.232-.157.438-.225.205-.069.424-.069.319 0 .495.179.175.18.175.5v1.618q0 .06-.025.087-.025.028-.089.027h-.438q-.06 0-.086-.027-.028-.027-.028-.087V10.15q0-.312-.278-.312-.246 0-.497.119v1.664q0 .06-.025.087-.025.028-.09.027h-.437q-.06 0-.086-.027-.028-.027-.028-.087V10.15q0-.312-.278-.312-.255 0-.502.123v1.66q0 .06-.025.087-.025.028-.089.027h-.438q-.059 0-.086-.027t-.027-.087V9.508q0-.064.027-.09t.086-.025h.329q.104 0 .128.101zm4.387 1.16a1.8 1.8 0 0 1-.451-.05q.027.305.185.44.157.132.476.132.127 0 .249-.016a3 3 0 0 0 .362-.078l.023-.002q.078 0 .078.105v.211q0 .073-.02.103a.17.17 0 0 1-.08.053 2 2 0 0 1-.708.128q-.565 0-.868-.312-.304-.31-.304-.893 0-.597.31-.935.31-.34.862-.34.424 0 .664.206a.69.69 0 0 1 .24.55q0 .345-.258.52-.258.178-.76.177zm.064-.99q-.437 0-.506.54.183.037.406.037.232 0 .337-.071t.105-.218q0-.29-.342-.289zm2.948 1.946a.2.2 0 0 1-.075-.011.1.1 0 0 1-.05-.037.3.3 0 0 1-.038-.071l-.777-2.04-.023-.063a.2.2 0 0 1-.009-.05q0-.07.091-.07h.454q.073 0 .107.028.034.027.052.092l.468 1.622.477-1.622a.18.18 0 0 1 .052-.092q.034-.027.107-.027h.44q.091 0 .091.068a.2.2 0 0 1-.009.05l-.022.065-.777 2.039a.3.3 0 0 1-.039.07.1.1 0 0 1-.047.038.2.2 0 0 1-.078.01zm2.02-2.703a.4.4 0 0 1-.277-.097.34.34 0 0 1-.105-.26q0-.165.105-.262a.4.4 0 0 1 .277-.096q.172 0 .277.096.104.096.104.261t-.104.261a.4.4 0 0 1-.277.097m-.218 2.703q-.06 0-.086-.028-.028-.027-.028-.087V9.507q0-.064.028-.09.027-.024.086-.024h.436q.063 0 .089.025.024.025.024.09v2.111q0 .06-.024.087-.026.028-.09.028zm1.948.05a.87.87 0 0 1-.513-.153.97.97 0 0 1-.334-.426 1.6 1.6 0 0 1-.116-.63q0-.569.268-.91a.86.86 0 0 1 .709-.341.98.98 0 0 1 .622.206V8.458q0-.064.027-.09.027-.024.087-.025h.436q.063 0 .088.025t.025.09v3.161q0 .06-.025.087-.025.028-.088.028h-.364a.14.14 0 0 1-.084-.023.14.14 0 0 1-.043-.078l-.027-.105a.96.96 0 0 1-.668.256m.218-.504a.76.76 0 0 0 .418-.128v-1.21a.87.87 0 0 0-.45-.114q-.24 0-.358.18-.119.182-.118.548 0 .367.124.546.126.178.384.178m2.588-.51q-.253 0-.44-.05.027.302.18.432.154.13.465.13.125 0 .242-.016a3 3 0 0 0 .354-.076l.022-.002q.075 0 .075.103v.207q0 .072-.02.101a.17.17 0 0 1-.077.052 1.9 1.9 0 0 1-.69.126q-.551 0-.846-.306-.296-.306-.296-.876 0-.585.302-.917.303-.333.84-.333.414 0 .647.203a.68.68 0 0 1 .234.539q0 .337-.251.51-.252.173-.74.173zm.063-.97q-.428 0-.494.53.178.036.396.036.225 0 .329-.07.102-.069.102-.213 0-.285-.333-.284zm2.442 2.003q-.54 0-.845-.328-.304-.327-.304-.914 0-.582.304-.91.305-.327.845-.327c.54 0 .642.109.845.327q.304.328.304.91 0 .586-.304.914-.305.328-.845.328m0-.514q.477 0 .477-.728 0-.724-.477-.724t-.477.724q0 .729.477.728m-6.844 1.886c.405-.306.944-.408 1.39-.408.418 0 .756.09.828.185.15.2-.039 1.584-.775 2.244-.112.102-.22.047-.17-.087.166-.442.536-1.436.36-1.677-.175-.242-1.158-.115-1.6-.058-.068.008-.107-.02-.112-.061v-.023c.004-.036.03-.078.079-.115m-10.184-.172a.105.105 0 0 1 .106-.091q.04 0 .089.028a11.8 11.8 0 0 0 6.194 1.772c1.52 0 3.19-.34 4.726-1.043.232-.105.426.164.2.346-1.371 1.09-3.359 1.67-5.07 1.67-2.397 0-4.557-.956-6.191-2.547a.17.17 0 0 1-.054-.097Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/primevue.svg���������������������������������0000664�0000000�0000000�00000001516�14753064456�0025462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.41 0 3.845 2.565l3.849.366L8.878.226l2.663 6.883.35.904.384-.93L14.75 1.09v-.001l.275-.667 1.1 2.51 3.848-.367L17.407 0h-8.43Zm2.391 1.72-.73 1.735-2.886-.221-3.723-.302 1.1 4.58 5.282 1.964.014.026 2.558.945h.244l-.001-.005h.882V8.797Zm6.282.16-2.808 6.799v1.763h1.006l-.002.005.244-.005h.035l.002-.001h.024l2.376-.878.01-.018 5.469-2.033 1.099-4.58-4.042.318-2.749.206zM2.745 8.245v6.228l4.398 3.664v-5.68l1.284-1.832-1.65.367L4.76 8.977Zm18.327 0-2.017.733-2.015 2.014-1.65-.367 1.284 1.832v5.68l4.398-3.664zM9.137 10.599l-.304.487.009.016-1.148 1.722v8.245l1.1 1.648L10.075 24h3.665l1.283-1.282 1.1-1.65v-8.244l-1.15-1.723.01-.015-.18-.24-.147-.22-.013.007-.025-.034-.791.487h-3.655zm-4.376 6.256v2.381l2.382 2.382V18.87zm14.295 0-2.382 2.015v2.748l2.382-2.382z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/printables.svg�������������������������������0000664�0000000�0000000�00000000216�14753064456�0025765�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.678 4.8 12 9.6v9.6l8.322-4.8V4.8L12 0ZM12 19.2l-8.322-4.8V24Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/prisma.svg�����������������������������������0000664�0000000�0000000�00000000636�14753064456�0025123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.807 18.285 13.553.757a1.32 1.32 0 0 0-1.129-.755 1.31 1.31 0 0 0-1.206.626l-8.952 14.5a1.36 1.36 0 0 0 .016 1.455l4.376 6.778a1.41 1.41 0 0 0 1.58.581l12.703-3.757c.389-.115.707-.39.873-.755s.164-.783-.007-1.145m-1.848.752L9.18 22.224a.452.452 0 0 1-.575-.52l3.85-18.438c.072-.345.549-.4.699-.08l7.129 15.138a.515.515 0 0 1-.325.713"/></svg>��������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/prismic.svg����������������������������������0000664�0000000�0000000�00000004241�14753064456�0025272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.7 0C5.033 0 4.066.278 3.09.8A5.45 5.45 0 0 0 .825 3.07c-.522.977-.8 1.947-.8 4.622v.998c0 .199.078.388.218.529l1.77 1.774a.15.15 0 0 0 .257-.106V8.019c0-2.006.208-2.733.6-3.467A4.1 4.1 0 0 1 4.568 2.85c.731-.392 1.457-.6 3.459-.6h2.164c.199 0 .39-.08.53-.221l1.77-1.772A.15.15 0 0 0 12.387 0zm7.605 0c-.2 0-.392.08-.532.22l-1.769 1.775a.15.15 0 0 0-.044.104c0 .083.068.15.15.15h2.862c2.002 0 2.728.21 3.46.601a4.1 4.1 0 0 1 1.698 1.702c.39.734.599 1.461.599 3.467v2.17c0 .198.078.39.218.53l1.77 1.774a.15.15 0 0 0 .257-.106V7.692c0-2.675-.278-3.645-.8-4.623A5.45 5.45 0 0 0 20.91.801C19.935.278 18.968 0 16.3 0zM6.761 3.75a2.995 2.995 0 0 0-2.993 2.999v5.691a.75.75 0 0 0 .219.529l1.77 1.776a.149.149 0 0 0 .255-.106v-7.14a1.5 1.5 0 0 1 .097-.53c.072-.2.188-.385.348-.545l2.308-2.421a.15.15 0 0 0-.11-.253zm4.802 0c-.2 0-.39.08-.53.22L9.26 5.744A.151.151 0 0 0 9.366 6h7.124q.28.001.528.097c.2.072.386.188.546.347l2.413 2.313a.15.15 0 0 0 .255-.108v-1.9a2.995 2.995 0 0 0-2.993-3zm6.573 5.463a.15.15 0 0 0-.15.15v7.139a1.5 1.5 0 0 1-.095.53 1.5 1.5 0 0 1-.348.546l-2.308 2.42a.15.15 0 0 0 .108.255h1.896a2.997 2.997 0 0 0 2.993-3.002v-5.69a.75.75 0 0 0-.219-.53l-1.77-1.774a.15.15 0 0 0-.107-.044m-17.96 2.25a.15.15 0 0 0-.15.15v4.695c0 2.674.278 3.645.8 4.623a5.44 5.44 0 0 0 2.263 2.267c.976.522 1.943.802 4.612.802h.994c.2 0 .39-.08.53-.22l1.771-1.775a.149.149 0 0 0-.106-.255H8.027c-2.002 0-2.728-.208-3.46-.6a4.1 4.1 0 0 1-1.698-1.702c-.39-.734-.599-1.461-.599-3.467v-2.172a.75.75 0 0 0-.22-.528L.282 11.507a.15.15 0 0 0-.106-.044m21.703 1.5a.15.15 0 0 0-.15.15v2.868c0 2.006-.208 2.733-.6 3.467a4.1 4.1 0 0 1-1.698 1.702c-.731.392-1.457.6-3.459.6h-2.164a.75.75 0 0 0-.532.22l-1.769 1.773a.15.15 0 0 0-.043.107c0 .083.065.15.148.15H16.3c2.67 0 3.636-.28 4.612-.802a5.44 5.44 0 0 0 2.263-2.267c.522-.978.8-1.948.8-4.623v-.998a.75.75 0 0 0-.22-.529l-1.769-1.774a.15.15 0 0 0-.106-.044zm-17.96 2.238a.15.15 0 0 0-.151.15v1.898a2.997 2.997 0 0 0 2.993 3.001h5.676c.2 0 .39-.08.53-.22l1.773-1.775a.15.15 0 0 0 .044-.104.15.15 0 0 0-.15-.15H7.51a1.5 1.5 0 0 1-.53-.098 1.5 1.5 0 0 1-.546-.347l-2.413-2.313a.15.15 0 0 0-.103-.042z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/privatedivision.svg��������������������������0000664�0000000�0000000�00000000411�14753064456�0027036�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.384.248A.42.42 0 0 0 11.998 0a.43.43 0 0 0-.387.248L6.172 12.002l5.441 11.752a.428.428 0 0 0 .616.18.43.43 0 0 0 .157-.18l5.443-11.752zm-.386 18.449-3.101-6.695 3.101-6.697 3.1 6.697z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/privateinternetaccess.svg��������������������0000664�0000000�0000000�00000002042�14753064456�0030226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.808 5.764a.812.812 0 1 0-.812.812.81.81 0 0 0 .812-.812m3.196-.812a.812.812 0 1 0 .811.812.81.81 0 0 0-.811-.812m-.876 2.154a1.686 1.686 0 0 1-2.257 0 .21.21 0 0 0-.286.31 2.065 2.065 0 0 0 2.83 0 .21.21 0 1 0-.286-.31M11.947 0A7.16 7.16 0 0 0 4.79 7.158v1.385l.002.03a1.7 1.7 0 0 0-1.389 1.646 2.4 2.4 0 0 0-.33 1.22v9.178a2.415 2.415 0 0 0 1.785 2.328A1.77 1.77 0 0 0 6.473 24h2.005a1.76 1.76 0 0 0 1.577-.967h3.681c.301.594.91.968 1.576.967h2.008a1.77 1.77 0 0 0 1.59-1 2.41 2.41 0 0 0 2.018-2.38V11.44a2.4 2.4 0 0 0-.315-1.197v-.01a1.69 1.69 0 0 0-1.23-1.625V7.16A7.16 7.16 0 0 0 12.223 0Zm.032 2.559h.214a4.48 4.48 0 0 1 4.483 4.48v1.504h-1.008a1.67 1.67 0 0 0-1.174.48H9.527a1.68 1.68 0 0 0-1.183-.48h-.848V7.039a4.48 4.48 0 0 1 4.483-4.48m.025 9.492v.004a1.974 1.974 0 0 1 1.105 3.603.31.31 0 0 0-.132.299l.486 3.297a.3.3 0 0 1-.07.246.31.31 0 0 1-.235.107h-2.316a.31.31 0 0 1-.305-.353l.484-3.297a.29.29 0 0 0-.129-.295 1.975 1.975 0 0 1 .885-3.598 2 2 0 0 1 .227-.013"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/probot.svg�����������������������������������0000664�0000000�0000000�00000002107�14753064456�0025130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .04a1.743 1.743 0 0 0-.537 3.401l-.631 2.579H2.456A2.456 2.456 0 0 0 0 8.476v13.029a2.456 2.456 0 0 0 2.456 2.456h19.088c1.356 0 2.456-1.1 2.456-2.456V8.476c0-1.356-1.1-2.456-2.456-2.456h-8.403l-.616-2.575A1.743 1.743 0 0 0 11.999.04zM3.933 7.881h16.136c1.101 0 1.994.893 1.994 1.994v10.117a1.994 1.994 0 0 1-1.994 1.994H3.933a1.994 1.994 0 0 1-1.994-1.994V9.875c0-1.101.893-1.994 1.994-1.994m3.254 2.312a4.575 4.575 0 1 0 0 9.15 4.575 4.575 0 0 0 0-9.15m9.743 0a4.575 4.575 0 1 0 0 9.15 4.575 4.575 0 0 0 0-9.15m-9.743 1.07a3.506 3.506 0 1 1 0 7.011 3.506 3.506 0 0 1 0-7.011m9.743 0a3.506 3.506 0 1 1 0 7.011 3.506 3.506 0 0 1 0-7.011m-9.743 1.663a1.843 1.843 0 1 0 0 3.686 1.843 1.843 0 0 0 0-3.686m9.743 0a1.843 1.843 0 1 0 0 3.686 1.843 1.843 0 0 0 0-3.686m-6.927 6.5v2.159h.706v-2.159zm1.077 0v2.159h.705v-2.159zm1.076 0v2.159h.706v-2.159zm1.077 0v2.159h.706v-2.159zm1.077.03v2.1a1.08 1.08 0 0 0 .829-1.049v-.001c0-.51-.354-.937-.829-1.05m-4.678.028a1.08 1.08 0 0 0-.731 1.021v.001c0 .474.306.876.731 1.021z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/processingfoundation.svg���������������������0000664�0000000�0000000�00000000663�14753064456�0030073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.999 0a12 12 0 1 0 0 24A12 12 0 0 0 12 0zm1.183 5.255h.048c3.273 0 5.247 1.48 5.247 4.103 0 2.727-1.974 4.536-5.295 4.669v-1.742c1.837-.11 2.801-1.061 2.801-2.744 0-1.498-.957-2.442-2.8-2.516zm-1.773.026.005 11.896c.779.052 1.583.18 2.26.337l-.269 1.324H6.788v-1.324a15 15 0 0 1 2.26-.337V6.993a15 15 0 0 1-2.26-.337V5.33h2.26c.64 0 1.469-.028 2.361-.05z"/></svg>�����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/processwire.svg������������������������������0000664�0000000�0000000�00000003340�14753064456�0026170�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.939 5.27C21.211 4.183 20 2.941 18.784 2.137 16.258.407 13.332-.207 10.744.061c-2.699.291-5.01 1.308-6.91 3.004C2.074 4.637.912 6.559.4 8.392c-.518 1.833-.449 3.53-.264 4.808.195 1.297.841 2.929.841 2.929.132.313.315.44.41.493.472.258 1.247.031 1.842-.637.03-.041.046-.098.03-.146-.166-.639-.226-1.12-.285-1.492-.135-.736-.195-1.969-.105-3.109a9 9 0 0 1 .375-1.969c.406-1.367 1.262-2.794 2.6-3.98 1.441-1.277 3.289-2.066 5.046-2.27a9 9 0 0 1 3.199.203 9.6 9.6 0 0 1 2.975 1.348 8.9 8.9 0 0 1 2.374 2.363c.568.797 1.185 2.141 1.366 3.125.256 1.12.256 2.307.074 3.463-.225 1.158-.631 2.284-1.262 3.275-.435.768-1.337 1.783-2.403 2.545a9.4 9.4 0 0 1-3.184 1.434 8.7 8.7 0 0 1-1.728.24c-.521.016-1.212 0-1.697-.082-.721-.115-.871-.299-1.036-.549 0 0-.115-.18-.147-.662.011-4.405.009-3.229.009-5.516 0-.646-.021-1.232-.015-1.764.03-.873.104-1.473.728-2.123a2.43 2.43 0 0 1 1.777-.768c.211 0 .938.01 1.577.541.685.572.8 1.354.827 1.563.156 1.223-.652 2.134-.962 2.365a3.5 3.5 0 0 1-.962.51 4.1 4.1 0 0 1-1.531.182.15.15 0 0 0-.158.119l-.165.856c-.161.65.2.888.41.972.671.207 1.266.293 1.971.24a4.93 4.93 0 0 0 3.052-1.346 4.47 4.47 0 0 0 1.359-2.645 5.88 5.88 0 0 0-.556-3.35 5.37 5.37 0 0 0-2.81-2.583c-1.291-.508-2.318-.526-3.642-.188l-.015.005c-.86.296-1.596.661-2.362 1.452a5.4 5.4 0 0 0-1.217 1.953c-.26.752-.33 1.313-.342 2.185-.016.646.015 1.246.015 1.808v3.701c0 1.184-.04 1.389 0 1.998.022.404.078.861.255 1.352.182.541.564 1.096.826 1.352.367.391.834.705 1.293.9 1.051.467 2.478.541 3.635.496a12 12 0 0 0 2.291-.314 12.2 12.2 0 0 0 4.235-1.918c1.367-.963 2.555-2.277 3.211-3.393.841-1.326 1.385-2.814 1.668-4.343.255-1.532.243-3.103-.099-4.612-.27-1.4-.991-2.936-1.823-4.176z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/producthunt.svg������������������������������0000664�0000000�0000000�00000000375�14753064456�0026207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.604 8.4h-3.405V12h3.405a1.8 1.8 0 1 0 0-3.6M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0m1.604 14.4h-3.405V18H7.801V6h5.804a4.2 4.2 0 1 1-.001 8.4"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/progate.svg����������������������������������0000664�0000000�0000000�00000001663�14753064456�0025272�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.056 24a17 17 0 0 1-3.457-.698c-1.244-.364-2.899-1-2.913-2.319 0-.946.54-1.755 1.675-2.477a16 16 0 0 1 1.6-.844 40 40 0 0 1 2.2-.928V4.98l-4.41-.476v12.652a.85.85 0 0 1-.895.846.85.85 0 0 1-.904-.846V3.496a.906.906 0 0 1 .904-.903 1 1 0 0 1 .096.014l6.198.67a.9.9 0 0 1 .8.9v11.826a61 61 0 0 0 2.399-1.03c2.27-1.036 3.799-2.091 4.668-3.237 1.056-1.374 1.218-3.075 1.168-4.259a6.26 6.26 0 0 0-1.254-3.515 5.5 5.5 0 0 0-2.095-1.725 6.2 6.2 0 0 0-1.663-.486c-.6-.082-.896-.51-.864-.938s.384-.75.888-.8c.863-.071 1.503.147 2.375.536a7.76 7.76 0 0 1 2.86 2.32 8.17 8.17 0 0 1 1.6 4.522 9 9 0 0 1-.485 3.481 7.4 7.4 0 0 1-1.088 1.966c-1.584 2.065-4.39 3.34-5.31 3.764-.868.4-2.8 1.2-3.18 1.352V23.1a.9.9 0 0 1-.31.682.92.92 0 0 1-.567.218zm-.896-5.318c-.552.2-1.4.512-1.72.66-.32.147-1.215.565-1.61.91-.1.085-.417.385-.339.629s.446.374 1.904.766c.518.14 1.125.274 1.765.4z"/></svg>�����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/progress.svg���������������������������������0000664�0000000�0000000�00000000666�14753064456�0025477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.235 6.825v11.997a.92.92 0 0 1-.419.725l-.393.235c-1.961 1.135-3.687 2.134-5.431 3.14V9.948L5.759 3.454C7.703 2.338 9.64 1.211 11.586.1a.93.93 0 0 1 .837 0l10.81 6.243v.482zm-8.741 4.562A9632 9632 0 0 0 6.8 6.943a.94.94 0 0 0-.837 0q-2.6 1.5-5.199 3.004l8.113 4.684V24c1.732-.999 3.46-2.006 5.197-2.995a.93.93 0 0 0 .419-.724zM.765 19.317l5.613 3.241V16.07Z"/></svg>��������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/prometheus.svg�������������������������������0000664�0000000�0000000�00000001432�14753064456�0026016�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.372 0 12c0 6.627 5.373 12 12 12s12-5.373 12-12c0-6.628-5.373-12-12-12m0 22.46c-1.885 0-3.414-1.26-3.414-2.814h6.828c0 1.553-1.528 2.813-3.414 2.813zm5.64-3.745H6.36v-2.046h11.28zm-.04-3.098H6.391q-.056-.064-.111-.13c-1.155-1.401-1.427-2.133-1.69-2.879-.005-.025 1.4.287 2.395.511 0 0 .513.119 1.262.255-.72-.843-1.147-1.915-1.147-3.01 0-2.406 1.845-4.508 1.18-6.207.648.053 1.34 1.367 1.387 3.422.689-.951.977-2.69.977-3.755 0-1.103.727-2.385 1.454-2.429-.648 1.069.168 1.984.894 4.256.272.854.237 2.29.447 3.201.07-1.892.395-4.652 1.595-5.605-.529 1.2.079 2.702.494 3.424.671 1.164 1.078 2.047 1.078 3.716a4.64 4.64 0 0 1-1.11 2.996c.792-.149 1.34-.283 1.34-.283l2.573-.502s-.374 1.538-1.81 3.019z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pronounsdotpage.svg��������������������������0000664�0000000�0000000�00000001537�14753064456�0027060�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.991 5.14c.058-.102.01-.185-.108-.185l-2.051.001a.41.41 0 0 0-.321.184l-5.027 8.503c-.702 1.156-1.681 1.411-2.622 1.297-1.615-.196-2.483-1.381-2.483-2.96a2.88 2.88 0 0 1 2.876-2.876h3.192a.41.41 0 0 0 .319-.184l1.15-2.01c.058-.101.01-.184-.107-.184H5.254A5.26 5.26 0 0 0 0 11.98c0 1.4.547 2.91 1.542 3.897.98.972 2.29 1.328 3.688 1.357.789.009 2.956-.009 3.972-1.817l5.79-10.277Zm7.467 2.984c-.98-.972-2.29-1.329-3.688-1.357-.789-.01-2.956.009-3.972 1.816-1.138 2.024-5.79 10.277-5.79 10.277-.057.102-.008.185.109.185l2.051-.001a.41.41 0 0 0 .321-.184l5.027-8.503c.702-1.156 1.681-1.411 2.622-1.297 1.615.196 2.483 1.381 2.483 2.96a2.88 2.88 0 0 1-2.876 2.876h-3.192a.4.4 0 0 0-.319.184l-1.15 2.01c-.058.101-.01.184.107.184h4.555A5.26 5.26 0 0 0 24 12.02c0-1.4-.547-2.91-1.542-3.896"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/prosieben.svg��������������������������������0000664�0000000�0000000�00000000250�14753064456�0025606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.24 0h23.44v6.64H.24m23.52 1.28V24H.24s2.88-7.84 10.48-12.48c7.12-4.4 13.04-3.6 13.04-3.6"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/proteus.svg����������������������������������0000664�0000000�0000000�00000007651�14753064456�0025335�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.405 4.799a1.205 1.205 0 0 1 2.41 0l-.002.01c.695.286 1.497.777 2.197 1.256.404.277.818.586 1.235.907a6 6 0 0 0-.426.268l-.067.048c-.34-.258-.68-.513-1.01-.739-.952-.653-1.619-1.006-2.08-1.194-.176.33-.495.557-.88.614.154.58.553 1.366 1.15 2.29l.718 1.045c.145.2.307.409.464.615a39 39 0 0 0 1.348 1.671q.175.205.357.412c.153.176.305.352.465.53q.447.497.924 1c.295.308.598.608.9.906q-.402-.006-.797-.02a42 42 0 0 1-.497-.51 47 47 0 0 1-1.4-1.541l-.29-.336a41 41 0 0 1-1.203-1.463l-.001-.002a33 33 0 0 1-.857-1.146l-.008-.01-.01-.014-.127-.19-.142-.21-.396-.589c-.633-.996-1.048-1.849-1.202-2.49a1.2 1.2 0 0 1-.773-1.118m15.292 13.243c-.328-.815-.913-1.805-1.637-2.844-.199.03-.407.053-.611.079.776 1.102 1.341 2.068 1.656 2.793-.47.151-.813.572-.832 1.089-.633-.267-1.46-.762-2.418-1.468a32 32 0 0 1-2.303-1.903l-.413.366c2.087 1.872 4.08 3.26 5.339 3.691.215.33.569.561.992.561.665 0 1.205-.54 1.205-1.205 0-.585-.425-1.05-.978-1.16m-6.182-2.492-.228.006q-.152.007-.302.008c-.098 0-.192-.006-.29-.006-.126.111-.249.21-.375.317a37 37 0 0 1-.821.684h.001c-1.554 1.251-2.927 2.137-3.842 2.526l.001-.005c0-.529-.346-.965-.821-1.127.27-.607.695-1.351 1.29-2.206.099-.143.217-.294.323-.44-.208-.024-.423-.045-.624-.072-.721 1.014-1.272 1.939-1.593 2.685-.556.106-.985.573-.985 1.16 0 .666.54 1.206 1.205 1.206.397 0 .733-.205.952-.502 1.553-.494 4.027-2.36 6.11-4.234m-5.664-4.67a5 5 0 0 0-.056.758c0 .938.261 1.81.7 2.567.061.007.118.016.18.024.738.083 1.501.14 2.277.179q-.16-.163-.319-.328a45 45 0 0 1-2.782-3.2m8.17-3.374q.404.3.743.672.28.31.508.663c.186.287.333.599.46.92a36 36 0 0 1-2 2.448c-.12.135-.24.273-.361.405a30 30 0 0 1-.762.8 40 40 0 0 1-.857.838l-.202.193c-.19.003-.376.017-.565.017-.173 0-.34-.012-.51-.014l-.191-.188c-.3-.296-.602-.594-.895-.902a45 45 0 0 1-.726-.783l-.366-.408A41 41 0 0 1 7.209 9.63a5 5 0 0 1 .376-.733 5 5 0 0 1 .51-.678c.258-.291.552-.55.87-.776a5 5 0 0 1 .492-.31 5.128 5.128 0 0 1 5.084.053 5 5 0 0 1 .48.32m-.92 6.892a34 34 0 0 0 2.13-.194c.064-.008.122-.02.185-.028.427-.75.683-1.612.683-2.538 0-.196-.021-.387-.043-.578a36 36 0 0 1-2.704 3.09zm-1.445 1.149c.358.322.712.633 1.052.918a5.2 5.2 0 0 0 1.764-1.077c-.928.091-1.871.14-2.816.159m-1.2 1.196c.163.016.323.048.49.048.164 0 .319-.032.478-.047-.156-.135-.315-.285-.473-.426q-.23.2-.495.425m-3.013-1.335a5.2 5.2 0 0 0 1.763 1.064q.528-.419 1.09-.904v-.01l.007-.01a41 41 0 0 1-2.86-.14m6.727-8.102.057.042c1.257-.972 2.359-1.663 3.144-1.95.173.34.498.572.888.631-.148.457-.48 1.169-1.163 2.237l-.637.93c-.196.279-.409.562-.621.844-.437.581-.906 1.163-1.391 1.733l-.18.207c-.48.555-.974 1.1-1.48 1.61a40 40 0 0 1-.863.843c.27-.007.541-.01.81-.024a36 36 0 0 0 .44-.435c.46-.465.91-.959 1.352-1.46l.247-.287c.427-.496.841-.998 1.233-1.506l.002-.002c.365-.473.718-.946 1.04-1.412l.63-.932c.5-.795.99-1.688 1.19-2.398a1.2 1.2 0 0 0 .771-1.118 1.205 1.205 0 0 0-2.408-.01c-.9.342-2.113 1.107-3.481 2.177.137.083.274.171.42.28m.941.915c.128.157.259.31.371.484l.122.188c.233.032.454.075.683.111l.38-.555a35 35 0 0 0-1.556-.228m-8.372.056c-.453.064-.893.147-1.334.228l.371.54c.16-.027.314-.062.476-.088l.122-.193c.108-.172.238-.328.365-.487M23.98 11.4c-.252-1.298-2.532-2.114-4.4-2.57-.25-.062-.53-.11-.796-.165l-.362.537c.435.087.864.178 1.264.283 2.215.579 3.564 1.319 3.702 2.03.039.201-.031.407-.214.629-.547.662-1.995 1.313-3.974 1.788-.876.21-1.836.378-2.84.505q-.048.008-.097.015a34 34 0 0 1-2.108.194c-.227.013-.459.01-.687.02-.272.012-.191.02-.464.025h-.353c-.226.025-.523.02-.746.02-1.522 0-2.91-.082-4.256-.234-3.227-.364-5.76-1.123-6.695-2.088q-.361-.372-.35-.741c.012-.372.771-1.216 3.544-2.018.48-.138.984-.263 1.503-.375l-.353-.524c-.448.1-.899.2-1.317.32C2.51 9.477.04 10.377 0 11.63c-.012.414.162.81.52 1.18 1.094 1.129 3.98 1.978 7.647 2.33 1.2.114 2.526.174 3.859.174.014 0-.014 0 0 0 .26-.001.514-.015.772-.02a36 36 0 0 0 2.95-.178c.185-.02.359-.047.54-.069l.42-.054c3.334-.458 6.022-1.365 6.93-2.465.3-.364.414-.743.34-1.127"/></svg>���������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/protocolsdotio.svg���������������������������0000664�0000000�0000000�00000005372�14753064456�0026715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.55.927c-.723.046-1.266.47-1.614 1.261a5 5 0 0 0-.215.6 11 11 0 0 0-.42 3.585c.052 1.007-.187 1.888-.6 2.797C.858 11.024.27 12.967.03 15.004c-.136 1.164.169 2.15 1.13 2.871.41.308.834.603 1.28.855 1.24.702 2.573 1.192 3.924 1.634a.8.8 0 0 1 .297.162c1.12 1.033 2.423 1.75 3.846 2.276 1.011.373 2.005.364 3.016-.01 1.057-.391 2.089-.853 2.944-1.576.76-.642 1.612-1.011 2.527-1.334 1.307-.462 2.566-1.037 3.69-1.872.934-.695 1.413-1.596 1.298-2.778-.023-.238-.04-.476-.076-.712-.3-1.942-.888-3.802-1.705-5.58-.356-.776-.658-1.524-.441-2.403-.075-.856-.128-1.726-.233-2.588-.083-.687-.24-1.365-.574-1.983-.442-.82-1.126-1.164-2.037-1-.32.057-.642.144-.94.273-1.61.698-2.904 1.8-3.95 3.198-.1.137-.194.184-.368.182a190 190 0 0 0-3.329-.002c-.144 0-.24-.014-.334-.144-.623-.877-1.389-1.615-2.256-2.247-.735-.536-1.51-1-2.406-1.22a2.6 2.6 0 0 0-.783-.08zm.096 1.152q.13-.002.292.04a4.5 4.5 0 0 1 .996.357c1.43.747 2.596 1.793 3.443 3.174.088.144.178.186.338.178.904-.042 1.806-.097 2.71-.103.62-.004 1.24.06 1.86.103.164.012.25-.04.337-.182.855-1.387 2.024-2.44 3.469-3.182a4.6 4.6 0 0 1 .973-.348c.43-.107.702.006.863.418.188.484.352.99.43 1.5.123.816.166 1.643.226 2.282-.037.648-.07 1.108-.086 1.569a.7.7 0 0 0 .08.322 21.8 21.8 0 0 1 2.174 6.377c.073.416.077.85.064 1.273-.013.481-.324.812-.673 1.1-.873.72-1.888 1.188-2.926 1.602-.714.284-1.452.51-2.174.775-.15.055-.3.149-.418.259-1.224 1.13-2.625 1.94-4.26 2.285-.37.078-.805.014-1.175-.098-1.473-.445-2.788-1.18-3.892-2.27a.7.7 0 0 0-.272-.149c-1.35-.43-2.684-.905-3.931-1.588-.35-.19-.676-.42-1.014-.632-.81-.51-1.026-1.267-.893-2.166.355-2.387 1.13-4.632 2.235-6.772a.75.75 0 0 0 .07-.375c-.106-1.522-.064-3.034.293-4.525.064-.266.162-.529.281-.775.146-.299.32-.442.58-.449m9.222 6.72c-.354.04-.54.264-.72.72q-.048.126-.081.253c-.197.782-.122 1.563-.025 2.352.108.89.498 1.492 1.367 1.832 1.379.54 2.11 1.645 2.442 3.047.08.343.148.688.228 1.068.39-.138.764-.265 1.135-.404.998-.373 1.972-.794 2.863-1.39.15-.1.224-.212.195-.393-.091-.586-.142-1.18-.273-1.758-.409-1.806-1.407-3.178-3.08-4.018-.61-.305-1.222-.614-1.861-.845a9.6 9.6 0 0 0-1.774-.444 1.6 1.6 0 0 0-.416-.02m-4.208.01a2 2 0 0 0-.264.036c-1.57.32-2.996.965-4.298 1.892-.489.348-.91.766-1.225 1.282-.727 1.193-1.073 2.5-1.152 3.886-.01.178.053.288.199.364.722.375 1.433.777 2.172 1.117.583.268 1.2.462 1.824.697.083-.39.15-.737.23-1.08.331-1.402 1.073-2.48 2.436-3.06.05-.02.093-.052.143-.069.723-.249 1.07-.77 1.185-1.516.143-.919.26-1.829-.03-2.736-.22-.7-.494-.872-1.22-.812zm2.594 7.503c-.96.045-1.653.137-2.274.505-.426.254-.559.555-.396.98.366.951 1 1.69 1.89 2.19.33.184.685.193 1.02.01.919-.498 1.555-1.252 1.929-2.22.14-.365.044-.626-.274-.864-.147-.11-.312-.219-.486-.266-.544-.146-1.097-.263-1.409-.335"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/protodotio.svg�������������������������������0000664�0000000�0000000�00000001121�14753064456�0026020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 11.997a1.316 1.316 0 1 1 0-2.632 1.316 1.316 0 0 1 0 2.632m2.916-.021c0-2.828-1.109-5.397-2.916-7.298a10.56 10.56 0 0 0-2.916 7.298c0 1.297.234 2.535.66 3.683-.618.9-1.074 2.16-1.275 3.616.639-.767 1.422-1.306 2.292-1.591.363.555.78 1.096 1.239 1.574.461-.494.876-1.02 1.239-1.59.87.271 1.653.826 2.29 1.576-.199-1.456-.655-2.716-1.275-3.615.427-1.155.66-2.385.66-3.69zM12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10m0-22C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/proton.svg�����������������������������������0000664�0000000�0000000�00000000731�14753064456�0025145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.474 17.75V24h4.401v-5.979c0-.582.232-1.14.645-1.551a2.2 2.2 0 0 1 1.556-.643h4.513a7.96 7.96 0 0 0 5.612-2.318 7.9 7.9 0 0 0 2.325-5.595 7.9 7.9 0 0 0-2.325-5.596A7.96 7.96 0 0 0 13.587 0H2.474v7.812h4.401V4.129h6.416c.995 0 1.951.394 2.656 1.097.704.7 1.1 1.653 1.101 2.646a3.74 3.74 0 0 1-1.101 2.648 3.77 3.77 0 0 1-2.656 1.097H8.627a6.16 6.16 0 0 0-4.352 1.795 6.13 6.13 0 0 0-1.801 4.338"/></svg>���������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/protoncalendar.svg���������������������������0000664�0000000�0000000�00000001555�14753064456�0026644�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.172 14.818v7.032h-4.276v-1.147c0-.584.21-1.151.592-1.596l3.684-4.288zm-4.93 5.884c0-.741.266-1.46.75-2.022l4.673-5.32c.522-.591 1.524-.92 2.262-.92h.967V7.007a1.92 1.92 0 0 0-1.928-1.914H0v14.295c0 1.36 1.11 2.462 2.482 2.462h7.76zM18.8 5.197a2.54 2.54 0 0 1 .747 1.81v5.434H24V4.613c0-1.36-1.11-2.462-2.482-2.462H2.482A2.473 2.473 0 0 0 .006 4.438h16.96c.694 0 1.345.27 1.834.76zm.34 14.742c.817 0 1.45-.451 1.45-1.136a.95.95 0 0 0-.79-.971v-.013a.96.96 0 0 0 .485-.346.94.94 0 0 0 .185-.565c0-.632-.549-1.081-1.343-1.081-.99 0-1.384.712-1.415 1.21h.843a.54.54 0 0 1 .577-.495c.318 0 .549.196.549.48 0 .283-.213.473-.732.473h-.3v.713h.346c.536 0 .807.176.807.492s-.26.532-.655.532a.67.67 0 0 1-.686-.51h-.873c.063.733.683 1.222 1.551 1.217zm2-3.39v.806l.79-.532v3.06h.82v-3.988h-.635l-.974.655z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/protondb.svg���������������������������������0000664�0000000�0000000�00000005136�14753064456�0025457�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.744 0C.781 0 0 .781 0 1.744v20.512C0 23.219.781 24 1.744 24h20.512c.963 0 1.744-.782 1.744-1.74V1.744C24 .781 23.218 0 22.26 0zm14.729 2.205v.004c.37 0 .704.08.996.25 1.26.728 1.55 2.996.904 5.846 2.8.855 4.625 2.238 4.625 3.695s-1.813 2.836-4.6 3.691c.65 2.84.367 5.102-.894 5.83a2.03 2.03 0 0 1-1.012.25c-1.232 0-2.846-.869-4.478-2.384-1.633 1.525-3.245 2.404-4.477 2.404-.376 0-.712-.079-1.006-.25-1.26-.728-1.55-2.996-.904-5.846-2.8-.855-4.625-2.238-4.625-3.695 0-1.452 1.814-2.83 4.605-3.69-.65-2.84-.366-5.103.895-5.831a2.03 2.03 0 0 1 1.012-.25V3.23c-.206 0-.377.035-.514.118-.606.352-.866 1.687-.656 3.398q.081.625.236 1.299c.875-.22 1.838-.385 2.85-.492a21 21 0 0 1 1.851-2.24C9.82 3.962 8.446 3.227 7.518 3.227V2.225c1.231 0 2.846.87 4.478 2.384 1.633-1.525 3.245-2.404 4.477-2.404m-.006 1.002c-.929.003-2.3.745-3.758 2.102a22 22 0 0 1 1.867 2.244c1.007.107 1.964.273 2.844.488.098-.455.181-.9.23-1.32.206-1.711-.059-3.04-.67-3.393a1.04 1.04 0 0 0-.513-.117zm-4.483 2.81c-.41.43-.824.91-1.23 1.438a26 26 0 0 1 2.478 0 18 18 0 0 0-1.248-1.437zM12 8.428q-1.025 0-2.03.089a25 25 0 0 0-1.08 1.71 23 23 0 0 0-.927 1.79c.283.6.591 1.196.933 1.783q.528.904 1.084 1.705.999.082 2.02.084 1.025 0 2.03-.088a25 25 0 0 0 1.08-1.71c.332-.592.644-1.194.927-1.79a23 23 0 0 0-.933-1.785 26 26 0 0 0-1.086-1.705A25 25 0 0 0 12 8.428m-3.334.23a23 23 0 0 0-1.848.35c.171.582.377 1.185.621 1.786a26 26 0 0 1 1.227-2.137zm6.658 0a23 23 0 0 1 1.23 2.127c.235-.597.442-1.194.608-1.77a19 19 0 0 0-1.838-.358zm2.81.62a22 22 0 0 1-.997 2.72q.624 1.409 1.008 2.73c.435-.142.854-.287 1.24-.454 1.583-.674 2.61-1.57 2.625-2.27 0-.703-1.027-1.587-2.615-2.267a14 14 0 0 0-1.26-.459zm-12.282.006c-.435.142-.856.287-1.243.453-1.588.67-2.615 1.566-2.615 2.27s1.027 1.588 2.615 2.267c.391.167.812.318 1.252.46a22 22 0 0 1 .996-2.717 22 22 0 0 1-1.005-2.733m6.142.668A2.05 2.05 0 0 1 14.043 12a2.05 2.05 0 0 1-2.049 2.049A2.05 2.05 0 0 1 9.947 12a2.05 2.05 0 0 1 2.047-2.049zm4.56 3.252a24 24 0 0 1-.58 1.08 26 26 0 0 1-.646 1.06 20 20 0 0 0 1.848-.357 19 19 0 0 0-.621-1.783zm-9.115.024a20 20 0 0 0-.605 1.77q.882.211 1.838.35a37 37 0 0 1-.647-1.044c-.21-.357-.4-.72-.586-1.076m9.99 2.728a21 21 0 0 1-2.849.492 21 21 0 0 1-1.851 2.24c1.461 1.35 2.834 2.086 3.763 2.086.205 0 .377-.034.514-.117.606-.352.864-1.685.654-3.396q-.083-.623-.23-1.305zm-10.845.01c-.098.454-.182.9-.23 1.32-.206 1.711.058 3.039.67 3.39.131.079.304.119.51.124.928 0 2.301-.743 3.763-2.102a21.5 21.5 0 0 1-1.867-2.244 22 22 0 0 1-2.846-.488m4.18.586c.41.528.83 1.007 1.246 1.437.41-.43.831-.91 1.232-1.437a26 26 0 0 1-2.478 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/protondrive.svg������������������������������0000664�0000000�0000000�00000001002�14753064456�0026167�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 6.595v12.79c0 1.36-1.11 2.462-2.482 2.462h-1.62V9a2.925 2.925 0 0 0-2.93-2.914l-9.42.053a.94.94 0 0 1-.55-.172L4.905 4.493a2.9 2.9 0 0 0-1.694-.536H.1A2.47 2.47 0 0 1 2.482 2.15h4.657c.47 0 .928.148 1.305.424l1.559 1.134c.38.276.837.424 1.308.424h10.207A2.47 2.47 0 0 1 24 6.595M18.897 9v12.85H2.482A2.47 2.47 0 0 1 0 19.387V4.957h3.21c.4 0 .792.122 1.118.353l2.095 1.476a1.94 1.94 0 0 0 1.13.353l9.402-.052A1.92 1.92 0 0 1 18.897 9"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/protonmail.svg�������������������������������0000664�0000000�0000000�00000000712�14753064456�0026007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.24 8.998 3.656-3.073v15.81H2.482C1.11 21.735 0 20.609 0 19.223V6.944l7.58 6.38a2.186 2.186 0 0 0 2.871-.042l4.792-4.284zm-5.456 3.538 1.809-1.616a2.44 2.44 0 0 1-1.178-.533L.905 2.395A.552.552 0 0 0 0 2.826v2.811l8.226 6.923a1.186 1.186 0 0 0 1.558-.024M23.871 2.463a.55.55 0 0 0-.776-.068l-3.199 2.688v16.653h1.623c1.371 0 2.481-1.127 2.481-2.513V2.824a.55.55 0 0 0-.129-.36z"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/protonvpn.svg��������������������������������0000664�0000000�0000000�00000000756�14753064456�0025700�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.176 20.058.858-1.28 6.513-9.838c.57-.86.026-2.014-1.005-2.131L.378 4.95l8.373 15.055a.84.84 0 0 0 1.424.052h.001zM23.586 7.14l-9.662 14.61c-1.036 1.567-3.38 1.478-4.293-.162l-.093-.168c.3-.01.594-.086.855-.235a1.85 1.85 0 0 0 .612-.57l.86-1.28 6.516-9.844c.46-.694.525-1.56.173-2.314a2.38 2.38 0 0 0-1.899-1.364L.493 3.956l-.476-.054C-.163 2.392 1.101.95 2.784 1.143l18.991 2.16c1.856.21 2.835 2.289 1.812 3.838z"/></svg>������������������mkdocs-material-9.6.4/material/templates/.icons/simple/protools.svg���������������������������������0000664�0000000�0000000�00000002731�14753064456�0025507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.505 15.452Q.27 14.63.14 13.762.01 12.891.01 12q0-2.49.94-4.673.94-2.184 2.572-3.804Q5.155 1.902 7.339.938 9.523 0 12.012 0q2.465 0 4.65.94 2.183.962 3.815 2.583 1.633 1.62 2.572 3.804t.94 4.673q0 .869-.118 1.714-.118.846-.352 1.644.21.047.34.07l.13.024-1.363 3.429-.188-.012-.54-.106Q21.1 19.937 20.02 20.9q-1.057.987-2.325 1.668t-2.724 1.056q-1.433.376-2.96.376-1.55 0-3.005-.376-1.433-.375-2.7-1.068-1.269-.693-2.35-1.656-1.08-.963-1.878-2.16-.282.094-.434.117l-.153.024-1.48-3.382.118.012zM22.744 12q0-2.23-.846-4.18-.845-1.95-2.301-3.405-1.456-1.456-3.429-2.301-1.949-.846-4.156-.846-2.231 0-4.18.846-1.973.845-3.429 2.3Q2.947 5.872 2.102 7.82 1.256 9.77 1.256 12q0 .751.106 1.491t.317 1.444q.892-.516 2.02-1.972 1.127-1.456 1.808-2.912.352-.728.916-1.597.54-.869 1.338-1.632.799-.763 1.855-1.256 1.057-.517 2.396-.517 1.315 0 2.419.587 1.103.587 1.913 1.35t1.304 1.492q.516.727.657.986.165.282.47.94.329.633.728 1.361.4.728.822 1.433.423.68.798 1.033.259.258.564.446t.61.329q.212-.728.33-1.48.117-.751.117-1.526M12.012 22.732q1.338 0 2.583-.305 1.268-.33 2.383-.916 1.116-.587 2.055-1.41.94-.821 1.668-1.83-.94-.494-2.173-1.645-1.233-1.15-2.5-3.358-.142-.235-.494-.94-.352-.704-.857-1.455t-1.115-1.339-1.268-.587q-.681 0-1.386.634-.704.61-1.303 1.386-.6.775-1.022 1.503-.423.704-.54.916-1.174 2.066-2.477 3.205-1.304 1.139-2.29 1.656.728 1.01 1.667 1.831.963.846 2.079 1.433 1.115.587 2.36.892 1.268.329 2.63.329"/></svg>���������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/protractor.svg�������������������������������0000664�0000000�0000000�00000000724�14753064456�0026025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.37 0 0 5.372 0 12s5.371 12 12 12 12-5.372 12-12S18.627 0 12 0m-.273 3.789v1.71h.545v-1.71a9.06 9.06 0 0 1 5.961 2.468l-1.277 1.278.386.386 1.277-1.278a9.06 9.06 0 0 1 2.469 5.96h-1.71v.546h1.717v2.001H2.905v-2H4.62v-.546H2.91a9.06 9.06 0 0 1 2.469-5.96L6.658 7.92l.386-.386-1.278-1.278a9.06 9.06 0 0 1 5.96-2.468zM12 6.965a5.91 5.91 0 0 0-5.913 5.912h11.824A5.91 5.91 0 0 0 12 6.965"/></svg>��������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/proxmox.svg����������������������������������0000664�0000000�0000000�00000002640�14753064456�0025341�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.928 1.825c-1.09.553-1.09.64-.07 1.78 5.655 6.295 7.004 7.782 7.107 7.782.139.017 7.971-8.542 8.058-8.801.034-.07-.208-.312-.519-.536-.415-.312-.864-.433-1.712-.467-1.59-.104-2.144.242-4.115 2.455-.899 1.003-1.66 1.833-1.66 1.833-.017 0-.76-.813-1.642-1.798S8.473 2.1 8.127 1.91c-.796-.45-2.421-.484-3.2-.086zM1.297 4.367C.45 4.695 0 5.007 0 5.248c0 .121 1.331 1.678 2.94 3.459 1.625 1.78 2.939 3.268 2.939 3.302s-1.331 1.522-2.94 3.303C1.314 17.11.017 18.683.035 18.822c.086.467 1.504 1.055 2.541 1.055 1.678-.018 2.058-.312 5.603-4.202 1.78-1.954 3.233-3.614 3.233-3.666 0-.069-1.435-1.694-3.199-3.63-2.3-2.508-3.423-3.632-3.96-3.874-.812-.398-2.126-.467-2.956-.138m18.467.12c-.502.26-1.764 1.505-3.943 3.891-1.763 1.937-3.199 3.562-3.199 3.631 0 .07 1.453 1.712 3.234 3.666 3.544 3.89 3.925 4.184 5.602 4.202 1.038 0 2.455-.588 2.542-1.055.017-.156-1.28-1.712-2.905-3.493-1.608-1.78-2.94-3.285-2.94-3.32s1.332-1.539 2.94-3.32C22.72 6.91 24.017 5.352 24 5.214c-.087-.45-1.366-.968-2.473-1.038-.795-.034-1.21.035-1.763.312zM7.954 16.973c-2.144 2.369-3.908 4.374-3.943 4.46-.034.07.208.312.52.537.414.311.864.432 1.711.467 1.574.103 2.161-.26 4.15-2.508.864-.968 1.608-1.78 1.625-1.78s.761.812 1.643 1.798c2.023 2.248 2.559 2.576 4.132 2.49.848-.035 1.297-.156 1.712-.467.311-.225.553-.467.519-.536-.087-.26-7.92-8.819-8.058-8.801-.069 0-1.867 1.954-4.011 4.34"/></svg>������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pterodactyl.svg������������������������������0000664�0000000�0000000�00000003044�14753064456�0026156�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.236 3.775a8 8 0 0 0-.535.004c-.576 0-1.573.103-2.201.234-1.834.367-4.348 1.65-5.5 2.855-1.362 1.415-1.362 1.755 0 .917 1.074-.708 4.663-2.227 5.187-2.227.157 0 .287.106.287.264 0 .13.524-.132 1.153-.604.628-.445 1.363-.969 1.625-1.152.334-.197.372-.275-.016-.291m1.262 2.449c-.475.01-.894.041-1.143.094-1.676.34-3.457 1.388-5.29 3.117-.97.917-1.782 1.571-1.782 1.414s.104-.367.262-.445c.419-.262 2.698-3.56 2.54-3.692-.209-.236-3.902 1.57-5.605 2.723-1.99 1.362-4.19 3.746-4.95 5.422-.34.707-.575 1.336-.523 1.389.053.026.89-.525 1.86-1.258.969-.734 1.833-1.257 1.912-1.178s-.42.732-1.127 1.44c-.707.733-1.206 1.31-1.127 1.31s1.152-.42 2.357-.943l2.174-.916.395.601c1.283 1.991 3.325 2.882 6.547 2.803 1.729-.026 2.096.028 2.986.656.55.367 1.153.68 1.336.68s.393.183.498.393c.079.21.418.394.733.394.524-.026.55-.053.158-.289-.262-.13-.473-.394-.473-.55 0-.158.21-.444.473-.628.419-.314.419-.34 0-.367-.236 0-.525.105-.604.262-.288.471-1.1.261-1.545-.367-.393-.629-.393-.655.577-.97l.968-.314-1.832-.89c-.995-.472-2.044-.865-2.306-.865-.42 0-.47-.13-.313-.864.603-2.829 3.325-4.794 8.46-6.103C23.133 8.02 24 7.733 24 7.628c0-.288-4.166-1.23-6.026-1.361a15 15 0 0 0-1.476-.043m-12.354 5.36c.157 0 .159.156-.05.392-.184.236-.394.341-.446.29-.183-.184.182-.683.496-.683zm13.07 6.023a.54.54 0 0 0-.417.264c-.079.13-.054.261.103.261.131 0 .342-.13.42-.261.079-.157.052-.264-.105-.264zm-2.827.787c-.577 0-.628.052-.34.393.183.21.628.392.968.392.577 0 .628-.052.34-.392-.183-.21-.628-.393-.968-.393"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pubg.svg�������������������������������������0000664�0000000�0000000�00000007220�14753064456�0024561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.425 20.693c-.107-.247-.132-.4-.131-.8 0-.376.015-.478.208-1.416a38 38 0 0 0 .2-1.015c-.1-.056-.481-.376-.7-.587-.49-.472-.799-.938-.942-1.415-.059-.195-.067-.282-.056-.592.013-.341.02-.378.127-.599a2 2 0 0 1 .257-.39c.14-.15.145-.161.188-.465.024-.171.072-.493.105-.715.054-.36.056-.424.018-.592a2.84 2.84 0 0 1 .082-1.529c.358-.99 1.39-1.681 3-2.007 1.226-.249 2.815-.265 4.374-.045 1.537.218 3.344.715 5.011 1.38.214.086.392.152.396.148.014-.014-1.28-.668-1.61-.814A17 17 0 0 0 8.28 8.073C7.472 7.92 7.22 7.9 6.147 7.9c-.931 0-1.068.007-1.46.073a7 7 0 0 0-.836.18c-.1.03-.056-.046.082-.141.516-.356 1.36-.69 2.23-.886.853-.191.851-.177.023-.165-.407.006-.74.002-.74-.009s.025-.041.055-.068a10 10 0 0 0 .342-.376c.493-.56 1.253-1.22 1.923-1.667 1.278-.854 2.553-1.345 4.124-1.588.51-.08 2.061-.08 2.6 0 1.682.245 2.964.707 4.14 1.49.554.37.864.624 1.339 1.101.953.958 1.613 2.02 2.191 3.527.31.808.601 1.76.756 2.474l.072.331.164.115c.09.063.183.152.206.198s.166.448.316.894c.151.445.286.814.3.82s.026.111.026.234c0 .213-.004.225-.086.264-.106.05-1.037.255-1.16.255-.127 0-.23-.11-.322-.343l-.177-.436c-.054-.128-.172-.416-.263-.638-.302-.739-.295-.725-.394-.766-.08-.033-.128-.026-.393.064-.166.057-.35.13-.407.165a.55.55 0 0 0-.221.4c-.001.091.23.762.289.84.067.089 1.591 1.11 1.688 1.131.06.013.253-.014.528-.074l.438-.094c.003 0 .016.215.028.478.021.45.018.486-.043.607-.104.204-.003.16-1.67.723-1.314.444-1.564.497-2.353.497a4.5 4.5 0 0 1-2.388-.644c-.48-.283-1.052-.767-1.224-1.037-.133-.209-.16-.04.34-2.195.1-.427.194-.781.211-.787.017-.005.09.1.163.236s.164.266.202.29.287.14.552.259c.409.182.515.217.695.228a.82.82 0 0 0 .79-.41c.083-.131.097-.2.213-1.07l.158-1.178c.098-.725.09-.957-.046-1.248-.153-.327-.328-.474-.881-.741-.918-.444-.862-.435-1.279-.204-.158.088-.29.161-.293.164a8 8 0 0 0 .313-.006l.318-.01.52.24c.408.19.555.275.678.392.301.29.393.655.31 1.241-.052.37-.085.458-.23.615-.185.202-.334.269-.596.27-.208 0-.243-.01-.732-.24-.509-.24-.516-.242-.79-.249l-.276-.007-.039.156-.166.685c-.162.673-.477 1.976-.735 3.038-.11.454-.258 1.063-.327 1.355-.159.668-.214.86-.307 1.075-.219.503-.689.99-1.2 1.245-.578.287-1.076.342-1.828.205a45 45 0 0 0-4.48-.615c-.606-.053-2.655-.053-3.051 0-.826.111-1.187.19-1.535.337a1.93 1.93 0 0 0-.847.672c-.174.257-.253.71-.191 1.092.029.177-.008.192-.079.03zm.317-3.394c0-.028.06-.365.165-.929.1-.538.212-.748.576-1.086.604-.56 1.758-.924 3.331-1.05.557-.045 2.451-.014 3.072.05 1.287.131 1.77.195 2.88.38.906.151.886.15.7.073a58 58 0 0 0-2.054-.744c-1.222-.412-1.941-.578-3.207-.74-.625-.08-2.496-.081-3.082-.001-1.13.154-1.95.382-2.568.717-.523.282-.895.643-1.049 1.02-.09.22-.075.702.03.956.124.299.332.586.65.9.436.428.556.526.556.454m-.558-4.09c.15-.107.649-.33.963-.43.525-.169.957-.256 1.805-.367.497-.065 2.617-.093 3.284-.043l.716.053c.286.022.316-.01.392-.418l.184-.974c.19-1 .248-1.318.249-1.375 0-.105-.107-.19-.281-.217-.792-.129-2.275-.198-3.255-.153-2.203.1-3.583.628-4.102 1.566a1.6 1.6 0 0 0-.219.662q-.018.188.01.105c.143-.436.52-.88.926-1.094.237-.125.26-.132.26-.088 0 .015-.063.058-.14.096q-.273.131-.513.593c-.153.295-.193.468-.297 1.291a61 61 0 0 1-.096.74c-.021.135-.008.14.114.053m9.586-.184c.066-.052.078-.085.078-.236 0-.159-.01-.184-.102-.266-.12-.108-.188-.114-.298-.028-.161.128-.122.44.069.544.11.06.16.057.253-.014m7.349-1.91c.223-.15.319-.421.251-.712-.118-.515-.662-.73-.966-.384-.283.322-.166.91.22 1.1.178.088.361.087.495-.004m-.321-.32c-.187-.102-.245-.433-.103-.586.108-.117.285-.115.4.006.166.172.172.42.016.551-.105.088-.19.096-.313.029m-6.548-.146c.098-.139.036-.446-.105-.521-.09-.049-.204-.039-.257.022-.14.16-.142.312-.003.476.1.12.29.132.366.023z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/publons.svg����������������������������������0000664�0000000�0000000�00000002221�14753064456�0025302�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm10.34 5.1c.083.014.114.096.156.158.054.354.1.71.154 1.065.157-.162.31-.328.49-.464.867-.666 2.05-.94 3.11-.63.72.21 1.315.72 1.756 1.316.187.263.348.547.45.855.198.582.225 1.206.198 1.815-.053 1.12-.433 2.244-1.169 3.103a4.03 4.03 0 0 1-2.616 1.41 4.4 4.4 0 0 1-2.188-.317q.029 1.514.038 3.028c.021.465-.021.938.087 1.396.031.14.123.292.28.308.302.036.608.013.912.02.057 0 .13.037.126.101.004.186.009.373-.004.56-.046.092-.17.07-.255.072a44 44 0 0 0-4.437 0l-.07-.056c-.004-.22-.063-.467.034-.671.3-.035.606.02.904-.032.191-.048.268-.26.295-.434.04-.32.027-.642.042-.963V8.348c0-.156.006-.31-.008-.465a.89.89 0 0 0-.34-.656c-.203-.158-.438-.265-.662-.388-.082-.052-.181-.097-.229-.187a1 1 0 0 1 .008-.337c.056-.066.144-.086.219-.122.73-.315 1.456-.636 2.185-.952.17-.068.346-.144.533-.144zm1.99 1.146c-.053 0-.104 0-.156.013a2.12 2.12 0 0 0-1.493.86c.005 1.44 0 2.88.003 4.32.005.327.073.676.302.924.524.512 1.302.692 2.014.593.577-.096 1.037-.538 1.279-1.054.344-.736.395-1.571.335-2.371-.053-.655-.181-1.312-.449-1.915-.184-.407-.442-.793-.811-1.054a1.7 1.7 0 0 0-1.024-.313z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pubmed.svg�����������������������������������0000664�0000000�0000000�00000000615�14753064456�0025101�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.23 7.982.006-1.005C7.846 1.417 5.096 0 5.096 0l.048 2.291C3.73 1.056 2.6 1.444 2.6 1.444l.118 15.307s4.218-1.796 5.428 5.505C10.238 13.535 21.401 24 21.401 24V9S10.52-.18 8.231 7.982zm9.79 9.941-1.046-5.232-1.904 4.507h-.96l-1.72-4.301-1.046 5.04H9.321l2.093-9.39h.802l2.491 5.543 2.508-5.557h.869l2.075 9.39h-2.138z"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pug.svg��������������������������������������0000664�0000000�0000000�00000006310�14753064456�0024416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.094 4.636c-2.066 0-3.682.204-4.922.57l.091-.084c.038-.037-.05-.062-.228-.068-.534-.018-1.867.143-2.99.705C2.772 6.358-.073 9.504 0 9.69s1.46 1.345 1.872 1.795c.262.3 1.048 2.959 1.76 2.51.188-.131.265-.651.33-1.293.058.497.115 1.013.193 1.48.112.749 1.087 1.347 1.2 2.059.138 1.014.76 1.723 1.98 2.174.484.668 1.238.33 1.8.634.9.487 1.91.262 2.92.262 1.012 0 1.985.186 2.92-.3.577-.3 1.32.03 1.81-.58 1.225-.45 1.831-1.164 1.972-2.19.112-.712 1.048-1.31 1.16-2.059.064-.38.11-.802.158-1.203.057.5.13.904.291 1.016.674.449 1.498-2.21 1.76-2.51.412-.45 1.797-1.608 1.872-1.795.074-.188-2.808-3.333-4.08-3.932-1.124-.562-2.457-.723-2.991-.705-.167.005-.245.029-.225.062-1.174-.308-2.672-.48-4.61-.48m.03.5c2.203 0 3.848.225 5.01.615.133.045.238.098.358.147.69.715 1.624 1.83 2.014 3.117.025.08.04.166.063.248v.008c.045.77.316 1.417.23 1.99-.153.998-.228 1.973-.373 2.84l-.002.004v.004c-.029.192-.218.476-.478.807-.261.33-.596.702-.682 1.248v.006l-.002.003c-.1.733-.42 1.2-1.17 1.582.125-.444.205-1.055.205-1.963.037-1.123.077-1.572-.86-2.695a5.53 5.53 0 0 0-2.792-1.898c-.111-.39-.722-.836-1.551-.836s-1.415.422-1.535.82a5.53 5.53 0 0 0-2.846 1.914c-.936 1.123-.86 1.61-.86 2.696 0 .903.08 1.513.203 1.96-.77-.384-1.107-.856-1.207-1.58v-.01c-.087-.553-.437-.923-.707-1.253s-.462-.617-.49-.801l-.002-.004V14.1c-.144-.867-.22-1.84-.373-2.838v-.002c-.085-.573.183-1.22.229-1.99v.015c.013-.143.017-.24.025-.37.36-1.16 1.153-2.173 1.805-2.876a6 6 0 0 1 .724-.289c1.192-.391 2.86-.615 5.063-.615M6.913 8.94a1.647 1.647 0 0 0-1.635 1.648 1.647 1.647 0 0 0 1.648 1.647 1.7 1.7 0 0 0 .442-.06q.523-.564 1.111-1.042a1.7 1.7 0 0 0 .094-.545 1.647 1.647 0 0 0-1.647-1.648zm10.297 0a1.647 1.647 0 0 0-1.637 1.648 1.65 1.65 0 0 0 .15.684q.47.396.895.848a1.7 1.7 0 0 0 .604.115 1.647 1.647 0 0 0 1.646-1.647 1.647 1.647 0 0 0-1.646-1.648zm-9.871.486a.41.41 0 0 1 .41.412.41.41 0 0 1-.41.412.41.41 0 0 1-.413-.412.41.41 0 0 1 .413-.412m9.47 0a.41.41 0 0 1 .413.412.41.41 0 0 1-.412.412.41.41 0 0 1-.412-.412.41.41 0 0 1 .412-.412m-5.109 1.486a.15.3 17.23 0 1 .03.004.15.3 17.23 0 1 .054.33.15.3 17.23 0 1-.232.243.15.3 17.23 0 1-.053-.33.15.3 17.23 0 1 .201-.247m.672.022a.3.15 75.54 0 1 .205.254.3.15 75.54 0 1-.07.328.3.15 75.54 0 1-.22-.252.3.15 75.54 0 1 .07-.328.3.15 75.54 0 1 .015-.002m-.316.476s.035.226.185.301.862-.15.862-.15c-.337.262-.973.263-.973.338v.373c0 .408.026 1.461-.031 1.685.823.005 2.09 1.126 2.09 2.508v.075c-.038-1.348-1.61-2.434-2.096-2.434-.487 0-2.06 1.048-2.098 2.434v-.075c0-1.362 1.233-2.47 2.057-2.506-.07-.551-.073-1.137-.073-1.687V11.9a5 5 0 0 0-.656-.237c.185.033.371.05.545.05.15-.076.188-.302.188-.302M9.015 12.76h.008a.15.15 0 0 1 .15.15.15.15 0 0 1-.15.151.15.15 0 0 1-.15-.15.15.15 0 0 1 .142-.15m1.124 0h.007a.15.15 0 0 1 .15.15.15.15 0 0 1-.15.151.15.15 0 0 1-.15-.15.15.15 0 0 1 .143-.15m3.67 0h.007a.15.15 0 0 1 .15.15.15.15 0 0 1-.15.151.15.15 0 0 1-.15-.15.15.15 0 0 1 .143-.15m1.123 0h.008a.15.15 0 0 1 .15.15.15.15 0 0 1-.15.151.15.15 0 0 1-.15-.15.15.15 0 0 1 .142-.15m-5.653.899h.008a.15.15 0 0 1 .148.15.15.15 0 0 1-.148.15.15.15 0 0 1-.15-.15.15.15 0 0 1 .142-.15m5.391 0h.006a.15.15 0 0 1 .15.15.15.15 0 0 1-.15.15.15.15 0 0 1-.149-.15.15.15 0 0 1 .143-.15"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pulumi.svg�����������������������������������0000664�0000000�0000000�00000003415�14753064456�0025141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.997 0C10.226 0 8.79.83 8.79 1.856c0 1.025 1.436 1.856 3.207 1.856 1.772 0 3.208-.831 3.208-1.856S13.77 0 11.997 0M5.95 3.488c-1.772 0-3.208.83-3.208 1.856C2.742 6.369 4.178 7.2 5.95 7.2c1.771 0 3.207-.831 3.207-1.856S7.721 3.488 5.95 3.488m12.103 0c-1.772 0-3.208.83-3.208 1.856 0 1.025 1.436 1.856 3.208 1.856 1.771 0 3.207-.831 3.207-1.856s-1.436-1.856-3.207-1.856m-6.056 3.495c-1.771 0-3.207.831-3.207 1.856s1.436 1.856 3.207 1.856c1.772 0 3.208-.83 3.208-1.856 0-1.025-1.436-1.856-3.208-1.856m-10.127.67a1.16 1.16 0 0 0-.55.151c-.888.513-.89 2.172-.004 3.706s2.324 2.362 3.211 1.85c.888-.513.89-2.171.003-3.706-.72-1.246-1.803-2.027-2.66-2zm20.257.004c-.857-.026-1.941.754-2.661 2-.886 1.535-.884 3.194.003 3.707.888.512 2.325-.316 3.211-1.85s.885-3.193-.003-3.706a1.16 1.16 0 0 0-.55-.15zm-6.048 3.492c-.857-.026-1.94.754-2.66 2-.886 1.535-.885 3.194.003 3.706.887.513 2.325-.316 3.21-1.85.887-1.534.885-3.193-.003-3.706a1.16 1.16 0 0 0-.55-.15m-8.16.001a1.16 1.16 0 0 0-.55.151c-.888.513-.89 2.172-.004 3.706.886 1.535 2.324 2.363 3.211 1.85.888-.512.89-2.171.003-3.705-.72-1.247-1.803-2.028-2.66-2.002m-6.047 3.494a1.16 1.16 0 0 0-.55.151c-.888.513-.89 2.172-.004 3.706s2.324 2.362 3.212 1.85c.887-.513.888-2.172.003-3.706-.72-1.246-1.804-2.027-2.661-2.001m20.258.002c-.857-.026-1.941.755-2.66 2.001-.887 1.535-.885 3.193.003 3.706.887.512 2.325-.316 3.21-1.85.886-1.534.885-3.193-.003-3.706a1.16 1.16 0 0 0-.55-.15zm-6.047 3.492c-.858-.026-1.942.754-2.661 2-.886 1.535-.885 3.194.003 3.706.888.513 2.325-.315 3.21-1.85.887-1.533.885-3.193-.002-3.705a1.16 1.16 0 0 0-.55-.151m-8.163.003a1.16 1.16 0 0 0-.55.151c-.887.513-.889 2.172-.003 3.706s2.323 2.363 3.211 1.85.89-2.171.004-3.706c-.72-1.246-1.804-2.027-2.662-2z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/puma.svg�������������������������������������0000664�0000000�0000000�00000002471�14753064456�0024571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.845 3.008c-.417-.533-1.146-.106-1.467.08-2.284 1.346-2.621 3.716-3.417 5.077-.626 1.09-1.652 1.89-2.58 1.952-.686.049-1.43-.084-2.168-.405-1.807-.781-2.78-1.792-3.017-1.97-.487-.37-4.23-4.015-7.28-4.164 0 0-.372-.75-.465-.763-.222-.025-.45.451-.616.501-.15.053-.413-.512-.565-.487-.153.02-.302.586-.6.877-.22.213-.486.2-.637.463-.052.096-.034.265-.093.42-.127.32-.551.354-.555.697 0 .381.357.454.669.72.248.212.265.362.554.461.258.088.632-.187.964-.088.277.081.543.14.602.423.054.256 0 .658-.34.613-.112-.015-.598-.174-1.198-.11-.725.077-1.553.309-1.634 1.11-.041.447.514.97 1.055.866.371-.071.196-.506.399-.716.267-.27 1.772.944 3.172.944.593 0 1.031-.15 1.467-.605.04-.029.093-.102.155-.11a.6.6 0 0 1 .195.088c1.131.897 1.984 2.7 6.13 2.721.582.007 1.25.279 1.796.777.48.433.764 1.125 1.037 1.825.418 1.053 1.161 2.069 2.292 3.203.06.068.99.78 1.06.833.012.01.084.167.053.255-.02.69-.123 2.67 1.365 2.753.366.02.275-.231.275-.41-.005-.341-.065-.685.113-1.04.253-.478-.526-.709-.509-1.756.019-.784-.645-.651-.984-1.25-.19-.343-.368-.532-.35-.946.073-2.38-.517-3.948-.805-4.327-.227-.294-.423-.403-.207-.54 1.24-.815 1.525-1.574 1.525-1.574.66-1.541 1.256-2.945 2.075-3.57.166-.12.589-.44.852-.56.763-.362 1.173-.578 1.388-.788.356-.337.635-1.053.294-1.48"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/puppet.svg�����������������������������������0000664�0000000�0000000�00000000435�14753064456�0025142�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.984 21.611H6.595v-2.388h2.39zM6.595 2.39h2.39v2.388h-2.39zm13.198 6.028h-5.48l.001-.002-2.941-2.941V0H4.207v7.166h5.48l2.938 2.938.002-.001v3.794l-.003-.003-2.94 2.94H4.207V24h7.166v-5.477l2.94-2.94h5.48z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/puppeteer.svg��������������������������������0000664�0000000�0000000�00000016546�14753064456�0025650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.89 17.86h.397v.174h.028a.466.466 0 0 1 .619-.155l-.11.373a.36.36 0 0 0-.184-.043.29.29 0 0 0-.243.11.47.47 0 0 0-.082.29v.635h-.424zm-.26 1.048a.77.77 0 0 1-.27.28.74.74 0 0 1-.398.101.8.8 0 0 1-.3-.054.8.8 0 0 1-.237-.155.7.7 0 0 1-.214-.529q0-.15.056-.282a.7.7 0 0 1 .156-.235.73.73 0 0 1 .529-.22.75.75 0 0 1 .302.056.64.64 0 0 1 .353.384.85.85 0 0 1 .037.402h-1.02q.03.135.127.198a.4.4 0 0 0 .214.062.35.35 0 0 0 .32-.18zm-.376-.54a.2.2 0 0 0-.03-.074.2.2 0 0 0-.058-.07.3.3 0 0 0-.093-.054.325.325 0 0 0-.43.198zm-1.242.54a.77.77 0 0 1-.27.28.74.74 0 0 1-.397.101.8.8 0 0 1-.3-.054.8.8 0 0 1-.237-.155.7.7 0 0 1-.215-.529q0-.15.057-.282a.7.7 0 0 1 .155-.235.73.73 0 0 1 .529-.22q.172 0 .302.056a.64.64 0 0 1 .353.384.85.85 0 0 1 .037.402h-1.02q.03.135.127.198a.4.4 0 0 0 .215.062.35.35 0 0 0 .32-.18zm-.376-.54a.2.2 0 0 0-.028-.074.2.2 0 0 0-.06-.07.3.3 0 0 0-.093-.054.325.325 0 0 0-.43.198zm-1.918-.144-.243-.004.004-.388.25.012-.007-.41.412.004-.016.39.367.02-.012.355-.365.008.013.47c-.012.092.022.145.027.194.08.1.137.068.137.068.02-.008.162-.027.177-.038l.04.388c-.138.082-.377.036-.377.036-.253-.037-.383-.217-.384-.293-.025-.068-.018-.21-.029-.29zm-.412.717c-.037.126-.172.218-.283.285a.77.77 0 0 1-.406.11 1 1 0 0 1-.32-.077c-.09-.038-.165-.113-.233-.18-.068-.065-.093-.142-.131-.23a.8.8 0 0 1-.045-.31c-.015-.194.126-.378.212-.505.28-.238.49-.22.49-.22.387-.075.696.288.718.437.03.086.022.18.022.28-.005.054 0 .05-.031.125h-1.037c.02.09.063.192.104.24.048.06.128.06.207.06s.163.002.214-.032c.053-.034.172-.072.203-.125zm-.37-.558a.4.4 0 0 0-.04-.097c-.014-.026-.05-.046-.076-.066-.024-.023-.071-.037-.109-.05a.3.3 0 0 0-.121-.023.27.27 0 0 0-.168.053c-.057.037-.097.12-.123.19zm-2.34-.372h.028a.4.4 0 0 1 .147-.138.5.5 0 0 1 .254-.06.62.62 0 0 1 .467.207.7.7 0 0 1 .147.232q.053.135.053.3a.8.8 0 0 1-.053.3.7.7 0 0 1-.147.234.65.65 0 0 1-.467.203.5.5 0 0 1-.254-.056.4.4 0 0 1-.147-.142h-.028l.028.198v.565H10.2V17.86h.396zm.336.198a.34.34 0 0 0-.31.201.4.4 0 0 0-.026.141q0 .08.025.145a.4.4 0 0 0 .074.107q.048.041.107.068a.38.38 0 0 0 .257 0 .4.4 0 0 0 .108-.068.3.3 0 0 0 .073-.107.4.4 0 0 0 .028-.145.34.34 0 0 0-.336-.342m-2.026-.198h.03a.4.4 0 0 1 .146-.138.5.5 0 0 1 .254-.06.62.62 0 0 1 .466.207.7.7 0 0 1 .147.232q.054.135.054.3a.8.8 0 0 1-.054.3.7.7 0 0 1-.147.234.65.65 0 0 1-.466.203.5.5 0 0 1-.254-.056.4.4 0 0 1-.147-.142h-.029l.03.198v.565H8.51V17.86h.395zm.337.198a.34.34 0 0 0-.31.201.4.4 0 0 0-.027.141q.001.08.026.145a.4.4 0 0 0 .073.107q.048.041.108.068a.38.38 0 0 0 .257 0 .4.4 0 0 0 .107-.068.3.3 0 0 0 .074-.107.4.4 0 0 0 .028-.145.34.34 0 0 0-.21-.316.3.3 0 0 0-.126-.026m-1.433.86h-.028a.47.47 0 0 1-.424.22q-.261 0-.387-.167a.7.7 0 0 1-.128-.438v-.825h.424v.777q0 .114.054.187.053.07.167.07a.25.25 0 0 0 .217-.11.5.5 0 0 0 .077-.288v-.636h.424v1.385H7.81zm-2.594.175V17.22h.724a.8.8 0 0 1 .285.048.7.7 0 0 1 .23.136.6.6 0 0 1 .15.206.7.7 0 0 1 .053.27.7.7 0 0 1-.054.267.62.62 0 0 1-.379.342.8.8 0 0 1-.285.048h-.283v.707zm.738-1.125q.137 0 .206-.068a.23.23 0 0 0 .068-.172.23.23 0 0 0-.068-.173q-.068-.068-.206-.068h-.297v.48zM18.04 2.758l-.594.05.236 2.932.626.363zm-12.016.01L5.728 6.01l.624-.3.266-2.89zm-.49 5.183-.044.557-1.247 3.137c-.216.224-.308.514-.307.825L3.93 22.84c0 .669.49 1.16 1.158 1.16H18.82c.67 0 1.25-.444 1.25-1.11V12.485c0-.306-.1-.56-.286-.774L18.44 7.748l-.006-.068-.575.257.267 3.33H5.846l.237-2.615.226-.588L6.143 8l.002-.03zm13.112 2.34.323.987c-.088-.014-.158-.006-.245-.01zm-13.316.232-.084.744c-.058-.005-.12.005-.172.007zm-.18 1.134 13.67.008c.47 0 .853.344.853.815v.796H4.313v-.796c0-.47.364-.823.837-.823m.135.553a.27.27 0 0 0-.272.27c0 .36.542.36.542 0a.27.27 0 0 0-.27-.27m.92 0c-.36 0-.36.54 0 .54s.362-.54.002-.54zm.896 0c-.39-.034-.39.572 0 .538.33-.028.33-.51 0-.538m-2.788 1.424h15.36v9.153c0 .595-.38.846-.853.845l-13.668-.004a.83.83 0 0 1-.84-.841zm1.883 4.42c.07-.117.07-.11.068-.186-.008-.073-.004-.076-.053-.135-.054-.054-.123-.138-.2-.134h-.387l-.02.55h.407c.122-.002.16-.084.185-.094zm-.185-.83a.58.58 0 0 1 .442.171q.165.176.164.465a.65.65 0 0 1-.16.462c-.117.12-.263.21-.43.203l-.4.008-.004.774-.412-.013-.005-2.088zm1.793 1.26-.012-.624.366-.004.004 1.435-.36.004v-.122a.58.58 0 0 1-.432.15.56.56 0 0 1-.413-.156c-.103-.11-.13-.31-.123-.46l-.004-.847h.372l-.008.77a.33.33 0 0 0 .075.23.25.25 0 0 0 .198.09q.337 0 .336-.468zm1.805.077a.36.36 0 0 0-.11-.272c-.07-.073-.115-.118-.218-.115-.1 0-.186.018-.266.094a.39.39 0 0 0-.116.293q0 .18.117.29c.07.073.168.114.27.114.102.003.166-.053.238-.126.087-.094.06-.21.085-.278m-.262-.76c.176 0 .333.11.466.245a.7.7 0 0 1 .197.515.7.7 0 0 1-.197.512c-.093.16-.31.255-.486.254-.16.005-.36-.066-.428-.197l.004.76-.4.006-.02-2.04.416-.02v.157c.126-.103.285-.2.448-.193zm2.002.764c-.014-.16-.044-.203-.117-.283-.072-.074-.117-.087-.22-.085-.1 0-.178-.005-.257.07a.39.39 0 0 0-.116.294q0 .18.116.29c.07.073.168.114.27.114.102.003.154-.065.226-.137.073-.08.086-.175.098-.263m-.318-.75c.177 0 .389.096.522.23a.71.71 0 0 1 .198.516.7.7 0 0 1-.198.512c-.105.15-.344.255-.522.254a.48.48 0 0 1-.392-.197v.75l-.405.01-.023-2.034h.428v.137c.126-.103.23-.183.392-.177zm1.268.576.637-.008c-.017-.074-.063-.12-.124-.166a.36.36 0 0 0-.406.003c-.085.068-.054.056-.107.17zm.313-.575c.179-.003.425.078.552.203.133.13.157.308.166.512l-.031.125h-1.03c.02.095.044.186.104.244.059.056.153.07.234.07a.5.5 0 0 0 .383-.17l.316.141c-.046.14-.187.223-.304.296a.76.76 0 0 1-.408.094c-.184.003-.378-.116-.507-.247a.72.72 0 0 1-.2-.523c0-.21.094-.382.23-.518.13-.132.31-.232.495-.227m1.673 1.127c.08-.003.11.002.178-.038l.04.388c-.107.063-.135.038-.26.042a.63.63 0 0 1-.416-.155c-.094-.09-.097-.26-.097-.443l-.012-.513-.243-.004.004-.388.25.012-.007-.41.412.004-.016.39.367.02-.012.355-.365.008.003.507c.002.155.042.225.175.225zm.75-.54h.654a.32.32 0 0 0-.12-.186.36.36 0 0 0-.407.003.3.3 0 0 0-.127.184zm.338-.587c.185 0 .368.092.5.22.133.13.173.295.183.5v.12h-1.03a.4.4 0 0 0 .12.228.3.3 0 0 0 .218.086c.155 0 .297-.06.367-.18l.3.15c-.05.13-.12.19-.238.262a.96.96 0 0 1-.452.125.71.71 0 0 1-.502-.224.77.77 0 0 1-.208-.542c0-.21.106-.382.24-.518.132-.132.316-.232.5-.227zm1.27.587h.654a.32.32 0 0 0-.12-.186.36.36 0 0 0-.407.003.3.3 0 0 0-.127.184zm.337-.587a.74.74 0 0 1 .5.22c.134.13.174.295.184.5v.12h-1.03a.4.4 0 0 0 .12.228.3.3 0 0 0 .217.086c.154 0 .297-.06.368-.18l.3.15c-.05.13-.12.19-.238.262a.96.96 0 0 1-.454.125.71.71 0 0 1-.5-.224.77.77 0 0 1-.208-.542c0-.21.106-.382.24-.518.13-.132.315-.232.5-.227zm1.938.04-.067.364-.18-.023c-.322 0-.36.207-.36.595v.49l-.393.005.008-1.43h.365l-.004.22c.145-.17.215-.286.63-.22zM17.535 7.91l.02-.366 1.317-.687.007.396zM5.04 6.84l1.35.68-.008.393-1.314-.65zm7.21-1.748 4.839 2.448v.392l-4.851-2.46zM6.874 7.51l4.894-2.42-.007.374-4.893 2.444zm3.467-3.974L5.418 1.099 6.64.494l5.352 2.744L17.335.466l1.257.65-4.926 2.478c-.196.098-.13.388.067.486l4.838 2.42-1.22.622-5.353-2.697L6.62 7.129l-1.273-.634 4.998-2.483a.266.266 0 0 0-.004-.477zM5.059 1.888l.007-.377 4.607 2.276-.348.2zm9.648 2.077-.41-.184 4.596-2.303-.028.412zm.422.306 4.124-2.07a.12.12 0 0 0 .07-.11v-.98c0-.046-.008-.136-.05-.157l-1.94-.94a.12.12 0 0 0-.113 0l-5.167 2.623a.12.12 0 0 1-.11 0L6.679.015a.12.12 0 0 0-.11 0L4.616.938c-.04.02-.02.11-.02.157v.995c0 .047.026.09.07.11l4.14 2.047L4.69 6.239c-.04.02-.108.062-.11.108l.017 1.034a.12.12 0 0 0 .068.113l1.933.986c.034.018.122.03.157.014l5.186-2.602a.12.12 0 0 1 .11 0l5.12 2.603a.12.12 0 0 0 .11 0l1.972-.954c.042-.02.103-.05.104-.096l-.007-1.033c0-.047-.047-.15-.09-.17z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/purescript.svg�������������������������������0000664�0000000�0000000�00000000547�14753064456�0026031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.166 4.6-1.24 1.24 3.97 3.97-3.97 3.97 1.24 1.24 4.58-4.6a.87.87 0 0 0 0-1.23zM6.955 6.74l1.87 1.75h8.23l-1.87-1.75zm-2.1 2.24-4.6 4.6a.87.87 0 0 0 0 1.23l4.6 4.59 1.23-1.24-3.97-3.97 3.97-3.97-1.24-1.24zm3.97 2.14-1.87 1.76h8.23l1.87-1.76zm-1.87 4.39 1.87 1.75h8.23l-1.87-1.75z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/purgecss.svg���������������������������������0000664�0000000�0000000�00000001161�14753064456�0025455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12a12 12 0 0 0 9.764 11.791c.048-1.003.052-2.55.047-9.967 0-5.484.003-9.995.013-10.023.028-.08 2.26-.042 2.678.047a4.9 4.9 0 0 1 3.078 2.08 4.834 4.834 0 0 1-.7 6.164c-.924.878-2.041 1.334-3.29 1.334-.225 0-.29.012-.305.068-.01.043-.02 2.418-.014 5.287v5.196A12 12 0 0 0 12 24c6.627 0 12-5.373 12-12S18.627 0 12 0m-.691 4.31q-.018.004-.02.063c-.018.245-.023 8.358-.004 8.39.01.02.075-.014.145-.07 2.673-1.952 3.467-2.792 3.738-3.939.14-.746-.174-1.466-1.01-2.3-.699-.72-1.692-1.358-2.779-2.099-.038-.033-.058-.047-.07-.044z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/purism.svg�����������������������������������0000664�0000000�0000000�00000000205�14753064456�0025137�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 19.588H0V4.412h24zM2.824 16.765h18.352v-9.53H2.824Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pushbullet.svg�������������������������������0000664�0000000�0000000�00000001234�14753064456�0026012�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m0 1.688A10.31 10.31 0 0 1 22.312 12 10.31 10.31 0 0 1 12 22.312 10.31 10.31 0 0 1 1.688 12 10.31 10.31 0 0 1 12 1.688M7.258 6.92a.659.772 0 0 0-.659.772v8.643a.603.603 0 0 0 .603.603h1.733a.603.603 0 0 0 .603-.603V7.692a.659.772 0 0 0-.658-.772zm6.94.001q-1.462.007-2.867.002c-.28 0-.474.254-.534.499a1.7 1.7 0 0 0-.043.405q.007 4.28.007 8.47c0 .397.21.643.589.641q1.503-.005 2.895 0c.058 0 .129.022.176.02q1.236-.027 2.182-.698c2.02-1.43 2.554-4.264 1.662-6.47-.574-1.417-1.743-2.573-3.27-2.82a5 5 0 0 0-.797-.049"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pusher.svg�����������������������������������0000664�0000000�0000000�00000002035�14753064456�0025131�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 23.966v-6.017a.04.04 0 0 1 .018-.03l7.732-4.465a.04.04 0 0 0 .018-.031v-1.711a.036.036 0 0 0-.054-.031l-7.66 4.423a.036.036 0 0 1-.054-.031V14.36a.04.04 0 0 1 .018-.03l7.732-4.465a.04.04 0 0 0 .018-.031V8.124a.036.036 0 0 0-.053-.031l-7.661 4.423a.036.036 0 0 1-.054-.031v-1.711a.04.04 0 0 1 .018-.031L19.75 6.28a.04.04 0 0 0 .018-.03V4.514a.08.08 0 0 0-.035-.062L12.036.01a.07.07 0 0 0-.072 0L10.5.855a.036.036 0 0 0 0 .062l7.661 4.423a.036.036 0 0 1 0 .062l-1.464.845a.08.08 0 0 1-.072 0L8.929 1.804a.08.08 0 0 0-.076 0l-1.46.844a.036.036 0 0 0 0 .062l7.66 4.424a.036.036 0 0 1 0 .062l-1.464.845a.08.08 0 0 1-.076 0L5.821 3.597a.08.08 0 0 0-.076 0l-1.513.876v15.05a.04.04 0 0 0 .018.03l1.482.856a.036.036 0 0 0 .053-.03V5.432a.036.036 0 0 1 .054-.031l1.482.856a.04.04 0 0 1 .018.03v15.029a.04.04 0 0 0 .018.03l1.482.857a.036.036 0 0 0 .054-.032V7.227a.036.036 0 0 1 .054-.031l1.481.855a.04.04 0 0 1 .019.031v15.029a.04.04 0 0 0 .017.03l1.486.856a.036.036 0 0 0 .05-.031"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pwa.svg��������������������������������������0000664�0000000�0000000�00000000764�14753064456�0024421�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.597 7.482 24 16.518h-2.51L20.91 14.9h-3.246l.694-1.754h2.002l-.95-2.66zm-8.111 0 1.772 5.84 2.492-5.84h2.415l-3.643 9.036H13.14l-1.64-5.237-1.72 5.237H7.404L6.17 14.402l1.214-3.742 1.342 2.661 1.903-5.839zm-8.746 0q1.596 0 2.424.917a2.7 2.7 0 0 1 .28.368L5.37 12.08l-.385 1.185q-.528.15-1.204.151H2.293v3.102H0V7.482zM3.16 9.235h-.866v2.428h.86q.836 0 1.148-.358.285-.323.284-.873 0-.546-.323-.871-.324-.326-1.103-.326"/></svg>������������mkdocs-material-9.6.4/material/templates/.icons/simple/pycharm.svg����������������������������������0000664�0000000�0000000�00000001121�14753064456�0025261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.833 6.666v-.055c0-1-.667-1.5-1.778-1.5H4.389v3.055h1.723c1.111 0 1.721-.666 1.721-1.5M0 0v24h24V0zm2.223 3.167h4c2.389 0 3.833 1.389 3.833 3.445v.055c0 2.278-1.778 3.5-4.001 3.5H4.389v2.945H2.223zM11.277 21h-9v-1.5h9zm4.779-7.777c-2.944.055-5.111-2.223-5.111-5.057C10.944 5.333 13.056 3 16.111 3c1.889 0 3 .611 3.944 1.556l-1.389 1.61c-.778-.722-1.556-1.111-2.556-1.111-1.658 0-2.873 1.375-2.887 3.084.014 1.709 1.174 3.083 2.887 3.083 1.111 0 1.833-.445 2.61-1.167l1.39 1.389c-.999 1.112-2.166 1.779-4.054 1.779"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pycqa.svg������������������������������������0000664�0000000�0000000�00000002730�14753064456�0024742�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.256 6.935c-.176 1.188-.244 1.694.88 1.694l-.008.068H0l.008-.068c1.008 0 1.096-.55 1.283-1.694l.518-3.331c.187-1.187.275-1.693-.745-1.693l.008-.068H4.57c1.893 0 2.901.47 2.901 1.618 0 1.9-2.127 2.383-3.761 2.383h-.176l.008-.08h.148c1.371 0 1.733-1.47 1.733-2.654 0-.825-.335-1.195-1.108-1.195h-.274zm7.905-1.251-.04-.008c-.657 2.511-1.303 3.096-2.343 3.096-1.35 0-1.315-1.008-1.203-1.685l.478-2.929c.028-.195-.127-.343-.402-.255l-.028-.028c.342-.167 1.028-.382 1.498-.382.558 0 .753.207.646.872l-.51 3.136c-.08.462.007.745.314.745.598 0 1.08-1.127 1.439-2.586.167-.677.442-1.94.107-2.108l.028-.028c1.331-.099 1.981-.079 1.734 1.511l-.53 3.359c-.275 1.725-2.566 3.419-3.734 3.419-1.961 0-2.578-1.734-3.977-1.734-.597 0-.825.283-.825.558 0 .243.168.462.518.462.235 0 .53-.235.423-.518 1.343-.135 1.371 1.881-.08 1.881-.753 0-1.155-.538-1.155-1.175 0-.961.88-2.156 2.163-2.156 2.264 0 3.144 2.331 3.706 2.331.733 0 .988-1.833 1.096-2.363zM5.034 22.261a4.528 4.528 0 0 1 .847-8.974 4.53 4.53 0 0 1 4.527 4.527 4.5 4.5 0 0 1-.549 2.162l-1.754-3.034zm3.071-4.32 2.534 4.383H5.575zm7.604-8.397a4.47 4.47 0 0 1-1.563-3.398 4.477 4.477 0 0 1 4.475-4.474A4.476 4.476 0 0 1 21.795 9.3l.009.034a4.472 4.472 0 0 1-6.095.21m5.925-.807a3.978 3.978 0 0 0-1.817-6.382zm.481 10.831 1.594 2.76H13.397l5.156-8.929 2.371 4.106H17.89v1.893l4.055-.001q.078.093.17.171m-3.725-1.563h3.831a.95.95 0 1 1 .831 1.407.95.95 0 0 1-.844-.514H18.39z"/></svg>����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pydantic.svg���������������������������������0000664�0000000�0000000�00000001173�14753064456�0025440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.826 17.316-4.23-5.866-6.847-9.496c-.348-.48-1.151-.48-1.497 0l-6.845 9.494-4.233 5.868a.925.925 0 0 0 .46 1.417l11.078 3.626h.002a.92.92 0 0 0 .572 0h.002l11.077-3.626c.28-.092.5-.31.59-.592a.92.92 0 0 0-.13-.825h.002ZM12.001 4.07l4.44 6.158-4.152-1.36c-.032-.01-.066-.008-.098-.016a1 1 0 0 0-.096-.016c-.032-.004-.062-.016-.094-.016s-.062.012-.094.016a1 1 0 0 0-.096.016c-.032.006-.066.006-.096.016L7.59 10.221l-.026.008 4.44-6.158h-.002Zm-6.273 8.7 4.834-1.583.516-.168v9.19L2.41 17.372l3.317-4.6Zm7.197 7.437V11.02l5.35 1.752 3.316 4.598-8.666 2.838Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pyg.svg��������������������������������������0000664�0000000�0000000�00000005054�14753064456�0024426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.649 8.066-2.65 2.724a1.14 1.14 0 0 0-.531-.18l-.288-2.611a1.15 1.15 0 0 0 .804-.893l2.464.36q0 .08.013.158c.03.159.095.31.188.442m-4.413 3.465H8.67a1.14 1.14 0 0 0-.337-.58l2.806-3.148c.172.135.38.218.597.24l.286 2.616a1.15 1.15 0 0 0-.787.872Zm-6.715-.427 1.886.596q-.015.155.011.31a1.154 1.154 0 0 0 1.347.919q.093-.018.18-.053l2.46 3.033a1.14 1.14 0 0 0-.23.837l-2.73.904a1.15 1.15 0 0 0-1.143-.583l-2.168-5.542a1.14 1.14 0 0 0 .387-.42Zm3.064 7.07c0-.034-.008-.068-.008-.103l2.732-.907a1.15 1.15 0 0 0 2.067-1.002l2.589-1.664c.139.174.326.305.538.374l-.319 3.825c-.03.008-.06.002-.09.008a1.15 1.15 0 0 0-.856.708zM9.464 4.729l1.487 1.456c-.212.26-.298.6-.237.93q.037.188.135.354l-2.9 3.255a1.135 1.135 0 0 0-1.42.555l-1.872-.592a1.2 1.2 0 0 0-.008-.341 1.14 1.14 0 0 0-.258-.53l3.883-4.88a1.14 1.14 0 0 0 1.19-.206Zm7.212 3.827a.97.97 0 0 0 .54-.175l3.208 3.35a1.14 1.14 0 0 0-.206.703l-3.359.783a1.15 1.15 0 0 0-.69-.538l.504-4.123zm1.175-4.003-.929 1.754a1.135 1.135 0 0 0-1.415.723l-2.532-.373a1.135 1.135 0 0 0-1.681-.763L9.735 4.375q.079-.159.103-.334l7.613-.134c.056.254.197.482.4.645Zm-3.058 8.815a1.14 1.14 0 0 0-.064.637c.007.033.022.067.032.103l-2.63 1.692a1.2 1.2 0 0 0-.397-.258l.597-2.633a1.14 1.14 0 0 0 .91-.41zm.858-.719a1.14 1.14 0 0 0-.62.337l-1.574-.879a1.12 1.12 0 0 0-.146-1.011l2.65-2.725q.127.084.273.131l-.505 4.143q-.04.003-.078.004m-7.325.001a1.15 1.15 0 0 0 .36-.676h2.548c.071.37.32.683.665.835l-.6 2.65a1 1 0 0 0-.2.018 1.1 1.1 0 0 0-.364.14zM13.9 23.927l-8.674-1.816 1.068-2.767q.18.026.357-.005a1.15 1.15 0 0 0 .863-.73l6.642 1.237c-.002.43.241.822.627 1.012l-.883 3.07Zm-9.041-2.09-4.82-7.372 2.852-2.947c.246.16.544.22.833.168l2.151 5.52a1.144 1.144 0 0 0 0 2L4.86 21.838Zm16.61-2.668-7.068 4.62.804-2.804q.159.017.316-.01c.523-.1.91-.546.935-1.078zm.07-18.79L24 12.717l-1.483-.31a1.15 1.15 0 0 0-1.285-1.159l-2.104-6.58a1.15 1.15 0 0 0 .58-1.22 1.13 1.13 0 0 0-.25-.515zm2.432 12.783-1.977 5.48-5.604.814a1.1 1.1 0 0 0-.201-.352l4.639-5.697c.594.322 1.338.06 1.598-.565zM0 13.87 1.773 5.4l5.86-1.105c.06.15.152.287.268.4L4.046 9.54a1.14 1.14 0 0 0-.742-.115 1.154 1.154 0 0 0-.92 1.342c.03.16.095.312.189.445zm20.737-2.444-3.212-3.35a1.135 1.135 0 0 0-.215-1.556l.93-1.755c.15.047.31.061.468.043l2.104 6.581zM21.199.1l-2.08 2.557a1.135 1.135 0 0 0-1.51.385L10.21.073 21.2.099ZM2.306 4.848 9.387.218l8.059 3.233v.014L9.822 3.6a1.15 1.15 0 0 0-2.27.26l-5.246.989Zm13.536 13.976a1.2 1.2 0 0 0-.225-.091l.32-3.808a1 1 0 0 0 .135-.012 1.15 1.15 0 0 0 .929-1.28l3.316-.768q.066.143.167.263z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pypi.svg�������������������������������������0000664�0000000�0000000�00000003451�14753064456�0024607�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.922 13.58v3.912L20.55 18.72l-.078.055.052.037 3.45-1.256.026-.036v-3.997l-.053-.036-.025.092zm-.301-7.962-3.04 1.107v3.912l3.339-1.215V5.509zm.299 7.839V9.544l-3.336 1.215v3.913zm-3.45 1.253V10.8l-3.3 1.2v3.913zm-3.436 5.286v-3.912l-3.313 1.206v3.912zm.136-3.939v3.868l3.314-1.206V14.85zm2.093 1.882c-.367.134-.663-.074-.663-.463s.296-.814.663-.947c.365-.133.662.075.662.464s-.297.814-.662.946m-6.038-8.624.365-.132-3.285-1.197-3.323 1.21.102.037 3.184 1.16zm7.282 1.349V6.751L17.17 7.965v3.913zm-3.449 1.254V8.005l-3.302 1.202v3.912zm-3.415-2.672-3.336 1.215v3.913l3.336-1.215zm-6.736 3.919 3.322 1.209v-3.913L6.907 9.252zm3.433-5.292 3.281 1.193V5.198l-3.28-1.193zm10.167-5.158L17.19 3.922v3.913l3.317-1.207zM16.95 3.903 13.724 2.73l-3.269 1.19 3.225 1.174zm-1.585.703-1.624.592v3.868l3.317-1.207V3.991zm-.391 2.778c-.367.134-.662-.074-.662-.464s.295-.813.662-.946c.366-.133.663.074.663.464s-.297.813-.663.946M10.229 18.41v-3.914l-3.322-1.209V17.2zm3.449-1.228v-3.913l-3.371 1.227v3.913zm.078-.028 3.3-1.2V12.04l-3.3 1.2zm-.078 4.063-3.371 1.227v-3.912h-.078v3.912l-3.322-1.209v-3.913l-.053-.058-.025-.06-3.336-1.21v-3.948l.034.013 3.287 1.196.015-.078-3.261-1.187 3.26-1.187v-.109L3.876 9.62l-.307-.112 3.26-1.188v.877l.079-.055V6.769l3.257 1.185.058-.061L7.084 6.75l-.102-.037 3.24-1.179v-.083L6.854 6.677v.018l-.025.018v1.523L3.44 9.47v.02l-.025.017v4.007l-3.39 1.233v.019L0 14.784v3.995l.025.037 3.4 1.237.008-.006.007.01 3.4 1.238.008-.006.006.01 3.4 1.237.014-.009.012.01 3.45-1.256.026-.037zM3.493 9.563l3.257 1.185-3.257 1.187V9.562zM3.4 19.96.078 18.752v-3.913l2.361.86.96.349zm.015-3.99-3.08-1.12-.182-.066 3.262-1.187zm3.399 5.231-3.321-1.209V16.08l3.321 1.209zM23.791 5.434l-3.21-1.17v2.338zm-3.404-2.791-3.24-1.18-3.27 1.19 3.247 1.182z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pypy.svg�������������������������������������0000664�0000000�0000000�00000005154�14753064456�0024631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.947 0q-.15 0-.3.016a2.7 2.7 0 0 0-1.27.447c-.164.009-.324.038-.488.053-1.78.279-3.037 1.197-3.92 2.286-1.702 2.515-1.711 6.092-1.481 8.471a6.55 6.55 0 0 1 1.86-3.765c.069-.069.15-.136.22-.217l.034-.034q.134-.117.272-.228a9 9 0 0 1 .416-.309c.028-.014.056-.027.084-.055l.436-.273.03-.016.068-.035a5 5 0 0 1 .478-.225c.029-.014.07-.029.098-.043.127-.056.268-.098.395-.14q-.004-.004-.008-.006l.022-.008a2 2 0 0 0-.268-.238 1.8 1.8 0 0 0-.731-.268 3.3 3.3 0 0 0-.829-.041 4.4 4.4 0 0 0-.799.115c.248-.102.497-.19.77-.242.279-.07.573-.111.88-.112.265 0 .55.036.82.135l.002.004c.028.014.042.015.07.03.07.028.155.069.225.11q.014.01.026.018l.002.012c.14.084.268.196.394.323l.014.013q.005 0 .01-.002a2.82 2.82 0 0 0 2.407.944l.254-.04h.041l.557-.114c1.867-.435 2.185-.507 3.135-1.036.4-.321.562-.548.63-.762.07-.217.055-.455.073-.797l-.002.01c-.001-.374-.282-.8-.696-1.22-.41-.417-.932-.824-1.366-1.196-.53-.374-.785-.718-1.031-.973a1.7 1.7 0 0 0-.63-.434A2.8 2.8 0 0 0 12.947 0m2.362.934c.12.113.231.224.405.346l.008.004.005.006c.425.365.963.78 1.402 1.225s.795.93.797 1.465v.004l-.002.006c-.017.319.008.589-.088.885s-.311.588-.754.94l-.012.01-.012.008a10 10 0 0 1-.584.303c1.232.485 2.467 1.071 3.808 2.118v-.002c1.21.937 2.345 2.057 3.49 3.74-.105-5.25-3.649-9.647-8.463-11.058M8.534.98a11.6 11.6 0 0 0-2.155.897q-.105.059-.209.12a11.77 11.77 0 0 0-5.942 10.02c.033 1.843.683 3.221 1.708 4.232 1.061 1.048 2.528 1.703 4.109 2.034 1.585.333 3.247.442 4.743.362a6.2 6.2 0 0 1-1.92-.692 11 11 0 0 1-.55-.322 13 13 0 0 1-.45-.338l-.295-.252a1.7 1.7 0 0 1-.225-.225 6.8 6.8 0 0 1-1.237-1.702c-.028-.056-.056-.126-.084-.182a6.4 6.4 0 0 1-.318-.858c-.104-.294-.318-.938-.489-2.003v-.006c-.299-2.347-.525-6.536 1.464-9.467l.004-.006.004-.006A6.9 6.9 0 0 1 8.534.98m4.776 3.853q.089-.002.182.004c.492.043.87.282.856.55-.028.252-.434.436-.926.408-.492-.042-.872-.282-.858-.55.012-.233.336-.401.746-.412m2.699 1.491c-.164.061-.451.142-.657.2 1.835 1.094 3.106 3.045 3.215 5.315l.004.068q.005.114.007.233v.04c0 .037-.005.072-.006.108.101 2.366-.31 3.562-1.291 5.62v.002c-.99 2.092-3.237 4.63-5.012 6.089 6.255-.14 11.293-5.145 11.494-11.384-1.22-1.9-2.408-3.086-3.696-4.084-1.43-1.117-2.725-1.7-4.058-2.207m2.104 8.256c-.045.118-.087.238-.138.352-.029.056-.056.126-.084.182a6.5 6.5 0 0 1-1.462 1.927l-.295.252c-.14.112-.295.225-.45.338a5 5 0 0 1-.549.322c-.183.1-.375.185-.568.268v.002l-.016.006a7 7 0 0 1-.412.154c-2.013.742-5.2.867-8.166.244-1.63-.341-3.157-1.02-4.282-2.13a6 6 0 0 1-1.164-1.625C1.703 20.009 6.232 23.859 11.694 24c1.76-1.35 4.256-4.096 5.27-6.241v-.002c.598-1.253.97-2.146 1.15-3.178z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pyscaffold.svg�������������������������������0000664�0000000�0000000�00000004476�14753064456�0025770�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.402 2.06C.357 2.06 0 5.626 0 5.626l5.36.996s-3.65.862-4.227 1.054c.167.456 1.701.623 1.701.623h5.434c.886 0 1.342-.815 1.342-.815h9.056c.193 0 1.366 0 1.366 1.582s-1.366 1.777-1.366 1.777H7.787c-.175 0-1.577.258-2.765 1.361h.077v.11h-.184a5.2 5.2 0 0 0-1.352 2.327h4.57c.154-.072.27-.11.27-.11h10.208c1.819.003 3.51-.837 4.466-2.218h-.282v-.11h.331c.523-.907.865-2.176.874-3.068 0-3.73-2.84-5.527-4.72-5.527h-9.25c-.61-1.192-2.101-1.55-2.101-1.55h-.896l.316 1.096h-.283v4.02h.283q-.16.551-.318 1.105l-.318-1.106h.261V3.155h-.26l.315-1.096zm.788 1.419a.557.557 0 0 1 .566.56.553.553 0 0 1-.561.56c-.747.003-.752-1.117-.005-1.12m2.019 8.726h.33v.108h-.33zm.44 0h.33v.108h-.33zm.439 0h.332v.108h-.331zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.768 0v.108h-.327v-.11c.101.005.22.001.327.002m.109 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.329v.108h-.33zm.439 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.329v.108h-.33zm.439 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.329v.108h-.33zm.439 0h.33v.108h-.33v-.11zm.44 0h.33v.108h-.33v-.11zm.44 0h.33v.108h-.33v-.11zm.439 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.329v.108h-.33zm.439 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.439 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.329v.108h-.33zm.439 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.329v.108h-.33zm.439 0h.33v.108h-.33zm.44 0h.33v.108h-.33zM3.52 14.812c-.015.061-.022.13-.036.193l.277-.192zm.543 0-.622.43a7 7 0 0 0-.097.765l1.726-1.194zm1.306 0-2.038 1.412c-.005.11-.019.208-.019.321 0 .184.017.351.03.524l3.262-2.256zm1.532 0L3.354 17.27c.022.217.057.418.099.615 1.38-.925 2.753-1.89 4.123-2.838q.136-.139.273-.233c-.314.001-.64-.001-.948-.002m.404.627-3.532 2.445h.992l2.337-1.62c.005-.284.073-.565.2-.825zm-.203 1.037-2.039 1.408h1.003l1.149-.795a2 2 0 0 1-.113-.614zm.173.778-.908.63h.843l.336-.233a1.5 1.5 0 0 1-.27-.398zm.397.517-.163.113h.348c-.064-.041-.119-.055-.185-.113m-4.186.283c.835 3.483 4.47 3.888 4.47 3.888h7.856c2.412 0 4.141-3.805 4.141-3.805-3.864.002-7.729-.007-11.593-.012 0 0-.092-.018-.224-.071H3.485zm9.045.099.26 1h-.231v1.786h.23l-.259.98-.275-.98h.211v-1.787h-.21Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pysyft.svg�����������������������������������0000664�0000000�0000000�00000001324�14753064456�0025161�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.524 17.985 1.413-.46V13.64Zm6.485-5.632L24 9.305l-6.786-4.93zm-4.346-4.515 2.414 7.422 1.489-2.052zm.136 3.2 1.59 4.898-1.59 1.156zM9.732 20.19l3.688-1.198H8.863ZM12 22.03l4.159-3.023-5.747 1.87zm3.266 1.225 3.894-5.363-6.305 4.581zm4.149.158h-3.2l5.788-7.967Zm-9.657-1.947-6.305-4.581v2.532zm-5.175 1.947h8.377l-9.365-3.045Zm-.365-9.346-.607 1.87 4.16 3.021zm2.722 2.284-2.278-3.14.87-1.197ZM0 9.305l2.592 7.98V7.422Zm5.865-3.091-2.41.784v6.635Zm.952-.14-1.593 4.898 3.561-4.897Zm2.915.159 1.413.46-3.696 2.685zm4.863-3.761L11.998.587 5.206 5.52ZM8.946 5.213h7.81L15.267 3.16zm3.083.862 5.765 1.872-.61-1.872zm5.908 2.823v1.488l-3.702-2.688Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pytest.svg�����������������������������������0000664�0000000�0000000�00000000606�14753064456�0025155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.615 0v.887h3.84V0zm5.022 0v.887h3.842V0zm4.957 0v.887h3.841V0zm4.935 0v.887h3.842V0zM2.447 1.895a.935.935 0 0 0-.935.935c0 .517.418.938.935.938h19.106c.517 0 .935-.42.935-.938a.935.935 0 0 0-.935-.936zm.168 2.847V24h3.84V4.742zm5.022 0v15.801h3.842v-15.8zm4.957 0v10.549h3.85V4.742zm4.935 0v6.494h3.842V4.742z"/></svg>��������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/python.svg�����������������������������������0000664�0000000�0000000�00000002712�14753064456�0025146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.25.18.9.2.73.26.59.3.45.32.34.34.25.34.16.33.1.3.04.26.02.2-.01.13V8.5l-.05.63-.13.55-.21.46-.26.38-.3.31-.33.25-.35.19-.35.14-.33.1-.3.07-.26.04-.21.02H8.77l-.69.05-.59.14-.5.22-.41.27-.33.32-.27.35-.2.36-.15.37-.1.35-.07.32-.04.27-.02.21v3.06H3.17l-.21-.03-.28-.07-.32-.12-.35-.18-.36-.26-.36-.36-.35-.46-.32-.59-.28-.73-.21-.88-.14-1.05-.05-1.23.06-1.22.16-1.04.24-.87.32-.71.36-.57.4-.44.42-.33.42-.24.4-.16.36-.1.32-.05.24-.01h.16l.06.01h8.16v-.83H6.18l-.01-2.75-.02-.37.05-.34.11-.31.17-.28.25-.26.31-.23.38-.2.44-.18.51-.15.58-.12.64-.1.71-.06.77-.04.84-.02 1.27.05zm-6.3 1.98-.23.33-.08.41.08.41.23.34.33.22.41.09.41-.09.33-.22.23-.34.08-.41-.08-.41-.23-.33-.33-.22-.41-.09-.41.09zm13.09 3.95.28.06.32.12.35.18.36.27.36.35.35.47.32.59.28.73.21.88.14 1.04.05 1.23-.06 1.23-.16 1.04-.24.86-.32.71-.36.57-.4.45-.42.33-.42.24-.4.16-.36.09-.32.05-.24.02-.16-.01h-8.22v.82h5.84l.01 2.76.02.36-.05.34-.11.31-.17.29-.25.25-.31.24-.38.2-.44.17-.51.15-.58.13-.64.09-.71.07-.77.04-.84.01-1.27-.04-1.07-.14-.9-.2-.73-.25-.59-.3-.45-.33-.34-.34-.25-.34-.16-.33-.1-.3-.04-.25-.02-.2.01-.13v-5.34l.05-.64.13-.54.21-.46.26-.38.3-.32.33-.24.35-.2.35-.14.33-.1.3-.06.26-.04.21-.02.13-.01h5.84l.69-.05.59-.14.5-.21.41-.28.33-.32.27-.35.2-.36.15-.36.1-.35.07-.32.04-.28.02-.21V6.07h2.09l.14.01zm-6.47 14.25-.23.33-.08.41.08.41.23.33.33.23.41.08.41-.08.33-.23.23-.33.08-.41-.08-.41-.23-.33-.33-.23-.41-.08-.41.08z"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pythonanywhere.svg���������������������������0000664�0000000�0000000�00000011166�14753064456�0026714�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.435 20.69c-.09-.11-.219-.182-.328-.255-.092-.055-.128-.11-.11-.238.183-1.077.347-2.154.511-3.25.11-.73.22-1.46.347-2.227.165.11.329.22.475.329.036.036.018.091.018.128-.036.255-.073.53-.128.785l-.273 1.77-.274 1.753c-.019.146-.037.31-.073.457.073.018.11-.037.164-.055 1.387-.73 2.775-1.442 4.163-2.173l.11-.054c.036-.019.072-.037.109 0 .146.09.292.2.456.31-.073.036-.11.073-.164.091-1.607.84-3.195 1.68-4.802 2.52-.055.018-.11.036-.128.091zm-4.874-9.858c-.037.292-.091.547-.128.803-.128.84-.274 1.661-.402 2.501-.073.493-.164.986-.237 1.479-.018.091-.055.128-.128.146-.146.036-.31.091-.456.146-.018-.037 0-.073 0-.11.146-.912.292-1.807.438-2.72.146-.876.274-1.77.42-2.647.018-.073.036-.128.128-.146.127-.037.237-.073.365-.11.073-.036.128-.018.2.037l.932.93c.986.987 1.99 1.973 2.976 2.94.018.019.036.055.073.073-.183.073-.366.11-.53.183-.055.018-.091-.037-.11-.055-.237-.237-.474-.475-.73-.712a376 376 0 0 1-2.702-2.684c-.036 0-.054-.018-.11-.054m4.748 2.83a8 8 0 0 1-.402-.384c-.037-.037-.018-.091 0-.128.11-.328.219-.657.347-.986l1.205-3.45a.3.3 0 0 0 .036-.128c-.073-.018-.128.018-.182.036-1.497.475-2.976.932-4.473 1.406-.238.073-.165.092-.329-.073l-.274-.274c.037-.054.11-.054.165-.073 1.734-.547 3.468-1.095 5.185-1.643.127-.036.2-.018.292.073.054.073.146.146.219.22.073.054.073.127.054.2-.2.548-.383 1.096-.584 1.643-.401 1.15-.803 2.3-1.205 3.433a.3.3 0 0 1-.054.127m-.31 1.15a5 5 0 0 0-.074.53c0 .073-.055.073-.11.091-.401.128-.784.256-1.168.365-1.132.366-2.282.712-3.414 1.078-.036.018-.091.036-.146.054a.3.3 0 0 0 .146.11c1.278.876 2.556 1.77 3.834 2.647.11.073.183.146.128.292-.037.128-.037.256-.073.384-.055 0-.091-.037-.128-.055C8.496 19.284 7 18.244 5.502 17.22c-.091-.073-.128-.127-.11-.255.019-.11.055-.201.055-.31 0-.092.055-.128.128-.147 1.77-.566 3.56-1.113 5.33-1.68.02 0 .056 0 .092-.017M6.944 3.62c-.018.183-.055.365-.073.53 0 .073-.073.073-.128.073-.328.11-.675.2-1.004.31-1.205.365-2.391.73-3.596 1.095-.037.019-.092.019-.128.073.055.037.091.073.146.11 1.278.895 2.538 1.807 3.816 2.702.09.073.127.128.11.256a3 3 0 0 0-.074.42c-.055-.019-.091-.055-.146-.074L1.431 5.994c-.11-.074-.146-.147-.11-.256.018-.11.037-.2.055-.31 0-.073.036-.11.128-.147l1.26-.383c1.35-.402 2.683-.821 4.034-1.223.037-.037.091-.037.146-.055m5.477 3.725c-.146.054-.292.09-.438.146-.091.036-.164.018-.237-.055-.493-.511-1.004-1.004-1.516-1.516a184 184 0 0 0-1.825-1.807c-.037-.036-.055-.091-.128-.11a6 6 0 0 0-.091.566c-.146.859-.274 1.717-.42 2.556-.092.548-.183 1.078-.256 1.625-.018.092-.036.128-.128.146-.146.037-.31.092-.456.146-.018-.11.018-.2.036-.273l.548-3.396c.091-.603.201-1.205.292-1.808.019-.073.037-.11.11-.127.128-.037.237-.073.365-.11.091-.037.146-.018.219.055l1.46 1.46c.786.785 1.589 1.57 2.374 2.355.018.037.073.073.091.147m.672 7.755a3.7 3.7 0 0 1-.13-.76c-.115-.959-.014-1.885.36-2.774.572-1.388 1.56-2.417 2.904-3.073a8.1 8.1 0 0 1 2.116-.676c.05.059.027.13.023.185l.032.332c.013.074-.026.108-.1.12-.484.113-.97.262-1.423.469-1.228.536-2.164 1.367-2.76 2.57a4.95 4.95 0 0 0-.526 2.544c.02.24.04.478.078.719.013.074.009.129-.085.159a3.6 3.6 0 0 0-.489.185m2.53 1.77c.013-.183.006-.348.02-.53.004-.073.025-.108.117-.12.481-.076.947-.19 1.382-.397 1.606-.712 2.66-1.92 3.09-3.628.177-.683.207-1.376.146-2.076.002-.036-.012-.092-.01-.129.006-.072-.06-.169-.002-.22.04-.052.131-.045.205-.058.13-.028.242-.057.373-.102.057.242.075.5.077.737a7.3 7.3 0 0 1-.054 1.552 5.65 5.65 0 0 1-1.478 3.081c-.87.928-1.953 1.492-3.179 1.754a2.8 2.8 0 0 1-.687.135m5.343-10.442c.054.004.075-.032.113-.047a54 54 0 0 1 2.265-1.251c.039-.034.095-.048.147-.008.157.102.333.206.509.31a.6.6 0 0 1-.134.082c-.95.501-1.917.983-2.867 1.483a.9.9 0 0 0-.195.17c-.349.543-.718 1.103-1.067 1.646-.062.105-.062.105-.167.043-.106-.063-.193-.124-.299-.186s-.105-.062-.044-.15l.677-1.05c.143-.21.268-.42.41-.63a.37.37 0 0 0 .07-.197 182 182 0 0 1 .211-3.297c.142.064.263.164.405.23.16.083.19.177.176.36a76 76 0 0 0-.16 2.038c-.01.145-.039.29-.05.454m-3.882 4.468c-.018.255-.316.6-.575.637a.46.46 0 0 1-.465-.16.43.43 0 0 1-.077-.463.87.87 0 0 1 .436-.482.45.45 0 0 1 .474.033c.156.12.238.255.207.435m1.856 1.21c-.018.255-.317.6-.577.655-.186.042-.328-.023-.464-.16a.4.4 0 0 1-.08-.445c.09-.232.23-.405.457-.5.322-.16.688.104.664.45M.883 6.432c.164.091.292.2.456.31.055.037.037.091.019.146l-.165 1.04c-.2 1.242-.401 2.465-.602 3.707 0 .036-.037.091 0 .146.055-.037.11-.055.164-.091l4.108-2.246c.11-.055.182-.055.274.018.11.092.219.165.347.256-.037.055-.092.073-.128.091-1.589.877-3.177 1.735-4.747 2.61-.11.056-.183.074-.274-.017-.073-.073-.164-.128-.255-.183-.073-.036-.092-.091-.073-.164.073-.438.146-.858.2-1.296.22-1.388.457-2.776.676-4.163a.25.25 0 0 1 0-.164"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pytorch.svg����������������������������������0000664�0000000�0000000�00000000655�14753064456�0025321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.005 0 4.952 7.053a9.865 9.865 0 0 0 0 14.022 9.866 9.866 0 0 0 14.022 0c3.984-3.9 3.986-10.205.085-14.023l-1.744 1.743c2.904 2.905 2.904 7.634 0 10.538s-7.634 2.904-10.538 0-2.904-7.634 0-10.538l4.647-4.646.582-.665zm3.568 3.899a1.327 1.327 0 0 0-1.327 1.327 1.327 1.327 0 0 0 1.327 1.328A1.327 1.327 0 0 0 16.9 5.226 1.327 1.327 0 0 0 15.573 3.9z"/></svg>�����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/pyup.svg�������������������������������������0000664�0000000�0000000�00000000343�14753064456�0024620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0 1.608 6v12l3.984 2.3v-12L12 4.6l6.408 3.7v7.4L12 19.4l-2.95-1.705v4.602L12 24l10.392-6V6zm0 8.593-2.95 1.703v3.408L12 15.407l2.95-1.703v-3.408z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/qantas.svg�����������������������������������0000664�0000000�0000000�00000000754�14753064456�0025120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m0 3.47.218.572c1.925 5.006 5.566 2.689 10.415 7.139l.056.05c.652.599 1.1.044.888-.306a.76.76 0 0 1-.165-.532 6.7 6.7 0 0 1 2.606 1.369l-.06.126c-.366.73-3.959.421-4 1.943a.97.97 0 0 0 .607.923l.71.287a17.3 17.3 0 0 1 6.086 4.146.086.086 0 0 1-.063.147.08.08 0 0 1-.054-.018 17.3 17.3 0 0 0-8.173-3.61.47.47 0 0 1-.39-.41c-.548-5.089-5.575-5.434-7.492-8.705l5.313 13.94H24L9.979 6.449a10.02 10.02 0 0 0-7.045-2.98Z"/></svg>��������������������mkdocs-material-9.6.4/material/templates/.icons/simple/qase.svg�������������������������������������0000664�0000000�0000000�00000001302�14753064456�0024550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.85 18.994s-.802.46-1.795.28c-.19-.03-.37-.1-.551-.19a11.77 11.77 0 0 0 2.367-7.088C23.87 5.428 18.525.1 11.935.1S0 5.428 0 11.996s5.346 11.897 11.935 11.897c2.087 0 4.042-.54 5.747-1.47.562.59 1.344 1.21 2.297 1.4 1.796.34 3.1-.48 3.631-1.58.451-.96.482-2.1.24-3.249m-11.925-.13c-3.79 0-6.88-3.079-6.88-6.858s3.09-6.858 6.88-6.858c3.792 0 6.89 3.07 6.89 6.848 0 1.16-.29 2.26-.812 3.22-.15-.19-.28-.37-.37-.49-.352-.48-.713-.97-1.064-1.47-.461-.65-1.524-1.95-2.989-2.23-1.795-.34-3.099.48-3.63 1.58-.452.96-.482 2.1-.251 3.239 0 0 .802-.46 1.795-.28.722.13 1.404.68 2.277 1.76.07.09.371.49.772 1.01-.802.34-1.685.53-2.618.53"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/qatarairways.svg�����������������������������0000664�0000000�0000000�00000006744�14753064456�0026346�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.633 13.143q.016.425-.006.84c-2.752.11-5.362.274-5.362.462 0 .183 2.552.347 5.27.454a7 7 0 0 1-.186.924c-2.68.11-5.17.273-5.17.456 0 .174 2.326.33 4.897.44q-.175.494-.396.954c-2.21.105-4.04.247-4.04.402 0 .145 1.595.279 3.609.38a10 10 0 0 1-.354.536q-.2.277-.422.55c-1.26.094-2.123.203-2.123.32 0 .1.616.193 1.568.276a9 9 0 0 1-1.856 1.414s-.854-.733-1.557-1.592c-.63-.764-1.96-2.78-2.271-3.229-.314-.451-.52-.585-.887-.453-.491.173-1.063.26-1.238.26s-.271-.067.025-.184c.291-.118 1.45-.665 2.023-1.799.64-1.274.077-3.033.077-3.033-.216.94-.705 1.29-.705 1.29.159-.872-.014-1.664-.446-2.22l-.24 1.107s-.15-.01-.525.304c-.37.314-.474.77-.474.77.296.12.644-.176.644-.176-.446 1.685-1.093 3.054-1.562 3.78-.472.724-.856.998-1.33 1.19-.396.159-.529-.028-.529-.028a7 7 0 0 1-.878-.902s-.021-.04.05-.036c.196.003.54-.327.616-.467.084-.158.078-.277.033-.286-.04-.007-.115.119-.492.353-.37.236-.537.074-.665-.06-.093-.1 0-.232.057-.312.06-.074 2.025-3.736 7.222-7.588 6.822-5.045 11.171-6.405 11.42-6.505.166-.065.434-.15.496-.088.065.071.1.128.088.211-.008.082-.05.123-.363.262-2.62 1.154-5.674 3.073-7.408 4.191-2.136 1.04-4.172 2.525-4.245 2.561-.164.101-.046.25.058.188 3.6-2.397 7.826-4.03 12.498-5.368.22-.062.342-.062.382-.014a.4.4 0 0 1 .064.187c.006.084-.064.13-.258.206-5.011 1.864-8.71 3.592-11.091 5.194 0 0-.245.146-.248.318 0 .065.132.073.132.073 1.19.021 2.784.092 3.538.136 0 0-.104.384-.83.692-.56.24-1.077.202-1.592.204-.117 0-.21.112-.122.238.047.06 1.14 1.816 5.104 2.217m-9.09 3.693c-.539.193-1.177.296-1.437.296-.451 0-1.189.25-1.45.476a337 337 0 0 0 3.413-.069l-.322-.472a1.6 1.6 0 0 0-.187-.236c-.01.003-.008 0-.016.005M2.92 8.682c1.43 0 4.068-.035 6.675-.095q.445-.358.928-.718C7.633 7.796 4.52 7.75 2.92 7.75c-.676 0-1.226.21-1.226.466 0 .257.55.465 1.226.465m.407-2.247c0 .202.433.366.965.366 1.631 0 5.267-.059 7.918-.15.198-.138.395-.279.591-.411a283 283 0 0 0-8.509-.171c-.532 0-.965.164-.965.366m11.784 5.069c.29.173.647.348 1.085.508 1.387-.07 2.28-.147 2.28-.23 0-.1-1.374-.195-3.365-.278m-13.018-.982c1.214 0 3.196-.023 5.36-.064q.466-.447.991-.906a352 352 0 0 0-6.351-.082c-.762 0-1.378.236-1.378.526s.616.526 1.378.526m13.8-2.448a31 31 0 0 0-.606.322c1.023-.055 1.67-.115 1.67-.179 0-.05-.402-.097-1.063-.143m-9.433-2.8c1.556 0 6.286-.116 6.286-.258 0-.145-4.732-.261-6.286-.261-.301 0-.547.116-.547.26 0 .143.246.26.547.26M16.645 9.95a1 1 0 0 1-.095.218c.862-.054 1.391-.113 1.391-.173 0-.058-.479-.113-1.264-.165zm-5.878 8.619c-2.952-.077-6.2-.124-7.846-.124-.676 0-1.226.209-1.226.466 0 .256.55.465 1.226.465 1.735 0 5.237-.053 8.314-.137q-.235-.331-.468-.67m1.402 1.905c-2.654-.09-6.254-.148-7.876-.148-.532 0-.965.164-.965.367 0 .2.433.364.965.364 1.702 0 5.575-.062 8.245-.161a13 13 0 0 1-.37-.422m-6.253 1.638c0 .142.246.262.547.262 1.554 0 6.286-.12 6.286-.262s-4.73-.258-6.286-.258c-.301 0-.547.115-.547.258m-2.798-6.218c.028-.13.087-.274.205-.43-.017.02-.024.039-.006.007.106-.183.244-.41.419-.671-.814-.009-1.53-.014-2.093-.014-.808 0-1.465.25-1.465.558s.657.558 1.465.558c.415 0 .915-.003 1.475-.008m1.2 1.748c-.198-.193-.862-.957-.943-1.03-.483-.003-.918-.006-1.28-.006-.762 0-1.378.234-1.378.527 0 .288.616.525 1.378.525.587 0 1.348-.007 2.223-.016m-.105-3.532c.243-.327.517-.692.839-1.084-1.427-.019-2.678-.03-3.556-.03-.827 0-1.495.254-1.495.567s.668.568 1.495.568c.698 0 1.644-.007 2.717-.02m-2.57-1.771c.97 0 2.404-.015 4.025-.039.298-.327.607-.67.949-1.023a299 299 0 0 0-4.974-.052c-.808 0-1.465.246-1.465.556s.657.558 1.465.558"/></svg>����������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/qbittorrent.svg������������������������������0000664�0000000�0000000�00000002505�14753064456�0026202�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.911 23.994c-1.31 0-2.605-.232-3.831-.705-3.4-1.024-6.2-3.865-7.433-7.58-1.23-3.708-.685-7.654 1.459-10.554C4.062 2.038 7.677.094 11.742.008c4.064-.079 7.758 1.703 9.882 4.785a12.07 12.07 0 0 1 2.369 7.145c.138 3.733-1.75 7.368-5.052 9.728-2.147 1.535-4.61 2.328-7.03 2.328m.11-22.314q-.121 0-.244.002c-3.5.074-6.599 1.725-8.29 4.415-1.856 2.516-2.31 5.893-1.25 9.086 1.06 3.197 3.448 5.636 6.386 6.523 3.025 1.165 6.496.633 9.345-1.402 2.847-2.035 4.473-5.144 4.351-8.318v-.032c0-2.214-.73-4.41-2.055-6.185-1.78-2.58-4.84-4.09-8.243-4.09zM9.406 20.246v-4.578a2.66 2.66 0 0 1-.952.863 2.6 2.6 0 0 1-1.29.344q-1.524 0-2.63-1.33-1.097-1.33-1.097-3.646 0-1.408.444-2.527.451-1.119 1.299-1.69A3.26 3.26 0 0 1 7.052 7.1q1.587 0 2.5 1.46V7.31h1.306v12.935H9.406zm-4.477-8.285q0 1.805.694 2.711.694.9 1.662.9.928 0 1.597-.855.67-.863.67-2.615 0-1.866-.71-2.81-.703-.94-1.654-.941-.944 0-1.605.88-.653.872-.654 2.73m9.55 4.702h-1.346V3.755h1.452v4.604q.92-1.259 2.347-1.258.79 0 1.492.351c.464.222.864.558 1.161.978q.46.625.718 1.514.258.89.258 1.902 0 2.404-1.088 3.716-1.09 1.312-2.614 1.312-1.517 0-2.379-1.382v1.17m-.016-4.746q0 1.683.42 2.432.684 1.223 1.854 1.223.952 0 1.646-.898.693-.907.693-2.695 0-1.83-.67-2.703-.66-.871-1.605-.872-.95 0-1.645.907-.694.9-.694 2.607"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/qemu.svg�������������������������������������0000664�0000000�0000000�00000002546�14753064456�0024601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.003.064C5.376.064 0 5.407 0 12s5.376 11.936 12.003 11.936c2.169 0 4.2-.57 5.955-1.57l.624 1.57h4.841l-1.893-4.679A11.85 11.85 0 0 0 24 12C24 5.407 18.63.064 12.003.064M8.818 2.03c.398.339.324.198.86.134.61-.397.893.942 1.147.195.748.097 1.542.34 2.25.584a3.45 3.45 0 0 1 1.859 1.128l-.014.007.35.463c.045.08.082.164.12.248.142 1.205 1.48 1.19 2.377 1.625.767.272 1.69.686 1.785 1.611-.193-.042-.941-.921-1.53-1.007a4 4 0 0 1-1.094-.255L14.86 6.38v-.007a3 3 0 0 1-.309-.053v.013l-2.927-.362c.048.033.1.077.148.12l3 .585v-.007l.209.053.839.188c.166.016.334.043.47.067.856.236 1.868.194 2.571.792-.184.352-1.21.153-1.719.108-.062-.012-.131-.023-.194-.034l-.034-.007c-.696-.113-1.411-.12-2.081.088h-.007a3.2 3.2 0 0 0-.671.302c-.968.563-2.164.767-2.967 1.577-.787.847-.739 2.012-.604 3.095h.033v.275q.02.143.04.282c.41 2.19 1.5 4.2 1.84 6.412.065.843.203 1.932.309 2.618-.306-.091-.475-1.462-.544-1.007a38 38 0 0 0-3.565-5.25c-.853-1.004-1.697-2.06-2.712-2.894-.685-.528-.468-1.55-.537-2.302-.23-.926-.094-1.848.06-2.773.313-.963.418-1.968.846-2.893.653-.581.669-1.63 1.303-2.135.094.058.157.085.2.1l.068.008h.007c.09-.095-.888-1.116.02-.712.035-.537.854-.128.866-.597m3.847 2.182c-.323.009-.574.13-.645.335-.114.33.273.755.866.96.594.205 1.168.109 1.282-.221s-.272-.762-.866-.967a1.8 1.8 0 0 0-.637-.107"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/qgis.svg�������������������������������������0000664�0000000�0000000�00000000754�14753064456�0024574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.879 13.006v3.65l-3.004-3.048v-3.495h3.582l2.852 2.893zm10.886 7.606V24h-3.654l-5.73-5.9v-3.55h3.354zm-10.828-1.448 3.372 3.371c-1.309.442-2.557.726-4.325.726C5.136 23.26 0 18.243 0 11.565 0 4.92 5.136 0 11.984 0 18.864 0 24 4.952 24 11.565c0 2.12-.523 4.076-1.457 5.759l-3.625-3.725a8.4 8.4 0 0 0 .24-2.005c0-4.291-3.148-7.527-7.1-7.527-3.954 0-7.248 3.236-7.248 7.527s3.33 7.6 7.247 7.6c.548 0 .661.017.88-.03"/></svg>��������������������mkdocs-material-9.6.4/material/templates/.icons/simple/qi.svg���������������������������������������0000664�0000000�0000000�00000001044�14753064456�0024233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.574 0a1.525 1.525 0 1 0 0 3.05 1.525 1.525 0 0 0 0-3.05m-4.637 2.856a7.626 7.626 0 0 0-.135 15.248c.296 0 .296.293.296.293v2.65s0 2.762 2.657 2.953c.295.01.295-.295.295-.295V3.785s0-.294-.295-.414a7.7 7.7 0 0 0-2.818-.515m4.748 1.662c-.11-.002-.11.179-.11.39v11.146c0 .294 0 .526.295.295l.032-.027a7.626 7.626 0 0 0 .94-10.743 7.6 7.6 0 0 0-.971-.966c-.083-.066-.143-.094-.186-.095zm-4.751 1.389c.165 0 .165.164.165.164v8.82s0 .164-.165.164a4.576 4.576 0 0 1 0-9.148"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/qiita.svg������������������������������������0000664�0000000�0000000�00000004056�14753064456�0024737�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.57 8.343a3.7 3.7 0 0 0-1.376.269 3.6 3.6 0 0 0-1.14.738 3.5 3.5 0 0 0-.773 1.102A3.3 3.3 0 0 0 0 11.814a3.3 3.3 0 0 0 .281 1.357 3.5 3.5 0 0 0 .775 1.107A3.64 3.64 0 0 0 3.6 15.29a3.7 3.7 0 0 0 .987-.13 3.7 3.7 0 0 0 .888-.374l.687.698a.58.58 0 0 0 .824 0 .58.58 0 0 0 0-.817l-.624-.624a3.5 3.5 0 0 0 .613-1.022 3.3 3.3 0 0 0 .226-1.208 3.3 3.3 0 0 0-.282-1.362 3.5 3.5 0 0 0-.775-1.102A3.6 3.6 0 0 0 5 8.612a3.7 3.7 0 0 0-1.398-.27h-.031zm11.306.185v1.484h-.765v1.063h.765v2.142q0 .628.159 1.028a1.56 1.56 0 0 0 .433.63 1.5 1.5 0 0 0 .643.317 2.7 2.7 0 0 0 .694.086h.853v-1.013h-.736a1.3 1.3 0 0 1-.352-.048.7.7 0 0 1-.291-.169.8.8 0 0 1-.2-.324 1.6 1.6 0 0 1-.074-.519v-2.13h1.666v-1.063h-1.66V8.528zM9.4 8.856a.69.69 0 0 0-.69.691.69.69 0 0 0 .69.69.69.69 0 0 0 .691-.69.69.69 0 0 0-.69-.691zm2.771 0a.69.69 0 0 0-.69.691.69.69 0 0 0 .69.69.69.69 0 0 0 .691-.69.69.69 0 0 0-.69-.691zm-8.6.538h.03a2.35 2.35 0 0 1 .93.187 2.35 2.35 0 0 1 1.264 1.28 2.5 2.5 0 0 1 .186.957 2.4 2.4 0 0 1-.186.957 2.4 2.4 0 0 1-.506.767 2.36 2.36 0 0 1-1.688.698 2.3 2.3 0 0 1-.93-.186 2.4 2.4 0 0 1-.755-.512 2.43 2.43 0 0 1-.699-1.723 2.44 2.44 0 0 1 .699-1.727 2.4 2.4 0 0 1 .756-.511 2.3 2.3 0 0 1 .898-.187zm17.648.773a2.7 2.7 0 0 0-1.02.201 2.5 2.5 0 0 0-.815.552 2.4 2.4 0 0 0-.525.814 2.7 2.7 0 0 0-.186.998 2.6 2.6 0 0 0 .186.997 2.5 2.5 0 0 0 .525.814 2.4 2.4 0 0 0 .815.546 2.7 2.7 0 0 0 1.059.2 2.4 2.4 0 0 0 .518-.056 2.5 2.5 0 0 0 .46-.146 2.4 2.4 0 0 0 .394-.213 2.4 2.4 0 0 0 .329-.263l.065.53H24v-4.829h-.976l-.068.533a2.5 2.5 0 0 0-.322-.26 2.3 2.3 0 0 0-.394-.217 2.6 2.6 0 0 0-.462-.145 2.4 2.4 0 0 0-.521-.056zm-12.375.844v4.138h1.113V11.01zm2.77 0v4.138h1.114V11.01zm9.72.145h.024a1.56 1.56 0 0 1 1.098.445 1.5 1.5 0 0 1 .334.495 1.6 1.6 0 0 1 .121.631 1.6 1.6 0 0 1-.121.64 1.6 1.6 0 0 1-.331.498 1.5 1.5 0 0 1-.49.324 1.64 1.64 0 0 1-1.207 0 1.5 1.5 0 0 1-.493-.324 1.5 1.5 0 0 1-.333-.5 1.6 1.6 0 0 1-.122-.638 1.6 1.6 0 0 1 .12-.637 1.5 1.5 0 0 1 .328-.495 1.5 1.5 0 0 1 .49-.323 1.6 1.6 0 0 1 .581-.116z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/qiskit.svg�����������������������������������0000664�0000000�0000000�00000005761�14753064456�0025140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.969 0v.001A12 12 0 0 0 1.697 5.844a11.99 11.99 0 0 0-.124 12.084 12 12 0 0 0 9.787 6.037 6.2 6.2 0 0 0 1.366-.005 12 12 0 0 0 9.572-5.821 12 12 0 0 0 1.694-5.97 1 1 0 0 0 .008-.126v-.034a1 1 0 0 0-.006-.11 12 12 0 0 0-1.416-5.56A12 12 0 0 0 12.28.002q-.12-.002-.24-.001zm.008.84c1.229 0 2.065.274 2.065.513 0 .24-.857.548-2.056.548s-2.091-.29-2.091-.53c0-.235.823-.517 1.998-.53zm2.874.368a11.2 11.2 0 0 1 4.996 2.835c-1.968-.754-4.83-1.17-7.604-1.2-1.347 0-2.703.09-3.977.26a1 1 0 0 0-1.247-.274 1 1 0 0 0-.518.57c-.862.18-1.653.402-2.335.663a11.2 11.2 0 0 1 4.916-2.83 1 1 0 0 0-.01.138c0 1.234 2.022 1.336 2.914 1.336.89 0 2.88-.12 2.88-1.336q-.002-.084-.015-.163zm-2.608 2.44c4.789.06 8.31 1.152 9.126 2.25q.037.055.073.111a.73.73 0 0 1 .107.363c0 .826-1.731 1.706-4.446 2.23a36 36 0 0 0-4.809-.362q-.894.001-1.787.045l-2.24-3.883c.136-.166.208-.346.23-.524a30 30 0 0 1 3.746-.23m-5.694.557a.99.99 0 0 0 .946.574q.07.005.137 0L9.697 8.33c-.956.064-1.894.16-2.787.292-2.742-.529-4.437-1.43-4.437-2.25 0-.096.027-.193.072-.29q.076-.119.153-.235c.516-.62 1.902-1.223 3.851-1.642m15.546 2.979a11.1 11.1 0 0 1 1 3.353c-.874-.668-2.314-1.2-4.043-1.584 1.46-.448 2.566-1.045 3.043-1.77m-20.17.031c.489.729 1.599 1.32 3.045 1.762-1.729.385-3.159.915-4.03 1.57q.098-.746.3-1.487a11 11 0 0 1 .685-1.845m10.352 1.813q.439.005.864.02c-.444.018-.895.031-1.36.031a32 32 0 0 1-.827-.02l-.004-.009a40 40 0 0 1 1.327-.022zm4.918.38c3.65.552 5.954 1.615 5.997 2.58v.046c-.053.963-2.38 2-5.943 2.553a28 28 0 0 0-3.333-.42L12.38 11.53l-.944-1.636q.163.005.327.008c1.875 0 3.771-.171 5.432-.493zm-10.374.016a27 27 0 0 0 3.767.44l1.158 1.99 1.31 2.268a32 32 0 0 0-.813-.024c-1.895 0-3.811.173-5.485.499-3.462-.535-5.7-1.53-5.913-2.46v-.263c.214-.935 2.522-1.92 5.976-2.45m16.27 4.077a11.2 11.2 0 0 1-.977 3.295c-.467-.72-1.535-1.302-2.937-1.739 1.68-.387 3.064-.912 3.913-1.556m-22.144.02c.852.652 2.233 1.173 3.89 1.553-1.39.436-2.444 1.009-2.921 1.702a11.2 11.2 0 0 1-.969-3.256m11.296 1.365q.658.013 1.283.049l.008.014a40 40 0 0 1-1.788.04 39 39 0 0 1-1.435-.042 31 31 0 0 1 1.932-.06m5.092.523c2.613.54 4.22 1.41 4.231 2.218a.7.7 0 0 1-.103.35l-.036.055c-.406.611-1.697 1.22-3.565 1.66a.99.99 0 0 0-.82-.42 1 1 0 0 0-.155 0l-2.078-3.57c.868-.07 1.717-.167 2.527-.293M6.67 15.42c1.603.248 3.346.387 5.06.408.758 0 1.52-.023 2.272-.068l2.235 3.888a1.05 1.05 0 0 0-.2.386c-1.275.186-2.709.299-4.256.299-4.702-.059-8.179-1.1-9.087-2.172a11 11 0 0 1-.186-.294.7.7 0 0 1-.05-.24c.01-.8 1.637-1.667 4.212-2.207zm13.264 4.468q-.092.094-.187.186a11.15 11.15 0 0 1-4.721 2.69c.05-.12.08-.245.08-.375 0-.557-.486-1.031-1.252-1.322a29 29 0 0 0 2.295-.246c.25.415.775.663 1.32.408a.99.99 0 0 0 .58-.766c.69-.163 1.325-.356 1.885-.575m-15.784.048c1.592.61 3.765.996 6.001 1.14-.745.286-1.215.748-1.215 1.296v.017q.002.195.082.374a11.2 11.2 0 0 1-4.868-2.827m7.87 1.596c1.389 0 2.263.497 2.28.857.013.257-.457.574-1.225.734a11 11 0 0 1-2.198-.008c-.715-.174-1.135-.49-1.135-.726 0-.343.89-.857 2.279-.857"/></svg>���������������mkdocs-material-9.6.4/material/templates/.icons/simple/qiwi.svg�������������������������������������0000664�0000000�0000000�00000001660�14753064456�0024577�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.064 0C5.17 0 .391 4.778.391 10.673S5.17 21.346 11.065 21.346c1.567 0 3.118-.293 5.398-.31 2.033 0 4.267.714 6.718 2.886.248.217.574-.062.357-.326-2.405-3.056-4.64-3.63-6.873-4.126-2.73-.606-4.126-2.126-5.104-3.817-.186-.341-.28-.279-.295.156-.018.639.03 1.278.14 1.908h-.326a7.066 7.066 0 0 1-7.06-7.06A7.065 7.065 0 0 1 11.08 3.6a7.064 7.064 0 0 1 7.013 7.88c-.528-.093-1.537-.108-2.25-.046-.264.031-.233.155-.031.187 2.327.434 3.925 1.877 4.297 4.499.015.062.093.077.124.03a10.74 10.74 0 0 0 1.505-5.476C21.738 4.778 16.96 0 11.064 0m7.644 15.077a.31.31 0 0 0-.306.157c-.124.218-.03.636.202 1.009s.45.558.606.558.294-.186.232-.667c-.03-.264-.186-.868-.59-1.024-.047-.021-.101-.023-.144-.033m-2.214 1.787c-.217 0-.388.076-.497.216-.279.341-.155.962.28 1.335.186.17.466.263.73.263a.82.82 0 0 0 .635-.278c.249-.342.11-.808-.372-1.211-.248-.217-.527-.325-.776-.325"/></svg>��������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/qlik.svg�������������������������������������0000664�0000000�0000000�00000000647�14753064456�0024572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.752 20.137-3.13-2.633a11.2 11.2 0 0 0 1.73-5.965C22.352 5.37 17.344.362 11.176.362S0 5.37 0 11.54s5.008 11.176 11.176 11.176c2.393 0 4.622-.756 6.444-2.044l3.333 2.799s.497.423.92-.074l1.989-2.357c-.019 0 .386-.497-.11-.902m-5.708-8.598a6.867 6.867 0 1 1-13.735 0 6.867 6.867 0 0 1 13.735 0m-11.287 0a4.4 4.4 0 1 1 8.8 0 4.4 4.4 0 0 1-8.8 0z"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/qmk.svg��������������������������������������0000664�0000000�0000000�00000005330�14753064456�0024414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.78 0a.33.33 0 0 1 .33.33v2.127h1.453V.331c0-.16.114-.293.264-.324L8.894 0h.661a.33.33 0 0 1 .331.33v2.127h1.452V.331c0-.16.114-.293.265-.324L11.669 0h.662a.33.33 0 0 1 .33.33v2.127h1.452V.331c0-.16.114-.293.265-.324L14.445 0h.661a.33.33 0 0 1 .331.33l-.001 2.127h1.453V.331c0-.16.114-.293.264-.324L17.22 0h.662a.33.33 0 0 1 .33.33v2.127h.468a2.864 2.864 0 0 1 2.863 2.863l-.001.467h2.127c.16 0 .293.114.324.265l.007.067v.661a.33.33 0 0 1-.33.33h-2.128v1.453h2.127c.16 0 .293.114.324.264l.007.067v.661a.33.33 0 0 1-.33.331h-2.128v1.452h2.127c.16 0 .293.114.324.265l.007.066v.662a.33.33 0 0 1-.33.33h-2.128v1.452h2.127c.16 0 .293.114.324.265l.007.067v.661a.33.33 0 0 1-.33.331l-2.128-.001v1.453h2.127c.16 0 .293.114.324.264l.007.067v.662a.33.33 0 0 1-.33.33h-2.128v.468a2.864 2.864 0 0 1-2.862 2.863l-.468-.001v2.127a.33.33 0 0 1-.264.324l-.066.007h-.662a.33.33 0 0 1-.33-.33l-.001-2.128h-1.453l.001 2.127c0 .16-.114.293-.264.324l-.067.007h-.661a.33.33 0 0 1-.331-.33l-.001-2.128h-1.452v2.127a.33.33 0 0 1-.264.324l-.066.007h-.662a.33.33 0 0 1-.33-.33l-.001-2.128H9.886v2.127a.33.33 0 0 1-.264.324L9.555 24h-.661a.33.33 0 0 1-.331-.33v-2.128H7.11v2.127a.33.33 0 0 1-.33.331h-.662a.33.33 0 0 1-.33-.33l-.001-2.128H5.32a2.864 2.864 0 0 1-2.863-2.862v-.468H.331a.33.33 0 0 1-.324-.264L0 17.882v-.662a.33.33 0 0 1 .33-.33l2.127-.001v-1.453l-2.126.001a.33.33 0 0 1-.324-.264L0 15.106v-.661a.33.33 0 0 1 .33-.331l2.127-.001v-1.452H.331a.33.33 0 0 1-.324-.264L0 12.331v-.662a.33.33 0 0 1 .33-.33l2.127-.001V9.886H.331a.33.33 0 0 1-.324-.264L0 9.555v-.661a.33.33 0 0 1 .33-.33l2.127-.001V7.11H.331a.33.33 0 0 1-.324-.263L0 6.78v-.66a.33.33 0 0 1 .33-.331l2.127-.001V5.32A2.864 2.864 0 0 1 5.32 2.457h.467V.331c0-.16.114-.293.265-.324L6.118 0zm9.915 6.275q-.231 0-.372.018a1 1 0 0 0-.23.053.26.26 0 0 0-.125.088.2.2 0 0 0-.035.115v4.428q0 .709-.2 1.288-.198.58-.592.992t-.988.646-1.39.244V6.549a.2.2 0 0 0-.035-.115.26.26 0 0 0-.124-.088 1 1 0 0 0-.235-.053 3 3 0 0 0-.368-.018q-.203 0-.35.018a1 1 0 0 0-.238.053.3.3 0 0 0-.133.088.2.2 0 0 0-.04.115v7.598q-.797-.018-1.395-.244a2.6 2.6 0 0 1-.987-.637 2.6 2.6 0 0 1-.584-1 4.2 4.2 0 0 1-.195-1.324V6.549a.2.2 0 0 0-.036-.115.26.26 0 0 0-.124-.088 1 1 0 0 0-.234-.053 3 3 0 0 0-.368-.018q-.221 0-.367.018a1 1 0 0 0-.23.053.3.3 0 0 0-.124.088.2.2 0 0 0-.04.115v4.525q0 1.045.318 1.851.32.805.921 1.36.603.552 1.47.845.868.292 1.975.319v2.116a.2.2 0 0 0 .04.124.26.26 0 0 0 .124.084q.084.03.23.049.146.017.367.017t.368-.017a1 1 0 0 0 .235-.049q.088-.03.124-.084a.2.2 0 0 0 .035-.124v-2.116q1.089-.027 1.953-.346a4.2 4.2 0 0 0 1.47-.903q.606-.585.934-1.412.327-.828.327-1.873V6.549a.2.2 0 0 0-.04-.115.3.3 0 0 0-.124-.088 1 1 0 0 0-.23-.053 3 3 0 0 0-.358-.018"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/qnap.svg�������������������������������������0000664�0000000�0000000�00000002622�14753064456�0024564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.316 9.955Q0 9.955 0 11.018v1.95q0 1.057 1.316 1.057h2.57c0-.006.15.005.378-.029-.215-.309-.612-.643-.983-.912l-.068-.049h-1.6v-2.113h2.131v1.793c.64.2 1.08.455 1.379.7q.075-.194.076-.446v-1.951q0-1.005-1.176-1.06v-.003zm4.965.053q-.232 0-.357.13c-.147.154-.117.347-.131.354v3.518h1.445l-.011-2.406c.006-.036.032-.088.142-.075 0 0 .043.002.06.034.28.445 2.104 2.447 2.104 2.447h1.5v-4.002H9.57v2.328c-.022.053-.095.044-.13.006-.259-.4-1.251-1.764-1.569-2.2-.02-.024-.125-.134-.355-.134Zm6.584 0q-.549 0-.844.23a.77.77 0 0 0-.302.639v3.133h1.527v-1.067h2.14v1.067h1.53v-3.133q0-.407-.297-.639-.296-.23-.846-.23zm5.918 0q-.549 0-.846.232a.77.77 0 0 0-.302.62v3.15h1.53v-1.045h2.47q1.007.001 1.008-.809v-1.283q-.002-.462-.248-.664c-.28-.222-.743-.188-.704-.201zm4.725.072a.47.47 0 0 0 .023.94.47.47 0 0 0 .469-.47.47.47 0 0 0-.469-.47zm.002.068h.021c.222.001.4.182.4.403a.4.4 0 0 1-.4.398.4.4 0 0 1-.4-.398c0-.214.167-.391.379-.403m-.19.141v.533h.073v-.236q.06-.001.12.002c.033.007.065.046.07.05.044.059.08.123.12.184h.088l-.092-.144a.4.4 0 0 0-.058-.07.2.2 0 0 0-.043-.028.2.2 0 0 0 .113-.049.144.144 0 0 0 .014-.175c-.022-.036-.056-.067-.166-.067zm.073.059h.168c.15 0 .134.14.058.168-.074.019-.151.006-.226.01zm-10.147.7h2.14v1.159h-2.14zm5.897 0h1.943v1.038h-1.943zm-16.358 1.54c.48.304 1.352.907 1.64 1.457h1.089c-.186-.331-.814-1.13-2.729-1.457"/></svg>��������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/qq.svg���������������������������������������0000664�0000000�0000000�00000001156�14753064456�0024247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.395 15.035a40 40 0 0 0-.803-2.264l-1.079-2.695c.001-.032.014-.562.014-.836C19.526 4.632 17.351 0 12 0S4.474 4.632 4.474 9.241c0 .274.013.804.014.836l-1.08 2.695a39 39 0 0 0-.802 2.264c-1.021 3.283-.69 4.643-.438 4.673.54.065 2.103-2.472 2.103-2.472 0 1.469.756 3.387 2.394 4.771-.612.188-1.363.479-1.845.835-.434.32-.379.646-.301.778.343.578 5.883.369 7.482.189 1.6.18 7.14.389 7.483-.189.078-.132.132-.458-.301-.778-.483-.356-1.233-.646-1.846-.836 1.637-1.384 2.393-3.302 2.393-4.771 0 0 1.563 2.537 2.103 2.472.251-.03.581-1.39-.438-4.673"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/qt.svg���������������������������������������0000664�0000000�0000000�00000001462�14753064456�0024252�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.693 3.162H3.33L0 6.49v14.348h20.671L24 17.51V3.162zM12.785 18.4l-1.562.728-1.35-2.217c-.196.057-.499.09-.924.09q-2.37 0-3.305-1.276c-.622-.85-.932-2.2-.932-4.033q.002-2.76.949-4.098.945-1.34 3.288-1.341c1.562 0 2.658.441 3.28 1.333.63.883.94 2.25.94 4.098q-.002 1.828-.384 2.945c-.261.752-.679 1.325-1.268 1.718zm4.736-1.587q-1.287 0-1.766-.59-.482-.588-.483-2.232v-3.534H14.11V9.051h1.162V6.843h1.644V9.05h2.094v1.415h-2.094v3.346c0 .622.05 1.03.14 1.227.09.204.326.303.695.303l1.243-.05.073 1.326q-1.006.195-1.546.196m-8.58-9.08q-1.425-.002-1.963.94c-.352.63-.532 1.629-.532 3.011 0 1.374.172 2.364.515 2.953s1.006.892 1.98.892c.973 0 1.628-.295 1.971-.876.335-.58.507-1.57.507-2.953 0-1.39-.172-2.396-.523-3.026s-1.006-.94-1.955-.94Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/qualcomm.svg���������������������������������0000664�0000000�0000000�00000001040�14753064456�0025434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C6.23 0 1.576 4.486 1.576 10.474c0 6.004 4.653 10.474 10.424 10.474.984 0 1.935-.134 2.835-.384l1.134 2.919c.117.317.35.517.768.517h1.8c.435 0 .751-.284.551-.834l-1.467-3.82c2.885-1.817 4.803-5.036 4.803-8.889C22.424 4.487 17.77 0 12 0m4.536 16.562-1.317-3.42c-.117-.283-.35-.55-.85-.55H12.65c-.433 0-.767.284-.567.834l1.735 4.486A7.2 7.2 0 0 1 12 18.13c-4.22 0-7.222-3.319-7.222-7.655S7.78 2.819 12 2.819s7.222 3.319 7.222 7.655c0 2.535-1.018 4.703-2.686 6.087"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/qualtrics.svg��������������������������������0000664�0000000�0000000�00000000613�14753064456�0025632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.14 5.518-2.695 9.538h-.034l-2.89-9.538H8.125l-2.19 3.893-2.318-3.893H.368l3.78 6.116L0 18.486h2.993l2.66-4.534 2.755 4.534h4.906v-8.99h.034q.102.564.195.966t.175.744q.085.342.184.65t.2.677l1.926 5.949h2.523l1.942-5.95q.213-.718.398-1.385a15 15 0 0 0 .32-1.506h.035v8.845H24V5.514zM7.373 11.651l3.383-5.616v11.118z"/></svg>���������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/qualys.svg�����������������������������������0000664�0000000�0000000�00000001175�14753064456�0025145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.999 0c-6.564 0-9.86 3.512-9.86 3.512s-.378 2.599-.137 7.833C2.365 19.25 11.999 24 12 24s9.635-4.749 9.998-12.655c.241-5.234-.136-7.833-.136-7.833S18.562 0 11.999 0m-.679 2.92a7.366 7.366 0 0 1 8.046 7.334 7.12 7.12 0 0 1-2.771 5.634c-1.18-.108-2.41-.442-2.968-.76 1.438-.918 3.304-2.704 3.304-4.874A4.936 4.936 0 0 0 12 5.324c-2.717 0-4.928 2.273-4.928 5.069 0 2.332 1.236 4.162 3.672 5.44 1.595.837 3.973 1.45 6.485 1.773-.418.622-1.533 1.686-2.184 2.046-3.009-.494-5.651-1.536-7.458-3.097-1.932-1.67-2.954-3.848-2.954-6.301a7.366 7.366 0 0 1 6.686-7.335"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/quantcast.svg��������������������������������0000664�0000000�0000000�00000004226�14753064456�0025632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.548 10.96c-.306 0-.579.102-.806.43h-.011v-.353H10v2.724h.763v-1.548c0-.37.191-.634.497-.634.24 0 .408.132.408.525v1.66h.763v-1.851c0-.528-.227-.952-.884-.952zm-1.952 2.8v-1.917c0-.627-.562-.88-1.236-.88-.954 0-1.25.537-1.277.956h.73c.017-.245.202-.402.514-.402.334 0 .536.16.536.483v.126l-.705.043c-1.064.064-1.16.544-1.16.836 0 .621.526.832.955.832.318 0 .68-.096.933-.43h.01v.354zm-.73-.937c0 .328-.388.46-.626.46-.256 0-.478-.073-.478-.317 0-.197.118-.303.466-.334l.635-.06Zm11.831-1.065c0-.165.203-.244.402-.244.292 0 .455.138.466.365l.764-.017c-.042-.592-.503-.901-1.202-.901-.806 0-1.129.455-1.129.873 0 1.124 1.632.71 1.632 1.166 0 .222-.256.28-.45.28-.227 0-.46-.106-.471-.37h-.764c.064.806.825.921 1.207.921 1.124 0 1.242-.7 1.242-.913 0-1.098-1.697-.674-1.697-1.16m-.983 2.003v-1.918c0-.627-.561-.88-1.235-.88-.955 0-1.25.537-1.278.956h.73c.017-.245.202-.402.514-.402.334 0 .537.16.537.483v.126l-.705.042c-1.065.065-1.16.545-1.16.837 0 .621.525.832.955.832.317 0 .68-.096.932-.43h.011v.354zm-.73-.938c0 .328-.387.46-.626.46-.255 0-.477-.073-.477-.317 0-.197.118-.303.466-.334l.635-.06v.25zm-2.769-.02c-.047.25-.196.416-.477.416-.399 0-.525-.402-.525-.764 0-.351.059-.848.53-.848.197 0 .413.084.439.44h.744l.05-.002c-.036-.579-.424-1.087-1.235-1.087-.826 0-1.326.59-1.326 1.463 0 .837.45 1.41 1.343 1.41.73 0 1.092-.432 1.207-1.03zm-3.201-1.755v-.795h.772v.795h.407v.59h-.407v1.393c0 .123.053.182.253.182a.6.6 0 0 0 .154-.017v.607c-.123.017-.247.03-.37.03-.503 0-.81-.123-.81-.718v-1.48h-.353v-.587zm9.807 0v-.795h.772v.795H24v.59h-.407v1.393c0 .123.053.182.253.182a.6.6 0 0 0 .154-.017v.607a3 3 0 0 1-.37.03c-.503 0-.81-.123-.81-.718v-1.48h-.353v-.587ZM5.94 12.584c0 .37-.191.635-.497.635-.24 0-.408-.132-.408-.525v-1.66h-.764v1.85c0 .526.298.95.955.95.306 0 .509-.101.736-.43h.011v.354h.73v-2.724H5.94Zm-3.27 1.163.25.43h.89l-.47-.815c.426-.388.648-.958.648-1.525 0-1-.685-2.013-1.994-2.013S0 10.837 0 11.837s.685 2.014 1.994 2.014q.368-.002.677-.104zm-1.808-1.91c0-.649.348-1.303 1.126-1.303s1.126.654 1.126 1.303c0 .28-.064.565-.202.792h-.89l.272.472a1.2 1.2 0 0 1-.306.04c-.778 0-1.126-.655-1.126-1.304"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/quantconnect.svg�����������������������������0000664�0000000�0000000�00000002222�14753064456�0026323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.067 16.664a12.1 12.1 0 0 1-6.404 6.404A12 12 0 0 1 12 24v-2.797a8.6 8.6 0 0 0 3.546-.747 9.5 9.5 0 0 0 2.983-1.927 11.4 11.4 0 0 0 1.927-2.922A9.15 9.15 0 0 0 21.204 12a8.6 8.6 0 0 0-.746-3.545 8.93 8.93 0 0 0-4.911-4.912 9.53 9.53 0 0 0-7.091 0 9.48 9.48 0 0 0-4.911 4.912A9.8 9.8 0 0 0 2.798 12H0a12 12 0 0 1 .932-4.662A12.1 12.1 0 0 1 7.336.933a12.12 12.12 0 0 1 9.326 0 11.5 11.5 0 0 1 3.792 2.609 11.5 11.5 0 0 1 2.613 3.796 12.12 12.12 0 0 1 0 9.326M11.998 9.886V7.089a4.79 4.79 0 0 0-3.483 1.43A4.7 4.7 0 0 0 7.025 12a4.6 4.6 0 0 0 1.49 3.478 4.81 4.81 0 0 0 6.799.165 5 5 0 0 0 .165-.165A4.34 4.34 0 0 0 16.91 12H14.11a2.06 2.06 0 0 1-.621 1.492 2.02 2.02 0 0 1-1.492.622A2.123 2.123 0 0 1 9.884 12a2.02 2.02 0 0 1 .622-1.492 2.06 2.06 0 0 1 1.492-.621m5.972 8.08a7.04 7.04 0 0 0 1.806-2.676 7.5 7.5 0 0 0 .684-3.296 7.66 7.66 0 0 0-.684-3.295A8.45 8.45 0 0 0 15.3 4.223a7.5 7.5 0 0 0-3.295-.683v2.797a5.3 5.3 0 0 1 3.98 1.679 5.4 5.4 0 0 1 1.677 3.979 5.658 5.658 0 0 1-11.315 0H3.548a8.4 8.4 0 0 0 .616 3.298 9.3 9.3 0 0 0 4.54 4.538 9.04 9.04 0 0 0 6.59 0 8 8 0 0 0 2.676-1.864"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/quarkus.svg����������������������������������0000664�0000000�0000000�00000001262�14753064456�0025317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.981 0A3.993 3.993 0 0 0 0 3.981V20.02A3.993 3.993 0 0 0 3.981 24h10.983L12 16.8l-2.15 4.546H3.98c-.72 0-1.327-.608-1.327-1.327V3.98c0-.72.608-1.327 1.327-1.327h16.04c.72 0 1.327.608 1.327 1.327v16.04c0 .72-.608 1.327-1.327 1.327h-3.48L17.63 24h2.388A3.993 3.993 0 0 0 24 20.019V3.98A3.993 3.993 0 0 0 20.019 0zm4.324 4.217v3.858l3.341-1.93zm7.39 0-3.341 1.929 3.34 1.929zM12 6.35 8.305 8.483 12 10.617l3.695-2.134zM8.104 8.832v4.266l3.695 2.133v-4.266zm7.792 0L12.2 10.965v4.266l3.695-2.133zm-8.146.204-3.34 1.93 3.34 1.928zm8.5 0v3.858l3.34-1.929zm-8.146 4.47v3.859l3.341-1.93zm7.792 0-3.341 1.93 3.34 1.929z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/quarto.svg�����������������������������������0000664�0000000�0000000�00000000434�14753064456�0025137�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.65 12.854V24c6.042-.325 10.923-5.105 11.33-11.125H12.65Zm-1.504 0H.02c.427 5.94 5.166 10.699 11.105 11.105V12.854Zm1.505-1.505H24C23.675 5.247 18.753.325 12.65 0Zm-1.505 0V0C5.106.427.326 5.308 0 11.35Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/quasar.svg�����������������������������������0000664�0000000�0000000�00000002361�14753064456�0025121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.743 12a1.742 1.742 0 1 1-3.484 0 1.742 1.742 0 0 1 3.484 0m5.585-1.65 1.267-.732a9 9 0 0 0-.861-2.084 9 9 0 0 0-1.369-1.789l-2.014 1.163a6.7 6.7 0 0 0-2.103-1.219 8.3 8.3 0 0 0-1.627 2.322c2.242-.152 4.557.66 6.707 2.339zm-9.562 8.82v1.464a9 9 0 0 0 2.235.295 9 9 0 0 0 2.234-.29v-2.326a6.7 6.7 0 0 0 2.106-1.211 8.3 8.3 0 0 0-1.197-2.57c-.989 2.017-2.85 3.616-5.378 4.638m-4.354-5.962c.947.247 1.894.33 2.825.248C6.983 11.591 6.528 9.18 6.908 6.48L5.64 5.747a9 9 0 0 0-1.373 1.788 9 9 0 0 0-.865 2.08l2.014 1.163a6.7 6.7 0 0 0-.004 2.43zm13.173.014a6.7 6.7 0 0 0 .004-2.43 8.3 8.3 0 0 0-2.824-.25c1.253 1.866 1.708 4.277 1.328 6.978l1.267.732a9 9 0 0 0 1.374-1.788 9 9 0 0 0 .865-2.08zm-13.912.428-1.267.731c.198.728.487 1.429.861 2.084a9 9 0 0 0 1.369 1.789L7.65 17.09a6.7 6.7 0 0 0 2.102 1.219 8.3 8.3 0 0 0 1.628-2.322c-2.242.152-4.557-.659-6.707-2.338zm9.562-8.821V3.366A9 9 0 0 0 12 3.07a9 9 0 0 0-2.234.29v2.326A6.7 6.7 0 0 0 7.66 6.898c.26.944.66 1.806 1.197 2.57.989-2.018 2.85-3.617 5.378-4.639zM24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12m-1.535 0C22.465 6.23 17.77 1.535 12 1.535S1.535 6.23 1.535 12 6.23 22.465 12 22.465 22.465 17.77 22.465 12"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/qubesos.svg����������������������������������0000664�0000000�0000000�00000002230�14753064456�0025301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.893 20.79-2.289-1.332 1.547-.895a2.4 2.4 0 0 0 1.2-2.08V7.098l-.003-.059a2.4 2.4 0 0 0-1.198-2.027l-3.899-2.255-4.21-2.436a3 3 0 0 0-.237-.118L12.77.187l-.093-.036-.052-.019q-.043-.014-.085-.027l-.062-.019-.079-.02-.072-.017-.073-.013-.079-.013-.068-.008-.087-.008-.063-.004L11.9 0h-.03l-.082.001-.076.002-.093.007-.064.006q-.055.007-.11.016-.021.005-.044.009l-.154.034a2.4 2.4 0 0 0-.602.245L5.536 3.277l-3 1.736a2.41 2.41 0 0 0-1.201 2.083v9.385a2.4 2.4 0 0 0 1.2 2.08l8.108 4.693a2.4 2.4 0 0 0 2.4.002l1.804-1.044 2.302 1.339c1.03.599 2.687.599 3.716 0l1.03-.6c1.027-.597 1.027-1.562-.002-2.161m-10.71-2.695-4.46-2.583a1.32 1.32 0 0 1-.66-1.143V9.206c0-.236.063-.464.177-.662l.002.001c.116-.2.282-.368.482-.485l4.459-2.58q.139-.079.289-.122l.034-.01q.053-.013.105-.022.034-.007.068-.013.046-.004.093-.006.042-.002.083-.004.054.001.11.007.029.002.058.005.056.009.11.022.028.005.055.012.059.017.115.04l.045.015q.078.033.154.076l4.46 2.58c.198.116.364.283.48.483l.002.003-.003.002c.116.201.177.43.177.661v5.161c0 .15-.028.295-.076.433a1.32 1.32 0 0 1-.583.71l-4.46 2.582a1.31 1.31 0 0 1-1.316 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/quest.svg������������������������������������0000664�0000000�0000000�00000005401�14753064456�0024764�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.284 8.755q-.082 0-.166.002c-.096 0-.2.01-.296.029a3.225 3.225 0 0 0-2.82 3.325 3.243 3.243 0 0 0 3.354 3.115 3.2 3.2 0 0 0 1.79-.629l-.495-.362a.17.17 0 0 0-.19-.01c-.381.22-.82.334-1.296.324C1.86 14.521.784 13.463.717 12.16a2.52 2.52 0 0 1 2.744-2.62 2.52 2.52 0 0 1 2.276 2.324 2.53 2.53 0 0 1-.428 1.59.18.18 0 0 0 .038.249l.42.304c.485-.61.733-1.352.704-2.133a3.244 3.244 0 0 0-3.187-3.118zm2.482 5.251s-.095.124-.286.305-.343.296-.343.296l.553.41a.2.2 0 0 0 .229 0 3.3 3.3 0 0 0 .381-.372.177.177 0 0 0-.03-.267zm17.586-4.572c-.038 0-.076 0-.105.028a.2.2 0 0 0-.095.058.2.2 0 0 0-.067.085c-.01.029-.019.067-.028.105 0 .038 0 .076.019.114a.4.4 0 0 0 .067.096c.028.019.057.047.095.057s.076.019.114.019.076-.01.114-.02a.2.2 0 0 0 .096-.056c.019-.029.047-.058.057-.096a.5.5 0 0 0 .019-.114.4.4 0 0 0-.02-.114.2.2 0 0 0-.056-.086 1 1 0 0 0-.096-.057.5.5 0 0 0-.114-.02zm-2.124.01v1.295h-.277c-.114 0-.2.095-.2.2v.41h.477v2.276c0 1.086.552 1.601 1.486 1.601A2.08 2.08 0 0 0 24 14.797l-.22-.352a.186.186 0 0 0-.247-.067c-.228.124-.486.21-.762.21-.505 0-.857-.296-.857-.972v-2.267h1.152a.17.17 0 0 0 .172-.172v-.438h-1.334V9.624a.18.18 0 0 0-.18-.18zm2.124.037c.038 0 .067.01.095.02a.2.2 0 0 1 .077.047.2.2 0 0 1 .047.076c.01.029.02.057.02.096a.3.3 0 0 1-.02.095.2.2 0 0 1-.047.076.2.2 0 0 1-.077.048.3.3 0 0 1-.095.019.3.3 0 0 1-.095-.02.2.2 0 0 1-.076-.047.2.2 0 0 1-.048-.076c-.01-.038-.01-.067-.02-.095 0-.039.01-.067.02-.096a.2.2 0 0 1 .048-.076.2.2 0 0 1 .076-.048.3.3 0 0 1 .095-.019m-.124.067v.333h.048V9.74h.057l.095.142h.058l-.096-.142a1 1 0 0 0 .067-.029.09.09 0 0 0 .029-.067c0-.038-.01-.057-.03-.076a.2.2 0 0 0-.085-.019zm.067.038h.095s.01.01.02.01l.018.019c.01.01.01.019.01.028s0 .02-.01.029c0 .01-.01.019-.019.019-.01.01-.019.01-.028.01h-.029v-.01h-.057zm-9.25 1.143c-1.23 0-2.144.924-2.144 2.249 0 1.343.915 2.248 2.191 2.248.639 0 1.239-.162 1.782-.677l-.257-.323a.177.177 0 0 0-.239-.029 2 2 0 0 1-1.248.438c-.78 0-1.438-.476-1.533-1.41h3.286a.19.19 0 0 0 .19-.19v-.067c-.009-1.315-.856-2.23-2.028-2.239m-6.602.01a.18.18 0 0 0-.181.18v2.43c0 1.286.914 1.896 1.962 1.896 1.039 0 1.963-.61 1.963-1.896V10.91a.17.17 0 0 0-.172-.171h-.505v2.544c0 .895-.533 1.314-1.276 1.314s-1.286-.419-1.286-1.314v-2.544zm11.032 0c-1.039 0-1.725.495-1.725 1.315 0 .647.457 1.086 1.43 1.2l.514.057c.61.067.905.286.905.629 0 .457-.458.695-1.191.695-.62 0-1.02-.152-1.334-.352a.2.2 0 0 0-.276.066l-.21.334c.543.419 1.239.552 1.8.552 1.163 0 1.906-.523 1.906-1.343 0-.714-.533-1.095-1.448-1.21l-.514-.066c-.572-.067-.886-.248-.886-.61 0-.42.4-.676 1.019-.676.495 0 .962.152 1.267.314.086.047.19.019.238-.067l.134-.21a.184.184 0 0 0-.067-.247 3.26 3.26 0 0 0-1.562-.381m-4.44.6c.734 0 1.267.524 1.353 1.334h-2.782c.105-.781.629-1.334 1.43-1.334z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/quickbooks.svg�������������������������������0000664�0000000�0000000�00000000724�14753064456�0026000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m.642 4.134c.955 0 1.73.775 1.73 1.733v9.066h1.6a2.934 2.934 0 0 0 0-5.866h-.666V7.333h.665A4.663 4.663 0 0 1 20.63 12a4.66 4.66 0 0 1-4.658 4.667h-3.329zM7.984 7.333h3.329v12.533c-.956 0-1.73-.776-1.73-1.733V9.066h-1.6a2.934 2.934 0 0 0 0 5.867h.666v1.733h-.665A4.66 4.66 0 0 1 3.326 12a4.66 4.66 0 0 1 4.658-4.667"/></svg>��������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/quicklook.svg��������������������������������0000664�0000000�0000000�00000001224�14753064456�0025623�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.682 19.189-.002-.002-3.07-3.068a7.03 7.03 0 0 0 1.332-4.12 7.07 7.07 0 0 0-7.068-7.067V1.037A1.04 1.04 0 0 0 12.653.016L1.67 1.965a.83.83 0 0 0-.687.818v18.434c0 .403.29.748.687.818l10.982 1.949a1.04 1.04 0 0 0 1.22-1.022v-3.894a7.03 7.03 0 0 0 4.12-1.332l3.069 3.07c.446.446 1.17.447 1.617 0h.001c.447-.447.448-1.17.002-1.617zm-8.808-.62a6.576 6.576 0 0 1-6.569-6.57 6.576 6.576 0 0 1 6.569-6.567A6.576 6.576 0 0 1 20.442 12a6.576 6.576 0 0 1-6.568 6.568zm5.28-6.57a5.287 5.287 0 0 1-5.28 5.282c-2.913 0-5.282-2.369-5.282-5.28s2.37-5.282 5.282-5.282a5.287 5.287 0 0 1 5.28 5.28"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/quicktime.svg��������������������������������0000664�0000000�0000000�00000000507�14753064456�0025620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.002 0a11.998 12 0 1 0 6.629 22l1.98 1.97h3.139l.25-.25v-3.15l-2-1.98A11.938 11.94 0 0 0 24 12 11.998 12 0 0 0 12.002 0m0 4.2a7.8 7.8 0 0 1 6.949 11.33l-5.25-5.26a2.404 2.404 0 1 0-3.4 3.4l5.27 5.26a7.76 7.76 0 0 1-3.57.87 7.799 7.8 0 0 1 0-15.6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/quicktype.svg��������������������������������0000664�0000000�0000000�00000001503�14753064456�0025640�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.226 14.393a2.9 2.9 0 0 0 .612-.804c.538-1.032.365-2.246.047-2.983-.614-1.422-2.041-2.225-3.683-2.225-1.497 0-2.427.64-2.868 1.048-.474.44-1.144 1.31-1.144 2.729q0 .902.288 1.603c.253.616.795 1.486 2.053 1.914a5 5 0 0 0 1.609.249h4.145c.466 0 .71-.405.705-.717a.694.694 0 0 0-.705-.683l-.29.005q-.774.06-1.332.35zM12 24C5.373 24 0 18.627 0 12S5.373 0 12 0s12 5.373 12 12-5.373 12-12 12m1.424-15.41a.852.852 0 0 0 0 1.705h5a.852.852 0 1 0 0-1.705zm1.662 6.259c0 .478.375.865.838.865a.85.85 0 0 0 .838-.865V11.55c0-.478-.375-.656-.838-.656s-.838.178-.838.656zm-4.951-1.763c-.321.84-1.063 1.323-1.943 1.323-.875 0-1.612-.468-1.928-1.323-.18-.486-.227-1.19.005-1.79a2 2 0 0 1 1.103-1.146q.38-.16.83-.16c1.032 0 1.675.604 1.938 1.306a2.67 2.67 0 0 1-.005 1.79"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/quip.svg�������������������������������������0000664�0000000�0000000�00000001236�14753064456�0024603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.154 22.154H12a10.06 10.06 0 0 1-7.4-3.201C2.66 16.89 1.69 14.19 1.868 11.35c.315-5.091 4.39-9.168 9.482-9.484q.33-.02.657-.02A10.06 10.06 0 0 1 18.952 4.6a10.06 10.06 0 0 1 3.202 7.4zm-1.938-18.9C17.778.963 14.59-.186 11.236.024 5.218.399.398 5.219.024 11.237c-.207 3.353.94 6.543 3.231 8.98A12.05 12.05 0 0 0 12 24h11.077c.51 0 .923-.413.923-.922V12a12.05 12.05 0 0 0-3.784-8.745m-4.062 11.976H7.846a.923.923 0 0 0 0 1.846h8.308a.923.923 0 0 0 0-1.846M7.846 8.77h8.308a.923.923 0 0 0 0-1.847H7.846a.923.923 0 0 0 0 1.847m-2.769 2.308a.923.923 0 0 0 0 1.845h13.846a.923.923 0 0 0 0-1.846z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/quizlet.svg����������������������������������0000664�0000000�0000000�00000001317�14753064456�0025322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.779.025a11.8 11.8 0 0 0-5.338.896A11.8 11.8 0 0 0 3.058 4.11 11.93 11.93 0 0 0 .427 14.363a11.9 11.9 0 0 0 2.3 4.921 11.84 11.84 0 0 0 4.24 3.378 11.78 11.78 0 0 0 10.533-.226.33.33 0 0 1 .331.018 9.14 9.14 0 0 0 5.197 1.545.33.33 0 0 0 .332-.332v-4.038a.334.334 0 0 0-.276-.331 4.7 4.7 0 0 1-1.106-.319.33.33 0 0 1-.191-.352.3.3 0 0 1 .05-.133 11.94 11.94 0 0 0 .772-11.871 11.87 11.87 0 0 0-4.042-4.628A11.8 11.8 0 0 0 12.765.018zM4.843 11.898a7.24 7.24 0 0 1 1.205-4.005 7.2 7.2 0 0 1 3.215-2.657 7.13 7.13 0 0 1 7.815 1.558 7.24 7.24 0 0 1 1.555 7.854 7.2 7.2 0 0 1-2.643 3.234 7.15 7.15 0 0 1-9.049-.896 7.23 7.23 0 0 1-2.103-5.089z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/quora.svg������������������������������������0000664�0000000�0000000�00000000427�14753064456�0024755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.38.948A11.963 11.963 0 0 1 21.248 19.54l2.41 2.422c.732.736.21 1.99-.828 1.99l-10.71.01h-.324A11.963 11.963 0 0 1 7.382.95Zm7.322 4.428a7.172 7.172 0 1 0-5.488 13.252 7.172 7.172 0 0 0 5.489-13.252Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/qwant.svg������������������������������������0000664�0000000�0000000�00000001030�14753064456�0024747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.313 5.163c4.289 0 7.766 2.589 7.766 7.616 0 4.759-3.072 7.301-7.003 7.59 1.87 1.142 4.693 1.143 6.45-.348l.547.297-.615 3.074-.226.285c-3.118.918-5.947-.099-7.921-3.329-3.816-.37-6.765-2.9-6.765-7.568 0-5.03 3.477-7.617 7.766-7.617zm0 13.88c2.756 0 4.08-2.804 4.08-6.264s-1.148-6.264-4.08-6.264c-2.85 0-4.08 2.805-4.08 6.264s1.182 6.264 4.08 6.264m8.719-16.319L18.734 0h.263l.703 2.725 2.754.71v.248l-2.754.71-.703 2.725h-.263l-.702-2.725-2.696-.695V3.42z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/qwik.svg�������������������������������������0000664�0000000�0000000�00000000574�14753064456�0024604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.547 0a2.96 2.96 0 0 0-2.56 1.479L.532 9.19a2.96 2.96 0 0 0 0 2.957l4.453 7.713a2.96 2.96 0 0 0 2.561 1.477H12l8.594 2.648a.284.284 0 0 0 .336-.402l-1.916-3.723 4.453-7.713a2.96 2.96 0 0 0 0-2.957L19.014 1.48A2.96 2.96 0 0 0 16.453 0zm0 .766 10.185 9.904-1.896 1.899.578 7.533L6.268 10.67l2.37-2.373z"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/qwiklabs.svg���������������������������������0000664�0000000�0000000�00000000750�14753064456�0025442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.346 18.205A6.464 6.464 0 0 0 12 5.72a6.462 6.462 0 0 0-2.346 12.485.69.69 0 0 0 .961-.623v-5.4a1.385 1.385 0 1 1 2.77 0v5.4a.692.692 0 0 0 .961.623m.809 5.558C20.252 22.378 24 17.718 24 12.182c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.536 3.748 10.196 8.845 11.581l.049.013.059.016.001-.002a1.385 1.385 0 0 0 .635-2.695 9.231 9.231 0 1 1 4.824-.001 1.385 1.385 0 0 0 .635 2.695l.001.002.059-.016.049-.013z"/></svg>������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/qzone.svg������������������������������������0000664�0000000�0000000�00000002307�14753064456�0024761�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.987 9.201c-.032-.099-.127-.223-.334-.258S16.3 7.537 16.3 7.537s-.105-.022-.198-.07c-.092-.047-.127-.167-.127-.167S12.447.954 12.349.768C12.25.58 12.104.53 12 .53s-.25.05-.349.238C11.553.954 8.025 7.3 8.025 7.3s-.036.12-.129.167c-.092.047-.197.07-.197.07S.555 8.907.347 8.942c-.208.036-.302.16-.333.258a.48.48 0 0 0 .125.45L5.5 15.14s.072.08.12.172c.015.104.004.21.004.21s-1.189 7.243-1.22 7.451a.46.46 0 0 0 .16.43c.082.062.232.106.42.013.19-.093 6.813-3.261 6.813-3.261s.098-.044.201-.061.201.06.201.06 6.624 3.17 6.813 3.262c.188.094.338.05.421-.013a.46.46 0 0 0 .16-.43l-.93-5.678c.875-.54 1.424-1.039 1.848-1.747-2.594.97-6.007 1.717-9.416 1.866-.915.041-2.41.097-3.473-.015-.679-.07-1.17-.144-1.244-.438-.053-.215.054-.46.545-.83l2.862-2.156c1.285-.968 3.56-2.47 3.56-2.732 0-.285-2.145-.78-4.038-.78-1.945 0-2.276.131-2.812.167-.488.034-.769.005-.804-.138-.06-.248.183-.389.588-.568.71-.314 1.86-.594 1.985-.626.194-.052 3.082-.805 5.618-.535 1.319.14 3.245.668 3.245 1.276 0 .342-1.721 1.495-3.226 2.598-1.149.843-2.217 1.56-2.217 1.688 0 .342 3.534 1.241 6.69 1.01l.003-.022c.048-.092.12-.172.12-.172l5.362-5.49a.48.48 0 0 0 .127-.45"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/r.svg����������������������������������������0000664�0000000�0000000�00000001522�14753064456�0024064�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2.746c-6.627 0-12 3.599-12 8.037 0 3.897 4.144 7.144 9.64 7.88V16.26c-2.924-.915-4.925-2.755-4.925-4.877 0-3.035 4.084-5.494 9.12-5.494 5.038 0 8.757 1.683 8.757 5.494 0 1.976-.999 3.379-2.662 4.272.09.066.174.128.258.216.169.149.25.363.372.544 2.128-1.45 3.44-3.437 3.44-5.631 0-4.44-5.373-8.038-12-8.038m-2.111 4.99v13.516l4.093-.002-.002-5.291h1.1c.225 0 .321.066.549.25.272.22.715.982.715.982l2.164 4.063 4.627-.002-2.864-4.826s-.086-.193-.265-.383a2.2 2.2 0 0 0-.582-.416c-.422-.214-1.149-.434-1.149-.434s3.578-.264 3.578-3.826-3.744-3.63-3.744-3.63zm4.127 2.93 2.478.002s1.149-.062 1.149 1.127c0 1.165-1.149 1.17-1.149 1.17h-2.478zm1.754 6.119c-.494.049-1.012.079-1.54.088v1.807a17 17 0 0 0 2.37-.473l-.471-.891s-.108-.183-.248-.394c-.039-.054-.08-.098-.111-.137"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/r3.svg���������������������������������������0000664�0000000�0000000�00000000772�14753064456�0024155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 13.457c0 .841-.688 1.53-1.53 1.53s-1.53-.689-1.53-1.53a1.53 1.53 0 1 1 3.06 0M6.147 2.853c-1.123 0-2.172.3-3.08.828v-.828H0v12.134h3.067V9a3.077 3.077 0 0 1 3.08-3.08l1.029-.007 2.105-3.06zm8.746 6.08 2.078-3.02v-3.06h-6.615l-2.104 3.06h4.99l-2.565 3.735 1.53 2.653a3.098 3.098 0 0 1 4.65 2.686c0 1.717-1.39 3.1-3.1 3.1s-3.1-1.39-3.1-3.1h-3.06c0 3.4 2.76 6.16 6.154 6.16 3.4 0 6.16-2.76 6.16-6.16a6.16 6.16 0 0 0-5.018-6.054"/></svg>������mkdocs-material-9.6.4/material/templates/.icons/simple/rabbitmq.svg���������������������������������0000664�0000000�0000000�00000001041�14753064456�0025420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.035 9.601h-7.677a.956.956 0 0 1-.962-.962V.962a.956.956 0 0 0-.962-.956H10.56a.956.956 0 0 0-.962.956V8.64a.956.956 0 0 1-.962.962H5.762a.956.956 0 0 1-.961-.962V.962A.956.956 0 0 0 3.839 0H.959a.956.956 0 0 0-.956.962v22.076A.956.956 0 0 0 .965 24h22.07a.956.956 0 0 0 .962-.962V10.58a.956.956 0 0 0-.962-.98zm-3.86 8.152a1.437 1.437 0 0 1-1.437 1.443h-1.924a1.437 1.437 0 0 1-1.436-1.443v-1.917a1.437 1.437 0 0 1 1.436-1.443h1.924a1.437 1.437 0 0 1 1.437 1.443z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/racket.svg�����������������������������������0000664�0000000�0000000�00000000722�14753064456�0025075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a12 12 0 0 0-4.104.721c4.872 2.556 11.316 10.893 13.547 18.686A11.96 11.96 0 0 0 24 12c0-6.627-5.373-12-12-12M4.093 2.974A11.97 11.97 0 0 0 0 12c0 3.026 1.12 5.789 2.968 7.9 1.629-4.894 4.691-9.611 7.313-12.246-1.872-2.016-3.968-3.618-6.188-4.68m2.276 19.625A11.95 11.95 0 0 0 12 24c2.092 0 4.059-.536 5.772-1.478-.987-4.561-2.851-8.739-5.28-12.147-2.597 2.8-5.186 7.702-6.123 12.224"/></svg>����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/radar.svg������������������������������������0000664�0000000�0000000�00000000165�14753064456�0024716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0 2.197 23.975 12 19.952 21.803 24z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/radarr.svg�����������������������������������0000664�0000000�0000000�00000000737�14753064456�0025105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.274 0C3.189.039 1.19 1.547 1.19 4.705l.184 14.518c0 1.47 1.103 2.205 2.573 2.021L3.764 3.786c0-1.654.919-1.838 2.022-1.103l14.7 8.27c1.103.734 1.655 1.47 1.838 2.756.92-1.654.552-4.043-1.286-5.33L7.991.846A4.56 4.56 0 0 0 5.274.001zm1.982 6.91-.184 10.107 9.004-5.146Zm13.598 6.064-15.068 8.82c-.92.552-2.022.736-3.124.368.918 1.47 3.307 2.389 5.145 1.47l12.68-7.35c1.102-.736 1.286-2.022.367-3.308"/></svg>���������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/radixui.svg����������������������������������0000664�0000000�0000000�00000000325�14753064456�0025270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.52 24a7.68 7.68 0 0 1-7.68-7.68 7.68 7.68 0 0 1 7.68-7.68zm0-24v7.68H3.84V0zm4.8 7.68a3.84 3.84 0 1 1 0-7.68 3.84 3.84 0 0 1 0 7.68"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/radstudio.svg��������������������������������0000664�0000000�0000000�00000004230�14753064456�0025620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.147 10.534.735 1.953h-1.471zm-7.26-1.386c-.403.004-.806 0-1.208 0-.02 0-.038.002-.062.004v2.096q.026.003.048.004c.415 0 .829.006 1.243-.001A1.042 1.042 0 0 0 5.917 9.99a1.05 1.05 0 0 0-1.03-.842m19.097 3.36c-.026.409-.06.818-.113 1.225a11 11 0 0 1-.364 1.674 12 12 0 0 1-.892 2.194 12 12 0 0 1-2.411 3.158 11.95 11.95 0 0 1-7.716 3.235c-.05.002-.855.005-.868.004a12 12 0 0 1-1.452-.133 12 12 0 0 1-1.794-.418 12 12 0 0 1-2.283-.996 12 12 0 0 1-2.913-2.311 11.96 11.96 0 0 1-3.103-6.79 12 12 0 0 1-.073-1.526q.01-.649.087-1.292a11.9 11.9 0 0 1 1.317-4.17 12 12 0 0 1 2.033-2.769 12 12 0 0 1 1.152-1.03A12 12 0 0 1 8.027.677c.481-.17.97-.314 1.47-.411a16 16 0 0 1 1.151-.182 14 14 0 0 1 1.033-.077c.236-.011.473-.001.71.004a11.944 11.944 0 0 1 5.224 1.385A12 12 0 0 1 20.63 3.67a12 12 0 0 1 1.362 1.692 12 12 0 0 1 1.47 3.089q.336 1.083.46 2.21c.068.614.1 1.23.061 1.848M8.016 14.834l-.836-1.983a2.1 2.1 0 0 0-.298-.509c-.071-.087-.149-.17-.22-.252.09-.104.189-.205.274-.316a2.59 2.59 0 0 0-.142-3.322c-.512-.556-1.156-.83-1.908-.84-.672-.008-1.345-.003-2.017.002a1 1 0 0 0-.31.055c-.29.1-.482.393-.482.716l.001 6.703q0 .117.027.232a.75.75 0 0 0 .726.581.77.77 0 0 0 .783-.774v-2.336q.033-.003.057-.004h1.12a.2.2 0 0 1 .063.008c.2.06.391.139.564.256.13.089.25.188.317.337q.049.11.096.22l.776 1.835a.76.76 0 0 0 1.013.4.77.77 0 0 0 .396-1.009m7.38.001-.548-1.46q-.983-2.62-1.967-5.24a.76.76 0 0 0-.729-.502.77.77 0 0 0-.742.502l-2.509 6.69c-.035.096-.05.2-.064.255.009.256.075.443.222.594.384.396 1.07.25 1.267-.269q.252-.663.5-1.327c.017-.047.038-.065.09-.065q1.236.003 2.47 0c.052 0 .073.016.091.064q.25.675.509 1.35a.76.76 0 0 0 1.199.29.78.78 0 0 0 .21-.882m7.14-3.645c-.15-1.092-.663-1.988-1.523-2.679-.72-.578-1.55-.867-2.468-.897-.486-.015-.974-.004-1.46-.002a.73.73 0 0 0-.364.1.74.74 0 0 0-.384.679q-.003 1.68-.001 3.36v3.366a.76.76 0 0 0 .782.783h1.32a4.1 4.1 0 0 0 1.308-.211 4 4 0 0 0 2.063-1.532c.626-.892.876-1.886.728-2.967m-3.224-1.894c-.463-.182-.948-.149-1.43-.144q-.002 0-.009.006v5.203q.027.003.049.004.273.001.545 0a2.5 2.5 0 0 0 1.695-.657c.67-.604.972-1.37.86-2.264-.134-1.05-.725-1.763-1.71-2.148z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/railway.svg����������������������������������0000664�0000000�0000000�00000001307�14753064456�0025274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.113 10.27A13 13 0 0 0 0 11.48h18.23a2.3 2.3 0 0 0-.235-.347c-3.117-4.027-4.793-3.677-7.19-3.78-.8-.034-1.34-.048-4.524-.048-1.704 0-3.555.005-5.358.01-.234.63-.459 1.24-.567 1.737h9.342v1.216H.113zm18.26 2.426H.009q.029.488.094.961h16.955c.754 0 1.179-.429 1.315-.96zm-17.318 4.28s2.81 6.902 10.93 7.024c4.855 0 9.027-2.883 10.92-7.024H1.056zM11.988 0C7.5 0 3.593 2.466 1.531 6.108l4.75-.005v-.002c3.71 0 3.849.016 4.573.047l.448.016c1.563.052 3.485.22 4.996 1.364.82.621 2.007 1.99 2.712 2.965.654.902.842 1.94.396 2.934-.408.914-1.289 1.458-2.353 1.458H.391s.099.42.249.886h22.748A12 12 0 0 0 24 12.005C24 5.377 18.621 0 11.988 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rainmeter.svg��������������������������������0000664�0000000�0000000�00000001010�14753064456�0025601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.7 1.088 12 0l-.7 1.088c-.751 1.168-7.342 11.525-7.342 15.366C3.958 20.615 7.565 24 12 24s8.042-3.385 8.042-7.546c0-3.84-6.591-14.197-7.342-15.366M12 22.335c-3.516 0-6.377-2.638-6.377-5.881C5.623 13.908 9.732 6.756 12 3.1c2.268 3.656 6.377 10.809 6.377 13.355 0 3.242-2.861 5.88-6.377 5.88m4.957-6.017c0 2.548-2.22 4.615-4.957 4.615s-4.957-2.067-4.957-4.615q.001-.245.058-.549s1.306-2.616 4.847 0c2.999 2.215 4.95 0 4.95 0q.058.304.059.549"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rakuten.svg����������������������������������0000664�0000000�0000000�00000000465�14753064456�0025301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.277 21.3 3.939 24 .722 21.3zM7.6 19.276H3.939V0h6.052a6.653 6.653 0 0 1 6.65 6.646c0 2.234-1.108 4.204-2.799 5.418l5.418 7.211h-4.585l-4.486-5.979H7.6zm0-9.64h2.392a2.99 2.99 0 0 0 2.989-2.989 2.994 2.994 0 0 0-2.989-2.986H7.6z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ram.svg��������������������������������������0000664�0000000�0000000�00000010512�14753064456�0024401�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.46 22.432-.515-1.14h-.024l-.579 1.14zm.222.755h-1.556L9.792 24H7.344l1.791-3.359h3.627L14.494 24h-2.448zm9.516-1.122h-.105L20.048 24h-1.492l-1.042-1.926-.099.001L17.406 24h-2.239v-3.359h3.522l.627 1.056h.03l.686-1.056h3.403V24h-2.239zm-18.319.1h.467c.501 0 .647-.161.65-.322.007-.311-.052-.553-.625-.553h-.492zm.512.703h-.499V24H.564v-3.359h3.358c1.761 0 2.48.29 2.566 1.037.043.372-.161 1.043-.977 1.11L6.728 24H4.265zM11.844.412c-2.642.003-5.658.155-6.66.24-1.093.093-1.289.164-1.29 1.087l-.009.838c-.008.658-.02 1.587-.02 2.633 0 1.704.101 3.717.226 5.373.134 1.761.24 3.152 2.458 4.475 1.704 1.016 4.668 2.484 4.697 2.498.171.085.565.275.699.327a.5.5 0 0 0 .126 0c.137-.054.572-.27.786-.366.021-.009 2.077-.95 4.608-2.459 2.218-1.323 2.324-2.714 2.459-4.476.125-1.656.226-3.67.226-5.374 0-1.045-.012-1.974-.02-2.632l-.008-.838c-.004-.813-.158-.993-1.291-1.087-1.002-.083-4.018-.238-6.66-.241h-.327zM12.173 0c2.632.003 5.647.139 6.7.243 1.337.131 1.662.194 1.662 1.496 0 1.027.047 5.619-.199 8.875-.138 1.806-.257 3.365-2.658 4.798a51 51 0 0 1-4.71 2.487c-.311.138-.721.37-.804.387a.9.9 0 0 1-.312 0c-.092-.019-.593-.265-.786-.36s-3.067-1.525-4.726-2.514c-2.401-1.432-2.52-2.991-2.658-4.798-.247-3.256-.2-7.849-.2-8.875 0-1.302.325-1.365 1.662-1.496C6.197.139 9.212.003 11.844 0zM8.279 2.312c1.95 0 2.955 1.664 3.532 2.876l-.181.991c-1.01-2.1-2.215-3.436-3.674-3.436-1.577 0-2.465 2.012-2.693 2.351.407-1.034 1.591-2.782 3.016-2.782m10.343 2.783c-.229-.339-1.116-2.351-2.693-2.351-1.459 0-2.663 1.336-3.674 3.436l-.182-.992c.576-1.212 1.581-2.876 3.532-2.876 1.426 0 2.611 1.748 3.017 2.783m-3.444 4.12c-.163.071-.288.117-.288.117l.098-.846.522-.684c.161.769.149 1.203-.332 1.413m-6.374 0c-.481-.21-.493-.644-.332-1.414l.522.684.098.846s-.126-.045-.288-.116m8.367-4.41c-1.276-.025-2.381.961-3.127 3.352l.419.264-.173.998-.952.338-.187 1.292.462-.587.649-.132-.289.778-.895.499-.318 2.084.12.783-.92.356v.001l-.844-.357.12-.783-.318-2.084-.895-.499-.288-.778.649.132.462.587-.188-1.292-.952-.338-.173-.998.418-.264c-.745-2.39-1.85-3.376-3.127-3.352-1.02.02-1.778 1.209-1.693 2.466l.885.105c.317 1.773.612 4.025 1.28 4.025.203 0 .212-.319.212-.577 0-.627-.378-1.38-.378-2.575 0-.552.179-1.027.587-1.027.277 0 .402.074.532.315-.11.818-.114 1.52.525 1.953.141.095.446.382.446.382s.525 2.067.557 2.205c.03.126.104.298.161.403l.666 1.163s.199 1.249.241 1.465c.105.533.648.579 1.091.583h.123c.444-.003.986-.049 1.091-.583.042-.215.241-1.465.241-1.465l.666-1.163c.057-.105.132-.277.161-.403.032-.138.558-2.205.558-2.205s.305-.287.446-.382c.638-.433.635-1.135.524-1.953.131-.241.255-.315.532-.315.408 0 .587.475.587 1.027 0 1.196-.378 1.948-.378 2.575 0 .259.008.577.212.577.667 0 .963-2.252 1.279-4.025l.885-.105c.086-1.257-.672-2.446-1.692-2.466m-4.953-3.33c1.928 0 5.848.197 6.1.222.326.029.541.074.614.153.073.074.095.158.107.344.012.173.023.858.023.859.007.612.018 1.475.018 2.446 0 .57-.004 1.176-.014 1.791l.132.086c.011-.644.015-1.281.015-1.877 0-.972-.011-1.836-.018-2.448 0-.001-.011-.684-.023-.866-.012-.189-.038-.323-.146-.43-.136-.13-.366-.157-.695-.192-.265-.026-4.175-.222-6.113-.223-.278.002-.571-.003-.854-.003-2.323 0-5.419.21-5.675.226-.379.025-.58.033-.717.189-.106.13-.137.323-.144.513-.005.185-.007.786-.007.787-.007.611-.018 1.476-.018 2.448 0 .587.004 1.214.015 1.848l.132-.086c-.01-.604-.013-1.201-.013-1.762 0-.971.011-1.835.018-2.447 0-.001.002-.603.008-.784.004-.176.041-.348.113-.431.074-.096.236-.12.621-.141.257-.016 3.349-.226 5.665-.226zm7.121 6.071-.146.277s-.582.061-.602.061c-.281 2.239-1.19 4.63-2.183 4.63-.327 0-.336-.507-.336-1.111 0-.257.036-.486.076-.687-.106.197-.289.918-.289 1.534 0 .72.405 1.116 1.097 1.116.702 0 1.289-.343 1.673-.981-.248.686-.732 1.281-1.767 1.903a46 46 0 0 1-4.298 2.27c-.181.081-.416.187-.601.266-.17-.079-.333-.161-.47-.228-.025-.012-2.769-1.371-4.34-2.308-.969-.581-1.455-1.14-1.716-1.772.382.551.915.85 1.565.85.692 0 1.097-.396 1.097-1.116 0-.616-.182-1.337-.289-1.534.041.201.076.43.076.687 0 .603-.009 1.111-.336 1.111-.993 0-1.905-2.402-2.185-4.641l-.564-.058-.18-.336s-.033 1.075.003 1.78.11 1.312.337 2.17q.064.246.15.462c.198.946.658 1.729 1.974 2.509 1.58.942 4.322 2.3 4.349 2.313.149.073.349.173.527.254.194-.081.459-.201.658-.29.021-.01 1.971-.883 4.312-2.278 1.458-.864 1.865-1.731 2.029-2.82q.02-.075.039-.152c.194-.868.274-1.322.31-2.028.032-.606.031-1.591.03-1.853"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rancher.svg����������������������������������0000664�0000000�0000000�00000002370�14753064456�0025247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.727 9.007a.713.713 0 0 1-.726.855h-1.542V8.798h.468a.883.883 0 0 0 .875-.875v-.388c0-.477.12-.875.269-.875.139 0 .328.388.407.865zm-3.49-1.253c.486 0 .874.388.894.885v4.555a.883.883 0 0 1-.875.875h-2.357a.883.883 0 0 1-.875-.875v-1.79a.87.87 0 0 0-.348.696v1.502c0 .477.397.875.875.875h1.531v2.327a.535.535 0 0 1-.537.538h-2.884a.535.535 0 0 1-.537-.538v-2.168a.535.535 0 0 0-.537-.537h-7.2a.535.535 0 0 0-.538.537v2.168a.535.535 0 0 1-.537.538H2.428a.535.535 0 0 1-.537-.538V10.58L.588 11.603c-.06.04-.14.04-.189-.02l-.368-.438a.135.135 0 0 1-.01-.159l1.91-2.914a.54.54 0 0 1 .487-.318h10.165a.54.54 0 0 1 .527.627l-.21 1.243a.54.54 0 0 0 .528.626h2.039a.535.535 0 0 0 .527-.437q-.195.06-.418.06h-1.452c-.487 0-.815-.388-.736-.866l.249-1.482c.08-.477.258-.865.407-.865.15 0 .269.398.269.875v.229c.02-.01.05-.01.08-.01h4.843zm3.65-.537c0-.388.288-.557.556-.557s.557.17.557.557c0 .378-.288.547-.557.547-.268 0-.557-.17-.557-.547zm.984 0c0-.308-.2-.438-.418-.438-.219 0-.428.13-.428.438 0 .298.21.438.428.438.219-.01.418-.14.418-.438m-.607-.279h.199c.1 0 .199.03.199.17 0 .08-.06.129-.13.149l.13.228h-.12l-.119-.218h-.05v.218h-.109zm.199.25c.05 0 .09-.03.09-.08 0-.06-.05-.07-.09-.07h-.1v.15z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rapid.svg������������������������������������0000664�0000000�0000000�00000000737�14753064456�0024731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.028 15.798c-.212-.065-.228-.359.017-.457 4.216-1.993 3.938-6.519 3.938-6.519C19.967 4.232 16.6-.016 11.158 0 5.112.033 1.468 4.787 1.5 10.407 1.55 20.26 9.067 24.017 11.42 24l-.016-3.905c0-.62 0-1.11.375-1.11 0 0 2.42 2.434 5.116 2.417 4.183-.016 5.605-3.529 5.605-3.529zm-4.837-3.006a3.86 3.86 0 0 1-3.89-3.855 3.86 3.86 0 0 1 3.857-3.889 3.86 3.86 0 0 1 3.89 3.856c0 2.14-1.716 3.888-3.857 3.888"/></svg>���������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rarible.svg����������������������������������0000664�0000000�0000000�00000000650�14753064456�0025244�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.8 0A4.79 4.79 0 0 0 0 4.8v14.4A4.79 4.79 0 0 0 4.8 24h14.4a4.79 4.79 0 0 0 4.8-4.8V4.8A4.79 4.79 0 0 0 19.2 0zm1.32 7.68h8.202c2.06 0 3.666.44 3.666 2.334 0 1.137-.671 1.702-1.427 1.898.904.268 1.558 1 1.558 2.16v2.131h-3.451V14.18c0-.62-.37-.87-1-.87H9.572v2.893H6.12zm3.452 2.5v.834h4.155c.452 0 .726-.06.726-.416 0-.358-.274-.418-.726-.418z"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rasa.svg�������������������������������������0000664�0000000�0000000�00000001032�14753064456�0024545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.848 15.852-3.882-2.034H.97V7.515h22.06v6.303h-2.182zM0 6.545v8.243h16.727l5.091 2.667v-2.667H24V6.545zm1.94 1.94h4.12v2.18l-1.33.517 1.362 1.666H4.84l-1.06-1.296-.87.339v.957h-.97zM8 12.848h-.97V8.485h4.364v4.363h-.97v-1.454H8zm4.364-1.696V8.485h4.363v.97h-3.394v.727h3.394v2.666h-4.363v-.97h3.394v-.726zm5.333-.243V8.485h4.364v4.363h-.97v-1.454h-2.424v1.454h-.97zm-14.788-.06 2.182-.848v-.546H2.909zM8 9.456v.97h2.424v-.97zm13.09.97v-.97h-2.423v.97h2.424Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/raspberrypi.svg������������������������������0000664�0000000�0000000�00000010722�14753064456�0026167�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.896 10.896-.173-.303c.007-2.174-1.002-3.06-2.179-3.734.356-.094.724-.172.825-.619.611-.156.74-.44.8-.74.16-.106.696-.406.64-.92.3-.207.467-.473.382-.85.322-.35.407-.641.27-.909.387-.48.215-.73.05-.982.29-.525.034-1.088-.776-.994-.322-.473-1.024-.366-1.133-.364-.121-.152-.281-.282-.775-.219-.32-.285-.677-.236-1.046-.096-.438-.34-.727-.068-1.058.036-.53-.171-.652.063-.912.158-.578-.12-.754.141-1.03.418l-.323-.006c-.872.506-1.305 1.536-1.459 2.066-.153-.53-.586-1.56-1.457-2.066l-.323.006C9.942.501 9.766.239 9.19.36 8.927.265 8.806.03 8.276.202 8.059.134 7.86-.007 7.624 0a.7.7 0 0 0-.405.166c-.37-.14-.727-.189-1.046.096-.494-.063-.654.068-.776.22-.108-.003-.81-.11-1.133.363-.81-.094-1.065.47-.776.994-.165.252-.336.502.05.982-.136.268-.051.558.27.91-.084.376.083.642.383.849-.056.515.48.814.639.92.061.3.19.584.801.74.1.448.469.525.825.619-1.177.673-2.186 1.56-2.18 3.735l-.172.302c-1.349.809-2.562 3.406-.664 5.517.124.661.332 1.136.517 1.661.277 2.117 2.084 3.108 2.56 3.226.699.524 1.443 1.02 2.45 1.37.948.963 1.976 1.33 3.01 1.33h.046c1.034 0 2.062-.367 3.01-1.33 1.007-.35 1.751-.847 2.45-1.37.476-.118 2.284-1.109 2.56-3.226.186-.525.394-1 .517-1.66 1.899-2.112.685-4.71-.664-5.518m-1.04-.371c-.07.876-4.635-3.05-3.846-3.181 2.139-.356 3.919.896 3.847 3.18m-2.015 4.365c-1.148.74-2.802.262-3.695-1.069s-.686-3.01.462-3.75 2.803-.263 3.696 1.068c.892 1.33.686 3.01-.463 3.75M13.66 1.372c.04.197.084.321.135.358.254-.272.462-.55.788-.813.001.154-.077.321.117.443a2.3 2.3 0 0 1 .727-.624c-.152.26-.026.34.055.448.24-.206.468-.414.91-.576-.12.148-.29.292-.11.461.247-.154.496-.309 1.083-.418-.132.147-.406.295-.24.442Q17.59.915 18.158.84c-.182.15-.334.296-.184.412.332-.102.79-.24 1.237-.121l-.283.285c-.032.038.662.03 1.12.036-.167.232-.338.456-.437.855.045.046.272.02.486 0-.22.462-.6.578-.69.776.135.101.32.075.524.006-.158.325-.49.548-.751.812.066.047.182.075.456.043a4.2 4.2 0 0 1-.88.703c.06.07.272.068.467.072-.313.307-.717.466-1.095.667.188.13.323.1.467.097-.267.22-.722.335-1.144.467.08.125.16.159.332.194-.447.247-1.087.134-1.268.26.044.125.167.206.314.274-.72.041-2.688-.027-3.065-1.516.737-.81 2.081-1.76 4.394-2.934-1.8.602-3.423 1.405-4.782 2.51-1.598-.744-.496-2.62.283-3.365m-1.613 5.372c1.133-.012 2.536.832 2.53 1.629-.005.702-.985 1.271-2.52 1.26-1.505-.017-2.518-.715-2.514-1.395.002-.56 1.228-1.527 2.504-1.494m-5.764-.6c.172-.036.252-.07.332-.195-.422-.132-.877-.247-1.145-.466.145.001.28.031.468-.097-.378-.201-.782-.36-1.095-.667.195-.005.406-.002.467-.073a4.2 4.2 0 0 1-.88-.703c.274.032.39.004.456-.043-.262-.264-.593-.487-.751-.812.203.069.389.095.523-.006-.089-.198-.47-.314-.69-.776.215.02.442.046.487 0-.1-.399-.27-.623-.437-.855.458-.007 1.152.002 1.12-.036l-.283-.285c.447-.119.905.019 1.237.121.15-.116-.002-.263-.184-.412q.569.076 1.034.254C7.106.946 6.833.798 6.7.651c.587.11.836.264 1.083.418.18-.17.01-.313-.111-.46.443.161.67.37.911.575.081-.108.207-.187.055-.448.315.178.552.389.727.624.194-.122.116-.289.117-.442.326.261.534.54.788.812.05-.037.095-.161.135-.358.78.745 1.88 2.621.283 3.365C9.33 3.633 7.707 2.83 5.909 2.228c2.312 1.174 3.656 2.124 4.392 2.933-.377 1.49-2.345 1.558-3.065 1.516.147-.068.27-.149.314-.273-.18-.126-.821-.013-1.268-.26m2.817 1.133c.788.13-3.777 4.056-3.847 3.18C5.18 8.174 6.96 6.922 9.1 7.278m-4.847 8.756c-1.109-.879-1.466-3.453.59-4.61 1.24-.327.419 5.052-.59 4.61m4.266 4.6c-.626.371-2.145.218-3.225-1.31-.729-1.282-.635-2.587-.123-2.97.765-.46 1.946.16 2.856 1.2.792.94 1.153 2.592.492 3.08m-1.242-5.61c-1.148-.74-1.355-2.42-.462-3.75s2.547-1.81 3.695-1.068c1.148.74 1.355 2.42.463 3.75-.893 1.331-2.547 1.81-3.695 1.069m4.795 8.229c-1.376.058-2.726-1.11-2.708-1.516-.02-.594 1.676-1.058 2.782-1.03 1.113-.049 2.607.352 2.61.884.018.517-1.355 1.684-2.684 1.662m2.759-5.858c.008 1.39-1.226 2.522-2.757 2.53-1.53.007-2.777-1.114-2.785-2.504v-.026c-.008-1.39 1.226-2.523 2.756-2.53s2.778 1.113 2.786 2.503zm3.855 2.003c-1.186 1.62-2.792 1.684-3.39 1.232-.625-.58-.148-2.385.71-3.374.98-1.092 2.03-1.804 2.76-1.248.492.483.78 2.301-.08 3.39m1.072-3.43c-1.009.44-1.83-4.938-.59-4.61 2.057 1.157 1.7 3.73.59 4.61m-.026-8.328h.299v-.53h.299c.15 0 .205.062.226.205.015.108.011.239.048.325h.298c-.053-.076-.052-.236-.057-.321-.01-.138-.051-.28-.198-.318v-.004c.15-.06.215-.18.215-.34 0-.206-.154-.375-.397-.375h-.732zm.299-1.126h.327c.133 0 .205.058.205.188 0 .137-.072.194-.205.194h-.327zm-1.034.464a1.27 1.27 0 1 0 2.54 0 1.27 1.27 0 0 0-2.54 0m2.328 0a1.058 1.058 0 1 1-2.116 0 1.058 1.058 0 0 1 2.116 0"/></svg>����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ravelry.svg����������������������������������0000664�0000000�0000000�00000002341�14753064456�0025307�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.972 10.924c-.06-.511-.084-1.03-.185-1.532-.123-.61-.28-1.218-.476-1.809a9.1 9.1 0 0 0-1.526-2.841c-.295-.37-.594-.74-.93-1.072a11.7 11.7 0 0 0-2.328-1.785 12 12 0 0 0-2.803-1.22c-.544-.152-1.1-.268-1.656-.376-.335-.064-.68-.082-1.02-.122-.015-.002-.03-.018-.044-.028h-1.596c-.119.02-.237.046-.357.058a9 9 0 0 0-1.693.35c-.683.202-1.335.48-1.965.809-.66.345-1.286.748-1.882 1.193a12 12 0 0 0-.889.718c-.502.455-1.006.911-1.479 1.397a12 12 0 0 0-1.662 2.172 9.8 9.8 0 0 0-1.393 3.922 10 10 0 0 0-.077 1.755c.033.666.095 1.33.219 1.989.17.913.439 1.79.826 2.634a10.4 10.4 0 0 0 2.49 3.357 12.4 12.4 0 0 0 2.064 1.512c.877.517 1.798.93 2.763 1.25a13 13 0 0 0 2.008.485c.3.05.607.062.91.093.02.002.04.018.059.028h1.595c.124-.02.248-.047.372-.057.808-.066 1.587-.264 2.347-.53a11 11 0 0 0 2.42-1.177c.481-.318.958-.646 1.42-.993.286-.215.543-.47.805-.714q.293-.276.57-.569a11.5 11.5 0 0 0 1.552-2.057c.472-.793.858-1.626 1.103-2.517.14-.515.244-1.04.346-1.564.051-.261.062-.53.093-.795.002-.016.017-.03.027-.045v-1.831c-.01-.03-.025-.058-.028-.088m-7.962-.057s-.82-.147-1.407-.147c-1.344 0-1.66.736-1.66 1.83v4.629H9.312V7.753h3.633v1.578c.44-1.325 1.323-1.788 3.066-1.788z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ray.svg��������������������������������������0000664�0000000�0000000�00000003727�14753064456�0024427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.153 12.826c-.63-.183-1.03.15-1.378.846-.58 1.13-1.643 1.644-2.888 1.594s-2.257-.63-2.788-1.776c-.233-.498-.498-.664-1.046-.68-.93-.017-1.643.016-2.174 1.062-.631 1.261-2.258 1.693-3.619 1.261a3.234 3.234 0 0 1-2.257-3.22 3.2 3.2 0 0 1 2.29-3.02 3.28 3.28 0 0 1 3.702 1.327c.216.315.216.863.597.93.648.1 1.328.033 1.992.033.299 0 .316-.266.399-.465.58-1.295 1.61-1.959 2.987-1.975 1.361-.017 2.39.647 2.955 1.892.215.465.48.598.946.548.166-.017.332.016.498 0 .464-.083 1.062.282 1.344-.448s-.382-.913-.68-1.245c-.847-.946-1.81-1.793-2.673-2.706-.415-.465-.763-.614-1.41-.415-1.876.614-3.619-.431-4.15-2.357-.448-1.676.714-3.535 2.44-3.917a3.293 3.293 0 0 1 3.95 2.457c.017.05.017.083.033.133.117.564.117 1.145-.132 1.626-.283.531-.133.83.249 1.195a153 153 0 0 1 3.286 3.27c.299.299.498.349.913.2 1.51-.565 2.97-.1 3.884 1.161a3.27 3.27 0 0 1-.067 3.801c-.896 1.195-2.357 1.643-3.834 1.079-.381-.15-.58-.1-.846.182a164 164 0 0 1-3.403 3.386c-.299.3-.415.532-.232.98a3.2 3.2 0 0 1-1.278 3.917A3.3 3.3 0 0 1 9.646 23c-1.062-1.062-1.228-2.688-.415-4.033a3.196 3.196 0 0 1 3.835-1.294c.498.182.78.083 1.145-.283 1.012-1.045 2.058-2.058 3.087-3.103.266-.266.68-.449.432-1.03-.233-.547-.631-.414-1.03-.431zM11.97 4.942c.913.016 1.643-.714 1.66-1.627v-.05a1.646 1.646 0 0 0-1.76-1.56 1.63 1.63 0 0 0-1.543 1.527 1.64 1.64 0 0 0 1.577 1.71zm.033 5.41a1.66 1.66 0 0 0-1.676 1.61v.084a1.73 1.73 0 0 0 1.643 1.66c.847.016 1.643-.78 1.677-1.627a1.65 1.65 0 0 0-1.577-1.71c-.017-.016-.05-.016-.067-.016zm7.088 1.694c.016.896.747 1.61 1.626 1.643a1.723 1.723 0 0 0 1.66-1.726 1.666 1.666 0 0 0-1.66-1.61 1.623 1.623 0 0 0-1.643 1.577c.017.05.017.083.017.116M3.24 10.353a1.69 1.69 0 0 0-1.66 1.626c-.017.847.863 1.727 1.693 1.71a1.687 1.687 0 0 0 1.626-1.743 1.615 1.615 0 0 0-1.643-1.593Zm8.68 12c.98.033 1.71-.647 1.727-1.593a1.646 1.646 0 0 0-1.51-1.793 1.646 1.646 0 0 0-1.793 1.51v.233a1.61 1.61 0 0 0 1.543 1.66c0-.017.017-.017.033-.017"/></svg>�����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/raycast.svg����������������������������������0000664�0000000�0000000�00000000760�14753064456�0025274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.004 15.492v2.504L0 11.992l1.258-1.249Zm2.504 2.504H6.004L12.008 24l1.253-1.253zm14.24-4.747L24 11.997 12.003 0 10.75 1.251 15.491 6h-2.865L9.317 2.692 8.065 3.944l2.06 2.06H8.691v9.31H18v-1.432l2.06 2.06 1.252-1.252L18 11.37V8.506ZM6.63 5.372 5.38 6.625l1.342 1.343 1.251-1.253Zm10.655 10.655-1.247 1.251 1.342 1.343 1.253-1.251zM3.944 8.059 2.692 9.31l3.312 3.314v-2.506zm9.936 9.937h-2.504l3.314 3.312 1.25-1.252z"/></svg>����������������mkdocs-material-9.6.4/material/templates/.icons/simple/raylib.svg�����������������������������������0000664�0000000�0000000�00000000727�14753064456�0025113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm1.5 1.5h21v21h-21zm14.813 15.469v3.281h.937v-.469h-.469V16.97zm1.406 0v.468h.468v-.468zm.937 0v3.281H21v-2.344h-1.875v-.937zm-10.781.937v2.344h.469v-1.875h1.875v-.469zm2.813 0v.469h1.874v.469h-1.874v1.406h2.343v-2.344zm2.812 0v2.344h1.875v.469H13.5v.468h2.344v-3.28h-.469v1.874h-1.406v-1.875zm4.219 0v2.344h.468v-2.344zm1.406.469h1.406v1.406h-1.406zm-7.969.938h1.406v.468h-1.406z"/></svg>�����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/razer.svg������������������������������������0000664�0000000�0000000�00000015362�14753064456�0024755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.4 0a.39.39 0 0 0-.278.125L22.91.35l-.401.182a.7.7 0 0 0-.417 0 .3.3 0 0 1-.171 0 1 1 0 0 0-.567 0A.9.9 0 0 0 21 .596a.88.88 0 0 0-.412.337l-.037.048a1.25 1.25 0 0 0-.898.684 1 1 0 0 0-.07.225 2 2 0 0 0-.337-.193 2.03 2.03 0 0 0-2.063.305 2.08 2.08 0 0 0-.69 2.139c.086.376.23.737.428 1.069a12 12 0 0 0 1.737 2.138c.526.512.996 1.078 1.401 1.69l.053.096c.396.754.321 1.31-.219 1.647a1.36 1.36 0 0 1-.572.198 2.5 2.5 0 0 0-.144-2.07 2.3 2.3 0 0 0-.3-.406c-.79-.866-1.63-.674-1.962-.449a.385.385 0 0 0-.15.455l.027.058a.39.39 0 0 0 .38.188 1.07 1.07 0 0 1 .962.582c.23.384.23.862 0 1.246a5 5 0 0 1-.534-.535l-.07-.07-.037-.042a3.37 3.37 0 0 0-1.92-1.208 3.1 3.1 0 0 0-.406-1.455 4.4 4.4 0 0 0-1.358-1.48 3 3 0 0 0-.267-.16 3.085 3.085 0 0 0-2.251-2.717 2.7 2.7 0 0 0-2.968 1.139c-.053.086-.112.171-.165.267a12.3 12.3 0 0 0-1.038 2.78 11.6 11.6 0 0 1-.775 2.187l-.059.107c-.213.374-.406.583-.609.647a.4.4 0 0 1-.374-.064c-.203-.14-.155-.423 0-.973a3 3 0 0 0 .128-.45 1.2 1.2 0 0 0-.203-.946 1.07 1.07 0 0 0-.786-.411c-.49-.018-.94.27-1.128.722l-.08.15a.97.97 0 0 0-.316-.46 1 1 0 0 0-.294-.129 1 1 0 0 0-.535-.198.34.34 0 0 1-.17-.053.7.7 0 0 0-.434-.097l-.326-.256-.144-.278c-.18-.35-.707-.238-.727.155a.385.385 0 0 0 .032.727l.305.075.342.267a.7.7 0 0 0 .192.37.3.3 0 0 1 .086.149c.058.184.167.347.315.47a.88.88 0 0 0 .727.465h.06c.262.313.662.477 1.068.439a1 1 0 0 0 .23-.054 2 2 0 0 0 0 .38 2.03 2.03 0 0 0 1.3 1.636 2.08 2.08 0 0 0 2.208-.481c.276-.26.51-.562.695-.893.422-.817.75-1.68.978-2.572.179-.711.433-1.401.76-2.058l.058-.096c.454-.722.973-.936 1.535-.637.18.096.338.231.46.396-.714.12-1.34.543-1.717 1.16q-.126.22-.203.46c-.353 1.117.23 1.748.593 1.925.16.077.353.035.466-.102l.037-.053a.39.39 0 0 0 0-.423 1.07 1.07 0 0 1 0-1.128c.218-.384.627-.62 1.07-.615q-.06.368-.177.722l-.034.093a3.53 3.53 0 0 0-.084 2.324 3.1 3.1 0 0 0-1.07 1.07 4.4 4.4 0 0 0-.603 1.913 3 3 0 0 0 0 .31 3.085 3.085 0 0 0-1.23 3.31 2.7 2.7 0 0 0 2.47 2h.31a12.3 12.3 0 0 0 2.925-.493 11.6 11.6 0 0 1 2.283-.422h.117c.304-.037.61.035.866.203.102.09.152.224.134.358 0 .246-.289.348-.855.466a3 3 0 0 0-.45.117 1.2 1.2 0 0 0-.721.647 1.07 1.07 0 0 0 .037.888c.229.435.704.683 1.193.62h.165a.97.97 0 0 0-.235.502.9.9 0 0 0 0 .364c-.019.183.013.368.091.535a.34.34 0 0 1 .043.176c-.002.151.045.3.133.422l-.058.412-.166.262a.385.385 0 0 0 .497.535c.287.265.74-.016.63-.39l-.085-.3.064-.433a.7.7 0 0 0 .22-.353.3.3 0 0 1 .085-.15c.131-.141.218-.318.252-.508a.9.9 0 0 0 .122-.336.88.88 0 0 0-.085-.535v-.053c.134-.376.08-.794-.144-1.123a1 1 0 0 0-.16-.171q.173-.074.33-.182a2.03 2.03 0 0 0 .77-1.94 2.08 2.08 0 0 0-1.518-1.674 3.7 3.7 0 0 0-1.123-.155c-.919.043-1.83.19-2.716.438-.697.198-1.414.322-2.138.369h-.112c-.85-.032-1.294-.374-1.316-1.01a1.4 1.4 0 0 1 .113-.594c.459.559 1.138.89 1.86.909q.255 0 .503-.054c1.144-.25 1.4-1.069 1.374-1.475a.385.385 0 0 0-.321-.353h-.064a.39.39 0 0 0-.353.235 1.07 1.07 0 0 1-.984.535 1.21 1.21 0 0 1-1.069-.631q.35-.132.716-.209h.155a3.37 3.37 0 0 0 2.01-1.069c.449.243.95.372 1.46.374.679.01 1.35-.138 1.962-.433q.141-.066.273-.15a3.085 3.085 0 0 0 3.48-.587 2.7 2.7 0 0 0 .498-3.139 7 7 0 0 0-.15-.273 12.3 12.3 0 0 0-1.887-2.288 11.6 11.6 0 0 1-1.508-1.764l-.064-.102a1.3 1.3 0 0 1-.257-.85.4.4 0 0 1 .16-.267c.225-.107.444.08.83.508q.151.177.326.331c.25.225.584.334.92.3a1.07 1.07 0 0 0 .748-.476c.263-.416.24-.951-.06-1.342l-.085-.145c.18.035.365.019.535-.048a.9.9 0 0 0 .32-.197c.178-.076.33-.2.44-.359a.34.34 0 0 1 .133-.123.7.7 0 0 0 .3-.326l.384-.155h.31a.385.385 0 0 0 .353-.577l-.005.01a.4.4 0 0 0-.118-.128A.385.385 0 0 0 23.4 0m.006.398-.187.315.347.086-.395.005-.658.262a.26.26 0 0 1-.171.262c-.316.182-.198.321-.583.487-.08.032-.107.101-.256.176s-.407-.027-.535 0a.32.32 0 0 0-.203.535c.085.144.486.679.192 1.112a.71.71 0 0 1-1.107.102c-.368-.305-.866-1.214-1.577-.877-.71.336-.502 1.128-.085 1.796.882 1.39 2.705 2.673 3.523 4.277 1 2-1.107 4.336-3.673 3.117a2.3 2.3 0 0 1-.396.24c-1.069.535-2.512.578-3.395-.117-.395.941-1.79 1.182-2.031 1.24-.423.08-.832.22-1.214.418.487 1.614 2.47 1.454 2.908.427 0 0 .054.824-1.069 1.07a2.14 2.14 0 0 1-2.288-1.16c-.33.346-.507.81-.492 1.288.027.69.46 1.337 1.69 1.385 1.662.064 4.25-1.203 6.014-.669 1.344.335 1.723 2.065.642 2.93a2.7 2.7 0 0 1-1.23.385c-.182.01-.198.091-.181.145.016.053.117.053.278.053.582-.053 1.208.283.93 1.166-.043.123.155.352.117.534-.053.262-.112.203-.112.289-.07.412-.235.326-.337.679a.26.26 0 0 1-.203.208l-.101.706.112.38-.182-.321-.251.257.214-.332.101-.7a.26.26 0 0 1-.16-.267c0-.364-.182-.332-.128-.75.037-.085 0-.042 0-.31.016-.186.23-.341.272-.48.043-.14.054-.45-.369-.45-.198.006-.85.075-1.069-.39a.71.71 0 0 1 .465-1.01c.45-.16 1.497-.123 1.556-.91.059-.785-.727-.999-1.513-.972-1.657.059-3.663 1.01-5.48.903-2.23-.128-3.198-3.133-.861-4.737a2.3 2.3 0 0 1 0-.465c.09-1.219.77-2.47 1.812-2.85-.593-.818-.128-2.149-.058-2.384.135-.4.213-.818.23-1.24-1.642-.37-2.497 1.411-1.824 2.304 0 0-.743-.369-.395-1.465a2.14 2.14 0 0 1 2.138-1.4 1.79 1.79 0 0 0-.871-1.07c-.61-.3-1.385-.267-2.043.77-.887 1.411-1.063 4.293-2.427 5.544-.961 1-2.652.463-2.86-.909a2.7 2.7 0 0 1 .278-1.256c.08-.166.032-.214-.038-.23s-.123.07-.187.214a.823.823 0 0 1-1.475.224c-.097-.107-.342.006-.535-.17-.192-.177-.128-.188-.192-.241-.321-.273-.16-.375-.418-.636a.26.26 0 0 1-.08-.284L.796 7.2.41 7.102h.38l-.102-.347.182.353.534.438a.26.26 0 0 1 .31 0c.321.182.38.01.717.262.07.054.133.027.283.134s.187.374.278.476a.32.32 0 0 0 .572-.096c.086-.193.332-.77.866-.728.457.027.77.47.642.91-.091.47-.652 1.357 0 1.801s1.235-.134 1.604-.829c.775-1.46.957-3.678 1.957-5.202 1.23-1.887 4.309-1.224 4.533 1.604q.218.09.412.225c1.032.69 1.759 1.924 1.567 2.994 1.02-.129 1.919.957 2.09 1.138.28.328.606.612.968.845 1.165-1.23.037-2.865-1.07-2.732 0 0 .69-.46 1.466.39a2.14 2.14 0 0 1 .139 2.561c.465.113.956.034 1.363-.219.583-.353.925-1.07.353-2.138-.776-1.476-3.187-3.075-3.588-4.876-.384-1.333.928-2.528 2.219-2.021.38.21.705.51.946.871.102.155.166.134.214.086s-.005-.14-.096-.268a.823.823 0 0 1 .534-1.39c.145-.027.161-.289.418-.374.256-.086.23-.016.31-.048.395-.15.406.043.759-.048.1-.038.212-.01.283.07l.68-.263zm-10.297 6.26c-.065.53-.348 1.647-.187 2.332.155.871.823.823 1.069.395.163-.332.2-.711.107-1.069a3.1 3.1 0 0 0-.984-1.636zm.256.872c.17.262.293.551.364.856a1.3 1.3 0 0 1 0 .759c-.086.187-.332.187-.423-.23-.04-.462-.02-.928.06-1.385zm1.727 2.661c-.517.012-.67.472-.47.82.207.31.521.534.882.63a3.1 3.1 0 0 0 1.908-.037c-.422-.32-1.25-1.123-1.903-1.342a1.3 1.3 0 0 0-.417-.07zm.088.401a.8.8 0 0 1 .201.04c.429.197.83.45 1.192.753a2.8 2.8 0 0 1-.962-.107 1.3 1.3 0 0 1-.642-.396c-.095-.134-.036-.3.21-.29zm-2.285.183a1.54 1.54 0 0 0-.984.45 3.1 3.1 0 0 0-.936 1.673c.535-.203 1.604-.519 2.139-.973.663-.588.251-1.166-.22-1.15zm-.025.341c.188.008.276.217-.04.488a5.4 5.4 0 0 1-1.234.631c.134-.277.315-.528.534-.743a1.3 1.3 0 0 1 .7-.374z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/razorpay.svg���������������������������������0000664�0000000�0000000�00000000265�14753064456�0025475�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.436 0-11.91 7.773-1.174 4.276 6.625-4.297L11.65 24h4.391zM14.26 10.098 3.389 17.166 1.564 24h9.008z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rclone.svg�����������������������������������0000664�0000000�0000000�00000001240�14753064456�0025102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.842.626a7.33 7.33 0 0 0-6.196 3.667 7.3 7.3 0 0 0-.966 4.175 8 8 0 0 1 2.657-.454l1.47-.002c-.009-.559.125-1.128.425-1.648a3.196 3.196 0 0 1 5.535 3.196l-1.478 2.564 1.195 2.072h2.391l1.478-2.566A7.336 7.336 0 0 0 11.842.626m-1.545 8.073-2.96.003a7.337 7.337 0 1 0 4.096 13.423 8 8 0 0 1-1.72-2.075l-.737-1.273c-.48.288-1.039.457-1.64.457a3.196 3.196 0 1 1 0-6.391l2.96-.002 1.197-2.071zm9.587.747a8 8 0 0 1-.935 2.528l-.734 1.275c.489.271.915.671 1.215 1.192a3.196 3.196 0 0 1-5.535 3.195l-1.482-2.563H10.02l-1.195 2.071 1.483 2.563a7.336 7.336 0 0 0 12.707-7.337 7.3 7.3 0 0 0-3.132-2.924"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/react.svg������������������������������������0000664�0000000�0000000�00000005131�14753064456�0024721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.23 12.004a2.236 2.236 0 0 1-2.235 2.236 2.236 2.236 0 0 1-2.236-2.236 2.236 2.236 0 0 1 2.235-2.236 2.236 2.236 0 0 1 2.236 2.236m2.648-10.69c-1.346 0-3.107.96-4.888 2.622-1.78-1.653-3.542-2.602-4.887-2.602-.41 0-.783.093-1.106.278-1.375.793-1.683 3.264-.973 6.365C1.98 8.917 0 10.42 0 12.004c0 1.59 1.99 3.097 5.043 4.03-.704 3.113-.39 5.588.988 6.38.32.187.69.275 1.102.275 1.345 0 3.107-.96 4.888-2.624 1.78 1.654 3.542 2.603 4.887 2.603.41 0 .783-.09 1.106-.275 1.374-.792 1.683-3.263.973-6.365C22.02 15.096 24 13.59 24 12.004c0-1.59-1.99-3.097-5.043-4.032.704-3.11.39-5.587-.988-6.38a2.17 2.17 0 0 0-1.092-.278zm-.005 1.09v.006c.225 0 .406.044.558.127.666.382.955 1.835.73 3.704-.054.46-.142.945-.25 1.44a23.5 23.5 0 0 0-3.107-.534A24 24 0 0 0 12.769 4.7c1.592-1.48 3.087-2.292 4.105-2.295zm-9.77.02c1.012 0 2.514.808 4.11 2.28-.686.72-1.37 1.537-2.02 2.442a23 23 0 0 0-3.113.538 15 15 0 0 1-.254-1.42c-.23-1.868.054-3.32.714-3.707.19-.09.4-.127.563-.132zm4.882 3.05q.684.704 1.36 1.564c-.44-.02-.89-.034-1.345-.034q-.691-.001-1.36.034c.44-.572.895-1.096 1.345-1.565zM12 8.1c.74 0 1.477.034 2.202.093q.61.874 1.183 1.86.557.961 1.018 1.946c-.308.655-.646 1.31-1.013 1.95-.38.66-.773 1.288-1.18 1.87a25.6 25.6 0 0 1-4.412.005 27 27 0 0 1-1.183-1.86q-.557-.961-1.018-1.946a25 25 0 0 1 1.013-1.954c.38-.66.773-1.286 1.18-1.868A25 25 0 0 1 12 8.098zm-3.635.254c-.24.377-.48.763-.704 1.16q-.336.585-.635 1.174c-.265-.656-.49-1.31-.676-1.947.64-.15 1.315-.283 2.015-.386zm7.26 0q1.044.153 2.006.387c-.18.632-.405 1.282-.66 1.933a25.952 25.952 0 0 0-1.345-2.32zm3.063.675q.727.226 1.375.498c1.732.74 2.852 1.708 2.852 2.476-.005.768-1.125 1.74-2.857 2.475-.42.18-.88.342-1.355.493a24 24 0 0 0-1.1-2.98c.45-1.017.81-2.01 1.085-2.964zm-13.395.004c.278.96.645 1.957 1.1 2.98a23 23 0 0 0-1.086 2.964c-.484-.15-.944-.318-1.37-.5-1.732-.737-2.852-1.706-2.852-2.474s1.12-1.742 2.852-2.476c.42-.18.88-.342 1.356-.494m11.678 4.28c.265.657.49 1.312.676 1.948-.64.157-1.316.29-2.016.39a26 26 0 0 0 1.341-2.338zm-9.945.02c.2.392.41.783.64 1.175q.345.586.705 1.143a22 22 0 0 1-2.006-.386c.18-.63.406-1.282.66-1.933zM17.92 16.32c.112.493.2.968.254 1.423.23 1.868-.054 3.32-.714 3.708-.147.09-.338.128-.563.128-1.012 0-2.514-.807-4.11-2.28.686-.72 1.37-1.536 2.02-2.44 1.107-.118 2.154-.3 3.113-.54zm-11.83.01c.96.234 2.006.415 3.107.532.66.905 1.345 1.727 2.035 2.446-1.595 1.483-3.092 2.295-4.11 2.295a1.2 1.2 0 0 1-.553-.132c-.666-.38-.955-1.834-.73-3.703.054-.46.142-.944.25-1.438zm4.56.64q.661.032 1.345.034.691.001 1.36-.034c-.44.572-.895 1.095-1.345 1.565q-.684-.706-1.36-1.565"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/reactbootstrap.svg���������������������������0000664�0000000�0000000�00000005033�14753064456�0026660�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.679.626c-.5 0-.948.112-1.33.333-.367.213-.675.53-.917.942-.226.386-.393.856-.496 1.396-.197 1.042-.155 2.346.124 3.77q.053.271.116.542a17 17 0 0 0-.644.209C3.187 8.287 2.062 8.9 1.279 9.59c-.406.358-.72.736-.935 1.124A2.6 2.6 0 0 0 0 11.97c0 .846.469 1.703 1.355 2.48.835.733 2.015 1.372 3.412 1.85q.195.066.395.128a17 17 0 0 0-.128.61c-.266 1.399-.297 2.68-.09 3.703.107.53.277.99.506 1.37.243.404.552.716.917.927.386.222.839.335 1.348.335.692 0 1.467-.206 2.302-.61.818-.398 1.653-.967 2.482-1.691a13 13 0 0 0 .391-.356h6.146q1.302 0 2.246-.38.943-.38 1.548-1.023t.887-1.534A6.2 6.2 0 0 0 24 15.871c0-1.188-.215-2.172-.642-2.96q-.634-1.167-1.867-1.514a.03.03 0 0 1-.02-.033.03.03 0 0 1 .016-.03 3.5 3.5 0 0 0 1.411-1.442q.498-.935.498-2.25c0-1.447-.366-2.523-1.095-3.238q-1.093-1.073-2.906-1.072h-6.512a16 16 0 0 0-.308-.282c-.861-.763-1.72-1.363-2.552-1.78C9.169.844 8.38.627 7.679.627m.007 1.7c.434 0 .995.17 1.623.492.68.35 1.419.87 2.134 1.505l.136.123a26 26 0 0 0-1.846 2.302c-1.016.1-1.992.248-2.907.441a15 15 0 0 1-.092-.434L6.73 6.74c-.218-1.114-.271-2.131-.153-2.942.101-.696.328-1.194.624-1.365a.96.96 0 0 1 .484-.107m5.16 3.217v12.912l-.765-.946-.5-.617c-.253-.312-.657-.889-1.14-1.624a29 29 0 0 1-.794-1.282l-.015-.025c-.23-.398-.403-.72-.54-.977a39 39 0 0 1-.507-.981l.03-.058.002-.004a31 31 0 0 1 .566-1.098l.001-.003.208-.402.306-.507.002-.004q.172-.293.353-.584l.21-.348c.281-.464.507-.803.863-1.294.191-.264.373-.496.661-.856v-.001l.015-.018.005-.007q.176-.225.351-.437l.004-.005.002-.003a83 83 0 0 1 .683-.831zm2.391.252h3.829q.963.001 1.474.536c.51.535.51.974.51 1.852 0 .78-.19 1.375-.567 1.794-.378.419-.85.624-1.417.624h-3.829c-.014 0-.025-.015-.025-.033v-4.74c0-.018.011-.033.025-.033M8.498 8.616a32 32 0 0 0-.793 1.375 23 23 0 0 1-.417-1.16 23 23 0 0 1 1.21-.215m-2.865.634c.288.892.649 1.816 1.072 2.748a26 26 0 0 0-1.087 2.79 12 12 0 0 1-.3-.098c-1.162-.397-2.13-.91-2.798-1.482-.512-.438-.817-.9-.817-1.236 0-.345.305-.79.838-1.22.62-.502 1.503-.96 2.551-1.326a15 15 0 0 1 .541-.176m9.604 3.543h4.149c.718 0 1.27.224 1.67.692s.597 1.125.597 1.988c0 .877-.2 1.56-.597 2.037q-.591.723-1.67.722h-4.149c-.014 0-.025-.015-.025-.033v-5.373c0-.019.01-.033.025-.033M7.707 14a31 31 0 0 0 .818 1.411 22 22 0 0 1-1.252-.209q.195-.591.434-1.202m-.894 2.844c.902.185 1.89.324 2.94.414a26 26 0 0 0 1.862 2.317q-.117.108-.236.212c-.917.803-1.839 1.382-2.664 1.677l-.018.007c-.37.13-.7.196-.98.196q-.313 0-.498-.106c-.3-.173-.532-.66-.639-1.336-.124-.789-.08-1.782.126-2.872q.049-.255.107-.509"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/reacthookform.svg����������������������������0000664�0000000�0000000�00000001621�14753064456�0026466�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.775 17.348H5.806a.282.282 0 1 0 0 .563h4.97a.282.282 0 1 0 0-.563m7.32 0h-4.969a.282.282 0 1 0 0 .563h4.969a.282.282 0 0 0 0-.563m-7.334-6.475H5.807a.282.282 0 1 0 0 .563h4.954a.282.282 0 1 0 0-.563m7.32 0h-4.955a.282.282 0 1 0 0 .563h4.955a.282.282 0 0 0 0-.563m.552-9.2h-4.341a2.404 2.404 0 0 0-4.58 0H5.366a3.097 3.097 0 0 0-3.096 3.096v16.134A3.097 3.097 0 0 0 5.367 24h13.266a3.097 3.097 0 0 0 3.096-3.097V4.77a3.097 3.097 0 0 0-3.096-3.096m-8.705.563a.28.28 0 0 0 .281-.223 1.841 1.841 0 0 1 3.598 0 .28.28 0 0 0 .282.223h1.514V4.08a.845.845 0 0 1-.844.844H9.255a.845.845 0 0 1-.844-.844V2.236Zm11.238 18.667c0 1.4-1.134 2.534-2.533 2.534H5.367a2.534 2.534 0 0 1-2.533-2.534V4.77c0-1.399 1.134-2.533 2.533-2.533h2.48V4.08c0 .777.63 1.407 1.408 1.407h5.49c.777 0 1.407-.63 1.407-1.407V2.236h2.48c1.4 0 2.534 1.134 2.534 2.533z"/></svg>���������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/reactiveresume.svg���������������������������0000664�0000000�0000000�00000000771�14753064456�0026653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 3.393v12.949h3.662v-3.44h2c1.8-.002 4.084-.395 5.276-2.183q.703-1.073.703-2.535 0-1.479-.704-2.551-.703-1.092-1.998-1.666c-.85-.382-1.836-.574-3.02-.574zm3.662 2.886h2.035q1.147 0 1.701.5.574.498.575 1.405-.001.888-.575 1.388-.554.5-1.7.5H3.661V6.28zm8.906 4.301 3.764 5.012-3.764 5.015h3.92l1.795-2.388 1.795 2.388H24L16.488 10.58zm7.51 0-1.369 1.834 1.969 2.61L24 10.58zM9.096 12.912s-1.496.628-3.467.604l2.115 2.826h3.92z"/></svg>�������mkdocs-material-9.6.4/material/templates/.icons/simple/reactivex.svg��������������������������������0000664�0000000�0000000�00000005123�14753064456�0025616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.402 2.343c-2.224.984-3.615 2.583-4.4 3.747-.852 1.268-1.184 2.319-1.184 2.328-.002.036.005-.017 0 .019-.246.7-.473 1.798-.473 1.807-.265 1.344-.142 2.593-.142 2.612l.029.246a10 10 0 0 1 .132-1.012c.019-.133.37-2.016 1.694-3.511.142-.218 1.675-2.233 4.495-2.233.606 0 1.24.094 1.874.283h.019c.038.01.87.313 1.173.464.284.142.786.36.795.36h.02c2.715 1.325 5.062 1.75 5.081 1.76q1.008.17 1.817.17c1.079 0 1.855-.236 2.262-.69.237-.26.307-.559.293-.814.019-.985-.785-2.044-1.467-2.754a11 11 0 0 0-1.542-1.344c-2.044-1.514-4.23-2.28-6.52-2.28-2.347.009-3.937.832-3.956.842m7.419 2.659c.284 0 .511.227.511.51a.51.51 0 0 1-.511.512.51.51 0 0 1-.511-.511c0-.284.227-.511.511-.511m-6.605-1.94c.075 0 .123.019.142.019l3.227 1.003-.123.255-1.543-.482c-.548-.17-1.12-.351-1.656-.52-.01 0-.028-.01-.047-.01-.02 0-.048 0-.067.01-.293.075-1.097.359-1.334.785a.48.48 0 0 0-.038.378c0 .01.17.54.596 1.088l2.14-.104 1.428-.066-.142.293-3.549.17c-.53-.643-.738-1.286-.738-1.286C6.181 3.554 8.083 3.07 8.083 3.07q.068-.003.133-.01zm11.223 15.747c2.177-.946 3.104-2.584 3.104-2.584 2.035-2.772 1.344-5.697 1.344-5.697-1.296 2.82-2.48 3.596-2.48 3.596 3.19-4.854.02-7.788.02-7.788C22.723 9.1 21 12.468 21 12.468c-1.448 3.048-3.502 4.136-3.502 4.136 2.29.426 3.975-1.117 3.975-1.117-3.284 3.549-6.842 3.379-6.842 3.379 1.495 1.675 3.738 1.533 3.738 1.533-2.934.69-5.688-.284-7.95-2.167-.425-.35-.832-.73-1.21-1.136-.144-.15-.28-.31-.417-.464-.047 1.751 1.779 3.379 1.779 3.379-2.29-.947-3.34-3-3.34-3s-1.543-2.631-.426-5.631c1.107-2.962 4.419-3.626 4.504-3.645a53 53 0 0 0-.814-.367c-.293-.142-1.145-.455-1.145-.455a6.4 6.4 0 0 0-1.798-.274c-2.792 0-4.277 2.11-4.277 2.11-1.316 1.477-1.628 3.388-1.628 3.388-.37 1.827.028 3.748.028 3.748s.038.151.048.217c.303.72.69 1.43 1.145 2.101 2.46 3.672 6.454 4.94 6.454 4.94 5.914 2.006 9.955-.946 9.955-.946 3.72-2.555 4.467-5.508 4.467-5.508-3.01 2.338-4.306 2.12-4.306 2.12zM1.307 14.948a12.6 12.6 0 0 1-.36-1.78c-.01-.098-.025-.207-.037-.302 0 0-.133-1.287.151-2.697 0 0 .01-.038.02-.095.036-.203.093-.407.132-.577.085-.37.208-.814.33-1.174 0 0 1.307-4.287 5.726-6.245 0 0 1.524-.805 3.823-.862a3.7 3.7 0 0 0-.51-.435c-1.08-.72-2.688-.956-3.663.057-.293.303-.54.634-.814.937-.312.34-.69.624-1.126.785-.378.142-.757.114-1.145.18-.397.066-.804.208-1.126.464-.35.284-.492.662-.53 1.097-.038.341-.028.691-.047 1.032-.048 1.003-.37 1.287-1.089 1.845-.303.227-.558.53-.747.852-.568 1.003.34 2.044.388 3.057.01.208-.01.416-.085.615-.076.217-.228.36-.35.54-.171.236-.285.52-.237.813s.199.568.34.823c.275.455.616.862.975 1.25.012.016.038.04.054.052z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/reactos.svg����������������������������������0000664�0000000�0000000�00000003345�14753064456�0025270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.21 24c-1.148-.007-2.477-.334-3.89-.915-2.823-1.163-6.04-3.372-9.036-6.367S2.075 10.505.913 7.68C-.25 4.857-.383 2.36.988.989 2.358-.38 4.855-.248 7.679.915q.46.189.932.415-.498.169-.974.383l-.141-.058C4.832.558 2.698.519 1.607 1.609.517 2.7.557 4.83 1.653 7.494s3.235 5.793 6.147 8.704c2.91 2.911 6.044 5.05 8.708 6.147s4.79 1.136 5.88.045c1.091-1.09 1.056-3.22-.041-5.884-.108-.263-.23-.531-.358-.803q.2-.476.354-.973.423.81.744 1.589c1.163 2.823 1.292 5.32-.079 6.691-.685.685-1.651.997-2.799.99zM3.79 24c-1.148.008-2.117-.305-2.802-.99-1.37-1.37-1.238-3.868-.075-6.691.235-.572.517-1.16.836-1.76q.147.5.34.978a18 18 0 0 0-.436.969C.556 19.169.521 21.3 1.611 22.39c1.091 1.091 3.221 1.051 5.885-.045.922-.38 3.021-1.69 4.026-2.308q.324.243.649.474c-1.157.733-3.415 2.13-4.492 2.574-1.412.581-2.74.907-3.888.915zm9.753-4.458a25 25 0 0 1-.645-.433 35 35 0 0 0 3.302-2.911c2.912-2.911 5.05-6.04 6.147-8.704s1.132-4.794.042-5.885c-1.091-1.09-3.217-1.055-5.88.042l-.072.029a11 11 0 0 0-.99-.379q.443-.211.874-.39c2.824-1.163 5.321-1.292 6.691.078s1.238 3.864.075 6.688c-1.162 2.823-3.376 6.046-6.37 9.04a36 36 0 0 1-3.174 2.825m1.95 1.156c-.325-.17-1.798-1.073-2.135-1.273 1.002-.806 2.423-1.97 3.396-2.944 1.718-1.718 3.981-4.787 5.162-6.555-.008.111-.093 2.49-.105 2.6a9.8 9.8 0 0 1-6.318 8.172m-6.928-.034c-3.407-1.308-6.043-4.71-6.287-8.198-.01-.151-.06-.399-.054-.984.007-.602.056-1.423.159-1.283 1.036 1.42 3.976 5.455 5.352 6.83.973.973 1.927 1.624 2.929 2.43a113 113 0 0 1-2.1 1.205zm3.43-2.208a33 33 0 0 1-3.443-3.01c-2.54-2.54-4.462-5.254-5.568-7.582 1.45-3.597 4.973-6.138 9.087-6.138 4.051 0 7.53 2.465 9.02 5.976-1.093 2.363-3.045 5.145-5.643 7.743a33 33 0 0 1-3.452 3.011z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/reactquery.svg�������������������������������0000664�0000000�0000000�00000006127�14753064456�0026015�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.93 13.688a.343.343 0 0 1 .468.132l.063.106q.72 1.277 1.5 2.426a36 36 0 0 0 2.074 2.742.346.346 0 0 1-.039.484l-.074.066c-2.543 2.223-4.191 2.665-4.953 1.333-.746-1.305-.477-3.672.808-7.11a.34.34 0 0 1 .153-.18M17.75 16.3a.34.34 0 0 1 .395.27l.02.1q.942 4.93-1.325 4.93c-1.48 0-3.36-1.402-5.649-4.203a.33.33 0 0 1-.074-.222c0-.188.156-.34.344-.34h.121a33 33 0 0 0 2.809-.098q1.606-.128 3.359-.437m.871-6.977a.353.353 0 0 1 .445-.21l.102.034q4.895 1.665 3.719 3.664-1.148 1.957-6.684 2.848a.36.36 0 0 1-.238-.047.343.343 0 0 1-.125-.476l.062-.106a34 34 0 0 0 1.367-2.523q.717-1.484 1.352-3.184M7.797 8.34a.36.36 0 0 1 .238.047.343.343 0 0 1 .125.476l-.062.106a34 34 0 0 0-1.367 2.523q-.717 1.483-1.352 3.184a.353.353 0 0 1-.445.21l-.102-.034q-4.895-1.666-3.719-3.664Q2.261 9.23 7.797 8.34m5.281-3.984c2.543-2.223 4.192-2.664 4.953-1.332.746 1.304.477 3.671-.808 7.109a.34.34 0 0 1-.153.18.343.343 0 0 1-.468-.133l-.063-.106a35 35 0 0 0-1.5-2.426 36 36 0 0 0-2.074-2.742.346.346 0 0 1 .039-.484ZM7.285 2.274q2.22 0 5.649 4.203a.35.35 0 0 1 .078.218.35.35 0 0 1-.348.344l-.117-.004a35 35 0 0 0-2.809.102 36 36 0 0 0-3.363.437.343.343 0 0 1-.394-.273l-.02-.098q-.944-4.929 1.324-4.93m2.871 5.812h3.688a.64.64 0 0 1 .55.316l1.848 3.22a.64.64 0 0 1 0 .628l-1.847 3.223a.64.64 0 0 1-.551.316h-3.688a.63.63 0 0 1-.547-.316L7.758 12.25a.64.64 0 0 1 0-.629L9.61 8.402a.63.63 0 0 1 .546-.316m3.23.793a.64.64 0 0 1 .552.316l1.39 2.426a.64.64 0 0 1 0 .629l-1.39 2.43a.64.64 0 0 1-.551.316h-2.774a.63.63 0 0 1-.546-.316l-1.395-2.43a.64.64 0 0 1 0-.629l1.395-2.426a.63.63 0 0 1 .546-.316Zm-.491.867h-1.79a.62.62 0 0 0-.546.316l-.899 1.56a.64.64 0 0 0 0 .628l.899 1.563a.63.63 0 0 0 .547.316h1.789a.63.63 0 0 0 .547-.316l.898-1.563a.64.64 0 0 0 0-.629l-.898-1.558a.62.62 0 0 0-.547-.317m-.477.828c.227 0 .438.121.547.317l.422.73a.63.63 0 0 1 0 .629l-.422.734a.63.63 0 0 1-.547.317h-.836a.63.63 0 0 1-.547-.317l-.422-.734a.63.63 0 0 1 0-.629l.422-.73a.63.63 0 0 1 .547-.317zm-.418.817a.55.55 0 0 0-.473.273.55.55 0 0 0 0 .547.54.54 0 0 0 .473.27.54.54 0 0 0 .473-.27.55.55 0 0 0 0-.547.55.55 0 0 0-.473-.273Zm-4.422.546h.98M18.982 7.75c.39-1.894.476-3.344.222-4.398-.148-.63-.422-1.137-.84-1.508-.441-.39-1-.582-1.625-.582-1.035 0-2.12.472-3.281 1.367a15 15 0 0 0-1.473 1.316 1 1 0 0 0-.136-.144c-1.446-1.285-2.66-2.082-3.7-2.39-.617-.184-1.195-.2-1.722-.024-.559.187-1.004.574-1.317 1.117-.515.894-.652 2.074-.46 3.527q.119.885.402 1.934a1 1 0 0 0-.215.047C3.008 8.62 1.71 9.269.926 10.015c-.465.442-.77.938-.883 1.481-.113.578 0 1.156.312 1.7.516.894 1.465 1.597 2.817 2.155q.813.334 1.844.61a1 1 0 0 0-.07.226c-.391 1.891-.477 3.344-.223 4.395.148.629.425 1.14.84 1.508.44.39 1 .582 1.625.582 1.035 0 2.12-.473 3.28-1.364q.715-.556 1.489-1.336a1.2 1.2 0 0 0 .195.227c1.446 1.285 2.66 2.082 3.7 2.39.617.184 1.195.2 1.722.024.559-.187 1.004-.574 1.317-1.117.515-.894.652-2.074.46-3.527a15 15 0 0 0-.425-2.012 1.2 1.2 0 0 0 .238-.047c1.828-.61 3.125-1.258 3.91-2.004.465-.441.77-.937.883-1.48.113-.578 0-1.157-.312-1.7-.516-.894-1.465-1.597-2.817-2.156a15 15 0 0 0-1.906-.625 1 1 0 0 0 .059-.195"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/reactrouter.svg������������������������������0000664�0000000�0000000�00000002026�14753064456�0026162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.118 5.466a2.3 2.3 0 0 0-.623.08c-.278.067-.702.332-.953.583-.41.423-.49.609-.662 1.469-.08.423.41 1.43.847 1.734.45.317 1.085.502 2.065.608 1.429.16 1.84.636 1.84 2.197 0 1.377-.385 1.747-1.96 1.906-1.707.172-2.58.834-2.765 2.117-.106.781.41 1.76 1.125 2.091 1.627.768 3.15-.198 3.467-2.196.211-1.284.622-1.642 1.998-1.747 1.588-.133 2.409-.675 2.713-1.787.278-1.02-.304-2.157-1.297-2.554-.264-.106-.873-.238-1.35-.291-1.495-.16-1.879-.424-2.038-1.39-.225-1.337-.317-1.562-.794-2.09a2.17 2.17 0 0 0-1.613-.73m-4.785 4.36a2.2 2.2 0 0 0-.497.048c-1.469.318-2.17 2.051-1.35 3.295 1.178 1.774 3.944.953 3.97-1.177.012-1.193-.98-2.143-2.123-2.166M2.089 14.19a2.2 2.2 0 0 0-.427.052c-2.158.476-2.237 3.626-.106 4.182.53.145.582.145 1.111.013 1.191-.318 1.866-1.456 1.549-2.607-.278-1.02-1.144-1.664-2.127-1.64m19.824.008c-.233.002-.477.058-.784.162-1.39.477-1.866 2.092-.98 3.336.557.794 1.96 1.058 2.82.516 1.416-.874 1.363-3.057-.093-3.746-.38-.186-.663-.271-.963-.268"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/reacttable.svg�������������������������������0000664�0000000�0000000�00000005171�14753064456�0025735�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.738 1.263c.626 0 1.183.192 1.624.581.417.369.692.88.842 1.507.253 1.054.169 2.505-.222 4.398a1 1 0 0 1-.06.195q1.068.28 1.906.626c1.352.559 2.301 1.264 2.817 2.158.313.542.427 1.12.31 1.696-.11.546-.415 1.04-.882 1.482-.784.745-2.08 1.396-3.91 2.002a1 1 0 0 1-.236.05q.302 1.093.424 2.013c.193 1.452.056 2.629-.46 3.524-.314.543-.758.93-1.316 1.118-.528.177-1.107.16-1.725-.023-1.039-.308-2.253-1.106-3.696-2.39a1.1 1.1 0 0 1-.195-.228 15 15 0 0 1-1.491 1.335c-1.16.894-2.247 1.364-3.28 1.364-.626 0-1.183-.19-1.624-.58-.417-.37-.692-.88-.842-1.507-.253-1.054-.169-2.506.222-4.398a1 1 0 0 1 .072-.224 15 15 0 0 1-1.844-.61C1.82 14.793.871 14.088.355 13.194c-.313-.542-.427-1.12-.31-1.697.11-.545.415-1.039.882-1.482.784-.744 2.08-1.396 3.91-2.002q.107-.034.215-.048a15 15 0 0 1-.403-1.936c-.193-1.452-.056-2.629.46-3.524.314-.543.758-.93 1.316-1.118.528-.177 1.107-.16 1.725.023 1.039.308 2.253 1.106 3.696 2.39q.076.067.137.147.765-.772 1.475-1.32c1.16-.893 2.247-1.364 3.28-1.364M7.359 13.761a.342.342 0 0 0-.582.106q-1.926 5.154-.809 7.11 1.143 1.998 4.953-1.33l.077-.068.053-.059a.35.35 0 0 0-.016-.427 36 36 0 0 1-2.074-2.743 34 34 0 0 1-1.502-2.425l-.06-.106zm10.46 2.534-.067.005a36 36 0 0 1-3.363.437 33 33 0 0 1-2.808.1h-.12l-.07.006a.343.343 0 0 0-.198.554q3.43 4.204 5.647 4.203 2.268 0 1.326-4.928l-.02-.1-.02-.066a.34.34 0 0 0-.374-.206zm-6.231-1.137H9.385l.252.44a.63.63 0 0 0 .548.318h1.403zm3.087 0h-2.203v.758h1.403a.63.63 0 0 0 .548-.317zM19 9.098a.355.355 0 0 0-.379.226 36 36 0 0 1-1.352 3.184 34 34 0 0 1-1.366 2.525l-.063.106-.03.064a.345.345 0 0 0 .155.412.36.36 0 0 0 .237.044q5.537-.892 6.687-2.846 1.176-1.998-3.72-3.666l-.1-.033zm-11.118-.76-.082.003q-5.537.892-6.687 2.846-1.176 1.998 3.72 3.666l.1.033.069.016a.355.355 0 0 0 .379-.226 36 36 0 0 1 1.352-3.184 34 34 0 0 1 1.366-2.525l.063-.106.03-.064a.345.345 0 0 0-.155-.412.36.36 0 0 0-.237-.044zm3.707 5.051H8.37l.507.885h2.71v-.885zm4.102 0h-3.218v.885h2.71zm-4.102-1.768H7.862l-.073.128a.63.63 0 0 0 0 .628l.073.128h3.726zm4.61 0h-3.726v.884h3.726l.073-.128a.63.63 0 0 0 0-.628zm-4.61-1.768h-2.71l-.508.884h3.218zm3.595 0h-2.711v.884h3.218zm2.849-6.83q-1.143-1.998-4.953 1.33l-.077.068-.053.059a.35.35 0 0 0 .016.427q1.153 1.389 2.074 2.743.78 1.147 1.502 2.425l.06.106.04.058a.342.342 0 0 0 .582-.106q1.926-5.154.809-7.11m-6.444 5.188h-1.403a.63.63 0 0 0-.548.317l-.253.44h2.204zm2.287 0h-1.403v.757h2.204l-.253-.44a.63.63 0 0 0-.548-.317m-6.59-5.937q-2.266 0-1.326 4.928l.02.1.02.065c.06.146.214.235.375.207a36 36 0 0 1 3.363-.437 33 33 0 0 1 2.807-.1h.12l.07-.006a.343.343 0 0 0 .198-.554Q9.504 2.274 7.286 2.274"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/readdotcv.svg��������������������������������0000664�0000000�0000000�00000001252�14753064456�0025576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.832 3.367 8.668.108a3.15 3.15 0 0 0-3.856 2.226L.943 16.777a3.15 3.15 0 0 0 2.226 3.856l12.163 3.259a3.15 3.15 0 0 0 3.855-2.226l3.87-14.443a3.15 3.15 0 0 0-2.226-3.856M6.332 2.741a1.574 1.574 0 0 1 1.928-1.113l12.163 3.26a1.574 1.574 0 0 1 1.113 1.927l-3.87 14.444a1.574 1.574 0 0 1-1.928 1.113l-12.163-3.26a1.574 1.574 0 0 1-1.113-1.927zm2.634 2.336a.787.787 0 1 0-.407 1.52l9.122 2.444a.787.787 0 1 0 .407-1.52zM6.985 9.434a.787.787 0 0 1 .963-.557l9.123 2.445a.787.787 0 0 1-.408 1.52l-9.122-2.444a.787.787 0 0 1-.556-.964m-.055 3.244a.787.787 0 0 0-.407 1.52l5.32 1.427a.787.787 0 0 0 .408-1.52z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/readme.svg�����������������������������������0000664�0000000�0000000�00000002144�14753064456�0025061�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.011 3.269H16.19a4.29 4.29 0 0 0-4.185 3.345A4.29 4.29 0 0 0 7.819 3.27H2a2 2 0 0 0-2.001 2v10.244a2 2 0 0 0 2 2h3.738c4.257 0 5.53 1.025 6.138 3.134a.11.11 0 0 0 .112.084h.024a.11.11 0 0 0 .112-.084c.612-2.109 1.885-3.133 6.138-3.133h3.737a2 2 0 0 0 2.001-2V5.27a2 2 0 0 0-1.989-2ZM10.083 14.325a.144.144 0 0 1-.144.144H3.257a.144.144 0 0 1-.144-.144v-.953a.144.144 0 0 1 .144-.144H9.94a.144.144 0 0 1 .144.144zm0-2.537a.144.144 0 0 1-.144.144H3.257a.144.144 0 0 1-.144-.144v-.952a.144.144 0 0 1 .144-.144H9.94a.144.144 0 0 1 .144.144zm0-2.537a.144.144 0 0 1-.144.144H3.257a.144.144 0 0 1-.144-.144V8.3a.144.144 0 0 1 .144-.144H9.94a.144.144 0 0 1 .144.144zm10.804 5.07a.144.144 0 0 1-.144.144h-6.682a.144.144 0 0 1-.144-.144v-.953a.144.144 0 0 1 .144-.144h6.682a.144.144 0 0 1 .144.144zm0-2.537a.144.144 0 0 1-.144.144h-6.682a.144.144 0 0 1-.144-.144v-.952a.144.144 0 0 1 .144-.144h6.682a.144.144 0 0 1 .144.144zm0-2.537a.144.144 0 0 1-.144.144h-6.682a.144.144 0 0 1-.144-.144V8.3a.144.144 0 0 1 .144-.144h6.682a.144.144 0 0 1 .144.144v.952z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/readthedocs.svg������������������������������0000664�0000000�0000000�00000002631�14753064456�0026112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.732 0a59 59 0 0 0-4.977.218V24a63 63 0 0 1 3.619-.687q.255-.041.509-.078.323-.05.644-.096l.205-.03zm1.18.003V22.96a61 61 0 0 1 12.333-.213V1.485A61 61 0 0 0 8.912.003m1.707 1.81h.015c3.06.088 6.125.404 9.167.95a.59.59 0 0 1 .476.686.59.59 0 0 1-.569.484.6.6 0 0 1-.116-.009 60.6 60.6 0 0 0-8.992-.931.59.59 0 0 1-.573-.607.59.59 0 0 1 .592-.572zm-4.212.028a.59.59 0 0 1 .578.565.59.59 0 0 1-.564.614 60 60 0 0 0-2.355.144l-.04.002a.59.59 0 0 1-.595-.542.59.59 0 0 1 .54-.635q1.2-.097 2.401-.148zm4.202 2.834h.015a61.6 61.6 0 0 1 9.167.8.59.59 0 0 1 .488.677.59.59 0 0 1-.602.494 1 1 0 0 1-.076-.006 60.4 60.4 0 0 0-8.99-.786.59.59 0 0 1-.584-.596.59.59 0 0 1 .582-.583m-4.211.097a.59.59 0 0 1 .587.555.59.59 0 0 1-.554.622q-1.18.069-2.356.184l-.04.003a.59.59 0 0 1-.603-.533.59.59 0 0 1 .53-.644q1.2-.117 2.4-.187zM10.6 7.535h.015c3.06-.013 6.125.204 9.167.65a.59.59 0 0 1 .498.67.59.59 0 0 1-.593.504 1 1 0 0 1-.076-.006 60 60 0 0 0-8.992-.638.59.59 0 0 1-.592-.588.59.59 0 0 1 .573-.592m1.153 2.846a61 61 0 0 1 8.02.515.59.59 0 0 1 .509.66.59.59 0 0 1-.586.514 1 1 0 0 1-.076-.005 60 60 0 0 0-8.99-.492.59.59 0 0 1-.603-.577.59.59 0 0 1 .578-.603q.573-.012 1.148-.012m1.139 2.832a61 61 0 0 1 6.871.394.59.59 0 0 1 .52.652.59.59 0 0 1-.577.523 1 1 0 0 1-.076-.004 60 60 0 0 0-8.991-.344.59.59 0 0 1-.61-.568.59.59 0 0 1 .567-.611q1.147-.042 2.296-.042"/></svg>�������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/reason.svg�����������������������������������0000664�0000000�0000000�00000000523�14753064456�0025112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm11.52 21.89-1.33-2.54H8.4v2.54H6v-9.2h4.13c2.44 0 3.83 1.19 3.83 3.24 0 1.39-.58 2.4-1.64 2.96l1.92 3zm11.36 0H15.5v-9.2h7.24v1.92H17.9v1.72h4.38v1.9l-4.38.01v1.73h4.99v1.92zM11.68 16c0 .93-.56 1.43-1.53 1.43H8.4v-2.82h1.75c.97 0 1.53.49 1.53 1.4z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/reasonstudios.svg����������������������������0000664�0000000�0000000�00000000610�14753064456�0026522�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.49 5.114 8.3-4.79a2.42 2.42 0 0 1 2.39-.017l.03.017 8.299 4.79a2.42 2.42 0 0 1 1.211 2.065v9.611a2.42 2.42 0 0 1-1.184 2.08l-.027.016-8.299 4.79a2.42 2.42 0 0 1-2.39.017l-.03-.017-8.3-4.79a2.42 2.42 0 0 1-1.21-2.065V7.21c0-.855.45-1.645 1.184-2.08zl8.3-4.79zM12 4.026 5.092 8.013v7.974L12 19.974V12l6.908-3.987z"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/recoil.svg�����������������������������������0000664�0000000�0000000�00000001562�14753064456�0025104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.09 8.862a3.02 3.02 0 0 0-2.615-2.43l-.245-.03a1.66 1.66 0 0 1-1.453-1.645v-.856a2.028 2.028 0 1 0-1.602-.02v.874a3.263 3.263 0 0 0 2.855 3.236l.245.032c.764.096 1.144.66 1.246 1.155.1.495-.03 1.163-.698 1.55a2.6 2.6 0 0 1-1.055.337l-3.68.346a4.2 4.2 0 0 0-1.71.546 3.02 3.02 0 0 0-1.468 3.257 3.02 3.02 0 0 0 2.615 2.43l.245.032a1.66 1.66 0 0 1 1.453 1.644v.777a2.03 2.03 0 1 0 1.602.016v-.793a3.263 3.263 0 0 0-2.856-3.236l-.244-.032c-.764-.096-1.145-.66-1.246-1.155s.03-1.163.697-1.55a2.6 2.6 0 0 1 1.057-.337l3.68-.345a4.2 4.2 0 0 0 1.71-.546 3.02 3.02 0 0 0 1.467-3.258zm-2.653 4.708a6 6 0 0 1-.436.06l-1.543.147 1.93 2.119a3.47 3.47 0 0 1 .906 2.34H16.9a5.07 5.07 0 0 0-1.325-3.42zm-5.003-3.11a5 5 0 0 1 .546-.08l1.427-.136L9.469 8.12a3.47 3.47 0 0 1-.905-2.34H6.963c0 1.267.47 2.483 1.324 3.42z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/red.svg��������������������������������������0000664�0000000�0000000�00000000416�14753064456�0024376�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6.679V0L8.655 4.945Zm0 1.976v6.69l7.673-4L16.327 6.4zm0-1.976 3.345-1.734L12 0Zm8.655 6.133L12 17.322V24l12-6.242ZM12 24v-6.679l-8.655-4.509L0 17.758ZM4.327 11.345l7.673 4v-6.69L7.673 6.4Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/redash.svg�����������������������������������0000664�0000000�0000000�00000001506�14753064456�0025073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C6.775 0 2.546 4.238 2.546 9.455c0 4.971 3.842 9.05 8.727 9.423V24c3.405-3.49 5.837-6.072 7.307-7.756a9.5 9.5 0 0 0 1.532-1.93l.005-.006.007-.014a9.4 9.4 0 0 0 1.33-4.84C21.455 4.238 17.226 0 12 0m3.821 5.818h1.385c.337.001.611.25.612.558v6.157c-.001.308-.275.557-.612.558H15.82c-.337-.001-.611-.25-.612-.558V6.376c0-.307.275-.557.612-.558M9.297 7.921h1.386c.338 0 .611.25.613.558v4.054c-.002.308-.275.557-.613.558H9.297c-.337-.001-.61-.25-.61-.558V8.479c0-.308.273-.558.61-.558m3.222 1.534h1.396c.337 0 .61.25.61.558v2.52c0 .308-.273.557-.61.558h-1.396c-.338-.001-.612-.25-.613-.558v-2.52c.001-.308.275-.558.613-.558M6.067 10.71h1.396c.337.001.61.25.61.559v1.264c0 .308-.273.557-.61.558H6.067c-.338-.001-.611-.25-.612-.558v-1.264c0-.308.274-.558.612-.559"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/redbubble.svg��������������������������������0000664�0000000�0000000�00000001003�14753064456�0025543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.633 16.324h-3.199a.32.32 0 0 1-.32-.322V7.974a.32.32 0 0 1 .32-.32H16.4c2.226 0 2.693 1.31 2.693 2.408q0 .954-.504 1.511c.816.337 1.256 1.096 1.256 2.194 0 1.601-1.201 2.557-3.212 2.557m-4.644 0H5.345a.32.32 0 0 1-.32-.322V7.974a.32.32 0 0 1 .32-.32h3.103c1.939 0 3.096 1.043 3.096 2.791 0 1.163-.585 2.077-1.527 2.448l2.21 2.897a.322.322 0 0 1-.24.533M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12c6.628 0 12-5.373 12-12S18.63 0 12.001 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/redbull.svg����������������������������������0000664�0000000�0000000�00000021306�14753064456�0025256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.381 11.374c-.389 1.244-1.019 2.33-2.142 3.082l-.33.251-.264.236-.091.107-.025.041-.011.028-.004.016v.013l.001.009.002.007.002.006.005.007.002.002.01.008.012.007.011.004a.2.2 0 0 0 .046.006h.024c.178-.007.512-.141.629-.245l-.139.137-.164.149-.173.146-.18.141-.185.136-.197.134-.204.13-.206.123-.213.118-.223.115-.226.108-.225.1-.236.097-.045.018c-1.97.763-4.327.854-5.914-.44.353.344.787.728 1.199.98-.251-.043-.429-.237-.666-.311.004.008.575.751 2.282.946l.316.032.48.031.464.014.448-.009.44-.039.464-.084.401-.107.599-.181.294-.081.128-.033q.155-.04.333-.077l.041-.009c.073.031-.524.339-1.344.57-.361.132-.739.2-1.119.227l-.269.012-.216.001-.218-.005-.264-.015-.315-.027-.31-.034-.056-.007c-.401-.049-.781-.107-1.122-.143h-.006.006c.03.015.209.096 1.067.402-.061.022-.346.061-1.536-.448 2.417 1.392 4.988.759 7.266-.585l.352-.215.053-.034.294-.191.151-.103q.267-.182.526-.374c0 .009-.004.021-.004.031l.075.01c-.014.041-.014.041-.214.279.435-.351.659-.896 1.12-1.225-.236.473-.538.813-1.1 1.361q.049-.037.095-.078l.028-.026-.028.026a7.9 7.9 0 0 1-3.682 1.965q.19-.021.373-.073c-.22.061-.227.068-.32.099.058-.007.058-.007.358-.068-.175.086-.377.127-.865.226 2.806-.444 5.721-2.571 5.956-5.449a.14.14 0 0 1-.152-.143c.009-.562-.147-.982-.42-1.302-.163.58-.413 1.136-1.027 2.072-.26.393-.72.41-1.005.771l-.021-.013-.032-.028-.005-.003-.004-.002-.001-.001h-.003l-.007.001h-.003l-.001.001a.2.2 0 0 0-.058.051l.062-.07.067-.092.016-.031.005-.014.002-.01v-.01l-.001-.009-.001-.003-.002-.004-.001-.003-.003-.003-.005-.006-.009-.006-.04-.019-.006-.004-.004-.004-.002-.003-.002-.002-.002-.006v-.006l.001-.007.004-.011.023-.034.014-.016c.622-.687 1.192-1.306 1.438-2.228l.006-.021-.027.032c-.087.103-.147.147-.24.265l.11-.39.035-.127.065-.26.052-.225a1 1 0 0 0-.118-.055m-2.257 6.199a9 9 0 0 1-1.105.547c-.38.155-.768.279-1.152.354a10 10 0 0 0 2.257-.901m-6.505.203.051.02-.001-.012zm3.644-2.807c-.372-.201-.515-.63-.744-.945-.6-.62-.701-1.681-.858-2.549-.158-.843-.878-1.467-1.378-2.119-.443-.361-1.599-1.457-2.145-1.632-.72-.299-1.348.267-1.947.544-.487.201-1.002.258-1.432.63-.674.865-1.079.173-1.861.858-1.165 1.22-1.606.146-3.207 1.575-.429.257-.831.515-1.348.487-.823-.039-1.103-1.145-.459-1.633.449-.502 1.552-1.019 1.004-1.831-.57-.508-1.24-.292-1.918-.858-.313.49.087 1.155.601 1.318.211.131.701-.078.802.227-.217.434-.81.669-1.088 1.089-.693.8-.009 2.112.973 2.173.363.117.825-.179 1.06-.057.028.286 0 .544.057.802.027.282.348.584.172.858-.285.245-.654.37-1.03.347-.195.225-.228.48-.344.744-.142.258-.428.372-.629.487-.133.201-.265.424-.545.458-.171.201-.2.458-.257.716.716.19.87.094 1.26-.515.143-.143.344-.029.486 0 .407-.049.711-.321 1.003-.573 1.042-.272 1.032.41 2.233-.372.201-.086.287-.315.373-.487.1-.192.378-.562.028-.658-.899 1.819-2.464.338-3.665 1.715-.184.051-.041-.235 0-.287.862-1.256 2.823-.15 3.493-1.776.117-.25.051-1.247.343-1.232.029 0 .115.029.115.086-.278 1.214-.094 1.591 1.202 1.378.444-.128 1.716.325 1.69-.286 0-.114-.115-.171 0-.257.028-.029.114 0 .143.028.081.49.511.85.919 1.06.823.56.49 1.291-.459 1.26-.315-.172-.4-.487-.63-.745-.267-.234-.633-.122-.944-.057-.155.233.212.511.286.745.143.086.344-.058.458.114.115.171.172.344.344.458.496.476 1.532-.36 2.061-.401.463.051.674-.371.831-.716.261-.477-.434-.948-.487-1.374-.158-.044-.368-.167-.487 0 .088.213.579.993.544 1.231-.064.173-.21.572-.429.544.058-.2.144-.428.144-.658-.105-.245-.565-.953-.602-1.203.092-.242.562-.102.744-.344.201-.315.258-.629.316-1.03a.13.13 0 0 1 .086-.087c.279.18-.005 1.042-.172 1.232-.016.297.568.098.687 0 .221.046.67-.175.773-.029a1.55 1.55 0 0 0-.286.573c-.172.2-.458.344-.458.63.031.18.273-.11.286.114-.249.317-.218.394-.143.745.261.368.761.065 1.088-.028.552-.217 1.172.126 1.604-.459.116.01.222.074.286.172.319.335.769.513 1.231.487.188-.13-.222-.233-.286-.287-.201-.114-.459-.286-.516-.515-.075-.32-.306-.613-.458-.916.669.01.739 1.406 1.716 1.203.048-.033.043-.069.029-.115zm-16.866.687c-.339.139-.159.558-.371.773 0 .028-.058.086 0 .115.142.028.257.086.429.114.076-.256.15-.541.2-.773-.058-.086-.143-.2-.258-.229m17.317-.39c-.085.109-.274.115-.356.19a.12.12 0 0 0-.023.082.24.24 0 0 1-.073.242c-.087.094-.25.136-.397.126-.734.008-1.092-.351-1.392-.523-.41.265-.665.37-1.201.287-.315-.025-.596.134-.902.212.434.372 2.193.844 1.545.524-1.072-.607-.295-.203.645.019a7 7 0 0 0 1.625.2 8 8 0 0 0 2.427-1.279.3.3 0 0 1-.118-.021.2.2 0 0 1-.095-.081c-.031-.052-.048-.136.023-.251.074-.119.286-.327.734-.651l.004-.003c1.097-.736 1.71-1.8 2.088-3.015a4 4 0 0 0-.798-.2c-.405 1.006-.503 1.716-1.458 2.285-1.108.725-.414.539-.403.534q.13-.053.245-.132c-.429.689-1.174 1.129-2.063 1.327a.2.2 0 0 1-.057.128m-16.687.39c.2-.115.315-.315.401-.487-.062-.096-.136-.223-.286-.172q-.206.159-.429.287c-.072.194.107.439.315.372zm8.648-.63c.114.143.114.343.258.458a.62.62 0 0 0 .486-.143c.086-.057-.028-.143-.057-.229-.086-.115-.028-.344-.229-.344-.217.051-.455-.012-.659.057 0 .087.172.087.201.201m5.125-.344a1.7 1.7 0 0 1-.4.057h-.029c-.169-.156.184-.468.372-.458h.086c.105.044.078.32-.029.401m7.828-3.179c-.038.169-.078.328-.12.489a.142.142 0 0 1 .133.177c-.243.936-.807 1.571-1.433 2.262l.003.005c.1-.07.207-.127.313-.184.163-.088.326-.176.442-.351.632-.962.872-1.515 1.032-2.115q-.165-.159-.37-.283m-.948-2.516.117.073c1.725 1.116 2.457 3.197 1.833 4.905l.006-.005c.29-.834.408-1.718.349-2.599-.306-2.281-1.087-4.283-3.87-5.019 1.721.416 1.85.631 2.075.779-1.337-1.235-3.49-1.664-5.667-1.295 1.253-.404 3.303-.361 4.61.417l.031.019c-3.108-1.906-6.839-1.075-9.134 1.114.429.083.806.366 1.157.637l.109-.059.127-.064.131-.062.27-.119.281-.11.295-.105.306-.096.285-.079.323-.079.299-.064.273-.05.17-.027.17-.025.138-.018.172-.019c1.705-.182 3.539.045 4.907.946l.013.008a4.45 4.45 0 0 1 1.518 1.685c-.033.021-.065.016-.094-.001l-.038-.029-.108-.115-.02-.015c-.014-.005-.046-.036-.061-.043l-.209-.189-.248-.186-.266-.162-.044-.024c-.773-.418-1.714-.603-2.55-.779l-.051-.01.415.146.459.135.494.143.299.099.242.094.16.071.143.072.085.046zm-1.112 4.436c.186-.409.62-.629.762-1.123-.021.073.134.103.195.103.245-.042.251-.379.33-.449-.061.766-.578 1.393-1.144 1.912a.26.26 0 0 0-.244-.011c-.024-.144.286-.344.101-.432m-5.023-.402c-.032.056-.081.202-.143.201s-.089.009-.086-.057c-.005-.193-.036-.429-.201-.544-.374-.582-.468.147-.601.057-.08-.162.046-.345.115-.487.032-.038.044-.083.086-.114.061-.353.383-.152.458.057.197.245.429.521.401.802-.029-.029-.029.028-.029.085m-.549-3.278c-.217-.28-.442-.582-.683-.803 1.207-.431 3.157-.54 4.121-.577.228-.007.352-.022.403-.037a.2.2 0 0 0 .087-.052.14.14 0 0 0 .037-.115.15.15 0 0 0-.066-.11.6.6 0 0 0-.18-.059 8 8 0 0 0-1.056-.106h-.002c-.657 0-1.409.067-2.124.192q.383-.13.779-.209a.14.14 0 0 0 .114-.146.14.14 0 0 0-.128-.134c-.122-.013-.895.075-1.605.241-.485.113-.938.266-1.149.438l-.013.013q-.107-.09-.213-.176c1.546-.816 4.032-1.269 6.157-.782 1.178.269 2.246.83 2.973 1.785-.868-.665-2.087-.901-3.134-1.122a.142.142 0 0 0-.082.27c.762.303 1.566.393 2.28.798 1.572.902 2.381 2.603 2.161 4.159.016-.994-.449-1.573-1.164-1.938-2.191-.92-4.263.309-6 .558v-.014l-.003-.005c-.1-.215.937-.435 1.075-.518.082-.085.222-.056.315-.132.092-.091.23-.111.353-.135.323-.165.679-.219 1.039-.226.127.019.245-.052.372-.043a.35.35 0 0 1 .188-.03c.385-.029.779-.065 1.111-.299.035-.021.153-.086.053-.099-.629-.17-.932.26-1.506-.256.009-.022-.181-.103-.208-.103-.304.061-.589.197-.905.202-.144.032-.201-.04-.345-.04-.193.045-.46.169-.657.184-.092-.017-.542.218-.551.056h-.01c-.048-.182 2.822-1.254 1.641-.532.065.056.447-.105.807-.132.404-.086.941.211 1.118-.185-.007-.065-.162-.046-.2-.019-.077.042-.16.014-.241.032-.135.016-.66-.079-.779-.071-.095-.081.528-.064.583-.073.205-.031.452-.077.657-.115q.137-.016.274-.006c.186.044.684-.024.153-.153-.14-.027-.581-.041-.652-.019-.108.014-.576.153-.825.095-.225-.068.7-.106.59-.168-1.148-.145-2.457-.109-4.724 1q-.107-.133-.236-.284m-2.543.902c-.029.029-.058.029-.115.029-.077-.29-.104-.592-.258-.831-.08-.079-.184-.181-.115-.315a.14.14 0 0 1 .173-.029c.262.196.306.469.315.802.057.057.028.229 0 .344m1.73-1.808.213-.075.252-.076.266-.068.313-.068.36-.067.313-.049.37-.049.442-.05.467-.042.53-.036.414-.023.446-.018.194-.018.035-.008.013-.005.005-.003v-.001l.003-.002v-.001l.001-.004q0-.003-.004-.007l-.004-.003-.006-.003c-.113-.058-.879-.133-1.149-.136-1.19 0-2.697.224-3.712.611zm2.074-1.11.027.001a6.5 6.5 0 0 0-.867.238l-.496.169-.452.166-.341.132-.285.117-.209-.174c.434-.355 1.968-.598 2.491-.642zm3.546.188c.08.059.363.23.812.232a.14.14 0 0 0 .131-.086.14.14 0 0 0-.028-.154c-.09-.093-.249-.173-.434-.235-.245-.082-.537-.139-.734-.184a.14.14 0 0 0-.102.016.14.14 0 0 0-.068.083.14.14 0 0 0 .008.111c.01.021.039.059.094.09.075.041.234.099.321.127m-.287-.278q-.005-.006.003-.011c.302.069.834.165 1.057.344l.04.035a1.5 1.5 0 0 1-.438-.066l-.099-.035-.092-.042-.065-.037a.2.2 0 0 1-.05-.036h.001l-.277-.103-.043-.021a.1.1 0 0 1-.037-.028m.305.284.002.001z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/redcandlegames.svg���������������������������0000664�0000000�0000000�00000004102�14753064456�0026556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.387 3.168q.028.194.08.378l.004.02a3.3 3.3 0 0 0 .326.77l.014.025q.186.31.434.57a1.5 1.5 0 0 1 .631-1.212.21.21 0 0 1 .24 0c.393.28.627.73.63 1.211a3.2 3.2 0 0 0 .435-.569l.014-.025q.21-.358.327-.77l.005-.02q.048-.187.078-.378l.01-.065a4 4 0 0 0 .028-.41v-.012a3.29 3.29 0 0 0-1.326-2.64.215.215 0 0 0-.34.15 3.3 3.3 0 0 1-1.616 2.482l-.01.02q0 .21.027.41zM5.137 13.72a.205.205 0 0 0-.222.207l.003.344q0 1.602-.122 3.172a42 42 0 0 1-.49 3.973.204.204 0 0 0 .182.239q1.02.09 2.048.158a.466.466 0 0 0 .49-.383 42 42 0 0 0 .614-7.534l-.003-.003a82 82 0 0 1-2.5-.173m13.94.551.002-.344a.205.205 0 0 0-.22-.207q-1.246.106-2.501.171l-.004.003q-.015 1.89.133 3.74a42 42 0 0 0 .476 3.76c.045.253.272.43.528.415a85 85 0 0 0 2.015-.156.203.203 0 0 0 .183-.237 41 41 0 0 1-.49-3.973 42 42 0 0 1-.123-3.172m-6.48-6.908v.896c0 .229.186.414.415.413l.57-.008a88 88 0 0 0 2.83-.1.41.41 0 0 0 .384-.352q.075-.497.157-.992.079-.461.167-.922a.184.184 0 0 0-.19-.218q-.66.04-1.323.068c-.53.022-1.062.044-1.596.056q-.707.013-1.415.018zm-5.397.847a.41.41 0 0 0 .383.352q.515.026 1.03.045a78 78 0 0 0 2.396.063.41.41 0 0 0 .416-.413V6.224a83 83 0 0 1-1.417-.018c-.534-.012-1.065-.034-1.596-.056a74 74 0 0 1-1.347-.07.182.182 0 0 0-.19.217q.09.46.166.922.086.495.16.99m12.13 1.473q-1.371.12-2.745.198c-.42.024-.84.04-1.261.057a88 88 0 0 1-2.727.064c-.2.002-.398.008-.597.008-.193 0-.38-.006-.573-.008A89 89 0 0 1 8.7 9.938q-.645-.023-1.287-.056a83 83 0 0 1-3.77-.295.22.22 0 0 0-.238.248c.049.352.09.703.137 1.057.045.345.096.688.136 1.033a.46.46 0 0 0 .415.412q.39.038.784.07c.906.077 1.816.145 2.73.192.392.02.788.033 1.184.05q.012.643.016 1.292l.004.333a87 87 0 0 1-.533 9.412.22.22 0 0 0 .208.245q1.35.055 2.72.069a.22.22 0 0 0 .222-.221V12.704h1.17v11.071c0 .122.1.22.223.22q1.365-.012 2.719-.069a.22.22 0 0 0 .209-.245 82 82 0 0 1-.46-5.996 82 82 0 0 1-.074-3.415l.004-.333q.004-.648.016-1.292a75 75 0 0 0 1.16-.047 82 82 0 0 0 2.73-.192l.82-.074a.42.42 0 0 0 .374-.372c.041-.358.095-.713.142-1.07l.136-1.057a.22.22 0 0 0-.238-.248q-.515.053-1.028.097"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/reddit.svg�����������������������������������0000664�0000000�0000000�00000001672�14753064456�0025104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12c0 3.314 1.343 6.314 3.515 8.485l-2.286 2.286A.72.72 0 0 0 1.738 24H12c6.627 0 12-5.373 12-12S18.627 0 12 0m4.388 3.199a1.999 1.999 0 1 1-1.947 2.46v.002a2.37 2.37 0 0 0-2.032 2.341v.007c1.776.067 3.4.567 4.686 1.363a2.802 2.802 0 1 1 2.908 4.753c-.088 3.256-3.637 5.876-7.997 5.876-4.361 0-7.905-2.617-7.998-5.87a2.8 2.8 0 0 1 1.189-5.34c.645 0 1.239.218 1.712.585 1.275-.79 2.881-1.291 4.64-1.365v-.01a3.23 3.23 0 0 1 2.88-3.207 2 2 0 0 1 1.959-1.595m-8.085 8.376c-.784 0-1.459.78-1.506 1.797s.64 1.429 1.426 1.429 1.371-.369 1.418-1.385-.553-1.841-1.338-1.841m7.406 0c-.786 0-1.385.824-1.338 1.841s.634 1.385 1.418 1.385c.785 0 1.473-.413 1.426-1.429-.046-1.017-.721-1.797-1.506-1.797m-3.703 4.013c-.974 0-1.907.048-2.77.135a.222.222 0 0 0-.183.305 3.2 3.2 0 0 0 2.953 1.964 3.2 3.2 0 0 0 2.953-1.964.222.222 0 0 0-.184-.305 28 28 0 0 0-2.769-.135"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/redhat.svg�����������������������������������0000664�0000000�0000000�00000001176�14753064456�0025077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.009 13.386c1.577 0 3.86-.326 3.86-2.202a1.8 1.8 0 0 0-.04-.431l-.94-4.08c-.216-.898-.406-1.305-1.982-2.093-1.223-.625-3.888-1.658-4.676-1.658-.733 0-.947.946-1.822.946-.842 0-1.467-.706-2.255-.706-.757 0-1.25.515-1.63 1.576 0 0-1.06 2.99-1.197 3.424a.8.8 0 0 0-.028.245c0 1.162 4.577 4.974 10.71 4.974m4.101-1.435c.218 1.032.218 1.14.218 1.277 0 1.765-1.984 2.745-4.593 2.745-5.895.004-11.06-3.451-11.06-5.734a2.3 2.3 0 0 1 .19-.925C2.746 9.415 0 9.794 0 12.217c0 3.969 9.405 8.861 16.851 8.861 5.71 0 7.149-2.582 7.149-4.62 0-1.605-1.387-3.425-3.887-4.512"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/redhatopenshift.svg��������������������������0000664�0000000�0000000�00000001255�14753064456�0027015�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.665 11.812a11.1 11.1 0 0 0-1.08-3.966L24 6.599a11 11 0 0 0-.943-1.595l-1.601.583a11.015 11.015 0 0 0-19.945 7.258l1.604-.584q.077.924.305 1.822L0 15.335a11.2 11.2 0 0 0 1.721 3.731l1.812-.659c3.526 4.95 10.398 6.106 15.349 2.58a11 11 0 0 0 3.599-4.332 10.9 10.9 0 0 0 .991-5.497zm-4.74-2.635a7.18 7.18 0 0 1 .895 4.032l1.809-.657a7 7 0 0 1-.646 2.471 7.166 7.166 0 0 1-9.514 3.472 7.1 7.1 0 0 1-2.092-1.49l-1.813.66a7.2 7.2 0 0 1-1.903-3.667l3.426-1.242a7.1 7.1 0 0 1-.111-1.896H6.97l-1.604.583a7.14 7.14 0 0 1 10.156-5.929v-.006a7.1 7.1 0 0 1 2.082 1.483l1.599-.582.006.005c.441.454.82.965 1.128 1.518z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/redis.svg������������������������������������0000664�0000000�0000000�00000001272�14753064456�0024733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.71 13.145c-1.66 2.092-3.452 4.483-7.038 4.483-3.203 0-4.397-2.825-4.48-5.12.701 1.484 2.073 2.685 4.214 2.63 4.117-.133 6.94-3.852 6.94-7.239 0-4.05-3.022-6.972-8.268-6.972-3.752 0-8.4 1.428-11.455 3.685C2.59 6.937 3.885 9.958 4.35 9.626c2.648-1.904 4.748-3.13 6.784-3.744C8.12 9.244.886 17.05 0 18.425c.1 1.261 1.66 4.648 2.424 4.648.232 0 .431-.133.664-.365a101 101 0 0 0 5.54-6.765c.222 3.104 1.748 6.898 6.014 6.898 3.819 0 7.604-2.756 9.33-8.965.2-.764-.73-1.361-1.261-.73zm-4.349-5.013c0 1.959-1.926 2.922-3.685 2.922a4.45 4.45 0 0 1-2.235-.568c1.051-1.592 2.092-3.225 3.21-4.973 1.972.334 2.71 1.43 2.71 2.619"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/redmine.svg����������������������������������0000664�0000000�0000000�00000002725�14753064456�0025254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.092 15.088c.789.243 4.098 1.005 4.098 1.005.198.061.139.21.139.21-.228 1.798-.178 3.17-.178 3.644 0 .21-.153.18-.153.18H.168c-.209 0-.164-.19-.164-.19.04-.599.212-2.303.878-4.746 0 0 .033-.157.21-.103m21.816 0c-.789.243-4.098 1.005-4.098 1.005-.198.061-.139.21-.139.21.228 1.798.178 3.17.178 3.644 0 .21.153.18.153.18h4.83c.21 0 .164-.19.164-.19-.04-.599-.212-2.303-.878-4.746 0 0-.034-.157-.21-.103m-1.929-5.354-3.448 1.667c-.164.063-.082.212-.082.212.476 1.134.766 2.091.99 3.251.038.194.169.132.169.132l3.879-1.684s.116-.044.068-.193c-.172-.531-1.05-2.649-1.402-3.341 0 0-.062-.105-.174-.044m-17.958 0 3.448 1.667c.164.063.082.212.082.212a15.6 15.6 0 0 0-.991 3.251c-.037.194-.169.132-.169.132l-3.878-1.684s-.116-.044-.068-.193c.172-.531 1.05-2.649 1.402-3.341 0 0 .062-.105.174-.044m4.085-4.368 2.302 2.681c.099.128-.032.222-.032.222-.923.498-1.59 1.25-2.161 2.111-.114.17-.236.046-.236.046L4.062 8.242s-.126-.074-.016-.22c.854-1.134 1.63-1.934 2.871-2.689 0 0 .094-.089.189.033m9.788 0-2.302 2.681c-.099.128.032.222.032.222.923.498 1.59 1.25 2.161 2.111.114.17.236.046.236.046l2.917-2.184s.126-.074.016-.22c-.854-1.134-1.63-1.934-2.871-2.689 0 0-.094-.089-.189.033M12 7.661c.388 0 1.105.037 1.444.093.177.03.221-.088.221-.088l1.449-3.028s.097-.114-.106-.188c-1.082-.396-1.657-.578-3.008-.578-1.335 0-1.926.182-3.008.578-.203.074-.106.188-.106.188l1.449 3.028s.044.118.221.088c.339-.056 1.056-.093 1.444-.093"/></svg>�������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/redox.svg������������������������������������0000664�0000000�0000000�00000005641�14753064456�0024752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.694 6.05a.286.286 0 0 0-.258.241A5.72 5.72 0 0 0 .912 8.903H.91a.284.284 0 0 0-.386.263c0 .09.042.169.107.22A5.7 5.7 0 0 0 0 12c0 .942.227 1.83.631 2.614a.283.283 0 0 0 .281.484 5.72 5.72 0 0 0 4.524 2.611v.002a.284.284 0 0 0 .56-.002 5.71 5.71 0 0 0 4.522-2.611h.002a.285.285 0 0 0 .388-.264.3.3 0 0 0-.03-.127l-.015-.03-.029.017a2.4 2.4 0 0 1-.459.185l-.031.01.01.031a.3.3 0 0 0 .021.05 5.52 5.52 0 0 1-4.42 2.548v-.002a.283.283 0 0 0-.48.004 5.52 5.52 0 0 1-4.42-2.55l.001-.001a.284.284 0 0 0-.242-.418A5.5 5.5 0 0 1 .191 12a5.5 5.5 0 0 1 .623-2.55.284.284 0 0 0 .24-.42 5.52 5.52 0 0 1 4.42-2.55.283.283 0 0 0 .483 0 5.52 5.52 0 0 1 4.418 2.552.3.3 0 0 0-.035.134.285.285 0 0 0 .277.284 5.5 5.5 0 0 1 .465 1.232 2 2 0 0 1 .238.189 5.7 5.7 0 0 0-.52-1.484.28.28 0 0 0 .108-.22.285.285 0 0 0-.389-.265 5.71 5.71 0 0 0-4.523-2.609.285.285 0 0 0-.281-.244zm-.006 1.417a.29.29 0 0 0-.248.22 4.314 4.314 0 0 0-4.024 4.302c0 2.28 1.775 4.149 4.018 4.3a.284.284 0 0 0 .281.244.29.29 0 0 0 .281-.242 4.3 4.3 0 0 0 2.945-1.431 2 2 0 0 1-.187-.077 4.1 4.1 0 0 1-2.797 1.319.28.28 0 0 0-.242-.135.29.29 0 0 0-.24.133 4.118 4.118 0 0 1-.012-8.223v.003a.283.283 0 0 0 .506-.003 4.12 4.12 0 0 1 3.507 2.403 2 2 0 0 1 .204-.016 4.31 4.31 0 0 0-3.688-2.576v-.002a.285.285 0 0 0-.277-.219zM3.959 9.506v4.985h.496V9.957h.703q.765 0 1.147.182a.85.85 0 0 1 .389.367q.138.247.138.59 0 .825-.723 1.039-.342.096-1.146.096l1.682 2.26h.618l-1.398-1.862q.72-.076 1.096-.465.38-.391.379-1.06 0-.455-.185-.797a1.37 1.37 0 0 0-.532-.547q-.457-.254-1.431-.254Zm11.629 0v1.881a1.8 1.8 0 0 0-1.45-.676q-.552 0-1.004.254a1.86 1.86 0 0 0-.704.7 1.96 1.96 0 0 0-.254.99q0 .54.263.982a1.86 1.86 0 0 0 .721.692q.461.25 1.026.25.461 0 .786-.178.329-.178.616-.58v.67h.502V9.505Zm-5.891 1.205a1.9 1.9 0 0 0-.964.254 1.86 1.86 0 0 0-.692.695 1.9 1.9 0 0 0-.254.97q0 .4.152.763a1.9 1.9 0 0 0 .41.623 1.9 1.9 0 0 0 .624.412 2 2 0 0 0 .765.15 1.8 1.8 0 0 0 1.096-.357 1.95 1.95 0 0 0 .7-.947h-.522a1.3 1.3 0 0 1-.51.613 1.4 1.4 0 0 1-.777.23 1.42 1.42 0 0 1-.989-.378 1.31 1.31 0 0 1-.45-.928h3.339q0-.37-.05-.614a1.8 1.8 0 0 0-.17-.48 1.8 1.8 0 0 0-.702-.736 1.95 1.95 0 0 0-1.006-.27Zm9.008 0q-.814.018-1.35.551-.554.547-.554 1.387 0 .547.254.988a1.83 1.83 0 0 0 .709.692q.45.25 1.007.25.814 0 1.348-.547t.533-1.378q0-.549-.246-.994a1.77 1.77 0 0 0-.68-.695 1.9 1.9 0 0 0-.968-.254zm2.162.09 1.285 1.809-1.285 1.88h.567l1.001-1.48.99 1.48H24l-1.291-1.88L24 10.8h-.574l-.99 1.423-1.002-1.422zm-11.234.37q.031-.002.064 0 .537 0 .92.317.385.32.51.87H8.301q.101-.534.488-.86a1.34 1.34 0 0 1 .844-.328zm4.4 0q.035-.002.072 0 .634-.001 1.069.427.435.425.435 1.037 0 .614-.421 1.049-.423.435-1.016.434a1.453 1.453 0 0 1-1.488-1.475q0-.614.413-1.041.39-.406.936-.432m4.611 0q.037-.002.075 0 .626-.002 1.027.42.402.418.402 1.071 0 .636-.392 1.047-.39.408-.998.408-.626 0-1.037-.413-.412-.416-.412-1.05 0-.639.402-1.06a1.32 1.32 0 0 1 .933-.423z"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/redragon.svg���������������������������������0000664�0000000�0000000�00000004640�14753064456�0025430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.995 4.077v.06A11 11 0 0 1 16.22 8.42c.605 2.167.876 4.414.805 6.662a1 1 0 0 1 0 .113 6.3 6.3 0 0 0-.721-1.846 4.4 4.4 0 0 0-1.367-1.45c.025.064.059.113.059.168a7 7 0 0 1 .528 2.245 4.7 4.7 0 0 1-1.076 3.41 1.4 1.4 0 0 0-.113.203l-.069-.065a3.95 3.95 0 0 0-.138-2.374c-.578 2.216-2.068 3.538-4.047 4.437 2.404-.01 4.723-.375 6.697-1.856.015.533-.148.958-.696 1.841 1.673-.839 2.403-2.23 2.586-4.012.45.536.755 1.178.888 1.866.128.656.192 1.327.286 1.974.71-1.747.686-3.593.444-5.512 2.137 1.248 3.02 3.266 3.701 5.428a25 25 0 0 0-.133-3.494c-.17-1.698-.59-3.36-1.248-4.935a11.84 11.84 0 0 0-6.638-6.583 8.8 8.8 0 0 0-1.973-.563m-2.734.11c-.306.522-.587 1.06-.933 1.539a18 18 0 0 1-1.14 1.524 1.31 1.31 0 0 1-.943.43l.445-2.083a.6.6 0 0 0-.143.188c-.3.46-.592.928-.908 1.372a.63.63 0 0 1-.726.247c-.493-.144-.987-.282-1.48-.44a.26.26 0 0 0-.326.08A18 18 0 0 1 3.785 8.42c-1.076.953-2.24 1.746-3.785 1.638v.065c.434 1.026.864 2.053 1.318 3.074a1.65 1.65 0 0 0 .69.74 12 12 0 0 1-.183-1.283c-.024-.523.094-.617.617-.667a.17.17 0 0 1 .203.129c.074.187.163.37.246.558.104-.227.193-.44.296-.642a.3.3 0 0 1 .149-.133c.222-.094.45-.168.686-.257l.177.356c.153-.35.296-.696.46-1.037a.375.375 0 0 1 .468-.173v.242a4.93 4.93 0 0 0 .493 2.626 4.2 4.2 0 0 1 .281 1.046c.04.162-.043.257-.196.257l-.4.044a1.7 1.7 0 0 1 .27.247c.075.094.179.27.144.32a.9.9 0 0 1-.39.267.54.54 0 0 1-.315 0 10 10 0 0 1-.81-.272 4 4 0 0 1-.414-.212l-.08.094.716.612a1.55 1.55 0 0 0 1.24.41.987.987 0 0 0 .986-.988c.045-.306.005-.616.045-.922a2.7 2.7 0 0 1 .927-1.974 2.56 2.56 0 0 0-1.214.74 6.4 6.4 0 0 1-.079-1.135 1.545 1.545 0 0 1 1.402-1.653 21 21 0 0 1 1.648-.281c.805-.08 1.599-.246 2.369-.494a4.4 4.4 0 0 0 1.406-.794 18 18 0 0 1-2.872.38 8.88 8.88 0 0 0 3.4-4.777c-1.056 1.48-2.202 2.867-3.87 3.701a22.7 22.7 0 0 0 1.447-4.086zM5.443 8.07c-.03.153-.054.305-.094.454-.074.29-.163.577-.237.868a.197.197 0 0 1-.198.178c-.384.045-.764.103-1.183.157zM9.4 10.775a4 4 0 0 0-.577.053 2.9 2.9 0 0 0-1.48.523.99.99 0 0 0-.43.923 1.1 1.1 0 0 1 .972-.671 3.07 3.07 0 0 1 1.762.34c.49.234.772.76.696 1.298a2.34 2.34 0 0 1-.687 1.377 5.8 5.8 0 0 1-1.914 1.308 9.7 9.7 0 0 0-2.32 1.41 3.95 3.95 0 0 0-1.396 2.567h5.921a2.023 2.023 0 0 1 .987-2.551l-.26 1.115a5.43 5.43 0 0 0 1.243-2.665c.171.407.245.848.216 1.288a5.6 5.6 0 0 0 .44-2.866l.518.561c-.049-.4-.09-.755-.134-1.11a3.1 3.1 0 0 0-1.865-2.585 4.2 4.2 0 0 0-1.692-.315"/></svg>������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/redsys.svg�����������������������������������0000664�0000000�0000000�00000001407�14753064456�0025136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.626 24c-3.989-.108-7.476-2.03-9.89-5.873A10.9 10.9 0 0 1 .17 13.959a12.4 12.4 0 0 1 .239-4.996c.44-1.711 1.275-3.197 2.339-4.58.075-.099.169-.263.314-.174.098.061.023.207-.019.324-.473 1.36-.46 2.756.225 3.984.783 1.411 1.964 2.438 3.67 2.705 1.636.258 3.07-.211 4.21-1.317 1.378-1.34 1.95-2.99 1.415-4.946-.285-1.036-.768-1.922-1.612-2.578-1.092-.848-2.33-1.26-3.722-1.12-.098.01-.225.08-.267-.056s.103-.14.187-.178A11.9 11.9 0 0 1 12.071 0c1.74.01 3.427.384 5.006 1.125 2.152 1.008 3.91 2.498 5.133 4.552a12.4 12.4 0 0 1 1.688 4.93c.154 1.313.08 2.584-.188 3.863-.333 1.575-.942 3.028-1.875 4.34-.853 1.2-1.851 2.241-3.103 3.052-.998.647-2.025 1.177-3.16 1.538-1.115.356-2.245.544-3.946.595z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/redux.svg������������������������������������0000664�0000000�0000000�00000002565�14753064456�0024762�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.634 16.504c.87-.075 1.543-.84 1.5-1.754-.047-.914-.796-1.648-1.709-1.648h-.061a1.71 1.71 0 0 0-1.648 1.769c.03.479.226.869.494 1.153-1.048 2.038-2.621 3.536-5.005 4.795-1.603.838-3.296 1.154-4.944.93-1.378-.195-2.456-.81-3.116-1.799-.988-1.499-1.078-3.116-.255-4.734.6-1.17 1.499-2.023 2.099-2.443a10 10 0 0 1-.42-1.543C-.868 14.408-.416 18.752.932 20.805c1.004 1.498 3.057 2.456 5.304 2.456.6 0 1.23-.044 1.843-.194 3.897-.749 6.848-3.086 8.541-6.532zm5.348-3.746c-2.32-2.728-5.738-4.226-9.634-4.226h-.51c-.253-.554-.837-.899-1.498-.899h-.045c-.943 0-1.678.81-1.647 1.753.03.898.794 1.648 1.708 1.648h.074a1.69 1.69 0 0 0 1.499-1.049h.555c2.309 0 4.495.674 6.488 1.992 1.527 1.005 2.622 2.323 3.237 3.897.538 1.288.509 2.547-.045 3.597-.855 1.647-2.294 2.517-4.196 2.517-1.199 0-2.367-.375-2.967-.644-.36.298-.96.793-1.394 1.093 1.318.598 2.652.943 3.94.943 2.922 0 5.094-1.647 5.919-3.236.898-1.798.824-4.824-1.47-7.416zM6.49 17.042c.03.899.793 1.648 1.708 1.648h.06a1.69 1.69 0 0 0 1.648-1.768c0-.9-.779-1.647-1.693-1.647h-.06c-.06 0-.15 0-.226.029-1.243-2.098-1.768-4.347-1.572-6.772.12-1.828.72-3.417 1.797-4.735.9-1.124 2.593-1.68 3.747-1.708 3.236-.061 4.585 3.971 4.689 5.574l1.498.45C17.741 3.197 14.686.62 11.764.62 9.02.62 6.49 2.613 5.47 5.535 4.077 9.43 4.991 13.177 6.7 16.174c-.15.195-.24.539-.21.868"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/reduxsaga.svg��������������������������������0000664�0000000�0000000�00000003576�14753064456�0025621�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.871 4.678a3.3 3.3 0 0 0-1.953.631C4.455 6.35 3.724 8.235 3.534 10.007c-.204 1.938.23 4.166 1.398 5.638-.194.57.193 1.202.793 1.268a.975.975 0 0 0 1.06-.713c.197-.66-.425-1.342-1.13-1.189-.982-1.321-1.29-3.038-1.186-4.653.125-1.576.683-3.255 1.985-4.245.81-.602 1.828-.622 2.65-.075 1.107.742 1.763 2.132 1.97 3.43l.51.199.551.288c-.198-1.888-1.097-3.866-2.576-4.774a3.15 3.15 0 0 0-1.688-.503m9.515 3.946a8.8 8.8 0 0 0-3.056.526.97.97 0 0 0-1.246.27c-.394.505-.162 1.297.475 1.495.615.211 1.29-.284 1.265-.918a7.8 7.8 0 0 1 2.839-.403c1.575.07 3.665.654 4.626 2.148.076.119.165.404.521.4a.484.484 0 0 0 .422-.7c-.526-.99-1.522-1.725-2.636-2.194-.984-.412-2.095-.62-3.21-.624m-11.06.717c-.455-.003-.93.296-.979.933.012 1.233 1.657 1.33 1.912.24 1.887-.271 3.894.584 5.3 1.717.973.77 1.852 1.993 2.072 3.083.162.071.61.265 1.002.306-.146-1.638-1.215-3.101-2.452-4.127-1.568-1.33-4.123-2.328-6.218-1.903a.9.9 0 0 0-.636-.249zm-3.418 1.86c-.866.609-1.65 1.36-2.185 2.282C.008 14.668-.312 16.24.4 17.499c.66 1.218 2.082 1.78 3.41 1.812a7.3 7.3 0 0 0 2.265-.297c2.104-.59 4.373-2.222 5.274-4.362a.96.96 0 0 0 .79-.705c.2-.72-.463-1.372-1.169-1.191-.686.175-.966 1.012-.522 1.54-.607 1.389-1.8 2.449-3.112 3.161-1.493.804-3.306 1.188-4.758.659-.93-.304-1.642-1.13-1.618-2.215 0-1.297.924-2.677 2.062-3.573-.118-.538-.107-.74-.114-1.128zm20.103 1.53a.94.94 0 0 0-.672.292c-.344.327-.364.902-.092 1.248-.546.823-1.508 1.384-2.455 1.706-1.855.613-4.111.503-5.798-.38a4.5 4.5 0 0 1-.99-.674c-.141-.128-.183-.157-.296-.188-.5-.105-.783.486-.457.808 1.269 1.189 3.037 1.706 4.744 1.777.664.024 1.33-.02 1.983-.14 1.622-.302 3.318-1.107 4.168-2.521.639-.072 1.038-.775.769-1.344a.96.96 0 0 0-.904-.584m-8.746 4.514c-.83 1.12-2.646 1.45-4.75.723-.19.13-.302.214-.433.3-.13.087-.29.17-.607.366 2.558 1.032 5.444 1.076 6.739-1.082a3.4 3.4 0 0 1-.949-.307"/></svg>����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/redwoodjs.svg��������������������������������0000664�0000000�0000000�00000003101�14753064456�0025616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6.989 3.47 4.66 3.181c.105.07.228.108.354.111a.63.63 0 0 0 .354-.111l4.664-3.192a.637.637 0 0 0-.089-1.087L12.272.065a.64.64 0 0 0-.56 0L7.067 2.372a.636.636 0 0 0-.078 1.098m6.597 4.179c0 .211.104.408.276.528l3.736 2.553a.63.63 0 0 0 .776-.05l3.134-2.803a.637.637 0 0 0-.028-.973l-2.992-2.393a.635.635 0 0 0-.751-.029l-3.874 2.65a.64.64 0 0 0-.277.517m-9.291 3.474a.64.64 0 0 1 .209.538.63.63 0 0 1-.315.485l-2.231 1.337a.63.63 0 0 1-.718-.049.64.64 0 0 1-.21-.693l.825-2.596a.63.63 0 0 1 1.023-.281zm12.1.271-4.033-2.76a.63.63 0 0 0-.708 0l-4.033 2.76a.65.65 0 0 0-.276.485.66.66 0 0 0 .212.521l4.03 3.605a.635.635 0 0 0 .842 0l4.03-3.605a.647.647 0 0 0-.064-1.006m-10.758-.713-3.13-2.803a.65.65 0 0 1-.213-.503.63.63 0 0 1 .237-.481l2.992-2.407a.64.64 0 0 1 .754-.029l3.87 2.65a.64.64 0 0 1 0 1.07l-3.732 2.553a.63.63 0 0 1-.778-.05m16.073 4.026-3.187-1.908a.63.63 0 0 0-.744.071l-3.895 3.477a.64.64 0 0 0-.204.587.64.64 0 0 0 .388.483l5.404 2.19a.634.634 0 0 0 .815-.332l1.675-3.752a.64.64 0 0 0-.252-.816m.442-4.561.825 2.596h-.007a.635.635 0 0 1-.927.742l-2.234-1.337a.62.62 0 0 1-.305-.485.63.63 0 0 1 .209-.538l1.416-1.262a.63.63 0 0 1 1.023.284m-11.82 6.786a.64.64 0 0 0-.202-.585L6.235 12.87a.63.63 0 0 0-.744-.071l-3.187 1.908a.65.65 0 0 0-.255.813l1.678 3.752a.63.63 0 0 0 .814.332l5.4-2.19a.64.64 0 0 0 .391-.482m1.912 1.07 4.334 1.755c.212.091.358.29.382.521a.64.64 0 0 1-.269.596l-4.338 3.013A.63.63 0 0 1 12 24a.64.64 0 0 1-.354-.114l-4.334-3.013a.635.635 0 0 1 .124-1.117l4.334-1.755a.64.64 0 0 1 .474.001"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/reebok.svg�����������������������������������0000664�0000000�0000000�00000000723�14753064456�0025074�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.991 11.48c2.753-1.1 4.467-1.732 9.009-2.84-2.467.163-7.922.537-11.682 1.271l2.673 1.57m-8.56 3.651h3.6c.713-1.08 1.422-1.606 2.248-2.191a71 71 0 0 0-1.892-.701c-2.297 1.014-3.575 2.375-3.953 2.892m.709-3.928c-3.21 1.147-4.994 2.393-6.199 3.928h3.975c.387-.539 1.862-2.093 4.633-3.174a57 57 0 0 0-2.41-.754M8.79 8.788H0c8.862 1.6 13.133 3.66 20 6.572-.587-.439-10.051-6.013-11.209-6.572"/></svg>���������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/refine.svg�����������������������������������0000664�0000000�0000000�00000000460�14753064456�0025073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.789.422a4 4 0 0 0-3.578 0l-8 4A4 4 0 0 0 0 8v8c0 1.515.856 2.9 2.211 3.578l8 4a4 4 0 0 0 3.578 0l8-4A4 4 0 0 0 24 16V8c0-1.515-.856-2.9-2.211-3.578zM8 8a4 4 0 0 1 8 0v8a4 4 0 0 1-8 0zm6 0a2 2 0 1 1-3.999.001A2 2 0 0 1 14 8"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/refinedgithub.svg����������������������������0000664�0000000�0000000�00000005567�14753064456�0026457�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.906.614a3.4 3.4 0 0 0-.896.127c-.955.262-1.824.76-2.646 1.302a13.7 13.7 0 0 0-6.807-.002A11 11 0 0 0 6.71 1.016C6.136.78 5.526.585 4.899.622c-.113.01-.263.013-.315.135a5.8 5.8 0 0 0-.422 1.737 4.8 4.8 0 0 0 .223 1.923 5.4 5.4 0 0 0-1.36 3.053c-.05.453-.036.91-.015 1.365-.934-.237-1.93-.278-2.867-.035-.11.025-.174.16-.128.261.036.092.146.14.238.111.912-.232 1.881-.177 2.783.074q.045.412.107.821c-.798-.196-1.635-.093-2.42.11-.14.033-.18.238-.071.328.083.08.205.04.303.015.74-.18 1.536-.258 2.275-.027.072.248.13.5.226.741l.316.715c.321.63.806 1.167 1.365 1.596a6.8 6.8 0 0 0 1.73.942c.727.277 1.49.449 2.258.571a3.3 3.3 0 0 0-.376.498 3.2 3.2 0 0 0-.335.795c-.43.007-.865.05-1.288-.045a1.95 1.95 0 0 1-.864-.452 3.6 3.6 0 0 1-.62-.739 1 1 0 0 0-.618-.43.73.73 0 0 0-.57.11.67.67 0 0 0-.256.406c-.051.221-.011.452.059.665.122.365.351.687.626.954.485.467 1.089.799 1.726 1.006.535.17 1.112.257 1.667.143-.003.99.003 1.979-.003 2.968-.024.232-.134.45-.28.628-.1.128-.23.231-.377.301-.128.056-.268.102-.362.212a.43.43 0 0 0-.097.422.41.41 0 0 0 .265.25c.148.05.306.039.46.036.45-.013.907-.1 1.306-.318.55-.294.95-.897.925-1.532-.002-.679-.022-1.357-.032-2.036-.003-.385-.018-.771.016-1.155.028 1.009.034 2.019.054 3.028.002.324-.001.654-.09.97a1.8 1.8 0 0 1-.365.682c-.098.12-.226.22-.295.362-.06.114-.07.26.001.37.084.143.254.197.409.22.33.041.657-.073.95-.218a2.16 2.16 0 0 0 .86-.783c.209-.338.308-.736.316-1.13.01-.584.008-1.167.017-1.75.035-.297.021-.596.028-.894.005.175.003.35.004.525-.027.534-.003 1.07-.004 1.604.01.31-.013.624.049.93.062.324.195.636.398.897.234.3.551.53.902.678.294.123.63.204.943.105.156-.044.296-.18.3-.35.003-.169-.105-.312-.22-.427a1.87 1.87 0 0 1-.524-1.36V18.47c.004-.27-.012-.54.014-.809.049.405.034.814.033 1.22.004.733-.003 1.466.004 2.2.015.41.18.822.48 1.108.346.337.824.5 1.295.565q.36.05.719.026c.182-.016.37-.137.408-.324.039-.176-.059-.355-.2-.457-.093-.075-.215-.095-.318-.153-.292-.16-.5-.451-.588-.77-.045-.138-.022-.284-.028-.426.001-.89-.007-1.782.008-2.672.483.097.983.043 1.455-.084a4.6 4.6 0 0 0 1.794-.94c.334-.29.618-.651.761-1.073.068-.205.11-.426.068-.641a.7.7 0 0 0-.233-.414.72.72 0 0 0-.583-.137 1 1 0 0 0-.632.431c-.206.314-.445.612-.744.841a1.9 1.9 0 0 1-.718.346c-.43.103-.876.059-1.314.051a3.9 3.9 0 0 0-.72-1.269c-.032-.022.018-.042.036-.041 1.228-.18 2.453-.528 3.514-1.188a5.15 5.15 0 0 0 1.638-1.593 3 3 0 0 0 .21-.383c.096-.214.203-.423.285-.644a8 8 0 0 0 .218-.725c.661-.228 1.38-.193 2.057-.057q.187.037.375.084c.07.017.154.017.21-.036.104-.084.073-.278-.054-.323-.81-.218-1.677-.314-2.5-.104a9 9 0 0 0 .109-.792c0-.031.038-.032.06-.041.903-.252 1.874-.306 2.788-.073.12.038.227-.057.263-.165v-.037c-.031-.073-.074-.156-.16-.173-.956-.246-1.971-.197-2.92.052.038-.68.033-1.37-.125-2.037a5.5 5.5 0 0 0-1.251-2.399c.386-1.133.283-2.39-.134-3.499-.04-.105-.07-.249-.204-.27q-.15-.03-.3-.032"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/relay.svg������������������������������������0000664�0000000�0000000�00000000674�14753064456�0024746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.264 4.937A2.264 2.264 0 1 0 4.456 7.77h10.339c.988 0 1.791.803 1.791 1.791s-.803 1.792-1.791 1.792h-5.73a3.037 3.037 0 0 0-3.034 3.033 3.036 3.036 0 0 0 3.033 3.033h10.494a2.264 2.264 0 1 0 0-1.242H9.064a1.793 1.793 0 0 1-1.791-1.791c0-.988.803-1.792 1.791-1.792h5.73a3.036 3.036 0 0 0 3.034-3.033 3.036 3.036 0 0 0-3.033-3.033H4.427a2.265 2.265 0 0 0-2.163-1.592"/></svg>��������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/relianceindustrieslimited.svg����������������0000664�0000000�0000000�00000001403�14753064456�0031065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.65 18.44c.717-1.506 1.356-3.046 1.661-4.787.119 1.818 1.2 3.435 1.72 5.177.199.842.214 1.714-.107 2.584-.349.948-.911 1.759-1.582 2.488C7.528 21.936 6.97 20.11 7.65 18.44m11.547 3.765c-.825.623-1.902.716-2.744.311 0 0-.229-.093-.439-.34-1.6-1.868-3.215-3.725-4.828-5.583 1.431.264 3-.438 3.805-1.712.81-1.212.777-2.942.016-4.154-.916-1.324-2.695-1.758-4.19-1.555-2.588.373-4.447 2.722-5.026 5.182-.595 2.799-.166 5.44.761 7.932a6.9 6.9 0 0 0 .856 1.538c-2.727-1.215-5.137-3.45-6.402-6.457-1.4-3.232-1.372-7.324.294-10.606C2.608 4.225 4.923 1.876 7.789.884c1.157-.49 2.47-.746 3.81-.786h.716c1.91.057 3.838.55 5.435 1.466 3.548 1.807 6.232 6.3 6.244 10.314.123 4.153-1.674 7.915-4.797 10.327"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/remark.svg�����������������������������������0000664�0000000�0000000�00000001333�14753064456�0025104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.204 18.089V12.66q0-2.477 1.156-3.947t3.108-1.47q.494 0 1.03.092.54.088.953.245V5.976q-.279-.122-.754-.195-.478-.073-1.007-.073-1.76 0-2.902.88-1.144.881-1.458 2.497h-.157V6.01H0v1.186h2.737V18.09Zm-3.959 0H8.04v-1.187H.245ZM19.1 7.109q1.604 0 2.507 1.095.904 1.091.904 3.02H15.6q0-1.94.93-3.027t2.569-1.088zm4.846 7.998h-1.458q-.28.884-1.133 1.378-.854.494-2.087.494-1.68 0-2.676-1.114-.991-1.118-.991-3.013v-.414H24v-.953q0-1.807-.578-3.074-.574-1.267-1.67-1.933-1.094-.67-2.652-.67-1.493 0-2.615.658-1.118.655-1.738 1.838-.617 1.183-.617 2.775v1.761q0 2.58 1.352 4.016 1.351 1.436 3.786 1.436 1.221 0 2.205-.394.98-.39 1.627-1.11.643-.717.846-1.681"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/remedyentertainment.svg����������������������0000664�0000000�0000000�00000000747�14753064456�0027716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.717 5.245v6.613a3.31 3.31 0 0 0 3.306-3.307 3.31 3.31 0 0 0-3.306-3.306m-4.594 0h-3.45v6.613h3.455a3.31 3.31 0 0 0 3.306-3.307 3.31 3.31 0 0 0-3.311-3.306m11.448 9.915v-1.507a8.6 8.6 0 0 1-2.714 2.379l2.714 4.792v-2.878L24 24h-7.574l-2.709-4.789V24h-1.656l-3.907-6.897H5.673V24H0V0h9.123a8.5 8.5 0 0 1 4.589 1.337V0a8.55 8.55 0 0 1 6.859 3.441V1.939a8.53 8.53 0 0 1 3.133 6.612 8.52 8.52 0 0 1-3.133 6.609"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/remix.svg������������������������������������0000664�0000000�0000000�00000000713�14753064456�0024750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.511 18.508c.216 2.773.216 4.073.216 5.492H15.31c0-.309.006-.592.011-.878.018-.892.036-1.821-.109-3.698-.19-2.747-1.374-3.358-3.55-3.358H1.574v-5H11.97c2.748 0 4.122-.835 4.122-3.049 0-1.946-1.374-3.125-4.122-3.125H1.573V0h11.541c6.221 0 9.313 2.938 9.313 7.632 0 3.511-2.176 5.8-5.114 6.182 2.48.497 3.93 1.909 4.198 4.694M1.573 24v-3.727h6.784c1.133 0 1.379.84 1.379 1.342V24Z"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/removedotbg.svg������������������������������0000664�0000000�0000000�00000000571�14753064456�0026143�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.729 13.55-1.903-.995-9.134 4.776a1.5 1.5 0 0 1-1.383.002l-9.137-4.778-1.903.995a.5.5 0 0 0 0 .888l11.499 6.011a.5.5 0 0 0 .462 0l11.499-6.011a.5.5 0 0 0 0-.888M.269 10.447l11.499 6.013a.5.5 0 0 0 .462 0l11.499-6.013a.5.5 0 0 0 0-.887l-11.5-6.012a.5.5 0 0 0-.462 0L.268 9.559a.5.5 0 0 0 .001.887z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/renault.svg����������������������������������0000664�0000000�0000000�00000000460�14753064456�0025275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.463 11.99-4.097-7.692-.924 1.707 3.213 5.985-5.483 10.283L4.69 11.99 11.096 0H9.27L2.882 11.99 9.269 24h1.807zm3.655 0L14.711 0h-1.807L6.517 11.99l4.117 7.712.904-1.707-3.193-6.005 5.463-10.263L19.29 11.99 12.904 24h1.807Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/render.svg�����������������������������������0000664�0000000�0000000�00000000525�14753064456�0025104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.263.007c-3.121-.147-5.744 2.109-6.192 5.082-.018.138-.045.272-.067.405-.696 3.703-3.936 6.507-7.827 6.507a7.9 7.9 0 0 1-3.825-.979.202.202 0 0 0-.302.178V24H12v-8.999c0-1.656 1.338-3 2.987-3h2.988c3.382 0 6.103-2.817 5.97-6.244-.12-3.084-2.61-5.603-5.682-5.75"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/renovate.svg���������������������������������0000664�0000000�0000000�00000003603�14753064456�0025450�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.598 0A1.7 1.7 0 0 0 6.37.465a1.71 1.71 0 0 0-.072 2.421l.002.002L8.91 5.65a.623.623 0 0 1-.025.891.625.625 0 0 1-.89-.027l-1.26-1.332a1.727 1.727 0 0 0-2.428-.073 1.71 1.71 0 0 0-.075 2.422v.002l1.88 1.988a.626.626 0 0 1-.026.891.623.623 0 0 1-.89-.027h-.003l-.685-.729-.014-.02a1.73 1.73 0 0 0-2.427-.073 1.71 1.71 0 0 0-.074 2.423l2.253 2.444.006.008.352.363q.004-.06.013-.117a1.75 1.75 0 0 0 .488 1.47l.141.143 1.29 1.28c.68.68 1.795.68 2.474 0l.523-.522 1.588-1.582 1.102-1.09 1.77-1.766 2.532-2.52v-.003a1.745 1.745 0 0 0 0-2.463l-.443-.442a1.295 1.295 0 0 1 1.576.202l1.057 1.054c.904.905.905 2.353.002 3.248v.002l-3.496 3.48h-.002c-.56.56-.56 1.477.004 2.03l.504.498-.676.674a.51.51 0 0 0-.031.69l.15.185h.008l2.488-2.49-.184-.15a.52.52 0 0 0-.357-.116.53.53 0 0 0-.334.15l-.648.647-.51-.504h-.002a.84.84 0 0 1 .004-1.201l3.494-3.48a2.88 2.88 0 0 0 .002-4.075l-1.06-1.056a1.88 1.88 0 0 0-1.33-.55c-.38 0-.76.116-1.083.343l-.564-.563a1.74 1.74 0 0 0-1.237-.508v-.002a2 2 0 0 0-.205.014l-.937-1.03-.008-.005-1.28-1.358L8.8.538A1.73 1.73 0 0 0 7.6.002ZM7.58.635a1.08 1.08 0 0 1 .756.344l2.63 2.778 1.278 1.353.744.82a1.7 1.7 0 0 0-.367.278l-3.91 3.895-3.606 3.587a1.8 1.8 0 0 0-.308.426l.01-.021-.094-.098-2.253-2.443-.004-.002a1.063 1.063 0 0 1 .042-1.522l.004-.002a1.08 1.08 0 0 1 1.527.041l.002.012.701.74a1.27 1.27 0 0 0 1.79.057 1.27 1.27 0 0 0 .056-1.79h-.002l-1.88-1.989v-.002a1.06 1.06 0 0 1 .042-1.522 1.08 1.08 0 0 1 1.533.045l1.256 1.33a1.27 1.27 0 0 0 1.791.057 1.27 1.27 0 0 0 .055-1.79h-.002l-2.61-2.763a1.06 1.06 0 0 1 .042-1.52A1.08 1.08 0 0 1 7.58.635m6.277 5.696c.143 0 .285.03.418.084a1.1 1.1 0 0 0-.418-.084m.44.096q.19.08.346.232a1.1 1.1 0 0 0-.346-.232m-9.52 7.732a1.8 1.8 0 0 0-.154.473 1.7 1.7 0 0 1 .154-.473m13.397 3.037-2.557 2.557 2.848 3.435q.065.075.14.15c.875.873 2.317.89 3.206 0a2.25 2.25 0 0 0-.152-3.33z"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/renpy.svg������������������������������������0000664�0000000�0000000�00000025643�14753064456�0024772�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.166 0S6.908 1.035 6.25 4.744c-1.365.903-2.056 1.624-2.06 1.916 0 .023.02.042.031.063.115-.054 5.565-2.614 9.422-2.967a8 8 0 0 1 .707-.03c1.8-.007 4.532.365 4.569.37-.063-.269-1.722-1.02-2.817-1.217C13.504.009 10.166 0 10.166 0m8.754 4.096c-.039-.003-3.665-.261-5.342-.096-3.94.388-9.242 2.675-9.356 2.725.16.27 1.288.38 1.848.384-.085 1.63-.804 4.532-.674 4.553.09.014.295-.547.295-.547s-.105.322-.201.692c.404-.02.597-.04.851-.018.057.005.143.01.184.078.134-.26.137-.494.137-.494s.056.211.043.494c.096-.082.209-.316.209-.316s-.009.201-.018.324c.08.048.213.033.213.033a7 7 0 0 1-.092.592c-.062.312-.16.488-.4.803-.297.002-.617.244-.748.57-.02.17.246.37.246.37l-.39 1.896a1.74 1.74 0 0 0-.583.937s-.078.912-.013 1.23c.04.202 1 .846 1.671.89.397.025 1.19-.618 1.19-.618l.506-.049c.276.346.528.441.931.553l.11.34s-.182.149-.182.26c0 .11.197.214.197.214s-1.108.156-1.074 1.53c.018.728 1.01 1.074 1.824 1.105.855.033 2.012-.513 2.012-.513s.184.066.412.048c.262-.02.549-.205.549-.205s-.426.331-.436 1.268c-.002.25.172.537.364.7.114.095.3.17.412.171.173.001-.359-.495-.375-.813-.028-.541.69-.626 1.135-.626.471-.001 1.812.614 2.82.626 1.57.02 2.583-1.212 2.613-2.16.037-1.14-.951-1.834-1.304-2.21-.052-.233-.324-.722-.604-.782-.487-.104-.963.09-.963.09s-.112-.03-.223-.088c.794-1.087.876-1.977.887-2.728.032-2.214-1.539-3.268-1.762-3.39.371-.38.53-.64.622-.847a28 28 0 0 0-.18 1.051l.369-.326v.379s.44-.45.504-.914c.039.377.021.914.021.914s.552-.561.737-1.92c.035.862.066 1.508.066 1.508s.29-1.837.192-3.75c-.048-.928-.144-2.02-.47-2.746.825-.647 1.245-.959 1.227-1.16 0-.004-.007-.009-.007-.012M10.504.25s.961.233 1.406.578c.737.573 1.562 1.75 1.562 1.75s-.98-1.165-1.625-1.625C11.451.67 10.504.25 10.504.25m-.516.031s-.72.785-1 1.235c-.42.672-1 2.156-1 2.156s.358-1.511.766-2.156C9.064 1.024 9.988.28 9.988.28zm3.914 2.56c.813.013 1.465.054 1.465.054s-2.596.027-3.867.253c-2.02.36-4.73 1.538-4.73 1.538S9.273 3.36 11.478 2.96c.638-.116 1.611-.132 2.424-.12zm-3.031 3.07s-.122.283-.23.552c-.056-.01-.112-.027-.165-.026.19-.26.395-.527.395-.527zm1.293.01s-.513 1.13-.598 2.433c.17-.534.299-.83.299-.83s-.064.815.12 1.425c.131-1.169.774-1.955.774-1.955s-.209.81-.12 1.37c.107-.826.398-1.69.398-1.69s-.187 1.808.209 2.64c.385-.368.718-1.193.718-1.193s.074.246.045.508c.506-.967.452-2.574.452-2.574s.122.406.26.998c-.19.13-.315.271-.315.271s.136-.113.326-.215c.08.347.155.75.223 1.176q-.007-.002-.014-.004c-.62-.006-.944.26-1.047.594-.288.935.01 1.18.453 1.18.836-.001.961-1.149.961-1.149s.119.33.094.57c-.01.104-.102.274-.102.274l.336-.242s-.092-.74-.394-1.069c.145-.587.24-1.068.285-1.42q.075.035.143.085c.063.634.133 1.446.117 2.066.171-.286.31-.586.31-.586l.01.52s-.344.88-.906 2.033c-1.185.85-1.903 1.111-3.17 1.181-.478.027-1.305-.175-1.305-.175s-.556-1.118-1.037-1.106c-.288.007-.719.22-.719.22s-.542-1.166-.232-4.009c.041-.38.674-.928.674-.928s-.258.515-.414 1.284l-.116.14s.093-.094.112-.115a6 6 0 0 0-.102.713c.123-.289.29-.541.29-.541s-.064.57.12.84c.355-.915.75-1.59 1.063-2.053.013-.003.028-.012.04-.014.053-.009.122.01.183.016a5.7 5.7 0 0 0-.354 1.531c-.886.086-1.043 1.293-1.043 1.293l.324.309s-.104-.216-.105-.34c.273.375.461.746 1.025.74 1.124-.013.951-1.56.951-1.56l.07.023s-.376-.51-1.171-.477l-.006.002a8.3 8.3 0 0 1 .851-1.384c.128.051.16.068.252.115-.154.395-.29.859-.27 1.312.138-.467.311-.861.48-1.209l.074.037-.069-.048a9 9 0 0 1 .567-1.012zm-.344.013s-.222.368-.42.863c-.08-.057-.105-.075-.219-.139.362-.464.639-.724.639-.724m3.767.375.067.644a1 1 0 0 0-.117-.055c.031-.307.05-.59.05-.59zm-4.539 2.105c.068.002.135.05.17.123.05.1.024.214-.056.252-.08.04-.184-.01-.233-.111-.049-.1-.023-.214.057-.252a.13.13 0 0 1 .062-.012m4.04.106c.058.002.121.05.16.123.053.1.042.211-.024.25-.065.038-.162-.01-.215-.11s-.042-.211.024-.25a.1.1 0 0 1 .054-.013zm-3.83.714s-.004.734-.805.793c-.556.042-.805-.445-.805-.445l.106.04s.077-.066.156-.028c.089.043.097.168.097.168s.06.075.399.066c.633-.016.851-.594.851-.594zm3.824.102s-.145.637-.72.648c-.606.012-.48-.527-.48-.527s.058.343.5.379c.428.035.7-.5.7-.5m-2.578 1.5c-.239-.003-.704.125-.704.125l.157.453-.016-.36s.347-.075.523-.077c.158-.003.47.054.47.054l-.063.406.25-.476s-.408-.123-.618-.125zm-2.915.318c.529-.084 1.037 1.046 1.133 1.166.174.217.616.38.672.696.064.359-.46.992-.46.992s-.046-.26-.212-.352c.102.179.102.446.102.446s-.103.755-1.406.976c-1.3.22-1.557-.389-1.557-.389s-.117-.312-.035-.691c-.157.168-.088.541-.088.541s-.828-.338-.943-.717c-.09-.295.188-.58.265-.879.133-.514.024-1.275.602-1.486.329-.12.848.067 1.093.022.285-.054.413-.257.834-.325m.008.244c-.29.017-.447.375-.492.72-.049.374.14 1.124.14 1.124s-.104-.738-.046-1.101c.052-.33.177-.575.414-.579.446-.006.625.344.68.72.05.342.023 1.038.023 1.038s.095-.72.055-1.078c-.044-.382-.3-.87-.774-.844m-1.726.227c-.355.066-.533.52-.532.941.002.478.547 1.317.547 1.317s-.414-.843-.414-1.297c0-.474.111-.744.407-.813.3-.069.584.2.734.563.129.312.101 1.008.101 1.008s.062-.714-.023-1.055c-.1-.402-.474-.728-.82-.664m7.156.32c1.36.023 2.372 1.958 2.365 2.94-.014 2.137-.426 2.398-1.25 3.58-1.214 1.742-4.018 3.821-5.699 3.9-1.064.05-1.817-.482-1.814-.912.006-1.313.996-1.441.996-1.441 2.425-.29 2.477-.52 4.117-2.2 1.587-1.625 1.808-3.87.273-4.552l-.379-.135s.227-1.2 1.39-1.18zm-1.022.098.028.178s-.382.309-.477.867l-.783-.373.016-.315c.56-.016 1.216-.357 1.216-.357m-3.046.314.347.067-.021.187zm.486.051s.339.052.508.055c.22.003.68-.055.68-.055l.017.457-.271.592-.977-.713zm-1.846.297c-.104 0-.188.106-.187.236 0 .13.084.235.187.235.104 0 .19-.104.19-.235 0-.13-.085-.237-.19-.236m.059.078c.05 0 .091.043.092.096 0 .054-.041.098-.092.098s-.093-.044-.092-.098c0-.053.042-.096.092-.096m-1.307.164a.2.2 0 0 0-.056.012c-.098.037-.14.166-.092.287.046.121.162.19.26.152.098-.035.14-.165.093-.287-.036-.097-.12-.164-.205-.164m.05.059c.041-.004.08.02.097.06.02.051-.003.108-.051.125-.048.02-.102-.007-.121-.058a.093.093 0 0 1 .05-.123.1.1 0 0 1 .026-.004zm4.423.037.732.768.254.199.22-.586s.868.283.89 1.662l-1.127-.623-.077.182 1.19.695q-.028.243-.108.49c-.02-.03-.04-.068-.06-.072-.562.133-1.453.492-1.453.492l.008 1.834c-.154.166-.308.337-.461.49l-.073-2.515.207-.586c-.042-.06-.314-.449-.377-.702-.029-.118.033-.245.004-.363-.035-.144-.186-.246-.209-.392-.017-.117-.014-.308.067-.348.044-.022.127.027.127.076 0 .088-.08.096-.082.154-.008.193.19.343.23.532.025.113-.022.235.006.347.049.197.222.479.28.569l.519-1.465-.695-.748-.352.375zm-5.953.053s-.26.496-.182.736c.124.381 1.002.84 1.002.84s-.59.247-.437 1.148c.12.714 1.125.633 1.125.633s.048.538-.004.932c-.055.407-.383.845-.383.845s.408-.413.474-.828c.027-.166.018-.5.018-.5s.093.16.125.246c.07.188.14.582.14.582s-.017-.385-.054-.574a7 7 0 0 0-.207-.687l.363-.047s.08.25.344.285c.161.022.488.004.488.004s.004.3-.05.457c-.095.27-.47.75-.47.75s-.255.372-.456.426c-.265.07-.682.025-.682.025s-.82.69-1.275.69c-.424 0-1.418-.674-1.508-.823-.105-.173.014-.723.01-1.084-.005-.327.597-.949.597-.949l.42-1.96s-.294-.213-.25-.348c.157-.478.645-.489.645-.489zm4.613.166.758.254-.778-.16zm-.36.57 1.725 1.818-.178.43.075 2.584c-1.202 1.182-3.051 1.203-3.051 1.203s-.202-.063-.217-.183c-.013-.106.158-.235.158-.235-.171-.552-.21-.736-.224-1.34l-.155-.144s.312-.425.448-.701c.088-.18.075-.327.072-.598 0 0 .373-.11.535-.215.251-.162.201-.385.201-.385s.262.06.602-.015a.89.89 0 0 0 .678-.856c.01-.811-.883-.953-.883-.953zm-1.285.035a.273.273 0 0 0-.103.526.273.273 0 0 1 .209-.45q.053.001.101.022a.27.27 0 0 0-.207-.098m-1.148.227a.273.273 0 0 0-.273.273c0 .11.067.208.168.25a.273.273 0 0 1 .21-.447q.053 0 .102.021a.27.27 0 0 0-.207-.097m2.135.263s.699.024.857.76c.081.377-.301.828-.767.881-.111.013-.409-.037-.409-.037s-.054-.114-.154-.115c-.227-.003-.342.138-.72.185-.3.038-.386-.011-.575.022-.214.037-.267.207-.267.207s-.325.063-.524.066c-.771.014-.883-.294-.941-.74-.083-.634.486-.797.486-.797s.025.108.35.258l-.23.068.06.264-.215.066.027.287.254-.027.045.26.266-.012-.051-.303.227-.05.025-.442c.218.039.474.063.826.033a1.8 1.8 0 0 0 .82-.28.7.7 0 0 0-.056.269c0 .38.316.687.707.687s.707-.308.707-.687a.697.697 0 0 0-.87-.668c.075-.089.122-.155.122-.155m3 .188 1.1.615c0 .028-.009.058-.01.086l-1.13-.644zm-2.807.037c.05.002.1.02.137.06l.01.01a.2.2 0 0 1-.008.28l-.477.447a.2.2 0 0 1-.279-.01l-.008-.01a.195.195 0 0 1 .008-.277l.094-.09.033.074a.15.15 0 1 0 .185.147.15.15 0 0 0-.125-.147l.01-.17.28-.261a.2.2 0 0 1 .14-.053m-.006.059a.15.15 0 1 0 .016.3.15.15 0 0 0-.016-.3m.244.34c.05.001.1.02.137.06l.01.01a.2.2 0 0 1-.008.28l-.476.446a.2.2 0 0 1-.28-.01l-.008-.01a.195.195 0 0 1 .008-.277l.477-.447a.2.2 0 0 1 .14-.053zm-.007.058a.15.15 0 1 0 .002 0zm-3.008.047.136.232-.109.024zm1.537.35a.08.08 0 0 0-.049.04l-.062.118a.087.087 0 0 0 .035.117.09.09 0 0 0 .117-.037l.06-.117a.085.085 0 0 0-.035-.116.1.1 0 0 0-.066-.006zm1.014.025a.15.15 0 1 0 .002 0zm-1.483.057a.1.1 0 0 0-.05.043l-.061.117a.085.085 0 0 0 .035.115.085.085 0 0 0 .115-.035l.063-.12a.085.085 0 0 0-.037-.115.08.08 0 0 0-.065-.005m5.397.357c.024.008.04.04.054.07a4 4 0 0 1-.285.608l-.765.279s-.015-.196-.028-.293c-.02-.148-.281-.172-.281-.172s.896-.376 1.305-.492m-4.43.045c.06-.002.11.016.14.064.154.25-.203.55-.722.637-.66.111-.89-.2-.73-.437.09-.137.498-.035.675-.059.17-.023.455-.2.637-.205m3.125.54c.077.01.193.031.197.124.007.138.028.414.028.414l.74-.27a8 8 0 0 1-.576.78l-.065-.365v.449c-.11.132-.216.258-.332.385zm-2.006.032a5 5 0 0 0-.973.108c-.128.183-.072.564-.072.564l2.133-.105s-.014-.334-.106-.487a5.4 5.4 0 0 0-.982-.08m-.076.09c.263-.007.551.008.992.05.068.152.067.34.067.34l-1.934.087s-.014-.204.035-.387c.339-.053.577-.083.84-.09m1.066.59s-.11.838-.023 1.32c-.462.113-1.205.137-1.828.11-.056-.511-.086-1.22-.086-1.22s-.08.55-.008 1.36c.714-.004 1.466-.006 2.031-.14-.067-.742-.086-1.43-.086-1.43m-1.222.246s-.03.34-.028.512c.002.188.04.562.04.562s.045-.37.042-.555c-.002-.174-.054-.519-.054-.519m.484.098s-.043.285-.043.43c0 .147.047.44.047.44s.028-.29.027-.437c0-.145-.031-.433-.031-.433m-2.465.539.133.105c-.003.25.006.502.098.79-.258-.034-.617-.217-.782-.45.298-.122.346-.167.551-.445m8.694.078c.25.139.459.393.457.611-.003.254-.264-.15-.557-.404.233.249.397.632.215.637-.238.006-.255-.311-.602-.514-.184-.107-.496-.152-.496-.152s.371-.174.983-.178m-1.073.273c.741-.002.851.642 1.137.64.313-.003.172-.28.172-.28s.106.151.21.136c0 0 1.301 1.029 1.321 1.989.022 1.08-1.257 2.173-2.312 2.164-1.381-.02-2.043-.67-3.008-.68-.725.034-1.213.328-1.227.727-.006.193.174.558.174.558s-.306-.258-.322-.527c-.041-.738.523-1.603 1.402-1.666.953-.11 1.383.232 2.613.322.48.035 1.162-.482 1.149-.766-.038-.823-1.73-.808-1.73-.808l.343-.309c-.023-1.231-.637-1.086-.637-1.086l.36-.406s.21-.007.355-.008m-.808.516c.161-.025.325 0 .453.187.138.203.176.746.176.746s-.448.437-.735.547c-.01-.128-.007-.244-.023-.402-.013-.123-.172-.28-.362-.309v-.171a7 7 0 0 0 .49-.598zm-.563.674v1.513c-.136.058-.245.115-.414.172-.255.087-.544-.005-.805.063-.285.073-.53.26-.804.367-.409.16-.95.176-.95.176s1.708-.936 2.973-2.291m.072.16c.127.025.282.153.288.256.012.26.022.344.03.504.158-.017.427-.262.427-.262s.042.256-.055.406c-.081.125-.349.271-.69.42zm.85.549s1.6.075 1.602.71c0 .4-.705.64-1.125.641-.571.002-1.54-.344-1.54-.344s.913-.39 1.032-.574c.097-.151.031-.433.031-.433"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/renren.svg�����������������������������������0000664�0000000�0000000�00000001367�14753064456�0025123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.66 9.553V5.254A6.794 6.794 0 0 0 1.606 16.34c2.379-1.152 4.042-3.755 4.054-6.787m1.132 4.115c-.423 1.752-1.687 3.25-3.262 4.245a6.76 6.76 0 0 0 3.26.833 6.8 6.8 0 0 0 3.264-.833c-1.575-.996-2.84-2.494-3.262-4.245m5.184-6.103a6.8 6.8 0 0 0-4.052-2.31V9.52c0 3.045 1.667 5.663 4.051 6.818a6.77 6.77 0 0 1-1.607-4.387 6.76 6.76 0 0 1 1.608-4.386c1.003 1.183 1.655 2.714 1.655 4.387 0 1.674-.65 3.203-1.655 4.388 2.38-1.15 4.088-3.755 4.1-6.787V5.254a6.9 6.9 0 0 0-4.1 2.31zM18.34 9.52c0 3.046 1.667 5.663 4.053 6.82A6.793 6.793 0 0 0 18.34 5.255zm-1.132 4.148c-.423 1.752-1.687 3.25-3.263 4.245a6.76 6.76 0 0 0 3.262.833 6.8 6.8 0 0 0 3.263-.833c-1.575-.996-2.839-2.494-3.262-4.245"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/replicate.svg��������������������������������0000664�0000000�0000000�00000000264�14753064456�0025575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 10.262v2.712h-9.518V24h-3.034V10.262zm0-5.131v2.717H8.755V24H5.722V5.131zM24 0v2.717H3.034V24H0V0z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/replit.svg�����������������������������������0000664�0000000�0000000�00000000446�14753064456�0025126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 1.5A1.5 1.5 0 0 1 3.5 0h7A1.5 1.5 0 0 1 12 1.5V8H3.5A1.5 1.5 0 0 1 2 6.5ZM12 8h8.5A1.5 1.5 0 0 1 22 9.5v5a1.5 1.5 0 0 1-1.5 1.5H12ZM2 17.5A1.5 1.5 0 0 1 3.5 16H12v6.5a1.5 1.5 0 0 1-1.5 1.5h-7A1.5 1.5 0 0 1 2 22.5Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/republicofgamers.svg�������������������������0000664�0000000�0000000�00000001462�14753064456�0027157�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.39 5.583c-1.346.012-3.433.196-5.937.977-1.602.498-3.916 2.742-8.224 6.908-.57.32-2.67-.891-3.881-1.46 0 0 1.993 3.169 2.705 4.095 1.068 1.46 3.027 2.314 3.027 2.314-.178-.178-1.53-1.603-1.922-2.422-.25-.391.034-.962 1.957-2.386 1.745-1.282 7.942-6.515 13.924-7.94 0 0-.6-.095-1.648-.086M24 7.771c-2.065.213-4.06.819-5.947 1.709-3.775 1.78-10.149 6.338-10.149 6.338.285.178.57.355.856.498 3.062 1.353 7.585 2.171 8.44 1.886 2.385-.783 5.055-5.802 5.874-8.117 0 0-2.493.997-5.021 2.172-2.101.997-4.414 2.137-4.414 2.137l5.875-1.781s-1.568 3.703-3.633 4.13-5.697-1.033-5.697-1.033c.285-.249 4.13-3.063 13.103-6.73.392-.285.642-.746.713-1.21M0 11.294c.356.962.82 1.853 1.354 2.707.64.82 3.274 1.496 3.63 1.567C3.346 14.428 0 11.294 0 11.294"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rescript.svg���������������������������������0000664�0000000�0000000�00000001173�14753064456�0025460�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.29 1.8q-.45-.6-.9-.9c-1.3-.9-2.899-.9-6.098-.9H7.696C4.498 0 2.9 0 1.8.8c-.4.3-.7.6-1 1C0 2.9 0 4.5 0 7.7v8.6c0 3.2 0 4.8.8 5.9q.45.6.9.9c1.199.9 2.798.9 5.996.9h8.596c3.199 0 4.798 0 5.898-.8q.6-.45.9-.9c.799-1.1.799-2.7.799-5.9V7.7c.2-3.2.2-4.8-.6-5.9ZM11.194 16.5c0 .2 0 .5-.1.8 0 .2-.1.3-.1.5-.1.1-.2.3-.4.5s-.4.3-.6.4c-.3.1-.7.1-1.399.1-.8 0-1.1 0-1.4-.1q-.6-.3-.899-.9c-.1-.3-.1-.7-.1-1.4v-8c0-.9 0-1.4.2-1.7s.4-.5.8-.7c.3-.2.8-.2 1.699-.2h2.299zm5.097-4.9a2.794 2.794 0 0 1-2.798-2.8c0-1.6 1.3-2.8 2.798-2.8 1.5 0 2.8 1.3 2.8 2.8s-1.3 2.8-2.8 2.8"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rescuetime.svg�������������������������������0000664�0000000�0000000�00000001170�14753064456�0025767�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 7.626v8.749c0 .597-.485 1.092-1.091 1.092h-5.447v5.452c0 .596-.485 1.092-1.091 1.092H7.629a1.094 1.094 0 0 1-1.091-1.092v-5.452H1.091A1.093 1.093 0 0 1 0 16.375V7.626c0-.597.485-1.092 1.091-1.092h5.447V1.082c0-.596.485-1.092 1.091-1.092h8.742c.596 0 1.091.485 1.091 1.092v5.452h5.447A1.1 1.1 0 0 1 24 7.626m-3.325 4.339-2.192-1.649.333 1.042-4.891-.344c.152.304.243.638.243.992 0 .343-.081.667-.213.95l4.871-.364-.323 1.022zm-7.579.03-.495-8 1.021.324-1.647-2.185-1.647 2.195 1.04-.334-.454 8c0 .597.485 1.093 1.091 1.093.596 0 1.091-.486 1.091-1.093"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/researchgate.svg�����������������������������0000664�0000000�0000000�00000003271�14753064456�0026263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.586 0q-1.226.001-2.073.565-.846.565-1.213 1.68a3 3 0 0 0-.112.437 8 8 0 0 0-.078.53 9 9 0 0 0-.05.727q-.014.423-.013 1.016a31.121 31.123 0 0 0 .014 1.017 9 9 0 0 0 .05.727 8 8 0 0 0 .077.53h-.005a3 3 0 0 0 .113.438q.368 1.114 1.214 1.68.847.564 2.075.564c.8 0 1.536-.213 2.105-.603.57-.39.94-.916 1.175-1.65.076-.235.135-.558.177-.93a11 11 0 0 0 .043-1.207v-.82q0-.142-.14-.142h-3.064q-.14 0-.14.141v.956q0 .14.14.14h1.666q.084.001.084.086c0 .36 0 .62-.036.865-.038.244-.1.447-.147.606-.108.385-.348.664-.638.876s-.738.35-1.227.35c-.545 0-.901-.15-1.21-.353-.306-.203-.517-.454-.67-.915a3.1 3.1 0 0 1-.147-.762 17.366 17.367 0 0 1-.034-.656q-.015-.39-.014-.939a26.401 26.403 0 0 1 .014-.938 16 16 0 0 1 .035-.656 3.2 3.2 0 0 1 .148-.76 1.9 1.9 0 0 1 .742-1.01c.344-.244.593-.352 1.137-.352.508 0 .815.096 1.144.303.33.207.528.492.764.925q.069.141.198.07l1.044-.43q.113-.072.042-.199a3.6 3.6 0 0 0-.466-.742 3 3 0 0 0-.679-.607 3.3 3.3 0 0 0-.903-.41A4 4 0 0 0 19.586 0M8.217 5.836c-1.69 0-3.036.086-4.297.086-1.146 0-2.291 0-3.007-.029v.831l1.088.2c.744.144 1.174.488 1.174 2.264v11.288c0 1.777-.43 2.12-1.174 2.263l-1.088.2v.832c.773-.029 2.12-.086 3.465-.086 1.29 0 2.951.057 3.667.086v-.831l-1.49-.2c-.773-.115-1.174-.487-1.174-2.264v-4.784c.688.057 1.29.057 2.206.057 1.748 3.123 3.41 5.472 4.355 6.56.86 1.032 2.177 1.691 3.839 1.691.487 0 1.003-.086 1.318-.23v-.744c-1.031 0-2.063-.716-2.808-1.518-1.26-1.376-2.95-3.582-4.355-6.074 2.32-.545 4.04-2.722 4.04-4.9 0-3.208-2.492-4.698-5.758-4.698zm-.515 1.29c2.406 0 3.839 1.26 3.839 3.552 0 2.263-1.547 3.782-4.097 3.782-.974 0-1.404-.03-2.063-.086v-7.19c.66-.059 1.547-.059 2.32-.059z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/resend.svg�����������������������������������0000664�0000000�0000000�00000000607�14753064456�0025106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.023 0v24h5.553v-8.434h2.998L15.326 24h6.65l-5.372-9.258a7.65 7.65 0 0 0 3.316-3.016q1.063-1.815 1.062-4.08 0-2.194-1.062-3.91-1.063-1.747-2.95-2.742Q15.12 0 12.823 0Zm5.553 4.87h4.219q1.097 0 1.851.376.788.378 1.2 1.098.412.685.412 1.611c0 .926-.126 1.165-.378 1.645q-.343.72-1.03 1.13-.651.379-1.542.38H7.576Z"/></svg>�������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/resharper.svg��������������������������������0000664�0000000�0000000�00000001234�14753064456�0025616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 0H0v24h24zM3.006 19.476h9v1.5h-9zm9.824-9.392h-.98V8.432h1.264l.324-1.908h-1.136V4.872h1.416l.324-1.864h1.704l-.332 1.864h1.88l.324-1.864h1.7l-.304 1.864h.98v1.652h-1.28l-.324 1.908h1.136v1.652h-1.42l-.336 1.936h-1.7l.332-1.936h-1.868l-.32 1.936h-1.72zM3.014 3.008H7.15q1.716 0 2.632.912c.529.553.808 1.3.772 2.064v.028a2.8 2.8 0 0 1-.536 1.784 3.07 3.07 0 0 1-1.404.992l2.204 3.224h-2.32L6.63 9.24H5.014v2.772h-2zm13.672 5.424.328-1.908h-1.876l-.32 1.908zM7.014 7.408c.415.014.821-.129 1.136-.4a1.2 1.2 0 0 0 .4-.928v-.028a1.16 1.16 0 0 0-.4-.968 1.84 1.84 0 0 0-1.148-.32H5.014v2.592z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/resurrectionremixos.svg����������������������0000664�0000000�0000000�00000000671�14753064456�0027762�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m24 3.53-9.952.078C9.142 3.647 6.994 8.265 0 16.345c1.569.753 3.323 1.24 4.338.119 1.703-1.883 4.275-5.48 7.154-8.346 1.793-1.784 6.01-.865 9.95-1.23 1.351-.125 2.41-2.48 2.558-3.359zm-.147 6.076-7.326.044c-4.39 0-5.38 2.492-11.91 10.24 1.194.563 3.28.84 3.763.257 1.78-2.158 2.506-3.51 5.36-6.362 1.657-1.658 4.39-.687 7.86-1.01 1.267-.12 2.132-2.449 2.253-3.169"/></svg>�����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/retool.svg�����������������������������������0000664�0000000�0000000�00000000610�14753064456�0025124�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 2.2A2.2 2.2 0 0 1 2.2 0h8.6A2.2 2.2 0 0 1 13 2.2v1.7A1.1 1.1 0 0 1 11.9 5H1.1A1.1 1.1 0 0 1 0 3.9zm0 6.9A1.1 1.1 0 0 1 1.1 8h20.7a2.2 2.2 0 0 1 2.2 2.2v5.7a1.1 1.1 0 0 1-1.1 1.1H2.2A2.2 2.2 0 0 1 0 14.8zm11 12a1.1 1.1 0 0 1 1.1-1.1h10.8a1.1 1.1 0 0 1 1.1 1.1v.7a2.2 2.2 0 0 1-2.2 2.2h-8.6a2.2 2.2 0 0 1-2.2-2.2z"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/retroarch.svg��������������������������������0000664�0000000�0000000�00000000563�14753064456�0025620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.84 5.76 8.4 7.68H5.28l-.72 2.88H2.64l.72-2.88H1.44L0 13.44h3.84l-.48 1.92h3.36L4.2 18.24h2.82l2.34-2.88h5.28l2.34 2.88h2.82l-2.52-2.88h3.36l-.48-1.92H24l-1.44-5.76h-1.92l.72 2.88h-1.92l-.72-2.88H15.6l1.56-1.92h-2.04l-1.68 1.92h-2.88L8.88 5.76zm.24 3.84H9v1.92H7.08zm7.925 0h1.92v1.92h-1.92Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/retropie.svg���������������������������������0000664�0000000�0000000�00000013536�14753064456�0025464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.923 0a3.59 3.59 0 0 0-1.531 6.839c.04.475.18 2.156.315 3.874a1 1 0 0 1-.126.016c-.25.016-.499-.027-.748-.007-.32.024-.59.197-.914.197-.298 0-.608-.006-.88.136-.446.232-1.106.086-1.474.467-.298.308-.859.153-1.199.475-.088.083-.101.222-.213.26-.126.043-.257.07-.383.113-.247.083-.51.226-.607.486-.061.166.022.188-.146.257a1.4 1.4 0 0 0-.33.182c-.182.141-.231.336-.258.568-.002.017.003.315.003.314a.9.9 0 0 0-.221.256c-.133.235-.107.484-.009.728.107.264.198.364.209.636-.012.13.05.266.098.383.192.47.307.835.831.884l1.48 3.964C6.564 23.015 9.25 24 11.949 24c2.72 0 5.448-1.001 6.204-2.986l1.522-4.002c.327-.06.603-.178.726-.538.086-.189.174-.393.202-.6a.7.7 0 0 0-.01-.249c.062-.08.123-.15.167-.243.211-.445.162-.964-.268-1.25.114-.407-.014-.695-.385-.91-.188-.109-.29-.091-.347-.296-.053-.19-.14-.339-.307-.437-.215-.126-.458-.15-.684-.243-.093-.242-.33-.385-.565-.462-.195-.064-.398-.073-.594-.126-.203-.054-.317-.242-.524-.318-.225-.081-.463-.089-.698-.113-.253-.027-.43-.18-.669-.243-.253-.066-.502-.05-.758-.065-.258-.015-.476-.15-.73-.182-.202-.026-.403-.009-.606-.001a2 2 0 0 1-.474-.053c.136-1.721.266-3.391.3-3.843A3.59 3.59 0 0 0 11.924 0zm.95.826c.292-.007.684.158 1.009.518.518.573.59 1.257.332 1.397-.261.145-.741-.145-1.187-.529-.438-.388-.721-.863-.536-1.193.068-.123.207-.19.382-.193M10.766 6.99a3.6 3.6 0 0 0 2.312 0c-.197 2.54-.459 5.87-.486 6.08-.014.083-.098.176-.218.242a1 1 0 0 1-.464.102c-.027 0-.664-.005-.68-.409-.032-.825-.342-4.563-.464-6.015m2.371 3.856q.116.027.237.04c.302.025.597-.048.899.015.137.028.25.101.385.134.168.04.339.047.511.043a1.7 1.7 0 0 1 .463.052c.164.044.273.156.43.204.352.106.793.02 1.095.254.059.045.08.113.145.148q.104.052.218.082c.13.035.265.046.396.074.151.032.311.082.43.178a.3.3 0 0 1 .12.197c.009.072.088.1.156.13.215.094.453.11.657.232a.46.46 0 0 1 .205.227l.006.02.002.006.01.044c.004.034.014.132.027.222q.086.06.186.099c.18.071.474.207.537.4l.003.007.004.023a.24.24 0 0 1-.001.124c-.02.075-.066.238-.095.366.105.077.228.133.317.23q.07.077.1.172l.001.001.002.007.007.03c.046.185-.041.53-.136.636a2 2 0 0 0-.182.253.4.4 0 0 1 .054.166l.002.018v.016l-.001.029-.002.012-.003.018a2.3 2.3 0 0 1-.18.53c-.12.387-.574.307-.864.408-.028.154-.164.81-.284.965-.237.305-.633.282-.969.27a1.2 1.2 0 0 0-.503.089.7.7 0 0 0-.2.13c-.078.075-.09.155-.121.254-.108.352-.47.512-.795.543-.271.025-.509-.057-.772-.102a1.55 1.55 0 0 0-.773.058.9.9 0 0 0-.322.187c-.086.082-.154.173-.253.24a1.3 1.3 0 0 1-.735.211c-.261 0-.525-.066-.754-.2a1.5 1.5 0 0 0-.747-.183c-.255 0-.522.05-.747.183a1.5 1.5 0 0 1-.757.203c-.337 0-.694-.112-.926-.38-.182-.211-.457-.3-.72-.328-.378-.04-.718.123-1.09.123-.33 0-.713-.112-.889-.431-.067-.123-.067-.267-.17-.367-.135-.132-.33-.192-.509-.214-.354-.044-.702.068-1.03-.14a.59.59 0 0 1-.263-.372c-.023-.084-.161-.562-.18-.663-.029-.15-.484-.048-.637-.135-.138-.08-.208-.29-.253-.389-.044-.098-.18-.405-.19-.5l.006-.005q-.003-.017-.004-.036a.42.42 0 0 1 .104-.283.7.7 0 0 1-.199-.194c-.044-.085-.255-.454-.19-.64l.005-.004a.52.52 0 0 1 .18-.262c.069-.057.16-.1.237-.154a1 1 0 0 1-.058-.054c-.1-.136-.081-.427.014-.566l.012-.02.002-.003.003-.002a.3.3 0 0 1 .029-.036c.117-.124.279-.185.437-.248a1 1 0 0 0 .187-.097c.009-.088.003-.189.01-.246a.27.27 0 0 1 .093-.178c.16-.17.522-.23.707-.296a.8.8 0 0 0 .22-.108c.04-.03.036-.133.07-.18.09-.126.259-.19.408-.23.167-.045.342-.053.508-.1a.8.8 0 0 0 .233-.098c.055-.039.082-.113.146-.154.323-.205.74-.116 1.093-.237.125-.043.211-.136.341-.177.176-.056.37-.073.555-.064.164.008.334-.009.493-.05.142-.035.26-.11.408-.136.327-.057.652.03.98-.02.043.551.083 1.081.11 1.475-.67.17-1.125.495-1.125.87 0 .553.983 1 2.195 1s2.195-.447 2.195-1c0-.366-.435-.683-1.08-.858.034-.404.072-.866.123-1.508m3.865 2.053c-.318 0-.626.059-.891.17-.375.157-.6.407-.634.703a.65.65 0 0 0 .022.252l.02.409.01.2.002.027a1.3 1.3 0 0 0-.347-.207 2.3 2.3 0 0 0-.892-.17c-.319 0-.627.058-.892.169-.375.157-.6.407-.633.703a.65.65 0 0 0 .023.258l.02.402.01.201a.47.47 0 0 0 .073.268l.026.044c.117.214.336.388.63.501.232.09.493.137.754.137.34 0 .662-.078.93-.226.324-.178.51-.436.526-.725l.006-.074c.004-.03.008-.058.011-.119l.023-.416a.7.7 0 0 0 .026-.173q-.001-.024-.004-.049.175.16.438.262c.233.09.493.137.755.137.34 0 .661-.078.93-.226.324-.179.51-.436.525-.725.002-.042.004-.056.006-.074a1 1 0 0 0 .011-.12l.023-.41a.7.7 0 0 0 .026-.178c.001-.299-.192-.56-.543-.735a2.3 2.3 0 0 0-.99-.216m0 .27a2 2 0 0 1 .862.183c.164.082.402.243.401.498q-.002.135-.092.254l-.134.116a1 1 0 0 1-.217.143q-.014.007-.028.013a2.1 2.1 0 0 1-.788.149c-.293 0-.571-.056-.807-.16l-.025-.01a1 1 0 0 1-.207-.14l-.132-.114a.41.41 0 0 1-.09-.299c.023-.194.19-.366.47-.484.232-.098.505-.149.787-.149m-1.212 1.266q.111.09.256.157.027.015.054.024c.268.128.58.198.906.198s.642-.068.912-.196l.023-.013a1.3 1.3 0 0 0 .274-.164c-.006.08-.011.077-.016.177-.012.228-.198.399-.385.502a1.7 1.7 0 0 1-.8.193 1.9 1.9 0 0 1-.658-.119c-.192-.074-.389-.194-.49-.38-.059-.103-.061-.08-.067-.194zm-1.498.117a2 2 0 0 1 .862.184c.164.08.401.242.4.497a.42.42 0 0 1-.093.255l-.132.115a1 1 0 0 1-.213.14 2.1 2.1 0 0 1-.82.165 2 2 0 0 1-.802-.157l-.03-.013a1 1 0 0 1-.207-.139l-.133-.116a.41.41 0 0 1-.089-.297c.022-.195.19-.367.47-.485a2 2 0 0 1 .787-.149m-1.212 1.266q.12.097.28.17l.033.013c.268.127.577.196.903.196s.642-.067.912-.196l.025-.014q.155-.071.271-.163c-.005.08-.01.078-.016.177-.011.228-.197.4-.385.502a1.67 1.67 0 0 1-.8.193 1.8 1.8 0 0 1-.657-.119c-.192-.074-.389-.194-.491-.38-.058-.104-.06-.08-.066-.194zm-8.06 2.297q.147.095.318.14c.408.11 1.054-.132 1.236.345.208.541.85.741 1.381.698.43-.035 1.06-.306 1.41.092.404.46 1.092.576 1.665.425.525-.138.91-.457 1.478-.238.627.24 1.206.454 1.853.102.455-.247.623-.592 1.215-.492.522.089 1.02.2 1.503-.104.352-.22.362-.73.783-.78.37-.044.731.044 1.083-.139h.002l-.036.094-1.013 2.66c-.328.863-1.097 1.584-2.223 2.087-1.048.467-2.372.725-3.728.725-1.347 0-2.656-.255-3.686-.717-1.11-.498-1.866-1.217-2.188-2.08z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/revanced.svg���������������������������������0000664�0000000�0000000�00000000540�14753064456�0025411�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.1 0a.28.28 0 0 0-.23.42l6.88 11.93a.28.28 0 0 0 .48 0L19.13.42A.28.28 0 0 0 18.9 0ZM.5 0a.33.33 0 0 0-.3.46L10.43 23.8c.05.12.17.2.3.2h2.54c.13 0 .25-.08.3-.2L23.8.46a.33.33 0 0 0-.3-.46h-2.32a.24.24 0 0 0-.21.14L12.2 20.08a.23.23 0 0 1-.42 0L3.03.14A.23.23 0 0 0 2.82 0Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/revealdotjs.svg������������������������������0000664�0000000�0000000�00000001027�14753064456�0026145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.271 1.352a.774.774 0 0 0-.787.775v19.761c0 .49.45.857.93.758l6.676-1.382-2.77-.614-3.675.762V2.607l3.101.686 2.777-.574-6.097-1.35a1 1 0 0 0-.155-.017m15.315.002L5.145 4.344v15.092l14.43 3.195a.774.774 0 0 0 .94-.758V2.111a.773.773 0 0 0-.93-.757zM2.984 4.79l-2.367.49A.774.774 0 0 0 0 6.04v11.639a.774.774 0 0 0 .607.754l2.377.525V4.791zm18.034.252V6.23l1.822.405v11.011l-1.822.377v1.186l2.365-.49A.774.774 0 0 0 24 17.96V6.322a.774.774 0 0 0-.607-.754z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/reverbnation.svg�����������������������������0000664�0000000�0000000�00000000315�14753064456�0026320�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m24 9.324-9.143-.03L11.971.57 9.143 9.294 0 9.324h.031l7.367 5.355-2.855 8.749h.029l7.459-5.386 7.396 5.386-2.855-8.73L24 9.315"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/revoltdotchat.svg����������������������������0000664�0000000�0000000�00000000511�14753064456�0026502�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.005 7.796c0 1.88-1.023 3.009-3.207 3.009h-3.615v-5.95H13.8c2.183 0 3.206 1.162 3.206 2.94zM.853 0l3.5 4.866v19.133h5.832v-9.06h1.398L16.563 24h6.583l-5.525-9.504a6.97 6.97 0 0 0 3.879-2.532 7 7 0 0 0 1.44-4.408C22.94 3.384 20.009 0 14.143 0h-9.79z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/revolut.svg����������������������������������0000664�0000000�0000000�00000000550�14753064456�0025323�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.913 6.957C20.913 3.12 17.79 0 13.95 0H2.424v3.86h10.978c1.738 0 3.177 1.366 3.209 3.044a3.08 3.08 0 0 1-.888 2.232 3.08 3.08 0 0 1-2.214.93H9.232a.276.276 0 0 0-.275.275v3.431q0 .09.052.162L16.265 24h5.311l-7.273-10.094c3.663-.184 6.61-3.261 6.61-6.95M6.894 5.923h-4.47V24h4.47z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rewe.svg�������������������������������������0000664�0000000�0000000�00000002573�14753064456�0024574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.597 12.45h.025l.579-3.166c.066-.36.214-.488.63-.488h.58c.307 0 .481.118.481.395q0 .095-.026.216l-1.278 5.285c-.078.357-.195.512-.635.512h-.696c-.396 0-.51-.138-.598-.495l-.799-3.449h-.015l-.807 3.455c-.081.363-.195.49-.588.49h-.697c-.449 0-.56-.145-.642-.497l-1.269-5.3c-.016-.082-.036-.153-.036-.216 0-.278.18-.396.49-.396h.69c.417 0 .57.126.635.488l.575 3.167h.015l.738-3.167c.085-.362.233-.488.63-.488h.653c.391 0 .543.126.63.488l.735 3.167zM.498 15.205c-.349 0-.498-.144-.498-.496V9.3c0-.355.15-.503.498-.503h1.835c1.984 0 2.736.747 2.736 2.02 0 .776-.42 1.425-1.35 1.75l1.467 2.025c.089.124.125.22.125.306 0 .205-.24.307-.508.307H3.72c-.32 0-.444-.126-.669-.49l-1.206-1.931h-.019v1.926c0 .353-.15.495-.51.495zm19.479 0c-.35 0-.485-.127-.485-.478V9.285c0-.362.136-.49.485-.49h3.251c.356 0 .486.127.486.489v.462c0 .347-.13.478-.486.478h-1.867v1.061h1.583c.358 0 .484.13.484.49v.426c0 .348-.126.477-.485.477H21.36v1.095h2.143c.363 0 .497.133.497.49v.463c0 .351-.134.478-.497.478zm-13.411 0c-.351 0-.498-.144-.498-.496V9.3c0-.355.147-.503.498-.503h3.211c.354 0 .504.149.504.503v.429c0 .347-.15.496-.504.496H7.928v1.06H9.49c.36 0 .511.146.511.507v.388c0 .35-.15.499-.51.499H7.927v1.094h2.131c.356 0 .51.146.51.512v.423c0 .352-.154.495-.51.495H6.566zM2.351 11.68c.557 0 .793-.234.793-.743s-.236-.745-.793-.745h-.526v1.488z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rezgo.svg������������������������������������0000664�0000000�0000000�00000001203�14753064456�0024745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.147 16.705c-.015-3.076.004-6.175-.024-9.238 0-2.052.836-3.917 2.193-5.274A7.44 7.44 0 0 1 17.59 0c1.482.015 2.999.008 4.493.008v3.728c-1.494 0-3.012-.005-4.493.006a3.713 3.713 0 0 0-3.725 3.725c-.01 3.063.004 6.162.01 9.238zm-5.4-.633-3.61.965c.845 3.15 3.287 5.236 6.274 6.253a13.7 13.7 0 0 0 4.026.704c1.385.039 2.78-.117 4.092-.469 3.31-.886 6.186-3 7.334-6.371l-3.538-1.199c-.699 2.053-2.574 3.374-4.76 3.96-.982.263-2.013.38-3.025.352a10 10 0 0 1-2.93-.514c-1.868-.636-3.378-1.87-3.862-3.681zM6.986 3.354a2.887 2.887 0 1 1-5.775 0 2.887 2.887 0 0 1 5.775 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rhinoceros.svg�������������������������������0000664�0000000�0000000�00000007743�14753064456�0026011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.823 3.103q-.15 0-.34.017c-.511.044-1.25.18-1.802.329a6.3 6.3 0 0 0-1.15.42c-.231.112-.33.178-.354.273-.023.094.028.217.16.436s.346.533.535.961.356.97.361 1.651c.006.68-.149 1.5-.245 1.962s-.133.568-.227.618-.245.044-.525-.021c-.281-.065-.69-.187-1.1-.259s-.819-.093-1.122-.038c-.304.056-.504.189-.645.369-.14.18-.224.406-.282.75A7 7 0 0 0 0 11.687c.005.317.047.49.136.584.088.094.223.109.492.054s.672-.18 1.224-.215a6.3 6.3 0 0 1 1.94.202c.685.182 1.353.49 1.95.93.598.438 1.127 1.007 1.566 1.593.438.586.787 1.189 1.004 1.541.217.353.304.455.372.42s.117-.207.145-.417a3.1 3.1 0 0 0-.02-.848 7.5 7.5 0 0 0-.32-1.365 5.6 5.6 0 0 0-.495-1.018c-.146-.247-.241-.408-.245-.51s.085-.148.51-.315c.424-.167 1.185-.457 1.958-.808s1.556-.764 2.042-1.106c.486-.341.674-.61.724-.937.05-.326-.039-.71-.16-1.076a7 7 0 0 0-.529-1.193A14 14 0 0 0 11.28 5.6a9 9 0 0 0-1.1-1.236c-.282-.255-.421-.31-.51-.29s-.131.115-.168.47c-.037.356-.07.973-.144 1.559a7.5 7.5 0 0 1-.432 1.773 12.5 12.5 0 0 1-.99 1.982c-.388.64-.803 1.212-1.054 1.462-.25.25-.336.18-.477.064l-.486-.4c-.15-.125-.253-.213-.273-.293s.045-.15.27-.448c.227-.299.615-.825.96-1.478a7.8 7.8 0 0 0 .796-2.282 10 10 0 0 0 .095-2.338c-.044-.564-.124-.77-.306-.896-.137-.095-.332-.146-.638-.146m6.48 7.034h-.012c-.084.01-.192.112-.415.294a7 7 0 0 1-1.017.7c-.458.257-1.038.507-1.51.734-.47.226-.831.429-1.004.712-.172.283-.155.648.04.85.194.204.566.246.883.259s.58-.002.826.087c.246.09.475.285.764.516.288.23.637.498.925.561s.518-.079.766-.202c.249-.124.516-.23.888-.225.371.005.847.12 1.318.37.47.248.938.63 1.184.866.247.236.272.327.245.362-.028.036-.108.018-.304-.14-.196-.157-.508-.454-.917-.688s-.916-.404-1.4-.391c-.482.013-.94.21-1.23.55s-.412.822-.546 1.164c-.133.341-.28.543-.47.617s-.424.02-.703-.099c-.28-.12-.604-.307-.874-.442-.269-.136-.484-.22-.62-.353s-.195-.31-.203-.571c-.01-.26.032-.6.05-.853.02-.25.018-.413-.038-.56a1.1 1.1 0 0 0-.232-.35c-.07-.07-.099-.075-.113-.058s-.012.058.01.158c.023.1.067.26.05.581-.019.321-.098.803-.16 1.17s-.107.618-.02.808.306.322.707.54c.4.22.982.527 1.518.855.537.327 1.027.673 1.562 1.089.534.415 1.112.9 1.5 1.238.39.339.588.532.742.59.154.059.264-.018.307-.138.044-.12.023-.285-.014-.429a1.2 1.2 0 0 0-.24-.46 5 5 0 0 0-.68-.704c-.287-.243-.614-.463-.803-.614s-.242-.233-.212-.259.14.004.302.108c.162.103.375.28.612.459.237.178.499.356.733.584.235.228.443.506.583.706.14.201.214.324.294.372.08.049.165.022.277-.05a3 3 0 0 0 .426-.355c.178-.169.398-.393.551-.633s.242-.496.299-.772.08-.572.247-.862.476-.574.994-1.025 1.244-1.07 1.891-1.664c.648-.595 1.216-1.165 1.696-1.802.479-.638.87-1.342 1.067-1.743.199-.4.205-.498.14-.526-.063-.027-.198.015-.61.313-.414.297-1.106.849-1.886 1.43-.781.58-1.65 1.19-2.336 1.569-.686.378-1.19.524-1.55.562-.361.037-.58-.034-.724-.11-.143-.077-.21-.158-.224-.241-.013-.084.03-.17.135-.275s.277-.232.447-.392.338-.354.468-.556.22-.411.261-.592.034-.333-.04-.376-.215.023-.376.11c-.162.086-.343.192-.593.3a2.7 2.7 0 0 1-.92.235 1.63 1.63 0 0 1-1.088-.313c-.343-.26-.635-.71-.866-1.147s-.398-.865-.512-1.12c-.108-.242-.168-.33-.246-.33zm-2.215 4.075a.42.42 0 0 0-.294.115c-.094.086-.145.2-.034.338.112.137.385.297.636.469.252.172.481.357.666.42.184.064.323.006.402-.096s.1-.247-.003-.404-.327-.325-.564-.481c-.238-.157-.488-.302-.681-.346a.6.6 0 0 0-.128-.015m.252.208q.038 0 .083.01c.118.026.272.115.418.211s.283.2.333.289.014.163-.048.216a.26.26 0 0 1-.247.053c-.1-.031-.216-.126-.36-.219-.145-.093-.319-.184-.387-.268s-.031-.162.029-.218a.26.26 0 0 1 .18-.074zm4.778 3.728c.211-.008.42.06.602.24.183.178.34.467.383.732s-.03.505-.125.692a1.6 1.6 0 0 1-.289.397c-.074.074-.109.095-.14.095h-.003c-.033-.001-.062-.023-.208-.171a7 7 0 0 1-.573-.642c-.165-.22-.232-.383-.263-.568-.032-.185-.027-.39.082-.536s.323-.23.534-.239m.093 1.111a.26.26 0 0 0-.153.046c-.058.041-.105.113-.093.185.012.073.085.146.174.255s.195.255.264.335c.068.08.1.093.127.091.029-.002.054-.018.086-.048a.35.35 0 0 0 .094-.157.5.5 0 0 0 .002-.316.67.67 0 0 0-.218-.282.48.48 0 0 0-.283-.109"/></svg>�����������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rich.svg�������������������������������������0000664�0000000�0000000�00000015337�14753064456�0024561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.419 10.32v-.645c0-.531.437-.968.968-.968h3.225a.96.96 0 0 1 .552.175 2.3 2.3 0 0 0-.904.47h-2.873a.325.325 0 0 0-.323.323v3.224c0 .177.146.323.323.323h2.921l.048.067v.578h-2.969a.973.973 0 0 1-.968-.968v-1.934h-5.13l.08.967h3.115v.645H4.423l.058.698a8.8 8.8 0 0 0 2.001.347 8 8 0 0 1 2.625.564c.138.04.244.146.288.276a4.2 4.2 0 0 0-1.771-.395H6.88c-.25 0-.485.065-.688.18a9.5 9.5 0 0 1-1.654-.286l.147 1.772q.4-.067.798-.15c.018.224.09.434.203.616q-.471.1-.947.179l.09 1.09c.03.332.31.589.643.591h2.101c-.335.14-.626.364-.846.645H5.472a1.3 1.3 0 0 1-1.285-1.183l-.548-6.556H2.358l.758 7.578c.081.821.78 1.453 1.605 1.451h1.565q.002.181.033.355c-.293.04-.566.141-.806.29h-.792a2.257 2.257 0 0 1-2.246-2.032l-.794-7.933-.001-.032c0-.088.036-.169.094-.228l2.58-2.58a.32.32 0 0 1 .228-.094h1.023a1 1 0 0 1-.056-.323.97.97 0 0 1 .713-.933 1 1 0 0 1-.068-.357c0-.53.437-.967.968-.967h1.29a.972.972 0 0 1 .922 1.26 1 1 0 0 1 .436-.258 1 1 0 0 1-.068-.357c0-.531.437-.968.967-.968h1.29a.973.973 0 0 1 .913 1.29h1.667c.331 0 .639.17.816.449a.95.95 0 0 1 .474-.126h2.58a.972.972 0 0 1 .912 1.29h.461l-.282-.174 1.876-3.051h-2.645V3.87h.637a5 5 0 0 0-.027-.323c-.64-.002-.853-.011-1.57-.04l-.09-.004a2.7 2.7 0 0 1-.673-.089.45.45 0 0 1-.267-.189.4.4 0 0 1-.041-.282.46.46 0 0 1 .238-.274q.089-.048.181-.089h-3.87v1.29h4.837v.645H2.579l1.087 1.766-.549.338-1.389-2.258a.3.3 0 0 1-.048-.169C1.68 1.802 3.205 0 5.227 0h.078c.403 0 .747.275.855.645h11.679A.895.895 0 0 1 18.693 0h.078c2.023 0 3.548 1.802 3.548 4.192a.32.32 0 0 1-.067.196L20.191 7.74h.193c.53 0 .967.437.967.967a.97.97 0 0 1-.22.614l1.083 1.082c.065.06.106.145.106.239l-.001.032-.794 7.933a2.26 2.26 0 0 1-2.188 2.032 2.05 2.05 0 0 0-.805-.29q.032-.174.032-.355h.714a1.614 1.614 0 0 0 1.604-1.451l.76-7.578h-1.283l-.546 6.556a1.303 1.303 0 0 1-1.287 1.183h-.403a2 2 0 0 0-.319-.328v-.317h.722a.65.65 0 0 0 .643-.591l.004-.054c-.578 0-1.099-.002-1.636-.018v-.645c.553.017 1.091.018 1.69.018l.08-.96a8 8 0 0 0-1.77.237v-.665a9 9 0 0 1 1.824-.219l.081-.971q-.956.012-1.905.105v-.647a23 23 0 0 1 1.958-.103l.081-.969h-1.521q.201-.302.298-.645h1.276l.081-.967h-1.276a2.3 2.3 0 0 0-.129-.645h2.079a.324.324 0 0 0 .322-.323.323.323 0 0 0-.322-.322.325.325 0 0 1-.323-.323c0-.177.146-.322.323-.322a.324.324 0 0 0 .322-.323.323.323 0 0 0-.322-.322h-1.935a.325.325 0 0 1-.323-.323c0-.177.146-.322.323-.322a.324.324 0 0 0 .322-.323.323.323 0 0 0-.322-.322h-2.58a.32.32 0 0 0-.277.161.32.32 0 0 1-.279.161h-.089a.323.323 0 0 1-.322-.322.325.325 0 0 0-.323-.323h-2.58a.323.323 0 0 1-.322-.322c0-.177.145-.323.322-.323a.324.324 0 0 0 .323-.322.325.325 0 0 0-.323-.323h-1.29a.323.323 0 0 0 0 .645c.177 0 .323.146.323.323a.324.324 0 0 1-.323.322h-.645a.32.32 0 0 0-.302.218.32.32 0 0 1-.305.215.33.33 0 0 1-.179-.054.3.3 0 0 0-.181-.056h-.645a.325.325 0 0 1-.323-.323c0-.177.146-.322.323-.322a.324.324 0 0 0 .322-.323.323.323 0 0 0-.322-.322h-1.29a.324.324 0 0 0-.323.322c0 .177.146.323.323.323a.323.323 0 0 1 0 .645h-.645a.324.324 0 0 0-.323.322c0 .177.146.323.323.323a.323.323 0 0 1 0 .645H4.904a.324.324 0 0 0-.322.322c0 .177.146.323.322.323s.323.145.323.322a.325.325 0 0 1-.323.323H4.26a.324.324 0 0 0-.323.322c0 .177.146.323.323.323h1.289a.3.3 0 0 0 .081-.013.3.3 0 0 1 .162 0 .4.4 0 0 0 .08.013h2.58a.324.324 0 0 0 .322-.323.323.323 0 0 0-.322-.322h-.968V9.03h.968a.97.97 0 0 1 .911 1.29zm3.225-6.45V1.29h-1.29v2.58zm-10.309 0h1.609c.089-1.854.936-2.52 1.452-2.754A.25.25 0 0 0 5.55.89a.246.246 0 0 0-.244-.245h-.079C3.662.645 2.46 2.01 2.335 3.87m2.255 0h6.119V2.257c-1.154 0-2.459.001-3.508.003h-.077q.099.06.208.119.19.1.368.223a.43.43 0 0 1 .18.536.45.45 0 0 1-.258.228 2.1 2.1 0 0 1-.696.123c-.793.043-1.475.055-2.309.058q-.018.153-.027.323m14.663-.969c-.226-.759-.637-1.071-.917-1.198a.9.9 0 0 1-.434-.413h-4.613v.645c1.274 0 3.003 0 4.155.002h.055q.195-.01.385.032a.515.515 0 0 1 .44.528.54.54 0 0 1-.265.373c.494.021.727.029 1.194.031M6.096 1.29a.9.9 0 0 1-.434.413c-.279.127-.691.439-.917 1.198a41 41 0 0 0 2.103-.054 2 2 0 0 1-.295-.207.63.63 0 0 1-.235-.405.58.58 0 0 1 .417-.572c.132-.04.271-.056.409-.048h.055c1.051-.002 2.356-.003 3.51-.003V1.29zm-3.315 9.03h.566a1 1 0 0 1-.056-.323q0-.108.024-.212zm17.273-6.45h1.609C21.538 2.01 20.337.645 18.771.645h-.078a.245.245 0 0 0-.244.244.25.25 0 0 0 .154.226c.516.235 1.362.901 1.451 2.755m-6.698 12.638a5.4 5.4 0 0 1-1.062.19q-.296.037-.593.069l-.167.014a4 4 0 0 0-.289-.618q.193-.022.386-.037.29-.032.58-.068a4.8 4.8 0 0 0 1.145-.222zm-.284-3.609h-2.363a.323.323 0 0 1-.322-.322v-2.58c0-.177.145-.322.322-.322h2.24a2.2 2.2 0 0 0-.359.645h-1.558v1.934h1.627q.096.212.236.403zm-5.467 5.147.005-.01v.008zM3.292 11.61v.644h-.645v-.644zm1.29 7.094v.645h-.645v-.645zm16.769-7.417v.645h-.645v-.645zm-1.29 7.417v.645h-.645v-.645zM8.774 11.932v.645h-.645v-.645zm3.548-1.29v1.29h-.645v-1.29zM4.064 6.927l.395.642-.549.338-.395-.642zm14.18 13.902c.875 0 1.586.712 1.586 1.585 0 .875-.711 1.586-1.586 1.586H6.606a1.586 1.586 0 0 1 0-3.171h.427a1.6 1.6 0 0 1-.247-.845c0-.785.574-1.437 1.324-1.563v-.786c0-.385-.172-.744-.473-.986l-.034-.028a1.16 1.16 0 0 0-.723-.254c-.497 0-.902-.404-.902-.9s.405-.9.902-.9h.744c.836 0 1.653.288 2.304.812a3.63 3.63 0 0 1 1.363 2.842v.177h2.565v-5.272l-.557-.764a1.76 1.76 0 0 1-.342-1.045v-.233a1.78 1.78 0 0 1 1.781-1.775h1.418a1.78 1.78 0 0 1 1.781 1.775v.233c0 .379-.118.739-.341 1.045l-.559.764v5.376a1.59 1.59 0 0 1 1.027 1.482c0 .311-.092.599-.246.845zm-3.385-5.232a.263.263 0 0 1-.021-.372l.345-.389v-.794a1.8 1.8 0 0 1-.586-.196v4.552h1.7v-4.552a1.8 1.8 0 0 1-.585.196v.794l.345.389a.264.264 0 0 1-.023.372.26.26 0 0 1-.175.068.27.27 0 0 1-.198-.089l-.214-.241-.214.241a.27.27 0 0 1-.198.089.27.27 0 0 1-.176-.068m-6.758.475a2 2 0 0 1 .75 1.563v.763h1.7v-.177a3 3 0 0 0-.076-.662l-.406-.062a1.67 1.67 0 0 1-1.398-1.438l-.072-.585a3 3 0 0 0-.975-.167H6.88a.16.16 0 0 0-.162.16.16.16 0 0 0 .162.159c.431 0 .852.149 1.186.418zm8.342 7.188a3.01 3.01 0 0 1 2.057-1.616l.06-.012a.8.8 0 0 0-.316-.063H6.606a.847.847 0 0 0 0 1.691h.558l-.007-.006a.82.82 0 0 1-.265-.604c0-.409.307-.76.714-.816l.985-.136a1.116 1.116 0 0 1 1.197 1.497l-.025.065zm-8.817-3.672a.84.84 0 0 0-.099.396c0 .466.379.845.846.845h4.31a1.524 1.524 0 0 1 2.267-1.097l.199.113c.374.214.636.574.73.984h.599a.847.847 0 0 0 0-1.691h-4.935l-.125.202a2.15 2.15 0 0 1-1.831 1.017c-.348 0-.701-.085-1.028-.261zm6.072-8.271c0 .22.068.431.199.608l.709.971a1.044 1.044 0 0 0 1.682 0l.71-.971c.13-.177.199-.388.199-.608v-.233c0-.451-.293-.835-.698-.976v.301a.265.265 0 0 1-.265.265.265.265 0 0 1-.264-.265v-.359h-.258v.684a.265.265 0 0 1-.265.265.265.265 0 0 1-.264-.265v-.684h-.258v.359a.265.265 0 0 1-.265.265.265.265 0 0 1-.264-.265v-.301a1.04 1.04 0 0 0-.698.976zm1.157.309a.3.3 0 0 1-.303.301.3.3 0 0 1-.302-.301.303.303 0 0 1 .605 0m1.672.012a.303.303 0 0 1-.303.302.3.3 0 0 1-.302-.302.302.302 0 0 1 .605 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rider.svg������������������������������������0000664�0000000�0000000�00000001012�14753064456�0024722�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm7.031 3.113A4.06 4.06 0 0 1 9.72 4.14a3.23 3.23 0 0 1 .84 2.28A3.16 3.16 0 0 1 8.4 9.54l2.46 3.6H8.28L6.12 9.9H4.38v3.24H2.16V3.12c1.61-.004 3.281.009 4.871-.007m5.509.007h3.96c3.18 0 5.34 2.16 5.34 5.04 0 2.82-2.16 5.04-5.34 5.04h-3.96zm4.069 1.976c-.607.01-1.235.004-1.849.004v6.06h1.74a2.88 2.88 0 0 0 3.06-3 2.897 2.897 0 0 0-2.951-3.064M4.319 5.1v2.88H6.6c1.08 0 1.68-.6 1.68-1.44 0-.96-.66-1.44-1.74-1.44zM2.16 19.5h9V21h-9Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rimacautomobili.svg��������������������������0000664�0000000�0000000�00000001502�14753064456�0027001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.422 1.317C18.428.488 15.194-.017 12.007 0 8.819-.017 5.586.487 2.594 1.317a.49.49 0 0 0-.342.455c0 7.95 2.976 17.802 9.479 22.142a.46.46 0 0 0 .537 0c6.503-4.34 9.495-14.175 9.479-22.142.016-.21-.13-.39-.326-.455zM15.91 17.055c-1.025 1.723-2.244 3.267-3.691 4.454a.32.319 0 0 1-.407 0C7.845 18.241 5.537 12.47 4.658 6.893L3.65 6.356h7.479c2.407 0 2.715.78 2.715 1.35s-.308 1.35-2.714 1.35H8.934a.13.13 0 0 0-.13.13q0 .049.05.097l7.332 7.332.78.78zm1.333-2.65-4.374-4.374c-.065-.065-.016-.162.065-.18l.862-.096c1.805-.195 2.845-1.106 2.845-2.244 0-1.317-1.398-2.049-3.723-2.049H4.446A24.735 24.733 0 0 1 4.268 3.3a.46.46 0 0 1 .374-.487 32.298 32.296 0 0 1 7.3-.862h.13c2.39 0 4.878.293 7.301.862.227.049.39.26.373.487-.179 3.625-.99 7.593-2.503 11.104z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rime.svg�������������������������������������0000664�0000000�0000000�00000001225�14753064456�0024557�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.733 0H2.267C1 0 0 1 0 2.267v19.466C0 23 1 24 2.267 24h19.466C23 24 24 23 24 21.733V2.267C24 1 22.933 0 21.733 0m-1.6 20.667H19.8c-.6 0-5.933-.134-7.733-.134-1.934 0-7.867.134-7.934.134H3.8v-1.134L3.733 18.4h.334c.066 0 4.2-.2 6.733-.267v-2.466c-2.733-.134-4.667-.867-5.933-2.134-1.934-2-1.8-4.866-1.734-7.933v-.867l2.4.067v.933c-.066 2.6-.2 4.867 1.067 6.134.8.8 2.133 1.266 4.2 1.4V3.533h2.4V13.2q3-.2 4.2-1.4c1.2-1.267 1.133-3.533 1.067-6.133v-.934l2.4-.066v.866c.133 3.067.2 5.934-1.734 7.934-1.266 1.266-3.2 2-5.933 2.133v2.467c2.467.066 6.667.266 6.733.266h.334l-.067 1.134Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ring.svg�������������������������������������0000664�0000000�0000000�00000004174�14753064456�0024570�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 16.375a3.05 3.05 0 0 1-.246 1.231 3.11 3.11 0 0 1-1.672 1.66 3.1 3.1 0 0 1-1.225.247 3.7 3.7 0 0 1-.71-.073 4 4 0 0 1-.739-.218 3.2 3.2 0 0 1-.676-.37 2 2 0 0 1-.507-.515.46.46 0 0 1-.08-.275.44.44 0 0 1 .152-.346.5.5 0 0 1 .346-.138.6.6 0 0 1 .201.04.4.4 0 0 1 .186.17.05.05 0 0 0 .016.032l.064.065a1.8 1.8 0 0 0 .798.507 3 3 0 0 0 .943.154 2.1 2.1 0 0 0 .846-.17 2.2 2.2 0 0 0 1.16-1.16 2.1 2.1 0 0 0 .176-.841v-1.109a3.1 3.1 0 0 1-.985.637 3.1 3.1 0 0 1-1.193.234 3.05 3.05 0 0 1-1.231-.246 3.14 3.14 0 0 1-1.66-1.66 3 3 0 0 1-.247-1.232v-2.544a3.1 3.1 0 0 1 .247-1.225 3.2 3.2 0 0 1 .668-1 3.2 3.2 0 0 1 .986-.669 3.15 3.15 0 0 1 2.463 0 3.1 3.1 0 0 1 1.668 1.668 3.1 3.1 0 0 1 .246 1.225v5.92zm-.967-5.92a2.1 2.1 0 0 0-.17-.846 2.2 2.2 0 0 0-1.16-1.16 2.2 2.2 0 0 0-1.692 0 2.2 2.2 0 0 0-1.166 1.16 2.1 2.1 0 0 0-.168.845v2.531a2.1 2.1 0 0 0 .168.853 2.2 2.2 0 0 0 .468.693 2.2 2.2 0 0 0 .694.467 2.2 2.2 0 0 0 1.692 0 2.2 2.2 0 0 0 1.16-1.16 2.1 2.1 0 0 0 .174-.853zm-7.252 5.356a.44.44 0 0 1-.154.363.51.51 0 0 1-.66 0 .43.43 0 0 1-.153-.363v-5.356a2.1 2.1 0 0 0-.17-.846 2.2 2.2 0 0 0-1.16-1.16 2.2 2.2 0 0 0-1.692 0 2.2 2.2 0 0 0-1.16 1.16 2.1 2.1 0 0 0-.17.846v5.356a.43.43 0 0 1-.152.363.51.51 0 0 1-.661 0 .43.43 0 0 1-.153-.363v-5.356a3.1 3.1 0 0 1 .246-1.225 3.2 3.2 0 0 1 .67-1 3.2 3.2 0 0 1 .984-.669 3.15 3.15 0 0 1 2.464 0 3.1 3.1 0 0 1 1.667 1.668 3.1 3.1 0 0 1 .247 1.225zm-8.383 0a.44.44 0 0 1-.152.363.51.51 0 0 1-.662 0 .43.43 0 0 1-.152-.363V7.956a.44.44 0 0 1 .152-.363.51.51 0 0 1 .662 0 .44.44 0 0 1 .152.363zM4.982 8.44a.46.46 0 0 1-.145.338.48.48 0 0 1-.355.142.5.5 0 0 1-.339-.145l-.016-.017a.2.2 0 0 0-.032-.024.1.1 0 0 1-.033-.025 1.9 1.9 0 0 0-1.24-.43q-.871 0-1.363.595-.491.596-.492 1.693v5.243a.44.44 0 0 1-.153.363.53.53 0 0 1-.33.123.53.53 0 0 1-.33-.123.43.43 0 0 1-.153-.363v-5.243A4.4 4.4 0 0 1 .18 9.303a3 3 0 0 1 .53-1.031 2.55 2.55 0 0 1 .878-.706 2.8 2.8 0 0 1 1.231-.257 3.1 3.1 0 0 1 1.065.209 2.6 2.6 0 0 1 .934.58.48.48 0 0 1 .163.343zm2.76-3.128a.826.826 0 0 1-.826.827.826.826 0 0 1-.827-.827.826.826 0 0 1 .827-.826.826.826 0 0 1 .826.826"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/riotgames.svg��������������������������������0000664�0000000�0000000�00000000453�14753064456�0025617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.458.86 0 7.093l3.353 12.761 2.552-.313-.701-8.024.838-.373 1.447 8.202 4.361-.535-.775-8.857.83-.37 1.591 9.025 4.412-.542-.849-9.708.84-.374 1.74 9.87L24 17.318V3.5Zm.316 19.356.222 1.256L24 23.14v-4.18l-10.22 1.256Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ripple.svg�����������������������������������0000664�0000000�0000000�00000001257�14753064456�0025123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.55 14.65c-.846-.486-1.805-.632-2.752-.666-.79-.023-1.974-.541-1.974-1.985 0-1.072.868-1.94 1.985-1.985.947-.034 1.906-.18 2.752-.666A5.02 5.02 0 0 0 22.4 2.502 5.04 5.04 0 0 0 15.53.674a4.99 4.99 0 0 0-2.504 4.343c0 .97.35 1.861.79 2.696.372.699.553 1.996-.71 2.73-.948.54-2.132.202-2.719-.745-.496-.801-1.094-1.545-1.94-2.03A5.01 5.01 0 0 0 1.6 9.495a5.02 5.02 0 0 0 1.84 6.845 5.03 5.03 0 0 0 5.008 0c.846-.485 1.444-1.23 1.94-2.03.406-.654 1.433-1.489 2.718-.744.948.541 1.241 1.737.711 2.73-.44.823-.79 1.725-.79 2.695A5.01 5.01 0 0 0 18.034 24a5.01 5.01 0 0 0 5.008-5.008 4.98 4.98 0 0 0-2.492-4.343z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/riscv.svg������������������������������������0000664�0000000�0000000�00000000517�14753064456�0024754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.95.051h16.947v6.21L13.473 21.004l-.524.734-5.789-6.842c4.103-.74 6.21-3.896 6.21-7.37C13.37 4.05 11.263.472 6.95.05m-5.475 13.37 8.74 10.528H0V3.419h5.474c2.945 0 4.422 1.999 4.422 4.107s-1.477 4.21-4.422 4.21H1.475zm14.07 10.528H24V12.157l-7.685 10.738z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/riseup.svg�����������������������������������0000664�0000000�0000000�00000000274�14753064456�0025135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.5 24-1.485-9.007-8.961-1.738L8.16 9.06 7.045 0l6.495 6.414 8.271-3.861-4.093 8.16 6.228 6.673-9.024-1.372z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ritzcarlton.svg������������������������������0000664�0000000�0000000�00000027414�14753064456�0026206�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.543 16.862a2.8 2.8 0 0 1-1.168-.743h-.071q-.33.023-1.416-.142c-1.086-.165-1.33-.519-1.817-1.227a2.33 2.33 0 0 1-1.086 1.097q-.73.366-1.817.39a4.2 4.2 0 0 1-1.215.696q-.625.224-1.428.224-.945 0-1.711-.602c-.766-.602-.767-.94-.767-1.616q0-.236.024-.472.023-.237.094-.425.448.59 1.015.861.566.272.991.272.66 0 .932-.496.272-.495.272-1.321v-.342q0-.178-.024-.343-.024-.92.106-1.817t1.121-1.723l.236-.189q-.189.048-.342.083a1.2 1.2 0 0 1-.248.035q-.165 0-.448-.354a1.66 1.66 0 0 1-.354-.731q-.071-.19.035-.295c.106-.105.17-.154.295-.248h.024l.023-.024q-.023-.024-.07-.012a.5.5 0 0 1-.118.012.23.23 0 0 1-.107.024h-.13a1.5 1.5 0 0 1-.707-.165 7 7 0 0 1-.225-.095q-.105-.047-.224-.047c-.119 0-.15.004-.212.012s-.11.02-.142.035H5.7q-.047 0-.094-.059-.048-.06-.048-.177 0-.33.248-.472.247-.141.437-.141.165 0 .307.047l.283.094q.165.048.307.083a.4.4 0 0 0 .283-.036 7 7 0 0 1-.154-.247 7 7 0 0 0-.153-.248l-.153.035a1 1 0 0 1-.083.012q-.213 0-.366-.236-.153-.235-.295-1.11a2.3 2.3 0 0 1-.271-.46.9.9 0 0 1-.083-.318q0-.213.165-.354a2.5 2.5 0 0 1 .425-.283L8.39 2.289q.189-.472.39-.72c.201-.248.303-.271.507-.318q.354-.071.802-.118.45-.048.968-.071a1.4 1.4 0 0 1 .354-.33.8.8 0 0 1 .425-.118q.047 0 .106.011c.059.011.083.02.13.036q.117.023.248.047.129.024.295.024.117 0 .318-.012c.201-.012.295-.02.484-.036q.118-.094.366-.212t.53-.236q.12-.07.26-.13.142-.06.26-.106.19.118.53.437c.34.319.398.436.508.672q1.511.26 1.876.72.366.46.366 1.239c0 .779.142.905.425 1.156q.425.378.66.496a.47.47 0 0 1-.341.141 1.2 1.2 0 0 1-.437-.094q.543.33.85.79t.4 1.05q-.235-.14-.495-.259c-.26-.119-.346-.134-.519-.165q.307.33.448.779t.142.991q0 .425-.165.956t-.614 1.12q.071.072.118.201a.8.8 0 0 1 .047.319q0 .52-.212.92c-.212.4-.299.52-.472.756a10 10 0 0 0-.425.696 1.6 1.6 0 0 0-.189.79q0 .686.46.968c.46.282.61.283.91.283q.211 0 .518-.07.308-.072.614-.307.047.141.083.307c.036.166.035.228.035.354q0 .825-.555 1.333c-.555.508-.908.507-1.616.507q-.566 0-1.24-.224m1.616 3.646a.5.5 0 0 1 .236.177q.071.107.024.248a3 3 0 0 1-.07.236l-.095.283q-.142.378-.295.85c-.153.472-.154.621-.154.92q0 .165.012.247c.012.082.012.098.012.13s.004.059.012.082.012.052.012.083q0 .119-.083.177a.28.28 0 0 1-.2.059H6.571a.34.34 0 0 1-.2-.059q-.083-.06-.083-.177v-.083q0-.035.024-.082 0-.048.011-.13c.011-.082.012-.138.012-.248q0-.447-.153-.92c-.153-.473-.2-.597-.295-.849a4 4 0 0 0-.095-.295 2 2 0 0 0-.094-.224.33.33 0 0 1 .047-.248.5.5 0 0 1 .236-.177l-1.557-3.587.118-.023q.117.166.507.448t1.003.283l.047.071a.71.71 0 0 0-.212.625q.047.366.354.366.212 0 .295-.141a.8.8 0 0 0 .106-.284l.07-.023q.024 0 .072.035a11 11 0 0 1 .342.212q.129.084.177.13l-.047.236-.048.236a1 1 0 0 0-.035.142.4.4 0 0 1-.035.118h-.071a.34.34 0 0 0-.165-.153.5.5 0 0 0-.142-.036.27.27 0 0 0-.224.106.43.43 0 0 0-.083.272q0 .284.165.507.166.224.567.224.424 0 .814-.212c.39-.212.39-.362.39-.66a.86.86 0 0 0-.154-.473 1.05 1.05 0 0 0-.484-.377v-.071a3.3 3.3 0 0 0 .449-.437q.212-.247.26-.39h.07q.095.12.366.32t.53.27v.072q-.236.235-.306.448c-.07.213-.07.26-.07.354q0 .377.259.59t.944.212q.495 0 .908-.177t.413-.649q0-.26-.153-.4a.52.52 0 0 0-.366-.142.5.5 0 0 0-.248.059.7.7 0 0 0-.224.247h-.07q0-.023-.048-.07a6 6 0 0 0-.189-.225 3 3 0 0 0-.26-.247v-.071q.095-.07.225-.224a4 4 0 0 0 .271-.366h.071q.213.235.319.295.105.06.271.059a.6.6 0 0 0 .26-.071q.141-.071.141-.283 0-.26-.26-.39c-.26-.13-.346-.16-.519-.224v-.07q.426-.166.791-.555c.365-.389.39-.484.437-.673h.094q.07.283.437.673c.367.39.507.444.79.554v.071q-.26.095-.519.224c-.259.129-.26.217-.26.39q0 .212.142.283a.58.58 0 0 0 .531.012q.106-.06.295-.295h.094q.142.212.272.366.13.153.224.224v.07q-.165.143-.26.248a6 6 0 0 0-.188.225q-.048.047-.048.07h-.094a.7.7 0 0 0-.224-.247.46.46 0 0 0-.224-.06.52.52 0 0 0-.366.142.52.52 0 0 0-.154.401q0 .472.413.65.414.176.909.176.683 0 .944-.212.26-.213.26-.59 0-.141-.071-.354c-.071-.213-.15-.291-.307-.448v-.071q.26-.07.53-.272.273-.2.343-.318h.094q.048.141.248.39.201.246.437.436v.07a1.06 1.06 0 0 0-.46.378.86.86 0 0 0-.154.472q0 .45.39.66c.39.21.53.213.814.213q.4 0 .566-.224a.83.83 0 0 0 .165-.507q0-.165-.082-.272a.27.27 0 0 0-.224-.106.6.6 0 0 0-.154.036.25.25 0 0 0-.153.153h-.07a.4.4 0 0 1-.036-.118 1 1 0 0 0-.036-.142l-.047-.236-.047-.236q.047-.046.177-.13c.13-.084.169-.106.248-.153q.047-.023.094-.059c.047-.036.055-.035.07-.035l.072.023a.8.8 0 0 0 .106.284q.082.141.271.141.33 0 .378-.366a.71.71 0 0 0-.213-.625l.048-.07q.613 0 1.003-.284c.39-.284.428-.338.507-.448l.118.023-1.558 3.587zM5.345 15.482a5 5 0 0 1-.566-.284q.236.874.885 1.098c.649.224.782.224 1.05.224q.448 0 .826-.106.377-.107.731-.413a2 2 0 0 1-.53-.095q-.201-.07-.248-.165 1.015-.118 1.144-1.192.13-1.073.106-2.112v-.661q0-1.486.696-2.16.697-.672 3.127-1.71a7.8 7.8 0 0 0 1.582-.897q.825-.59.826-1.534 0-.33-.26-.861c-.26-.531-.606-.704-1.298-1.05a1 1 0 0 0-.094-.083 1 1 0 0 0-.095-.06l-.448-.471q.944-.19 1.935.484.99.672.991 1.734 0 .968-.684 1.723c-.684.755-1.22.999-2.29 1.487l-.117.047q-1.393.614-2.325 1.263t-.932 2.088a7 7 0 0 0 .189 1.652q.024-.967.4-2.207.379-1.239 2.054-1.663a4.6 4.6 0 0 0-.401 1.911q0 1.04.401 1.924.4.885 1.18 1.451.803.59 1.982.59-1.368-.778-1.77-1.876a9.3 9.3 0 0 1-.519-2.089 2.6 2.6 0 0 0-.236.697q-.094.437-.023.696a3.5 3.5 0 0 1-.295-.755 3.3 3.3 0 0 1-.107-.85q0-.708.284-1.487.282-.779 1.463-1.369a4.5 4.5 0 0 0-.531.756q-.225.4-.224.944 0 .235.023.483.024.248.118.508.048-.637.413-1.216c.365-.579.515-.79.814-1.215q.33-.449.661-.944.331-.496.566-1.038.119.141.142.507c.023.366-.031.468-.142.673q.425-.307.638-.838c.213-.531.212-.775.212-1.263q0-.424-.189-1.074-.189-.648-.873-1.31.284.142 1.038.827c.754.685.756 1.077.756 1.864q0 .708-.579 1.7-.578.99-1.97 2.029.944-.213 2.136-.968 1.191-.755 1.191-2.525 0-.755-.72-2.018c-.72-1.263-1.301-1.333-2.465-1.475a.26.26 0 0 1 .106-.153q.082-.06.177-.106.188-.118.365-.283t.177-.472q0-.285-.212-.614c-.212-.329-.385-.472-.731-.755q-1.18.189-1.381.602c-.201.413-.2.444-.2.507q0 .26.212.484c.212.224.338.31.59.484q.094.046.059.094-.035.047-.083.047-.047 0-.13-.059-.083-.06-.224-.153-.33-.26-.932-.614c-.602-.354-.854-.354-1.357-.354q-.732 0-1.38.06-.65.058-.791.129-.164.07-.272.189c-.108.119-.106.165-.106.26q.165-.072.354-.13a1.1 1.1 0 0 1 .33-.06q.12 0 .331.06.212.058.212.177H9.9q-.213 0-.284.047c-.071.047-.07.063-.07.094q0 .094.047.154a.25.25 0 0 0 .118.082.13.13 0 0 0 .094.012.3.3 0 0 1 .071-.012.2.2 0 0 1 .07-.023h.072q.023 0 .023.023v.047q0 .048-.082.142c-.082.094-.138.126-.248.189q.118-.024.26-.047c.142-.023.157-.024.188-.024q0 .024-.059.094c-.059.07-.067.079-.082.095a.15.15 0 0 1-.06.035.4.4 0 0 1-.106.012.6.6 0 0 0-.153.024l-.153.047q-.165.07-.33.094a.45.45 0 0 1-.26-.023l.094-.095.142-.047q-.26.024-.366-.06-.106-.082-.177-.412-.732.354-1.298.637a23 23 0 0 0-.944.496q-.165.07-.165.188 0 .12.118.26l.519-.236a.3.3 0 0 1 .083.06q.035.035.035.105t-.047.13q-.048.06-.095.13a1 1 0 0 0-.153.2.46.46 0 0 0-.059.225q0 .094.094.413t.166.318a.2.2 0 0 0 .094-.023.4.4 0 0 0 .094-.071q.024 0 .048-.024c.024-.024.031-.023.047-.023a1.7 1.7 0 0 1 .39-.177q.247-.083.766-.13.26-.236.39-.295a.5.5 0 0 1 .2-.06q.119 0 .212.06.095.06.213.177l1.203 1.109-.047.378q-.543 0-.861.165-.32.165-.838.684a.9.9 0 0 1-.342.224q-.177.06-.319.083a3 3 0 0 0-.224.083q-.082.034-.082.153 0 .189.224.531.225.342.436.342.237 0 .755-.295c.518-.295.598-.42.756-.672q.307-.543.967-.744t1.015-.2h.212q.118 0 .236.023h.332a.64.64 0 0 0 .436-.153q.178-.153.319-.555-.165.094-.46.142a4 4 0 0 1-.342.047q-.19 0-.248-.024c-.058-.024-.051-.039-.036-.07q.285-.118.437-.213a.7.7 0 0 0 .2-.165.5.5 0 0 0 .024-.165v-.508q0-.153.095-.295a.63.63 0 0 1 .212.236q.094.165.094.284.072-.165.107-.284a.95.95 0 0 0-.024-.578.66.66 0 0 0-.2-.271q.47 0 .625.366.153.366.153.767 0 .944-.66 1.38c-.66.436-.976.578-1.605.862a5 5 0 0 0-.425.165l-.425.189q-1.63.754-2.361 1.652-.731.896-.731 3.233v.047q0 .543-.225 1.629-.224 1.085-1.569 1.085-.496 0-.826-.141m2.867-8.768q.012-.012.012-.035.024-.024.047-.024c.023 0 .04.008.071.024q.024 0 .036.011l.035.036q.235-.166.52-.283.283-.119.424-.118a1.1 1.1 0 0 0-.307-.142 1.3 1.3 0 0 0-.354-.047q-.141 0-.295.047a.9.9 0 0 0-.318.189l-.048.047a.3.3 0 0 1-.07.047q-.142.119-.378.272t-.566.059l-.19-.048a.5.5 0 0 1-.164-.07q-.12-.024-.213-.048c-.093-.024-.134-.023-.212-.023a.5.5 0 0 0-.272.07q-.106.072-.106.142 0 .048.024.071.024.024.094.024a.1.1 0 0 0 .047-.012.1.1 0 0 1 .048-.012.4.4 0 0 0 .094-.012.5.5 0 0 1 .118-.012.6.6 0 0 1 .212.048q.119.047.26.094.14.07.319.142.177.07.365.07.33 0 .484-.153t.248-.319zm3.859 16.39h2.773q1.261 0 2.277-.023l.425-1.841a48 48 0 0 0-2.761-.295 35 35 0 0 0-5.44 0 49 49 0 0 0-2.75.295l.426 1.84a99 99 0 0 0 2.277.024zM7.41 3.67q.225-.082.39-.107a.5.5 0 0 1-.13.307 1.6 1.6 0 0 1-.248.26v.023a.27.27 0 0 1-.154-.059.18.18 0 0 1-.082-.153q0-.189.224-.271m-.083 18.42q0 .023.13.165.13.141.154.141c.024 0 .062-.047.141-.141s.118-.15.118-.166q0-.07-.118-.2c-.118-.13-.126-.13-.141-.13s-.067.043-.154.13q-.13.13-.13.2zm.095-16.568q-.071.165.023.378c.094.213.181.212.354.212q.024-.189.024-.366c0-.177-.024-.216-.07-.295q-.12.024-.213.036-.095.012-.118.035m1.227 1.652a.25.25 0 0 0-.13-.224.46.46 0 0 0-.248-.083q-.047.142-.047.26c0 .118.016.15.047.212q.048 0 .154-.023c.106-.023.145-.063.224-.142m-.378 15.4q-.047-.036-.047-.107v-.85q0-.094.047-.13c.047-.036.071-.035.118-.035l.732-.047q.378-.024.613-.024.095 0 .154.06a.18.18 0 0 1 .059.13v.849q0 .094-.06.141c-.06.047-.09.048-.153.048H8.39a.2.2 0 0 1-.118-.036zm.425-.579q0 .024.165.212.165.19.213.19c.048 0 .098-.064.2-.19q.154-.188.154-.212 0-.07-.154-.248c-.154-.178-.169-.177-.2-.177s-.103.06-.213.177-.165.2-.165.248m2.584-8.708a7 7 0 0 0-.153-.59q-.095-.449-.189-.933a3.2 3.2 0 0 1-.024-1.026q-.447.495-.554 1.073-.105.579-.154 1.17-.047.683-.188 1.332-.143.65-.732 1.24.78 0 1.416-.425.637-.426.637-1.298 0-.26-.059-.543M9.97 3.94a3 3 0 0 0-.13.437.34.34 0 0 0 .06.295.7.7 0 0 0 .188.165q.12.07.26.141.213.095.448.236c.235.141.3.236.425.425l.024-.047a1.1 1.1 0 0 0-.26-.53 5 5 0 0 0-.377-.367q-.189-.141-.354-.318a.8.8 0 0 1-.236-.437zm.307 18.054q0 .023.13.165t.153.142.142-.142.118-.165q0-.046-.118-.177-.118-.13-.142-.13t-.153.13c-.13.13-.13.146-.13.177m2.455.66H11.41q-.094 0-.142-.058a.2.2 0 0 1-.047-.13v-.92q0-.094.047-.142.049-.047.142-.047h1.322q.095 0 .141.047.047.048.047.142v.92q0 .07-.047.13-.046.06-.141.059zm-1.062-.66q0 .024.165.212.165.19.236.19.023 0 .189-.19.165-.188.165-.212 0-.07-.165-.248-.165-.177-.19-.177-.07 0-.235.177-.165.176-.165.248m2.194 0q0-.046-.13-.177c-.13-.131-.137-.13-.153-.13q-.024 0-.141.13-.119.13-.118.177 0 .023.118.165t.141.142.154-.142.13-.165zm.2-20.083a.8.8 0 0 1-.129-.425q0-.143.095-.33c.095-.187.251-.244.566-.355q.024 0 .024.012V.85a.2.2 0 0 1-.024.094 2 2 0 0 0-.06.142.6.6 0 0 0-.034.212q0 .213.165.319t.283.106q.141 0 .224-.083c.083-.083.083-.114.083-.177q0-.07.012-.153.01-.083.059-.083a.58.58 0 0 1 .165.425.65.65 0 0 1-.177.437 1.6 1.6 0 0 1-.531.365l-.118-.07q-.473-.26-.602-.472zm2.821 7.882q-.589.283-1.133.472-.684.236-1.18.53t-.495 1.098a1.8 1.8 0 0 0 .33 1.039q.024-.66.236-1.11.212-.448.614-.66a1.8 1.8 0 0 0-.283.672 4 4 0 0 0-.071.72q0 1.864 1.003 2.856 1.002.99 2.206.991.637 0 .98-.283t.389-.85a1.1 1.1 0 0 1-.484.2 3 3 0 0 1-.413.036q-1.18 0-1.71-.85-.532-.849-.272-2.052-.142.447-.33.755a1.44 1.44 0 0 1-.449.472q.07-.19.06-.413a9 9 0 0 1-.013-.484 4 4 0 0 1-.047-.614q0-.59.33-.956t.708-.72q.402-.33.732-.708c.33-.378.33-.582.33-.99a2.95 2.95 0 0 1-1.038.849m-2.478 12.815q-.095 0-.153-.048c-.058-.048-.06-.078-.06-.141v-.85q0-.07.06-.13a.2.2 0 0 1 .153-.059q.213 0 .602.024l.743.047q.071 0 .118.036c.047.036.047.067.047.13v.849q0 .071-.047.106c-.047.035-.07.036-.118.036zm.307-.614q0 .024.165.212.165.19.213.19.023 0 .188-.19.165-.188.165-.212 0-.07-.165-.248c-.165-.178-.173-.177-.188-.177q-.048 0-.213.177c-.165.177-.165.2-.165.248M16.2 1.971a.74.74 0 0 1-.024.318q.401.26.767.578.366.32.673.696a3 3 0 0 1-.142-.471 3 3 0 0 0-.319-.826q-.224-.402-1.05-.59a1 1 0 0 1 .095.295m.59 20.118q0-.07-.118-.2t-.142-.13-.153.13c-.129.13-.13.153-.13.2q0 .024.13.166c.13.142.137.141.153.141q.024 0 .142-.141.117-.142.118-.166"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rive.svg�������������������������������������0000664�0000000�0000000�00000000742�14753064456�0024573�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.643 1.475c0 .814.668 1.475 1.49 1.475H14.49q2.112 0 3.48 1.29 1.366 1.291 1.366 3.32 0 1.875-1.367 3.072-1.366 1.169-3.479 1.168H9.12c-.824 0-1.491.66-1.491 1.475s.667 1.475 1.491 1.475h5.93l5.342 8.482q.497.768 1.398.768.995 0 1.398-.768.403-.8-.155-1.69l-4.753-7.56q1.926-.861 3.044-2.52 1.119-1.69 1.119-3.902 0-2.244-1.026-3.934-.993-1.69-2.795-2.643Q16.82 0 14.49 0H2.134C1.311 0 .643.66.643 1.475"/></svg>������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/roadmapdotsh.svg�����������������������������0000664�0000000�0000000�00000001433�14753064456�0026311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.693 0H3.307A3.307 3.307 0 0 0 0 3.307v17.386A3.307 3.307 0 0 0 3.307 24h17.386A3.307 3.307 0 0 0 24 20.693V3.307A3.307 3.307 0 0 0 20.693 0m-7.706 9.18q-.523.046-1.021.142-.5.094-.95.214a3.6 3.6 0 0 0-.736.237v8.097a5.5 5.5 0 0 1-.76.143q-.498.07-1.045.07a6 6 0 0 1-.95-.07 1.6 1.6 0 0 1-.688-.285 1.5 1.5 0 0 1-.452-.57q-.142-.38-.142-.974V9.061q0-.546.19-.926.213-.405.594-.713a4 4 0 0 1 .926-.546 9.1 9.1 0 0 1 2.54-.736 8 8 0 0 1 1.378-.119q1.14 0 1.804.451.666.428.665 1.425 0 .333-.095.665a3 3 0 0 1-.237.57q-.512 0-1.021.047zm5.113 8.453q-.618.665-1.686.665c-1.068 0-1.274-.222-1.686-.665q-.618-.665-.617-1.662 0-.998.617-1.663.618-.664 1.686-.664c1.068 0 1.274.221 1.686.664q.617.666.617 1.663t-.617 1.662"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/roamresearch.svg�����������������������������0000664�0000000�0000000�00000005632�14753064456�0026304�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.14.028C7.315.36 4.072 2.263 1.98 5.411.487 7.646-.232 10.589.067 13.211q.48 4.16 3.242 7.049c4.643 4.852 12.252 5.001 17.038.343 1.085-1.057 1.738-1.959 2.407-3.303a11.94 11.94 0 0 0-2.429-13.925C18.372 1.495 16.015.388 13.27.078c-.68-.083-1.56-.1-2.13-.05m4.814 2.567c1.112.437 2.086 1.068 3.032 1.986.62.598 1.323 1.46 1.3 1.599-.016.072-1.626.725-1.792.725-.056 0-.078-.072-.078-.25 0-.138-.011-.248-.028-.248-.01 0-.758.459-1.654 1.023-.897.565-1.666 1.024-1.71 1.024-.05 0-.133-.061-.194-.139-.127-.16-.216-.171-.354-.044-.066.056-.1.166-.1.316v.226l-.824.46c-.46.249-.89.453-.968.453h-.144V8.161c0-.863.016-2.025.038-2.573.034-.99.04-1.007.155-1.007.117 0 .128-.028.155-.514.067-1.107.25-1.284 1.362-1.323l.514-.016.16-.233c.156-.226.167-.226.366-.171.116.028.46.15.764.271m-7.05.011.122.183.641-.006c.604 0 .659.011.902.15.355.21.482.497.526 1.145l.033.498.172.016.171.017.017 2.716.011 2.722-.232.138a3 3 0 0 0-.936.875l-.177.27h-5.24v-.325l-.592-.017-.598-.017-.398-.586c-.332-.493-.454-.626-.758-.825-.415-.265-.404-.193-.139-1.023.659-2.025 2.203-3.945 4.1-5.107.67-.409 1.932-.995 2.159-1.001.055-.005.155.078.216.177m12.163 4.902c.354.686.725 1.588.725 1.765 0 .071-.1.149-.327.26-.326.154-.393.237-.393.503 0 .155-.166.36-.564.692l-.327.27h-.99v.333h-2.767v-.886l-.332-.42c-.183-.227-.332-.432-.332-.454s1.073-.68 2.39-1.46c2.17-1.29 2.402-1.417 2.485-1.34.05.045.244.377.432.737m-5.556 3.087c.243.354.454.664.46.686.01.027-.394.05-.892.05h-.918l-.2-.332c-.11-.183-.193-.36-.182-.388.028-.083 1.167-.708 1.234-.68.033.011.254.31.498.664m-7.282 2.567c.254.398.442.741.415.769-.111.1-5.163 3.32-5.213 3.32-.155 0-.813-1.317-1.024-2.048-.249-.863-.265-.769.188-1.045.178-.111.371-.321.637-.703l.387-.548.603-.027.609-.028.017-.21.016-.205H7.77zm1.815-.476c.066.122.127.249.127.288 0 .077-.996.686-1.057.647-.05-.028-.714-1.1-.714-1.15 0-.023.343-.028.758-.023l.758.017zm9.158-.044.016.21.554.028c.597.027.525 0 1.184.481.011.006.06.194.11.41.095.425.128.459.493.547.288.072.293.133.072.78-.57 1.682-1.787 3.425-3.287 4.686-.642.542-.603.542-.559-.055.045-.614-.027-.935-.254-1.162-.26-.255-.526-.221-1.3.177-.51.26-.698.332-.897.332-.327 0-.631-.094-.825-.255l-.16-.127.393-.36c.42-.381.62-.73.525-.907-.16-.298-.453-.37-1.045-.26-.498.1-.864.105-1.013.028-.188-.105-.288-.376-.26-.741.028-.332.022-.343-.216-.62l-.238-.282v-1.765l.393-.271c.216-.144.559-.448.758-.675l.37-.404h5.17zm-7.814 2.157v.758l-.276.282-.277.283.083.238c.1.282.105.52.022.674-.1.194-.293.222-.896.133a8 8 0 0 0-.764-.083c-.68 0-.703.482-.06 1.256.31.37.31.365-.084.564-.553.277-.902.25-1.389-.116-.41-.304-.647-.393-.968-.36-.21.017-.31.061-.443.2l-.177.177.006.686c0 .382-.011.691-.023.691-.06 0-1.023-.846-1.45-1.272-.442-.448-.995-1.123-.995-1.217 0-.044 1.516-.72 1.615-.72.034 0 .045.084.034.194-.011.105-.006.194.01.194.017 0 1.362-.747 2.989-1.66a204 204 0 0 1 3.005-1.66c.022 0 .038.343.038.758"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/robinhood.svg��������������������������������0000664�0000000�0000000�00000001330�14753064456�0025603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.84 24h.53c.096 0 .192-.048.224-.128C7.591 13.696 11.94 8.656 14.67 5.638c.112-.128.064-.225-.096-.225h-4.88a.55.55 0 0 0-.45.225L5.746 9.972c-.514.642-.642 1.236-.642 2.086v4.43c-1.14 3.194-1.862 5.361-2.392 7.32-.032.125.016.192.129.192M20.447.646c-.754-.802-4.157-.834-5.73-.224a3 3 0 0 0-.786.465 41 41 0 0 0-3.323 3.178c-.112.113-.064.225.097.225h5.409c.497 0 .786.289.786.786v6.1c0 .16.128.208.225.064l3.258-4.254c.53-.69.69-.898.835-1.861.192-1.413.08-3.58-.77-4.479m-6.982 16.18 2.231-3.676a.7.7 0 0 0 .064-.29V6.73c0-.16-.112-.225-.224-.097-3.355 3.74-5.971 7.672-8.395 12.407-.06.12.016.225.16.177l5.009-1.54c.565-.174.882-.402 1.155-.852"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/roblox.svg�����������������������������������0000664�0000000�0000000�00000000254�14753064456�0025131�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.926 23.998 0 18.892 5.075.002 24 5.108ZM15.348 10.09l-5.282-1.453-1.414 5.273 5.282 1.453z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/robloxstudio.svg�����������������������������0000664�0000000�0000000�00000000317�14753064456�0026361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.936 15.356-12.11-3.244L0 18.93 18.928 24l2.68-9.99-6.818-1.83zM5.072 0 2.394 9.992l6.816 1.83.854-3.178 12.11 3.246L24 5.072z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/roboflow.svg���������������������������������0000664�0000000�0000000�00000002426�14753064456�0025460�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m.512 3.6a9.6 9.6 0 0 1 2.594.39c1.764.52 3.511 1.747 3.823 3.68.066.41.065.829.007 1.24-.208 1.466-1.09 2.777-2.09 3.83-1.063 1.122-2.417 1.854-3.54 2.898-.657.611-.925 1.36-.132 1.995 1.084.553 1.986.266 2.97-.332.582-.353 1.08-.823 1.511-1.345.219-.264.422-.542.617-.825.164-.24.317-.517.537-.716a.8.8 0 0 1 .502-.267.69.69 0 0 1 .7.406c.118.28.013.64-.113.9-.652 1.346-1.368 2.25-1.867 2.78-1.486 1.653-3.809 2.736-5.955 1.846-1.234-.51-2.198-1.658-2.37-2.998-.32-2.502 2.588-3.95 4.12-5.368.937-.868 1.965-2.203 1.486-3.562-.459-1.302-1.988-1.868-3.246-2-1.24-.128-2.5.128-3.624.654-.882.412-1.625 1.038-2.32 1.711-.23.223-.45.46-.688.673-.206.184-.453.352-.732.39-.417.056-.813-.248-.76-.688.086-.712.592-1.332 1.036-1.862q.412-.493.884-.928a9.3 9.3 0 0 1 2.397-1.6 9.9 9.9 0 0 1 4.253-.901m-2.22 5.264c1.558-.055 1.92 1.034.882 1.843-1.763 1.372-3.997 2.745-4.224 4.95-.092.887.352 2.293.89 3.24.04.07.061.153.058.24-.01.231-.19.42-.428.409-.162-.008-.311-.09-.45-.176-.639-.395-1.238-.89-1.705-1.481a5 5 0 0 1-.665-1.116 4.6 4.6 0 0 1-.323-1.196 4.6 4.6 0 0 1 .011-1.238q.045-.315.128-.62c.673-2.49 3.377-4.564 5.498-4.828q.172-.021.328-.027"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/robotframework.svg���������������������������0000664�0000000�0000000�00000002060�14753064456�0026664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.957 10.225a3.405 3.405 0 0 1 3.4-3.403 3.406 3.406 0 0 1 3.402 3.403 1.235 1.235 0 1 1-2.469 0 .932.932 0 0 0-1.865 0 1.234 1.234 0 1 1-2.468 0m14.086 5.717c0 .684-.552 1.236-1.234 1.236H6.357a1.234 1.234 0 0 1-1.234-1.236c0-.684.553-1.237 1.234-1.237H17.81c.682 0 1.234.553 1.234 1.237m-5.35-5.025a1.235 1.235 0 0 1 .333-1.714l2.862-1.933a1.23 1.23 0 0 1 1.715.328 1.235 1.235 0 0 1-.334 1.715l-2.862 1.933c-.545.383-1.335.238-1.715-.329m7.839 7.602a.88.88 0 0 1-.258.623l-2.128 2.127a.88.88 0 0 1-.623.258H5.477a.88.88 0 0 1-.623-.258l-2.128-2.127a.88.88 0 0 1-.258-.623V5.482a.88.88 0 0 1 .258-.623l2.128-2.128a.88.88 0 0 1 .623-.258h13.046a.88.88 0 0 1 .623.258l2.128 2.128a.88.88 0 0 1 .258.623zm1.81-15.083L20.565.658A2.25 2.25 0 0 0 18.977 0H5.022a2.25 2.25 0 0 0-1.588.658L.657 3.436A2.25 2.25 0 0 0 0 5.023v13.955c0 .595.237 1.166.658 1.587l2.778 2.778c.42.42.991.657 1.587.657h13.954a2.25 2.25 0 0 0 1.588-.657l2.778-2.778A2.24 2.24 0 0 0 24 18.977V5.023a2.25 2.25 0 0 0-.657-1.587"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rocket.svg�����������������������������������0000664�0000000�0000000�00000001477�14753064456�0025123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.735.238V.236a.25.25 0 0 0-.2-.188c-.256-.04-6.336-.924-14.17 7.051a28 28 0 0 0-2.12 2.576l-4.047 1.166a.25.25 0 0 0-.124.08l-2.856 3.5a.248.248 0 0 0 .126.394l3.887 1.096.484-.566q.268-.311.574-.58l.54-.472-.38.608a5.6 5.6 0 0 1-.482.66l-.52.606c.008.79.214 1.488.62 2.068L3.68 19.653c-.148.16-.036.272.12.428l1.11 1.086c.153.16.255.258.41.1l1.505-1.534c.34.122 1.162.334 2.4.14l.75-.576q.32-.247.672-.442l.644-.36-.514.53q-.28.288-.6.534l-.62.476 1.424 3.804a.246.246 0 0 0 .404.09l3.242-3.144a.25.25 0 0 0 .072-.136l.698-4.108c.884-.78 1.78-1.686 2.66-2.694 5.072-5.806 5.798-10.315 5.78-12.487-.008-.702-.094-1.094-.1-1.122zM16.49 11.165c-1.274 1.296-3.1 1.564-4.082.6-.98-.962-.744-2.794.53-4.09s3.1-1.566 4.08-.602c.982.964.746 2.796-.528 4.092"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rocketdotchat.svg����������������������������0000664�0000000�0000000�00000002336�14753064456�0026465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.909 8.381c-.651-1.01-1.564-1.905-2.71-2.66-2.215-1.457-5.127-2.259-8.197-2.259-1.027 0-2.038.09-3.018.266a10 10 0 0 0-2.075-1.53C4.11.803 1.646 1.323.4 1.77a.598.598 0 0 0-.233.977c.879.907 2.332 2.698 1.974 4.327C.753 8.493 0 10.203 0 11.982c0 1.815.752 3.524 2.142 4.942.357 1.63-1.096 3.421-1.975 4.328a.597.597 0 0 0 .233.977c1.245.448 3.71.968 6.508-.427a10 10 0 0 0 2.075-1.53 17 17 0 0 0 3.018.265c3.071 0 5.983-.801 8.197-2.257 1.147-.755 2.06-1.65 2.71-2.661C23.633 14.493 24 13.28 24 12.017c.001-1.297-.366-2.508-1.091-3.636M11.875 18.437c-1.328 0-2.594-.171-3.748-.48l-.844.81a7.7 7.7 0 0 1-1.556 1.154 6.1 6.1 0 0 1-2.2.621q.061-.111.119-.224 1.267-2.33.683-4.186c-1.382-1.086-2.212-2.476-2.212-3.99 0-3.476 4.369-6.294 9.757-6.294s9.757 2.818 9.757 6.294c.001 3.477-4.367 6.295-9.756 6.295m-3.229-6.315c0 .788-.644 1.427-1.438 1.427a1.433 1.433 0 0 1-1.438-1.427c0-.788.644-1.426 1.438-1.426s1.438.638 1.438 1.426m4.627 0c0 .788-.644 1.427-1.438 1.427a1.433 1.433 0 0 1-1.438-1.427c0-.788.644-1.426 1.438-1.426s1.438.638 1.438 1.426m4.63 0c0 .788-.645 1.427-1.439 1.427a1.433 1.433 0 0 1-1.438-1.427c0-.788.644-1.426 1.438-1.426s1.438.638 1.438 1.426z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rocksdb.svg����������������������������������0000664�0000000�0000000�00000015230�14753064456�0025253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.299 2.519-2.102.985q.007.01.006.02a.8.8 0 0 0 .303.337c-2.557 1.32-3.643 3.104-3.643 3.104L4.09 12.228a1.183 1.183 0 0 1-1.598-.482 1.183 1.183 0 0 1 .483-1.596l2.771-1.492A2.23 2.23 0 0 0 6.912 6.84l-1.664.894-2.771 1.494a2.23 2.23 0 0 0 2.109 3.927l1.25-.674c-.09.493-.05 1.019.146 1.516.066.17.11.277.11.277.443.96-.14 1.713-.903 1.713h-.242l-.879 3.828a.93.93 0 0 0-.441-.255l-.438 1.802a.92.92 0 0 0 1.061-.521l1.992-3.578c2.522-.246 3.85-1.954 3.79-4.36 2.611.16 6.093-1.48 7.64-3.726 1.175 1.492 3.395 1.28 4.385.902l.19-.064a.9.9 0 0 0-.11.44l1.857-.02a.933.933 0 0 0-.94-.913h-.01l-3.192-.275-.73-1.914v-2.03a1 1 0 0 0 .483.126c.527 0 .96-.406 1.01-.918l.764-.508-.035-1.03a.19.19 0 0 0-.192-.187l-.955-.014a.73.73 0 0 0-.898-.252zm.25.508c.166 0 .303.135.303.3a.305.305 0 0 1-.303.304.3.3 0 0 1-.295-.303c0-.166.13-.3.295-.3zM5.48 4.567a.53.53 0 0 0-.232.686l.127.22.924-.495-.12-.221a.53.53 0 0 0-.699-.19m12.487.235c.156 0 .281.144.281.144s-.045.056-.115.096c.11.045.185.115.185.115s-.075.072-.185.117a.5.5 0 0 1 .115.094s-.125.147-.281.147-.281-.147-.281-.147.044-.053.115-.094a.6.6 0 0 1-.186-.117s.075-.07.186-.115c-.07-.04-.115-.096-.115-.096s.125-.144.28-.144zm-1.461.693c.156 0 .281.145.281.145s-.045.05-.115.095c.11.046.185.116.185.116s-.075.07-.185.115c.07.04.115.095.115.095s-.125.147-.281.147-.281-.147-.281-.147.045-.055.115-.095a.7.7 0 0 1-.186-.115s.075-.07.186-.116c-.07-.04-.115-.095-.115-.095s.125-.145.28-.145zm-9.9.05-.924.497.048.096c.09.17.137.352.141.533l.98-.53a2.1 2.1 0 0 0-.197-.501zm11.236.948c.156 0 .281.147.281.147s-.045.055-.115.095c.11.046.185.116.185.116s-.075.07-.185.115c.07.04.115.095.115.095s-.13.147-.281.147c-.156 0-.281-.147-.281-.147s.044-.055.115-.095a.7.7 0 0 1-.186-.115s.075-.07.186-.116c-.07-.04-.115-.095-.115-.095s.125-.147.28-.147zm-2.844.399c.156 0 .281.144.281.144s-.045.056-.115.096c.11.045.186.115.186.115s-.075.07-.186.115c.07.04.115.096.115.096s-.125.146-.281.146-.281-.146-.281-.146.045-.056.115-.096c-.11-.045-.186-.115-.186-.115s.076-.07.186-.115c-.07-.04-.115-.096-.115-.096s.125-.144.281-.144m7.807.18q-.023.008-.045.025l.004-.004-2.711.972.326.866c.508-.13 1.286-.69 1.834-1.121a.94.94 0 0 0 .045.453L24 7.617a.93.93 0 0 0-1.195-.547zm-6.37.255c.156 0 .282.147.282.147s-.045.055-.115.095a.6.6 0 0 1 .185.116s-.075.07-.185.115c.07.04.115.095.115.095s-.126.147-.281.147-.282-.147-.282-.147.045-.055.116-.095c-.111-.045-.186-.115-.186-.115s.075-.07.186-.116c-.07-.04-.116-.095-.116-.095s.126-.147.282-.147zm1.778.559c.156 0 .281.144.281.144s-.045.056-.115.096a.6.6 0 0 1 .185.115s-.075.072-.185.117a.5.5 0 0 1 .115.094s-.125.147-.281.147-.281-.147-.281-.147.045-.053.115-.094c-.11-.045-.186-.117-.186-.117s.075-.07.186-.115c-.07-.04-.115-.096-.115-.096s.125-.144.28-.144zm-3.887.386c.156 0 .281.145.281.145s-.044.055-.115.096c.11.045.186.115.186.115s-.075.072-.186.117a.5.5 0 0 1 .115.094s-.125.146-.28.146c-.157 0-.282-.146-.282-.146s.045-.054.115-.094c-.11-.045-.185-.117-.185-.117s.075-.07.185-.115c-.07-.04-.115-.096-.115-.096s.125-.145.281-.145m-1.904.25c.156 0 .281.147.281.147s-.045.055-.115.096c.11.045.185.115.185.115s-.075.07-.185.115c.07.04.115.096.115.096s-.125.146-.281.146-.281-.146-.281-.146.045-.05.115-.096a.7.7 0 0 1-.186-.115s.075-.07.186-.115c-.07-.04-.115-.096-.115-.096s.125-.147.28-.147zm3.611.342c.156 0 .281.147.281.147s-.044.055-.115.095c.11.04.186.116.186.116s-.075.07-.186.115c.07.04.115.096.115.096s-.125.146-.28.146c-.157 0-.282-.146-.282-.146s.045-.056.115-.096c-.11-.045-.185-.115-.185-.115s.075-.07.185-.116c-.07-.04-.115-.095-.115-.095s.125-.147.281-.147m-2.703.85c.156 0 .281.146.281.146s-.045.054-.115.094c.11.04.186.117.186.117s-.075.07-.186.116c.07.04.115.095.115.095s-.125.145-.28.145c-.157 0-.282-.145-.282-.145s.047-.055.117-.095c-.11-.046-.187-.116-.187-.116s.077-.072.187-.117a.5.5 0 0 1-.117-.094s.125-.146.281-.146m-2.27.02c.156 0 .282.146.282.146s-.045.055-.115.096c.11.045.185.115.185.115s-.075.07-.185.115c.07.04.115.096.115.096s-.126.144-.281.144-.282-.144-.282-.144.045-.056.116-.096c-.111-.045-.186-.115-.186-.115s.075-.07.186-.115c-.07-.04-.116-.096-.116-.096s.126-.147.282-.147zm3.758.306c.156 0 .282.146.282.146s-.045.056-.116.096c.11.045.186.115.186.115s-.075.07-.186.116c.07.04.116.095.116.095s-.126.145-.282.145-.28-.145-.28-.145.044-.055.114-.095a.7.7 0 0 1-.185-.116s.075-.07.185-.115c-.07-.04-.115-.096-.115-.096s.126-.146.281-.146m-5.662.322c.156 0 .281.145.281.145s-.044.055-.115.096c.11.04.186.115.186.115s-.075.07-.186.115c.07.04.116.096.116.096s-.126.146-.282.146-.281-.146-.281-.146.045-.056.115-.096c-.11-.045-.185-.115-.185-.115s.075-.07.185-.115c-.07-.04-.115-.096-.115-.096s.126-.145.281-.145m3.356.803c.155 0 .281.147.281.147s-.045.055-.115.095a.6.6 0 0 1 .185.115s-.075.07-.185.116c.07.04.115.095.115.095s-.126.145-.281.145-.282-.145-.282-.145.045-.055.116-.095c-.11-.046-.186-.116-.186-.116s.075-.07.186-.115c-.07-.04-.116-.095-.116-.095s.126-.147.282-.147m-1.848.262c.156 0 .281.146.281.146s-.045.054-.115.094a.5.5 0 0 1 .186.117s-.075.07-.186.115c.07.04.115.096.115.096s-.125.145-.28.145c-.157 0-.282-.145-.282-.145s.045-.055.115-.096c-.11-.045-.185-.115-.185-.115s.075-.072.185-.117c-.07-.04-.115-.094-.115-.094s.125-.146.281-.146m-3.316.08c.155 0 .28.146.28.146s-.044.056-.114.096c.11.045.185.115.185.115s-.075.07-.185.115c.07.04.115.096.115.096s-.126.145-.281.145-.282-.145-.282-.145.047-.055.118-.096a.7.7 0 0 1-.188-.115s.077-.07.188-.115c-.07-.04-.118-.096-.118-.096s.126-.146.282-.146m16.646.527-5.705 1.428-2.23 2.53-3.25.08-1.227 2.814-3.193.834-2 1.824h16.093c.834 0 1.512-.68 1.512-1.514zm-15.053.217c.156 0 .282.144.282.144s-.045.056-.116.096c.11.04.186.115.186.115s-.075.07-.186.116c.07.04.116.095.116.095s-.126.147-.282.147-.28-.147-.28-.147.044-.055.114-.095a.7.7 0 0 1-.185-.116s.075-.07.185-.115c-.07-.04-.115-.096-.115-.096s.126-.144.281-.144m-1.898 1.014c.156 0 .281.146.281.146s-.047.056-.117.096a.7.7 0 0 1 .188.115s-.077.07-.188.115c.07.04.117.096.117.096s-.13.15-.281.145c-.156 0-.281-.145-.281-.145s.045-.056.115-.096c-.11-.045-.186-.115-.186-.115s.075-.07.186-.115c-.07-.04-.115-.096-.115-.096s.125-.146.281-.146m1.582.552c.156 0 .281.147.281.147s-.045.055-.115.096c.11.045.186.115.186.115s-.075.07-.186.115c.07.04.115.096.115.096s-.125.144-.281.144-.281-.144-.281-.144.045-.056.115-.096c-.11-.045-.186-.115-.186-.115s.075-.07.186-.115c-.07-.04-.115-.096-.115-.096s.125-.147.281-.147m-1.086 1.256c.156 0 .281.147.281.147s-.045.055-.115.095c.11.04.186.116.186.116s-.075.07-.186.115c.07.04.115.096.115.096s-.125.144-.28.144c-.157 0-.282-.144-.282-.144s.045-.056.115-.096c-.11-.045-.186-.115-.186-.115s.076-.07.186-.116c-.07-.04-.115-.095-.115-.095s.125-.147.281-.147m-3.203 1.155-2.709 2.325a.97.97 0 0 0-.205-.473L0 19.277a.93.93 0 0 0 1.195.192l2.649-1.201z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rockstargames.svg����������������������������0000664�0000000�0000000�00000001323�14753064456�0026467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.971 6.816h3.241c1.469 0 2.741-.448 2.741-2.084 0-1.3-1.117-1.576-2.19-1.576H6.748zm12.834 8.753h5.168l-4.664 3.228.755 5.087-4.041-3.07L10.599 24l2.536-5.392s-2.95-3.075-2.947-3.075c-.198-.262-.265-.936-.265-1.226 0-.367.024-.739.049-1.134.028-.451.058-.933.058-1.476 0-1.338-.59-2.038-2.036-2.038H5.283l-1.18 5.525H.026L3.269 0h7.672c2.852 0 5.027.702 5.027 3.936 0 2.276-1.12 3.894-3.592 4.233v.045c1.162.276 1.598 1.062 1.598 2.527 0 .585-.018 1.098-.034 1.581-.015.428-.03.834-.03 1.243 0 .525.137 1.382.48 1.968h.567l3.028-5.06zm-1.233-2.948-2.187 3.654h-3.457l2.103 2.189-1.73 3.672 3.777-2.218 2.976 2.263-.553-3.731 3.093-2.139h-3.43z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rockwellautomation.svg�����������������������0000664�0000000�0000000�00000002046�14753064456�0027550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.125 6.157-4.668-4.668a.77.77 0 0 0-.98-.087l-8.983 6.05c1.7.106 2.732.796 2.732 2.367 0 1.372-.74 2.226-1.992 2.375v.024c.582.106.968.376 1.254.74.1.126.169.275.208.434l.71 2.15 3.052-7.648a.71.71 0 0 1 .657-.445h2.682l3.567 8.932h-2.207c-.448 0-.867-.283-1.056-.708q-.171-.489-.344-.978h-3.24l-.629 1.686h-4.84a.54.54 0 0 1-.524-.452l-.805-2.34c-.112-.401-.51-.464-.902-.464h-.783v3.256H3.279v-5.414L1.63 12.076a.56.56 0 0 0-.238.456v3.448c0 .222.132.42.334.51l15.54 6.504a.77.77 0 0 0 .847-.16l5.008-4.987A2.98 2.98 0 0 0 24 15.732V8.269a3 3 0 0 0-.875-2.111M8.375 10.28c0-.806-.55-.923-1.135-.923H6.072v1.9h1.126c.596 0 1.177-.077 1.177-.977m6.868 2.422h1.814l-.888-2.523ZM6.83 7.435 16.431.322a.177.177 0 0 0-.105-.32H8.455A3.44 3.44 0 0 0 6.021 1.01L1.008 6.022A3.44 3.44 0 0 0 0 8.456v7.088a3.44 3.44 0 0 0 1.008 2.434l5.013 5.012a3.44 3.44 0 0 0 2.434 1.008h6.818c.19 0 .247-.257.075-.338l-13.55-6.388a1.62 1.62 0 0 1-.926-1.46v-3.4c0-.356.169-.69.454-.9l1.952-1.447v-2.63Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rockylinux.svg�������������������������������0000664�0000000�0000000�00000000446�14753064456�0026036�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.332 15.957A12 12 0 0 0 24 12c0-6.627-5.373-12-12-12S0 5.373 0 12c0 3.28 1.315 6.251 3.447 8.417L15.62 8.245l3.005 3.005zm-2.192 3.819-5.52-5.52L6.975 22.9c1.528.706 3.23 1.1 5.025 1.1 3.661 0 6.94-1.64 9.14-4.224"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/roku.svg�������������������������������������0000664�0000000�0000000�00000001322�14753064456�0024601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.34 9.853-2.254 2.254v-2.26H12.13v5.744h1.957v-2.33l2.353 2.33h2.46l-2.988-2.99 2.477-2.476v3.411c0 1.133.679 2.177 2.393 2.177.815 0 1.56-.462 1.922-.88l.88.759H24v-5.74h-1.951v3.718c-.22.384-.528.627-1.002.627-.482 0-.703-.286-.703-1.198V9.853zm-4.591 2.869A3.004 3.004 0 1 1 8.738 9.73a2.997 2.997 0 0 1 3.011 2.99m-3.011-1.57c-.518 0-.956.704-.956 1.572 0 .867.438 1.57.956 1.57.528 0 .968-.702.968-1.57s-.438-1.572-.968-1.572m-2.206 4.447H4.313L2.55 13.153h-.594v2.44H0V8.26h2.8c1.616 0 2.935 1.1 2.935 2.45 0 .826-.505 1.562-1.273 2.013l2.07 2.875m-2.75-4.888A1.226 1.226 0 0 0 2.56 9.478h-.604v2.453h.605a1.225 1.225 0 0 0 1.22-1.221Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/roll20.svg�����������������������������������0000664�0000000�0000000�00000005112�14753064456�0024734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.383 0q-.03.002-.06.014h-.037L4.03 3.654a.25.25 0 0 0-.129.211c0 .136.11.239.239.239l-.008.013a.2.2 0 0 0 .096-.021l7.181-1.567a.245.245 0 0 0 .21-.236V.225A.24.24 0 0 0 11.382 0zm1.22.008c-.128 0-.23.1-.236.222V2.3c0 .122.094.217.21.23l-.007-.013 7.182 1.574a.236.236 0 0 0 .203-.428L12.7.02h-.008l-.027-.012h-.06zm.57 3.404a.24.24 0 0 0-.237.242q0 .073.04.123l6.749 11.868c.04.06.108.101.19.101.128 0 .229-.1.235-.223l2.428-9.921c0-.014.008-.02.008-.034a.24.24 0 0 0-.203-.23l-9.121-1.9.013-.006s-.027-.001-.04-.008zm-2.38.012-.06.008c-.014 0-.028-.001-.042.006l-9.12 1.9a.24.24 0 0 0-.204.23c0 .014 0 .02.006.034h.014l2.427 9.921a.24.24 0 0 0 .239.23c.081 0 .148-.04.19-.1l6.747-11.87c.02-.04.041-.073.041-.12a.24.24 0 0 0-.238-.24zm1.193.306a.24.24 0 0 0-.195.108L4.676 16.404h.008a.22.22 0 0 0-.041.13c0 .135.109.237.238.237H19.1a.236.236 0 0 0 .237-.238.3.3 0 0 0-.041-.129L12.184 3.838a.24.24 0 0 0-.198-.108M1.543 9.305a.24.24 0 0 0-.23.209v.035l.298 8.062v.008c0 .136.108.236.237.236q.059 0 .109-.033l1.268-.754h.005l.008-.006.014-.007a.24.24 0 0 0 .115-.203.1.1 0 0 0-.008-.041L1.773 9.514a.24.24 0 0 0-.23-.21zm20.908.006a.24.24 0 0 0-.23.21l-1.588 7.297c0 .014-.006.028-.006.041 0 .089.047.156.115.203l.02.014s.007 0 .013.006l1.268.76a.234.234 0 0 0 .346-.209v-.008l.299-8.063v-.007l-.006-.006V9.52a.24.24 0 0 0-.23-.21zm-12.105.828c1.064 0 1.492.698 1.492 1.35 0 .86-.611 1.193-1.317 1.58-.311.169-.671.393-.746.63h1.995s.054.028.054.055v.766s-.027.054-.054.054H8.799s-.053-.027-.053-.054v-.368h-.014c0-.99.638-1.465 1.323-1.838.786-.42.847-.603.847-.834 0-.142-.054-.474-.556-.474-.38 0-.623.279-.623.713a.054.054 0 0 1-.055.054h-.82s-.055-.027-.055-.054c0-.76.488-1.58 1.553-1.58m3.431.013c.794 0 1.641.59 1.641 2.252s-.847 2.25-1.64 2.25c-.794 0-1.65-.588-1.65-2.25s.856-2.252 1.65-2.252zm-.002.854c-.657 0-.724.97-.724 1.39 0 .326.053 1.383.724 1.383.672 0 .727-1.057.727-1.383 0-.413-.069-1.39-.727-1.39M5.4 17.523a.236.236 0 0 0-.236.239c0 .074.04.142.094.19l6.578 5.993a.24.24 0 0 0 .15.055.23.23 0 0 0 .149-.055l6.578-5.994c.054-.047.096-.109.096-.183l.005-.006a.24.24 0 0 0-.23-.239zm-1.662.143c-.054 0-.1.02-.134.047H3.59l-1.235.74a.25.25 0 0 0-.12.21c0 .087.046.162.12.202l5.975 3.522c.034.013.075.033.115.033.136 0 .239-.11.239-.238a.24.24 0 0 0-.063-.155l.022-.007-4.748-4.307H3.88a.26.26 0 0 0-.143-.047zm16.496.006a.24.24 0 0 0-.136.049h-.014l-4.746 4.306a.3.3 0 0 0-.063.162c0 .136.11.237.239.237.04 0 .081-.013.115-.033l5.975-3.514a.25.25 0 0 0 .12-.21.23.23 0 0 0-.12-.202l.013-.008-1.234-.738h-.014a.25.25 0 0 0-.135-.05z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rollsroyce.svg�������������������������������0000664�0000000�0000000�00000003253�14753064456�0026023�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.363 3.663H9.961v6.865q-.615.295-1.341.511a8 8 0 0 1-.776.182V3.968s.06-1.041-.519-1.393v-.13h5.434c.244.297.463.697.604 1.218m.958 9.391c2.465-1.182 3.652-3.262 3.674-5.646.015-1.622-.557-2.618-1.197-3.148a2 2 0 0 0-.117-.089 6.5 6.5 0 0 0-.612-1.618q.178.026.324.057c1.788.38 3.225 1.436 3.905 3.474.554 1.662.285 3.724-.904 5.377-.281.391-1.03 1.226-1.89 1.842-.156.112-.25.174-.414.277 1.077 1.726 1.608 2.717 2.295 4.6.6 1.644 1.055 3.83 1.117 4.344.15 1.223.515 1.32.599 1.345V24h-4.295v-.13c.132-.07 1.293-.546 1.299-2.367.006-1.337-.32-2.808-.914-4.46a23 23 0 0 0-1.277-2.829l-.014-.021a8 8 0 0 1-.872.321c-.223-.516-.45-.983-.707-1.459zm-4.36-.144v1.116c.325-.014 1.34-.096 2.254-.274.207.468.387.912.511 1.257l.017.048a26 26 0 0 1-1.23.166 33 33 0 0 1-1.552.131v7.21c0 .159.037 1.008.59 1.306V24H7.254v-.13c.538-.283.59-1.147.59-1.305v-9.27a19 19 0 0 0 2.118-.385zm.457-11.66-.462-.007H5.662v10.575c.426-.019 2.013-.152 3.052-.46 3.465-1.025 5.12-3.447 5.146-6.293.015-1.655-.568-2.672-1.222-3.212-.407-.337-.946-.496-1.338-.554-.22-.044-.71-.05-.882-.05zM3.502 20.557V1.554S3.564.492 2.972.133V0h7.346c.613.001 1.415.063 1.907.17 1.824.387 3.291 1.464 3.985 3.544.565 1.696.291 3.8-.922 5.487-.287.4-1.05 1.25-1.93 1.88a7 7 0 0 1-.422.281c1.1 1.762 1.641 2.773 2.343 4.695.612 1.677 1.076 3.909 1.14 4.432.151 1.248.525 1.374.61 1.4v.132h-4.382l-.001-.133c.136-.072 1.32-.583 1.326-2.442.007-1.363-.326-2.865-.932-4.55a23 23 0 0 0-1.305-2.887l-.014-.022c-.582.265-1.812.624-2.61.775-.571.108-1.15.197-1.865.277-.623.07-1.227.111-1.584.134v7.384c0 .161.038 1.028.603 1.332v.132H2.9v-.132c.549-.29.603-1.17.603-1.332Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rollupdotjs.svg������������������������������0000664�0000000�0000000�00000001122�14753064456�0026200�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.42 0a.37.37 0 0 0-.369.37v19.515c.577-1.488 1.557-3.617 3.138-6.53 5.7-10.479 6.447-11.536 9.415-11.536 1.56 0 3.134.704 4.152 1.955A7.96 7.96 0 0 0 13.101 0zm12.72 2.544c-1.19.01-2.258.466-2.699 1.498-.967 2.256 1.624 4.767 2.757 4.568 1.442-.255-.255-3.563-.255-3.563 2.205 4.156 1.697 2.884-2.29 6.7-3.986 3.815-8.057 11.872-8.651 12.21a.5.5 0 0 1-.08.043h15.636a.373.373 0 0 0 .33-.538L16.8 15.37a.37.37 0 0 1 .144-.488A7.96 7.96 0 0 0 20.95 7.97c0-1.425-.373-2.761-1.03-3.92-.927-.952-2.43-1.516-3.779-1.506z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rook.svg�������������������������������������0000664�0000000�0000000�00000002102�14753064456�0024570�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.825 0a.78.78 0 0 0-.774.774v6.12c0 .442.368.774.774.774H5.88a.756.756 0 0 0 .774-.774.78.78 0 0 0-.774-.774H2.562V1.548h2.544v1.29a.75.75 0 0 0 .221.553.81.81 0 0 0 .553.222h4.092a.78.78 0 0 0 .775-.775v-1.29h2.543v1.29c0 .443.37.775.775.775h4.092a.75.75 0 0 0 .553-.222.8.8 0 0 0 .22-.553v-1.29h2.545v4.535H18.12a.78.78 0 0 0-.775.774c0 .442.37.774.775.774h4.092a.8.8 0 0 0 .553-.221.8.8 0 0 0 .221-.553V.774c0-.405-.369-.737-.664-.774H18.23a.78.78 0 0 0-.774.774v1.29h-2.544V.774A.78.78 0 0 0 14.138 0h-4.092a.78.78 0 0 0-.774.774v1.29h-2.58V.774A.78.78 0 0 0 5.916 0Zm-.037 9.069a.78.78 0 0 0-.774.774v8.811A5.35 5.35 0 0 0 6.359 24H17.64a5.35 5.35 0 0 0 5.346-5.346v-8.81a.78.78 0 0 0-.774-.775zm.774 1.511h18.876v8.074a3.79 3.79 0 0 1-3.797 3.798H6.36a3.79 3.79 0 0 1-3.798-3.798zM12 13.124a3.446 3.446 0 0 0-3.428 3.43v2.653c0 .443.368.774.774.774h5.309a.78.78 0 0 0 .774-.774v-2.654a3.446 3.446 0 0 0-3.43-3.429m-.037 1.475c1.07 0 1.918.848 1.918 1.918v1.916h-3.835v-1.917c0-1.069.848-1.917 1.917-1.917"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/roon.svg�������������������������������������0000664�0000000�0000000�00000001735�14753064456�0024606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.29 9.198c.138-.024.235-.17.235-.32a.31.31 0 0 0-.183-.3s-.088-.06-.577-.06C1.059 8.519 0 9.599 0 11.337v3.799a.356.356 0 0 0 .711 0v-3.798c0-1.378.847-2.189 2.136-2.137.086.004.335.025.443-.002m17.89-.693c-1.64 0-2.83 1.19-2.83 2.832v3.798a.356.356 0 1 0 .71 0v-3.798c0-1.222.892-2.109 2.12-2.109 1.222 0 2.109.887 2.109 2.109v3.798a.355.355 0 1 0 .711 0v-3.798c0-1.641-1.186-2.832-2.82-2.832m-6.897 0c-1.837 0-3.33 1.578-3.33 3.518 0 1.912 1.493 3.467 3.33 3.467 1.843 0 3.343-1.555 3.343-3.467 0-1.94-1.5-3.518-3.343-3.518m2.62 3.518c0 1.533-1.176 2.781-2.62 2.781s-2.62-1.248-2.62-2.781c0-1.562 1.175-2.832 2.62-2.832 1.444 0 2.62 1.27 2.62 2.832M6.872 8.505c-1.836 0-3.33 1.578-3.33 3.518 0 1.912 1.494 3.467 3.33 3.467 1.844 0 3.343-1.555 3.343-3.467 0-1.94-1.5-3.518-3.343-3.518m2.62 3.518c0 1.533-1.175 2.781-2.62 2.781-1.444 0-2.62-1.248-2.62-2.781 0-1.562 1.176-2.832 2.62-2.832s2.62 1.27 2.62 2.832"/></svg>�����������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rootme.svg�����������������������������������0000664�0000000�0000000�00000010466�14753064456�0025137�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.364 9.897c0-.448-.029-.896-.096-1.325 0-.028-.009-.057-.009-.086-.582-3.785-3.452-6.894-7.228-7.723a.96.96 0 1 0-1.144 1.144v3.519c0 .057.028.114.076.152a.2.2 0 0 0 .105.029c.019 0 .048 0 .067-.01l1.411-.534a.7.7 0 0 0 .41.286v1.659c-.715.878-1.602 1.669-2.546 2.375l-1.077-2.499a.73.73 0 0 0 .333-.61.734.734 0 1 0-.734.734h.038l1.125 2.603c-.658.477-1.335.906-2.002 1.297l-3.204-.963a.16.16 0 0 0-.114.01l-.954.372a.734.734 0 1 0 .143.438c0-.028-.009-.057-.009-.086l.896-.352 2.794.839a33.5 33.5 0 0 1-4.873 2.231l-.171.057a.92.92 0 0 0-.553-.181h-.029a8.7 8.7 0 0 1-.677-3.366c0-.572.057-1.135.162-1.678H7.69a.726.726 0 0 0 .706.543.734.734 0 0 0 0-1.468.73.73 0 0 0-.706.543h-4.1c.772-3.137 3.251-5.644 6.455-6.388a.98.98 0 0 0 .82.467c.534 0 .963-.429.963-.963S11.399 0 10.865 0a.97.97 0 0 0-.944.763c-4.205.953-7.285 4.739-7.285 9.125a9.3 9.3 0 0 0 .735 3.642.967.967 0 0 0 .372 1.602v3.757c0 .067.019.134.057.191l.21.143 2.851 2.012v2.403c0 .2.162.362.362.362h9.535c.2 0 .362-.162.362-.362v-2.403l2.861-2.012.21-.153a.34.34 0 0 0 .057-.19v-3.786a.958.958 0 0 0 .353-1.535 9 9 0 0 0 .763-3.662m-1.383 3.366h-.086a.96.96 0 0 0-.334 1.86v3.509l-3.003 2.117a.36.36 0 0 0-.153.295v2.022a.21.21 0 0 1-.21.209H15.08a.21.21 0 0 1-.21-.209v-.725c0-.191-.133-.362-.324-.382a.367.367 0 0 0-.401.363v.753c0 .115-.095.21-.209.21h-1.364a.21.21 0 0 1-.21-.21v-1.116c0-.19-.133-.362-.324-.381a.366.366 0 0 0-.4.362v1.145a.21.21 0 0 1-.21.209h-1.364a.21.21 0 0 1-.209-.209v-.744c0-.191-.134-.362-.325-.382a.366.366 0 0 0-.4.363v.753c0 .115-.095.21-.21.21H7.805a.21.21 0 0 1-.21-.21v-2.021a.37.37 0 0 0-.153-.296l-2.994-2.117v-3.547a.96.96 0 0 0 .563-.877c0-.057-.01-.114-.019-.172.381-.133 3.289-1.173 6.15-2.956 3.871-2.412 6.017-5.149 6.264-7.961a8.74 8.74 0 0 1 3.157 5.473c-.048 4.777-8.372 7.723-8.458 7.752-.019.009-.067.019-.105.038-.105-.019-.21-.038-.324-.057-.076-.019-.162-.029-.239-.048-.124-.019-.247-.048-.371-.076-.02-.01-.048-.01-.067-.01l-.143-.028c-.057-.01-.115-.029-.172-.039a5 5 0 0 1-.391-.095c-.238-.057-.467-.124-.696-.181-.219-.067-.448-.124-.658-.191H8.92a6 6 0 0 1-.467-.152 1 1 0 0 0-.153-.048c-.076-.029-.143-.048-.209-.067a3 3 0 0 1-.344-.124h-.009a6 6 0 0 1-.458-.171c-.143-.058-.267-.105-.362-.143-.096-.048-.181-.077-.229-.105-.057-.029-.086-.038-.086-.038s.019.028.057.066c.038.048.096.115.181.191.077.076.182.172.306.267s.267.2.419.305h.01a2.1 2.1 0 0 0-.096.61c0 1.097.897 1.993 1.993 1.993.849 0 1.573-.534 1.86-1.287l.295.029c.172.009.334.009.486.009.01 0 .019.01.029.01l1.611 1.64c.41.41 1.049.477 1.526.162l2.517-1.411a.8.8 0 0 0 .363-.658v-2.899c.972-.772 1.85-1.688 2.422-2.727a8.1 8.1 0 0 1-.601 2.145m-7.799 5.87-.002-.002q-.002-.003-.008-.003l-.013-.009-.003-.002a.03.03 0 0 1-.013-.009c-.01 0-.019-.009-.029-.009-.009 0-.019-.01-.019-.01-.009 0-.019 0-.028-.009h-.115c-.009 0-.019 0-.028.009-.01 0-.019.01-.019.01-.01 0-.019.009-.029.009-.009 0-.019.01-.029.02-.009 0-.009.009-.019.009l-.038.038-.772.963a.276.276 0 0 0 .219.448.28.28 0 0 0 .219-.104l.01-.01a.7.7 0 0 1 1.097 0l.009.01a.287.287 0 0 0 .391.047.277.277 0 0 0 .048-.391l-.782-.953c-.01-.01-.019-.019-.019-.029l-.019-.019zm-1.622-2.265c-.038.076-.095.152-.143.219a1.256 1.256 0 0 1-1.907 0 1.23 1.23 0 0 1-.295-.81c0-.077.009-.144.019-.22.152.076.314.153.476.229.22.095.449.191.687.267a9 9 0 0 0 1.163.315m-6.503-2.184a.5.5 0 0 1-.305-.114.449.449 0 0 1-.133-.506.47.47 0 0 1 .429-.295c.085 0 .162.028.229.067a.46.46 0 0 1 .228.4.46.46 0 0 1-.066.229.42.42 0 0 1-.382.219m16.21-.181a.48.48 0 0 1-.362.181.47.47 0 0 1-.334-.143.47.47 0 0 1-.124-.315c0-.2.124-.371.305-.429a.5.5 0 0 1 .162-.028.48.48 0 0 1 .458.372.3.3 0 0 1 .009.095.7.7 0 0 1-.114.267m-5.845-9.869c0 .029.009.048.009.067l-1.163.438V1.897a.92.92 0 0 0 .658-.457 8.5 8.5 0 0 1 2.823 1.201c-.01 1.411-.554 2.708-1.412 3.881V5.34a.73.73 0 0 0 .544-.706c0-.4-.324-.734-.734-.734a.74.74 0 0 0-.725.734m-3.48-1.735a.734.734 0 0 0-.735.696l-1.458.534a.19.19 0 0 0-.134.181v.925H7.442a.73.73 0 0 0-.705-.544.735.735 0 1 0 0 1.469.73.73 0 0 0 .705-.544h1.364a.19.19 0 0 0 .19-.19v-.983l1.288-.476c.124.238.372.4.648.4a.734.734 0 0 0 .734-.734.725.725 0 0 0-.724-.734m-.41-2.241a.46.46 0 0 1 .343-.153.468.468 0 1 1-.258.859.48.48 0 0 1-.209-.382.45.45 0 0 1 .124-.324m2.097.305a.467.467 0 0 1 .801-.324.462.462 0 0 1-.076.696.43.43 0 0 1-.267.086.45.45 0 0 1-.458-.458"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/roots.svg������������������������������������0000664�0000000�0000000�00000001635�14753064456�0024776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.513 12.27 2.6 18.177a.24.24 0 0 1-.174.072l-.02-.001a.25.25 0 0 1-.178-.102 12 12 0 0 1-.889-1.452.25.25 0 0 1 .045-.287l5.638-5.628a9.4 9.4 0 0 0 2.776-6.694.245.245 0 0 1 .49 0v3.911a6 6 0 0 1-1.774 4.274zM18 .842a.24.24 0 0 0-.245 0 .25.25 0 0 0-.122.212v10.855a6 6 0 0 0 1.773 4.273l1.997 1.995a.25.25 0 0 0 .173.072l.021-.001a.26.26 0 0 0 .18-.102A11.9 11.9 0 0 0 24 11.21c0-4.255-2.298-8.228-6-10.367zM6.367 4.085V1.054A.244.244 0 0 0 6 .842C2.3 2.982 0 6.954 0 11.21c0 .34.018.705.056 1.115.01.094.072.174.161.208a.3.3 0 0 0 .084.014.25.25 0 0 0 .172-.071l4.123-4.118a6 6 0 0 0 1.771-4.273m10.614 14.52a9.4 9.4 0 0 1-2.778-6.696V7.996a.245.245 0 1 0-.489 0 9.4 9.4 0 0 1-2.776 6.696l-5.915 5.905a.24.24 0 0 0-.071.193.24.24 0 0 0 .102.18A11.93 11.93 0 0 0 12 23.192a11.93 11.93 0 0 0 6.947-2.222.24.24 0 0 0 .1-.18.24.24 0 0 0-.068-.193z"/></svg>���������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rootsbedrock.svg�����������������������������0000664�0000000�0000000�00000000467�14753064456�0026332�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.4 0 0 .4v5.2l.343.343 11.314-1.886L12 4.4V8l11.52-1.92.48-.48V.4l-.4-.4zm.08 9.92L0 10.4v3.2l.343.343L12 12V8zM12 12v4l11.52-1.92.48-.48v-3.2l-.343-.343zM.48 17.92 0 18.4v5.2l.4.4h23.2l.4-.4v-5.2l-.343-.343-11.314 1.886L12 19.6V16z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rootssage.svg��������������������������������0000664�0000000�0000000�00000000523�14753064456�0025631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.384 4.232 1.71 5.075-4.478-3.136L0 9.403l1.753 5.2.01.03H7.3L2.82 17.77l1.754 5.2.01.03h5.705L12 17.925l1.7 5.045.01.03h5.707l1.763-5.23-4.48-3.137h5.537L24 9.403l-4.616-3.232-4.479 3.136 1.711-5.075L12 1zm.105 10.342 1.723-5.111h5.576l1.723 5.111-4.51 3.16z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ros.svg��������������������������������������0000664�0000000�0000000�00000002210�14753064456�0024421�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.807 0C1.353 0 .173 1.22.173 2.722c0 1.504 1.18 2.723 2.634 2.723 1.455 0 2.635-1.22 2.635-2.723S4.262 0 2.807 0M12 0c-1.455 0-2.634 1.22-2.634 2.722 0 1.504 1.18 2.723 2.634 2.723 1.455 0 2.634-1.22 2.634-2.723S13.454 0 12 0m9.193 0c-1.455 0-2.635 1.22-2.635 2.722 0 1.504 1.18 2.723 2.635 2.723s2.634-1.22 2.634-2.723S22.647 0 21.193 0M2.807 9.277C1.353 9.277.173 10.497.173 12s1.18 2.722 2.634 2.722c1.455 0 2.635-1.219 2.635-2.722 0-1.504-1.18-2.723-2.635-2.723m9.193 0c-1.455 0-2.634 1.22-2.634 2.723s1.18 2.722 2.634 2.722c1.455 0 2.634-1.219 2.634-2.722 0-1.504-1.18-2.723-2.634-2.723m9.193 0c-1.455 0-2.635 1.22-2.635 2.723s1.18 2.722 2.635 2.722 2.634-1.219 2.634-2.722c0-1.504-1.18-2.723-2.634-2.723M2.807 18.555c-1.454 0-2.634 1.22-2.634 2.722C.173 22.781 1.353 24 2.807 24c1.455 0 2.635-1.22 2.635-2.723s-1.18-2.722-2.635-2.722m9.193 0c-1.455 0-2.634 1.22-2.634 2.722C9.366 22.781 10.546 24 12 24c1.455 0 2.634-1.22 2.634-2.723s-1.18-2.722-2.634-2.722m9.193 0c-1.455 0-2.635 1.22-2.635 2.722 0 1.504 1.18 2.723 2.635 2.723s2.634-1.22 2.634-2.723-1.18-2.722-2.634-2.722"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rossmann.svg���������������������������������0000664�0000000�0000000�00000002506�14753064456�0025466�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.391 0 0 5.391 0 12s5.391 12 12 12 12-5.391 12-12S18.609 0 12 0m0 2.088a9.93 9.93 0 0 1 7.477 3.39H16l.348-.607c.347-.783-.958-1.392-1.393-.61l-.607 1.218H4.52C6.435 3.392 9.131 2.088 12 2.088m8.434 4.695A10.07 10.07 0 0 1 21.912 12c0 4.087-2.522 7.653-6.174 9.13l-3.912-3.911q-.13-.131 0-.262l1.39-2.783c.088-.087.174-.174.26-.174h2.436c.087 0 .088.087.088.174l-.697 1.478s0 .174.088.174l.869.61c.087.087.175-.001.261-.088l.956-2.26c.087-.087.174-.174.261-.174h.87s.087 0 .087.174L18 15.652s-.001.174.086.174l.957.61c.087.087.173-.001.26-.088 0-.087 1.045-2.26 1.045-2.434.26-.609.172-1.652-1.045-1.652h-1.39a.19.19 0 0 1-.175-.174v-4.61q0-.26.262-.26zm-16.782.088s9.13.434 9.217.434.26 0 .26.174c.087.173.87 2.174.957 2.261s.087.348-.348.348H4.87a1.15 1.15 0 0 0-1.13 1.13v3.305c0 .261.086.522.173.696.261.26.696.433.783.433.087.087.174.001.174-.086v-4.261c0-.087.087-.174.174-.174H6s.173 0 .086.088c-.348.435-.434.87-.434 1.652 0 1.217.87 1.999 1.217 2.26 0 0 .087.087 0 .174S6 17.044 6 17.13q-.13.131 0 .262l4.348 4.26c-4.696-.87-8.174-4.87-8.174-9.653 0-1.913.522-3.65 1.478-5.129M9.912 14h.957s.173 0 .086.174-1.39 2.696-1.39 2.783v.174l4.52 4.435c-.52.174-1.042.173-1.564.26l-4.435-4.433c-.087-.087 0-.175 0-.262s1.48-2.87 1.566-2.957c0-.087.086-.174.26-.174"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rotaryinternational.svg����������������������0000664�0000000�0000000�00000012241�14753064456�0027733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.301 9.504c.09.03.125.129.152.227.467 1.572.467 2.916 0 4.5-.038.136-.093.211-.165.24-.105.032-.218-.043-.314-.113l-3.061-2.077c-.118-.078-.187-.186-.187-.3 0-.112.067-.219.187-.3l3.06-2.075c.14-.1.247-.131.328-.102m-1.122 6.928c-1.134 1.195-2.296 1.867-3.893 2.25q-.203.049-.287-.025c-.084-.07-.073-.21-.065-.331l.265-3.689c.017-.144.073-.252.175-.313.097-.053.223-.048.347.012l3.33 1.611c.154.076.237.152.253.236.017.092-.05.173-.125.25zm-5.177-2.327a2.163 2.163 0 0 1-2.162-2.16c0-.728.363-1.403.972-1.805a.436.436 0 0 1 .48.728A1.29 1.29 0 0 0 12 13.233a1.29 1.29 0 0 0 .709-2.366.437.437 0 0 1 .482-.728A2.162 2.162 0 0 1 12 14.105zm-.95 4.606c-.073.06-.174.04-.275.016-1.59-.38-2.757-1.052-3.895-2.25q-.122-.13-.122-.23c0-.013 0-.02.002-.034.015-.104.144-.166.25-.218l3.33-1.615c.13-.06.255-.064.353-.006.096.057.157.166.167.305l.27 3.696c.01.175-.015.282-.08.336m-5.018-4.33c-.145.1-.25.135-.333.106-.09-.032-.12-.13-.15-.23-.47-1.569-.47-2.915-.005-4.5.04-.135.097-.21.17-.237.105-.037.217.04.317.11l3.059 2.08c.115.076.183.182.183.298 0 .112-.068.218-.18.3zm.79-6.832h.001c1.138-1.196 2.304-1.87 3.894-2.25.099-.023.203-.042.273.02.067.053.092.162.079.339l-.27 3.685c-.008.142-.066.254-.166.309-.097.058-.224.055-.35-.007L6.959 8.033c-.108-.054-.235-.11-.257-.22-.01-.075.026-.164.122-.264m6.177-2.26c.077-.061.177-.042.277-.021 1.59.385 2.756 1.057 3.895 2.253q.123.129.125.236l-.002.028c-.025.109-.146.166-.255.219l-3.328 1.61c-.131.063-.254.069-.35.01-.097-.057-.158-.166-.17-.31l-.267-3.685c-.012-.176.013-.285.076-.34zm-.996-1.272c-4.36 0-7.908 3.55-7.908 7.911 0 4.362 3.548 7.91 7.908 7.91 4.362 0 7.912-3.548 7.912-7.91 0-4.361-3.55-7.91-7.912-7.91m0 16.903c-4.955 0-8.99-4.034-8.99-8.994 0-4.958 4.035-8.99 8.99-8.99 4.96 0 8.993 4.032 8.993 8.99 0 4.96-4.033 8.994-8.993 8.994m11.973-9.295-.002-.033-.026-.015c-.508-.308-1.176-.483-1.83-.497a58 58 0 0 1-.103-.785c.623-.176 1.222-.515 1.64-.95l.023-.02-.006-.032a3.6 3.6 0 0 0-.2-.753l-.013-.03-.032-.008c-.574-.164-1.261-.16-1.893 0a65 65 0 0 0-.296-.723c.555-.34 1.043-.82 1.336-1.34l.016-.025-.012-.033a4 4 0 0 0-.39-.674l-.016-.024h-.035c-.59-.013-1.25.167-1.833.48-.052-.07-.43-.563-.482-.631.454-.468.8-1.062.948-1.64l.008-.034-.022-.024a3.6 3.6 0 0 0-.546-.556l-.025-.019-.032.006c-.582.147-1.17.495-1.64.945l-.634-.497c.313-.553.497-1.192.497-1.78l-.004-.08-.025-.02a3.3 3.3 0 0 0-.675-.39l-.03-.01-.025.012c-.522.29-1 .775-1.335 1.33a68 68 0 0 1-.76-.317c.078-.313.127-.635.127-.958a3.2 3.2 0 0 0-.128-.932l-.007-.03-.033-.013a3.4 3.4 0 0 0-.745-.205l-.034-.003-.021.022c-.43.418-.769 1.014-.948 1.638a41 41 0 0 0-.8-.102c-.008-.647-.183-1.31-.491-1.825l-.016-.03h-.032a3.6 3.6 0 0 0-.78 0h-.034l-.015.03c-.306.51-.478 1.173-.49 1.824-.09.012-.717.088-.808.103-.18-.628-.52-1.226-.948-1.642L9.297.311l-.035.006c-.23.034-.55.12-.75.2l-.03.013-.01.03a3.6 3.6 0 0 0-.124.944c0 .316.05.64.124.95-.078.034-.683.293-.764.326-.337-.555-.817-1.044-1.337-1.337l-.028-.017-.032.011c-.2.088-.49.255-.672.393l-.028.017v.086c0 .583.18 1.224.49 1.781-.067.056-.52.41-.589.465-.467-.45-1.058-.799-1.642-.949l-.029-.007-.022.022c-.18.134-.42.37-.557.547l-.02.026.007.032c.146.58.494 1.17.944 1.644-.05.069-.444.583-.5.654-.564-.315-1.223-.503-1.825-.494l-.03.002-.02.027a3.7 3.7 0 0 0-.391.675l-.013.028.017.029c.288.518.778 1.003 1.335 1.342-.03.08-.259.637-.294.718-.642-.16-1.325-.16-1.896.006l-.031.008-.011.027c-.084.2-.171.516-.205.754l-.004.032.022.025c.417.429 1.015.768 1.64.94l-.105.791c-.649.013-1.318.184-1.828.491l-.028.015-.004.034a3.5 3.5 0 0 0 0 .78l.004.031.028.015c.51.306 1.173.48 1.827.49.012.09.1.724.11.811-.625.184-1.22.526-1.636.954l-.023.027.004.03c.036.234.122.556.203.75l.013.03.029.01c.579.164 1.263.157 1.898 0 .032.08.278.641.312.722-.555.333-1.043.815-1.337 1.335l-.014.03.01.03c.086.205.256.494.392.673l.021.027.028.002c.598.008 1.258-.17 1.83-.486.053.068.44.57.49.64-.448.46-.798 1.05-.946 1.637l-.008.03.02.027c.137.175.373.41.55.553l.025.022.03-.01c.58-.145 1.17-.49 1.641-.943l.647.496c-.308.566-.489 1.21-.489 1.798v.066l.03.02c.174.134.46.297.671.39l.03.012.03-.015c.523-.29 1.004-.78 1.342-1.342l.71.287a3.8 3.8 0 0 0-.123.945c0 .33.043.653.126.943l.008.03.032.014c.198.084.515.17.75.208l.034.005.022-.026c.432-.42.77-1.018.939-1.637.09.015.724.104.812.114.013.652.188 1.317.494 1.823l.013.028.035.005c.225.028.56.028.78 0l.03-.005.018-.028c.303-.506.478-1.172.494-1.827.088-.013.68-.095.77-.11.174.63.514 1.22.946 1.642l.023.02.03-.001c.235-.038.555-.121.754-.202l.028-.014.011-.03c.083-.292.122-.613.122-.943 0-.318-.045-.644-.122-.957.081-.03.655-.28.736-.315.34.557.82 1.046 1.338 1.34l.026.012.03-.01c.207-.086.5-.254.678-.394l.026-.016v-.087c0-.576-.18-1.217-.483-1.78l.61-.476c.474.45 1.064.795 1.643.945l.032.009.023-.021c.177-.14.417-.378.555-.55l.022-.03-.012-.026c-.143-.578-.488-1.17-.94-1.642.053-.07.435-.572.487-.643.574.315 1.235.495 1.828.484h.032l.02-.025a3 3 0 0 0 .39-.68l.014-.026-.016-.028c-.283-.51-.768-.996-1.324-1.346l.293-.713c.63.162 1.314.167 1.89 0l.027-.01.013-.028c.085-.203.17-.517.206-.75l.004-.033-.024-.025c-.417-.432-1.012-.767-1.631-.945.014-.087.097-.68.106-.77.656-.01 1.324-.185 1.833-.49l.026-.018.002-.035c.015-.108.02-.25.02-.389 0-.14-.005-.278-.02-.387"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rottentomatoes.svg���������������������������0000664�0000000�0000000�00000001555�14753064456�0026720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.866 0 4.335 1.262l2.082 1.8c-2.629-.989-4.842 1.4-5.012 2.338 1.384-.323 2.24-.422 3.344-.335-7.042 4.634-4.978 13.148-1.434 16.094 5.784 4.612 13.77 3.202 17.91-1.316C27.26 13.363 22.993.65 10.86 2.766c.107-1.17.633-1.503 1.243-1.602-.89-1.493-3.67-.734-4.556 1.374C7.52 2.602 5.866 0 5.866 0M4.422 7.217H6.9c2.673 0 2.898.012 3.55.202 1.06.307 1.868.973 2.313 1.904q.074.158.13.305l7.623.008.027 2.912-2.745-.024v7.549l-2.982-.016v-7.522l-2.127.016a2.9 2.9 0 0 1-1.056 1.134c-.287.176-.3.19-.254.264.127.2 2.125 3.642 2.125 3.659l-3.39.019-2.013-3.376c-.034-.047-.122-.068-.344-.084l-.297-.02.037 3.48-3.075-.038zm3.016 2.288.024.338c.014.186.024.729.024 1.206v.867l.582-.025c.32-.013.695-.049.833-.078.694-.146 1.048-.478 1.087-1.018.027-.378-.063-.636-.303-.87-.318-.309-.761-.416-1.733-.418Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/roundcube.svg��������������������������������0000664�0000000�0000000�00000000536�14753064456�0025615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.002.072a8.3 8.3 0 0 0-8.266 7.512L.498 9.454l4.682 2.704A7.8 7.8 0 0 1 12.002.572a7.802 7.802 0 0 1 6.824 11.582l4.676-2.7-3.236-1.87A8.3 8.3 0 0 0 12.002.072M0 9.742v7.399l11.75 6.787v-7.399zm24 0-5.777 3.338-5.248 3.031h-.002l-.108.063-.615.355v7.399L24 17.14V9.744z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rsocket.svg����������������������������������0000664�0000000�0000000�00000003362�14753064456�0025301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.002.003a11 11 0 0 1-.707.025c-2.73-.003-5.46.015-8.188-.023-1.33-.02-2.586.259-3.806.738a12 12 0 0 0-4.81 3.433C3.376 5.481 2.603 6.96 2.1 8.598c-.351 1.141-.442 2.316-.457 3.484-.05 3.852-.03 7.704-.045 11.557-.001.272.12.34.36.34a747 747 0 0 1 3.88.015c.206.001.304-.07.303-.299-.007-2.077-.004-4.155-.004-6.232h.004c0-1.615-.005-3.229.002-4.844.003-.735.04-1.462.201-2.19.293-1.334.876-2.494 1.8-3.503 1.412-1.54 3.096-2.387 5.227-2.406 2.739-.024 5.477-.017 8.215-.01.758.002.757.007.76-.748q.005-1.713.013-3.427c.001-.279-.08-.35-.357-.332m.072 6.468a8 8 0 0 1-.51.018l-8.129.008c-.445 0-.899.017-1.322.134-2.36.656-3.866 2.68-3.992 4.979-.117 2.144.81 3.793 2.563 4.992.639.437 1.353.742 2.12.803 1.526.12 3.06.044 4.588.084.19.005.282-.077.266-.274-.007-.089-.056-.206.053-.254.11-.048.19.054.27.115.502.384.999.775 1.507 1.15.205.152.162.26-.006.395-.477.385-.95.776-1.426 1.164-.073.06-.145.132-.25.098-.119-.039-.103-.147-.097-.238.016-.243-.11-.303-.332-.303q-4.432.008-8.865.006c-.432 0-.42-.009-.416.412.012 1.303.04 2.604-.018 3.906-.011.259.094.335.328.334q2.295-.003 4.588-.002v-.033c.916 0 1.832.007 2.748-.002.726-.007 1.462.043 2.176-.106 1.478-.309 2.655-1.106 3.506-2.351 1.002-1.468 1.187-3.08.683-4.76a5.2 5.2 0 0 0-1.982-2.757c-.885-.637-1.852-1.061-2.986-1.065-1.18-.004-2.36-.007-3.54-.023-.25-.004-.277.132-.25.33.012.082.028.179-.064.228-.093.051-.162-.024-.224-.076-.515-.428-1.026-.862-1.543-1.287-.136-.111-.155-.213-.01-.316a16 16 0 0 0 1.543-1.286c.06-.056.126-.133.22-.076.079.048.051.133.045.207-.026.325.025.38.352.381.68.004 1.358-.03 2.037-.037 2.114-.022 4.23-.007 6.345 0 .237 0 .353-.079.352-.324-.004-1.293-.003-2.588-.006-3.88 0-.214-.11-.308-.322-.294z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rss.svg��������������������������������������0000664�0000000�0000000�00000000541�14753064456�0024432�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.199 24C19.199 13.467 10.533 4.8 0 4.8V0c13.165 0 24 10.835 24 24zM3.291 17.415a3.3 3.3 0 0 1 3.293 3.295A3.303 3.303 0 0 1 3.283 24C1.47 24 0 22.526 0 20.71s1.475-3.294 3.291-3.295M15.909 24h-4.665c0-6.169-5.075-11.245-11.244-11.245V8.09c8.727 0 15.909 7.184 15.909 15.91"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rstudioide.svg�������������������������������0000664�0000000�0000000�00000001035�14753064456�0025775�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.178.002a12 12 0 0 0-8.662 3.515 12 12 0 0 0 0 16.97 12 12 0 0 0 16.97 0 12 12 0 0 0 0-16.97A12 12 0 0 0 12.179.002zM7.77 5.995c.562.128 1.05.217 1.663.217.921 0 1.863-.217 2.786-.217 1.79 0 3.45.814 3.45 2.8 0 1.54-.921 2.517-2.35 2.93l2.788 4.107h1.301v1.01h-1.986l-3.293-4.934h-1.757v3.924h1.718v1.01H7.77v-1.01h1.483V7.134L7.77 6.951v-.957zm4.466 1.012c-.596 0-1.213.053-1.864.127v3.798l.941.02c2.298.034 3.183-.85 3.183-2.026 0-1.376-.997-1.919-2.26-1.919"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rte.svg��������������������������������������0000664�0000000�0000000�00000002200�14753064456�0024407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.983 12.857V9.038s.734-.018 1.615-.018c.131 0 .258.01.373.016 1.41.115 1.992.883 1.992 1.807 0 1.036-.82 1.819-1.992 1.986a3.5 3.5 0 0 1-.474.028zm2.84 1.244c1.736-.168 3.197-1.446 3.197-3.102 0-1.763-1.018-3.324-4.049-3.45a10 10 0 0 0-.393-.01c-2.098 0-3.537.1-3.537.1s.097 1.035.097 1.558v7.624C.138 17.522 0 18.26 0 18.26h2.118s-.135-.737-.135-1.577v-3.101l1.988 2.08 1.006 1.043c.62.677 1.702 1.555 1.702 1.555h2.8s-1.253-.878-1.835-1.438zm19.055-7.198a8.1 8.1 0 0 0-2.036-.284c-1.784 0-3.321.541-4.603 1.682l.02-1.261c1.36-.925 2.9-1.34 4.583-1.34.738 0 1.378.1 2.056.276zM11.282 18.259s.117-.778.117-1.458V9.402h-.501c-.68 0-1.736 0-2.516.077l-.066-1.718h8.124l-.041 1.718c-.802-.077-1.838-.077-2.539-.077h-.617v7.399c0 .68.136 1.458.136 1.458zm10.419-1.524c-1.838 0-3.386-1.315-3.666-3.175h3.482c.385 0 1.222.082 1.222.082V12.1s-.822.061-1.28.061h-3.424c.347-1.822 1.845-3.08 3.666-3.08.96 0 2.139.438 2.139.438l.023-1.622s-.84-.318-2.162-.318c-3.063 0-5.741 2.34-5.741 5.32 0 3.223 2.678 5.4 5.74 5.4 1.44 0 2.3-.384 2.3-.384l-.04-1.676c-.001 0-1.062.496-2.26.496Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rtl.svg��������������������������������������0000664�0000000�0000000�00000000656�14753064456�0024433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 9.889v4.222h7.498V9.89H0zm8.25 0v4.222h7.5V9.89h-7.5zm8.252 0v4.222H24V9.89h-7.498zm-14.365.966H4.12c.61 0 .945.275.945.733 0 .397-.254.662-.691.723l.977.824h-.754l-.926-.795H2.656v.795h-.52zm8.281 0h3.164v.448H12.26v1.832h-.52v-1.832h-1.322zm8.414 0h.518v1.832h2.32v.448h-2.838zm-16.176.428v.631H4.06c.325 0 .478-.103.478-.316s-.153-.315-.478-.315z"/></svg>����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rtlzwei.svg����������������������������������0000664�0000000�0000000�00000000362�14753064456�0025324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h7.38v-3.69H3.692L3.69 3.69h9.229V0zm16.61 0v3.69h3.7v16.62h-9.238V24H24V0zm-.003 6.49-3.689.717v9.227l3.69-.715V6.49zm-5.535 1.076-3.69.715v9.229l3.69-.717z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rtm.svg��������������������������������������0000664�0000000�0000000�00000001316�14753064456�0024426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.584 9.054H1.98l-.487 1.413h3.408c.54 0 .594.25.51.494s-.18.323-.719.323h-3.43L0 14.946h1.917l.892-2.454c.263 0 .33.024.436.257l1.043 2.197h2.084l-1.148-2.46c1.368-.15 1.985-.822 2.206-1.698.211-.837-.173-1.734-1.846-1.734m2.817 0-.487 1.413H10l-1.541 4.48 2.036-.001 1.54-4.479h1.94l.486-1.413zm7.89 0h-1.306l-.485 1.414h.624c.272 0 .416.22.322.493l-1.368 3.985h2.036l1.37-3.988c.37-1.08.053-1.905-1.194-1.904m3.186 0h-1.16l-.486 1.414h.48c.271 0 .415.22.322.493l-1.368 3.985H19.3l1.37-3.988c.37-1.08.053-1.904-1.194-1.904m3.185 0h-1.16l-.485 1.414h.479c.272 0 .416.22.323.493l-1.369 3.985h2.036l1.37-3.988c.37-1.08.054-1.904-1.194-1.904"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rubocop.svg����������������������������������0000664�0000000�0000000�00000001636�14753064456�0025302�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.06 0C7.71 0 4.121 3.25 3.584 7.455h16.952C19.998 3.25 16.41 0 12.06 0M3.93 7.95a1.54 1.54 0 0 0-1.537 1.537v.772c-.358.22-.598.613-.598 1.06v2.065c0 .448.24.842.598 1.061v.802a1.54 1.54 0 0 0 1.536 1.536h16.14a1.54 1.54 0 0 0 1.536-1.536v-.802c.358-.22.6-.612.6-1.06V11.32c0-.448-.242-.842-.6-1.061v-.772A1.54 1.54 0 0 0 20.07 7.95zm1.47 3.146h13.2c.622 0 1.132.51 1.132 1.134s-.51 1.133-1.133 1.133H5.4c-.624 0-1.134-.51-1.134-1.133s.51-1.134 1.134-1.134m-1.42 5.998v3.276A3.64 3.64 0 0 0 7.61 24h8.94a3.64 3.64 0 0 0 3.628-3.63v-3.276h-1.995v3.267c0 .898-.735 1.633-1.633 1.633h-.89v-.003a.62.62 0 0 1-.48-.23h-.002l-1.063-1.358h-.002a.62.62 0 0 0-.488-.245h-3.093a.62.62 0 0 0-.463.214h-.002L8.98 21.758h-.002a.62.62 0 0 1-.481.23v.004h-.89a1.64 1.64 0 0 1-1.633-1.633v-3.267zm4.996.795-.82.95.774.67.515-.596h5.046l.516.596.774-.67-.82-.95z"/></svg>��������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ruby.svg�������������������������������������0000664�0000000�0000000�00000000734�14753064456�0024610�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.156.083c3.033.525 3.893 2.598 3.829 4.77L24 4.822 22.635 22.71 4.89 23.926h.016C3.433 23.864.15 23.729 0 19.139l1.645-3 2.819 6.586.503 1.172 2.805-9.144-.03.007.016-.03 9.255 2.956-1.396-5.431-.99-3.9 8.82-.569-.615-.51L16.5 2.114 20.159.073zM5.13 5.073c3.561-3.533 8.157-5.621 9.922-3.84 1.762 1.777-.105 6.105-3.673 9.636-3.563 3.532-8.103 5.734-9.864 3.957-1.766-1.777.045-6.217 3.612-9.75z"/></svg>������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rubygems.svg���������������������������������0000664�0000000�0000000�00000000352�14753064456�0025460�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.81 7.9-2.97 2.95 7.19 7.18 2.96-2.95 4.22-4.23-2.96-2.96v-.01H7.8zM12 0 1.53 6v12L12 24l10.47-6V6zm8.47 16.85L12 21.73l-8.47-4.88V7.12L12 2.24l8.47 4.88z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rubymine.svg���������������������������������0000664�0000000�0000000�00000001067�14753064456�0025461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0Zm3.056 3H6.92q.945 0 1.665.347t1.106.977c.262.42.392.902.392 1.46q0 .835-.399 1.478a2.6 2.6 0 0 1-1.125.99 2 2 0 0 1-.297.103l-.13.04L10.276 12H8.264l-1.94-3.4H4.811V12H3.056Zm8.51 0h2.444l1.851 5.907.154.773.136-.773L17.937 3h2.482v9h-1.736V5.578l.026-.47L16.613 12H15.34l-2.07-6.846.026.424V12h-1.73ZM4.812 4.459V7.14h1.993q.444-.001.771-.161.335-.167.515-.47c.12-.205.18-.439.18-.713q0-.411-.18-.707a1.17 1.17 0 0 0-.515-.462 1.7 1.7 0 0 0-.77-.168ZM2.996 19.2h9.6V21h-9.6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rubyonrails.svg������������������������������0000664�0000000�0000000�00000002071�14753064456�0026174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.741 19.365h8.36s-1.598-7.291 3.693-10.243l.134-.066c1.286-.637 4.907-2.431 10.702 1.854.19-.159.37-.286.37-.286s-5.503-5.492-11.63-4.878c-3.079.275-6.867 3.079-9.09 6.783S.741 19.365.741 19.365m8.804-.783a11 11 0 0 1-.127-1.333l1.143.412c.063.498.159.963.254 1.376zm-7.799-4.317L.529 13.82c-.201.455-.423.984-.529 1.27l1.217.444c.137-.359.36-.878.529-1.269m7.831.296.857.677q.063-.619.222-1.238l-.762-.603c-.137.391-.233.783-.317 1.164m2.042-2.646-.508-.762c.191-.243.413-.486.656-.709l.476.72a6 6 0 0 0-.624.751M4.19 8.878l.752.656c-.254.265-.498.551-.72.836l-.815-.698c.244-.265.508-.529.783-.794m9.799 1.027-.243-.73c.265-.117.571-.233.931-.339l.233.698a7 7 0 0 0-.921.371m3.122-.656.042-.667c.339.021.688.064 1.048.138l-.042.656a6 6 0 0 0-1.048-.127M8.942 6.392l-.476-.731c-.265.138-.54.286-.826.455l.487.741c.275-.169.54-.328.815-.465m9.217-.053.042-.709c-.095-.053-.36-.18-1.026-.371l-.043.699c.349.116.688.243 1.027.381M13.238 5.28h.106l-.212-.645q-.492 0-1.016.063l.201.625a9 9 0 0 1 .921-.043"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rubysinatra.svg������������������������������0000664�0000000�0000000�00000003252�14753064456�0026170�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.224 10.525c-1.215.4-3.32 1.384-3.943 1.934q-.103.09-.207.194c-.49.43-.76.851-.89 1.285A4.4 4.4 0 0 0 0 15.208c-.005.842.247 1.369.247 1.369.714 1.428 2.416 2.4 4.21 2.963 1.777.593 5.622.289 7.521.046 5.091-.684 8.389-1.657 10.319-3.237C23.924 15.042 24 13.644 24 13.127a1.5 1.5 0 0 0-.02-.219c-.032-.553-.258-1.62-1.49-2.38a3 3 0 0 0-.33-.197q-.187-.098-.375-.186l-.035-.027-.191-.078a12 12 0 0 0-.629-.264c-.515-.225-.971-.387-1.372-.477a70 70 0 0 1-.041-1.703c0-.7-.244-1.08-.441-1.277-.12-.119-.557-.265-.997-.4a19 19 0 0 0-.93-.287l-.079-.027v.005l-.417-.12h-.001l-.448-.128-.094-.015-.033-.01-.07-.02-.028-.008-.641-.19-.091-.012v-.003l-.213-.057v-.004l-.32-.09v-.001a18 18 0 0 0-.669-.167 70 70 0 0 0-2.689-.502c-.182-.046-1.367-.152-1.367-.152a6 6 0 0 0-1.106.023 4 4 0 0 0-.779.19c-.113.024-.245.103-.383.216a1.4 1.4 0 0 0-.177.146l-.002.002-.125.12-.007.008c-.217.217-.36.412-.454.584-.174.249-.304.479-.341.61-.032.119-.129.578-.228 1.044-.091.432-.184.871-.228 1.054-.048.2-.334.906-.601 1.567-.124.304-.243.598-.334.83m14.384.642c0-.06.076-.06.076.015 0 0 0 .016-.003.036l.003.025c0 .03 0 .456-.03.957q-.013.207-.031.426c-.011.144-.023.289-.03.425-.007.225-.008.431-.007.59.007.154.007.246.007.246v.106c0 .259-.152.593-.396.745l-.04.026h-.001l-.021.013a1.8 1.8 0 0 1-.409.23c-.22.106-.516.223-.942.339-.836.243-1.459.35-1.869.395-1.003.122-2.188.182-3.601.182-.29 0-1.414 0-1.687-.015-3.739-.106-5.988-1.23-5.988-2.036v-.106s.32-2.478.32-2.63.09-.273.09-.182v.06q0 .045.002.093.003.015.008.025t.006.02c.32 1.018 3.45 1.717 7.279 1.717h.638l.205-.003h.001c1.15-.012 3.818-.042 5.842-.954.35-.228.578-.456.578-.745"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ruff.svg�������������������������������������0000664�0000000�0000000�00000000473�14753064456�0024571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 0C1.338 0 0 1.338 0 3v18c0 1.662 1.338 3 3 3h18c1.662 0 3-1.338 3-3V3c0-1.662-1.338-3-3-3Zm4.2 7.2h8.641c.53 0 .959.43.959.959v3.266a.96.96 0 0 1-.959.959h-.961v.768h1.92V16.8h-4.416v-2.88h-.768v2.88H7.2Zm3.648 3.648v.768h2.304v-.768z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rumahweb.svg���������������������������������0000664�0000000�0000000�00000001602�14753064456�0025434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 12.149c.028-.275.148-.543.36-.753l7.182-7.092a1 1 0 0 1 .103-.091c.308-.265 1.807-1.473 3.743-1.553h.402c1.126.047 2.374.5 3.61 1.731 2.534 2.542 5.076 5.077 7.615 7.615 1.14 1.14 1.198 2.585.642 3.795a4 4 0 0 1-.819 1.173 4 4 0 0 1-1.188.823c-1.208.537-2.646.458-3.86-.753l-.053-.056-6.222-6.061a.93.93 0 0 0-1.03-.207 1.6 1.6 0 0 0-.499.325c-.15.141-.272.304-.352.473-.136.291-.141.627.085.907l6.806 6.802c.483.485.481 1.27-.005 1.752a1.246 1.246 0 0 1-1.758-.004l-6.889-6.89c-.999-1.138-1.021-2.48-.488-3.614a4.1 4.1 0 0 1 2.185-2.05c1.183-.468 2.553-.365 3.679.731 2.103 2.044 4.197 4.098 6.304 6.138.359.356.76.392 1.085.248a1.6 1.6 0 0 0 .76-.763c.154-.335.148-.726-.146-1.018-2.54-2.533-5.07-5.077-7.615-7.605-1.977-1.973-4.04-.345-4.347-.082l-7.178 7.086a1.245 1.245 0 0 1-1.757-.003A1.25 1.25 0 0 1 0 12.402z"/></svg>������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rumble.svg�����������������������������������0000664�0000000�0000000�00000000744�14753064456�0025116�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.453 13.546a1.88 1.88 0 0 0 .275-2.645 2 2 0 0 0-.275-.275A21.2 21.2 0 0 0 10.14 7.85c-1.066-.51-2.256.2-2.426 1.414a23.5 23.5 0 0 0-.14 5.502c.116 1.23 1.292 1.964 2.372 1.492a19.6 19.6 0 0 0 4.506-2.704zm6.932-5.4a5.85 5.85 0 0 1 .014 7.872 26.15 26.15 0 0 1-13.104 7.828 5.116 5.116 0 0 1-6.167-3.578c-1.524-5.2-1.3-11.08.17-16.305C3.07 1.22 5.651-.503 8.308.131c4.925 1.174 9.545 4.196 13.077 8.013z"/></svg>����������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rundeck.svg����������������������������������0000664�0000000�0000000�00000000302�14753064456�0025251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.35 4.8 16.325 0H.115L3.14 4.8zM.115 24h16.21l3.025-4.8H3.14zM6.163 9.6h16.21l1.512 2.4-1.512 2.4H6.163L7.675 12z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/runkeeper.svg��������������������������������0000664�0000000�0000000�00000006205�14753064456�0025626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.429 10.42c-.52 0-1.091.318-1.45.619l.029.04c.556-.39 1.33-.644 1.544-.263.112.201-.079.607-.348.928.065-.142.022-.414-.353-.414-.624 0-1.851.826-1.851 1.672 0 .339.235.56.622.56 1.035 0 2.44-1.698 2.44-2.551 0-.301-.173-.59-.633-.59zm8.738.714v1.903h.454v-.306l.345-.229.628.535h.626l-.91-.764.891-.595h-.68l-.9.619v-1.163zm-7.464.19v1.712h.453v-.543h.98l.546.544h.58l-.589-.575a.77.77 0 0 0 .399-.196.49.49 0 0 0 .14-.357.5.5 0 0 0-.23-.433q-.228-.153-.634-.153zm-1.853.207c.297 0 .274.265.1.492l-.096.106c-.345.34-.664.52-.88.52v-.001c-.179 0-.265-.138-.22-.297.093-.33.69-.82 1.096-.82m17.228.09h-.012a1.3 1.3 0 0 0-.403.063.8.8 0 0 0-.292.166v-.172h-.45v1.902h.455v-.711a.8.8 0 0 0 .293.163 1.3 1.3 0 0 0 .397.061 1.3 1.3 0 0 0 .498-.092.8.8 0 0 0 .349-.26.65.65 0 0 0 0-.769.8.8 0 0 0-.349-.259 1.3 1.3 0 0 0-.486-.092m-9.133 0h-.011a.96.96 0 0 0-.44.096.7.7 0 0 0-.29.258v-.297h-.432v1.359h.454v-.568a.45.45 0 0 1 .081-.271.5.5 0 0 1 .22-.17.8.8 0 0 1 .312-.057.56.56 0 0 1 .261.06.44.44 0 0 1 .18.167.5.5 0 0 1 .065.248v.59h.456v-.663a.7.7 0 0 0-.117-.414.7.7 0 0 0-.314-.254 1.1 1.1 0 0 0-.425-.084m6.667 0a1.5 1.5 0 0 0-.523.094.87.87 0 0 0-.364.263.6.6 0 0 0-.132.378.6.6 0 0 0 .133.385.85.85 0 0 0 .385.26q.252.092.594.091a2.6 2.6 0 0 0 .418-.03q.185-.03.397-.085v-.33a6 6 0 0 1-.398.087 2.4 2.4 0 0 1-.4.03q-.267 0-.45-.073-.18-.073-.224-.213l1.569.003v-.078a.7.7 0 0 0-.131-.42.8.8 0 0 0-.36-.27 1.5 1.5 0 0 0-.514-.092m7.388 0a1.5 1.5 0 0 0-.582.111q-.247.108-.342.284v-.338h-.449v1.359h.454v-.5a.39.39 0 0 1 .144-.306.9.9 0 0 1 .357-.18 1.5 1.5 0 0 1 .418-.052zm-9.66 0a1.5 1.5 0 0 0-.524.094.87.87 0 0 0-.363.263.6.6 0 0 0-.133.378.6.6 0 0 0 .134.385.85.85 0 0 0 .385.26q.252.092.594.092a2.6 2.6 0 0 0 .418-.03q.184-.032.397-.086v-.33a5 5 0 0 1-.398.087 2.4 2.4 0 0 1-.4.03q-.267 0-.45-.072-.18-.074-.224-.213l1.569.002v-.078a.7.7 0 0 0-.131-.42.8.8 0 0 0-.36-.27 1.5 1.5 0 0 0-.515-.092zm6.958 0a1.5 1.5 0 0 0-.523.094.87.87 0 0 0-.364.263.6.6 0 0 0-.132.378.6.6 0 0 0 .134.385.85.85 0 0 0 .385.26q.252.092.594.092a2.6 2.6 0 0 0 .418-.03q.184-.032.397-.086v-.33q-.22.056-.398.087a2.4 2.4 0 0 1-.4.03 1.2 1.2 0 0 1-.45-.072q-.18-.074-.224-.213l1.569.002v-.078a.7.7 0 0 0-.131-.42.8.8 0 0 0-.36-.27 1.5 1.5 0 0 0-.515-.092m-17.142.057h1.15a.7.7 0 0 1 .304.054.18.18 0 0 1 .115.177q0 .121-.115.176a.7.7 0 0 1-.304.056h-1.15zm3.837 0v.645a.36.36 0 0 1-.07.222.46.46 0 0 1-.197.146.8.8 0 0 1-.287.052.7.7 0 0 1-.279-.052.45.45 0 0 1-.192-.148.37.37 0 0 1-.07-.22v-.645h-.456v.645a.7.7 0 0 0 .123.407.8.8 0 0 0 .35.268q.225.095.53.095t.532-.095a.8.8 0 0 0 .35-.268.7.7 0 0 0 .122-.407v-.645zm6.343.243q.21 0 .354.083a.35.35 0 0 1 .178.217h-1.09a.35.35 0 0 1 .188-.22q.15-.08.37-.08m2.272 0q.21 0 .355.083a.35.35 0 0 1 .177.217h-1.09a.35.35 0 0 1 .189-.22q.15-.08.37-.08zm4.687 0q.21 0 .354.083a.35.35 0 0 1 .177.217h-1.089a.36.36 0 0 1 .188-.22q.15-.08.37-.08m-2.293.033a.9.9 0 0 1 .29.05.46.46 0 0 1 .203.143.33.33 0 0 1 .071.209.34.34 0 0 1-.07.211.46.46 0 0 1-.204.142.9.9 0 0 1-.312.05 1 1 0 0 1-.305-.044.5.5 0 0 1-.227-.137.31.31 0 0 1-.086-.222.3.3 0 0 1 .086-.22.54.54 0 0 1 .228-.135 1 1 0 0 1 .304-.047z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/runkit.svg�����������������������������������0000664�0000000�0000000�00000000615�14753064456�0025141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.97 14.797a3 3 0 0 1-1.47 3.02l-9 5.2a3 3 0 0 1-3 0l-9-5.2a3 3 0 0 1-1.47-3.02l1.32-7.2a3 3 0 0 1 .98-1.82 3 3 0 0 1 .49-.35l7.55-4.37a3.01 3.01 0 0 1 3.28.02l7.53 4.35c.1.05.19.1.28.17a3 3 0 0 1 1.19 2zm-9.54-10.77-7.72 1.59c-.43.08-.51.64-.14.86l5.6 3.23c.23.13.5.07.63-.19l1.58-3.6.53-1.22c.16-.35-.11-.75-.5-.67z"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/runrundotit.svg������������������������������0000664�0000000�0000000�00000001423�14753064456�0026220�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.933 10.995c.289-1.241.554-2.402.715-3.377.293-1.762.364-2.985.28-4.197h.134c2.995 0 4.642 1.256 4.642 3.364 0 2.769-2.795 4.174-5.771 4.21m10.006 7.318c-.544.701-1.352 1.4-2.306 1.4-1.844 0-3.433-2.808-3.71-6.624 3.514-.662 6.575-3.086 6.575-6.823C22.498 3.18 19.313 0 13.55 0 6.478 0 .471 3.84.471 8.648c0 1.696.886 3.249 2.396 3.249.874 0 1.775-.345 2.36-1.167-.4-.767-.622-1.376-.575-2.277.086-1.613 1.982-3.354 3.734-4.198.029 2.846-.402 5.014-1.105 8.305-.755 3.537-1.747 6.57-1.747 9.087 0 1.073.502 2.353 1.773 2.353 1.351 0 2.533-.789 3.302-1.663-.199-1.552-.226-3.313.25-6.255a55 55 0 0 1 .636-3.187c.43 4.649 2.332 11.045 6.867 11.045 2.742 0 5.167-1.693 5.167-3.918 0-1.012-.636-1.83-1.59-1.709"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rust.svg�������������������������������������0000664�0000000�0000000�00000006321�14753064456�0024622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.835 11.703-1.008-.623-.028-.294.866-.807a.348.348 0 0 0-.116-.578l-1.106-.414a9 9 0 0 0-.087-.285l.69-.96a.346.346 0 0 0-.226-.544l-1.166-.19a9 9 0 0 0-.14-.261l.49-1.076a.34.34 0 0 0-.028-.336.35.35 0 0 0-.3-.154l-1.185.041a7 7 0 0 0-.188-.227l.273-1.153a.347.347 0 0 0-.417-.417l-1.153.273-.228-.188.041-1.184a.344.344 0 0 0-.49-.328l-1.076.49-.262-.14-.19-1.167a.348.348 0 0 0-.545-.226l-.96.69a9 9 0 0 0-.285-.086L14.597.453a.348.348 0 0 0-.578-.116l-.807.867a9 9 0 0 0-.294-.028L12.295.168a.346.346 0 0 0-.59 0l-.623 1.008-.294.028L9.98.337a.346.346 0 0 0-.578.116l-.414 1.106-.285.086-.959-.69a.348.348 0 0 0-.545.226l-.19 1.167a9 9 0 0 0-.262.14l-1.076-.49a.346.346 0 0 0-.49.328l.041 1.184a8 8 0 0 0-.228.187l-1.153-.272a.347.347 0 0 0-.417.417l.271 1.153-.186.227-1.184-.042a.346.346 0 0 0-.328.49l.49 1.077a9 9 0 0 0-.14.262l-1.166.19a.348.348 0 0 0-.226.544l.69.958-.087.286-1.106.414a.348.348 0 0 0-.116.578l.866.807a9 9 0 0 0-.028.294l-1.008.623a.344.344 0 0 0 0 .59l1.008.623q.012.147.028.294l-.866.807a.346.346 0 0 0 .116.578l1.106.415q.042.144.087.285l-.69.959a.345.345 0 0 0 .227.544l1.166.19q.069.132.14.262l-.49 1.076a.346.346 0 0 0 .328.49l1.183-.041q.093.115.187.227l-.27 1.154a.346.346 0 0 0 .416.417l1.153-.272q.113.096.228.187l-.041 1.184a.344.344 0 0 0 .49.327l1.076-.49q.13.073.262.14l.19 1.167a.348.348 0 0 0 .545.227l.959-.69a9 9 0 0 0 .285.086l.414 1.107a.345.345 0 0 0 .578.115l.808-.865.294.03.623 1.006a.347.347 0 0 0 .59 0l.623-1.007q.148-.013.294-.03l.807.866a.348.348 0 0 0 .578-.115l.414-1.107a9 9 0 0 0 .285-.087l.959.69a.345.345 0 0 0 .545-.226l.19-1.166.262-.14 1.076.49a.347.347 0 0 0 .49-.328l-.041-1.184a7 7 0 0 0 .227-.187l1.153.272a.347.347 0 0 0 .417-.416l-.272-1.155q.095-.112.187-.227l1.184.041a.344.344 0 0 0 .328-.49l-.49-1.076q.072-.13.141-.262l1.166-.19a.348.348 0 0 0 .226-.544l-.69-.959.087-.285 1.106-.414a.346.346 0 0 0 .116-.579l-.866-.807q.016-.147.028-.294l1.008-.624a.344.344 0 0 0 0-.589zm-6.742 8.355a.714.714 0 0 1 .299-1.396.714.714 0 1 1-.3 1.396zm-.342-2.314a.65.65 0 0 0-.771.5l-.358 1.669a8.7 8.7 0 0 1-3.619.78 8.7 8.7 0 0 1-3.695-.815L7.95 18.21a.65.65 0 0 0-.772-.5l-1.473.317a9 9 0 0 1-.761-.898h7.167c.081 0 .136-.014.136-.088v-2.536c0-.074-.054-.088-.136-.088h-2.096v-1.608h2.268c.206 0 1.106.059 1.393 1.209.09.353.288 1.504.424 1.873.134.413.683 1.238 1.268 1.238h3.572a1 1 0 0 0 .13-.013 9 9 0 0 1-.813.952zm-9.914 2.28a.714.714 0 1 1-.3-1.396.714.714 0 0 1 .3 1.396M4.117 8.997a.714.714 0 1 1-1.303.58.714.714 0 0 1 1.304-.58m-.834 1.981 1.534-.682a.65.65 0 0 0 .33-.858l-.316-.715h1.244v5.602H3.567a8.8 8.8 0 0 1-.284-3.348zm6.734-.543V8.784h2.96c.153 0 1.08.177 1.08.87 0 .574-.712.78-1.296.78zm10.757 1.486q0 .329-.024.651h-.9c-.09 0-.127.059-.127.148v.413c0 .973-.548 1.184-1.03 1.238-.457.052-.964-.191-1.027-.472-.27-1.518-.72-1.843-1.43-2.403.882-.56 1.799-1.386 1.799-2.492 0-1.193-.82-1.945-1.377-2.315-.783-.516-1.65-.62-1.883-.62H5.468a8.77 8.77 0 0 1 4.907-2.77l1.098 1.152a.65.65 0 0 0 .918.02l1.227-1.173a8.78 8.78 0 0 1 6.004 4.276l-.84 1.898a.65.65 0 0 0 .33.859l1.618.718q.042.43.042.872zm-9.3-9.6a.713.713 0 1 1 .984 1.032.714.714 0 0 1-.984-1.031m8.339 6.71a.71.71 0 0 1 .939-.362.714.714 0 1 1-.94.364z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rustdesk.svg���������������������������������0000664�0000000�0000000�00000001171�14753064456�0025467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.608 5.601-1.97 1.96c-.348.31-.516.81-.321 1.233 1.313 2.747.814 6.023-1.34 8.175-2.156 2.152-5.435 2.65-8.184 1.338-.406-.182-.881-.028-1.193.288l-2.003 2a1.065 1.065 0 0 0 .192 1.671 12.005 12.005 0 0 0 14.686-1.765 11.97 11.97 0 0 0 1.806-14.665 1.065 1.065 0 0 0-1.673-.234zM3.561 3.474a11.97 11.97 0 0 0-1.864 14.663 1.065 1.065 0 0 0 1.672.235l1.961-1.948c.355-.31.528-.816.331-1.245-1.313-2.747-.816-6.022 1.34-8.174 2.154-2.153 5.434-2.65 8.184-1.339.4.18.87.03 1.182-.277l2.015-2.012a1.063 1.063 0 0 0-.192-1.671A12.01 12.01 0 0 0 3.519 3.527z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rxdb.svg�������������������������������������0000664�0000000�0000000�00000000532�14753064456�0024562�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.096 3.452h1.15v-1.15h1.151v1.15h6.411v4.932H4.192V1.15h1.15V2.3h1.151V0h1.15v1.15h1.152v2.302h1.15V1.151h1.151zM4.192 14.466h15.616V9.534H4.192zm15.616 1.15H4.192v4.932h6.41v1.15h1.151v-1.15h1.151v2.301h1.15v-2.301h1.152v2.301h1.15V24h1.151v-2.301h1.15v1.15h1.151z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ryanair.svg����������������������������������0000664�0000000�0000000�00000004321�14753064456�0025270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.847.008c-.718.047-1.464.288-1.986.81-.796.996-1.692 1.891-2.787 2.488a.3.3 0 0 1-.396 0c-.1-.299.198-.497.198-.696.1-.398.2-.895 0-1.393C4.478.72 3.583.62 2.886.72c-.298 0-.596.1-.994.2-.1 0-.3.098-.3.297.1.398-.098.897-.198 1.195-.1.2 0 .298 0 .597-.1 0 0 .099-.099.099 0 .497.697.298.995.596 0 .1.1.2.1.3.099.099.098.298.098.398C1.991 5.198.6 5.694.201 6.092-.396 6.888.7 7.187.7 7.585v.198c0 .497.198.797.198 1.195.398.995.994 1.89 1.591 2.885.2.299.4.696.698 1.193.1.2.197.398.396.498 1.99 1.99 4.676 3.183 6.467 5.172l1.195 1.493c.597.796 1.193 1.592 1.69 2.487.299.398.498.896.896 1.294.299-.1.1-.497.1-.696.099 0-.1-.001 0-.1-.1-.399-.3-.796-.4-1.194-.099-.1-.098-.198-.098-.198-.1-.497-.299-.995-.498-1.492-.398-.796-.695-1.692-1.193-2.487-.497-.796-1.193-1.593-2.089-2.19a5.5 5.5 0 0 1-1.593-1.394c-.597-.795-1.094-1.69-1.591-2.586-.2-.398-.298-.894-.597-1.292-.497-.696-1.59-1.095-1.69-1.89.1-.995.497-1.791 1.094-2.587 1.094-1.492 2.984-2.29 4.974-2.19 2.09-.1 4.08.797 6.368.896 1.193.1 2.486-.1 3.58-.398l.896-.298a9.9 9.9 0 0 0 2.686-1.393c.199-.1.198-.299.198-.398-.1-.1-.198 0-.297 0-.697.1-1.195.398-1.89.398h-1.095c-1.691-.199-3.284-.596-4.776-1.094C14.129.92 12.437.322 10.546.024a4 4 0 0 0-.7-.016zm.264 4.685c-.303.056-.51.28-.659.504a18.4 18.4 0 0 0-1.492 5.671c0 .2.001.498.2.597 0 .1.198.1.198 0 .796-1.89 1.195-3.78 2.29-5.57.099-.3.496-.598.197-.996-.099-.1-.199-.2-.398-.2a.9.9 0 0 0-.336-.006m2.922.504c-.199 0-.197.1-.297.2-1.094 1.79-1.89 3.878-2.487 5.868-.299.895-.498 1.89-.3 2.786 0 .1.101.1.2.1.1 0 .2-.1.2-.199.596-2.387 1.988-4.577 3.083-6.766.199-.597.597-1.093.497-1.79-.199-.198-.597-.2-.896-.2zm6.568 0c-.398.1-.697.498-.797.796-.994 2.487-2.387 4.775-3.482 7.163-.795 2.188-1.79 4.279-1.89 6.666 0 .2 0 .398.2.597.1 0 .198.1.198 0 .299-.498.398-1.096.597-1.693.696-1.89 1.392-3.78 2.487-5.57 1.293-2.09 2.886-4.08 3.682-6.368.1-.398.298-.696.1-1.094-.2-.298-.597-.398-1.095-.497m-3.284.099c-.398.1-.597.399-.796.697-.498 1.095-1.094 1.99-1.592 3.084-1.194 2.189-1.79 4.477-2.089 6.964 0 .299 0 .696.1.995.099 0 .299 0 .299-.1.199-.696.397-1.392.596-1.989.896-3.084 2.986-5.571 4.279-8.456.1-.2.298-.697 0-.896-.199-.1-.498-.2-.797-.3z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/rye.svg��������������������������������������0000664�0000000�0000000�00000002117�14753064456�0024423�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.372 0 0 5.372 0 11.999c0 5.422 3.597 10.003 8.536 11.49.011-.186.028-.406.049-.669.026-.316-.142-.784-.382-.963-2.67-1.997-3.534-4.125-2.906-7.394a.197.197 0 0 1 .335-.101c.72.747 1.234 1.218 1.988 2.094 1.121 1.305 1.557 2.839 1.42 4.59.123-.531.3-1.057.358-1.596.242-2.222.775-4.326 2.426-5.958.425-.42.939-.823 1.488-1.033 1.448-.552 2.953-.965 3.931-2.339.08.049-.451 1.869-.541 2.263-.645 2.193-.42 2.3-1.186 4.45-.506 1.417-1.596 2.404-3.125 2.798-1.504.386-2.349 1.4-2.56 2.898-.077.558-.123.947-.149 1.246.75.147 1.525.225 2.318.225 6.628 0 12-5.372 12-11.999S18.629 0 12 0m-1.158 13.463a1.4 1.4 0 0 1-.306.689c-.578.658-1.105 1.844-1.418 3.425-.567-1.75-2.556-3.304-3.273-4.606-.247-.448-.051-1.963.281-3.223.607-1.782.637-2.096.981-3.594 1.689 1.365 2.041 2.267 2.954 3.879.456.804.957 1.904.782 3.43zm4.227-2.272c-1.586.647-2.565 1.018-3.576 1.82.252-1.354-.602-2.944-1.137-4.146-.079-.177.948-1.858 1.13-2.14 1.205-1.498 1.17-1.767 2.83-2.38 1.354-.5 2.719-.97 4.065-1.449-.24 3.291-.805 7.273-3.312 8.295"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/s7airlines.svg�������������������������������0000664�0000000�0000000�00000001440�14753064456�0025702�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.004 0C5.375 0 0 5.373 0 12.002S5.375 24 12.004 24C18.63 24 24 18.632 24 12.002S18.631 0 12.004 0m-.875 5.739h1.705L12 7.825h-1.168c-1.255 0-2.061.004-2.496.148-.423.132-.735.29-.906.54-.157.202-.21.477-.21.716 0 .25.027.487.275.806.305.305.809.699 1.797 1.307 1.97 1.229 2.552 2.204 2.552 3.487 0 2.09-1.97 4.084-5.272 4.084-.992 0-2.377-.146-2.961-.332l-.307-.09c.12-.397.512-1.493.685-1.956l.31.078c.648.16 1.664.252 2.338.252 1.932 0 2.682-.872 2.682-1.638 0-.7-.382-1.084-2.299-2.246-1.796-1.11-2.417-2.076-2.417-3.409 0-1.6 1.03-2.818 2.522-3.399.888-.33 2.114-.434 4.004-.434m2.959 0h5.871c.276 0 .329.195.223.407-.384.952-4.007 10.028-4.007 10.028h-2.421s2.861-7.291 3.336-8.377c-.33 0-.581.028-1.89.028h-1.947Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sabanci.svg����������������������������������0000664�0000000�0000000�00000001624�14753064456�0025226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.388 8.88a16 16 0 0 0-1.537.105c-1.144.146-1.54.646-1.54 1.873 0 .971.258 1.44.904 1.66.313.11.85.156 1.743.156h1.7a9 9 0 0 1 .923.02c.379.036.563.21.563.524 0 .546-.243.6-2.428.6a8.5 8.5 0 0 1-1.173-.063c-.276-.066-.34-.176-.359-.637H2.339v.36c0 .876.296 1.318.988 1.493.451.121 1.078.158 2.472.158a23 23 0 0 0 2.583-.092c1.17-.127 1.613-.632 1.613-1.868 0-.638-.13-1.1-.377-1.377-.286-.33-.665-.441-1.588-.485-.497-.02-.866-.03-.971-.03H5.308a3.2 3.2 0 0 1-.728-.035.47.47 0 0 1-.413-.486c0-.34.165-.472.626-.508a38 38 0 0 1 1.7-.046c1.265 0 1.44.075 1.44.61h1.804c0-1.062-.204-1.487-.82-1.718-.471-.174-.96-.21-2.76-.21a16 16 0 0 0-.77-.004m11.221.045-3.46 6.15h2.123l.59-1.097h3.967l.607 1.097h2.05l-3.368-6.15Zm1.236 1.318 1.338 2.455h-2.649ZM0 12.001a6.153 6.153 0 0 1 11.998-1.928 6.156 6.156 0 1 1 0 3.854A6.153 6.153 0 0 1 0 12"/></svg>������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/safari.svg�����������������������������������0000664�0000000�0000000�00000025641�14753064456�0025100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m-.004.953h.006c.063 0 .113.05.113.113v1.842c0 .063-.05.113-.113.113h-.006a.11.11 0 0 1-.113-.113V1.066c0-.063.05-.113.113-.113m-.941.041a.115.115 0 0 1 .11.104l.077.918a.11.11 0 0 1-.101.12h-.01a.11.11 0 0 1-.12-.1l-.08-.919a.11.11 0 0 1 .102-.12h.01zm1.892 0h.018a.113.113 0 0 1 .103.121l-.08.92a.11.11 0 0 1-.12.102h-.009a.11.11 0 0 1-.101-.121l.078-.92a.11.11 0 0 1 .111-.102m-2.838.123a.11.11 0 0 1 .106.092l.32 1.818c.01.06-.03.119-.09.13l-.01.001a.11.11 0 0 1-.128-.09l-.32-1.818a.11.11 0 0 1 .09-.129l.01-.002zm3.784.002h.021l.008.002c.061.01.102.07.092.131l-.32 1.814a.11.11 0 0 1-.132.09h-.005a.113.113 0 0 1-.092-.13l.32-1.815a.11.11 0 0 1 .108-.092m-4.715.203c.048.002.09.035.103.084l.239.893a.11.11 0 0 1-.079.139l-.005.001a.114.114 0 0 1-.14-.08l-.237-.894a.11.11 0 0 1 .078-.137l.006-.002a.1.1 0 0 1 .035-.004m5.644 0a.1.1 0 0 1 .033.004l.006.002c.06.016.097.079.08.139l-.24.892a.11.11 0 0 1-.137.08l-.005-.002a.114.114 0 0 1-.08-.138l.24-.893a.11.11 0 0 1 .103-.084m-6.562.285a.11.11 0 0 1 .107.073L9 3.42a.107.107 0 0 1-.064.139l-.012.005a.11.11 0 0 1-.14-.066L8.15 1.76a.11.11 0 0 1 .065-.14l.014-.005a.1.1 0 0 1 .03-.008zm7.469.002q.021 0 .042.006l.012.006c.057.02.087.082.067.139l-.633 1.738a.11.11 0 0 1-.14.066l-.013-.003A.11.11 0 0 1 15 3.42l.633-1.738a.11.11 0 0 1 .096-.073m-8.352.366a.11.11 0 0 1 .105.064l.393.838a.11.11 0 0 1-.055.148l-.008.004a.11.11 0 0 1-.146-.054l-.395-.838a.11.11 0 0 1 .055-.149l.008-.004a.1.1 0 0 1 .043-.01zm9.246 0a.1.1 0 0 1 .043.01l.006.003a.11.11 0 0 1 .053.149l-.391.838a.11.11 0 0 1-.148.054l-.006-.002a.11.11 0 0 1-.055-.148l.393-.84a.11.11 0 0 1 .105-.064m-10.092.44c.04-.002.08.018.102.056l.922 1.597a.113.113 0 0 1-.041.155l-.006.002a.113.113 0 0 1-.154-.041l-.922-1.598a.113.113 0 0 1 .04-.154l.007-.002a.1.1 0 0 1 .052-.016zm10.94.001a.1.1 0 0 1 .052.014l.004.002a.114.114 0 0 1 .041.156l-.923 1.596a.114.114 0 0 1-.157.04l-.004-.001a.11.11 0 0 1-.04-.155l.925-1.595a.11.11 0 0 1 .102-.057M5.729 2.93a.11.11 0 0 1 .093.047l.532.753a.114.114 0 0 1-.028.159l-.004.002a.114.114 0 0 1-.158-.028l-.531-.752a.114.114 0 0 1 .027-.158l.006-.002a.1.1 0 0 1 .063-.021m12.542 0a.1.1 0 0 1 .063.02l.006.003a.11.11 0 0 1 .027.156l-.531.756a.11.11 0 0 1-.156.028l-.006-.004a.11.11 0 0 1-.028-.157l.532-.755a.11.11 0 0 1 .093-.047m.747.578a.1.1 0 0 1 .08.027l.006.004c.047.04.053.111.013.158L17.932 5.11a.11.11 0 0 1-.157.016l-.005-.006a.11.11 0 0 1-.014-.156l1.185-1.414a.11.11 0 0 1 .077-.041zM4.984 3.51a.1.1 0 0 1 .077.039L6.244 4.96a.11.11 0 0 1-.014.158l-.003.004a.11.11 0 0 1-.159-.014L4.883 3.697a.11.11 0 0 1 .013-.158l.006-.004a.11.11 0 0 1 .082-.025m-.714.64q.042 0 .076.032l.658.66a.107.107 0 0 1 0 .152l-.01.01a.107.107 0 0 1-.152 0l-.66-.658a.11.11 0 0 1 0-.155l.01-.01a.1.1 0 0 1 .078-.03zm15.462 0q.043 0 .077.032l.007.007a.11.11 0 0 1 0 .155l-.658.66a.11.11 0 0 1-.154 0l-.008-.008a.11.11 0 0 1 0-.154l.658-.66a.1.1 0 0 1 .078-.032m.707.66c.038 0 .071.02.092.075a.11.11 0 0 1-.023.117l-7.606 8.08c-3.084 2.024-6.149 4.04-9.222 6.05-.078.051-.17.082-.211-.028a.11.11 0 0 1 .023-.118l7.594-8.08a8381 8381 0 0 1 9.234-6.049.25.25 0 0 1 .12-.046zm-16.824.045a.1.1 0 0 1 .08.026l1.416 1.187a.11.11 0 0 1 .014.157l-.006.005a.11.11 0 0 1-.156.014L3.549 5.057a.11.11 0 0 1-.014-.155l.006-.007a.1.1 0 0 1 .074-.04m17.336.756c.036 0 .072.017.094.05l.004.003a.114.114 0 0 1-.028.158l-.753.53a.11.11 0 0 1-.157-.028l-.004-.004a.114.114 0 0 1 .028-.158l.754-.53a.1.1 0 0 1 .062-.02zm-17.904.002q.031 0 .06.02l.76.531c.05.035.06.103.026.152l-.006.01a.11.11 0 0 1-.153.026l-.76-.532a.11.11 0 0 1-.025-.152l.006-.01a.11.11 0 0 1 .092-.045m-.512.803q.027 0 .053.016l1.596.923a.11.11 0 0 1 .04.153l-.003.006a.11.11 0 0 1-.153.04L2.473 6.63a.11.11 0 0 1-.041-.152l.004-.006a.11.11 0 0 1 .1-.055zm18.932 0a.11.11 0 0 1 .1.055l.001.004a.113.113 0 0 1-.04.154l-1.596.926a.113.113 0 0 1-.155-.041l-.002-.004a.113.113 0 0 1 .041-.155l1.596-.925a.1.1 0 0 1 .055-.014m-19.373.846q.021 0 .043.01l.838.392a.11.11 0 0 1 .052.147l-.004.01a.11.11 0 0 1-.146.052l-.838-.393a.11.11 0 0 1-.053-.146l.004-.01a.11.11 0 0 1 .104-.062m19.81.002a.11.11 0 0 1 .106.062l.002.008a.11.11 0 0 1-.053.146l-.838.393a.11.11 0 0 1-.146-.053l-.004-.008a.11.11 0 0 1 .052-.146l.838-.393a.1.1 0 0 1 .043-.01zm-20.183.88q.02 0 .043.006l1.732.631a.11.11 0 0 1 .067.145l-.002.006a.11.11 0 0 1-.143.066l-1.732-.63a.113.113 0 0 1-.069-.145l.002-.004a.12.12 0 0 1 .102-.074zm20.549 0a.11.11 0 0 1 .11.075l.003.004a.115.115 0 0 1-.069.146l-1.732.629a.11.11 0 0 1-.145-.066l-.001-.006a.113.113 0 0 1 .068-.145l1.732-.63a.1.1 0 0 1 .034-.006zm-20.836.909a.1.1 0 0 1 .033.004l.892.24c.06.016.096.077.08.137l-.002.007a.11.11 0 0 1-.136.079l-.895-.239a.113.113 0 0 1-.078-.138l.002-.006a.11.11 0 0 1 .104-.084m21.13.002a.115.115 0 0 1 .106.084v.004a.11.11 0 0 1-.078.138l-.893.239a.11.11 0 0 1-.138-.079v-.005a.11.11 0 0 1 .078-.14l.892-.237a.1.1 0 0 1 .033-.004m-21.335.93.023.001 1.814.323a.11.11 0 0 1 .09.13v.006a.11.11 0 0 1-.13.09l-1.815-.322a.113.113 0 0 1-.092-.131l.002-.006a.11.11 0 0 1 .108-.092zm21.519.001h.022c.052.002.1.038.109.092v.006c.01.062-.03.12-.092.13l-1.814.321a.113.113 0 0 1-.131-.092v-.005a.113.113 0 0 1 .092-.131zm-21.644.944h.011l.922.084a.11.11 0 0 1 .102.119l-.002.01a.11.11 0 0 1-.121.1l-.922-.083a.11.11 0 0 1-.1-.12v-.009a.11.11 0 0 1 .11-.101m21.779.002h.012a.11.11 0 0 1 .11.101v.008a.11.11 0 0 1-.1.121l-.923.08a.11.11 0 0 1-.12-.101v-.008a.11.11 0 0 1 .1-.121l.92-.08zm-11.82.73L6.091 16.95c2.02-1.324 4.039-2.646 6.066-3.976l-1.095-1.31zm11.87.219c.063 0 .114.05.114.113v.004c0 .063-.05.113-.113.113l-1.844.004a.113.113 0 0 1-.113-.113v-.004c0-.063.05-.113.113-.113zm-21.869.002h1.844c.062 0 .112.05.112.111v.008c0 .062-.05.111-.112.111H1.064a.11.11 0 0 1-.11-.111v-.008a.11.11 0 0 1 .11-.111m.952.875h.011a.11.11 0 0 1 .11.101v.006a.11.11 0 0 1-.102.121l-.922.08a.11.11 0 0 1-.119-.101l-.002-.006a.11.11 0 0 1 .102-.121zm19.955 0h.011l.922.08a.11.11 0 0 1 .102.119v.008a.11.11 0 0 1-.121.101l-.922-.08a.11.11 0 0 1-.102-.119v-.008a.11.11 0 0 1 .11-.101m-18.924.705c.053.001.098.04.107.094l.002.004a.11.11 0 0 1-.092.13l-1.812.32a.113.113 0 0 1-.13-.091v-.004a.115.115 0 0 1 .09-.133l1.811-.318zm17.902 0q.012 0 .024.002l1.816.32c.061.011.1.07.09.131v.004a.113.113 0 0 1-.131.092l-1.816-.32a.11.11 0 0 1-.09-.131v-.004a.11.11 0 0 1 .107-.094M2.332 14.477a.11.11 0 0 1 .104.082l.002.005a.11.11 0 0 1-.08.137l-.891.24a.11.11 0 0 1-.137-.08l-.002-.006a.11.11 0 0 1 .08-.136l.89-.239a.1.1 0 0 1 .034-.003m19.332 0q.018 0 .035.003l.893.239c.06.016.096.077.08.136l-.002.006a.11.11 0 0 1-.137.078l-.894-.238a.11.11 0 0 1-.078-.137l.002-.005a.11.11 0 0 1 .101-.082m-18.213.517a.11.11 0 0 1 .11.074l.002.004a.11.11 0 0 1-.067.145l-1.732.63a.113.113 0 0 1-.145-.068l-.002-.004a.113.113 0 0 1 .069-.144L3.418 15a.1.1 0 0 1 .033-.006m17.086 0q.022-.002.043.006l1.734.63a.11.11 0 0 1 .067.143l-.002.008a.11.11 0 0 1-.143.067l-1.734-.631a.11.11 0 0 1-.066-.143l.002-.008a.11.11 0 0 1 .1-.072zM2.92 16.117a.11.11 0 0 1 .103.063l.004.01a.11.11 0 0 1-.052.144l-.838.393a.11.11 0 0 1-.147-.055l-.004-.008a.11.11 0 0 1 .053-.146l.838-.391a.1.1 0 0 1 .043-.01m18.158 0a.1.1 0 0 1 .043.01l.838.39c.056.027.08.093.055.149l-.002.004a.11.11 0 0 1-.149.055l-.838-.391a.11.11 0 0 1-.054-.148l.002-.004a.11.11 0 0 1 .105-.065m-16.957.315c.04-.001.078.02.1.056l.004.004a.11.11 0 0 1-.041.153l-1.596.921a.113.113 0 0 1-.154-.04l-.002-.005a.113.113 0 0 1 .04-.154l1.596-.922a.1.1 0 0 1 .053-.013m15.756 0q.027 0 .053.013l1.597.924a.11.11 0 0 1 .041.152l-.002.004a.11.11 0 0 1-.152.041l-1.598-.921a.113.113 0 0 1-.04-.155l.001-.002a.11.11 0 0 1 .1-.056m.328 1.193a.1.1 0 0 1 .06.021l.758.534c.05.035.061.102.026.152l-.004.008a.11.11 0 0 1-.154.027l-.756-.535a.11.11 0 0 1-.028-.152l.006-.008a.11.11 0 0 1 .092-.047m-16.412.002c.035 0 .072.016.094.047l.004.008a.11.11 0 0 1-.028.152l-.756.531a.11.11 0 0 1-.152-.025l-.006-.008a.11.11 0 0 1 .028-.152l.755-.534a.1.1 0 0 1 .061-.019m15.162.102a.11.11 0 0 1 .082.025l1.414 1.187a.11.11 0 0 1 .014.157l-.004.004a.113.113 0 0 1-.158.013L18.89 17.93a.11.11 0 0 1-.014-.157l.004-.005a.1.1 0 0 1 .074-.04zm-12.812 1.12a.1.1 0 0 1 .08.026l.007.008a.11.11 0 0 1 .014.154L5.06 20.451a.11.11 0 0 1-.155.012l-.008-.006a.11.11 0 0 1-.013-.154l1.185-1.414a.1.1 0 0 1 .075-.04zm11.703 0c.032 0 .065.015.088.042l1.181 1.41c.04.048.035.12-.013.16l-.002.002a.114.114 0 0 1-.16-.014l-1.182-1.41a.114.114 0 0 1 .013-.16l.002-.002a.12.12 0 0 1 .073-.027zm-12.928.114q.042 0 .074.031l.014.012a.107.107 0 0 1 0 .15l-.662.66a.105.105 0 0 1-.149 0l-.011-.011a.105.105 0 0 1 0-.149l.66-.662a.1.1 0 0 1 .074-.031m14.164 0q.041 0 .074.031l.66.662a.106.106 0 0 1 0 .15l-.011.012a.106.106 0 0 1-.15-.002l-.66-.66a.106.106 0 0 1 .001-.15l.01-.012a.1.1 0 0 1 .076-.031m-11.627.797a.1.1 0 0 1 .05.015l.007.004a.11.11 0 0 1 .04.15l-.921 1.598a.11.11 0 0 1-.15.041l-.008-.004a.11.11 0 0 1-.04-.152l.922-1.596a.11.11 0 0 1 .1-.056m9.088.002a.11.11 0 0 1 .1.054l.925 1.596a.113.113 0 0 1-.04.154h-.005a.11.11 0 0 1-.152-.039l-.926-1.595a.113.113 0 0 1 .041-.155l.004-.002a.1.1 0 0 1 .053-.013m-10.285.324q.032 0 .062.021l.004.002a.113.113 0 0 1 .028.157l-.53.755a.11.11 0 0 1-.156.028l-.004-.002a.11.11 0 0 1-.027-.156l.53-.756a.11.11 0 0 1 .093-.05zm11.484.002c.036 0 .072.015.094.047l.53.756c.035.05.023.12-.028.156l-.004.002a.11.11 0 0 1-.156-.028l-.53-.755a.11.11 0 0 1 .028-.157l.004-.002a.1.1 0 0 1 .062-.02zm-8.863.342a.1.1 0 0 1 .043.006l.012.005c.056.02.084.081.064.137l-.633 1.74a.105.105 0 0 1-.136.063l-.014-.004a.106.106 0 0 1-.065-.137l.633-1.74a.11.11 0 0 1 .096-.07m6.232 0a.11.11 0 0 1 .106.07l.633 1.738a.107.107 0 0 1-.065.137l-.015.006a.107.107 0 0 1-.137-.065L15 20.578a.107.107 0 0 1 .064-.137l.014-.005a.1.1 0 0 1 .033-.006m-4.695.41q.011 0 .021.002l.006.002c.062.01.101.067.09.129l-.318 1.812a.113.113 0 0 1-.131.092l-.004-.002a.11.11 0 0 1-.092-.129l.32-1.812a.11.11 0 0 1 .108-.094m3.146.002q.012-.001.022 0a.11.11 0 0 1 .107.092l.32 1.812a.11.11 0 0 1-.091.131l-.004.002a.113.113 0 0 1-.13-.092l-.321-1.812a.113.113 0 0 1 .092-.131zm-5.79.119a.1.1 0 0 1 .042.01l.004.002a.114.114 0 0 1 .055.15l-.393.834a.11.11 0 0 1-.148.055l-.004-.002a.11.11 0 0 1-.055-.149l.393-.836a.11.11 0 0 1 .105-.064zm8.458 0a.11.11 0 0 1 .104.062l.39.84a.11.11 0 0 1-.052.147l-.008.004a.11.11 0 0 1-.146-.055l-.391-.838a.11.11 0 0 1 .053-.146l.008-.004a.1.1 0 0 1 .042-.01m-4.236.018H12c.063 0 .115.05.115.113l.002 1.84c0 .063-.05.113-.113.113h-.006a.113.113 0 0 1-.113-.113l-.004-1.838c0-.063.05-.115.113-.115m-2.592.578q.016-.001.034.004l.005.002a.11.11 0 0 1 .079.136l-.24.893a.11.11 0 0 1-.137.078l-.006-.002a.11.11 0 0 1-.078-.137l.24-.89a.11.11 0 0 1 .103-.084m5.196.002a.11.11 0 0 1 .103.082l.24.89a.11.11 0 0 1-.078.137l-.006.002a.11.11 0 0 1-.136-.078l-.24-.89a.11.11 0 0 1 .078-.138l.005-.002a.1.1 0 0 1 .034-.003m-3.475.302h.01l.008.002c.061.006.107.06.101.121l-.08.92a.11.11 0 0 1-.121.102h-.008a.11.11 0 0 1-.1-.121l.08-.922a.11.11 0 0 1 .11-.102m1.736 0h.02a.11.11 0 0 1 .107.102l.08.924a.11.11 0 0 1-.101.119l-.008.002a.11.11 0 0 1-.12-.102l-.08-.924a.11.11 0 0 1 .102-.12z"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sage.svg�������������������������������������0000664�0000000�0000000�00000003377�14753064456�0024554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.702 5.316C1.167 5.316 0 6.48 0 7.972c0 1.635 1.167 2.267 2.46 2.655 1.224.387 1.804.818 1.804 1.666 0 .86-.64 1.465-1.477 1.465-.84 0-1.566-.604-1.566-1.535 0-.516.242-.647.242-.934 0-.33-.227-.574-.599-.574-.423 0-.864.647-.864 1.566 0 1.48 1.266 2.57 2.787 2.57 1.535 0 2.701-1.163 2.701-2.656 0-1.623-1.166-2.267-2.472-2.655-1.209-.372-1.792-.818-1.792-1.666 0-.845.626-1.45 1.463-1.45.867 0 1.565.617 1.577 1.465.016.388.285.617.599.617a.592.592 0 0 0 .61-.647c-.027-1.48-1.263-2.543-2.771-2.543m6.171 9.52c.683 0 1.21-.23 1.21-.69a.57.57 0 0 0-.557-.574c-.2 0-.341.085-.668.085-.882 0-1.577-.76-1.577-1.65 0-.962.71-1.725 1.608-1.725 1.009 0 1.65.775 1.65 1.895v2.054c0 .36.284.604.625.604.327 0 .61-.244.61-.604v-2.097c0-1.72-1.178-2.984-2.858-2.984-1.566 0-2.86 1.22-2.86 2.856 0 1.58 1.282 2.83 2.817 2.83m6.257 3.848c1.535 0 2.701-1.163 2.701-2.656 0-1.635-1.166-2.267-2.472-2.655-1.209-.387-1.792-.818-1.792-1.666s.64-1.465 1.463-1.465c.84 0 1.577.604 1.577 1.535 0 .519-.241.647-.241.934 0 .33.226.574.583.574.441 0 .882-.647.882-1.566 0-1.48-1.278-2.57-2.801-2.57-1.535 0-2.687 1.163-2.687 2.656 0 1.623 1.152 2.267 2.46 2.655 1.224.372 1.804.818 1.804 1.666 0 .86-.64 1.45-1.462 1.45-.883 0-1.566-.601-1.578-1.465-.015-.388-.3-.604-.598-.604-.327 0-.626.216-.61.631.011 1.499 1.247 2.546 2.77 2.546zm6.171-3.849c.795 0 1.424-.229 1.862-.503.426-.272.595-.504.595-.76 0-.272-.2-.516-.568-.516-.441 0-.795.66-1.877.66-.952 0-1.707-.76-1.707-1.722 0-.95.725-1.724 1.635-1.724.982 0 1.508.647 1.508 1.062 0 .116-.085.174-.2.174h-1.194c-.326 0-.568.216-.568.503 0 .314.242.546.568.546h1.636c.625 0 1.009-.33 1.009-.89 0-1.408-1.194-2.512-2.774-2.512-1.566 0-2.83 1.263-2.83 2.84s1.312 2.842 2.905 2.842"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sahibinden.svg�������������������������������0000664�0000000�0000000�00000001131�14753064456�0025723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm11.517 4.723c.563-.007 1.13-.004 1.69.063 2.412.054 4.853 2.18 4.879 4.508h-3.319c.009-.694-.603-1.555-1.279-1.732-1.105-.269-2.46-.355-3.43.294-.738.445-1.065 1.672-.095 2.056 2.288 1.083 5.158.846 7.224 2.372 1.698 1.21 1.598 3.666.274 5.086-1.718 1.84-4.636 2.132-7.099 1.782-2.448-.117-4.755-2.245-4.819-4.562h3.311c-.056.832.638 1.557 1.46 1.822 1.27.275 2.726.358 3.93-.19.96-.323 1.024-1.544.284-2.103-1.595-.897-3.565-.924-5.297-1.518-2.012-.39-3.643-2.278-3.26-4.197.424-2.342 3.127-3.727 5.546-3.681"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sailfishos.svg�������������������������������0000664�0000000�0000000�00000002604�14753064456�0025771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.981 5.105a.31.31 0 0 0-.407-.174l-2.338.815a24 24 0 0 1-3.13.822c-2.163.395-3.716-1.337-3.716-1.337a.32.32 0 0 0-.36-.102 5 5 0 0 0-.455.174A13.15 13.15 0 0 1 15.277.507a.264.264 0 0 0 0-.372.37.37 0 0 0-.408-.113 27 27 0 0 0-4.196 2.601C7.796 4.86 6.195 7.137 5.997 9.421c-.15 1.858 1.073 3.075 2.242 4.196l.204.198a4.5 4.5 0 0 1-.287 3.59c-1.044 2.303-3.357 4.311-6.259 5.396-.911.348-1.678.6-1.678.6a.31.31 0 0 0-.204.371A.32.32 0 0 0 .32 24h.078a34.3 34.3 0 0 0 6.594-2.356l.599-.3c3.717-1.93 5.7-4.196 5.929-6.69.156-1.588-.786-2.655-1.799-3.596 1.295-1.799 5.491-3.225 5.521-3.225l4.143-1.44a37 37 0 0 0 2.398-.844.3.3 0 0 0 .18-.42zm-11.012.521a10.2 10.2 0 0 0-3.513 2.728 3.3 3.3 0 0 1-.227-1.54c.155-1.709 1.984-3.693 2.266-3.993a30 30 0 0 1 2.793-1.756 12.8 12.8 0 0 0-1.349 4.561Zm-7.715 16.12a10.6 10.6 0 0 0 3.513-4.094 5.74 5.74 0 0 0 .557-2.878 3.04 3.04 0 0 1 .87 2.26c-.228 2.182-2.926 3.74-2.95 3.765-.647.342-1.312.653-1.99.947m7.607-7.146c-.15 1.715-1.247 3.178-2.745 4.389a4 4 0 0 0 .677-1.883c.156-1.636-.989-2.775-2.11-3.866s-2.188-2.158-2.062-3.723c.156-1.834 1.3-3.47 2.697-4.856a5.2 5.2 0 0 0-.76 2.128c-.205 2.009 1.144 3.25 2.313 4.34 1.169 1.092 2.11 1.96 1.984 3.471zm-1.654-4.016a9.4 9.4 0 0 1-1.45-1.57c1.096-1.757 3.596-2.902 4.327-3.196a5.15 5.15 0 0 0 2.848 1.397c-.612.222-4.34 1.535-5.725 3.37"/></svg>����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sailsdotjs.svg�������������������������������0000664�0000000�0000000�00000000230�14753064456�0025775�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.238 24s-9.175-14.602 9.7-24v24zm12.621 0V9.125S17.871 14.039 23.992 24z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/salesforce.svg�������������������������������0000664�0000000�0000000�00000000770�14753064456�0025755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.006 5.415a4.2 4.2 0 0 1 3.045-1.306c1.56 0 2.954.9 3.69 2.205.63-.3 1.35-.45 2.1-.45 2.85 0 5.159 2.34 5.159 5.22s-2.31 5.22-5.176 5.22c-.345 0-.69-.044-1.02-.104a3.75 3.75 0 0 1-3.3 1.95c-.6 0-1.155-.15-1.65-.375A4.31 4.31 0 0 1 8.88 20.4a4.3 4.3 0 0 1-4.05-2.82c-.27.062-.54.076-.825.076-2.204 0-4.005-1.8-4.005-4.05 0-1.5.811-2.805 2.01-3.51-.255-.57-.39-1.2-.39-1.846 0-2.58 2.1-4.65 4.65-4.65 1.53 0 2.85.705 3.72 1.8"/></svg>��������mkdocs-material-9.6.4/material/templates/.icons/simple/salla.svg������������������������������������0000664�0000000�0000000�00000001320�14753064456�0024713�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.862 13.439a1.27 1.27 0 0 0-.81-.555 1.27 1.27 0 0 0-.964.18c-3.422 2.231-6.75 2.231-10.178 0a1.27 1.27 0 0 0-.964-.18 1.283 1.283 0 0 0-.434 2.327c2.142 1.394 4.326 2.1 6.49 2.1 2.166 0 4.348-.706 6.488-2.102a1.27 1.27 0 0 0 .555-.81 1.27 1.27 0 0 0-.18-.964zm5.103 2.82-1.171-9.764a5.24 5.24 0 0 0-5.2-4.614H6.406a5.236 5.236 0 0 0-5.198 4.612l-1.17 9.766a5.235 5.235 0 0 0 5.198 5.86h13.529a5.238 5.238 0 0 0 5.198-5.86zm-3.21 2.4c-.532.6-1.265.929-2.066.929H5.311c-.801 0-1.536-.33-2.066-.929a2.73 2.73 0 0 1-.676-2.16l1.157-9.657A2.764 2.764 0 0 1 6.468 4.41h11.064a2.765 2.765 0 0 1 2.742 2.432l1.157 9.656a2.72 2.72 0 0 1-.676 2.161"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/saltproject.svg������������������������������0000664�0000000�0000000�00000000162�14753064456�0026154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 12v10.56h12L18 12h6V1.44H12L6 12Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/samsclub.svg���������������������������������0000664�0000000�0000000�00000000615�14753064456�0025436�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.275 1.71 9.403 9.504a1.12 1.12 0 0 1 .001 1.569l-9.401 9.507-1.624-1.64a1.136 1.136 0 0 1 0-1.596L19.631 12l-6.917-6.99a1.225 1.225 0 0 1 0-1.72l1.56-1.579zm-3.026 1.572L9.695 1.71.34 11.17a1.186 1.186 0 0 0 0 1.663l9.356 9.457 1.553-1.57a1.237 1.237 0 0 0 0-1.737L4.341 12l6.909-6.985a1.235 1.235 0 0 0-.001-1.734z"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/samsung.svg����������������������������������0000664�0000000�0000000�00000003477�14753064456�0025313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.817 10.28.046 2.694h-.023l-.78-2.693h-1.283v3.392h.848l-.046-2.785h.023l.836 2.785h1.227v-3.392zm-16.15 0-.641 3.428h.928l.47-3.118h.023l.459 3.118h.916l-.63-3.427zm5.181 0-.424 2.614h-.023l-.424-2.613H6.58l-.069 3.427h.86l.023-3.083h.011l.573 3.083h.871l.573-3.083h.023l.023 3.083h.86l-.08-3.427zm-7.266 2.454a.5.5 0 0 1 .011.252c-.023.114-.103.229-.332.229-.218 0-.344-.126-.344-.31v-.332H0v.264c0 .768.607.997 1.25.997.618 0 1.134-.218 1.214-.78.046-.298.012-.492 0-.561-.16-.722-1.467-.929-1.559-1.33a.5.5 0 0 1 0-.183c.023-.115.104-.23.31-.23s.32.127.32.31v.206h.86v-.24c0-.745-.676-.86-1.157-.86-.608 0-1.112.206-1.204.757a1.04 1.04 0 0 0 .012.458c.137.71 1.364.917 1.536 1.352m11.152 0c.034.08.022.184.011.253-.023.114-.103.229-.332.229-.218 0-.344-.126-.344-.31v-.332h-.917v.264c0 .756.596.985 1.238.985.619 0 1.123-.206 1.203-.779.046-.298.012-.481 0-.562-.137-.71-1.433-.928-1.524-1.318a.5.5 0 0 1 0-.183c.023-.115.103-.23.31-.23.194 0 .32.127.32.31v.206h.848v-.24c0-.745-.665-.86-1.146-.86-.607 0-1.1.195-1.192.757-.023.149-.023.286.012.458.137.71 1.34.905 1.513 1.352m2.888.459c.24 0 .31-.16.332-.252.012-.035.012-.092.012-.126V10.28h.87v2.464c0 .069 0 .195-.01.23-.058.641-.562.847-1.193.847-.63 0-1.134-.206-1.192-.848 0-.034-.011-.16-.011-.229v-2.464h.87v2.533c0 .046 0 .091.012.126 0 .091.07.252.31.252m7.152-.034c.252 0 .332-.16.355-.253.011-.034.011-.091.011-.126v-.493h-.355v-.504H24v.917c0 .069 0 .115-.011.23-.058.63-.597.847-1.204.847s-1.146-.217-1.203-.848c-.012-.114-.012-.16-.012-.229v-1.444c0-.057.012-.172.012-.23.08-.641.596-.847 1.203-.847s1.135.206 1.203.848c.012.103.012.229.012.229v.115h-.86v-.195s0-.08-.011-.126c-.012-.08-.08-.252-.344-.252-.252 0-.32.16-.344.252-.011.045-.011.103-.011.16v1.57c0 .046 0 .092.011.126 0 .092.092.253.333.253"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/samsungpay.svg�������������������������������0000664�0000000�0000000�00000004425�14753064456�0026017�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6.703 17.387.617-1.5-1.205-2.795h.724l.817 1.98.776-1.98h.711l-1.752 4.295Zm-2.492-1.295c-.708 0-1.445-.569-1.445-1.528 0-.975.712-1.531 1.455-1.531.387 0 .735.16.946.411v-.352h.677v2.94h-.677v-.382a1.22 1.22 0 0 1-.956.442m-4.206-.06v-3.666h1.258c.759 0 1.32.581 1.32 1.305 0 .728-.562 1.312-1.325 1.312H.69v1.05zm4.315-.562c.503 0 .88-.407.88-.914 0-.497-.377-.906-.88-.906a.886.886 0 0 0-.888.906c0 .512.386.914.888.914M.69 14.348h.52c.408 0 .686-.3.686-.677a.66.66 0 0 0-.685-.672H.69Zm.557-4.063C.603 10.285 0 10.055 0 9.29v-.265h.92l.002.333c0 .187.13.31.344.31.228 0 .305-.117.333-.232a.44.44 0 0 0-.005-.252C1.417 8.74.198 8.538.049 7.837a1.2 1.2 0 0 1-.007-.463c.09-.56.588-.76 1.198-.76.485 0 1.156.114 1.156.861v.242h-.854v-.213c0-.187-.12-.31-.32-.31-.215 0-.289.122-.313.232a.4.4 0 0 0 .002.18c.098.401 1.4.615 1.545 1.333.014.072.044.266.002.562-.081.573-.59.784-1.21.784zm11.154-.018c-.638 0-1.234-.227-1.234-.984V9.02h.911v.328c0 .185.129.31.341.31.227 0 .303-.117.331-.23a.44.44 0 0 0-.005-.25c-.175-.44-1.382-.641-1.529-1.336a1.2 1.2 0 0 1-.008-.458c.09-.554.585-.753 1.188-.753.48 0 1.143.115 1.143.855v.24h-.846v-.212c0-.185-.116-.307-.315-.307-.212 0-.289.12-.313.23a.4.4 0 0 0 .005.176c.096.398 1.385.61 1.529 1.32.015.073.044.265.003.558-.081.567-.586.776-1.2.776zm3.224-.013c-.63 0-1.138-.21-1.198-.85a3 3 0 0 1-.008-.223V6.72h.867v2.538c0 .044 0 .093.008.13.017.085.092.248.331.248.238 0 .311-.163.328-.248a1 1 0 0 0 .008-.13V6.72h.867v2.461a3 3 0 0 1-.008.224c-.06.64-.564.849-1.195.849m7.156-.037c-.608 0-1.148-.221-1.205-.846a3 3 0 0 1-.014-.227V7.702c0-.061.009-.17.016-.227.077-.641.595-.846 1.203-.846s1.14.203 1.203.846c.011.11.008.227.008.227v.114h-.864v-.193s0-.08-.01-.13c-.016-.075-.082-.25-.345-.25-.249 0-.322.166-.34.25a1 1 0 0 0-.014.162v1.567a1 1 0 0 0 .008.13c.016.092.104.25.352.25s.333-.158.349-.25a1 1 0 0 0 .008-.13v-.497h-.352v-.5H24v.92c0 .064-.003.112-.013.226-.057.625-.598.846-1.206.846m-19.745-.065.636-3.432h1.526l.633 3.432h-.922l-.456-3.114-.02.002-.47 3.112Zm3.48 0L6.59 6.72h1.4l.421 2.625h.021l.422-2.625h1.399l.075 3.432h-.857l-.02-3.083H9.43l-.573 3.083h-.87L7.414 7.07h-.018l-.021 3.083Zm11.268-.036V6.72h1.273l.79 2.693h.018l-.047-2.693h.851v3.396h-1.221l-.849-2.787h-.018l.047 2.787z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sandisk.svg����������������������������������0000664�0000000�0000000�00000010153�14753064456�0025257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.537 9.668c-.92 0-1.537.524-1.537 1.328 0 .788.598 1.121 1.38 1.361.494.152 1.08.358 1.08.844 0 .29-.263.625-.796.625-.41 0-.678-.143-.834-.308-.156-.16-.308-.316-.447-.612-.015-.039-.041-.074-.074-.074H.07c-.033 0-.058.026-.058.072v.897c0 .036.02.086.056.107.458.269 1.063.37 1.56.37.886-.005 1.575-.594 1.575-1.538-.006-1.014-.935-1.143-1.676-1.398-.646-.222-.78-.41-.78-.672 0-.284.263-.57.827-.57.197 0 .404.065.596.185.12.074.244.196.385.438.015.025.048.045.066.045h.203c.03-.003.041-.023.041-.059 0-.145.004-.537.004-.768 0-.04-.027-.07-.07-.086a3.8 3.8 0 0 0-1.262-.187m17.639.033s-.065.052-.065.164a.25.25 0 0 0 .065.174h.428q.073 0 .072.08v3.69c0 .054-.026.08-.065.08h-.406s-.064.059-.064.164.064.174.064.174l1.766-.004s.047-.074.047-.174-.047-.16-.047-.16h-.291c-.036 0-.069-.03-.069-.077v-.857c.083-.087.232-.239.25-.26.054-.054.11-.033.141.014.036.057.708 1.083.723 1.111.03.051.013.074-.026.074l-.21.004s-.052.075-.052.162.047.165.047.165l1.76.004s.057-.073.057-.165c0-.091-.065-.17-.065-.17s-.048.002-.109.002c-.2 0-.356-.061-.443-.195-.04-.058-1.091-1.667-1.114-1.705.266-.369.403-.504.639-.627.156-.082.443-.142.66-.142.003 0 .05-.042.05-.16 0-.12-.054-.163-.054-.163H21.81c-.039 0-.09.03-.127.082-.022.033-.85 1.222-1.07 1.541V9.818c0-.066-.04-.117-.117-.117zm-4.268.004c-.043 0-.07.028-.08.064l-.164.56c-.022.064.01.116.064.116h.844c.048 0 .083-.021.092-.06l.195-.604c.015-.05-.018-.076-.066-.076zm-4.424.008s-.088.056-.088.185c0 .16.088.196.088.196h.655c.95 0 1.545.634 1.545 1.879 0 1.342-.59 1.925-1.633 1.925h-.422c-.066 0-.116-.08-.117-.117l-.002-1.955c0-.646-.444-1.002-1.162-1.002-.483 0-.827.217-1.022.584v-.406c0-.065-.04-.094-.092-.094H7.02s-.08.07-.08.195c0 .135.08.186.08.186h.272c.072 0 .148.08.148.166v2.328c0 .048-.066.11-.113.11h-.26l-.12.334 1.734.002s.06-.056.06-.176c0-.113-.058-.16-.058-.16h-.207a.11.11 0 0 1-.108-.104v-1.812c.171-.464.501-.737.776-.737.258 0 .421.194.421.485l-.002 2.039c0 .073-.055.129-.103.129h-.246s-.069.047-.069.16c0 .117.069.175.069.175h2.039c2.031 0 2.555-1.217 2.555-2.255.01-1.632-1.124-2.26-2.586-2.26zm13.133 1.02a.38.38 0 0 0-.264.105.36.36 0 0 0-.119.28.38.38 0 0 0 .11.27.37.37 0 0 0 .271.11.37.37 0 0 0 .27-.107.37.37 0 0 0 .115-.276.37.37 0 0 0-.111-.267.37.37 0 0 0-.272-.116m-18.543.054c-.447 0-.801.05-1.166.176-.04.015-.05.055-.05.11 0 .18-.005.281-.005.49 0 .043.031.068.063.068h.191c.04 0 .073-.02.108-.06.108-.142.24-.255.342-.313a.9.9 0 0 1 .408-.113c.37 0 .525.269.525.584v.496c-1.396-.083-1.969.33-1.969.988 0 .751.52 1.066 1.028 1.066.463 0 .808-.176 1.002-.445.04.236.178.395.363.395h.729l.119-.332h-.108c-.22-.023-.245-.154-.25-.3V11.82c0-.26-.092-.56-.312-.744-.273-.23-.671-.289-1.018-.289zm18.547.018q.13 0 .223.093a.3.3 0 0 1 .091.223.32.32 0 0 1-.093.225.3.3 0 0 1-.223.092.3.3 0 0 1-.223-.092q-.091-.094-.091-.225c0-.13.03-.16.092-.223a.3.3 0 0 1 .224-.093m-5.974.039c-.573 0-1.194.326-1.194 1.033 0 .603.49.93.908 1.045.714.192.918.295.918.6 0 .264-.208.421-.566.421-.36 0-.697-.265-.897-.736-.03-.048-.05-.066-.084-.066-.099-.003-.2 0-.228 0-.029 0-.059.014-.059.06v.694c0 .054.074.113.074.113s.207.127.438.207c.192.066.428.117.76.117.841 0 1.242-.524 1.242-1.133 0-.556-.31-.896-1.016-1.064-.678-.164-.816-.283-.816-.522 0-.202.177-.418.53-.418.35 0 .677.209.827.452.021.033.049.046.092.046h.166a.046.046 0 0 0 .047-.043v-.584c0-.039-.015-.08-.064-.095-.258-.077-.648-.127-1.079-.127m-3.364.066s-.078.073-.078.186c0 .115.078.19.078.19l.33.001c.026 0 .045.018.045.05l-.004 2.462c0 .054-.047.094-.086.094h-.377s-.072.046-.072.16c0 .108.072.172.072.172h1.875s.061-.07.061-.178c-.003-.102-.064-.152-.064-.152l-.383.004c-.059 0-.09-.038-.09-.092l-.004-2.768c0-.08-.028-.129-.12-.129zm9.164 0v.424h.11v-.152h.023l.025.002q.026 0 .04.007c.015.008.024.015.029.03a.2.2 0 0 1 .008.054q.002.04.008.059h.107l-.002-.014v-.064q0-.067-.04-.094a.2.2 0 0 0-.062-.023.14.14 0 0 0 .075-.028q.03-.028.029-.078a.11.11 0 0 0-.059-.101.2.2 0 0 0-.084-.022zm.115.072h.028a.3.3 0 0 1 .066.008q.034.015.034.05-.003.035-.024.052-.023.014-.06.013h-.043zM5.494 12.59v.812h-.002c-.14.185-.373.342-.62.342-.323 0-.503-.159-.503-.516 0-.412.197-.638 1.125-.638"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sanfranciscomunicipalrailway.svg�������������0000664�0000000�0000000�00000003041�14753064456�0031565�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.62 15.698v-4.847s0-.232-.237-.232c-.225 0-.225.232-.225.232v6.678h-.924V9.925s-.022-1.154 1.15-1.154c1.153 0 1.153 1.153 1.153 1.153v4.156s0 1.618 1.616 1.618c1.615 0 1.615-1.618 1.615-1.618V6.448h.924v9.25s0 2.073-2.54 2.073c-2.532 0-2.532-2.073-2.532-2.073m-5.542-1.607V6.448h.925v6.71s-.023.233.23.233c.254 0 .23-.232.23-.232v-6.71h.923v7.631s.095 1.157-1.153 1.157-1.155-1.146-1.155-1.146m-8.306 1.146L2.77 10.85s0-.232-.23-.232c-.232 0-.232.232-.232.232v6.678h-.922V9.925s0-1.154 1.154-1.154 1.154 1.153 1.154 1.153v4.156s0 1.618 1.613 1.618c1.618 0 1.618-1.618 1.618-1.618V9.925s-.02-1.154 1.15-1.154c1.158 0 1.158 1.153 1.158 1.153v7.605H8.31v-6.678s0-.232-.237-.232c-.225 0-.225.232-.225.232v4.386s-.03 2.534-2.542 2.534-2.535-2.534-2.535-2.534m19.385-8.789H24V17.53h-1.843zM9.695 15.237V9.924s0-1.61-1.62-1.61c-1.612 0-1.612 1.61-1.612 1.61v4.156s0 1.157-1.156 1.157c-1.154 0-1.154-1.157-1.154-1.157V9.925s0-1.611-1.613-1.611c-1.616 0-1.616 1.61-1.616 1.61v7.605H0V8.771s0-2.543 2.54-2.543 2.54 2.543 2.54 2.543l.01 4.42s-.01.2.217.2c.242 0 .235-.232.235-.232V8.77s0-2.543 2.532-2.543c2.545 0 2.54 2.543 2.54 2.543l.005 5.31s-.075 1.617 1.613 1.617c1.69 0 1.614-1.618 1.614-1.618l.002-5.31s0-2.541 2.535-2.541c2.537 0 2.537 2.542 2.537 2.542l.008 4.388s-.008.232.225.232c.23 0 .23-.232.23-.232v-6.71h.924v7.631s0 1.157-1.154 1.157c-1.157 0-1.157-1.157-1.157-1.157V9.925s0-1.611-1.613-1.611c-1.611 0-1.611 1.61-1.611 1.61v5.313s0 2.534-2.54 2.534c-2.537 0-2.537-2.534-2.537-2.534"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sanic.svg������������������������������������0000664�0000000�0000000�00000004502�14753064456�0024721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.37 0 0 5.37 0 12s5.37 12 12 12 12-5.37 12-12S18.63 0 12 0m-.703 6.676c.584-.01.694-.037 1.379-.037.758 0 .758.064 1.507.064.548 0 .767-.027 1.114-.036.064 0 .137 0 .219.018a.5.5 0 0 1 .237.11.84.84 0 0 1 .265.52q.014.165-.027.329a.84.84 0 0 1-.365.493c-.037.018-.083.027-.12.037-.1.009-.255.018-.383.027-.246 0-.475-.01-.94-.01-.758 0-.758.056-1.507.056H11.15c-.183-.01-.274.009-.411-.046a.7.7 0 0 1-.22-.21.6.6 0 0 1-.1-.292c-.027-.676.119-1.014.877-1.023zM5.516 8.21c.256-.466.703-.776 1.169-1.032.447-.274.922-.466 1.48-.466.365 0 .447-.027.73-.036.256.018.301.018.438.128.146.146.265.32.302.538a.82.82 0 0 1-.183.63c-.356.311-.667.183-1.288.183-.42 0-.758.256-1.04.53-.275.283-.466.62-.466 1.041s.118.831.392 1.114c.283.274.694.466 1.114.466.75 0 .75-.11 1.507-.11.75 0 .75-.018 1.498-.018.758 0 .758.137 1.507.137.246 0 .511-.1.721.082a.84.84 0 0 1 .302.54c.009.118 0 .227-.028.337-.146.447-.155.548-.995.557-.75 0-.75-.146-1.507-.146-.749 0-.749.119-1.498.119-.758 0-.758-.12-1.507-.12-.557 0-1.04-.109-1.497-.364-.466-.274-.895-.594-1.17-1.06-.255-.447-.337-.995-.337-1.534.009-.539.1-1.068.356-1.516m3.251 8.557a.8.8 0 0 1-.155.292.7.7 0 0 1-.256.21c-.2.092-.575.055-.886.064-.73 0-.776-.036-1.516-.036a.78.78 0 0 1-.776-.786c.01-.41.393-.748.804-.748.721 0 .758-.037 1.48-.037.693.018.83-.027 1.04.146a.84.84 0 0 1 .302.539c.009.128-.01.247-.037.356m9.516-.95c-.274.466-.648.804-1.114 1.078-.448.256-.94.41-1.48.41-.757 0-.757.065-1.506.065-.758 0-.758-.028-1.507-.028-.75 0-.75.037-1.507.037-.877-.027-1.507.137-1.598-.621a.75.75 0 0 1 .045-.347c.037-.11.1-.22.174-.31a.8.8 0 0 1 .274-.229c.347-.146.712-.091 1.114-.091.758 0 .758.064 1.507.064.758 0 .758.027 1.507.027s.749.037 1.507.037c.42 0 .858-.192 1.123-.466.274-.283.365-.703.365-1.142 0-.42-.192-.748-.475-1.022-.274-.284-.593-.503-1.023-.503-.547.019-.913.073-1.114-.2a.6.6 0 0 1-.1-.293.75.75 0 0 1 .046-.347c.036-.11.1-.22.173-.31a.8.8 0 0 1 .274-.229c.183-.091.402-.055.73-.055.54 0 1.097.019 1.553.274.466.256.749.758 1.005 1.224.255.439.557.923.557 1.47-.01.558-.265 1.06-.53 1.507m-.164-7.643c-.484 0-.393.009-.557.009-.32.009-.594.009-.758-.265a.7.7 0 0 1-.092-.274.9.9 0 0 1 .037-.338c.036-.11.073-.21.137-.329.137-.219.256-.283.484-.32.137-.036.502-.045.767-.027.438 0 .721.42.703.859a.7.7 0 0 1-.721.684z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sanity.svg�����������������������������������0000664�0000000�0000000�00000001273�14753064456�0025135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.394 7.31a5.8 5.8 0 0 1-.833-.68c-.913-.91-1.38-2.067-1.38-3.568v-.575C6.699.929 9.039 0 11.828 0c5.394 0 8.515 2.8 9.285 6.74H16.22c-.54-1.554-1.89-2.764-4.352-2.764-2.422 0-4.136 1.276-4.473 3.334h-.002ZM4.683 3.062c0 3.236 2.034 5.162 6.106 6.177l4.316.983c3.854.87 6.2 3.03 6.2 6.55a6.6 6.6 0 0 1-1.436 4.239c0-3.511-1.85-5.409-6.31-6.55l-4.236-.946c-3.393-.76-6.011-2.536-6.011-6.36a6.58 6.58 0 0 1 1.37-4.093ZM17.18 16.484c-.292 2.235-2.092 3.495-4.698 3.495-2.314 0-4.048-.946-4.703-2.99H2.694C3.518 21.44 7.224 24 12.519 24c2.828 0 5.277-.87 6.85-2.439v-.55c0-1.66-.433-2.876-1.342-3.816a5.5 5.5 0 0 0-.847-.71z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/saopaulometro.svg����������������������������0000664�0000000�0000000�00000000404�14753064456�0026513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.366 6.543 5.092 5.456-5.092 5.456zM24 0v24H0V0zm-5.542 11.999 1.747-1.872L11.976 1.9l-8.227 8.228 1.747 1.871-1.747 1.871 8.227 8.229 8.228-8.229zm-7.87 5.455V6.543l-5.092 5.456z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sap.svg��������������������������������������0000664�0000000�0000000�00000001721�14753064456�0024407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 6.064v11.872h12.13L24 6.064zm3.264 2.208h.005c.863.001 1.915.245 2.676.633l-.82 1.43c-.835-.404-1.255-.442-1.73-.467-.708-.038-1.064.215-1.069.488-.007.332.669.633 1.305.838.964.306 2.19.715 2.377 1.9L7.77 8.437h2.046l2.064 5.576-.007-5.575h2.37c2.257 0 3.318.764 3.318 2.519 0 1.575-1.09 2.514-2.936 2.514h-.763l-.01 2.094-3.588-.003-.25-.908c-.37.122-.787.189-1.23.189-.456 0-.885-.071-1.263-.2l-.358.919-2 .006.09-.462q-.043.038-.087.074c-.535.43-1.208.629-2.037.644l-.213.002a5.1 5.1 0 0 1-2.581-.675l.73-1.448c.79.467 1.286.572 1.956.558.347-.007.598-.07.761-.239a.56.56 0 0 0 .156-.369c.007-.376-.53-.553-1.185-.756-.531-.164-1.135-.389-1.606-.735-.559-.41-.825-.924-.812-1.65a2 2 0 0 1 .566-1.377c.519-.537 1.357-.863 2.363-.863m10.597 1.67v1.904h.521c.694 0 1.247-.23 1.248-.964 0-.709-.554-.94-1.248-.94zm-5.087.767-.748 2.362c.223.085.481.133.757.133.268 0 .52-.047.742-.126l-.736-2.37z"/></svg>�����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sartorius.svg��������������������������������0000664�0000000�0000000�00000003163�14753064456�0025661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.377 12.499c0 .61-.29 1.071-.932 1.071s-.932-.473-.932-1.071V9.988h-.588v2.51c0 .821.514 1.596 1.52 1.596.983 0 1.51-.775 1.51-1.596v-.165h-.578zm-3.84 1.513h.588V9.988h-.588ZM12.21 9.994h-.096v.512h.095c.838 0 1.498.67 1.498 1.532 0 .868-.66 1.537-1.498 1.537s-1.499-.67-1.499-1.537h-.546c0 1.147.905 2.05 2.045 2.05s2.045-.903 2.045-2.05a2.03 2.03 0 0 0-2.045-2.044m11.052 1.799c-.285-.129-.628-.194-.878-.299-.274-.117-.374-.275-.374-.537 0-.315.262-.555.66-.555.524 0 .768.257.78.63h.53c.017-.583-.405-1.126-1.31-1.126-.743 0-1.238.461-1.238 1.045 0 .495.23.777.6.975.285.152.585.187.864.292.41.15.533.36.533.655 0 .404-.278.662-.736.662h-.058v.478h.035c.814 0 1.33-.508 1.33-1.143 0-.417-.203-.839-.737-1.077m-6.406-.535c0-.728-.523-1.27-1.277-1.27h-1.194v.53h1.175c.38 0 .749.298.749.74 0 .425-.339.745-.766.745h-.62v.53l.467-.004.78 1.484h.648l-.844-1.552c.442-.135.882-.592.882-1.204Zm-5.538-1.27H8.348v.53h.714v3.494h.581v-3.495h1.676zm-7.312 0L2.47 14.012h.57l1.271-3.331 1.313 3.331h.612L4.613 9.988ZM.553 12.761v-.215H0v.215c-.017.652.42 1.252 1.412 1.252h.036v-.489h-.036c-.528 0-.859-.337-.859-.763zm1.412-.961c-.285-.128-.648-.198-.897-.303-.273-.116-.357-.28-.357-.542 0-.315.261-.554.66-.554.522 0 .766.257.778.63h.528c.018-.583-.404-1.125-1.307-1.125-.742 0-1.241.46-1.241 1.043 0 .467.19.781.582.979.285.145.594.187.873.291.297.111.41.204.452.367h.6c-.083-.343-.315-.622-.671-.786zm6.13-.543c0-.728-.522-1.27-1.277-1.27H5.602v.53H6.8c.38 0 .748.297.748.74 0 .425-.338.745-.766.745H6.14v.53l.49-.005.781 1.484h.647l-.843-1.552c.44-.133.88-.59.88-1.202z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sass.svg�������������������������������������0000664�0000000�0000000�00000002200�14753064456�0024566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c6.627 0 12 5.373 12 12s-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0M9.615 15.998c.175.645.156 1.248-.024 1.792l-.065.18q-.037.092-.078.176-.21.435-.555.81c-.698.759-1.672 1.047-2.09.805-.45-.262-.226-1.335.584-2.19.871-.918 2.12-1.509 2.12-1.509v-.003zm9.911-10.861c-.542-2.133-4.077-2.834-7.422-1.645-1.989.707-4.144 1.818-5.693 3.267C4.568 8.48 4.275 9.98 4.396 10.607c.427 2.211 3.457 3.657 4.703 4.73v.006c-.367.18-3.056 1.529-3.686 2.925-.675 1.47.105 2.521.615 2.655 1.575.436 3.195-.36 4.065-1.649.84-1.261.766-2.881.404-3.676.496-.135 1.08-.195 1.83-.104 2.101.24 2.521 1.56 2.43 2.1-.09.539-.523.854-.674.944-.15.091-.195.12-.181.181.015.09.091.09.21.075.165-.03 1.096-.45 1.141-1.471.045-1.29-1.186-2.729-3.375-2.7-.9.016-1.471.091-1.875.256a.4.4 0 0 0-.105-.105c-1.35-1.455-3.855-2.475-3.75-4.41.03-.705.285-2.564 4.8-4.814 3.705-1.846 6.661-1.335 7.171-.21.733 1.604-1.576 4.59-5.431 5.024-1.47.165-2.235-.404-2.431-.615-.209-.225-.239-.24-.314-.194-.12.06-.045.255 0 .375.12.3.585.825 1.396 1.095.704.225 2.43.359 4.5-.45 2.324-.899 4.139-3.405 3.614-5.505z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sat1.svg�������������������������������������0000664�0000000�0000000�00000002462�14753064456�0024477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.344.007q-.438.014-.881.06C.37 1.155 3.963 16.689 4.493 18.204.527 9.78 2.858 4.5 4.61 2.712c.05-.05-.004-.136-.05-.095C.605 5.824.25 9.45.25 9.45c-.683 3.952 3.158 7.833 4.246 8.765-2.967-2-3.84-3.436-4.381-5.416-.016-.06-.118-.08-.113 0 .08 1.064.185 2.49 1.005 4.173.752.973 2.814 1.247 3.49 1.246h.002l-.003-.006c.883-3.249 2.674-8.92 5.495-12.739 2.728-3.537 4.83-4.65 5.402-4.904.048-.023.025-.077-.03-.114-.128-.082-1.978-.513-4.02-.448M4.498 18.219c.715 1.21 2.93 4.546 6.976 5.7 1.382.277 5.617-.02 8.6-3.011.055-.053.008-.175-.105-.1-1.97 1.345-8.14 2.683-15.47-2.589l-.003.002c-1.053.447-2.22.28-2.73.044-.064-.03-.124-.02-.09.044.749 1.264 1.166 1.7 2.11 2.545.051.053.104.04.08-.064-.01-.046-.189-1.342.63-2.565-.105.822-.206 3.105.692 3.71 1.058.723 2.147 1.415 4.084 1.83.076.018.145-.071.07-.11-3.165-1.546-3.91-3.474-4.844-5.433zM17.612 1.4c-.226.025-.462.214-1.016.551C9.973 6.36 5.058 17.034 4.498 18.216c0 0 11.07-2.39 17.855-9.29 1.06-1.084 1.138-.85.64-2.053-.24-.597-.866-1.813-1.95-3.036-.854-.955-1.97-1.703-2.466-2.01-.52-.316-.738-.454-.965-.428zM4.498 18.214c1.363.78 16.115 7.063 18.958-2.725.665-2.284.576-4.674.468-4.963-.022-.062-.073-.034-.076-.014-.35.516-1.828 2.42-5.78 4.494C13.826 17.118 7.84 17.913 4.5 18.215z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/satellite.svg��������������������������������0000664�0000000�0000000�00000002710�14753064456�0025611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.413 7.62c.042 0 .063.02.105.02.062 0 .148-.02.21-.061l.736-.415c.21-.124.273-.372.148-.559l-.946-1.635a.37.37 0 0 0-.253-.187c-.105-.02-.23-.02-.315.042l-.735.414c-.211.125-.274.373-.148.56l.946 1.635c.042.082.147.145.252.186m3.699 4.06-.735.413c-.21.125-.274.374-.148.56l.946 1.635a.37.37 0 0 0 .253.187c.041 0 .062.02.104.02a.4.4 0 0 0 .211-.062l.735-.414c.21-.125.274-.373.148-.56l-.946-1.635a.38.38 0 0 0-.252-.187.56.56 0 0 0-.316.042ZM11.989 0C6.105 0 1.333 4.7 1.333 10.499q0 1.429.379 2.795c.147.56.735.87 1.282.725.567-.145.882-.725.736-1.263a8 8 0 0 1-.316-2.237C3.436 5.86 7.28 2.071 11.99 2.071s8.555 3.79 8.555 8.428c0 3.189-1.787 6.067-4.667 7.517a6.4 6.4 0 0 1-.861.372c-.126.041-.252.104-.4.145a1.05 1.05 0 0 0-.735.994c0 .498.084 1.056.274 1.657l-2.46-1.305c-.987-.517-1.955-1.056-2.753-1.822-.904-.87-1.198-1.429-1.282-2.444-.084-.931.147-1.594.904-2.505.4-.497.924-.85 1.344-1.097q.6-.374 1.262-.685a2.1 2.1 0 0 0 2.27.146 2.053 2.053 0 0 0 .798-2.816c-.567-.995-1.849-1.347-2.858-.788a2.02 2.02 0 0 0-1.051 1.575c-.525.249-1.05.538-1.534.849-.547.331-1.262.828-1.87 1.573-.758.932-1.514 2.133-1.367 3.976.126 1.532.631 2.527 1.892 3.748 1.009.974 2.101 1.595 3.258 2.196l3.95 2.05c.211.103.463.165.694.165.379 0 .736-.145 1.009-.394a1.41 1.41 0 0 0 .315-1.656 7.7 7.7 0 0 1-.588-1.677c.252-.104.505-.229.756-.332 3.595-1.801 5.823-5.384 5.823-9.36C22.645 4.701 17.875 0 11.989 0"/></svg>��������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/saturn.svg�����������������������������������0000664�0000000�0000000�00000002013�14753064456�0025133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.039 11.459c.001.015.022.244.03.407.006.113 0 .29 0 .3.003 0 .029.023.03.024 1.428 1.17 2.943 2.767 3.204 3.94.073.325.056.618-.072.868-.152.293-.439.503-.834.638-2.046.7-6.925-.642-10.907-2.609-2.845-1.406-5.342-3.081-7.032-4.719-1.57-1.523-1.995-2.71-1.59-3.427.155-.271.42-.472.776-.609 1.299-.507 3.788-.152 6.239.579-1.16.866-1.968 2.034-2.342 3.202l-.001.007-.001.006c-.115 1.07 1.434 2.47 3 3.25-.002-.006.084.032.084.026-.002-.006-.015-.109-.017-.113-.366-2.66 1.648-6.64 3.765-7.513.136-.056.254-.09.27-.095l-.273-.027q-.11-.01-.228-.015a8 8 0 0 0-.272-.01 6.44 6.44 0 0 0-3.4.892C5.378 5.057 2.383 4.892 1.13 5.31q-.747.251-1 .751c-.174.35-.175.79-.002 1.306.57 1.704 3.058 4.032 6.211 6.099.457 2.407 2.615 4.875 5.703 5.204l.142.015a.3.3 0 0 1 .05 0l-.173-.132c-.955-.736-1.813-1.949-2.107-3l.185.093.143.07c4.985 2.465 10.215 3.72 12.53 2.947.519-.174.9-.418 1.075-.768.167-.335.139-.78-.029-1.278-.436-1.3-2.304-3.284-4.675-5.052l-.145-.107"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/saucelabs.svg��������������������������������0000664�0000000�0000000�00000000570�14753064456�0025567�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.434 7.344a3.02 3.02 0 0 0-2.435-1.22h-7l-2 5.876h4.838l-2 5.876H10L8 23.75h9c1.291 0 2.438-.809 2.847-2.009l3.999-11.75a2.89 2.89 0 0 0-.412-2.647ZM10 11.999H7.162l2-5.876h4.837L16 .25H7c-1.291 0-2.438.809-2.847 2.009L.154 14.008a2.89 2.89 0 0 0 .412 2.647 3.02 3.02 0 0 0 2.435 1.22h7l2-5.876z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/saudia.svg�����������������������������������0000664�0000000�0000000�00000003765�14753064456�0025104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.759 5.065c.947.22 1.577.709 1.577.709s-.565-.89-1.494-1.3c-.69-.304-1.367-.308-1.897-.228a.8.8 0 0 1 .166-.225c.163-.15.347-.237.347-.237s-.393-.098-.734.03a1.4 1.4 0 0 0-.419.255 3 3 0 0 0-.056-.3c-.04-.163-.233-.513-.25-.543-.016.03-.209.38-.249.544a3 3 0 0 0-.056.3 1.4 1.4 0 0 0-.419-.256c-.34-.128-.733-.03-.733-.03s.183.087.346.237q.104.097.166.225c-.53-.08-1.206-.076-1.896.229-.93.41-1.495 1.299-1.495 1.299s.63-.488 1.578-.709a3.5 3.5 0 0 1 1.268-.056c-.592.13-1.422.438-2.034 1.217-.533.678-.67 1.627-.67 1.627s.433-.554 1.162-1.172a5.4 5.4 0 0 1 1.208-.773c-.454.43-.678 1.09-.77 1.341-.275.763-.098 1.61-.098 1.61s.116-.553.54-1.273a4.5 4.5 0 0 1 1.02-1.17c-.391 1.448.012 2.874.012 2.874s.245-1.098.613-2.028c.156-.396.336-.696.508-.92.172.224.352.523.508.92.368.93.613 2.028.613 2.028s.403-1.426.012-2.875c.327.268.716.657 1.019 1.17.424.72.541 1.274.541 1.274s.177-.847-.1-1.61c-.09-.25-.315-.91-.768-1.341a5.4 5.4 0 0 1 1.208.773c.729.618 1.161 1.172 1.161 1.172s-.136-.949-.67-1.627c-.611-.78-1.441-1.088-2.034-1.217.37-.049.803-.052 1.27.056zm-3.502 4.931L.112 7.762a.094.094 0 0 0-.087.155l3.537 3.91c1.083-.193 2.175-.202 3.25.034 1.608.352 3.107 1.062 4.58 1.777zm-3.006 7.01-.638-.708q.647-.357 1.288-.726c.715-.412 1.416-.85 2.133-1.262-1.674-.961-2.948-1.559-4.027-1.928-1.089-.43-2.284-.515-3.444-.556l4.044 4.47a4 4 0 0 1-.377.246c-1.339.792-2.152.903-3.24.983 1.002.209 1.425.483 2.893.153.515-.116 1.342-.65 1.37-.668l3.406 3.764-.215-5.758c-.834.501-1.659 1.017-2.481 1.538m3.78-6.558-.136 3.642c1.474-.715 2.974-1.425 4.582-1.777 1.074-.235 2.166-.226 3.249-.035l3.537-3.909a.094.094 0 0 0-.087-.155m-3.45 4.064-4.045 4.47c.019.014.153.114.377.246 1.34.792 2.152.903 3.24.983-1.002.209-1.425.483-2.892.153-.516-.116-1.343-.65-1.371-.668l-3.406 3.764.215-5.758c1.076.645 2.134 1.318 3.193 1.99l.638-.708a80 80 0 0 1-1.288-.726c-.714-.412-1.416-.85-2.132-1.262 1.948-1.108 3.05-1.594 4.026-1.928 1.089-.43 2.284-.515 3.445-.556"/></svg>�����������mkdocs-material-9.6.4/material/templates/.icons/simple/scala.svg������������������������������������0000664�0000000�0000000�00000000501�14753064456�0024702�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.589 24c4.537 0 13.81-1.516 14.821-3v-5.729c-.957 1.408-10.284 2.912-14.821 2.912zm0-7.635c4.537 0 13.81-1.516 14.821-3V7.636c-.957 1.408-10.284 2.912-14.821 2.912zm0-7.636c4.537 0 13.81-1.516 14.821-3V0C18.453 1.408 9.126 2.912 4.589 2.912z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/scalar.svg�����������������������������������0000664�0000000�0000000�00000001474�14753064456�0025076�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.044 0c.243 0 .486.202.486.486v5.423l3.804-3.845c.202-.202.526-.202.688 0l2.914 2.914c.162.162.202.486 0 .648v.04L18.09 9.47h5.423c.284 0 .486.203.486.486v4.088a.47.47 0 0 1-.486.486H18.09l3.845 3.804c.162.202.202.526 0 .688l-2.914 2.914c-.162.162-.486.202-.648 0h-.04L14.53 18.09v5.423a.47.47 0 0 1-.486.486H9.956a.47.47 0 0 1-.486-.486V20.68c0-.89.365-1.74.972-2.388l5.261-5.261a1.466 1.466 0 0 0 0-2.064l-5.22-5.221A3.4 3.4 0 0 1 9.47 3.359V.486c0-.284.203-.486.486-.486zM5.585 2.105h.04l8.864 8.863a1.466 1.466 0 0 1 0 2.064l-8.863 8.904c-.162.202-.486.202-.688 0l-2.874-2.833c-.162-.203-.202-.486 0-.688L5.91 14.53H.486A.47.47 0 0 1 0 14.043V9.956c0-.283.202-.486.486-.486h5.423L2.064 5.666a.55.55 0 0 1 0-.688l2.874-2.873a.42.42 0 0 1 .647 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/scaleway.svg���������������������������������0000664�0000000�0000000�00000001315�14753064456�0025433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.605 11.11v5.72a1.77 1.77 0 0 1-1.54 1.69h-4a1.43 1.43 0 0 1-1.31-1.22 1 1 0 0 1 0-.18 1.37 1.37 0 0 1 1.37-1.36h1.74a1 1 0 0 0 1-1v-3.62a1.4 1.4 0 0 1 1.18-1.39h.17a1.37 1.37 0 0 1 1.39 1.36m-6.46 1.74V9.26a1 1 0 0 1 1-1h1.85a1.37 1.37 0 0 0 1.37-1.37 1 1 0 0 0 0-.17 1.45 1.45 0 0 0-1.41-1.2h-3.96a1.81 1.81 0 0 0-1.58 1.66v5.7a1.37 1.37 0 0 0 1.37 1.37h.21a1.4 1.4 0 0 0 1.15-1.4m12-4.29V20a4.53 4.53 0 0 1-4.15 4h-7.58a8.57 8.57 0 0 1-8.56-8.57V4.54A4.54 4.54 0 0 1 6.395 0h7.18a8.56 8.56 0 0 1 8.56 8.56zm-2.74 0a5.83 5.83 0 0 0-5.82-5.82h-7.19a1.79 1.79 0 0 0-1.8 1.8v10.89a5.83 5.83 0 0 0 5.82 5.8h7.44a1.79 1.79 0 0 0 1.54-1.48z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/scania.svg�����������������������������������0000664�0000000�0000000�00000016704�14753064456�0025071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .6c-2.167 0-4.264.667-6.019 1.888a33 33 0 0 1-2.167-.48A12.26 12.26 0 0 0 0 8.615a33 33 0 0 1 1.5 1.636 10.54 10.54 0 0 0 6.018 10.423q.37 1.048.668 2.117a12.27 12.27 0 0 0 7.629 0q.296-1.07.667-2.118A10.54 10.54 0 0 0 22.5 10.252q.723-.846 1.5-1.636a12.26 12.26 0 0 0-3.814-6.609q-1.075.277-2.167.481A10.54 10.54 0 0 0 12 .6m0 .642c1.806 0 3.562.494 5.086 1.407a32.7 32.7 0 0 1-10.172 0A9.9 9.9 0 0 1 12 1.242M3.994 2.715q.647.16 1.301.293a10.54 10.54 0 0 0-3.687 6.387 36 36 0 0 0-.904-.98 11.6 11.6 0 0 1 3.29-5.7m16.012 0a11.6 11.6 0 0 1 3.29 5.7q-.461.482-.904.98a10.54 10.54 0 0 0-3.687-6.387q.654-.133 1.301-.293m-13.873.454a33.4 33.4 0 0 0 11.734 0 9.89 9.89 0 0 1 3.966 6.873 33.4 33.4 0 0 0-5.866 10.16 9.9 9.9 0 0 1-7.935 0 33.4 33.4 0 0 0-5.866-10.16 9.9 9.9 0 0 1 3.967-6.873m6.018.867a.662.662 0 0 0-.448 1.132.652.652 0 0 0-.971.573.652.652 0 0 0 1.03.535c-.241.404-.606.944-1.13.944-.547 0-.811-.228-1.052-.633a.55.55 0 0 0 .318-.021c.316-.105.493-.423.404-.823-.079-.354-.456-.55-.799-.45a.64.64 0 0 0-.291.18.7.7 0 0 0 .064-.519c-.098-.349-.512-.628-.873-.574l1.415 3.475c-.073.078-.18.196-.256.329-.302-.153-.909-.379-1.514-.135a1.6 1.6 0 0 0-.522.349c-.45.45-.676 1.2-.793 1.731a8 8 0 0 0-.08.415c.188-.141.31-.23.424-.306.102-.068.2-.124.336-.194.247-.127.583-.264.886-.264.163 0 .347.043.472.148.045.037.405.543 1.114.729.666.175.68.287.69.377 0 0-.116.19-.367.365a2.7 2.7 0 0 0-.346-.445c-.331-.346-.862-.532-1.296-.529-.413.004-.718.192-1.526.192-.82 0-1.39-.207-1.81-.454-.302-.164-.52-.37-.723-.535.108.263.213.472.307.684.07.151.327.667.648.947.413.35.822.465 1.224.465.408 0 .81-.119 1.206-.236.39-.116.766-.228 1.142-.228.487 0 .752.163.964.294a6 6 0 0 1-.225.15c-.3.191-.539.262-.771.262-.286 0-.801-.15-1.25-.33a1 1 0 0 0-.006.102v.116c0 .253.041.557.326.85q.185.188.454.29c.187.07.407.105.646.117a3 3 0 0 0-.31.316c-.24.296-.435.692-.435 1.202 0 .262.046.481.111.691.047.149.093.284.157.445l.212-.255c.004-.004.236-.278.555-.51a3 3 0 0 0-.326 1.325c0 1.012.563 1.834 1.332 2.48 0 0 .183.163.312.263-.003-.162 0-.267 0-.408 0-.493.08-1.448.405-2.025.035.135.075.334.11.558.045.298.081.641.081.94 0 .496-.072.863-.156 1.127-.098.304-.18.42-.255.547a3.3 3.3 0 0 0 .882-.09 2.3 2.3 0 0 0 1.72-1.555q.136-.424.136-.94c0-.198-.018-.403-.046-.603l-.024-.16c.055.044.093.085.14.138.18.207.343.524.343 1.036 0 .175-.01.445-.084.749.174-.058.351-.163.52-.27q.308-.195.572-.46c.48-.48.811-1.117.818-1.845.005-.475-.096-.855-.32-1.299q-.038-.072-.077-.146.078.034.147.08c.255.164.42.424.53.718.066.177.114.35.147.554.074-.09.162-.212.262-.385.201-.348.414-.883.414-1.647 0-.375-.049-.806-.22-1.255a2.9 2.9 0 0 0-.85-1.202c.264.029.511.146.7.333.125.126.223.28.313.452l.095.19c.009-.093.008-.123.01-.204-.02-1.351-.397-2.34-1.626-2.978l-.007-.004c.43-.488.638-1.038.783-1.63-.296-.075-.843-.138-1.673.25l1.32-3.254c-.362-.054-.775.225-.873.574a.7.7 0 0 0 .065.519.64.64 0 0 0-.292-.181c-.343-.1-.72.097-.8.451-.088.4.089.718.405.822.134.04.177.045.318.021-.241.405-.494.629-1.041.629-.524 0-.892-.535-1.133-.94 0 0 .246.122.385.122a.65.65 0 0 0 .645-.657.65.65 0 0 0-.645-.658.63.63 0 0 0-.33.093.7.7 0 0 0 .202-.481.65.65 0 0 0-.645-.658m3.608 3.585h.147l-.047.14c-.151.447-.629 1.516-1.802 1.779l.005.022.05.247c.497-.092.817-.303 1.107-.555.742.361 1.242.961 1.42 1.76l.034.157a.7.7 0 0 0-.114-.1 1.35 1.35 0 0 0-.719-.194c-.262 0-.489.063-.602.102.186.159.337.297.471.431.41.411.677.803.837 1.235.12.326.18.67.18 1.048 0 .403-.072.772-.213 1.098-.011.026-.04.092-.052.127a1 1 0 0 0-.044-.126c-.341-.72-.91-.872-1.328-.872q-.104.001-.184.008l.006.01c.278.428.698 1.075.698 1.87 0 .26-.048.516-.142.759a2.4 2.4 0 0 1-.55.83 2.6 2.6 0 0 1-.397.333l-.1.071a.5.5 0 0 0 .02-.12c.024-.897-.475-1.61-1.272-1.827l.018.076c.087.353.186.752.186 1.292 0 .583-.145 1.066-.43 1.436a1.95 1.95 0 0 1-.688.556 2.2 2.2 0 0 1-.652.219l-.109.018a1 1 0 0 0 .045-.087 1 1 0 0 0 .054-.161c.124-.455.127-1.001.127-1.069 0-.845-.21-1.618-.336-2.08l-.026-.098c-.1.074-.166.14-.211.186l-.02.021c-.263.263-.455.723-.57 1.367a7 7 0 0 0-.07.537l-.013.195-.003.121s-.072-.08-.09-.098a5 5 0 0 1-.188-.204 3.2 3.2 0 0 1-.483-.71 2.5 2.5 0 0 1-.177-.482 2.3 2.3 0 0 1-.07-.561c0-1.062.641-1.774.918-2.058l-.09.016a3 3 0 0 0-.326.08 2.2 2.2 0 0 0-.546.252 3.2 3.2 0 0 0-.603.513s-.018-.083-.021-.107a2.5 2.5 0 0 1-.04-.391c0-.441.168-.833.5-1.163.312-.313.551-.413 1.265-.712l.218-.091-.314.043c-.438.062-.638.09-1.009.09-.525 0-.887-.107-1.106-.327a.8.8 0 0 1-.123-.158 1.6 1.6 0 0 1-.117-.243l.272.099c.054.017.117.036.17.05a2 2 0 0 0 .49.07c.444 0 .804-.194 1.24-.508q.275-.197.456-.378c.182-.182.221-.28.222-.297-.008-.269-.016-.523-.951-.768a1.8 1.8 0 0 1-.913-.59 1 1 0 0 0-.063-.068 1.05 1.05 0 0 0-.682-.229c-.196 0-.409.043-.651.132a5 5 0 0 0-.395.166l-.108.05.036-.113a3.8 3.8 0 0 1 .3-.705q.278-.467.676-.629.208-.084.447-.084c.385 0 .732.167.875.247.01.71.438 1.12.93 1.12a.86.86 0 0 0 .643-.275c.121-.122.196-.258.244-.366a.7.7 0 0 0 .07-.2l.005.001a.5.5 0 0 1 .211.132l.236-.21a1.1 1.1 0 0 0-.401-.264 1.4 1.4 0 0 0-.464-.098 1.7 1.7 0 0 0-.36.026c-.123.02-.222.048-.396.048a.7.7 0 0 1-.358-.09 1.7 1.7 0 0 1 .525-.535l.006-.004h3.817l.074.003a3.3 3.3 0 0 0-.747.655l.215.17c.498-.622 1.272-1.01 2.02-1.01zm-.457.494c-.621.08-1.182.635-1.182.635l.127.27c.293-.062.521-.22.69-.389.248-.248.347-.437.365-.516m-5.542.543.138.038c.055.016.132.032.207.042l.036.006.007.035a.27.27 0 0 0 .072.144.3.3 0 0 0 .43 0 .3.3 0 0 0 .088-.196l.002-.048.047-.002a3 3 0 0 1 .22 0l.117.008-.018.07a.85.85 0 0 1-.228.425.6.6 0 0 1-.469.192.58.58 0 0 1-.41-.175.8.8 0 0 1-.219-.43zm4.513 1.49-.133.416c.085.098.148.19.2.267.146.214.238.41.29.614.05.2.056.392.056.57q0 .214-.046.425c-.022.101-.053.21-.079.293-.024.08-.079.226-.079.226s-.008-.165-.023-.255-.029-.186-.053-.264a1.44 1.44 0 0 0-.353-.604 1.4 1.4 0 0 0-.35-.253 2 2 0 0 0-.284-.118c.022.083.045.173.07.28.064.276.093.504.093.716 0 .337-.075.622-.232.871a1.3 1.3 0 0 1-.187.234 2 2 0 0 1-.386.316c.036-.06.065-.122.1-.193.042-.087.068-.18.087-.248.186-.657-.121-1.063-.37-1.312a2 2 0 0 0-.103-.098l-.014.277c-.022.318-.08.68-.35.948a2 2 0 0 1-.139.13c-.052.042-.111.092-.19.14.033-.064.06-.096.11-.218a.97.97 0 0 0-.029-.78l-.34.183q.014.039.024.076a.7.7 0 0 1-.086.577c-.05.08-.115.16-.204.25-.079.077-.162.152-.235.218l-.156.141.139-.001c.15-.002.35-.01.563-.047.34-.062.605-.192.813-.4a1.3 1.3 0 0 0 .218-.287q-.014.164-.084.34a2.3 2.3 0 0 1-.239.436c-.065.095-.138.2-.232.315l-.086.105.134-.02q.244-.035.48-.098a1.74 1.74 0 0 0 1.078-.777c.1-.158.172-.323.218-.504a2.4 2.4 0 0 0 .066-.696q.044.078.083.172.08.202.11.47c.01.112.016.235.016.385v.03c0 .144 0 .281-.011.436l-.011.152.103-.112c.134-.147.279-.315.427-.55a2.54 2.54 0 0 0 .332-1.978 2.3 2.3 0 0 0-.359-.76 3 3 0 0 0-.349-.417zm-3.275.165a.5.5 0 0 0-.215.049c.273.029.341.113.467.238.066.067.129.138.194.204.12.12.231.219.436.219a.6.6 0 0 0 .157-.022 1 1 0 0 0 .305-.141.5.5 0 0 1-.203.041c-.511 0-.663-.588-1.14-.588zm-5.83.1c.06.038.186.127.365.2.167.07.343.135.55.184.278.065.586.097.94.097a5.4 5.4 0 0 0 1.162-.153 2 2 0 0 1 .413-.062c.215 0 .424.035.578.116.153.082.261.17.395.279a2.7 2.7 0 0 0-.48-.071c-.143-.01-.34.003-.465.022-.28.041-.525.114-.783.19l-.03.01c-.39.115-.759.224-1.123.224-.422 0-.803-.157-1.101-.455-.065-.065-.171-.17-.242-.27a2 2 0 0 1-.179-.31zm-3.061.567a32.7 32.7 0 0 1 5.084 8.805 9.9 9.9 0 0 1-5.086-8.647q0-.08.002-.158m19.786 0 .002.157a9.9 9.9 0 0 1-5.086 8.648 32.7 32.7 0 0 1 5.085-8.805zM8.313 21.007a10.54 10.54 0 0 0 7.375 0q-.21.634-.396 1.274a11.6 11.6 0 0 1-6.583 0 33 33 0 0 0-.397-1.273z"/></svg>������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/schneiderelectric.svg������������������������0000664�0000000�0000000�00000001324�14753064456�0027302�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.73.313c-3.56-.049-7.797 1.68-11.288 5.02-.87.83-1.607 1.725-2.28 2.642h3.042L5.497 9.99H1.864c-.346.636-.672 1.266-.922 1.906h4.307l-.687 2.016H.327c-.724 3.079-.262 5.953 1.559 7.777 3.54 3.538 11.01 2.292 16.591-3.048.977-.93 1.783-1.931 2.511-2.96h-3.906l.596-2.013h4.568c.334-.64.643-1.274.883-1.914h-4.992l.554-2.01h5.051c.623-2.917.132-5.62-1.638-7.39C20.76 1.01 18.867.34 16.73.312Zm-1.044 4.714h4.968l-.634 2.938h-3.002c-.323 0-.46.054-.592.201-.05.058-.07.115-.09.23l-1.639 6.22c-.385 2.179-3.065 4.359-6.555 4.359H3.288l.842-3.198h3.119a.98.98 0 0 0 .775-.347c.076-.09.177-.232.19-.377L9.509 9.62c.381-2.182 2.686-4.592 6.177-4.592Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/scikitlearn.svg������������������������������0000664�0000000�0000000�00000007515�14753064456�0026143�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.601 5.53c-1.91.035-3.981.91-5.63 2.56-2.93 2.93-2.083 8.53-1.088 9.525.805.804 6.595 1.843 9.526-1.088a10 10 0 0 0 .584-.643q.064-.437.489-1.106a1.9 1.9 0 0 1-.537.176q-.217.398-.676.855-.53.503-.76.656a.8.8 0 0 1-.437.152q-.524 0-.494-.924-.33.474-.612.7a.9.9 0 0 1-.578.224q-.292 0-.496-.273a1.03 1.03 0 0 1-.193-.507 4 4 0 0 1-.726.583q-.335.197-.74.197-.45 0-.727-.288a.98.98 0 0 1-.257-.524v.004q-.45.414-.79.611a1.3 1.3 0 0 1-.649.197.7.7 0 0 1-.571-.275q-.218-.275-.218-.739 0-.695.302-1.67.301-.976.733-1.797l.842-.312a.2.2 0 0 1 .06-.013q.095 0 .157.14.06.142.061.38 0 .677-.312 1.31-.31.633-.974 1.352-.027.345-.027.474 0 .289.106.458.107.17.282.169a.7.7 0 0 0 .382-.13q.198-.127.602-.523.04-.626.482-1.142.487-.57 1.08-.569.308 0 .494.16a.52.52 0 0 1 .186.417q0 .687-1.459 1.114.133.646.693.646a.8.8 0 0 0 .417-.117q.194-.115.575-.497.048-.378.259-.728.273-.45.701-.73.427-.278.756-.278.415 0 .58.381l.677-.374h.186l-.292.971q-.225.732-.226 1.004 0 .285.202.285.129 0 .285-.137.156-.138.437-.42v.001q.215-.233.392-.494-.285-.127-.285-.375 0-.255.174-.545.173-.29.479-.29.258 0 .258.265 0 .209-.149.596.55-.06.961-.842l.228-.01c1.059-2.438.828-5.075-.83-6.732-1.019-1.02-2.408-1.5-3.895-1.471m4.725 8.203a9 9 0 0 1-1.333 2.151 1 1 0 0 0-.012.147q0 .252.14.423.139.17.34.17.444-.001 1.254-.787-.002.06-.003.121 0 .219.036.666l.733-.172q0-.3.01-.474.016-.236.066-.517.03-.166.152-.315l.186-.216a5 5 0 0 1 .378-.397q.093-.083.162-.13a.26.26 0 0 1 .123-.046q.083 0 .083.106 0 .105-.156.497-.292.73-.292 1.084 0 .262.136.418a.45.45 0 0 0 .358.155q.548 0 1.313-.808v-.381q-.542.64-.784.64-.163 0-.163-.2 0-.15.195-.65.285-.73.285-1.048a.46.46 0 0 0-.112-.319.36.36 0 0 0-.282-.127q-.247 0-.567.233-.319.234-.863.84.08-.393.335-1.08l-.809.156a6.5 6.5 0 0 0-.399 1.074q-.06.234-.092.48a8 8 0 0 1-.49.45.38.38 0 0 1-.229.08.21.21 0 0 1-.174-.082.35.35 0 0 1-.064-.222q0-.15.056-.343t.249-.731l.308-.849zm-17.21-2.927c-.863-.016-1.67.263-2.261.854-1.352 1.352-1.07 3.827.631 5.527 1.7 1.701 4.95 1.21 5.527.632.467-.466 1.07-3.827-.631-5.527-.957-.957-2.158-1.465-3.267-1.486zm12.285.358h.166v.21H15.4zm.427 0h.166v.865l.46-.455h.195l-.364.362.428.684h-.198l-.357-.575-.164.166v.41h-.166zm1.016 0h.166v.21h-.166zm.481.122h.166v.288h.172v.135h-.172v.717q0 .056.02.075.018.02.074.02a.2.2 0 0 0 .078-.01v.141a1 1 0 0 1-.136.014.23.23 0 0 1-.15-.043.15.15 0 0 1-.052-.123v-.79h-.141v-.136h.141zm-3.562.258q.121 0 .207.038.085.036.13.11a.26.26 0 0 1 .045.173h-.176q-.009-.167-.208-.167a.3.3 0 0 0-.164.041.13.13 0 0 0-.06.117q0 .053.045.088.045.036.15.06l.16.039a.47.47 0 0 1 .224.105q.07.069.07.186a.3.3 0 0 1-.052.175.33.33 0 0 1-.152.116.6.6 0 0 1-.226.041q-.205 0-.309-.088-.103-.089-.109-.269h.176q.006.056.017.084a.2.2 0 0 0 .034.054q.066.065.204.065a.3.3 0 0 0 .177-.045.14.14 0 0 0 .067-.119.12.12 0 0 0-.038-.09.3.3 0 0 0-.124-.055l-.156-.038a1 1 0 0 1-.159-.05.4.4 0 0 1-.098-.061.2.2 0 0 1-.058-.083.3.3 0 0 1-.016-.108q0-.144.109-.232a.45.45 0 0 1 .29-.087m1.035 0a.5.5 0 0 1 .202.043.35.35 0 0 1 .187.212.6.6 0 0 1 .023.126h-.168a.26.26 0 0 0-.078-.168.24.24 0 0 0-.17-.06.25.25 0 0 0-.155.05.3.3 0 0 0-.1.144.7.7 0 0 0-.034.224.6.6 0 0 0 .035.214.3.3 0 0 0 .101.135.26.26 0 0 0 .157.048q.213 0 .256-.252h.167a.5.5 0 0 1-.065.22.35.35 0 0 1-.146.138.5.5 0 0 1-.216.048.45.45 0 0 1-.246-.066.44.44 0 0 1-.161-.192.7.7 0 0 1-.057-.293q0-.128.032-.233a.5.5 0 0 1 .095-.182.4.4 0 0 1 .15-.117.45.45 0 0 1 .191-.04zm.603.03h.166v1.046H15.4zm1.443 0h.166v1.046h-.166zm-5.05.618q-.121 0-.356.611-.232.61-.459 1.71.422-.468.683-1.05.262-.58.262-.999a.46.46 0 0 0-.036-.197q-.038-.075-.093-.075zm4.662 1.797q-.332 0-.629.563-.296.564-.296 1.038 0 .18.088.29a.27.27 0 0 0 .223.111q.332 0 .625-.565.294-.566.294-1.043a.46.46 0 0 0-.083-.29.27.27 0 0 0-.222-.104m-2.848.007q-.219 0-.417.333-.2.332-.2.866.849-.238.849-.881 0-.318-.232-.318"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/scilab.svg�����������������������������������0000664�0000000�0000000�00000003235�14753064456�0025063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.813 1.803c-1.103 0-1.99.888-1.99 1.99v16.414c0 1.102.887 1.99 1.99 1.99h16.375c1.102 0 1.99-.888 1.99-1.99V3.793c0-1.102-.888-1.99-1.99-1.99zm8.82 1.234a1.802 1.825 0 0 1 1.803 1.824 1.802 1.825 0 0 1-1.803 1.827A1.802 1.825 0 0 1 10.83 4.86a1.802 1.825 0 0 1 1.803-1.824Zm2.986 3.496a1.802 1.825 0 0 1 1.803 1.826 1.802 1.825 0 0 1-1.803 1.825 1.802 1.825 0 0 1-1.803-1.825 1.802 1.825 0 0 1 1.803-1.826m-7.346.26a1.802 1.825 0 0 1 1.803 1.824 1.802 1.825 0 0 1-1.803 1.826 1.802 1.825 0 0 1-1.802-1.826 1.802 1.825 0 0 1 1.802-1.824m3.98 2.633a1.802 1.825 0 0 1 1.804 1.826 1.802 1.825 0 0 1-1.803 1.824 1.802 1.825 0 0 1-1.803-1.824 1.802 1.825 0 0 1 1.803-1.826zm7.044.053a1.802 1.825 0 0 1 1.803 1.826 1.802 1.825 0 0 1-1.803 1.824 1.802 1.825 0 0 1-1.8-1.824 1.802 1.825 0 0 1 1.8-1.826m-3.402 2.535a1.802 1.825 0 0 1 1.802 1.826 1.802 1.825 0 0 1-1.802 1.824 1.802 1.825 0 0 1-1.803-1.824 1.802 1.825 0 0 1 1.803-1.826m-11.614.953a1.802 1.825 0 0 1 1.803 1.826 1.802 1.825 0 0 1-1.803 1.824 1.802 1.825 0 0 1-1.802-1.824 1.802 1.825 0 0 1 1.802-1.826m15.518.93a1.802 1.825 0 0 1 1.803 1.824 1.802 1.825 0 0 1-1.803 1.826 1.802 1.825 0 0 1-1.803-1.826 1.802 1.825 0 0 1 1.803-1.825zM7.81 15.665a1.802 1.825 0 0 1 1.802 1.824 1.802 1.825 0 0 1-1.802 1.826 1.802 1.825 0 0 1-1.803-1.826 1.802 1.825 0 0 1 1.803-1.824M3.564 0A3.556 3.556 0 0 0 0 3.564v16.872A3.556 3.556 0 0 0 3.564 24h16.872A3.556 3.556 0 0 0 24 20.436V3.564A3.556 3.556 0 0 0 20.436 0Zm-.002 1.021h16.875a2.536 2.536 0 0 1 2.542 2.542v16.875a2.536 2.536 0 0 1-2.542 2.54H3.563a2.536 2.536 0 0 1-2.54-2.54V3.563a2.536 2.536 0 0 1 2.54-2.542z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/scipy.svg������������������������������������0000664�0000000�0000000�00000002400�14753064456�0024746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.697 13.496c-.784-1.072-1.982-1.519-3.694-1.88l-1.592-.375-1.201-.515c-.631-.446-1.17-1.634-1.017-2.681a3 3 0 0 1 3.386-2.526 2.96 2.96 0 0 1 1.962 1.155L15.35 9.05c1.033 1.33 2.195 1.727 3.459 1.098l.637-.27a.22.22 0 0 1 .278.087l.127.19a.3.3 0 0 0 .156.131.33.33 0 0 0 .33-.058l1.467-1.384c.257-.22.182-.422.182-.422l-.354-.806s-.097-.193-.431-.149l-1.968.181a.327.327 0 0 0-.27.411l.071.227c.014.047.014.1-.005.148a.22.22 0 0 1-.124.125l-.556.235c-.582.341-1.244.123-1.686-.417l-.505-.67-1.438-1.91a4.42 4.42 0 0 0-2.929-1.72C9.355 3.733 7.095 5.42 6.741 7.84c-.179 1.22.187 2.375.855 3.302.485.674 1.373 1.06 1.854 1.18l1.262.36 1.208.277c.166.04.634.155.91.255.256.092.845.31 1.324.701.572.582.875 1.413.746 2.284a2.744 2.744 0 0 1-4.897 1.255l-1.726-2.292a2.3 2.3 0 0 0-1.514-.89 2.3 2.3 0 0 0-1.708.439l-3.632 2.71A11 11 0 0 1 0 12C0 5.798 5.133.768 11.465.768c4.715 0 8.761 2.788 10.523 6.77l.581-.27.393-1.072.411.144-.353.96.98.337-.148.402-1.095-.382-.603.277c.5 1.262.778 2.632.778 4.066 0 6.203-5.135 11.232-11.467 11.232a11.53 11.53 0 0 1-9.26-4.61l3.721-2.788a.855.855 0 0 1 1.163.19l1.826 2.455a4.19 4.19 0 0 0 2.673 1.502c2.302.322 4.439-1.273 4.773-3.563a4.14 4.14 0 0 0-.664-2.922"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/scopus.svg�����������������������������������0000664�0000000�0000000�00000001357�14753064456�0025145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m24 19.059-.14-1.777c-1.426.772-2.945 1.076-4.465 1.076-3.319 0-5.96-2.782-5.96-6.475 0-3.903 2.595-6.31 5.633-6.31 1.917 0 3.39.303 4.792 1.075L24 4.895c-1.286-.608-2.337-.889-4.698-.889-4.534 0-7.97 3.53-7.97 8.017 0 5.12 4.09 7.924 7.9 7.924 1.916 0 3.506-.257 4.768-.888m-14.954-3.46c0-2.22-1.964-3.225-3.857-4.347C3.716 10.364 2.15 9.756 2.15 8.12c0-1.215.889-2.548 2.642-2.548 1.519 0 2.57.234 3.903 1.029l.117-1.847c-1.239-.514-2.127-.748-4.137-.748C1.8 4.006.047 5.876.047 8.26s2.103 3.413 4.02 4.581c1.426.865 2.922 1.45 2.922 2.992 0 1.496-1.333 2.571-2.922 2.571-1.566 0-2.594-.35-3.786-1.075L0 19.176c1.215.56 2.454.818 4.16.818 2.385 0 4.885-1.473 4.885-4.395z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/scpfoundation.svg����������������������������0000664�0000000�0000000�00000011026�14753064456�0026477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.577 5.064v.555l-.045.01c-.026 0-.148.015-.272.028a7 7 0 0 0-3.146 1.14A7.1 7.1 0 0 0 6.18 8.73a7.01 7.01 0 0 0-.507 6.893c.05.103.09.19.09.195 0 0-.236.145-.528.313a35 35 0 0 0-.544.317c-.014.01.013.063.196.38a9 9 0 0 0 .22.37 26 26 0 0 0 .55-.312c.297-.173.544-.313.55-.313.003 0 .052.063.106.14a7 7 0 0 0 1.801 1.74 7.3 7.3 0 0 0 1.69.826 7 7 0 0 0 4.41 0 7.2 7.2 0 0 0 1.69-.825 7 7 0 0 0 1.816-1.764c.063-.09.117-.162.12-.162s.244.138.536.306c.292.17.539.31.548.314.013.01.064-.075.23-.362.192-.331.21-.371.195-.383-.01-.01-.255-.15-.546-.317a17 17 0 0 1-.527-.313s.036-.082.08-.174a7.03 7.03 0 0 0 .566-4.14 7.1 7.1 0 0 0-1.084-2.73 7 7 0 0 0-1.622-1.714 6.7 6.7 0 0 0-1.08-.663 6.8 6.8 0 0 0-2.378-.697l-.27-.028-.048-.01v-1.11h-.863zm0 3.102v1.25h-.492c-.285 0-.49 0-.487.01.01.032 1.428 2.775 1.432 2.775s1.42-2.743 1.434-2.774c.002-.01-.213-.01-.51-.01h-.514V6.915h.05c.151 0 .606.076.912.152a5.3 5.3 0 0 1 1.137.42 5.6 5.6 0 0 1 1.165.755c.165.136.589.567.73.742.21.26.406.545.567.828.086.152.263.52.33.69a5.74 5.74 0 0 1 .115 3.918c-.096.29-.27.703-.294.703-.013 0-1.993-1.14-2.013-1.16-.013-.011.022-.08.223-.427.13-.228.24-.418.24-.424 0-.011.007-.011-.25-.022-.102 0-.195-.01-.204-.011-.01 0-.105-.01-.215-.01s-.224-.01-.254-.012c-.03 0-.126-.01-.216-.011-.088 0-.183-.01-.21-.011s-.134-.01-.237-.012c-.104 0-.205-.01-.225-.01s-.118-.01-.22-.011-.203-.01-.224-.011-.13-.01-.243-.011-.212-.01-.22-.011c-.042-.01-.4-.018-.4-.012 0 0 .307.484.682 1.067l.843 1.31c.146.226.163.25.176.233.008-.011.124-.21.259-.443l.245-.424.032.019 1.013.584c.538.31.978.57.978.575 0 .016-.16.23-.29.39a9 9 0 0 1-.718.728 6 6 0 0 1-.76.54 8 8 0 0 1-.817.403 5.74 5.74 0 0 1-4.236 0c-.2-.08-.634-.292-.816-.403a6 6 0 0 1-.76-.54 8 8 0 0 1-.696-.7 4 4 0 0 1-.29-.383c.002 0 .443-.257.98-.567l1.01-.583.034-.021.235.407c.13.224.24.416.248.427.011.017.02.01.08-.086.036-.058.132-.21.213-.333l.267-.415c.114-.18.485-.756.583-.906l.242-.377.255-.396a1 1 0 0 0 .058-.101c0-.01-.026-.01-.083-.01-.046 0-.15.01-.23.012-.08 0-.182.01-.226.01-.088.01-.239.014-.453.023-.075 0-.172.01-.216.01s-.14.01-.216.012c-.137.01-.26.012-.45.022-.058 0-.212.01-.342.016-.13.01-.285.013-.342.016-.059 0-.153.01-.21.01-.263.014-.349.02-.349.027 0 0 .113.203.252.443l.253.437-.03.017c-.093.06-1.996 1.153-2.004 1.153-.013 0-.114-.214-.19-.406a5.8 5.8 0 0 1-.406-2.49 5.77 5.77 0 0 1 1.291-3.287c.143-.174.567-.606.732-.742.378-.313.73-.54 1.164-.756.4-.196.725-.317 1.137-.42.31-.077.733-.148.9-.15h.061zM8.531.806l-.168.964c-.088.513-.165.94-.17.947a1 1 0 0 1-.164.077 10.6 10.6 0 0 0-6.498 8.22 2 2 0 0 1-.04.215c-.02.053-.064.467-.084.825a15 15 0 0 0 0 1.134c.013.235.033.455.066.736l.024.199-.043.04-.328.303-.2.183c-.09.085-.106.1-.562.522-.198.18-.36.335-.364.34-.003 0 .132.246.299.536l1.738 3.01a200 200 0 0 0 1.446 2.484c.006 0 .091-.03.19-.066l.468-.171c.95-.348 1.182-.432 1.19-.432a.4.4 0 0 1 .075.053c.197.165.681.506 1 .704a11 11 0 0 0 1.898.926 10.64 10.64 0 0 0 4.967.593 10.7 10.7 0 0 0 2.583-.647c.106-.042.203-.078.215-.08.059-.01.404-.167.745-.34.553-.28 1.037-.58 1.545-.96l.208-.152.056.017.089.028a133 133 0 0 1 1.343.419c.015.01.077.025.14.043l.213.067a.6.6 0 0 0 .11.028c.013 0 3.486-6.017 3.482-6.027-.003-.01-.21-.182-1.076-.904l-.415-.347c-.02-.02-.02-.023.002-.18.12-.844.134-1.68.045-2.56a10.59 10.59 0 0 0-5.284-8.136 12 12 0 0 0-1.226-.6c-.05-.02-.092-.045-.094-.054s-.104-.452-.223-.983l-.222-.984c-.005-.017-.18-.018-3.489-.018h-3.48Zm6.395.55a183 183 0 0 1 .426 1.832c.008.03.02.037.213.11.425.165.93.4 1.282.597a9.97 9.97 0 0 1 5.106 7.923c.035.432.042 1.199.012 1.558-.028.345-.081.75-.143 1.093l-.013.073.048.046a6 6 0 0 0 .255.219c.006.01.062.053.123.102l.214.177.41.344c.413.345.384.318.37.34-.004.01-.66 1.142-1.452 2.516-.867 1.503-1.45 2.5-1.458 2.5-.01 0-.095-.024-.191-.053l-.213-.064a45 45 0 0 1-.857-.262c-.012-.01-.043-.015-.07-.022-.027-.01-.058-.016-.07-.022-.012-.01-.055-.02-.097-.03l-.207-.062c-.13-.04-.132-.04-.16-.02l-.18.145c-.261.21-.743.56-.773.56a1 1 0 0 0-.106.062 10.05 10.05 0 0 1-4.744 1.559 16 16 0 0 1-1.284 0c-1.405-.105-2.64-.443-3.845-1.05a10 10 0 0 1-1.764-1.131.6.6 0 0 0-.088-.066 1 1 0 0 1-.117-.095l-.104-.09-.05.01a5 5 0 0 0-.466.164l-.528.195-.529.193a2 2 0 0 1-.188.066c-.006 0-.666-1.134-1.466-2.52l-1.455-2.52.037-.031.214-.202.248-.233.173-.164c.056-.054.128-.12.16-.15l.1-.09.41-.385.072-.07-.015-.077a8 8 0 0 1-.118-1c0-.087-.006-.32-.01-.518A9.97 9.97 0 0 1 6.46 4.329a9.9 9.9 0 0 1 2.178-1.1c.124-.044.13-.048.138-.082.011-.043.081-.437.214-1.202l.103-.586.005-.024h2.91c2.765 0 2.912 0 2.918.018z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/scrapbox.svg���������������������������������0000664�0000000�0000000�00000001320�14753064456�0025440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m0 3c.194 0 .388.04.535.117l4.93 2.592c.296.156.295.406 0 .562L12.32 8.977c-.177.092-.177.244 0 .337l5.145 2.706c.183.096.342.286.44.498l-4.987 2.623a.53.53 0 0 0-.281.476v.002a.54.54 0 0 0 .281.479l4.836 2.545a.95.95 0 0 1-.29.248l-4.929 2.591c-.296.156-.774.156-1.07 0l-4.93-2.591c-.296-.156-.295-.407 0-.563l5.145-2.705c.176-.092.177-.245 0-.338L6.535 12.58a1 1 0 0 1-.373-.367l4.942-2.57a.52.52 0 0 0 .279-.26.55.55 0 0 0 0-.48.52.52 0 0 0-.28-.258l-4.939-2.57a1 1 0 0 1 .371-.366l4.93-2.592A1.2 1.2 0 0 1 12 3M6 7.176l3.781 1.967L6 11.109zm12 6.48v3.926l-3.732-1.963z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/scrapy.svg�����������������������������������0000664�0000000�0000000�00000001461�14753064456�0025126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12c0 6.628 5.373 12 12 12 6.628 0 12-5.372 12-12 0-6.627-5.372-12-12-12m0 1.113c6.003 0 10.887 4.884 10.887 10.887S18.003 22.887 12 22.887 1.113 18.003 1.113 12 5.997 1.113 12 1.113m7.03 5.201c-.536-.002-1.28.304-2.255 1.098a537 537 0 0 1-3.814 3.045l1.025 1.3c4.694-2.558 6.19-3.167 6.116-4.294-.042-.634-.384-1.146-1.073-1.149Zm-.507.752c.147 0 .266.106.266.239 0 .132-.119.238-.266.238-.146 0-.265-.106-.265-.238 0-.171.162-.239.265-.239m-1.58 1.489c0 .131-.118.238-.265.238s-.264-.107-.264-.238c0-.128.11-.234.24-.24s.29.077.29.24zm-2.109 1.01c.147 0 .266.106.266.238s-.12.238-.266.238-.266-.106-.266-.238c0-.148.139-.239.266-.239zm-2.445.972c-1.502.225-5.807.992-8.01 2.672l3.574 5.387s4.706-2.932 5.863-6.244z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/scratch.svg����������������������������������0000664�0000000�0000000�00000003620�14753064456�0025253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.406 11.312c-.78-.123-1.198-.654-.99-2.295l.023-.198c.175-1.426.321-1.743.996-1.706.198.013.426.14.654.33.211.247.68.568.945 1.204.19.466.254.77.281 1.098l.042.402v-.002a.68.68 0 0 0 1.342-.007c.008-.044.176-4.365.176-4.436 0-.38-.302-.69-.68-.696a.685.685 0 0 0-.682.688c0 .009-.001.605-.014 1.206-.536-.592-1.223-1.123-1.994-1.17-2.058-.11-2.283 1.811-2.419 2.918l-.02.196c-.278 2.189.441 3.569 2.13 3.837 1.838.293 3.063.72 3.074 1.868.007.446-.224.903-.627 1.254a2.16 2.16 0 0 1-1.749.507 3 3 0 0 1-.539-.141c-.24-.136-.847-.51-1.154-.942-.26-.364-.35-.937-.378-1.3.004-.163.005-.27.005-.283a.69.69 0 0 0-.669-.703.69.69 0 0 0-.696.682c0 .013-.017 1.367-.066 2.183-.07 1.313 0 2.426 0 2.474.028.382.35.67.727.644a.68.68 0 0 0 .635-.733c0-.006-.033-.545-.029-1.29a5.2 5.2 0 0 0 1.938.773 3.45 3.45 0 0 0 2.856-.82c.713-.619 1.122-1.464 1.11-2.32-.024-2.555-2.865-3.004-4.228-3.222M14.174 0a5.5 5.5 0 0 0-2.724.723h-.112c-2.637 0-4.937 1.392-6.15 3.728-.728 1.393-.9 2.75-.999 3.579-.012.089-.018.17-.028.262-.12.974-.123 1.904-.01 2.772a5.8 5.8 0 0 0-.625 2.529v.016a59 59 0 0 1-.057 1.95 30 30 0 0 0-.008 2.94l.013.209C3.698 21.676 6.159 24 9.083 24a5.5 5.5 0 0 0 3.463-1.21 8.36 8.36 0 0 0 5.195-2.08c1.826-1.587 2.859-3.845 2.83-6.19-.013-1.362-.346-2.638-.978-3.763.117-1.273.221-4.996.221-5.03 0-3.103-2.484-5.67-5.539-5.727zm.056 2.675c1.642.03 2.978 1.412 2.978 3.081 0 .038-.145 4.497-.215 4.883a3.2 3.2 0 0 1-.203.69c.756.89 1.165 2 1.175 3.256.021 1.555-.681 3.076-1.926 4.16a5.76 5.76 0 0 1-3.8 1.444 6 6 0 0 1-.718-.048 3 3 0 0 1-.172.215 2.97 2.97 0 0 1-2.264 1.038c-1.573 0-2.897-1.255-3.013-2.856l-.008-.122a27 27 0 0 1 .005-2.662c.039-.679.06-1.831.062-2.08a3.12 3.12 0 0 1 .783-2.025c-.237-.835-.312-1.836-.167-3.02l.024-.212c.083-.695.208-1.72.72-2.7.765-1.473 2.168-2.318 3.848-2.318a4.6 4.6 0 0 1 .824.07c.546-.5 1.27-.81 2.067-.794"/></svg>����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/screencastify.svg����������������������������0000664�0000000�0000000�00000000643�14753064456�0026470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.898 2.347c-.472.008-.914.38-.914.891v4.278H1.1c-.541 0-1.1.437-1.1.978v7.02c0 .54.559.907 1.1.907h5.884V7.533h6.408c.542 0 .926.437.926.979v1.623l3.667-2.095v7.927l-3.667-2.095v1.676c0 .541-.384.908-.926.908H6.984v4.313c0 .68.786 1.1 1.38.768l9.638-5.535 5.553-3.195c.593-.402.593-1.257 0-1.59l-5.553-3.194L8.364 2.47a.9.9 0 0 0-.466-.123"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/scribd.svg�����������������������������������0000664�0000000�0000000�00000001650�14753064456�0025073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.635 0C6.633 0 3.139 3.067 3.139 7.459v.06c.008.085.004.169.004.254 0 1.725.438 3.09 1.253 4.057q1.223 1.45 3.21 1.451 1.662 0 2.617-1.008a3.38 3.38 0 0 0 .955-2.412q0-1.44-.926-2.263-.927-.823-1.979-.823a4.5 4.5 0 0 0-.859.112q-.516.129-.687.129-.765 0-.764-.924 0-1.552 1.547-2.67.454-.326.927-.568c.907-.411 1.988-.637 3.198-.637 2.33 0 4.423.61 6.238 1.816l-1.004 1.602 1.893 1.248 2.205-3.303-.799-.644C17.75.987 14.878 0 11.635 0m5.683 10.682q-1.662 0-2.617 1.007a3.38 3.38 0 0 0-.955 2.413q0 1.44.928 2.263.926.823 1.976.823.325 0 .86-.112.515-.129.687-.129.765 0 .764.924 0 .332-.072.645c-.849 2.079-3.022 3.267-6.166 3.267-2.671 0-5.233-.848-7.319-2.408l1.233-1.52-1.785-1.39L2.25 19.63l.783.703C5.673 22.698 9.114 24 12.723 24q.602-.001 1.172-.05c2.077-.094 4.15-.87 5.61-2.188q2.245-2.026 2.245-5.592 0-2.587-1.223-4.037-1.221-1.452-3.209-1.451"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/scrimba.svg����������������������������������0000664�0000000�0000000�00000000611�14753064456�0025241�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 6.222a2.22 2.22 0 0 1-2.222 2.222h-8.89a2.222 2.222 0 0 1 0-4.444h8.89C23.005 4 24 4.995 24 6.222m-7.333 9.334h-8.89a2.222 2.222 0 0 0 0 4.444h8.89a2.222 2.222 0 0 0 0-4.444m0-5.778H13.11a2.222 2.222 0 0 0 0 4.444h3.556a2.222 2.222 0 0 0 0-4.444zM2.222 15.556a2.222 2.222 0 1 0 0 4.444 2.222 2.222 0 0 0 0-4.444"/></svg>�����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/scrollreveal.svg�����������������������������0000664�0000000�0000000�00000001756�14753064456�0026331�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.714 2.857A1.71 1.71 0 0 0 0 4.571v6.858c0 .95.765 1.714 1.714 1.714a1.71 1.71 0 0 0 1.715-1.714V4.57a1.71 1.71 0 0 0-1.715-1.714zm6.857 0a1.71 1.71 0 0 0-1.714 1.714v1.143c0 .95.765 1.715 1.714 1.715a1.71 1.71 0 0 0 1.715-1.715V4.571A1.71 1.71 0 0 0 8.57 2.857zm6.858 0a1.71 1.71 0 0 0-1.715 1.714V19.43c0 .95.765 1.714 1.715 1.714a1.71 1.71 0 0 0 1.714-1.714V4.57a1.71 1.71 0 0 0-1.714-1.714zm6.857 0a1.71 1.71 0 0 0-1.715 1.714v6.858c0 .95.765 1.714 1.715 1.714A1.71 1.71 0 0 0 24 11.429V4.57a1.71 1.71 0 0 0-1.714-1.714zm-13.715 8a1.71 1.71 0 0 0-1.714 1.714v6.858c0 .95.765 1.714 1.714 1.714a1.71 1.71 0 0 0 1.715-1.714V12.57a1.71 1.71 0 0 0-1.715-1.714zm-6.857 5.714A1.71 1.71 0 0 0 0 18.286v1.143c0 .95.765 1.714 1.714 1.714a1.71 1.71 0 0 0 1.715-1.714v-1.143a1.71 1.71 0 0 0-1.715-1.715m20.572 0a1.71 1.71 0 0 0-1.715 1.715v1.143c0 .95.765 1.714 1.715 1.714A1.71 1.71 0 0 0 24 19.429v-1.143a1.71 1.71 0 0 0-1.714-1.715"/></svg>������������������mkdocs-material-9.6.4/material/templates/.icons/simple/scrumalliance.svg����������������������������0000664�0000000�0000000�00000014147�14753064456�0026454�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.611 7.684a.3.3 0 1 0 .34.254.3.3 0 0 0-.34-.254m.88.002a.325.325 0 0 0-.296.324.325.325 0 0 0 .327.326.325.325 0 0 0 .324-.326.325.325 0 0 0-.325-.324zm-1.665.392a.275.275 0 0 0-.232.31c.022.15.16.253.31.231a.27.27 0 0 0 .23-.309.273.273 0 0 0-.308-.232m2.086.375a.35.35 0 0 0 .35.35.35.35 0 0 0 .347-.35.35.35 0 0 0-.348-.347.35.35 0 0 0-.349.347m3.965.027c-.613 0-1.17.34-1.17.989 0 .999 1.344.734 1.344 1.435 0 .36-.287.611-.692.611-.296 0-.626-.098-.574-.392l.047-.262h-.4l-.061.332c-.096.564.536.744.932.744.643 0 1.195-.397 1.195-1.06 0-1.037-1.344-.768-1.344-1.436 0-.336.297-.545.666-.545.218 0 .513.072.469.3l-.04.232h.401l.07-.362c.083-.43-.482-.586-.843-.586m-6.541.287a.245.245 0 0 0-.207.278.244.244 0 0 0 .277.205.243.243 0 0 0 .207-.275.246.246 0 0 0-.277-.207m3.326.127a.367.367 0 0 0-.31.416.367.367 0 0 0 .415.311.367.367 0 0 0 .311-.416.367.367 0 0 0-.416-.31m5.664.534c-.778 0-1.4.68-1.4 1.457 0 .625.403 1.052 1.047 1.052.578 0 .914-.355.914-.355l-.121-.355s-.315.312-.754.312c-.41 0-.657-.27-.657-.687 0-.554.448-1.028.926-1.028.209 0 .452.085.422.28l-.03.162h.374l.052-.276c.07-.426-.455-.562-.773-.562m7.625 0c-.413 0-.768.369-.873.582h-.01c.03-.085.067-.272.067-.328 0-.128-.066-.198-.24-.198h-.497l-.064.356h.273c.07 0 .087.036.078.097l-.347 1.944h.422l.191-1.07c.087-.474.405-.967.826-.967.244 0 .315.138.315.332 0 .08-.019.174-.032.27l-.255 1.435h.42l.197-1.096c.078-.46.391-.941.8-.941.253 0 .32.137.32.345 0 .228-.185 1.028-.185 1.25 0 .408.287.45.483.45.104 0 .187-.008.187-.008l.065-.356s-.045.01-.106.01c-.109 0-.195-.03-.195-.209 0-.19.191-.981.191-1.266 0-.407-.229-.632-.603-.632-.366 0-.696.255-.865.582h-.01c-.022-.38-.2-.582-.553-.582m-4.963.027c-.348 0-.643.298-.79.639h-.01c.034-.114.077-.345.077-.407 0-.137-.064-.203-.234-.203h-.496l-.07.354h.275c.074 0 .087.048.078.105l-.343 1.938h.421l.157-.89c.095-.55.46-1.087.865-1.087.056 0 .096.011.117.016l.084-.455a1 1 0 0 0-.13-.01m.492.03-.066.353h.365l-.203 1.166a1.6 1.6 0 0 0-.031.303c0 .45.282.63.617.63.461 0 .767-.328.91-.574h.008c-.03.36.144.526.44.526a3 3 0 0 0 .2-.008l.065-.356s-.04.01-.105.01c-.109 0-.196-.038-.196-.209a1 1 0 0 1 .014-.146l.305-1.696h-.787l-.067.354h.365l-.129.734c-.078.455-.435.947-.875.947-.247 0-.33-.127-.33-.336 0-.075.014-.174.036-.273l.252-1.426zM.193 9.57a.226.226 0 0 0-.191.256.23.23 0 0 0 .258.192.225.225 0 0 0 .191-.256.23.23 0 0 0-.258-.192m.219.778a.19.19 0 0 0-.162.216.193.193 0 0 0 .219.162.19.19 0 0 0 .162-.216.194.194 0 0 0-.219-.162m.494.648a.166.166 0 0 0-.14.188.164.164 0 0 0 .187.138.166.166 0 0 0 .14-.187.164.164 0 0 0-.187-.139m2.487.22a.401.401 0 1 0 0 .803.403.403 0 0 0 .402-.402c0-.221-.18-.4-.402-.4m-1.811.077a.157.157 0 0 0-.145.156.157.157 0 0 0 .159.158.157.157 0 0 0 .156-.158.157.157 0 0 0-.156-.156zm.672.092a.436.436 0 0 0-.418.435.436.436 0 1 0 .435-.435zm2.205.175a.366.366 0 0 0-.365.368c0 .202.163.367.365.367a.367.367 0 0 0 .367-.367.37.37 0 0 0-.367-.368m-3.065.51a.466.466 0 0 0-.466.467c0 .258.208.467.466.467a.466.466 0 0 0 .467-.467.466.466 0 0 0-.467-.467m3.858.323a.32.32 0 0 0-.318.32c0 .177.14.32.318.32a.32.32 0 0 0 .32-.32.32.32 0 0 0-.32-.32m2.812.482L6.49 15.93h-.308l-.05.275h.98l.052-.275h-.348l.44-.858h1.191l.135.858h-.354l-.046.275h.964l.05-.275h-.31l-.484-3.055zm1.684 0-.049.266h.393l-.44 2.466a1 1 0 0 0-.021.18c0 .374.256.432.426.432.07 0 .152-.014.152-.014l.047-.275s-.034.01-.108.01c-.104 0-.209-.015-.209-.214 0-.037.01-.1.018-.156l.478-2.695zm1.162 0-.049.266h.39l-.437 2.466a1 1 0 0 0-.023.18c0 .374.258.432.428.432.07 0 .152-.014.152-.014l.047-.275s-.034.01-.108.01c-.104 0-.209-.015-.209-.214 0-.037.01-.1.018-.156l.477-2.695zm1.639 0-.074.402h.336l.074-.402zm-11.592.299a.493.493 0 0 0-.492.492c0 .272.22.49.492.49a.49.49 0 0 0 .492-.49.493.493 0 0 0-.492-.492m22.576.039c-.256 0-.463.23-.463.518 0 .287.207.517.463.517.26 0 .467-.23.467-.517 0-.289-.208-.518-.467-.518m-15.355.004h.008s0 .104.017.213l.21 1.363H7.39l.703-1.363c.052-.11.084-.213.084-.213m15.355.092c.21 0 .371.184.371.421s-.161.422-.37.422c-.208 0-.368-.185-.368-.422s.16-.422.367-.422m-17.945.097a.297.297 0 0 0-.297.297.298.298 0 0 0 .596 0 .3.3 0 0 0-.3-.297m17.787.055v.535h.092v-.207h.08l.092.207h.101l-.094-.197c-.011-.024-.017-.03-.017-.03v-.003c.04-.012.09-.059.09-.141 0-.1-.062-.164-.155-.164zm.092.076h.078c.048 0 .08.033.08.088 0 .057-.032.09-.08.09h-.078zm-9.16.229c-.457 0-.795.246-.795.246l.09.261s.297-.222.658-.222c.335 0 .447.174.447.426 0 .085-.035.27-.035.27h-.143c-.6 0-1.484.155-1.484.917 0 .384.288.598.64.598.518 0 .81-.512.805-.512h.008c-.022.317.14.465.397.465.078 0 .164-.01.164-.01l.049-.265s-.04.01-.114.01c-.1 0-.205-.025-.205-.223 0-.2.219-1.018.219-1.297 0-.46-.284-.664-.701-.664m2.92 0c-.54 0-.888.427-.975.63h-.01c.04-.099.074-.327.074-.379 0-.123-.055-.195-.22-.195h-.418l-.05.266h.298c.07 0 .087.047.078.103l-.361 2.014h.295l.197-1.094c.095-.558.53-1.043 1-1.043.243 0 .379.129.379.399 0 .265-.205 1.127-.205 1.34 0 .36.26.408.418.408.073 0 .16-.01.16-.01l.049-.265s-.04.01-.11.01c-.104 0-.209-.02-.209-.223 0-.19.205-1.057.205-1.35 0-.393-.213-.611-.595-.611m2.53 0c-.726 0-1.378.649-1.378 1.459 0 .639.408 1.037 1.004 1.037.557 0 .888-.356.888-.356l-.095-.265s-.313.332-.77.332c-.426 0-.722-.29-.722-.768 0-.649.53-1.15 1.039-1.15.213 0 .51.09.474.312l-.031.176h.275l.043-.252c.066-.388-.43-.525-.726-.525m2.311 0c-.74 0-1.279.715-1.279 1.492 0 .601.392 1.004.992 1.004.461 0 .822-.313.822-.313l-.091-.265s-.323.289-.719.289c-.461 0-.7-.327-.7-.739 0-.118.022-.218.022-.218h1.68s.06-.204.06-.389c0-.497-.247-.861-.787-.861m-10.058.056-.047.266h.39l-.277 1.535c-.009.066-.023.126-.023.174 0 .374.262.418.427.418.061 0 .153-.01.153-.01l.047-.266s-.036.01-.11.01c-.104 0-.207-.024-.207-.222a1 1 0 0 1 .012-.137l.322-1.768zm10.045.213c.287 0 .5.186.5.565 0 .094-.018.18-.018.18h-1.369c.157-.484.526-.745.887-.745M5.45 14.46a.25.25 0 1 0 0 .502.25.25 0 1 0 0-.502m9.051.53h.127l-.022.103c-.095.412-.439.904-.847.904-.292 0-.414-.175-.414-.379 0-.587.79-.629 1.156-.629m-9.568.404a.22.22 0 0 0-.22.216.22.22 0 0 0 .22.22c.12 0 .216-.1.216-.22a.216.216 0 0 0-.216-.216m-.809.513a.21.21 0 0 0-.207.207c0 .114.093.205.207.205a.204.204 0 0 0 .205-.205.206.206 0 0 0-.205-.207"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/scrutinizerci.svg����������������������������0000664�0000000�0000000�00000001764�14753064456�0026530�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.862 0 6.879.06a6.139 6.127 0 0 0-3.744 2.508 6.36 6.36 0 0 0-1.357 2.64l-.12.553-.12.857c-.06.8-.06 1.351.12 1.471h5.276c.06 0-.186-.246-.186-.672 0-.738.252-.924.552-1.23.552-.426 2.945-.12 4.728-.246 2.448 0 4.602-.06 4.848-.12 2.7-.427 5.03-2.388 5.522-4.536.12-.547.12-1.105.06-1.165C22.398 0 21.418 0 14.86 0zM9.194 9.007c-3.758-.015-7.47 0-7.53.06-.126.126-.06.798.06 1.35a5.64 5.64 0 0 0 1.843 2.761 7.55 7.55 0 0 0 3.312 1.59c.366.126 1.044.126 4.597.126 4.236 0 4.915.06 5.22.24a1.842 1.836 0 0 1 .372.372c.18.24.18.307.18.98 0 .671-.065.731-.185 1.043a1.5 1.5 0 0 1-.426.366c-.186.12-.307.12-4.357.18-4.67 0-5.155 0-6.32.431a6.445 6.433 0 0 0-2.46 1.35c-1.163 1.04-1.841 2.203-1.961 3.428l.06.611a283.022 282.613 0 0 0 15.404 0l.492-.12a4.543 4.537 0 0 0 .737-.245l.367-.18a7.735 7.723 0 0 0 3.499-4.297 8.407 8.395 0 0 0-.373-6.06 8.527 8.521 0 0 0-2.328-2.88 6.937 6.925 0 0 0-2.394-.985c-.246-.06-4.051-.106-7.81-.12z"/></svg>������������mkdocs-material-9.6.4/material/templates/.icons/simple/scylladb.svg���������������������������������0000664�0000000�0000000�00000007727�14753064456�0025435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.992 2.435C17.229.868 14.75 0 12.004 0 9.259 0 6.779.868 5.017 2.435 3.246 4.012 2.272 6.244 2.272 8.706c0 2.373 2.382 13.567 2.479 14.045.169.735.815 1.24 1.541 1.24.089 0 .168-.009.257-.018.151-.026.292-.07.434-.141.301.133.638.186.965.124.248-.045.479-.151.673-.31a1.58 1.58 0 0 0 1.63.203c.23-.106.425-.265.576-.451a1.6 1.6 0 0 0 1.231.602 1.6 1.6 0 0 0 .823-.239 1.7 1.7 0 0 0 .408-.354c.248.301.611.513 1 .566.39.062.797-.035 1.116-.256.036-.018.062-.045.089-.071.186.15.407.257.637.301q.253.053.505.026c.151-.017.292-.053.434-.115.124.053.248.089.381.115a1.58 1.58 0 0 0 1.798-1.222c.097-.478 2.479-11.663 2.479-14.045.009-2.462-.965-4.685-2.736-6.271m-.186 20.219c-.124.558-.655.93-1.222.868a1.6 1.6 0 0 0 .443-.833l.07-.425.275-1.691c.088-.567.177-1.134.248-1.701a.156.156 0 0 0-.115-.168.16.16 0 0 0-.186.115c-.124.558-.239 1.125-.354 1.683l-.328 1.683-.08.416c-.026.115-.071.23-.124.327a1 1 0 0 1-.221.275 1 1 0 0 1-.292.195 1.5 1.5 0 0 1-.337.097 1.14 1.14 0 0 1-.77-.195c.106-.159.194-.336.239-.531.017-.044.017-.097.026-.142 0-.026.009-.053.009-.071l.009-.062.08-.743.097-.992c.062-.665.124-1.329.168-1.993a.147.147 0 0 0-.133-.159.164.164 0 0 0-.177.132c-.097.656-.186 1.32-.274 1.975l-.186 1.488c-.018.16-.036.346-.071.461a1.1 1.1 0 0 1-.469.655 1.1 1.1 0 0 1-.78.168 1.1 1.1 0 0 1-.814-.566c.026-.071.044-.142.061-.204.036-.142.036-.292.036-.408l.009-.735c.009-.487.017-.983.017-1.47a40 40 0 0 0 0-1.47c0-.079-.062-.15-.141-.15a.145.145 0 0 0-.16.141c-.026.487-.062.983-.079 1.47-.027.488-.045.983-.071 1.471l-.036.735c0 .062 0 .124-.008.177 0 .053-.009.097-.018.15-.027.098-.053.195-.106.284a1.11 1.11 0 0 1-.992.593.9.9 0 0 1-.301-.044c-.098-.027-.186-.071-.275-.115a1.15 1.15 0 0 1-.416-.434 1 1 0 0 1-.106-.284c-.027-.097-.027-.195-.036-.327l-.035-.735c-.018-.488-.045-.983-.071-1.471l-.08-1.47a.154.154 0 0 0-.15-.141.15.15 0 0 0-.151.15v1.47c0 .487.009.983.018 1.47l.009.735c0 .116.008.266.035.408.018.071.035.142.062.212a1.17 1.17 0 0 1-.523.47 1.11 1.11 0 0 1-1.337-.346 1 1 0 0 1-.177-.327 1.4 1.4 0 0 1-.044-.186c-.009-.027-.009-.071-.018-.107l-.018-.115-.23-1.797c-.08-.603-.159-1.205-.257-1.798-.009-.08-.079-.133-.159-.133-.089.009-.151.08-.142.168.044.602.098 1.205.151 1.807l.177 1.806.009.116c0 .035.009.07.017.124.009.088.036.177.062.256.045.151.124.293.213.426a1.13 1.13 0 0 1-1.125.097 1.15 1.15 0 0 1-.629-.806l-.079-.416-.328-1.674c-.115-.558-.23-1.116-.354-1.674-.018-.08-.089-.133-.168-.115-.08.009-.142.089-.133.177.079.567.159 1.125.248 1.692l.274 1.682.071.425c.027.169.089.328.16.47.07.133.159.257.274.363-.018 0-.027.009-.044.009a1.126 1.126 0 0 1-1.276-.859c-.026-.115-2.47-11.619-2.47-13.949 0-2.338.921-4.437 2.586-5.933C6.956 1.284 9.33.461 11.96.461s5.004.823 6.678 2.32c1.673 1.488 2.586 3.595 2.586 5.933.053 2.33-2.392 13.834-2.418 13.94m-4.517-11.451a1.32 1.32 0 0 0-.726-.407h-.035a.235.235 0 0 0-.248.212.235.235 0 0 0 .212.248.8.8 0 0 1 .354.106 11.2 11.2 0 0 1-3.701 1.621 11.2 11.2 0 0 1-4.198.186.193.193 0 1 0-.062.381c.212.035.434.062.646.08 0 .008 0 .017.009.026.186.558.664 1.302 1.284 1.302a.8.8 0 0 0 .195-.027c.23-.053.611-.292.611-1.248 0-.018-.009-.027-.009-.045a12 12 0 0 0 1.612-.248c.053-.008.106-.026.151-.035.124.496.31 1.116.93 1.116.256 0 .531-.142.744-.381.177-.204.46-.664.371-1.435a11.5 11.5 0 0 0 1.745-.974.8.8 0 0 1 .115.292c.018.08.089.133.169.124a.15.15 0 0 0 .141-.168 1.2 1.2 0 0 0-.31-.726m-6.11 2.489c0 .442-.107.761-.266.797-.346.088-.7-.426-.868-.815.381.018.753.018 1.134 0 .008.009 0 .018 0 .018m3.551.106c-.115.133-.266.221-.39.221-.212 0-.336-.186-.487-.77.39-.115.779-.248 1.151-.399.018.381-.079.718-.274.948m-2.878-1.515a4.471 4.471 0 1 1 4.472-4.472 4.476 4.476 0 0 1-4.472 4.472m0-8.475A4.014 4.014 0 0 0 4.84 7.82a4.014 4.014 0 0 0 4.012 4.012 4.013 4.013 0 0 0 4.011-4.012 4.02 4.02 0 0 0-4.011-4.012m.876 1.231c-.735.151-.876 1.754-.442 2.196.292.293.876.381.876.585s-.584.292-.876.584c-.443.443-.293 2.046.442 2.197.868.177 2.197-.877 2.197-2.781s-1.329-2.958-2.197-2.781"/></svg>�����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/seagate.svg����������������������������������0000664�0000000�0000000�00000003562�14753064456�0025242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.228 22.684-.776-2.955c.273-.132.498-.236.796-.384 1.239-.528 2.436-1.132 3.55-1.892 1.395-.952 2.698-2.015 3.833-3.268.89-.983 1.632-2.068 2.056-3.342.282-.848.42-1.715.296-2.609a4.75 4.75 0 0 0-.796-2.037 5.14 5.14 0 0 0-1.974-1.72c-1.007-.51-2.08-.697-3.198-.664-.99.03-1.945.248-2.874.587-1.71.625-3.278 1.518-4.783 2.528-.44.295-.842.636-1.192 1.038-.19.218-.336.46-.398.749-.104.487.175.858.672.881.348.017.658-.118.962-.262.946-.446 1.8-1.049 2.683-1.6.725-.452 1.458-.894 2.255-1.211.786-.313 1.597-.485 2.447-.343.925.155 1.67.592 2.122 1.442.317.595.342 1.227.176 1.87-.19.734-.615 1.33-1.117 1.877a10.2 10.2 0 0 1-2.372 1.899c-.924.542-1.84 1.1-2.788 1.598-1.109.583-2.29.996-3.493 1.345-1.01.293-2.038.426-3.086.333-.88-.078-1.707-.334-2.437-.842a3.93 3.93 0 0 1-1.44-1.82c-.455-1.16-.431-2.343-.143-3.534C.534 9 1.217 7.838 2.059 6.757c.64-.821 1.376-1.547 2.17-2.215a24 24 0 0 1 3.596-2.524c.433-.246.873-.478 1.285-.702l.421.866c-.38.205-.757.401-1.127.608a20.1 20.1 0 0 0-4.36 3.241 9.2 9.2 0 0 0-1.757 2.367c-.474.928-.729 1.91-.617 2.958.123 1.147.661 2.029 1.718 2.558.63.316 1.303.41 1.997.395.956-.02 1.858-.292 2.748-.611 1.328-.475 2.563-1.137 3.765-1.864.706-.426 1.41-.86 2.007-1.436.315-.305.63-.615.791-1.038.286-.754-.12-1.406-.928-1.483-.44-.041-.838.105-1.226.284-1.026.475-1.949 1.125-2.905 1.72-.73.453-1.469.894-2.273 1.208-.557.218-1.132.354-1.736.284-1.037-.118-1.685-.937-1.572-1.975.088-.816.485-1.481 1.022-2.075.593-.657 1.285-1.195 2.028-1.67 1.141-.729 2.3-1.428 3.539-1.983 1.436-.644 2.91-1.154 4.49-1.293 1.144-.101 2.275-.037 3.391.253a7.8 7.8 0 0 1 2.715 1.28A7 7 0 0 1 23.2 6.138c.446.796.7 1.65.775 2.559a7.5 7.5 0 0 1-.31 2.808 10.5 10.5 0 0 1-1.127 2.537 15.3 15.3 0 0 1-2.449 3.008c-.964.914-1.937 1.815-3.034 2.572-1.427.984-2.913 1.86-4.52 2.519-.43.176-.857.356-1.307.543"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/searxng.svg����������������������������������0000664�0000000�0000000�00000001000�14753064456�0025261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.716 17.261 6.873 6.582L24 20.282l-6.824-6.536a9.1 9.1 0 0 0 1.143-4.43c0-5.055-4.105-9.159-9.16-9.159S0 4.261 0 9.316s4.104 9.159 9.159 9.159a9.1 9.1 0 0 0 4.557-1.214M9.159 2.773a6.546 6.546 0 0 1 6.543 6.543 6.545 6.545 0 0 1-6.543 6.542 6.545 6.545 0 0 1-6.542-6.542 6.545 6.545 0 0 1 6.542-6.543M7.26 5.713a4.065 4.065 0 0 1 4.744.747 4.06 4.06 0 0 1 .707 4.749l1.157.611a5.38 5.38 0 0 0-.935-6.282 5.38 5.38 0 0 0-6.274-.987z"/></svg>mkdocs-material-9.6.4/material/templates/.icons/simple/seat.svg�������������������������������������0000664�0000000�0000000�00000001323�14753064456�0024556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m0 10.325 23.98 4.46c-.021.657-.062 2.712-.103 3.903-.041 1.418-.35 2.281-.925 2.815-.801.72-1.747.884-4.007 1.007-5.219.288-10.54.247-17.219-.226-.699-.04-.966-.185-1.089-.267-.288-.205-.329-.431-.411-1.603-.062-.801-.164-3.123-.205-3.904 3.102.206 7.849.37 11.712.37.966 0 3.493.02 4.171.02.534 0 1.233-.143 1.582-.698L0 13.222zm.02-1.253c.021-.76.062-2.65.103-3.76.041-1.418.35-2.281.925-2.815.801-.72 1.747-.884 4.007-1.007 5.219-.288 10.54-.247 17.219.226.699.04.966.185 1.089.267.288.205.329.431.411 1.603.041.678.144 2.486.185 3.472-2.301-.123-6.206-.308-9.596-.35-3.39-.04-6.452.021-6.822.063-.74.102-1.089.452-1.192.595L24 10.634v2.568Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/seatgeek.svg���������������������������������0000664�0000000�0000000�00000003157�14753064456�0025421�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.866 11.277h-.177l-.703-.001v-.001c-1.337-.002-3.426-.009-3.845-.011v-7.37c2.111.089 4.044.121 4.044.121l.304 1.556c.001 0-.745.007-2.361-.03v1.394l1.486.022v1.31L9.128 8.25v1.452c.832.008 1.595.013 2.411.014l1.99-5.615c.3-.008 1.573-.041 1.886-.054l2.637 7.225c-.661.003-1.331-.009-1.993-.006l-.448-1.302q-1.14.012-2.281.016l-.445 1.293c-.355 0-.685 0-1.019.004m2.607-4.625-.693 2.015q.691-.006 1.38-.016zm4.389-1.197q-1.079.066-2.157.112l.307-1.594q2.854-.158 5.694-.497l.306 1.645q-1.079.106-2.16.192l-.01 5.953c-.66.006-1.32-.001-1.98.004zM6.533 9.069c0 1.246-.901 2.401-2.674 2.401-1.61 0-2.42-.752-2.42-.752V8.699c1.101 1.043 3.266 1.745 3.266.482 0-.96-3.266-1.125-3.266-3.518 0-1.342 1.247-2.186 2.675-2.186 1.009 0 1.855.193 2.065.258l-.083 1.772c-.884-.521-2.801-.763-2.801.134 0 .992 3.239 1.002 3.238 3.428m14.861 11.155-1.957-3.596v3.433c-.673-.053-1.982-.133-1.982-.133V12.5l1.982.004c-.007 1.059.008 2.118 0 3.176l2.028-3.18h2.233l-2.314 3.569L24 20.525a91 91 0 0 0-2.606-.301M9.132 18.231q1.338-.029 2.678-.029l-.307 1.561c-.869.003-3.428.062-4.358.122v-7.374h4.038l.307 1.536s-.973-.007-2.358-.008v1.399l1.481-.013v1.323l-1.481.018zm5.162-.001c.707.015 1.905.054 2.682.082l-.32 1.573a87 87 0 0 0-4.349-.121v-7.253l4.051.002.306 1.551-2.371-.015v1.389q.691.006 1.379.017v1.321q-.689-.015-1.379-.025zM3.617 15.549l2.604-.059v4.445s-.7.032-2.26.178C1.746 20.321 0 19.022 0 16.468c0-3.034 2.222-3.993 4.225-3.993.868 0 1.379.016 1.667.031l.328 1.723s-.58-.122-1.673-.122c-1.24 0-2.585.415-2.585 2.078 0 1.791.745 2.392 2.556 2.228l-.001-1.536-1.206.059z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/securityscorecard.svg������������������������0000664�0000000�0000000�00000000601�14753064456�0027355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.37 2.5 12 5 7.63 7.5v-5L12 0ZM22.487 6l.003 4.986-8.728-4.993L18.118 3.5Zm-4.369 9.508-.001 4.997 4.377-2.5-.003-5.018-4.373-2.502zm-10.49 5.994L12 24l4.369-2.495v-4.997zM7.63 9.5v5.001l4.37 2.5 4.37-2.494V9.5L12 7Zm-6.124 8.504L1.508 13l8.747 5.003-4.376 2.5ZM5.882 3.5l-4.37 2.501L1.51 11l4.372 2.502z"/></svg>�������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sefaria.svg����������������������������������0000664�0000000�0000000�00000001127�14753064456�0025236�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.615 15.412c-.62 2.915-2.733 4.152-7.425 4.152-11.54 0-7.45-9.28-5.84-11.186.678-.85 1.152-1.553 2.874-1.553h3.273c4.567 0 5.437.217 6.582 2.55.617 1.258.975 3.971.536 6.036m1.238-5.79c-.385-2.492-.889-5.202-3.052-6.706-1.31-.911-2.663-.981-4.177-.981-1.026 0-4.666-.041-6.257-.041C5.833 1.893 4.779.618 4.779 0 3.777 1.234 3.001 2.597 3.272 4.245c.244 1.484 1.261 2.433 2.75 2.622C4.338 9.25 2.81 11.994 2.881 14.9c.046 1.83.467 9.1 8.686 9.1h1.497c3.507 0 5.632-2.606 6.25-3.614 1.822-2.963 2.122-7.548 1.537-10.764Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sega.svg�������������������������������������0000664�0000000�0000000�00000001014�14753064456�0024536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.229 4.14-.006 3.33h-10.6a.4.4 0 0 0 0 .798l2.76-.016a7.87 7.87 0 0 1-.001 15.738L2.748 24l.005-3.375h10.635a4.505 4.505 0 1 0-.002-9.01l-2.771-.03a3.723 3.723 0 1 1-.004-7.446zM2.763 19.843l-.004-3.331h10.609c.21 0 .383-.175.383-.387a.385.385 0 0 0-.384-.385h-2.744c-4.345 0-7.867-3.525-7.867-7.871S6.278 0 10.623 0l10.6.003.006 3.35-10.604.003c-2.49 0-4.5 2.019-4.5 4.507a4.51 4.51 0 0 0 4.515 4.504l2.775.03a3.722 3.722 0 0 1 0 7.443H2.765z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/selenium.svg���������������������������������0000664�0000000�0000000�00000002171�14753064456�0025445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.174 3.468-7.416 8.322a.23.23 0 0 1-.33 0l-3.786-3.9a.23.23 0 0 1 0-.282L12.872 6a.228.228 0 0 1 .366 0l2.106 2.346a.228.228 0 0 0 .342 0l5.94-8.094A.162.162 0 0 0 21.5 0H.716a.174.174 0 0 0-.174.174v23.652A.174.174 0 0 0 .716 24h22.566a.174.174 0 0 0 .174-.174V3.6a.162.162 0 0 0-.282-.132M6.932 21.366a5.7 5.7 0 0 1-4.05-1.44.22.22 0 0 1 0-.288l.882-1.236a.222.222 0 0 1 .33-.036 4.34 4.34 0 0 0 2.964 1.158c1.158 0 1.722-.534 1.722-1.098 0-1.752-5.7-.552-5.7-4.278 0-1.65 1.428-3 3.756-3a5.57 5.57 0 0 1 3.708 1.242.22.22 0 0 1 0 .3l-.906 1.2a.22.22 0 0 1-.318.036 4.3 4.3 0 0 0-2.706-.936c-.906 0-1.41.402-1.41.996 0 1.572 5.688.522 5.688 4.2.006 1.812-1.284 3.18-3.96 3.18m12.438-3.432a.19.19 0 0 1-.192.192h-5.202a.06.06 0 0 0-.06.066 1.986 1.986 0 0 0 2.106 1.638 3.26 3.26 0 0 0 1.8-.6.19.19 0 0 1 .276.042l.636.93a.2.2 0 0 1-.042.264 4.7 4.7 0 0 1-2.892.9 3.726 3.726 0 0 1-3.93-3.87 3.744 3.744 0 0 1 3.81-3.852c2.196 0 3.684 1.644 3.684 4.05zm-3.684-2.748a1.76 1.76 0 0 0-1.8 1.56.06.06 0 0 0 .06.066h3.492a.06.06 0 0 0 .06-.066 1.7 1.7 0 0 0-1.812-1.56"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sellfy.svg�����������������������������������0000664�0000000�0000000�00000001244�14753064456�0025122�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.179.818C15.533-.273 8.406-.273.8.818-.266 8.377-.266 15.424.8 22.946 4.511 23.491 8.22 24 12.005 24c3.748 0 7.459-.51 11.17-1.017 1.1-7.56 1.1-14.607 0-22.165zm-11.54 18.314c-2.055 0-4.226-.689-5.179-1.199l.807-3.126c1.064.705 2.682 1.395 4.446 1.395 1.395 0 2.24-.436 2.24-1.305 0-.615-.435-.975-1.575-1.26l-2.279-.631c-2.416-.66-3.557-1.891-3.557-3.855 0-2.365 1.83-4.256 5.619-4.256 1.99 0 3.973.545 5.07 1.092l-.951 2.976c-1.104-.615-2.79-1.125-4.226-1.125-1.365 0-1.95.436-1.95 1.092 0 .619.404.87 1.291 1.092l2.488.734c2.566.736 3.707 1.966 3.707 3.885-.076 2.701-2.461 4.517-5.957 4.517z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/semanticrelease.svg��������������������������0000664�0000000�0000000�00000001747�14753064456�0027000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.952 14.4a2.4 2.4 0 1 1 0-4.8 2.4 2.4 0 0 1 0 4.8m0-.72a1.68 1.68 0 1 0 0-3.36 1.68 1.68 0 0 0 0 3.36M8.304 3.12v1.728c.096.528 1.008 2.64 1.68 3.888C9.12 8.112 7.2 6.672 6.672 5.952a4.4 4.4 0 0 1-.816-1.392L2.448 6.48v4.128c.432.24 1.104.72 1.488.864.528.192 2.832.432 4.224.48-1.008.432-3.168 1.392-4.08 1.488-.768.144-1.296.048-1.632 0v4.08l3.312 1.872c.432-.192 1.152-.576 1.488-.816.432-.336 1.776-2.208 2.496-3.408-.096 1.056-.384 3.408-.72 4.272-.288.72-.624 1.104-.816 1.392L12 22.992l3.504-2.016c.048-.432.096-1.344 0-1.824-.048-.528-1.008-2.64-1.632-3.888.864.672 2.736 2.112 3.312 2.832a4.2 4.2 0 0 1 .816 1.44l3.552-2.016v-4.032c-.384-.24-1.152-.72-1.632-.912s-2.784-.432-4.176-.48c1.008-.48 3.168-1.392 4.08-1.488.864-.144 1.392-.048 1.728.048V6.48l-3.36-1.92-1.488.912c-.432.336-1.776 2.208-2.544 3.36.144-1.056.432-3.408.768-4.272.288-.72.624-1.152.864-1.392L12 1.008zM12 0l10.416 6v12L12 24 1.584 18V6z"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/semanticscholar.svg��������������������������0000664�0000000�0000000�00000001346�14753064456�0027006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 8.609c-.848.536-1.436.83-2.146 1.245-4.152 2.509-8.15 5.295-11.247 8.981l-1.488 1.817-4.568-7.268c1.021.814 3.564 3.098 4.603 3.599l3.356-2.526c2.336-1.644 8.946-5.226 11.49-5.848M8.046 15.201c.346.277.692.537.969.744.761-3.668.121-7.613-1.886-11.039 3.374-.052 6.731-.087 10.105-.139a14.8 14.8 0 0 1 1.298 5.295c.294-.156.588-.294.883-.433-.104-1.868-.641-3.91-1.662-6.263-4.602-.018-9.188-.018-13.79-.018 2.993 3.547 4.36 7.839 4.083 11.853m-.623-.484c.087.086.191.155.277.225-.138-3.409-1.419-6.887-3.824-9.881H1.73c3.098 2.855 4.984 6.299 5.693 9.656m-.744-.658c.104.087.208.173.329.277-.9-2.526-2.492-5.018-4.741-7.198H0c2.89 2.076 5.122 4.481 6.679 6.921"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/semanticui.svg�������������������������������0000664�0000000�0000000�00000001143�14753064456�0025763�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0Zm12.086 3.648a7.76 7.76 0 0 1 5.51 2.141l-1.818 2.232c-.488-.302-2.51-1.465-4.122-1.136-1.223.25-1.35 1.088-1.356 1.162-.031.373.364.963.718 1.148 1.656.858 3.761 1.561 4.617 2.024 2.452 1.325 2.638 3.322 2.295 4.873-.902 4.092-6.821 4.835-10.516 2.638a7 7 0 0 1-1.424-1.097l2.037-2.442c.319.189.45.408 1.485.955 2.47 1.308 4.132.398 4.29.292.528-.356.547-.957.538-1.155-.03-.627-.502-.97-1.115-1.236-1.01-.438-2.7-1.108-3.87-1.647-1.687-.777-2.757-2.046-2.76-3.982-.003-3.209 2.827-4.261 3.91-4.547a7 7 0 0 1 1.58-.223Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/semanticuireact.svg��������������������������0000664�0000000�0000000�00000004226�14753064456�0027007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.857 23.995C4.52 23.9-.237 17.431.012 11.775-.004 6.167 4.646.066 12.111 0c6.254.027 11.978 5.271 11.885 12.202-.072 6.813-5.84 11.973-12.14 11.793zm.175-4.92c.988.93 3.497 3.166 5.362 1.957 1.434-.93 1.157-3.975.75-5.5 1.597-.365 4.44-1.76 4.37-3.506-.078-2-2.615-3.057-4.408-3.545.347-1.495.913-4.317-.745-5.527-1.637-1.195-4.302.88-5.354 1.969-1.025-.879-3.361-3.096-5.22-2.046-1.46.824-1.513 3.087-.875 5.598-1.441.34-4.459 1.532-4.42 3.546.04 2.183 3.342 3.175 4.397 3.553-.495 1.639-.768 4.596.884 5.55 1.88 1.085 4.39-1.292 5.26-2.048zm-5.244-3.321c.126.039.216.054.362.113.035-.362.268-.685.486-.875-.221-.005-.544-.066-.615-.113.172-.562.439-1.357.657-1.782.25.375.393.674.6 1.1a3.4 3.4 0 0 1 .66-.68c-.645-1.294-1.514-2.837-1.896-4.38.227-.112.426-.116.618-.15.053-.324.162-.638.288-.95-.378-.003-.764.097-1.15.19-.525-1.693-.604-4.156.511-4.624 1.354-.48 3.525 1.331 4.052 2.013l-.337.351c.668-.123 1.305-.107 1.988.013a2.5 2.5 0 0 0-.358-.382c1.172-1.273 3.307-2.653 4.306-1.81.906.852.681 2.98.286 4.456-.466-.083-.72-.138-1.065-.194-.097.51-.163.523-.366.83.317.035.617.065 1.188.234-.19.624-.387 1.202-.662 1.776-.273-.415-.473-.829-.932-1.55l-.565.74c.725 1.284 1.45 2.526 2.143 4.79-.196.114-.309.103-.604.165a4.2 4.2 0 0 1-.333.96c.451-.087.794-.142 1.182-.233.4 1.242.676 3.872-.423 4.554-1.172.677-3.229-.943-4.141-1.918.086-.13.11-.172.26-.274-.594.062-1.29.082-1.779.044.13.108.169.163.207.245-1.43 1.496-3.372 2.559-4.275 1.822-.887-.724-.77-2.846-.293-4.481m6.072 1.5c2.67-.512 3.576-3.241 2.114-4.976-.405-.48-1.479-1.024-2.257-1.275-1.523-.49-2.556-1.136-1.716-1.962.826-.81 2.851.083 3.182.503l1.155-1.49c-1.161-1.105-2.702-1.52-4.337-1.222C9.54 7.1 8.488 8.336 8.418 9.308c-.155 2.168.875 2.764 2.821 3.598 1.592.682 2.139.913 2.051 1.487-.246 1.618-2.867.959-3.977-.09l-1.361 1.58c1.696 1.405 3.33 1.653 4.908 1.371M2.404 12.055c-.097-1.216 2.43-2.463 3.731-2.682.318.892.625 1.788 1.031 2.608-.412.86-.737 1.764-1.042 2.679-1.08-.236-3.616-1.31-3.72-2.605m14.455-.082c.452-1.08.812-2.016 1.013-2.64 1.2.252 3.78 1.37 3.724 2.668-.061 1.442-2.362 2.165-3.703 2.669a29 29 0 0 0-1.034-2.697"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/semanticweb.svg������������������������������0000664�0000000�0000000�00000000443�14753064456�0026125�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.602 0s-1.524 5.809-8.516 2.658c-.776-.35-.954-.444-.982-.469L2.074 6.301l10.043 4.896s.776-.326 2.026-.933C20.273 7.287 21.602 0 21.602 0M1.59 8.486v10.448L10.947 24V13.242zm20.82 0-9.357 4.756V24l9.357-5.066z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/semaphoreci.svg������������������������������0000664�0000000�0000000�00000000636�14753064456�0026127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.503 13.255-4.158-4.228a3.04 3.04 0 0 0-4.359 0l-3.292 3.347a1.207 1.207 0 0 1-1.721 0l-1.631-1.659L10.5 6.487a6.53 6.53 0 0 1 9.342 0L24 10.715zM8.83 19.479a6.53 6.53 0 0 1-4.671-1.965L0 13.295l2.487-2.529 4.157 4.218a3.056 3.056 0 0 0 4.36 0l3.291-3.348a1.207 1.207 0 0 1 1.721 0l1.631 1.659-4.147 4.229a6.52 6.52 0 0 1-4.671 1.955"/></svg>��������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/semrush.svg����������������������������������0000664�0000000�0000000�00000001560�14753064456�0025313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.698 11.911c0 .444-.226.516-.79.516-.596 0-.706-.1-.77-.554-.118-1.152-.896-2.13-2.201-2.24-.418-.034-.518-.19-.518-.706 0-.48.074-.708.446-.708 2.265.01 3.833 1.832 3.833 3.69zm3.3 0c0-3.456-2.338-7.11-7.74-7.11H5.52c-.218 0-.354.11-.354.31 0 .109.082.209.156.26.388.31.97.654 1.73 1.036.743.372 1.323.616 1.903.852.246.1.336.208.336.344 0 .19-.136.308-.4.308H.372c-.254 0-.372.164-.372.326 0 .136.044.254.162.372.69.726 1.796 1.596 3.4 2.604 1.466.91 2.98 1.74 4.533 2.492.236.11.308.236.308.372-.008.154-.126.28-.4.28H4.1c-.216 0-.344.12-.344.3 0 .1.08.226.19.326.888.808 2.311 1.688 4.207 2.494 2.53 1.08 5.094 1.721 7.98 1.721 5.465 0 7.867-4.087 7.867-7.289zm-7.133 5.104c-2.794 0-5.132-2.276-5.132-5.114 0-2.794 2.33-5.04 5.132-5.04 2.863 0 5.111 2.24 5.111 5.04a5.086 5.086 0 0 1-5.111 5.114"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/semver.svg�����������������������������������0000664�0000000�0000000�00000001177�14753064456�0025132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.357 9.024A12.07 12.07 0 0 0 2.97 19.867a12.05 12.05 0 0 0 10.38 4.063c7.768-.703 13.086-9.799 9.517-16.8-.416-1.19-2.07-.368-1.903.596q.431 1.052.713 2.155a9.98 9.98 0 0 1-3.926 10.25 9.965 9.965 0 0 1-14.807-3.809A9.98 9.98 0 0 1 4.44 5.448a9.97 9.97 0 0 1 4.85-3.044 9.87 9.87 0 0 1 7.02.631.333.333 0 0 1 .155.429l-3.962 10.62c-.107.81-.69.786-.797 0l-2.38-7.37a1.57 1.57 0 0 0-.773-.988c-1.19-.56-3.093.667-2.379 2.155l3.914 10.441c.524 1.393 1.023 1.834 2.058 1.834s1.535-.44 2.058-1.834L20 3.94a1.036 1.036 0 0 0-.369-1.19C13.1-2.907 2.32.641.357 9.023z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sencha.svg�����������������������������������0000664�0000000�0000000�00000000564�14753064456�0025071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.287 24c.458-1.221.917-1.532.917-2.442 0-1.452-.878-2.8-2.237-3.434l-5.831-2.813C5.211 13.85 3.392 10.97 3.392 7.797c0-3.23 1.867-6.133 4.871-7.576L8.712 0a3.72 3.72 0 0 0-.916 2.44c0 1.453.878 2.801 2.237 3.435l5.831 2.813c2.926 1.462 4.744 4.342 4.744 7.514 0 3.23-1.867 6.133-4.871 7.577z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sendgrid.svg���������������������������������0000664�0000000�0000000�00000000600�14753064456�0025416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.8 24h13.6c.88 0 1.6-.72 1.6-1.6v-4.8c0-.88-.72-1.6-1.6-1.6H9.6c-.88 0-1.6-.72-1.6-1.6V9.6C8 8.72 7.28 8 6.4 8H1.6C.72 8 0 8.72 0 9.6v13.6c0 .44.36.8.8.8M23.2 0H9.6C8.72 0 8 .72 8 1.6v4.8C8 7.28 8.72 8 9.6 8h4.8c.88 0 1.6.72 1.6 1.6v4.8c0 .88.72 1.6 1.6 1.6h4.8c.88 0 1.6-.72 1.6-1.6V.8c0-.44-.36-.8-.8-.8"/></svg>��������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sennheiser.svg�������������������������������0000664�0000000�0000000�00000000607�14753064456�0025771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 3v18h24V3zm13.209 1.659c-1.428.548-2.799 1.757-3.905 4.182-.321.703-.925 2.062-1.2 2.67-2.224 4.882-3.364 5.932-6.72 5.932V4.35H13.15c.184-.011.235.25.06.309zm9.428 1.894V19.65H10.851c-.181.005-.227-.25-.055-.309 1.427-.548 2.798-1.757 3.904-4.182.321-.703.926-2.062 1.2-2.67 2.22-4.882 3.36-5.932 6.716-5.932z"/></svg>�������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sensu.svg������������������������������������0000664�0000000�0000000�00000000623�14753064456�0024761�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 12 12 0 0 12l12 12zM12 3.197l4.418 4.418c-1.445-.386-2.93-.586-4.418-.586s-2.974.199-4.418.588L12 3.196zM8.069 16.87c1.19-.658 2.534-1.008 3.931-1.008s2.741.35 3.931 1.008L12 20.804zm9.509-1.647c-1.697-1.08-3.636-1.622-5.578-1.622s-3.881.542-5.578 1.622l-3.103-3.101C5.822 10.284 8.834 9.29 12 9.29s6.178.994 8.681 2.832z"/></svg>�������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sentry.svg�����������������������������������0000664�0000000�0000000�00000001166�14753064456�0025153�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.91 2.505c-.873-1.448-2.972-1.448-3.844 0L6.904 7.92a15.48 15.48 0 0 1 8.53 12.811h-2.221A13.3 13.3 0 0 0 5.784 9.814l-2.926 5.06a7.65 7.65 0 0 1 4.435 5.848H2.194a.365.365 0 0 1-.298-.534l1.413-2.402a5.2 5.2 0 0 0-1.614-.913L.296 19.275a2.18 2.18 0 0 0 .812 2.999 2.24 2.24 0 0 0 1.086.288h6.983a9.32 9.32 0 0 0-3.845-8.318l1.11-1.922a11.47 11.47 0 0 1 4.95 10.24h5.915a17.24 17.24 0 0 0-7.885-15.28l2.244-3.845a.37.37 0 0 1 .504-.13c.255.14 9.75 16.708 9.928 16.9a.365.365 0 0 1-.327.543h-2.287q.043.918 0 1.831h2.297a2.206 2.206 0 0 0 1.922-3.31z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sepa.svg�������������������������������������0000664�0000000�0000000�00000002764�14753064456�0024564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.553 8.72v6.56h1.766v-1.694h1.052l.293-.01q.868-.013.984-.033.985-.13 1.3-.994.16-.436.16-1.434 0-.83-.145-1.243-.277-.786-1.09-1.04-.354-.111-1.031-.111zm6.79 0-1.971 6.56h1.826l.317-1.134h2.36l.337 1.133H24l-1.995-6.558zm-9.339.031a3.36 3.36 0 0 0-1.888.574 3.27 3.27 0 0 0-1.199 1.455h-.742l-.464.996h.969a3 3 0 0 0 .004.526h-.467l-.465.995H6.94a3.33 3.33 0 0 0 3.064 1.973 3.37 3.37 0 0 0 1.876-.564l.013-.009v-1.241l-.05.056a2.293 2.293 0 0 1-3.618-.215h2.396l.465-.995H7.838a2.4 2.4 0 0 1-.012-.526h3.505l.008-.017.438-.939.019-.04H8.154a2.31 2.31 0 0 1 1.963-1.108c.694 0 1.344.31 1.783.85l.028.035.409-.875-.015-.014a3.36 3.36 0 0 0-2.318-.917m-7.2.004q-.658 0-1.196.048-.646.051-1.062.348a1.1 1.1 0 0 0-.41.565q-.128.372-.128.99 0 .81.236 1.21.269.47 1.074.621.308.052 1.094.109.981.066 1.098.103.316.095.316.528a1.1 1.1 0 0 1-.037.315.48.48 0 0 1-.298.287q-.127.048-.589.048h-.604a1 1 0 0 1-.41-.09q-.246-.121-.246-.549v-.136H0q0 .8.118 1.143.213.618.879.82.543.165 1.922.164.826 0 1.228-.075.96-.18 1.233-.853.151-.368.151-1.16 0-.344-.033-.617a1.2 1.2 0 0 0-.355-.74q-.379-.363-1.22-.448-.265-.028-1.33-.1l-.331-.023a.8.8 0 0 1-.35-.094q-.185-.113-.185-.471 0-.396.208-.514t.852-.118q.661 0 .808.205.095.138.095.542h1.642q.016-.217.016-.326 0-1.325-1.072-1.613-.44-.119-1.473-.119zm17.894 1.27.827 2.843h-1.63zm-6.38.13h1.116q.27 0 .342.01.36.063.456.345.067.201.067.617a3 3 0 0 1-.033.512q-.053.258-.21.344-.114.063-.637.082h-1.1Z"/></svg>������������mkdocs-material-9.6.4/material/templates/.icons/simple/sequelize.svg��������������������������������0000664�0000000�0000000�00000001560�14753064456�0025633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.026 0 1.595 5.992v12.016L12.026 24l10.38-5.992V5.992zM12 3.484l7.43 4.227v8.578l-7.43 4.227-7.348-4.182-.08-8.623zm.049.59q-1.465.845-2.928 1.692v.254l2.608 1.523v.482l.402-.232.256.15v-.336c.884-.506 1.807-1.04 2.568-1.48.004-.123.003-.253.004-.373zM8.335 6.14c-.97.553-1.931 1.122-2.893 1.691v3.402l2.893 1.67.402-.232V9.754l2.49-1.44V7.83zm7.443.088-2.892 1.67v.337l2.636 1.541v3.067l.256.148 2.893-1.67V7.918zM12.13 8.37l-2.893 1.672v3.424q1.447.833 2.893 1.67l2.893-1.672v-3.402zm-6.197 3.723q-.246.143-.49.285v3.402l2.892 1.672.402-.232v-2.918l.473-.274-.473-.273v-.508l-.402.233c-.825-.478-1.69-.976-2.402-1.387m12.248.086-2.403 1.388-.255-.148v.334l-.493.285.493.287v3.067l.255.148 2.893-1.672v-3.402zm-8.47 2.138q-.236.138-.474.274v3.424l2.893 1.67 2.893-1.67v-3.403l-.49-.287-2.403 1.389z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/serverfault.svg������������������������������0000664�0000000�0000000�00000000750�14753064456�0026167�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 18.185v2.274h-4.89v-2.274zm-24-.106h11.505v2.274H0zm12.89 0h4.89v2.274h-4.89zm6.221-3.607H24v2.274h-4.89zM0 14.367h11.505v2.274H0zm12.89 0h4.89v2.274h-4.89zm6.221-3.346H24v2.273h-4.89zM0 10.916h11.505v2.271H0zm12.89 0h4.89v2.271h-4.89zm6.22-3.609H24v2.279h-4.89zM0 7.206h11.505V9.48H0V7.201zm12.89 0h4.89V9.48h-4.89V7.201zm6.221-3.556H24v2.276h-4.89v-2.28zM0 3.541h11.505v2.274H0zm12.89 0h4.89v2.274h-4.89z"/></svg>������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/serverless.svg�������������������������������0000664�0000000�0000000�00000000375�14753064456�0026025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 17.57h4.248l-1.316 3.974H0zm0-7.557h6.75l-1.316 3.974H0zm0-7.557h9.252L7.936 6.431H0zm13.44 0H24v3.975H12.123zM9.62 13.987l1.317-3.974H24v3.974zM8.436 17.57H24v3.975H7.119Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/session.svg����������������������������������0000664�0000000�0000000�00000001322�14753064456�0025304�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.431 12.193-4.53-2.51h3.071a4.847 4.847 0 0 0 4.842-4.841A4.85 4.85 0 0 0 17.972 0H7.252a6.073 6.073 0 0 0-6.066 6.066 6.57 6.57 0 0 0 3.383 5.741l4.53 2.51H6.028a4.847 4.847 0 0 0-4.842 4.841A4.85 4.85 0 0 0 6.028 24h10.72a6.073 6.073 0 0 0 6.066-6.066 6.57 6.57 0 0 0-3.383-5.741m-14.136-1.7a5.07 5.07 0 0 1-2.607-4.309C2.627 3.61 4.79 1.5 7.367 1.5h10.508c1.797 0 3.345 1.378 3.434 3.173a3.345 3.345 0 0 1-3.337 3.51H11.92a.67.67 0 0 0-.67.67l-.001 4.94zM16.633 22.5H6.124c-1.797 0-3.345-1.378-3.434-3.173a3.345 3.345 0 0 1 3.337-3.51h6.053c.37 0 .67-.3.67-.67v-4.94l5.954 3.3a5.07 5.07 0 0 1 2.608 4.309c.06 2.575-2.103 4.684-4.679 4.684"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sessionize.svg�������������������������������0000664�0000000�0000000�00000000721�14753064456�0026016�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c6.628 0 12 5.372 12 12v10c0 1.097-.903 2-2 2h-7.5l-.001-.169c-.049-2.894-1.347-4.902-3.709-5.96L24 12l-.32-.109Q19.393 10.393 16.5 7.5T12.109.319zL4 18q0 1 .5 1.5.501.5 1.5.5l.187.001c3.771.04 5.313 1.295 5.313 3.999H2c-1.097 0-2-.903-2-2V2C0 .903.903 0 2 0zm7.207 4.793c-.781-.781-1.73-1.097-2.121-.707-.39.39-.074 1.34.707 2.121s1.731 1.098 2.121.707c.391-.39.074-1.34-.707-2.121"/></svg>�����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/setapp.svg�����������������������������������0000664�0000000�0000000�00000001773�14753064456�0025127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.095 8.133a.62.62 0 0 1 0-.874l2.771-2.773a.62.62 0 0 1 .877 0l2.77 2.772a.62.62 0 0 1 0 .875l-2.77 2.772a.62.62 0 0 1-.877 0zM11.562 6.6 8.79 3.83a.62.62 0 0 1 0-.877L11.56.182a.62.62 0 0 1 .877 0l2.773 2.77a.62.62 0 0 1 0 .878L12.438 6.6a.62.62 0 0 1-.876 0zm0 2.19a.62.62 0 0 1 .876 0l2.773 2.772a.62.62 0 0 1 0 .877l-2.773 2.77a.62.62 0 0 1-.876 0L8.79 12.442a.62.62 0 0 1 0-.877zm-4.305 2.115-2.77-2.772a.62.62 0 0 1 0-.876l2.77-2.771a.62.62 0 0 1 .877 0l2.772 2.771a.62.62 0 0 1 0 .876l-2.774 2.772a.62.62 0 0 1-.875 0zm9.485 2.19 2.772 2.772a.62.62 0 0 1 0 .875l-2.77 2.772a.62.62 0 0 1-.876 0l-2.773-2.772a.62.62 0 0 1 0-.875l2.773-2.772a.62.62 0 0 1 .875 0zM12.438 17.4l2.772 2.772a.62.62 0 0 1 0 .876l-2.772 2.771a.62.62 0 0 1-.876 0l-2.771-2.77a.62.62 0 0 1 0-.878l2.77-2.771a.62.62 0 0 1 .877 0m-1.532-1.532a.62.62 0 0 1 0 .875l-2.772 2.773a.62.62 0 0 1-.876 0l-2.773-2.772a.62.62 0 0 1 0-.875l2.772-2.772a.62.62 0 0 1 .877 0z"/></svg>�����mkdocs-material-9.6.4/material/templates/.icons/simple/sfml.svg�������������������������������������0000664�0000000�0000000�00000002112�14753064456�0024560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.187.334C11.114.312 9.877.863 7.959 2.24L3.162 5.726C.252 7.84-.839 8.527.692 13.329l1.832 5.639c1.111 3.42 1.428 4.67 6.467 4.699h5.929c3.597 0 4.884.085 6.468-4.7l1.832-5.638c1.111-3.421 1.59-4.618-2.47-7.603L15.952 2.24C14.407 1.118 13.403.358 12.187.334m-.162 1.883q.098.003.195.01c1.078.083 1.679.639 2.34 1.119l.02.02-2.129 8.168h-.925L9.404 3.365q.01-.01.02-.02c.773-.594 1.524-1.07 2.41-1.124zm4.103 2.272.09.064 3.878 2.816c.92.632 1.677 1.278 1.928 2.315.254 1.05-.095 1.794-.347 2.571l-2.109 6.506c-.316 1.07-.699 1.987-1.607 2.546-.921.567-1.735.47-2.552.47H8.568c-1.117.03-2.106-.042-2.919-.734-.823-.7-.982-1.505-1.234-2.282L2.3 12.255c-.375-1.054-.607-2.02-.2-3.009.413-1 1.127-1.397 1.788-1.877l3.876-2.816.084-.058.836 3.208-.212.155L5.7 9.863c-.563.41-.667.51-.714.547.012.06.036.285.238.849l2.128 6.544c.199.672.275.804.296.855.065.009.285.05.874.032h6.885c.63 0 .827-.017.9-.019.026-.057.141-.252.309-.823l2.128-6.55c.194-.598.24-.805.257-.862-.048-.045-.202-.215-.688-.547L15.51 7.858l-.219-.161z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/shadcnui.svg���������������������������������0000664�0000000�0000000�00000000421�14753064456�0025416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.219 11.784 11.784 22.219a1.045 1.045 0 0 0 1.476 1.476L23.695 13.26a1.045 1.045 0 0 0-1.476-1.476M20.132.305.305 20.132a1.045 1.045 0 0 0 1.476 1.476L21.608 1.781A1.045 1.045 0 0 0 20.132.305"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/shadow.svg�����������������������������������0000664�0000000�0000000�00000000362�14753064456�0025111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12a11.97 11.97 0 0 0 3.918 8.87 4.5 4.5 0 0 1-.2-1.324 4.453 4.453 0 1 1 5.891 4.216Q10.77 23.998 12 24c6.627 0 12-5.373 12-12S18.627 0 12 0"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/shanghaimetro.svg����������������������������0000664�0000000�0000000�00000001004�14753064456�0026447�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.383 11.664h-1.716l-3.432-4.487-3.073 3.606L9.31 7.177l-3.513 4.487H3.63c.185-4.464 3.872-8.047 8.383-8.047 3.953 0 7.27 2.748 8.15 6.424h3.687C22.91 4.359 17.96.01 12 .01c-6.632 0-12 5.369-12 12 0 1.102.15 2.169.429 3.177h6.516l2.412-2.55 2.805 3.478 2.945-3.502 1.902 2.61h2.69c-1.287 2.967-4.256 5.495-7.699 5.495-2.84 0-5.357-1.681-6.875-3.942H.997C2.852 21.02 7.072 23.988 12 23.988c6.632 0 12-5.368 12-12 0-.116 0-.231-.012-.347z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sharex.svg�����������������������������������0000664�0000000�0000000�00000002222�14753064456�0025113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.217 15.774v.054c.083 3.469 2.543 6.416 5.99 7.607h-.002c1.095.377 2.246.568 3.404.565 5.159 0 9.347-3.697 9.389-8.275a7.5 7.5 0 0 0-.563-2.668c-1.19 3.446-4.138 5.906-7.607 5.987h-.176c-2.01 0-3.854-.8-5.294-2.13-1.656-1.53-2.78-3.765-3.01-6.295-1.3 1.407-2.093 3.2-2.13 5.155Zm3.01-10.557H8.17c-3.36.08-6.23 2.39-7.49 5.669l-.117.32A10.4 10.4 0 0 0 0 14.608c0 5.159 3.697 9.347 8.275 9.389a7.5 7.5 0 0 0 2.668-.563c-3.446-1.19-5.906-4.138-5.987-7.607v-.176c0-2.01.8-3.854 2.13-5.296 1.53-1.656 3.765-2.78 6.296-3.01-1.407-1.3-3.2-2.093-5.155-2.129Zm7.601 13.566.324-.015c3.327-.223 6.129-2.636 7.283-5.974A10.4 10.4 0 0 0 24 9.392c0-5.16-3.697-9.347-8.275-9.39a7.5 7.5 0 0 0-2.668.563c3.446 1.19 5.906 4.14 5.987 7.607v.176c0 2.01-.8 3.854-2.13 5.294-1.53 1.656-3.765 2.78-6.295 3.01 1.407 1.3 3.2 2.094 5.155 2.13zM.002 8.275a7.5 7.5 0 0 0 .563 2.668c1.19-3.446 4.14-5.906 7.607-5.987h.176c2.01 0 3.854.8 5.294 2.13q.502.465.925.999c1.146 1.436 1.9 3.27 2.085 5.297 1.3-1.407 2.094-3.2 2.13-5.155V8.17C18.7 4.703 16.24 1.756 12.795.564A10.4 10.4 0 0 0 9.393 0C4.23 0 .045 3.697.002 8.275"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sharp.svg������������������������������������0000664�0000000�0000000�00000000633�14753064456�0024742�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.22.088v5.96l-3.742.502v3.523l3.743-.5v3.573l3.492-.468V9.105L24 8.263l-.463-3.46-5.824.779V.088zM6.288 1.144v5.962L0 7.948l.463 3.462 5.852-.784 3.464-.464V1.146zm3.52 9.719-3.492.467v3.578l-6.183.828.463 3.46 5.824-.779v5.495h3.492V17.95l3.611-.484v-3.523l-3.715.497zm13.73 1.74-5.824.779-3.492.467v9.018h3.492v-5.962l6.287-.84Z"/></svg>�����������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/shazam.svg�����������������������������������0000664�0000000�0000000�00000001765�14753064456�0025117�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0-.001 5.371-.001 12c0 6.625 5.374 12 12.001 12s12-5.375 12-12c0-6.629-5.373-12-12-12M9.872 16.736c-1.287 0-2.573-.426-3.561-1.281-1.214-1.049-1.934-2.479-2.029-4.024a5.53 5.53 0 0 1 1.436-4.067C6.86 6.101 8.907 4.139 8.993 4.055a1.39 1.39 0 0 1 1.966.045c.53.557.512 1.439-.044 1.971-.021.02-2.061 1.976-3.137 3.164a2.76 2.76 0 0 0-.719 2.027c.049.789.428 1.529 1.07 2.086.844.73 2.51.891 3.553-.043a26 26 0 0 0 1.38-1.386c.52-.567 1.4-.603 1.965-.081.565.52.603 1.402.083 1.969-.035.035-.852.924-1.572 1.572-1.005.902-2.336 1.357-3.666 1.357m8.41-.099c-1.143 1.262-3.189 3.225-3.276 3.309a1.392 1.392 0 1 1-1.922-2.016c.021-.02 2.063-1.977 3.137-3.166a2.76 2.76 0 0 0 .719-2.027c-.048-.789-.428-1.529-1.07-2.084-.844-.73-2.51-.893-3.552.044a24 24 0 0 0-1.38 1.384 1.391 1.391 0 1 1-2.048-1.887c.034-.037.85-.926 1.571-1.573 1.979-1.778 5.221-1.813 7.227-.077 1.214 1.051 1.935 2.48 2.028 4.025a5.53 5.53 0 0 1-1.434 4.068"/></svg>�����������mkdocs-material-9.6.4/material/templates/.icons/simple/shell.svg������������������������������������0000664�0000000�0000000�00000001764�14753064456�0024742�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .863C5.34.863 0 6.251 0 12.98c0 .996.038 1.374.246 2.33l3.662 2.71.57 4.515h6.102l.326.227c.377.262.705.375 1.082.375.352 0 .732-.101 1.024-.313l.39-.289h6.094l.563-4.515 3.695-2.71c.208-.956.246-1.334.246-2.33C24 6.252 18.661.863 12 .863m.996 2.258c.9 0 1.778.224 2.512.649l-2.465 12.548 3.42-12.062c1.059.36 1.863.941 2.508 1.814l.025.034-4.902 10.615 5.572-9.713.033.03c.758.708 1.247 1.567 1.492 2.648l-6.195 7.666 6.436-6.5.01.021c.253.563.417 1.36.417 1.996 0 .509-.024.712-.164 1.25l-3.554 2.602-.467 3.71h-4.475l-.517.395c-.199.158-.482.266-.682.266-.199 0-.483-.108-.682-.266l-.517-.394H6.322l-.445-3.61-3.627-2.666c-.11-.436-.16-.83-.16-1.261 0-.72.159-1.49.426-2.053l.013-.024 6.45 6.551L2.75 9.621c.25-1.063.874-2.09 1.64-2.713l5.542 9.776L4.979 6.1c.555-.814 1.45-1.455 2.546-1.827l3.424 12.069L8.355 3.816l.055-.03c.814-.45 1.598-.657 2.457-.657.195 0 .286.004.528.03l.587 13.05.46-13.059c.224-.025.309-.029.554-.029"/></svg>������������mkdocs-material-9.6.4/material/templates/.icons/simple/shelly.svg�����������������������������������0000664�0000000�0000000�00000001341�14753064456�0025122�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12a12 12 0 0 0 .033.88c1.07-.443 2.495-.679 4.322-.679h5.762q-.25.914-1.142 1.436-.798.462-1.823.463h-.927q-1.335 0-2.32.463-1.287.605-1.286 1.789-.001 1.34 1.774 2.1a7.4 7.4 0 0 0 2.927.581q1.976 0 3.297-.867 1.535-.996 1.535-2.857 0-1.281-.976-3.676-.975-2.395-.975-3.723 0-4.186 6.916-4.324c.641-.01 1.337-.005 1.916-.004q.888 0 1.66.147A12 12 0 0 0 12 0m4.758 5.691q-1.809 0-1.809 1.506 0 .772 1.067 3.451 1.065 2.68 1.064 4.198 0 3.249-3.607 4.875-2.69 1.196-6.297 1.197c-1.268 0-2.442-.114-3.543-.316A12 12 0 0 0 12 24c6.627 0 12-5.373 12-12a12 12 0 0 0-.781-4.256 3.4 3.4 0 0 1-.832.77h-4.371l1.425-2.828a300 300 0 0 0-2.683.005"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/shenzhenmetro.svg����������������������������0000664�0000000�0000000�00000001172�14753064456�0026515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.27 0v.155c0 4.69 3.033 8.751 7.331 10.434v2.736C3.303 14.99.271 19.019.271 23.768V24H4.36v-.232c0-2.459 1.278-4.623 3.24-5.934V24h3.165v-7.384q.612-.097 1.234-.1c.423 0 .834.038 1.235.1V24h3.165v-6.148c1.925 1.313 3.163 3.469 3.163 5.916V24h4.168v-.232c0-4.691-3.033-8.751-7.331-10.434V10.6c4.298-1.665 7.33-5.696 7.33-10.446V.001h-4.09v.154c0 2.458-1.277 4.622-3.24 5.934V0h-3.165v7.305q-.613.099-1.235.103a8 8 0 0 1-1.234-.103V.001H7.6V6.07C5.675 4.757 4.438 2.602 4.438.154V.001zm10.495 11.358c.82.084 1.648.084 2.469.001v1.205a12.2 12.2 0 0 0-2.47 0z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/shieldsdotio.svg�����������������������������0000664�0000000�0000000�00000005141�14753064456�0026316�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.084 13.11a.93.93 0 0 1-.187-.548l.347-.03a.63.63 0 0 0 .434.572c.295.108.65.096.916-.08.18-.137.226-.446.04-.597-.19-.16-.447-.182-.676-.25-.284-.068-.596-.137-.802-.36a.686.686 0 0 1 .036-.903c.247-.256.633-.309.972-.275.298.03.613.162.758.44.051.11.132.272.08.377-.109.02-.22.018-.33.03-.01-.253-.21-.494-.468-.514-.23-.038-.488-.03-.69.098-.17.12-.224.407-.046.544.155.123.359.146.543.2.322.075.679.135.92.382.243.265.23.708-.01.971-.244.281-.643.36-.998.329-.314-.018-.645-.124-.839-.386m2.827.343v-.746c.006-.217-.018-.438.032-.652.065-.288.415-.433.68-.336.167.054.24.235.243.398.004.446 0 .891.001 1.337h.341v-.907c-.006-.245.021-.493-.04-.732-.058-.247-.307-.394-.547-.413a.79.79 0 0 0-.71.271v-.996h-.34v2.777h.34zm2.161-2.776h-.341v.392h.341zm0 .765h-.341v2.012h.341zm.451 1.382c-.102-.401-.049-.883.255-1.186.373-.364 1.054-.318 1.362.108.166.224.203.517.19.789h-1.5c-.016.35.276.727.649.686a.56.56 0 0 0 .49-.415l.353.043c-.085.42-.527.7-.943.653-.392-.008-.78-.282-.856-.678m.327-.57h1.123c.016-.336-.317-.657-.657-.57a.584.584 0 0 0-.466.57m2.235-1.577h-.34v2.777h.34zm.432 2.041c-.062-.335-.015-.7.168-.99.226-.328.723-.442 1.056-.211.051.028.124.139.157.123v-.963h.338v2.776h-.316V13.2c-.171.296-.579.371-.877.236-.288-.124-.481-.413-.526-.718m.325-.268c-.009.272.078.589.339.721a.496.496 0 0 0 .665-.259c.109-.242.09-.518.047-.773-.052-.237-.248-.461-.504-.461a.51.51 0 0 0-.497.385c-.04.125-.048.257-.05.387m2.14.942c.16.082.344.107.522.108.256-.004.535-.08.692-.297.161-.209.156-.544-.048-.723-.181-.135-.41-.176-.623-.238-.136-.05-.29-.057-.411-.142-.104-.062-.114-.213-.038-.301.11-.118.286-.129.437-.12.187-.007.372.137.387.328l.333-.046a.75.75 0 0 0-.102-.289c-.12-.178-.346-.247-.55-.269-.252-.023-.536.011-.727.194a.526.526 0 0 0 .012.762c.185.136.418.18.635.24.13.043.276.054.386.141.114.093.079.274-.02.365-.134.118-.33.129-.499.103-.209-.014-.377-.203-.392-.408l-.337.054v-.001c.03.217.15.429.344.539zm7.102-2.284c-.46-.341-1.219-.134-1.405.417a1.9 1.9 0 0 0-.082.582c-.046.518.35 1.072.894 1.085.46.027.916-.322.97-.788.095-.452.016-1.005-.377-1.296M24 9.938v4.122c0 .575-.337 1.072-.823 1.308a.96.96 0 0 1-.51.146h-6.138l-.041.002q-.03 0-.062-.002H1.455A1.456 1.456 0 0 1 0 14.06V9.938c0-.802.652-1.454 1.455-1.454h21.212c.187 0 .362.054.51.146.486.236.823.733.823 1.308m-7.03-.484H1.455a.485.485 0 0 0-.485.484v4.122c0 .267.217.484.485.484H16.48a.485.485 0 0 0 .489-.445zm1.714 1.223h-.368v2.777h.368zm3.022.642c-.273-.594-1.04-.83-1.633-.618-.572.19-.888.823-.855 1.4 0 .272.07.543.204.78.396.718 1.518.836 2.07.236.443-.474.489-1.227.214-1.798"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/shikimori.svg��������������������������������0000664�0000000�0000000�00000023267�14753064456�0025633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.803.003c-.025.027.03.12.18.297.098.113.16.233.233.444.055.16.12.316.145.347.036.049.04.037.042-.11V.818l.218.3c.331.457.537.7.675.798.07.046.113.092.095.098-.049.015-.478-.221-.678-.374a1.2 1.2 0 0 0-.211-.141c-.015 0-.065-.046-.107-.102a1 1 0 0 0-.206-.19c-.171-.119-.352-.29-.395-.373C2.763.772 2.668.732 2.668.78c0 .05.245.377.435.58.583.622 1.178.932 2.769 1.428.337.105.635.209.662.233.025.022.074.04.108.04.03 0 .079.015.104.03.04.025.036.032-.01.032q-.055 0-.046.055.015.083.448.144c.129.018.16.012.16-.024 0-.05-.09-.083-.221-.083-.05 0-.086-.016-.086-.03 0-.02.03-.026.07-.02.037.01.166.03.282.052.276.046.353.077.353.135 0 .065.083.092.138.046q.046-.04.046-.003c0 .019.015.034.03.034.019 0 .031-.021.031-.046 0-.058-.03-.058.485.021.306.046.42.077.374.093-.098.036-.043.085.095.085.07 0 .12.016.12.034 0 .028.07.03.244.018.16-.012.252-.009.264.013.013.018.065.027.12.018.052-.01.196.003.312.025.307.058 1.132.104 2.977.169 2.983.104 5.157.327 5.973.615.362.13.908.405 1.009.51.16.168.208.306.19.533a.8.8 0 0 0 0 .224c.089.089.285-.086.285-.254 0-.034.064-.117.147-.188.33-.29.38-.454.343-1.119-.024-.448-.03-.478-.23-1.134-.26-.859-.321-.99-.634-1.322-.368-.386-.702-.607-1.16-.763a18 18 0 0 1-.52-.19c-.249-.098-.427-.141-.788-.193-.512-.074-1.613-.126-1.956-.092-.123.012-.614 0-1.15-.034-.61-.033-.984-.046-1.073-.027a2 2 0 0 1-.295.03.4.4 0 0 0-.29.098c-.126.092-.215.12-.565.178-.564.092-.929.165-1.082.218-.12.043-.316.07-.62.089-.83.052-1.302.095-1.407.129-.07.021-.34.027-.79.018-.55-.012-.69-.006-.718.028-.028.03-.015.04.058.04.181 0 1.797.125 1.812.14s-.273.003-1.097-.049a3 3 0 0 0-.472-.01c-.059.038-.494.032-.911-.011a10 10 0 0 1-1.472-.255 4 4 0 0 0-.644-.1C4.547.952 4.198.838 3.704.59 3.379.43 3.343.423 3.343.554v.101L3.244.533a1.2 1.2 0 0 1-.15-.23c-.055-.117-.26-.328-.291-.3M3.26 3.19c-.57.027-1.094.47-1.47 1.263-.224.475-.264.66-.279 1.291-.012.497-.006.598.064 1.012.15.861.19.962.506 1.272.334.331 1.165.785 1.628.89.16.033.347.076.414.094.258.065.61.089 1.487.101.843.015.914.013 1.027-.043.08-.04.249-.07.49-.088.203-.019.417-.046.476-.065a1.4 1.4 0 0 1 .276-.03c.095 0 .19-.019.208-.037.074-.074.423-.15.757-.169.187-.01.362-.027.393-.043.101-.055.052-.086-.113-.067a.5.5 0 0 1-.221-.016c-.05-.03-.034-.033.082-.036.077 0 .227-.01.335-.022.165-.015.184-.025.138-.058-.114-.083-.015-.104.493-.104.457 0 .59-.022.454-.074a1.2 1.2 0 0 0-.252-.022c-.113-.003-.162-.012-.113-.015.052-.006.163-.027.252-.043.086-.018.625-.04 1.196-.046.57-.006 1.054-.012 1.075-.015q.041-.001.022-.061c-.012-.044-.006-.062.027-.062.025 0 .083-.049.13-.107.091-.12.116-.114.155.043l.028.101.22.01c.176.006.234-.004.292-.047a.5.5 0 0 1 .184-.076l.114-.022-.019.178c-.018.144-.015.172.022.16a3 3 0 0 1 .22-.056l.175-.033-.067-.09a.4.4 0 0 0-.194-.116l-.122-.03.184-.007a5 5 0 0 1 .3 0c.065.003.114-.009.114-.027s-.018-.034-.037-.037c-.021-.003-.089-.006-.147-.01a.7.7 0 0 1-.215-.073.4.4 0 0 0-.159-.067c-.03 0-.055-.016-.055-.03 0-.022.092-.031.254-.025.248.009.252.009.26.092.013.095.013.095.08.067a.05.05 0 0 0 .031-.058c-.018-.049.037-.09.083-.059.018.01.092.022.16.028.165.01.971.074 1.18.095.11.012.159.03.159.062 0 .052.037.054.083.008.024-.024.144-.02.435.007.356.034.402.043.402.095q-.002.054.07.058c.037 0 .166.012.282.025.12.012.233.018.252.009.021-.007.089-.098.15-.202.12-.2.221-.326.26-.326.016 0 .019.022.01.047-.013.024-.003.046.015.046.022 0 .034.024.028.052-.006.036.021.058.092.073.113.025.165.058.089.058-.028 0-.053.019-.053.04s.181.099.445.184c.282.095.444.163.444.19 0 .03-.095.01-.358-.08-.625-.214-.898-.26-.898-.153 0 .046.049.068.285.123.153.037.3.064.325.064a.34.34 0 0 1 .129.074c.049.043.294.144.563.233.273.092.516.19.565.233a.8.8 0 0 0 .193.116c.193.083.47.331.678.61.3.405.297.39.131.39-.076 0-.294-.022-.484-.046a7 7 0 0 0-.53-.05c-.215-.005-1.969.028-2.625.05l-.445.015-.07-.15a1.6 1.6 0 0 0-.254-.331c-.175-.172-.184-.175-.224-.117-.025.034-.117.163-.206.282l-.162.224-.2.007c-.11 0-.223.003-.25 0-.068-.006-.071.03-.01.144l.043.085-.313.022c-.852.058-2.66.282-3.268.408a4.5 4.5 0 0 1-.678.052c-.46.006-.502.018-.794.187-.052.027-.092.034-.129.015q-.052-.03-.085.012c-.034.04-.144.058-.954.144-.178.019-.475.059-.665.09-.331.054-.35.054-.524 0-.184-.059-.758-.136-1.248-.17l-.276-.021-.162.147c-.092.08-.218.218-.286.307-.092.125-.14.166-.2.166-.125 0-1.244.174-2.056.321-.877.16-1.208.19-1.466.138-.266-.055-.27-.058-.257-.395.012-.285.009-.294-.065-.331-.168-.086-.33-.037-.551.162a.28.28 0 0 1-.2.068.8.8 0 0 0-.3.08l-.181.082.009.16a.5.5 0 0 1-.022.217c-.024.037-.03.2-.018.47.012.327.003.447-.04.606l-.052.197.147.208c.295.414.503.73.503.763 0 .019.092.117.208.218.506.445.721.565 1.218.669.527.113.613.107.941-.068.15-.082.325-.196.39-.257.08-.074.306-.194.742-.387.677-.3.763-.334.763-.294 0 .012.043.426.095.914.107 1.023.14 2.005.095 2.759-.037.592-.064.674-.481 1.46-.647 1.216-1.423 2.394-2.008 3.047-.105.12-.264.325-.353.46-.169.254-.481.595-.871.944-.132.12-.218.22-.208.245.009.025.104.074.211.11.105.04.206.083.224.099.049.049.11.03.337-.092l.22-.123.09.062c.107.07.3.076.463.015.064-.025.193-.052.288-.058.19-.019.313-.07.512-.224a.8.8 0 0 1 .215-.12c.089-.018.858-.797 1.27-1.288.128-.15.45-.49.72-.754.377-.374.545-.515.76-.644.31-.183.555-.407.585-.539a1 1 0 0 1 .092-.212c.095-.162.203-.579.175-.683a1.3 1.3 0 0 0-.101-.233c-.08-.141-.086-.19-.101-.583-.028-.69-.138-1.051-.488-1.594-.202-.313-.251-.423-.377-.828-.208-.696-.27-1.35-.165-1.861.049-.255.073-.288.279-.408.107-.064.248-.165.316-.227l.125-.116.595-.068c.328-.04.696-.088.812-.113.12-.024.383-.08.586-.12.205-.042.497-.116.647-.165.15-.052.362-.114.472-.138.215-.05.947-.12.972-.095.009.01.018.448.015.975 0 .828-.009 1.052-.08 1.662a22 22 0 0 0-.174 2.526c-.028 1.146-.037 1.198-.224 1.333-.135.098-.273.08-.68-.1a39 39 0 0 0-.951-.393 18 18 0 0 1-1.003-.441c-.233-.117-.423-.203-.423-.194s.117.16.26.334c.145.175.261.325.261.334s-.027.02-.064.02c-.055 0-.058.005-.015.063.027.04.036.101.027.166-.012.083-.003.11.058.15.04.028.105.104.145.172a.7.7 0 0 0 .14.177.7.7 0 0 1 .133.163c.03.058.134.166.233.24a.9.9 0 0 1 .21.208c.02.046.109.113.213.165.242.123.597.436.655.574.034.085.102.153.298.282.157.104.432.343.739.647.558.551.589.57 1.042.542.295-.021.442-.076.617-.236.07-.064.156-.132.187-.15a.8.8 0 0 0 .165-.2.8.8 0 0 1 .193-.22c.129-.077.359-.402.359-.506 0-.153.058-.251.26-.441.178-.166.215-.221.326-.494.172-.417.232-.687.288-1.223.067-.662.061-1.462-.015-1.962-.126-.816-.604-3.088-.748-3.542-.12-.377-.233-.867-.233-1.008 0-.034.064-.037.315-.022.23.016.41.01.675-.03.312-.046.42-.05.75-.019.212.019.393.04.4.05.024.02.496 1.557.576 1.87.165.64.169.686.202 2.299.016.843.03 1.843.037 2.223.006.64.012.71.089.993.098.359.205.592.426.91.089.127.224.347.3.488.154.285.353.521.61.717.338.261.666.473.868.565.243.11.439.285.632.558.08.11.193.26.254.337.062.077.138.193.172.26.058.123.077.136.408.234.153.046.576.055.812.015.132-.022.181-.052.393-.258.285-.276.42-.469.42-.607 0-.214.03-.279.156-.328q.12-.047.12-.104c0-.193-.203-.972-.307-1.175-.068-.134-.947-1.324-1.686-2.283-.785-1.015-1.061-1.457-1.224-1.935-.052-.163-.248-1.276-.37-2.143a8.4 8.4 0 0 0-.531-1.922c-.092-.233-.156-.423-.141-.423.074 0 1.653.441 1.745.487.058.03.297.16.527.288.23.132.454.236.493.236.046 0 .24.108.466.26l.39.262.202-.016c.292-.028.346-.04.47-.126.174-.12.278-.138.416-.073.267.126.451.147.289.034-.243-.17-.267-.252-.126-.464.169-.257.187-.275.361-.364.28-.141.298-.175.39-.678.043-.245.1-.484.126-.533.07-.148.055-.242-.065-.356a2 2 0 0 1-.23-.291c-.095-.147-.122-.218-.122-.325 0-.12-.013-.144-.101-.2a1.3 1.3 0 0 0-.218-.107c-.132-.046-.337-.263-.31-.324l.034-.083c.025-.062-.224-.197-.47-.255-.244-.058-.241-.058-.198-.107.021-.028.02-.123.002-.3-.092-.84-.432-1.43-.999-1.727a1.2 1.2 0 0 1-.239-.147c-.058-.089-.782-.365-1.18-.447a8 8 0 0 1-.552-.138 5 5 0 0 0-.61-.12c-.457-.043-1.073-.147-1.276-.212a6 6 0 0 0-.533-.12c-.193-.036-.359-.076-.368-.091-.012-.018-.086-.016-.187.003-.117.021-.291.021-.567-.003a16 16 0 0 0-1.196-.031c-.674.003-.858-.006-1.202-.061a5 5 0 0 0-.659-.065c-.337-.003-1.33-.104-1.153-.12.028 0 .12-.017.205-.036.141-.03.15-.037.123-.098-.03-.065-.046-.067-.478-.064-.368 0-.454.009-.481.049-.031.04-.062.043-.197.018-.144-.03-.153-.037-.107-.073.049-.037.05-.046.01-.074a.2.2 0 0 0-.096-.031c-.04 0-1.956-.19-2.753-.273-.157-.018-.294-.036-.303-.049-.01-.009.006-.015.033-.015.03 0 .052-.012.052-.028 0-.046-.156-.058-.37-.024-.15.021-.23.021-.28-.003-.058-.025-.04-.028.093-.015.29.03.168-.04-.139-.077-.165-.022-.337-.043-.38-.05a.5.5 0 0 1-.138-.045c-.03-.019-.368-.077-.748-.129a9 9 0 0 1-.95-.172c-.497-.14-.954-.37-1.217-.607l-.138-.122.049-.117a.86.86 0 0 1 .46-.493c.315-.154.46-.178 1.076-.197.56-.012.693-.036.628-.11-.03-.043-.472-.11-.692-.11-.138 0-.482-.068-.798-.16a1.2 1.2 0 0 0-.4-.049m8.85 2.95a.3.3 0 0 0-.068.006c-.18.03-.285.073-.377.15l-.092.073.147.003a.45.45 0 0 0 .353-.131q.107-.097.037-.1m5.776.951a.5.5 0 0 1 .162.032c.092.028.193.04.224.031.03-.009.067-.003.08.019.015.027-.03.03-.184.015q-.203-.023-.203.009c0 .018.037.04.086.05.224.048.26.073.068.054a6 6 0 0 0-.368-.024c-.16 0-.169.003-.178.08-.01.07-.03.085-.18.116-.206.04-.178.043-.332-.028-.138-.067-.442-.14-.819-.199-.14-.021-.21-.04-.162-.043.052 0 .334.031.629.074.545.077.699.092.665.058a6 6 0 0 0-.534-.12l-.515-.1.3-.004c.264-.003.31.007.39.065.068.049.101.058.126.034.021-.022.113-.028.257-.02.193.016.245.01.353-.048a.4.4 0 0 1 .135-.05m-4.347.513q.024-.001.036.01c.013.01 0 .03-.024.046-.058.037-.083.037-.107.003-.014-.025.05-.057.095-.059m4.987.09q.008-.003.034.037a.15.15 0 0 0 .098.052c.05 0 .053.006.013.03a.2.2 0 0 1-.061.028c-.062-.006-.092-.043-.092-.098q0-.045.008-.049m-3.951.18c-.062 0-.104.053-.104.126 0 .016.07.028.156.028.147 0 .153-.003.116-.052-.06-.08-.098-.101-.168-.101m6.19 1.831c.021-.009.074.012.116.043.068.052.068.058.013.055-.086 0-.184-.076-.13-.098"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/shopee.svg�����������������������������������0000664�0000000�0000000�00000002032�14753064456�0025103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.941 17.963c.23-1.879-.98-3.077-4.175-4.097-1.548-.528-2.277-1.22-2.26-2.171.065-1.056 1.048-1.825 2.352-1.85a5.3 5.3 0 0 1 2.883.89c.116.072.197.06.263-.04.09-.144.315-.493.39-.62.051-.08.061-.186-.068-.28-.185-.137-.704-.415-.983-.532a6.5 6.5 0 0 0-2.511-.514c-1.91.008-3.413 1.215-3.54 2.826q-.122 1.746 1.73 2.827c.263.152 1.68.716 2.244.892 1.774.552 2.695 1.542 2.478 2.697-.197 1.047-1.299 1.724-2.818 1.744-1.203-.046-2.287-.537-3.127-1.19l-.141-.11c-.104-.08-.218-.075-.287.03-.05.077-.376.547-.458.67-.077.108-.035.168.045.234.35.293.817.613 1.134.775a6.7 6.7 0 0 0 2.829.727 4.9 4.9 0 0 0 2.075-.354c1.095-.465 1.803-1.394 1.945-2.554M12 1.401c-2.068 0-3.754 1.95-3.833 4.39h7.665C15.751 3.35 14.066 1.4 12 1.4m7.851 22.598-.08.001-15.784-.002c-1.074-.04-1.863-.91-1.971-1.991l-.01-.195-.707-15.526a.46.46 0 0 1 .45-.494h4.975C6.845 2.568 9.16 0 12 0s5.153 2.569 5.275 5.79h4.968a.46.46 0 0 1 .458.483l-.773 15.588-.007.131c-.094 1.094-.979 1.977-2.07 2.006z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/shopify.svg����������������������������������0000664�0000000�0000000�00000002175�14753064456�0025311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.337 23.979 7.216-1.561s-2.604-17.613-2.625-17.73c-.018-.116-.114-.192-.211-.192s-1.929-.136-1.929-.136-1.275-1.274-1.439-1.411a.4.4 0 0 0-.121-.074l-.914 21.104zM11.71 11.305s-.81-.424-1.774-.424c-1.447 0-1.504.906-1.504 1.141 0 1.232 3.24 1.715 3.24 4.629 0 2.295-1.44 3.76-3.406 3.76-2.354 0-3.54-1.465-3.54-1.465l.646-2.086s1.245 1.066 2.28 1.066a.944.944 0 0 0 .975-.932c0-1.619-2.654-1.694-2.654-4.359-.034-2.237 1.571-4.416 4.827-4.416 1.257 0 1.875.361 1.875.361l-.945 2.715zM11.17.83c.136 0 .271.038.405.135-.984.465-2.064 1.639-2.508 3.992a63 63 0 0 1-1.889.578C7.697 3.75 8.951.84 11.17.84zm1.235 2.949v.135c-.754.232-1.583.484-2.394.736.466-1.777 1.333-2.645 2.085-2.971.193.501.309 1.176.309 2.1m.539-2.234c.694.074 1.141.867 1.429 1.755-.349.114-.735.231-1.158.366v-.252c0-.752-.096-1.371-.271-1.871zm2.992 1.289c-.02 0-.06.021-.078.021s-.289.075-.714.21c-.423-1.233-1.176-2.37-2.508-2.37h-.115C12.135.209 11.669 0 11.265 0 8.159 0 6.675 3.877 6.21 5.846c-1.194.365-2.063.636-2.16.674-.675.213-.694.232-.772.87-.075.462-1.83 14.063-1.83 14.063L15.009 24z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/shopware.svg���������������������������������0000664�0000000�0000000�00000001520�14753064456�0025451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.948 10.891a.17.17 0 0 0-.061-.118c-2.503-2.078-4.53-2.926-6.99-2.926-1.313 0-2.32.264-2.992.783a2.22 2.22 0 0 0-.89 1.812c0 2.06 2.518 3 5.436 4.088 1.502.56 3.057 1.14 4.483 1.932a.16.16 0 0 0 .083.022.2.2 0 0 0 .059-.01.17.17 0 0 0 .102-.101c.545-1.396.822-2.867.822-4.374a13 13 0 0 0-.052-1.108m-4.81 10.48c-1.043-.786-2.58-1.383-4.206-2.013-1.937-.75-4.132-1.603-5.78-2.913-1.867-1.487-2.776-3.362-2.776-5.732 0-2.129.883-3.947 2.553-5.262 1.873-1.474 4.712-2.254 8.207-2.254.966 0 1.888.058 2.743.176a.17.17 0 0 0 .179-.098.17.17 0 0 0-.042-.2A11.96 11.96 0 0 0 12.001.001a11.92 11.92 0 0 0-8.486 3.515A11.92 11.92 0 0 0 0 11.999c0 3.205 1.247 6.218 3.515 8.484A11.92 11.92 0 0 0 12 23.998c2.59 0 5.057-.814 7.135-2.35a.17.17 0 0 0 .07-.138.17.17 0 0 0-.068-.14"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/shortcut.svg���������������������������������0000664�0000000�0000000�00000001410�14753064456�0025472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 6a6 6 0 0 0-6-6H6a5.98 5.98 0 0 0-4.242 1.758 6 6 0 0 0 0 8.484l2.137 2.137A6.01 6.01 0 0 0 0 18a6 6 0 0 0 6 6h12a5.98 5.98 0 0 0 4.242-1.758 6 6 0 0 0 0-8.484l-2.137-2.137A6 6 0 0 0 24 6M3.404 20.598c-.694-.694-1.075-1.615-1.075-2.596s.38-1.903 1.075-2.595a3.65 3.65 0 0 1 2.443-1.074l7.34 7.34H6a3.66 3.66 0 0 1-2.596-1.075m17.192-5.194C21.29 16.1 21.67 17.02 21.67 18s-.38 1.904-1.075 2.596A3.64 3.64 0 0 1 18 21.67a3.64 3.64 0 0 1-2.596-1.075l-12-11.998C2.71 7.904 2.33 6.983 2.33 6.002s.38-1.903 1.075-2.595C4.1 2.712 5.02 2.33 6 2.33s1.904.381 2.596 1.076zm0-6.806a3.65 3.65 0 0 1-2.443 1.073l-7.34-7.342H18a3.64 3.64 0 0 1 2.596 1.075C21.29 4.1 21.67 5.02 21.67 6s-.38 1.904-1.075 2.598z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/showpad.svg����������������������������������0000664�0000000�0000000�00000001651�14753064456�0025273�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 11.987c0-.09 0-.179-.013-.28v-.039c0-.076-.012-.153-.012-.242v-.013a5.476 5.476 0 0 0-4.877-4.877h-.013c-.076-.013-.153-.013-.242-.013h-.039c-.09 0-.178-.012-.28-.012a5.43 5.43 0 0 0-3.869 1.608L12.791 9.97l1.354 1.353 1.34-1.353h-.013l.511-.51a3.54 3.54 0 0 1 2.528-1.047h.204a.6.6 0 0 1 .153.013h.013a3.56 3.56 0 0 1 3.179 3.178v.013c0 .051.012.102.012.153v.409c0 .05-.012.102-.012.153a3.57 3.57 0 0 1-1.98 2.834l-.037.013a.4.4 0 0 0-.103.05l-.076.026-.064.026-.115.038-.025.013a3.56 3.56 0 0 1-3.69-.855l-.498-.498-3.37-3.358L6.74 5.26 5.387 6.613 0 12l1.353 1.353L6.74 18.74l1.354-1.353 3.37-3.37-1.353-1.353-3.37 3.37L2.693 12 6.74 7.953l2.017 2.03 5.388 5.387.498.498a5.4 5.4 0 0 0 3.88 1.596c.613 0 1.213-.102 1.788-.294l.05-.013c.052-.025.116-.038.167-.063l.102-.039.102-.05.153-.077.051-.026a5.5 5.5 0 0 0 3.051-4.353c.013-.077.013-.166.013-.243z"/></svg>���������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/showtime.svg���������������������������������0000664�0000000�0000000�00000001421�14753064456�0025460�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.99 12.167c0-4.808 1.779-7.84 3.903-8.16C18.769 1.397 15.221 0 11.999 0 8.451 0 5.265 1.54 3.07 3.985c2.094.416 2.806 2.174 2.806 4.892H3.314c0-1.605-.334-2.436-1.284-2.436-.427 0-.758.217-.954.587q-.042.09-.084.184a2.1 2.1 0 0 0-.114.71c0 3.324 5.46 3.159 5.46 8.27 0 1.995-1.53 3.855-3.252 3.855C5.35 22.52 8.441 24 12 24c3.46 0 6.577-1.464 8.766-3.808-2.018-.509-3.776-3.413-3.776-8.025m-1.142 7.921h-2.746V13.26h-2.967v6.83H7.384V4.327h2.746v6.348h2.972V4.327h2.746zM2.372 17.58c-1.32 0-2.399-2.32-2.372-5.8 1.905 1.72 3.681 2.11 3.681 4.145 0 .981-.543 1.655-1.309 1.655M24 12.002c0 2.844-.896 5.409-2.1 5.409-1.445 0-2.181-2.703-2.181-5.498 0-2.654.771-5.308 2.181-5.308 1.676 0 2.1 4.102 2.1 5.397"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/showwcase.svg��������������������������������0000664�0000000�0000000�00000004757�14753064456�0025643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.554 2.938q.84-.155 1.695-.22c.128-.01.218-.031.273-.121.094-.153.26-.211.492-.228.624-.047 1.243-.05 1.869-.007.301.02.503.097.618.295.046.078.124.107.242.116q.368.026.733.076c.316.042.629.096.957.15a2 2 0 0 0-.244-.512c-.379-.605-.986-1.018-1.89-1.185-.679-.126-1.366-.114-2.054-.075-.43.025-.842.11-1.226.259-.8.307-1.193.831-1.466 1.452Zm-8.079.553c.272.103.527.245.757.423.503.385.849.843 1.17 1.313.356.522.637 1.067.901 1.62.053-.033.057-.07.068-.108.135-.437.293-.869.496-1.292.36-.75.841-1.444 1.718-1.953.088-.051.08-.087.015-.147a5.4 5.4 0 0 0-.927-.706 1.8 1.8 0 0 0-.955-.24c-.793.013-1.515.2-2.199.475-.394.158-.76.343-1.044.615m7.245-.165c-1.072.24-1.899.706-2.473 1.406-.458.557-.708 1.173-.936 1.793a15 15 0 0 0-.55 1.969 53 53 0 0 0-.589 3.215q-.183 1.175-.34 2.354c-.15 1.115-.285 2.23-.295 3.352-.01.985.021 1.966.44 2.916.274.623.746 1.135 1.54 1.477.823.353 1.724.544 2.647.688 1.366.213 2.755.283 4.148.3 1.498.016 2.994-.01 4.48-.167 1.09-.115 2.157-.29 3.168-.62.92-.3 1.59-.768 1.955-1.463.362-.69.486-1.408.528-2.136.095-1.644-.124-3.277-.354-4.91a83 83 0 0 0-.573-3.588c-.135-.73-.28-1.459-.468-2.182-.22-.84-.48-1.672-.931-2.466-.55-.967-1.473-1.65-2.876-1.944-3.4-.71-7.039-.326-8.521.006m14.169 9.746c0 .095.005.19.038.283l.111.766c-.016.048-.008.094.024.156.026-.064.083-.1.065-.155l.336-1.198c.023-.045.045-.089.033-.137.065-.11.08-.228.12-.342.244-.69.41-1.392.566-2.095.173-.773.321-1.55.512-2.32a9.9 9.9 0 0 0 .296-2.862c-.017-.356-.04-.714-.172-1.083-.11.062-.206.108-.29.165-.386.26-.66.582-.906.915-.699.95-1.153 1.967-1.577 2.993-.021.052-.009.102.003.154.22.93.38 1.867.53 2.804q.157.978.31 1.956zM.067 4.334c-.07.204-.066.412-.067.62-.002.941.139 1.874.308 2.807.147.81.352 1.613.551 2.417q.287 1.17.6 2.335c.2.739.272 1.487.348 2.236.005.054-.007.113.045.168.01-.016.023-.027.025-.039q.204-1.646.469-3.282c.172-1.064.337-2.129.58-3.186.032-.138.07-.272 0-.417-.141-.284-.247-.576-.382-.861-.357-.754-.737-1.502-1.306-2.189-.23-.278-.47-.555-.84-.754-.083-.052-.174-.145-.274-.112-.084.027-.053.141-.07.217-.002.013.008.027.013.04m22.248-1.497a7.2 7.2 0 0 0-2.429-.4 1.25 1.25 0 0 0-.673.197c-.343.22-.58.494-.784.787-.042.06.003.084.056.116q.35.209.646.49c.676.643 1.022 1.392 1.307 2.16.087.234.164.47.256.734.28-.574.55-1.12.903-1.64.43-.632.893-1.249 1.699-1.682.063-.033.13-.056.195-.085.084-.022.033-.044 0-.066-.016-.048-.06-.082-.111-.112a.43.43 0 0 0-.19-.131 2.4 2.4 0 0 0-.596-.28c-.09-.035-.171-.083-.28-.088z"/></svg>�����������������mkdocs-material-9.6.4/material/templates/.icons/simple/shutterstock.svg�����������������������������0000664�0000000�0000000�00000000416�14753064456�0026366�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.839 18.761h5.313a1.53 1.53 0 0 0 1.527-1.528v-5.76h5.237v5.76A6.767 6.767 0 0 1 15.152 24H9.839zM14.16 5.237H8.85a1.53 1.53 0 0 0-1.53 1.527v5.761H2.085V6.764A6.763 6.763 0 0 1 8.85 0h5.31z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sidekiq.svg����������������������������������0000664�0000000�0000000�00000003755�14753064456�0025266�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.639 23.767C4.145 22.67 0 17.815 0 12 0 5.377 5.377 0 12 0c4.47 0 8.373 2.449 10.437 6.078-.159.124-.425.289-.625.467q-.274.243-1.149.598-.55-.492-.722-.411c-.174.081-1.435.742-2.023.919s-2.621 1.601-3.156 1.734c-.534.132-.984.284-1.218.461-.234.176-.526.105-.857.14-.167.018-.435.303-.924.434a.7.7 0 0 0-.156.308q-.491 1.435-.711 1.887-.219.45-.784 1.232.468.534.467.733c0 .2-.034 1.332-.143 1.863q-.108.53-.22 5.317 0 .83-.166 1.028c-.167.197-.361.727-.361.871q-.002.04-.05.108M22.747 6.659A11.94 11.94 0 0 1 24 12c0 6.623-5.377 12-12 12q-.795 0-1.564-.101c.26-.328.445-.295.597-.434s.425-.514.288-.677q-.137-.164-.137-.713.311-.183.472-.184c.161 0 .03-.574.239-1.178q.21-.603.996-6.286.482-1.42.653-1.556c.171-.136.568-.477 1.363-1.156q1.893-1.172 2.111-1.361c.219-.19 2.354-.798 2.646-1.185q.292-.387 1.241-.895v-.241q.598-.205.783-.205c.186 0 .435.113.567-.177.133-.291.046-.615.231-.767a6 6 0 0 0 .261-.225M9.253 13.361q-.03.069-.026.081a1.9 1.9 0 0 0 0 .615c.104.721-.598.905-.598.905l.37.319c.744-.136.744-1.083.744-1.083a3 3 0 0 1-.052-.678c.002.001.436-.513.81-1.309.192-.409.374-.921.498-1.258.12-.326.143-.536.125-.595 0 .02-.219-.072-.428-.129l.001-.011-.376-.345q1.349-.519 1.533-.757c.184-.238.516-.958.516-1.231q0-.272.08-1.891-.789.099-.92 0c-.132-.099-.256-.493-.256-.826q0-.332-.205-.896l-.372-.103q-.084-.415-.178-.415t-.198.198q-.118.455-.118.566c0 .11-.08.424.118.65q.199.227.466.826-.167.613 0 .781c.167.167 0 .388 0 .516q0 .128-.09.594-1.534.266-1.757.177c-.223-.089-.384.005-.706.193l-.409.392q.105-.454 0-.666c-.106-.213-.165-.347-.165-.54 0-.08-.111-.264-.111-.397q0-.081.045-.269l-.291-.276q.103-.005.115-.058.013-.052-.189-.141-1.434.072-1.87.568t-.067 1.387q.258.425.446.623.189.197.58.422l-.343.195-.237.723-.576 1.053-.959 2.359-.185.564q.186 1.1.329 1.226.141.126.519.103.38.422.493.302c.03-.032.078-.079.056-.234-.01-.07-.107-.205-.099-.296.007-.087.089-.185.116-.373a3 3 0 0 0 0-.469l1.519-1.556.874.185 1.154.205z"/></svg>�������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sidequest.svg��������������������������������0000664�0000000�0000000�00000001174�14753064456�0025634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 10.409 18.689 1.21H8.065l2.518 4.359.769 1.331-.918 1.592H8.598l-.769-1.333-2.517-4.36L0 11.999l5.311 9.199 2.518-4.36.769-1.333h1.836l.919 1.593-.77 1.332-2.517 4.359H18.69L24 13.59h-6.571l-.919-1.591.919-1.59zM5.288 5.328 6.27 7.03 4.763 9.64h6.334l3.169-5.486h-3.015l-.983-1.702h7.046l-5.183 8.977H1.763zm4.98 16.219.983-1.703h3.015l-3.169-5.488H4.763l1.507 2.611-.982 1.704-3.525-6.104h10.368l1.364 2.363 3.819 6.617zm8.084-4.062 1.505-2.61h1.969l-3.525 6.102-3.109-5.382-2.077-3.596 2.459-4.257 2.727-4.72 3.525 6.102h-1.969l-1.505-2.611-3.17 5.486z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/siemens.svg����������������������������������0000664�0000000�0000000�00000002123�14753064456�0025264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.478 10.016q.361 0 1.046.14v.726a2.5 2.5 0 0 0-.946-.213q-.615 0-.615.354 0 .132.124.216.103.067.568.286.67.312.89.541.264.273.264.705 0 .621-.516.949-.418.264-1.085.264-.563 0-1.133-.139v-.755q.615.203 1.09.203.655 0 .655-.362a.3.3 0 0 0-.095-.227q-.098-.097-.5-.27-.722-.312-.94-.53a1 1 0 0 1-.284-.73q0-.566.413-.864.408-.294 1.064-.294m21.19 0q.37 0 .956.123l.09.016v.727a2.5 2.5 0 0 0-.948-.213q-.613 0-.612.354 0 .132.123.216.099.065.57.286.665.312.889.541.264.273.264.705 0 .621-.514.949-.42.264-1.087.264-.564 0-1.134-.139v-.755q.61.203 1.09.203.655 0 .655-.362 0-.135-.092-.227-.098-.098-.503-.27-.72-.308-.94-.53a1 1 0 0 1-.284-.732q0-.564.413-.862.408-.294 1.064-.294m-12.674.066.92 2.444.942-2.444h1.257v3.825h-.968v-2.708l-1.072 2.747h-.632l-1.052-2.747v2.708H8.67v-3.825zm-5.587 0v3.825H3.386v-3.825zm3.554 0v.692H6.327v.864H7.75v.63H6.327v.908h1.677v.73h-2.66v-3.824zm8.707 0v.692h-1.634v.864h1.422v.63h-1.422v.908h1.677v.73H14.05v-3.824zm1.898 0 1.255 2.56v-2.56h.719v3.825h-1.15l-1.288-2.595v2.595h-.72v-3.825z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sifive.svg�����������������������������������0000664�0000000�0000000�00000000375�14753064456�0025115�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.906 12.408 3.118-9.671h11.952l1.213 3.762H8.632l-.675 2.135h11.92l1.792 5.558L12 21.319l-9.189-6.777h6.205l2.957 2.18 5.85-4.312zM19.416.443H4.585L0 14.73l12 8.826 12-8.83z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/signal.svg�����������������������������������0000664�0000000�0000000�00000003115�14753064456�0025100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0q-.934 0-1.83.139l.17 1.111a11 11 0 0 1 3.32 0l.172-1.111A12 12 0 0 0 12 0M9.152.34A12 12 0 0 0 5.77 1.742l.584.961a10.8 10.8 0 0 1 3.066-1.27zm5.696 0-.268 1.094a10.8 10.8 0 0 1 3.066 1.27l.584-.962A12 12 0 0 0 14.848.34M12 2.25a9.75 9.75 0 0 0-8.539 14.459c.074.134.1.292.064.441l-1.013 4.338 4.338-1.013a.62.62 0 0 1 .441.064A9.7 9.7 0 0 0 12 21.75c5.385 0 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25m-7.092.068a12 12 0 0 0-2.59 2.59l.909.664a11 11 0 0 1 2.345-2.345zm14.184 0-.664.909a11 11 0 0 1 2.345 2.345l.909-.664a12 12 0 0 0-2.59-2.59M1.742 5.77A12 12 0 0 0 .34 9.152l1.094.268a10.8 10.8 0 0 1 1.269-3.066zm20.516 0-.961.584a10.8 10.8 0 0 1 1.27 3.066l1.093-.268a12 12 0 0 0-1.402-3.383M.138 10.168A12 12 0 0 0 0 12q0 .934.139 1.83l1.111-.17A11 11 0 0 1 1.125 12q0-.848.125-1.66zm23.723.002-1.111.17q.125.812.125 1.66c0 .848-.042 1.12-.125 1.66l1.111.172a12.1 12.1 0 0 0 0-3.662M1.434 14.58l-1.094.268a12 12 0 0 0 .96 2.591l-.265 1.14 1.096.255.36-1.539-.188-.365a10.8 10.8 0 0 1-.87-2.35m21.133 0a10.8 10.8 0 0 1-1.27 3.067l.962.584a12 12 0 0 0 1.402-3.383zm-1.793 3.848a11 11 0 0 1-2.345 2.345l.664.909a12 12 0 0 0 2.59-2.59zm-19.959 1.1L.357 21.48a1.8 1.8 0 0 0 2.162 2.161l1.954-.455-.256-1.095-1.953.455a.675.675 0 0 1-.81-.81l.454-1.954zm16.832 1.769a10.8 10.8 0 0 1-3.066 1.27l.268 1.093a12 12 0 0 0 3.382-1.402zm-10.94.213-1.54.36.256 1.095 1.139-.266c.814.415 1.683.74 2.591.961l.268-1.094a10.8 10.8 0 0 1-2.35-.869zm3.634 1.24-.172 1.111a12.1 12.1 0 0 0 3.662 0l-.17-1.111q-.812.125-1.66.125a11 11 0 0 1-1.66-.125"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/silverairways.svg����������������������������0000664�0000000�0000000�00000013775�14753064456�0026544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.102 20.437v-2.675a1.3 1.3 0 0 0-.06-.357l-.007-.03a7 7 0 0 1-.03-.934c.016-.117.05-.234.075-.35 0-.004.011-.008.011-.011 0-.053.018-.12-.008-.153s-.09.01-.128.029c-.15.069-.313.099-.464.164-.193.083-.398.132-.591.217a4 4 0 0 1-.406.143c-.128.04-.25.095-.376.138s-.241.087-.361.129c-.174.06-.346.125-.528.17a.44.44 0 0 0-.207.143.05.05 0 0 0-.008.043c.09.143 0 .254-.07.362-.068.108-.166.195-.228.305-.061.11-.142.193-.207.294-.114.173-.255.327-.383.49q-.074.094-.144.19a.6.6 0 0 1-.105.12.16.16 0 0 1-.109.012c-.009 0-.016-.045-.018-.069-.013-.152.052-.286.112-.418q.152-.327.32-.648a1.5 1.5 0 0 0 .139-.41c.013-.074.018-.147.029-.22.02-.123.1-.196.207-.26.171-.099.36-.15.54-.223q.207-.082.415-.16.31-.119.614-.24.214-.085.429-.168c.207-.083.423-.157.634-.235q.158-.06.315-.12c.153-.059.307-.116.457-.18a.23.23 0 0 0 .143-.177c.021-.112.048-.214 0-.324a.4.4 0 0 1 0-.132v-3.506a.58.58 0 0 0-.11-.336 1.7 1.7 0 0 0-.188-.222c-.116-.12-.212-.255-.319-.382a1.05 1.05 0 0 0-.523-.337.7.7 0 0 0-.219-.034c-.077.005-.155 0-.233 0-.217 0-.432.057-.65.033-.054-.006-.093.076-.163.014-.032-.028-.104-.011-.158-.013a.8.8 0 0 1-.182-.003c-.148-.044-.3-.07-.445-.128a11 11 0 0 0-.65-.234c-.22-.072-.426-.127-.63-.207a1.67 1.67 0 0 1-.715-.512 2.2 2.2 0 0 1-.304-.539c-.049-.125-.063-.26-.121-.38a.1.1 0 0 1-.006-.032c0-.08.012-.161-.034-.235 0-.305-.006-.61.006-.914a1 1 0 0 1 .03-.185c.014-.062.02-.126.034-.185.033-.134.086-.263.13-.395a3.5 3.5 0 0 1 .233-.5 2.5 2.5 0 0 1 .315-.469c.108-.126.198-.27.32-.38.192-.171.372-.357.59-.5.074-.048.137-.12.206-.176.175-.138.33-.295.506-.429.117-.09.217-.197.325-.296a2 2 0 0 0 .184-.154 2.3 2.3 0 0 0 .31-.42c.046-.086.091-.174.139-.256.069-.11.083-.232.121-.345a.7.7 0 0 0-.1-.339 1.7 1.7 0 0 0-.247-.232.26.26 0 0 0-.306-.01c-.121.068-.258.068-.384.116-.035.013-.083-.008-.124-.015-.016 0-.03-.016-.044-.015-.15.012-.276-.056-.397-.125-.07-.04-.148-.07-.221-.108a1.2 1.2 0 0 0-.223-.06.57.57 0 0 0-.356.054 1.5 1.5 0 0 0-.507.34 12 12 0 0 1-.457.423 1 1 0 0 1-.183.117c-.102.053-.154.018-.171-.092a.7.7 0 0 1 .041-.267 3 3 0 0 1 .092-.31c.036-.102.07-.207.1-.307A1.7 1.7 0 0 1 5.65.952c.182-.268.457-.392.74-.494A2 2 0 0 1 6.789.37a1.6 1.6 0 0 0 .397-.08c.118-.05.243-.08.362-.129a1.5 1.5 0 0 1 .436-.126c.063-.005.119-.044.186-.033.249.04.49.088.692.262a3 3 0 0 1 .276.25 2.4 2.4 0 0 1 .48.716 2.1 2.1 0 0 1 .162.599 3 3 0 0 1 .025.402c0 .096-.025.19-.03.286a2 2 0 0 1-.06.257 3 3 0 0 1-.309.82 2.1 2.1 0 0 1-.328.48c-.04.042-.069.097-.107.138a2.8 2.8 0 0 1-.617.477 4 4 0 0 0-.602.386c-.115.095-.24.19-.309.335-.188.163-.267.395-.374.609a3.4 3.4 0 0 0-.187.537c-.046.15-.042.31-.098.458a.1.1 0 0 0 0 .033c-.007.079.01.158-.03.237a.18.18 0 0 0 0 .16c.054.07 0 .148.053.214s.07.155.123.213a.58.58 0 0 0 .341.172 2 2 0 0 0 .297 0q.007-.138.013-.276a1 1 0 0 1 0-.116c.01-.07-.02-.146.027-.222.034-.053-.025-.139.038-.2.013-.255.133-.475.24-.698a2 2 0 0 1 .187-.287 3 3 0 0 1 .175-.207c.15-.17.346-.287.527-.415.228-.156.484-.243.743-.333a1.6 1.6 0 0 1 .622-.1c.133.006.266-.004.4 0 .084.004.166-.02.254.026.065.036.161-.022.233.038.099-.023.19.025.284.038.095.013.184.04.277.055.113.02.224.048.336.074.15.036.3.069.45.118l.337.107a7.6 7.6 0 0 1 1.202.508c.228.117.465.244.691.383.227.14.437.262.643.415q.216.157.436.31c.121.084.23.184.357.261.07.04.12.104.185.153.114.083.208.188.318.276.392.324.725.708 1.089 1.06.047.045.108.068.144.137a1 1 0 0 1 .078.168 1.6 1.6 0 0 0 .29.512 7 7 0 0 1 .46.622c.076.11.099.247.144.372a1.1 1.1 0 0 1 .069.438c-.006.1.007.2 0 .299a1.3 1.3 0 0 1-.132.493.4.4 0 0 1-.036.07.05.05 0 0 1-.042.013c-.01 0-.018-.024-.02-.038-.021-.09-.045-.183-.06-.276a2 2 0 0 0-.124-.382 7 7 0 0 0-.276-.665c-.12-.248-.315-.286-.507-.267-.01 0-.03.036-.025.047q.061.141.13.276a6 6 0 0 1 .322.814c.069.216.113.44.175.659.005.017-.008.04-.013.06-.018-.006-.044-.007-.055-.02-.035-.04-.064-.085-.095-.126-.005-.006-.016-.008-.024-.013 0 .01-.012.022-.01.029.057.159.003.328.039.484a3 3 0 0 1 .027.37c.008.084.026.167.032.252s0 .166 0 .249c0 .018.022.035.028.054a.08.08 0 0 1-.055.085c-.04.006-.032-.028-.045-.05a.5.5 0 0 1-.069-.207 3 3 0 0 0-.074-.334c-.027-.105-.062-.207-.089-.312a5 5 0 0 0-.186-.604 6 6 0 0 0-.211-.477 3 3 0 0 0-.227-.356 3.4 3.4 0 0 0-.331-.36.5.5 0 0 0-.06-.058.058.058 0 0 0-.081.043v.3a.2.2 0 0 1 0 .064c-.006.013-.04.026-.049.02a.2.2 0 0 1-.048-.062 1 1 0 0 1-.093-.177 1.5 1.5 0 0 0-.288-.477 2.3 2.3 0 0 0-.438-.419 2 2 0 0 1-.228-.165c-.1-.093-.226-.11-.34-.15a.33.33 0 0 0-.294.069c-.077.063-.15.045-.228.054a.23.23 0 0 1-.16-.059c-.17-.118-.254-.116-.474-.08-.256.042-.463.169-.67.308a1.26 1.26 0 0 1-.516.202c-.108.016-.215.01-.32.03-.155.03-.317.025-.47.07a1 1 0 0 0-.245.127.4.4 0 0 0-.12.097c-.115.166-.118.283-.004.45q.092.136.2.265.2.239.387.484c.108.138.233.268.338.41.104.143.22.271.322.415s.235.276.346.422q.243.304.483.613a3.7 3.7 0 0 0 .473.5.8.8 0 0 1 .208.213c.011.023.038.05.033.07a.2.2 0 0 1-.058.084 1 1 0 0 1-.277.132c-.276.1-.553.193-.83.288s-.547.173-.813.282c-.265.11-.542.158-.793.293-.012.007-.033 0-.047 0a.167.167 0 0 0-.139.177.6.6 0 0 0 .027.222c.026.073.006.163.006.246 0 .228-.008.455 0 .682.005.1-.043.187-.038.285a.9.9 0 0 1 0 .298c-.044.146-.006.294-.031.436-.047.266-.026.534-.03.8-.004.267.025.546-.007.814-.04.335-.018.667-.026 1s.024.667-.008.997c-.045.484-.012.968-.026 1.452 0 .11.006.107.064.255q.055.144.12.283a.224.224 0 0 1-.089.283.1.1 0 0 1-.044.013h-.265c-.089 0-.152.039-.236.037a30 30 0 0 0-1.03 0 .5.5 0 0 0-.171.026c-.09.034-.18-.034-.265-.07-.01-.003-.01-.063 0-.084a.34.34 0 0 1 .224-.139c.202-.046.399-.113.601-.153.128-.026.254-.062.384-.08a.8.8 0 0 0 .253-.07.22.22 0 0 0 .117-.18c.003-.04 0-.078 0-.117zm.465-5.566v.365c0 .033-.012.053.047.03.09-.036.179-.077.27-.109a9 9 0 0 0 .515-.198c.17-.07.355-.131.53-.202q.263-.108.531-.2a2 2 0 0 0 .24-.1c.063-.03.079-.08.045-.13-.081-.116-.16-.234-.247-.345a8 8 0 0 0-.435-.533c-.139-.156-.271-.32-.411-.477s-.255-.305-.386-.454a12 12 0 0 1-.562-.663c-.008-.011-.033-.024-.04-.02a.07.07 0 0 0-.03.043c-.013.284 0 .566-.027.85-.031.301 0 .608-.008.912s.022.6-.03.899a2 2 0 0 0-.003.332z"/></svg>���mkdocs-material-9.6.4/material/templates/.icons/simple/similarweb.svg�������������������������������0000664�0000000�0000000�00000001416�14753064456�0025763�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.099 5.781c-1.283-2-3.14-3.67-5.27-4.52l-.63-.213a7.4 7.4 0 0 0-2.15-.331c-2.307.01-4.175 1.92-4.175 4.275a4.3 4.3 0 0 0 .867 2.602l-.26-.342c.124.186.26.37.417.556.663.802 1.604 1.635 2.822 2.58 2.999 2.32 4.943 4.378 5.104 6.93.038.344.062.696.062 1.051 0 1.297-.283 2.67-.764 3.635h.005s-.207.377-.077.487c.066.057.21.1.46-.053a12.1 12.1 0 0 0 3.4-3.33 12.1 12.1 0 0 0 2.088-6.635 12.1 12.1 0 0 0-1.9-6.692zm-9.096 8.718-1.878-1.55c-3.934-2.87-5.98-5.966-4.859-9.783a9 9 0 0 1 .37-1.016v-.004s.278-.583-.327-.295a12.07 12.07 0 0 0-6.292 9.975 12.1 12.1 0 0 0 2.053 7.421 9.4 9.4 0 0 0 2.154 2.168H4.22c4.148 3.053 7.706 1.446 7.706 1.446h.003a4.85 4.85 0 0 0 2.962-4.492 4.86 4.86 0 0 0-1.889-3.87z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/simkl.svg������������������������������������0000664�0000000�0000000�00000001711�14753064456�0024742�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.84 0A3.83 3.83 0 0 0 0 3.84v16.32A3.83 3.83 0 0 0 3.84 24h16.32A3.83 3.83 0 0 0 24 20.16V3.84A3.83 3.83 0 0 0 20.16 0zm8.567 4.11q3.11 0 4.393.186 1.69.252 2.438.877 1.009.867 1.009 3.104 0 .241-.01.768h-4.234q-.021-.537-.074-.746-.147-.615-.966-.692-.725-.065-3.53-.066-2.775 0-3.289.165-.578.2-.578 1.024 0 .792.61.969.514.143 4.633.275 3.73.11 4.76.275 1.04.165 1.654.495t.983.936q.556.892.557 2.873 0 2.212-.546 3.247-.547 1.024-1.785 1.398-1.219.374-6.71.374-3.338 0-4.82-.187-1.806-.22-2.593-.86-.85-.684-1.008-1.93a10.5 10.5 0 0 1-.085-1.434v-.789H7.44q-.01 1.11.43 1.428.232.151.525.203.294.056 1.03.077a166 166 0 0 0 2.405.022q2.793-.01 3.234-.033.83-.065 1.092-.23.368-.242.368-1.077 0-.57-.231-.802-.316-.318-1.503-.34-.82 0-3.425-.132-2.69-.133-3.488-.154-2.08-.066-2.932-.505-1.092-.56-1.429-1.91-.189-.747-.189-1.956 0-2.547.925-3.59.693-.79 2.102-1.044 1.271-.22 6.053-.22z"/></svg>�������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/simpleanalytics.svg��������������������������0000664�0000000�0000000�00000000235�14753064456�0027024�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.019 13.019h3.849V24h-3.85zm8.943-6.68h3.85V24h-3.85zM19.132 0h3.85v24h-3.85z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/simpleicons.svg������������������������������0000664�0000000�0000000�00000000772�14753064456�0026156�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C8.688 0 6 2.688 6 6s2.688 6 6 6c4.64-.001 7.526 5.039 5.176 9.04h1.68A7.507 7.507 0 0 0 12 10.5 4.5 4.5 0 0 1 7.5 6c0-2.484 2.016-4.5 4.5-4.5s4.5 2.016 4.5 4.5H18c0-3.312-2.688-6-6-6m0 3a3 3 0 0 0 0 6c4 0 4-6 0-6m0 1.5A1.5 1.5 0 0 1 13.5 6v.002c-.002 1.336-1.617 2.003-2.561 1.058S10.664 4.5 12 4.5M7.5 15v1.5H9v6H4.5V24h15v-1.5H15v-6h1.5V15Zm3 1.5h3v6h-3zm-6 1.47c0 1.09.216 2.109.644 3.069h1.684A5.96 5.96 0 0 1 6 17.97Z"/></svg>������mkdocs-material-9.6.4/material/templates/.icons/simple/simplelogin.svg������������������������������0000664�0000000�0000000�00000002636�14753064456�0026154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.451 3.672q.16.158.277.348c.178.293.272.628.272.97v9.604c0 .342-.095.679-.274.971a1.9 1.9 0 0 1-.383.444c-.335.286-.76.443-1.201.443H11.727a9.77 9.77 0 0 1-5.2 4.365l-.136.049-.135-.052a9.74 9.74 0 0 1-4.499-3.526A9.7 9.7 0 0 1 0 11.701a9.8 9.8 0 0 1 .227-2.1l.052-.237.236-.058q.083-.02.162-.042a12 12 0 0 0 5.568-3.262l.04-.043.232-.239v-.73c0-.343.095-.68.274-.972q.117-.19.278-.346a1.84 1.84 0 0 1 1.193-.537h13.994a1.84 1.84 0 0 1 1.195.537m-15.075.346q-.05 0-.098.004h-.142l.023.021 6.815 6.029a.435.435 0 0 0 .576 0l6.815-6.029.023-.021h-.146a1 1 0 0 0-.098-.004zm-.898.605a.95.95 0 0 0-.072.367v1.586a12 12 0 0 0 4.938 2.681l.114.029.057.015.237.058.051.239a9 9 0 0 1 .1.565l.417-.369zM2.329 16.719a9.05 9.05 0 0 0 4.074 3.312 9 9 0 0 0 5.68-10.036 12.74 12.74 0 0 1-5.555-3.169 12.75 12.75 0 0 1-5.583 3.177 9 9 0 0 0-.161 1.698 9.04 9.04 0 0 0 1.545 5.018m10.684-5.098a9.7 9.7 0 0 1-.837 3.944h10.212l-.028-.025-5.826-5.153-.985.87a.43.43 0 0 1-.575 0l-.985-.87-.984.87q.008.182.008.364m10.029 3.339a.9.9 0 0 0 .072-.366l.001-9.603a1 1 0 0 0-.071-.364l-5.84 5.168zM6.609 8.206a10.24 10.24 0 0 0 4.379 2.464q.11.607.118 1.223v.082a7.23 7.23 0 0 1-1.705 4.655l-.007.008a7.23 7.23 0 0 1-2.97 2.095 7.26 7.26 0 0 1-4.515-6.692q0-.689.129-1.365a10.25 10.25 0 0 0 4.486-2.551zm-3.177 5.053 2.752 2.752h.001l3.831-3.831-.847-.846-2.983 2.984-1.908-1.907z"/></svg>��������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/simplenote.svg�������������������������������0000664�0000000�0000000�00000000766�14753064456�0026013�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.466 3.62c-.004.052-.014.104-.018.158-.406 4.626 2.747 8.548 8.03 9.994 2.024.553 5.374 2.018 5.06 5.599a5.06 5.06 0 0 1-1.803 3.46c-1.022.857-2.308 1.21-3.64 1.166C5.147 23.794 0 18.367 0 12.05a11.95 11.95 0 0 1 3.467-8.428zM9.82 1.032C10.727.27 11.876-.046 13.055.005 18.996.27 24 5.67 24 11.936a11.94 11.94 0 0 1-2.667 7.536c.332-4.908-2.94-8.897-8.59-10.441-2.337-.64-4.749-2.274-4.514-4.948A4.47 4.47 0 0 1 9.82 1.03z"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/simple/simplex.svg����������������������������������0000664�0000000�0000000�00000000706�14753064456�0025307�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.1 0-4.026 4.025L8.125.076 6.113 2.09l3.95 3.947-3.975 3.977L2.14 6.066.109 8.096l3.948 3.947L0 16.1l1.975 1.972 4.056-4.056 3.95 3.947 2.029-2.027-3.95-3.95 3.975-3.972 3.951 3.949-4.025 4.023v.002L9.947 18l-4.023 4.025L7.896 24l4.026-4.025 3.95 3.949 2.013-2.014-3.951-3.95 4.027-4.024 3.95 3.949 2.013-2.012-3.95-3.95L24 7.899l-1.975-1.972L18 9.949 14.049 6l4.025-4.025z"/></svg>����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sinaweibo.svg��������������������������������0000664�0000000�0000000�00000002525�14753064456�0025607�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.098 20.323c-3.977.391-7.414-1.406-7.672-4.02-.259-2.609 2.759-5.047 6.74-5.441 3.979-.394 7.413 1.404 7.671 4.018.259 2.6-2.759 5.049-6.737 5.439zM9.05 17.219c-.384.616-1.208.884-1.829.602-.612-.279-.793-.991-.406-1.593.379-.595 1.176-.861 1.793-.601.622.263.82.972.442 1.592m1.27-1.627c-.141.237-.449.353-.689.253-.236-.09-.313-.361-.177-.586.138-.227.436-.346.672-.24.239.09.315.36.18.601zm.176-2.719c-1.893-.493-4.033.45-4.857 2.118-.836 1.704-.026 3.591 1.886 4.21 1.983.64 4.318-.341 5.132-2.179.8-1.793-.201-3.642-2.161-4.149m7.563-1.224c-.346-.105-.57-.18-.405-.615.375-.977.42-1.804 0-2.404-.781-1.112-2.915-1.053-5.364-.03 0 0-.766.331-.571-.271.376-1.217.315-2.224-.27-2.809-1.338-1.337-4.869.045-7.888 3.08C1.309 10.87 0 13.273 0 15.348c0 3.981 5.099 6.395 10.086 6.395 6.536 0 10.888-3.801 10.888-6.82 0-1.822-1.547-2.854-2.915-3.284zm1.908-5.092a3.1 3.1 0 0 0-2.96-.962.786.786 0 0 0-.616.932.79.79 0 0 0 .932.602 1.51 1.51 0 0 1 1.442.465c.376.421.466.977.316 1.473a.786.786 0 0 0 .51.992.813.813 0 0 0 .992-.512 3.11 3.11 0 0 0-.646-3.035zm2.418-2.195c-1.576-1.757-3.905-2.419-6.054-1.968a.91.91 0 0 0-.706 1.081.91.91 0 0 0 1.082.707 4.5 4.5 0 0 1 4.296 1.383 4.53 4.53 0 0 1 .947 4.416.91.91 0 0 0 .586 1.157c.479.165.991-.104 1.157-.586a6.39 6.39 0 0 0-1.338-6.235z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/singaporeairlines.svg������������������������0000664�0000000�0000000�00000001624�14753064456�0027344�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.981 0 7.786 1.79c-.473.728-.062 1.51-.062 1.51l5.475 9.055c1.263 2.17-.536 4.535-.536 4.535L9.36 22.015h2.738c1.387 0 2.014-1.133 2.014-1.133l1.73-2.673c.628-.978 1.45-1.008 1.45-1.008h1.572c-.977.41-1.418 1.418-1.418 1.418L15.5 21.612c-.76 1.133-1.643.969-1.643.969h-7.83l3.713-5.792c.875-1.318 0-2.42 0-2.42L4.796 6.355 3.756 7.93c-.907 1.45-.032 2.294-.032 2.294l3.56 5.722c.79 1.193.224 1.914.224 1.914l-4 6.14h10.513a2.97 2.97 0 0 0 2.674-1.574l2.232-3.364c.535-.852 1.728-.728 1.728-.728l-1.512-2.388h-2.17c-1.542 0-2.14 1.286-2.14 1.286l-2.045 3.117h-.002c-.187.225-.404.505-.628.35-.217-.155.093-.566.093-.566l2.744-4.28c.404-.666 1.133-1.986 1.133-3.148s-.915-2.666-.915-2.666zM7.004 3.146 5.618 5.224c-.41.69 0 1.41 0 1.41l4.69 7.77c.659 1.161.154 2.262.154 2.262l-3.364 5.31h1.668l3.62-5.622c1.543-2.332.124-4.216.124-4.216z"/></svg>������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/singlestore.svg������������������������������0000664�0000000�0000000�00000001545�14753064456�0026166�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.029 5.063c-.914-1.916-2.8-3.432-5.114-4.033C11.4.887 10.858.83 10.258.8c-.886 0-1.743.114-2.629.343-2.2.658-3.742 1.945-4.657 2.947C1.801 5.435 1.03 6.837.572 8.238c0 .029-.028.057-.028.115C.515 8.467.4 8.81.4 8.896c-.029.057-.029.143-.057.2l-.086.344c0 .028 0 .057-.028.086-.743 3.69.49 7.001 1.234 8.231.185.308.338.564.49.8C.27 9.403 5.116 5.035 10.63 4.92c2.886-.057 5.771 1.116 7.171 3.461-.086-1.287-.171-2.002-.771-3.318zM12.543 0c2.572.715 4.914 2.517 5.886 4.72 1.485 3.575 1.143 8.095-.486 10.784-1.371 2.203-3.485 3.375-5.914 3.347-3.771-.029-6.828-3.032-6.857-6.808 0-3.776 2.971-6.894 6.857-6.894.629 0 1.535.087 2.563.516 0 0-.739-.438-2.638-.732C6.497 4.218.058 8.353 1.544 17.878c2.057 3.662 6 6.15 10.485 6.122 6.6-.029 12-5.435 11.97-12.072C24 5.578 18.83.172 12.544 0z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sitecore.svg���������������������������������0000664�0000000�0000000�00000001471�14753064456�0025443�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.37 0 0 5.37 0 12s5.37 12 12 12 12-5.37 12-12S18.63 0 12 0m0 3.266A8.714 8.714 0 0 1 20.734 12c0 4.815-3.92 8.734-8.734 8.734A8.73 8.73 0 0 1 3.266 12 8.73 8.73 0 0 1 12 3.266m6.701 3.847-2.878 1.839c.87 1.379.991 2.879.314 4.403-.774 1.838-2.613 3.41-4.694 4.16a7.3 7.3 0 0 0 2.662-.87c2.032-1.137 3.194-3.073 3.29-5.468v-.218h2.83c-.168-1.427-.725-2.734-1.524-3.846m-.87 4.282c-.17 2.42-1.428 4.476-3.508 5.613a8.1 8.1 0 0 1-3.92.992 9.2 9.2 0 0 1-3.194-.58c1.259.774 2.662 1.21 4.113 1.21h.025c2.613 0 4.984-1.38 6.314-3.727l.121-.193 1.621 1.04A8.2 8.2 0 0 0 20.3 12c0-.194-.025-.387-.025-.605zm.072 3.943c-1.427 2.323-3.846 3.726-6.556 3.726-2.637 0-5.105-1.306-6.847-3.532 1.33 2.807 4.185 4.766 7.5 4.766a8.27 8.27 0 0 0 7.185-4.161z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sitepoint.svg��������������������������������0000664�0000000�0000000�00000000677�14753064456�0025653�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.471 10.533 1.771 1.688 5.598 5.141 2.4-2.291a.804.804 0 0 0-.046-.985L9.99 12.184l.01-.005-2.371-2.266a.79.79 0 0 1 .021-1.079l6.39-6.076L11.146 0 2.475 8.238a1.57 1.57 0 0 0 0 2.295zm19.056 2.937-1.77-1.691-5.595-5.142-2.411 2.291a.77.77 0 0 0 .045.985l2.205 1.891h-.006l2.369 2.265a.77.77 0 0 1-.029 1.064l-6.391 6.075L12.855 24l8.67-8.238a1.57 1.57 0 0 0 0-2.295z"/></svg>�����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/siyuan.svg�����������������������������������0000664�0000000�0000000�00000000412�14753064456�0025130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m0 8.455 6.818-6.819L12 6.818l5.182-5.182L24 8.455v13.909l-6.818-6.819v-2.314l5.182 5.182v-9.28L17.182 3.95v11.594L12 20.727l-5.182-5.182v-2.314L12 18.413v-9.28L6.818 3.95v11.594L0 22.364Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/skaffold.svg���������������������������������0000664�0000000�0000000�00000000332�14753064456�0025412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.602 20.097H24v3.836H6.602zm-2.766-6.692h13.562v3.837H0V6.714h3.836zm13.562-9.502H0V.067h17.398zm2.766 6.692H6.602V6.758H24v10.528h-3.836z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sketch.svg�����������������������������������0000664�0000000�0000000�00000000467�14753064456�0025113�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 1.25 6.75 6.637V2zm0 0-6.05 7h12.1zm0 0L5.25 2v5.887zM5.25 2 0 9l4.416-.68zM0 9l11.959 13.703.008-.014L4.443 9zm18.75-7 .834 6.32L24 9zM24 9h-4.506l-7.523 13.69.029.06zM12 22.75l-.031-.057-.008.012zM5.436 9l6.533 13.686L18.564 9z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sketchfab.svg��������������������������������0000664�0000000�0000000�00000000673�14753064456�0025563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.3 0A11.98 11.98 0 0 0 .037 11a14 14 0 0 0 0 2 11.98 11.98 0 0 0 11.29 11h1.346a12.045 12.045 0 0 0 11.3-11.36 14 14 0 0 0 0-1.7A12.05 12.05 0 0 0 12.674 0zM15 6.51l2.99 1.74s-6.064 3.24-6.084 3.24S5.812 8.27 5.8 8.26l2.994-1.77 2.992-1.76zm-6.476 5.126L11 13v5.92l-2.527-1.4-2.46-1.43v-5.76zm9.461 1.572v2.924L15.5 17.574 13 19.017v-6.024l2.489-1.345 2.5-1.355z"/></svg>���������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sketchup.svg���������������������������������0000664�0000000�0000000�00000001447�14753064456�0025457�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m.968 9.027 7.717 4.428-.006 1.32-4.39-2.518-2.763 1.57 7.148 4.12.005 1.27-7.658-4.405c.02.516.488 2.106 1.383 3.337.91 1.247 1.946 1.776 1.946 1.776L11.428 24V11.849L.975 5.846zm22.064-3.8L15.22.723S13.982 0 12.008 0C9.952 0 8.76.746 8.76.746l-7.236 4.14 11.009 6.328V24l7.245-4.136s1.295-.715 2.279-2.414c.867-1.496.975-2.943.975-2.943zM11.251 7.308s1.615-.298 2.98.49l2.171 1.25s.003 1.097.003 2.736c0 1.313-1.112 2.674-1.112 2.674l.002-4.816zm6.402 10.562-2.358 1.353v-1.269l1.835-1.05c1.748-1.26 2.037-3.117 2.037-3.761l-.007-5.705-5.006-2.881s-.76-.499-2.129-.499c-1.367 0-2.113.461-2.113.461L8.154 5.53l-1.11-.641L9.473 3.5s.95-.527 2.544-.527c1.462 0 2.6.571 2.6.571L20.27 6.81l-.007 6.226c.04.957-.406 3.296-2.61 4.835z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/skillshare.svg�������������������������������0000664�0000000�0000000�00000003750�14753064456�0025771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.783 6.056a.77.77 0 0 0-.773.764c0 .421.346.763.773.763a.77.77 0 0 0 .772-.763.77.77 0 0 0-.772-.764M1.895 8.1C.821 8.1.111 8.622.111 9.413c0 .634.381 1.06 1.048 1.225l.836.21c.248.078.348.2.347.39 0 .21-.21.327-.424.337-.31.014-.537-.154-.554-.422H0c.02.8.802 1.362 1.974 1.362 1.108 0 1.827-.513 1.827-1.382 0-.634-.399-1.034-1.057-1.208l-.81-.224c-.274-.081-.369-.202-.369-.372 0-.185.146-.294.335-.316.274-.032.486.087.486.382v.02H3.78v-.02h-.001c0-.834-.706-1.294-1.884-1.294zm2.485.116v4.19h1.318v-1.821l1.274 1.82h1.62l-1.629-2.201 1.604-1.977h-1.56l-1.309 1.76v-1.77zm4.744 0v4.19h1.318v-4.19zm2.084 0v4.191h3.218v-1.244h-1.892V8.217zm3.937 0v4.191h3.218v-1.244h-1.892V8.217zm-13.25 5.308c-1.074 0-1.784.522-1.784 1.312 0 .635.381 1.06 1.048 1.225l.836.21c.248.078.348.2.347.39 0 .21-.21.328-.424.338-.31.014-.537-.155-.554-.423H0c.02.8.802 1.362 1.974 1.362 1.108 0 1.827-.512 1.827-1.382 0-.634-.399-1.034-1.057-1.207l-.81-.225c-.274-.081-.369-.201-.369-.371 0-.186.146-.295.335-.317.274-.032.486.087.486.383v.019H3.78v-.02h-.001c0-.834-.706-1.294-1.884-1.294m9.19.015c-1.215 0-1.986.953-1.986 2.202 0 1.257.72 2.202 1.968 2.201.58 0 1.1-.286 1.326-.702v.59h1.318v-4.179h-1.318v.599c-.225-.425-.702-.711-1.309-.711zm8.751 0c-1.36 0-2.253.832-2.253 2.202 0 1.396.875 2.202 2.296 2.202 1.11 0 1.951-.546 2.08-1.37h-1.3c-.113.26-.373.373-.78.373-.59 0-.954-.295-.98-.841h3.087c.026-.234.035-.364.035-.581 0-1.179-.884-1.985-2.185-1.985m-2.87.043c-.51 0-1.005.32-1.152.945v-.876h-1.327v4.179h1.327v-1.613c0-.927.382-1.395 1.1-1.395a3 3 0 0 1 .393.025l.007-1.23a1.3 1.3 0 0 0-.347-.035zM4.38 13.65v4.191h1.3v-1.485h1.59v1.485h1.3V13.65h-1.3v1.505H5.68V13.65zm15.448.781c.564 0 .876.295.885.85H18.9c.008-.511.356-.85.927-.85zm-8.38.217c.66 0 .997.494.997 1.093 0 .607-.337 1.1-.997 1.1-.616 0-.997-.468-.997-1.1 0-.634.382-1.093.997-1.093m11.78 1.741a.77.77 0 0 0-.772.764c0 .422.345.764.772.764a.77.77 0 0 0 .772-.764.77.77 0 0 0-.772-.764"/></svg>������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/skoda.svg������������������������������������0000664�0000000�0000000�00000001637�14753064456�0024733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m0 22.964C5.945 22.964 1.036 18.055 1.036 12S5.945 1.036 12 1.036 22.964 5.945 22.964 12 18.055 22.964 12 22.964m5.189-7.233-.269.726h-.984c.263-.709 3.578-8.617-2.936-13.981a9.5 9.5 0 0 0-4.053.448c.217.175 2.474 2.027 3.537 4.315l-.312.084c-.586-.639-2.716-2.983-4.745-3.738a9.6 9.6 0 0 0-2.845 2.36c.953.487 3.444 1.974 4.39 3.13-.054.024-.267.139-.267.139-1.736-1.32-4.82-2.004-4.977-2.038a9.5 9.5 0 0 0-1.227 3.61c4.776.96 6.062 3.17 6.282 5.671h-.905l-1.554-.677a.9.9 0 0 0-.253-.053H3.177a9.6 9.6 0 0 0 1.926 2.915h1.234c.106 0 .2-.013.292-.066l1.249-.638h9.042l.269.726a4.84 4.84 0 0 0 2.947-1.466 4.84 4.84 0 0 0-2.947-1.467m-4.14-.579a1.19 1.19 0 0 1-.504-1.216 1.19 1.19 0 0 1 .931-.93 1.19 1.19 0 0 1 1.216.503c.31.464.257 1.093-.147 1.496a1.186 1.186 0 0 1-1.496.147"/></svg>�������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sky.svg��������������������������������������0000664�0000000�0000000�00000001771�14753064456�0024437�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.387 13.656c0 1.423-.933 2.454-2.823 2.675-1.35.147-3.337-.025-4.294-.148-.025-.147-.074-.343-.074-.49 0-1.252.663-1.522 1.3-1.522.664 0 1.694.123 2.455.123.834 0 1.104-.295 1.104-.565 0-.368-.343-.515-1.006-.638l-1.767-.343C.785 12.453 0 11.423 0 10.343c0-1.325.933-2.454 2.798-2.65 1.398-.148 3.116.024 4.049.122.024.172.049.32.049.491 0 1.252-.663 1.522-1.276 1.522-.491 0-1.227-.099-2.086-.099-.884 0-1.227.246-1.227.54 0 .32.343.442.883.54l1.718.32c1.742.294 2.479 1.3 2.479 2.527m3.092 1.521c0 .761-.295 1.203-1.792 1.203-.196 0-.368-.025-.54-.05V6.22c0-.76.27-1.57 1.767-1.57.196 0 .393.024.565.049zm6.085 3.927c.197.098.59.22 1.105.245.859.025 1.325-.319 1.693-1.08L24 7.913a2.5 2.5 0 0 0-.957-.22c-.589 0-1.399.122-1.914 1.325l-1.497 3.534-2.945-4.81c-.196-.05-.662-.148-1.006-.148-1.03 0-1.62.393-2.233 1.031l-2.871 3.141 2.306 3.632c.418.663.982 1.006 1.89 1.006.589 0 1.104-.147 1.325-.245l-2.773-4.196 1.963-2.086 3.24 5.08Z"/></svg>�������mkdocs-material-9.6.4/material/templates/.icons/simple/skypack.svg����������������������������������0000664�0000000�0000000�00000001214�14753064456�0025266�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.82 11.27-5.997-2.994 5.999-2.993c.28-.14.453-.42.453-.734a.82.82 0 0 0-.454-.735L12.366.087a.81.81 0 0 0-.733 0L4.178 3.814a.82.82 0 0 0-.453.735v7.454c0 .28.15.548.384.699l.07.034 5.998 2.994-5.999 2.993a.82.82 0 0 0-.453.734c0 .314.174.594.453.735l7.455 3.727a.8.8 0 0 0 .361.081.8.8 0 0 0 .361-.081l7.454-3.727c.28-.14.455-.42.455-.735v-7.454a.79.79 0 0 0-.443-.733zm-7.814-9.54 5.625 2.819-5.625 2.818L6.38 4.55zm-6.64 4.135 4.811 2.41-4.81 2.412zm1.014 6.138 5.626-2.819 5.625 2.82-5.625 2.818zm4.81 5.044v4.81l-4.81-2.41zm7.455 1.91-5.824 2.911v-5.625l5.824-2.912z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/slack.svg������������������������������������0000664�0000000�0000000�00000001733�14753064456�0024724�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.042 15.165a2.53 2.53 0 0 1-2.52 2.523A2.53 2.53 0 0 1 0 15.165a2.527 2.527 0 0 1 2.522-2.52h2.52zm1.271 0a2.527 2.527 0 0 1 2.521-2.52 2.527 2.527 0 0 1 2.521 2.52v6.313A2.53 2.53 0 0 1 8.834 24a2.53 2.53 0 0 1-2.521-2.522zM8.834 5.042a2.53 2.53 0 0 1-2.521-2.52A2.53 2.53 0 0 1 8.834 0a2.53 2.53 0 0 1 2.521 2.522v2.52zm0 1.271a2.53 2.53 0 0 1 2.521 2.521 2.53 2.53 0 0 1-2.521 2.521H2.522A2.53 2.53 0 0 1 0 8.834a2.53 2.53 0 0 1 2.522-2.521zm10.122 2.521a2.53 2.53 0 0 1 2.522-2.521A2.53 2.53 0 0 1 24 8.834a2.53 2.53 0 0 1-2.522 2.521h-2.522zm-1.268 0a2.53 2.53 0 0 1-2.523 2.521 2.527 2.527 0 0 1-2.52-2.521V2.522A2.527 2.527 0 0 1 15.165 0a2.53 2.53 0 0 1 2.523 2.522zm-2.523 10.122a2.53 2.53 0 0 1 2.523 2.522A2.53 2.53 0 0 1 15.165 24a2.527 2.527 0 0 1-2.52-2.522v-2.522zm0-1.268a2.527 2.527 0 0 1-2.52-2.523 2.526 2.526 0 0 1 2.52-2.52h6.313A2.527 2.527 0 0 1 24 15.165a2.53 2.53 0 0 1-2.522 2.523z"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/slackware.svg��������������������������������0000664�0000000�0000000�00000002056�14753064456�0025602�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.924 1.228c-.584-.01-1.251 0-1.485.027-2.46.282-4.138 1.3-4.753 2.891-.218.552-.274 1.002-.243 1.772.048 1.21.419 2.004 1.262 2.742 1.225 1.06 2.98 1.508 5.998 1.508 2.737 0 3.71.413 3.916 1.675.313 1.867-1.57 3.07-4.414 2.827-1.878-.16-3.496-.912-4.223-1.967a8 8 0 0 1-.355-.62c-.382-.76-.64-.978-1.176-.978-.43.005-.732.165-.918.494l-.133.24v4.03l.137.296c.165.344.4.546.744.63.35.09.794-.036 1.42-.402l.5-.29.826.185c1.82.403 2.75.523 4.065.523 1.103.005 1.548-.046 2.455-.285 1.124-.297 1.974-.785 2.717-1.57.8-.844 1.15-1.853 1.097-3.147-.069-1.628-.695-2.698-2-3.414-.96-.525-2.292-.79-4.377-.88-2.042-.086-2.794-.155-3.515-.32-.51-.12-.785-.25-1.076-.515-.653-.589-.59-1.755.136-2.482.642-.637 1.511-.928 2.774-.928 1.432.005 2.393.27 3.412.955.185.127.721.62 1.193 1.092.886.902 1.135 1.082 1.506 1.082.244 0 .59-.163.732-.344.26-.329.303-.63.303-2.2 0-1.66-.043-1.91-.377-2.282-.387-.425-.848-.42-1.75.031l-.59.297-.63-.17c-1.496-.392-2.038-.477-3.178-.504zM0 13.775v9h24v-1H1v-8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/slashdot.svg���������������������������������0000664�0000000�0000000�00000000323�14753064456�0025442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.777 0 7.037 24H1.868L14.605 0zm2.354 19.801c0 2.268-1.841 4.105-4.109 4.105a4.106 4.106 0 1 1 0-8.212 4.11 4.11 0 0 1 4.109 4.107"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/slickpic.svg���������������������������������0000664�0000000�0000000�00000000422�14753064456�0025422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.483 18.308 6.056 14.085l2.52-9.201L24 9.104zm-13.414-5.37 12.263 3.354 1.654-6.033L9.72 6.9l-1.65 6.034zm.457 2.857-4.891 1.311-1.625-6.045 4.146-1.11.501-1.835L0 9.902l2.478 9.215 9.178-2.467"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/slides.svg�����������������������������������0000664�0000000�0000000�00000001425�14753064456�0025110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.695.395 4.578.97l5.7.552zm-2.443.851-.04.406H6.44ZM0 2.152V21.85h19.697V2.152Zm20.197.836V20.24l1.66-17.092zm2.084.965-1.65 17.002L24 4.301ZM9.928 7.361q.893 0 1.593.227.7.228.7.508 0 .227-.201.586-.203.359-.36.359-.017 0-.226-.105a2.8 2.8 0 0 0-1.34-.315q-.743 0-1.155.307a.95.95 0 0 0-.412.797q0 .49.307.77.305.279 1.041.507 1.645.508 2.232 1.111.586.605.586 1.82 0 1.218-.867 2.006t-2.074.788-2.082-.36q-.876-.359-.875-.691 0-.175.219-.526.217-.35.392-.35.018 0 .281.167.264.166.752.334.49.165 1.182.166.692 0 1.139-.395.445-.394.445-1.068 0-.675-.393-1.05-.394-.377-1.568-.71-1.172-.331-1.697-.848T7.021 9.83q0-1.05.805-1.76.806-.708 2.102-.709m5.86 14.989 4.165.404.04-.404zm1.126.613 3.18.642.066-.328z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/slideshare.svg�������������������������������0000664�0000000�0000000�00000002107�14753064456�0025746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.222.21C1.762.21 1.06 1.337 1.06 2.497v7.883c-.53-.502-1.096-.15-1.058.295.038.439.59 1.546 1.436 2.517.843.968 1.924 1.776 2.94 2.268a11.2 11.2 0 0 0-.491 3.598c.09 1.096.378 1.95.903 2.75.918 1.407 2.32 1.985 3.674 1.985 1.209 0 2.494-.563 2.698-2.373v-4.694c1.308.552 3.47.363 4.47-.39.19-.14.326-.207.416-.113.095.09.106.166-.113.439a5.6 5.6 0 0 1-3.103 1.965l.008 2.72a2.53 2.53 0 0 0 2.543 2.446c1.64.015 2.48-.556 3.148-1.164.632-.567 1.399-1.754 1.558-3.243a10.1 10.1 0 0 0-.454-3.926 10.4 10.4 0 0 0 2.948-2.268C23.213 12.5 24 11.185 24 10.675s-.556-.782-1.036-.302V2.497c0-.824-.48-2.29-2.135-2.29zm.423 1.35H20.41c.756 0 1.17.28 1.17 1.224v8.904a8.7 8.7 0 0 1-3.555 1.534c-1.606.352-2.94.087-3.666.148-.718.06-1.428.529-1.296 1.79-.491-.154-1.236-.683-1.682-1.117-.438-.428-.87-.711-1.534-.692-1.013.03-1.663.102-2.57.01a9.66 9.66 0 0 1-4.838-1.786V2.78c0-.87.378-1.22 1.206-1.22m4.497 4.988a2.994 2.994 0 1 0 0 5.987 2.993 2.993 0 0 0 0-5.983zm7.71 0a2.994 2.994 0 1 0 0 5.987 2.993 2.993 0 0 0 0-5.983z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/slint.svg������������������������������������0000664�0000000�0000000�00000000716�14753064456�0024760�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6.503 23.914 13.61-9.399s.614-.351.614-.906c0-.739-.776-.979-.776-.979l-7.488-2.953c-.267-.104-.634.189-.29.56l2.479 2.471s.688.675.688 1.117-.423.836-.423.836l-9.02 8.684c-.32.31.113.87.606.569M17.497.087 3.887 9.484s-.614.351-.614.906c0 .739.776.98.776.98l7.488 2.953c.267.103.636-.19.29-.559l-2.479-2.48s-.688-.673-.688-1.116.423-.837.423-.837L18.097.654c.326-.31-.106-.87-.6-.567"/></svg>��������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/smart.svg������������������������������������0000664�0000000�0000000�00000001035�14753064456�0024750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.85.846A11.14 11.14 0 0 0 0 11.979v.04a11.136 11.136 0 0 0 10.844 11.135h.283a11 11 0 0 0 4.041-.758.395.395 0 0 0 .256-.369v-5.564a.21.21 0 0 0-.274-.195c-1.202.489-2.215.957-3.96.957a5.22 5.22 0 0 1-5.22-5.22 5.22 5.22 0 0 1 5.22-5.22c1.745 0 2.758.467 3.96.955a.21.21 0 0 0 .274-.193V1.979a.395.395 0 0 0-.256-.37 11 11 0 0 0-4.037-.763Zm5.863 1.82v18.67a.238.238 0 0 0 .377.19c3.413-2.122 6.91-8.16 6.91-9.52s-3.497-7.396-6.91-9.522a.238.238 0 0 0-.377.182"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/smartthings.svg������������������������������0000664�0000000�0000000�00000004303�14753064456�0026166�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.51 0C8.338 0 5.034.537 2.694 2.694.5 5.174 0 8.464 0 11.525v.942c0 3.165.537 6.499 2.694 8.84C5.188 23.513 8.494 24 11.569 24h.854c3.18 0 6.528-.53 8.883-2.694C23.514 18.811 24 15.5 24 12.423v-.853c0-3.18-.53-6.528-2.694-8.876C18.826.494 15.544 0 12.482 0zM12 3.505c1.244 0 2.256.99 2.256 2.206 0 1.065-.685 1.976-1.715 2.181v1.59c1.48.214 2.528 1.43 2.528 2.934 0 1.654-1.377 3-3.07 3s-3.068-1.346-3.068-3q.002-.255.045-.497l-1.536-.488a2.26 2.26 0 0 1-1.962 1.12q-.357 0-.698-.11c-1.183-.375-1.833-1.622-1.449-2.78a2.25 2.25 0 0 1 2.146-1.524q.357 0 .698.108a2.23 2.23 0 0 1 1.313 1.098c.204.391.282.823.232 1.249l1.535.488c.44-.86 1.378-1.453 2.384-1.599V7.892c-1.029-.205-1.896-1.116-1.896-2.181 0-1.217 1.012-2.206 2.257-2.206m0 .882c-.747 0-1.354.594-1.354 1.324S11.253 7.035 12 7.035c.746 0 1.354-.594 1.354-1.324S12.746 4.387 12 4.387m6.522 3.75c.98 0 1.843.613 2.146 1.525a2.15 2.15 0 0 1-.135 1.683 2.22 2.22 0 0 1-1.314 1.096q-.341.11-.698.11a2.26 2.26 0 0 1-1.962-1.12l-.634.201-.278-.838.632-.202a2.21 2.21 0 0 1 1.546-2.347 2.3 2.3 0 0 1 .697-.108M5.476 9.02c-.588 0-1.105.368-1.287.915a1.32 1.32 0 0 0 .869 1.668q.205.065.419.065c.588 0 1.105-.368 1.287-.915a1.3 1.3 0 0 0-.081-1.01 1.34 1.34 0 0 0-.788-.658 1.4 1.4 0 0 0-.42-.065zm13.045 0q-.213 0-.419.065a1.32 1.32 0 0 0-.869 1.668c.182.547.7.915 1.287.915a1.4 1.4 0 0 0 .42-.065c.344-.11.623-.343.787-.659.165-.315.193-.673.082-1.009a1.35 1.35 0 0 0-1.288-.915M12 10.474c-1.095 0-1.986.871-1.986 1.942s.89 1.941 1.986 1.941c1.094 0 1.985-.87 1.985-1.94 0-1.072-.89-1.943-1.985-1.943m-2.706 4.831.73.519-.39.526c.709.757.801 1.925.16 2.787a2.28 2.28 0 0 1-1.827.91c-.478 0-.937-.147-1.325-.422a2.177 2.177 0 0 1-.499-3.082 2.28 2.28 0 0 1 2.76-.71zm5.41 0 .392.528a2.285 2.285 0 0 1 2.76.71 2.18 2.18 0 0 1-.499 3.082 2.28 2.28 0 0 1-1.325.421 2.28 2.28 0 0 1-1.827-.91 2.17 2.17 0 0 1 .16-2.785l-.39-.527zm-6.734 1.21a1.37 1.37 0 0 0-1.097.547c-.44.59-.304 1.42.3 1.849a1.37 1.37 0 0 0 1.891-.293c.44-.59.305-1.42-.3-1.85a1.36 1.36 0 0 0-.794-.252zm8.059 0c-.287 0-.561.088-.795.254a1.307 1.307 0 0 0-.299 1.849 1.37 1.37 0 0 0 1.891.293 1.307 1.307 0 0 0 .3-1.85 1.37 1.37 0 0 0-1.097-.545Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/smashingmagazine.svg�������������������������0000664�0000000�0000000�00000001570�14753064456�0027153�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.734 12.002c.766.524 1.662 1.01 2.708 1.443q2.677 1.113 3.601 1.936c.615.547.928 1.248.928 2.104-.005 1.457-1.023 2.189-3.076 2.189q-2.964-.002-5.326-1.875l-1.871 4.186q2.133 1.14 3.475 1.496l.141.033-1.798.416a2.365 2.365 0 0 1-2.832-1.771L.061 6.5a2.37 2.37 0 0 1 1.773-2.835l4.375-1.009a5 5 0 0 0-.441.485l-.018.021Q4.62 4.584 4.619 6.667c0 2.101 1.03 3.87 3.079 5.296l.046.029zm10.358.072c-.84-.672-1.904-1.268-3.24-1.786q-2.97-1.178-3.871-1.872c-.6-.465-.914-.981-.914-1.557 0-1.459.914-2.19 2.76-2.19 2.041 0 3.646.494 4.786 1.476l1.515-4.08A14.2 14.2 0 0 0 15.723.849l-.06-.015c-.256-.061-.525-.12-.811-.164l2.625-.602a2.383 2.383 0 0 1 2.836 1.771l3.63 15.647c.284 1.274-.51 2.551-1.784 2.835l-2.985.69c.824-1.051 1.245-2.34 1.245-3.87 0-1.575-.437-2.911-1.306-4.021a8 8 0 0 0-1.006-1.006l-.044-.029z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/smrt.svg�������������������������������������0000664�0000000�0000000�00000001214�14753064456�0024606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.654 13.753c.81 4.437 4.677 7.81 9.339 7.81 4.677 0 8.617-4.088 9.396-8.542h-2.563c-.75 3.06-3.55 6.039-6.833 6.039-2.369 0-4.453-1.199-5.727-3h5.292c.435 0 .854-.23 1.214-.702l1.29-1.858a.67.67 0 0 1 .614-.36h7.54L24 10.831H13.612a.78.78 0 0 0-.615.328l-1.709 2.293a.58.58 0 0 1-.495.288zm18.678-3.506c-.81-4.44-4.647-7.81-9.324-7.81s-8.5 3.975-9.279 8.43h2.563c.75-3.06 3.433-5.927 6.73-5.927 2.37 0 4.453 1.198 5.727 2.996h-5.307c-.434 0-.854.23-1.214.706L9.938 10.5a.67.67 0 0 1-.614.36h-7.54L0 13.138h10.388c.254 0 .48-.145.615-.329l1.709-2.31a.58.58 0 0 1 .495-.289z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/smugmug.svg����������������������������������0000664�0000000�0000000�00000000774�14753064456�0025317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.31 0-.35.01c-1.55.13-2.46 1.2-2.6 2.28-.15 1.2.65 2.4 2.58 2.28 2.15-.12 3.09-1.2 3.1-2.28.02-1.15-1-2.28-2.73-2.29M7.21.34A2.66 2.66 0 0 0 4.56 2.6C4.41 3.73 5.12 4.87 7 4.85c2.23-.04 3.31-1.37 3.16-2.57-.12-1-1.09-1.92-2.94-1.94zm12.35 8.71a7 7 0 0 0-.4.02c-5.28.54-5.54.6-15.26.82C-.2 9.9.62 24 9.38 24c8.2 0 18.12-15.15 10.18-14.95m-1.1 2.7c3.18-.07-2.9 9.53-8.8 9.56-7.46 0-6.44-8.8-5.18-8.85 8.67-.35 10.88-.64 13.98-.71"/></svg>����mkdocs-material-9.6.4/material/templates/.icons/simple/snapchat.svg���������������������������������0000664�0000000�0000000�00000002540�14753064456�0025425�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.206.793c.99 0 4.347.276 5.93 3.821.529 1.193.403 3.219.299 4.847l-.003.06c-.012.18-.022.345-.03.51.075.045.203.09.401.09.3-.016.659-.12 1.033-.301a1 1 0 0 1 .464-.104c.182 0 .359.029.509.09.45.149.734.479.734.838q.022.674-1.213 1.168c-.089.029-.209.075-.344.119-.45.135-1.139.36-1.333.81-.09.224-.061.524.12.868l.015.015c.06.136 1.526 3.475 4.791 4.014.255.044.435.27.42.509a.6.6 0 0 1-.045.225c-.24.569-1.273.988-3.146 1.271-.059.091-.12.375-.164.57-.029.179-.074.36-.134.553-.076.271-.27.405-.555.405h-.03a3 3 0 0 1-.538-.074 6 6 0 0 0-1.273-.135c-.3 0-.599.015-.913.074-.6.104-1.123.464-1.723.884-.853.599-1.826 1.288-3.294 1.288-.06 0-.119-.015-.18-.015h-.149c-1.468 0-2.427-.675-3.279-1.288-.599-.42-1.107-.779-1.707-.884a7 7 0 0 0-.928-.074c-.54 0-.958.089-1.272.149a3 3 0 0 1-.54.074c-.374 0-.523-.224-.583-.42-.061-.192-.09-.389-.135-.567-.046-.181-.105-.494-.166-.57-1.918-.222-2.95-.642-3.189-1.226a.6.6 0 0 1-.055-.225.496.496 0 0 1 .42-.509c3.264-.54 4.73-3.879 4.791-4.02l.016-.029c.18-.345.224-.645.119-.869-.195-.434-.884-.658-1.332-.809a2 2 0 0 1-.346-.119c-1.107-.435-1.257-.93-1.197-1.273.09-.479.674-.793 1.168-.793.146 0 .27.029.383.074.42.194.789.3 1.104.3.234 0 .384-.06.465-.105l-.046-.569c-.098-1.626-.225-3.651.307-4.837C7.392 1.077 10.739.807 11.727.807l.419-.015h.06z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/snapcraft.svg��������������������������������0000664�0000000�0000000�00000000326�14753064456�0025605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.804 13.367V5.69l5.292 2.362zM3.701 23.514l6.49-12.22 2.847 2.843L3.7 23.514zM0 .486l13.355 4.848v8.484zm21.803 4.848H14.11L24 9.748z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/snapdragon.svg�������������������������������0000664�0000000�0000000�00000001736�14753064456�0025766�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .016h-.351c-3.223.128-6.862 2.202-7.596 5.49-.032.127-.191.127-.223 0-.16-.799-.128-1.66.096-2.394a12.7 12.7 0 0 0-1.82 2.074 6.5 6.5 0 0 0-.638 1.34c-.447 1.405-.287 3.096.702 4.245.926 1.085 2.394 1.468 3.575 2.202 1.18.703 2.202 1.66 2.68 3 .511 1.405.416 3-.127 4.373-.032.127-.223.095-.223-.064.127-2.01-.894-3.894-2.777-4.787-.99-.447-2.106-.639-3.096-1.117C1.31 13.963.16 13.133 0 12.048c0 6.574 5.362 11.936 12 11.936 6.607 0 12-5.362 12-12S18.607.016 12 .016m8.745 18.638a11.7 11.7 0 0 1-3.255 2.872s0-.032.032-.032c-.83.479-1.724.894-2.681 1.15.734-.607 3.127-2.171 3.127-6.48 0-3.191-2.01-5.33-4.276-6.382C11.107 8.569 8.33 7.93 8.33 4.675c0-1.723 1.372-3.574 3.51-3.606.128-.032.288-.032.416-.032h.127a10.83 10.83 0 0 1 7.5 3.35 10.92 10.92 0 0 1 3.096 7.66v.064c0 1.34-.255 2.65-.702 3.862v.032c-.032.096-.096.223-.128.32-.032.063-.064.127-.064.159s-.032.032-.032.064a13.5 13.5 0 0 1-1.308 2.106"/></svg>����������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sncf.svg�������������������������������������0000664�0000000�0000000�00000002503�14753064456�0024554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.093 5.76c4.628 0 14.881.633 21.698 4.934.21.135.25.27.173.519-.039.115-2.151 6.74-2.151 6.74-.096.287-.25.287-.423.287H.384c-.25 0-.384-.172-.384-.384V6.182c0-.25.173-.384.46-.384.423 0 .96-.038 1.633-.038m.288 6.355c-.384.941.71 1.517 1.67 1.959.788.345 1.345.71 1.133 1.113-.134.346-.71.5-1.478.5-.672 0-1.517-.212-2.19-.519l-.383.845c.5.211 1.478.519 2.342.557 1.594.038 2.65-.346 3.073-1.229.426-.976-.575-1.51-1.518-1.963l-.092-.045-.138-.066c-.787-.345-1.305-.557-1.17-.94.133-.461.92-.634 1.631-.596.346 0 .595.039.922.135l.25-.807c-.346-.077-.634-.096-1.057-.096-1.42-.038-2.688.346-2.995 1.152m13.595-1.21c-1.344 0-2.554.461-3.284 1.268 0 .038-.038.038-.077.038-.038 0-.038 0-.038-.038l.384-1.19h-1.133l-1.267 3.82c-.384-1.113-1.21-2.63-2.19-3.82H7.163l-.883 2.803c.442.345.576.595.73.921 0 0 0 .039.038.039 0 0 .038 0 .038-.039 0-.038.788-2.419.788-2.419a14.5 14.5 0 0 1 2.016 4.167h1.267l.634-1.997s0-.039.038-.039c0 0 .039 0 .039.039.172 1.229 1.44 2.074 3.225 2.074 1.133 0 2.19-.308 2.439-.423l.672-2.112h2.573l.25-.807h-2.612l.461-1.363h3.072l.288-.845h-4.34l-1.44 4.551c-.326.077-.71.096-1.094.096-.845 0-1.555-.211-1.94-.672a1.47 1.47 0 0 1-.326-1.267c.173-1.152 1.306-1.901 2.823-1.901.326 0 .634 0 .96.077l.327-.884c-.346-.076-.807-.076-1.23-.076z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/snort.svg������������������������������������0000664�0000000�0000000�00000010314�14753064456�0024767�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.53 14.994c.257-.027.46-.392.582-.555-.23-.163-.718.217-.582.555m11.815-1.747c-1.03 1.34-2.629 3.305-2.588 4.511.23-1.016 1.355-1.26 2.94-3.36.84-1.097 1.138-1.3 2.222-3.211.04-.054.718-.271.556-.474-1.315.474-2.575 1.829-3.13 2.534m4.43-5.054c-.325-.529-1.26-.773-1.991-.637-2.683.623-6.3-.23-7.276-.8-.068 0 .149-.528.013-.731.203-.136.271-.217.528-.15.461.204 1.03.123 1.49.055-.27-.528-.541-1.558-.948-2.154-.393.325-1.002.582-1.395.853-.732-1.978-3.211-2.33-5.217-1.192-.054.027-.108.027-.108.027s-.542-1.138-.772-1.667C7.38 2.217 6.757 2.8 6.486 2.8c-.542 0-1.192 0-1.72-.068 0 .922.352 1.992.392 2.792-.8.799-1.585 1.585-2.113 2.588-.583-.136-1.233-.23-1.843.027-.38.162-.827.636-.678 1.165.082.298.461.61 1.193.8-1.41 1.354-2.128 4.213-.84 5.202-.326.325-.719.637-.84 1.07-.15.57.176.773.569.854.731.136 1.26-.23 1.802-.555 1.138.677 1.91.623 3.238.69.135 0 .447.394.447.394s-.894-.095-1.355.04c-.623.19-1.165.772-.732 1.274.637.759 1.87 1.03 2.981.759.678.718.366 1.896-.772 2.37.99-.067 2.14-.731 2.263-2.1.027-.257-.122-.677-.325-.88-.136-.136-.312-.325-.312-.325s.555-1.057-.596-1.653c.46-.095 1.328-.461 1.328-.461s.352.406.663.46c.34.055.732-.135.868-.46.19-.488-.393-.867-.393-.867l.46-.732s.407.38.583.678c.57.948.678 1.896 1.206 2.831.27.461.732.84 1.192 1.044a2.5 2.5 0 0 0 1.274.08c.745-.135 1.341-.378 1.761-.636 2.954-1.761 5.027-4.065 6.83-7.33.446-.88 1.422-2.602.758-3.658m-8.4-3.943s.176.311.27.528c.136.325.394.962.394.962l-.529-.095-.501-.352s-.068.257-.352.474c-.136-.393.149-.582-.244-1.016.311-.203.962-.501.962-.501m-7.29 15.853c.122.704-.501 1.422-.935 1.693.38-.582.746-.84.312-2.046-.176-.474-.596-.813-1.03-1.097-.135-.095-.311-.15-.515-.203-.216-.055-.46.108-.664.311 0 0 .624.312 1.166.407.311.406-.312.42-.312.42-.068.067-1.788-.176-1.68-1.016.04-.326.69-.935 1.992-.434.731.284 1.558 1.3 1.666 1.965m-.732-2.48c.326.149.326.528.326.867 0 .068-.068.068-.136.136-.203-.366-.542-.542-.867-.8-.068-.054-.108-.081-.04-.149.216-.203.487-.176.717-.054m2.426-1.138c-.122.46-.556.38-.596.149-.04-.203.217-.271.298-.366.068.04.311.149.298.217m2.507 1.22c-.719-2.141-2.697-4.106-3.659-4.675-.054-.027-.176.149-.176.149s.867.813 1.003 1.409c.135.528-.163 1.097-.501 1.49-1.328 1.26-3.117 1.016-4.824.895-.528-.041-1.314-.393-.908-1.193-.596.461-1.517 1.328-2.195 1.057-.135-.054-.325-.38-.19-.69.244-.516 1.057-1.315 1.762-1.667.04-.068-.054-.204-.312-.082-.27.122-.8.637-1.016.529-1.206-.597-.434-2.819-.04-3.55.487-.908 1.124-1.07 1.788-1.274-.786-.135-1.396-.217-1.789-.623-.203-.271-.108-.474.095-.732a1.56 1.56 0 0 1 .705-.42c.27-.081.501-.04.759.014.65.135.69.474 1.016.406-.068-.149-.407-.46-.339-.596a5.95 5.95 0 0 1 1.572-1.978c.095-.082.162-.095.298-.095.203.068.122.27.244.46.203.34.745.326 1.07.068.664-.528.88-1.517 1.152-2.317 0-.067.217-.487-.15-.365-.175.731-.46 1.327-.866 1.991-.203.271-.434.502-.76.38-.067-.068-.202-.109-.23-.312-.135-.948-.325-2.723-.325-2.723s.922.122 1.274.04c.203-.04.664-.596 1.125-.786.325.461.636.908.921 1.355 1.328-.596 2.886-1.07 4.2-.08.461.392.962.893 1.111 1.34.122.34.19 1.166.109 1.789 1.124.596 2.235.935 3.495 1.179.556.108.99.162 1.532.203.27.027.907.108 2.167-.108-2.588.528-4.674 2.195-6.422 4.213-.867.99-2.412 3.415-2.615 4.296-.081.365-.095.555-.081 1.002Zm10.568-6.572c-.434 1.273-1.545 2.954-2.696 4.2-1.07 1.165-4.106 3.956-6.247 3.835-1.002-.055-1.395-1.084-1.03-2.236.678-2.181 3.7-6.612 7.534-8.197.8-.325 2.195-.474 2.52-.054.434.61.19 1.653-.08 2.452Zm-2.914-.068c.177-.339.38-.474.448-.745.068-.46.88-.163.921-.772-1.382.216-3.13 1.883-4.281 3.306-1.193 1.463-2.886 3.577-2.724 5.121.271-1.273.746-.745 2.683-3.103 1.057-1.273 2.141-2.303 2.954-3.807m-6.504-5.569c-.217-.23-.38.325-.501.23-.42-.311.23-1.409-.583-1.544-.664-.122-1.151.637-1.585 1.07.203.65.962-1.165 1.49-.636.217.216.204.677.312.935-.38-.136-.8.447-.637.934.054.15.23.258.312.176.149-.094-.081-.176-.095-.216a.61.61 0 0 1 .176-.637c.176-.15.15.095.081.311-.04.136-.149.217-.121.312.243.203.42-.623.42-.623s.528.217.731-.312m.082.474c-.068.068-.163.109-.19.244-.027.15-.163.34-.095.488.285.15.583-.298.501-.582 0-.082-.067-.23-.216-.15m.067.34c-.013.121-.027.108-.081.203s-.081.013-.095-.068.014-.095.054-.23c.027-.109.068-.095.082-.095.067 0 .054.067.04.19"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/snowflake.svg��������������������������������0000664�0000000�0000000�00000004462�14753064456�0025622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 3.459c0 .646-.418 1.18-1.141 1.18s-1.142-.534-1.142-1.18c0-.647.419-1.18 1.142-1.18S24 2.812 24 3.459m-.228 0c0-.533-.38-.951-.913-.951s-.913.38-.913.95c0 .533.38.952.913.952.57 0 .913-.419.913-.951m-1.37-.533h.495c.266 0 .456.152.456.38 0 .153-.076.229-.19.305l.19.266v.038h-.266l-.19-.266h-.229v.266h-.266zm.495.228h-.229v.267h.229c.114 0 .152-.038.152-.114.038-.077-.038-.153-.152-.153M7.602 12.4a2 2 0 0 0 .076-.456c0-.114-.038-.228-.038-.342-.114-.343-.304-.647-.646-.838l-4.87-2.777c-.685-.38-1.56-.152-1.94.533-.381.685-.153 1.56.532 1.94l2.701 1.56-2.701 1.56c-.685.38-.913 1.256-.533 1.94.38.685 1.256.914 1.94.533l4.832-2.777c.343-.267.571-.533.647-.876m1.332 2.626c-.266-.038-.57.038-.837.19l-4.832 2.777c-.685.38-.913 1.256-.532 1.94.38.686 1.255.914 1.94.533l2.701-1.56v3.12c0 .8.647 1.408 1.446 1.408s1.407-.647 1.407-1.408v-5.592c0-.761-.57-1.37-1.293-1.408m4.946-6.088c.266.038.57-.038.837-.19l4.832-2.777c.685-.38.913-1.256.532-1.94-.38-.686-1.255-.914-1.94-.533l-2.701 1.56V1.975c0-.799-.647-1.408-1.446-1.408s-1.446.609-1.446 1.408V7.53c0 .76.609 1.37 1.332 1.407zM3.265 5.97l4.832 2.777c.266.152.533.19.837.19.723-.038 1.331-.684 1.331-1.407V1.975c0-.799-.646-1.408-1.407-1.408-.799 0-1.446.647-1.446 1.408v3.12l-2.701-1.56c-.685-.38-1.56-.152-1.94.533-.419.646-.19 1.521.494 1.902m9.093 6.011a.4.4 0 0 0-.114-.266l-.57-.571a.35.35 0 0 0-.267-.114.4.4 0 0 0-.266.114l-.571.57a.4.4 0 0 0-.114.267c0 .076.038.19.114.267l.57.57a.35.35 0 0 0 .267.114.4.4 0 0 0 .266-.114l.571-.57a.4.4 0 0 0 .114-.267m1.598.533L11.94 14.53c-.039.038-.153.114-.229.114h-.608a.4.4 0 0 1-.267-.114L8.82 12.514a.4.4 0 0 1-.076-.229v-.608c0-.076.038-.19.114-.267l2.016-2.016a.4.4 0 0 1 .267-.114h.608a.4.4 0 0 1 .267.114l2.016 2.016a.35.35 0 0 1 .114.267v.608c-.076.077-.114.19-.19.229m5.593 5.44-4.832-2.777c-.266-.152-.57-.19-.837-.152-.723.038-1.332.684-1.332 1.408v5.554c0 .8.647 1.408 1.408 1.408.799 0 1.446-.647 1.446-1.408v-3.12l2.7 1.56c.686.38 1.561.152 1.941-.533.419-.646.19-1.521-.494-1.94m2.549-7.533-2.701 1.56 2.7 1.56c.686.38.914 1.256.533 1.94-.38.685-1.255.913-1.94.533l-4.832-2.778a1.64 1.64 0 0 1-.647-.798c-.037-.153-.076-.305-.076-.457 0-.114.039-.228.039-.342.114-.343.342-.647.646-.837l4.832-2.778c.685-.38 1.56-.152 1.94.533.457.609.19 1.484-.494 1.864"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/snowpack.svg���������������������������������0000664�0000000�0000000�00000000431�14753064456�0025446�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.81 19.751-10.8-16.8a1.2 1.2 0 0 0-2.02 0l-10.8 16.8a1.2 1.2 0 0 0-.043 1.224A1.2 1.2 0 0 0 1.2 21.6h21.6a1.2 1.2 0 0 0 1.053-.625 1.2 1.2 0 0 0-.044-1.224M12 5.82l3.202 4.981H12l-2.4 2.4-1.427-1.427z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/snyk.svg�������������������������������������0000664�0000000�0000000�00000005447�14753064456�0024621�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.097 13.344c.143-.37.06-2.117-.222-4.675l-.004-.04.904-2.431v-.05c0-1.06-1.374-3.9-2.186-5.41L15.192 0l-.84 5.854-.503.829-.125-.042c-.351-.118-1.042-.316-1.728-.316-.65 0-1.294.171-1.72.315l-.125.042-.504-.827L8.807 0l-.396.737c-.812 1.51-2.186 4.35-2.186 5.411v.05l.904 2.432-.004.039c-.283 2.558-.366 4.305-.222 4.674.13.332.642 1.041 1.072 1.605l-.619 5.724.617.442.576-5.329c.012.414.064 1.277.275 2.068l-.389 3.592L12 24l4.279-3.067.375-.268-.62-5.73c.428-.561.934-1.262 1.063-1.591M15.59 2.298c.694 1.408 1.421 3.08 1.471 3.779l-.388 1.045c-.935-1.31-1.228-3.441-1.253-3.636zm-1.124 7.8c.84 0 .212.712.138.792h-1.587c.144-.18.69-.792 1.45-.792zm-.452 1.468a.18.18 0 0 1-.175.153.292.292 0 1 0 .441-.31h.504v.024a.662.662 0 0 1-1.325 0v-.025h.511l-.008.007c.039.038.06.093.052.15zM12.39 19.29q.146.095.306.156-.251.286-.697.287-.447 0-.697-.288.161-.06.306-.156a.57.57 0 0 0 .391.114c.103 0 .255 0 .391-.113m-2.62-7.724a.18.18 0 0 1-.174.153.292.292 0 1 0 .441-.31h.504v.024a.662.662 0 0 1-1.326 0v-.025h.511l-.008.007c.039.038.06.093.052.15zm-.374-.676c-.074-.08-.702-.792.138-.792.759 0 1.305.612 1.45.792zM6.948 6.077c.05-.699.778-2.37 1.471-3.78l.185 1.29c-.07.48-.393 2.37-1.257 3.56zM9.473 18.09c-.373-1.02-.377-2.446-.377-2.507v-.097l-.06-.076c-.551-.683-1.477-1.9-1.616-2.257l-.005-.014c-.124-.43.1-2.997.268-4.513l.008-.066-.187-.502.07-.075c.476-.497.88-1.213 1.203-2.126L9 5.223l.118.82.807 1.326.22-.094c.009-.004.934-.4 1.851-.4H12v.44h-.004c-.812 0-1.669.36-1.677.363l-.571.246-.797-1.308c-.27.62-.585 1.137-.94 1.543l.129.347-.019.169c-.24 2.156-.348 4.044-.285 4.332.086.2.523.812 1 1.437l.748-.218 1.17-1.334.184 3.458c-.011.015-.28.393-.28.609 0 .235.344.541.685.786q.006-.015.013-.03c.12-.212.275-.251.346-.087.04.092.028.369.028.369l.005.002v.328c-.013.027-.302.674-1.014.674-.275 0-.948-.089-1.248-.911m2.536 2.409c-.527 0-1.297-.257-1.374-.952q.043.002.086.003.09 0 .177-.01c.235.455.665.6 1.102.6.436 0 .865-.146 1.1-.6q.088.01.18.01.043 0 .085-.003c-.076.695-.835.952-1.356.952m2.956-5.09-.061.077v.097c0 .06-.004 1.487-.377 2.507-.3.822-.973.91-1.248.91-.71 0-1.002-.658-1.014-.686V18l.005-.004s-.012-.276.028-.368c.07-.164.226-.126.346.088q.008.014.013.03c.34-.246.686-.552.686-.787 0-.216-.269-.593-.28-.61l.183-3.457 1.17 1.334 1.2.35c-.23.304-.463.6-.651.834zm-8.472-1.907c-.22-.563-.022-2.916.187-4.817l-.895-2.409v-.128c0-.312.095-.734.246-1.207-1.177.253-1.808.49-1.808.49v12.996l2.67 1.914.577-5.332c-.538-.718-.868-1.226-.977-1.507m3.853-7.346c.446-.136 1.042-.27 1.65-.27.61 0 1.21.135 1.658.27l.276-.453.184-1.288s-1.288-.068-2.103-.068q-1.138.002-2.125.07l.184 1.286zm7.623-1.217c.151.474.247.896.247 1.21v.127l-.895 2.409c.208 1.901.406 4.253.186 4.818-.109.279-.435.782-.968 1.493l.578 5.337 2.66-1.906V5.432s-.632-.24-1.808-.493"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/socialblade.svg������������������������������0000664�0000000�0000000�00000000436�14753064456�0026070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.323 16.688H0v1.893h2.323zm3.612-3.097H3.613v4.99h2.322zm3.613 1.205H7.226v3.785h2.322zm3.613-.861H10.84v4.646h2.322zm3.613-1.892h-2.322v6.538h2.322zm3.613-1.978h-2.323v8.516h2.323zM24 5.42h-2.323v13.16H24z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/society6.svg���������������������������������0000664�0000000�0000000�00000003657�14753064456�0025403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m7.928 4.966.042.876-.916.157q-1.058.291-1.843.813c-.785.522-.966.73-1.33 1.148a6.2 6.2 0 0 0-.888 1.339l-.016.036q-.364.76-.65 1.599a5 5 0 0 1 1.31-.812l.033-.012q.78-.335 1.864-.335 1.259.001 2.111.884c.852.883.853 1.355.853 2.298q0 2.113-1.624 3.659c-1.624 1.546-2.414 1.547-3.992 1.547q-1.883 0-3.003-1.122c-1.12-1.122-1.12-1.743-1.12-2.981q0-3.544 2.52-6.073c2.52-2.529 3.895-2.692 6.65-3.023zM7.925 9.103q.652 0 1.211.081c.388.055.739.159 1.065.307l-.024-.01c.286.13.524.322.705.56l.003.004q.253.348.252.844c-.001.496-.118.614-.356.852q-.356.356-.933.356-.497 0-.828-.272c-.331-.272-.399-.394-.537-.642q-.206-.38-.327-.784c-.121-.404-.146-.493-.197-.674q-.601.037-1.094.459c-.493.422-.495.629-.495 1.046q0 .38.116.596c.116.216.184.265.311.358l.003.002c.162.115.348.217.544.296l.018.006c.151.069.431.177.714.279l.132.041q1.167.433 1.76 1.038.48.492.569 1.241c-.008-.117.117 1.109.018.183q.005.084.006.171 0 .649-.289 1.245c-.289.596-.464.728-.818.992a4.3 4.3 0 0 1-1.336.646l-.03.007q-.774.22-1.967.221-1.083 0-1.789-.184c-.706-.184-.845-.282-1.12-.474q-.422-.289-.575-.617c-.153-.328-.155-.425-.155-.617q0-.524.373-.916c.373-.392.58-.391.991-.391q.515 0 .863.278.356.291.574.691l.006.012c.136.244.259.528.352.824l.009.032c.035.09.106.322.172.556l.034.139q.97.001 1.469-.436c.499-.437.498-.691.498-1.196q0-.333-.15-.558c-.15-.225-.234-.283-.399-.398q-.248-.162-.635-.315c-.387-.153-.513-.198-.765-.289q-1.039-.369-1.644-1.023c-.605-.654-.605-.978-.605-1.628v-.013c0-.391.093-.76.259-1.087l-.006.014q.255-.51.794-.944.532-.414 1.348-.661c.816-.247 1.179-.249 1.906-.249zm8.017 1.874q-.494 0-.933.199c-.439.199-.605.397-.934.792q-.06.274-.21 1.055c-.15.781-.152 1.162-.152 1.923q.001 1.166.365 1.82c.364.654.566.655.968.655q.939 0 1.628-1.295h.002q.69-1.296.69-3.144 0-.928-.402-1.468c-.402-.54-.608-.538-1.022-.538z"/></svg>���������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/socket.svg�����������������������������������0000664�0000000�0000000�00000000430�14753064456�0025110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.93 11.171c0 5.92 3.778 10.957 9.063 12.829a13.65 13.65 0 0 0 6.513-4.89 13.5 13.5 0 0 0 2.564-7.939V3.274L11.997 0 2.933 3.274v7.897zm7.491-6.09h4.208L13.34 9.47h2.292l-6.264 9.446 1.486-6.858H8.365z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/socketdotio.svg������������������������������0000664�0000000�0000000�00000001310�14753064456�0026145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.936.014a12.2 12.2 0 0 0-2.975.378C4.281 1.555.568 5.794.091 10.602c-.59 4.548 1.709 9.285 5.644 11.634 3.861 2.418 9.093 2.32 12.874-.223 3.397-2.206 5.512-6.228 5.386-10.285-.058-4.016-2.31-7.916-5.76-9.98C16.355.589 14.144.006 11.937.015m-.063 1.696c4.945-.007 9.789 3.813 10.282 8.924.945 5.66-3.753 11.413-9.488 11.58-5.454.544-10.724-4.08-10.88-9.557-.406-4.434 2.517-8.834 6.698-10.3a9.1 9.1 0 0 1 3.388-.646zm5.091 3.225c-2.687 2.084-5.26 4.307-7.889 6.456 1.203.017 2.412.016 3.621.01 1.41-2.165 2.86-4.3 4.268-6.467m-5.665 7.653c-1.41 2.166-2.86 4.309-4.27 6.474 2.693-2.08 5.255-4.32 7.902-6.456a255 255 0 0 0-3.632-.018"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/softcatala.svg�������������������������������0000664�0000000�0000000�00000014267�14753064456�0025756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0M8.363 3.808q.743 0 1.286.264.542.265.9.7.357.438.523.919.165.48.165.937 0 .419-.207.753t-.515.334a.5.5 0 0 1-.427-.2q-.146-.202-.317-.659-.22-.654-.529-1.02-.309-.367-.991-.367-.634 0-1.022.398a1.32 1.32 0 0 0-.388.958q0 .345.132.599.133.252.363.433.232.18.469.284.237.102.782.3.683.228 1.237.504.553.276.942.67.388.393.606.997.015.047.03.097a12 12 0 0 1-.036-.903q0-1.396.293-2.502.294-1.104.84-1.89.548-.785 1.284-1.195a3.2 3.2 0 0 1 1.57-.411q1.018 0 1.81.56a3.8 3.8 0 0 1 1.216 1.382q.423.825.423 1.556 0 .402-.206.71-.205.306-.496.307-.325 0-.489-.214-.163-.213-.362-.735-.33-.861-.78-1.289a1.54 1.54 0 0 0-1.104-.427q-1.046 0-1.665 1.1-.62 1.098-.62 3.122 0 1.352.275 2.25.274.896.776 1.34.502.442 1.177.442.73 0 1.236-.502.505-.502.762-1.474.108-.459.268-.747.16-.29.514-.289.303 0 .52.293.216.293.216.726 0 .552-.197 1.193a4.7 4.7 0 0 1-.62 1.26 3.3 3.3 0 0 1-1.078 1.003q-.657.386-1.53.386-.662 0-1.205-.172a2.9 2.9 0 0 1-.984-.537 3.9 3.9 0 0 1-.813-.96 6.4 6.4 0 0 1-.564-1.22 8 8 0 0 1-.246-.887q.001.052.004.105 0 1.05-.378 1.887-.377.837-1.104 1.31t-1.724.474q-1.195 0-1.972-.648-.55-.466-.893-1.243a3.7 3.7 0 0 1-.344-1.51q0-.427.206-.73.206-.304.525-.304.258 0 .437.236.18.237.306.702.153.552.333.922.179.37.503.611.326.24.854.24.727 0 1.181-.484.455-.486.455-1.21 0-.576-.245-.934a1.6 1.6 0 0 0-.634-.548 8.5 8.5 0 0 0-1.038-.402q-.87-.292-1.455-.682a2.75 2.75 0 0 1-.93-1.064Q5.33 8.04 5.33 7.039q0-.954.363-1.694a2.6 2.6 0 0 1 1.052-1.139q.688-.398 1.619-.398Zm9.43 12.702h.137q.06 0 .09.03a.4.4 0 0 1 .067.129l.045.118a.3.3 0 0 1 .027.083q0 .035-.043.035a.2.2 0 0 1-.124-.04 1 1 0 0 1-.138-.168.8.8 0 0 1-.111-.166q0-.021.051-.021zm-4.97.501a.16.16 0 0 1 .103.033q.042.032.068.086a1 1 0 0 1 .043.111l.045.16.385 1.331q.045.152.045.221a.22.22 0 0 1-.043.132q-.043.06-.103.06a.1.1 0 0 1-.06-.018.2.2 0 0 1-.043-.048.5.5 0 0 1-.037-.093l-.033-.11-.07-.259h-.6l-.07.265q-.04.155-.07.209t-.096.054q-.055 0-.1-.058a.2.2 0 0 1-.042-.13q0-.043.01-.088l.033-.125.377-1.34.038-.138a1 1 0 0 1 .049-.135.24.24 0 0 1 .067-.087.16.16 0 0 1 .103-.033zm2.502 0a.16.16 0 0 1 .104.033q.041.033.067.086a1 1 0 0 1 .043.111l.045.16.385 1.331q.045.152.045.221a.22.22 0 0 1-.043.132q-.043.06-.103.06a.1.1 0 0 1-.06-.018.14.14 0 0 1-.043-.048.5.5 0 0 1-.036-.093l-.033-.11-.07-.259h-.6l-.07.265a1.2 1.2 0 0 1-.07.209.1.1 0 0 1-.096.054q-.057 0-.1-.058a.2.2 0 0 1-.043-.13q0-.043.01-.088l.033-.125.377-1.34.039-.138a1 1 0 0 1 .048-.135.24.24 0 0 1 .067-.087.16.16 0 0 1 .104-.033m1.05 0q.068 0 .11.063a.35.35 0 0 1 .041.191v1.502h.605q.073 0 .112.05a.2.2 0 0 1 .038.123.2.2 0 0 1-.038.123q-.038.047-.111.047h-.721q-.098 0-.14-.06-.043-.061-.043-.196v-1.59a.36.36 0 0 1 .04-.19q.041-.063.108-.063zm1.675 0a.16.16 0 0 1 .104.033q.042.032.067.086a1 1 0 0 1 .043.111l.045.16.385 1.331q.045.152.045.221a.22.22 0 0 1-.043.132q-.042.06-.103.06a.1.1 0 0 1-.06-.018.14.14 0 0 1-.042-.048.5.5 0 0 1-.037-.093l-.033-.11-.07-.259h-.6l-.07.265a1.2 1.2 0 0 1-.07.209.1.1 0 0 1-.096.054q-.056 0-.1-.058a.2.2 0 0 1-.043-.13q0-.043.01-.088l.033-.125.377-1.34.039-.138a1 1 0 0 1 .048-.135.24.24 0 0 1 .068-.087.16.16 0 0 1 .103-.033m-6.683 0q.18 0 .319.1a.7.7 0 0 1 .214.247q.075.147.074.278 0 .072-.036.127t-.087.055q-.057 0-.086-.038a.6.6 0 0 1-.064-.132.6.6 0 0 0-.138-.229.27.27 0 0 0-.194-.076q-.184 0-.293.196-.11.195-.11.556 0 .24.049.4a.5.5 0 0 0 .137.24.3.3 0 0 0 .207.078q.129 0 .217-.09a.57.57 0 0 0 .135-.262.5.5 0 0 1 .047-.133.1.1 0 0 1 .09-.051q.054 0 .092.052a.2.2 0 0 1 .038.13.7.7 0 0 1-.034.212.8.8 0 0 1-.11.225.6.6 0 0 1-.19.18.5.5 0 0 1-.269.069.7.7 0 0 1-.212-.031.5.5 0 0 1-.173-.097.7.7 0 0 1-.144-.172 1 1 0 0 1-.1-.217 1.5 1.5 0 0 1-.061-.257 2 2 0 0 1-.02-.29q0-.25.051-.446.052-.197.148-.337a.7.7 0 0 1 .227-.213.55.55 0 0 1 .276-.074m-4.117 0q.229 0 .393.13a.8.8 0 0 1 .249.371q.084.24.084.564 0 .24-.046.434a1.1 1.1 0 0 1-.139.34.65.65 0 0 1-.227.219.6.6 0 0 1-.308.076.61.61 0 0 1-.538-.298 1.1 1.1 0 0 1-.138-.342 2 2 0 0 1-.047-.432q0-.238.049-.437a1.1 1.1 0 0 1 .141-.338.65.65 0 0 1 .225-.213.6.6 0 0 1 .302-.073Zm-1.493.001a.55.55 0 0 1 .235.047.53.53 0 0 1 .29.457.25.25 0 0 1-.038.135q-.038.06-.093.06a.09.09 0 0 1-.078-.036.5.5 0 0 1-.058-.118.6.6 0 0 0-.097-.182q-.056-.066-.18-.066a.25.25 0 0 0-.187.071.23.23 0 0 0-.071.171.22.22 0 0 0 .09.185.4.4 0 0 0 .086.05q.044.019.143.054.124.04.226.09a.7.7 0 0 1 .172.12.5.5 0 0 1 .11.178q.04.107.04.263a.8.8 0 0 1-.07.336.54.54 0 0 1-.516.318.56.56 0 0 1-.36-.115.6.6 0 0 1-.163-.221.65.65 0 0 1-.063-.27q0-.075.038-.13a.11.11 0 0 1 .096-.054.1.1 0 0 1 .08.042q.033.043.055.126a1 1 0 0 0 .061.164q.033.066.092.11a.26.26 0 0 0 .156.042q.133 0 .216-.086a.3.3 0 0 0 .083-.217.3.3 0 0 0-.045-.166.3.3 0 0 0-.116-.098 2 2 0 0 0-.19-.072 1.1 1.1 0 0 1-.265-.122.5.5 0 0 1-.17-.19.64.64 0 0 1-.062-.299q0-.171.066-.303a.47.47 0 0 1 .192-.203.6.6 0 0 1 .295-.071m2.65.034h.704q.072 0 .106.045.035.044.035.116a.2.2 0 0 1-.035.118q-.034.044-.105.044h-.589v.528h.492q.069 0 .102.043a.18.18 0 0 1 .034.115.18.18 0 0 1-.034.114q-.035.042-.102.042h-.492v.68q0 .129-.041.191-.042.063-.107.063-.066 0-.108-.063a.35.35 0 0 1-.042-.192v-1.587q0-.09.019-.147a.15.15 0 0 1 .06-.083.2.2 0 0 1 .104-.027zm1.076 0h.95q.077 0 .115.049a.2.2 0 0 1 .038.125.2.2 0 0 1-.039.125q-.038.048-.114.047h-.326v1.498q0 .13-.041.192-.042.063-.107.063-.067 0-.109-.063a.35.35 0 0 1-.041-.192v-1.496h-.326q-.077 0-.114-.048a.2.2 0 0 1-.037-.125.2.2 0 0 1 .039-.127q.038-.046.112-.046zm4.1 0h.95q.077 0 .115.049a.2.2 0 0 1 .038.125.2.2 0 0 1-.038.125q-.039.047-.115.047h-.326v1.498q0 .13-.041.192-.041.063-.107.063c-.066 0-.08-.021-.108-.063a.35.35 0 0 1-.042-.192v-1.496h-.326q-.076 0-.113-.048a.2.2 0 0 1-.038-.125.2.2 0 0 1 .039-.127q.039-.046.112-.046zm-6.334.297a.3.3 0 0 0-.165.047.4.4 0 0 0-.13.138.8.8 0 0 0-.087.23 1.4 1.4 0 0 0-.031.315q0 .175.031.318a.8.8 0 0 0 .09.236q.057.095.132.14.075.047.164.047a.32.32 0 0 0 .21-.08.54.54 0 0 0 .154-.248q.056-.169.056-.413a1.3 1.3 0 0 0-.052-.393.54.54 0 0 0-.149-.252.33.33 0 0 0-.223-.085m5.572.11-.219.85h.441zm2.502 0-.218.85h.44zm2.725 0-.218.85h.44zm-6.858 2.39h.392l-.96.96-.197-.195zm.636 0h.392l-1.279 1.279-.196-.196zm.636 0h.392l-1.597 1.596-.196-.195zm.635 0h.393l-1.915 1.915-.196-.197z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/softpedia.svg��������������������������������0000664�0000000�0000000�00000001252�14753064456�0025601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.88 18.093V24c4.526 0 9.959-.326 13.765-1.628a14.7 14.7 0 0 0 2.708-1.23c1.255-.752 2.208-1.668 2.844-2.763a7 7 0 0 0 .725-1.709l.197-1.723c0-.63-.09-1.23-.257-1.819a6.7 6.7 0 0 0-.696-1.531c-.484-.78-1.165-1.45-2.012-2.024a12 12 0 0 0-1.95-.999c-1.722-.642-4.38-1.295-5.356-1.654-.882-.294-1.784-.738-1.784-1.012H20.59V0H10.11C7.522 0 5.677 1.148 4.573 3.46c-1.18 2.461-.741 4.704 1.286 6.714q.84.841 2.042 1.477c.862.452 2.072.903 3.615 1.34a95 95 0 0 0 2.374.684c.56.178 1 .342 1.332.493l.62.328c.272.191.332.506.18.957-.165.22-.437.452-.8.67-.938.574-2.375 1.026-4.311 1.34-2.39.424-5.4.63-9.03.63z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sogou.svg������������������������������������0000664�0000000�0000000�00000001571�14753064456�0024763�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.801 22.74 17.79 24c1.561-.676 2.926-1.62 4.051-2.851l-.946-1.318a10.3 10.3 0 0 1-4.08 2.909zM12 22.199c-5.775 0-10.455-4.619-10.455-10.35C1.545 6.15 6.225 1.53 12 1.53s10.456 4.65 10.456 10.35c0 2.55-.946 4.891-2.507 6.69l.945 1.261C22.801 17.729 24 14.939 24 11.88 24 5.295 18.63 0 12 0S0 5.311 0 11.85c0 6.57 5.37 11.88 12 11.88 1.71 0 3.33-.346 4.801-.99l-.961-1.26c-1.2.45-2.49.719-3.84.719m6-9.553c-2.25-1.86-5.34-2.101-7.801-3.556-.75-.479-.148-1.395.602-1.425 2.699-.45 5.369.63 7.889 1.5l.151-2.655c-3.151-1.14-6.57-1.875-9.901-1.35-1.2.3-2.4.675-3.254 1.56-1.171 1.2-.961 3.36.389 4.32 2.236 1.755 5.176 2.011 7.621 3.36.96.39.555 1.68-.391 1.77-2.925.555-5.805-.721-8.325-2.1-.03 1.02-.06 2.01-.06 3 3.195 1.409 6.75 2.069 10.2 1.529 1.17-.225 2.37-.6 3.225-1.454 1.229-1.2 1.111-3.511-.33-4.5H18z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/solana.svg�����������������������������������0000664�0000000�0000000�00000001663�14753064456�0025106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.876 18.031-3.962 4.14a.9.9 0 0 1-.306.21.9.9 0 0 1-.367.074H.46a.47.47 0 0 1-.252-.073.45.45 0 0 1-.17-.196.44.44 0 0 1-.031-.255.44.44 0 0 1 .117-.23l3.965-4.139a.9.9 0 0 1 .305-.21.9.9 0 0 1 .366-.075h18.78a.47.47 0 0 1 .252.074.45.45 0 0 1 .17.196.44.44 0 0 1 .031.255.44.44 0 0 1-.117.23m-3.962-8.335a.9.9 0 0 0-.306-.21.9.9 0 0 0-.367-.075H.46a.47.47 0 0 0-.252.073.45.45 0 0 0-.17.197.44.44 0 0 0-.031.254.44.44 0 0 0 .117.23l3.965 4.14a.9.9 0 0 0 .305.21.9.9 0 0 0 .366.074h18.78a.47.47 0 0 0 .252-.073.45.45 0 0 0 .17-.196.44.44 0 0 0 .031-.255.44.44 0 0 0-.117-.23zM.46 6.723h18.782a.9.9 0 0 0 .367-.075.9.9 0 0 0 .306-.21l3.962-4.14a.44.44 0 0 0 .117-.23.44.44 0 0 0-.032-.254.45.45 0 0 0-.17-.196.47.47 0 0 0-.252-.073H4.76a.9.9 0 0 0-.366.074.9.9 0 0 0-.305.21L.125 5.97a.44.44 0 0 0-.117.23.44.44 0 0 0 .03.254.45.45 0 0 0 .17.196.47.47 0 0 0 .252.074z"/></svg>�����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/solid.svg������������������������������������0000664�0000000�0000000�00000002034�14753064456�0024734�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.558.788A9 9 0 0 0 9.776.99l-.453.15c-.906.303-1.656.755-2.1 1.348l-.301.452-2.035 3.528c.426-.387.974-.698 1.643-.894h.001l.613-.154h.001a9 9 0 0 1 1.777-.206c2.916-.053 6.033 1.148 8.423 2.36 2.317 1.175 3.888 2.32 3.987 2.39L24 5.518c-.082-.06-1.66-1.21-3.991-2.386-2.393-1.206-5.521-2.396-8.45-2.343zM8.924 5.366a8.6 8.6 0 0 0-1.745.203l-.606.151c-1.278.376-2.095 1.16-2.43 2.108s-.188 2.065.487 3.116c.33.43.747.813 1.216 1.147L12.328 10h.001a6.94 6.94 0 0 1 6.013 1.013l2.844-.963c-.17-.124-1.663-1.2-3.91-2.34-2.379-1.206-5.479-2.396-8.352-2.344m5.435 4.497a6.8 6.8 0 0 0-1.984.283L2.94 13.189 0 18.334l9.276-2.992a6.945 6.945 0 0 1 7.408 2.314v.001c.695.903.89 1.906.66 2.808l2.572-4.63c.595-1.041.45-2.225-.302-3.429a6.8 6.8 0 0 0-5.255-2.543m-3.031 5.341a6.8 6.8 0 0 0-2.006.283L.008 18.492c.175.131 2.02 1.498 4.687 2.768 2.797 1.332 6.37 2.467 9.468 1.712l.454-.152h.002c1.278-.376 2.134-1.162 2.487-2.09.353-.93.207-2.004-.541-2.978a6.8 6.8 0 0 0-5.237-2.548"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/solidity.svg���������������������������������0000664�0000000�0000000�00000000516�14753064456�0025465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.409 6.608 7.981.255l3.572 6.353zM8.411 0l3.569 6.348L15.552 0zm4.036 17.392 3.572 6.354 3.575-6.354zm-.608-10.284h-7.43l3.715 6.605zm.428-.25h7.428L15.982.255zM15.589 24l-3.569-6.349L8.448 24zm-3.856-6.858H4.306l3.712 6.603zm.428-.25h7.433l-3.718-6.605z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sololearn.svg��������������������������������0000664�0000000�0000000�00000001751�14753064456�0025625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.621 16.084a8.48 8.48 0 0 1-2.922 6.427c-.603.53-.19 1.522.613 1.442a9 9 0 0 0 1.587-.3 8.32 8.32 0 0 0 5.787-5.887 8.555 8.555 0 0 0-8.258-10.832 9 9 0 0 0-1.045.06c-.794.1-.995 1.161-.29 1.542 2.701 1.452 4.53 4.285 4.53 7.548zM7.906 18.597a8.54 8.54 0 0 1-6.45-2.913c-.532-.6-1.527-.19-1.446.61a9 9 0 0 0 .3 1.582c.794 2.823 3.064 5.026 5.907 5.766 5.727 1.492 10.87-2.773 10.87-8.229 0-.35-.02-.7-.06-1.04-.1-.792-1.165-.992-1.547-.29a8.6 8.6 0 0 1-7.574 4.514M5.382 7.916a8.48 8.48 0 0 1 2.924-6.427c.603-.531.19-1.522-.613-1.442a10 10 0 0 0-1.598.29A8.34 8.34 0 0 0 .31 6.224a8.555 8.555 0 0 0 8.258 10.832c.352 0 .704-.02 1.045-.06.794-.1.995-1.162.29-1.542a8.54 8.541 0 0 1-4.52-7.538zm10.72-2.513a8.54 8.54 0 0 1 6.45 2.913c.53.6 1.526.19 1.445-.61a9 9 0 0 0-.3-1.583C22.902 3.3 20.632 1.098 17.788.357 12.071-1.145 6.928 3.12 6.928 8.576c0 .35.02.7.06 1.041.1.791 1.168.991 1.549.29A8.58 8.58 0 0 1 16.1 5.404z"/></svg>�����������������������mkdocs-material-9.6.4/material/templates/.icons/simple/solus.svg������������������������������������0000664�0000000�0000000�00000002467�14753064456�0025001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.453 0c-.18.587-.369 1.167-.565 1.75A11.64 11.64 0 0 0 0 12.364a11.6 11.6 0 0 0 .516 3.403l-.339.598L0 16.73l.279.143a3.5 3.5 0 0 0 .741.222A11.6 11.6 0 0 0 2 18.868c4.034.343 8.55.512 12.446-.056 3.192-.463 5.94-1.423 7.735-3.117.252-.233.474-.474.674-.722.019-.038.037-.053.06-.076.011 0 .026-.037.038-.052.015 0 .03-.038.041-.057.008 0 .015-.038.023-.038.33-.444.587-.892.801-1.31l.181-.365-.365-.365a6 6 0 0 0-.361-.35A11.64 11.64 0 0 0 11.635.722a11.6 11.6 0 0 0-3.211.463C7.96.508 7.596.041 7.453 0m.365 1.637C9.06 3.82 10.13 5.06 11.454 7.457c.132 1.524.67 9.45.727 10.181-.392-.037-2.485-.24-5.104-.515-1.43-.147-2.899-.316-4.092-.49l-1.9-.447c2.149-3.787 5.551-9.727 6.737-14.548zm4.543 6.18s4.991 3.927 7.092 8.73c-2.56 1.26-4.916 1.098-6.361 1.09 1.023-2.634 1.023-6.21-.73-9.82zm3.456 2.184a45 45 0 0 1 2.91.907c1.768.629 3.417 1.49 4.365 2.364a6.96 6.96 0 0 1-2.91 2.91c.151-1.495-.39-2.933-1.456-4.002-.787-.787-1.822-1.453-2.91-2.183zm6.707 6.478c-2.352 1.667-5.126 2.68-7.965 3.112a41 41 0 0 1-3.715.34h-.323a54 54 0 0 1-3.727 0 86 86 0 0 1-4.178-.23h-.003c2.555 3.255 6.993 4.893 11.092 4.102a11.4 11.4 0 0 0 4.498-1.852h.007a12 12 0 0 0 .903-.685l.038-.037a11.56 11.56 0 0 0 3.376-4.762zM2.511 19.584l.023.038c-.008 0-.015-.038-.023-.038"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sonar.svg������������������������������������0000664�0000000�0000000�00000003230�14753064456�0024743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.63 5.037a4 4 0 0 0-.702.044 14.9 14.9 0 0 1 1.018 5.465c0 5.693-3.172 10.745-7.802 12.587q.35.023.707.024h.035a7.43 7.43 0 0 0 5.748-2.764c1.773-2.194 2.861-5.15 2.861-8.391a13.6 13.6 0 0 0-1.865-6.965m-.738 5.509a13.8 13.8 0 0 0-.98-5.172c-.136.056-.233.107-.304.142a.8.8 0 0 0-.424.804q.125 1.08.127 2.169c0 3.312-1.069 6.49-3.011 8.946-1.837 2.321-4.301 3.815-6.981 4.242l.023.014a5.46 5.46 0 0 0 5.103.153c3.782-1.854 6.447-6.22 6.447-11.298M24 12.002a11.1 11.1 0 0 0-.85-4.276 4.9 4.9 0 0 0-1.072-1.627 3.6 3.6 0 0 0-.842-.631A4 4 0 0 0 21 5.356a14.84 14.84 0 0 1 1.544 6.642c0 3.294-1.073 6.467-2.982 8.901A11.14 11.14 0 0 0 24 12.002m-3.147-7.771A11.12 11.12 0 0 0 12.856.843C6.691.843 1.64 5.95 1.702 12.115c.013 1.461.315 2.905.888 4.25q-.276-.036-.555-.024c-.5.023-1.207-.157-1.527-.247-.32-.089-.606.167-.476.465v.009c1.108 2.536 3.562 4.187 5.906 4.182q.233 0 .466-.024c5.488-.418 9.843-5.746 9.843-12.236q0-.614-.053-1.22a.24.24 0 0 0-.054-.132.24.24 0 0 0-.263-.075.24.24 0 0 0-.117.084c-1.518 2.009-3.766 5.541-6.579 3.7-1.084-.706-1.661-2.225-1.335-3.772.586-2.777 3.822-4.608 5.248-4.034.112.045.513.205.65.571.208.558-.421 1.018-.742 2.007-.345 1.071-.15 2.206.092 2.256.271.054.726-.94 1.845-1.844.813-.654 1.426-.839 1.811-1.534.371-.678-.29-1.392-.065-1.456.225-.063.435.717 1.105 1.105.559.325 1.058.122 1.794.092q.41-.003.813.063s.144.02.372.067a.08.08 0 0 0 .052-.003.1.1 0 0 0 .04-.034.08.08 0 0 0 .012-.051.1.1 0 0 0-.02-.049m-8.314 8.599a.79.79 0 0 1 .508-.307.65.65 0 0 1 .499.135c.271.251.191.736-.042 1.015-.217.258-.644.427-.941.236a.68.68 0 0 1-.263-.542.8.8 0 0 1 .239-.537"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sonarcloud.svg�������������������������������0000664�0000000�0000000�00000001766�14753064456�0026006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.406 10.9a7.1 7.1 0 0 0-3.377-2.358v-.085c0-4.035-3.156-7.324-7.047-7.324-3.893 0-7.05 3.282-7.05 7.325v.1C2.081 9.492 0 12.268 0 15.542c0 4.035 3.159 7.325 7.05 7.325a6.9 6.9 0 0 0 4.952-2.108 6.89 6.89 0 0 0 4.947 2.108c3.884 0 7.051-3.282 7.051-7.325a7.57 7.57 0 0 0-1.594-4.643zM16.95 21.014c-2.903 0-5.267-2.456-5.267-5.474a.91.91 0 0 0-.89-.924.906.906 0 0 0-.892.925c0 1.368.367 2.651.994 3.748a5.16 5.16 0 0 1-3.845 1.733c-2.904 0-5.27-2.457-5.27-5.474 0-3.016 2.366-5.473 5.27-5.473.63 0 1.241.117 1.827.335.007 0 .013.007.02.007.203.071.489.21.578.287a.86.86 0 0 0 1.249-.1.94.94 0 0 0-.097-1.3c-.39-.342-.995-.575-1.144-.63a6.8 6.8 0 0 0-2.425-.443q-.169-.002-.338.007c.12-2.916 2.433-5.247 5.27-5.247 2.903 0 5.267 2.456 5.267 5.474a5.57 5.57 0 0 1-2.215 4.463.95.95 0 0 0-.21 1.283c.171.25.45.39.727.39a.86.86 0 0 0 .516-.172 7.38 7.38 0 0 0 2.709-4.02c2.035.785 3.449 2.829 3.449 5.139-.007 3.01-2.371 5.466-5.283 5.466"/></svg>����������mkdocs-material-9.6.4/material/templates/.icons/simple/sonarlint.svg��������������������������������0000664�0000000�0000000�00000002266�14753064456�0025642�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.412 0 0 5.342 0 12c0 6.66 5.411 12 12 12s12-5.41 12-12c0-6.658-5.41-12-12-12m0 2.22A9.77 9.77 0 0 1 21.78 12 9.77 9.77 0 0 1 12 21.78 9.77 9.77 0 0 1 2.22 12 9.77 9.77 0 0 1 12 2.22M5.203 9.988c-.763 0-1.179.763-1.456 1.387 0 0-.208.555-.347.763-.07.277-.486 1.18-.14 1.665.209.277.486-.139.694-.347.139-.208.418-.833.418-.833.346-.555.485-.832.831-.832.347 0 .555.278.832.902.347.625.695 1.388 1.458 1.388s1.179-.763 1.456-1.388c.278-.555.485-.902.832-.902s.556.278.833.902c.347.625.694 1.388 1.457 1.388s1.179-.763 1.456-1.388c.278-.555.485-.902.832-.902s.556.278.833.902c.347.625.694 1.388 1.457 1.388s1.179-.763 1.456-1.388c.277-.555.486-.902.833-.902s.555.278.832.902c0 0 .139.277.347.624.07.138.416.693.693.693.278 0 .347-.832.07-1.525-.278-.625-.485-1.11-.485-1.11-.347-.624-.694-1.387-1.457-1.387s-1.18.763-1.458 1.387c-.277.555-.485.901-.831.901-.347 0-.555-.277-.832-.9-.347-.625-.695-1.388-1.458-1.388s-1.179.763-1.456 1.387c-.278.555-.485.901-.832.901s-.556-.277-.833-.9c-.347-.625-.694-1.388-1.457-1.388s-1.179.763-1.456 1.387c-.278.555-.485.901-.832.901s-.556-.277-.833-.9c-.347-.625-.694-1.388-1.457-1.388"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sonarqube.svg��������������������������������0000664�0000000�0000000�00000000565�14753064456�0025630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.685.386-.465.766c3.477 2.112 6.305 5.27 7.966 8.89L24 9.67c-1.734-3.783-4.687-7.08-8.315-9.284M8.462.91l-.305 1.075c6.89 1.976 12.384 7.64 13.997 14.421l1.085-.258C21.535 8.977 15.735 2.997 8.462.909zM0 2.667v1.342c10.963 0 19.883 8.795 19.883 19.605h1.342c0-11.55-9.522-20.947-21.225-20.947"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sonarr.svg�����������������������������������0000664�0000000�0000000�00000003626�14753064456�0025136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.212 4.282Q23.989 7.588 23.989 12q0 4.272-2.602 7.489a934 934 0 0 1-2.101-2.095c-1.477-1.477-1.792-3.293-1.792-5.278 0-2.224.127-3.486 1.577-4.935l2.478-2.478a13 13 0 0 0-.337-.421m-17.7 16.193Q.806 17.779.188 14.213A12 12 0 0 1 .011 12q0-.42.017-.802 0-.039.022-.078.23-3.901 2.767-6.865-.163.19-.316.387S3.852 5.988 4.83 6.965c1.408 1.409 1.726 3.215 1.726 5.151 0 1.985-.249 3.762-1.781 5.295-1.035 1.035-2.119 2.124-2.119 2.124q.169.204.349.404c.029-.027 1.297-1.348 2.123-2.175 1.638-1.637 1.928-3.528 1.928-5.648 0-2.072-.365-3.997-1.873-5.504a620 620 0 0 0-2.366-2.357q.252-.294.523-.576l3.117 3.106-.194.195 1.903 1.898.547-.549L6.81 6.432l-.196.196L3.495 3.52c.01-.009.436-.416.643-.597.009.011 2.28 2.283 2.28 2.283 1.538 1.537 3.5 1.955 5.621 1.955 2.18 0 4.134-.442 5.731-2.038.907-.908 2.153-2.149 2.162-2.16.17.151.491.461.56.528l.013.013-3.111 3.028-.001.002-.197-.194-1.876 1.903.552.543 1.875-1.903-.197-.194 3.109-3.026q.29.305.553.619c-.03.025-2.495 2.546-2.495 2.546-1.556 1.556-1.723 2.9-1.723 5.288 0 2.121.361 4.054 1.939 5.632a577 577 0 0 0 2.133 2.124c-.183.208-.599.645-.613.66l-3.066-3.174.195-.196-1.995-1.986-.546.549 1.995 1.986.195-.196 3.065 3.172c-.021.019-.385.362-.552.506-.01-.013-1.974-1.978-1.974-1.978-1.842-1.842-3.299-2.039-5.731-2.039-2.338 0-3.92.239-5.632 1.95-.944.944-2.078 2.085-2.089 2.099-.275-.23-.649-.594-.649-.594l3.019-3.024.199.192 1.854-1.925-.558-.538-1.854 1.926.199.191zM12 8.672A3.33 3.33 0 0 0 8.672 12 3.33 3.33 0 0 0 12 15.328 3.33 3.33 0 0 0 15.328 12 3.33 3.33 0 0 0 12 8.672M4.52 2.6Q7.737 0 12.011 0q4.32 0 7.541 2.639s-1.215 1.209-2.136 2.13c-1.496 1.496-3.334 1.892-5.377 1.892-1.985 0-3.829-.37-5.267-1.809zm14.837 18.909a10 10 0 0 1-.342.256Q15.983 24 12.011 24q-3.978 0-6.993-2.235-.156-.111-.31-.227s1.096-1.101 2.053-2.058c1.602-1.602 3.09-1.804 5.278-1.804 2.28 0 3.651.166 5.377 1.892z"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sonatype.svg���������������������������������0000664�0000000�0000000�00000004123�14753064456�0025465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.457 20.6c0 .511-.428.903-1.21.903-.494 0-.946-.157-1.247-.452l.289-.458c.205.211.608.41.988.41.379 0 .572-.139.572-.355 0-.253-.307-.344-.663-.422-.5-.108-1.096-.24-1.096-.891 0-.476.41-.885 1.144-.885.494 0 .868.174 1.132.41l-.265.445c-.174-.199-.5-.35-.86-.35-.332 0-.543.121-.543.326 0 .223.29.3.633.38.506.107 1.126.252 1.126.938m3.311-.627c0 .837-.566 1.53-1.5 1.53-.92 0-1.492-.693-1.492-1.53 0-.83.572-1.523 1.493-1.523.933 0 1.5.692 1.5 1.523m-.656 0c0-.512-.301-.963-.843-.963-.536 0-.837.451-.837.963 0 .518.3.97.837.97.542 0 .843-.452.843-.97m2.812-1.523c-.458 0-.831.24-1.024.47v-.398h-.632v2.909H6.9V19.4a.96.96 0 0 1 .747-.391c.355 0 .584.15.584.602v1.819h.632v-2.048c0-.596-.313-.933-.94-.933m4.074 1.054v1.926h-.632v-.313c-.217.247-.554.386-.94.386-.475 0-1.011-.32-1.011-.964 0-.668.536-.945 1.011-.945.392 0 .729.126.94.373v-.433c0-.337-.277-.542-.68-.542-.326 0-.609.12-.862.367l-.259-.44a1.73 1.73 0 0 1 1.223-.47c.644 0 1.21.272 1.21 1.055m-.632.824c-.145-.198-.416-.3-.693-.3-.355 0-.62.204-.62.523 0 .313.265.518.62.518.277 0 .548-.102.693-.3zm2.487.615c-.18 0-.277-.145-.277-.344v-1.523h.59v-.554h-.59v-.795h-.632v.795h-.482v.554h.482v1.68c0 .482.259.747.746.747.295 0 .482-.078.596-.187l-.15-.476c-.048.055-.163.103-.283.103zm2.117-.241-.849-2.18h-.674l1.192 2.945-.144.33c-.085.193-.217.254-.416.254a.7.7 0 0 1-.241-.048l-.096.566c.09.024.265.042.355.042.452-.006.801-.163 1-.657l1.403-3.432h-.68zm4.689-.729c0 .958-.536 1.53-1.289 1.53-.367 0-.698-.163-.933-.476v1.511h-.632v-4.016h.632v.397a1.16 1.16 0 0 1 .933-.47c.753 0 1.289.567 1.289 1.524m-.657 0c0-.56-.319-.963-.819-.963-.295 0-.608.174-.746.391v1.15a.96.96 0 0 0 .746.392c.5 0 .82-.404.82-.97m3.998.211h-2.246c.048.44.38.8.927.8.283 0 .62-.114.825-.318l.29.415c-.29.277-.717.422-1.181.422-.873 0-1.523-.608-1.523-1.53 0-.843.614-1.523 1.475-1.523.873 0 1.433.668 1.433 1.583zm-.614-.446c-.012-.343-.247-.77-.82-.77-.541 0-.788.415-.818.77zm-5.434-8.04L12 15.135l-5.952-3.437V4.826L12 1.389l5.952 3.437zm-1.707-5.887L12 3.361 7.755 5.81v4.902L12 13.163l4.245-2.45z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/songkick.svg���������������������������������0000664�0000000�0000000�00000002010�14753064456�0025424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.55 18.779c-1.855 0-3.372-.339-4.598-1.602l1.92-1.908c.63.631 1.74.853 2.715.853 1.186 0 1.739-.391 1.739-1.089 0-.291-.06-.529-.239-.717-.15-.154-.404-.273-.795-.324l-1.455-.205c-1.064-.152-1.891-.51-2.43-1.072-.555-.578-.84-1.395-.84-2.434C2.536 8.066 4.2 6.45 6.96 6.45c1.74 0 3.048.407 4.086 1.448L9.171 9.77c-.765-.766-1.77-.715-2.295-.715-1.039 0-1.465.597-1.465 1.125 0 .152.051.375.24.561.15.153.404.307.832.359l1.467.203c1.09.153 1.875.495 2.385 1.005.645.63.9 1.53.9 2.655 0 2.47-2.127 3.819-4.68 3.819zM20.813 2.651C19.178 1.432 17.37.612 15.089.237v10.875l3.261-4.539h3.565l-4.095 5.72s.944 1.51 1.515 2.405c.586.899 1.139 1.14 1.965 1.14h.57v2.806h-.872c-1.812 0-2.9-.33-3.72-1.575-.504-.811-2.175-3.436-2.175-3.436v4.995H12.12V-.001H12c-3.852 0-6.509.931-8.811 2.652C-.132 5.137.001 8.451.001 11.997s-.133 6.867 3.188 9.352C5.491 23.074 8.148 24 12 24s6.51-.927 8.812-2.651C24.131 18.865 24 15.544 24 11.997c0-3.546.132-6.859-3.188-9.346z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/songoda.svg����������������������������������0000664�0000000�0000000�00000002237�14753064456�0025261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.23 4.917c-1.414-.156-6.227-.945-10.604-4.688a.97.97 0 0 0-1.251 0C6.997 3.967 2.185 4.76.77 4.917a.435.435 0 0 0-.385.463c.29 3.924 1.918 14.211 10.998 18.482.39.184.844.184 1.234 0 9.079-4.27 10.708-14.557 10.998-18.482a.435.435 0 0 0-.385-.463m-1.704 2.016c-.581 4.255-2.54 11.442-9.126 14.896a.87.87 0 0 1-.807 0C5.006 18.373 3.048 11.19 2.47 6.935a.365.365 0 0 1 .285-.404 23 23 0 0 0 2.208-.596v3.38c0 .489.402.89.89.89.489 0 .89-.401.89-.89V5.279a22.3 22.3 0 0 0 4.989-2.87.44.44 0 0 1 .534 0c3.338 2.556 6.805 3.656 8.975 4.12.186.04.31.217.285.405zm-5.831 7.812q0 1.384-1.04 2.246-1.03.86-2.654.86-2.043.001-3.135-1.114-.56-.577-.56-1.063a.77.77 0 0 1 .28-.584q.278-.262.733-.262.533 0 .9.501.6.825 1.71.824.674 0 1.083-.297.516-.377.515-1.14 0-.817-.75-1.43-.542-.441-1.59-.936-1.283-.607-1.938-1.365-.672-.771-.672-1.93 0-1.505 1.196-2.298.898-.606 2.26-.606 1.492 0 2.454.801.61.51.611 1.04 0 .405-.41.667a1.13 1.13 0 0 1-.627.188q-.541 0-.785-.374-.436-.681-1.258-.681-.882 0-1.17.718a2 2 0 0 0-.14.741c-.005.3.108.591.315.809q.446.494 1.598 1.062 1.38.682 2.018 1.258 1.056.98 1.056 2.365"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sonicwall.svg��������������������������������0000664�0000000�0000000�00000004226�14753064456�0025622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.678 10.007a.31.31 0 0 0 .016.62.31.31 0 0 0 .306-.308.31.31 0 0 0-.302-.312zm.016.043a.27.27 0 0 1 .27.269.27.27 0 1 1-.27-.27zm-9.503.053-.614 1.863-.013.04-.013-.04-.624-1.855h-.619l.986 2.74h.508l.618-1.788.013-.037.013.037.619 1.787h.507l.986-2.74h-.603l-.622 1.856-.015.04-.013-.04-.613-1.863zm-5.48.006v2.743h.258V10.11zm-7.823 0-.038.002c-.481 0-.85.306-.85.712 0 .41.26.63.898.759.6.12.715.279.715.526 0 .288-.26.49-.631.49a1.23 1.23 0 0 1-.923-.37l-.02-.02v.313a1.48 1.48 0 0 0 .923.31c.524 0 .89-.302.89-.738.005-.393-.257-.614-.872-.738-.619-.127-.739-.288-.739-.541 0-.27.255-.464.608-.464a1.1 1.1 0 0 1 .759.287l.022.018v-.318a1.3 1.3 0 0 0-.742-.227zm4.92.002v2.747h.284v-2.081l1.813 2.08h.063v-2.746h-.272v2.106l-1.828-2.106zm11.672 0-.642 1.721c-.637.117-1.051.393-.848.943.278.76 1.549 1.218 1.549 1.218s-1.285-.801-.613-1.34c.296-.238.819-.414 1.313-.54l.278.719h.541l-.322-.833c.403-.08.708-.122.708-.122s-.36-.043-.785-.077l-.653-1.69zm2.136 0v2.721h1.554v-.49h-1.034v-2.231zm2.106 0v2.721h1.555v-.49H22.24v-2.231zm-17.953.008h-.042a1.3 1.3 0 0 0-.67.176 1.3 1.3 0 0 0-.491.499 1.4 1.4 0 0 0-.185.69 1.3 1.3 0 0 0 .397.953 1.32 1.32 0 0 0 .971.395 1.35 1.35 0 0 0 1.359-1.356 1.3 1.3 0 0 0-.397-.965 1.34 1.34 0 0 0-.942-.392m7.3.002a1.38 1.38 0 0 0-.96.392 1.3 1.3 0 0 0-.4.96 1.38 1.38 0 0 0 .33.923 1.35 1.35 0 0 0 1.077.454 1.5 1.5 0 0 0 .65-.136 1.5 1.5 0 0 0 .265-.185v-.338a1.16 1.16 0 0 1-.899.412 1.13 1.13 0 0 1-.823-.325 1.07 1.07 0 0 1-.325-.794 1.1 1.1 0 0 1 .146-.565 1.1 1.1 0 0 1 .41-.402 1.16 1.16 0 0 1 .576-.15 1.2 1.2 0 0 1 .515.12 1.1 1.1 0 0 1 .4.314v-.35a1.5 1.5 0 0 0-.26-.185 1.5 1.5 0 0 0-.66-.145zm12.661.009h-.174v.37h.094v-.142h.035l.085.142.11-.002-.103-.153a.1.1 0 0 0 .068-.102.11.11 0 0 0-.115-.113m-.026.063a.05.05 0 0 1 .046.054q0 .048-.054.048h-.046v-.101h.054zm-19.97.178h.006a1.1 1.1 0 0 1 .548.153 1.1 1.1 0 0 1 .405.399 1.1 1.1 0 0 1 .143.553 1.1 1.1 0 0 1-.143.564 1.05 1.05 0 0 1-.4.399 1.1 1.1 0 0 1-.553.145 1.087 1.087 0 0 1-1.091-1.095 1.1 1.1 0 0 1 .144-.564 1.11 1.11 0 0 1 .94-.554zm14.015.465.368.931q-.048-.001-.097-.004a7 7 0 0 0-.622.01h-.018z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sonos.svg������������������������������������0000664�0000000�0000000�00000002645�14753064456�0024773�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.988 12.36-2.813-2.634v4.429h.837V11.7l2.813 2.633V9.905h-.837zM6.464 9.665A2.3 2.3 0 0 0 4.13 12c0 1.257 1.077 2.334 2.334 2.334A2.3 2.3 0 0 0 8.798 12a2.3 2.3 0 0 0-2.334-2.334m0 3.83A1.48 1.48 0 0 1 4.968 12c0-.838.658-1.496 1.496-1.496S7.96 11.162 7.96 12s-.658 1.496-1.496 1.496M2.694 12c-.24-.18-.54-.3-.958-.419-.838-.24-.838-.479-.838-.598 0-.24.299-.48.718-.48.36 0 .658.18.778.24l.06.06.658-.479-.06-.06s-.538-.598-1.436-.598c-.419 0-.838.12-1.137.359-.3.24-.479.598-.479.958s.18.718.479.957c.24.18.538.3.957.42.838.239.838.478.838.598 0 .239-.299.478-.718.478-.359 0-.658-.18-.778-.239l-.06-.06-.658.479.06.06s.538.598 1.436.598c.42 0 .838-.12 1.137-.359.3-.24.48-.598.48-.957 0-.36-.18-.659-.48-.958m14.843-2.334A2.3 2.3 0 0 0 15.202 12a2.337 2.337 0 0 0 2.334 2.334A2.3 2.3 0 0 0 19.87 12a2.337 2.337 0 0 0-2.334-2.334m0 3.83A1.48 1.48 0 0 1 16.04 12c0-.838.658-1.496 1.496-1.496s1.496.658 1.496 1.496-.718 1.496-1.496 1.496m3.77-1.556c.24.18.54.3.958.42.838.239.838.478.838.598 0 .239-.299.478-.718.478-.36 0-.658-.18-.778-.239h-.06l-.658.479.06.06s.538.598 1.436.598c.419 0 .838-.12 1.137-.359s.479-.598.479-.958-.18-.718-.479-.957c-.24-.18-.538-.3-.957-.42-.838-.239-.838-.478-.838-.598 0-.239.299-.478.718-.478.359 0 .658.18.778.239l.06.06.658-.479-.06-.06s-.538-.598-1.436-.598c-.42 0-.838.12-1.137.359-.3.24-.48.598-.48.957-.059.36.12.659.48.898"/></svg>�������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sony.svg�������������������������������������0000664�0000000�0000000�00000004135�14753064456�0024616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.55 9.888c.921 0 1.658.23 2.221.742.385.349.6.846.594 1.367a1.9 1.9 0 0 1-.594 1.373c-.527.484-1.348.742-2.22.742s-1.68-.258-2.215-.742a1.8 1.8 0 0 1-.603-1.373c0-.518.218-1.015.603-1.367.5-.454 1.384-.742 2.214-.742m.003 3.67c.461 0 .888-.161 1.188-.458.3-.3.433-.66.433-1.103 0-.424-.148-.821-.433-1.103-.294-.29-.733-.454-1.188-.454s-.893.163-1.19.454c-.285.282-.434.679-.434 1.103a1.56 1.56 0 0 0 .434 1.103c.297.294.733.457 1.19.457M3.712 11.59q.24.061.466.163a1.4 1.4 0 0 1 .379.258c.197.206.309.482.306.767a.96.96 0 0 1-.379.778 2.1 2.1 0 0 1-.709.349 3.7 3.7 0 0 1-1.194.17c-.352 0-.546-.041-.813-.097l-.077-.016a4.7 4.7 0 0 1-.858-.278.07.07 0 0 0-.042-.012.084.084 0 0 0-.082.084v.203H.121v-1.478h.524a.76.76 0 0 0 .137.418c.212.26.44.36.657.44.367.12.752.184 1.136.196.553 0 .876-.134.946-.163l.009-.004.006-.002c.062-.023.312-.114.312-.392 0-.274-.234-.334-.387-.373l-.022-.005c-.17-.046-.562-.088-.99-.133l-.152-.016c-.485-.051-.97-.127-1.197-.175-.498-.11-.694-.292-.816-.405l-.008-.008a1.02 1.02 0 0 1-.276-.7c0-.496.34-.796.758-.98.445-.2.975-.289 1.439-.289.82.003 1.487.27 1.727.394.097.052.145-.012.145-.06v-.149h.527v1.288h-.472a.9.9 0 0 0-.294-.491 1.3 1.3 0 0 0-.297-.179 3.1 3.1 0 0 0-1.251-.245c-.443 0-.867.085-1.08.215q-.199.124-.2.306c0 .173.146.242.22.263.196.06.632.103.971.137l.204.021c.327.033 1.012.124 1.315.2zm18.167-.997v-.479H24v.47h-.476c-.172 0-.242.033-.372.179l-1.427 1.63a.1.1 0 0 0-.019.07v.742a1 1 0 0 0 .012.103.15.15 0 0 0 .1.09 1 1 0 0 0 .13.01h.486v.47H19.86v-.47h.46a1 1 0 0 0 .13-.01.16.16 0 0 0 .104-.09 1 1 0 0 0 .009-.1v-.742c0-.025 0-.025-.033-.064L19.119 10.8c-.076-.079-.206-.206-.406-.206h-.458v-.47h2.588v.47h-.312c-.07 0-.118.07-.058.146l.879 1.051c.009.012.015.012.027.003s.894-1.045.9-1.054a.09.09 0 0 0-.018-.128.1.1 0 0 0-.06-.018zm-6.284-.003h.485c.221 0 .26.085.263.291l.028 1.566-2.582-2.324h-1.845v.47h.412c.297 0 .318.164.318.31v2.213c0 .128.001.295-.182.295h-.506v.467h2.164v-.47h-.528c-.212 0-.22-.097-.224-.303v-1.882l2.973 2.651h.757l-.04-2.996c.004-.218.019-.291.243-.291h.473v-.47h-2.209Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/soriana.svg����������������������������������0000664�0000000�0000000�00000001201�14753064456�0025251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.994 3.2c-1.16 0-2.772.494-3.94 2.104-.223.314-.39.664-.494 1.034a4.27 4.27 0 0 0 .678 3.692c.6.812 1.368 1.42 2.044 1.96.332.26 1.034.926 1.26 1.208.34.422.596.674.902 1.606.186.564.212 1.308.12 1.73C21.684 14.384 24 11.594 24 8.56c0-3.486-2.498-5.36-5.006-5.36M15.05 14.986c-.886-1.204-1.908-1.936-2.754-2.706-.368-.336-.772-.584-1.07-.88-1.434-1.424-2.102-3.18-1.764-5.34.268-1.692 1.108-2.806 2.124-3.622a7.1 7.1 0 0 0-4.278-1.372C3.274 1.066-.1 4.31.002 8.306c.184 7.22 9.224 13.37 12.948 14.628 1.992-1.02 3.05-2.928 3.05-4.884 0-1.426-.612-2.6-.95-3.064"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/soundcharts.svg������������������������������0000664�0000000�0000000�00000002742�14753064456�0026165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.038 0h6.052v17.229h-.702v-4.333h-.413v4.333h-.29v-2.521h-.412v2.52h-.29v-4.04h-.413v4.04h-.289V13.98h-.414v3.25h-.33v-2.521h-.371v2.52h-.331v-3.791h-.413v3.792h-.289v-4.333h-.414v4.333h-.701c.02-5.73.02-11.457.02-17.229ZM8.995 7.624h6.01v9.605h-.66v-2.23h-.414v2.23h-.288v-3.5h-.414v3.5h-.289v-3.5h-.413v3.5h-.33v-2.77h-.372v2.77h-.331v-2.77h-.413v2.77h-.289V14.23h-.414v3h-.289v-3.793h-.412v3.793h-.703c.02-2.687.02-6.958.02-9.605zM7.28 12.896h-.414v4.29h-.288v-1.978h-.414v1.98h-.33v-2.772h-.372v2.77h-.33v-4.04h-.414v4.04H4.43v-2.228h-.414v2.229h-.289v-3.25h-.414v3.25h-.289v-3.75h-.412v3.75H1.91V11.54h6.011v5.646h-.66c.02-1.395.02-2.833.02-4.291zm5.969 5.5h.371V24h-.371Zm4.213 0h.33v5.52h-.33zm-7.436 5.396h-.33v-5.398h.33zm7.064-5.397v5.397h-.33v-5.398zm-4.544 0h.33v5.23h-.33zm6.342 0h.33v5.23h-.33zm-9.894 0h.33v4.897h-.33zM19.92 23.25h-.33v-4.856h.33v4.855zm-9.17-.042h-.33v-4.833h.33zm4.254-.042h-.33v-4.79h.33zm-3.511-.374h-.372v-4.417h.372zm9.852.208h-.33v-4.625h.33zm-9.191-.208h-.33v-4.417h.33zm3.883-4.397h.331v4.417h-.33Zm-9.852 4.063v-4.082h.371v4.083zm11.98-.042v-4.04h.371v4.041zM4.8 18.396h.33v4.25H4.8v-4.252Zm16.916 0h.372v4h-.372v-4.002ZM6.91 22.415v-4.04h.33v4.041h-.33Zm-1.426-.042v-3.998h.33v4h-.33Zm15.162 0h-.331v-3.998h.33v4zm-16.96-.04h-.33v-3.917h.33zm-.701-.23h-.372v-3.709h.372Zm10.967-3.709h.372v3.625h-.372zm-5.97 3.793h-.33v-3.793h.33zm-6.009-3.794h.33v3.584h-.33zm2.128 0h.33v3.584H4.1z"/></svg>������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/soundcloud.svg�������������������������������0000664�0000000�0000000�00000002135�14753064456�0026003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.999 14.165c-.052 1.796-1.612 3.169-3.4 3.169h-8.18a.68.68 0 0 1-.675-.683V7.862a.75.75 0 0 1 .452-.724s.75-.513 2.333-.513a5.36 5.36 0 0 1 2.763.755 5.43 5.43 0 0 1 2.57 3.54c.282-.08.574-.121.868-.12.884 0 1.73.358 2.347.992s.948 1.49.922 2.373M10.721 8.421c.247 2.98.427 5.697 0 8.672a.264.264 0 0 1-.53 0c-.395-2.946-.22-5.718 0-8.672a.264.264 0 0 1 .53 0M9.072 9.448c.285 2.659.37 4.986-.006 7.655a.277.277 0 0 1-.55 0c-.331-2.63-.256-5.02 0-7.655a.277.277 0 0 1 .556 0m-1.663-.257c.27 2.726.39 5.171 0 7.904a.266.266 0 0 1-.532 0c-.38-2.69-.257-5.21 0-7.904a.266.266 0 0 1 .532 0m-1.647.77a26.1 26.1 0 0 1-.008 7.147.272.272 0 0 1-.542 0 28 28 0 0 1 0-7.147.275.275 0 0 1 .55 0m-1.67 1.769c.421 1.865.228 3.5-.029 5.388a.257.257 0 0 1-.514 0c-.21-1.858-.398-3.549 0-5.389a.272.272 0 0 1 .543 0Zm-1.655-.273c.388 1.897.26 3.508-.01 5.412-.026.28-.514.283-.54 0-.244-1.878-.347-3.54-.01-5.412a.283.283 0 0 1 .56 0m-1.668.911c.4 1.268.257 2.292-.026 3.572a.257.257 0 0 1-.514 0c-.241-1.262-.354-2.312-.023-3.572a.283.283 0 0 1 .563 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sourceengine.svg�����������������������������0000664�0000000�0000000�00000001500�14753064456�0026305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.865.716h-.26L7.64.784a12.76 12.76 0 0 0-7.01 1.69l.002.001A1.211 1.211 0 0 0 1.21 4.75c.35 0 .662-.148.883-.383a10.32 10.32 0 0 1 8.818-.462c5.275 2.165 7.805 8.22 5.64 13.495a10.3 10.3 0 0 1-2.495 3.613l.01.013a1.21 1.21 0 1 0 1.63 1.69 12.6 12.6 0 0 0 3.04-4.419c.05-.118 4.952-12.06 4.964-12.093A3.99 3.99 0 0 0 21.522.996c-.55-.226-1.064-.278-1.657-.28M6.067 6.851c-2.635 0-5.342.807-5.342 3.941 0 2.16 1.946 2.85 3.893 3.277 2.422.522 3.823.878 3.823 1.9 0 1.187-1.235 1.567-2.208 1.567-1.33 0-2.564-.594-2.588-2.066H.44c.143 3.252 2.92 4.32 5.77 4.32 2.801 0 5.603-1.044 5.603-4.273 0-2.28-1.923-2.992-3.894-3.443-1.923-.45-3.823-.617-3.823-1.828 0-.997 1.116-1.14 1.877-1.14 1.21 0 2.207.357 2.302 1.662h3.205c-.26-3.015-2.73-3.917-5.413-3.917"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sourceforge.svg������������������������������0000664�0000000�0000000�00000001607�14753064456�0026152�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.998 1.465a.35.35 0 0 0-.24.103L.102 11.215a.334.334 0 0 0 0 .48l9.152 9.135a.32.32 0 0 0 .24.106.34.34 0 0 0 .238-.106l1.37-1.385a.334.334 0 0 0 0-.48L3.93 11.79a.47.47 0 0 1 0-.664l9.078-9.078a.35.35 0 0 0 .072-.377.34.34 0 0 0-.312-.207zm4.531 1.592a.35.35 0 0 0-.24.105l-1.393 1.393a.334.334 0 0 0 0 .48l7.172 7.182a.47.47 0 0 1 .137.328c0 .12-.049.24-.137.328l-9.078 9.078a.35.35 0 0 0-.072.377c.04.096.144.207.313.207v-.008H14a.34.34 0 0 0 .24-.095l9.657-9.655a.32.32 0 0 0 .103-.24.35.35 0 0 0-.103-.24L14.77 3.162a.32.32 0 0 0-.24-.105m-3.095 3.156a.224.224 0 0 0-.211.238c.144 2.218-2.643 2.764-2.643 6.246v.024c0 2.121 1.603 3.842 3.58 3.842s3.578-1.72 3.578-3.842v-.024c0-.984-.368-1.922-.744-2.627-.072-.136-.29-.087-.266.041.673 2.995-1.015 4.851-1.015 2.545 0-3.93-1.394-5.716-2.131-6.388a.2.2 0 0 0-.148-.055"/></svg>�������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sourcehut.svg��������������������������������0000664�0000000�0000000�00000000413�14753064456�0025642�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.371 0 0 5.371 0 12s5.371 12 12 12 12-5.371 12-12S18.629 0 12 0m0 21.677A9.675 9.675 0 0 1 2.323 12 9.675 9.675 0 0 1 12 2.323 9.675 9.675 0 0 1 21.677 12 9.675 9.675 0 0 1 12 21.677"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sourcetree.svg�������������������������������0000664�0000000�0000000�00000000676�14753064456�0026014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.999 0C6.756 0 2.474 4.245 2.474 9.525c0 4.21 2.769 7.792 6.572 9.047v4.764c0 .37.295.664.664.664h4.506a.66.66 0 0 0 .664-.664v-4.764q.037-.014.074-.027v.064c3.694-1.22 6.412-4.634 6.565-8.687q.007-.187.007-.375v-.022q-.001-.228-.013-.455C21.275 4.037 17.125 0 11.999 0m0 6.352a3.214 3.214 0 0 1 2.664 5.005v.002A3.22 3.22 0 0 1 12 12.775a3.212 3.212 0 0 1 0-6.424z"/></svg>������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/southwestairlines.svg������������������������0000664�0000000�0000000�00000001074�14753064456�0027421�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.163 2.419C21.038 1.219 19.35.58 17.437.58c-2.062 0-3.637.675-4.725 1.275 2.063 1.163 6.526 3.75 11.175 7.163.075-.45.113-.938.113-1.388-.038-2.175-.675-4.012-1.837-5.212zm1.35 8.212C18.186 6.244 15 4.031 11.55 1.97 10.612 1.406 8.775.58 6.675.58 4.688.581 3 1.22 1.837 2.42 1.087 3.206.563 4.18.262 5.38 3 7.294 10.462 12.656 18 18.581c2.512-2.362 4.613-5.1 5.512-7.95zM0 7.781c0 6.15 6.487 11.85 12 15.638 1.575-1.088 3.225-2.325 4.8-3.713A737 737 0 0 0 .15 6.131C.038 6.62 0 7.181 0 7.781"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/spacemacs.svg��������������������������������0000664�0000000�0000000�00000002664�14753064456�0025572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.997.011c-1.79.015-3.452.397-4.968 1.093l.005-.002c3.638 2.026 6.955 5.634 8.932 8.241.398.534.753 1.006 1.078 1.434l.004-.019c.412-1.738-.313-5.239-1.518-7.331-.117-.203-.201-.379-.187-.392l.006.002.002-.007c.098.024 1.031.995 1.373 1.433.599.767.832 1.213 1.162 2.23.858 2.645 1.424 4.801 1.901 7.249.239 1.228.675 3.458.731 3.884.007.057-.009.128-.01.143a5 5 0 0 0-.29-.264c-.645-.568-1.924-1.417-3.183-2.114-1.57-.87-3.118-1.614-6.575-3.162-3.156-1.413-4.61-2.086-5.751-2.661l-1.024-.51c.12.301.249.624.399 1.005 0 0 1.933 1.08 2.174 1.408 0 0 2.322 4.367 3.353 6.955.767 1.949 1.634 4.264 2.155 4.904l.06.069c-1.026-.251-5.745-2.598-5.745-2.598-.518-4.399-1.969-9.61-3.855-14.94a7 7 0 0 1-.125-.271c.001-.015.141.121.311.303C4.313 8.13 8.368 9.98 12.675 10.775a16.5 16.5 0 0 0 3.533.223c-.307-.392-.64-.821-1.009-1.302-3.418-4.455-6.774-6.326-9.78-7.469-.079-.028-.154-.061-.231-.088A11.9 11.9 0 0 0 .669 8.071a12 12 0 0 0-.67 4.016l.003-.088c.033 5.018 3.129 9.616 8.052 11.33 1.335.465 2.696.68 4.032.67l-.088-.003c5.018-.033 9.616-3.129 11.33-8.052.465-1.335.68-2.696.67-4.032l-.003.088c-.033-5.018-3.129-9.616-8.052-11.33A12 12 0 0 0 11.911 0l.088.003zm6.133 6.11-.002.007zc.531.511 1.376 1.503 2.336 2.062.789.99 1.216 1.963 1.748 2.629-.219-.188-1.111-.972-1.111-.972s-1.378-1.305-2.141-2.153c-.293-.326-.32-.38-.478-.628-.062-.097-.275-.825-.354-.935h-.001l.002-.007z"/></svg>����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/spaceship.svg��������������������������������0000664�0000000�0000000�00000000647�14753064456�0025611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1.253c1.044 0 1.956.569 2.44 1.412l4.589 7.932 4.45 7.691c.047.074.21.359.27.494a2.808 2.808 0 0 1-3.406 3.836l-7.901-2.606a1.4 1.4 0 0 0-.442-.07 1.4 1.4 0 0 0-.442.07l-7.9 2.606-.162.046a2.8 2.8 0 0 1-.684.083 2.81 2.81 0 0 1-2.644-3.763c.03-.091.074-.176.111-.264.072-.15.161-.288.242-.432l4.449-7.691 4.588-7.932A2.81 2.81 0 0 1 12 1.253"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/spacex.svg�����������������������������������0000664�0000000�0000000�00000000442�14753064456�0025106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 7.417C8.882 8.287 1.89 14.75.321 16.28L0 16.583h2.797C10.356 9.005 21.222 7.663 24 7.417m-17.046 6.35c-.472.321-.945.68-1.398 1.02l2.457 1.796h2.778zM2.948 10.8H.189l3.25 2.381c.473-.321 1.02-.661 1.512-.945Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/spacy.svg������������������������������������0000664�0000000�0000000�00000004023�14753064456�0024741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.001 11.213c-.55-.065-.591-.803-1.297-.738-.342 0-.66.143-.66.457 0 .473.73.517 1.17.636.75.228 1.476.383 1.476 1.199 0 1.035-.811 1.394-1.884 1.394-.897 0-1.806-.318-1.806-1.142 0-.228.22-.407.432-.407.269 0 .363.114.457.301.208.367.44.563 1.019.563.367 0 .742-.139.742-.457 0-.452-.46-.55-.937-.66C.869 12.122.143 12 .057 11.062c-.09-1.598 3.242-1.659 3.433-.257-.004.253-.24.408-.489.408M6.964 9.81c1.171 0 1.835.979 1.835 2.186 0 1.211-.644 2.185-1.835 2.185-.66 0-1.072-.281-1.37-.713v1.598c0 .481-.155.714-.505.714-.428 0-.506-.273-.506-.714v-4.648c0-.379.159-.612.506-.612.326 0 .505.257.505.612v.13c.331-.416.71-.738 1.37-.738m-.277 3.54c.685 0 .991-.632.991-1.37 0-.722-.31-1.37-.991-1.37-.714 0-1.044.587-1.044 1.37 0 .762.335 1.37 1.044 1.37m2.907-2.398c0-.84.967-1.142 1.904-1.142 1.317 0 1.86.384 1.86 1.656v1.223c0 .29.179.869.179 1.044 0 .265-.244.432-.505.432-.29 0-.506-.342-.661-.587-.428.342-.881.587-1.574.587-.766 0-1.37-.453-1.37-1.199 0-.66.473-1.039 1.044-1.17 0 .004 1.835-.432 1.835-.436 0-.563-.2-.812-.791-.812-.522 0-.787.143-.991.457-.163.237-.143.379-.457.379-.253-.004-.473-.175-.473-.432m1.566 2.524c.803 0 1.142-.424 1.142-1.268v-.18c-.216.074-1.089.29-1.325.327-.253.049-.506.236-.506.534.008.326.342.587.689.587m5.9-5.26c1.134 0 2.361.677 2.361 1.753a.49.49 0 0 1-.481.506c-.371 0-.424-.2-.587-.481-.273-.502-.596-.836-1.297-.836-1.085-.008-1.57.921-1.57 2.079 0 1.167.404 2.007 1.525 2.007.746 0 1.158-.433 1.37-.991.086-.257.241-.506.563-.506.253 0 .506.257.506.534 0 1.142-1.167 1.933-2.365 1.933-1.313 0-2.055-.555-2.463-1.476a3.5 3.5 0 0 1-.326-1.525c-.009-1.77 1.023-2.997 2.764-2.997m6.483 1.594c.29 0 .457.188.457.481 0 .119-.094.355-.13.482l-1.395 3.665c-.31.795-.542 1.346-1.598 1.346-.502 0-.938-.045-.938-.481 0-.253.191-.38.457-.38.048 0 .13.025.179.025.077 0 .13.024.179.024.53 0 .604-.542.791-.917L20.2 10.724c-.078-.18-.131-.302-.131-.408 0-.294.229-.506.534-.506.343 0 .478.269.563.563l.889 2.642.889-2.442c.134-.379.147-.763.599-.763"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sparkar.svg����������������������������������0000664�0000000�0000000�00000000315�14753064456�0025265�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.199 20.001 20.801 12v8.001L11.999 24zM11.998 0 3.199 3.999V12l17.602-8.001zM3.803 12.275l7.592 3.453 8.803-4.002-7.594-3.45z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sparkasse.svg��������������������������������0000664�0000000�0000000�00000000540�14753064456�0025616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.06 12.306v1.846h14.175v6.777c.03 1.661-1.406 3.107-3.07 3.07H5.835c-1.658.031-3.1-1.412-3.07-3.07v-1.225h14.143v-1.846H2.765v-6.777c-.03-1.658 1.412-3.101 3.07-3.07h12.33c1.664-.037 3.1 1.41 3.07 3.07v1.225zm4.924-6.148a3.079 3.079 0 1 0 0-6.158 3.079 3.079 0 0 0 0 6.158"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sparkfun.svg���������������������������������0000664�0000000�0000000�00000001036�14753064456�0025454�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.307 5.476c-.756.134-1.975-.615-2.59-1.362-.755-.922-.66-1.647-.071-2.29.883-.978 2.396-.6 2.396-.6s-2.772-2.432-5.658-.44c-2.571 1.77-1.833 4.183.487 6.288 2.09 1.902.42 3.988-1.686 3.717-1.443-.184-2.034-1.343-1.687-2.054.298-.608 1.335-.982 1.335-.982s-1.19-.484-2.592.044c-1.259.474-2.297 1.515-2.214 4.12V24s1.301-1.604 2.83-3.236c1.714-1.84 2.495-3.084 4.254-2.938 3.328.205 5.735-1.273 7.371-3.645 3.141-4.563.67-9.68-1.43-10.343 0 0 .34 1.438-.745 1.638"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sparkpost.svg��������������������������������0000664�0000000�0000000�00000000532�14753064456�0025651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.2 9c-1.351.9-1.8 2.7-1.65 3.9-2.25-2.25 3.45-8.55-3-12.9C15.15 5.4 6 9.75 6 17.4c0 3 1.95 5.701 6 6.6 4.05-.898 6-3.6 6-6.6 0-4.5-2.7-6-1.8-8.4M12 20.852c-1.8 0-3.45-1.5-3.45-3.451 0-1.801 1.5-3.45 3.45-3.45 1.8 0 3.45 1.5 3.45 3.45-.15 1.951-1.65 3.451-3.45 3.451"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/spdx.svg�������������������������������������0000664�0000000�0000000�00000000367�14753064456�0024607�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h8.222l2.089-2.373 2.09-2.374V13.2h6.577l2.51-2.488L24 8.223V0H12zm5.2 5.2h13.791L12.2 12c-3.735 3.74-6.838 6.8-6.896 6.8S5.2 15.74 5.2 12zm8.4 8.8v10H24V14h-5.2z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/speakerdeck.svg������������������������������0000664�0000000�0000000�00000000762�14753064456�0026111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.025 13.875H4.687a4.688 4.688 0 0 1 0-9.375h6.227a1.875 1.875 0 0 1 0 3.75H4.592a.937.937 0 1 0 0 1.875h5.337a4.687 4.687 0 1 1 0 9.375H1.875a1.875 1.875 0 0 1 0-3.75h8.15a.938.938 0 0 0 0-1.875M13.97 19.5a5.64 5.64 0 0 0 2.396-3.75h3.026a.93.93 0 0 0 .921-.938V9.189a.93.93 0 0 0-.921-.938h-5.497c.438-.498.704-1.155.704-1.875s-.266-1.377-.704-1.875h6.418C22.35 4.5 24 6.179 24 8.25v7.5c0 2.071-1.65 3.75-3.687 3.75z"/></svg>��������������mkdocs-material-9.6.4/material/templates/.icons/simple/spectrum.svg���������������������������������0000664�0000000�0000000�00000000356�14753064456�0025471�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 10.2A1.8 1.8 0 0 0 1.8 12h1.8a8.4 8.4 0 0 1 8.4 8.4v1.8a1.8 1.8 0 0 0 1.8 1.8h8.4a1.8 1.8 0 0 0 1.8-1.8v-1.8C24 9.133 14.867 0 3.6 0H1.8A1.8 1.8 0 0 0 0 1.8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/speedtest.svg��������������������������������0000664�0000000�0000000�00000000566�14753064456�0025632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.628 16.186-2.047-2.14 6.791-5.953 1.21 1.302zm8.837 6.047c2.14-2.14 3.535-5.117 3.535-8.466 0-6.604-5.395-12-12-12s-12 5.396-12 12c0 3.35 1.302 6.326 3.535 8.466l1.674-1.675c-1.767-1.767-2.79-4.093-2.79-6.79A9.57 9.57 0 0 1 12 4.185a9.57 9.57 0 0 1 9.581 9.581c0 2.605-1.116 5.024-2.79 6.791Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/speedypage.svg�������������������������������0000664�0000000�0000000�00000000711�14753064456�0025750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.356 11.774a8.66 8.66 0 0 1-7.797 8.623C12.559 20.503 0 22.18 0 22.18l1.383-4.978 10.192-1.544v-.025a3.617 3.617 0 0 0 3.405-3.807 3.4 3.4 0 0 0-.212-1.01h5.534c.054.318.054.638.054.958m-16.686.452c0-4.444 3.381-8.171 7.797-8.623C11.467 3.471 24 1.82 24 1.82l-1.41 4.978-10.19 1.57v.025a3.556 3.556 0 0 0-3.353 3.781c.026.346.08.664.214.984H3.724c-.026-.32-.054-.612-.054-.932"/></svg>�������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sphinx.svg�����������������������������������0000664�0000000�0000000�00000003274�14753064456�0025142�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.284 19.861c0-.654.177-1.834.393-2.623.499-1.822.774-4.079.497-4.079-.116 0-.959.762-1.873 1.694-3.472 3.54-7.197 5.543-10.312 5.543-1.778 0-2.987-.45-4.154-1.545C.128 18.186 0 17.858 0 16.703c0-1.188.117-1.468.909-2.175.718-.642 1.171-.813 2.157-.813.76.171 1.21.16 1.457.461.251.296.338 1.265.035 1.832-.162.303-.585.491-1.105.491-.49 0-.77-.116-.669-.278.315-.511-.135-.857-.713-.548-.699.374-.711 1.698-.021 2.322.969.878 3.65 1.208 5.262.648 1.743-.605 4.022-2.061 5.841-3.732l1.6-1.469-2.088-.013c-2.186-.012-3.608-.273-8.211-1.506-1.531-.41-3.003-.765-3.271-.789-.304-.026-.503-.274-.487-.656.027-.646.378-1.127.793-1.308.249-.109 1.977-.274 3.809-.761 7.136-1.898 7.569-1.629 12.323-.426 1.553.393 3.351.821 4.147.835 1.227.022 1.493.124 1.74.666.16.351.291.686.291.745s-.695.424-1.545.813c-3.12 1.428-4.104 2.185-3.088 3.635.421.602.412.666-.14 1.052-.323.227-.59.687-.593 1.022-.009.908-.583 2.856-1.417 3.624l-.732.675zm1.594-8.328c1.242-.346 1.994-.738 3.539-1.562-1.272-.372-4.462-.895-4.462-.895-2.354-.472-2.108-.448-2.214.071a3.5 3.5 0 0 1-.45 1.105c-.541.848-2.521 1.026-3.656.483-.356-.171-.714-.821-.709-1.283.007-.65-.362-.801-.598-.714-.191.07-.813.079-2.179.448-4.514 1.217-5.132 1.078-2.189 1.495.353.05 2.223.572 3.136.815 2.239.597 2.658.641 5.556.581 2.015-.042 2.858-.163 4.226-.544M.732 6.258c.056-.577.088-.702 1.692-1.025.919-.185 3.185-.785 5.036-1.333 4.254-1.26 5.462-1.263 9.873-.026 1.904.535 4.037.973 4.74.975 1.097.002 1.668.487 1.668.487.505 1.16.412 1.24-1.558 1.24-1.374 0-2.558-.232-4.385-.857-1.389-.476-3.369-.923-4.451-1.004-1.974-.149-1.971-.15-8.072 1.529-1.072.295-2.553.624-3.29.732l-1.342.196z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/spigotmc.svg���������������������������������0000664�0000000�0000000�00000002756�14753064456�0025462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.644 2.44a1.37 1.37 0 0 0-.603.331c-.245.2-.588.232-2.023.133l-1.713-.116.049.713.049.713h.652c.36-.016 1.207-.05 1.876-.083l1.224-.083v3.317l-.44.05c-.425.05-.457.1-.457.862 0 .713-.05.813-.36.863-.26.033-.39.182-.44.464-.016.232-.114.448-.18.497-.08.05-.228.597-.326 1.211-.228 1.526-.375 1.708-1.37 1.84-1.436.167-2.056.134-2.056-.148 0-.2-.244-.25-1.158-.25-1.012 0-1.158-.032-1.24-.33-.065-.25-.228-.333-.62-.333s-.555.083-.62.332c-.082.299-.228.332-1.224.332-1.011 0-1.158.033-1.256.332-.049.182-.18.331-.26.331-.082 0-.148.863-.148 1.99 0 1.609.05 1.99.229 1.99.13 0 .293.15.342.332.082.282.245.332 1.175.332.914 0 1.077.05 1.142.331.13.465 1.11.465 1.24 0 .065-.282.228-.331 1.158-.331.849 0 1.077-.05 1.077-.25 0-.397 2.121-.33 3.426.117 1.583.53 5.14.53 6.82 0 .653-.199 1.256-.332 1.338-.282.359.232.163.896-.343 1.178-.587.298-.587.563 0 1.956l.343.797 1.599-.067c1.73-.083 2.822-.48 3.915-1.41l.539-.464-.31-.912c-.327-.962-.734-1.327-1.518-1.327-.342 0-.473-.149-.766-.796-.506-1.144-1.224-1.758-2.758-2.355-.799-.315-1.582-.746-1.99-1.127-.604-.548-.685-.73-.832-1.775-.098-.63-.245-1.194-.326-1.244-.066-.05-.164-.265-.18-.497-.049-.282-.18-.431-.424-.464-.326-.05-.375-.15-.375-.863 0-.763-.033-.812-.44-.862-.458-.05-.458-.05-.507-1.526-.032-.929.017-1.542.13-1.658.115-.116.93-.183 2.09-.183h1.908l.05-.564c.032-.298-.017-.63-.099-.713-.098-.1-.816-.083-1.909.05-1.256.15-1.778.15-1.86.017-.146-.25-.848-.481-1.24-.398"/></svg>������������������mkdocs-material-9.6.4/material/templates/.icons/simple/spine.svg������������������������������������0000664�0000000�0000000�00000001175�14753064456�0024745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.157 2.207c.066 2.004 1.454 3.117 4.221 3.55 2.345.368 4.46.181 5.151-1.829C17.874.01 14.681.985 11.915.55S7.051-1.013 7.157 2.207m.831 8.23c.257 1.497 1.652 2.355 3.786 2.297 2.135-.059 3.728-.892 3.949-2.507.409-2.988-1.946-1.832-4.08-1.774-2.136.059-4.161-.952-3.655 1.984m2.778 6.852c.424 1.117 1.587 1.589 3.159 1.253 1.569-.335 2.656-.856 2.568-2.129-.159-2.357-1.713-1.616-3.283-1.279-1.571.333-3.272-.039-2.444 2.155m1.348 5.221c.123.943.939 1.5 2.215 1.49 1.279-.011 2.248-.515 2.412-1.525.308-1.871-1.123-1.175-2.4-1.165-1.28.01-2.47-.65-2.227 1.2"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/spinnaker.svg��������������������������������0000664�0000000�0000000�00000000573�14753064456�0025622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.343 0C17.785 8.741 11.317 21.987.815 23.882c10.806 1.064 19.481-5.327 21.646-8.066C24.627 13.076 21.343 0 21.343 0M.815 23.882.8 23.88v.004l.015-.003zM17.182 5.8C15.409 10.988 10.477 18.547 5.4 20.39c.885.033 1.74-.019 2.561-.132 3.989-3.221 7.14-8.037 9.577-12.771-.193-.981-.356-1.687-.356-1.687"/></svg>�������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/splunk.svg�����������������������������������0000664�0000000�0000000�00000004025�14753064456�0025140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.348 11.911-2.241-1.091v-.65L24 11.621v.593l-2.893 1.438v-.636zm-5.397 1.841h-.961v-5.31h.961v3.116h.102l1.28-1.481.723.31-1.23 1.316 1.453 1.809-.888.311-1.44-1.996zm-2.577-.002v-2.068a3 3 0 0 0-.026-.42.8.8 0 0 0-.09-.26q-.168-.303-.59-.304a.9.9 0 0 0-.461.113.67.67 0 0 0-.286.33 1 1 0 0 0-.07.263q-.019.195-.017.395v1.95h-.961v-3.614h.961l.002.485q.277-.302.566-.437.29-.134.673-.134.43 0 .721.177a1.02 1.02 0 0 1 .475.665 2 2 0 0 1 .054.448q.003.15.004.358v2.053zm-4.115.002-.002-.485a1.8 1.8 0 0 1-.565.437 1.6 1.6 0 0 1-.674.135q-.427 0-.72-.17a.97.97 0 0 1-.425-.504.8.8 0 0 1-.054-.167 2 2 0 0 1-.033-.199 2 2 0 0 1-.017-.258 16 16 0 0 1-.005-.355V10.13h.956v2.07q-.004.212.026.42.023.139.09.26.168.306.59.306.54 0 .74-.449.053-.123.074-.257.025-.201.022-.403v-1.95h.955v3.624zM7.184 8.44h.955v5.31h-.955zM5.759 11.9q0-.594-.24-.937a.76.76 0 0 0-.657-.345.8.8 0 0 0-.693.366q-.257.367-.253.99 0 .607.25.957a.8.8 0 0 0 .69.347.7.7 0 0 0 .433-.135 1 1 0 0 0 .277-.34c.071-.14.121-.292.147-.448q.043-.224.046-.455m1.01-.036c.003.266-.04.532-.129.786q-.123.347-.364.626c-.31.361-.764.567-1.24.563a1.7 1.7 0 0 1-.313-.028 1 1 0 0 1-.275-.098 1.3 1.3 0 0 1-.257-.178 2.4 2.4 0 0 1-.265-.268v2.293h-.929v-5.425h.93l.004.529q.254-.318.55-.468.295-.15.688-.147a1.5 1.5 0 0 1 1.156.507c.148.166.259.361.33.571.08.236.12.485.115.737m-4.21.89a.95.95 0 0 1-.102.441 1 1 0 0 1-.282.345q-.196.15-.43.22a1.8 1.8 0 0 1-.546.08 2 2 0 0 1-.637-.097 2 2 0 0 1-.563-.32l.312-.505q.224.189.405.275.174.086.368.087a.56.56 0 0 0 .373-.12.4.4 0 0 0 .14-.322.48.48 0 0 0-.12-.318 1.3 1.3 0 0 0-.187-.173 9 9 0 0 0-.308-.232 7 7 0 0 1-.281-.21 2 2 0 0 1-.252-.232 1 1 0 0 1-.18-.275.8.8 0 0 1-.069-.347.9.9 0 0 1 .094-.409.9.9 0 0 1 .255-.314 1.2 1.2 0 0 1 .39-.203q.242-.075.494-.072.278 0 .545.076.262.075.488.219l-.282.454a1.05 1.05 0 0 0-.608-.201.5.5 0 0 0-.323.102.3.3 0 0 0-.126.253c0 .098.041.193.113.26q.112.117.385.325.277.203.457.355c.104.085.202.182.286.286q.099.122.145.273a.8.8 0 0 1 .046.299"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/spoj.svg�������������������������������������0000664�0000000�0000000�00000003303�14753064456�0024575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.143.056c-.522.127-.713.219-2.28 1.114-.88.506-1.68.957-1.76 1.008-.202.113-.417.236-.59.337-.587.337-3.293 1.893-3.453 1.973-1.05.581-1.72 1.453-2.013 2.587-.084.34-.084 9.532 0 9.865.282 1.131.957 2 2.013 2.587.152.084 2.866 1.64 3.453 1.973.173.102.388.224.59.337.085.051.882.507 1.774 1.012C10.89 24.005 10.89 24 12.01 24c1.11 0 1.125-.004 3-1.076.818-.468 1.546-.885 1.626-.928.072-.047.203-.119.283-.164l.295-.17c.08-.046.21-.118.286-.163.582-.337 3.293-1.893 3.44-1.973 1.05-.582 1.72-1.454 2.013-2.587.084-.341.084-9.532 0-9.866-.282-1.13-.957-2-2.013-2.586a860 860 0 0 1-3.726-2.137l-.295-.17c-.08-.046-.21-.118-.283-.164-.076-.042-.809-.46-1.626-.928C13.183.047 13.117.022 12.09.004c-.51-.013-.763.004-.95.051zm3.014 4.32c.838.156 2.493.759 2.493.91 0 .03-.207.62-.46 1.313-.384 1.058-.472 1.26-.536 1.251-.047 0-.3-.1-.566-.218-.92-.4-1.48-.515-2.546-.51-1.19 0-1.773.21-2.027.732-.088.186-.109.287-.109.548 0 .414.093.616.421.924.304.279.734.502 1.507.788 2.44.899 3.346 1.36 4.026 2.093.759.806 1.04 1.707.995 3.187-.021.83-.101 1.172-.41 1.786-.64 1.291-1.92 2.04-3.906 2.28-.472.059-.813.067-1.706.051-1.135-.021-1.494-.059-2.347-.244-.801-.173-2.16-.696-2.226-.852-.018-.05.838-2.586.893-2.64.01-.008.212.072.452.182 1.16.518 2.04.7 3.4.704 1.07 0 1.626-.131 2.026-.494.275-.244.355-.434.374-.894.017-.371.013-.406-.114-.663a1.5 1.5 0 0 0-.354-.464c-.304-.265-1.232-.717-2.187-1.055-.953-.34-1.36-.51-1.893-.776-1.176-.594-1.947-1.453-2.253-2.52-.088-.294-.096-.417-.094-1.171 0-.798.01-.864.12-1.223.35-1.142 1.032-1.946 2.12-2.506a6.5 6.5 0 0 1 1.613-.523c.218-.039.446-.076.507-.084a22 22 0 0 1 1.2-.005c.881.013 1.19.03 1.573.101z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/spond.svg������������������������������������0000664�0000000�0000000�00000002036�14753064456�0024747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m-1.403 2.281a3.77 3.77 0 0 0-.17 2.847c.61 1.79 2.336 2.772 4.069 3.213 2.633.672 4.715 1.388 5.892 2.502 1.037.982 1.435 2.416.803 4.618-.17.59-.486 1.124-.802 1.643-.125-.706-.424-1.411-.924-2.094-3.269-4.462-10.438-3.57-13.174-7.307-.803-1.096-.747-2.236.092-3.288.979-1.226 2.69-1.917 4.214-2.134m3.163.11q.207-.015.43.036a9.84 9.84 0 0 1 7.076 6.318c-1.514-1.132-3.655-1.86-6.233-2.517-1.528-.39-2.3-1.087-2.542-1.798-.326-.956.308-1.98 1.27-2.04zM3.611 6.895c.125.706.424 1.412.924 2.094 3.269 4.462 10.438 3.57 13.174 7.307.803 1.095.747 2.236-.092 3.288-.979 1.226-2.69 1.916-4.214 2.133.427-.89.489-1.91.17-2.846-.61-1.79-2.336-2.772-4.069-3.213-2.633-.672-4.715-1.388-5.892-2.502-1.037-.982-1.435-2.416-.803-4.618.17-.59.486-1.124.802-1.643m-.877 8.36c1.514 1.13 3.655 1.858 6.233 2.516 1.528.39 2.3 1.087 2.542 1.798.336.985-.347 2.042-1.357 2.042q-.166 0-.342-.039a9.84 9.84 0 0 1-7.076-6.318z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/spotify.svg����������������������������������0000664�0000000�0000000�00000001215�14753064456�0025317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.66 0 12 0m5.521 17.34c-.24.359-.66.48-1.021.24-2.82-1.74-6.36-2.101-10.561-1.141-.418.122-.779-.179-.899-.539-.12-.421.18-.78.54-.9 4.56-1.021 8.52-.6 11.64 1.32.42.18.479.659.301 1.02m1.44-3.3c-.301.42-.841.6-1.262.3-3.239-1.98-8.159-2.58-11.939-1.38-.479.12-1.02-.12-1.14-.6s.12-1.021.6-1.141C9.6 9.9 15 10.561 18.72 12.84c.361.181.54.78.241 1.2m.12-3.36C15.24 8.4 8.82 8.16 5.16 9.301c-.6.179-1.2-.181-1.38-.721-.18-.601.18-1.2.72-1.381 4.26-1.26 11.28-1.02 15.721 1.621.539.3.719 1.02.419 1.56-.299.421-1.02.599-1.559.3"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/spotlight.svg��������������������������������0000664�0000000�0000000�00000010736�14753064456�0025647�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.126 6.408c.008.101.008.194 0 .295-.034.589-.295 1.027-.656 1.388a2.1 2.1 0 0 1-1.464.606 2.1 2.1 0 0 1-1.498-.572 2.126 2.126 0 0 1-.126-2.996l.101-.101c.353-.345.757-.547 1.372-.606a2.11 2.11 0 0 1 1.582.555c.396.37.64.884.69 1.431zm8.465 7.288-.631 1.22a3.7 3.7 0 0 0-.37 1.144l-.21 1.363a3.69 3.69 0 0 1-2.003 2.752l-1.229.614c-.362.185-.69.421-.976.707l-.968.985a3.7 3.7 0 0 1-3.24 1.052l-1.355-.227a3.6 3.6 0 0 0-1.203 0l-1.355.227a3.71 3.71 0 0 1-3.24-1.052l-.968-.985a3.7 3.7 0 0 0-.976-.707l-1.229-.614a3.71 3.71 0 0 1-2.003-2.752l-.21-1.363a3.6 3.6 0 0 0-.37-1.144l-.64-1.22a3.68 3.68 0 0 1 0-3.4l.631-1.22a3.7 3.7 0 0 0 .37-1.144l.21-1.363a3.69 3.69 0 0 1 2.003-2.752l1.229-.614q.545-.278.976-.707l.968-.976a3.7 3.7 0 0 1 3.24-1.052l1.355.227c.396.067.808.067 1.203 0l1.355-.227a3.71 3.71 0 0 1 3.24 1.052l.968.976c.286.286.614.53.976.707l1.229.614a3.71 3.71 0 0 1 2.003 2.752l.21 1.363c.059.404.185.791.37 1.144l.631 1.22a3.7 3.7 0 0 1 .008 3.4zm-7.287-7.33a3.05 3.05 0 0 0-.345-1.296 3.38 3.38 0 0 0-3.223-1.826c-.135.017-.252.025-.37.042a3.3 3.3 0 0 0-1.868 1.052 3.26 3.26 0 0 0-.841 2.44c.076.926.488 1.717 1.086 2.23.438.379.993.715 1.691.816 1.338.202 2.365-.328 3.029-1.052a3.24 3.24 0 0 0 .841-2.407zm-9.736 6.766c.244-.135.48-.278.715-.412-.084-.968-.16-2.011-.236-2.903.985-.412 1.683-1.212 1.994-2.339.252-.909.143-1.977-.32-2.575a1.53 1.53 0 0 0-.597-.488c-.404-.151-.892-.034-1.229.109a3 3 0 0 0-.522.303c-.32.227-.614.48-.884.774.286 2.491.572 5.108.85 7.657q.113-.051.227-.126zm.126-7.153c.017-.076.202-.185.269-.236a.86.86 0 0 1 .429-.16c.463-.017.572.379.597.825q.025.354 0 .707c-.059.783-.429 1.287-1.043 1.54-.05-.488-.084-1.077-.143-1.641-.025-.227-.059-.53-.093-.799-.008-.076-.017-.151-.017-.236zm-1.136 6.278a6 6 0 0 0-.421-1.212 4.6 4.6 0 0 1-.37-1.237c-.067-.597.05-1.119.429-1.397-.143-.463-.261-.917-.404-1.372-.825.438-1.397 1.229-1.397 2.407 0 .724.269 1.195.53 1.717.177.345.328.698.446 1.069.118.396.227.833.194 1.245-.067.791-.396 1.346-.825 1.818-.042.05-.185.168-.185.202.025.059.05.109.084.16.168.353.32.656.488 1.001.025.05.05.151.084.168s.101-.067.143-.118q.215-.227.404-.48c.698-.968 1.119-2.474.799-3.972zm2.777 1.674c.345-.976.673-1.986.926-3.012.076-.303.168-.614.227-.926.008-.034.034-.109 0-.126-.446.135-.909.252-1.346.396-.185 1.523-.64 2.878-1.153 4.148s-1.144 2.44-1.801 3.559c.808.875 1.834 1.54 2.962 2.095.202-.337.421-.665.614-1.01-.69-.421-1.405-.825-1.994-1.346a40 40 0 0 0 1.565-3.778m2.625-2.684c-.286-.194-.64-.337-.951-.505-.623 2.39-1.456 4.594-2.255 6.833.278.151.547.32.833.471.539-1.043.867-2.163 1.296-3.299.21-.555.387-1.128.564-1.708s.353-1.186.513-1.792m2.424 6.993v-.993c0-.227-.008-.48-.017-.875-.597.076-1.203.126-1.792.21-.025.328-.025.673-.042 1.018.261.017.673-.034.934-.034 0 .488 0 .909.008 1.321 0 .16.025.32-.017.454-.059.202-.269.328-.539.303-.311-.034-.555-.353-.69-.614-.463-.909-.311-2.407-.126-3.416a5.3 5.3 0 0 1 .732-1.927c.345-.547.816-1.001 1.489-1.195 0-.278-.017-.656-.034-.968-.008-.143 0-.32-.034-.396-.008-.008-.025.008-.034.008a3.7 3.7 0 0 0-1.128.64 4.8 4.8 0 0 0-1.22 1.414 6 6 0 0 0-.286.589c-.362.808-.53 1.742-.631 2.777-.076.791-.084 1.515.034 2.23q.065.343.194.673c.295.774.867 1.422 2.028 1.262.446-.059.808-.236 1.186-.396 0-.74-.017-1.515-.017-2.087zm3.559-4.477a22 22 0 0 1-.109-1.691c-.025-.783 0-1.54.042-2.322 0-.008 0-.008-.008-.008-.303.236-.648.48-.976.715a.4.4 0 0 0-.126.118 1 1 0 0 0 0 .202c-.008 1.128.059 2.322.084 3.332-.278.118-.555.269-.833.379a89 89 0 0 1-.261-3.408c-.37.126-.707.278-1.069.412.076.555.151 1.086.202 1.599.093.816.135 1.632.143 2.449 0 .236 0 .471-.017.707-.034.496-.025 1.001-.059 1.498-.076.959-.067 1.986-.067 2.895.194-.084.379-.194.572-.286.194-.084.379-.185.564-.295 0-.362.017-.648.025-.959.034-1.186.067-2.179.025-3.231.32-.151.64-.303.976-.446.227 1.355.682 2.541 1.094 3.753.345-.261.64-.572.968-.858a23 23 0 0 1-.614-1.919 13 13 0 0 1-.555-2.634zm2.583-3.787c.194-.076.37-.194.555-.286s.362-.194.539-.303c-.337-.968-.757-1.851-1.338-2.609a10 10 0 0 0-1.977-1.986c0-.017-.025 0-.025.008a7 7 0 0 0-.513.724c-.034.059-.151.21-.143.269q.075.1.177.177c.067.067.135.118.185.168.303.311.555.589.833.926.042.05.143.16.143.21a1.4 1.4 0 0 1-.076.269c-.135.48-.227.951-.311 1.456a12.5 12.5 0 0 0-.151 2.962c.076 1.052.278 2.003.505 2.928.109.454.244.909.412 1.346.126.328.252.656.396.951.05.101.076.219.16.295.286-.37.589-.724.867-1.094-.421-.749-.707-1.666-.926-2.617a7 7 0 0 1-.177-1.01c-.126-1.372-.177-2.861.194-4.157.295.429.522.892.673 1.372z"/></svg>����������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/spreadshirt.svg������������������������������0000664�0000000�0000000�00000000302�14753064456�0026146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6.306 7.796 2.102 0 9.898l12 12 12-12-7.796-7.796zm0 12L3.592 9.898l4.204-4.204L12 9.898l4.184-4.184 4.204 4.204"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/spreaker.svg���������������������������������0000664�0000000�0000000�00000000304�14753064456�0025434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.615 0-5.64 6.54L.529 4.718l8.68 7.372-8.537 7.463 8.411-1.984L14.843 24l.71-8.601 7.918-3.483-7.963-3.33L14.621 0z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/spring.svg�����������������������������������0000664�0000000�0000000�00000001246�14753064456�0025130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.854 1.416a10.5 10.5 0 0 1-1.284 2.247A11.967 11.967 0 1 0 3.852 20.776l.444.395a11.954 11.954 0 0 0 19.632-8.297c.346-3.013-.568-6.865-2.074-11.458zM5.58 20.875a1.017 1.017 0 1 1-.149-1.433 1.04 1.04 0 0 1 .149 1.432m16.199-3.581c-2.939 3.926-9.26 2.593-13.286 2.79 0 0-.716.05-1.432.148 0 0 .272-.123.618-.247 2.84-.987 4.173-1.185 5.901-2.074 3.235-1.654 6.47-5.284 7.112-9.038-1.235 3.606-4.988 6.717-8.396 7.976-2.346.865-6.568 1.704-6.568 1.704l-.173-.099c-2.865-1.407-2.963-7.63 2.272-9.63 2.296-.89 4.47-.395 6.963-.988 2.643-.617 5.705-2.593 6.94-5.186 1.382 4.174 3.061 10.643.049 14.644"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/spring_creators.svg��������������������������0000664�0000000�0000000�00000001404�14753064456�0027026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.563 24c-1.839 0-4.435-.537-7.028-2.87l2.035-2.262c3.636 3.273 7.425 1.98 8.595.888.078-.079.156-.153.234-.23-3.83-.373-6.629-3.086-6.822-3.277-2.933-2.889-3.6-6.808-1.512-8.93s6.015-1.522 8.95 1.357c.257.246 3.116 3.052 3.677 6.605a6.78 6.78 0 0 0 2.727-5.426 6.62 6.62 0 0 0-1.995-4.791c-1.334-1.303-3.222-2.02-5.306-2.02V0c2.88 0 5.519 1.024 7.43 2.882 1.881 1.83 2.917 4.304 2.917 6.973a9.83 9.83 0 0 1-6.116 9.086c-.416 1.1-1.12 2.117-2.106 3.04-.97.905-2.865 1.908-5.28 2.01q-.194.01-.4.009M7.283 9.077c-.425 0-.79.115-1.046.375-.749.762-.275 2.904 1.48 4.633l.008.009c.025.024 2.771 2.687 6.025 2.414v-.005c.015-2.873-2.808-5.597-2.837-5.625l-.02-.019C9.85 9.832 8.37 9.077 7.283 9.077"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/springboot.svg�������������������������������0000664�0000000�0000000�00000001306�14753064456�0026011�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.693 10.706-4.73-8.185c-.41-.71-1.417-1.294-2.24-1.294h-9.45c-.82 0-1.831.584-2.24 1.294L.306 10.706c-.41.71-.41 1.873 0 2.584l4.725 8.189c.41.71 1.417 1.294 2.24 1.294h9.455c.82 0 1.826-.584 2.24-1.294l4.726-8.19c.41-.71.41-1.873 0-2.583zM10.976 5.755c0-.537.438-.975.974-.975s.975.438.975.975v5.821a.976.976 0 0 1-1.948 0zm.974 12.43a6.616 6.616 0 0 1-6.607-6.609A6.64 6.64 0 0 1 8.01 6.272a.866.866 0 0 1 1.214.18.866.866 0 0 1-.178 1.213 4.876 4.876 0 0 0 5.812 7.827 4.88 4.88 0 0 0 1.967-3.916 4.9 4.9 0 0 0-1.986-3.925.87.87 0 0 1-.183-1.214.87.87 0 0 1 1.214-.183 6.63 6.63 0 0 1 2.687 5.322 6.613 6.613 0 0 1-6.608 6.608"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/springsecurity.svg���������������������������0000664�0000000�0000000�00000000752�14753064456�0026721�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.59 2.066 11.993 0 3.41 2.066v6.612h4.557a3.8 3.8 0 0 0 0 .954H3.41v3.106C3.41 19.867 11.994 24 11.994 24s8.582-4.133 8.582-11.258V9.635h-4.545a3.6 3.6 0 0 0 0-.954h4.558zM12 12.262h-.006a3.109 3.109 0 1 1 .006 0m-.006-4.579a.804.804 0 0 0-.37 1.52v.208l.238.237v.159l.159.159v.159l-.14.14.15.246v.159l-.16.189.223.222.246-.246V9.218a.804.804 0 0 0-.346-1.535m0 .836a.299.299 0 1 1 .298-.299.3.3 0 0 1-.298.3z"/></svg>����������������������mkdocs-material-9.6.4/material/templates/.icons/simple/spyderide.svg��������������������������������0000664�0000000�0000000�00000002536�14753064456�0025621�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.053.237a4.05 4.05 0 0 0-1.89.467A4.1 4.1 0 0 0 .524 2.29a7 7 0 0 0-.2.4c-.036.094-.076.186-.107.275a3.6 3.6 0 0 0-.147.567 4 4 0 0 0-.07.76v15.42a4 4 0 0 0 .4 1.756 4.05 4.05 0 0 0 3.654 2.295h8.234a.22.22 0 0 0 .22-.22v-.983a.22.22 0 0 0-.22-.219h-1.07l-3.188-6.46 7.276-9.642a.8.8 0 0 0 .137-.284l6.668 1.02v1.506a.22.22 0 0 0 .218.217h.99a.22.22 0 0 0 .218-.217v-4.19a4.04 4.04 0 0 0-1.506-3.146A4.04 4.04 0 0 0 19.48.237Zm0 1.42h2.97l.213 1.717-3.938-.601-1.242-.193a2.62 2.62 0 0 1 1.997-.923m9.586 0 .345 2.748-5.39-.821-.244-1.915zm1.318 0h4.304a2.855 2.855 0 0 1 2.848 2.848v1.142L15.326 4.61ZM2.13 3.92l4.924.756-2.749 3.653Zm6.394.98 5.508.843-6.65 8.824-2.43-4.927 3.57-4.733Zm-7.1.555 1.76 3.57-1.762.215Zm17.964 4.608c-2.625 0-4.98.368-4.98 3.069v.514c0 1.35.465 2.772 2.355 3.508l3.484 1.333c1.129.464 1.423.93 1.423 1.641v.295c0 1.055-.614 1.276-2.576 1.276h-4.539a.324.324 0 0 0-.368.368v1.08c0 .195.073.343.368.366.417.05 2.354.222 4.489.222 3.314 0 4.956-.536 4.956-3.284v-.273c0-1.35-.196-2.601-2.453-3.46l-3.263-1.3c-1.202-.442-1.52-1.033-1.52-1.717v-.32c0-.883.661-1.274 1.79-1.274h4.563a.326.326 0 0 0 .369-.369v-1.055a.363.363 0 0 0-.344-.393 31 31 0 0 0-3.754-.227m-15.592.203 2.464 4.98-4.838.608v-5.289Zm3.07 6.227 2.888 5.85H4.272a2.857 2.857 0 0 1-2.85-2.85v-2.316z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sqlalchemy.svg�������������������������������0000664�0000000�0000000�00000004505�14753064456�0025771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.8 15.955a44 44 0 0 1-1.673-.691c-1.736-.757-1.981-.772-2.499-.143-.119.146-.25.236-.287.2-.111-.111.219-.644.617-.993.325-.285.433-.325.791-.285.228.025.985.29 1.682.586 1.573.669 2.034.811 2.635.811.731 0 1.106-.512.876-1.192-.057-.171-.04-.228.074-.228.213 0 .322.797.168 1.255a1.6 1.6 0 0 1-.424.614c-.251.211-.41.257-.879.254a3.9 3.9 0 0 1-1.082-.188zm.301-2.225c0-.048.179-.134.401-.188l.401-.099.086-1.446c.094-1.599.025-3.172-.148-3.383-.063-.074-.253-.165-.427-.205-.705-.156-.236-.264 1.133-.264s1.803.099 1.152.264c-.561.14-.564.148-.564 2.43 0 1.266.046 2.22.111 2.342.092.171.228.207.752.207 1.081 0 1.453-.255 1.747-1.203.088-.284.315-.233.236.054-.037.134-.097.54-.134.91l-.068.669H14.44c-1.286 0-2.339-.04-2.339-.088m5.312-.068c0-.086.083-.171.219-.236.183-.086.302-.265.734-1.11.686-1.337 1.767-3.634 1.87-3.978.079-.262.097-.276.392-.31.171-.02.313-.031.316-.025l.527 1.152c.284.628.856 1.824 1.271 2.654.695 1.397.772 1.523 1.005 1.636.142.069.253.174.253.237 0 .099-.122.111-1.175.111-1.056 0-1.175-.012-1.175-.114 0-.068.091-.142.236-.191.134-.043.236-.122.236-.182 0-.057-.139-.432-.31-.834l-.31-.731h-2.35l-.225.495c-.421.928-.43 1.147-.037 1.252.196.054.25.097.227.185-.025.103-.127.117-.867.117-.794.006-.837 0-.837-.128m-15.652.025a11 11 0 0 1-.808-.196l-.549-.154.282-.518.281-.518-.227-.281c-.322-.399-.737-1.272-.74-1.554-.003-.657.851-1.61 1.898-2.122.72-.353 1.291-.362 2.009-.026l.54.253.157-.224c.085-.123.156-.285.156-.356s.071-.134.157-.134c.085 0 .156.023.156.048 0 .063-.629 1.651-.669 1.691-.017.016-.187-.063-.381-.177-.546-.321-1.232-.535-1.764-.549-1.238-.031-1.667 1.178-.794 2.236l.308.373.839-.68c.942-.76 1.05-.777 1.784-.27.825.569.839 1.434.042 2.339-.705.805-1.431 1.027-2.677.819m5.984-.165c-.646-.301-1.229-.876-1.565-1.547-.538-1.076-.373-1.765.646-2.695.856-.782 1.556-1.087 2.498-1.087.68 0 .825.037 1.266.307 1.044.646 1.303 1.878.675 3.221-.737 1.577-2.294 2.37-3.52 1.801m-3.872-.702c.409-.322.381-.917-.063-1.389-.558-.592-.731-.566-1.713.253-.976.814-.982.783.185 1.155.771.251 1.255.242 1.591-.019m6.034-.046c.484-.239.817-1.343.68-2.259-.17-1.13-1.698-1.901-2.819-1.423-1.153.493-1.17 1.804-.037 2.985.791.828 1.471 1.044 2.176.697m11.359-1.414c.04-.071-.845-2.003-.928-2.023-.06-.017-.976 1.872-.976 2.014 0 .072 1.861.08 1.904.009"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sqlite.svg�����������������������������������0000664�0000000�0000000�00000002456�14753064456�0025133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.678.521c-1.032-.92-2.28-.55-3.513.544a9 9 0 0 0-.547.535c-2.109 2.237-4.066 6.38-4.674 9.544.237.48.422 1.093.544 1.561a13 13 0 0 1 .164.703s-.019-.071-.096-.296l-.05-.146-.033-.08c-.138-.32-.518-.995-.686-1.289-.143.423-.27.818-.376 1.176.484.884.778 2.4.778 2.4s-.025-.099-.147-.442c-.107-.303-.644-1.244-.772-1.464-.217.804-.304 1.346-.226 1.478.152.256.296.698.422 1.186.286 1.1.485 2.44.485 2.44l.017.224a22 22 0 0 0 .056 2.748c.095 1.146.273 2.13.5 2.657l.155-.084c-.334-1.038-.47-2.399-.41-3.967.09-2.398.642-5.29 1.661-8.304 1.723-4.55 4.113-8.201 6.3-9.945-1.993 1.8-4.692 7.63-5.5 9.788-.904 2.416-1.545 4.684-1.931 6.857.666-2.037 2.821-2.912 2.821-2.912s1.057-1.304 2.292-3.166c-.74.169-1.955.458-2.362.629-.6.251-.762.337-.762.337s1.945-1.184 3.613-1.72C21.695 7.9 24.195 2.767 21.678.521m-18.573.543A1.84 1.84 0 0 0 1.27 2.9v16.608a1.84 1.84 0 0 0 1.835 1.834h9.418a23 23 0 0 1-.052-2.707c-.006-.062-.011-.141-.016-.2a27 27 0 0 0-.473-2.378c-.121-.47-.275-.898-.369-1.057-.116-.197-.098-.31-.097-.432 0-.12.015-.245.037-.386a10 10 0 0 1 .234-1.045l.217-.028c-.017-.035-.014-.065-.031-.097l-.041-.381a33 33 0 0 1 .382-1.194l.2-.019c-.008-.016-.01-.038-.018-.053l-.043-.316c.63-3.28 2.587-7.443 4.8-9.791.066-.069.133-.128.198-.194Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/square.svg�����������������������������������0000664�0000000�0000000�00000000663�14753064456�0025130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.01 0A4.01 4.01 0 0 0 0 4.01v15.98c0 2.21 1.8 4 4.01 4.01h15.98C22.2 24 24 22.2 24 19.99V4a4.01 4.01 0 0 0-4.01-4H4zm1.62 4.36h12.74c.7 0 1.26.57 1.26 1.27v12.74c0 .7-.56 1.27-1.26 1.27H5.63c-.7 0-1.26-.57-1.26-1.27V5.63a1.27 1.27 0 0 1 1.26-1.27m3.83 4.35a.73.73 0 0 0-.73.73v5.09c0 .4.32.72.72.72h5.1a.73.73 0 0 0 .73-.72V9.44a.73.73 0 0 0-.73-.73h-5.1Z"/></svg>�����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/squareenix.svg�������������������������������0000664�0000000�0000000�00000000233�14753064456�0026005�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.723 0v24h20.554v-4.496H7.037V4.088h15.006V0zm9.751 9.46v4.497h8.584V9.459z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/squarespace.svg������������������������������0000664�0000000�0000000�00000001652�14753064456�0026143�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.655 8.719c-1.802-1.801-4.726-1.801-6.564 0l-7.351 7.35c-.45.45-.45 1.2 0 1.65s1.2.449 1.65 0l7.351-7.351a2.31 2.31 0 0 1 3.264 0c.9.9.9 2.364 0 3.264l-7.239 7.239c.9.899 2.362.899 3.263 0l5.589-5.589c1.836-1.838 1.836-4.763.037-6.563m-2.475 2.437a1.177 1.177 0 0 0-1.65 0l-7.354 7.389a2.31 2.31 0 0 1-3.262 0c-.45-.45-1.2-.45-1.65 0s-.45 1.2 0 1.649c1.801 1.801 4.726 1.801 6.564 0l7.351-7.35c.449-.487.449-1.239.001-1.688m-2.439-7.35c-1.801-1.801-4.726-1.801-6.564 0l-7.351 7.351c-.45.449-.45 1.199 0 1.649s1.2.45 1.65 0l7.395-7.351a2.32 2.32 0 0 1 3.27 0c.451.45 1.201.45 1.65 0 .421-.487.421-1.199-.029-1.649zm-2.475 2.437c-.45-.45-1.2-.45-1.65 0l-7.351 7.389c-.899.9-2.363.9-3.265 0a2.31 2.31 0 0 1 0-3.264l7.239-7.239c-.9-.9-2.362-.9-3.263 0L1.35 8.719c-1.8 1.8-1.8 4.725 0 6.563 1.801 1.801 4.725 1.801 6.564 0l7.35-7.351c.451-.488.451-1.238 0-1.688z"/></svg>��������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/srgssr.svg�����������������������������������0000664�0000000�0000000�00000005103�14753064456�0025145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 7.861v8.278h24V7.86Zm2.979 2.135c.494 0 .883.032 1.06.057.08.012.122.047.11.138l-.073.457c-.024.135-.068.153-.226.141a12 12 0 0 0-.914-.043c-.281 0-.575.062-.575.379 0 .226.14.323.446.402l.45.116c.806.207 1.038.604 1.038 1.134 0 .903-.706 1.221-1.676 1.221-.433 0-.878-.032-1.055-.057-.079-.012-.123-.047-.11-.138l.073-.471c.025-.134.067-.153.225-.14.152.012.597.048.853.048.561 0 .793-.06.793-.402 0-.232-.157-.34-.529-.438l-.451-.117c-.592-.152-.934-.524-.934-1.152 0-.695.489-1.135 1.495-1.135m7.275 0c.628 0 .903.037.945.043.128.012.151.068.133.19l-.072.439c-.025.134-.068.15-.227.139a12 12 0 0 0-.719-.03c-.768 0-1.123.239-1.123 1.172 0 .738.214 1.274 1.043 1.274.14 0 .263-.006.3-.012v-.854h-.286c-.122 0-.16-.044-.16-.166v-.42c0-.121.038-.164.16-.164h1c.122 0 .158.043.158.164v1.958c0 .134-.038.184-.166.214s-.376.06-1.04.06c-1.483 0-1.96-.853-1.96-2.054 0-1.214.58-1.953 2.014-1.953m4.129 0c.494 0 .885.03 1.062.055.08.012.122.049.11.14l-.075.457c-.024.135-.065.153-.224.141a12 12 0 0 0-.914-.043c-.28 0-.574.062-.574.379 0 .226.14.323.445.402l.451.116c.805.207 1.037.604 1.037 1.134 0 .903-.708 1.22-1.678 1.22a10 10 0 0 1-1.054-.056c-.08-.012-.122-.047-.11-.138l.075-.471c.024-.134.066-.153.224-.14.152.012.598.048.854.048.56 0 .793-.06.793-.402 0-.232-.16-.342-.532-.44l-.45-.115c-.592-.152-.932-.524-.932-1.152 0-.695.486-1.135 1.492-1.135m3.154 0c.494 0 .884.03 1.06.055.08.012.122.049.11.14l-.072.457c-.024.135-.068.153-.227.141a12 12 0 0 0-.914-.043c-.28 0-.574.062-.574.379 0 .226.14.323.445.402l.451.116c.805.207 1.038.604 1.038 1.134 0 .903-.707 1.22-1.676 1.22a9 9 0 0 1-1.057-.056c-.08-.012-.122-.047-.11-.138l.075-.471c.024-.134.066-.153.225-.14.152.012.597.048.853.048.561 0 .793-.06.793-.402 0-.232-.157-.342-.53-.44l-.452-.115c-.592-.152-.932-.524-.932-1.152 0-.695.488-1.135 1.494-1.135M4.98 10.04h1.359c.94 0 1.367.427 1.367 1.19 0 .591-.336.86-.635 1.048l.89 1.477c.099.152-.006.207-.09.207h-.665c-.146 0-.197-.043-.258-.147l-.724-1.304c-.075-.128-.071-.183-.037-.319l.06-.255c.055-.232.116-.152.293-.225.14-.061.281-.16.281-.47 0-.342-.177-.475-.543-.475h-.58v3.03c0 .123-.036.165-.158.165h-.56c-.122 0-.159-.042-.159-.164v-3.594c0-.122.037-.164.159-.164m14.558 0h1.36c.939 0 1.365.427 1.365 1.19 0 .591-.334.86-.633 1.048l.89 1.477c.098.152-.006.207-.091.207h-.666c-.147 0-.195-.043-.256-.147l-.725-1.304c-.08-.14-.07-.184-.037-.319l.06-.255c.055-.232.117-.152.294-.225.14-.061.28-.16.28-.47 0-.342-.176-.475-.542-.475h-.58v3.029c0 .122-.036.166-.158.166h-.56c-.123 0-.16-.044-.16-.166v-3.592c0-.122.037-.164.16-.164z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ssrn.svg�������������������������������������0000664�0000000�0000000�00000006337�14753064456�0024621�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.087 7.242c-1.704 0-2.878.996-2.878 2.395 0 .627.21 1.141.611 1.56.45.465.932.723 2.058 1.108 1.173.37 1.398.483 1.64.66.417.337.658.803.658 1.301 0 1.013-.964 1.833-2.154 1.833-.723 0-1.478-.29-1.945-.756-.353-.353-.594-.755-.803-1.366-.032-.08-.065-.128-.129-.128-.08 0-.145.08-.145.192 0 .129.065.499.177.852.097.338.161.563.161.595.097.482.113.498.241.611.338.257 1.334.498 2.074.498 1.848 0 3.166-1.173 3.166-2.813 0-1.205-.787-2.073-2.41-2.604-1.624-.53-1.705-.579-2.074-.98a1.48 1.48 0 0 1-.386-1.013c0-.868.707-1.495 1.688-1.495 1.173 0 2.266.691 2.572 1.64.08.257.112.305.209.305.064 0 .128-.08.128-.193 0-.048-.016-.16-.032-.29-.177-1.092-.193-1.14-.21-1.333 0-.225-.047-.322-.16-.322a.12.12 0 0 0-.064.032c-.16.129-.177.145-.257.145a.5.5 0 0 1-.129-.032c-.852-.354-.996-.402-1.607-.402m5.256.032c-1.222 0-2.17.498-2.604 1.302l.096.659c.017.096.016.16.016.193 0 .257-.16.45-.369.498.048.499.257.933.61 1.286.45.466.933.724 2.058 1.11 1.158.385 1.399.482 1.64.658.418.322.659.804.659 1.302 0 1.013-.964 1.833-2.154 1.833-.723 0-1.48-.29-1.945-.755a2.8 2.8 0 0 1-.386-.483c-.096.225-.209.45-.338.643.097.45.113.483.242.579.337.257 1.334.498 2.073.498 1.833 0 3.167-1.173 3.167-2.813-.032-1.173-.836-2.025-2.46-2.572-1.64-.546-1.72-.578-2.073-.98a1.48 1.48 0 0 1-.386-1.013c0-.884.707-1.495 1.688-1.495 1.173 0 2.25.691 2.572 1.64.08.257.128.305.209.305.064 0 .129-.08.129-.193 0-.048-.017-.144-.033-.289-.177-1.093-.192-1.141-.209-1.334 0-.225-.048-.322-.16-.322-.032 0-.049.016-.065.032-.16.13-.176.145-.257.145-.032 0-.064-.016-.129-.032-.835-.37-.996-.402-1.591-.402m4.662.177c-.306 0-.643.016-.98.032-.724.048-.724.048-1.062.048h-.128a.8.8 0 0 1 .048.306c.016.128.016.193.112.723l.113.707a1 1 0 0 1 .016.193.5.5 0 0 1-.145.37v2.524q.434.626.434 1.446c0 .627-.177 1.19-.482 1.656-.08.579-.29.723-.82.884-.128.032-.16.048-.16.129 0 .096.048.128.176.128.048 0 .21-.016.338-.032.225-.032.563-.048.884-.048.627 0 1.318.016 1.479.048.177.016.321.032.402.032.112 0 .209-.048.209-.128s-.08-.129-.241-.145c-.933-.096-1.238-.434-1.206-1.35v-2.38c.016-.224.048-.257.386-.24h.723c.29 0 .37.048.515.273.048.08.08.128.08.144l1.623 2.492c.66 1.013 1.238 1.399 2.042 1.399.482 0 .932-.129.932-.258 0-.048-.048-.096-.112-.096-.691.016-1.158-.37-1.977-1.624l-1.833-2.668c1.06-.547 1.64-1.318 1.64-2.299 0-.707-.29-1.334-.804-1.72s-1.174-.546-2.202-.546m10.802.112c-.08 0-.177.016-.322.033-.16.032-.321.048-.595.048-.385 0-1.028-.032-1.27-.048l-.289-.016c-.128 0-.193.048-.193.128 0 .096.049.145.193.177 1.254.177 1.367.466 1.334 3.536v3.15c0 .21-.016.258-.08.242-.032 0-.08-.048-.177-.16l-6.044-6.88c-.128-.145-.209-.193-.353-.193-.048 0-.129 0-.225.016h-.113c-.032 0-.321 0-.514-.016.08.048.16.112.24.16.58.434.933 1.174.933 1.977 0 .129-.016.258-.032.37v4.18l.16.24c.145.21.258.386.37.547v-4.71c0-.225.032-.289.129-.289.064 0 .08.016.16.096l5.546 6.366c.21.241.21.241.306.241.16 0 .209-.097.209-.386v-.128c.016-.386.016-.98.016-1.817v-4.276l.016-.417c-.016-1.592.048-1.753.659-1.913.096-.016.129-.049.129-.113 0-.08-.08-.145-.193-.145m-11.156.338c.611 0 1.27.209 1.64.547.466.385.739 1.028.739 1.64 0 1.092-.691 1.767-1.849 1.767h-.739c-.434-.016-.466-.048-.466-.466V8.721c0-.45 0-.499.08-.611.097-.129.29-.209.595-.209"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sst.svg��������������������������������������0000664�0000000�0000000�00000002306�14753064456�0024435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.68 7.205h-3.776a.263.263 0 0 1-.223-.403l1.666-2.664a.897.897 0 0 0-.76-1.372H4.092c-.54 0-1.04.29-1.31.758C2.09 4.734.758 7.054.23 7.974a1.7 1.7 0 0 0-.223.839L0 15.77a1.5 1.5 0 0 0 1.499 1.5h4.78a.082.082 0 0 1 .067.127l-1.648 2.43a.9.9 0 0 0 .745 1.406h14.542a2.07 2.07 0 0 0 1.81-1.068c.465-.842 1.201-2.008 1.656-2.831.36-.653.549-1.387.549-2.133V8.526c0-.73-.591-1.32-1.32-1.32zm-18.65-1.9a1.43 1.43 0 0 1 1.43-1.43h13.278a.339.339 0 0 1 .284.525l-1.744 2.67a.3.3 0 0 1-.25.135H9.363c-.514 0-.993.26-1.274.69-.833 1.278-2.342 3.882-2.347 3.923h-.187a1.456 1.456 0 0 1-1.526-1.455V5.306zM2.255 16.35a.521.521 0 0 1-.41-.843l1.606-2.055a1.66 1.66 0 0 1 1.308-.64l14.028-.049a.321.321 0 0 1 .275.49l-1.233 2.015c-.194.316-.538.51-.91.51H7.854a1 1 0 0 0-.905.572zm19.934 1.113c-.366.635-.975 1.532-1.33 2.15-.25.433-.71.7-1.21.7H6.075a.27.27 0 0 1-.221-.425l1.968-2.793a.94.94 0 0 1 .765-.396h13.16a.51.51 0 0 1 .442.764m.795-2.451a.766.766 0 0 1-.766.765h-2.631a.49.49 0 0 1-.416-.75l1.086-1.746a.968.968 0 0 0-.822-1.48H7.782a.389.389 0 0 1-.329-.597c.43-.675.936-1.767 1.371-2.452a1.35 1.35 0 0 1 1.136-.624h12.274a.75.75 0 0 1 .75.75z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/stackbit.svg���������������������������������0000664�0000000�0000000�00000001427�14753064456�0025433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.949 2.306 1.17 7.967A2.36 2.36 0 0 0 .008 10.21v3.775a2.37 2.37 0 0 0 1.207 2.25l9.778 5.472a2.26 2.26 0 0 0 2.23 0l9.594-5.473a2.37 2.37 0 0 0 1.176-2.25V10.21a2.37 2.37 0 0 0-1.163-2.232l-9.593-5.662A2.27 2.27 0 0 0 12.085 2c-.392 0-.784.102-1.136.306m.775 14.037L1.946 10.68a.75.75 0 0 1-.289-.295.764.764 0 0 1 .289-1.026L11.724 3.7a.72.72 0 0 1 .738 0l9.593 5.674c.353.209.474.67.27 1.032a.73.73 0 0 1-1.008.276L12.09 5.23l-8.276 4.792 8.638 5a.767.767 0 0 1 .282 1.033.74.74 0 0 1-.646.386.7.7 0 0 1-.363-.097m.014 3.963L1.96 14.833a1 1 0 0 1-.081-.046.765.765 0 0 1-.228-1.042.73.73 0 0 1 1.018-.233l9.42 5.27 9.238-5.27a.73.73 0 0 1 1.005.293.765.765 0 0 1-.286 1.028l-9.594 5.473a.72.72 0 0 1-.714 0z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/stackblitz.svg�������������������������������0000664�0000000�0000000�00000000224�14753064456�0025773�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.797 14.182H3.635L16.728 0l-3.525 9.818h7.162L7.272 24l3.524-9.818Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/stackedit.svg��������������������������������0000664�0000000�0000000�00000001006�14753064456�0025573�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 0C2.689 0 0 2.689 0 6v12c0 3.311 2.689 6 6 6h12c3.311 0 6-2.689 6-6V6c0-3.311-2.689-6-6-6zm.227 1.871h11.546A3.98 3.98 0 0 1 21.75 5.85v11.545a3.98 3.98 0 0 1-3.977 3.976H6.227a3.98 3.98 0 0 1-3.977-3.976V5.85a3.98 3.98 0 0 1 3.977-3.98zm-.223 2.31V6.01H4.633V7.7h1.37v1.903h-1.37v1.689h1.37v1.828h1.4v-1.828h1.695v1.828h1.398v-1.828h1.371v-1.69h-1.37v-1.9h1.37V6.01h-1.37V4.182h-1.4V6.01H7.403V4.182H6.004zm1.398 3.52h1.696v1.903H7.402z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/stackexchange.svg����������������������������0000664�0000000�0000000�00000000530�14753064456�0026431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.728 15.577v1.036c0 1.754-1.395 3.177-3.1 3.177h-.904L13.645 24v-4.21H5.371c-1.704 0-3.099-1.423-3.099-3.181v-1.032zM2.275 10.463h19.323v3.979H2.275zm0-5.141h19.323v3.979H2.275zM18.575 0c1.681 0 3.023 1.42 3.023 3.178v1.034H2.275V3.178C2.275 1.422 3.67 0 5.375 0z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/stackhawk.svg��������������������������������0000664�0000000�0000000�00000004727�14753064456�0025615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.674 6.989q.163.139.298.255L12 4.34l4.971 2.867.298-.256-5.27-3.039zm12.33 6.063q-.18.09-.37.162v2.612l-3.315 1.911c.096.025.16.037.16.037-.11.148-.383.258-.607.33l.22.197 3.91-2.256zm-6.165 10.51 1.182-.683-.682-.46-.179.102a9 9 0 0 1-.321 1.04Zm-4.32-5.788s.065-.013.161-.037l-3.308-1.911v-2.572a4 4 0 0 1-.37-.149v2.935l3.997 2.308.238-.22c-.23-.059-.592-.18-.718-.354M5.36 5.788q.212.205.42.399L12 2.594l6.154 3.554q.208-.193.42-.4L12 1.953zm15.34 5.74a7 7 0 0 1-.553.648v4.523L15.95 19.12a11 11 0 0 1 .388.418l4.363-2.52v-5.491ZM4.689 5.116l7.389-4.26L19.3 5.023q.265-.28.508-.562L12.075 0 4.172 4.563c.168.18.34.368.517.553M9.416 21.61l-6.992-4.037V8.205c-.25-.27-.501-.579-.74-.891V18l7.698 4.443a8 8 0 0 1 .034-.834ZM21.732 7.913v9.659l-6.997 4.04c.025.287.038.575.033.836L22.474 18V6.965a16 16 0 0 1-.742.948M9.625 20.028l-.235-.136-.793.186.934.54c.039-.246.07-.45.094-.59m-1.476-.854L3.86 16.7v-4.414a7 7 0 0 1-.552-.619v5.353l4.459 2.575q.179-.21.382-.42Zm3.16 4.384a9 9 0 0 1-.319-1.042l-.175-.1-.682.462zm3.342-3.69-.143.083c.022.123.057.332.096.587l.841-.486zm-2.91-7.697c.111.238.234.483.348.732.11-.25.233-.494.349-.732.8-1.658 1.202-2.62.175-3.15l-.045-.035c-.168-.166-.332-.25-.479-.25a.7.7 0 0 0-.477.25l-.046.035c-1.026.53-.625 1.493.176 3.15Zm11.14-7.228c-2.374 3.884-7.401 5.72-7.401 5.72 8.85-5.24 8.518-10.51 8.518-10.51-3.172 5.97-8.499 9.199-10.452 10.231-.118.593-.441 1.261-.773 1.948-.17.354-.348.722-.51 1.104l-.172.396-.17-.396c-.162-.377-.34-.744-.511-1.104-.311-.647-.616-1.278-.75-1.843C8.891 9.584 3.292 6.341.002.152c0 0-.332 5.27 8.518 10.51 0 0-5.025-1.836-7.402-5.72 0 0 1.694 5.123 6.799 6.284 0 0-3.221-.043-5.052-1.94 0 0-.105 2.282 4.808 2.626 0 0-2.415.586-3.597-.488 0 0 .058 1.157 3.672 1.268 0 0 1.593-.111 2.606.597-.033 1.296.27 2.64.574 3.645-.053.036-.069.293-1.866.86 0 .029 1.152.309 1.713-.22.12.127-1.305.516-2.642 2.188.016-.066 1.749-.631 2.97-1.177.014-.007-.901.904-1.088 3.617.032-.01.566-.884 1.406-1.857-.06 1.252.164 2.5.65 3.655a8.3 8.3 0 0 0 .653-3.494c.762.907 1.24 1.686 1.27 1.696-.185-2.713-1.104-3.624-1.089-3.617 1.216.546 2.956 1.106 2.971 1.177-1.335-1.672-2.771-2.061-2.643-2.187.56.526 1.717.246 1.713.22-1.818-.574-1.813-.829-1.868-.861.305-1.002.61-2.347.58-3.646 1.015-.704 2.597-.59 2.597-.59 3.614-.11 3.672-1.268 3.672-1.268-1.182 1.074-3.597.488-3.597.488 4.913-.343 4.808-2.625 4.808-2.625-1.834 1.89-5.05 1.933-5.05 1.933 5.1-1.16 6.793-6.283 6.793-6.283"/></svg>�����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/stackoverflow.svg����������������������������0000664�0000000�0000000�00000000550�14753064456�0026514�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.725 0-1.72 1.277 6.39 8.588 1.716-1.277zm-3.94 3.418-1.369 1.644 8.225 6.85 1.369-1.644zm-3.15 4.465-.905 1.94 9.702 4.517.904-1.94zm-1.85 4.86-.44 2.093 10.473 2.201.44-2.092-10.473-2.203zM1.89 15.47V24h19.19v-8.53h-2.133v6.397H4.021v-6.396zm4.265 2.133v2.13h10.66v-2.13H6.154Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/stackshare.svg�������������������������������0000664�0000000�0000000�00000002123�14753064456�0025751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.209 6.697c-.035-.274 0-.594 0-.594v-.01a1.56 1.56 0 0 1 1.525-1.254l.014.001h.002c.859 0 1.557.698 1.557 1.556s-.697 1.556-1.557 1.556l-.009-.001h-.007a1.56 1.56 0 0 1-1.525-1.254M24 1.54v20.92c0 .851-.646 1.54-1.443 1.54H1.444C.647 24 0 23.311 0 22.46V1.54C0 .69.647 0 1.444 0h21.113C23.354 0 24 .69 24 1.54m-2.303 16.007a2.962 2.962 0 0 0-5.805-.828h-1.758l-2.74-4.717-.002-.004.002-.004 2.736-4.709h1.748a2.963 2.963 0 1 0 2.018-3.673 2.96 2.96 0 0 0-2.018 2.017h-2.665l-.026-.016-3.227 5.552-.025.042H8.018a2.962 2.962 0 1 0-5.69 1.657 2.964 2.964 0 0 0 5.69 0h1.961l3.208 5.52.015-.009h2.69a2.96 2.96 0 0 0 2.842 2.134h.002a2.96 2.96 0 0 0 2.961-2.962m-2.933-1.619a1.56 1.56 0 0 0-1.527 1.254q-.004.043-.007.085c-.004.017-.015.029-.018.046-.041.301 0 .602 0 .602a1.553 1.553 0 0 0 1.837 1.209 1.54 1.54 0 0 0 1.164-1.088c.065-.172.105-.356.105-.551 0-.859-.697-1.557-1.554-1.557M5.2 10.417c-.858 0-1.556.698-1.556 1.557l.002.018-.001.008a1.547 1.547 0 0 0 2.84.85c.171-.249.272-.551.272-.875 0-.86-.698-1.558-1.557-1.558"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/stadia.svg�����������������������������������0000664�0000000�0000000�00000001031�14753064456�0025063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.525 10.03a18.28 18.28 0 0 1 15.78.263c.264.198.658 0 .724-.263l.92-2.827c.132-.263 0-.658-.328-.79A22.36 22.36 0 0 0 .279 8.65a.66.66 0 0 0-.197.855l2.17 4.8c.13.329.525.526.854.395 2.433-.921 6.18-1.841 9.995-1.315-2.63.46-4.669 1.38-6.313 2.367a.66.66 0 0 0-.197.854l1.315 3.025c.132.263.46.329.658.132a7.4 7.4 0 0 1 1.512-1.184c2.104-1.184 4.997-2.104 8.876-1.907a.66.66 0 0 0 .658-.46l.986-2.959c.132-.263 0-.658-.263-.789A20.05 20.05 0 0 0 6.46 10.03z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/staffbase.svg��������������������������������0000664�0000000�0000000�00000001270�14753064456�0025561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.847 20.095a7.8 7.8 0 0 1-6.286-3.238l1.714-1.238C8.323 17.048 10.037 18 11.847 18s3.523-.857 4.571-2.381l1.714 1.238a7.8 7.8 0 0 1-6.285 3.238m.19-18c1.62 0 3.238.476 4.762 1.334l1.048.476 2.857-.572-.477 2.857c2.381 3.715 2.191 9.239-1.047 12.667a9.75 9.75 0 0 1-7.048 3.048 9.98 9.98 0 0 1-6.857-2.762c-3.905-3.81-4-10-.286-13.905 1.905-2.095 4.477-3.143 7.048-3.143m0-2.095C8.799 0 5.751 1.333 3.466 3.714c-4.572 4.762-4.477 12.381.285 16.953A11.9 11.9 0 0 0 12.037 24c3.238 0 6.381-1.333 8.571-3.619 3.62-3.714 4.286-9.81 1.81-14.571l.38-2.096.477-2.952-2.952.571-2.19.381-.382-.19C15.941.476 14.037 0 12.037 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/stagetimer.svg�������������������������������0000664�0000000�0000000�00000001353�14753064456�0025771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.127 2.639c0 .821.662 1.475 1.464 1.644a7.83 7.83 0 0 1 6.201 7.666c0 4.326-3.499 7.833-7.815 7.833a7.77 7.77 0 0 1-3.932-1.062c-.716-.419-1.66-.372-2.207.253l-.794.906c-.549.625-.491 1.586.196 2.053A11.95 11.95 0 0 0 11.977 24C18.617 24 24 18.605 24 11.949 24 5.86 19.495.826 13.644.013c-.829-.116-1.517.571-1.517 1.411zM2.01 15.376c-.8.27-1.236 1.135-.866 1.886q.383.777.871 1.492c.473.693 1.449.752 2.085.202l.921-.797c.636-.551.686-1.502.26-2.224l-.035-.06c-.419-.726-1.277-1.158-2.077-.889zm-.322-1.384c-.807.162-1.6-.369-1.658-1.198q-.06-.857 0-1.714c.058-.829.851-1.36 1.658-1.198l1.168.233c.807.162 1.316.957 1.312 1.788v.068c.004.831-.505 1.626-1.312 1.787z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/standardjs.svg�������������������������������0000664�0000000�0000000�00000004745�14753064456�0025772�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.966 0 1.608 5.965v12.07L12.035 24l10.358-5.965V5.965Zm1.421 7.02h.651v3.483h-.651l.015-.3c-.116.218-.333.343-.647.343-.501 0-.93-.443-.93-1.075s.424-1.066.92-1.066c.329 0 .512.13.642.333zm6.83 0h.65v3.483h-.65l.014-.3c-.116.218-.333.343-.646.343-.502 0-.931-.443-.931-1.075s.424-1.066.921-1.066c.328 0 .511.13.641.333zm-14.928.358h.646v1.07h.526v.54h-.526v.763c0 .207.068.25.17.25.105 0 .183-.058.226-.086l.246.453a.87.87 0 0 1-.574.188c-.415 0-.714-.207-.714-.825v-.743h-.304v-.54h.304zM3.895 8.405c.338 0 .58.11.748.284l-.347.372a.63.63 0 0 0-.396-.154q-.223-.002-.222.12c0 .116.13.13.41.193.3.068.676.207.676.641 0 .377-.198.685-.845.685-.477 0-.757-.178-.935-.39l.38-.338a.74.74 0 0 0 .512.217c.212 0 .28-.039.28-.125 0-.111-.13-.111-.463-.198-.28-.072-.593-.227-.593-.656 0-.463.356-.651.795-.651m4.018 0c.526 0 .926.284.926.93v1.168h-.646l.014-.285c-.154.237-.333.328-.608.328-.376 0-.723-.169-.723-.646 0-.439.333-.617.84-.617h.477c-.01-.237-.126-.343-.343-.343a.64.64 0 0 0-.468.188l-.361-.385c.193-.189.41-.338.892-.338m2.71 0c.449 0 .772.328.772.911v1.187h-.651V9.36c0-.232-.11-.362-.342-.362-.26 0-.415.145-.415.405v1.1h-.651V8.448h.65l-.014.338a.7.7 0 0 1 .651-.381m4.857 0c.526 0 .926.284.926.93v1.168h-.646l.014-.285c-.154.237-.332.328-.607.328-.376 0-.724-.169-.724-.646 0-.439.333-.617.84-.617h.477c-.01-.237-.125-.343-.343-.343a.64.64 0 0 0-.467.188l-.362-.385c.193-.189.41-.338.892-.338m2.667 0c.135 0 .237.038.319.082l-.208.593a.6.6 0 0 0-.25-.063c-.295 0-.454.135-.454.574v.912h-.651V8.448h.651l-.01.372c.15-.338.391-.415.603-.415m-5.204.574c-.275 0-.448.188-.448.492 0 .323.173.506.448.506.28 0 .463-.183.463-.506 0-.304-.183-.492-.463-.492m6.83 0c-.275 0-.449.188-.449.492 0 .323.174.506.449.506.28 0 .463-.183.463-.506 0-.304-.184-.492-.463-.492m-12.024.69c-.164 0-.236.072-.236.188s.096.183.28.183c.265 0 .4-.116.4-.29v-.082zm7.567 0c-.164 0-.236.072-.236.188s.096.183.28.183c.265 0 .4-.116.4-.29v-.082zm-1.261 2.478c.766 0 1.317.267 1.713.965l-.938.603c-.207-.37-.431-.517-.775-.517-.354 0-.578.224-.578.517 0 .361.224.508.741.732l.302.129c1.024.439 1.602.887 1.602 1.895 0 1.085-.853 1.679-1.999 1.679-1.12 0-1.843-.534-2.196-1.232l.982-.568c.258.422.594.732 1.189.732.5 0 .818-.25.818-.594 0-.414-.328-.56-.879-.801l-.301-.13c-.87-.37-1.447-.835-1.447-1.817 0-.904.689-1.593 1.766-1.593m-3.988.069h1.206v4.117c0 1.249-.732 1.817-1.8 1.817-.965 0-1.525-.5-1.809-1.102l.982-.595c.19.336.362.62.775.62.396 0 .646-.155.646-.757z"/></svg>���������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/standardresume.svg���������������������������0000664�0000000�0000000�00000002001�14753064456�0026635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.524 17.138v-2.093h3.111v2.358q0 1.959.306 2.76.306.785 1.149.786.845 0 1.115-.654.28-.653.281-2.131-.001-1.48-.49-2.573-.49-1.105-1.554-2.305L3.852 11.5a10.8 10.8 0 0 1-1.74-2.625Q1.501 7.516 1.5 5.73q0-2.905 1.028-4.317Q3.554 0 6.064 0c2.51 0 2.802.55 3.39 1.653q.893 1.638.893 4.797v1.452H7.324v-1.68q0-1.705-.268-2.438-.269-.746-1.041-.745-.757 0-1.101.56-.33.558-.33 1.678t.342 1.785q.344.667 1.236 1.707l1.775 2.091q1.335 1.574 2.007 3.186.685 1.611.685 3.518 0 3.29-1.016 4.864Q8.599 23.999 6.053 24q-2.534 0-3.537-1.746-.99-1.759-.99-5.117Zm15.849-4.426-1.053-.052v11.073h-3.28V.28h5.422q1.687 0 2.52.746.832.733 1.09 2.066.27 1.318.269 3.464 0 2.132-.416 3.252a2.4 2.4 0 0 1-1.542 1.505q1.112.215 1.554 1.64.44 1.426.44 5.943 0 4.504.123 4.837h-3.28q-.123-.266-.122-8.407 0-1.56-.344-2.066-.343-.52-1.381-.547Zm-1.041-2.824h1.31q.622 0 .918-.306.306-.307.415-1.053.124-.746.123-2.28v-.144q0-1.904-.294-2.492-.293-.586-1.357-.586h-1.115z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/starbucks.svg��������������������������������0000664�0000000�0000000�00000013735�14753064456�0025635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.207 5.28c-.105-.019-.612-.104-1.207-.104s-1.102.085-1.207.104c-.06.01-.084-.048-.038-.083.042-.03 1.245-.946 1.245-.946l1.244.946c.047.035.024.094-.037.083m-2.078 5.945s-.064.023-.08.079c.252.193.425.634.951.634s.7-.44.951-.635c-.016-.056-.08-.078-.08-.078s-.33.077-.871.077c-.542 0-.871-.077-.871-.077m.871-.742c-.146 0-.178-.055-.278-.055-.094 0-.279.076-.319.146a.15.15 0 0 0 .042.095c.212.031.309.15.555.15s.343-.119.556-.15a.16.16 0 0 0 .041-.095c-.04-.07-.224-.145-.319-.146-.1 0-.132.055-.278.055m11.987 2.27a12 12 0 0 1-.076.853c-1.36.225-1.845-.986-3.237-.925q.124.443.203.903c1.148 0 1.61 1.073 2.888.915q-.1.492-.242.97c-1.01.1-1.365-.904-2.534-.876q.015.249.015.504l-.005.28 2.27.866a12 12 0 0 1-.397.948c-.682-.037-.917-.912-1.955-.843a9 9 0 0 1-.118.665c.901-.063 1.095.767 1.74.834a12 12 0 0 1-.53.877c-.382-.205-.714-.823-1.44-.861a9 9 0 0 0 .196-.7c-.644 0-1.38-.25-1.996-.812.2-1.14-1.568-2.299-1.568-3.133 0-.906.458-1.407.458-2.628 0-.907-.44-1.89-1.104-2.562a2.2 2.2 0 0 0-.411-.33c.61.754 1.078 1.649 1.078 2.685 0 1.15-.535 1.757-.535 2.819 0 1.061 1.553 1.98 1.553 3.074 0 .43-.138.85-.592 1.677.697.696 1.605 1.076 2.19 1.076.19 0 .293-.058.361-.207a9 9 0 0 0 .167-.391c.63.024.92.597 1.269.826q-.288.387-.604.746c-.234-.259-.549-.695-1.01-.816a9 9 0 0 1-.26.473c.396.108.667.508.877.771a12 12 0 0 1-.707.676c-.153-.239-.392-.541-.66-.704a8 8 0 0 1-.307.39c.227.155.428.432.559.658q-.424.341-.88.645c-.15-1.22-1.814-2.055-1.365-3.47-.147.25-.323.561-.323.937 0 1.024 1.09 1.836 1.178 2.854q-.34.202-.693.383c-.04-1.119-1.194-2.343-1.194-3.26 0-1.025 1.342-2.055 1.342-3.264 0-1.21-1.549-2.049-1.549-3.111s.659-1.673.659-3.035c0-.997-.474-2.006-1.206-2.65a2 2 0 0 0-.41-.286c.69.828 1.09 1.58 1.09 2.719 0 1.28-.755 1.99-.755 3.244s1.52 1.95 1.52 3.12c0 1.168-1.414 2.152-1.414 3.353 0 1.092 1.246 2.182 1.265 3.477a12 12 0 0 1-.833.326c.159-1.309-1.245-2.659-1.245-3.727 0-1.167 1.467-2.171 1.467-3.43s-1.491-1.845-1.491-3.138.915-2.007.915-3.435a3.48 3.48 0 0 0-1.352-2.734l-.051-.038c-.076-.056-.138.011-.084.078.568.71.872 1.427.872 2.49 0 1.305-1.052 2.366-1.052 3.632 0 1.493 1.412 1.92 1.412 3.145s-1.514 2.205-1.514 3.505c0 1.206 1.433 2.545 1.187 3.937a12 12 0 0 1-.874.192c.269-1.733-1.137-2.978-1.137-4.112 0-1.228 1.568-2.322 1.568-3.522 0-1.131-1.125-1.501-1.273-2.659-.02-.158-.147-.275-.322-.246-.229.042-.522.192-.982.192s-.753-.15-.982-.192c-.174-.029-.301.088-.321.246-.148 1.158-1.274 1.527-1.274 2.66 0 1.199 1.568 2.293 1.568 3.52 0 1.135-1.405 2.38-1.137 4.113a12 12 0 0 1-.874-.192c-.246-1.392 1.187-2.73 1.187-3.937 0-1.3-1.514-2.28-1.514-3.505s1.412-1.652 1.412-3.145c0-1.266-1.051-2.326-1.051-3.633 0-1.062.303-1.78.872-2.49.053-.066-.009-.133-.085-.077l-.05.038a3.48 3.48 0 0 0-1.351 2.732c0 1.428.915 2.143.915 3.436 0 1.292-1.492 1.878-1.492 3.138 0 1.258 1.467 2.262 1.467 3.43 0 1.068-1.403 2.418-1.244 3.727a12 12 0 0 1-.833-.326c.019-1.296 1.265-2.386 1.265-3.478 0-1.2-1.414-2.185-1.414-3.353s1.519-1.866 1.519-3.12c0-1.253-.754-1.964-.754-3.244 0-1.14.4-1.89 1.09-2.718-.154.08-.281.17-.41.285a3.63 3.63 0 0 0-1.206 2.65c0 1.362.659 1.973.659 3.035s-1.549 1.9-1.549 3.111c0 1.21 1.342 2.24 1.342 3.264 0 .918-1.155 2.142-1.194 3.26a12 12 0 0 1-.693-.383c.087-1.017 1.178-1.83 1.178-2.854 0-.375-.176-.687-.323-.936.448 1.414-1.216 2.25-1.366 3.469a12 12 0 0 1-.88-.645c.131-.225.332-.503.56-.657a8 8 0 0 1-.308-.391c-.268.163-.507.466-.66.704a12 12 0 0 1-.707-.675c.21-.264.482-.664.878-.772a9 9 0 0 1-.261-.473c-.46.122-.776.558-1.01.817a12 12 0 0 1-.603-.746c.35-.23.638-.803 1.269-.827q.079.197.167.39c.068.15.17.208.36.208.586 0 1.493-.38 2.19-1.076-.453-.826-.59-1.246-.59-1.677 0-1.094 1.552-2.012 1.552-3.074s-.535-1.668-.535-2.818c0-1.037.468-1.931 1.078-2.686a2.2 2.2 0 0 0-.412.33C6.781 8.7 6.34 9.683 6.34 10.589c0 1.221.459 1.723.459 2.629 0 .834-1.768 1.993-1.568 3.132-.617.562-1.353.813-1.997.813a9 9 0 0 0 .195.7c-.725.038-1.056.656-1.44.86a12 12 0 0 1-.53-.876c.646-.068.84-.897 1.742-.834a9 9 0 0 1-.118-.665c-1.038-.07-1.274.806-1.956.843a12 12 0 0 1-.396-.948L3 15.376l-.005-.28q0-.255.014-.505c-1.168-.027-1.524.976-2.534.877a12 12 0 0 1-.241-.97c1.276.157 1.74-.916 2.888-.915a9 9 0 0 1 .202-.904c-1.392-.06-1.878 1.15-3.236.925a12 12 0 0 1-.076-.852c1.58.176 2.171-1.122 3.61-.963a8 8 0 0 1 .47-.997c-1.803-.317-2.415 1.191-4.093.96C.181 5.28 5.484.09 12 .09s11.819 5.19 12 11.663c-1.679.232-2.29-1.276-4.093-.96q.267.481.47.997c1.438-.159 2.03 1.14 3.61.963zM6.84 7.718c-.884-.361-1.954-.278-2.868.31-.142-.851-.603-1.607-1.26-2.062-.091-.063-.185-.004-.177.102.139 1.796-.912 3.356-2.203 4.728 1.331.4 2.464-1.314 4.19-.716A9 9 0 0 1 6.84 7.718M12 6.631c-1.114 0-2.048.63-2.292 1.445-.02.062.006.103.078.07.2-.09.429-.133.677-.133.454 0 .855.167 1.092.457.104.346.113.847-.005 1.132-.187-.042-.255-.186-.438-.186-.182 0-.324.128-.634.128s-.346-.146-.55-.146c-.24 0-.284.247-.284.525 0 1.242 1.142 2.95 2.356 2.95s2.354-1.708 2.354-2.95c0-.279-.057-.517-.307-.55a.76.76 0 0 1-.526.171c-.31 0-.395-.128-.578-.128-.22 0-.198.465-.46.49-.175-.419-.183-.957-.038-1.436.237-.29.637-.457 1.092-.457.248 0 .477.044.676.133.072.033.097-.008.079-.07-.244-.814-1.178-1.445-2.292-1.445m1.774 1.782c-.267 0-.58.082-.777.301-.02.06-.02.149.008.208.485-.166.912-.173 1.119.058.11-.1.145-.19.145-.294 0-.161-.164-.273-.495-.273m-3.898.567c.234-.234.727-.224 1.238-.035.023-.254-.433-.533-.888-.533-.331 0-.495.112-.495.274 0 .104.035.195.145.294m7.68-4.203c-.88.063-1.643.365-2.262.868a9 9 0 0 1 1.019-2.026c-1.12.119-2.057.529-2.74 1.229l-.536-1.403 1.188-1.048-1.59-.113L12 .805l-.635 1.48-1.59.112 1.187 1.049-.534 1.402c-.684-.7-1.62-1.11-2.74-1.229a9 9 0 0 1 1.017 2.026c-.618-.503-1.382-.805-2.262-.868.528.679.996 1.402 1.342 2.18.04.088.124.117.214.071a8.96 8.96 0 0 1 4-.936c1.438 0 2.795.338 4.001.936.091.046.175.017.214-.07.347-.779.815-1.502 1.343-2.18zm1.922 5.304c1.726-.598 2.86 1.115 4.19.716-1.291-1.372-2.341-2.932-2.202-4.729.008-.105-.087-.165-.177-.102-.657.456-1.119 1.212-1.26 2.062-.914-.587-1.984-.67-2.868-.309a9 9 0 0 1 2.317 2.362"/></svg>�����������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/stardock.svg���������������������������������0000664�0000000�0000000�00000001647�14753064456�0025445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.337 3.28q-.162.001-.336.017c-1.553.129-3.886.917-6.557 2.217a7.3 7.3 0 0 0-3.71-.994c-4.124 0-7.478 3.354-7.478 7.496 0 .674.093 1.33.262 1.95-3.224 2.697-5.04 5.153-4.385 6.221.712 1.125 3.992.412 8.115-1.556a7.55 7.55 0 0 0 3.484.863c4.124 0 7.48-3.356 7.48-7.478 0-.544-.058-1.086-.17-1.592 3.504-2.867 5.529-5.491 4.816-6.615-.24-.375-.768-.545-1.521-.53Zm-4.324 1.708c-1.912.769-4.666 1.706-5.64 3.711-.564 1.143.371 2.436.84 3.035.47.62 1.35 2.174-.13 3.786-1.5 1.63-7.028 3.318-7.028 3.318 1.78-.843 4.91-2.06 5.396-4.16.375-1.593-1.142-2.493-1.555-3.205-.412-.712-.842-1.93 1.313-3.54 2.156-1.631 6.804-2.945 6.804-2.945m1.02.758c.67-.007 1.153.151 1.378.498.43.675-.207 1.95-1.556 3.393a7.5 7.5 0 0 0-2.323-3.393c.975-.318 1.832-.49 2.502-.498zM4.8 14.79a7.6 7.6 0 0 0 2.305 3.074c-1.762.525-3.074.524-3.467-.113-.394-.618.075-1.706 1.162-2.96z"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/starlingbank.svg�����������������������������0000664�0000000�0000000�00000000541�14753064456�0026302�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m2.738 3.822h.666v2.724h-.666a4.794 4.794 0 0 0-4.789 4.788V12H7.226v-.666c0-4.142 3.37-7.512 7.512-7.512M14.05 12h2.723v.666c0 4.142-3.37 7.512-7.512 7.512h-.666v-2.724h.666a4.794 4.794 0 0 0 4.789-4.788z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/starship.svg���������������������������������0000664�0000000�0000000�00000001220�14753064456�0025453�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.521 9.62a1.057 1.057 0 1 1-2.115 0 1.057 1.057 0 0 1 2.115 0M24 12c0 6.627-5.373 12-12 12q-.525 0-1.04-.044c2.019-1.89 2.548-5.061 2.548-5.061l-3.226-1.053s-1.499 3.23-5.599 3.67A11.98 11.98 0 0 1 0 12C0 5.373 5.373 0 12 0s12 5.373 12 12M8.628 6.606c-1.23-.13-1.885-.83-2.03-2.031-.142 1.159-.77 1.88-2.032 2.031 1.168.227 1.83.918 2.031 2.032-.02-1.154.666-1.825 2.031-2.032m7.786 5.207c1.11-2.483.392-4.252-1.233-6.246-2.043 1.5-3.759 3.023-3.636 5.149-1.375.675-2.261 1.206-3.147 2.289l2.779 1.103-.368 1.267 3.637 1.062.443-1.181 2.825.651c.014-1.496-.38-3.097-1.3-4.094"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/startdotgg.svg�������������������������������0000664�0000000�0000000�00000000620�14753064456�0026003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 0A6 6 0 0 0 .002 6v5.252a.75.75 0 0 0 .75.748H5.25a.75.75 0 0 0 .75-.747V6.749C6 6.334 6.336 6 6.748 6h16.497a.75.75 0 0 0 .749-.748V.749A.743.743 0 0 0 23.247 0zm12.75 12a.75.75 0 0 0-.75.75v4.5a.75.75 0 0 1-.747.748H.753a.754.754 0 0 0-.75.751v4.5a.75.75 0 0 0 .75.751H18a6 6 0 0 0 5.999-6v-5.25a.75.75 0 0 0-.75-.75z"/></svg>����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/startpage.svg��������������������������������0000664�0000000�0000000�00000001132�14753064456�0025612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.885 14.254.04-.06a8.7 8.7 0 0 0 1.851-4.309c-1.334 0-2.648 0-3.982.04a4.9 4.9 0 0 1-4.758 3.696 4.95 4.95 0 0 1-4.56-3.044 90 90 0 0 0-3.941.514c1.035 3.697 4.46 6.405 8.501 6.405a8.8 8.8 0 0 0 3.743-.83l.06-.02.04.04 5.455 6.603c.378.454.916.711 1.513.711.458 0 .896-.158 1.234-.435.399-.336.657-.79.697-1.304s-.1-1.009-.438-1.424zM5.118 8.56c.1-2.59 2.27-4.685 4.918-4.685a4.91 4.91 0 0 1 4.898 4.389c1.314.02 2.608.04 3.922.099C18.616 3.717 14.754 0 10.036 0c-4.858 0-8.82 3.934-8.82 8.758v.178a87 87 0 0 1 3.902-.376"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/startrek.svg���������������������������������0000664�0000000�0000000�00000001771�14753064456�0025470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.943 14.596c.094 0 .3.095.576.462a58 58 0 0 1 2.165 3.23c-1.627.646-3.595 1.01-5.684 1.01-.988 0-1.948-.097-2.856-.26 1.417-1.507 2.918-2.856 4.703-3.98.555-.278.819-.462 1.096-.462m2.424-6.202c2.858 1.055 4.788 2.906 4.788 4.998 0 1.415-.881 2.73-2.338 3.755-.385-2.26-.898-4.477-1.644-6.616a39 39 0 0 0-.808-2.136zM7.73 8.077a39 39 0 0 0-1.096 3.288 56 56 0 0 0-1.327 6.404c-2.11-1.1-3.462-2.69-3.462-4.385.001-2.274 2.44-4.337 5.885-5.307M12.463.086c-.095 0-.08-.007-.174.086a25.9 25.9 0 0 0-3.663 5.77C3.631 6.89 0 9.887 0 13.385c0 2.588 1.991 4.903 5.048 6.317a65 65 0 0 0-.347 4.01c0 .094.108.202.203.202h.086c.094 0 .08.007.173-.086a80 80 0 0 1 2.538-3.203c1.338.336 2.78.52 4.299.52 2.455 0 4.738-.48 6.635-1.298.46.772.908 1.555 1.385 2.395 0 .094.194.086.288.086a.175.175 0 0 0 .173-.173 70 70 0 0 0-.346-3.088c2.369-1.42 3.865-3.45 3.865-5.682 0-3.252-3.156-6.072-7.615-7.212a33.5 33.5 0 0 0-3.75-6c0-.094-.078-.087-.172-.087"/></svg>�������mkdocs-material-9.6.4/material/templates/.icons/simple/starz.svg������������������������������������0000664�0000000�0000000�00000002115�14753064456�0024765�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.27 9.283C.377 9.283.13 10.471.13 10.834c0 2.199 2.932 1.396 2.932 2.236 0 .208-.164.428-.737.428-.631 0-.76-.29-.76-.51H0c.005.402.168 1.729 2.326 1.729 1.6 0 2.287-.752 2.287-1.703 0-2.18-2.996-1.355-2.996-2.18 0-.163.129-.408.631-.408s.631.245.631.408h1.49c0-.392-.208-1.55-2.1-1.55zm2.277.147v1.404h1.42v3.736h1.549v-3.736h1.44V9.43Zm5.619 0-2.035 5.14h1.643l.183-.558h1.799l.186.558h1.64l-2.035-5.14Zm3.742 0v5.14h1.549v-2.164l1.289 2.164h1.836l-1.312-1.902c.7-.314.992-.93.992-1.557h-.002c0-.928-.613-1.681-2.121-1.681h-.002zm4.93 0v1.404h2.037L18.65 14.57h4.182l.78-1.404h-2.454l2.223-3.736Zm-3.381 1.265h.682c.416 0 .58.225.58.504 0 .28-.164.506-.58.506v-.002h-.682zm-4.601.61.558 1.677H10.3zm12.836 2.715a.31.31 0 0 0 0 .619.31.31 0 0 0 .308-.309.31.31 0 0 0-.309-.31m-.014.06h.013a.25.25 0 0 1 .248.25.25.25 0 0 1-.248.248.25.25 0 0 1-.013-.498m-.094.084v.33h.06v-.129h.048l.07.13h.07l-.078-.138a.1.1 0 0 0 .047-.033.1.1 0 0 0 .02-.06c0-.06-.042-.1-.106-.1zm.06.063h.065q.048 0 .049.039-.001.039-.049.039h-.064z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/statamic.svg���������������������������������0000664�0000000�0000000�00000001631�14753064456�0025431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.78 21.639c1.754 0 2.398-.756 2.398-2.607v-3.62c0-1.722.837-2.704 1.641-3.17.242-.145.242-.483 0-.644-.836-.531-1.64-1.642-1.64-3.122v-3.54c0-1.996-.548-2.575-2.302-2.575H4.123c-1.754 0-2.301.58-2.301 2.575v3.556c0 1.48-.805 2.59-1.641 3.122a.377.377 0 0 0 0 .643c.804.451 1.64 1.433 1.64 3.17v3.605c0 1.85.645 2.607 2.399 2.607zm-7.82-3.299c-1.883 0-3.25-.563-4.522-1.673a.9.9 0 0 1-.29-.676.83.83 0 0 1 .193-.563l.403-.515c.193-.242.402-.354.643-.354.274 0 .531.112.805.29a5.33 5.33 0 0 0 2.993.884c.885 0 1.593-.37 1.593-1.126 0-1.963-6.533-.885-6.533-5.294 0-2.366 1.93-3.685 4.441-3.685 1.77 0 3.074.515 4.04 1.126.24.161.402.483.402.805 0 .193-.049.37-.161.53l-.29.435c-.21.29-.45.435-.756.435-.21 0-.435-.08-.676-.193a5.1 5.1 0 0 0-2.398-.564c-.95 0-1.513.515-1.513 1.046 0 2.012 6.534.918 6.534 5.198 0 2.414-1.947 3.894-4.908 3.894"/></svg>�������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/statista.svg���������������������������������0000664�0000000�0000000�00000001102�14753064456�0025451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.86 0a.84.84 0 0 0-.84.84v15.217h.12s3.611-.068 5.143-.874a10.9 10.9 0 0 0 3.337-3.051l.903-1.275.286-.406c.034-.04.182-.257.267-.383s.458-.65.818-1.176a16.9 16.9 0 0 1 5.263-4.744c3.337-1.714 7.76-1.542 7.76-1.542h.068V.892a.84.84 0 0 0-.84-.892Zm23.12 7.949a1 1 0 0 1-.217.029s-3.606.068-5.154.88a10.9 10.9 0 0 0-3.339 3.045l-.885 1.28c-.131.183-.257.365-.29.405l-.27.383-.817 1.177s-2.177 3.144-5.263 4.744c-3.2 1.663-7.388 1.554-7.731 1.542v1.714a.84.84 0 0 0 .84.852H23.14a.84.84 0 0 0 .84-.84z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/statuspage.svg�������������������������������0000664�0000000�0000000�00000000520�14753064456�0026000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.008 9.597a5.623 5.623 0 1 1 0 11.245 5.623 5.623 0 0 1 0-11.245M.154 8.717l3.02 3.574a.64.64 0 0 0 .913.068c4.885-4.379 10.97-4.379 15.84 0a.64.64 0 0 0 .916-.068l3.006-3.574a.646.646 0 0 0-.075-.906c-7.1-6.204-16.462-6.204-23.555 0a.65.65 0 0 0-.065.906"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/statuspal.svg��������������������������������0000664�0000000�0000000�00000001401�14753064456�0025637�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.275 9.296c0-1.242-1.02-2.25-2.275-2.25-1.256 0-2.275 1.008-2.275 2.25 0 .936.58 1.737 1.403 2.077L5.934 24A12.06 12.06 0 0 1 12 22.349c2.085 0 4.17.55 6.066 1.65l-5.194-12.626a2.25 2.25 0 0 0 1.403-2.077m1.187 12.01A13.4 13.4 0 0 0 12 20.849a13.4 13.4 0 0 0-3.463.457L12 13.389zM16.55 13.5a5.58 5.58 0 0 0-.723-7.535 5.73 5.73 0 0 0-7.654 0A5.58 5.58 0 0 0 7.45 13.5a6.167 6.167 0 0 1 .143-8.716c2.446-2.379 6.368-2.379 8.813 0a6.167 6.167 0 0 1 .144 8.716m0 3c3.047-1.988 4.416-5.716 3.366-9.174C18.867 3.867 15.65 1.5 12 1.5S5.131 3.867 4.083 7.326s.32 7.186 3.367 9.174c-3.481-2.029-5.16-6.111-4.096-9.968C4.417 2.675 7.96 0 12 0c4.042 0 7.583 2.675 8.646 6.532s-.615 7.94-4.096 9.968"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/steam.svg������������������������������������0000664�0000000�0000000�00000001404�14753064456�0024733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.979 0C5.678 0 .511 4.86.022 11.037l6.432 2.658a3.4 3.4 0 0 1 1.912-.59q.094.001.188.006l2.861-4.142V8.91a4.53 4.53 0 0 1 4.524-4.524c2.494 0 4.524 2.031 4.524 4.527s-2.03 4.525-4.524 4.525h-.105l-4.076 2.911q.002.078.004.159a3.39 3.39 0 0 1-3.39 3.396 3.41 3.41 0 0 1-3.331-2.727L.436 15.27C1.862 20.307 6.486 24 11.979 24c6.627 0 11.999-5.373 11.999-12S18.605 0 11.979 0M7.54 18.21l-1.473-.61c.262.543.714.999 1.314 1.25a2.551 2.551 0 0 0 3.337-3.324 2.547 2.547 0 0 0-3.255-1.413l1.523.63a1.878 1.878 0 0 1-1.445 3.467zm11.415-9.303a3.02 3.02 0 0 0-3.015-3.015 3.015 3.015 0 1 0 3.015 3.015m-5.273-.005a2.264 2.264 0 1 1 4.531 0 2.267 2.267 0 0 1-2.266 2.265 2.264 2.264 0 0 1-2.265-2.265"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/steamdb.svg����������������������������������0000664�0000000�0000000�00000002712�14753064456�0025244�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.981 0C5.72 0 .581 2.231.02 5.081l6.675 1.257c.544-.17 1.162-.244 1.8-.244l3.131-1.875c-.037-.469.244-.956.881-1.35.9-.581 2.307-.9 3.732-.9a8.6 8.6 0 0 1 2.812.412c2.1.713 2.569 2.082 1.069 3.057-.956.618-2.494.937-4.013.9l-4.125 1.48c-.037.3-.243.582-.637.845-1.106.712-3.263.88-4.8.356-.675-.225-1.125-.563-1.313-.9L.47 7.2c.431.675 1.125 1.294 2.025 1.838C.938 9.938 0 11.062 0 12.28c0 1.2.9 2.307 2.419 3.206C.9 16.37 0 17.476 0 18.675 0 21.619 5.363 24 12 24c6.619 0 12-2.381 12-5.325 0-1.2-.9-2.306-2.419-3.188C23.1 14.588 24 13.482 24 12.282c0-1.219-.938-2.362-2.512-3.262 1.556-.956 2.493-2.138 2.493-3.413 0-3.093-5.381-5.606-12-5.606zm4.275 2.663c-.975.018-1.912.225-2.512.618-1.031.675-.713 1.594.712 2.082s3.394.337 4.425-.338c1.032-.675.713-1.594-.712-2.062a6.4 6.4 0 0 0-1.913-.282zm.057.318c1.387 0 2.493.525 2.493 1.163 0 .637-1.106 1.162-2.493 1.162-1.388 0-2.494-.525-2.494-1.162 0-.638 1.106-1.163 2.494-1.163M8.493 6.45c-.3.019-.58.038-.862.075l1.707.319a2.03.94 0 1 1-1.52 1.744l-1.668-.32c.188.17.45.32.806.45 1.2.413 2.888.282 3.75-.28s.6-1.35-.6-1.744c-.487-.169-1.068-.244-1.612-.244zm11.944 3.113v1.743c0 2.063-3.787 3.732-8.437 3.732-4.669 0-8.437-1.67-8.437-3.732V9.581c2.156.994 5.137 1.613 8.418 1.613 3.3 0 6.3-.619 8.475-1.631zm0 6.487v1.65c0 2.063-3.787 3.731-8.437 3.731-4.669 0-8.437-1.668-8.437-3.731v-1.65c2.175.956 5.137 1.538 8.437 1.538s6.281-.582 8.438-1.538z"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/steamdeck.svg��������������������������������0000664�0000000�0000000�00000000371�14753064456�0025564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.999 0v4.309c4.242 0 7.694 3.45 7.694 7.691s-3.452 7.691-7.694 7.691V24c6.617 0 12-5.383 12-12s-5.383-12-12-12m0 6.011c-3.313 0-6 2.687-5.998 6a5.999 5.999 0 1 0 5.998-6"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/steamworks.svg�������������������������������0000664�0000000�0000000�00000005646�14753064456�0026035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.928 9.49v2.071h-1.503v1.503h1.503v-1.5H24V9.49zm-5.915.498v1.075h1.075V9.988zm2.326 2.572a.6.6 0 0 0-.382.144.5.5 0 0 0-.155.383.44.44 0 0 0 .145.35.63.63 0 0 0 .33.14l.103.015.112.02a1 1 0 0 1 .163.037.4.4 0 0 1 .102.065.34.34 0 0 1 .1.268.35.35 0 0 1-.127.29.53.53 0 0 1-.347.105.7.7 0 0 1-.285-.05.75.75 0 0 1-.24-.175l-.098.102a.8.8 0 0 0 .27.193.9.9 0 0 0 .343.06.68.68 0 0 0 .455-.144.5.5 0 0 0 .175-.39.5.5 0 0 0-.043-.208.4.4 0 0 0-.12-.16.5.5 0 0 0-.13-.08.8.8 0 0 0-.2-.047l-.112-.02-.088-.013a1 1 0 0 1-.152-.045.5.5 0 0 1-.123-.072.32.32 0 0 1-.095-.25.38.38 0 0 1 .115-.287.44.44 0 0 1 .313-.105.6.6 0 0 1 .252.045.8.8 0 0 1 .195.132l.09-.092a.71.71 0 0 0-.53-.21zm-17.664.005a.67.67 0 0 0-.432.161.54.54 0 0 0-.175.42.52.52 0 0 0 .132.375.6.6 0 0 0 .359.157l.12.015.105.015a.28.28 0 0 1 .172.076.23.23 0 0 1 .05.155q0 .238-.327.237a.8.8 0 0 1-.251-.037.5.5 0 0 1-.195-.123l-.233.24a.76.76 0 0 0 .295.195 1.2 1.2 0 0 0 .38.058.76.76 0 0 0 .492-.156.53.53 0 0 0 .193-.431.54.54 0 0 0-.143-.405.5.5 0 0 0-.145-.093 1 1 0 0 0-.21-.052l-.107-.015-.113-.015a.3.3 0 0 1-.167-.078.2.2 0 0 1-.058-.135.22.22 0 0 1 .075-.172.3.3 0 0 1 .213-.068.8.8 0 0 1 .205.027.4.4 0 0 1 .172.105l.228-.232a.7.7 0 0 0-.26-.17 1 1 0 0 0-.338-.053H.675zm12.091.003a.6.6 0 0 0-.238.05.65.65 0 0 0-.21.146.5.5 0 0 0-.097.134.6.6 0 0 0-.05.153 1.4 1.4 0 0 0-.02.19 8 8 0 0 0 0 .595 1.3 1.3 0 0 0 .02.19.6.6 0 0 0 .05.152.5.5 0 0 0 .097.135.65.65 0 0 0 .21.145.7.7 0 0 0 .251.05.6.6 0 0 0 .251-.05.65.65 0 0 0 .21-.145.5.5 0 0 0 .097-.135.6.6 0 0 0 .05-.152 1.4 1.4 0 0 0 .02-.19 8 8 0 0 0 0-.595 1.3 1.3 0 0 0-.02-.19.6.6 0 0 0-.05-.153.5.5 0 0 0-.097-.134.65.65 0 0 0-.21-.146.7.7 0 0 0-.25-.05zm-10.949.015v.333H2.3v1.575h.36v-1.575h.482v-.333zm1.878 0v1.908h1.218v-.33h-.855v-.464h.727v-.333h-.727v-.448h.855v-.333zm2.298 0-.673 1.908h.375l.113-.337h.655l.11.337h.377l-.675-1.908zm1.442 0v1.908h.36v-1.11l.355.722h.245l.352-.722v1.11h.36v-1.908h-.354l-.48 1.03-.483-1.03zm2.198 0 .46 1.908h.144l.437-1.66.435 1.66h.143l.46-1.908h-.147l-.39 1.658-.43-1.658H10.6l-.43 1.658-.39-1.658zm4.452 0v1.908h.14v-.882h.508l.44.882h.162l-.445-.882a.49.49 0 0 0 .428-.516.49.49 0 0 0-.148-.374.55.55 0 0 0-.382-.136zm1.93 0v1.908h.14v-.515l.44-.553.593 1.068v-.002h.167l-.667-1.177.57-.728h-.168l-.935 1.192v-1.192zm3.188.033v.19h.026v-.128l.045.093h.024l.042-.093v.128h.028v-.19h-.028l-.055.118-.055-.118zm-.165.002v.025h.052v.163h.028v-.163h.052v-.025zm-6.26.08a.5.5 0 0 1 .352.148.5.5 0 0 1 .077.107.5.5 0 0 1 .043.132 1 1 0 0 1 .018.175 8 8 0 0 1 0 .556 1 1 0 0 1-.018.175.5.5 0 0 1-.043.132.5.5 0 0 1-.077.107.49.49 0 0 1-.7 0 .5.5 0 0 1-.078-.107.6.6 0 0 1-.042-.132 1 1 0 0 1-.018-.175 8 8 0 0 1 0-.556 1 1 0 0 1 .018-.175.5.5 0 0 1 .042-.132.5.5 0 0 1 .078-.107.5.5 0 0 1 .349-.148zm2.007.015a.43.43 0 0 1 .28.098.35.35 0 0 1 .11.289.36.36 0 0 1-.113.286.43.43 0 0 1-.294.098h-.543v-.77h.545zm-8.643.433.228.692h-.46z"/></svg>������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/steelseries.svg������������������������������0000664�0000000�0000000�00000001354�14753064456�0026155�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.08 0a1.81 1.81 0 0 0-1.812 1.809V4.38c-4.02.744-7.195 3.912-7.94 7.92H1.812a1.808 1.808 0 1 0 0 3.615h2.516A9.926 9.926 0 0 0 14.08 24C19.55 24 24 19.561 24 14.107c0-4.836-3.5-8.875-8.107-9.726V1.809c0-1-.812-1.809-1.813-1.809M4.693 3.176a1.812 1.812 0 1 0 0 3.623A1.817 1.817 0 0 0 6.51 4.986c0-1-.816-1.81-1.817-1.81m9.387 4.656c3.468 0 6.293 2.814 6.293 6.275 0 3.46-2.825 6.278-6.293 6.278-3.47 0-6.293-2.818-6.293-6.278 0-3.461 2.824-6.275 6.293-6.275m-.017 2.404c-2.147 0-3.893 1.74-3.893 3.881S11.916 18 14.063 18a3.89 3.89 0 0 0 3.892-3.883 3.89 3.89 0 0 0-3.892-3.88m0 2.717a1.165 1.165 0 1 1 0 2.332c-.645 0-1.17-.525-1.17-1.168 0-.644.525-1.164 1.17-1.164"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/steem.svg������������������������������������0000664�0000000�0000000�00000002645�14753064456�0024747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.683 16.148-.114.114q-.354.355-.748.666l-.298.235a.11.11 0 0 1-.176-.11l.12-.53a3.3 3.3 0 0 0-.084-1.746l-.064-.195a7 7 0 0 0-.257-.671l-1.387-3.27-.149-.445a2 2 0 0 1-.093-.425l-.025-.223a2.07 2.07 0 0 1 .59-1.696l.115-.114a8 8 0 0 1 .747-.666l.299-.235a.11.11 0 0 1 .126-.007c.04.025.06.071.049.117l-.119.53a3.3 3.3 0 0 0 .083 1.746l.064.195q.111.342.257.671l1.387 3.27.15.445q.068.207.093.425l.025.223a2.07 2.07 0 0 1-.591 1.696m-3.997 1.073-.146.147q-.446.447-.941.838l-.39.307a.12.12 0 0 1-.192-.12l.154-.687a4.17 4.17 0 0 0-.105-2.205l-.08-.248a9 9 0 0 0-.325-.848L9.91 10.28l-.188-.56a2.6 2.6 0 0 1-.117-.532l-.032-.285a2.59 2.59 0 0 1 .74-2.124l.146-.147q.446-.447.941-.838l.39-.307a.12.12 0 0 1 .138-.007.12.12 0 0 1 .054.127l-.154.687a4.17 4.17 0 0 0 .105 2.205l.08.248q.142.432.325.848l1.75 4.125.188.56q.086.26.117.532l.032.285a2.59 2.59 0 0 1-.74 2.124zM9 16.148l-.114.114a8 8 0 0 1-.747.666l-.299.235a.11.11 0 0 1-.175-.11l.12-.53a3.3 3.3 0 0 0-.084-1.746l-.064-.195a7 7 0 0 0-.257-.671l-1.387-3.27-.15-.445a2 2 0 0 1-.093-.425l-.025-.223a2.07 2.07 0 0 1 .591-1.696l.114-.114a8 8 0 0 1 .748-.666l.298-.235a.11.11 0 0 1 .127-.007.11.11 0 0 1 .049.117l-.12.53a3.3 3.3 0 0 0 .084 1.746l.064.195q.111.342.257.671l1.387 3.27.149.445q.069.207.093.425l.025.223a2.07 2.07 0 0 1-.59 1.696zM12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0"/></svg>�������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/steemit.svg����������������������������������0000664�0000000�0000000�00000001273�14753064456�0025300�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.982 7.246c-1-1-2.163-1.73-3.4-2.202.721-2.12 3.277-2.892 3.277-2.892S14.895-.944 8.31.29C6.114.64 4.008 1.988 2.468 3.768a9.15 9.15 0 0 0 .991 12.984c.598.512 1.934 1.308 1.958 1.349-.876 2.226-3.678 2.835-3.678 2.835s3.703 2.316 8.676 2.917c1.319.163 2.72.204 4.17.05 2.302-.188 4.596-1.406 6.34-3.12a9.525 9.525 0 0 0 .058-13.538zm-1.704 12.058c-1.41 1.382-3.515 2.26-5.137 2.381-1.147.114-2.376.13-3.555-.016-1.737-.212-2.99-.69-4.22-1.154.623-.601 1.246-1.43 1.5-2.145a1.65 1.65 0 0 0-.05-1.308 6.995 6.995 0 0 1 1.426-8.077 7.2 7.2 0 0 1 5.931-1.99 7.14 7.14 0 0 1 4.228 2.047c2.785 2.795 2.687 7.524-.123 10.262"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/steinberg.svg��������������������������������0000664�0000000�0000000�00000000513�14753064456�0025604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.48 12.63c.643-.372.643-1.01 0-1.38l-4.769-2.755c-.642-.37-1.195-.052-1.195.69v5.508c0 .742.553 1.06 1.195.69zM12 2.724a9.275 9.275 0 1 1-.001 18.55 9.275 9.275 0 0 1 0-18.55M12 0C5.384 0 .002 5.383.002 12s5.382 12 12 12S24 18.617 24 12 18.617 0 12 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/stellar.svg����������������������������������0000664�0000000�0000000�00000001161�14753064456�0025270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.283 1.851A10.154 10.154 0 0 0 1.846 12.002q0 .388.03.773A1.85 1.85 0 0 1 .872 14.56L0 15.005v2.074l2.568-1.309.832-.424.82-.417 14.71-7.496 1.653-.842L24 4.85V2.776l-3.387 1.728-2.89 1.473-13.955 7.108a8 8 0 0 1-.07-1.086 8.313 8.313 0 0 1 12.366-7.247l1.654-.843.247-.126a10.15 10.15 0 0 0-5.682-1.932M24 6.925 5.055 16.571l-1.653.844L0 19.15v2.072L3.378 19.5l2.89-1.473 13.97-7.117a8.5 8.5 0 0 1 .07 1.092A8.313 8.313 0 0 1 7.93 19.248l-.101.054-1.793.914a10.154 10.154 0 0 0 16.119-8.214q0-.392-.03-.78a1.85 1.85 0 0 1 1.003-1.785L24 8.992Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/stencil.svg����������������������������������0000664�0000000�0000000�00000000252�14753064456�0025263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.85 15.66h9.25l-5 5.34H3.9ZM24 9.328H4.997L0 14.672h19.003ZM10.884 3H20.1l-4.977 5.34H5.9Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/stencyl.svg����������������������������������0000664�0000000�0000000�00000001230�14753064456�0025300�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.36 2.675a9.8 9.8 0 0 0-2.783.759L9.389 1.622l.433 2.835a8.3 8.3 0 0 0-1.935 2.038L4.982 6l1.951 2.352a10 10 0 0 0-.589 2.548L3.374 12l2.952 1.099c.083.883.258 1.763.565 2.597l-1.894 2.283 2.819-.426a8 8 0 0 0 2.025 2.08l-.47 2.751 2.247-1.806c.864.333 1.78.523 2.705.597L15.372 24l1.059-2.846c1.418-.144 2.841-.46 4.103-1.144-.229-1.019-.468-2.035-.692-3.055-2.042 1.044-4.605 1.442-6.736.403-1.763-.896-2.773-2.842-2.911-4.785-.152-2.15.502-4.51 2.314-5.801 1.724-1.192 4.024-1.208 5.964-.586.428.149.836.353 1.224.603q.459-1.578.93-3.154c-1.32-.674-2.811-.98-4.291-1.044L15.372 0z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/stimulus.svg���������������������������������0000664�0000000�0000000�00000001357�14753064456�0025516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.704 0A.704.704 0 0 0 0 .704v2.824h5.648a3.1 3.1 0 0 1 1.312.36l3.232 1.9a.4.4 0 0 1 0 .712l-1.536.904a1.31 1.31 0 0 1-1.2 0l-1.2-.7a3.1 3.1 0 0 0-1.316-.36H0v4.236h4.94a3 3 0 0 0 1.316-.36l10.8-6.344a3 3 0 0 1 1.312-.36H24V.692A.704.704 0 0 0 23.296 0zM19.06 6.352a3.1 3.1 0 0 0-1.316.36l-10.8 6.348a3.1 3.1 0 0 1-1.312.36H0v4.236h4.94a3.1 3.1 0 0 0 1.316-.36l10.8-6.348a3.1 3.1 0 0 1 1.312-.36H24V6.352h-3.376zm0 7.072a3.1 3.1 0 0 0-1.316.36l-10.8 6.344a3 3 0 0 1-1.312.36H0v2.824A.71.71 0 0 0 .704 24h22.592a.71.71 0 0 0 .704-.7v-2.824h-5.648a3 3 0 0 1-1.312-.36l-3.232-1.896a.4.4 0 0 1 0-.716l1.536-.9a1.31 1.31 0 0 1 1.2 0l1.2.696a3 3 0 0 0 1.316.36H24v-4.236h-3.376z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/stmicroelectronics.svg�����������������������0000664�0000000�0000000�00000001336�14753064456�0027541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.818 5.61H6.402a3.22 3.22 0 0 0-2.95 1.919L.014 15.811a.18.18 0 0 0 .168.25h7.864c.555 0 .802-.538.366-.968l-2.888-2.705C4.008 10.9 4.658 7.45 7.81 7.45h15.396a.18.18 0 0 0 .172-.121l.609-1.472a.2.2 0 0 0 .013-.07.18.18 0 0 0-.182-.177m-1.736 4.216h-2.956a.48.48 0 0 0-.445.292l-3.312 8a.2.2 0 0 0-.022.084.18.18 0 0 0 .182.179h1.103a3.22 3.22 0 0 0 2.98-1.963l2.632-6.355a.2.2 0 0 0 .013-.067.18.18 0 0 0-.175-.17m-5.811.179c0-.1-.082-.18-.182-.18H7.706c-.455 0-.853.555-.371 1l2.769 2.579s1.12 1.033.88 2.512c-.206 1.303-1.095 2.1-1.743 2.386a.045.045 0 0 0-.022.074.04.04 0 0 0 .042.012h3.228a.48.48 0 0 0 .445-.293l3.322-8.027a.14.14 0 0 0 .015-.063"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/stockx.svg�����������������������������������0000664�0000000�0000000�00000000233�14753064456�0025134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.74 16.5 22.5 24v-6l-7-6 7-6V0L10.26 10.5v-3L1.5 0v6l7 6-7 6v6l12.24-10.5Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/stopstalk.svg��������������������������������0000664�0000000�0000000�00000002463�14753064456�0025654�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m-.049 2.953H12a9.05 9.05 0 0 1 3.46.688L13.57 6.42l2.72.047 1.14-1.703A9.05 9.05 0 0 1 21.047 12 9.046 9.046 0 0 1 12 21.047a9 9 0 0 1-2.916-.483l1.937-2.828-2.72-.047-1.258 1.88A9.05 9.05 0 0 1 2.953 12a9.046 9.046 0 0 1 8.998-9.047m1.713 4.072a.55.55 0 0 0-.42.172c-.17.156-.266.248-.297.264-.653-.28-1.196-.42-1.662-.42-.653 0-1.213.219-1.664.639-.45.435-.684.994-.684 1.724 0 .638.204 1.26.577 1.866.388.606 1.024 1.429 1.957 2.455.373.42.7.808.965 1.166.264.342.404.638.404.902 0 .14-.063.264-.188.357a.76.76 0 0 1-.466.14c-.513 0-1.025-.483-1.538-1.462-.14-.28-.248-.45-.326-.527-.077-.078-.328-.11-.732-.11-.311 0-.465.063-.465.172q0 .024.092.42l.435 2.004c.016.14.048.217.11.248q.07.047.279.047c.358 0 .59-.077.684-.232.046-.078.11-.125.187-.125a.9.9 0 0 1 .358.109 3.2 3.2 0 0 0 1.212.248c.653 0 1.243-.217 1.772-.621.528-.42.809-1.01.809-1.787a3.44 3.44 0 0 0-.467-1.787c-.311-.529-.965-1.384-1.975-2.58-.87-1.026-1.305-1.711-1.305-2.069 0-.28.14-.42.436-.42.404 0 .87.405 1.383 1.213.248.389.42.606.498.653.093.062.279.078.574.078.264 0 .42 0 .482-.032.063-.03.094-.076.094-.154 0-.015-.016-.079-.031-.187l-.467-2.051c-.03-.14-.078-.22-.14-.266a10 10 0 0 0-.48-.047Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/storyblok.svg��������������������������������0000664�0000000�0000000�00000001501�14753064456�0025650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.953 11.462H9.088v2.34h4.748c.281 0 .538-.118.749-.305.187-.187.304-.468.304-.819a1.4 1.4 0 0 0-.257-.842c-.188-.234-.398-.374-.679-.374m.164-2.83c.21-.14.304-.445.304-.843 0-.35-.094-.608-.257-.771a.94.94 0 0 0-.608-.234H9.088v2.105h4.374c.234 0 .468-.117.655-.257M21.251 0H2.89c-.585 0-1.053.468-1.053 1.03v18.385c0 .562.468.912 1.03.912H5.58V24l3.368-3.65h12.304c.562 0 .913-.35.913-.935V1.053c0-.562-.351-1.03-.936-1.03zm-3.087 14.9a2.8 2.8 0 0 1-1.006 1.03c-.445.28-.936.538-1.497.655-.562.14-1.17.257-1.801.257H5.579v-13.1h9.403c.468 0 .866.094 1.24.305.351.187.679.444.936.748.524.64.806 1.443.795 2.27 0 .608-.164 1.192-.468 1.754a2.92 2.92 0 0 1-1.403 1.263c.748.21 1.333.585 1.778 1.123.42.561.631 1.286.631 2.199 0 .584-.117 1.076-.35 1.497z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/storybook.svg��������������������������������0000664�0000000�0000000�00000001161�14753064456�0025655�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.71.243-.12 2.71a.18.18 0 0 0 .29.15l1.06-.8.9.7a.18.18 0 0 0 .28-.14l-.1-2.76 1.33-.1a1.2 1.2 0 0 1 1.279 1.2v21.596a1.2 1.2 0 0 1-1.26 1.2l-16.096-.72a1.2 1.2 0 0 1-1.15-1.16l-.75-19.797a1.2 1.2 0 0 1 1.13-1.27L16.7.222zM13.64 9.3c0 .47 3.16.24 3.59-.08 0-3.2-1.72-4.89-4.859-4.89-3.15 0-4.899 1.72-4.899 4.29 0 4.45 5.999 4.53 5.999 6.959 0 .7-.32 1.1-1.05 1.1-.96 0-1.35-.49-1.3-2.16 0-.36-3.649-.48-3.769 0-.27 4.03 2.23 5.2 5.099 5.2 2.79 0 4.969-1.49 4.969-4.18 0-4.77-6.099-4.64-6.099-6.999 0-.97.72-1.1 1.13-1.1.45 0 1.25.07 1.19 1.87z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/strapi.svg�����������������������������������0000664�0000000�0000000�00000001023�14753064456�0025121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.32 0c-3.922 0-5.882 0-7.1 1.219C0 2.438 0 4.399 0 8.32v7.36c0 3.922 0 5.882 1.219 7.101S4.399 24 8.32 24h7.36c3.922 0 5.882 0 7.101-1.219S24 19.601 24 15.68V8.32c0-3.922 0-5.882-1.219-7.101S19.601 0 15.68 0zm.41 7.28h7.83a.16.16 0 0 1 .16.16v7.83h-3.87v-3.71a.41.41 0 0 0-.313-.398l-.086-.012h-3.72zm-.5.25v3.87H4.553a.08.08 0 0 1-.057-.136L8.23 7.529zm.25 4.12h3.87v3.87H8.64a.16.16 0 0 1-.16-.16zm4.12 4.12h3.87l-3.734 3.734a.08.08 0 0 1-.136-.057z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/strava.svg�����������������������������������0000664�0000000�0000000�00000000304�14753064456�0025120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.387 17.944-2.089-4.116h-3.065L15.387 24l5.15-10.172h-3.066m-7.008-5.599 2.836 5.598h4.172L10.463 0l-7 13.828h4.169"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/streamlabs.svg�������������������������������0000664�0000000�0000000�00000001611�14753064456�0025757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.688 1.346a1.4 1.4 0 0 0-.274.006 8.4 8.4 0 0 0-1.484.308A10.06 10.06 0 0 0 .32 8.27a8.5 8.5 0 0 0-.31 1.486 1.343 1.343 0 0 0 2.662.332 5.7 5.7 0 0 1 .21-1.02 7.37 7.37 0 0 1 4.845-4.847c.288-.09.615-.157 1.02-.207A1.34 1.34 0 0 0 9.91 2.516a1.34 1.34 0 0 0-1.223-1.17Zm4.049 5.223c-2.63 0-3.944 0-4.948.511a4.7 4.7 0 0 0-2.048 2.051c-.512 1.004-.512 2.318-.512 4.947v4.29c0 1.501-.001 2.254.29 2.828.258.504.669.914 1.173 1.171.574.292 1.326.291 2.828.291h6.97c2.628 0 3.945.002 4.948-.51a4.7 4.7 0 0 0 2.05-2.05C24 19.094 24 17.78 24 15.15v-1.073c0-2.629 0-3.943-.512-4.947a4.7 4.7 0 0 0-2.05-2.05c-1.003-.512-2.32-.512-4.948-.512zm.537 6.705c.74 0 1.34.6 1.34 1.34v2.683a1.342 1.342 0 0 1-2.682 0v-2.684c0-.74.602-1.34 1.342-1.34m5.363 0c.74 0 1.34.6 1.34 1.34v2.683a1.34 1.34 0 0 1-2.68 0v-2.684c0-.74.599-1.34 1.34-1.34"/></svg>�����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/streamlit.svg��������������������������������0000664�0000000�0000000�00000000506�14753064456�0025630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.673 11.32 6.862-3.618c.233-.136.554.12.442.387L20.463 17.1zm-8.556-.229 3.473-5.187c.203-.328.578-.316.793-.028l7.886 11.75zm-3.375 7.25c-.28 0-.835-.284-.993-.716l-3.72-9.46c-.118-.331.139-.614.48-.464l19.474 10.306c-.149.147-.453.337-.72.334z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/streamrunners.svg����������������������������0000664�0000000�0000000�00000000727�14753064456�0026541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.572 12.737a.854.854 0 0 0 0-1.48l-12.66-7.31c-.695-.4-1.51.292-1.225 1.043l.98 2.587c.106.28-.1.578-.4.578H7.55c-.658 0-1.275.32-1.656.857L3.632 12.21h8.553c.02 0 .034.02.027.04-.847 2.253-1.69 4.508-2.537 6.761-.282.75.532 1.44 1.227 1.04zM.001 17.052a.01.01 0 0 0 0 .006h8.297a.64.64 0 0 0 .612-.452l.656-2.134a.64.64 0 0 0-.613-.83l-6.805.018a.08.08 0 0 0-.067.036Q1.04 15.372 0 17.052Z"/></svg>�����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/stremio.svg����������������������������������0000664�0000000�0000000�00000000554�14753064456�0025311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a1.2 1.2 0 0 0-.85.354L.353 11.15c-.47.47-.47 1.227 0 1.697l10.797 10.8a1.2 1.2 0 0 0 1.7 0l10.797-10.8c.47-.47.47-1.226 0-1.696L12.85.354A1.2 1.2 0 0 0 12 0m-1.674 7.586h.002a.2.2 0 0 1 .129.04l5.729 4.214a.2.2 0 0 1 0 .323l-5.73 4.213a.2.2 0 0 1-.317-.16v-8.43a.2.2 0 0 1 .187-.2"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/stripe.svg�����������������������������������0000664�0000000�0000000�00000001047�14753064456�0025133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.976 9.15c-2.172-.806-3.356-1.426-3.356-2.409 0-.831.683-1.305 1.901-1.305 2.227 0 4.515.858 6.09 1.631l.89-5.494C18.252.975 15.697 0 12.165 0 9.667 0 7.589.654 6.104 1.872 4.56 3.147 3.757 4.992 3.757 7.218c0 4.039 2.467 5.76 6.476 7.219 2.585.92 3.445 1.574 3.445 2.583 0 .98-.84 1.545-2.354 1.545-1.875 0-4.965-.921-6.99-2.109l-.9 5.555C5.175 22.99 8.385 24 11.714 24c2.641 0 4.843-.624 6.328-1.813 1.664-1.305 2.525-3.236 2.525-5.732 0-4.128-2.524-5.851-6.594-7.305z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/strongswan.svg�������������������������������0000664�0000000�0000000�00000022061�14753064456�0026031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.803 5.24a3.16 3.16 0 0 0-1.647.5c-.245.185-.54.52-.518 1.165.022.32.031.294.112.58.232.433.458.622.826.94.06.047.079.06.133.099.275.258.553.556.79.823.207.256.432.54.604.825.229.392.263.369.546.928.287.645.398 1.392.226 2.068a4.6 4.6 0 0 1-.88 1.646l.347 1.137.303-1.115.463.003.298 1.114.34-1.112h.466l-.554 1.662c.3-.39.528-.74.763-1.197l.409.07c.036-.093.079-.155.145-.183.04-.018.063-.032.19-.032.1-.001.216.016.253.095.013.035.028.064.023.183a4 4 0 0 1-.436.104c-.302.059-.427.105-.521.192a.44.44 0 0 0-.152.355c0 .11.02.184.07.26.079.122.19.197.344.23.1.022.302.018.393-.008a.9.9 0 0 0 .27-.138l.07-.053.056.173h.482l-.015-.03a1 1 0 0 1-.075-.22c-.012-.054-.014-.132-.015-.548 0-.401-.003-.497-.014-.552-.022-.112-.04-.16-.102-.216a.46.46 0 0 0-.257-.14 1.7 1.7 0 0 0-.494-.025c-.216.018-.42.11-.49.22q0 .002-.002.003c.734-1.491 1.002-3.19.274-4.696-.42-.92-1.036-1.522-1.751-2.102.71.009 1.367.094 2.033.02.167-.012.3-.02.455-.056a.6.6 0 0 1 .318-.073c.335-.116.376-.214.379-.292-.021-.181-.335-.323-.487-.393l-.96.202c-.057-.04-.835-.292-.83-.595.003-.122.13-.138.16-.433l.001-.263-.058-.298c-.063-.082-.425-.313-.626-.421-.241-.12-.386-.19-.562-.235a3.2 3.2 0 0 0-1.096-.171m-6.332.657c-1.667-.01-3.283.509-4.457 1.83-.55.579-1.06 1.274-1.458 1.923.396.083.697.186 1.165.32.438.097.78.378 1.082.488l.09-.048c-1.001-.5-.685-.4-.284-.266.723.654 1.823.52 2.545 1.162l.243.14c.113-.04-.322-.275-.248-.282l.063.004c-.022-.001-.862-.533-.795-.53-.085-.145-.267-.225-.358-.308.227.073.587.375.732.428l.074-.063c.033-.029.005.135.141.165l.1-.165c.017-.026.087.146.131.157.03.008.004-.061.074-.111-.123-.079-.14-.075-.26-.138-.154-.029-.183-.042-.459-.238.29-.024.326.09.46.15.44.126.9.28 1.274.562l.033-.04c.017-.02.546.385.51.35l.065-.083c.012-.015.132.172.142.161l.06-.067c.252.226.276.377.528.551.16.075.54.373.79.528.505.45.711.64-.029.077-.166-.093-.617-.525-.528-.161.166.125.671.372.446.387.008.004.039.076.375.265.143.081.447.298.447.298l.014-.025.176.16c-.012-.012-.127-.013-.188-.022-.282-.22-.27-.194-.296-.193-.211.236.208.156.032.3.154.084.302.212.417.327.012.122.13.19.264.317s.285.315.389.41c.846-.389 1.315-.976 1.551-1.524.295-.756.245-1.02.086-1.586-.178-.557-.711-1.153-1.183-1.527-.25-.223-.495-.368-.878-.655-.69-.751-.954-1.401-1.019-1.966-.076-.516.06-.998.168-1.315-.7-.07-1.452-.15-2.065-.145zM5.556 9.65c-.08-.014-.157-.028-.229-.03a.34.34 0 0 0-.252.089c.13.015.26.03.398.074zm-.083.133-.08.126c.219.023.314.015.515.04.19.05.542.15.71.207.016.013.088-.033.05-.054-.39-.174-.815-.208-1.195-.319m-.08.126h-.169l.14.045zm-.028.045-.031.065c.216.031.986.29 1.045.297.043.005.063-.048.025-.065-.134-.052-.317-.096-.508-.154a6 6 0 0 0-.531-.143m-.031.065c-.21-.043-.326-.098-.578-.169-.258-.106-1.13-.252-.557.03.042.098-.506-.041-.341-.095-.06.002-.98-.273-.721-.092-.392-.14-.308-.129-.365.069-.2-.123-.331-.165-.466-.166-.08 0-.163.015-.262.037-.348-.063-.124-.019-.166.143.114.124.781.278.922.31.322.069 1.115.315 1.085.254-.282-.164.146.009.267.068.144.088.58.079.55.225a.35.35 0 0 1 .21.077c.123-.215.245-.432.422-.69zm-.528-.254c.067.07.14.053.232.078.066-.006.292-.018.336-.013-.017-.004-.23-.063-.568-.065m-.408.075c.095.002.427.224.194.138-.243-.065-.326-.128-.21-.135zm-2.675.011c-.034-.003-.056.08.119.104.054.008-.078-.093-.12-.104zm.22.07c-.03.021.03.068.363.128.274.05-.301-.129-.362-.128zm2.878.03c.04 0 .237.123.165.115-.236-.028-.255-.116-.165-.115m-2.507.19c.229.144.31.17.052.134.147.097.48.15.348.306.055.027.201-.006.224.047s.016.063-.101.13c-.08.05-.49-.063-.683-.09-.22-.057-.376-.06-.594-.09-.468-.046-.003.087-.672.046-.545-.032-.193.11-.244.122-.1.137-.284-.069-.313-.044-.044.057-.01.187-.287.006L0 10.862c.397-.01.522.146.597-.035.17.013.3.096.354.133s-.134.11-.016.095c.101-.112.172.067.24.057.044 0 .12-.082.17-.088.021.006.079.098.13.093.043-.004.129-.07.149-.057.389.066.488.097.556.176.252-.012.55.164.963.209.981.336-.904-.193-1.462-.16-.188.017-.872-.13-.538.058.288.127.482.255.624.159.048-.026.894.356.338.019.12.017.227-.01.326.045.303.163.47.058.565.134.277.156.474.111.698.135.126.022.411.06.476.104.114.023.067.014.212.038l.102-.267c-.671-.075-.693-.112-1.543-.368l.014-.056c.209.068.343.1.52.127l.012-.094c.09.022.47.105.489.091-.215-.094-.2-.044-.163-.114.11-.033.557.165.613.139.156-.005.123.003.162.007.154-.415.171-.38.276-.654a2 2 0 0 1-.245-.109c-.089.042.196.142-.306-.008-.147-.1-.125-.145-.153-.002-.054-.037-.089-.005-.339-.193-.351-.122-1.261-.338-1.507-.336zm2.274 1.301-.104.268c.212.02.167.005.303-.01s.471.118.621.191c.088.057.095.074.363.167.147.025.574.242.876.316.036-.01.363.114.526.15q.151.06.28.157c.147.061.207.087.38.11.164.071-.018.024.201.117.24.123.358.242.442.267.104-.053.34-.12.38-.13-.172-.04-.438-.242-.817-.388-.623-.15-1.137-.55-1.71-.804l-.419-.113c-.038.003-.043.021-.044.05.394.123.534.162.677.235.182.16.322.185.351.221-.325-.097-.295-.085-.59-.174-.237-.078-.274-.133-.58-.227-.158-.049-.356-.166-.536-.233a2.2 2.2 0 0 0-.6-.17m-.206.535C3.678 13.9 3.315 14.845 1.76 15.86c-.364.229-.778.4-1.21.427v2.467c1.51.002 3.019.001 4.528.006-.276-2.279 1.124-4.583 3.202-5.505-.38-.288-.39-.202-.451-.172-.248-.181-1.15-.677-1.16-.688-.1-.011-.36-.125-.398-.075-.025.055.13.072.187.084.225.041 1.242.664 1.32.792-.448.025-.81-.41-1.181-.505l.008-.118c-.236-.12-.415-.122-.481-.166-.08.146-1.016-.346-1.17-.341-.23.033-.213-.036-.572-.089m.938-1.331c-.017 0-.007.01.056.041.053.019.515.205.256.143-.168.117.425.013.244.116-.398-.111.547.306.308.07-.093-.147-.131-.088-.193-.12-.183-.093-.297-.127-.414-.178-.03-.009-.216-.07-.257-.072m-4.318.02c.13 0 .266.01.313.014.366-.045.425.12.107.088-.03-.002-.108-.073-.233.049-.074-.009-.126-.086-.212-.104.071.1.293.142-.131.088-.258-.114-.06-.137.156-.135m.741.033c.05-.002.111.017.128.077-.257-.015-.21-.074-.128-.077m8.753.28-.003.001c-.122.08.05.232.385.348-.099-.138-.042-.143-.195-.193.067.172-.15-.155-.187-.156m-5.734.12c-.23.14.486.301.387.255-.042-.173.399.174.217-.043-.26-.058-.11-.103-.203-.096-.158.066-.295-.098-.401-.115zm-2.067.017q.007 0 .016.005c.023.014.052.05.093.072.01.037-.029.04-.069.029s-.081-.033-.078-.045c.011-.047.023-.062.038-.062zm.845.09c.016 0 .048.025.095.102-.097-.004-.126-.1-.095-.101zm7.412.046c-.084.073.188.295.27.145-.136-.126.054.123-.27-.145m-3.99.003c-.277.065-.275.007.053.197.3.138-.003.095-.126.012.004.03.25.217.22.19.118.083.454.215.32.042.12-.15-.193-.162-.194-.184a.9.9 0 0 1-.28-.183c-.185.014.119-.06.007-.074m-.007.074h.004q-.006-.003-.004 0m.28.183q.043.012.055-.017c-.04.007-.055.013-.055.017m.28 2.852v.485h-.192v.242h.192l.008 1.018c.008.224.129.388.334.447.17.028.32.013.478-.028l-.004-.264a.7.7 0 0 1-.245.058c-.17-.01-.23-.035-.275-.203l-.005-1.03.53.002v-.242h-.527v-.485zm4.614.436a.7.7 0 0 0-.459.179l-.056.045v-.175h-.293v1.689h.293v-1.259l.064-.047a.9.9 0 0 1 .258-.136.6.6 0 0 1 .236 0c.06.017.11.058.138.113.047.092.05.125.054.754l.004.575h.292l-.003-.625c-.003-.606-.004-.628-.022-.7-.05-.205-.167-.34-.344-.393a.7.7 0 0 0-.162-.02m11.251.002a.75.75 0 0 0-.306.068.9.9 0 0 0-.228.168l-.034.039v-.237h-.444v1.715h.477l-.003-.893c-.01-.438.226-.504.398-.511.195.006.274.14.28.332q-.002.537.004 1.072H24l-.003-.65c-.003-.591-.005-.656-.018-.71a.46.46 0 0 0-.286-.337.8.8 0 0 0-.313-.056m-13.111 0a1 1 0 0 0-.198.02c-.3.082-.498.337-.54.699-.016.131-.006.355.02.468.04.173.1.284.214.399a.5.5 0 0 0 .147.114.8.8 0 0 0 .234.077c.08.013.265.004.345-.015a.68.68 0 0 0 .44-.35c.076-.15.097-.247.103-.475a1.1 1.1 0 0 0-.048-.432.694.694 0 0 0-.717-.505m3.394.001a.67.67 0 0 0-.477.196.7.7 0 0 0-.176.266c-.073.18-.093.425-.053.662.05.3.21.497.444.56a.85.85 0 0 0 .446-.02c.091-.04.154-.093.225-.148l-.002.135a1 1 0 0 1-.018.182c-.027.11-.072.184-.163.23a.54.54 0 0 1-.297.055c-.196-.004-.364-.073-.488-.116l-.004.307c.1.024.21.047.295.057.185.023.381.012.514-.03.256-.06.425-.299.448-.67v-1.62h-.266l-.014.07-.077-.042c-.156-.074-.264-.073-.337-.074m-7.03.003a.8.8 0 0 0-.213.025c-.193.057-.337.192-.38.357a.7.7 0 0 0-.013.137c0 .15.038.247.13.333.09.085.186.118.471.177.202.042.28.078.313.177.02.175.002.215-.107.283a.7.7 0 0 1-.242.042c-.15.014-.372-.071-.554-.218H6.02v.32q.166.084.355.128c.1.026.382.015.452-.008.149-.048.3-.15.358-.261a.45.45 0 0 0 .06-.254c-.001-.257-.122-.39-.418-.459l-.216-.05a.6.6 0 0 1-.23-.095c-.045-.041-.069-.136-.052-.206.015-.06.05-.098.108-.133.177-.108.498-.048.722.13h.023v-.308a1.3 1.3 0 0 0-.337-.105 2 2 0 0 0-.21-.012zm2.676.042a.68.68 0 0 0-.395.175l-.093.08.001-.253H8.54l.004 1.686.285.002-.004-1.199a.9.9 0 0 1 .251-.162c.148-.053.195-.04.363-.023v-.305zm.965.204q.077 0 .154.022c.14.044.237.162.283.343.025.1.032.37.013.482-.038.219-.14.361-.296.413a.45.45 0 0 1-.43-.08c-.113-.106-.163-.247-.171-.486-.01-.277.04-.463.155-.578a.42.42 0 0 1 .292-.116m3.42.008h.042a.8.8 0 0 1 .336.098v.918l-.05.035a.8.8 0 0 1-.24.11.6.6 0 0 1-.28 0c-.118-.038-.19-.122-.232-.276a1.3 1.3 0 0 1-.03-.335c.016-.214.066-.34.174-.442a.37.37 0 0 1 .28-.108m3.96.105c-1.014.897-1.887 1.096-2.407 1.228.247.696.34 1.51.289 2.245 1.596-.265 3.04-.904 4.076-2.083l-.43-.001-.31-1.098-.299 1.098-.46.001zm3.78.58c.007.002.007.028.004.129-.005.156-.019.204-.078.27a.46.46 0 0 1-.2.114c-.111.028-.212.005-.283-.065-.112-.112-.073-.274.079-.33.045-.017.08-.026.329-.083z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/stryker.svg����������������������������������0000664�0000000�0000000�00000002365�14753064456�0025334�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.852 0C5.34.08.079 5.341 0 11.852h1.857v.296H0C.08 18.66 5.34 23.921 11.852 24v-1.857h.296V24C18.66 23.92 23.921 18.66 24 12.148h-1.857v-.296H24C23.92 5.34 18.66.079 12.148 0v1.857h-.296Zm.505 2.83c1.44 0 2.561.31 3.373.894q1.22.874 1.88 2.371l.234.53-2.73.957-.191-.472c-.222-.545-.52-.973-.909-1.27-.384-.29-.924-.418-1.612-.418-.73 0-1.332.162-1.8.505-.425.313-.61.817-.61 1.49q-.002.5.13.883c.081.23.22.437.408.62q.334.323.881.614.596.32 1.481.65a18 18 0 0 1 1.756.784 6.4 6.4 0 0 1 1.545 1.106A4.9 4.9 0 0 1 17.28 13.7c.26.624.399 1.382.399 2.277a4.9 4.9 0 0 1-.427 2.013 5.1 5.1 0 0 1-1.183 1.657 5.6 5.6 0 0 1-1.792 1.108 6.2 6.2 0 0 1-2.266.406q-1.248-.001-2.183-.316a5.6 5.6 0 0 1-1.638-.84 5 5 0 0 1-1.145-1.198 6 6 0 0 1-.692-1.362l-.177-.496 2.662-.998.18.517a4 4 0 0 0 .38.797q.217.359.556.63.348.28.844.453.513.178 1.238.177a3.7 3.7 0 0 0 .966-.132 2.3 2.3 0 0 0 .813-.403 2 2 0 0 0 .569-.728c.154-.32.224-.711.224-1.173 0-.505-.057-.925-.184-1.258a2.1 2.1 0 0 0-.554-.81q-.417-.385-1.09-.688a58 58 0 0 0-1.798-.774c-1.342-.548-2.325-1.22-2.962-1.997-.666-.814-1.007-1.814-1.007-3.009q0-.984.364-1.85a4.25 4.25 0 0 1 1.079-1.527 5.1 5.1 0 0 1 1.683-.992q.965-.353 2.22-.355z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/stubhub.svg����������������������������������0000664�0000000�0000000�00000004325�14753064456�0025303�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.78 6.566.21 8.148a.23.23 0 0 0-.21.227V8.4l.725 6.884v.004c.003.036.006.07.006.11 0 .123-.016.243-.048.347L.344 16.84c-.04.122.026.182.146.134l1.805-.75q.003 0 .006-.002h.003q.196-.075.418-.076h.036l20.04 1.29c.127 0 .23-.097.243-.222L24 6.784v-.02c0-.11-.09-.198-.2-.198zm-19.245 3.68h.053c.823 0 1.25.304 1.275.892v.045h-.516l-.006-.04c-.027-.26-.273-.386-.753-.386h-.045q-.719.011-.717.434v.08a.2.2 0 0 0 .07.136.5.5 0 0 0 .19.11l1.204.403-.007-.005.01.004a1 1 0 0 1 .46.306.8.8 0 0 1 .175.502v.117c0 .287-.14.54-.36.695-.235.18-.575.268-.997.268s-.75-.093-.99-.268v-.002a.86.86 0 0 1-.36-.7v-.07h.516v.05c0 .146.063.255.21.346s.358.137.628.137.49-.048.637-.136.22-.2.22-.346v-.072c0-.167-.098-.277-.3-.344L3.935 12a.93.93 0 0 1-.45-.28.7.7 0 0 1-.16-.444v-.084c0-.616.403-.935 1.21-.943zm8.292.08h.518v1.448h1.588v-1.447h.52v3.47h-.522v-1.52h-1.585v1.52h-.518v-3.47zm-6.495.007h.5v.945h.535v.51h-.535v.89q0 .312.168.487l-.002.004a.58.58 0 0 0 .334.17h.035v.485l-.047-.004h-.004a1.04 1.04 0 0 1-.68-.308c-.203-.21-.305-.492-.305-.834zm11.913 0h.5v1.12c.155-.157.367-.24.633-.24.755 0 1.14.395 1.142 1.175v.283c0 .342-.103.624-.305.835s-.486.316-.836.316-.628-.105-.83-.315-.306-.494-.306-.834v-2.337zm-8.084.002h.5v1.12q.235-.242.634-.243c.76 0 1.14.396 1.144 1.176v.283c0 .342-.105.624-.307.835s-.483.316-.833.316-.627-.105-.83-.315-.307-.494-.307-.834v-2.335zm-2.395.945h.492v1.367q.002.389.113.545c.07.095.204.146.387.146h.016c.185 0 .31-.047.385-.146s.115-.287.115-.545H9.27V11.28h.49v1.367c0 .417-.08.72-.23.902q-.22.26-.71.272h-.115q-.49-.011-.71-.273c-.156-.18-.23-.486-.23-.903V11.28zm8.077 0h.492v1.367q.001.389.115.545.107.144.384.146h.025q.27-.001.378-.146.114-.157.115-.545h-.004V11.28h.49v1.367c0 .417-.083.728-.23.902s-.384.264-.71.272h-.12q-.488-.011-.71-.273c-.155-.18-.228-.486-.228-.903V11.28zm-4.548.422c-.207 0-.37.05-.473.156s-.16.285-.16.53v.288c0 .208.062.366.17.486s.26.182.464.182c.203 0 .357-.056.47-.18s.17-.28.17-.488v-.283q-.001-.37-.163-.53c-.162-.16-.266-.16-.476-.16zm8.083 0c-.207 0-.37.05-.473.156s-.16.285-.16.53v.288c0 .208.06.366.166.486s.267.182.467.182.355-.06.47-.18.17-.285.17-.488v-.283q-.001-.37-.163-.53c-.162-.16-.267-.16-.477-.16z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/studio3t.svg���������������������������������0000664�0000000�0000000�00000002065�14753064456�0025404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.336 3.194c-3.37.044-8.92 1.972-11.414 7.826q-.24.577-.418 1.177A13 13 0 0 0 .1 14.094l-.004-.002c-.405 4.071.519 6.19 1.877 6.62.909.288 1.707-.099 2.646-.888 1.032-.867 1.436-1.523 1.32-2.426-.12-.932-1.126-1.61-2.037-1.853-1.318-.383-.787-1.228-.787-1.228s1.421 1.02 3.711.763c2.089-.234 2.486-.672 2.486-.672-.003-2.155 1.152-3.657 2.664-3.802-1.05.495-1.656 2.205-1.654 3.593l.006 3.674.521.002c1.533.002 2.839-1.54 2.836-3.281v-.72s1.146-.623 2.774-.805c.77-.087 1.372-.006 1.892.15a2.15 2.15 0 0 1-.514-1.318c-.007-.225.362-.324.444 0 .29 1.302 1.035 1.859 2.898 2.418a3.8 3.8 0 0 0 1.057.021c.807-.111 1.615-.558 1.744-1.508.12-.89-.323-1.498-.776-2.12l-.109-.153a5.3 5.3 0 0 1-.48-.77 7 7 0 0 1-.293-.763c-.107-.318-.213-.634-.375-.922-2.136-3.785-5.939-4.958-9.611-4.91m8.058 6.287h.027c.29 0 .525.254.526.566 0 .312-.233.565-.524.565-.29 0-.527-.255-.527-.567 0-.302.22-.55.498-.564m-6.035 4.728c.21 2.063-.963 2.934-.963 2.934 1.636-.098 3.485-1.592 3.392-3.51 0 0-.725-.105-2.429.576"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/styledcomponents.svg�������������������������0000664�0000000�0000000�00000004713�14753064456�0027242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.214 6.762-.075.391c-.116.741-.074.953.244 1.228l.307.254-.318 1.418c-.19.846-.423 1.555-.571 1.788-.127.201-.275.497-.307.656-.053.19-.233.381-.508.55-.243.138-.72.508-1.058.805-.27.243-.456.392-.557.456l-.33.261a1.4 1.4 0 0 0-.189.411c-.023.107-.01.178.024.23q.05.075.168.107a1 1 0 0 0 .282.023 3 3 0 0 0 .632-.112c.07-.019.125-.037.173-.053.074-.091.245-.263.548-.562.804-.793 1.111-1.227.794-1.11-.117.042-.064-.064.137-.276.424-.413.667-1.037 1.175-2.994.402-1.545.402-1.567.698-1.567.139 0 .532.024.532.024V6.762h-.902zm3.839 3.165c-.064 0-.17.096-.233.202-.116.19.021.306 1.767 1.396 1.037.657 1.873 1.217 1.852 1.26-.021.031-.868.582-1.883 1.217-1.842 1.142-1.852 1.153-1.683 1.386.212.275 0 .37 2.391-1.122L24 13.155v-.836l-1.937-1.196c-1.047-.656-1.957-1.185-2.01-1.196m-16.085.117c-.053 0-.963.54-2.01 1.185L0 12.425v.836l1.947 1.217c1.08.666 1.99 1.217 2.032 1.217s.127-.096.212-.212c.127-.201.02-.286-1.768-1.418C.72 12.996.54 12.848.71 12.732c.106-.074.91-.572 1.778-1.111 1.979-1.217 1.873-1.133 1.714-1.387-.063-.105-.17-.2-.233-.19zm8.684.023c-.292-.002-.92.443-2.8 1.978-.081.193-.088.326-.051.412q.037.087.129.13c.06.03.138.048.224.055.171.015.373-.012.536-.044l.11-.025a.4.4 0 0 1 .144-.118c.116-.064.603-.508 1.09-.984.857-.868 1.058-1.26.709-1.387a.2.2 0 0 0-.09-.017zm2.196.603c-.257.007-.72.305-1.513.938-.398.323-.65.497-.785.533l-.524.414c-.197.36-.226.583-.174.706a.25.25 0 0 0 .138.134.6.6 0 0 0 .24.045 2.2 2.2 0 0 0 .58-.085 4 4 0 0 0 .291-.092l.029-.012.053-.028c.1-.129.33-.372.618-.652.91-.878 1.375-1.502 1.28-1.735-.043-.113-.117-.17-.233-.166m-2.424 1.08c-.074.008-.24.136-.539.398-.432.382-.903.602-1.066.504l-.114.024c-.166.033-.373.06-.558.045a.7.7 0 0 1-.252-.063.34.34 0 0 1-.168-.17c-.037-.09-.037-.202.005-.345l-.65.534-1.471 1.217v1.973l4.82-3.797a.4.4 0 0 1 .016-.123c.037-.134.035-.202-.023-.196zm2.074.639c-.073 0-.195.103-.39.31-.265.283-.682.557-.903.613l-.034.018-.11.042q-.091.031-.228.068c-.18.049-.404.094-.604.089a.7.7 0 0 1-.275-.054.34.34 0 0 1-.184-.18c-.058-.139-.035-.334.092-.611L7.61 16.033v1.205h1.868l3.962-3.112q.154-.172.467-.465c.56-.519.687-.698.687-.963 0-.206-.023-.31-.096-.31zm.943 1.95-.339.338c-.19.18-.529.402-.761.497l-.046.02-.003.005-.01.01c-.009.007-.013.008-.02.011a3 3 0 0 1-.282.093 3 3 0 0 1-.65.115 1 1 0 0 1-.31-.027.36.36 0 0 1-.218-.144q-.074-.111-.035-.295a1 1 0 0 1 .095-.25l-3.197 2.526h4.252l.508-.582c.698-.814 1.016-1.396 1.016-1.894z"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/stylelint.svg��������������������������������0000664�0000000�0000000�00000002205�14753064456�0025651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.415.549 0 3.712 2.242 5.65.547 7.483l11.176 15.909h.114c-2.625-9.386-2.55-9.428-4.446-16.12l-.456.263c-.248.143-.451.026-.451-.26V4.084C5.98 2.321 5.586.958 5.47.549zm15.115 0c-.116.41-.51 1.772-1.014 3.535v3.191c0 .286-.203.403-.45.26l-.457-.264c-1.897 6.693-1.821 6.735-4.446 16.12-.017.07.06.09.114 0L23.453 7.484 21.757 5.65 24 3.712 20.585.549zm-11.496.75c-.118.007-.2.105-.2.271v5.127c0 .242.172.34.38.22l3.068-1.772a.34.34 0 0 1-.086-.222V3.287q.002-.101.056-.182L7.215 1.35a.33.33 0 0 0-.18-.051zm9.939 0a.33.33 0 0 0-.18.052l-3.038 1.753a.33.33 0 0 1 .057.183v1.636a.34.34 0 0 1-.088.223l3.068 1.77c.21.122.38.023.38-.218V1.57c0-.166-.08-.264-.199-.27zm-6.35 1.863c-.101 0-.183.056-.183.125v1.636c0 .069.082.125.183.125h2.761c.101 0 .184-.056.184-.125V3.287c0-.07-.083-.125-.184-.125zm1.294 3.642a.83.83 0 0 0-.83.83.83.83 0 0 0 .83.828.83.83 0 0 0 .829-.829.83.83 0 0 0-.83-.829zm-.01 4.93a.83.83 0 0 0-.82.829.83.83 0 0 0 .83.829.83.83 0 0 0 .828-.83.83.83 0 0 0-.829-.828zm.01 4.93a.83.83 0 0 0-.83.828.83.83 0 0 0 .83.83.83.83 0 0 0 .829-.83.83.83 0 0 0-.83-.829z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/styleshare.svg�������������������������������0000664�0000000�0000000�00000004310�14753064456�0026004�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.752 7.22a2.04 2.04 0 0 0-2.049 2.048c0 .455.146.89.414 1.241l2.628 3.662c.31.537.124 1.242-.414 1.572-.538.311-1.241.125-1.572-.414a1.154 1.154 0 0 1 .372-1.551l.042-.021c.206-.145.269-.414.124-.621a.47.47 0 0 0-.373-.207.4.4 0 0 0-.207.063l-.041.021c-.951.6-1.262 1.861-.662 2.813.601.953 1.862 1.264 2.813.662.952-.6 1.263-1.861.662-2.813-.041-.063-.082-.104-.104-.166l-2.627-3.683a1.1 1.1 0 0 1-.145-.58c0-.641.517-1.138 1.138-1.138s1.138.517 1.138 1.138c0 .394-.207.745-.538.973-.021 0-.021.021-.041.021-.207.145-.27.414-.124.621.082.124.228.186.372.207a.4.4 0 0 0 .207-.062l.041-.021c.952-.6 1.263-1.862.662-2.814a2.03 2.03 0 0 0-1.716-.951m0 8.091a.58.58 0 0 0 .579-.58.578.578 0 1 0-1.158 0c0 .332.268.58.579.58m0-6.622a.58.58 0 0 0-.579.58.578.578 0 1 0 1.158 0c-.02-.331-.268-.58-.579-.58M12 0C5.379 0 0 5.379 0 12s5.379 12 12 12 12-5.379 12-12S18.621 0 12 0M9.269 17.357a2.613 2.613 0 0 1-2.627-2.605 2.62 2.62 0 0 1 1.593-2.421L7.138 10.8c-.848-1.18-.579-2.814.579-3.642s2.814-.58 3.641.579c.828 1.159.58 2.814-.579 3.642a2.6 2.6 0 0 1-.517.29l1.138 1.615a2.6 2.6 0 0 1-.703 3.619 2.5 2.5 0 0 1-1.428.454m7.655-4.074c.808 1.199.497 2.813-.703 3.619s-2.814.498-3.621-.703a2.6 2.6 0 0 1 .704-3.621c.145-.104.289-.165.435-.248l-1.117-1.531a2.633 2.633 0 0 1 .579-3.662 2.634 2.634 0 0 1 3.662.58 2.635 2.635 0 0 1-.579 3.662 2.6 2.6 0 0 1-.518.29zM8.255 9.827a1.1 1.1 0 0 1-.145-.579c0-.641.517-1.138 1.138-1.138.642 0 1.138.517 1.138 1.138 0 .394-.207.766-.538.973l-.041.021c-.207.145-.269.414-.125.621.083.124.228.186.373.207a.4.4 0 0 0 .207-.062l.041-.021a2.055 2.055 0 0 0 .683-2.814 2.055 2.055 0 0 0-2.814-.684 2.07 2.07 0 0 0-.682 2.814c.042.063.083.125.124.166l2.627 3.663c.104.166.145.373.145.578 0 .643-.497 1.139-1.138 1.16a1.153 1.153 0 0 1-1.158-1.139c0-.393.207-.766.538-.973l.042-.02c.207-.146.269-.414.124-.621a.47.47 0 0 0-.373-.207.4.4 0 0 0-.207.063l-.042.021c-.952.599-1.262 1.863-.662 2.814s1.862 1.262 2.814.662c.6-.373.972-1.035.972-1.738 0-.455-.145-.889-.414-1.242zm1.014 5.484c.31 0 .579-.248.579-.58a.58.58 0 0 0-1.159 0c0 .332.249.58.58.58m0-6.622a.575.575 0 0 0-.58.559c0 .311.249.58.559.58s.58-.249.58-.559a.56.56 0 0 0-.559-.58"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/stylus.svg�����������������������������������0000664�0000000�0000000�00000005451�14753064456�0025173�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.671 8.861c-.445-.354-1.697.239-2.05 1.118-.446 1.116-1.105 2.746-1.752 3.46-.683.75-.751.17-.683-.262.158-1.02 1.153-3.381 1.696-4.047-.202-.3-1.52-.256-2.435 1.166-.342.536-1.122 2.325-1.99 3.734-.19.305-.427.092-.243-.621.207-.825.818-3.089 1.604-4.871 2.064-.409 4.254-.696 5.933-.702.226-.06.377-.263 0-.275-1.447-.049-3.62.122-5.652.38.391-.782.812-1.404 1.239-1.667-.464-.293-1.404-.177-1.94.617a11 11 0 0 0-.702 1.244c-1.49.232-2.765.494-3.412.739-.671.256-.598 1.068-.19.915.85-.317 1.996-.647 3.272-.94-.812 1.831-1.447 3.992-1.599 4.87-.379 2.137.946 2.124 1.593 1.282.702-.922 2.166-4.163 2.392-4.504.067-.116.16-.055.11.048-1.635 3.265-1.496 4.529-.17 4.248.597-.128 1.629-1.153 1.897-1.684.055-.128.171-.116.146-.061-1.037 2.692-2.355 4.87-3.24 5.554-.805.616-1.404-.72 1.446-2.637.422-.286.226-.677-.25-.543-1.47.232-5.681 1.568-7.53 2.85-.142.098-.27.177-.264.379.006.116.208.073.306.012 2.393-1.435 4.351-1.995 6.597-2.466.03.013.067.019.097.007.104-.025.098.03.031.073a4 4 0 0 1-.342.177c-1.513.591-2.429 1.897-2.105 2.563.275.574 1.758.366 2.46-.012 1.72-.934 2.971-2.765 3.826-5.292.745-2.24 1.685-4.778 1.904-4.852M3.7 16.094c.623-.745.696-1.514.214-2.942-.305-.903-.812-1.599-.44-2.16.397-.598 1.24-.019.538.78l.14.098c.842.098 1.257-1.056.628-1.386-1.66-.866-3.113.8-2.472 2.729.275.817.66 1.684.348 2.374-.268.592-.787.94-1.135.952-.726.037-.244-1.63.592-2.045.073-.036.177-.085.08-.207-1.032-.116-1.636.36-1.984 1.025-1.013 1.934 1.922 2.649 3.49.782zm19.974-2.064c-2.8-.366-8.842.122-11.509.831-.794.207-.574.628-.171.549.006 0 .177-.043.183-.043 2.191-.427 7.507-.8 10.607-.207.372.067 1.49-1.05.89-1.13m-9.22-.329c.78-.39 1.94-2.808 2.702-4.131.055-.098.153-.02.098.048-1.928 3.32-1.11 3.705-.348 3.656 1.02-.061 1.96-1.526 2.167-1.856.086-.128.135-.024.086.068-.05.152-.226.421-.391.787-.232.519.012.72.214.812.317.153 1.183.055 1.317-.476-.865-.018 1.209-4.108 1.423-4.358-.58-.336-1.477.031-1.886.836-.872 1.727-1.605 3.119-2.063 3.143-.89.049 1.026-3.85 1.337-3.973-.19-.275-1.404-.159-2.082.89-.244.38-1.732 3.016-2.099 3.45-.647.769-.696.11-.513-.66.061-.262.165-.598.3-.97.427-.964.885-1.27 1.166-1.581 1.885-2.093 2.966-3.79 2.538-4.455-.378-.592-1.642-.33-2.453.89-1.496 2.241-2.874 5.31-3.051 6.715-.171 1.403.847 1.506 1.537 1.165zm7.372-3.296c.238.586.598 1.166.384 1.679-.177.439-.41.623-.665.665-.36.06-.263-1.068.354-1.404.055-.03.134-.177.06-.262-.78-.043-1.22.33-1.458.824-.69 1.447 1.563 1.842 2.667.42.44-.567.458-1.128.036-2.147-.267-.647-.676-1.13-.42-1.557.275-.45.933-.061.44.544l.11.06c.64.037.902-.817.414-1.03-1.287-.55-2.49.835-1.922 2.208m-6.579-.811c.067-.153.11-.195.226-.452.67-1.477 1.514-3.033 2.093-3.759.36-.379.866.134-.049 1.538a14 14 0 0 1-1.812 2.264v.006c-.171.189-.324.348-.391.44-.049.06-.104.049-.067-.037"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/subaru.svg�����������������������������������0000664�0000000�0000000�00000002134�14753064456�0025124�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4.983c3.004 0 6.224.612 8.786 2.239C22.451 8.286 24 9.9 24 12.002c0 2.456-2.097 4.242-4.106 5.287-2.391 1.238-5.216 1.728-7.894 1.728-3.003 0-6.217-.605-8.78-2.238C1.556 15.714 0 14.101 0 12.003 0 9.536 2.092 7.757 4.106 6.71 6.504 5.474 9.323 4.983 12 4.983m-.025.746c-2.793 0-5.802.523-8.225 1.983-1.524.912-3.03 2.347-3.03 4.253 0 2.239 2.04 3.806 3.864 4.706 2.258 1.102 4.897 1.53 7.391 1.53 2.798 0 5.809-.523 8.232-1.983 1.517-.918 3.029-2.346 3.029-4.253 0-2.243-2.035-3.813-3.864-4.705-2.258-1.104-4.898-1.53-7.397-1.53zm-10.54 4.686 4.597-.784 1.384-3.003L8.794 9.63l4.596.784-4.596.792-1.378 3.01-1.384-3.01zm10.106 2.289 2.028-.356.605-1.359.606 1.359 2.028.356-2.028.35-.606 1.36-.605-1.36zm4.196-3.621 2.028-.35.605-1.365.606 1.364 2.028.35-2.028.357-.606 1.36-.606-1.36zM13.57 15.51l2.02-.35.607-1.365.612 1.365 2.027.35-2.027.357-.612 1.36-.606-1.36zm-6.23.491 2.028-.35.612-1.366.605 1.366 2.028.35-2.028.357-.605 1.359-.612-1.359zm10.196-3.353 2.022-.357.605-1.359.612 1.359 2.028.357-2.028.35-.612 1.357-.606-1.357Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sublimetext.svg������������������������������0000664�0000000�0000000�00000000732�14753064456�0026172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.953.004a.4.4 0 0 0-.18.017L3.225 5.585c-.175.055-.323.214-.402.398a.4.4 0 0 0-.06.22v5.726a.4.4 0 0 0 .06.22c.079.183.227.341.402.397l7.454 2.364-7.454 2.363c-.255.08-.463.374-.463.655v5.688c0 .282.208.444.463.363l17.55-5.565c.237-.075.426-.336.452-.6.003-.022.013-.04.013-.065V12.06c0-.281-.208-.575-.463-.656L13.4 9.065l7.375-2.339c.255-.08.462-.375.462-.656V.384c0-.211-.117-.355-.283-.38z"/></svg>��������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/substack.svg���������������������������������0000664�0000000�0000000�00000000260�14753064456�0025440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.539 8.242H1.46V5.406h21.08zM1.46 10.812V24L12 18.11 22.54 24V10.812zM22.54 0H1.46v2.836h21.08z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/subtitleedit.svg�����������������������������0000664�0000000�0000000�00000002450�14753064456�0026325�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.858.02C1.744.23.16 1.91.02 4.09c-.038.598-.02 15.896.02 16.156.3 1.996 1.752 3.455 3.7 3.719.418.057 16.38.04 16.674-.018 1.433-.28 2.614-1.164 3.156-2.363.2-.443.304-.776.377-1.208.047-.282.075-16.036.029-16.509A4.266 4.266 0 0 0 20.348.048C20.065.008 4.261-.02 3.858.02m7.237 6.15c.707.707 1.285 1.299 1.285 1.315 0 .024-.57.03-2.79.03-3.106 0-2.95-.008-3.286.16-1.145.58-1.175 2.2-.052 2.8.34.18.265.174 1.725.192 1.404.018 1.475.023 1.976.153 1.495.388 2.688 1.64 3.015 3.164a4.2 4.2 0 0 1-3.547 5.057c-.347.046-6.605.05-6.605.004 0-.016.573-.602 1.273-1.302L5.36 16.47l1.87-.01c2.07-.009 1.97-.002 2.326-.172a1.566 1.566 0 0 0 .421-2.532c-.431-.43-.571-.461-2.05-.462-1.802 0-2.364-.125-3.253-.721-3.078-2.066-2.152-6.837 1.475-7.597.38-.08.522-.086 2.11-.089l1.551-.003 1.284 1.285m10.067-1.256c0 .017-.578.608-1.284 1.315l-1.284 1.286h-4.427L12.87 6.216a68.614 68.608 0 0 1-1.296-1.315c0-.01 2.157-.018 4.793-.018 3.813 0 4.794.006 4.794.03m-2.562 7.06-.006 1.308h-4.449l-.033-.094c-.336-.942-.695-1.527-1.346-2.194a4 4 0 0 1-.292-.313c0-.01 1.38-.016 3.066-.016h3.066zm1.278 5.78a67.498 67.492 0 0 1 1.284 1.302c0 .01-1.955.018-4.344.018s-4.344-.008-4.344-.018.103-.12.228-.243a5.45 5.45 0 0 0 1.38-2.185l.053-.16h4.458l1.285 1.285"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/subversion.svg�������������������������������0000664�0000000�0000000�00000002411�14753064456�0026020�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 20.753v-6.306q-4.928 1.942-12.23 3.786Q4.968 19.95 0 20.708v.045zM0 14.078v5.133q5.608-.825 10.13-1.967 4.443-1.122 6.847-2.18 2.402-1.055 2.22-1.78-.16-.63-2.217-.645-1.054.015-2.904.15-1.855.136-4.61.426-4.274.457-7.1.694-1.344.113-2.366.17zm1.035 2.95q.09.001.16.07a.233.233 0 0 1-.256.382.2.2 0 0 1-.075-.05c-.023-.014-.04-.044-.05-.074 0-.015-.016-.045-.016-.09 0-.06.03-.12.075-.165s.105-.06.18-.06zm.81 0q.094.001.165.07a.23.23 0 0 1 .066.166q0 .098-.067.168a.27.27 0 0 1-.27.048.2.2 0 0 1-.076-.05c-.03-.014-.045-.044-.06-.074-.015-.015-.015-.045-.015-.09 0-.06.014-.12.06-.165s.104-.06.164-.06zm-.81-1.51q.09-.001.16.07.07.067.07.165 0 .097-.07.165c-.07.068-.1.07-.164.07a.23.23 0 0 1-.167-.07.23.23 0 0 1-.07-.165c0-.067.016-.123.06-.168s.106-.068.166-.068zm.81 0q.094-.001.165.07.067.067.066.165 0 .097-.067.165c-.06.045-.106.07-.18.07s-.12-.024-.166-.07a.24.24 0 0 1-.075-.165c0-.067.014-.123.06-.168s.104-.068.164-.068zM24 4.597V9.41q-2.452.15-6.138.534c-2.49.27-4.52.48-6.093.615-1.576.15-2.713.226-3.41.24-1.363.03-2.09-.15-2.195-.554-.105-.45.705-1.05 2.445-1.77 1.74-.735 4.05-1.47 6.9-2.19 2.505-.63 5.34-1.185 8.49-1.65zm-.855-1.35q-4.883.909-10.114 2.23Q4.865 7.541 0 9.573V3.248h23.146z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/suckless.svg���������������������������������0000664�0000000�0000000�00000000157�14753064456�0025462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 4h24v4H4v2h20v10H0v-4h20v-2H0z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sui.svg��������������������������������������0000664�0000000�0000000�00000001373�14753064456�0024427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.636 10.009a7.16 7.16 0 0 1 1.565 4.474 7.2 7.2 0 0 1-1.608 4.53l-.087.106-.023-.135a7 7 0 0 0-.07-.349c-.502-2.21-2.142-4.106-4.84-5.642-1.823-1.034-2.866-2.278-3.14-3.693-.177-.915-.046-1.834.209-2.62.254-.787.631-1.446.953-1.843l1.05-1.284a.46.46 0 0 1 .713 0l5.28 6.456zm1.66-1.283L12.26.123a.336.336 0 0 0-.52 0L4.704 8.726l-.023.029a9.33 9.33 0 0 0-2.07 5.872C2.612 19.803 6.816 24 12 24s9.388-4.197 9.388-9.373a9.32 9.32 0 0 0-2.07-5.871zM6.389 9.981l.63-.77.018.142q.023.17.055.34c.408 2.136 1.862 3.917 4.294 5.297 2.114 1.203 3.345 2.586 3.7 4.103a5.3 5.3 0 0 1 .109 1.801l-.004.034-.03.014A7.2 7.2 0 0 1 12 21.67c-3.976 0-7.2-3.218-7.2-7.188 0-1.705.594-3.27 1.587-4.503z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sumologic.svg��������������������������������0000664�0000000�0000000�00000003771�14753064456�0025634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.922 10.756v2.513h-.586v-.266c-.134.216-.379.341-.737.341-.595 0-.89-.308-.89-.799v-1.79h.64v1.62c0 .262.142.416.417.416.32 0 .516-.184.516-.52v-1.515zm4.161.757v1.756h-.64v-1.564c0-.3-.121-.483-.4-.483s-.441.208-.441.5v1.547h-.64v-1.564q0-.482-.4-.483c-.283 0-.441.208-.441.5v1.547H5.48v-2.513h.595v.279q.22-.363.716-.362c.32 0 .561.133.699.37.17-.245.424-.37.753-.37.536 0 .84.32.84.84m5.143 1.756h-.64V9.774h.64zm6.949 0h-.641v-2.513h.64zm-.654-2.892h.662v-.611h-.662zm3.055 2.035c-.263.279-.441.387-.683.387-.287 0-.49-.167-.582-.425v-.732c.095-.262.3-.428.59-.428.213 0 .383.074.654.328l.4-.395c-.321-.35-.633-.478-1.053-.478-.587 0-1.04.307-1.22.823v1.032c.175.516.62.82 1.203.82.453 0 .765-.15 1.115-.583zm-22.257-.69c-.175-.038-.3-.072-.37-.088-.088-.025-.154-.058-.188-.104v-.192c.059-.091.2-.15.396-.15.27 0 .457.063.753.296l.345-.416c-.35-.291-.649-.395-1.082-.395-.499 0-.844.204-.982.495v.632c.109.212.358.333.858.441q.266.064.37.084c.091.029.175.066.22.133v.22c-.062.1-.212.154-.407.154a1 1 0 0 1-.408-.079 1.9 1.9 0 0 1-.454-.295L0 12.87c.4.353.736.474 1.215.474.512 0 .874-.196 1.011-.508V12.2c-.116-.237-.395-.362-.907-.479zm9.445-1.053c-.578 0-1.032.312-1.215.81v1.058c.183.5.641.811 1.215.811s1.028-.312 1.211-.807v-1.065c-.187-.495-.64-.807-1.21-.807zm.591 1.71c-.1.266-.312.424-.595.424s-.495-.158-.6-.424v-.741c.1-.266.313-.429.6-.429s.491.163.59.429zm4.585-1.71c-.578 0-1.032.312-1.219.81v1.058c.187.5.641.811 1.22.811.578 0 1.027-.312 1.21-.807v-1.065c-.183-.495-.636-.807-1.21-.807zm.591 1.71c-.1.266-.312.424-.59.424a.62.62 0 0 1-.6-.424v-.741c.1-.266.312-.429.6-.429.286 0 .49.163.59.429zm2.85-1.623v.279q-.242-.363-.765-.362c-.475 0-.857.29-1.024.753v1.036c.163.462.545.749 1.024.749q.479-.001.732-.32v.2c0 .415-.241.61-.616.61-.278 0-.507-.082-.873-.299l-.313.462c.354.237.77.366 1.195.37.707 0 1.227-.378 1.227-1.086v-2.392zm-.079 1.527a.58.58 0 0 1-.545.387.57.57 0 0 1-.545-.387v-.687a.57.57 0 0 1 .545-.382.57.57 0 0 1 .545.382z"/></svg>�������mkdocs-material-9.6.4/material/templates/.icons/simple/suno.svg�������������������������������������0000664�0000000�0000000�00000000260�14753064456�0024605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 0C20.642 0 24 5.373 24 12h-9c0 6.627-3.358 12-7.5 12S0 18.627 0 12h9c0-6.627 3.358-12 7.5-12"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sunrise.svg����������������������������������0000664�0000000�0000000�00000000400�14753064456�0025305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.001 0A12 12 0 1 0 24 11.999 12.01 12.01 0 0 0 12.001 0m0 2.464a9.53 9.53 0 0 1 9.514 8.889 9.5 9.5 0 0 1-.863 4.649H3.35a9.53 9.53 0 0 1 .616-9.14 9.53 9.53 0 0 1 8.036-4.398"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/supabase.svg���������������������������������0000664�0000000�0000000�00000000415�14753064456�0025426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.9 1.036c-.015-.986-1.26-1.41-1.874-.637L.764 12.05C-.33 13.427.65 15.455 2.409 15.455h9.579l.113 7.51c.014.985 1.259 1.408 1.873.636l9.262-11.653c1.093-1.375.113-3.403-1.645-3.403h-9.642z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/supercrease.svg������������������������������0000664�0000000�0000000�00000007560�14753064456�0026154�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.13 5.553-.265.472s-.047.082-.082.15c-.045.014-4.562 1.305-5.752 1.651-.705.197-1.214.345-1.33.381-.115-.185-.38-.635-.38-.635l-1.087.324-1.224.358-.219.07s-.022.126-.059.299c-.08.439-.218 1.213-.242 1.305-.023.023-.149.22-.334.463-.173.254-.405.555-.601.843-.162.22-.312.415-.416.565L0 11.996s.058-.012.139-.035l1.017-.174c-.092.52-.279 1.525-.279 1.525l.209.29.601.83.417.566q.064 0 .128.012a68 68 0 0 1-.613 1.248.4.4 0 0 1-.037.092l1.041.888.717.612.37.312.116.092.322.055-.011.023 3.027.115s-.553-.645-.59-.681c.705.023 2.37.093 2.37.093l-1.4-1.617-.09-.115s-.418.197-.602.277c-.012-.011-.012-.035-.024-.058l-.057.037-.082-.21-.127-.368.198-.266.717.232.61.21.694.218 1.446-.195.242-.035s.323-.265.623-.508c.093-.08.186-.163.267-.232.255.462.866 1.604 1.004 1.859-.058.139-.423 1.098-.423 1.098l1.523.08.799.035 1.744.092-.3-.704 1.628.08-.592-1.398-.844-.531s-.172.037-.195.037v-.15c.011-.012.045-.036.069-.059l.126-.103s.07-1.317.094-1.963a2 2 0 0 0 .01-.233c.082.035.269.117.512.233 1.317.6 4.574 2.078 4.99 2.275l.265-.174 1.133-.717-.336-.174.163-.38.347-.832.924-2.252-.785.705s-1.318 1.131-1.688 1.443c-.011-.011-.127-.092-.127-.092l.67-1.605-.935.277c-.195.081-.497.197-.705.29 0-.024-.38-.843-.52-1.132v-.011c.347-.185 1.387-.766 1.387-.766l-.035-.068-.416-.809-.59-1.164-.324-.623s-.753.808-.971 1.039c-.093-.046-.335-.196-.67-.393-.15-.08-.311-.185-.484-.289-1.029-.6-2.439-1.42-3.075-1.8-.207-.116-.335-.198-.335-.198s.023.094.046.198l.092.46a2 2 0 0 1-.277.024c-.254.035-.542.057-.797.08-.208.023-.369.035-.473.047-.058-.093-.207-.346-.38-.635h-.005c-.229-.373-.472-.773-.472-.773Zm.05.633 3.558 5.86-1.113.507-.127.058-3.324 1.537-.98.45-.987-3.198 2.857-5.007zm-.239.252-1.949 3.42-.865 1.517-.01.016 1.024 3.316.572-.262.5-.226.182.341.05.094-1.076.893-1.539.207-2.1-.639-1.212-.37.12-.198-.722-.047 1.752-2.584-2.02-3.383zm3.016.375 4.031 2.36-2.093 2.253-.204.219-.615.584-.053-.258-1.02-4.961-.007-.035zm-.039.251.998 4.795.02.092-.092.111-2.916-4.802zm-10.719.868.328.552.795 1.33 1.25 2.1-1.763 2.598-.116.156-1.775-.08h-.025l-.045-.002-.516-.02-1.041-1.414.338-1.802.006-.028.504-2.793zm15.678.404.973 1.9-2.334 1.274-2.645 1.326-.088.043v-.004l-.236.121.154-.166.059-.062.015-.018 3.036-3.264.273-.293.035-.037zm-18.121 1.82-.205 1.125-.696.125zm17.742.914.79 1.686.097.367-.2.162-2.091-1.469.46-.236.602-.328zm-1.486.79 2.611 1.84.29.206.68.477.038.025.246.176.49.354-.797.476-5.588-2.543 2.03-1.012Zm-2.202.244-.437.548-.021.01.01.006-.425.533-.277-.574 1.15-.524Zm5.827.07-.69 1.648-.002.006-.691-.494.223-.18-.002-.004 1.101-.927zm-.305.146-.879.745-.088-.329-.006-.023zm-5.604.016-.005.176-.08.033-.116.045.202-.254Zm7.569.06-1.002 2.39-.58-.417.074-.092 1.465-1.826zm-7.438.141-.074.082-.103.111-.131-.062.25-.102zm-1.273.125.082.168.252.524.515-.649.188.09-.297.318.051.063.129-.069.19-.093-.114 2.299-.129.1v-.017l-1.119.938-.209.027v-.234l.197-.162.172-3.262zm-.176.08-.152 2.881-.016.3-.197.163-1.053.861-.201.04-1.242-2.313-.125-.234-.137-.255zm8.502.004-1.14 1.424-.202-.274zm-1.744.762.55.726-.072.086-.634-.443zm-16.307 1.07.639.041-.064.102-.008.013-.035.057-.563.947-.226.37-.053.085-.01.018-.023.037-.004.008-.014.021-.025.05-1.479-1.651 1.738.076zM2.8 14.67h.084l1.504 1.678-2.324-.174zm2.676.146 1.132.344-.265.438-.084.14-.801-.894zm-.06.102.75.84-1.196-.09zm9.96.652v.582l-.877.153zm-10.453.176 1.322.1.026.029.015-.025.06.004.307.902-.527.25-.338.16-.162-.174-.1.045-.914-.771.248-.418zm1.4.041.014.04-.023-.026.01-.014Zm9.535.363.63.39.322.759-1.538-.076-.037-.102-.69-.445-.044.008-.373.066v-.305l.09-.015-.008.008 1.244-.215v-.004zm-1.812.041v.573l-.889.154zM2.12 16.26l2.346.175.025.03.016-.027.043.003.318.907-.935.441-1.813-1.53Zm5.264.244.773.887-2.258-.088-.058-.073zm7.144.258.633.4.006.012.045.127h.008l.26.623-2.989-.145.272-.707.988-.174.373-.064zm-8.922.33.243.28.01.01.519.598-2.455-.093 1.015-.473.577-.28z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/supermicro.svg�������������������������������0000664�0000000�0000000�00000014421�14753064456�0026015�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.937 5.842q-.734-.011-1.494.03c-3.99.218-7.831 1.51-10.236 3.443-.469.379-1.18 1.133-1.453 1.543-.539.8-.754 1.444-.754 2.252 0 1.55 1.026 2.85 3.006 3.798 1.218.586 2.67.97 4.392 1.164 1.203.133 3.198.114 4.568-.046 3.963-.465 7.517-1.921 9.52-3.893.242-.242.77-.851.789-.914 0-.004.105.031.234.074.554.188 1.148-.078 1.398-.629.133-.28.121-.732-.023-1.025a1.15 1.15 0 0 0-.621-.57l-.188-.067v-.199c0-.855-.422-1.727-1.203-2.484-1.568-1.52-4.513-2.421-7.935-2.477m-.156.395c.638-.008 1.257.013 1.836.064 2.276.2 4.213.782 5.587 1.684.504.332 1.176 1.002 1.418 1.416.234.402.375.848.403 1.27l.02.331-.24.004a1.08 1.08 0 0 0-.823.41c-.196.25-.254.422-.25.778 0 .336.082.556.289.795l.129.144-.348.352c-.683.69-1.46 1.242-2.482 1.75-2.585 1.296-6.064 1.974-9.258 1.806-2.178-.113-3.916-.502-5.365-1.197-1.527-.73-2.478-1.723-2.72-2.82-.613-2.776 3.139-5.614 8.593-6.508a22 22 0 0 1 3.21-.28ZM23 7.784l-.01.002c-.03 0-.059 0-.088.01-.04.007-.079.026-.117.042a.44.44 0 0 0-.138.125c-.016.027-.035.052-.043.082a.4.4 0 0 0-.032.122.5.5 0 0 0 .016.152.44.44 0 0 0 .174.228.5.5 0 0 0 .187.067.46.46 0 0 0 .248-.047.4.4 0 0 0 .215-.281c.005-.035.013-.069.008-.104.001-.026-.006-.054-.01-.08a.44.44 0 0 0-.191-.26.5.5 0 0 0-.21-.058zm-.031.086h.06a.3.3 0 0 1 .112.033q.03.012.054.035c.023.02.048.041.063.068a.3.3 0 0 1 .037.075c.012.027.013.057.02.086-.002.031.004.064-.004.095-.003.033-.018.062-.032.092-.006.019-.019.034-.029.05a.3.3 0 0 1-.076.075c-.017.015-.04.02-.059.03-.022.006-.044.016-.068.017q-.008 0-.018.002c-.03 0-.061.004-.091-.002a.3.3 0 0 1-.154-.078.2.2 0 0 1-.044-.047c-.018-.02-.026-.045-.039-.068q-.011-.03-.017-.063c-.008-.027-.006-.056-.006-.084-.002-.039.01-.077.021-.113.014-.026.024-.054.043-.076.015-.024.039-.04.057-.059a.3.3 0 0 1 .066-.041c.023-.007.045-.018.069-.021a.1.1 0 0 1 .035-.006m.047.12-.055.003h-.053l-.02.004-.019.002-.015.002-.016.001v.415h.094v-.17l.037.002.035.002.012.003.013.002.012.012.004.008.004.007.002.01.002.008.011.038.006.014.006.014h.104l-.006-.012-.008-.035-.01-.037-.006-.022-.006-.02-.007-.015-.008-.013-.01-.012-.01-.01-.015-.008-.014-.01V8.17l.012-.006.013-.006.012-.006.012-.008.01-.01.007-.013.006-.014.002-.02v-.019l-.002-.013-.002-.014-.008-.014-.008-.013-.01-.012-.01-.01-.015-.006-.015-.008-.018-.004-.018-.005-.029-.002zm-.055.07h.053l.017.005.016.006.014.012.01.01.001.007.004.01v.021l-.006.014-.005.01-.01.006-.01.01-.018.003-.013.008-.04.002h-.04v-.121l.013-.002zM4.203 10.318q-.105.007-.104.054c0 .098-.058.102-.285.024a1.04 1.04 0 0 0-.703-.024.83.83 0 0 0-.574.825c0 .406.176.605.887 1.011.175.102.375.245.437.319.192.214.149.445-.094.547-.417.171-.863-.11-.94-.602-.024-.156-.032-.162-.157-.162h-.133v1.17h.133c.097 0 .137-.02.152-.074.02-.075.024-.075.262 0 .718.222 1.32-.048 1.445-.649.102-.48-.117-.775-.875-1.19-.57-.312-.73-.534-.52-.734a.44.44 0 0 1 .454-.117c.261.067.511.41.511.703 0 .055.032.07.137.07h.137V10.32h-.17zm15.046.584-.039.002c-.078 0-.12.023-.136.078-.024.074-.032.074-.149.012-.172-.086-.625-.106-.851-.032-.246.078-.551.364-.684.633-.086.176-.113.29-.125.555-.02.41.078.709.312.963.512.554 1.465.449 1.813-.2l.074-.144-.094-.074-.093-.078-.18.203c-.27.312-.524.379-.852.234-.32-.148-.48-.58-.398-1.088.086-.554.367-.812.797-.734.18.035.387.242.457.46.05.145.074.169.18.18l.125.012-.02-.246c-.061-.704-.058-.739-.137-.736m-8.394.033v.14c0 .137.002.141.135.141.113 0 .144.02.176.102.023.054.039.45.039.875s-.016.818-.04.873c-.03.082-.062.101-.175.101-.129 0-.135.008-.135.137v.137h1.17v-.133c0-.129-.008-.137-.145-.148l-.148-.012-.012-.403c-.004-.218.004-.396.02-.392.015 0 .203.244.414.545l.379.543h1.523v-.137c0-.125-.012-.137-.11-.137-.19 0-.202-.043-.202-.703l.004-.603.347.779c.465 1.046.43 1.042.863.059l.329-.74.011.552c.004.305 0 .578-.008.606-.011.027-.082.05-.16.05-.129 0-.136.008-.136.137v.137h2.224v-.137c0-.125-.008-.137-.117-.137-.074 0-.129-.027-.156-.074-.043-.082-.055-1.635-.016-1.79.02-.067.055-.087.156-.087.125 0 .133-.008.133-.136v-.137h-1.865l-.34.77c-.187.425-.355.786-.37.802-.017.016-.189-.322-.384-.76l-.355-.793-.395-.011-.39-.012v.14c0 .125.008.137.117.137.094 0 .129.024.156.102.024.054.04.45.04.875s-.016.818-.04.873c-.027.082-.062.101-.164.101a.6.6 0 0 1-.254-.078c-.117-.07-.414-.432-.57-.697-.063-.11-.063-.11.078-.203.195-.129.281-.258.309-.473a.64.64 0 0 0-.329-.648c-.18-.102-.203-.106-.894-.117zm8.55 0v.137c0 .132.008.14.149.152l.145.012v1.912l-.145.012c-.14.011-.148.02-.148.148v.133h1.169v-.133c0-.129-.007-.137-.144-.148l-.149-.012-.011-.41c-.012-.488-.04-.5.453.195l.344.488.378.012.38.012v-.133c0-.125-.012-.137-.149-.156-.172-.032-.293-.149-.594-.575-.187-.265-.199-.29-.136-.33.039-.02.128-.09.199-.148.324-.277.238-.844-.157-1.055-.144-.074-.23-.086-.87-.097zm-14.876.008v.136c0 .13.008.137.133.137.086 0 .14.024.156.063.012.035.024.383.024.777 0 .937.058 1.111.449 1.318.125.067.227.082.508.082.48 0 .677-.101.86-.445.063-.117.079-.252.095-.955l.02-.82.237-.012c.223-.012.243-.004.266.078.04.149.027 1.658-.016 1.764-.027.078-.062.101-.156.101-.11 0-.117.012-.117.137v.137h1.133v-.133c0-.129-.008-.137-.145-.149l-.148-.011-.012-.38-.012-.376.23.002c.403.004.638-.127.766-.443.168-.403-.066-.844-.519-.97-.078-.019-.602-.038-1.164-.038H6.092v.133c0 .128.007.136.148.148l.145.012.011.734c.012.86-.012.947-.281 1.08-.27.129-.543.082-.676-.11-.062-.093-.07-.193-.07-.903v-.801l.148-.012c.137-.012.145-.02.145-.148v-.133h-.566Zm4.295 0v.133c0 .128.008.136.148.148l.145.012.012.933c.011 1.008.011.998-.196.998-.097 0-.11.016-.11.137v.137h1.9l.12-.39.118-.391h-.13c-.1 0-.14.027-.21.136-.156.254-.243.293-.63.293h-.347v-.78h.293c.203 0 .3.017.309.048.011.027.027.096.039.154.02.09.047.11.14.11h.118v-.975h.12c.094 0 .118-.012.098-.063a2 2 0 0 1-.023-.351v-.29H9.78Zm7.173.275q.051 0 .135.006l.246.012v1.912h-.254c-.234 0-.253-.008-.277-.098-.043-.152-.039-1.623.004-1.736.026-.073.043-.095.146-.096m-6.353.03.352.015c.246.008.367.027.406.07a.5.5 0 0 1 .082.184c.023.117.02.129-.074.129-.078 0-.106.023-.125.105a1 1 0 0 1-.04.157c-.007.035-.105.05-.308.05h-.293v-.355zm2.213.011a.35.35 0 0 1 .148.043c.18.082.27.363.176.543-.05.094-.238.191-.37.191h-.099v-.367c0-.367.012-.402.145-.41m8.55 0a.35.35 0 0 1 .149.043c.113.05.215.215.215.344 0 .21-.2.39-.434.39-.066 0-.074-.035-.074-.367 0-.367.012-.402.144-.41m-12.599.035h.133c.102 0 .16.032.238.125.09.11.106.153.09.313-.023.242-.117.344-.312.344h-.149v-.391z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/superuser.svg��������������������������������0000664�0000000�0000000�00000001707�14753064456�0025665�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.523 0c-.223 0-.336.111-.336.28v23.439c0 .196.113.252.336.252h5.594c.224 0 .335-.084.307-.252v-1.483c0-.167-.14-.252-.363-.252H5.543c-.252 0-.363-.083-.363-.279V2.293c0-.196.112-.307.42-.307h2.488c.224 0 .336-.056.336-.252V.28c0-.196-.14-.28-.364-.28zm8.8.02c-.224 0-.364.083-.364.279v1.398c0 .196.112.28.336.28h.447c2.154 0 3.664 1.706 3.664 3.412v4.42c0 1.37.98 2.517 2.518 3.216.112.056.139.14.139.196s-.027.112-.14.14c-1.677.616-2.517 2.294-2.517 3.496v3.916c0 1.735-1.51 1.258-3.664 1.258h-.447c-.224 0-.336.084-.336.28v1.398c0 .196.14.28.363.28h.56c3.609 0 6.516.335 6.516-2.714v-4.082c0-1.426 1.008-2.295 2.49-2.714.672-.196.95-.307.923-.56v-1.173c0-.447-.308-.477-.868-.644-1.51-.532-2.515-1.342-2.515-2.74V5.64c0-3.05-2.937-5.621-6.545-5.621h-.56zm.183 8.396c-.336 0-.645.252-.645.588v1.342c0 .307.281.588.645.588h1.482c.336 0 .643-.253.643-.588V9.004c0-.308-.28-.588-.643-.588z"/></svg>���������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/surfshark.svg��������������������������������0000664�0000000�0000000�00000001364�14753064456�0025637�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.47 0C7.815.2 6.3 2.293 5.872 3.43c-1.615 4.866-3.127 14.325-3.33 15.662-.201 1.31-.228 2.119-.228 2.119 0 .328.026.705.102 1.059.454 1.286 1.792 2.37 4.768 1.287a192 192 0 0 0 9.533-4.44c1.387-.807 3.227-2.32 4.236-4.312.404-.807.682-1.716.733-2.65v-.452c-.026-2.295-.052-4.692-.204-7.013 0 0-.125-1.488-.2-2.017-.076-.53-.177-.733-.177-.733C20.626.906 19.693.38 18.71.126 18.23.026 17.7.024 17.095 0Zm4.692 4.44h.252c.277 0 .48.2.48.452V6.53c0 .252-.203.455-.48.455h-.252c-1.589 0-2.875 1.26-2.875 2.8v2.498c0 2.976-2.472 5.37-5.498 5.37h-.254c-.277 0-.478-.2-.478-.452v-1.64c0-.253.226-.454.478-.454h.254c1.589 0 2.875-1.262 2.875-2.8V9.81c0-2.977 2.472-5.373 5.498-5.373z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/surrealdb.svg��������������������������������0000664�0000000�0000000�00000001252�14753064456�0025606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 6.314 5.714 3.165v-1.27L12 5.054c-.85.47-4.957 2.74-5.714 3.157.703.39 8.085 4.467 12.572 6.946v1.264L12 20.209c-1.71-.943-5.15-2.844-6.858-3.79v-3.788L12 16.42l1.144-.632-9.146-5.05v6.316L12 21.472l8-4.42v-2.526L8.57 8.21Zm-8.002.632v2.528l11.428 6.316-3.428 1.896-5.714-3.165v1.27l5.714 3.156c.85-.47 4.957-2.74 5.714-3.157-.703-.39-8.083-4.467-12.57-6.948V7.578L12 3.789c1.707.945 5.148 2.846 6.858 3.789v3.789L12 7.577l-1.144.633L20 13.263V6.946l-8-4.42c-.791.438-7.416 4.1-8.002 4.42M12 0 1.713 5.685v12.63L12 24l10.287-5.682V5.685Zm9.14 17.683L12 22.736l-9.143-5.053V6.317L12 1.264l9.143 5.053z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/surveymonkey.svg�����������������������������0000664�0000000�0000000�00000001603�14753064456�0026403�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.163 13.184a2.9 2.9 0 0 0-.678.084 8.74 8.74 0 0 0-6.917-6.445 8 8 0 0 0-.441-.067c.026-.825.064-1.779 1.278-2.636l-.192-.484s-2.37.735-2.639 2.76c-.117-.551-1.22-1.24-1.767-1.371l-.272.438s.724.362.901 1.361a8.74 8.74 0 0 0-6.92 6.44 2.834 2.834 0 1 0-1.362 5.502 2.84 2.84 0 0 0 1.72-.114 8.7 8.7 0 0 0 .92 1.712l2.352-1.585c-.638-.807-1.02-1.988-1.087-3.173-.07-1.294.244-2.576 1.07-3.33 1.702-1.449 3.556-.788 4.713.6h.312c1.16-1.388 3.017-2.048 4.713-.6.825.754 1.14 2.038 1.07 3.33-.065 1.185-.448 2.366-1.087 3.173l2.353 1.585a8.7 8.7 0 0 0 .922-1.712 2.833 2.833 0 0 0 2.082-5.27 2.8 2.8 0 0 0-1.044-.198M2.786 16.848a.836.836 0 0 1 0-1.672.84.84 0 0 1 .469.144q.01.66.09 1.314c-.148.134-.374.233-.559.214m18.427 0a.84.84 0 0 1-.558-.215 13 13 0 0 0 .09-1.314.835.835 0 0 1 1.304.693c.007.457-.383.858-.836.836"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/suse.svg�������������������������������������0000664�0000000�0000000�00000003552�14753064456�0024607�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.67 10.227a.39.39 0 0 1-.43 0 .39.39 0 0 1-.061-.602.383.383 0 0 1 .551 0c.17.17.15.462-.06.602m-1.12.882a1.444 1.444 0 1 1 .658-2.81 1.444 1.444 0 0 1-.659 2.81m-5.012 4.374c.04.118.09.273.205.335q.01.005.02.008c.212.078.76.065.76.065h1.005c.086.001.842-.001.823-.085-.091-.405-.558-.477-.914-.688-.328-.196-.64-.418-.78-.799-.074-.197-.03-.65.096-.816a.65.65 0 0 1 .375-.231c.162-.035.33-.005.493.012.2.02.397.056.597.08a7.4 7.4 0 0 0 1.161.06 6.4 6.4 0 0 0 1.89-.326 4.3 4.3 0 0 0 1.2-.602c.41-.305.303-.276-.113-.234q-.747.075-1.497.03c-.465-.028-.925-.083-1.345-.299-.332-.171-.617-.342-.88-.608a.18.18 0 0 1 .009-.23c.07-.073.218-.031.263.007a3.25 3.25 0 0 0 1.85.733c.383.02.755.026 1.138.01.192-.009.48-.008.673-.01.099 0 .37.028.42-.077a.2.2 0 0 0 .012-.1c-.056-1.532-.17-3.26-1.772-3.993-1.197-.547-2.99-1.394-3.747-1.746a.27.27 0 0 0-.381.245c0 .511.026 1.247.026 1.916-.363-.37-.974-.603-1.44-.817a14 14 0 0 0-1.63-.621 17.5 17.5 0 0 0-3.44-.676 13.2 13.2 0 0 0-3.963.2C5.511 6.67 3.407 7.7 1.809 9.206c-.98.923-1.75 2.237-1.802 3.57-.074 1.886.454 2.9 1.426 3.944 1.549 1.664 4.883 1.897 6.234-.077.607-.888.74-2.093.298-3.075-.44-.98-1.455-1.69-2.53-1.726-.833-.028-1.722.396-2.041 1.167a1.68 1.68 0 0 0 .339 1.774c.173.179.407.325.663.267a.38.38 0 0 0 .3-.3c.033-.225-.164-.372-.286-.545a.84.84 0 0 1 .1-1.048c.232-.224.575-.29.897-.29.3 0 .608.055.867.206.364.214.606.607.69 1.021.25 1.24-.758 2.246-2.124 2.325-.698.041-1.41-.142-1.955-.581-1.381-1.111-1.72-3.383-.14-4.595 1.498-1.15 3.39-.854 4.505-.256.893.478 1.558 1.261 2.063 2.127.253.435.468.89.668 1.351.193.445.373.892.758 1.218.255.216.57.208.903.208h1.907c.259 0 .195-.173.084-.287-.253-.258-.616-.317-.952-.41-.769-.21-.69-1.228-.478-1.228.687 0 .709.02 1.31.013.87-.012 1.132-.063 1.811.189.364.134.712.489.94.813.12.171.218.337.274.502"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/suzuki.svg�����������������������������������0000664�0000000�0000000�00000000474�14753064456�0025162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.369 19.995C13.51 22.39 12 24 12 24L.105 15.705s5.003-3.715 9.186-.87l5.61 3.882.683-.453L.106 7.321s2.226-.65 6.524-3.315C10.49 1.609 12 0 12 0l11.895 8.296s-5.003 3.715-9.187.87L9.1 5.281l-.683.454L23.893 16.68s-2.224.649-6.524 3.315"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/svelte.svg�����������������������������������0000664�0000000�0000000�00000002473�14753064456�0025133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.354 21.125a4.44 4.44 0 0 1-4.765-1.767 4.1 4.1 0 0 1-.703-3.107 4 4 0 0 1 .134-.522l.105-.321.287.21a7.2 7.2 0 0 0 2.186 1.092l.208.063-.02.208a1.25 1.25 0 0 0 .226.83 1.34 1.34 0 0 0 1.435.533 1.2 1.2 0 0 0 .343-.15l5.59-3.562a1.16 1.16 0 0 0 .524-.778 1.24 1.24 0 0 0-.211-.937 1.34 1.34 0 0 0-1.435-.533 1.2 1.2 0 0 0-.343.15l-2.133 1.36a4 4 0 0 1-1.135.499 4.44 4.44 0 0 1-4.765-1.766 4.1 4.1 0 0 1-.702-3.108 3.86 3.86 0 0 1 1.742-2.582l5.589-3.563a4 4 0 0 1 1.135-.499 4.44 4.44 0 0 1 4.765 1.767 4.1 4.1 0 0 1 .703 3.107 4 4 0 0 1-.134.522l-.105.321-.286-.21a7.2 7.2 0 0 0-2.187-1.093l-.208-.063.02-.207a1.25 1.25 0 0 0-.226-.831 1.34 1.34 0 0 0-1.435-.532 1.2 1.2 0 0 0-.343.15L8.62 9.368a1.16 1.16 0 0 0-.524.778 1.24 1.24 0 0 0 .211.937 1.34 1.34 0 0 0 1.435.533 1.2 1.2 0 0 0 .344-.151l2.132-1.36a4 4 0 0 1 1.135-.498 4.44 4.44 0 0 1 4.765 1.766 4.1 4.1 0 0 1 .702 3.108 3.86 3.86 0 0 1-1.742 2.583l-5.589 3.562a4 4 0 0 1-1.135.499m10.358-17.95C18.484-.015 14.082-.96 10.9 1.068L5.31 4.63a6.41 6.41 0 0 0-2.896 4.295 6.75 6.75 0 0 0 .666 4.336 6.4 6.4 0 0 0-.96 2.396 6.83 6.83 0 0 0 1.168 5.167c2.229 3.19 6.63 4.135 9.812 2.108l5.59-3.562a6.4 6.4 0 0 0 2.896-4.295 6.76 6.76 0 0 0-.665-4.336 6.4 6.4 0 0 0 .958-2.396 6.83 6.83 0 0 0-1.167-5.168"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/svg.svg��������������������������������������0000664�0000000�0000000�00000002602�14753064456�0024422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c-1.497 0-2.749.965-3.248 2.17a3.45 3.45 0 0 0-.238 1.416 3.5 3.5 0 0 0-1.168-.834 3.5 3.5 0 0 0-1.463-.256 3.5 3.5 0 0 0-2.367 1.02c-1.06 1.058-1.263 2.625-.764 3.83.179.432.47.82.82 1.154a3.5 3.5 0 0 0-1.402.252C.965 9.251 0 10.502 0 12c0 1.497.965 2.749 2.17 3.248.437.181.924.25 1.414.236-.357.338-.65.732-.832 1.17-.499 1.205-.295 2.772.764 3.83 1.058 1.06 2.625 1.263 3.83.764.437-.181.83-.476 1.168-.832-.014.49.057.977.238 1.414C9.251 23.035 10.502 24 12 24c1.497 0 2.749-.965 3.248-2.17a3.45 3.45 0 0 0 .238-1.416c.338.356.73.653 1.168.834 1.205.499 2.772.295 3.83-.764 1.06-1.058 1.263-2.625.764-3.83a3.5 3.5 0 0 0-.834-1.168 3.45 3.45 0 0 0 1.416-.238C23.035 14.749 24 13.498 24 12c0-1.497-.965-2.749-2.17-3.248a3.5 3.5 0 0 0-1.414-.236c.357-.338.65-.732.832-1.17.499-1.205.295-2.772-.764-3.83a3.5 3.5 0 0 0-2.367-1.02 3.5 3.5 0 0 0-1.463.256c-.437.181-.83.475-1.168.832a3.45 3.45 0 0 0-.238-1.414C14.749.965 13.498 0 12 0m-.041 1.613a1.902 1.902 0 0 1 1.387 3.246v3.893L16.098 6A1.902 1.902 0 1 1 18 7.902l-2.752 2.752h3.893a1.902 1.902 0 1 1 0 2.692h-3.893L18 16.098A1.902 1.902 0 1 1 16.098 18l-2.752-2.752v3.893a1.902 1.902 0 1 1-2.692 0v-3.893L7.902 18A1.902 1.902 0 1 1 6 16.098l2.752-2.752H4.859a1.902 1.902 0 1 1 0-2.692h3.893L6 7.902A1.902 1.902 0 1 1 7.902 6l2.752 2.752V4.859a1.902 1.902 0 0 1 1.305-3.246"/></svg>������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/svgdotjs.svg���������������������������������0000664�0000000�0000000�00000001665�14753064456�0025476�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 12 12 0 0 12l12 12zm-18.569-.554 4.665-4.665c.335-.601.841-1.258 1.565-1.982a.48.48 0 0 1 .678 0 .48.48 0 0 1 0 .678c-1.254 1.254-1.786 2.24-1.836 3.093-.035.59.174 1.1.49 1.573.36.536.854 1.026 1.346 1.518 1.13 1.13 2.206 2.289 2.116 3.826a3.5 3.5 0 0 1-.149.808l4.002-4.002a.6.6 0 0 1-.073-.293.627.627 0 1 1 .627.627.6.6 0 0 1-.293-.073l-4.665 4.665c-.335.601-.841 1.258-1.565 1.982a.48.48 0 0 1-.678 0 .48.48 0 0 1 0-.678c1.254-1.254 1.786-2.24 1.836-3.093.035-.59-.174-1.1-.49-1.573-.36-.536-.854-1.026-1.346-1.518-1.13-1.13-2.206-2.289-2.116-3.826q.021-.384.149-.808l-4.002 4.002a.627.627 0 0 1-.554.92.627.627 0 0 1-.627-.627.627.627 0 0 1 .92-.554m-.293.296c.143 0 .258.115.258.258a.257.257 0 0 1-.258.258A.257.257 0 0 1 4.88 12c0-.143.115-.258.258-.258m13.724 0c.143 0 .258.115.258.258a.257.257 0 0 1-.258.258.257.257 0 0 1-.258-.258c0-.143.115-.258.258-.258"/></svg>���������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/svgo.svg�������������������������������������0000664�0000000�0000000�00000002574�14753064456�0024611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.969 9.57a10.4 10.4 0 0 0-1.242-2.85 24 24 0 0 0 1.172-1.8L19.072 2.1a24 24 0 0 0-1.85 1.21 10.3 10.3 0 0 0-2.76-1.138c-.12-.72-.267-1.448-.456-2.173H10c-.187.71-.327 1.42-.447 2.131A10.3 10.3 0 0 0 6.708 3.26 23 23 0 0 0 4.93 2.101L2.102 4.928c.341.582.707 1.138 1.087 1.68a10.3 10.3 0 0 0-1.32 2.988 25 25 0 0 0-1.868.403v4c.58.152 1.157.274 1.737.38a10.3 10.3 0 0 0 1.281 3.26c-.32.462-.629.937-.917 1.432l2.829 2.828a21 21 0 0 0 1.38-.88 10.3 10.3 0 0 0 3.341 1.391q.144.795.348 1.59h4c.142-.544.258-1.086.36-1.63a10.3 10.3 0 0 0 3.257-1.407c.472.326.96.642 1.457.936l2.827-2.828a25 25 0 0 0-1.004-1.56 10.3 10.3 0 0 0 1.2-3.11c.633-.11 1.268-.24 1.902-.405V10a24 24 0 0 0-2.03-.428m-2.915 5.19a7.6 7.6 0 0 1-4.052 4.398 7.54 7.54 0 0 1-5.99.08c-1.887-.79-3.454-2.382-4.175-4.34a7.55 7.55 0 0 1 .288-5.944 7.6 7.6 0 0 1 3.824-3.647 7.56 7.56 0 0 1 6.119.082 7.6 7.6 0 0 1 3.643 3.55 7.56 7.56 0 0 1 .343 5.82m-1.688-.142a1.52 1.52 0 1 1-2.838-.396l-1.2-.897a2.08 2.08 0 0 1-2.418.437l-.96 1.495a1.283 1.283 0 1 1-.405-.259l.96-1.496a2.07 2.07 0 0 1-.7-2.122l-2.063-.808a.96.96 0 0 1-.873.39.96.96 0 1 1 1.052-.858v.02l2.06.81a2.07 2.07 0 0 1 2.675-.943l.97-1.665a1.04 1.04 0 0 1-.281-1.048 1.035 1.035 0 1 1 .695 1.288l-.973 1.665c.846.633 1.082 1.8.548 2.712l1.2.892a1.5 1.5 0 0 1 .76-.404 1.52 1.52 0 0 1 1.792 1.187z"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/svgtrace.svg���������������������������������0000664�0000000�0000000�00000003365�14753064456�0025450�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.46 2.943a2.55 2.55 0 0 0-1.427.901 2.9 2.9 0 0 0-.463.975l-.054.243H3.58v-.546c0-.603-.025-.71-.194-.81-.086-.051-.242-.057-1.628-.057H.223l-.111.112L0 3.873v3.125l.096.107.096.108 1.537.008c1.683.009 1.641.013 1.775-.186.071-.105.075-.143.075-.665v-.553h3.956l-.377.19c-.833.424-1.498.888-2.097 1.468A6.9 6.9 0 0 0 3.615 9.44a9 9 0 0 0-.527 1.425c-.034.143-.053.173-.113.173-.122 0-.45.096-.624.184a1.89 1.89 0 0 0-.984 2.212 1.9 1.9 0 0 0 1.807 1.38c.33 0 .54-.05.862-.203a1.89 1.89 0 0 0 1.054-1.698c0-.307-.107-.697-.263-.96-.172-.29-.524-.613-.802-.737-.118-.053-.215-.114-.215-.137s.065-.241.146-.487c.724-2.202 2.401-3.69 5.14-4.56.208-.065.394-.125.414-.132.021-.007.074.1.123.25.273.829.92 1.42 1.794 1.64.382.097.945.077 1.33-.047.742-.24 1.368-.877 1.61-1.637l.069-.22.326.11a8.2 8.2 0 0 1 3.13 1.936 8.2 8.2 0 0 1 2.217 3.716l.079.28-.17.076c-.788.353-1.264 1.264-1.09 2.087a1.93 1.93 0 0 0 1.575 1.517 1.92 1.92 0 0 0 2.079-1.257 1.89 1.89 0 0 0-1.215-2.41 1.8 1.8 0 0 0-.347-.082c-.086 0-.094-.013-.15-.255-.34-1.44-1.233-3.001-2.365-4.129-.58-.577-1.468-1.248-2.029-1.531a1 1 0 0 1-.189-.111c0-.01.931-.016 2.069-.016h2.069v1.18l.095.108.096.107h3.157l.107-.107.107-.107.01-1.512c.01-1.66.01-1.664-.188-1.78-.086-.051-.242-.057-1.628-.057h-1.533l-.112.112-.112.112V5.06h-5.968l-.023-.149c-.061-.41-.304-.882-.633-1.231a2.5 2.5 0 0 0-1.264-.737c-.249-.059-.823-.06-1.076-.001m-.037 9.13c-.056.03-.14.15-.235.335-1.723 3.355-4.168 8.178-4.182 8.249-.043.218.18.455.397.42.057-.01.99-.42 2.072-.912s2.005-.908 2.05-.926c.072-.028.341.088 2.053.88 1.084.501 2.027.932 2.097.957.155.055.3.018.418-.108.181-.193.266-.003-2.034-4.578-1.497-2.977-2.134-4.212-2.205-4.277a.38.38 0 0 0-.431-.04"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/swagger.svg����������������������������������0000664�0000000�0000000�00000003325�14753064456�0025265�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.383 0 0 5.383 0 12s5.383 12 12 12c6.616 0 12-5.383 12-12S18.616 0 12 0m0 1.144c5.995 0 10.856 4.86 10.856 10.856S17.996 22.856 12 22.856 1.144 17.996 1.144 12 6.004 1.144 12 1.144M8.37 5.868a7 7 0 0 0-.423.005c-.983.056-1.573.517-1.735 1.472-.115.665-.096 1.348-.143 2.017q-.018.526-.115 1.038c-.134.609-.397.798-1.016.83a3 3 0 0 0-.244.042v1.463c1.126.055 1.278.452 1.37 1.629.033.429-.013.858.015 1.287.018.406.073.808.156 1.2.259 1.075 1.307 1.435 2.575 1.218v-1.283c-.203 0-.383.005-.558 0-.43-.013-.591-.12-.632-.535-.056-.535-.042-1.08-.075-1.62-.064-1.001-.175-1.988-1.153-2.625.503-.37.868-.812.983-1.398.083-.41.134-.821.166-1.237.028-.415-.023-.84.014-1.25.06-.665.102-.937.9-.91.12 0 .235-.017.369-.027v-1.31q-.239-.001-.454-.006m7.593.009a4.3 4.3 0 0 0-.813.06v1.274c.245 0 .434 0 .623.005.328.004.577.13.61.494.032.332.031.669.064 1.006.065.669.101 1.347.217 2.007.102.544.475.95.941 1.283-.817.549-1.057 1.333-1.098 2.215-.023.604-.037 1.213-.069 1.822-.028.554-.222.734-.78.748-.157.004-.31.018-.484.028v1.305c.327 0 .627.019.927 0 .932-.055 1.495-.507 1.68-1.412q.117-.748.138-1.504c.032-.461.028-.927.074-1.384.069-.715.397-1.01 1.112-1.057a1 1 0 0 0 .199-.046v-1.463c-.12-.014-.204-.027-.291-.032-.536-.023-.804-.203-.937-.71a5 5 0 0 1-.152-.993c-.037-.618-.033-1.241-.074-1.86-.08-1.192-.794-1.753-1.887-1.786m-6.89 5.28a.844.844 0 0 0-.083 1.684h.055a.83.83 0 0 0 .877-.78v-.046a.845.845 0 0 0-.83-.858zm2.911 0a.81.81 0 0 0-.834.78c0 .027 0 .05.004.078 0 .503.342.826.859.826.507 0 .826-.332.826-.853-.005-.503-.342-.836-.855-.831m2.963 0a.86.86 0 0 0-.876.835c0 .47.378.849.849.849h.009c.425.074.853-.337.881-.83.023-.457-.392-.854-.863-.854"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/swarm.svg������������������������������������0000664�0000000�0000000�00000002164�14753064456�0024757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.358 1.216c-1.82.023-4.234 2.581-2.57 6.704.018.034.08.17.091.204h.003c5.172-2.298 4.45-6.287 3.112-6.8a1.7 1.7 0 0 0-.636-.108M4.001 2.768c-1.867.027-3.392.81-3.874 2.06-.91 2.365 3.07 7.996 12.229 3.93l.004-.003a6 6 0 0 1-.16-.362C10.193 4.303 6.73 2.728 4 2.768zM15.51 9.432l-.138.034a7.1 7.1 0 0 0-2.153.951c-.949.624-1.786 1.549-2.147 2.641-.097.295-.17.618-.194.928a9.15 9.15 0 0 0 .77 4.451 9.16 9.16 0 0 0 2.681 3.46c.686.544 1.92.887 2.93.887.949 0 1.884-.282 2.725-.71.262-.133.841-.494.879-.52a3.85 3.85 0 0 1-1.378-.663c-1.447-1.107-2.594-2.595-3.409-4.423-.826-1.854-1.163-3.73-1.002-5.575a3.8 3.8 0 0 1 .436-1.46zm3.498.026c-.868 0-1.704.722-1.783 1.623-.132 1.503.166 3.033.824 4.51.648 1.453 1.567 2.683 2.749 3.586a1.73 1.73 0 0 0 1.06.346c.677 0 1.353-.36 1.621-1.002a6.74 6.74 0 0 0-.068-5.356 6.75 6.75 0 0 0-3.891-3.618 1.5 1.5 0 0 0-.512-.089m-10.05 5.498a29 29 0 0 0-2.175 4.098c-.023.054-.378.932-.483 1.205a.676.676 0 0 0 .384.86c.273.107 1.164.43 1.22.449a29 29 0 0 0 4.453 1.12 11.2 11.2 0 0 1-2.442-3.48 11.1 11.1 0 0 1-.958-4.252z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sway.svg�������������������������������������0000664�0000000�0000000�00000005433�14753064456�0024613�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.785.813a2 2 0 0 0-.17.012c-.753.076-1.484.31-2.209.52-.742.221-1.459.52-2.148.888-.52.275-1.234.763-1.537 1.272-.193.31-.181.766.117.976.07.059.17.1.264.123.87.21 2.342-.794 3.002-1.115.846-.415 1.729-.732 2.587-1.117.328-.146 1.4-.484 1.407-.963.02-.521-.849-.61-1.313-.596m6.51.615c-.796-.006-1.606.104-2.37.162-1.395.106-2.816.584-4.048 1.168-.146.076-.297.145-.443.233-.34.193-.648.403-.881.666-.783.925-.295 1.598.54 1.988.284.132.605.231.932.297.38.076.766.109 1.102.092.11-.006.224-.018.336-.025l.004.02c.11.379.45.671.83.794s.794.117 1.185.094a13 13 0 0 0 4.147-.975c.269-.105.52-.223.713-.433.175-.216.273-.52.144-.778-.157-.31-.548-.39-.886-.402a5 5 0 0 0-.684.027q.047-.03.094-.062c.438-.321 1.43-.906 1.675-1.338.328-.578-.36-1.184-.986-1.354a5.6 5.6 0 0 0-1.404-.173Zm-9.51 3.627q-.041 0-.084.002C9.73 5.12 8.353 6.164 8.025 6.8c-.455.9.782 1.449 1.524 1.186.765-.263 1.91-1.196 2.039-2.043.04-.274-.052-.596-.297-.754a.9.9 0 0 0-.506-.133Zm-3.933.928c-.597.009-1.518.884-1.793 1.139-.485.444-.469.834.326.834.66-.012 1.349-.45 1.74-.922.146-.181.275-.403.21-.613-.074-.294-.229-.42-.427-.436zm6.187.184c-.175.838-.77 1.52-1.504 2.076-1.185.9-2.55 1.535-3.847 2.265-2.001 1.138-4.058 2.834-4.596 5.126a5 5 0 0 0-.137 1.376c.023.307.273.46.514.46a.6.6 0 0 0 .176-.028.41.41 0 0 0 .28-.431 5 5 0 0 1 .005-.489 4.4 4.4 0 0 1 .297-1.332c.237-.604.6-1.146 1.044-1.636a8 8 0 0 1 .47-.473q.246-.23.513-.442a12 12 0 0 1 .545-.414c.372-.266.76-.514 1.148-.748.047.03.1.057.166.07 2.269.474 4.626.158 6.672-.84q-.14.005-.28.003a9 9 0 0 1-.456-.022 6 6 0 0 1-.453-.053 1.36 1.36 0 0 1-.592-.246 9.3 9.3 0 0 1-3.793.368l.426-.237c1.75-.955 3.85-2.145 4.308-4.086a5 5 0 0 1-.718-.193 5 5 0 0 1-.188-.074m6.615 1.146c-1.57.024-3.16.415-4.527 1.21-.013.006-.024.017-.037.024a8.7 8.7 0 0 0-1.451.606c-.257.14-.543.374-.467.648.062.214.305.304.531.342q.042.01.082.016a7.6 7.6 0 0 0 2.037-.037 7.7 7.7 0 0 0 1.579-.409c.257-.093.52-.221.625-.478a.5.5 0 0 0 .03-.192 7.2 7.2 0 0 0 1.91-.87c.18-.117.378-.298.349-.52-.041-.263-.38-.352-.66-.34zm.655 2.256c-1.14.03-2.77.796-3.26 1.11-.263.169-.543.426-.484.73.052.327.444.479.783.52.823.105 4.672-.316 4.058-1.835-.162-.401-.58-.539-1.097-.525m-5.641 4.258a7 7 0 0 0-1.375.117c-1.022.204-1.997.583-3.014.752-.876.134-1.715-.139-2.615-.127-.942.014-1.886.167-2.8.424a4 4 0 0 0-.116.24 3.9 3.9 0 0 0-.322 1.756 1 1 0 0 1-.01.18.9.9 0 0 1-.312.578c-.324.273-.819.292-1.176.074a.97.97 0 0 1-.469-.748q0-.039-.002-.078a5 5 0 0 1 .01-.572q.02-.285.068-.569-.394.146-.795.281-.4.136-.795.28a59 59 0 0 0-.945.361l11.992 4.566 12.002-4.564.006-.002c-.053-.023-.094-.03-.146-.053-1.759-.671-3.463-1.285-5.215-1.974a19 19 0 0 0-.97-.356c-.976-.326-1.979-.552-3.001-.566M0 17.31v1.3l11.992 4.577 12.002-4.578v-1.297l-12.002 4.565z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/swc.svg��������������������������������������0000664�0000000�0000000�00000005000�14753064456�0024412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.063 7.797a.99.99 0 0 0-.7 1.69l3.987 3.986a.42.42 0 0 1 .093.48.42.42 0 0 1-.408.272.44.44 0 0 1-.312-.13L4.135 8.509a2.4 2.4 0 0 0-1.711-.71c-.507 0-.99.152-1.395.436a2.44 2.44 0 0 0-.994 2.403c.084.487.32.934.678 1.293L2.25 13.47c.183.183.14.379.098.48a.42.42 0 0 1-.409.274h-.695a.987.987 0 1 0 0 1.976h.705c.507 0 .987-.149 1.393-.433a2.45 2.45 0 0 0 .994-2.405 2.4 2.4 0 0 0-.678-1.293l-1.54-1.54a.42.42 0 0 1-.096-.483.42.42 0 0 1 .408-.272c.116 0 .226.045.31.13l5.588 5.587a2.4 2.4 0 0 0 1.711.71 2.38 2.38 0 0 0 1.996-1.048l.342.34a2.4 2.4 0 0 0 1.71.711h.05a2.4 2.4 0 0 0 1.392-.435c.374-.265.664-.631.842-1.059.176-.43.232-.896.152-1.346a2.4 2.4 0 0 0-.677-1.293l-1.541-1.539a.42.42 0 0 1-.096-.482.42.42 0 0 1 .408-.274h1.053a2.4 2.4 0 0 0-.008.862c.084.487.32.934.678 1.293l3.562 3.562a2.4 2.4 0 0 0 1.711.711c1.316 0 2.39-1.07 2.387-2.389a.99.99 0 1 0-1.979 0 .41.41 0 0 1-.408.409.44.44 0 0 1-.31-.13l-3.563-3.562a.42.42 0 0 1-.097-.482.42.42 0 0 1 .408-.274h.593a.987.987 0 1 0 0-1.976h-4.027c-.507 0-.989.15-1.394.435a2.44 2.44 0 0 0-.994 2.403c.084.487.319.934.677 1.293l1.537 1.54a.42.42 0 0 1 .096.483.42.42 0 0 1-.406.271h-.05a.44.44 0 0 1-.311-.128l-2.022-2.02-.004-.006-3.984-3.982a1 1 0 0 0-.7-.291zm-4.64.867c.416 0 .806.16 1.1.455l5.59 5.588c.247.247.575.383.924.383a1.29 1.29 0 0 0 1.209-.807c.205-.497.1-1.04-.281-1.422L6.976 8.875a.12.12 0 0 1 0-.174c.05-.05.127-.05.176 0l6.006 6.006c.247.247.575.383.924.383h.05a1.29 1.29 0 0 0 1.21-.807 1.29 1.29 0 0 0-.285-1.424l-1.541-1.54a1.53 1.53 0 0 1-.336-1.694 1.53 1.53 0 0 1 1.437-.959h4.027c.07 0 .124.054.124.123 0 .07-.054.123-.124.123h-.593a1.29 1.29 0 0 0-1.21.807 1.29 1.29 0 0 0 .286 1.424l3.562 3.564c.248.247.576.383.924.383.702 0 1.274-.571 1.274-1.273 0-.07.055-.124.125-.124.069 0 .123.054.123.124a1.52 1.52 0 0 1-1.522 1.519c-.415 0-.805-.16-1.1-.455l-3.562-3.563a1.53 1.53 0 0 1-.336-1.693 1.56 1.56 0 0 1 .586-.713h-2.584a1.29 1.29 0 0 0-1.209.807 1.28 1.28 0 0 0 .283 1.424l1.541 1.54a1.53 1.53 0 0 1 .336 1.694 1.53 1.53 0 0 1-1.435.959h-.051c-.415 0-.805-.16-1.1-.455l-1.422-1.42c.065.3.034.614-.09.916a1.53 1.53 0 0 1-1.435.959c-.415 0-.807-.16-1.102-.455L3.346 9.293a1.3 1.3 0 0 0-.924-.383 1.29 1.29 0 0 0-1.21.807 1.29 1.29 0 0 0 .284 1.424l1.54 1.54a1.53 1.53 0 0 1 .337 1.694 1.53 1.53 0 0 1-1.436.959h-.693c-.07 0-.123-.054-.123-.123s.054-.123.123-.123h.695a1.29 1.29 0 0 0 1.21-.807 1.28 1.28 0 0 0-.286-1.423l-1.539-1.541a1.53 1.53 0 0 1-.336-1.692c.245-.593.793-.96 1.436-.96z"/></svg>mkdocs-material-9.6.4/material/templates/.icons/simple/swift.svg������������������������������������0000664�0000000�0000000�00000002666�14753064456�0024771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.508 0q-.43 0-.86.002-.362.001-.724.01-.198.005-.395.015A9 9 0 0 0 4.348.15 5.5 5.5 0 0 0 2.85.645 5.04 5.04 0 0 0 .645 2.848c-.245.48-.4.972-.495 1.5-.093.52-.122 1.05-.136 1.576a35 35 0 0 0-.012.724Q0 7.078 0 7.508v8.984q0 .431.002.862.002.36.012.722c.014.526.043 1.057.136 1.576.095.528.25 1.02.495 1.5a5.03 5.03 0 0 0 2.205 2.203c.48.244.97.4 1.498.495.52.093 1.05.124 1.576.138q.362.01.724.01.43.003.86.002h8.984q.43 0 .86-.002.362 0 .724-.01a10.5 10.5 0 0 0 1.578-.138 5.3 5.3 0 0 0 1.498-.495 5.04 5.04 0 0 0 2.203-2.203c.245-.48.4-.972.495-1.5.093-.52.124-1.05.138-1.576q.01-.361.01-.722.003-.431.002-.862V7.508q0-.43-.002-.86a34 34 0 0 0-.01-.724 10.5 10.5 0 0 0-.138-1.576 5.3 5.3 0 0 0-.495-1.5A5.04 5.04 0 0 0 21.152.645 5.3 5.3 0 0 0 19.654.15a10.5 10.5 0 0 0-1.578-.138 35 35 0 0 0-.722-.01Q16.923 0 16.492 0zm6.035 3.41c4.114 2.47 6.545 7.162 5.549 11.131-.024.093-.05.181-.076.272l.002.001c2.062 2.538 1.5 5.258 1.236 4.745-1.072-2.086-3.066-1.568-4.088-1.043a7 7 0 0 1-.281.158l-.02.012-.002.002c-2.115 1.123-4.957 1.205-7.812-.022a12.57 12.57 0 0 1-5.64-4.838c.649.48 1.35.902 2.097 1.252 3.019 1.414 6.051 1.311 8.197-.002C9.651 12.73 7.101 9.67 5.146 7.191a10.6 10.6 0 0 1-1.005-1.384c2.34 2.142 6.038 4.83 7.365 5.576C8.69 8.408 6.208 4.743 6.324 4.86c4.436 4.47 8.528 6.996 8.528 6.996.154.085.27.154.36.213q.128-.322.224-.668c.708-2.588-.09-5.548-1.893-7.992z"/></svg>��������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/swiggy.svg�����������������������������������0000664�0000000�0000000�00000001315�14753064456�0025134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.034 24c-.376-.411-2.075-2.584-3.95-5.513-.547-.916-.901-1.63-.833-1.814.178-.48 3.355-.743 4.333-.308.298.132.29.307.29.409 0 .44-.022 1.619-.022 1.619a.441.441 0 1 0 .883-.002l-.005-2.939c0-.255-.278-.319-.331-.329-.511-.002-1.548-.006-2.661-.006-2.457 0-3.006.101-3.423-.172-.904-.591-2.383-4.577-2.417-6.819C3.849 4.964 5.723 2.225 8.362.868A8.1 8.1 0 0 1 12.026 0c4.177 0 7.617 3.153 8.075 7.209l.001.011c.084.981-5.321 1.189-6.39.904-.164-.044-.206-.212-.206-.284L13.5 4.996a.442.442 0 0 0-.884.002l.009 3.866a.33.33 0 0 0 .268.32l3.354-.001c1.79 0 2.542.207 3.042.588.333.254.461.739.349 1.37C18.633 16.755 12.273 23.71 12.034 24"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/swiper.svg�����������������������������������0000664�0000000�0000000�00000002013�14753064456�0025130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m4.884 17.908a4.3 4.3 0 0 1-1.092 1.488 4.8 4.8 0 0 1-1.644.936q-.948.324-2.028.324c-1.08 0-1.368-.1-1.944-.3q-.864-.3-1.536-.792c-.672-.492-.832-.704-1.152-1.128a6.6 6.6 0 0 1-.768-1.284l1.68-1.008q.216.504.564.972t.804.828a3.7 3.7 0 0 0 2.328.792q.6 0 1.164-.168t.996-.504.696-.828.264-1.164q0-.648-.252-1.116a3 3 0 0 0-.684-.84 5 5 0 0 0-1.032-.672q-.6-.3-1.296-.636a45 45 0 0 1-1.644-.816 7.6 7.6 0 0 1-1.488-1.008 4.8 4.8 0 0 1-1.068-1.332q-.408-.756-.408-1.764 0-.84.312-1.668a4.5 4.5 0 0 1 .912-1.476q.6-.648 1.5-1.056c.9-.408 1.3-.408 2.1-.408q.888 0 1.644.228a6 6 0 0 1 2.412 1.38q.456.432.744.84l-1.512 1.224a4.2 4.2 0 0 0-1.284-1.188 4.2 4.2 0 0 0-.924-.408 3.6 3.6 0 0 0-1.08-.156q-.696 0-1.212.216a2.7 2.7 0 0 0-.876.576q-.36.36-.54.828t-.18.948q0 .6.264 1.044t.744.828c.48.384.712.504 1.176.744q.696.36 1.56.744.96.432 1.74.9t1.32 1.02.828 1.248.288 1.632q0 1.104-.396 1.98"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/swr.svg��������������������������������������0000664�0000000�0000000�00000001615�14753064456�0024441�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 12.187a2.66 2.66 0 0 0 2.648 2.647 2.66 2.66 0 0 0 2.647-2.646v-.376a1.097 1.097 0 0 1 1.092-1.086c.326 0 .636.147.844.399h1.712a2.66 2.66 0 0 0-2.558-1.959 2.664 2.664 0 0 0-2.647 2.647v.374c0 .598-.493 1.09-1.091 1.09a1.096 1.096 0 0 1-1.09-1.09.314.314 0 0 0-.312-.312H.311a.313.313 0 0 0-.311.312m10.131 2.647a2.664 2.664 0 0 1-2.555-1.96h1.71a1.088 1.088 0 0 0 1.935-.683v-.379a2.663 2.663 0 0 1 2.648-2.646 2.65 2.65 0 0 1 2.647 2.591l.008.43a1.097 1.097 0 0 0 1.092 1.086c.326 0 .636-.146.843-.399h1.712a2.66 2.66 0 0 1-2.556 1.96 2.66 2.66 0 0 1-2.648-2.646l-.008-.389v-.017a1.096 1.096 0 0 0-1.09-1.059 1.096 1.096 0 0 0-1.09 1.09v.374a2.663 2.663 0 0 1-2.648 2.647m10.376-3.708a1.09 1.09 0 0 1 1.936.683v.004c0 .171.14.312.311.312h.935a.313.313 0 0 0 .311-.312 2.663 2.663 0 0 0-2.648-2.647 2.66 2.66 0 0 0-2.557 1.96z"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/symantec.svg���������������������������������0000664�0000000�0000000�00000001653�14753064456�0025453�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.877 0v.738h.738V0zm0 .738h-.738v.739h.738zm0 .739v.738h.738v-.738zm-.738 0h-1.477v.738h-.738V3.69h-.738v.74h-1.479v.725A10.57 10.57 0 0 0 11 2.77C5.136 2.77.385 7.52.385 13.385.385 19.248 5.136 24 11 24s10.615-4.752 10.615-10.615c0-2.56-.904-4.906-2.412-6.739h.72v-.738h.74V4.43h.737v-.74h.739v-.738H21.4v-.738h.739v-.738zM19.186 3.69v-.738h-.74v.738zM11 6.154a7.2 7.2 0 0 1 4.033 1.23h-.28v.739h-.737c-1.927 2.409-2.414 3.466-3.182 5.414-.871-1.763-1.911-2.978-3.711-3.783l-.02-.006c-.327-.083-.493-.125-.718.19-.23.322-.092.613.183.955a35 35 0 0 0 .586.703c.547.646 1.095 1.289 1.508 2.035.408.738.877 1.772 1.242 2.574.223.49.406.894.51 1.088.22.406.752.584.955.584.985-.117 1.08-.582 1.242-1.379l.057-.264c.336-1.574.771-3.203 2.824-5.158v-.736h.738V9.6h.74v-.295a7.2 7.2 0 0 1 1.26 4.08c0 3.99-3.24 7.23-7.23 7.23s-7.2-3.24-7.2-7.23 3.21-7.23 7.2-7.23z"/></svg>�������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/symbolab.svg���������������������������������0000664�0000000�0000000�00000002477�14753064456�0025445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.382 0C1.513 0 0 1.547 0 3.455v17.09C0 22.451 1.513 24 3.382 24h17.236C22.487 24 24 22.452 24 20.544V3.454C24 1.548 22.485 0 20.618 0zm4.541 6.789q1.275 0 2.104.456c.829.456.827.68.826 1.132q0 .486-.29.764c-.29.278-.467.276-.81.276q-.289 0-.937-.188c-.648-.188-.76-.19-.98-.19q-.545 0-.87.255a.81.81 0 0 0-.324.67q0 .656 1.431 1.107l.518.161q1.542.517 2.248 1.304c.706.787.708 1.177.712 1.958q-.01 1.616-1.156 2.615c-1.146.999-1.773 1.001-3.022 1.001q-1.438 0-2.457-.517c-1.019-.517-1.018-.748-1.018-1.21-.012-.3.108-.592.328-.797s.512-.302.881-.302q.273 0 1.144.273c.871.273 1.07.274 1.468.274.318.01.627-.106.864-.319a1.03 1.03 0 0 0 .347-.789 1.04 1.04 0 0 0-.357-.82q-.356-.308-1.52-.663-1.69-.502-2.36-1.192c-.67-.69-.671-1.079-.67-1.856q0-1.498 1.085-2.452c1.085-.954 1.662-.952 2.815-.951m6.338 2.886c.254-.01.504.078.697.245q.267.244.512.908l1.344 3.592 1.465-3.793a1.85 1.85 0 0 1 .432-.723.9.9 0 0 1 .63-.229 1.17 1.17 0 0 1 .848.307q.314.306.314.83a1.6 1.6 0 0 1-.05.374l-.004.002a3.5 3.5 0 0 1-.146.45l-3.626 8.619q-.229.546-.465.757a.84.84 0 0 1-.577.21q-.544 0-.862-.31c-.318-.31-.32-.486-.321-.841q0-.206.051-.405.054-.215.148-.414l.98-2.125-2.404-5.607a1.3 1.3 0 0 1-.09-.292 2 2 0 0 1-.028-.374 1.15 1.15 0 0 1 .332-.84c.214-.223.511-.348.82-.341"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/symfony.svg����������������������������������0000664�0000000�0000000�00000002646�14753064456�0025337�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 12c0 6.628-5.372 12-12 12S0 18.628 0 12 5.372 0 12 0s12 5.372 12 12m-6.753-7.561c-1.22.042-2.283.715-3.075 1.644-.878 1.02-1.461 2.229-1.881 3.461-.753-.614-1.332-1.414-2.539-1.761a3.1 3.1 0 0 0-2.813.514c-.41.319-.71.757-.861 1.254-.36 1.176.381 2.225.719 2.6l.737.79c.15.154.519.56.339 1.138-.193.631-.951 1.037-1.732.799-.348-.106-.848-.366-.734-.73.045-.15.152-.263.21-.391.052-.11.077-.194.095-.242.141-.465-.053-1.07-.551-1.223-.465-.143-.939-.03-1.125.566-.209.68.117 1.913 1.86 2.449 2.04.628 3.765-.484 4.009-1.932.153-.907-.255-1.582-1.006-2.447l-.612-.677c-.371-.37-.497-1.002-.114-1.485.324-.409.785-.584 1.539-.379 1.103.3 1.594 1.063 2.412 1.68-.338 1.11-.56 2.223-.759 3.222l-.123.746c-.585 3.07-1.033 4.757-2.194 5.726-.234.166-.57.416-1.073.434-.266.005-.352-.176-.355-.257-.006-.184.15-.271.255-.353.154-.083.39-.224.372-.674-.016-.532-.456-.994-1.094-.973-.477.017-1.203.465-1.176 1.286.028.85.819 1.485 2.012 1.444.638-.021 2.062-.281 3.464-1.949 1.633-1.911 2.09-4.101 2.434-5.706l.383-2.116q.318.037.69.048c2.032.044 3.049-1.01 3.064-1.776.01-.464-.304-.921-.744-.91a.85.85 0 0 0-.806.654c-.094.428.646.813.068 1.189-.41.266-1.146.452-2.184.3l.188-1.042c.386-1.976.859-4.407 2.661-4.467.132-.007.612.006.623.323.003.105-.022.134-.147.375a.86.86 0 0 0-.168.537c.017.504.4.836.957.816.743-.023.955-.748.945-1.119-.032-.874-.952-1.424-2.17-1.386"/></svg>������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/symphony.svg���������������������������������0000664�0000000�0000000�00000000752�14753064456�0025515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.471 8.118v-4.22c0-.864-.468-1.677-1.22-2.12C18.124 1.113 15.684 0 12 0S5.876 1.113 4.75 1.777a2.48 2.48 0 0 0-1.22 2.12v6.338l13.412 3.882v2.824c0 .382-.24.65-.648.849L12 19.941l-4.315-2.162c-.386-.188-.626-.456-.626-.838v-2.118L3.53 13.764v3.177c0 1.744 1 3.228 2.588 4.001L12 24l5.86-3.047c1.61-.784 2.61-2.268 2.61-4.011v-5.294L7.059 7.765V4.542C8.017 4.08 9.651 3.529 12 3.529s3.983.55 4.941 1.013v2.517z"/></svg>����������������������mkdocs-material-9.6.4/material/templates/.icons/simple/sympy.svg������������������������������������0000664�0000000�0000000�00000014576�14753064456�0025021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.836 17.793a.55.55 0 0 0 .087-.281q.006-.165-.083-.221-.082-.06-.202-.012a.5.5 0 0 0-.216.18.54.54 0 0 0-.094.293q-.012.335.215.44.234.102.546-.025.574-.231.943-.966.36-.7.4-1.458c.162.948-.068 1.997-.646 2.765a3 3 0 0 1-.672.39l-1 .3a7 7 0 0 1-.493.082v-5.656c.828.222 1.664.468 2.272 1.015l-.045 1.278q-.064 1.782-.75 2.06-.277.111-.456.005a.55.55 0 0 0 .194-.19zm.366-11.578c-.128-.045-.388-.114-.55-.157-.234-.062-.537-.142-.696-.157a1.5 1.5 0 0 0-.48.03c-.073.02-.26.083-.041.16.124.047.31.096.517.15.158.043.456.122.633.154.25.045.484.017.595-.012.092-.024.246-.086.022-.168m4.53-1.354c.255.04.521.08.783.135l.995.348-2.996.9-5.066 1.52-2.7-.81q.099-.276.26-.52l2.832.835.575-.168-.405-.12-.363.106L6.08 6.33a2.3 2.3 0 0 1 .64-.602c1.519-.953 3.292-1.206 4.98-1.172l2.794.826-.363.106.406.12.575-.168-2.93-.866c.765.04 1.507.13 2.193.232zm-4.65 1.103c-.28-.074-.967-.255-1.708-.06-.74.194-.062.376.22.45s.948.25 1.69.056c.737-.193.084-.37-.203-.446zm3.748-.5-.135-.035-.43.113-1.651-.438a.26.26 0 0 0-.172-.003c-.034.01-.04.01-.048.023-.073.105-.39.188-.455.205l-.06.016.134.036.06-.016c.05-.013.216-.058.343-.12l1.482.393-.426.11.135.037c.127-.038.453-.123.603-.163s.476-.124.62-.158M8.62 9.542q.196.05.386.11c.674.153 1.37.336 2.044.58q.056-.706.387-1.36.375-.736.95-.968.312-.125.54-.022.233.1.221.437a.54.54 0 0 1-.102.304.47.47 0 0 1-.207.168q-.12.048-.21 0-.082-.06-.076-.233a.55.55 0 0 1 .087-.28.55.55 0 0 1 .195-.19q-.179-.106-.455.005-.69.276-.751 2.06l-.01.303c.721.308 1.403.7 1.99 1.217v-.796c0-.282-.03-.312-.305-.227v-.178l.563-.24v1.682c.293.293.557.622.783.995.156.252.273.516.362.79.11-.193.166-.517.21-.796l.09-.55c.035-.225.082-.52.082-.659 0-.23-.074-.34-.188-.304-.156.05-.36.337-.465.864-.02.098-.02.104-.07.12-.02.006-.06.018-.06-.04 0-.13.212-.95.603-1.072.098-.03.29-.044.375.274.04-.12.168-.443.383-.51.113-.036.34-.038.34.255 0 .224-.12.343-.192.365-.102.032-.137-.067-.137-.14 0 0 0-.219.156-.326-.063-.06-.16-.03-.172-.027-.184.057-.29.407-.344.723l-.133.83c-.03.204-.074.465-.074.603 0 .3.106.335.184.31.164-.05.36-.336.465-.863.02-.098.023-.105.07-.12.027-.01.06-.018.06.04 0 .114-.2.947-.603 1.072-.102.032-.293.028-.37-.275-.039.11-.097.24-.174.344.2.673.242 1.392.284 2.095q.013.222.027.439v.007q.014.512-.036.977l1.57-.471V5.588L8.62 8.07zM2.73 8.306l-.146-.044.15.356a4 4 0 0 1-.005-.312zM8.274 19.32v-5.79a19 19 0 0 1-.462-.13c-1.38-.314-2.726-1.096-3.894-2.26a3 3 0 0 1-.182-.164l.656 1.547c.026.058.062.132.062.194 0 0 0 .075-.08.176l-2.213 2.888 2.434.741c1.385.42 1.984.265 2.143-1.781l.22.067-.247 2.884-4.895-1.49c-.132-.04-.22-.067-.22-.205 0-.038 0-.063.088-.174l2.1-2.76-2.197-5.207c0-.288.018-.283.23-.22l.93.285c.045-.488.157-.97.322-1.414L0 5.588v11.277l8.204 2.46zm0-9.862V8.07L5.66 7.286c-.06.33-.06.785.214 1.215.566.548 1.373.728 2.154.9zM3.398 5.661 2.19 5.304l.575-.168.406.12-.363.106.644.19q.15-.286.332-.538l-.09-.024.06-.016.073-.02a3.84 3.84 0 0 1 1.798-1.342c1.04-.456 2.195-.733 3.538-.84l-.716-.25-8.062 2.82 2.798.84a5 5 0 0 1 .214-.52zm17.455.147a.145.145 0 0 0-.145.146.145.145 0 0 0 .145.145.145.145 0 0 0 .144-.146.14.14 0 0 0-.043-.103.14.14 0 0 0-.1-.042zm-.89 1.76a.1.1 0 0 1-.038.077.16.16 0 0 1-.108.04c-.078 0-.145-.053-.145-.116 0-.037.023-.063.037-.076a.16.16 0 0 1 .108-.04c.08 0 .145.053.145.115zm3.313 1.245c-.3 0-.397-.13-.53-.31l-.319-.409c.21-.316.174-.683-.104-1-.226-.262-.407-.606-.58-.938-.195-.368-.395-.75-.648-1.003-.212-.212-.65-.45-1.177-.642-.864.145-1.588.158-2.5-.21-1.663-.703-3.578-1.106-5.693-1.2-2.47-.138-4.366.126-5.965.83l-.015.005C4.667 4.31 3.81 5.26 3.45 6.48l-.005.016c-.577 1.43-.584 3.342.7 4.385l.012.012c1.125 1.124 2.418 1.876 3.74 2.176a22 22 0 0 0 .668.186c1.085.29 2.207.59 2.918 1.52q.011.014.02.033c.573 1.243.39 2.822-.455 3.93a.2.2 0 0 1-.03.03c-.634.508-1.57.807-2.855.912q-.03.003-.06-.006a150 150 0 0 1-2.6-.748c-.867-.254-1.762-.517-2.584-.743a6 6 0 0 1-.554-.17l.144.182c.225.286.566.718.714.845l.007.006c1.33 1.274 2.46 1.73 3.967 2.09 1.894.439 3.556.56 5.506-.273 1.633-1.02 2.37-2.447 2.316-4.49q-.016-.218-.027-.439c-.058-.99-.12-2.01-.632-2.843-1.16-1.907-3.398-2.64-5.434-3.103l-.014-.004c-.306-.098-.623-.168-.96-.243-.833-.186-1.696-.378-2.333-1.006a.1.1 0 0 1-.023-.028C5.303 8.26 5.212 7.7 5.34 7.13a2.75 2.75 0 0 1 1.2-1.696c2.454-1.542 5.506-1.329 7.89-.97l.354.056c.82.126 1.84.283 2.462.877a.17.17 0 0 1 .053.13c-.015.48.163.723.37 1.005.133.184.285.393.387.678.33.805 1.12.905 1.955 1.01.337.044.686.088 1 .183l.035.015c.433.248.91.127 1.206-.128.093.118.262.335.284.365.13.176.278.374.624.41.005.087-.001.185-.006.28a4 4 0 0 0-.008.206h.259q.001-.088.008-.19.011-.146.007-.288h.309L24 9.07v-.258zM5.666 19.418c0 .15-.322.27-.72.27-.4 0-.722-.12-.722-.27s.323-.27.72-.27c.4 0 .723.12.723.27zm2.555.997c0 .235-.315.426-.703.426-.39 0-.704-.19-.704-.425 0-.236.315-.427.703-.427s.704.19.704.426m3.534.108c0 .283-.343.513-.767.513s-.768-.23-.768-.512c0-.284.343-.514.767-.514s.768.228.768.513m1.21-1.177c-.353 0-.64-.3-.64-.67s.287-.67.64-.67.64.3.64.67a.655.655 0 0 1-.64.67m.641-4.023c.37 0 .67.368.67.823s-.3.823-.67.823-.67-.368-.67-.823.3-.823.67-.823m-1.402-2.926c.404 0 .73.34.73.762 0 .42-.326.762-.73.762s-.731-.34-.731-.762c0-.42.327-.762.731-.762m-4.206-.853c0-.438.396-.792.884-.792s.884.355.884.792-.395.793-.883.793-.884-.354-.885-.792zM3.853 7.23c0-.286.246-.518.55-.518.302 0 .548.232.548.518s-.247.518-.55.518-.548-.232-.548-.518m1.574 1.943a.72.72 0 0 1 .73.708.72.72 0 0 1-.73.708.72.72 0 0 1-.73-.708.72.72 0 0 1 .73-.708m.68-3.937c0 .252-.231.457-.517.457s-.518-.204-.518-.457c0-.252.232-.457.518-.457s.518.204.518.457zm1.7-1.088c0 .185-.191.336-.426.337-.236 0-.427-.15-.427-.336s.19-.336.426-.337c.236.001.427.151.427.336m1.95-.475c0 .168-.162.305-.364.305s-.366-.136-.366-.304c0-.169.163-.306.365-.306s.366.136.366.305zm2.178-.078c0 .135-.15.244-.335.244s-.335-.109-.336-.243c0-.136.15-.244.335-.244s.335.107.336.243m1.592.382c-.144 0-.26-.1-.26-.226 0-.125.116-.226.26-.226s.26.101.26.226-.117.226-.26.226m2.11.118c0 .118-.12.213-.273.214-.15 0-.274-.095-.275-.213 0-.119.122-.214.274-.215.152 0 .275.095.275.214zm1.565.745c-.1 0-.183-.096-.183-.213 0-.118.082-.214.183-.214s.183.097.183.214-.082.213-.183.213m3.02 2.73a.36.36 0 0 1-.124.268.42.42 0 0 1-.28.104c-.223 0-.404-.167-.405-.372a.36.36 0 0 1 .123-.27.42.42 0 0 1 .28-.104c.224 0 .404.167.405.373h-.13zm1.035-1.616a.404.404 0 0 1-.403.405.405.405 0 0 1-.287-.69.4.4 0 0 1 .285-.118.4.4 0 0 1 .286.118.4.4 0 0 1 .12.285z"/></svg>����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/syncthing.svg��������������������������������0000664�0000000�0000000�00000002173�14753064456�0025634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m0 2.412c3.115 0 5.885 1.5 7.629 3.815a1.834 1.834 0 0 1 1.564 3.162c.23.818.354 1.68.354 2.57a9.5 9.5 0 0 1-2.166 6.05c.128.281.189.595.162.92a1.854 1.854 0 0 1-2.004 1.678 1.86 1.86 0 0 1-.877-.322A9.5 9.5 0 0 1 12 21.505c-3.84 0-7.154-2.277-8.668-5.552-.3-.01-.601-.092-.879-.254-.858-.51-1.144-1.634-.633-2.513.164-.276.39-.493.653-.643a10 10 0 0 1-.02-.584c0-5.265 4.282-9.547 9.547-9.547m0 1.227a8.31 8.31 0 0 0-8.31 8.683c.22.036.439.111.644.23.323.2.564.484.713.805l6.984-.644a1.78 1.78 0 0 1 .787-1.08c.288-.19.612-.286.936-.295.34-.01.68.08.978.254l3.51-2.914a1.82 1.82 0 0 1 .317-1.84A8.3 8.3 0 0 0 12 3.638zm7.027 5.98-3.502 2.91a1.83 1.83 0 0 1-.23 1.719l1.904 2.744c.212-.06.436-.085.668-.066.238.024.46.092.66.193a8.3 8.3 0 0 0 1.793-5.16 8.4 8.4 0 0 0-.265-2.092 1.84 1.84 0 0 1-1.028-.248m-6.886 4.315-6.975.644a1.8 1.8 0 0 1-.66 1.004A8.31 8.31 0 0 0 12 20.279a8.3 8.3 0 0 0 3.938-.986 1.9 1.9 0 0 1-.075-.69c.028-.341.148-.65.332-.908L14.29 14.95a1.84 1.84 0 0 1-2.148-1.015z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/synology.svg���������������������������������0000664�0000000�0000000�00000010153�14753064456�0025506�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.44 8.927-.889.37.056.117a.6.6 0 0 1 .212-.054q.076.001.126.046.05.042.072.16.022.119.022.634v2.736q0 .284-.042.381a.3.3 0 0 1-.118.142q-.079.046-.286.045v.12h1.481v-.12q-.231 0-.32-.048a.3.3 0 0 1-.126-.142q-.04-.09-.04-.378V8.927zm-11.722.34q-.494 0-.84.147-.35.15-.534.436a1.1 1.1 0 0 0-.185.612q0 .508.393.864.276.252.968.422.537.135.688.191a.7.7 0 0 1 .31.183q.087.106.088.259 0 .232-.21.41-.212.175-.628.176-.393 0-.625-.197-.23-.199-.307-.619L0 12.23q.084.72.517 1.096.434.378 1.244.378.556-.002.93-.156a1.26 1.26 0 0 0 .781-1.169 1.3 1.3 0 0 0-.171-.684 1.2 1.2 0 0 0-.472-.437q-.3-.16-.927-.31-.628-.147-.79-.286a.326.326 0 0 1 .009-.524q.21-.157.586-.156.361 0 .542.145.181.147.237.471l.864-.028q-.019-.591-.425-.949-.407-.353-1.208-.353zm21.808.33a.475.475 0 1 0-.002.95.475.475 0 0 0 .002-.95m0 .072a.4.4 0 0 1 .401.403c0 .116-.05.22-.128.294l-.086-.135a.4.4 0 0 0-.065-.078.2.2 0 0 0-.048-.03.2.2 0 0 0 .127-.057.14.14 0 0 0 .043-.109.2.2 0 0 0-.025-.091.13.13 0 0 0-.067-.055.3.3 0 0 0-.123-.02h-.266v.606h.08v-.268h.091q.03 0 .045.003.02.005.036.014.018.014.04.043.023.03.059.083l.08.125h.043a.4.4 0 0 1-.237.08.405.405 0 0 1-.404-.405c0-.224.18-.403.404-.403m-.157.191h.191q.067 0 .097.027a.09.09 0 0 1 .03.07.1.1 0 0 1-.016.055.08.08 0 0 1-.047.035.2.2 0 0 1-.085.013h-.17zm-15.037.6q-.616-.001-1.023.514v-.455h-.754v3.105h.814v-1.401c0-.348.022-.583.063-.713a.6.6 0 0 1 .234-.306.67.67 0 0 1 .385-.118q.167 0 .287.082.119.08.17.229.055.148.054.646v1.581h.816V11.7a2.5 2.5 0 0 0-.046-.55.9.9 0 0 0-.16-.343.83.83 0 0 0-.341-.25 1.3 1.3 0 0 0-.499-.097m2.65 0a1.7 1.7 0 0 0-.826.2 1.4 1.4 0 0 0-.571.586 1.7 1.7 0 0 0-.202.793q0 .534.202.904.201.374.588.566.388.194.814.194.69-.001 1.144-.463.455-.464.455-1.167 0-.697-.451-1.156-.449-.457-1.154-.457zm7.315.05q-.527 0-.865.323a1.02 1.02 0 0 0-.336.77q0 .29.147.534c.1.162.24.285.423.379q-.334.281-.429.44a.55.55 0 0 0-.092.271q0 .102.071.184t.24.187a10 10 0 0 0-.329.355c-.113.145-.19.253-.226.336a.4.4 0 0 0-.034.157q0 .178.246.343.437.284 1.071.284.825 0 1.337-.477.349-.326.35-.694a.61.61 0 0 0-.183-.45.84.84 0 0 0-.49-.227 9 9 0 0 0-.878-.053 4 4 0 0 1-.46-.027q-.159-.023-.212-.075-.056-.054-.056-.112a.4.4 0 0 1 .05-.159.9.9 0 0 1 .186-.221q.234.072.459.07.54 0 .864-.301a.96.96 0 0 0 .323-.722q0-.37-.187-.61h.394c.097 0 .15-.002.167-.01a.06.06 0 0 0 .035-.025.3.3 0 0 0 .018-.12.2.2 0 0 0-.02-.105.1.1 0 0 0-.033-.028 1 1 0 0 0-.166-.008h-.639a1.3 1.3 0 0 0-.746-.21zm-2.752 0q-.378 0-.714.194a1.44 1.44 0 0 0-.546.61 1.8 1.8 0 0 0-.205.825q0 .571.34 1.03a1.29 1.29 0 0 0 1.09.543q.419 0 .76-.211.344-.21.54-.627.194-.414.194-.821 0-.577-.354-1.022a1.34 1.34 0 0 0-1.105-.522zm-12.182.009 1.174 3.113a1.2 1.2 0 0 1-.21.431q-.135.168-.419.167-.154 0-.344-.04l.067.645q.228.05.464.052.232-.001.418-.052a1 1 0 0 0 .31-.138.9.9 0 0 0 .224-.234 2.2 2.2 0 0 0 .205-.414l.199-.545 1.085-2.985h-.844l-.722 2.204-.74-2.204zm16.631.078v.122a.8.8 0 0 1 .245.091q.052.043.136.157.108.152.158.255l1.088 2.275-.213.526q-.119.292-.236.393-.118.103-.217.104a1 1 0 0 1-.167-.05 1 1 0 0 0-.3-.07c-.105 0-.19.025-.25.084a.29.29 0 0 0-.092.22q0 .146.126.257a.46.46 0 0 0 .322.112q.27.002.56-.223.29-.224.469-.664l1.226-3.014a1.6 1.6 0 0 1 .113-.254.6.6 0 0 1 .145-.146.5.5 0 0 1 .188-.053v-.122h-.978v.122q.14 0 .197.023a.17.17 0 0 1 .083.057.15.15 0 0 1 .023.087q0 .136-.056.271l-.675 1.671-.737-1.53q-.11-.225-.11-.356a.21.21 0 0 1 .074-.16.35.35 0 0 1 .224-.063h.068v-.122zm-1.753.08q.26.001.43.217.224.293.224.815 0 .398-.16.584a.52.52 0 0 1-.41.188.53.53 0 0 1-.43-.216q-.223-.286-.223-.802c0-.268.054-.461.163-.59a.52.52 0 0 1 .406-.197zm-2.798.054q.362-.002.598.312.346.46.346 1.263 0 .643-.209.905a.65.65 0 0 1-.528.264q-.429-.002-.691-.477c-.174-.32-.263-.695-.263-1.135q0-.406.11-.669a.73.73 0 0 1 .285-.361.67.67 0 0 1 .352-.102m-4.463.395q.323.001.543.247.216.244.216.703 0 .468-.216.712a.7.7 0 0 1-.543.248.7.7 0 0 1-.542-.248q-.22-.242-.22-.708 0-.463.22-.707a.7.7 0 0 1 .542-.247m6.66 2.498q.398.056 1.142.08.51.01.68.083t.17.241q0 .235-.282.442-.284.208-.874.208-.622-.001-.951-.204-.191-.115-.19-.277c0-.078.024-.169.076-.26a1.5 1.5 0 0 1 .228-.313z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/system76.svg���������������������������������0000664�0000000�0000000�00000002242�14753064456�0025324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.575.007A11.993 11.993 0 0 0 3.52 20.481l.124.121 6.532-12.11H3.188l1.227 2.066a.63.63 0 0 1 .076.49.68.68 0 0 1-.65.506.64.64 0 0 1-.544-.298L1.474 8.188a.63.63 0 0 1-.095-.342v-.027a.65.65 0 0 1 .642-.628h9.256c.167 0 .368.06.47.14l.01.008a.73.73 0 0 1 .22.942L4.908 21.388a.7.7 0 0 1-.14.182 11.99 11.99 0 0 0 14.225.185h-5.632a.744.744 0 0 1-.744-.744v-.015a.744.744 0 0 1 .744-.744h7.352a11.994 11.994 0 0 0-.232-16.733 12 12 0 0 0-1.618-1.358l-.003.006-.033.099c-.233.433-2.941 5.33-3.838 6.951l-.329.595c-.753 1.302-1.099 2.767-.925 3.92a3.8 3.8 0 0 0 .657 1.624 3.91 3.91 0 0 0 2.55 1.593 4 4 0 0 0 .682.058 3.98 3.98 0 0 0 2.405-.798 3.8 3.8 0 0 0 1.48-2.412 3.78 3.78 0 0 0-.7-2.892 4.01 4.01 0 0 0-2.583-1.581l-.177-.026a.7.7 0 0 1-.614-.718.7.7 0 0 1 .233-.503.7.7 0 0 1 .549-.172 5.4 5.4 0 0 1 3.735 2.182 5.18 5.18 0 0 1 .942 3.943 5.18 5.18 0 0 1-2.18 3.418 5.4 5.4 0 0 1-3.088.963h-.001a5.5 5.5 0 0 1-.915-.078 5.3 5.3 0 0 1-3.472-2.174 5.6 5.6 0 0 1-.425-.706c-.717-1.416-.753-3.07-.102-4.785a18 18 0 0 1 .758-1.678l4.078-7.45.096-.117.004-.008a12 12 0 0 0-.98-.467 12 12 0 0 0-5.093-.94z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tabelog.svg����������������������������������0000664�0000000�0000000�00000006531�14753064456�0025245�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 14.492a.18.18 0 0 0-.14-.182l-2.252-.543a.18.18 0 0 0-.163.04.18.18 0 0 0-.061.151 3 3 0 0 1-.57-.246 2.58 2.58 0 0 1-1.208-1.631c-.148-.605-.54-1.662-.8-2.362l-.186-.51a2.4 2.4 0 0 0-.248-.485l.905-.425a.24.24 0 0 0 .112-.325l-.347-.708a.24.24 0 0 0-.325-.11l-1.19.606a3.4 3.4 0 0 0-.545-.383c-.252-.14-.65-.342-1.063-.546l1.965-1.14a.24.24 0 0 0 .085-.333l-.407-.675a.24.24 0 0 0-.334-.082l-2.587 1.613-.373-.177c-.087-.056-.586-.338-1.38-.03-.759.294-1.448.508-1.454.51-.058.019-.562.184-.763.45-.207.276-.767.906-.957 1.011-.223.124-.503.37-.557.654l-.007.049a.45.45 0 0 0 .104.338.82.82 0 0 0 .466.26L.117 15.264a.246.246 0 0 0-.082.336l.076.125a.247.247 0 0 0 .335.086l8.882-5.153c-.009.164-.004.578.251.798a.58.58 0 0 0 .435.129L.749 16.297a.246.246 0 0 0-.111.329l.064.13a.247.247 0 0 0 .327.115l9.087-4.27a4 4 0 0 0-.184.776.8.8 0 0 0 .002.214c.064.38.234.642.476.735.12.046.298.06.524-.046.05.192.142.435.315.574a.5.5 0 0 0 .375.11c.293-.033.648-.293.883-.648.16-.241.253-.503.278-.767a1.5 1.5 0 0 0 0-.275c.238.083.582.255.767.6.36.666 1.675 2.5 2.488 2.88l.469.231c.697.355 1.652.84 2.997 1.091l.02.008a.2.2 0 0 0-.023.07.18.18 0 0 0 .105.182l2.34 1.08a.18.18 0 0 0 .128.009c.074-.021 1.847-.591 1.924-4.934m-7.195-6.794a3 3 0 0 1 .366.245l-2.632 1.34a4 4 0 0 0-.338-.191l-.383-.182c-.229-.108-.525-.246-.811-.387l2.531-1.469c.486.238.98.484 1.267.644M9.517 8.701c.023-.123.185-.296.375-.402.297-.164.935-.93 1.072-1.11.098-.13.408-.266.58-.321.006-.002.706-.22 1.477-.519.663-.257 1.043-.008 1.059.003l.026.015.166.078-2.37 1.477c-.409-.153-.895.004-1.166.284a.96.96 0 0 0-.227.436c-.159.316-.425.31-.458.308h-.008q-.01-.001-.021-.001c-.096.002-.369-.021-.486-.162-.02-.025-.026-.05-.02-.086m.3 2.478c-.128-.11-.131-.411-.122-.529l.09-.258.977-.567q.113.156.266.29c-.041.369-.166.63-.167.633v.001c-.002.003-.156.29-.775.454-.183.05-.247-.006-.268-.024m1.373-.272v-.001a2.4 2.4 0 0 0 .17-.55l.467.305-.685.349zm-.25 2.942c-.159.124-.3.173-.399.136-.114-.044-.206-.214-.247-.455a.5.5 0 0 1 0-.136c.02-.226.134-.6.282-1.01l1.148-.538c-.104.247-.196.55-.21.865-.02.505-.498 1.055-.573 1.138m8.68 3.881-.03-.008c-1.303-.24-2.236-.715-2.917-1.061l-.48-.237c-.698-.326-1.97-2.073-2.32-2.722-.308-.572-.916-.772-1.175-.833-.05-.172-.155-.491-.282-.66a.183.183 0 0 0-.256-.035.183.183 0 0 0-.036.256c.094.125.204.46.252.642l.001.002.001.004c.139.463-.051.85-.176 1.038-.196.295-.459.468-.618.486a.13.13 0 0 1-.105-.032c-.117-.094-.193-.345-.223-.525.162-.19.6-.75.625-1.318.02-.49.277-.97.39-1.137l.555-.261c.393.27.655.46.727.533l.121.115c.259.24.798.74.863 1.257.091.728.951 2.402 1.935 2.871a.18.18 0 0 0 .244-.086.18.18 0 0 0-.086-.244c-.864-.41-1.65-1.944-1.73-2.586-.082-.65-.665-1.19-.978-1.48l-.11-.104c-.252-.253-1.87-1.308-2.361-1.625-.475-.307-.586-.7-.61-.908-.028-.243.034-.483.158-.611.186-.192.6-.345.897-.133.338.242 1.198.646 1.768.913l.376.179c.35.173.649.413.652.416.041.035 1.122.96 1.505 1.214.516.34.951.126 1.11-.035a.18.18 0 0 0-.003-.256.183.183 0 0 0-.257-.002c-.026.026-.266.24-.648-.012-.183-.12-.55-.417-.872-.684l2.512-1.18c.107.161.19.317.236.45l.19.516c.256.692.644 1.737.786 2.32a2.93 2.93 0 0 0 1.375 1.86c.223.132.498.236.777.32.018.847-.088 2.865-1.425 3.518zm2.406 1.32-1.88-.868c1.137-.555 1.498-1.893 1.596-2.926a8 8 0 0 0 .024-1.075l1.864.45q-.014.471-.05.879c-.259 2.74-1.3 3.415-1.554 3.54"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tablecheck.svg�������������������������������0000664�0000000�0000000�00000001716�14753064456�0025715�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.914 3.828 7.248.164C7.125.04 6.878-.001 6.713.04A13.25 13.25 0 0 0 .041 6.67a.45.45 0 0 0 .124.534l3.664 3.664c.124.124.371.082.412-.122a7.9 7.9 0 0 1 2.217-4.33 7.9 7.9 0 0 1 4.332-2.216c.165 0 .247-.247.124-.37m9.266 7.08 3.666-3.664c.123-.123.165-.37.123-.534A13.25 13.25 0 0 0 17.339.04a.45.45 0 0 0-.29-.03.45.45 0 0 0-.246.153l-3.665 3.664c-.124.123-.082.371.123.412a7.9 7.9 0 0 1 4.332 2.215 7.9 7.9 0 0 1 2.216 4.33c0 .164.248.247.371.123m3.666 5.887L20.18 13.09c-.123-.123-.37-.082-.412.124-.535 3.336-3.17 6.01-6.548 6.546-.205.041-.288.288-.123.412l3.666 3.663c.122.124.37.165.534.124a13.17 13.17 0 0 0 6.63-6.628c.125-.206.084-.412-.081-.536M3.83 13.09.164 16.795c-.124.124-.165.371-.124.536a13.17 13.17 0 0 0 6.63 6.628.45.45 0 0 0 .29.03.45.45 0 0 0 .246-.154l3.666-3.663c.123-.124.082-.371-.124-.412a7.9 7.9 0 0 1-4.333-2.215 7.9 7.9 0 0 1-2.216-4.33c0-.166-.247-.247-.37-.125z"/></svg>��������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tacobell.svg���������������������������������0000664�0000000�0000000�00000003362�14753064456�0025414�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.079 1.137a12 12 0 0 0-.913.032c-1.497.08-2.957.504-4.321 1.109.28-.001.588-.048.839.108.308.171.45.527.744.711.419.163.87.007 1.297-.04a7.04 7.04 0 0 1 4 .74c.788.414 1.5.96 2.152 1.563 1.005.884 1.831 1.948 2.827 2.842.324.289.698.525 1.103.683.949.373 1.998.344 2.953.692.301.101.571.27.844.43-.164-.537-.34-1.07-.562-1.586a12.04 12.04 0 0 0-4.88-5.588 11.9 11.9 0 0 0-6.083-1.696ZM4.988 3.4a11.94 11.94 0 0 0-3.99 4.943A12.1 12.1 0 0 0 .004 13.4c0 2.995.006 5.99-.002 8.984-.016.163.083.301.15.441 1.158.071 2.322.014 3.483.03-.57-.207-1.224-.547-1.334-1.207-.18-.953.278-1.878.77-2.664.789-1.228 1.834-2.263 2.91-3.238 1.308-1.132 2.754-2.092 4.238-2.975.397-.256.855-.458 1.14-.85-.26.021-.514.085-.75.195-.988.43-1.924.967-2.847 1.52-.88.545-1.767 1.084-2.594 1.709-.58.414-1.12.877-1.68 1.316-.124-.94-.348-1.862-.584-2.78-.29-1.219-.477-2.475-.396-3.73.06-1.285.47-2.562 1.234-3.602.294-.431.7-.775.978-1.217.24-.377-.12-.768-.09-1.161-.006-.3.193-.54.358-.772zm15.56 8.85a4 4 0 0 0-.498.028c-1.316.16-2.574.614-3.798 1.105-2.741 1.152-5.388 2.576-7.741 4.404-.938.75-1.865 1.545-2.56 2.534-.209.33-.472.733-.323 1.136.191.265.547.312.85.353 1.055.094 2.114-.078 3.145-.298a20.1 20.1 0 0 0 5.923-2.359c1.375-.794 2.703-1.68 3.896-2.73.668-.606 1.312-1.26 1.773-2.043.213-.376.401-.787.392-1.228.003-.249-.024-.56-.265-.697-.24-.152-.515-.2-.794-.205m3.426.076c-.79 1.992-2.352 3.548-3.97 4.898a27 27 0 0 1-4.556 2.964c-2.185 1.22-4.537 2.177-6.999 2.66 5.035.022 10.07.004 15.106.009.226.031.457-.143.441-.38.007-2.865 0-5.73.003-8.594.001-.52.007-1.04-.025-1.557zm-11.257 3.431c.36.77.401 1.697.054 2.478a3 3 0 0 1-1.768 1.647 3.03 3.03 0 0 1-3.066-.701c1.402-1.382 3.06-2.478 4.78-3.424"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tado.svg�������������������������������������0000664�0000000�0000000�00000002247�14753064456�0024557�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.486 7.795a1.514 1.514 0 1 0 0 3.029 1.514 1.514 0 0 0 0-3.029m-8.504.003v2.456c-.457-.344-.945-.563-1.686-.563-1.814 0-2.833 1.364-2.833 3.267 0 1.792 1.019 3.247 2.833 3.247 1.781 0 2.817-1.46 2.82-3.247v-5.16zM1.89 7.799l-1.124.378V9.69H0v.945h.757v3.873c0 .84.67 1.51 1.518 1.51h1.128v-.943h-.946a.566.566 0 0 1-.568-.566v-3.874h3.215V9.69H1.89zm20.596.375a1.135 1.135 0 1 1 0 2.27 1.135 1.135 0 0 1 0-2.27M5.48 9.69v.946h1.906c.354 0 .549.277.549.54v.773l-1.322-.001c-1.134 0-2.267.769-2.267 2.08 0 1.307 1.13 2.087 2.265 2.087.953 0 1.326-.57 1.326-.57v.47H9.07v-4.864c0-.784-.667-1.461-1.51-1.461zm12.861.002c-1.808 0-2.835 1.369-2.835 3.237 0 1.911 1.027 3.276 2.835 3.276 1.787 0 2.828-1.36 2.828-3.276 0-1.863-1.046-3.237-2.828-3.237m-6.046.95c1.14 0 1.68 1.185 1.68 2.316 0 1.117-.55 2.305-1.68 2.305-1.232 0-1.697-1.188-1.697-2.305 0-1.13.56-2.316 1.697-2.316m6.046.005c1.12 0 1.703 1.18 1.703 2.3 0 1.117-.572 2.313-1.703 2.313-1.126 0-1.707-1.165-1.707-2.307 0-1.126.57-2.306 1.707-2.306M6.614 12.9h1.322v1.207c0 .5-.373 1.062-1.323 1.062-.367 0-1.133-.19-1.133-1.134 0-.842.758-1.135 1.134-1.135"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/taichigraphics.svg���������������������������0000664�0000000�0000000�00000000550�14753064456�0026605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.343 20.672a1.94 1.94 0 0 0 1.94-1.94 1.94 1.94 0 1 0-3.88 0 1.94 1.94 0 0 0 1.94 1.94M9.058 12.796a6.858 6.858 0 1 0-2.324-9.67q-.094.148-.185.3c-.06.103-.11.205-.167.31a6.86 6.86 0 0 0 2.676 9.06m0-.003h-4.23l-2.113 3.663 2.114 3.667h4.229l2.116-3.667zm0 7.33L6.82 23.999h4.48Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/taichilang.svg�������������������������������0000664�0000000�0000000�00000001371�14753064456�0025730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.526 4.678c-.02 1.605-.817 2.897-2.211 3.854-1.218.838-2.47 1.627-3.632 2.54C7.786 12.568 6.544 14.506 6.505 17c-.042 2.711 1.175 4.797 3.434 6.274.042.027.09.05.13.075.2.123.364.306.22.524-.07.103-.327.154-.473.115-1.216-.298-2.385-.731-3.455-1.395C2.899 20.443.877 17.33.409 13.274-.254 7.468 3.193 2.09 8.683.354c1.356-.431 2.723-.526 4.073.042 1.723.72 2.826 2.381 2.77 4.282m8.146 9.265c-.027 1.07-.328 2.27-1.444 3.112-1.3.98-2.976.916-3.998-.149a2.8 2.8 0 0 1-.645-1.08 2.9 2.9 0 0 1-.12-1.255 2.9 2.9 0 0 1 .434-1.186 2.84 2.84 0 0 1 .897-.878q.21-.131.422-.253c1.167-.658 1.692-1.689 1.731-3.005a2 2 0 0 1 .09-.38c.13.055.28.083.388.17 1.434 1.126 2.245 2.815 2.245 4.904"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tails.svg������������������������������������0000664�0000000�0000000�00000004013�14753064456�0024735�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.356 11.162v3.98c0 .122-.081.154-.181.071l-2.032-1.682a.55.55 0 0 1-.181-.37v-.501l-.635-.516c-.68-.554-1.226-1.677-1.226-2.5 0-.822.549-1.036 1.226-.478l.635.516V9.18c0-.122.081-.154.181-.071l2.032 1.682c.1.082.181.248.181.37zm-2.993-1.265c-.358-.296-.648-.182-.648.253s.29 1.027.648 1.323l.599.486v-1.576zm2.839 10.037.013-.01.037-.036.004-.004a.4.4 0 0 0 .032-.046l.007-.013.019-.042.004-.01a.3.3 0 0 0 .013-.055v-.014l.003-.027.003-.152-5.223-4.28.022-12.91-.147-.111-.004-.003-.034-.02q-.01-.007-.022-.013l-.03-.01q-.015-.007-.03-.011l-.026-.004q-.02-.004-.039-.005H15.8l-.023.001-.037.003-.03.007q-.016.004-.031.01-.015.005-.029.012l-.029.015-.014.01q-.018.005-.035.013l-3.444 1.726.72.57.027 10.067-5.246-4.32-.003-5.241L7.623.328l-.001-.01-.004-.035q-.001-.015-.005-.03l-.008-.03Q7.599.207 7.59.19L7.588.181l-.01-.015Q7.57.15 7.558.135L7.54.112A.4.4 0 0 0 7.466.05L7.44.035Q7.425.028 7.41.022a.4.4 0 0 0-.061-.016L7.314.002 7.294 0l-.009.001-.036.004q-.015.001-.03.005T7.19.019l-.033.012-.009.004L2.825 2.2l-.016.01a.3.3 0 0 0-.077.061.3.3 0 0 0-.053.078.4.4 0 0 0-.023.06.3.3 0 0 0-.01.065q-.002.01-.002.02l.006 10.108v.02l.002.008q0 .023.006.044l.002.009.004.011a.3.3 0 0 0 .02.054v.001h.001a.4.4 0 0 0 .031.05l.007.01.006.006.031.032.006.006q.006.004.01.008.002.001.005.004l4.7 3.909-.107 2.673v.038l.004.025.002.015q0 .008.004.015 0 .006.003.011l.001.005.003.01.017.04v.002a.3.3 0 0 0 .031.049l.006.008.005.005a.3.3 0 0 0 .037.039l.005.003.003.002.003.004 5.317 4.212a.33.33 0 0 0 .35.035l7.988-4 .004-.002a.3.3 0 0 0 .045-.029M5.475 10.985 3.819 9.706v1.1l.844.585-1.392.698-.006-9.376 2.176-1.09.023 2.392-1.546-1.236v1.1l1.554 1.235.024 1.182L3.901 5.02v1.1l1.603 1.275-.006 1.283-1.573-1.257v1.1l1.58 1.256.01 1.187zm3.433 6.038-5.309-4.365 3.668-1.837 5.309 4.365zM6.123 1.282l.733-.367.079 9.34-.733.366zm2.494 7.114-.001-1.59L9.925 7.83l.001 1.591zm1.309-1.828-1.31-1.025V3.952l1.309 1.025zm1.092-.752c.507.646 1.026 1.907 1.026 3.073s-.519 1.562-1.026 1.362z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tailscale.svg��������������������������������0000664�0000000�0000000�00000001105�14753064456�0025561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0m-9 9a3 3 0 1 1-6 0 3 3 0 0 1 6 0m0-9a3 3 0 1 1-6 0 3 3 0 0 1 6 0m6-6a3 3 0 1 1 0-6 3 3 0 0 1 0 6m0-.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5M3 24a3 3 0 1 1 0-6 3 3 0 0 1 0 6m0-.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5m18 .5a3 3 0 1 1 0-6 3 3 0 0 1 0 6m0-.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5M6 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0m9-9a3 3 0 1 1-6 0 3 3 0 0 1 6 0m-3 2.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5M6 3a3 3 0 1 1-6 0 3 3 0 0 1 6 0M3 5.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tailwindcss.svg������������������������������0000664�0000000�0000000�00000000731�14753064456�0026150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.001 4.8q-4.8 0-6 4.8 1.8-2.4 4.2-1.8c.913.228 1.565.89 2.288 1.624C13.666 10.618 15.027 12 18.001 12q4.8 0 6-4.8-1.8 2.4-4.2 1.8c-.913-.228-1.565-.89-2.288-1.624C16.337 6.182 14.976 4.8 12.001 4.8m-6 7.2q-4.8 0-6 4.8 1.8-2.4 4.2-1.8c.913.228 1.565.89 2.288 1.624 1.177 1.194 2.538 2.576 5.512 2.576q4.8 0 6-4.8-1.8 2.4-4.2 1.8c-.913-.228-1.565-.89-2.288-1.624C10.337 13.382 8.976 12 6.001 12"/></svg>���������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/taipy.svg������������������������������������0000664�0000000�0000000�00000000720�14753064456�0024750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.273 4.153a.97.97 0 0 1 .917-.65h21.325a.486.486 0 0 1 .458.646l-1.245 3.56a.97.97 0 0 1-.917.65H.486a.486.486 0 0 1-.459-.646Zm4.855 6.07a.97.97 0 0 1 .917-.65h8.337a.486.486 0 0 1 .458.645l-1.245 3.56a.97.97 0 0 1-.917.65H5.341a.486.486 0 0 1-.458-.646Zm2.698 6.068a.97.97 0 0 1 .917-.65h3.482a.486.486 0 0 1 .458.646l-1.246 3.56a.97.97 0 0 1-.916.65H8.039a.486.486 0 0 1-.458-.646Z"/></svg>������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/taketwointeractivesoftware.svg���������������0000664�0000000�0000000�00000000705�14753064456�0031314�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.012 16.776.417-.257 4.155-3.1c1.413-1.248 2.293-2.686 2.293-4.607-.006-3.849-3.037-5.771-6.614-5.771-1.663 0-3.122.447-4.283 1.256V2.852L0 2.86l.007 4.395 3.85-.008.016 13.886 5.355-.008-.016-13.886h1.443a8 8 0 0 0-.516 2.02l4.518.884c.076-1.376.547-3.102 2.219-3.102 1.101 0 1.753.832 1.753 1.87 0 1.557-1.305 2.653-2.4 3.592l-6.082 4.56.006 4.085 13.642-.016.205-4.371z"/></svg>�����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/talend.svg�����������������������������������0000664�0000000�0000000�00000002301�14753064456�0025066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.875.025c-.41.043-1.233.19-1.795.324-.653.156-1.099.303-1.856.632A11.96 11.96 0 0 0 .974 7.23C.531 8.25.367 8.817.12 10.166c-.117.61-.121.722-.121 1.838s.004 1.228.121 1.838c.247 1.349.411 1.915.852 2.936a11.96 11.96 0 0 0 6.251 6.249c1.021.441 1.588.605 2.937.852.61.117.723.121 1.839.121s1.229-.004 1.839-.121c1.35-.247 1.916-.41 2.937-.852a11.96 11.96 0 0 0 6.25-6.249c.442-1.02.606-1.587.853-2.936.117-.61.121-.722.121-1.838s-.004-1.228-.121-1.838c-.247-1.35-.411-1.916-.852-2.936-1.315-3.062-3.842-5.415-7.06-6.582C15.513.483 14.764.302 13.95.15c-.645-.12-.822-.134-1.735-.147-.558-.008-1.163 0-1.34.022m1.536 5.34.108.104v2.859h2.293l.073.117c.139.212.06.735-.134.934-.069.065-.194.073-1.155.073h-1.081l.013 3.49c.013 3.174.021 3.516.09 3.715.148.445.364.597.831.592.329 0 .597-.064 1.224-.302.381-.139.411-.143.485-.078.1.09.26.424.26.536 0 .143-.347.398-.926.68-.922.444-1.661.613-2.47.557-1.519-.104-2.367-.614-2.678-1.617-.087-.277-.09-.398-.104-3.931l-.013-3.642h-.554c-.618 0-.679-.026-.722-.311-.035-.203.1-.342.459-.467a6.06 6.06 0 0 0 2.496-1.717c.354-.415.48-.601.748-1.116.125-.237.272-.467.32-.506a.32.32 0 0 1 .437.03"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/talenthouse.svg������������������������������0000664�0000000�0000000�00000000771�14753064456�0026163�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.373 7.42V0H1.627v7.42h6.66V24h7.428V7.42h6.66zM12.31 0h-.623zm-.004 3.41V.618h8.865L17.652 3.41Zm-5.948 0L2.83.618h8.857V3.41zm-.608.308-3.503 2.76V.949ZM2.837 6.802l3.52-2.781h4.894L8.46 6.8H2.837Zm6.068.438 2.78-2.782v14.781l-1.602 2.046-1.183 1.51Zm.326 16.142.555-.706 2.216-2.825 2.77 3.535zm3.078-18.924 2.786 2.782v15.556l-2.786-3.556zM15.55 6.8l-2.8-2.78h4.904l3.519 2.78zm6.206-.322L18.25 3.71 21.744.963l.02-.015Z"/></svg>�������mkdocs-material-9.6.4/material/templates/.icons/simple/talos.svg������������������������������������0000664�0000000�0000000�00000001751�14753064456�0024751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.678 11.98c0-2.664-1.13-6.896-2.867-10.804a12 12 0 0 0-1.585.917c1.608 3.668 2.647 7.553 2.647 9.886 0 2.254-1.08 6.145-2.735 9.865a12 12 0 0 0 1.576.93c1.79-3.976 2.964-8.229 2.964-10.795m6.442 0c0-2.336 1.042-6.22 2.646-9.89a12 12 0 0 0-1.608-.922c-1.756 3.957-2.843 8.166-2.843 10.816 0 2.564 1.177 6.819 2.965 10.797a12 12 0 0 0 1.575-.931c-1.655-3.723-2.735-7.616-2.735-9.87m5.45 6.525.31.307a12 12 0 0 0 .936-1.612c-1.866-1.893-3.457-3.938-3.47-5.233-.012-1.264 1.57-3.308 3.446-5.222a12 12 0 0 0-.945-1.603l-.259.258c-2.739 2.766-4.063 4.92-4.047 6.583.016 1.662 1.332 3.81 4.028 6.522M2.411 5.405l-.26-.259a12 12 0 0 0-.946 1.608c3.123 3.173 3.452 4.704 3.448 5.217-.012 1.3-1.603 3.34-3.47 5.229a12 12 0 0 0 .939 1.608c.106-.106.207-.204.31-.308 2.694-2.711 4.01-4.842 4.026-6.516S5.15 8.175 2.411 5.404M12.002 24c.303 0 .602-.016.898-.037V.037A12 12 0 0 0 12 0c-.304 0-.605.015-.905.037v23.925q.448.035.903.038z"/></svg>�����������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tamiya.svg�����������������������������������0000664�0000000�0000000�00000000655�14753064456�0025115�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 6.408v4.27h4.496l1.36-4.27Zm5.856 0 1.398 4.27h4.496v-4.27Zm5.894 4.27-3.627 2.644 1.398 4.27h2.23Zm-2.23 6.914-3.664-2.645-3.627 2.645Zm-7.291 0 1.398-4.27L0 10.678v6.914zM12.25 6.408v4.27h4.496l1.36-4.27zm5.856 0 1.398 4.27H24v-4.27ZM24 10.678l-3.627 2.644 1.398 4.27H24Zm-2.23 6.914-3.664-2.645-3.627 2.645zm-7.29 0 1.397-4.27-3.627-2.644v6.914z"/></svg>�����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tampermonkey.svg�����������������������������0000664�0000000�0000000�00000001315�14753064456�0026336�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.955.002C3-.071.275 2.386.043 5.335c-.069 3.32-.011 6.646-.03 9.969.06 1.87-.276 3.873.715 5.573 1.083 2.076 3.456 3.288 5.77 3.105 4.003-.011 8.008.022 12.011-.017 2.953-.156 5.478-2.815 5.482-5.772-.007-4.235.023-8.473-.015-12.708C23.82 2.533 21.16.007 18.205.003c-4.083-.005-8.167 0-12.25-.002zm.447 12.683c2.333-.046 4.506 1.805 4.83 4.116.412 2.287-1.056 4.716-3.274 5.411-2.187.783-4.825-.268-5.874-2.341-1.137-2.039-.52-4.827 1.37-6.197a4.9 4.9 0 0 1 2.948-.99zm11.245 0c2.333-.046 4.505 1.805 4.829 4.116.413 2.287-1.056 4.716-3.273 5.411-2.188.783-4.825-.268-5.875-2.341-1.136-2.039-.52-4.827 1.37-6.197a4.9 4.9 0 0 1 2.949-.99z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/taobao.svg�����������������������������������0000664�0000000�0000000�00000006610�14753064456�0025073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.31 9.9a.959.959 0 1 1 0 1.918.959.959 0 0 1 0-1.917m2.39 3.047H13.292v-.96h4.15V9.76h-2.887v-.768h2.887v-.923h-2.508v.203h-1.642V5.373h1.642v.35c.494-.06 1.463-.181 2.517-.296v-.825h1.852v.64c.925-.08 1.753-.13 2.211-.11 1.49.07 2.445.28 2.485 1.272.036.99-1.424 1.905-1.424 1.905l-.45-.434v.193h-2.813v.923h3.23v.768h-3.23v2.228H23.7zm-2.174-5.648-.012-.011s1.373-.76.343-1.272c-.863-.43-5.534.305-6.923.625V7.3zM1.882 6.417a1 1 0 0 0 0-2 1 1 0 0 0-1 1 1 1 0 0 0 1 1m3.41-.86a7 7 0 0 0 .371-.72l-1.466-.412s-.59 1.93-1.644 2.828c0 0 1.02.59 1.01.573a10 10 0 0 0 .781-.88c.235-.1.459-.197.68-.287-.272.487-.71 1.22-1.148 1.681l.618.539s.42-.404.879-.891h.524v.9H3.856v.72h2.041v1.723q-.038 0-.078-.002c-.224-.01-.575-.047-.712-.265-.168-.263-.044-.75-.035-1.046H3.661l-.05.026s-.517 2.315 1.49 2.263c1.879.052 2.954-.523 3.472-.918l.206.764 1.158-.482-.785-1.919-.94.292.176.658c-.242.18-.518.316-.819.413V9.608h1.995v-.72H7.57v-.9h2.003v-.72H6.015c.257-.311.459-.598.51-.78l-.62-.168c2.661-.952 4.142-.789 4.129.773v4.113s.156 1.412-1.461 1.31l-.876-.187-.207.83s3.782 1.081 4.091-1.824-.077-4.758-.077-4.758-.345-2.682-6.213-1.02zM.058 12.153l1.587.99c1.097-2.38 1.026-2.065 1.302-2.92.283-.873.345-1.54-.136-2.022-.617-.62-.685-.677-1.602-1.358l-.66 1.013 1.216.758s.814.415.428 1.19c-.362.738-2.135 2.35-2.135 2.35m19.94 6.849s-.018.523-.67.523c-.59 0-.636-.411-.636-.411-.249.3-.621.454-1.07.454-.76 0-1.296-.513-1.296-1.29 0-.785.557-1.28 1.398-1.28.383 0 .725.147.926.404q.012-.105.014-.196c0-.563-.31-.813-1.01-.813-.339 0-.666.049-1.014.14.11-.218.192-.379.297-.457.12-.097.43-.14.942-.14 1.269 0 1.742.425 1.742 1.427v1.203c0 .316.033.436.377.436zm-1.327-.745c0-.482-.255-.747-.638-.747-.404 0-.667.282-.667.76 0 .466.278.76.654.76.388 0 .651-.274.651-.773m5.27-.501c0 1.153-.692 1.827-1.778 1.827-1.096 0-1.777-.674-1.777-1.827 0-1.159.681-1.825 1.777-1.825 1.086 0 1.779.671 1.779 1.825m-1.086 0c0-.87-.237-1.3-.692-1.3-.473 0-.694.43-.694 1.3 0 .866.22 1.299.694 1.299.467 0 .692-.433.692-1.3m-7.131-.044c0 1.17-.654 1.856-1.577 1.856-.423 0-.806-.163-1.047-.47 0 0-.108.427-.661.427-.689 0-.665-.523-.665-.523.387.016.376-.215.376-.436V15.68c0-.356-.074-.48-.427-.487.014-.107.078-.538.679-.538.816 0 .761.915.761.915v.786c.23-.268.552-.394.99-.394.963 0 1.57.645 1.57 1.75m-1.094.08c0-.898-.272-1.355-.762-1.355-.439 0-.74.396-.74 1.104v.36c0 .721.316 1.117.763 1.117.477 0 .739-.413.739-1.226m-3.243-.036c0 1.153-.688 1.827-1.78 1.827-1.094 0-1.773-.674-1.773-1.827 0-1.159.68-1.825 1.773-1.825s1.78.671 1.78 1.825m-1.083 0c0-.87-.236-1.3-.697-1.3-.467 0-.688.43-.688 1.3 0 .866.22 1.299.688 1.299.469 0 .697-.433.697-1.3m-5.99-2.716c-.267.078-.79.097-1.55.097-.926 0-1.54-.039-1.855-.039-.52 0-.726.134-.909.66.3-.103.673-.11 1.135-.11.352 0 .411.044.411.295v2.903c0 .282.118.679.726.679.71 0 .834-.526.834-.526-.355-.007-.425-.131-.425-.487v-2.56c0-.267.102-.28.471-.28.126 0 .21.007.26.007.546 0 .69-.104.903-.64m3.131 3.962s-.018.523-.666.523c-.556 0-.64-.412-.64-.412-.249.3-.621.455-1.066.455-.766 0-1.3-.513-1.3-1.29 0-.785.557-1.28 1.4-1.28.384 0 .727.147.925.404.004-.07.01-.136.01-.196 0-.563-.304-.813-1.006-.813-.338 0-.667.049-1.015.14.113-.218.192-.379.294-.457.13-.097.433-.14.947-.14 1.265 0 1.746.425 1.746 1.427v1.203c0 .316.028.436.371.436m-1.326-.745c0-.482-.256-.747-.638-.747-.401 0-.667.282-.667.76 0 .466.28.76.652.76.389 0 .653-.274.653-.773"/></svg>������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tapas.svg������������������������������������0000664�0000000�0000000�00000006726�14753064456�0024746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.67 1.56c.282-.134.542-.338.81-.513.253-.163.54-.436.894-.33.103.296-.162.503-.331.662-.538.511-1.154.975-1.72 1.456A240 240 0 0 1 1.5 7.598a7 7 0 0 1-.612.445c-.183.118-.456.359-.71.165.071-.337.306-.567.512-.778.213-.216.414-.446.629-.66-.248-.427-.473-.821-.662-1.274-.186-.449-.378-.971-.38-1.554-.002-1.109.635-2.043 1.34-2.68C2.34.61 3.306.066 4.429.006 6.015-.078 6.933.71 7.67 1.56m5.012 18.075v.198c-.278.01-.532-.01-.795-.016v-.198c.277-.008.535.006.795.016m-1.59 0v.198c-.282-.012-.52.021-.792.018v-.198a10 10 0 0 1 .793-.018zm3.177.05c-.007.067.013.158-.017.199-.251-.02-.518-.024-.778-.033v-.198c.275.003.542.009.795.032m-4.763 0v.199c-.274.002-.512.039-.795.032v-.197c.28.001.516-.036.795-.034m5.555.034c.255.033.544.029.793.064.013.084-.014.129-.015.2-.255-.033-.544-.03-.794-.067a.7.7 0 0 0 .016-.197m-7.142.065v.2c-.26.02-.517.046-.778.065-.022-.05-.018-.126-.017-.198.265-.024.521-.053.795-.067m8.73.067c.269.023.537.048.793.082-.02.058-.004.148-.032.199-.25-.036-.518-.053-.778-.083-.01-.083.017-.128.017-.198m-10.319.082c-.006.08.03.113.017.199-.259.022-.568.082-.793.082.012-.077-.02-.114-.018-.182.252-.045.529-.066.794-.099m12.684.199c.012.084-.027.114-.017.196-.256-.044-.54-.063-.794-.114.01-.058.025-.109.017-.182.228.008.545.062.795.1zm-14.288 0c.06.022.033.133.05.196q-.388.06-.777.117a.7.7 0 0 1-.034-.197c.253-.038.515-.072.761-.116m15.86.233a.6.6 0 0 1-.034.213c-.247-.055-.52-.083-.777-.132a.7.7 0 0 1 .034-.197c.263.032.503.09.776.116zm-17.414.016c.02.057.036.116.034.196-.263.04-.503.105-.778.133-.004-.073-.034-.12-.033-.197.275-.028.515-.092.777-.132m18.208.132c.255.052.508.109.778.148-.004.072-.034.119-.034.197-.28-.021-.495-.11-.778-.133-.018-.041.016-.15.034-.212m1.289-3.787c.156.092.47.098.595.246.099.115.144.486.182.744.203 1.296.287 2.808.332 4.219.008.266.016.583.016.891 0 .298.06.704 0 .91-.041.147-.24.194-.363.264a57 57 0 0 0-.065-2.843c-.124-.101-.444-.047-.464-.166-.044-.252.267-.09.447-.065-.045-1.272-.177-2.46-.33-3.623-.147-.074-.336-.105-.498-.164-.252.259-.636.939-1.223.81-.22-.047-.363-.342-.464-.545a3.2 3.2 0 0 1-.265-.744c-4.88-.936-11.589-1.016-16.502-.05-.153.655-.43 2.053-1.34 1.52a2 2 0 0 1-.81-.991 8 8 0 0 1-.547.133c-.192 1.084-.288 2.268-.346 3.489.166.01.416-.122.595-.1.004.066.028.114.033.18-.166.106-.437.105-.645.166a45 45 0 0 0-.066 2.976c-.08.022-.273-.122-.347-.213.064-2.301.179-4.553.363-6.732.28-.087.568-.17.844-.264-.04-.383-.117-.827.05-1.09.14-.224.531-.352.81-.432.99-.28 1.979-.05 2.63.413.14.102.247.239.396.299.025-.09-.094-.15-.149-.199-.567-.511-1.498-.958-2.612-.761-.348-1.09-.79-2.142-.794-3.538-.005-1.553.562-2.899 1.205-3.953.66-1.078 1.541-1.954 2.498-2.645a11.5 11.5 0 0 1 8.087-2.051c3.01.369 5.008 1.79 6.45 3.853.69.99 1.248 2.174 1.62 3.524.374 1.352.378 3.098-.05 4.53-1.383-.283-2.637.15-3.125 1.026-.004.015-.016.017-.016.033.498-.678 1.736-1.168 2.976-.86.328.082.746.2.908.43.224.317.122.989-.016 1.373M16.22 9.382c.055.383.227.783.445.944.376.27.602.001.63-.38.035-.504-.174-1.1-.431-1.324-.105-.09-.299-.145-.412-.115-.256.065-.283.528-.232.875m-8.649 1.092c-.033.556.16 1.277.529 1.472.43.227.633-.095.661-.495.045-.626-.273-1.714-.86-1.605-.25.047-.313.339-.33.628m6.83 2.579c-.266.06-.633-.058-.926-.117a22 22 0 0 0-.91-.164c-.567-.088-1.344-.211-1.9.1-.198.11-.444.351-.465.662-.027.46.342.791.612.993.323.237.663.399 1.092.527.917.278 2.293.353 3.075.017.735-.316 1.706-1.062 1.72-2.05.01-.59-.272-1.119-.859-1.042-.65.085-.882.951-1.44 1.074z"/></svg>������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/target.svg�����������������������������������0000664�0000000�0000000�00000000412�14753064456�0025106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0c6.627 0 12 5.373 12 12s-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0m0 19.826a7.827 7.827 0 1 0 0-15.652 7.827 7.827 0 0 0 0 15.652m0-3.985a3.84 3.84 0 1 1 0-7.68 3.84 3.84 0 0 1 0 7.68"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tarom.svg������������������������������������0000664�0000000�0000000�00000001207�14753064456�0024745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.054 0C5.424 0 .028 5.37 0 11.973 0 18.603 5.424 24 12.054 24 18.657 24 24 18.603 24 11.973 24 5.398 18.657 0 12.054 0m0 .877c2.603 0 5.068.96 6.986 2.52L7.178 15.123a21 21 0 0 1-.75-.101c-.55-.082-.988-.147-1.552-.089-.904.082-2.135.876-2.902 1.725a11.2 11.2 0 0 1-1.015-4.711C.959 5.864 5.917.877 12.054.877m7.37 2.876c2.247 2.054 3.672 4.987 3.672 8.22 0 2.137-.549 4.055-1.59 5.753l-10.218-1.862ZM4.876 16.738c.795.028 1.644.084 2.521.33l9.534 4.712-5.15-4.219 9.479.547c-2 3.014-5.398 4.96-9.179 4.96-4.328 0-8.082-2.465-9.945-6.054.96-.164 1.809-.303 2.74-.276"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/task.svg�������������������������������������0000664�0000000�0000000�00000000302�14753064456�0024560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.857 18.013 11.736 24V12.456L1.857 6.468Zm20.286 0V6.468l-9.879 5.988V24Zm-.246-12.014L12 0 2.103 5.999 12 11.998Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tasmota.svg����������������������������������0000664�0000000�0000000�00000000430�14753064456�0025270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0 0 12l1.371 1.372L12 2.743l10.629 10.629L24 12zm0 8.463a7.41 7.41 0 0 0-2.64 14.334v-2.133a5.464 5.464 0 0 1 1.671-10.17V24h1.94V10.494a5.464 5.464 0 0 1 1.669 10.171v2.133A7.41 7.41 0 0 0 12 8.463"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tata.svg�������������������������������������0000664�0000000�0000000�00000001565�14753064456�0024563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.774 11.568c.193-1.322.168-2.013-1.768-1.906-2.223.124-4.476.265-7.849 1.027A5.6 5.6 0 0 0 0 12c0 1.52.618 2.99 1.787 4.254 1.06 1.144 2.556 2.095 4.326 2.752a15.5 15.5 0 0 0 2.014.588c.13-.527.959-3.907 1.616-7.823l.03-.202m14.07-.88c-3.372-.762-5.624-.902-7.846-1.026-1.937-.107-1.962.584-1.768 1.906l.046.298c.65 3.848 1.458 7.16 1.598 7.72C20.595 18.508 24 15.516 24 12q-.001-.665-.157-1.311m-.491-1.324a7.2 7.2 0 0 0-1.14-1.618c-1.06-1.144-2.555-2.095-4.325-2.752-1.784-.662-3.82-1.011-5.887-1.011-2.068 0-4.103.35-5.887 1.01-1.77.658-3.266 1.61-4.326 2.753A7.2 7.2 0 0 0 .648 9.366c2.304-.557 6.245-1.293 9.904-1.37.353-.008.596.105.756.307.196.248.18 1.128.175 1.522l-.104 10.18a19 19 0 0 0 1.244 0l-.104-10.18c-.005-.394-.02-1.274.175-1.522.16-.202.403-.315.756-.308 3.658.078 7.597.813 9.902 1.37"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tauri.svg������������������������������������0000664�0000000�0000000�00000001160�14753064456�0024745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.912 0a8.72 8.72 0 0 0-8.308 6.139c1.05-.515 2.18-.845 3.342-.976 2.415-3.363 7.4-3.412 9.88-.097s1.025 8.084-2.883 9.45a6.1 6.1 0 0 1-.3 2.762 8.7 8.7 0 0 0 3.01-1.225A8.72 8.72 0 0 0 13.913 0zm.082 6.451a2.284 2.284 0 1 0-.15 4.566 2.284 2.284 0 0 0 .15-4.566m-5.629.27a8.7 8.7 0 0 0-3.031 1.235 8.72 8.72 0 1 0 13.06 9.913 10.2 10.2 0 0 1-3.343.965 6.125 6.125 0 1 1-7.028-9.343 6.114 6.115 0 0 1 .342-2.772zm1.713 6.27a2.284 2.284 0 0 0-2.284 2.283 2.284 2.284 0 0 0 2.284 2.284 2.284 2.284 0 0 0 2.284-2.284 2.284 2.284 0 0 0-2.284-2.284z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/taxbuzz.svg����������������������������������0000664�0000000�0000000�00000003273�14753064456�0025337�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.79 6.255c3.939-2.066 5.753.089 5.753.089-2.289-.952-5.753-.089-5.753-.089m6.556.089c-1.245-1.204-.595-4.787-.595-4.787-1.754 3.27.595 4.787.595 4.787m14.821 8.8s.312.728.505 1.606l-8.548 6.452-2.343-6.373c-.704.236-2.667.723-5.506.055-3.598-.847-3.835-1.516-4.995-2.319S.318 12.068.124 11.413c-.193-.654-.208-1.918.297-2.825s1.903-1.501 1.903-1.501.818-.342 2.988-.446c2.172-.104 3.614.639 3.614.639s-.788-2.601-.238-4.727S10.903.829 10.903.829s1.606.416 2.943 2.602c.885 1.445 1.177 2.263 1.274 2.654 1.535-.355 3.389-1.046 5.349-2.304 0 0 .954 2.695 3.531 10.785zm-11.551-7.76.55 1.412c4.765.238 7.938-2.453 7.938-2.453l-.327-.847c-4.177 2.84-8.161 1.888-8.161 1.888m-.776-5.66s1.182 1.691 2.096 4.62c0 0 .981.085 1.762-.227-.001 0-1.506-4.237-3.858-4.393m-.569 6.734.557.112-.825-2.364c2.071.228 2.341.138 2.341.138-.424-1.959-1.84-4.675-1.84-4.675-.958.144-1.136 1.293-1.136 1.293-.703 3.267.903 5.496.903 5.496m-8.942.602c6.69 1.16 9.968 3.769 9.968 3.769L9.891 9.033S8.469 7.505 5.209 7.436c-3.244-.067-3.88 1.624-3.88 1.624m11.016 6.657-.728-1.951c-4.62-3.2-10.354-4.504-10.354-4.504s-.156.19-.212 1.026.346 1.628.948 2.598 1.762 1.594 2.564 2.099c.803.505 2.839.978 4.616 1.12 1.787.14 3.166-.388 3.166-.388m.579-4.705c5.337-.268 7.79-2.787 7.79-2.787l-.446-1.257c-3.345 2.869-7.879 2.497-7.879 2.497zm.996 2.527c4.668-.788 7.344-3.479 7.344-3.479l-.387-1.189c-3.226 2.81-7.671 2.78-7.671 2.78zm.967 2.713c3.925-1.527 7.024-4.382 7.024-4.382l-.39-1.137c-3.267 2.754-7.403 3.456-7.403 3.456zm7.648-2.386-.479-1.316c-2.341 2.33-6.946 4.393-6.946 4.393l.751 1.94zm-18.01 3.077c3.687 3.062 8.08.461 8.08.461-4.72 1.085-8.08-.461-8.08-.461"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tcs.svg��������������������������������������0000664�0000000�0000000�00000002741�14753064456�0024420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 16.262c0-1.305-.522-2.174-1.827-3.088l-1.785-1.24c-.033-.022-.06-.045-.092-.068-.629-.473-.91-.912-.91-1.43 0-.696.567-1.13 1.371-1.13 1.022 0 1.503.477 2.111.477.479 0 .805-.326.805-.804 0-.348-.174-.631-.631-.848-.718-.348-1.503-.48-2.35-.48-.892 0-1.676.262-2.241.697v-.001a4 4 0 0 0-.326.283l-.008.01c-.65.695-1.19 1.714-1.623 3.145l-.501 1.652c-.893 2.912-2.306 4.304-4.504 4.304-2.415 0-3.938-1.675-3.938-4.153v.026-.025c0-2.468 1.509-4.159 3.69-4.174l.03-.002a4.86 4.86 0 0 1 2.089.457c.282.13.522.174.74.174.1 0 .192-.017.279-.041.362-.103.592-.408.592-.83 0-.326-.196-.653-.653-.87-.827-.414-1.894-.653-3.046-.653-.86 0-1.653.152-2.359.436-2.117.851-3.452 2.886-3.452 5.545l.002-.024-.001.024c0 .931.169 1.783.479 2.536-.452.985-1.143 1.509-2.046 1.509-1.087 0-1.804-.63-1.806-2.06V9.477h2.546c.588 0 .979-.348.979-.848s-.39-.848-.98-.848H2.09V5.563c0-.653-.435-1.088-1.044-1.088C.435 4.475 0 4.911 0 5.563v10.285c0 2.393 1.37 3.655 3.7 3.655.486.001.97-.08 1.43-.24h.005a3.5 3.5 0 0 0 1.81-1.514c1.034 1.117 2.565 1.775 4.48 1.775.999 0 1.868-.195 2.65-.607h.003c1.588-.827 2.72-2.502 3.503-5.068l.457-1.5a3 3 0 0 1-.162-.234c.308.492.785.953 1.468 1.43l1.631 1.13c.244.17.463.34.668.51.289.322.378.67.378 1.078 0 .935-.74 1.566-1.807 1.566-1.022 0-1.893-.522-2.371-.522s-.806.325-.806.804c0 .348.174.63.632.848.631.304 1.653.566 2.567.566 1.153 0 2.111-.348 2.785-.957a2 2 0 0 0 .156-.161A3.1 3.1 0 0 0 24 16.262"/></svg>�������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/teal.svg�������������������������������������0000664�0000000�0000000�00000001246�14753064456�0024553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.069 2.334v4.129h7.897a3.17 3.17 0 0 1 2.25.947c.596.604.932 1.425.933 2.281l.008 4.244v3.61H7.253A3.17 3.17 0 0 1 5 16.598a3.25 3.25 0 0 1-.932-2.283V6.463H0v8.014c0 .944.184 1.879.541 2.752a7.2 7.2 0 0 0 1.537 2.332 7.1 7.1 0 0 0 2.301 1.558c.86.362 1.783.547 2.714.547h4.723a3.32 3.32 0 0 0 2.365-.992c.627-.636.98-1.498.98-2.397v-.732h8.824l-2.328-2.283L24 12.965h-6.309a5.8 5.8 0 0 0 2.191-2.884 5.9 5.9 0 0 0 .071-3.639 5.8 5.8 0 0 0-2.075-2.971 5.7 5.7 0 0 0-3.411-1.137zm6.707 6.137c-1.212 0-2.194.997-2.194 2.225s.982 2.225 2.194 2.225 2.194-.996 2.194-2.225c0-1.228-.982-2.225-2.194-2.225"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/teamcity.svg���������������������������������0000664�0000000�0000000�00000000710�14753064456�0025440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm2.664 2.964h7.48v1.832H7.396v7.196H5.412V4.796H2.664zm9.328 18h-9v-1.5h9zm5.564-9.218a4.6 4.6 0 0 1-2.036.374 4.556 4.556 0 0 1-4.628-4.616V7.48A4.584 4.584 0 0 1 15.6 2.812 4.66 4.66 0 0 1 19.16 4.2l-1.264 1.456a3.34 3.34 0 0 0-2.312-1.02 2.67 2.67 0 0 0-2.616 2.8v.028a2.68 2.68 0 0 0 2.616 2.836 3.23 3.23 0 0 0 2.376-1.056l1.264 1.276a4.6 4.6 0 0 1-1.668 1.226"/></svg>��������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/teamspeak.svg��������������������������������0000664�0000000�0000000�00000007534�14753064456�0025606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.005.605h-.09l-.028.001h-.064l-.03.001-.07.001-.02.001-.09.003h-.022l-.07.003-.03.001-.063.003L11.4.62l-.09.005-.09.006h-.015l-.01.001-.064.005-.03.002-.07.005-.02.002-.088.008-.02.001-.07.007-.027.003-.065.006-.025.003-.088.01-.09.01-.023.003-.066.008-.008.002-.015.002h-.003l-.073.01-.015.002-.05.007-.04.006-.014.002-.073.01-.024.005-.07.01-.02.004-.088.015-.035.006-.018.004-.035.006-.02.003-.07.013-.02.004-.08.015h-.003l-.004.001-.005.001-.087.018-.007.002H9.57l-.034.008-.043.01-.018.002L9.4.89l-.013.003-.09.02-.09.02-.01.003-.08.02-.011.003-.087.022-.092.024-.088.024-.01.002-.084.024h-.003l-.09.026-.091.027H8.56l-.073.023-.01.003-.005.002h-.003l-.028.01-.19.062-.08.025-.257.091-.075.027a8 8 0 0 0-.305.12q-.03.01-.061.023l-.144.06a13 13 0 0 0-.53.24l-.07.034-.08.04q-.256.128-.506.267-.231.27-.45.548l-.06.08-.036.043.005-.003q-.054.073-.11.146-.117.154-.231.31-.085.12-.167.243-.123.175-.24.355-.08.126-.158.25c-.074.12-.15.24-.22.362q-.076.128-.148.258c-.07.126-.141.25-.21.38q-.067.13-.132.26a16 16 0 0 0-.187.379q-.067.144-.132.29a16 16 0 0 0-.433 1.063l-.05.128.009-.012q-.192.534-.348 1.084l-.107.049-.015.006a5 5 0 0 0-.56.307l-.035.022a5 5 0 0 0-.493.37l-.045.038a5 5 0 0 0-.427.427l-.044.05a5 5 0 0 0-.366.488l-.025.04a5 5 0 0 0-.302.553l-.01.024a5 5 0 0 0-.227.606l-.003.013q-.091.311-.14.64v.01a4.7 4.7 0 0 0 0 1.318v.01q.049.328.14.64l.004.014q.092.312.226.605l.01.024q.134.288.303.554l.024.038q.168.259.368.49l.041.049q.2.226.426.426l.048.04q.232.2.49.367l.04.027q.267.17.557.304l.015.006q.295.135.61.228l.017.005q.311.09.637.138l.012.002a4.7 4.7 0 0 0 1.315 0l.012-.002q.327-.047.637-.138l.017-.005a5 5 0 0 0 .609-.227l.017-.008q.289-.134.555-.303l.042-.027q.256-.167.49-.366l.045-.04q.228-.2.429-.43l.039-.044q.2-.234.37-.493l.02-.035a5 5 0 0 0 .306-.557l.01-.021q.134-.295.227-.61l.002-.008q.091-.312.14-.64v-.02a4.7 4.7 0 0 0 .04-.881v-.002q-.001-.074-.01-.147l-.006-.085a4 4 0 0 0-.028-.222v-.005a4.6 4.6 0 0 0-.304-1.098v-.001q-.045-.105-.094-.21l-.002-.003-.083-.165-.02-.04-.07-.123-.05-.085-.037-.06-.087-.137-.012-.016A4.7 4.7 0 0 0 7.14 8.635q-.027-.017-.053-.033l-.096-.055q-.053-.032-.11-.063l-.044-.022a4.6 4.6 0 0 0-1.368-.464 13.7 13.7 0 0 1 3.39-5.233 10.3 10.3 0 0 1 3.147-.493c5.7 0 10.329 4.629 10.33 10.329v.002c0 2.13-.647 4.11-1.753 5.756l-.013.018C18.5 21.46 14.682 23.57 9.503 23.02l.02.016c5.2 1.138 9.375-.545 11.882-3.46l-.018.026a11 11 0 0 0 .308-.372q.026-.035.054-.071.141-.183.275-.37l.1-.146a11 11 0 0 0 .506-.816l.076-.133q.26-.48.469-.981l.062-.158a11 11 0 0 0 .314-.901q.025-.08.047-.157a10 10 0 0 0 .136-.527l.003-.018q.057-.256.103-.516l.025-.16a11 11 0 0 0 .108-.95q.008-.09.012-.177.014-.272.015-.545C24.001 5.982 18.626.605 12.005.605m.232 3.277c1.363 1.373 2.135 3.205 2.41 5.229.104.765-.046 1.61-.77 2.13-.058.333.115.696.267 1.055.388.92.98 1.757 1.408 2.642.384.798-.632 1.388-1.374 1.63a6 6 0 0 1-.275.084c.048.383.274.67.215 1.003a.98.98 0 0 1-.372.6s.28.878-.38 1.26c-.152.087-.33.104-.364.34-.064.468-.134.926-.504 1.307q-.084.085-.177.159c4.326-.152 7.97-3.507 8.372-7.93.435-4.794-3.104-9.04-7.9-9.476a9 9 0 0 0-.556-.034zm-1.973.17a8.7 8.7 0 0 0-2.003.672c.388.134.736.316.97.534 1.09 1.01 1.629 2.003 1.93 3.383.267 1.218.395 1.809-.245 2.253-.865.6.923 3.164 1.272 3.906-.46.592-1.062.579-1.38.743-.176.09-.103.426-.074.685.028.254.26.413.133.61-.114.175-.55.188-.737.31.182.2.585.399.53.658-.04.2-.492.166-.666.622-.093.245-.045.698-.238.927-.448.53-.917.62-1.85.517a16 16 0 0 1-.908-.127 8.6 8.6 0 0 0 2.263 1.137c.25.082.517.11.78.082.492-.046.834-.226 1.166-.62.22-.26.165-.776.27-1.054.199-.52.713-.478.76-.706.06-.296-.398-.523-.604-.75.214-.138.707-.153.838-.353.145-.223-.12-.404-.152-.693-.032-.294-.115-.676.085-.78.36-.186 1.045-.172 1.569-.844-.397-.844-2.43-3.76-1.447-4.442.728-.506.583-1.177.28-2.563-.344-1.57-.957-2.698-2.195-3.847a2.2 2.2 0 0 0-.347-.26"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/teamviewer.svg�������������������������������0000664�0000000�0000000�00000000673�14753064456�0026001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.17 11.998-6.225-3.401.685 2.144H9.37l.684-2.145L3.829 12l6.225 3.404-.683-2.147h5.26l-.686 2.147zM20.448 0H3.553A3.553 3.553 0 0 0 .001 3.552v16.895A3.553 3.553 0 0 0 3.553 24h16.895A3.553 3.553 0 0 0 24 20.447V3.552A3.553 3.553 0 0 0 20.448 0M12 21.646c-5.328 0-9.648-4.32-9.648-9.648 0-5.329 4.32-9.646 9.648-9.646s9.65 4.32 9.65 9.648-4.32 9.648-9.649 9.648z"/></svg>���������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/techcrunch.svg�������������������������������0000664�0000000�0000000�00000000202�14753064456�0025743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 6v4h4v8h4v-8h4V6Zm12 4v8h12v-4h-8v-4zm4 0h8V6h-8z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ted.svg��������������������������������������0000664�0000000�0000000�00000000566�14753064456�0024406�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 7.664v2.223h2.43v6.449H5.1v-6.45h2.43V7.665zm7.945 0v8.672h7.31v-2.223h-4.638v-1.08h4.637v-2.066h-4.637v-1.08h4.637V7.664zm7.759 0v8.672h3.863c3.024 0 4.433-1.688 4.433-4.349 0-2.185-1.021-4.323-3.912-4.323zm2.672 2.223h.85c1.931 0 2.102 1.518 2.102 2.063 0 .815-.243 2.163-1.907 2.163h-1.045z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/teepublic.svg��������������������������������0000664�0000000�0000000�00000017713�14753064456�0025610�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.998.488s-.57.33-.68.982c-.097.584.138 1.114.19 1.22q-.613.383-1.165.849c.506-.577.561-1.384.038-2.147 0 0-.516.41-.53 1.07-.013.6.306 1.096.365 1.183q-.507.443-.956.95c.356-.63.27-1.396-.335-2.043 0 0-.448.483-.363 1.138.074.568.433.999.527 1.103q-.333.394-.628.823-.15.222-.289.45c.39-.726.232-1.569-.53-2.179 0 0-.375.543-.196 1.179.175.62.68 1.016.705 1.035q-.416.684-.718 1.42c.226-.78-.098-1.562-.955-2.006 0 0-.26.605.04 1.194.28.551.821.84.89.874q-.27.668-.444 1.368c.063-.763-.372-1.445-1.247-1.747 0 0-.17.636.21 1.175.346.487.894.696.997.732q-.145.627-.211 1.273c-.11-.69-.63-1.226-1.476-1.382 0 0-.073.655.385 1.131.382.396.9.534 1.062.569a11 11 0 0 0-.01 1.342C1.48 11.351.881 10.872 0 10.839c0 0 .022.659.544 1.064.45.349 1.004.402 1.149.41q.06.7.21 1.382c-.308-.657-.984-1.032-1.864-.911 0 0 .135.645.72.953.503.265 1.059.223 1.203.205q.166.672.42 1.316c-.396-.623-1.128-.905-1.992-.655 0 0 .227.618.85.838.549.195 1.105.062 1.228.028q.256.605.585 1.176c-.487-.514-1.23-.66-2.019-.296 0 0 .318.578.966.703.554.106 1.067-.091 1.205-.151a10 10 0 0 0 .895 1.231c-.566-.568-1.4-.667-2.201-.145 0 0 .397.526 1.057.556.635.029 1.163-.318 1.202-.344q.538.626 1.165 1.155c-.675-.49-1.54-.44-2.245.249 0 0 .493.438 1.146.337.643-.098 1.1-.56 1.114-.574q.583.491 1.231.892c-.724-.35-1.545-.164-2.127.598 0 0 .551.362 1.183.169.592-.181.97-.665 1.015-.724q.571.346 1.183.617c-.705-.135-1.4.187-1.824.958 0 0 .599.276 1.195-.009.51-.245.806-.712.88-.84q.655.27 1.344.447c-.751-.069-1.43.349-1.75 1.205 0 0 .633.186 1.18-.182.494-.332.718-.872.757-.977l.153.035.081.018q1.056.232 1.864.497c-.82.315-1.6.74-1.958 1.293a.097.097 0 0 0 .081.15.1.1 0 0 0 .081-.045c.31-.478 1.012-.912 2.093-1.296 1.082.384 1.783.818 2.093 1.296a.1.1 0 0 0 .082.044.097.097 0 0 0 .081-.15c-.359-.552-1.138-.977-1.958-1.292a19 19 0 0 1 1.863-.497l.082-.018q.075-.016.152-.035c.04.105.263.645.757.977.548.368 1.18.182 1.18.182-.32-.856-.998-1.274-1.75-1.205a10 10 0 0 0 1.345-.448c.074.129.369.596.88.841.595.285 1.195.01 1.195.01-.424-.772-1.12-1.094-1.825-.959q.611-.27 1.183-.617c.046.06.424.543 1.015.724.632.193 1.183-.17 1.183-.17-.582-.761-1.402-.946-2.127-.598q.648-.4 1.232-.891c.013.014.47.476 1.113.574.653.1 1.146-.337 1.146-.337-.704-.688-1.57-.739-2.245-.25q.627-.528 1.166-1.154c.04.028.568.373 1.202.344.66-.03 1.057-.556 1.057-.556-.802-.521-1.635-.423-2.2.144l.13-.156q.416-.514.763-1.074c.139.06.651.257 1.205.15.649-.124.966-.702.966-.702-.79-.363-1.53-.218-2.019.295q.33-.57.585-1.175c.123.034.68.167 1.229-.028.622-.22.85-.838.85-.838-.865-.25-1.596.032-1.993.655q.253-.644.42-1.316c.144.018.7.06 1.203-.205.585-.308.72-.953.72-.953-.88-.121-1.556.254-1.864.912q.15-.683.21-1.383c.146-.008.7-.062 1.15-.41.522-.405.543-1.064.543-1.064-.88.033-1.479.511-1.674 1.203a11 11 0 0 0-.01-1.34c.162-.036.68-.173 1.062-.569.458-.476.385-1.131.385-1.131-.846.156-1.364.693-1.476 1.381q-.066-.645-.21-1.272c.103-.036.65-.245.996-.732.38-.539.21-1.175.21-1.175-.875.302-1.31.984-1.246 1.748a10 10 0 0 0-.443-1.37c.067-.034.608-.322.89-.873.3-.589.038-1.194.038-1.194-.857.444-1.18 1.227-.954 2.006a10.4 10.4 0 0 0-.719-1.42c.025-.02.53-.415.706-1.035.178-.636-.196-1.179-.196-1.179-.763.61-.922 1.453-.532 2.178a10 10 0 0 0-.288-.449 10 10 0 0 0-.628-.823c.094-.104.454-.535.527-1.103.086-.655-.363-1.138-.363-1.138-.604.647-.69 1.413-.334 2.043q-.45-.508-.957-.95c.06-.087.378-.584.365-1.183-.013-.66-.53-1.07-.53-1.07-.523.763-.467 1.57.038 2.147q-.552-.465-1.164-.85c.05-.105.287-.635.19-1.219-.11-.651-.68-.982-.68-.982-.403.822-.239 1.605.33 2.103a10 10 0 0 0-1.2-.619c-.504-.813-1.318-1.082-2.1-.795 0 0 .317.603.93.892.413.193.823.127 1.049.062q.602.26 1.156.585c-.57-.164-1.168.043-1.588.639 0 0 .475.288 1 .104.435-.15.721-.493.808-.609q.566.354 1.075.772c-.54-.246-1.163-.128-1.667.401 0 0 .43.354.976.249.45-.087.782-.383.886-.485q.537.466 1.001.998c-.507-.376-1.175-.374-1.78.097 0 0 .371.413.927.39.482-.018.87-.287.965-.358q.42.498.77 1.046c-.443-.378-1.065-.44-1.691-.085 0 0 .307.463.86.522.444.046.84-.13.979-.202q.341.564.607 1.17c-.363-.441-.952-.615-1.624-.392 0 0 .21.513.742.68.427.132.85.036 1-.007q.245.607.41 1.245c-.29-.512-.858-.783-1.572-.657 0 0 .135.539.637.78.412.197.854.158.999.137q.162.704.224 1.437c-.172-.626-.718-1.039-1.5-1.02 0 0 .052.553.512.866.412.28.9.287 1 .286a11 11 0 0 1 .004 1.392c-.101-.615-.574-1.077-1.327-1.168 0 0-.028.554.382.931.35.32.805.406.93.424q-.06.707-.216 1.389c-.004-.613-.39-1.138-1.105-1.355 0 0-.123.542.215.983.287.374.716.537.84.579q-.161.641-.402 1.251c.06-.587-.248-1.138-.906-1.448 0 0-.2.518.071 1.004.221.397.602.619.735.687a10 10 0 0 1-.612 1.212c.167-.583-.051-1.192-.668-1.605 0 0-.276.482-.08 1.003.163.434.517.713.63.794q-.328.529-.716 1.012c.188-.525.043-1.11-.472-1.576 0 0-.343.437-.225.981.092.42.363.73.484.852q-.406.472-.866.893c.263-.473.226-1.057-.177-1.6 0 0-.422.362-.412.918.007.43.214.788.308.93q-.477.406-1.003.753c.36-.434.423-1.037.092-1.654 0 0-.47.297-.54.85-.057.436.106.83.175.977a10 10 0 0 1-1.239.644c.505-.365.706-.995.45-1.71 0 0-.508.223-.66.758-.132.46-.002.909.038 1.026a10 10 0 0 1-1.256.423c.513-.3.776-.88.632-1.596 0 0-.536.148-.764.655-.188.416-.137.856-.114 1.002l-.15.035-.08.018c-.427.093-1.27.279-2.12.577a18 18 0 0 0-2.12-.577l-.08-.018-.15-.035c.024-.146.074-.586-.113-1.002-.228-.507-.764-.655-.764-.655-.144.717.119 1.296.632 1.596a10 10 0 0 1-1.256-.423c.039-.118.17-.566.038-1.026-.152-.535-.66-.758-.66-.758-.257.715-.055 1.345.45 1.71a10 10 0 0 1-1.24-.644c.07-.146.232-.54.176-.978-.07-.552-.54-.849-.54-.849-.332.617-.269 1.22.092 1.654q-.525-.346-1.004-.753c.094-.142.301-.5.308-.93.01-.556-.412-.918-.412-.918-.403.543-.44 1.127-.177 1.6q-.46-.421-.865-.893c.12-.122.392-.433.484-.852.118-.544-.225-.98-.225-.98-.515.465-.66 1.05-.473 1.575a10 10 0 0 1-.716-1.012c.114-.08.468-.36.63-.794.196-.52-.08-1.003-.08-1.003-.617.413-.834 1.022-.667 1.605q-.346-.584-.612-1.212c.133-.068.513-.29.734-.687.272-.486.071-1.004.071-1.004-.658.31-.965.861-.905 1.448q-.241-.61-.403-1.251c.125-.042.554-.205.84-.579.34-.441.216-.983.216-.983-.716.217-1.101.742-1.106 1.354a10 10 0 0 1-.217-1.388c.127-.018.582-.104.932-.424.41-.377.382-.931.382-.931-.753.091-1.226.553-1.328 1.167a10 10 0 0 1 .005-1.391c.1.002.588-.005.999-.286.46-.313.512-.866.512-.866-.781-.019-1.327.393-1.5 1.019a10 10 0 0 1 .225-1.436c.145.021.587.06 1-.137.5-.241.635-.78.635-.78-.713-.126-1.281.146-1.571.657q.165-.639.41-1.245c.15.043.573.14 1 .006.53-.166.742-.68.742-.68-.673-.222-1.261-.048-1.624.393a10 10 0 0 1 .607-1.17c.139.072.534.248.978.202.553-.059.86-.522.86-.522-.625-.355-1.247-.293-1.691.085q.35-.547.77-1.046c.096.071.483.34.965.359.556.022.927-.391.927-.391-.604-.47-1.272-.473-1.78-.097a10 10 0 0 1 1.002-.998c.103.102.436.398.886.485.546.105.975-.249.975-.249-.503-.529-1.127-.647-1.667-.4q.51-.42 1.076-.773c.086.116.373.459.807.61.526.183 1-.105 1-.105-.42-.596-1.018-.803-1.588-.639q.555-.325 1.157-.585c.226.065.636.13 1.048-.062.614-.289.932-.892.932-.892-.784-.287-1.597-.018-2.102.795a10 10 0 0 0-1.2.62c.57-.499.734-1.282.331-2.104m3.935 5.19c-.045-.005-.225.052-.412.088s-.696.062-.874.102-.607.188-.727.21c-.121.023-.496.245-.79.335-.295.089-.67.308-.95.392-.282.085-.697.246-.88.304s-.504.214-.518.245c-.013.032.184.545.318.834.134.29.347.763.4.91.055.148.113.282.162.295s.45.098.562.116c.111.018.473.023.593.014.12-.01.38 0 .487.053 0 0 .035.527.035.571 0 .045-.009.848-.026.946-.018.099-.08.946-.117 1.34-.035.392-.089 1.49-.089 1.632 0 .143-.053 1.214-.053 1.41v.955c0 .17.044.572.062.607s2.178.188 2.802.26c.625.07 1.419.142 2.08.124.66-.018 1.66-.107 2.133-.107s.803 0 .839-.036-.036-.874-.036-1.151c0-.276-.036-1.58-.036-1.91s-.027-1.196-.027-1.321-.035-1.526-.062-1.999-.098-1.285-.08-1.339c.017-.053.268-.107.365-.09.099.019.572.09.679.09s.41.027.473-.017c.062-.045.607-1.071.67-1.214.062-.143.303-.714.303-.759 0-.044-.813-.401-1.045-.526s-.87-.442-1.088-.513-.505-.143-.643-.21-.607-.192-.861-.25-.608-.194-.738-.207c-.129-.014-.343-.045-.38-.05-.035-.004-.173-.116-.209-.093-.035.022-.392.354-.642.408s-.86.075-1.164-.041-.472-.404-.516-.408"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/teespring.svg��������������������������������0000664�0000000�0000000�00000002056�14753064456�0025626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.78 8.348c-.77 0-1.396.615-1.396 1.37 0 1.075.406 2.058 1.075 2.813.277.312.598.584.956.807a5 5 0 0 0 .736-3.874q-.009-.043-.02-.087a1.39 1.39 0 0 0-1.35-1.029zm-8.612 3.958q.208.55.533 1.032c.356-.223.678-.495.955-.807a4.22 4.22 0 0 0 1.076-2.813c0-.755-.626-1.37-1.397-1.37-.65 0-1.195.438-1.35 1.029q-.01.043-.02.086a5 5 0 0 0 .205 2.843zm15.501-.67L24 12.29a5.87 5.87 0 0 1-5.243 3.18 6 6 0 0 1-1.926-.32 6.75 6.75 0 0 1-4.774 1.963 6.74 6.74 0 0 1-4.774-1.964 6 6 0 0 1-1.926.32A5.87 5.87 0 0 1 0 12.054l1.362-.595a4.38 4.38 0 0 0 3.995 2.549q.487-.002.946-.102a6.45 6.45 0 0 1-.945-3.367 6.5 6.5 0 0 1 .19-1.554c.328-1.208 1.45-2.098 2.786-2.098l.079.002q.121.003.242.016c1.444.157 2.565 1.357 2.565 2.814 0 1.958-.999 3.687-2.522 4.724a5.24 5.24 0 0 0 3.36 1.21 5.25 5.25 0 0 0 3.358-1.21c-1.523-1.037-2.522-2.767-2.522-4.724 0-1.458 1.122-2.658 2.564-2.814q.12-.013.242-.016l.08-.002a2.88 2.88 0 0 1 2.832 2.286 6.48 6.48 0 0 1-.8 4.733q.457.1.945.102c1.71 0 3.191-.967 3.91-2.372z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tekton.svg�����������������������������������0000664�0000000�0000000�00000017105�14753064456�0025133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.882 0a.924.924 0 0 0-.89.678 6.5 6.5 0 0 0-.188 2.455A6.6 6.6 0 0 0 1.562 5.5a7.3 7.3 0 0 0 .906 1.307 10 10 0 0 0-.125.785 10 10 0 0 0-.072 1.36c.003.186.008.374.03.564.042.54.534 1.181.87 1.594a7.1 7.1 0 0 0 2.026 1.716 1 1 0 0 0 .033.082q.124.266.31.493a6 6 0 0 0-.505 1.673 8 8 0 0 0-.174 1.301 2.2 2.2 0 0 0-.463.283 2.66 2.66 0 0 0-.846 1.23 3 3 0 0 0-.11.411l-.228-.062-.025.16c-.116.73-.064 1.361.232 2.006a1.44 1.44 0 0 0-.693.293 1.2 1.2 0 0 0-.354.458c-.146.33-.293.714-.293 1.08 0 .272.085.544.3.721a.7.7 0 0 0 .449.162h2.369c.14.373.41.72.806.825q.169.041.342.046.181.008.36.008c.308.006.617.003.925 0q.724-.009 1.452-.027a.77.77 0 0 0 .677-.443.77.77 0 0 0 .682.443q.723.018 1.447.027c.309 0 .617.003.926 0a7 7 0 0 0 .36-.008 2 2 0 0 0 .34-.047c.396-.103.666-.448.804-.824h2.392a.7.7 0 0 0 .448-.162c.213-.177.3-.449.3-.72-.003-.367-.147-.75-.296-1.08-.211-.468-.61-.688-1.069-.753.296-.644.349-1.276.233-2.005l-.026-.16-.205.056-.006-.03a.4.4 0 0 0 .026-.05 7 7 0 0 1 .45-.889 8.6 8.6 0 0 1 .743-1.074 6 6 0 0 1 .459-.508c.29-.28.656-.515 1.068-.543.29-.02.576.065.807.24.174.132.26.282.342.477.137.333.222.618.494.877.482.455 1.2.464 1.773.195.45-.21.829-.596.948-1.088a1.3 1.3 0 0 0 .03-.45c-.094-.92-.66-1.753-1.353-2.337-.632-.53-1.45-.92-2.283-.94-.785-.022-1.559.22-2.24.599-1.16.644-2.082 1.69-2.775 2.851a8 8 0 0 0-.094-.525 6 6 0 0 0-.237-1.004 5 5 0 0 0-.17-.455 2 2 0 0 0 .25-.328 4 4 0 0 0 .217-.399l.037-.084a7.2 7.2 0 0 0 2.024-1.715c.345-.42.822-1.045.871-1.601.021-.186.028-.378.031-.57a10 10 0 0 0-.076-1.383 12 12 0 0 0-.123-.748 7.3 7.3 0 0 0 .904-1.309 6.6 6.6 0 0 0 .758-2.365A6.5 6.5 0 0 0 18.79.682a.916.916 0 0 0-.89-.682c-1.563 0-2.913.639-4.165 1.463a7.35 7.35 0 0 0-7.684 0C4.795.64 3.446 0 1.882 0zM1.9.92h.074c.867.477 1.644 1.444 2.215 2.406a11 11 0 0 0-.34.463 8 8 0 0 0-.975 2.047c-.699-.94-1.587-2.67-.998-4.898.01-.003.015-.012.024-.018m15.908 0h.072l.022.022c.59 2.229-.299 3.956-.998 4.896a8 8 0 0 0-1.037-2.14 6 6 0 0 0-.274-.372c.571-.962 1.348-1.93 2.215-2.406zM3.187 1.1c.773.207 1.5.582 2.19 1.02a7 7 0 0 0-.792.738 10 10 0 0 0-.423-.635A7.5 7.5 0 0 0 3.187 1.1m13.408 0a7.5 7.5 0 0 0-.974 1.123q-.224.312-.424.638a7 7 0 0 0-.791-.742c.687-.437 1.417-.812 2.19-1.02m-6.887.17v2.593c-1.386.03-2.748.416-3.582 1.155-.965.852-1.609 2.326-1.539 3.101.061.693 1.174 1.168 2.655 1.412a1.4 1.4 0 0 0-.153.428 2 2 0 0 0 .002.637 16 16 0 0 1-1.513-.244 15 15 0 0 1-2.325-.696 1 1 0 0 1-.06-.22S2.88 6.585 4.468 4.209c1.27-1.9 3.246-2.881 5.24-2.94m.366 0c1.96.055 3.904 1.006 5.183 2.853 1.655 2.391 1.336 5.31 1.336 5.31a.8.8 0 0 1-.053.214q-1.139.447-2.336.703c-.448.094-.952.18-1.511.244a2 2 0 0 0 .004-.639 1.4 1.4 0 0 0-.155-.428c1.481-.244 2.594-.714 2.655-1.41.07-.775-.574-2.251-1.54-3.103-.836-.736-2.197-1.12-3.583-1.15zm-.854.712a.214.214 0 0 0-.217.217c0 .194.235.29.371.153a.216.216 0 0 0-.154-.37m1.342 0a.22.22 0 0 0-.217.217c0 .194.233.29.37.153a.216.216 0 0 0-.153-.37m-1.342.955a.22.22 0 0 0-.217.217c0 .194.235.291.371.155s.04-.371-.154-.371m1.342 0a.22.22 0 0 0-.217.217.217.217 0 1 0 .217-.217M7.05 6.695c.33.002.642.15.854.404.222.262.345.594.343.937a.22.22 0 0 1-.22.219.22.22 0 0 1-.22-.219 1 1 0 0 0-.231-.648.71.71 0 0 0-.53-.254.66.66 0 0 0-.379.119.84.84 0 0 0-.287.346.217.217 0 0 1-.289.103.217.217 0 0 1-.105-.289 1.34 1.34 0 0 1 .437-.523 1.1 1.1 0 0 1 .627-.196m5.686 0c.223 0 .44.068.625.195.188.133.34.314.437.523a.22.22 0 0 1-.105.29.22.22 0 0 1-.291-.104.84.84 0 0 0-.287-.346.66.66 0 0 0-.38-.12.7.7 0 0 0-.529.255 1 1 0 0 0-.23.648.22.22 0 0 1-.22.215.22.22 0 0 1-.221-.215 1.43 1.43 0 0 1 .345-.937 1.13 1.13 0 0 1 .856-.405zm-2.85 2.199h.01c.974-.01 2.161.435 2.277 1.15.113.684-.264 1.148-.847 1.414-.865.32-1.169-.098-1.303-.363-.064-.128-.091-.194-.125-.197H9.89c-.027.012-.062.072-.133.191-.137.241-.42.603-1.02.48-.735-.238-1.263-.734-1.132-1.525.119-.715 1.307-1.16 2.281-1.15m.004.332c-.59 0-1.305.172-1.375.539-.116.608.786.9 1.381.899s1.487-.295 1.371-.9c-.07-.366-.786-.538-1.377-.538m-6.383.91a15 15 0 0 0 1.996.572 16 16 0 0 0 1.707.268 1 1 0 0 0 .084.152c.27.461.73.752 1.243.926-.272.113-.483.291-.532.572a.65.65 0 0 0 .034.332l.004.012a9.5 9.5 0 0 1-1.182-.317c-1.212-.418-2.224-1.087-3.027-2.07a5 5 0 0 1-.327-.447m12.764.004c-.08.107-.161.217-.25.318-.455.547-.94 1.052-1.535 1.44-.825.537-1.754.871-2.74 1.07a.65.65 0 0 0 .033-.357c-.052-.272-.256-.446-.522-.56.513-.173.972-.467 1.24-.925a2 2 0 0 0 .077-.15 17 17 0 0 0 1.707-.268 15 15 0 0 0 1.99-.568m-6.348 2.226c.752.002 1.49.145 1.338.442-.07.137-.254.24-.48.314q-.441.054-.89.08a17 17 0 0 1-.888-.08c-.24-.08-.432-.194-.49-.344-.104-.273.66-.414 1.41-.412m9.653.51c.467.012.953.177 1.392.445-.455.132-.827.502-1.025.953a1.8 1.8 0 0 0-.131.446 1.9 1.9 0 0 0-.785-.223.3.3 0 0 0-.037-.076c-.266-.36-.303-1.033.006-1.38a1 1 0 0 1 .07-.067 2 2 0 0 1 .103-.08 2.6 2.6 0 0 1 .407-.018m-1.121.17a1.66 1.66 0 0 0-.133.707c.004.273.07.54.197.781a2.3 2.3 0 0 0-.69.276.2.2 0 0 0-.054-.035c-.171-.074-.317-.241-.412-.403-.104-.18-.23-.522-.098-.715l.002-.006c.144-.097.288-.19.432-.27a4.4 4.4 0 0 1 .756-.335zm-11.995.203q.279.101.565.186a6.1 6.1 0 0 0 3.246.716 6 6 0 0 0 1.441-.271 5.8 5.8 0 0 0 1.055-.445 9 9 0 0 0 .565-.186 3.74 3.74 0 0 1-1.983 1.371c.718-.091 1.463-.276 2.049-.62.327.793.51 1.868.34 3.294a12 12 0 0 1-.16.975c-.733-.41-1.746-.083-2.512.357-.098-1.414-.403-2.455-.531-2.84-.116-.354-.536-.283-.545.037.058.156.095.36.129.522.055.284.1.574.142.861.07.48.144.986.178 1.469q.01.162.016.324a5.5 5.5 0 0 1-1.383.008q.004-.164.013-.328a12 12 0 0 1 .065-.588q.057-.452.123-.9c.046-.303.09-.608.148-.907.022-.113.05-.269.084-.4.006-.324-.18-.33-.29-.32-.104.009-.18.093-.239.267a12 12 0 0 0-.512 2.762c-.849-.565-1.534-.742-2.511-.299a11 11 0 0 1-.164-1c-.184-1.542.046-2.672.421-3.484.58.403 1.33.632 2.073.757a3.74 3.74 0 0 1-1.823-1.318m14.899.483a.37.37 0 0 1 .26.097q.004 0 .01.006c.488.476.84 1.08.904 1.688.07.699-1.064 1.247-1.574.761-.29-.275-.269-.806-.733-1.261a.2.2 0 0 0 .02-.08c.021-.593.496-1.239 1.113-1.211m-4.592.314a1.6 1.6 0 0 0 .197.555 1.5 1.5 0 0 0 .46.504l-.145.13c-.153.15-.3.312-.44.477a.3.3 0 0 0-.109-.022.75.75 0 0 1-.488-.18c-.144-.112-.351-.357-.336-.568a7 7 0 0 1 .861-.896m-1.203 1.35c.098.185.235.347.4.476.16.128.348.215.55.256a9.5 9.5 0 0 0-.85 1.38 2.4 2.4 0 0 0-.61-.734 2 2 0 0 0-.224-.154 10 10 0 0 1 .734-1.224m-1.174 1.617c.593.275.966.901 1.049 1.604-.48.14-1.005.391-1.447.61q.248-.915.363-1.858a6 6 0 0 0 .035-.356m-9.262.014q.015.174.034.343.115.944.363 1.862c-.437-.217-.949-.462-1.422-.606.08-.696.442-1.318 1.025-1.6m1.897 1.666c.52.02 1.032.287 1.414.62.021 1.473.33 2.856.53 3.128.2.268.093.754.093.754s-2.602.067-2.856 0c-.253-.067-.555-.815-.136-1.248.195-.202.475-.251.722-.248.507.11.837.423 1.182.863-.073-.755-.497-.952-.799-1.135-.098-.058-.135-.086-.187-.184a10.8 10.8 0 0 1-.883-2.285c.292-.202.608-.278.92-.265m5.469 0a1.48 1.48 0 0 1 .92.265 11 11 0 0 1-.88 2.285.42.42 0 0 1-.187.184c-.302.183-.725.38-.799 1.135.345-.44.675-.754 1.182-.863.247-.003.53.046.723.248.418.433.116 1.18-.137 1.248-.254.067-2.856 0-2.856 0s-.106-.485.096-.754c.199-.272.51-1.655.531-3.127.378-.334.887-.6 1.407-.621m-8.66.388c.464.123 1.231.477 1.9.828a12 12 0 0 0 .498 1.231 1.4 1.4 0 0 0-.621.37 1.38 1.38 0 0 0-.38.905H2.83c-.242-.201.028-2.03 2.394-.955-.522-.415-1.412-.97-1.39-2.379zm11.849 0c.021 1.408-.868 1.964-1.387 2.38 2.364-1.076 2.635.753 2.39.954h-2.444a1.324 1.324 0 0 0-1.018-1.246 9 9 0 0 0 .477-1.215c.69-.37 1.503-.747 1.982-.873m-5.186.412a10 10 0 0 1-.18 1.739c-.039.201-.14.689-.243.869a1 1 0 0 0-.078.129c-.15.002-.27.001-.42.002a2 2 0 0 0-.096-.158 2 2 0 0 1-.098-.276 7 7 0 0 1-.177-.793 10 10 0 0 1-.14-1.5 4.9 4.9 0 0 0 1.432-.012"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tele5.svg������������������������������������0000664�0000000�0000000�00000000700�14753064456�0024636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.006 0v5.027H3.83V0h-.685v4.18H2.23V.074h-.677V4.18h-.87V0H.007zm5.623.004v14.154h8.658V7.254h8.791V.004zM3.145 6.076v3.9H.005v.85H3.83v-4.75zM23 9.926 5.389 18.502c2.371 4.857 8.236 6.874 13.1 4.506v.002c4.863-2.37 6.883-8.227 4.511-13.084M.006 12.129v5.027H3.83V12.13h-.685v4.18H2.23v-4.106h-.677v4.106h-.87v-4.18H.007zm0 6.07v5.791h.687v-2.47H3.83v-.848H.693v-2.473z"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/telefonica.svg�������������������������������0000664�0000000�0000000�00000000600�14753064456�0025730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.162 3.581a3.581 3.581 0 1 0-7.162 0 3.581 3.581 0 0 0 7.162 0m8.419 0a3.581 3.581 0 1 0-7.162 0 3.581 3.581 0 0 0 7.162 0m8.419 0a3.581 3.581 0 1 0-7.162 0 3.581 3.581 0 0 0 7.162 0M15.581 12a3.581 3.581 0 1 0-7.162 0 3.581 3.581 0 0 0 7.162 0m0 8.419a3.581 3.581 0 1 0-7.162 0 3.581 3.581 0 0 0 7.162 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/telegram.svg���������������������������������0000664�0000000�0000000�00000001207�14753064456�0025423�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.944 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zm4.962 7.224c.1-.002.321.023.465.14a.5.5 0 0 1 .171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024q-.159.037-5.061 3.345-.72.495-1.302.48c-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789q.04-.324.893-.663 5.247-2.286 6.998-3.014c3.332-1.386 4.025-1.627 4.476-1.635"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/telegraph.svg��������������������������������0000664�0000000�0000000�00000000163�14753064456�0025576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm6 6h12v3h-4.5v9h-3V9H6z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/telequebec.svg�������������������������������0000664�0000000�0000000�00000002223�14753064456�0025740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.054 5.568c-1.105.008-1.99.05-2.655.083L4.483 9.404A42 42 0 0 1 .322 7.99c.643.665 1.93 1.394 3.646 2.059l-.43.536C2.21 10.155 1.009 9.726 0 9.297c.58.6 1.652 1.265 3.067 1.887l-1.394 1.78c1.716.322 4.482 1.094 7.57 2.253 2.382.922 4.312 1.844 5.77 2.638l.987.579 2.53-3.796c2.51.085 4.376-.172 5.105-.751-1.244.064-2.767.021-4.525-.13l.472-.707c2.166 0 3.775-.3 4.418-.857-1.072.064-2.38.064-3.84-.022l3.24-4.847c-1.352-.3-3.625-.901-6.306-1.309l-3.067-.321a52 52 0 0 0-3.973-.126m.4 1.241c.854-.005 1.878.01 3.08.086l2.38.236c2.08.3 3.84.75 4.89.965L18.102 12c-1.866-.171-3.904-.471-6.07-.858a75 75 0 0 1-6.027-1.33l2.38-2.959c.526-.01 1.213-.037 2.068-.043zm2.72.535c-.493.004-1.03.223-1.464.645-.772.73-.9 1.844-.3 2.445s1.694.493 2.466-.258c.773-.729.901-1.844.3-2.445a1.38 1.38 0 0 0-1.002-.387m-7.79 3.24c1.951.665 4.29 1.265 6.798 1.737 1.888.343 3.646.558 5.233.665l-.385.557a76 76 0 0 1-5.384-.879 82 82 0 0 1-6.649-1.608Zm-.966 1.158c2.06.794 4.611 1.523 7.378 2.06a44 44 0 0 0 4.569.685l-1.266 1.845-.815-.386c-1.115-.6-2.616-1.287-4.46-1.974-2.381-.857-4.526-1.436-5.856-1.672Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/temporal.svg���������������������������������0000664�0000000�0000000�00000001404�14753064456�0025445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.206 7.794C15.64 3.546 14.204 0 12 0S8.361 3.546 7.794 7.794C3.546 8.36 0 9.796 0 12s3.546 3.639 7.794 4.206C8.36 20.453 9.796 24 12 24s3.639-3.546 4.206-7.794C20.454 15.64 24 14.204 24 12s-3.547-3.64-7.794-4.206m-8.55 7.174c-4.069-.587-6.44-1.932-6.44-2.969s2.372-2.381 6.44-2.969c-.09.98-.137 1.98-.137 2.97s.047 1.99.137 2.968M12 1.215c1.036 0 2.381 2.372 2.969 6.44a32.7 32.7 0 0 0-5.938 0c.587-4.068 1.932-6.44 2.969-6.44m4.344 13.753c-.2.03-1.022.126-1.23.146a57 57 0 0 1-.145 1.23c-.588 4.068-1.933 6.44-2.97 6.44-1.036 0-2.38-2.372-2.968-6.44-.03-.2-.126-1.022-.147-1.23a32 32 0 0 1 0-6.23 31.8 31.8 0 0 1 7.46.146c4.068.587 6.442 1.933 6.442 2.969-.001 1.036-2.374 2.382-6.442 2.97z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tensorflow.svg�������������������������������0000664�0000000�0000000�00000000354�14753064456�0026027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.292 5.856 11.54 0v24l-4.095-2.378V7.603l-6.168 3.564.015-5.31zm21.43 5.311-.014-5.31L12.46 0v24l4.095-2.378V14.87l3.092 1.788-.018-4.618-3.074-1.756V7.603z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/teradata.svg���������������������������������0000664�0000000�0000000�00000000476�14753064456�0025417�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5 0 0 5.65 0 12.08 0 18.83 5 24 12 24s12-5.17 12-11.92C24 5.65 19 0 12 0M8.47 3.44h3.5V6.7h3.58v2.86h-3.58v5.22c0 1.58.77 2.27 1.93 2.27.42 0 .98-.12 1.51-.32.38 1 1.05 1.9 1.77 2.62a7 7 0 0 1-3.52.97c-3.12 0-5.19-1.65-5.19-5.28V3.45Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/teratail.svg���������������������������������0000664�0000000�0000000�00000000220�14753064456�0025422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.81.968h4.375L24 23.032h-5.107L12.121 6.605h-.198L5.148 23.03H0Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/termius.svg����������������������������������0000664�0000000�0000000�00000002424�14753064456�0025315�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.812 19.381A6.194 6.194 0 0 0 24 13.193c0-1.7-.723-3.352-1.958-4.515a6.01 6.01 0 0 0-6.005-5.955 6 6 0 0 0-2.731.656 5.99 5.99 0 0 0-4.12-1.635 6.01 6.01 0 0 0-6 5.743A6.22 6.22 0 0 0 0 12.917a6.225 6.225 0 0 0 6.706 6.2 6.43 6.43 0 0 0 5.508 3.14 6.4 6.4 0 0 0 5.347-2.881q.126.005.25.005zm-5.598 1.242A4.79 4.79 0 0 1 7.9 17.888l-.267-.562-.613.108a4.592 4.592 0 0 1-5.387-4.516A4.59 4.59 0 0 1 4.34 8.734l.506-.228-.026-.555a4.377 4.377 0 0 1 4.367-4.574c1.297 0 2.512.566 3.347 1.56l.47.56.609-.407a4.35 4.35 0 0 1 2.425-.734 4.38 4.38 0 0 1 4.364 4.632l-.025.416.322.265a4.61 4.61 0 0 1 1.669 3.524 4.56 4.56 0 0 1-5.14 4.518l-.554-.071-.267.49a4.76 4.76 0 0 1-4.192 2.493zm3.102-6.533.016-.007c.212-.091.288-.171.288-.393v-.278c0-.244-.14-.401-.37-.401h-.013l-.046.01a4.5 4.5 0 0 1-1.502.272c-.48 0-.954-.09-1.409-.27l-.013-.005-.052-.007c-.23 0-.37.157-.37.401v.278c0 .209.078.303.261.382l.02.009.02.008a3.9 3.9 0 0 0 1.544.32c.525 0 1.071-.107 1.626-.319m-7.081-2.285c0-.224.116-.348.272-.38l1.501-.394-1.505-.395c-.156-.041-.268-.164-.268-.38v-.473c0-.207.124-.296.266-.296q.07 0 .141.028l2.68.867c.203.068.315.231.315.455v.387c0 .224-.112.388-.316.456l-2.685.868a.4.4 0 0 1-.125.02c-.168 0-.276-.12-.276-.297z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/terraform.svg��������������������������������0000664�0000000�0000000�00000000331�14753064456�0025621�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.44 0v7.575l6.561 3.79V3.787zm21.12 4.227-6.561 3.791v7.574l6.56-3.787zM8.72 4.23v7.575l6.561 3.787V8.018zm0 8.405v7.575L15.28 24v-7.578z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tesco.svg������������������������������������0000664�0000000�0000000�00000004000�14753064456�0024732�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.621 8.791c-1.018 0-2.013.308-2.013 1.327 0 1.752 3.079.828 3.079 1.894 0 .355-.545.497-.971.497-.781 0-1.35-.118-2.037-.52v.876c.521.165 1.208.26 1.99.26 1.065 0 2.06-.284 2.06-1.303 0-1.847-3.079-1.018-3.079-1.918 0-.355.498-.497.924-.497.734 0 1.515.213 1.942.616v-.947h-.048a7.1 7.1 0 0 0-1.847-.285zm9.733 0c-1.61.024-2.723.924-2.723 2.226 0 1.255 1.018 2.108 2.51 2.108 1.586 0 2.7-.9 2.7-2.202 0-1.279-.995-2.132-2.487-2.132m-4.31.024c-1.847 0-3.055.876-3.055 2.226 0 1.231 1.113 2.06 2.795 2.06a6.2 6.2 0 0 0 1.586-.213v-1.042c-.403.426-.876.592-1.397.592-.994 0-1.658-.615-1.658-1.515 0-.876.71-1.516 1.682-1.516.544 0 .97.19 1.302.52v-.994c-.355-.094-.805-.118-1.255-.118zM.16 8.933v.995c.355-.26 1.066-.379 1.847-.379v2.7c0 .402-.024.497-.213.71h1.563c-.166-.213-.213-.331-.213-.71V9.526h.047c.687 0 1.492.118 1.847.402v-.995zm5.304 0c.166.214.19.332.19.711v2.605c0 .402-.024.52-.19.71H9.23v-.97c-.521.378-1.492.378-1.895.355H6.79V11.23h.403c.284 0 .758.023 1.042.118v-.829c-.284.095-.781.119-1.042.119H6.79V9.573h.545c.498 0 1.35.095 1.658.379V8.933zm15.748.498c.829 0 1.374.687 1.374 1.54.023.828-.522 1.514-1.35 1.514-.853 0-1.398-.686-1.398-1.515 0-.852.545-1.54 1.374-1.54M1.842 14.12c-.498 0-.877.26-1.066.45 0 0-.45.45-.758.615-.024 0-.024.024 0 .024h2.794c.545 0 .805-.19 1.137-.474 0 0 .474-.45.829-.592.023 0 .023-.023 0-.023zm4.806 0c-.497 0-.876.26-1.041.45 0 0-.45.45-.758.615-.024 0-.024.024 0 .024h2.794c.545 0 .805-.19 1.137-.474 0 0 .473-.45.805-.592.023 0 .023-.023 0-.023zm4.784 0c-.474 0-.853.26-1.042.45 0 0-.45.45-.758.615-.024 0-.024.024 0 .024h2.794c.545 0 .806-.19 1.137-.474 0 0 .474-.45.805-.592.024 0 .024-.023 0-.023zm4.807 0c-.474 0-.852.26-1.042.45 0 0-.45.45-.758.615-.023 0-.023.024 0 .024h2.794c.545 0 .805-.19 1.137-.474 0 0 .474-.45.805-.592.024 0 .024-.023 0-.023zm4.807 0c-.473 0-.852.26-1.065.45 0 0-.45.45-.758.615-.024 0-.024.024 0 .024h2.818c.544 0 .805-.19 1.136-.474 0 0 .474-.45.805-.592.024 0 .024-.023 0-.023z"/></svg>mkdocs-material-9.6.4/material/templates/.icons/simple/tesla.svg������������������������������������0000664�0000000�0000000�00000000753�14753064456�0024740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 5.362 2.475-3.026s4.245.09 8.471 2.054c-1.082 1.636-3.231 2.438-3.231 2.438-.146-1.439-1.154-1.79-4.354-1.79L12 24 8.619 5.034c-3.18 0-4.188.354-4.335 1.792 0 0-2.146-.795-3.229-2.43C5.28 2.431 9.525 2.34 9.525 2.34zl-.004.002H12zm0-3.899c3.415-.03 7.326.528 11.328 2.28.535-.968.672-1.395.672-1.395C19.625.612 15.528.015 12 0 8.472.015 4.375.61 0 2.349c0 0 .195.525.672 1.396C4.674 1.989 8.585 1.435 12 1.46z"/></svg>���������������������mkdocs-material-9.6.4/material/templates/.icons/simple/testcafe.svg���������������������������������0000664�0000000�0000000�00000000403�14753064456�0025416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.315 4.319-8.69 8.719-3.31-3.322-2.069 2.076 5.379 5.398 10.76-10.796zM5.849 14.689 0 19.682h24l-5.864-4.991h-3.2l-1.024.896h3.584l3.072 2.815H3.417l3.072-2.815h2.688l-.896-.896z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/testin.svg�����������������������������������0000664�0000000�0000000�00000002123�14753064456�0025127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.052 9.923H3.067v5.232H1.985V9.923H0V8.841h5.052zm3.459 1.74c.413.788.326 1.696.326 1.696H5.31c.134.391.461.718 1.182.718h2.172v1.083H6.492c-1.028 0-1.587-.451-1.874-.829-.304-.399-.471-.936-.471-1.513 0-1.165.806-2.345 2.345-2.345.897-.001 1.616.421 2.019 1.19m-.895.659c-.152-.35-.469-.767-1.124-.767-.74 0-1.046.411-1.173.767zm4.971-.05H10.89a.344.344 0 0 1-.344-.344.4.4 0 0 1 .118-.279.32.32 0 0 1 .224-.099h2.47v-1.082h-2.44c-.429 0-.75.147-1.018.415a1.49 1.49 0 0 0-.436 1.045c0 .787.64 1.427 1.427 1.427h1.697c.212 0 .384.17.384.378 0 .19-.157.344-.35.344H9.719v1.083h2.902c.79 0 1.433-.64 1.433-1.426 0-.806-.658-1.462-1.467-1.462m3.839-3.427h-1.083v1.624h-1.26v1.083h1.26v1.533c0 1.086 1.118 2.075 2.345 2.075v-1.083c-.68 0-1.263-.546-1.263-.992v-1.533h1.265v-1.083h-1.265V8.845zm1.981 6.31h1.083v-4.691h-1.083zm.542-6.311a.54.54 0 1 0 0 1.081.54.54 0 0 0 0-1.081m3.112 1.617c-1.02 0-1.849.825-1.849 1.838v2.856h1.083v-2.856c0-.417.344-.755.767-.755.44 0 .857.367.857.755v2.856H24v-2.856c0-.996-.888-1.838-1.939-1.838"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/testinglibrary.svg���������������������������0000664�0000000�0000000�00000011770�14753064456�0026673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.447 9.756q.041.076.078.186c-.028-.06-.047-.129-.078-.186.592 2.304-1.95 5.003-5.13 4.239h.001c4.596-3.01 2.332-6.772.19-8.58-1.762-1.49-.721-1.95.021-1.95.237 0 .443.046.519.121l-.005-.004.006.004c-.018-1.433-5.066-1.11-.65 3.494 2.268 2.365-.408 7.596-3.596 3.618a1 1 0 0 1-.071-.113c.515-.214.937-.795.937-1.753a2.4 2.4 0 0 0-.197-.986c.368-.75.707-1.647.707-2.77 0-2.684-1.742-5.076-4.18-5.076s-4.18 2.392-4.18 5.076c0 1.123.339 2.02.707 2.771a2.4 2.4 0 0 0-.197.988c0 .958.421 1.54.937 1.753a1 1 0 0 1-.072.113C6.006 14.679 3.33 9.447 5.598 7.083c4.417-4.604-.633-4.926-.651-3.494l.008-.004c.078-.074.28-.12.515-.12.742 0 1.783.46.021 1.95-2.133 1.8-4.383 5.538.139 8.542.018.013.03.027.049.04-3.176.764-5.714-1.928-5.131-4.232l.004-.01q-.001.004-.004.006l.001-.003-.003.007c-1.174 1.61-.606 5.779 3.778 6.168q.027.006.054.012c-4.36 1-3.048 7.02.021 6.056L4.388 22l.016-.003C2.27 21.652 2.11 19 3.176 18.087c1.172-1.006 2.519-.137 5.302-.932l.03-.004c-.03 2.446 2.352 3.76 1.103 5.16-1.316 1.473-3.112-.1-2.858-1.55l.006-.029-.004.008v-.004l-.004.012C5.65 22.598 7.044 24 8.61 24c.899 0 1.855-.462 2.429-1.567 1.214-2.337-2.385-6.432.96-6.432s-.255 4.095.959 6.432c.574 1.105 1.53 1.567 2.43 1.567 1.571 0 2.97-1.411 1.85-3.268l.005.021-.006-.017c.276 1.457-1.533 3.057-2.855 1.575-1.244-1.404 1.131-2.718 1.106-5.163 2.806.812 4.157-.072 5.334.94 1.066.911.906 3.564-1.228 3.91h.007c3.07.958 4.377-5.054.018-6.057l.005-.001c4.44-.362 5.009-4.573 3.822-6.184zm-20.238.39C3.072 7.9 5.019 6.073 5.62 5.565c.838-.707 1.165-1.272.998-1.727a.81.81 0 0 0-.656-.512 1.4 1.4 0 0 0-.573.03c.169-.082.365-.13.574-.13.475 0 .866.223.995.569.117.313.12 1.007-1.174 2.133-2.047 1.783-2.213 3.922-1.685 5.33.458 1.223 1.47 2.014 2.58 2.014q.266 0 .533-.057c-.54.46-1.16.61-1.412.656-1.494-1.045-2.512-2.419-2.591-3.727zm5.208 6.873c-1.135.302-2.295.319-3.038.323-.924.006-1.655.01-2.333.593-.617.528-.873 1.594-.609 2.536.091.325.19.656.426.857.178.153.482.37.787.522l-.016-.004c.019.01.033.023.052.033-.993-.212-1.572-1.18-1.642-2.134-.088-1.205.602-2.728 2.832-3.055.354-.052.728-.083 1.101-.114.91-.076 1.85-.155 2.497-.54-.024.38-.046.788-.057.983m.25-2.684c-.65.998-1.936 1.153-3.07 1.29q-.479.056-.883.138l-.356-.024c-1.801-.156-3.141-1.006-3.775-2.396a4.07 4.07 0 0 1-.353-2.055s.038-.376.108-.77c-.087 1.095.207 2.138.88 2.997a4.65 4.65 0 0 0 3.636 1.762c1.33 0 2.588-.59 3.545-1.663.33-.37.478-.398.516-.398.128.186.019.708-.247 1.119zm6.372-5.503c0 1.347-1.527 1.347-1.527 0s1.527-1.347 1.527 0M13.234 3.34c0 .741-1.235.741-1.235 0 0-.74 1.235-.74 1.235 0m-.258 8.156c0 .749-.06 1.356-.133 1.356s-.126-.605-.125-1.355c0-.75.062-1.356.133-1.356.07 0 .128.606.125 1.355m-.952-1.614c.056 0 .1.73.1 1.631s-.044 1.631-.1 1.631-.1-.73-.1-1.63c0-.902.045-1.632.1-1.632m-.193-8.21c0 .511-.849.511-.849 0s.85-.506.85 0zm-.587 4.22c0-.354.587-.351.587 0 0 .354-.587.354-.587 0m.046 5.622c0 .768-.064 1.39-.137 1.39s-.132-.622-.131-1.389.064-1.389.138-1.389.132.62.13 1.388m0-7.495c0 .51-.849.51-.849 0s.849-.51.849 0m-1.147-1.234c0 .353-.587.353-.587 0s.587-.353.587 0m-.08 2.508c0 .255-.425.255-.425 0 0-.256.424-.256.424 0zm-1.1 3.54c0-1.347 1.528-1.347 1.528 0s-1.528 1.347-1.528 0m5.327 9.088c-.078.74-.273 1.38-.446 1.946-.347 1.138-.622 2.036.242 3.002.363.407.829.622 1.346.622.64 0 1.278-.34 1.664-.889a2 2 0 0 0 .325-.844c.017.16.026.31.015.417a1.6 1.6 0 0 1-.197.646c-.336.595-1.063.98-1.85.98-.95 0-1.77-.532-2.253-1.459-.481-.927-.132-2.214.177-3.35.302-1.115.564-2.077.104-2.678-.263-.345-.727-.512-1.417-.512s-1.155.167-1.418.512c-.46.6-.198 1.563.104 2.678.309 1.136.658 2.423.177 3.35s-1.303 1.459-2.252 1.459c-.788 0-1.515-.385-1.851-.98a1.62 1.62 0 0 1-.182-1.058c.048.296.142.582.323.84.387.547 1.025.888 1.665.888.518 0 .984-.215 1.348-.622.862-.966.588-1.862.24-2.998-.173-.567-.369-1.21-.445-1.95-.1-.966.119-1.827.6-2.36.399-.441.967-.666 1.69-.666s1.293.224 1.69.665c.48.533.7 1.393.6 2.36zm3.029-4.647c1.11 0 2.122-.79 2.579-2.014.526-1.408.36-3.547-1.69-5.33-1.295-1.127-1.292-1.82-1.175-2.134.13-.345.52-.569.994-.569.193 0 .372.045.532.115l.011.004a1.5 1.5 0 0 0-.533-.018.81.81 0 0 0-.656.512c-.166.455.16 1.02.998 1.728.6.507 2.548 2.334 2.411 4.578-.08 1.308-1.097 2.682-2.591 3.727a3.1 3.1 0 0 1-1.412-.656q.267.057.532.057m4.635 6.469c-.07.956-.65 1.922-1.645 2.134q.022-.013.042-.027c.305-.153.608-.368.785-.52.235-.202.335-.533.426-.858.264-.942.008-2.008-.609-2.536-.678-.582-1.409-.587-2.333-.593-.743-.004-1.903-.021-3.04-.323-.01-.196-.03-.602-.054-.983.647.386 1.589.465 2.5.542.373.031.744.062 1.097.113 2.23.327 2.919 1.848 2.83 3.05zm-2.666-3.979q-.405-.082-.886-.14c-1.135-.136-2.421-.291-3.07-1.29-.268-.41-.38-.93-.292-1.09a.1.1 0 0 1 .048-.009c.09 0 .238.073.511.379.957 1.073 2.217 1.663 3.546 1.663 1.414 0 2.774-.66 3.637-1.763.672-.858.965-1.9.88-2.994.07.393.107.77.107.77a4.07 4.07 0 0 1-.353 2.054c-.634 1.39-1.974 2.24-3.775 2.396zm-9.69-7.495a.24.24 0 0 1 .11.221.236.236 0 1 1-.47 0 .235.235 0 0 1 .36-.221m4.295.443a.24.24 0 0 1-.11-.222.235.235 0 1 1 .469 0 .236.236 0 0 1-.359.222"/></svg>��������mkdocs-material-9.6.4/material/templates/.icons/simple/testrail.svg���������������������������������0000664�0000000�0000000�00000001600�14753064456�0025447�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.27 23.896 4.5 21.124a.35.35 0 0 1 0-.5l2.772-2.77a.35.35 0 0 1 .5 0l2.772 2.772a.35.35 0 0 1 0 .5l-2.772 2.77a.35.35 0 0 1-.5 0zm4.48-4.48-2.772-2.772a.35.35 0 0 1 0-.498l2.772-2.772a.35.35 0 0 1 .5 0l2.77 2.772a.35.35 0 0 1 0 .5l-2.77 2.77a.35.35 0 0 1-.499 0zm4.48-4.48-2.77-2.772a.35.35 0 0 1 0-.498l2.771-2.772a.35.35 0 0 1 .5 0l2.77 2.772a.35.35 0 0 1 0 .498l-2.772 2.772a.35.35 0 0 1-.5 0h.002zm-8.876.084-2.772-2.77a.35.35 0 0 1 0-.499l2.772-2.773a.35.35 0 0 1 .5 0l2.772 2.772a.35.35 0 0 1 0 .498l-2.772 2.774a.35.35 0 0 1-.5 0zm4.48-4.48L9.062 7.77a.35.35 0 0 1 0-.5l2.772-2.772a.35.35 0 0 1 .5 0l2.77 2.772a.35.35 0 0 1 0 .498l-2.77 2.772a.35.35 0 0 1-.499 0v-.002.001zM7.44 6.15 4.666 3.37a.35.35 0 0 1 0-.5L7.44.104a.35.35 0 0 1 .5 0l2.772 2.772a.35.35 0 0 1 0 .5L7.938 6.142a.35.35 0 0 1-.5 0l.002.006z"/></svg>��������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tether.svg�����������������������������������0000664�0000000�0000000�00000001267�14753064456�0025124�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.754 10.518c0 .625-2.238 1.148-5.238 1.28l.002.001a23 23 0 0 1-1.5.033c-.779 0-1.33-.023-1.524-.032-3.006-.133-5.25-.656-5.25-1.282s2.244-1.15 5.25-1.284v2.044c.196.015.759.048 1.537.048.933 0 1.4-.04 1.485-.047V9.236c3 .133 5.238.657 5.238 1.282m5.19.546L12.124 22.39a.18.18 0 0 1-.249 0L.056 11.064a.18.18 0 0 1-.038-.208l4.376-9.192a.18.18 0 0 1 .163-.103h14.888a.18.18 0 0 1 .16.103l4.377 9.192a.18.18 0 0 1-.038.208m-4.478-.404c0-.806-2.552-1.48-5.947-1.637V7.195h4.186v-2.79H6.308v2.79h4.185v1.829c-3.402.156-5.96.83-5.96 1.637 0 .808 2.558 1.48 5.96 1.638v5.862h3.025v-5.864c3.394-.157 5.948-.83 5.948-1.637"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/textpattern.svg������������������������������0000664�0000000�0000000�00000003111�14753064456�0026201�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.638 10.8h-.559s-.918-.776-1.872-1.692S0 7.721 0 7.721v-.559L7.162 0h.559s.744.61 1.631 1.448 1.448 1.63 1.448 1.63v.559L8.607 5.83l4.397 4.117 3.272-3.271c.841-.84 1.736-2.719 1.736-2.719l2.346-2.346.61-.413L24 4.231l-.414.611-2.344 2.344s-1.606.684-2.718 1.737-3.34 3.34-3.34 3.34 1.933 2.146 4.057 4.27c2.146 2.146 4.484 4.271 4.651 4.426.334.309-.347 1.373-.906 2.027s-.857.697-1.247.901-.836-.051-.836-.051-2.056-2.261-4.082-4.304c-1.975-1.991-4.559-4.349-4.559-4.349l-7.079 7.078c-.433.434-.597 1.089-.597 1.089l-.649.65s-.701-.396-1.553-1.255-1.182-1.487-1.182-1.487l.646-.646s.598-.084 1.088-.597 7.01-7.009 7.01-7.009L5.827 8.608zm17.267 13.04c-.02-.019-.034-.033 0 0M17.449 8.756l.453-.453c.86-.86 3.194-1.392 3.194-1.392l2.26-2.26.258-.381-2.682-2.682-.381.258-2.261 2.261s-.942 1.925-1.802 2.784l-.423.423-.03.03L3.148 20.231c-.491.492-1.147.655-1.147.655l-.409.41s.551.787 1.004 1.24c.453.454.765.647.765.647l.462-.475s.246-.573.737-1.065zm-4.656 1.406L8.995 6.585s-.626.197-1.088.815-.488 1.125-.066 1.547l3.085 3.082zm2.642 2.818s-.714.181-1.097.746-.359.927.052 1.339c.412.412 2.378 2.199 3.888 3.718s3.746 3.864 4.004 4.04l.26.177s.389-.303.668-.702.627-.981.462-1.132c-.166-.152-1.828-1.669-4.027-3.81s-4.21-4.376-4.21-4.376M.299 7.287v.339s.369.523 1.36 1.514 1.514 1.36 1.514 1.36h.339l-.091-.257s-.766-.399-1.615-1.249c-.85-.85-1.25-1.616-1.25-1.616s2.058-2.009 3.442-3.393C5.383 2.6 7.377.557 7.377.557s.737.429 1.587 1.279 1.279 1.586 1.279 1.586l.257.091v-.339s-.369-.523-1.36-1.514S7.626.3 7.626.3h-.339z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tga.svg��������������������������������������0000664�0000000�0000000�00000005473�14753064456�0024407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.878 12.482c-.043.03-.06.038-.074.051q-.975.97-1.943 1.945c-.04.04-.061.119-.061.18-.005.602-.003 1.203-.003 1.805 0 .035.007.07.013.13.303-.295.584-.575.873-.846.106-.1.18-.207.226-.346.256-.778.519-1.553.779-2.33.062-.186.12-.374.19-.589m-4.345 1.916c.068-.061.105-.092.139-.126l2.001-1.95q1.536-1.49 3.068-2.982a.44.44 0 0 0 .108-.183q.35-1.17.693-2.343c.044-.148.084-.298.135-.477-.047.033-.064.041-.077.054q-.883.876-1.765 1.753-1.023 1.024-2.045 2.05-1.086 1.084-2.169 2.172a.3.3 0 0 0-.079.19c-.008.456-.007.912-.009 1.368zM23.543.024 23.512 0q-.34.349-.683.695-1.418 1.422-2.839 2.842c-1.058 1.056-2.12 2.108-3.177 3.164a1196 1196 0 0 0-3.466 3.473.3.3 0 0 0-.073.19c-.01.558-.01 1.117-.013 1.675 0 .042.006.083.01.144.04-.033.068-.05.09-.073q1.56-1.53 3.116-3.062l3.432-3.384c.898-.885 1.799-1.77 2.695-2.657a.45.45 0 0 0 .11-.181c.15-.492.293-.985.438-1.478l.39-1.324M4.148 12.48c.013.064.017.101.029.135q.489 1.44.985 2.877a.6.6 0 0 0 .146.227q.452.453.914.897c.11.107.227.207.355.323-.23.225-.427.423-.63.617-.06.057-.081.107-.048.19.115.287.223.578.334.868q.082.214.166.427l.06.035 1.1-1.173 1.221 1.284c-.006.007-.027.033-.05.056q-.772.772-1.547 1.54c-.062.062-.073.111-.038.19.061.137.11.28.166.419l.352.879 2.158-2.125 1.18 1.208-2.634 2.636c.032.003.054.008.076.008.621 0 1.243.002 1.865-.003a.27.27 0 0 0 .163-.072c.16-.148.314-.303.47-.456l1.117-1.1c.042.04.078.07.112.103.488.48.974.96 1.468 1.434.055.053.15.09.227.09.544.008 1.088.005 1.632.005h.13zm12.148 9.842c.031-.04.043-.05.047-.061.166-.425.327-.852.497-1.275.038-.093-.016-.133-.067-.183q-1.853-1.845-3.703-3.691-2.384-2.383-4.766-4.768Q5.636 9.678 2.97 7.011c-.19-.19-.374-.389-.56-.584l-.042.03c.009.045.013.091.026.135.242.824.482 1.648.73 2.47.041.134.09.287.184.383.703.71 1.418 1.41 2.13 2.113q1.584 1.566 3.17 3.13a.32.32 0 0 1 .105.255c-.007.427-.006.855-.007 1.282v.5q.023.014.047.027l.917-.992c.068.058.098.08.125.107.356.351.71.705 1.07 1.052a.35.35 0 0 1 .118.28c-.006.524-.004 1.049-.004 1.573 0 .047.004.093.008.175l.96-.928c.027.013.037.015.044.022q.619.606 1.233 1.217a.22.22 0 0 1 .058.14c.002.302-.005.603-.006.903-.002.26 0 .518 0 .818l.966-.933zm1.258-3.252-1.059-1.138-.942.91v-.207c0-.48.002-.96-.003-1.442 0-.063-.013-.144-.052-.185-.406-.431-.818-.856-1.242-1.295l-.984.953v-.192c0-.52.002-1.04-.003-1.559a.3.3 0 0 0-.062-.181c-.39-.42-.787-.832-1.215-1.281l-.95 1.037-.056-.037q-.005-.067-.007-.135c0-.549.006-1.098-.002-1.647a.38.38 0 0 0-.097-.238 1129 1129 0 0 0-3.293-3.275L2.77 4.38c-.451-.447-.908-.89-1.355-1.342a.7.7 0 0 1-.16-.268C.988 1.89.73 1.004.47.121.462.09.462.058.458.027L.495 0C.66.174.823.353.993.523q2.545 2.541 5.09 5.082 2.296 2.296 4.591 4.594 2.071 2.07 4.142 4.137 1.619 1.615 3.233 3.235c.035.035.065.115.05.156-.16.432-.33.86-.497 1.29-.003.008-.012.014-.048.053"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/thangs.svg�����������������������������������0000664�0000000�0000000�00000001357�14753064456�0025115�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.18 13.902a1.902 1.902 0 1 1 0-3.804 1.902 1.902 0 0 1 0 3.804m0-5.722A3.82 3.82 0 0 0 16.36 12v3.82h3.82a3.82 3.82 0 1 0 0-7.64m-8.656 5.722A1.907 1.907 0 0 1 9.611 12c0-1.05.857-1.902 1.913-1.902s1.913.852 1.913 1.902-.857 1.902-1.913 1.902m-7.683 0A1.907 1.907 0 0 1 1.928 12c0-1.05.857-1.902 1.913-1.902S5.754 10.95 5.754 12s-.856 1.902-1.913 1.902m11.514-2.107-.002-.032a4 4 0 0 0-.04-.37l-.004-.019a4 4 0 0 0-.081-.373V11a3.836 3.836 0 0 0-3.704-2.82H3.84a3.83 3.83 0 0 0-3.794 3.254l-.001.008q-.027.176-.036.357l-.002.02v.016C.006 11.89 0 11.945 0 12c0 .07.007.137.01.206l.002.032q.012.187.041.37l.003.018a3.83 3.83 0 0 0 3.786 3.194h11.523V12q-.002-.104-.01-.205"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/thanos.svg�����������������������������������0000664�0000000�0000000�00000001146�14753064456�0025121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h16.998A7 7 0 0 0 24 16.998V0Zm18.707 15.129h.896v.895h-.896zm-.281-3.857h1.455v1.456h-1.455Zm-.224-3.801h1.903v1.905h-1.903Zm-3.073 11.234h.895v.896h-.896zm-.28-3.902h1.456v1.457h-1.456zm-.224-3.755h1.906v1.904h-1.904Zm.224-1.897V7.696h1.456V9.15Zm-6.874 9.554h.896v.896h-.896Zm-.28-3.856h1.456v1.454H7.695Zm.28-2.401v-.896h.896v.896zm-.28-4.752h1.456V9.15H7.695ZM4.4 18.706h.897v.895H4.4Zm0-3.577h.897v.895H4.4Zm-.28-3.857h1.455v1.456H4.12Zm-.224-3.801H5.8v1.905H3.895Zm-.837-4.413H20.94v3.577h-7.153v14.307h-3.576V6.635H3.058Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/thealgorithms.svg����������������������������0000664�0000000�0000000�00000001316�14753064456�0026476�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.226 19.857H1.353l1.79-4.225h4.812L13.308 3.21H7.564l-4.226 9.82h2.587c.18.3.511.51.887.51a1.04 1.04 0 0 0 1.038-1.037c0-.572-.467-1.023-1.038-1.023-.421 0-.767.24-.932.602H4.647l3.503-7.94h3.76L7.383 14.684l-4.766.03L0 20.79h8.842L10 18.263h3.835l1.278 2.526H24L15.985 3.211Zm2.27-2.586 1.384-3.023 1.503 3.023zm5.218 2.691-.872-1.759h2.737c.18.33.526.556.917.556a1.04 1.04 0 0 0 1.038-1.037 1.04 1.04 0 0 0-1.038-1.038c-.42 0-.782.256-.947.617H14.42l-2.09-4.06 1.534-3.369 1.729 3.519h.812c.165.346.526.601.932.601a1.04 1.04 0 0 0 1.038-1.037 1.04 1.04 0 0 0-1.038-1.038 1.03 1.03 0 0 0-.962.662h-.3l-1.79-3.64 1.699-3.728 6.677 14.751Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/theboringcompany.svg�������������������������0000664�0000000�0000000�00000004161�14753064456�0027175�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 6.959v.463h.424v1.625h.57V7.422h.445v-.463zm1.643 0v2.088h.57v-.842h.742v.842h.57V6.959h-.57v.781h-.742v-.78h-.57zm2.287 0v2.088h1.199V8.54h-.621v-.295h.596v-.508h-.596v-.312h.62v-.467H3.93zm17.91 2.73c-1.31 0-2.22.902-2.22 2.217 0 1.316.932 2.211 2.208 2.211 1.522 0 2.301-1.167 2.154-2.492H21.83v.887h.867c-.071.455-.425.61-.87.61-.66 0-1.02-.462-1.02-1.21-.012-.742.427-1.236 1.025-1.236.41 0 .73.216.893.66l1.064-.457c-.345-.759-1.026-1.19-1.95-1.19zm-15.877.012c-1.375 0-2.313.99-2.313 2.21s.974 2.206 2.313 2.206 2.31-.987 2.31-2.207-.935-2.209-2.31-2.209m-5.875.13v4.171h1.687c1.153 0 1.516-.615 1.516-1.268 0-.494-.275-.86-.824-.986.278-.147.43-.473.43-.853 0-.57-.317-1.065-1.07-1.065H.086zm8.816 0v4.171h1.123v-1.545l.993 1.545h1.373v-.047l-1.274-1.66c.584-.133.889-.601.889-1.186 0-.688-.49-1.279-1.24-1.279zm3.909 0v4.171h1.105V9.83zm1.931 0v4.171h1.125v-2.473l1.938 2.473h1.113V9.83h-1.113v2.465L15.869 9.83zm-13.533.839h.187c.238 0 .457.114.457.39 0 .27-.22.391-.457.391h-.187zm8.816.021h.307c.265 0 .521.216.521.48 0 .266-.201.481-.521.481h-.307v-.96zm-8.816 1.577h.25c.414-.002.693.138.693.421 0 .271-.21.412-.513.416l-.43.006zm8.156 2.552c-.656 0-1.103.498-1.103 1.112 0 .613.464 1.109 1.103 1.109.187 0 .358-.042.508-.117v-.658h-.037a.54.54 0 0 1-.44.214.54.54 0 0 1-.548-.548c0-.304.222-.551.548-.551a.54.54 0 0 1 .444.217h.033v-.662a1.14 1.14 0 0 0-.508-.116m1.918 0c-.692 0-1.164.498-1.164 1.112 0 .613.49 1.109 1.164 1.109s1.162-.496 1.162-1.11c0-.613-.47-1.11-1.162-1.11zm1.715.045-.352 2.117h.57l.184-1.103.422 1.103h.285l.422-1.103.182 1.103h.57l-.351-2.117-.563.004-.402 1.05-.403-1.05zm2.57 0v2.112h.592v-.68h.324c.504 0 .717-.317.717-.71 0-.388-.21-.722-.822-.722zm2.356 0-.81 2.117h.626l.113-.34h.75l.114.34h.629l-.81-2.117zm1.594 0v2.112h.568V15.74l.97 1.237h.561v-2.112h-.562v1.244l-.97-1.244zm2.218 0 .785 1.114v.998h.567v-.989l.79-1.123h-.689l-.38.574-.381-.574zm-5.576.485h.207c.31 0 .318.478-.014.478h-.193zm-4.877.03c.337 0 .565.248.565.552a.547.547 0 0 1-.565.548.55.55 0 0 1-.566-.548c0-.304.23-.551.566-.551zm6.945.198.211.602h-.42l.21-.602z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/theconversation.svg��������������������������0000664�0000000�0000000�00000000615�14753064456�0027040�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.996 10.543c-.131-4.91-4.289-8.773-9.2-8.773H9.005a8.997 8.997 0 0 0-5.957 15.746L1.05 22.23l4.942-2.98c.95.36 1.964.524 3.012.524h6.024c5.04 0 9.099-4.156 8.969-9.23zm-8.937 5.958H9.07c-2.587 0-5.205-2.03-5.696-4.583a5.724 5.724 0 0 1 5.63-6.874h5.99c2.586 0 5.205 2.03 5.696 4.582.688 3.667-2.095 6.875-5.63 6.875z"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/thefinals.svg��������������������������������0000664�0000000�0000000�00000000363�14753064456�0025602�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.523 19.319H24L14.965 6.295c-.626-.904-1.51-1.614-2.847-1.614-1.38 0-2.264.775-2.889 1.614L0 19.319h5.261l3.372-4.759 3.256 4.759h5.478l-5.934-8.712.599-.846zm0 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/theguardian.svg������������������������������0000664�0000000�0000000�00000005554�14753064456�0026127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.272 8.129-1.16.207V8.4l.32.127v3.577l-.28.16v.103h1.52v-.103l-.264-.145V9.961a.64.64 0 0 1 .4-.129c.24 0 .368.112.368.408v1.871l-.272.145v.111h1.512v-.111l-.271-.145v-1.863c0-.536-.225-.816-.729-.816a1.54 1.54 0 0 0-.992.361l-.031.031V8.13zm-4.512.566-.047 1.121H4.8l.744-1.007h.318v3.23l-.416.217v.111H7.36v-.119l-.416-.217V8.81h.32L8 9.816h.111l-.047-1.12zm8.033.785c-.888 0-1.434.569-1.434 1.489 0 .936.505 1.478 1.48 1.478.553 0 .952-.303 1.104-.52v-.11c-.2.103-.414.24-.718.24-.632 0-.896-.457-.928-1.05h1.752v-.023c0-1.088-.432-1.504-1.256-1.504m-.033.12c.256 0 .385.488.385 1.224l-.866.047c.002-.715.218-1.271.48-1.271m2.577 1.896-1.217.217v.08l.328.111v.928c-.088-.048-.271-.088-.511-.088-.84 0-1.4.52-1.4 1.6 0 1.024.48 1.52 1.128 1.52a1.07 1.07 0 0 0 .8-.329h.032v.32l.096.016 1.201-.158v-.106l-.338-.119v-3.976zm1.367 0a.513.513 0 0 0-.527.512.51.51 0 0 0 .527.511c.288 0 .537-.215.537-.511 0-.288-.249-.512-.537-.512m-14.52.184C1.04 11.68 0 12.233 0 13.793c0 1.456.84 2.07 2.145 2.07a4 4 0 0 0 1.359-.23v-1.465l.367-.2v-.136H2.072v.12l.375.216v1.48a.8.8 0 0 1-.336.055c-.568 0-.806-.624-.814-2.008-.008-1.16.302-1.863.91-1.863.208 0 .314.016.434.072l.664 1.047h.111l-.023-1.088c-.248-.104-.721-.183-1.21-.183m20.714 1.033c-.36.016-.714.157-.954.375h-.039v-.367h-.12l-1.2.214v.122l.336.111v2.36l-.287.16v.113h1.566v-.114l-.271-.152v-2.264a.65.65 0 0 1 .408-.127c.248 0 .385.12.385.424v1.951l-.281.16v.114H24v-.113l-.28-.16v-2.008c0-.56-.231-.8-.751-.8zm-5.772.04-1.236.224v.096l.336.127v2.32l-.282.16v.114h1.56v-.113l-.27-.153v-2.76zM5 12.76l-1.2.217v.087l.329.143v1.8c0 .52.264.856.84.856a1.34 1.34 0 0 0 .902-.375h.033v.36l.12.007 1.193-.152v-.08l-.32-.135v-2.72l-.13-.008-1.199.217v.087l.328.143v2.129a.49.49 0 0 1-.392.183c-.232 0-.367-.087-.367-.375v-2.369zm3.545 0a3.5 3.5 0 0 0-1.098.191v.809h.088l.656-.88.13-.017c.367 0 .495.201.495.793v.393l-.007-.01-.649.129c-.624.12-.928.393-.928.897s.32.798.8.798c.375 0 .617-.127.777-.351h.03c.089.216.273.343.673.343.248 0 .472-.063.584-.127v-.08l-.287-.08v-1.92c0-.664-.464-.888-1.264-.888m2.879 0-.008.008-1.2.224v.08l.329.096v2.352l-.281.16v.113h1.56v-.113l-.271-.153v-1.734c.176-.08.382-.129.654-.129.088 0 .192 0 .248.016v-.897c-.032-.016-.094-.015-.15-.015-.344 0-.632.24-.76.88h-.026v-.88zm7.488 0c-.464 0-.816.103-1.096.191v.809h.088l.657-.88.127-.017c.36 0 .496.201.496.793v.393h-.008l-.64.127c-.633.12-.936.384-.936.888s.32.8.8.8c.376 0 .616-.128.776-.352h.023c.088.216.272.343.672.343.256 0 .482-.063.594-.127v-.08l-.29-.08v-1.92c0-.664-.463-.888-1.263-.888m-4.8.144c.2-.008.255.056.335.104v2.377a.42.42 0 0 1-.279.103c-.432.016-.584-.425-.584-1.209 0-.872.207-1.359.527-1.375m-5.295 1.287v1.186c-.056.064-.128.103-.248.103-.216 0-.377-.129-.377-.609 0-.44.104-.64.424-.664zm10.368 0v1.186h-.008c-.048.064-.12.103-.24.103-.225 0-.383-.129-.383-.609 0-.44.111-.64.431-.664z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/theirishtimes.svg����������������������������0000664�0000000�0000000�00000001231�14753064456�0026501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.636 4.093V8.33h.42q.27-1.735 1.3-2.67.73-.672 2.35-.672h1.197V17.22q0 1.186-.127 1.465-.173.396-.473.557-.415.247-1.096.246h-.518v.417h8.26v-.417h-.517q-.665 0-1.049-.228-.384-.226-.516-.528-.132-.304-.131-1.512V4.988h1.197q1.115 0 1.56.208.797.381 1.256 1.023.458.64.834 2.11H24V4.093zM7.74 19.488q-.658 0-1.044-.227-.387-.226-.519-.529-.132-.302-.132-1.512V6.778q-.001-1.185.127-1.464.171-.396.472-.559.415-.244 1.096-.244h.519v-.418H0v.418h.521q.66 0 1.05.227.387.227.515.53.128.301.129 1.51v10.444q-.001 1.185-.128 1.465-.164.396-.463.557-.42.245-1.103.245H0v.418h8.26v-.418h-.52Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/themighty.svg��������������������������������0000664�0000000�0000000�00000000670�14753064456�0025630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.178.001h-4.432L12.05 13.988 9.309.001H4.856c.216.219.334.634.39 1.072v21.21c0 .621-.105 1.383-.425 1.717 1.014-.214 2.307-.416 3.414-.611V9.375l2.489 12.375c.07.46.135 1.084-.021 1.198q1.27-.194 2.544-.366c-.105-.16-.064-.652-.005-1.061L15.696 9.15v13.095c1.054-.123 2.366-.24 3.47-.349l.012-.008c-.324-.328-.43-1.1-.43-1.724V1.726c0-.627.105-1.396.43-1.726z"/></svg>������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/themodelsresource.svg������������������������0000664�0000000�0000000�00000001262�14753064456�0027360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.25 0C.557 0 0 .557 0 1.25v21.5C0 23.442.557 24 1.25 24h21.5c.692 0 1.25-.558 1.25-1.25V1.25C24 .557 23.442 0 22.75 0h-2.734c1.667 1.037 1.521 11.428 1.68 18.734.023 1.1.616 3.805.616 3.805s-1.702.913-3.15 1.373c-.652-2.478-.633-3.488-.633-3.488l-.181-10.67-.4-4.62c-2.156 3.08-3.445 6.123-3.987 8.007-1.442.915-1.92 1.09-2.957 1.384-1.056-.552-3.91-3.216-4.961-3.921 2.096 6.826 2.238 9.642 2.238 9.642s-2.231 1.759-2.797 1.606c-.232-.064-.495-.275-.507-.516-.183-3.672-.76-5.902-1.508-8.773C2.576 9.13.32 4.07.32 4.07c.948-.641 1.52-.883 2.836-1.265L11.61 11S16.073 3.616 17.104.906c0 0 2.244-.748 2.71-.906z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/themoviedatabase.svg�������������������������0000664�0000000�0000000�00000004035�14753064456�0027132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.62 12a2.29 2.29 0 0 1 2.292-2.295h-.013A2.29 2.29 0 0 1 11.189 12a2.29 2.29 0 0 1-2.29 2.291h.013A2.29 2.29 0 0 1 6.62 12m10.72-4.062h4.266a2.29 2.29 0 0 0 2.29-2.291 2.29 2.29 0 0 0-2.29-2.296H17.34a2.29 2.29 0 0 0-2.291 2.296 2.29 2.29 0 0 0 2.29 2.29zM2.688 20.645h8.285a2.29 2.29 0 0 0 2.291-2.292 2.29 2.29 0 0 0-2.29-2.295H2.687a2.29 2.29 0 0 0-2.291 2.295 2.29 2.29 0 0 0 2.29 2.292zm10.881-6.354h.81l1.894-4.586H15.19l-1.154 3.008h-.013l-1.135-3.008h-1.154zm4.208 0h1.011V9.705h-1.011zm2.878 0h3.235v-.93h-2.223v-.933h1.99v-.934h-1.99v-.855h2.107v-.934h-3.112zM1.31 7.941h1.01V4.247h1.31v-.895H0v.895h1.31zm3.747 0h1.011V5.959h1.958v1.984h1.011v-4.59h-1.01v1.711H6.061V3.351H5.057zm5.348 0h3.242v-.933H11.41v-.934h1.99v-.933h-1.99v-.856h2.107v-.934h-3.112zM.162 14.296h1.005v-3.52h.013l1.167 3.52h.765l1.206-3.52h.013v3.52h1.011v-4.59H3.82L2.755 12.7h-.013L1.686 9.705H.156zm14.534 6.353h1.641a3.2 3.2 0 0 0 .98-.149 2.5 2.5 0 0 0 .824-.437 2.1 2.1 0 0 0 .567-.713 2.2 2.2 0 0 0 .223-.983 2.4 2.4 0 0 0-.218-1.07 1.96 1.96 0 0 0-.586-.716 2.4 2.4 0 0 0-.873-.392 4.4 4.4 0 0 0-1.046-.13h-1.519zm1.013-3.656h.596a2.3 2.3 0 0 1 .606.08 1.5 1.5 0 0 1 .503.244 1.2 1.2 0 0 1 .34.412 1.3 1.3 0 0 1 .13.587 1.55 1.55 0 0 1-.13.658 1.1 1.1 0 0 1-.347.433 1.4 1.4 0 0 1-.518.238 2.8 2.8 0 0 1-.649.07h-.538zm4.686 3.656h1.88a3 3 0 0 0 .613-.064 1.7 1.7 0 0 0 .554-.214 1.2 1.2 0 0 0 .402-.39 1.1 1.1 0 0 0 .155-.606 1.2 1.2 0 0 0-.071-.415 1 1 0 0 0-.204-.34 1.1 1.1 0 0 0-.317-.24 1.3 1.3 0 0 0-.413-.13v-.012a1.2 1.2 0 0 0 .575-.366.96.96 0 0 0 .216-.648 1.1 1.1 0 0 0-.149-.603 1 1 0 0 0-.389-.354 1.7 1.7 0 0 0-.54-.169 4.5 4.5 0 0 0-.6-.041h-1.712zm1.011-3.734h.687a1.4 1.4 0 0 1 .24.022.8.8 0 0 1 .22.075.43.43 0 0 1 .16.147.4.4 0 0 1 .061.236.5.5 0 0 1-.055.233.43.43 0 0 1-.146.156.6.6 0 0 1-.204.084 1 1 0 0 1-.23.026h-.745zm0 1.835h.765a2 2 0 0 1 .266.02 1 1 0 0 1 .26.07.5.5 0 0 1 .204.152.4.4 0 0 1 .08.26.5.5 0 0 1-.06.253.5.5 0 0 1-.16.168.6.6 0 0 1-.217.09 1 1 0 0 1-.237.027H21.4z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/thenorthface.svg�����������������������������0000664�0000000�0000000�00000004001�14753064456�0026270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.816 6.36v3.36h.228a4.847 4.847 0 0 1 4.764 4.764v3.036H24v-3.132c0-4.428-3.6-8.028-8.028-8.028H15.9Zm-9.06.012v.6h1.008V9.72h.696V6.972h1.008v-.6zm2.964 0V9.72h.696v-1.5h1.308v1.5h.696V6.372h-.696v1.272h-1.308V6.372Zm3 0V9.72h2.4v-.588h-1.752v-.876h1.548v-.588h-1.548V6.96h1.752v-.588ZM4.644 10.14c-.444 0-1.608.192-1.608 1.752s1.164 1.752 1.608 1.752 1.608-.192 1.608-1.752-1.164-1.752-1.608-1.752M0 10.236v3.336h.648v-2.376H.66l1.368 2.376h.696v-3.336h-.648v2.316h-.012L.732 10.236Zm6.54 0 .012 3.336h.684v-1.308h.72c.516 0 .54.18.54.636 0 .348.024.516.072.672h.768v-.084c-.144-.048-.144-.168-.144-.66 0-.624-.144-.732-.42-.852.324-.108.516-.42.516-.792 0-.288-.168-.948-1.056-.948zm2.916 0v.588h1.02v2.748h.696v-2.748h1.008v-.588zm2.976 0v3.336h.696v-1.5h1.296v1.5h.696v-3.336h-.696v1.26h-1.296v-1.26zm3.372 0v3.348h.156c1.08 0 1.944.876 1.944 1.944v1.992h2.388v-2.988c-.012-2.316-1.86-4.2-4.152-4.296h-.252Zm-11.16.504c.372 0 .9.228.9 1.164s-.528 1.164-.9 1.164-.912-.228-.912-1.164.54-1.164.912-1.164m2.58.072h.864c.408 0 .492.252.492.432 0 .324-.18.456-.54.456h-.816Zm3.684 3.204c-.876 0-1.572.612-1.572 1.812 0 1.188.648 1.8 1.56 1.8.864 0 1.344-.516 1.488-1.26h-.72c-.084.42-.36.648-.756.648-.612 0-.852-.552-.852-1.164 0-.972.504-1.2.852-1.2.588 0 .696.384.756.588v-.012h.72c-.036-.504-.456-1.212-1.476-1.212m-6.696.084v3.432h.708v-1.44h1.512v-.612H4.92v-.768h1.728V14.1Zm3.228 0-1.224 3.432h.756l.228-.708h1.284l.216.708h.78L8.268 14.1Zm5.232 0v3.432h2.46v-.612h-1.8v-.888h1.596v-.6h-1.596v-.72h1.8V14.1Zm3.144.012v3.432h1.596v-1.992c0-.792-.648-1.44-1.44-1.44zm-7.98.768h.012l.42 1.356h-.876Zm-4.92.912a.927.927 0 0 0-.936.924c0 .528.432.924.936.924a.917.917 0 0 0 .924-.924.917.917 0 0 0-.924-.924m0 .144c.42 0 .756.336.756.78 0 .456-.324.792-.756.792s-.768-.348-.768-.792.336-.78.768-.78m-.36.24v1.092h.168V16.8h.18l.3.468h.18l-.312-.48c.168-.024.288-.108.288-.3 0-.216-.132-.312-.384-.312zm.168.132h.228c.12 0 .24.024.24.168 0 .168-.144.18-.288.18h-.18z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/theodinproject.svg���������������������������0000664�0000000�0000000�00000001675�14753064456�0026655�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3.002 0 1.99 7.387 1.576 1.576v.576l.975 1.924c.806-1.53 2.844-2.064 4.312-.969l.202.15.2-.15c1.47-1.095 3.508-.561 4.315.969l.975-1.926v-.69l1.46-1.46L20.999 0l-3.633 1.86v3.257c-.655-.395-2.981-1.691-5.308-1.691-2.494 0-4.987 1.489-5.422 1.762V1.859zm6.111 10.229a.324.324 0 0 0-.326.322v.998c0 .267.22.484.49.484h.56c.305 0 .594-.12.81-.332a1.12 1.12 0 0 0 .335-.797v-.353a.325.325 0 0 0-.328-.323zm5.291.392a.514.514 0 0 0-.517.51c0 .28.232.51.517.51a.514.514 0 0 0 .518-.51.513.513 0 0 0-.518-.51m-7.836.023L5.103 16.06l1.497 2.95 1.375-5.103.197-.097zm10.979 0-1.604 3.165.198.097 1.375 5.104 1.496-2.951zm-5.49 1.805-1.828.903-1.649 8.843L12.057 24l3.476-1.805-1.646-8.843zm-2.389 1.18-1.27.625-1.654 6.137 1.469 1.049zm4.78 0 1.454 7.81 1.467-1.048-1.652-6.137zm-3.016.084h1.28v.451a.62.62 0 0 1-.187.445.64.64 0 0 1-.453.186.65.65 0 0 1-.453-.186.62.62 0 0 1-.187-.445z"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/theregister.svg������������������������������0000664�0000000�0000000�00000002301�14753064456�0026144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.368 12.858a43 43 0 0 1-2.612 1.818c-.893.568-1.683.977-2.378 1.22-.695.245-1.167.198-1.413-.132q-.347-.627-.028-1.826.315-1.201.893-2.485.572-1.174.99-2.39.417-1.217.4-2.458-.019-1.238-.758-2.47-.65-1.006-1.94-1.508c-.863-.337-1.823-.504-2.883-.492a9.5 9.5 0 0 0-3.148.58 6.8 6.8 0 0 0-2.23 1.402q-1.011.94-1.6 2.345c-.134.341-.221.794-.27 1.346a18 18 0 0 0-.082 1.49c-.004.444-.008.678-.004.698q-.648.447-1.481 1.096-.835.647-1.64 1.552a15.4 15.4 0 0 0-1.437 1.973q-.59.981-.727 1.505c-.048.143-.008.532.119 1.183.127.643.457 1.386 1 2.227q.818 1.263 2.617 2.331.02.017.09-.067a1 1 0 0 0 .084-.087 7 7 0 0 1-.43-.476c-.261-.302-.515-.699-.757-1.175a2.9 2.9 0 0 1-.31-1.52q.072-1.097 1.394-2.006 1.326-.917 4.53-1.592c.606-.155 1.131-.385 1.58-.707q.674-.471.706-.532c-.167 1.703.14 3.26.901 4.653a12.1 12.1 0 0 0 2.537 3.176l9.906-9.878L24 11.6c-.472.37-1.012.79-1.632 1.258M9.438 7.363q-.233.619-.466 1.243-.226.624-.246.707c.028.048.127.163.282.337.163.171.254.286.282.342q.019.151-.17.707c-.124.37-.374.647-.739.838q-.72.27-1.346.103c-.417-.103-.75-.242-1.008-.413-.254-.175-.388-.266-.396-.286l4.032-4.39.016.142q-.01.052-.242.67z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/thesoundsresource.svg������������������������0000664�0000000�0000000�00000003161�14753064456�0027410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.25 0C.557 0 0 .557 0 1.25v4.807c.003-.02.001-.04.006-.06.16-.7 1.27-1.914 3.219-3.589C4.028 1.718 6.149.275 8.348 0zm8.21 0c1.119.23 2.168 1.177 1.55 2.338-.357.67-1.87 1.872-2.947 2.156l-.708-.098c.16-.56 1.48-1.784 1.473-2.453-.004-.47-.617-.87-1.193-.841-.728.036-2.025.873-3.166 1.845-1.142.973-2.129 2.08-2.112 2.658.028.91 2.086 1.213 4.176 1.182 2.148-.032 2.382-.095 4.164.006 1.596.09 5.601 1.363 5.44 3.535a3.1 3.1 0 0 1-.362 1.272c.087-.004.153-.021.245-.022.558-.003 1.337.84 1.337.84l-1.955.486s-.207-.247-.332-.242c-.267.01-4.72 3.241-4.53 6.768.111 2.084 2.746 3.566 5.187 3.508 2.584-.062 6.062-1.033 6.171-4.698.057-1.885-1.71-3.145-3.529-2.95-.737.078-2.585.79-2.478 2.165.083 1.077.747 1.45.902 1.416.549-.118 1.453-.43 1.453-.43l.219.297c-.038.391-2.31 1.254-3.207 1.248-1.468-.01-1.821-1.74-1.635-2.728.34-1.808 4.57-3.007 6.322-2.961 3.288.086 4.041 2.53 4.041 2.53l.014.015V1.25C24 .557 23.442 0 22.75 0zM0 6.324V22.75C0 23.442.557 24 1.25 24h12.037l-.006-.014s-4.661-.659-4.861-3.933c-.168-2.745 2.402-5.515 2.44-5.555-2.062.668-4.418 1.118-5.292 1.104-1.717-.029-5.058-.58-5.054-2.313.002-1.322.912-3.015 2.593-3.103.262-.017.442.017.643.384-.613.607-1.081 1.068-1.045 1.918.052 1.216 1.85 1.551 2.815 1.766.727.163 2.28.508 4.748-.332 2.495-.85 3.544-1.898 3.523-3.3-.009-.558-.476-1.458-2.36-2.087-1.732-.579-2.191-.664-4.267-.633-1.954.03-1.897.019-3.504-.013-1.822-.037-2.51-.402-2.883-.582C.474 7.16.07 6.784 0 6.324m24 13.123-.014.01s-.199 1.26-3.314 2.916c-2.064 1.097-5.568 1.625-5.568 1.625l-.002.002h7.648c.692 0 1.25-.558 1.25-1.25z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/thespritersresource.svg����������������������0000664�0000000�0000000�00000001640�14753064456�0027750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.25 0C.557 0 0 .557 0 1.25v6.674C4.756 2.364 9.47.04 12.879.066c1.472.011 3.551.87 3.46 2.747-.074 1.558-3.202 3.763-4.71 4.197L10.5 6.893c.075-.687 2.257-2.77 2.246-3.79-.006-.633-.976-1.38-1.853-1.318-2.047.145-8.146 5.276-8.059 6.944.07 1.356 3.274 1.823 6.46 1.775 3.276-.05 3.634-.116 6.352.01 2.129.098 8.24 2.02 8.293 5.39.039 2.465-2.673 4.325-6.326 5.776-3.402 1.351-8.208 2.291-9.789 2.265-2.62-.043-7.763-.901-7.758-3.543.004-2.015 1.494-4.58 3.907-4.732.399-.025.74.028 1.047.588-.934.925-1.683 1.592-1.627 2.888.08 1.855 3.02 2.501 4.492 2.829.435.096 3.397.582 6.767-.489 4.035-1.28 5.742-2.996 5.71-5.134-.014-.85-.923-2.285-3.563-3.149-2.374-.776-3.476-1.012-6.64-.965-2.98.045-5.872.109-8.263-.43-1.134-.255-1.875-.804-1.875-.804L0 10.982V22.75C0 23.442.557 24 1.25 24h21.5c.692 0 1.25-.558 1.25-1.25V1.25C24 .557 23.442 0 22.75 0z"/></svg>������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/thewashingtonpost.svg������������������������0000664�0000000�0000000�00000001746�14753064456�0027423�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 15.366V6.922l-2.188-1.998-2.426 2.569V5.66h-.357v2.236l-.571.595V6.589L16.65 4.924l-2.164 2.212.261.261.547-.547.69.619v2.093h-.119c-1.046 0-1.689.714-1.689 1.689 0 .5.072.737.143.904h.238a1.03 1.03 0 0 1 1.023-.833h.404v3.782c-1.26.428-1.998 1.522-2.14 3.02l.166.096c.57-.69 1.308-1.118 1.974-1.284v5.209l.048.023 2.26-2.069 1.07 1 .047-.025v-4.043c.476.142.904.475 1.213.904zm-2.426.523c-.571-.57-1.26-.88-2.165-.999V7.85l1.023-1.095 1.142 1.047zm-2.545 4.4-.571-.523V8.825l.57-.571zm-5.78-6.017V7.04L11.06 4.9 8.8 7.255 6.399 4.9 4.115 7.302v-.785c0-2.021-1.26-1.688-1.26-2.997 0-.832.523-1.237 1.165-1.546l-.143-.142C1.927 2.522.88 3.544.88 4.662c0 1 .761 1.047.761 2.212v2.973C.214 9.847 0 11.18 0 11.703c0 .309.048.594.095.737h.19c.072-.404.31-.69.81-.69h.546v3.806l2.807 2.426 2.07-2.33 2.71 2.33zm-2.45 1.879-1.927-1.642V7.73l.833-.832 1.094 1.094zm-4.424-.904-.595.69-1.665-1.428V7.802l.904-.928L6.375 8.23Z"/></svg>��������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/theweatherchannel.svg������������������������0000664�0000000�0000000�00000011510�14753064456�0027312�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0Zm5.732 6.106c.036.168.053.456.053.752v.615c0 .095-.012.223-.012.26.211-.2.56-.335.873-.335.392 0 .706.17.803.442.06.174.078.276.078.572v2.158h-.789V8.496c0-.307-.084-.42-.314-.42-.2 0-.458.12-.639.283v2.211h-.818V7.002c0-.29-.024-.578-.06-.705zm-4.205.275h3.02l-.139.701h-1v3.488h-.857V7.082H1.527Zm7.891 1.037c.355 0 .691.121.89.326.284.29.41.704.41 1.35v.187H8.936v.024c0 .476.235.748.65.748q.415 0 .784-.309l.315.483c-.357.287-.732.427-1.164.427-.887 0-1.46-.627-1.46-1.595.001-.557.116-.924.387-1.225.253-.284.56-.416.97-.416m.013.59c-.308 0-.483.242-.483.67v.011h.934v-.037c0-.229-.023-.348-.096-.463a.4.4 0 0 0-.355-.181m5.959 3.642c.035.17.054.457.054.752v.614c0 .096-.013.223-.013.26.21-.2.56-.333.875-.333.39 0 .704.17.8.44.06.177.078.279.078.574v2.158h-.789v-2.074c0-.306-.085-.422-.314-.422-.199 0-.457.122-.637.285v2.211h-.82v-3.568c0-.29-.024-.578-.06-.705zm-13.893.276h.893l.36 1.652c.17.784.224 1.38.224 1.38.017-.163.09-.761.216-1.339l.373-1.693h.922l.389 1.875c.078.391.18 1.11.18 1.11.011-.134.143-.986.228-1.395l.344-1.59h.885l-1.012 4.222h-.922l-.375-1.703a11 11 0 0 1-.197-1.217s-.073.59-.201 1.206l-.348 1.715h-.957Zm12.043.17c-.03.282-.047.62-.047.933h.723l-.205.555h-.518v1.549c0 .391.072.494.35.494.072 0 .144-.02.289-.06l.101.48c-.237.097-.447.14-.658.14-.41 0-.734-.18-.83-.453-.048-.134-.055-.194-.055-.476v-1.676h-.306v-.553h.306c0-.3 0-.5.03-.728zm7.883.86c.072.126.113.265.127.438.115-.155.306-.323.459-.39a.7.7 0 0 1 .263-.049c.122 0 .174.012.301.066l-.22.713a.47.47 0 0 0-.237-.06c-.181 0-.344.083-.492.258v2.183h-.81v-2.062c0-.415-.048-.729-.114-.903zm-13.6.007c.355 0 .694.121.893.326.283.29.41.706.41 1.35v.185H7.342v.026c0 .475.235.746.65.746.278 0 .536-.103.783-.307l.315.482c-.356.289-.73.428-1.164.428-.886 0-1.46-.627-1.46-1.596 0-.555.115-.924.386-1.224.253-.284.56-.416.97-.416zm11.131 0c.356 0 .693.121.893.326.282.29.41.706.41 1.35v.185H18.47v.026c0 .475.236.746.652.746q.414 0 .783-.307l.313.482c-.356.289-.729.428-1.163.428-.885 0-1.459-.627-1.459-1.596 0-.555.114-.924.385-1.224.254-.284.562-.416.971-.416m-8.053.002c.518 0 .874.192.994.535.042.126.061.223.055.555l-.018 1.037v.053c0 .33.055.456.29.632l-.428.494c-.187-.078-.356-.216-.434-.375-.06.06-.127.122-.187.164-.151.109-.367.168-.62.168-.688 0-1.062-.35-1.062-.964 0-.723.5-1.059 1.48-1.059.061 0 .117-.001.182.004v-.127c0-.342-.066-.457-.361-.457-.259 0-.56.128-.89.352l-.345-.58c.164-.103.284-.163.503-.252.3-.128.559-.18.841-.18m-3.066.588c-.307 0-.48.242-.48.67v.011h.933v-.037c0-.229-.024-.348-.096-.463-.079-.121-.194-.181-.357-.181m11.103 0c-.29.014-.455.256-.455.67v.011h.936v-.037c0-.229-.026-.348-.098-.463-.078-.121-.193-.181-.355-.181zm-7.832 1.21c-.561.001-.754.105-.754.471 0 .241.152.405.358.405.15 0 .3-.079.42-.211l.014-.664zM5.912 17.29c.035.17.055.457.055.754v.613c0 .096-.012.223-.012.26.21-.2.56-.332.873-.332.392 0 .704.168.8.44.061.175.079.277.079.574v2.156h-.79V19.68c0-.307-.083-.422-.312-.422-.199 0-.458.12-.638.283v2.213h-.82v-3.569c0-.29-.025-.577-.061-.705zm15.684.004c.03.169.043.37.043.803V20.5c0 .53.005.601.052.686.03.053.098.084.164.084.03 0 .046-.001.088-.012l.139.482a1.3 1.3 0 0 1-.48.084c-.345 0-.62-.16-.717-.422-.061-.155-.073-.251-.073-.691v-2.3c0-.405-.013-.652-.043-.93zm-18.057.182c.415 0 .83.133 1.06.332l-.378.572q-.317-.235-.668-.235a.87.87 0 0 0-.713.362c-.163.24-.235.59-.235 1.078 0 .572.048.891.174 1.121.17.308.447.469.809.469.246 0 .47-.071.717-.27l.384.53c-.331.27-.685.39-1.162.39-.579 0-1.024-.186-1.367-.578-.338-.38-.508-.885-.508-1.5 0-.524.092-.94.283-1.3.327-.61.929-.972 1.604-.972zm8.512 1.115a.8.8 0 0 1 .113.385c.12-.083.223-.156.355-.229.163-.083.373-.13.553-.13.344 0 .647.178.742.445.043.114.06.247.06.439v2.254h-.796v-2.008c0-.35-.06-.451-.27-.451-.162 0-.372.109-.56.277v2.182h-.809v-2.237c0-.265-.034-.516-.105-.722zm3.144 0a.8.8 0 0 1 .113.385c.121-.083.224-.156.356-.229.164-.083.375-.13.555-.13.343 0 .644.178.74.445.044.114.06.247.06.439v2.254h-.794v-2.008c0-.35-.062-.451-.272-.451-.162 0-.375.109-.56.277v2.182h-.81v-2.237c0-.265-.035-.516-.106-.722zm-5.531.012c.516 0 .873.192.992.537.043.126.063.224.057.554l-.018 1.037v.053c0 .332.054.457.29.633l-.43.494c-.187-.079-.355-.217-.432-.375-.06.061-.127.122-.188.164-.15.109-.367.168-.62.168-.688 0-1.061-.35-1.061-.963 0-.723.5-1.062 1.482-1.062.06 0 .116 0 .182.006v-.125c0-.345-.067-.457-.363-.457-.26 0-.561.126-.891.35l-.346-.58c.164-.103.285-.163.502-.253.302-.127.56-.182.844-.182m9.27 0c.354 0 .693.122.892.327.283.288.41.704.41 1.347v.188h-1.783v.025c0 .475.235.746.65.746q.415-.001.784-.308l.314.484c-.356.289-.73.426-1.164.426-.886 0-1.457-.627-1.457-1.596 0-.555.114-.922.385-1.222.253-.285.56-.416.968-.416m.012.59c-.306 0-.48.24-.48.67v.011h.933v-.035c0-.23-.023-.351-.095-.465-.08-.121-.194-.182-.358-.182m-9.078 1.211c-.56 0-.75.104-.75.471 0 .242.148.404.354.404.15 0 .301-.08.422-.213l.011-.662z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/thingiverse.svg������������������������������0000664�0000000�0000000�00000001176�14753064456�0026157�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.955.005C5.425-.152-.091 5.485.007 11.805c-.235 6.756 5.537 12.25 12.052 12.196C18.621 23.9 23.912 18.595 24 12.03 24.031 5.483 18.505-.18 11.955.005m-.047 1.701a10.276 10.276 0 0 1 7.36 17.529 10.275 10.275 0 0 1-17.556-7.287C1.71 6.308 6.268 1.728 11.907 1.706zm-5.55 4.781c-.322 0-.358.033-.358.361v2.248c0 .351.04.391.398.391h3.823c.274 0 .274.004.274.265v9.736a.18.18 0 0 0 .051.146c.04.038.093.059.148.053h2.555c.247-.003.283-.035.283-.28v-9.32c0-.124.004-.239 0-.39s.055-.21.218-.21h3.9c.319.004.35-.032.35-.344V6.855c0-.34-.024-.363-.37-.363h-5.626z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/thinkpad.svg���������������������������������0000664�0000000�0000000�00000003123�14753064456�0025424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.002 7.891a.677.677 0 0 0-.106 1.05.7.7 0 0 0 1.066-.103.68.68 0 0 0 .117-.379l.001-.001a.68.68 0 0 0-.203-.483.7.7 0 0 0-.875-.084m10.239.403a1.27 1.27 0 0 0-.881-.342h-1.466v8.195h1.148v-3.559h.318c.675 0 1.27-.68 1.27-1.337l-.001-2.106a1.22 1.22 0 0 0-.388-.851m-.654 3.052c0 .334-.283.334-.543.334V8.87h.158c.301 0 .384.198.384.71zm4.162 4.798.001-.001h-.001zm-1.384-6.666c-.848 0-1.376.407-1.376 1.103v1.283h1.078v-.934c.009-.289-.023-.708.31-.708.307 0 .256.506.256.724 0 1.639-1.65 1.023-1.65 2.308v2.207c0 .498.247.763.755.763.417 0 .614-.141.859-.532h.068a1 1 0 0 0 .065.451h1.02v-5.559c-.001-.679-.536-1.106-1.385-1.106m.304 5.561a.315.315 0 0 1-.317.293.3.3 0 0 1-.107-.011.3.3 0 0 1-.162-.134.3.3 0 0 1-.03-.101v-1.713c.003-.328.287-.517.613-.693h.003zm3.268-7.109v2.039h-.027a1.05 1.05 0 0 0-.842-.503c-.428 0-.809.247-.809.722v5.253c-.013.551.371.782.809.782.322-.038.612-.212.798-.477h.071v.396H24V7.93zm-.001 6.992c-.013.352-.154.411-.326.411-.158 0-.29-.102-.29-.411v-4.168c0-.259.097-.384.29-.384.158 0 .313.039.326.391zM0 8.951h1.09v7.169h1.177V8.951h1.078V7.92H0zm5.504.518a.84.84 0 0 0-.799.475h-.046V7.905H3.604v8.224h1.064v-5.388c0-.174.046-.379.317-.379.245 0 .298.165.298.389v5.379H6.35v-5.602c0-.693-.116-1.059-.846-1.059m1.352.083h1.06v6.583h-1.06zm3.448-.069a.88.88 0 0 0-.799.465h-.044v-.389H8.404v6.581h1.054v-5.334c0-.185.014-.43.342-.43.245 0 .282.22.282.43v5.336h1.068v-5.496c.001-.693.01-1.163-.846-1.163m4.193.079H13.43l-.611 3.033h-.101V7.928h-1.065v8.215h1.065v-3.476h.101l.622 3.476h1.091l-.676-3.604z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/thirdweb.svg���������������������������������0000664�0000000�0000000�00000002006�14753064456�0025431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 13.594c-.116.393-.29.764-.439 1.143a871 871 0 0 1-1.293 3.233q-.15.37-.297.741a.91.91 0 0 1-.848.573.91.91 0 0 1-.844-.578c-1.94-4.853-3.19-7.97-5.101-12.752a.9.9 0 0 1 .032-.76.9.9 0 0 1 .602-.462q.027-.007.052-.015h4.247q.02.007.04.012a.9.9 0 0 1 .66.567l.743 1.858 1.945 4.865c.17.428.36.847.5 1.286zM4.998 4.714q.072.018.143.041a.86.86 0 0 1 .544.506A911 911 0 0 1 6.94 8.394c.629 1.57 1.255 3.14 1.886 4.71a.9.9 0 0 1 0 .699L6.85 18.725a.9.9 0 0 1-.329.406.92.92 0 0 1-1.028-.003.9.9 0 0 1-.342-.434c-.394-1-.796-1.997-1.195-2.995-1.078-2.727-2.17-5.448-3.258-8.171q-.311-.78-.625-1.56a.91.91 0 0 1 .45-1.177 2 2 0 0 1 .238-.077zm7.627 0c.147.03.286.092.407.18a.95.95 0 0 1 .3.412q1.22 3.051 2.44 6.1.336.843.676 1.684a.93.93 0 0 1 0 .724l-1.958 4.882c-.13.323-.364.524-.71.577-.429.064-.813-.148-.968-.524-.981-2.438-1.954-4.88-2.93-7.32q-.816-2.05-1.637-4.1c-.181-.453-.356-.91-.546-1.36a.91.91 0 0 1 .027-.769.9.9 0 0 1 .607-.472l.045-.014Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/threadless.svg�������������������������������0000664�0000000�0000000�00000007616�14753064456�0025773�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.866 12.281c-.08-.188-.177-.734-.019-1.047.19.243.403.552.019 1.047m-1.49-3.192c-.231.826-.262 2.255-.027 2.852.643-1.25.111-2.625.027-2.852m-1.63 2.403c.05-1.249.05-2.138-.22-2.64-.228.678-.114 1.388.22 2.64m.491 1.2c.422.553.654.257.716-.002-.538-2.057-.18-3.149.187-4.397q0 0-.003-.002c-.02-.014-1.055.404-1.164.448.833 1.335-.164 2.85.264 3.953m5.03-.183c.741-.561.678-1.729.776-2.34h-.003s-1.154.444-1.291.498c.594.314.79.956.518 1.842m-6.58-.155c.232.529.65.312.824.09-.231-.469-.292-.668-.41-1.041-.383.058-.674.363-.415.95zm4.882.362c.534-.533.817-1.614.836-2.18l-.003-.001s-1.085.416-1.19.458c.446.468.35 1.017-.048 1.697.117.14.3.092.405.027zm2.817-1.715c.05.496-.082.952-.225 1.179.459.053.754-.709.225-1.179m-1.713.365c.004.366-.22.875-.22.875.462.31.673-.27.22-.875m-2.103 1.275c-.392-.722-.262-1.492.089-2.044l-.002-.001-.492.184a4.1 4.1 0 0 1-.52 1.768c.094.282.796.418.925.094zm3.316.047c-.544.517-1.093.546-1.66.074-.298.423-.688.603-1.37.359-.395.311-1.159.318-1.574-.063-.419.636-1.078.551-1.497-.096-.271.516-.776.535-1.184.171-.37.452-.875.496-1.171.044-.129.437-.691.699-1.334.348-.2.36-.831.684-1.54.388-.928.883-1.681.729-1.666-1.276l-.38-.097s.046 1.276.032 1.422c-.016.455-.38.538-.498.573-.344.101-.656-.178-.7-.419-.16-.899-.332-1.924-.38-1.94-.234-.076-.45 2.15-1.068 2.647-.672.54-1.12.125-1.595-.178l-.409.433c-.169-.917-.29-1.79-.059-2.628-.3.077-.737-.055-.8-.267.214-.295.566-.288.759-.258.11-.359.138-.795.042-1.255.617.017.66.48.662.608a1.6 1.6 0 0 1-.093.559.68.68 0 0 1 .644.011.41.41 0 0 1 .216.33 1.67 1.67 0 0 1-.83.159c-.457 1.142.27 1.924.908 2.104.321-2.082.139-4.514.652-5.645q-.002 0-.003-.002l-2.04.804a4.2 4.2 0 0 0-.294 1.127c-.055.024-1.874.707-1.866.75.07.363.075.723 0 1.08l-.008.004c-.25.1-.541.177-.742.367-.164.155.22.293.328.324a1 1 0 0 0 .286.026 1 1 0 0 0 .135-.02q-.025.093-.045.187a4 4 0 0 0-.082.759c-.014.565.085 1.13.186 1.682l.567-.223.104-.038c.145.093.295.178.461.233.358.116.739-.097 1.062-.222.451-.175.903-.351 1.35-.536a.6.6 0 0 0 .238.214c.346.184.963-.186 1.248-.297l.222-.087a.7.7 0 0 0 .24.244.53.53 0 0 0 .337.052 1 1 0 0 0 .189-.051c.327-.109.647-.244.967-.372.51.073.957-.144 1.465-.342l.05-.02c.23.055.446.033.663-.027.191-.053.384-.135.59-.218.284.244 1.006-.111 1.104-.15.366.273 1.084-.043 1.176-.097.247.274.568.426.953.292q.313-.11.623-.229c.304.158.663.179 1 .091a5 5 0 0 0 .45-.144c.178.052.354.085.542.076.318-.015.654-.198.946-.318.382.303 1.186.068 1.634-.133a2.43 2.43 0 0 0 1.401.146c.137-.026 1.687-.606 2.413-.91a2.37 2.37 0 0 1-1.958-.13zM5.169 9.794l-.211 3.028c.318-.498.468-2.332.211-3.028m7.725 3.156c.036.131.377.098.418-.105-.386-.557-.667-1.827.664-1.997-.207-1.118-.047-1.95.438-2.735l-.002-.002c-.016-.014-2.016.763-2.04.803a3.54 3.54 0 0 0-.51 1.639c.507-.028.73 1.298 1.032 2.397m-6.095.993s.182.278.33.095c.155-.193-.116-1.998-.12-2.025h-.004c-.088.009-.226.083-.301.111l-.06.023a1.9 1.9 0 0 1 .128.509c.058.466.027 1.287.027 1.287m1.272-2.047c.403.5.542 1.04.346 1.724.253.356.447.314.741.023-.595-.405-.555-1.904.442-2.462l-.038.011c-.241.085-1.587.555-1.976.782l-.077.046a2 2 0 0 1 .352.081zm3.463 1.188c.137.08.551.031.652-.414-.21-.686-.257-.943-.354-1.385-.455.085-.697 1.565-.298 1.8zm-1.564.361c.176.105.774.153.847-.23-.205-1.618.497-2.497.941-2.642l-.033.01-.107.038-1.84.642c.765.448.8 1.629.192 2.182m-.402-.287c.597-.633.351-1.314.076-1.35-.484.432-.396 1.128-.076 1.35m13.072-2.192a.1.1 0 0 0 .035-.01.03.03 0 0 0 .01-.03q0-.021-.014-.026a.1.1 0 0 0-.038-.004l-.056.006.007.07zm1.352-.601q-.001-.004-.004-.008l-1.105.42a.33.33 0 1 1-.355-.093l-.556.211a1.5 1.5 0 0 1 .088.194c.139.381.13.845-.086 1.347 1.464-.068 2.103-1.138 2.018-2.072zm-1.384.358a.275.275 0 1 1-.246.302.276.276 0 0 1 .246-.303zm-.092.13.032.307.055-.005-.013-.129.027-.004a.02.02 0 0 1 .015.005l.014.017.076.098.064-.007-.096-.123v-.003l.02-.011a.08.08 0 0 0 .03-.079.08.08 0 0 0-.045-.07.13.13 0 0 0-.067-.008z"/></svg>������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/threads.svg����������������������������������0000664�0000000�0000000�00000002315�14753064456�0025256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.186 24h-.007c-3.581-.024-6.334-1.205-8.184-3.509C2.35 18.44 1.5 15.586 1.472 12.01v-.017c.03-3.579.879-6.43 2.525-8.482C5.845 1.205 8.6.024 12.18 0h.014c2.746.02 5.043.725 6.826 2.098 1.677 1.29 2.858 3.13 3.509 5.467l-2.04.569c-1.104-3.96-3.898-5.984-8.304-6.015-2.91.022-5.11.936-6.54 2.717C4.307 6.504 3.616 8.914 3.589 12c.027 3.086.718 5.496 2.057 7.164 1.43 1.783 3.631 2.698 6.54 2.717 2.623-.02 4.358-.631 5.8-2.045 1.647-1.613 1.618-3.593 1.09-4.798-.31-.71-.873-1.3-1.634-1.75-.192 1.352-.622 2.446-1.284 3.272-.886 1.102-2.14 1.704-3.73 1.79-1.202.065-2.361-.218-3.259-.801-1.063-.689-1.685-1.74-1.752-2.964-.065-1.19.408-2.285 1.33-3.082.88-.76 2.119-1.207 3.583-1.291a14 14 0 0 1 3.02.142c-.126-.742-.375-1.332-.75-1.757-.513-.586-1.308-.883-2.359-.89h-.029c-.844 0-1.992.232-2.721 1.32l-1.757-1.18c.98-1.454 2.568-2.256 4.478-2.256h.044c3.194.02 5.097 1.975 5.287 5.388q.163.07.321.142c1.49.7 2.58 1.761 3.154 3.07.797 1.82.871 4.79-1.548 7.158-1.85 1.81-4.094 2.628-7.277 2.65Zm1.003-11.69q-.362 0-.739.021c-1.836.103-2.98.946-2.916 2.143.067 1.256 1.452 1.839 2.784 1.767 1.224-.065 2.818-.543 3.086-3.71a10.5 10.5 0 0 0-2.215-.221"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/threedotjs.svg�������������������������������0000664�0000000�0000000�00000001504�14753064456�0025776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.38 0a.268.268 0 0 0-.256.332l2.894 11.716.01.04 2.89 11.708a.268.268 0 0 0 .447.128L23.802 7.15a.268.268 0 0 0-.112-.45l-5.784-1.667a.3.3 0 0 0-.123-.035L6.38 1.715a.27.27 0 0 0-.144-.04L.456.01A.3.3 0 0 0 .38 0m.374.654L5.71 2.08 1.99 5.664zM6.61 2.34l4.864 1.4-3.65 3.515zm-.522.12 1.217 4.926-4.877-1.4zm6.28 1.538 4.878 1.404-3.662 3.53zm-.52.13 1.208 4.9-4.853-1.392zm6.3 1.534 4.947 1.424-3.715 3.574zm-.524.12 1.215 4.926-4.876-1.398zm-15.432.696 4.964 1.424-3.726 3.586zM8.047 8.15l4.877 1.4-3.66 3.527zm-.518.137 1.236 5.017-4.963-1.432zm6.274 1.535 4.965 1.425-3.73 3.586zm-.52.127 1.235 5.012-4.958-1.43zm-9.63 2.438 4.873 1.406-3.656 3.523zm5.854 1.687 4.863 1.403-3.648 3.51zm-.54.04 1.214 4.927-4.875-1.4zm-3.896 4.02 5.037 1.442-3.782 3.638z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/threema.svg����������������������������������0000664�0000000�0000000�00000001313�14753064456�0025246�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.998 20.486a1.757 1.757 0 1 1 0 3.514 1.757 1.757 0 0 1 0-3.514m-6.335 0a1.757 1.757 0 1 1 0 3.514 1.757 1.757 0 0 1 0-3.514m12.671 0a1.757 1.757 0 1 1 0 3.514 1.757 1.757 0 0 1 0-3.514M12 0c5.7 0 10.322 4.066 10.322 9.082S17.7 18.165 12 18.165a11.45 11.45 0 0 1-4.523-.917l-5.171 1.293 1.105-4.42c-1.094-1.442-1.733-3.175-1.733-5.039C1.678 4.066 6.3 0 12 0m-.001 4.235A2.926 2.926 0 0 0 9.072 7.16v1.17h-.115a.47.47 0 0 0-.47.47v4.126c0 .26.21.471.47.471h6.086c.26 0 .47-.21.47-.47V8.798a.47.47 0 0 0-.47-.47h-.115v-1.17a2.927 2.927 0 0 0-2.93-2.924zm0 1.17c.972 0 1.758.786 1.758 1.754v1.17h-3.514v-1.17c0-.968.786-1.754 1.756-1.754"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/thumbtack.svg��������������������������������0000664�0000000�0000000�00000000521�14753064456�0025603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.18 6.38h11.69v2.68H6.17zm7.27 3.8v3.14c0 3.23-.02 3.74-.14 4.36a7.95 7.95 0 0 1-1.3 2.87c-.03 0-.78-1.35-.9-1.62-.17-.4-.3-.8-.4-1.25l-.09-.41-.02-5.78.16-.2a3.3 3.3 0 0 1 2.44-1.1zM12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/thunderbird.svg������������������������������0000664�0000000�0000000�00000002161�14753064456�0026135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.948 4.444h-.005c-1.92.788-2.126 2.55-1.817 3.499v.02C9.236 7.18 10.658 6.76 12 6.76c3.26 0 5.902 2.156 5.902 4.815S15.259 16.391 12 16.391l-.083-.002c-.155-.006-.354-.013-.435.118-.096.156.116.397.238.536 1.274 1.441 3.123 1.622 3.608 1.67l.076.008c-4.281.414-9.304-2.32-9.306-7.076 0-1.12.414-2.073 1.075-2.83l-.005-.002h-.003C7.31 6.38 6.376 3.47 4.629 2.898c-.124-.04-.246.054-.262.183-.23 1.924-.727 2.59-1.264 3.31-.805 1.08-1.39 2.328-1.365 3.698a11 11 0 0 1-.705-1.91c-.024-.09-.17-.365-.333-.272-.13.072-.227.274-.296.485A12.1 12.1 0 0 0 0 11.489c0 6.536 5.475 12 12 12 6.627 0 12-5.372 12-12 0-2.526-.781-4.87-2.115-6.805l.167-.002c.518 0 1.024.045 1.51.129-.734-.816-1.724-1.475-2.877-1.904a8.5 8.5 0 0 1 2.494-.495c-1.426-1.166-3.508-1.9-5.827-1.9-3.355 0-6.648 1.29-7.404 3.93zm.682 9.166c-.87-.905-3.473-3.91-3.473-3.91l.202.01 4.075 3.042c.305.223.74.22 1.043-.004l3.996-3.034.212-.018s-2.518 2.935-3.483 3.9c-.964.968-1.703.919-2.572.014m2.774-10.083s.055.625-.576.824c-.722.227-1.042-.38-1.042-.38s.09-.417.676-.61c.626-.206.942.166.942.166"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/thunderstore.svg�����������������������������0000664�0000000�0000000�00000001020�14753064456�0026342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m.322 13.174 4.706 8.192L7.2 16.855 4.824 12.72a1.42 1.42 0 0 1 0-1.444l2.965-5.16c.265-.46.718-.723 1.245-.723h1.595l-3.086 6.953h3.812L6.171 22.403 16.583 9.914h-3.201l2.184-4.52h6.052L24 1.25H7.175c-.86 0-1.598.428-2.028 1.174l-4.825 8.4a2.3 2.3 0 0 0 0 2.35m7.213 9.576h9.29a2.29 2.29 0 0 0 2.03-1.176l4.825-8.4a2.32 2.32 0 0 0 0-2.35l-1.93-3.36h-4.763l2.19 3.813c.262.46.262.987 0 1.444l-2.964 5.162a1.41 1.41 0 0 1-1.248.723h-2.154l-1.497-.017z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/thurgauerkantonalbank.svg��������������������0000664�0000000�0000000�00000000314�14753064456�0030213�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.872 2.262H10.775l-6.14 9.743 6.14 9.771h11.097l-6.135-9.77zM0 .297v23.406h24V.297zm23.057 22.486L.943 22.778V1.228h22.109z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/thymeleaf.svg��������������������������������0000664�0000000�0000000�00000001221�14753064456�0025575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.727 0C.782 0 .02.761.02 1.707v20.586C.02 23.24.782 24 1.727 24h20.546c.945 0 1.707-.761 1.707-1.707V1.707C23.98.76 23.218 0 22.273 0zm18.714 3.273c-1.861 3.694-3.3 7.627-5.674 11.046-1.064 1.574-2.329 3.163-4.16 3.86-1.31.552-2.936.337-3.98-.647-.628-.523-.54-1.43-.173-2.075.96-1.224 2.34-2.02 3.59-2.915 3.842-2.625 7.446-5.654 10.397-9.27zm-1.693 1.25c-2.503 2.751-5.381 5.16-8.452 7.269l-.003.002-.003.003c-1.327.979-2.835 1.824-3.993 3.114-.349.333-.583 1.042-.537 1.481-.622-1.043-.8-2.614-.257-3.74.526-1.19 1.742-1.807 2.876-2.292 3.757-1.353 6.695-2.926 10.369-5.836z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ticketmaster.svg�����������������������������0000664�0000000�0000000�00000006617�14753064456�0026334�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.515 11.333c-.245 0-.482.047-.716.13l-.077.45c.217-.104.45-.168.69-.168.193 0 .422.063.422.282 0 .063 0 .126-.016.185h-.192c-.516 0-1.293.055-1.293.77 0 .4.27.618.65.618.303 0 .491-.139.68-.383h.008l-.058.333h.463c.049-.408.257-1.258.257-1.548 0-.509-.396-.669-.818-.669m-.38 1.855c-.14 0-.278-.076-.278-.227 0-.366.442-.412.707-.412h.192c-.085.349-.212.639-.621.639m-8.647-.783.656 1.195h-.64l-.562-1.165h-.009L4.688 13.6h-.555l.674-3.2h.566l-.376 1.8h.008l.792-.797h.736zm3.807.746c.095 0 .19-.021.256-.051l-.09.448c-.091.022-.194.052-.284.052-.359 0-.611-.155-.611-.582 0-.173.031-.341.067-.518l.15-.75H8.4l.083-.423h.382l.09-.458.569-.202-.13.66h.473l-.083.422H9.31l-.193.971a1 1 0 0 0-.024.216c0 .133.083.215.2.215m-8.4 0c.095 0 .19-.021.256-.051l-.09.448c-.091.022-.194.052-.284.052-.359 0-.611-.155-.611-.582 0-.173.031-.341.067-.518l.15-.75H0l.083-.423h.382l.091-.458.568-.202-.13.66h.473l-.083.422H.91l-.193.971a1 1 0 0 0-.024.216c0 .133.083.215.2.215m2.102-.552c0 .282.093.563.485.563.141 0 .316-.037.465-.109l-.064.446a1.24 1.24 0 0 1-.55.101c-.567 0-.933-.374-.933-.934 0-.757.507-1.333 1.296-1.333.213 0 .417.038.57.084l-.14.463a.8.8 0 0 0-.418-.11c-.456 0-.711.421-.711.83m-.458-1.643h-.61l.128-.556h.61zm-.095.408-.5 2.236h-.61l.5-2.236zm18.356.794c0 .164-.02.323-.051.483h-1.253c.001-.103.01-.217.056-.387h.728a1 1 0 0 0 .012-.147c0-.231-.115-.362-.337-.362-.313 0-.458.19-.56.466a1.2 1.2 0 0 0-.087.43v.018q0 .03.003.06c.026.34.224.469.565.469.218 0 .428-.059.626-.156l-.067.446a2.2 2.2 0 0 1-.65.122c-.588 0-.985-.303-.985-.946 0-.673.492-1.32 1.163-1.32.504 0 .837.272.837.824m1.773-.825c.076 0 .156.004.227.022l-.125.563a.8.8 0 0 0-.227-.034c-.423 0-.628.365-.704.722l-.214.994h-.597l.41-1.918.054-.297h.57l-.08.417h.009c.107-.24.4-.469.677-.469zm1.143.263q.001-.176-.214-.176h-.239v.626h.102v-.277h.085l.175.277h.108l-.178-.277c.098 0 .161-.072.161-.173m-.351.093V11.5h.12c.066 0 .13.02.13.092 0 .08-.051.097-.13.097zm-10.165.25c0 .198-.05.422-.095.603L12.88 13.6h-.556l.224-1.08c.03-.133.07-.34.07-.473a.256.256 0 0 0-.26-.266c-.387 0-.482.464-.553.765l-.22 1.054h-.556l.224-1.08c.029-.133.07-.34.07-.473a.256.256 0 0 0-.261-.266c-.378 0-.482.468-.552.765l-.22 1.054h-.557l.39-1.97.046-.245h.52l-.05.297h.008a.77.77 0 0 1 .656-.349c.253 0 .514.155.544.422h.008c.141-.288.453-.422.751-.422.32 0 .594.271.594.607m10.267-.739a.534.534 0 0 0-.534.534.534.534 0 0 0 .534.533.534.534 0 0 0 .533-.533.534.534 0 0 0-.533-.534m.002.987c-.249 0-.434-.198-.434-.453 0-.256.185-.454.433-.454.245 0 .43.198.43.454 0 .255-.185.453-.43.453m-5.418.533a1 1 0 0 0-.024.216c0 .133.083.215.201.215.095 0 .19-.021.256-.051l-.09.448c-.09.022-.193.052-.284.052-.359 0-.611-.155-.611-.582 0-.173.032-.341.067-.518l.15-.75h-.383l.083-.423h.383l.09-.458.568-.202-.13.66h.473l-.083.422h-.473zm-1.404-1.387c.216 0 .437.038.553.067l-.128.425a1 1 0 0 0-.394-.08c-.176 0-.397.047-.397.22 0 .273.767.374.767.903 0 .564-.516.732-1.022.732-.239 0-.477-.034-.693-.13l.128-.45c.168.088.335.168.564.168.199 0 .406-.063.406-.24 0-.349-.767-.383-.767-.925 0-.509.516-.69.983-.69m-8.38.825q-.002.245-.052.483H6.963c0-.103.009-.217.056-.387h.728a1 1 0 0 0 .012-.147c0-.231-.115-.362-.338-.362-.313 0-.457.19-.56.466a1.2 1.2 0 0 0-.086.43v.018l.002.06c.026.34.225.469.565.469.218 0 .429-.059.627-.156l-.068.446a2.2 2.2 0 0 1-.65.122c-.588 0-.984-.303-.984-.946 0-.673.492-1.32 1.162-1.32.504 0 .838.272.838.824"/></svg>�����������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ticktick.svg���������������������������������0000664�0000000�0000000�00000000456�14753064456�0025435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.383 0 0 5.383 0 12s5.383 12 12 12 12-5.383 12-12h-2.7c0 5.128-4.172 9.3-9.3 9.3S2.7 17.128 2.7 12 6.872 2.7 12 2.7zm7.4 2.583-7.505 9.371L8.388 9.08l-2.002 2.436 4.741 3.888a1.573 1.573 0 0 0 2.231-.233l8.504-10.617z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tidal.svg������������������������������������0000664�0000000�0000000�00000000404�14753064456�0024716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.012 3.992 8.008 7.996 4.004 3.992 0 7.996 4.004 12l4.004-4.004L12.012 12l-4.004 4.004 4.004 4.004 4.004-4.004L12.012 12l4.004-4.004zm4.03 4.004 3.979-3.979L24 7.996l-3.979 3.979z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tiddlywiki.svg�������������������������������0000664�0000000�0000000�00000002635�14753064456�0026006�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 0 10.23 6v12L12 24 1.77 18V6zm3.961 17.889.154-.02c.113-.043.22-.081.288-.19.227-.329-.357-.462-.566-.827s-1.071-2.364-.418-2.924 1.359-.79 1.629-1.315c.117-.236.238-.475.269-.742.159.132.283.255.497.262.567.036 1.054-.658 1.307-1.315.135-.404.244-.832.218-1.226-.069-.76.013-1.582.62-2.087-.599.302-1.167.69-1.845.789-.374-.114-.75-.216-1.147-.2-.194-.253-.456-.727-.797-.782-.58.208-.597 1.105-.842 2.321a5.4 5.4 0 0 0-1.154-.193c-.54-.035-1.42.134-2.038.116-.619-.018-1.836-.562-2.849-.445-.407.05-.817.12-1.195.291-.231.105-.565.421-.733.468-1.69.473-4.442.453-3.879-2.102.044-.196.056-.373-.03-.417-.11-.055-.17.06-.234.187-.985 2.138.764 3.514 2.752 3.52.625-.048.324-.007.904-.118l-.015.082a1.87 1.87 0 0 0 .865 1.718c-.27.771-.805 1.389-1.173 2.097.138.881 1.031 2.057 1.4 2.225.326.147 1.036.149 1.2-.089.059-.111.02-.351-.044-.474.277.308.651.736 1.013.942.217.104.434.17.677.18l.31-.016c.154-.033.336-.058.44-.195.116-.2.007-.756-.476-.796s-.795-.222-1.24-.882c-.365-.638.077-1.517.226-2.145.765.123 1.535.22 2.31.222.336-.017.67-.03 1.001-.093.106.27.402 1.025.404 1.239.007.601-.219 1.205-.121 1.807.06.177.005.512.35.526l.388.018.267-.008c.341.573.637.572 1.307.591m-7.518-1.66-.063-.056c-.184-.198-.66-.544-.572-.865.075-.238.213-.457.323-.683l-.004.023c-.02.282-.059.56.032.837.278.228.663.59.918.837-.138-.038-.4-.117-.53-.066l-.104-.026z"/></svg>���������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tide.svg�������������������������������������0000664�0000000�0000000�00000001704�14753064456�0024552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.694 12.509h3.393c-.206-.846-.883-1.272-1.647-1.272-.883 0-1.5.48-1.746 1.272m1.746 4.48c-2.238 0-3.679-1.57-3.679-3.648 0-2.024 1.501-3.662 3.693-3.662 2.211 0 3.546 1.532 3.546 3.569 0 .273-.027.626-.027.672h-5.346c.206.886.87 1.465 1.853 1.465.844 0 1.461-.366 1.853-.932l1.421.872c-.677 1.025-1.76 1.665-3.314 1.665m-6.179-3.634a1.89 1.89 0 0 0-1.906-1.884c-1.036 0-1.84.846-1.84 1.884 0 1.052.804 1.884 1.84 1.884 1.09 0 1.906-.832 1.906-1.884m-.026 2.956c-.492.386-1.256.613-2.046.613a3.546 3.546 0 0 1-3.533-3.569c0-2.024 1.62-3.608 3.533-3.608.79 0 1.554.246 2.046.626v-2.91h1.892v9.368h-1.892zM7.796 9.814H5.904v7.01h1.892zm-2.922 0v1.697H2.91v2.816c0 .626.285.872.93.872h1.04v1.625H3.706c-1.853 0-2.69-.832-2.69-2.404v-2.91H0V9.814a1.01 1.01 0 0 0 1.01-1.012V8.01h1.892v1.804zm3.124-1.657c0 .632-.511 1.145-1.142 1.145a1.144 1.144 0 0 1 0-2.29 1.135 1.135 0 0 1 1.142 1.145"/></svg>������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tidyverse.svg��������������������������������0000664�0000000�0000000�00000026512�14753064456�0025647�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.392 18V5.999l-.829-.478L13.706.984 12 0l-1.706.984-7.857 4.537-.829.478v12.002l.829.478 7.956 4.594 1.609.927 1.61-.927 7.956-4.594zm-19.955-.45V6.508L12 .984l9.563 5.522v11.042L12 23.072zm10.061 4.416v.228l.197.113.193-.113v-.228l-.193-.112zm-1.419-.111v.17l.148.082.141-.082v-.17l-.141-.082zm-.757-1.072.292-.164.291.167v.333l-.291.165-.292-.167zm1.757-.006v.207l.178.102.176-.102v-.207l-.176-.101zm2.788-.026v-.15l-.127-.074-.131.074v.15l.131.073zm-6.425-.468.291-.164.292.166v.334l-.292.164-.291-.166zm4.898-.246v.39l.339.192.333-.192v-.39l-.333-.193zm-3.445.291v.133l.116.067.117-.067v-.133l-.117-.068zm2.289-.54.113-.065.113.065v.129l-.113.063-.113-.065zm3.127-.149v.167l.144.082.141-.082v-.167l-.141-.082zm1.403-.159v.122l.105.059.104-.059v-.122l-.104-.06zm-9.8-.432.178-.102.182.102v.207l-.182.101-.178-.101zm.903.149v.101l.091.054.087-.054v-.101l-.087-.051zm5.115-.241v.206l.179.102.175-.102v-.206l-.175-.099zm-2.883.196v-.108l-.091-.051-.091.051v.108l.091.05zm1.453-.309v.206l.178.103.176-.103v-.206l-.176-.102zm3.03.038.113-.062.11.062v.127l-.11.065-.113-.065zm-5.561-.129.178-.102.181.102v.207l-.181.102-.178-.102zm6.542-.418v.257l.223.128.218-.128v-.257l-.218-.125zm-5.439.008v.207l.178.101.175-.101v-.207l-.175-.101zm-3.869.124v.111l.097.053.093-.053v-.111l-.093-.053zm11.941-.576v.351l.306.172.297-.172v-.351l-.297-.175zm-13.076.028.288-.161.289.164v.331l-.289.161-.288-.161zm8.941.444v-.102l-.088-.051-.09.051v.102l.09.051zm2.953-.192v.127l.11.062.108-.062v-.127l-.108-.062zm-8.811-.521v.425l.368.212.362-.212v-.425l-.362-.207zm-.941.21v.15l.129.076.13-.076v-.15l-.13-.077zm12.408-.153.125-.071.124.071v.145l-.124.07-.125-.07zm-7.99-.011v-.461l-.391-.224-.399.224v.461l.399.226zm3.335-.532.319-.181.322.183v.371l-.322.179-.319-.182zm-2.886.509.026-.026h-.009q-.006.013-.017.026m4.995-.444v.206l.178.102.176-.102v-.206l-.176-.102zm-13.637-.207v.323l.28.161.277-.161v-.323l-.277-.161zm10.803.238v-.266l-.223-.13-.232.13v.266l.232.13zm-9.552-.283v.139l.125.07.118-.07v-.139l-.118-.07zm8.457 0 .12-.068.121.068v.139l-.121.068-.12-.071zm-5.871-.105v.207l.178.105.175-.105v-.207l-.175-.099zm12.514.003v.131l.113.065.111-.065v-.131l-.111-.065zm-3.692-.136.178-.101.181.101v.207l-.181.102-.178-.102zm-3.91-.019v.207l.179.101.175-.101v-.207l-.175-.102zm6.263.161v-.207l-.175-.101-.181.101v.207l.181.102zm-8.2-.294v-.204l-.175-.102-.179.102v.204l.179.101zm-4.045-.275v.136l.119.068.116-.068v-.136l-.116-.067zm-3.388.032.091-.051.087.051v.101l-.087.051-.091-.051zm5.524-.187v.206l.178.102.179-.102v-.206l-.179-.099zm-2.823-.005v.206l.179.102.174-.102v-.206l-.174-.103zm2.3.067.091-.051.093.051v.105l-.093.051-.091-.051zm13.314-.107.127-.074.127.074v.147l-.127.073-.127-.073zm-9.795-.012.118-.067.119.067v.139l-.119.065-.118-.067zm3.679-.22.221-.125.218.125v.252l-.218.121-.221-.121zm-1.623.133v-.354l-.303-.175-.308.175v.354l.308.175zm1.026.084v-.149l-.127-.074-.13.074v.149l.13.074zm3.771.003v-.122l-.105-.061-.108.061v.122l.108.062zm1.083-.282.181-.099.178.101v.207l-.178.099-.181-.102zm-15.356.24v-.119l-.098-.059-.103.059v.119l.103.056zm5.326-.105v.105l.088.051.088-.051v-.105l-.088-.05zm2.662-.104v.125l.11.061.105-.061v-.125l-.105-.063zm-7.312-.04.125-.07.124.07v.144l-.124.071-.125-.071zm12.196-.3v.331l.289.164.283-.164v-.331l-.283-.164zm-9.687-.138v.319l.277.159.271-.159v-.319l-.271-.156zm-1.494-.119.292-.164.289.164v.333l-.289.164-.292-.164zm5.092.396v-.206l-.176-.102-.18.102v.206l.18.101zm-8.075-.487v.277l.243.136.234-.136v-.277l-.234-.138zm11.438-.211.283-.162.28.162v.322l-.28.158-.283-.158zm-2.472.33v-.206l-.175-.102-.178.102v.206l.178.102zm-4.961-.231v.135l.119.068.116-.068v-.135l-.116-.066zm9.229-.154.181-.099.178.102v.207l-.178.099-.181-.102zm3.751-.045.181-.102.178.102v.207l-.178.101-.181-.101zm-1.089-.036v.206l.178.102.175-.102v-.206l-.175-.103zm-8.596-.034.178-.099.181.101v.207l-.181.099-.178-.102zm7.074.203v-.207l-.175-.101-.181.101v.207l.181.102zm1.027-.028v-.207l-.176-.102-.178.102v.207l.178.102zm-10.384-.24.178-.099.182.101v.207l-.182.099-.178-.102zm-3.657-.028v-.324l-.274-.158-.281.158v.324l.281.16zm.495-.148.178-.101.181.101v.207l-.181.101-.178-.101zm2.271.187v-.136l-.113-.065-.116.065v.136l.116.064zm4.147-.017.085.051.087-.051v-.099l-.087-.048-.085.048zm-5.335-.006v-.119l-.099-.059-.105.059v.119l.105.057zm7.258-.359.201-.113.207.116v.235l-.207.113-.201-.116zm7.666.009v.214l.189.108.184-.108v-.214l-.184-.108zm-11.473-3.31.504 1.437c.053.162.11.351.147.498h.008c.042-.146.09-.33.147-.509l.455-1.426h.441l-.625 1.734c-.3.835-.504 1.262-.787 1.525a1.1 1.1 0 0 1-.512.286l-.104-.371a1.1 1.1 0 0 0 .365-.215 1.3 1.3 0 0 0 .35-.492.3.3 0 0 0 .034-.105.4.4 0 0 0-.028-.116l-.848-2.243zm3.182 3.46v-.136l-.113-.065-.116.065v.136l.116.064zm-9.373-.796v-.104l-.089-.051-.093.051v.104l.093.055zm5.442-.859c0 .215.005.464.019.628H7.91l-.02-.421h-.008a.84.84 0 0 1-.783.478c-.554 0-.982-.498-.982-1.236-.006-.808.47-1.306 1.03-1.306.35 0 .588.175.693.373h.008V9.91h.416zm8.613.178c.164.107.353.17.551.176.303 0 .447-.162.447-.362 0-.212-.119-.326-.427-.447-.413-.156-.609-.396-.609-.69 0-.393.301-.713.793-.713a1.1 1.1 0 0 1 .563.15l-.105.322a.87.87 0 0 0-.47-.142c-.246 0-.385.15-.385.331 0 .201.139.291.435.413.399.162.603.374.603.735 0 .428-.314.73-.857.73-.252 0-.484-.065-.645-.166zm2.073-.685c.008.599.37.846.786.846.301 0 .479-.057.637-.127l.071.317a1.8 1.8 0 0 1-.764.15c-.707 0-1.128-.493-1.128-1.228s.407-1.312 1.077-1.312c.75 0 .948.698.948 1.145q-.001.102-.014.206H18.95zm-5.521 0c.008.599.37.846.786.846.3 0 .478-.057.637-.127l.071.317a1.8 1.8 0 0 1-.764.15c-.707 0-1.128-.493-1.128-1.228s.407-1.312 1.077-1.312c.749 0 .947.698.947 1.148q0 .103-.014.206zm-9.137-1.997v.699h.597v.336h-.597v1.312c0 .303.082.473.315.473a.9.9 0 0 0 .243-.031l.019.33a1 1 0 0 1-.37.059c-.195 0-.35-.065-.45-.186-.119-.13-.161-.348-.161-.633v-1.327h-.359v-.336h.356v-.583zM15.477 11.8c0-.286-.006-.532-.02-.758h.365l.014.479h.02c.105-.329.356-.535.636-.535a.4.4 0 0 1 .119.018v.418a.5.5 0 0 0-.142-.014c-.294 0-.503.238-.56.569a2 2 0 0 0-.019.206v1.299h-.413zM5.265 13.478v-2.432h.419v2.432zm5.954-2.436.45 1.369c.077.221.139.421.184.622h.014c.054-.201.119-.401.196-.622l.446-1.369h.436l-.902 2.432h-.399l-.874-2.432zm10.155 2.187v-.148l-.125-.073-.13.073v.148l.13.073zM7.845 12.032a1 1 0 0 0-.02-.187c-.062-.282-.288-.512-.603-.512-.432 0-.687.402-.687.939 0 .493.229.9.678.9.281 0 .535-.195.611-.529a1 1 0 0 0 .02-.192v-.419zm-5.018.424v.173l.15.088.147-.088v-.173l-.147-.085zm11.826-.433c.006-.282-.11-.718-.58-.718-.421 0-.608.413-.638.718zm5.521 0c.006-.282-.11-.718-.579-.718-.422 0-.609.413-.643.718zm-17.61-.48.108-.06.11.06v.124l-.11.062-.108-.062zm18.555-.416.128-.071.127.074v.147l-.127.07-.128-.073zm-18.142-.365v-.15l-.127-.076-.133.076v.15l.133.077zm2.752-.405a.254.254 0 0 1-.237.272h-.028c-.147 0-.252-.122-.252-.272 0-.155.111-.277.261-.277.157.004.256.122.256.277m14.409-.447.293-.166.295.166v.34l-.295.167-.293-.167zm-.88-.158v.207l.178.102.175-.102v-.207l-.175-.099zm-2.099-.11v.207l.181.101.175-.101v-.207l-.175-.102zm-5.823.113v-.206l-.176-.102-.178.102v.206l.178.102zm1.388-.501-.339-.194-.348.194v.403l.348.194.339-.194zm1.055.233V9.28l-.175-.102-.179.102v.207l.179.101zm-6.712-.074v-.207l-.175-.099-.178.099v.207l.178.102zm14.06.048v-.102l-.087-.048-.085.048v.102l.085.048zm-5.551-.314.18-.101.178.101v.207l-.178.101-.18-.101zM2.847 9.113l.181-.102.178.102v.206l-.178.103-.181-.103zm11.58 0v.206l.178.103.176-.103v-.206l-.176-.102zm5.103.107v.099l.087.051.085-.051V9.22l-.085-.05zm-9.923-.036v.082l.071.039.068-.039v-.082l-.068-.039zm8.477-.484v.396l.345.198.337-.198V8.7l-.337-.198zm-13.189.43v-.206l-.178-.102-.181.099v.206l.181.105zm12.086-.333.178-.103.181.103v.206l-.181.102-.178-.102zm-8.387.09v-.28l-.24-.138-.243.138v.28l.243.139zm-2.749-.145v.128l.11.065.108-.065v-.128l-.108-.062zm-1.932-.228v.11l.097.054.093-.054v-.11l-.093-.055zm1.649-.026v-.263l-.226-.13-.229.13v.263l.229.133zm10.002-.017v.073l.062.034.063-.034v-.073l-.063-.036zm-3.015-.045.087-.051.091.051v.102l-.091.05-.087-.05zm-4.721-.495-.343-.198-.35.198v.404l.35.199.343-.199zm6.55.246-.174-.099-.182.099v.209l.182.102.174-.102zm6.326-.226.305-.172.305.174v.351l-.305.173-.305-.173zm-10.299-.003.294-.167.294.167v.339l-.294.164-.294-.166zm9.481.195v.207l.181.101.176-.101v-.207l-.176-.099zm-4.885-.017.181-.102.178.102v.207l-.178.102-.181-.102zM3.707 7.807v.31l.269.154.271-.154v-.31l-.271-.153zm8.103.155-.175-.102-.178.102v.206l.178.103.175-.103zm4.978-.108v-.423l-.358-.207-.371.207v.423l.371.21zm-7.899.108v-.207l-.176-.101-.181.101v.207l.181.102zm9.509-.252.159-.091.158.091v.184l-.158.091-.159-.091zM6.6 7.773v-.269l-.234-.133-.233.13v.268l.233.134zM2.94 7.6v.133l.117.065.113-.065V7.6l-.113-.065zm9.94.031.181.102.175-.102v-.206l-.175-.102-.181.102zm-2.981.051.09.051.088-.051V7.58l-.088-.05-.09.05zm-5.041-.043v-.104l-.087-.051-.094.051v.104l.094.055zm9.959-.325.178-.102.182.102v.206l-.182.103-.178-.103zm-1.111-.045.257.147.255-.147v-.297l-.255-.147-.257.147zm4.395.073v-.146l-.127-.074-.127.074v.146l.127.074zm1.361-.174v.113l.099.056.095-.056v-.113l-.095-.055zM7.837 7.111v-.207l-.176-.102-.181.102v.207l.181.101zm-4.023-.37v.293l.255.144.249-.144v-.293l-.249-.145zm4.537.123.181-.101.179.101v.207l-.179.102-.181-.102zm12.066-.039.179-.102.181.102v.207l-.181.101-.179-.101zm-14.855.223v-.104l-.087-.048-.091.048v.104l.091.051zm11.532-.26v.206l.182.103.174-.103v-.206l-.174-.102zm-4.279-.252-.306-.175-.314.175v.363l.314.178.306-.178zm-6.087.06v.139l.121.067.116-.067v-.139l-.116-.068zm4.415.04v-.207l-.175-.101-.182.101v.207l.182.101zm3.1-.36.181-.102.178.102v.206l-.178.103-.181-.103zm-5.04-.209.288-.162.289.164v.332l-.289.164-.288-.164zm9.206.34V6.2l-.175-.099-.179.099v.207l.179.101zm1.567-.049v.102l.088.048.088-.048v-.102l-.088-.048zm-.543.009V6.16l-.175-.101-.179.101v.207l.179.101zm-3.162-.199.122-.067.124.067v.142l-.124.071-.122-.071zm-.645.089V6.05l-.175-.099-.181.099v.207l.181.104zm-7.21-.066v-.206l-.175-.099-.178.099v.206l.178.102zm-3.21-.246.178-.101.178.101v.207l-.178.101-.178-.101zm1.279.232v-.09l-.077-.046-.079.046v.09l.079.046zm6.33-.486.178-.102.181.102v.206l-.181.102-.178-.102zM6.773 5.68v-.337l-.286-.164-.291.164v.337l.291.164zm10.912-.085V5.19l-.342-.198-.351.198v.405l.351.197zm-5.538.039v-.133l-.116-.068-.116.068v.133l.116.068zm-2.215-.096.178.102.176-.102v-.206l-.176-.103-.178.103zm4.028.003v-.105l-.09-.053-.091.053v.105l.091.054zm4.922-.003v-.099l-.085-.051-.088.051v.099l.088.051zm-2.843-.305.178-.103.181.103v.206l-.181.102-.178-.102zm-5.035-.419.178-.102.182.102v.207l-.182.101-.178-.101zm6.616-.13.182-.102.178.102v.207l-.178.101-.182-.101zm-4.019-.042.181-.099.178.101v.207l-.178.099-.181-.102zm-.727.158v-.136l-.116-.068-.122.068V4.8l.122.067zm2.249-.116v-.207l-.178-.102-.179.102v.207l.179.102zm.554-.175.138-.079.139.079v.158l-.139.079-.138-.079zm-4.042-.015v.102l.088.051.087-.051v-.102l-.087-.05zm-1.592-.082V4.07l-.292-.164-.294.164v.342l.294.167zm-1.941.057v-.156l-.13-.076-.135.076v.156l.135.076zm2.447-.003v-.153l-.13-.076-.133.076v.153l.133.077zm.416-.37.178.101.175-.101v-.207l-.175-.102-.178.102zm-.076-.204v-.207l-.176-.101-.178.101v.207l.178.102zm3.776-.201v-.43l-.366-.209-.373.209v.43l.373.215zm-3.171-.167.308.175.303-.175v-.353l-.303-.173-.308.173zm-1.892-.365.129-.073.128.073v.148l-.128.073-.129-.073zm3.736-.619v.206l.178.102.176-.102V2.54l-.176-.102zm.871-.04.179-.102.18.102v.207l-.18.102-.179-.102zm-2.783.124v-.206l-.175-.102-.181.102v.206l.181.102zm2.164-.288V2.13l-.176-.102-.178.102v.206l.178.102zm-2.448-.491.105-.061.108.061v.122l-.108.061-.105-.061zm1.198-.088V1.55l-.173-.101-.181.101v.207l.181.101z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tietoevry.svg��������������������������������0000664�0000000�0000000�00000006117�14753064456�0025662�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 1.239v1.966H0v1.282h1v2.55c0 1.641.434 2.131 2.121 2.131.36 0 .72-.047 1.084-.059V7.654c-.174 0-.351.024-.514.024-.43 0-.709-.105-.709-.582v-2.61h1.223v-1.28H2.982L2.98 1.238zm3.744 0v1.427h1.98V1.24zm9.66 0v1.966h-1v1.282h1v2.55c0 1.641.434 2.131 2.12 2.131.36 0 .72-.047 1.085-.059V7.654c-.174 0-.352.024-.514.024-.43 0-.709-.105-.709-.582v-2.61h1.223v-1.28h-1.223l-.002-1.967zm-4.201 1.814a3.13 3.13 0 0 0-3.111 3.088c0 1.967 1.338 3.12 3.306 3.12 1.351 0 2.642-.588 3.004-1.944H11.55a1.18 1.18 0 0 1-1.128.644 1.27 1.27 0 0 1-1.35-1.334h4.435c.094-1.989-.99-3.572-3.156-3.572zm10.761 0a3 3 0 0 0-.158.002 3.104 3.104 0 1 0 3.193 3.11 3.044 3.044 0 0 0-3.035-3.112m-16.22.152V9.11h1.98V3.205zm5.588 1.15h.02a1.206 1.206 0 0 1 1.175 1.198H9.072a1.287 1.287 0 0 1 1.26-1.197zm10.474.17c.919 0 1.21.893 1.21 1.64 0 .745-.29 1.626-1.21 1.626s-1.197-.88-1.197-1.627c0-.746.278-1.638 1.197-1.638zM4.599 10.54a2.37 2.37 0 0 0-1.376.428 1.5 1.5 0 0 0-.327.701l-.683 2.361a.98.98 0 0 1-.334.656c-.469.282-1.426.301-1.34 1.336a5.4 5.4 0 0 0 .428 1.547 1.17 1.17 0 0 1 .068.69q-.045.301-.105.601c-.034.174-.114.55.004.692.117.142.34.13.607.097a16 16 0 0 0 3.322-.994 3 3 0 0 0 .61-.344 1.62 1.62 0 0 0 .488-1.002.39.39 0 0 0-.16-.414c-.124-.07-.293-.026-.55.045-.422.115-1.469.519-1.831.63-.147.044-.437.113-.549-.028-.186-.234.08-.967.24-1.375a1.51 1.51 0 0 1 1.178-.957c.282-.081.745-.229.933-.293a.85.85 0 0 0 .594-.672c.132-.532-.272-.614-.64-.717-.528-.146-.858-.163-.627-.675a.53.53 0 0 1 .388-.36c.21-.055 1.983-.338 2.688-.467.395-.072.53-.285.695-.627.359-.743-.089-.79-.451-.757-.817.075-2.13.314-2.691.396-.3.045-.101-.47-.45-.494zm11.067 1.149a5 5 0 0 0-1.707 1.136c-.045-.303-.052-.637-.36-.672a1.3 1.3 0 0 0-.68.18 1.1 1.1 0 0 0-.49.47l-.718 1.659a.13.13 0 0 1-.108.08.72.72 0 0 0-.539.45.62.62 0 0 0 .123.657c-.142.384-.52 1.28-.52 1.28-.469 1.097-.438 1.478-.27 1.71a1.3 1.3 0 0 0 .743.35c.272.045.48-.118.707-.48.336-.535 1.01-1.948 1.01-1.948a10.65 10.65 0 0 0 4.03 2.436s-1.423 1.967-1.628 3.054c0 0-.105.714.852.711a1.8 1.8 0 0 0 .865-.22.47.47 0 0 0 .219-.282.22.22 0 0 0-.022-.152.5.5 0 0 0-.097-.103c-.05-.05-.043-.113-.016-.186.527-1.54 2.67-4.155 3.125-4.722 1.206-1.503 3.433-3.843 3.592-4.03.288-.371.344-.593-.127-1.056-.423-.416-.705-.17-.912.045-.035.041-.994.996-2.004 2.162-.786.907-1.467 1.752-1.467 1.752a9 9 0 0 1 .06-1.284c.049-.406.18-1.196.221-1.447.2-1.27-.58-1.321-.87-1.34-.306-.018-.451.146-.542.534a14.5 14.5 0 0 0-.357 4.31c.032.362.102.734.11.758l-.184.256a7.3 7.3 0 0 1-2.881-1.657A5.5 5.5 0 0 0 16 15.557a2.54 2.54 0 0 0 1.332-2.346 1.695 1.695 0 0 0-1.667-1.523zm-4.625.205a.54.54 0 0 0-.514.337c-.254.436-.93 1.679-1.541 2.641a10.4 10.4 0 0 1-1.07 1.52s0-2.442-.031-2.653c-.1-.7-.467-.63-.74-.582-.708.12-.7.388-.733.615a33 33 0 0 0 .066 3.41c.026.314-.024 1.42.616 1.51.481.068.94-.375 1.289-.76a20 20 0 0 0 1.564-2.01 37 37 0 0 0 1.787-2.763c.231-.408.218-.695-.31-1.092a.54.54 0 0 0-.383-.173m4.513 1.306a.35.35 0 0 1 .24.022c.295.16-.044.85-.61 1.271a3 3 0 0 1-1.638.678 6.2 6.2 0 0 1 .995-1.295c.344-.345.732-.619 1.013-.676"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tiktok.svg�����������������������������������0000664�0000000�0000000�00000001242�14753064456�0025127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.525.02c1.31-.02 2.61-.01 3.91-.02.08 1.53.63 3.09 1.75 4.17 1.12 1.11 2.7 1.62 4.24 1.79v4.03c-1.44-.05-2.89-.35-4.2-.97-.57-.26-1.1-.59-1.62-.93-.01 2.92.01 5.84-.02 8.75-.08 1.4-.54 2.79-1.35 3.94-1.31 1.92-3.58 3.17-5.91 3.21-1.43.08-2.86-.31-4.08-1.03-2.02-1.19-3.44-3.37-3.65-5.71-.02-.5-.03-1-.01-1.49.18-1.9 1.12-3.72 2.58-4.96 1.66-1.44 3.98-2.13 6.15-1.72.02 1.48-.04 2.96-.04 4.44-.99-.32-2.15-.23-3.02.37-.63.41-1.11 1.04-1.36 1.75-.21.51-.15 1.07-.14 1.61.24 1.64 1.82 3.02 3.5 2.87 1.12-.01 2.19-.66 2.77-1.61.19-.33.4-.67.41-1.06.1-1.79.06-3.57.07-5.36.01-4.03-.01-8.05.02-12.07"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tildapublishing.svg��������������������������0000664�0000000�0000000�00000001004�14753064456�0027000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.384 0 0 5.384 0 12s5.384 12 12 12 12-5.384 12-12S18.616 0 12 0m0 .775C18.192.775 23.225 5.808 23.225 12S18.192 23.225 12 23.225.775 18.192.775 12 5.808.775 12 .775M8.904 6.584c-1.36 0-2.52 1.16-2.52 3.287l1.352.193c.192-1.352.576-1.935 1.352-1.935s1.167.19 2.52.967c1.351.776 1.735.968 3.095.968s2.714-.969 2.522-3.289H15.87c0 1.16-.382 1.745-1.158 1.745s-1.169-.191-2.713-.967-1.736-.969-3.096-.969zm2.127 3.48v8.905h1.553v-8.32z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tile.svg�������������������������������������0000664�0000000�0000000�00000002146�14753064456�0024563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.486 8.483h1.617a.16.16 0 0 1 .15.15v9.706a.16.16 0 0 1-.15.15H7.486a.16.16 0 0 1-.15-.15V8.633c0-.075.075-.15.15-.15m3.536-2.972h1.617c.076 0 .151.075.151.15v12.64c0 .075-.075.15-.15.15h-1.618a.16.16 0 0 1-.15-.15V5.66c0-.075.075-.15.15-.15zM5.68 8.483H1.918V5.66a.16.16 0 0 0-.15-.15H.15a.16.16 0 0 0-.15.15v7.787c0 2.746 2.257 5.003 5.003 5.003h.677c.075 0 .15-.075.15-.15v-1.618a.16.16 0 0 0-.15-.15h-.677a3.1 3.1 0 0 1-3.085-3.085v-3.084H5.68c.075 0 .15-.076.15-.15V8.595c0-.076-.075-.113-.15-.113zM22.533 9.95a5.02 5.02 0 0 0-7.035 0c-1.956 1.918-1.918 5.078 0 7.034 1.919 1.956 5.079 1.919 7.035 0a4.5 4.5 0 0 0 .865-1.166.08.08 0 0 0-.075-.075h-2.07l-.225.075c-1.279 1.129-3.235.978-4.363-.338-.339-.414-.602-.903-.678-1.43q0-.113.113-.113h7.75c.075 0 .15-.075.15-.15v-.301a5.01 5.01 0 0 0-1.467-3.536m-.903 2.257h-5.266q-.114 0-.113-.113a3.07 3.07 0 0 1 2.708-1.655c1.129 0 2.182.64 2.709 1.655 0 .038 0 .075-.038.113M9.404 6.602a1.09 1.09 0 0 1-1.09 1.09 1.09 1.09 0 0 1-1.091-1.09 1.09 1.09 0 0 1 1.09-1.091 1.09 1.09 0 0 1 1.091 1.09Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/timescale.svg��������������������������������0000664�0000000�0000000�00000004674�14753064456�0025604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.537.763c-1.167.7-2.21 1.582-3.08 2.61L3.79 4.836a10.4 10.4 0 0 1 3.627-2.881zm13.028.085-1.991 1.12a10.4 10.4 0 0 1 3.762 3.07l1.18-1.654a12.4 12.4 0 0 0-2.95-2.536zm-6.564.752a9.8 9.8 0 0 0-4.131.91l.59 1.011a8.5 8.5 0 0 1 3.541-.762c1.261 0 2.457.274 3.534.76l.59-1.012a9.8 9.8 0 0 0-4.124-.907M11.4 3.535l-.55 6.626h.003l-.002.04q.004.166.033.318.015.169.097.342c.114.289.298.505.516.607q.077.058.158.111l.033.02v.004l6.68 3.596.348-.476-6.058-4.6q-.01-.002-.014-.008L12 3.535zm1.423.052c.19.234.361.523.502.855 3.155.604 5.54 3.325 5.54 6.596 0 .877-.176 1.712-.484 2.48a3.7 3.7 0 0 1 .52.76 7.3 7.3 0 0 0 .754-3.24c0-3.868-2.99-7.05-6.832-7.45zm-2.284.095c-3.527.667-6.19 3.708-6.19 7.356 0 2.584 1.335 4.863 3.367 6.21a10 10 0 0 1 .295-.743c-1.74-1.219-2.874-3.214-2.874-5.467 0-3.054 2.082-5.632 4.932-6.45a3.7 3.7 0 0 1 .47-.906m9.15 1.675-.801.893a8.1 8.1 0 0 1 1.551 4.777c0 2.916-1.542 5.481-3.872 6.952q.156.583.251 1.209c2.87-1.632 4.802-4.677 4.802-8.16a9.22 9.22 0 0 0-1.93-5.67zm-15.38.007a9.25 9.25 0 0 0-1.93 5.665c0 3.507 1.954 6.567 4.858 8.19q.093-.629.248-1.206c-2.36-1.468-3.923-4.045-3.923-6.984 0-1.777.573-3.422 1.549-4.772zm9.314.043q.066.304.107.64a5.33 5.33 0 0 1 3.213 2.912l.577-.148a5.94 5.94 0 0 0-3.897-3.404m-3.816.187a5.94 5.94 0 0 0-3.319 3.198l.58.148A5.32 5.32 0 0 1 9.73 6.257q.023-.342.077-.663M6.733 9.672l-.62.63.315.614 1.727.618.942-.618-.312-.923zm10.615 0-2.048.321-.315.923.942.618 1.73-.618.315-.614zM6.1 11.869A5.82 5.82 0 0 0 8.42 15.7q.15-.256.315-.493a5.25 5.25 0 0 1-2.038-3.34zm11.206 0q-.046.269-.118.529.26.205.493.41c.097-.302.174-.617.22-.94zm-15.679.217L0 14.158c.966 3.661 3.638 6.65 7.132 8.111a9 9 0 0 1-.05-1.031q0-.564.05-1.111c-3.024-1.563-5.166-4.544-5.505-8.041m20.707.055c-.352 3.45-2.464 6.394-5.441 7.957q.049.563.053 1.136 0 .564-.05 1.005c3.506-1.488 6.175-4.522 7.104-8.223zm-6.544 2.617a5 5 0 0 1-.486.42q.167.237.318.493.399-.3.74-.66a11 11 0 0 1-.572-.253m1.502.559a7 7 0 0 1-1.25 1.156c.106.236.207.485.294.741a7.7 7.7 0 0 0 1.857-1.772 3.6 3.6 0 0 1-.9-.125zm-2.988.63-2.303.913-2.307-.91-.587 1.435 2.448.946c-.134.46-.568.798-1.08.798q-.052-.001-.104-.007l-.5.686q.284.095.6.096a1.92 1.92 0 0 0 1.52-.738 1.92 1.92 0 0 0 2.183.62l-.49-.67a1.12 1.12 0 0 1-1.26-.805l2.47-.926zm1.156 4.775c-1.09.377-2.256.58-3.476.58-1.17 0-2.29-.186-3.34-.534.231.88.59 1.654 1.05 2.262a12.683 12.683 0 0 0 4.731-.029c.453-.61.807-1.39 1.035-2.28z"/></svg>��������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tina.svg�������������������������������������0000664�0000000�0000000�00000001257�14753064456�0024563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.46 10.662c1.166-.965 1.683-6.666 2.188-8.715.505-2.05 2.593-1.946 2.593-1.946s-.542.944-.321 1.648 1.736 1.333 1.736 1.333l-.327.861s-.682-.087-1.088.725.261 8.853.261 8.853-2.44 4.813-2.44 6.845.962 3.734.962 3.734h-1.35s-1.98-2.356-2.386-3.533-.243-2.355-.243-2.355-2.152-.122-4.061 0-3.181 1.762-3.41 2.68c-.23.917-.325 3.208-.325 3.208H5.182c-.65-2.004-1.166-2.722-.886-3.734.776-2.804.623-4.394.444-5.102-.18-.708-1.395-1.326-1.395-1.326.595-1.213 1.203-1.796 3.817-1.857s6.132-.354 7.298-1.319m-5.183 8.209s.136 3.708 1.392 5.129H9.413c-1.464-1.3-1.74-3.852-1.74-3.852.081-.324.965-1.069 1.604-1.277"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tinder.svg�����������������������������������0000664�0000000�0000000�00000000730�14753064456�0025110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.317 9.451a.248.248 0 0 0 .37.063l.015-.012c.39-.325.741-.66 1.071-1.017 3.209-3.483 1.335-7.759 1.32-7.799a.5.5 0 0 1 .15-.594.49.49 0 0 1 .615.033c10.875 10.114 7.995 17.818 7.785 18.337-.87 3.141-4.335 5.414-8.444 5.53-.138.008-.242.008-.363.008-4.852 0-8.977-2.989-8.977-6.807v-.06c0-5.297 4.795-10.522 5.009-10.744a.44.44 0 0 1 .525-.105c.18.076.297.255.291.451q-.065 1.553.631 2.7v.015z"/></svg>����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tindie.svg�����������������������������������0000664�0000000�0000000�00000006023�14753064456�0025100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.576 1.742q-.077 0-.152.008c-1.724.137-3.14 1.095-4.098 2.773a8 8 0 0 0-.53 1.126c-.659-.396-1.624-.825-2.706-.825q-.305 0-.602.046c-.729.112-2.949.453-4.497 1.938-.77.74-1.333 1.733-1.687 2.49-.861-.7-2.262-1.565-3.924-1.565-.737 0-1.459.172-2.147.513-.78.355-1.239 1.496-1.233 2.4.005.701.288 1.223.777 1.433a.8.8 0 0 0 .321.054c.736 0 3.983-.568 5.928-.938l1.662 4.448.081.08.214.212.767.762.974.97c-.153.118-.319.25-.486.392-.914.773-1.321 1.388-1.321 1.886 0 1.016 1.629 2.313 2.955 2.313.302 0 .585-.11.841-.229l.535-.416c.415-.383.758-.935 1.027-1.484 1.002-.094 1.966-.459 2.773-.871l1.013-.584c.684-.44 1.121-.819 1.165-.857l.167-.147.269-6.285L18.1 7.202c.821-.301 1.848-.687 2.799-1.058 2.667-1.042 2.771-1.185 2.881-1.336.291-.402.293-.932.007-1.495-.394-.772-1.329-1.571-2.211-1.571m0 1.041c.39 0 1.025.496 1.284 1.003.084.165.107.294.095.366-.539.301-3.252 1.358-5.268 2.094.428-1.228 1.488-3.278 3.827-3.459l.022-.002q.02-.002.04-.002M14.09 5.865c.967 0 1.851.461 2.385.812.197.13.348.245.436.317l.017.045.01.029.182.488 1.493 3.995-.097 2.281c-.858-.114-1.604-.115-2.285-.015a6 6 0 0 0-1.043.247l-.206.073-.629-1.534-.426-1.04-2.139-5.221a10 10 0 0 1 1.858-.443 3 3 0 0 1 .444-.034m-2.727.641 2.072 5.056.426 1.041.7 1.706c-1.103.498-2.128 1.306-3.361 2.364l-.925-.921-.692-.687-.047-.126-1.475-3.948-.159-.427c.044-.121.114-.302.208-.52.297-.69.839-1.754 1.602-2.485.491-.472 1.077-.81 1.651-1.053m1.013.158a.233.233 0 1 0 .232.233.23.23 0 0 0-.232-.233m.39.845a.234.234 0 0 0-.233.233.233.233 0 0 0 .466 0 .234.234 0 0 0-.233-.233m.325.781a.233.233 0 0 0-.233.232.233.233 0 0 0 .466 0 .233.233 0 0 0-.233-.232m-9.711.483c1.41 0 2.64.809 3.365 1.416-1.978.376-4.892.877-5.597.902-.057-.067-.106-.226-.108-.452-.004-.646.339-1.32.626-1.447l.021-.01a3.8 3.8 0 0 1 1.693-.409m12.7.38a1.6 1.6 0 0 0-.887.264 1.62 1.62 0 0 0-.703 1.028c-.089.425-.007.859.23 1.222a1.62 1.62 0 0 0 1.363.737 1.627 1.627 0 0 0-.003-3.251m0 .91a.715.715 0 0 1 .392 1.315.7.7 0 0 1-.389.116.715.715 0 0 1-.702-.862.71.71 0 0 1 .31-.452.7.7 0 0 1 .389-.117m-5.23.951c-.316 0-.623.091-.888.265a1.62 1.62 0 0 0-.703 1.027c-.089.425-.007.859.23 1.222a1.62 1.62 0 0 0 2.25.473c.364-.237.613-.602.703-1.027a1.61 1.61 0 0 0-.23-1.223 1.62 1.62 0 0 0-1.362-.737m0 .91a.716.716 0 0 1 .701.863.715.715 0 0 1-.699.568.71.71 0 0 1-.6-.324.7.7 0 0 1-.102-.538.71.71 0 0 1 .31-.452.7.7 0 0 1 .39-.117m6.315 2.275q.123-.002.251.001.507.01 1.08.089l-.123 2.881a11 11 0 0 1-1.386.935c-.641.367-1.426.728-2.246.901a4.7 4.7 0 0 1-1.104.104l-.034-.034a426 426 0 0 0-2.024-2.026l-.055-.055c1.452-1.245 2.574-2.11 3.874-2.522a5.7 5.7 0 0 1 1.053-.227q.343-.042.714-.047m-.237.203a.233.233 0 1 0 0 .466.233.233 0 0 0 0-.466m.845 0a.233.233 0 0 0 0 .466.233.233 0 0 0 0-.466m-.609 1.287c-.44.069-1.343.456-2.137.826-.793.369-1.476.722-1.476.722 1.795 1.468 3.8-.765 3.613-1.548m-5.699 2.717a358 358 0 0 1 1.572 1.577l.055.056-.028.144c-.24.399-.506.716-.777.848a.95.95 0 0 1-.415.087c-.897 0-1.881-.897-1.914-1.216.054-.25.714-.894 1.507-1.496"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tinkercad.svg��������������������������������0000664�0000000�0000000�00000002574�14753064456�0025577�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v7.32h7.32V0zm8.34 0v7.32h7.32V0zm8.34 0v7.32H24V0zM1.605 1.266h4.106V2.33h-1.4v3.725H3.055V2.33h-1.45V1.265zm9.77 0h1.256V6.05h-1.256zm6.814 0h1.692l1.455 3.289v-3.29h1.158v4.79H20.82l-1.47-3.26V6.05h-1.16V1.266zM0 8.34v7.32h7.32V8.34zm8.34 0v7.32h7.32V8.34zm8.34 0v7.32H24V8.34zm-6.32 1.265h3.19v.965h-1.935v.92H13.5v.92h-1.885v1.065h2.03v.916h-3.286zm8.16 0h1.906c1.075 0 1.719.495 1.719 1.315 0 .535-.284.935-.8 1.135.22.14.35.37.485.705l.645 1.625h-1.35l-.006.006-.433-1.221c-.2-.535-.287-.664-.702-.664h-.254v1.885h-1.21zM1.596 9.61h1.26v1.756L4.3 9.61h1.51l-2.022 2.25 2.182 2.536H4.39l-1.541-1.94v1.94H1.596zm18.134.916v1.065h.334c.375 0 .827-.095.827-.57 0-.36-.226-.495-.801-.495zM0 16.68V24h7.32v-7.32zm8.34 0V24h7.32v-7.32zm8.34 0V24H24v-7.32zm-12.42 1.2c.375 0 .815.066 1.17.17l.09.024-.055 1.022-.16-.067a2.4 2.4 0 0 0-.89-.174c-.876 0-1.466.555-1.466 1.485s.54 1.484 1.446 1.484q.526 0 .925-.18l-.006-.003.16-.07.055.993-.08.032c-.33.13-.753.199-1.193.199-.765 0-1.411-.22-1.871-.635-.475-.43-.73-1.06-.73-1.82 0-1.425 1.095-2.46 2.605-2.46m6.996.07h1.484l1.824 4.784H13.26l-.4-1.16H11.1l-.41 1.16H9.435l1.82-4.785zm6.965 0h1.718c1.625 0 2.522.825 2.522 2.325v.004c0 1.535-.992 2.455-2.647 2.455h-1.593zm1.26.915v2.95h.195c.975 0 1.488-.55 1.488-1.54 0-.895-.49-1.41-1.375-1.41h-.309zm-7.5.19-.596 1.6h1.17z"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tinygrad.svg���������������������������������0000664�0000000�0000000�00000000622�14753064456�0025444�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.846 7.385V9.23H0v1.846h1.846v3.692h3.692v-1.846H3.692v-1.846h1.846V9.23H3.692V7.385zm5.539 0V9.23H9.23V7.385zm3.692 1.846v5.538h1.846v-3.692h1.846V9.23h-1.846zm3.692 1.846v3.692h1.846v-3.692zm3.693-1.846v3.692h3.692v1.846H24V9.231h-1.846v1.846h-1.846V9.23Zm3.692 5.538h-3.692v1.846h3.692zm-14.77-3.692v3.692h1.847v-3.692z"/></svg>��������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tinyletter.svg�������������������������������0000664�0000000�0000000�00000001747�14753064456�0026037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.069 18.202h-4.913v3.207l-4.22-3.207H4.93a.643.643 0 0 1-.643-.642v-1.69l3.987-3.028L12 15.672l3.725-2.83 3.987 3.03v1.688a.643.643 0 0 1-.643.642M7.213 12.035l-2.925 2.222V9.813zm12.499-2.222v4.444l-2.925-2.222zM4.932 5.61h2.735L12 9.128l4.338-3.518h2.73c.355 0 .644.288.644.642v1.946L12 14.058l-7.712-5.86V6.252c0-.354.289-.642.643-.642zm3.407-3.772c.356-.356.83-.553 1.335-.553.504 0 .978.197 1.334.553L12 2.83l.992-.992c.356-.356.83-.553 1.334-.553s.979.197 1.335.553c.357.357.553.83.553 1.335 0 .494-.188.959-.53 1.313L12 7.473 8.317 4.486a1.89 1.89 0 0 1 .022-2.648m10.73 2.486h-1.787A3.17 3.17 0 0 0 16.57.93c-.6-.6-1.396-.93-2.244-.93-.847 0-1.644.33-2.243.93L12 1.011 11.917.93A3.15 3.15 0 0 0 9.674 0 3.15 3.15 0 0 0 7.43.93a3.18 3.18 0 0 0-.711 3.394H4.93a1.93 1.93 0 0 0-1.928 1.928V17.56a1.93 1.93 0 0 0 1.928 1.928h4.572L15.44 24v-4.512h3.628a1.93 1.93 0 0 0 1.928-1.928V6.252a1.93 1.93 0 0 0-1.928-1.928"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tistory.svg����������������������������������0000664�0000000�0000000�00000000357�14753064456�0025345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 3a3 3 0 1 0 6 0 3 3 0 0 0-6 0m9 18a3 3 0 1 0 6 0 3 3 0 0 0-6 0m0-9a3 3 0 1 0 6 0 3 3 0 0 0-6 0m0-9a3 3 0 1 0 6 0 3 3 0 0 0-6 0m9 0a3 3 0 1 0 6 0 3 3 0 0 0-6 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tldraw.svg�����������������������������������0000664�0000000�0000000�00000001226�14753064456�0025121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.474 0H2.526C1.131 0 0 1.18 0 2.637v18.726C0 22.819 1.131 24 2.526 24h18.948C22.869 24 24 22.82 24 21.363V2.637C24 1.181 22.869 0 21.474 0m-11.01 5.388q.595-.607 1.474-.607.854 0 1.448.607.595.606.595 1.476c0 .87-.198 1.072-.595 1.476a1.95 1.95 0 0 1-1.448.607q-.879 0-1.474-.607-.594-.606-.594-1.476c0-.87.198-1.072.594-1.476m3.13 11.49a4.9 4.9 0 0 1-2.018 2.136q-.724.422-1.19-.026-.438-.422.26-1.002.387-.29.646-.738.258-.449.336-.923.026-.21-.181-.21-.517-.027-1.06-.581t-.543-1.37q0-.87.594-1.477a2.02 2.02 0 0 1 1.5-.633q.828 0 1.448.633.62.605.724 1.37.207 1.424-.517 2.822z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tmux.svg�������������������������������������0000664�0000000�0000000�00000000512�14753064456�0024616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 2.251V10.5H12.45V0h9.3A2.25 2.25 0 0 1 24 2.251M12.45 11.4H24v10.5h-.008A2.25 2.25 0 0 1 21.75 24H2.25a2.247 2.247 0 0 1-2.242-2.1H0V2.251A2.25 2.25 0 0 1 2.25 0h9.3v21.6h.9zm11.242 10.5H.308a1.95 1.95 0 0 0 1.942 1.8h19.5a1.95 1.95 0 0 0 1.942-1.8"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/todoist.svg����������������������������������0000664�0000000�0000000�00000001472�14753064456�0025314�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 0H3C1.35 0 0 1.35 0 3v3.858s3.854 2.24 4.098 2.38c.31.18.694.177 1.004 0 .26-.147 8.02-4.608 8.136-4.675a.77.77 0 0 1 .748-.01c.164.097.606.348.84.48.232.134.221.502.013.622l-9.712 5.59c-.346.2-.69.204-1.048.002C3.478 10.907.998 9.463 0 8.882v2.02l4.098 2.38c.31.18.694.177 1.004 0 .26-.147 8.02-4.609 8.136-4.676a.77.77 0 0 1 .748-.008c.164.096.606.347.84.48.232.133.221.5.013.62-.208.121-9.288 5.346-9.712 5.59-.346.2-.69.205-1.048.002C3.478 14.951.998 13.506 0 12.926v2.02l4.098 2.38c.31.18.694.177 1.004 0 .26-.147 8.02-4.609 8.136-4.676a.77.77 0 0 1 .748-.009c.164.097.606.348.84.48.232.133.221.502.013.622l-9.712 5.59c-.346.199-.69.204-1.048.001C3.478 18.994.998 17.55 0 16.97V21c0 1.65 1.35 3 3 3h18c1.65 0 3-1.35 3-3V3c0-1.65-1.35-3-3-3"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/toggl.svg������������������������������������0000664�0000000�0000000�00000004107�14753064456�0024741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.356 7.446v.64c0 .711-.541 1.286-1.209 1.286q-.074 0-.147-.009v1.58h.82v1.588c0 .625.112 1.107.338 1.434.347.501.734.83 1.676.83.546 0 1.004-.126 1.304-.293v-1.868a1.3 1.3 0 0 1-.444.074c-.363 0-.512-.112-.647-.282q-.13-.169-.13-.489v-.994h1.22V9.161h-1.22V7.446zm19.862 0v5.04c0 .627.093 1.149.319 1.478.347.5.816.827 1.75.83a1.8 1.8 0 0 0 .713-.173v-1.92c-.441.055-.594-.256-.594-.565v-4.69zm-6.552.519-.722 1.004a2.9 2.9 0 0 0-.883-.133c-.628 0-1.258.185-1.718.617-.449.419-.658 1.005-.658 1.605s.21 1.186.658 1.605q.06.056.12.104l-.084.045c-.21.12-.402.273-.568.451-.284.303-.568.756-.568 1.36 0 0-.039 1.286 1.438 1.286h1.071c.247 0 .498.157.498.403 0 .086-.025.17-.072.242h2.048c.309-.351.475-.806.466-1.274-.014-.403-.133-.831-.435-1.113-.34-.316-.831-.46-1.288-.46h-2.038c-.2 0-.379-.151-.379-.338a.34.34 0 0 1 .252-.326s.034-.008.072-.02c.371.171.776.258 1.185.254.627 0 1.256-.185 1.717-.617.449-.419.658-1.005.658-1.605s-.21-1.186-.658-1.605a2 2 0 0 0-.433-.31c.432.1.879-.023 1.186-.553zm5.182 0-.722 1.004a2.9 2.9 0 0 0-.882-.133c-.628 0-1.257.185-1.717.617-.449.419-.658 1.005-.658 1.605s.21 1.186.658 1.605q.198.184.436.313a2.6 2.6 0 0 0-.32.287c-.284.303-.568.756-.568 1.36 0 0-.039 1.286 1.438 1.286h1.07c.247 0 .498.157.498.403 0 .086-.024.17-.071.242h2.048c.309-.351.475-.806.466-1.274-.015-.403-.135-.831-.439-1.113-.34-.316-.831-.46-1.288-.46l-2.362-.017c-.15 0-.263-.094-.263-.232 0-.115.057-.283.2-.311.282.088.576.132.872.13.628 0 1.257-.185 1.718-.616.448-.42.658-1.006.658-1.606s-.21-1.185-.658-1.604a2 2 0 0 0-.435-.31c.433.1.879-.024 1.186-.554zm-12.45.886c-.771 0-1.542.247-2.107.823-.552.561-.808 1.346-.808 2.149s.257 1.587.807 2.149c.566.576 1.337.823 2.107.823s1.541-.247 2.106-.823c.55-.562.807-1.346.807-2.149s-.257-1.588-.807-2.15c-.565-.575-1.335-.822-2.106-.822zm5.74 1.622a.566.566 0 1 1-.582.565.53.53 0 0 1 .143-.378h.001a.56.56 0 0 1 .438-.187m5.194.001a.564.564 0 1 1-.581.564.53.53 0 0 1 .144-.378.56.56 0 0 1 .437-.186m-10.872.593a.73.73 0 1 1-.75.732.68.68 0 0 1 .186-.49.73.73 0 0 1 .564-.242"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/toggltrack.svg�������������������������������0000664�0000000�0000000�00000000405�14753064456�0025763�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a12 12 0 1 0 0 24 12 12 0 0 0 0-24m-.883 4.322h1.766v8.757h-1.766zm-.74 2.053v1.789a4.448 4.448 0 1 0 3.247 0V6.375a6.146 6.146 0 1 1-5.669 10.552 6.145 6.145 0 0 1 2.421-10.552z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tokyometro.svg�������������������������������0000664�0000000�0000000�00000001214�14753064456�0026035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.983 18.21c2.86.006 4.04-.949 4.043-2.392.003-1.702-1.694-3.782-2.923-5.073 2.318-2.082 5.325-3.622 6.508-2.432 1.367 1.367.02 5.418-3.213 9.892l4.26 1.222c3.613-6.43 4.38-12.76 1.89-14.473-1.946-1.329-6.852 1.337-10.55 4.721-3.687-3.398-8.58-6.08-10.532-4.759-2.5 1.704-1.748 8.037 1.84 14.48l4.267-1.207C4.35 13.703 3.02 9.65 4.393 8.285c1.184-1.185 4.186.365 6.5 2.456-1.237 1.286-2.943 3.36-2.945 5.062-.003 1.444 1.176 2.402 4.035 2.408zm.004-2.34c-.947 0-1.745-.242-1.743-1.05 0-.748.637-1.88 1.75-3.106 1.11 1.23 1.74 2.364 1.738 3.113 0 .807-.8 1.045-1.745 1.044z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/toll.svg�������������������������������������0000664�0000000�0000000�00000001723�14753064456�0024600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.852 13.351H24l-.645 1.455h-3.346c-.689 0-1.158-.584-.898-1.15l1.978-4.463h2.356l-1.75 3.954c-.037.088-.008.202.157.204M6.147 10.647l-1.843 4.159H3.303c-.601 0-1.061-.556-.852-1.045l1.379-3.114H0l.112-.252h7.375c.375 0 .955-.058 1.534-.338.155-.074.845-.473 1.503-.864h1.474c-.411.194-2.381 1.141-2.617 1.227-.618.225-1.017.227-1.526.227zm.538-.471H.209c.195-.442.632-.983 1.933-.983h6.18c-.351.44-.704.983-1.637.983m10.001 2.971c-.037.088-.007.202.157.204h2.149l-.644 1.455h-3.347c-.689 0-1.157-.584-.898-1.15l1.978-4.463h2.356l-1.75 3.954zm-1.831-3.439c.283.402.128 1-.107 1.506l-.91 2.055c-.686 1.655-3.056 1.536-3.056 1.536H8.085s-2.332.122-1.315-2.167l.785-1.774h.655c.531 0 1.182-.165 1.48-.282l3.509-1.389h.616c.497 0 .871.24 1.037.515zm-2.4 1.376c.119-.291-.054-.437-.294-.437h-1.7c-.343-.002-.512.168-.563.279-.036.074-.854 1.925-.854 1.925-.233.518.261.501.261.501h1.617s.52.002.756-.512z"/></svg>���������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/toml.svg�������������������������������������0000664�0000000�0000000�00000000351�14753064456�0024575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.014 0h5.34v2.652H2.888v18.681h2.468V24H.015zm17.622 5.049v2.78h-4.274v12.935h-3.008V7.83H6.059V5.05zM23.986 24h-5.34v-2.652h2.467V2.667h-2.468V0h5.34v24Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tomorrowland.svg�����������������������������0000664�0000000�0000000�00000005360�14753064456�0026356�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.97 0c-.009.01-.35.35-.747.758-.826.835-1.504 1.271-2.524 1.62-.582.205-.836.243-1.496.204-.427-.02-.883-.067-1-.115-.194-.058-.223-.04-.223.174 0 .33-.251 1.02-.523 1.437l-.234.35.244.3c.126.175.281.311.33.311s.31-.175.592-.389c.738-.563 2.039-1.212 3.048-1.513.797-.253.99-.274 2.563-.274s1.766.021 2.563.274c1.01.3 2.31.95 3.048 1.513.282.214.544.39.592.39.049 0 .204-.137.33-.302l.244-.31-.283-.448a4.2 4.2 0 0 1-.416-.98c-.107-.437-.165-.523-.31-.494-.107.02-.534.057-.971.076-.621.03-.913.001-1.408-.164-1.03-.35-1.825-.845-2.641-1.67-.417-.417-.768-.758-.777-.748zm-.284 3.328a2.4 2.4 0 0 0-.317.022c-1.369.213-2.504.882-3.203 1.882l-.273.39.273.388c.301.437.805.873 1.805 1.572.825.583 1.583 1.408 1.787 1.97.097.243.193.438.232.428.03 0 .175-.251.32-.552.302-.641.846-1.225 1.73-1.846.96-.68 1.512-1.164 1.794-1.572l.264-.38-.291-.427a4.43 4.43 0 0 0-2.32-1.66c-.45-.126-1.267-.22-1.801-.215m-7.502.031-.475.524C3.059 4.6 2.155 5.99 1.902 6.66c-.63 1.7-.464 3.127.536 4.486.796 1.078 2.357 2.165 4.095 2.854.447.165.807.34.807.379 0 .029-.126.088-.291.127-.456.097-1.408.766-1.66 1.174-.185.29-.233.504-.223.96.01 1.35.97 2.526 2.834 3.477.602.301 1.184.553 1.291.553.32 0 1.108-.874 1.477-1.66.699-1.437 1-3.408.912-5.912-.078-2.272-.32-3.059-1.252-4.04-.272-.29-.827-.727-1.235-.97C6 6.117 4.465 4.738 4.243 3.64zm15.634.094c-.036-.003-.047.037-.05.11-.01.96-1.728 2.525-4.961 4.525-.408.243-.963.68-1.235.97-.932.981-1.174 1.768-1.252 4.04-.087 2.504.213 4.475.912 5.912.37.786 1.157 1.66 1.477 1.66.107 0 .68-.242 1.271-.543 1.874-.951 2.844-2.137 2.854-3.486.01-.457-.038-.67-.223-.961-.252-.408-1.204-1.077-1.66-1.174-.165-.039-.29-.098-.29-.127 0-.039.36-.214.806-.379 1.738-.69 3.3-1.776 4.096-2.854 1-1.359 1.166-2.787.535-4.486-.262-.699-1.176-2.088-1.827-2.787-.267-.291-.393-.415-.453-.42m-7.994.533.274.004c.757.03 1.018.078 1.484.291.505.233 1.621 1.165 1.621 1.35 0 .126-1.183 1.02-1.746 1.31-.476.253-.632.282-1.457.282-.883 0-.951-.02-1.602-.37a7 7 0 0 1-1.156-.785l-.484-.418L9 5.36c.36-.447 1-.904 1.611-1.157.425-.178.634-.221 1.213-.217m.188.19a1.36 1.36 0 0 0-.692.174c-1.34.708-.844 2.728.68 2.728 1.485 0 2.01-1.951.719-2.69a1.5 1.5 0 0 0-.707-.212m-.282.635c.157-.001.3.096.387.287.214.456-.476.98-.767.591-.224-.281-.224-.466.01-.699a.54.54 0 0 1 .37-.18zm-9.943 6.46c-.039-.019-.078.563-.078 1.291 0 2.593.67 4.428 2.379 6.467 1.466 1.748 4.282 3.612 7.058 4.65l.844.321.807-.32c4.165-1.65 7.416-4.34 8.717-7.223.534-1.165.7-1.933.748-3.477.029-.786.029-1.504-.01-1.591-.049-.127-.135-.078-.436.261-.359.408-.37.457-.427 1.301-.272 4.088-3.224 7.534-7.33 8.563-1 .252-3.311.225-4.33-.047-4.03-1.107-6.856-4.477-7.118-8.516-.058-.825-.078-.893-.398-1.262-.194-.213-.377-.408-.426-.418"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tomtom.svg�����������������������������������0000664�0000000�0000000�00000000501�14753064456�0025136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 12.584a4.325 4.325 0 0 1-4.32-4.32A4.325 4.325 0 0 1 12 3.944a4.325 4.325 0 0 1 4.32 4.32 4.325 4.325 0 0 1-4.32 4.32M12 0C7.443 0 3.736 3.707 3.736 8.264S7.443 16.528 12 16.528s8.264-3.707 8.264-8.264S16.557 0 12 0m0 24 3.167-5.486H8.833Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ton.svg��������������������������������������0000664�0000000�0000000�00000000626�14753064456�0024427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0M7.902 6.697h8.196c1.505 0 2.462 1.628 1.705 2.94l-5.059 8.765a.86.86 0 0 1-1.488 0L6.199 9.637c-.758-1.314.197-2.94 1.703-2.94m4.844 1.496v7.58l1.102-2.128 2.656-4.756a.465.465 0 0 0-.408-.696zM7.9 8.195a.464.464 0 0 0-.408.694l2.658 4.754 1.102 2.13V8.195z"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/topcoder.svg���������������������������������0000664�0000000�0000000�00000002031�14753064456�0025436�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.004 7.555c-1.87 0-3.88.979-5.559 2.678 1.741.384 3.587.997 5.046 1.662l.513.23c.204-.09.367-.163.513-.23 1.464-.667 3.318-1.282 5.064-1.667-1.645-1.796-3.508-2.673-5.577-2.673m8.751 2.723c-.675.016-1.44.101-2.282.254.608.784 1.26 2 1.928 3.503a44 44 0 0 1 .981 2.4c.305-.06.58-.232.825-.542 1.393-1.761 2.038-3.366 1.708-4.349-.26-.776-1.152-1.19-2.515-1.258a9 9 0 0 0-.645-.008m-17.506 0a9 9 0 0 0-.646.008c-1.365.068-2.258.481-2.518 1.258-.33.983.315 2.588 1.708 4.35.258.325.549.499.873.55.15-1.468 1.501-4.253 2.868-5.911a15 15 0 0 0-2.285-.254zm14.69.352c-1.184.197-3.63.971-5.15 1.638l-.036.017a10 10 0 0 1 1.798.599c1.268.55 1.504.694 5.169 3.06.206.134.37.227.587.32q.291.127.566.174a43 43 0 0 0-1.316-3.092c-.46-.96-.906-1.758-1.323-2.338q-.151-.21-.295-.378m-11.866.004c-1.35 1.538-2.758 4.38-2.927 5.802.361-.061.79-.24 1.222-.49.317-.185.65-.394 1.054-.659.243-.16 1.153-.768 1.087-.724 1.939-1.29 3.253-1.982 4.678-2.288-1.589-.69-3.798-1.417-5.114-1.64z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/topdotgg.svg���������������������������������0000664�0000000�0000000�00000000334�14753064456�0025452�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 4.379h7.622V12H2.329A2.32 2.32 0 0 1 .008 9.679Zm24 0H8.757v15.243h3.114a4.507 4.507 0 0 0 4.507-4.508V12h3.115A4.507 4.507 0 0 0 24 7.493z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/toptal.svg�����������������������������������0000664�0000000�0000000�00000000363�14753064456�0025130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.227 10.038 10.188 0l-2.04 2.04 3.773 3.769-8.155 8.153L13.807 24l2.039-2.039-3.772-3.771 8.16-8.152zM8.301 14.269l6.066-6.063 1.223 1.223-6.064 6.113-1.223-1.26z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/torbrowser.svg�������������������������������0000664�0000000�0000000�00000000672�14753064456�0026040�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 21.82v-1.46A8.36 8.36 0 0 0 20.36 12 8.36 8.36 0 0 0 12 3.64V2.18A9.83 9.83 0 0 1 21.82 12 9.83 9.83 0 0 1 12 21.82m0-5.09A4.74 4.74 0 0 0 16.73 12 4.74 4.74 0 0 0 12 7.27V5.82A6.17 6.17 0 0 1 18.18 12 6.17 6.17 0 0 1 12 18.18zm0-7.27A2.54 2.54 0 0 1 14.55 12 2.54 2.54 0 0 1 12 14.54zM0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0 12 12 0 0 0 0 12"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/torproject.svg�������������������������������0000664�0000000�0000000�00000003640�14753064456�0026021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.982 1.14a8.42 8.42 0 0 0-4.47 3.12 21.4 21.4 0 0 1 3-4.26 12.4 12.4 0 0 0-4 4.36l.64-2.55a14.6 14.6 0 0 0-1.9 5.35l1.12.48a33.1 33.1 0 0 1 5.61-6.5m.82 13.069c-.82-1.52-2.92-3.01-5.13-4.39-.51-.3-.61-1.41-.53-1.89l-.51-.24a6.4 6.4 0 0 0 .16 2.39c.24.75 1 1.6 1.52 2.8a18 18 0 0 1 .72 2.92 13.2 13.2 0 0 1-.54 6.119 4.26 4.26 0 0 1-1.43 1.92l-.24.16c4.16.13 8.83-4.63 5.98-9.79zm-5.4 4.789a6.6 6.6 0 0 0-.42-2 12 12 0 0 0-.75-1.44 6.2 6.2 0 0 1-.16-2.07 7 7 0 0 0 .32 1.94 11 11 0 0 1 .69 1.3 9 9 0 0 1 .59 2.27 10.4 10.4 0 0 1-.35 3 5 5 0 0 1-.4 1 4.9 4.9 0 0 0 .7-1.52 12.4 12.4 0 0 0 .36-4.48 11.6 11.6 0 0 0-.46-1.89c-.44-1.2-1.07-2.23-1.15-2.47a16.2 16.2 0 0 1-.39-3.359 14.3 14.3 0 0 0 .44 3.12c.08.24.8 1.38 1.3 2.58a7.5 7.5 0 0 1 .48 1.73 10.7 10.7 0 0 1-.53 5.159 4 4 0 0 1-.35.82 3.7 3.7 0 0 0 .8-1.41 16.14 16.14 0 0 0 0-8.11c-.42-1.28-1.41-2.4-1.65-3.169a7.7 7.7 0 0 1-.08-2.39l-2.15-1c.56 1.44.66 2.56.08 3-2.26 1.87-5.999 4-5.999 7.11 0 3.319 2 6.908 7.05 7.178a13 13 0 0 1-1.7-.56 3.45 3.45 0 0 1-1.31-.9l-.13-.14a9.34 9.34 0 0 1-2-3.639 2.7 2.7 0 0 1-.08-1.52 6.68 6.68 0 0 1 3.28-4 10 10 0 0 0 1-.61c.47-.29.77-1.53 1.08-2.53-.16.77-.34 2.26-1.06 2.82-.29.22-.61.43-.93.64-1.28.88-2.54 1.7-3.17 3.81a2.8 2.8 0 0 0 .08 1.38 9.3 9.3 0 0 0 1.95 3.51s.13.13.13.16a3 3 0 0 0 1.94 1.15c-.29-.16-.53-.35-.74-.48a4.36 4.36 0 0 1-2-3.6 3.7 3.7 0 0 1 2.18-3.39 3.58 3.58 0 0 0 1.68-2.38 3.12 3.12 0 0 1-1.59 2.5 4 4 0 0 0-2.1 3.17 5.66 5.66 0 0 0 1.89 3.4 4.1 4.1 0 0 0 1.59.72 3 3 0 0 1-.48-.5 5 5 0 0 1-.45-1 3 3 0 0 1-.27-1 3.6 3.6 0 0 1 .64-2.37 2.84 2.84 0 0 0 .9-1.35 2.87 2.87 0 0 1-.72 1.51 3 3 0 0 0-.56 2.24 4 4 0 0 0 .29.93 4 4 0 0 0 .51 1c.18.21.26.37.55.48a6.5 6.5 0 0 0 .49-2.35 9.5 9.5 0 0 0 0-1.76c-.13-.8-.4-1.6-.4-2.24.12.59.43 1.38.61 2.21a5.6 5.6 0 0 1 .11 1.73c0 .56-.08 1-.16 1.49a2 2 0 0 1-.45.93 3.2 3.2 0 0 0 1.11-2 7.9 7.9 0 0 0 .32-2.36z"/></svg>������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/toshiba.svg����������������������������������0000664�0000000�0000000�00000002735�14753064456�0025263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.174 10.172c-1.065 0-1.578.187-1.65 1.148a9 9 0 0 0-.022.68c0 .218.004.451.021.68.073.96.586 1.148 1.65 1.148s1.58-.188 1.653-1.148c.018-.229.022-.462.022-.68 0-.217-.005-.451-.022-.68-.073-.96-.588-1.148-1.652-1.148m3.79 0c-.41 0-.82.04-.985.121-.322.156-.545.38-.545 1.02 0 .375.1.654.293.796.281.21.553.23 1.31.27.305.016.47.078.47.34 0 .332-.294.332-.564.332-.28 0-.366-.025-.46-.096-.084-.063-.105-.176-.106-.348h-.95c0 .487.01.884.47 1.084.41.18 1.67.18 2.048.014.328-.145.563-.337.563-.994 0-.455-.091-.735-.44-.941-.248-.147-.945-.17-1.298-.192-.258-.016-.356-.11-.356-.338 0-.297.285-.308.53-.308.202 0 .34.018.439.105.038.039.086.099.088.307h.947c0-.408-.014-.848-.455-1.051-.175-.08-.587-.121-.998-.121zm2.206.062v3.532h.996v-1.362h1.156v1.362h.996v-3.532h-.996v1.29h-1.156v-1.29zm4.023 0v3.532h1.002v-3.532zm1.891 0v3.532h1.887c.869 0 1.162-.376 1.162-.952 0-.401-.092-.755-.643-.894.444-.114.574-.379.574-.762 0-.776-.487-.924-1.181-.924zm4.373 0-1.068 3.532h1.037l.187-.655h1.16l.19.655H24l-1.07-3.532zM0 10.236v.881h1.055v2.65H2.11v-2.65h1.055v-.88zm5.174.762c.418 0 .633.063.66.607.004.085.01.201.01.395 0 .195-.006.31-.01.395-.027.544-.242.607-.66.607s-.633-.063-.66-.607A8 8 0 0 1 4.506 12c0-.194.003-.31.008-.395.027-.544.242-.607.66-.607m12.906.045h.69c.18 0 .293.085.293.291 0 .176-.112.285-.293.285h-.69zm4.111.064h.006l.354 1.22h-.713zm-4.11 1.207h.689c.279 0 .337.124.337.323s-.11.32-.337.32h-.69z"/></svg>�����������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/totvs.svg������������������������������������0000664�0000000�0000000�00000001104�14753064456�0024776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.385 0 0 5.339 0 12c0 6.614 5.385 12 12 12 6.614 0 12-5.386 12-12S18.614 0 12 0M8.648 3.813c1.275-.068 10.697 2.302 11.43 2.943.614.85.614 9.118 0 9.685-.284.095-2.127-.283-4.205-.755 0 2.031-.143 3.966-.426 4.203-.756.236-10.772-2.267-11.527-2.928-.615-.85-.615-9.119 0-9.686.283-.094 2.079.284 4.205.756 0-2.031.142-3.969.425-4.205a.5.5 0 0 1 .098-.013m-.523 4.265c-.048 2.362.095 4.961.425 5.434.426.378 4.158 1.418 7.276 2.174.047-2.41-.095-5.008-.426-5.481-.425-.378-4.157-1.418-7.275-2.127"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tourbox.svg����������������������������������0000664�0000000�0000000�00000003570�14753064456�0025332�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.401 9.664c0-.28.3-.506.898-.668a6.7 6.7 0 0 1 1.716-.202 6.7 6.7 0 0 1 1.715.202q.906.246.904.668v1.632q.002.424-.904.67-.75.205-1.715.204a6.6 6.6 0 0 1-1.716-.203q-.899-.247-.898-.67Zm2.614 3.417q3.551 0 3.55-1.785V9.664q.001-1.784-3.55-1.784-3.545.002-3.545 1.784v1.632q0 1.786 3.545 1.787m10.542-1.75V7.906h-.931v3.431c0 .24-.127.43-.38.557q-.637.327-1.8.327a4.6 4.6 0 0 1-1.43-.207q-.746-.248-.747-.677v-3.43h-.931v3.423q0 .986 1.108 1.449c.544.222 1.21.339 1.999.339a5.3 5.3 0 0 0 2.004-.332q1.108-.456 1.108-1.456m2.262-3.264h.008a.03.03 0 0 0 .02-.01zm-.637 1.592c0-.235.126-.415.384-.552q.68-.355 1.959-.354.553-.002 1.196.127L24 8.01a7 7 0 0 0-1.475-.13q-.961.001-1.696.185-1.594.442-1.594 1.594v3.424h.947zM5.839 14.19a7.6 7.6 0 0 0-1.46.134l.182.86a7.3 7.3 0 0 1 1.275-.134c.524 0 1.017.07 1.493.213.572.167.86.392.86.665v1.63q0 .418-.81.658a5.6 5.6 0 0 1-1.54.192 5.5 5.5 0 0 1-1.54-.195c-.545-.16-.81-.38-.81-.658v-4.498c.21.01.42.025.65.025v-1.063a12 12 0 0 1-1.709-.25q-1.311-.295-1.31-.75V8.234h3.03V7.192H1.118V4.697H0v6.32c0 1.072.893 1.722 2.65 1.958v4.59q-.001 1.739 3.19 1.738 3.188.002 3.188-1.738v-1.632q0-1.746-3.188-1.746m10.132 3.3q0 .424-.903.67a6.8 6.8 0 0 1-1.716.202 6.7 6.7 0 0 1-1.716-.202q-.9-.246-.9-.67v-1.633c0-.28.3-.506.9-.668a6.6 6.6 0 0 1 1.716-.202c.64 0 1.215.065 1.716.202q.903.247.903.668zm-2.62-3.417q-3.548.002-3.547 1.784v1.632q-.001 1.786 3.548 1.787 3.548-.002 3.548-1.787v-1.632q0-1.784-3.548-1.784m9.669.514q0 .444-1.025.934c-.564.235-.995.404-1.28.506a18 18 0 0 1-1.286-.506c-.683-.33-1.02-.638-1.02-.932v-.49h-.93v.49q-.001.67.67 1.2.386.315 1.28.728c-1.298.668-1.948 1.44-1.948 2.308v.45h.928v-.45q-.001-.532.904-1.123a6.8 6.8 0 0 1 1.41-.704c.523.2.988.43 1.396.704q.9.591.9 1.123v.45h.932v-.45c0-.868-.648-1.64-1.95-2.308q.898-.413 1.284-.728.665-.531.666-1.2v-.49h-.931zm0 0"/></svg>����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tower.svg������������������������������������0000664�0000000�0000000�00000002013�14753064456�0024757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.733 11.831c.324 0 .442.028.564.084a.73.73 0 0 1 .3.249c.077.11.126.22.186.538l.265 1.415.015.081H2.937l.015-.08.265-1.416c.06-.318.109-.429.186-.538a.73.73 0 0 1 .3-.25c.122-.055.24-.083.564-.083zm1.149 3.052-1.227 1.743c-.174.246-.248.325-.343.401a.9.9 0 0 1-.315.163c-.117.034-.224.05-.525.05H5.528c-.301 0-.408-.016-.525-.05a.9.9 0 0 1-.315-.163c-.095-.076-.169-.155-.343-.401l-1.227-1.743-.007-.01h17.778zM2.232 0h19.536c.482 0 .657.05.834.144a1 1 0 0 1 .408.41c.095.176.145.35.145.833v.945c0 .482-.05.657-.145.833a1 1 0 0 1-.408.409c-.177.094-.352.144-.834.144H2.232c-.482 0-.657-.05-.834-.144a1 1 0 0 1-.408-.41c-.095-.175-.145-.35-.145-.832v-.945C.845.904.895.73.99.553a1 1 0 0 1 .408-.409C1.575.05 1.75 0 2.232 0m5.273 4.733 1.028 6.422H4.637L2.75 4.731Zm8.651 0-1.088 6.422H9.209L8.121 4.732Zm5.094.002-1.88 6.422h-3.63l1.025-6.423zM8.106 18.254a18 18 0 0 1 1.567 5.45.34.34 0 0 0 .335.296h3.972c.17 0 .313-.127.334-.296a18 18 0 0 1 1.567-5.45z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/toyota.svg�����������������������������������0000664�0000000�0000000�00000001564�14753064456�0025150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3.848C5.223 3.848 0 7.298 0 12s5.224 8.152 12 8.152S24 16.702 24 12s-5.223-8.152-12-8.152m7.334 3.839c0 1.08-1.725 1.913-4.488 2.246-.26-2.58-1.005-4.279-1.963-4.913 2.948.184 6.45 1.227 6.45 2.667zM12 16.401c-.96 0-1.746-1.5-1.808-4.389q.866.071 1.808.072.942 0 1.807-.072c-.061 2.89-.847 4.389-1.807 4.389m0-6.308q-.886 0-1.69-.054c.261-1.728.92-3.15 1.69-3.15s1.428 1.422 1.689 3.15q-.803.053-1.689.054m-.882-5.075c-.956.633-1.706 2.333-1.964 4.915C6.391 9.6 4.665 8.767 4.665 7.687c0-1.44 3.504-2.49 6.453-2.669M2.037 11.68a5.27 5.27 0 0 1 1.048-3.164c.27 1.547 2.522 2.881 5.972 3.37V12c0 3.772.879 6.203 2.087 6.97-5.107-.321-9.107-3.48-9.107-7.29m10.823 7.29c1.207-.767 2.087-3.198 2.087-6.97v-.115c3.447-.488 5.704-1.826 5.972-3.37a5.26 5.26 0 0 1 1.049 3.165c-.004 3.81-4.008 6.969-9.109 7.29z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tplink.svg�����������������������������������0000664�0000000�0000000�00000000626�14753064456�0025130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.185 0C10.218 0 6.25 3.984 6.25 8.903V10.8h4.99V8.903c0-2.135 1.736-3.863 3.946-3.863 2.187 0 3.708 1.536 3.708 3.815 0 2.257-1.64 3.912-3.827 3.912h-1.878v5.039h1.878c4.874 0 8.819-4.007 8.819-8.952C23.885 3.72 20.2 0 15.185 0M.115 12.6v4.103c0 .624.523 1.248 1.236 1.248h4.753v4.801c0 .624.523 1.248 1.236 1.248h4.065V12.6Z"/></svg>����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tqdm.svg�������������������������������������0000664�0000000�0000000�00000001560�14753064456�0024572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 14.562a2.338 2.338 0 1 1 0-4.677 2.338 2.338 0 0 1 0 4.677M12 0C5.392 0 .036 5.473.036 12.224c0 5.579 3.659 10.281 8.658 11.746.428.126.87-.162.962-.598l.141-.669c.086-.41-.169-.799-.57-.92-4.039-1.221-6.986-5.037-6.986-9.559 0-5.507 4.37-9.972 9.76-9.972s9.76 4.464 9.76 9.972c0 4.515-2.938 8.325-6.967 9.552-.4.122-.654.511-.567.919l.142.67c.093.437.535.723.963.596 4.986-1.474 8.633-6.169 8.633-11.738C23.964 5.473 18.608 0 12 0m7.152 12.224c0-4.04-3.202-7.315-7.152-7.315s-7.152 3.275-7.152 7.315c0 3.191 1.999 5.903 4.786 6.902a.79.79 0 0 0 1.037-.582l.042-.199a.77.77 0 0 0-.489-.889c-2.118-.752-3.639-2.809-3.639-5.232 0-3.059 2.424-5.539 5.415-5.539s5.415 2.48 5.415 5.539c0 2.418-1.516 4.472-3.628 5.227a.77.77 0 0 0-.487.89l.042.199a.79.79 0 0 0 1.038.58c2.78-1.003 4.772-3.71 4.772-6.896"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/traccar.svg����������������������������������0000664�0000000�0000000�00000001243�14753064456�0025242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.001 1.61C.262 4.923-1.704 12.26 1.61 17.999s10.65 7.705 16.389 4.392S25.704 11.74 22.39 6 11.74-1.704 6 1.61m.706 1.222C11.77-.091 18.245 1.644 21.168 6.707s1.189 11.538-3.874 14.461-11.538 1.189-14.462-3.874S1.644 5.756 6.707 2.832m3.914 14.315a3.768 3.768 0 1 1-3.768-6.526l1.884 3.263Zm5.725-11.395L15.17 7.247c.665.511 1.28 1.156 1.725 1.927s.696 1.626.807 2.458l1.882-.272a8.404 8.404 0 0 0-3.238-5.608m-2.272 3.011-1.176 1.495c.274.216.548.48.734.8s.276.69.325 1.036l1.883-.272a4.6 4.6 0 0 0-.577-1.706 4.6 4.6 0 0 0-1.189-1.353Zm-3.832 3.708a.942.942 0 1 0 1.884 0 .942.942 0 1 0-1.884 0"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tradingview.svg������������������������������0000664�0000000�0000000�00000000320�14753064456�0026141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.865 8.279a2.452 2.452 0 1 1-4.904 0 2.452 2.452 0 0 1 4.904 0M9.75 6H0v4.904h4.846v7.269H9.75Zm8.596 0H24l-5.106 12.173H13.24z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/traefikmesh.svg������������������������������0000664�0000000�0000000�00000001710�14753064456�0026124�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.646 4.738.034.02 2.945 1.66a.66.66 0 0 0 .65 0l2.92-1.644a.992.992 0 0 1 1.008 1.71l-.033.02-1.688.952a.33.33 0 0 0 0 .574l4.555 2.57a.66.66 0 0 0 .65 0l2.815-1.59a.993.993 0 0 1 1.01 1.71l-.035.02-1.585.89a.33.33 0 0 0 0 .578l1.594.897a.992.993 0 0 1-.94 1.748l-.035-.02-2.826-1.591a.66.66 0 0 0-.65 0l-4.605 2.595a.33.33 0 0 0 0 .575l1.905 1.072a.993.993 0 0 1-.94 1.748l-.035-.018-3.133-1.767a.66.66 0 0 0-.65 0L8.416 19.23a.992.992 0 0 1-1.006-1.71l.033-.02 1.93-1.088a.33.33 0 0 0 0-.575l-4.564-2.572a.66.66 0 0 0-.65 0l-2.689 1.51a.993.993 0 0 1-1.005-1.711l.034-.018 1.452-.817a.33.33 0 0 0 0-.577l-1.45-.817a.992.992 0 0 1 .941-1.746l.033.018 2.685 1.515a.66.66 0 0 0 .65 0l4.607-2.596a.33.33 0 0 0 0-.576l-1.711-.963a.992.993 0 0 1 .94-1.748Zm2.977 4.324-4.609 2.59a.33.33 0 0 0 0 .58l4.563 2.57a.66.66 0 0 0 .65 0l4.606-2.595a.33.33 0 0 0 0-.577l-4.558-2.57a.66.66 0 0 0-.65 0z"/></svg>��������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/traefikproxy.svg�����������������������������0000664�0000000�0000000�00000002161�14753064456�0026352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1.19c1.088 0 2.056.768 2.056 1.714 0 .947-.921 1.715-2.056 1.715q-.195 0-.509-.064a.7.7 0 0 0-.475.076l-7.37 4.195a.344.344 0 0 0 .001.597l7.99 4.49a.69.69 0 0 0 .669 0l8.034-4.468a.343.343 0 0 0 .003-.598l-2.507-1.424a.68.68 0 0 0-.67-.003l-2.647 1.468a.23.23 0 0 0-.119.18l-.001.025c0 .946-.921 1.714-2.056 1.714s-2.056-.768-2.056-1.714c0-.947.921-1.715 2.056-1.715q.063 0 .145.007l.087.008.096.013a.7.7 0 0 0 .425-.08l3.913-2.173c.3-.166.662-.171.965-.017l.04.023 5.465 3.104a1.03 1.03 0 0 1 .03 1.773l-.037.021-3.656 2.033a.343.343 0 0 0 .007.604l3.62 1.906c.72.378.736 1.402.03 1.804l-10.995 6.272a1.03 1.03 0 0 1-1.019 0L.526 16.43a1.03 1.03 0 0 1 .034-1.806l3.66-1.911a.343.343 0 0 0 .01-.603L.524 10.029a1.03 1.03 0 0 1-.041-1.77l.036-.021L9.618 3.06a.7.7 0 0 0 .308-.369l.011-.036c.32-.952 1.046-1.466 2.063-1.466Zm5.076 12.63-4.492 2.586-.041.022a1.02 1.02 0 0 1-.973-.018l-4.478-2.527a.68.68 0 0 0-.65-.01L3.86 15.224a.343.343 0 0 0-.012.602l7.887 4.515a.68.68 0 0 0 .677 0l7.956-4.547a.343.343 0 0 0-.01-.602l-2.623-1.384a.68.68 0 0 0-.659.012"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/trailforks.svg�������������������������������0000664�0000000�0000000�00000000323�14753064456�0026001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1.608 0 22.392h24zm-1.292 5.698h2.584v5.885l2.664 1.917v5.587h-2.204V16.05L12 14.788l-1.752 1.262v4.645H8.044v-5.587l2.664-1.917z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/trainerroad.svg������������������������������0000664�0000000�0000000�00000001366�14753064456�0026143�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.289 14.039c.157-.064.44-.199.51-.234 1.105-.56 1.92-1.222 2.42-1.966.527-.756.8-1.658.78-2.579 0-1.253-.456-2.193-1.398-2.874-.922-.668-2.225-.971-3.874-1.012H1.357L0 8.421h5.528a.05.05 0 0 1 .038.016.02.02 0 0 1 .004.019L2.785 16.85h3.668c.063 0 .12-.041.14-.102l2.759-8.303a.04.04 0 0 1 .042-.024l2.823.001q.022 0 .038.015a.02.02 0 0 1 .004.019L9.473 16.85h3.669c.064 0 .12-.042.14-.103l.742-2.26a.04.04 0 0 1 .042-.024s2.452.005 2.452.003c.864 1.363 1.807 2.878 2.616 4.16l3.844-.002c.118 0 .19-.13.125-.229l-2.832-4.321c-.01-.022.013-.025.018-.035m-.45-3.355c-.437.412-1.185.612-2.163.612h-2.583l.952-2.874 2.353.001c1.14.017 1.826.514 1.838 1.337a1.22 1.22 0 0 1-.397.924"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/trakt.svg������������������������������������0000664�0000000�0000000�00000001503�14753064456�0024747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 24C5.385 24 0 18.615 0 12S5.385 0 12 0s12 5.385 12 12-5.385 12-12 12m0-22.789C6.05 1.211 1.211 6.05 1.211 12S6.05 22.79 12 22.79 22.79 17.95 22.79 12 17.95 1.211 12 1.211m-7.11 17.32A9.6 9.6 0 0 0 12 21.644a9.6 9.6 0 0 0 4.027-.876l-6.697-6.68zm14.288-.067a9.65 9.65 0 0 0 2.484-6.466c0-3.885-2.287-7.215-5.568-8.76l-6.089 6.076 9.164 9.15zm-9.877-8.429L4.227 15.09l-.679-.68 5.337-5.336 6.23-6.225A9.8 9.8 0 0 0 12 2.34C6.663 2.337 2.337 6.663 2.337 12c0 2.172.713 4.178 1.939 5.801l5.056-5.055.359.329 7.245 7.245a3 3 0 0 0 .42-.266L9.33 12.05l-4.854 4.855-.679-.679 5.535-5.535.359.331 8.46 8.437c.135-.1.255-.215.375-.316L9.39 10.027l-.083.015zm3.047 1.028-.678-.676 4.788-4.79.679.689-4.789 4.785zm4.542-6.578-5.52 5.52-.68-.679 5.521-5.52.679.684z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/transifex.svg��������������������������������0000664�0000000�0000000�00000001272�14753064456�0025630�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.073 12.851-2.758-2.757 3.722-3.659a.33.33 0 0 1 .467.003l2.27 2.309a.33.33 0 0 1-.004.468zm0 0h-.001zm-9.04-6.433 12.87 12.869c.129.13.129.34 0 .469l-2.289 2.289a.33.33 0 0 1-.468 0l-5.168-5.168-2.863 2.815c-.604.593-1.244 1.159-1.975 1.591a7 7 0 0 1-2.248.83c-2.191.42-4.557-.047-6.303-1.468A7.07 7.07 0 0 1 0 15.207V2.069a.33.33 0 0 1 .331-.33h3.237a.33.33 0 0 1 .331.33v4.125H6.65c.178 0 .323.145.323.323v3.617a.323.323 0 0 1-.323.323H3.899v4.75c0 1.272.808 2.429 1.988 2.893.753.295 1.617.321 2.397.131.852-.206 1.484-.717 2.097-1.319l2.839-2.792-4.945-4.945a.33.33 0 0 1 0-.468l2.289-2.289a.333.333 0 0 1 .469 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/transmission.svg�����������������������������0000664�0000000�0000000�00000001031�14753064456�0026347�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.696 9.46v12.794c0 .945.884 1.709 1.715 1.709H20.57c.878 0 1.715-.61 1.715-1.709V9.467a73 73 0 0 1-6.863.77v5.147h3.432l-6.863 6.863-6.863-6.863H8.56v-5.086a47.5 47.5 0 0 1-6.843-.831h-.02zM15.42.037v8.417c2.246-.147 4.531-.167 6.863-.542C23.223 7.764 24 7.1 24 6.089v-3.8c0-1.012-.784-1.662-1.716-1.83C19.945.03 17.667.164 15.421.037zM8.56.05C6.239.191 3.96.077 1.716.46.777.619 0 1.277 0 2.289v3.8C0 7.1.784 7.73 1.716 7.912c2.218.442 4.504.476 6.843.603z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/transportforireland.svg����������������������0000664�0000000�0000000�00000000452�14753064456�0027726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v12c0 6.62 5.38 12 12 12h12V11.978h-.022c0-6.62-5.38-11.978-12-11.978zm3.376 8.145h6.337v1.546h-2.33v6.12H5.706v-6.12h-2.33zm8.014 0h5.837V9.67h-4.138v1.633h3.659v1.546h-3.659v2.962H11.39zm7.535 0h1.678v7.666h-1.678Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/transportforlondon.svg�����������������������0000664�0000000�0000000�00000000514�14753064456�0027600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2.25a9.73 9.73 0 0 0-9.49 7.5H0v4.5h2.51a9.73 9.73 0 0 0 9.49 7.5c4.62 0 8.48-3.2 9.49-7.5H24v-4.5h-2.51A9.73 9.73 0 0 0 12 2.25M12 6c2.5 0 4.66 1.56 5.56 3.75H6.44A6.02 6.02 0 0 1 12 6m-5.56 8.25h11.12A6.02 6.02 0 0 1 12 18a6.02 6.02 0 0 1-5.56-3.75"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/travisci.svg���������������������������������0000664�0000000�0000000�00000006755�14753064456�0025464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.32 13.025a.485.485 0 1 1-.97 0c0-.446-.167-.758-.406-.758s-.405.312-.405.758a.485.485 0 1 1-.97 0c0-1.187.713-1.728 1.375-1.728s1.376.541 1.376 1.728m6.017.485a.485.485 0 0 0 .485-.485c0-.446.167-.758.405-.758s.405.312.405.758a.485.485 0 1 0 .97 0c0-1.187-.713-1.728-1.375-1.728s-1.375.541-1.375 1.728c0 .268.217.485.485.485m7.967-4.454-.191 2.459a.8.8 0 0 1-.367.623.85.85 0 0 1-.46.13 1.1 1.1 0 0 1-.366-.068c-.271-.101-.544-.192-.817-.285a9 9 0 0 1-.094 1.614c-.04.242-.092.471-.138.707a.5.5 0 0 1-.024.125 19.5 19.5 0 0 1-1.033 3.513l.033-.02.897-.537c.193-.137.599-.122.815.1a.65.65 0 0 1 .173.577.7.7 0 0 1-.053.159c-.061.135-.319.706-.866 1.906-.675 1.483-2.06 1.77-2.121 1.782.001.001-.907.214-1.879.44C15.458 23.419 13.87 24 12.087 24c-1.84 0-3.448-.58-4.787-1.713l-1.924-.45c-.041-.008-1.427-.294-2.103-1.778l-.87-1.914c-.005-.019-.05-.158-.053-.177-.009-.625.621-.914 1.023-.632l.858.512c.006.003.074.043.171.085a20.4 20.4 0 0 1-.982-3.444c-.063-.317-.129-.63-.183-.96a9 9 0 0 1-.09-1.7q-.536.175-1.066.372c-.292.109-.593.087-.827-.062a.8.8 0 0 1-.366-.621L.695 9.055c-.036-.475.305-.969.794-1.152l.3-.117c.225-.089.505-.198.837-.318C3.65 3.124 7.566 0 12.041 0c4.516 0 8.438 3.158 9.434 7.549.472.153.843.281 1.036.355.492.183.833.677.793 1.152m-4.612 8.973c.369-.815.678-1.708.93-2.67l-.997.713a.95.95 0 0 1-.655.166l-4.467-.47a.96.96 0 0 1-.821-.698l-.558-1.923a3 3 0 0 0-.244 0l-.56 1.93a.955.955 0 0 1-.82.691l-4.471.471a.95.95 0 0 1-.642-.162l-.723-.503q.347 1.335.824 2.451c.609-.028 1.207-.069 1.209-.069.001 0 .434-.039.788-.332l1.061-.885c.148-.165.652-.465 1.33-.271.196.055.495.146.815.243q.094.029.17.092c.532.445 1.832.445 2.365.002a.5.5 0 0 1 .168-.091c.337-.103.631-.192.823-.247.68-.193 1.182.108 1.374.314l1.016.843c.353.294.785.332.789.332-.001.001.658.045 1.296.073m-6.605 5.001a6.4 6.4 0 0 0 1.949-.313c-.932-.209-1.555-1.019-1.588-1.062l-.406-.542-.407.543c-.031.043-.641.842-1.558 1.06.63.196 1.295.314 2.01.314m6.941-4.016a64 64 0 0 1-1.701-.089 2.5 2.5 0 0 1-1.339-.554l-1.065-.888c-.055-.051-.187-.152-.442-.083-.176.05-.436.13-.717.216-.878.655-2.567.655-3.443-.003a44 44 0 0 0-.709-.212c-.258-.076-.386.03-.411.052l-1.097.918a2.52 2.52 0 0 1-1.341.553s-.872.059-1.594.085h-.002l-.106.004a2.4 2.4 0 0 1-1.341-.343l-.018-.01.453.996c.463 1.017 1.389 1.225 1.427 1.232.014.004 2.754.646 3.822.889.781.174 1.447-.696 1.454-.705l.795-1.061c.183-.245.594-.245.776 0l.796 1.061c.007.009.682.881 1.455.705 1.067-.243 3.807-.886 3.807-.886a2.2 2.2 0 0 0 1.442-1.236l.452-.993-.026.015a2.27 2.27 0 0 1-1.327.337m1.096-7.412a28.3 28.3 0 0 0-15.998-.075 8 8 0 0 0 .067 1.845c.045.275.1.535.152.8l1.591 1.108 4.461-.476.642-2.243a.49.49 0 0 1 .395-.345 3.9 3.9 0 0 1 1.135.003.48.48 0 0 1 .394.344l.652 2.245 4.462.468 1.864-1.336c.036-.19.079-.374.111-.568a8 8 0 0 0 .072-1.77m2.214-2.623c-.005-.034-.073-.133-.165-.167l-.004-.001c-.22-.083-.68-.242-1.256-.423l-.007-.005c-.955-.299-2.771-.823-4.267-.99a.485.485 0 0 1 .108-.964c1.192.134 2.529.466 3.637.787C19.298 3.552 15.913.97 12.041.97c-3.832 0-7.207 2.549-8.318 6.165a20 20 0 0 1 3.27-.705.484.484 0 1 1 .121.962 19.2 19.2 0 0 0-3.909.899l-.005.004c-.432.149-.785.288-1.056.394l-.315.123c-.094.035-.162.135-.167.175l.177 2.264a29.4 29.4 0 0 1 10.164-1.817c3.442 0 6.881.607 10.157 1.82zm-8.534-5.986h-3.539a.485.485 0 0 0-.485.485v.811a.485.485 0 1 0 .97 0v-.326h.746v3.308h-.521a.485.485 0 1 0 0 .97h2.061a.485.485 0 1 0 0-.97h-.57V3.963h.853v.326a.485.485 0 1 0 .97 0v-.811a.485.485 0 0 0-.485-.485"/></svg>�������������������mkdocs-material-9.6.4/material/templates/.icons/simple/treehouse.svg��������������������������������0000664�0000000�0000000�00000002557�14753064456�0025637�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.398 4.386c-.821-.448-2.09.298-2.837 1.642l-1.418 2.389c-.523.97-.448 2.165.224 3.135l.075.075a23 23 0 0 0 1.791 2.09c.15.15.299.373.373.672.224.821-.224 1.717-1.12 1.94-.82.225-1.716-.223-1.94-1.119-.075-.224-.075-.448-.075-.597.075-.373-.074-.896-.597-1.493-.522-.523-1.493.522-1.866 1.567v.075c-.299 1.045-.523 2.016-.448 2.09 0 .075.075.075.075.15.448.895.149 1.94-.747 2.388s-1.94.15-2.389-.746-.15-1.941.747-2.389c.074 0 .074-.075.149-.075s.224-.448.448-1.045c.15-.522.224-.746.299-.97.074-.299.224-1.045.149-1.344-.075-.373-.448-.373-.821-.15-.224.15-.672.523-.821.673a2.9 2.9 0 0 0-.822 1.12 2.3 2.3 0 0 1-.373.522 1.636 1.636 0 0 1-2.24-.224 1.636 1.636 0 0 1 .225-2.24c.224-.149.448-.298.671-.298.374-.075 1.717-.896 2.539-1.493.149-.075.373-.299.448-.373.223-.299 0-.523-.224-.523-.672.075-1.419.15-1.568.373-.075.075-.15.224-.299.299-.597.448-1.493.299-1.94-.299-.449-.597-.3-1.493.298-1.94.224-.225.597-.3.821-.3.523 0 1.866.3 2.911.075l.299-.074c1.12-.224 2.464-1.195 2.986-2.165 0 0 .523-.896 1.12-2.016.672-1.12.597-2.388-.075-2.762L13.157.28c-.672-.373-1.642-.373-2.314 0l-8.66 4.927C1.513 5.58.99 6.476.99 7.222v9.555c0 .747.523 1.643 1.195 2.016l8.659 4.927c.672.373 1.717.373 2.314 0l8.66-4.927c.671-.373 1.194-1.269 1.194-2.015V7.222c0-.746-.523-1.642-1.194-2.015 0 0-.598-.373-1.419-.821z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/trello.svg�����������������������������������0000664�0000000�0000000�00000000710�14753064456�0025122�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.147 0H2.853A2.86 2.86 0 0 0 0 2.853v18.294A2.86 2.86 0 0 0 2.853 24h18.294A2.86 2.86 0 0 0 24 21.147V2.853A2.86 2.86 0 0 0 21.147 0M10.34 17.287a.953.953 0 0 1-.953.953h-4a.954.954 0 0 1-.954-.953V5.38a.953.953 0 0 1 .954-.953h4a.954.954 0 0 1 .953.953zm9.233-5.467a.944.944 0 0 1-.953.947h-4a.947.947 0 0 1-.953-.947V5.38a.953.953 0 0 1 .953-.953h4a.954.954 0 0 1 .953.953z"/></svg>��������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/trendmicro.svg�������������������������������0000664�0000000�0000000�00000001245�14753064456�0025773�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.38 0 0 5.37 0 12c0 2.45.734 4.72 2 6.62-.5-1.17-.42-2.68.19-4.33l.01-.04.05-.13.05-.12.02-.05c.22-.55.5-1.12.84-1.69.05-.1.09-.19.14-.26H1.86l.35-.79c1.19-.33 3.17-.99 5.06-2.82h1.05l-1.29 2.75H9.1l-.38.82H6.66s-.97 1.94-1.3 3.32c-.25 1.54 0 2.72 1.38 3.13.85.26 1.92.2 3.07-.12 2.69-.84 5.53-2.67 7.62-5.11 3.44-3.99 3.51-8.08.15-9.13-2.15-.67-5.19.08-8 1.75 3.5-2.26 7.36-3.3 10.01-2.49.5.15.94.37 1.3.63A11.97 11.97 0 0 0 12 0m10.17 5.63c.83 2.18-.2 5.44-2.97 8.66-4.16 4.84-10.73 7.76-14.7 6.54a4.5 4.5 0 0 1-1.26-.62A11.96 11.96 0 0 0 12 24c6.63 0 12-5.37 12-12 0-2.34-.67-4.5-1.83-6.37"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/treyarch.svg���������������������������������0000664�0000000�0000000�00000007753�14753064456�0025460�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.313 23.017C.576 22.764-.232 21.704.058 20.061a6.6 6.6 0 0 1 .88-2.288c1.328-2.123 3.2-3.896 5.3-5.016.556-.297 1.881-.863 2.02-.863.03 0 .106.232.167.516.095.442.19.64.67 1.397.308.485.587.908.62.941.085.085.164-.471.164-1.153v-.572l.25.463c.294.542.588.98.743 1.109.06.05.006-.1-.122-.333-.982-1.793-1.62-4.265-1.622-6.286-.002-2.003.488-3.555 1.417-4.488.444-.446.813-.628 1.35-.667 1-.072 1.748.635 2.235 2.113.08.247.13.467.108.488-.022.023-.04-.003-.04-.058 0-.053-.133-.37-.295-.703-.332-.682-.786-1.219-1.187-1.402-.257-.118-.759-.166-.844-.082-.023.023.133.23.347.46.482.514.865 1.27 1.099 2.165.151.58.176.826.203 2.042.058 2.547-.35 4.406-1.289 5.861-.396.616-.456.554-.083-.087.154-.265.272-.564.295-.752.022-.172.026-.313.011-.313s-.11.148-.212.329c-.164.292-.21.33-.405.33h-.22l.134.215.134.217-.598.788c-.496.654-.916 1.19-1.179 1.503-.047.055-.741-1.063-1.084-1.745a7 7 0 0 0-.197-.375c-.047-.053-1.217.549-1.728.889-1.559 1.037-2.59 2.74-2.16 3.57.318.614 1.731.37 3.166-.55.181-.115.556-.393.833-.616s.568-.406.646-.406c.081 0 .297-.146.502-.34.197-.186.374-.324.392-.306.06.061-1.838 1.857-2.473 2.34-1.562 1.185-2.92 1.643-3.876 1.306-.265-.094-.272-.093-.27.05.002.223.23.674.403.799.152.11.148.11-.174.067-.974-.134-1.547-.72-1.548-1.583 0-.385.213-1.165.477-1.74.595-1.298 2.396-3.08 3.694-3.653.296-.13.418-.248.824-.787.372-.496.453-.642.374-.673-.128-.049-.332.03-1.307.513-2.741 1.355-4.636 3.4-5.194 5.605-.231.916-.078 1.967.366 2.507l.153.187-.031-.814c-.026-.681-.009-.904.107-1.362.136-.539.492-1.363.7-1.622.076-.093.069-.054-.024.137-.397.82-.532 1.769-.344 2.416.305 1.051 1.716 1.562 3.24 1.173 1.04-.265 2.373-1.01 3.749-2.096.9-.71 2.84-2.689 3.375-3.44 1.631-2.296 2.48-5.781 2.15-8.84-.261-2.422-1.335-4.097-2.825-4.405a5 5 0 0 1-.62-.177c-.22-.088-.24-.11-.132-.153.335-.13 1.167-.046 1.701.175.09.038.112.03.078-.026-.094-.152-.54-.29-1.093-.338l-.56-.049.461-.01.461-.012-.259-.137c-.208-.11-.327-.128-.609-.095-.695.082-1.577.512-2.201 1.074-.431.389-.197.015.298-.476 1.1-1.088 2.587-1.296 4.117-.574.573.27 1.346 1 1.706 1.61.443.754.77 1.763.945 2.918.19 1.254.056 4-.267 5.48l-.118.54.631.208c.61.2 1.675.653 1.634.694-.01.011-.36-.11-.775-.268s-.768-.275-.784-.258c-.076.075 1.393 1.451 1.906 1.786 1.974 1.286 3.3 2.717 3.524 3.804.023.11-.032.027-.122-.184-.396-.93-1.05-1.723-2.146-2.605-1.376-1.107-2.975-2.005-3.94-2.213-.449-.097-.182.074.558.36 1.925.74 3.764 2.121 4.814 3.617.762 1.085.872 2.134.263 2.506-.325.198-1.153.183-2.036-.038-.589-.148-2.732-.934-2.679-.983.01-.008.226.038.48.103 1.368.36 2.145-.015 2.057-.994-.116-1.275-1.615-2.72-3.596-3.466-.231-.087-.427-.15-.434-.14a46 46 0 0 1-1.034 1.788l-.514.847.156.273a2 2 0 0 1 .202.602c.08.581.244.85.737 1.213 1.082.795 2.677 1.561 3.92 1.882.337.087.55.16.472.162-.188.004-1.284-.287-1.736-.462-1.087-.42-2.078-.994-3.483-2.017-.696-.506-.962-.667-1.001-.604-.064.103.116.267 1.027.938 1.96 1.444 4.675 2.543 6.282 2.543.992 0 1.62-.34 1.981-1.073a2.9 2.9 0 0 0 .256-.84l.051-.425.092.296c.099.32.13 1.549.048 1.877-.05.195-.048.195.08-.034.524-.927.54-2.254.043-3.38a10 10 0 0 0-.494-.9c-.407-.665-.165-.407.389.413.95 1.407 1.38 2.8 1.197 3.87a3.3 3.3 0 0 1-.239.774c-.31.605-.987 1.113-1.783 1.337-.483.136-1.965.121-2.657-.026-2.165-.463-4.985-2.04-6.989-3.908l-.365-.34-.658.639c-1.713 1.66-3.34 2.755-4.841 3.258-.647.216-1.636.411-2.53.499-.81.079-1.024.078-1.583-.003zM12.97 10.99c.393-1.77.336-3.854-.135-4.908-.61-1.367-1.746-.996-2.083.68-.154.766-.19 1.6-.112 2.55.063.764.213 1.789.3 2.04.02.06.277.082.98.082h.951zm6.514 9.62a.6.6 0 0 1 .23 0c.064.014.012.03-.115.03-.126 0-.178-.016-.115-.03m2.637-2.227c0-.182.013-.248.028-.148s.015.248 0 .33c-.016.08-.029-.001-.028-.183zM7.786 10c-.268-1.136-.324-1.7-.288-2.866.025-.78.072-1.22.174-1.63.137-.549.468-1.535.503-1.5.01.009-.005.147-.034.303-.03.16-.024.394.012.537.051.2.034.366-.08.802-.19.72-.258 2.574-.128 3.452.048.324.078.618.067.655a4 4 0 0 0-.019.51c.001.245-.008.445-.02.445-.01 0-.095-.319-.187-.708"/></svg>���������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tricentis.svg��������������������������������0000664�0000000�0000000�00000000441�14753064456�0025626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.271 10.42 6.86 3.006 9.833.034l4.438 4.438L18.742 0l2.974 2.974ZM9.825 24l-2.973-2.974 7.445-7.445 7.412 7.412-2.974 2.973-4.438-4.437zm-4.567-4.568-2.974-2.974 4.47-4.47-4.437-4.439 2.974-2.974 7.412 7.412Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/trilium.svg����������������������������������0000664�0000000�0000000�00000004031�14753064456�0025306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.855 20.514c-.778-.725-.812-1.463-.873-1.589-.08.247-.125.405-.137.85-.756-.732-1.286-1.58-1.313-2.594-.038-1.36.574-1.852.57-1.85 0 0-.475.245-.897.592.31-1.825 1.44-3.531 3.095-4a7.75 7.75 0 0 0-.572 3.878c-.609.644-.892 1.417-.89 2.197a2.9 2.9 0 0 1 .928-1.896c.212 1.497.836 2.973 1.858 4.265-.686-.988-1.83-3.266-1.393-5.932.866.433 1.533 1.181 1.876 2.24-.225-1.06-.83-1.972-1.826-2.602.116-.755.319-1.49.595-2.18.459.068 2.213.593 2.707 3.957a4.5 4.5 0 0 0-.7-.3c.01.004.223.18.448 1.083.205.793.098 1.752-.003 2.482a8 8 0 0 0-.693-.275s.376.325.499 1.28c.11.854.105 1.93.123 1.916.006 0-2.099-.31-3.402-1.522M3.19 5.83c1.068-.31 1.748.048 1.894.06-.179-.2-.297-.324-.69-.568 1.063-.286 2.107-.311 3.033.198C8.667 6.203 8.78 7.004 8.78 7c0 0 .035-.55-.05-1.108 1.47 1.234 2.397 3.134 1.929 4.85a8.03 8.03 0 0 0-3.172-2.547 3.23 3.23 0 0 0-1.495-1.944c.66.478 1.055 1.114 1.203 1.82-1.456-.598-3.115-.82-4.823-.593 1.255-.09 3.913.092 6.07 1.882-.853.541-1.882.74-3.016.488 1.072.357 2.214.3 3.315-.253a10.3 10.3 0 0 1 1.637 1.674c-.307.372-1.72 1.652-5.003.323.365-.217.644-.463.644-.463-.008.006-.28.103-1.212-.173-.821-.234-1.625-.833-2.226-1.307.354-.242.62-.47.62-.47s-.494.163-1.418-.23C.96 8.596-.003 8.028 0 8.05c-.004.006 1.403-1.7 3.19-2.22M19.408 2.21c-1.407-.044-2.136.615-2.312.676.16-.303.267-.495.677-.921-1.394-.015-2.686.287-3.671 1.209-1.322 1.237-1.22 2.261-1.222 2.256 0 0-.209-.668-.272-1.383-1.438 1.991-2.006 4.63-.916 6.599a10.4 10.4 0 0 1 3.138-4.152c.046-1.164.515-2.149 1.255-2.875-.668.8-.963 1.711-.933 2.63 1.611-1.203 3.587-2.004 5.757-2.267a11 11 0 0 0-4.239 1.769c.779.356 1.668.411 2.603.086-.896.42-1.891.488-2.897.123a12.6 12.6 0 0 0-2.37 2.276c1.212.396 2.537.314 3.857-.358-1.211.782-2.634 1.075-4.155.742a13.4 13.4 0 0 0-1.51 2.588c.488.36 2.61 1.492 6.252-1.193a6 6 0 0 1-.931-.367c.011.005.375.038 1.438-.599.94-.55 1.75-1.545 2.346-2.32a10 10 0 0 1-.903-.385s.656.045 1.674-.735c.909-.695 1.923-1.703 1.926-1.675.006.006-2.237-1.652-4.592-1.724"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/triller.svg����������������������������������0000664�0000000�0000000�00000001000�14753064456�0025267�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.548 5.216 7.005 20.012l-.29-.167 8.54-14.788a9.37 9.37 0 0 0-6.07-.906L2.73 15.333l-.609 1.055a9.34 9.34 0 0 0 3.818 4.806l-1.522 2.64.289.166 2.303-3.987h-.002a9.37 9.37 0 0 0 6.068.905l6.321-10.945.287.167-6.168 10.683-.964 1.67a9.32 9.32 0 0 0 7.55-7.555 9.27 9.27 0 0 0-.413-4.802l2.299-3.982-.29-.167L20.14 8.68a9.34 9.34 0 0 0-3.816-4.806zm-5.842-2.64a9.324 9.324 0 0 0-7.132 12.359L8.893 3.989l.292.162L11.483.167 11.193 0z"/></svg>mkdocs-material-9.6.4/material/templates/.icons/simple/trillertv.svg��������������������������������0000664�0000000�0000000�00000001121�14753064456�0025645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.496.07-1.8 3.107-.868-.498c-1.269-.729-2.852.184-2.852 1.64v6.28l3.9-6.734L9.933.319a.14.14 0 0 0-.053-.19l-.19-.11a.143.143 0 0 0-.193.05Zm-.713 3.734-4.807 8.301v7.163c0 .674.338 1.23.826 1.562l-1.65 2.85a.14.14 0 0 0 .05.192l.192.109a.14.14 0 0 0 .193-.05l1.665-2.874L13.629 6.59Zm11.63 2.547-1.8 3.108-4.33-2.49-8.217 14.186a1.9 1.9 0 0 0 .764-.248l8.598-4.948 5.42-9.356a.14.14 0 0 0-.05-.193q-.097-.054-.192-.11c-.027-.02-.14-.041-.193.051m-.711 3.735-2.967 5.123 3.08-1.774c1.268-.731 1.268-2.556 0-3.285z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/trimble.svg����������������������������������0000664�0000000�0000000�00000002635�14753064456�0025267�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.598 18.338a9.1 9.1 0 0 0 4.799 2.82L2.598 24zm4.764-15.52a9.14 9.14 0 0 0-4.764 2.81V0zM22.854 12l-4.811 2.851a9.65 9.65 0 0 0 .014-5.693zM5.758 4.301a9.4 9.4 0 0 1 5.297-.615 4.3 4.3 0 0 0-2.425.828c-.756-.213-2.185-.369-2.872-.213M14.9 14.602c-2.367 1.828-6.156 1.322-8.459-.605a23 23 0 0 1 2.673-3.483c1.359 1.208 3.398 1.7 5.035.936.38 1.014.633 2.073.751 3.152m-9.72-.42a15.4 15.4 0 0 0-1.621 3.751 8.5 8.5 0 0 1-2.406-5.603 8.54 8.54 0 0 1 1.939-5.79c-.651 2.393.058 5.506 2.088 7.642m8.6-3.636c-1.137.532-2.746.326-3.976-.723a19 19 0 0 1 2.339-1.865 11.4 11.4 0 0 1 1.637 2.588m-1.527-3.893a8.7 8.7 0 0 0-2.519-1.735c.909-.593 3-.629 4.301.72a8.4 8.4 0 0 0-1.782 1.015M5.922 14.88c2.399 1.937 6.253 2.59 9.051.881a7.4 7.4 0 0 1-.468 2.719 8.06 8.06 0 0 1-5.014 1.893 8.05 8.05 0 0 1-5.085-1.684c.136-.689.505-2.016 1.516-3.809m8.653-4.932a12.7 12.7 0 0 0-1.632-2.544 7 7 0 0 1 1.667-1.003c.681.945.861 2.587-.035 3.547m1.544-2.064c.837 1.87.874 4.207-.354 5.844a14 14 0 0 0-.778-2.822c.419-.367.743-.835.941-1.363a3.5 3.5 0 0 0 .191-1.659M9.14 9.096c-.758-1.049-.992-2.402-.229-3.451a7.7 7.7 0 0 1 2.53 1.581 19.5 19.5 0 0 0-2.301 1.87m6.773 5.95a6.5 6.5 0 0 0 1.609-3.749 8.65 8.65 0 0 1-1.71 5.88q.144-1.061.101-2.131M7.956 5.347c-.846 1.347-.467 3.226.487 4.443a24 24 0 0 0-2.725 3.499c-1.876-2.141-2.624-5.575-1.013-7.92a6.5 6.5 0 0 1 3.251-.022"/></svg>���������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/trino.svg������������������������������������0000664�0000000�0000000�00000006130�14753064456�0024756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.124 16.853a.162.162 0 1 1 .158.161.16.16 0 0 1-.158-.161m-5.607-.158a.161.161 0 1 0 0 .323.161.161 0 0 0 0-.323m10.134-.664v1.986a1.053 1.053 0 0 1-1.103.996h-.384a5.1 5.1 0 0 1-1.13 1.718.32.32 0 0 0 0 .465l.238.219a.304.304 0 0 1 .039.43c-1.126 1.384-2.967 2.152-5.05 2.152a6.58 6.58 0 0 1-4.82-1.898l-.008-.01a.63.63 0 0 1 .055-.89.323.323 0 0 0 0-.472 4.9 4.9 0 0 1-1.126-1.714h-.35a1.057 1.057 0 0 1-1.107-.996v-1.986a1.057 1.057 0 0 1 1.107-.992h.273a5.77 5.77 0 0 1 2.08-3.094C6.94 10.846 6.21 8.69 6.137 6.938 6.023 4.47 6.218.078 7.825 0s1.372 4.028 1.1 6.695a33 33 0 0 0-.124 4.45 7 7 0 0 1 2.483-.43 7.2 7.2 0 0 1 1.737.207c.261-1.268.876-3.574 2.03-5.196 1.671-2.352 3.435-4.78 4.61-4.1 1.177.68-.307 3.14-1.329 4.427s-2.786 3.209-3.374 4.227c-.211.384-.43.803-.596 1.153a5.74 5.74 0 0 1 2.917 3.613h.073V12.74a.31.31 0 0 0-.18-.285.92.92 0 0 1-.558-.814 1.02 1.02 0 0 1 .905-.905c.56-.06 1.06.345 1.12.905a.92.92 0 0 1-.553.814.31.31 0 0 0-.169.285v2.152a.31.31 0 0 0 .17.28.97.97 0 0 1 .564.858m-1.022-3.974a.435.435 0 0 0 .461-.415.415.415 0 1 0-.461.415m-.423 3.478q.147.721.15 1.456v.365h.411a.323.323 0 0 0 .323-.319V16.03a.52.52 0 0 0-.569-.495zm-3.728-4.481.611.238a37 37 0 0 1 2.383-3.866c1.288-1.726 2.337-3.582 1.872-3.87s-1.618 1.23-2.771 3.109a35 35 0 0 0-2.095 4.389m-4.054.672.015 1.334a.32.32 0 0 0 .385.315 6.4 6.4 0 0 1 1.456-.165 6 6 0 0 1 1.453.173.324.324 0 0 0 .384-.315v-1.342a.32.32 0 0 0-.242-.311 6.7 6.7 0 0 0-1.603-.184 6.7 6.7 0 0 0-1.602.184.32.32 0 0 0-.246.311m1.706 6.864v.384a.69.69 0 0 1-.5.27c-.307 0-.537-.42-.537-.42a.073.073 0 0 0-.1-.03l-.003.001a.07.07 0 0 0-.024.095c.011.023.28.495.665.495a.7.7 0 0 0 .384-.126.33.33 0 0 1 .361 0 .83.83 0 0 0 .473.134.96.96 0 0 0 .657-.48.07.07 0 0 0-.027-.096.07.07 0 0 0-.1.027c0 .023-.219.384-.542.407a.8.8 0 0 1-.576-.269v-.384a.32.32 0 0 1 .127-.254c.196-.15.415-.396.415-.492a.54.54 0 0 0-.577-.419c-.376 0-.653.25-.653.458 0 .134.254.338.423.46a.32.32 0 0 1 .134.239m-3.347-6.944.577-.308c-.02-1.126-.035-3.143 0-4.542.053-2.037.153-4.574-.523-4.547s-1.15 1.98-.888 4.758a33 33 0 0 0 .834 4.639m-3.305 5.391a.32.32 0 0 0 .319.32h.4a3 3 0 0 1 0-.366 7.6 7.6 0 0 1 .146-1.456c-.05 0-.34 0-.387-.002a.49.49 0 0 0-.478.498zm.918 1.472a5 5 0 0 1-.123-.557.32.32 0 0 0-.319-.273H4.46c0 .016-.002.34 0 .355a.52.52 0 0 0 .553.483zm10.127 2.917-.088-.08a.32.32 0 0 0-.385-.027 7 7 0 0 1-3.804 1.006 7 7 0 0 1-3.794-1.006.32.32 0 0 0-.384.027l-.088.08a.315.315 0 0 0 0 .458 6.03 6.03 0 0 0 4.292 1.598 6.05 6.05 0 0 0 4.29-1.598.315.315 0 0 0-.04-.458m1.449-4.416c0-2.455-1.153-4.327-3.025-5.226a.328.328 0 0 0-.465.292v1.33a.33.33 0 0 0 .204.296c1.733.71 2.928 2.186 2.928 3.877 0 2.271-2.156 3.809-5.342 3.809s-5.341-1.541-5.341-3.809c0-1.69 1.195-3.167 2.928-3.877a.32.32 0 0 0 .204-.296v-1.322a.325.325 0 0 0-.462-.292c-1.887.883-3.04 2.767-3.04 5.207 0 2.99 2.287 4.996 5.711 4.996 3.429 0 5.7-2.01 5.7-4.985m-8.609-.538H8.36a.584.584 0 1 0 .004 0m5.162.592a.574.574 0 0 0 .584.573.584.584 0 1 0-.584-.573m4.569.623h-.5a.32.32 0 0 0-.315.273 8 8 0 0 1-.127.557h.402a.52.52 0 0 0 .536-.5z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tripadvisor.svg������������������������������0000664�0000000�0000000�00000001312�14753064456�0026166�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.006 4.295c-2.67 0-5.338.784-7.645 2.353H0l1.963 2.135a5.997 5.997 0 0 0 4.04 10.43 5.98 5.98 0 0 0 4.075-1.6L12 19.705l1.922-2.09a5.97 5.97 0 0 0 4.072 1.598 6 6 0 0 0 6-5.998 5.98 5.98 0 0 0-1.957-4.432L24 6.648h-4.35a13.57 13.57 0 0 0-7.644-2.353M12 6.255c1.531 0 3.063.303 4.504.903C13.943 8.138 12 10.43 12 13.1c0-2.671-1.942-4.962-4.504-5.942A11.7 11.7 0 0 1 12 6.256zM6.002 9.157a4.059 4.059 0 1 1 0 8.118 4.059 4.059 0 0 1 0-8.118m11.992.002a4.057 4.057 0 1 1 .003 8.115 4.057 4.057 0 0 1-.003-8.115m-11.992 1.93a2.128 2.128 0 0 0 0 4.256 2.128 2.128 0 0 0 0-4.256m11.992 0a2.128 2.128 0 0 0 0 4.256 2.128 2.128 0 0 0 0-4.256"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tripdotcom.svg�������������������������������0000664�0000000�0000000�00000001256�14753064456�0026013�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.834 9.002c-.68 0-1.29.31-1.707.799v-.514h-1.708v8.348h1.897v-2.923c.416.344.943.551 1.518.551 1.677 0 3.036-1.401 3.036-3.13s-1.36-3.13-3.036-3.13zm-.19 4.516c-.733 0-1.328-.62-1.328-1.385s.595-1.385 1.328-1.385 1.328.62 1.328 1.385-.594 1.385-1.328 1.385m6.356.607a1.138 1.138 0 1 1-2.277 0 1.138 1.138 0 0 1 2.277 0M13.205 7.428a1.062 1.062 0 1 1-2.125 0 1.062 1.062 0 0 1 2.125 0m-2.011 1.859h1.897v5.692h-1.897zM6.83 8.225H4.364v6.754H2.466V8.225H0V6.63h6.83zm3.035 1.033q.194.002.38.03v1.74a1.6 1.6 0 0 0-.297-.031c-.88 0-1.594.612-1.594 1.593v2.389H6.451V9.287h1.707v.9c.363-.558.991-.93 1.707-.93z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/trivago.svg����������������������������������0000664�0000000�0000000�00000000764�14753064456�0025305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.811 0a.25.25 0 0 0-.133.042L2.83 3.18a.43.43 0 0 0-.195.358v9.285c0 .141.115.256.256.256h5.18L18.432 7.35a.43.43 0 0 0 .22-.373v-5.3a.256.256 0 0 0-.38-.224L8.073 7.092V.256A.256.256 0 0 0 7.81 0m.017 14.707h-4.93a.257.257 0 0 0-.256.268 9.367 9.367 0 0 0 18.721 0 .26.26 0 0 0-.256-.268h-4.932a.26.26 0 0 0-.254.238 3.93 3.93 0 0 1-3.918 3.619c-2.478 0-3.48-2.105-3.48-2.105a4 4 0 0 1-.44-1.519.255.255 0 0 0-.255-.233"/></svg>������������mkdocs-material-9.6.4/material/templates/.icons/simple/trivy.svg������������������������������������0000664�0000000�0000000�00000003124�14753064456�0025000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.375 7.311 1.962 5.918a.1.1 0 0 1 0-.174L11.828.047a.34.34 0 0 1 .344 0l9.864 5.696a.1.1 0 0 1 0 .175L19.624 7.31a1 1 0 0 1-.052-.074c-.914-1.478-2.124-2.592-3.596-3.31-4.088-1.994-9.164-.505-11.6 3.385Zm7.887 16.588v-3.14c5.693-2.087 9.01-7.766 7.588-12.985l2.436-1.42a.1.1 0 0 1 .151.088v11.645a.1.1 0 0 1-.05.087l-9.973 5.812a.1.1 0 0 1-.152-.087m-.559-3.141v3.14a.1.1 0 0 1-.151.086l-9.933-5.81a.11.11 0 0 1-.056-.099V6.436a.1.1 0 0 1 .15-.087l2.44 1.41c-1.455 5.307 1.846 10.993 7.55 13ZM7.013 8.834 4.807 7.561c2.306-3.665 7.094-5.066 10.95-3.186 1.385.676 2.526 1.727 3.39 3.124l.04.062-2.195 1.268a5.57 5.57 0 0 0-2.429-2.307c-2.603-1.27-5.901-.253-7.552 2.311Zm9.337 5.2c.813-1.371 1.088-2.99.798-4.685l2.255-1.314c1.245 4.86-1.864 10.169-7.14 12.192v-3.072c1.86-.67 3.272-1.747 4.087-3.12ZM4.6 8.018l2.27 1.31c-.225 1.571.112 3.204.951 4.606.919 1.536 2.225 2.629 3.881 3.25v3.045C6.327 18.25 3.297 13.042 4.601 8.017Zm5.303 2.486-2.459-1.42c1.52-2.34 4.53-3.268 6.9-2.112A5.08 5.08 0 0 1 16.56 9.08l-2.471 1.427a2.31 2.31 0 0 0-2.03-1.195c-.825 0-1.645.43-2.156 1.192m4.338.522 2.443-1.408c.22 1.51-.043 2.945-.765 4.162-.735 1.238-1.998 2.224-3.658 2.856v-2.631c1.25-.691 1.968-1.771 1.98-2.979m-5.991 2.65A6.58 6.58 0 0 1 7.34 9.6l2.446 1.412c-.016 1.271.73 2.437 1.917 2.997v2.624a6.98 6.98 0 0 1-3.453-2.956Zm3.853-.148-.137.073-.157-.075c-1.023-.504-1.524-1.606-1.557-2.417a2 2 0 0 1 .004-.23 2.15 2.15 0 0 1 1.163-.957c.508-.178 1.034-.153 1.444.071.6.327.84.797.86.86.008.156.004.253.004.256-.038.981-.63 1.863-1.624 2.419"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/trove.svg������������������������������������0000664�0000000�0000000�00000002712�14753064456�0024764�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.922 8.43c-1.393.035-2.506 1.213-2.486 2.606a2.53 2.53 0 0 0 1.763 2.392l.25-1.123a1.42 1.42 0 0 1-.875-1.307c0-.883.816-1.594 1.72-1.396.56.122.994.58 1.095 1.143a1.42 1.42 0 0 1-.854 1.558l.25 1.123a2.54 2.54 0 0 0 1.764-2.428 2.557 2.557 0 0 0-2.627-2.568M.189 8.5a.14.14 0 0 0-.136.137v.776c0 .07.058.134.136.134h1.016v3.797a.14.14 0 0 0 .135.135h.853a.14.14 0 0 0 .137-.135V9.547h1.016a.136.136 0 0 0 .136-.134v-.776a.14.14 0 0 0-.136-.137zm4.504 0a.136.136 0 0 0-.134.137v4.707c0 .071.056.137.134.137h.846a.143.143 0 0 0 .137-.137v-1.812h.49l.945 1.884a.13.13 0 0 0 .114.065h.947c.12 0 .17-.115.121-.207l-.975-1.807c.62-.249 1.053-.775 1.053-1.43 0-.846-.697-1.537-1.55-1.537zm10.356 0c-.107 0-.164.094-.121.186l2.218 4.787a.14.14 0 0 0 .122.078h.072c.057 0 .1-.035.12-.078l2.233-4.787c.043-.092-.014-.186-.12-.186h-.946a.14.14 0 0 0-.121.079l-1.174 2.597h-.043L16.115 8.58a.14.14 0 0 0-.12-.079zm5.805 0a.14.14 0 0 0-.137.137v4.707c0 .071.058.137.137.137h2.943a.136.136 0 0 0 .135-.137v-.775a.134.134 0 0 0-.135-.135h-1.97v-.96h1.622a.134.134 0 0 0 .135-.136v-.775a.14.14 0 0 0-.135-.135h-1.623v-.88h1.97a.134.134 0 0 0 .136-.135v-.776a.136.136 0 0 0-.135-.137zM5.676 9.518h1.053c.291 0 .539.242.539.541s-.248.568-.54.568H5.677zM.135 14.526A.134.134 0 0 0 0 14.66v.775c0 .071.056.135.135.135h10.588l.232-1.045zm12.896 0 .233 1.045h10.601a.134.134 0 0 0 .135-.135v-.775a.134.134 0 0 0-.135-.135z"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/trpc.svg�������������������������������������0000664�0000000�0000000�00000002571�14753064456�0024600�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 12c0 6.62-5.38 12-12 12S0 18.62 0 12 5.38 0 12 0s12 5.38 12 12M1.21 12A10.78 10.78 0 0 0 12 22.79 10.78 10.78 0 0 0 22.79 12 10.78 10.78 0 0 0 12 1.21 10.78 10.78 0 0 0 1.21 12m10.915-6.086 2.162 1.248a.25.25 0 0 1 .125.217v1.103l2.473 1.428a.25.25 0 0 1 .125.217v2.355l.955.551a.25.25 0 0 1 .125.217v2.496a.25.25 0 0 1-.125.217l-2.162 1.248a.25.25 0 0 1-.25 0l-.956-.552-2.472 1.427a.25.25 0 0 1-.25 0l-2.472-1.427-.956.552a.25.25 0 0 1-.25 0l-2.162-1.248a.25.25 0 0 1-.125-.217V13.25a.25.25 0 0 1 .125-.217l.955-.551v-2.355a.25.25 0 0 1 .125-.217l2.473-1.428V7.38a.25.25 0 0 1 .125-.217l2.162-1.248a.25.25 0 0 1 .25 0Zm1.268 10.049a.25.25 0 0 1-.125-.217V13.25a.25.25 0 0 1 .125-.217l2.16-1.248a.25.25 0 0 1 .25 0l.707.408v-1.922l-2.098-1.21v.814a.25.25 0 0 1-.125.217l-2.162 1.248a.25.25 0 0 1-.25 0l-2.162-1.248a.25.25 0 0 1-.125-.217V9.06L7.49 10.271v1.922l.707-.408a.25.25 0 0 1 .25 0l2.16 1.248a.25.25 0 0 1 .125.217v2.496a.25.25 0 0 1-.125.217l-.705.408L12 17.582l2.098-1.211ZM10.088 9.73l1.662.96V8.766l-1.662-.955Zm3.824 0V7.811l-1.662.955v1.924ZM12 6.418l-1.66.96 1.66.954 1.66-.954Zm-5.59 9.184 1.66.958v-1.921l-1.66-.956Zm3.822 0v-1.92l-1.662.957v1.923Zm-1.91-3.311-1.662.96 1.661.955 1.66-.956Zm5.446 3.31 1.66.96v-1.922l-1.66-.956Zm3.822 0v-1.918l-1.662.956v1.922Zm-1.912-3.31-1.66.96 1.66.955 1.66-.956Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/truenas.svg����������������������������������0000664�0000000�0000000�00000000432�14753064456�0025303�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 10.049v5.114l-10.949 6.324v-5.114zm-24 0v5.114l10.956 6.324v-5.114zm12.004-.605-4.433 2.559 4.433 2.559 4.429-2.559zm10.952-1.207-9.905-5.723v5.118l5.473 3.164zm-12-.605V2.513L1.044 8.236l4.432 2.555z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/trueup.svg�����������������������������������0000664�0000000�0000000�00000001462�14753064456�0025152�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.17 4.8a1.2 1.2 0 1 0 .06 2.4 1.2 1.2 0 0 0-.06-2.4m-8.4 0a1.2 1.2 0 1 0 .06 2.4 1.2 1.2 0 0 0-.06-2.4M10.2 0a6.61 6.61 0 0 0-6.6 6.6v4.8A12.614 12.614 0 0 0 16.2 24h3.6a.6.6 0 0 0 .6-.6V6.6A6.61 6.61 0 0 0 13.8 0Zm0 1.2h3.6a5.3 5.3 0 0 1 2.525.656A6.15 6.15 0 0 0 12 5.631a6.15 6.15 0 0 0-4.325-3.775A5.3 5.3 0 0 1 10.2 1.2M6.333 2.844C9.505 3.13 11.4 5.403 11.4 9a.6.6 0 0 0 1.2 0c0-3.597 1.895-5.87 5.067-6.156A5.38 5.38 0 0 1 19.2 6.6v.6c0 3.905-4.423 7.2-7.2 7.2s-7.2-3.295-7.2-7.2v-.6c0-1.404.551-2.752 1.533-3.756M4.8 11.068C6.505 13.758 9.681 15.6 12 15.6c1.09 0 2.371-.413 3.6-1.124V16.2c0 2.932.782 5.138 2.316 6.6H16.2A11.413 11.413 0 0 1 4.8 11.4Zm14.4 0v11.25c-1.609-1.21-2.4-3.218-2.4-6.118v-2.523a10.3 10.3 0 0 0 2.4-2.61z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/trulia.svg�����������������������������������0000664�0000000�0000000�00000001747�14753064456�0025134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.696 8.937a.668.668 0 0 0 .095 1.329.67.67 0 0 0 .668-.668.668.668 0 0 0-.763-.661m-4.396.281v1.121h.751v3.473h-.75v1.12h2.625v-1.12h-.75V9.218ZM.751 9.339v1.381h-.75v1.128h.75v1.086c0 1.18.95 2.136 2.123 2.136a2 2 0 0 0 .46-.05v-1.116a1.1 1.1 0 0 1-.383.069c-.596 0-1.079-.47-1.079-1.047v-1.078h1.463V10.72H1.872V9.34Zm20.92 1.26c-1.115-.004-2.02.981-2.019 2.191s.904 2.196 2.02 2.19l.087-.001c.422-.011.876-.21 1.113-.488v.422H24v-4.246h-1.127l-.001.423c-.238-.279-.692-.477-1.113-.487q-.044-.003-.088-.002zm-14.824.048c-.518.003-.928.153-1.297.654l-.227-.64H4.225v1.127h.52v3.145h1.117v-2.199a.99.99 0 0 1 .985-.99h.34v-1.097Zm9.655.047v1.117h.75v3.121h1.874v-1.117h-.75v-3.12zm-8.26.03v2.213c0 1.177.948 2.131 2.119 2.131s2.119-.952 2.119-2.13v-2.214H11.36v2.254a1.002 1.002 0 1 1-2 0v-2.254zm13.585.972c.593 0 1.074.5 1.074 1.119 0 .618-.481 1.119-1.074 1.119s-1.074-.5-1.075-1.12c-.001-.617.481-1.118 1.075-1.118"/></svg>�������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/trustedshops.svg�����������������������������0000664�0000000�0000000�00000001063�14753064456�0026372�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.187 14.332c-1.1 1.626-2.63 3.108-4.687 3.108-2.175 0-3.442-1.362-3.442-3.562 0-3.561 2.63-7.052 6.335-7.052 1.242 0 2.916.502 2.916 2.009 0 2.7-4.231 3.609-6.311 4.135-.072.457-.143.908-.143 1.362 0 .933.501 1.793 1.53 1.793 1.338 0 2.412-1.29 3.203-2.247zm-1.148-5.808c0-.55-.31-.978-.884-.978-1.722 0-2.608 3.346-2.94 4.66 1.601-.48 3.824-1.794 3.824-3.682M12 0a12 12 0 1 0 12 11.997A11.997 11.997 0 0 0 12 0m-.1 19.523a7.563 7.563 0 1 1 7.564-7.563 7.563 7.563 0 0 1-7.563 7.56Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/trustpilot.svg�������������������������������0000664�0000000�0000000�00000000317�14753064456�0026055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.227 16.67 2.19 6.742-7.413-5.388zM24 9.31h-9.165L12.005.589l-2.84 8.723L0 9.3l7.422 5.397-2.84 8.714 7.422-5.388 4.583-3.326z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tryhackme.svg��������������������������������0000664�0000000�0000000�00000015627�14753064456�0025625�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.705 0C7.54 0 4.902 2.285 4.349 5.291a4.525 4.525 0 0 0-4.107 4.5 4.525 4.525 0 0 0 4.52 4.52h6.761a.625.625 0 1 0 0-1.25H4.761a3.273 3.273 0 0 1-3.27-3.27A3.273 3.273 0 0 1 6.59 7.08a.625.625 0 0 0 .7-1.035 4.5 4.5 0 0 0-1.68-.69 5.22 5.22 0 0 1 5.096-4.104 5.22 5.22 0 0 1 5.174 4.57 5 5 0 0 0-.488.305.625.625 0 1 0 .731 1.013 3.25 3.25 0 0 1 1.912-.616 3.28 3.28 0 0 1 3.203 2.61.625.625 0 0 0 1.225-.251 4.53 4.53 0 0 0-4.428-3.61 4.5 4.5 0 0 0-.958.105C16.556 2.328 13.9 0 10.705 0m5.192 10.64a.9.9 0 0 0-.462.108.9.9 0 0 0-.313.29 1.3 1.3 0 0 0-.175.427 2.4 2.4 0 0 0-.054.514q0 .271.054.517.055.246.175.43a.9.9 0 0 0 .313.297q.19.11.462.11.27 0 .46-.11a.9.9 0 0 0 .309-.296q.12-.185.173-.431.054-.246.054-.517 0-.27-.054-.514a1.3 1.3 0 0 0-.173-.426.9.9 0 0 0-.309-.291.9.9 0 0 0-.46-.108m6.486 0a.9.9 0 0 0-.462.108.9.9 0 0 0-.313.29 1.3 1.3 0 0 0-.175.427 2.4 2.4 0 0 0-.053.514q0 .271.053.517.055.246.175.43a.9.9 0 0 0 .313.297q.19.11.462.11.27 0 .46-.11a.9.9 0 0 0 .31-.296q.117-.185.172-.431t.054-.517q0-.27-.054-.514a1.3 1.3 0 0 0-.173-.426.9.9 0 0 0-.308-.291.9.9 0 0 0-.461-.108m-8.537.068-.84.618.313.43.476-.368v1.877h.603v-2.557zm6.486 0-.841.618.314.43.477-.368v1.877h.603v-2.557zm-4.435.445q.119 0 .193.084.074.085.114.21.039.125.054.269a2.5 2.5 0 0 1 0 .533q-.015.145-.054.27a.6.6 0 0 1-.114.21.24.24 0 0 1-.193.085.25.25 0 0 1-.195-.086.6.6 0 0 1-.118-.209 1.3 1.3 0 0 1-.056-.27 2.7 2.7 0 0 1 0-.533q.015-.144.056-.27a.6.6 0 0 1 .118-.209.25.25 0 0 1 .195-.084m6.486 0q.12 0 .193.084.074.085.114.21t.054.269a2.5 2.5 0 0 1 0 .533q-.014.145-.054.27a.6.6 0 0 1-.114.21.24.24 0 0 1-.193.085.25.25 0 0 1-.195-.086.6.6 0 0 1-.117-.209 1.3 1.3 0 0 1-.056-.27 2.6 2.6 0 0 1 0-.533q.014-.144.056-.27a.6.6 0 0 1 .117-.209.25.25 0 0 1 .195-.084m-2.191 3.51a.93.93 0 0 0-.463.109.9.9 0 0 0-.312.291q-.12.182-.175.426a2.4 2.4 0 0 0-.054.514q0 .27.054.516t.175.432a.9.9 0 0 0 .312.296.9.9 0 0 0 .463.11q.27 0 .46-.11a.9.9 0 0 0 .308-.296 1.3 1.3 0 0 0 .174-.432q.054-.245.054-.516 0-.27-.054-.514a1.3 1.3 0 0 0-.174-.426.9.9 0 0 0-.309-.291.9.9 0 0 0-.46-.108zm-6.402.07-.841.617.314.43.476-.369v1.878h.604v-2.557zm2.125 0-.841.617.314.43.477-.369v1.878h.603v-2.557zm2.116 0-.84.617.313.43.477-.369v1.878h.603v-2.557zm2.16.443q.12 0 .194.085a.6.6 0 0 1 .114.21q.04.124.053.269a2.6 2.6 0 0 1 0 .532 1.3 1.3 0 0 1-.053.27.6.6 0 0 1-.114.21.24.24 0 0 1-.193.085.25.25 0 0 1-.196-.085.6.6 0 0 1-.117-.21 1.3 1.3 0 0 1-.056-.27 2.6 2.6 0 0 1 0-.532q.014-.145.056-.27a.6.6 0 0 1 .117-.209.25.25 0 0 1 .196-.085zm-6.729 3.073a.7.7 0 0 0-.335.078.66.66 0 0 0-.227.211.9.9 0 0 0-.127.31q-.04.177-.04.373c0 .196.013.256.04.375a.9.9 0 0 0 .127.313.65.65 0 0 0 .227.215q.138.08.335.08a.66.66 0 0 0 .334-.08.65.65 0 0 0 .225-.215q.086-.135.125-.313a1.8 1.8 0 0 0 .04-.375q0-.195-.04-.373a.9.9 0 0 0-.125-.31.66.66 0 0 0-.225-.21.67.67 0 0 0-.334-.08zm3.086 0a.7.7 0 0 0-.336.078.66.66 0 0 0-.226.211.9.9 0 0 0-.127.31 1.7 1.7 0 0 0-.04.373q0 .197.04.375a.9.9 0 0 0 .127.313q.088.135.226.215.14.08.336.08a.66.66 0 0 0 .334-.08.65.65 0 0 0 .224-.215q.087-.135.126-.313a1.75 1.75 0 0 0 0-.748 1 1 0 0 0-.126-.31.66.66 0 0 0-.224-.21.67.67 0 0 0-.334-.08zm5.108 0a.7.7 0 0 0-.336.078.66.66 0 0 0-.226.211.9.9 0 0 0-.127.31q-.04.177-.04.373c0 .196.013.256.04.375a.9.9 0 0 0 .127.313q.087.135.226.215.14.08.336.08t.334-.08a.65.65 0 0 0 .224-.215q.087-.135.126-.313a1.8 1.8 0 0 0 .04-.375q0-.195-.04-.373a1 1 0 0 0-.126-.31.66.66 0 0 0-.224-.21.67.67 0 0 0-.334-.08zm-6.658.05-.61.448.227.311.346-.266v1.362h.438v-1.856zm3.068 0-.61.448.227.311.346-.266v1.362h.438v-1.856zm5.108 0-.611.448.228.311.346-.266v1.362h.438v-1.856zm-9.712.322q.087 0 .14.062a.4.4 0 0 1 .083.151 1 1 0 0 1 .04.196 2 2 0 0 1 0 .386 1 1 0 0 1-.04.197.4.4 0 0 1-.083.152.18.18 0 0 1-.14.061.18.18 0 0 1-.141-.06.4.4 0 0 1-.085-.153 1 1 0 0 1-.041-.197 2 2 0 0 1 0-.386 1 1 0 0 1 .04-.196.4.4 0 0 1 .086-.151.18.18 0 0 1 .141-.062m3.086 0q.086 0 .14.062a.4.4 0 0 1 .082.151 1 1 0 0 1 .04.196 2 2 0 0 1 0 .386 1 1 0 0 1-.04.197.4.4 0 0 1-.082.152.18.18 0 0 1-.14.061.18.18 0 0 1-.141-.06.4.4 0 0 1-.086-.153 1 1 0 0 1-.04-.197 2 2 0 0 1-.011-.195q0-.086.01-.191a1 1 0 0 1 .041-.196.4.4 0 0 1 .086-.151.18.18 0 0 1 .141-.062m5.108 0q.087 0 .14.062a.4.4 0 0 1 .082.151 1 1 0 0 1 .04.196 2 2 0 0 1 0 .386 1 1 0 0 1-.04.197.4.4 0 0 1-.082.152.18.18 0 0 1-.14.061.18.18 0 0 1-.142-.06.4.4 0 0 1-.085-.153 1 1 0 0 1-.04-.197 2 2 0 0 1-.011-.195q0-.086.01-.191a1 1 0 0 1 .04-.196.5.5 0 0 1 .086-.151.18.18 0 0 1 .142-.062m-1.684 1.814a.7.7 0 0 0-.336.079.66.66 0 0 0-.227.21.9.9 0 0 0-.127.31 1.7 1.7 0 0 0 0 .748 1 1 0 0 0 .127.314q.088.135.227.215.14.08.336.08a.66.66 0 0 0 .334-.08.65.65 0 0 0 .224-.215q.087-.135.126-.314a1.7 1.7 0 0 0-.001-.747.9.9 0 0 0-.125-.31.65.65 0 0 0-.224-.211.67.67 0 0 0-.334-.079m3.063 0a.7.7 0 0 0-.336.079.7.7 0 0 0-.227.21.9.9 0 0 0-.127.31 1.7 1.7 0 0 0 0 .748.9.9 0 0 0 .127.314.66.66 0 0 0 .227.215q.138.08.336.08a.65.65 0 0 0 .334-.08.65.65 0 0 0 .223-.215q.087-.135.126-.314a1.7 1.7 0 0 0 0-.747.9.9 0 0 0-.126-.31.65.65 0 0 0-.223-.211.67.67 0 0 0-.334-.079m-1.545.05-.611.448.228.312.346-.267v1.363h.438v-1.856zm-1.518.323q.086 0 .14.061a.4.4 0 0 1 .082.152 1 1 0 0 1 .04.195 2 2 0 0 1 0 .387 1 1 0 0 1-.04.197.4.4 0 0 1-.082.152.18.18 0 0 1-.14.06.18.18 0 0 1-.142-.06.4.4 0 0 1-.085-.152 1 1 0 0 1-.04-.197 2 2 0 0 1-.011-.195q0-.087.01-.192a1 1 0 0 1 .041-.195q.03-.09.085-.152a.18.18 0 0 1 .142-.061m3.063 0q.086 0 .14.061a.4.4 0 0 1 .082.152 1 1 0 0 1 .04.195 2 2 0 0 1 0 .387 1 1 0 0 1-.04.197.4.4 0 0 1-.083.152.18.18 0 0 1-.14.06.18.18 0 0 1-.141-.06.4.4 0 0 1-.085-.152 1 1 0 0 1-.04-.197 2 2 0 0 1 0-.387 1 1 0 0 1 .04-.195q.03-.09.085-.152a.18.18 0 0 1 .142-.061m-9.713.185a.47.47 0 0 0-.232.055.46.46 0 0 0-.157.146.6.6 0 0 0-.089.215 1.2 1.2 0 0 0-.027.259q0 .135.027.26a.7.7 0 0 0 .089.216q.06.094.157.149a.46.46 0 0 0 .232.056q.136-.001.231-.056a.45.45 0 0 0 .156-.149.7.7 0 0 0 .087-.217 1.2 1.2 0 0 0 0-.518.7.7 0 0 0-.087-.215.45.45 0 0 0-.156-.146.46.46 0 0 0-.23-.055zm1.052.035-.423.31.158.217.24-.185v.944h.303v-1.286zm-1.052.224q.06 0 .097.042a.3.3 0 0 1 .057.105.7.7 0 0 1 .028.136q.006.073.007.133 0 .06-.007.135a.7.7 0 0 1-.028.136.3.3 0 0 1-.057.105.12.12 0 0 1-.097.043.13.13 0 0 1-.098-.043.3.3 0 0 1-.059-.105.6.6 0 0 1-.028-.136 1.4 1.4 0 0 1 0-.268.6.6 0 0 1 .028-.136.3.3 0 0 1 .06-.105.13.13 0 0 1 .097-.042m3.775 1.394a.46.46 0 0 0-.232.054.45.45 0 0 0-.157.146.6.6 0 0 0-.088.214 1.2 1.2 0 0 0 0 .519.6.6 0 0 0 .088.217.46.46 0 0 0 .157.15.46.46 0 0 0 .232.054.45.45 0 0 0 .232-.055.45.45 0 0 0 .155-.149.7.7 0 0 0 .087-.217 1.2 1.2 0 0 0 0-.519.6.6 0 0 0-.087-.214.45.45 0 0 0-.155-.146.46.46 0 0 0-.232-.054m1.052.034-.423.31.158.216.24-.185v.945h.303V22.68zm-1.052.223q.06 0 .098.043a.3.3 0 0 1 .057.105.6.6 0 0 1 .027.135 1.3 1.3 0 0 1 0 .268.7.7 0 0 1-.027.137.3.3 0 0 1-.057.105.12.12 0 0 1-.098.042.13.13 0 0 1-.098-.042.3.3 0 0 1-.059-.105.6.6 0 0 1-.028-.137 1.4 1.4 0 0 1 0-.268.6.6 0 0 1 .028-.135.3.3 0 0 1 .06-.105.12.12 0 0 1 .097-.043"/></svg>���������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tryitonline.svg������������������������������0000664�0000000�0000000�00000000576�14753064456�0026213�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.75 6a.75.75 0 1 0 0 1.5H4.5v9.75a.75.75 0 1 0 1.5 0V7.5h17.25a.75.75 0 1 0 0-1.5zm10.5 3a.75.75 0 0 0-.75.75v7.5a.75.75 0 1 0 1.5 0v-7.5a.75.75 0 0 0-.75-.75m8.25 0a4.51 4.51 0 0 0-4.5 4.5c0 2.48 2.02 4.5 4.5 4.5s4.5-2.02 4.5-4.5S21.98 9 19.5 9m0 1.5c1.67 0 3 1.33 3 3s-1.33 3-3 3-3-1.33-3-3 1.33-3 3-3"/></svg>����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tsnode.svg�����������������������������������0000664�0000000�0000000�00000001344�14753064456�0025121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.999 0c-.196 0-.392.05-.568.153L2.026 5.58a1.14 1.14 0 0 0-.568.983V17.43c0 .406.216.781.568.984l5.787 3.344v-7.344H4.748v-1.943h8.342v1.943h-3.065v8.622l1.406.812c.351.203.784.203 1.136 0l2.317-1.338a3.96 3.96 0 0 1-1.195-1.413l1.801-1.042c.361.59.806 1.06 1.48 1.25l2.174-1.256c-.127-.568-.698-.823-1.584-1.21l-.553-.238c-1.596-.68-2.655-1.532-2.655-3.334 0-1.658 1.265-2.922 3.24-2.922 1.406 0 2.417.49 3.144 1.77l-1.723 1.105c-.379-.68-.79-.948-1.421-.948-.648 0-1.06.41-1.06.948 0 .663.412.932 1.36 1.343l.553.237c1.336.573 2.255 1.155 2.676 2.107l.853-.493c.352-.203.568-.578.568-.984V6.565c0-.406-.216-.782-.568-.984L12.567.153A1.13 1.13 0 0 0 11.999 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tubi.svg�������������������������������������0000664�0000000�0000000�00000001471�14753064456�0024571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.696 15.272v-.752c.4.548 1.107.917 1.934.917 1.475 0 2.28-.956 2.28-2.865 0-1.714-.893-2.858-2.235-2.858-.851 0-1.55.347-1.979.908v-2.06h-2.674v6.71zm1.57-2.614c0 .827-.337 1.275-.827 1.275-.486 0-.837-.452-.837-1.275s.342-1.28.837-1.28.828.452.828 1.28zM6.94 9.988v3.6c0 1.236.754 1.841 1.955 1.841.959 0 1.625-.396 2.028-1.064v.91h2.597V9.989h-2.675v3.14c0 .493-.346.693-.666.693s-.568-.192-.568-.655V9.989Zm14.39 0H24v5.276h-2.67ZM6.553 11.136c0 .781-.635 1.415-1.42 1.415a1.42 1.42 0 0 1-1.419-1.415c0-.782.636-1.415 1.42-1.415s1.42.633 1.42 1.415zM3.49 9.702v2.668c.005.653.327.924.976.924.225 0 .526-.053.672-.166v1.931c-.49.243-.869.378-1.535.378 0 0-.069 0-.18-.006l-.003.006c-1.614 0-2.51-1.035-2.482-2.686v-.47H0V9.99h.92V8.563h2.569Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tui.svg��������������������������������������0000664�0000000�0000000�00000000753�14753064456�0024431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 4.517a2.117 2.117 0 0 1-2.117 2.117 2.117 2.117 0 0 1-2.117-2.117A2.117 2.117 0 0 1 21.883 2.4 2.117 2.117 0 0 1 24 4.517M1.14 7.747h5.705c.564 0 .98.178 1.147.972.185.884.113 1.499-.886 1.569l-1.791.132c1.318 8.33 9.028 11.045 13.222 2.073.695-1.485.922-1.755 1.683-1.567 1.031.256 1.172.79.677 2.283-3.624 11.057-15.819 12.166-18.211-2.604l-1.455.105C.046 10.794 0 9.796 0 9.24c0-1.099.407-1.493 1.14-1.493z"/></svg>���������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tumblr.svg�����������������������������������0000664�0000000�0000000�00000000540�14753064456�0025127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.563 24c-5.093 0-7.031-3.756-7.031-6.411V9.747H5.116V6.648c3.63-1.313 4.512-4.596 4.71-6.469C9.84.051 9.941 0 9.999 0h3.517v6.114h4.801v3.633h-4.82v7.47c.016 1.001.375 2.371 2.207 2.371h.09c.631-.02 1.486-.205 1.936-.419l1.156 3.425c-.436.636-2.4 1.374-4.156 1.404h-.178z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tunein.svg�����������������������������������0000664�0000000�0000000�00000002220�14753064456�0025121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.66 11.398v.742c0 .105-.11.105-.11.105h-.847s-.11 0-.11.11v4.03c0 .11-.105.11-.105.11h-.855c-.106 0-.106-.11-.106-.11v-4.03s0-.11-.109-.11h-.844c-.105 0-.105-.105-.105-.105v-.742c0-.106.105-.106.105-.106H7.66zm15.458-7.52H12.301c-.68 0-.836.16-.836.816v2.414c0 .493 0 .493-.492.493H.813C.137 7.6 0 7.737 0 8.425v5.41c0 1.754 0 3.508.023 5.266 0 .922.102 1.02 1.04 1.02H9.89c.664 0 1.32.01 1.984-.01.48-.006.669-.202.669-.682v-2.56c0-.468 0-.468.469-.468h10.195c.633 0 .793-.152.793-.78V4.736c0-.7-.164-.86-.883-.86zm-11.64 14.625c0 .5-.013.5-.525.5-3.148 0-6.293 0-9.445.008-.32 0-.43-.078-.43-.418.016-3.16.008-6.324 0-9.48-.008-.34.086-.446.442-.446 3.187.012 6.363.008 9.55.008.117 0 .23.015.4.023 0 .18 0 .32.01.442-.003 3.113-.003 6.242-.003 9.363zm7.69-5.844c0 .102-.104.102-.104.102h-2.57c-.106 0-.106-.102-.106-.102v-.72c0-.1.105-.1.105-.1h.617s.102 0 .102-.102V8.659s0-.101-.102-.101h-.515c-.102 0-.102-.102-.102-.102v-.82c0-.106.102-.106.102-.106h2.367c.102 0 .102.106.102.106v.715c0 .105-.102.105-.102.105h-.516s-.101 0-.101.102v3.074s0 .105.1.105h.618c.106 0 .106.102.106.102z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/turbo.svg������������������������������������0000664�0000000�0000000�00000003226�14753064456�0024761�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.267 0H.737A.737.737 0 0 0 0 .737v3.09h12a8.177 8.177 0 0 1 6.803 12.705h5.177V.737A.733.733 0 0 0 23.267 0M3.827 12a8.15 8.15 0 0 1 1.37-4.532H0v15.8A.733.733 0 0 0 .737 24h22.53a.733.733 0 0 0 .733-.733v-3.094H12A8.173 8.173 0 0 1 3.827 12m14.115-.207a9.2 9.2 0 0 1-2.282.554 4 4 0 0 0-.024-.92A9.7 9.7 0 0 0 17.6 9.112a.882.882 0 0 0-1.49-.944 8.8 8.8 0 0 1-1.215 1.549 3.6 3.6 0 0 0-.756-.721 7.3 7.3 0 0 0-.124-1.545 12.4 12.4 0 0 0-.561-2.012.88.88 0 0 0-1.131-.525.84.84 0 0 0-.323.203.89.89 0 0 0-.207.928c.08.21.147.398.207.61q.131.424.22.796a8 8 0 0 1 .127.912 3.4 3.4 0 0 0-.917.024A9.8 9.8 0 0 0 9.113 6.42a.884.884 0 0 0-.944 1.494 8.8 8.8 0 0 1 1.553 1.195 3.7 3.7 0 0 0-.725.756 9.5 9.5 0 0 0-3.557.69.882.882 0 0 0 .606 1.656 9.3 9.3 0 0 1 2.318-.57c0 .12-.02.24-.02.359a4 4 0 0 0 .044.558 9.7 9.7 0 0 0-1.968 2.314.88.88 0 0 0 .745 1.354.88.88 0 0 0 .749-.399 8.6 8.6 0 0 1 1.195-1.549 4 4 0 0 0 .756.725 7 7 0 0 0 .128 1.541 12 12 0 0 0 .561 2.012.88.88 0 0 0 .825.561.9.9 0 0 0 .302-.052.9.9 0 0 0 .319-.207.88.88 0 0 0 .207-.924c-.076-.215-.147-.398-.207-.613q-.132-.422-.215-.797a7 7 0 0 1-.143-.872H12a4 4 0 0 0 .562-.04 9.7 9.7 0 0 0 2.31 1.964.882.882 0 1 0 .943-1.49 9 9 0 0 1-1.549-1.214 3.7 3.7 0 0 0 .725-.757h.203a10 10 0 0 0 3.35-.69.884.884 0 0 0-.602-1.66zM13.96 12v.16a1.95 1.95 0 0 1-.693 1.35 2 2 0 0 1-.243.175 2 2 0 0 1-1.032.29h-.16a1.95 1.95 0 0 1-1.345-.689 2 2 0 0 1-.18-.247 2 2 0 0 1-.29-1.031v-.16a2 2 0 0 1 .047-.298 2 2 0 0 1 .642-1.048 3 3 0 0 1 .247-.179 2 2 0 0 1 1.031-.29h.16a2 2 0 0 1 .302.047 2 2 0 0 1 1.048.646 2 2 0 0 1 .175.242A2 2 0 0 1 13.975 12z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/turborepo.svg��������������������������������0000664�0000000�0000000�00000002374�14753064456�0025652�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.155 12.058q0 .755.285 1.392t.771 1.106 1.123.738q.655.252 1.375.252.721 0 1.359-.252a3.6 3.6 0 0 0 1.14-.738 3.37 3.37 0 0 0 1.073-2.498 3.37 3.37 0 0 0-1.073-2.498 3.4 3.4 0 0 0-1.14-.721 3.5 3.5 0 0 0-1.359-.269q-.72 0-1.374.269-.638.251-1.124.72a3.5 3.5 0 0 0-.771 1.107 3.4 3.4 0 0 0-.285 1.392m-3.437 0q0-1.408.52-2.616a6.5 6.5 0 0 1 1.441-2.13 6.5 6.5 0 0 1 2.197-1.408q1.29-.52 2.833-.52 1.527 0 2.817.52a6.5 6.5 0 0 1 2.213 1.409 6.54 6.54 0 0 1 1.979 4.745q0 1.408-.52 2.632a6.45 6.45 0 0 1-1.459 2.113 6.7 6.7 0 0 1-2.213 1.425q-1.29.503-2.817.503-1.543 0-2.833-.503a6.7 6.7 0 0 1-2.197-1.425 6.6 6.6 0 0 1-1.442-2.113 6.7 6.7 0 0 1-.52-2.632ZM10.144.008a11.86 11.86 0 0 0-7.805 2.569l1.523.857C5.67 2.1 7.955 1.53 10.144 1.625V.007Zm8.09 3.616C16.331 1.625 13.856.388 11.191.102V1.72a10.73 10.73 0 0 1 5.901 3.046zm3.427 7.805c-.095-2.475-1.047-4.95-2.665-7.043l-1.142 1.142c1.332 1.808 2.094 3.807 2.189 5.9h1.618Zm-2.665 8.185c1.618-2.094 2.57-4.568 2.665-7.043h-1.618c-.095 2.094-.857 4.093-2.19 5.901zm-7.805 4.284c2.57-.286 5.14-1.523 7.043-3.522l-1.142-1.142c-1.618 1.713-3.712 2.76-5.901 3.046zm-8.852-2.475a11.87 11.87 0 0 0 7.805 2.57v-1.618c-2.19.095-4.378-.476-6.282-1.809z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/turbosquid.svg�������������������������������0000664�0000000�0000000�00000003133�14753064456�0026024�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.909.01C9.832.153 7.89 1.617 7.89 1.617s4.235-1.383 5.42.752c.861 1.552-.133 3.989-1.67 6.6-1.418-1.212-5.21-4.035-8.73-3.038C-1.528 7.187.43 13.176.43 13.176S.45 8.632 2.803 8.14c1.71-.358 3.673 1.364 5.63 3.664-1.567 1.005-5.368 3.815-5.526 7.545C2.705 24.048 8.883 24 8.883 24s-4.224-1.424-3.955-3.863c.196-1.773 2.403-3.148 5.149-4.338.451 1.833 1.894 6.393 5.316 7.701 4.313 1.648 6.176-4.37 6.176-4.37s-2.627 3.662-4.816 2.647c-1.59-.737-2.189-3.308-2.448-6.343 1.845.127 6.536.137 8.811-2.785 2.867-3.681-2.158-7.353-2.158-7.353s2.597 3.687.976 5.5c-1.178 1.317-3.755 1.103-6.66.417.689-1.753 2.146-6.31.129-9.423C14.45.32 13.155-.074 11.909.01m-1.266 2.487c-.547 0-1.097.072-1.557.162.78.292 1.413.754 1.862 1.361a3.6 3.6 0 0 1 .646 1.524 10 10 0 0 0 .524-1.475 1.25 1.25 0 0 0-.186-1.039 1.23 1.23 0 0 0-.93-.523 5 5 0 0 0-.359-.01m9.713 4.283c-.032.849-.263 1.606-.691 2.228a3.5 3.5 0 0 1-1.219 1.098 10 10 0 0 0 1.115.065q.214 0 .418-.01a1.2 1.2 0 0 0 .912-.502 1.28 1.28 0 0 0 .198-1.065c-.164-.657-.459-1.302-.733-1.814M3.362 9.626a1.23 1.23 0 0 0-1.143.802c-.245.629-.378 1.33-.451 1.91.785-1.018 1.825-1.582 2.967-1.582a3.4 3.4 0 0 1 .494.036 9.6 9.6 0 0 0-1.211-.965 1.2 1.2 0 0 0-.656-.201m12.953 8.546c.12.576.26 1.076.424 1.512a1.21 1.21 0 0 0 1.135.795 1.25 1.25 0 0 0 .666-.202c.559-.362 1.07-.848 1.463-1.273a4.4 4.4 0 0 1-1.211.178 3.47 3.47 0 0 1-2.477-1.01m-8.168.428a10 10 0 0 0-1.272.877 1.24 1.24 0 0 0-.449.95 1.27 1.27 0 0 0 .451.981c.51.431 1.122.78 1.64 1.03-.465-.707-.711-1.46-.724-2.221a3.6 3.6 0 0 1 .354-1.617"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/turkishairlines.svg��������������������������0000664�0000000�0000000�00000000773�14753064456�0027052�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.168 13.988a11.9 11.9 0 0 0 1.69 4.423c3.095-.863 5.817-2.495 6.785-6.132 1.065-4.003-.15-8.199-3.057-10.422C1.626 4.364-.657 9.077.168 13.988m23.664-3.975c1.098 6.534-3.308 12.722-9.844 13.819-1.1.185-2.19.214-3.245.103a12.02 12.02 0 0 1-8.46-4.892l19.428-5.57c.279-.08.207-.349-.024-.333l-8.145.569c1.148-1.108 2.021-2.467 1.915-4.345-.214-3.043-3.311-6.013-9.071-7.967a12 12 0 0 1 6.87-1.333c5.228.548 9.663 4.512 10.576 9.95"/></svg>�����mkdocs-material-9.6.4/material/templates/.icons/simple/turso.svg������������������������������������0000664�0000000�0000000�00000001562�14753064456�0025003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.31.803-.563-.42-1.11 1.189-.891-1.286-.512.235.704 1.798-.326.35L18.082 0l-.574.284 2.25 4.836-2.108.741h-.05l-1.143-1.359-1.144 1.36H8.687l-1.144-1.36-1.146 1.363H6.36L4.24 5.12 6.491.284 5.919 0l-2.53 2.668-.327-.349.705-1.798-.512-.236-.89 1.287L1.253.382.69.804 2.42 3.69l-.89.939.311 2.375 2.061.787L3.9 8.817H1.947v.444l.755 1.078 1.197.433v6.971l3.057 4.55L7.657 24l1.101-1.606L9.9 24l.999-1.606L12 24l1.102-1.606L14.1 24l1.141-1.606L16.343 24l.701-1.706 3.058-4.55v-6.972l1.196-.433.756-1.078v-.444h-1.952l.003-1.03 2.054-.784.311-2.375-.89-.939zm-8.93 18.718H8.033l.793-1.615.794 1.615.793-1.083.793 1.083.794-1.083.793 1.083.794-1.083zl.793-1.615.794 1.615zm3.886-7.39-3.3 1.084-.143 3.061-2.827.627-2.826-.627-.142-3.06-3.3-1.085v-1.635l4.266 1.21-.052 4.126h4.109l-.052-4.127 4.266-1.209z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tuta.svg�������������������������������������0000664�0000000�0000000�00000001163�14753064456�0024601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.993 7.033-5.16 16.755-.043.12a.14.14 0 0 1-.11.091H1.425a.14.14 0 0 1-.13-.191L6.441 6.98a1 1 0 0 1 .024-.076.13.13 0 0 1 .124-.091H23.82c.14 0 .202.086.173.22M23.94 4.25 19.885.146c-.178-.173-.192-.144-.384-.144H2.007a.14.14 0 0 0-.14.14c0 .004-.004.061.044.114l.004.005L6 4.393c.096.096.192.12.336.12h17.533c.12 0 .182-.153.072-.263zM4.127 5.805.25 1.95c-.048-.043-.105-.038-.11-.038a.14.14 0 0 0-.14.14v16.975c0 .077.063.14.14.14a.14.14 0 0 0 .13-.092c.004-.005.004-.014.009-.024 0-.004.01-.038.01-.043l3.91-12.844c.048-.144.048-.24-.072-.36z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/tv4play.svg����������������������������������0000664�0000000�0000000�00000000774�14753064456�0025236�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.374 15.93V3.718c0-.209-.279-.307-.402-.12L.037 18.289a.2.2 0 0 0-.006.223c.036.072.108.12.192.12h7.331v1.656c0 .113.102.215.222.215h2.376c.12 0 .222-.102.222-.215v-1.656h1.435c.12 0 .222-.096.222-.222v-2.257a.22.22 0 0 0-.224-.222zm-2.826.008H4.795l2.753-4.073zm16.313-3.744L16.704 8.06c-.078-.049-.169.035-.132.12a10.5 10.5 0 0 1 .894 4.26 10.5 10.5 0 0 1-.888 4.248c-.036.083.053.161.131.12l7.152-4.127a.283.283 0 0 0 0-.487"/></svg>����mkdocs-material-9.6.4/material/templates/.icons/simple/tvtime.svg�����������������������������������0000664�0000000�0000000�00000000202�14753064456�0025125�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm4.8 4.8h14.4v4.8h-4.8v9.6H9.6V9.6H4.8Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/twilio.svg�����������������������������������0000664�0000000�0000000�00000001455�14753064456�0025137�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.381-.008.008 5.352 0 11.971V12c0 6.64 5.359 12 12 12 6.64 0 12-5.36 12-12 0-6.641-5.36-12-12-12m0 20.801c-4.846.015-8.786-3.904-8.801-8.75V12a8.777 8.777 0 0 1 8.75-8.801H12a8.776 8.776 0 0 1 8.801 8.75V12c.015 4.847-3.904 8.786-8.75 8.801zm5.44-11.76a2.49 2.49 0 0 1-2.481 2.479 2.49 2.49 0 0 1-2.479-2.479 2.49 2.49 0 0 1 2.479-2.481 2.493 2.493 0 0 1 2.481 2.481m0 5.919c0 1.36-1.12 2.48-2.481 2.48a2.49 2.49 0 0 1-2.479-2.48 2.49 2.49 0 0 1 2.479-2.479 2.49 2.49 0 0 1 2.481 2.479m-5.919 0c0 1.36-1.12 2.48-2.479 2.48a2.49 2.49 0 0 1-2.481-2.48 2.49 2.49 0 0 1 2.481-2.479 2.49 2.49 0 0 1 2.479 2.479m0-5.919a2.49 2.49 0 0 1-2.479 2.479 2.49 2.49 0 0 1-2.481-2.479A2.493 2.493 0 0 1 9.042 6.56a2.493 2.493 0 0 1 2.479 2.481"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/twinkly.svg����������������������������������0000664�0000000�0000000�00000003375�14753064456�0025334�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.041 0H4.031C1.832 0 0 1.797 0 3.994v16.012C0 22.202 1.833 24 4.03 24h16.011C22.238 24 24 22.202 24 20.006V3.994C24 1.797 22.238 0 20.041 0m.41 10.376a3.2 3.2 0 0 1-.341.864c-.277.487-.591.861-.919 1.221a56 56 0 0 1-1.276 1.3.12.12 0 0 0-.028.13c.135.336.613 1.394.627 2.8.012 1.28-.157 2.164-.194 2.332-.147.688-.854 1.061-1.515.974-.041-.005-1.035-.096-3.094-1.287-.71-.41-1.402-1.107-1.402-1.107l-.017.013c-1.59 1.65-3.82 2.734-3.82 2.734a1.727 1.727 0 0 1-2.315-.778c-.083-.167-.493-1.535-.22-3.841.065-.543.419-1.818.45-1.913-.121-.107-1.215-1.245-1.593-1.732-1.35-1.736-1.296-2.47-1.296-2.47.063-.946.92-1.369 1.094-1.463a5.725 5.725 0 0 1 3-.588A5.9 5.9 0 0 1 9.475 8c.585.24 1.121.555 1.59.935.471.369.877.799 1.237 1.25a.18.18 0 0 1 .001.226.175.175 0 0 1-.22.04l-.002-.001c-.979-.546-1.992-.946-2.985-1.048-.496-.045-.978-.044-1.44.043-.357.065-.693.18-1.01.318a.057.057 0 0 0-.019.09c.213.232.907.988 2.486 1.952.796.485 1.24 1.007.98 1.8 0 0-.73 2.074-.568 2.123.16.048 2.087-1.505 2.087-1.505.667-.452 1.457-.329 2.034.374 1.09 1.325 2.265 2.284 2.366 2.219.101-.066-.135-1.687-.556-3.117-.146-.496.066-.86.4-1.108.31-.228 2.087-1.62 2.604-2.347.238-.334.206-.464-.189-.6-1.644-.565-3.38.028-3.38.028a.634.634 0 0 1-.82-.366.6.6 0 0 1-.04-.198 8 8 0 0 0-.536-2.552c-.266-.672-.633-1.301-1.117-1.823a.062.062 0 0 0-.092.002c-.323.375-.623.769-.863 1.21-.465.854-.57 1.52-.674 1.856-.013.044-.057.068-.106.08-.092.025-.177-.054-.17-.149.138-1.756 1.275-3.323 1.715-3.871.126-.155.144-.197.304-.082l.037.021c.827.601 1.455 1.43 1.91 2.32a9 9 0 0 1 .72 1.946.07.07 0 0 0 .087.049c.656-.2 1.342-.28 2.006-.27.49.01.925.046 1.439.147.276.06.546.146.843.31.288.164.62.438.81.86.195.42.184.877.108 1.214"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/twinmotion.svg�������������������������������0000664�0000000�0000000�00000000423�14753064456�0026031�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .118c-4.92 0-9.15 2.961-11 7.2h15.799v.004l-2.364 16.547C19.895 22.744 24 17.91 24 12.118h-6.261l.688-4.8H23C21.148 3.077 16.92.117 12 .117m-12 12c0 5.816 4.14 10.666 9.633 11.765l1.681-11.765Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/twitch.svg�����������������������������������0000664�0000000�0000000�00000000403�14753064456�0025122�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.571 4.714h1.715v5.143H11.57zm4.715 0H18v5.143h-1.714zM6 0 1.714 4.286v15.428h5.143V24l4.286-4.286h3.428L22.286 12V0zm14.571 11.143-3.428 3.428h-3.429l-3 3v-3H6.857V1.714h13.714Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/typeform.svg���������������������������������0000664�0000000�0000000�00000003252�14753064456�0025472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.502 13.035c-.5 0-.756-.411-.756-.917 0-.505.252-.894.756-.894.513 0 .756.407.756.894-.004.515-.261.917-.756.917m-4.888-1.81c.292 0 .414.17.414.317 0 .357-.365.514-1.126.536 0-.442.253-.854.712-.854Zm-3.241 1.81c-.473 0-.67-.384-.67-.917 0-.527.202-.894.67-.894.477 0 .702.38.702.894 0 .537-.234.917-.702.917m-3.997-2.334h-.738l1.224 2.808c-.234.519-.36.648-.522.648-.171 0-.333-.138-.45-.259l-.324.43c.22.232.522.366.832.366.387 0 .685-.224.856-.626l1.413-3.371h-.725l-.738 2.012zm19.553.523c.36 0 .432.246.432.823v1.516H24v-1.914c0-.689-.473-.988-.91-.988-.386 0-.742.241-.94.688a.9.9 0 0 0-.891-.688c-.365 0-.73.232-.927.666v-.626h-.64v2.857h.64v-1.22c0-.617.324-1.114.765-1.114.36 0 .427.246.427.823v1.516h.64l-.005-1.225c0-.617.329-1.114.77-1.114m-5.1-.523h-.324v2.857h.639v-1.095c0-.693.306-1.163.76-1.163.118 0 .217.005.325.05l.099-.676c-.081-.009-.153-.018-.225-.018-.45 0-.774.309-.964.707V10.7h-.31Zm-2.327-.045c-.846 0-1.418.644-1.418 1.458 0 .845.58 1.475 1.418 1.475.85 0 1.431-.648 1.431-1.475-.004-.818-.594-1.458-1.431-1.458m-4.852 2.38c-.333 0-.581-.17-.685-.515.847-.036 1.675-.242 1.675-.988 0-.43-.423-.872-1.03-.872-.82 0-1.374.666-1.374 1.457 0 .828.545 1.476 1.36 1.476.567 0 .927-.228 1.21-.559l-.31-.42c-.329.335-.531.42-.846.42Zm-3.151-2.38c-.324 0-.648.188-.774.483v-.438h-.64v3.98h.64v-1.422c.135.205.445.34.72.34.85 0 1.3-.631 1.3-1.48-.004-.841-.445-1.463-1.246-1.463m-4.483-1.1H0v.622h1.18v3.38h.67v-3.38h1.166zm9.502 1.145h-.383v.572h.383v2.285h.639v-2.285h.621v-.572h-.621v-.447c0-.286.117-.385.382-.385.1 0 .19.027.311.068l.144-.537c-.117-.067-.351-.094-.504-.094-.612 0-.972.367-.972 1.002z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/typeorm.svg����������������������������������0000664�0000000�0000000�00000013523�14753064456�0025326�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.593 6.863c0 .9-.008 1.742.004 2.583.006.355.07.708.21 1.038.133.306.35.544.652.692.153.075.314.131.47.204a.134.13 0 0 1 .066.099q.008.58 0 1.16c0 .039-.052.097-.093.11a1.818 1.82 0 0 0-1.178 1.22c-.125.387-.137.785-.137 1.187q.002 2.24-.006 4.48c0 .466-.07.926-.225 1.363-.087.241-.226.463-.347.69-.016.031-.05.052-.08.073-.185.137-.365.287-.56.407-.169.103-.354.177-.535.255-.114.048-.236.082-.352.121q-.025.01-.05.014c-.23.028-.46.062-.689.083q-.418.033-.834.052c-.061.003-.123-.02-.183-.026-.104-.01-.13-.07-.128-.168a31.962 32 0 0 0 0-1.017c0-.104.027-.15.139-.141.117.007.24.012.354-.004q.332-.047.655-.125a2.996 3 0 0 0 .44-.153.94.94 0 0 0 .456-.409c.125-.208.185-.437.236-.676.057-.263.036-.52.04-.78.007-1.485 0-2.97.008-4.456q.003-.47.078-.935a2.148 2.15 0 0 1 1.09-1.585l.25-.143c.061-.037.054-.107-.016-.144a2.797 2.8 0 0 1-.815-.646 2.097 2.1 0 0 1-.39-.711c-.18-.551-.205-1.12-.202-1.694.002-1.446-.01-2.892 0-4.337a2.996 3 0 0 0-.072-.666c-.08-.37-.24-.712-.59-.909a2.298 2.3 0 0 0-.467-.177 2.996 3 0 0 0-.503-.11 3.995 4 0 0 0-.54-.025c-.113.001-.153-.03-.15-.147.006-.364.003-.728.001-1.092 0-.089.03-.122.117-.119.196.005.39-.007.584.004.272.016.545.035.815.073a3.096 3.1 0 0 1 1.598.714c.252.215.408.479.534.772.15.346.226.71.275 1.082.13.99.03 1.986.072 2.918ZM1.421 6.715c0-.581-.006-1.163.002-1.745.006-.382.009-.77.049-1.149.027-.263.11-.52.18-.778a1.798 1.8 0 0 1 .366-.723 2.466 2.4 0 0 1 .508-.449c.194-.127.416-.208.629-.305.17-.076.348-.108.53-.141A8.29 8.3 0 0 1 5.258 1.3c.09 0 .122.027.12.117q-.004.558 0 1.118c0 .091-.028.126-.123.122a1.598 1.6 0 0 0-.321.003 7.99 8 0 0 0-.704.127c-.15.035-.291.094-.434.148a.94.94 0 0 0-.46.406c-.123.208-.183.44-.238.68-.067.3.008.588.002.882-.02 1.329-.006 2.658-.01 3.99a9.988 10 0 0 1-.051 1.098c-.08.724-.385 1.328-1.024 1.727q-.173.103-.345.209c-.023.014-.051.049-.047.068a.14.14 0 0 0 .058.084 2.897 2.9 0 0 1 .843.678c.19.23.311.494.4.78.15.496.159 1.006.164 1.516.008 1.298.002 2.597.003 3.896 0 .144.015.288.013.431 0 .072-.025.143-.027.215q-.004.126.005.253c.003.052.02.104.029.156.043.301.137.583.336.817.131.153.303.252.494.321.201.072.41.1.616.149.246.058.485.044.73.054.065.003.09.03.09.093 0 .392.002.784-.005 1.176 0 .029-.053.081-.082.081-.252.005-.503.01-.754-.002a4.994 5 0 0 1-.678-.069c-.234-.044-.46-.122-.69-.186a2.148 2.15 0 0 1-.955-.572 1.898 1.9 0 0 1-.376-.54 4.195 4.2 0 0 1-.292-.87 4.994 5 0 0 1-.103-.964c-.015-1.423-.013-2.846-.023-4.268-.002-.322-.004-.645-.039-.964-.04-.36-.12-.712-.342-1.013a1.498 1.5 0 0 0-.624-.487c-.11-.048-.226-.083-.334-.137-.037-.02-.077-.075-.077-.115q-.006-.56-.003-1.118c0-.1.088-.118.155-.141.372-.13.676-.348.891-.684a2.048 2.05 0 0 0 .344-1.087c.022-.92.03-1.841.044-2.76h-.016Zm6.035.98v-3.11c0-.295.175-.472.472-.472h5.152c.296 0 .473.177.473.472v6.2c0 .32-.17.49-.488.49-1.708 0-3.412-.002-5.12.004-.287 0-.494-.197-.49-.493.006-1.03.002-2.06.002-3.091m.245.002v3.091c0 .208.035.242.24.242h5.119c.214 0 .246-.03.246-.244V4.603c0-.213-.033-.245-.244-.245H7.945c-.21 0-.242.033-.242.247zm-.245 8.39v-3.1c0-.298.173-.474.471-.474h5.152c.3 0 .473.177.473.48v6.184q0 .499-.496.499h-5.11c-.32 0-.488-.17-.488-.489zm.245.006v3.109c0 .189.039.228.227.228h5.142c.202 0 .236-.035.236-.239v-6.197c0-.197-.038-.234-.233-.234H7.941c-.205 0-.24.035-.24.243zm8.741-4.058q-.002 2.09.002 4.184c0 .11-.03.143-.14.142a96.883 97 0 0 0-1.752 0c-.104 0-.12-.04-.12-.13 0-.093.03-.12.12-.12.5.004 1 0 1.499.004.108 0 .148-.031.148-.145q-.003-3.934 0-7.868c0-.112-.036-.147-.147-.146-.5.005-.999 0-1.498.004-.1 0-.123-.034-.123-.128 0-.09.024-.122.119-.121q.888.005 1.776 0c.096 0 .117.033.117.122q-.002 2.101 0 4.202m-5.9-6.336q-1.024 0-2.047-.002c-.04 0-.109-.01-.113-.028-.012-.061-.004-.127 0-.191 0-.01.031-.02.052-.023q.04-.004.082-.002h4.046c.133 0 .194.088.137.208-.01.024-.066.036-.1.036q-.846.002-1.691.001zm.273 1.413c-.585 0-1.17-.004-1.758.003-.13 0-.118-.068-.123-.153-.007-.102.055-.097.123-.097h3.526c.068 0 .13-.004.123.097-.005.086.006.154-.123.153-.59-.008-1.178-.003-1.766-.003Zm.005 1.307c.59 0 1.178.002 1.767-.002.103 0 .118.041.12.13 0 .093-.03.12-.12.12a737.113 738 0 0 0-3.536 0c-.092 0-.121-.029-.12-.121 0-.09.02-.13.121-.13q.886.005 1.768.003m-.009 1.797c-.585 0-1.173-.002-1.759.002-.093 0-.12-.03-.12-.122 0-.093.023-.128.123-.126q1.764.006 3.528 0c.098 0 .123.03.123.125.002.1-.03.124-.127.123q-.884-.003-1.768-.002M8.564 8.664H8.53c-.16 0-.202-.034-.147-.187.045-.129.185-.035.28-.055.027-.004.087.033.092.06.03.172.017.181-.19.181Zm.003-1.799h.034c.166 0 .206.031.148.19-.047.13-.187.034-.284.052-.023.006-.08-.038-.084-.064-.024-.177-.02-.177.185-.177Zm.002 3.351h-.051q-.206.001-.138-.2c.006-.02.038-.04.06-.042.06-.006.118-.002.176-.002.133 0 .19.086.135.208-.006.018-.041.03-.066.034-.038.006-.078.002-.117.002Zm1.973 3.638q1.025.001 2.047-.002c.092 0 .12.027.12.12 0 .09-.017.13-.119.128a878.942 880 0 0 0-4.093 0c-.096 0-.126-.027-.126-.124s.03-.125.125-.125q1.025.004 2.046.003m.272 1.658c-.585 0-1.171-.004-1.758.003-.134 0-.113-.076-.119-.156-.007-.097.051-.094.12-.094h3.533c.075 0 .126.005.12.103-.007.081.006.15-.12.148-.592-.006-1.184-.002-1.776-.002Zm0 1.551q-.88-.002-1.758.002c-.1 0-.12-.037-.121-.129 0-.091.029-.12.12-.12q1.768.004 3.535 0c.09 0 .121.027.12.12 0 .089-.016.13-.12.128q-.887-.004-1.775-.002Zm.009 1.309q.883.002 1.767-.002c.096 0 .12.033.12.122-.002.086-.015.127-.116.126a742.107 743 0 0 0-3.545 0c-.092 0-.116-.033-.113-.118.001-.08.005-.131.11-.13q.889.004 1.778.002m-2.257-3.108h.025c.177 0 .2.013.157.185-.033.13-.161.042-.246.06-.043.008-.117.033-.127-.06-.02-.179-.016-.184.192-.184Zm-.003 1.554h.046c.14 0 .19.07.141.204-.006.019-.039.036-.062.038-.062.005-.124-.003-.187.003-.1.012-.132-.026-.133-.13-.003-.187.133-.087.195-.115m.002 1.798h-.051c-.135 0-.184-.067-.136-.202.006-.018.038-.038.062-.04.054-.006.11-.002.165-.002.145 0 .192.062.146.2-.006.02-.038.038-.06.042-.042.005-.085.001-.125.001Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/typer.svg������������������������������������0000664�0000000�0000000�00000000520�14753064456�0024763�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.818 3.646H2.182C.982 3.646 0 4.483 0 5.505v3.707h2.182V5.486h19.636v13.036H2.182v-3.735H0v3.726c0 1.022.982 1.84 2.182 1.84h19.636c1.2 0 2.182-.818 2.182-1.84V5.505c0-1.032-.982-1.859-2.182-1.859m-10.909 12.07L15.273 12l-4.364-3.717v2.787H0v1.859h10.909z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/typescript.svg�������������������������������0000664�0000000�0000000�00000002003�14753064456�0026024�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.125 0C.502 0 0 .502 0 1.125v21.75C0 23.498.502 24 1.125 24h21.75c.623 0 1.125-.502 1.125-1.125V1.125C24 .502 23.498 0 22.875 0zm17.363 9.75q.918 0 1.627.111a6.4 6.4 0 0 1 1.306.34v2.458a4 4 0 0 0-.643-.361 5 5 0 0 0-.717-.26 5.5 5.5 0 0 0-1.426-.2q-.45 0-.819.086a2.1 2.1 0 0 0-.623.242q-.254.156-.393.374a.9.9 0 0 0-.14.49q0 .294.156.529.156.234.443.444c.287.21.423.276.696.41q.41.203.926.416.705.296 1.266.628.561.333.963.753.402.418.614.957.213.538.214 1.253 0 .986-.373 1.656a3.03 3.03 0 0 1-1.012 1.085 4.4 4.4 0 0 1-1.487.596q-.85.18-1.79.18a10 10 0 0 1-1.84-.164 5.5 5.5 0 0 1-1.512-.493v-2.63a5.03 5.03 0 0 0 3.237 1.2q.5 0 .872-.09.373-.09.623-.25.249-.162.373-.38a1.02 1.02 0 0 0-.074-1.089 2.1 2.1 0 0 0-.537-.5 5.6 5.6 0 0 0-.807-.444 28 28 0 0 0-1.007-.436q-1.377-.575-2.053-1.405t-.676-2.005q0-.92.369-1.582.368-.662 1.004-1.089a4.5 4.5 0 0 1 1.47-.629 7.5 7.5 0 0 1 1.77-.201m-15.113.188h9.563v2.166H9.506v9.646H6.789v-9.646H3.375z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/typo3.svg������������������������������������0000664�0000000�0000000�00000000647�14753064456�0024710�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.08 16.539a3.3 3.3 0 0 1-1.012.144c-3.048 0-7.524-10.652-7.524-14.197 0-1.305.31-1.74.745-2.114C6.56.808 2.082 2.177.651 3.917c-.31.436-.497 1.12-.497 1.99C.154 11.442 6.06 24 10.228 24c1.928 0 5.178-3.168 7.852-7.46M16.134 0c3.855 0 7.713.622 7.713 2.798 0 4.415-2.8 9.765-4.23 9.765-2.549 0-5.72-7.09-5.72-10.635C13.897.31 14.518 0 16.134 0"/></svg>�����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/typst.svg������������������������������������0000664�0000000�0000000�00000000470�14753064456�0025007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.654 17.846q0 1.67.479 2.242.48.572 1.743.572 1.308 0 3.356-1.319l.871 1.45q-3.835 3.21-6.318 3.209-2.485 0-3.922-1.187-1.438-1.23-1.438-4.307V6.989H5.246l-.349-1.626 2.528-.791V2.418L12.654 0v4.835l5.142-.395-.48 2.857-4.662-.176z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/uber.svg�������������������������������������0000664�0000000�0000000�00000001603�14753064456�0024560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 7.97v4.958c0 1.867 1.302 3.101 3 3.101.826 0 1.562-.316 2.094-.87v.736H6.27V7.97H5.082v4.888c0 1.257-.85 2.106-1.947 2.106-1.11 0-1.946-.827-1.946-2.106V7.971H0zm7.44 0v7.925h1.13v-.725c.521.532 1.257.86 2.06.86a3.006 3.006 0 0 0 3.034-3.01 3.01 3.01 0 0 0-3.033-3.024 2.86 2.86 0 0 0-2.049.861V7.971H7.439zm9.869 2.038c-1.687 0-2.965 1.37-2.965 3 0 1.72 1.334 3.01 3.066 3.01 1.053 0 1.913-.463 2.49-1.233l-.826-.611c-.43.577-.996.847-1.664.847-.973 0-1.753-.7-1.912-1.64h4.697v-.373c0-1.72-1.222-3-2.886-3m6.295.068c-.634 0-1.098.294-1.381.758v-.713h-1.131v5.774h1.142V12.61c0-.894.544-1.47 1.291-1.47H24v-1.065h-.396zm-6.319.928c.85 0 1.564.588 1.756 1.47H15.52c.203-.882.916-1.47 1.765-1.47m-6.732.012c1.086 0 1.98.883 1.98 2.004a1.993 1.993 0 0 1-1.98 2.001A1.99 1.99 0 0 1 8.56 13.02a1.99 1.99 0 0 1 1.992-2.004z"/></svg>�����������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ubereats.svg���������������������������������0000664�0000000�0000000�00000003271�14753064456�0025440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 2.865v4.997c0 1.883 1.332 3.13 3.084 3.13a2.97 2.97 0 0 0 2.15-.877v.743h1.211V2.864H5.223v4.934c0 1.265-.87 2.12-1.995 2.122-1.139-.002-1.997-.834-1.997-2.122V2.865zm7.363 0v7.993h1.162v-.732a3 3 0 0 0 2.118.876 3.044 3.044 0 1 0 0-6.086 2.97 2.97 0 0 0-2.107.876V2.865zm9.885 2.056a3.02 3.02 0 0 0-3.035 3.024c0 1.737 1.373 3.037 3.153 3.037a3.12 3.12 0 0 0 2.558-1.243l-.85-.618a2.05 2.05 0 0 1-1.708.858 1.97 1.97 0 0 1-1.97-1.655h4.817v-.379c0-1.734-1.254-3.024-2.964-3.024zm6.163.066a1.6 1.6 0 0 0-1.376.766v-.719h-1.163v5.824h1.174V7.546c0-.902.559-1.484 1.327-1.484h.495V4.989zm-6.203.944a1.844 1.844 0 0 1 1.834 1.486h-3.618a1.844 1.844 0 0 1 1.784-1.486m-6.659.006a2.021 2.021 0 1 1 .002 4.042 2.02 2.02 0 0 1-1.416-.598 2.02 2.02 0 0 1-.585-1.422 2.02 2.02 0 0 1 .584-1.422 2.02 2.02 0 0 1 1.415-.6M0 12.987v7.971h5.722v-1.367H1.546v-1.97H5.61v-1.315H1.545v-1.955h4.176v-1.365zm14.56.41v1.685H13.41v1.338h1.154v3.143c0 .793.572 1.421 1.6 1.421h1.643l-.006-1.338h-1.141c-.348 0-.572-.15-.572-.464v-2.768H17.8v-1.332h-1.706v-1.686zm-5.297 1.527a3.103 3.103 0 1 0 .07 6.205 3 3 0 0 0 1.913-.666v.532h1.517v-5.913h-1.509v.526a3 3 0 0 0-1.92-.684zm11.771.007c-1.585 0-2.7.644-2.7 1.886 0 .86.613 1.421 1.936 1.695l1.448.328c.57.11.722.259.722.49 0 .371-.438.603-1.127.603-.876 0-1.378-.19-1.573-.848h-1.533c.22 1.231 1.157 2.05 3.049 2.05h.002c1.752 0 2.742-.819 2.742-1.953 0-.806-.585-1.408-1.809-1.667l-1.294-.26c-.751-.136-.988-.274-.988-.546 0-.357.361-.575 1.03-.575.722 0 1.252.192 1.405.847h1.518c-.086-1.229-.99-2.05-2.827-2.05m-11.567 1.25c1.01.01 1.819.837 1.807 1.847a1.8 1.8 0 0 1-1.825 1.802 1.824 1.824 0 0 1 .018-3.648"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ubiquiti.svg���������������������������������0000664�0000000�0000000�00000001726�14753064456�0025464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.163 0h-1.488v1.488h1.488zm-5.207 10.423V7.44h2.976v2.977h2.975v.943c0 1.091-.092 2.383-.306 3.398-.12.567-.3 1.13-.512 1.672a12 12 0 0 1-.741 1.56 11.7 11.7 0 0 1-1.246 1.775l-.025.03-.042.049c-.115.134-.228.268-.353.398a12 12 0 0 1-.45.449 11.83 11.83 0 0 1-6.98 3.243A16 16 0 0 1 12 24c-.314-.001-.94-.033-1.252-.065a11.84 11.84 0 0 1-6.98-3.243 12 12 0 0 1-.45-.45c-.131-.135-.25-.274-.368-.415h-.001l-.051-.06a11.7 11.7 0 0 1-1.246-1.777 12 12 0 0 1-.74-1.56 10.6 10.6 0 0 1-.513-1.671c-.214-1.016-.306-2.307-.306-3.397V.186h5.952v10.237s0 .784.01 1.041l.002.06c.012.332.024.658.059.982.098.919.301 1.79.72 2.528.122.213.245.42.392.616a5.99 5.99 0 0 0 3.957 2.34c.202.03.61.055.815.055s.613-.025.815-.055a6 6 0 0 0 3.957-2.34c.148-.196.27-.403.392-.616.419-.737.622-1.61.72-2.528.035-.325.047-.65.06-.983l.002-.059c.01-.257.01-1.041.01-1.041m.742-8.19h2.233v2.231h2.976v2.977h-2.976V4.465h-2.233z"/></svg>������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ubisoft.svg����������������������������������0000664�0000000�0000000�00000001714�14753064456�0025301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.561 11.988C23.301-.304 6.954-4.89.656 6.634c.282.206.661.477.943.672a11.8 11.8 0 0 0-.976 3.067 12 12 0 0 0-.184 2.071C.439 18.818 5.621 24 12.005 24s11.556-5.17 11.556-11.556v-.455zm-20.27 2.06c-.152 1.246-.054 1.636-.054 1.788l-.282.098c-.108-.206-.37-.932-.488-1.908C2.163 10.308 4.7 6.96 8.57 6.33c3.544-.52 6.937 1.68 7.728 4.758l-.282.098c-.087-.087-.228-.336-.77-.878-4.281-4.281-11.002-2.32-11.956 3.74zm11.002 2.081a3.15 3.15 0 0 1-2.59 1.355 3.15 3.15 0 0 1-3.155-3.155 3.16 3.16 0 0 1 2.927-3.144c1.018-.043 1.972.51 2.416 1.398a2.58 2.58 0 0 1-.455 2.95c.293.205.575.4.856.595zm6.58.12c-1.669 3.782-5.106 5.766-8.77 5.712-7.034-.347-9.083-8.466-4.38-11.393l.207.206c-.076.108-.358.325-.791 1.182-.51 1.041-.672 2.081-.607 2.732.369 5.67 8.314 6.83 11.045 1.214C21.057 8.217 11.822.401 3.626 6.374l-.184-.184C5.599 2.808 9.816 1.3 13.837 2.309c6.147 1.55 9.453 7.956 7.035 13.94z"/></svg>����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ublockorigin.svg�����������������������������0000664�0000000�0000000�00000001101�14753064456�0026303�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C7.502 3 6.002 3 1.5 3c0 15.002 0 15.002 10.5 21 10.5-5.998 10.5-5.998 10.5-21-4.498 0-5.998 0-10.5-3M5.956 7.472h1.512v4.536c0 1.322.19 1.508 1.512 1.508s1.512-.19 1.512-1.512V7.472H12v.767a3.75 3.75 0 0 1 2.268-.767 3.79 3.79 0 0 1 3.776 3.78 3.79 3.79 0 0 1-3.78 3.775 3.765 3.764 0 0 1-2.684-1.133c-.464.77-1.315 1.133-2.6 1.133-2.079 0-3.024-.944-3.024-3.023zm8.308 1.512A2.254 2.254 0 0 0 12 11.252a2.254 2.254 0 0 0 2.268 2.264 2.254 2.254 0 0 0 2.264-2.268 2.254 2.254 0 0 0-2.268-2.264"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ubuntu.svg�����������������������������������0000664�0000000�0000000�00000001540�14753064456�0025145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.61.455a3.41 3.41 0 0 0-3.41 3.41 3.41 3.41 0 0 0 3.41 3.41 3.41 3.41 0 0 0 3.41-3.41 3.41 3.41 0 0 0-3.41-3.41M12.92.8C8.923.777 5.137 2.941 3.148 6.451a5 5 0 0 1 .26-.007 4.9 4.9 0 0 1 2.585.737A8.32 8.32 0 0 1 12.688 3.6 4.94 4.94 0 0 1 13.723.834 11 11 0 0 0 12.92.8m9.226 4.994a4.9 4.9 0 0 1-1.918 2.246 8.36 8.36 0 0 1-.273 8.303 4.9 4.9 0 0 1 1.632 2.54 11.16 11.16 0 0 0 .559-13.089M3.41 7.932A3.41 3.41 0 0 0 0 11.342a3.41 3.41 0 0 0 3.41 3.409 3.41 3.41 0 0 0 3.41-3.41 3.41 3.41 0 0 0-3.41-3.41zm2.027 7.866a4.9 4.9 0 0 1-2.915.358 11.1 11.1 0 0 0 7.991 6.698 11.2 11.2 0 0 0 2.422.249 4.88 4.88 0 0 1-.999-2.85 9 9 0 0 1-.836-.136 8.3 8.3 0 0 1-5.663-4.32zm11.405.928a3.41 3.41 0 0 0-3.41 3.41 3.41 3.41 0 0 0 3.41 3.41 3.41 3.41 0 0 0 3.41-3.41 3.41 3.41 0 0 0-3.41-3.41"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ubuntumate.svg�������������������������������0000664�0000000�0000000�00000001662�14753064456�0026021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.372 0 12c0 6.627 5.373 12 12 12s12-5.373 12-12c0-6.628-5.373-12-12-12m2.005 3.245L18.667 6 14 8.755ZM12 4.66c.342 0 .676.028 1.005.073v1.021A6.33 6.33 0 0 0 6.12 9.63l-.865-.51C6.378 6.503 8.978 4.66 12 4.66m0 2.495c.342 0 .677.041 1 .11v1.036a3.9 3.9 0 0 0-1-.13 3.81 3.81 0 0 0-3.672 2.76l-.896-.531A4.855 4.855 0 0 1 12 7.156Zm5.885.464A7.3 7.3 0 0 1 19.34 12a7.3 7.3 0 0 1-1.5 4.437l-.87-.515A6.3 6.3 0 0 0 18.329 12a6.3 6.3 0 0 0-1.313-3.865zm-2.171 1.286a4.81 4.81 0 0 1-.047 6.25l-.891-.526A3.8 3.8 0 0 0 15.828 12c0-.996-.377-1.899-.995-2.578zm-12.209.339L8.167 12 3.5 14.755Zm4.823 3.823A3.81 3.81 0 0 0 12 15.823c.346 0 .681-.047 1-.13v1.041a4.8 4.8 0 0 1-1 .11c-2.106 0-3.906-1.362-4.568-3.25zM6.12 14.37A6.33 6.33 0 0 0 12 18.328q.509 0 .995-.078v1.016a7 7 0 0 1-.995.073c-3.022 0-5.622-1.842-6.745-4.459zm7.88.963 4.661 2.75-4.666 2.756z"/></svg>������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/udacity.svg����������������������������������0000664�0000000�0000000�00000000700�14753064456�0025262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 0 0 4.8v9.6C0 20.8 4.8 24 8.8 24c1.348 0 2.786-.362 4.1-1.088l6.303-3.633C21.687 18.155 24 15.64 24 11.2V.8L22.4 0 16 4v10.4c0 1.6-.3 2.898-.785 3.948-2.002-.257-5.615-1.597-5.615-7.15V.802zm0 1.76v9.44c0 5.342 3.346 7.9 6.313 8.597-1.618 1.99-4.025 2.603-5.512 2.603-2.4 0-7.2-1.6-7.2-8V5.6zm14.4.04v9.4c0 5.45-3.482 6.84-5.504 7.132.446-1.14.704-2.45.704-3.932V4.8z"/></svg>����������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/udemy.svg������������������������������������0000664�0000000�0000000�00000000532�14753064456�0024746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0 5.81 3.573v3.574l6.189-3.574 6.191 3.574V3.573zM5.81 10.148v8.144c0 1.85.589 3.243 1.741 4.234S10.177 24 11.973 24s3.269-.482 4.448-1.474c1.179-.991 1.768-2.439 1.768-4.314v-8.064h-3.242v7.85c0 2.036-1.509 3.055-2.948 3.055-1.428 0-2.947-.991-2.947-3.027v-7.878z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/udotsdotnews.svg�����������������������������0000664�0000000�0000000�00000010472�14753064456�0026371�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 9.12v4.705h1.99c-.481-.16-.792-.5-.792-1.076v-2.483h.794v2.414c0 .382.285.606.804.606.454 0 .775-.225.775-.601v-2.42h.794v2.53q-.001.195-.056.358h.565v.672h.808c-.425-.134-.627-.375-.721-.672a1.5 1.5 0 0 1-.051-.372h.817c0 .065.023.175.05.23.101.21.34.302.821.302.552 0 .744-.15.744-.39 0-.298-.152-.403-.738-.514-.106-.018-.372-.069-.533-.1-.707-.134-1.143-.46-1.143-1.061 0-.615.496-1.028 1.56-1.028.91 0 1.336.316 1.52.775.046.12.083.257.083.349h-.818a.5.5 0 0 0-.05-.179c-.096-.202-.294-.307-.753-.307-.6 0-.72.133-.72.34 0 .266.215.371.808.49.183.037.422.088.504.101.721.138 1.097.437 1.097 1.057q0 .163-.044.307h.572v.672h.243v-3.56h.923l1.395 2.337v-2.336h.757v3.56h1.043a1.17 1.17 0 0 1-.622-.474c-.131-.21-.204-.477-.204-.812 0-.307.083-.58.233-.793.258-.375.72-.593 1.304-.593.612 0 1.03.223 1.269.569.2.292.272.676.228 1.079H12.99c0 .122.054.214.146.317.112.121.33.199.623.199.219 0 .379-.04.491-.088.14-.063.209-.15.223-.209h.764c-.063.258-.219.5-.486.672q-.125.078-.287.132h1.598l-.933-2.608h.812l.642 1.989.588-1.989h.865l.603 1.989.627-1.989h.765l-.944 2.608h1.442c-.286-.097-.452-.258-.514-.502a1 1 0 0 1-.029-.268h.773a.4.4 0 0 0 .024.137c.049.126.253.16.676.16.443 0 .58-.078.58-.233 0-.152-.162-.185-.556-.244-.101-.014-.422-.063-.583-.087-.588-.083-.87-.34-.87-.852 0-.476.427-.787 1.288-.787.734 0 1.197.19 1.333.574.034.102.048.267.048.32h-.753a.34.34 0 0 0-.034-.145c-.054-.073-.195-.136-.564-.136-.429 0-.555.068-.555.194 0 .117.083.16.462.22l.622.091c.642.098.925.336.925.837 0 .35-.169.591-.525.721H24V9.12Zm14.874 1.131c.274 0 .388.127.388.371 0 .256-.122.382-.388.382-.268 0-.39-.13-.39-.38 0-.232.12-.373.39-.373m5.912 0c.275 0 .388.127.388.371 0 .256-.122.382-.388.382-.268 0-.39-.13-.39-.38 0-.232.12-.373.39-.373m-8.108.006c.139 0 .22.08.225.168v.032c-.002.092-.073.157-.146.202.033.026.075.064.117.098a.2.2 0 0 0 .039-.11h.204a.33.33 0 0 1-.099.226l.157.12h-.277l-.035-.028a.6.6 0 0 1-.2.035c-.174 0-.33-.032-.336-.165v-.038c.002-.083.08-.134.167-.175a.3.3 0 0 1-.06-.154v-.037c.004-.09.092-.174.244-.174m.676.007h.238s.111.45.111.473c0-.023.108-.473.108-.473h.23s.11.45.11.473c0-.023.11-.473.11-.473h.216l-.205.729h-.243s-.11-.42-.112-.444c-.001.025-.113.444-.113.444h-.242zm2.861 0h.226v.549h.35v.18h-.576zm.687 0h.4c.131 0 .213.032.258.095.045.062.054.123.054.255 0 .156-.011.213-.051.273-.044.067-.12.106-.25.106h-.411zm1.946 0h.62v.172h-.4v.105h.385v.174h-.386v.108h.405v.17h-.624zm.766 0h.449q.131 0 .19.061.065.055.066.19 0 .12-.054.177c-.042.049-.112.072-.201.074l-.225-.001v.228h-.225zm2.428 0h.69v.175H22.5v.554h-.227v-.554h-.231Zm-6.681 0h.461q.143.002.197.077a.24.24 0 0 1 .042.153.27.27 0 0 1-.032.138.14.14 0 0 1-.09.069l.17.292h-.25l-.128-.247h-.15v.247h-.22Zm2.624 0h.46c.098 0 .161.028.198.077a.24.24 0 0 1 .042.153.3.3 0 0 1-.032.138.14.14 0 0 1-.09.069l.17.292h-.25l-.128-.247h-.15v.247h-.22zm3.29 0h.462q.143.002.197.077a.25.25 0 0 1 .042.153.3.3 0 0 1-.032.138.14.14 0 0 1-.09.069l.17.292h-.25l-.128-.247h-.15v.247h-.22zm-8.6.148c-.032 0-.045.022-.048.048v.02q0 .03.03.067c.037-.022.063-.046.065-.075v-.014c-.001-.024-.013-.046-.046-.046m2.199.011c-.12 0-.162.058-.162.204 0 .155.056.206.163.206.102 0 .162-.043.162-.206 0-.144-.04-.204-.163-.204m5.912 0c-.12 0-.161.058-.161.204 0 .155.055.206.161.206.103 0 .163-.043.163-.206 0-.144-.04-.204-.163-.204m-.95.01v.169h.175c.043 0 .064-.014.074-.035a.1.1 0 0 0 .01-.048.1.1 0 0 0-.01-.051q-.018-.034-.07-.034zm-2.712.001v.387h.14c.057 0 .087-.012.112-.042.02-.023.021-.105.021-.165 0-.052-.005-.12-.023-.14-.028-.031-.055-.04-.11-.04zm-1.541.002v.148h.193c.027 0 .05-.006.059-.024a.1.1 0 0 0 .008-.047.1.1 0 0 0-.008-.047c-.01-.023-.032-.03-.064-.03zm2.624 0v.148h.192c.027 0 .051-.006.06-.024a.1.1 0 0 0 .008-.047.1.1 0 0 0-.007-.047c-.012-.023-.034-.03-.066-.03zm3.29 0v.148h.193c.027 0 .051-.006.06-.024a.1.1 0 0 0 .007-.047.1.1 0 0 0-.007-.047c-.01-.023-.033-.03-.065-.03zm-8.897.308c-.033.019-.056.039-.056.06 0 .035.032.048.108.048.021 0 .046-.003.064-.007-.042-.036-.085-.07-.116-.1m-2.913.692v2.39h1.42Zm4.076.345c-.276 0-.48.073-.612.19a.55.55 0 0 0-.166.32h1.498a.47.47 0 0 0-.13-.306c-.113-.111-.298-.204-.59-.204m3.811.294-.033.187c-.005.09-.467 1.443-.508 1.563h1.089c-.042-.12-.504-1.474-.513-1.558zM4.166 13.422c-.14.185-.352.318-.612.403h.612zm3.813.007c-.126.173-.321.308-.581.396h.581ZM0 14.083v.797h24v-.797z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ufc.svg��������������������������������������0000664�0000000�0000000�00000001422�14753064456�0024377�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.308 7.843h2.797s-1.86 6.639-1.951 6.998c-.177.69-.353 1.316-2.043 1.316-2.037 0-3.22-.007-3.777 0-.698.007-1.521-.633-1.296-1.464l1.91-6.85H4.8s-1.6 5.71-1.634 5.857c-.029.148-.19.557.698.564.64.014.69-.155.803-.564.268-.922 1.64-5.857 1.64-5.857zm10.272 0-.507 1.824H9.986l.507-1.824zm-8.404 8.314 1.459-5.244h6.086l-.507 1.823h-3.262l-.95 3.421zm11.47-5.385c-.26.957-.493 1.774-.754 2.738-.05.17-.162.416-.127.57.078.367 1.29.226 1.726.226h1.945c-.155.612-.33 1.21-.5 1.81h-4.63c-.676-.064-1.557-.353-1.472-1.226.028-.274.156-.584.24-.887a1190 1190 0 0 0 1.24-4.463c.176-.648.317-1.197.83-1.457.333-.17.861-.218 1.255-.24H24q-.245.91-.5 1.81h-2.643c-.317 0-.669-.036-.845.084-.19.141-.295.775-.366 1.035"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/uikit.svg������������������������������������0000664�0000000�0000000�00000000357�14753064456�0024755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.697 3.292-4.109 2.489 4.738 2.696v7.077l-6.365 3.538-6.258-3.538v-5.485L1.596 7.956V18l10.219 6 10.589-6V6.002zm-1.904-.989L11.813 0 7.665 2.568l4.032 2.218z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/uipath.svg�����������������������������������0000664�0000000�0000000�00000002746�14753064456�0025126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 7.882v8.235h8.235V7.882zm.852.852h6.53v6.53H.852zm22.268.695c-.514 0-.886.345-.886.873 0 .511.36.878.886.878.518 0 .88-.359.88-.878 0-.521-.359-.873-.88-.873m-17.023.055a.5.5 0 0 0-.522.522c0 .302.22.509.522.509s.522-.206.522-.509a.5.5 0 0 0-.522-.522m17.023.102c.437 0 .716.278.716.716 0 .426-.274.712-.716.712-.426 0-.719-.271-.719-.712s.278-.716.719-.716m-.347.213v.988h.197v-.318h.14l.176.318h.22l-.186-.347a.32.32 0 0 0 .206-.311c0-.203-.159-.33-.374-.33zm-3.74.002v4.468h.853v-1.774c0-.571.302-.914.804-.914s.763.33.763.838v1.85h.852v-1.946c0-.88-.619-1.45-1.409-1.45-.509 0-.818.192-1.01.515V9.801zm3.937.157h.157c.115 0 .193.064.193.171 0 .118-.078.181-.193.181h-.157zm-21.375.049v2.495c0 1.141.625 1.808 1.684 1.808 1.079 0 1.718-.681 1.718-1.808v-2.495h-.852v2.495c0 .646-.275 1.004-.846 1.004-.591 0-.852-.378-.852-1.004v-2.495zm7.547 0v4.262h.852v-1.375h.77c.928 0 1.533-.543 1.533-1.457 0-.88-.591-1.43-1.533-1.43zm7.809 0v.914h-.399v.722h.399v1.45c0 .791.35 1.176 1.161 1.176h.447v-.729h-.337c-.33 0-.419-.144-.419-.44v-1.457h.749v-.722h-.749v-.914zm-6.957.687h.681c.488 0 .756.276.756.743 0 .502-.268.776-.756.776h-.681zm4.138.186c-.921 0-1.546.728-1.546 1.718 0 .997.639 1.712 1.546 1.712.537 0 .887-.193 1.086-.516v.475h.853v-3.348h-.853v.523c-.206-.344-.563-.564-1.086-.564m-8.461.041v3.348h.852v-3.348zm8.661.701c.543 0 .886.399.886.976 0 .585-.364.963-.886.963-.578 0-.88-.406-.88-.963 0-.598.337-.976.88-.976"/></svg>��������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ukca.svg�������������������������������������0000664�0000000�0000000�00000001301�14753064456�0024541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.138 11.001H3.852C1.728 11.001 0 9.296 0 7.201V.011h2.498v7.155c0 .737.622 1.336 1.388 1.336h3.218c.766 0 1.388-.599 1.388-1.336V.011h2.498v7.19c0 2.095-1.728 3.8-3.852 3.8M24 .011h-3.23l-5.285 4.16V.011h-2.498V11h2.498V6.814l5.284 4.187h3.217l-6.952-5.508ZM10.99 23.99H3.8c-2.095 0-3.8-1.761-3.8-3.885v-3.22C0 14.762 1.705 13 3.8 13h7.19v2.498H3.834c-.737 0-1.336.622-1.336 1.388v3.219c0 .765.6 1.387 1.336 1.387h7.156zm4.495-4.995v-2.16c0-.738.622-1.337 1.387-1.337h3.22c.765 0 1.387.6 1.387 1.336v2.16zM20.125 13H16.84c-2.124 0-3.852 1.705-3.852 3.8v7.19h2.498v-2.498h5.994v2.497h2.498V16.8c0-2.094-1.728-3.799-3.852-3.799"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ultralytics.svg������������������������������0000664�0000000�0000000�00000000724�14753064456�0026205�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.736 7.341-.002 2.897c.012 3.953-3.188 7.177-7.098 7.171-1.553-.003-2.967-.48-4.112-1.313 2.056 3.725 5.999 6.24 10.48 6.245 6.511-.003 11.891-5.343 11.992-11.91l-.002-.027c.006-.151 0-2.951.006-3.075-.01-3.116-2.538-5.677-5.63-5.67-3.105-.006-5.645 2.54-5.634 5.683zM5.629 4.573C2.525 4.573 0 7.118 0 10.246s2.525 5.673 5.63 5.673c3.103 0 5.629-2.545 5.629-5.673s-2.526-5.673-5.63-5.673"/></svg>��������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ulule.svg������������������������������������0000664�0000000�0000000�00000002635�14753064456�0024757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A11.99 11.99 0 0 0 1.676 5.884l-.822-.822a.5.5 0 0 0-.707 0A.5.5 0 0 0 0 5.416V12c0 6.627 5.372 12 12 12 6.627 0 12-5.373 12-12V5.416a.5.5 0 0 0-.854-.354l-.823.822A11.99 11.99 0 0 0 12 0M6.814 7.626a5.53 5.53 0 0 1 4.971 3.095 2.74 2.74 0 0 0 .13 3.754.12.12 0 0 0 .17 0 2.74 2.74 0 0 0 .13-3.754 5.53 5.53 0 0 1 5.411-3.077c2.702.214 4.876 2.41 5.064 5.113a5.528 5.528 0 0 1-10.419 2.944.304.304 0 0 0-.542 0 5.528 5.528 0 0 1-10.42-2.944c.189-2.703 2.363-4.9 5.064-5.113q.222-.018.44-.018zm-.42 1.22a3.501 3.496 0 0 0-.235.008c-.013.16-.116.262-.248.388l-.052.05c-.117.113-.335.323-.333.7a.875.875 0 0 0 .856.858c.485-.003.88-.383.882-.85.002-.325-.137-.523-.347-.722-.143-.13-.289-.281-.308-.422a3.501 3.496 0 0 0-.214-.01zm11.211 0a3.501 3.495 0 0 0-.235.008c-.013.16-.117.262-.249.388l-.051.05c-.118.113-.336.323-.334.7a.875.875 0 0 0 .856.858c.485-.003.88-.383.882-.85.002-.325-.136-.523-.347-.723-.143-.13-.288-.28-.307-.42a3.501 3.495 0 0 0-.215-.011M6.093 8.86a3.501 3.496 0 0 0-3.2 3.48 3.501 3.496 0 0 0 3.502 3.496 3.501 3.496 0 0 0 3.5-3.496 3.501 3.496 0 0 0-3.033-3.46 2.393 2.393 0 1 1-2.86 2.362A2.386 2.386 0 0 1 6.093 8.86m11.816 0a2.386 2.386 0 0 1 2.088 2.382 2.391 2.391 0 1 1-4.784-.033 2.39 2.39 0 0 1 1.92-2.328 3.501 3.495 0 0 0-3.03 3.46 3.501 3.495 0 0 0 3.502 3.495 3.501 3.495 0 0 0 3.501-3.496 3.501 3.495 0 0 0-3.197-3.48"/></svg>���������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/umami.svg������������������������������������0000664�0000000�0000000�00000000625�14753064456�0024736�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.203 8.611H.857a.845.845 0 0 0-.841.841v.858a13 13 0 0 0-.016.6c0 6.627 5.373 12 12 12 6.527 0 11.837-5.212 11.996-11.701 0-.025.004-.05.004-.075V9.452a.845.845 0 0 0-.841-.841h-1.346c-1.159-4.329-5.112-7.521-9.805-7.521S3.363 4.282 2.203 8.611m18.444 0H3.37c1.127-3.702 4.57-6.399 8.638-6.399 4.069 0 7.512 2.697 8.639 6.399"/></svg>�����������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/umbraco.svg����������������������������������0000664�0000000�0000000�00000001454�14753064456�0025257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 11.982A12 12 0 1 1 12 24 12 12 0 0 1 0 11.982m11.756 4.11a12 12 0 0 1-2.773-.25 2.12 2.12 0 0 1-1.514-1.218q-.41-.943-.396-2.895a18 18 0 0 1 .127-2.04q.118-.988.236-1.629l.082-.425v-.038a.244.244 0 0 0-.201-.236l-1.544-.246H5.74a.24.24 0 0 0-.235.189 7 7 0 0 0-.089.409c-.088.455-.17.9-.26 1.548a20 20 0 0 0-.176 2.12 11 11 0 0 0 0 1.486q.05 1.977.675 3.155.626 1.179 2.106 1.695 1.482.517 4.135.506h.22q2.655.01 4.134-.506 1.478-.518 2.1-1.695t.678-3.147a11 11 0 0 0 0-1.485 20 20 0 0 0-.176-2.121 30 30 0 0 0-.26-1.548 7 7 0 0 0-.088-.41.24.24 0 0 0-.236-.188h-.04l-1.548.242a.236.236 0 0 0-.203.236v.037l.081.426q.118.643.236 1.63a19 19 0 0 1 .126 2.039q.019 1.95-.396 2.892a2.12 2.12 0 0 1-1.502 1.22 11.8 11.8 0 0 1-2.769.247Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/uml.svg��������������������������������������0000664�0000000�0000000�00000001115�14753064456�0024416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.768 0 7.182 1.604s6.126 2.72 6.852 3.055c.72.335 1.744.947.565 1.629s-2.423.477-3.259.09c-.835-.384-7.012-3.257-7.012-3.257L.666 4.777s6.4 2.935 7.4 3.417c1.003.482 4.753 1.784 8.48.002 3.727-1.781 3.261-2.577 3.268-2.724s-.036-.933-.632-1.467c-.599-.534-2.378-1.375-3.127-1.73C15.305 1.916 10.77 0 10.77 0ZM.411 5.299v13.215l2.904 1.402v-7.963l1.585 8.6 2.58 1.243 1.66-7.154v7.826l2.916 1.38V10.643L7.629 8.628l-1.403 6.296-1.412-7.598Zm16.76 3.115-4.624 2.315L12.559 24l11.03-5.225-.025-3.613-6.393 2.92Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/unacademy.svg��������������������������������0000664�0000000�0000000�00000000713�14753064456�0025572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.715 2.188a.696.696 0 0 0-.711.713H0l.002.027c-.01.306.03.658.123 1.081.905 5.546 5.875 9.788 11.87 9.788 5.935 0 10.864-4.157 11.84-9.622.126-.512.177-.921.162-1.273a.696.696 0 0 0-.713-.714zm11.243 13.82c-2.967 0-5.432 2.079-5.92 4.81a2.3 2.3 0 0 0-.08.638c0 .201.15.356.355.356h11.285a.35.35 0 0 0 .356-.356h.002v-.014a2.2 2.2 0 0 0-.063-.54c-.453-2.774-2.938-4.894-5.935-4.894"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/underarmour.svg������������������������������0000664�0000000�0000000�00000001611�14753064456�0026165�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.954 12a17 17 0 0 1-.324.233c-.826.585-2.023.985-3.58.985h-.104c-1.556 0-2.755-.4-3.58-.985L8.042 12q.133-.099.324-.234c.825-.584 2.024-.985 3.58-.985h.104c1.557 0 2.756.401 3.58.985q.192.134.325.234M24 7.181s-.709-.541-2.95-1.365c-1.968-.721-3.452-.883-3.452-.883l.006 4.243c0 .598-.162 1.143-.618 1.765-1.672-.61-3.254-.985-4.981-.985-1.728 0-3.308.375-4.98.985-.457-.619-.62-1.168-.62-1.765l.007-4.243s-1.494.16-3.463.883C.709 6.642 0 7.181 0 7.181c.093 1.926 1.78 3.638 4.435 4.82C1.777 13.18.09 14.887 0 16.818c0 0 .709.54 2.949 1.365 1.968.721 3.453.883 3.453.883l-.007-4.244c0-.597.164-1.143.619-1.764 1.672.61 3.252.983 4.98.983 1.727 0 3.309-.374 4.98-.983.457.62.62 1.167.62 1.764l-.006 4.244s1.484-.16 3.452-.883c2.241-.826 2.95-1.365 2.95-1.365-.093-1.927-1.78-3.64-4.435-4.819 2.657-1.182 4.343-2.888 4.435-4.82"/></svg>�����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/underscoredotjs.svg��������������������������0000664�0000000�0000000�00000007265�14753064456�0027052�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.704 9.96a1.2 1.2 0 0 0-.3.047 1.02 1.02 0 0 0-.696.586c-.074.16-.08.202-.08.613 0 .413.006.453.08.61a1.05 1.05 0 0 0 .478.508c.158.076.204.085.507.085.452 0 .564-.025.564-.125 0-.076-.003-.076-.143-.052-.277.045-.652.027-.8-.04-.286-.13-.476-.424-.512-.798-.061-.597.155-1.057.579-1.214.183-.067.545-.067.752.003.133.045.167.05.188.015.067-.107-.005-.155-.304-.21a1.6 1.6 0 0 0-.313-.026zm-2.227.01a.7.7 0 0 0-.16.017.77.77 0 0 0-.469.358.8.8 0 0 0-.033.244c0 .314.142.46.646.653.512.2.603.28.603.55 0 .42-.515.59-1.213.4-.064-.016-.07-.011-.062.068.01.08.026.093.178.125.242.05.634.047.817-.005.182-.055.362-.2.42-.34a.8.8 0 0 0 .042-.277c0-.3-.14-.453-.562-.615-.55-.212-.687-.316-.693-.537a.4.4 0 0 1 .216-.403c.116-.066.173-.08.354-.08.116 0 .296.027.393.056.183.055.228.043.23-.064 0-.074-.43-.154-.706-.15zm4.233 0a1 1 0 0 0-.226.02c-.507.106-.8.55-.8 1.201 0 .453.142.817.4 1.024.205.16.326.196.68.196.258-.004.329-.016.457-.078.383-.188.593-.59.593-1.14s-.216-.957-.593-1.13a1.4 1.4 0 0 0-.51-.094zm7.536.001a1 1 0 0 0-.257.026.7.7 0 0 0-.41.307.78.78 0 0 0 0 .563c.07.13.263.252.64.391.48.182.629.36.543.645-.069.23-.32.37-.657.37a2 2 0 0 1-.527-.076c-.094-.02-.1-.018-.1.054 0 .12.155.16.61.16.354 0 .388-.007.537-.086a.605.605 0 0 0 .29-.793c-.08-.177-.229-.277-.677-.45-.426-.162-.533-.262-.533-.5 0-.194.07-.303.248-.395.152-.08.48-.08.71-.003.16.055.166.055.206 0 .061-.085.052-.097-.12-.15a2 2 0 0 0-.503-.063m-18.367.04v2.39l.48-.013c.423-.012.5-.02.666-.09.48-.196.67-.559.643-1.214-.02-.506-.17-.77-.535-.95-.2-.1-.204-.1-.728-.11Zm4.08 0v2.382h.152V11.36h.593l.304.517c.296.509.305.518.405.518h.1l-.097-.176a18 18 0 0 0-.32-.537l-.216-.362.15-.076a.64.64 0 0 0 .335-.737c-.049-.204-.11-.293-.277-.39-.133-.08-.16-.08-.633-.09zm-8.958.01.009.903c.01.876.013.912.08 1.05.157.32.463.472.888.442.37-.024.583-.155.733-.449.07-.134.075-.158.083-1.043l.013-.904h-.19v.843c0 .52-.012.892-.032.968-.05.178-.254.362-.454.41-.31.077-.653-.017-.8-.217-.134-.18-.144-.264-.144-1.155v-.85H.095Zm2.44 0v2.373h.152l.005-1.054.01-1.056.7 1.052c.637.96.71 1.058.786 1.058h.083V10.02h-.154v2.084l-.693-1.04c-.67-1.014-.695-1.043-.79-1.046Zm4.657 0v2.373h1.31v-.152H7.251l.007-.513.01-.508.54-.009.54-.007v-.152h-1.1l.01-.45.01-.447.572-.008c.544-.007.568-.01.568-.067 0-.06-.02-.06-.653-.06zm10.173 0v2.373h.152V11.36h.602l.3.517c.29.5.302.516.4.518.05 0 .097-.005.097-.018 0-.008-.14-.25-.307-.535a6 6 0 0 1-.298-.525 1 1 0 0 1 .133-.073c.234-.12.35-.313.35-.594a.6.6 0 0 0-.453-.6 4 4 0 0 0-.542-.03zm1.947 0v2.373h1.31v-.152h-1.126v-1.037h1.067v-.152h-1.067v-.912h.564c.542 0 .563-.003.563-.06 0-.058-.02-.06-.653-.06zm2.59 0v1.264c0 1.079-.008 1.283-.048 1.368-.066.137-.17.183-.4.177-.172-.004-.193.003-.193.054 0 .084.133.13.33.11.206-.02.334-.097.413-.25.06-.12.064-.17.073-1.427l.01-1.297h-.091zm-12.7.11.33.021c.18.013.373.037.432.055.325.097.44.54.21.8-.129.142-.31.2-.674.2h-.295v-.538zm-3.885.013a4 4 0 0 1 .376.03c.43.047.667.197.803.498.061.133.07.204.07.52 0 .34-.006.377-.085.54a1 1 0 0 1-.21.28c-.182.16-.35.208-.775.222l-.375.016v-1.034c0-.57.01-1.043.022-1.052.013-.015.077-.02.174-.02m12.387 0c.09 0 .213.01.346.026.295.034.432.107.503.26.12.263.036.556-.196.69-.11.06-.175.072-.483.081l-.36.012v-.515c0-.282.01-.526.023-.536.012-.013.073-.02.165-.018zm-1.858 0a1.2 1.2 0 0 1 .334.044.87.87 0 0 1 .458.472c.058.14.067.23.067.532 0 .401-.045.573-.21.79-.21.274-.703.36-1.06.188-.334-.16-.462-.44-.46-.993 0-.288.014-.38.07-.523.077-.194.296-.42.467-.472a1.1 1.1 0 0 1 .333-.036zm5.352 1.98c-.052 0-.072.018-.097.07-.048.11.01.232.11.232.098 0 .147-.066.134-.19-.01-.087-.02-.1-.107-.11zm-9.082 1.308c-6.59 0-11.99.01-11.999.02a1.2 1.2 0 0 0-.021.305v.283H24v-.608z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/undertale.svg��������������������������������0000664�0000000�0000000�00000000261�14753064456�0025605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 0v1.5H1.5V3H0v12h3v3h3v3h3v3h6v-3h3v-3h3v-3h3V3h-1.5V1.5H21V0h-3v1.5h-3V3h-1.5v3h-3V3H9V1.5H6V0z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/unicode.svg����������������������������������0000664�0000000�0000000�00000002072�14753064456�0025252�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.2 0a.2.2 0 0 0-.2.2v23.6c0 .11.09.2.2.2h23.6a.2.2 0 0 0 .2-.2V.2a.2.2 0 0 0-.2-.2zm19.488 5.27A1.31 1.31 0 0 1 21 6.582a1.31 1.31 0 0 1-1.313 1.313 1.31 1.31 0 0 1-1.31-1.313 1.31 1.31 0 0 1 1.31-1.312zM3.15 6.05h1.996q.153 0 .153.151v7.49q0 1.37.666 2.188.665.818 2.033.816.57.002 1.047-.15.474-.154.824-.506.351-.353.553-.932.2-.578.2-1.453V6.223q.001-.02.005-.035l-.006-.004q0-.134.133-.133h2.682q.114 0 .152.027a.3.3 0 0 1 .076.104q.343.627.809 1.464.464.836.959 1.749l.998 1.843q.5.93.94 1.758.438.829.77 1.475.334.648.505 1.008h.02q-.001-.19-.01-.428a26 26 0 0 1-.02-.57q-.01-.335-.02-.81-.011-.473-.01-1.14v-3.21q0-.154.17-.153H20.6q.171 0 .171.172v9.03q0 .17-.189.17h-2.414q-.172-.001-.248-.134a174 174 0 0 0-1.623-3.021 232 232 0 0 1-2.121-3.946 96 96 0 0 1-.883-1.718 38 38 0 0 1-.371-.768v4.815q0 1.33-.39 2.271t-1.055 1.541a4.1 4.1 0 0 1-1.588.873 6.9 6.9 0 0 1-1.97.277 6.4 6.4 0 0 1-2.032-.304 4.2 4.2 0 0 1-1.559-.903 3.9 3.9 0 0 1-.988-1.511q-.342-.913-.342-2.149v-7.64q0-.172.152-.172Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/unilever.svg���������������������������������0000664�0000000�0000000�00000051457�14753064456�0025470�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.436 6.626c.115.846 1.392 1.99 1.746 1.96.234-.018.32-1.104.32-1.96 0-.488.03-.876-.23-.962-.41.828-1.487.995-1.836.962zm.072-.379c.928 0 1.774-.74 1.774-1.392 0-.3-.143-.555-.507-.598.063.082.091.14.091.287 0 .493-.746 1.034-1.56 1.034-.296 0-.382.205-.382.31-.005.26.234.36.584.36zm-.196-1.004c-.125 0-.302 0-.402-.196a.7.7 0 0 1-.063-.22c-.023-.125-.047-.249-.143-.316.153.048.306.048.435.048.402 0 .785-.278 1.081-.278.197 0 .254.125.254.25.01.392-.79.712-1.153.712zM1.372 12.232c.301 0 .24-1.856.732-1.856.115 0 .148.115.148.263 0 .421-.205 1.033-.205 1.373 0 .172.047.23.124.225.215 0 .588-2.043.952-2.043.115 0 .172.115.172.234 0 .426-.545 1.66-.545 2.005 0 .057.024.1.057.1.225 0 .67-.961.813-1.444.082-.25.187-.383.287-.383.091 0 .173.1.173.306 0 .483-.445 1.612-.837 2.373-.302.588-.775 1.435-.775 1.909 0 .239.047.492.387.789-.57-.034-.804-.091-1.014-.536-.952 1.894 1.76 1.713.832 3.397-.167-.302-1.507-.613-1.507-2.378 0-1.526 1.335-2.416 1.335-3.047a.41.41 0 0 0-.158-.33c-.296-.249-.301-.455-.536-.455-.167 0-.373.393-.162.742.072.115.138.182.138.296 0 .25-.392.919-.67.914-.277 0-.487-.684-.487-1.789 0-.98.225-1.971.497-1.971.082 0 .1.058.1.124 0 .115-.033.35-.033.742.005.416.096.45.182.44m2.272 2.612c.373 0 .684-.277.684-.89v-.909c0-.349.03-.741.259-1.014-.029.115-.029.24-.029.354 0 .765.421 1.292.421 2.033 0 .278-.081.426-.292.421-.205 0-.186-.186-.234-.186-.034 0-.091.114-.091.239 0 .181.139.478.502.483.32 0 .579-.292.579-.622 0-.804-.622-1.693-.622-2.55 0-.373.1-.622.177-.818 0 1.77 1.507 3.062 1.507 3.803a.297.297 0 0 1-.311.302.29.29 0 0 1-.301-.287c0-.063-.01-.082-.034-.082-.052 0-.215.177-.215.412 0 .296.24.65.684.65.507 0 .785-.43.785-.813 0-.938-1.828-2.354-1.828-3.87 0-.258.043-.68.23-1-1.177.756-1.54 1.765-1.54 2.65 0 .766-.03 1.148-.422 1.148-.205 0-.258-.186-.33-.186-.052 0-.081.163-.081.206.01.335.244.516.488.516h.014zM19.833 4.64c-.172 0-.454.187-.679.187-.282-.005-.2-.36-.512-.36a.5.5 0 0 0-.23.063c-.645.325-1.148.201-1.262.278-.029.014-.053.038-.062.09 0 .67.712 1.703 1.899 1.703.813 0 1.497-.277 1.497-.731 0-.397-.383-1.23-.65-1.23m-.741 1.301c-.655 0-1.086-.354-1.081-.588 0-.029.019-.048.052-.048.106 0 .393.144.766.206.435.072.67.081.784.081.115 0 .168.029.168.062 0 .11-.297.287-.69.287M3.832 18.207c-.292.072-.766.536-.766 1.268 0 .87.938 2.215 2.478 2.215 1.301 0 1.622-.9 1.622-1.507 0-1.345-.828-2.292-1.909-2.292-.588 0-1.114.43-1.114 1.062 0 .593.445 1.474 1.507 1.474.497 0 .794-.36.794-.766 0-.402-.364-.952-.9-.952-.162 0-.277.105-.277.278 0 .215.296.42.665.425.09 0 .162-.019.196-.033.02.024.024.067.024.105 0 .206-.196.33-.498.33-.454 0-.89-.34-.89-.875 0-.32.278-.55.68-.55.794 0 1.268.708 1.268 1.406 0 .632-.35 1-1.062.995-1.436.005-2.124-1.287-1.818-2.583m11.055 2.837c-.091-.173-.02-.47-.287-.47-.182 0-.196.144-.215.26-.388-.11-.708-.168-.995-.168q-.308 0-.536.081c-.1-.182-.54-.526-.923-.65-.149.803-.871 1.434-1.943 1.525-.062.527-.473.66-.794.66-.23.005-.598-.076-.617-.167-.124-.756-.698-1.181-.947-1.282.01.081.02.168.02.249 0 .64-.44 1.043-1.259 1.043a2.5 2.5 0 0 1-.42-.034c.937 1.043 1.606.66 2.042.857.569.258 1.033 1.052 2.86 1.052.665 0 1.345-.258 1.79-.545.08.268.358.507.813.507.775 0 1.21-.24 1.21-.436 0-.052-.005-.134-.139-.134s-.115.034-.54.034c-.493-.005-1.297-.196-1.674-1.057-.068-.144-.173-.144-.206-.144-.249 0-.632.885-2.2.885-.656.005-.962-.244-.962-.301 0-.01 0-.02.033-.02.062 0 .306.03.608.03.99 0 1.789-.455 2.272-.981.167-.187.249-.216.392-.216.125 0 .259.11.32.278.22.57.728 1.024 1.283 1.024.75 0 .76-1.282.937-1.345a.3.3 0 0 0 .106.02c.09 0 .234-.067.234-.235 0-.182-.22-.23-.263-.32m-1.215.961a.36.36 0 0 1-.354-.359c0-.2.158-.358.354-.358s.359.162.359.358a.36.36 0 0 1-.36.36m6.424-5.18c-1.31 0-.97 1.147-2.502 1.497-.282.062-.363.153-.363.277 0 .235.13.536.292.536.665 0 1.703-1.383 1.89-1.383v-.009c.078.005.157.012.152.196 0 .502-1.444 1.158-1.444 1.517 0 .215.512.67 1.01.67.721.004 1.367-1.474 1.52-1.474.12 0 .163.086.163.177 0 .402-.488 1.186-1.344 1.526-.177.071-.206.153-.206.215 0 .196.225.488.43.488.25 0 1.924-1.459 1.924-2.636 0-1.105-.8-1.598-1.521-1.598m.603 1.267a.6.6 0 0 1-.263-.067c-.115-.052-.32-.225-.32-.488 0-.239.134-.34.258-.34.383 0 .784.34.79.608 0 .215-.207.287-.465.287M3.727 6.874a.36.36 0 0 0 .354.359.357.357 0 0 0 0-.713.367.367 0 0 0-.36.354zm-.464-.799c0 .197.157.354.354.354a.36.36 0 0 0 .358-.358c0-.197-.162-.36-.358-.36s-.354.173-.354.364M2.942 8.51c-.206.053-.631.302-.631.747 0 .32.253.526.56.526.162 0 .277-.034.349-.091a1.04 1.04 0 0 1-.34-.775c0-.177.029-.292.062-.407m-2.186.13c-.01.042-.01.09-.01.133 0 .421.216.651.512.651.22 0 .483-.134.713-.426a2 2 0 0 1-.32.029c-.321 0-.685-.091-.895-.388m-.311.798c0 .675.206.995.57 1 .286 0 .669-.206 1.123-.598-.349.081-.617.134-.856.139-.32-.005-.564-.13-.837-.54zm2.31-3.568c.043-.144.082-.32.082-.517 0-.426-.196-1.076-.804-1.076a.594.594 0 0 0-.598.607c0 .708.708.99 1.32.986m.45.899c-.115-.153-.072-.292-.143-.364-.043-.043-.168-.043-.33-.062a2 2 0 0 0-.197-.01c-.291 0-.64.039-1.033.288-.77.488-.66 1.31-.78 1.511a.2.2 0 0 0-.028.1c0 .082.09.173.172.168.072 0 .115-.019.153-.019.215 0 .46.148.799.153.206 0 .445-.062.746-.215.641-.32.89-1.115.89-1.249 0-.167-.134-.148-.249-.301m-1.21 1.349c-.292 0-.613-.364-.613-.694 0-.177.134-.401.23-.401.034 0 .057.024.057.09.053.436.345.684.608.814.029.024.048.024.048.043 0 .052-.168.143-.33.148m.837-.55c-.311 0-.56-.474-.56-.742 0-.167.1-.186.23-.186.062 0 .09.01.139.033.076.043.076.216.177.354.062.082.23.182.23.254 0 .124-.072.287-.216.287zm.852.21c-.197.23-.402.622-.402 1.029 0 .478.296.88.756.88.435 0 .64-.373.64-.756-.004-.603-.545-1.024-.995-1.153m-1.91-1.712s-.258.196-.578.196a.67.67 0 0 1-.684-.684.75.75 0 0 1 .473-.703c-.01.052-.01.095-.01.153-.004.502.278.89.8 1.038M17.49 9.022c0 .206.172.378.378.373a.374.374 0 0 0 0-.746.38.38 0 0 0-.378.373m.024 1.124c0 .23.182.421.421.421a.42.42 0 0 0 .421-.42.42.42 0 0 0-.42-.422.43.43 0 0 0-.422.421m-1.282.76c0 .345.273.618.617.618.34 0 .617-.277.617-.617s-.277-.617-.617-.617a.62.62 0 0 0-.617.617m.33-1.262a.36.36 0 0 0 .354.359c.196 0 .36-.163.36-.36s-.164-.358-.36-.358a.36.36 0 0 0-.349.364zm-1.167.718c0 .196.158.353.354.353s.359-.157.359-.354-.163-.354-.359-.354a.363.363 0 0 0-.354.355m.918-2.091c0 .306.264.57.57.57s.57-.26.57-.57-.26-.57-.57-.57a.577.577 0 0 0-.57.57m.665-1.09c0 .181.149.344.345.339a.34.34 0 0 0 .34-.34.34.34 0 0 0-.34-.34c-.191.005-.35.154-.344.34m-1.612.856c0 .181.149.344.33.34a.34.34 0 0 0 .34-.34.34.34 0 0 0-.34-.34.34.34 0 0 0-.33.34m-.043 1.162c0 .306.24.55.536.545a.54.54 0 0 0 .545-.545.54.54 0 0 0-.545-.545.53.53 0 0 0-.536.545m-1.124.564c0 .273.23.503.502.507a.51.51 0 0 0 .507-.507.513.513 0 0 0-.507-.507.51.51 0 0 0-.502.507m.301-1.258c0 .196.158.354.354.354s.36-.162.36-.358-.163-.36-.36-.36a.35.35 0 0 0-.349.36H14.5zm3.134 2.751c0-.177.162-.33.335-.33.196 0 .344.148.344.33 0 .206-.153.35-.35.344a.33.33 0 0 1-.33-.344zm.301 9.367c.072-.063.091-.163.091-.259v-.205c0-.259-.392-.412-.928-.412-.65 0-1 .292-1 .416v.412c0 .172.388.344.88.344.378 0 .728-.1.957-.296m.464.095c-.23.177-.775.58-1.674.584-.483 0-.694-.153-.766-.153-.09 0-.186.09-.287.206-.21.248-.488.712-.488 1.224 0 .354.273.708.79.713 1.67 0 2.913-1.043 2.913-1.89.005-.48-.283-.685-.488-.684m-.842 1.636c-.225.153-.526.278-.97.282.071-.215.124-.435.124-.65 0-.072-.01-.124-.02-.206h.115c.699-.005 1.005-.282 1.057-.277.043 0 .1.024.1.186 0 .196-.09.455-.406.665m1.153-9.132c0 .215.067.478.297.483.186 0 .349-.287.349-.598 0-.358-.062-.631-.062-.775 0-.062.028-.09.062-.09.134.009.263.377.402.377.162 0 .402-.296.497-.296.029 0 .034.033.034.043 0 .134-.206.43-.206.55 0 .1.512.115.512.206 0 .134-.54.134-.799.248-.249.106-.402.24-.402.421s.182.216.436.216c.598 0 1.014-.32 1.148-.32.028 0 .048.023.048.042 0 .091-.302.383-.302.512 0 .148.55.33.55.421-.01.029-.043.033-.105.033-.1 0-.249-.028-.368-.028-.072 0-.134.01-.163.043-.062.067.024.545-.105.545-.115 0-.421-1.052-1.105-1.052-.1 0-.168.081-.168.215 0 .354.345.765.675.962.148.1.402.196.402.253 0 .105-.57.01-.57.187 0 .158.067.401.067.545 0 .043-.01.096-.062.1-.105 0-.368-.488-.493-.488-.105 0-.34.292-.435.292-.024 0-.043-.028-.043-.052 0-.206.33-.67.33-1.124 0-.216-.029-.68-.287-.68-.215 0-.454.34-.56.675-.062.196-.019.952-.162.952-.134 0-.1-.507-.278-.507-.134 0-.416.239-.516.239-.02 0-.034-.01-.034-.029 0-.105.258-.454.258-.526 0-.134-.588-.153-.588-.258 0-.063.23-.106.445-.144.454-.081 1.124-.411 1.124-.875 0-.517-.497-.742-.827-.952-.168-.106-.36-.196-.36-.268s.216-.072.302-.072c.134 0 .268-.01.268-.115 0-.081-.019-.239-.019-.363 0-.091.01-.163.043-.163.134 0 .32.435.411.435.144 0 .34-.358.474-.358.043 0 .057.024.057.105-.004.335-.172.713-.172 1.033m-4.253-2.607c.1.756 1.12.378 1.12 1.292 0 .134-.034.33-.034.497 0 .196.024.364.173.364.153 0 .186-.106.186-.25s-.033-.32-.033-.42c0-.311.224-.383.358-.383.34 0 .594.345 1.11.35-.115.569-1.291.42-1.291 1.042 0 .306.306.388.512.388.186 0 .248-.029.248-.187 0-.09-.019-.186-.019-.249 0-.033.029-.071.072-.071.196 0 1.153.732 1.153.952 0 .205-1.014.411-1.311.411-.09 0-.105-.062-.105-.096 0-.062.153-.248.153-.358 0-.082-.134-.134-.493-.134-.167 0-.297.019-.297.153 0 .239.388.536.388.756 0 .177-.105.287-.392.287-.24 0-.603-.187-.603-.498 0-.249.258-.497.258-.65 0-.044-.033-.115-.138-.115-.33 0-.421.875-1.589.97.187-.167.35-.358.35-.74 0-.187-.043-.34-.043-.546 0-.268.124-.402.3-.402.331 0 .494.469.709.469.115 0 .24-.105.24-.268 0-.68-1.302-.579-1.302-1.53-.01-.269.086-.59.32-1.034zm2.995 5.554q.092.15.091.287c0 .249-.168.483-.168.741 0 .297.23.536.56.536.364 0 .617-.292.617-.64-.005-.48-.435-.881-1.1-.924m-2.952.57c.091.09.115.181.115.267 0 .134-.062.277-.062.426 0 .215.158.402.388.402a.417.417 0 0 0 .42-.426c.005-.335-.34-.67-.856-.67zm.216-1.053c.411.057.512.196.512.31 0 .197-.177.259-.35.259-.124 0-.268-.029-.42-.029-.197 0-.393.043-.556.23.115.024.287.1.287.277 0 .517-1.435.091-1.435 1.416 0 .708.732 1.474 1.842 1.469.57 0 .938-.187.938-.402 0-.167-.302-.053-.302-.196 0-.062.106-.177.106-.277 0-.043-.034-.125-.106-.125-.162 0-.464.258-1.08.263-.484 0-.953-.277-.953-.65 0-.082.034-.125.091-.125.053 0 .125.034.182.034.053 0 .062-.034.062-.134s0-.373.168-.373.492.626 1.727.626c.406 0 1.2-.08 1.497-.349-.01.98-.775 2.272-2.382 2.272-1.665 0-2.56-1.339-2.56-2.568a2.625 2.625 0 0 1 2.64-2.603c.393 0 .718.139.718.302 0 .248-.583.1-.626.373m.97-.469a.67.67 0 0 1 .163.454c0 .383-.291.775-.291 1.148 0 .503.33.814.784.814.498 0 .785-.421.785-.876 0-.66-.503-1.358-1.44-1.54m.68 1.411c-.124-.01-.215-.1-.215-.225 0-.067.043-.177.057-.263.02-.12-.01-.225.062-.225.163 0 .33.259.33.445 0 .144-.09.268-.234.268M8.95 5.511c-.454.01-.875.383-1.162.89a1.7 1.7 0 0 0 .029-.306c0-.694-.373-1.32-1.077-1.32-.569 0-1.086.33-1.3.97.061-.067.248-.181.4-.181.178 0 .23.153.23.392 0 .162-.038.349-.1.526-.11.292-.306.383-.411.383-.445 0-.244-.732-.47-.732-.186 0-.238.392-.238.545 0 .507.33 1.043 1.062 1.043.775 0 1.215-.368 1.688-.866.091.536.383 1.454 1.168 1.454.425 0 .731-.354.765-.765a.34.34 0 0 1-.225.096c-.163 0-.196-.23-.196-.436 0-.33.096-.684.249-.684.081 0 .124.053.143.292.015.187 0 .392.115.392s.187-.368.187-.617c0-.574-.268-1.076-.857-1.076M6.31 7.233c-.077 0-.096-.072-.1-.134 0-.35.382-1.909.66-1.909.066 0 .09.053.09.125 0 .277-.349 1.918-.65 1.918m1.186-.665c-.23.258-.354.364-.454.364-.053.004-.106-.086-.106-.192 0-.191.134-.904.402-.904.106 0 .177.196.177.373 0 .134 0 .244-.019.36zm.521.617c-.09.005-.138-.143-.157-.464.143-.239.239-.344.33-.344.038 0 .072.033.072.186v.005h.004c0 .311-.148.622-.249.617m.479.54c-.057 0-.1-.08-.096-.267 0-.483.311-1.364.498-1.364.052 0 .072.125.072.24 0 .535-.25 1.392-.474 1.392m-1.215.187c-.383 0-.402.464-.402 1.402-.287-.617-.756-1.272-1.31-1.272-.374 0-.517.248-.517.684 0 .09.01.23.024.3.043-.152.186-.214.363-.214.383 0 .847.296 1.153.693-.35-.062-.689-.124-.971-.124-.177 0-.34.019-.474.081-.258.115-.607.498-.607 1.077 0 .09.01.181.024.291.31-.693 1.138-1.009 1.674-1.009.105 0 .182.01.254.02-.278.248-.34.683-.36.98-.009.143-.061.153-.162.148 0 .297.23.732.23.952 0 .081-.043.153-.091.168 0 .387.387.674.387.923 0 .062-.019.115-.043.143.029.158.46.436.512.565.067.158.148.196.196.196.153 0 .392-.177.392-.34 0-.052-.043-.115-.08-.143-.168-.125-.26-.392-.33-.57-.063 0-.144-.023-.173-.129-.048-.186-.053-.526-.125-.732-.114-.028-.167-.071-.167-.31 0-.115.072-.57.072-.732-.053 0-.125-.034-.125-.144 0-.287.287-.507.364-.875.507.378.627.755.627 1.095 0 .177-.029.35-.062.507.373-.186.937-.464.937-1.024 0-.33-.153-.693-1.157-.837a3.2 3.2 0 0 1 1.033-.177c.569 0 .904.182.97.584.116-.177.207-.383.207-.57 0-.435-.364-.722-.828-.722-.545 0-1.024.287-1.54.627.234-.483.392-.765.679-.765.043 0 .09.01.139.019-.096-.383-.503-.77-.713-.766m15.02 6.425c.446 0 .8.584.8 1.258 0 .722-.34 1.507-.943 2.047-.01-1.2-1.483-.818-1.483-1.693 0-.373.268-.622.589-.622.287 0 .502.081.674.24a.78.78 0 0 1-.239-.57c-.005-.35.21-.66.603-.66m-6.615-9.118c-.072-.115-.34-.177-.464-.177-.392 0-.66.277-.713.526a.9.9 0 0 1-.062-.301c0-.392.268-.876.918-.876.57 0 .79.297.871.297.09 0 .177-.09.249-.09.095 0 .1.147.1.257 0 .354-.162.971-.564 1.201a.9.9 0 0 0-.445-.426.15.15 0 0 1-.091-.134c.005-.105.096-.23.2-.277zm-1.344.65c.23.23.435.321.684.321.1 0 .215-.029.277-.029.081 0 .139.034.139.1 0 .101-.091.26-.196.35.105.048.23.057.344.062.507 0 1.086-.32 1.086-1.124.105.139.172.435.172.57 0 .97-.712 1.344-1.373 1.344-.43 0-.64-.144-.698-.144-.167 0-.158.34-.277.33-.206-.033-.393-.488-.393-.97 0-.288.077-.599.24-.819h-.005zM6.712.202c0-.053-.268-.105-.632-.105-.579 0-.497.483-.942.478-.464 0-.35-.497-.938-.497-.359 0-.684.062-.684.143 0 .1.421.058.421.354 0 .311-.9.402-.9.588 0 .058.068.091.158.091.197 0 .508-.09.732-.09.125 0 .24.023.24.143 0 .225-.484.622-.484.804 0 .057.048.067.091.071.177 0 .483-.454.766-.454.473 0 .158 1.005.42 1.01.269 0 .154-.99.536-.99.311 0 .55.683.756.683.053 0 .096-.043.096-.105 0-.187-.268-.57-.268-.818 0-.153.105-.225.249-.225.206 0 .478.124.627.124.052 0 .105-.019.105-.08 0-.216-.794-.446-.794-.723.01-.273.45-.273.445-.402m2.095.909c0 .158.56.502.823.507.153 0 .196-.206.196-.421 0-.268-.115-.277-.35-.277-.296.004-.67.086-.67.19zm.928 1.765c0-.536-1.445-1.507-1.464-1.923q.002-.059.053-.11C8.572.58 9.6.392 9.6.167c0-.114-.215-.114-.32-.114-.828 0-2.043.3-2.043.598 0 .306 1.086 1.038 1.086 1.406 0 .1-.062.134-.163.139-.301 0-.961-.364-1.272-.364-.144 0-.197.096-.197.24 0 .42.503 1.234.503 1.473 0 .028-.01.062-.043.062-.163 0-.919-.89-1.187-.89-.095 0-.105.134-.105.33v.302c0 .205-.01.33-.105.33-.23 0-.34-.651-.56-.651-.23 0-.277 1.158-.497 1.153-.259 0-.034-1.273-.287-1.273-.278 0-.589.847-.785.847-.072 0-.09-.072-.09-.134 0-.258.152-.68.152-.928 0-.124-.033-.196-.143-.196-.278 0-.885.445-1.115.445-.033 0-.081-.02-.081-.053 0-.215.97-.89.97-1.196 0-.296-1.338-.1-1.338-.435 0-.287.952-.579.952-.875 0-.259-1.134-.373-1.57-.373C.837.01.55.072.55.225c0 .23 1.2.306 1.2.502S.513 1.45.513 1.751c0 .263 1.746.024 1.746.296C2.258 2.35.732 3.66.732 4.095c0 .1.067.139.172.143.464 0 1.665-.88 1.995-.88.115 0 .124.139.124.263 0 .235-.081.589-.081.847 0 .206.057.344.23.35.33 0 .631-.56.856-.56.287 0 .115 1.645.55 1.65.363 0 .517-1.784.746-1.784s.421.511.627.511c.268 0 .143-.899.43-.899.311 0 1.201 1.076 1.598 1.072.124 0 .168-.1.168-.225 0-.474-.66-1.54-.66-1.88 0-.091.023-.115.124-.115.349 0 1.358.478 1.842.478.181.02.277-.071.282-.191m-8.142-.517c0 .177-.68.775-.918.775-.091 0-.115-.105-.115-.205 0-.177.081-.426.177-.507.115-.106.382-.158.588-.158.13 0 .268.024.268.095m6.554.919c0 .306 1.12 1.842 1.325 1.837.177 0 .31-.311.31-.579a.4.4 0 0 0-.052-.196c-.163-.225-1.292-1.115-1.54-1.115-.024-.004-.048.02-.043.053M23.507.172c-.445 0-.521-.138-.823-.138-.363 0-.622.248-.622.621 0 .125.044.32.044.58 0 .315-.063.607-.34.607-.253 0-.354-.168-.354-.364 0-.354.187-.593.187-.827 0-.426-.527-.55-1.077-.55-.66 0-1.373.177-1.373.267 0 .153.952.063 1.622.919-.435.01-1.282.206-1.282.32 0 .144 1.516.307 1.516.938.005.416-.33.46-.459.464-.502 0-.77-.512-.904-.512a.07.07 0 0 0-.072.072c0 .081.072.292.072.517 0 .569-.631.631-.631.746 0 .043.019.062.09.072a9 9 0 0 0 1.383.105c1.612 0 2.932-.503 2.932-1.909 0-.775-.239-1.024-.239-1.402 0-.124.091-.382.33-.526M21.221 3.22c-.1 0-.216 0-.33-.01 1.042-.167 1.621-.77 1.621-1.564.235.067.378.306.373.56 0 .463-.444 1.014-1.664 1.014M22.689.793c-.129-.005-.23-.096-.23-.22 0-.13.106-.22.23-.225a.225.225 0 0 1 .225.225c0 .124-.1.225-.225.22m.56 11.581c-.416 0-.66.732-1.067.775.258-1.071 1.32-1.621 1.32-2.621 0-1.134-.952-1.53-1.349-1.784-.665-.938-1.138-1.68-2.205-1.68-.454 0-.741.082-1.052.082-.603-.005-.79-.235-.833-.235-.01 0-.019.01-.019.043 0 .828.436 2.727 2.354 2.727 1.024 0 1.464-.392 1.703-.392.258 0 1.086.282 1.086 1.23 0 .525-.416 1.061-.57 1.061-.148.005-.306-.234-.306-.488 0-.282.153-.799.153-1.119 0-.12-.019-.177-.09-.177-.163 0-.929.478-.929 1.096 0 .526.775.846 1.067 1-.292.482-.469.793-.612 1.238 0-.335-.32-1.019-.421-1.306-.493-1.34-.665-1.588-1.68-1.703.154.536 1.9 1.828 1.9 3.148 0 .081-.01.196-.02.24-.525-1.541-1.43-1.895-1.76-2.273-.535-.588-.23-1.158-1.086-1.478a.43.43 0 0 1 .072.258c0 .282-.162.641-.162.89 0 .928 1.09.65 1.722 1.158.622.502.97 1.32 1.23 2.229.248-.397.391-.88.836-.88.287 0 .383.358.383.607 0 .053 0 .1-.01.134.426-.364.651-.952.651-1.344 0-.263-.09-.436-.306-.436m-1.66-3.496c-.09 0-.263-.048-.378-.048-.306 0-.521.42-.68.42-.057 0-.08-.052-.08-.1 0-.172.3-.378.3-.493 0-.08-.128-.105-.18-.105-.307 0-.733.416-.972.416-.043 0-.1-.024-.1-.08 0-.116.32-.278.32-.403 0-.11-.139-.134-.23-.134-.148 0-.445.082-.631.082-.1 0-.182-.02-.182-.1 0-.183.579-.063.579-.278 0-.105-.182-.302-.182-.402 0-.038.048-.067.091-.067.206 0 .421.56.66.56.106 0 .134-.082.134-.197s-.024-.172-.024-.272c0-.105.043-.134.077-.134.148 0 .282.803.694.803.181-.004.052-.492.215-.492.1 0 .124.143.134.225.043.526.516.545.516.732 0 .019-.028.067-.081.067M17.006.057c-.598 0-1.033.292-1.268.292C15.6.36 15.386 0 15.276 0c-.044 0-.092.09-.092.24 0 .1 0 .41-.105.41-.215 0-1.042-.612-1.042-.392 0 .206.55.833.55.995s-.546.311-.546.421c0 .196.584.23.584.483 0 .25-.608.445-.608.627 0 .148.608.048.608.23 0 .186-.445.813-.445.99 0 .048.01.048.048.048.167.005.68-.579.799-.579.143 0 .172.344.196.555.019.1.033.115.081.115.105 0 .278-.412.392-.412.168 0 .627.47 1.383.474 1.076 0 2.095-.756 2.095-2.095 0-1.292-.909-2.053-2.167-2.053M15.48 2.932c-.029 0-.043-.033-.043-.08l-.019-.355c0-.033-.02-.072-.062-.072-.105 0-.311-.01-.373-.01q-.063 0-.062-.028c.009-.067.363-.32.368-.378 0-.1-.35-.287-.35-.392 0-.02.02-.029.044-.029.1 0 .263.034.401.034.115 0 .134-.498.22-.498.063 0 .173.469.264.469.114 0 .33-.134.42-.134.02 0 .034.01.034.029 0 .062-.225.301-.225.378 0 .081.503.181.503.248 0 .091-.507.082-.507.163 0 .057.181.306.181.387q0 .03-.028.03c-.072 0-.35-.125-.431-.125-.1 0-.258.363-.335.363m1.545.77c-.626 0-1.033-.31-1.033-.473 0-.081.053-.134.124-.134.197 0 .627.297.766.297.033 0 .062-.02.062-.072 0-.163-.153-.426-.153-.56 0-.033.029-.062.081-.062.24 0 .593.1.79.1.062 0 .08-.033.08-.071 0-.196-.578-.58-.578-.694 0-.105.722-.268.722-.435 0-.177-.98-.053-.98-.225 0-.124.186-.34.186-.435q-.001-.064-.095-.063c-.082 0-.507.168-.69.168-.09 0-.195-.02-.195-.144 0-.205.349-.425.894-.425.88 0 1.407.607 1.407 1.621-.005 1.287-.9 1.608-1.388 1.608m-6.037 15.423a.4.4 0 0 1-.1.259c-.096-.177-.373-.268-.498-.268-.918 0-.569 1.33-1.55 1.33-.411 0-.444-.053-.598-.053-.062 0-.1.029-.1.081 0 .23.33.8 1.244.804.918 0 1.798-.56 1.798-1.258a.95.95 0 0 0-.081-.364c.034-.052.124-.09.206-.09.143 0 .215.157.354.162a.24.24 0 0 0 .248-.249c0-.114-.062-.196-.167-.248a.3.3 0 0 0 .124-.24c0-.153-.105-.291-.287-.291-.08 0-.134.028-.196.086-.019-.158-.105-.311-.277-.311-.134 0-.235.095-.235.253.02.125.115.24.115.397zm-2.87-.645c-.062 0-.143.01-.23.01a.43.43 0 0 1-.268-.082c-.143-.125-.186-.794-.454-1.196-.292-.445-.612-.57-1.052-.57-.311 0-.66.168-.66.422 0 .153.086.258.65.406.713.182 1.076.56 1.143 1.014.072.436.158.79.33.971.225.254.665.47 1.039.47.32 0 .578-.106.578-.403 0-.32-.435-1.042-1.076-1.042m.474.98c-.268 0-.67-.287-.67-.445 0-.134.124-.205.225-.205.225 0 .626.272.626.507-.004.062-.047.138-.181.143m2.133-3.922c-.411-.149-.593-.388-.674-.857-.201.273-.297.531-.297.684 0 .603.828.613.828 1.014-.005.235-.421.474-.971.479-.641-.005-1.072-.105-1.474-.507-.105-.115-.153-.216-.287-.216-.153 0-.215.268-.215.508 0 .875.832 1.908 1.99 1.908 1.445-.005 2.004-1 2.004-1.803 0-.469-.11-.914-.904-1.21m-.426 2.44c-.114 0-.138-.073-.138-.173 0-.081.028-.234.028-.35 0-.315.12-.291.426-.43h-.005c.216-.1.297-.234.364-.234.081 0 .153.053.153.177 0 .464-.507 1.01-.828 1.01m-2.525-5.459c0-.57 1.353-.875 1.353-1.579 0-.114-.043-.32-.124-.473.474.263.823.698.823 1.052 0 .617-.641.9-.641 1.282 0 .445.684.512.684 1.072 0 .454-.65.98-.65 1.569 0 .46.32.832.813.89-.163.033-.302.062-.455.062-.9 0-1.827-.742-1.827-1.622 0-.435.186-.818.473-1.095.249.215.503.354.665.354.144 0 .206-.072.206-.177-.01-.326-1.316-.636-1.32-1.335m-2.555 3.755c-.033-.32-.325-.56-.622-.521a.57.57 0 0 0-.296.12c-.082-.268-.33-.498-.675-.445a.575.575 0 0 0-.483.65.7.7 0 0 0 .048.177s-.053.01-.091.014c-.259.048-.546.311-.498.651.039.306.32.536.641.498a.7.7 0 0 0 .297-.091.54.54 0 0 0 .627.425c.33-.043.55-.3.516-.631a.7.7 0 0 0-.052-.206l.076-.01c.32-.062.54-.32.512-.63m-1.249.67a.34.34 0 1 1-.08-.675.337.337 0 0 1 .377.297.34.34 0 0 1-.297.378"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/uniqlo.svg�����������������������������������0000664�0000000�0000000�00000001637�14753064456�0025141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm3.006 3.236h1.52v5.051a1.007 1.007 0 1 0 2.014 0v-5.05h1.517v5.056a2.525 2.525 0 1 1-5.051 0zm7.07 0h1.514l2.023 4.328V3.236h1.516v7.575h-1.516L11.59 6.482v4.329h-1.514zm7.569.01h1.488v7.576h-1.488zM5.533 13.078a2.526 2.526 0 0 1 2.524 2.53v2.523a2.5 2.5 0 0 1-.75 1.793l.75 2.248H6.539l-.518-1.563a2.5 2.5 0 0 1-.488.043 2.524 2.524 0 0 1-2.527-2.521v-2.524a2.527 2.527 0 0 1 2.527-2.529m4.547 0h1.514v6.057h3.535v1.517H10.08zm8.336 0a2.526 2.526 0 0 1 2.523 2.53v2.523a2.525 2.525 0 0 1-2.523 2.521 2.53 2.53 0 0 1-2.531-2.521v-2.524a2.533 2.533 0 0 1 2.531-2.529m-12.88 1.52a1.007 1.007 0 0 0-1.01 1.01v2.523c0 .552.45 1.006 1.01 1.006.558 0 1.003-.454 1.003-1.006v-2.524c0-.559-.445-1.01-1.004-1.01zm12.88 0a1.01 1.01 0 0 0-1.012 1.01v2.523c0 .552.453 1.006 1.012 1.006a1.01 1.01 0 0 0 1.01-1.006v-2.524c0-.559-.455-1.01-1.01-1.01z"/></svg>�������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/uniqlo_ja.svg��������������������������������0000664�0000000�0000000�00000000567�14753064456�0025614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 .01v23.98h24V.01Zm4.291 3.28h4.553l.006 5.803h1.511v1.511h-6.82v-1.51h3.783v-4.29H4.291zm10.11 0h5.302v1.514H14.4zm-.762 5.807h6.816v1.511H13.64zM4.29 13.385l6.072.002-1.513 7.322H2.777l.305-1.516h4.553l.892-4.29H5.49l-.457 2.148H3.521Zm9.348 0h6.816v7.324H13.64zm1.517 1.517v4.291h3.787v-4.29z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/unitedairlines.svg���������������������������0000664�0000000�0000000�00000007627�14753064456�0026656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.327 3.067c8.654 0 15.695 7.068 15.695 15.754 0 1.762-.298 3.515-.875 5.179H24V0H0v4.003l.019-.007a15.6 15.6 0 0 1 5.308-.929M0 10.534c.975-1.389 1.116-2.983.26-3.761a1.6 1.6 0 0 0-.26-.19zm5.027-5.057c-.863-.99-2.3-1.33-3.969-1.092l-.135.02a8 8 0 0 0-.386.077C.28 4.542.104 4.6 0 4.64v.5a9 9 0 0 1 .505-.37q.5-.106.968-.136C.99 4.91.434 5.283 0 5.627v.385l.015.009s1.224-.969 2.196-1.386q.351.026.672.099A14.6 14.6 0 0 0 .284 6.168c.15.088.285.199.303.213.019-.012 1.427-.892 2.977-1.42.21.096.413.216.589.351-1.688.474-3.31 1.321-3.31 1.321q.137.16.242.344l.029-.011c1.727-.74 3.562-1.118 3.562-1.118q.216.295.352.658s-1.647.188-3.765.868c.093.292.119.512.119.515 0 0 1.997-.447 3.839-.497.026.296.016.628-.026.969-1.09-.058-3.69.08-3.791.089 0 0-.01.374-.107.726 0 0 1.899.061 3.626.383a8.4 8.4 0 0 1-.507 1.22c-1.15-.346-2.897-.766-3.357-.871a5.6 5.6 0 0 1-.453.88s2.134.93 2.953 1.386h.002v.001c-.356.532-1.06 1.277-1.06 1.277l-.58-.43-1.916-1.337L0 11.68v1.765l1.107 1.292c-.364.294-.736.562-1.107.802v1.053l.041-.026a16 16 0 0 0 1.492-1.151c3.819-3.323 5.383-7.773 3.495-9.94m4.701.184C7.917 3.221 5.08 3.57 4.234 3.688c-.929.13-1.631.334-1.631.334.207.019.49.056.694.097.15-.036 1.454-.333 2.402-.209h.003c-.697.076-1.647.363-1.746.394h-.002a3.2 3.2 0 0 1 .663.3c.102-.026 1.392-.369 2.623-.393 0 0 .455.202.893.503-1.59-.006-2.907.3-2.942.308.186.165.371.364.537.603 1.744-.262 3.248-.148 3.248-.148s.204.25.296.383a5 5 0 0 1 .327.563c-1.779-.208-3.48-.059-3.482-.059q.176.455.24.968c.197-.002 1.704.001 3.623.346q.092.662.02 1.41a26 26 0 0 0-3.622-.65q-.053.646-.242 1.336c.192.045 2.317.552 3.506 1.034a12 12 0 0 1-.707 1.76c-.958-.472-3.307-1.39-3.307-1.39a13 13 0 0 1-.858 1.588s2.014 1.15 2.984 1.786a18 18 0 0 1-1.511 1.875c-.704-.63-2.464-1.994-2.597-2.097a25 25 0 0 1-1.496 1.596l2.112 2.422-.06.053c-.458.38-.95.736-1.366 1.022-.361.245-.66.435-.762.501a303 303 0 0 1-1.615-2.596q-.228.168-.458.326v4.539q.373-.179.745-.376a19 19 0 0 0 3.422-2.19 22 22 0 0 0 2.125-1.93 19 19 0 0 0 2.2-2.704c2.329-3.438 2.952-7.023 1.236-9.333m3.701.829a3.5 3.5 0 0 0-.4-.468 5 5 0 0 0-.4-.344c-1.502-1.133-4.268-1.7-4.268-1.7.264.141.484.285.485.286.013.004 1.128.283 2.117.767 0 0-.9-.204-1.476-.284.238.21.465.45.664.703 0 0 1.835.335 2.64.776 0 0 .386.397.701 1.093-1.257-.51-2.682-.777-2.682-.777.19.424.325.878.408 1.35 0 0 1.566.383 2.742.948.102.559.14 1.136.118 1.72a22 22 0 0 0-2.77-1.134 9.3 9.3 0 0 1-.287 1.865s1.898.847 2.75 1.362a13.3 13.3 0 0 1-.77 2.201c-1.299-.844-2.673-1.594-2.673-1.594-.346.83-1.195 2.187-1.195 2.187.022.015 1.436.986 2.52 1.847a21 21 0 0 1-1.807 2.346 304 304 0 0 0-2.312-2.068 22 22 0 0 1-2.095 2.12l2.008 2.273c-1.302 1.074-2.601 1.887-2.601 1.887L3.17 21.47s-1.18.897-3.17 1.84V24h6.537c7.297-5.52 9.886-13.415 6.892-17.511M12.967 24c1.704-1.905 3.155-4.147 4.027-6.547.757-2.082 1.169-4.625.5-6.887a6 6 0 0 0-.155-.45 5.4 5.4 0 0 0-.794-1.415 15.2 15.2 0 0 0-2.749-2.413q.226.288.402.589s1.231.913 1.946 1.84c-.917-.652-1.436-.917-1.503-.95l-.008-.004c.348.859.453 1.57.453 1.57s1.088.568 2.067 1.416c.136.627.192 1.27.183 1.913-.987-.869-2.13-1.547-2.13-1.547a11.7 11.7 0 0 1-.284 2.204s1.079.683 2.13 1.64c0 0-.302 1.358-.789 2.424a26 26 0 0 0-2.069-1.726s-.5 1.305-1.312 2.616a61 61 0 0 1 1.959 1.789 21.4 21.4 0 0 1-1.943 2.57v.001l-1.807-1.798a24 24 0 0 1-2.392 2.55c.04.046.404.45.553.615zm3.213 0h.902c2.567-3.792 2.696-7.153 2.696-7.797 0-1.216-.204-2.334-.546-3.219 0 0-.532-1.375-1.362-2.6a12 12 0 0 1 .377 1.413c.163.273.9 1.572.999 3.001v.004s-.52-.729-.907-1.19a12 12 0 0 1-.28 2.33s.772.894 1.117 1.47c0 0-.235 1.258-.738 2.462-.512-.745-1.166-1.468-1.166-1.468a19 19 0 0 1-1.406 2.778s.978 1.144 1.192 1.47c-.287.484-.567.905-.878 1.346m3.27 0c.194-.525.369-1.085.512-1.654a15.2 15.2 0 0 0 .28-5.658c-.069.998-.243 1.873-.243 1.873.041.132.114.349.147.482v.001a18 18 0 0 1-.575 2.995c-.131-.484-.307-.95-.318-.98h-.001c-.353.94-.881 2.05-1.361 2.941Z"/></svg>���������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/unitednations.svg����������������������������0000664�0000000�0000000�00000043046�14753064456�0026516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.024 20.255a3.12 3.12 0 0 1-2.048.242 7 7 0 0 1-1.366-.463l-.968-.396a4.74 4.74 0 0 0-2.599-.066h-.088a4.36 4.36 0 0 0-2.598.066c-.33.11-.639.264-.969.396-.44.199-.903.375-1.365.485a3.14 3.14 0 0 1-2.048-.242l-.088-.044c-.022 0-.022 0-.022.022a3.34 3.34 0 0 0 2.752.991 4 4 0 0 0 1.718-.661l.925-.617a1.57 1.57 0 0 1 1.167-.22c.22.022.044.132.022.154a8.8 8.8 0 0 0-1.564.97c-.33.241-.925.814-.925.814l.44.374.485-.528a8.7 8.7 0 0 1 2.026-1.564.165.165 0 0 1 .198 0 8.7 8.7 0 0 1 2.026 1.564l.485.528.44-.374-.925-.815a8.8 8.8 0 0 0-1.563-.969c-.044-.022-.198-.132.022-.154.396-.088.814 0 1.167.22l.925.617a4 4 0 0 0 1.717.66c.397.045.815.023 1.211-.088a3.76 3.76 0 0 0 1.542-.902s-.022-.022-.044-.022zm2.157-1.916a3.1 3.1 0 0 1-.924.484c-.463.133-.97.22-1.454.22-.638.023-1.255.067-1.893.155-.044 0-.066 0-.044-.022.55-.22.99-.66 1.233-1.19l.616-1.254v-.045c-.044.022-.66.551-.947.815l-1.035 1.013a4 4 0 0 1-1.607.837h-.022l-.022.022 1.189.286a7.5 7.5 0 0 0 1.563.286 3.67 3.67 0 0 0 3.392-1.585c0-.022-.023-.022-.045-.022m1.938-2.95a4.6 4.6 0 0 1-1.1.968c-.353.242-.727.44-1.124.617a5.5 5.5 0 0 0-1.387.814l-.088.067c-.022 0-.022 0-.022-.023 0-.022.66-.682.859-2.07.022-.506.11-.99.22-1.475v-.044a6.4 6.4 0 0 0-1.057 1.894l-.396 1.123c-.155.506-.44.969-.815 1.343l-.044.044v.022c.044 0 .088-.022.132-.022l1.277-.264a4.45 4.45 0 0 0 1.938-.815 4.5 4.5 0 0 0 1.387-1.63c.088-.175.154-.352.22-.528.044-.044.022-.044 0-.022m.837-3.303a3.9 3.9 0 0 1-1.013 1.586 15 15 0 0 0-1.453 1.651c0 .022-.044 0-.022-.022a4.45 4.45 0 0 0 .132-1.871c-.088-.529-.308-1.101-.374-1.74l-.023-.022c0 .022-.022.044-.022.066a6.3 6.3 0 0 0-.264 1.277c-.022.529.066 1.211.022 1.74-.044.616-.088 1.255-.374 1.805v.044l1.321-.814a5 5 0 0 0 1.387-1.322A3.95 3.95 0 0 0 24 12.151v-.088c-.022 0-.044.022-.044.022m-1.41.353q.034 0 0 0c0 .022 0 0 0 0 0-.177 0-.353-.021-.529-.044-.616-.419-1.123-.749-1.651a8 8 0 0 1-.595-1.057s-.022-.022-.044-.022c0 .044 0 .242.022.352.11.88.33 1.762.661 2.598.198.529.264 1.08.22 1.63 0 .044 0 .044.022.066.198-.286.595-.683.837-.991s1.563-1.806.925-3.875c-.022-.089-.066-.177-.11-.265l-.022.022c0 1.498-.727 2.136-1.013 3.15a5 5 0 0 0-.132.572m.022-3.083-.132-.352-.088-.199a3.1 3.1 0 0 0-.903-1.013 4.3 4.3 0 0 1-.793-.88h-.066c.022.066.22.726.352 1.035.22.418.485.836.793 1.189l.066.088q.56.76.859 1.651c0 .022.022.022.022.022l.374-1.145c.132-.396.242-.815.33-1.233.133-.99-.176-2.246-.748-2.95 0 0-.022.021-.022.044l.022.088.044.132c.11.528.132 1.1.022 1.63-.088.418-.11.858-.11 1.298 0 .066.044.617.044.639s-.022 0-.044 0m-1.784-5.571c.176.176.33.374.419.616.154.375.198.925.308 1.344l.198.726c0 .022-.022.044-.044.022a4.3 4.3 0 0 0-1.19-.99c-.307-.177-.55-.419-.77-.683l-.11-.154s-.022-.022-.044 0v.066c.11.484.33.947.683 1.32.286.265.594.507.88.75a9.6 9.6 0 0 1 1.057 1.057s.022.022.022 0v-.353l.022-1.057V6.14c0-.352-.066-.727-.198-1.057-.22-.55-.638-.99-1.145-1.255-.022-.022-.066-.022-.11-.044 0 0 0 .022.022.044M18.54 2.793c.308.286.573.617.815.969.22.352.462.66.77.947.199.198.793.66.947.792-.022-.176-.308-1.43-1.079-2.047a3.9 3.9 0 0 0-1.519-.75v.045zM6.208 19.946a7 7 0 0 0 1.52-.286l1.188-.286h.022s0-.022-.022-.022h-.022a4.3 4.3 0 0 1-1.63-.837l-1.034-.99-.947-.816v.045c.088.132.419.858.617 1.255.242.55.682.969 1.233 1.189.022.022 0 .022-.044.022a18 18 0 0 0-1.894-.154c-.484 0-.99-.088-1.453-.22a3.1 3.1 0 0 1-.925-.485h-.044a3.84 3.84 0 0 0 1.761 1.365 4.8 4.8 0 0 0 1.674.22m-.506-1.299c.044 0 .066.022.132.022v-.022l-.044-.044a3.5 3.5 0 0 1-.815-1.343l-.396-1.123a6.4 6.4 0 0 0-1.057-1.894v.044c.132.485.198.97.242 1.476.198 1.365.859 2.025.859 2.047s0 .045-.022.022l-.089-.066a5.5 5.5 0 0 0-1.387-.814 7 7 0 0 1-1.123-.617 4.6 4.6 0 0 1-1.1-.969H.878c.066.176.132.353.22.529.33.638.815 1.21 1.41 1.63.572.44 1.233.726 1.937.814.419.11.837.22 1.256.308m-3.546-2.862 1.322.814s.022-.022.022-.044c-.287-.572-.33-1.189-.375-1.805-.044-.55.044-1.211.022-1.74a6.5 6.5 0 0 0-.264-1.299c0-.022-.022-.044-.022-.066l-.022.022c-.044.639-.286 1.211-.374 1.74a4.5 4.5 0 0 0 .132 1.871c.022.022-.022.044-.022.022a13 13 0 0 0-1.454-1.65 3.84 3.84 0 0 1-1.01-1.565s-.023-.022-.045-.022 0 .044 0 .088c0 .815.243 1.63.727 2.312.352.507.815.97 1.365 1.322m-.242-1.938c.022-.022.022-.022.022-.066-.044-.55.022-1.123.242-1.63.309-.836.529-1.695.661-2.598 0-.11.022-.308.022-.352-.022 0-.022 0-.022.022a8 8 0 0 1-.595 1.057c-.352.484-.704 1.013-.748 1.63a2.1 2.1 0 0 0 0 .528s0 .022-.022.022v-.022l-.154-.529C1.01 10.896.307 10.258.307 8.76l-.022-.022c-.044.088-.066.176-.11.265-.639 2.07.66 3.567.924 3.875s.617.683.815.969M.99 9.729l.375 1.145s.022 0 .022-.022c.198-.594.506-1.145.858-1.651l.066-.088q.463-.562.793-1.19c.132-.308.33-.968.353-1.034H3.39c-.22.33-.484.616-.792.88a3 3 0 0 0-.925 1.035c-.022.066-.066.132-.088.199l-.132.374s-.022.044-.022 0 .044-.55.044-.639c0-.44-.044-.88-.132-1.299a4.1 4.1 0 0 1 .022-1.63c0-.043.022-.087.044-.131 0-.022.022-.066.022-.089s0-.022-.022-.044C.835 6.25.505 7.527.637 8.496c.11.418.22.837.352 1.233m.793-3.215.022 1.057v.33h.022c.308-.396.66-.748 1.035-1.078l.88-.75a2.8 2.8 0 0 0 .683-1.32v-.066h-.022l-.11.154a2.8 2.8 0 0 1-.748.682c-.529.33-.881.573-1.19.991-.021.022-.044.022-.021-.022l.198-.726c.11-.419.154-.97.308-1.344.088-.22.242-.44.418-.616v-.044c-.044 0-.066.022-.11.044-.55.286-.947.749-1.167 1.277-.132.33-.22.683-.198 1.057zM2.949 5.48l.969-.792c.286-.287.55-.595.77-.947a5 5 0 0 1 .815-.969l.066-.066V2.66a3.65 3.65 0 0 0-1.519.749c-.815.638-1.079 1.893-1.1 2.07m8.851 6.826c.066-.089-.088-.155-.132 0-.044.154.066.11.132 0m1.674-3.876c-.067-.022-.309.264-.265.308a.73.73 0 0 0 .265-.308m.044-.044c.044.022.198-.066.176-.088s-.22-.11-.22-.066c0 .088.022.132.044.154m2.972 2.73c.088-.022.066-.154 0-.154s-.154.11-.132.11.088.066.132.044m-1.079-2.928c-.066 0-.088.066-.022.11.066.022.11 0 .154-.022a.15.15 0 0 0 .088-.132c0-.066-.088-.154-.044-.198s.11.022.155 0 .066-.066.066-.11c0-.045-.022-.177-.11-.177s-.177.177-.177.177a.19.19 0 0 0 0 .154c.022.088 0 .198-.11.198m1.454.022c0 .044.11.33.132.396s.044.308.088.286.044-.154.022-.22a3 3 0 0 0-.11-.462c-.022-.088-.176-.419-.22-.397-.045.023.066.22.088.309.022.088-.022.044 0 .088m-.771-3.744c.066.022.066-.11-.044-.198s-.286-.044-.242 0c.088.066.176.154.286.198m-3.303-.946c-.154-.088-.022-.22-.132-.309-.132-.044-.264-.022-.353.066-.11.133.133.088.199.133.066.044.286.198.308.176s0-.066-.022-.066m.88-.44c-.197-.089-.924-.089-.902.11s.418 0 .528 0 .55-.023.375-.11m-2.004 8.499c-.044-.022-.11.022-.132-.022s-.066-.022-.066 0-.022.066.022.11a.134.134 0 0 0 .176 0 .07.07 0 0 0 0-.088m-.418-1.475c.066 0 .066-.044.088-.044s0 .044.066.044.132-.155-.066-.155c-.155 0-.133.155-.088.155m.264.176c-.11-.022-.088.044-.176.044-.133.022-.022-.088-.066-.132-.022-.022-.089.088-.11.154 0 .044 0 .132.043.154l.419.044c.088 0 0-.242-.11-.264M10.15 11.71c.044 0 .066-.132.044-.198s-.155-.022-.155.022.089.176.11.176m-1.761 0c0-.044 0-.22-.044-.264s-.044.022-.066.022-.022-.088-.044-.088 0 .132.044.22.11.22.11.11m-.044-.396q.066-.198.066-.397c0-.11-.066-.198-.088-.198s0 .066.022.176c0 .11-.044.22-.066.33 0 .023.044.133.066.089m-2.246 4.932c3.28 3.281 8.566 3.281 11.847 0s3.28-8.566 0-11.847-8.566-3.28-11.847 0-3.281 8.588 0 11.847M4.006 10.5h1.277q.033.991.33 1.916a.8.8 0 0 1-.198-.088c-.088-.044-.154.022-.176.022-.088 0-.198-.066-.198 0s.088.022.088.066-.22.044-.242-.044-.066-.177-.088-.066-.11.088-.154.11c-.022.022-.044.066-.044.11s-.11.022-.11.088.066.088.088.154.088.11.044.132-.022-.022-.066 0 .198.683.242.66-.066-.22-.066-.308.022-.11.088-.154.242.264.308.22-.022-.088.044-.11.264.287.33.199c.044-.067.088.044.088.066.067.11.177.11.243.242s.22.374.33.374.044-.11.088-.11.088.154.154.242a.32.32 0 0 0 .198.132c.154.199.33.397.507.595l-.903.903A7.74 7.74 0 0 1 4.006 10.5m7.289-1.828-.089.044a1.2 1.2 0 0 0-.33.22l-.903-.902c.529-.463 1.19-.749 1.872-.771V8.54a1.8 1.8 0 0 0-.462.11c.044-.088.132-.176.132-.176s-.154.088-.22.198m-.683 2.092s0 .022 0 0v.044c0-.044-.022-.066-.044-.11-.022-.022-.044-.044-.066-.044h-.11l-.044.022h-.309c-.044 0-.066 0-.066-.022-.022-.088.11-.022.199-.286.022-.022.022-.066.044-.088l.044-.066.022-.022c.044-.044.088-.044.132-.044h.044l.044.044.066.132c.022.022.044.022.044.044a.3.3 0 0 1 .088.066l.022.022v.022c.022.022.022.022.044.022h.088c.044-.022.044 0 .066 0v.022c0 .022 0 .022-.022.044 0 .022-.022.022-.022.044-.022.022-.044.044-.066.044-.044 0-.088-.022-.11-.022s-.044 0-.044.022v.11m-2.422 2.114a.8.8 0 0 1-.088-.396.74.74 0 0 0-.11-.375c-.022-.088-.044-.176-.044-.264 0-.154-.133-.11-.133-.154s.11 0 .11-.044-.132-.22-.242-.264-.066-.11-.066-.176 0-.133-.044-.177c-.022-.088 0-.242.11-.242.044 0 .11.044.177 0s.022-.176.022-.286h.616c0 .088.022.198.022.286-.044.022-.066.066-.044.088s.044.044.066.022c.11.639.396 1.233.837 1.718l-.903.903c-.066-.066-.132-.155-.198-.243v-.066c0-.154-.11-.242-.154-.374m-.793-1.497a5 5 0 0 1-.11-.837h.528c-.044.066-.154.132-.176.198s-.154.286-.066.374c.198.22-.044.309-.176.265m.11 3.259-.11.11-.154-.154c.088-.044.176-.022.264.044m1.365-5.66c-.022 0-.022.023-.044.023-.066.066-.242.044-.22.11s.485-.155.485-.11-.199.11-.33.176-.177.176-.397.176c-.11 0-.154.088-.198.154a1.6 1.6 0 0 0-.154.264.9.9 0 0 1-.088.397h-.64a4.76 4.76 0 0 1 1.256-3.04l.903.904a6 6 0 0 0-.573.946m.837-.66.793.793h-.088c-.088 0-.088-.066-.154-.066-.133.022-.155.066-.177.044a1.2 1.2 0 0 0-.33-.22.6.6 0 0 0-.44.021c-.022 0-.022.022-.044.022.154-.198.308-.396.44-.594m-1.1 1.607c0 .088-.023.177-.023.265h-.462c-.022-.066 0-.133.044-.199.044-.088.154-.132.264-.11a.7.7 0 0 1 .176.044m.396 1.035.045.066c.044.044.088.088.132.066s.154 0 .176 0c.066.022.11.066.154.11.044.067.132.023.198.067s.132.088.044.132.088.132.11.132.044-.044.044-.11c0-.022.044-.11.11-.088s.265.264.33.176c.067-.088.023-.198.045-.242 0-.022.022-.044.044-.044.066.11.11.198.198.286l-.903.903a2.77 2.77 0 0 1-.727-1.454m.705-3.149-.88-.902a4.76 4.76 0 0 1 3.038-1.255v1.277c-.793.022-1.541.33-2.158.88M8.542 6.602 7.64 5.7a6.4 6.4 0 0 1 4.206-1.74v1.277a5.07 5.07 0 0 0-3.303 1.365m-.264.243a5.12 5.12 0 0 0-1.365 3.303H5.635a6.4 6.4 0 0 1 1.74-4.206zM6.913 10.5c0 .242.022.462.066.705-.022 0-.022-.067-.088-.045s-.309.44-.419.617c-.088.154.044.484-.088.595a1.3 1.3 0 0 1-.396.066h-.022a6.3 6.3 0 0 1-.353-1.894zm4.91 7.839a7.94 7.94 0 0 1-5.35-2.224l.902-.903a6.75 6.75 0 0 0 4.448 1.85zm0-1.63a6.4 6.4 0 0 1-4.206-1.74l.154-.153a.5.5 0 0 0 .11.066.5.5 0 0 0 .309.044c.088-.022.264-.176.374-.176s.286.044.396-.022-.066-.287-.132-.397c-.022-.022-.022-.044-.044-.066a4.95 4.95 0 0 0 3.083 1.167zm0-1.651a4.76 4.76 0 0 1-3.039-1.255l.903-.903c.419.374.925.66 1.497.793-.198.088-.286.22-.264.33s-.132.176-.132.308.176.22.198.353c.022.066.176.176.309.264.176.044.352.066.506.044zm-.044-1.762c-.066-.044-.11.044-.198.088a3.18 3.18 0 0 1-1.63-.748l.903-.903c.286.22.617.374.969.396 0 .044.044.088.044.177s-.066.132-.044.176.22 0 .242-.066-.066-.11-.088-.177c-.022-.044-.022-.066-.044-.11H12c.066 0 .132 0 .198-.022a.05.05 0 0 0 .044-.044c0-.022.022-.044.022-.066s.022-.022.022-.044l.022.022c.022.044.067.176.11.154s.067-.22.045-.264a.165.165 0 0 1 0-.198c0-.022.022-.154.066-.132s0 .132 0 .176c0 .066.044.154.11.11.044-.022.088-.088.132-.066s-.11.066-.132.11.066.066.044.088-.044 0-.066.022.044.154 0 .176-.198.066-.242.088-.089-.022-.067-.044 0-.11-.044-.11-.044.022-.044.066.044.11.044.133-.066.044-.11.066c-.044.066-.11.132-.176.176s-.198.044-.198.088.066.044.088.066c.044.066.066.154-.022.198s-.198-.066-.242-.044-.066.132-.088.264.242.176.374.11c.088-.044.066-.176.154-.22s.066-.132.154-.11.066-.066.155-.066.088.066.198.088c.176.044.176.176.198.11s.044-.11-.088-.154-.198-.198-.088-.154c.132.066.242.066.264.132s.154.044.176.11c.022.11.11 0 .044-.066s-.044-.088 0-.132.066.022.132-.066-.022-.066-.044-.11 0-.286.088-.242.176-.022.132-.044c-.044-.023.022-.155.044-.155s0 .088.022.11.243-.066.265.045-.154.176-.198.176c-.089 0-.155.088-.22.176-.067.088-.133.11-.089.198s.132.066.22.022.155-.11.199-.132c.088-.044.154.22.11.264s-.132.066-.176.11c-.133.066-.265.132-.419.132-.088.022-.088.044-.11.132s-.418.022-.506.022.066-.198-.066-.176l-.397.066c-.022 0-.154.11-.264.022m1.167 2.048c.11.044.22.132.286.22.066.11.088.155.044.265-.11.198-.066.33.154.396.133.044.177.176.265.264a6.8 6.8 0 0 1-1.498.22v-1.277c.243-.022.507-.044.75-.088m-.75-.264v-.154c.287-.044.22.132.419.066a.17.17 0 0 1 .176.044 5 5 0 0 0-.595.044m0 3.281v-1.3a6.7 6.7 0 0 0 1.96-.352c.022.023.044.023.066.023a.46.46 0 0 0 .242-.089 2.6 2.6 0 0 0 .595-.33 6.7 6.7 0 0 0 1.585-1.123l.903.903c-1.431 1.41-3.347 2.202-5.35 2.268m3.567-11.516.308-.309a.55.55 0 0 0 .308.176c.11.023.154.067.176.177s.132.154.243.176.176.154.264.154.374.396.484.528c.066.066.154.177.22.089.066-.089.066-.067.11-.089a6.5 6.5 0 0 1 .551 2.4h-1.277c0-.286-.044-.572-.11-.858a.6.6 0 0 0 .066-.286c0-.089-.088-.133-.154-.067a3 3 0 0 0-.176-.484c-.023-.088-.045-.198-.067-.286 0-.022-.044-.044-.088-.088-.044-.088-.066-.154-.11-.22.066-.045.088-.155 0-.133-.132.022-.044-.066-.088-.11s-.044 0-.066.022a6 6 0 0 0-.572-.748v-.022c-.044 0-.044-.022-.022-.022m.77 7.464c-.044-.088-.066-.198-.11-.286-.022-.088-.198-.088-.198-.044 0 .088 0 .176-.022.264v.022l-.462-.462a5.12 5.12 0 0 0 1.365-3.303h1.277a6.3 6.3 0 0 1-1.74 4.184l-.066-.066a.53.53 0 0 0-.044-.309m-1.057.881c.066-.11.199-.308.265-.418s-.177-.264-.309-.309-.132-.11-.132-.22c.066-.044.132-.11.198-.176l.903.903a6.3 6.3 0 0 1-.969.749c-.022-.044.132-.199.176-.265s-.176-.154-.132-.264m.55-5.263c-.11-.154.045-.176.199-.242.088-.044.198.022.198-.022s.044-.132.088-.154.11-.066.132-.11c0 .044.022.088.022.132a.5.5 0 0 0-.066.242c0 .066 0 .154.066 0 0-.022.022-.022.022-.044.044.154.044.286.044.419h-.946v-.022c.066-.11.308-.089.242-.199m.176-1.805s0 .022-.022.022c-.022.022-.132-.154-.132-.022s.044.176.132.198.044.066.11.088c.022 0 .066.022.088.044.11.242.176.484.242.749a.3.3 0 0 0-.088.066c-.044.044-.022.132-.066.198-.066.11-.088.176-.264.132-.11-.044-.022-.176 0-.286s.066-.088.066-.154-.22-.309-.33-.22c-.11.088-.088.176-.176.264-.044.044-.088.044-.155 0s-.088-.088-.066-.132-.154-.243-.22-.33a.46.46 0 0 0-.352-.177 3.5 3.5 0 0 0-.419-.572l.903-.903c.309.33.55.66.749 1.035m-1.52.616-.043.066c-.022.044-.133-.044-.155-.022s.155.243-.022.177c-.176-.067-.066-.067-.066-.133s-.154-.11-.066-.154 0-.11.088-.132.066-.11-.044-.132-.088.242-.154.198c-.066-.022-.132-.022-.198-.022l.308-.308a.2.2 0 0 0 .11.022c.044.176.155.308.243.44m-.353 4.47c.132.022.287.044.419.088.088.044.154.133.22.022q.198-.297.264-.66c.044-.33-.022-.44-.066-.44s-.132.088-.22.088c-.044 0-.044.088-.044.154s-.088.132-.11.088-.066-.022-.044.022-.176.022-.265-.022c-.132-.066.155-.066.287-.176.11-.088.22-.199.33-.309.066-.11.066-.242.176-.33s.286-.066.308-.198.044-.11.11-.088.683-.022.683-.22c0-.089-.132-.199-.264-.22-.088 0-.11-.177-.154-.265a1.6 1.6 0 0 0-.154-.264h.924a4.76 4.76 0 0 1-1.255 3.039l-.022-.022v-.088c.022-.177-.11-.463-.154-.419s0 .044-.132.242c-.044.066-.11.177-.198.177s-.088-.045-.22-.023a1 1 0 0 1-.353 0 2.5 2.5 0 0 1-.594-.286c.022-.022.088.022.088-.044s.352.132.44.154m3.457 2.665-.902-.903a6.75 6.75 0 0 0 1.85-4.448h1.298a7.9 7.9 0 0 1-2.246 5.35m2.246-5.724h-1.299a6.56 6.56 0 0 0-.66-2.73l.022-.023c.088-.088-.419-.749-.507-.815s-.176-.176-.286-.286a4 4 0 0 1-.484-.572l.946-.947a7.88 7.88 0 0 1 2.268 5.373m-7.839-7.84a8.04 8.04 0 0 1 5.373 2.225l-.88.88c-.045-.022-.089-.044-.067-.088.044-.066-.066-.066-.088-.242a.7.7 0 0 0-.33-.418c-.11-.066-.176-.154-.286-.199-.11-.044-.33-.176-.44-.132a.8.8 0 0 1-.22.044 6.7 6.7 0 0 0-3.04-.792l-.022-1.277zm0 1.652c.947.022 1.85.264 2.709.683a.9.9 0 0 0 .176.396c.044.11.11.198.176.308.066.066.022.198.044.309 0 .044.044.088.066.132v.176c0 .022.088.022.154-.022s.11-.132.199-.11.198.198.264.308l-.419.418c-.044-.088-.088-.198-.066-.198s.066.022.088.022c.089 0-.066-.066-.066-.088-.066-.066-.066-.154-.154-.22s-.22-.022-.264-.11a1.2 1.2 0 0 0-.352-.397c-.022 0 .176.243.11.287s-.309-.154-.33-.11c-.023.044.264.154.352.242.044.044.132.176.22.286a5.12 5.12 0 0 0-2.907-1.035zm0 1.63a4.76 4.76 0 0 1 3.04 1.255l-.904.902a3.5 3.5 0 0 0-2.136-.88zm0 1.651a3.04 3.04 0 0 1 1.872.77l-.044.045-.044-.022c-.11-.044-.33.176-.286.198s.132-.088.176-.066h.022l-.374.396c-.11.044-.22.132-.22.198v.022l-.133.132-.066-.066a1.1 1.1 0 0 0-.352-.198c.066-.044.088-.11.11-.198 0-.132-.044-.088-.11-.022s-.132.088-.176.154a1 1 0 0 0-.353-.066V7.241zm-.154 1.63c.022.043 0 .088-.022.11-.044.044-.176-.11-.198.022-.044.132.088.066.088.088a.4.4 0 0 0 .264.154c.088 0 .22 0 .22.088 0 .044.11.044.133.088 0 .066.066.176.11.154s.11.022.132.066 0 .066-.022.11c-.066.066.066.044.088.176s-.11.044-.132.133c-.044.066-.088.11-.132.176-.022.022.022.066.044.044s.066-.088.132-.088.132.242.198.264.044.11.066.132-.11 0-.088.044.154.066.154.132c-.022.066-.066.132-.154.132-.066 0-.176-.154-.176-.11s.044.176.11.176.22-.066.154.022-.044.22-.088.22-.066 0-.022.067c.022.066 0 .132-.044.198-.044.044-.154 0-.154-.022s.132-.022.132-.088-.066-.088-.198-.044c-.066.022-.088-.022-.132-.022s-.176.154-.176.176v.11a.37.37 0 0 1-.067.22c-.088.022-.154.022-.242.022-.352 0-.704-.154-.969-.374a.4.4 0 0 1 .177-.044c.066.022.088-.022.132-.044s.154.044.22 0 .22-.33.198-.397.154-.176.132-.198-.044.022-.044 0 .044-.022 0-.11-.11-.044-.154-.044c-.066-.044-.176-.066-.198-.044s-.088-.044-.11-.022c-.022 0-.066.022-.066.066-.022.044.022.088.022.132-.022.088-.155.154-.155.22s-.066.022-.088.044 0 .066-.044.066-.11.11-.154.199c-.066-.088-.132-.199-.198-.287.044-.022.088-.044.11-.022.066.044.33-.418.286-.55s-.11-.044-.176-.022-.066-.044-.044-.066.308-.022.154-.11c-.066-.044-.242-.044-.22-.11s.11 0 .132 0c.11.044.176-.177.242-.177.11 0 .067-.22-.044-.154s-.154.044-.198.11-.154.154-.154.066c0-.044.242-.176.286-.242a.5.5 0 0 0 .11-.176c.023-.066.33-.11.397-.154.044-.044.088-.11.088-.176s-.088-.044-.11-.088.11 0 .11-.066-.11 0-.154-.044c0-.022 0-.022.022-.044.198-.067.33-.089.484-.089h.044m-.242-6.561v1.277a6.75 6.75 0 0 0-4.448 1.85l-.903-.903a7.94 7.94 0 0 1 5.351-2.224M6.208 4.797l.903.903a6.75 6.75 0 0 0-1.85 4.448H3.984a8.15 8.15 0 0 1 2.224-5.351"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/unity.svg������������������������������������0000664�0000000�0000000�00000001034�14753064456�0024771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.929 4.294 3.8 2.193c.136.077.141.29 0 .367l-4.515 2.608a.42.42 0 0 1-.425 0L7.274 6.854c-.139-.074-.141-.293 0-.367l3.797-2.193V0L1.376 5.598v11.195l3.718-2.146v-4.385c-.003-.157.18-.269.317-.184l4.515 2.607a.43.43 0 0 1 .214.368v5.213c.002.156-.181.268-.318.184l-3.8-2.193-3.717 2.145L12 24l9.695-5.598-3.717-2.145-3.8 2.192c-.134.082-.323-.024-.318-.183v-5.213c0-.156.087-.296.214-.368l4.515-2.607c.134-.082.322.022.318.184v4.385l3.717 2.146V5.598L12.93 0Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/unjs.svg�������������������������������������0000664�0000000�0000000�00000002432�14753064456�0024603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.686 0H1.29A1.48 1.48 0 0 0 0 1.297V22.68C.085 23.43.711 24 1.484 24h21.014A1.5 1.5 0 0 0 24 22.498V1.484C24 .711 23.412.077 22.686 0m-4.393 15.05c.52-.011 1.004.113 1.398.514q.06.065.116.131c.246.327.353.694.398 1.08.024.209.03.42.031.63.004.883.001 1.768.002 2.652 0 .203-.065.368-.252.468a.445.445 0 0 1-.658-.38c-.004-.214-.002-.428-.002-.641 0-.779.002-1.557-.004-2.336-.002-.282-.056-.556-.213-.799a.94.94 0 0 0-.713-.433q-.931-.108-1.527.617c-.17.208-.238.452-.238.718v2.836a.46.46 0 0 1-.61.448c-.178-.056-.295-.232-.3-.453q-.002-.129 0-.258l-.002-4.131c0-.184.055-.342.215-.443a.43.43 0 0 1 .449-.022c.155.08.236.213.248.387.002.035 0 .072 0 .12.03-.024.053-.04.074-.06.388-.352.839-.583 1.363-.63q.113-.01.225-.014zm-7.75.151c.235.014.413.226.414.496v1.647c0 .424-.002.847.006 1.271q.005.317.156.598c.142.259.36.423.645.5.364.107.753.09 1.107-.047.371-.146.58-.434.649-.82.026-.146.032-.299.033-.448.003-.9.001-1.802.002-2.703 0-.25.12-.422.338-.48.052-.014.109-.01.164-.014.258.044.408.214.408.47-.001 1.024.012 2.047-.018 3.07-.02.696-.333 1.254-.95 1.613-.262.152-.55.234-.85.27-.386.054-.779.03-1.155-.071-.598-.174-1.044-.53-1.283-1.121-.126-.312-.161-.638-.162-.97q-.003-1.387 0-2.776c0-.304.205-.502.496-.485"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/unlicense.svg��������������������������������0000664�0000000�0000000�00000001155�14753064456�0025612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12M12 2.449A9.55 9.55 0 0 0 2.449 12c0 2.09.672 4.024 1.811 5.597L17.597 4.26A9.5 9.5 0 0 0 12 2.449m0 19.102A9.55 9.55 0 0 0 21.551 12c0-2.09-.672-4.024-1.811-5.597L6.403 19.74A9.5 9.5 0 0 0 12 21.551m0-2.816a6.7 6.7 0 0 1-3.34-.885l2.32-2.32a3.674 3.674 0 0 0 4.388-2.06h3.206A6.74 6.74 0 0 1 12 18.734ZM5.265 12A6.735 6.735 0 0 1 15.34 6.15l-2.32 2.32a3.673 3.673 0 0 0-4.55 4.55l-2.32 2.32A6.7 6.7 0 0 1 5.265 12m13.28-1.592h-2.443L17.85 8.66c.309.54.545 1.128.695 1.748"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/unocss.svg�����������������������������������0000664�0000000�0000000�00000000512�14753064456�0025133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.86 18.4a5.57 5.57 0 1 1 11.14 0 5.57 5.57 0 0 1-11.14 0m0-12.8A5.57 5.57 0 1 1 24 5.602v5.013a.557.557 0 0 1-.557.557H13.417a.557.557 0 0 1-.557-.557zm-1.72 12.8A5.57 5.57 0 1 1 0 18.4v-5.014a.557.557 0 0 1 .557-.557h10.026a.557.557 0 0 1 .557.557z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/unpkg.svg������������������������������������0000664�0000000�0000000�00000001054�14753064456�0024747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm4.322 2.977 4.37.002a.043.043 0 0 1 .044.04 9543 9543 0 0 1 0 9.165q0 1.126.09 1.957.057.505.287 1.03.503 1.153 1.715 1.405.94.195 1.893-.008c1.166-.248 1.813-1.268 1.96-2.404q.1-.77.1-2.018-.002-4.724.002-9.119 0-.05.049-.05h4.338a.033.033 0 0 1 .033.033v9.869c0 1.465-.17 2.918-.746 4.234-.777 1.775-2.323 2.836-4.195 3.211q-2.55.513-5.07-.013c-2.226-.465-3.808-1.828-4.46-4.03a10.2 10.2 0 0 1-.416-2.586 65 65 0 0 1-.029-1.88q-.003-4.555 0-8.801 0-.037.035-.037"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/unraid.svg�����������������������������������0000664�0000000�0000000�00000000514�14753064456�0025105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.406 8.528h1.17v6.926h-1.17zM1.17 15.454H0V8.528h1.17zm4.534.828h1.17v2.645h-1.17zm-2.86-2.969h1.169v4.282h-1.17zm5.703 0h1.17v4.282h-1.17zM22.83 8.528H24v6.926h-1.17zm-4.534-.81h-1.17V5.073h1.17zm2.86 2.95h-1.169V6.406h1.17zm-5.72 0h-1.17V6.406h1.17z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/unrealengine.svg�����������������������������0000664�0000000�0000000�00000001376�14753064456�0026306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a12 12 0 1 0 12 12A12 12 0 0 0 12 0m0 23.52A11.52 11.52 0 1 1 23.52 12 11.52 11.52 0 0 1 12 23.52m7.13-9.791c-.206.997-1.126 3.557-4.06 4.942l-1.179-1.325-1.988 2a7.34 7.34 0 0 1-5.804-2.978 3 3 0 0 0 .65.123c.326.006.678-.114.678-.66v-5.394a.89.89 0 0 0-1.116-.89c-.92.212-1.656 2.509-1.656 2.509a7.3 7.3 0 0 1 2.528-5.597 7.4 7.4 0 0 1 3.73-1.721c-1.006.573-1.57 1.507-1.57 2.29 0 1.262.76 1.109.984.923v7.28a1.2 1.2 0 0 0 .148.256 1.08 1.08 0 0 0 .88.445c.76 0 1.747-.868 1.747-.868V9.172c0-.6-.452-1.324-.905-1.572 0 0 .838-.149 1.484.346a6 6 0 0 1 .387-.425c1.508-1.48 2.929-1.902 4.112-2.112 0 0-2.151 1.69-2.151 3.96 0 1.687.043 5.801.043 5.801.799.771 1.986-.342 3.059-1.441Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/unsplash.svg���������������������������������0000664�0000000�0000000�00000000201�14753064456�0025451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.5 6.75V0h9v6.75zm9 3.75H24V24H0V10.5h7.5v6.75h9z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/untappd.svg����������������������������������0000664�0000000�0000000�00000002551�14753064456�0025301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11 13.299-5.824 8.133c-.298.416-.8.635-1.308.572-.578-.072-1.374-.289-2.195-.879S.392 19.849.139 19.323a1.4 1.4 0 0 1 .122-1.425l5.824-8.133a3.1 3.1 0 0 1 1.062-.927l1.146-.604c.23-.121.436-.283.608-.478.556-.631 2.049-2.284 4.696-4.957l.046-.212a.13.13 0 0 1 .096-.1l.146-.037a.135.135 0 0 0 .101-.141l-.015-.18a.13.13 0 0 1 .125-.142c.176-.005.518.046 1.001.393s.64.656.692.824a.13.13 0 0 1-.095.164l-.175.044a.13.13 0 0 0-.101.141l.012.15a.13.13 0 0 1-.063.123l-.186.112c-1.679 3.369-2.764 5.316-3.183 6.046a2.2 2.2 0 0 0-.257.73l-.205 1.281A3.1 3.1 0 0 1 11 13.3zm12.739 4.598-5.824-8.133a3.1 3.1 0 0 0-1.062-.927l-1.146-.605a2.1 2.1 0 0 1-.608-.478 51 51 0 0 0-.587-.654.09.09 0 0 0-.142.018 97 97 0 0 1-1.745 3.223 1.4 1.4 0 0 0-.171.485 3.5 3.5 0 0 0 0 1.103l.01.064c.075.471.259.918.536 1.305l5.824 8.133c.296.413.79.635 1.294.574a4.76 4.76 0 0 0 2.209-.881 4.76 4.76 0 0 0 1.533-1.802 1.4 1.4 0 0 0-.122-1.425zM8.306 3.366l.175.044a.134.134 0 0 1 .101.141l-.012.15a.13.13 0 0 0 .063.123l.186.112q.465.933.869 1.721c.026.051.091.06.129.019q.655-.703 1.585-1.668a.137.137 0 0 0 .003-.19c-.315-.322-.645-.659-1.002-1.02l-.046-.212a.13.13 0 0 0-.096-.099l-.146-.037a.135.135 0 0 1-.101-.141l.015-.18a.13.13 0 0 0-.123-.142c-.175-.005-.518.045-1.002.393-.483.347-.64.656-.692.824a.13.13 0 0 0 .095.164z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/upcloud.svg����������������������������������0000664�0000000�0000000�00000000666�14753064456�0025306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.116 12.996a1.885 1.885 0 1 1 0 3.77H8.664V11.87h.888v4.007h12.585a1.01 1.01 0 0 0 .997-.996 1.03 1.03 0 0 0-1.04-.997H10.397v-.888zM13.43 7.235H8.664v1.992h.888V8.101h3.9a1.01 1.01 0 0 1 .996.996 1.065 1.065 0 0 1-1.018 1.04H1.885a1.885 1.885 0 1 0 0 3.77h5.891v-.889H1.885a.996.996 0 0 1 0-1.993H13.45a1.9 1.9 0 0 0 1.885-1.884 1.94 1.94 0 0 0-1.906-1.906"/></svg>��������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/uphold.svg�����������������������������������0000664�0000000�0000000�00000002065�14753064456�0025121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.274 22.332a7.9 7.9 0 0 1-2.22.334h-.107a7.8 7.8 0 0 1-2.237-.34.668.668 0 1 0-.379 1.282 9.3 9.3 0 0 0 2.616.392h.107a9.2 9.2 0 0 0 2.6-.39.667.667 0 1 0-.38-1.278M20.101 5.91v-.04a8.522 8.522 0 0 0-16.207.026v.016c-.752 2.213-.48 5.175.734 7.935 1.66 3.774 4.674 6.406 7.343 6.406h.075c2.669 0 5.682-2.624 7.342-6.406 1.199-2.754 1.47-5.722.713-7.938zm-3.916-3.23c-1.35-.05-2.818.534-4.185 1.676-1.382-1.142-2.85-1.727-4.2-1.676a7.23 7.23 0 0 1 8.385 0m-3.09 15.995a2.6 2.6 0 0 1-2.205 0c-2.277-1.049-2.736-5.266-1.006-9.2A12 12 0 0 1 12 6.198a11.9 11.9 0 0 1 2.112 3.277c1.718 3.934 1.26 8.151-1.017 9.2m-7.26-5.356c-1.09-2.472-1.335-5.071-.684-6.99.347-1.007.932-1.722 1.687-2.072 1.183-.547 2.715-.16 4.183 1.028a13.3 13.3 0 0 0-2.357 3.651c-1.17 2.67-1.428 5.389-.889 7.505a12.7 12.7 0 0 1-1.94-3.122m12.315 0a12.7 12.7 0 0 1-1.94 3.125c.533-2.12.266-4.852-.89-7.508a13.3 13.3 0 0 0-2.356-3.651c1.468-1.188 2.997-1.575 4.18-1.028.758.35 1.334 1.068 1.69 2.072.658 1.905.402 4.518-.695 6.99z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/uplabs.svg�����������������������������������0000664�0000000�0000000�00000002004�14753064456�0025105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.804 19.205c-.112-.111-.186-.26-.297-.372q-1.333-1.34-4.11-1.34c-1.816 0-3.186.446-4.075 1.34-.111.112-.185.223-.296.372zm2.88-.044V5.164h2.959V6.9c.406-.702.887-1.219 1.479-1.588a4.06 4.06 0 0 1 2.034-.517c1.516 0 2.7.517 3.55 1.514S24 8.709 24 10.482c0 1.736-.444 3.102-1.294 4.136s-1.997 1.551-3.402 1.551c-.851 0-1.554-.147-2.145-.48-.592-.295-1.11-.812-1.516-1.477.037.259.073.554.073.886 0 .296.037.665.037 1.071v2.955h-3.069zm2.81-8.679c0 .96.222 1.699.703 2.253.481.517 1.147.812 1.96.812.85 0 1.516-.258 1.96-.812.48-.517.703-1.293.703-2.253s-.222-1.699-.703-2.253c-.48-.554-1.146-.812-1.997-.812-.813 0-1.479.295-1.96.85-.444.48-.665 1.255-.665 2.215zM7.73 5.201v5.577q0 1.385-.555 1.994c-.37.406-.961.628-1.775.628-.813 0-1.405-.185-1.775-.591-.37-.407-.555-1.071-.555-2.031V5.2H0v5.577c0 1.661.333 2.88.998 3.767.111.11.185.258.296.369q1.332 1.33 4.105 1.33c1.812 0 3.18-.444 4.068-1.33.11-.111.185-.222.296-.37q.998-1.33.998-3.766V5.2Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/upptime.svg����������������������������������0000664�0000000�0000000�00000000410�14753064456�0025301�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.86 15.68c1.926 0 3.489 1.526 3.489 3.406s-1.563 3.407-3.488 3.407-3.489-1.526-3.489-3.407c0-1.88 1.563-3.407 3.489-3.407ZM24 14.884 12 1.507 0 14.885l3.158 3.52L12 8.548l8.842 9.857z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ups.svg��������������������������������������0000664�0000000�0000000�00000003632�14753064456�0024436�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.668 14.544-.028-5.226c.138-.055.387-.111.608-.111.995 0 1.41.774 1.41 2.682 0 1.853-.47 2.765-1.438 2.765-.22 0-.441-.055-.552-.11M3.124 7.438c4.203-3.843 9.29-4.866 14.018-4.866 1.3 0 2.544.083 3.76.194h-.028v11.253c0 2.184-.774 3.926-2.295 5.171-1.355 1.134-5.447 2.959-6.581 3.456-1.161-.525-5.253-2.378-6.581-3.456-1.493-1.244-2.295-3.014-2.295-5.171V7.438zm12.664 2.599c.028.912.276 1.576 1.687 2.406.747.442 1.051.747 1.051 1.272 0 .581-.387.94-1.023.94-.553 0-1.189-.304-1.631-.691v1.576c.553.304 1.217.525 1.88.525 1.687 0 2.433-1.189 2.461-2.267.028-.995-.249-1.742-1.659-2.571-.608-.387-1.134-.636-1.106-1.244 0-.581.525-.802.995-.802.581 0 1.161.332 1.521.691V8.378c-.304-.221-.94-.581-1.88-.553-1.135.028-2.296.829-2.296 2.212m-5.834 9.484h1.714l-.028-3.594c.166.028.415.083.774.083 1.908 0 2.986-1.687 2.986-4.175 0-2.461-1.106-4.009-3.152-4.009-.94 0-1.687.221-2.295.608zm-5.945-6.166c0 1.797.829 2.71 2.516 2.71 1.051 0 1.908-.249 2.571-.691V7.991H7.41v6.387c-.194.138-.47.221-.802.221-.774 0-.885-.719-.885-1.189V7.991H4.009zM22.12 2.295v11.723c0 2.516-.94 4.645-2.765 6.111-1.549 1.3-6.332 3.429-7.355 3.871-1.023-.442-5.806-2.571-7.355-3.843-1.797-1.465-2.765-3.594-2.765-6.111V2.295C4.756.747 8.074 0 12 0s7.244.747 10.12 2.295m-.304.221c-2.71-1.465-6-2.184-9.788-2.184s-7.079.746-9.788 2.184v11.502c0 2.433.912 4.452 2.627 5.862 1.576 1.3 6.581 3.484 7.161 3.76.581-.249 5.585-2.433 7.161-3.733 1.714-1.41 2.627-3.429 2.627-5.862zm-2.433 20.295c0 .47-.387.829-.829.829a.83.83 0 0 1-.829-.829c0-.47.387-.829.829-.829s.801.359.829.829m-.166 0a.68.68 0 0 0-.664-.691c-.359 0-.664.332-.664.691s.304.664.664.664a.673.673 0 0 0 .664-.664m-.553.055c.028.055.304.442.304.442h-.221s-.276-.387-.276-.415h-.028v.415h-.194v-.995l.304-.028c.249 0 .332.166.332.304s-.083.25-.221.277m.027-.276c0-.055 0-.138-.166-.138h-.083v.304h.028c.194 0 .221-.083.221-.166"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/upstash.svg����������������������������������0000664�0000000�0000000�00000000713�14753064456�0025313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.803 0c-2.61 0-5.22.995-7.211 2.986-3.982 3.983-3.982 10.44 0 14.422a5.1 5.1 0 0 0 7.21-7.21L12 12a2.55 2.55 0 0 1-3.605 3.605A7.649 7.649 0 0 1 19.21 4.79l1.803-1.803A10.17 10.17 0 0 0 13.803 0M12 12a2.55 2.55 0 0 1 3.605-3.605A7.649 7.649 0 0 1 4.79 19.21l-1.803 1.803c3.983 3.982 10.44 3.982 14.422 0s3.982-10.44 0-14.422A5.08 5.08 0 0 0 13.803 5.1a5.1 5.1 0 0 0-3.605 8.703z"/></svg>�����������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/uptimekuma.svg�������������������������������0000664�0000000�0000000�00000000733�14753064456�0026007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.759.955c-4.071 0-7.93 2.265-10.06 5.774l-.16.263-.116.284c-1.81 4.44-2.188 9.118.621 12.459 2.67 3.174 6.221 3.328 9.477 3.308s6.323-.482 8.995-2.032C22.75 19.714 24 16.917 24 14.53c0-2.388-.724-4.698-1.882-7.343l-.112-.257-.148-.238C19.683 3.2 15.83.955 11.758.955Zm0 3.868q4.378 0 6.816 3.914 3.114 7.121 0 8.929c-3.116 1.808-11.234 2.359-13.57-.42q-2.337-2.78 0-8.51 2.376-3.913 6.754-3.913"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/upwork.svg�����������������������������������0000664�0000000�0000000�00000001145�14753064456�0025153�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.561 13.158c-1.102 0-2.135-.467-3.074-1.227l.228-1.076.008-.042c.207-1.143.849-3.06 2.839-3.06a2.705 2.705 0 0 1 2.703 2.703 2.707 2.707 0 0 1-2.704 2.702m0-8.14c-2.539 0-4.51 1.649-5.31 4.366-1.22-1.834-2.148-4.036-2.687-5.892H7.828v7.112a2.55 2.55 0 0 1-2.547 2.548 2.55 2.55 0 0 1-2.545-2.548V3.492H0v7.112c0 2.914 2.37 5.303 5.281 5.303 2.913 0 5.283-2.389 5.283-5.303v-1.19c.529 1.107 1.182 2.229 1.974 3.221l-1.673 7.873h2.797l1.213-5.71c1.063.679 2.285 1.109 3.686 1.109 3 0 5.439-2.452 5.439-5.45 0-3-2.439-5.439-5.439-5.439"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/usps.svg�������������������������������������0000664�0000000�0000000�00000002252�14753064456�0024616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.145 4.577 0 19.423h20.855L24 4.577zm-.157 3.806h9.436c.157 0 5.064 0 5.159.975H9.09l1.321 4.026c1.51-.723 5.222-2.233 7.455-2.328.944-.031 1.321.126 1.132.252-.126.063-1.038.189-1.761.377-1.258.315-1.321.315-2.642.755-1.478.503-2.705 1.069-4.53 1.919L.723 18.983zm16.483 1.698c-.535-.094-2.768.063-3.334.063-.126 0-.472.031-.472-.063 0-.063.126-.063.377-.094s1.006-.157 1.258-.283c.063-.063.22-.157.315-.252.031-.063.063-.094.157-.094h1.164c.755 0 1.195.094 1.132.723-.031.315-.472 1.132-.629 1.384-.063.094-.189.189-.157 0 .126-.503.597-1.321.189-1.384m.88 8.902H2.076s17.363-6.794 17.552-6.92c0 0 1.541-2.076.629-2.925-.283-.283-.692-.283-2.265-.283 0 0-.063-.598-2.485-1.164-.283-.063-11.858-2.517-11.858-2.517h19.628zm2.925-.695c0-.195-.114-.293-.358-.293h-.406v1.008h.146v-.439h.179l.276.455h.179L23 18.564c.162-.016.276-.097.276-.276m-.455.146h-.163v-.341h.211c.114 0 .228.016.228.163 0 .162-.13.178-.276.178m.016-.829a.87.87 0 0 0-.894.878c0 .504.406.894.894.894s.894-.39.894-.894a.88.88 0 0 0-.894-.878m0 1.642c-.423 0-.731-.325-.731-.764 0-.423.325-.748.731-.748s.731.325.731.748c0 .439-.325.764-.731.764"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/utorrent.svg���������������������������������0000664�0000000�0000000�00000001465�14753064456�0025513�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.684 23.94a12.01 12.01 0 0 0 9.599-7.79c-.118.044-.26.096-.432.147-2 .59-3.404-.466-3.687-.649-.283-.18-.587-.48-.643-.464-.183 1.132-1.218 2.706-3.58 3.42-1.295.391-2.687.4-3.681-.157l.328.822c.13.328.351.866.488 1.192 0 0 .858 2.044 1.608 3.48M2.723 7.153l3.54-.66c.323-.059.68.124.794.407l2.432 6.07c.332.633.399.773.615 1.043 0 0 1.68 2.398 4.24 1.812 1.726-.394 2.532-1.69 2.587-2.612.057-.296-.032-.669-.185-1.016L13.832 5.61c-.117-.266.022-.527.306-.581l2.953-.55a.69.69 0 0 1 .706.376l3.227 6.91c.13.276.394.712.588.966 0 0 .671.964 1.747.78.266 0 .569-.143.569-.143q.071-.645.072-1.31c0-6.627-5.373-12-12.002-12C5.372.06 0 5.433 0 12.06c0 5.319 3.46 9.827 8.252 11.402a25 25 0 0 1-.919-2.121L2.298 7.808c-.111-.297.083-.59.425-.654"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/uv.svg���������������������������������������0000664�0000000�0000000�00000000417�14753064456�0024257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m0 .106.05 11.95.04 9.56a2.39 2.39 0 0 0 2.4 2.379l9.56-.04 5.975-.026.608-.002c1.316-.006 2.38-1.097 2.38-2.413h1.094v2.39H24L23.9.005 12.905.051l.046 9.525v5.963h-1.958l.046-5.955-.046-9.525Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/v.svg����������������������������������������0000664�0000000�0000000�00000000520�14753064456�0024065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.583 23.497c.067.192-.043.348-.247.348H9.074c-.408 0-.85-.311-.988-.695L.043.784C-.105.393.149.115.528.16L6.92.776c.405.039.844.383.978.767zM23.473.16l-6.392.616c-.406.039-.844.383-.978.768l-3.827 10.99 3.678 10.509L23.959.783c.137-.383-.08-.662-.485-.623"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/v0.svg���������������������������������������0000664�0000000�0000000�00000000607�14753064456�0024153�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.066 6.028v2.22h5.729q.075-.001.148.005l-5.853 5.752a2 2 0 0 1-.024-.309V8.247h-2.353v5.45c0 2.322 1.935 4.222 4.258 4.222h5.675v-2.22h-5.675q-.03 0-.059-.003l5.729-5.629q.006.082.006.166v5.465H24v-5.465a4.204 4.204 0 0 0-4.205-4.205zM0 8.245l8.28 9.266c.839.94 2.396.346 2.396-.914V8.245H8.19v5.44l-4.86-5.44Z"/></svg>�������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/v2ex.svg�������������������������������������0000664�0000000�0000000�00000000465�14753064456�0024514�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.671 1.933h13.821a1.34 1.34 0 0 1 .98.425l8.166 8.725a1.34 1.34 0 0 1 0 1.834l-8.166 8.724a1.34 1.34 0 0 1-.98.426H.673A.67.67 0 0 1 0 21.395v-6.878h13.19l2.276-2.28a.336.336 0 0 0 0-.474l-2.276-2.28H0V2.604a.67.67 0 0 1 .671-.671"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/v8.svg���������������������������������������0000664�0000000�0000000�00000001515�14753064456�0024162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.832 6q0-.242.023-.479c.019-.207.07-.401.112-.599l-.694-1.377H0l2.182 3.818h1.527l2.097 3.98a6.53 6.53 0 0 1 1.727-2.745A5.1 5.1 0 0 1 6.832 6m3.533 13.663L12 22.637l1.637-2.975c-.535.138-1.079.234-1.637.234s-1.101-.096-1.635-.233m7.363-16.118-.717 1.258c.056.238.112.476.134.726a5.15 5.15 0 0 1-.677 3.07 6.57 6.57 0 0 1 1.727 2.746l2.097-3.981h1.527L24 3.545zm.118 8.462a6 6 0 0 0-2.073-3.31A4.64 4.64 0 0 0 12 1.363 4.635 4.635 0 0 0 7.363 6a4.62 4.62 0 0 0 .865 2.697A5.99 5.99 0 0 0 6 13.363a6.01 6.01 0 0 0 3.814 5.592 6.02 6.02 0 0 0 4.375-.003 6.006 6.006 0 0 0 3.657-6.945M12 4.227c1.129 0 2.046.917 2.046 2.045a2.046 2.046 0 0 1-4.092 0c0-1.128.918-2.045 2.046-2.045m0 11.456a2.32 2.32 0 0 1 0-4.637c1.282 0 2.318 1.037 2.318 2.318S13.282 15.683 12 15.683"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vaadin.svg�����������������������������������0000664�0000000�0000000�00000001442�14753064456�0025066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.166.521C.506.521 0 1.055 0 1.715v1.97c0 2.316 1.054 3.473 3.502 3.473h5.43c1.623 0 1.783.685 1.783 1.35q0 .1.012.193a1.268 1.268 0 0 0 2.531-.004c.007-.062.012-.121.012-.19 0-.664.16-1.349 1.783-1.349h5.43C22.93 7.158 24 6.001 24 3.686V1.715c0-.66-.524-1.194-1.184-1.194s-1.189.534-1.189 1.194l-.004.685c0 .746-.476 1.27-1.594 1.27h-5.322c-2.422 0-2.608 1.796-2.687 2.748h-.055c-.08-.952-.266-2.748-2.688-2.748H3.955c-1.118 0-1.629-.544-1.629-1.29v-.665c0-.66-.5-1.194-1.16-1.194m5.875 10.553a1.586 1.586 0 0 0-1.375 2.371c1.657 3.06 3.308 6.13 4.967 9.184a1.415 1.415 0 0 0 2.586.02l.033-.06 4.945-9.142a1.587 1.587 0 0 0-1.377-2.373c-.702 0-1.179.345-1.502 1.082l-3.386 6.313-3.383-6.305c-.326-.745-.805-1.09-1.508-1.09"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vagrant.svg����������������������������������0000664�0000000�0000000�00000000362�14753064456�0025266�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.556 0 .392 1.846V4.11l7.124 17.3L11.998 24l4.523-2.611 7.083-17.345V1.848l.004-.002L20.44 0l-5.274 3.087v2.111l-3.168 7.384-3.164-7.384V3.109l-.017-.008.017-.01z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vala.svg�������������������������������������0000664�0000000�0000000�00000000733�14753064456�0024551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.384 24 8.868 2.14q-2.25.844-3.515 2.64-1.25 1.797-1.25 4.47 0 .608.062 1 .078.374.156.609.078.218.141.343.078.125.078.22-.828 0-1.468-.157-.641-.172-1.079-.531-.422-.359-.656-.953-.22-.593-.22-1.469 0-1.062.453-2.093.469-1.03 1.266-1.953.812-.921 1.89-1.703 1.095-.781 2.329-1.344Q8.305.641 9.648.33 11.008 0 12.352 0q.36 0 .656.016.312.015.624.046l.282 19.687L20.648.155h2.234L13.992 24h-4.61Z"/></svg>�������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/valorant.svg���������������������������������0000664�0000000�0000000�00000001043�14753064456�0025447�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.792 2.152a.25.25 0 0 0-.098.083q-5.077 6.345-10.15 12.69c-.107.093-.025.288.119.265 2.439.003 4.877 0 7.316.001a.66.66 0 0 0 .552-.25q1.162-1.45 2.324-2.903a.72.72 0 0 0 .144-.49c-.002-3.077 0-6.153-.003-9.23.016-.11-.1-.206-.204-.167zM.077 2.166c-.077.038-.074.132-.076.205q.002 4.612.001 9.225a.68.68 0 0 0 .158.463l7.64 9.55c.12.152.308.25.505.247 2.455 0 4.91.003 7.365 0 .142.02.222-.174.116-.265C10.661 15.176 5.526 8.766.4 2.35c-.08-.094-.174-.272-.322-.184z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/valve.svg������������������������������������0000664�0000000�0000000�00000000660�14753064456�0024742�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 8.579v6.842h24V8.58zm1.8 1.415h.793l.776 3.044.76-3.044h.836l-1.227 4.029H3zm5.488 0h1.084l1.145 4.034h-.814l-.27-1.007H7.228s-.21.81-.254.99c-.242.017-.83 0-.83 0zm4.184 0h.792v3.352h1.69v.677h-2.482zm3.45 0h.816l.776 3.005.754-3.005h.815l-1.222 4.034h-.716zm4.828 0h1.69v.522h-1.084v.584h.99v.523h-.99v.6h1.084v.523h-1.69zm-11.902.68-.426 1.702h.89z"/></svg>��������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vapor.svg������������������������������������0000664�0000000�0000000�00000000632�14753064456�0024753�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.75 13.908v1.56L12 24 1.25 15.468v-1.56L12 22.44zM12 17.267 1.25 8.824 12 0l10.75 8.824zm.356-4.635a3.193 3.193 0 0 0 3.193-3.193 3.185 3.185 0 0 0-3.029-3.176l.001-.016-4.514-.427 1.205 4.102a3.184 3.184 0 0 0 3.144 2.71M12 20.269 1.25 11.737v1.533L12 21.802l10.75-8.532v-1.533zm0-2.366L1.25 9.46v1.64L12 19.63l10.75-8.532V9.46z"/></svg>������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vault.svg������������������������������������0000664�0000000�0000000�00000000577�14753064456�0024767�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m0 0 11.955 24L24 0zm13.366 4.827h1.393v1.38h-1.393zm-2.77 5.569H9.22V8.993h1.389zm0-2.087H9.22V6.906h1.389zm0-2.086H9.22V4.819h1.389zm2.087 6.263h-1.377V11.08h1.388zm0-2.09h-1.377V8.993h1.388zm0-2.087h-1.377V6.906h1.388zm0-2.086h-1.377V4.819h1.388zm.683.683h1.393v1.389h-1.393zm0 3.475V8.993h1.389v1.388Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vaultwarden.svg������������������������������0000664�0000000�0000000�00000007452�14753064456�0026167�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.54.448c-.142.238-.333.524-.438.628-.171.181-.18.172-.733-.371-.667-.667-.772-.648-1.086.21-.133.352-.295.6-.429.676-.19.095-.285.066-.761-.276-.8-.562-.943-.477-1.096.619-.038.276-.114.476-.21.514-.076.029-.4-.067-.704-.22-.781-.37-.896-.285-.905.62 0 .371-.048.724-.095.771-.067.067-.315.048-.781-.066-.915-.22-.972-.162-.753.752.114.467.133.715.067.781-.048.048-.4.095-.772.095-.914.01-.99.124-.61.905.372.781.277 1.01-.447 1.105-1.067.153-1.133.286-.543 1.076.476.63.448.724-.343 1.01-.847.324-.867.429-.2 1.095.543.553.553.562.372.734-.105.105-.39.295-.629.438-.59.343-.59.571 0 .914.238.143.524.334.629.438.18.172.171.181-.372.734-.667.667-.647.771.21 1.086.352.133.6.295.676.428.095.19.067.286-.276.762-.562.8-.476.943.619 1.096.276.038.476.114.514.21.029.075-.066.4-.219.704-.371.781-.286.895.62.905.37 0 .723.048.77.095.067.067.048.314-.066.781-.219.915-.162.972.753.753.466-.115.714-.134.78-.067.048.048.096.4.096.771.01.915.124.991.905.61.78-.371 1.01-.276 1.105.448.152 1.067.285 1.133 1.076.543.629-.477.724-.448 1.01.343.323.847.419.866 1.105.19.666-.648.609-.657 1.161.276.343.581.572.581.915 0 .552-.933.495-.924 1.162-.276.686.676.78.657 1.095-.2.133-.352.295-.6.429-.676.19-.096.286-.067.762.276.8.562.943.476 1.095-.619.038-.276.114-.476.21-.514.076-.029.4.066.705.219.78.371.895.285.905-.62 0-.37.047-.723.095-.771.066-.067.314-.048.78.067.915.219.972.162.753-.753-.114-.467-.133-.714-.067-.78.048-.048.4-.096.772-.096.914-.01.99-.124.61-.905-.372-.78-.277-1.01.447-1.105 1.067-.152 1.134-.286.543-1.076-.476-.629-.448-.724.343-1.01.848-.324.867-.419.19-1.105-.647-.666-.657-.61.277-1.162.295-.18.438-.324.438-.457s-.143-.276-.438-.457c-.934-.552-.924-.495-.276-1.162.676-.686.657-.781-.2-1.095-.353-.134-.6-.296-.677-.429-.095-.19-.067-.286.276-.762.562-.8.477-.943-.619-1.095-.276-.038-.476-.115-.514-.21-.029-.076.067-.4.219-.705.372-.78.286-.895-.619-.905-.371 0-.724-.047-.772-.095-.066-.066-.047-.314.067-.78.22-.915.162-.972-.752-.753-.467.114-.715.133-.781.066-.048-.047-.096-.4-.096-.771-.01-.915-.123-.99-.905-.61-.78.372-1.01.277-1.104-.447-.153-1.067-.286-1.134-1.077-.543-.628.476-.724.447-1.01-.343-.323-.848-.428-.867-1.095-.2-.552.543-.562.552-.733.371-.105-.105-.295-.39-.438-.628C12.274.143 12.13 0 11.998 0c-.134 0-.276.143-.457.448m.934 1.933c.105.105.19.315.19.476a.76.76 0 0 1-.19.477c-.41.41-1.143.104-1.143-.477 0-.362.305-.666.667-.666.162 0 .371.085.476.19m-1.467 1.62c.924.895 1.057.895 1.981 0l.686-.667.667.19c.762.21 1.943.715 1.943.838 0 .038-.895 2.63-1.99 5.744-1.096 3.114-2.049 5.838-2.106 6.058-.067.228-.152.41-.19.41s-.115-.163-.162-.353c-.057-.2-1-2.943-2.105-6.106a604 604 0 0 1-2.02-5.79c0-.115 2.115-.934 2.563-.982.028-.01.352.286.733.657m-3.343 9.6c1.352 3.791 2.429 6.906 2.4 6.934-.067.077-1.076-.219-1.505-.447-.343-.172-.352-.19-.476-1-.076-.524-.19-.905-.305-1.058-.19-.238-.219-.238-.867-.171-1.428.162-1.371.18-1.933-.572-.61-.81-1.181-1.943-1.457-2.905-.162-.533-.22-1.066-.257-2.095l-.048-1.381.857-.457c1.153-.6 1.181-.705.59-1.877-.428-.847-.428-.8.125-1.6.152-.229.314-.38.352-.333.038.038 1.171 3.171 2.524 6.962m11.82-6.21.238.4-.39.772c-.59 1.18-.562 1.286.58 1.886l.848.447v1.077c0 1.247-.171 2.219-.58 3.257-.315.79-.944 1.838-1.449 2.429l-.323.38-.753-.113a9 9 0 0 0-1.01-.115c-.4 0-.6.353-.733 1.286l-.124.829-.504.219c-.581.257-1.286.467-1.353.39-.038-.038 4.01-11.524 4.848-13.772l.095-.238.191.238c.105.123.295.41.419.628M3.76 8.715c.447.438.18 1.095-.448 1.095-.4 0-.648-.238-.648-.628 0-.629.658-.915 1.096-.467m17.22-.133c.277.152.353.266.353.6 0 .38-.248.628-.638.628-.638 0-.915-.647-.458-1.095.258-.267.43-.295.743-.133zM7.236 19.154c.343.82-.829 1.324-1.21.515-.142-.296-.142-.343.01-.572.324-.495.99-.467 1.2.057zm10.563-.257c.238.19.305.524.153.82-.391.761-1.524.218-1.191-.563.171-.428.667-.552 1.038-.257"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vauxhall.svg���������������������������������0000664�0000000�0000000�00000004734�14753064456�0025457�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.002 24C5.375 24.001.002 18.63 0 12.002-.001 5.375 5.37.002 11.998 0s12 5.37 12.002 11.998c.007 6.621-5.375 12.007-11.998 12.002M15.8 5.371c.338.022.658.038.978.066a4.1 4.1 0 0 1 1.496.386.77.77 0 0 1 .413.414q.074.226.076.464c0 .14.034.213.185.25.351.091.699.204 1.044.314.395.096.694.42.759.822.053.28.062.568.028.853a7 7 0 0 1-.238.962c0 .053-.066.094-.1.138a1 1 0 0 1-.132-.132c-.054-.09-.091-.194-.141-.288a.73.73 0 0 0-.612-.417 8.5 8.5 0 0 0-2.02.038.8.8 0 0 0-.206.1c.063.04.122.085.185.12a.5.5 0 0 0 .135.03l.815.154a.79.79 0 0 1 .627.477c.072.172.035.241-.144.263h-.213c-.562.044-1.123.072-1.681.135-.41.044-.561.244-.574.658-.029.911.023 1.823.154 2.725a2.57 2.57 0 0 0 1.326 2.023 30 30 0 0 0 3.214 1.567c.107.047.166.032.217-.075.16-.313.332-.646.482-.975.5-1.063.818-2.203.941-3.37a10.4 10.4 0 0 0-.085-2.647 11 11 0 0 0-1.204-3.65 10.9 10.9 0 0 0-3.449-3.741 10.35 10.35 0 0 0-4.954-1.828 11.1 11.1 0 0 0-3.299.182 10.66 10.66 0 0 0-6.356 3.995c-.15.174.092.232.239.207h5.989c.279 0 .313.063.172.313q-1.606 2.822-3.208 5.645a.56.56 0 0 1-.542.313H1.432c-.226 0-.235 0-.238.232.004.855.109 1.707.314 2.537.035.17.137.32.282.417a3.4 3.4 0 0 0 1.966.627h4.01a.176.176 0 0 0 .201-.144c.035-.144.078-.286.12-.427.07-.187-.201-.136-.286-.14-.22 0-.44-.023-.659-.045-.208.015-.181-.195-.103-.332.354-.752.7-1.511 1.063-2.26.129-.291.37-.517.668-.628.266-.097.53-.213.79-.332.06-.029.097-.104.144-.154a.6.6 0 0 0-.179-.085c-.188-.018-.379-.015-.567-.034s-.2-.097-.12-.232c.383-.627.766-1.27 1.158-1.9a1 1 0 0 1 .599-.427 5 5 0 0 0 .536-.178 1 1 0 0 0 .213-.157l-.025-.057c-.176-.025-.351-.047-.527-.075-.175-.028-.185-.106-.1-.238s.141-.213.21-.314a4.3 4.3 0 0 1 1.254-1.351c.462-.276.97-.467 1.499-.565a.7.7 0 0 0 .289-.156c.743-.662 1.44-1.38 2.2-2.032-.137.67-.238 1.31-.344 1.96zM2.56 6.604l.022.134c.314 1.314.605 2.628.9 3.945.025.107.072.135.179.132h1.687a.28.28 0 0 0 .294-.17Q6.734 8.698 7.837 6.76c.025-.043.044-.087.079-.153H6.778a.42.42 0 0 0-.417.244c-.52.922-1.047 1.84-1.567 2.76l-.091.14q-.328-1.409-.646-2.78c-.094-.418-.06-.358-.455-.361l-1.04-.006zm.627 11.639c.958 1.52 2.473 2.693 4.076 3.502a.176.176 0 0 0 .22-.028q.546-.448 1.097-.887l.386-.314a15 15 0 0 1-.777-.95.48.48 0 0 0-.295-.213l-3.876-.916-.83-.194zm14.938-11.26c-.088-.019-.14-.038-.191-.044-.263-.034-.53-.05-.787-.11a.83.83 0 0 0-.724.189c-.035.025-.072.072-.066.103a.14.14 0 0 0 .09.088c.314.097.628.197.957.27a.4.4 0 0 0 .314-.066q.218-.2.404-.43z"/></svg>������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vbulletin.svg��������������������������������0000664�0000000�0000000�00000000274�14753064456�0025632�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.09 10.316V24h21.82V0h-2.417l-5.461 19.613h-6.09l-3.134-9.246zm9.283-4.444 1.363 6.308L13.955 0H1.089v5.872Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vectary.svg����������������������������������0000664�0000000�0000000�00000001113�14753064456�0025274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.18 2.318a7 7 0 0 0-.274.012c-.628.017-1.293.412-1.61.955-.341.527-.394 1.301-.126 1.87l4.271 9.667c.24.581.845 1.063 1.465 1.164.614.133 1.356-.094 1.791-.547 1.039-1.005 1.847-2.464 2.143-4.021s.079-3.212-.52-4.527c-.57-1.329-1.648-2.603-2.998-3.434A7.77 7.77 0 0 0 2.18 2.318m18.857 0a7.6 7.6 0 0 0-2.834.59c-1.798.765-3.267 2.3-3.914 3.862L8.172 20.62a.46.46 0 0 0 .262.613c1.573.617 3.698.622 5.496-.142 1.797-.765 3.269-2.3 3.916-3.862L23.96 3.38a.46.46 0 0 0-.26-.613c-.787-.309-1.711-.464-2.664-.448"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vectorlogozone.svg���������������������������0000664�0000000�0000000�00000000262�14753064456�0026702�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.458 0-5.311 2.024 1.989.534-4.847 16.085-4.867-16.25H1.48L8.974 24h4.645l7.043-20.226 1.858.499Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vectorworks.svg������������������������������0000664�0000000�0000000�00000001014�14753064456�0026207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.6 0 12 0m0 22.725c-5.925 0-10.725-4.8-10.725-10.725S6.075 1.275 12 1.275 22.725 6.075 22.725 12 17.925 22.725 12 22.725M8.775 7.5h-2.25c-.15 0-.208.086-.15.225l4.425 10.65c.04.098.15.225.3.225h1.95c.15 0 .206-.086.15-.225l-4.35-10.8c-.028-.07-.035-.075-.075-.075m8.7 0h-2.25c-.075 0-.13.023-.15.075L13.35 11.85a.6.6 0 0 0 0 .375l1.05 2.55c.075.15.225.15.3 0l2.925-7.05c.057-.139 0-.225-.15-.225"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/veeam.svg������������������������������������0000664�0000000�0000000�00000004712�14753064456�0024724�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.63 9.842c-1.104 0-2 .945-2 2.101v.108c0 1.322.846 2.038 1.974 2.1.051.007.108.007.16.007.435 0 .794-.115 1.195-.361.04-.023.201-.132.361-.338.132-.166.138-.411 0-.543-.2-.189-.412-.086-.595.074-.292.246-.516.442-1.1.442-.55 0-1.064-.316-1.19-.94 0-.023.01-.045.034-.045H8.16a.473.473 0 0 0 .47-.504c0-1.156-.894-2.1-1.999-2.1zm4.466 0c-1.1 0-1.996.945-1.996 2.101v.108c0 1.322.846 2.038 1.974 2.1.052.007.11.007.16.007.435 0 .795-.115 1.196-.361.04-.023.2-.132.361-.338.132-.166.137-.411 0-.543-.2-.189-.413-.086-.596.074-.292.246-.515.442-1.1.442-.549 0-1.063-.316-1.189-.94-.006-.023.01-.045.028-.045h2.691a.473.473 0 0 0 .47-.504c-.007-1.156-.9-2.1-1.999-2.1zm-6.89.04a.4.4 0 0 0-.344.223l-1.42 3.063c-.034.063-.062.11-.136.11s-.105-.047-.14-.11l-1.42-3.057a.38.38 0 0 0-.53-.177.43.43 0 0 0-.172.56l1.39 2.828.16.32a.8.8 0 0 0 .712.46.79.79 0 0 0 .709-.46l.16-.32 1.385-2.834a.423.423 0 0 0-.166-.56.4.4 0 0 0-.188-.045zm11.362 0a.76.76 0 0 0-.504.188.8.8 0 0 0-.207.27l-1.59 3.137c0 .005-.007.006-.007.01v.007a.43.43 0 0 0 .03.442c0 .005.005.006.005.01 0 .007.006.005.006.01a.37.37 0 0 0 .516.077s.005 0 .005-.006a.1.1 0 0 0 .024-.017l.015-.018.006-.006a.5.5 0 0 0 .076-.103l.057-.125.332-.7c.006-.017.028-.027.045-.027h1.484c.195 0 .354-.167.354-.379 0-.206-.159-.377-.354-.377h-1.099a.033.033 0 0 1-.03-.046l.08-.172.602-1.207v-.006s0-.006.006-.006c.011-.023.04-.108.098-.125q.051-.018.086 0c.063.017.084.091.113.148l1.455 3.022a.393.393 0 0 0 .48.195s.006 0 .006-.006l.035-.017c.006 0 .007-.006.012-.006 0 0 .006 0 .006-.006.006 0 .006-.006.012-.006s.01-.004.01-.01c.006 0 .006-.006.011-.006q.009-.01.018-.012l.017-.017.006-.006a.41.41 0 0 0 .092-.498l-1.598-3.154a.79.79 0 0 0-.709-.45zm3.508 0c-.39 0-.709.332-.709.778v3.018c0 .183.104.354.264.406.263.086.486-.143.486-.412l-.058-2.938a.03.03 0 0 1 .052-.017l1.442 2.93c.137.28.367.449.625.449.257 0 .49-.167.623-.448l1.449-2.935c.01-.029.05-.019.05.016l-.056 2.955c0 .234.177.423.389.412.206-.006.367-.207.367-.43V10.66c.01-.452-.31-.77-.7-.777a.68.68 0 0 0-.61.394c-.361.739-1.426 2.93-1.426 2.936-.006.01-.03.064-.075.064-.04 0-.068-.047-.074-.064-.35-.727-1.047-2.164-1.408-2.908-.143-.287-.38-.422-.63-.422zm-12.45.647c.697 0 1.14.527 1.208 1.145 0 .023-.012.045-.035.045H5.47q-.034-.01-.033-.045c.074-.607.49-1.145 1.19-1.145zm4.47 0h.002c.697.001 1.138.527 1.207 1.145 0 .023-.013.045-.035.045H9.94c-.023-.006-.04-.022-.034-.045.075-.606.493-1.144 1.19-1.145"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/veed.svg�������������������������������������0000664�0000000�0000000�00000000461�14753064456�0024547�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.985 3.448 17.514 19.32a2.41 2.41 0 0 1-2.235 1.502h-6.54a2.41 2.41 0 0 1-2.234-1.5L.015 3.447a.196.196 0 0 1 .181-.27h6.55a.39.39 0 0 1 .368.254l4.905 13.083 4.866-13.082a.39.39 0 0 1 .367-.255h6.552c.139 0 .234.141.181.27z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/veepee.svg�����������������������������������0000664�0000000�0000000�00000001513�14753064456�0025074�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.808 9.941a11.6 11.6 0 0 0-.872-3.51c.784-1.634 1.59-2.239 1.59-2.239s1.658 4.244.203 8.605c-.9 2.698-1.977 4.328-2.554 5.028-.129.156-.243.205-.172.11 1.36-1.834 2.109-4.749 1.805-7.994m1.317 5.143c-.672.809-1.35 1.594-2.1 2.195-.108.086-.176.08-.093-.011 2.653-2.896 5.536-9.314 1.8-15.64 0 0-1.477 1.02-2.69 3.134C15.846 2.922 14.106 1.379 11.94 0c0 0-5.479 6.107-3.056 14.954-6.99.964-4.452 6.361-3.344 7.137.052.037.096.018.025-.091-.393-.603-1.491-2.71.773-4.732 1.215-1.084 3.761-1.367 3.761-1.367-.579-4.248-.538-8.086 2.364-12.333.371.246 4.616 2.112 4.776 8.396.355 3.941-1.691 7.096-3.677 8.324-3.519 1.888-7.468 2.814-10.901 3.619-.291.069-.178.1.016.092 8.156-.343 15.407-4.011 18.195-7.512.537-.673.777-1.414.415-1.824-.361-.411-1.016.244-1.162.421"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vega.svg�������������������������������������0000664�0000000�0000000�00000000277�14753064456�0024553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.39 8.693H24l-3.123-6.68ZM6.68 1.987H0L7.098 22.03h.008l2.86-10.73zm14.197-.016-7.098 20.042h-6.68L14.195 1.97"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vegas.svg������������������������������������0000664�0000000�0000000�00000003746�14753064456�0024742�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.23 9.104c-.608 0-1.088.092-1.457.277-.369.166-.627.46-.793.848-.166.424-.24.997-.24 1.716 0 1.017.109 2.076.776 2.6.258.203.589.297 1.013.297.295 0 .59 0 .83-.074.222-.074.425-.185.573-.332a.6.6 0 0 0 .148-.166v.478h.96v-3.191h-1.09v1.992a1.8 1.8 0 0 1-.534.223 1.6 1.6 0 0 1-.443.054.9.9 0 0 1-.555-.166c-.13-.11-.24-.294-.295-.553-.127-.595-.106-1.58-.037-2.029.055-.24.11-.425.203-.555.207-.33.671-.35.941-.35h.553c.185 0 .35.018.535.018s.37.002.555.02l.072-.887c-.37-.11-.507-.151-1.05-.201-.221-.024-.443-.013-.665-.02m9.74 0c-.583 0-1.195.096-1.548.332-.273.182-.48.467-.48 1.236 0 .687.195 1.27 1.162 1.605l1.125.387c.129.037.24.092.314.129a.4.4 0 0 1 .166.186c.076.151.079.532-.02.663a.33.33 0 0 1-.257.166c-.305.053-.615.033-.922.038-.166 0-.35-.02-.59-.02s-.517-.017-.83-.017l-.02.902c.24.055.776.13 1.108.148.332.019.61.037.775.037.277 0 .7-.018.96-.074.257-.055.46-.147.626-.257a1.07 1.07 0 0 0 .35-.499 2.5 2.5 0 0 0 .111-.793c0-.424-.092-.757-.258-1.015s-.479-.46-.922-.608l-1.07-.351c-.221-.074-.369-.148-.461-.24-.154-.123-.154-.46-.094-.702a.33.33 0 0 1 .13-.146c.073-.018.148-.057.259-.057.11-.018.24-.017.387-.017h.922c.313 0 .59.017.83.017l.02-.847a8.4 8.4 0 0 0-1.772-.203Zm-15.292.074c-.642 0-1.18.41-1.18 1.125v3.34c0 .332.11.607.332.81.203.203.497.315.848.315h.904c.277 0 .757-.02.904-.02.13-.018.515-.036.774-.055v-.884H7.12a.4.4 0 0 1-.295-.112.53.53 0 0 1-.094-.314v-1.088h2.233v-.867H6.732v-.867c0-.148.02-.24.094-.313.056-.074.166-.111.295-.111H9.26v-.885c-.258-.018-.57-.038-.774-.057-.602-.027-1.206-.017-1.808-.017M0 9.215l1.531 5.201c.04.197.212.332.424.332H3.08a.42.42 0 0 0 .426-.332l1.512-5.201H3.764l-1.145 4.52s-.019.017-.037.017h-.147c-.018 0-.037 0-.037-.018l-1.125-4.52zm16.492 0c-.119 0-.38.07-.424.332l-1.605 5.22h1.254l.406-1.456h1.9l.407 1.457h1.254l-1.606-5.221a.47.47 0 0 0-.146-.24.46.46 0 0 0-.278-.092zm.645.976c.018 0 .037.02.037.037l.592 2.141h-1.403l.59-2.14c.019-.019.019-.037.028-.037z"/></svg>��������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/velog.svg������������������������������������0000664�0000000�0000000�00000000737�14753064456�0024746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 0C1.338 0 0 1.338 0 3v18c0 1.662 1.338 3 3 3h18c1.662 0 3-1.338 3-3V3c0-1.662-1.338-3-3-3zm6.883 6.25q.945 0 1.125.9l1.463 8.303q.697-.923 1.146-1.553a14 14 0 0 0 1.283-2.273q.608-1.283.608-2.295 0-.607-.338-.967-.315-.382-1.193-.967.9-1.148 2.25-1.148.72 0 1.193.428.495.427.494 1.26 0 1.395-1.17 3.488-1.147 2.07-4.431 6.232l-2.227.156-1.711-9.628h-2.25V7.24q.9-.293 2.115-.63 1.215-.36 1.643-.36"/></svg>���������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vencord.svg����������������������������������0000664�0000000�0000000�00000005104�14753064456�0025263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.613.6v.587h2.4V.6h-1.2zm2.4.587v8.4H3.6v-8.4h-.293zm.587 8.4v.613h.613v-.613h-.306zm.613.613v.587H4.8V10.2h-.293zm.587.587v.613h.613v-.613h-.306zm.613.613v.587H6V11.4h-.293zm.587.587v.613h1.2v-.613h-.6zm1.2 0h.613V11.4H7.2v.293zm.613-.587H8.4V15h-.587v.587H8.4v4.8h.613v-9.6h2.4v-2.4H10.8V10.2H9.6v-.613h-.587v.613H8.4v.587h-.587v.306zM9.6 9.587h.613v-8.4H9.6v4.2zm.613-8.4h2.4V.6h-2.4v.293zm2.4 0V7.8h-1.2v.587H15.6v.32H18v-.32h.614v.32h2.106v-.32h.294V6.893h-.294v-.906h-.32v-.88h-.293V5.4h-.293v.907h-.294V6.6h.294v.587h.293v-.88h.293v.88h.32v.906h-.32v.294h-.586v-.294h.293V7.8h.293v-.613h-.293v.32h-.293V7.8h-.294v.587h-.613V7.8h-.293v-.293h-.294V7.8h-1.813v.293h1.2v.294H15.92v-.294h-1.813V7.8h-.293V6.307h-.294V7.8h-.32V1.187h-.293zm1.2 5.12h.294v-.32h-.294v.16zm.294-.32h.293V5.4h-.293v.293zM14.4 5.4h.614v-.293H14.4v.146zm.614-.293h.586V5.4h.32v-.613h-.906v.16zm.906-.32h.293v-.294h-.293v.147zm.293-.294h.294V4.2h-.294v.147zm.294-.293h.293v-.293h-.293v.146zm.293 0v.587h.32v.32h.293v-.32h.294v.32h-.294V5.4H18v-.613h.32V4.2H18v.293h-.88V4.2h-.16zm1.52 0h.294v-.293h-.294v.146zm.294-.293h.293v-.32h-.293v.16zm.293-.32h.293v-.294h-.293v.147zm.293 0v1.52h.32v-.32h.293v-.294h-.293v-.906h-.16zm.613 1.2v.32h.294v-.32h-.147zm0 .32h-.293V5.4h.293v-.147zM15.6 5.4h-.293v1.2h.293V6zm0 1.2v.587h.32V6.6h-.16zm.32.587v.32h.293v-.32h-.146zm.293.32V7.8h.294v-.293h-.147zm2.694.293h.613v-.293h-.613v.146zm.613-.293h.293v-.32h-.293v.16zm0-.907h-.613v.293h.613v-.146zm-.613.293h-.293v.294h.293V7.04zm2.107 1.494v2.4h2.4V10.2H21.6V8.387h-.293zm2.4 2.4v2.4H24v-2.4h-.293zm0 2.4h-4.8v.613h4.8v-.307zm-4.8 0v-2.4h-4.8v9.6h4.8v-2.4H18V19.8h-3.6v-8.4H18v1.787h.307zm0 4.8h4.8V17.4h-4.8v.293zm4.8 0v2.4H24v-2.4h-.293zm0 2.4h-2.4v2.4h.586V21h1.814v-.306zm-2.4 2.4h-9.6v.613h9.6v-.307zm-9.6 0v-2.4h-2.4V21H10.8v1.787h.307zm-3.6-7.2h-2.4v.613h2.4v-.307zm-2.4 0V15H4.8v.587h.307zM4.8 15v-.613h-.586V15h.293zm-.586-.613V13.8H3.6v.587h.307zM3.6 13.8v-.613h-.587v.613h.294zm-.587-.613V12.6H2.4v.587h.307zM2.4 12.6v-.613h-.587v.613h.294zm-.587-.613V11.4H1.2v.587h.307zM1.2 11.4v-.613H.614v.613h.293zm-.586-.613v-9.6H0v9.6h.307zM13.52.6v.293h1.493v.293h.293V.893h.294V.6h-1.04zm1.493.586h-.293v.32h.293v-.16zm-.293.32h-.32V1.8h.32v-.147zm0 .294v.293h.293V1.8h-.147zm-.32 0h-.294v.293h.294v-.147zm-.294.293h-.293v.293h-.293v.32h2.08v-.32h-1.494V2.24zm.294-.587v-.32h-.294v.32h.147zm2.106.294v.293h.907v.293h.293v-.293H18V1.8h-.747zm.907.586h-.293v.32h-.614V3H18v-.294h-.587v-.16zm-1.2 4.214v.293h.586V6.6h-.293zm.586.293v.293h.907v-.293h-.453zm.907.293v.32H18v-.32h-.146z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/venmo.svg������������������������������������0000664�0000000�0000000�00000002641�14753064456�0024752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.772 13.119c-.267 0-.381-.251-.38-.655 0-.533.121-1.575.712-1.575.267 0 .357.243.357.598 0 .533-.13 1.632-.689 1.632m.502-3.377c-1.677 0-2.405 1.285-2.405 2.658 0 1.042.421 1.874 1.693 1.874 1.717 0 2.438-1.406 2.438-2.763 0-1.025-.462-1.769-1.726-1.769m-3.833 0c-.558 0-.964.17-1.393.477-.154-.275-.462-.477-.932-.477-.542 0-.947.219-1.247.437l-.04-.364H13.54l-.688 4.354h1.506l.479-3.053c.129-.065.323-.154.518-.154.145 0 .267.049.267.267 0 .056-.016.145-.024.218l-.429 2.722h1.498l.478-3.053c.138-.073.324-.154.51-.154.146 0 .268.049.268.267 0 .056-.017.145-.025.218l-.429 2.722h1.499l.461-2.908c.025-.153.049-.388.049-.549 0-.582-.267-.97-1.037-.97m-6.871 0c-.575 0-.98.219-1.287.421l-.017-.348H8.962l-.689 4.354H9.78l.478-3.053c.13-.065.324-.154.518-.154.147 0 .268.049.268.242 0 .081-.024.227-.032.299l-.422 2.666h1.499l.462-2.908c.024-.153.049-.388.049-.549 0-.582-.268-.97-1.03-.97m-5.631 1.834c.041-.485.413-.824.697-.824.162 0 .299.097.299.291 0 .404-.713.533-.996.533m.843-1.834c-1.604 0-2.382 1.39-2.382 2.698 0 1.01.478 1.817 1.814 1.817.527 0 1.07-.113 1.418-.282l.186-1.26c-.494.25-.874.347-1.271.347-.365 0-.64-.194-.64-.687.826-.008 2.252-.347 2.252-1.453 0-.687-.494-1.18-1.377-1.18m-4.239.267c.089.186.146.412.146.743 0 .606-.429 1.494-.777 2.06l-.373-2.989L0 9.969l.705 4.2h1.757c.77-1.01 1.718-2.448 1.718-3.554 0-.347-.073-.622-.235-.889z"/></svg>�����������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vercel.svg�����������������������������������0000664�0000000�0000000�00000000144�14753064456�0025102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 22.525H0l12-21.05z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/verdaccio.svg��������������������������������0000664�0000000�0000000�00000000550�14753064456�0025562�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.376 9.84 18.72 7.2h-4.8v.566h.864l-.192.377H12.96v.566h1.344l-.288.565H12v.566h1.728zm-4.255 8.64 3.68-7.265h-3.68l-1.064 2.103L8.959 7.2H5.28l5.712 11.28zM8.88 0h6.24A8.86 8.86 0 0 1 24 8.88v6.24A8.86 8.86 0 0 1 15.12 24H8.88A8.86 8.86 0 0 1 0 15.12V8.88A8.86 8.86 0 0 1 8.88 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/veritas.svg����������������������������������0000664�0000000�0000000�00000002114�14753064456�0025276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m0 9.746 1.248 3.871a.77.77 0 0 0 .734.533.77.77 0 0 0 .733-.533l1.248-3.87H3.27l-1.184 3.665a.11.11 0 0 1-.103.076.11.11 0 0 1-.106-.076L.693 9.746zm5.313 0a1.1 1.1 0 0 0-1.1 1.102v2.2a1.1 1.1 0 0 0 1.1 1.102h2.091v-.662H5.313a.44.44 0 0 1-.44-.44v-.775h2.092v-.65H4.873v-.775a.44.44 0 0 1 .44-.442h2.091v-.66zm3.76 0a.99.99 0 0 0-.991.99v3.414h.66v-3.414a.33.33 0 0 1 .33-.33h1.432a.55.55 0 0 1 .514.354.55.55 0 0 1-.317.71l-1.11.409a.77.77 0 0 0-.476.98.77.77 0 0 0 .414.454l2.074.94v-.722l-1.814-.803a.13.13 0 0 1-.07-.078.13.13 0 0 1 .082-.166l1.136-.396a1.212 1.212 0 0 0-.433-2.342zm3.308 0v4.404h.662V9.746zm1.21 0v.66h1.278v3.744h.66v-3.744h1.278v-.66zm4.708 0a.77.77 0 0 0-.733.533l-1.25 3.871h.696l1.183-3.668a.11.11 0 0 1 .104-.076c.047 0 .088.029.105.076l1.182 3.668h.695l-1.25-3.87a.77.77 0 0 0-.732-.534m3.334 0a1.265 1.265 0 1 0 0 2.531l1.101.002c.335 0 .606.27.606.604a.605.605 0 0 1-.606.605h-2.146v.662h2.146a1.267 1.267 0 0 0 0-2.533h-1.101a.605.605 0 0 1-.606-.605c0-.335.271-.606.606-.606h2.146v-.66z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/verizon.svg����������������������������������0000664�0000000�0000000�00000000207�14753064456�0025316�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.302 0H22v.003L10.674 24H7.662L2 12h3.727l3.449 7.337z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vespa.svg������������������������������������0000664�0000000�0000000�00000005067�14753064456�0024751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.736 11.006-.029-.008c-.127.055-.274.05-.415.067-.202-.12-.4-.248-.606-.36-.079.06-.16.141-.256.168-.11.017-.235.017-.324-.053a.46.46 0 0 1-.22-.422l.207-.93-.01-.03c-.37.025-.753.01-1.131.01-.146.021-.094.197-.168.281-.208-.118-.419-.23-.66-.28-.707-.176-1.404.125-1.84.708-.118.13-.154.305-.297.415l-.915.57c-.02.007-.052.027-.071 0a1.49 1.49 0 0 0-.92-.972c-.873-.23-1.704.1-2.347.707-.032.097-.037.204-.069.3-.498.337-.987.7-1.488 1.031-.02.017-.062.015-.077-.011a1.78 1.78 0 0 0-.66-1.128c-.088-.054-.166-.145-.275-.145l-.462.404-2.458 2.128a.93.93 0 0 1-.693.113c-.028-.014-.089-.002-.086-.048l1.18-1.029.052-.08c-.069-.138-.127-.28-.233-.405-.371-.505-1.063-.643-1.634-.473-.576.176-.997.743-1.12 1.302l-2.45 1.59c-.019.008-.053.033-.066-.004.004-.39.078-.77.221-1.114.334-.85 1.268-1.584 2.204-1.56.045-.009.057-.054.042-.093a7 7 0 0 1-.747-1.158c-.35.06-.65.263-.95.471-.982.819-1.432 1.964-1.459 3.269-.496-.637-.782-1.354-.924-2.115-.18-.805.042-1.7.542-2.31.106-.155.26-.283.352-.442-.337-.358-.65-.751-.834-1.182-.047-.103-.073-.219-.127-.314-.172.072-.33.185-.48.32-.69.648-1.085 1.468-1.03 2.466.094 1.63 1.02 3.04 2.258 4.247-.101.045-.214.052-.321.079-.352.072-.713.136-1.057.218a2 2 0 0 1-.488.856c-.012.017-.038.053-.005.066l7.79-1.515 3.459-.69c.518-.096 1.03-.212 1.572-.272.021.166-.054.316-.058.498.343-.055.68-.127 1.019-.191l.043-.021.105-.572.033-.046 4.804-.941 2.813-.562 1.984-.368.044-.039a1.5 1.5 0 0 1-.264-.401M6.364 14.131l-2.377.46 1.728-1.14c.163.015.196.207.313.304.124.143.286.24.428.346zm.388-.87a.57.57 0 0 1 .029-.41.59.59 0 0 1 .648-.247c.067-.001.103.058.148.1l-.008.035-.734.612c-.036-.011-.067-.055-.083-.09m3.669-.37c-.113.193-.462.091-.407.378.022.065.08.123.106.181-.424.104-.859.173-1.291.25l.022-.052 1.5-1.299a.08.08 0 0 1 .066.005l.085.15a.44.44 0 0 1-.081.388zm2.937-.044c-.454.098-.912.193-1.375.268.027-.097.079-.196.127-.29.08-.085.19-.12.281-.19l1.096-.7.03.003c-.043.3-.063.628-.159.91zm1.573-.272-.446.076-.027-.032c.024-.098.023-.209.074-.293l.03.002a.95.95 0 0 0 .4.22zm.7-.746a.44.44 0 0 1-.41.169.61.61 0 0 1-.457-.355c-.071-.18-.064-.429.093-.567.158-.119.41-.107.571-.002a.65.65 0 0 1 .242.292.5.5 0 0 1-.038.463zm.964.439c.056-.12.162-.21.19-.34l1.16-.767c.014-.003.026-.015.043-.009a.95.95 0 0 0 .485.734zm3.234-1.142a.42.42 0 0 1-.417.102c-.148-.044-.304-.176-.34-.334-.05-.132-.029-.319.076-.42.127-.124.325-.138.481-.067.104.05.208.152.256.263.063.139.05.34-.056.456m.861.371c-.012-.054.058-.082.07-.132l.077-.174c.12.035.191.175.326.184-.136.068-.307.095-.473.122"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vestel.svg�����������������������������������0000664�0000000�0000000�00000001100�14753064456�0025115�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.051 9.4h-1.388s-1.647.059-1.774 1.593 1.582 1.503 1.901 2.158c.203.419-.295.739-.718.739H8.928v.71h1.94s2.031-.11 1.745-1.857c-.183-1.127-1.425-.952-1.842-1.71-.416-.757.31-.972.388-.972h.882zm.205.037h4.103v.659h-1.208v4.468h-1.634v-4.468h-1.261zm4.397 0h3.393v.605h-1.758v1.709h1.599v.605h-1.599v1.496h1.866v.712h-3.501zm3.775 0h1.707v4.415H24v.712h-3.572zm-15.386 0H8.49v.605H6.677v1.709h1.6v.605h-1.6v1.496h1.919v.712H5.042zm-1.051-.001-1.1 3.578-1.135-3.578H0l1.801 5.126h1.313L4.87 9.436z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vexxhost.svg���������������������������������0000664�0000000�0000000�00000002270�14753064456�0025514�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.787 16.045a23 23 0 0 0-1.402 2.185q.241-.451.509-.898.569-.948 1.225-1.88c3.684-5.16 9.117-9.202 14.354-11.112l-.43-1.317c-.018-.012-.032-.02-.04-.014-7.366 2.68-14.173 9.534-16.55 17.194q.172-.42.37-.836c3.407-5.592 9.963-10.16 16.079-12.157l-.183-1.252c-5.385 1.683-10.555 5.398-13.932 10.087M23.04 3.023v-.014h-.03s.011.002.03.014M7.385 18.23l.509-.898q-.267.447-.51.898zM23.05 8.058a11.5 11.5 0 0 1 .798 4.092 11.792 11.792 0 0 1-18.604 9.683A12.084 12.084 0 0 1 4.238 2.916 11.9 11.9 0 0 1 7.908.713a11.5 11.5 0 0 1 4.196-.711 11.18 11.18 0 0 1 7.616 3.11A11.42 11.42 0 0 0 12.11.6a10.9 10.9 0 0 0-3.9.843 11.2 11.2 0 0 0-3.34 2.173A11.5 11.5 0 0 0 2.5 6.781a11.19 11.19 0 0 0 .711 11.266 11 11 0 0 0 2.72 2.827 10.9 10.9 0 0 0 3.554 1.658 11.07 11.07 0 0 0 7.7-.732 11.44 11.44 0 0 0 5.386-5.715 11.8 11.8 0 0 0 .948-3.938 12.1 12.1 0 0 0-.47-4.09zM9.173 6.873H6.79l3.504 4.872a30 30 0 0 1 1.277-1.529zm5.971 11.61h2.358l-3.98-5.551q-.764.597-1.477 1.234zm-1.01 0h.385l-2.843-3.966-.237.22zM6.182 6.873H5.76l4.01 5.563q.099-.139.21-.274zm-.837 0h-.421L9.36 13.01q.097-.141.199-.28zm7.957 11.61h.381l-2.516-3.509-.237.237z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vfairs.svg�����������������������������������0000664�0000000�0000000�00000001243�14753064456�0025115�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.316 5.923c-.01-.014-.027-.024-.04-.035a.4.4 0 0 0-.06-.047L12.223.061a.4.4 0 0 0-.08-.033C12.128.02 12.113.02 12.1.015a.4.4 0 0 0-.325.046l-9.992 5.78a.4.4 0 0 0-.143.141c-.015.014-.02.034-.028.05a.4.4 0 0 0-.048.191v11.56l.007.05c.007.14.088.266.212.331l9.992 5.78a.56.56 0 0 0 .487 0l9.888-5.756a.44.44 0 0 0 .284-.406V6.223a.4.4 0 0 0-.119-.3zM2.45 17.015V6.99l8.665 5.012-8.665 5.012zm10.452-5.023 8.648-5.001v10.024c-2.905-1.676-5.634-3.268-8.648-5.023m-.46-.757V1.211l8.666 5.012zm-.885 0L2.891 6.223l8.666-5.012zm0 1.535v10.024l-8.665-5.012zm.925.023 5.477 3.168 3.129 1.821-8.606 5.01Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/viadeo.svg�����������������������������������0000664�0000000�0000000�00000001757�14753064456�0025104�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.289 13.898q.541 1.326.543 2.875 0 2.896-1.977 5.063Q12.878 24 9.77 24c-2.082 0-3.778-.72-5.098-2.164q-1.977-2.167-1.978-5.063-.001-2.872 1.869-4.98c1.375-1.55 3.106-2.324 5.204-2.324q1.326.001 2.454.413c-.245.48-.466 1.07-.526 1.704a5 5 0 0 0-1.933-.376q-2.181 0-3.742 1.638T4.459 16.81c0 1 .24 1.931.71 2.795.48.864 1.115 1.53 1.925 2s1.694.705 2.66.705 1.859-.234 2.66-.704a5.06 5.06 0 0 0 1.925-2.001c.835-1.497.962-3.465.298-5.039a5.2 5.2 0 0 0 1.652-.67M20.387.428l-.012-.014c-.758 1.615-2.159 1.917-2.159 1.917-1.401.361-1.892.9-1.892.9-1.402 1.416-.295 3.134-.295 3.134 3.03-.693 4.137-3.186 4.137-3.186-.133 1.682-3.732 3.658-3.732 3.658 1.195 1.173 2.33 1.033 3.083.583.996-.59 1.475-1.895 1.475-1.895.966-2.899-.605-5.097-.605-5.097M7.03 20.474s.428.074.912.052c0 0 10.329-7.021 7.61-14.315l-.04-.118v.007c.033.487-4.484 13.061-8.482 14.374m8.383-15.19C15.049 1.41 12.933 0 12.933 0c1.49 2.513 2.3 4.77 2.481 5.306z"/></svg>�����������������mkdocs-material-9.6.4/material/templates/.icons/simple/viaplay.svg����������������������������������0000664�0000000�0000000�00000000424�14753064456�0025270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.277 6.638C.474 8.243 0 10.067 0 12s.474 3.757 1.277 5.362L12 12ZM12 0a11.97 11.97 0 0 0-7.769 2.845l12.547 6.748v4.814L4.231 21.155C6.31 22.942 9.046 24 12 24c6.638 0 12-5.362 12-12S18.638 0 12 0"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/viber.svg������������������������������������0000664�0000000�0000000�00000004031�14753064456�0024730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.4 0C9.473.028 5.333.344 3.02 2.467 1.302 4.187.696 6.7.633 9.817S.488 18.776 6.12 20.36h.003l-.004 2.416s-.037.977.61 1.177c.777.242 1.234-.5 1.98-1.302.407-.44.972-1.084 1.397-1.58 3.85.326 6.812-.416 7.15-.525.776-.252 5.176-.816 5.892-6.657.74-6.02-.36-9.83-2.34-11.546-.596-.55-3.006-2.3-8.375-2.323 0 0-.395-.025-1.037-.017zm.058 1.693c.545-.004.88.017.88.017 4.542.02 6.717 1.388 7.222 1.846 1.675 1.435 2.53 4.868 1.906 9.897v.002c-.604 4.878-4.174 5.184-4.832 5.395-.28.09-2.882.737-6.153.524 0 0-2.436 2.94-3.197 3.704-.12.12-.26.167-.352.144-.13-.033-.166-.188-.165-.414l.02-4.018c-4.762-1.32-4.485-6.292-4.43-8.895.054-2.604.543-4.738 1.996-6.173 1.96-1.773 5.474-2.018 7.11-2.03zm.38 2.602a.304.304 0 0 0-.004.607c1.624.01 2.946.537 4.028 1.592 1.073 1.046 1.62 2.468 1.633 4.334.002.167.14.3.307.3a.304.304 0 0 0 .3-.304c-.014-1.984-.618-3.596-1.816-4.764-1.19-1.16-2.692-1.753-4.447-1.765zm-3.96.695a.98.98 0 0 0-.616.117l-.01.002c-.43.247-.816.562-1.146.932q-.004.004-.008.008-.4.484-.46.948a.6.6 0 0 0-.007.14q0 .205.065.4l.013.01c.135.48.473 1.276 1.205 2.604.42.768.903 1.5 1.446 2.186q.405.517.87.984l.132.132q.466.463.984.87a15.5 15.5 0 0 0 2.186 1.447c1.328.733 2.126 1.07 2.604 1.206l.01.014a1.3 1.3 0 0 0 .54.055q.466-.055.948-.46c.004 0 .003-.002.008-.005.37-.33.683-.72.93-1.148l.003-.01c.225-.432.15-.842-.18-1.12-.004 0-.698-.58-1.037-.83q-.54-.383-1.113-.71c-.51-.285-1.032-.106-1.248.174l-.447.564c-.23.283-.657.246-.657.246-3.12-.796-3.955-3.955-3.955-3.955s-.037-.426.248-.656l.563-.448c.277-.215.456-.737.17-1.248a13 13 0 0 0-.71-1.115 28 28 0 0 0-.83-1.035.82.82 0 0 0-.502-.297zm4.49.88a.303.303 0 0 0-.018.606c1.16.085 2.017.466 2.645 1.15.63.688.93 1.524.906 2.57a.306.306 0 0 0 .61.013c.025-1.175-.334-2.193-1.067-2.994-.74-.81-1.777-1.253-3.05-1.346h-.024zm.463 1.63a.305.305 0 0 0-.3.287c-.008.167.12.31.288.32.523.028.875.175 1.113.422.24.245.388.62.416 1.164a.304.304 0 0 0 .605-.03c-.03-.644-.215-1.178-.58-1.557-.367-.378-.893-.574-1.52-.607h-.018z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/viblo.svg������������������������������������0000664�0000000�0000000�00000000265�14753064456�0024741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.569 19.68h2.904L21.621.018 18.705 0l-4.428 10.668H9.705L5.295 0H2.379zm-7.02 1.854h16.908V24H3.549z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/victoriametrics.svg��������������������������0000664�0000000�0000000�00000001734�14753064456�0027037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.893 3.078C.239 1.537 4.846.009 11.963 0h.076c7.116.009 11.723 1.537 10.067 3.078 0 0-6.168 5.655-8.301 7.473-.404.346-1.084.607-1.766.616h-.076c-.682-.009-1.362-.271-1.767-.616-2.132-1.818-8.301-7.473-8.303-7.473m20.549 2.771V8.58c0 .3-.115.698-.319.885-1.332 1.222-6.47 5.925-8.319 7.502-.405.345-1.085.606-1.767.615h-.072c-.683-.009-1.362-.27-1.767-.615-1.849-1.577-6.987-6.28-8.32-7.502-.204-.187-.318-.585-.318-.885V5.849c1.96 1.788 7.163 6.505 8.638 7.764.404.346 1.084.607 1.767.616h.072c.682-.009 1.362-.271 1.767-.616 1.474-1.258 6.678-5.973 8.638-7.764m0 6.418v2.73c0 .301-.115.698-.319.885-1.332 1.222-6.47 5.926-8.319 7.502-.405.346-1.085.607-1.767.616h-.072c-.683-.009-1.362-.271-1.767-.616-1.849-1.576-6.987-6.28-8.32-7.502-.204-.187-.318-.585-.318-.885v-2.73c1.96 1.788 7.163 6.505 8.638 7.764.404.346 1.084.606 1.767.615h.072c.682-.009 1.362-.27 1.767-.615 1.474-1.258 6.678-5.976 8.638-7.764"/></svg>������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/victronenergy.svg����������������������������0000664�0000000�0000000�00000004606�14753064456�0026527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.183 4.65c-.522.001-1.295.137-2.1.751 0 0-1.7 1.039-2.096 5.166 0 0-.144 1.019-.066 1.535 0 0 .066.603.687.657 0 0 .749.058.797-.644.047-.702.063-.987.063-.987S4.586 8.384 5.7 6.993l.269.202s.38-1.441 1.874-2.465c0 0-.254-.081-.66-.08m2.729.023c-.635.001-1.632.167-2.437 1.042 0 0-1.279 1.14-1.656 3.973 0 0-.158 1.522-.185 2.262 0 0-.013.718.678.809 0 0 .71.044.757-.711 0 0 .046-3.468 1.329-5.055l.319.198s.555-1.603 1.826-2.461c0 0-.25-.058-.631-.057m2.854.016q-.086-.002-.175.003s-1.792-.073-2.844 1.733c0 0-1.216 1.771-1.211 5.397 0 0-.074.86.601.938 0 0 .798.05.798-.862 0 0 .036-3.578 1.401-5.025 0 0 1.209 1.452 1.308 4.866 0 0 .042 2.34.479 3.63 0 0 .395-1.448.475-3.452 0 0-.034-.366.284-.624 0 0 .209-.102.168-.468 0 0-.292-2.978-1.284-4.666 0 0 2.103-.136 2.52 4.071 0 0 .004.615.345.999 0 0 .25.177.275.609 0 0 .061.595-.118 2.521 0 0-.042.422.144 1.021 0 0 .52-1.438.382-2.848 0 0-.068-1.144.501-1.53 0 0-.048-3.193-1.318-4.941 0 0-.944-1.359-2.731-1.372m-8.559.019c-.563.005-1.316.162-2.073.771 0 0-1.8 1.208-2.13 6.299 0 0-.1.847.648.972 0 0 .753.145.853-.489.099-.636.08-3.847 1.503-5.495 0 0 .138-.208.516-.371.317-.194.567-.55.753-.832 0 0 .277-.369.867-.714 0 0-.374-.146-.937-.141M8.068 8.62s-.519 1.438-.383 2.847c0 0 .069 1.145-.5 1.531 0 0 .048 3.194 1.319 4.941 0 0 1.004 1.448 2.905 1.369 0 0 1.792.073 2.845-1.734 0 0 1.214-1.77 1.21-5.397 0 0 .074-.859-.601-.938 0 0-.799-.05-.799.863 0 0-.035 3.578-1.401 5.024 0 0-1.209-1.451-1.308-4.864 0 0-.041-2.34-.477-3.63 0 0-.396 1.446-.475 3.451 0 0 .033.366-.285.624 0 0-.209.102-.169.468 0 0 .293 2.979 1.286 4.666 0 0-2.104.136-2.521-4.071 0 0-.004-.615-.345-.999 0 0-.25-.177-.275-.608 0 0-.061-.596.117-2.522 0 0 .042-.422-.143-1.021m15.161 2.617c-.217-.011-.66.026-.734.503-.099.634-.08 3.845-1.503 5.494 0 0-.138.208-.517.37-.315.195-.565.551-.752.833 0 0-.278.369-.867.713 0 0 1.495.588 3.01-.63 0 0 1.8-1.207 2.129-6.299 0 0 .101-.847-.647-.971 0 0-.047-.01-.119-.013m-5.571.004c-.137.002-.687.051-.726.711 0 0-.048 3.468-1.331 5.056l-.318-.198s-.555 1.603-1.825 2.46c0 0 1.779.415 3.068-.984 0 0 1.278-1.141 1.655-3.973 0 0 .158-1.522.185-2.263 0 0 .014-.718-.677-.808zm2.701.001c-.144-.002-.723.03-.763.643l-.065.987s-.118 2.744-1.231 4.136l-.269-.202s-.38 1.44-1.874 2.464c0 0 1.329.422 2.76-.671 0 0 1.699-1.038 2.096-5.166 0 0 .145-1.019.065-1.535 0 0-.064-.603-.687-.656z"/></svg>��������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vim.svg��������������������������������������0000664�0000000�0000000�00000002772�14753064456�0024426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 11.986h-.027l-4.318-4.318 4.303-4.414V1.461l-.649-.648h-8.198l-.66.605v1.045L12.015.027V0L12 .014 11.986 0v.027l-1.29 1.291-.538-.539H2.035l-.638.692v1.885l.616.616h.72v5.31L.027 11.987H0L.014 12 0 12.014h.027l2.706 2.706v6.467l.907.523h2.322l1.857-1.904 4.166 4.166V24l.015-.014.014.014v-.028l2.51-2.509h.485c.111 0 .211-.07.25-.179l.146-.426a.26.26 0 0 0-.037-.239l1.462-1.462-.612 1.962a.265.265 0 0 0 .255.344h1.824a.27.27 0 0 0 .243-.163l.165-.394a.27.27 0 0 0-.247-.365h-.075l.84-2.644h1.232l-1.016 3.221a.266.266 0 0 0 .255.344h2.002c.11 0 .207-.066.248-.17l.164-.428a.266.266 0 0 0-.249-.358h-.145l1.131-3.673a.26.26 0 0 0-.039-.24l-.375-.504-.003-.005a.27.27 0 0 0-.209-.102h-1.436a.27.27 0 0 0-.19.081l-.4.439h-.624l-.042-.046 4.445-4.445H24L23.986 12zM9.838 21.139l1.579-4.509h-.501l.297-.304h1.659l-1.563 4.555h.623l-.079.258zm3.695-7.516.15.151-.269.922-.225.226h-.969l-.181-.181.311-.871.288-.247zM5.59 20.829H3.877l-.262-.15V3.091H2.379l-.1-.1V1.815l.143-.154h7.371l.213.214v1.108l-.142.173H8.785v8.688l8.807-8.688h-2.086l-.175-.188V1.805l.121-.111h7.49l.132.133v1.07L12.979 13.25h-.373q-.022-.001-.042.001l-.02.003a.26.26 0 0 0-.119.06l-.343.295-.004.003a.3.3 0 0 0-.073.111l-.296.83zm14.768-3.952.474-.519h1.334l.309.415-1.265 4.107h.493l-.08.209H19.84l1.124-3.564h-2.015l-1.077 3.391h.424l-.073.174h-1.605l1.107-3.548h-2.096l-1.062 3.339h.436l-.072.209H13.27l1.514-4.46h-.586l.091-.271h1.65l.519.537h.906l.491-.554h1.061l.489.535z"/></svg>������mkdocs-material-9.6.4/material/templates/.icons/simple/vimeo.svg������������������������������������0000664�0000000�0000000�00000001037�14753064456�0024743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.977 6.417c-.105 2.338-1.74 5.543-4.894 9.609-3.268 4.247-6.026 6.37-8.29 6.37-1.41 0-2.578-1.294-3.553-3.881L5.322 11.4Q4.244 7.524 3.01 7.523q-.27 0-1.881 1.132l-1.13-1.457A315 315 0 0 0 3.502 4.07C5.08 2.702 6.266 1.985 7.055 1.91q2.8-.27 3.447 3.839.698 4.43.97 5.507.81 3.675 1.777 3.674.752 0 2.265-2.385 1.505-2.383 1.612-3.628c.144-1.371-.395-2.061-1.614-2.061-.574 0-1.167.12-1.777.39C14.92 3.38 17.169 1.49 20.497 1.61c2.473.06 3.628 1.664 3.493 4.797z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vimeolivestream.svg��������������������������0000664�0000000�0000000�00000010320�14753064456�0027032�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.672 10.63q-.165.001-.3.116t-.14.24q-.01.24.252.24a.4.4 0 0 0 .293-.125.35.35 0 0 0 .115-.23.23.23 0 0 0-.06-.16.2.2 0 0 0-.16-.08zm9.127.636v1.737c0 .327.22.365.344.365a1 1 0 0 0 .074-.006v-.181s-.023.003-.05.003c-.077 0-.166-.03-.166-.226v-1.692zm.63 0v.253h.21v-.253zm4.693.182v.431h-.199v.17h.196v.764c0 .5.347.555.519.555a1 1 0 0 0 .085-.006v-.181s-.026.006-.068.006c-.112 0-.335-.045-.335-.395v-.744h.374v-.17h-.373v-.43zM1.745 11.5q-.425-.015-.575.503a.4.4 0 0 1 .15-.035q.157 0 .138.184-.01.111-.137.324-.129.213-.193.213-.082 0-.151-.328a8 8 0 0 1-.083-.492q-.054-.367-.293-.343-.1.01-.303.193L0 12l.096.13a.6.6 0 0 1 .16-.101q.105 0 .197.346l.165.636q.123.346.302.346.288 0 .705-.569.292-.396.38-.67.115-.09.142-.09.082 0 .082.126 0 .024-.09.356-.088.333-.093.492a.37.37 0 0 0 .07.25.26.26 0 0 0 .218.096q.308 0 .615-.279l.053-.051a.4.4 0 0 0 .085.177q.132.15.447.14-.043-.106-.033-.376c.01-.2.06-.395.147-.574q.132-.274.248-.274.133 0 .124.178-.005.12-.045.275a1.4 1.4 0 0 0-.045.308q-.009.246.105.352.128.12.448.11a.75.75 0 0 1-.039-.317 1.4 1.4 0 0 1 .19-.608q.165-.298.285-.298.11 0 .105.183a2 2 0 0 1-.057.337 2 2 0 0 0-.057.37q-.01.348.289.347.308 0 .614-.279l.01-.01.022.038q.16.26.533.26.5 0 .986-.293l.104-.065a.7.7 0 0 0 .072.122q.188.246.55.246a.95.95 0 0 0 .73-.323q.294-.322.311-.765.014-.327-.142-.534-.165-.226-.486-.226-.5 0-.83.384-.308.348-.284.76 0 .03.004.06l-.034.016q-.39.177-.72.177-.165 0-.248-.12a1.37 1.37 0 0 0 .739-.361q.275-.26.257-.505-.029-.385-.477-.385-.487.001-.844.386-.326.352-.33.742a.7.7 0 0 0 .006.126q-.077.054-.117.054-.087 0-.11-.039-.022-.038-.018-.14 0-.038.057-.294a2.3 2.3 0 0 0 .062-.392q.01-.196-.073-.302-.096-.13-.317-.11a.66.66 0 0 0-.353.144q-.1.077-.206.207l-.069.063a.5.5 0 0 0-.073-.304q-.098-.13-.321-.11a.8.8 0 0 0-.473.216.9.9 0 0 0-.16.193.47.47 0 0 0-.064-.354q-.075-.113-.193-.103-.069.005-.262.192-.265.26-.289.28l.11.13q.129-.098.156-.098.051 0 .042.087-.004.125-.043.348a4 4 0 0 0-.033.24l-.005.003q-.165.143-.229.143-.147 0-.142-.207.07-.45.128-.744a.42.42 0 0 0-.052-.28q-.072-.109-.223-.095-.096.01-.293.193l-.137.13q-.014-.34-.297-.35m13.221.301c-.403 0-.735.294-.735.785 0 .461.335.782.78.782.334 0 .551-.208.551-.208l-.092-.155s-.18.182-.453.182c-.309 0-.57-.208-.578-.592h1.144s.006-.068.006-.104c0-.372-.21-.69-.623-.69m1.334 0c-.27 0-.51.146-.51.413 0 .488.804.408.804.735 0 .157-.14.238-.3.238a.64.64 0 0 1-.444-.182l-.11.146s.19.217.552.217c.299 0 .51-.175.51-.42 0-.493-.804-.403-.804-.734 0-.166.145-.232.297-.232.246 0 .373.137.373.137l.092-.154s-.146-.164-.46-.164m3.2 0c-.403 0-.735.294-.735.785 0 .461.335.782.78.782.334 0 .55-.208.55-.208l-.091-.155s-.181.182-.454.182c-.308 0-.569-.208-.578-.592h1.144s.006-.068.006-.104c0-.372-.21-.69-.622-.69m1.414 0c-.335 0-.53.17-.53.17l.094.154s.175-.143.421-.143c.214 0 .37.099.37.387v.039h-.082c-.258 0-.913.012-.913.517 0 .297.258.443.507.443.373 0 .498-.324.498-.324h.006s-.006.05-.006.125v.164h.192v-.958c0-.375-.198-.574-.557-.574m1.575.023a.61.61 0 0 0-.54.378h-.006s.006-.053.006-.119v-.223h-.199v1.495h.202v-.707q0-.1.02-.2c.063-.228.247-.44.49-.44.281 0 .314.22.314.447v.9h.201v-.707c0-.08.006-.152.027-.217.057-.22.243-.422.471-.422.273 0 .323.202.323.446v.9H24v-.95c0-.37-.133-.58-.495-.58a.61.61 0 0 0-.548.374h-.006c-.045-.247-.187-.375-.462-.375m-3.876.021c-.234 0-.4.172-.471.398h-.006s.006-.053.006-.118v-.265h-.199v1.495h.202v-.63a1 1 0 0 1 .041-.291c.066-.22.223-.387.433-.387.039 0 .074.006.074.006v-.199s-.038-.009-.08-.009m-6.179.015v1.495h.202V11.86zm.371 0 .572 1.495h.22l.569-1.495h-.211l-.412 1.097c-.03.077-.053.179-.053.179h-.006s-.024-.104-.05-.179l-.416-1.097zm-4.338.052q.072 0 .112.108a.6.6 0 0 1 .034.24.95.95 0 0 1-.133.444q-.146.256-.353.256-.092 0-.142-.106a.43.43 0 0 1-.041-.213.97.97 0 0 1 .137-.464q.152-.265.386-.265m-1.722.056q.105 0 .1.13-.005.096-.137.249-.163.177-.39.264a.7.7 0 0 1 .146-.444q.144-.2.28-.199zm8.215.003c.223 0 .412.145.424.457h-.936c.047-.3.263-.457.512-.457m4.534 0c.222 0 .412.145.424.457h-.937c.048-.3.264-.457.513-.457m-9.031.26c-.149 0-.223.111-.223.223 0 .111.074.222.223.222.148 0 .222-.111.222-.222 0-.112-.074-.223-.222-.223m10.72.343h.087v.066c0 .258-.172.555-.457.555-.222 0-.332-.142-.332-.282 0-.33.469-.339.703-.339z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/virgin.svg�����������������������������������0000664�0000000�0000000�00000041217�14753064456�0025126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.951 9.821.008-.004c.044-.06.105-.114.13-.18.04-.11.066-.228-.005-.34-.016-.026-.024-.056-.036-.084-.035-.09-.08-.118-.204-.116a.56.56 0 0 0-.281.086 3 3 0 0 0-.298.211c-.05.04-.09.092-.135.137-.06.06-.074.14-.11.21a.46.46 0 0 0-.053.222c.002.094.041.18.113.23.08.054.184.092.29.042a2 2 0 0 0 .216-.116c.133-.086.282-.156.365-.298M24 9.423c-.008-.01-.02-.02-.023-.033a.64.64 0 0 0-.173-.28.3.3 0 0 0-.123-.06c-.039-.01-.082.002-.122-.007a1 1 0 0 0-.688.098c-.217.113-.43.233-.65.341a6 6 0 0 1-.448.192c-.106.042-.167.02-.234-.06-.009-.012-.02-.025-.032-.028-.05-.012-.05-.055-.063-.09-.005-.015-.01-.04-.017-.042-.068-.011-.046-.038-.016-.07.01-.01.015-.023.025-.038-.034-.032-.09-.05-.064-.11.002-.004-.008-.016-.015-.019-.044-.019-.024-.052-.021-.082.005-.057.006-.064.032-.088l-.052-.05.053-.094c-.046-.01-.063-.038-.036-.066.032-.031.027-.06.022-.096-.002-.016-.005-.037.003-.05.02-.03.016-.058.006-.09-.006-.02.006-.044.01-.07q-.07-.029-.042-.104c.005-.012.009-.03.004-.04-.025-.047.002-.081.019-.1-.013-.05-.03-.084-.03-.119a10 10 0 0 1 .002-.412c0-.022.02-.043.031-.066-.03-.053-.03-.053.014-.096-.014-.03-.032-.057-.037-.085-.008-.053.051-.034.07-.054-.008-.05-.02-.095-.022-.14 0-.041-.007-.082.01-.125.014-.038.002-.085.002-.131l-.046.004-.007-.149c-.002-.054.008-.1.066-.102v-.127c-.021-.032-.045-.061-.062-.094-.022-.043.013-.073.041-.107-.057-.027-.067-.073-.08-.123-.016-.063-.03-.142-.075-.18-.042-.036-.077-.085-.131-.109l-.033-.013c-.22-.099-.437-.061-.647.024-.114.046-.218.117-.326.178a.3.3 0 0 0-.07.052q-.117.113-.23.228a1 1 0 0 0-.08.095.75.75 0 0 1-.338.244.36.36 0 0 1-.275-.01c-.066-.029-.117-.039-.179 0a.17.17 0 0 1-.093.018c-.273-.036-.497.075-.682.252a.93.93 0 0 0-.263.547c-.015.107-.015.217-.02.325q-.014.268-.026.536l-.036.682c-.007.138-.009.276-.016.413q-.026.48-.05.961a1 1 0 0 0 .007.182c.023.16.08.25.22.279a.52.52 0 0 0 .331-.028c.088-.041.18-.077.26-.13.099-.066.219-.12.235-.26q.001-.004.004-.008.061-.104.115-.213a.12.12 0 0 0 .013-.072c-.007-.032-.048-.055-.007-.099.019-.02 0-.07.007-.106.007-.039.022-.076.034-.118l-.061-.049.032-.03c-.068-.063-.013-.116.022-.17-.019-.021-.062-.004-.057-.05.012-.12-.027-.244.034-.36.002-.004.005-.013.003-.015-.047-.054-.004-.1.008-.153.03.038.048.006.067-.002l-.011-.068c-.01-.052.002-.11-.054-.148-.013-.008-.016-.051-.006-.07a.4.4 0 0 1 .074-.096c.03-.029.035-.057.02-.094a1 1 0 0 1-.036-.106c-.005-.024-.011-.057 0-.075.012-.018.044-.022.066-.032v-.115l-.04-.026.026-.057c.055.009.055.009.044-.042-.001-.008-.004-.02 0-.024.045-.053.025-.117.033-.176.002-.017 0-.038.01-.049.049-.058.05-.128.056-.188.038-.034.09-.058.1-.093.022-.077.078-.12.134-.164a.2.2 0 0 0 .066-.078.4.4 0 0 1 .102-.137c.068-.054.148-.093.22-.143.11-.076.227-.039.342-.026.023.003.047.025.064.045.066.075.106.164.03.304a.36.36 0 0 0-.01.344c.102.188.009.359.026.538-.04.054-.02.109-.002.164a.07.07 0 0 1 0 .041.5.5 0 0 0-.015.327c.006.018.002.04 0 .061-.01.156-.039.31-.035.467.002.13 0 .258.005.387a.45.45 0 0 0 .118.286c.04.045.095.077.145.111.044.03.049.047.01.08a.4.4 0 0 1-.051.035q-.099.06-.199.116l-.696.39-.996.558q-.294.164-.586.33c-.224.13-.446.264-.671.393-.031.018-.071.022-.106.034-.016.005-.034.01-.046.021a.8.8 0 0 1-.221.14c-.07.033-.14.064-.206.103-.12.073-.238.152-.357.227l-.557.343q-.355.216-.709.435c-.13.081-.255.169-.384.253-.023.015-.05.024-.082.04-.005-.033-.011-.053-.011-.072a6 6 0 0 1 0-.227 3 3 0 0 1 .01-.19c.007-.078.028-.152.013-.233-.013-.07.006-.144.01-.216.005-.051.024-.107.01-.154a.5.5 0 0 1-.013-.208 4 4 0 0 0 .024-.39c0-.046.014-.091.018-.137q.01-.132.02-.263c.02-.201.042-.402.057-.603.016-.201.023-.403.037-.604.008-.115 0-.239.041-.342.044-.11-.008-.218.033-.32-.049-.108.04-.214.004-.321-.002-.005.013-.013.014-.02a.1.1 0 0 0 0-.045c-.003-.02-.014-.039-.014-.058 0-.059-.002-.119.005-.177a.35.35 0 0 0-.09-.284.36.36 0 0 0-.232-.114.7.7 0 0 0-.39.052c-.174.08-.304.197-.34.387a4 4 0 0 0-.05.427c-.017.22-.027.439-.042.658q-.017.214-.038.429c-.007.08.005.163-.047.234a.03.03 0 0 0-.003.022c.034.078.01.158.005.235-.007.152-.036.303-.049.454-.022.254-.062.505-.103.756-.028.176-.08.34-.213.474a.79.79 0 0 1-.503.25.24.24 0 0 1-.252-.131.7.7 0 0 1-.082-.239c-.015-.156-.04-.314.003-.471.005-.02 0-.04 0-.061.002-.047.001-.094.005-.14a4 4 0 0 1 .026-.21c.005-.033.008-.07.024-.1.028-.056.024-.104-.002-.16a.2.2 0 0 1-.019-.126c.014-.085.019-.171.051-.254.032-.084.046-.175.072-.262a.25.25 0 0 1 .048-.103c.04-.042.047-.092.061-.142a.5.5 0 0 1 .044-.113c.03-.051.063-.104.086-.155.024-.052.04-.1.089-.134a.12.12 0 0 0 .036-.058.27.27 0 0 1 .102-.13c.029-.02.067-.038.081-.066.05-.095.123-.177.146-.286.012-.054.01-.111.027-.16a.25.25 0 0 0-.009-.182.2.2 0 0 0-.084-.086.34.34 0 0 0-.237-.023c-.164.047-.337.073-.468.198-.014.013-.037.018-.053.03-.104.083-.216.157-.308.25-.086.088-.15.195-.224.294q-.248.337-.376.733c-.095.288-.133.587-.175.884-.026.188.001.382-.061.566-.01.027-.006.058-.004.088.006.063.018.126.02.19.003.114 0 .228-.001.343-.001.24-.018.48.036.718.026.115.056.23.13.323a.8.8 0 0 0 .602.307c.146.009.29-.011.431-.044.05-.011.099-.036.154-.013.012.005.033-.005.049-.012q.03-.016.06-.031c.076-.031.149-.07.232-.077a.1.1 0 0 0 .039-.014q.163-.109.326-.219c.02-.013.05-.03.068-.024.016.006.028.04.03.064.003.06-.005.122.002.182a1.7 1.7 0 0 1-.003.344.1.1 0 0 1-.044.071q-.225.148-.443.307-.324.242-.644.485a24 24 0 0 1-.384.281q-.202.142-.404.285c-.15.11-.297.224-.448.332-.193.14-.39.274-.584.413-.047.035-.086.08-.131.118q-.087.068-.175.135l-.255.203-.353.282q-.213.172-.426.343c-.076.06-.155.116-.229.178-.114.098-.221.202-.336.298-.142.12-.29.232-.433.35a45 45 0 0 0-.515.432q-.226.191-.447.388-.205.188-.407.38-.247.227-.494.455c-.229.217-.467.425-.661.675l-.214.28a.33.33 0 0 0-.057.217.8.8 0 0 0 .079.322.5.5 0 0 0 .188.202c.154.093.32.111.495.105a.38.38 0 0 0 .257-.113q.116-.108.23-.216.118-.113.234-.228.03-.027.058-.055l.123-.124.073-.077.204-.228c.025-.029.047-.06.074-.086l.596-.589q.068-.068.133-.139l.087-.097c.028-.034.05-.072.08-.103.056-.056.116-.107.172-.163.096-.094.188-.193.288-.284.092-.085.194-.16.288-.243.042-.037.074-.083.112-.123l.246-.252q.01-.008.021-.016.226-.179.447-.36c.21-.171.417-.346.627-.517.14-.114.285-.221.424-.335.203-.166.401-.337.605-.502.116-.095.24-.182.358-.274q.173-.137.347-.274l.489-.377q.234-.181.473-.355c.085-.06.176-.116.28-.155.004.027.01.047.009.066-.003.07-.01.139-.011.208q-.003.312-.002.625l-.001.79q0 .474-.002.948c0 .056.022.117-.027.167-.007.007.002.027.003.041.003.037.009.075.008.112-.004.093-.014.186-.015.279 0 .082.012.163.014.245a7 7 0 0 1-.004.314l-.014.358c-.003.137-.003.275-.009.412-.006.152-.018.304-.023.456-.007.202-.004.404-.016.605-.016.277-.007.55.083.816.031.09.055.184.126.259a.7.7 0 0 0 .34.195q.034.01.066.023c.07.021.132.02.203.015a.4.4 0 0 0 .16-.05q.117-.062.226-.134a.5.5 0 0 0 .118-.13c.022-.03.025-.073.047-.103.023-.031.057-.054.087-.08l-.078-.045q.017-.038.034-.07c.006-.012.024-.023.022-.032-.01-.053.024-.085.06-.121-.03-.017-.074-.028-.077-.046-.01-.053-.051-.082-.077-.12l.042-.075-.05-.018c.094-.003.05-.098.1-.124-.02-.027-.06-.031-.036-.081.014-.03-.033-.06-.076-.06q-.071.002-.073-.067l-.008-.129.058-.026-.002-.014-.065-.01c.077-.022.1-.084.127-.146a.4.4 0 0 1-.077-.256c.002-.026-.003-.06-.054-.053-.043.005-.079-.056-.064-.1.015-.043.031-.082-.01-.124l.057-.025c.025-.063-.03-.12-.011-.18-.044-.029-.047-.067-.02-.11l-.056-.006.048-.124-.1-.105c.03-.066.03-.066.006-.166l.051-.029c-.024-.026-.022-.073-.071-.07-.006 0-.014-.012-.017-.02-.026-.06-.001-.111.064-.135l-.023-.036c-.043-.069-.064-.136.015-.198.01-.008.012-.038.006-.054-.02-.064-.045-.127-.064-.18.02-.054.035-.102.056-.147.018-.04.028-.074-.003-.113-.007-.01.003-.032.005-.053l-.056-.074.08-.02c-.002-.014 0-.03-.007-.035q-.034-.025-.069-.046c0-.037-.007-.076.003-.11.01-.032.037-.059.058-.09-.005-.054-.016-.116-.014-.178.001-.067.015-.133.022-.2q.001-.015-.005-.025c-.025-.024-.023-.048-.017-.08.01-.044.008-.09.01-.136l.016-.473a.4.4 0 0 0-.016-.108c-.013-.039-.02-.075.023-.109.008-.006.009-.032.003-.042-.029-.043-.02-.093-.02-.138a3 3 0 0 1 .004-.356c.005-.052.03-.1-.005-.15-.006-.008-.003-.03.003-.04.029-.05.024-.094-.006-.14-.01-.016-.01-.039-.01-.041.021-.028.049-.058.046-.06-.06-.068-.013-.136.003-.199.015-.059.018-.108-.028-.148.007-.061.058-.117.004-.176-.005-.006.007-.033.017-.046.022-.029.045-.055.014-.092-.006-.007-.002-.023-.001-.034.006-.097.022-.194.016-.29-.005-.086.04-.123.103-.161.053-.033.119-.054.139-.125.002-.009.016-.016.026-.023q.136-.098.274-.191c.202-.136.4-.276.618-.388.088-.045.162-.114.245-.168.19-.123.38-.248.575-.366.219-.133.442-.26.664-.39.26-.152.517-.307.78-.455a94 94 0 0 1 1.162-.639q.39-.209.783-.414.312-.165.627-.329c.178-.092.355-.188.538-.27.27-.12.54-.237.817-.341.262-.1.53-.184.798-.27.226-.073.455-.134.66-.257.215-.128.399-.285.498-.522a.7.7 0 0 1 .073-.124c.005-.008.026-.006.039-.009v-.035c-.04-.05-.04-.05 0-.106zm-7.653-2.757a.4.4 0 0 0 .122.071c.098.039.208.054.3.013.154-.068.3-.16.39-.32a.4.4 0 0 1 .043-.06c.086-.1.17-.199.202-.34a.5.5 0 0 0 .014-.157c-.007-.091-.063-.15-.1-.218-.035-.005-.07-.003-.098-.014a.47.47 0 0 0-.297-.008.9.9 0 0 0-.464.294c-.158.18-.254.387-.17.64a.24.24 0 0 0 .058.1m-.54 5.139a.6.6 0 0 0 .281-.06 9 9 0 0 0 .335-.164.7.7 0 0 0 .255-.219c.05-.07.123-.136.12-.231-.002-.033.014-.067.017-.1.002-.025-.004-.05-.008-.076-.006-.033-.022-.067-.02-.1a18 18 0 0 1 .024-.497c.003-.054.015-.108.023-.161l.074.004c-.017-.023-.031-.038-.041-.054l-.031-.065.105.018c-.021-.03-.027-.054-.043-.061-.054-.023-.055-.064-.054-.105.002-.042-.009-.097.017-.123.064-.063.068-.128.056-.203a1 1 0 0 1-.01-.143q.006-.147.014-.293c0-.005-.007-.01-.008-.016-.002-.028-.012-.058-.003-.083a.17.17 0 0 0 .003-.11.54.54 0 0 1-.005-.278c.014-.056.031-.112.043-.17.002-.008-.018-.02-.029-.033.053-.074.058-.151.064-.227.003-.04-.019-.078.011-.122a.24.24 0 0 0 .033-.13c0-.053.013-.106-.021-.161-.026-.041-.061-.084-.06-.14.003-.091-.051-.144-.156-.15-.139-.01-.278-.007-.403.058a.98.98 0 0 0-.552.773q-.009.09-.022.181c-.04.284-.082.567-.117.85-.039.319-.07.638-.107.957-.026.231-.055.463-.079.695-.015.148-.033.297-.028.444.005.179.108.284.322.295m-10.31 1.223a.33.33 0 0 1 .073-.282c.018-.02.034-.062.024-.08-.024-.04.014-.058.018-.087.006-.03-.028-.06 0-.093.01-.012.01-.033.012-.05.003-.038 0-.077.007-.113l.122-.521c.052-.223.098-.447.156-.669.047-.183.08-.372.166-.544.019-.037.025-.08.046-.116.032-.056.023-.13.081-.173q.012-.012.016-.032l.054-.206c.016-.061.028-.124.098-.152.012-.005.022-.02.027-.034.034-.076.07-.151.07-.237 0-.032-.007-.064-.002-.095.02-.126.051-.25.06-.377a.4.4 0 0 1 .06-.19c.066-.111.089-.235.114-.355.02-.094.068-.168.113-.247.018-.032.03-.054.009-.088a.09.09 0 0 1-.003-.093c.065-.126.095-.262.125-.399a3 3 0 0 1 .06-.23c.027-.088.062-.173.091-.26.03-.086.054-.173.083-.26.02-.062.037-.128.071-.183a.6.6 0 0 0 .08-.203 1 1 0 0 1 .064-.194c.055-.124.116-.247.175-.37.02-.04.045-.077.062-.117a.2.2 0 0 0 .022-.094.35.35 0 0 1 .034-.164c.084-.188.161-.379.249-.565.15-.32.256-.662.468-.953.049-.066.077-.146.12-.216a4.3 4.3 0 0 1 .439-.566c.053-.06.116-.113.176-.17.027.015.047.012.05-.015.01-.072.063-.094.121-.115.013-.005.03-.012.035-.023.019-.046.063-.082.053-.139-.002-.013.005-.03.013-.04.044-.064.092-.124.135-.188a.74.74 0 0 0 .133-.393 1.1 1.1 0 0 0-.043-.352.79.79 0 0 0-.568-.571 1.3 1.3 0 0 0-.246-.056 1 1 0 0 0-.19 0 .95.95 0 0 0-.492.27c-.13.123-.244.258-.335.416a4 4 0 0 0-.248.526l-.146.375c-.037.094-.08.186-.116.281q-.148.39-.293.78c-.093.248-.19.496-.281.745-.06.16-.112.322-.17.482L6.175 6.26c-.02.053-.033.111-.064.157-.048.073-.064.153-.085.234-.026.1-.052.203-.098.296-.077.157-.123.322-.172.488-.033.113-.037.237-.107.34-.011.015-.012.04-.012.06-.002.073.008.149-.049.21q-.004.008-.004.017l-.076.294-.132.465q-.062.22-.119.44c-.018.072-.021.147-.04.219-.027.094-.067.185-.092.28q-.133.5-.262 1.003-.02.067-.037.137l-.106.434q-.023.096-.044.192c-.06.298-.112.597-.177.894-.055.25-.107.501-.143.755-.035.236-.084.47-.126.705q-.024.128-.042.255l-.054.354c-.043.277-.089.553-.13.83-.026.171-.044.343-.07.513-.007.051-.03.1-.048.152-.032-.026-.058-.04-.074-.061a.14.14 0 0 1-.025-.07c-.003-.062 0-.124-.003-.185 0-.013-.01-.03-.021-.035-.038-.016-.033-.046-.034-.076-.003-.106 0-.213-.036-.318-.01-.031 0-.07.003-.106.003-.058.011-.117.01-.176 0-.028-.006-.066-.025-.082-.071-.06-.074-.15-.092-.226a.44.44 0 0 1 .028-.241c.027-.07.034-.129 0-.194l-.02-.049c-.032-.093-.077-.183-.072-.284a.6.6 0 0 0-.04-.217c-.027-.077-.063-.16-.008-.237-.02-.043-.06-.085-.054-.122.017-.137-.057-.246-.1-.364-.016-.044-.032-.081-.016-.112-.02-.039-.045-.067-.051-.097-.015-.08-.014-.16-.034-.24-.03-.116-.034-.238-.055-.357-.022-.125-.075-.246-.038-.377a.04.04 0 0 0-.003-.027c-.025-.049.016-.12-.053-.157-.006-.002.001-.027 0-.04 0-.023.004-.047-.005-.066-.036-.085-.022-.182-.066-.265-.006-.012 0-.03 0-.044q0-.027-.004-.052c-.01-.04-.024-.08-.03-.12-.023-.14-.04-.283-.064-.424a104 104 0 0 0-.16-.923.85.85 0 0 0-.144-.345c-.17-.24-.53-.289-.772-.142a.66.66 0 0 0-.279.342c-.036.095-.06.194-.099.288-.117.287-.174.595-.31.876-.008.109-.057.205-.092.306-.029.081-.041.167-.067.25-.027.088-.063.173-.09.262-.039.13-.096.254-.127.389a.7.7 0 0 1-.116.288c-.025.033-.026.084-.037.126-.015.058-.014.128-.049.17-.053.063-.065.137-.089.208-.012.037-.01.077-.023.113-.058.168-.14.326-.187.5-.054.204-.138.4-.208.6a1 1 0 0 0-.047.163.43.43 0 0 0 .287.49c.182.063.35.022.507-.076.052-.032.093-.081.14-.122-.018-.066.042-.106.058-.163.02-.073.059-.14.084-.213.03-.083.092-.15.104-.242.005-.04.042-.075.065-.113-.022-.016-.006-.036.004-.058.03-.067.068-.133.087-.203.015-.055.02-.11.044-.166.038-.085.035-.187.088-.27-.013-.084.048-.145.08-.21a.33.33 0 0 0 .037-.201c.032-.016.077-.023.066-.077 0-.004.018-.012.025-.02.02-.02.044-.038.055-.063.024-.05.04-.105.062-.156.007-.017.033-.04.042-.037a.4.4 0 0 1 .11.053c.034.024.047.058.027.101-.005.01.001.026.003.045.031-.008.054-.049.083-.012q-.01.041-.017.083a1 1 0 0 0-.004.127c.002.037.016.073.014.109a.12.12 0 0 0 .034.096.24.24 0 0 1 .057.098c.018.078.026.158.039.237l.11.706q.011.075.014.15c.002.091-.018.185.046.267.01.012.006.034.009.052q.04.28.081.557.042.265.082.53.055.361.108.722.038.27.08.538l.12.748c.017.108.052.214.016.324-.007.022-.008.046-.012.065.096.077.102.107.041.21.048 0 .063.03.07.069.025.154.041.31.08.463.005.02.008.045 0 .062a.07.07 0 0 0 .01.082.1.1 0 0 1 .02.05q.046.249.087.498c.03.182.054.366.09.546.044.213.103.423.144.636.036.19.25.391.486.36.2-.025.428-.14.491-.384a6 6 0 0 0 .104-.47c.037-.204.065-.411.094-.617q.06-.406.113-.814c.036-.277.066-.556.101-.833l.098-.754c.013-.097.02-.197.049-.29.026-.085.07-.163.057-.253q.147-.055.064-.131c-.04-.037-.045-.073-.04-.118l.01-.088c.014-.103.034-.206.037-.31.002-.067.019-.134.061-.172.078-.07.07-.165.1-.248.023-.065.01-.144.014-.22-.049-.014-.084-.034-.077-.086.009-.065.012-.131.025-.195.028-.139.062-.276.092-.414a.2.2 0 0 0 0-.079c-.013-.044.003-.073.032-.103a.1.1 0 0 0 .03-.06 3 3 0 0 0 .008-.245c0-.043.011-.079.025-.119.027-.082.074-.161.048-.257-.008-.027.012-.07.033-.096.081-.098.083-.207.056-.32m2.18-.666c-.015-.065-.001-.08.065-.115-.021-.038-.06-.075-.053-.102.017-.067-.016-.12-.034-.176a.23.23 0 0 0-.2-.16.5.5 0 0 0-.195.014 1.2 1.2 0 0 0-.333.157c-.172.11-.3.248-.386.425a1.8 1.8 0 0 0-.16.569c-.019.152-.03.306-.043.459q-.001.021-.001.044-.005.163-.013.327l-.028.504c-.002.039.011.081-.03.113-.008.006-.004.027-.003.041 0 .072.015.146 0 .214-.035.149-.03.299-.037.448-.008.171-.021.342-.026.513-.004.183-.01.366 0 .548.008.162.114.249.288.263a.46.46 0 0 0 .241-.05 2.2 2.2 0 0 0 .391-.253c.031-.024.045-.075.104-.054.006.002.027-.012.028-.02.005-.06.06-.032.097-.044l.02-.083-.084-.005q.008-.049.019-.093c.007-.03.021-.06.026-.09.015-.086.014-.176.044-.256.046-.118.012-.235.021-.352.006-.083-.004-.166.005-.249.014-.138.036-.275.056-.413.01-.068.026-.136.037-.204a2 2 0 0 0 .024-.18c.004-.054 0-.106.025-.16a.5.5 0 0 0 .04-.184c.008-.127.005-.254.007-.381 0-.015-.002-.032.005-.043.055-.088.055-.188.07-.283a.8.8 0 0 0 .019-.18.25.25 0 0 1 .03-.143c.015-.025.031-.06.022-.08a.13.13 0 0 1 .008-.12c-.025-.063-.052-.113-.065-.166m1.132-.94a1.3 1.3 0 0 0-.12.473c-.01.155-.014.31-.021.465q-.011.224-.025.447-.012.14-.026.278c-.004.048.005.1-.012.142a.6.6 0 0 0-.04.268l-.002.008c.004.071-.021.141-.006.214.006.03.001.065-.002.097-.007.064-.037.134-.02.19.032.11.006.217.007.325 0 .094-.035.184-.024.282.012.1.004.203.005.304 0 .082.027.156.066.225.06.107.166.164.269.145.193-.036.402-.137.57-.304a.7.7 0 0 0 .206-.398 4 4 0 0 0 .042-.492q.01-.36.028-.719c.003-.06.026-.124.016-.183-.018-.102.009-.201.008-.302 0-.049.01-.106.053-.134.003-.055-.006-.102.01-.136.028-.06.027-.123.044-.184.009-.033.034-.064.034-.097a.24.24 0 0 1 .046-.133c.103-.16.21-.318.366-.433a7 7 0 0 0 .29-.228c.136-.112.273-.226.26-.431 0-.014.009-.028.008-.042-.003-.036-.001-.075-.014-.107-.028-.067-.064-.13-.097-.195-.048-.095-.13-.124-.229-.124-.096 0-.18.041-.265.081q-.082.042-.168.082c-.054.024-.112.039-.163.068a.8.8 0 0 1-.3.096 1.3 1.3 0 0 0-.455.125.74.74 0 0 0-.34.327"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/virginatlantic.svg���������������������������0000664�0000000�0000000�00000005347�14753064456�0026652�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 3.559c-3.102 0-3.836.489-5.06 1.877L0 15.232c7.143-.326 9.348 6.858 16.572 4.858L24 3.559zm-2.477 1.586a.6.6 0 0 1 .395.128c.204.164.164.409.164.409-.04.367-.408.611-.408.611-.327.286-.776 1.102-.776 1.102-.49.775-1.06 2.286-1.55 3.796-.653 2.286-1.063 4.408-1.104 4.612-.04.204-.122.449-.326.449-.286 0-.326-.367-.326-.408s-.367-4.49-.367-4.49-.042-.204-.082-.204c0 0-.08-.04-.163.164l-.408.897c-.163.408-.449.246-.449.246-.245-.122-.082-.408-.082-.408l.898-2.246c.205-.49.53-.45.53-.45.285.041.287.327.287.45.04.122.326 3.43.326 3.43.04.367.082.244.082.244C8.858 9.517 10.94 5.6 10.94 5.6c.197-.34.408-.445.584-.455zm4.793 2.793c.126-.01.174.07.174.07.123.204-.164.449-.164.449-.245.286-.449.082-.449.082-.204-.163.123-.45.123-.45.138-.106.241-.146.316-.152zm2.178.394.037.002c.368 0 .326.49.326.49l-.123 1.346c-.081.571.368.37.368.37 0-.042.122-.084.49-.247.326-.122.49-.04.572.082s.04.245-.041.367c-.082.163-.449.286-.734.367-.204.041-.37.123-.37.123-.49.123-1.06.368-1.06.368a29 29 0 0 0-3.55 1.795c-.042.163-.042.285-.042.367 0 0-.162 2.204-.203 2.531 0 0-.002.41.04.654.04.245.205.775-.122.979a.394.394 0 0 1-.572-.082c0-.041-.123-.163-.041-.776 0 0 .164-1.592.205-2.082l.082-1.142c-2.694 1.673-4.164 3.183-4.164 3.183-.163.164-.53.45-.776.123-.244-.326.409-.816.409-.816 1.428-1.225 3.102-2.285 4.572-3.143l.039-.367s.042-.122-.08-.04c0 0-.49.286-.858.122 0 0-.287-.123-.287-.572 0 0 .001-1.388.573-1.959 0 0 .325-.326.652-.326.204 0 .165.286-.08.49-.245.245-.286.529-.367.856 0 0-.206.939.12.898 0 0 .328.001.45-.57 0 0 .203-1.308.244-1.471 0-.163.043-.53.37-.53 0 0 .325 0 .284.245 0 0-.244 1.591-.367 2.734a34 34 0 0 1 3.592-1.795c.082-.04.041-.04.041-.04-.245-.082-.123-.614-.123-.614l.123-1.102c0-.285-.326-.123-.326-.123-.245.164-.408.45-.408.45-.123.204-.205 1.142-.205 1.142-.041.49-.327.572-.327.572-.326.123-.367-.082-.367-.082-.04-.122.041-.57.041-.57l.162-1.185c.041-.531.409-.612.409-.612a.45.45 0 0 1 .326 0c.122.041.205 0 .287 0 .122 0 .285-.164.285-.164.245-.214.421-.244.494-.246m-2.486.897c.222.01.115.373.115.412-.04.04-.246 1.591-.246 1.591-.04.409-.408.49-.408.49-.327.082-.244-.245-.244-.245l.04-.327.286-1.51c.04-.326.408-.408.408-.408a.3.3 0 0 1 .049-.003m-5.237.53a.19.19 0 0 1 .21.126s.08.163-.206.408c0 0-.327.327-.49.041 0 0-.121-.204.205-.45 0 0 .144-.11.281-.124zm1.57.829c.144.017.19.154.19.154.123.286-.328.49-.328.49-.408.245-.447.776-.447.776l-.082.734c-.041.53-.408.612-.408.612-.49.163-.286-.694-.286-.694.041-.204.163-1.224.163-1.224.04-.613.408-.612.367-.653.04 0 .326-.04.326-.04s.124-.042.328-.124a.34.34 0 0 1 .178-.031zm-2 .68c.1.001.292.057.231.455l-.246 1.345-.082.49s-.04.245-.244.368c0 0-.49.244-.45-.123l.247-1.96s.08-.488.488-.57c0 0 .024-.006.057-.005z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/virginmedia.svg������������������������������0000664�0000000�0000000�00000002073�14753064456�0026123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.225 5.021c-1.098 0-2.067.346-2.883 1.024C1.416 6.813 0 8.635 0 12s1.416 5.187 2.342 5.955c.816.678 1.785 1.024 2.883 1.024 1.629 0 3.229-.75 4.271-1.401 2.828-1.769 5.082-5.143 5.082-5.143 1.093 1.502 2.081 2.494 3.199 3.21.687.419 1.723.914 2.787.914.725 0 1.371-.22 1.904-.677C23.487 15.008 24 13.658 24 12s-.513-3.008-1.532-3.882c-.532-.457-1.18-.677-1.904-.677-1.064 0-2.1.495-2.787.914-1.118.716-2.106 1.708-3.2 3.21 0 0-2.253-3.374-5.08-5.143-1.043-.651-2.643-1.401-4.272-1.401m0 .513c1.51 0 3.011.722 4 1.324 1.69 1.084 3.25 2.647 5.036 5.142-1.785 2.494-3.346 4.057-5.037 5.142-.988.602-2.49 1.323-3.999 1.323-.974 0-1.833-.305-2.554-.904C1.085 16.243.514 13.916.514 12s.571-4.243 2.157-5.561c.721-.6 1.58-.905 2.554-.905m15.34 2.42c.6 0 1.13.188 1.575.558.993.828 1.347 2.273 1.347 3.488s-.354 2.66-1.347 3.488c-.444.37-.974.557-1.576.557-.945 0-1.889-.454-2.515-.835-1.067-.685-2.01-1.63-3.154-3.21 1.144-1.581 2.087-2.526 3.154-3.21.626-.381 1.57-.836 2.515-.836zm-17.6 3.505-.01.013.01-.01z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/virtualbox.svg�������������������������������0000664�0000000�0000000�00000001014�14753064456�0026016�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 1.758 5.182 20c.129.455.25.691.421.945q.094.137.202.264.26.305.59.525c.243.163.49.286.763.371.324.1.61.137.99.137h4.327l1.918-6.615h6.798v3.699a.11.11 0 0 1-.109.11h-4.88l-.813 2.806h5.654a2.92 2.92 0 0 0 1.95-.725A2.9 2.9 0 0 0 24 19.285v-6.47H12.28l-1.919 6.614H7.937L3.715 4.564h2.922l1.546 5.444H11.1l-2.343-8.25zm15.496 0-2.4 8.25H24v-5.29a2.96 2.96 0 0 0-1.825-2.741 3 3 0 0 0-1.129-.22zm2.11 2.806h3.476a.11.11 0 0 1 .11.112V7.2h-4.354z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/virustotal.svg�������������������������������0000664�0000000�0000000�00000000226�14753064456�0026037�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.87 12 0 22.68h24V1.32H0zm10.73 8.52H5.28l8.637-8.448L5.28 3.48H21.6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/visa.svg�������������������������������������0000664�0000000�0000000�00000001372�14753064456�0024570�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.112 8.262 5.97 15.758H3.92L2.374 9.775c-.094-.368-.175-.503-.461-.658C1.447 8.864.677 8.627 0 8.479l.046-.217h3.3a.904.904 0 0 1 .894.764l.817 4.338 2.018-5.102zm8.033 5.049c.008-1.979-2.736-2.088-2.717-2.972.006-.269.262-.555.822-.628a3.66 3.66 0 0 1 1.913.336l.34-1.59a5.2 5.2 0 0 0-1.814-.333c-1.917 0-3.266 1.02-3.278 2.479-.012 1.079.963 1.68 1.698 2.04.756.367 1.01.603 1.006.931-.005.504-.602.725-1.16.734-.975.015-1.54-.263-1.992-.473l-.351 1.642c.453.208 1.289.39 2.156.398 2.037 0 3.37-1.006 3.377-2.564m5.061 2.447H24l-1.565-7.496h-1.656a.88.88 0 0 0-.826.55l-2.909 6.946h2.036l.405-1.12h2.488zm-2.163-2.656 1.02-2.815.588 2.815zm-8.16-4.84-1.603 7.496H8.34l1.605-7.496z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/visx.svg�������������������������������������0000664�0000000�0000000�00000000451�14753064456�0024614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.002 0 12 11.52 23.998 0h-5.871L12 6.09 5.873 0Zm23.996 0-11.52 11.998 11.52 11.998v-5.871l-6.09-6.127 6.09-6.127ZM.002.004v5.871l6.09 6.127-6.09 6.127V24l11.504-11.998ZM.002 24h5.871L12 17.91 18.127 24h5.871L12 12.47Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vite.svg�������������������������������������0000664�0000000�0000000�00000001534�14753064456�0024575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.286 10.578.512-8.657a.306.306 0 0 1 .247-.282L17.377.006a.306.306 0 0 1 .353.385l-1.558 5.403a.306.306 0 0 0 .352.385l2.388-.46a.306.306 0 0 1 .332.438l-6.79 13.55-.123.19a.3.3 0 0 1-.252.14c-.177 0-.35-.152-.305-.369l1.095-5.301a.306.306 0 0 0-.388-.355l-1.433.435a.306.306 0 0 1-.389-.354l.69-3.375a.306.306 0 0 0-.37-.36l-2.32.536a.306.306 0 0 1-.374-.316zm14.976-7.926L17.284 3.74l-.544 1.887 2.077-.4a.8.8 0 0 1 .84.369.8.8 0 0 1 .034.783L12.9 19.93l-.013.025-.015.023-.122.19a.8.8 0 0 1-.672.37.83.83 0 0 1-.634-.302.8.8 0 0 1-.16-.67l1.029-4.981-1.12.34a.81.81 0 0 1-.86-.262.8.8 0 0 1-.165-.67l.63-3.08-2.027.468a.81.81 0 0 1-.768-.233.8.8 0 0 1-.217-.6l.389-6.57-7.44-1.33a.612.612 0 0 0-.64.906L11.58 23.691a.612.612 0 0 0 1.066-.004l11.26-20.135a.612.612 0 0 0-.644-.9"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vitepress.svg��������������������������������0000664�0000000�0000000�00000002163�14753064456�0025651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.029.001a2 2 0 0 0-.187.018L4.085 1.833A1.86 1.86 0 0 0 2.518 3.94l2.56 18.457a1.846 1.846 0 0 0 2.08 1.586l12.757-1.816a1.86 1.86 0 0 0 1.567-2.106l-2.56-18.455A1.85 1.85 0 0 0 17.029 0m.127.932a.926.926 0 0 1 .853.8l2.56 18.458a.93.93 0 0 1-.782 1.053L7.03 23.058a.92.92 0 0 1-1.04-.793L3.43 3.81a.93.93 0 0 1 .783-1.053L16.97.941a1 1 0 0 1 .186-.008m-3.644 5.354L9.967 7.521a.136.136 0 0 0-.09.141l.318 3.87c.008.09.1.149.184.116l.982-.378a.136.136 0 0 1 .184.136l-.09 1.54c-.006.103.1.176.193.132l.6-.281c.093-.044.198.03.192.135l-.147 2.418c-.01.15.195.203.258.066l.04-.092L14.716 8.9c.035-.107-.066-.21-.172-.173l-1.018.351c-.095.033-.191-.049-.177-.15l.343-2.49a.137.137 0 0 0-.142-.157c-.016 0-.042.009-.037.006zm2.822.799a.3.3 0 0 0-.08.014L14 7.85l-.076.56.455-.156a.636.636 0 0 1 .81.803l-2.13 6.449-.053.117a.64.64 0 0 1-.738.352.64.64 0 0 1-.473-.657l.11-1.808a.638.638 0 0 1-.948-.594l.057-.976-.454.175a.64.64 0 0 1-.863-.543L9.453 8.6l-3.062-.123c-.23-.01-.364.255-.223.44l6.29 8.23a.27.27 0 0 0 .468-.069l3.668-9.619a.275.275 0 0 0-.26-.373z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vitess.svg�����������������������������������0000664�0000000�0000000�00000000215�14753064456�0025136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.206 1.045-7.217 13.186L4.817 1.045H0l11.904 21.91L24 1.045z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vitest.svg�����������������������������������0000664�0000000�0000000�00000001565�14753064456�0025150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.74 1.053a.5.5 0 0 0-.157.025.5.5 0 0 0-.25.188L7.595 9.562a.5.5 0 0 0-.084.223.5.5 0 0 0 .032.236.5.5 0 0 0 .14.193.5.5 0 0 0 .215.105l3.707.786-.23 4.58a.5.5 0 0 0 .085.3.5.5 0 0 0 .25.189.5.5 0 0 0 .313 0 .5.5 0 0 0 .25-.187l5.738-8.296a.5.5 0 0 0 .084-.223.5.5 0 0 0-.032-.236.5.5 0 0 0-.14-.194.5.5 0 0 0-.215-.104l-3.707-.787.23-4.58a.5.5 0 0 0-.085-.3.5.5 0 0 0-.25-.188.5.5 0 0 0-.156-.026M1.157 9.788c-.307.001-.6.124-.817.34a1.16 1.16 0 0 0-.34.817 1.16 1.16 0 0 0 .334.82l10.842 10.842a1.2 1.2 0 0 0 .377.252 1.2 1.2 0 0 0 .445.088h.004a1.2 1.2 0 0 0 .445-.088 1.2 1.2 0 0 0 .377-.252l10.842-10.843a1.16 1.16 0 0 0 .334-.82 1.16 1.16 0 0 0-.34-.816 1.16 1.16 0 0 0-.817-.34 1.16 1.16 0 0 0-.82.334l-5.4 5.4-.026.02L12 20.14l-4.598-4.597q-.011-.01-.024-.02l-5.401-5.401a1.16 1.16 0 0 0-.82-.334"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vivaldi.svg����������������������������������0000664�0000000�0000000�00000001312�14753064456�0025256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C6.75 0 3.817 0 1.912 1.904.007 3.81 0 6.75 0 12s0 8.175 1.912 10.08C3.825 23.985 6.75 24 12 24s8.183 0 10.088-1.904C23.993 20.19 24 17.25 24 12s0-8.175-1.912-10.08C20.175.015 17.25 0 12 0m-.168 3a9 9 0 0 1 6.49 2.648 9 9 0 0 1 0 12.704A9 9 0 1 1 11.832 3M7.568 7.496a1 1 0 0 0-.142.004A1.5 1.5 0 0 0 6.21 9.75l1.701 3c.93 1.582 1.839 3.202 2.791 4.822a1.42 1.42 0 0 0 1.41.75 1.5 1.5 0 0 0 1.223-.81l4.447-7.762A1.56 1.56 0 0 0 18 8.768a1.5 1.5 0 1 0-2.828.914 2.5 2.5 0 0 1 .256 1.119v.246a2.393 2.393 0 0 1-2.52 2.13 2.35 2.35 0 0 1-1.965-1.214c-.307-.51-.6-1.035-.9-1.553-.42-.72-.826-1.41-1.246-2.16a1.43 1.43 0 0 0-1.229-.754"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vivawallet.svg�������������������������������0000664�0000000�0000000�00000001036�14753064456�0026001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.275 17.428c.376.777.949 1.223 1.572 1.228h.01c.619 0 1.191-.435 1.575-1.194l.504-1.08-4.9-10.387-3.388 1.58zm6.367.033c.382.76.957 1.195 1.575 1.195h.006c.625-.004 1.2-.45 1.574-1.226l4.567-9.852-3.389-1.581-4.844 10.381zm-1.605 1.206c-.74 1.245-1.905 1.977-3.18 1.977h-.022c-1.391-.01-2.643-.89-3.353-2.355Q2.743 12.452 0 6.617l6.99-3.259 5.039 10.683 4.985-10.685L24 6.613 18.592 18.29c-.709 1.465-1.962 2.345-3.353 2.355h-.022c-1.275 0-2.442-.732-3.18-1.977Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vivino.svg�����������������������������������0000664�0000000�0000000�00000002302�14753064456�0025132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.476 18.034c0-1.087.889-1.989 1.988-1.989 1.1 0 1.989.902 1.989 1.989a1.988 1.988 0 1 1-3.977-.001M12.043 24c-1.1 0-1.988-.902-1.988-1.989 0-1.099.889-1.988 1.988-1.988 1.087 0 1.989.889 1.989 1.988A2.003 2.003 0 0 1 12.043 24M5.2 14.007c0-1.087.89-1.988 1.989-1.988 1.087 0 1.989.901 1.989 1.988a1.988 1.988 0 1 1-3.978 0m4.385-5.892c1.1 0 1.989.902 1.989 1.989 0 1.1-.89 1.976-1.989 1.976s-1.988-.877-1.988-1.976c0-1.087.889-1.989 1.988-1.989m2.384-4.187a1.988 1.988 0 1 1 0 3.977A2.003 2.003 0 0 1 9.98 5.917c0-1.1.902-1.99 1.99-1.99M14.401 0c1.1 0 1.99.89 1.99 1.989 0 1.087-.89 1.988-1.99 1.988a2.003 2.003 0 0 1-1.988-1.988c0-1.1.901-1.989 1.988-1.989M11.6 18.034c0 1.1-.89 1.989-1.99 1.989a1.995 1.995 0 0 1-1.988-1.99c0-1.086.902-1.988 1.989-1.988 1.1 0 1.989.902 1.989 1.989m-1.544-4.027c0-1.087.889-1.988 1.988-1.988 1.087 0 1.989.901 1.989 1.988 0 1.1-.902 1.989-1.989 1.989-1.1 0-1.988-.89-1.988-1.989m4.385-1.927c-1.1 0-1.99-.877-1.99-1.976 0-1.087.89-1.989 1.99-1.989 1.099 0 1.988.902 1.988 1.989 0 1.1-.89 1.976-1.988 1.976m4.36 1.927c0 1.1-.89 1.989-1.989 1.989a1.988 1.988 0 1 1 .001-3.977c1.098 0 1.988.901 1.988 1.988"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vivint.svg�����������������������������������0000664�0000000�0000000�00000000665�14753064456�0025151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.102 2.04a.8.8 0 0 0-.553.218L.514 9.756A1.62 1.62 0 0 0 0 10.939V21.15c0 .447.362.81.809.81h16.584a.81.81 0 0 0 .808-.81V10.94a1.62 1.62 0 0 0-.514-1.184l-8.035-7.5a.8.8 0 0 0-.55-.217zm0 4.964 5.252 4.904v6.203H3.848v-6.203zM21.648 17.35a2.305 2.305 0 0 0-2.26 2.304 2.305 2.305 0 0 0 2.307 2.307A2.305 2.305 0 0 0 24 19.654a2.305 2.305 0 0 0-2.305-2.304z"/></svg>���������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vivo.svg�������������������������������������0000664�0000000�0000000�00000002255�14753064456�0024612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.604 14.101c-1.159 0-1.262-.95-1.262-1.24s.103-1.242 1.262-1.242h2.062c1.16 0 1.263.951 1.263 1.242 0 .29-.104 1.24-1.263 1.24m-2.062-3.527c-2.142 0-2.333 1.752-2.333 2.287s.19 2.286 2.333 2.286h2.062c2.143 0 2.334-1.751 2.334-2.286s-.19-2.287-2.334-2.287m-5.477.107c-.286 0-.345.05-.456.213-.11.164-2.022 3.082-2.022 3.082-.06.09-.126.126-.206.126s-.145-.036-.206-.126c0 0-1.912-2.918-2.022-3.082s-.17-.213-.456-.213h-.668c-.154 0-.224.12-.127.267l2.283 3.467c.354.521.614.732 1.196.732s.842-.21 1.196-.732l2.284-3.467c.096-.146.026-.267-.128-.267m-8.876.284c0-.203.08-.284.283-.284h.505c.203 0 .283.08.283.283v3.9c0 .202-.08.283-.283.283h-.505c-.203 0-.283-.08-.283-.283zm-1.769-.285c-.287 0-.346.05-.456.213-.11.164-2.022 3.082-2.022 3.082-.061.09-.126.126-.206.126s-.145-.036-.206-.126c0 0-1.912-2.918-2.023-3.082-.11-.164-.169-.213-.455-.213H.175c-.171 0-.224.12-.127.267l2.283 3.467c.355.521.615.732 1.197.732s.842-.21 1.196-.732l2.283-3.467c.097-.146.044-.267-.127-.267m1.055-.893c-.165-.164-.165-.295 0-.46l.351-.351c.165-.165.296-.165.46 0l.352.351c.165.165.165.296 0 .46l-.352.352c-.164.165-.295.165-.46 0z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vk.svg���������������������������������������0000664�0000000�0000000�00000002300�14753064456�0024236�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.489.004.729-.003h3.564l.73.003.914.01.433.007.418.011.403.014.388.016.374.021.36.025.345.03.333.033c1.74.196 2.933.616 3.833 1.516s1.32 2.092 1.516 3.833l.034.333.029.346.025.36.02.373.025.588.012.41.013.644.009.915.004.98-.001 3.313-.003.73-.01.914-.007.433-.011.418-.014.403-.016.388-.021.374-.025.36-.03.345-.033.333c-.196 1.74-.616 2.933-1.516 3.833s-2.092 1.32-3.833 1.516l-.333.034-.346.029-.36.025-.373.02-.588.025-.41.012-.644.013-.915.009-.98.004-3.313-.001-.73-.003-.914-.01-.433-.007-.418-.011-.403-.014-.388-.016-.374-.021-.36-.025-.345-.03-.333-.033c-1.74-.196-2.933-.616-3.833-1.516S.367 20.221.171 18.48l-.034-.333-.029-.346-.025-.36-.02-.373-.025-.588-.012-.41-.013-.644-.009-.915-.004-.98.001-3.313.003-.73.01-.914.007-.433.011-.418.014-.403.016-.388.021-.374.025-.36.03-.345.033-.333c.196-1.74.616-2.933 1.516-3.833S3.779.367 5.52.171l.333-.034.346-.029.36-.025.373-.02.588-.025.41-.012.644-.013zM6.79 7.3H4.05c.13 6.24 3.25 9.99 8.72 9.99h.31v-3.57c2.01.2 3.53 1.67 4.14 3.57h2.84c-.78-2.84-2.83-4.41-4.11-5.01 1.28-.74 3.08-2.54 3.51-4.98h-2.58c-.56 1.98-2.22 3.78-3.8 3.95V7.3H10.5v6.92c-1.6-.4-3.62-2.34-3.71-6.92"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vlcmediaplayer.svg���������������������������0000664�0000000�0000000�00000001351�14753064456�0026624�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.032 0c-.882 0-1.055.136-1.055.136-.173.056-.355.255-.41.43l-.884 2.815c.473.173 1.322.426 2.234.426 1.098 0 2.017-.349 2.376-.507L13.435.566a.78.78 0 0 0-.407-.437S12.914 0 12.032 0m3.564 7.455c-.36.34-1.327.937-3.68.937-2.292 0-3.188-.567-3.52-.911l-1.39 4.423c.228.361 1.255 1.56 4.885 1.56 3.757 0 4.854-1.348 5.065-1.675zm-8.59 4.449-1.002 3.192H4.343a.65.65 0 0 0-.583.431L1.426 23.16a.4.4 0 0 0-.017.154l-.002.016c0 .084.024.226.024.226a.53.53 0 0 0 .51.445H22.06c.248 0 .476-.2.51-.445 0 0 .023-.142.023-.226l-.003-.01.003-.032a.4.4 0 0 0-.02-.128l-2.333-7.632a.65.65 0 0 0-.583-.431h-1.663l.2.64c-.24.484-1.488 2.38-6.303 2.38-4.6 0-5.828-1.73-6.11-2.308z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vmware.svg�����������������������������������0000664�0000000�0000000�00000004101�14753064456�0025120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.5 10.1a.5.5 0 0 0-.197.048.497.497 0 0 0-.25.68l1.138 2.475c.179.38.38.592.721.592.342 0 .542-.22.72-.592l1.003-2.186a.144.144 0 0 1 .144-.092.16.16 0 0 1 .157.16v2.118a.535.535 0 1 0 1.066 0v-1.73a.53.53 0 0 1 .566-.552.52.52 0 0 1 .541.551v1.73a.53.53 0 0 0 .53.593.54.54 0 0 0 .535-.592v-1.73a.53.53 0 0 1 .564-.552.52.52 0 0 1 .543.551v1.73a.53.53 0 0 0 .528.593.535.535 0 0 0 .535-.592v-1.969a1.234 1.234 0 0 0-1.283-1.23 1.65 1.65 0 0 0-1.14.486 1.26 1.26 0 0 0-1.095-.483 1.8 1.8 0 0 0-1.074.483 1.29 1.29 0 0 0-.961-.483 1.18 1.18 0 0 0-1.158.786l-.729 1.716-.933-2.203.011-.004A.505.505 0 0 0 .5 10.1m18.43.06a.27.27 0 0 0-.266.274h.002v3.142a.27.27 0 1 0 .535 0v-1.222c0-1.037.571-1.56 1.27-1.643a.266.266 0 0 0 .238-.274.26.26 0 0 0-.266-.269 1.47 1.47 0 0 0-1.242.88v-.614a.266.266 0 0 0-.271-.274m-6.735.008a.27.27 0 0 0-.25.217l-.912 2.627-.902-2.62a.28.28 0 0 0-.274-.22.266.266 0 0 0-.27.258.5.5 0 0 0 .034.144l1.09 3.037.02-.007a.32.32 0 0 0 .298.242.3.3 0 0 0 .293-.242l.903-2.583.896 2.583a.3.3 0 0 0 .293.242h.018a.32.32 0 0 0 .293-.242l1.097-3.038a.5.5 0 0 0 .033-.144.26.26 0 0 0-.265-.25.26.26 0 0 0-.258.209l-.918 2.63-.904-2.626a.285.285 0 0 0-.278-.217h-.037m10.168.008a1.75 1.75 0 0 0-1.691 1.851 1.765 1.765 0 0 0 1.76 1.858l-.008.013a1.78 1.78 0 0 0 1.33-.539.23.23 0 0 0 .082-.17.228.228 0 0 0-.379-.168 1.44 1.44 0 0 1-1.018.415 1.237 1.237 0 0 1-1.24-1.207h2.555a.247.247 0 0 0 .246-.247c0-.945-.593-1.806-1.637-1.806m-5.744.002a2 2 0 0 0-.158.006 2.4 2.4 0 0 0-1.078.205.22.22 0 0 0-.143.222.24.24 0 0 0 .235.229.3.3 0 0 0 .095-.024 1.8 1.8 0 0 1 .834-.162c.691 0 1.07.334 1.07.979v.125a3.8 3.8 0 0 0-1.103-.15c-.892 0-1.52.4-1.52 1.16l-.003-.004c0 .736.671 1.117 1.34 1.117a1.58 1.58 0 0 0 1.298-.62v.343a.247.247 0 0 0 .254.25.254.254 0 0 0 .258-.262v-1.983a1.42 1.42 0 0 0-.379-1.046 1.57 1.57 0 0 0-1-.385m5.719.43c.714 0 1.085.565 1.139 1.214h-2.278a1.22 1.22 0 0 1 1.139-1.215zm-5.885 1.382a3.8 3.8 0 0 1 1.057.153v.347c0 .57-.539.973-1.2.973-.485 0-.904-.261-.904-.713 0-.467.375-.76 1.047-.76"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vodafone.svg���������������������������������0000664�0000000�0000000�00000000552�14753064456�0025426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m4.25 1.12c.32 0 .65.03.86.1-2.17.45-3.9 2.47-3.89 4.78 0 .05 0 .11.01.17 3.64.89 5.27 3.08 5.27 6.11.04 3.03-2.36 6.36-6.41 6.37-3.27.01-6.68-2.79-6.7-7.28C5.38 8.4 7 5.54 9.04 3.85c2-1.66 4.73-2.72 7.21-2.73"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/voidlinux.svg��������������������������������0000664�0000000�0000000�00000001020�14753064456�0025635�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.818 12a3.82 3.82 0 0 1-3.82 3.82A3.82 3.82 0 0 1 8.178 12a3.82 3.82 0 0 1 3.82-3.82 3.82 3.82 0 0 1 3.82 3.82m3.179 9.73-2.726-2.725A8.2 8.2 0 0 1 12 20.212 8.21 8.21 0 0 1 3.788 12a8.2 8.2 0 0 1 1.209-4.269l-2.73-2.73A12 12 0 0 0 0 12c0 6.627 5.373 12 12 12a12 12 0 0 0 6.997-2.27M12 0a12 12 0 0 0-6.997 2.27L7.73 4.994A8.2 8.2 0 0 1 12 3.788 8.21 8.21 0 0 1 20.212 12a8.2 8.2 0 0 1-1.209 4.269l2.73 2.73A12 12 0 0 0 24 12c0-6.627-5.373-12-12-12"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/voipdotms.svg��������������������������������0000664�0000000�0000000�00000000552�14753064456�0025651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.51 2.372c-.946 0-1.877.24-2.71.696a5.7 5.7 0 0 0-2.055 1.92l-5.177 8.047c-.928 1.446-3.076 1.656-3.92.943l4.051 6.343c.258.402.611.731 1.027.96a2.81 2.81 0 0 0 2.706 0 2.85 2.85 0 0 0 1.025-.96L24 2.371ZM0 8.309l2.228 3.521s.89 1.302 2.402 1.302 2.378-1.302 2.378-1.302l2.23-3.52Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/volkswagen.svg�������������������������������0000664�0000000�0000000�00000001441�14753064456�0026003�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.36 0 0 5.36 0 12s5.36 12 12 12 12-5.36 12-12S18.64 0 12 0m0 1.41c1.2 0 2.36.22 3.43.59l-3.3 7.13c-.04.04-.04.13-.13.13s-.09-.09-.13-.13L8.57 2c1.07-.37 2.23-.58 3.43-.58M6.9 2.74l3.82 8.23c.08.17.17.22.28.22h2c.12 0 .2-.05.29-.22l3.77-8.23c1.58.9 2.94 2.19 3.9 3.73L15.6 16.84c-.04.09-.1.13-.13.13-.08 0-.08-.08-.13-.13l-2.05-4.54c-.09-.17-.17-.21-.29-.21h-2c-.11 0-.2.04-.29.21l-2.05 4.54c-.05.05-.04.13-.13.13s-.09-.08-.13-.13L3 6.47c.94-1.54 2.32-2.83 3.9-3.73M2.06 8.53l6.17 12c.08.17.17.3.39.3.21 0 .29-.13.38-.3l2.87-6.39c.04-.08.09-.14.13-.14.09 0 .09.1.13.14l2.91 6.39c.09.17.17.3.39.3.21 0 .3-.13.38-.3l6.19-12c.37 1.07.59 2.23.59 3.47-.05 5.79-4.8 10.59-10.59 10.59S1.46 17.79 1.46 12c0-1.2.21-2.35.6-3.47"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/volvo.svg������������������������������������0000664�0000000�0000000�00000002405�14753064456�0024771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.873 12.584h.49l-.001-1.452h-.489v-.322h1.94v.322h-.483v1.451h.449c.415 0 .687-.274.687-.646h.32v.972h-2.913zm4.313.327h1.134l.962-1.779h.482v-.322h-1.45v.322h.419l-.701 1.295-.71-1.295h.51l-.002-.322h-2.104v.322h.482zM5.073 10.81H2.968v.322h.481l.98 1.779h1.133l.962-1.779h.482v-.322h-1.45v.322h.418l-.7 1.295-.71-1.295h.509zm3.707-.044c.975 0 1.498.486 1.498 1.096 0 .618-.494 1.111-1.493 1.111s-1.497-.493-1.497-1.111c0-.61.517-1.096 1.492-1.096m.017.33c-.333-.005-.527.348-.534.753-.006.39.15.784.506.79.366.007.524-.39.53-.772.008-.405-.168-.764-.502-.77zm10.738-.33c.974 0 1.497.486 1.497 1.096 0 .618-.493 1.111-1.492 1.111-1 0-1.498-.493-1.498-1.111 0-.61.518-1.096 1.493-1.096m-.517 1.083c-.007.39.15.784.506.79.366.007.524-.39.53-.772.008-.405-.168-.764-.502-.77s-.527.347-.534.752m2.857-6.667L20.656 6.4a10.26 10.26 0 0 1 1.652 5.6c0 5.693-4.615 10.308-10.308 10.308S1.692 17.693 1.692 12 6.307 1.692 12 1.692c2.07 0 3.996.61 5.611 1.66l1.219-1.219A11.94 11.94 0 0 0 12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12c0-2.533-.785-4.882-2.125-6.818M18.036.472v.337c.728.394 1.413.859 2.047 1.382l-1.71 1.71a10.3 10.3 0 0 1 1.735 1.732l1.708-1.708c.524.636.989 1.322 1.384 2.038h.328V.473z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vonage.svg�����������������������������������0000664�0000000�0000000�00000000461�14753064456�0025103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.279 11.617-4.54-10.07H0l6.797 15.296a.084.084 0 0 0 .153 0zm9.898-10.07s-6.148 13.868-6.917 15.565c-1.838 4.056-3.2 5.07-4.588 5.289a.026.026 0 0 0 .004.052h4.34c1.911 0 3.219-1.285 5.06-5.341C17.72 15.694 24 1.547 24 1.547z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vorondesign.svg������������������������������0000664�0000000�0000000�00000000273�14753064456�0026162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0 1.608 6v12L12 24l10.392-6V6zM8.324 5.377h3L7.5 12h-3zm6 0h3L9.676 18.624h-3zM16.5 12h3l-3.824 6.624h-3z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vowpalwabbit.svg�����������������������������0000664�0000000�0000000�00000002311�14753064456�0026321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.872 21.356c.077.195.682 1.646 1.685 2.156 1.075.547 1.613.406 1.613.406s-.914-3.384-.108-6.076c.807-2.691 1.479-2.933 1.479-2.933s1.478.591 2.446 0 1.264-1.747 1.264-1.747-.672-2.474-1.264-3.442c-.591-.967-1.227-1.48-2.016-1.828a235 235 0 0 0-1.508-.655 11.3 11.3 0 0 0-1.003-3.198C16.237 1.531 14.678 0 14.678 0s-.815.7-1.025 2.032c.56.497 1.462 1.45 2.258 2.42.4.485.906 1.227 1.31 1.846a26 26 0 0 0-2.6-2.626c-1.828-1.586-3.63-2.823-3.63-2.823s-1.29 2.016.243 4.785c1.048 1.778 3.704 3.31 3.704 3.31s-2.736.134-3.704.346c-.968.213-2.043.592-3.253 1.398-1.21.807-2.01 1.647-3.011 3.011-1 1.365-1.962 3.71-1.962 3.71s-.135-.188-1.049-.188-1.21.188-1.21.188.027 2.312.592 3.441c.564 1.13 1.37 1.562 2.392 1.562.27-.002.834 0 .834 0s.699 1.1 1.129 1.369 1.183.215 1.183.215h8.253s-.048-.619-.51-1.103c-.448-.466-.983-.608-1.117-.666a3.8 3.8 0 0 0-1.008-.167h-2.123s2.689-.095 4.274-1.936c.833-.967.914-2.15.833-2.742-.04-.292-.295-1.29-.752-1.882a6 6 0 0 0-1.183-1.129c-.516-.36-1.17-.642-1.909-.94 1.075.268 1.586.376 2.635 1.129 1.048.752 1.505 1.908 1.586 2.177.08.269.269.672.215 1.828-.108.968-.218 1.208-.484 1.72a4.2 4.2 0 0 1-.717 1.07Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vox.svg��������������������������������������0000664�0000000�0000000�00000000727�14753064456�0024445�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m0 8.198 4.182 7.604h2.442L8.15 13.07a4.276 4.276 0 0 1 2.054-4.872H7.112l-1.677 3.216-1.706-3.216zm14.342 0a4.24 4.24 0 0 1 1.923 2.206c.784 2.081-.098 4.415-2.145 5.398h2.767l1.564-1.754 1.42 1.754H24l-3.505-4.032 3.088-3.572H19.41l-.952 1.249-.931-1.249zm-2.09 1.596c-.949 0-1.913.69-2.074 1.775a2.132 2.132 0 0 0 2.064 2.483c1.268.01 2.192-1.126 2.156-2.18-.013-1.015-.877-2.08-2.146-2.078"/></svg>�����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vrchat.svg�����������������������������������0000664�0000000�0000000�00000004147�14753064456�0025120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.732 6.767H1.268A1.27 1.27 0 0 0 0 8.035v5.296c0 .7.57 1.268 1.268 1.268h18.594l1.725 2.22q.324.414.68.415c.153 0 .296-.06.403-.167q.193-.194.193-.536l-.002-1.939A1.27 1.27 0 0 0 24 13.331V8.035c0-.7-.569-1.269-1.268-1.269Zm.8 6.564a.8.8 0 0 1-.8.801h-.34v.031l.004 2.371c0 .155-.05.233-.129.233s-.19-.079-.31-.235l-1.866-2.4H1.268a.8.8 0 0 1-.8-.8V8.064a.8.8 0 0 1 .8-.8h21.464a.8.8 0 0 1 .8.8zM4.444 8.573c-.127 0-.225.041-.254.15l-.877 3.129-.883-3.128c-.03-.11-.127-.15-.254-.15-.202 0-.473.126-.473.311 0 .012.005.035.011.058l1.114 3.63c.058.173.265.254.485.254s.433-.08.484-.254l1.109-3.63q.01-.033.011-.058c0-.179-.27-.312-.473-.312m2.925 2.36c.433-.132.757-.49.757-1.153 0-.918-.612-1.207-1.368-1.207H5.614a.234.234 0 0 0-.242.231v3.752c0 .156.184.237.374.237s.376-.081.376-.237V11.05h.484l.82 1.593c.058.115.156.179.26.179.219 0 .467-.203.467-.393a.16.16 0 0 0-.028-.092zm-.61-.473h-.636V9.231h.635c.375 0 .618.162.618.618s-.242.612-.618.612Zm10.056.826h1.004l-.502-1.772zm4.684-3.095H9.366a.8.8 0 0 0-.8.8v3.383a.8.8 0 0 0 .8.8h12.132a.8.8 0 0 0 .8-.8V8.992a.8.8 0 0 0-.8-.801Zm-10.946 3.977c.525 0 .571-.374.589-.617.011-.179.173-.236.369-.236.26 0 .38.075.38.369 0 .698-.57 1.142-1.379 1.142-.727 0-1.327-.357-1.327-1.322v-1.61c0-.963.606-1.322 1.333-1.322.802 0 1.374.427 1.374 1.097 0 .3-.121.37-.375.37-.214 0-.37-.064-.375-.238-.012-.178-.052-.57-.6-.57-.387 0-.606.213-.606.663v1.61c0 .45.219.664.617.664m4.703.388c0 .156-.19.237-.375.237s-.375-.081-.375-.237V10.9h-1.299v1.656c0 .156-.19.237-.375.237s-.375-.081-.375-.237V8.804c0-.161.185-.23.375-.23s.375.069.375.23v1.507h1.299V8.804c0-.161.185-.23.375-.23s.375.069.375.23zm3.198.236c-.127 0-.225-.04-.254-.15l-.22-.768h-1.322l-.219.768c-.029.11-.127.15-.254.15-.202 0-.473-.127-.473-.311 0-.012.006-.035.012-.058l1.114-3.63c.051-.173.265-.254.478-.254s.433.08.485.254l1.114 3.63q.01.033.012.058c0 .179-.272.311-.473.311m2.989-3.543H20.6v3.306c0 .156-.19.237-.375.237s-.375-.081-.375-.237V9.25h-.848c-.15 0-.237-.157-.237-.34 0-.162.075-.336.237-.336h2.44c.162 0 .238.173.238.335 0 .18-.087.34-.237.34"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vsco.svg�������������������������������������0000664�0000000�0000000�00000006760�14753064456�0024606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.376 0 0 5.376 0 12s5.376 12 12 12 12-5.376 12-12S18.624 0 12 0m11.52 12c0 .408-.023.792-.072 1.176l-2.04-.24c.024-.312.05-.624.05-.936 0-.288-.025-.6-.05-.888l2.04-.24c.072.384.072.744.072 1.128M.479 12c0-.384.024-.769.049-1.152l2.04.24c-.024.312-.047.6-.047.912s.023.6.047.912l-2.04.24C.479 12.769.479 12.384.479 12m20.472-3.096 1.921-.72a11.6 11.6 0 0 1 .552 2.232l-2.04.24c-.097-.6-.24-1.2-.433-1.752M21 12c0 .6-.072 1.176-.167 1.752l-2.017-.455c.071-.409.119-.841.119-1.297s-.048-.912-.119-1.344l2.017-.457c.118.577.167 1.177.167 1.801m-9 6.456A6.46 6.46 0 0 1 5.544 12 6.46 6.46 0 0 1 12 5.544 6.46 6.46 0 0 1 18.456 12a6.44 6.44 0 0 1-6.429 6.456zM12.216 21v-2.064a7 7 0 0 0 2.568-.575l.888 1.872a9 9 0 0 1-3.456.767m-3.936-.791.912-1.873a6.6 6.6 0 0 0 2.568.6V21a8.8 8.8 0 0 1-3.48-.791M3 12c0-.624.072-1.224.192-1.824l2.016.456q-.147.676-.144 1.368c0 .432.048.864.12 1.272l-2.016.455A8 8 0 0 1 3 12m8.76-9v2.064a6.9 6.9 0 0 0-2.544.576l-.888-1.871A9.1 9.1 0 0 1 11.76 3m3.935.792-.911 1.872a6.6 6.6 0 0 0-2.568-.576V3.024c1.248 0 2.424.288 3.479.768m5.088 4.656a10 10 0 0 0-.84-1.608l1.681-1.152a12.7 12.7 0 0 1 1.056 2.04zm-.07 1.296-2.018.456a6.9 6.9 0 0 0-1.151-2.352l1.632-1.295c.72.959 1.248 2.015 1.537 3.191m-3.457-2.256a7 7 0 0 0-2.04-1.633l.912-1.871a9.1 9.1 0 0 1 2.76 2.208zm-.6-3.744.96-1.824a13 13 0 0 1 1.896 1.32L18.145 4.8a9.2 9.2 0 0 0-1.489-1.056m-.408-.216a10 10 0 0 0-1.68-.648l.504-1.992a12 12 0 0 1 2.159.84zm-2.16-.768c-.6-.144-1.2-.216-1.824-.239V.479c.793.024 1.584.12 2.328.289zm-2.28-.239a11 11 0 0 0-1.8.216L9.528.744c.72-.168 1.487-.265 2.28-.265zm-2.28.334q-.88.251-1.704.649l-.96-1.824a11.7 11.7 0 0 1 2.16-.816zm-2.112.865a9 9 0 0 0-1.488 1.032L4.56 3.216c.6-.504 1.224-.936 1.896-1.319zm.48.264.888 1.871a7 7 0 0 0-2.04 1.608L5.136 6.168a9.4 9.4 0 0 1 2.76-2.184M4.848 6.552l1.608 1.295A7 7 0 0 0 5.304 10.2l-2.016-.456c.312-1.2.84-2.28 1.56-3.192M3.24 8.4l-1.92-.72c.287-.72.648-1.416 1.08-2.04l1.68 1.176A7.7 7.7 0 0 0 3.24 8.4m-.168.455c-.192.577-.36 1.152-.432 1.776L.6 10.393c.12-.769.288-1.537.553-2.257zm-.456 4.513c.096.6.239 1.2.432 1.776l-1.92.72a10 10 0 0 1-.552-2.257zm.624 2.208c.239.576.528 1.104.84 1.607L2.4 18.336a10.2 10.2 0 0 1-1.08-2.016zm.024-1.392 2.017-.456a7 7 0 0 0 1.128 2.376L4.8 17.4a8.9 8.9 0 0 1-1.536-3.216m3.432 2.28A6.9 6.9 0 0 0 8.76 18.12l-.912 1.872a9.3 9.3 0 0 1-2.784-2.232zm.72 3.815-.96 1.825a11.6 11.6 0 0 1-1.896-1.321l1.368-1.535c.456.407.936.744 1.488 1.031m.408.217c.528.264 1.104.48 1.705.647l-.504 1.992a11 11 0 0 1-2.16-.815zm2.16.768q.864.18 1.8.217v2.039a14.4 14.4 0 0 1-2.305-.264zm2.28.216a10.7 10.7 0 0 0 1.801-.217l.479 1.992c-.749.168-1.513.264-2.28.287zm2.257-.336a10.4 10.4 0 0 0 1.703-.647l.96 1.824c-.688.35-1.412.623-2.159.815zm2.086-.865a9 9 0 0 0 1.488-1.031l1.369 1.535a11.7 11.7 0 0 1-1.896 1.321zm-.479-.263-.888-1.871a6.9 6.9 0 0 0 2.064-1.656l1.606 1.296a9.6 9.6 0 0 1-2.782 2.231m3.071-2.592-1.607-1.296a6.6 6.6 0 0 0 1.128-2.376l2.017.456a9.7 9.7 0 0 1-1.538 3.216M20.76 15.6l1.92.721a11 11 0 0 1-1.079 2.04l-1.682-1.177a8.4 8.4 0 0 0 .841-1.584m.168-.455c.192-.553.336-1.152.433-1.752l2.039.239c-.11.761-.294 1.508-.551 2.232zm.456-9.841-1.681 1.152q-.539-.736-1.199-1.368l1.368-1.536a15 15 0 0 1 1.512 1.752M4.2 3.528l1.368 1.536c-.456.408-.84.864-1.2 1.368l-1.68-1.176A9.4 9.4 0 0 1 4.2 3.528M2.664 18.744l1.68-1.152c.36.48.769.937 1.2 1.369l-1.368 1.535a15 15 0 0 1-1.512-1.752m17.16 1.729-1.368-1.537c.432-.407.841-.863 1.199-1.344l1.682 1.176a15 15 0 0 1-1.513 1.705"/></svg>����������������mkdocs-material-9.6.4/material/templates/.icons/simple/vscodium.svg���������������������������������0000664�0000000�0000000�00000002363�14753064456�0025460�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.583.54a1.467 1.467 0 0 0-.441 2.032c2.426 3.758 2.999 6.592 2.75 9.075-1.004 4.756-3.187 5.721-5.094 5.721-1.863 0-1.364-3.065.036-3.962.836-.522 1.906-.861 2.728-.861.814 0 1.474-.658 1.474-1.47s-.66-1.47-1.474-1.47c-.96 0-1.901.202-2.78.545.18-.847.246-1.762.014-2.735-.352-1.477-1.367-2.889-3.128-4.257a1.476 1.476 0 0 0-2.069.256c-.5.64-.384 1.564.259 2.063 1.435 1.114 1.908 1.939 2.07 2.618s.032 1.407-.293 2.408c-.416 1.349-.9 2.553-1.11 3.708-.105.568-.114 1.187-.14 1.68-1.034-1.006-1.438-2.336-1.438-4.279 0-.811-.66-1.47-1.474-1.47A1.47 1.47 0 0 0 0 11.612c0 2.654.776 5.179 2.855 6.863 1.883 1.793 6.67 1.13 6.67 4.01 0 .812 1.19 1.208 2.004 1.208.834 0 1.885-.558 1.885-1.208 0-3.267 3.443-5.253 9.11-5.244A1.47 1.47 0 0 0 24 15.773a1.47 1.47 0 0 0-1.47-1.473q-.58.001-1.138.035c.634-1.49.915-3.13.857-4.903a1.473 1.473 0 0 0-1.522-1.42 1.47 1.47 0 0 0-1.425 1.517c.076 2.32-.01 4.393-1.74 5.485-.49.31-1.062.58-1.604.58.42-1.145.738-2.353.869-3.655.083-.83.091-1.818-.003-2.585-.148-1.188-.325-2.535.126-3.55.405-.874 1.313-1.24 2.645-1.24.814 0 1.473-.659 1.473-1.47s-.659-1.47-1.473-1.47c-1.98 0-3.481 1.042-4.332 2.3A25 25 0 0 0 13.621.981a1.474 1.474 0 0 0-2.037-.44z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vtex.svg�������������������������������������0000664�0000000�0000000�00000001147�14753064456�0024614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.203 1.793H4.28c-1.39 0-2.28 1.47-1.63 2.691l1.794 3.377h-3.25a1.2 1.2 0 0 0-.588.154 1.2 1.2 0 0 0-.435.421 1.19 1.19 0 0 0-.034 1.168l5.766 10.859c.101.19.253.35.44.462a1.2 1.2 0 0 0 1.232 0 1.2 1.2 0 0 0 .44-.463l1.566-2.933 1.965 3.701c.691 1.302 2.564 1.304 3.258.004l8.983-16.818c.635-1.19-.232-2.623-1.585-2.623m-8.05 7.185-3.874 7.253a.8.8 0 0 1-.293.308.8.8 0 0 1-.82 0 .8.8 0 0 1-.292-.308L5.038 9.01a.79.79 0 0 1 .02-.778.8.8 0 0 1 .29-.281.8.8 0 0 1 .39-.103h7.731a.8.8 0 0 1 .381.1.8.8 0 0 1 .282.273.77.77 0 0 1 .02.758z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vuedotjs.svg���������������������������������0000664�0000000�0000000�00000000252�14753064456�0025465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 1.61h-9.94L12 5.16 9.94 1.61H0l12 20.78ZM12 14.08 5.16 2.23h4.43L12 6.41l2.41-4.18h4.43Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vuetify.svg����������������������������������0000664�0000000�0000000�00000000326�14753064456�0025317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.312 12.564 12.636 1.2H0zM14.94 1.2 7.464 14.64 12 22.8 24 1.2zm4.98 2.4L12 17.856l-1.788-3.216L16.344 3.6zM6.312 7.62 4.08 3.6h4.476z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vulkan.svg�����������������������������������0000664�0000000�0000000�00000004665�14753064456�0025136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.411 15.12h-.875v-2.798c.28.156.649.442.875.719zm-7.383 0H4.936l-1.423-4.4h.992l.979 3.093h.013l.992-3.093h.999zm4.394 0h-.833v-.444h-.017q-.167.278-.432.401c-.265.123-.358.123-.541.123q-.352 0-.576-.093a.85.85 0 0 1-.354-.261 1 1 0 0 1-.181-.412 2.6 2.6 0 0 1-.052-.539v-1.961h.876v1.799q0 .394.123.589.124.194.438.194.356 0 .518-.214.16-.213.159-.699v-1.669h.876zm3.134-1.918-.002-.123 1.104-1.147h1.035l-1.201 1.171 1.337 2.017h-1.061zm2.433-.289q.02-.307.155-.511.136-.203.345-.326a1.5 1.5 0 0 1 .473-.174q.26-.052.526-.052.241 0 .487.034.247.035.451.132a.9.9 0 0 1 .332.274q.13.174.13.466v1.659q0 .216.024.412.025.197.086.295h-.889a1 1 0 0 1-.041-.151 1 1 0 0 1-.021-.157 1.16 1.16 0 0 1-.494.302 2 2 0 0 1-.581.086q-.227-.001-.424-.056a1 1 0 0 1-.346-.173.8.8 0 0 1-.23-.295 1 1 0 0 1-.085-.425.95.95 0 0 1 .095-.447.8.8 0 0 1 .246-.28q.152-.104.345-.158a4.4 4.4 0 0 1 .779-.133q.19-.019.339-.056a.6.6 0 0 0 .235-.108q.087-.072.08-.207a.44.44 0 0 0-.048-.225.3.3 0 0 0-.123-.129.5.5 0 0 0-.179-.063 2 2 0 0 0-.218-.015.67.67 0 0 0-.407.11q-.149.111-.173.369zm2.021.647a.4.4 0 0 1-.138.078 1 1 0 0 1-.179.045q-.096.019-.201.031t-.209.03a2 2 0 0 0-.194.049.6.6 0 0 0-.166.084.4.4 0 0 0-.114.132.4.4 0 0 0-.044.203q0 .117.044.196a.35.35 0 0 0 .116.127q.075.046.173.065t.202.019q.26 0 .402-.086a.6.6 0 0 0 .291-.451q.016-.123.015-.196zm1.443-1.628h.833v.444h.017q.165-.277.431-.403c.266-.126.358-.127.542-.127q.352 0 .576.094a.9.9 0 0 1 .353.266q.13.168.182.412t.051.539v1.961h-.875v-1.799q0-.395-.123-.589-.124-.195-.438-.194-.358 0-.518.213-.161.215-.16.699v1.67h-.875zm-8.451-.55q.452.223.876.483v3.253h-.876zm-8.93.159c-.261.768.203 1.635 1.156 2.408-2.122-.911-3.496-2.244-3.184-3.38.434-1.573 3.932-2.177 7.481-1.491 3.136.606 5.416 2.375 5.884 3.617-1.035-.936-2.621-1.883-4.562-2.37-3.235-.816-6.268-.27-6.775 1.216m11.341.613a4.9 4.9 0 0 0-.875-1.001v-.436h.875zM24 14.652a.47.47 0 0 1-.479.472.473.473 0 0 1-.481-.472c0-.259.214-.466.481-.466.27 0 .479.207.479.466m-.839 0c0 .207.153.373.364.373a.357.357 0 0 0 .356-.369c0-.207-.151-.375-.358-.375a.36.36 0 0 0-.362.371m.287.246h-.108v-.466a1 1 0 0 1 .179-.015c.088 0 .127.015.162.034.026.02.045.056.045.104 0 .052-.039.09-.097.108v.006c.045.017.071.052.086.114.015.072.024.1.035.117h-.117c-.015-.017-.023-.061-.036-.114-.009-.052-.037-.074-.097-.074h-.052zm.002-.266h.052c.06 0 .108-.019.108-.069 0-.043-.031-.071-.1-.071a.2.2 0 0 0-.06.007z"/></svg>���������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vultr.svg������������������������������������0000664�0000000�0000000�00000000710�14753064456�0024775�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.36 2.172A1.2 1.2 0 0 0 7.348 1.6H1.2A1.2 1.2 0 0 0 0 2.8a1.2 1.2 0 0 0 .182.64l11.6 18.4a1.206 1.206 0 0 0 2.035 0l3.075-4.874a1.23 1.23 0 0 0 .182-.64 1.2 1.2 0 0 0-.182-.642zm10.349 8.68a1.206 1.206 0 0 0 2.035 0L21.8 9.178l2.017-3.2a1.2 1.2 0 0 0 .183-.64 1.23 1.23 0 0 0-.183-.64l-1.6-2.526a1.2 1.2 0 0 0-1.016-.571h-6.148a1.2 1.2 0 0 0-1.201 1.2 1.14 1.14 0 0 0 .188.64z"/></svg>��������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/vyond.svg������������������������������������0000664�0000000�0000000�00000001300�14753064456�0024754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.55 16.382 0 7.616h1.328l.928 6.18.932-6.18h1.328l-1.55 8.766zm5.486-7.61H6.022l1.166 3.776v2.68h.924v-2.68L9.28 8.772H8.262L7.65 11.35l-.614-2.58zm5.12 1.92c0-.324-.128-.482-.372-.482s-.37.16-.37.482v2.616c0 .324.126.492.37.492s.372-.166.372-.492zm-.344-1.256c.69 0 1.144.468 1.144 1.262v2.52c0 .872-.432 1.346-1.172 1.346s-1.162-.468-1.162-1.376v-2.52c0-.766.44-1.24 1.19-1.24m5.032-.656v4.2l-1.344-4.2h-.896v6.456h.924v-3.944l1.316 3.944h.936V8.772zm5.07 6.32c.508 0 .706-.322.706-.92v-4.22c0-.72-.336-1.044-1.08-1.044h-.31v6.184zM19.89 7.616h1.924c1.504 0 2.186.784 2.186 2.408v3.912c0 1.678-.62 2.448-2.122 2.448H19.89z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/w3schools.svg��������������������������������0000664�0000000�0000000�00000003730�14753064456�0025552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.228 5.464s.605.648 1.45.648c.666 0 1.151-.403 1.151-.955 0-.677-.619-.989-1.368-.989h-.441l-.264-.595 1.17-1.387c.25-.298.462-.485.462-.485s-.188.01-.567.01h-1.905V.713h3.902v.73L22.253 3.25c.883.125 1.747.754 1.747 1.862 0 1.09-.825 2.098-2.25 2.098-1.359 0-2.112-.855-2.112-.855l.59-.892zm-7.611 1.348 5.154 9.176 2.543-4.535-4.866-8.662H9.785L7.438 6.97 5.092 2.79H0l7.41 13.197.028-.048.03.048 5.149-9.176zM.053 22.208h.753c0 .22.192.431.533.431.317 0 .528-.158.528-.37 0-.181-.14-.263-.38-.316l-.431-.11c-.73-.192-.917-.58-.917-.994 0-.504.5-.964 1.205-.964.576 0 1.228.293 1.219 1.012H1.8c0-.22-.202-.36-.432-.36-.25 0-.423.144-.423.346 0 .168.159.264.346.307l.518.14c.73.186.86.642.86.94 0 .657-.658 1.017-1.316 1.017-.638 0-1.286-.388-1.3-1.08zm3.282-.624c0-1.027.826-1.7 1.762-1.7.561 0 1.017.25 1.315.625l-.567.45a.96.96 0 0 0-.734-.326c-.561 0-.965.404-.965.95 0 .543.404.956.965.956a.96.96 0 0 0 .734-.327l.567.451a1.65 1.65 0 0 1-1.315.624c-.936 0-1.762-.676-1.762-1.703m6.954-.197V23.2h-.806v-1.756c0-.519-.312-.797-.672-.797-.37 0-.825.216-.825.845v1.713h-.807v-5h.811v2.25c.159-.394.682-.576 1.003-.576.835.005 1.296.566 1.296 1.507zm.845.197c0-1.027.796-1.7 1.718-1.7s1.727.673 1.727 1.7-.806 1.703-1.727 1.703c-.922 0-1.718-.676-1.718-1.703m2.634 0c0-.557-.417-.95-.916-.95s-.907.393-.907.95c0 .566.408.955.907.955s.916-.39.916-.955m1.498 0c0-1.027.796-1.7 1.718-1.7s1.727.673 1.727 1.7-.806 1.703-1.727 1.703c-.917 0-1.718-.676-1.718-1.703m2.634 0c0-.557-.417-.95-.916-.95s-.907.393-.907.95c0 .566.408.955.907.955.504 0 .916-.39.916-.955m1.704 1.622v-5h.806v5zm1.685-.998h.753c0 .22.192.431.533.431.316 0 .528-.158.528-.37 0-.181-.14-.263-.38-.316l-.431-.11c-.73-.192-.917-.58-.917-.994 0-.504.499-.964 1.205-.964.575 0 1.228.293 1.219 1.012h-.768c0-.22-.202-.36-.432-.36-.25 0-.423.144-.423.346 0 .168.159.264.346.307l.518.14c.73.186.86.642.86.94 0 .657-.658 1.017-1.316 1.017-.638 0-1.281-.388-1.295-1.08z"/></svg>����������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wacom.svg������������������������������������0000664�0000000�0000000�00000004313�14753064456�0024732�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.243 9.877c-.475 0-.7.05-.944.143l-.044.02.269.475.031-.013c.182-.075.382-.1.757-.1h.4c.588 0 .92.294.92.807v1.576c0 .513-.338.807-.92.807h-.656c-.601 0-.895-.244-.895-.744 0-.495.294-.738.895-.738h.913v-.526H7.03c-.888 0-1.4.463-1.4 1.27 0 .782.537 1.263 1.4 1.263h.707c.982 0 1.433-.656 1.433-1.263V11.14c0-.607-.45-1.263-1.433-1.263zm2.533 1.263c0-.607.45-1.263 1.433-1.263h.613c.5.006.825.074 1.088.25l.038.018-.307.445-.031-.02c-.2-.118-.444-.168-.857-.168h-.513c-.594 0-.92.288-.92.807v1.576c0 .52.326.807.92.807h.513c.413 0 .663-.05.857-.17l.031-.018.307.444-.038.025c-.269.17-.594.244-1.095.244h-.606c-.982 0-1.433-.656-1.433-1.263zm6.543 1.651c0 .513-.338.807-.92.807h-.65c-.594 0-.92-.288-.92-.807v-1.576c0-.513.338-.807.92-.807h.65c.589 0 .92.294.92.807zm-.9-2.908h-.695c-.988 0-1.439.657-1.439 1.263v1.714c0 .607.45 1.264 1.433 1.264h.7c.982 0 1.433-.657 1.433-1.264v-1.714c.006-.607-.444-1.263-1.433-1.263zm3.465.012c.569 0 .907.138 1.17.475.262-.337.606-.475 1.169-.475.844 0 1.395.482 1.395 1.226v2.99h-.532V11.19c0-.52-.294-.77-.888-.77-.563 0-.876.257-.876.72v2.971h-.538V11.14c0-.463-.313-.72-.876-.72-.6 0-.888.25-.888.77v2.921h-.538v-2.99c.007-.744.55-1.226 1.401-1.226m4.69.257q.066 0 .094.018c.026.013.032.038.026.063q.001.048-.044.069c-.019.012-.044.012-.075.012h-.07v-.162zm.138-.032a.3.3 0 0 0-.125-.018l-.156-.007v.45h.081v-.175h.063c.043 0 .068 0 .087.013.031.013.044.05.044.1v.063h.075v-.007q-.008-.007-.006-.025v-.062a.1.1 0 0 0-.025-.069q-.02-.036-.075-.044c.025 0 .05-.006.062-.019.032-.018.044-.05.044-.087q-.001-.084-.069-.113m-.469.207q-.002-.149.1-.25a.38.38 0 0 1 .25-.107q.149.002.25.107c.07.068.1.15.1.25s-.03.181-.1.25a.34.34 0 0 1-.25.106.34.34 0 0 1-.25-.106.33.33 0 0 1-.1-.25m.35.406a.39.39 0 0 0 .288-.119.38.38 0 0 0 .119-.294.39.39 0 0 0-.119-.287c-.075-.082-.175-.12-.288-.12s-.206.038-.287.12a.39.39 0 0 0-.12.287c0 .12.038.213.12.294a.38.38 0 0 0 .287.12M4.597 12.83V9.908l.538-.007v2.99c-.006.745-.55 1.226-1.4 1.226-.57 0-.908-.137-1.17-.475-.263.338-.601.475-1.17.475C.55 14.117 0 13.636 0 12.891v-2.99l.532.007v2.92c0 .52.294.77.888.77.563 0 .876-.256.876-.72v-2.97h.538v2.97c0 .464.312.72.875.72.6 0 .888-.25.888-.77z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wagmi.svg������������������������������������0000664�0000000�0000000�00000000656�14753064456�0024736�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.74 13.207c0 .756.612 1.37 1.369 1.37h2.739a1.37 1.37 0 0 0 1.37-1.37V7.728a1.37 1.37 0 0 1 2.739 0v5.479c0 .756.613 1.37 1.37 1.37h2.738a1.37 1.37 0 0 0 1.37-1.37V7.728a1.37 1.37 0 1 1 2.739 0v8.218a1.37 1.37 0 0 1-1.37 1.37H1.37A1.37 1.37 0 0 1 0 15.945V7.728a1.37 1.37 0 0 1 2.74 0zm19.434 4.434a1.826 1.826 0 1 0 0-3.652 1.826 1.826 0 0 0 0 3.652"/></svg>����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wagtail.svg����������������������������������0000664�0000000�0000000�00000002335�14753064456�0025256�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.181 0c-2.64 0-4.11 1.969-4.732 3.313l-7.431 13.66 2.097-.392L2.263 24l2.688-.482 2.043-5.838c5.815 0 13.279-2.088 12.238-9.906 0 0-.634-3.151-4.743-2.302-.417-1.42-.342-2.475.566-3.434 1.248-1.32 3.182-.596 3.182-.596l.002-1.087C17.559.057 16.906 0 16.181 0m2.417 2.523a.496.496 0 1 0 0 .99.496.496 0 0 0 0-.99M20.1 3.552l-1.292 1.574h2.93zm-3.726 4.79.303.01-.04.55-.038.29c-.014.104-.025.218-.05.338l-.075.383-.106.42c-.042.144-.094.293-.143.448a14 14 0 0 1-.186.468l-.113.237-.058.12-.066.12-.134.24-.152.235-.077.119-.085.114q-.085.116-.174.23c-.126.148-.25.3-.39.438-.134.146-.285.276-.432.41l-.23.19c-.077.065-.16.12-.24.18a8 8 0 0 1-1.01.626c-.347.181-.697.344-1.044.477q-.521.204-1.013.351c-.325.1-.636.183-.924.255-.576.142-1.06.24-1.4.307L7.963 16l.531-.115c.338-.076.82-.184 1.391-.34.286-.078.594-.168.915-.276.322-.105.657-.23.997-.373.341-.14.683-.31 1.022-.496a8 8 0 0 0 .978-.64c.076-.06.157-.116.23-.181l.221-.191c.14-.135.284-.265.41-.41.134-.137.25-.288.369-.433q.084-.114.163-.228l.08-.112.072-.117.141-.231.124-.235.061-.115.053-.118.103-.232q.091-.233.17-.455c.043-.151.09-.296.126-.436l.094-.408.062-.372c.022-.116.03-.227.042-.329l.03-.28z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wails.svg������������������������������������0000664�0000000�0000000�00000000710�14753064456�0024740�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.67 5.252-7.856 5.039-.369-.459-8.69-.283 1.891 1.904 5.221.106 1.63 1.656-5.878.662 1.77 1.783 5.34-1.185.003-.006.993 1.168-3.079 3.11 7.399.001-1.582-5.002 2.209 3.14H24l-5.385-2.415h4.121l-5.384-2.418h4.117L16.297 9.73l1.088-1.443 4.09-1.076-3.467.248zm-3.635 2.322-6.039.43 1.455 1.826 1.813-.476zm-.252 2.84-.86 1.145-.001-.002.154-.205zM0 12.2l5.615 1.033-1.017-1.027z"/></svg>��������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wakatime.svg���������������������������������0000664�0000000�0000000�00000001404�14753064456�0025424�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m0 2.824a9.176 9.176 0 1 1 0 18.352 9.176 9.176 0 0 1 0-18.352m5.097 5.058c-.327 0-.61.19-.764.45-1.025 1.463-2.21 3.162-3.288 4.706l-.387-.636a.9.9 0 0 0-.759-.439.9.9 0 0 0-.788.492l-.357.581-1.992-2.943a.9.9 0 0 0-.761-.446c-.514 0-.903.452-.903.96a1 1 0 0 0 .207.61l2.719 3.96c.152.272.44.47.776.47a.91.91 0 0 0 .787-.483c.046-.071.23-.368.314-.504l.324.52c-.035-.047.076.113.087.13.024.031.054.059.078.085q.03.028.058.052c.036.033.08.056.115.08q.039.023.076.04.045.02.088.035c.058.025.122.027.18.04.031.004.064.003.092.005.29 0 .546-.149.707-.36 1.4-2 2.842-4.055 4.099-5.849A1 1 0 0 0 18 8.842c0-.508-.389-.96-.903-.96"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/walkman.svg����������������������������������0000664�0000000�0000000�00000001615�14753064456�0025260�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.838 6.377a3.6 3.6 0 0 0-.833.086c-1.696.375-2.56 1.674-2.535 3.027.022 1.328-.592 2.51-1.911 2.663-1.28.154-1.861-.835-1.946-2.009-.083-1.159-.875-2.076-2.099-1.802-1.044.227-1.785 1.163-1.846 2.339-.065 1.22-.547 2.24-1.425 2.343-.841.097-1.261-.933-1.317-1.75-.054-.803-.453-1.822-1.497-1.59C.446 9.9.017 11.128.001 11.94c-.017.82.333 1.914 1.27 1.853.726-.048 1.275.636 1.291 1.67.014 1.008.568 2.16 1.665 2.162 1.16 0 1.799-.982 1.828-2.366.027-1.2.757-2.06 1.555-2.147.827-.087 1.588.635 1.674 1.957.091 1.344.77 2.517 2.568 2.517 1.947 0 2.457-1.477 2.421-2.889-.036-1.397 1.03-2.367 2.318-2.544 1.404-.192 2.862-1.246 2.687-3.382-.138-1.701-1.242-2.374-2.44-2.393zm3.999 5.638a4 4 0 0 0-.318.02c-1.6.16-2.762 1.27-2.644 2.893.12 1.65 1.47 2.679 3.133 2.679 1.769 0 3.165-1.154 2.975-2.992-.178-1.69-1.571-2.632-3.146-2.6"/></svg>�������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wallabag.svg���������������������������������0000664�0000000�0000000�00000004674�14753064456�0025410�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.376 0q-.066-.005-.139.054c-.103.083-.998.291-1.529.705-.857.669-1.385 1.94-1.625 2.644l-.047.14c-.111.27-.334.27-.334.27a3 3 0 0 0-.325-.017q-.145 0-.29.014h-.007c-.284.041-.44-.305-.473-.388-.332-.953-1.224-2.833-3.232-3.34 0 0-.365-.278-.254.194.106.452.324.907.276 1.57-.023.307-.212 1.877 1.231 2.695q.206.116.37.2c-.727.58-1.388 1.39-1.953 2.308.287-.176 1.836-.997 4.332.034 2.569 1.06 4.161.139 4.359.013-.621-1.02-1.358-1.91-2.175-2.506l.168-.047c1.083-.313 1.358-1.23 1.416-2.016.066-.89.11-.904.303-1.705.14-.577.058-.807-.072-.821zm-7.174 9.03a.82.82 0 0 0-.555.188.57.57 0 0 0-.22.44v2.84c0 .358.036.697.105 1.006q.106.475.365.823.263.352.702.55c.289.128.65.193 1.073.193.442 0 .812-.083 1.1-.245a1.9 1.9 0 0 0 .606-.53q.234.326.592.53c.284.162.66.245 1.117.245.423 0 .784-.067 1.07-.196a1.76 1.76 0 0 0 .695-.547 2.1 2.1 0 0 0 .366-.823c.068-.31.102-.648.102-1.005V9.658a.58.58 0 0 0-.212-.44c-.137-.126-.327-.188-.56-.188a.74.74 0 0 0-.525.19.59.59 0 0 0-.205.438v2.886q0 .582-.203.848c-.131.17-.34.252-.64.252-.306 0-.516-.081-.64-.25q-.193-.266-.193-.85V9.646a.53.53 0 0 0-.26-.465c-.231-.146-.46-.199-.74-.106a1.2 1.2 0 0 0-.241.11.7.7 0 0 0-.196.178.4.4 0 0 0-.088.25v2.93q0 .585-.193.851c-.124.169-.332.25-.638.25s-.518-.082-.645-.252q-.199-.265-.2-.848V9.658a.59.59 0 0 0-.205-.438.75.75 0 0 0-.534-.19zm-3.052 5.774a5.6 5.6 0 0 0 .336 1.032c.12.673.28 2.258-.48 3.645-.671 1.222-3.982 2.888-8.895 1.932 0 0-.197-.137-.256-.024-.089.168.272.303.643.401 3.421.906 8.583.536 10.204-.8.74-.609 1.026-1.428 1.1-2.31 0 0 .019-.231.308-.057.083.05.382.245.43.465.042.313.045.696-.117.966-.232.385-.234.441.07.659.187.133.952.695 2.014 1.333l.006.004c.225.135.538.467.538.467.478.554 1.518 1.667 1.97 1.457.214-.099-.007-.544-.007-.544s.354.461.545.304c.146-.12-.084-.581-.084-.581s.31.27.495.17c.226-.122-.033-.83-1.81-1.91-1.78-1.082-2.261-1.248-2.304-1.73v-.065c.014-.107.074-.333.333-.31a7.5 7.5 0 0 0 1.189.097 7.4 7.4 0 0 0 1.355-.123s.022-.005.029-.006c.05-.007.15-.003.15.12a1 1 0 0 1-.152.452c-.26.39-.174.444.098.695.167.154.937.83 1.99 1.486l.004.004c.225.135.614.506.614.506.436.443 1.238 1.185 1.676 1.14.296-.03.054-.54.054-.54s.374.36.558.254c.205-.118-.084-.494-.084-.494s.24.128.41.086.213-.477-1.556-1.572-2.364-1.481-2.327-1.9c0 0 0-.069.018-.173a1.13 1.13 0 0 1 .612-.817l.037-.024c1.378-.8 2.386-2.087 2.741-3.695-.357.888-3.008 1.578-6.227 1.578-3.218 0-5.87-.69-6.228-1.578z"/></svg>��������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/walletconnect.svg����������������������������0000664�0000000�0000000�00000001201�14753064456�0026457�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.913 7.519c3.915-3.831 10.26-3.831 14.174 0l.471.461a.483.483 0 0 1 0 .694l-1.611 1.577a.25.25 0 0 1-.354 0l-.649-.634c-2.73-2.673-7.157-2.673-9.887 0l-.694.68a.255.255 0 0 1-.355 0L4.397 8.719a.48.48 0 0 1 0-.693zm17.506 3.263 1.434 1.404a.483.483 0 0 1 0 .694l-6.466 6.331a.51.51 0 0 1-.709 0l-4.588-4.493a.126.126 0 0 0-.178 0l-4.589 4.493a.51.51 0 0 1-.709 0L.147 12.88a.483.483 0 0 1 0-.694l1.434-1.404a.51.51 0 0 1 .709 0l4.589 4.493c.05.048.129.048.178 0l4.589-4.493a.51.51 0 0 1 .709 0l4.589 4.493c.05.048.128.048.178 0l4.589-4.493a.507.507 0 0 1 .708 0"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/walmart.svg����������������������������������0000664�0000000�0000000�00000005250�14753064456�0025274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.418 9.102c-.22 0-.396.123-.396.273l.134 1.516c.015.092.127.162.262.162.136 0 .247-.07.262-.162l.135-1.516c0-.15-.176-.273-.397-.273M0 10.318s.597 2.447.692 2.845c.112.463.312.634.89.519l.373-1.517c.094-.377.158-.646.219-1.03h.01c.043.388.104.654.181 1.03l.23 1.051c.078.362.295.59.86.466l.89-3.364h-.718l-.303 1.455c-.082.423-.156.753-.213 1.14h-.01c-.052-.383-.118-.7-.2-1.113l-.317-1.482h-.747l-.338 1.445c-.096.439-.185.793-.242 1.167h-.01a41 41 0 0 0-.22-1.222s-.201-1.033-.272-1.39zm6.838 0v3.364h.683v-3.364zm9.62 0V12.8c0 .342.064.581.201.728.12.128.319.21.556.21.202 0 .401-.038.495-.073l-.01-.533c-.069.017-.149.03-.259.03-.232 0-.31-.148-.31-.456v-.949h.595v-.643h-.595v-.796zm2.778 0c-.114.003-.244.09-.327.233-.11.191-.091.405.038.48l1.38.642c.086.032.203-.03.271-.146.068-.117.063-.25-.009-.308l-1.246-.874a.2.2 0 0 0-.107-.027m4.364 0a.2.2 0 0 0-.106.027l-1.247.874c-.071.058-.076.19-.009.307v.001c.068.117.185.178.271.146l1.38-.643c.13-.074.149-.288.04-.479-.084-.143-.214-.23-.329-.233m-18.288.78c-.424 0-.761.12-.945.225l.134.46c.168-.105.436-.193.69-.193.419-.001.488.237.488.39v.036c-.915-.001-1.492.315-1.492.96 0 .394.294.763.805.763.315 0 .578-.126.736-.327h.015s.105.437.68.27a4 4 0 0 1-.04-.61v-.898c0-.572-.245-1.076-1.071-1.076m4.086 0c-.428 0-.62.217-.736.4h-.01v-.343H8v2.527h.686V12.2c0-.07.008-.143.033-.207.056-.149.195-.324.417-.324.277 0 .406.235.406.573v1.44h.686v-1.5c0-.066.01-.146.029-.205a.43.43 0 0 1 .412-.308c.28 0 .416.23.416.628v1.385h.686v-1.488c0-.785-.399-1.096-.848-1.096-.2 0-.357.05-.499.137q-.18.11-.32.315h-.01c-.109-.272-.364-.452-.696-.452m3.77 0c-.425 0-.761.12-.945.225l.134.46c.168-.105.436-.193.69-.193.419-.001.487.237.487.39v.036c-.914-.001-1.491.315-1.491.96 0 .394.294.763.805.763.315 0 .578-.126.735-.327h.016s.104.437.68.27a4 4 0 0 1-.04-.61v-.898c0-.572-.245-1.076-1.071-1.076m2.851 0c-.263 0-.562.17-.688.534h-.019v-.477h-.618v2.527h.705v-1.294q0-.103.015-.186c.052-.272.26-.445.557-.445.082 0 .14.009.203.018v-.661a.7.7 0 0 0-.155-.016m4.36 1.22a.14.14 0 0 0-.052.01l-1.38.641c-.13.075-.149.289-.038.48.11.19.305.281.434.207l1.246-.874c.072-.06.077-.191.01-.309-.055-.095-.143-.153-.22-.154m2.079 0c-.077.002-.165.06-.22.156-.067.117-.062.249.01.308l1.246.874c.129.074.323-.016.434-.207s.091-.405-.039-.48l-1.38-.642a.1.1 0 0 0-.051-.008m-16.757.146v.315a.5.5 0 0 1-.017.137.48.48 0 0 1-.461.323c-.19 0-.34-.107-.34-.334 0-.347.383-.443.818-.441m7.855 0v.315a.5.5 0 0 1-.017.137.48.48 0 0 1-.46.323c-.19 0-.34-.107-.34-.334 0-.347.382-.443.817-.441m7.862.483c-.135 0-.247.07-.262.162l-.134 1.516c0 .15.176.273.396.273s.397-.123.397-.273l-.135-1.516c-.015-.092-.126-.162-.262-.162z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wantedly.svg���������������������������������0000664�0000000�0000000�00000001056�14753064456�0025454�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.453 14.555c-.171-.111-.658-.764-2.006-3.982a9 9 0 0 0-.237-.526l-.274-.664-2.362-5.702H8.85l2.362 5.702 2.362 5.706 2.181 5.267a.196.196 0 0 0 .362 0l2.373-5.682a.1.1 0 0 0-.037-.119m-8.85 0c-.171-.111-.658-.764-2.006-3.982a9 9 0 0 0-.236-.525l-.276-.665-2.36-5.702H0l2.362 5.702 2.362 5.706 2.181 5.267a.196.196 0 0 0 .362 0l2.374-5.682a.1.1 0 0 0-.038-.119M24 6.375a2.85 2.85 0 0 1-2.851 2.852 2.85 2.85 0 0 1-2.852-2.852 2.85 2.85 0 0 1 2.852-2.851A2.85 2.85 0 0 1 24 6.375"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wappalyzer.svg�������������������������������0000664�0000000�0000000�00000000614�14753064456�0026022�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 11.014v-.604L12 1.805 0 10.41v.603l12 8.606zM8.634 10.82l2.75 1.07.016-.01-1.526-1.967.984-.72 2.695 1.116.016-.011-1.463-2.018 1.247-.913 2.6 3.85-1.046.766-2.797-1.157-.012.008 1.593 2.038-1.048.767-5.26-1.903zm14.418 1.488.947.679v.603l-12 8.605L0 13.59v-.603l.947-.678 10.761 7.717.292.21.291-.21 10.762-7.717z"/></svg>��������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/warnerbros.svg�������������������������������0000664�0000000�0000000�00000002643�14753064456�0026014�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.58 10.238c-.524 0-1 .2-2.465 1.252v5.66c2.54-2.855 3.264-4.808 3.264-5.81-.003-.702-.326-1.102-.8-1.102m.2-3.756c0-1.005-1.146-1.83-2.665-1.929v5.234c1.916-1.127 2.664-2.257 2.664-3.306zm4.51-2.222c-.025-.1-.05-.137-.1-.15l-1.797-.476-.249-1.027c-.012-.05-.025-.088-.074-.1l-1.844-.5-.224-.978a.14.14 0 0 0-.1-.125L12.115.01a.6.6 0 0 0-.237 0L7.09.904a.14.14 0 0 0-.1.125l-.224.978-1.843.5c-.05.012-.062.05-.075.1l-.249 1.026-1.791.477c-.05.013-.075.05-.1.15a13 13 0 0 0-.224 2.43c0 7.215 3.737 13.477 9.317 17.21a.25.25 0 0 0 .2.1.25.25 0 0 0 .2-.1c5.58-3.733 9.317-9.995 9.317-17.21a13 13 0 0 0-.228-2.43zm-9.993 16.321c0 .05-.05.075-.099.025-1.37-1.577-2.292-3.506-2.914-5.61l-.947.603c-.25.176-.448.1-.6-.175-1.27-2.254-2.092-5.961-2.166-8.565a.45.45 0 0 1 .124-.325 12 12 0 0 1 1.096-1.152c.075-.075.15-.026.15.1 0 3.205.547 6.185 1.42 8.14.074.15.149.15.249.074l.273-.175c-.523-2.33-.822-5.435-.747-9.016 0-.125.025-.176.1-.225a9 9 0 0 1 1.195-.627c.124-.05.15-.024.15.075-.07 5.21.354 8.814 1.274 11.694.025.075.1.05.1-.025-.05-1.052-.05-1.978-.05-3.106l-.05-8.99c0-.1.025-.15.125-.175a10 10 0 0 1 1.245-.226.07.07 0 0 1 .055.019.07.07 0 0 1 .02.056zm1.495.025c-.05.05-.1.025-.1-.025V2.976a.07.07 0 0 1 .02-.056.07.07 0 0 1 .055-.02c3.337.226 5.48 1.629 5.48 3.657a3.4 3.4 0 0 1-.872 2.278c1.095.3 1.519 1.127 1.519 2.229.002 1.954-1.418 5.185-6.1 9.542Z"/></svg>���������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/warp.svg�������������������������������������0000664�0000000�0000000�00000000416�14753064456�0024575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.035 2.723h9.253A2.71 2.71 0 0 1 24 5.435v10.529a2.71 2.71 0 0 1-2.712 2.713H8.047Zm-1.681 2.6L6.766 19.677h5.598l-.399 1.6H2.712A2.71 2.71 0 0 1 0 18.565V8.036a2.71 2.71 0 0 1 2.712-2.712Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wasabi.svg�����������������������������������0000664�0000000�0000000�00000001606�14753064456�0025074�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.483 3.517A11.9 11.9 0 0 0 12 0a11.9 11.9 0 0 0-8.483 3.517A11.9 11.9 0 0 0 0 12a11.9 11.9 0 0 0 3.517 8.483A11.9 11.9 0 0 0 12 24a11.9 11.9 0 0 0 8.483-3.517A11.9 11.9 0 0 0 24 12a11.9 11.9 0 0 0-3.517-8.483m1.29 7.387-5.16-4.683-5.285 4.984-2.774 2.615V9.932l4.206-3.994 3.146-2.969c3.163 1.379 5.478 4.365 5.867 7.935m-.088 2.828a10.6 10.6 0 0 1-1.025 2.951l-2.952-2.668v-3.87Zm-8.183-11.47-2.227 2.103-2.739 2.598v-4.17A9.8 9.8 0 0 1 12 2.155c.513 0 1.007.035 1.502.106zM6.398 13.891l-4.083-3.658a9.7 9.7 0 0 1 1.078-2.987L6.398 9.95zm0-9.968v3.129l-1.75-1.573a8.6 8.6 0 0 1 1.75-1.556m-4.189 9.102 5.284 4.736 5.302-4.983 2.74-2.598v3.817l-7.423 7.016a9.82 9.82 0 0 1-5.903-7.988m8.306 8.695 5.02-4.754v4.206a9.8 9.8 0 0 1-3.553.654c-.495 0-.99-.035-1.467-.106m7.176-1.714v-3.11l1.714 1.555a9.6 9.6 0 0 1-1.714 1.555"/></svg>��������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wasmcloud.svg��������������������������������0000664�0000000�0000000�00000001267�14753064456�0025627�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.805 5.477 12.797.215a1.59 1.59 0 0 0-1.6 0L2.19 5.477a1.41 1.41 0 0 0-.697 1.215v10.604a1.44 1.44 0 0 0 .715 1.243l9.023 5.251a1.55 1.55 0 0 0 1.558 0l8.998-5.25a1.44 1.44 0 0 0 .72-1.244V6.692a1.41 1.41 0 0 0-.702-1.215m-2.001 10.428a.28.28 0 0 1-.139.238l-7.527 4.388a.28.28 0 0 1-.282 0l-7.524-4.385a.29.29 0 0 1-.14-.257v-7.8a.28.28 0 0 1 .138-.239l2.732-1.6a.28.28 0 0 1 .279 0 .28.28 0 0 1 .14.242v7.324l2.469-1.432v-7.65a.27.27 0 0 1 .138-.241l1.781-1.04a.28.28 0 0 1 .282 0l1.794 1.042a.28.28 0 0 1 .136.241v7.642l2.455 1.43V6.484a.28.28 0 0 1 .141-.24.28.28 0 0 1 .28 0l2.731 1.603a.28.28 0 0 1 .139.239z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wasmer.svg�����������������������������������0000664�0000000�0000000�00000000712�14753064456�0025121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.111 3.537c-.011.822-.5 1.208-1.111.86-.611-.353-1.106-1.307-1.111-2.146L12 0v4.651l5.561 3.222.55.32v7.763L22 18.206V5.794l-3.889-2.256Zm-5 3.034c-.011.822-.5 1.208-1.111.86-.611-.352-1.106-1.307-1.111-2.145l-3.89-2.252V7.41l5.562 3.222.55.32v8.038L17 21.241V8.828L13.11 6.57Zm-5 2.759c-.011.822-.5 1.208-1.111.86-.611-.353-1.106-1.307-1.111-2.146L2 5.794v12.413L12 24V11.586z"/></svg>������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/watchtower.svg�������������������������������0000664�0000000�0000000�00000002372�14753064456�0026016�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .099C5.373.099 0 5.426 0 12c0 6.571 5.373 11.9 12 11.9S24 18.573 24 12C24 5.428 18.627.1 12 .1Zm.139 7.34 5.377 2.66v.222h-.526v.504l6.36-1.619a11.53 11.53 0 0 1-.248 6.424l-6.112-1.22v.652h2.428v1.091h.393l-.002.248-2.745 1.471.67 4.219-.203.111a11.7 11.7 0 0 1-5.506 1.367A11.7 11.7 0 0 1 6.72 22.3h-.01v-.003q-.098-.048-.195-.098l.685-4.31-2.765-1.473.001-.264h.413v-1.09h2.435v-.65L.961 15.675a11.5 11.5 0 0 1-.602-3.676c0-.987.125-1.947.36-2.863l6.564 1.676v-.51h-.578v-.203Zm-4.856 3.373v3.6l.33-.067v-3.451zm.33.082 2.668.68v-1.061H7.613Zm2.668.68v2.24l.328-.067v-2.09zm.328.083.452.115.039-.439h2.076l.04.453.458-.115v-1.158h-3.065zm3.065.014-.002 2.074.33.067v-2.225l2.658-.678v-.396H14v1.074zm2.986-.762v3.434l.33.066v-3.584zm0 3.434-2.658-.531v.935h2.658zm-2.988-.598-.281-.055.097 1.057h.184zm-3.063.002v1h.178l.096-1.055zm-2.996.598v.402h2.666v-.933zm-.904 7.95q.005.003.01.005l10.812-.098-.343-2.219H7.078Zm5.428-14.704-5.291 2.594h10.527Zm-.905 3.888-.298 3.268h2.408l-.299-3.268zm-3.619 3.543v.069h9.235l-.004-.069zm-2.547.32v.81h2.217v-.81zm2.547 0v.81h3.01v-.81zm3.229 0v.81h2.605v-.81zm2.824 0v.81h3.18v-.81zm3.398 0v.81H19.2v-.81Zm-12.216 1.05 2.574 1.37h9.422l2.574-1.37z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wattpad.svg����������������������������������0000664�0000000�0000000�00000000735�14753064456�0025274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.034 3.09c-1.695.113-3.9 2.027-6.9 6.947.245-2.758.345-4.716-.857-5.743-.823-.702-2.764-.974-3.926.536C.18 6.349-.09 9.312.024 12.432c.238 6.518 2.544 8.487 4.59 8.487h.001c3.623 0 4.13-4.439 6.604-8.4-.09 1.416-.008 2.668.266 3.532 1.078 3.398 4.784 3.663 6.467.21 2.374-4.87 3.058-6.016 5.453-9.521 1.58-2.314-.252-3.812-2.374-2.735-1.09.554-2.86 1.935-5.065 4.867.387-2.23.28-5.996-2.932-5.782"/></svg>�����������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wayland.svg����������������������������������0000664�0000000�0000000�00000004447�14753064456�0025273�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.982 12c0 9.224-9.985 14.989-17.973 10.377A11.98 11.98 0 0 1 .018 12c0-3.386 1.346-6.306 3.444-8.418v.675l.553 3.413v1.07l.077 1.365q-.344 0-.344.159v.09l.344-.09h.076v2.366q.267 2.367.992 4.21.075 1.297.286 1.297.343 1.297.496 1.297a5.5 5.5 0 0 0 2.422 1.865q.516 0 .859-1.296.439-2.799.706-3.414.247.25.858.342v-.091q0-.228-.782-.478.21-1.092.572-1.866.058-1.32 1.354-3.663l.344.09q.075 1.07.286 1.776.782 1.592.782 3.003 0 .546 1.22 3.663.306 2.049.783 2.412h.152q.63 0 1.488-1.615.84-1.821 1.354-2.025 0-.16-.362-.16v-.09q.286 0 .286-.16v-.068l-.076-.091.801-.319q0-.41-.286-.41v-.09h.572v-.16q-.438 0-.572-.477h.133v-.319l-.076-.091q.649 0 .649-.25v-.069h-.134v-.09q.23 0 .343-.478-.63-.205-.629-.41l.553-1.615q0-1.23.439-2.685.495-1.41.706-3.072.456-1.596.938-2.17A11.98 11.98 0 0 1 23.982 12m-5.99-10.377q.881.511 1.65 1.148a34 34 0 0 0-.157 1.736q-.687 1.616-1.507 4.55h-1.411l-.725.07v.181h.362l.286-.09 1.202.158v.092q-.515 1.774-.63 1.774-.667 3.322-1.068 3.322h-.229q-.477-.433-1.068-1.774a.86.86 0 0 0-.21-.57L13.42 9.855q-.324-1.501-.858-2.252-.172-.5-.572-.5h-.134q-.63 0-1.22.887l.076.25q-.268.91-.859 2.116-.915 2.662-1.201 2.662h-.153l-.286-.227q-.725-1.957-.992-5.757h-.134v-.16h.058a1.33 1.33 0 0 1 .515-.75v-.069l-.077-.09-.076.09-.076-.09-.344.09h-.152q-.135 0-.42-1.046v-.183h.496v-.16h-.648q-.208-1.047-1.218-2.494.444-.309.915-.577h.016l.077.068.438-.068h.783q.343 0 .705.25.172-.228.649-.25v-.16h-2.38c3.11-1.667 6.947-1.99 10.51-.392l-.443.142v.16q.36 0 .482-.284.553.25 1.095.562m3.477 3.203h-.134l.035-.295.179.23zM9.719 1.595h.572l.133.159.363-.16.42.069.438-.068v-.16H9.72v.16Zm3.7 1.297v.159l.21.09v-.09l.076-.091q.21 0 .21-.16v-.068h-.21zm-1.144.887h-.058l-.076-.068-.42.227v.16q.915-.205.916-.387V3.62zm-2.842.978q0 .25-.153.25v.16q.897-.295 1.297-.66V4.44l-1.144.318Zm4.482.57v.068l.153.182h.076l.134-.182v-.069l-.077-.09-.286.09Zm2.785.159v.09h.076l.134-.181v-.069h-.076zm-1.354 1.206.152.25q.345 0 .42-.25l-.286-.228q-.286.114-.286.228m1.85.978v.091h.153l.057-.091v-.068l-.057-.091zm-3.128.978v.091h.21l.362-.34v-.07q-.572.115-.572.32ZM2.24 12.13v.341h.153q.21-.16.496-.91v-.068h-.076zm9.328 3.413v.159l.076.091.572-.341v-.16h-.076zm-7.267.887.21.82h.152l-.229-.888h-.133zm7.63 1.07.133.227h.076l.076-.068-.228-.25h-.058v.09Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/waze.svg�������������������������������������0000664�0000000�0000000�00000002464�14753064456�0024577�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.218 0C9.915 0 6.835 1.49 4.723 4.148c-1.515 1.913-2.31 4.272-2.31 6.706v1.739c0 .894-.62 1.738-1.862 1.813-.298.025-.547.224-.547.522-.05.82.82 2.31 2.012 3.502.82.844 1.788 1.515 2.832 2.036a3 3 0 0 0 2.955 3.528 2.966 2.966 0 0 0 2.931-2.385h2.509c.323 1.689 2.086 2.856 3.974 2.21 1.64-.546 2.36-2.409 1.763-3.924a13 13 0 0 0 1.838-1.465 10.73 10.73 0 0 0 3.18-7.65c0-2.882-1.118-5.589-3.155-7.625A10.9 10.9 0 0 0 13.218 0m0 1.217c2.558 0 4.967.994 6.78 2.807a9.53 9.53 0 0 1 2.807 6.78A9.53 9.53 0 0 1 20 17.585a9.65 9.65 0 0 1-6.78 2.807h-2.46a3.01 3.01 0 0 0-2.93-2.41 3.03 3.03 0 0 0-2.534 1.367v.024a9 9 0 0 1-2.41-1.788c-.844-.844-1.316-1.614-1.515-2.11a2.86 2.86 0 0 0 1.441-.846 2.96 2.96 0 0 0 .795-2.036v-1.789c0-2.11.696-4.197 2.012-5.861 1.863-2.385 4.62-3.726 7.6-3.726zm-2.41 5.986a1.19 1.19 0 0 0-1.191 1.192 1.19 1.19 0 0 0 1.192 1.193A1.19 1.19 0 0 0 12 8.395a1.19 1.19 0 0 0-1.192-1.192m7.204 0a1.19 1.19 0 0 0-1.192 1.192 1.19 1.19 0 0 0 1.192 1.193 1.19 1.19 0 0 0 1.192-1.193 1.19 1.19 0 0 0-1.192-1.192m-7.377 4.769a.596.596 0 0 0-.546.845 4.81 4.81 0 0 0 4.346 2.757 4.77 4.77 0 0 0 4.347-2.757.596.596 0 0 0-.547-.845h-.025a.56.56 0 0 0-.521.348 3.59 3.59 0 0 1-3.254 2.061 3.59 3.59 0 0 1-3.254-2.061.64.64 0 0 0-.546-.348"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wazirx.svg�����������������������������������0000664�0000000�0000000�00000000372�14753064456�0025151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.965 21.964h21.924v-2.485H.965zm6.752-3.81h15.195L24 6.343 7.717 18.155Zm9.384-8.704L5.205 18.072H1.93l6.045-9.814 3.858-6.22 5.269 7.412Zm-11.693.223L0 6.067l.994 10.762z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wearos.svg�����������������������������������0000664�0000000�0000000�00000001144�14753064456�0025123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.416 21.135c-.969 0-1.894-.56-2.313-1.502L.219 6.42A2.53 2.53 0 0 1 4.842 4.36l5.883 13.213a2.53 2.53 0 0 1-1.282 3.341 2.5 2.5 0 0 1-1.027.22m7.195.036a2.33 2.33 0 0 1-2.127-1.381L7.39 6.102a2.327 2.327 0 0 1 4.251-1.894l6.094 13.69a2.327 2.327 0 0 1-1.178 3.072 2.3 2.3 0 0 1-.946.201M24 5.195a2.327 2.327 0 0 1-2.327 2.327 2.327 2.327 0 0 1-2.327-2.327 2.327 2.327 0 0 1 2.327-2.327A2.327 2.327 0 0 1 24 5.195zm-2.612 5.116a2.49 2.49 0 0 1-2.49 2.49 2.49 2.49 0 0 1-2.488-2.49 2.49 2.49 0 0 1 2.489-2.49 2.49 2.49 0 0 1 2.49 2.49"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/weasyl.svg�����������������������������������0000664�0000000�0000000�00000001652�14753064456�0025133�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.23 4.156a8.5 8.5 0 0 0-5.871-1.857c-3.766.243-6.324 2.662-7.364 6.481-1.28-1.224-1.892-3.238-2.093-5.54-1.02.215-1.658.702-2.233 1.237.445 2.316 1.802 4.015 3.264 5.158-2.559.317-5.99 2.442-6.771 4.904-.507 1.598.258 3.415 1.283 4.52 1.237 1.333 3.75 1.998 6.355 1.754.037.362-.104.536-.058.907 4.067-.306 7.174-1.646 10.04-3.894 1.119-.877 2.659-2.037 3.756-3.227 1.101-1.192 2.296-2.578 2.443-4.52.21-2.79-1.236-4.694-2.751-5.923m-1.434 10.938c-1.035 1.001-2.241 1.797-3.351 2.675-1.249-1.987-2.583-3.984-3.887-5.917.017 2.63.006 5.432.04 7.957-.78.381-1.789.558-2.744.763-1.935-2.917-3.968-5.99-5.961-8.908.693-.447 1.627-.785 2.478-1.075 1.419 2.05 2.729 4.253 4.171 6.333.019-3.113-.009-6.673-.061-9.919a14 14 0 0 0 1.527-.434c1.813 2.721 3.553 5.628 5.464 8.359a547 547 0 0 1-.018-9.768c.858-.282 1.803-.535 2.669-.809.02 3.499-.338 7.128-.327 10.743"/></svg>��������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/web3dotjs.svg��������������������������������0000664�0000000�0000000�00000002466�14753064456�0025537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.889.775S0 1.29 0 2.315V7.44s0 3.079 2.666 4.618c.817.472 1.384.508 1.777.334.394.628.96 1.246 1.778 1.718 2.666 1.54 2.668-1.539 2.668-1.539V7.447c0-1.027.888-1.539.888-1.539l3.557-2.054s.89-.514 1.777 0c.89.513 0 1.027 0 1.027L11.56 6.934l1.775 1.025 3.559-2.055c.052-.03.912-.495 1.773.002.89.514 0 1.026 0 1.026l-3.555 2.054s-.888.514-.888 1.54v5.124s0 1.028-.889.514c-.89-.513-.89-1.539-.89-1.539l-1.778-1.027s.001 3.08 2.668 4.619 2.666-1.54 2.666-1.54v-5.126c0-1.026.889-1.537.889-1.537l4.445-2.569s1.776-1.025-.889-2.564c-.819-.474-1.552-.704-2.177-.797-.164-.357-.565-.776-1.377-1.24-2.667-1.523-5.332-.016-5.332-.016L8.004 4.881s-.89.514-.89 1.539v5.125s0 1.027-.89.514c-.889-.514-.89-1.54-.89-1.54V5.396q0-.096.01-.188c.097-.902.879-1.353.879-1.353L4.445 2.828l-.004.002c-.052.03-.884.544-.884 1.537v5.125s-.002 1.027-.891.514c-.89-.514-.889-1.54-.889-1.54V3.343c0-1.026.889-1.54.889-1.54L.889.776zm9.78 8.735v2.053l1.778 1.025v-2.053zm8.442 2.183c-.666.005-1.332.389-1.332 1.909 0 3.039 2.666 4.619 2.666 4.619l.889.513s.89.514.89 1.54-.89.513-.89.513l-3.555-2.053v2.053l3.555 2.053S24 24.379 24 21.3c0-3.077-1.777-4.105-1.777-4.105l-1.778-1.025s-.888-.514-.888-1.54c0-1.028.888-.515.888-.515L24 16.168v-2.053l-3.555-2.05s-.667-.376-1.334-.372"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/webassembly.svg������������������������������0000664�0000000�0000000�00000000614�14753064456�0026141�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.745 0v.129a2.752 2.752 0 1 1-5.504 0V0H0v24h24V0zm-3.291 21.431-1.169-5.783h-.02l-1.264 5.783H7.39l-1.824-8.497h1.59l1.088 5.783h.02l1.311-5.783h1.487l1.177 5.854h.02l1.242-5.854h1.561l-2.027 8.497zm8.755 0-.542-1.891h-2.861l-.417 1.891h-1.59l2.056-8.497h2.509l2.5 8.497zm-2.397-6.403-.694 3.118h2.159l-.796-3.118z"/></svg>��������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/webauthn.svg���������������������������������0000664�0000000�0000000�00000005676�14753064456�0025456�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.287 3.641a8.41 8.41 0 0 0-8.05 7.593h.55a7.8 7.8 0 0 1 2.24-4.713 6 6 0 0 0 .923.695c-.608 1.177-.98 2.556-1.082 4.018h.135c.105-1.467.485-2.819 1.065-3.947.745.434 1.623.754 2.577.94a28 28 0 0 0-.25 3.763h-.847v.135h.847c.003 1.334.09 2.617.25 3.764-.954.185-1.832.506-2.577.94a10 10 0 0 1-.978-3.137h-.137c.164 1.16.502 2.25.997 3.208a6 6 0 0 0-.924.695 7.8 7.8 0 0 1-2.255-4.875h-.55a8.407 8.407 0 0 0 16.78-.675 8.4 8.4 0 0 0-.69-3.333 8.41 8.41 0 0 0-8.025-5.072zm.315.546q.233 0 .464.014c.365.34.708 1.07.983 2.114a17 17 0 0 1 .357 1.79 10 10 0 0 1-1.804.16 10 10 0 0 1-1.805-.16 17 17 0 0 1 .357-1.79c.275-1.045.618-1.775.983-2.114a8 8 0 0 1 .465-.014m-.665.028c-.345.392-.658 1.093-.913 2.065a17 17 0 0 0-.36 1.8c-.939-.183-1.802-.498-2.533-.926.686-1.283 1.635-2.264 2.73-2.775a8 8 0 0 1 1.076-.164m1.33 0a8 8 0 0 1 1.084.168c1.092.513 2.037 1.492 2.721 2.771-.73.428-1.594.743-2.533.927a17 17 0 0 0-.36-1.8c-.255-.972-.568-1.673-.912-2.066m-2.972.314c-.655.407-1.257.989-1.776 1.73a8 8 0 0 0-.506.825 5.7 5.7 0 0 1-.89-.67 7.8 7.8 0 0 1 3.172-1.885m4.624.006a7.86 7.86 0 0 1 3.164 1.877 5.7 5.7 0 0 1-.893.672 8 8 0 0 0-.506-.825c-.516-.738-1.115-1.318-1.765-1.724m3.26 1.985a7.9 7.9 0 0 1 1.638 2.419 7.8 7.8 0 0 1 .642 3.051h-2.095c-.01-1.74-.398-3.396-1.11-4.774a6 6 0 0 0 .925-.696m-1.044.767c.68 1.32 1.084 2.945 1.094 4.703h-3.42a28 28 0 0 0-.25-3.763c.953-.186 1.832-.506 2.576-.94m-6.357.965a10.3 10.3 0 0 0 1.824.16 10.3 10.3 0 0 0 1.823-.16c.16 1.138.246 2.413.25 3.738h-1.179a1 1 0 0 1-.093.135h1.27a28 28 0 0 1-.248 3.739 10.4 10.4 0 0 0-3.647 0 28 28 0 0 1-.248-3.739h1.294a1 1 0 0 1-.09-.135H13.53c.003-1.325.088-2.6.248-3.738M2.558 9.381a2.585 2.585 0 0 0-2.547 2.35c-.142 1.541 1.064 2.842 2.566 2.842 1.26 0 2.312-.917 2.533-2.124h4.44v.972h.946v-.972h.837v1.431h.945v-2.376H5.11a2.586 2.586 0 0 0-2.552-2.123m-.058.965a1.64 1.64 0 0 1 1.707 1.637 1.64 1.64 0 0 1-1.639 1.638 1.639 1.639 0 0 1-.068-3.275m13.09.388a.75.75 0 0 0-.345 1.404l-.383 1.958h1.5l-.383-1.958a.75.75 0 0 0 .384-.654.75.75 0 0 0-.773-.75m2.218 1.391h3.421c-.01 1.758-.415 3.384-1.094 4.704-.744-.434-1.623-.755-2.577-.94a28 28 0 0 0 .25-3.764m3.556 0h2.095a7.8 7.8 0 0 1-2.28 5.47 6 6 0 0 0-.925-.696c.712-1.378 1.1-3.033 1.11-4.774m-5.52 3.703a10 10 0 0 1 1.562.156 17 17 0 0 1-.357 1.791c-.275 1.045-.618 1.774-.982 2.114a8 8 0 0 1-.93 0c-.365-.34-.708-1.07-.983-2.114a17 17 0 0 1-.357-1.79 10.3 10.3 0 0 1 2.048-.157zm1.695.181c.94.184 1.803.5 2.533.926-.686 1.284-1.635 2.265-2.73 2.776a8 8 0 0 1-1.075.164c.344-.393.657-1.094.913-2.065a17 17 0 0 0 .36-1.8zm-3.874 0a17 17 0 0 0 .36 1.8c.254.973.567 1.674.912 2.066a8 8 0 0 1-1.075-.164c-1.096-.511-2.045-1.492-2.73-2.775.73-.428 1.593-.743 2.533-.927m-2.652.997a8 8 0 0 0 .506.825c.52.741 1.121 1.323 1.776 1.73a7.8 7.8 0 0 1-3.174-1.884 5.7 5.7 0 0 1 .892-.67zm9.178 0a5.7 5.7 0 0 1 .891.67 7.8 7.8 0 0 1-3.173 1.885c.654-.407 1.256-.989 1.775-1.73a8 8 0 0 0 .507-.825"/></svg>������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/webcomponentsdotorg.svg����������������������0000664�0000000�0000000�00000000644�14753064456�0027731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.731 2.225-.01.016H5.618L0 11.979l5.618 9.736h12.8l.04.06 2.134-3.735.518-.893h-.008l.008-.014-.626-.75h.895l.006-.01.008.01L24 11.994l-2.607-4.39-.003.005-.011-.02h-.945l.63-.763-2.606-4.57-.006.01-.024-.04zM9.107 6.824h6.19l-.53.764h-.023l2.398 4.015h.875l-.277.328.357.435h-.956l-2.398 4.015h.027l.523.764H9.074l-2.99-5.168 3.022-5.155z"/></svg>��������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/webdotde.svg���������������������������������0000664�0000000�0000000�00000006574�14753064456�0025434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 0C1.35 0 0 1.35 0 3v18c0 1.65 1.35 3 3 3h18c1.65 0 3-1.35 3-3V3c0-1.65-1.35-3-3-3Zm9.732 2.19c.047 0 .086.046.118.11.063.126.097.333.108.466.064.82.318-.013.434.082.088.091.395.593.35.903-.081.545-1.477.504-1.653.489-.15-.014-.574-.073-.716-.328-.136-.246.133-.78.333-.985.01-.01.157-.159.284-.207.016-.006.023-.01.043-.015q.015-.006.01.026c-.029.144-.035.64.177.626.195-.012.23-.764.308-.959a.5.5 0 0 1 .127-.181.2.2 0 0 1 .077-.027m-.86 2.411c2.35-.02 4.401.205 5.725.418 0 0 .803.102.971.393.094.159.094.38.038.524-.039.1-.185.015-.154.206.315-.061.923.038 1.09.341.219.399-.096.366-.256.552-.111.13-.014.384-.229.486-.236.112-.797-.132-1.063-.16a25 25 0 0 1-.894-.107c-1.133-.16-2.373-.112-3.526-.068-1.095.042-2.21.06-3.296.24-.978.163-2.085.22-3.052.557-.356.127-1.574.648-1.537-.135.015-.329.426-.371.682-.447.184-.054.392-.054.472-.151.143-.172-.612-.003-.796.029-.186.033-.442.162-.635.09-.509-.188-.26-.64.108-.765.3-.1.526-.183.905-.246 4.534-.538 6.462-.54 11.511-.331-.051-.396-2.216-.468-2.61-.552-.637-.151-5.585-.224-7.072.154-.301.077-1.352.247-1.948.37-.31.064-.435-.238-.402-.496.034-.182.03-.184.307-.297.627-.253 1.7-.33 2.312-.401a31 31 0 0 1 3.35-.204Zm5.419 3.408c.241.022.292.214.423.41.208.314.258.48.294.859.046.404.059 2 .043 2.618.003.346.122 1.34.008 1.88.798.097 1.512.213 2.132.348 0-.004 1.236.238 1.499.597a.53.53 0 0 1 .119.27.7.7 0 0 1 .003.156.8.8 0 0 1-.06.184.33.33 0 0 1-.166.136.6.6 0 0 1-.122.037c-.022.004-.149.03-.269.002-.048-.012-.1-.02-.156-.037a2 2 0 0 1-.356-.154c-.783-.449-2.047-.62-2.865-.782-1.884-.356-10.438-.717-13.427.475-.603.238-.943.388-1.56.326-.027-.003-.283-.024-.325-.038a.45.45 0 0 1-.306-.325 1 1 0 0 1-.017-.168.3.3 0 0 1 .043-.146c.08-.124.099-.174.438-.327.553-.248 1.366-.283 2.285-.426.378-.058.713-.107 1.045-.151-.008-.017-.005-.035-.01-.05-.062-.335-.097-.887-.074-1.129.078-.874.264-2.222.391-3.08.037-.246-.018-.465.195-.635.335-.27.498-.149.69.03.337.31.434.332.37.884-.266 2.29-.404 3.51-.308 3.806l.008.027a46 46 0 0 1 1.926-.141 56 56 0 0 1 1.046-.035c-.247-.134-.483-.345-.563-.557a3.7 3.7 0 0 1-.199-1.164c-.003-.425.059-2.194.078-2.756.005-.148-.008-.415.128-.522.117-.092.554-.147.643-.167.825-.184.572.655.506 1.131-.06.43-.11 2.074-.092 2.606q.015.373.08.74c.024.13.106.404.165.522.022.044.053.102.05.147.195-.003 2.52.046 2.607.049-.107-.26-.047-.597-.067-.866-.016-1.285-.3-4.211-.073-4.416.23-.236.48-.173.68.033.162.167.349.293.415.511.097.28.018 2.596.121 3.412.076.51.233.978-.22 1.33l-.037.03q1.422.063 2.643.179c.005-.16.019-.35.016-.498.034-.303-.118-3.786-.174-3.897l-.135-.536c-.053-.264.062-.7.375-.73a.6.6 0 0 1 .116-.002M3.124 17.562h.794l.405 2.722.595-2.722h.773l.585 2.732.45-2.732h.744l-.734 3.571h-.92l-.54-2.416-.533 2.416h-.92Zm4.823 0h2.233v.6H8.701v.883h1.304v.6H8.701v.889h1.529v.6H7.947Zm2.869 0h1.194c.794 0 1.179.325 1.179.924 0 .595-.48.799-.48.799s.674.085.674.85c0 .6-.399.998-1.238.998h-1.33zm4.473 0h.964c1.228 0 1.782.66 1.782 1.753 0 1.119-.629 1.818-1.857 1.818h-.89zm3.313 0h2.232v.6h-1.478v.883h1.304v.6h-1.304v.889h1.528v.6h-2.282zm-7.032.56v.944h.325c.37 0 .55-.16.55-.48 0-.315-.18-.465-.625-.465zm4.473.04v2.372h.21c.694 0 1.019-.38 1.019-1.169 0-.793-.335-1.203-1.024-1.203zM11.57 19.61v.965h.415c.445 0 .639-.175.639-.495s-.21-.47-.595-.47zm2.692.82c.22 0 .38.14.38.37a.37.37 0 0 1-.39.383c-.254 0-.384-.164-.385-.374 0-.235.165-.379.395-.379"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/webdriverio.svg������������������������������0000664�0000000�0000000�00000000535�14753064456�0026147�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.875 0A1.87 1.87 0 0 0 0 1.875v20.25A1.87 1.87 0 0 0 1.875 24h20.25A1.87 1.87 0 0 0 24 22.125V1.875A1.87 1.87 0 0 0 22.125 0Zm.375 6H3v12h-.75Zm7.085 0h.79L5.29 18h-.791Zm6.79 0a6 6 0 1 1 0 12 6 6 0 0 1 0-12m0 .75a5.25 5.25 0 1 0 .001 10.501 5.25 5.25 0 0 0-.001-10.501"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/webex.svg������������������������������������0000664�0000000�0000000�00000003574�14753064456�0024746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.78 7.376c.512 1.181.032 2.644-1.11 3.106-2.157.888-3-1.295-3-1.295-.236-.55-.727-1.496-1.335-1.496-.204 0-.503 0-.94.844-.229.443-.434 1.185-.616 1.84l-.09.32c-.373-1.587-.821-3.454-1.536-4.816q-.293-.57-.673-1.08a5.1 5.1 0 0 1 1.743-1.337 4.9 4.9 0 0 1 2.112-.463c1.045 0 2.765.338 4.227 2.227q.251.309.448.654.417.663.726 1.383l.043.113zM.02 8.4C-.15 7.105.8 5.845 1.953 5.755c1.794-.157 2.36 1.385 2.455 1.89l.022.137c.07.44.29 1.838.48 2.744.078.4.244 1.013.353 1.416l.006.022.026.092q.166.601.362 1.193.278.822.641 1.61c.47.955.93 1.45 1.367 1.45.203 0 .512 0 .96-.878.283-.59.512-1.208.684-1.845.373 1.598.811 3.128 1.495 4.456q.308.61.715 1.16a5.1 5.1 0 0 1-1.742 1.338 4.9 4.9 0 0 1-2.112.461c-1.548 0-3.727-.698-5.339-4.005a22 22 0 0 1-1.078-2.824 27 27 0 0 1-.693-2.656 49 49 0 0 1-.215-1.114A32 32 0 0 1 .02 8.4m22.047-2.645-.202-.022h-.052q.333.588.597 1.215l.053.113a3.3 3.3 0 0 1 .068 2.391 3.08 3.08 0 0 1-1.552 1.749 2.9 2.9 0 0 1-1.228.28 3.1 3.1 0 0 1-.854-.135c-.299 1.182-.768 2.634-1.195 3.511s-.93 1.451-1.378 1.451c-.192 0-.501 0-.95-.877a10.8 10.8 0 0 1-.683-1.845 39 39 0 0 1-.396-1.575 13 13 0 0 1-.136-.598l-.002-.01c-.406-1.778-.865-3.645-1.655-5.142A8.3 8.3 0 0 0 11.52 4.8a5.1 5.1 0 0 0-1.748-1.34A4.9 4.9 0 0 0 7.654 3C6.618 3 4.9 3.338 3.437 5.228c.466.223.867.562 1.164.984.305.433.499.933.565 1.458.076.563.256 1.654.47 2.688l.001.007c.021.11.042.221.073.342.126-.34.25-.642.38-.955l.112-.271.128-.293c.235-.55.726-1.496 1.324-1.496.213 0 .513 0 .95.844.296.606.532 1.239.706 1.89.138.507.276 1.047.394 1.587.04.148.07.296.101.444l.006.028c.427 1.879.875 3.69 1.644 5.187q.238.477.545.911.225.323.48.62c1.27 1.45 2.733 1.8 3.843 1.8 1.548 0 3.738-.698 5.35-4.006.822-1.7 1.515-4.208 1.772-5.48.256-1.27.449-2.419.534-3.115a2.42 2.42 0 0 0-.433-1.743 2.25 2.25 0 0 0-.653-.607 2.1 2.1 0 0 0-.826-.296z"/></svg>������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/webflow.svg����������������������������������0000664�0000000�0000000�00000000402�14753064456�0025264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m24 4.515-7.658 14.97H9.149l3.205-6.204h-.144C9.566 16.713 5.621 18.973 0 19.485v-6.118s3.596-.213 5.71-2.435H0V4.515h6.417v5.278l.144-.001 2.622-5.277h4.854v5.244h.144l2.72-5.244z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/webgl.svg������������������������������������0000664�0000000�0000000�00000004207�14753064456�0024726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.489 10.164c-.565.548-.885 1.172-.885 1.835 0 2.167 3.415 3.921 7.631 3.921 2.339 0 4.437-.484 5.837-1.335-1.533 1.426-4.265 2.43-7.385 2.43C3.89 17.015 0 14.769 0 11.999s3.89-5.014 8.689-5.014c3.131.002 5.872 1.009 7.398 2.444-1.399-.856-3.504-1.351-5.852-1.351-2.506 0-4.73.621-6.121 1.579l.785 3.395.971-3.481h.737l.971 3.481.805-3.481h.805L7.953 14.11h-.717l-.991-3.566L5.24 14.11h-.714zm19.839 3.48h-.162v.424h-.142v-.424h-.164v-.122h.468zm.064-.122h.209l.095.364.096-.364H24v.546h-.133v-.415h-.002l-.113.415h-.109l-.115-.415h-.003v.415h-.133zm-5.699.515q-.299.126-.601.126-.48 0-.863-.166-.382-.166-.645-.459a2 2 0 0 1-.404-.688 2.5 2.5 0 0 1-.14-.851q0-.468.14-.869a2 2 0 0 1 .402-.699q.263-.3.645-.468c.382-.168.541-.171.863-.171q.322.001.621.098.3.097.543.284c.243.187.295.279.399.463s.169.395.193.632h-.874q-.082-.35-.315-.525a.9.9 0 0 0-.567-.176q-.31 0-.526.12c-.216.12-.262.187-.35.322a1.4 1.4 0 0 0-.196.459 2.4 2.4 0 0 0-.062.532q0 .263.062.512.061.25.196.448.133.2.35.32c.217.12.319.119.526.119q.455 0 .705-.23c.25-.23.262-.375.29-.668h-.922v-.689h1.75v2.255h-.584l-.093-.472q-.244.315-.543.441m2.708-4.14v3.395h2.033v.774h-2.949V9.897zm-9.204 1.585q.162.227.251.557c.053.21.08.452.08.716v.047H9.372c.011.41.164.876.807.876.45 0 .703-.344.719-.537l.002-.042h.592l-.007.051a1.2 1.2 0 0 1-.135.377 1.6 1.6 0 0 1-.166.239 1.3 1.3 0 0 1-.248.218c-.071.046-.158.1-.287.139a1.8 1.8 0 0 1-.543.069c-.415 0-.763-.151-1.007-.434a1.4 1.4 0 0 1-.266-.482 2 2 0 0 1-.091-.601c0-.485.12-.896.348-1.186q.188-.238.457-.362a1.6 1.6 0 0 1 .654-.131q.328 0 .581.127.248.123.415.359m-1.064.047c-.402 0-.741.357-.765.785h1.543c-.046-.528-.302-.785-.778-.785m4.373.388c.058.182.086.381.084.588 0 .19-.022.385-.064.563q-.073.31-.22.545-.167.268-.419.415a1.3 1.3 0 0 1-.654.164.97.97 0 0 1-.585-.173.9.9 0 0 1-.198-.193v.282h-.561V9.983h.59v1.393q.14-.168.324-.262.22-.117.497-.12.3 0 .547.118.238.113.408.324.164.204.251.481m-.53.67c0-.2-.013-.459-.111-.672-.12-.26-.335-.384-.654-.384-.3 0-.506.135-.628.417-.084.195-.126.452-.126.785 0 .696.412.942.765.942a.64.64 0 0 0 .565-.303c.125-.191.189-.462.189-.785"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/webgpu.svg�����������������������������������0000664�0000000�0000000�00000000355�14753064456�0025117�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m0 4.784 8.652 14.432 8.652-14.432zm22.032.145L20.07 8.202H24zm-4.46 0-4.192 6.993h8.384zm2.498 3.575 1.962 3.273L24 8.504zm-6.69 3.72 4.192 6.992 4.192-6.992z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/weblate.svg����������������������������������0000664�0000000�0000000�00000001774�14753064456�0025257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.662 3.809c-1.875 1.19-2.81 3.515-2.83 5.795-.014 2.628.666 5.258 1.988 7.305.936 1.46 2.238 2.715 3.836 3.412a6.94 6.94 0 0 0 5.647-.07c1.997-.927 3.523-2.73 4.463-4.785 1.606-3.518 1.643-7.724.12-11.295-1.146.458-2.166-.271-2.166-.271s.003 1.122-1.083 1.685c1.115 2.612 1.088 5.717-.03 8.263-.538 1.225-1.358 2.365-2.498 3.01-.917.52-2.04.625-3.052.184-1.342-.585-2.293-1.864-2.89-3.254-.466-1.067-.782-2.447-.802-3.878-.037-1.724.728-3.193 1.635-3.218.622-.024 1.427.918 1.598 2.435.158 1.543-.177 3.72-1.174 5.49.677 1.085 1.77 1.98 2.951 1.974 1.386-2.338 1.827-4.911 1.793-6.987-.02-2.28-.955-4.603-2.83-5.795-1.437-.907-3.173-.948-4.676 0M3.278 3.9s-1.018.73-2.163.27c-1.524 3.573-1.488 7.778.12 11.296.94 2.056 2.465 3.858 4.462 4.785a6.95 6.95 0 0 0 5.523.124 9 9 0 0 1-1.75-1.455 11 11 0 0 1-1.267-1.628c-.768-.08-1.498-.482-2.003-.913-1.447-1.213-2.453-3.478-2.632-5.9-.12-1.635.14-3.354.795-4.894C3.276 5.022 3.278 3.9 3.278 3.9"/></svg>����mkdocs-material-9.6.4/material/templates/.icons/simple/webmin.svg�����������������������������������0000664�0000000�0000000�00000004520�14753064456�0025105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.3 0C7.75.006 6.64 1.158 6.799 3.006c.101 1.228.208 2.474.312 3.73-1.08.454-2.218.933-3.428 1.445-1.255.536-2.123 1.61-2.457 2.885-.34 1.301-.135 2.808.723 4.143.764 1.196 1.856 2.006 3.255 2.446-.08 1.09.03 2.079.34 2.954a5.5 5.5 0 0 0 .533 1.098c.798 1.268 1.978 2.029 3.183 2.235a3.78 3.78 0 0 0 3.294-.999c.98-.945 1.907-1.837 2.79-2.683 1.047.63 2.056 1.235 3.037 1.827 1.605.957 3.244-.084 3.631-2.115.162-.847.09-1.793-.211-2.863.57-.35.926-.9 1.066-1.67.306-1.634-.502-3.782-1.826-4.88a945 945 0 0 0-2.166-1.785c-.003-.019-.37-2.106-.551-3.11-.306-1.724-1.799-3.54-3.374-4.04-.722-.23-1.394-.159-2.036.224-.778-.824-1.592-1.38-2.479-1.663A3.7 3.7 0 0 0 9.301 0m1.019 2.48a1.3 1.3 0 0 1 .381.047c.466.125.912.49 1.155.932.198.368.29.67.37 1.298l.403 3.143q.021.147.039.293c.115.889.644 1.528 1.33 1.62.659.087 1.01-.43.89-1.262l-.039-.276-.44-3.006c-.064-.425-.085-.75-.05-.96.05-.465.421-.707.895-.58.478.132.926.573 1.133 1.1.107.265.155.471.237.963.157.94.312 1.89.472 2.867.118.638.177 1.202 1.044 1.805.73.574 1.442 1.14 2.142 1.686.42.331.573.485.74.718.269.38.381.933.287 1.358-.087.392-.341.628-.659.59-.26-.03-.479-.137-.924-.465-.733-.55-1.483-1.113-2.259-1.684-.068-.048-.144-.1-.213-.152-.646-.476-1.21-.384-1.424.266-.223.666.09 1.448.754 1.913.072.05.153.107.222.158.81.567 1.606 1.12 2.38 1.66q.494.345.735.637c.358.41.528 1.082.405 1.643-.133.593-.514.902-.979.796-.234-.05-.41-.145-.831-.418q-1.225-.797-2.523-1.637a5 5 0 0 1-.237-.158c-.273-.168-.537-.243-.768-.234h-.002c-.26-.017-.531.077-.792.286-.073.06-.146.117-.214.181-.808.665-1.646 1.374-2.534 2.121-.48.4-.696.558-1.017.67-.646.247-1.359-.03-1.805-.74-.421-.691-.403-1.588.033-2.153.185-.252.498-.54.93-.845.94-.672 1.83-1.306 2.676-1.913l.228-.158c.641-.455.764-1.26.312-2.012-.441-.749-1.17-.976-1.861-.558a5 5 0 0 0-.234.145q-1.34.824-2.824 1.74c-.638.384-.976.508-1.452.53-.59.03-1.205-.332-1.564-.903-.407-.637-.421-1.428-.03-1.918.22-.288.455-.463 1.13-.81A275 275 0 0 1 8.961 9.28c.081-.05.163-.083.246-.125a1 1 0 0 0 .16-.097c.425-.188.632-.657.566-1.293-.012-.107-.02-.21-.037-.311a376 376 0 0 0-.351-3.317c-.07-.66-.063-.892.021-1.154.1-.312.39-.492.752-.502M7.11 6.736l.002.025-.003-.004v-.019zm.003.041.008.09-.01-.082zm.012.136.002.026h-.002v-.016q.002-.004 0-.008zm.004.042v.015-.003q-.002-.004-.003-.008z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/webmoney.svg���������������������������������0000664�0000000�0000000�00000001561�14753064456�0025453�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.943.183c1.872 0 3.654.429 5.252 1.196.251.113.503.248.753.384l-1.096.97-1.643-1.692-2.832 2.483L10.71 1.74 5.503 6.368l3.334 3.635-1.302 1.128 3.29 3.635-1.302 1.128 4.704 5.17 2.785-2.529 2.421 2.71c-.48.361-1.005.723-1.575 1.039a12.04 12.04 0 0 1-5.892 1.534C5.366 23.818 0 18.513 0 11.99-.023 5.51 5.344.182 11.943.182M9.75 11.266l2.855-2.528 2.558 2.821-2.855 2.529zm2.033 4.876 2.832-2.55 2.58 2.821-2.855 2.529zM7.72 6.46l2.854-2.529 2.557 2.822-2.854 2.528zm5.228-1.355 2.124-1.896 1.919 2.099-2.124 1.919zm3.792 8.691 2.123-1.896 1.918 2.121-2.124 1.898zm1.872 4.267 2.124-1.897 1.917 2.1-2.123 1.918zm.868-9.753 1.415-1.264 1.279 1.4-1.416 1.264zm-1.827-4.176 1.416-1.286 1.28 1.422-1.418 1.264zm3.63 8.353 1.416-1.264 1.302 1.4-1.438 1.264zm-6.37-3.138 2.124-1.896 1.918 2.099-2.124 1.897Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/webpack.svg����������������������������������0000664�0000000�0000000�00000000715�14753064456�0025242�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.199 18.498 12.429 24v-4.285l6.087-3.334zm.668-.603V6.388l-3.575 2.055v7.396zm-21.066.603L11.571 24v-4.285L5.484 16.38zm-.668-.603V6.388l3.575 2.055v7.396zm.418-12.251L11.571 0v4.143L5.152 7.66l-.049.028zm20.898 0L12.429 0v4.143l6.419 3.516.049.028zM11.57 18.74l-6.005-3.287V8.938l6.005 3.453zm.858 0 6.005-3.287V8.938l-6.005 3.453zM5.972 8.185l6.03-3.302 6.028 3.302-6.029 3.466z"/></svg>���������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/webrtc.svg�����������������������������������0000664�0000000�0000000�00000000716�14753064456�0025115�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .36A5.4 5.4 0 0 0 6.62 5.3a5.4 5.4 0 0 0-1.22-.14 5.4 5.4 0 0 0-2.143 10.357 5.4 5.4 0 0 0-.737 2.723 5.4 5.4 0 0 0 9.54 3.466 5.4 5.4 0 0 0 8.833-6.137 5.4 5.4 0 0 0-3.505-10.152A5.4 5.4 0 0 0 12 .36M6.283 7.228h10.592c.746 0 1.352.605 1.352 1.349v7.646c0 .744-.606 1.348-1.352 1.348h-3.608l-7.24 3.55 1.1-3.55h-.844a1.35 1.35 0 0 1-1.352-1.348V8.577c0-.744.606-1.349 1.352-1.349"/></svg>��������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/webstorm.svg���������������������������������0000664�0000000�0000000�00000001155�14753064456�0025467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0v24h24V0zm17.889 2.889c1.444 0 2.667.444 3.667 1.278l-1.111 1.667c-.889-.611-1.722-1-2.556-1s-1.278.389-1.278.889v.056c0 .667.444.889 2.111 1.333 2 .556 3.111 1.278 3.111 3v.056c0 2-1.5 3.111-3.611 3.111-1.5-.056-3-.611-4.167-1.667l1.278-1.556c.889.722 1.833 1.222 2.944 1.222.889 0 1.389-.333 1.389-.944v-.056c0-.556-.333-.833-2-1.278-2-.5-3.222-1.056-3.222-3.056v-.056c0-1.833 1.444-3 3.444-3zm-16.111.222h2.278l1.5 5.778 1.722-5.778h1.667l1.667 5.778 1.5-5.778h2.333l-2.833 9.944H9.723L8.112 7.277l-1.667 5.778H4.612zm.5 16.389h9V21h-9z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/webtoon.svg����������������������������������0000664�0000000�0000000�00000005040�14753064456�0025277�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.023 15.26c.695 0 1.014-.404 1.014-1.051 0-.551-.308-1.01-.984-1.01-.58 0-.912.404-.912 1.016 0 .543.32 1.045.882 1.045m-4.888.187c.764 0 1.113-.443 1.113-1.154 0-.604-.338-1.109-1.082-1.109-.637 0-1.002.445-1.002 1.115 0 .597.352 1.148.971 1.148M24 10.201l-3.15.029.83-9.686L1.958 3.605l1.686 6.248H0l3.734 11.488 8.713-1.283v3.396l10.113-4.641zm-9.104-3.594c0-.049.039-.092.088-.094l1.879-.125.446-.029c.524-.035 1.634.063 1.634 1.236 0 .83-.619 1.184-.619 1.184s.75.189.707 1.092c0 1.602-1.943 1.389-1.943 1.389l-.225-.006-1.908-.053a.09.09 0 0 1-.086-.09zm-3.675.243c0-.047.039-.09.088-.092l3.064-.203a.08.08 0 0 1 .087.08v.943c0 .049-.039.09-.087.092l-1.9.08a.094.094 0 0 0-.088.09l-.005.394a.083.083 0 0 0 .086.084l1.646-.066a.08.08 0 0 1 .086.084l-.02 1.012a.09.09 0 0 1-.089.086h-1.63a.09.09 0 0 0-.088.088v.416c0 .047.039.088.088.088l1.87.033a.09.09 0 0 1 .087.09v.951a.084.084 0 0 1-.087.084l-3.063-.123a.09.09 0 0 1-.087-.09zm-6.01.312.975-.064a.1.1 0 0 1 .105.08l.458 2.205c.01.047.027.047.039 0l.576-2.281a.13.13 0 0 1 .108-.09l.921-.061a.11.11 0 0 1 .109.078l.564 2.342c.012.047.029.047.041 0l.6-2.424a.13.13 0 0 1 .108-.092l.996-.064c.048-.004.077.031.065.078l-1.09 4.104a.11.11 0 0 1-.109.082l-1.121-.031a.12.12 0 0 1-.109-.086l-.535-1.965c-.012-.047-.033-.047-.045 0l-.522 1.934a.12.12 0 0 1-.11.082l-1.109-.031a.12.12 0 0 1-.108-.088l-.873-3.618c-.011-.047.019-.088.066-.09m-.288 9.623v-3.561a.09.09 0 0 0-.087-.088l-1.252-.029a.095.095 0 0 1-.091-.09l-.046-1.125a.08.08 0 0 1 .083-.086l4.047.096c.048 0 .087.041.085.088l-.022 1.088a.093.093 0 0 1-.089.088l-1.139.004a.09.09 0 0 0-.087.088v3.447c0 .049-.039.09-.087.092l-1.227.07a.08.08 0 0 1-.088-.082m2.834-2.379c0-1.918 1.321-2.482 2.416-2.482s2.339.73 2.339 2.316c0 1.9-1.383 2.482-2.416 2.482-1.033.001-2.339-.724-2.339-2.316m5.139-.115c0-1.746 1.166-2.238 2.162-2.238s2.129.664 2.129 2.107c0 1.729-1.259 2.26-2.198 2.26s-2.093-.68-2.093-2.129m7.259 1.711a.18.18 0 0 1-.139-.064l-1.187-1.631c-.029-.039-.053-.031-.053.018v1.67c0 .047-.039.09-.086.092l-1.052.061a.08.08 0 0 1-.087-.082l.039-3.842c0-.047.039-.086.088-.084l.881.02a.2.2 0 0 1 .137.074l1.293 1.902c.027.041.051.033.051-.014l.032-1.846a.087.087 0 0 1 .089-.086l.963.029c.047 0 .085.041.083.09l-.138 3.555a.1.1 0 0 1-.091.092zM16.258 8.23l.724-.014s.47.018.47-.434c0-.357-.411-.33-.411-.33l-.782.008a.09.09 0 0 0-.088.088v.598a.083.083 0 0 0 .087.084m-.029 1.961h.99c.024 0 .35-.051.35-.404 0-.293-.229-.402-.441-.398l-.898.029a.09.09 0 0 0-.087.09v.596a.086.086 0 0 0 .086.087"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/webtrees.svg���������������������������������0000664�0000000�0000000�00000001214�14753064456�0025441�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.957 4.34q.647 0 1.269.243.634.243 1.093.7.459.448.662 1l1.592 4.59 1.31-3.82Q9.84 4.26 11.92 4.26q.459 0 1.106.203.729.23 1.228.809.5.58.905 1.782l1.296 3.82 1.606-4.59q.189-.54.649-.998.472-.459 1.079-.703.608-.243 1.283-.243.62.04 1.241.338.783.378 1.228 1.106.459.73.459 1.66 0 .81-.364 1.54l-4.225 8.652q-1.025 2.106-3.037 2.106-.905-.04-1.634-.567-.728-.54-1.133-1.498L12 13.72l-1.606 3.955q-.243.634-.647 1.093-.406.447-.945.702-.54.257-1.134.27-1.013 0-1.755-.486-.742-.5-1.297-1.62L.392 8.983Q0 8.16 0 7.443q0-.89.46-1.632.459-.756 1.254-1.134.622-.297 1.243-.337"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wechat.svg�����������������������������������0000664�0000000�0000000�00000002377�14753064456�0025107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.691 2.188C3.891 2.188 0 5.476 0 9.53c0 2.212 1.17 4.203 3.002 5.55a.59.59 0 0 1 .213.665l-.39 1.48c-.019.07-.048.141-.048.213 0 .163.13.295.29.295a.33.33 0 0 0 .167-.054l1.903-1.114a.86.86 0 0 1 .717-.098 10.2 10.2 0 0 0 2.837.403c.276 0 .543-.027.811-.05-.857-2.578.157-4.972 1.932-6.446 1.703-1.415 3.882-1.98 5.853-1.838-.576-3.583-4.196-6.348-8.596-6.348M5.785 5.991c.642 0 1.162.529 1.162 1.18a1.17 1.17 0 0 1-1.162 1.178A1.17 1.17 0 0 1 4.623 7.17c0-.651.52-1.18 1.162-1.18zm5.813 0c.642 0 1.162.529 1.162 1.18a1.17 1.17 0 0 1-1.162 1.178 1.17 1.17 0 0 1-1.162-1.178c0-.651.52-1.18 1.162-1.18m5.34 2.867c-1.797-.052-3.746.512-5.28 1.786-1.72 1.428-2.687 3.72-1.78 6.22.942 2.453 3.666 4.229 6.884 4.229.826 0 1.622-.12 2.361-.336a.72.72 0 0 1 .598.082l1.584.926a.3.3 0 0 0 .14.047c.134 0 .24-.111.24-.247 0-.06-.023-.12-.038-.177l-.327-1.233a.6.6 0 0 1-.023-.156.49.49 0 0 1 .201-.398C23.024 18.48 24 16.82 24 14.98c0-3.21-2.931-5.837-6.656-6.088V8.89c-.135-.01-.27-.027-.407-.03zm-2.53 3.274c.535 0 .969.44.969.982a.976.976 0 0 1-.969.983.976.976 0 0 1-.969-.983c0-.542.434-.982.97-.982zm4.844 0c.535 0 .969.44.969.982a.976.976 0 0 1-.969.983.976.976 0 0 1-.969-.983c0-.542.434-.982.969-.982"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wegame.svg�����������������������������������0000664�0000000�0000000�00000003363�14753064456�0025075�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.458 11.005c-.024-.179-.078-.632-.165-1.08a8 8 0 0 0-.255-1.006l-.005-.015a2 2 0 0 0-.151-.315 1.2 1.2 0 0 0-.317-.354 1.57 1.57 0 0 0-1.412-.138 2.03 2.03 0 0 0-.861 1.064c-.238.465-.475.93-.742 1.378a2.6 2.6 0 0 1-.572.7 1.3 1.3 0 0 1-.367.215c-.534.2-.91-.08-1.321-.403-.438-.342-.824-.744-1.274-1.073a1.85 1.85 0 0 0-.983-.43c-.637-.003-1.195.619-1.544 1.078-.195.258-.577.779-.775 1.033a3.4 3.4 0 0 1-.454.458 1.2 1.2 0 0 1-.196.138 1.1 1.1 0 0 1-.48.136 1.57 1.57 0 0 1-.869-.263 3 3 0 0 1-.288-.183l-.035-.027a.469.469 0 0 0-.734.428.4.4 0 0 0 .024.136q.001.004.004.008a.4.4 0 0 0 .093.14c.608.897 1.47 1.55 2.303 1.564a1.5 1.5 0 0 0 .635-.124c.646-.285 1.13-.903 1.67-1.334a1.3 1.3 0 0 1 .776-.33 1.04 1.04 0 0 1 .63.215 2 2 0 0 1 .189.144 9 9 0 0 1 .742.753 10 10 0 0 0 .9.85 2.53 2.53 0 0 0 1.146.56q.069.01.136.014a1.52 1.52 0 0 0 1.002-.314 4.2 4.2 0 0 0 .745-.689 6 6 0 0 0 .463-.664c.07-.112.143-.19.2-.308a6 6 0 0 1-.065.953 10 10 0 0 1-.212 1.288q-.062.253-.135.503-.116.397-.262.786a2 2 0 0 1-.072.188l-.003.007q-.088.23-.192.453a7.005 7.005 0 0 1-12.74-.01q-.106-.225-.195-.459l-.004-.009a10.9 10.9 0 0 1 .426-9.024 13 13 0 0 1 1.635-2.396 8.4 8.4 0 0 1 2.132-1.946q.044-.027.086-.055a4.17 4.17 0 0 1 4.57 0l.086.055a11.3 11.3 0 0 1 1.795 1.588l.002.002.052.053a1.2 1.2 0 0 0 .296.212 1.36 1.36 0 0 0 1.493-.211 1.29 1.29 0 0 0 .137-1.672q-.063-.075-.121-.15a8 8 0 0 0-.722-.763A14 14 0 0 0 15.375.9l-.118-.071A6.1 6.1 0 0 0 12.118 0a5.75 5.75 0 0 0-3.033.841l-.117.071A12.2 12.2 0 0 0 6.003 3.39l-.024.025a15.48 15.48 0 0 0-3.578 9.8 16.6 16.6 0 0 0 .359 3.444 9.487 9.487 0 0 0 18.478.017l.028-.13.002-.012.02-.103a16 16 0 0 0 .286-2.235q.026-.454.026-.91a18 18 0 0 0-.142-2.28z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/weightsandbiases.svg�������������������������0000664�0000000�0000000�00000001352�14753064456�0027150�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.48 0a1.55 1.55 0 1 0 0 3.1 1.55 1.55 0 0 0 0-3.1m19.04 0a1.55 1.55 0 1 0 0 3.101 1.55 1.55 0 0 0 0-3.101M12 2.295a1.55 1.55 0 1 0 0 3.1 1.55 1.55 0 0 0 0-3.1M2.48 5.272a2.48 2.48 0 1 0 0 4.96 2.48 2.48 0 0 0 0-4.96m19.04 0a2.48 2.48 0 1 0 0 4.96 2.48 2.48 0 0 0 0-4.96M12 8.496a1.55 1.55 0 1 0 0 3.1 1.55 1.55 0 0 0 0-3.1m-9.52 3.907a1.55 1.55 0 1 0 0 3.1 1.55 1.55 0 0 0 0-3.1m19.04 0a1.55 1.55 0 1 0 0 3.102 1.55 1.55 0 0 0 0-3.102M12 13.767a2.48 2.48 0 1 0 0 4.962 2.48 2.48 0 0 0 0-4.962m-9.52 3.907a2.48 2.48 0 1 0 .001 4.962 2.48 2.48 0 0 0 0-4.962zm19.04.93a1.55 1.55 0 1 0 0 3.102 1.55 1.55 0 0 0 0-3.101zM12 20.9a1.55 1.55 0 1 0 0 3.1 1.55 1.55 0 0 0 0-3.1"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/welcometothejungle.svg�����������������������0000664�0000000�0000000�00000001372�14753064456�0027532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.62 3.783c-1.115-1.811-4.355-2.604-6.713-.265-.132.135-.306.548.218 1.104 1.097 1.149 6.819 7.046 4.702 12.196-1.028 2.504-3.953 2.073-5.052-2.076a23.2 23.2 0 0 1-.473-9.367s.105-.394-.065-.52c-.117-.087-.305-.05-.547.33-.06.096-.048.076-.106.178l-.003.002c-1.622 2.688-3.272 5.874-4.049 7.07.38-1.803-.101-4.283-.85-6.359l-.142-.375c-.692-1.776-1.524-2.974-1.776-3.245-.03-.033-.105-.094-.353-.094H.398c-.49 0-.448.412-.293.561 1.862 2.178 7.289 10.343 4.773 18.355-.194.619.11.944.612.305 2.206-2.81 4.942-7.598 6.925-11.187-.437 1.245-.822 2.63-1.028 4.083-.435 3.064.487 5.37 1.162 6.58.345.619.803.998 1.988.824 6.045-.885 8.06-6.117 8.805-8.77 1.357-4.839.363-7.568-.722-9.33"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wellfound.svg��������������������������������0000664�0000000�0000000�00000000662�14753064456�0025626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.998 8.128c.063-1.379-1.612-2.376-2.795-1.664-1.23.598-1.322 2.52-.156 3.234 1.2.862 2.995-.09 2.951-1.57m0 7.748c.063-1.38-1.612-2.377-2.795-1.665-1.23.598-1.322 2.52-.156 3.234 1.2.863 2.995-.09 2.951-1.57zm-20.5 1.762L0 6.364h3.257l2.066 8.106 2.245-8.106h3.267l2.244 8.106 2.065-8.106h3.257l-3.54 11.274H11.39q-1.096-4.07-2.188-8.14l-2.233 8.14H3.5z"/></svg>������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wellsfargo.svg�������������������������������0000664�0000000�0000000�00000004424�14753064456�0025774�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.136 13.949c0 .392-.245.616-.719.616h-.628v-1.226h.628c.48 0 .72.212.72.61zM6.922 15.06h1.044l-.523-1.443zm12.46-1.82c-.72 0-1.109.562-1.109 1.526 0 .97.384 1.526 1.108 1.526s1.108-.556 1.108-1.526c0-.964-.389-1.526-1.108-1.526zM23.73 0v24H.269V0zm-5.548 10.652c.484.245.948.354 1.571.354.895 0 1.481-.458 1.481-1.171 0-.6-.357-1.014-1.028-1.172l-.677-.158c-.394-.092-.559-.25-.559-.517 0-.322.25-.523.74-.523s.778.18.89.604l.048.186h.383v-.943a2.9 2.9 0 0 0-1.352-.338c-.911 0-1.497.447-1.497 1.166 0 .556.34.965.996 1.112l.676.152c.432.099.592.273.592.562 0 .354-.261.55-.784.55-.59 0-.894-.24-1.027-.697l-.07-.235h-.383zm-3.378.245h3.02V9.595h-.383l-.043.19c-.106.486-.255.638-.607.638h-.74V7.557h.506v-.474h-1.753v.474h.453v2.866h-.453zm-3.355 0h3.02V9.595h-.384l-.042.19c-.107.486-.256.638-.608.638h-.74V7.557h.506v-.474H11.45v.474h.452v2.866h-.452zm-8.758-3.34.938 3.34h.74l.778-2.768.756 2.768h.74l.932-3.34h.736v2.866h-.453v.474h3.201V9.595h-.383l-.043.19c-.106.486-.26.638-.607.638h-.922V9.241h1.071a.6.6 0 0 0 .059-.273.55.55 0 0 0-.059-.26h-1.07v-1.15h.884c.357 0 .48.157.596.615l.038.147h.383V7.083H6.49v.474h.522l-.613 2.305-.762-2.779h-.766l-.746 2.774-.624-2.3h.501v-.474H2.266v.474h.426zm1.412 7.002v-1.22h.947c.358 0 .48.158.597.615l.038.147h.383v-1.236H2.857v.474h.453v2.866h-.453v.474h1.78v-.474h-.533v-1.112H5.2a.6.6 0 0 0 .058-.272.55.55 0 0 0-.058-.262H4.104zm9.114 1.913a.46.46 0 0 0-.048-.224 1 1 0 0 1-.112.011c-.245 0-.309-.142-.34-.458l-.022-.201c-.048-.43-.245-.708-.73-.746v-.017c.48-.022.975-.349.975-.964 0-.621-.496-1.008-1.257-1.008H9.542v.474h.453v2.866H9.26l-1.332-3.34H7.22l-1.305 3.34h-.373v.474h1.412v-.474h-.448l.245-.682h1.385l.245.682h-.437v.474h3.35v-.474h-.505v-1.16h.293c.586 0 .761.212.826.762l.02.19c.06.507.31.725.826.725.15 0 .299-.01.416-.027a.46.46 0 0 0 .048-.223zm3.633-1.788h-1.417a.5.5 0 0 0-.059.256c0 .11.016.18.059.268h.634v.964a1.6 1.6 0 0 1-.629.125c-.767 0-1.166-.56-1.166-1.53s.4-1.532 1.124-1.532c.485 0 .767.245.932.67l.058.153h.384v-.976a3.06 3.06 0 0 0-1.412-.337c-1.172 0-1.96.8-1.96 2.027 0 1.231.767 2.016 1.96 2.016.474 0 .964-.136 1.492-.404zm4.512.082c0-1.182-.831-2.021-1.982-2.021-1.145 0-1.981.839-1.981 2.021 0 1.188.83 2.022 1.981 2.022 1.156 0 1.982-.834 1.982-2.022"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wemo.svg�������������������������������������0000664�0000000�0000000�00000002465�14753064456�0024601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.301 0A4.3 4.3 0 0 0 0 4.302v15.397A4.3 4.3 0 0 0 4.301 24h15.396A4.303 4.303 0 0 0 24 19.699V4.301A4.3 4.3 0 0 0 19.697 0zm12.912 4.167c2.088 0 3.789 1.62 3.789 3.613q0 .142-.011.28l-.016.175h-6.324l.114.325c.354.994 1.337 1.663 2.448 1.663.83 0 1.614-.383 2.1-1.024l.108-.146.99.674-.12.16c-.711.943-1.862 1.506-3.078 1.506-2.09 0-3.79-1.62-3.79-3.613s1.7-3.614 3.79-3.614m-13.937.132h1.21v4.43a1.325 1.325 0 0 0 2.648 0v-4.43H8.34v4.43a1.325 1.325 0 0 0 2.648 0v-4.43h1.21v4.43a2.535 2.535 0 0 1-2.534 2.532c-.648 0-1.289-.26-1.76-.714l-.168-.162-.168.162a2.56 2.56 0 0 1-1.76.714 2.535 2.535 0 0 1-2.533-2.532zm13.937 1.024c-.987 0-1.882.517-2.336 1.349l-.195.358h5.06l-.195-.358c-.454-.832-1.348-1.349-2.334-1.349m-.001 7.233c2.09 0 3.79 1.622 3.79 3.614 0 1.993-1.7 3.613-3.79 3.613s-3.79-1.62-3.79-3.613 1.7-3.614 3.79-3.614m-11.403.133c.648 0 1.29.26 1.762.713l.166.162.17-.162a2.56 2.56 0 0 1 1.758-.713 2.536 2.536 0 0 1 2.533 2.532v4.43H10.99v-4.43c0-.73-.595-1.325-1.324-1.325-.731 0-1.325.595-1.325 1.325v4.43H7.134v-4.43c0-.73-.594-1.325-1.325-1.325-.73 0-1.323.595-1.323 1.325v4.43h-1.21v-4.43a2.536 2.536 0 0 1 2.533-2.532m11.403 1.038c-1.422 0-2.58 1.096-2.58 2.443s1.158 2.442 2.58 2.442 2.578-1.095 2.578-2.442-1.156-2.443-2.578-2.443"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/westerndigital.svg���������������������������0000664�0000000�0000000�00000001170�14753064456�0026647�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.492 4.62C.177 4.623-.492 6.203.422 7.149l3.47 3.468q3.61 3.571 7.202 7.16l1.07 1.115c.94.953 2.562.266 2.532-1.072v-3.425a1.52 1.52 0 0 0-1.502-1.5H9.038a2.6 2.6 0 0 1-2.615-2.615V6.12a1.52 1.52 0 0 0-1.502-1.5Zm9.26 0c-1.315.002-1.985 1.582-1.072 2.529 3.932 3.927 7.86 7.859 11.789 11.788.94.952 2.559.267 2.53-1.07v-3.43a1.52 1.52 0 0 0-1.501-1.5c-1.4.014-2.8-.018-4.201-.042a2.6 2.6 0 0 1-2.613-2.615V6.12a1.52 1.52 0 0 0-1.502-1.5Zm8.273 0c-1.351-.007-2.012 1.645-1.029 2.572l3.431 3.43c.948.913 2.528.243 2.53-1.073V6.12a1.52 1.52 0 0 0-1.5-1.5z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/westernunion.svg�����������������������������0000664�0000000�0000000�00000000431�14753064456�0026361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.799 5.188h5.916L24 9.155l-4.643 8.043c-1.246 2.153-3.28 2.153-4.526 0L7.893 5.188h5.919l4.273 7.39a1.127 1.127 0 0 0 1.981.002zM0 5.188h5.921l6.237 10.802-.697 1.204c-1.246 2.153-3.285 2.153-4.531 0z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wetransfer.svg�������������������������������0000664�0000000�0000000�00000001512�14753064456�0026002�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.855 11.891c0-3.382 2.4-5.4 5.51-5.4C22.145 6.491 24 7.91 24 9.873c0 1.855-1.582 3.055-3.328 3.055-.982 0-1.69-.164-2.182-.546-.163-.164-.272-.109-.272.055 0 .709.272 1.254.709 1.745.382.382 1.09.655 1.745.655.71 0 1.31-.164 1.855-.437.545-.272.982-.163 1.254.273.328.49-.109 1.145-.49 1.582-.71.763-2.073 1.309-3.819 1.309-3.545-.11-5.618-2.51-5.618-5.673zm-7.254 2.237c.327 0 .545.163.763.545l.982 1.582c.382.6.709 1.036 1.418 1.036.71 0 1.091-.273 1.418-1.09a21 21 0 0 0 1.31-3.873c.49-1.855.709-2.946.709-3.873s-.273-1.473-1.31-1.637c-1.363-.272-3.272-.381-5.29-.381s-3.928.109-5.291.327C.273 6.982 0 7.528 0 8.454c0 .928.219 2.019.655 3.874a29 29 0 0 0 1.31 3.872c.381.818.708 1.091 1.417 1.091s1.037-.436 1.419-1.036l.981-1.582c.273-.327.491-.545.819-.545"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wezterm.svg����������������������������������0000664�0000000�0000000�00000001544�14753064456�0025324�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.27 8.524c0-.623.62-1.007 2.123-1.007l-.5 2.757c-.931-.623-1.624-1.199-1.624-1.75zm4.008 6.807c0 .647-.644 1.079-2.123 1.15l.524-2.924c.931.624 1.6 1.175 1.6 1.774zm-2.625 5.992.454-2.708c3.603-.336 5.01-1.798 5.01-3.404 0-1.653-2.004-2.948-3.841-4.074l.668-3.548c.764.072 1.67.216 2.744.432l.31-2.469c-.81-.12-1.575-.168-2.29-.216L8.257 2.7l-2.363-.024-.453 2.684C1.838 5.648.43 7.158.43 8.764c0 1.63 2.004 2.876 3.841 3.954l-.668 3.716c-.859-.048-1.908-.192-3.125-.408L0 18.495c1.026.12 1.98.192 2.84.216l-.525 2.588zm15.553-1.894h2.673c.334-2.804.81-8.46 1.121-14.86h-2.553c-.071 1.51-.334 10.498-.43 11.241h-.071c-.644-2.42-1.169-4.386-1.813-6.782h-1.456c-.62 2.396-1.05 4.194-1.694 6.782h-.096c-.071-.743-.477-9.73-.525-11.24h-2.648c.31 6.399.763 12.055 1.097 14.86h2.625l1.838-7.12z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wgpu.svg�������������������������������������0000664�0000000�0000000�00000000166�14753064456�0024610�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2 0 22h8l4-7 4 7h8L20 2l-5 8-3-4-3 4Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/whatsapp.svg���������������������������������0000664�0000000�0000000�00000002171�14753064456�0025453�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52s.198-.298.298-.497c.099-.198.05-.371-.025-.52s-.669-1.612-.916-2.207c-.242-.579-.487-.5-.669-.51a13 13 0 0 0-.57-.01c-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074s2.096 3.2 5.077 4.487c.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413s.248-1.289.173-1.413c-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.82 9.82 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.82 11.82 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.9 11.9 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.82 11.82 0 0 0-3.48-8.413"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wheniwork.svg��������������������������������0000664�0000000�0000000�00000001274�14753064456�0025644�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 24C5.342 24 0 18.582 0 12 0 5.342 5.342 0 12 0s12 5.342 12 12c0 6.582-5.342 12-12 12m0-21.986c-5.497 0-9.987 4.489-9.987 9.986s4.49 9.988 9.987 9.988c5.498 0 9.987-4.49 9.987-9.988S17.498 2.014 12 2.014m5.885 11.148H9.213a.697.697 0 0 1-.698-.691v-1.012c0-.387.311-.697.698-.697h8.748c.387 0 .697.311.697.697v1.006c-.077.387-.387.697-.773.697m-2.246-3.871H6.891a.694.694 0 0 1-.698-.691V7.59c0-.311.31-.621.697-.621h8.748c.31 0 .62.311.62.619v1.006c.001.386-.31.697-.619.697m-8.748 5.418h8.748c.388 0 .696.311.696.697v1.006a.695.695 0 0 1-.691.697H6.891c-.388-.076-.697-.387-.697-.773V15.33c-.001-.31.309-.621.697-.621"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wikibooks.svg��������������������������������0000664�0000000�0000000�00000001536�14753064456�0025631�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.027.29c-.424.143-.776.418-1.106.707C.434 5.314.254 5.497.254 5.497c-.236.22-.257.537-.254.859l.021 1.819s2.07-2.013 5.164-4.99c1.665 4.337 3.405 8.651 5.116 12.974.234.653-.329 1.188-1.04 1.902-.982.958-3.034 2.93-5.136 5.561h2.107l5.067-5.554c.482-.662 1.077-1.309.824-1.909L8.145 5.806c.924-.785 1.763-1.676 2.618-2.531l5.252 13.173c.303.891-.175 1.684-1.134 2.549-1.148.922-3.508 3.073-4.58 4.712h1.631c1.71-1.758 2.017-1.994 3.964-3.68 1.308-1.334 2.488-2.022 1.871-3.731l-4.13-10.325c1.007-.99 2.013-1.875 2.98-2.852 2.113 4.643 3.559 8.384 5.33 13.33.58 1.607.458 1.682-.928 2.55-2.228 1.107-2.929 1.834-5.585 4.66h1.815c2.22-2.008 3.045-2.716 5.825-4.18.983-.569 1.116-1.285.713-2.4-1.3-3.616-4.116-11.41-6.719-16.755l-4.103 3.971-1.569-3.92C9.912 1.38 8.74 2.78 7.466 4.04z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wikidata.svg���������������������������������0000664�0000000�0000000�00000000534�14753064456�0025422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 4.583v14.833h.865V4.583zm1.788 0v14.833h2.653V4.583zm3.518 0v14.832H7.96V4.583zm3.547 0v14.834h.866V4.583zm1.789 0v14.833h.865V4.583zm1.759 0v14.834h2.653V4.583zm3.518 0v14.834h.923V4.583zm1.788 0v14.833h2.653V4.583zm3.64 0v14.834h.865V4.583zm1.788 0v14.834H24V4.583Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wikidotgg.svg��������������������������������0000664�0000000�0000000�00000002355�14753064456�0025620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.833 3.76C4.597 4.09 3.345 5.09 2.76 6.206 2.465 6.78.274 13.54.062 14.54c-.135.643-.042 1.726.203 2.445.728 2.09 2.615 3.392 4.925 3.392 1.599 0 2.63-.389 3.892-1.48 1.226-1.058 2.259-1.464 3.51-1.362 1.134.084 1.896.431 2.962 1.362 1.506 1.32 3.25 1.7 5.051 1.1a4.93 4.93 0 0 0 2.86-2.445c.448-.897.575-1.54.525-2.547-.034-.804-.093-1.015-1.185-4.357a195 195 0 0 0-1.32-3.96c-.415-1.04-1.244-1.955-2.276-2.496-.956-.508-1.328-.567-3.477-.567-1.15 0-1.87.034-1.828.076.051.042.525.33 1.058.643.533.305 1.04.635 1.125.736.085.102.144.313.144.508 0 .406-.093.5-1.312 1.337l-.93.634 1.667.043c1.607.042 1.666.05 1.878.245.262.245.228.16 1.498 4.07 1.1 3.4 1.142 3.604.752 4.019-.516.55-1.032.482-1.819-.212-.321-.28-.77-.635-1.006-.795a8.43 8.43 0 0 0-10.094.626c-.956.812-1.015.846-1.565.846-.288 0-.61-.06-.753-.127-.288-.152-.584-.584-.584-.863 0-.102.507-1.794 1.134-3.757.896-2.834 1.184-3.612 1.353-3.79.22-.22.237-.22 1.938-.28.939-.025 1.861-.092 2.047-.152.415-.127 2.2-1.142 2.42-1.379.178-.194.212-.541.068-.846-.102-.228-1.667-1.176-2.352-1.43-.525-.194-4.028-.211-4.738-.017M19.2 5.14c.33.338.338.752.008 1.116-.406.457-1.134.322-1.37-.253-.339-.83.719-1.498 1.362-.863z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wikidotjs.svg��������������������������������0000664�0000000�0000000�00000010776�14753064456�0025645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.801 13.557q.223.147.417.313c1.854 1.6 3.127 4.656 2.582 7.311-1.091-.255-5.747-1.055-7.638-3.383-.91-1.12-1.366-2.081-1.569-2.885a6 6 0 0 0 .034-.219c.089.198.197.35.313.466.24.24.521.335.766.372.304.046.594-.006.806-.068l.001.001c.05-.015.433-.116.86-.342.325-.173 2.008-.931 3.428-1.566m-7.384 1.435C9.156 16.597 6.6 18.939.614 18.417c.219-1.492 1.31-3.019 2.51-4.11.379-.345.906-.692 1.506-1.009q.428.253.939.486c2.689 1.221 3.903 1.001 4.89.573l.054-.025a6 6 0 0 0-.096.66m4.152-.462c.38-.341.877-.916 1.383-1.559-.389-.15-.866-.371-1.319-.591-.598-.29-1.305-.283-2.073-.315a4.7 4.7 0 0 1-.804-.103q.021-.184.038-.369c.062.104.673.057.871.057.354 0 1.621.034 3.074-.574s2.55-1.706 3.022-3.225c.474-1.52.22-3.091-.168-3.952-.169.709-1.453 2.381-1.926 2.871-.473.489-2.381 2.296-2.972 2.921-.7.74-.688.793-1.332 1.302-.202.19-.499.402-.563.53.027-.338.039-.675.027-.997a8 8 0 0 0-.032-.523c.322-.059.567-.522.567-.861 0-.224-.106-.247-.271-.229.075-.894.382-3.923 1.254-4.281.218.109.831.068.649-.295-.182-.364-.825-.074-1.081.266-.28.374-.956 2.046-.92 4.324-.113.014-.174.033-.322.033-.171 0-.321-.04-.433-.05.034-2.275-.714-3.772-.84-4.169-.12-.375-.491-.596-.781-.596-.146 0-.272.056-.333.179-.182.363.459.417.677.308.706.321 1.156 3.519 1.254 4.277-.125-.006-.199.035-.199.233 0 .311.17.756.452.843l-.007.03s-.287.99-.413 2.189a4.7 4.7 0 0 1-.718-.225c-.714-.286-1.355-.583-2.019-.566s-1.366.023-1.804-.036-.649-.15-.649-.15-.234.365.257 1.075c.42.607 1.055 1.047 1.644 1.18.589.134 1.972.18 2.785-.377.16-.109.317-.228.459-.34a9 9 0 0 0-.013.626c-.289.753-.571 1.993-.268 3.338 0-.001.701-.842.787-2.958q.009-.216.01-.383c.052-.248.103-.518.148-.799.072.135.151.277.234.413.511.842 1.791 1.37 2.383 1.49q.137.029.285.038m-1.12.745c-.188.055-.445.1-.713.059-.21-.031-.45-.11-.655-.316-.169-.168-.312-.419-.401-.789a10 10 0 0 0 .039-.82l.049-.243c.563.855 1.865 1.398 2.476 1.522q.054.011.109.02l-.013.009c-.579.415-.76.503-.891.558m6.333-2.818c-.257.114-4.111 1.822-5.246 2.363.98-.775 3.017-3.59 3.699-4.774 1.062.661 1.468 1.109 1.623 1.441.101.217.09.38.096.515a.57.57 0 0 1-.172.455m-9.213 1.62a2 2 0 0 1-.19.096c-.954.414-2.126.61-4.728-.571-2.023-.918-3.024-2.157-3.371-2.666.476.161 1.471.473 2.157.524.282.021.703.068 1.167.125.021.209.109.486.345.829l.001.001c.451.651 1.134 1.119 1.765 1.262.622.141 2.083.182 2.942-.407a3 3 0 0 0 .132-.093l.001.179a6 6 0 0 0-.221.721m5.512-1.271a18 18 0 0 1-1.326-.589c.437.042 1.054.083 1.692.108q-.182.243-.366.481m.932-1.26q-.18.255-.373.517-.362.026-.709.038a29 29 0 0 1-.741-.048c.608-.065 1.228-.252 1.823-.507m.22-.315c-.809.382-1.679.648-2.507.648-.472 0-.833.018-1.139.039v.001c-.324-.031-.665-.039-1.019-.054l-.152-.009c.102-.002.192-.006.249-.006.363 0 1.662.034 3.151-.589 1.508-.632 2.645-1.773 3.136-3.351.37-1.186.31-2.402.086-3.312.458-.336.86-.651 1.147-.91.501-.451.743-.733.848-.869.199.206.714.864.685 2.138-.036 1.611-.606 3.187-1.501 4.154a9 9 0 0 1-1.321 1.132 12 12 0 0 0-.644-.422l-.089-.055-.051.091c-.184.332-.5.825-.879 1.374M4.763 5.817c-.157 1.144.113 2.323.652 3.099s2.088 2.29 3.614 2.505c.991.14 2.055.134 2.055.134s-.593-.576-1.114-1.66-.948-2.104-1.734-2.786c-.785-.681-1.601-1.416-2.045-1.945s-.59-.86-.59-.86-.656.175-.838 1.513m14.301 4.549a9 9 0 0 0 1.3-1.12c.326-.352.611-.782.845-1.265 1.315.145 2.399.371 2.791.434 0 0-.679 1.971-3.945 3.022l-.016-.035c-.121-.26-.385-.594-.975-1.036m-11.634.859a9 9 0 0 1-.598-.224c-1.657-.693-2.91-1.944-3.449-3.678-.498-1.601-.292-3.251.091-4.269.225.544.758 1.34 1.262 2.01a3.6 3.6 0 0 0-.172.726c-.163 1.197.123 2.428.687 3.24.416.599 1.417 1.62 2.555 2.193q-.192.003-.376.002m-1.758-.077c-.958-.341-1.901-.787-2.697-1.368C-.07 7.559 0 6.827 0 6.827s1.558-.005 3.088.179q.045.189.104.377c.557 1.791 1.851 3.086 3.562 3.803l.047.019a4 4 0 0 1-.267-.026h-.001c-.401-.053-.595-.135-.595-.135l-.157-.069-.092.144zm6.807-1.59c.086.017.136.058.136.145 0 .197-.242.5-.597.597l-.01-.161a.9.9 0 0 0 .283-.243c.078-.099.142-.217.188-.338m-1.591.006c.033.1.076.197.129.282.061.097.134.18.217.24l-.021.083c-.276-.093-.424-.293-.424-.466 0-.078.035-.119.099-.139m-.025-.664c-.275-.816-.795-2.022-1.505-2.179-.296.072-.938.096-.691-.145.246-.24 1.085-.048 1.283.217.145.194.744.806 1.011 1.737l.032.227a.32.32 0 0 0-.13.143m1.454-.266c.251-.99.889-1.639 1.039-1.841.197-.265 1.036-.457 1.283-.217s-.395.217-.691.145c-.69.152-1.2 1.296-1.481 2.109a.4.4 0 0 0-.067-.059.4.4 0 0 0-.092-.043zm4.802-2.708a10 10 0 0 1-.596.705c-.304.315-1.203 1.176-1.963 1.916.647-.955 1.303-1.806 2.184-2.376q.185-.12.375-.245"/></svg>��mkdocs-material-9.6.4/material/templates/.icons/simple/wikimediacommons.svg�������������������������0000664�0000000�0000000�00000002646�14753064456�0027172�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.048 15.203a2.952 2.952 0 1 1 5.904 0 2.952 2.952 0 0 1-5.904 0m11.749.064v-.388h-.006a8.7 8.7 0 0 0-.639-2.985 8.7 8.7 0 0 0-1.706-2.677l.004-.004-.186-.185-.044-.045-.026-.026-.204-.204-.006.007c-.848-.756-1.775-1.129-2.603-1.461-1.294-.519-2.138-.857-2.534-2.467.443.033.839.174 1.13.481C15.571 6.996 11.321 0 11.321 0s-1.063 3.985-2.362 5.461c-.654.744.22.273 1.453-.161.279 1.19.77 2.119 1.49 2.821.791.771 1.729 1.148 2.556 1.48.672.27 1.265.508 1.767.916l-.593.594-.668-.668-.668 2.463 2.463-.668-.668-.668.6-.599a6.3 6.3 0 0 1 1.614 3.906h-.844v-.944l-2.214 1.27 2.214 1.269v-.944h.844a6.28 6.28 0 0 1-1.614 3.906l-.6-.599.668-.668-2.463-.668.668 2.463.668-.668.6.6a6.26 6.26 0 0 1-3.907 1.618v-.848h.945L12 18.45l-1.27 2.214h.944v.848a6.27 6.27 0 0 1-3.906-1.618l.599-.6.668.668.668-2.463-2.463.668.668.668-.6.599a6.3 6.3 0 0 1-1.615-3.906h.844v.944l2.214-1.269-2.214-1.27v.944h-.843a6.3 6.3 0 0 1 1.615-3.906l.6.599-.668.668 2.463.668-.668-2.463-.668.668-2.359-2.358-.23.229-.044.045-.185.185.004.004a8.75 8.75 0 0 0-2.345 5.662h-.006v.649h.006a8.75 8.75 0 0 0 2.345 5.662l-.004.004.185.185.045.045.045.045.185.185.004-.004a8.7 8.7 0 0 0 2.677 1.707 8.8 8.8 0 0 0 2.985.639V24h.649v-.006a8.8 8.8 0 0 0 2.985-.639 8.7 8.7 0 0 0 2.677-1.707l.004.004.187-.187.044-.043.043-.044.187-.186-.004-.004a8.7 8.7 0 0 0 1.706-2.677 8.7 8.7 0 0 0 .639-2.985h.006v-.259z"/></svg>������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wikimediafoundation.svg����������������������0000664�0000000�0000000�00000000765�14753064456�0027665�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.074 3.126A11.97 11.97 0 0 1 24 12c0 6.623-5.377 12-12 12S0 18.623 0 12c0-3.515 1.514-6.679 3.926-8.874l2.265 2.265A8.78 8.78 0 0 0 3.2 12c0 4.857 3.943 8.8 8.8 8.8s8.8-3.943 8.8-8.8a8.78 8.78 0 0 0-2.991-6.609zm-3.399 3.399A7.19 7.19 0 0 1 19.2 12a7.206 7.206 0 0 1-6.4 7.156V10.4zM11.2 19.156A7.206 7.206 0 0 1 4.8 12c0-2.19.98-4.154 2.525-5.475L11.2 10.4zM12 0c2.208 0 4 1.792 4 4s-1.792 4-4 4-4-1.792-4-4 1.792-4 4-4"/></svg>�����������mkdocs-material-9.6.4/material/templates/.icons/simple/wikipedia.svg��������������������������������0000664�0000000�0000000�00000002452�14753064456�0025574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.09 13.119c-.936 1.932-2.217 4.548-2.853 5.728-.616 1.074-1.127.931-1.532.029-1.406-3.321-4.293-9.144-5.651-12.409-.251-.601-.441-.987-.619-1.139q-.27-.225-1.122-.271-.314-.034-.313-.159v-.455l.052-.045c.924-.005 5.401 0 5.401 0l.051.045v.434q0 .177-.225.176l-.564.031c-.485.029-.727.164-.727.436 0 .135.053.33.166.601 1.082 2.646 4.818 10.521 4.818 10.521l.136.046 2.411-4.81-.482-1.067-1.658-3.264s-.318-.654-.428-.872c-.728-1.443-.712-1.518-1.447-1.617-.207-.023-.313-.05-.313-.149v-.468l.06-.045h4.292l.113.037v.451c0 .105-.076.15-.227.15l-.308.047c-.792.061-.661.381-.136 1.422l1.582 3.252 1.758-3.504c.293-.64.233-.801.111-.947-.07-.084-.305-.22-.812-.24l-.201-.021a.23.23 0 0 1-.145-.051.15.15 0 0 1-.067-.129v-.427l.061-.045c1.247-.008 4.043 0 4.043 0l.059.045v.436c0 .121-.059.178-.193.178-.646.03-.782.095-1.023.439-.12.186-.375.589-.646 1.039l-2.301 4.273-.065.135 2.792 5.712.17.048 4.396-10.438c.154-.422.129-.722-.064-.895-.197-.172-.346-.273-.857-.295l-.42-.016a.26.26 0 0 1-.152-.045c-.043-.029-.072-.075-.072-.119v-.436l.059-.045h4.961l.041.045v.437c0 .119-.074.18-.209.18-.648.03-1.127.18-1.443.421-.314.255-.557.616-.736 1.067 0 0-4.043 9.258-5.426 12.339-.525 1.007-1.053.917-1.503-.031-.571-1.171-1.773-3.786-2.646-5.71z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wikiquote.svg��������������������������������0000664�0000000�0000000�00000001076�14753064456�0025650�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.152 12a4.037 4.037 0 1 1-8.075 0 4.037 4.037 0 0 1 8.075 0M17.292.822q-.429-.43-.885-.822l-1.528 1.527C17.872 4.036 19.778 7.8 19.778 12s-1.906 7.964-4.899 10.473L16.407 24q.457-.392.886-.822A15.7 15.7 0 0 0 21.923 12c0-4.223-1.644-8.192-4.63-11.178zM13.508 2.9 12.03 4.377a9.642 9.642 0 0 1 0 15.246l1.477 1.477a11.712 11.712 0 0 0 0-18.2zm-2.735 2.735L9.349 7.057c1.61 1.057 2.675 2.878 2.675 4.943s-1.065 3.886-2.675 4.943l1.423 1.422A7.88 7.88 0 0 0 14.005 12a7.88 7.88 0 0 0-3.233-6.365z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wikiversity.svg������������������������������0000664�0000000�0000000�00000003052�14753064456�0026214�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 20.462h24v.795H0zm19.974-8.692h3.205v8.256h-3.205zm-6.385 0h3.206v8.256h-3.206zm-6.384 0h3.205v8.256H7.205zm-6.385 0h3.205v8.256H.82zM0 10.539h24v.795H0zm7.615-6.436c1.103-.897 2.23-1.359 3.974-1.359-1.359.538-2.282 1.385-2.974 2.026-.41-.206-.692-.385-1-.667m8.77 0c-1.103-.897-2.232-1.359-3.975-1.359 1.359.538 2.282 1.385 2.974 2.026.41-.206.693-.385 1-.667zm-4.616 1.436c-.923 0-1.744-.205-2.692-.59.948-.872 1.666-1.359 2.692-1.82zm.461 0c.924 0 1.744-.205 2.693-.59-.949-.872-1.667-1.359-2.693-1.82zm-3.897-.41A5.4 5.4 0 0 1 7.23 4.41C6.59 5 6.05 5.565 5.666 6.283c.436.384.795.64 1.334.897.359-.744.743-1.385 1.333-2.051m7.333 0c.41-.205.77-.436 1.103-.718.641.59 1.18 1.154 1.564 1.872-.436.384-.795.64-1.333.897-.36-.744-.744-1.385-1.334-2.051M11.77 6c-1 0-2.128-.282-3.026-.666a7.5 7.5 0 0 0-1.359 2.051c1.513.744 2.898 1.077 4.385 1.077zm.461 0c1 0 2.129-.282 3.026-.666a7.5 7.5 0 0 1 1.36 2.051c-1.514.744-2.898 1.077-4.386 1.077zm-6.82.693c.436.384.872.666 1.41.974-.256.564-.41 1.282-.513 1.975a12 12 0 0 1-1.564-.975c.129-.743.36-1.41.667-1.974m13.179 0c-.436.384-.872.666-1.41.974.256.564.41 1.282.512 1.975a12 12 0 0 0 1.565-.975 6.4 6.4 0 0 0-.667-1.974m-6.82 3.41H7.511C7.23 10 7 9.949 6.717 9.82a8.6 8.6 0 0 1 .487-1.974c1.41.743 2.898 1.076 4.564 1.076zm.461 0h4.256c.282-.103.513-.154.795-.282a8.6 8.6 0 0 0-.487-1.974c-1.41.743-2.897 1.076-4.564 1.076zm-7.667 0c0-.333.026-.615.077-.949.59.41.872.564 1.616.949zm14.872 0c0-.333-.025-.615-.077-.949-.59.41-.871.564-1.615.949z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wikivoyage.svg�������������������������������0000664�0000000�0000000�00000005672�14753064456�0026013�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.917 14.178q-.645 0-1.055-.41-.41-.408-.41-1.049 0-.637.355-1.05t.918-.414q.61 0 .943.386T24 12.72v.155h-1.866a.83.83 0 0 0 .174.424q.273.253.632.253.262 0 .489-.092.225-.093.57-.316v.648a2 2 0 0 1-.531.3q-.25.086-.551.086zm.445-1.774a.8.8 0 0 0-.145-.352q-.158-.215-.463-.215-.271 0-.447.234a.9.9 0 0 0-.161.333zm-3.73 1.063q0 .055.147.13.15.078.383.114.567.09.82.304.253.215.253.62 0 .4-.374.628t-.992.228q-.58 0-.93-.245a.78.78 0 0 1-.348-.669q0-.291.187-.5a.67.67 0 0 1 .437-.236q-.21-.102-.21-.31 0-.226.279-.376.066-.036.097-.012-.109-.005-.24-.122a.93.93 0 0 1-.3-.712q0-.435.301-.713.301-.28.77-.28.12 0 .224.018h1.099v.545h-.38q.125.132.13.49a.87.87 0 0 1-.305.655q-.266.244-.668.272l-.179.01a.4.4 0 0 0-.133.051q-.069.044-.069.11m.28-1.614a.44.44 0 0 0-.323.126.45.45 0 0 0-.127.33q0 .205.126.33a.44.44 0 0 0 .325.124q.198 0 .324-.125a.44.44 0 0 0 .126-.329.45.45 0 0 0-.127-.33.44.44 0 0 0-.323-.126m-.703 2.727q0 .162.178.269.179.106.488.106.338 0 .528-.09t.19-.223a.3.3 0 0 0-.129-.24.86.86 0 0 0-.387-.141l-.075-.012a2 2 0 0 0-.2-.02.817.817 0 0 0-.447.103.28.28 0 0 0-.146.248zm-2.382-.402a.67.67 0 0 1-.508-.2.73.73 0 0 1-.19-.52q0-.285.187-.491t.555-.338l.651-.235v-.126q0-.21-.098-.3t-.32-.09q-.25 0-.446.096-.195.095-.474.318v-.623q.215-.222.435-.318t.49-.096q.522 0 .798.26.276.261.276.753v1.35q0 .032.01.041.009.01.033.01.02 0 .085-.041.065-.042.249-.125v.418a.8.8 0 0 1-.287.183.9.9 0 0 1-.324.066.44.44 0 0 1-.3-.108q-.092-.083-.096-.152-.02.068-.143.13-.27.139-.583.138m.695-.625v-.75l-.257.12a.9.9 0 0 0-.349.203.4.4 0 0 0-.112.279q0 .12.09.193.09.075.245.074a.6.6 0 0 0 .257-.058 2 2 0 0 1 .2-.081zm-1.478-2.177-1.894 4.188h-.724l.933-2.114-1.061-2.133h.707l.713 1.533.639-1.533h.687zm-4.363 2.788c-.46.02-.847-.122-1.126-.395q-.42-.41-.42-1.049 0-.64.42-1.052t1.077-.412 1.079.412q.42.413.421 1.052 0 .638-.42 1.049c-.282.273-.636.395-1.03.395m-.002-.55a.8.8 0 0 0 .547-.26q.23-.242.23-.634 0-.395-.23-.638a.78.78 0 0 0-.594-.244.78.78 0 0 0-.592.243q-.229.244-.229.64 0 .393.228.634c.152.161.353.26.64.26M7.26 11.318h.693l.66 1.656.665-1.656h.687l-1.228 2.842h-.252zm9.218-.703v-2.79h.673v2.85h-.54zm.336-3.963a.38.38 0 0 1 .28.114.37.37 0 0 1 .113.273.37.37 0 0 1-.113.274.38.38 0 0 1-.28.113.38.38 0 0 1-.28-.113.37.37 0 0 1-.113-.274.37.37 0 0 1 .113-.274.38.38 0 0 1 .28-.113m-2.668-.182v4.206h-.673V6.408h.673zm1.286 4.146L14.04 9.252l1.258-1.428h.757l-1.2 1.414 1.413 1.437h-.703zm-3.3 0V7.822h.673v2.852h-.54zm.336-3.964a.38.38 0 0 1 .28.114.37.37 0 0 1 .113.273.37.37 0 0 1-.113.274.38.38 0 0 1-.28.113.38.38 0 0 1-.28-.113.37.37 0 0 1-.113-.274.37.37 0 0 1 .113-.274.38.38 0 0 1 .28-.113M8.49 10.717 7.261 7.824h.699l.661 1.68.682-1.721h.423l.676 1.712.664-1.671h.7l-1.242 2.893h-.256l-.762-1.843-.76 1.843H8.62zm3.768 6.322 4.008 6.07.436-7.26a4.6 4.6 0 0 1-4.444 1.19M7.26 6.41 0 6.843l6.07 4.008a4.6 4.6 0 0 1 1.191-4.444m11.705.988L22.22.89l-6.507 3.254a4.6 4.6 0 0 1 3.254 3.253z"/></svg>����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/winamp.svg�����������������������������������0000664�0000000�0000000�00000000527�14753064456�0025122�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.902 0a.99.99 0 0 0-.91.604l-6.139 14.57a.636.636 0 0 0 .586.883H8.66a.99.99 0 0 0 .91-.604L15.707.883A.636.636 0 0 0 15.12 0zm3.438 7.943a.99.99 0 0 0-.91.604l-6.137 14.57c-.177.42.13.883.586.883h3.219a.99.99 0 0 0 .91-.604l6.138-14.57a.636.636 0 0 0-.586-.883z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wine.svg�������������������������������������0000664�0000000�0000000�00000001156�14753064456�0024570�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.045 0C8.839.03 5.68 1.06 4.915 2.34c.848 3.193 2.025 9.576 4.7 12.09.6.565 1.455.785 2.27 1.768l.193.324c.6 1.676 1.371 3.814.246 5.104-1.833.54-3.08 1.253-2.976 1.78.133.676 2.42.792 5.107.26 2.687-.53 4.759-1.508 4.625-2.183-.11-.554-1.672-.73-3.715-.482-1.884-.885-1.955-3.022-2.226-4.674l.025-.4c.116-.556.689-1.793 1.035-2.393 1.605-2.779.003-8.337-1.203-13.066-.37-.338-1.088-.479-1.951-.467zm1.832 3.674c.208-.002.44.052.705.176 2.759 8.733-.429 11.097-1.217 11.816-2.55-.882-4.278-1.862-6.244-9.312 4.972 2.58 4.744-2.659 6.756-2.68"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wipro.svg������������������������������������0000664�0000000�0000000�00000015541�14753064456�0024771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.542 12.035c0-.875-.69-1.585-1.542-1.585-.85 0-1.541.71-1.541 1.585 0 .876.69 1.585 1.542 1.585.85 0 1.54-.71 1.54-1.585zM14 12.872c-.437 0-.792-.375-.792-.837 0-.46.355-.836.793-.836.437 0 .792.375.792.836 0 .462-.355.837-.792.837m-9.584-2.208-.927 2.873a.13.13 0 0 1-.115.084H3.29a.16.16 0 0 1-.129-.078l-.95-1.825-.95 1.825a.16.16 0 0 1-.128.078h-.085a.13.13 0 0 1-.115-.084l-.927-2.873c-.022-.07.019-.126.092-.126h.567c.048 0 .1.038.115.084l.469 1.452.805-1.546a.16.16 0 0 1 .129-.078h.057a.16.16 0 0 1 .129.078l.805 1.546.468-1.452a.13.13 0 0 1 .116-.084h.567c.073 0 .114.057.091.126M5.784 13.4a.13.13 0 0 1-.132.133H5.08a.13.13 0 0 1-.132-.133v-2.73c0-.073.059-.132.132-.132h.572a.13.13 0 0 1 .132.132zm.741-2.73v4.315c0 .074.06.133.132.133h.573a.13.13 0 0 0 .132-.133v-1.497c.242.085.51.132.792.132.803 0 1.454-.71 1.454-1.585s-.651-1.585-1.454-1.585c-.394 0-.75.171-1.012.449l-.102-.278a.14.14 0 0 0-.119-.083h-.264a.13.13 0 0 0-.132.132m.837.9a.75.75 0 0 1 .637-.371c.424 0 .767.374.767.836s-.344.837-.767.837c-.24 0-.46-.063-.637-.17zm3.575 1.963h-.572a.13.13 0 0 1-.132-.132V10.67c0-.073.059-.132.132-.132h.264c.048 0 .102.037.118.083l.102.277s.32-.448.87-.448.617.19.571.295l-.197.445c-.025.058-.09.1-.177.066a.73.73 0 0 0-.847.233V13.4a.13.13 0 0 1-.132.132m4.69-10.343a.704.704 0 0 1 .862-.497.704.704 0 1 1-.364 1.36.705.705 0 0 1-.498-.863zm1.846 2.79a.53.53 0 0 1 .194.722.53.53 0 0 1-.722.193.53.53 0 0 1-.194-.722.53.53 0 0 1 .722-.193m.664 10.968a.573.573 0 0 1 0-.81.57.57 0 0 1 .81 0 .573.573 0 0 1 0 .81.573.573 0 0 1-.81 0M15.68 9.571a.242.242 0 0 1-.42-.242.242.242 0 1 1 .42.242m-.42 5.1a.242.242 0 0 1 .42-.242.243.243 0 0 1-.088.331.243.243 0 0 1-.331-.089m3.73-2.67a.517.517 0 1 1-.516-.518.517.517 0 0 1 .517.517m-1.173-8.112a.749.749 0 1 1 1.296.75.749.749 0 0 1-1.296-.75m-5.43 10.575a.154.154 0 1 1 .267.153.154.154 0 0 1-.267-.154m2.804-8.792a.484.484 0 1 1 .935.25.484.484 0 0 1-.593.343.484.484 0 0 1-.342-.593M13.993 7.85a.308.308 0 1 1 0-.617.308.308 0 1 1 0 .617m0 1.013a.198.198 0 1 1 0 .396.198.198 0 0 1 0-.396m0-2.84a.44.44 0 1 1 0-.882.44.44 0 0 1 0 .881m-1.607 3.515a.154.154 0 1 1 .21.056.154.154 0 0 1-.21-.056m1.607 5.602a.198.198 0 1 1 0-.396.198.198 0 0 1 0 .396m0 1.013a.308.308 0 0 1 0 .616.308.308 0 1 1 0-.616m3.494-2.139a.44.44 0 0 1 .602-.16.44.44 0 0 1 .16.6.44.44 0 0 1-.762-.44m-3.494 3.966a.44.44 0 1 1 0 .88.44.44 0 0 1 0-.88m9.577-8.543a.968.968 0 1 1-1.87.502.968.968 0 0 1 1.87-.502m-6.694 6.002a.396.396 0 0 1 .56-.56.396.396 0 0 1 0 .56.396.396 0 0 1-.56 0m.974-4.47a.484.484 0 0 1 .342-.592.484.484 0 1 1 .25.935.484.484 0 0 1-.592-.342m1.407-2.715a.617.617 0 0 1 .617 1.068.617.617 0 0 1-.617-1.068m-.31-.391a.57.57 0 0 1-.81 0 .573.573 0 0 1 0-.81.57.57 0 0 1 .81 0 .573.573 0 0 1 0 .81M17.85 13.03a.484.484 0 0 1 .935.25.484.484 0 1 1-.935-.25M14.83 7.605a.33.33 0 0 1 .404-.234.33.33 0 0 1-.17.638.33.33 0 0 1-.234-.404M21.3 6.77a.88.88 0 0 1 1.203.321.88.88 0 1 1-1.525.881.88.88 0 0 1 .322-1.202zm-3.05 2.777a.44.44 0 1 1-.762.44.44.44 0 1 1 .763-.44m1.324.96a.66.66 0 0 1 .466-.808.66.66 0 0 1 .342 1.275.66.66 0 0 1-.808-.467m0 2.986a.66.66 0 1 1 1.275.341.66.66 0 1 1-1.275-.341m.859-.736a.757.757 0 1 1 0-1.514.757.757 0 0 1 0 1.514m-.676-6.514a.79.79 0 0 1 0-1.121.79.79 0 0 1 1.121 0 .793.793 0 0 1-1.12 1.12M16.534 8.31a.352.352 0 1 1-.61-.353.352.352 0 0 1 .61.352m-.639 5.586a.264.264 0 0 1 .374 0 .265.265 0 0 1 0 .373.264.264 0 0 1-.374 0 .264.264 0 0 1 0-.373m0-4.167a.264.264 0 0 1 .374 0 .264.264 0 1 1-.374 0m.515 3.992a.287.287 0 0 1-.105-.391.286.286 0 0 1 .391-.105.286.286 0 0 1-.286.496m-.486 2.32a.35.35 0 0 1 .129-.48.35.35 0 0 1 .481.128.35.35 0 0 1-.129.481.35.35 0 0 1-.481-.129zm.877-5.659a.286.286 0 0 1-.105.391.287.287 0 0 1-.391-.105.286.286 0 0 1 .496-.286zm-.249.934a.308.308 0 1 1 .596-.16.308.308 0 0 1-.596.16m0 1.366a.308.308 0 1 1 .596.16.308.308 0 0 1-.596-.16m.401-.346a.337.337 0 1 1 0-.673.337.337 0 0 1 0 .673m.483-3.775a.396.396 0 1 1-.56.561.396.396 0 0 1 .56-.56M10.02 20.013a.573.573 0 0 1-.782.21.573.573 0 0 1 .573-.992.573.573 0 0 1 .21.782m4.794-11.068a.22.22 0 1 1-.114.425.22.22 0 0 1 .114-.425m-2.539 11.837a.616.616 0 1 1-1.19-.32.616.616 0 0 1 1.19.32m2.539-5.726a.22.22 0 0 1-.114-.426.22.22 0 1 1 .114.426m-.16 5.874a.66.66 0 0 1-.66.66.66.66 0 0 1-.661-.66.66.66 0 0 1 1.32 0m-1.47-5.922a.177.177 0 0 1-.124-.216.177.177 0 0 1 .216-.124.176.176 0 0 1-.092.34m-.07 1.371a.286.286 0 1 1-.553-.148.286.286 0 0 1 .552.148m-2.796-2.273a.22.22 0 0 1-.381.22.22.22 0 0 1 .08-.3.22.22 0 0 1 .301.08m1.67 1.882a.264.264 0 1 1-.457-.264.264.264 0 0 1 .458.264m.015-1.825a.132.132 0 1 1-.187-.187.133.133 0 0 1 .187 0 .133.133 0 0 1 0 .187m-.996.81a.242.242 0 1 1-.343.342.24.24 0 0 1 0-.342.24.24 0 0 1 .343 0m.078 2.756a.35.35 0 0 1-.481.129.352.352 0 1 1 .481-.129m9.792.029a.793.793 0 0 1 0 1.12.793.793 0 0 1-1.12-1.12.793.793 0 0 1 1.12 0m-1.62-2.01a.617.617 0 0 1-.225-.843.617.617 0 0 1 .842-.225.617.617 0 0 1-.617 1.067m3.245 1.16a.88.88 0 1 1-1.525-.88.88.88 0 0 1 1.525.88m-7.267-.28a.33.33 0 1 1-.17-.637.33.33 0 0 1 .17.638M24 12a1.058 1.058 0 1 1-2.116 0A1.058 1.058 0 0 1 24 12m-.43 2.564a.97.97 0 1 1-1.872-.502.97.97 0 0 1 1.872.502m-6.583 5.881a.704.704 0 1 1-1.36.364.704.704 0 0 1 .498-.862.704.704 0 0 1 .862.498m2.125-1.082a.75.75 0 0 1-.274 1.022.75.75 0 0 1-1.022-.274.75.75 0 0 1 .274-1.023.75.75 0 0 1 1.022.274zm-3.922-1.035a.484.484 0 1 1 .935-.25.484.484 0 0 1-.935.25m2.283-.308a.528.528 0 1 1-.528-.915.528.528 0 0 1 .528.915m-4.76.28a.396.396 0 0 1-.766-.205.396.396 0 0 1 .485-.28.396.396 0 0 1 .28.485m-.897-8.276a.132.132 0 1 1 .187-.187.132.132 0 0 1-.187.187m.076-1.651a.264.264 0 0 1-.265-.458.264.264 0 0 1 .265.458m-.807-4.835a.616.616 0 1 1 1.19-.32.616.616 0 0 1-1.19.32m-.848 6.055a.22.22 0 1 1-.22.381.22.22 0 0 1-.08-.3.22.22 0 0 1 .3-.081zm.77-.908a.242.242 0 0 1-.343.343.242.242 0 0 1 .343-.343m-.532-2.062a.352.352 0 0 1 .61-.352.352.352 0 0 1-.61.352m2.858-3.552a.66.66 0 0 1 1.32 0 .66.66 0 0 1-.66.66.66.66 0 0 1-.66-.66m-.149 5.922a.176.176 0 1 1 .091.34.176.176 0 0 1-.09-.34m-.957-3.573a.396.396 0 0 1 .205.765.396.396 0 0 1-.485-.28.397.397 0 0 1 .28-.485zm.535 1.999a.286.286 0 1 1 .148.553.286.286 0 0 1-.148-.553M9.03 4.559a.57.57 0 0 1 .21-.781.573.573 0 0 1 .572.991.57.57 0 0 1-.782-.21m-.37 10.505a.264.264 0 1 1-.458.264.264.264 0 0 1 .458-.264M4.92 9.46a.46.46 0 0 1 .566-.327.46.46 0 0 1 .327.566.46.46 0 0 1-.566.327.46.46 0 0 1-.327-.567m.9-2.17a.484.484 0 1 1 .178.662.485.485 0 0 1-.178-.662m2.23 10.642a.53.53 0 0 1 0 .747.53.53 0 0 1-.748 0 .53.53 0 0 1 0-.747.53.53 0 0 1 .748 0m-1.373-1.722a.484.484 0 1 1-.839.485.484.484 0 0 1 .839-.485m.626-10.14a.53.53 0 0 1 0-.746.53.53 0 0 1 .747 0 .53.53 0 0 1 0 .747.53.53 0 0 1-.747 0m2.366 1.62a.31.31 0 0 1-.436 0 .31.31 0 0 1 0-.436.31.31 0 0 1 .436 0 .31.31 0 0 1 0 .436m0 8.623a.308.308 0 1 1-.436.435.308.308 0 0 1 .436-.436m-1.466-7.64a.264.264 0 1 1 .457.264.264.264 0 0 1-.458-.264"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wire.svg�������������������������������������0000664�0000000�0000000�00000000673�14753064456�0024577�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 14.475a7.395 7.395 0 0 1-7.38 7.41h-.016a7.3 7.3 0 0 1-4.5-1.605A7.498 7.498 0 0 1 0 14.475V2.82h1.41v11.655a6 6 0 0 0 9.585 4.815 7.38 7.38 0 0 1-1.815-4.814v-9.54a2.82 2.82 0 0 1 5.64 0v9.54a7.37 7.37 0 0 1-1.77 4.814 5.997 5.997 0 0 0 8.383-1.304 6 6 0 0 0 1.157-3.511V2.82H24zm-10.59-9.54a1.41 1.41 0 0 0-2.82 0v9.54A6 6 0 0 0 12 18.33a6 6 0 0 0 1.41-3.855z"/></svg>���������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wireguard.svg��������������������������������0000664�0000000�0000000�00000004430�14753064456�0025615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.98 11.645S24.533 0 11.735 0C.418 0 .064 11.17.064 11.17S-1.6 24 11.997 24C25.04 24 23.98 11.645 23.98 11.645M8.155 7.576c2.4-1.47 5.469-.571 6.618 1.638.218.419.246 1.063.108 1.503-.477 1.516-1.601 2.366-3.145 2.728.455-.39.817-.832.933-1.442a2.11 2.11 0 0 0-.364-1.677 2.14 2.14 0 0 0-2.465-.75c-.95.36-1.47 1.228-1.377 2.294.087.99.839 1.632 2.245 1.876-.21.111-.372.193-.53.281a5.1 5.1 0 0 0-1.644 1.43c-.143.192-.24.208-.458.075-2.827-1.729-3.009-6.067.078-7.956zM6.04 18.258c-.455.116-.895.286-1.359.438.227-1.532 2.021-2.943 3.539-2.782a3.9 3.9 0 0 0-.74 2.072c-.504.093-.98.155-1.44.272M15.703 3.3c.448.017.898.01 1.347.02a2 2 0 0 1 .334.047 3 3 0 0 1-.34.434c-.16.15-.341.296-.573.069-.055-.055-.187-.042-.283-.044-.447-.005-.894-.02-1.34-.003a8 8 0 0 0-1.154.118c-.072.013-.178.25-.146.338.078.207.191.435.359.567.619.49 1.277.928 1.9 1.413.604.472 1.167.99 1.51 1.7.446.928.46 1.9.267 2.877-.322 1.63-1.147 2.98-2.483 3.962-.538.395-1.205.62-1.821.903-.543.25-1.1.465-1.644.712-.98.446-1.53 1.51-1.369 2.615.149 1.015 1.04 1.862 2.059 2.037 1.223.21 2.486-.586 2.785-1.83.336-1.397-.423-2.646-1.845-3.024l-.256-.066c.38-.17.708-.291 1.012-.458q.793-.437 1.558-.925c.15-.096.231-.096.36.014.977.846 1.56 1.898 1.724 3.187.27 2.135-.74 4.096-2.646 5.101-2.948 1.555-6.557-.215-7.208-3.484-.558-2.8 1.418-5.34 3.797-5.83 1.023-.211 1.958-.637 2.685-1.425.47-.508.697-.944.775-1.141a3.2 3.2 0 0 0 .217-1.158 2.7 2.7 0 0 0-.237-.992c-.248-.566-1.2-1.466-1.435-1.656l-2.24-1.754c-.079-.065-.168-.06-.36-.047-.23.016-.815.048-1.067-.018.204-.155.76-.38 1-.56-.726-.49-1.554-.314-2.315-.46.176-.328 1.046-.831 1.541-.888a7 7 0 0 0-.135-.822c-.03-.111-.154-.22-.263-.283-.262-.154-.541-.281-.843-.434a1.76 1.76 0 0 1 .906-.28 3.4 3.4 0 0 1 .908.088c.54.123.97.042 1.399-.324-.338-.136-.676-.26-1.003-.407a10 10 0 0 1-.942-.493c.85.118 1.671.437 2.54.32l.022-.118-2.018-.47c1.203-.11 2.323-.128 3.384.388.299.146.61.266.897.432.14.08.233.24.348.365.09.098.164.23.276.29.424.225.89.234 1.366.223l.01-.16c.479.15 1.017.702 1.017 1.105-.776 0-1.55-.003-2.325.004-.083 0-.165.061-.247.094.078.046.155.128.235.131m-1-1.147a.118.118 0 0 0-.016.19.18.18 0 0 0 .246.065c.075-.038.148-.078.238-.125-.072-.062-.13-.114-.19-.163-.106-.087-.193-.032-.278.033"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wireshark.svg��������������������������������0000664�0000000�0000000�00000001145�14753064456�0025623�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.95 0C1.33 0 0 1.32 0 2.95v18.1C0 22.68 1.32 24 2.95 24h18.1c1.62 0 2.95-1.32 2.95-2.95V2.95A2.95 2.95 0 0 0 21.05 0zm0 1.09h18.1c1.04 0 1.85.818 1.85 1.86v14h-5.27c-.335-.796-2.57-6.47.283-10.9a.516.517 0 0 0-.443-.794c-5.24.083-8.2 3.19-9.74 6.21-1.35 2.64-1.63 4.91-1.69 5.53H1.09v-14c0-1.04.817-1.86 1.85-1.86zm13.6 5.24c-2.62 5.24.248 11.4.248 11.4a.516.517 0 0 0 .469.301h5.62v3.05a1.84 1.84 0 0 1-1.85 1.86h-18.1c-1.04 0-1.85-.818-1.85-1.86v-3.05h5.39a.516.517 0 0 0 .514-.477s.226-2.8 1.66-5.62c1.34-2.62 3.67-5.17 7.91-5.57z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wise.svg�������������������������������������0000664�0000000�0000000�00000000303�14753064456�0024566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.488 7.469 0 15.05h11.585l1.301-3.576H7.922l3.033-3.507.01-.092L8.993 4.48h8.873l-6.878 18.925h4.706L24 .595H2.543z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wish.svg�������������������������������������0000664�0000000�0000000�00000000470�14753064456�0024576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.864 19.826h-4.107l-3.227-9.393-2.28 9.39H5.143L0 4.65h4.217l4.354 13.128c1.558-4.4 2.534-8.5 1.021-13.128H13.7ZM20.57 4.174a15.7 15.7 0 0 1-3.425 4.171 17.1 17.1 0 0 1 3.425 5.56A17.1 17.1 0 0 1 24 8.345a15.7 15.7 0 0 1-3.43-4.17Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wistia.svg�����������������������������������0000664�0000000�0000000�00000001017�14753064456�0025122�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.69 6.605c.507-3.094-1.24-3.944-1.24-3.944s.073 2.519-4.555 3.053C13.787 6.188 0 5.83 0 5.83l4.43 5.081c1.2 1.378 1.838 1.537 3.187 1.633 1.349.09 4.327.058 6.345-.096 2.206-.169 5.35-.888 7.477-2.535 1.09-.843 2.039-2.016 2.25-3.308m.284 3.205s-.556 1.105-3.33 2.853c-1.182.744-3.637 1.535-6.793 1.84-1.705.166-4.842.031-6.188.031-1.354 0-1.974.285-3.187 1.652L0 21.23s1.55.008 2.72.008 8.488.425 11.735-.468c10.546-2.899 9.518-10.96 9.518-10.96"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wix.svg��������������������������������������0000664�0000000�0000000�00000001354�14753064456�0024435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m0 7.354 2.113 9.292h.801a1.54 1.54 0 0 0 1.506-1.218l1.351-6.34a.17.17 0 0 1 .167-.137c.08 0 .15.058.167.137l1.352 6.34a1.54 1.54 0 0 0 1.506 1.218h.805l2.113-9.292h-.565c-.62 0-1.159.43-1.296 1.035l-1.26 5.545-1.106-5.176a1.76 1.76 0 0 0-2.19-1.324c-.639.176-1.113.716-1.251 1.365l-1.094 5.127-1.26-5.537A1.33 1.33 0 0 0 .563 7.354zm13.992 0a.95.95 0 0 0-.951.95v8.342h.635a.95.95 0 0 0 .951-.95V7.353h-.635zm1.778 0 3.158 4.66-3.14 4.632h1.325c.368 0 .712-.181.918-.486l1.756-2.59a.12.12 0 0 1 .197 0l1.754 2.59c.206.305.55.486.918.486h1.326l-3.14-4.632L24 7.354h-1.326c-.368 0-.712.181-.918.486l-1.772 2.617a.12.12 0 0 1-.197 0L18.014 7.84a1.11 1.11 0 0 0-.918-.486z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wizzair.svg����������������������������������0000664�0000000�0000000�00000004030�14753064456�0025317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.637 10.393h2.318l-2.746 3.592h-2.32zm-.175-.351-2.918 3.82a.29.29 0 0 0-.03.307.3.3 0 0 0 .264.166h2.605l2.943-3.848a.28.28 0 0 0 .027-.293.28.28 0 0 0-.25-.152zM9.127 8.175a.09.09 0 0 1 .074-.042h1.52l.219-1.255a.08.08 0 0 1 .082-.066l1.423-.001q.04 0 .062.024a.1.1 0 0 1 .02.069l-.142.812 6.69.005c.037 0 .062.021.075.043.008.015.018.047-.003.076l-.604.79 4.958-.002a.07.07 0 0 1 .057.034.05.05 0 0 1 0 .058l-4.121 5.395c-.047.06-.045.209-.012.272.034.065.151.156.225.156l2.898.003a.08.08 0 0 1 .063.028.08.08 0 0 1 .019.066l-.22 1.26a.08.08 0 0 1-.083.067H11.299l-.18-.001a1 1 0 0 1 .018.193 1.027 1.027 0 1 1-1.027-1.027 1.03 1.03 0 0 1 .9.532l4.495-5.892c.072-.152.036-.207-.003-.296-.028-.068-.137-.138-.255-.136H12.1l-.804 4.59a.08.08 0 0 1-.08.061H9.791a.08.08 0 0 1-.063-.028.08.08 0 0 1-.018-.066l.873-4.982-3.551 6.963a.18.18 0 0 1-.158.091l-1.21.007c-.043 0-.079-.031-.082-.068l-.334-5.058-2.624 5.029a.18.18 0 0 1-.157.091H1.241a.08.08 0 0 1-.081-.072l-.8-7.677a.1.1 0 0 1 .02-.064.09.09 0 0 1 .063-.023h1.649c.045 0 .083.036.083.084l.247 5.01 2.426-5.051a.08.08 0 0 1 .073-.043l1.503-.007c.042 0 .079.032.081.068l.245 5.048zm1.825-1.715a.35.35 0 0 0-.345.29l-.181 1.032H9.147c-.13 0-.247.07-.314.192l-1.8 3.84-.178-3.712a.35.35 0 0 0-.35-.32H4.868a.35.35 0 0 0-.313.193L2.704 11.83l-.183-3.698a.35.35 0 0 0-.35-.35H.351a.35.35 0 0 0-.259.11.37.37 0 0 0-.091.272l.816 7.842a.35.35 0 0 0 .349.311h1.353a.45.45 0 0 0 .396-.237l2.067-3.96.255 3.886a.35.35 0 0 0 .348.311h1.343a.45.45 0 0 0 .396-.239l2.512-4.925-.486 2.778a.36.36 0 0 0 .076.287.35.35 0 0 0 .268.125h1.592a.35.35 0 0 0 .343-.281l.766-4.372h2.735l-4.133 5.41a1.38 1.38 0 0 0-.884-.32c-.76 0-1.381.62-1.381 1.38 0 .761.62 1.38 1.38 1.38a1.39 1.39 0 0 0 1.374-1.222h10.912a.35.35 0 0 0 .344-.291l.25-1.42a.35.35 0 0 0-.078-.286.35.35 0 0 0-.268-.124l-2.83-.002 4.126-5.4a.33.33 0 0 0 .019-.339.33.33 0 0 0-.295-.179h-4.414l.28-.366a.352.352 0 0 0-.29-.547h-6.44l.088-.494a.36.36 0 0 0-.081-.289.34.34 0 0 0-.265-.121z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wolfram.svg����������������������������������0000664�0000000�0000000�00000002265�14753064456�0025277�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.105 12.001 3.307-3.708-4.854-1.059.495-4.944-4.55 1.996L12 0 9.495 4.287 4.947 2.291l.494 4.944L.587 8.289l3.305 3.707-3.305 3.713 4.854 1.053-.5 4.945 4.553-1.994L12 24l2.504-4.287 4.55 1.994-.495-4.938 4.854-1.06zm1.605 2.792-2.861-.982-1.899-2.471 2.526.942zm.459-6.096-2.602 2.918-3.066-1.141 1.844-2.612zm-4.288-1.324-1.533 2.179.088-3.162 1.788-2.415zm-3.304-2.399 3.091-1.354L15.9 5.998l-2.943 1.049zm1.187 1.772-.096 3.652-3.341 1.12V7.969zM12 1.308l1.969 3.371L12 7.199l-1.971-2.521zM9.423 4.974l1.619 2.072-2.948-1.048L6.332 3.62zm2.245 2.995v3.549l-3.335-1.12-.102-3.652zM7.564 6.39l.086 3.162-1.532-2.179-.341-3.397zM1.83 8.692l3.824-.83 1.839 2.612-3.065 1.136zm2.694 3.585 2.526-.937-1.9 2.471-2.861.977zm-2.093 3.159 2.929-1 3.045.896-2.622.837zm3.28 5.212.392-3.896 3.111-.982.082 3.31zm3.691-5.708-3.498-1.03 2.226-2.892 3.335 1.126zm2.266 7.191-1.711-2.934-.066-2.771 1.777 2.597zm-1.73-6.8L12 12.532l2.063 2.799L12 18.336zm4.104 3.866-1.715 2.934v-3.107l1.782-2.597zm-1.514-7.052 3.341-1.126 2.221 2.892-3.499 1.03zm2.175 6.935.077-3.31 3.116.982.386 3.901zm3.514-2.912-2.625-.837 3.049-.896 2.928 1.003z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wolframlanguage.svg��������������������������0000664�0000000�0000000�00000003172�14753064456�0027001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.335 12.431c-.552.15-.615.18-1.164.337-.589-.337-1.107-.526-1.595-.463.057-.306.151-.525.245-.8 1.036-.15 1.805.4 2.514.926m5.308 7.201a10.8 10.8 0 0 1-1.907 1.52h-.006l-3.702-4.613 3.07.336s1.47.151 1.807 0c.308-.117 1.963-2.449 1.963-2.449s-4.76-3.009-6.384-4.666c.188-2.793-.213-6.508-.213-6.478-1.193 1.195-1.35 1.383-2.544 2.489-.52-1.688-.769-2.27-1.289-3.958-1.568 1.289-2.763 3.464-3.62 6.016a12 12 0 0 0-.55.656q-.171.234-.345.475a16 16 0 0 0-1.101 1.819q-.094.17-.188.35c-.913 1.788-1.676 3.79-2.338 5.604A10.8 10.8 0 0 1 1.205 12c0-2.862 1.138-5.613 3.163-7.64A10.79 10.79 0 0 1 12 1.202a10.8 10.8 0 0 1 7.642 3.158A10.83 10.83 0 0 1 22.797 12a10.81 10.81 0 0 1-3.154 7.633M12 6.691c.832-.801.951-.92 1.75-1.69.064 1.533.032 2.334-.062 4.204-.463-.458-1.381-1.044-1.381-1.044S12.126 7.09 12 6.69m3.834 15.463C9.218 24.547 4.436 20.14 3.417 18.602q.007-.021.006-.039c.92-3.889 2.058-8.535 3.884-9.91.955-1.655 1.231-4.113 2.943-5.401.432 1.288 1.107 3.958 1.57 5.246 2.025 2.025 5.087 4.545 7.146 5.59.212.12.489.98.489.98l-.825 1.038-8.835-.887c-.2-.02-.394-.028-.594-.028-.569 0-1.15.073-1.833.18.432-1.07 1.35-1.936 1.35-1.936s-.855-.519-1.505-.605c.187-.432.681-.989.8-1.138-.244.087-2.026.888-2.208 1.563.857.214 1.47.487 1.47.487s-.95.957-1.132 2.612c0 0 2.82-.43 4.939-.153.063.03.094.03.125.03l1.102.031 3.509 5.84.027.046a.01.01 0 0 1-.011.006m4.652-18.64A12.02 12.02 0 0 0 12 0C8.818 0 5.768 1.27 3.516 3.515a12.03 12.03 0 0 0-3.513 8.484c0 3.183 1.27 6.235 3.512 8.478a11.98 11.98 0 0 0 16.97 0 11.97 11.97 0 0 0 3.512-8.478c0-3.181-1.26-6.233-3.511-8.484z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wolframmathematica.svg�����������������������0000664�0000000�0000000�00000002160�14753064456�0027467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.74 10.7c-.53-1.53.14-4 .14-4S13.6 8.01 11.93 8s-3.8-1.3-3.8-1.3.56 2.46.07 4.04c-.48 1.58-2.47 3.34-2.47 3.34s2.58.23 3.85 1.1S12 18.64 12 18.64s.78-2.35 2.32-3.41c1.54-1.07 3.96-1.15 3.96-1.15s-2-1.84-2.54-3.37zm-2 3.69c-1.09.81-1.75 2.19-1.75 2.19s-.76-1.43-1.8-2.22c-1.05-.79-2.57-.97-2.57-.97a5.06 5.06 0 0 0 1.53-2.37c.46-1.54.18-2.73.18-2.73s.92.7 2.62.7 2.79-.7 2.79-.7-.38 1.58.07 2.7c.44 1.14 1.57 2.41 1.57 2.41s-1.56.17-2.64.99m-.01-4.79s-.95.38-1.77.37c-.82 0-1.7-.37-1.7-.37.05.58 0 1.15-.17 1.7-.27.86-.91 1.64-.91 1.64A4.23 4.23 0 0 1 12 14.95s.45-.85 1.18-1.33c.5-.31 1.05-.55 1.63-.7 0 0-.74-.78-1.02-1.57-.28-.78-.06-1.75-.06-1.75M20.1 12l3.31-3.7-4.85-1.07.5-4.94-4.56 2L12 0 9.5 4.29l-4.55-2 .49 4.95L.59 8.29 3.89 12 .6 15.7l4.85 1.07-.5 4.94 4.55-2L12 24l2.5-4.29 4.56 2-.5-4.94 4.85-1.06-3.3-3.71zm-5.27 3.95C14 16.56 12 20.81 12 20.81s-1.5-3.86-3-4.86c-1.48-1-5.38-1.22-5.38-1.22s2.99-2.37 3.57-4.47c.59-2.1-.37-5.37-.37-5.37s2.9 2.1 5.08 2.1c2.17 0 5.26-2.1 5.26-2.1s-.82 4.5-.53 5.46c.3.96 3.73 4.38 3.73 4.38s-4.7.62-5.54 1.22z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wondershare.svg������������������������������0000664�0000000�0000000�00000000541�14753064456�0026144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.216 17.814 7.704 9.368l.02-.02c.391.239.91.19 1.249-.147l3.041-3.016 7.241 7.184c.397.394.402 1.029.005 1.426zm-5.253-3.017-3.03 3.017L0 9.915l3.746-3.73 7.217 7.187a1.005 1.005 0 0 1 0 1.425M24 9.913l-3.725 3.727L16 9.367l.02-.021c.388.239.903.19 1.239-.146l3.014-3.015z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wondersharefilmora.svg�����������������������0000664�0000000�0000000�00000000522�14753064456�0027515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.475 0A5.463 5.463 0 0 0 0 5.475v13.05A5.463 5.463 0 0 0 5.475 24h13.05A5.463 5.463 0 0 0 24 18.525V5.475A5.463 5.463 0 0 0 18.525 0zm4.552 3.6 4.026 4.029-4.617 4.623-.022-.023a1.09 1.09 0 0 0-.158-1.339L5.999 7.63zM14.528 8l4.027 4.03-8.528 8.536L6 16.536z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/woo.svg��������������������������������������0000664�0000000�0000000�00000003614�14753064456�0024433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.227 4.857A2.23 2.23 0 0 0 0 7.094v7.457a2.236 2.236 0 0 0 2.237 2.237h9.253l4.229 2.355-.962-2.355h7.006c1.236 0 2.237-1 2.237-2.237V7.094c0-1.236-1-2.237-2.237-2.237zm8.08 1.311a.86.86 0 0 1 .535.2.77.77 0 0 1 .304.56.85.85 0 0 1-.098.47c-.382.707-.696 1.894-.951 3.542-.246 1.6-.334 2.846-.275 3.739q.03.367-.118.647a.63.63 0 0 1-.52.353c-.255.02-.52-.098-.775-.362-.913-.933-1.639-2.326-2.169-4.18a184 184 0 0 0-1.413 2.825c-.578 1.11-1.069 1.678-1.481 1.708-.265.02-.49-.206-.687-.677q-.75-1.928-1.619-7.448c-.03-.255.02-.48.157-.657.137-.186.344-.284.618-.304q.75-.06.854.706c.304 2.051.638 3.788.991 5.21l2.149-4.09q.294-.56.736-.589c.431-.03.696.245.804.824.246 1.305.56 2.414.932 3.356.255-2.492.687-4.288 1.295-5.397.148-.274.363-.412.648-.431a1 1 0 0 1 .084-.004zm3.734 1.063q.25 0 .53.06a2.28 2.28 0 0 1 1.57 1.137c.314.53.47 1.168.47 1.933a5.25 5.25 0 0 1-.765 2.777q-.88 1.472-2.305 1.472a2.6 2.6 0 0 1-.53-.059c-.697-.147-1.217-.52-1.57-1.138q-.471-.81-.471-1.943 0-1.515.765-2.767c.599-.981 1.364-1.472 2.306-1.472m6.152 0q.25 0 .53.06c.696.146 1.216.52 1.57 1.137.314.53.47 1.168.47 1.933a5.25 5.25 0 0 1-.765 2.777q-.88 1.472-2.305 1.472a2.6 2.6 0 0 1-.53-.059c-.697-.147-1.217-.52-1.57-1.138q-.471-.81-.471-1.943 0-1.515.765-2.767c.599-.981 1.364-1.472 2.306-1.472m-6.107 1.645c-.307-.002-.606.201-.889.622a3.2 3.2 0 0 0-.52 1.168 3.3 3.3 0 0 0-.069.716c0 .284.06.589.177.893.147.382.343.589.579.638.245.049.51-.06.795-.315.363-.323.608-.804.745-1.452.05-.225.069-.47.069-.726a2.5 2.5 0 0 0-.176-.893c-.148-.382-.344-.588-.58-.637a1 1 0 0 0-.131-.014m6.152 0c-.307-.002-.606.201-.889.622a3.2 3.2 0 0 0-.52 1.168c-.049.225-.069.47-.069.716 0 .284.06.589.177.893.147.382.344.589.579.638.245.049.51-.06.795-.315.363-.323.608-.804.745-1.452.04-.225.07-.47.07-.726a2.5 2.5 0 0 0-.177-.893c-.148-.382-.344-.588-.58-.637a1 1 0 0 0-.131-.014"/></svg>��������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/woocommerce.svg������������������������������0000664�0000000�0000000�00000005570�14753064456�0026151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.754 9.58a.754.754 0 0 0-.754.758v2.525c0 .42.339.758.758.758h3.135l1.431.799-.326-.799h2.373a.757.757 0 0 0 .758-.758v-2.525a.757.757 0 0 0-.758-.758zm2.709.445h.03a.3.3 0 0 1 .179.067.26.26 0 0 1 .103.19.3.3 0 0 1-.033.16q-.194.36-.322 1.199-.124.813-.094 1.267a.4.4 0 0 1-.039.219.21.21 0 0 1-.176.12c-.086.006-.177-.034-.263-.124q-.465-.474-.735-1.416-.324.638-.478.957-.294.563-.502.578-.134.01-.233-.228-.254-.654-.548-2.524a.3.3 0 0 1 .054-.222c.047-.064.116-.095.21-.102q.253-.02.288.238.156 1.043.336 1.766l.727-1.387q.1-.189.25-.199.219-.015.273.28.125.66.315 1.136.13-1.266.44-1.828a.26.26 0 0 1 .218-.147m1.293.36a1 1 0 0 1 .18.02q.35.074.53.386c.107.18.161.395.161.654q0 .513-.26.94-.299.499-.781.5a1 1 0 0 1-.18-.022.76.76 0 0 1-.531-.384 1.3 1.3 0 0 1-.158-.659q0-.514.258-.937.303-.499.78-.498zm2.084 0a1 1 0 0 1 .18.02q.353.074.53.386c.107.18.16.395.16.654q0 .513-.259.94-.299.499-.781.5a1 1 0 0 1-.18-.022.76.76 0 0 1-.531-.384 1.3 1.3 0 0 1-.16-.659q0-.514.26-.937.303-.499.78-.498zm4.437.047q-.459 0-.718.304-.258.306-.256.856 0 .592.256.906.255.316.744.316.473-.001.728-.316.256-.315.256-.883c0-.568-.087-.673-.26-.879q-.262-.303-.75-.304m-1.466.002a1.13 1.13 0 0 0-.84.326q-.333.33-.332.838-.001.545.328.88t.861.336q.156.001.346-.052v-.54a1.1 1.1 0 0 1-.303.051.55.55 0 0 1-.422-.177.7.7 0 0 1-.16-.48q0-.287.156-.468a.5.5 0 0 1 .397-.181q.153-.001.332.049v-.537a1.4 1.4 0 0 0-.363-.045m12.414 0a1.14 1.14 0 0 0-.84.326q-.333.33-.332.838-.001.545.328.88.33.335.861.336.156.001.346-.052v-.54a1.1 1.1 0 0 1-.303.051.55.55 0 0 1-.422-.177.7.7 0 0 1-.16-.48q0-.287.156-.468a.5.5 0 0 1 .397-.181q.153-.001.332.049v-.537a1.4 1.4 0 0 0-.363-.045m-9.598.06-.29 2.264h.579l.156-1.559.395 1.559h.412l.379-1.555.164 1.555h.603l-.304-2.264h-.791l-.12.508q-.046.195-.087.4l-.067.352a30 30 0 0 0-.258-1.26zm2.768 0-.29 2.264h.579l.156-1.559.396 1.559h.412l.375-1.555.165 1.555h.603l-.305-2.264h-.789l-.119.508q-.046.195-.086.4l-.066.352a30 30 0 0 0-.26-1.26zm3.988 0v2.264h.611v-1.031h.012l.494 1.03h.645l-.489-1.019a.61.61 0 0 0 .37-.552.6.6 0 0 0-.25-.506q-.25-.185-.68-.186zm3.377 0v2.264H24v-.483h-.63v-.414h.54v-.468h-.54v-.416h.626v-.483zm-4.793.004v2.264h1.24v-.483h-.627v-.416h.541v-.468h-.54v-.415h.622v-.482zm2.025.432q.219.003.313.072.093.068.091.227 0 .234-.404.24zm-15.22.011q-.156-.001-.301.211a1.08 1.08 0 0 0-.2.639c0 .096.02.2.06.303.049.13.117.198.196.215q.125.023.27-.106.183-.164.252-.492.023-.116.023-.246 0-.147-.06-.303c-.05-.13-.116-.198-.196-.215a.3.3 0 0 0-.045-.006zm2.083 0q-.155-.001-.3.211a1.08 1.08 0 0 0-.2.639c0 .096.02.2.06.303.049.13.117.198.196.215q.125.023.27-.106.183-.164.252-.492.021-.116.023-.246 0-.147-.06-.303c-.05-.13-.116-.198-.196-.215a.3.3 0 0 0-.045-.006m4.428.006c.233 0 .354.218.354.66-.004.273-.038.46-.098.553a.29.29 0 0 1-.262.139.27.27 0 0 1-.242-.139q-.084-.14-.084-.562c0-.436.11-.65.332-.65Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wordpress.svg��������������������������������0000664�0000000�0000000�00000001753�14753064456�0025661�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.469 6.825c.84 1.537 1.318 3.3 1.318 5.175 0 3.979-2.156 7.456-5.363 9.325l3.295-9.527c.615-1.54.82-2.771.82-3.864 0-.405-.026-.78-.07-1.11m-7.981.105c.647-.03 1.232-.105 1.232-.105.582-.075.514-.93-.067-.899 0 0-1.755.135-2.88.135-1.064 0-2.85-.15-2.85-.15-.585-.03-.661.855-.075.885 0 0 .54.061 1.125.09l1.68 4.605-2.37 7.08L5.354 6.9c.649-.03 1.234-.1 1.234-.1.585-.075.516-.93-.065-.896 0 0-1.746.138-2.874.138-.2 0-.438-.008-.69-.015C4.911 3.15 8.235 1.215 12 1.215c2.809 0 5.365 1.072 7.286 2.833-.046-.003-.091-.009-.141-.009-1.06 0-1.812.923-1.812 1.914 0 .89.513 1.643 1.06 2.531.411.72.89 1.643.89 2.977 0 .915-.354 1.994-.821 3.479l-1.075 3.585-3.9-11.61zM12 22.784c-1.059 0-2.081-.153-3.048-.437l3.237-9.406 3.315 9.087q.036.078.078.149c-1.12.393-2.325.609-3.582.609M1.211 12c0-1.564.336-3.05.935-4.39L7.29 21.709A10.79 10.79 0 0 1 1.211 12M12 0C5.385 0 0 5.385 0 12s5.385 12 12 12 12-5.385 12-12S18.615 0 12 0"/></svg>���������������������mkdocs-material-9.6.4/material/templates/.icons/simple/workplace.svg��������������������������������0000664�0000000�0000000�00000001374�14753064456�0025617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.268 10.541C23.268 4.715 18.544 0 12.728 0c-1.614 0-3.191.317-4.663.952a12 12 0 0 0-3.817 2.574 11.92 11.92 0 0 0-3.516 8.478 11.92 11.92 0 0 0 3.516 8.48 12 12 0 0 0 3.817 2.573 11.9 11.9 0 0 0 4.671.943c1.56 0 3.05-.3 4.416-.837l-.908-2.292a9.5 9.5 0 0 1-3.508.67 9.48 9.48 0 0 1-6.743-2.794A9.48 9.48 0 0 1 3.2 12.004a9.48 9.48 0 0 1 2.794-6.742 9.5 9.5 0 0 1 6.743-2.794 8.072 8.072 0 0 1 6.734 12.524l-2.098-5.165c-.308-.758-.679-1.895-2.071-1.895s-1.763 1.146-2.063 1.895l-1.93 4.769-2.591-6.54H5.993l3.226 7.95c.326.802.688 1.895 2.09 1.895 1.4 0 1.753-1.093 2.08-1.895l1.912-4.724 1.921 4.724c.388.978.802 1.895 2.08 1.895.908 0 1.481-.582 1.798-.96a10.5 10.5 0 0 0 2.168-6.4"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/worldhealthorganization.svg������������������0000664�0000000�0000000�00000023411�14753064456�0030566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.021 1.412c-1.064 0-.611 1.579-.527 2.093 0 .025.086 3.57.102 4.379q.245-.065.477-.12l.321-.08c.015-.782.094-4.166.096-4.184.07-.551.628-2.088-.469-2.088m-.311 12.04c.119-.04.238-.075.345-.11l.23-.071c0-.228.068-3.372.08-3.944a7 7 0 0 0-.732.211zm.392 1.193c-.04.015-.144.059-.21.081-.065.023-.156.06-.156.085 0 .024.066 3.62.066 3.699 0 .744.379.749.379 0 0-.053.076-3.916.076-3.916zM11.247 4.5a5.5 5.5 0 0 0-.834.339c-.297.098-.714.119-1.15.588a6 6 0 0 0-.397.51c-.13.187-.137.49-.238.653-.138.238-.105.37-.105.37v.007a.63.63 0 0 1-.16.295.6.6 0 0 1-.554.221c.198.1.476-.039.476-.039a4 4 0 0 0-.105.393c.222-.501.426-.684.489-.736.095.022.292.013.659-.197.414-.238 1.037-.625 1.213-.87a1.6 1.6 0 0 1 .733-.554q-.018-.565-.027-.98M9.499 6.063l-.215.046.257-.413.3.01zm1.28 8.64c0 .466.345.714.689.913 0-.079-.014-.801-.014-.813.007-.144.146-.231.26-.285a6 6 0 0 1 .545-.208c.103-.036.19-.07.287-.099.69-.208 1.49-.476 1.49-1.31 0-.832-.685-1.19-1.429-1.443 0 .268-.013.66-.019.93.317.119.526.275.526.514 0 .3-.321.476-.549.562a6 6 0 0 1-.28.097 9 9 0 0 0-.565.19 3 3 0 0 0-.28.12c-.328.164-.662.406-.661.832m4.575-8.15c0-.853-.619-1.8-2.136-2.135a4 4 0 0 0-.463-.054c0 .129-.01.424-.01.424 0 .093-.01.434-.012.508a2 2 0 0 1 .292.04c.882.211 1.197.715 1.197 1.217 0 .81-.692 1.117-1.547 1.347l-.282.074c-.258.065-.524.126-.787.197l-.28.08c-.943.287-1.755.742-1.755 1.904s.926 1.588 1.83 1.866l-.02-1.002c-.399-.187-.68-.433-.68-.848 0-.414.256-.65.648-.833a3 3 0 0 1 .279-.108 9 9 0 0 1 .743-.206l.282-.068c1.273-.297 2.701-.696 2.701-2.403m-2.848 9.536c.428.217.824.517.989 1.085.073-.94-.455-1.348-.977-1.623zm7.014-10.8c.46.547 1.263.87 1.733 1.419-.337-1.623-1.59-2.947-3.07-3.264.723.544.879 1.3 1.337 1.845M1.724 9.402c1.02-2.22 2.542-1.75 3.186-3.864-.357.648-2.024.922-2.798 2.585.394-.988.196-2.5.863-3.315C.982 6.278 1.83 8.656 1.724 9.402m1.847 5.324c.183.864-.357 2.112.5 3.304-.886-.992-2.762-1.245-3.526-2.754.952 3.69 3.452 2.928 4.57 3.73-.924-1.328-.168-2.21-1.544-4.28zm-.287 2.315c-.546-2.06.427-2.774-.317-4.75-.077 1.114-.82 1.657-.319 3.69C1.764 14.26.396 13.617 0 12.434c.027 3.235 2.627 3.715 3.284 4.607m3.992 3.452c-.765-1.06-.238-1.658-2.392-3.581.454.702-.015 1.585 1.435 2.958-1.419-.833-3.375-.476-4.32-1.596 1.622 3.103 4.47 1.837 5.277 2.222zm10.405-.622c1.45-1.374.98-2.262 1.435-2.96-2.15 1.924-1.627 2.523-2.392 3.582.807-.386 3.655.88 5.275-2.219-.942 1.122-2.9.763-4.318 1.6zm2.248-1.844c.854-1.19.317-2.44.5-3.304-1.376 2.07-.62 2.952-1.547 4.285 1.124-.801 3.614-.042 4.57-3.73-.764 1.507-2.637 1.76-3.523 2.752zm-3.435 2.612a10.6 10.6 0 0 0-2.35-.357 5.7 5.7 0 0 0-2.143.365 5.7 5.7 0 0 0-2.142-.365 10.6 10.6 0 0 0-2.351.357c-1.294.344-2.411.61-3.386.12.934.833 2.023 1.124 3.598.952 1.31-.14 2.37-.797 3.605-.787h.049a6.6 6.6 0 0 0-2.038 1.584l.595.08s.628-1.26 2.07-1.59c1.443.33 2.07 1.59 2.07 1.59l.595-.08a6.6 6.6 0 0 0-2.038-1.576h.05c1.235-.01 2.293.647 3.603.787 1.575.17 2.665-.126 3.6-.952-.975.487-2.093.22-3.387-.124zM3.055 10.057c-.533 1.024-1.361 1.258-1.27 3.377C1.335 11.55.266 10.854.28 9.652c-.743 3.13 1.242 3.502 1.752 4.814-.075-1.88 1.124-2.26 1.023-4.41M3.8 7.64c-.185.26-.315.37-.81.778a4.02 4.02 0 0 0-1.443 2.353C1.598 9.625.89 7.976 1.36 6.774c-1.824 2.577.105 4.12.173 5.054.474-1.796 1.561-1.81 2.267-4.187m18.651 3.131A4.03 4.03 0 0 0 21.01 8.42c-.495-.408-.625-.519-.81-.778.705 2.38 1.793 2.39 2.26 4.187.069-.933 1.998-2.477.172-5.054.476 1.202-.232 2.85-.18 3.998M24 12.44c-.397 1.183-1.764 1.825-2.649 3.551.501-2.037-.238-2.58-.319-3.69-.743 1.979.238 2.69-.316 4.75.658-.901 3.258-1.381 3.285-4.616zm-3.05-2.382c-.102 2.15 1.099 2.53 1.023 4.404.51-1.31 2.5-1.683 1.752-4.813.014 1.2-1.055 1.904-1.501 3.775.083-2.108-.745-2.342-1.275-3.366M4.481 5.296c.461-.547.617-1.3 1.338-1.845-1.48.317-2.737 1.642-3.07 3.264.464-.555 1.268-.877 1.728-1.425zm14.613.248c.644 2.115 2.166 1.645 3.185 3.864-.106-.746.743-3.124-1.25-4.594.667.817.47 2.327.863 3.315-.777-1.669-2.44-1.943-2.803-2.591zm-5.17 1.195a5 5 0 0 0-1.217-.328v.272a4.8 4.8 0 0 1 1.119.307.7.7 0 0 0 .099-.251m-.308-2.619.081-.073-.154-.065-.407-.008-.106.073-.238-.02v.058a4 4 0 0 1 .419.044l.198-.017zm-.789 8.778c0-.069-.091-.137-.227-.201h-.025c0 .056 0 .332-.008.467.168-.076.26-.157.26-.266M8.114 7.721a1 1 0 0 1 .034-.15.7.7 0 0 1-.167.017zm3.895 11.973a8.303 8.303 0 0 0 .847-16.56c0 .016 0 .033-.01.048l-.044.218a8 8 0 0 1 4.836 2.261l-.917.917.035-.162-.12-.052-.163-.01.034-.106-.11-.375-.23-.25-.713-.378-.062.065-.13.038a2.14 2.14 0 0 1 .379 1.204v.163l.357.446-.167.038.11.167-.312.312-.126-.238a2.1 2.1 0 0 1-.238.467l.07.065-.965.965a3 3 0 0 0-.181-.16 5 5 0 0 1-.284.118l.082.065-.048.048-.12.063-.041.12-.07-.07-.204.067.056.09.14-.038.092.008.007-.05.07-.036.022-.042.126-.036h.099q.03.026.057.053l-.388.369-.028-.04-.4.065-.09.09-.087.01.248-.238-.088-.044-.232.31.068-.008v.12l.084.032.017.12-.14-.028-.145.026-.357-.18-.028 1.417c.833.278 1.708.68 1.708 1.738a1.31 1.31 0 0 1-.595 1.116l-.018.012-.026.018c-.336.221-.767.34-1.14.457l-.011.74c.595.295 1.315.725 1.248 1.955-.008.302-.126.385-.227.413a6 6 0 0 1-1.071.17v.27a6.65 6.65 0 0 0 4.14-1.828l.963.964a8.02 8.02 0 0 1-11.105.023l.964-.964a6.65 6.65 0 0 0 4.082 1.803v-.27a6.38 6.38 0 0 1-3.895-1.723l.257-.258.358.04.188-.202.492.017.073-.17-.018-.073a5 5 0 0 0 2.51 1.003v-.271a4.75 4.75 0 0 1-2.704-1.24l.965-.966a3.4 3.4 0 0 0 .782.525 1 1 0 0 1 .098-.253 3.1 3.1 0 0 1-.69-.463l.969-.967a1.8 1.8 0 0 0 .516.287v-.29a1.5 1.5 0 0 1-.319-.19l.273-.272a7 7 0 0 1-.288-.093l-.184.183a1.5 1.5 0 0 1-.23-.344 3.3 3.3 0 0 1-.477-.254 1.87 1.87 0 0 1-.903-1.64 1.97 1.97 0 0 1 .39-1.25l-.961-.962a4.75 4.75 0 0 1 2.575-1.266q.002-.14-.006-.272a5.02 5.02 0 0 0-2.76 1.35l-.163-.16a5 5 0 0 0-.13.252l.103.103a5.01 5.01 0 0 0-1.364 3.355H5.61a6.38 6.38 0 0 1 1.77-4.325l.433.435h.062a.7.7 0 0 0 .246-.072L7.57 6.8a6.5 6.5 0 0 1 .952-.76 2 2 0 0 1 .068-.2 3 3 0 0 1 .208-.28A6.7 6.7 0 0 0 7.38 6.605l-.964-.964a8 8 0 0 1 4.773-2.237l-.012-.06-.039-.207a8.304 8.304 0 0 0 .867 16.562zm1.799-5.73v-.008zm4.02-8.109a8 8 0 0 1 2.22 5.456h-1.37a6.6 6.6 0 0 0-.714-2.913l.012-.024.094.05.023-.073-.238-.427-.29-.4-.342-.28a8 8 0 0 0-.366-.42zm-1.743 1.747.327.014.079.094-.04.139.451.286.09-.011.583.667.238-.084a6.4 6.4 0 0 1 .595 2.604h-1.364a5 5 0 0 0-.127-1.037l.063-.085.084-.427-.064-.46-.164-.528-.381-.557.093.049.046-.047-.306-.207-.02.068.306.437.172.357.12.357.039.238.063.402-.12.009s-.131-.247-.172-.348l.06-.092-.118-.166v-.167l-.084-.105-.103.013a3 3 0 0 0-.119-.203l.074.037.019-.02-.04-.085.09-.05-.04-.05-.133.05.049-.207-.079-.045-.07.165a5 5 0 0 0-.496-.63zM15.81 10.8l.245-.134.25-.038.055-.119.139-.083.054-.12.042-.2a4 4 0 0 1 .055.215l-.132.394v.133l.192-.255a4.6 4.6 0 0 1 .067.714h-1.19l-.027-.104.14-.11.026-.067.061-.045.162-.017.017-.071zm-1.638-.937.12-.029v-.028l-.12-.082.042-.257.146-.147a3 3 0 0 1 .254.33l-.051.158-.134-.095-.101.027.05.094h.05l-.056.14-.038-.056zm.523 4.531-.296-.083-.088.032-.166-.127-.157-.056c.077-.056.152-.12.225-.176l.238.17.185.099.092.091zm-.15-5.263.965-.965a5 5 0 0 1 .595.802L15.986 9l.006.216.357.228a5 5 0 0 1 .226.61l-.063.092-.13.084-.033.2-.09.05-.074.088-.075-.028h-.133l.077-.104.056-.273.088-.055-.249-.256-.194.066-.044.182-.119.132-.127-.105-.045-.112.072-.045.04.074.06-.023-.026-.119h-.085l-.006.05-.056.011-.303-.356-.102-.077.039-.043.09-.031-.083-.033s-.106.023-.119.023l.06.077h-.152a3 3 0 0 0-.304-.393m.491 5.136-.13-.131.1-.13.125-.257-.048-.071.083-.19-.01-.172-.05-.178-.119-.041-.044.1-.071-.02a3.2 3.2 0 0 0 .286-.498l.119-.052.069-.093.033.038.083-.1-.066-.083.06-.017.112.045h.21l.128-.067.334-.088-.063-.11-.022-.135.179.079.066-.04-.033-.138-.215.087-.238-.05-.184-.375h1.044a4.75 4.75 0 0 1-1.318 3.105l-.142-.144.062-.192-.112-.423zm.185 2.662.128-.276-.05-.119.19-.166v-.1l-.162-.102.133-.265.2-.262-.2-.215h-.15l-.093-.151a8 8 0 0 0 .238-.206l.965.965a6.5 6.5 0 0 1-1.2.899zm1.204-1.273.107-.12-.1-.528-.07-.027.043-.09-.228-.07-.044.187-.023.238-.048.044-.416-.416a5.02 5.02 0 0 0 1.397-3.294h1.365a6.37 6.37 0 0 1-1.797 4.26zm.376.375a6.65 6.65 0 0 0 1.877-4.45h1.364a8 8 0 0 1-2.275 5.415zM8.59 14.708a5 5 0 0 1-.284-.319l.042-.345-.144-.33-.036-.518-.161-.315.033-.195-.195-.375-.17-.085.068-.2-.07-.156.07-.18h.187l.066-.108h.319l.049.094-.06.33-.038.055.119.261-.079.043-.054-.07-.024.027.055.155.094.18h.044l.03-.176-.045-.06v-.109l-.014-.226.06-.397-.065-.107h.229a3.4 3.4 0 0 0 .939 2.162zm-.905-2.667-.128.202h-.222l-.018-.013a5 5 0 0 1-.069-.648h.41l-.098.328zm.449-.937.025-.271.162-.094.289.051.044.053a3 3 0 0 0-.044.469h-.327zm1.389 1.02.068-.034.17.134-.077.063.2.134-.004-.143.107-.177.112.119.119.164-.22.045.095.188.144-.076-.014-.06.107-.072.063-.298a1.8 1.8 0 0 0 .313.476l-.964.965a3.12 3.12 0 0 1-.845-1.812l.197.21h.186zm-.993-3.982.964.965a3.4 3.4 0 0 0-.511.737h-.067l-.136.042h-.047l-.144.134.182-.038.164-.042-.029.063-.144.088H8.69l-.212.162-.205-.016-.296.552.058.11-.16.18-.026.237h-.604a4.75 4.75 0 0 1 1.285-3.174M7.283 15.42l.306.18.063.043-.221.221q-.155-.16-.3-.332zm-.306-3.838c0 .132.017.264.031.394l-.167.038-.034.169-.348.443.009.608-.357.119h-.196a6.4 6.4 0 0 1-.304-1.773zM5.63 13.346l-.08-.016-.075-.084-.383-.034.119.16-.357-.066.092-.085-.086-.086-.256.112-.092.169.036.389.295.7.142.221.08.03-.222-.422-.049-.216.05-.052-.03-.12.134.019.206.311.05.02v-.227l.084.049.018.119.217.057.09-.064.031.021v.166l.095.119.12.026.252.427.153.043.048-.2a6.7 6.7 0 0 0 .94 1.214l-.964.964a8 8 0 0 1-2.311-5.428h1.365a6.7 6.7 0 0 0 .288 1.764m.595-7.514.964.964a6.66 6.66 0 0 0-1.85 4.515H3.975a8 8 0 0 1 2.244-5.48zm9.879-.498-.082-.133-.179-.09-.14.106.18.096.191.146zm-.834 3.85v.105l.237-.07.073-.144-.163-.214.087-.131.22.157.04-.032-.043-.031-.05-.095.09-.053-.088-.119-.207.105-.07.13-.04.113.09.153-.033.072zm-9.868 6.12.018-.061-.119-.267-.145-.053zm5.58-5.127c0 .229.14.39.393.53v-.103l-.16-.159.085-.154.069-.019c0-.266-.01-.565-.012-.608h-.012c-.235.131-.363.288-.363.513"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wpengine.svg���������������������������������0000664�0000000�0000000�00000000774�14753064456�0025447�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.145 0v5.867L9.99 7.71h4.022l1.845-1.844V0zm8.145 0v5.867l1.845 1.844h5.864V.001zM1.845 0 0 1.845v5.866h7.712V0zM0 8.146v7.71h5.866l1.845-1.844V8.145zm18.133 0L16.29 9.989v4.022l1.845 1.845H24V8.145zm-6.147 2.75a1.105 1.105 0 0 0 .014 2.21A1.105 1.105 0 0 0 13.105 12a1.105 1.105 0 0 0-1.118-1.104zM0 16.29V24h5.866l1.845-1.842v-4.023L5.866 16.29zm9.988 0-1.843 1.845V24h7.71v-5.866L14.01 16.29zm6.3 0V24H24v-5.865l-1.842-1.845z"/></svg>����mkdocs-material-9.6.4/material/templates/.icons/simple/wpexplorer.svg�������������������������������0000664�0000000�0000000�00000000710�14753064456�0026030�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 12A12 12 0 1 1 12 0a12.01 12.01 0 0 1 12 12m-1.5 0A10.5 10.5 0 1 0 12 22.5 10.516 10.516 0 0 0 22.5 12M7.542 5.841l4.074 1.739-1.739 4.073L5.8 9.914zm5.158 7.926 2.185 4.406H14.2l-2.343-4.687-2.295 4.687h-.656l2.4-5.01-1.046-.441.282-.656 3.215 1.364-.281.67Zm-.553-5.451 3.216 1.378-1.378 3.2-3.2-1.364 1.364-3.215Zm3.764 2.011 2.56 1.082-1.1 2.546-2.545-1.083 1.082-2.545Z"/></svg>��������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wprocket.svg���������������������������������0000664�0000000�0000000�00000001235�14753064456�0025462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.723.666c-.08-.276.08-.47.356-.47h2.283c.16 0 .31.137.356.274l1.675 6.6h.08L11.491.218A.37.37 0 0 1 11.824 0h.356c.172 0 .287.092.333.218l3.018 6.85h.08L17.286.47a.4.4 0 0 1 .356-.275h2.284c.275 0 .424.195.355.47l-3.683 13.082a.37.37 0 0 1-.356.275h-.31a.38.38 0 0 1-.333-.218l-3.568-7.963h-.058l-3.545 7.963a.4.4 0 0 1-.333.218h-.31a.38.38 0 0 1-.356-.275zm8.308 7.917-2.594 5.818a1.7 1.7 0 0 1-.344.448v.004a1.47 1.47 0 0 1-.688.34l1.4 8.687c.091.16.263.16.367 0l1.79-2.72 1.64 2.708c.104.16.265.16.368 0l1.584-8.698a1.5 1.5 0 0 1-.832-.618l-.02-.03a1 1 0 0 1-.066-.12l-.609-1.366h-.003Z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/writedotas.svg�������������������������������0000664�0000000�0000000�00000001605�14753064456�0026012�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.812 5.139 2.179 7.509a168 168 0 0 1 .666 2.459h.025q.081-.557.273-1.204l.353-1.176 1.05-3.442.213-.671q.093-.298.192-.551.1-.251.194-.478.092-.226.213-.451v-.028l-1.569.105V5.139h5.169V6.88q-.546 0-.956.358a3.6 3.6 0 0 0-.711.85 6.3 6.3 0 0 0-.493.984 23 23 0 0 0-.286.758l-3.096 8.997h-2.884L11.47 13.02q-.08-.214-.199-.606a47 47 0 0 1-.247-.85q-.126-.46-.265-.95-.139-.492-.259-.931h-.026q-.08.572-.26 1.283-.178.711-.372 1.388-.192.677-.358 1.223-.167.545-.246.771l-1.501 4.479h-2.7L1.742 9.392a28 28 0 0 1-.472-1.39 4 4 0 0 1-.113-.418l-.094-.425L0 7.212V5.139h6.526V6.88q-.572.04-.806.345-.232.306-.231.784-.014.227.032.478a5 5 0 0 0 .128.519l.916 3.322q.16.599.312 1.256t.247 1.336h.026l.134-.598a40 40 0 0 1 .331-1.429q.107-.418.254-.922l1.993-6.832zM24 16.628a2.232 2.232 0 1 1-4.464 0 2.232 2.232 0 1 1 4.464 0"/></svg>���������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wwe.svg��������������������������������������0000664�0000000�0000000�00000001011�14753064456�0024416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 1.047 15.67 18.08l-3.474-8.53-3.474 8.53L.393 1.048l3.228 8.977 3.286 8.5C3.874 19.334 1.332 20.46 0 21.75c.443-.168 3.47-1.24 7.409-1.927l1.21 3.129 1.552-3.518a37 37 0 0 1 3.96-.204l1.644 3.722 1.4-3.62c2.132.145 3.861.426 4.675.692 0 0 .92-1.962 1.338-2.866a55 55 0 0 0-5.138-.092l2.722-7.042zm-21.84.026L8.64 13.86l3.568-9.155 3.567 9.155 6.481-12.788-6.433 8.452-3.615-8.22-3.615 8.22zm10.036 13.776 1.115 2.523a43 43 0 0 0-2.363.306Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wwise.svg������������������������������������0000664�0000000�0000000�00000002302�14753064456�0024756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 12a1.384 1.384 0 1 1-2.769 0A1.384 1.384 0 0 1 6 12m7.846-5.538a1.846 1.846 0 1 1-3.692 0 1.846 1.846 0 0 1 3.692 0M1.846 12a.923.923 0 0 1-.923.923.924.924 0 1 1 .923-.923M24 12a.923.923 0 1 1-1.846 0A.923.923 0 0 1 24 12m-3.23 0A1.385 1.385 0 1 1 18 12a1.385 1.385 0 0 1 2.77 0m-8.226 2.836c.003.535.256 1.013.658 1.313a1.828 1.828 0 0 1-1.171 3.235H12a1.83 1.83 0 0 1-1.171-3.235c.4-.3.661-.778.658-1.314v-.128a1.65 1.65 0 0 0-.658-1.315A1.83 1.83 0 0 1 12 10.154h.031c1.01 0 1.83.818 1.83 1.83 0 .565-.258 1.072-.659 1.408a1.62 1.62 0 0 0-.658 1.315zm3.692-2.77c.004.535.256 1.014.658 1.314a1.828 1.828 0 0 1-1.171 3.235h-.03a1.829 1.829 0 0 1-1.172-3.235c.4-.3.662-.778.658-1.314v-.128a1.65 1.65 0 0 0-.658-1.315 1.83 1.83 0 0 1 1.171-3.238h.032c1.01 0 1.829.817 1.829 1.83 0 .565-.258 1.072-.658 1.408a1.62 1.62 0 0 0-.658 1.315zm-7.385 0c.003.535.256 1.014.658 1.314a1.83 1.83 0 0 1 .658 1.405c0 1.014-.819 1.83-1.83 1.83h-.03a1.829 1.829 0 0 1-1.171-3.235c.4-.3.661-.778.657-1.314v-.128a1.65 1.65 0 0 0-.657-1.315 1.83 1.83 0 0 1 1.171-3.238h.03c1.011 0 1.83.817 1.83 1.83 0 .565-.257 1.072-.658 1.408a1.62 1.62 0 0 0-.658 1.315z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wxt.svg��������������������������������������0000664�0000000�0000000�00000001507�14753064456�0024450�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.18 0c-2.081 0-3.807 1.608-4 3.64H4.019A4.033 4.033 0 0 0 0 7.66v4.017h1.498a2.13 2.13 0 0 1 2.143 2.144 2.13 2.13 0 0 1-2.143 2.143H0V24h8.036v-1.498a2.13 2.13 0 0 1 2.144-2.143 2.13 2.13 0 0 1 2.143 2.143V24h4.018a4.03 4.03 0 0 0 4.018-4.018v-2.163C22.392 17.627 24 15.901 24 13.821s-1.608-3.807-3.64-4V7.66a4.03 4.03 0 0 0-4.019-4.018h-2.162C13.986 1.608 12.26 0 10.179 0m0 1.875a2.13 2.13 0 0 1 2.143 2.143v1.498h4.018a2.13 2.13 0 0 1 2.143 2.143v4.018h1.498a2.13 2.13 0 0 1 2.143 2.144 2.13 2.13 0 0 1-2.143 2.143h-1.498v4.018a2.13 2.13 0 0 1-2.143 2.143h-2.162c-.193-2.033-1.919-3.64-4-3.64s-3.806 1.607-3.998 3.64H1.875V17.82c2.033-.192 3.64-1.918 3.64-3.998s-1.607-3.807-3.64-4V7.66a2.13 2.13 0 0 1 2.143-2.143h4.018V4.018a2.13 2.13 0 0 1 2.144-2.143"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wykop.svg������������������������������������0000664�0000000�0000000�00000005565�14753064456�0025007�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.707 17.486 1.406-.68zl.69 1.384 1.407-.68-.69-1.384Zm-.69-1.384 1.407-.68zl.691 1.384 1.406-.68-.69-1.384Zm-.691-1.384 1.406-.677zl.69 1.385 1.407-.681-.691-1.381Zm-.69-1.384 1.406-.678zl.69 1.384 1.407-.677-.69-1.385Zm-.69-1.381 1.406-.68zl.69 1.383 1.406-.679-.69-1.383Zm-.692-1.384 1.406-.68zl.69 1.384 1.407-.68-.69-1.384Zm6.981 3.494 1.407-.68zl.69 1.384 1.407-.68-.69-1.384zm-.69-1.382 1.406-.68zl.69 1.384 1.407-.68-.691-1.383zm-.691-1.383 1.406-.68zl.69 1.383 1.407-.68-.69-1.384Zm-.69-1.382 1.406-.68zl.691 1.383 1.406-.68-.69-1.383Zm-.691-1.384 1.406-.68zl.69 1.384 1.407-.68-.69-1.383Zm6.98 3.495 1.406-.681-1.406.68.69 1.384 1.407-.68-.69-1.384zm-.69-1.385 1.406-.68zl.691 1.385 1.406-.681-.69-1.385zm-.691-1.382 1.406-.68zl.69 1.383 1.407-.68-.69-1.383Zm-.69-1.385 1.406-.68zl.69 1.385 1.407-.68-.69-1.384Zm-.691-1.382 1.406-.68zl.69 1.384 1.407-.68-.691-1.385ZM5.66 9.89l1.405-.68zl.69 1.385 1.407-.68-.69-1.384Zm.69 1.385 1.406-.68zl.69 1.383 1.407-.678-.69-1.385zm.69 1.382 1.407-.678zl.691 1.385 1.406-.681-.69-1.383zm.691 1.385 1.406-.681zl.69 1.383 1.407-.679-.69-1.384Zm.69 1.38 1.407-.678zl.69 1.384 1.406-.68-.69-1.384Zm.691 1.385 1.406-.68zl.69 1.384 1.407-.681-.69-1.383zm1.406-.68 1.407-.679-1.407.68.691 1.383 1.406-.678-.69-1.385zm1.407-.679 1.406-.68zl.69 1.385 1.407-.681-.69-1.385zM9.879 7.853l1.406-.681-1.406.68.69 1.384 1.407-.68-.69-1.384Zm.69 1.382 1.407-.68zl.69 1.383 1.407-.68-.691-1.383Zm.69 1.383 1.407-.68zl.69 1.384 1.407-.68-.69-1.383zm.692 1.384 1.406-.681-1.406.68.69 1.384 1.407-.679-.69-1.384zm.69 1.382 1.406-.679-1.407.679.691 1.383 1.406-.678-.69-1.384zm.69 1.383 1.406-.678zl.69 1.385 1.407-.679-.69-1.384zm1.406-.678 1.407-.679zl.69 1.384 1.407-.68-.69-1.384zm1.407-.679 1.406-.68zl.69 1.384 1.407-.68-.691-1.384zm1.405-.68 1.406-.68zl.69 1.384 1.407-.681-.69-1.383zm-.69-1.384 1.407-.68zl.69 1.384 1.407-.68-.69-1.384zm-.69-1.385 1.406-.677zl.69 1.385 1.407-.68-.691-1.383Zm-.69-1.38 1.405-.68-1.406.68.69 1.383 1.407-.679-.69-1.383Zm-.691-1.385 1.406-.678zl.69 1.384 1.406-.678-.69-1.384Zm-.691-1.384 1.406-.677zl.69 1.385 1.407-.678-.69-1.384Zm7.25 5.263q0-1.748-.132-3.017-.133-1.27-.498-1.988-.464-1.405-2.088-1.785-1.293-.344-5.003-.342h-3.182q-3.71 0-5.036.342-1.59.378-2.154 1.785-.63 1.508-.629 5.005v1.887q0 3.498.63 5.006.596 1.373 2.186 1.75 1.292.343 5.003.342h3.182q3.677 0 4.97-.342 1.624-.376 2.121-1.75.365-.72.498-1.987a30 30 0 0 0 .133-3.02zm2.456 5.628q-.2 1.612-.663 2.676a5.6 5.6 0 0 1-1.326 1.765 5.2 5.2 0 0 1-1.955 1.081v.034q-.963.309-2.487.48-1.525.172-3.713.172h-3.215q-5.04 0-6.995-.96-2.188-.996-2.952-3.672-.264-.995-.381-2.78Q0 13.716 0 11.074 0 8.914.182 7.3q.183-1.613.646-2.642a5.7 5.7 0 0 1 1.31-1.766q.813-.739 2.005-1.15h.033q1.857-.652 6.266-.653h3.215q4.84 0 6.962.996a4.9 4.9 0 0 1 1.807 1.407q.745.925 1.11 2.297.2.961.332 2.744T24 12.96q.001 2.13-.197 3.743"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/wyze.svg�������������������������������������0000664�0000000�0000000�00000000664�14753064456�0024627�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.475 13.171 7.3 9.469h.974L5.779 14.53h-.608l-1.034-2.082-1.034 2.082h-.609L0 9.469h.973l1.826 3.673.851-1.706-.973-1.967h.973zm8.457-3.702-2.251 3.442v1.591h-.882v-1.591L8.517 9.469h1.034l1.673 2.545 1.673-2.545zm5.444 4.194H24v.867h-4.624zm0-4.194H24v.868h-4.624zm0 2.083H24v.867h-4.624zm-.273-2.083-3.438 4.223h3.133v.838H13.84l3.407-4.222h-3.042v-.839z"/></svg>����������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/x.svg����������������������������������������0000664�0000000�0000000�00000000341�14753064456�0024070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.901 1.153h3.68l-8.04 9.19L24 22.846h-7.406l-5.8-7.584-6.638 7.584H.474l8.6-9.83L0 1.154h7.594l5.243 6.932ZM17.61 20.644h2.039L6.486 3.24H4.298Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/xampp.svg������������������������������������0000664�0000000�0000000�00000003321�14753064456�0024747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.792 11.923c.113.043.226.079.334.128.45.203.715.553.748 1.044q.063.953.002 1.905c-.049.732-.725 1.292-1.483 1.271-.735-.021-1.369-.62-1.397-1.341-.017-.441-.003-.884-.006-1.326-.001-.239-.003-.242-.245-.243-1.363-.001-2.726.008-4.089-.003-.888-.007-1.421.482-1.471 1.46-.019.38-.1.727-.357 1.018-.397.451-.898.601-1.472.466-.554-.131-.867-.522-1.035-1.048-.117-.367-.056-.737.012-1.094.341-1.797 1.366-3.006 3.125-3.555a3.7 3.7 0 0 1 1.105-.166q1.41.002 2.821-.001c.128 0 .257-.012.385-.021.702-.051 1.166-.511 1.22-1.352.004-.064 0-.129.001-.193a1.42 1.42 0 0 1 1.393-1.425c.787-.029 1.438.527 1.493 1.318.076 1.083-.265 2.046-.913 2.907-.06.079-.144.144-.171.251m-8.543-1.487c-.258-.008-.571.018-.882-.035-.536-.09-.876-.39-1.02-.916-.157-.573-.097-1.097.351-1.525.456-.434.996-.56 1.587-.315.52.216.859.731.89 1.293.025.444.003.89.007 1.334.001.116-.043.167-.161.165-.24-.003-.479-.001-.772-.001M21.682 0H2.318A2.2 2.2 0 0 0 .116 2.202v19.317A2.48 2.48 0 0 0 2.597 24h18.807a2.48 2.48 0 0 0 2.481-2.481V2.202A2.204 2.204 0 0 0 21.682 0m-1.557 12.473c.519.804.733 1.69.677 2.657a4.25 4.25 0 0 1-3.25 3.916c-2.585.623-4.566-.923-5.233-2.794-.109-.304-.16-.622-.224-.985-.068.414-.115.789-.264 1.134-.697 1.617-1.884 2.603-3.665 2.799a4.31 4.31 0 0 1-4.632-3.084c-.25-.863-.175-1.747-.068-2.625.08-.653.321-1.268.632-1.848.057-.106.057-.184-.01-.285-.561-.845-.779-1.777-.7-2.784a4 4 0 0 1 .417-1.536C4.52 5.626 6.09 4.427 8.193 4.626c1.849.175 3.562 1.77 3.83 3.564.013.09.039.178.068.311.044-.241.076-.439.118-.636.344-1.63 1.94-3.335 4.201-3.357 2.292-.021 3.99 1.776 4.31 3.446.17.888.089 1.776-.103 2.663-.112.517-.31 1.008-.524 1.492-.059.136-.05.236.032.364"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/xcode.svg������������������������������������0000664�0000000�0000000�00000004072�14753064456�0024730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.06 5.333c.452-.194.774-.258 1.097-.194.516.13.774.516.968.71.194.387.903.774 1.226.839.258.064.71-.645 1.033-1.29.322-.582.516-1.356.451-1.55-.064-.193-.968-.58-1.161-.58-.13 0-.388.129-.84.064-.45-.064-.903-.58-1.16-.968-.453-.645-1.098-1.032-1.679-1.355C18.35.686 17.64.493 16.93.364 15.898.105 14.865-.088 13.833.04c-.58.064-1.29.129-1.807.323-.065 0-.194.193-.065.193s.581.065.581.065-.58.129-.58.258c0 .13.064.13.129.13.064 0 1.484-.065 2.065 0 .645.128 1.355.45 1.807 1.225.774 1.42.451 2.775.258 3.227-.968 2.13-8.648 15.23-9.035 16.133s-.516 1.484.581 2.065 1.678.322 2-.065c.388-.516 7.034-17.165 9.293-18.262m-3.614 8.711h1.549c1.032 0 1.226.517 1.226.71.065.516-.194 1.162-1.226 1.162h-.968l.774 1.29c.452.775.258 1.162 0 1.42-.387.387-1.226.387-1.677-.452l-.904-1.548c-.645 1.42-1.29 2.968-2.065 4.775h4.001c1.936 0 3.55-1.613 3.55-3.55V6.56c-.065-.13-.194-.065-.259 0-.387.451-1.484 2-4 7.485m-9.808 8.002h-.323a4.186 4.186 0 0 1-4.195-4.194V7.01a4.186 4.186 0 0 1 4.195-4.195h9.357c-.194-.194-.968-.516-1.742-.452-.323 0-.968.13-1.356-.129-.387-.322-.322-.516-.903-.516H4.928A4.764 4.764 0 0 0 .152 6.494V18.24c0 2.646 2.13 4.775 4.453 4.71.645 0 .839-.516 1.032-.903m14.777-15.1v10.906a4.186 4.186 0 0 1-4.194 4.194h-4.324s-.387 1.033.839 1.033h3.872a4.764 4.764 0 0 0 4.775-4.776V8.817c.065-.903-.71-1.484-.968-1.871M1.83 7.01v10.84c0 1.937 1.613 3.55 3.55 3.55h.58c0-.064.774-1.42 2.452-4.26.194-.386.452-.773.71-1.225h-4.71c-.581 0-.904-.387-.969-.71-.129-.516.194-1.162.904-1.162h2.387l3.034-5.291s-.71-1.29-.904-1.613c-.258-.452-.129-.904.13-1.162.386-.387 1.032-.58 1.677.452l.258.387.258-.387c.58-.84.968-.775 1.29-.71.517.129.84.71.388 1.613l-4.001 6.711h1.355c.452-.774.904-1.548 1.355-2.387-.064-.323-.129-.71-.064-1.033.064-.516.323-.968.645-1.355l.387.645c1.227-2.13 2.13-3.936 2.388-4.646.13-.387.323-1.162.13-1.807H5.38c-2.001 0-3.55 1.613-3.55 3.55m2.775 10.776c0-.064.774-1.42.774-1.42 1.227-.322 1.807.452 1.872.517 0 0-.84 1.484-1.097 1.742s-.581.323-.904.258c-.516-.129-.839-.645-.645-1.097"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/xdadevelopers.svg����������������������������0000664�0000000�0000000�00000000300�14753064456�0026461�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.84 3.052V0h7.843v17.583H13.84v-3.024h4.591V3.052zM5.569 14.53V3.024h4.592V0H2.318v17.583H6.98L10.16 24v-9.483z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/xdotorg.svg����������������������������������0000664�0000000�0000000�00000001516�14753064456�0025314�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.94 1.9-9.092 11.874 4.598 6.392a14.3 14.3 0 0 1-2.56.228c-2.387 0-4.582-.577-6.316-1.542l6.556-8.627-6.031-8.311L2.23 1.91 9.8 12.48l-4.332 5.66c-1.692-1.266-2.729-2.965-2.729-4.832 0-2.13 1.348-4.042 3.48-5.342l-.655-.999C2.22 8.386 0 10.876 0 13.71c0 2.432 1.635 4.61 4.212 6.075l-1.765 2.307h1.661l1.299-1.709c1.892.83 4.158 1.314 6.592 1.314a17.4 17.4 0 0 0 4.188-.501l.65.903h4.865l-1.729-2.422C22.443 18.214 24 16.082 24 13.71c0-2.94-2.39-5.512-5.948-6.9l-.217.311c3.099 1.214 5.195 3.531 5.195 6.188 0 2.202-1.44 4.17-3.698 5.47l-5.153-7.22 7.382-9.658zM12 5.755c-.586 0-1.212.046-1.775.1 1.004 1.309 1.836 2.417 2.795 3.676-.538-1.157-1.644-2.268-1.261-2.839.378-.565 1.075-.47 1.128-.47 1.118 0 2.194.127 3.2.36l.235-.324C14.98 5.91 13.523 5.754 12 5.754z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/xendit.svg�����������������������������������0000664�0000000�0000000�00000000576�14753064456�0025126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.781 2.743H7.965l-5.341 9.264 5.341 9.263-1.312 2.266L0 12.007 6.653.464h6.454zm-5.128 2.28 1.312-2.28L9.873 6.03 8.561 8.296zm9.382-2.28 1.312 2.28L7.965 21.27l-1.312-2.279zm-5.128 20.793 1.298-2.279h3.83L14.1 17.931l1.312-2.267 1.926 3.337 4.038-6.994-5.341-9.264L17.347.464 24 12.007l-6.653 11.529z"/></svg>����������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/xero.svg�������������������������������������0000664�0000000�0000000�00000002721�14753064456�0024602�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m6.585 14.655a2.69 2.69 0 0 1-2.69-2.689 2.693 2.693 0 0 1 2.69-2.691c1.485 0 2.69 1.207 2.69 2.691s-1.207 2.689-2.69 2.689M7.53 14.644a.38.38 0 0 1-.267-.116l-2.043-2.04-2.052 2.047a.367.367 0 1 1-.515-.523l2.04-2.05-2.038-2.047a.35.35 0 0 1-.113-.261.367.367 0 0 1 .626-.261l2.055 2.048 2.048-2.045a.36.36 0 0 1 .26-.108c.211 0 .375.165.375.366a.34.34 0 0 1-.104.258l-2.056 2.055 2.055 2.051a.368.368 0 0 1-.261.626zm8.017-4.591c-.796.101-.882.476-.882 1.404v2.787a.367.367 0 0 1-.734 0v-4.53c0-.204.16-.366.362-.366.166 0 .316.125.346.289.27-.209.6-.317.93-.317h.105c.195 0 .359.165.359.368 0 .201-.164.352-.375.359 0 0-.09 0-.164.008zm-3.091 2.205H8.625q0 .028.006.057.028.16.083.31c.194.531.765 1.275 1.829 1.29.33-.003.631-.086.9-.229.21-.12.391-.271.525-.428.045-.058.09-.112.12-.168.18-.229.405-.186.54-.083.164.135.18.391.045.57l-.016.016c-.21.27-.435.495-.689.66a2.4 2.4 0 0 1-.811.345c-.33.09-.645.104-.975.06a2.69 2.69 0 0 1-2.28-2.01 2.3 2.3 0 0 1-.09-.645c0-.855.421-1.695 1.125-2.205.885-.615 2.085-.66 3-.075.63.405 1.035 1.021 1.185 1.771.075.419-.21.794-.734.81zm6.129-2.223a1.933 1.933 0 0 0-1.931 1.931c0 1.064.866 1.931 1.931 1.931s1.931-.867 1.931-1.931a1.935 1.935 0 0 0-1.931-1.933zm0 2.595a.666.666 0 1 1 0-1.332.666.666 0 0 1 0 1.332m-8.04-2.603c-.91 0-1.672.623-1.886 1.466v.03h3.776a1.946 1.946 0 0 0-1.891-1.494z"/></svg>�����������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/xfce.svg�������������������������������������0000664�0000000�0000000�00000010145�14753064456�0024551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.121 5.727a.1.1 0 0 0-.034.002L.07 5.73l-.014.007a.1.1 0 0 0-.048.053.1.1 0 0 0-.007.067c.008.037.023.056.04.076q.047.058.142.128.192.148.597.38c.54.306 1.36.712 2.428 1.152 1.053.433 2.318 1.205 3.286 1.911.484.353.894.69 1.165.958.136.133.237.25.293.337a.4.4 0 0 1 .05.1l.002.018c-.7.987-1.113 2.187-.83 4.196.006.038-.03.127-.12.235-.088.108-.216.233-.346.365-.129.133-.26.273-.357.42s-.163.305-.138.471v.001c.013.074.062.14.125.169a.36.36 0 0 0 .2.018c.137-.018.294-.079.453-.145.158-.066.316-.139.437-.183a1 1 0 0 1 .131-.038c0 .021.003.031-.003.065-.01.061-.03.139-.054.225-.048.173-.119.382-.184.588a4 4 0 0 0-.15.57.7.7 0 0 0-.008.222c.01.067.049.141.122.168l.003.001.003.001c.05.015.083.001.116-.012a1 1 0 0 0 .104-.054q.113-.07.266-.191c.202-.16.451-.375.697-.592s.487-.433.673-.594c.093-.08.172-.146.23-.189l.062-.044c1.497.446 3.202.502 4.549.441a21 21 0 0 0 1.687-.144 15 15 0 0 0 .643-.097l.033-.007.087.04.318.144c.265.12.622.28.987.436s.738.307 1.038.41q.226.079.387.114.079.016.143.02a.2.2 0 0 0 .127-.029l.01-.006.007-.008c.176-.19.183-.426.1-.633-.084-.207-.246-.402-.413-.586-.167-.185-.342-.358-.45-.5a.6.6 0 0 1-.104-.178c-.012-.039-.007-.053.005-.07a.2.2 0 0 1 .05 0c.06.005.147.023.25.05.204.054.473.144.741.232.269.089.537.176.75.226q.16.038.276.042.059.002.112-.015a.16.16 0 0 0 .096-.088v-.002l.002-.003c.05-.151-.006-.313-.095-.476-.09-.162-.22-.33-.36-.492-.14-.163-.287-.318-.41-.45a3 3 0 0 1-.249-.292.67.67 0 0 1-.083-.398.54.54 0 0 1 .248-.394 3 3 0 0 1 .268-.14l.51-.24c.4-.187.898-.425 1.381-.69s.95-.557 1.294-.859c.342-.301.575-.619.529-.948-.072-.535-.425-.943-.897-1.25-.471-.305-1.065-.517-1.65-.67a16 16 0 0 0-1.595-.318c-.217-.033-.399-.06-.525-.083a2 2 0 0 1-.144-.032l-.001-.087c0-.083.002-.198 0-.331a6 6 0 0 0-.075-.942c-.056-.33-.15-.646-.331-.86s-.47-.304-.821-.165c-.232.087-.363.288-.418.519-.055.23-.045.497-.01.76.037.26.1.518.156.724.057.206.11.37.119.411.006.027.005.018-.005.026a.2.2 0 0 1-.084.025.4.4 0 0 1-.126-.01c-.037-.01-.062-.03-.057-.023a1 1 0 0 1-.07-.129l-.113-.255a9 9 0 0 0-.32-.67c-.125-.228-.265-.443-.428-.587a.65.65 0 0 0-.27-.15.44.44 0 0 0-.306.036h-.002l-.001.002a.9.9 0 0 0-.45.607c-.055.241-.037.502.004.743.04.242.105.466.145.629.02.081.035.148.038.187.002.012 0 .014 0 .018-.182.114-.274.294-.345.479-.075.194-.137.397-.264.573v.001c-.039.055-.12.105-.247.138a2 2 0 0 1-.49.049c-.392 0-.892-.059-1.413-.142-1.042-.165-2.161-.422-2.733-.457-.43-.025-.837.136-1.146.288-.154.076-.284.15-.376.198a1 1 0 0 1-.096.044c-.997-.993-3.013-2.688-5.25-3.26-.613-.167-1.387-.495-2.015-.78-.314-.142-.591-.274-.796-.37l-.248-.113-.077-.032-.03-.01zm22.7 1.835-.019.005c-.02.009-.025.019-.031.027a.2.2 0 0 0-.026.053 2 2 0 0 0-.052.176 8 8 0 0 0-.188 1.14 1.3 1.3 0 0 0 0 .213.3.3 0 0 0 .016.077.1.1 0 0 0 .047.059.1.1 0 0 0 .044.013.1.1 0 0 0 .043-.018.15.15 0 0 0 .042-.057 1 1 0 0 0 .06-.175c.038-.147.074-.35.103-.557s.05-.421.057-.59a2 2 0 0 0-.002-.214.4.4 0 0 0-.013-.076.1.1 0 0 0-.036-.059q-.008-.01-.024-.015a.1.1 0 0 0-.022-.002zm1.11.212a.1.1 0 0 0-.042.007.2.2 0 0 0-.065.043 1 1 0 0 0-.144.157 5 5 0 0 0-.35.517 4 4 0 0 0-.287.569 1 1 0 0 0-.061.225c-.007.064 0 .129.05.167.03.021.068.015.09.004a.2.2 0 0 0 .06-.048q.058-.06.129-.168a7 7 0 0 0 .31-.54 10 10 0 0 0 .276-.568 3 3 0 0 0 .08-.2 1 1 0 0 0 .02-.067l.003-.03c0-.011 0-.028-.02-.048l-.001-.002-.002-.002a.1.1 0 0 0-.046-.016M19.57 9.629c.182 0 .335.17.335.388 0 .217-.153.387-.335.387s-.334-.17-.334-.387c0-.218.152-.388.334-.388m-.882.34c.079.29.178.512.35.647.163.128.396.173.69.181-.181.13-.346.191-.481.175-.168-.02-.31-.124-.414-.268s-.17-.326-.187-.483a.44.44 0 0 1 .042-.252m2.09 1.78c.054-.004.083.006.091.014l.009.008.01.004c.008.002.004 0 .006.002a.4.4 0 0 1-.112.093 4 4 0 0 1-.58.278 8 8 0 0 1-.657.235c-.059.017-.098.026-.142.037.029-.022.05-.04.089-.065a6 6 0 0 1 .52-.306 4 4 0 0 1 .56-.251 1 1 0 0 1 .206-.049m.241.471a.1.1 0 0 1 .025.003c.026.03.04.058.035.096a.36.36 0 0 1-.071.154 2 2 0 0 1-.399.367c-.163.119-.337.226-.47.302-.048.028-.082.046-.116.064.015-.03.029-.058.056-.099.078-.116.2-.266.332-.409a3 3 0 0 1 .4-.37.8.8 0 0 1 .163-.096.2.2 0 0 1 .045-.012"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/xiaohongshu.svg������������������������������0000664�0000000�0000000�00000006431�14753064456�0026163�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.405 9.879c.002.016.01.02.07.019h.725a.797.797 0 0 0 .78-.972.794.794 0 0 0-.884-.618.795.795 0 0 0-.692.794c0 .101-.002.666.001.777m-11.509 4.808c-.203.001-1.353.004-1.685.003a2.5 2.5 0 0 1-.766-.126.025.025 0 0 0-.03.014L7.7 16.127a.025.025 0 0 0 .01.032c.111.06.336.124.495.124.66.01 1.32.002 1.981 0q.017 0 .023-.015l.712-1.545a.025.025 0 0 0-.024-.036zM.477 9.91c-.071 0-.076.002-.076.01l-.01.08c-.027.397-.038.495-.234 3.06-.012.24-.034.389-.135.607-.026.057-.033.042.003.112.046.092.681 1.523.787 1.74.008.015.011.02.017.02.008 0 .033-.026.047-.044q.219-.282.371-.606c.306-.635.44-1.325.486-1.706.014-.11.021-.22.03-.33l.204-2.616.022-.293c.003-.029 0-.033-.03-.034zm7.203 3.757a1.4 1.4 0 0 1-.135-.607c-.004-.084-.031-.39-.235-3.06a.4.4 0 0 0-.01-.082c-.004-.011-.052-.008-.076-.008h-1.48c-.03.001-.034.005-.03.034l.021.293q.114 1.473.233 2.946c.05.4.186 1.085.487 1.706.103.215.223.419.37.606.015.018.037.051.048.049.02-.003.742-1.642.804-1.765.036-.07.03-.055.003-.112m3.861-.913h-.872a.126.126 0 0 1-.116-.178l1.178-2.625a.025.025 0 0 0-.023-.035l-1.318-.003a.148.148 0 0 1-.135-.21l.876-1.954a.025.025 0 0 0-.023-.035h-1.56q-.017 0-.024.015l-.926 2.068c-.085.169-.314.634-.399.938a.5.5 0 0 0-.02.191.46.46 0 0 0 .23.378 1 1 0 0 0 .46.119h.59c.041 0-.688 1.482-.834 1.972a.5.5 0 0 0-.023.172.47.47 0 0 0 .23.398c.15.092.342.12.475.12l1.66-.001q.017 0 .023-.015l.575-1.28a.025.025 0 0 0-.024-.035m-6.93-4.937H3.1a.032.032 0 0 0-.034.033c0 1.048-.01 2.795-.01 6.829 0 .288-.269.262-.28.262h-.74c-.04.001-.044.004-.04.047.001.037.465 1.064.555 1.263.01.02.03.033.051.033.157.003.767.009.938-.014.153-.02.3-.06.438-.132.3-.156.49-.419.595-.765.052-.172.075-.353.075-.533q.003-3.495-.007-6.991a.03.03 0 0 0-.032-.032zm11.784 6.896q-.002-.02-.024-.022h-1.465c-.048-.001-.049-.002-.05-.049v-4.66c0-.072-.005-.07.07-.07h.863c.08 0 .075.004.075-.074V8.393c0-.082.006-.076-.08-.076h-3.5c-.064 0-.075-.006-.075.073v1.445c0 .083-.006.077.08.077h.854c.075 0 .07-.004.07.07v4.624c0 .095.008.084-.085.084-.37 0-1.11-.002-1.304 0-.048.001-.06.03-.06.03l-.697 1.519s-.014.025-.008.036.013.008.058.008q2.622.003 5.243.002c.03-.001.034-.006.035-.033zm4.177-3.43q0 .021-.02.024c-.346.006-.692.004-1.037.004q-.021-.003-.022-.024-.006-.651-.01-1.303c0-.072-.006-.071.07-.07l.733-.003c.041 0 .081.002.12.015.093.025.16.107.165.204.006.431.002 1.153.001 1.153m2.67.244a1.95 1.95 0 0 0-.883-.222h-.18c-.04-.001-.04-.003-.042-.04V10.21q.001-.198-.025-.394a1.8 1.8 0 0 0-.153-.53 1.53 1.53 0 0 0-.677-.71 2.2 2.2 0 0 0-1-.258c-.153-.003-.567 0-.72 0-.07 0-.068.004-.068-.065V7.76c0-.031-.01-.041-.046-.039H17.93s-.016 0-.023.007q-.008.008-.008.023v.546c-.008.036-.057.015-.082.022h-.95c-.022.002-.028.008-.03.032v1.481c0 .09-.004.082.082.082h.913c.082 0 .072.128.072.128v1.148s.003.117-.06.117h-1.482c-.068 0-.06.082-.06.082v1.445s-.01.068.064.068h1.457c.082 0 .076-.006.076.079v3.225c0 .088-.007.081.082.081h1.43c.09 0 .082.007.082-.08v-3.27c0-.029.006-.035.033-.035l2.323-.003a.7.7 0 0 1 .28.061.46.46 0 0 1 .274.407c.008.395.003.79.003 1.185 0 .259-.107.367-.33.367h-1.218c-.023.002-.029.008-.028.033q.276.655.57 1.303a.05.05 0 0 0 .04.026c.17.005.34.002.51.003.15-.002.517.004.666-.01a2 2 0 0 0 .408-.075c.59-.18.975-.698.976-1.313v-1.981q.001-.191-.034-.38c0 .078-.029-.641-.724-.998"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/xiaomi.svg�����������������������������������0000664�0000000�0000000�00000001510�14753064456�0025106�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C8.016 0 4.756.255 2.493 2.516.23 4.776 0 8.033 0 12.012s.23 7.235 2.494 9.497C4.757 23.77 8.017 24 12 24s7.243-.23 9.506-2.491S24 15.99 24 12.012c0-3.984-.233-7.243-2.502-9.504C19.234.252 15.978 0 12 0M4.906 7.405h5.624c1.47 0 3.007.068 3.764.827.746.746.827 2.233.83 3.676v4.54a.15.15 0 0 1-.152.147h-1.947a.15.15 0 0 1-.152-.148V11.83c-.002-.806-.048-1.634-.464-2.051-.358-.36-1.026-.441-1.72-.458H7.158a.15.15 0 0 0-.151.147v6.98a.15.15 0 0 1-.152.148H4.906a.15.15 0 0 1-.15-.148V7.554a.15.15 0 0 1 .15-.149m12.131 0h1.949a.15.15 0 0 1 .15.15v8.892a.15.15 0 0 1-.15.148h-1.949a.15.15 0 0 1-.151-.148V7.554a.15.15 0 0 1 .151-.149M8.92 10.948h2.046c.083 0 .15.066.15.147v5.352a.15.15 0 0 1-.15.148H8.92a.15.15 0 0 1-.152-.148v-5.352a.15.15 0 0 1 .152-.147"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/xing.svg�������������������������������������0000664�0000000�0000000�00000001121�14753064456�0024563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.188 0c-.517 0-.741.325-.927.66 0 0-7.455 13.224-7.702 13.657.015.024 4.919 9.023 4.919 9.023.17.308.436.66.967.66h3.454c.211 0 .375-.078.463-.22.089-.151.089-.346-.009-.536l-4.879-8.916a.02.02 0 0 1 0-.022L22.139.756c.095-.191.097-.387.006-.535C22.056.078 21.894 0 21.686 0zM3.648 4.74c-.211 0-.385.074-.473.216-.09.149-.078.339.02.531l2.34 4.05q.006.014 0 .021L1.86 16.051a.52.52 0 0 0 0 .529c.085.142.239.234.45.234h3.461c.518 0 .766-.348.945-.667l3.734-6.609-2.378-4.155c-.172-.315-.434-.659-.962-.659H3.648z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/xml.svg��������������������������������������0000664�0000000�0000000�00000005144�14753064456�0024427�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.345 7.053c-.495.02-.44.725-.536 1.081-.157.583-.3 1.325-.347 1.926-.046.585-.008 1.127.066 1.719.058.46.191.767.07.89-.108.11-3.216 2.962-3.466 3.123-.26.169-.08.584.069.817.157.246.23.373.557.33.306-.042.405-.409.583-.606.228-.252 2.421-2.401 2.616-2.401.077.544.367 1.064.67 1.513.15.222.314.439.505.629.175.175.4.317.587.45.44.024.795-.301.35-.67-.17-.14-.735-.971-.927-1.43-.18-.43-.574-1.076-.146-1.428 1.494-1.23 3.72-2.262 4.247-2.313-.257 1.024-1.356 3.048-1.757 4.012-.14.333-.231.732-.185 1.094.055.434.383.774.587.806.417-.023.7-.387.946-.645.343-.357.634-.685.974-1.043.339-.356.672-.731.971-1.07.184-.207.674-.713.963-.713-.11.693-.716 1.552-.839 2.254-.125.716.531 1.596 1.217.956.623-.58 1.255-1.129 1.867-1.72.217-.208.175.037.224.242.05.208.176.91.275 1.1.18.346.496.592.897.598.362.006.727-.161.982-.414.19-.187.513-.699.154-.832-.23-.086-.217-.176-.495-.129-.172.029-.362.074-.507.179-.367-.003-.381-.89-.324-1.161.068-.327.207-.659.185-.998-.026-.418-.478-.69-.582-.72-.156-.076-.253.023-.458.212-.173.161-.363.332-.535.495-.34.322-.768.813-.942.813.305-.705.708-2.652-.643-2.48-.563.071-.95.377-1.394.71-.29.28-.683.641-.936.87-.236.216-.371.404-.496.404.132-.747 1.685-3.167.885-3.853-.158-.136-.313-.325-.515-.349a4.6 4.6 0 0 0-.833.19c-.565.18-2.78 1.28-4.19 2.289-.131.094-.214-.085-.231-.29-.087-1.058.199-2.19.496-3.188.208-.696-.557-1.225-.659-1.249m18.177.874c-.166.364-.2.894-.248 1.319a24 24 0 0 0-1.246-.115c.238.296.691.588 1.056.724-.048.366-.434.67-.599 1.021.458-.127.676-.47.989-.821.362.22.791.627 1.26.636-.177-.376-.334-.695-.658-.966.269-.175.717-.362.924-.633-.345-.074-.718-.093-1.052-.015-.258-.284-.3-.772-.426-1.15m-2.92.079c-.23.02-.613.49-.832.773-.807 1.039-1.542 3.15-1.661 3.542-.363 1.195-.502 2.672.28 3.722.456.612 1.258.66 2.041.434.405-.116.812-.406.95-.723.114-.263.174-.753-.404-.38-.224.145-.634.304-1.37.291-.247-.004-.651-.357-.76-.722-.192-.595-.11-1.393-.11-1.393.167-1.028.642-2.146 1.061-3.076.163-.36.658-1.259.842-1.546 0 0 .239-.373.131-.77-.031-.116-.091-.16-.168-.152m3.072 2.976c-.12.264-.144.648-.18.956-.274-.031-.63-.066-.904-.083.172.215.501.426.766.525-.034.265-.314.486-.434.741.332-.092.49-.34.717-.596.263.16.575.456.914.462-.127-.273-.242-.504-.477-.701.195-.127.52-.262.67-.46a1.8 1.8 0 0 0-.763-.01c-.187-.206-.217-.56-.309-.834m-1.123 2.422c-.083.183-.1.449-.125.662a13 13 0 0 0-.624-.058c.119.148.346.295.53.363-.025.184-.219.336-.301.513.23-.064.339-.236.496-.413.181.11.397.316.632.32-.088-.19-.168-.349-.33-.485.135-.087.36-.181.463-.317a1.2 1.2 0 0 0-.527-.008c-.13-.142-.151-.387-.214-.576z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/xmpp.svg�������������������������������������0000664�0000000�0000000�00000001003�14753064456�0024601�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3.401 4.594 1.025.366 3.08.912q-.016.27-.016.543c0 3.353 1.693 7.444 4.51 10.387 2.817-2.943 4.51-7.034 4.51-10.387q0-.273-.016-.543l3.08-.912 1.025-.366L24 3.276C23.854 8.978 19.146 14.9 13.502 18.17c1.302 1.028 2.778 1.81 4.388 2.215v.114l.004.001v.224a14.6 14.6 0 0 1-4.829-1.281A21 21 0 0 1 12 18.966q-.53.255-1.065.477a14.6 14.6 0 0 1-4.829 1.281V20.5l.004-.001v-.113c1.61-.406 3.086-1.188 4.389-2.216C4.854 14.9.146 8.978 0 3.276z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/xo.svg���������������������������������������0000664�0000000�0000000�00000001232�14753064456�0024247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m1.629 5.698 4.275 5.367 4.274-5.367h1.613l-5.089 6.384 4.958 6.219h-1.613L5.903 13.1l-4.142 5.201H.131l4.957-6.219L0 5.698zm16.48-.082C21.423 5.616 24 8.632 24 12c0 3.425-2.613 6.331-5.883 6.383-3.301-.1-5.804-2.878-5.911-6.164L12.202 12c0-3.436 2.637-6.384 5.907-6.384m0 1.268c-2.59 0-4.639 2.4-4.639 5.116.078 2.736 1.983 4.996 4.444 5.111l.195.004c2.583 0 4.623-2.406 4.623-5.115 0-2.752-2.086-5.116-4.623-5.116m.944 3.71c.507 0 1.1.662.702 1.473-.297.605-1.373 1.192-1.609 1.315l-.045.024s-1.32-.658-1.655-1.339c-.397-.811.196-1.473.703-1.473.56 0 .952.535.952.535s.391-.535.952-.535"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/xrp.svg��������������������������������������0000664�0000000�0000000�00000001630�14753064456�0024434�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.52 2.955A3.52 3.52 0 0 0 1.996 6.48v2.558A2.12 2.12 0 0 1 0 11.157l.03.562-.03.561a2.12 2.12 0 0 1 1.996 2.121v2.948a3.69 3.69 0 0 0 3.68 3.696v-1.123a2.56 2.56 0 0 1-2.557-2.558v-2.963a3.24 3.24 0 0 0-1.42-2.682 3.26 3.26 0 0 0 1.42-2.682V6.48A2.41 2.41 0 0 1 5.52 4.078h.437V2.955zm12.538 0v1.123h.437a2.39 2.39 0 0 1 2.386 2.401v2.558a3.26 3.26 0 0 0 1.42 2.682 3.24 3.24 0 0 0-1.42 2.682v2.963a2.56 2.56 0 0 1-2.557 2.558v1.123a3.69 3.69 0 0 0 3.68-3.696V14.4A2.12 2.12 0 0 1 24 12.281l-.03-.562.03-.561a2.12 2.12 0 0 1-1.996-2.12v-2.56a3.52 3.52 0 0 0-3.509-3.524zM6.253 7.478l3.478 3.259a3.393 3.393 0 0 0 4.553 0l3.478-3.26h-1.669l-2.65 2.464a2.133 2.133 0 0 1-2.886 0L7.922 7.478zm5.606 4.884a3.36 3.36 0 0 0-2.128.886l-3.493 3.274h1.668l2.667-2.495a2.133 2.133 0 0 1 2.885 0l2.65 2.495h1.67l-3.494-3.274a3.36 3.36 0 0 0-2.425-.886"/></svg>��������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/xsplit.svg�����������������������������������0000664�0000000�0000000�00000000425�14753064456�0025147�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 19.5c-.7-.1-2.5-.3-2.7-.3-.1 0-2.8 2.3-4 3.399l-.1.101c.1-1.3.3-2.601.399-3.9C11.7 18.1 5.9 17.4 0 16.7V1.3h.3C.9 1.4 22.9 3.9 24 4zm-2.6-2.6V6.2C15.1 5.5 8.7 4.7 2.4 4v10.6c6.3.8 12.7 1.5 19 2.3"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/xstate.svg�����������������������������������0000664�0000000�0000000�00000000324�14753064456�0025132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.891 0h6.023l-6.085 10.563A10.65 10.65 0 0 1 15.891 0m6.055 23.999L8.078.001H2.055l6.919 12.015L2.055 24h6.023L12 17.236 15.892 24z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/xubuntu.svg����������������������������������0000664�0000000�0000000�00000002171�14753064456�0025336�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m3.914 4.474c.385-.044.145 1.606.053 2.598-.081.868-.127 1.154-.289 2.112-.05.3-.2.687-.669.631-.392-.05-.455-.696-.442-.995.022-.514.303-1.767.393-2.217.116-.578.47-1.957.914-2.12a.2.2 0 0 1 .04-.01m3.226.709c.55.02-.415 1.75-.809 2.664-.276.642-.474 1.156-.832 2.004-.119.282-.484.686-.906.477-.354-.175-.233-.692.024-1.29a16 16 0 0 1 1.062-2.086c.303-.506.934-1.698 1.404-1.766a.3.3 0 0 1 .058-.003zm-9.284.47c.312.022.572.16.75.375.77.932.608 2.532.675 3.748 1.2.065 2.19.21 3.469.584.974.285 2.323.762 3.112 1.275.787.51 1.377 1.172 1.5 2.062.077.552-.343 1.106-.919 1.612-.575.505-1.326.98-2.137 1.426s-1.653.849-2.325 1.162c-1.466.684-3.016 1.35-4.917 1.542-5.155.52-4.592-4.158-4.392-5.704.155-1.205.8-2.942.907-3.259a10 10 0 0 1-.335-1.298c-.073-.404-.113-.87-.02-1.275.092-.398.36-.842.803-1.027.352-.147.61-.089.938.209.27.245.497.608.716.987.317.55.446 1.119.718 1.676.052.108.324.157.482.111.037-.01.077-.103.056-.175-.348-1.191-.597-2.176-.424-3.037.161-.799.842-.974 1.343-.994"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/yabai.svg������������������������������������0000664�0000000�0000000�00000001334�14753064456�0024711�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.075 0a3.26 3.26 0 0 0-2.38.955L6.216 4.431l-.53-.529c-1.2-1.055-2.822.514-1.745 1.742l.531.531L.976 9.671a3.263 3.263 0 0 0 0 4.613L4.47 17.78l-.068.066-.516.514c-1.07 1.206.472 2.816 1.707 1.775l.598-.594 3.502 3.502a3.263 3.263 0 0 0 4.615 0l8.714-8.714a3.263 3.263 0 0 0 0-4.615l.002-.002-3.486-3.488.58-.58a1.233 1.233 0 0 0-1.744-1.742l-.56.56L14.306.956A3.26 3.26 0 0 0 12.075 0M12 1.72c.394 0 .79.151 1.09.452l3.507 3.505-4.566 4.568L7.433 5.65l3.478-3.478A1.53 1.53 0 0 1 12 1.72M5.691 7.395l4.593 4.593-4.595 4.578-3.494-3.498a1.54 1.54 0 0 1 0-2.18zm12.626.047 3.49 3.49a1.54 1.54 0 0 1 0 2.177l-8.714 8.715a1.54 1.54 0 0 1-2.18 0l-3.5-3.5Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/yale.svg�������������������������������������0000664�0000000�0000000�00000001675�14753064456�0024566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.8 15.72v-1.24c-.64.04-.8-.24-.8-.76V7.6h-1.36v6.24c0 1.2.44 1.96 2.16 1.88m4.96-5.24c-.44-.52-1.12-.88-2.08-.88-1 0-1.68.36-2.12.88-.52.64-.64 1.56-.64 2.24 0 .64.12 1.4.56 2.04.44.6 1.16 1 2.28 1q1.14 0 1.8-.48c.44-.32.76-.84.8-1.36h-1.4c-.04.2-.16.36-.32.52-.2.16-.48.2-.88.2-.56 0-.92-.16-1.12-.48-.16-.24-.24-.64-.24-1h4.04c0-1.08-.16-2.04-.68-2.68m-3.4 1.64c0-.32.12-.76.36-1s.56-.36.96-.36q.6 0 .96.36c.36.36.32.68.32 1zM10.4 9.64c-1.6 0-2.36.84-2.44 2h1.4c.04-.52.32-.84 1.04-.84.84 0 1.08.4 1.08 1v.36h-1.24c-.8 0-1.32.08-1.72.36-.48.32-.76.76-.76 1.44 0 .84.52 1.8 2.12 1.8.8 0 1.32-.24 1.68-.68v.6h1.32v-3.84c-.04-1.28-.72-2.2-2.48-2.2m1.04 4.16c0 .64-.56.92-1.32.92-.84 0-1.04-.36-1.04-.8 0-.24.08-.44.28-.56.16-.08.4-.12.88-.12h1.2zM9.12 7.6H7.56l-1.92 3.6-1.92-3.6H2.16l2.76 4.96v3.08h1.44v-3.08zM24 12c0 6.64-5.36 12-12 12S0 18.64 0 12 5.36 0 12 0s12 5.36 12 12"/></svg>�������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/yamahacorporation.svg������������������������0000664�0000000�0000000�00000002716�14753064456�0027351�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a12 12 0 1 0 12 12A12 12 0 0 0 12 0m-.412 1.377A10.65 10.65 0 0 1 22.664 12 10.65 10.65 0 0 1 12 22.664a10.648 10.648 0 0 1-.412-21.287M12 1.9a.18.18 0 0 0-.172.131l-.883 2.526a.4.4 0 0 0 0 .097.3.3 0 0 0 .133.25.926.926 0 0 1 .074 1.465 2.35 2.35 0 0 0-.82 1.79v.903L5.865 6.498l-.547.953 4.987 2.877v.692l-.602.347-4.978-2.88-.551.954L8.602 12l-.782.45a2.35 2.35 0 0 0-1.127 1.616.93.93 0 0 1-1.312.668.3.3 0 0 0-.277 0 .3.3 0 0 0-.079.063l-1.742 2.037a.188.188 0 0 0 .176.305l2.633-.493a.4.4 0 0 0 .09-.035.3.3 0 0 0 .152-.238.926.926 0 0 1 1.232-.781 2.35 2.35 0 0 0 1.954-.184l.78-.451v5.104h1.098v-5.756l.598-.344.598.344v5.756h1.1v-5.123l.78.45a2.35 2.35 0 0 0 1.954.184.926.926 0 0 1 1.234.782.28.28 0 0 0 .149.238.4.4 0 0 0 .09.035l2.634.492a.184.184 0 0 0 .176-.305l.004.02-1.744-2.037a.4.4 0 0 0-.075-.063.3.3 0 0 0-.28 0 .94.94 0 0 1-.864-.035.93.93 0 0 1-.434-.633 2.37 2.37 0 0 0-1.14-1.609l-.782-.45 4.436-2.558-.549-.955-4.98 2.873-.602-.347v-.692l4.985-2.877-.547-.953L13.7 9.062v-.904a2.35 2.35 0 0 0-.803-1.789.922.922 0 0 1 .079-1.465.31.31 0 0 0 .128-.25.3.3 0 0 0 0-.097L12.18 2.03A.184.184 0 0 0 12 1.9m.021 5.512a.6.6 0 0 1 .58.598V9.7l-.597.347-.598-.348V8.01a.6.6 0 0 1 .615-.597zm-.017 3.818.687.391v.781l-.687.391-.688-.39v-.782zm2.299 1.403 1.46.847a.6.6 0 0 1 .223.817v.004a.6.6 0 0 1-.82.219l-1.465-.844v-.696zm-4.596.004.602.347v.692l-1.465.844a.598.598 0 1 1-.598-1.036z"/></svg>��������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/yamahamotorcorporation.svg�������������������0000664�0000000�0000000�00000003462�14753064456�0030431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m0 .57C18.315.57 23.43 5.685 23.43 12c0 6.31-5.115 11.43-11.43 11.43C5.69 23.43.57 18.314.57 12 .57 5.69 5.69.57 12 .57m0 .234c-.1 0-.183.06-.218.147l-.492 1.551A9.523 9.523 0 0 0 2.475 12c0 1.48.337 2.885.94 4.136l-1.1 1.206a.24.24 0 0 0-.015.262.25.25 0 0 0 .238.115l1.592-.353a9.52 9.52 0 0 0 7.87 4.16c3.27 0 6.16-1.652 7.874-4.16l1.592.353a.24.24 0 0 0 .23-.123.23.23 0 0 0-.016-.262l-1.1-1.198A9.4 9.4 0 0 0 21.526 12a9.523 9.523 0 0 0-8.815-9.498L12.218.947A.24.24 0 0 0 12 .804m-.003.25c.024 0 .048.02.056.043l1.02 3.354a1.2 1.2 0 0 0-.48.957c0 .389.19.734.48.952h-.004c.436.326.718.846.718 1.429v1.12l4.326-2.497.476.825-4.802 2.77v.965l.834.48 4.802-2.774.476.825-4.326 2.5.972.56c.508.294.818.798.882 1.338v-.004a1.193 1.193 0 0 0 1.655.953l2.393 2.56c.02.02.02.047.008.07q-.025.036-.068.029l-3.413-.794a1.193 1.193 0 0 0-1.65-.957l.003-.004c-.5.215-1.091.199-1.6-.095l-.968-.56v4.994h-.952v-5.545l-.834-.48-.833.48v5.545h-.953V15.1l-.972.555c-.508.294-1.1.31-1.6.096l.004.004a1.193 1.193 0 0 0-1.651.957l-3.413.793a.054.054 0 0 1-.063-.028c-.016-.02-.012-.047.008-.067l2.397-2.56c.333.143.73.135 1.067-.064.338-.194.544-.528.588-.889v.004a1.78 1.78 0 0 1 .88-1.337l.97-.56-4.327-2.496.477-.826 4.802 2.774.833-.484v-.964l-4.802-2.77.476-.826 4.326 2.496V7.79c0-.583.282-1.103.719-1.429h-.004c.29-.214.476-.56.476-.952 0-.393-.19-.738-.48-.957l1.02-3.353c.008-.028.031-.044.051-.044zm.004 5.902a.833.833 0 0 0-.833.833v1.67L12 9.94l.833-.48V7.789A.833.833 0 0 0 12 6.956zm0 4.084-.833.48v.964l.833.476.833-.48v-.96zm-2.62 1.516-1.444.833a.833.833 0 0 0-.306 1.14.82.82 0 0 0 .723.412.83.83 0 0 0 .416-.111l1.445-.834v-.96zm5.243 0-.833.48V14l1.445.834a.834.834 0 0 0 .833-1.445z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/yaml.svg�������������������������������������0000664�0000000�0000000�00000000627�14753064456�0024572�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m0 .97 4.111 6.453v4.09h2.638v-4.09L11.053.969H8.214L5.58 5.125 2.965.969Zm12.093.024-4.47 10.544h2.114l.97-2.345h4.775l.804 2.345h2.26L14.255.994Zm1.133 2.225 1.463 3.87h-3.096zm3.06 9.475v10.29H24v-2.199h-5.454v-8.091zm-12.175.002v10.335h2.217v-7.129l2.32 4.792h1.746l2.4-4.96v7.295h2.127V12.696h-2.904L9.44 17.37l-2.455-4.674Z"/></svg>���������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/yandexcloud.svg������������������������������0000664�0000000�0000000�00000001553�14753064456�0026146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.38 0 0 5.38 0 12s5.38 12 12 12 12-5.38 12-12S18.62 0 12 0M7.163 20.618A9.87 9.87 0 0 1 2.12 12c0-5.46 4.42-9.88 9.88-9.88 1.429 0 2.496.536 3.029 1.187.534.65.684 1.715.5 3.253l-3.207.631c-2.905.532-4.506 2.148-5.06 5.065-.07.406-.15.812-.226 1.196l-.09.46-.208 1.124-.247 1.34c-.324 1.884-.06 3.276.672 4.242m7.986-11.851q-.129.65-.247 1.302c-.081.434-.16.868-.247 1.301-.396 2.05-1.364 2.996-3.42 3.391l-2.391.474c.059-.296.119-.611.178-.927l.067-.362c.078-.421.157-.855.25-1.313.395-2.05 1.344-2.996 3.399-3.391zM12 21.88c-1.429 0-2.496-.536-3.029-1.187s-.684-1.715-.5-3.253l3.18-.631c2.905-.532 4.507-2.148 5.08-5.046.069-.406.149-.812.226-1.196q.047-.236.09-.46l.247-1.327c.081-.432.154-.822.215-1.156.325-1.884.061-3.275-.671-4.242A9.87 9.87 0 0 1 21.88 12c0 5.46-4.42 9.88-9.88 9.88"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/yarn.svg�������������������������������������0000664�0000000�0000000�00000003513�14753064456�0024576�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.375 0 0 5.375 0 12s5.375 12 12 12 12-5.375 12-12S18.625 0 12 0m.768 4.105c.183 0 .363.053.525.157.125.083.287.185.755 1.154.31-.088.468-.042.551-.019.204.056.366.19.463.375.477.917.542 2.553.334 3.605-.241 1.232-.755 2.029-1.131 2.576.324.329.778.899 1.117 1.825.278.774.31 1.478.273 2.015a6 6 0 0 0 .602-.329c.593-.366 1.487-.917 2.553-.931.714-.009 1.269.445 1.353 1.103a1.23 1.23 0 0 1-.945 1.362c-.649.158-.95.278-1.821.843-1.232.797-2.539 1.242-3.012 1.39a1.7 1.7 0 0 1-.704.343c-.737.181-3.266.315-3.466.315h-.046c-.783 0-1.214-.241-1.45-.491-.658.329-1.51.19-2.122-.134a1.08 1.08 0 0 1-.58-1.153 1.2 1.2 0 0 1-.153-.195c-.162-.25-.528-.936-.454-1.946.056-.723.556-1.367.88-1.71a5.5 5.5 0 0 1 .408-2.256c.306-.727.885-1.348 1.32-1.737-.32-.537-.644-1.367-.329-2.21.227-.602.412-.936.82-1.08h-.005c.199-.074.389-.153.486-.259a3.42 3.42 0 0 1 2.298-1.103q.056-.138.125-.283c.31-.658.639-1.029 1.024-1.168a1 1 0 0 1 .328-.06zm.006.7c-.507.016-1.001 1.519-1.001 1.519s-1.27-.204-2.266.871c-.199.218-.468.334-.746.44-.079.028-.176.023-.417.672-.371.991.625 2.094.625 2.094s-1.186.839-1.626 1.881c-.486 1.144-.338 2.261-.338 2.261s-.843.732-.899 1.487c-.051.663.139 1.2.343 1.515.227.343.51.176.51.176s-.561.653-.037.931c.477.25 1.283.394 1.71-.037.31-.31.371-1.001.486-1.283.028-.065.12.111.209.199.097.093.264.195.264.195s-.755.324-.445 1.066c.102.246.468.403 1.066.398.222-.005 2.664-.139 3.313-.296.375-.088.505-.283.505-.283s1.566-.431 2.998-1.357c.917-.598 1.293-.76 2.034-.936.612-.148.57-1.098-.241-1.084-.839.009-1.575.44-2.196.825-1.163.718-1.742.672-1.742.672l-.018-.032c-.079-.13.371-1.293-.134-2.678-.547-1.515-1.413-1.881-1.344-1.997.297-.5 1.038-1.297 1.334-2.78.176-.899.13-2.377-.269-3.151-.074-.144-.732.241-.732.241s-.616-1.371-.788-1.483a.27.27 0 0 0-.157-.046z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ycombinator.svg������������������������������0000664�0000000�0000000�00000000352�14753064456�0026151�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 24V0h24v24zM6.951 5.896l4.112 7.708v5.064h1.583v-4.972l4.148-7.799h-1.749l-2.457 4.875c-.372.745-.688 1.434-.688 1.434s-.297-.708-.651-1.434L8.831 5.896z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/yelp.svg�������������������������������������0000664�0000000�0000000�00000006671�14753064456�0024606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.689 15.142-3.672.848c-.377.087-.755.183-1.145.155-.261-.019-.512-.042-.76-.213a1.2 1.2 0 0 1-.332-.36c-.348-.551-.365-1.366-.37-2a6.3 6.3 0 0 1 .332-2.064 2 2 0 0 1 .107-.248 2 2 0 0 1 .126-.216 3 3 0 0 1 .156-.198 1.2 1.2 0 0 1 .399-.283 1.1 1.1 0 0 1 .46-.083c.235.001.513.052.91.173.055.02.123.038.185.057.328.101.705.24 1.15.399q1.027.36 2.046.74l1.212.442q.333.12.64.297c.175.098.328.23.452.387a1.2 1.2 0 0 1 .192.43 1.22 1.22 0 0 1-.872 1.453q-.072.022-.108.03l-1.105.255zM18.82 7.565a2 2 0 0 0-.204-.175 2 2 0 0 0-.208-.14 2 2 0 0 0-.227-.109 1.2 1.2 0 0 0-.482-.08 1.1 1.1 0 0 0-.45.127c-.21.105-.439.273-.742.555-.042.042-.095.089-.142.133-.25.235-.528.525-.86.863a115 115 0 0 0-1.516 1.563l-.897.93a4 4 0 0 0-.446.548 1.5 1.5 0 0 0-.237.545 1.2 1.2 0 0 0 .011.452l.005.02a1.22 1.22 0 0 0 1.418.923 1 1 0 0 0 .11-.021l4.779-1.104c.376-.087.758-.167 1.097-.363.227-.132.443-.262.59-.525a1.2 1.2 0 0 0 .141-.469c.073-.65-.267-1.39-.54-1.963a6.3 6.3 0 0 0-1.2-1.71M8.97.075a9 9 0 0 0-.83.157q-.415.097-.815.223c-.868.285-2.089.807-2.295 1.807-.117.565.16 1.144.373 1.66.26.625.614 1.189.938 1.778.854 1.554 1.724 3.099 2.592 4.645.259.462.542 1.047 1.043 1.286a1 1 0 0 0 .101.038c.225.085.47.102.704.047l.042-.01a1.2 1.2 0 0 0 .566-.34 1 1 0 0 0 .079-.081c.346-.435.345-1.084.376-1.614.104-1.77.214-3.542.301-5.314.033-.671.106-1.333.066-2.01-.033-.557-.037-1.198-.39-1.656-.621-.807-1.947-.74-2.852-.616m2.083 15.95a1.105 1.105 0 0 0-1.23-.414 1 1 0 0 0-.153.064 1.5 1.5 0 0 0-.217.135c-.2.148-.367.34-.52.532-.038.049-.074.114-.12.156l-.768 1.057a114 114 0 0 0-1.291 1.79c-.278.389-.519.718-.709 1.009-.036.054-.073.116-.107.164-.228.352-.357.61-.423.838a1.1 1.1 0 0 0-.046.472c.021.166.077.325.163.467q.069.108.15.207a2 2 0 0 0 .174.183 2 2 0 0 0 .211.173c.53.37 1.111.634 1.722.84a6 6 0 0 0 1.572.3q.136.006.273-.006a2 2 0 0 0 .25-.035 2 2 0 0 0 .245-.071 1.2 1.2 0 0 0 .418-.266c.112-.113.199-.25.254-.4.089-.22.147-.502.185-.92.004-.059.012-.13.018-.195.03-.346.044-.753.067-1.231q.056-1.103.09-2.203l.05-1.306c.01-.3.001-.634-.082-.934a1.4 1.4 0 0 0-.176-.405m8.676 2.045c-.16-.176-.388-.352-.746-.568l-.169-.101c-.298-.18-.658-.369-1.078-.597a121 121 0 0 0-1.943-1.042l-1.151-.61c-.06-.018-.12-.061-.177-.088a2.9 2.9 0 0 0-.699-.25 1.5 1.5 0 0 0-.254-.027 1 1 0 0 0-.165.01 1.11 1.11 0 0 0-.923.914 1.4 1.4 0 0 0 .016.439c.056.306.193.61.335.875l.615 1.152q.512.975 1.043 1.94c.23.421.42.78.598 1.079.034.056.072.116.101.168.218.358.392.584.57.746.114.11.251.195.402.247.158.052.326.07.492.054a2 2 0 0 0 .25-.043q.124-.033.242-.078a2 2 0 0 0 .247-.115 6 6 0 0 0 1.282-.96c.46-.452.866-.945 1.182-1.51q.066-.12.114-.248a3 3 0 0 0 .077-.24 3 3 0 0 0 .043-.252 1.2 1.2 0 0 0-.056-.491 1.1 1.1 0 0 0-.248-.404m2.86 3.742a.85.85 0 0 1-.111.423.85.85 0 0 1-.312.318.84.84 0 0 1-.438.119.85.85 0 0 1-.438-.118.85.85 0 0 1-.312-.317.86.86 0 0 1-.111-.425q0-.23.114-.43a.84.84 0 0 1 .315-.316.85.85 0 0 1 .432-.115.85.85 0 0 1 .43.114.84.84 0 0 1 .315.315.85.85 0 0 1 .116.432m-.12 0q0-.2-.1-.37a.6.6 0 0 0-.27-.27.7.7 0 0 0-.371-.1.7.7 0 0 0-.37.099.75.75 0 0 0-.271.27.7.7 0 0 0-.1.37q0 .199.1.372a.74.74 0 0 0 .27.271.74.74 0 0 0 .37.099.7.7 0 0 0 .37-.1.74.74 0 0 0 .27-.27.7.7 0 0 0 .102-.371m-.577.058.272.452h-.192l-.237-.405h-.155v.405h-.17v-1.02h.3q.19 0 .278.075.09.075.089.227a.3.3 0 0 1-.05.162.3.3 0 0 1-.135.104m-.042-.14a.15.15 0 0 0 .056-.122q0-.086-.049-.122-.05-.039-.156-.038h-.12v.328h.123q.091 0 .146-.047z"/></svg>�����������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/yeti.svg�������������������������������������0000664�0000000�0000000�00000000510�14753064456�0024571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.575 8.582v1.685h2.183v5.15h2.14v-5.15h2.183V8.583h-6.505ZM0 8.582l2.699 3.972v2.864h2.144v-2.864l2.693-3.971H5.172l-1.398 2.305-1.397-2.305zm8.022 0v6.836h5.84v-1.663h-3.694v-.974H13.3v-1.54h-3.132v-.974h3.589V8.583Zm13.832 0 .001 6.836H24V8.583Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/yii.svg��������������������������������������0000664�0000000�0000000�00000001644�14753064456�0024422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.88 0c-.844.545-1.806 1.509-2.363 2.34-1.168 1.743-1.44 2.995-.8 4.863.216.634.576 1.293.836 1.873 1.022 2.278 2.062 4.328 1.81 7.285 2.16-2.761 3.015-3.886 3.926-6.57 1.251-3.688-.007-7.659-3.41-9.791M5.643 4.656a9.3 9.3 0 0 0-3.382.659c-.21 2.657 1.021 7.23 5.516 8.506 1.818.559 3.272.413 5.056.898-.576 1.017-1.41 1.989-1.908 2.974-.494.976-.585 1.943-.54 3.043.047 1.105.302 2.19.548 3.264.924-.2 1.728-.54 2.424-.977 1.832-1.148 2.939-2.985 3.253-4.963l.015-.125v.017l.006-.061.001-.01.014-.16c.01-.123.022-.247.03-.356l.005-.08c.009-.117.017-.233.023-.336l.002-.034v-.002l.001-.032.015-.34q.005-.16.005-.298v-.018a9 9 0 0 0-.014-.508c-.009-.158-.02-.305-.032-.46a11 11 0 0 0-.529-2.662 12 12 0 0 0-.178-.503c-.18-.471-.355-.85-.48-1.145a7 7 0 0 0-.275-.568 10 10 0 0 0-.143-.258 9 9 0 0 0-.435-.693l-.123-.183c-2.025-2.844-5.446-4.62-8.875-4.59"/></svg>��������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/yoast.svg������������������������������������0000664�0000000�0000000�00000001047�14753064456�0024764�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.61 0 11.4 14.477 8.806 6.36H5.941l3.804 9.77a4.02 4.02 0 0 1 0 2.925c-.387.993-1.073 2.158-2.96 2.505V24c1.512-.06 2.692-.562 3.694-1.57 1.032-1.036 1.919-2.655 2.79-5.091L19.739 0ZM5.357 3.274a3.706 3.706 0 0 0-3.695 3.695v10.358a3.706 3.706 0 0 0 3.695 3.694h.817l.26-.034c1.76-.237 2.37-1.224 2.733-2.158a3.4 3.4 0 0 0 0-2.475L5.035 5.738H9.26l2.174 6.81 3.339-9.274Zm13.792.08L13.853 17.55c-.502 1.403-1.015 2.54-1.559 3.47h10.044V6.97a3.706 3.706 0 0 0-3.19-3.616Z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/yolo.svg�������������������������������������0000664�0000000�0000000�00000000705�14753064456�0024607�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.25 0a5.523 5.523 0 0 0-5.52 5.523c0 3.842-3.125 6.967-6.972 6.967a6.96 6.96 0 0 1-4.03-1.26 11.9 11.9 0 0 0 4.759 4.67v2.51c0 3.04 2.428 5.56 5.463 5.59 3.07 0 5.58-2.46 5.58-5.52V15.9c3.64-1.96 6.16-5.8 6.23-10.208v-.165C23.76 2.477 21.28 0 18.25 0M5.758 0A5.526 5.526 0 0 0 .24 5.523a5.52 5.52 0 0 0 5.518 5.517 5.517 5.517 0 0 0 5.512-5.517C11.27 2.477 8.802 0 5.758 0"/></svg>�����������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/youhodler.svg��������������������������������0000664�0000000�0000000�00000000457�14753064456�0025643�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4.727 15.273-3.636-2.182V4.364L8.364 0 12 2.182 15.636 0l7.273 4.364v8.727l-3.636 2.182v4.363L12 24l-7.273-4.364zM12 19.636l2.422-1.454v-5.818l4.851-2.909v-2.91L16.85 5.092 12 8 7.15 5.092 4.727 6.545v2.91l4.851 2.909v5.818z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/youtube.svg����������������������������������0000664�0000000�0000000�00000000624�14753064456�0025321�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.498 6.186a3.02 3.02 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.02 3.02 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.02 3.02 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.02 3.02 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814M9.545 15.568V8.432L15.818 12z"/></svg>������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/youtubegaming.svg����������������������������0000664�0000000�0000000�00000000522�14753064456�0026501�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 13.2v-6l-6-3.6-6 3.6-6-3.6-6 3.6v6l12 7.2zM8.4 10.8H6v2.4H4.8v-2.4H2.4V9.6h2.4V7.2H6v2.4h2.4zm7.2 2.4a1.2 1.2 0 0 1-1.2-1.2c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2-.54 1.2-1.2 1.2m3.6-2.4A1.2 1.2 0 0 1 18 9.6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2-.54 1.2-1.2 1.2"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/youtubekids.svg������������������������������0000664�0000000�0000000�00000001567�14753064456�0026203�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.99 13.543-.007-.288c-.015-1.122-.645-6.495-.999-7.457-.41-1.111-.974-1.945-1.675-2.48-1.143-.873-2.115-1.063-3.313-1.087h-.03c-.51 0-3.848.415-6.642.801-2.797.387-6.303.915-7.14 1.227-1.153.432-2.07.997-2.796 1.728C.05 7.332-.113 8.731.054 10.553c.13 1.412.875 6.975 1.302 8.248.574 1.717 1.694 2.75 3.154 2.909.36.039.704.059 1.045.059 1.28 0 2.295-.278 3.47-.598 1.848-.505 4.147-1.13 8.893-1.13h.14c1.162 0 4.008-.263 5.303-2.687.693-1.297.652-2.87.629-3.811m-7.719-1.67-.105.066q-.411.278-.819.563l-4.298 2.975c-.27.21-.748.521-1.016.521a.24.24 0 0 1-.107-.024c-.226-.12-.303-.94-.356-1.34l-.011-.087c-.065-.478-.594-5.035-.654-5.535-.017-.142-.105-.663.055-.781.05-.037.12-.05.2-.05.195 0 .442.083.549.118.845.272 5.083 1.774 6.4 2.448q.057.03.122.057c.188.08.446.192.452.51.004.304-.225.446-.412.56z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/youtubemusic.svg�����������������������������0000664�0000000�0000000�00000000613�14753064456�0026360�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.376 0 0 5.376 0 12s5.376 12 12 12 12-5.376 12-12S18.624 0 12 0m0 19.104c-3.924 0-7.104-3.18-7.104-7.104S8.076 4.896 12 4.896s7.104 3.18 7.104 7.104-3.18 7.104-7.104 7.104m0-13.332c-3.432 0-6.228 2.796-6.228 6.228S8.568 18.228 12 18.228s6.228-2.796 6.228-6.228S15.432 5.772 12 5.772M9.684 15.54V8.46L15.816 12z"/></svg>���������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/youtubeshorts.svg����������������������������0000664�0000000�0000000�00000000701�14753064456�0026560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.931 9.99-1.441-.601 1.717-.913a4.48 4.48 0 0 0 1.874-6.078 4.506 4.506 0 0 0-6.09-1.874L4.792 5.929a4.5 4.5 0 0 0-2.402 4.193 4.52 4.52 0 0 0 2.666 3.904c.036.012 1.442.6 1.442.6l-1.706.901a4.51 4.51 0 0 0-2.369 3.967A4.53 4.53 0 0 0 6.93 24c.725 0 1.437-.174 2.08-.508l10.21-5.406a4.49 4.49 0 0 0 2.39-4.192 4.53 4.53 0 0 0-2.678-3.904Zm-9.334 5.2V8.824l6.007 3.184z"/></svg>���������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/youtubestudio.svg����������������������������0000664�0000000�0000000�00000001410�14753064456�0026543�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.919 13.176c.048-.384.084-.768.084-1.176s-.036-.792-.084-1.176l2.532-1.98a.605.605 0 0 0 .144-.768l-2.4-4.152a.6.6 0 0 0-.732-.264l-2.988 1.2a8.8 8.8 0 0 0-2.028-1.176l-.456-3.18A.585.585 0 0 0 14.403 0h-4.8c-.3 0-.552.216-.588.504l-.456 3.18A9.2 9.2 0 0 0 6.531 4.86l-2.988-1.2a.585.585 0 0 0-.732.264l-2.4 4.152a.59.59 0 0 0 .144.768l2.532 1.98c-.048.384-.084.78-.084 1.176s.036.792.084 1.176l-2.532 1.98a.605.605 0 0 0-.144.768l2.4 4.152c.144.264.468.36.732.264l2.988-1.2c.624.48 1.296.876 2.028 1.176l.456 3.18a.585.585 0 0 0 .588.504h4.8c.3 0 .552-.216.588-.504l.456-3.18a9.2 9.2 0 0 0 2.028-1.176l2.988 1.2c.276.108.588 0 .732-.264l2.4-4.152a.605.605 0 0 0-.144-.768zM9.603 15.6V8.4l6 3.6z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/youtubetv.svg��������������������������������0000664�0000000�0000000�00000005056�14753064456�0025677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.794 10.609h-.618v3.286h-.607v-3.286h-.617v-.504h1.842zm.135-.504h.649l.202 1.703c.057.488.11.908.172 1.484h.026c.057-.576.114-.986.17-1.484l.208-1.703H24l-.623 3.784h-.82zm-15.758.38a.8.8 0 0 0-.555-.561c-.493-.13-2.465-.13-2.465-.13s-1.973 0-2.466.13a.79.79 0 0 0-.555.56C0 10.977 0 12 0 12s0 1.028.13 1.516a.8.8 0 0 0 .56.56c.488.13 2.46.13 2.46.13s1.973 0 2.466-.13a.8.8 0 0 0 .56-.555c.13-.493.13-1.516.13-1.516s-.005-1.028-.135-1.52m-3.649 2.46v-1.89l1.64.945zm6.629.867a.65.65 0 0 1-.265-.395 2.7 2.7 0 0 1-.078-.706v-.4a2.4 2.4 0 0 1 .093-.716.72.72 0 0 1 .28-.394.94.94 0 0 1 .504-.125q.306 0 .493.125c.13.098.229.233.27.394.062.234.094.472.083.716v.4q.01.36-.083.711a.7.7 0 0 1-.27.395q-.188.124-.508.124c-.218-.005-.395-.046-.52-.13zm.7-.436c.037-.089.052-.24.052-.442v-.856a1.4 1.4 0 0 0-.052-.436.19.19 0 0 0-.181-.14.18.18 0 0 0-.177.14c-.041.14-.057.29-.052.436v.861c0 .203.016.353.052.442.02.083.094.14.182.135a.18.18 0 0 0 .176-.14m8.88-.66v.14c0 .135.006.265.016.4a.4.4 0 0 0 .068.192.2.2 0 0 0 .156.062.2.2 0 0 0 .192-.109c.036-.072.052-.192.057-.363l.534.036a1 1 0 0 1 .006.1q.001.381-.208.57-.21.187-.592.187-.458-.002-.643-.29c-.185-.288-.187-.489-.187-.894v-.482q-.001-.623.192-.909.195-.287.654-.285.32 0 .493.12c.12.088.207.217.244.363.052.223.078.456.067.685v.472zm.079-1.162a.37.37 0 0 0-.063.192 6 6 0 0 0-.015.405v.197h.457v-.197q0-.203-.021-.405a.4.4 0 0 0-.068-.192.17.17 0 0 0-.145-.057.17.17 0 0 0-.145.057m-11.175 1.11-.706-2.559h.618l.249 1.158q.093.428.14.732h.02c.022-.146.068-.384.14-.727l.26-1.163h.618l-.716 2.56v1.23H7.64v-1.23zm4.905-1.536v2.767h-.488L12 13.557h-.016c-.13.255-.332.384-.596.384q-.273-.001-.405-.181-.132-.179-.13-.566v-2.066h.623v2.03a.7.7 0 0 0 .041.264.14.14 0 0 0 .135.078.3.3 0 0 0 .156-.052.3.3 0 0 0 .109-.124v-2.196zm3.192 0v2.767h-.488l-.052-.338h-.016c-.13.255-.332.384-.596.384q-.273-.001-.405-.181-.132-.179-.13-.566v-2.066h.623v2.03a.7.7 0 0 0 .041.264.14.14 0 0 0 .135.078.3.3 0 0 0 .156-.052.3.3 0 0 0 .109-.124v-2.196zm-1.5-.52h-.618v3.287h-.607v-3.286h-.618v-.504h1.843v.504zm3.56.961c-.036-.171-.098-.3-.181-.379a.5.5 0 0 0-.348-.12.56.56 0 0 0-.322.1.64.64 0 0 0-.228.254h-.005V9.965h-.597v3.93h.514l.062-.26h.015a.53.53 0 0 0 .218.223.7.7 0 0 0 .322.083.5.5 0 0 0 .467-.29c.099-.192.15-.499.15-.909v-.436a5 5 0 0 0-.067-.737m-.57 1.127c0 .155-.006.316-.026.472a.5.5 0 0 1-.084.244.2.2 0 0 1-.155.072.26.26 0 0 1-.14-.036.3.3 0 0 1-.104-.109v-1.567a.4.4 0 0 1 .109-.187.22.22 0 0 1 .166-.073c.057 0 .114.026.145.073q.064.116.073.249.021.249.02.498z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/yr.svg���������������������������������������0000664�0000000�0000000�00000002051�14753064456�0024253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.412 9.764c.295.257.464.558.474 1.085-.003.567-.184.96-.454 1.234-.275.271-.667.452-1.234.454h-1.885c-.292.001-.573.103-.839.2l-.13.047v-2.479a.98.98 0 0 1 .97-.969h1.708c.605 0 1.09.177 1.39.428M24 12c0 6.627-5.372 12-12 12-6.627 0-12-5.373-12-12C0 5.372 5.373 0 12 0c6.628 0 12 5.372 12 12M11.148 7.709H9.231l-.002 3.133c-.036 1.168-1.13 1.546-2.001 1.558-.995-.014-2.044-.566-2.044-2.083V7.709H3.293v2.608c0 1.184.409 2.195 1.184 2.925.701.66 1.662 1.031 2.712 1.049h.078c.705-.013 1.741-.473 1.942-.879v.863c0 1.144-1.455 1.89-1.847 2.086l.028.034-.01.005-.018.009 1.218 1.473.18-.101h-.001c.797-.445 2.38-1.33 2.389-3.717zm7.14 6.621a3.4 3.4 0 0 0 1.514-.876c.664-.661 1.026-1.597 1.022-2.604.01-1.047-.45-1.988-1.176-2.578-.723-.597-1.655-.874-2.625-.875h-1.709a2.914 2.914 0 0 0-2.908 2.908v7.176h1.938v-2.036a.98.98 0 0 1 .97-.969h.772l2.085 2.554.146.18c.158.151.365.25.596.27v.001h.042a.3.3 0 0 0 .08 0h1.147l.003-1.567s-.473.132-.826-.246c-.415-.444-1.071-1.338-1.071-1.338"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/yubico.svg�����������������������������������0000664�0000000�0000000�00000000473�14753064456�0025121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.356 12.388 2.521-7.138h3.64l-6.135 15.093H8.539l1.755-4.136L6 5.25h3.717ZM12 0C5.381 0 0 5.381 0 12s5.381 12 12 12 12-5.381 12-12S18.619 0 12 0m0 1.5c5.808 0 10.5 4.692 10.5 10.5S17.808 22.5 12 22.5 1.5 17.808 1.5 12 6.192 1.5 12 1.5"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/yunohost.svg���������������������������������0000664�0000000�0000000�00000007217�14753064456�0025522�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.512 22.087c-.225-.151-.527-.5-.671-.774-.28-.53-.826-1.11-1.382-1.467-.384-.247-.595-.985-.361-1.266.077-.094.407-.242.732-.33.325-.087.645-.207.71-.266.066-.06.126-.486.133-.95.045-2.832.067-2.902.934-2.902 1.028 0 1.724 1.228 1.386 2.447-.24.864-.192 1.05.269 1.048.704-.003.743-.084.774-1.638.048-2.343.561-3.088 1.74-2.526.747.356.857 1.323.346 3.042-.167.562.164 2.891.511 3.594.196.396-.014.952-.379 1.005-.165.023-.437-.092-.662-.281-.21-.177-.426-.322-.48-.322s-.255-.225-.445-.5c-.331-.478-.71-.64-.874-.374-.043.069-.332.19-.644.268-.545.137-.563.157-.494.53.205 1.109.207 1.551.009 1.75-.271.27-.663.24-1.152-.089m12.653-1.734c-.27-.157-.798-.745-1.032-1.15-.083-.144-.154-.533-.156-.863-.007-.884.365-1.442.557-.836.183.575.86.833 1.178.449.257-.31-.173-1.035-1.24-2.086-.958-.946-1-1.01-1-1.554 0-.844.243-1.195 1.11-1.61.72-.344.783-.353 1.291-.19.693.222 1.505 1.005 1.45 1.396-.035.244-.115.286-.54.286-.275 0-.57.046-.656.101-.255.165-.178.543.156.762.308.201.312.2.312-.15 0-.344.033-.362 1.093-.596l1.093-.242.089-.983c.15-1.653.628-1.98 1.572-1.073.288.277.533.572.543.656a7 7 0 0 1 .032.339c.01.154.2.18 1.09.144 1.037-.042 1.091-.03 1.466.312.267.244.4.49.421.783.027.362-.032.472-.384.713-.229.156-.973.462-1.655.68-.978.312-1.238.443-1.238.625 0 .127.064.793.142 1.48.16 1.413.058 1.875-.469 2.115-.464.212-.587.18-1.025-.272-.512-.53-.67-1.087-.568-2.004.095-.849.04-.913-.738-.851l-.553.044.182.52c.116.334.157.763.113 1.206-.057.58-.132.742-.48 1.042-1.036.89-1.63 1.113-2.156.807m-5.087-.104c-.6-.104-1.47-.777-1.995-1.544-.374-.547-.417-.696-.408-1.436.012-.962.312-2.081.685-2.556.297-.377 1.2-.83 1.656-.83.277 0 .917.235 1.896.696.844.399.992.646 1.177 1.983l.138.986-.456.972c-.25.534-.582 1.09-.736 1.234-.363.341-1.372.596-1.957.495m.315-2.362c.449-.17.674-.91.403-1.324-.11-.169-.274-.307-.362-.307-.498 0-1.024 1.18-.7 1.57.174.21.249.217.659.061m-7.05-6.284c-.237-.158-.56-.555-.736-.905-.284-.569-.309-.746-.278-1.984l.033-1.36-.751-.722c-.414-.398-.752-.745-.752-.772s-.113-.576-.25-1.22c-.138-.642-.25-1.466-.25-1.83 0-.57.044-.69.316-.868.494-.324 1.035-.107 1.515.608.32.475.412.767.483 1.523.092.986.257 1.265.668 1.135.246-.078.958-.817 1.211-1.257.129-.223.16-.219.709.103.414.243.614.458.719.776.13.393.111.498-.173.983-.175.298-.53.73-.79.958s-.48.53-.489.672c-.06 1.06-.323 4.16-.364 4.286-.075.231-.344.19-.82-.125m4.565-.894c-.58-.253-1.378-1.235-1.556-1.917-.19-.723-.178-3.703.017-4.478.076-.301.203-.548.282-.548.239 0 1.06.61 1.22.908.089.164.16.888.175 1.763.021 1.28.055 1.503.247 1.61.17.095.263.07.39-.104.092-.126.168-.316.17-.423 0-.107.14-.633.311-1.168s.317-1.237.324-1.56c.026-1.244.3-1.522.954-.972.766.644.806 2.097.137 4.941-.266 1.136-.533 1.525-1.316 1.921-.479.243-.844.25-1.355.027zm4.293-.265c-.667-.347-.79-.6-.621-1.27.373-1.488.446-3.255.196-4.77-.08-.486-.057-.572.21-.777.164-.127.419-.232.564-.233.354-.004 1.171.898 1.526 1.683.518 1.148.706 1.476.817 1.425.061-.028.125-.895.143-1.926.029-1.653.065-1.937.308-2.404.152-.291.354-.53.45-.53s.327.24.516.531c.19.292.396.568.459.613s.093.691.067 1.436-.04 1.832-.03 2.416c.06 3.507.04 3.706-.38 3.866-.398.151-1.026-.156-1.782-.871-.362-.342-.707-.622-.767-.622s-.21.323-.334.718c-.36 1.154-.429 1.19-1.342.715m6.704-1.078c-1.164-.63-1.56-1.207-1.653-2.412-.075-.956.332-2.655.775-3.235.174-.228.316-.476.316-.552s.249-.31.553-.52c.71-.488 1.368-.51 2.023-.065.92.624 1.054 1.106 1.092 3.931.015 1.092-.012 1.235-.337 1.787-.194.33-.477.647-.63.705a1.2 1.2 0 0 0-.429.29c-.184.22-1.344.27-1.71.071m1.238-3.019c.415-.83.36-1.362-.149-1.435-.225-.032-.324.064-.512.505-.353.822-.436 1.327-.256 1.544.267.323.54.14.917-.614"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zabka.svg������������������������������������0000664�0000000�0000000�00000004167�14753064456�0024723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4.12 15.041.187-.967a9.42 9.42 0 0 0 10.05 0l.187.967a8.44 8.44 0 0 1-10.424 0m12.109-4.463c.343.062.718.031 1.03-.156.25-.156.405-.406.468-.687.062-.28.094-.53.125-.811h1.186v.437a2.8 2.8 0 0 1-.281 1.03c-.125.25-.343.468-.562.624-.062.031-.125.094-.187.125.062.093.125.218.156.312.312.562.624 1.092.967 1.654l.094.187a.4.4 0 0 1 .031.188h-1.31l-1.03-1.873-.687.062v1.842h-1.28v-6.18h1.28zM3.808 8.893c0 .062-.032.124-.063.218l-.655 1.124a70 70 0 0 0-1.186 2.06c0 .03-.031.062-.031.093h1.935v1.124H0c0-.063.031-.125.062-.187.188-.344.375-.656.562-.968s.343-.593.53-.905c.25-.437.5-.874.75-1.28.031-.031.031-.062.062-.125H.156V8.893zm-1.78-.437A.52.52 0 0 1 1.56 8.3c-.187-.156-.28-.437-.187-.687a.65.65 0 0 1 .53-.437c.22-.062.469.031.625.187.187.188.218.437.156.687a.6.6 0 0 1-.562.406q-.046.045-.093 0zm12.016 1.872a2.12 2.12 0 0 0-.749-1.123 1.87 1.87 0 0 0-1.123-.375 2.5 2.5 0 0 0-1.061.156c-.032 0-.094.031-.125.031V7.332h-1.28v5.899c.187.062.375.094.562.125.312.093.624.156.967.218.5.063 1 0 1.498-.156.75-.218 1.311-.843 1.405-1.623.062-.468.062-.999-.094-1.467m-1.217 1.53a.89.89 0 0 1-.655.624 1.96 1.96 0 0 1-1.124-.063s-.031 0-.031-.03v-2.28a1.32 1.32 0 0 1 1.467-.03c.156.124.25.28.312.468.125.406.156.874.031 1.31zM8.52 9.205a5.3 5.3 0 0 0-.999-.281q-.702-.14-1.404-.094a1.8 1.8 0 0 0-1.124.53c-.28.313-.499.687-.561 1.093a4.8 4.8 0 0 0-.094.936q0 .608.281 1.124c.156.28.374.53.655.687a3.08 3.08 0 0 0 2.029.343c.5-.062.967-.218 1.467-.312V9.33c-.063-.032-.156-.094-.25-.125m-.999 3.214c-.436.156-.905.188-1.342 0a.83.83 0 0 1-.468-.499 2.24 2.24 0 0 1 .032-1.498.93.93 0 0 1 .749-.562c.312-.031.655 0 .936.156.031 0 .031.031.062.031zm16.073-3.277a7 7 0 0 0-1.154-.28 3.8 3.8 0 0 0-1.186 0c-.718.124-1.28.655-1.498 1.341a3.7 3.7 0 0 0-.125 1.655c.062.499.312.967.718 1.28.093.062.218.155.312.187.25.124.561.218.842.25q.516.093 1.03 0c.5-.094.999-.22 1.467-.313V9.33a5 5 0 0 0-.406-.188m-.811 3.277c-.063.032-.094.032-.156.032-.25.062-.5.093-.78.093a.98.98 0 0 1-.78-.405 1.1 1.1 0 0 1-.188-.437c-.062-.375-.062-.75.062-1.124a.93.93 0 0 1 .812-.687c.343-.062.687 0 .999.188z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zaim.svg�������������������������������������0000664�0000000�0000000�00000002350�14753064456�0024563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.748.453C6.13.453 4.852.623 4 1.047c-.51.255-1.191.765-1.446 1.784-.256 1.019.17 1.782.51 2.122a8.3 8.3 0 0 0 2.212 1.613c-1.872.425-3.404.933-4.255 1.528C.512 8.434 0 9.028 0 10.13v9.426c0 1.104.51 1.697.936 2.037 1.533 1.103 5.449 1.953 9.96 1.953 4.513 0 8.429-.765 9.961-1.953.511-.34 1.022-.933 1.022-2.037V10.13c0-.17 0-.424-.085-.594.255-.085.511-.17.682-.254.51-.255 1.19-.765 1.446-1.784.255-1.019-.17-1.781-.51-2.206-1.192-1.443-4.853-3.142-9.28-4.076C11.833.708 9.62.453 7.748.453m.457 1.505c1.573.023 3.548.257 5.67.703 4.853 1.103 8.514 2.887 8.259 4.075-.256 1.189-4.427 1.273-9.195.255-4.852-1.104-8.513-2.887-8.258-4.076.144-.669 1.501-.987 3.524-.957m-.287 5.797c1.362.425 2.895.934 4.513 1.273 2.81.68 5.447.85 7.576.765 0 1.189-4 2.208-8.939 2.208-4.937 0-8.938-1.02-8.938-2.208 0-.934 2.383-1.698 5.788-2.038m-4.343 5.519c1.958.51 4.513.849 7.408.849 2.894 0 5.447-.34 7.406-.849.936.425 1.532.849 1.532 1.273 0 1.189-4 2.208-8.938 2.208s-8.94-1.02-8.94-2.208c0-.51.596-.933 1.532-1.273m0 4.754c1.958.51 4.513.85 7.408.85 2.894 0 5.447-.34 7.406-.85.936.425 1.532.85 1.532 1.275 0 1.189-4 2.206-8.938 2.206s-8.94-1.017-8.94-2.206c0-.51.596-.935 1.532-1.275"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zalando.svg����������������������������������0000664�0000000�0000000�00000000650�14753064456�0025254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.27 24c-.88 0-1.36-.2-1.62-.36-.36-.21-1.02-.75-1.62-2.33A27 27 0 0 1 .49 12c.02-3.66.59-6.76 1.54-9.3C2.63 1.1 3.29.56 3.65.35 3.91.21 4.39 0 5.27 0c.33 0 .72.03 1.18.1a26.1 26.1 0 0 1 8.7 3.3h.01a26.4 26.4 0 0 1 7.16 6.01c1.06 1.32 1.19 2.17 1.19 2.59s-.13 1.27-1.19 2.59a26.4 26.4 0 0 1-7.16 6h-.01a26 26 0 0 1-8.7 3.3c-.46.08-.85.11-1.18.11"/></svg>����������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zalo.svg�������������������������������������0000664�0000000�0000000�00000001235�14753064456�0024571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.49 10.272v-.45h1.347v6.322h-.77a.576.576 0 0 1-.577-.573v.001a3.27 3.27 0 0 1-1.938.632 3.284 3.284 0 0 1-3.284-3.282 3.284 3.284 0 0 1 3.284-3.282 3.27 3.27 0 0 1 1.937.632zM6.919 7.79v.205c0 .382-.051.694-.3 1.06l-.03.034a8 8 0 0 0-.242.285L2.024 14.8h4.895v.768a.576.576 0 0 1-.577.576H0v-.362c0-.443.11-.641.25-.847L4.858 9.23H.192V7.79zm8.551 8.354a.48.48 0 0 1-.48-.48V7.79h1.441v8.354zM20.693 9.6a3.306 3.306 0 1 1 .002 6.612 3.306 3.306 0 0 1-.002-6.612m-10.14 5.253a1.932 1.932 0 1 0 0-3.863 1.932 1.932 0 0 0 0 3.863m10.14-.003a1.945 1.945 0 1 0 0-3.89 1.945 1.945 0 0 0 0 3.89"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zap.svg��������������������������������������0000664�0000000�0000000�00000001544�14753064456�0024421�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.145 14.103a.17.17 0 0 1 .086-.269l1.716-.42c.126-.037.136-.173.123-.229a.2.2 0 0 0-.021-.04L13.07 8.163c-.073-.102-.03-.228.074-.266l1.345-.433a.167.167 0 0 0 .08-.256L9.557.08a.155.155 0 0 0-.189-.068L.1 4.03a.17.17 0 0 0-.03.29l5.167 3.673a.16.16 0 0 1 .068.151.17.17 0 0 1-.056.115l-.04.024-1.215.532a.17.17 0 0 0-.09.096v.04a.18.18 0 0 0 .069.154l5.325 3.842c.11.085.074.243-.04.294l-1.58.618a.168.168 0 0 0-.021.3L20.77 21.73c.15.063.29-.11.198-.244zm.148-7.402a1.07 1.07 0 0 1 .136.927 1.05 1.05 0 0 1-.667.661l-.362.118 3.32 4.19a1.048 1.048 0 0 1-.566 1.673l-.618.155 4.481 5.677a11.677 11.677 0 0 0-8.7-19.471c-.414 0-.822.021-1.236.061zm-8.082 8.227a1.05 1.05 0 0 1 .139-1.882l.377-.145L3.46 9.81a1.05 1.05 0 0 1 .191-1.811l.062-.028-1.69-1.187A11.68 11.68 0 0 0 19.12 21.805Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zapier.svg�����������������������������������0000664�0000000�0000000�00000004773�14753064456�0025130�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.157 0A4.15 4.15 0 0 0 0 4.161v15.678A4.15 4.15 0 0 0 4.157 24h15.682A4.15 4.15 0 0 0 24 19.839V4.161A4.15 4.15 0 0 0 19.839 0zm10.61 8.761h.03a.6.6 0 0 1 .23.038.6.6 0 0 1 .201.124.63.63 0 0 1 .162.431.6.6 0 0 1-.162.435.6.6 0 0 1-.201.128.6.6 0 0 1-.23.042.5.5 0 0 1-.235-.042.59.59 0 0 1-.332-.328.6.6 0 0 1-.038-.235.61.61 0 0 1 .17-.431.6.6 0 0 1 .405-.162m2.853 1.572q.044.005.095.004c.325-.011.646.064.937.219.238.144.431.355.552.609.128.279.189.582.185.888v.193a2 2 0 0 1 0 .219h-2.498c.003.227.075.45.204.642a.78.78 0 0 0 .646.265.7.7 0 0 0 .484-.136.64.64 0 0 0 .23-.318l.915.257a1.4 1.4 0 0 1-.28.537c-.14.159-.321.284-.521.355a2.2 2.2 0 0 1-.836.136 1.9 1.9 0 0 1-1.001-.245 1.6 1.6 0 0 1-.665-.703 2.2 2.2 0 0 1-.227-1.036 1.95 1.95 0 0 1 .48-1.398 1.9 1.9 0 0 1 1.3-.488m-9.607.023c.162.004.325.026.48.079.207.065.4.174.563.314.26.302.393.692.366 1.088v2.276H8.53l-.109-.711h-.065q-.096.245-.272.439a1.1 1.1 0 0 1-.374.264 1 1 0 0 1-.453.083 1.33 1.33 0 0 1-.866-.264.97.97 0 0 1-.329-.801 1 1 0 0 1 .076-.431 1 1 0 0 1 .242-.363 1.48 1.48 0 0 1 1.043-.303h.952v-.181a.7.7 0 0 0-.136-.454.55.55 0 0 0-.438-.154.7.7 0 0 0-.378.086.48.48 0 0 0-.193.254l-.99-.144a1.26 1.26 0 0 1 .257-.563c.14-.174.321-.302.533-.378.261-.091.54-.136.82-.129q.078-.006.163-.007m4.384.007c.174 0 .347.038.506.114.182.083.34.211.458.374.257.423.377.911.351 1.406a2.53 2.53 0 0 1-.355 1.448 1.15 1.15 0 0 1-1.009.517c-.204 0-.401-.045-.582-.136a1.05 1.05 0 0 1-.48-.457 1.3 1.3 0 0 1-.114-.234h-.045l.004 1.784h-1.059v-4.713h.904l.117.805h.057c.068-.208.177-.401.328-.56a1.13 1.13 0 0 1 .843-.344h.076zm7.559.084h.903l.113.805h.053a1.4 1.4 0 0 1 .235-.484.8.8 0 0 1 .313-.242.8.8 0 0 1 .39-.076h.234v1.051h-.401a.66.66 0 0 0-.313.008.6.6 0 0 0-.272.155.66.66 0 0 0-.174.26.7.7 0 0 0-.027.314v1.875h-1.054zm-17.515.003h3.262v.896L3.73 13.104l.034.113h1.973l.042.9H2.4v-.9l1.931-1.754-.045-.117H2.441zm11.815 0h1.055v3.659h-1.055zm3.443.684.019.016a.7.7 0 0 0-.351.045.76.76 0 0 0-.287.204c-.11.155-.174.336-.189.522h1.545c-.034-.526-.257-.787-.74-.787zm-5.718.163c-.026 0-.057 0-.083.004a.8.8 0 0 0-.31.053.75.75 0 0 0-.257.189 1.02 1.02 0 0 0-.204.695v.064c-.015.257.057.507.204.711a.63.63 0 0 0 .253.196.64.64 0 0 0 .314.061.64.64 0 0 0 .578-.265c.14-.223.204-.48.189-.74a1.2 1.2 0 0 0-.181-.711.68.68 0 0 0-.503-.257m-4.509 1.266a.46.46 0 0 0-.268.102.37.37 0 0 0-.114.276q0 .08.027.155a.4.4 0 0 0 .087.132.58.58 0 0 0 .397.11v.004a.86.86 0 0 0 .563-.182.57.57 0 0 0 .211-.457v-.14z"/></svg>�����mkdocs-material-9.6.4/material/templates/.icons/simple/zara.svg�������������������������������������0000664�0000000�0000000�00000002130�14753064456�0024554�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m8.562 7 .002.006 2.794 7.621v-7.23h-1.15v-.07h3.96c1.903 0 3.231.976 3.231 2.375 0 1.02-.91 1.868-2.263 2.109l-.249.031.25.026c.821.094 1.473.346 1.935.75l.003.003L19.141 7h.07l.002.006 3.556 9.698H24v.07h-3.918v-.07h1.154l-1.17-3.189h-2.373v.002l.013.037c.094.281.142.576.139.873v1.196c0 .615.271 1.238.79 1.238.304 0 .547-.107.837-.372l.041.038c-.314.332-.695.473-1.266.473-.43 0-.8-.104-1.096-.308l-.056-.04c-.39-.296-.644-.778-.753-1.435l-.018-.106-.018-.16-.002-.028-.654 1.78h.928v.07h-1.942v-.07h.938l.718-1.954v-.005a6 6 0 0 1-.013-.346v-.854c0-1.049-.78-1.65-2.14-1.65h-1.337v4.81h1.158v.07H9.433v-.07h1.154l-1.17-3.189H6.172l-1.158 3.154.048-.008c1.521-.262 2.22-1.423 2.23-2.645h.07v2.758H0l5.465-9.377H3.268c-1.822 0-2.646 1.407-2.659 2.81H.54v-2.88h6.634l-.04.07-5.425 9.307h2.854q.106 0 .212-.009l.072-.006.09-.01L8.491 7zm9.883 2.095-1.313 3.576.007.007.067.066c.193.197.347.43.452.684l.007.017h2.375zm-10.648 0-1.599 4.35h3.194zm6.026-1.698h-1.02v4.427h1.336c1.353 0 1.767-.493 1.767-2.107 0-1.517-.72-2.32-2.083-2.32"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zazzle.svg�����������������������������������0000664�0000000�0000000�00000001504�14753064456�0025142�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 12C0 5.382 5.382 0 12 0s12 5.382 12 12-5.382 12-12 12S0 18.618 0 12m5.936 6.179c.134.177.422.155.665-.045.532-.42 1.042-.753 2.016-.753 1.839 0 3.301 1.152 5.495 1.152 1.684.021 2.747-.62 3.346-1.485.465-.664.686-1.573.686-2.282 0-.997-.576-1.662-1.573-1.662-.953 0-1.373.487-1.419 1.196-.021.288-.021.843-.199 1.108-.177.288-.51.377-.908.377-1.042 0-2.283-.841-3.655-.841h-.2l8.928-7.223c.155-.112.222-.377.045-.51l-1.374-1.618c-.244-.222-.421-.199-.665 0-.466.377-.908.754-1.861.754-1.552 0-3.213-.975-5.383-.975-1.55 0-2.416.576-3.014 1.197-.576.62-.974 1.617-.974 2.57 0 .975.576 1.595 1.529 1.595.864 0 1.374-.487 1.374-1.174 0-.398.021-.753.199-1.018.155-.266.554-.51 1.108-.51.864 0 2.503.597 3.523.597h.066l-9.04 7.179c-.177.133-.177.442-.066.597Z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zcash.svg������������������������������������0000664�0000000�0000000�00000000426�14753064456�0024735�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12.013 12.013 0 0 0 12 12 12 12 0 1 0 0-24m-1.008 4.418h2.014v2.014l3.275-.002v1.826l-5.08 6.889h5.08v2.423h-3.275v2.006h-2.012v-2.006H7.72v-1.826l5.074-6.888H7.719V6.432h3.273z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zcool.svg������������������������������������0000664�0000000�0000000�00000001717�14753064456�0024757�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.467.438q-.144-.016-.2.12-.87 2.096-3.067 3.157-1.03.5-1.916.67-1.574.304-2.762.631C3.442 6.135.197 9.2.01 13.59q-.138 3.23 1.657 5.85c2.826 4.127 8.452 5.384 12.722 2.732q3.421-2.126 4.359-6.186a.146.148 84 0 1 .084-.103c.282-.128.582-.226.857-.368q3.122-1.608 4.301-4.96a.181.183 13.8 0 0-.144-.24.25.25 0 0 0-.127.011q-1.406.49-2.909.666a.03.03 0 0 1-.028-.047q2.968-4.024 2.799-9.112-.004-.15-.148-.188a.175.17 28.9 0 0-.174.048q-3.21 3.437-7.715 4.185-.116.018-.063-.086c.805-1.595.766-3.625.145-5.23a.2.2 0 0 0-.158-.123zm-2.151 13.195q.146-.02.053.209a6.6 6.6 0 0 1-1.258 2.003q-1.319 1.445-3.265 1.139a2.95 2.95 0 0 1-1.856-1.111.09.09 0 0 1 .001-.109.15.15 0 0 1 .109-.058c2.184-.205 4.073-1.122 6.092-2.033a.5.5 0 0 1 .124-.04m-12.231.618q.06.006.182.11c.739.624 1.679 1.212 2.644 1.296a.12.12 0 0 1 .095.171c-.556 1.113-1.661.87-2.283.025a4.2 4.2 0 0 1-.665-1.358q-.073-.255.027-.244"/></svg>�������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zdf.svg��������������������������������������0000664�0000000�0000000�00000001332�14753064456�0024405�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.014 4.987A7.02 7.02 0 0 0 0 12.005a7.017 7.017 0 0 0 13.271 3.174h2.915c.696 0 1.324-.044 1.962-.553.461-.365.749-.884.883-1.56v2.103h1.336v-2.473h3.153v-1.1h-3.16l.02-.445c.005-.724.226-1.162 1.277-1.162H24V8.876h-2.818c-1.517 0-2.141.85-2.141 2.18v.129c-.254-1.565-1.185-2.31-2.889-2.31h-2.855a7.02 7.02 0 0 0-6.283-3.888M8.02 8.876h3.436c1.742 0 1.992 1.219 1.992 1.9 0 .725-.298 1.873-1.992 1.873h-.844c-1.056 0-1.281.38-1.281 1.104v.336h3.945v1.074H7.982v-1.558c0-1.335.625-2.123 2.137-2.123h.873c.691 0 1.1-.14 1.1-.725 0-.605-.409-.772-1.12-.772h-2.95v-1.11zm6.63 1.113h1.472c1.157 0 1.574.496 1.574 2.04 0 1.542-.412 2.036-1.574 2.036H14.65z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zebpay.svg�����������������������������������0000664�0000000�0000000�00000001510�14753064456�0025112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.736 10.245S17.304 21.238 16.902 20.83l.905-1.091L6.828 9.31c-.331.279-.698.592-1.092.935m-4.88 4.38s-.828.823-.855 1.97c-.018.52.134 1.108.604 1.713q-.001 0 .026.035a2.3 2.3 0 0 0 .733.51q.057.026.126.05.167.062.373.108a4.3 4.3 0 0 0 1.217.064l.222-.023q.114-.015.232-.034.12-.019.245-.042c.007 0 .011 0 .02-.004q.011.001.022-.004c.768-.151 1.706-.467 2.836-1.022l-4.702-4.478a48 48 0 0 0-1.1 1.156Zm8.276-7.472s-.305.236-.801.636l-.294.236 10.907 10.378.92-1.093L9.161 7.12q-.015.016-.03.033Zm-5.91 5.07 5.126 4.882a5.4 5.4 0 0 1 1.738-.32l-5.816-5.54q-.515.471-1.047.978Zm5.529-8.885s-.414.14-.61.46L20.96 16.011l.921-1.09L9.544 3.158c-.276.04-.544.096-.793.18m5.959.443s-1.081-.353-2.434-.556l10.818 10.253.906-1.07-.722-.682-8.18-7.79q-.191-.076-.388-.155"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zebratechnologies.svg������������������������0000664�0000000�0000000�00000002565�14753064456�0027342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.145 13.109H4.6v-1.545l.545.546zm-2.183-.095.546.546v.771L2.417 13.24v-3.092L1.003 8.739a2.7 2.7 0 0 1 .465-.306l1.494 1.489V8.126a.899.899 0 0 1 .084 1.793h.7l.002.003.543.543H2.962zm.546-2.545-.003 2.636h.546l.002-2.088zm1.873 1.095-.546-.546h-.781l.545.546zm-3.51 1.162v-2.348L.616 9.125a2.7 2.7 0 0 0-.308.464l1.016 1.016v.771L.093 10.144q-.088.327-.093.68zM.01 11.604v.772l3.498 3.499v-.772L.01 11.605zm6.227.815h-.546v.69h-.546a.899.899 0 1 0 1.798 0zm2.977.701 1.658-3.186h-2.55l-.41.78h1.469l-1.659 3.185h2.551l.41-.779h-1.47zm2.95-2.407h1.307v-.779h-2.27V13.9h2.27v-.778h-1.308v-.82h1.308v-.78h-1.308v-.808zm1.78-.779V13.9h1.622c.404 0 .642-.053.838-.184.256-.173.404-.5.404-.868q0-.438-.267-.69c-.125-.119-.232-.172-.476-.226.214-.059.303-.112.416-.231a.94.94 0 0 0 .268-.69c0-.38-.167-.72-.44-.886-.214-.136-.505-.19-1.01-.19h-1.356zm.962.72h.226c.452 0 .636.136.636.457 0 .327-.184.464-.624.464h-.238zm0 1.622h.22c.291 0 .387.012.493.072q.214.117.214.404c0 .32-.172.458-.576.458h-.35v-.934zm3.239.09.868 1.533h1.153l-.874-1.456c.511-.202.767-.6.767-1.207 0-.434-.155-.79-.428-1.005-.262-.202-.642-.297-1.165-.297h-1.284V13.9h.963v-1.533zm0-.541v-1.1h.368c.34 0 .571.226.571.553 0 .344-.238.547-.63.547zm4.566 1.294h-1.285l-.245.78h-1.015l1.308-3.964h1.224L24 13.899h-1.045zm-.244-.78-.398-1.269-.398 1.27z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zedindustries.svg����������������������������0000664�0000000�0000000�00000001057�14753064456�0026522�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.25 1.5a.75.75 0 0 0-.75.75v16.5H0V2.25A2.25 2.25 0 0 1 2.25 0h20.095c1.002 0 1.504 1.212.795 1.92L10.764 14.298h3.486V12.75h1.5v1.922a1.125 1.125 0 0 1-1.125 1.125H9.264l-2.578 2.578h11.689V9h1.5v9.375a1.5 1.5 0 0 1-1.5 1.5H5.185L2.562 22.5H21.75a.75.75 0 0 0 .75-.75V5.25H24v16.5A2.25 2.25 0 0 1 21.75 24H1.655C.653 24 .151 22.788.86 22.08L13.19 9.75H9.75v1.5h-1.5V9.375A1.125 1.125 0 0 1 9.375 8.25h5.314l2.625-2.625H5.625V15h-1.5V5.625a1.5 1.5 0 0 1 1.5-1.5h13.19L21.438 1.5z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zelle.svg������������������������������������0000664�0000000�0000000�00000000764�14753064456�0024745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.559 24h-2.841a.483.483 0 0 1-.483-.483v-2.765H5.638a.667.667 0 0 1-.666-.666v-2.234a.67.67 0 0 1 .142-.412l8.139-10.382h-7.25a.667.667 0 0 1-.667-.667V3.914c0-.367.299-.666.666-.666h4.23V.483c0-.266.217-.483.483-.483h2.841c.266 0 .483.217.483.483v2.765h4.323c.367 0 .666.299.666.666v2.137a.67.67 0 0 1-.141.41l-8.19 10.481h7.665c.367 0 .666.299.666.666v2.477a.667.667 0 0 1-.666.667h-4.32v2.765a.483.483 0 0 1-.483.483"/></svg>������������mkdocs-material-9.6.4/material/templates/.icons/simple/zend.svg�������������������������������������0000664�0000000�0000000�00000000276�14753064456�0024570�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 .467 9.01 20.217h11.53a3.46 3.46 0 0 0 3.46-3.46zM3.459 3.783C1.585 3.783 0 5.153 0 7.1v16.433l15.063-19.75z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zendesk.svg����������������������������������0000664�0000000�0000000�00000000420�14753064456�0025262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.914 2.904V16.29L24 2.905zM0 2.906C0 5.966 2.483 8.45 5.543 8.45s5.542-2.484 5.543-5.544zm11.086 4.807L0 21.096h11.086zm7.37 7.84a5.54 5.54 0 0 0-5.542 5.543H24c0-3.06-2.48-5.543-5.543-5.543z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zenn.svg�������������������������������������0000664�0000000�0000000�00000000557�14753064456�0024604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.264 23.771h4.984a.8.8 0 0 0 .645-.352L19.614.874c.176-.293-.029-.645-.381-.645h-4.72a.63.63 0 0 0-.557.323L.03 23.361c-.088.176.029.41.234.41m17.181-.352 6.479-10.408a.477.477 0 0 0-.41-.733h-4.691a.52.52 0 0 0-.44.235l-6.655 10.643c-.176.264.029.616.352.616h4.779a.65.65 0 0 0 .586-.353"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zenodo.svg�����������������������������������0000664�0000000�0000000�00000005253�14753064456�0025126�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.827 11.163a2.2 2.2 0 0 0-.467-.687 2.15 2.15 0 0 0-1.524-.627 2.1 2.1 0 0 0-1.207.365 2.3 2.3 0 0 0-.495.454c-.06.075-.125.175-.163.236a2.7 2.7 0 0 0-.205.464c.006-.27.046-.672.205-.898V8.522a.43.43 0 0 0-.137-.322.44.44 0 0 0-.317-.132.44.44 0 0 0-.323.132.44.44 0 0 0-.13.322v1.733a2.4 2.4 0 0 0-.592-.299 2.12 2.12 0 0 0-1.5.06 2.16 2.16 0 0 0-1.153 1.147l-.024.06a2.2 2.2 0 0 0-.49-.747 2.15 2.15 0 0 0-1.524-.627 2.1 2.1 0 0 0-.843.167 2.2 2.2 0 0 0-.687.46 2.1 2.1 0 0 0-.465.687l-.023.056-.023-.056a2.155 2.155 0 0 0-1.99-1.314q-.452 0-.842.167a2.2 2.2 0 0 0-.686.46q-.3.293-.467.687l-.02.053-.022-.053a2.2 2.2 0 0 0-.467-.687 2.15 2.15 0 0 0-1.523-.627 2.1 2.1 0 0 0-.842.167 2.2 2.2 0 0 0-.642.418v-.072a.463.463 0 0 0-.462-.463H.534a.463.463 0 0 0 0 .926h2.549L.09 14.85a.46.46 0 0 0-.091.275v.302c0 .256.207.463.463.463h3.45a.46.46 0 0 0 .462-.43 2.17 2.17 0 0 0 1.347.472q.669 0 1.195-.36.425-.287.67-.72v.626q0 .191.13.322a.44.44 0 0 0 .324.132q.179 0 .316-.132a.43.43 0 0 0 .138-.322v-1.62h-.002l.002-.003H7.36a.44.44 0 0 0-.418.287l-.074.152a1.23 1.23 0 0 1-.46.532 1.23 1.23 0 0 1-.687.197q-.252 0-.485-.095a1.2 1.2 0 0 1-.4-.27 1.4 1.4 0 0 1-.27-.4 1.2 1.2 0 0 1-.1-.477v-.406h4.028V12a1.24 1.24 0 0 1 .365-.878 1.24 1.24 0 0 1 .89-.365q.251 0 .484.095.233.097.4.27t.269.4.102.478v3.477q0 .192.13.323a.44.44 0 0 0 .324.132q.179 0 .316-.132a.43.43 0 0 0 .137-.323v-.623a2.14 2.14 0 0 0 1.867 1.078q.442 0 .837-.168.393-.166.693-.46a2.1 2.1 0 0 0 .484-.733l.018.047q.167.392.466.687.3.292.687.46.388.166.843.167a2.15 2.15 0 0 0 1.523-.627q.293-.294.467-.687l.024-.06.024.06q.172.392.466.687a2.14 2.14 0 0 0 1.524.627q.442 0 .837-.168a2.2 2.2 0 0 0 .693-.46A2.12 2.12 0 0 0 24 13.782V12a2.1 2.1 0 0 0-.173-.837M1.16 14.965l2.42-3.259q-.019.144-.02.294v1.78q0 .443.174.838.081.185.19.347zm5.818-2.5h-2.51V12a1.24 1.24 0 0 1 .765-1.147q.228-.096.49-.096.253 0 .484.095.235.097.4.27.167.173.27.4.101.227.1.478zm8.057 1.316a1.25 1.25 0 0 1-1.254 1.243q-.252 0-.485-.096a1.2 1.2 0 0 1-.4-.27 1.4 1.4 0 0 1-.269-.4 1.2 1.2 0 0 1-.1-.477V12a1.24 1.24 0 0 1 1.255-1.243q.25 0 .482.095.235.097.4.27.167.173.27.4.1.228.101.478zm4.028 0q0 .25-.1.478a1.4 1.4 0 0 1-.27.4 1.2 1.2 0 0 1-.4.27 1.3 1.3 0 0 1-.484.094 1.23 1.23 0 0 1-.89-.364 1.24 1.24 0 0 1-.366-.878V12q0-.25.102-.478a1.4 1.4 0 0 1 .27-.4 1.2 1.2 0 0 1 .4-.27 1.3 1.3 0 0 1 .484-.095 1.25 1.25 0 0 1 .89.365 1.25 1.25 0 0 1 .364.878zm4.028 0a1.22 1.22 0 0 1-.364.878q-.175.173-.4.27a1.3 1.3 0 0 1-.49.094 1.3 1.3 0 0 1-.485-.095 1.2 1.2 0 0 1-.4-.27 1.4 1.4 0 0 1-.27-.4 1.2 1.2 0 0 1-.1-.477V12a1.24 1.24 0 0 1 1.255-1.243q.25 0 .483.095.234.097.4.27.167.173.27.4.1.228.1.478v1.78z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zensar.svg�����������������������������������0000664�0000000�0000000�00000003012�14753064456�0025121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.929 13.776c.28.084 1.01.205 1.662.205 1.047 0 1.64-.463 1.64-1.283 0-.683-.464-1.01-1.412-1.29-.73-.213-1.04-.319-1.04-.653 0-.38.334-.562.744-.554.561.008 1.062.425 1.336 1.131h.129v-1.131a8 8 0 0 0-1.412-.167c-1.07 0-1.678.47-1.678 1.23 0 .615.41.979 1.313 1.237.896.258 1.177.364 1.177.744 0 .341-.364.57-.82.57-.721 0-1.275-.54-1.518-1.284h-.121zm-1.911-3.72c-.4 0-.847.207-1.253.651v-.597H8.023v.144c.418 0 .6.213.6.524v3.127H9.78v-2.974c.243-.253.495-.343.66-.343.32 0 .564.205.564.623v2.694h1.166v-2.694c0-.699-.378-1.154-1.152-1.154zm-5.606 1.921v.228c0 .88.402 1.412 1.161 1.412.501 0 .88-.243 1.154-.615l.137.083c-.334.585-.934.896-1.678.896-1.427 0-2.11-.804-2.11-2.027 0-1.199.835-1.935 2.004-1.935 1.177 0 1.807.698 1.807 1.73v.228zm.463-1.768a1 1 0 0 0-.463.107v1.464h1.192v-.767c0-.508-.243-.804-.729-.804m14.5 1.077v2.62H19.13v-.433a1.72 1.72 0 0 1-1.214.508c-.73 0-1.185-.417-1.185-.964s.365-.804.767-.934l1.617-.53v-.57c0-.494-.25-.774-.706-.774-.15 0-.271.018-.387.05v1.08a1.5 1.5 0 0 1-.516.084c-.38 0-.623-.22-.623-.524 0-.561.79-.865 1.754-.865 1.01 0 1.738.342 1.738 1.252m-1.822 2.194a.77.77 0 0 0 .562-.213v-1.51l-1.1.367v.711c0 .425.181.645.538.645M3.681 10.21v-.099H.121v1.48h.13c.106-.645.645-1.328 1.54-1.328v1.746L0 13.807v.098h3.651V12.35h-.129c-.114.653-.698 1.404-1.624 1.404v-1.745l1.783-1.8zM24 10.042v1.1h-.66c-.384 0-.682.058-.866.403v2.36h-1.157v-3.127c0-.311-.182-.524-.6-.524v-.144h1.742v1.146c.37-.83.795-1.214 1.366-1.214z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zerodha.svg����������������������������������0000664�0000000�0000000�00000000366�14753064456�0025264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.378 5.835A27.3 27.3 0 0 1 24 12.169V0H13.666c2.486 1.343 4.763 3.308 6.712 5.835M5.48 1.297c-1.914 0-3.755.409-5.48 1.166V24h22.944C22.766 11.44 15 1.297 5.48 1.297"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zerotier.svg���������������������������������0000664�0000000�0000000�00000001076�14753064456�0025472�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.01 0A4 4 0 0 0 .014 4v16c0 2.209 1.79 4 3.996 4h15.98a4 4 0 0 0 3.996-4V4c0-2.209-1.79-4-3.996-4zm-.672 2.834h17.326a.568.568 0 1 1 0 1.137h-8.129a.6.6 0 0 1 .033.19v1.804A6.06 6.06 0 0 1 18.057 12c0 3.157-2.41 5.75-5.489 6.037v2.56a.568.568 0 1 1-1.136 0v-2.56A6.06 6.06 0 0 1 5.943 12a6.06 6.06 0 0 1 5.489-6.035V4.16q0-.1.033-.19H3.338a.568.568 0 1 1 0-1.136m8.094 4.307A4.89 4.89 0 0 0 7.113 12a4.89 4.89 0 0 0 4.319 4.86zm1.136 0v9.718A4.89 4.89 0 0 0 16.888 12a4.89 4.89 0 0 0-4.32-4.86z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zettlr.svg�����������������������������������0000664�0000000�0000000�00000001511�14753064456�0025145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.46.188C.335.57.023 2.534.022 4.295L.02 17.325c0 1.545-.224 3.96.723 5.28 1.201 1.673 3.567 1.355 5.365 1.351l8.31.03c1.61-.003 5.626.104 7.2-.23 2.115-.448 2.326-2.31 2.328-4.082l.01-13.634c.001-1.532.311-3.425-.68-4.71C22.021-.296 19.557.025 17.744.026L13.24.043c-1.614 0-9.195-.14-10.782.145m14.249 3.665c0 .528.185 1.466-.037 1.947-.11.239-.49.384-.703.518a16 16 0 0 0-1.418 1.044c-1.477 1.185-3.034 2.818-3.428 4.74-.182.895-.164 1.988.59 2.626 1.21 1.023 3.035-.024 4.317.987 1.337 1.053 1.14 3.071.37 4.39-.184.316-.417.797-.75.982-.23.13-.598.064-.853.064h-1.85c.057-.37.35-.58.575-.862.374-.47.673-.984.668-1.6-.01-1.157-1.127-1.17-1.983-1.17-1.518 0-3.296-.216-4.073-1.724-1.337-2.595.33-5.731 2.105-7.633.695-.746 1.684-1.333 2.276-2.154h-4.07V3.853z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zhihu.svg������������������������������������0000664�0000000�0000000�00000001546�14753064456�0024760�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.721 0C2.251 0 0 2.25 0 5.719V18.28C0 21.751 2.252 24 5.721 24h12.56C21.751 24 24 21.75 24 18.281V5.72C24 2.249 21.75 0 18.281 0zm1.964 4.078q-.408 1.096-.68 2.11h4.587c.545-.006.445 1.168.445 1.171H9.384a58 58 0 0 1-.112 3.797h2.712c.388.023.393 1.251.393 1.266H9.183a9.2 9.2 0 0 1-.408 2.102l.757-.604c.452.456 1.512 1.712 1.906 2.177.473.681.063 2.081.063 2.081l-2.794-3.382c-.653 2.518-1.845 3.607-1.845 3.607-.523.468-1.58.82-2.64.516 2.218-1.73 3.44-3.917 3.667-6.497H4.491c0-.015.197-1.243.806-1.266h2.71c.024-.32.086-3.254.086-3.797H6.598c-.136.406-.158.447-.268.753-.594 1.095-1.603 1.122-1.907 1.155.906-1.821 1.416-3.6 1.591-4.064.425-1.124 1.671-1.125 1.671-1.125M13.078 6h6.377v11.33h-2.573l-2.184 1.373-.401-1.373h-1.219zm1.313 1.219v8.86h.623l.263.937 1.455-.938h1.456v-8.86z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zig.svg��������������������������������������0000664�0000000�0000000�00000000463�14753064456�0024417�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.53 1.02-7.686 3.45h-7.06l-2.98 3.452h7.173L.47 22.98l7.681-3.607h7.065v-.002l2.978-3.45-7.148-.001 12.482-14.9zM0 4.47v14.901h1.883l2.98-3.45H3.451v-8h.942l2.824-3.45zm22.117 0-2.98 3.608h1.412v7.844h-.942l-2.98 3.45H24V4.47z"/></svg>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zigbee.svg�����������������������������������0000664�0000000�0000000�00000001012�14753064456�0025062�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.988 0a11.85 11.85 0 0 0-8.617 3.696c7.02-.875 11.401-.583 13.289-.34 3.752.583 3.558 3.404 3.558 3.404L8.237 19.112c2.299.22 6.897.366 13.796-.631a11.86 11.86 0 0 0 1.912-6.469C23.945 5.374 18.595 0 11.988 0m.232 4.31c-2.451-.014-5.772.146-9.963.723C.854 7.003.055 9.41.055 12.012.055 18.626 5.38 24 11.988 24c3.63 0 6.85-1.63 9.053-4.182-7.286.948-11.813.631-13.75.388-3.775-.56-3.557-3.404-3.557-3.404L15.691 4.474a39 39 0 0 0-3.471-.163Z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zigbee2mqtt.svg������������������������������0000664�0000000�0000000�00000005407�14753064456�0026066�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.044 0 .038 7.03v9.94L7.044 24h9.91l7.008-7.03V7.03L16.954 0Zm4.525 1.904c.02.001.04.011.047.03l.467.96a.8.8 0 0 1 .242 0l.467-.958a.05.05 0 0 1 .047-.032l.838-.031c.028 0 .053.02.054.049a.05.05 0 0 1-.05.053l-.805.03-.28.968c.356.164.604.543.604.986 0 .155-.03.304-.086.437q.03.022.053.045s.098.144.184.338c1.641.462 5.698 1.05 5.238 2.32-.517 1.428-3.34.991-3.813.604-.64-.525-1.184-1.019-1.529-1.414a3 3 0 0 1-.064.148 5.3 5.3 0 0 1-1.97.034 2 2 0 0 1-.089-.184c-.343.4-.898.905-1.555 1.443-.472.387-3.295.824-3.812-.603-.467-1.288 3.709-1.873 5.305-2.338.084-.204.181-.35.181-.35a.3.3 0 0 1 .05-.044 1.1 1.1 0 0 1-.085-.436c0-.443.249-.822.604-.986l-.278-.967-.806-.031a.05.05 0 0 1-.051-.053.05.05 0 0 1 .054-.049zm1.63 4.92c.082.173.168.385.243.623-.743.207-1.766.164-2.472-.037.068-.21.144-.398.218-.556a5.7 5.7 0 0 0 2.01-.03zm-2.321.908c.768.219 1.84.265 2.668.038.047.203.082.418.098.636-.82.3-2.113.237-2.872-.04.018-.218.057-.432.106-.634m-.106 1.057c.812.26 2.023.314 2.887.043a2.5 2.5 0 0 1-.12.686c-.676.236-1.88.218-2.66-.053q-.098-.332-.107-.676m.264 1.139c.727.182 1.613.193 2.266.05a2.1 2.1 0 0 1-.676.67.75.75 0 0 1-.887 0c-.549-.347-.703-.751-.703-.72m2.858 2.136c.14-.002.162.077.164.16l.064 3.712c.002.089-.024.161-.158.164l-.65.011c-.121.002-.163-.058-.165-.158l-.064-3.713c-.002-.12.059-.162.158-.164zm-2.565.045c.14-.002.163.077.164.16l.067 3.711c.002.115-.052.163-.16.165l-.649.011c-.128.002-.164-.064-.166-.158l-.064-3.713c-.002-.114.05-.162.16-.164zm.633 6.057c.133.033.471.124.582.432a1 1 0 0 1 .055.34v1.35q0 .153-.037.284c-.095.342-.425.47-.768.516v.223c0 .1-.045.146-.147.146h-.625c-.126 0-.146-.068-.146-.146v-.223q-.471-.07-.637-.283a.82.82 0 0 1-.164-.518v-1.35a1 1 0 0 1 .055-.34c.11-.307.45-.398.584-.431q.247-.061.625-.062c.378-.001.459.021.623.062m-4.492 0c.068 0 .129.017.187.121l.365.662c.036.063.053.07.075.07h.035c.022 0 .039-.006.074-.07l.361-.662c.05-.089.098-.121.188-.121h.658c.078 0 .147.02.147.146v2.633c0 .101-.046.147-.147.147h-.627c-.101 0-.146-.046-.146-.147v-1.431l-.239.443a.22.22 0 0 1-.216.13h-.163a.22.22 0 0 1-.214-.13l-.24-.443v1.431c0 .101-.046.147-.147.147h-.606c-.1 0-.146-.046-.146-.147v-2.633c0-.126.068-.146.146-.146zm7.75 0c.078 0 .146.02.146.146v.49c0 .127-.068.147-.146.147h-.598v1.996c0 .078-.02.147-.146.147h-.659c-.1 0-.146-.046-.146-.147V18.95h-.598c-.102 0-.144-.038-.144-.146v-.49c0-.109.043-.147.144-.147h2.147zm2.666 0c.078 0 .146.02.146.146v.49c0 .127-.068.147-.146.147h-.598v1.996c0 .078-.02.147-.146.147h-.659c-.1 0-.146-.046-.146-.147V18.95h-.598c-.102 0-.144-.038-.144-.146v-.49c0-.109.043-.147.144-.147h2.147zm-6.828.79a.17.17 0 0 0-.06.132v1.11q0 .08.06.136c.083.075.479.075.562 0a.18.18 0 0 0 .06-.137v-1.11a.17.17 0 0 0-.06-.132c-.083-.075-.48-.075-.562 0z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/ziggo.svg������������������������������������0000664�0000000�0000000�00000001242�14753064456�0024741�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.555 18.69a3 3 0 0 0-2.52-2.865h-6.3l7.26-6.945a2.145 2.145 0 0 0 .495-2.34 2.1 2.1 0 0 0-2.205-1.23h-9a2.79 2.79 0 0 0 2.19 2.895h5.175L6 15.375a2.01 2.01 0 0 0-.42 2.13 1.965 1.965 0 0 0 2.115 1.185zM2.85 18.6a2.535 2.535 0 0 0 2.55 2.535h13.2a2.536 2.536 0 0 0 2.55-2.535V7.92A2.865 2.865 0 0 1 24 5.31V18.6a5.385 5.385 0 0 1-5.4 5.4H5.4A5.385 5.385 0 0 1 0 18.6V5.4A5.385 5.385 0 0 1 5.4 0h13.2a5.6 5.6 0 0 1 2.07.405A5.2 5.2 0 0 1 22.635 1.8a1.5 1.5 0 0 1 .42 1.005 1.4 1.4 0 0 1-.42 1.02 1.5 1.5 0 0 1-2.025 0A2.7 2.7 0 0 0 19.59 3a2.4 2.4 0 0 0-.99-.195H5.4A2.505 2.505 0 0 0 2.865 5.4z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zilch.svg������������������������������������0000664�0000000�0000000�00000001004�14753064456�0024727�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.421 6.149c3.292-2.011 6.584-4.036 9.862-6.046a.7.7 0 0 1 .83.073c1.312 1.18 2.637 2.36 3.948 3.54a.694.694 0 0 1 .175.815 1737 1737 0 0 1-4.341 9.338.61.61 0 0 0 .408.845c1.427.335 2.855.656 4.283.991a.546.546 0 0 1 .204.976c-3.234 2.375-6.483 4.749-9.717 7.124a.99.99 0 0 1-1.136.029l-4.633-3.016a.69.69 0 0 1-.248-.888c1.326-2.812 2.666-5.623 3.992-8.421a.78.78 0 0 0-.146-.859 802 802 0 0 0-3.583-3.569c-.277-.262-.219-.729.102-.932"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zillow.svg�����������������������������������0000664�0000000�0000000�00000001035�14753064456�0025142�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.006 0 1.086 8.627v3.868c3.386-2.013 11.219-5.13 14.763-6.015.11-.024.16.005.227.078.372.427 1.586 1.899 1.916 2.301a.128.128 0 0 1-.03.195 43.6 43.6 0 0 0-6.67 6.527c-.03.037-.006.043.012.03 2.642-1.134 8.828-2.94 11.622-3.452V8.627zm-.48 11.177c-2.136.708-8.195 3.307-10.452 4.576V24h21.852v-7.936c-2.99.506-11.902 3.16-15.959 5.246a.18.18 0 0 1-.23-.036l-2.044-2.429c-.055-.061-.062-.098.011-.208 1.574-2.3 4.789-5.899 6.833-7.418.042-.03.031-.06-.012-.042Z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zincsearch.svg�������������������������������0000664�0000000�0000000�00000000413�14753064456�0025752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.723 19.748-1.73 1.493H.678L0 18.77l10.63-9.343.542 6.635h8.701a3.65 3.65 0 0 1-1.15 3.686M5.277 4.252l1.73-1.493h16.316L24 5.23l-10.63 9.343-.542-6.635H4.129a3.65 3.65 0 0 1 1.148-3.686"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zingat.svg�����������������������������������0000664�0000000�0000000�00000003542�14753064456�0025123�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.995 24q-.347-.429-.687-.856a83 83 0 0 1-4.373-6.027 39 39 0 0 1-2.498-4.335c-.44-.88-.792-1.801-1.052-2.749a6.2 6.2 0 0 1-.159-2.168 8.4 8.4 0 0 1 1.85-4.557A8.7 8.7 0 0 1 9.906.249a8.6 8.6 0 0 1 2.365-.243c1.955.07 3.715.693 5.251 1.909a8.5 8.5 0 0 1 2.944 4.336c.25.831.364 1.696.337 2.562a6.7 6.7 0 0 1-.376 1.856c-.385 1.179-.919 2.29-1.517 3.374-.302.551-.624 1.088-.938 1.628l-.035.056a.99.99 0 0 1-.904.604.985.985 0 0 1-.97-.83 1.3 1.3 0 0 1-.016-.202v-4.832a.3.3 0 0 0-.135-.275c-.526-.39-1.044-.792-1.564-1.189l-2.269-1.734a.103.103 0 0 0-.143-.006l-.006.006-3.825 2.92a.981.981 0 0 1-1.23-1.53l.025-.018c.184-.144.368-.288.562-.428a.17.17 0 0 0 .076-.152V5.737a.986.986 0 0 1 .95-1.23c.534 0 .976.437.981.971q.033.13.035.263l-.001.915 1.274-.972q.316-.244.633-.486a.966.966 0 0 1 1.168-.007q2.429 1.841 4.858 3.688.215.156.394.352a.84.84 0 0 1 .184.561v1.647q.236-.524.437-1.065.186-.464.304-.95c.11-.486.093-.983.048-1.477a5 5 0 0 0-.086-.678 7 7 0 0 0-.276-.884 6.8 6.8 0 0 0-.926-1.71c-.954-1.237-2.208-2.045-3.694-2.494a4.4 4.4 0 0 0-.944-.164q-.675-.042-1.35-.031c-.873 0-1.681.259-2.469.62a6.95 6.95 0 0 0-2.649 2.166c-.393.517-.656 1.108-.901 1.713a5.2 5.2 0 0 0-.329 1.642c-.028.452-.037.904.069 1.344q.134.514.334 1.005c.538 1.392 1.244 2.701 2.008 3.98a64 64 0 0 0 4.378 6.355c.187-.159.342-.352.488-.552q.828-1.126 1.648-2.256c.174-.241.368-.449.675-.527a.976.976 0 0 1 1.196.804 1 1 0 0 1-.211.754c-.778 1.058-1.55 2.12-2.339 3.168-.441.586-.908 1.152-1.364 1.725zm.027-13.788h.81a1.03 1.03 0 0 1 1.018 1.022v1.621c0 .56-.461 1.021-1.021 1.021h-1.607a1.03 1.03 0 0 1-1.041-1.004v-1.614a1.027 1.027 0 0 1 .997-1.046zm.869 1.837v-.778c0-.074-.026-.104-.101-.104h-1.54c-.082 0-.105.032-.105.11v1.525c0 .08.027.109.107.109h1.528c.086 0 .113-.033.112-.117-.009-.242 0-.492 0-.74l-.002-.005z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zod.svg��������������������������������������0000664�0000000�0000000�00000000542�14753064456�0024420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.088 2.477 24 7.606 12.521 20.485l-.925 1.038L0 7.559l5.108-5.082zm-17.434 5.2 6.934-4.003H5.601L1.619 7.636zm12.117-4.003L3.333 9.7l2.149 2.588 10.809-6.241-.2-.346 2.851-1.646-.365-.381zm7.52 2.834L8.257 14.034h5.101v-.4h3.667l5.346-5.998zm-7.129 10.338H9.268l2.36 2.843z"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zoho.svg�������������������������������������0000664�0000000�0000000�00000004724�14753064456�0024611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.66 6.897a1.3 1.3 0 0 0-1.205.765l-.642 1.44-.062-.385A1.29 1.29 0 0 0 5.27 7.648l-4.185.678A1.29 1.29 0 0 0 .016 9.807l.678 4.18a1.29 1.29 0 0 0 1.27 1.087c.074 0 .143-.01.216-.017l4.18-.678c.436-.07.784-.351.96-.723l2.933 1.307a1.3 1.3 0 0 0 .988.026c.321-.12.575-.365.716-.678l.28-.629.038.276a1.297 1.297 0 0 0 1.455 1.103l3.712-.501a1.29 1.29 0 0 0 1.03.514h4.236c.713 0 1.29-.58 1.291-1.291V9.545c0-.712-.58-1.291-1.291-1.291h-4.236q-.118 0-.23.022a1.3 1.3 0 0 0-.275-.288 1.28 1.28 0 0 0-.958-.253l-4.197.571q-.233.033-.432.14L9.159 7.01a1.3 1.3 0 0 0-.499-.113m-.025.705c.077 0 .159.013.24.052l2.971 1.324c-.128.238-.18.508-.142.782l.357 2.596h.002l-.745 1.672a.59.59 0 0 1-.777.296l-3.107-1.385-.004-.041-.41-2.526L8.1 7.95a.59.59 0 0 1 .536-.348zm-3.159.733c.125 0 .245.039.343.112.13.09.21.227.237.382l.234 1.446-.56 1.259a1.27 1.27 0 0 0-.026.987c.12.322.364.575.678.717l.295.131a.59.59 0 0 1-.428.314l-4.185.678a.59.59 0 0 1-.674-.485l-.678-4.18a.59.59 0 0 1 .485-.674l4.185-.678c.03-.004.064-.01.094-.01zm11.705.09a.6.6 0 0 1 .415.173 1.29 1.29 0 0 0-.416.947v4.237q.001.05.005.097l-3.55.482a.586.586 0 0 1-.66-.502l-.191-1.403.899-2.017a1.29 1.29 0 0 0-.333-1.5l3.754-.51q.038-.005.077-.004m1.3.532h4.227c.326 0 .588.266.588.588v4.237a.59.59 0 0 1-.588.588h-4.237a.6.6 0 0 1-.12-.013c.47-.246.758-.765.684-1.318zm-5.988.309.254.113c.296.133.43.48.296.777l-.432.97-.207-1.465a.58.58 0 0 1 .09-.395zm5.39.538.453 3.325a.583.583 0 0 1-.453.65zM6.496 11.545l.17 1.052a.59.59 0 0 1-.293-.776zm3.985 4.344a.59.59 0 0 0-.612.603c0 .358.244.61.601.61a.58.58 0 0 0 .607-.608c0-.35-.242-.605-.596-.605m5.545 0a.59.59 0 0 0-.612.603c0 .358.245.61.602.61a.58.58 0 0 0 .606-.608c0-.35-.24-.605-.596-.605m-8.537.018a.047.047 0 0 0-.048.047v.085c0 .026.021.047.048.047h.52l-.623.9a.1.1 0 0 0-.009.027v.027c0 .026.021.047.048.047h.815a.047.047 0 0 0 .047-.047v-.085a.047.047 0 0 0-.047-.047h-.55l.606-.9a.1.1 0 0 0 .008-.026v-.028a.047.047 0 0 0-.047-.047zm5.303 0a.047.047 0 0 0-.047.047v1.086c0 .026.02.047.047.047h.135a.047.047 0 0 0 .047-.047v-.454h.545v.454c0 .026.02.047.047.047h.134a.047.047 0 0 0 .047-.047v-1.086a.047.047 0 0 0-.047-.047h-.134a.047.047 0 0 0-.047.047v.453h-.545v-.453a.047.047 0 0 0-.047-.047zm-2.324.164c.25 0 .372.194.372.425 0 .219-.109.425-.358.426-.242 0-.375-.197-.375-.419 0-.235.108-.432.36-.432zm5.545 0c.25 0 .372.194.372.425 0 .219-.108.425-.358.426-.242 0-.374-.197-.374-.419 0-.235.108-.432.36-.432"/></svg>��������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zoiper.svg�����������������������������������0000664�0000000�0000000�00000002415�14753064456�0025135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.375 13.079c-.862-.863-.862-2.926-.075-3.714s3.263-3.224 5.062-5.024 3.376-2.063 3.863-2.063H15.9c.222 0 .553.033.924.089l-1.087 2.166c-.874-.063-1.682-.042-2.274-.042-2.438 0-2.626.562-3.038.975-.413.412-5.062 4.837-5.4 5.175-1.05 1.05.562 1.538 2.325 1.538.788 0 .9.825.712 1.575-.102.408-.368 1.43-.592 2.528H5.331c.084-.424.165-.771.219-.954.188-.637.225-1.2-.15-1.2s-1.163-.187-2.025-1.05m18.043-9.92c-.197-.196-2.184-1.35-2.773-1.62a1 1 0 0 0-.417-.105c-.313 0-.486.217-.587.42l-3.118 6.213a3.742 3.742 0 0 0-.715 6.904c-.457.544-1.133 1.1-1.292 1.285-.225.263-.787.526-1.763.526H4.367a2.184 2.184 0 1 0-.156.87h7.04c.974 0 1.537-.261 1.761-.524.214-.249 1.366-1.173 1.659-1.831q.424.105.883.106a3.74 3.74 0 0 0 3.74-3.74 3.73 3.73 0 0 0-.532-1.923l2.753-5.55c.27-.54.1-.834-.097-1.03m.286 1.774-.993 2.002c.697 1.006 1.152 2.412 1.152 4.419 0 5.099-2.7 5.662-3.263 5.662h-2.138c-.45 0-.787.075-1.612.9s-1.988 1.837-2.325 2.174c-.337.338-.825.563-1.688.563H8.175c-.375 0-1.05-.188-1.05-1.763 0-.22.021-.475.049-.737H5.059c-.058.64-.075 1.277.003 1.787.226 1.463 1.426 2.625 2.438 2.625h3.975c1.838 0 5.213-3.412 5.213-3.412s1.107.068 1.763.05C20.488 19.149 24 17.467 24 11.842c0-3.314-.995-5.477-2.296-6.908"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zomato.svg�����������������������������������0000664�0000000�0000000�00000004132�14753064456�0025134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.615 9.45-1.258.473-.167.71-.446.021-.115.978h.408l-.211 1.51c-.131.939.036 1.381.865 1.381.488 0 .91-.175 1.135-.297l.145-.9c-.167.083-.436.19-.618.19-.247 0-.276-.13-.225-.488l.189-1.396h.843c.03-.206.131-.877.16-1h-.865zm-3.779 1.002q-.173.003-.361.026a3.6 3.6 0 0 0-1.347.432l.26.789c.269-.15.615-.28.978-.326.538-.066.757.1.79.375.014.109.004.199-.005.289l-.014.056a3.5 3.5 0 0 0-1.097-.036c-.518.063-.943.273-1.204.6a1.32 1.32 0 0 0-.225 1.034c.127.583.553.84 1.199.76.45-.055.812-.27 1.076-.63a3 3 0 0 1-.03.304 2 2 0 0 1-.072.29l1.244.001a4 4 0 0 1-.001-.365q.054-.689.247-2.051a2.4 2.4 0 0 0-.002-.59c-.08-.644-.628-.969-1.436-.958m6.536.063c-1.194 0-2.107 1.067-2.107 2.342 0 .959.552 1.693 1.628 1.693 1.2 0 2.107-1.067 2.107-2.35 0-.95-.538-1.685-1.628-1.685m-11.777.041c-.538 0-1.12.465-1.52 1.236.102-.504.08-1.076.051-1.198a9 9 0 0 1-1.287.122 7 7 0 0 1-.073 1.243l-.167 1.145c-.066.45-.138.969-.211 1.297h1.353c.007-.199.058-.511.094-.786l.116-.786c.095-.511.502-1.114.815-1.114.182 0 .175.176.124.504l-.131.885c-.066.45-.138.969-.211 1.297h1.367c.008-.199.051-.512.088-.786l.116-.786c.094-.512.502-1.114.814-1.114.182 0 .175.168.146.396l-.327 2.29H13l.438-2.609c.095-.649.044-1.236-.676-1.236-.523 0-1.09.443-1.49 1.182.087-.61.036-1.182-.677-1.182m-4.88.008c-1.177 0-2.08 1.053-2.08 2.312 0 .946.546 1.67 1.608 1.67 1.185 0 2.08-1.052 2.08-2.319 0-.938-.531-1.663-1.607-1.663zm-5.126.091c-.05.39-.102.778-.175 1.13.328-.008.619-.016 1.411-.016l-1.81 1.96-.015.703c.444-.03.997-.039 1.63-.039.566 0 1.134.008 1.497.039.065-.458.13-.763.21-1.137-.275.015-.755.023-1.512.023l1.81-1.969.023-.694c-.437.023-.83.03-1.52.03-.749 0-.975-.007-1.549-.03m4.988.927c.255 0 .408.228.408.701 0 .687-.276 1.251-.626 1.251-.261 0-.414-.236-.414-.702 0-.694.283-1.25.632-1.25m16.629 0c.254 0 .407.228.407.701 0 .687-.276 1.251-.625 1.251-.262 0-.415-.236-.415-.702 0-.694.284-1.25.633-1.25M15.51 12.64c.206-.003.403.024.55.058l-.013.118c-.075.44-.39.881-.848.938-.31.037-.578-.148-.608-.39a.54.54 0 0 1 .114-.41c.117-.159.336-.268.599-.3q.104-.013.206-.014"/></svg>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zoom.svg�������������������������������������0000664�0000000�0000000�00000001407�14753064456�0024611�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.033 14.649H.743a.74.74 0 0 1-.686-.458.74.74 0 0 1 .16-.808L3.19 10.41H1.06A1.06 1.06 0 0 1 0 9.35h3.957c.301 0 .57.18.686.458a.74.74 0 0 1-.161.808L1.51 13.59h2.464c.585 0 1.06.475 1.06 1.06zM24 11.338a2.068 2.068 0 0 0-3.603-1.38 2.06 2.06 0 0 0-1.536-.686c-1.14 0-2.066.926-2.066 2.066v3.311a1.06 1.06 0 0 0 1.06-1.06v-2.251a1.004 1.004 0 0 1 2.013 0v2.251c0 .586.474 1.06 1.06 1.06v-3.311a1.004 1.004 0 0 1 2.012 0v2.251c0 .586.475 1.06 1.06 1.06zM16.265 12a2.728 2.728 0 1 1-5.457 0 2.728 2.728 0 0 1 5.457 0m-1.06 0a1.669 1.669 0 1 0-3.338 0 1.669 1.669 0 0 0 3.338 0m-4.82 0a2.728 2.728 0 1 1-5.458 0 2.728 2.728 0 0 1 5.457 0zm-1.06 0a1.669 1.669 0 1 0-3.338 0 1.669 1.669 0 0 0 3.338 0"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zorin.svg������������������������������������0000664�0000000�0000000�00000000342�14753064456�0024763�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 18.944 5.995 22.4h12.01L20 18.944zM24 12l-2.013 3.488H9.216l12.771-6.976zM0 12l2.013-3.488h12.771L2.013 15.488zm4-6.944L5.995 1.6h12.01L20 5.056z"/></svg>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zotero.svg�����������������������������������0000664�0000000�0000000�00000000233�14753064456�0025143�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.231 2.462 7.18 20.923h14.564V24H2.256v-2.462L16.308 3.076H2.975V0h18.256z"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zsh.svg��������������������������������������0000664�0000000�0000000�00000006134�14753064456�0024433�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.612.719A3.62 3.62 0 0 0 0 4.331v15.328a3.627 3.627 0 0 0 3.616 3.612h8.242a.5.5 0 0 0 .228-.042.607.607 0 0 0-.232-1.169H3.612a2.393 2.393 0 0 1-2.393-2.4V6.113h21.566v12.839a.13.13 0 0 1-.12.074h-.743a.16.16 0 0 1-.09-.043.13.13 0 0 1-.04-.095v-2.23q-.005-.002-.004-.006v-.007a.602.602 0 1 0-1.202 0v6.032l.004.001v.002a.6.6 0 0 0 1.202 0v.002-2.385a.12.12 0 0 1 .036-.095.13.13 0 0 1 .094-.04h.744a.12.12 0 0 1 .099.036q.015.015.024.035v2.434a.04.04 0 0 0 .002.023.6.6 0 0 0 .14.38.6.6 0 0 0 .46.213h.01a.59.59 0 0 0 .547-.368l.004-.011a1 1 0 0 0 .023-.074.6.6 0 0 0 .025-.162V4.326A3.615 3.615 0 0 0 20.392.715H3.616Zm0 1.215h16.776a2.383 2.383 0 0 1 2.401 2.393V4.9H1.215v-.57a2.39 2.39 0 0 1 2.397-2.396M6.36 7.28a.21.21 0 0 0-.145.076l-3.964 4.72a.213.213 0 1 0 .327.275l3.964-4.72a.213.213 0 0 0-.182-.35Zm-2.94.12c-.632 0-1.151.52-1.151 1.151 0 .632.52 1.152 1.151 1.152.632 0 1.152-.52 1.152-1.152S4.052 7.4 3.42 7.4m0 .667a.48.48 0 0 1 .485.484.48.48 0 0 1-.485.485.48.48 0 0 1-.484-.485.48.48 0 0 1 .484-.484m1.94 1.939c-.632 0-1.152.52-1.152 1.152s.52 1.15 1.152 1.15 1.151-.518 1.151-1.15c0-.633-.52-1.152-1.151-1.152m0 .667a.48.48 0 0 1 .485.485.48.48 0 0 1-.485.484.48.48 0 0 1-.485-.484.48.48 0 0 1 .485-.485m2.658 1.21a.214.214 0 0 0-.081.41q.039.016.081.016h2.831a.3.3 0 0 0 .086-.02.22.22 0 0 0 .131-.198.213.213 0 0 0-.213-.213h-2.83Zm5.77 4.159a.61.61 0 0 0-.61.61v-.004.004a.61.61 0 0 0 .61.61l.028-.002h1.123a.05.05 0 0 1 .04.005.08.08 0 0 1 .04.058.1.1 0 0 1-.006.037l-1.783 4.453a.7.7 0 0 0-.048.249v.55a.65.65 0 0 0 .192.474.67.67 0 0 0 .474.196h2.09a.7.7 0 0 0 .243-.051.62.62 0 0 0 .386-.578v.004-.004a.626.626 0 0 0-.625-.626l-.014.001h-1.406a.05.05 0 0 1-.038-.005.07.07 0 0 1-.038-.056.1.1 0 0 1 .005-.034l2.056-5.127a.555.555 0 0 0-.516-.762h-2.167a.1.1 0 0 0-.033-.006Zm4.915.03c-.286 0-.613.027-.81.082a.95.95 0 0 0-.466.267 1.2 1.2 0 0 0-.247.525q-.075.322-.076.82 0 .477.01.772.011.24.056.479a1 1 0 0 0 .124.294 1.2 1.2 0 0 0 .19.212q.15.131.324.23.19.11.39.212t.38.211q.172.097.315.23.056.061.104.13a.3.3 0 0 1 .053.091.7.7 0 0 1 .042.24q.01.11.01.303a4 4 0 0 1-.029.525.75.75 0 0 1-.076.285.26.26 0 0 1-.152.12 2.3 2.3 0 0 1-.378.028.8.8 0 0 1-.228-.028.3.3 0 0 1-.143-.129 1 1 0 0 1-.076-.276 5 5 0 0 1-.02-.46q0-.025-.002-.05h-.004a.54.54 0 0 0-.176-.311.517.517 0 0 0-.847.315h-.003q.003.022.002.052v.023l.003.284q0 .543.076.883.085.331.267.525a.9.9 0 0 0 .457.248c.22.054.448.078.675.074.305 0 .698-.027.901-.083a.9.9 0 0 0 .486-.313q.19-.23.266-.635.086-.413.086-1.058 0-.47-.029-.755a1.7 1.7 0 0 0-.085-.47.8.8 0 0 0-.181-.294 1.5 1.5 0 0 0-.276-.22 3 3 0 0 0-.286-.157 4 4 0 0 0-.342-.175 8 8 0 0 1-.343-.184 3 3 0 0 1-.276-.193 1 1 0 0 1-.114-.11.4.4 0 0 1-.057-.139 1.5 1.5 0 0 1-.029-.211v-.346a2.6 2.6 0 0 1 .015-.396.6.6 0 0 1 .067-.23.23.23 0 0 1 .143-.101c.057-.019.216-.028.305-.028q.305 0 .38.175.06.112.066.24c.003.066.004.153.004.245h.003q.005-.004.004 0a.51.51 0 0 0 .516.512.516.516 0 0 0 .515-.512v-.004c-.004-.099-.004-.19-.004-.242a3.2 3.2 0 0 0-.067-.709.9.9 0 0 0-.228-.469.87.87 0 0 0-.457-.258 2.7 2.7 0 0 0-.733-.082Z"/></svg>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zulip.svg������������������������������������0000664�0000000�0000000�00000001013�14753064456�0024761�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.767 3.589c0 1.209-.543 2.283-1.37 2.934l-8.034 7.174c-.149.128-.343-.078-.235-.25l2.946-5.9c.083-.165-.024-.368-.194-.368H4.452c-1.77 0-3.219-1.615-3.219-3.59C1.233 1.616 2.682 0 4.452 0h15.096c1.77-.001 3.219 1.614 3.219 3.589M4.452 24h15.096c1.77 0 3.219-1.616 3.219-3.59s-1.449-3.59-3.219-3.59H8.12c-.17 0-.277-.202-.194-.367l2.946-5.9c.108-.172-.086-.378-.235-.25l-8.033 7.173c-.828.65-1.37 1.725-1.37 2.934 0 1.974 1.448 3.59 3.218 3.59"/></svg>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/.icons/simple/zyte.svg�������������������������������������0000664�0000000�0000000�00000001317�14753064456�0024620�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.135 6.818v1.715h-1.217V9.92h1.217v2.601c0 1.624.943 2.487 2.355 2.487.236 0 .562-.025.785-.076v-1.348c-.146.039-.312.05-.47.05-.708 0-1.205-.328-1.205-1.138V9.92h1.675V8.533h-1.671V6.818ZM20.873 8.4a3.26 3.26 0 0 0-3.299 3.3c0 1.909 1.454 3.36 3.324 3.36 1.572 0 2.788-.89 3.024-2.238h-1.467c-.132.553-.746.918-1.531.918-1.034 0-1.688-.589-1.871-1.531h4.908c.026-.12.039-.445.039-.617 0-1.87-1.399-3.192-3.127-3.192M0 8.533v1.399h3.928L0 13.532v1.4h5.719v-1.4h-3.94l3.94-3.6V8.533Zm6.037 0 2.54 6.059-1.151 2.59h1.57l3.611-8.649h-1.57l-1.715 4.358-1.717-4.358Zm14.758 1.19c.875 0 1.49.511 1.623 1.244h-3.324c.21-.786.838-1.244 1.7-1.244z"/></svg>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/404.html���������������������������������������������������0000664�0000000�0000000�00000000226�14753064456�0021615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{#- This file was automatically generated - do not edit -#} {% extends "main.html" %} {% block content %} <h1>404 - Not found</h1> {% endblock %} ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/__init__.py������������������������������������������������0000664�0000000�0000000�00000002145�14753064456�0022533�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/����������������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0021722�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/images/���������������������������������������������0000775�0000000�0000000�00000000000�14753064456�0023167�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/images/favicon.png����������������������������������0000664�0000000�0000000�00000003516�14753064456�0025327�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���0���0���W��IDATxŗOTW/7^T@~**?EDEda,RMl66VkeM'HhccUAe}^,Ya=ܽ*|33]|X… HY �A_EzHm8%%CJ[IKI!(ieguc$`:=54X}Iy HR񲌴5f,^L f-|S)0|ZVzzNPL4k{]^ u~dgd#3SA@s9#<S,'+˟!:&rXub1~1&&?' ws߉ȹKz0tJKlbsL̹奁<b2^sj|`j>q<C Sй?˖,I�\H{<4УG,gΐgZ3op[+`ٲKi`Q-_^$| r?Tݭي˓@;pD mΝ#7;s4=Y+>#}vՉOȥ˞怲[qaa2.FreQ 2V;11~Xε!UEEV5c|Fם?,08뢝erF+mWh>/_/^Puea>EVzuUf``̺R9kkkjWɓ'蹳gbvo)H3 Q] n( ѓǏ7藓'%׳Z[Sϛ7NOOӃDU%%'�ῄV+kp?9Au2q)- XMsSݷϱirr Y=6W)[G˘pbcxNEY*@\c 1@Lrdl߻Gܿnнee:sUEy9ARk-}(ox.A /K]eS[9)~*F*\:ƪPUEF%y3 #ٰF ͰXS�lkN!Lv6!/{cW3v\mT _Åx_@+^.�rcڏ˭_bCѥ[k+[w'V=c444DW^ޥׯ_Z8;wXgY=8g1 ܰm[5㎵:D׮]7o/|:=44Ș$ݶ744n.BYý}q˗iΝr9J1 L4 uNKϞ=#mfy#zHRѬhnj3GF֦_Nn?K{AD͙fnf 675|ZYzy}3g[<Z|Ԗ kQc`fs xcOL)b;vx@ kg//ψ^ϳV[[i߇v[.ʾ{>p>.tYyu?gONOgGGj 37:&1gHdkj>+6 ;ݬYL-8 `ڷ!bsS/I /@\7kE3<X3;}&/i}}}^q `acxA|7۝~����IENDB`����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/����������������������������������������0000775�0000000�0000000�00000000000�14753064456�0024253�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/bundle.f1b6f286.min.js������������������0000664�0000000�0000000�00000324007�14753064456�0030015�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������"use strict";(()=>{var Wi=Object.create;var gr=Object.defineProperty;var Vi=Object.getOwnPropertyDescriptor;var Di=Object.getOwnPropertyNames,Dt=Object.getOwnPropertySymbols,Ni=Object.getPrototypeOf,yr=Object.prototype.hasOwnProperty,ao=Object.prototype.propertyIsEnumerable;var io=(e,t,r)=>t in e?gr(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,$=(e,t)=>{for(var r in t||(t={}))yr.call(t,r)&&io(e,r,t[r]);if(Dt)for(var r of Dt(t))ao.call(t,r)&&io(e,r,t[r]);return e};var so=(e,t)=>{var r={};for(var o in e)yr.call(e,o)&&t.indexOf(o)<0&&(r[o]=e[o]);if(e!=null&&Dt)for(var o of Dt(e))t.indexOf(o)<0&&ao.call(e,o)&&(r[o]=e[o]);return r};var xr=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var zi=(e,t,r,o)=>{if(t&&typeof t=="object"||typeof t=="function")for(let n of Di(t))!yr.call(e,n)&&n!==r&&gr(e,n,{get:()=>t[n],enumerable:!(o=Vi(t,n))||o.enumerable});return e};var Mt=(e,t,r)=>(r=e!=null?Wi(Ni(e)):{},zi(t||!e||!e.__esModule?gr(r,"default",{value:e,enumerable:!0}):r,e));var co=(e,t,r)=>new Promise((o,n)=>{var i=p=>{try{s(r.next(p))}catch(c){n(c)}},a=p=>{try{s(r.throw(p))}catch(c){n(c)}},s=p=>p.done?o(p.value):Promise.resolve(p.value).then(i,a);s((r=r.apply(e,t)).next())});var lo=xr((Er,po)=>{(function(e,t){typeof Er=="object"&&typeof po!="undefined"?t():typeof define=="function"&&define.amd?define(t):t()})(Er,function(){"use strict";function e(r){var o=!0,n=!1,i=null,a={text:!0,search:!0,url:!0,tel:!0,email:!0,password:!0,number:!0,date:!0,month:!0,week:!0,time:!0,datetime:!0,"datetime-local":!0};function s(k){return!!(k&&k!==document&&k.nodeName!=="HTML"&&k.nodeName!=="BODY"&&"classList"in k&&"contains"in k.classList)}function p(k){var ft=k.type,qe=k.tagName;return!!(qe==="INPUT"&&a[ft]&&!k.readOnly||qe==="TEXTAREA"&&!k.readOnly||k.isContentEditable)}function c(k){k.classList.contains("focus-visible")||(k.classList.add("focus-visible"),k.setAttribute("data-focus-visible-added",""))}function l(k){k.hasAttribute("data-focus-visible-added")&&(k.classList.remove("focus-visible"),k.removeAttribute("data-focus-visible-added"))}function f(k){k.metaKey||k.altKey||k.ctrlKey||(s(r.activeElement)&&c(r.activeElement),o=!0)}function u(k){o=!1}function d(k){s(k.target)&&(o||p(k.target))&&c(k.target)}function y(k){s(k.target)&&(k.target.classList.contains("focus-visible")||k.target.hasAttribute("data-focus-visible-added"))&&(n=!0,window.clearTimeout(i),i=window.setTimeout(function(){n=!1},100),l(k.target))}function L(k){document.visibilityState==="hidden"&&(n&&(o=!0),X())}function X(){document.addEventListener("mousemove",J),document.addEventListener("mousedown",J),document.addEventListener("mouseup",J),document.addEventListener("pointermove",J),document.addEventListener("pointerdown",J),document.addEventListener("pointerup",J),document.addEventListener("touchmove",J),document.addEventListener("touchstart",J),document.addEventListener("touchend",J)}function ee(){document.removeEventListener("mousemove",J),document.removeEventListener("mousedown",J),document.removeEventListener("mouseup",J),document.removeEventListener("pointermove",J),document.removeEventListener("pointerdown",J),document.removeEventListener("pointerup",J),document.removeEventListener("touchmove",J),document.removeEventListener("touchstart",J),document.removeEventListener("touchend",J)}function J(k){k.target.nodeName&&k.target.nodeName.toLowerCase()==="html"||(o=!1,ee())}document.addEventListener("keydown",f,!0),document.addEventListener("mousedown",u,!0),document.addEventListener("pointerdown",u,!0),document.addEventListener("touchstart",u,!0),document.addEventListener("visibilitychange",L,!0),X(),r.addEventListener("focus",d,!0),r.addEventListener("blur",y,!0),r.nodeType===Node.DOCUMENT_FRAGMENT_NODE&&r.host?r.host.setAttribute("data-js-focus-visible",""):r.nodeType===Node.DOCUMENT_NODE&&(document.documentElement.classList.add("js-focus-visible"),document.documentElement.setAttribute("data-js-focus-visible",""))}if(typeof window!="undefined"&&typeof document!="undefined"){window.applyFocusVisiblePolyfill=e;var t;try{t=new CustomEvent("focus-visible-polyfill-ready")}catch(r){t=document.createEvent("CustomEvent"),t.initCustomEvent("focus-visible-polyfill-ready",!1,!1,{})}window.dispatchEvent(t)}typeof document!="undefined"&&e(document)})});var qr=xr((hy,On)=>{"use strict";/*! * escape-html * Copyright(c) 2012-2013 TJ Holowaychuk * Copyright(c) 2015 Andreas Lubbe * Copyright(c) 2015 Tiancheng "Timothy" Gu * MIT Licensed */var $a=/["'&<>]/;On.exports=Pa;function Pa(e){var t=""+e,r=$a.exec(t);if(!r)return t;var o,n="",i=0,a=0;for(i=r.index;i<t.length;i++){switch(t.charCodeAt(i)){case 34:o=""";break;case 38:o="&";break;case 39:o="'";break;case 60:o="<";break;case 62:o=">";break;default:continue}a!==i&&(n+=t.substring(a,i)),a=i+1,n+=o}return a!==i?n+t.substring(a,i):n}});var Br=xr((It,Yr)=>{/*! * clipboard.js v2.0.11 * https://clipboardjs.com/ * * Licensed MIT © Zeno Rocha */(function(t,r){typeof It=="object"&&typeof Yr=="object"?Yr.exports=r():typeof define=="function"&&define.amd?define([],r):typeof It=="object"?It.ClipboardJS=r():t.ClipboardJS=r()})(It,function(){return function(){var e={686:function(o,n,i){"use strict";i.d(n,{default:function(){return Ui}});var a=i(279),s=i.n(a),p=i(370),c=i.n(p),l=i(817),f=i.n(l);function u(D){try{return document.execCommand(D)}catch(A){return!1}}var d=function(A){var M=f()(A);return u("cut"),M},y=d;function L(D){var A=document.documentElement.getAttribute("dir")==="rtl",M=document.createElement("textarea");M.style.fontSize="12pt",M.style.border="0",M.style.padding="0",M.style.margin="0",M.style.position="absolute",M.style[A?"right":"left"]="-9999px";var F=window.pageYOffset||document.documentElement.scrollTop;return M.style.top="".concat(F,"px"),M.setAttribute("readonly",""),M.value=D,M}var X=function(A,M){var F=L(A);M.container.appendChild(F);var V=f()(F);return u("copy"),F.remove(),V},ee=function(A){var M=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{container:document.body},F="";return typeof A=="string"?F=X(A,M):A instanceof HTMLInputElement&&!["text","search","url","tel","password"].includes(A==null?void 0:A.type)?F=X(A.value,M):(F=f()(A),u("copy")),F},J=ee;function k(D){"@babel/helpers - typeof";return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?k=function(M){return typeof M}:k=function(M){return M&&typeof Symbol=="function"&&M.constructor===Symbol&&M!==Symbol.prototype?"symbol":typeof M},k(D)}var ft=function(){var A=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},M=A.action,F=M===void 0?"copy":M,V=A.container,Y=A.target,$e=A.text;if(F!=="copy"&&F!=="cut")throw new Error('Invalid "action" value, use either "copy" or "cut"');if(Y!==void 0)if(Y&&k(Y)==="object"&&Y.nodeType===1){if(F==="copy"&&Y.hasAttribute("disabled"))throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');if(F==="cut"&&(Y.hasAttribute("readonly")||Y.hasAttribute("disabled")))throw new Error(`Invalid "target" attribute. You can't cut text from elements with "readonly" or "disabled" attributes`)}else throw new Error('Invalid "target" value, use a valid Element');if($e)return J($e,{container:V});if(Y)return F==="cut"?y(Y):J(Y,{container:V})},qe=ft;function Fe(D){"@babel/helpers - typeof";return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?Fe=function(M){return typeof M}:Fe=function(M){return M&&typeof Symbol=="function"&&M.constructor===Symbol&&M!==Symbol.prototype?"symbol":typeof M},Fe(D)}function ki(D,A){if(!(D instanceof A))throw new TypeError("Cannot call a class as a function")}function no(D,A){for(var M=0;M<A.length;M++){var F=A[M];F.enumerable=F.enumerable||!1,F.configurable=!0,"value"in F&&(F.writable=!0),Object.defineProperty(D,F.key,F)}}function Hi(D,A,M){return A&&no(D.prototype,A),M&&no(D,M),D}function $i(D,A){if(typeof A!="function"&&A!==null)throw new TypeError("Super expression must either be null or a function");D.prototype=Object.create(A&&A.prototype,{constructor:{value:D,writable:!0,configurable:!0}}),A&&br(D,A)}function br(D,A){return br=Object.setPrototypeOf||function(F,V){return F.__proto__=V,F},br(D,A)}function Pi(D){var A=ji();return function(){var F=Wt(D),V;if(A){var Y=Wt(this).constructor;V=Reflect.construct(F,arguments,Y)}else V=F.apply(this,arguments);return Ri(this,V)}}function Ri(D,A){return A&&(Fe(A)==="object"||typeof A=="function")?A:Ii(D)}function Ii(D){if(D===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return D}function ji(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(D){return!1}}function Wt(D){return Wt=Object.setPrototypeOf?Object.getPrototypeOf:function(M){return M.__proto__||Object.getPrototypeOf(M)},Wt(D)}function vr(D,A){var M="data-clipboard-".concat(D);if(A.hasAttribute(M))return A.getAttribute(M)}var Fi=function(D){$i(M,D);var A=Pi(M);function M(F,V){var Y;return ki(this,M),Y=A.call(this),Y.resolveOptions(V),Y.listenClick(F),Y}return Hi(M,[{key:"resolveOptions",value:function(){var V=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};this.action=typeof V.action=="function"?V.action:this.defaultAction,this.target=typeof V.target=="function"?V.target:this.defaultTarget,this.text=typeof V.text=="function"?V.text:this.defaultText,this.container=Fe(V.container)==="object"?V.container:document.body}},{key:"listenClick",value:function(V){var Y=this;this.listener=c()(V,"click",function($e){return Y.onClick($e)})}},{key:"onClick",value:function(V){var Y=V.delegateTarget||V.currentTarget,$e=this.action(Y)||"copy",Vt=qe({action:$e,container:this.container,target:this.target(Y),text:this.text(Y)});this.emit(Vt?"success":"error",{action:$e,text:Vt,trigger:Y,clearSelection:function(){Y&&Y.focus(),window.getSelection().removeAllRanges()}})}},{key:"defaultAction",value:function(V){return vr("action",V)}},{key:"defaultTarget",value:function(V){var Y=vr("target",V);if(Y)return document.querySelector(Y)}},{key:"defaultText",value:function(V){return vr("text",V)}},{key:"destroy",value:function(){this.listener.destroy()}}],[{key:"copy",value:function(V){var Y=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{container:document.body};return J(V,Y)}},{key:"cut",value:function(V){return y(V)}},{key:"isSupported",value:function(){var V=arguments.length>0&&arguments[0]!==void 0?arguments[0]:["copy","cut"],Y=typeof V=="string"?[V]:V,$e=!!document.queryCommandSupported;return Y.forEach(function(Vt){$e=$e&&!!document.queryCommandSupported(Vt)}),$e}}]),M}(s()),Ui=Fi},828:function(o){var n=9;if(typeof Element!="undefined"&&!Element.prototype.matches){var i=Element.prototype;i.matches=i.matchesSelector||i.mozMatchesSelector||i.msMatchesSelector||i.oMatchesSelector||i.webkitMatchesSelector}function a(s,p){for(;s&&s.nodeType!==n;){if(typeof s.matches=="function"&&s.matches(p))return s;s=s.parentNode}}o.exports=a},438:function(o,n,i){var a=i(828);function s(l,f,u,d,y){var L=c.apply(this,arguments);return l.addEventListener(u,L,y),{destroy:function(){l.removeEventListener(u,L,y)}}}function p(l,f,u,d,y){return typeof l.addEventListener=="function"?s.apply(null,arguments):typeof u=="function"?s.bind(null,document).apply(null,arguments):(typeof l=="string"&&(l=document.querySelectorAll(l)),Array.prototype.map.call(l,function(L){return s(L,f,u,d,y)}))}function c(l,f,u,d){return function(y){y.delegateTarget=a(y.target,f),y.delegateTarget&&d.call(l,y)}}o.exports=p},879:function(o,n){n.node=function(i){return i!==void 0&&i instanceof HTMLElement&&i.nodeType===1},n.nodeList=function(i){var a=Object.prototype.toString.call(i);return i!==void 0&&(a==="[object NodeList]"||a==="[object HTMLCollection]")&&"length"in i&&(i.length===0||n.node(i[0]))},n.string=function(i){return typeof i=="string"||i instanceof String},n.fn=function(i){var a=Object.prototype.toString.call(i);return a==="[object Function]"}},370:function(o,n,i){var a=i(879),s=i(438);function p(u,d,y){if(!u&&!d&&!y)throw new Error("Missing required arguments");if(!a.string(d))throw new TypeError("Second argument must be a String");if(!a.fn(y))throw new TypeError("Third argument must be a Function");if(a.node(u))return c(u,d,y);if(a.nodeList(u))return l(u,d,y);if(a.string(u))return f(u,d,y);throw new TypeError("First argument must be a String, HTMLElement, HTMLCollection, or NodeList")}function c(u,d,y){return u.addEventListener(d,y),{destroy:function(){u.removeEventListener(d,y)}}}function l(u,d,y){return Array.prototype.forEach.call(u,function(L){L.addEventListener(d,y)}),{destroy:function(){Array.prototype.forEach.call(u,function(L){L.removeEventListener(d,y)})}}}function f(u,d,y){return s(document.body,u,d,y)}o.exports=p},817:function(o){function n(i){var a;if(i.nodeName==="SELECT")i.focus(),a=i.value;else if(i.nodeName==="INPUT"||i.nodeName==="TEXTAREA"){var s=i.hasAttribute("readonly");s||i.setAttribute("readonly",""),i.select(),i.setSelectionRange(0,i.value.length),s||i.removeAttribute("readonly"),a=i.value}else{i.hasAttribute("contenteditable")&&i.focus();var p=window.getSelection(),c=document.createRange();c.selectNodeContents(i),p.removeAllRanges(),p.addRange(c),a=p.toString()}return a}o.exports=n},279:function(o){function n(){}n.prototype={on:function(i,a,s){var p=this.e||(this.e={});return(p[i]||(p[i]=[])).push({fn:a,ctx:s}),this},once:function(i,a,s){var p=this;function c(){p.off(i,c),a.apply(s,arguments)}return c._=a,this.on(i,c,s)},emit:function(i){var a=[].slice.call(arguments,1),s=((this.e||(this.e={}))[i]||[]).slice(),p=0,c=s.length;for(p;p<c;p++)s[p].fn.apply(s[p].ctx,a);return this},off:function(i,a){var s=this.e||(this.e={}),p=s[i],c=[];if(p&&a)for(var l=0,f=p.length;l<f;l++)p[l].fn!==a&&p[l].fn._!==a&&c.push(p[l]);return c.length?s[i]=c:delete s[i],this}},o.exports=n,o.exports.TinyEmitter=n}},t={};function r(o){if(t[o])return t[o].exports;var n=t[o]={exports:{}};return e[o](n,n.exports,r),n.exports}return function(){r.n=function(o){var n=o&&o.__esModule?function(){return o.default}:function(){return o};return r.d(n,{a:n}),n}}(),function(){r.d=function(o,n){for(var i in n)r.o(n,i)&&!r.o(o,i)&&Object.defineProperty(o,i,{enumerable:!0,get:n[i]})}}(),function(){r.o=function(o,n){return Object.prototype.hasOwnProperty.call(o,n)}}(),r(686)}().default})});var lL=Mt(lo());var wr=function(e,t){return wr=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,o){r.__proto__=o}||function(r,o){for(var n in o)Object.prototype.hasOwnProperty.call(o,n)&&(r[n]=o[n])},wr(e,t)};function oe(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");wr(e,t);function r(){this.constructor=e}e.prototype=t===null?Object.create(t):(r.prototype=t.prototype,new r)}function mo(e,t,r,o){function n(i){return i instanceof r?i:new r(function(a){a(i)})}return new(r||(r=Promise))(function(i,a){function s(l){try{c(o.next(l))}catch(f){a(f)}}function p(l){try{c(o.throw(l))}catch(f){a(f)}}function c(l){l.done?i(l.value):n(l.value).then(s,p)}c((o=o.apply(e,t||[])).next())})}function Nt(e,t){var r={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]},o,n,i,a=Object.create((typeof Iterator=="function"?Iterator:Object).prototype);return a.next=s(0),a.throw=s(1),a.return=s(2),typeof Symbol=="function"&&(a[Symbol.iterator]=function(){return this}),a;function s(c){return function(l){return p([c,l])}}function p(c){if(o)throw new TypeError("Generator is already executing.");for(;a&&(a=0,c[0]&&(r=0)),r;)try{if(o=1,n&&(i=c[0]&2?n.return:c[0]?n.throw||((i=n.return)&&i.call(n),0):n.next)&&!(i=i.call(n,c[1])).done)return i;switch(n=0,i&&(c=[c[0]&2,i.value]),c[0]){case 0:case 1:i=c;break;case 4:return r.label++,{value:c[1],done:!1};case 5:r.label++,n=c[1],c=[0];continue;case 7:c=r.ops.pop(),r.trys.pop();continue;default:if(i=r.trys,!(i=i.length>0&&i[i.length-1])&&(c[0]===6||c[0]===2)){r=0;continue}if(c[0]===3&&(!i||c[1]>i[0]&&c[1]<i[3])){r.label=c[1];break}if(c[0]===6&&r.label<i[1]){r.label=i[1],i=c;break}if(i&&r.label<i[2]){r.label=i[2],r.ops.push(c);break}i[2]&&r.ops.pop(),r.trys.pop();continue}c=t.call(e,r)}catch(l){c=[6,l],n=0}finally{o=i=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}}function he(e){var t=typeof Symbol=="function"&&Symbol.iterator,r=t&&e[t],o=0;if(r)return r.call(e);if(e&&typeof e.length=="number")return{next:function(){return e&&o>=e.length&&(e=void 0),{value:e&&e[o++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}function N(e,t){var r=typeof Symbol=="function"&&e[Symbol.iterator];if(!r)return e;var o=r.call(e),n,i=[],a;try{for(;(t===void 0||t-- >0)&&!(n=o.next()).done;)i.push(n.value)}catch(s){a={error:s}}finally{try{n&&!n.done&&(r=o.return)&&r.call(o)}finally{if(a)throw a.error}}return i}function q(e,t,r){if(r||arguments.length===2)for(var o=0,n=t.length,i;o<n;o++)(i||!(o in t))&&(i||(i=Array.prototype.slice.call(t,0,o)),i[o]=t[o]);return e.concat(i||Array.prototype.slice.call(t))}function nt(e){return this instanceof nt?(this.v=e,this):new nt(e)}function fo(e,t,r){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var o=r.apply(e,t||[]),n,i=[];return n=Object.create((typeof AsyncIterator=="function"?AsyncIterator:Object).prototype),s("next"),s("throw"),s("return",a),n[Symbol.asyncIterator]=function(){return this},n;function a(d){return function(y){return Promise.resolve(y).then(d,f)}}function s(d,y){o[d]&&(n[d]=function(L){return new Promise(function(X,ee){i.push([d,L,X,ee])>1||p(d,L)})},y&&(n[d]=y(n[d])))}function p(d,y){try{c(o[d](y))}catch(L){u(i[0][3],L)}}function c(d){d.value instanceof nt?Promise.resolve(d.value.v).then(l,f):u(i[0][2],d)}function l(d){p("next",d)}function f(d){p("throw",d)}function u(d,y){d(y),i.shift(),i.length&&p(i[0][0],i[0][1])}}function uo(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var t=e[Symbol.asyncIterator],r;return t?t.call(e):(e=typeof he=="function"?he(e):e[Symbol.iterator](),r={},o("next"),o("throw"),o("return"),r[Symbol.asyncIterator]=function(){return this},r);function o(i){r[i]=e[i]&&function(a){return new Promise(function(s,p){a=e[i](a),n(s,p,a.done,a.value)})}}function n(i,a,s,p){Promise.resolve(p).then(function(c){i({value:c,done:s})},a)}}function H(e){return typeof e=="function"}function ut(e){var t=function(o){Error.call(o),o.stack=new Error().stack},r=e(t);return r.prototype=Object.create(Error.prototype),r.prototype.constructor=r,r}var zt=ut(function(e){return function(r){e(this),this.message=r?r.length+` errors occurred during unsubscription: `+r.map(function(o,n){return n+1+") "+o.toString()}).join(` `):"",this.name="UnsubscriptionError",this.errors=r}});function Qe(e,t){if(e){var r=e.indexOf(t);0<=r&&e.splice(r,1)}}var Ue=function(){function e(t){this.initialTeardown=t,this.closed=!1,this._parentage=null,this._finalizers=null}return e.prototype.unsubscribe=function(){var t,r,o,n,i;if(!this.closed){this.closed=!0;var a=this._parentage;if(a)if(this._parentage=null,Array.isArray(a))try{for(var s=he(a),p=s.next();!p.done;p=s.next()){var c=p.value;c.remove(this)}}catch(L){t={error:L}}finally{try{p&&!p.done&&(r=s.return)&&r.call(s)}finally{if(t)throw t.error}}else a.remove(this);var l=this.initialTeardown;if(H(l))try{l()}catch(L){i=L instanceof zt?L.errors:[L]}var f=this._finalizers;if(f){this._finalizers=null;try{for(var u=he(f),d=u.next();!d.done;d=u.next()){var y=d.value;try{ho(y)}catch(L){i=i!=null?i:[],L instanceof zt?i=q(q([],N(i)),N(L.errors)):i.push(L)}}}catch(L){o={error:L}}finally{try{d&&!d.done&&(n=u.return)&&n.call(u)}finally{if(o)throw o.error}}}if(i)throw new zt(i)}},e.prototype.add=function(t){var r;if(t&&t!==this)if(this.closed)ho(t);else{if(t instanceof e){if(t.closed||t._hasParent(this))return;t._addParent(this)}(this._finalizers=(r=this._finalizers)!==null&&r!==void 0?r:[]).push(t)}},e.prototype._hasParent=function(t){var r=this._parentage;return r===t||Array.isArray(r)&&r.includes(t)},e.prototype._addParent=function(t){var r=this._parentage;this._parentage=Array.isArray(r)?(r.push(t),r):r?[r,t]:t},e.prototype._removeParent=function(t){var r=this._parentage;r===t?this._parentage=null:Array.isArray(r)&&Qe(r,t)},e.prototype.remove=function(t){var r=this._finalizers;r&&Qe(r,t),t instanceof e&&t._removeParent(this)},e.EMPTY=function(){var t=new e;return t.closed=!0,t}(),e}();var Tr=Ue.EMPTY;function qt(e){return e instanceof Ue||e&&"closed"in e&&H(e.remove)&&H(e.add)&&H(e.unsubscribe)}function ho(e){H(e)?e():e.unsubscribe()}var Pe={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1};var dt={setTimeout:function(e,t){for(var r=[],o=2;o<arguments.length;o++)r[o-2]=arguments[o];var n=dt.delegate;return n!=null&&n.setTimeout?n.setTimeout.apply(n,q([e,t],N(r))):setTimeout.apply(void 0,q([e,t],N(r)))},clearTimeout:function(e){var t=dt.delegate;return((t==null?void 0:t.clearTimeout)||clearTimeout)(e)},delegate:void 0};function Qt(e){dt.setTimeout(function(){var t=Pe.onUnhandledError;if(t)t(e);else throw e})}function be(){}var bo=function(){return Sr("C",void 0,void 0)}();function vo(e){return Sr("E",void 0,e)}function go(e){return Sr("N",e,void 0)}function Sr(e,t,r){return{kind:e,value:t,error:r}}var it=null;function ht(e){if(Pe.useDeprecatedSynchronousErrorHandling){var t=!it;if(t&&(it={errorThrown:!1,error:null}),e(),t){var r=it,o=r.errorThrown,n=r.error;if(it=null,o)throw n}}else e()}function yo(e){Pe.useDeprecatedSynchronousErrorHandling&&it&&(it.errorThrown=!0,it.error=e)}var _t=function(e){oe(t,e);function t(r){var o=e.call(this)||this;return o.isStopped=!1,r?(o.destination=r,qt(r)&&r.add(o)):o.destination=Yi,o}return t.create=function(r,o,n){return new at(r,o,n)},t.prototype.next=function(r){this.isStopped?Lr(go(r),this):this._next(r)},t.prototype.error=function(r){this.isStopped?Lr(vo(r),this):(this.isStopped=!0,this._error(r))},t.prototype.complete=function(){this.isStopped?Lr(bo,this):(this.isStopped=!0,this._complete())},t.prototype.unsubscribe=function(){this.closed||(this.isStopped=!0,e.prototype.unsubscribe.call(this),this.destination=null)},t.prototype._next=function(r){this.destination.next(r)},t.prototype._error=function(r){try{this.destination.error(r)}finally{this.unsubscribe()}},t.prototype._complete=function(){try{this.destination.complete()}finally{this.unsubscribe()}},t}(Ue);var qi=Function.prototype.bind;function Or(e,t){return qi.call(e,t)}var Qi=function(){function e(t){this.partialObserver=t}return e.prototype.next=function(t){var r=this.partialObserver;if(r.next)try{r.next(t)}catch(o){Kt(o)}},e.prototype.error=function(t){var r=this.partialObserver;if(r.error)try{r.error(t)}catch(o){Kt(o)}else Kt(t)},e.prototype.complete=function(){var t=this.partialObserver;if(t.complete)try{t.complete()}catch(r){Kt(r)}},e}(),at=function(e){oe(t,e);function t(r,o,n){var i=e.call(this)||this,a;if(H(r)||!r)a={next:r!=null?r:void 0,error:o!=null?o:void 0,complete:n!=null?n:void 0};else{var s;i&&Pe.useDeprecatedNextContext?(s=Object.create(r),s.unsubscribe=function(){return i.unsubscribe()},a={next:r.next&&Or(r.next,s),error:r.error&&Or(r.error,s),complete:r.complete&&Or(r.complete,s)}):a=r}return i.destination=new Qi(a),i}return t}(_t);function Kt(e){Pe.useDeprecatedSynchronousErrorHandling?yo(e):Qt(e)}function Ki(e){throw e}function Lr(e,t){var r=Pe.onStoppedNotification;r&&dt.setTimeout(function(){return r(e,t)})}var Yi={closed:!0,next:be,error:Ki,complete:be};var bt=function(){return typeof Symbol=="function"&&Symbol.observable||"@@observable"}();function le(e){return e}function xo(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return Mr(e)}function Mr(e){return e.length===0?le:e.length===1?e[0]:function(r){return e.reduce(function(o,n){return n(o)},r)}}var j=function(){function e(t){t&&(this._subscribe=t)}return e.prototype.lift=function(t){var r=new e;return r.source=this,r.operator=t,r},e.prototype.subscribe=function(t,r,o){var n=this,i=Gi(t)?t:new at(t,r,o);return ht(function(){var a=n,s=a.operator,p=a.source;i.add(s?s.call(i,p):p?n._subscribe(i):n._trySubscribe(i))}),i},e.prototype._trySubscribe=function(t){try{return this._subscribe(t)}catch(r){t.error(r)}},e.prototype.forEach=function(t,r){var o=this;return r=Eo(r),new r(function(n,i){var a=new at({next:function(s){try{t(s)}catch(p){i(p),a.unsubscribe()}},error:i,complete:n});o.subscribe(a)})},e.prototype._subscribe=function(t){var r;return(r=this.source)===null||r===void 0?void 0:r.subscribe(t)},e.prototype[bt]=function(){return this},e.prototype.pipe=function(){for(var t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return Mr(t)(this)},e.prototype.toPromise=function(t){var r=this;return t=Eo(t),new t(function(o,n){var i;r.subscribe(function(a){return i=a},function(a){return n(a)},function(){return o(i)})})},e.create=function(t){return new e(t)},e}();function Eo(e){var t;return(t=e!=null?e:Pe.Promise)!==null&&t!==void 0?t:Promise}function Bi(e){return e&&H(e.next)&&H(e.error)&&H(e.complete)}function Gi(e){return e&&e instanceof _t||Bi(e)&&qt(e)}function Ji(e){return H(e==null?void 0:e.lift)}function E(e){return function(t){if(Ji(t))return t.lift(function(r){try{return e(r,this)}catch(o){this.error(o)}});throw new TypeError("Unable to lift unknown Observable type")}}function T(e,t,r,o,n){return new Xi(e,t,r,o,n)}var Xi=function(e){oe(t,e);function t(r,o,n,i,a,s){var p=e.call(this,r)||this;return p.onFinalize=a,p.shouldUnsubscribe=s,p._next=o?function(c){try{o(c)}catch(l){r.error(l)}}:e.prototype._next,p._error=i?function(c){try{i(c)}catch(l){r.error(l)}finally{this.unsubscribe()}}:e.prototype._error,p._complete=n?function(){try{n()}catch(c){r.error(c)}finally{this.unsubscribe()}}:e.prototype._complete,p}return t.prototype.unsubscribe=function(){var r;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){var o=this.closed;e.prototype.unsubscribe.call(this),!o&&((r=this.onFinalize)===null||r===void 0||r.call(this))}},t}(_t);var vt={schedule:function(e){var t=requestAnimationFrame,r=cancelAnimationFrame,o=vt.delegate;o&&(t=o.requestAnimationFrame,r=o.cancelAnimationFrame);var n=t(function(i){r=void 0,e(i)});return new Ue(function(){return r==null?void 0:r(n)})},requestAnimationFrame:function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var r=vt.delegate;return((r==null?void 0:r.requestAnimationFrame)||requestAnimationFrame).apply(void 0,q([],N(e)))},cancelAnimationFrame:function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var r=vt.delegate;return((r==null?void 0:r.cancelAnimationFrame)||cancelAnimationFrame).apply(void 0,q([],N(e)))},delegate:void 0};var wo=ut(function(e){return function(){e(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"}});var g=function(e){oe(t,e);function t(){var r=e.call(this)||this;return r.closed=!1,r.currentObservers=null,r.observers=[],r.isStopped=!1,r.hasError=!1,r.thrownError=null,r}return t.prototype.lift=function(r){var o=new To(this,this);return o.operator=r,o},t.prototype._throwIfClosed=function(){if(this.closed)throw new wo},t.prototype.next=function(r){var o=this;ht(function(){var n,i;if(o._throwIfClosed(),!o.isStopped){o.currentObservers||(o.currentObservers=Array.from(o.observers));try{for(var a=he(o.currentObservers),s=a.next();!s.done;s=a.next()){var p=s.value;p.next(r)}}catch(c){n={error:c}}finally{try{s&&!s.done&&(i=a.return)&&i.call(a)}finally{if(n)throw n.error}}}})},t.prototype.error=function(r){var o=this;ht(function(){if(o._throwIfClosed(),!o.isStopped){o.hasError=o.isStopped=!0,o.thrownError=r;for(var n=o.observers;n.length;)n.shift().error(r)}})},t.prototype.complete=function(){var r=this;ht(function(){if(r._throwIfClosed(),!r.isStopped){r.isStopped=!0;for(var o=r.observers;o.length;)o.shift().complete()}})},t.prototype.unsubscribe=function(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null},Object.defineProperty(t.prototype,"observed",{get:function(){var r;return((r=this.observers)===null||r===void 0?void 0:r.length)>0},enumerable:!1,configurable:!0}),t.prototype._trySubscribe=function(r){return this._throwIfClosed(),e.prototype._trySubscribe.call(this,r)},t.prototype._subscribe=function(r){return this._throwIfClosed(),this._checkFinalizedStatuses(r),this._innerSubscribe(r)},t.prototype._innerSubscribe=function(r){var o=this,n=this,i=n.hasError,a=n.isStopped,s=n.observers;return i||a?Tr:(this.currentObservers=null,s.push(r),new Ue(function(){o.currentObservers=null,Qe(s,r)}))},t.prototype._checkFinalizedStatuses=function(r){var o=this,n=o.hasError,i=o.thrownError,a=o.isStopped;n?r.error(i):a&&r.complete()},t.prototype.asObservable=function(){var r=new j;return r.source=this,r},t.create=function(r,o){return new To(r,o)},t}(j);var To=function(e){oe(t,e);function t(r,o){var n=e.call(this)||this;return n.destination=r,n.source=o,n}return t.prototype.next=function(r){var o,n;(n=(o=this.destination)===null||o===void 0?void 0:o.next)===null||n===void 0||n.call(o,r)},t.prototype.error=function(r){var o,n;(n=(o=this.destination)===null||o===void 0?void 0:o.error)===null||n===void 0||n.call(o,r)},t.prototype.complete=function(){var r,o;(o=(r=this.destination)===null||r===void 0?void 0:r.complete)===null||o===void 0||o.call(r)},t.prototype._subscribe=function(r){var o,n;return(n=(o=this.source)===null||o===void 0?void 0:o.subscribe(r))!==null&&n!==void 0?n:Tr},t}(g);var _r=function(e){oe(t,e);function t(r){var o=e.call(this)||this;return o._value=r,o}return Object.defineProperty(t.prototype,"value",{get:function(){return this.getValue()},enumerable:!1,configurable:!0}),t.prototype._subscribe=function(r){var o=e.prototype._subscribe.call(this,r);return!o.closed&&r.next(this._value),o},t.prototype.getValue=function(){var r=this,o=r.hasError,n=r.thrownError,i=r._value;if(o)throw n;return this._throwIfClosed(),i},t.prototype.next=function(r){e.prototype.next.call(this,this._value=r)},t}(g);var At={now:function(){return(At.delegate||Date).now()},delegate:void 0};var Ct=function(e){oe(t,e);function t(r,o,n){r===void 0&&(r=1/0),o===void 0&&(o=1/0),n===void 0&&(n=At);var i=e.call(this)||this;return i._bufferSize=r,i._windowTime=o,i._timestampProvider=n,i._buffer=[],i._infiniteTimeWindow=!0,i._infiniteTimeWindow=o===1/0,i._bufferSize=Math.max(1,r),i._windowTime=Math.max(1,o),i}return t.prototype.next=function(r){var o=this,n=o.isStopped,i=o._buffer,a=o._infiniteTimeWindow,s=o._timestampProvider,p=o._windowTime;n||(i.push(r),!a&&i.push(s.now()+p)),this._trimBuffer(),e.prototype.next.call(this,r)},t.prototype._subscribe=function(r){this._throwIfClosed(),this._trimBuffer();for(var o=this._innerSubscribe(r),n=this,i=n._infiniteTimeWindow,a=n._buffer,s=a.slice(),p=0;p<s.length&&!r.closed;p+=i?1:2)r.next(s[p]);return this._checkFinalizedStatuses(r),o},t.prototype._trimBuffer=function(){var r=this,o=r._bufferSize,n=r._timestampProvider,i=r._buffer,a=r._infiniteTimeWindow,s=(a?1:2)*o;if(o<1/0&&s<i.length&&i.splice(0,i.length-s),!a){for(var p=n.now(),c=0,l=1;l<i.length&&i[l]<=p;l+=2)c=l;c&&i.splice(0,c+1)}},t}(g);var So=function(e){oe(t,e);function t(r,o){return e.call(this)||this}return t.prototype.schedule=function(r,o){return o===void 0&&(o=0),this},t}(Ue);var kt={setInterval:function(e,t){for(var r=[],o=2;o<arguments.length;o++)r[o-2]=arguments[o];var n=kt.delegate;return n!=null&&n.setInterval?n.setInterval.apply(n,q([e,t],N(r))):setInterval.apply(void 0,q([e,t],N(r)))},clearInterval:function(e){var t=kt.delegate;return((t==null?void 0:t.clearInterval)||clearInterval)(e)},delegate:void 0};var gt=function(e){oe(t,e);function t(r,o){var n=e.call(this,r,o)||this;return n.scheduler=r,n.work=o,n.pending=!1,n}return t.prototype.schedule=function(r,o){var n;if(o===void 0&&(o=0),this.closed)return this;this.state=r;var i=this.id,a=this.scheduler;return i!=null&&(this.id=this.recycleAsyncId(a,i,o)),this.pending=!0,this.delay=o,this.id=(n=this.id)!==null&&n!==void 0?n:this.requestAsyncId(a,this.id,o),this},t.prototype.requestAsyncId=function(r,o,n){return n===void 0&&(n=0),kt.setInterval(r.flush.bind(r,this),n)},t.prototype.recycleAsyncId=function(r,o,n){if(n===void 0&&(n=0),n!=null&&this.delay===n&&this.pending===!1)return o;o!=null&&kt.clearInterval(o)},t.prototype.execute=function(r,o){if(this.closed)return new Error("executing a cancelled action");this.pending=!1;var n=this._execute(r,o);if(n)return n;this.pending===!1&&this.id!=null&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))},t.prototype._execute=function(r,o){var n=!1,i;try{this.work(r)}catch(a){n=!0,i=a||new Error("Scheduled action threw falsy error")}if(n)return this.unsubscribe(),i},t.prototype.unsubscribe=function(){if(!this.closed){var r=this,o=r.id,n=r.scheduler,i=n.actions;this.work=this.state=this.scheduler=null,this.pending=!1,Qe(i,this),o!=null&&(this.id=this.recycleAsyncId(n,o,null)),this.delay=null,e.prototype.unsubscribe.call(this)}},t}(So);var Ar=function(){function e(t,r){r===void 0&&(r=e.now),this.schedulerActionCtor=t,this.now=r}return e.prototype.schedule=function(t,r,o){return r===void 0&&(r=0),new this.schedulerActionCtor(this,t).schedule(o,r)},e.now=At.now,e}();var yt=function(e){oe(t,e);function t(r,o){o===void 0&&(o=Ar.now);var n=e.call(this,r,o)||this;return n.actions=[],n._active=!1,n}return t.prototype.flush=function(r){var o=this.actions;if(this._active){o.push(r);return}var n;this._active=!0;do if(n=r.execute(r.state,r.delay))break;while(r=o.shift());if(this._active=!1,n){for(;r=o.shift();)r.unsubscribe();throw n}},t}(Ar);var se=new yt(gt),Cr=se;var Oo=function(e){oe(t,e);function t(r,o){var n=e.call(this,r,o)||this;return n.scheduler=r,n.work=o,n}return t.prototype.schedule=function(r,o){return o===void 0&&(o=0),o>0?e.prototype.schedule.call(this,r,o):(this.delay=o,this.state=r,this.scheduler.flush(this),this)},t.prototype.execute=function(r,o){return o>0||this.closed?e.prototype.execute.call(this,r,o):this._execute(r,o)},t.prototype.requestAsyncId=function(r,o,n){return n===void 0&&(n=0),n!=null&&n>0||n==null&&this.delay>0?e.prototype.requestAsyncId.call(this,r,o,n):(r.flush(this),0)},t}(gt);var Lo=function(e){oe(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t}(yt);var kr=new Lo(Oo);var Mo=function(e){oe(t,e);function t(r,o){var n=e.call(this,r,o)||this;return n.scheduler=r,n.work=o,n}return t.prototype.requestAsyncId=function(r,o,n){return n===void 0&&(n=0),n!==null&&n>0?e.prototype.requestAsyncId.call(this,r,o,n):(r.actions.push(this),r._scheduled||(r._scheduled=vt.requestAnimationFrame(function(){return r.flush(void 0)})))},t.prototype.recycleAsyncId=function(r,o,n){var i;if(n===void 0&&(n=0),n!=null?n>0:this.delay>0)return e.prototype.recycleAsyncId.call(this,r,o,n);var a=r.actions;o!=null&&((i=a[a.length-1])===null||i===void 0?void 0:i.id)!==o&&(vt.cancelAnimationFrame(o),r._scheduled=void 0)},t}(gt);var _o=function(e){oe(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.flush=function(r){this._active=!0;var o=this._scheduled;this._scheduled=void 0;var n=this.actions,i;r=r||n.shift();do if(i=r.execute(r.state,r.delay))break;while((r=n[0])&&r.id===o&&n.shift());if(this._active=!1,i){for(;(r=n[0])&&r.id===o&&n.shift();)r.unsubscribe();throw i}},t}(yt);var me=new _o(Mo);var S=new j(function(e){return e.complete()});function Yt(e){return e&&H(e.schedule)}function Hr(e){return e[e.length-1]}function Xe(e){return H(Hr(e))?e.pop():void 0}function ke(e){return Yt(Hr(e))?e.pop():void 0}function Bt(e,t){return typeof Hr(e)=="number"?e.pop():t}var xt=function(e){return e&&typeof e.length=="number"&&typeof e!="function"};function Gt(e){return H(e==null?void 0:e.then)}function Jt(e){return H(e[bt])}function Xt(e){return Symbol.asyncIterator&&H(e==null?void 0:e[Symbol.asyncIterator])}function Zt(e){return new TypeError("You provided "+(e!==null&&typeof e=="object"?"an invalid object":"'"+e+"'")+" where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.")}function Zi(){return typeof Symbol!="function"||!Symbol.iterator?"@@iterator":Symbol.iterator}var er=Zi();function tr(e){return H(e==null?void 0:e[er])}function rr(e){return fo(this,arguments,function(){var r,o,n,i;return Nt(this,function(a){switch(a.label){case 0:r=e.getReader(),a.label=1;case 1:a.trys.push([1,,9,10]),a.label=2;case 2:return[4,nt(r.read())];case 3:return o=a.sent(),n=o.value,i=o.done,i?[4,nt(void 0)]:[3,5];case 4:return[2,a.sent()];case 5:return[4,nt(n)];case 6:return[4,a.sent()];case 7:return a.sent(),[3,2];case 8:return[3,10];case 9:return r.releaseLock(),[7];case 10:return[2]}})})}function or(e){return H(e==null?void 0:e.getReader)}function U(e){if(e instanceof j)return e;if(e!=null){if(Jt(e))return ea(e);if(xt(e))return ta(e);if(Gt(e))return ra(e);if(Xt(e))return Ao(e);if(tr(e))return oa(e);if(or(e))return na(e)}throw Zt(e)}function ea(e){return new j(function(t){var r=e[bt]();if(H(r.subscribe))return r.subscribe(t);throw new TypeError("Provided object does not correctly implement Symbol.observable")})}function ta(e){return new j(function(t){for(var r=0;r<e.length&&!t.closed;r++)t.next(e[r]);t.complete()})}function ra(e){return new j(function(t){e.then(function(r){t.closed||(t.next(r),t.complete())},function(r){return t.error(r)}).then(null,Qt)})}function oa(e){return new j(function(t){var r,o;try{for(var n=he(e),i=n.next();!i.done;i=n.next()){var a=i.value;if(t.next(a),t.closed)return}}catch(s){r={error:s}}finally{try{i&&!i.done&&(o=n.return)&&o.call(n)}finally{if(r)throw r.error}}t.complete()})}function Ao(e){return new j(function(t){ia(e,t).catch(function(r){return t.error(r)})})}function na(e){return Ao(rr(e))}function ia(e,t){var r,o,n,i;return mo(this,void 0,void 0,function(){var a,s;return Nt(this,function(p){switch(p.label){case 0:p.trys.push([0,5,6,11]),r=uo(e),p.label=1;case 1:return[4,r.next()];case 2:if(o=p.sent(),!!o.done)return[3,4];if(a=o.value,t.next(a),t.closed)return[2];p.label=3;case 3:return[3,1];case 4:return[3,11];case 5:return s=p.sent(),n={error:s},[3,11];case 6:return p.trys.push([6,,9,10]),o&&!o.done&&(i=r.return)?[4,i.call(r)]:[3,8];case 7:p.sent(),p.label=8;case 8:return[3,10];case 9:if(n)throw n.error;return[7];case 10:return[7];case 11:return t.complete(),[2]}})})}function we(e,t,r,o,n){o===void 0&&(o=0),n===void 0&&(n=!1);var i=t.schedule(function(){r(),n?e.add(this.schedule(null,o)):this.unsubscribe()},o);if(e.add(i),!n)return i}function ve(e,t){return t===void 0&&(t=0),E(function(r,o){r.subscribe(T(o,function(n){return we(o,e,function(){return o.next(n)},t)},function(){return we(o,e,function(){return o.complete()},t)},function(n){return we(o,e,function(){return o.error(n)},t)}))})}function Ke(e,t){return t===void 0&&(t=0),E(function(r,o){o.add(e.schedule(function(){return r.subscribe(o)},t))})}function Co(e,t){return U(e).pipe(Ke(t),ve(t))}function ko(e,t){return U(e).pipe(Ke(t),ve(t))}function Ho(e,t){return new j(function(r){var o=0;return t.schedule(function(){o===e.length?r.complete():(r.next(e[o++]),r.closed||this.schedule())})})}function $o(e,t){return new j(function(r){var o;return we(r,t,function(){o=e[er](),we(r,t,function(){var n,i,a;try{n=o.next(),i=n.value,a=n.done}catch(s){r.error(s);return}a?r.complete():r.next(i)},0,!0)}),function(){return H(o==null?void 0:o.return)&&o.return()}})}function nr(e,t){if(!e)throw new Error("Iterable cannot be null");return new j(function(r){we(r,t,function(){var o=e[Symbol.asyncIterator]();we(r,t,function(){o.next().then(function(n){n.done?r.complete():r.next(n.value)})},0,!0)})})}function Po(e,t){return nr(rr(e),t)}function Ro(e,t){if(e!=null){if(Jt(e))return Co(e,t);if(xt(e))return Ho(e,t);if(Gt(e))return ko(e,t);if(Xt(e))return nr(e,t);if(tr(e))return $o(e,t);if(or(e))return Po(e,t)}throw Zt(e)}function ue(e,t){return t?Ro(e,t):U(e)}function I(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var r=ke(e);return ue(e,r)}function $r(e,t){var r=H(e)?e:function(){return e},o=function(n){return n.error(r())};return new j(t?function(n){return t.schedule(o,0,n)}:o)}var ir=ut(function(e){return function(){e(this),this.name="EmptyError",this.message="no elements in sequence"}});function Io(e){return e instanceof Date&&!isNaN(e)}function m(e,t){return E(function(r,o){var n=0;r.subscribe(T(o,function(i){o.next(e.call(t,i,n++))}))})}var aa=Array.isArray;function sa(e,t){return aa(t)?e.apply(void 0,q([],N(t))):e(t)}function Ze(e){return m(function(t){return sa(e,t)})}var ca=Array.isArray,pa=Object.getPrototypeOf,la=Object.prototype,ma=Object.keys;function jo(e){if(e.length===1){var t=e[0];if(ca(t))return{args:t,keys:null};if(fa(t)){var r=ma(t);return{args:r.map(function(o){return t[o]}),keys:r}}}return{args:e,keys:null}}function fa(e){return e&&typeof e=="object"&&pa(e)===la}function Fo(e,t){return e.reduce(function(r,o,n){return r[o]=t[n],r},{})}function z(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var r=ke(e),o=Xe(e),n=jo(e),i=n.args,a=n.keys;if(i.length===0)return ue([],r);var s=new j(Pr(i,r,a?function(p){return Fo(a,p)}:le));return o?s.pipe(Ze(o)):s}function Pr(e,t,r){return r===void 0&&(r=le),function(o){Uo(t,function(){for(var n=e.length,i=new Array(n),a=n,s=n,p=function(l){Uo(t,function(){var f=ue(e[l],t),u=!1;f.subscribe(T(o,function(d){i[l]=d,u||(u=!0,s--),s||o.next(r(i.slice()))},function(){--a||o.complete()}))},o)},c=0;c<n;c++)p(c)},o)}}function Uo(e,t,r){e?we(r,e,t):t()}function Wo(e,t,r,o,n,i,a,s){var p=[],c=0,l=0,f=!1,u=function(){f&&!p.length&&!c&&t.complete()},d=function(L){return c<o?y(L):p.push(L)},y=function(L){i&&t.next(L),c++;var X=!1;U(r(L,l++)).subscribe(T(t,function(ee){n==null||n(ee),i?d(ee):t.next(ee)},function(){X=!0},void 0,function(){if(X)try{c--;for(var ee=function(){var J=p.shift();a?we(t,a,function(){return y(J)}):y(J)};p.length&&c<o;)ee();u()}catch(J){t.error(J)}}))};return e.subscribe(T(t,d,function(){f=!0,u()})),function(){s==null||s()}}function ne(e,t,r){return r===void 0&&(r=1/0),H(t)?ne(function(o,n){return m(function(i,a){return t(o,i,n,a)})(U(e(o,n)))},r):(typeof t=="number"&&(r=t),E(function(o,n){return Wo(o,n,e,r)}))}function Et(e){return e===void 0&&(e=1/0),ne(le,e)}function Vo(){return Et(1)}function We(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return Vo()(ue(e,ke(e)))}function C(e){return new j(function(t){U(e()).subscribe(t)})}var ua=["addListener","removeListener"],da=["addEventListener","removeEventListener"],ha=["on","off"];function h(e,t,r,o){if(H(r)&&(o=r,r=void 0),o)return h(e,t,r).pipe(Ze(o));var n=N(ga(e)?da.map(function(s){return function(p){return e[s](t,p,r)}}):ba(e)?ua.map(Do(e,t)):va(e)?ha.map(Do(e,t)):[],2),i=n[0],a=n[1];if(!i&&xt(e))return ne(function(s){return h(s,t,r)})(U(e));if(!i)throw new TypeError("Invalid event target");return new j(function(s){var p=function(){for(var c=[],l=0;l<arguments.length;l++)c[l]=arguments[l];return s.next(1<c.length?c:c[0])};return i(p),function(){return a(p)}})}function Do(e,t){return function(r){return function(o){return e[r](t,o)}}}function ba(e){return H(e.addListener)&&H(e.removeListener)}function va(e){return H(e.on)&&H(e.off)}function ga(e){return H(e.addEventListener)&&H(e.removeEventListener)}function ar(e,t,r){return r?ar(e,t).pipe(Ze(r)):new j(function(o){var n=function(){for(var a=[],s=0;s<arguments.length;s++)a[s]=arguments[s];return o.next(a.length===1?a[0]:a)},i=e(n);return H(t)?function(){return t(n,i)}:void 0})}function Le(e,t,r){e===void 0&&(e=0),r===void 0&&(r=Cr);var o=-1;return t!=null&&(Yt(t)?r=t:o=t),new j(function(n){var i=Io(e)?+e-r.now():e;i<0&&(i=0);var a=0;return r.schedule(function(){n.closed||(n.next(a++),0<=o?this.schedule(void 0,o):n.complete())},i)})}function O(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var r=ke(e),o=Bt(e,1/0),n=e;return n.length?n.length===1?U(n[0]):Et(o)(ue(n,r)):S}var Ye=new j(be);var ya=Array.isArray;function wt(e){return e.length===1&&ya(e[0])?e[0]:e}function b(e,t){return E(function(r,o){var n=0;r.subscribe(T(o,function(i){return e.call(t,i,n++)&&o.next(i)}))})}function st(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var r=Xe(e),o=wt(e);return o.length?new j(function(n){var i=o.map(function(){return[]}),a=o.map(function(){return!1});n.add(function(){i=a=null});for(var s=function(c){U(o[c]).subscribe(T(n,function(l){if(i[c].push(l),i.every(function(u){return u.length})){var f=i.map(function(u){return u.shift()});n.next(r?r.apply(void 0,q([],N(f))):f),i.some(function(u,d){return!u.length&&a[d]})&&n.complete()}},function(){a[c]=!0,!i[c].length&&n.complete()}))},p=0;!n.closed&&p<o.length;p++)s(p);return function(){i=a=null}}):S}function No(e){return E(function(t,r){var o=!1,n=null,i=null,a=!1,s=function(){if(i==null||i.unsubscribe(),i=null,o){o=!1;var c=n;n=null,r.next(c)}a&&r.complete()},p=function(){i=null,a&&r.complete()};t.subscribe(T(r,function(c){o=!0,n=c,i||U(e(c)).subscribe(i=T(r,s,p))},function(){a=!0,(!o||!i||i.closed)&&r.complete()}))})}function Me(e,t){return t===void 0&&(t=se),No(function(){return Le(e,t)})}function Be(e,t){return t===void 0&&(t=null),t=t!=null?t:e,E(function(r,o){var n=[],i=0;r.subscribe(T(o,function(a){var s,p,c,l,f=null;i++%t===0&&n.push([]);try{for(var u=he(n),d=u.next();!d.done;d=u.next()){var y=d.value;y.push(a),e<=y.length&&(f=f!=null?f:[],f.push(y))}}catch(ee){s={error:ee}}finally{try{d&&!d.done&&(p=u.return)&&p.call(u)}finally{if(s)throw s.error}}if(f)try{for(var L=he(f),X=L.next();!X.done;X=L.next()){var y=X.value;Qe(n,y),o.next(y)}}catch(ee){c={error:ee}}finally{try{X&&!X.done&&(l=L.return)&&l.call(L)}finally{if(c)throw c.error}}},function(){var a,s;try{for(var p=he(n),c=p.next();!c.done;c=p.next()){var l=c.value;o.next(l)}}catch(f){a={error:f}}finally{try{c&&!c.done&&(s=p.return)&&s.call(p)}finally{if(a)throw a.error}}o.complete()},void 0,function(){n=null}))})}function de(e){return E(function(t,r){var o=null,n=!1,i;o=t.subscribe(T(r,void 0,void 0,function(a){i=U(e(a,de(e)(t))),o?(o.unsubscribe(),o=null,i.subscribe(r)):n=!0})),n&&(o.unsubscribe(),o=null,i.subscribe(r))})}function zo(e,t,r,o,n){return function(i,a){var s=r,p=t,c=0;i.subscribe(T(a,function(l){var f=c++;p=s?e(p,l,f):(s=!0,l),o&&a.next(p)},n&&function(){s&&a.next(p),a.complete()}))}}function Rr(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var r=Xe(e);return r?xo(Rr.apply(void 0,q([],N(e))),Ze(r)):E(function(o,n){Pr(q([o],N(wt(e))))(n)})}function He(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return Rr.apply(void 0,q([],N(e)))}function Ht(e){return E(function(t,r){var o=!1,n=null,i=null,a=function(){if(i==null||i.unsubscribe(),i=null,o){o=!1;var s=n;n=null,r.next(s)}};t.subscribe(T(r,function(s){i==null||i.unsubscribe(),o=!0,n=s,i=T(r,a,be),U(e(s)).subscribe(i)},function(){a(),r.complete()},void 0,function(){n=i=null}))})}function _e(e,t){return t===void 0&&(t=se),E(function(r,o){var n=null,i=null,a=null,s=function(){if(n){n.unsubscribe(),n=null;var c=i;i=null,o.next(c)}};function p(){var c=a+e,l=t.now();if(l<c){n=this.schedule(void 0,c-l),o.add(n);return}s()}r.subscribe(T(o,function(c){i=c,a=t.now(),n||(n=t.schedule(p,e),o.add(n))},function(){s(),o.complete()},void 0,function(){i=n=null}))})}function Ve(e){return E(function(t,r){var o=!1;t.subscribe(T(r,function(n){o=!0,r.next(n)},function(){o||r.next(e),r.complete()}))})}function Te(e){return e<=0?function(){return S}:E(function(t,r){var o=0;t.subscribe(T(r,function(n){++o<=e&&(r.next(n),e<=o&&r.complete())}))})}function Z(){return E(function(e,t){e.subscribe(T(t,be))})}function qo(e){return m(function(){return e})}function Ir(e,t){return t?function(r){return We(t.pipe(Te(1),Z()),r.pipe(Ir(e)))}:ne(function(r,o){return U(e(r,o)).pipe(Te(1),qo(r))})}function Ge(e,t){t===void 0&&(t=se);var r=Le(e,t);return Ir(function(){return r})}function K(e,t){return t===void 0&&(t=le),e=e!=null?e:xa,E(function(r,o){var n,i=!0;r.subscribe(T(o,function(a){var s=t(a);(i||!e(n,s))&&(i=!1,n=s,o.next(a))}))})}function xa(e,t){return e===t}function te(e,t){return K(function(r,o){return t?t(r[e],o[e]):r[e]===o[e]})}function Qo(e){return e===void 0&&(e=Ea),E(function(t,r){var o=!1;t.subscribe(T(r,function(n){o=!0,r.next(n)},function(){return o?r.complete():r.error(e())}))})}function Ea(){return new ir}function ie(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return function(r){return We(r,I.apply(void 0,q([],N(e))))}}function _(e){return E(function(t,r){try{t.subscribe(r)}finally{r.add(e)}})}function Ae(e,t){var r=arguments.length>=2;return function(o){return o.pipe(e?b(function(n,i){return e(n,i,o)}):le,Te(1),r?Ve(t):Qo(function(){return new ir}))}}function jr(e){return e<=0?function(){return S}:E(function(t,r){var o=[];t.subscribe(T(r,function(n){o.push(n),e<o.length&&o.shift()},function(){var n,i;try{for(var a=he(o),s=a.next();!s.done;s=a.next()){var p=s.value;r.next(p)}}catch(c){n={error:c}}finally{try{s&&!s.done&&(i=a.return)&&i.call(a)}finally{if(n)throw n.error}}r.complete()},void 0,function(){o=null}))})}function Ko(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var r=ke(e),o=Bt(e,1/0);return e=wt(e),E(function(n,i){Et(o)(ue(q([n],N(e)),r)).subscribe(i)})}function Re(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return Ko.apply(void 0,q([],N(e)))}function ct(e){var t,r=1/0,o;return e!=null&&(typeof e=="object"?(t=e.count,r=t===void 0?1/0:t,o=e.delay):r=e),r<=0?function(){return S}:E(function(n,i){var a=0,s,p=function(){if(s==null||s.unsubscribe(),s=null,o!=null){var l=typeof o=="number"?Le(o):U(o(a)),f=T(i,function(){f.unsubscribe(),c()});l.subscribe(f)}else c()},c=function(){var l=!1;s=n.subscribe(T(i,void 0,function(){++a<r?s?p():l=!0:i.complete()})),l&&p()};c()})}function Fr(e,t){return E(zo(e,t,arguments.length>=2,!0))}function pe(e){e===void 0&&(e={});var t=e.connector,r=t===void 0?function(){return new g}:t,o=e.resetOnError,n=o===void 0?!0:o,i=e.resetOnComplete,a=i===void 0?!0:i,s=e.resetOnRefCountZero,p=s===void 0?!0:s;return function(c){var l,f,u,d=0,y=!1,L=!1,X=function(){f==null||f.unsubscribe(),f=void 0},ee=function(){X(),l=u=void 0,y=L=!1},J=function(){var k=l;ee(),k==null||k.unsubscribe()};return E(function(k,ft){d++,!L&&!y&&X();var qe=u=u!=null?u:r();ft.add(function(){d--,d===0&&!L&&!y&&(f=Ur(J,p))}),qe.subscribe(ft),!l&&d>0&&(l=new at({next:function(Fe){return qe.next(Fe)},error:function(Fe){L=!0,X(),f=Ur(ee,n,Fe),qe.error(Fe)},complete:function(){y=!0,X(),f=Ur(ee,a),qe.complete()}}),U(k).subscribe(l))})(c)}}function Ur(e,t){for(var r=[],o=2;o<arguments.length;o++)r[o-2]=arguments[o];if(t===!0){e();return}if(t!==!1){var n=new at({next:function(){n.unsubscribe(),e()}});return U(t.apply(void 0,q([],N(r)))).subscribe(n)}}function G(e,t,r){var o,n,i,a,s=!1;return e&&typeof e=="object"?(o=e.bufferSize,a=o===void 0?1/0:o,n=e.windowTime,t=n===void 0?1/0:n,i=e.refCount,s=i===void 0?!1:i,r=e.scheduler):a=e!=null?e:1/0,pe({connector:function(){return new Ct(a,t,r)},resetOnError:!0,resetOnComplete:!1,resetOnRefCountZero:s})}function Ce(e){return b(function(t,r){return e<=r})}function Wr(e){return E(function(t,r){var o=!1,n=T(r,function(){n==null||n.unsubscribe(),o=!0},be);U(e).subscribe(n),t.subscribe(T(r,function(i){return o&&r.next(i)}))})}function Q(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var r=ke(e);return E(function(o,n){(r?We(e,o,r):We(e,o)).subscribe(n)})}function v(e,t){return E(function(r,o){var n=null,i=0,a=!1,s=function(){return a&&!n&&o.complete()};r.subscribe(T(o,function(p){n==null||n.unsubscribe();var c=0,l=i++;U(e(p,l)).subscribe(n=T(o,function(f){return o.next(t?t(p,f,l,c++):f)},function(){n=null,s()}))},function(){a=!0,s()}))})}function W(e){return E(function(t,r){U(e).subscribe(T(r,function(){return r.complete()},be)),!r.closed&&t.subscribe(r)})}function Vr(e,t){return t===void 0&&(t=!1),E(function(r,o){var n=0;r.subscribe(T(o,function(i){var a=e(i,n++);(a||t)&&o.next(i),!a&&o.complete()}))})}function w(e,t,r){var o=H(e)||t||r?{next:e,error:t,complete:r}:e;return o?E(function(n,i){var a;(a=o.subscribe)===null||a===void 0||a.call(o);var s=!0;n.subscribe(T(i,function(p){var c;(c=o.next)===null||c===void 0||c.call(o,p),i.next(p)},function(){var p;s=!1,(p=o.complete)===null||p===void 0||p.call(o),i.complete()},function(p){var c;s=!1,(c=o.error)===null||c===void 0||c.call(o,p),i.error(p)},function(){var p,c;s&&((p=o.unsubscribe)===null||p===void 0||p.call(o)),(c=o.finalize)===null||c===void 0||c.call(o)}))}):le}function Yo(e,t){return E(function(r,o){var n=t!=null?t:{},i=n.leading,a=i===void 0?!0:i,s=n.trailing,p=s===void 0?!1:s,c=!1,l=null,f=null,u=!1,d=function(){f==null||f.unsubscribe(),f=null,p&&(X(),u&&o.complete())},y=function(){f=null,u&&o.complete()},L=function(ee){return f=U(e(ee)).subscribe(T(o,d,y))},X=function(){if(c){c=!1;var ee=l;l=null,o.next(ee),!u&&L(ee)}};r.subscribe(T(o,function(ee){c=!0,l=ee,!(f&&!f.closed)&&(a?X():L(ee))},function(){u=!0,!(p&&c&&f&&!f.closed)&&o.complete()}))})}function pt(e,t,r){t===void 0&&(t=se);var o=Le(e,t);return Yo(function(){return o},r)}function re(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var r=Xe(e);return E(function(o,n){for(var i=e.length,a=new Array(i),s=e.map(function(){return!1}),p=!1,c=function(f){U(e[f]).subscribe(T(n,function(u){a[f]=u,!p&&!s[f]&&(s[f]=!0,(p=s.every(le))&&(s=null))},be))},l=0;l<i;l++)c(l);o.subscribe(T(n,function(f){if(p){var u=q([f],N(a));n.next(r?r.apply(void 0,q([],N(u))):u)}}))})}function Bo(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return E(function(r,o){st.apply(void 0,q([r],N(e))).subscribe(o)})}function Dr(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return Bo.apply(void 0,q([],N(e)))}function Go(){let e=new Ct(1);return h(document,"DOMContentLoaded",{once:!0}).subscribe(()=>e.next(document)),e}function P(e,t=document){return Array.from(t.querySelectorAll(e))}function R(e,t=document){let r=fe(e,t);if(typeof r=="undefined")throw new ReferenceError(`Missing element: expected "${e}" to be present`);return r}function fe(e,t=document){return t.querySelector(e)||void 0}function Ie(){var e,t,r,o;return(o=(r=(t=(e=document.activeElement)==null?void 0:e.shadowRoot)==null?void 0:t.activeElement)!=null?r:document.activeElement)!=null?o:void 0}var wa=O(h(document.body,"focusin"),h(document.body,"focusout")).pipe(_e(1),Q(void 0),m(()=>Ie()||document.body),G(1));function et(e){return wa.pipe(m(t=>e.contains(t)),K())}function $t(e,t){return C(()=>O(h(e,"mouseenter").pipe(m(()=>!0)),h(e,"mouseleave").pipe(m(()=>!1))).pipe(t?Ht(r=>Le(+!r*t)):le,Q(e.matches(":hover"))))}function Jo(e,t){if(typeof t=="string"||typeof t=="number")e.innerHTML+=t.toString();else if(t instanceof Node)e.appendChild(t);else if(Array.isArray(t))for(let r of t)Jo(e,r)}function x(e,t,...r){let o=document.createElement(e);if(t)for(let n of Object.keys(t))typeof t[n]!="undefined"&&(typeof t[n]!="boolean"?o.setAttribute(n,t[n]):o.setAttribute(n,""));for(let n of r)Jo(o,n);return o}function sr(e){if(e>999){let t=+((e-950)%1e3>99);return`${((e+1e-6)/1e3).toFixed(t)}k`}else return e.toString()}function Tt(e){let t=x("script",{src:e});return C(()=>(document.head.appendChild(t),O(h(t,"load"),h(t,"error").pipe(v(()=>$r(()=>new ReferenceError(`Invalid script: ${e}`))))).pipe(m(()=>{}),_(()=>document.head.removeChild(t)),Te(1))))}var Xo=new g,Ta=C(()=>typeof ResizeObserver=="undefined"?Tt("https://unpkg.com/resize-observer-polyfill"):I(void 0)).pipe(m(()=>new ResizeObserver(e=>e.forEach(t=>Xo.next(t)))),v(e=>O(Ye,I(e)).pipe(_(()=>e.disconnect()))),G(1));function ce(e){return{width:e.offsetWidth,height:e.offsetHeight}}function ge(e){let t=e;for(;t.clientWidth===0&&t.parentElement;)t=t.parentElement;return Ta.pipe(w(r=>r.observe(t)),v(r=>Xo.pipe(b(o=>o.target===t),_(()=>r.unobserve(t)))),m(()=>ce(e)),Q(ce(e)))}function St(e){return{width:e.scrollWidth,height:e.scrollHeight}}function cr(e){let t=e.parentElement;for(;t&&(e.scrollWidth<=t.scrollWidth&&e.scrollHeight<=t.scrollHeight);)t=(e=t).parentElement;return t?e:void 0}function Zo(e){let t=[],r=e.parentElement;for(;r;)(e.clientWidth>r.clientWidth||e.clientHeight>r.clientHeight)&&t.push(r),r=(e=r).parentElement;return t.length===0&&t.push(document.documentElement),t}function De(e){return{x:e.offsetLeft,y:e.offsetTop}}function en(e){let t=e.getBoundingClientRect();return{x:t.x+window.scrollX,y:t.y+window.scrollY}}function tn(e){return O(h(window,"load"),h(window,"resize")).pipe(Me(0,me),m(()=>De(e)),Q(De(e)))}function pr(e){return{x:e.scrollLeft,y:e.scrollTop}}function Ne(e){return O(h(e,"scroll"),h(window,"scroll"),h(window,"resize")).pipe(Me(0,me),m(()=>pr(e)),Q(pr(e)))}var rn=new g,Sa=C(()=>I(new IntersectionObserver(e=>{for(let t of e)rn.next(t)},{threshold:0}))).pipe(v(e=>O(Ye,I(e)).pipe(_(()=>e.disconnect()))),G(1));function tt(e){return Sa.pipe(w(t=>t.observe(e)),v(t=>rn.pipe(b(({target:r})=>r===e),_(()=>t.unobserve(e)),m(({isIntersecting:r})=>r))))}function on(e,t=16){return Ne(e).pipe(m(({y:r})=>{let o=ce(e),n=St(e);return r>=n.height-o.height-t}),K())}var lr={drawer:R("[data-md-toggle=drawer]"),search:R("[data-md-toggle=search]")};function nn(e){return lr[e].checked}function Je(e,t){lr[e].checked!==t&&lr[e].click()}function ze(e){let t=lr[e];return h(t,"change").pipe(m(()=>t.checked),Q(t.checked))}function Oa(e,t){switch(e.constructor){case HTMLInputElement:return e.type==="radio"?/^Arrow/.test(t):!0;case HTMLSelectElement:case HTMLTextAreaElement:return!0;default:return e.isContentEditable}}function La(){return O(h(window,"compositionstart").pipe(m(()=>!0)),h(window,"compositionend").pipe(m(()=>!1))).pipe(Q(!1))}function an(){let e=h(window,"keydown").pipe(b(t=>!(t.metaKey||t.ctrlKey)),m(t=>({mode:nn("search")?"search":"global",type:t.key,claim(){t.preventDefault(),t.stopPropagation()}})),b(({mode:t,type:r})=>{if(t==="global"){let o=Ie();if(typeof o!="undefined")return!Oa(o,r)}return!0}),pe());return La().pipe(v(t=>t?S:e))}function ye(){return new URL(location.href)}function lt(e,t=!1){if(B("navigation.instant")&&!t){let r=x("a",{href:e.href});document.body.appendChild(r),r.click(),r.remove()}else location.href=e.href}function sn(){return new g}function cn(){return location.hash.slice(1)}function pn(e){let t=x("a",{href:e});t.addEventListener("click",r=>r.stopPropagation()),t.click()}function Ma(e){return O(h(window,"hashchange"),e).pipe(m(cn),Q(cn()),b(t=>t.length>0),G(1))}function ln(e){return Ma(e).pipe(m(t=>fe(`[id="${t}"]`)),b(t=>typeof t!="undefined"))}function Pt(e){let t=matchMedia(e);return ar(r=>t.addListener(()=>r(t.matches))).pipe(Q(t.matches))}function mn(){let e=matchMedia("print");return O(h(window,"beforeprint").pipe(m(()=>!0)),h(window,"afterprint").pipe(m(()=>!1))).pipe(Q(e.matches))}function Nr(e,t){return e.pipe(v(r=>r?t():S))}function zr(e,t){return new j(r=>{let o=new XMLHttpRequest;return o.open("GET",`${e}`),o.responseType="blob",o.addEventListener("load",()=>{o.status>=200&&o.status<300?(r.next(o.response),r.complete()):r.error(new Error(o.statusText))}),o.addEventListener("error",()=>{r.error(new Error("Network error"))}),o.addEventListener("abort",()=>{r.complete()}),typeof(t==null?void 0:t.progress$)!="undefined"&&(o.addEventListener("progress",n=>{var i;if(n.lengthComputable)t.progress$.next(n.loaded/n.total*100);else{let a=(i=o.getResponseHeader("Content-Length"))!=null?i:0;t.progress$.next(n.loaded/+a*100)}}),t.progress$.next(5)),o.send(),()=>o.abort()})}function je(e,t){return zr(e,t).pipe(v(r=>r.text()),m(r=>JSON.parse(r)),G(1))}function fn(e,t){let r=new DOMParser;return zr(e,t).pipe(v(o=>o.text()),m(o=>r.parseFromString(o,"text/html")),G(1))}function un(e,t){let r=new DOMParser;return zr(e,t).pipe(v(o=>o.text()),m(o=>r.parseFromString(o,"text/xml")),G(1))}function dn(){return{x:Math.max(0,scrollX),y:Math.max(0,scrollY)}}function hn(){return O(h(window,"scroll",{passive:!0}),h(window,"resize",{passive:!0})).pipe(m(dn),Q(dn()))}function bn(){return{width:innerWidth,height:innerHeight}}function vn(){return h(window,"resize",{passive:!0}).pipe(m(bn),Q(bn()))}function gn(){return z([hn(),vn()]).pipe(m(([e,t])=>({offset:e,size:t})),G(1))}function mr(e,{viewport$:t,header$:r}){let o=t.pipe(te("size")),n=z([o,r]).pipe(m(()=>De(e)));return z([r,t,n]).pipe(m(([{height:i},{offset:a,size:s},{x:p,y:c}])=>({offset:{x:a.x-p,y:a.y-c+i},size:s})))}function _a(e){return h(e,"message",t=>t.data)}function Aa(e){let t=new g;return t.subscribe(r=>e.postMessage(r)),t}function yn(e,t=new Worker(e)){let r=_a(t),o=Aa(t),n=new g;n.subscribe(o);let i=o.pipe(Z(),ie(!0));return n.pipe(Z(),Re(r.pipe(W(i))),pe())}var Ca=R("#__config"),Ot=JSON.parse(Ca.textContent);Ot.base=`${new URL(Ot.base,ye())}`;function xe(){return Ot}function B(e){return Ot.features.includes(e)}function Ee(e,t){return typeof t!="undefined"?Ot.translations[e].replace("#",t.toString()):Ot.translations[e]}function Se(e,t=document){return R(`[data-md-component=${e}]`,t)}function ae(e,t=document){return P(`[data-md-component=${e}]`,t)}function ka(e){let t=R(".md-typeset > :first-child",e);return h(t,"click",{once:!0}).pipe(m(()=>R(".md-typeset",e)),m(r=>({hash:__md_hash(r.innerHTML)})))}function xn(e){if(!B("announce.dismiss")||!e.childElementCount)return S;if(!e.hidden){let t=R(".md-typeset",e);__md_hash(t.innerHTML)===__md_get("__announce")&&(e.hidden=!0)}return C(()=>{let t=new g;return t.subscribe(({hash:r})=>{e.hidden=!0,__md_set("__announce",r)}),ka(e).pipe(w(r=>t.next(r)),_(()=>t.complete()),m(r=>$({ref:e},r)))})}function Ha(e,{target$:t}){return t.pipe(m(r=>({hidden:r!==e})))}function En(e,t){let r=new g;return r.subscribe(({hidden:o})=>{e.hidden=o}),Ha(e,t).pipe(w(o=>r.next(o)),_(()=>r.complete()),m(o=>$({ref:e},o)))}function Rt(e,t){return t==="inline"?x("div",{class:"md-tooltip md-tooltip--inline",id:e,role:"tooltip"},x("div",{class:"md-tooltip__inner md-typeset"})):x("div",{class:"md-tooltip",id:e,role:"tooltip"},x("div",{class:"md-tooltip__inner md-typeset"}))}function wn(...e){return x("div",{class:"md-tooltip2",role:"tooltip"},x("div",{class:"md-tooltip2__inner md-typeset"},e))}function Tn(e,t){if(t=t?`${t}_annotation_${e}`:void 0,t){let r=t?`#${t}`:void 0;return x("aside",{class:"md-annotation",tabIndex:0},Rt(t),x("a",{href:r,class:"md-annotation__index",tabIndex:-1},x("span",{"data-md-annotation-id":e})))}else return x("aside",{class:"md-annotation",tabIndex:0},Rt(t),x("span",{class:"md-annotation__index",tabIndex:-1},x("span",{"data-md-annotation-id":e})))}function Sn(e){return x("button",{class:"md-clipboard md-icon",title:Ee("clipboard.copy"),"data-clipboard-target":`#${e} > code`})}var Ln=Mt(qr());function Qr(e,t){let r=t&2,o=t&1,n=Object.keys(e.terms).filter(p=>!e.terms[p]).reduce((p,c)=>[...p,x("del",null,(0,Ln.default)(c))," "],[]).slice(0,-1),i=xe(),a=new URL(e.location,i.base);B("search.highlight")&&a.searchParams.set("h",Object.entries(e.terms).filter(([,p])=>p).reduce((p,[c])=>`${p} ${c}`.trim(),""));let{tags:s}=xe();return x("a",{href:`${a}`,class:"md-search-result__link",tabIndex:-1},x("article",{class:"md-search-result__article md-typeset","data-md-score":e.score.toFixed(2)},r>0&&x("div",{class:"md-search-result__icon md-icon"}),r>0&&x("h1",null,e.title),r<=0&&x("h2",null,e.title),o>0&&e.text.length>0&&e.text,e.tags&&x("nav",{class:"md-tags"},e.tags.map(p=>{let c=s?p in s?`md-tag-icon md-tag--${s[p]}`:"md-tag-icon":"";return x("span",{class:`md-tag ${c}`},p)})),o>0&&n.length>0&&x("p",{class:"md-search-result__terms"},Ee("search.result.term.missing"),": ",...n)))}function Mn(e){let t=e[0].score,r=[...e],o=xe(),n=r.findIndex(l=>!`${new URL(l.location,o.base)}`.includes("#")),[i]=r.splice(n,1),a=r.findIndex(l=>l.score<t);a===-1&&(a=r.length);let s=r.slice(0,a),p=r.slice(a),c=[Qr(i,2|+(!n&&a===0)),...s.map(l=>Qr(l,1)),...p.length?[x("details",{class:"md-search-result__more"},x("summary",{tabIndex:-1},x("div",null,p.length>0&&p.length===1?Ee("search.result.more.one"):Ee("search.result.more.other",p.length))),...p.map(l=>Qr(l,1)))]:[]];return x("li",{class:"md-search-result__item"},c)}function _n(e){return x("ul",{class:"md-source__facts"},Object.entries(e).map(([t,r])=>x("li",{class:`md-source__fact md-source__fact--${t}`},typeof r=="number"?sr(r):r)))}function Kr(e){let t=`tabbed-control tabbed-control--${e}`;return x("div",{class:t,hidden:!0},x("button",{class:"tabbed-button",tabIndex:-1,"aria-hidden":"true"}))}function An(e){return x("div",{class:"md-typeset__scrollwrap"},x("div",{class:"md-typeset__table"},e))}function Ra(e){var o;let t=xe(),r=new URL(`../${e.version}/`,t.base);return x("li",{class:"md-version__item"},x("a",{href:`${r}`,class:"md-version__link"},e.title,((o=t.version)==null?void 0:o.alias)&&e.aliases.length>0&&x("span",{class:"md-version__alias"},e.aliases[0])))}function Cn(e,t){var o;let r=xe();return e=e.filter(n=>{var i;return!((i=n.properties)!=null&&i.hidden)}),x("div",{class:"md-version"},x("button",{class:"md-version__current","aria-label":Ee("select.version")},t.title,((o=r.version)==null?void 0:o.alias)&&t.aliases.length>0&&x("span",{class:"md-version__alias"},t.aliases[0])),x("ul",{class:"md-version__list"},e.map(Ra)))}var Ia=0;function ja(e){let t=z([et(e),$t(e)]).pipe(m(([o,n])=>o||n),K()),r=C(()=>Zo(e)).pipe(ne(Ne),pt(1),He(t),m(()=>en(e)));return t.pipe(Ae(o=>o),v(()=>z([t,r])),m(([o,n])=>({active:o,offset:n})),pe())}function Fa(e,t){let{content$:r,viewport$:o}=t,n=`__tooltip2_${Ia++}`;return C(()=>{let i=new g,a=new _r(!1);i.pipe(Z(),ie(!1)).subscribe(a);let s=a.pipe(Ht(c=>Le(+!c*250,kr)),K(),v(c=>c?r:S),w(c=>c.id=n),pe());z([i.pipe(m(({active:c})=>c)),s.pipe(v(c=>$t(c,250)),Q(!1))]).pipe(m(c=>c.some(l=>l))).subscribe(a);let p=a.pipe(b(c=>c),re(s,o),m(([c,l,{size:f}])=>{let u=e.getBoundingClientRect(),d=u.width/2;if(l.role==="tooltip")return{x:d,y:8+u.height};if(u.y>=f.height/2){let{height:y}=ce(l);return{x:d,y:-16-y}}else return{x:d,y:16+u.height}}));return z([s,i,p]).subscribe(([c,{offset:l},f])=>{c.style.setProperty("--md-tooltip-host-x",`${l.x}px`),c.style.setProperty("--md-tooltip-host-y",`${l.y}px`),c.style.setProperty("--md-tooltip-x",`${f.x}px`),c.style.setProperty("--md-tooltip-y",`${f.y}px`),c.classList.toggle("md-tooltip2--top",f.y<0),c.classList.toggle("md-tooltip2--bottom",f.y>=0)}),a.pipe(b(c=>c),re(s,(c,l)=>l),b(c=>c.role==="tooltip")).subscribe(c=>{let l=ce(R(":scope > *",c));c.style.setProperty("--md-tooltip-width",`${l.width}px`),c.style.setProperty("--md-tooltip-tail","0px")}),a.pipe(K(),ve(me),re(s)).subscribe(([c,l])=>{l.classList.toggle("md-tooltip2--active",c)}),z([a.pipe(b(c=>c)),s]).subscribe(([c,l])=>{l.role==="dialog"?(e.setAttribute("aria-controls",n),e.setAttribute("aria-haspopup","dialog")):e.setAttribute("aria-describedby",n)}),a.pipe(b(c=>!c)).subscribe(()=>{e.removeAttribute("aria-controls"),e.removeAttribute("aria-describedby"),e.removeAttribute("aria-haspopup")}),ja(e).pipe(w(c=>i.next(c)),_(()=>i.complete()),m(c=>$({ref:e},c)))})}function mt(e,{viewport$:t},r=document.body){return Fa(e,{content$:new j(o=>{let n=e.title,i=wn(n);return o.next(i),e.removeAttribute("title"),r.append(i),()=>{i.remove(),e.setAttribute("title",n)}}),viewport$:t})}function Ua(e,t){let r=C(()=>z([tn(e),Ne(t)])).pipe(m(([{x:o,y:n},i])=>{let{width:a,height:s}=ce(e);return{x:o-i.x+a/2,y:n-i.y+s/2}}));return et(e).pipe(v(o=>r.pipe(m(n=>({active:o,offset:n})),Te(+!o||1/0))))}function kn(e,t,{target$:r}){let[o,n]=Array.from(e.children);return C(()=>{let i=new g,a=i.pipe(Z(),ie(!0));return i.subscribe({next({offset:s}){e.style.setProperty("--md-tooltip-x",`${s.x}px`),e.style.setProperty("--md-tooltip-y",`${s.y}px`)},complete(){e.style.removeProperty("--md-tooltip-x"),e.style.removeProperty("--md-tooltip-y")}}),tt(e).pipe(W(a)).subscribe(s=>{e.toggleAttribute("data-md-visible",s)}),O(i.pipe(b(({active:s})=>s)),i.pipe(_e(250),b(({active:s})=>!s))).subscribe({next({active:s}){s?e.prepend(o):o.remove()},complete(){e.prepend(o)}}),i.pipe(Me(16,me)).subscribe(({active:s})=>{o.classList.toggle("md-tooltip--active",s)}),i.pipe(pt(125,me),b(()=>!!e.offsetParent),m(()=>e.offsetParent.getBoundingClientRect()),m(({x:s})=>s)).subscribe({next(s){s?e.style.setProperty("--md-tooltip-0",`${-s}px`):e.style.removeProperty("--md-tooltip-0")},complete(){e.style.removeProperty("--md-tooltip-0")}}),h(n,"click").pipe(W(a),b(s=>!(s.metaKey||s.ctrlKey))).subscribe(s=>{s.stopPropagation(),s.preventDefault()}),h(n,"mousedown").pipe(W(a),re(i)).subscribe(([s,{active:p}])=>{var c;if(s.button!==0||s.metaKey||s.ctrlKey)s.preventDefault();else if(p){s.preventDefault();let l=e.parentElement.closest(".md-annotation");l instanceof HTMLElement?l.focus():(c=Ie())==null||c.blur()}}),r.pipe(W(a),b(s=>s===o),Ge(125)).subscribe(()=>e.focus()),Ua(e,t).pipe(w(s=>i.next(s)),_(()=>i.complete()),m(s=>$({ref:e},s)))})}function Wa(e){return e.tagName==="CODE"?P(".c, .c1, .cm",e):[e]}function Va(e){let t=[];for(let r of Wa(e)){let o=[],n=document.createNodeIterator(r,NodeFilter.SHOW_TEXT);for(let i=n.nextNode();i;i=n.nextNode())o.push(i);for(let i of o){let a;for(;a=/(\(\d+\))(!)?/.exec(i.textContent);){let[,s,p]=a;if(typeof p=="undefined"){let c=i.splitText(a.index);i=c.splitText(s.length),t.push(c)}else{i.textContent=s,t.push(i);break}}}}return t}function Hn(e,t){t.append(...Array.from(e.childNodes))}function fr(e,t,{target$:r,print$:o}){let n=t.closest("[id]"),i=n==null?void 0:n.id,a=new Map;for(let s of Va(t)){let[,p]=s.textContent.match(/\((\d+)\)/);fe(`:scope > li:nth-child(${p})`,e)&&(a.set(p,Tn(p,i)),s.replaceWith(a.get(p)))}return a.size===0?S:C(()=>{let s=new g,p=s.pipe(Z(),ie(!0)),c=[];for(let[l,f]of a)c.push([R(".md-typeset",f),R(`:scope > li:nth-child(${l})`,e)]);return o.pipe(W(p)).subscribe(l=>{e.hidden=!l,e.classList.toggle("md-annotation-list",l);for(let[f,u]of c)l?Hn(f,u):Hn(u,f)}),O(...[...a].map(([,l])=>kn(l,t,{target$:r}))).pipe(_(()=>s.complete()),pe())})}function $n(e){if(e.nextElementSibling){let t=e.nextElementSibling;if(t.tagName==="OL")return t;if(t.tagName==="P"&&!t.children.length)return $n(t)}}function Pn(e,t){return C(()=>{let r=$n(e);return typeof r!="undefined"?fr(r,e,t):S})}var Rn=Mt(Br());var Da=0;function In(e){if(e.nextElementSibling){let t=e.nextElementSibling;if(t.tagName==="OL")return t;if(t.tagName==="P"&&!t.children.length)return In(t)}}function Na(e){return ge(e).pipe(m(({width:t})=>({scrollable:St(e).width>t})),te("scrollable"))}function jn(e,t){let{matches:r}=matchMedia("(hover)"),o=C(()=>{let n=new g,i=n.pipe(jr(1));n.subscribe(({scrollable:c})=>{c&&r?e.setAttribute("tabindex","0"):e.removeAttribute("tabindex")});let a=[];if(Rn.default.isSupported()&&(e.closest(".copy")||B("content.code.copy")&&!e.closest(".no-copy"))){let c=e.closest("pre");c.id=`__code_${Da++}`;let l=Sn(c.id);c.insertBefore(l,e),B("content.tooltips")&&a.push(mt(l,{viewport$}))}let s=e.closest(".highlight");if(s instanceof HTMLElement){let c=In(s);if(typeof c!="undefined"&&(s.classList.contains("annotate")||B("content.code.annotate"))){let l=fr(c,e,t);a.push(ge(s).pipe(W(i),m(({width:f,height:u})=>f&&u),K(),v(f=>f?l:S)))}}return P(":scope > span[id]",e).length&&e.classList.add("md-code__content"),Na(e).pipe(w(c=>n.next(c)),_(()=>n.complete()),m(c=>$({ref:e},c)),Re(...a))});return B("content.lazy")?tt(e).pipe(b(n=>n),Te(1),v(()=>o)):o}function za(e,{target$:t,print$:r}){let o=!0;return O(t.pipe(m(n=>n.closest("details:not([open])")),b(n=>e===n),m(()=>({action:"open",reveal:!0}))),r.pipe(b(n=>n||!o),w(()=>o=e.open),m(n=>({action:n?"open":"close"}))))}function Fn(e,t){return C(()=>{let r=new g;return r.subscribe(({action:o,reveal:n})=>{e.toggleAttribute("open",o==="open"),n&&e.scrollIntoView()}),za(e,t).pipe(w(o=>r.next(o)),_(()=>r.complete()),m(o=>$({ref:e},o)))})}var Un=".node circle,.node ellipse,.node path,.node polygon,.node rect{fill:var(--md-mermaid-node-bg-color);stroke:var(--md-mermaid-node-fg-color)}marker{fill:var(--md-mermaid-edge-color)!important}.edgeLabel .label rect{fill:#0000}.flowchartTitleText{fill:var(--md-mermaid-label-fg-color)}.label{color:var(--md-mermaid-label-fg-color);font-family:var(--md-mermaid-font-family)}.label foreignObject{line-height:normal;overflow:visible}.label div .edgeLabel{color:var(--md-mermaid-label-fg-color)}.edgeLabel,.edgeLabel p,.label div .edgeLabel{background-color:var(--md-mermaid-label-bg-color)}.edgeLabel,.edgeLabel p{fill:var(--md-mermaid-label-bg-color);color:var(--md-mermaid-edge-color)}.edgePath .path,.flowchart-link{stroke:var(--md-mermaid-edge-color);stroke-width:.05rem}.edgePath .arrowheadPath{fill:var(--md-mermaid-edge-color);stroke:none}.cluster rect{fill:var(--md-default-fg-color--lightest);stroke:var(--md-default-fg-color--lighter)}.cluster span{color:var(--md-mermaid-label-fg-color);font-family:var(--md-mermaid-font-family)}g #flowchart-circleEnd,g #flowchart-circleStart,g #flowchart-crossEnd,g #flowchart-crossStart,g #flowchart-pointEnd,g #flowchart-pointStart{stroke:none}.classDiagramTitleText{fill:var(--md-mermaid-label-fg-color)}g.classGroup line,g.classGroup rect{fill:var(--md-mermaid-node-bg-color);stroke:var(--md-mermaid-node-fg-color)}g.classGroup text{fill:var(--md-mermaid-label-fg-color);font-family:var(--md-mermaid-font-family)}.classLabel .box{fill:var(--md-mermaid-label-bg-color);background-color:var(--md-mermaid-label-bg-color);opacity:1}.classLabel .label{fill:var(--md-mermaid-label-fg-color);font-family:var(--md-mermaid-font-family)}.node .divider{stroke:var(--md-mermaid-node-fg-color)}.relation{stroke:var(--md-mermaid-edge-color)}.cardinality{fill:var(--md-mermaid-label-fg-color);font-family:var(--md-mermaid-font-family)}.cardinality text{fill:inherit!important}defs marker.marker.composition.class path,defs marker.marker.dependency.class path,defs marker.marker.extension.class path{fill:var(--md-mermaid-edge-color)!important;stroke:var(--md-mermaid-edge-color)!important}defs marker.marker.aggregation.class path{fill:var(--md-mermaid-label-bg-color)!important;stroke:var(--md-mermaid-edge-color)!important}.statediagramTitleText{fill:var(--md-mermaid-label-fg-color)}g.stateGroup rect{fill:var(--md-mermaid-node-bg-color);stroke:var(--md-mermaid-node-fg-color)}g.stateGroup .state-title{fill:var(--md-mermaid-label-fg-color)!important;font-family:var(--md-mermaid-font-family)}g.stateGroup .composit{fill:var(--md-mermaid-label-bg-color)}.nodeLabel,.nodeLabel p{color:var(--md-mermaid-label-fg-color);font-family:var(--md-mermaid-font-family)}a .nodeLabel{text-decoration:underline}.node circle.state-end,.node circle.state-start,.start-state{fill:var(--md-mermaid-edge-color);stroke:none}.end-state-inner,.end-state-outer{fill:var(--md-mermaid-edge-color)}.end-state-inner,.node circle.state-end{stroke:var(--md-mermaid-label-bg-color)}.transition{stroke:var(--md-mermaid-edge-color)}[id^=state-fork] rect,[id^=state-join] rect{fill:var(--md-mermaid-edge-color)!important;stroke:none!important}.statediagram-cluster.statediagram-cluster .inner{fill:var(--md-default-bg-color)}.statediagram-cluster rect{fill:var(--md-mermaid-node-bg-color);stroke:var(--md-mermaid-node-fg-color)}.statediagram-state rect.divider{fill:var(--md-default-fg-color--lightest);stroke:var(--md-default-fg-color--lighter)}defs #statediagram-barbEnd{stroke:var(--md-mermaid-edge-color)}.entityTitleText{fill:var(--md-mermaid-label-fg-color)}.attributeBoxEven,.attributeBoxOdd{fill:var(--md-mermaid-node-bg-color);stroke:var(--md-mermaid-node-fg-color)}.entityBox{fill:var(--md-mermaid-label-bg-color);stroke:var(--md-mermaid-node-fg-color)}.entityLabel{fill:var(--md-mermaid-label-fg-color);font-family:var(--md-mermaid-font-family)}.relationshipLabelBox{fill:var(--md-mermaid-label-bg-color);fill-opacity:1;background-color:var(--md-mermaid-label-bg-color);opacity:1}.relationshipLabel{fill:var(--md-mermaid-label-fg-color)}.relationshipLine{stroke:var(--md-mermaid-edge-color)}defs #ONE_OR_MORE_END *,defs #ONE_OR_MORE_START *,defs #ONLY_ONE_END *,defs #ONLY_ONE_START *,defs #ZERO_OR_MORE_END *,defs #ZERO_OR_MORE_START *,defs #ZERO_OR_ONE_END *,defs #ZERO_OR_ONE_START *{stroke:var(--md-mermaid-edge-color)!important}defs #ZERO_OR_MORE_END circle,defs #ZERO_OR_MORE_START circle{fill:var(--md-mermaid-label-bg-color)}text:not([class]):last-child{fill:var(--md-mermaid-label-fg-color)}.actor{fill:var(--md-mermaid-sequence-actor-bg-color);stroke:var(--md-mermaid-sequence-actor-border-color)}text.actor>tspan{fill:var(--md-mermaid-sequence-actor-fg-color);font-family:var(--md-mermaid-font-family)}line{stroke:var(--md-mermaid-sequence-actor-line-color)}.actor-man circle,.actor-man line{fill:var(--md-mermaid-sequence-actorman-bg-color);stroke:var(--md-mermaid-sequence-actorman-line-color)}.messageLine0,.messageLine1{stroke:var(--md-mermaid-sequence-message-line-color)}.note{fill:var(--md-mermaid-sequence-note-bg-color);stroke:var(--md-mermaid-sequence-note-border-color)}.loopText,.loopText>tspan,.messageText,.noteText>tspan{stroke:none;font-family:var(--md-mermaid-font-family)!important}.messageText{fill:var(--md-mermaid-sequence-message-fg-color)}.loopText,.loopText>tspan{fill:var(--md-mermaid-sequence-loop-fg-color)}.noteText>tspan{fill:var(--md-mermaid-sequence-note-fg-color)}#arrowhead path{fill:var(--md-mermaid-sequence-message-line-color);stroke:none}.loopLine{fill:var(--md-mermaid-sequence-loop-bg-color);stroke:var(--md-mermaid-sequence-loop-border-color)}.labelBox{fill:var(--md-mermaid-sequence-label-bg-color);stroke:none}.labelText,.labelText>span{fill:var(--md-mermaid-sequence-label-fg-color);font-family:var(--md-mermaid-font-family)}.sequenceNumber{fill:var(--md-mermaid-sequence-number-fg-color)}rect.rect{fill:var(--md-mermaid-sequence-box-bg-color);stroke:none}rect.rect+text.text{fill:var(--md-mermaid-sequence-box-fg-color)}defs #sequencenumber{fill:var(--md-mermaid-sequence-number-bg-color)!important}";var Gr,Qa=0;function Ka(){return typeof mermaid=="undefined"||mermaid instanceof Element?Tt("https://unpkg.com/mermaid@11/dist/mermaid.min.js"):I(void 0)}function Wn(e){return e.classList.remove("mermaid"),Gr||(Gr=Ka().pipe(w(()=>mermaid.initialize({startOnLoad:!1,themeCSS:Un,sequence:{actorFontSize:"16px",messageFontSize:"16px",noteFontSize:"16px"}})),m(()=>{}),G(1))),Gr.subscribe(()=>co(this,null,function*(){e.classList.add("mermaid");let t=`__mermaid_${Qa++}`,r=x("div",{class:"mermaid"}),o=e.textContent,{svg:n,fn:i}=yield mermaid.render(t,o),a=r.attachShadow({mode:"closed"});a.innerHTML=n,e.replaceWith(r),i==null||i(a)})),Gr.pipe(m(()=>({ref:e})))}var Vn=x("table");function Dn(e){return e.replaceWith(Vn),Vn.replaceWith(An(e)),I({ref:e})}function Ya(e){let t=e.find(r=>r.checked)||e[0];return O(...e.map(r=>h(r,"change").pipe(m(()=>R(`label[for="${r.id}"]`))))).pipe(Q(R(`label[for="${t.id}"]`)),m(r=>({active:r})))}function Nn(e,{viewport$:t,target$:r}){let o=R(".tabbed-labels",e),n=P(":scope > input",e),i=Kr("prev");e.append(i);let a=Kr("next");return e.append(a),C(()=>{let s=new g,p=s.pipe(Z(),ie(!0));z([s,ge(e),tt(e)]).pipe(W(p),Me(1,me)).subscribe({next([{active:c},l]){let f=De(c),{width:u}=ce(c);e.style.setProperty("--md-indicator-x",`${f.x}px`),e.style.setProperty("--md-indicator-width",`${u}px`);let d=pr(o);(f.x<d.x||f.x+u>d.x+l.width)&&o.scrollTo({left:Math.max(0,f.x-16),behavior:"smooth"})},complete(){e.style.removeProperty("--md-indicator-x"),e.style.removeProperty("--md-indicator-width")}}),z([Ne(o),ge(o)]).pipe(W(p)).subscribe(([c,l])=>{let f=St(o);i.hidden=c.x<16,a.hidden=c.x>f.width-l.width-16}),O(h(i,"click").pipe(m(()=>-1)),h(a,"click").pipe(m(()=>1))).pipe(W(p)).subscribe(c=>{let{width:l}=ce(o);o.scrollBy({left:l*c,behavior:"smooth"})}),r.pipe(W(p),b(c=>n.includes(c))).subscribe(c=>c.click()),o.classList.add("tabbed-labels--linked");for(let c of n){let l=R(`label[for="${c.id}"]`);l.replaceChildren(x("a",{href:`#${l.htmlFor}`,tabIndex:-1},...Array.from(l.childNodes))),h(l.firstElementChild,"click").pipe(W(p),b(f=>!(f.metaKey||f.ctrlKey)),w(f=>{f.preventDefault(),f.stopPropagation()})).subscribe(()=>{history.replaceState({},"",`#${l.htmlFor}`),l.click()})}return B("content.tabs.link")&&s.pipe(Ce(1),re(t)).subscribe(([{active:c},{offset:l}])=>{let f=c.innerText.trim();if(c.hasAttribute("data-md-switching"))c.removeAttribute("data-md-switching");else{let u=e.offsetTop-l.y;for(let y of P("[data-tabs]"))for(let L of P(":scope > input",y)){let X=R(`label[for="${L.id}"]`);if(X!==c&&X.innerText.trim()===f){X.setAttribute("data-md-switching",""),L.click();break}}window.scrollTo({top:e.offsetTop-u});let d=__md_get("__tabs")||[];__md_set("__tabs",[...new Set([f,...d])])}}),s.pipe(W(p)).subscribe(()=>{for(let c of P("audio, video",e))c.pause()}),Ya(n).pipe(w(c=>s.next(c)),_(()=>s.complete()),m(c=>$({ref:e},c)))}).pipe(Ke(se))}function zn(e,{viewport$:t,target$:r,print$:o}){return O(...P(".annotate:not(.highlight)",e).map(n=>Pn(n,{target$:r,print$:o})),...P("pre:not(.mermaid) > code",e).map(n=>jn(n,{target$:r,print$:o})),...P("pre.mermaid",e).map(n=>Wn(n)),...P("table:not([class])",e).map(n=>Dn(n)),...P("details",e).map(n=>Fn(n,{target$:r,print$:o})),...P("[data-tabs]",e).map(n=>Nn(n,{viewport$:t,target$:r})),...P("[title]",e).filter(()=>B("content.tooltips")).map(n=>mt(n,{viewport$:t})))}function Ba(e,{alert$:t}){return t.pipe(v(r=>O(I(!0),I(!1).pipe(Ge(2e3))).pipe(m(o=>({message:r,active:o})))))}function qn(e,t){let r=R(".md-typeset",e);return C(()=>{let o=new g;return o.subscribe(({message:n,active:i})=>{e.classList.toggle("md-dialog--active",i),r.textContent=n}),Ba(e,t).pipe(w(n=>o.next(n)),_(()=>o.complete()),m(n=>$({ref:e},n)))})}var Ga=0;function Ja(e,t){document.body.append(e);let{width:r}=ce(e);e.style.setProperty("--md-tooltip-width",`${r}px`),e.remove();let o=cr(t),n=typeof o!="undefined"?Ne(o):I({x:0,y:0}),i=O(et(t),$t(t)).pipe(K());return z([i,n]).pipe(m(([a,s])=>{let{x:p,y:c}=De(t),l=ce(t),f=t.closest("table");return f&&t.parentElement&&(p+=f.offsetLeft+t.parentElement.offsetLeft,c+=f.offsetTop+t.parentElement.offsetTop),{active:a,offset:{x:p-s.x+l.width/2-r/2,y:c-s.y+l.height+8}}}))}function Qn(e){let t=e.title;if(!t.length)return S;let r=`__tooltip_${Ga++}`,o=Rt(r,"inline"),n=R(".md-typeset",o);return n.innerHTML=t,C(()=>{let i=new g;return i.subscribe({next({offset:a}){o.style.setProperty("--md-tooltip-x",`${a.x}px`),o.style.setProperty("--md-tooltip-y",`${a.y}px`)},complete(){o.style.removeProperty("--md-tooltip-x"),o.style.removeProperty("--md-tooltip-y")}}),O(i.pipe(b(({active:a})=>a)),i.pipe(_e(250),b(({active:a})=>!a))).subscribe({next({active:a}){a?(e.insertAdjacentElement("afterend",o),e.setAttribute("aria-describedby",r),e.removeAttribute("title")):(o.remove(),e.removeAttribute("aria-describedby"),e.setAttribute("title",t))},complete(){o.remove(),e.removeAttribute("aria-describedby"),e.setAttribute("title",t)}}),i.pipe(Me(16,me)).subscribe(({active:a})=>{o.classList.toggle("md-tooltip--active",a)}),i.pipe(pt(125,me),b(()=>!!e.offsetParent),m(()=>e.offsetParent.getBoundingClientRect()),m(({x:a})=>a)).subscribe({next(a){a?o.style.setProperty("--md-tooltip-0",`${-a}px`):o.style.removeProperty("--md-tooltip-0")},complete(){o.style.removeProperty("--md-tooltip-0")}}),Ja(o,e).pipe(w(a=>i.next(a)),_(()=>i.complete()),m(a=>$({ref:e},a)))}).pipe(Ke(se))}function Xa({viewport$:e}){if(!B("header.autohide"))return I(!1);let t=e.pipe(m(({offset:{y:n}})=>n),Be(2,1),m(([n,i])=>[n<i,i]),te(0)),r=z([e,t]).pipe(b(([{offset:n},[,i]])=>Math.abs(i-n.y)>100),m(([,[n]])=>n),K()),o=ze("search");return z([e,o]).pipe(m(([{offset:n},i])=>n.y>400&&!i),K(),v(n=>n?r:I(!1)),Q(!1))}function Kn(e,t){return C(()=>z([ge(e),Xa(t)])).pipe(m(([{height:r},o])=>({height:r,hidden:o})),K((r,o)=>r.height===o.height&&r.hidden===o.hidden),G(1))}function Yn(e,{header$:t,main$:r}){return C(()=>{let o=new g,n=o.pipe(Z(),ie(!0));o.pipe(te("active"),He(t)).subscribe(([{active:a},{hidden:s}])=>{e.classList.toggle("md-header--shadow",a&&!s),e.hidden=s});let i=ue(P("[title]",e)).pipe(b(()=>B("content.tooltips")),ne(a=>Qn(a)));return r.subscribe(o),t.pipe(W(n),m(a=>$({ref:e},a)),Re(i.pipe(W(n))))})}function Za(e,{viewport$:t,header$:r}){return mr(e,{viewport$:t,header$:r}).pipe(m(({offset:{y:o}})=>{let{height:n}=ce(e);return{active:o>=n}}),te("active"))}function Bn(e,t){return C(()=>{let r=new g;r.subscribe({next({active:n}){e.classList.toggle("md-header__title--active",n)},complete(){e.classList.remove("md-header__title--active")}});let o=fe(".md-content h1");return typeof o=="undefined"?S:Za(o,t).pipe(w(n=>r.next(n)),_(()=>r.complete()),m(n=>$({ref:e},n)))})}function Gn(e,{viewport$:t,header$:r}){let o=r.pipe(m(({height:i})=>i),K()),n=o.pipe(v(()=>ge(e).pipe(m(({height:i})=>({top:e.offsetTop,bottom:e.offsetTop+i})),te("bottom"))));return z([o,n,t]).pipe(m(([i,{top:a,bottom:s},{offset:{y:p},size:{height:c}}])=>(c=Math.max(0,c-Math.max(0,a-p,i)-Math.max(0,c+p-s)),{offset:a-i,height:c,active:a-i<=p})),K((i,a)=>i.offset===a.offset&&i.height===a.height&&i.active===a.active))}function es(e){let t=__md_get("__palette")||{index:e.findIndex(o=>matchMedia(o.getAttribute("data-md-color-media")).matches)},r=Math.max(0,Math.min(t.index,e.length-1));return I(...e).pipe(ne(o=>h(o,"change").pipe(m(()=>o))),Q(e[r]),m(o=>({index:e.indexOf(o),color:{media:o.getAttribute("data-md-color-media"),scheme:o.getAttribute("data-md-color-scheme"),primary:o.getAttribute("data-md-color-primary"),accent:o.getAttribute("data-md-color-accent")}})),G(1))}function Jn(e){let t=P("input",e),r=x("meta",{name:"theme-color"});document.head.appendChild(r);let o=x("meta",{name:"color-scheme"});document.head.appendChild(o);let n=Pt("(prefers-color-scheme: light)");return C(()=>{let i=new g;return i.subscribe(a=>{if(document.body.setAttribute("data-md-color-switching",""),a.color.media==="(prefers-color-scheme)"){let s=matchMedia("(prefers-color-scheme: light)"),p=document.querySelector(s.matches?"[data-md-color-media='(prefers-color-scheme: light)']":"[data-md-color-media='(prefers-color-scheme: dark)']");a.color.scheme=p.getAttribute("data-md-color-scheme"),a.color.primary=p.getAttribute("data-md-color-primary"),a.color.accent=p.getAttribute("data-md-color-accent")}for(let[s,p]of Object.entries(a.color))document.body.setAttribute(`data-md-color-${s}`,p);for(let s=0;s<t.length;s++){let p=t[s].nextElementSibling;p instanceof HTMLElement&&(p.hidden=a.index!==s)}__md_set("__palette",a)}),h(e,"keydown").pipe(b(a=>a.key==="Enter"),re(i,(a,s)=>s)).subscribe(({index:a})=>{a=(a+1)%t.length,t[a].click(),t[a].focus()}),i.pipe(m(()=>{let a=Se("header"),s=window.getComputedStyle(a);return o.content=s.colorScheme,s.backgroundColor.match(/\d+/g).map(p=>(+p).toString(16).padStart(2,"0")).join("")})).subscribe(a=>r.content=`#${a}`),i.pipe(ve(se)).subscribe(()=>{document.body.removeAttribute("data-md-color-switching")}),es(t).pipe(W(n.pipe(Ce(1))),ct(),w(a=>i.next(a)),_(()=>i.complete()),m(a=>$({ref:e},a)))})}function Xn(e,{progress$:t}){return C(()=>{let r=new g;return r.subscribe(({value:o})=>{e.style.setProperty("--md-progress-value",`${o}`)}),t.pipe(w(o=>r.next({value:o})),_(()=>r.complete()),m(o=>({ref:e,value:o})))})}var Jr=Mt(Br());function ts(e){e.setAttribute("data-md-copying","");let t=e.closest("[data-copy]"),r=t?t.getAttribute("data-copy"):e.innerText;return e.removeAttribute("data-md-copying"),r.trimEnd()}function Zn({alert$:e}){Jr.default.isSupported()&&new j(t=>{new Jr.default("[data-clipboard-target], [data-clipboard-text]",{text:r=>r.getAttribute("data-clipboard-text")||ts(R(r.getAttribute("data-clipboard-target")))}).on("success",r=>t.next(r))}).pipe(w(t=>{t.trigger.focus()}),m(()=>Ee("clipboard.copied"))).subscribe(e)}function ei(e,t){return e.protocol=t.protocol,e.hostname=t.hostname,e}function rs(e,t){let r=new Map;for(let o of P("url",e)){let n=R("loc",o),i=[ei(new URL(n.textContent),t)];r.set(`${i[0]}`,i);for(let a of P("[rel=alternate]",o)){let s=a.getAttribute("href");s!=null&&i.push(ei(new URL(s),t))}}return r}function ur(e){return un(new URL("sitemap.xml",e)).pipe(m(t=>rs(t,new URL(e))),de(()=>I(new Map)))}function os(e,t){if(!(e.target instanceof Element))return S;let r=e.target.closest("a");if(r===null)return S;if(r.target||e.metaKey||e.ctrlKey)return S;let o=new URL(r.href);return o.search=o.hash="",t.has(`${o}`)?(e.preventDefault(),I(new URL(r.href))):S}function ti(e){let t=new Map;for(let r of P(":scope > *",e.head))t.set(r.outerHTML,r);return t}function ri(e){for(let t of P("[href], [src]",e))for(let r of["href","src"]){let o=t.getAttribute(r);if(o&&!/^(?:[a-z]+:)?\/\//i.test(o)){t[r]=t[r];break}}return I(e)}function ns(e){for(let o of["[data-md-component=announce]","[data-md-component=container]","[data-md-component=header-topic]","[data-md-component=outdated]","[data-md-component=logo]","[data-md-component=skip]",...B("navigation.tabs.sticky")?["[data-md-component=tabs]"]:[]]){let n=fe(o),i=fe(o,e);typeof n!="undefined"&&typeof i!="undefined"&&n.replaceWith(i)}let t=ti(document);for(let[o,n]of ti(e))t.has(o)?t.delete(o):document.head.appendChild(n);for(let o of t.values()){let n=o.getAttribute("name");n!=="theme-color"&&n!=="color-scheme"&&o.remove()}let r=Se("container");return We(P("script",r)).pipe(v(o=>{let n=e.createElement("script");if(o.src){for(let i of o.getAttributeNames())n.setAttribute(i,o.getAttribute(i));return o.replaceWith(n),new j(i=>{n.onload=()=>i.complete()})}else return n.textContent=o.textContent,o.replaceWith(n),S}),Z(),ie(document))}function oi({location$:e,viewport$:t,progress$:r}){let o=xe();if(location.protocol==="file:")return S;let n=ur(o.base);I(document).subscribe(ri);let i=h(document.body,"click").pipe(He(n),v(([p,c])=>os(p,c)),pe()),a=h(window,"popstate").pipe(m(ye),pe());i.pipe(re(t)).subscribe(([p,{offset:c}])=>{history.replaceState(c,""),history.pushState(null,"",p)}),O(i,a).subscribe(e);let s=e.pipe(te("pathname"),v(p=>fn(p,{progress$:r}).pipe(de(()=>(lt(p,!0),S)))),v(ri),v(ns),pe());return O(s.pipe(re(e,(p,c)=>c)),s.pipe(v(()=>e),te("hash")),e.pipe(K((p,c)=>p.pathname===c.pathname&&p.hash===c.hash),v(()=>i),w(()=>history.back()))).subscribe(p=>{var c,l;history.state!==null||!p.hash?window.scrollTo(0,(l=(c=history.state)==null?void 0:c.y)!=null?l:0):(history.scrollRestoration="auto",pn(p.hash),history.scrollRestoration="manual")}),e.subscribe(()=>{history.scrollRestoration="manual"}),h(window,"beforeunload").subscribe(()=>{history.scrollRestoration="auto"}),t.pipe(te("offset"),_e(100)).subscribe(({offset:p})=>{history.replaceState(p,"")}),s}var ni=Mt(qr());function ii(e){let t=e.separator.split("|").map(n=>n.replace(/(\(\?[!=<][^)]+\))/g,"").length===0?"\uFFFD":n).join("|"),r=new RegExp(t,"img"),o=(n,i,a)=>`${i}<mark data-md-highlight>${a}</mark>`;return n=>{n=n.replace(/[\s*+\-:~^]+/g," ").trim();let i=new RegExp(`(^|${e.separator}|)(${n.replace(/[|\\{}()[\]^$+*?.-]/g,"\\$&").replace(r,"|")})`,"img");return a=>(0,ni.default)(a).replace(i,o).replace(/<\/mark>(\s+)<mark[^>]*>/img,"$1")}}function jt(e){return e.type===1}function dr(e){return e.type===3}function ai(e,t){let r=yn(e);return O(I(location.protocol!=="file:"),ze("search")).pipe(Ae(o=>o),v(()=>t)).subscribe(({config:o,docs:n})=>r.next({type:0,data:{config:o,docs:n,options:{suggest:B("search.suggest")}}})),r}function si(e){var l;let{selectedVersionSitemap:t,selectedVersionBaseURL:r,currentLocation:o,currentBaseURL:n}=e,i=(l=Xr(n))==null?void 0:l.pathname;if(i===void 0)return;let a=ss(o.pathname,i);if(a===void 0)return;let s=ps(t.keys());if(!t.has(s))return;let p=Xr(a,s);if(!p||!t.has(p.href))return;let c=Xr(a,r);if(c)return c.hash=o.hash,c.search=o.search,c}function Xr(e,t){try{return new URL(e,t)}catch(r){return}}function ss(e,t){if(e.startsWith(t))return e.slice(t.length)}function cs(e,t){let r=Math.min(e.length,t.length),o;for(o=0;o<r&&e[o]===t[o];++o);return o}function ps(e){let t;for(let r of e)t===void 0?t=r:t=t.slice(0,cs(t,r));return t!=null?t:""}function ci({document$:e}){let t=xe(),r=je(new URL("../versions.json",t.base)).pipe(de(()=>S)),o=r.pipe(m(n=>{let[,i]=t.base.match(/([^/]+)\/?$/);return n.find(({version:a,aliases:s})=>a===i||s.includes(i))||n[0]}));r.pipe(m(n=>new Map(n.map(i=>[`${new URL(`../${i.version}/`,t.base)}`,i]))),v(n=>h(document.body,"click").pipe(b(i=>!i.metaKey&&!i.ctrlKey),re(o),v(([i,a])=>{if(i.target instanceof Element){let s=i.target.closest("a");if(s&&!s.target&&n.has(s.href)){let p=s.href;return!i.target.closest(".md-version")&&n.get(p)===a?S:(i.preventDefault(),I(new URL(p)))}}return S}),v(i=>ur(i).pipe(m(a=>{var s;return(s=si({selectedVersionSitemap:a,selectedVersionBaseURL:i,currentLocation:ye(),currentBaseURL:t.base}))!=null?s:i})))))).subscribe(n=>lt(n,!0)),z([r,o]).subscribe(([n,i])=>{R(".md-header__topic").appendChild(Cn(n,i))}),e.pipe(v(()=>o)).subscribe(n=>{var s;let i=new URL(t.base),a=__md_get("__outdated",sessionStorage,i);if(a===null){a=!0;let p=((s=t.version)==null?void 0:s.default)||"latest";Array.isArray(p)||(p=[p]);e:for(let c of p)for(let l of n.aliases.concat(n.version))if(new RegExp(c,"i").test(l)){a=!1;break e}__md_set("__outdated",a,sessionStorage,i)}if(a)for(let p of ae("outdated"))p.hidden=!1})}function ls(e,{worker$:t}){let{searchParams:r}=ye();r.has("q")&&(Je("search",!0),e.value=r.get("q"),e.focus(),ze("search").pipe(Ae(i=>!i)).subscribe(()=>{let i=ye();i.searchParams.delete("q"),history.replaceState({},"",`${i}`)}));let o=et(e),n=O(t.pipe(Ae(jt)),h(e,"keyup"),o).pipe(m(()=>e.value),K());return z([n,o]).pipe(m(([i,a])=>({value:i,focus:a})),G(1))}function pi(e,{worker$:t}){let r=new g,o=r.pipe(Z(),ie(!0));z([t.pipe(Ae(jt)),r],(i,a)=>a).pipe(te("value")).subscribe(({value:i})=>t.next({type:2,data:i})),r.pipe(te("focus")).subscribe(({focus:i})=>{i&&Je("search",i)}),h(e.form,"reset").pipe(W(o)).subscribe(()=>e.focus());let n=R("header [for=__search]");return h(n,"click").subscribe(()=>e.focus()),ls(e,{worker$:t}).pipe(w(i=>r.next(i)),_(()=>r.complete()),m(i=>$({ref:e},i)),G(1))}function li(e,{worker$:t,query$:r}){let o=new g,n=on(e.parentElement).pipe(b(Boolean)),i=e.parentElement,a=R(":scope > :first-child",e),s=R(":scope > :last-child",e);ze("search").subscribe(l=>s.setAttribute("role",l?"list":"presentation")),o.pipe(re(r),Wr(t.pipe(Ae(jt)))).subscribe(([{items:l},{value:f}])=>{switch(l.length){case 0:a.textContent=f.length?Ee("search.result.none"):Ee("search.result.placeholder");break;case 1:a.textContent=Ee("search.result.one");break;default:let u=sr(l.length);a.textContent=Ee("search.result.other",u)}});let p=o.pipe(w(()=>s.innerHTML=""),v(({items:l})=>O(I(...l.slice(0,10)),I(...l.slice(10)).pipe(Be(4),Dr(n),v(([f])=>f)))),m(Mn),pe());return p.subscribe(l=>s.appendChild(l)),p.pipe(ne(l=>{let f=fe("details",l);return typeof f=="undefined"?S:h(f,"toggle").pipe(W(o),m(()=>f))})).subscribe(l=>{l.open===!1&&l.offsetTop<=i.scrollTop&&i.scrollTo({top:l.offsetTop})}),t.pipe(b(dr),m(({data:l})=>l)).pipe(w(l=>o.next(l)),_(()=>o.complete()),m(l=>$({ref:e},l)))}function ms(e,{query$:t}){return t.pipe(m(({value:r})=>{let o=ye();return o.hash="",r=r.replace(/\s+/g,"+").replace(/&/g,"%26").replace(/=/g,"%3D"),o.search=`q=${r}`,{url:o}}))}function mi(e,t){let r=new g,o=r.pipe(Z(),ie(!0));return r.subscribe(({url:n})=>{e.setAttribute("data-clipboard-text",e.href),e.href=`${n}`}),h(e,"click").pipe(W(o)).subscribe(n=>n.preventDefault()),ms(e,t).pipe(w(n=>r.next(n)),_(()=>r.complete()),m(n=>$({ref:e},n)))}function fi(e,{worker$:t,keyboard$:r}){let o=new g,n=Se("search-query"),i=O(h(n,"keydown"),h(n,"focus")).pipe(ve(se),m(()=>n.value),K());return o.pipe(He(i),m(([{suggest:s},p])=>{let c=p.split(/([\s-]+)/);if(s!=null&&s.length&&c[c.length-1]){let l=s[s.length-1];l.startsWith(c[c.length-1])&&(c[c.length-1]=l)}else c.length=0;return c})).subscribe(s=>e.innerHTML=s.join("").replace(/\s/g," ")),r.pipe(b(({mode:s})=>s==="search")).subscribe(s=>{switch(s.type){case"ArrowRight":e.innerText.length&&n.selectionStart===n.value.length&&(n.value=e.innerText);break}}),t.pipe(b(dr),m(({data:s})=>s)).pipe(w(s=>o.next(s)),_(()=>o.complete()),m(()=>({ref:e})))}function ui(e,{index$:t,keyboard$:r}){let o=xe();try{let n=ai(o.search,t),i=Se("search-query",e),a=Se("search-result",e);h(e,"click").pipe(b(({target:p})=>p instanceof Element&&!!p.closest("a"))).subscribe(()=>Je("search",!1)),r.pipe(b(({mode:p})=>p==="search")).subscribe(p=>{let c=Ie();switch(p.type){case"Enter":if(c===i){let l=new Map;for(let f of P(":first-child [href]",a)){let u=f.firstElementChild;l.set(f,parseFloat(u.getAttribute("data-md-score")))}if(l.size){let[[f]]=[...l].sort(([,u],[,d])=>d-u);f.click()}p.claim()}break;case"Escape":case"Tab":Je("search",!1),i.blur();break;case"ArrowUp":case"ArrowDown":if(typeof c=="undefined")i.focus();else{let l=[i,...P(":not(details) > [href], summary, details[open] [href]",a)],f=Math.max(0,(Math.max(0,l.indexOf(c))+l.length+(p.type==="ArrowUp"?-1:1))%l.length);l[f].focus()}p.claim();break;default:i!==Ie()&&i.focus()}}),r.pipe(b(({mode:p})=>p==="global")).subscribe(p=>{switch(p.type){case"f":case"s":case"/":i.focus(),i.select(),p.claim();break}});let s=pi(i,{worker$:n});return O(s,li(a,{worker$:n,query$:s})).pipe(Re(...ae("search-share",e).map(p=>mi(p,{query$:s})),...ae("search-suggest",e).map(p=>fi(p,{worker$:n,keyboard$:r}))))}catch(n){return e.hidden=!0,Ye}}function di(e,{index$:t,location$:r}){return z([t,r.pipe(Q(ye()),b(o=>!!o.searchParams.get("h")))]).pipe(m(([o,n])=>ii(o.config)(n.searchParams.get("h"))),m(o=>{var a;let n=new Map,i=document.createNodeIterator(e,NodeFilter.SHOW_TEXT);for(let s=i.nextNode();s;s=i.nextNode())if((a=s.parentElement)!=null&&a.offsetHeight){let p=s.textContent,c=o(p);c.length>p.length&&n.set(s,c)}for(let[s,p]of n){let{childNodes:c}=x("span",null,p);s.replaceWith(...Array.from(c))}return{ref:e,nodes:n}}))}function fs(e,{viewport$:t,main$:r}){let o=e.closest(".md-grid"),n=o.offsetTop-o.parentElement.offsetTop;return z([r,t]).pipe(m(([{offset:i,height:a},{offset:{y:s}}])=>(a=a+Math.min(n,Math.max(0,s-i))-n,{height:a,locked:s>=i+n})),K((i,a)=>i.height===a.height&&i.locked===a.locked))}function Zr(e,o){var n=o,{header$:t}=n,r=so(n,["header$"]);let i=R(".md-sidebar__scrollwrap",e),{y:a}=De(i);return C(()=>{let s=new g,p=s.pipe(Z(),ie(!0)),c=s.pipe(Me(0,me));return c.pipe(re(t)).subscribe({next([{height:l},{height:f}]){i.style.height=`${l-2*a}px`,e.style.top=`${f}px`},complete(){i.style.height="",e.style.top=""}}),c.pipe(Ae()).subscribe(()=>{for(let l of P(".md-nav__link--active[href]",e)){if(!l.clientHeight)continue;let f=l.closest(".md-sidebar__scrollwrap");if(typeof f!="undefined"){let u=l.offsetTop-f.offsetTop,{height:d}=ce(f);f.scrollTo({top:u-d/2})}}}),ue(P("label[tabindex]",e)).pipe(ne(l=>h(l,"click").pipe(ve(se),m(()=>l),W(p)))).subscribe(l=>{let f=R(`[id="${l.htmlFor}"]`);R(`[aria-labelledby="${l.id}"]`).setAttribute("aria-expanded",`${f.checked}`)}),fs(e,r).pipe(w(l=>s.next(l)),_(()=>s.complete()),m(l=>$({ref:e},l)))})}function hi(e,t){if(typeof t!="undefined"){let r=`https://api.github.com/repos/${e}/${t}`;return st(je(`${r}/releases/latest`).pipe(de(()=>S),m(o=>({version:o.tag_name})),Ve({})),je(r).pipe(de(()=>S),m(o=>({stars:o.stargazers_count,forks:o.forks_count})),Ve({}))).pipe(m(([o,n])=>$($({},o),n)))}else{let r=`https://api.github.com/users/${e}`;return je(r).pipe(m(o=>({repositories:o.public_repos})),Ve({}))}}function bi(e,t){let r=`https://${e}/api/v4/projects/${encodeURIComponent(t)}`;return st(je(`${r}/releases/permalink/latest`).pipe(de(()=>S),m(({tag_name:o})=>({version:o})),Ve({})),je(r).pipe(de(()=>S),m(({star_count:o,forks_count:n})=>({stars:o,forks:n})),Ve({}))).pipe(m(([o,n])=>$($({},o),n)))}function vi(e){let t=e.match(/^.+github\.com\/([^/]+)\/?([^/]+)?/i);if(t){let[,r,o]=t;return hi(r,o)}if(t=e.match(/^.+?([^/]*gitlab[^/]+)\/(.+?)\/?$/i),t){let[,r,o]=t;return bi(r,o)}return S}var us;function ds(e){return us||(us=C(()=>{let t=__md_get("__source",sessionStorage);if(t)return I(t);if(ae("consent").length){let o=__md_get("__consent");if(!(o&&o.github))return S}return vi(e.href).pipe(w(o=>__md_set("__source",o,sessionStorage)))}).pipe(de(()=>S),b(t=>Object.keys(t).length>0),m(t=>({facts:t})),G(1)))}function gi(e){let t=R(":scope > :last-child",e);return C(()=>{let r=new g;return r.subscribe(({facts:o})=>{t.appendChild(_n(o)),t.classList.add("md-source__repository--active")}),ds(e).pipe(w(o=>r.next(o)),_(()=>r.complete()),m(o=>$({ref:e},o)))})}function hs(e,{viewport$:t,header$:r}){return ge(document.body).pipe(v(()=>mr(e,{header$:r,viewport$:t})),m(({offset:{y:o}})=>({hidden:o>=10})),te("hidden"))}function yi(e,t){return C(()=>{let r=new g;return r.subscribe({next({hidden:o}){e.hidden=o},complete(){e.hidden=!1}}),(B("navigation.tabs.sticky")?I({hidden:!1}):hs(e,t)).pipe(w(o=>r.next(o)),_(()=>r.complete()),m(o=>$({ref:e},o)))})}function bs(e,{viewport$:t,header$:r}){let o=new Map,n=P(".md-nav__link",e);for(let s of n){let p=decodeURIComponent(s.hash.substring(1)),c=fe(`[id="${p}"]`);typeof c!="undefined"&&o.set(s,c)}let i=r.pipe(te("height"),m(({height:s})=>{let p=Se("main"),c=R(":scope > :first-child",p);return s+.8*(c.offsetTop-p.offsetTop)}),pe());return ge(document.body).pipe(te("height"),v(s=>C(()=>{let p=[];return I([...o].reduce((c,[l,f])=>{for(;p.length&&o.get(p[p.length-1]).tagName>=f.tagName;)p.pop();let u=f.offsetTop;for(;!u&&f.parentElement;)f=f.parentElement,u=f.offsetTop;let d=f.offsetParent;for(;d;d=d.offsetParent)u+=d.offsetTop;return c.set([...p=[...p,l]].reverse(),u)},new Map))}).pipe(m(p=>new Map([...p].sort(([,c],[,l])=>c-l))),He(i),v(([p,c])=>t.pipe(Fr(([l,f],{offset:{y:u},size:d})=>{let y=u+d.height>=Math.floor(s.height);for(;f.length;){let[,L]=f[0];if(L-c<u||y)l=[...l,f.shift()];else break}for(;l.length;){let[,L]=l[l.length-1];if(L-c>=u&&!y)f=[l.pop(),...f];else break}return[l,f]},[[],[...p]]),K((l,f)=>l[0]===f[0]&&l[1]===f[1])))))).pipe(m(([s,p])=>({prev:s.map(([c])=>c),next:p.map(([c])=>c)})),Q({prev:[],next:[]}),Be(2,1),m(([s,p])=>s.prev.length<p.prev.length?{prev:p.prev.slice(Math.max(0,s.prev.length-1),p.prev.length),next:[]}:{prev:p.prev.slice(-1),next:p.next.slice(0,p.next.length-s.next.length)}))}function xi(e,{viewport$:t,header$:r,main$:o,target$:n}){return C(()=>{let i=new g,a=i.pipe(Z(),ie(!0));if(i.subscribe(({prev:s,next:p})=>{for(let[c]of p)c.classList.remove("md-nav__link--passed"),c.classList.remove("md-nav__link--active");for(let[c,[l]]of s.entries())l.classList.add("md-nav__link--passed"),l.classList.toggle("md-nav__link--active",c===s.length-1)}),B("toc.follow")){let s=O(t.pipe(_e(1),m(()=>{})),t.pipe(_e(250),m(()=>"smooth")));i.pipe(b(({prev:p})=>p.length>0),He(o.pipe(ve(se))),re(s)).subscribe(([[{prev:p}],c])=>{let[l]=p[p.length-1];if(l.offsetHeight){let f=cr(l);if(typeof f!="undefined"){let u=l.offsetTop-f.offsetTop,{height:d}=ce(f);f.scrollTo({top:u-d/2,behavior:c})}}})}return B("navigation.tracking")&&t.pipe(W(a),te("offset"),_e(250),Ce(1),W(n.pipe(Ce(1))),ct({delay:250}),re(i)).subscribe(([,{prev:s}])=>{let p=ye(),c=s[s.length-1];if(c&&c.length){let[l]=c,{hash:f}=new URL(l.href);p.hash!==f&&(p.hash=f,history.replaceState({},"",`${p}`))}else p.hash="",history.replaceState({},"",`${p}`)}),bs(e,{viewport$:t,header$:r}).pipe(w(s=>i.next(s)),_(()=>i.complete()),m(s=>$({ref:e},s)))})}function vs(e,{viewport$:t,main$:r,target$:o}){let n=t.pipe(m(({offset:{y:a}})=>a),Be(2,1),m(([a,s])=>a>s&&s>0),K()),i=r.pipe(m(({active:a})=>a));return z([i,n]).pipe(m(([a,s])=>!(a&&s)),K(),W(o.pipe(Ce(1))),ie(!0),ct({delay:250}),m(a=>({hidden:a})))}function Ei(e,{viewport$:t,header$:r,main$:o,target$:n}){let i=new g,a=i.pipe(Z(),ie(!0));return i.subscribe({next({hidden:s}){e.hidden=s,s?(e.setAttribute("tabindex","-1"),e.blur()):e.removeAttribute("tabindex")},complete(){e.style.top="",e.hidden=!0,e.removeAttribute("tabindex")}}),r.pipe(W(a),te("height")).subscribe(({height:s})=>{e.style.top=`${s+16}px`}),h(e,"click").subscribe(s=>{s.preventDefault(),window.scrollTo({top:0})}),vs(e,{viewport$:t,main$:o,target$:n}).pipe(w(s=>i.next(s)),_(()=>i.complete()),m(s=>$({ref:e},s)))}function wi({document$:e,viewport$:t}){e.pipe(v(()=>P(".md-ellipsis")),ne(r=>tt(r).pipe(W(e.pipe(Ce(1))),b(o=>o),m(()=>r),Te(1))),b(r=>r.offsetWidth<r.scrollWidth),ne(r=>{let o=r.innerText,n=r.closest("a")||r;return n.title=o,B("content.tooltips")?mt(n,{viewport$:t}).pipe(W(e.pipe(Ce(1))),_(()=>n.removeAttribute("title"))):S})).subscribe(),B("content.tooltips")&&e.pipe(v(()=>P(".md-status")),ne(r=>mt(r,{viewport$:t}))).subscribe()}function Ti({document$:e,tablet$:t}){e.pipe(v(()=>P(".md-toggle--indeterminate")),w(r=>{r.indeterminate=!0,r.checked=!1}),ne(r=>h(r,"change").pipe(Vr(()=>r.classList.contains("md-toggle--indeterminate")),m(()=>r))),re(t)).subscribe(([r,o])=>{r.classList.remove("md-toggle--indeterminate"),o&&(r.checked=!1)})}function gs(){return/(iPad|iPhone|iPod)/.test(navigator.userAgent)}function Si({document$:e}){e.pipe(v(()=>P("[data-md-scrollfix]")),w(t=>t.removeAttribute("data-md-scrollfix")),b(gs),ne(t=>h(t,"touchstart").pipe(m(()=>t)))).subscribe(t=>{let r=t.scrollTop;r===0?t.scrollTop=1:r+t.offsetHeight===t.scrollHeight&&(t.scrollTop=r-1)})}function Oi({viewport$:e,tablet$:t}){z([ze("search"),t]).pipe(m(([r,o])=>r&&!o),v(r=>I(r).pipe(Ge(r?400:100))),re(e)).subscribe(([r,{offset:{y:o}}])=>{if(r)document.body.setAttribute("data-md-scrolllock",""),document.body.style.top=`-${o}px`;else{let n=-1*parseInt(document.body.style.top,10);document.body.removeAttribute("data-md-scrolllock"),document.body.style.top="",n&&window.scrollTo(0,n)}})}Object.entries||(Object.entries=function(e){let t=[];for(let r of Object.keys(e))t.push([r,e[r]]);return t});Object.values||(Object.values=function(e){let t=[];for(let r of Object.keys(e))t.push(e[r]);return t});typeof Element!="undefined"&&(Element.prototype.scrollTo||(Element.prototype.scrollTo=function(e,t){typeof e=="object"?(this.scrollLeft=e.left,this.scrollTop=e.top):(this.scrollLeft=e,this.scrollTop=t)}),Element.prototype.replaceWith||(Element.prototype.replaceWith=function(...e){let t=this.parentNode;if(t){e.length===0&&t.removeChild(this);for(let r=e.length-1;r>=0;r--){let o=e[r];typeof o=="string"?o=document.createTextNode(o):o.parentNode&&o.parentNode.removeChild(o),r?t.insertBefore(this.previousSibling,o):t.replaceChild(o,this)}}}));function ys(){return location.protocol==="file:"?Tt(`${new URL("search/search_index.js",eo.base)}`).pipe(m(()=>__index),G(1)):je(new URL("search/search_index.json",eo.base))}document.documentElement.classList.remove("no-js");document.documentElement.classList.add("js");var ot=Go(),Ut=sn(),Lt=ln(Ut),to=an(),Oe=gn(),hr=Pt("(min-width: 960px)"),Mi=Pt("(min-width: 1220px)"),_i=mn(),eo=xe(),Ai=document.forms.namedItem("search")?ys():Ye,ro=new g;Zn({alert$:ro});var oo=new g;B("navigation.instant")&&oi({location$:Ut,viewport$:Oe,progress$:oo}).subscribe(ot);var Li;((Li=eo.version)==null?void 0:Li.provider)==="mike"&&ci({document$:ot});O(Ut,Lt).pipe(Ge(125)).subscribe(()=>{Je("drawer",!1),Je("search",!1)});to.pipe(b(({mode:e})=>e==="global")).subscribe(e=>{switch(e.type){case"p":case",":let t=fe("link[rel=prev]");typeof t!="undefined"&<(t);break;case"n":case".":let r=fe("link[rel=next]");typeof r!="undefined"&<(r);break;case"Enter":let o=Ie();o instanceof HTMLLabelElement&&o.click()}});wi({viewport$:Oe,document$:ot});Ti({document$:ot,tablet$:hr});Si({document$:ot});Oi({viewport$:Oe,tablet$:hr});var rt=Kn(Se("header"),{viewport$:Oe}),Ft=ot.pipe(m(()=>Se("main")),v(e=>Gn(e,{viewport$:Oe,header$:rt})),G(1)),xs=O(...ae("consent").map(e=>En(e,{target$:Lt})),...ae("dialog").map(e=>qn(e,{alert$:ro})),...ae("palette").map(e=>Jn(e)),...ae("progress").map(e=>Xn(e,{progress$:oo})),...ae("search").map(e=>ui(e,{index$:Ai,keyboard$:to})),...ae("source").map(e=>gi(e))),Es=C(()=>O(...ae("announce").map(e=>xn(e)),...ae("content").map(e=>zn(e,{viewport$:Oe,target$:Lt,print$:_i})),...ae("content").map(e=>B("search.highlight")?di(e,{index$:Ai,location$:Ut}):S),...ae("header").map(e=>Yn(e,{viewport$:Oe,header$:rt,main$:Ft})),...ae("header-title").map(e=>Bn(e,{viewport$:Oe,header$:rt})),...ae("sidebar").map(e=>e.getAttribute("data-md-type")==="navigation"?Nr(Mi,()=>Zr(e,{viewport$:Oe,header$:rt,main$:Ft})):Nr(hr,()=>Zr(e,{viewport$:Oe,header$:rt,main$:Ft}))),...ae("tabs").map(e=>yi(e,{viewport$:Oe,header$:rt})),...ae("toc").map(e=>xi(e,{viewport$:Oe,header$:rt,main$:Ft,target$:Lt})),...ae("top").map(e=>Ei(e,{viewport$:Oe,header$:rt,main$:Ft,target$:Lt})))),Ci=ot.pipe(v(()=>Es),Re(xs),G(1));Ci.subscribe();window.document$=ot;window.location$=Ut;window.target$=Lt;window.keyboard$=to;window.viewport$=Oe;window.tablet$=hr;window.screen$=Mi;window.print$=_i;window.alert$=ro;window.progress$=oo;window.component$=Ci;})(); //# sourceMappingURL=bundle.f1b6f286.min.js.map �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/bundle.f1b6f286.min.js.map��������������0000664�0000000�0000000�00003600470�14753064456�0030575�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "version": 3, "sources": ["node_modules/focus-visible/dist/focus-visible.js", "node_modules/escape-html/index.js", "node_modules/clipboard/dist/clipboard.js", "src/templates/assets/javascripts/bundle.ts", "node_modules/tslib/tslib.es6.mjs", "node_modules/rxjs/src/internal/util/isFunction.ts", "node_modules/rxjs/src/internal/util/createErrorClass.ts", "node_modules/rxjs/src/internal/util/UnsubscriptionError.ts", "node_modules/rxjs/src/internal/util/arrRemove.ts", "node_modules/rxjs/src/internal/Subscription.ts", "node_modules/rxjs/src/internal/config.ts", "node_modules/rxjs/src/internal/scheduler/timeoutProvider.ts", "node_modules/rxjs/src/internal/util/reportUnhandledError.ts", "node_modules/rxjs/src/internal/util/noop.ts", "node_modules/rxjs/src/internal/NotificationFactories.ts", "node_modules/rxjs/src/internal/util/errorContext.ts", "node_modules/rxjs/src/internal/Subscriber.ts", "node_modules/rxjs/src/internal/symbol/observable.ts", "node_modules/rxjs/src/internal/util/identity.ts", "node_modules/rxjs/src/internal/util/pipe.ts", "node_modules/rxjs/src/internal/Observable.ts", "node_modules/rxjs/src/internal/util/lift.ts", "node_modules/rxjs/src/internal/operators/OperatorSubscriber.ts", "node_modules/rxjs/src/internal/scheduler/animationFrameProvider.ts", "node_modules/rxjs/src/internal/util/ObjectUnsubscribedError.ts", "node_modules/rxjs/src/internal/Subject.ts", "node_modules/rxjs/src/internal/BehaviorSubject.ts", "node_modules/rxjs/src/internal/scheduler/dateTimestampProvider.ts", "node_modules/rxjs/src/internal/ReplaySubject.ts", "node_modules/rxjs/src/internal/scheduler/Action.ts", "node_modules/rxjs/src/internal/scheduler/intervalProvider.ts", "node_modules/rxjs/src/internal/scheduler/AsyncAction.ts", "node_modules/rxjs/src/internal/Scheduler.ts", "node_modules/rxjs/src/internal/scheduler/AsyncScheduler.ts", "node_modules/rxjs/src/internal/scheduler/async.ts", "node_modules/rxjs/src/internal/scheduler/QueueAction.ts", "node_modules/rxjs/src/internal/scheduler/QueueScheduler.ts", "node_modules/rxjs/src/internal/scheduler/queue.ts", "node_modules/rxjs/src/internal/scheduler/AnimationFrameAction.ts", "node_modules/rxjs/src/internal/scheduler/AnimationFrameScheduler.ts", "node_modules/rxjs/src/internal/scheduler/animationFrame.ts", "node_modules/rxjs/src/internal/observable/empty.ts", "node_modules/rxjs/src/internal/util/isScheduler.ts", "node_modules/rxjs/src/internal/util/args.ts", "node_modules/rxjs/src/internal/util/isArrayLike.ts", "node_modules/rxjs/src/internal/util/isPromise.ts", "node_modules/rxjs/src/internal/util/isInteropObservable.ts", "node_modules/rxjs/src/internal/util/isAsyncIterable.ts", "node_modules/rxjs/src/internal/util/throwUnobservableError.ts", "node_modules/rxjs/src/internal/symbol/iterator.ts", "node_modules/rxjs/src/internal/util/isIterable.ts", "node_modules/rxjs/src/internal/util/isReadableStreamLike.ts", "node_modules/rxjs/src/internal/observable/innerFrom.ts", "node_modules/rxjs/src/internal/util/executeSchedule.ts", "node_modules/rxjs/src/internal/operators/observeOn.ts", "node_modules/rxjs/src/internal/operators/subscribeOn.ts", "node_modules/rxjs/src/internal/scheduled/scheduleObservable.ts", "node_modules/rxjs/src/internal/scheduled/schedulePromise.ts", "node_modules/rxjs/src/internal/scheduled/scheduleArray.ts", "node_modules/rxjs/src/internal/scheduled/scheduleIterable.ts", "node_modules/rxjs/src/internal/scheduled/scheduleAsyncIterable.ts", "node_modules/rxjs/src/internal/scheduled/scheduleReadableStreamLike.ts", "node_modules/rxjs/src/internal/scheduled/scheduled.ts", "node_modules/rxjs/src/internal/observable/from.ts", "node_modules/rxjs/src/internal/observable/of.ts", "node_modules/rxjs/src/internal/observable/throwError.ts", "node_modules/rxjs/src/internal/util/EmptyError.ts", "node_modules/rxjs/src/internal/util/isDate.ts", "node_modules/rxjs/src/internal/operators/map.ts", "node_modules/rxjs/src/internal/util/mapOneOrManyArgs.ts", "node_modules/rxjs/src/internal/util/argsArgArrayOrObject.ts", "node_modules/rxjs/src/internal/util/createObject.ts", "node_modules/rxjs/src/internal/observable/combineLatest.ts", "node_modules/rxjs/src/internal/operators/mergeInternals.ts", "node_modules/rxjs/src/internal/operators/mergeMap.ts", "node_modules/rxjs/src/internal/operators/mergeAll.ts", "node_modules/rxjs/src/internal/operators/concatAll.ts", "node_modules/rxjs/src/internal/observable/concat.ts", "node_modules/rxjs/src/internal/observable/defer.ts", "node_modules/rxjs/src/internal/observable/fromEvent.ts", "node_modules/rxjs/src/internal/observable/fromEventPattern.ts", "node_modules/rxjs/src/internal/observable/timer.ts", "node_modules/rxjs/src/internal/observable/merge.ts", "node_modules/rxjs/src/internal/observable/never.ts", "node_modules/rxjs/src/internal/util/argsOrArgArray.ts", "node_modules/rxjs/src/internal/operators/filter.ts", "node_modules/rxjs/src/internal/observable/zip.ts", "node_modules/rxjs/src/internal/operators/audit.ts", "node_modules/rxjs/src/internal/operators/auditTime.ts", "node_modules/rxjs/src/internal/operators/bufferCount.ts", "node_modules/rxjs/src/internal/operators/catchError.ts", "node_modules/rxjs/src/internal/operators/scanInternals.ts", "node_modules/rxjs/src/internal/operators/combineLatest.ts", "node_modules/rxjs/src/internal/operators/combineLatestWith.ts", "node_modules/rxjs/src/internal/operators/debounce.ts", "node_modules/rxjs/src/internal/operators/debounceTime.ts", "node_modules/rxjs/src/internal/operators/defaultIfEmpty.ts", "node_modules/rxjs/src/internal/operators/take.ts", "node_modules/rxjs/src/internal/operators/ignoreElements.ts", "node_modules/rxjs/src/internal/operators/mapTo.ts", "node_modules/rxjs/src/internal/operators/delayWhen.ts", "node_modules/rxjs/src/internal/operators/delay.ts", "node_modules/rxjs/src/internal/operators/distinctUntilChanged.ts", "node_modules/rxjs/src/internal/operators/distinctUntilKeyChanged.ts", "node_modules/rxjs/src/internal/operators/throwIfEmpty.ts", "node_modules/rxjs/src/internal/operators/endWith.ts", "node_modules/rxjs/src/internal/operators/finalize.ts", "node_modules/rxjs/src/internal/operators/first.ts", "node_modules/rxjs/src/internal/operators/takeLast.ts", "node_modules/rxjs/src/internal/operators/merge.ts", "node_modules/rxjs/src/internal/operators/mergeWith.ts", "node_modules/rxjs/src/internal/operators/repeat.ts", "node_modules/rxjs/src/internal/operators/scan.ts", "node_modules/rxjs/src/internal/operators/share.ts", "node_modules/rxjs/src/internal/operators/shareReplay.ts", "node_modules/rxjs/src/internal/operators/skip.ts", "node_modules/rxjs/src/internal/operators/skipUntil.ts", "node_modules/rxjs/src/internal/operators/startWith.ts", "node_modules/rxjs/src/internal/operators/switchMap.ts", "node_modules/rxjs/src/internal/operators/takeUntil.ts", "node_modules/rxjs/src/internal/operators/takeWhile.ts", "node_modules/rxjs/src/internal/operators/tap.ts", "node_modules/rxjs/src/internal/operators/throttle.ts", "node_modules/rxjs/src/internal/operators/throttleTime.ts", "node_modules/rxjs/src/internal/operators/withLatestFrom.ts", "node_modules/rxjs/src/internal/operators/zip.ts", "node_modules/rxjs/src/internal/operators/zipWith.ts", "src/templates/assets/javascripts/browser/document/index.ts", "src/templates/assets/javascripts/browser/element/_/index.ts", "src/templates/assets/javascripts/browser/element/focus/index.ts", "src/templates/assets/javascripts/browser/element/hover/index.ts", "src/templates/assets/javascripts/utilities/h/index.ts", "src/templates/assets/javascripts/utilities/round/index.ts", "src/templates/assets/javascripts/browser/script/index.ts", "src/templates/assets/javascripts/browser/element/size/_/index.ts", "src/templates/assets/javascripts/browser/element/size/content/index.ts", "src/templates/assets/javascripts/browser/element/offset/_/index.ts", "src/templates/assets/javascripts/browser/element/offset/content/index.ts", "src/templates/assets/javascripts/browser/element/visibility/index.ts", "src/templates/assets/javascripts/browser/toggle/index.ts", "src/templates/assets/javascripts/browser/keyboard/index.ts", "src/templates/assets/javascripts/browser/location/_/index.ts", "src/templates/assets/javascripts/browser/location/hash/index.ts", "src/templates/assets/javascripts/browser/media/index.ts", "src/templates/assets/javascripts/browser/request/index.ts", "src/templates/assets/javascripts/browser/viewport/offset/index.ts", "src/templates/assets/javascripts/browser/viewport/size/index.ts", "src/templates/assets/javascripts/browser/viewport/_/index.ts", "src/templates/assets/javascripts/browser/viewport/at/index.ts", "src/templates/assets/javascripts/browser/worker/index.ts", "src/templates/assets/javascripts/_/index.ts", "src/templates/assets/javascripts/components/_/index.ts", "src/templates/assets/javascripts/components/announce/index.ts", "src/templates/assets/javascripts/components/consent/index.ts", "src/templates/assets/javascripts/templates/tooltip/index.tsx", "src/templates/assets/javascripts/templates/annotation/index.tsx", "src/templates/assets/javascripts/templates/clipboard/index.tsx", "src/templates/assets/javascripts/templates/search/index.tsx", "src/templates/assets/javascripts/templates/source/index.tsx", "src/templates/assets/javascripts/templates/tabbed/index.tsx", "src/templates/assets/javascripts/templates/table/index.tsx", "src/templates/assets/javascripts/templates/version/index.tsx", "src/templates/assets/javascripts/components/tooltip2/index.ts", "src/templates/assets/javascripts/components/content/annotation/_/index.ts", "src/templates/assets/javascripts/components/content/annotation/list/index.ts", "src/templates/assets/javascripts/components/content/annotation/block/index.ts", "src/templates/assets/javascripts/components/content/code/_/index.ts", "src/templates/assets/javascripts/components/content/details/index.ts", "src/templates/assets/javascripts/components/content/mermaid/index.css", "src/templates/assets/javascripts/components/content/mermaid/index.ts", "src/templates/assets/javascripts/components/content/table/index.ts", "src/templates/assets/javascripts/components/content/tabs/index.ts", "src/templates/assets/javascripts/components/content/_/index.ts", "src/templates/assets/javascripts/components/dialog/index.ts", "src/templates/assets/javascripts/components/tooltip/index.ts", "src/templates/assets/javascripts/components/header/_/index.ts", "src/templates/assets/javascripts/components/header/title/index.ts", "src/templates/assets/javascripts/components/main/index.ts", "src/templates/assets/javascripts/components/palette/index.ts", "src/templates/assets/javascripts/components/progress/index.ts", "src/templates/assets/javascripts/integrations/clipboard/index.ts", "src/templates/assets/javascripts/integrations/sitemap/index.ts", "src/templates/assets/javascripts/integrations/instant/index.ts", "src/templates/assets/javascripts/integrations/search/highlighter/index.ts", "src/templates/assets/javascripts/integrations/search/worker/message/index.ts", "src/templates/assets/javascripts/integrations/search/worker/_/index.ts", "src/templates/assets/javascripts/integrations/version/findurl/index.ts", "src/templates/assets/javascripts/integrations/version/index.ts", "src/templates/assets/javascripts/components/search/query/index.ts", "src/templates/assets/javascripts/components/search/result/index.ts", "src/templates/assets/javascripts/components/search/share/index.ts", "src/templates/assets/javascripts/components/search/suggest/index.ts", "src/templates/assets/javascripts/components/search/_/index.ts", "src/templates/assets/javascripts/components/search/highlight/index.ts", "src/templates/assets/javascripts/components/sidebar/index.ts", "src/templates/assets/javascripts/components/source/facts/github/index.ts", "src/templates/assets/javascripts/components/source/facts/gitlab/index.ts", "src/templates/assets/javascripts/components/source/facts/_/index.ts", "src/templates/assets/javascripts/components/source/_/index.ts", "src/templates/assets/javascripts/components/tabs/index.ts", "src/templates/assets/javascripts/components/toc/index.ts", "src/templates/assets/javascripts/components/top/index.ts", "src/templates/assets/javascripts/patches/ellipsis/index.ts", "src/templates/assets/javascripts/patches/indeterminate/index.ts", "src/templates/assets/javascripts/patches/scrollfix/index.ts", "src/templates/assets/javascripts/patches/scrolllock/index.ts", "src/templates/assets/javascripts/polyfills/index.ts"], "sourcesContent": ["(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined' ? factory() :\n typeof define === 'function' && define.amd ? define(factory) :\n (factory());\n}(this, (function () { 'use strict';\n\n /**\n * Applies the :focus-visible polyfill at the given scope.\n * A scope in this case is either the top-level Document or a Shadow Root.\n *\n * @param {(Document|ShadowRoot)} scope\n * @see https://github.com/WICG/focus-visible\n */\n function applyFocusVisiblePolyfill(scope) {\n var hadKeyboardEvent = true;\n var hadFocusVisibleRecently = false;\n var hadFocusVisibleRecentlyTimeout = null;\n\n var inputTypesAllowlist = {\n text: true,\n search: true,\n url: true,\n tel: true,\n email: true,\n password: true,\n number: true,\n date: true,\n month: true,\n week: true,\n time: true,\n datetime: true,\n 'datetime-local': true\n };\n\n /**\n * Helper function for legacy browsers and iframes which sometimes focus\n * elements like document, body, and non-interactive SVG.\n * @param {Element} el\n */\n function isValidFocusTarget(el) {\n if (\n el &&\n el !== document &&\n el.nodeName !== 'HTML' &&\n el.nodeName !== 'BODY' &&\n 'classList' in el &&\n 'contains' in el.classList\n ) {\n return true;\n }\n return false;\n }\n\n /**\n * Computes whether the given element should automatically trigger the\n * `focus-visible` class being added, i.e. whether it should always match\n * `:focus-visible` when focused.\n * @param {Element} el\n * @return {boolean}\n */\n function focusTriggersKeyboardModality(el) {\n var type = el.type;\n var tagName = el.tagName;\n\n if (tagName === 'INPUT' && inputTypesAllowlist[type] && !el.readOnly) {\n return true;\n }\n\n if (tagName === 'TEXTAREA' && !el.readOnly) {\n return true;\n }\n\n if (el.isContentEditable) {\n return true;\n }\n\n return false;\n }\n\n /**\n * Add the `focus-visible` class to the given element if it was not added by\n * the author.\n * @param {Element} el\n */\n function addFocusVisibleClass(el) {\n if (el.classList.contains('focus-visible')) {\n return;\n }\n el.classList.add('focus-visible');\n el.setAttribute('data-focus-visible-added', '');\n }\n\n /**\n * Remove the `focus-visible` class from the given element if it was not\n * originally added by the author.\n * @param {Element} el\n */\n function removeFocusVisibleClass(el) {\n if (!el.hasAttribute('data-focus-visible-added')) {\n return;\n }\n el.classList.remove('focus-visible');\n el.removeAttribute('data-focus-visible-added');\n }\n\n /**\n * If the most recent user interaction was via the keyboard;\n * and the key press did not include a meta, alt/option, or control key;\n * then the modality is keyboard. Otherwise, the modality is not keyboard.\n * Apply `focus-visible` to any current active element and keep track\n * of our keyboard modality state with `hadKeyboardEvent`.\n * @param {KeyboardEvent} e\n */\n function onKeyDown(e) {\n if (e.metaKey || e.altKey || e.ctrlKey) {\n return;\n }\n\n if (isValidFocusTarget(scope.activeElement)) {\n addFocusVisibleClass(scope.activeElement);\n }\n\n hadKeyboardEvent = true;\n }\n\n /**\n * If at any point a user clicks with a pointing device, ensure that we change\n * the modality away from keyboard.\n * This avoids the situation where a user presses a key on an already focused\n * element, and then clicks on a different element, focusing it with a\n * pointing device, while we still think we're in keyboard modality.\n * @param {Event} e\n */\n function onPointerDown(e) {\n hadKeyboardEvent = false;\n }\n\n /**\n * On `focus`, add the `focus-visible` class to the target if:\n * - the target received focus as a result of keyboard navigation, or\n * - the event target is an element that will likely require interaction\n * via the keyboard (e.g. a text box)\n * @param {Event} e\n */\n function onFocus(e) {\n // Prevent IE from focusing the document or HTML element.\n if (!isValidFocusTarget(e.target)) {\n return;\n }\n\n if (hadKeyboardEvent || focusTriggersKeyboardModality(e.target)) {\n addFocusVisibleClass(e.target);\n }\n }\n\n /**\n * On `blur`, remove the `focus-visible` class from the target.\n * @param {Event} e\n */\n function onBlur(e) {\n if (!isValidFocusTarget(e.target)) {\n return;\n }\n\n if (\n e.target.classList.contains('focus-visible') ||\n e.target.hasAttribute('data-focus-visible-added')\n ) {\n // To detect a tab/window switch, we look for a blur event followed\n // rapidly by a visibility change.\n // If we don't see a visibility change within 100ms, it's probably a\n // regular focus change.\n hadFocusVisibleRecently = true;\n window.clearTimeout(hadFocusVisibleRecentlyTimeout);\n hadFocusVisibleRecentlyTimeout = window.setTimeout(function() {\n hadFocusVisibleRecently = false;\n }, 100);\n removeFocusVisibleClass(e.target);\n }\n }\n\n /**\n * If the user changes tabs, keep track of whether or not the previously\n * focused element had .focus-visible.\n * @param {Event} e\n */\n function onVisibilityChange(e) {\n if (document.visibilityState === 'hidden') {\n // If the tab becomes active again, the browser will handle calling focus\n // on the element (Safari actually calls it twice).\n // If this tab change caused a blur on an element with focus-visible,\n // re-apply the class when the user switches back to the tab.\n if (hadFocusVisibleRecently) {\n hadKeyboardEvent = true;\n }\n addInitialPointerMoveListeners();\n }\n }\n\n /**\n * Add a group of listeners to detect usage of any pointing devices.\n * These listeners will be added when the polyfill first loads, and anytime\n * the window is blurred, so that they are active when the window regains\n * focus.\n */\n function addInitialPointerMoveListeners() {\n document.addEventListener('mousemove', onInitialPointerMove);\n document.addEventListener('mousedown', onInitialPointerMove);\n document.addEventListener('mouseup', onInitialPointerMove);\n document.addEventListener('pointermove', onInitialPointerMove);\n document.addEventListener('pointerdown', onInitialPointerMove);\n document.addEventListener('pointerup', onInitialPointerMove);\n document.addEventListener('touchmove', onInitialPointerMove);\n document.addEventListener('touchstart', onInitialPointerMove);\n document.addEventListener('touchend', onInitialPointerMove);\n }\n\n function removeInitialPointerMoveListeners() {\n document.removeEventListener('mousemove', onInitialPointerMove);\n document.removeEventListener('mousedown', onInitialPointerMove);\n document.removeEventListener('mouseup', onInitialPointerMove);\n document.removeEventListener('pointermove', onInitialPointerMove);\n document.removeEventListener('pointerdown', onInitialPointerMove);\n document.removeEventListener('pointerup', onInitialPointerMove);\n document.removeEventListener('touchmove', onInitialPointerMove);\n document.removeEventListener('touchstart', onInitialPointerMove);\n document.removeEventListener('touchend', onInitialPointerMove);\n }\n\n /**\n * When the polfyill first loads, assume the user is in keyboard modality.\n * If any event is received from a pointing device (e.g. mouse, pointer,\n * touch), turn off keyboard modality.\n * This accounts for situations where focus enters the page from the URL bar.\n * @param {Event} e\n */\n function onInitialPointerMove(e) {\n // Work around a Safari quirk that fires a mousemove on <html> whenever the\n // window blurs, even if you're tabbing out of the page. \u00AF\\_(\u30C4)_/\u00AF\n if (e.target.nodeName && e.target.nodeName.toLowerCase() === 'html') {\n return;\n }\n\n hadKeyboardEvent = false;\n removeInitialPointerMoveListeners();\n }\n\n // For some kinds of state, we are interested in changes at the global scope\n // only. For example, global pointer input, global key presses and global\n // visibility change should affect the state at every scope:\n document.addEventListener('keydown', onKeyDown, true);\n document.addEventListener('mousedown', onPointerDown, true);\n document.addEventListener('pointerdown', onPointerDown, true);\n document.addEventListener('touchstart', onPointerDown, true);\n document.addEventListener('visibilitychange', onVisibilityChange, true);\n\n addInitialPointerMoveListeners();\n\n // For focus and blur, we specifically care about state changes in the local\n // scope. This is because focus / blur events that originate from within a\n // shadow root are not re-dispatched from the host element if it was already\n // the active element in its own scope:\n scope.addEventListener('focus', onFocus, true);\n scope.addEventListener('blur', onBlur, true);\n\n // We detect that a node is a ShadowRoot by ensuring that it is a\n // DocumentFragment and also has a host property. This check covers native\n // implementation and polyfill implementation transparently. If we only cared\n // about the native implementation, we could just check if the scope was\n // an instance of a ShadowRoot.\n if (scope.nodeType === Node.DOCUMENT_FRAGMENT_NODE && scope.host) {\n // Since a ShadowRoot is a special kind of DocumentFragment, it does not\n // have a root element to add a class to. So, we add this attribute to the\n // host element instead:\n scope.host.setAttribute('data-js-focus-visible', '');\n } else if (scope.nodeType === Node.DOCUMENT_NODE) {\n document.documentElement.classList.add('js-focus-visible');\n document.documentElement.setAttribute('data-js-focus-visible', '');\n }\n }\n\n // It is important to wrap all references to global window and document in\n // these checks to support server-side rendering use cases\n // @see https://github.com/WICG/focus-visible/issues/199\n if (typeof window !== 'undefined' && typeof document !== 'undefined') {\n // Make the polyfill helper globally available. This can be used as a signal\n // to interested libraries that wish to coordinate with the polyfill for e.g.,\n // applying the polyfill to a shadow root:\n window.applyFocusVisiblePolyfill = applyFocusVisiblePolyfill;\n\n // Notify interested libraries of the polyfill's presence, in case the\n // polyfill was loaded lazily:\n var event;\n\n try {\n event = new CustomEvent('focus-visible-polyfill-ready');\n } catch (error) {\n // IE11 does not support using CustomEvent as a constructor directly:\n event = document.createEvent('CustomEvent');\n event.initCustomEvent('focus-visible-polyfill-ready', false, false, {});\n }\n\n window.dispatchEvent(event);\n }\n\n if (typeof document !== 'undefined') {\n // Apply the polyfill to the global document, so that no JavaScript\n // coordination is required to use the polyfill in the top-level document:\n applyFocusVisiblePolyfill(document);\n }\n\n})));\n", "/*!\n * escape-html\n * Copyright(c) 2012-2013 TJ Holowaychuk\n * Copyright(c) 2015 Andreas Lubbe\n * Copyright(c) 2015 Tiancheng \"Timothy\" Gu\n * MIT Licensed\n */\n\n'use strict';\n\n/**\n * Module variables.\n * @private\n */\n\nvar matchHtmlRegExp = /[\"'&<>]/;\n\n/**\n * Module exports.\n * @public\n */\n\nmodule.exports = escapeHtml;\n\n/**\n * Escape special characters in the given string of html.\n *\n * @param {string} string The string to escape for inserting into HTML\n * @return {string}\n * @public\n */\n\nfunction escapeHtml(string) {\n var str = '' + string;\n var match = matchHtmlRegExp.exec(str);\n\n if (!match) {\n return str;\n }\n\n var escape;\n var html = '';\n var index = 0;\n var lastIndex = 0;\n\n for (index = match.index; index < str.length; index++) {\n switch (str.charCodeAt(index)) {\n case 34: // \"\n escape = '"';\n break;\n case 38: // &\n escape = '&';\n break;\n case 39: // '\n escape = ''';\n break;\n case 60: // <\n escape = '<';\n break;\n case 62: // >\n escape = '>';\n break;\n default:\n continue;\n }\n\n if (lastIndex !== index) {\n html += str.substring(lastIndex, index);\n }\n\n lastIndex = index + 1;\n html += escape;\n }\n\n return lastIndex !== index\n ? html + str.substring(lastIndex, index)\n : html;\n}\n", "/*!\n * clipboard.js v2.0.11\n * https://clipboardjs.com/\n *\n * Licensed MIT \u00A9 Zeno Rocha\n */\n(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"ClipboardJS\"] = factory();\n\telse\n\t\troot[\"ClipboardJS\"] = factory();\n})(this, function() {\nreturn /******/ (function() { // webpackBootstrap\n/******/ \tvar __webpack_modules__ = ({\n\n/***/ 686:\n/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\n\n// EXPORTS\n__webpack_require__.d(__webpack_exports__, {\n \"default\": function() { return /* binding */ clipboard; }\n});\n\n// EXTERNAL MODULE: ./node_modules/tiny-emitter/index.js\nvar tiny_emitter = __webpack_require__(279);\nvar tiny_emitter_default = /*#__PURE__*/__webpack_require__.n(tiny_emitter);\n// EXTERNAL MODULE: ./node_modules/good-listener/src/listen.js\nvar listen = __webpack_require__(370);\nvar listen_default = /*#__PURE__*/__webpack_require__.n(listen);\n// EXTERNAL MODULE: ./node_modules/select/src/select.js\nvar src_select = __webpack_require__(817);\nvar select_default = /*#__PURE__*/__webpack_require__.n(src_select);\n;// CONCATENATED MODULE: ./src/common/command.js\n/**\n * Executes a given operation type.\n * @param {String} type\n * @return {Boolean}\n */\nfunction command(type) {\n try {\n return document.execCommand(type);\n } catch (err) {\n return false;\n }\n}\n;// CONCATENATED MODULE: ./src/actions/cut.js\n\n\n/**\n * Cut action wrapper.\n * @param {String|HTMLElement} target\n * @return {String}\n */\n\nvar ClipboardActionCut = function ClipboardActionCut(target) {\n var selectedText = select_default()(target);\n command('cut');\n return selectedText;\n};\n\n/* harmony default export */ var actions_cut = (ClipboardActionCut);\n;// CONCATENATED MODULE: ./src/common/create-fake-element.js\n/**\n * Creates a fake textarea element with a value.\n * @param {String} value\n * @return {HTMLElement}\n */\nfunction createFakeElement(value) {\n var isRTL = document.documentElement.getAttribute('dir') === 'rtl';\n var fakeElement = document.createElement('textarea'); // Prevent zooming on iOS\n\n fakeElement.style.fontSize = '12pt'; // Reset box model\n\n fakeElement.style.border = '0';\n fakeElement.style.padding = '0';\n fakeElement.style.margin = '0'; // Move element out of screen horizontally\n\n fakeElement.style.position = 'absolute';\n fakeElement.style[isRTL ? 'right' : 'left'] = '-9999px'; // Move element to the same position vertically\n\n var yPosition = window.pageYOffset || document.documentElement.scrollTop;\n fakeElement.style.top = \"\".concat(yPosition, \"px\");\n fakeElement.setAttribute('readonly', '');\n fakeElement.value = value;\n return fakeElement;\n}\n;// CONCATENATED MODULE: ./src/actions/copy.js\n\n\n\n/**\n * Create fake copy action wrapper using a fake element.\n * @param {String} target\n * @param {Object} options\n * @return {String}\n */\n\nvar fakeCopyAction = function fakeCopyAction(value, options) {\n var fakeElement = createFakeElement(value);\n options.container.appendChild(fakeElement);\n var selectedText = select_default()(fakeElement);\n command('copy');\n fakeElement.remove();\n return selectedText;\n};\n/**\n * Copy action wrapper.\n * @param {String|HTMLElement} target\n * @param {Object} options\n * @return {String}\n */\n\n\nvar ClipboardActionCopy = function ClipboardActionCopy(target) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {\n container: document.body\n };\n var selectedText = '';\n\n if (typeof target === 'string') {\n selectedText = fakeCopyAction(target, options);\n } else if (target instanceof HTMLInputElement && !['text', 'search', 'url', 'tel', 'password'].includes(target === null || target === void 0 ? void 0 : target.type)) {\n // If input type doesn't support `setSelectionRange`. Simulate it. https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/setSelectionRange\n selectedText = fakeCopyAction(target.value, options);\n } else {\n selectedText = select_default()(target);\n command('copy');\n }\n\n return selectedText;\n};\n\n/* harmony default export */ var actions_copy = (ClipboardActionCopy);\n;// CONCATENATED MODULE: ./src/actions/default.js\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\n\n\n/**\n * Inner function which performs selection from either `text` or `target`\n * properties and then executes copy or cut operations.\n * @param {Object} options\n */\n\nvar ClipboardActionDefault = function ClipboardActionDefault() {\n var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n // Defines base properties passed from constructor.\n var _options$action = options.action,\n action = _options$action === void 0 ? 'copy' : _options$action,\n container = options.container,\n target = options.target,\n text = options.text; // Sets the `action` to be performed which can be either 'copy' or 'cut'.\n\n if (action !== 'copy' && action !== 'cut') {\n throw new Error('Invalid \"action\" value, use either \"copy\" or \"cut\"');\n } // Sets the `target` property using an element that will be have its content copied.\n\n\n if (target !== undefined) {\n if (target && _typeof(target) === 'object' && target.nodeType === 1) {\n if (action === 'copy' && target.hasAttribute('disabled')) {\n throw new Error('Invalid \"target\" attribute. Please use \"readonly\" instead of \"disabled\" attribute');\n }\n\n if (action === 'cut' && (target.hasAttribute('readonly') || target.hasAttribute('disabled'))) {\n throw new Error('Invalid \"target\" attribute. You can\\'t cut text from elements with \"readonly\" or \"disabled\" attributes');\n }\n } else {\n throw new Error('Invalid \"target\" value, use a valid Element');\n }\n } // Define selection strategy based on `text` property.\n\n\n if (text) {\n return actions_copy(text, {\n container: container\n });\n } // Defines which selection strategy based on `target` property.\n\n\n if (target) {\n return action === 'cut' ? actions_cut(target) : actions_copy(target, {\n container: container\n });\n }\n};\n\n/* harmony default export */ var actions_default = (ClipboardActionDefault);\n;// CONCATENATED MODULE: ./src/clipboard.js\nfunction clipboard_typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { clipboard_typeof = function _typeof(obj) { return typeof obj; }; } else { clipboard_typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return clipboard_typeof(obj); }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (clipboard_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\n\n\n\n\n\n/**\n * Helper function to retrieve attribute value.\n * @param {String} suffix\n * @param {Element} element\n */\n\nfunction getAttributeValue(suffix, element) {\n var attribute = \"data-clipboard-\".concat(suffix);\n\n if (!element.hasAttribute(attribute)) {\n return;\n }\n\n return element.getAttribute(attribute);\n}\n/**\n * Base class which takes one or more elements, adds event listeners to them,\n * and instantiates a new `ClipboardAction` on each click.\n */\n\n\nvar Clipboard = /*#__PURE__*/function (_Emitter) {\n _inherits(Clipboard, _Emitter);\n\n var _super = _createSuper(Clipboard);\n\n /**\n * @param {String|HTMLElement|HTMLCollection|NodeList} trigger\n * @param {Object} options\n */\n function Clipboard(trigger, options) {\n var _this;\n\n _classCallCheck(this, Clipboard);\n\n _this = _super.call(this);\n\n _this.resolveOptions(options);\n\n _this.listenClick(trigger);\n\n return _this;\n }\n /**\n * Defines if attributes would be resolved using internal setter functions\n * or custom functions that were passed in the constructor.\n * @param {Object} options\n */\n\n\n _createClass(Clipboard, [{\n key: \"resolveOptions\",\n value: function resolveOptions() {\n var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n this.action = typeof options.action === 'function' ? options.action : this.defaultAction;\n this.target = typeof options.target === 'function' ? options.target : this.defaultTarget;\n this.text = typeof options.text === 'function' ? options.text : this.defaultText;\n this.container = clipboard_typeof(options.container) === 'object' ? options.container : document.body;\n }\n /**\n * Adds a click event listener to the passed trigger.\n * @param {String|HTMLElement|HTMLCollection|NodeList} trigger\n */\n\n }, {\n key: \"listenClick\",\n value: function listenClick(trigger) {\n var _this2 = this;\n\n this.listener = listen_default()(trigger, 'click', function (e) {\n return _this2.onClick(e);\n });\n }\n /**\n * Defines a new `ClipboardAction` on each click event.\n * @param {Event} e\n */\n\n }, {\n key: \"onClick\",\n value: function onClick(e) {\n var trigger = e.delegateTarget || e.currentTarget;\n var action = this.action(trigger) || 'copy';\n var text = actions_default({\n action: action,\n container: this.container,\n target: this.target(trigger),\n text: this.text(trigger)\n }); // Fires an event based on the copy operation result.\n\n this.emit(text ? 'success' : 'error', {\n action: action,\n text: text,\n trigger: trigger,\n clearSelection: function clearSelection() {\n if (trigger) {\n trigger.focus();\n }\n\n window.getSelection().removeAllRanges();\n }\n });\n }\n /**\n * Default `action` lookup function.\n * @param {Element} trigger\n */\n\n }, {\n key: \"defaultAction\",\n value: function defaultAction(trigger) {\n return getAttributeValue('action', trigger);\n }\n /**\n * Default `target` lookup function.\n * @param {Element} trigger\n */\n\n }, {\n key: \"defaultTarget\",\n value: function defaultTarget(trigger) {\n var selector = getAttributeValue('target', trigger);\n\n if (selector) {\n return document.querySelector(selector);\n }\n }\n /**\n * Allow fire programmatically a copy action\n * @param {String|HTMLElement} target\n * @param {Object} options\n * @returns Text copied.\n */\n\n }, {\n key: \"defaultText\",\n\n /**\n * Default `text` lookup function.\n * @param {Element} trigger\n */\n value: function defaultText(trigger) {\n return getAttributeValue('text', trigger);\n }\n /**\n * Destroy lifecycle.\n */\n\n }, {\n key: \"destroy\",\n value: function destroy() {\n this.listener.destroy();\n }\n }], [{\n key: \"copy\",\n value: function copy(target) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {\n container: document.body\n };\n return actions_copy(target, options);\n }\n /**\n * Allow fire programmatically a cut action\n * @param {String|HTMLElement} target\n * @returns Text cutted.\n */\n\n }, {\n key: \"cut\",\n value: function cut(target) {\n return actions_cut(target);\n }\n /**\n * Returns the support of the given action, or all actions if no action is\n * given.\n * @param {String} [action]\n */\n\n }, {\n key: \"isSupported\",\n value: function isSupported() {\n var action = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ['copy', 'cut'];\n var actions = typeof action === 'string' ? [action] : action;\n var support = !!document.queryCommandSupported;\n actions.forEach(function (action) {\n support = support && !!document.queryCommandSupported(action);\n });\n return support;\n }\n }]);\n\n return Clipboard;\n}((tiny_emitter_default()));\n\n/* harmony default export */ var clipboard = (Clipboard);\n\n/***/ }),\n\n/***/ 828:\n/***/ (function(module) {\n\nvar DOCUMENT_NODE_TYPE = 9;\n\n/**\n * A polyfill for Element.matches()\n */\nif (typeof Element !== 'undefined' && !Element.prototype.matches) {\n var proto = Element.prototype;\n\n proto.matches = proto.matchesSelector ||\n proto.mozMatchesSelector ||\n proto.msMatchesSelector ||\n proto.oMatchesSelector ||\n proto.webkitMatchesSelector;\n}\n\n/**\n * Finds the closest parent that matches a selector.\n *\n * @param {Element} element\n * @param {String} selector\n * @return {Function}\n */\nfunction closest (element, selector) {\n while (element && element.nodeType !== DOCUMENT_NODE_TYPE) {\n if (typeof element.matches === 'function' &&\n element.matches(selector)) {\n return element;\n }\n element = element.parentNode;\n }\n}\n\nmodule.exports = closest;\n\n\n/***/ }),\n\n/***/ 438:\n/***/ (function(module, __unused_webpack_exports, __webpack_require__) {\n\nvar closest = __webpack_require__(828);\n\n/**\n * Delegates event to a selector.\n *\n * @param {Element} element\n * @param {String} selector\n * @param {String} type\n * @param {Function} callback\n * @param {Boolean} useCapture\n * @return {Object}\n */\nfunction _delegate(element, selector, type, callback, useCapture) {\n var listenerFn = listener.apply(this, arguments);\n\n element.addEventListener(type, listenerFn, useCapture);\n\n return {\n destroy: function() {\n element.removeEventListener(type, listenerFn, useCapture);\n }\n }\n}\n\n/**\n * Delegates event to a selector.\n *\n * @param {Element|String|Array} [elements]\n * @param {String} selector\n * @param {String} type\n * @param {Function} callback\n * @param {Boolean} useCapture\n * @return {Object}\n */\nfunction delegate(elements, selector, type, callback, useCapture) {\n // Handle the regular Element usage\n if (typeof elements.addEventListener === 'function') {\n return _delegate.apply(null, arguments);\n }\n\n // Handle Element-less usage, it defaults to global delegation\n if (typeof type === 'function') {\n // Use `document` as the first parameter, then apply arguments\n // This is a short way to .unshift `arguments` without running into deoptimizations\n return _delegate.bind(null, document).apply(null, arguments);\n }\n\n // Handle Selector-based usage\n if (typeof elements === 'string') {\n elements = document.querySelectorAll(elements);\n }\n\n // Handle Array-like based usage\n return Array.prototype.map.call(elements, function (element) {\n return _delegate(element, selector, type, callback, useCapture);\n });\n}\n\n/**\n * Finds closest match and invokes callback.\n *\n * @param {Element} element\n * @param {String} selector\n * @param {String} type\n * @param {Function} callback\n * @return {Function}\n */\nfunction listener(element, selector, type, callback) {\n return function(e) {\n e.delegateTarget = closest(e.target, selector);\n\n if (e.delegateTarget) {\n callback.call(element, e);\n }\n }\n}\n\nmodule.exports = delegate;\n\n\n/***/ }),\n\n/***/ 879:\n/***/ (function(__unused_webpack_module, exports) {\n\n/**\n * Check if argument is a HTML element.\n *\n * @param {Object} value\n * @return {Boolean}\n */\nexports.node = function(value) {\n return value !== undefined\n && value instanceof HTMLElement\n && value.nodeType === 1;\n};\n\n/**\n * Check if argument is a list of HTML elements.\n *\n * @param {Object} value\n * @return {Boolean}\n */\nexports.nodeList = function(value) {\n var type = Object.prototype.toString.call(value);\n\n return value !== undefined\n && (type === '[object NodeList]' || type === '[object HTMLCollection]')\n && ('length' in value)\n && (value.length === 0 || exports.node(value[0]));\n};\n\n/**\n * Check if argument is a string.\n *\n * @param {Object} value\n * @return {Boolean}\n */\nexports.string = function(value) {\n return typeof value === 'string'\n || value instanceof String;\n};\n\n/**\n * Check if argument is a function.\n *\n * @param {Object} value\n * @return {Boolean}\n */\nexports.fn = function(value) {\n var type = Object.prototype.toString.call(value);\n\n return type === '[object Function]';\n};\n\n\n/***/ }),\n\n/***/ 370:\n/***/ (function(module, __unused_webpack_exports, __webpack_require__) {\n\nvar is = __webpack_require__(879);\nvar delegate = __webpack_require__(438);\n\n/**\n * Validates all params and calls the right\n * listener function based on its target type.\n *\n * @param {String|HTMLElement|HTMLCollection|NodeList} target\n * @param {String} type\n * @param {Function} callback\n * @return {Object}\n */\nfunction listen(target, type, callback) {\n if (!target && !type && !callback) {\n throw new Error('Missing required arguments');\n }\n\n if (!is.string(type)) {\n throw new TypeError('Second argument must be a String');\n }\n\n if (!is.fn(callback)) {\n throw new TypeError('Third argument must be a Function');\n }\n\n if (is.node(target)) {\n return listenNode(target, type, callback);\n }\n else if (is.nodeList(target)) {\n return listenNodeList(target, type, callback);\n }\n else if (is.string(target)) {\n return listenSelector(target, type, callback);\n }\n else {\n throw new TypeError('First argument must be a String, HTMLElement, HTMLCollection, or NodeList');\n }\n}\n\n/**\n * Adds an event listener to a HTML element\n * and returns a remove listener function.\n *\n * @param {HTMLElement} node\n * @param {String} type\n * @param {Function} callback\n * @return {Object}\n */\nfunction listenNode(node, type, callback) {\n node.addEventListener(type, callback);\n\n return {\n destroy: function() {\n node.removeEventListener(type, callback);\n }\n }\n}\n\n/**\n * Add an event listener to a list of HTML elements\n * and returns a remove listener function.\n *\n * @param {NodeList|HTMLCollection} nodeList\n * @param {String} type\n * @param {Function} callback\n * @return {Object}\n */\nfunction listenNodeList(nodeList, type, callback) {\n Array.prototype.forEach.call(nodeList, function(node) {\n node.addEventListener(type, callback);\n });\n\n return {\n destroy: function() {\n Array.prototype.forEach.call(nodeList, function(node) {\n node.removeEventListener(type, callback);\n });\n }\n }\n}\n\n/**\n * Add an event listener to a selector\n * and returns a remove listener function.\n *\n * @param {String} selector\n * @param {String} type\n * @param {Function} callback\n * @return {Object}\n */\nfunction listenSelector(selector, type, callback) {\n return delegate(document.body, selector, type, callback);\n}\n\nmodule.exports = listen;\n\n\n/***/ }),\n\n/***/ 817:\n/***/ (function(module) {\n\nfunction select(element) {\n var selectedText;\n\n if (element.nodeName === 'SELECT') {\n element.focus();\n\n selectedText = element.value;\n }\n else if (element.nodeName === 'INPUT' || element.nodeName === 'TEXTAREA') {\n var isReadOnly = element.hasAttribute('readonly');\n\n if (!isReadOnly) {\n element.setAttribute('readonly', '');\n }\n\n element.select();\n element.setSelectionRange(0, element.value.length);\n\n if (!isReadOnly) {\n element.removeAttribute('readonly');\n }\n\n selectedText = element.value;\n }\n else {\n if (element.hasAttribute('contenteditable')) {\n element.focus();\n }\n\n var selection = window.getSelection();\n var range = document.createRange();\n\n range.selectNodeContents(element);\n selection.removeAllRanges();\n selection.addRange(range);\n\n selectedText = selection.toString();\n }\n\n return selectedText;\n}\n\nmodule.exports = select;\n\n\n/***/ }),\n\n/***/ 279:\n/***/ (function(module) {\n\nfunction E () {\n // Keep this empty so it's easier to inherit from\n // (via https://github.com/lipsmack from https://github.com/scottcorgan/tiny-emitter/issues/3)\n}\n\nE.prototype = {\n on: function (name, callback, ctx) {\n var e = this.e || (this.e = {});\n\n (e[name] || (e[name] = [])).push({\n fn: callback,\n ctx: ctx\n });\n\n return this;\n },\n\n once: function (name, callback, ctx) {\n var self = this;\n function listener () {\n self.off(name, listener);\n callback.apply(ctx, arguments);\n };\n\n listener._ = callback\n return this.on(name, listener, ctx);\n },\n\n emit: function (name) {\n var data = [].slice.call(arguments, 1);\n var evtArr = ((this.e || (this.e = {}))[name] || []).slice();\n var i = 0;\n var len = evtArr.length;\n\n for (i; i < len; i++) {\n evtArr[i].fn.apply(evtArr[i].ctx, data);\n }\n\n return this;\n },\n\n off: function (name, callback) {\n var e = this.e || (this.e = {});\n var evts = e[name];\n var liveEvents = [];\n\n if (evts && callback) {\n for (var i = 0, len = evts.length; i < len; i++) {\n if (evts[i].fn !== callback && evts[i].fn._ !== callback)\n liveEvents.push(evts[i]);\n }\n }\n\n // Remove event from queue to prevent memory leak\n // Suggested by https://github.com/lazd\n // Ref: https://github.com/scottcorgan/tiny-emitter/commit/c6ebfaa9bc973b33d110a84a307742b7cf94c953#commitcomment-5024910\n\n (liveEvents.length)\n ? e[name] = liveEvents\n : delete e[name];\n\n return this;\n }\n};\n\nmodule.exports = E;\nmodule.exports.TinyEmitter = E;\n\n\n/***/ })\n\n/******/ \t});\n/************************************************************************/\n/******/ \t// The module cache\n/******/ \tvar __webpack_module_cache__ = {};\n/******/ \t\n/******/ \t// The require function\n/******/ \tfunction __webpack_require__(moduleId) {\n/******/ \t\t// Check if module is in cache\n/******/ \t\tif(__webpack_module_cache__[moduleId]) {\n/******/ \t\t\treturn __webpack_module_cache__[moduleId].exports;\n/******/ \t\t}\n/******/ \t\t// Create a new module (and put it into the cache)\n/******/ \t\tvar module = __webpack_module_cache__[moduleId] = {\n/******/ \t\t\t// no module.id needed\n/******/ \t\t\t// no module.loaded needed\n/******/ \t\t\texports: {}\n/******/ \t\t};\n/******/ \t\n/******/ \t\t// Execute the module function\n/******/ \t\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n/******/ \t\n/******/ \t\t// Return the exports of the module\n/******/ \t\treturn module.exports;\n/******/ \t}\n/******/ \t\n/************************************************************************/\n/******/ \t/* webpack/runtime/compat get default export */\n/******/ \t!function() {\n/******/ \t\t// getDefaultExport function for compatibility with non-harmony modules\n/******/ \t\t__webpack_require__.n = function(module) {\n/******/ \t\t\tvar getter = module && module.__esModule ?\n/******/ \t\t\t\tfunction() { return module['default']; } :\n/******/ \t\t\t\tfunction() { return module; };\n/******/ \t\t\t__webpack_require__.d(getter, { a: getter });\n/******/ \t\t\treturn getter;\n/******/ \t\t};\n/******/ \t}();\n/******/ \t\n/******/ \t/* webpack/runtime/define property getters */\n/******/ \t!function() {\n/******/ \t\t// define getter functions for harmony exports\n/******/ \t\t__webpack_require__.d = function(exports, definition) {\n/******/ \t\t\tfor(var key in definition) {\n/******/ \t\t\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n/******/ \t\t\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n/******/ \t\t\t\t}\n/******/ \t\t\t}\n/******/ \t\t};\n/******/ \t}();\n/******/ \t\n/******/ \t/* webpack/runtime/hasOwnProperty shorthand */\n/******/ \t!function() {\n/******/ \t\t__webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }\n/******/ \t}();\n/******/ \t\n/************************************************************************/\n/******/ \t// module exports must be returned from runtime so entry inlining is disabled\n/******/ \t// startup\n/******/ \t// Load entry module and return exports\n/******/ \treturn __webpack_require__(686);\n/******/ })()\n.default;\n});", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport \"focus-visible\"\n\nimport {\n EMPTY,\n NEVER,\n Observable,\n Subject,\n defer,\n delay,\n filter,\n map,\n merge,\n mergeWith,\n shareReplay,\n switchMap\n} from \"rxjs\"\n\nimport { configuration, feature } from \"./_\"\nimport {\n at,\n getActiveElement,\n getOptionalElement,\n requestJSON,\n setLocation,\n setToggle,\n watchDocument,\n watchKeyboard,\n watchLocation,\n watchLocationTarget,\n watchMedia,\n watchPrint,\n watchScript,\n watchViewport\n} from \"./browser\"\nimport {\n getComponentElement,\n getComponentElements,\n mountAnnounce,\n mountBackToTop,\n mountConsent,\n mountContent,\n mountDialog,\n mountHeader,\n mountHeaderTitle,\n mountPalette,\n mountProgress,\n mountSearch,\n mountSearchHiglight,\n mountSidebar,\n mountSource,\n mountTableOfContents,\n mountTabs,\n watchHeader,\n watchMain\n} from \"./components\"\nimport {\n SearchIndex,\n setupClipboardJS,\n setupInstantNavigation,\n setupVersionSelector\n} from \"./integrations\"\nimport {\n patchEllipsis,\n patchIndeterminate,\n patchScrollfix,\n patchScrolllock\n} from \"./patches\"\nimport \"./polyfills\"\n\n/* ----------------------------------------------------------------------------\n * Functions - @todo refactor\n * ------------------------------------------------------------------------- */\n\n/**\n * Fetch search index\n *\n * @returns Search index observable\n */\nfunction fetchSearchIndex(): Observable<SearchIndex> {\n if (location.protocol === \"file:\") {\n return watchScript(\n `${new URL(\"search/search_index.js\", config.base)}`\n )\n .pipe(\n // @ts-ignore - @todo fix typings\n map(() => __index),\n shareReplay(1)\n )\n } else {\n return requestJSON<SearchIndex>(\n new URL(\"search/search_index.json\", config.base)\n )\n }\n}\n\n/* ----------------------------------------------------------------------------\n * Application\n * ------------------------------------------------------------------------- */\n\n/* Yay, JavaScript is available */\ndocument.documentElement.classList.remove(\"no-js\")\ndocument.documentElement.classList.add(\"js\")\n\n/* Set up navigation observables and subjects */\nconst document$ = watchDocument()\nconst location$ = watchLocation()\nconst target$ = watchLocationTarget(location$)\nconst keyboard$ = watchKeyboard()\n\n/* Set up media observables */\nconst viewport$ = watchViewport()\nconst tablet$ = watchMedia(\"(min-width: 960px)\")\nconst screen$ = watchMedia(\"(min-width: 1220px)\")\nconst print$ = watchPrint()\n\n/* Retrieve search index, if search is enabled */\nconst config = configuration()\nconst index$ = document.forms.namedItem(\"search\")\n ? fetchSearchIndex()\n : NEVER\n\n/* Set up Clipboard.js integration */\nconst alert$ = new Subject<string>()\nsetupClipboardJS({ alert$ })\n\n/* Set up progress indicator */\nconst progress$ = new Subject<number>()\n\n/* Set up instant navigation, if enabled */\nif (feature(\"navigation.instant\"))\n setupInstantNavigation({ location$, viewport$, progress$ })\n .subscribe(document$)\n\n/* Set up version selector */\nif (config.version?.provider === \"mike\")\n setupVersionSelector({ document$ })\n\n/* Always close drawer and search on navigation */\nmerge(location$, target$)\n .pipe(\n delay(125)\n )\n .subscribe(() => {\n setToggle(\"drawer\", false)\n setToggle(\"search\", false)\n })\n\n/* Set up global keyboard handlers */\nkeyboard$\n .pipe(\n filter(({ mode }) => mode === \"global\")\n )\n .subscribe(key => {\n switch (key.type) {\n\n /* Go to previous page */\n case \"p\":\n case \",\":\n const prev = getOptionalElement<HTMLLinkElement>(\"link[rel=prev]\")\n if (typeof prev !== \"undefined\")\n setLocation(prev)\n break\n\n /* Go to next page */\n case \"n\":\n case \".\":\n const next = getOptionalElement<HTMLLinkElement>(\"link[rel=next]\")\n if (typeof next !== \"undefined\")\n setLocation(next)\n break\n\n /* Expand navigation, see https://bit.ly/3ZjG5io */\n case \"Enter\":\n const active = getActiveElement()\n if (active instanceof HTMLLabelElement)\n active.click()\n }\n })\n\n/* Set up patches */\npatchEllipsis({ viewport$, document$ })\npatchIndeterminate({ document$, tablet$ })\npatchScrollfix({ document$ })\npatchScrolllock({ viewport$, tablet$ })\n\n/* Set up header and main area observable */\nconst header$ = watchHeader(getComponentElement(\"header\"), { viewport$ })\nconst main$ = document$\n .pipe(\n map(() => getComponentElement(\"main\")),\n switchMap(el => watchMain(el, { viewport$, header$ })),\n shareReplay(1)\n )\n\n/* Set up control component observables */\nconst control$ = merge(\n\n /* Consent */\n ...getComponentElements(\"consent\")\n .map(el => mountConsent(el, { target$ })),\n\n /* Dialog */\n ...getComponentElements(\"dialog\")\n .map(el => mountDialog(el, { alert$ })),\n\n /* Color palette */\n ...getComponentElements(\"palette\")\n .map(el => mountPalette(el)),\n\n /* Progress bar */\n ...getComponentElements(\"progress\")\n .map(el => mountProgress(el, { progress$ })),\n\n /* Search */\n ...getComponentElements(\"search\")\n .map(el => mountSearch(el, { index$, keyboard$ })),\n\n /* Repository information */\n ...getComponentElements(\"source\")\n .map(el => mountSource(el))\n)\n\n/* Set up content component observables */\nconst content$ = defer(() => merge(\n\n /* Announcement bar */\n ...getComponentElements(\"announce\")\n .map(el => mountAnnounce(el)),\n\n /* Content */\n ...getComponentElements(\"content\")\n .map(el => mountContent(el, { viewport$, target$, print$ })),\n\n /* Search highlighting */\n ...getComponentElements(\"content\")\n .map(el => feature(\"search.highlight\")\n ? mountSearchHiglight(el, { index$, location$ })\n : EMPTY\n ),\n\n /* Header */\n ...getComponentElements(\"header\")\n .map(el => mountHeader(el, { viewport$, header$, main$ })),\n\n /* Header title */\n ...getComponentElements(\"header-title\")\n .map(el => mountHeaderTitle(el, { viewport$, header$ })),\n\n /* Sidebar */\n ...getComponentElements(\"sidebar\")\n .map(el => el.getAttribute(\"data-md-type\") === \"navigation\"\n ? at(screen$, () => mountSidebar(el, { viewport$, header$, main$ }))\n : at(tablet$, () => mountSidebar(el, { viewport$, header$, main$ }))\n ),\n\n /* Navigation tabs */\n ...getComponentElements(\"tabs\")\n .map(el => mountTabs(el, { viewport$, header$ })),\n\n /* Table of contents */\n ...getComponentElements(\"toc\")\n .map(el => mountTableOfContents(el, {\n viewport$, header$, main$, target$\n })),\n\n /* Back-to-top button */\n ...getComponentElements(\"top\")\n .map(el => mountBackToTop(el, { viewport$, header$, main$, target$ }))\n))\n\n/* Set up component observables */\nconst component$ = document$\n .pipe(\n switchMap(() => content$),\n mergeWith(control$),\n shareReplay(1)\n )\n\n/* Subscribe to all components */\ncomponent$.subscribe()\n\n/* ----------------------------------------------------------------------------\n * Exports\n * ------------------------------------------------------------------------- */\n\nwindow.document$ = document$ /* Document observable */\nwindow.location$ = location$ /* Location subject */\nwindow.target$ = target$ /* Location target observable */\nwindow.keyboard$ = keyboard$ /* Keyboard observable */\nwindow.viewport$ = viewport$ /* Viewport observable */\nwindow.tablet$ = tablet$ /* Media tablet observable */\nwindow.screen$ = screen$ /* Media screen observable */\nwindow.print$ = print$ /* Media print observable */\nwindow.alert$ = alert$ /* Alert subject */\nwindow.progress$ = progress$ /* Progress indicator subject */\nwindow.component$ = component$ /* Component observable */\n", "/******************************************************************************\nCopyright (c) Microsoft Corporation.\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n***************************************************************************** */\n/* global Reflect, Promise, SuppressedError, Symbol, Iterator */\n\nvar extendStatics = function(d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n};\n\nexport function __extends(d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n}\n\nexport var __assign = function() {\n __assign = Object.assign || function __assign(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\n }\n return t;\n }\n return __assign.apply(this, arguments);\n}\n\nexport function __rest(s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n}\n\nexport function __decorate(decorators, target, key, desc) {\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\n return c > 3 && r && Object.defineProperty(target, key, r), r;\n}\n\nexport function __param(paramIndex, decorator) {\n return function (target, key) { decorator(target, key, paramIndex); }\n}\n\nexport function __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\n var _, done = false;\n for (var i = decorators.length - 1; i >= 0; i--) {\n var context = {};\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\n if (kind === \"accessor\") {\n if (result === void 0) continue;\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\n if (_ = accept(result.get)) descriptor.get = _;\n if (_ = accept(result.set)) descriptor.set = _;\n if (_ = accept(result.init)) initializers.unshift(_);\n }\n else if (_ = accept(result)) {\n if (kind === \"field\") initializers.unshift(_);\n else descriptor[key] = _;\n }\n }\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\n done = true;\n};\n\nexport function __runInitializers(thisArg, initializers, value) {\n var useValue = arguments.length > 2;\n for (var i = 0; i < initializers.length; i++) {\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\n }\n return useValue ? value : void 0;\n};\n\nexport function __propKey(x) {\n return typeof x === \"symbol\" ? x : \"\".concat(x);\n};\n\nexport function __setFunctionName(f, name, prefix) {\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\n};\n\nexport function __metadata(metadataKey, metadataValue) {\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\n}\n\nexport function __awaiter(thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n}\n\nexport function __generator(thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === \"function\" ? Iterator : Object).prototype);\n return g.next = verb(0), g[\"throw\"] = verb(1), g[\"return\"] = verb(2), typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n}\n\nexport var __createBinding = Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n var desc = Object.getOwnPropertyDescriptor(m, k);\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n desc = { enumerable: true, get: function() { return m[k]; } };\n }\n Object.defineProperty(o, k2, desc);\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n});\n\nexport function __exportStar(m, o) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\n}\n\nexport function __values(o) {\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\n if (m) return m.call(o);\n if (o && typeof o.length === \"number\") return {\n next: function () {\n if (o && i >= o.length) o = void 0;\n return { value: o && o[i++], done: !o };\n }\n };\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\n}\n\nexport function __read(o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n}\n\n/** @deprecated */\nexport function __spread() {\n for (var ar = [], i = 0; i < arguments.length; i++)\n ar = ar.concat(__read(arguments[i]));\n return ar;\n}\n\n/** @deprecated */\nexport function __spreadArrays() {\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\n r[k] = a[j];\n return r;\n}\n\nexport function __spreadArray(to, from, pack) {\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\n if (ar || !(i in from)) {\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\n ar[i] = from[i];\n }\n }\n return to.concat(ar || Array.prototype.slice.call(from));\n}\n\nexport function __await(v) {\n return this instanceof __await ? (this.v = v, this) : new __await(v);\n}\n\nexport function __asyncGenerator(thisArg, _arguments, generator) {\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\n return i = Object.create((typeof AsyncIterator === \"function\" ? AsyncIterator : Object).prototype), verb(\"next\"), verb(\"throw\"), verb(\"return\", awaitReturn), i[Symbol.asyncIterator] = function () { return this; }, i;\n function awaitReturn(f) { return function (v) { return Promise.resolve(v).then(f, reject); }; }\n function verb(n, f) { if (g[n]) { i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; if (f) i[n] = f(i[n]); } }\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\n function fulfill(value) { resume(\"next\", value); }\n function reject(value) { resume(\"throw\", value); }\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\n}\n\nexport function __asyncDelegator(o) {\n var i, p;\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\n}\n\nexport function __asyncValues(o) {\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\n var m = o[Symbol.asyncIterator], i;\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\n}\n\nexport function __makeTemplateObject(cooked, raw) {\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\n return cooked;\n};\n\nvar __setModuleDefault = Object.create ? (function(o, v) {\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n}) : function(o, v) {\n o[\"default\"] = v;\n};\n\nexport function __importStar(mod) {\n if (mod && mod.__esModule) return mod;\n var result = {};\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n __setModuleDefault(result, mod);\n return result;\n}\n\nexport function __importDefault(mod) {\n return (mod && mod.__esModule) ? mod : { default: mod };\n}\n\nexport function __classPrivateFieldGet(receiver, state, kind, f) {\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\n}\n\nexport function __classPrivateFieldSet(receiver, state, value, kind, f) {\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\n}\n\nexport function __classPrivateFieldIn(state, receiver) {\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\n}\n\nexport function __addDisposableResource(env, value, async) {\n if (value !== null && value !== void 0) {\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\n var dispose, inner;\n if (async) {\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\n dispose = value[Symbol.asyncDispose];\n }\n if (dispose === void 0) {\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\n dispose = value[Symbol.dispose];\n if (async) inner = dispose;\n }\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\n if (inner) dispose = function() { try { inner.call(this); } catch (e) { return Promise.reject(e); } };\n env.stack.push({ value: value, dispose: dispose, async: async });\n }\n else if (async) {\n env.stack.push({ async: true });\n }\n return value;\n}\n\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\n var e = new Error(message);\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\n};\n\nexport function __disposeResources(env) {\n function fail(e) {\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\n env.hasError = true;\n }\n var r, s = 0;\n function next() {\n while (r = env.stack.pop()) {\n try {\n if (!r.async && s === 1) return s = 0, env.stack.push(r), Promise.resolve().then(next);\n if (r.dispose) {\n var result = r.dispose.call(r.value);\n if (r.async) return s |= 2, Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\n }\n else s |= 1;\n }\n catch (e) {\n fail(e);\n }\n }\n if (s === 1) return env.hasError ? Promise.reject(env.error) : Promise.resolve();\n if (env.hasError) throw env.error;\n }\n return next();\n}\n\nexport default {\n __extends,\n __assign,\n __rest,\n __decorate,\n __param,\n __metadata,\n __awaiter,\n __generator,\n __createBinding,\n __exportStar,\n __values,\n __read,\n __spread,\n __spreadArrays,\n __spreadArray,\n __await,\n __asyncGenerator,\n __asyncDelegator,\n __asyncValues,\n __makeTemplateObject,\n __importStar,\n __importDefault,\n __classPrivateFieldGet,\n __classPrivateFieldSet,\n __classPrivateFieldIn,\n __addDisposableResource,\n __disposeResources,\n};\n", "/**\n * Returns true if the object is a function.\n * @param value The value to check\n */\nexport function isFunction(value: any): value is (...args: any[]) => any {\n return typeof value === 'function';\n}\n", "/**\n * Used to create Error subclasses until the community moves away from ES5.\n *\n * This is because compiling from TypeScript down to ES5 has issues with subclassing Errors\n * as well as other built-in types: https://github.com/Microsoft/TypeScript/issues/12123\n *\n * @param createImpl A factory function to create the actual constructor implementation. The returned\n * function should be a named function that calls `_super` internally.\n */\nexport function createErrorClass<T>(createImpl: (_super: any) => any): T {\n const _super = (instance: any) => {\n Error.call(instance);\n instance.stack = new Error().stack;\n };\n\n const ctorFunc = createImpl(_super);\n ctorFunc.prototype = Object.create(Error.prototype);\n ctorFunc.prototype.constructor = ctorFunc;\n return ctorFunc;\n}\n", "import { createErrorClass } from './createErrorClass';\n\nexport interface UnsubscriptionError extends Error {\n readonly errors: any[];\n}\n\nexport interface UnsubscriptionErrorCtor {\n /**\n * @deprecated Internal implementation detail. Do not construct error instances.\n * Cannot be tagged as internal: https://github.com/ReactiveX/rxjs/issues/6269\n */\n new (errors: any[]): UnsubscriptionError;\n}\n\n/**\n * An error thrown when one or more errors have occurred during the\n * `unsubscribe` of a {@link Subscription}.\n */\nexport const UnsubscriptionError: UnsubscriptionErrorCtor = createErrorClass(\n (_super) =>\n function UnsubscriptionErrorImpl(this: any, errors: (Error | string)[]) {\n _super(this);\n this.message = errors\n ? `${errors.length} errors occurred during unsubscription:\n${errors.map((err, i) => `${i + 1}) ${err.toString()}`).join('\\n ')}`\n : '';\n this.name = 'UnsubscriptionError';\n this.errors = errors;\n }\n);\n", "/**\n * Removes an item from an array, mutating it.\n * @param arr The array to remove the item from\n * @param item The item to remove\n */\nexport function arrRemove<T>(arr: T[] | undefined | null, item: T) {\n if (arr) {\n const index = arr.indexOf(item);\n 0 <= index && arr.splice(index, 1);\n }\n}\n", "import { isFunction } from './util/isFunction';\nimport { UnsubscriptionError } from './util/UnsubscriptionError';\nimport { SubscriptionLike, TeardownLogic, Unsubscribable } from './types';\nimport { arrRemove } from './util/arrRemove';\n\n/**\n * Represents a disposable resource, such as the execution of an Observable. A\n * Subscription has one important method, `unsubscribe`, that takes no argument\n * and just disposes the resource held by the subscription.\n *\n * Additionally, subscriptions may be grouped together through the `add()`\n * method, which will attach a child Subscription to the current Subscription.\n * When a Subscription is unsubscribed, all its children (and its grandchildren)\n * will be unsubscribed as well.\n *\n * @class Subscription\n */\nexport class Subscription implements SubscriptionLike {\n /** @nocollapse */\n public static EMPTY = (() => {\n const empty = new Subscription();\n empty.closed = true;\n return empty;\n })();\n\n /**\n * A flag to indicate whether this Subscription has already been unsubscribed.\n */\n public closed = false;\n\n private _parentage: Subscription[] | Subscription | null = null;\n\n /**\n * The list of registered finalizers to execute upon unsubscription. Adding and removing from this\n * list occurs in the {@link #add} and {@link #remove} methods.\n */\n private _finalizers: Exclude<TeardownLogic, void>[] | null = null;\n\n /**\n * @param initialTeardown A function executed first as part of the finalization\n * process that is kicked off when {@link #unsubscribe} is called.\n */\n constructor(private initialTeardown?: () => void) {}\n\n /**\n * Disposes the resources held by the subscription. May, for instance, cancel\n * an ongoing Observable execution or cancel any other type of work that\n * started when the Subscription was created.\n * @return {void}\n */\n unsubscribe(): void {\n let errors: any[] | undefined;\n\n if (!this.closed) {\n this.closed = true;\n\n // Remove this from it's parents.\n const { _parentage } = this;\n if (_parentage) {\n this._parentage = null;\n if (Array.isArray(_parentage)) {\n for (const parent of _parentage) {\n parent.remove(this);\n }\n } else {\n _parentage.remove(this);\n }\n }\n\n const { initialTeardown: initialFinalizer } = this;\n if (isFunction(initialFinalizer)) {\n try {\n initialFinalizer();\n } catch (e) {\n errors = e instanceof UnsubscriptionError ? e.errors : [e];\n }\n }\n\n const { _finalizers } = this;\n if (_finalizers) {\n this._finalizers = null;\n for (const finalizer of _finalizers) {\n try {\n execFinalizer(finalizer);\n } catch (err) {\n errors = errors ?? [];\n if (err instanceof UnsubscriptionError) {\n errors = [...errors, ...err.errors];\n } else {\n errors.push(err);\n }\n }\n }\n }\n\n if (errors) {\n throw new UnsubscriptionError(errors);\n }\n }\n }\n\n /**\n * Adds a finalizer to this subscription, so that finalization will be unsubscribed/called\n * when this subscription is unsubscribed. If this subscription is already {@link #closed},\n * because it has already been unsubscribed, then whatever finalizer is passed to it\n * will automatically be executed (unless the finalizer itself is also a closed subscription).\n *\n * Closed Subscriptions cannot be added as finalizers to any subscription. Adding a closed\n * subscription to a any subscription will result in no operation. (A noop).\n *\n * Adding a subscription to itself, or adding `null` or `undefined` will not perform any\n * operation at all. (A noop).\n *\n * `Subscription` instances that are added to this instance will automatically remove themselves\n * if they are unsubscribed. Functions and {@link Unsubscribable} objects that you wish to remove\n * will need to be removed manually with {@link #remove}\n *\n * @param teardown The finalization logic to add to this subscription.\n */\n add(teardown: TeardownLogic): void {\n // Only add the finalizer if it's not undefined\n // and don't add a subscription to itself.\n if (teardown && teardown !== this) {\n if (this.closed) {\n // If this subscription is already closed,\n // execute whatever finalizer is handed to it automatically.\n execFinalizer(teardown);\n } else {\n if (teardown instanceof Subscription) {\n // We don't add closed subscriptions, and we don't add the same subscription\n // twice. Subscription unsubscribe is idempotent.\n if (teardown.closed || teardown._hasParent(this)) {\n return;\n }\n teardown._addParent(this);\n }\n (this._finalizers = this._finalizers ?? []).push(teardown);\n }\n }\n }\n\n /**\n * Checks to see if a this subscription already has a particular parent.\n * This will signal that this subscription has already been added to the parent in question.\n * @param parent the parent to check for\n */\n private _hasParent(parent: Subscription) {\n const { _parentage } = this;\n return _parentage === parent || (Array.isArray(_parentage) && _parentage.includes(parent));\n }\n\n /**\n * Adds a parent to this subscription so it can be removed from the parent if it\n * unsubscribes on it's own.\n *\n * NOTE: THIS ASSUMES THAT {@link _hasParent} HAS ALREADY BEEN CHECKED.\n * @param parent The parent subscription to add\n */\n private _addParent(parent: Subscription) {\n const { _parentage } = this;\n this._parentage = Array.isArray(_parentage) ? (_parentage.push(parent), _parentage) : _parentage ? [_parentage, parent] : parent;\n }\n\n /**\n * Called on a child when it is removed via {@link #remove}.\n * @param parent The parent to remove\n */\n private _removeParent(parent: Subscription) {\n const { _parentage } = this;\n if (_parentage === parent) {\n this._parentage = null;\n } else if (Array.isArray(_parentage)) {\n arrRemove(_parentage, parent);\n }\n }\n\n /**\n * Removes a finalizer from this subscription that was previously added with the {@link #add} method.\n *\n * Note that `Subscription` instances, when unsubscribed, will automatically remove themselves\n * from every other `Subscription` they have been added to. This means that using the `remove` method\n * is not a common thing and should be used thoughtfully.\n *\n * If you add the same finalizer instance of a function or an unsubscribable object to a `Subscription` instance\n * more than once, you will need to call `remove` the same number of times to remove all instances.\n *\n * All finalizer instances are removed to free up memory upon unsubscription.\n *\n * @param teardown The finalizer to remove from this subscription\n */\n remove(teardown: Exclude<TeardownLogic, void>): void {\n const { _finalizers } = this;\n _finalizers && arrRemove(_finalizers, teardown);\n\n if (teardown instanceof Subscription) {\n teardown._removeParent(this);\n }\n }\n}\n\nexport const EMPTY_SUBSCRIPTION = Subscription.EMPTY;\n\nexport function isSubscription(value: any): value is Subscription {\n return (\n value instanceof Subscription ||\n (value && 'closed' in value && isFunction(value.remove) && isFunction(value.add) && isFunction(value.unsubscribe))\n );\n}\n\nfunction execFinalizer(finalizer: Unsubscribable | (() => void)) {\n if (isFunction(finalizer)) {\n finalizer();\n } else {\n finalizer.unsubscribe();\n }\n}\n", "import { Subscriber } from './Subscriber';\nimport { ObservableNotification } from './types';\n\n/**\n * The {@link GlobalConfig} object for RxJS. It is used to configure things\n * like how to react on unhandled errors.\n */\nexport const config: GlobalConfig = {\n onUnhandledError: null,\n onStoppedNotification: null,\n Promise: undefined,\n useDeprecatedSynchronousErrorHandling: false,\n useDeprecatedNextContext: false,\n};\n\n/**\n * The global configuration object for RxJS, used to configure things\n * like how to react on unhandled errors. Accessible via {@link config}\n * object.\n */\nexport interface GlobalConfig {\n /**\n * A registration point for unhandled errors from RxJS. These are errors that\n * cannot were not handled by consuming code in the usual subscription path. For\n * example, if you have this configured, and you subscribe to an observable without\n * providing an error handler, errors from that subscription will end up here. This\n * will _always_ be called asynchronously on another job in the runtime. This is because\n * we do not want errors thrown in this user-configured handler to interfere with the\n * behavior of the library.\n */\n onUnhandledError: ((err: any) => void) | null;\n\n /**\n * A registration point for notifications that cannot be sent to subscribers because they\n * have completed, errored or have been explicitly unsubscribed. By default, next, complete\n * and error notifications sent to stopped subscribers are noops. However, sometimes callers\n * might want a different behavior. For example, with sources that attempt to report errors\n * to stopped subscribers, a caller can configure RxJS to throw an unhandled error instead.\n * This will _always_ be called asynchronously on another job in the runtime. This is because\n * we do not want errors thrown in this user-configured handler to interfere with the\n * behavior of the library.\n */\n onStoppedNotification: ((notification: ObservableNotification<any>, subscriber: Subscriber<any>) => void) | null;\n\n /**\n * The promise constructor used by default for {@link Observable#toPromise toPromise} and {@link Observable#forEach forEach}\n * methods.\n *\n * @deprecated As of version 8, RxJS will no longer support this sort of injection of a\n * Promise constructor. If you need a Promise implementation other than native promises,\n * please polyfill/patch Promise as you see appropriate. Will be removed in v8.\n */\n Promise?: PromiseConstructorLike;\n\n /**\n * If true, turns on synchronous error rethrowing, which is a deprecated behavior\n * in v6 and higher. This behavior enables bad patterns like wrapping a subscribe\n * call in a try/catch block. It also enables producer interference, a nasty bug\n * where a multicast can be broken for all observers by a downstream consumer with\n * an unhandled error. DO NOT USE THIS FLAG UNLESS IT'S NEEDED TO BUY TIME\n * FOR MIGRATION REASONS.\n *\n * @deprecated As of version 8, RxJS will no longer support synchronous throwing\n * of unhandled errors. All errors will be thrown on a separate call stack to prevent bad\n * behaviors described above. Will be removed in v8.\n */\n useDeprecatedSynchronousErrorHandling: boolean;\n\n /**\n * If true, enables an as-of-yet undocumented feature from v5: The ability to access\n * `unsubscribe()` via `this` context in `next` functions created in observers passed\n * to `subscribe`.\n *\n * This is being removed because the performance was severely problematic, and it could also cause\n * issues when types other than POJOs are passed to subscribe as subscribers, as they will likely have\n * their `this` context overwritten.\n *\n * @deprecated As of version 8, RxJS will no longer support altering the\n * context of next functions provided as part of an observer to Subscribe. Instead,\n * you will have access to a subscription or a signal or token that will allow you to do things like\n * unsubscribe and test closed status. Will be removed in v8.\n */\n useDeprecatedNextContext: boolean;\n}\n", "import type { TimerHandle } from './timerHandle';\ntype SetTimeoutFunction = (handler: () => void, timeout?: number, ...args: any[]) => TimerHandle;\ntype ClearTimeoutFunction = (handle: TimerHandle) => void;\n\ninterface TimeoutProvider {\n setTimeout: SetTimeoutFunction;\n clearTimeout: ClearTimeoutFunction;\n delegate:\n | {\n setTimeout: SetTimeoutFunction;\n clearTimeout: ClearTimeoutFunction;\n }\n | undefined;\n}\n\nexport const timeoutProvider: TimeoutProvider = {\n // When accessing the delegate, use the variable rather than `this` so that\n // the functions can be called without being bound to the provider.\n setTimeout(handler: () => void, timeout?: number, ...args) {\n const { delegate } = timeoutProvider;\n if (delegate?.setTimeout) {\n return delegate.setTimeout(handler, timeout, ...args);\n }\n return setTimeout(handler, timeout, ...args);\n },\n clearTimeout(handle) {\n const { delegate } = timeoutProvider;\n return (delegate?.clearTimeout || clearTimeout)(handle as any);\n },\n delegate: undefined,\n};\n", "import { config } from '../config';\nimport { timeoutProvider } from '../scheduler/timeoutProvider';\n\n/**\n * Handles an error on another job either with the user-configured {@link onUnhandledError},\n * or by throwing it on that new job so it can be picked up by `window.onerror`, `process.on('error')`, etc.\n *\n * This should be called whenever there is an error that is out-of-band with the subscription\n * or when an error hits a terminal boundary of the subscription and no error handler was provided.\n *\n * @param err the error to report\n */\nexport function reportUnhandledError(err: any) {\n timeoutProvider.setTimeout(() => {\n const { onUnhandledError } = config;\n if (onUnhandledError) {\n // Execute the user-configured error handler.\n onUnhandledError(err);\n } else {\n // Throw so it is picked up by the runtime's uncaught error mechanism.\n throw err;\n }\n });\n}\n", "/* tslint:disable:no-empty */\nexport function noop() { }\n", "import { CompleteNotification, NextNotification, ErrorNotification } from './types';\n\n/**\n * A completion object optimized for memory use and created to be the\n * same \"shape\" as other notifications in v8.\n * @internal\n */\nexport const COMPLETE_NOTIFICATION = (() => createNotification('C', undefined, undefined) as CompleteNotification)();\n\n/**\n * Internal use only. Creates an optimized error notification that is the same \"shape\"\n * as other notifications.\n * @internal\n */\nexport function errorNotification(error: any): ErrorNotification {\n return createNotification('E', undefined, error) as any;\n}\n\n/**\n * Internal use only. Creates an optimized next notification that is the same \"shape\"\n * as other notifications.\n * @internal\n */\nexport function nextNotification<T>(value: T) {\n return createNotification('N', value, undefined) as NextNotification<T>;\n}\n\n/**\n * Ensures that all notifications created internally have the same \"shape\" in v8.\n *\n * TODO: This is only exported to support a crazy legacy test in `groupBy`.\n * @internal\n */\nexport function createNotification(kind: 'N' | 'E' | 'C', value: any, error: any) {\n return {\n kind,\n value,\n error,\n };\n}\n", "import { config } from '../config';\n\nlet context: { errorThrown: boolean; error: any } | null = null;\n\n/**\n * Handles dealing with errors for super-gross mode. Creates a context, in which\n * any synchronously thrown errors will be passed to {@link captureError}. Which\n * will record the error such that it will be rethrown after the call back is complete.\n * TODO: Remove in v8\n * @param cb An immediately executed function.\n */\nexport function errorContext(cb: () => void) {\n if (config.useDeprecatedSynchronousErrorHandling) {\n const isRoot = !context;\n if (isRoot) {\n context = { errorThrown: false, error: null };\n }\n cb();\n if (isRoot) {\n const { errorThrown, error } = context!;\n context = null;\n if (errorThrown) {\n throw error;\n }\n }\n } else {\n // This is the general non-deprecated path for everyone that\n // isn't crazy enough to use super-gross mode (useDeprecatedSynchronousErrorHandling)\n cb();\n }\n}\n\n/**\n * Captures errors only in super-gross mode.\n * @param err the error to capture\n */\nexport function captureError(err: any) {\n if (config.useDeprecatedSynchronousErrorHandling && context) {\n context.errorThrown = true;\n context.error = err;\n }\n}\n", "import { isFunction } from './util/isFunction';\nimport { Observer, ObservableNotification } from './types';\nimport { isSubscription, Subscription } from './Subscription';\nimport { config } from './config';\nimport { reportUnhandledError } from './util/reportUnhandledError';\nimport { noop } from './util/noop';\nimport { nextNotification, errorNotification, COMPLETE_NOTIFICATION } from './NotificationFactories';\nimport { timeoutProvider } from './scheduler/timeoutProvider';\nimport { captureError } from './util/errorContext';\n\n/**\n * Implements the {@link Observer} interface and extends the\n * {@link Subscription} class. While the {@link Observer} is the public API for\n * consuming the values of an {@link Observable}, all Observers get converted to\n * a Subscriber, in order to provide Subscription-like capabilities such as\n * `unsubscribe`. Subscriber is a common type in RxJS, and crucial for\n * implementing operators, but it is rarely used as a public API.\n *\n * @class Subscriber<T>\n */\nexport class Subscriber<T> extends Subscription implements Observer<T> {\n /**\n * A static factory for a Subscriber, given a (potentially partial) definition\n * of an Observer.\n * @param next The `next` callback of an Observer.\n * @param error The `error` callback of an\n * Observer.\n * @param complete The `complete` callback of an\n * Observer.\n * @return A Subscriber wrapping the (partially defined)\n * Observer represented by the given arguments.\n * @nocollapse\n * @deprecated Do not use. Will be removed in v8. There is no replacement for this\n * method, and there is no reason to be creating instances of `Subscriber` directly.\n * If you have a specific use case, please file an issue.\n */\n static create<T>(next?: (x?: T) => void, error?: (e?: any) => void, complete?: () => void): Subscriber<T> {\n return new SafeSubscriber(next, error, complete);\n }\n\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n protected isStopped: boolean = false;\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n protected destination: Subscriber<any> | Observer<any>; // this `any` is the escape hatch to erase extra type param (e.g. R)\n\n /**\n * @deprecated Internal implementation detail, do not use directly. Will be made internal in v8.\n * There is no reason to directly create an instance of Subscriber. This type is exported for typings reasons.\n */\n constructor(destination?: Subscriber<any> | Observer<any>) {\n super();\n if (destination) {\n this.destination = destination;\n // Automatically chain subscriptions together here.\n // if destination is a Subscription, then it is a Subscriber.\n if (isSubscription(destination)) {\n destination.add(this);\n }\n } else {\n this.destination = EMPTY_OBSERVER;\n }\n }\n\n /**\n * The {@link Observer} callback to receive notifications of type `next` from\n * the Observable, with a value. The Observable may call this method 0 or more\n * times.\n * @param {T} [value] The `next` value.\n * @return {void}\n */\n next(value?: T): void {\n if (this.isStopped) {\n handleStoppedNotification(nextNotification(value), this);\n } else {\n this._next(value!);\n }\n }\n\n /**\n * The {@link Observer} callback to receive notifications of type `error` from\n * the Observable, with an attached `Error`. Notifies the Observer that\n * the Observable has experienced an error condition.\n * @param {any} [err] The `error` exception.\n * @return {void}\n */\n error(err?: any): void {\n if (this.isStopped) {\n handleStoppedNotification(errorNotification(err), this);\n } else {\n this.isStopped = true;\n this._error(err);\n }\n }\n\n /**\n * The {@link Observer} callback to receive a valueless notification of type\n * `complete` from the Observable. Notifies the Observer that the Observable\n * has finished sending push-based notifications.\n * @return {void}\n */\n complete(): void {\n if (this.isStopped) {\n handleStoppedNotification(COMPLETE_NOTIFICATION, this);\n } else {\n this.isStopped = true;\n this._complete();\n }\n }\n\n unsubscribe(): void {\n if (!this.closed) {\n this.isStopped = true;\n super.unsubscribe();\n this.destination = null!;\n }\n }\n\n protected _next(value: T): void {\n this.destination.next(value);\n }\n\n protected _error(err: any): void {\n try {\n this.destination.error(err);\n } finally {\n this.unsubscribe();\n }\n }\n\n protected _complete(): void {\n try {\n this.destination.complete();\n } finally {\n this.unsubscribe();\n }\n }\n}\n\n/**\n * This bind is captured here because we want to be able to have\n * compatibility with monoid libraries that tend to use a method named\n * `bind`. In particular, a library called Monio requires this.\n */\nconst _bind = Function.prototype.bind;\n\nfunction bind<Fn extends (...args: any[]) => any>(fn: Fn, thisArg: any): Fn {\n return _bind.call(fn, thisArg);\n}\n\n/**\n * Internal optimization only, DO NOT EXPOSE.\n * @internal\n */\nclass ConsumerObserver<T> implements Observer<T> {\n constructor(private partialObserver: Partial<Observer<T>>) {}\n\n next(value: T): void {\n const { partialObserver } = this;\n if (partialObserver.next) {\n try {\n partialObserver.next(value);\n } catch (error) {\n handleUnhandledError(error);\n }\n }\n }\n\n error(err: any): void {\n const { partialObserver } = this;\n if (partialObserver.error) {\n try {\n partialObserver.error(err);\n } catch (error) {\n handleUnhandledError(error);\n }\n } else {\n handleUnhandledError(err);\n }\n }\n\n complete(): void {\n const { partialObserver } = this;\n if (partialObserver.complete) {\n try {\n partialObserver.complete();\n } catch (error) {\n handleUnhandledError(error);\n }\n }\n }\n}\n\nexport class SafeSubscriber<T> extends Subscriber<T> {\n constructor(\n observerOrNext?: Partial<Observer<T>> | ((value: T) => void) | null,\n error?: ((e?: any) => void) | null,\n complete?: (() => void) | null\n ) {\n super();\n\n let partialObserver: Partial<Observer<T>>;\n if (isFunction(observerOrNext) || !observerOrNext) {\n // The first argument is a function, not an observer. The next\n // two arguments *could* be observers, or they could be empty.\n partialObserver = {\n next: (observerOrNext ?? undefined) as (((value: T) => void) | undefined),\n error: error ?? undefined,\n complete: complete ?? undefined,\n };\n } else {\n // The first argument is a partial observer.\n let context: any;\n if (this && config.useDeprecatedNextContext) {\n // This is a deprecated path that made `this.unsubscribe()` available in\n // next handler functions passed to subscribe. This only exists behind a flag\n // now, as it is *very* slow.\n context = Object.create(observerOrNext);\n context.unsubscribe = () => this.unsubscribe();\n partialObserver = {\n next: observerOrNext.next && bind(observerOrNext.next, context),\n error: observerOrNext.error && bind(observerOrNext.error, context),\n complete: observerOrNext.complete && bind(observerOrNext.complete, context),\n };\n } else {\n // The \"normal\" path. Just use the partial observer directly.\n partialObserver = observerOrNext;\n }\n }\n\n // Wrap the partial observer to ensure it's a full observer, and\n // make sure proper error handling is accounted for.\n this.destination = new ConsumerObserver(partialObserver);\n }\n}\n\nfunction handleUnhandledError(error: any) {\n if (config.useDeprecatedSynchronousErrorHandling) {\n captureError(error);\n } else {\n // Ideal path, we report this as an unhandled error,\n // which is thrown on a new call stack.\n reportUnhandledError(error);\n }\n}\n\n/**\n * An error handler used when no error handler was supplied\n * to the SafeSubscriber -- meaning no error handler was supplied\n * do the `subscribe` call on our observable.\n * @param err The error to handle\n */\nfunction defaultErrorHandler(err: any) {\n throw err;\n}\n\n/**\n * A handler for notifications that cannot be sent to a stopped subscriber.\n * @param notification The notification being sent\n * @param subscriber The stopped subscriber\n */\nfunction handleStoppedNotification(notification: ObservableNotification<any>, subscriber: Subscriber<any>) {\n const { onStoppedNotification } = config;\n onStoppedNotification && timeoutProvider.setTimeout(() => onStoppedNotification(notification, subscriber));\n}\n\n/**\n * The observer used as a stub for subscriptions where the user did not\n * pass any arguments to `subscribe`. Comes with the default error handling\n * behavior.\n */\nexport const EMPTY_OBSERVER: Readonly<Observer<any>> & { closed: true } = {\n closed: true,\n next: noop,\n error: defaultErrorHandler,\n complete: noop,\n};\n", "/**\n * Symbol.observable or a string \"@@observable\". Used for interop\n *\n * @deprecated We will no longer be exporting this symbol in upcoming versions of RxJS.\n * Instead polyfill and use Symbol.observable directly *or* use https://www.npmjs.com/package/symbol-observable\n */\nexport const observable: string | symbol = (() => (typeof Symbol === 'function' && Symbol.observable) || '@@observable')();\n", "/**\n * This function takes one parameter and just returns it. Simply put,\n * this is like `<T>(x: T): T => x`.\n *\n * ## Examples\n *\n * This is useful in some cases when using things like `mergeMap`\n *\n * ```ts\n * import { interval, take, map, range, mergeMap, identity } from 'rxjs';\n *\n * const source$ = interval(1000).pipe(take(5));\n *\n * const result$ = source$.pipe(\n * map(i => range(i)),\n * mergeMap(identity) // same as mergeMap(x => x)\n * );\n *\n * result$.subscribe({\n * next: console.log\n * });\n * ```\n *\n * Or when you want to selectively apply an operator\n *\n * ```ts\n * import { interval, take, identity } from 'rxjs';\n *\n * const shouldLimit = () => Math.random() < 0.5;\n *\n * const source$ = interval(1000);\n *\n * const result$ = source$.pipe(shouldLimit() ? take(5) : identity);\n *\n * result$.subscribe({\n * next: console.log\n * });\n * ```\n *\n * @param x Any value that is returned by this function\n * @returns The value passed as the first parameter to this function\n */\nexport function identity<T>(x: T): T {\n return x;\n}\n", "import { identity } from './identity';\nimport { UnaryFunction } from '../types';\n\nexport function pipe(): typeof identity;\nexport function pipe<T, A>(fn1: UnaryFunction<T, A>): UnaryFunction<T, A>;\nexport function pipe<T, A, B>(fn1: UnaryFunction<T, A>, fn2: UnaryFunction<A, B>): UnaryFunction<T, B>;\nexport function pipe<T, A, B, C>(fn1: UnaryFunction<T, A>, fn2: UnaryFunction<A, B>, fn3: UnaryFunction<B, C>): UnaryFunction<T, C>;\nexport function pipe<T, A, B, C, D>(\n fn1: UnaryFunction<T, A>,\n fn2: UnaryFunction<A, B>,\n fn3: UnaryFunction<B, C>,\n fn4: UnaryFunction<C, D>\n): UnaryFunction<T, D>;\nexport function pipe<T, A, B, C, D, E>(\n fn1: UnaryFunction<T, A>,\n fn2: UnaryFunction<A, B>,\n fn3: UnaryFunction<B, C>,\n fn4: UnaryFunction<C, D>,\n fn5: UnaryFunction<D, E>\n): UnaryFunction<T, E>;\nexport function pipe<T, A, B, C, D, E, F>(\n fn1: UnaryFunction<T, A>,\n fn2: UnaryFunction<A, B>,\n fn3: UnaryFunction<B, C>,\n fn4: UnaryFunction<C, D>,\n fn5: UnaryFunction<D, E>,\n fn6: UnaryFunction<E, F>\n): UnaryFunction<T, F>;\nexport function pipe<T, A, B, C, D, E, F, G>(\n fn1: UnaryFunction<T, A>,\n fn2: UnaryFunction<A, B>,\n fn3: UnaryFunction<B, C>,\n fn4: UnaryFunction<C, D>,\n fn5: UnaryFunction<D, E>,\n fn6: UnaryFunction<E, F>,\n fn7: UnaryFunction<F, G>\n): UnaryFunction<T, G>;\nexport function pipe<T, A, B, C, D, E, F, G, H>(\n fn1: UnaryFunction<T, A>,\n fn2: UnaryFunction<A, B>,\n fn3: UnaryFunction<B, C>,\n fn4: UnaryFunction<C, D>,\n fn5: UnaryFunction<D, E>,\n fn6: UnaryFunction<E, F>,\n fn7: UnaryFunction<F, G>,\n fn8: UnaryFunction<G, H>\n): UnaryFunction<T, H>;\nexport function pipe<T, A, B, C, D, E, F, G, H, I>(\n fn1: UnaryFunction<T, A>,\n fn2: UnaryFunction<A, B>,\n fn3: UnaryFunction<B, C>,\n fn4: UnaryFunction<C, D>,\n fn5: UnaryFunction<D, E>,\n fn6: UnaryFunction<E, F>,\n fn7: UnaryFunction<F, G>,\n fn8: UnaryFunction<G, H>,\n fn9: UnaryFunction<H, I>\n): UnaryFunction<T, I>;\nexport function pipe<T, A, B, C, D, E, F, G, H, I>(\n fn1: UnaryFunction<T, A>,\n fn2: UnaryFunction<A, B>,\n fn3: UnaryFunction<B, C>,\n fn4: UnaryFunction<C, D>,\n fn5: UnaryFunction<D, E>,\n fn6: UnaryFunction<E, F>,\n fn7: UnaryFunction<F, G>,\n fn8: UnaryFunction<G, H>,\n fn9: UnaryFunction<H, I>,\n ...fns: UnaryFunction<any, any>[]\n): UnaryFunction<T, unknown>;\n\n/**\n * pipe() can be called on one or more functions, each of which can take one argument (\"UnaryFunction\")\n * and uses it to return a value.\n * It returns a function that takes one argument, passes it to the first UnaryFunction, and then\n * passes the result to the next one, passes that result to the next one, and so on. \n */\nexport function pipe(...fns: Array<UnaryFunction<any, any>>): UnaryFunction<any, any> {\n return pipeFromArray(fns);\n}\n\n/** @internal */\nexport function pipeFromArray<T, R>(fns: Array<UnaryFunction<T, R>>): UnaryFunction<T, R> {\n if (fns.length === 0) {\n return identity as UnaryFunction<any, any>;\n }\n\n if (fns.length === 1) {\n return fns[0];\n }\n\n return function piped(input: T): R {\n return fns.reduce((prev: any, fn: UnaryFunction<T, R>) => fn(prev), input as any);\n };\n}\n", "import { Operator } from './Operator';\nimport { SafeSubscriber, Subscriber } from './Subscriber';\nimport { isSubscription, Subscription } from './Subscription';\nimport { TeardownLogic, OperatorFunction, Subscribable, Observer } from './types';\nimport { observable as Symbol_observable } from './symbol/observable';\nimport { pipeFromArray } from './util/pipe';\nimport { config } from './config';\nimport { isFunction } from './util/isFunction';\nimport { errorContext } from './util/errorContext';\n\n/**\n * A representation of any set of values over any amount of time. This is the most basic building block\n * of RxJS.\n *\n * @class Observable<T>\n */\nexport class Observable<T> implements Subscribable<T> {\n /**\n * @deprecated Internal implementation detail, do not use directly. Will be made internal in v8.\n */\n source: Observable<any> | undefined;\n\n /**\n * @deprecated Internal implementation detail, do not use directly. Will be made internal in v8.\n */\n operator: Operator<any, T> | undefined;\n\n /**\n * @constructor\n * @param {Function} subscribe the function that is called when the Observable is\n * initially subscribed to. This function is given a Subscriber, to which new values\n * can be `next`ed, or an `error` method can be called to raise an error, or\n * `complete` can be called to notify of a successful completion.\n */\n constructor(subscribe?: (this: Observable<T>, subscriber: Subscriber<T>) => TeardownLogic) {\n if (subscribe) {\n this._subscribe = subscribe;\n }\n }\n\n // HACK: Since TypeScript inherits static properties too, we have to\n // fight against TypeScript here so Subject can have a different static create signature\n /**\n * Creates a new Observable by calling the Observable constructor\n * @owner Observable\n * @method create\n * @param {Function} subscribe? the subscriber function to be passed to the Observable constructor\n * @return {Observable} a new observable\n * @nocollapse\n * @deprecated Use `new Observable()` instead. Will be removed in v8.\n */\n static create: (...args: any[]) => any = <T>(subscribe?: (subscriber: Subscriber<T>) => TeardownLogic) => {\n return new Observable<T>(subscribe);\n };\n\n /**\n * Creates a new Observable, with this Observable instance as the source, and the passed\n * operator defined as the new observable's operator.\n * @method lift\n * @param operator the operator defining the operation to take on the observable\n * @return a new observable with the Operator applied\n * @deprecated Internal implementation detail, do not use directly. Will be made internal in v8.\n * If you have implemented an operator using `lift`, it is recommended that you create an\n * operator by simply returning `new Observable()` directly. See \"Creating new operators from\n * scratch\" section here: https://rxjs.dev/guide/operators\n */\n lift<R>(operator?: Operator<T, R>): Observable<R> {\n const observable = new Observable<R>();\n observable.source = this;\n observable.operator = operator;\n return observable;\n }\n\n subscribe(observerOrNext?: Partial<Observer<T>> | ((value: T) => void)): Subscription;\n /** @deprecated Instead of passing separate callback arguments, use an observer argument. Signatures taking separate callback arguments will be removed in v8. Details: https://rxjs.dev/deprecations/subscribe-arguments */\n subscribe(next?: ((value: T) => void) | null, error?: ((error: any) => void) | null, complete?: (() => void) | null): Subscription;\n /**\n * Invokes an execution of an Observable and registers Observer handlers for notifications it will emit.\n *\n * <span class=\"informal\">Use it when you have all these Observables, but still nothing is happening.</span>\n *\n * `subscribe` is not a regular operator, but a method that calls Observable's internal `subscribe` function. It\n * might be for example a function that you passed to Observable's constructor, but most of the time it is\n * a library implementation, which defines what will be emitted by an Observable, and when it be will emitted. This means\n * that calling `subscribe` is actually the moment when Observable starts its work, not when it is created, as it is often\n * the thought.\n *\n * Apart from starting the execution of an Observable, this method allows you to listen for values\n * that an Observable emits, as well as for when it completes or errors. You can achieve this in two\n * of the following ways.\n *\n * The first way is creating an object that implements {@link Observer} interface. It should have methods\n * defined by that interface, but note that it should be just a regular JavaScript object, which you can create\n * yourself in any way you want (ES6 class, classic function constructor, object literal etc.). In particular, do\n * not attempt to use any RxJS implementation details to create Observers - you don't need them. Remember also\n * that your object does not have to implement all methods. If you find yourself creating a method that doesn't\n * do anything, you can simply omit it. Note however, if the `error` method is not provided and an error happens,\n * it will be thrown asynchronously. Errors thrown asynchronously cannot be caught using `try`/`catch`. Instead,\n * use the {@link onUnhandledError} configuration option or use a runtime handler (like `window.onerror` or\n * `process.on('error)`) to be notified of unhandled errors. Because of this, it's recommended that you provide\n * an `error` method to avoid missing thrown errors.\n *\n * The second way is to give up on Observer object altogether and simply provide callback functions in place of its methods.\n * This means you can provide three functions as arguments to `subscribe`, where the first function is equivalent\n * of a `next` method, the second of an `error` method and the third of a `complete` method. Just as in case of an Observer,\n * if you do not need to listen for something, you can omit a function by passing `undefined` or `null`,\n * since `subscribe` recognizes these functions by where they were placed in function call. When it comes\n * to the `error` function, as with an Observer, if not provided, errors emitted by an Observable will be thrown asynchronously.\n *\n * You can, however, subscribe with no parameters at all. This may be the case where you're not interested in terminal events\n * and you also handled emissions internally by using operators (e.g. using `tap`).\n *\n * Whichever style of calling `subscribe` you use, in both cases it returns a Subscription object.\n * This object allows you to call `unsubscribe` on it, which in turn will stop the work that an Observable does and will clean\n * up all resources that an Observable used. Note that cancelling a subscription will not call `complete` callback\n * provided to `subscribe` function, which is reserved for a regular completion signal that comes from an Observable.\n *\n * Remember that callbacks provided to `subscribe` are not guaranteed to be called asynchronously.\n * It is an Observable itself that decides when these functions will be called. For example {@link of}\n * by default emits all its values synchronously. Always check documentation for how given Observable\n * will behave when subscribed and if its default behavior can be modified with a `scheduler`.\n *\n * #### Examples\n *\n * Subscribe with an {@link guide/observer Observer}\n *\n * ```ts\n * import { of } from 'rxjs';\n *\n * const sumObserver = {\n * sum: 0,\n * next(value) {\n * console.log('Adding: ' + value);\n * this.sum = this.sum + value;\n * },\n * error() {\n * // We actually could just remove this method,\n * // since we do not really care about errors right now.\n * },\n * complete() {\n * console.log('Sum equals: ' + this.sum);\n * }\n * };\n *\n * of(1, 2, 3) // Synchronously emits 1, 2, 3 and then completes.\n * .subscribe(sumObserver);\n *\n * // Logs:\n * // 'Adding: 1'\n * // 'Adding: 2'\n * // 'Adding: 3'\n * // 'Sum equals: 6'\n * ```\n *\n * Subscribe with functions ({@link deprecations/subscribe-arguments deprecated})\n *\n * ```ts\n * import { of } from 'rxjs'\n *\n * let sum = 0;\n *\n * of(1, 2, 3).subscribe(\n * value => {\n * console.log('Adding: ' + value);\n * sum = sum + value;\n * },\n * undefined,\n * () => console.log('Sum equals: ' + sum)\n * );\n *\n * // Logs:\n * // 'Adding: 1'\n * // 'Adding: 2'\n * // 'Adding: 3'\n * // 'Sum equals: 6'\n * ```\n *\n * Cancel a subscription\n *\n * ```ts\n * import { interval } from 'rxjs';\n *\n * const subscription = interval(1000).subscribe({\n * next(num) {\n * console.log(num)\n * },\n * complete() {\n * // Will not be called, even when cancelling subscription.\n * console.log('completed!');\n * }\n * });\n *\n * setTimeout(() => {\n * subscription.unsubscribe();\n * console.log('unsubscribed!');\n * }, 2500);\n *\n * // Logs:\n * // 0 after 1s\n * // 1 after 2s\n * // 'unsubscribed!' after 2.5s\n * ```\n *\n * @param {Observer|Function} observerOrNext (optional) Either an observer with methods to be called,\n * or the first of three possible handlers, which is the handler for each value emitted from the subscribed\n * Observable.\n * @param {Function} error (optional) A handler for a terminal event resulting from an error. If no error handler is provided,\n * the error will be thrown asynchronously as unhandled.\n * @param {Function} complete (optional) A handler for a terminal event resulting from successful completion.\n * @return {Subscription} a subscription reference to the registered handlers\n * @method subscribe\n */\n subscribe(\n observerOrNext?: Partial<Observer<T>> | ((value: T) => void) | null,\n error?: ((error: any) => void) | null,\n complete?: (() => void) | null\n ): Subscription {\n const subscriber = isSubscriber(observerOrNext) ? observerOrNext : new SafeSubscriber(observerOrNext, error, complete);\n\n errorContext(() => {\n const { operator, source } = this;\n subscriber.add(\n operator\n ? // We're dealing with a subscription in the\n // operator chain to one of our lifted operators.\n operator.call(subscriber, source)\n : source\n ? // If `source` has a value, but `operator` does not, something that\n // had intimate knowledge of our API, like our `Subject`, must have\n // set it. We're going to just call `_subscribe` directly.\n this._subscribe(subscriber)\n : // In all other cases, we're likely wrapping a user-provided initializer\n // function, so we need to catch errors and handle them appropriately.\n this._trySubscribe(subscriber)\n );\n });\n\n return subscriber;\n }\n\n /** @internal */\n protected _trySubscribe(sink: Subscriber<T>): TeardownLogic {\n try {\n return this._subscribe(sink);\n } catch (err) {\n // We don't need to return anything in this case,\n // because it's just going to try to `add()` to a subscription\n // above.\n sink.error(err);\n }\n }\n\n /**\n * Used as a NON-CANCELLABLE means of subscribing to an observable, for use with\n * APIs that expect promises, like `async/await`. You cannot unsubscribe from this.\n *\n * **WARNING**: Only use this with observables you *know* will complete. If the source\n * observable does not complete, you will end up with a promise that is hung up, and\n * potentially all of the state of an async function hanging out in memory. To avoid\n * this situation, look into adding something like {@link timeout}, {@link take},\n * {@link takeWhile}, or {@link takeUntil} amongst others.\n *\n * #### Example\n *\n * ```ts\n * import { interval, take } from 'rxjs';\n *\n * const source$ = interval(1000).pipe(take(4));\n *\n * async function getTotal() {\n * let total = 0;\n *\n * await source$.forEach(value => {\n * total += value;\n * console.log('observable -> ' + value);\n * });\n *\n * return total;\n * }\n *\n * getTotal().then(\n * total => console.log('Total: ' + total)\n * );\n *\n * // Expected:\n * // 'observable -> 0'\n * // 'observable -> 1'\n * // 'observable -> 2'\n * // 'observable -> 3'\n * // 'Total: 6'\n * ```\n *\n * @param next a handler for each value emitted by the observable\n * @return a promise that either resolves on observable completion or\n * rejects with the handled error\n */\n forEach(next: (value: T) => void): Promise<void>;\n\n /**\n * @param next a handler for each value emitted by the observable\n * @param promiseCtor a constructor function used to instantiate the Promise\n * @return a promise that either resolves on observable completion or\n * rejects with the handled error\n * @deprecated Passing a Promise constructor will no longer be available\n * in upcoming versions of RxJS. This is because it adds weight to the library, for very\n * little benefit. If you need this functionality, it is recommended that you either\n * polyfill Promise, or you create an adapter to convert the returned native promise\n * to whatever promise implementation you wanted. Will be removed in v8.\n */\n forEach(next: (value: T) => void, promiseCtor: PromiseConstructorLike): Promise<void>;\n\n forEach(next: (value: T) => void, promiseCtor?: PromiseConstructorLike): Promise<void> {\n promiseCtor = getPromiseCtor(promiseCtor);\n\n return new promiseCtor<void>((resolve, reject) => {\n const subscriber = new SafeSubscriber<T>({\n next: (value) => {\n try {\n next(value);\n } catch (err) {\n reject(err);\n subscriber.unsubscribe();\n }\n },\n error: reject,\n complete: resolve,\n });\n this.subscribe(subscriber);\n }) as Promise<void>;\n }\n\n /** @internal */\n protected _subscribe(subscriber: Subscriber<any>): TeardownLogic {\n return this.source?.subscribe(subscriber);\n }\n\n /**\n * An interop point defined by the es7-observable spec https://github.com/zenparsing/es-observable\n * @method Symbol.observable\n * @return {Observable} this instance of the observable\n */\n [Symbol_observable]() {\n return this;\n }\n\n /* tslint:disable:max-line-length */\n pipe(): Observable<T>;\n pipe<A>(op1: OperatorFunction<T, A>): Observable<A>;\n pipe<A, B>(op1: OperatorFunction<T, A>, op2: OperatorFunction<A, B>): Observable<B>;\n pipe<A, B, C>(op1: OperatorFunction<T, A>, op2: OperatorFunction<A, B>, op3: OperatorFunction<B, C>): Observable<C>;\n pipe<A, B, C, D>(\n op1: OperatorFunction<T, A>,\n op2: OperatorFunction<A, B>,\n op3: OperatorFunction<B, C>,\n op4: OperatorFunction<C, D>\n ): Observable<D>;\n pipe<A, B, C, D, E>(\n op1: OperatorFunction<T, A>,\n op2: OperatorFunction<A, B>,\n op3: OperatorFunction<B, C>,\n op4: OperatorFunction<C, D>,\n op5: OperatorFunction<D, E>\n ): Observable<E>;\n pipe<A, B, C, D, E, F>(\n op1: OperatorFunction<T, A>,\n op2: OperatorFunction<A, B>,\n op3: OperatorFunction<B, C>,\n op4: OperatorFunction<C, D>,\n op5: OperatorFunction<D, E>,\n op6: OperatorFunction<E, F>\n ): Observable<F>;\n pipe<A, B, C, D, E, F, G>(\n op1: OperatorFunction<T, A>,\n op2: OperatorFunction<A, B>,\n op3: OperatorFunction<B, C>,\n op4: OperatorFunction<C, D>,\n op5: OperatorFunction<D, E>,\n op6: OperatorFunction<E, F>,\n op7: OperatorFunction<F, G>\n ): Observable<G>;\n pipe<A, B, C, D, E, F, G, H>(\n op1: OperatorFunction<T, A>,\n op2: OperatorFunction<A, B>,\n op3: OperatorFunction<B, C>,\n op4: OperatorFunction<C, D>,\n op5: OperatorFunction<D, E>,\n op6: OperatorFunction<E, F>,\n op7: OperatorFunction<F, G>,\n op8: OperatorFunction<G, H>\n ): Observable<H>;\n pipe<A, B, C, D, E, F, G, H, I>(\n op1: OperatorFunction<T, A>,\n op2: OperatorFunction<A, B>,\n op3: OperatorFunction<B, C>,\n op4: OperatorFunction<C, D>,\n op5: OperatorFunction<D, E>,\n op6: OperatorFunction<E, F>,\n op7: OperatorFunction<F, G>,\n op8: OperatorFunction<G, H>,\n op9: OperatorFunction<H, I>\n ): Observable<I>;\n pipe<A, B, C, D, E, F, G, H, I>(\n op1: OperatorFunction<T, A>,\n op2: OperatorFunction<A, B>,\n op3: OperatorFunction<B, C>,\n op4: OperatorFunction<C, D>,\n op5: OperatorFunction<D, E>,\n op6: OperatorFunction<E, F>,\n op7: OperatorFunction<F, G>,\n op8: OperatorFunction<G, H>,\n op9: OperatorFunction<H, I>,\n ...operations: OperatorFunction<any, any>[]\n ): Observable<unknown>;\n /* tslint:enable:max-line-length */\n\n /**\n * Used to stitch together functional operators into a chain.\n * @method pipe\n * @return {Observable} the Observable result of all of the operators having\n * been called in the order they were passed in.\n *\n * ## Example\n *\n * ```ts\n * import { interval, filter, map, scan } from 'rxjs';\n *\n * interval(1000)\n * .pipe(\n * filter(x => x % 2 === 0),\n * map(x => x + x),\n * scan((acc, x) => acc + x)\n * )\n * .subscribe(x => console.log(x));\n * ```\n */\n pipe(...operations: OperatorFunction<any, any>[]): Observable<any> {\n return pipeFromArray(operations)(this);\n }\n\n /* tslint:disable:max-line-length */\n /** @deprecated Replaced with {@link firstValueFrom} and {@link lastValueFrom}. Will be removed in v8. Details: https://rxjs.dev/deprecations/to-promise */\n toPromise(): Promise<T | undefined>;\n /** @deprecated Replaced with {@link firstValueFrom} and {@link lastValueFrom}. Will be removed in v8. Details: https://rxjs.dev/deprecations/to-promise */\n toPromise(PromiseCtor: typeof Promise): Promise<T | undefined>;\n /** @deprecated Replaced with {@link firstValueFrom} and {@link lastValueFrom}. Will be removed in v8. Details: https://rxjs.dev/deprecations/to-promise */\n toPromise(PromiseCtor: PromiseConstructorLike): Promise<T | undefined>;\n /* tslint:enable:max-line-length */\n\n /**\n * Subscribe to this Observable and get a Promise resolving on\n * `complete` with the last emission (if any).\n *\n * **WARNING**: Only use this with observables you *know* will complete. If the source\n * observable does not complete, you will end up with a promise that is hung up, and\n * potentially all of the state of an async function hanging out in memory. To avoid\n * this situation, look into adding something like {@link timeout}, {@link take},\n * {@link takeWhile}, or {@link takeUntil} amongst others.\n *\n * @method toPromise\n * @param [promiseCtor] a constructor function used to instantiate\n * the Promise\n * @return A Promise that resolves with the last value emit, or\n * rejects on an error. If there were no emissions, Promise\n * resolves with undefined.\n * @deprecated Replaced with {@link firstValueFrom} and {@link lastValueFrom}. Will be removed in v8. Details: https://rxjs.dev/deprecations/to-promise\n */\n toPromise(promiseCtor?: PromiseConstructorLike): Promise<T | undefined> {\n promiseCtor = getPromiseCtor(promiseCtor);\n\n return new promiseCtor((resolve, reject) => {\n let value: T | undefined;\n this.subscribe(\n (x: T) => (value = x),\n (err: any) => reject(err),\n () => resolve(value)\n );\n }) as Promise<T | undefined>;\n }\n}\n\n/**\n * Decides between a passed promise constructor from consuming code,\n * A default configured promise constructor, and the native promise\n * constructor and returns it. If nothing can be found, it will throw\n * an error.\n * @param promiseCtor The optional promise constructor to passed by consuming code\n */\nfunction getPromiseCtor(promiseCtor: PromiseConstructorLike | undefined) {\n return promiseCtor ?? config.Promise ?? Promise;\n}\n\nfunction isObserver<T>(value: any): value is Observer<T> {\n return value && isFunction(value.next) && isFunction(value.error) && isFunction(value.complete);\n}\n\nfunction isSubscriber<T>(value: any): value is Subscriber<T> {\n return (value && value instanceof Subscriber) || (isObserver(value) && isSubscription(value));\n}\n", "import { Observable } from '../Observable';\nimport { Subscriber } from '../Subscriber';\nimport { OperatorFunction } from '../types';\nimport { isFunction } from './isFunction';\n\n/**\n * Used to determine if an object is an Observable with a lift function.\n */\nexport function hasLift(source: any): source is { lift: InstanceType<typeof Observable>['lift'] } {\n return isFunction(source?.lift);\n}\n\n/**\n * Creates an `OperatorFunction`. Used to define operators throughout the library in a concise way.\n * @param init The logic to connect the liftedSource to the subscriber at the moment of subscription.\n */\nexport function operate<T, R>(\n init: (liftedSource: Observable<T>, subscriber: Subscriber<R>) => (() => void) | void\n): OperatorFunction<T, R> {\n return (source: Observable<T>) => {\n if (hasLift(source)) {\n return source.lift(function (this: Subscriber<R>, liftedSource: Observable<T>) {\n try {\n return init(liftedSource, this);\n } catch (err) {\n this.error(err);\n }\n });\n }\n throw new TypeError('Unable to lift unknown Observable type');\n };\n}\n", "import { Subscriber } from '../Subscriber';\n\n/**\n * Creates an instance of an `OperatorSubscriber`.\n * @param destination The downstream subscriber.\n * @param onNext Handles next values, only called if this subscriber is not stopped or closed. Any\n * error that occurs in this function is caught and sent to the `error` method of this subscriber.\n * @param onError Handles errors from the subscription, any errors that occur in this handler are caught\n * and send to the `destination` error handler.\n * @param onComplete Handles completion notification from the subscription. Any errors that occur in\n * this handler are sent to the `destination` error handler.\n * @param onFinalize Additional teardown logic here. This will only be called on teardown if the\n * subscriber itself is not already closed. This is called after all other teardown logic is executed.\n */\nexport function createOperatorSubscriber<T>(\n destination: Subscriber<any>,\n onNext?: (value: T) => void,\n onComplete?: () => void,\n onError?: (err: any) => void,\n onFinalize?: () => void\n): Subscriber<T> {\n return new OperatorSubscriber(destination, onNext, onComplete, onError, onFinalize);\n}\n\n/**\n * A generic helper for allowing operators to be created with a Subscriber and\n * use closures to capture necessary state from the operator function itself.\n */\nexport class OperatorSubscriber<T> extends Subscriber<T> {\n /**\n * Creates an instance of an `OperatorSubscriber`.\n * @param destination The downstream subscriber.\n * @param onNext Handles next values, only called if this subscriber is not stopped or closed. Any\n * error that occurs in this function is caught and sent to the `error` method of this subscriber.\n * @param onError Handles errors from the subscription, any errors that occur in this handler are caught\n * and send to the `destination` error handler.\n * @param onComplete Handles completion notification from the subscription. Any errors that occur in\n * this handler are sent to the `destination` error handler.\n * @param onFinalize Additional finalization logic here. This will only be called on finalization if the\n * subscriber itself is not already closed. This is called after all other finalization logic is executed.\n * @param shouldUnsubscribe An optional check to see if an unsubscribe call should truly unsubscribe.\n * NOTE: This currently **ONLY** exists to support the strange behavior of {@link groupBy}, where unsubscription\n * to the resulting observable does not actually disconnect from the source if there are active subscriptions\n * to any grouped observable. (DO NOT EXPOSE OR USE EXTERNALLY!!!)\n */\n constructor(\n destination: Subscriber<any>,\n onNext?: (value: T) => void,\n onComplete?: () => void,\n onError?: (err: any) => void,\n private onFinalize?: () => void,\n private shouldUnsubscribe?: () => boolean\n ) {\n // It's important - for performance reasons - that all of this class's\n // members are initialized and that they are always initialized in the same\n // order. This will ensure that all OperatorSubscriber instances have the\n // same hidden class in V8. This, in turn, will help keep the number of\n // hidden classes involved in property accesses within the base class as\n // low as possible. If the number of hidden classes involved exceeds four,\n // the property accesses will become megamorphic and performance penalties\n // will be incurred - i.e. inline caches won't be used.\n //\n // The reasons for ensuring all instances have the same hidden class are\n // further discussed in this blog post from Benedikt Meurer:\n // https://benediktmeurer.de/2018/03/23/impact-of-polymorphism-on-component-based-frameworks-like-react/\n super(destination);\n this._next = onNext\n ? function (this: OperatorSubscriber<T>, value: T) {\n try {\n onNext(value);\n } catch (err) {\n destination.error(err);\n }\n }\n : super._next;\n this._error = onError\n ? function (this: OperatorSubscriber<T>, err: any) {\n try {\n onError(err);\n } catch (err) {\n // Send any errors that occur down stream.\n destination.error(err);\n } finally {\n // Ensure finalization.\n this.unsubscribe();\n }\n }\n : super._error;\n this._complete = onComplete\n ? function (this: OperatorSubscriber<T>) {\n try {\n onComplete();\n } catch (err) {\n // Send any errors that occur down stream.\n destination.error(err);\n } finally {\n // Ensure finalization.\n this.unsubscribe();\n }\n }\n : super._complete;\n }\n\n unsubscribe() {\n if (!this.shouldUnsubscribe || this.shouldUnsubscribe()) {\n const { closed } = this;\n super.unsubscribe();\n // Execute additional teardown if we have any and we didn't already do so.\n !closed && this.onFinalize?.();\n }\n }\n}\n", "import { Subscription } from '../Subscription';\n\ninterface AnimationFrameProvider {\n schedule(callback: FrameRequestCallback): Subscription;\n requestAnimationFrame: typeof requestAnimationFrame;\n cancelAnimationFrame: typeof cancelAnimationFrame;\n delegate:\n | {\n requestAnimationFrame: typeof requestAnimationFrame;\n cancelAnimationFrame: typeof cancelAnimationFrame;\n }\n | undefined;\n}\n\nexport const animationFrameProvider: AnimationFrameProvider = {\n // When accessing the delegate, use the variable rather than `this` so that\n // the functions can be called without being bound to the provider.\n schedule(callback) {\n let request = requestAnimationFrame;\n let cancel: typeof cancelAnimationFrame | undefined = cancelAnimationFrame;\n const { delegate } = animationFrameProvider;\n if (delegate) {\n request = delegate.requestAnimationFrame;\n cancel = delegate.cancelAnimationFrame;\n }\n const handle = request((timestamp) => {\n // Clear the cancel function. The request has been fulfilled, so\n // attempting to cancel the request upon unsubscription would be\n // pointless.\n cancel = undefined;\n callback(timestamp);\n });\n return new Subscription(() => cancel?.(handle));\n },\n requestAnimationFrame(...args) {\n const { delegate } = animationFrameProvider;\n return (delegate?.requestAnimationFrame || requestAnimationFrame)(...args);\n },\n cancelAnimationFrame(...args) {\n const { delegate } = animationFrameProvider;\n return (delegate?.cancelAnimationFrame || cancelAnimationFrame)(...args);\n },\n delegate: undefined,\n};\n", "import { createErrorClass } from './createErrorClass';\n\nexport interface ObjectUnsubscribedError extends Error {}\n\nexport interface ObjectUnsubscribedErrorCtor {\n /**\n * @deprecated Internal implementation detail. Do not construct error instances.\n * Cannot be tagged as internal: https://github.com/ReactiveX/rxjs/issues/6269\n */\n new (): ObjectUnsubscribedError;\n}\n\n/**\n * An error thrown when an action is invalid because the object has been\n * unsubscribed.\n *\n * @see {@link Subject}\n * @see {@link BehaviorSubject}\n *\n * @class ObjectUnsubscribedError\n */\nexport const ObjectUnsubscribedError: ObjectUnsubscribedErrorCtor = createErrorClass(\n (_super) =>\n function ObjectUnsubscribedErrorImpl(this: any) {\n _super(this);\n this.name = 'ObjectUnsubscribedError';\n this.message = 'object unsubscribed';\n }\n);\n", "import { Operator } from './Operator';\nimport { Observable } from './Observable';\nimport { Subscriber } from './Subscriber';\nimport { Subscription, EMPTY_SUBSCRIPTION } from './Subscription';\nimport { Observer, SubscriptionLike, TeardownLogic } from './types';\nimport { ObjectUnsubscribedError } from './util/ObjectUnsubscribedError';\nimport { arrRemove } from './util/arrRemove';\nimport { errorContext } from './util/errorContext';\n\n/**\n * A Subject is a special type of Observable that allows values to be\n * multicasted to many Observers. Subjects are like EventEmitters.\n *\n * Every Subject is an Observable and an Observer. You can subscribe to a\n * Subject, and you can call next to feed values as well as error and complete.\n */\nexport class Subject<T> extends Observable<T> implements SubscriptionLike {\n closed = false;\n\n private currentObservers: Observer<T>[] | null = null;\n\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n observers: Observer<T>[] = [];\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n isStopped = false;\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n hasError = false;\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n thrownError: any = null;\n\n /**\n * Creates a \"subject\" by basically gluing an observer to an observable.\n *\n * @nocollapse\n * @deprecated Recommended you do not use. Will be removed at some point in the future. Plans for replacement still under discussion.\n */\n static create: (...args: any[]) => any = <T>(destination: Observer<T>, source: Observable<T>): AnonymousSubject<T> => {\n return new AnonymousSubject<T>(destination, source);\n };\n\n constructor() {\n // NOTE: This must be here to obscure Observable's constructor.\n super();\n }\n\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n lift<R>(operator: Operator<T, R>): Observable<R> {\n const subject = new AnonymousSubject(this, this);\n subject.operator = operator as any;\n return subject as any;\n }\n\n /** @internal */\n protected _throwIfClosed() {\n if (this.closed) {\n throw new ObjectUnsubscribedError();\n }\n }\n\n next(value: T) {\n errorContext(() => {\n this._throwIfClosed();\n if (!this.isStopped) {\n if (!this.currentObservers) {\n this.currentObservers = Array.from(this.observers);\n }\n for (const observer of this.currentObservers) {\n observer.next(value);\n }\n }\n });\n }\n\n error(err: any) {\n errorContext(() => {\n this._throwIfClosed();\n if (!this.isStopped) {\n this.hasError = this.isStopped = true;\n this.thrownError = err;\n const { observers } = this;\n while (observers.length) {\n observers.shift()!.error(err);\n }\n }\n });\n }\n\n complete() {\n errorContext(() => {\n this._throwIfClosed();\n if (!this.isStopped) {\n this.isStopped = true;\n const { observers } = this;\n while (observers.length) {\n observers.shift()!.complete();\n }\n }\n });\n }\n\n unsubscribe() {\n this.isStopped = this.closed = true;\n this.observers = this.currentObservers = null!;\n }\n\n get observed() {\n return this.observers?.length > 0;\n }\n\n /** @internal */\n protected _trySubscribe(subscriber: Subscriber<T>): TeardownLogic {\n this._throwIfClosed();\n return super._trySubscribe(subscriber);\n }\n\n /** @internal */\n protected _subscribe(subscriber: Subscriber<T>): Subscription {\n this._throwIfClosed();\n this._checkFinalizedStatuses(subscriber);\n return this._innerSubscribe(subscriber);\n }\n\n /** @internal */\n protected _innerSubscribe(subscriber: Subscriber<any>) {\n const { hasError, isStopped, observers } = this;\n if (hasError || isStopped) {\n return EMPTY_SUBSCRIPTION;\n }\n this.currentObservers = null;\n observers.push(subscriber);\n return new Subscription(() => {\n this.currentObservers = null;\n arrRemove(observers, subscriber);\n });\n }\n\n /** @internal */\n protected _checkFinalizedStatuses(subscriber: Subscriber<any>) {\n const { hasError, thrownError, isStopped } = this;\n if (hasError) {\n subscriber.error(thrownError);\n } else if (isStopped) {\n subscriber.complete();\n }\n }\n\n /**\n * Creates a new Observable with this Subject as the source. You can do this\n * to create custom Observer-side logic of the Subject and conceal it from\n * code that uses the Observable.\n * @return {Observable} Observable that the Subject casts to\n */\n asObservable(): Observable<T> {\n const observable: any = new Observable<T>();\n observable.source = this;\n return observable;\n }\n}\n\n/**\n * @class AnonymousSubject<T>\n */\nexport class AnonymousSubject<T> extends Subject<T> {\n constructor(\n /** @deprecated Internal implementation detail, do not use directly. Will be made internal in v8. */\n public destination?: Observer<T>,\n source?: Observable<T>\n ) {\n super();\n this.source = source;\n }\n\n next(value: T) {\n this.destination?.next?.(value);\n }\n\n error(err: any) {\n this.destination?.error?.(err);\n }\n\n complete() {\n this.destination?.complete?.();\n }\n\n /** @internal */\n protected _subscribe(subscriber: Subscriber<T>): Subscription {\n return this.source?.subscribe(subscriber) ?? EMPTY_SUBSCRIPTION;\n }\n}\n", "import { Subject } from './Subject';\nimport { Subscriber } from './Subscriber';\nimport { Subscription } from './Subscription';\n\n/**\n * A variant of Subject that requires an initial value and emits its current\n * value whenever it is subscribed to.\n *\n * @class BehaviorSubject<T>\n */\nexport class BehaviorSubject<T> extends Subject<T> {\n constructor(private _value: T) {\n super();\n }\n\n get value(): T {\n return this.getValue();\n }\n\n /** @internal */\n protected _subscribe(subscriber: Subscriber<T>): Subscription {\n const subscription = super._subscribe(subscriber);\n !subscription.closed && subscriber.next(this._value);\n return subscription;\n }\n\n getValue(): T {\n const { hasError, thrownError, _value } = this;\n if (hasError) {\n throw thrownError;\n }\n this._throwIfClosed();\n return _value;\n }\n\n next(value: T): void {\n super.next((this._value = value));\n }\n}\n", "import { TimestampProvider } from '../types';\n\ninterface DateTimestampProvider extends TimestampProvider {\n delegate: TimestampProvider | undefined;\n}\n\nexport const dateTimestampProvider: DateTimestampProvider = {\n now() {\n // Use the variable rather than `this` so that the function can be called\n // without being bound to the provider.\n return (dateTimestampProvider.delegate || Date).now();\n },\n delegate: undefined,\n};\n", "import { Subject } from './Subject';\nimport { TimestampProvider } from './types';\nimport { Subscriber } from './Subscriber';\nimport { Subscription } from './Subscription';\nimport { dateTimestampProvider } from './scheduler/dateTimestampProvider';\n\n/**\n * A variant of {@link Subject} that \"replays\" old values to new subscribers by emitting them when they first subscribe.\n *\n * `ReplaySubject` has an internal buffer that will store a specified number of values that it has observed. Like `Subject`,\n * `ReplaySubject` \"observes\" values by having them passed to its `next` method. When it observes a value, it will store that\n * value for a time determined by the configuration of the `ReplaySubject`, as passed to its constructor.\n *\n * When a new subscriber subscribes to the `ReplaySubject` instance, it will synchronously emit all values in its buffer in\n * a First-In-First-Out (FIFO) manner. The `ReplaySubject` will also complete, if it has observed completion; and it will\n * error if it has observed an error.\n *\n * There are two main configuration items to be concerned with:\n *\n * 1. `bufferSize` - This will determine how many items are stored in the buffer, defaults to infinite.\n * 2. `windowTime` - The amount of time to hold a value in the buffer before removing it from the buffer.\n *\n * Both configurations may exist simultaneously. So if you would like to buffer a maximum of 3 values, as long as the values\n * are less than 2 seconds old, you could do so with a `new ReplaySubject(3, 2000)`.\n *\n * ### Differences with BehaviorSubject\n *\n * `BehaviorSubject` is similar to `new ReplaySubject(1)`, with a couple of exceptions:\n *\n * 1. `BehaviorSubject` comes \"primed\" with a single value upon construction.\n * 2. `ReplaySubject` will replay values, even after observing an error, where `BehaviorSubject` will not.\n *\n * @see {@link Subject}\n * @see {@link BehaviorSubject}\n * @see {@link shareReplay}\n */\nexport class ReplaySubject<T> extends Subject<T> {\n private _buffer: (T | number)[] = [];\n private _infiniteTimeWindow = true;\n\n /**\n * @param bufferSize The size of the buffer to replay on subscription\n * @param windowTime The amount of time the buffered items will stay buffered\n * @param timestampProvider An object with a `now()` method that provides the current timestamp. This is used to\n * calculate the amount of time something has been buffered.\n */\n constructor(\n private _bufferSize = Infinity,\n private _windowTime = Infinity,\n private _timestampProvider: TimestampProvider = dateTimestampProvider\n ) {\n super();\n this._infiniteTimeWindow = _windowTime === Infinity;\n this._bufferSize = Math.max(1, _bufferSize);\n this._windowTime = Math.max(1, _windowTime);\n }\n\n next(value: T): void {\n const { isStopped, _buffer, _infiniteTimeWindow, _timestampProvider, _windowTime } = this;\n if (!isStopped) {\n _buffer.push(value);\n !_infiniteTimeWindow && _buffer.push(_timestampProvider.now() + _windowTime);\n }\n this._trimBuffer();\n super.next(value);\n }\n\n /** @internal */\n protected _subscribe(subscriber: Subscriber<T>): Subscription {\n this._throwIfClosed();\n this._trimBuffer();\n\n const subscription = this._innerSubscribe(subscriber);\n\n const { _infiniteTimeWindow, _buffer } = this;\n // We use a copy here, so reentrant code does not mutate our array while we're\n // emitting it to a new subscriber.\n const copy = _buffer.slice();\n for (let i = 0; i < copy.length && !subscriber.closed; i += _infiniteTimeWindow ? 1 : 2) {\n subscriber.next(copy[i] as T);\n }\n\n this._checkFinalizedStatuses(subscriber);\n\n return subscription;\n }\n\n private _trimBuffer() {\n const { _bufferSize, _timestampProvider, _buffer, _infiniteTimeWindow } = this;\n // If we don't have an infinite buffer size, and we're over the length,\n // use splice to truncate the old buffer values off. Note that we have to\n // double the size for instances where we're not using an infinite time window\n // because we're storing the values and the timestamps in the same array.\n const adjustedBufferSize = (_infiniteTimeWindow ? 1 : 2) * _bufferSize;\n _bufferSize < Infinity && adjustedBufferSize < _buffer.length && _buffer.splice(0, _buffer.length - adjustedBufferSize);\n\n // Now, if we're not in an infinite time window, remove all values where the time is\n // older than what is allowed.\n if (!_infiniteTimeWindow) {\n const now = _timestampProvider.now();\n let last = 0;\n // Search the array for the first timestamp that isn't expired and\n // truncate the buffer up to that point.\n for (let i = 1; i < _buffer.length && (_buffer[i] as number) <= now; i += 2) {\n last = i;\n }\n last && _buffer.splice(0, last + 1);\n }\n }\n}\n", "import { Scheduler } from '../Scheduler';\nimport { Subscription } from '../Subscription';\nimport { SchedulerAction } from '../types';\n\n/**\n * A unit of work to be executed in a `scheduler`. An action is typically\n * created from within a {@link SchedulerLike} and an RxJS user does not need to concern\n * themselves about creating and manipulating an Action.\n *\n * ```ts\n * class Action<T> extends Subscription {\n * new (scheduler: Scheduler, work: (state?: T) => void);\n * schedule(state?: T, delay: number = 0): Subscription;\n * }\n * ```\n *\n * @class Action<T>\n */\nexport class Action<T> extends Subscription {\n constructor(scheduler: Scheduler, work: (this: SchedulerAction<T>, state?: T) => void) {\n super();\n }\n /**\n * Schedules this action on its parent {@link SchedulerLike} for execution. May be passed\n * some context object, `state`. May happen at some point in the future,\n * according to the `delay` parameter, if specified.\n * @param {T} [state] Some contextual data that the `work` function uses when\n * called by the Scheduler.\n * @param {number} [delay] Time to wait before executing the work, where the\n * time unit is implicit and defined by the Scheduler.\n * @return {void}\n */\n public schedule(state?: T, delay: number = 0): Subscription {\n return this;\n }\n}\n", "import type { TimerHandle } from './timerHandle';\ntype SetIntervalFunction = (handler: () => void, timeout?: number, ...args: any[]) => TimerHandle;\ntype ClearIntervalFunction = (handle: TimerHandle) => void;\n\ninterface IntervalProvider {\n setInterval: SetIntervalFunction;\n clearInterval: ClearIntervalFunction;\n delegate:\n | {\n setInterval: SetIntervalFunction;\n clearInterval: ClearIntervalFunction;\n }\n | undefined;\n}\n\nexport const intervalProvider: IntervalProvider = {\n // When accessing the delegate, use the variable rather than `this` so that\n // the functions can be called without being bound to the provider.\n setInterval(handler: () => void, timeout?: number, ...args) {\n const { delegate } = intervalProvider;\n if (delegate?.setInterval) {\n return delegate.setInterval(handler, timeout, ...args);\n }\n return setInterval(handler, timeout, ...args);\n },\n clearInterval(handle) {\n const { delegate } = intervalProvider;\n return (delegate?.clearInterval || clearInterval)(handle as any);\n },\n delegate: undefined,\n};\n", "import { Action } from './Action';\nimport { SchedulerAction } from '../types';\nimport { Subscription } from '../Subscription';\nimport { AsyncScheduler } from './AsyncScheduler';\nimport { intervalProvider } from './intervalProvider';\nimport { arrRemove } from '../util/arrRemove';\nimport { TimerHandle } from './timerHandle';\n\nexport class AsyncAction<T> extends Action<T> {\n public id: TimerHandle | undefined;\n public state?: T;\n // @ts-ignore: Property has no initializer and is not definitely assigned\n public delay: number;\n protected pending: boolean = false;\n\n constructor(protected scheduler: AsyncScheduler, protected work: (this: SchedulerAction<T>, state?: T) => void) {\n super(scheduler, work);\n }\n\n public schedule(state?: T, delay: number = 0): Subscription {\n if (this.closed) {\n return this;\n }\n\n // Always replace the current state with the new state.\n this.state = state;\n\n const id = this.id;\n const scheduler = this.scheduler;\n\n //\n // Important implementation note:\n //\n // Actions only execute once by default, unless rescheduled from within the\n // scheduled callback. This allows us to implement single and repeat\n // actions via the same code path, without adding API surface area, as well\n // as mimic traditional recursion but across asynchronous boundaries.\n //\n // However, JS runtimes and timers distinguish between intervals achieved by\n // serial `setTimeout` calls vs. a single `setInterval` call. An interval of\n // serial `setTimeout` calls can be individually delayed, which delays\n // scheduling the next `setTimeout`, and so on. `setInterval` attempts to\n // guarantee the interval callback will be invoked more precisely to the\n // interval period, regardless of load.\n //\n // Therefore, we use `setInterval` to schedule single and repeat actions.\n // If the action reschedules itself with the same delay, the interval is not\n // canceled. If the action doesn't reschedule, or reschedules with a\n // different delay, the interval will be canceled after scheduled callback\n // execution.\n //\n if (id != null) {\n this.id = this.recycleAsyncId(scheduler, id, delay);\n }\n\n // Set the pending flag indicating that this action has been scheduled, or\n // has recursively rescheduled itself.\n this.pending = true;\n\n this.delay = delay;\n // If this action has already an async Id, don't request a new one.\n this.id = this.id ?? this.requestAsyncId(scheduler, this.id, delay);\n\n return this;\n }\n\n protected requestAsyncId(scheduler: AsyncScheduler, _id?: TimerHandle, delay: number = 0): TimerHandle {\n return intervalProvider.setInterval(scheduler.flush.bind(scheduler, this), delay);\n }\n\n protected recycleAsyncId(_scheduler: AsyncScheduler, id?: TimerHandle, delay: number | null = 0): TimerHandle | undefined {\n // If this action is rescheduled with the same delay time, don't clear the interval id.\n if (delay != null && this.delay === delay && this.pending === false) {\n return id;\n }\n // Otherwise, if the action's delay time is different from the current delay,\n // or the action has been rescheduled before it's executed, clear the interval id\n if (id != null) {\n intervalProvider.clearInterval(id);\n }\n\n return undefined;\n }\n\n /**\n * Immediately executes this action and the `work` it contains.\n * @return {any}\n */\n public execute(state: T, delay: number): any {\n if (this.closed) {\n return new Error('executing a cancelled action');\n }\n\n this.pending = false;\n const error = this._execute(state, delay);\n if (error) {\n return error;\n } else if (this.pending === false && this.id != null) {\n // Dequeue if the action didn't reschedule itself. Don't call\n // unsubscribe(), because the action could reschedule later.\n // For example:\n // ```\n // scheduler.schedule(function doWork(counter) {\n // /* ... I'm a busy worker bee ... */\n // var originalAction = this;\n // /* wait 100ms before rescheduling the action */\n // setTimeout(function () {\n // originalAction.schedule(counter + 1);\n // }, 100);\n // }, 1000);\n // ```\n this.id = this.recycleAsyncId(this.scheduler, this.id, null);\n }\n }\n\n protected _execute(state: T, _delay: number): any {\n let errored: boolean = false;\n let errorValue: any;\n try {\n this.work(state);\n } catch (e) {\n errored = true;\n // HACK: Since code elsewhere is relying on the \"truthiness\" of the\n // return here, we can't have it return \"\" or 0 or false.\n // TODO: Clean this up when we refactor schedulers mid-version-8 or so.\n errorValue = e ? e : new Error('Scheduled action threw falsy error');\n }\n if (errored) {\n this.unsubscribe();\n return errorValue;\n }\n }\n\n unsubscribe() {\n if (!this.closed) {\n const { id, scheduler } = this;\n const { actions } = scheduler;\n\n this.work = this.state = this.scheduler = null!;\n this.pending = false;\n\n arrRemove(actions, this);\n if (id != null) {\n this.id = this.recycleAsyncId(scheduler, id, null);\n }\n\n this.delay = null!;\n super.unsubscribe();\n }\n }\n}\n", "import { Action } from './scheduler/Action';\nimport { Subscription } from './Subscription';\nimport { SchedulerLike, SchedulerAction } from './types';\nimport { dateTimestampProvider } from './scheduler/dateTimestampProvider';\n\n/**\n * An execution context and a data structure to order tasks and schedule their\n * execution. Provides a notion of (potentially virtual) time, through the\n * `now()` getter method.\n *\n * Each unit of work in a Scheduler is called an `Action`.\n *\n * ```ts\n * class Scheduler {\n * now(): number;\n * schedule(work, delay?, state?): Subscription;\n * }\n * ```\n *\n * @class Scheduler\n * @deprecated Scheduler is an internal implementation detail of RxJS, and\n * should not be used directly. Rather, create your own class and implement\n * {@link SchedulerLike}. Will be made internal in v8.\n */\nexport class Scheduler implements SchedulerLike {\n public static now: () => number = dateTimestampProvider.now;\n\n constructor(private schedulerActionCtor: typeof Action, now: () => number = Scheduler.now) {\n this.now = now;\n }\n\n /**\n * A getter method that returns a number representing the current time\n * (at the time this function was called) according to the scheduler's own\n * internal clock.\n * @return {number} A number that represents the current time. May or may not\n * have a relation to wall-clock time. May or may not refer to a time unit\n * (e.g. milliseconds).\n */\n public now: () => number;\n\n /**\n * Schedules a function, `work`, for execution. May happen at some point in\n * the future, according to the `delay` parameter, if specified. May be passed\n * some context object, `state`, which will be passed to the `work` function.\n *\n * The given arguments will be processed an stored as an Action object in a\n * queue of actions.\n *\n * @param {function(state: ?T): ?Subscription} work A function representing a\n * task, or some unit of work to be executed by the Scheduler.\n * @param {number} [delay] Time to wait before executing the work, where the\n * time unit is implicit and defined by the Scheduler itself.\n * @param {T} [state] Some contextual data that the `work` function uses when\n * called by the Scheduler.\n * @return {Subscription} A subscription in order to be able to unsubscribe\n * the scheduled work.\n */\n public schedule<T>(work: (this: SchedulerAction<T>, state?: T) => void, delay: number = 0, state?: T): Subscription {\n return new this.schedulerActionCtor<T>(this, work).schedule(state, delay);\n }\n}\n", "import { Scheduler } from '../Scheduler';\nimport { Action } from './Action';\nimport { AsyncAction } from './AsyncAction';\nimport { TimerHandle } from './timerHandle';\n\nexport class AsyncScheduler extends Scheduler {\n public actions: Array<AsyncAction<any>> = [];\n /**\n * A flag to indicate whether the Scheduler is currently executing a batch of\n * queued actions.\n * @type {boolean}\n * @internal\n */\n public _active: boolean = false;\n /**\n * An internal ID used to track the latest asynchronous task such as those\n * coming from `setTimeout`, `setInterval`, `requestAnimationFrame`, and\n * others.\n * @type {any}\n * @internal\n */\n public _scheduled: TimerHandle | undefined;\n\n constructor(SchedulerAction: typeof Action, now: () => number = Scheduler.now) {\n super(SchedulerAction, now);\n }\n\n public flush(action: AsyncAction<any>): void {\n const { actions } = this;\n\n if (this._active) {\n actions.push(action);\n return;\n }\n\n let error: any;\n this._active = true;\n\n do {\n if ((error = action.execute(action.state, action.delay))) {\n break;\n }\n } while ((action = actions.shift()!)); // exhaust the scheduler queue\n\n this._active = false;\n\n if (error) {\n while ((action = actions.shift()!)) {\n action.unsubscribe();\n }\n throw error;\n }\n }\n}\n", "import { AsyncAction } from './AsyncAction';\nimport { AsyncScheduler } from './AsyncScheduler';\n\n/**\n *\n * Async Scheduler\n *\n * <span class=\"informal\">Schedule task as if you used setTimeout(task, duration)</span>\n *\n * `async` scheduler schedules tasks asynchronously, by putting them on the JavaScript\n * event loop queue. It is best used to delay tasks in time or to schedule tasks repeating\n * in intervals.\n *\n * If you just want to \"defer\" task, that is to perform it right after currently\n * executing synchronous code ends (commonly achieved by `setTimeout(deferredTask, 0)`),\n * better choice will be the {@link asapScheduler} scheduler.\n *\n * ## Examples\n * Use async scheduler to delay task\n * ```ts\n * import { asyncScheduler } from 'rxjs';\n *\n * const task = () => console.log('it works!');\n *\n * asyncScheduler.schedule(task, 2000);\n *\n * // After 2 seconds logs:\n * // \"it works!\"\n * ```\n *\n * Use async scheduler to repeat task in intervals\n * ```ts\n * import { asyncScheduler } from 'rxjs';\n *\n * function task(state) {\n * console.log(state);\n * this.schedule(state + 1, 1000); // `this` references currently executing Action,\n * // which we reschedule with new state and delay\n * }\n *\n * asyncScheduler.schedule(task, 3000, 0);\n *\n * // Logs:\n * // 0 after 3s\n * // 1 after 4s\n * // 2 after 5s\n * // 3 after 6s\n * ```\n */\n\nexport const asyncScheduler = new AsyncScheduler(AsyncAction);\n\n/**\n * @deprecated Renamed to {@link asyncScheduler}. Will be removed in v8.\n */\nexport const async = asyncScheduler;\n", "import { AsyncAction } from './AsyncAction';\nimport { Subscription } from '../Subscription';\nimport { QueueScheduler } from './QueueScheduler';\nimport { SchedulerAction } from '../types';\nimport { TimerHandle } from './timerHandle';\n\nexport class QueueAction<T> extends AsyncAction<T> {\n constructor(protected scheduler: QueueScheduler, protected work: (this: SchedulerAction<T>, state?: T) => void) {\n super(scheduler, work);\n }\n\n public schedule(state?: T, delay: number = 0): Subscription {\n if (delay > 0) {\n return super.schedule(state, delay);\n }\n this.delay = delay;\n this.state = state;\n this.scheduler.flush(this);\n return this;\n }\n\n public execute(state: T, delay: number): any {\n return delay > 0 || this.closed ? super.execute(state, delay) : this._execute(state, delay);\n }\n\n protected requestAsyncId(scheduler: QueueScheduler, id?: TimerHandle, delay: number = 0): TimerHandle {\n // If delay exists and is greater than 0, or if the delay is null (the\n // action wasn't rescheduled) but was originally scheduled as an async\n // action, then recycle as an async action.\n\n if ((delay != null && delay > 0) || (delay == null && this.delay > 0)) {\n return super.requestAsyncId(scheduler, id, delay);\n }\n\n // Otherwise flush the scheduler starting with this action.\n scheduler.flush(this);\n\n // HACK: In the past, this was returning `void`. However, `void` isn't a valid\n // `TimerHandle`, and generally the return value here isn't really used. So the\n // compromise is to return `0` which is both \"falsy\" and a valid `TimerHandle`,\n // as opposed to refactoring every other instanceo of `requestAsyncId`.\n return 0;\n }\n}\n", "import { AsyncScheduler } from './AsyncScheduler';\n\nexport class QueueScheduler extends AsyncScheduler {\n}\n", "import { QueueAction } from './QueueAction';\nimport { QueueScheduler } from './QueueScheduler';\n\n/**\n *\n * Queue Scheduler\n *\n * <span class=\"informal\">Put every next task on a queue, instead of executing it immediately</span>\n *\n * `queue` scheduler, when used with delay, behaves the same as {@link asyncScheduler} scheduler.\n *\n * When used without delay, it schedules given task synchronously - executes it right when\n * it is scheduled. However when called recursively, that is when inside the scheduled task,\n * another task is scheduled with queue scheduler, instead of executing immediately as well,\n * that task will be put on a queue and wait for current one to finish.\n *\n * This means that when you execute task with `queue` scheduler, you are sure it will end\n * before any other task scheduled with that scheduler will start.\n *\n * ## Examples\n * Schedule recursively first, then do something\n * ```ts\n * import { queueScheduler } from 'rxjs';\n *\n * queueScheduler.schedule(() => {\n * queueScheduler.schedule(() => console.log('second')); // will not happen now, but will be put on a queue\n *\n * console.log('first');\n * });\n *\n * // Logs:\n * // \"first\"\n * // \"second\"\n * ```\n *\n * Reschedule itself recursively\n * ```ts\n * import { queueScheduler } from 'rxjs';\n *\n * queueScheduler.schedule(function(state) {\n * if (state !== 0) {\n * console.log('before', state);\n * this.schedule(state - 1); // `this` references currently executing Action,\n * // which we reschedule with new state\n * console.log('after', state);\n * }\n * }, 0, 3);\n *\n * // In scheduler that runs recursively, you would expect:\n * // \"before\", 3\n * // \"before\", 2\n * // \"before\", 1\n * // \"after\", 1\n * // \"after\", 2\n * // \"after\", 3\n *\n * // But with queue it logs:\n * // \"before\", 3\n * // \"after\", 3\n * // \"before\", 2\n * // \"after\", 2\n * // \"before\", 1\n * // \"after\", 1\n * ```\n */\n\nexport const queueScheduler = new QueueScheduler(QueueAction);\n\n/**\n * @deprecated Renamed to {@link queueScheduler}. Will be removed in v8.\n */\nexport const queue = queueScheduler;\n", "import { AsyncAction } from './AsyncAction';\nimport { AnimationFrameScheduler } from './AnimationFrameScheduler';\nimport { SchedulerAction } from '../types';\nimport { animationFrameProvider } from './animationFrameProvider';\nimport { TimerHandle } from './timerHandle';\n\nexport class AnimationFrameAction<T> extends AsyncAction<T> {\n constructor(protected scheduler: AnimationFrameScheduler, protected work: (this: SchedulerAction<T>, state?: T) => void) {\n super(scheduler, work);\n }\n\n protected requestAsyncId(scheduler: AnimationFrameScheduler, id?: TimerHandle, delay: number = 0): TimerHandle {\n // If delay is greater than 0, request as an async action.\n if (delay !== null && delay > 0) {\n return super.requestAsyncId(scheduler, id, delay);\n }\n // Push the action to the end of the scheduler queue.\n scheduler.actions.push(this);\n // If an animation frame has already been requested, don't request another\n // one. If an animation frame hasn't been requested yet, request one. Return\n // the current animation frame request id.\n return scheduler._scheduled || (scheduler._scheduled = animationFrameProvider.requestAnimationFrame(() => scheduler.flush(undefined)));\n }\n\n protected recycleAsyncId(scheduler: AnimationFrameScheduler, id?: TimerHandle, delay: number = 0): TimerHandle | undefined {\n // If delay exists and is greater than 0, or if the delay is null (the\n // action wasn't rescheduled) but was originally scheduled as an async\n // action, then recycle as an async action.\n if (delay != null ? delay > 0 : this.delay > 0) {\n return super.recycleAsyncId(scheduler, id, delay);\n }\n // If the scheduler queue has no remaining actions with the same async id,\n // cancel the requested animation frame and set the scheduled flag to\n // undefined so the next AnimationFrameAction will request its own.\n const { actions } = scheduler;\n if (id != null && actions[actions.length - 1]?.id !== id) {\n animationFrameProvider.cancelAnimationFrame(id as number);\n scheduler._scheduled = undefined;\n }\n // Return undefined so the action knows to request a new async id if it's rescheduled.\n return undefined;\n }\n}\n", "import { AsyncAction } from './AsyncAction';\nimport { AsyncScheduler } from './AsyncScheduler';\n\nexport class AnimationFrameScheduler extends AsyncScheduler {\n public flush(action?: AsyncAction<any>): void {\n this._active = true;\n // The async id that effects a call to flush is stored in _scheduled.\n // Before executing an action, it's necessary to check the action's async\n // id to determine whether it's supposed to be executed in the current\n // flush.\n // Previous implementations of this method used a count to determine this,\n // but that was unsound, as actions that are unsubscribed - i.e. cancelled -\n // are removed from the actions array and that can shift actions that are\n // scheduled to be executed in a subsequent flush into positions at which\n // they are executed within the current flush.\n const flushId = this._scheduled;\n this._scheduled = undefined;\n\n const { actions } = this;\n let error: any;\n action = action || actions.shift()!;\n\n do {\n if ((error = action.execute(action.state, action.delay))) {\n break;\n }\n } while ((action = actions[0]) && action.id === flushId && actions.shift());\n\n this._active = false;\n\n if (error) {\n while ((action = actions[0]) && action.id === flushId && actions.shift()) {\n action.unsubscribe();\n }\n throw error;\n }\n }\n}\n", "import { AnimationFrameAction } from './AnimationFrameAction';\nimport { AnimationFrameScheduler } from './AnimationFrameScheduler';\n\n/**\n *\n * Animation Frame Scheduler\n *\n * <span class=\"informal\">Perform task when `window.requestAnimationFrame` would fire</span>\n *\n * When `animationFrame` scheduler is used with delay, it will fall back to {@link asyncScheduler} scheduler\n * behaviour.\n *\n * Without delay, `animationFrame` scheduler can be used to create smooth browser animations.\n * It makes sure scheduled task will happen just before next browser content repaint,\n * thus performing animations as efficiently as possible.\n *\n * ## Example\n * Schedule div height animation\n * ```ts\n * // html: <div style=\"background: #0ff;\"></div>\n * import { animationFrameScheduler } from 'rxjs';\n *\n * const div = document.querySelector('div');\n *\n * animationFrameScheduler.schedule(function(height) {\n * div.style.height = height + \"px\";\n *\n * this.schedule(height + 1); // `this` references currently executing Action,\n * // which we reschedule with new state\n * }, 0, 0);\n *\n * // You will see a div element growing in height\n * ```\n */\n\nexport const animationFrameScheduler = new AnimationFrameScheduler(AnimationFrameAction);\n\n/**\n * @deprecated Renamed to {@link animationFrameScheduler}. Will be removed in v8.\n */\nexport const animationFrame = animationFrameScheduler;\n", "import { Observable } from '../Observable';\nimport { SchedulerLike } from '../types';\n\n/**\n * A simple Observable that emits no items to the Observer and immediately\n * emits a complete notification.\n *\n * <span class=\"informal\">Just emits 'complete', and nothing else.</span>\n *\n * ![](empty.png)\n *\n * A simple Observable that only emits the complete notification. It can be used\n * for composing with other Observables, such as in a {@link mergeMap}.\n *\n * ## Examples\n *\n * Log complete notification\n *\n * ```ts\n * import { EMPTY } from 'rxjs';\n *\n * EMPTY.subscribe({\n * next: () => console.log('Next'),\n * complete: () => console.log('Complete!')\n * });\n *\n * // Outputs\n * // Complete!\n * ```\n *\n * Emit the number 7, then complete\n *\n * ```ts\n * import { EMPTY, startWith } from 'rxjs';\n *\n * const result = EMPTY.pipe(startWith(7));\n * result.subscribe(x => console.log(x));\n *\n * // Outputs\n * // 7\n * ```\n *\n * Map and flatten only odd numbers to the sequence `'a'`, `'b'`, `'c'`\n *\n * ```ts\n * import { interval, mergeMap, of, EMPTY } from 'rxjs';\n *\n * const interval$ = interval(1000);\n * const result = interval$.pipe(\n * mergeMap(x => x % 2 === 1 ? of('a', 'b', 'c') : EMPTY),\n * );\n * result.subscribe(x => console.log(x));\n *\n * // Results in the following to the console:\n * // x is equal to the count on the interval, e.g. (0, 1, 2, 3, ...)\n * // x will occur every 1000ms\n * // if x % 2 is equal to 1, print a, b, c (each on its own)\n * // if x % 2 is not equal to 1, nothing will be output\n * ```\n *\n * @see {@link Observable}\n * @see {@link NEVER}\n * @see {@link of}\n * @see {@link throwError}\n */\nexport const EMPTY = new Observable<never>((subscriber) => subscriber.complete());\n\n/**\n * @param scheduler A {@link SchedulerLike} to use for scheduling\n * the emission of the complete notification.\n * @deprecated Replaced with the {@link EMPTY} constant or {@link scheduled} (e.g. `scheduled([], scheduler)`). Will be removed in v8.\n */\nexport function empty(scheduler?: SchedulerLike) {\n return scheduler ? emptyScheduled(scheduler) : EMPTY;\n}\n\nfunction emptyScheduled(scheduler: SchedulerLike) {\n return new Observable<never>((subscriber) => scheduler.schedule(() => subscriber.complete()));\n}\n", "import { SchedulerLike } from '../types';\nimport { isFunction } from './isFunction';\n\nexport function isScheduler(value: any): value is SchedulerLike {\n return value && isFunction(value.schedule);\n}\n", "import { SchedulerLike } from '../types';\nimport { isFunction } from './isFunction';\nimport { isScheduler } from './isScheduler';\n\nfunction last<T>(arr: T[]): T | undefined {\n return arr[arr.length - 1];\n}\n\nexport function popResultSelector(args: any[]): ((...args: unknown[]) => unknown) | undefined {\n return isFunction(last(args)) ? args.pop() : undefined;\n}\n\nexport function popScheduler(args: any[]): SchedulerLike | undefined {\n return isScheduler(last(args)) ? args.pop() : undefined;\n}\n\nexport function popNumber(args: any[], defaultValue: number): number {\n return typeof last(args) === 'number' ? args.pop()! : defaultValue;\n}\n", "export const isArrayLike = (<T>(x: any): x is ArrayLike<T> => x && typeof x.length === 'number' && typeof x !== 'function');", "import { isFunction } from \"./isFunction\";\n\n/**\n * Tests to see if the object is \"thennable\".\n * @param value the object to test\n */\nexport function isPromise(value: any): value is PromiseLike<any> {\n return isFunction(value?.then);\n}\n", "import { InteropObservable } from '../types';\nimport { observable as Symbol_observable } from '../symbol/observable';\nimport { isFunction } from './isFunction';\n\n/** Identifies an input as being Observable (but not necessary an Rx Observable) */\nexport function isInteropObservable(input: any): input is InteropObservable<any> {\n return isFunction(input[Symbol_observable]);\n}\n", "import { isFunction } from './isFunction';\n\nexport function isAsyncIterable<T>(obj: any): obj is AsyncIterable<T> {\n return Symbol.asyncIterator && isFunction(obj?.[Symbol.asyncIterator]);\n}\n", "/**\n * Creates the TypeError to throw if an invalid object is passed to `from` or `scheduled`.\n * @param input The object that was passed.\n */\nexport function createInvalidObservableTypeError(input: any) {\n // TODO: We should create error codes that can be looked up, so this can be less verbose.\n return new TypeError(\n `You provided ${\n input !== null && typeof input === 'object' ? 'an invalid object' : `'${input}'`\n } where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.`\n );\n}\n", "export function getSymbolIterator(): symbol {\n if (typeof Symbol !== 'function' || !Symbol.iterator) {\n return '@@iterator' as any;\n }\n\n return Symbol.iterator;\n}\n\nexport const iterator = getSymbolIterator();\n", "import { iterator as Symbol_iterator } from '../symbol/iterator';\nimport { isFunction } from './isFunction';\n\n/** Identifies an input as being an Iterable */\nexport function isIterable(input: any): input is Iterable<any> {\n return isFunction(input?.[Symbol_iterator]);\n}\n", "import { ReadableStreamLike } from '../types';\nimport { isFunction } from './isFunction';\n\nexport async function* readableStreamLikeToAsyncGenerator<T>(readableStream: ReadableStreamLike<T>): AsyncGenerator<T> {\n const reader = readableStream.getReader();\n try {\n while (true) {\n const { value, done } = await reader.read();\n if (done) {\n return;\n }\n yield value!;\n }\n } finally {\n reader.releaseLock();\n }\n}\n\nexport function isReadableStreamLike<T>(obj: any): obj is ReadableStreamLike<T> {\n // We don't want to use instanceof checks because they would return\n // false for instances from another Realm, like an <iframe>.\n return isFunction(obj?.getReader);\n}\n", "import { isArrayLike } from '../util/isArrayLike';\nimport { isPromise } from '../util/isPromise';\nimport { Observable } from '../Observable';\nimport { ObservableInput, ObservedValueOf, ReadableStreamLike } from '../types';\nimport { isInteropObservable } from '../util/isInteropObservable';\nimport { isAsyncIterable } from '../util/isAsyncIterable';\nimport { createInvalidObservableTypeError } from '../util/throwUnobservableError';\nimport { isIterable } from '../util/isIterable';\nimport { isReadableStreamLike, readableStreamLikeToAsyncGenerator } from '../util/isReadableStreamLike';\nimport { Subscriber } from '../Subscriber';\nimport { isFunction } from '../util/isFunction';\nimport { reportUnhandledError } from '../util/reportUnhandledError';\nimport { observable as Symbol_observable } from '../symbol/observable';\n\nexport function innerFrom<O extends ObservableInput<any>>(input: O): Observable<ObservedValueOf<O>>;\nexport function innerFrom<T>(input: ObservableInput<T>): Observable<T> {\n if (input instanceof Observable) {\n return input;\n }\n if (input != null) {\n if (isInteropObservable(input)) {\n return fromInteropObservable(input);\n }\n if (isArrayLike(input)) {\n return fromArrayLike(input);\n }\n if (isPromise(input)) {\n return fromPromise(input);\n }\n if (isAsyncIterable(input)) {\n return fromAsyncIterable(input);\n }\n if (isIterable(input)) {\n return fromIterable(input);\n }\n if (isReadableStreamLike(input)) {\n return fromReadableStreamLike(input);\n }\n }\n\n throw createInvalidObservableTypeError(input);\n}\n\n/**\n * Creates an RxJS Observable from an object that implements `Symbol.observable`.\n * @param obj An object that properly implements `Symbol.observable`.\n */\nexport function fromInteropObservable<T>(obj: any) {\n return new Observable((subscriber: Subscriber<T>) => {\n const obs = obj[Symbol_observable]();\n if (isFunction(obs.subscribe)) {\n return obs.subscribe(subscriber);\n }\n // Should be caught by observable subscribe function error handling.\n throw new TypeError('Provided object does not correctly implement Symbol.observable');\n });\n}\n\n/**\n * Synchronously emits the values of an array like and completes.\n * This is exported because there are creation functions and operators that need to\n * make direct use of the same logic, and there's no reason to make them run through\n * `from` conditionals because we *know* they're dealing with an array.\n * @param array The array to emit values from\n */\nexport function fromArrayLike<T>(array: ArrayLike<T>) {\n return new Observable((subscriber: Subscriber<T>) => {\n // Loop over the array and emit each value. Note two things here:\n // 1. We're making sure that the subscriber is not closed on each loop.\n // This is so we don't continue looping over a very large array after\n // something like a `take`, `takeWhile`, or other synchronous unsubscription\n // has already unsubscribed.\n // 2. In this form, reentrant code can alter that array we're looping over.\n // This is a known issue, but considered an edge case. The alternative would\n // be to copy the array before executing the loop, but this has\n // performance implications.\n for (let i = 0; i < array.length && !subscriber.closed; i++) {\n subscriber.next(array[i]);\n }\n subscriber.complete();\n });\n}\n\nexport function fromPromise<T>(promise: PromiseLike<T>) {\n return new Observable((subscriber: Subscriber<T>) => {\n promise\n .then(\n (value) => {\n if (!subscriber.closed) {\n subscriber.next(value);\n subscriber.complete();\n }\n },\n (err: any) => subscriber.error(err)\n )\n .then(null, reportUnhandledError);\n });\n}\n\nexport function fromIterable<T>(iterable: Iterable<T>) {\n return new Observable((subscriber: Subscriber<T>) => {\n for (const value of iterable) {\n subscriber.next(value);\n if (subscriber.closed) {\n return;\n }\n }\n subscriber.complete();\n });\n}\n\nexport function fromAsyncIterable<T>(asyncIterable: AsyncIterable<T>) {\n return new Observable((subscriber: Subscriber<T>) => {\n process(asyncIterable, subscriber).catch((err) => subscriber.error(err));\n });\n}\n\nexport function fromReadableStreamLike<T>(readableStream: ReadableStreamLike<T>) {\n return fromAsyncIterable(readableStreamLikeToAsyncGenerator(readableStream));\n}\n\nasync function process<T>(asyncIterable: AsyncIterable<T>, subscriber: Subscriber<T>) {\n for await (const value of asyncIterable) {\n subscriber.next(value);\n // A side-effect may have closed our subscriber,\n // check before the next iteration.\n if (subscriber.closed) {\n return;\n }\n }\n subscriber.complete();\n}\n", "import { Subscription } from '../Subscription';\nimport { SchedulerAction, SchedulerLike } from '../types';\n\nexport function executeSchedule(\n parentSubscription: Subscription,\n scheduler: SchedulerLike,\n work: () => void,\n delay: number,\n repeat: true\n): void;\nexport function executeSchedule(\n parentSubscription: Subscription,\n scheduler: SchedulerLike,\n work: () => void,\n delay?: number,\n repeat?: false\n): Subscription;\n\nexport function executeSchedule(\n parentSubscription: Subscription,\n scheduler: SchedulerLike,\n work: () => void,\n delay = 0,\n repeat = false\n): Subscription | void {\n const scheduleSubscription = scheduler.schedule(function (this: SchedulerAction<any>) {\n work();\n if (repeat) {\n parentSubscription.add(this.schedule(null, delay));\n } else {\n this.unsubscribe();\n }\n }, delay);\n\n parentSubscription.add(scheduleSubscription);\n\n if (!repeat) {\n // Because user-land scheduler implementations are unlikely to properly reuse\n // Actions for repeat scheduling, we can't trust that the returned subscription\n // will control repeat subscription scenarios. So we're trying to avoid using them\n // incorrectly within this library.\n return scheduleSubscription;\n }\n}\n", "/** @prettier */\nimport { MonoTypeOperatorFunction, SchedulerLike } from '../types';\nimport { executeSchedule } from '../util/executeSchedule';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\n/**\n * Re-emits all notifications from source Observable with specified scheduler.\n *\n * <span class=\"informal\">Ensure a specific scheduler is used, from outside of an Observable.</span>\n *\n * `observeOn` is an operator that accepts a scheduler as a first parameter, which will be used to reschedule\n * notifications emitted by the source Observable. It might be useful, if you do not have control over\n * internal scheduler of a given Observable, but want to control when its values are emitted nevertheless.\n *\n * Returned Observable emits the same notifications (nexted values, complete and error events) as the source Observable,\n * but rescheduled with provided scheduler. Note that this doesn't mean that source Observables internal\n * scheduler will be replaced in any way. Original scheduler still will be used, but when the source Observable emits\n * notification, it will be immediately scheduled again - this time with scheduler passed to `observeOn`.\n * An anti-pattern would be calling `observeOn` on Observable that emits lots of values synchronously, to split\n * that emissions into asynchronous chunks. For this to happen, scheduler would have to be passed into the source\n * Observable directly (usually into the operator that creates it). `observeOn` simply delays notifications a\n * little bit more, to ensure that they are emitted at expected moments.\n *\n * As a matter of fact, `observeOn` accepts second parameter, which specifies in milliseconds with what delay notifications\n * will be emitted. The main difference between {@link delay} operator and `observeOn` is that `observeOn`\n * will delay all notifications - including error notifications - while `delay` will pass through error\n * from source Observable immediately when it is emitted. In general it is highly recommended to use `delay` operator\n * for any kind of delaying of values in the stream, while using `observeOn` to specify which scheduler should be used\n * for notification emissions in general.\n *\n * ## Example\n *\n * Ensure values in subscribe are called just before browser repaint\n *\n * ```ts\n * import { interval, observeOn, animationFrameScheduler } from 'rxjs';\n *\n * const someDiv = document.createElement('div');\n * someDiv.style.cssText = 'width: 200px;background: #09c';\n * document.body.appendChild(someDiv);\n * const intervals = interval(10); // Intervals are scheduled\n * // with async scheduler by default...\n * intervals.pipe(\n * observeOn(animationFrameScheduler) // ...but we will observe on animationFrame\n * ) // scheduler to ensure smooth animation.\n * .subscribe(val => {\n * someDiv.style.height = val + 'px';\n * });\n * ```\n *\n * @see {@link delay}\n *\n * @param scheduler Scheduler that will be used to reschedule notifications from source Observable.\n * @param delay Number of milliseconds that states with what delay every notification should be rescheduled.\n * @return A function that returns an Observable that emits the same\n * notifications as the source Observable, but with provided scheduler.\n */\nexport function observeOn<T>(scheduler: SchedulerLike, delay = 0): MonoTypeOperatorFunction<T> {\n return operate((source, subscriber) => {\n source.subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => executeSchedule(subscriber, scheduler, () => subscriber.next(value), delay),\n () => executeSchedule(subscriber, scheduler, () => subscriber.complete(), delay),\n (err) => executeSchedule(subscriber, scheduler, () => subscriber.error(err), delay)\n )\n );\n });\n}\n", "import { MonoTypeOperatorFunction, SchedulerLike } from '../types';\nimport { operate } from '../util/lift';\n\n/**\n * Asynchronously subscribes Observers to this Observable on the specified {@link SchedulerLike}.\n *\n * With `subscribeOn` you can decide what type of scheduler a specific Observable will be using when it is subscribed to.\n *\n * Schedulers control the speed and order of emissions to observers from an Observable stream.\n *\n * ![](subscribeOn.png)\n *\n * ## Example\n *\n * Given the following code:\n *\n * ```ts\n * import { of, merge } from 'rxjs';\n *\n * const a = of(1, 2, 3);\n * const b = of(4, 5, 6);\n *\n * merge(a, b).subscribe(console.log);\n *\n * // Outputs\n * // 1\n * // 2\n * // 3\n * // 4\n * // 5\n * // 6\n * ```\n *\n * Both Observable `a` and `b` will emit their values directly and synchronously once they are subscribed to.\n *\n * If we instead use the `subscribeOn` operator declaring that we want to use the {@link asyncScheduler} for values emitted by Observable `a`:\n *\n * ```ts\n * import { of, subscribeOn, asyncScheduler, merge } from 'rxjs';\n *\n * const a = of(1, 2, 3).pipe(subscribeOn(asyncScheduler));\n * const b = of(4, 5, 6);\n *\n * merge(a, b).subscribe(console.log);\n *\n * // Outputs\n * // 4\n * // 5\n * // 6\n * // 1\n * // 2\n * // 3\n * ```\n *\n * The reason for this is that Observable `b` emits its values directly and synchronously like before\n * but the emissions from `a` are scheduled on the event loop because we are now using the {@link asyncScheduler} for that specific Observable.\n *\n * @param scheduler The {@link SchedulerLike} to perform subscription actions on.\n * @param delay A delay to pass to the scheduler to delay subscriptions\n * @return A function that returns an Observable modified so that its\n * subscriptions happen on the specified {@link SchedulerLike}.\n */\nexport function subscribeOn<T>(scheduler: SchedulerLike, delay: number = 0): MonoTypeOperatorFunction<T> {\n return operate((source, subscriber) => {\n subscriber.add(scheduler.schedule(() => source.subscribe(subscriber), delay));\n });\n}\n", "import { innerFrom } from '../observable/innerFrom';\nimport { observeOn } from '../operators/observeOn';\nimport { subscribeOn } from '../operators/subscribeOn';\nimport { InteropObservable, SchedulerLike } from '../types';\n\nexport function scheduleObservable<T>(input: InteropObservable<T>, scheduler: SchedulerLike) {\n return innerFrom(input).pipe(subscribeOn(scheduler), observeOn(scheduler));\n}\n", "import { innerFrom } from '../observable/innerFrom';\nimport { observeOn } from '../operators/observeOn';\nimport { subscribeOn } from '../operators/subscribeOn';\nimport { SchedulerLike } from '../types';\n\nexport function schedulePromise<T>(input: PromiseLike<T>, scheduler: SchedulerLike) {\n return innerFrom(input).pipe(subscribeOn(scheduler), observeOn(scheduler));\n}\n", "import { Observable } from '../Observable';\nimport { SchedulerLike } from '../types';\n\nexport function scheduleArray<T>(input: ArrayLike<T>, scheduler: SchedulerLike) {\n return new Observable<T>((subscriber) => {\n // The current array index.\n let i = 0;\n // Start iterating over the array like on a schedule.\n return scheduler.schedule(function () {\n if (i === input.length) {\n // If we have hit the end of the array like in the\n // previous job, we can complete.\n subscriber.complete();\n } else {\n // Otherwise let's next the value at the current index,\n // then increment our index.\n subscriber.next(input[i++]);\n // If the last emission didn't cause us to close the subscriber\n // (via take or some side effect), reschedule the job and we'll\n // make another pass.\n if (!subscriber.closed) {\n this.schedule();\n }\n }\n });\n });\n}\n", "import { Observable } from '../Observable';\nimport { SchedulerLike } from '../types';\nimport { iterator as Symbol_iterator } from '../symbol/iterator';\nimport { isFunction } from '../util/isFunction';\nimport { executeSchedule } from '../util/executeSchedule';\n\n/**\n * Used in {@link scheduled} to create an observable from an Iterable.\n * @param input The iterable to create an observable from\n * @param scheduler The scheduler to use\n */\nexport function scheduleIterable<T>(input: Iterable<T>, scheduler: SchedulerLike) {\n return new Observable<T>((subscriber) => {\n let iterator: Iterator<T, T>;\n\n // Schedule the initial creation of the iterator from\n // the iterable. This is so the code in the iterable is\n // not called until the scheduled job fires.\n executeSchedule(subscriber, scheduler, () => {\n // Create the iterator.\n iterator = (input as any)[Symbol_iterator]();\n\n executeSchedule(\n subscriber,\n scheduler,\n () => {\n let value: T;\n let done: boolean | undefined;\n try {\n // Pull the value out of the iterator\n ({ value, done } = iterator.next());\n } catch (err) {\n // We got an error while pulling from the iterator\n subscriber.error(err);\n return;\n }\n\n if (done) {\n // If it is \"done\" we just complete. This mimics the\n // behavior of JavaScript's `for..of` consumption of\n // iterables, which will not emit the value from an iterator\n // result of `{ done: true: value: 'here' }`.\n subscriber.complete();\n } else {\n // The iterable is not done, emit the value.\n subscriber.next(value);\n }\n },\n 0,\n true\n );\n });\n\n // During finalization, if we see this iterator has a `return` method,\n // then we know it is a Generator, and not just an Iterator. So we call\n // the `return()` function. This will ensure that any `finally { }` blocks\n // inside of the generator we can hit will be hit properly.\n return () => isFunction(iterator?.return) && iterator.return();\n });\n}\n", "import { SchedulerLike } from '../types';\nimport { Observable } from '../Observable';\nimport { executeSchedule } from '../util/executeSchedule';\n\nexport function scheduleAsyncIterable<T>(input: AsyncIterable<T>, scheduler: SchedulerLike) {\n if (!input) {\n throw new Error('Iterable cannot be null');\n }\n return new Observable<T>((subscriber) => {\n executeSchedule(subscriber, scheduler, () => {\n const iterator = input[Symbol.asyncIterator]();\n executeSchedule(\n subscriber,\n scheduler,\n () => {\n iterator.next().then((result) => {\n if (result.done) {\n // This will remove the subscriptions from\n // the parent subscription.\n subscriber.complete();\n } else {\n subscriber.next(result.value);\n }\n });\n },\n 0,\n true\n );\n });\n });\n}\n", "import { SchedulerLike, ReadableStreamLike } from '../types';\nimport { Observable } from '../Observable';\nimport { scheduleAsyncIterable } from './scheduleAsyncIterable';\nimport { readableStreamLikeToAsyncGenerator } from '../util/isReadableStreamLike';\n\nexport function scheduleReadableStreamLike<T>(input: ReadableStreamLike<T>, scheduler: SchedulerLike): Observable<T> {\n return scheduleAsyncIterable(readableStreamLikeToAsyncGenerator(input), scheduler);\n}\n", "import { scheduleObservable } from './scheduleObservable';\nimport { schedulePromise } from './schedulePromise';\nimport { scheduleArray } from './scheduleArray';\nimport { scheduleIterable } from './scheduleIterable';\nimport { scheduleAsyncIterable } from './scheduleAsyncIterable';\nimport { isInteropObservable } from '../util/isInteropObservable';\nimport { isPromise } from '../util/isPromise';\nimport { isArrayLike } from '../util/isArrayLike';\nimport { isIterable } from '../util/isIterable';\nimport { ObservableInput, SchedulerLike } from '../types';\nimport { Observable } from '../Observable';\nimport { isAsyncIterable } from '../util/isAsyncIterable';\nimport { createInvalidObservableTypeError } from '../util/throwUnobservableError';\nimport { isReadableStreamLike } from '../util/isReadableStreamLike';\nimport { scheduleReadableStreamLike } from './scheduleReadableStreamLike';\n\n/**\n * Converts from a common {@link ObservableInput} type to an observable where subscription and emissions\n * are scheduled on the provided scheduler.\n *\n * @see {@link from}\n * @see {@link of}\n *\n * @param input The observable, array, promise, iterable, etc you would like to schedule\n * @param scheduler The scheduler to use to schedule the subscription and emissions from\n * the returned observable.\n */\nexport function scheduled<T>(input: ObservableInput<T>, scheduler: SchedulerLike): Observable<T> {\n if (input != null) {\n if (isInteropObservable(input)) {\n return scheduleObservable(input, scheduler);\n }\n if (isArrayLike(input)) {\n return scheduleArray(input, scheduler);\n }\n if (isPromise(input)) {\n return schedulePromise(input, scheduler);\n }\n if (isAsyncIterable(input)) {\n return scheduleAsyncIterable(input, scheduler);\n }\n if (isIterable(input)) {\n return scheduleIterable(input, scheduler);\n }\n if (isReadableStreamLike(input)) {\n return scheduleReadableStreamLike(input, scheduler);\n }\n }\n throw createInvalidObservableTypeError(input);\n}\n", "import { Observable } from '../Observable';\nimport { ObservableInput, SchedulerLike, ObservedValueOf } from '../types';\nimport { scheduled } from '../scheduled/scheduled';\nimport { innerFrom } from './innerFrom';\n\nexport function from<O extends ObservableInput<any>>(input: O): Observable<ObservedValueOf<O>>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function from<O extends ObservableInput<any>>(input: O, scheduler: SchedulerLike | undefined): Observable<ObservedValueOf<O>>;\n\n/**\n * Creates an Observable from an Array, an array-like object, a Promise, an iterable object, or an Observable-like object.\n *\n * <span class=\"informal\">Converts almost anything to an Observable.</span>\n *\n * ![](from.png)\n *\n * `from` converts various other objects and data types into Observables. It also converts a Promise, an array-like, or an\n * <a href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#iterable\" target=\"_blank\">iterable</a>\n * object into an Observable that emits the items in that promise, array, or iterable. A String, in this context, is treated\n * as an array of characters. Observable-like objects (contains a function named with the ES2015 Symbol for Observable) can also be\n * converted through this operator.\n *\n * ## Examples\n *\n * Converts an array to an Observable\n *\n * ```ts\n * import { from } from 'rxjs';\n *\n * const array = [10, 20, 30];\n * const result = from(array);\n *\n * result.subscribe(x => console.log(x));\n *\n * // Logs:\n * // 10\n * // 20\n * // 30\n * ```\n *\n * Convert an infinite iterable (from a generator) to an Observable\n *\n * ```ts\n * import { from, take } from 'rxjs';\n *\n * function* generateDoubles(seed) {\n * let i = seed;\n * while (true) {\n * yield i;\n * i = 2 * i; // double it\n * }\n * }\n *\n * const iterator = generateDoubles(3);\n * const result = from(iterator).pipe(take(10));\n *\n * result.subscribe(x => console.log(x));\n *\n * // Logs:\n * // 3\n * // 6\n * // 12\n * // 24\n * // 48\n * // 96\n * // 192\n * // 384\n * // 768\n * // 1536\n * ```\n *\n * With `asyncScheduler`\n *\n * ```ts\n * import { from, asyncScheduler } from 'rxjs';\n *\n * console.log('start');\n *\n * const array = [10, 20, 30];\n * const result = from(array, asyncScheduler);\n *\n * result.subscribe(x => console.log(x));\n *\n * console.log('end');\n *\n * // Logs:\n * // 'start'\n * // 'end'\n * // 10\n * // 20\n * // 30\n * ```\n *\n * @see {@link fromEvent}\n * @see {@link fromEventPattern}\n *\n * @param {ObservableInput<T>} A subscription object, a Promise, an Observable-like,\n * an Array, an iterable, or an array-like object to be converted.\n * @param {SchedulerLike} An optional {@link SchedulerLike} on which to schedule the emission of values.\n * @return {Observable<T>}\n */\nexport function from<T>(input: ObservableInput<T>, scheduler?: SchedulerLike): Observable<T> {\n return scheduler ? scheduled(input, scheduler) : innerFrom(input);\n}\n", "import { SchedulerLike, ValueFromArray } from '../types';\nimport { Observable } from '../Observable';\nimport { popScheduler } from '../util/args';\nimport { from } from './from';\n\n// Devs are more likely to pass null or undefined than they are a scheduler\n// without accompanying values. To make things easier for (naughty) devs who\n// use the `strictNullChecks: false` TypeScript compiler option, these\n// overloads with explicit null and undefined values are included.\n\nexport function of(value: null): Observable<null>;\nexport function of(value: undefined): Observable<undefined>;\n\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function of(scheduler: SchedulerLike): Observable<never>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function of<A extends readonly unknown[]>(...valuesAndScheduler: [...A, SchedulerLike]): Observable<ValueFromArray<A>>;\n\nexport function of(): Observable<never>;\n/** @deprecated Do not specify explicit type parameters. Signatures with type parameters that cannot be inferred will be removed in v8. */\nexport function of<T>(): Observable<T>;\nexport function of<T>(value: T): Observable<T>;\nexport function of<A extends readonly unknown[]>(...values: A): Observable<ValueFromArray<A>>;\n\n/**\n * Converts the arguments to an observable sequence.\n *\n * <span class=\"informal\">Each argument becomes a `next` notification.</span>\n *\n * ![](of.png)\n *\n * Unlike {@link from}, it does not do any flattening and emits each argument in whole\n * as a separate `next` notification.\n *\n * ## Examples\n *\n * Emit the values `10, 20, 30`\n *\n * ```ts\n * import { of } from 'rxjs';\n *\n * of(10, 20, 30)\n * .subscribe({\n * next: value => console.log('next:', value),\n * error: err => console.log('error:', err),\n * complete: () => console.log('the end'),\n * });\n *\n * // Outputs\n * // next: 10\n * // next: 20\n * // next: 30\n * // the end\n * ```\n *\n * Emit the array `[1, 2, 3]`\n *\n * ```ts\n * import { of } from 'rxjs';\n *\n * of([1, 2, 3])\n * .subscribe({\n * next: value => console.log('next:', value),\n * error: err => console.log('error:', err),\n * complete: () => console.log('the end'),\n * });\n *\n * // Outputs\n * // next: [1, 2, 3]\n * // the end\n * ```\n *\n * @see {@link from}\n * @see {@link range}\n *\n * @param {...T} values A comma separated list of arguments you want to be emitted\n * @return {Observable} An Observable that emits the arguments\n * described above and then completes.\n */\nexport function of<T>(...args: Array<T | SchedulerLike>): Observable<T> {\n const scheduler = popScheduler(args);\n return from(args as T[], scheduler);\n}\n", "import { Observable } from '../Observable';\nimport { Subscriber } from '../Subscriber';\nimport { SchedulerLike } from '../types';\nimport { isFunction } from '../util/isFunction';\n\n/**\n * Creates an observable that will create an error instance and push it to the consumer as an error\n * immediately upon subscription.\n *\n * <span class=\"informal\">Just errors and does nothing else</span>\n *\n * ![](throw.png)\n *\n * This creation function is useful for creating an observable that will create an error and error every\n * time it is subscribed to. Generally, inside of most operators when you might want to return an errored\n * observable, this is unnecessary. In most cases, such as in the inner return of {@link concatMap},\n * {@link mergeMap}, {@link defer}, and many others, you can simply throw the error, and RxJS will pick\n * that up and notify the consumer of the error.\n *\n * ## Example\n *\n * Create a simple observable that will create a new error with a timestamp and log it\n * and the message every time you subscribe to it\n *\n * ```ts\n * import { throwError } from 'rxjs';\n *\n * let errorCount = 0;\n *\n * const errorWithTimestamp$ = throwError(() => {\n * const error: any = new Error(`This is error number ${ ++errorCount }`);\n * error.timestamp = Date.now();\n * return error;\n * });\n *\n * errorWithTimestamp$.subscribe({\n * error: err => console.log(err.timestamp, err.message)\n * });\n *\n * errorWithTimestamp$.subscribe({\n * error: err => console.log(err.timestamp, err.message)\n * });\n *\n * // Logs the timestamp and a new error message for each subscription\n * ```\n *\n * ### Unnecessary usage\n *\n * Using `throwError` inside of an operator or creation function\n * with a callback, is usually not necessary\n *\n * ```ts\n * import { of, concatMap, timer, throwError } from 'rxjs';\n *\n * const delays$ = of(1000, 2000, Infinity, 3000);\n *\n * delays$.pipe(\n * concatMap(ms => {\n * if (ms < 10000) {\n * return timer(ms);\n * } else {\n * // This is probably overkill.\n * return throwError(() => new Error(`Invalid time ${ ms }`));\n * }\n * })\n * )\n * .subscribe({\n * next: console.log,\n * error: console.error\n * });\n * ```\n *\n * You can just throw the error instead\n *\n * ```ts\n * import { of, concatMap, timer } from 'rxjs';\n *\n * const delays$ = of(1000, 2000, Infinity, 3000);\n *\n * delays$.pipe(\n * concatMap(ms => {\n * if (ms < 10000) {\n * return timer(ms);\n * } else {\n * // Cleaner and easier to read for most folks.\n * throw new Error(`Invalid time ${ ms }`);\n * }\n * })\n * )\n * .subscribe({\n * next: console.log,\n * error: console.error\n * });\n * ```\n *\n * @param errorFactory A factory function that will create the error instance that is pushed.\n */\nexport function throwError(errorFactory: () => any): Observable<never>;\n\n/**\n * Returns an observable that will error with the specified error immediately upon subscription.\n *\n * @param error The error instance to emit\n * @deprecated Support for passing an error value will be removed in v8. Instead, pass a factory function to `throwError(() => new Error('test'))`. This is\n * because it will create the error at the moment it should be created and capture a more appropriate stack trace. If\n * for some reason you need to create the error ahead of time, you can still do that: `const err = new Error('test'); throwError(() => err);`.\n */\nexport function throwError(error: any): Observable<never>;\n\n/**\n * Notifies the consumer of an error using a given scheduler by scheduling it at delay `0` upon subscription.\n *\n * @param errorOrErrorFactory An error instance or error factory\n * @param scheduler A scheduler to use to schedule the error notification\n * @deprecated The `scheduler` parameter will be removed in v8.\n * Use `throwError` in combination with {@link observeOn}: `throwError(() => new Error('test')).pipe(observeOn(scheduler));`.\n * Details: https://rxjs.dev/deprecations/scheduler-argument\n */\nexport function throwError(errorOrErrorFactory: any, scheduler: SchedulerLike): Observable<never>;\n\nexport function throwError(errorOrErrorFactory: any, scheduler?: SchedulerLike): Observable<never> {\n const errorFactory = isFunction(errorOrErrorFactory) ? errorOrErrorFactory : () => errorOrErrorFactory;\n const init = (subscriber: Subscriber<never>) => subscriber.error(errorFactory());\n return new Observable(scheduler ? (subscriber) => scheduler.schedule(init as any, 0, subscriber) : init);\n}\n", "import { createErrorClass } from './createErrorClass';\n\nexport interface EmptyError extends Error {}\n\nexport interface EmptyErrorCtor {\n /**\n * @deprecated Internal implementation detail. Do not construct error instances.\n * Cannot be tagged as internal: https://github.com/ReactiveX/rxjs/issues/6269\n */\n new (): EmptyError;\n}\n\n/**\n * An error thrown when an Observable or a sequence was queried but has no\n * elements.\n *\n * @see {@link first}\n * @see {@link last}\n * @see {@link single}\n * @see {@link firstValueFrom}\n * @see {@link lastValueFrom}\n *\n * @class EmptyError\n */\nexport const EmptyError: EmptyErrorCtor = createErrorClass((_super) => function EmptyErrorImpl(this: any) {\n _super(this);\n this.name = 'EmptyError';\n this.message = 'no elements in sequence';\n});\n", "/**\n * Checks to see if a value is not only a `Date` object,\n * but a *valid* `Date` object that can be converted to a\n * number. For example, `new Date('blah')` is indeed an\n * `instanceof Date`, however it cannot be converted to a\n * number.\n */\nexport function isValidDate(value: any): value is Date {\n return value instanceof Date && !isNaN(value as any);\n}\n", "import { OperatorFunction } from '../types';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\nexport function map<T, R>(project: (value: T, index: number) => R): OperatorFunction<T, R>;\n/** @deprecated Use a closure instead of a `thisArg`. Signatures accepting a `thisArg` will be removed in v8. */\nexport function map<T, R, A>(project: (this: A, value: T, index: number) => R, thisArg: A): OperatorFunction<T, R>;\n\n/**\n * Applies a given `project` function to each value emitted by the source\n * Observable, and emits the resulting values as an Observable.\n *\n * <span class=\"informal\">Like [Array.prototype.map()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map),\n * it passes each source value through a transformation function to get\n * corresponding output values.</span>\n *\n * ![](map.png)\n *\n * Similar to the well known `Array.prototype.map` function, this operator\n * applies a projection to each value and emits that projection in the output\n * Observable.\n *\n * ## Example\n *\n * Map every click to the `clientX` position of that click\n *\n * ```ts\n * import { fromEvent, map } from 'rxjs';\n *\n * const clicks = fromEvent<PointerEvent>(document, 'click');\n * const positions = clicks.pipe(map(ev => ev.clientX));\n *\n * positions.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link mapTo}\n * @see {@link pluck}\n *\n * @param {function(value: T, index: number): R} project The function to apply\n * to each `value` emitted by the source Observable. The `index` parameter is\n * the number `i` for the i-th emission that has happened since the\n * subscription, starting from the number `0`.\n * @param {any} [thisArg] An optional argument to define what `this` is in the\n * `project` function.\n * @return A function that returns an Observable that emits the values from the\n * source Observable transformed by the given `project` function.\n */\nexport function map<T, R>(project: (value: T, index: number) => R, thisArg?: any): OperatorFunction<T, R> {\n return operate((source, subscriber) => {\n // The index of the value from the source. Used with projection.\n let index = 0;\n // Subscribe to the source, all errors and completions are sent along\n // to the consumer.\n source.subscribe(\n createOperatorSubscriber(subscriber, (value: T) => {\n // Call the projection function with the appropriate this context,\n // and send the resulting value to the consumer.\n subscriber.next(project.call(thisArg, value, index++));\n })\n );\n });\n}\n", "import { OperatorFunction } from \"../types\";\nimport { map } from \"../operators/map\";\n\nconst { isArray } = Array;\n\nfunction callOrApply<T, R>(fn: ((...values: T[]) => R), args: T|T[]): R {\n return isArray(args) ? fn(...args) : fn(args);\n}\n\n/**\n * Used in several -- mostly deprecated -- situations where we need to \n * apply a list of arguments or a single argument to a result selector.\n */\nexport function mapOneOrManyArgs<T, R>(fn: ((...values: T[]) => R)): OperatorFunction<T|T[], R> {\n return map(args => callOrApply(fn, args))\n}", "const { isArray } = Array;\nconst { getPrototypeOf, prototype: objectProto, keys: getKeys } = Object;\n\n/**\n * Used in functions where either a list of arguments, a single array of arguments, or a\n * dictionary of arguments can be returned. Returns an object with an `args` property with\n * the arguments in an array, if it is a dictionary, it will also return the `keys` in another\n * property.\n */\nexport function argsArgArrayOrObject<T, O extends Record<string, T>>(args: T[] | [O] | [T[]]): { args: T[]; keys: string[] | null } {\n if (args.length === 1) {\n const first = args[0];\n if (isArray(first)) {\n return { args: first, keys: null };\n }\n if (isPOJO(first)) {\n const keys = getKeys(first);\n return {\n args: keys.map((key) => first[key]),\n keys,\n };\n }\n }\n\n return { args: args as T[], keys: null };\n}\n\nfunction isPOJO(obj: any): obj is object {\n return obj && typeof obj === 'object' && getPrototypeOf(obj) === objectProto;\n}\n", "export function createObject(keys: string[], values: any[]) {\n return keys.reduce((result, key, i) => ((result[key] = values[i]), result), {} as any);\n}\n", "import { Observable } from '../Observable';\nimport { ObservableInput, SchedulerLike, ObservedValueOf, ObservableInputTuple } from '../types';\nimport { argsArgArrayOrObject } from '../util/argsArgArrayOrObject';\nimport { Subscriber } from '../Subscriber';\nimport { from } from './from';\nimport { identity } from '../util/identity';\nimport { Subscription } from '../Subscription';\nimport { mapOneOrManyArgs } from '../util/mapOneOrManyArgs';\nimport { popResultSelector, popScheduler } from '../util/args';\nimport { createObject } from '../util/createObject';\nimport { createOperatorSubscriber } from '../operators/OperatorSubscriber';\nimport { AnyCatcher } from '../AnyCatcher';\nimport { executeSchedule } from '../util/executeSchedule';\n\n// combineLatest(any)\n// We put this first because we need to catch cases where the user has supplied\n// _exactly `any`_ as the argument. Since `any` literally matches _anything_,\n// we don't want it to randomly hit one of the other type signatures below,\n// as we have no idea at build-time what type we should be returning when given an any.\n\n/**\n * You have passed `any` here, we can't figure out if it is\n * an array or an object, so you're getting `unknown`. Use better types.\n * @param arg Something typed as `any`\n */\nexport function combineLatest<T extends AnyCatcher>(arg: T): Observable<unknown>;\n\n// combineLatest([a, b, c])\nexport function combineLatest(sources: []): Observable<never>;\nexport function combineLatest<A extends readonly unknown[]>(sources: readonly [...ObservableInputTuple<A>]): Observable<A>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `combineLatestAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function combineLatest<A extends readonly unknown[], R>(\n sources: readonly [...ObservableInputTuple<A>],\n resultSelector: (...values: A) => R,\n scheduler: SchedulerLike\n): Observable<R>;\nexport function combineLatest<A extends readonly unknown[], R>(\n sources: readonly [...ObservableInputTuple<A>],\n resultSelector: (...values: A) => R\n): Observable<R>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `combineLatestAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function combineLatest<A extends readonly unknown[]>(\n sources: readonly [...ObservableInputTuple<A>],\n scheduler: SchedulerLike\n): Observable<A>;\n\n// combineLatest(a, b, c)\n/** @deprecated Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument */\nexport function combineLatest<A extends readonly unknown[]>(...sources: [...ObservableInputTuple<A>]): Observable<A>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `combineLatestAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function combineLatest<A extends readonly unknown[], R>(\n ...sourcesAndResultSelectorAndScheduler: [...ObservableInputTuple<A>, (...values: A) => R, SchedulerLike]\n): Observable<R>;\n/** @deprecated Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument */\nexport function combineLatest<A extends readonly unknown[], R>(\n ...sourcesAndResultSelector: [...ObservableInputTuple<A>, (...values: A) => R]\n): Observable<R>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `combineLatestAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function combineLatest<A extends readonly unknown[]>(\n ...sourcesAndScheduler: [...ObservableInputTuple<A>, SchedulerLike]\n): Observable<A>;\n\n// combineLatest({a, b, c})\nexport function combineLatest(sourcesObject: { [K in any]: never }): Observable<never>;\nexport function combineLatest<T extends Record<string, ObservableInput<any>>>(\n sourcesObject: T\n): Observable<{ [K in keyof T]: ObservedValueOf<T[K]> }>;\n\n/**\n * Combines multiple Observables to create an Observable whose values are\n * calculated from the latest values of each of its input Observables.\n *\n * <span class=\"informal\">Whenever any input Observable emits a value, it\n * computes a formula using the latest values from all the inputs, then emits\n * the output of that formula.</span>\n *\n * ![](combineLatest.png)\n *\n * `combineLatest` combines the values from all the Observables passed in the\n * observables array. This is done by subscribing to each Observable in order and,\n * whenever any Observable emits, collecting an array of the most recent\n * values from each Observable. So if you pass `n` Observables to this operator,\n * the returned Observable will always emit an array of `n` values, in an order\n * corresponding to the order of the passed Observables (the value from the first Observable\n * will be at index 0 of the array and so on).\n *\n * Static version of `combineLatest` accepts an array of Observables. Note that an array of\n * Observables is a good choice, if you don't know beforehand how many Observables\n * you will combine. Passing an empty array will result in an Observable that\n * completes immediately.\n *\n * To ensure the output array always has the same length, `combineLatest` will\n * actually wait for all input Observables to emit at least once,\n * before it starts emitting results. This means if some Observable emits\n * values before other Observables started emitting, all these values but the last\n * will be lost. On the other hand, if some Observable does not emit a value but\n * completes, resulting Observable will complete at the same moment without\n * emitting anything, since it will now be impossible to include a value from the\n * completed Observable in the resulting array. Also, if some input Observable does\n * not emit any value and never completes, `combineLatest` will also never emit\n * and never complete, since, again, it will wait for all streams to emit some\n * value.\n *\n * If at least one Observable was passed to `combineLatest` and all passed Observables\n * emitted something, the resulting Observable will complete when all combined\n * streams complete. So even if some Observable completes, the result of\n * `combineLatest` will still emit values when other Observables do. In case\n * of a completed Observable, its value from now on will always be the last\n * emitted value. On the other hand, if any Observable errors, `combineLatest`\n * will error immediately as well, and all other Observables will be unsubscribed.\n *\n * ## Examples\n *\n * Combine two timer Observables\n *\n * ```ts\n * import { timer, combineLatest } from 'rxjs';\n *\n * const firstTimer = timer(0, 1000); // emit 0, 1, 2... after every second, starting from now\n * const secondTimer = timer(500, 1000); // emit 0, 1, 2... after every second, starting 0,5s from now\n * const combinedTimers = combineLatest([firstTimer, secondTimer]);\n * combinedTimers.subscribe(value => console.log(value));\n * // Logs\n * // [0, 0] after 0.5s\n * // [1, 0] after 1s\n * // [1, 1] after 1.5s\n * // [2, 1] after 2s\n * ```\n *\n * Combine a dictionary of Observables\n *\n * ```ts\n * import { of, delay, startWith, combineLatest } from 'rxjs';\n *\n * const observables = {\n * a: of(1).pipe(delay(1000), startWith(0)),\n * b: of(5).pipe(delay(5000), startWith(0)),\n * c: of(10).pipe(delay(10000), startWith(0))\n * };\n * const combined = combineLatest(observables);\n * combined.subscribe(value => console.log(value));\n * // Logs\n * // { a: 0, b: 0, c: 0 } immediately\n * // { a: 1, b: 0, c: 0 } after 1s\n * // { a: 1, b: 5, c: 0 } after 5s\n * // { a: 1, b: 5, c: 10 } after 10s\n * ```\n *\n * Combine an array of Observables\n *\n * ```ts\n * import { of, delay, startWith, combineLatest } from 'rxjs';\n *\n * const observables = [1, 5, 10].map(\n * n => of(n).pipe(\n * delay(n * 1000), // emit 0 and then emit n after n seconds\n * startWith(0)\n * )\n * );\n * const combined = combineLatest(observables);\n * combined.subscribe(value => console.log(value));\n * // Logs\n * // [0, 0, 0] immediately\n * // [1, 0, 0] after 1s\n * // [1, 5, 0] after 5s\n * // [1, 5, 10] after 10s\n * ```\n *\n * Use map operator to dynamically calculate the Body-Mass Index\n *\n * ```ts\n * import { of, combineLatest, map } from 'rxjs';\n *\n * const weight = of(70, 72, 76, 79, 75);\n * const height = of(1.76, 1.77, 1.78);\n * const bmi = combineLatest([weight, height]).pipe(\n * map(([w, h]) => w / (h * h)),\n * );\n * bmi.subscribe(x => console.log('BMI is ' + x));\n *\n * // With output to console:\n * // BMI is 24.212293388429753\n * // BMI is 23.93948099205209\n * // BMI is 23.671253629592222\n * ```\n *\n * @see {@link combineLatestAll}\n * @see {@link merge}\n * @see {@link withLatestFrom}\n *\n * @param {ObservableInput} [observables] An array of input Observables to combine with each other.\n * An array of Observables must be given as the first argument.\n * @param {function} [project] An optional function to project the values from\n * the combined latest values into a new value on the output Observable.\n * @param {SchedulerLike} [scheduler=null] The {@link SchedulerLike} to use for subscribing to\n * each input Observable.\n * @return {Observable} An Observable of projected values from the most recent\n * values from each input Observable, or an array of the most recent values from\n * each input Observable.\n */\nexport function combineLatest<O extends ObservableInput<any>, R>(...args: any[]): Observable<R> | Observable<ObservedValueOf<O>[]> {\n const scheduler = popScheduler(args);\n const resultSelector = popResultSelector(args);\n\n const { args: observables, keys } = argsArgArrayOrObject(args);\n\n if (observables.length === 0) {\n // If no observables are passed, or someone has passed an empty array\n // of observables, or even an empty object POJO, we need to just\n // complete (EMPTY), but we have to honor the scheduler provided if any.\n return from([], scheduler as any);\n }\n\n const result = new Observable<ObservedValueOf<O>[]>(\n combineLatestInit(\n observables as ObservableInput<ObservedValueOf<O>>[],\n scheduler,\n keys\n ? // A handler for scrubbing the array of args into a dictionary.\n (values) => createObject(keys, values)\n : // A passthrough to just return the array\n identity\n )\n );\n\n return resultSelector ? (result.pipe(mapOneOrManyArgs(resultSelector)) as Observable<R>) : result;\n}\n\nexport function combineLatestInit(\n observables: ObservableInput<any>[],\n scheduler?: SchedulerLike,\n valueTransform: (values: any[]) => any = identity\n) {\n return (subscriber: Subscriber<any>) => {\n // The outer subscription. We're capturing this in a function\n // because we may have to schedule it.\n maybeSchedule(\n scheduler,\n () => {\n const { length } = observables;\n // A store for the values each observable has emitted so far. We match observable to value on index.\n const values = new Array(length);\n // The number of currently active subscriptions, as they complete, we decrement this number to see if\n // we are all done combining values, so we can complete the result.\n let active = length;\n // The number of inner sources that still haven't emitted the first value\n // We need to track this because all sources need to emit one value in order\n // to start emitting values.\n let remainingFirstValues = length;\n // The loop to kick off subscription. We're keying everything on index `i` to relate the observables passed\n // in to the slot in the output array or the key in the array of keys in the output dictionary.\n for (let i = 0; i < length; i++) {\n maybeSchedule(\n scheduler,\n () => {\n const source = from(observables[i], scheduler as any);\n let hasFirstValue = false;\n source.subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => {\n // When we get a value, record it in our set of values.\n values[i] = value;\n if (!hasFirstValue) {\n // If this is our first value, record that.\n hasFirstValue = true;\n remainingFirstValues--;\n }\n if (!remainingFirstValues) {\n // We're not waiting for any more\n // first values, so we can emit!\n subscriber.next(valueTransform(values.slice()));\n }\n },\n () => {\n if (!--active) {\n // We only complete the result if we have no more active\n // inner observables.\n subscriber.complete();\n }\n }\n )\n );\n },\n subscriber\n );\n }\n },\n subscriber\n );\n };\n}\n\n/**\n * A small utility to handle the couple of locations where we want to schedule if a scheduler was provided,\n * but we don't if there was no scheduler.\n */\nfunction maybeSchedule(scheduler: SchedulerLike | undefined, execute: () => void, subscription: Subscription) {\n if (scheduler) {\n executeSchedule(subscription, scheduler, execute);\n } else {\n execute();\n }\n}\n", "import { Observable } from '../Observable';\nimport { innerFrom } from '../observable/innerFrom';\nimport { Subscriber } from '../Subscriber';\nimport { ObservableInput, SchedulerLike } from '../types';\nimport { executeSchedule } from '../util/executeSchedule';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\n/**\n * A process embodying the general \"merge\" strategy. This is used in\n * `mergeMap` and `mergeScan` because the logic is otherwise nearly identical.\n * @param source The original source observable\n * @param subscriber The consumer subscriber\n * @param project The projection function to get our inner sources\n * @param concurrent The number of concurrent inner subscriptions\n * @param onBeforeNext Additional logic to apply before nexting to our consumer\n * @param expand If `true` this will perform an \"expand\" strategy, which differs only\n * in that it recurses, and the inner subscription must be schedule-able.\n * @param innerSubScheduler A scheduler to use to schedule inner subscriptions,\n * this is to support the expand strategy, mostly, and should be deprecated\n */\nexport function mergeInternals<T, R>(\n source: Observable<T>,\n subscriber: Subscriber<R>,\n project: (value: T, index: number) => ObservableInput<R>,\n concurrent: number,\n onBeforeNext?: (innerValue: R) => void,\n expand?: boolean,\n innerSubScheduler?: SchedulerLike,\n additionalFinalizer?: () => void\n) {\n // Buffered values, in the event of going over our concurrency limit\n const buffer: T[] = [];\n // The number of active inner subscriptions.\n let active = 0;\n // An index to pass to our accumulator function\n let index = 0;\n // Whether or not the outer source has completed.\n let isComplete = false;\n\n /**\n * Checks to see if we can complete our result or not.\n */\n const checkComplete = () => {\n // If the outer has completed, and nothing is left in the buffer,\n // and we don't have any active inner subscriptions, then we can\n // Emit the state and complete.\n if (isComplete && !buffer.length && !active) {\n subscriber.complete();\n }\n };\n\n // If we're under our concurrency limit, just start the inner subscription, otherwise buffer and wait.\n const outerNext = (value: T) => (active < concurrent ? doInnerSub(value) : buffer.push(value));\n\n const doInnerSub = (value: T) => {\n // If we're expanding, we need to emit the outer values and the inner values\n // as the inners will \"become outers\" in a way as they are recursively fed\n // back to the projection mechanism.\n expand && subscriber.next(value as any);\n\n // Increment the number of active subscriptions so we can track it\n // against our concurrency limit later.\n active++;\n\n // A flag used to show that the inner observable completed.\n // This is checked during finalization to see if we should\n // move to the next item in the buffer, if there is on.\n let innerComplete = false;\n\n // Start our inner subscription.\n innerFrom(project(value, index++)).subscribe(\n createOperatorSubscriber(\n subscriber,\n (innerValue) => {\n // `mergeScan` has additional handling here. For example\n // taking the inner value and updating state.\n onBeforeNext?.(innerValue);\n\n if (expand) {\n // If we're expanding, then just recurse back to our outer\n // handler. It will emit the value first thing.\n outerNext(innerValue as any);\n } else {\n // Otherwise, emit the inner value.\n subscriber.next(innerValue);\n }\n },\n () => {\n // Flag that we have completed, so we know to check the buffer\n // during finalization.\n innerComplete = true;\n },\n // Errors are passed to the destination.\n undefined,\n () => {\n // During finalization, if the inner completed (it wasn't errored or\n // cancelled), then we want to try the next item in the buffer if\n // there is one.\n if (innerComplete) {\n // We have to wrap this in a try/catch because it happens during\n // finalization, possibly asynchronously, and we want to pass\n // any errors that happen (like in a projection function) to\n // the outer Subscriber.\n try {\n // INNER SOURCE COMPLETE\n // Decrement the active count to ensure that the next time\n // we try to call `doInnerSub`, the number is accurate.\n active--;\n // If we have more values in the buffer, try to process those\n // Note that this call will increment `active` ahead of the\n // next conditional, if there were any more inner subscriptions\n // to start.\n while (buffer.length && active < concurrent) {\n const bufferedValue = buffer.shift()!;\n // Particularly for `expand`, we need to check to see if a scheduler was provided\n // for when we want to start our inner subscription. Otherwise, we just start\n // are next inner subscription.\n if (innerSubScheduler) {\n executeSchedule(subscriber, innerSubScheduler, () => doInnerSub(bufferedValue));\n } else {\n doInnerSub(bufferedValue);\n }\n }\n // Check to see if we can complete, and complete if so.\n checkComplete();\n } catch (err) {\n subscriber.error(err);\n }\n }\n }\n )\n );\n };\n\n // Subscribe to our source observable.\n source.subscribe(\n createOperatorSubscriber(subscriber, outerNext, () => {\n // Outer completed, make a note of it, and check to see if we can complete everything.\n isComplete = true;\n checkComplete();\n })\n );\n\n // Additional finalization (for when the destination is torn down).\n // Other finalization is added implicitly via subscription above.\n return () => {\n additionalFinalizer?.();\n };\n}\n", "import { ObservableInput, OperatorFunction, ObservedValueOf } from '../types';\nimport { map } from './map';\nimport { innerFrom } from '../observable/innerFrom';\nimport { operate } from '../util/lift';\nimport { mergeInternals } from './mergeInternals';\nimport { isFunction } from '../util/isFunction';\n\n/* tslint:disable:max-line-length */\nexport function mergeMap<T, O extends ObservableInput<any>>(\n project: (value: T, index: number) => O,\n concurrent?: number\n): OperatorFunction<T, ObservedValueOf<O>>;\n/** @deprecated The `resultSelector` parameter will be removed in v8. Use an inner `map` instead. Details: https://rxjs.dev/deprecations/resultSelector */\nexport function mergeMap<T, O extends ObservableInput<any>>(\n project: (value: T, index: number) => O,\n resultSelector: undefined,\n concurrent?: number\n): OperatorFunction<T, ObservedValueOf<O>>;\n/** @deprecated The `resultSelector` parameter will be removed in v8. Use an inner `map` instead. Details: https://rxjs.dev/deprecations/resultSelector */\nexport function mergeMap<T, R, O extends ObservableInput<any>>(\n project: (value: T, index: number) => O,\n resultSelector: (outerValue: T, innerValue: ObservedValueOf<O>, outerIndex: number, innerIndex: number) => R,\n concurrent?: number\n): OperatorFunction<T, R>;\n/* tslint:enable:max-line-length */\n\n/**\n * Projects each source value to an Observable which is merged in the output\n * Observable.\n *\n * <span class=\"informal\">Maps each value to an Observable, then flattens all of\n * these inner Observables using {@link mergeAll}.</span>\n *\n * ![](mergeMap.png)\n *\n * Returns an Observable that emits items based on applying a function that you\n * supply to each item emitted by the source Observable, where that function\n * returns an Observable, and then merging those resulting Observables and\n * emitting the results of this merger.\n *\n * ## Example\n *\n * Map and flatten each letter to an Observable ticking every 1 second\n *\n * ```ts\n * import { of, mergeMap, interval, map } from 'rxjs';\n *\n * const letters = of('a', 'b', 'c');\n * const result = letters.pipe(\n * mergeMap(x => interval(1000).pipe(map(i => x + i)))\n * );\n *\n * result.subscribe(x => console.log(x));\n *\n * // Results in the following:\n * // a0\n * // b0\n * // c0\n * // a1\n * // b1\n * // c1\n * // continues to list a, b, c every second with respective ascending integers\n * ```\n *\n * @see {@link concatMap}\n * @see {@link exhaustMap}\n * @see {@link merge}\n * @see {@link mergeAll}\n * @see {@link mergeMapTo}\n * @see {@link mergeScan}\n * @see {@link switchMap}\n *\n * @param {function(value: T, ?index: number): ObservableInput} project A function\n * that, when applied to an item emitted by the source Observable, returns an\n * Observable.\n * @param {number} [concurrent=Infinity] Maximum number of input\n * Observables being subscribed to concurrently.\n * @return A function that returns an Observable that emits the result of\n * applying the projection function (and the optional deprecated\n * `resultSelector`) to each item emitted by the source Observable and merging\n * the results of the Observables obtained from this transformation.\n */\nexport function mergeMap<T, R, O extends ObservableInput<any>>(\n project: (value: T, index: number) => O,\n resultSelector?: ((outerValue: T, innerValue: ObservedValueOf<O>, outerIndex: number, innerIndex: number) => R) | number,\n concurrent: number = Infinity\n): OperatorFunction<T, ObservedValueOf<O> | R> {\n if (isFunction(resultSelector)) {\n // DEPRECATED PATH\n return mergeMap((a, i) => map((b: any, ii: number) => resultSelector(a, b, i, ii))(innerFrom(project(a, i))), concurrent);\n } else if (typeof resultSelector === 'number') {\n concurrent = resultSelector;\n }\n\n return operate((source, subscriber) => mergeInternals(source, subscriber, project, concurrent));\n}\n", "import { mergeMap } from './mergeMap';\nimport { identity } from '../util/identity';\nimport { OperatorFunction, ObservableInput, ObservedValueOf } from '../types';\n\n/**\n * Converts a higher-order Observable into a first-order Observable which\n * concurrently delivers all values that are emitted on the inner Observables.\n *\n * <span class=\"informal\">Flattens an Observable-of-Observables.</span>\n *\n * ![](mergeAll.png)\n *\n * `mergeAll` subscribes to an Observable that emits Observables, also known as\n * a higher-order Observable. Each time it observes one of these emitted inner\n * Observables, it subscribes to that and delivers all the values from the\n * inner Observable on the output Observable. The output Observable only\n * completes once all inner Observables have completed. Any error delivered by\n * a inner Observable will be immediately emitted on the output Observable.\n *\n * ## Examples\n *\n * Spawn a new interval Observable for each click event, and blend their outputs as one Observable\n *\n * ```ts\n * import { fromEvent, map, interval, mergeAll } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const higherOrder = clicks.pipe(map(() => interval(1000)));\n * const firstOrder = higherOrder.pipe(mergeAll());\n *\n * firstOrder.subscribe(x => console.log(x));\n * ```\n *\n * Count from 0 to 9 every second for each click, but only allow 2 concurrent timers\n *\n * ```ts\n * import { fromEvent, map, interval, take, mergeAll } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const higherOrder = clicks.pipe(\n * map(() => interval(1000).pipe(take(10)))\n * );\n * const firstOrder = higherOrder.pipe(mergeAll(2));\n *\n * firstOrder.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link combineLatestAll}\n * @see {@link concatAll}\n * @see {@link exhaustAll}\n * @see {@link merge}\n * @see {@link mergeMap}\n * @see {@link mergeMapTo}\n * @see {@link mergeScan}\n * @see {@link switchAll}\n * @see {@link switchMap}\n * @see {@link zipAll}\n *\n * @param {number} [concurrent=Infinity] Maximum number of inner\n * Observables being subscribed to concurrently.\n * @return A function that returns an Observable that emits values coming from\n * all the inner Observables emitted by the source Observable.\n */\nexport function mergeAll<O extends ObservableInput<any>>(concurrent: number = Infinity): OperatorFunction<O, ObservedValueOf<O>> {\n return mergeMap(identity, concurrent);\n}\n", "import { mergeAll } from './mergeAll';\nimport { OperatorFunction, ObservableInput, ObservedValueOf } from '../types';\n\n/**\n * Converts a higher-order Observable into a first-order Observable by\n * concatenating the inner Observables in order.\n *\n * <span class=\"informal\">Flattens an Observable-of-Observables by putting one\n * inner Observable after the other.</span>\n *\n * ![](concatAll.svg)\n *\n * Joins every Observable emitted by the source (a higher-order Observable), in\n * a serial fashion. It subscribes to each inner Observable only after the\n * previous inner Observable has completed, and merges all of their values into\n * the returned observable.\n *\n * __Warning:__ If the source Observable emits Observables quickly and\n * endlessly, and the inner Observables it emits generally complete slower than\n * the source emits, you can run into memory issues as the incoming Observables\n * collect in an unbounded buffer.\n *\n * Note: `concatAll` is equivalent to `mergeAll` with concurrency parameter set\n * to `1`.\n *\n * ## Example\n *\n * For each click event, tick every second from 0 to 3, with no concurrency\n *\n * ```ts\n * import { fromEvent, map, interval, take, concatAll } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const higherOrder = clicks.pipe(\n * map(() => interval(1000).pipe(take(4)))\n * );\n * const firstOrder = higherOrder.pipe(concatAll());\n * firstOrder.subscribe(x => console.log(x));\n *\n * // Results in the following:\n * // (results are not concurrent)\n * // For every click on the \"document\" it will emit values 0 to 3 spaced\n * // on a 1000ms interval\n * // one click = 1000ms-> 0 -1000ms-> 1 -1000ms-> 2 -1000ms-> 3\n * ```\n *\n * @see {@link combineLatestAll}\n * @see {@link concat}\n * @see {@link concatMap}\n * @see {@link concatMapTo}\n * @see {@link exhaustAll}\n * @see {@link mergeAll}\n * @see {@link switchAll}\n * @see {@link switchMap}\n * @see {@link zipAll}\n *\n * @return A function that returns an Observable emitting values from all the\n * inner Observables concatenated.\n */\nexport function concatAll<O extends ObservableInput<any>>(): OperatorFunction<O, ObservedValueOf<O>> {\n return mergeAll(1);\n}\n", "import { Observable } from '../Observable';\nimport { ObservableInputTuple, SchedulerLike } from '../types';\nimport { concatAll } from '../operators/concatAll';\nimport { popScheduler } from '../util/args';\nimport { from } from './from';\n\nexport function concat<T extends readonly unknown[]>(...inputs: [...ObservableInputTuple<T>]): Observable<T[number]>;\nexport function concat<T extends readonly unknown[]>(\n ...inputsAndScheduler: [...ObservableInputTuple<T>, SchedulerLike]\n): Observable<T[number]>;\n\n/**\n * Creates an output Observable which sequentially emits all values from the first given\n * Observable and then moves on to the next.\n *\n * <span class=\"informal\">Concatenates multiple Observables together by\n * sequentially emitting their values, one Observable after the other.</span>\n *\n * ![](concat.png)\n *\n * `concat` joins multiple Observables together, by subscribing to them one at a time and\n * merging their results into the output Observable. You can pass either an array of\n * Observables, or put them directly as arguments. Passing an empty array will result\n * in Observable that completes immediately.\n *\n * `concat` will subscribe to first input Observable and emit all its values, without\n * changing or affecting them in any way. When that Observable completes, it will\n * subscribe to then next Observable passed and, again, emit its values. This will be\n * repeated, until the operator runs out of Observables. When last input Observable completes,\n * `concat` will complete as well. At any given moment only one Observable passed to operator\n * emits values. If you would like to emit values from passed Observables concurrently, check out\n * {@link merge} instead, especially with optional `concurrent` parameter. As a matter of fact,\n * `concat` is an equivalent of `merge` operator with `concurrent` parameter set to `1`.\n *\n * Note that if some input Observable never completes, `concat` will also never complete\n * and Observables following the one that did not complete will never be subscribed. On the other\n * hand, if some Observable simply completes immediately after it is subscribed, it will be\n * invisible for `concat`, which will just move on to the next Observable.\n *\n * If any Observable in chain errors, instead of passing control to the next Observable,\n * `concat` will error immediately as well. Observables that would be subscribed after\n * the one that emitted error, never will.\n *\n * If you pass to `concat` the same Observable many times, its stream of values\n * will be \"replayed\" on every subscription, which means you can repeat given Observable\n * as many times as you like. If passing the same Observable to `concat` 1000 times becomes tedious,\n * you can always use {@link repeat}.\n *\n * ## Examples\n *\n * Concatenate a timer counting from 0 to 3 with a synchronous sequence from 1 to 10\n *\n * ```ts\n * import { interval, take, range, concat } from 'rxjs';\n *\n * const timer = interval(1000).pipe(take(4));\n * const sequence = range(1, 10);\n * const result = concat(timer, sequence);\n * result.subscribe(x => console.log(x));\n *\n * // results in:\n * // 0 -1000ms-> 1 -1000ms-> 2 -1000ms-> 3 -immediate-> 1 ... 10\n * ```\n *\n * Concatenate 3 Observables\n *\n * ```ts\n * import { interval, take, concat } from 'rxjs';\n *\n * const timer1 = interval(1000).pipe(take(10));\n * const timer2 = interval(2000).pipe(take(6));\n * const timer3 = interval(500).pipe(take(10));\n *\n * const result = concat(timer1, timer2, timer3);\n * result.subscribe(x => console.log(x));\n *\n * // results in the following:\n * // (Prints to console sequentially)\n * // -1000ms-> 0 -1000ms-> 1 -1000ms-> ... 9\n * // -2000ms-> 0 -2000ms-> 1 -2000ms-> ... 5\n * // -500ms-> 0 -500ms-> 1 -500ms-> ... 9\n * ```\n *\n * Concatenate the same Observable to repeat it\n *\n * ```ts\n * import { interval, take, concat } from 'rxjs';\n *\n * const timer = interval(1000).pipe(take(2));\n *\n * concat(timer, timer) // concatenating the same Observable!\n * .subscribe({\n * next: value => console.log(value),\n * complete: () => console.log('...and it is done!')\n * });\n *\n * // Logs:\n * // 0 after 1s\n * // 1 after 2s\n * // 0 after 3s\n * // 1 after 4s\n * // '...and it is done!' also after 4s\n * ```\n *\n * @see {@link concatAll}\n * @see {@link concatMap}\n * @see {@link concatMapTo}\n * @see {@link startWith}\n * @see {@link endWith}\n *\n * @param args Input Observables to concatenate.\n */\nexport function concat(...args: any[]): Observable<unknown> {\n return concatAll()(from(args, popScheduler(args)));\n}\n", "import { Observable } from '../Observable';\nimport { ObservedValueOf, ObservableInput } from '../types';\nimport { innerFrom } from './innerFrom';\n\n/**\n * Creates an Observable that, on subscribe, calls an Observable factory to\n * make an Observable for each new Observer.\n *\n * <span class=\"informal\">Creates the Observable lazily, that is, only when it\n * is subscribed.\n * </span>\n *\n * ![](defer.png)\n *\n * `defer` allows you to create an Observable only when the Observer\n * subscribes. It waits until an Observer subscribes to it, calls the given\n * factory function to get an Observable -- where a factory function typically\n * generates a new Observable -- and subscribes the Observer to this Observable.\n * In case the factory function returns a falsy value, then EMPTY is used as\n * Observable instead. Last but not least, an exception during the factory\n * function call is transferred to the Observer by calling `error`.\n *\n * ## Example\n *\n * Subscribe to either an Observable of clicks or an Observable of interval, at random\n *\n * ```ts\n * import { defer, fromEvent, interval } from 'rxjs';\n *\n * const clicksOrInterval = defer(() => {\n * return Math.random() > 0.5\n * ? fromEvent(document, 'click')\n * : interval(1000);\n * });\n * clicksOrInterval.subscribe(x => console.log(x));\n *\n * // Results in the following behavior:\n * // If the result of Math.random() is greater than 0.5 it will listen\n * // for clicks anywhere on the \"document\"; when document is clicked it\n * // will log a MouseEvent object to the console. If the result is less\n * // than 0.5 it will emit ascending numbers, one every second(1000ms).\n * ```\n *\n * @see {@link Observable}\n *\n * @param {function(): ObservableInput} observableFactory The Observable\n * factory function to invoke for each Observer that subscribes to the output\n * Observable. May also return a Promise, which will be converted on the fly\n * to an Observable.\n * @return {Observable} An Observable whose Observers' subscriptions trigger\n * an invocation of the given Observable factory function.\n */\nexport function defer<R extends ObservableInput<any>>(observableFactory: () => R): Observable<ObservedValueOf<R>> {\n return new Observable<ObservedValueOf<R>>((subscriber) => {\n innerFrom(observableFactory()).subscribe(subscriber);\n });\n}\n", "import { innerFrom } from '../observable/innerFrom';\nimport { Observable } from '../Observable';\nimport { mergeMap } from '../operators/mergeMap';\nimport { isArrayLike } from '../util/isArrayLike';\nimport { isFunction } from '../util/isFunction';\nimport { mapOneOrManyArgs } from '../util/mapOneOrManyArgs';\n\n// These constants are used to create handler registry functions using array mapping below.\nconst nodeEventEmitterMethods = ['addListener', 'removeListener'] as const;\nconst eventTargetMethods = ['addEventListener', 'removeEventListener'] as const;\nconst jqueryMethods = ['on', 'off'] as const;\n\nexport interface NodeStyleEventEmitter {\n addListener(eventName: string | symbol, handler: NodeEventHandler): this;\n removeListener(eventName: string | symbol, handler: NodeEventHandler): this;\n}\n\nexport type NodeEventHandler = (...args: any[]) => void;\n\n// For APIs that implement `addListener` and `removeListener` methods that may\n// not use the same arguments or return EventEmitter values\n// such as React Native\nexport interface NodeCompatibleEventEmitter {\n addListener(eventName: string, handler: NodeEventHandler): void | {};\n removeListener(eventName: string, handler: NodeEventHandler): void | {};\n}\n\n// Use handler types like those in @types/jquery. See:\n// https://github.com/DefinitelyTyped/DefinitelyTyped/blob/847731ba1d7fa6db6b911c0e43aa0afe596e7723/types/jquery/misc.d.ts#L6395\nexport interface JQueryStyleEventEmitter<TContext, T> {\n on(eventName: string, handler: (this: TContext, t: T, ...args: any[]) => any): void;\n off(eventName: string, handler: (this: TContext, t: T, ...args: any[]) => any): void;\n}\n\nexport interface EventListenerObject<E> {\n handleEvent(evt: E): void;\n}\n\nexport interface HasEventTargetAddRemove<E> {\n addEventListener(\n type: string,\n listener: ((evt: E) => void) | EventListenerObject<E> | null,\n options?: boolean | AddEventListenerOptions\n ): void;\n removeEventListener(\n type: string,\n listener: ((evt: E) => void) | EventListenerObject<E> | null,\n options?: EventListenerOptions | boolean\n ): void;\n}\n\nexport interface EventListenerOptions {\n capture?: boolean;\n passive?: boolean;\n once?: boolean;\n}\n\nexport interface AddEventListenerOptions extends EventListenerOptions {\n once?: boolean;\n passive?: boolean;\n}\n\nexport function fromEvent<T>(target: HasEventTargetAddRemove<T> | ArrayLike<HasEventTargetAddRemove<T>>, eventName: string): Observable<T>;\nexport function fromEvent<T, R>(\n target: HasEventTargetAddRemove<T> | ArrayLike<HasEventTargetAddRemove<T>>,\n eventName: string,\n resultSelector: (event: T) => R\n): Observable<R>;\nexport function fromEvent<T>(\n target: HasEventTargetAddRemove<T> | ArrayLike<HasEventTargetAddRemove<T>>,\n eventName: string,\n options: EventListenerOptions\n): Observable<T>;\nexport function fromEvent<T, R>(\n target: HasEventTargetAddRemove<T> | ArrayLike<HasEventTargetAddRemove<T>>,\n eventName: string,\n options: EventListenerOptions,\n resultSelector: (event: T) => R\n): Observable<R>;\n\nexport function fromEvent(target: NodeStyleEventEmitter | ArrayLike<NodeStyleEventEmitter>, eventName: string): Observable<unknown>;\n/** @deprecated Do not specify explicit type parameters. Signatures with type parameters that cannot be inferred will be removed in v8. */\nexport function fromEvent<T>(target: NodeStyleEventEmitter | ArrayLike<NodeStyleEventEmitter>, eventName: string): Observable<T>;\nexport function fromEvent<R>(\n target: NodeStyleEventEmitter | ArrayLike<NodeStyleEventEmitter>,\n eventName: string,\n resultSelector: (...args: any[]) => R\n): Observable<R>;\n\nexport function fromEvent(\n target: NodeCompatibleEventEmitter | ArrayLike<NodeCompatibleEventEmitter>,\n eventName: string\n): Observable<unknown>;\n/** @deprecated Do not specify explicit type parameters. Signatures with type parameters that cannot be inferred will be removed in v8. */\nexport function fromEvent<T>(target: NodeCompatibleEventEmitter | ArrayLike<NodeCompatibleEventEmitter>, eventName: string): Observable<T>;\nexport function fromEvent<R>(\n target: NodeCompatibleEventEmitter | ArrayLike<NodeCompatibleEventEmitter>,\n eventName: string,\n resultSelector: (...args: any[]) => R\n): Observable<R>;\n\nexport function fromEvent<T>(\n target: JQueryStyleEventEmitter<any, T> | ArrayLike<JQueryStyleEventEmitter<any, T>>,\n eventName: string\n): Observable<T>;\nexport function fromEvent<T, R>(\n target: JQueryStyleEventEmitter<any, T> | ArrayLike<JQueryStyleEventEmitter<any, T>>,\n eventName: string,\n resultSelector: (value: T, ...args: any[]) => R\n): Observable<R>;\n\n/**\n * Creates an Observable that emits events of a specific type coming from the\n * given event target.\n *\n * <span class=\"informal\">Creates an Observable from DOM events, or Node.js\n * EventEmitter events or others.</span>\n *\n * ![](fromEvent.png)\n *\n * `fromEvent` accepts as a first argument event target, which is an object with methods\n * for registering event handler functions. As a second argument it takes string that indicates\n * type of event we want to listen for. `fromEvent` supports selected types of event targets,\n * which are described in detail below. If your event target does not match any of the ones listed,\n * you should use {@link fromEventPattern}, which can be used on arbitrary APIs.\n * When it comes to APIs supported by `fromEvent`, their methods for adding and removing event\n * handler functions have different names, but they all accept a string describing event type\n * and function itself, which will be called whenever said event happens.\n *\n * Every time resulting Observable is subscribed, event handler function will be registered\n * to event target on given event type. When that event fires, value\n * passed as a first argument to registered function will be emitted by output Observable.\n * When Observable is unsubscribed, function will be unregistered from event target.\n *\n * Note that if event target calls registered function with more than one argument, second\n * and following arguments will not appear in resulting stream. In order to get access to them,\n * you can pass to `fromEvent` optional project function, which will be called with all arguments\n * passed to event handler. Output Observable will then emit value returned by project function,\n * instead of the usual value.\n *\n * Remember that event targets listed below are checked via duck typing. It means that\n * no matter what kind of object you have and no matter what environment you work in,\n * you can safely use `fromEvent` on that object if it exposes described methods (provided\n * of course they behave as was described above). So for example if Node.js library exposes\n * event target which has the same method names as DOM EventTarget, `fromEvent` is still\n * a good choice.\n *\n * If the API you use is more callback then event handler oriented (subscribed\n * callback function fires only once and thus there is no need to manually\n * unregister it), you should use {@link bindCallback} or {@link bindNodeCallback}\n * instead.\n *\n * `fromEvent` supports following types of event targets:\n *\n * **DOM EventTarget**\n *\n * This is an object with `addEventListener` and `removeEventListener` methods.\n *\n * In the browser, `addEventListener` accepts - apart from event type string and event\n * handler function arguments - optional third parameter, which is either an object or boolean,\n * both used for additional configuration how and when passed function will be called. When\n * `fromEvent` is used with event target of that type, you can provide this values\n * as third parameter as well.\n *\n * **Node.js EventEmitter**\n *\n * An object with `addListener` and `removeListener` methods.\n *\n * **JQuery-style event target**\n *\n * An object with `on` and `off` methods\n *\n * **DOM NodeList**\n *\n * List of DOM Nodes, returned for example by `document.querySelectorAll` or `Node.childNodes`.\n *\n * Although this collection is not event target in itself, `fromEvent` will iterate over all Nodes\n * it contains and install event handler function in every of them. When returned Observable\n * is unsubscribed, function will be removed from all Nodes.\n *\n * **DOM HtmlCollection**\n *\n * Just as in case of NodeList it is a collection of DOM nodes. Here as well event handler function is\n * installed and removed in each of elements.\n *\n *\n * ## Examples\n *\n * Emit clicks happening on the DOM document\n *\n * ```ts\n * import { fromEvent } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * clicks.subscribe(x => console.log(x));\n *\n * // Results in:\n * // MouseEvent object logged to console every time a click\n * // occurs on the document.\n * ```\n *\n * Use `addEventListener` with capture option\n *\n * ```ts\n * import { fromEvent } from 'rxjs';\n *\n * const div = document.createElement('div');\n * div.style.cssText = 'width: 200px; height: 200px; background: #09c;';\n * document.body.appendChild(div);\n *\n * // note optional configuration parameter which will be passed to addEventListener\n * const clicksInDocument = fromEvent(document, 'click', { capture: true });\n * const clicksInDiv = fromEvent(div, 'click');\n *\n * clicksInDocument.subscribe(() => console.log('document'));\n * clicksInDiv.subscribe(() => console.log('div'));\n *\n * // By default events bubble UP in DOM tree, so normally\n * // when we would click on div in document\n * // \"div\" would be logged first and then \"document\".\n * // Since we specified optional `capture` option, document\n * // will catch event when it goes DOWN DOM tree, so console\n * // will log \"document\" and then \"div\".\n * ```\n *\n * @see {@link bindCallback}\n * @see {@link bindNodeCallback}\n * @see {@link fromEventPattern}\n *\n * @param {FromEventTarget<T>} target The DOM EventTarget, Node.js\n * EventEmitter, JQuery-like event target, NodeList or HTMLCollection to attach the event handler to.\n * @param {string} eventName The event name of interest, being emitted by the\n * `target`.\n * @param {EventListenerOptions} [options] Options to pass through to addEventListener\n * @return {Observable<T>}\n */\nexport function fromEvent<T>(\n target: any,\n eventName: string,\n options?: EventListenerOptions | ((...args: any[]) => T),\n resultSelector?: (...args: any[]) => T\n): Observable<T> {\n if (isFunction(options)) {\n resultSelector = options;\n options = undefined;\n }\n if (resultSelector) {\n return fromEvent<T>(target, eventName, options as EventListenerOptions).pipe(mapOneOrManyArgs(resultSelector));\n }\n\n // Figure out our add and remove methods. In order to do this,\n // we are going to analyze the target in a preferred order, if\n // the target matches a given signature, we take the two \"add\" and \"remove\"\n // method names and apply them to a map to create opposite versions of the\n // same function. This is because they all operate in duplicate pairs,\n // `addListener(name, handler)`, `removeListener(name, handler)`, for example.\n // The call only differs by method name, as to whether or not you're adding or removing.\n const [add, remove] =\n // If it is an EventTarget, we need to use a slightly different method than the other two patterns.\n isEventTarget(target)\n ? eventTargetMethods.map((methodName) => (handler: any) => target[methodName](eventName, handler, options as EventListenerOptions))\n : // In all other cases, the call pattern is identical with the exception of the method names.\n isNodeStyleEventEmitter(target)\n ? nodeEventEmitterMethods.map(toCommonHandlerRegistry(target, eventName))\n : isJQueryStyleEventEmitter(target)\n ? jqueryMethods.map(toCommonHandlerRegistry(target, eventName))\n : [];\n\n // If add is falsy, it's because we didn't match a pattern above.\n // Check to see if it is an ArrayLike, because if it is, we want to\n // try to apply fromEvent to all of it's items. We do this check last,\n // because there are may be some types that are both ArrayLike *and* implement\n // event registry points, and we'd rather delegate to that when possible.\n if (!add) {\n if (isArrayLike(target)) {\n return mergeMap((subTarget: any) => fromEvent(subTarget, eventName, options as EventListenerOptions))(\n innerFrom(target)\n ) as Observable<T>;\n }\n }\n\n // If add is falsy and we made it here, it's because we didn't\n // match any valid target objects above.\n if (!add) {\n throw new TypeError('Invalid event target');\n }\n\n return new Observable<T>((subscriber) => {\n // The handler we are going to register. Forwards the event object, by itself, or\n // an array of arguments to the event handler, if there is more than one argument,\n // to the consumer.\n const handler = (...args: any[]) => subscriber.next(1 < args.length ? args : args[0]);\n // Do the work of adding the handler to the target.\n add(handler);\n // When we finalize, we want to remove the handler and free up memory.\n return () => remove!(handler);\n });\n}\n\n/**\n * Used to create `add` and `remove` functions to register and unregister event handlers\n * from a target in the most common handler pattern, where there are only two arguments.\n * (e.g. `on(name, fn)`, `off(name, fn)`, `addListener(name, fn)`, or `removeListener(name, fn)`)\n * @param target The target we're calling methods on\n * @param eventName The event name for the event we're creating register or unregister functions for\n */\nfunction toCommonHandlerRegistry(target: any, eventName: string) {\n return (methodName: string) => (handler: any) => target[methodName](eventName, handler);\n}\n\n/**\n * Checks to see if the target implements the required node-style EventEmitter methods\n * for adding and removing event handlers.\n * @param target the object to check\n */\nfunction isNodeStyleEventEmitter(target: any): target is NodeStyleEventEmitter {\n return isFunction(target.addListener) && isFunction(target.removeListener);\n}\n\n/**\n * Checks to see if the target implements the required jQuery-style EventEmitter methods\n * for adding and removing event handlers.\n * @param target the object to check\n */\nfunction isJQueryStyleEventEmitter(target: any): target is JQueryStyleEventEmitter<any, any> {\n return isFunction(target.on) && isFunction(target.off);\n}\n\n/**\n * Checks to see if the target implements the required EventTarget methods\n * for adding and removing event handlers.\n * @param target the object to check\n */\nfunction isEventTarget(target: any): target is HasEventTargetAddRemove<any> {\n return isFunction(target.addEventListener) && isFunction(target.removeEventListener);\n}\n", "import { Observable } from '../Observable';\nimport { isFunction } from '../util/isFunction';\nimport { NodeEventHandler } from './fromEvent';\nimport { mapOneOrManyArgs } from '../util/mapOneOrManyArgs';\n\n/* tslint:disable:max-line-length */\nexport function fromEventPattern<T>(\n addHandler: (handler: NodeEventHandler) => any,\n removeHandler?: (handler: NodeEventHandler, signal?: any) => void\n): Observable<T>;\nexport function fromEventPattern<T>(\n addHandler: (handler: NodeEventHandler) => any,\n removeHandler?: (handler: NodeEventHandler, signal?: any) => void,\n resultSelector?: (...args: any[]) => T\n): Observable<T>;\n/* tslint:enable:max-line-length */\n\n/**\n * Creates an Observable from an arbitrary API for registering event handlers.\n *\n * <span class=\"informal\">When that method for adding event handler was something {@link fromEvent}\n * was not prepared for.</span>\n *\n * ![](fromEventPattern.png)\n *\n * `fromEventPattern` allows you to convert into an Observable any API that supports registering handler functions\n * for events. It is similar to {@link fromEvent}, but far\n * more flexible. In fact, all use cases of {@link fromEvent} could be easily handled by\n * `fromEventPattern` (although in slightly more verbose way).\n *\n * This operator accepts as a first argument an `addHandler` function, which will be injected with\n * handler parameter. That handler is actually an event handler function that you now can pass\n * to API expecting it. `addHandler` will be called whenever Observable\n * returned by the operator is subscribed, so registering handler in API will not\n * necessarily happen when `fromEventPattern` is called.\n *\n * After registration, every time an event that we listen to happens,\n * Observable returned by `fromEventPattern` will emit value that event handler\n * function was called with. Note that if event handler was called with more\n * than one argument, second and following arguments will not appear in the Observable.\n *\n * If API you are using allows to unregister event handlers as well, you can pass to `fromEventPattern`\n * another function - `removeHandler` - as a second parameter. It will be injected\n * with the same handler function as before, which now you can use to unregister\n * it from the API. `removeHandler` will be called when consumer of resulting Observable\n * unsubscribes from it.\n *\n * In some APIs unregistering is actually handled differently. Method registering an event handler\n * returns some kind of token, which is later used to identify which function should\n * be unregistered or it itself has method that unregisters event handler.\n * If that is the case with your API, make sure token returned\n * by registering method is returned by `addHandler`. Then it will be passed\n * as a second argument to `removeHandler`, where you will be able to use it.\n *\n * If you need access to all event handler parameters (not only the first one),\n * or you need to transform them in any way, you can call `fromEventPattern` with optional\n * third parameter - project function which will accept all arguments passed to\n * event handler when it is called. Whatever is returned from project function will appear on\n * resulting stream instead of usual event handlers first argument. This means\n * that default project can be thought of as function that takes its first parameter\n * and ignores the rest.\n *\n * ## Examples\n *\n * Emits clicks happening on the DOM document\n *\n * ```ts\n * import { fromEventPattern } from 'rxjs';\n *\n * function addClickHandler(handler) {\n * document.addEventListener('click', handler);\n * }\n *\n * function removeClickHandler(handler) {\n * document.removeEventListener('click', handler);\n * }\n *\n * const clicks = fromEventPattern(\n * addClickHandler,\n * removeClickHandler\n * );\n * clicks.subscribe(x => console.log(x));\n *\n * // Whenever you click anywhere in the browser, DOM MouseEvent\n * // object will be logged.\n * ```\n *\n * Use with API that returns cancellation token\n *\n * ```ts\n * import { fromEventPattern } from 'rxjs';\n *\n * const token = someAPI.registerEventHandler(function() {});\n * someAPI.unregisterEventHandler(token); // this APIs cancellation method accepts\n * // not handler itself, but special token.\n *\n * const someAPIObservable = fromEventPattern(\n * function(handler) { return someAPI.registerEventHandler(handler); }, // Note that we return the token here...\n * function(handler, token) { someAPI.unregisterEventHandler(token); } // ...to then use it here.\n * );\n * ```\n *\n * Use with project function\n *\n * ```ts\n * import { fromEventPattern } from 'rxjs';\n *\n * someAPI.registerEventHandler((eventType, eventMessage) => {\n * console.log(eventType, eventMessage); // Logs 'EVENT_TYPE' 'EVENT_MESSAGE' to console.\n * });\n *\n * const someAPIObservable = fromEventPattern(\n * handler => someAPI.registerEventHandler(handler),\n * handler => someAPI.unregisterEventHandler(handler)\n * (eventType, eventMessage) => eventType + ' --- ' + eventMessage // without that function only 'EVENT_TYPE'\n * ); // would be emitted by the Observable\n *\n * someAPIObservable.subscribe(value => console.log(value));\n *\n * // Logs:\n * // 'EVENT_TYPE --- EVENT_MESSAGE'\n * ```\n *\n * @see {@link fromEvent}\n * @see {@link bindCallback}\n * @see {@link bindNodeCallback}\n *\n * @param {function(handler: Function): any} addHandler A function that takes\n * a `handler` function as argument and attaches it somehow to the actual\n * source of events.\n * @param {function(handler: Function, token?: any): void} [removeHandler] A function that\n * takes a `handler` function as an argument and removes it from the event source. If `addHandler`\n * returns some kind of token, `removeHandler` function will have it as a second parameter.\n * @param {function(...args: any): T} [project] A function to\n * transform results. It takes the arguments from the event handler and\n * should return a single value.\n * @return {Observable<T>} Observable which, when an event happens, emits first parameter\n * passed to registered event handler. Alternatively it emits whatever project function returns\n * at that moment.\n */\nexport function fromEventPattern<T>(\n addHandler: (handler: NodeEventHandler) => any,\n removeHandler?: (handler: NodeEventHandler, signal?: any) => void,\n resultSelector?: (...args: any[]) => T\n): Observable<T | T[]> {\n if (resultSelector) {\n return fromEventPattern<T>(addHandler, removeHandler).pipe(mapOneOrManyArgs(resultSelector));\n }\n\n return new Observable<T | T[]>((subscriber) => {\n const handler = (...e: T[]) => subscriber.next(e.length === 1 ? e[0] : e);\n const retValue = addHandler(handler);\n return isFunction(removeHandler) ? () => removeHandler(handler, retValue) : undefined;\n });\n}\n", "import { Observable } from '../Observable';\nimport { SchedulerLike } from '../types';\nimport { async as asyncScheduler } from '../scheduler/async';\nimport { isScheduler } from '../util/isScheduler';\nimport { isValidDate } from '../util/isDate';\n\n/**\n * Creates an observable that will wait for a specified time period, or exact date, before\n * emitting the number 0.\n *\n * <span class=\"informal\">Used to emit a notification after a delay.</span>\n *\n * This observable is useful for creating delays in code, or racing against other values\n * for ad-hoc timeouts.\n *\n * The `delay` is specified by default in milliseconds, however providing a custom scheduler could\n * create a different behavior.\n *\n * ## Examples\n *\n * Wait 3 seconds and start another observable\n *\n * You might want to use `timer` to delay subscription to an\n * observable by a set amount of time. Here we use a timer with\n * {@link concatMapTo} or {@link concatMap} in order to wait\n * a few seconds and start a subscription to a source.\n *\n * ```ts\n * import { of, timer, concatMap } from 'rxjs';\n *\n * // This could be any observable\n * const source = of(1, 2, 3);\n *\n * timer(3000)\n * .pipe(concatMap(() => source))\n * .subscribe(console.log);\n * ```\n *\n * Take all values until the start of the next minute\n *\n * Using a `Date` as the trigger for the first emission, you can\n * do things like wait until midnight to fire an event, or in this case,\n * wait until a new minute starts (chosen so the example wouldn't take\n * too long to run) in order to stop watching a stream. Leveraging\n * {@link takeUntil}.\n *\n * ```ts\n * import { interval, takeUntil, timer } from 'rxjs';\n *\n * // Build a Date object that marks the\n * // next minute.\n * const currentDate = new Date();\n * const startOfNextMinute = new Date(\n * currentDate.getFullYear(),\n * currentDate.getMonth(),\n * currentDate.getDate(),\n * currentDate.getHours(),\n * currentDate.getMinutes() + 1\n * );\n *\n * // This could be any observable stream\n * const source = interval(1000);\n *\n * const result = source.pipe(\n * takeUntil(timer(startOfNextMinute))\n * );\n *\n * result.subscribe(console.log);\n * ```\n *\n * ### Known Limitations\n *\n * - The {@link asyncScheduler} uses `setTimeout` which has limitations for how far in the future it can be scheduled.\n *\n * - If a `scheduler` is provided that returns a timestamp other than an epoch from `now()`, and\n * a `Date` object is passed to the `dueTime` argument, the calculation for when the first emission\n * should occur will be incorrect. In this case, it would be best to do your own calculations\n * ahead of time, and pass a `number` in as the `dueTime`.\n *\n * @param due If a `number`, the amount of time in milliseconds to wait before emitting.\n * If a `Date`, the exact time at which to emit.\n * @param scheduler The scheduler to use to schedule the delay. Defaults to {@link asyncScheduler}.\n */\nexport function timer(due: number | Date, scheduler?: SchedulerLike): Observable<0>;\n\n/**\n * Creates an observable that starts an interval after a specified delay, emitting incrementing numbers -- starting at `0` --\n * on each interval after words.\n *\n * The `delay` and `intervalDuration` are specified by default in milliseconds, however providing a custom scheduler could\n * create a different behavior.\n *\n * ## Example\n *\n * ### Start an interval that starts right away\n *\n * Since {@link interval} waits for the passed delay before starting,\n * sometimes that's not ideal. You may want to start an interval immediately.\n * `timer` works well for this. Here we have both side-by-side so you can\n * see them in comparison.\n *\n * Note that this observable will never complete.\n *\n * ```ts\n * import { timer, interval } from 'rxjs';\n *\n * timer(0, 1000).subscribe(n => console.log('timer', n));\n * interval(1000).subscribe(n => console.log('interval', n));\n * ```\n *\n * ### Known Limitations\n *\n * - The {@link asyncScheduler} uses `setTimeout` which has limitations for how far in the future it can be scheduled.\n *\n * - If a `scheduler` is provided that returns a timestamp other than an epoch from `now()`, and\n * a `Date` object is passed to the `dueTime` argument, the calculation for when the first emission\n * should occur will be incorrect. In this case, it would be best to do your own calculations\n * ahead of time, and pass a `number` in as the `startDue`.\n * @param startDue If a `number`, is the time to wait before starting the interval.\n * If a `Date`, is the exact time at which to start the interval.\n * @param intervalDuration The delay between each value emitted in the interval. Passing a\n * negative number here will result in immediate completion after the first value is emitted, as though\n * no `intervalDuration` was passed at all.\n * @param scheduler The scheduler to use to schedule the delay. Defaults to {@link asyncScheduler}.\n */\nexport function timer(startDue: number | Date, intervalDuration: number, scheduler?: SchedulerLike): Observable<number>;\n\n/**\n * @deprecated The signature allowing `undefined` to be passed for `intervalDuration` will be removed in v8. Use the `timer(dueTime, scheduler?)` signature instead.\n */\nexport function timer(dueTime: number | Date, unused: undefined, scheduler?: SchedulerLike): Observable<0>;\n\nexport function timer(\n dueTime: number | Date = 0,\n intervalOrScheduler?: number | SchedulerLike,\n scheduler: SchedulerLike = asyncScheduler\n): Observable<number> {\n // Since negative intervalDuration is treated as though no\n // interval was specified at all, we start with a negative number.\n let intervalDuration = -1;\n\n if (intervalOrScheduler != null) {\n // If we have a second argument, and it's a scheduler,\n // override the scheduler we had defaulted. Otherwise,\n // it must be an interval.\n if (isScheduler(intervalOrScheduler)) {\n scheduler = intervalOrScheduler;\n } else {\n // Note that this *could* be negative, in which case\n // it's like not passing an intervalDuration at all.\n intervalDuration = intervalOrScheduler;\n }\n }\n\n return new Observable((subscriber) => {\n // If a valid date is passed, calculate how long to wait before\n // executing the first value... otherwise, if it's a number just schedule\n // that many milliseconds (or scheduler-specified unit size) in the future.\n let due = isValidDate(dueTime) ? +dueTime - scheduler!.now() : dueTime;\n\n if (due < 0) {\n // Ensure we don't schedule in the future.\n due = 0;\n }\n\n // The incrementing value we emit.\n let n = 0;\n\n // Start the timer.\n return scheduler.schedule(function () {\n if (!subscriber.closed) {\n // Emit the next value and increment.\n subscriber.next(n++);\n\n if (0 <= intervalDuration) {\n // If we have a interval after the initial timer,\n // reschedule with the period.\n this.schedule(undefined, intervalDuration);\n } else {\n // We didn't have an interval. So just complete.\n subscriber.complete();\n }\n }\n }, due);\n });\n}\n", "import { Observable } from '../Observable';\nimport { ObservableInput, ObservableInputTuple, SchedulerLike } from '../types';\nimport { mergeAll } from '../operators/mergeAll';\nimport { innerFrom } from './innerFrom';\nimport { EMPTY } from './empty';\nimport { popNumber, popScheduler } from '../util/args';\nimport { from } from './from';\n\nexport function merge<A extends readonly unknown[]>(...sources: [...ObservableInputTuple<A>]): Observable<A[number]>;\nexport function merge<A extends readonly unknown[]>(...sourcesAndConcurrency: [...ObservableInputTuple<A>, number?]): Observable<A[number]>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `mergeAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function merge<A extends readonly unknown[]>(\n ...sourcesAndScheduler: [...ObservableInputTuple<A>, SchedulerLike?]\n): Observable<A[number]>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `mergeAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function merge<A extends readonly unknown[]>(\n ...sourcesAndConcurrencyAndScheduler: [...ObservableInputTuple<A>, number?, SchedulerLike?]\n): Observable<A[number]>;\n\n/**\n * Creates an output Observable which concurrently emits all values from every\n * given input Observable.\n *\n * <span class=\"informal\">Flattens multiple Observables together by blending\n * their values into one Observable.</span>\n *\n * ![](merge.png)\n *\n * `merge` subscribes to each given input Observable (as arguments), and simply\n * forwards (without doing any transformation) all the values from all the input\n * Observables to the output Observable. The output Observable only completes\n * once all input Observables have completed. Any error delivered by an input\n * Observable will be immediately emitted on the output Observable.\n *\n * ## Examples\n *\n * Merge together two Observables: 1s interval and clicks\n *\n * ```ts\n * import { merge, fromEvent, interval } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const timer = interval(1000);\n * const clicksOrTimer = merge(clicks, timer);\n * clicksOrTimer.subscribe(x => console.log(x));\n *\n * // Results in the following:\n * // timer will emit ascending values, one every second(1000ms) to console\n * // clicks logs MouseEvents to console every time the \"document\" is clicked\n * // Since the two streams are merged you see these happening\n * // as they occur.\n * ```\n *\n * Merge together 3 Observables, but run only 2 concurrently\n *\n * ```ts\n * import { interval, take, merge } from 'rxjs';\n *\n * const timer1 = interval(1000).pipe(take(10));\n * const timer2 = interval(2000).pipe(take(6));\n * const timer3 = interval(500).pipe(take(10));\n *\n * const concurrent = 2; // the argument\n * const merged = merge(timer1, timer2, timer3, concurrent);\n * merged.subscribe(x => console.log(x));\n *\n * // Results in the following:\n * // - First timer1 and timer2 will run concurrently\n * // - timer1 will emit a value every 1000ms for 10 iterations\n * // - timer2 will emit a value every 2000ms for 6 iterations\n * // - after timer1 hits its max iteration, timer2 will\n * // continue, and timer3 will start to run concurrently with timer2\n * // - when timer2 hits its max iteration it terminates, and\n * // timer3 will continue to emit a value every 500ms until it is complete\n * ```\n *\n * @see {@link mergeAll}\n * @see {@link mergeMap}\n * @see {@link mergeMapTo}\n * @see {@link mergeScan}\n *\n * @param {...ObservableInput} observables Input Observables to merge together.\n * @param {number} [concurrent=Infinity] Maximum number of input\n * Observables being subscribed to concurrently.\n * @param {SchedulerLike} [scheduler=null] The {@link SchedulerLike} to use for managing\n * concurrency of input Observables.\n * @return {Observable} an Observable that emits items that are the result of\n * every input Observable.\n */\nexport function merge(...args: (ObservableInput<unknown> | number | SchedulerLike)[]): Observable<unknown> {\n const scheduler = popScheduler(args);\n const concurrent = popNumber(args, Infinity);\n const sources = args as ObservableInput<unknown>[];\n return !sources.length\n ? // No source provided\n EMPTY\n : sources.length === 1\n ? // One source? Just return it.\n innerFrom(sources[0])\n : // Merge all sources\n mergeAll(concurrent)(from(sources, scheduler));\n}\n", "import { Observable } from '../Observable';\nimport { noop } from '../util/noop';\n\n/**\n * An Observable that emits no items to the Observer and never completes.\n *\n * ![](never.png)\n *\n * A simple Observable that emits neither values nor errors nor the completion\n * notification. It can be used for testing purposes or for composing with other\n * Observables. Please note that by never emitting a complete notification, this\n * Observable keeps the subscription from being disposed automatically.\n * Subscriptions need to be manually disposed.\n *\n * ## Example\n *\n * Emit the number 7, then never emit anything else (not even complete)\n *\n * ```ts\n * import { NEVER, startWith } from 'rxjs';\n *\n * const info = () => console.log('Will not be called');\n *\n * const result = NEVER.pipe(startWith(7));\n * result.subscribe({\n * next: x => console.log(x),\n * error: info,\n * complete: info\n * });\n * ```\n *\n * @see {@link Observable}\n * @see {@link EMPTY}\n * @see {@link of}\n * @see {@link throwError}\n */\nexport const NEVER = new Observable<never>(noop);\n\n/**\n * @deprecated Replaced with the {@link NEVER} constant. Will be removed in v8.\n */\nexport function never() {\n return NEVER;\n}\n", "const { isArray } = Array;\n\n/**\n * Used in operators and functions that accept either a list of arguments, or an array of arguments\n * as a single argument.\n */\nexport function argsOrArgArray<T>(args: (T | T[])[]): T[] {\n return args.length === 1 && isArray(args[0]) ? args[0] : (args as T[]);\n}\n", "import { OperatorFunction, MonoTypeOperatorFunction, TruthyTypesOf } from '../types';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\n/** @deprecated Use a closure instead of a `thisArg`. Signatures accepting a `thisArg` will be removed in v8. */\nexport function filter<T, S extends T, A>(predicate: (this: A, value: T, index: number) => value is S, thisArg: A): OperatorFunction<T, S>;\nexport function filter<T, S extends T>(predicate: (value: T, index: number) => value is S): OperatorFunction<T, S>;\nexport function filter<T>(predicate: BooleanConstructor): OperatorFunction<T, TruthyTypesOf<T>>;\n/** @deprecated Use a closure instead of a `thisArg`. Signatures accepting a `thisArg` will be removed in v8. */\nexport function filter<T, A>(predicate: (this: A, value: T, index: number) => boolean, thisArg: A): MonoTypeOperatorFunction<T>;\nexport function filter<T>(predicate: (value: T, index: number) => boolean): MonoTypeOperatorFunction<T>;\n\n/**\n * Filter items emitted by the source Observable by only emitting those that\n * satisfy a specified predicate.\n *\n * <span class=\"informal\">Like\n * [Array.prototype.filter()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/filter),\n * it only emits a value from the source if it passes a criterion function.</span>\n *\n * ![](filter.png)\n *\n * Similar to the well-known `Array.prototype.filter` method, this operator\n * takes values from the source Observable, passes them through a `predicate`\n * function and only emits those values that yielded `true`.\n *\n * ## Example\n *\n * Emit only click events whose target was a DIV element\n *\n * ```ts\n * import { fromEvent, filter } from 'rxjs';\n *\n * const div = document.createElement('div');\n * div.style.cssText = 'width: 200px; height: 200px; background: #09c;';\n * document.body.appendChild(div);\n *\n * const clicks = fromEvent(document, 'click');\n * const clicksOnDivs = clicks.pipe(filter(ev => (<HTMLElement>ev.target).tagName === 'DIV'));\n * clicksOnDivs.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link distinct}\n * @see {@link distinctUntilChanged}\n * @see {@link distinctUntilKeyChanged}\n * @see {@link ignoreElements}\n * @see {@link partition}\n * @see {@link skip}\n *\n * @param predicate A function that\n * evaluates each value emitted by the source Observable. If it returns `true`,\n * the value is emitted, if `false` the value is not passed to the output\n * Observable. The `index` parameter is the number `i` for the i-th source\n * emission that has happened since the subscription, starting from the number\n * `0`.\n * @param thisArg An optional argument to determine the value of `this`\n * in the `predicate` function.\n * @return A function that returns an Observable that emits items from the\n * source Observable that satisfy the specified `predicate`.\n */\nexport function filter<T>(predicate: (value: T, index: number) => boolean, thisArg?: any): MonoTypeOperatorFunction<T> {\n return operate((source, subscriber) => {\n // An index passed to our predicate function on each call.\n let index = 0;\n\n // Subscribe to the source, all errors and completions are\n // forwarded to the consumer.\n source.subscribe(\n // Call the predicate with the appropriate `this` context,\n // if the predicate returns `true`, then send the value\n // to the consumer.\n createOperatorSubscriber(subscriber, (value) => predicate.call(thisArg, value, index++) && subscriber.next(value))\n );\n });\n}\n", "import { Observable } from '../Observable';\nimport { ObservableInputTuple } from '../types';\nimport { innerFrom } from './innerFrom';\nimport { argsOrArgArray } from '../util/argsOrArgArray';\nimport { EMPTY } from './empty';\nimport { createOperatorSubscriber } from '../operators/OperatorSubscriber';\nimport { popResultSelector } from '../util/args';\n\nexport function zip<A extends readonly unknown[]>(sources: [...ObservableInputTuple<A>]): Observable<A>;\nexport function zip<A extends readonly unknown[], R>(\n sources: [...ObservableInputTuple<A>],\n resultSelector: (...values: A) => R\n): Observable<R>;\nexport function zip<A extends readonly unknown[]>(...sources: [...ObservableInputTuple<A>]): Observable<A>;\nexport function zip<A extends readonly unknown[], R>(\n ...sourcesAndResultSelector: [...ObservableInputTuple<A>, (...values: A) => R]\n): Observable<R>;\n\n/**\n * Combines multiple Observables to create an Observable whose values are calculated from the values, in order, of each\n * of its input Observables.\n *\n * If the last parameter is a function, this function is used to compute the created value from the input values.\n * Otherwise, an array of the input values is returned.\n *\n * ## Example\n *\n * Combine age and name from different sources\n *\n * ```ts\n * import { of, zip, map } from 'rxjs';\n *\n * const age$ = of(27, 25, 29);\n * const name$ = of('Foo', 'Bar', 'Beer');\n * const isDev$ = of(true, true, false);\n *\n * zip(age$, name$, isDev$).pipe(\n * map(([age, name, isDev]) => ({ age, name, isDev }))\n * )\n * .subscribe(x => console.log(x));\n *\n * // Outputs\n * // { age: 27, name: 'Foo', isDev: true }\n * // { age: 25, name: 'Bar', isDev: true }\n * // { age: 29, name: 'Beer', isDev: false }\n * ```\n *\n * @param sources\n * @return {Observable<R>}\n */\nexport function zip(...args: unknown[]): Observable<unknown> {\n const resultSelector = popResultSelector(args);\n\n const sources = argsOrArgArray(args) as Observable<unknown>[];\n\n return sources.length\n ? new Observable<unknown[]>((subscriber) => {\n // A collection of buffers of values from each source.\n // Keyed by the same index with which the sources were passed in.\n let buffers: unknown[][] = sources.map(() => []);\n\n // An array of flags of whether or not the sources have completed.\n // This is used to check to see if we should complete the result.\n // Keyed by the same index with which the sources were passed in.\n let completed = sources.map(() => false);\n\n // When everything is done, release the arrays above.\n subscriber.add(() => {\n buffers = completed = null!;\n });\n\n // Loop over our sources and subscribe to each one. The index `i` is\n // especially important here, because we use it in closures below to\n // access the related buffers and completion properties\n for (let sourceIndex = 0; !subscriber.closed && sourceIndex < sources.length; sourceIndex++) {\n innerFrom(sources[sourceIndex]).subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => {\n buffers[sourceIndex].push(value);\n // if every buffer has at least one value in it, then we\n // can shift out the oldest value from each buffer and emit\n // them as an array.\n if (buffers.every((buffer) => buffer.length)) {\n const result: any = buffers.map((buffer) => buffer.shift()!);\n // Emit the array. If theres' a result selector, use that.\n subscriber.next(resultSelector ? resultSelector(...result) : result);\n // If any one of the sources is both complete and has an empty buffer\n // then we complete the result. This is because we cannot possibly have\n // any more values to zip together.\n if (buffers.some((buffer, i) => !buffer.length && completed[i])) {\n subscriber.complete();\n }\n }\n },\n () => {\n // This source completed. Mark it as complete so we can check it later\n // if we have to.\n completed[sourceIndex] = true;\n // But, if this complete source has nothing in its buffer, then we\n // can complete the result, because we can't possibly have any more\n // values from this to zip together with the other values.\n !buffers[sourceIndex].length && subscriber.complete();\n }\n )\n );\n }\n\n // When everything is done, release the arrays above.\n return () => {\n buffers = completed = null!;\n };\n })\n : EMPTY;\n}\n", "import { Subscriber } from '../Subscriber';\nimport { MonoTypeOperatorFunction, ObservableInput } from '../types';\n\nimport { operate } from '../util/lift';\nimport { innerFrom } from '../observable/innerFrom';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\n/**\n * Ignores source values for a duration determined by another Observable, then\n * emits the most recent value from the source Observable, then repeats this\n * process.\n *\n * <span class=\"informal\">It's like {@link auditTime}, but the silencing\n * duration is determined by a second Observable.</span>\n *\n * ![](audit.svg)\n *\n * `audit` is similar to `throttle`, but emits the last value from the silenced\n * time window, instead of the first value. `audit` emits the most recent value\n * from the source Observable on the output Observable as soon as its internal\n * timer becomes disabled, and ignores source values while the timer is enabled.\n * Initially, the timer is disabled. As soon as the first source value arrives,\n * the timer is enabled by calling the `durationSelector` function with the\n * source value, which returns the \"duration\" Observable. When the duration\n * Observable emits a value, the timer is disabled, then the most\n * recent source value is emitted on the output Observable, and this process\n * repeats for the next source value.\n *\n * ## Example\n *\n * Emit clicks at a rate of at most one click per second\n *\n * ```ts\n * import { fromEvent, audit, interval } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(audit(ev => interval(1000)));\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link auditTime}\n * @see {@link debounce}\n * @see {@link delayWhen}\n * @see {@link sample}\n * @see {@link throttle}\n *\n * @param durationSelector A function\n * that receives a value from the source Observable, for computing the silencing\n * duration, returned as an Observable or a Promise.\n * @return A function that returns an Observable that performs rate-limiting of\n * emissions from the source Observable.\n */\nexport function audit<T>(durationSelector: (value: T) => ObservableInput<any>): MonoTypeOperatorFunction<T> {\n return operate((source, subscriber) => {\n let hasValue = false;\n let lastValue: T | null = null;\n let durationSubscriber: Subscriber<any> | null = null;\n let isComplete = false;\n\n const endDuration = () => {\n durationSubscriber?.unsubscribe();\n durationSubscriber = null;\n if (hasValue) {\n hasValue = false;\n const value = lastValue!;\n lastValue = null;\n subscriber.next(value);\n }\n isComplete && subscriber.complete();\n };\n\n const cleanupDuration = () => {\n durationSubscriber = null;\n isComplete && subscriber.complete();\n };\n\n source.subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => {\n hasValue = true;\n lastValue = value;\n if (!durationSubscriber) {\n innerFrom(durationSelector(value)).subscribe(\n (durationSubscriber = createOperatorSubscriber(subscriber, endDuration, cleanupDuration))\n );\n }\n },\n () => {\n isComplete = true;\n (!hasValue || !durationSubscriber || durationSubscriber.closed) && subscriber.complete();\n }\n )\n );\n });\n}\n", "import { asyncScheduler } from '../scheduler/async';\nimport { audit } from './audit';\nimport { timer } from '../observable/timer';\nimport { MonoTypeOperatorFunction, SchedulerLike } from '../types';\n\n/**\n * Ignores source values for `duration` milliseconds, then emits the most recent\n * value from the source Observable, then repeats this process.\n *\n * <span class=\"informal\">When it sees a source value, it ignores that plus\n * the next ones for `duration` milliseconds, and then it emits the most recent\n * value from the source.</span>\n *\n * ![](auditTime.png)\n *\n * `auditTime` is similar to `throttleTime`, but emits the last value from the\n * silenced time window, instead of the first value. `auditTime` emits the most\n * recent value from the source Observable on the output Observable as soon as\n * its internal timer becomes disabled, and ignores source values while the\n * timer is enabled. Initially, the timer is disabled. As soon as the first\n * source value arrives, the timer is enabled. After `duration` milliseconds (or\n * the time unit determined internally by the optional `scheduler`) has passed,\n * the timer is disabled, then the most recent source value is emitted on the\n * output Observable, and this process repeats for the next source value.\n * Optionally takes a {@link SchedulerLike} for managing timers.\n *\n * ## Example\n *\n * Emit clicks at a rate of at most one click per second\n *\n * ```ts\n * import { fromEvent, auditTime } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(auditTime(1000));\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link audit}\n * @see {@link debounceTime}\n * @see {@link delay}\n * @see {@link sampleTime}\n * @see {@link throttleTime}\n *\n * @param {number} duration Time to wait before emitting the most recent source\n * value, measured in milliseconds or the time unit determined internally\n * by the optional `scheduler`.\n * @param {SchedulerLike} [scheduler=async] The {@link SchedulerLike} to use for\n * managing the timers that handle the rate-limiting behavior.\n * @return A function that returns an Observable that performs rate-limiting of\n * emissions from the source Observable.\n */\nexport function auditTime<T>(duration: number, scheduler: SchedulerLike = asyncScheduler): MonoTypeOperatorFunction<T> {\n return audit(() => timer(duration, scheduler));\n}\n", "import { OperatorFunction } from '../types';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\nimport { arrRemove } from '../util/arrRemove';\n\n/**\n * Buffers the source Observable values until the size hits the maximum\n * `bufferSize` given.\n *\n * <span class=\"informal\">Collects values from the past as an array, and emits\n * that array only when its size reaches `bufferSize`.</span>\n *\n * ![](bufferCount.png)\n *\n * Buffers a number of values from the source Observable by `bufferSize` then\n * emits the buffer and clears it, and starts a new buffer each\n * `startBufferEvery` values. If `startBufferEvery` is not provided or is\n * `null`, then new buffers are started immediately at the start of the source\n * and when each buffer closes and is emitted.\n *\n * ## Examples\n *\n * Emit the last two click events as an array\n *\n * ```ts\n * import { fromEvent, bufferCount } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const buffered = clicks.pipe(bufferCount(2));\n * buffered.subscribe(x => console.log(x));\n * ```\n *\n * On every click, emit the last two click events as an array\n *\n * ```ts\n * import { fromEvent, bufferCount } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const buffered = clicks.pipe(bufferCount(2, 1));\n * buffered.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link buffer}\n * @see {@link bufferTime}\n * @see {@link bufferToggle}\n * @see {@link bufferWhen}\n * @see {@link pairwise}\n * @see {@link windowCount}\n *\n * @param {number} bufferSize The maximum size of the buffer emitted.\n * @param {number} [startBufferEvery] Interval at which to start a new buffer.\n * For example if `startBufferEvery` is `2`, then a new buffer will be started\n * on every other value from the source. A new buffer is started at the\n * beginning of the source by default.\n * @return A function that returns an Observable of arrays of buffered values.\n */\nexport function bufferCount<T>(bufferSize: number, startBufferEvery: number | null = null): OperatorFunction<T, T[]> {\n // If no `startBufferEvery` value was supplied, then we're\n // opening and closing on the bufferSize itself.\n startBufferEvery = startBufferEvery ?? bufferSize;\n\n return operate((source, subscriber) => {\n let buffers: T[][] = [];\n let count = 0;\n\n source.subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => {\n let toEmit: T[][] | null = null;\n\n // Check to see if we need to start a buffer.\n // This will start one at the first value, and then\n // a new one every N after that.\n if (count++ % startBufferEvery! === 0) {\n buffers.push([]);\n }\n\n // Push our value into our active buffers.\n for (const buffer of buffers) {\n buffer.push(value);\n // Check to see if we're over the bufferSize\n // if we are, record it so we can emit it later.\n // If we emitted it now and removed it, it would\n // mutate the `buffers` array while we're looping\n // over it.\n if (bufferSize <= buffer.length) {\n toEmit = toEmit ?? [];\n toEmit.push(buffer);\n }\n }\n\n if (toEmit) {\n // We have found some buffers that are over the\n // `bufferSize`. Emit them, and remove them from our\n // buffers list.\n for (const buffer of toEmit) {\n arrRemove(buffers, buffer);\n subscriber.next(buffer);\n }\n }\n },\n () => {\n // When the source completes, emit all of our\n // active buffers.\n for (const buffer of buffers) {\n subscriber.next(buffer);\n }\n subscriber.complete();\n },\n // Pass all errors through to consumer.\n undefined,\n () => {\n // Clean up our memory when we finalize\n buffers = null!;\n }\n )\n );\n });\n}\n", "import { Observable } from '../Observable';\n\nimport { ObservableInput, OperatorFunction, ObservedValueOf } from '../types';\nimport { Subscription } from '../Subscription';\nimport { innerFrom } from '../observable/innerFrom';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\nimport { operate } from '../util/lift';\n\n/* tslint:disable:max-line-length */\nexport function catchError<T, O extends ObservableInput<any>>(\n selector: (err: any, caught: Observable<T>) => O\n): OperatorFunction<T, T | ObservedValueOf<O>>;\n/* tslint:enable:max-line-length */\n\n/**\n * Catches errors on the observable to be handled by returning a new observable or throwing an error.\n *\n * <span class=\"informal\">\n * It only listens to the error channel and ignores notifications.\n * Handles errors from the source observable, and maps them to a new observable.\n * The error may also be rethrown, or a new error can be thrown to emit an error from the result.\n * </span>\n *\n * ![](catch.png)\n *\n * This operator handles errors, but forwards along all other events to the resulting observable.\n * If the source observable terminates with an error, it will map that error to a new observable,\n * subscribe to it, and forward all of its events to the resulting observable.\n *\n * ## Examples\n *\n * Continue with a different Observable when there's an error\n *\n * ```ts\n * import { of, map, catchError } from 'rxjs';\n *\n * of(1, 2, 3, 4, 5)\n * .pipe(\n * map(n => {\n * if (n === 4) {\n * throw 'four!';\n * }\n * return n;\n * }),\n * catchError(err => of('I', 'II', 'III', 'IV', 'V'))\n * )\n * .subscribe(x => console.log(x));\n * // 1, 2, 3, I, II, III, IV, V\n * ```\n *\n * Retry the caught source Observable again in case of error, similar to `retry()` operator\n *\n * ```ts\n * import { of, map, catchError, take } from 'rxjs';\n *\n * of(1, 2, 3, 4, 5)\n * .pipe(\n * map(n => {\n * if (n === 4) {\n * throw 'four!';\n * }\n * return n;\n * }),\n * catchError((err, caught) => caught),\n * take(30)\n * )\n * .subscribe(x => console.log(x));\n * // 1, 2, 3, 1, 2, 3, ...\n * ```\n *\n * Throw a new error when the source Observable throws an error\n *\n * ```ts\n * import { of, map, catchError } from 'rxjs';\n *\n * of(1, 2, 3, 4, 5)\n * .pipe(\n * map(n => {\n * if (n === 4) {\n * throw 'four!';\n * }\n * return n;\n * }),\n * catchError(err => {\n * throw 'error in source. Details: ' + err;\n * })\n * )\n * .subscribe({\n * next: x => console.log(x),\n * error: err => console.log(err)\n * });\n * // 1, 2, 3, error in source. Details: four!\n * ```\n *\n * @see {@link onErrorResumeNext}\n * @see {@link repeat}\n * @see {@link repeatWhen}\n * @see {@link retry }\n * @see {@link retryWhen}\n *\n * @param {function} selector a function that takes as arguments `err`, which is the error, and `caught`, which\n * is the source observable, in case you'd like to \"retry\" that observable by returning it again. Whatever observable\n * is returned by the `selector` will be used to continue the observable chain.\n * @return A function that returns an Observable that originates from either\n * the source or the Observable returned by the `selector` function.\n */\nexport function catchError<T, O extends ObservableInput<any>>(\n selector: (err: any, caught: Observable<T>) => O\n): OperatorFunction<T, T | ObservedValueOf<O>> {\n return operate((source, subscriber) => {\n let innerSub: Subscription | null = null;\n let syncUnsub = false;\n let handledResult: Observable<ObservedValueOf<O>>;\n\n innerSub = source.subscribe(\n createOperatorSubscriber(subscriber, undefined, undefined, (err) => {\n handledResult = innerFrom(selector(err, catchError(selector)(source)));\n if (innerSub) {\n innerSub.unsubscribe();\n innerSub = null;\n handledResult.subscribe(subscriber);\n } else {\n // We don't have an innerSub yet, that means the error was synchronous\n // because the subscribe call hasn't returned yet.\n syncUnsub = true;\n }\n })\n );\n\n if (syncUnsub) {\n // We have a synchronous error, we need to make sure to\n // finalize right away. This ensures that callbacks in the `finalize` operator are called\n // at the right time, and that finalization occurs at the expected\n // time between the source error and the subscription to the\n // next observable.\n innerSub.unsubscribe();\n innerSub = null;\n handledResult!.subscribe(subscriber);\n }\n });\n}\n", "import { Observable } from '../Observable';\nimport { Subscriber } from '../Subscriber';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\n/**\n * A basic scan operation. This is used for `scan` and `reduce`.\n * @param accumulator The accumulator to use\n * @param seed The seed value for the state to accumulate\n * @param hasSeed Whether or not a seed was provided\n * @param emitOnNext Whether or not to emit the state on next\n * @param emitBeforeComplete Whether or not to emit the before completion\n */\n\nexport function scanInternals<V, A, S>(\n accumulator: (acc: V | A | S, value: V, index: number) => A,\n seed: S,\n hasSeed: boolean,\n emitOnNext: boolean,\n emitBeforeComplete?: undefined | true\n) {\n return (source: Observable<V>, subscriber: Subscriber<any>) => {\n // Whether or not we have state yet. This will only be\n // false before the first value arrives if we didn't get\n // a seed value.\n let hasState = hasSeed;\n // The state that we're tracking, starting with the seed,\n // if there is one, and then updated by the return value\n // from the accumulator on each emission.\n let state: any = seed;\n // An index to pass to the accumulator function.\n let index = 0;\n\n // Subscribe to our source. All errors and completions are passed through.\n source.subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => {\n // Always increment the index.\n const i = index++;\n // Set the state\n state = hasState\n ? // We already have state, so we can get the new state from the accumulator\n accumulator(state, value, i)\n : // We didn't have state yet, a seed value was not provided, so\n\n // we set the state to the first value, and mark that we have state now\n ((hasState = true), value);\n\n // Maybe send it to the consumer.\n emitOnNext && subscriber.next(state);\n },\n // If an onComplete was given, call it, otherwise\n // just pass through the complete notification to the consumer.\n emitBeforeComplete &&\n (() => {\n hasState && subscriber.next(state);\n subscriber.complete();\n })\n )\n );\n };\n}\n", "import { combineLatestInit } from '../observable/combineLatest';\nimport { ObservableInput, ObservableInputTuple, OperatorFunction } from '../types';\nimport { operate } from '../util/lift';\nimport { argsOrArgArray } from '../util/argsOrArgArray';\nimport { mapOneOrManyArgs } from '../util/mapOneOrManyArgs';\nimport { pipe } from '../util/pipe';\nimport { popResultSelector } from '../util/args';\n\n/** @deprecated Replaced with {@link combineLatestWith}. Will be removed in v8. */\nexport function combineLatest<T, A extends readonly unknown[], R>(\n sources: [...ObservableInputTuple<A>],\n project: (...values: [T, ...A]) => R\n): OperatorFunction<T, R>;\n/** @deprecated Replaced with {@link combineLatestWith}. Will be removed in v8. */\nexport function combineLatest<T, A extends readonly unknown[], R>(sources: [...ObservableInputTuple<A>]): OperatorFunction<T, [T, ...A]>;\n\n/** @deprecated Replaced with {@link combineLatestWith}. Will be removed in v8. */\nexport function combineLatest<T, A extends readonly unknown[], R>(\n ...sourcesAndProject: [...ObservableInputTuple<A>, (...values: [T, ...A]) => R]\n): OperatorFunction<T, R>;\n/** @deprecated Replaced with {@link combineLatestWith}. Will be removed in v8. */\nexport function combineLatest<T, A extends readonly unknown[], R>(...sources: [...ObservableInputTuple<A>]): OperatorFunction<T, [T, ...A]>;\n\n/**\n * @deprecated Replaced with {@link combineLatestWith}. Will be removed in v8.\n */\nexport function combineLatest<T, R>(...args: (ObservableInput<any> | ((...values: any[]) => R))[]): OperatorFunction<T, unknown> {\n const resultSelector = popResultSelector(args);\n return resultSelector\n ? pipe(combineLatest(...(args as Array<ObservableInput<any>>)), mapOneOrManyArgs(resultSelector))\n : operate((source, subscriber) => {\n combineLatestInit([source, ...argsOrArgArray(args)])(subscriber);\n });\n}\n", "import { ObservableInputTuple, OperatorFunction, Cons } from '../types';\nimport { combineLatest } from './combineLatest';\n\n/**\n * Create an observable that combines the latest values from all passed observables and the source\n * into arrays and emits them.\n *\n * Returns an observable, that when subscribed to, will subscribe to the source observable and all\n * sources provided as arguments. Once all sources emit at least one value, all of the latest values\n * will be emitted as an array. After that, every time any source emits a value, all of the latest values\n * will be emitted as an array.\n *\n * This is a useful operator for eagerly calculating values based off of changed inputs.\n *\n * ## Example\n *\n * Simple concatenation of values from two inputs\n *\n * ```ts\n * import { fromEvent, combineLatestWith, map } from 'rxjs';\n *\n * // Setup: Add two inputs to the page\n * const input1 = document.createElement('input');\n * document.body.appendChild(input1);\n * const input2 = document.createElement('input');\n * document.body.appendChild(input2);\n *\n * // Get streams of changes\n * const input1Changes$ = fromEvent(input1, 'change');\n * const input2Changes$ = fromEvent(input2, 'change');\n *\n * // Combine the changes by adding them together\n * input1Changes$.pipe(\n * combineLatestWith(input2Changes$),\n * map(([e1, e2]) => (<HTMLInputElement>e1.target).value + ' - ' + (<HTMLInputElement>e2.target).value)\n * )\n * .subscribe(x => console.log(x));\n * ```\n *\n * @param otherSources the other sources to subscribe to.\n * @return A function that returns an Observable that emits the latest\n * emissions from both source and provided Observables.\n */\nexport function combineLatestWith<T, A extends readonly unknown[]>(\n ...otherSources: [...ObservableInputTuple<A>]\n): OperatorFunction<T, Cons<T, A>> {\n return combineLatest(...otherSources);\n}\n", "import { Subscriber } from '../Subscriber';\nimport { MonoTypeOperatorFunction, ObservableInput } from '../types';\nimport { operate } from '../util/lift';\nimport { noop } from '../util/noop';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\nimport { innerFrom } from '../observable/innerFrom';\n\n/**\n * Emits a notification from the source Observable only after a particular time span\n * determined by another Observable has passed without another source emission.\n *\n * <span class=\"informal\">It's like {@link debounceTime}, but the time span of\n * emission silence is determined by a second Observable.</span>\n *\n * ![](debounce.svg)\n *\n * `debounce` delays notifications emitted by the source Observable, but drops previous\n * pending delayed emissions if a new notification arrives on the source Observable.\n * This operator keeps track of the most recent notification from the source\n * Observable, and spawns a duration Observable by calling the\n * `durationSelector` function. The notification is emitted only when the duration\n * Observable emits a next notification, and if no other notification was emitted on\n * the source Observable since the duration Observable was spawned. If a new\n * notification appears before the duration Observable emits, the previous notification will\n * not be emitted and a new duration is scheduled from `durationSelector` is scheduled.\n * If the completing event happens during the scheduled duration the last cached notification\n * is emitted before the completion event is forwarded to the output observable.\n * If the error event happens during the scheduled duration or after it only the error event is\n * forwarded to the output observable. The cache notification is not emitted in this case.\n *\n * Like {@link debounceTime}, this is a rate-limiting operator, and also a\n * delay-like operator since output emissions do not necessarily occur at the\n * same time as they did on the source Observable.\n *\n * ## Example\n *\n * Emit the most recent click after a burst of clicks\n *\n * ```ts\n * import { fromEvent, scan, debounce, interval } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(\n * scan(i => ++i, 1),\n * debounce(i => interval(200 * i))\n * );\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link audit}\n * @see {@link auditTime}\n * @see {@link debounceTime}\n * @see {@link delay}\n * @see {@link sample}\n * @see {@link sampleTime}\n * @see {@link throttle}\n * @see {@link throttleTime}\n *\n * @param durationSelector A function\n * that receives a value from the source Observable, for computing the timeout\n * duration for each source value, returned as an Observable or a Promise.\n * @return A function that returns an Observable that delays the emissions of\n * the source Observable by the specified duration Observable returned by\n * `durationSelector`, and may drop some values if they occur too frequently.\n */\nexport function debounce<T>(durationSelector: (value: T) => ObservableInput<any>): MonoTypeOperatorFunction<T> {\n return operate((source, subscriber) => {\n let hasValue = false;\n let lastValue: T | null = null;\n // The subscriber/subscription for the current debounce, if there is one.\n let durationSubscriber: Subscriber<any> | null = null;\n\n const emit = () => {\n // Unsubscribe any current debounce subscription we have,\n // we only cared about the first notification from it, and we\n // want to clean that subscription up as soon as possible.\n durationSubscriber?.unsubscribe();\n durationSubscriber = null;\n if (hasValue) {\n // We have a value! Free up memory first, then emit the value.\n hasValue = false;\n const value = lastValue!;\n lastValue = null;\n subscriber.next(value);\n }\n };\n\n source.subscribe(\n createOperatorSubscriber(\n subscriber,\n (value: T) => {\n // Cancel any pending debounce duration. We don't\n // need to null it out here yet tho, because we're just going\n // to create another one in a few lines.\n durationSubscriber?.unsubscribe();\n hasValue = true;\n lastValue = value;\n // Capture our duration subscriber, so we can unsubscribe it when we're notified\n // and we're going to emit the value.\n durationSubscriber = createOperatorSubscriber(subscriber, emit, noop);\n // Subscribe to the duration.\n innerFrom(durationSelector(value)).subscribe(durationSubscriber);\n },\n () => {\n // Source completed.\n // Emit any pending debounced values then complete\n emit();\n subscriber.complete();\n },\n // Pass all errors through to consumer\n undefined,\n () => {\n // Finalization.\n lastValue = durationSubscriber = null;\n }\n )\n );\n });\n}\n", "import { asyncScheduler } from '../scheduler/async';\nimport { Subscription } from '../Subscription';\nimport { MonoTypeOperatorFunction, SchedulerAction, SchedulerLike } from '../types';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\n/**\n * Emits a notification from the source Observable only after a particular time span\n * has passed without another source emission.\n *\n * <span class=\"informal\">It's like {@link delay}, but passes only the most\n * recent notification from each burst of emissions.</span>\n *\n * ![](debounceTime.png)\n *\n * `debounceTime` delays notifications emitted by the source Observable, but drops\n * previous pending delayed emissions if a new notification arrives on the source\n * Observable. This operator keeps track of the most recent notification from the\n * source Observable, and emits that only when `dueTime` has passed\n * without any other notification appearing on the source Observable. If a new value\n * appears before `dueTime` silence occurs, the previous notification will be dropped\n * and will not be emitted and a new `dueTime` is scheduled.\n * If the completing event happens during `dueTime` the last cached notification\n * is emitted before the completion event is forwarded to the output observable.\n * If the error event happens during `dueTime` or after it only the error event is\n * forwarded to the output observable. The cache notification is not emitted in this case.\n *\n * This is a rate-limiting operator, because it is impossible for more than one\n * notification to be emitted in any time window of duration `dueTime`, but it is also\n * a delay-like operator since output emissions do not occur at the same time as\n * they did on the source Observable. Optionally takes a {@link SchedulerLike} for\n * managing timers.\n *\n * ## Example\n *\n * Emit the most recent click after a burst of clicks\n *\n * ```ts\n * import { fromEvent, debounceTime } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(debounceTime(1000));\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link audit}\n * @see {@link auditTime}\n * @see {@link debounce}\n * @see {@link sample}\n * @see {@link sampleTime}\n * @see {@link throttle}\n * @see {@link throttleTime}\n *\n * @param {number} dueTime The timeout duration in milliseconds (or the time\n * unit determined internally by the optional `scheduler`) for the window of\n * time required to wait for emission silence before emitting the most recent\n * source value.\n * @param {SchedulerLike} [scheduler=async] The {@link SchedulerLike} to use for\n * managing the timers that handle the timeout for each value.\n * @return A function that returns an Observable that delays the emissions of\n * the source Observable by the specified `dueTime`, and may drop some values\n * if they occur too frequently.\n */\nexport function debounceTime<T>(dueTime: number, scheduler: SchedulerLike = asyncScheduler): MonoTypeOperatorFunction<T> {\n return operate((source, subscriber) => {\n let activeTask: Subscription | null = null;\n let lastValue: T | null = null;\n let lastTime: number | null = null;\n\n const emit = () => {\n if (activeTask) {\n // We have a value! Free up memory first, then emit the value.\n activeTask.unsubscribe();\n activeTask = null;\n const value = lastValue!;\n lastValue = null;\n subscriber.next(value);\n }\n };\n function emitWhenIdle(this: SchedulerAction<unknown>) {\n // This is called `dueTime` after the first value\n // but we might have received new values during this window!\n\n const targetTime = lastTime! + dueTime;\n const now = scheduler.now();\n if (now < targetTime) {\n // On that case, re-schedule to the new target\n activeTask = this.schedule(undefined, targetTime - now);\n subscriber.add(activeTask);\n return;\n }\n\n emit();\n }\n\n source.subscribe(\n createOperatorSubscriber(\n subscriber,\n (value: T) => {\n lastValue = value;\n lastTime = scheduler.now();\n\n // Only set up a task if it's not already up\n if (!activeTask) {\n activeTask = scheduler.schedule(emitWhenIdle, dueTime);\n subscriber.add(activeTask);\n }\n },\n () => {\n // Source completed.\n // Emit any pending debounced values then complete\n emit();\n subscriber.complete();\n },\n // Pass all errors through to consumer.\n undefined,\n () => {\n // Finalization.\n lastValue = activeTask = null;\n }\n )\n );\n });\n}\n", "import { OperatorFunction } from '../types';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\n/**\n * Emits a given value if the source Observable completes without emitting any\n * `next` value, otherwise mirrors the source Observable.\n *\n * <span class=\"informal\">If the source Observable turns out to be empty, then\n * this operator will emit a default value.</span>\n *\n * ![](defaultIfEmpty.png)\n *\n * `defaultIfEmpty` emits the values emitted by the source Observable or a\n * specified default value if the source Observable is empty (completes without\n * having emitted any `next` value).\n *\n * ## Example\n *\n * If no clicks happen in 5 seconds, then emit 'no clicks'\n *\n * ```ts\n * import { fromEvent, takeUntil, interval, defaultIfEmpty } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const clicksBeforeFive = clicks.pipe(takeUntil(interval(5000)));\n * const result = clicksBeforeFive.pipe(defaultIfEmpty('no clicks'));\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link empty}\n * @see {@link last}\n *\n * @param defaultValue The default value used if the source\n * Observable is empty.\n * @return A function that returns an Observable that emits either the\n * specified `defaultValue` if the source Observable emits no items, or the\n * values emitted by the source Observable.\n */\nexport function defaultIfEmpty<T, R>(defaultValue: R): OperatorFunction<T, T | R> {\n return operate((source, subscriber) => {\n let hasValue = false;\n source.subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => {\n hasValue = true;\n subscriber.next(value);\n },\n () => {\n if (!hasValue) {\n subscriber.next(defaultValue!);\n }\n subscriber.complete();\n }\n )\n );\n });\n}\n", "import { MonoTypeOperatorFunction } from '../types';\nimport { EMPTY } from '../observable/empty';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\n/**\n * Emits only the first `count` values emitted by the source Observable.\n *\n * <span class=\"informal\">Takes the first `count` values from the source, then\n * completes.</span>\n *\n * ![](take.png)\n *\n * `take` returns an Observable that emits only the first `count` values emitted\n * by the source Observable. If the source emits fewer than `count` values then\n * all of its values are emitted. After that, it completes, regardless if the\n * source completes.\n *\n * ## Example\n *\n * Take the first 5 seconds of an infinite 1-second interval Observable\n *\n * ```ts\n * import { interval, take } from 'rxjs';\n *\n * const intervalCount = interval(1000);\n * const takeFive = intervalCount.pipe(take(5));\n * takeFive.subscribe(x => console.log(x));\n *\n * // Logs:\n * // 0\n * // 1\n * // 2\n * // 3\n * // 4\n * ```\n *\n * @see {@link takeLast}\n * @see {@link takeUntil}\n * @see {@link takeWhile}\n * @see {@link skip}\n *\n * @param count The maximum number of `next` values to emit.\n * @return A function that returns an Observable that emits only the first\n * `count` values emitted by the source Observable, or all of the values from\n * the source if the source emits fewer than `count` values.\n */\nexport function take<T>(count: number): MonoTypeOperatorFunction<T> {\n return count <= 0\n ? // If we are taking no values, that's empty.\n () => EMPTY\n : operate((source, subscriber) => {\n let seen = 0;\n source.subscribe(\n createOperatorSubscriber(subscriber, (value) => {\n // Increment the number of values we have seen,\n // then check it against the allowed count to see\n // if we are still letting values through.\n if (++seen <= count) {\n subscriber.next(value);\n // If we have met or passed our allowed count,\n // we need to complete. We have to do <= here,\n // because re-entrant code will increment `seen` twice.\n if (count <= seen) {\n subscriber.complete();\n }\n }\n })\n );\n });\n}\n", "import { OperatorFunction } from '../types';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\nimport { noop } from '../util/noop';\n\n/**\n * Ignores all items emitted by the source Observable and only passes calls of `complete` or `error`.\n *\n * ![](ignoreElements.png)\n *\n * The `ignoreElements` operator suppresses all items emitted by the source Observable,\n * but allows its termination notification (either `error` or `complete`) to pass through unchanged.\n *\n * If you do not care about the items being emitted by an Observable, but you do want to be notified\n * when it completes or when it terminates with an error, you can apply the `ignoreElements` operator\n * to the Observable, which will ensure that it will never call its observers\u2019 `next` handlers.\n *\n * ## Example\n *\n * Ignore all `next` emissions from the source\n *\n * ```ts\n * import { of, ignoreElements } from 'rxjs';\n *\n * of('you', 'talking', 'to', 'me')\n * .pipe(ignoreElements())\n * .subscribe({\n * next: word => console.log(word),\n * error: err => console.log('error:', err),\n * complete: () => console.log('the end'),\n * });\n *\n * // result:\n * // 'the end'\n * ```\n *\n * @return A function that returns an empty Observable that only calls\n * `complete` or `error`, based on which one is called by the source\n * Observable.\n */\nexport function ignoreElements(): OperatorFunction<unknown, never> {\n return operate((source, subscriber) => {\n source.subscribe(createOperatorSubscriber(subscriber, noop));\n });\n}\n", "import { OperatorFunction } from '../types';\nimport { map } from './map';\n\n/** @deprecated To be removed in v9. Use {@link map} instead: `map(() => value)`. */\nexport function mapTo<R>(value: R): OperatorFunction<unknown, R>;\n/**\n * @deprecated Do not specify explicit type parameters. Signatures with type parameters\n * that cannot be inferred will be removed in v8. `mapTo` itself will be removed in v9,\n * use {@link map} instead: `map(() => value)`.\n * */\nexport function mapTo<T, R>(value: R): OperatorFunction<T, R>;\n\n/**\n * Emits the given constant value on the output Observable every time the source\n * Observable emits a value.\n *\n * <span class=\"informal\">Like {@link map}, but it maps every source value to\n * the same output value every time.</span>\n *\n * ![](mapTo.png)\n *\n * Takes a constant `value` as argument, and emits that whenever the source\n * Observable emits a value. In other words, ignores the actual source value,\n * and simply uses the emission moment to know when to emit the given `value`.\n *\n * ## Example\n *\n * Map every click to the string `'Hi'`\n *\n * ```ts\n * import { fromEvent, mapTo } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const greetings = clicks.pipe(mapTo('Hi'));\n *\n * greetings.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link map}\n *\n * @param value The value to map each source value to.\n * @return A function that returns an Observable that emits the given `value`\n * every time the source Observable emits.\n * @deprecated To be removed in v9. Use {@link map} instead: `map(() => value)`.\n */\nexport function mapTo<R>(value: R): OperatorFunction<unknown, R> {\n return map(() => value);\n}\n", "import { Observable } from '../Observable';\nimport { MonoTypeOperatorFunction, ObservableInput } from '../types';\nimport { concat } from '../observable/concat';\nimport { take } from './take';\nimport { ignoreElements } from './ignoreElements';\nimport { mapTo } from './mapTo';\nimport { mergeMap } from './mergeMap';\nimport { innerFrom } from '../observable/innerFrom';\n\n/** @deprecated The `subscriptionDelay` parameter will be removed in v8. */\nexport function delayWhen<T>(\n delayDurationSelector: (value: T, index: number) => ObservableInput<any>,\n subscriptionDelay: Observable<any>\n): MonoTypeOperatorFunction<T>;\nexport function delayWhen<T>(delayDurationSelector: (value: T, index: number) => ObservableInput<any>): MonoTypeOperatorFunction<T>;\n\n/**\n * Delays the emission of items from the source Observable by a given time span\n * determined by the emissions of another Observable.\n *\n * <span class=\"informal\">It's like {@link delay}, but the time span of the\n * delay duration is determined by a second Observable.</span>\n *\n * ![](delayWhen.png)\n *\n * `delayWhen` operator shifts each emitted value from the source Observable by\n * a time span determined by another Observable. When the source emits a value,\n * the `delayDurationSelector` function is called with the value emitted from\n * the source Observable as the first argument to the `delayDurationSelector`.\n * The `delayDurationSelector` function should return an {@link ObservableInput},\n * that is internally converted to an Observable that is called the \"duration\"\n * Observable.\n *\n * The source value is emitted on the output Observable only when the \"duration\"\n * Observable emits ({@link guide/glossary-and-semantics#next next}s) any value.\n * Upon that, the \"duration\" Observable gets unsubscribed.\n *\n * Before RxJS V7, the {@link guide/glossary-and-semantics#complete completion}\n * of the \"duration\" Observable would have been triggering the emission of the\n * source value to the output Observable, but with RxJS V7, this is not the case\n * anymore.\n *\n * Only next notifications (from the \"duration\" Observable) trigger values from\n * the source Observable to be passed to the output Observable. If the \"duration\"\n * Observable only emits the complete notification (without next), the value\n * emitted by the source Observable will never get to the output Observable - it\n * will be swallowed. If the \"duration\" Observable errors, the error will be\n * propagated to the output Observable.\n *\n * Optionally, `delayWhen` takes a second argument, `subscriptionDelay`, which\n * is an Observable. When `subscriptionDelay` emits its first value or\n * completes, the source Observable is subscribed to and starts behaving like\n * described in the previous paragraph. If `subscriptionDelay` is not provided,\n * `delayWhen` will subscribe to the source Observable as soon as the output\n * Observable is subscribed.\n *\n * ## Example\n *\n * Delay each click by a random amount of time, between 0 and 5 seconds\n *\n * ```ts\n * import { fromEvent, delayWhen, interval } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const delayedClicks = clicks.pipe(\n * delayWhen(() => interval(Math.random() * 5000))\n * );\n * delayedClicks.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link delay}\n * @see {@link throttle}\n * @see {@link throttleTime}\n * @see {@link debounce}\n * @see {@link debounceTime}\n * @see {@link sample}\n * @see {@link sampleTime}\n * @see {@link audit}\n * @see {@link auditTime}\n *\n * @param delayDurationSelector A function that returns an `ObservableInput` for\n * each `value` emitted by the source Observable, which is then used to delay the\n * emission of that `value` on the output Observable until the `ObservableInput`\n * returned from this function emits a next value. When called, beside `value`,\n * this function receives a zero-based `index` of the emission order.\n * @param subscriptionDelay An Observable that triggers the subscription to the\n * source Observable once it emits any value.\n * @return A function that returns an Observable that delays the emissions of\n * the source Observable by an amount of time specified by the Observable\n * returned by `delayDurationSelector`.\n */\nexport function delayWhen<T>(\n delayDurationSelector: (value: T, index: number) => ObservableInput<any>,\n subscriptionDelay?: Observable<any>\n): MonoTypeOperatorFunction<T> {\n if (subscriptionDelay) {\n // DEPRECATED PATH\n return (source: Observable<T>) =>\n concat(subscriptionDelay.pipe(take(1), ignoreElements()), source.pipe(delayWhen(delayDurationSelector)));\n }\n\n return mergeMap((value, index) => innerFrom(delayDurationSelector(value, index)).pipe(take(1), mapTo(value)));\n}\n", "import { asyncScheduler } from '../scheduler/async';\nimport { MonoTypeOperatorFunction, SchedulerLike } from '../types';\nimport { delayWhen } from './delayWhen';\nimport { timer } from '../observable/timer';\n\n/**\n * Delays the emission of items from the source Observable by a given timeout or\n * until a given Date.\n *\n * <span class=\"informal\">Time shifts each item by some specified amount of\n * milliseconds.</span>\n *\n * ![](delay.svg)\n *\n * If the delay argument is a Number, this operator time shifts the source\n * Observable by that amount of time expressed in milliseconds. The relative\n * time intervals between the values are preserved.\n *\n * If the delay argument is a Date, this operator time shifts the start of the\n * Observable execution until the given date occurs.\n *\n * ## Examples\n *\n * Delay each click by one second\n *\n * ```ts\n * import { fromEvent, delay } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const delayedClicks = clicks.pipe(delay(1000)); // each click emitted after 1 second\n * delayedClicks.subscribe(x => console.log(x));\n * ```\n *\n * Delay all clicks until a future date happens\n *\n * ```ts\n * import { fromEvent, delay } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const date = new Date('March 15, 2050 12:00:00'); // in the future\n * const delayedClicks = clicks.pipe(delay(date)); // click emitted only after that date\n * delayedClicks.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link delayWhen}\n * @see {@link throttle}\n * @see {@link throttleTime}\n * @see {@link debounce}\n * @see {@link debounceTime}\n * @see {@link sample}\n * @see {@link sampleTime}\n * @see {@link audit}\n * @see {@link auditTime}\n *\n * @param {number|Date} due The delay duration in milliseconds (a `number`) or\n * a `Date` until which the emission of the source items is delayed.\n * @param {SchedulerLike} [scheduler=async] The {@link SchedulerLike} to use for\n * managing the timers that handle the time-shift for each item.\n * @return A function that returns an Observable that delays the emissions of\n * the source Observable by the specified timeout or Date.\n */\nexport function delay<T>(due: number | Date, scheduler: SchedulerLike = asyncScheduler): MonoTypeOperatorFunction<T> {\n const duration = timer(due, scheduler);\n return delayWhen(() => duration);\n}\n", "import { MonoTypeOperatorFunction } from '../types';\nimport { identity } from '../util/identity';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\nexport function distinctUntilChanged<T>(comparator?: (previous: T, current: T) => boolean): MonoTypeOperatorFunction<T>;\nexport function distinctUntilChanged<T, K>(\n comparator: (previous: K, current: K) => boolean,\n keySelector: (value: T) => K\n): MonoTypeOperatorFunction<T>;\n\n/**\n * Returns a result {@link Observable} that emits all values pushed by the source observable if they\n * are distinct in comparison to the last value the result observable emitted.\n *\n * When provided without parameters or with the first parameter (`{@link distinctUntilChanged#comparator comparator}`),\n * it behaves like this:\n *\n * 1. It will always emit the first value from the source.\n * 2. For all subsequent values pushed by the source, they will be compared to the previously emitted values\n * using the provided `comparator` or an `===` equality check.\n * 3. If the value pushed by the source is determined to be unequal by this check, that value is emitted and\n * becomes the new \"previously emitted value\" internally.\n *\n * When the second parameter (`{@link distinctUntilChanged#keySelector keySelector}`) is provided, the behavior\n * changes:\n *\n * 1. It will always emit the first value from the source.\n * 2. The `keySelector` will be run against all values, including the first value.\n * 3. For all values after the first, the selected key will be compared against the key selected from\n * the previously emitted value using the `comparator`.\n * 4. If the keys are determined to be unequal by this check, the value (not the key), is emitted\n * and the selected key from that value is saved for future comparisons against other keys.\n *\n * ## Examples\n *\n * A very basic example with no `{@link distinctUntilChanged#comparator comparator}`. Note that `1` is emitted more than once,\n * because it's distinct in comparison to the _previously emitted_ value,\n * not in comparison to _all other emitted values_.\n *\n * ```ts\n * import { of, distinctUntilChanged } from 'rxjs';\n *\n * of(1, 1, 1, 2, 2, 2, 1, 1, 3, 3)\n * .pipe(distinctUntilChanged())\n * .subscribe(console.log);\n * // Logs: 1, 2, 1, 3\n * ```\n *\n * With a `{@link distinctUntilChanged#comparator comparator}`, you can do custom comparisons. Let's say\n * you only want to emit a value when all of its components have\n * changed:\n *\n * ```ts\n * import { of, distinctUntilChanged } from 'rxjs';\n *\n * const totallyDifferentBuilds$ = of(\n * { engineVersion: '1.1.0', transmissionVersion: '1.2.0' },\n * { engineVersion: '1.1.0', transmissionVersion: '1.4.0' },\n * { engineVersion: '1.3.0', transmissionVersion: '1.4.0' },\n * { engineVersion: '1.3.0', transmissionVersion: '1.5.0' },\n * { engineVersion: '2.0.0', transmissionVersion: '1.5.0' }\n * ).pipe(\n * distinctUntilChanged((prev, curr) => {\n * return (\n * prev.engineVersion === curr.engineVersion ||\n * prev.transmissionVersion === curr.transmissionVersion\n * );\n * })\n * );\n *\n * totallyDifferentBuilds$.subscribe(console.log);\n *\n * // Logs:\n * // { engineVersion: '1.1.0', transmissionVersion: '1.2.0' }\n * // { engineVersion: '1.3.0', transmissionVersion: '1.4.0' }\n * // { engineVersion: '2.0.0', transmissionVersion: '1.5.0' }\n * ```\n *\n * You can also provide a custom `{@link distinctUntilChanged#comparator comparator}` to check that emitted\n * changes are only in one direction. Let's say you only want to get\n * the next record temperature:\n *\n * ```ts\n * import { of, distinctUntilChanged } from 'rxjs';\n *\n * const temps$ = of(30, 31, 20, 34, 33, 29, 35, 20);\n *\n * const recordHighs$ = temps$.pipe(\n * distinctUntilChanged((prevHigh, temp) => {\n * // If the current temp is less than\n * // or the same as the previous record,\n * // the record hasn't changed.\n * return temp <= prevHigh;\n * })\n * );\n *\n * recordHighs$.subscribe(console.log);\n * // Logs: 30, 31, 34, 35\n * ```\n *\n * Selecting update events only when the `updatedBy` field shows\n * the account changed hands.\n *\n * ```ts\n * import { of, distinctUntilChanged } from 'rxjs';\n *\n * // A stream of updates to a given account\n * const accountUpdates$ = of(\n * { updatedBy: 'blesh', data: [] },\n * { updatedBy: 'blesh', data: [] },\n * { updatedBy: 'ncjamieson', data: [] },\n * { updatedBy: 'ncjamieson', data: [] },\n * { updatedBy: 'blesh', data: [] }\n * );\n *\n * // We only want the events where it changed hands\n * const changedHands$ = accountUpdates$.pipe(\n * distinctUntilChanged(undefined, update => update.updatedBy)\n * );\n *\n * changedHands$.subscribe(console.log);\n * // Logs:\n * // { updatedBy: 'blesh', data: Array[0] }\n * // { updatedBy: 'ncjamieson', data: Array[0] }\n * // { updatedBy: 'blesh', data: Array[0] }\n * ```\n *\n * @see {@link distinct}\n * @see {@link distinctUntilKeyChanged}\n *\n * @param comparator A function used to compare the previous and current keys for\n * equality. Defaults to a `===` check.\n * @param keySelector Used to select a key value to be passed to the `comparator`.\n *\n * @return A function that returns an Observable that emits items from the\n * source Observable with distinct values.\n */\nexport function distinctUntilChanged<T, K>(\n comparator?: (previous: K, current: K) => boolean,\n keySelector: (value: T) => K = identity as (value: T) => K\n): MonoTypeOperatorFunction<T> {\n // We've been allowing `null` do be passed as the `compare`, so we can't do\n // a default value for the parameter, because that will only work\n // for `undefined`.\n comparator = comparator ?? defaultCompare;\n\n return operate((source, subscriber) => {\n // The previous key, used to compare against keys selected\n // from new arrivals to determine \"distinctiveness\".\n let previousKey: K;\n // Whether or not this is the first value we've gotten.\n let first = true;\n\n source.subscribe(\n createOperatorSubscriber(subscriber, (value) => {\n // We always call the key selector.\n const currentKey = keySelector(value);\n\n // If it's the first value, we always emit it.\n // Otherwise, we compare this key to the previous key, and\n // if the comparer returns false, we emit.\n if (first || !comparator!(previousKey, currentKey)) {\n // Update our state *before* we emit the value\n // as emission can be the source of re-entrant code\n // in functional libraries like this. We only really\n // need to do this if it's the first value, or if the\n // key we're tracking in previous needs to change.\n first = false;\n previousKey = currentKey;\n\n // Emit the value!\n subscriber.next(value);\n }\n })\n );\n });\n}\n\nfunction defaultCompare(a: any, b: any) {\n return a === b;\n}\n", "import { distinctUntilChanged } from './distinctUntilChanged';\nimport { MonoTypeOperatorFunction } from '../types';\n\n/* tslint:disable:max-line-length */\nexport function distinctUntilKeyChanged<T>(key: keyof T): MonoTypeOperatorFunction<T>;\nexport function distinctUntilKeyChanged<T, K extends keyof T>(key: K, compare: (x: T[K], y: T[K]) => boolean): MonoTypeOperatorFunction<T>;\n/* tslint:enable:max-line-length */\n\n/**\n * Returns an Observable that emits all items emitted by the source Observable that are distinct by comparison from the previous item,\n * using a property accessed by using the key provided to check if the two items are distinct.\n *\n * If a comparator function is provided, then it will be called for each item to test for whether or not that value should be emitted.\n *\n * If a comparator function is not provided, an equality check is used by default.\n *\n * ## Examples\n *\n * An example comparing the name of persons\n *\n * ```ts\n * import { of, distinctUntilKeyChanged } from 'rxjs';\n *\n * of(\n * { age: 4, name: 'Foo' },\n * { age: 7, name: 'Bar' },\n * { age: 5, name: 'Foo' },\n * { age: 6, name: 'Foo' }\n * ).pipe(\n * distinctUntilKeyChanged('name')\n * )\n * .subscribe(x => console.log(x));\n *\n * // displays:\n * // { age: 4, name: 'Foo' }\n * // { age: 7, name: 'Bar' }\n * // { age: 5, name: 'Foo' }\n * ```\n *\n * An example comparing the first letters of the name\n *\n * ```ts\n * import { of, distinctUntilKeyChanged } from 'rxjs';\n *\n * of(\n * { age: 4, name: 'Foo1' },\n * { age: 7, name: 'Bar' },\n * { age: 5, name: 'Foo2' },\n * { age: 6, name: 'Foo3' }\n * ).pipe(\n * distinctUntilKeyChanged('name', (x, y) => x.substring(0, 3) === y.substring(0, 3))\n * )\n * .subscribe(x => console.log(x));\n *\n * // displays:\n * // { age: 4, name: 'Foo1' }\n * // { age: 7, name: 'Bar' }\n * // { age: 5, name: 'Foo2' }\n * ```\n *\n * @see {@link distinct}\n * @see {@link distinctUntilChanged}\n *\n * @param {string} key String key for object property lookup on each item.\n * @param {function} [compare] Optional comparison function called to test if an item is distinct from the previous item in the source.\n * @return A function that returns an Observable that emits items from the\n * source Observable with distinct values based on the key specified.\n */\nexport function distinctUntilKeyChanged<T, K extends keyof T>(key: K, compare?: (x: T[K], y: T[K]) => boolean): MonoTypeOperatorFunction<T> {\n return distinctUntilChanged((x: T, y: T) => compare ? compare(x[key], y[key]) : x[key] === y[key]);\n}\n", "import { EmptyError } from '../util/EmptyError';\nimport { MonoTypeOperatorFunction } from '../types';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\n/**\n * If the source observable completes without emitting a value, it will emit\n * an error. The error will be created at that time by the optional\n * `errorFactory` argument, otherwise, the error will be {@link EmptyError}.\n *\n * ![](throwIfEmpty.png)\n *\n * ## Example\n *\n * Throw an error if the document wasn't clicked within 1 second\n *\n * ```ts\n * import { fromEvent, takeUntil, timer, throwIfEmpty } from 'rxjs';\n *\n * const click$ = fromEvent(document, 'click');\n *\n * click$.pipe(\n * takeUntil(timer(1000)),\n * throwIfEmpty(() => new Error('The document was not clicked within 1 second'))\n * )\n * .subscribe({\n * next() {\n * console.log('The document was clicked');\n * },\n * error(err) {\n * console.error(err.message);\n * }\n * });\n * ```\n *\n * @param errorFactory A factory function called to produce the\n * error to be thrown when the source observable completes without emitting a\n * value.\n * @return A function that returns an Observable that throws an error if the\n * source Observable completed without emitting.\n */\nexport function throwIfEmpty<T>(errorFactory: () => any = defaultErrorFactory): MonoTypeOperatorFunction<T> {\n return operate((source, subscriber) => {\n let hasValue = false;\n source.subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => {\n hasValue = true;\n subscriber.next(value);\n },\n () => (hasValue ? subscriber.complete() : subscriber.error(errorFactory()))\n )\n );\n });\n}\n\nfunction defaultErrorFactory() {\n return new EmptyError();\n}\n", "/** prettier */\nimport { Observable } from '../Observable';\nimport { concat } from '../observable/concat';\nimport { of } from '../observable/of';\nimport { MonoTypeOperatorFunction, SchedulerLike, OperatorFunction, ValueFromArray } from '../types';\n\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `concatAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function endWith<T>(scheduler: SchedulerLike): MonoTypeOperatorFunction<T>;\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `concatAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function endWith<T, A extends unknown[] = T[]>(\n ...valuesAndScheduler: [...A, SchedulerLike]\n): OperatorFunction<T, T | ValueFromArray<A>>;\n\nexport function endWith<T, A extends unknown[] = T[]>(...values: A): OperatorFunction<T, T | ValueFromArray<A>>;\n\n/**\n * Returns an observable that will emit all values from the source, then synchronously emit\n * the provided value(s) immediately after the source completes.\n *\n * NOTE: Passing a last argument of a Scheduler is _deprecated_, and may result in incorrect\n * types in TypeScript.\n *\n * This is useful for knowing when an observable ends. Particularly when paired with an\n * operator like {@link takeUntil}\n *\n * ![](endWith.png)\n *\n * ## Example\n *\n * Emit values to know when an interval starts and stops. The interval will\n * stop when a user clicks anywhere on the document.\n *\n * ```ts\n * import { interval, map, fromEvent, startWith, takeUntil, endWith } from 'rxjs';\n *\n * const ticker$ = interval(5000).pipe(\n * map(() => 'tick')\n * );\n *\n * const documentClicks$ = fromEvent(document, 'click');\n *\n * ticker$.pipe(\n * startWith('interval started'),\n * takeUntil(documentClicks$),\n * endWith('interval ended by click')\n * )\n * .subscribe(x => console.log(x));\n *\n * // Result (assuming a user clicks after 15 seconds)\n * // 'interval started'\n * // 'tick'\n * // 'tick'\n * // 'tick'\n * // 'interval ended by click'\n * ```\n *\n * @see {@link startWith}\n * @see {@link concat}\n * @see {@link takeUntil}\n *\n * @param values Items you want the modified Observable to emit last.\n * @return A function that returns an Observable that emits all values from the\n * source, then synchronously emits the provided value(s) immediately after the\n * source completes.\n */\nexport function endWith<T>(...values: Array<T | SchedulerLike>): MonoTypeOperatorFunction<T> {\n return (source: Observable<T>) => concat(source, of(...values)) as Observable<T>;\n}\n", "import { MonoTypeOperatorFunction } from '../types';\nimport { operate } from '../util/lift';\n\n/**\n * Returns an Observable that mirrors the source Observable, but will call a specified function when\n * the source terminates on complete or error.\n * The specified function will also be called when the subscriber explicitly unsubscribes.\n *\n * ## Examples\n *\n * Execute callback function when the observable completes\n *\n * ```ts\n * import { interval, take, finalize } from 'rxjs';\n *\n * // emit value in sequence every 1 second\n * const source = interval(1000);\n * const example = source.pipe(\n * take(5), //take only the first 5 values\n * finalize(() => console.log('Sequence complete')) // Execute when the observable completes\n * );\n * const subscribe = example.subscribe(val => console.log(val));\n *\n * // results:\n * // 0\n * // 1\n * // 2\n * // 3\n * // 4\n * // 'Sequence complete'\n * ```\n *\n * Execute callback function when the subscriber explicitly unsubscribes\n *\n * ```ts\n * import { interval, finalize, tap, noop, timer } from 'rxjs';\n *\n * const source = interval(100).pipe(\n * finalize(() => console.log('[finalize] Called')),\n * tap({\n * next: () => console.log('[next] Called'),\n * error: () => console.log('[error] Not called'),\n * complete: () => console.log('[tap complete] Not called')\n * })\n * );\n *\n * const sub = source.subscribe({\n * next: x => console.log(x),\n * error: noop,\n * complete: () => console.log('[complete] Not called')\n * });\n *\n * timer(150).subscribe(() => sub.unsubscribe());\n *\n * // results:\n * // '[next] Called'\n * // 0\n * // '[finalize] Called'\n * ```\n *\n * @param {function} callback Function to be called when source terminates.\n * @return A function that returns an Observable that mirrors the source, but\n * will call the specified function on termination.\n */\nexport function finalize<T>(callback: () => void): MonoTypeOperatorFunction<T> {\n return operate((source, subscriber) => {\n // TODO: This try/finally was only added for `useDeprecatedSynchronousErrorHandling`.\n // REMOVE THIS WHEN THAT HOT GARBAGE IS REMOVED IN V8.\n try {\n source.subscribe(subscriber);\n } finally {\n subscriber.add(callback);\n }\n });\n}\n", "import { Observable } from '../Observable';\nimport { EmptyError } from '../util/EmptyError';\nimport { OperatorFunction, TruthyTypesOf } from '../types';\nimport { filter } from './filter';\nimport { take } from './take';\nimport { defaultIfEmpty } from './defaultIfEmpty';\nimport { throwIfEmpty } from './throwIfEmpty';\nimport { identity } from '../util/identity';\n\nexport function first<T, D = T>(predicate?: null, defaultValue?: D): OperatorFunction<T, T | D>;\nexport function first<T>(predicate: BooleanConstructor): OperatorFunction<T, TruthyTypesOf<T>>;\nexport function first<T, D>(predicate: BooleanConstructor, defaultValue: D): OperatorFunction<T, TruthyTypesOf<T> | D>;\nexport function first<T, S extends T>(\n predicate: (value: T, index: number, source: Observable<T>) => value is S,\n defaultValue?: S\n): OperatorFunction<T, S>;\nexport function first<T, S extends T, D>(\n predicate: (value: T, index: number, source: Observable<T>) => value is S,\n defaultValue: D\n): OperatorFunction<T, S | D>;\nexport function first<T, D = T>(\n predicate: (value: T, index: number, source: Observable<T>) => boolean,\n defaultValue?: D\n): OperatorFunction<T, T | D>;\n\n/**\n * Emits only the first value (or the first value that meets some condition)\n * emitted by the source Observable.\n *\n * <span class=\"informal\">Emits only the first value. Or emits only the first\n * value that passes some test.</span>\n *\n * ![](first.png)\n *\n * If called with no arguments, `first` emits the first value of the source\n * Observable, then completes. If called with a `predicate` function, `first`\n * emits the first value of the source that matches the specified condition. Throws an error if\n * `defaultValue` was not provided and a matching element is not found.\n *\n * ## Examples\n *\n * Emit only the first click that happens on the DOM\n *\n * ```ts\n * import { fromEvent, first } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(first());\n * result.subscribe(x => console.log(x));\n * ```\n *\n * Emits the first click that happens on a DIV\n *\n * ```ts\n * import { fromEvent, first } from 'rxjs';\n *\n * const div = document.createElement('div');\n * div.style.cssText = 'width: 200px; height: 200px; background: #09c;';\n * document.body.appendChild(div);\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(first(ev => (<HTMLElement>ev.target).tagName === 'DIV'));\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link filter}\n * @see {@link find}\n * @see {@link take}\n *\n * @throws {EmptyError} Delivers an EmptyError to the Observer's `error`\n * callback if the Observable completes before any `next` notification was sent.\n * This is how `first()` is different from {@link take}(1) which completes instead.\n *\n * @param {function(value: T, index: number, source: Observable<T>): boolean} [predicate]\n * An optional function called with each item to test for condition matching.\n * @param {D} [defaultValue] The default value emitted in case no valid value\n * was found on the source.\n * @return A function that returns an Observable that emits the first item that\n * matches the condition.\n */\nexport function first<T, D>(\n predicate?: ((value: T, index: number, source: Observable<T>) => boolean) | null,\n defaultValue?: D\n): OperatorFunction<T, T | D> {\n const hasDefaultValue = arguments.length >= 2;\n return (source: Observable<T>) =>\n source.pipe(\n predicate ? filter((v, i) => predicate(v, i, source)) : identity,\n take(1),\n hasDefaultValue ? defaultIfEmpty(defaultValue!) : throwIfEmpty(() => new EmptyError())\n );\n}\n", "import { EMPTY } from '../observable/empty';\nimport { MonoTypeOperatorFunction } from '../types';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\n/**\n * Waits for the source to complete, then emits the last N values from the source,\n * as specified by the `count` argument.\n *\n * ![](takeLast.png)\n *\n * `takeLast` results in an observable that will hold values up to `count` values in memory,\n * until the source completes. It then pushes all values in memory to the consumer, in the\n * order they were received from the source, then notifies the consumer that it is\n * complete.\n *\n * If for some reason the source completes before the `count` supplied to `takeLast` is reached,\n * all values received until that point are emitted, and then completion is notified.\n *\n * **Warning**: Using `takeLast` with an observable that never completes will result\n * in an observable that never emits a value.\n *\n * ## Example\n *\n * Take the last 3 values of an Observable with many values\n *\n * ```ts\n * import { range, takeLast } from 'rxjs';\n *\n * const many = range(1, 100);\n * const lastThree = many.pipe(takeLast(3));\n * lastThree.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link take}\n * @see {@link takeUntil}\n * @see {@link takeWhile}\n * @see {@link skip}\n *\n * @param count The maximum number of values to emit from the end of\n * the sequence of values emitted by the source Observable.\n * @return A function that returns an Observable that emits at most the last\n * `count` values emitted by the source Observable.\n */\nexport function takeLast<T>(count: number): MonoTypeOperatorFunction<T> {\n return count <= 0\n ? () => EMPTY\n : operate((source, subscriber) => {\n // This buffer will hold the values we are going to emit\n // when the source completes. Since we only want to take the\n // last N values, we can't emit until we're sure we're not getting\n // any more values.\n let buffer: T[] = [];\n source.subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => {\n // Add the most recent value onto the end of our buffer.\n buffer.push(value);\n // If our buffer is now larger than the number of values we\n // want to take, we remove the oldest value from the buffer.\n count < buffer.length && buffer.shift();\n },\n () => {\n // The source completed, we now know what are last values\n // are, emit them in the order they were received.\n for (const value of buffer) {\n subscriber.next(value);\n }\n subscriber.complete();\n },\n // Errors are passed through to the consumer\n undefined,\n () => {\n // During finalization release the values in our buffer.\n buffer = null!;\n }\n )\n );\n });\n}\n", "import { ObservableInput, ObservableInputTuple, OperatorFunction, SchedulerLike } from '../types';\nimport { operate } from '../util/lift';\nimport { argsOrArgArray } from '../util/argsOrArgArray';\nimport { mergeAll } from './mergeAll';\nimport { popNumber, popScheduler } from '../util/args';\nimport { from } from '../observable/from';\n\n/** @deprecated Replaced with {@link mergeWith}. Will be removed in v8. */\nexport function merge<T, A extends readonly unknown[]>(...sources: [...ObservableInputTuple<A>]): OperatorFunction<T, T | A[number]>;\n/** @deprecated Replaced with {@link mergeWith}. Will be removed in v8. */\nexport function merge<T, A extends readonly unknown[]>(\n ...sourcesAndConcurrency: [...ObservableInputTuple<A>, number]\n): OperatorFunction<T, T | A[number]>;\n/** @deprecated Replaced with {@link mergeWith}. Will be removed in v8. */\nexport function merge<T, A extends readonly unknown[]>(\n ...sourcesAndScheduler: [...ObservableInputTuple<A>, SchedulerLike]\n): OperatorFunction<T, T | A[number]>;\n/** @deprecated Replaced with {@link mergeWith}. Will be removed in v8. */\nexport function merge<T, A extends readonly unknown[]>(\n ...sourcesAndConcurrencyAndScheduler: [...ObservableInputTuple<A>, number, SchedulerLike]\n): OperatorFunction<T, T | A[number]>;\n\nexport function merge<T>(...args: unknown[]): OperatorFunction<T, unknown> {\n const scheduler = popScheduler(args);\n const concurrent = popNumber(args, Infinity);\n args = argsOrArgArray(args);\n\n return operate((source, subscriber) => {\n mergeAll(concurrent)(from([source, ...(args as ObservableInput<T>[])], scheduler)).subscribe(subscriber);\n });\n}\n", "import { ObservableInputTuple, OperatorFunction } from '../types';\nimport { merge } from './merge';\n\n/**\n * Merge the values from all observables to a single observable result.\n *\n * Creates an observable, that when subscribed to, subscribes to the source\n * observable, and all other sources provided as arguments. All values from\n * every source are emitted from the resulting subscription.\n *\n * When all sources complete, the resulting observable will complete.\n *\n * When any source errors, the resulting observable will error.\n *\n * ## Example\n *\n * Joining all outputs from multiple user input event streams\n *\n * ```ts\n * import { fromEvent, map, mergeWith } from 'rxjs';\n *\n * const clicks$ = fromEvent(document, 'click').pipe(map(() => 'click'));\n * const mousemoves$ = fromEvent(document, 'mousemove').pipe(map(() => 'mousemove'));\n * const dblclicks$ = fromEvent(document, 'dblclick').pipe(map(() => 'dblclick'));\n *\n * mousemoves$\n * .pipe(mergeWith(clicks$, dblclicks$))\n * .subscribe(x => console.log(x));\n *\n * // result (assuming user interactions)\n * // 'mousemove'\n * // 'mousemove'\n * // 'mousemove'\n * // 'click'\n * // 'click'\n * // 'dblclick'\n * ```\n *\n * @see {@link merge}\n *\n * @param otherSources the sources to combine the current source with.\n * @return A function that returns an Observable that merges the values from\n * all given Observables.\n */\nexport function mergeWith<T, A extends readonly unknown[]>(\n ...otherSources: [...ObservableInputTuple<A>]\n): OperatorFunction<T, T | A[number]> {\n return merge(...otherSources);\n}\n", "import { Subscription } from '../Subscription';\nimport { EMPTY } from '../observable/empty';\nimport { operate } from '../util/lift';\nimport { MonoTypeOperatorFunction, ObservableInput } from '../types';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\nimport { innerFrom } from '../observable/innerFrom';\nimport { timer } from '../observable/timer';\n\nexport interface RepeatConfig {\n /**\n * The number of times to repeat the source. Defaults to `Infinity`.\n */\n count?: number;\n\n /**\n * If a `number`, will delay the repeat of the source by that number of milliseconds.\n * If a function, it will provide the number of times the source has been subscribed to,\n * and the return value should be a valid observable input that will notify when the source\n * should be repeated. If the notifier observable is empty, the result will complete.\n */\n delay?: number | ((count: number) => ObservableInput<any>);\n}\n\n/**\n * Returns an Observable that will resubscribe to the source stream when the source stream completes.\n *\n * <span class=\"informal\">Repeats all values emitted on the source. It's like {@link retry}, but for non error cases.</span>\n *\n * ![](repeat.png)\n *\n * Repeat will output values from a source until the source completes, then it will resubscribe to the\n * source a specified number of times, with a specified delay. Repeat can be particularly useful in\n * combination with closing operators like {@link take}, {@link takeUntil}, {@link first}, or {@link takeWhile},\n * as it can be used to restart a source again from scratch.\n *\n * Repeat is very similar to {@link retry}, where {@link retry} will resubscribe to the source in the error case, but\n * `repeat` will resubscribe if the source completes.\n *\n * Note that `repeat` will _not_ catch errors. Use {@link retry} for that.\n *\n * - `repeat(0)` returns an empty observable\n * - `repeat()` will repeat forever\n * - `repeat({ delay: 200 })` will repeat forever, with a delay of 200ms between repetitions.\n * - `repeat({ count: 2, delay: 400 })` will repeat twice, with a delay of 400ms between repetitions.\n * - `repeat({ delay: (count) => timer(count * 1000) })` will repeat forever, but will have a delay that grows by one second for each repetition.\n *\n * ## Example\n *\n * Repeat a message stream\n *\n * ```ts\n * import { of, repeat } from 'rxjs';\n *\n * const source = of('Repeat message');\n * const result = source.pipe(repeat(3));\n *\n * result.subscribe(x => console.log(x));\n *\n * // Results\n * // 'Repeat message'\n * // 'Repeat message'\n * // 'Repeat message'\n * ```\n *\n * Repeat 3 values, 2 times\n *\n * ```ts\n * import { interval, take, repeat } from 'rxjs';\n *\n * const source = interval(1000);\n * const result = source.pipe(take(3), repeat(2));\n *\n * result.subscribe(x => console.log(x));\n *\n * // Results every second\n * // 0\n * // 1\n * // 2\n * // 0\n * // 1\n * // 2\n * ```\n *\n * Defining two complex repeats with delays on the same source.\n * Note that the second repeat cannot be called until the first\n * repeat as exhausted it's count.\n *\n * ```ts\n * import { defer, of, repeat } from 'rxjs';\n *\n * const source = defer(() => {\n * return of(`Hello, it is ${new Date()}`)\n * });\n *\n * source.pipe(\n * // Repeat 3 times with a delay of 1 second between repetitions\n * repeat({\n * count: 3,\n * delay: 1000,\n * }),\n *\n * // *Then* repeat forever, but with an exponential step-back\n * // maxing out at 1 minute.\n * repeat({\n * delay: (count) => timer(Math.min(60000, 2 ^ count * 1000))\n * })\n * )\n * ```\n *\n * @see {@link repeatWhen}\n * @see {@link retry}\n *\n * @param count The number of times the source Observable items are repeated, a count of 0 will yield\n * an empty Observable.\n */\nexport function repeat<T>(countOrConfig?: number | RepeatConfig): MonoTypeOperatorFunction<T> {\n let count = Infinity;\n let delay: RepeatConfig['delay'];\n\n if (countOrConfig != null) {\n if (typeof countOrConfig === 'object') {\n ({ count = Infinity, delay } = countOrConfig);\n } else {\n count = countOrConfig;\n }\n }\n\n return count <= 0\n ? () => EMPTY\n : operate((source, subscriber) => {\n let soFar = 0;\n let sourceSub: Subscription | null;\n\n const resubscribe = () => {\n sourceSub?.unsubscribe();\n sourceSub = null;\n if (delay != null) {\n const notifier = typeof delay === 'number' ? timer(delay) : innerFrom(delay(soFar));\n const notifierSubscriber = createOperatorSubscriber(subscriber, () => {\n notifierSubscriber.unsubscribe();\n subscribeToSource();\n });\n notifier.subscribe(notifierSubscriber);\n } else {\n subscribeToSource();\n }\n };\n\n const subscribeToSource = () => {\n let syncUnsub = false;\n sourceSub = source.subscribe(\n createOperatorSubscriber(subscriber, undefined, () => {\n if (++soFar < count) {\n if (sourceSub) {\n resubscribe();\n } else {\n syncUnsub = true;\n }\n } else {\n subscriber.complete();\n }\n })\n );\n\n if (syncUnsub) {\n resubscribe();\n }\n };\n\n subscribeToSource();\n });\n}\n", "import { OperatorFunction } from '../types';\nimport { operate } from '../util/lift';\nimport { scanInternals } from './scanInternals';\n\nexport function scan<V, A = V>(accumulator: (acc: A | V, value: V, index: number) => A): OperatorFunction<V, V | A>;\nexport function scan<V, A>(accumulator: (acc: A, value: V, index: number) => A, seed: A): OperatorFunction<V, A>;\nexport function scan<V, A, S>(accumulator: (acc: A | S, value: V, index: number) => A, seed: S): OperatorFunction<V, A>;\n\n// TODO: link to a \"redux pattern\" section in the guide (location TBD)\n\n/**\n * Useful for encapsulating and managing state. Applies an accumulator (or \"reducer function\")\n * to each value from the source after an initial state is established -- either via\n * a `seed` value (second argument), or from the first value from the source.\n *\n * <span class=\"informal\">It's like {@link reduce}, but emits the current\n * accumulation state after each update</span>\n *\n * ![](scan.png)\n *\n * This operator maintains an internal state and emits it after processing each value as follows:\n *\n * 1. First value arrives\n * - If a `seed` value was supplied (as the second argument to `scan`), let `state = seed` and `value = firstValue`.\n * - If NO `seed` value was supplied (no second argument), let `state = firstValue` and go to 3.\n * 2. Let `state = accumulator(state, value)`.\n * - If an error is thrown by `accumulator`, notify the consumer of an error. The process ends.\n * 3. Emit `state`.\n * 4. Next value arrives, let `value = nextValue`, go to 2.\n *\n * ## Examples\n *\n * An average of previous numbers. This example shows how\n * not providing a `seed` can prime the stream with the\n * first value from the source.\n *\n * ```ts\n * import { of, scan, map } from 'rxjs';\n *\n * const numbers$ = of(1, 2, 3);\n *\n * numbers$\n * .pipe(\n * // Get the sum of the numbers coming in.\n * scan((total, n) => total + n),\n * // Get the average by dividing the sum by the total number\n * // received so far (which is 1 more than the zero-based index).\n * map((sum, index) => sum / (index + 1))\n * )\n * .subscribe(console.log);\n * ```\n *\n * The Fibonacci sequence. This example shows how you can use\n * a seed to prime accumulation process. Also... you know... Fibonacci.\n * So important to like, computers and stuff that its whiteboarded\n * in job interviews. Now you can show them the Rx version! (Please don't, haha)\n *\n * ```ts\n * import { interval, scan, map, startWith } from 'rxjs';\n *\n * const firstTwoFibs = [0, 1];\n * // An endless stream of Fibonacci numbers.\n * const fibonacci$ = interval(1000).pipe(\n * // Scan to get the fibonacci numbers (after 0, 1)\n * scan(([a, b]) => [b, a + b], firstTwoFibs),\n * // Get the second number in the tuple, it's the one you calculated\n * map(([, n]) => n),\n * // Start with our first two digits :)\n * startWith(...firstTwoFibs)\n * );\n *\n * fibonacci$.subscribe(console.log);\n * ```\n *\n * @see {@link expand}\n * @see {@link mergeScan}\n * @see {@link reduce}\n * @see {@link switchScan}\n *\n * @param accumulator A \"reducer function\". This will be called for each value after an initial state is\n * acquired.\n * @param seed The initial state. If this is not provided, the first value from the source will\n * be used as the initial state, and emitted without going through the accumulator. All subsequent values\n * will be processed by the accumulator function. If this is provided, all values will go through\n * the accumulator function.\n * @return A function that returns an Observable of the accumulated values.\n */\nexport function scan<V, A, S>(accumulator: (acc: V | A | S, value: V, index: number) => A, seed?: S): OperatorFunction<V, V | A> {\n // providing a seed of `undefined` *should* be valid and trigger\n // hasSeed! so don't use `seed !== undefined` checks!\n // For this reason, we have to check it here at the original call site\n // otherwise inside Operator/Subscriber we won't know if `undefined`\n // means they didn't provide anything or if they literally provided `undefined`\n return operate(scanInternals(accumulator, seed as S, arguments.length >= 2, true));\n}\n", "import { innerFrom } from '../observable/innerFrom';\nimport { Subject } from '../Subject';\nimport { SafeSubscriber } from '../Subscriber';\nimport { Subscription } from '../Subscription';\nimport { MonoTypeOperatorFunction, SubjectLike, ObservableInput } from '../types';\nimport { operate } from '../util/lift';\n\nexport interface ShareConfig<T> {\n /**\n * The factory used to create the subject that will connect the source observable to\n * multicast consumers.\n */\n connector?: () => SubjectLike<T>;\n /**\n * If `true`, the resulting observable will reset internal state on error from source and return to a \"cold\" state. This\n * allows the resulting observable to be \"retried\" in the event of an error.\n * If `false`, when an error comes from the source it will push the error into the connecting subject, and the subject\n * will remain the connecting subject, meaning the resulting observable will not go \"cold\" again, and subsequent retries\n * or resubscriptions will resubscribe to that same subject. In all cases, RxJS subjects will emit the same error again, however\n * {@link ReplaySubject} will also push its buffered values before pushing the error.\n * It is also possible to pass a notifier factory returning an `ObservableInput` instead which grants more fine-grained\n * control over how and when the reset should happen. This allows behaviors like conditional or delayed resets.\n */\n resetOnError?: boolean | ((error: any) => ObservableInput<any>);\n /**\n * If `true`, the resulting observable will reset internal state on completion from source and return to a \"cold\" state. This\n * allows the resulting observable to be \"repeated\" after it is done.\n * If `false`, when the source completes, it will push the completion through the connecting subject, and the subject\n * will remain the connecting subject, meaning the resulting observable will not go \"cold\" again, and subsequent repeats\n * or resubscriptions will resubscribe to that same subject.\n * It is also possible to pass a notifier factory returning an `ObservableInput` instead which grants more fine-grained\n * control over how and when the reset should happen. This allows behaviors like conditional or delayed resets.\n */\n resetOnComplete?: boolean | (() => ObservableInput<any>);\n /**\n * If `true`, when the number of subscribers to the resulting observable reaches zero due to those subscribers unsubscribing, the\n * internal state will be reset and the resulting observable will return to a \"cold\" state. This means that the next\n * time the resulting observable is subscribed to, a new subject will be created and the source will be subscribed to\n * again.\n * If `false`, when the number of subscribers to the resulting observable reaches zero due to unsubscription, the subject\n * will remain connected to the source, and new subscriptions to the result will be connected through that same subject.\n * It is also possible to pass a notifier factory returning an `ObservableInput` instead which grants more fine-grained\n * control over how and when the reset should happen. This allows behaviors like conditional or delayed resets.\n */\n resetOnRefCountZero?: boolean | (() => ObservableInput<any>);\n}\n\nexport function share<T>(): MonoTypeOperatorFunction<T>;\n\nexport function share<T>(options: ShareConfig<T>): MonoTypeOperatorFunction<T>;\n\n/**\n * Returns a new Observable that multicasts (shares) the original Observable. As long as there is at least one\n * Subscriber this Observable will be subscribed and emitting data. When all subscribers have unsubscribed it will\n * unsubscribe from the source Observable. Because the Observable is multicasting it makes the stream `hot`.\n * This is an alias for `multicast(() => new Subject()), refCount()`.\n *\n * The subscription to the underlying source Observable can be reset (unsubscribe and resubscribe for new subscribers),\n * if the subscriber count to the shared observable drops to 0, or if the source Observable errors or completes. It is\n * possible to use notifier factories for the resets to allow for behaviors like conditional or delayed resets. Please\n * note that resetting on error or complete of the source Observable does not behave like a transparent retry or restart\n * of the source because the error or complete will be forwarded to all subscribers and their subscription will be\n * closed. Only new subscribers after a reset on error or complete happened will cause a fresh subscription to the\n * source. To achieve transparent retries or restarts pipe the source through appropriate operators before sharing.\n *\n * ![](share.png)\n *\n * ## Example\n *\n * Generate new multicast Observable from the `source` Observable value\n *\n * ```ts\n * import { interval, tap, map, take, share } from 'rxjs';\n *\n * const source = interval(1000).pipe(\n * tap(x => console.log('Processing: ', x)),\n * map(x => x * x),\n * take(6),\n * share()\n * );\n *\n * source.subscribe(x => console.log('subscription 1: ', x));\n * source.subscribe(x => console.log('subscription 2: ', x));\n *\n * // Logs:\n * // Processing: 0\n * // subscription 1: 0\n * // subscription 2: 0\n * // Processing: 1\n * // subscription 1: 1\n * // subscription 2: 1\n * // Processing: 2\n * // subscription 1: 4\n * // subscription 2: 4\n * // Processing: 3\n * // subscription 1: 9\n * // subscription 2: 9\n * // Processing: 4\n * // subscription 1: 16\n * // subscription 2: 16\n * // Processing: 5\n * // subscription 1: 25\n * // subscription 2: 25\n * ```\n *\n * ## Example with notifier factory: Delayed reset\n *\n * ```ts\n * import { interval, take, share, timer } from 'rxjs';\n *\n * const source = interval(1000).pipe(\n * take(3),\n * share({\n * resetOnRefCountZero: () => timer(1000)\n * })\n * );\n *\n * const subscriptionOne = source.subscribe(x => console.log('subscription 1: ', x));\n * setTimeout(() => subscriptionOne.unsubscribe(), 1300);\n *\n * setTimeout(() => source.subscribe(x => console.log('subscription 2: ', x)), 1700);\n *\n * setTimeout(() => source.subscribe(x => console.log('subscription 3: ', x)), 5000);\n *\n * // Logs:\n * // subscription 1: 0\n * // (subscription 1 unsubscribes here)\n * // (subscription 2 subscribes here ~400ms later, source was not reset)\n * // subscription 2: 1\n * // subscription 2: 2\n * // (subscription 2 unsubscribes here)\n * // (subscription 3 subscribes here ~2000ms later, source did reset before)\n * // subscription 3: 0\n * // subscription 3: 1\n * // subscription 3: 2\n * ```\n *\n * @see {@link shareReplay}\n *\n * @return A function that returns an Observable that mirrors the source.\n */\nexport function share<T>(options: ShareConfig<T> = {}): MonoTypeOperatorFunction<T> {\n const { connector = () => new Subject<T>(), resetOnError = true, resetOnComplete = true, resetOnRefCountZero = true } = options;\n // It's necessary to use a wrapper here, as the _operator_ must be\n // referentially transparent. Otherwise, it cannot be used in calls to the\n // static `pipe` function - to create a partial pipeline.\n //\n // The _operator function_ - the function returned by the _operator_ - will\n // not be referentially transparent - as it shares its source - but the\n // _operator function_ is called when the complete pipeline is composed via a\n // call to a source observable's `pipe` method - not when the static `pipe`\n // function is called.\n return (wrapperSource) => {\n let connection: SafeSubscriber<T> | undefined;\n let resetConnection: Subscription | undefined;\n let subject: SubjectLike<T> | undefined;\n let refCount = 0;\n let hasCompleted = false;\n let hasErrored = false;\n\n const cancelReset = () => {\n resetConnection?.unsubscribe();\n resetConnection = undefined;\n };\n // Used to reset the internal state to a \"cold\"\n // state, as though it had never been subscribed to.\n const reset = () => {\n cancelReset();\n connection = subject = undefined;\n hasCompleted = hasErrored = false;\n };\n const resetAndUnsubscribe = () => {\n // We need to capture the connection before\n // we reset (if we need to reset).\n const conn = connection;\n reset();\n conn?.unsubscribe();\n };\n\n return operate<T, T>((source, subscriber) => {\n refCount++;\n if (!hasErrored && !hasCompleted) {\n cancelReset();\n }\n\n // Create the subject if we don't have one yet. Grab a local reference to\n // it as well, which avoids non-null assertions when using it and, if we\n // connect to it now, then error/complete need a reference after it was\n // reset.\n const dest = (subject = subject ?? connector());\n\n // Add the finalization directly to the subscriber - instead of returning it -\n // so that the handling of the subscriber's unsubscription will be wired\n // up _before_ the subscription to the source occurs. This is done so that\n // the assignment to the source connection's `closed` property will be seen\n // by synchronous firehose sources.\n subscriber.add(() => {\n refCount--;\n\n // If we're resetting on refCount === 0, and it's 0, we only want to do\n // that on \"unsubscribe\", really. Resetting on error or completion is a different\n // configuration.\n if (refCount === 0 && !hasErrored && !hasCompleted) {\n resetConnection = handleReset(resetAndUnsubscribe, resetOnRefCountZero);\n }\n });\n\n // The following line adds the subscription to the subscriber passed.\n // Basically, `subscriber === dest.subscribe(subscriber)` is `true`.\n dest.subscribe(subscriber);\n\n if (\n !connection &&\n // Check this shareReplay is still activate - it can be reset to 0\n // and be \"unsubscribed\" _before_ it actually subscribes.\n // If we were to subscribe then, it'd leak and get stuck.\n refCount > 0\n ) {\n // We need to create a subscriber here - rather than pass an observer and\n // assign the returned subscription to connection - because it's possible\n // for reentrant subscriptions to the shared observable to occur and in\n // those situations we want connection to be already-assigned so that we\n // don't create another connection to the source.\n connection = new SafeSubscriber({\n next: (value) => dest.next(value),\n error: (err) => {\n hasErrored = true;\n cancelReset();\n resetConnection = handleReset(reset, resetOnError, err);\n dest.error(err);\n },\n complete: () => {\n hasCompleted = true;\n cancelReset();\n resetConnection = handleReset(reset, resetOnComplete);\n dest.complete();\n },\n });\n innerFrom(source).subscribe(connection);\n }\n })(wrapperSource);\n };\n}\n\nfunction handleReset<T extends unknown[] = never[]>(\n reset: () => void,\n on: boolean | ((...args: T) => ObservableInput<any>),\n ...args: T\n): Subscription | undefined {\n if (on === true) {\n reset();\n return;\n }\n\n if (on === false) {\n return;\n }\n\n const onSubscriber = new SafeSubscriber({\n next: () => {\n onSubscriber.unsubscribe();\n reset();\n },\n });\n\n return innerFrom(on(...args)).subscribe(onSubscriber);\n}\n", "import { ReplaySubject } from '../ReplaySubject';\nimport { MonoTypeOperatorFunction, SchedulerLike } from '../types';\nimport { share } from './share';\n\nexport interface ShareReplayConfig {\n bufferSize?: number;\n windowTime?: number;\n refCount: boolean;\n scheduler?: SchedulerLike;\n}\n\nexport function shareReplay<T>(config: ShareReplayConfig): MonoTypeOperatorFunction<T>;\nexport function shareReplay<T>(bufferSize?: number, windowTime?: number, scheduler?: SchedulerLike): MonoTypeOperatorFunction<T>;\n\n/**\n * Share source and replay specified number of emissions on subscription.\n *\n * This operator is a specialization of `replay` that connects to a source observable\n * and multicasts through a `ReplaySubject` constructed with the specified arguments.\n * A successfully completed source will stay cached in the `shareReplay`ed observable forever,\n * but an errored source can be retried.\n *\n * ## Why use `shareReplay`?\n *\n * You generally want to use `shareReplay` when you have side-effects or taxing computations\n * that you do not wish to be executed amongst multiple subscribers.\n * It may also be valuable in situations where you know you will have late subscribers to\n * a stream that need access to previously emitted values.\n * This ability to replay values on subscription is what differentiates {@link share} and `shareReplay`.\n *\n * ## Reference counting\n *\n * By default `shareReplay` will use `refCount` of false, meaning that it will _not_ unsubscribe the\n * source when the reference counter drops to zero, i.e. the inner `ReplaySubject` will _not_ be unsubscribed\n * (and potentially run for ever).\n * This is the default as it is expected that `shareReplay` is often used to keep around expensive to setup\n * observables which we want to keep running instead of having to do the expensive setup again.\n *\n * As of RXJS version 6.4.0 a new overload signature was added to allow for manual control over what\n * happens when the operators internal reference counter drops to zero.\n * If `refCount` is true, the source will be unsubscribed from once the reference count drops to zero, i.e.\n * the inner `ReplaySubject` will be unsubscribed. All new subscribers will receive value emissions from a\n * new `ReplaySubject` which in turn will cause a new subscription to the source observable.\n *\n * ## Examples\n *\n * Example with a third subscriber coming late to the party\n *\n * ```ts\n * import { interval, take, shareReplay } from 'rxjs';\n *\n * const shared$ = interval(2000).pipe(\n * take(6),\n * shareReplay(3)\n * );\n *\n * shared$.subscribe(x => console.log('sub A: ', x));\n * shared$.subscribe(y => console.log('sub B: ', y));\n *\n * setTimeout(() => {\n * shared$.subscribe(y => console.log('sub C: ', y));\n * }, 11000);\n *\n * // Logs:\n * // (after ~2000 ms)\n * // sub A: 0\n * // sub B: 0\n * // (after ~4000 ms)\n * // sub A: 1\n * // sub B: 1\n * // (after ~6000 ms)\n * // sub A: 2\n * // sub B: 2\n * // (after ~8000 ms)\n * // sub A: 3\n * // sub B: 3\n * // (after ~10000 ms)\n * // sub A: 4\n * // sub B: 4\n * // (after ~11000 ms, sub C gets the last 3 values)\n * // sub C: 2\n * // sub C: 3\n * // sub C: 4\n * // (after ~12000 ms)\n * // sub A: 5\n * // sub B: 5\n * // sub C: 5\n * ```\n *\n * Example for `refCount` usage\n *\n * ```ts\n * import { Observable, tap, interval, shareReplay, take } from 'rxjs';\n *\n * const log = <T>(name: string, source: Observable<T>) => source.pipe(\n * tap({\n * subscribe: () => console.log(`${ name }: subscribed`),\n * next: value => console.log(`${ name }: ${ value }`),\n * complete: () => console.log(`${ name }: completed`),\n * finalize: () => console.log(`${ name }: unsubscribed`)\n * })\n * );\n *\n * const obs$ = log('source', interval(1000));\n *\n * const shared$ = log('shared', obs$.pipe(\n * shareReplay({ bufferSize: 1, refCount: true }),\n * take(2)\n * ));\n *\n * shared$.subscribe(x => console.log('sub A: ', x));\n * shared$.subscribe(y => console.log('sub B: ', y));\n *\n * // PRINTS:\n * // shared: subscribed <-- reference count = 1\n * // source: subscribed\n * // shared: subscribed <-- reference count = 2\n * // source: 0\n * // shared: 0\n * // sub A: 0\n * // shared: 0\n * // sub B: 0\n * // source: 1\n * // shared: 1\n * // sub A: 1\n * // shared: completed <-- take(2) completes the subscription for sub A\n * // shared: unsubscribed <-- reference count = 1\n * // shared: 1\n * // sub B: 1\n * // shared: completed <-- take(2) completes the subscription for sub B\n * // shared: unsubscribed <-- reference count = 0\n * // source: unsubscribed <-- replaySubject unsubscribes from source observable because the reference count dropped to 0 and refCount is true\n *\n * // In case of refCount being false, the unsubscribe is never called on the source and the source would keep on emitting, even if no subscribers\n * // are listening.\n * // source: 2\n * // source: 3\n * // source: 4\n * // ...\n * ```\n *\n * @see {@link publish}\n * @see {@link share}\n * @see {@link publishReplay}\n *\n * @param configOrBufferSize Maximum element count of the replay buffer or {@link ShareReplayConfig configuration}\n * object.\n * @param windowTime Maximum time length of the replay buffer in milliseconds.\n * @param scheduler Scheduler where connected observers within the selector function\n * will be invoked on.\n * @return A function that returns an Observable sequence that contains the\n * elements of a sequence produced by multicasting the source sequence within a\n * selector function.\n */\nexport function shareReplay<T>(\n configOrBufferSize?: ShareReplayConfig | number,\n windowTime?: number,\n scheduler?: SchedulerLike\n): MonoTypeOperatorFunction<T> {\n let bufferSize: number;\n let refCount = false;\n if (configOrBufferSize && typeof configOrBufferSize === 'object') {\n ({ bufferSize = Infinity, windowTime = Infinity, refCount = false, scheduler } = configOrBufferSize);\n } else {\n bufferSize = (configOrBufferSize ?? Infinity) as number;\n }\n return share<T>({\n connector: () => new ReplaySubject(bufferSize, windowTime, scheduler),\n resetOnError: true,\n resetOnComplete: false,\n resetOnRefCountZero: refCount,\n });\n}\n", "import { MonoTypeOperatorFunction } from '../types';\nimport { filter } from './filter';\n\n/**\n * Returns an Observable that skips the first `count` items emitted by the source Observable.\n *\n * ![](skip.png)\n *\n * Skips the values until the sent notifications are equal or less than provided skip count. It raises\n * an error if skip count is equal or more than the actual number of emits and source raises an error.\n *\n * ## Example\n *\n * Skip the values before the emission\n *\n * ```ts\n * import { interval, skip } from 'rxjs';\n *\n * // emit every half second\n * const source = interval(500);\n * // skip the first 10 emitted values\n * const result = source.pipe(skip(10));\n *\n * result.subscribe(value => console.log(value));\n * // output: 10...11...12...13...\n * ```\n *\n * @see {@link last}\n * @see {@link skipWhile}\n * @see {@link skipUntil}\n * @see {@link skipLast}\n *\n * @param {Number} count - The number of times, items emitted by source Observable should be skipped.\n * @return A function that returns an Observable that skips the first `count`\n * values emitted by the source Observable.\n */\nexport function skip<T>(count: number): MonoTypeOperatorFunction<T> {\n return filter((_, index) => count <= index);\n}\n", "import { MonoTypeOperatorFunction, ObservableInput } from '../types';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\nimport { innerFrom } from '../observable/innerFrom';\nimport { noop } from '../util/noop';\n\n/**\n * Returns an Observable that skips items emitted by the source Observable until a second Observable emits an item.\n *\n * The `skipUntil` operator causes the observable stream to skip the emission of values until the passed in observable\n * emits the first value. This can be particularly useful in combination with user interactions, responses of HTTP\n * requests or waiting for specific times to pass by.\n *\n * ![](skipUntil.png)\n *\n * Internally, the `skipUntil` operator subscribes to the passed in `notifier` `ObservableInput` (which gets converted\n * to an Observable) in order to recognize the emission of its first value. When `notifier` emits next, the operator\n * unsubscribes from it and starts emitting the values of the *source* observable until it completes or errors. It\n * will never let the *source* observable emit any values if the `notifier` completes or throws an error without\n * emitting a value before.\n *\n * ## Example\n *\n * In the following example, all emitted values of the interval observable are skipped until the user clicks anywhere\n * within the page\n *\n * ```ts\n * import { interval, fromEvent, skipUntil } from 'rxjs';\n *\n * const intervalObservable = interval(1000);\n * const click = fromEvent(document, 'click');\n *\n * const emitAfterClick = intervalObservable.pipe(\n * skipUntil(click)\n * );\n * // clicked at 4.6s. output: 5...6...7...8........ or\n * // clicked at 7.3s. output: 8...9...10..11.......\n * emitAfterClick.subscribe(value => console.log(value));\n * ```\n *\n * @see {@link last}\n * @see {@link skip}\n * @see {@link skipWhile}\n * @see {@link skipLast}\n *\n * @param notifier An `ObservableInput` that has to emit an item before the source Observable elements begin to\n * be mirrored by the resulting Observable.\n * @return A function that returns an Observable that skips items from the\n * source Observable until the `notifier` Observable emits an item, then emits the\n * remaining items.\n */\nexport function skipUntil<T>(notifier: ObservableInput<any>): MonoTypeOperatorFunction<T> {\n return operate((source, subscriber) => {\n let taking = false;\n\n const skipSubscriber = createOperatorSubscriber(\n subscriber,\n () => {\n skipSubscriber?.unsubscribe();\n taking = true;\n },\n noop\n );\n\n innerFrom(notifier).subscribe(skipSubscriber);\n\n source.subscribe(createOperatorSubscriber(subscriber, (value) => taking && subscriber.next(value)));\n });\n}\n", "import { concat } from '../observable/concat';\nimport { OperatorFunction, SchedulerLike, ValueFromArray } from '../types';\nimport { popScheduler } from '../util/args';\nimport { operate } from '../util/lift';\n\n// Devs are more likely to pass null or undefined than they are a scheduler\n// without accompanying values. To make things easier for (naughty) devs who\n// use the `strictNullChecks: false` TypeScript compiler option, these\n// overloads with explicit null and undefined values are included.\n\nexport function startWith<T>(value: null): OperatorFunction<T, T | null>;\nexport function startWith<T>(value: undefined): OperatorFunction<T, T | undefined>;\n\n/** @deprecated The `scheduler` parameter will be removed in v8. Use `scheduled` and `concatAll`. Details: https://rxjs.dev/deprecations/scheduler-argument */\nexport function startWith<T, A extends readonly unknown[] = T[]>(\n ...valuesAndScheduler: [...A, SchedulerLike]\n): OperatorFunction<T, T | ValueFromArray<A>>;\nexport function startWith<T, A extends readonly unknown[] = T[]>(...values: A): OperatorFunction<T, T | ValueFromArray<A>>;\n\n/**\n * Returns an observable that, at the moment of subscription, will synchronously emit all\n * values provided to this operator, then subscribe to the source and mirror all of its emissions\n * to subscribers.\n *\n * This is a useful way to know when subscription has occurred on an existing observable.\n *\n * <span class=\"informal\">First emits its arguments in order, and then any\n * emissions from the source.</span>\n *\n * ![](startWith.png)\n *\n * ## Examples\n *\n * Emit a value when a timer starts.\n *\n * ```ts\n * import { timer, map, startWith } from 'rxjs';\n *\n * timer(1000)\n * .pipe(\n * map(() => 'timer emit'),\n * startWith('timer start')\n * )\n * .subscribe(x => console.log(x));\n *\n * // results:\n * // 'timer start'\n * // 'timer emit'\n * ```\n *\n * @param values Items you want the modified Observable to emit first.\n * @return A function that returns an Observable that synchronously emits\n * provided values before subscribing to the source Observable.\n *\n * @see {@link endWith}\n * @see {@link finalize}\n * @see {@link concat}\n */\nexport function startWith<T, D>(...values: D[]): OperatorFunction<T, T | D> {\n const scheduler = popScheduler(values);\n return operate((source, subscriber) => {\n // Here we can't pass `undefined` as a scheduler, because if we did, the\n // code inside of `concat` would be confused by the `undefined`, and treat it\n // like an invalid observable. So we have to split it two different ways.\n (scheduler ? concat(values, source, scheduler) : concat(values, source)).subscribe(subscriber);\n });\n}\n", "import { Subscriber } from '../Subscriber';\nimport { ObservableInput, OperatorFunction, ObservedValueOf } from '../types';\nimport { innerFrom } from '../observable/innerFrom';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\n/* tslint:disable:max-line-length */\nexport function switchMap<T, O extends ObservableInput<any>>(\n project: (value: T, index: number) => O\n): OperatorFunction<T, ObservedValueOf<O>>;\n/** @deprecated The `resultSelector` parameter will be removed in v8. Use an inner `map` instead. Details: https://rxjs.dev/deprecations/resultSelector */\nexport function switchMap<T, O extends ObservableInput<any>>(\n project: (value: T, index: number) => O,\n resultSelector: undefined\n): OperatorFunction<T, ObservedValueOf<O>>;\n/** @deprecated The `resultSelector` parameter will be removed in v8. Use an inner `map` instead. Details: https://rxjs.dev/deprecations/resultSelector */\nexport function switchMap<T, R, O extends ObservableInput<any>>(\n project: (value: T, index: number) => O,\n resultSelector: (outerValue: T, innerValue: ObservedValueOf<O>, outerIndex: number, innerIndex: number) => R\n): OperatorFunction<T, R>;\n/* tslint:enable:max-line-length */\n\n/**\n * Projects each source value to an Observable which is merged in the output\n * Observable, emitting values only from the most recently projected Observable.\n *\n * <span class=\"informal\">Maps each value to an Observable, then flattens all of\n * these inner Observables using {@link switchAll}.</span>\n *\n * ![](switchMap.png)\n *\n * Returns an Observable that emits items based on applying a function that you\n * supply to each item emitted by the source Observable, where that function\n * returns an (so-called \"inner\") Observable. Each time it observes one of these\n * inner Observables, the output Observable begins emitting the items emitted by\n * that inner Observable. When a new inner Observable is emitted, `switchMap`\n * stops emitting items from the earlier-emitted inner Observable and begins\n * emitting items from the new one. It continues to behave like this for\n * subsequent inner Observables.\n *\n * ## Example\n *\n * Generate new Observable according to source Observable values\n *\n * ```ts\n * import { of, switchMap } from 'rxjs';\n *\n * const switched = of(1, 2, 3).pipe(switchMap(x => of(x, x ** 2, x ** 3)));\n * switched.subscribe(x => console.log(x));\n * // outputs\n * // 1\n * // 1\n * // 1\n * // 2\n * // 4\n * // 8\n * // 3\n * // 9\n * // 27\n * ```\n *\n * Restart an interval Observable on every click event\n *\n * ```ts\n * import { fromEvent, switchMap, interval } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(switchMap(() => interval(1000)));\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link concatMap}\n * @see {@link exhaustMap}\n * @see {@link mergeMap}\n * @see {@link switchAll}\n * @see {@link switchMapTo}\n *\n * @param {function(value: T, index: number): ObservableInput} project A function\n * that, when applied to an item emitted by the source Observable, returns an\n * Observable.\n * @return A function that returns an Observable that emits the result of\n * applying the projection function (and the optional deprecated\n * `resultSelector`) to each item emitted by the source Observable and taking\n * only the values from the most recently projected inner Observable.\n */\nexport function switchMap<T, R, O extends ObservableInput<any>>(\n project: (value: T, index: number) => O,\n resultSelector?: (outerValue: T, innerValue: ObservedValueOf<O>, outerIndex: number, innerIndex: number) => R\n): OperatorFunction<T, ObservedValueOf<O> | R> {\n return operate((source, subscriber) => {\n let innerSubscriber: Subscriber<ObservedValueOf<O>> | null = null;\n let index = 0;\n // Whether or not the source subscription has completed\n let isComplete = false;\n\n // We only complete the result if the source is complete AND we don't have an active inner subscription.\n // This is called both when the source completes and when the inners complete.\n const checkComplete = () => isComplete && !innerSubscriber && subscriber.complete();\n\n source.subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => {\n // Cancel the previous inner subscription if there was one\n innerSubscriber?.unsubscribe();\n let innerIndex = 0;\n const outerIndex = index++;\n // Start the next inner subscription\n innerFrom(project(value, outerIndex)).subscribe(\n (innerSubscriber = createOperatorSubscriber(\n subscriber,\n // When we get a new inner value, next it through. Note that this is\n // handling the deprecate result selector here. This is because with this architecture\n // it ends up being smaller than using the map operator.\n (innerValue) => subscriber.next(resultSelector ? resultSelector(value, innerValue, outerIndex, innerIndex++) : innerValue),\n () => {\n // The inner has completed. Null out the inner subscriber to\n // free up memory and to signal that we have no inner subscription\n // currently.\n innerSubscriber = null!;\n checkComplete();\n }\n ))\n );\n },\n () => {\n isComplete = true;\n checkComplete();\n }\n )\n );\n });\n}\n", "import { MonoTypeOperatorFunction, ObservableInput } from '../types';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\nimport { innerFrom } from '../observable/innerFrom';\nimport { noop } from '../util/noop';\n\n/**\n * Emits the values emitted by the source Observable until a `notifier`\n * Observable emits a value.\n *\n * <span class=\"informal\">Lets values pass until a second Observable,\n * `notifier`, emits a value. Then, it completes.</span>\n *\n * ![](takeUntil.png)\n *\n * `takeUntil` subscribes and begins mirroring the source Observable. It also\n * monitors a second Observable, `notifier` that you provide. If the `notifier`\n * emits a value, the output Observable stops mirroring the source Observable\n * and completes. If the `notifier` doesn't emit any value and completes\n * then `takeUntil` will pass all values.\n *\n * ## Example\n *\n * Tick every second until the first click happens\n *\n * ```ts\n * import { interval, fromEvent, takeUntil } from 'rxjs';\n *\n * const source = interval(1000);\n * const clicks = fromEvent(document, 'click');\n * const result = source.pipe(takeUntil(clicks));\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link take}\n * @see {@link takeLast}\n * @see {@link takeWhile}\n * @see {@link skip}\n *\n * @param {Observable} notifier The Observable whose first emitted value will\n * cause the output Observable of `takeUntil` to stop emitting values from the\n * source Observable.\n * @return A function that returns an Observable that emits the values from the\n * source Observable until `notifier` emits its first value.\n */\nexport function takeUntil<T>(notifier: ObservableInput<any>): MonoTypeOperatorFunction<T> {\n return operate((source, subscriber) => {\n innerFrom(notifier).subscribe(createOperatorSubscriber(subscriber, () => subscriber.complete(), noop));\n !subscriber.closed && source.subscribe(subscriber);\n });\n}\n", "import { OperatorFunction, MonoTypeOperatorFunction, TruthyTypesOf } from '../types';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\n\nexport function takeWhile<T>(predicate: BooleanConstructor, inclusive: true): MonoTypeOperatorFunction<T>;\nexport function takeWhile<T>(predicate: BooleanConstructor, inclusive: false): OperatorFunction<T, TruthyTypesOf<T>>;\nexport function takeWhile<T>(predicate: BooleanConstructor): OperatorFunction<T, TruthyTypesOf<T>>;\nexport function takeWhile<T, S extends T>(predicate: (value: T, index: number) => value is S): OperatorFunction<T, S>;\nexport function takeWhile<T, S extends T>(predicate: (value: T, index: number) => value is S, inclusive: false): OperatorFunction<T, S>;\nexport function takeWhile<T>(predicate: (value: T, index: number) => boolean, inclusive?: boolean): MonoTypeOperatorFunction<T>;\n\n/**\n * Emits values emitted by the source Observable so long as each value satisfies\n * the given `predicate`, and then completes as soon as this `predicate` is not\n * satisfied.\n *\n * <span class=\"informal\">Takes values from the source only while they pass the\n * condition given. When the first value does not satisfy, it completes.</span>\n *\n * ![](takeWhile.png)\n *\n * `takeWhile` subscribes and begins mirroring the source Observable. Each value\n * emitted on the source is given to the `predicate` function which returns a\n * boolean, representing a condition to be satisfied by the source values. The\n * output Observable emits the source values until such time as the `predicate`\n * returns false, at which point `takeWhile` stops mirroring the source\n * Observable and completes the output Observable.\n *\n * ## Example\n *\n * Emit click events only while the clientX property is greater than 200\n *\n * ```ts\n * import { fromEvent, takeWhile } from 'rxjs';\n *\n * const clicks = fromEvent<PointerEvent>(document, 'click');\n * const result = clicks.pipe(takeWhile(ev => ev.clientX > 200));\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link take}\n * @see {@link takeLast}\n * @see {@link takeUntil}\n * @see {@link skip}\n *\n * @param {function(value: T, index: number): boolean} predicate A function that\n * evaluates a value emitted by the source Observable and returns a boolean.\n * Also takes the (zero-based) index as the second argument.\n * @param {boolean} inclusive When set to `true` the value that caused\n * `predicate` to return `false` will also be emitted.\n * @return A function that returns an Observable that emits values from the\n * source Observable so long as each value satisfies the condition defined by\n * the `predicate`, then completes.\n */\nexport function takeWhile<T>(predicate: (value: T, index: number) => boolean, inclusive = false): MonoTypeOperatorFunction<T> {\n return operate((source, subscriber) => {\n let index = 0;\n source.subscribe(\n createOperatorSubscriber(subscriber, (value) => {\n const result = predicate(value, index++);\n (result || inclusive) && subscriber.next(value);\n !result && subscriber.complete();\n })\n );\n });\n}\n", "import { MonoTypeOperatorFunction, Observer } from '../types';\nimport { isFunction } from '../util/isFunction';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\nimport { identity } from '../util/identity';\n\n/**\n * An extension to the {@link Observer} interface used only by the {@link tap} operator.\n *\n * It provides a useful set of callbacks a user can register to do side-effects in\n * cases other than what the usual {@link Observer} callbacks are\n * ({@link guide/glossary-and-semantics#next next},\n * {@link guide/glossary-and-semantics#error error} and/or\n * {@link guide/glossary-and-semantics#complete complete}).\n *\n * ## Example\n *\n * ```ts\n * import { fromEvent, switchMap, tap, interval, take } from 'rxjs';\n *\n * const source$ = fromEvent(document, 'click');\n * const result$ = source$.pipe(\n * switchMap((_, i) => i % 2 === 0\n * ? fromEvent(document, 'mousemove').pipe(\n * tap({\n * subscribe: () => console.log('Subscribed to the mouse move events after click #' + i),\n * unsubscribe: () => console.log('Mouse move events #' + i + ' unsubscribed'),\n * finalize: () => console.log('Mouse move events #' + i + ' finalized')\n * })\n * )\n * : interval(1_000).pipe(\n * take(5),\n * tap({\n * subscribe: () => console.log('Subscribed to the 1-second interval events after click #' + i),\n * unsubscribe: () => console.log('1-second interval events #' + i + ' unsubscribed'),\n * finalize: () => console.log('1-second interval events #' + i + ' finalized')\n * })\n * )\n * )\n * );\n *\n * const subscription = result$.subscribe({\n * next: console.log\n * });\n *\n * setTimeout(() => {\n * console.log('Unsubscribe after 60 seconds');\n * subscription.unsubscribe();\n * }, 60_000);\n * ```\n */\nexport interface TapObserver<T> extends Observer<T> {\n /**\n * The callback that `tap` operator invokes at the moment when the source Observable\n * gets subscribed to.\n */\n subscribe: () => void;\n /**\n * The callback that `tap` operator invokes when an explicit\n * {@link guide/glossary-and-semantics#unsubscription unsubscribe} happens. It won't get invoked on\n * `error` or `complete` events.\n */\n unsubscribe: () => void;\n /**\n * The callback that `tap` operator invokes when any kind of\n * {@link guide/glossary-and-semantics#finalization finalization} happens - either when\n * the source Observable `error`s or `complete`s or when it gets explicitly unsubscribed\n * by the user. There is no difference in using this callback or the {@link finalize}\n * operator, but if you're already using `tap` operator, you can use this callback\n * instead. You'd get the same result in either case.\n */\n finalize: () => void;\n}\nexport function tap<T>(observerOrNext?: Partial<TapObserver<T>> | ((value: T) => void)): MonoTypeOperatorFunction<T>;\n/** @deprecated Instead of passing separate callback arguments, use an observer argument. Signatures taking separate callback arguments will be removed in v8. Details: https://rxjs.dev/deprecations/subscribe-arguments */\nexport function tap<T>(\n next?: ((value: T) => void) | null,\n error?: ((error: any) => void) | null,\n complete?: (() => void) | null\n): MonoTypeOperatorFunction<T>;\n\n/**\n * Used to perform side-effects for notifications from the source observable\n *\n * <span class=\"informal\">Used when you want to affect outside state with a notification without altering the notification</span>\n *\n * ![](tap.png)\n *\n * Tap is designed to allow the developer a designated place to perform side effects. While you _could_ perform side-effects\n * inside of a `map` or a `mergeMap`, that would make their mapping functions impure, which isn't always a big deal, but will\n * make it so you can't do things like memoize those functions. The `tap` operator is designed solely for such side-effects to\n * help you remove side-effects from other operations.\n *\n * For any notification, next, error, or complete, `tap` will call the appropriate callback you have provided to it, via a function\n * reference, or a partial observer, then pass that notification down the stream.\n *\n * The observable returned by `tap` is an exact mirror of the source, with one exception: Any error that occurs -- synchronously -- in a handler\n * provided to `tap` will be emitted as an error from the returned observable.\n *\n * > Be careful! You can mutate objects as they pass through the `tap` operator's handlers.\n *\n * The most common use of `tap` is actually for debugging. You can place a `tap(console.log)` anywhere\n * in your observable `pipe`, log out the notifications as they are emitted by the source returned by the previous\n * operation.\n *\n * ## Examples\n *\n * Check a random number before it is handled. Below is an observable that will use a random number between 0 and 1,\n * and emit `'big'` or `'small'` depending on the size of that number. But we wanted to log what the original number\n * was, so we have added a `tap(console.log)`.\n *\n * ```ts\n * import { of, tap, map } from 'rxjs';\n *\n * of(Math.random()).pipe(\n * tap(console.log),\n * map(n => n > 0.5 ? 'big' : 'small')\n * ).subscribe(console.log);\n * ```\n *\n * Using `tap` to analyze a value and force an error. Below is an observable where in our system we only\n * want to emit numbers 3 or less we get from another source. We can force our observable to error\n * using `tap`.\n *\n * ```ts\n * import { of, tap } from 'rxjs';\n *\n * const source = of(1, 2, 3, 4, 5);\n *\n * source.pipe(\n * tap(n => {\n * if (n > 3) {\n * throw new TypeError(`Value ${ n } is greater than 3`);\n * }\n * })\n * )\n * .subscribe({ next: console.log, error: err => console.log(err.message) });\n * ```\n *\n * We want to know when an observable completes before moving on to the next observable. The system\n * below will emit a random series of `'X'` characters from 3 different observables in sequence. The\n * only way we know when one observable completes and moves to the next one, in this case, is because\n * we have added a `tap` with the side effect of logging to console.\n *\n * ```ts\n * import { of, concatMap, interval, take, map, tap } from 'rxjs';\n *\n * of(1, 2, 3).pipe(\n * concatMap(n => interval(1000).pipe(\n * take(Math.round(Math.random() * 10)),\n * map(() => 'X'),\n * tap({ complete: () => console.log(`Done with ${ n }`) })\n * ))\n * )\n * .subscribe(console.log);\n * ```\n *\n * @see {@link finalize}\n * @see {@link TapObserver}\n *\n * @param observerOrNext A next handler or partial observer\n * @param error An error handler\n * @param complete A completion handler\n * @return A function that returns an Observable identical to the source, but\n * runs the specified Observer or callback(s) for each item.\n */\nexport function tap<T>(\n observerOrNext?: Partial<TapObserver<T>> | ((value: T) => void) | null,\n error?: ((e: any) => void) | null,\n complete?: (() => void) | null\n): MonoTypeOperatorFunction<T> {\n // We have to check to see not only if next is a function,\n // but if error or complete were passed. This is because someone\n // could technically call tap like `tap(null, fn)` or `tap(null, null, fn)`.\n const tapObserver =\n isFunction(observerOrNext) || error || complete\n ? // tslint:disable-next-line: no-object-literal-type-assertion\n ({ next: observerOrNext as Exclude<typeof observerOrNext, Partial<TapObserver<T>>>, error, complete } as Partial<TapObserver<T>>)\n : observerOrNext;\n\n return tapObserver\n ? operate((source, subscriber) => {\n tapObserver.subscribe?.();\n let isUnsub = true;\n source.subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => {\n tapObserver.next?.(value);\n subscriber.next(value);\n },\n () => {\n isUnsub = false;\n tapObserver.complete?.();\n subscriber.complete();\n },\n (err) => {\n isUnsub = false;\n tapObserver.error?.(err);\n subscriber.error(err);\n },\n () => {\n if (isUnsub) {\n tapObserver.unsubscribe?.();\n }\n tapObserver.finalize?.();\n }\n )\n );\n })\n : // Tap was called with no valid tap observer or handler\n // (e.g. `tap(null, null, null)` or `tap(null)` or `tap()`)\n // so we're going to just mirror the source.\n identity;\n}\n", "import { Subscription } from '../Subscription';\n\nimport { MonoTypeOperatorFunction, ObservableInput } from '../types';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\nimport { innerFrom } from '../observable/innerFrom';\n\n/**\n * An object interface used by {@link throttle} or {@link throttleTime} that ensure\n * configuration options of these operators.\n *\n * @see {@link throttle}\n * @see {@link throttleTime}\n */\nexport interface ThrottleConfig {\n /**\n * If `true`, the resulting Observable will emit the first value from the source\n * Observable at the **start** of the \"throttling\" process (when starting an\n * internal timer that prevents other emissions from the source to pass through).\n * If `false`, it will not emit the first value from the source Observable at the\n * start of the \"throttling\" process.\n *\n * If not provided, defaults to: `true`.\n */\n leading?: boolean;\n /**\n * If `true`, the resulting Observable will emit the last value from the source\n * Observable at the **end** of the \"throttling\" process (when ending an internal\n * timer that prevents other emissions from the source to pass through).\n * If `false`, it will not emit the last value from the source Observable at the\n * end of the \"throttling\" process.\n *\n * If not provided, defaults to: `false`.\n */\n trailing?: boolean;\n}\n\n/**\n * Emits a value from the source Observable, then ignores subsequent source\n * values for a duration determined by another Observable, then repeats this\n * process.\n *\n * <span class=\"informal\">It's like {@link throttleTime}, but the silencing\n * duration is determined by a second Observable.</span>\n *\n * ![](throttle.svg)\n *\n * `throttle` emits the source Observable values on the output Observable\n * when its internal timer is disabled, and ignores source values when the timer\n * is enabled. Initially, the timer is disabled. As soon as the first source\n * value arrives, it is forwarded to the output Observable, and then the timer\n * is enabled by calling the `durationSelector` function with the source value,\n * which returns the \"duration\" Observable. When the duration Observable emits a\n * value, the timer is disabled, and this process repeats for the\n * next source value.\n *\n * ## Example\n *\n * Emit clicks at a rate of at most one click per second\n *\n * ```ts\n * import { fromEvent, throttle, interval } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(throttle(() => interval(1000)));\n *\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link audit}\n * @see {@link debounce}\n * @see {@link delayWhen}\n * @see {@link sample}\n * @see {@link throttleTime}\n *\n * @param durationSelector A function that receives a value from the source\n * Observable, for computing the silencing duration for each source value,\n * returned as an `ObservableInput`.\n * @param config A configuration object to define `leading` and `trailing`\n * behavior. Defaults to `{ leading: true, trailing: false }`.\n * @return A function that returns an Observable that performs the throttle\n * operation to limit the rate of emissions from the source.\n */\nexport function throttle<T>(durationSelector: (value: T) => ObservableInput<any>, config?: ThrottleConfig): MonoTypeOperatorFunction<T> {\n return operate((source, subscriber) => {\n const { leading = true, trailing = false } = config ?? {};\n let hasValue = false;\n let sendValue: T | null = null;\n let throttled: Subscription | null = null;\n let isComplete = false;\n\n const endThrottling = () => {\n throttled?.unsubscribe();\n throttled = null;\n if (trailing) {\n send();\n isComplete && subscriber.complete();\n }\n };\n\n const cleanupThrottling = () => {\n throttled = null;\n isComplete && subscriber.complete();\n };\n\n const startThrottle = (value: T) =>\n (throttled = innerFrom(durationSelector(value)).subscribe(createOperatorSubscriber(subscriber, endThrottling, cleanupThrottling)));\n\n const send = () => {\n if (hasValue) {\n // Ensure we clear out our value and hasValue flag\n // before we emit, otherwise reentrant code can cause\n // issues here.\n hasValue = false;\n const value = sendValue!;\n sendValue = null;\n // Emit the value.\n subscriber.next(value);\n !isComplete && startThrottle(value);\n }\n };\n\n source.subscribe(\n createOperatorSubscriber(\n subscriber,\n // Regarding the presence of throttled.closed in the following\n // conditions, if a synchronous duration selector is specified - weird,\n // but legal - an already-closed subscription will be assigned to\n // throttled, so the subscription's closed property needs to be checked,\n // too.\n (value) => {\n hasValue = true;\n sendValue = value;\n !(throttled && !throttled.closed) && (leading ? send() : startThrottle(value));\n },\n () => {\n isComplete = true;\n !(trailing && hasValue && throttled && !throttled.closed) && subscriber.complete();\n }\n )\n );\n });\n}\n", "import { asyncScheduler } from '../scheduler/async';\nimport { throttle, ThrottleConfig } from './throttle';\nimport { MonoTypeOperatorFunction, SchedulerLike } from '../types';\nimport { timer } from '../observable/timer';\n\n/**\n * Emits a value from the source Observable, then ignores subsequent source\n * values for `duration` milliseconds, then repeats this process.\n *\n * <span class=\"informal\">Lets a value pass, then ignores source values for the\n * next `duration` milliseconds.</span>\n *\n * ![](throttleTime.png)\n *\n * `throttleTime` emits the source Observable values on the output Observable\n * when its internal timer is disabled, and ignores source values when the timer\n * is enabled. Initially, the timer is disabled. As soon as the first source\n * value arrives, it is forwarded to the output Observable, and then the timer\n * is enabled. After `duration` milliseconds (or the time unit determined\n * internally by the optional `scheduler`) has passed, the timer is disabled,\n * and this process repeats for the next source value. Optionally takes a\n * {@link SchedulerLike} for managing timers.\n *\n * ## Examples\n *\n * ### Limit click rate\n *\n * Emit clicks at a rate of at most one click per second\n *\n * ```ts\n * import { fromEvent, throttleTime } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const result = clicks.pipe(throttleTime(1000));\n *\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link auditTime}\n * @see {@link debounceTime}\n * @see {@link delay}\n * @see {@link sampleTime}\n * @see {@link throttle}\n *\n * @param duration Time to wait before emitting another value after\n * emitting the last value, measured in milliseconds or the time unit determined\n * internally by the optional `scheduler`.\n * @param scheduler The {@link SchedulerLike} to use for\n * managing the timers that handle the throttling. Defaults to {@link asyncScheduler}.\n * @param config A configuration object to define `leading` and\n * `trailing` behavior. Defaults to `{ leading: true, trailing: false }`.\n * @return A function that returns an Observable that performs the throttle\n * operation to limit the rate of emissions from the source.\n */\nexport function throttleTime<T>(\n duration: number,\n scheduler: SchedulerLike = asyncScheduler,\n config?: ThrottleConfig\n): MonoTypeOperatorFunction<T> {\n const duration$ = timer(duration, scheduler);\n return throttle(() => duration$, config);\n}\n", "import { OperatorFunction, ObservableInputTuple } from '../types';\nimport { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\nimport { innerFrom } from '../observable/innerFrom';\nimport { identity } from '../util/identity';\nimport { noop } from '../util/noop';\nimport { popResultSelector } from '../util/args';\n\nexport function withLatestFrom<T, O extends unknown[]>(...inputs: [...ObservableInputTuple<O>]): OperatorFunction<T, [T, ...O]>;\n\nexport function withLatestFrom<T, O extends unknown[], R>(\n ...inputs: [...ObservableInputTuple<O>, (...value: [T, ...O]) => R]\n): OperatorFunction<T, R>;\n\n/**\n * Combines the source Observable with other Observables to create an Observable\n * whose values are calculated from the latest values of each, only when the\n * source emits.\n *\n * <span class=\"informal\">Whenever the source Observable emits a value, it\n * computes a formula using that value plus the latest values from other input\n * Observables, then emits the output of that formula.</span>\n *\n * ![](withLatestFrom.png)\n *\n * `withLatestFrom` combines each value from the source Observable (the\n * instance) with the latest values from the other input Observables only when\n * the source emits a value, optionally using a `project` function to determine\n * the value to be emitted on the output Observable. All input Observables must\n * emit at least one value before the output Observable will emit a value.\n *\n * ## Example\n *\n * On every click event, emit an array with the latest timer event plus the click event\n *\n * ```ts\n * import { fromEvent, interval, withLatestFrom } from 'rxjs';\n *\n * const clicks = fromEvent(document, 'click');\n * const timer = interval(1000);\n * const result = clicks.pipe(withLatestFrom(timer));\n * result.subscribe(x => console.log(x));\n * ```\n *\n * @see {@link combineLatest}\n *\n * @param {ObservableInput} other An input Observable to combine with the source\n * Observable. More than one input Observables may be given as argument.\n * @param {Function} [project] Projection function for combining values\n * together. Receives all values in order of the Observables passed, where the\n * first parameter is a value from the source Observable. (e.g.\n * `a.pipe(withLatestFrom(b, c), map(([a1, b1, c1]) => a1 + b1 + c1))`). If this is not\n * passed, arrays will be emitted on the output Observable.\n * @return A function that returns an Observable of projected values from the\n * most recent values from each input Observable, or an array of the most\n * recent values from each input Observable.\n */\nexport function withLatestFrom<T, R>(...inputs: any[]): OperatorFunction<T, R | any[]> {\n const project = popResultSelector(inputs) as ((...args: any[]) => R) | undefined;\n\n return operate((source, subscriber) => {\n const len = inputs.length;\n const otherValues = new Array(len);\n // An array of whether or not the other sources have emitted. Matched with them by index.\n // TODO: At somepoint, we should investigate the performance implications here, and look\n // into using a `Set()` and checking the `size` to see if we're ready.\n let hasValue = inputs.map(() => false);\n // Flipped true when we have at least one value from all other sources and\n // we are ready to start emitting values.\n let ready = false;\n\n // Other sources. Note that here we are not checking `subscriber.closed`,\n // this causes all inputs to be subscribed to, even if nothing can be emitted\n // from them. This is an important distinction because subscription constitutes\n // a side-effect.\n for (let i = 0; i < len; i++) {\n innerFrom(inputs[i]).subscribe(\n createOperatorSubscriber(\n subscriber,\n (value) => {\n otherValues[i] = value;\n if (!ready && !hasValue[i]) {\n // If we're not ready yet, flag to show this observable has emitted.\n hasValue[i] = true;\n // Intentionally terse code.\n // If all of our other observables have emitted, set `ready` to `true`,\n // so we know we can start emitting values, then clean up the `hasValue` array,\n // because we don't need it anymore.\n (ready = hasValue.every(identity)) && (hasValue = null!);\n }\n },\n // Completing one of the other sources has\n // no bearing on the completion of our result.\n noop\n )\n );\n }\n\n // Source subscription\n source.subscribe(\n createOperatorSubscriber(subscriber, (value) => {\n if (ready) {\n // We have at least one value from the other sources. Go ahead and emit.\n const values = [value, ...otherValues];\n subscriber.next(project ? project(...values) : values);\n }\n })\n );\n });\n}\n", "import { zip as zipStatic } from '../observable/zip';\nimport { ObservableInput, ObservableInputTuple, OperatorFunction, Cons } from '../types';\nimport { operate } from '../util/lift';\n\n/** @deprecated Replaced with {@link zipWith}. Will be removed in v8. */\nexport function zip<T, A extends readonly unknown[]>(otherInputs: [...ObservableInputTuple<A>]): OperatorFunction<T, Cons<T, A>>;\n/** @deprecated Replaced with {@link zipWith}. Will be removed in v8. */\nexport function zip<T, A extends readonly unknown[], R>(\n otherInputsAndProject: [...ObservableInputTuple<A>],\n project: (...values: Cons<T, A>) => R\n): OperatorFunction<T, R>;\n/** @deprecated Replaced with {@link zipWith}. Will be removed in v8. */\nexport function zip<T, A extends readonly unknown[]>(...otherInputs: [...ObservableInputTuple<A>]): OperatorFunction<T, Cons<T, A>>;\n/** @deprecated Replaced with {@link zipWith}. Will be removed in v8. */\nexport function zip<T, A extends readonly unknown[], R>(\n ...otherInputsAndProject: [...ObservableInputTuple<A>, (...values: Cons<T, A>) => R]\n): OperatorFunction<T, R>;\n\n/**\n * @deprecated Replaced with {@link zipWith}. Will be removed in v8.\n */\nexport function zip<T, R>(...sources: Array<ObservableInput<any> | ((...values: Array<any>) => R)>): OperatorFunction<T, any> {\n return operate((source, subscriber) => {\n zipStatic(source as ObservableInput<any>, ...(sources as Array<ObservableInput<any>>)).subscribe(subscriber);\n });\n}\n", "import { ObservableInputTuple, OperatorFunction, Cons } from '../types';\nimport { zip } from './zip';\n\n/**\n * Subscribes to the source, and the observable inputs provided as arguments, and combines their values, by index, into arrays.\n *\n * What is meant by \"combine by index\": The first value from each will be made into a single array, then emitted,\n * then the second value from each will be combined into a single array and emitted, then the third value\n * from each will be combined into a single array and emitted, and so on.\n *\n * This will continue until it is no longer able to combine values of the same index into an array.\n *\n * After the last value from any one completed source is emitted in an array, the resulting observable will complete,\n * as there is no way to continue \"zipping\" values together by index.\n *\n * Use-cases for this operator are limited. There are memory concerns if one of the streams is emitting\n * values at a much faster rate than the others. Usage should likely be limited to streams that emit\n * at a similar pace, or finite streams of known length.\n *\n * In many cases, authors want `combineLatestWith` and not `zipWith`.\n *\n * @param otherInputs other observable inputs to collate values from.\n * @return A function that returns an Observable that emits items by index\n * combined from the source Observable and provided Observables, in form of an\n * array.\n */\nexport function zipWith<T, A extends readonly unknown[]>(...otherInputs: [...ObservableInputTuple<A>]): OperatorFunction<T, Cons<T, A>> {\n return zip(...otherInputs);\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n ReplaySubject,\n Subject,\n fromEvent\n} from \"rxjs\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch document\n *\n * Documents are implemented as subjects, so all downstream observables are\n * automatically updated when a new document is emitted.\n *\n * @returns Document subject\n */\nexport function watchDocument(): Subject<Document> {\n const document$ = new ReplaySubject<Document>(1)\n fromEvent(document, \"DOMContentLoaded\", { once: true })\n .subscribe(() => document$.next(document))\n\n /* Return document */\n return document$\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve all elements matching the query selector\n *\n * @template T - Element type\n *\n * @param selector - Query selector\n * @param node - Node of reference\n *\n * @returns Elements\n */\nexport function getElements<T extends keyof HTMLElementTagNameMap>(\n selector: T, node?: ParentNode\n): HTMLElementTagNameMap[T][]\n\nexport function getElements<T extends HTMLElement>(\n selector: string, node?: ParentNode\n): T[]\n\nexport function getElements<T extends HTMLElement>(\n selector: string, node: ParentNode = document\n): T[] {\n return Array.from(node.querySelectorAll<T>(selector))\n}\n\n/**\n * Retrieve an element matching a query selector or throw a reference error\n *\n * Note that this function assumes that the element is present. If unsure if an\n * element is existent, use the `getOptionalElement` function instead.\n *\n * @template T - Element type\n *\n * @param selector - Query selector\n * @param node - Node of reference\n *\n * @returns Element\n */\nexport function getElement<T extends keyof HTMLElementTagNameMap>(\n selector: T, node?: ParentNode\n): HTMLElementTagNameMap[T]\n\nexport function getElement<T extends HTMLElement>(\n selector: string, node?: ParentNode\n): T\n\nexport function getElement<T extends HTMLElement>(\n selector: string, node: ParentNode = document\n): T {\n const el = getOptionalElement<T>(selector, node)\n if (typeof el === \"undefined\")\n throw new ReferenceError(\n `Missing element: expected \"${selector}\" to be present`\n )\n\n /* Return element */\n return el\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Retrieve an optional element matching the query selector\n *\n * @template T - Element type\n *\n * @param selector - Query selector\n * @param node - Node of reference\n *\n * @returns Element or nothing\n */\nexport function getOptionalElement<T extends keyof HTMLElementTagNameMap>(\n selector: T, node?: ParentNode\n): HTMLElementTagNameMap[T] | undefined\n\nexport function getOptionalElement<T extends HTMLElement>(\n selector: string, node?: ParentNode\n): T | undefined\n\nexport function getOptionalElement<T extends HTMLElement>(\n selector: string, node: ParentNode = document\n): T | undefined {\n return node.querySelector<T>(selector) || undefined\n}\n\n/**\n * Retrieve the currently active element\n *\n * @returns Element or nothing\n */\nexport function getActiveElement(): HTMLElement | undefined {\n return (\n document.activeElement?.shadowRoot?.activeElement as HTMLElement ??\n document.activeElement as HTMLElement ??\n undefined\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n debounceTime,\n distinctUntilChanged,\n fromEvent,\n map,\n merge,\n shareReplay,\n startWith\n} from \"rxjs\"\n\nimport { getActiveElement } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Focus observable\n *\n * Previously, this observer used `focus` and `blur` events to determine whether\n * an element is focused, but this doesn't work if there are focusable elements\n * within the elements itself. A better solutions are `focusin` and `focusout`\n * events, which bubble up the tree and allow for more fine-grained control.\n *\n * `debounceTime` is necessary, because when a focus change happens inside an\n * element, the observable would first emit `false` and then `true` again.\n */\nconst observer$ = merge(\n fromEvent(document.body, \"focusin\"),\n fromEvent(document.body, \"focusout\")\n)\n .pipe(\n debounceTime(1),\n startWith(undefined),\n map(() => getActiveElement() || document.body),\n shareReplay(1)\n )\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch element focus\n *\n * @param el - Element\n *\n * @returns Element focus observable\n */\nexport function watchElementFocus(\n el: HTMLElement\n): Observable<boolean> {\n return observer$\n .pipe(\n map(active => el.contains(active)),\n distinctUntilChanged()\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n debounce,\n defer,\n fromEvent,\n identity,\n map,\n merge,\n startWith,\n timer\n} from \"rxjs\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch element hover\n *\n * The second parameter allows to specify a timeout in milliseconds after which\n * the hover state will be reset to `false`. This is useful for tooltips which\n * should disappear after a certain amount of time, in order to allow the user\n * to move the cursor from the host to the tooltip.\n *\n * @param el - Element\n * @param timeout - Timeout\n *\n * @returns Element hover observable\n */\nexport function watchElementHover(\n el: HTMLElement, timeout?: number\n): Observable<boolean> {\n return defer(() => merge(\n fromEvent(el, \"mouseenter\").pipe(map(() => true)),\n fromEvent(el, \"mouseleave\").pipe(map(() => false))\n )\n .pipe(\n timeout ? debounce(active => timer(+!active * timeout)) : identity,\n startWith(el.matches(\":hover\"))\n )\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { JSX as JSXInternal } from \"preact\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * HTML attributes\n */\ntype Attributes =\n & JSXInternal.HTMLAttributes\n & JSXInternal.SVGAttributes\n & Record<string, any>\n\n/**\n * Child element\n */\ntype Child =\n | ChildNode\n | HTMLElement\n | Text\n | string\n | number\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Append a child node to an element\n *\n * @param el - Element\n * @param child - Child node(s)\n */\nfunction appendChild(el: HTMLElement, child: Child | Child[]): void {\n\n /* Handle primitive types (including raw HTML) */\n if (typeof child === \"string\" || typeof child === \"number\") {\n el.innerHTML += child.toString()\n\n /* Handle nodes */\n } else if (child instanceof Node) {\n el.appendChild(child)\n\n /* Handle nested children */\n } else if (Array.isArray(child)) {\n for (const node of child)\n appendChild(el, node)\n }\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * JSX factory\n *\n * @template T - Element type\n *\n * @param tag - HTML tag\n * @param attributes - HTML attributes\n * @param children - Child elements\n *\n * @returns Element\n */\nexport function h<T extends keyof HTMLElementTagNameMap>(\n tag: T, attributes?: Attributes | null, ...children: Child[]\n): HTMLElementTagNameMap[T]\n\nexport function h<T extends h.JSX.Element>(\n tag: string, attributes?: Attributes | null, ...children: Child[]\n): T\n\nexport function h<T extends h.JSX.Element>(\n tag: string, attributes?: Attributes | null, ...children: Child[]\n): T {\n const el = document.createElement(tag)\n\n /* Set attributes, if any */\n if (attributes)\n for (const attr of Object.keys(attributes)) {\n if (typeof attributes[attr] === \"undefined\")\n continue\n\n /* Set default attribute or boolean */\n if (typeof attributes[attr] !== \"boolean\")\n el.setAttribute(attr, attributes[attr])\n else\n el.setAttribute(attr, \"\")\n }\n\n /* Append child nodes */\n for (const child of children)\n appendChild(el, child)\n\n /* Return element */\n return el as T\n}\n\n/* ----------------------------------------------------------------------------\n * Namespace\n * ------------------------------------------------------------------------- */\n\nexport declare namespace h {\n namespace JSX {\n type Element = HTMLElement\n type IntrinsicElements = JSXInternal.IntrinsicElements\n }\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Round a number for display with repository facts\n *\n * This is a reverse-engineered version of GitHub's weird rounding algorithm\n * for stars, forks and all other numbers. While all numbers below `1,000` are\n * returned as-is, bigger numbers are converted to fixed numbers:\n *\n * - `1,049` => `1k`\n * - `1,050` => `1.1k`\n * - `1,949` => `1.9k`\n * - `1,950` => `2k`\n *\n * @param value - Original value\n *\n * @returns Rounded value\n */\nexport function round(value: number): string {\n if (value > 999) {\n const digits = +((value - 950) % 1000 > 99)\n return `${((value + 0.000001) / 1000).toFixed(digits)}k`\n } else {\n return value.toString()\n }\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n defer,\n finalize,\n fromEvent,\n map,\n merge,\n switchMap,\n take,\n throwError\n} from \"rxjs\"\n\nimport { h } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Create and load a `script` element\n *\n * This function returns an observable that will emit when the script was\n * successfully loaded, or throw an error if it wasn't.\n *\n * @param src - Script URL\n *\n * @returns Script observable\n */\nexport function watchScript(src: string): Observable<void> {\n const script = h(\"script\", { src })\n return defer(() => {\n document.head.appendChild(script)\n return merge(\n fromEvent(script, \"load\"),\n fromEvent(script, \"error\")\n .pipe(\n switchMap(() => (\n throwError(() => new ReferenceError(`Invalid script: ${src}`))\n ))\n )\n )\n .pipe(\n map(() => undefined),\n finalize(() => document.head.removeChild(script)),\n take(1)\n )\n })\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n NEVER,\n Observable,\n Subject,\n defer,\n filter,\n finalize,\n map,\n merge,\n of,\n shareReplay,\n startWith,\n switchMap,\n tap\n} from \"rxjs\"\n\nimport { watchScript } from \"../../../script\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Element offset\n */\nexport interface ElementSize {\n width: number /* Element width */\n height: number /* Element height */\n}\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Resize observer entry subject\n */\nconst entry$ = new Subject<ResizeObserverEntry>()\n\n/**\n * Resize observer observable\n *\n * This observable will create a `ResizeObserver` on the first subscription\n * and will automatically terminate it when there are no more subscribers.\n * It's quite important to centralize observation in a single `ResizeObserver`,\n * as the performance difference can be quite dramatic, as the link shows.\n *\n * If the browser doesn't have a `ResizeObserver` implementation available, a\n * polyfill is automatically downloaded from unpkg.com. This is also compatible\n * with the built-in privacy plugin, which will download the polyfill and put\n * it alongside the built site for self-hosting.\n *\n * @see https://bit.ly/3iIYfEm - Google Groups on performance\n */\nconst observer$ = defer(() => (\n typeof ResizeObserver === \"undefined\"\n ? watchScript(\"https://unpkg.com/resize-observer-polyfill\")\n : of(undefined)\n))\n .pipe(\n map(() => new ResizeObserver(entries => (\n entries.forEach(entry => entry$.next(entry))\n ))),\n switchMap(observer => merge(NEVER, of(observer)).pipe(\n finalize(() => observer.disconnect())\n )),\n shareReplay(1)\n )\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve element size\n *\n * @param el - Element\n *\n * @returns Element size\n */\nexport function getElementSize(\n el: HTMLElement\n): ElementSize {\n return {\n width: el.offsetWidth,\n height: el.offsetHeight\n }\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch element size\n *\n * This function returns an observable that subscribes to a single internal\n * instance of `ResizeObserver` upon subscription, and emit resize events until\n * termination. Note that this function should not be called with the same\n * element twice, as the first unsubscription will terminate observation.\n *\n * Sadly, we can't use the `DOMRect` objects returned by the observer, because\n * we need the emitted values to be consistent with `getElementSize`, which will\n * return the used values (rounded) and not actual values (unrounded). Thus, we\n * use the `offset*` properties. See the linked GitHub issue.\n *\n * @see https://bit.ly/3m0k3he - GitHub issue\n *\n * @param el - Element\n *\n * @returns Element size observable\n */\nexport function watchElementSize(\n el: HTMLElement\n): Observable<ElementSize> {\n\n // Compute target element - since inline elements cannot be observed by the\n // current `ResizeObserver` implementation as provided by browsers, we need\n // to determine the first containing parent element and use that one as a\n // target, while we always compute the actual size from the element.\n let target = el\n while (target.clientWidth === 0)\n if (target.parentElement)\n target = target.parentElement\n else\n break\n\n // Observe target element and recompute element size on resize - as described\n // above, the target element is not necessarily the element of interest\n return observer$.pipe(\n tap(observer => observer.observe(target)),\n switchMap(observer => entry$.pipe(\n filter(entry => entry.target === target),\n finalize(() => observer.unobserve(target))\n )),\n map(() => getElementSize(el)),\n startWith(getElementSize(el))\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { ElementSize } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve element content size (= scroll width and height)\n *\n * @param el - Element\n *\n * @returns Element content size\n */\nexport function getElementContentSize(\n el: HTMLElement\n): ElementSize {\n return {\n width: el.scrollWidth,\n height: el.scrollHeight\n }\n}\n\n/**\n * Retrieve the overflowing container of an element, if any\n *\n * @param el - Element\n *\n * @returns Overflowing container or nothing\n */\nexport function getElementContainer(\n el: HTMLElement\n): HTMLElement | undefined {\n let parent = el.parentElement\n while (parent)\n if (\n el.scrollWidth <= parent.scrollWidth &&\n el.scrollHeight <= parent.scrollHeight\n )\n parent = (el = parent).parentElement\n else\n break\n\n /* Return overflowing container */\n return parent ? el : undefined\n}\n\n/**\n * Retrieve all overflowing containers of an element, if any\n *\n * Note that this function has a slightly different behavior, so we should at\n * some point consider refactoring how overflowing containers are handled.\n *\n * @param el - Element\n *\n * @returns Overflowing containers\n */\nexport function getElementContainers(\n el: HTMLElement\n): HTMLElement[] {\n const containers: HTMLElement[] = []\n\n // Walk up the DOM tree until we find an overflowing container\n let parent = el.parentElement\n while (parent) {\n if (\n el.clientWidth > parent.clientWidth ||\n el.clientHeight > parent.clientHeight\n )\n containers.push(parent)\n\n // Continue with parent element\n parent = (el = parent).parentElement\n }\n\n // If the page is short, the body might not be overflowing and there might be\n // no other containers, which is why we need to make sure the body is present\n if (containers.length === 0)\n containers.push(document.documentElement)\n\n // Return overflowing containers\n return containers\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n animationFrameScheduler,\n auditTime,\n fromEvent,\n map,\n merge,\n startWith\n} from \"rxjs\"\n\nimport { watchElementSize } from \"../../size\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Element offset\n */\nexport interface ElementOffset {\n x: number /* Horizontal offset */\n y: number /* Vertical offset */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve element offset\n *\n * @param el - Element\n *\n * @returns Element offset\n */\nexport function getElementOffset(\n el: HTMLElement\n): ElementOffset {\n return {\n x: el.offsetLeft,\n y: el.offsetTop\n }\n}\n\n/**\n * Retrieve absolute element offset\n *\n * @param el - Element\n *\n * @returns Element offset\n */\nexport function getElementOffsetAbsolute(\n el: HTMLElement\n): ElementOffset {\n const rect = el.getBoundingClientRect()\n return {\n x: rect.x + window.scrollX,\n y: rect.y + window.scrollY\n }\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch element offset\n *\n * @param el - Element\n *\n * @returns Element offset observable\n */\nexport function watchElementOffset(\n el: HTMLElement\n): Observable<ElementOffset> {\n return merge(\n fromEvent(window, \"load\"),\n fromEvent(window, \"resize\")\n )\n .pipe(\n auditTime(0, animationFrameScheduler),\n map(() => getElementOffset(el)),\n startWith(getElementOffset(el))\n )\n}\n\n/**\n * Watch absolute element offset\n *\n * @param el - Element\n *\n * @returns Element offset observable\n */\nexport function watchElementOffsetAbsolute(\n el: HTMLElement\n): Observable<ElementOffset> {\n return merge(\n watchElementOffset(el),\n watchElementSize(document.body) // @todo find a better way for this\n )\n .pipe(\n map(() => getElementOffsetAbsolute(el)),\n startWith(getElementOffsetAbsolute(el))\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n animationFrameScheduler,\n auditTime,\n fromEvent,\n map,\n merge,\n startWith\n} from \"rxjs\"\n\nimport { ElementOffset } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve element content offset (= scroll offset)\n *\n * @param el - Element\n *\n * @returns Element content offset\n */\nexport function getElementContentOffset(\n el: HTMLElement\n): ElementOffset {\n return {\n x: el.scrollLeft,\n y: el.scrollTop\n }\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch element content offset\n *\n * @param el - Element\n *\n * @returns Element content offset observable\n */\nexport function watchElementContentOffset(\n el: HTMLElement\n): Observable<ElementOffset> {\n return merge(\n fromEvent(el, \"scroll\"),\n fromEvent(window, \"scroll\"),\n fromEvent(window, \"resize\")\n )\n .pipe(\n auditTime(0, animationFrameScheduler),\n map(() => getElementContentOffset(el)),\n startWith(getElementContentOffset(el))\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n NEVER,\n Observable,\n Subject,\n defer,\n distinctUntilChanged,\n filter,\n finalize,\n map,\n merge,\n of,\n shareReplay,\n switchMap,\n tap\n} from \"rxjs\"\n\nimport {\n getElementContentSize,\n getElementSize,\n watchElementContentOffset\n} from \"~/browser\"\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Intersection observer entry subject\n */\nconst entry$ = new Subject<IntersectionObserverEntry>()\n\n/**\n * Intersection observer observable\n *\n * This observable will create an `IntersectionObserver` on first subscription\n * and will automatically terminate it when there are no more subscribers.\n *\n * @see https://bit.ly/3iIYfEm - Google Groups on performance\n */\nconst observer$ = defer(() => of(\n new IntersectionObserver(entries => {\n for (const entry of entries)\n entry$.next(entry)\n }, {\n threshold: 0\n })\n))\n .pipe(\n switchMap(observer => merge(NEVER, of(observer))\n .pipe(\n finalize(() => observer.disconnect())\n )\n ),\n shareReplay(1)\n )\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch element visibility\n *\n * @param el - Element\n *\n * @returns Element visibility observable\n */\nexport function watchElementVisibility(\n el: HTMLElement\n): Observable<boolean> {\n return observer$\n .pipe(\n tap(observer => observer.observe(el)),\n switchMap(observer => entry$\n .pipe(\n filter(({ target }) => target === el),\n finalize(() => observer.unobserve(el)),\n map(({ isIntersecting }) => isIntersecting)\n )\n )\n )\n}\n\n/**\n * Watch element boundary\n *\n * This function returns an observable which emits whether the bottom content\n * boundary (= scroll offset) of an element is within a certain threshold.\n *\n * @param el - Element\n * @param threshold - Threshold\n *\n * @returns Element boundary observable\n */\nexport function watchElementBoundary(\n el: HTMLElement, threshold = 16\n): Observable<boolean> {\n return watchElementContentOffset(el)\n .pipe(\n map(({ y }) => {\n const visible = getElementSize(el)\n const content = getElementContentSize(el)\n return y >= (\n content.height - visible.height - threshold\n )\n }),\n distinctUntilChanged()\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n fromEvent,\n map,\n startWith\n} from \"rxjs\"\n\nimport { getElement } from \"../element\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Toggle\n */\nexport type Toggle =\n | \"drawer\" /* Toggle for drawer */\n | \"search\" /* Toggle for search */\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Toggle map\n */\nconst toggles: Record<Toggle, HTMLInputElement> = {\n drawer: getElement(\"[data-md-toggle=drawer]\"),\n search: getElement(\"[data-md-toggle=search]\")\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve the value of a toggle\n *\n * @param name - Toggle\n *\n * @returns Toggle value\n */\nexport function getToggle(name: Toggle): boolean {\n return toggles[name].checked\n}\n\n/**\n * Set toggle\n *\n * Simulating a click event seems to be the most cross-browser compatible way\n * of changing the value while also emitting a `change` event. Before, Material\n * used `CustomEvent` to programmatically change the value of a toggle, but this\n * is a much simpler and cleaner solution which doesn't require a polyfill.\n *\n * @param name - Toggle\n * @param value - Toggle value\n */\nexport function setToggle(name: Toggle, value: boolean): void {\n if (toggles[name].checked !== value)\n toggles[name].click()\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch toggle\n *\n * @param name - Toggle\n *\n * @returns Toggle value observable\n */\nexport function watchToggle(name: Toggle): Observable<boolean> {\n const el = toggles[name]\n return fromEvent(el, \"change\")\n .pipe(\n map(() => el.checked),\n startWith(el.checked)\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n EMPTY,\n Observable,\n filter,\n fromEvent,\n map,\n merge,\n share,\n startWith,\n switchMap\n} from \"rxjs\"\n\nimport { getActiveElement } from \"../element\"\nimport { getToggle } from \"../toggle\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Keyboard mode\n */\nexport type KeyboardMode =\n | \"global\" /* Global */\n | \"search\" /* Search is open */\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Keyboard\n */\nexport interface Keyboard {\n mode: KeyboardMode /* Keyboard mode */\n type: string /* Key type */\n claim(): void /* Key claim */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Check whether an element may receive keyboard input\n *\n * @param el - Element\n * @param type - Key type\n *\n * @returns Test result\n */\nfunction isSusceptibleToKeyboard(\n el: HTMLElement, type: string\n): boolean {\n switch (el.constructor) {\n\n /* Input elements */\n case HTMLInputElement:\n /* @ts-expect-error - omit unnecessary type cast */\n if (el.type === \"radio\")\n return /^Arrow/.test(type)\n else\n return true\n\n /* Select element and textarea */\n case HTMLSelectElement:\n case HTMLTextAreaElement:\n return true\n\n /* Everything else */\n default:\n return el.isContentEditable\n }\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch composition events\n *\n * @returns Composition observable\n */\nexport function watchComposition(): Observable<boolean> {\n return merge(\n fromEvent(window, \"compositionstart\").pipe(map(() => true)),\n fromEvent(window, \"compositionend\").pipe(map(() => false))\n )\n .pipe(\n startWith(false)\n )\n}\n\n/**\n * Watch keyboard\n *\n * @returns Keyboard observable\n */\nexport function watchKeyboard(): Observable<Keyboard> {\n const keyboard$ = fromEvent<KeyboardEvent>(window, \"keydown\")\n .pipe(\n filter(ev => !(ev.metaKey || ev.ctrlKey)),\n map(ev => ({\n mode: getToggle(\"search\") ? \"search\" : \"global\",\n type: ev.key,\n claim() {\n ev.preventDefault()\n ev.stopPropagation()\n }\n } as Keyboard)),\n filter(({ mode, type }) => {\n if (mode === \"global\") {\n const active = getActiveElement()\n if (typeof active !== \"undefined\")\n return !isSusceptibleToKeyboard(active, type)\n }\n return true\n }),\n share()\n )\n\n /* Don't emit during composition events - see https://bit.ly/3te3Wl8 */\n return watchComposition()\n .pipe(\n switchMap(active => !active ? keyboard$ : EMPTY)\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Subject } from \"rxjs\"\n\nimport { feature } from \"~/_\"\nimport { h } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve location\n *\n * This function returns a `URL` object (and not `Location`) to normalize the\n * typings across the application. Furthermore, locations need to be tracked\n * without setting them and `Location` is a singleton which represents the\n * current location.\n *\n * @returns URL\n */\nexport function getLocation(): URL {\n return new URL(location.href)\n}\n\n/**\n * Set location\n *\n * If instant navigation is enabled, this function creates a temporary anchor\n * element, sets the `href` attribute, appends it to the body, clicks it, and\n * then removes it again. The event will bubble up the DOM and trigger be\n * intercepted by the instant loading business logic.\n *\n * Note that we must append and remove the anchor element, or the event will\n * not bubble up the DOM, making it impossible to intercept it.\n *\n * @param url - URL to navigate to\n * @param navigate - Force navigation\n */\nexport function setLocation(\n url: URL | HTMLLinkElement, navigate = false\n): void {\n if (feature(\"navigation.instant\") && !navigate) {\n const el = h(\"a\", { href: url.href })\n document.body.appendChild(el)\n el.click()\n el.remove()\n\n // If we're not using instant navigation, and the page should not be reloaded\n // just instruct the browser to navigate to the given URL\n } else {\n location.href = url.href\n }\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch location\n *\n * @returns Location subject\n */\nexport function watchLocation(): Subject<URL> {\n return new Subject<URL>()\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n filter,\n fromEvent,\n map,\n merge,\n shareReplay,\n startWith\n} from \"rxjs\"\n\nimport { getOptionalElement } from \"~/browser\"\nimport { h } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve location hash\n *\n * @returns Location hash\n */\nexport function getLocationHash(): string {\n return location.hash.slice(1)\n}\n\n/**\n * Set location hash\n *\n * Setting a new fragment identifier via `location.hash` will have no effect\n * if the value doesn't change. When a new fragment identifier is set, we want\n * the browser to target the respective element at all times, which is why we\n * use this dirty little trick.\n *\n * @param hash - Location hash\n */\nexport function setLocationHash(hash: string): void {\n const el = h(\"a\", { href: hash })\n el.addEventListener(\"click\", ev => ev.stopPropagation())\n el.click()\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch location hash\n *\n * @param location$ - Location observable\n *\n * @returns Location hash observable\n */\nexport function watchLocationHash(\n location$: Observable<URL>\n): Observable<string> {\n return merge(\n fromEvent<HashChangeEvent>(window, \"hashchange\"),\n location$\n )\n .pipe(\n map(getLocationHash),\n startWith(getLocationHash()),\n filter(hash => hash.length > 0),\n shareReplay(1)\n )\n}\n\n/**\n * Watch location target\n *\n * @param location$ - Location observable\n *\n * @returns Location target observable\n */\nexport function watchLocationTarget(\n location$: Observable<URL>\n): Observable<HTMLElement> {\n return watchLocationHash(location$)\n .pipe(\n map(id => getOptionalElement(`[id=\"${id}\"]`)!),\n filter(el => typeof el !== \"undefined\")\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n EMPTY,\n Observable,\n fromEvent,\n fromEventPattern,\n map,\n merge,\n startWith,\n switchMap\n} from \"rxjs\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch media query\n *\n * Note that although `MediaQueryList.addListener` is deprecated we have to\n * use it, because it's the only way to ensure proper downward compatibility.\n *\n * @see https://bit.ly/3dUBH2m - GitHub issue\n *\n * @param query - Media query\n *\n * @returns Media observable\n */\nexport function watchMedia(query: string): Observable<boolean> {\n const media = matchMedia(query)\n return fromEventPattern<boolean>(next => (\n media.addListener(() => next(media.matches))\n ))\n .pipe(\n startWith(media.matches)\n )\n}\n\n/**\n * Watch print mode\n *\n * @returns Print observable\n */\nexport function watchPrint(): Observable<boolean> {\n const media = matchMedia(\"print\")\n return merge(\n fromEvent(window, \"beforeprint\").pipe(map(() => true)),\n fromEvent(window, \"afterprint\").pipe(map(() => false))\n )\n .pipe(\n startWith(media.matches)\n )\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Toggle an observable with a media observable\n *\n * @template T - Data type\n *\n * @param query$ - Media observable\n * @param factory - Observable factory\n *\n * @returns Toggled observable\n */\nexport function at<T>(\n query$: Observable<boolean>, factory: () => Observable<T>\n): Observable<T> {\n return query$\n .pipe(\n switchMap(active => active ? factory() : EMPTY)\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n Subject,\n map,\n shareReplay,\n switchMap\n} from \"rxjs\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Options\n */\ninterface Options {\n progress$?: Subject<number> // Progress subject\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Fetch the given URL\n *\n * This function returns an observable that emits the response as a blob and\n * completes, or emits an error if the request failed. The caller can cancel\n * the request by unsubscribing at any time, which will automatically abort\n * the inflight request and complete the observable.\n *\n * Note that we use `XMLHTTPRequest` not because we're nostalgic, but because\n * it's the only way to get progress events for downloads and also allow for\n * cancellation of requests, as the official Fetch API does not support this\n * yet, even though we're already in 2024.\n *\n * @param url - Request URL\n * @param options - Options\n *\n * @returns Data observable\n */\nexport function request(\n url: URL | string, options?: Options\n): Observable<Blob> {\n return new Observable<Blob>(observer => {\n const req = new XMLHttpRequest()\n req.open(\"GET\", `${url}`)\n req.responseType = \"blob\"\n\n // Handle response\n req.addEventListener(\"load\", () => {\n if (req.status >= 200 && req.status < 300) {\n observer.next(req.response)\n observer.complete()\n\n // Every response that is not in the 2xx range is considered an error\n } else {\n observer.error(new Error(req.statusText))\n }\n })\n\n // Handle network errors\n req.addEventListener(\"error\", () => {\n observer.error(new Error(\"Network error\"))\n })\n\n // Handle aborted requests\n req.addEventListener(\"abort\", () => {\n observer.complete()\n })\n\n // Handle download progress\n if (typeof options?.progress$ !== \"undefined\") {\n req.addEventListener(\"progress\", event => {\n if (event.lengthComputable) {\n options.progress$!.next((event.loaded / event.total) * 100)\n\n // Hack: Chromium doesn't report the total number of bytes if content\n // is compressed, so we need this fallback - see https://t.ly/ZXofI\n } else {\n const length = req.getResponseHeader(\"Content-Length\") ?? 0\n options.progress$!.next((event.loaded / +length) * 100)\n }\n })\n\n // Immediately set progress to 5% to indicate that we're loading\n options.progress$.next(5)\n }\n\n // Send request and automatically abort request upon unsubscription\n req.send()\n return () => req.abort()\n })\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Fetch JSON from the given URL\n *\n * @template T - Data type\n *\n * @param url - Request URL\n * @param options - Options\n *\n * @returns Data observable\n */\nexport function requestJSON<T>(\n url: URL | string, options?: Options\n): Observable<T> {\n return request(url, options)\n .pipe(\n switchMap(res => res.text()),\n map(body => JSON.parse(body) as T),\n shareReplay(1)\n )\n}\n\n/**\n * Fetch HTML from the given URL\n *\n * @param url - Request URL\n * @param options - Options\n *\n * @returns Data observable\n */\nexport function requestHTML(\n url: URL | string, options?: Options\n): Observable<Document> {\n const dom = new DOMParser()\n return request(url, options)\n .pipe(\n switchMap(res => res.text()),\n map(res => dom.parseFromString(res, \"text/html\")),\n shareReplay(1)\n )\n}\n\n/**\n * Fetch XML from the given URL\n *\n * @param url - Request URL\n * @param options - Options\n *\n * @returns Data observable\n */\nexport function requestXML(\n url: URL | string, options?: Options\n): Observable<Document> {\n const dom = new DOMParser()\n return request(url, options)\n .pipe(\n switchMap(res => res.text()),\n map(res => dom.parseFromString(res, \"text/xml\")),\n shareReplay(1)\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n fromEvent,\n map,\n merge,\n startWith\n} from \"rxjs\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Viewport offset\n */\nexport interface ViewportOffset {\n x: number /* Horizontal offset */\n y: number /* Vertical offset */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve viewport offset\n *\n * On iOS Safari, viewport offset can be negative due to overflow scrolling.\n * As this may induce strange behaviors downstream, we'll just limit it to 0.\n *\n * @returns Viewport offset\n */\nexport function getViewportOffset(): ViewportOffset {\n return {\n x: Math.max(0, scrollX),\n y: Math.max(0, scrollY)\n }\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch viewport offset\n *\n * @returns Viewport offset observable\n */\nexport function watchViewportOffset(): Observable<ViewportOffset> {\n return merge(\n fromEvent(window, \"scroll\", { passive: true }),\n fromEvent(window, \"resize\", { passive: true })\n )\n .pipe(\n map(getViewportOffset),\n startWith(getViewportOffset())\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n fromEvent,\n map,\n startWith\n} from \"rxjs\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Viewport size\n */\nexport interface ViewportSize {\n width: number /* Viewport width */\n height: number /* Viewport height */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve viewport size\n *\n * @returns Viewport size\n */\nexport function getViewportSize(): ViewportSize {\n return {\n width: innerWidth,\n height: innerHeight\n }\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch viewport size\n *\n * @returns Viewport size observable\n */\nexport function watchViewportSize(): Observable<ViewportSize> {\n return fromEvent(window, \"resize\", { passive: true })\n .pipe(\n map(getViewportSize),\n startWith(getViewportSize())\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n combineLatest,\n map,\n shareReplay\n} from \"rxjs\"\n\nimport {\n ViewportOffset,\n watchViewportOffset\n} from \"../offset\"\nimport {\n ViewportSize,\n watchViewportSize\n} from \"../size\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Viewport\n */\nexport interface Viewport {\n offset: ViewportOffset /* Viewport offset */\n size: ViewportSize /* Viewport size */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch viewport\n *\n * @returns Viewport observable\n */\nexport function watchViewport(): Observable<Viewport> {\n return combineLatest([\n watchViewportOffset(),\n watchViewportSize()\n ])\n .pipe(\n map(([offset, size]) => ({ offset, size })),\n shareReplay(1)\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n combineLatest,\n distinctUntilKeyChanged,\n map\n} from \"rxjs\"\n\nimport { Header } from \"~/components\"\n\nimport { getElementOffset } from \"../../element\"\nimport { Viewport } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n viewport$: Observable<Viewport> /* Viewport observable */\n header$: Observable<Header> /* Header observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch viewport relative to element\n *\n * @param el - Element\n * @param options - Options\n *\n * @returns Viewport observable\n */\nexport function watchViewportAt(\n el: HTMLElement, { viewport$, header$ }: WatchOptions\n): Observable<Viewport> {\n const size$ = viewport$\n .pipe(\n distinctUntilKeyChanged(\"size\")\n )\n\n /* Compute element offset */\n const offset$ = combineLatest([size$, header$])\n .pipe(\n map(() => getElementOffset(el))\n )\n\n /* Compute relative viewport, return hot observable */\n return combineLatest([header$, viewport$, offset$])\n .pipe(\n map(([{ height }, { offset, size }, { x, y }]) => ({\n offset: {\n x: offset.x - x,\n y: offset.y - y + height\n },\n size\n }))\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n Subject,\n endWith,\n fromEvent,\n ignoreElements,\n mergeWith,\n share,\n takeUntil\n} from \"rxjs\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Worker message\n */\nexport interface WorkerMessage {\n type: unknown /* Message type */\n data?: unknown /* Message data */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Create an observable for receiving from a web worker\n *\n * @template T - Data type\n *\n * @param worker - Web worker\n *\n * @returns Message observable\n */\nfunction recv<T>(worker: Worker): Observable<T> {\n return fromEvent<MessageEvent<T>, T>(worker, \"message\", ev => ev.data)\n}\n\n/**\n * Create a subject for sending to a web worker\n *\n * @template T - Data type\n *\n * @param worker - Web worker\n *\n * @returns Message subject\n */\nfunction send<T>(worker: Worker): Subject<T> {\n const send$ = new Subject<T>()\n send$.subscribe(data => worker.postMessage(data))\n\n /* Return message subject */\n return send$\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Create a bidirectional communication channel to a web worker\n *\n * @template T - Data type\n *\n * @param url - Worker URL\n * @param worker - Worker\n *\n * @returns Worker subject\n */\nexport function watchWorker<T extends WorkerMessage>(\n url: string, worker = new Worker(url)\n): Subject<T> {\n const recv$ = recv<T>(worker)\n const send$ = send<T>(worker)\n\n /* Create worker subject and forward messages */\n const worker$ = new Subject<T>()\n worker$.subscribe(send$)\n\n /* Return worker subject */\n const done$ = send$.pipe(ignoreElements(), endWith(true))\n return worker$\n .pipe(\n ignoreElements(),\n mergeWith(recv$.pipe(takeUntil(done$))),\n share()\n ) as Subject<T>\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { getElement, getLocation } from \"~/browser\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Feature flag\n */\nexport type Flag =\n | \"announce.dismiss\" /* Dismissable announcement bar */\n | \"content.code.annotate\" /* Code annotations */\n | \"content.code.copy\" /* Code copy button */\n | \"content.lazy\" /* Lazy content elements */\n | \"content.tabs.link\" /* Link content tabs */\n | \"content.tooltips\" /* Tooltips */\n | \"header.autohide\" /* Hide header */\n | \"navigation.expand\" /* Automatic expansion */\n | \"navigation.indexes\" /* Section pages */\n | \"navigation.instant\" /* Instant navigation */\n | \"navigation.instant.progress\" /* Instant navigation progress */\n | \"navigation.sections\" /* Section navigation */\n | \"navigation.tabs\" /* Tabs navigation */\n | \"navigation.tabs.sticky\" /* Tabs navigation (sticky) */\n | \"navigation.top\" /* Back-to-top button */\n | \"navigation.tracking\" /* Anchor tracking */\n | \"search.highlight\" /* Search highlighting */\n | \"search.share\" /* Search sharing */\n | \"search.suggest\" /* Search suggestions */\n | \"toc.follow\" /* Following table of contents */\n | \"toc.integrate\" /* Integrated table of contents */\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Translation\n */\nexport type Translation =\n | \"clipboard.copy\" /* Copy to clipboard */\n | \"clipboard.copied\" /* Copied to clipboard */\n | \"search.result.placeholder\" /* Type to start searching */\n | \"search.result.none\" /* No matching documents */\n | \"search.result.one\" /* 1 matching document */\n | \"search.result.other\" /* # matching documents */\n | \"search.result.more.one\" /* 1 more on this page */\n | \"search.result.more.other\" /* # more on this page */\n | \"search.result.term.missing\" /* Missing */\n | \"select.version\" /* Version selector */\n\n/**\n * Translations\n */\nexport type Translations =\n Record<Translation, string>\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Versioning\n */\nexport interface Versioning {\n provider: \"mike\" /* Version provider */\n default?: string | string[] /* Default version */\n alias?: boolean /* Show alias */\n}\n\n/**\n * Configuration\n */\nexport interface Config {\n base: string /* Base URL */\n features: Flag[] /* Feature flags */\n translations: Translations /* Translations */\n search: string /* Search worker URL */\n tags?: Record<string, string> /* Tags mapping */\n version?: Versioning /* Versioning */\n}\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve global configuration and make base URL absolute\n */\nconst script = getElement(\"#__config\")\nconst config: Config = JSON.parse(script.textContent!)\nconfig.base = `${new URL(config.base, getLocation())}`\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve global configuration\n *\n * @returns Global configuration\n */\nexport function configuration(): Config {\n return config\n}\n\n/**\n * Check whether a feature flag is enabled\n *\n * @param flag - Feature flag\n *\n * @returns Test result\n */\nexport function feature(flag: Flag): boolean {\n return config.features.includes(flag)\n}\n\n/**\n * Retrieve the translation for the given key\n *\n * @param key - Key to be translated\n * @param value - Positional value, if any\n *\n * @returns Translation\n */\nexport function translation(\n key: Translation, value?: string | number\n): string {\n return typeof value !== \"undefined\"\n ? config.translations[key].replace(\"#\", value.toString())\n : config.translations[key]\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { getElement, getElements } from \"~/browser\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Component type\n */\nexport type ComponentType =\n | \"announce\" /* Announcement bar */\n | \"container\" /* Container */\n | \"consent\" /* Consent */\n | \"content\" /* Content */\n | \"dialog\" /* Dialog */\n | \"header\" /* Header */\n | \"header-title\" /* Header title */\n | \"header-topic\" /* Header topic */\n | \"main\" /* Main area */\n | \"outdated\" /* Version warning */\n | \"palette\" /* Color palette */\n | \"progress\" /* Progress indicator */\n | \"search\" /* Search */\n | \"search-query\" /* Search input */\n | \"search-result\" /* Search results */\n | \"search-share\" /* Search sharing */\n | \"search-suggest\" /* Search suggestions */\n | \"sidebar\" /* Sidebar */\n | \"skip\" /* Skip link */\n | \"source\" /* Repository information */\n | \"tabs\" /* Navigation tabs */\n | \"toc\" /* Table of contents */\n | \"top\" /* Back-to-top button */\n\n/**\n * Component\n *\n * @template T - Component type\n * @template U - Reference type\n */\nexport type Component<\n T extends {} = {},\n U extends HTMLElement = HTMLElement\n> =\n T & {\n ref: U /* Component reference */\n }\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Component type map\n */\ninterface ComponentTypeMap {\n \"announce\": HTMLElement /* Announcement bar */\n \"container\": HTMLElement /* Container */\n \"consent\": HTMLElement /* Consent */\n \"content\": HTMLElement /* Content */\n \"dialog\": HTMLElement /* Dialog */\n \"header\": HTMLElement /* Header */\n \"header-title\": HTMLElement /* Header title */\n \"header-topic\": HTMLElement /* Header topic */\n \"main\": HTMLElement /* Main area */\n \"outdated\": HTMLElement /* Version warning */\n \"palette\": HTMLElement /* Color palette */\n \"progress\": HTMLElement /* Progress indicator */\n \"search\": HTMLElement /* Search */\n \"search-query\": HTMLInputElement /* Search input */\n \"search-result\": HTMLElement /* Search results */\n \"search-share\": HTMLAnchorElement /* Search sharing */\n \"search-suggest\": HTMLElement /* Search suggestions */\n \"sidebar\": HTMLElement /* Sidebar */\n \"skip\": HTMLAnchorElement /* Skip link */\n \"source\": HTMLAnchorElement /* Repository information */\n \"tabs\": HTMLElement /* Navigation tabs */\n \"toc\": HTMLElement /* Table of contents */\n \"top\": HTMLAnchorElement /* Back-to-top button */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve the element for a given component or throw a reference error\n *\n * @template T - Component type\n *\n * @param type - Component type\n * @param node - Node of reference\n *\n * @returns Element\n */\nexport function getComponentElement<T extends ComponentType>(\n type: T, node: ParentNode = document\n): ComponentTypeMap[T] {\n return getElement(`[data-md-component=${type}]`, node)\n}\n\n/**\n * Retrieve all elements for a given component\n *\n * @template T - Component type\n *\n * @param type - Component type\n * @param node - Node of reference\n *\n * @returns Elements\n */\nexport function getComponentElements<T extends ComponentType>(\n type: T, node: ParentNode = document\n): ComponentTypeMap[T][] {\n return getElements(`[data-md-component=${type}]`, node)\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n EMPTY,\n Observable,\n Subject,\n defer,\n finalize,\n fromEvent,\n map,\n tap\n} from \"rxjs\"\n\nimport { feature } from \"~/_\"\nimport { getElement } from \"~/browser\"\n\nimport { Component } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Announcement bar\n */\nexport interface Announce {\n hash: number /* Content hash */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch announcement bar\n *\n * @param el - Announcement bar element\n *\n * @returns Announcement bar observable\n */\nexport function watchAnnounce(\n el: HTMLElement\n): Observable<Announce> {\n const button = getElement(\".md-typeset > :first-child\", el)\n return fromEvent(button, \"click\", { once: true })\n .pipe(\n map(() => getElement(\".md-typeset\", el)),\n map(content => ({ hash: __md_hash(content.innerHTML) }))\n )\n}\n\n/**\n * Mount announcement bar\n *\n * @param el - Announcement bar element\n *\n * @returns Announcement bar component observable\n */\nexport function mountAnnounce(\n el: HTMLElement\n): Observable<Component<Announce>> {\n if (!feature(\"announce.dismiss\") || !el.childElementCount)\n return EMPTY\n\n /* Support instant navigation - see https://t.ly/3FTme */\n if (!el.hidden) {\n const content = getElement(\".md-typeset\", el)\n if (__md_hash(content.innerHTML) === __md_get(\"__announce\"))\n el.hidden = true\n }\n\n /* Mount component on subscription */\n return defer(() => {\n const push$ = new Subject<Announce>()\n push$.subscribe(({ hash }) => {\n el.hidden = true\n\n /* Persist preference in local storage */\n __md_set<number>(\"__announce\", hash)\n })\n\n /* Create and return component */\n return watchAnnounce(el)\n .pipe(\n tap(state => push$.next(state)),\n finalize(() => push$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n })\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n Subject,\n finalize,\n map,\n tap\n} from \"rxjs\"\n\nimport { Component } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Consent\n */\nexport interface Consent {\n hidden: boolean /* Consent is hidden */\n}\n\n/**\n * Consent defaults\n */\nexport interface ConsentDefaults {\n analytics?: boolean /* Consent for Analytics */\n github?: boolean /* Consent for GitHub */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n target$: Observable<HTMLElement> /* Target observable */\n}\n\n/**\n * Mount options\n */\ninterface MountOptions {\n target$: Observable<HTMLElement> /* Target observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch consent\n *\n * @param el - Consent element\n * @param options - Options\n *\n * @returns Consent observable\n */\nexport function watchConsent(\n el: HTMLElement, { target$ }: WatchOptions\n): Observable<Consent> {\n return target$\n .pipe(\n map(target => ({ hidden: target !== el }))\n )\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Mount consent\n *\n * @param el - Consent element\n * @param options - Options\n *\n * @returns Consent component observable\n */\nexport function mountConsent(\n el: HTMLElement, options: MountOptions\n): Observable<Component<Consent>> {\n const internal$ = new Subject<Consent>()\n internal$.subscribe(({ hidden }) => {\n el.hidden = hidden\n })\n\n /* Create and return component */\n return watchConsent(el, options)\n .pipe(\n tap(state => internal$.next(state)),\n finalize(() => internal$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { ComponentChild } from \"preact\"\n\nimport { h } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Tooltip style\n */\nexport type TooltipStyle =\n | \"inline\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render a tooltip\n *\n * @param id - Tooltip identifier\n * @param style - Tooltip style\n *\n * @returns Element\n */\nexport function renderTooltip(\n id?: string, style?: TooltipStyle\n): HTMLElement {\n if (style === \"inline\") { // @todo refactor control flow\n return (\n <div class=\"md-tooltip md-tooltip--inline\" id={id} role=\"tooltip\">\n <div class=\"md-tooltip__inner md-typeset\"></div>\n </div>\n )\n } else {\n return (\n <div class=\"md-tooltip\" id={id} role=\"tooltip\">\n <div class=\"md-tooltip__inner md-typeset\"></div>\n </div>\n )\n }\n}\n\n// @todo: rename\nexport function renderInlineTooltip2(\n ...children: ComponentChild[]\n): HTMLElement {\n return (\n <div class=\"md-tooltip2\" role=\"tooltip\">\n <div class=\"md-tooltip2__inner md-typeset\">\n {children}\n </div>\n </div>\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { h } from \"~/utilities\"\n\nimport { renderTooltip } from \"../tooltip\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render an annotation\n *\n * @param id - Annotation identifier\n * @param prefix - Tooltip identifier prefix\n *\n * @returns Element\n */\nexport function renderAnnotation(\n id: string | number, prefix?: string\n): HTMLElement {\n prefix = prefix ? `${prefix}_annotation_${id}` : undefined\n\n /* Render tooltip with anchor, if given */\n if (prefix) {\n const anchor = prefix ? `#${prefix}` : undefined\n return (\n <aside class=\"md-annotation\" tabIndex={0}>\n {renderTooltip(prefix)}\n <a href={anchor} class=\"md-annotation__index\" tabIndex={-1}>\n <span data-md-annotation-id={id}></span>\n </a>\n </aside>\n )\n } else {\n return (\n <aside class=\"md-annotation\" tabIndex={0}>\n {renderTooltip(prefix)}\n <span class=\"md-annotation__index\" tabIndex={-1}>\n <span data-md-annotation-id={id}></span>\n </span>\n </aside>\n )\n }\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { translation } from \"~/_\"\nimport { h } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render a 'copy-to-clipboard' button\n *\n * @param id - Unique identifier\n *\n * @returns Element\n */\nexport function renderClipboardButton(id: string): HTMLElement {\n return (\n <button\n class=\"md-clipboard md-icon\"\n title={translation(\"clipboard.copy\")}\n data-clipboard-target={`#${id} > code`}\n ></button>\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport escapeHTML from \"escape-html\"\nimport { ComponentChild } from \"preact\"\n\nimport { configuration, feature, translation } from \"~/_\"\nimport { SearchItem } from \"~/integrations/search\"\nimport { h } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Render flag\n */\nconst enum Flag {\n TEASER = 1, /* Render teaser */\n PARENT = 2 /* Render as parent */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper function\n * ------------------------------------------------------------------------- */\n\n/**\n * Render a search document\n *\n * @param document - Search document\n * @param flag - Render flags\n *\n * @returns Element\n */\nfunction renderSearchDocument(\n document: SearchItem, flag: Flag\n): HTMLElement {\n const parent = flag & Flag.PARENT\n const teaser = flag & Flag.TEASER\n\n /* Render missing query terms */\n const missing = Object.keys(document.terms)\n .filter(key => !document.terms[key])\n .reduce<ComponentChild[]>((list, key) => [\n ...list, <del>{escapeHTML(key)}</del>, \" \"\n ], [])\n .slice(0, -1)\n\n /* Assemble query string for highlighting */\n const config = configuration()\n const url = new URL(document.location, config.base)\n if (feature(\"search.highlight\"))\n url.searchParams.set(\"h\", Object.entries(document.terms)\n .filter(([, match]) => match)\n .reduce((highlight, [value]) => `${highlight} ${value}`.trim(), \"\")\n )\n\n /* Render article or section, depending on flags */\n const { tags } = configuration()\n return (\n <a href={`${url}`} class=\"md-search-result__link\" tabIndex={-1}>\n <article\n class=\"md-search-result__article md-typeset\"\n data-md-score={document.score.toFixed(2)}\n >\n {parent > 0 && <div class=\"md-search-result__icon md-icon\"></div>}\n {parent > 0 && <h1>{document.title}</h1>}\n {parent <= 0 && <h2>{document.title}</h2>}\n {teaser > 0 && document.text.length > 0 &&\n document.text\n }\n {document.tags && (\n <nav class=\"md-tags\">\n {document.tags.map(tag => {\n const type = tags\n ? tag in tags\n ? `md-tag-icon md-tag--${tags[tag]}`\n : \"md-tag-icon\"\n : \"\"\n return (\n <span class={`md-tag ${type}`}>{tag}</span>\n )\n })}\n </nav>\n )}\n {teaser > 0 && missing.length > 0 &&\n <p class=\"md-search-result__terms\">\n {translation(\"search.result.term.missing\")}: {...missing}\n </p>\n }\n </article>\n </a>\n )\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render a search result\n *\n * @param result - Search result\n *\n * @returns Element\n */\nexport function renderSearchResultItem(\n result: SearchItem[]\n): HTMLElement {\n const threshold = result[0].score\n const docs = [...result]\n\n const config = configuration()\n\n /* Find and extract parent article */\n const parent = docs.findIndex(doc => {\n const l = `${new URL(doc.location, config.base)}` // @todo hacky\n return !l.includes(\"#\")\n })\n const [article] = docs.splice(parent, 1)\n\n /* Determine last index above threshold */\n let index = docs.findIndex(doc => doc.score < threshold)\n if (index === -1)\n index = docs.length\n\n /* Partition sections */\n const best = docs.slice(0, index)\n const more = docs.slice(index)\n\n /* Render children */\n const children = [\n renderSearchDocument(article, Flag.PARENT | +(!parent && index === 0)),\n ...best.map(section => renderSearchDocument(section, Flag.TEASER)),\n ...more.length ? [\n <details class=\"md-search-result__more\">\n <summary tabIndex={-1}>\n <div>\n {more.length > 0 && more.length === 1\n ? translation(\"search.result.more.one\")\n : translation(\"search.result.more.other\", more.length)\n }\n </div>\n </summary>\n {...more.map(section => renderSearchDocument(section, Flag.TEASER))}\n </details>\n ] : []\n ]\n\n /* Render search result */\n return (\n <li class=\"md-search-result__item\">\n {children}\n </li>\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { SourceFacts } from \"~/components\"\nimport { h, round } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render repository facts\n *\n * @param facts - Repository facts\n *\n * @returns Element\n */\nexport function renderSourceFacts(facts: SourceFacts): HTMLElement {\n return (\n <ul class=\"md-source__facts\">\n {Object.entries(facts).map(([key, value]) => (\n <li class={`md-source__fact md-source__fact--${key}`}>\n {typeof value === \"number\" ? round(value) : value}\n </li>\n ))}\n </ul>\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { h } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Tabbed control type\n */\ntype TabbedControlType =\n | \"prev\"\n | \"next\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render control for content tabs\n *\n * @param type - Control type\n *\n * @returns Element\n */\nexport function renderTabbedControl(\n type: TabbedControlType\n): HTMLElement {\n const classes = `tabbed-control tabbed-control--${type}`\n return (\n <div class={classes} hidden>\n <button class=\"tabbed-button\" tabIndex={-1} aria-hidden=\"true\"></button>\n </div>\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { h } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render a table inside a wrapper to improve scrolling on mobile\n *\n * @param table - Table element\n *\n * @returns Element\n */\nexport function renderTable(table: HTMLElement): HTMLElement {\n return (\n <div class=\"md-typeset__scrollwrap\">\n <div class=\"md-typeset__table\">\n {table}\n </div>\n </div>\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { configuration, translation } from \"~/_\"\nimport { h } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Version properties\n */\nexport interface VersionProperties {\n hidden?: boolean /* Version is hidden */\n}\n\n/**\n * Version\n */\nexport interface Version {\n version: string /* Version identifier */\n title: string /* Version title */\n aliases: string[] /* Version aliases */\n properties?: VersionProperties /* Version properties */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render a version\n *\n * @param version - Version\n *\n * @returns Element\n */\nfunction renderVersion(version: Version): HTMLElement {\n const config = configuration()\n\n /* Ensure trailing slash - see https://bit.ly/3rL5u3f */\n const url = new URL(`../${version.version}/`, config.base)\n return (\n <li class=\"md-version__item\">\n <a href={`${url}`} class=\"md-version__link\">\n {version.title}\n {config.version?.alias && version.aliases.length > 0 && (\n <span class=\"md-version__alias\">\n {version.aliases[0]}\n </span>\n )}\n </a>\n </li>\n )\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render a version selector\n *\n * @param versions - Versions\n * @param active - Active version\n *\n * @returns Element\n */\nexport function renderVersionSelector(\n versions: Version[], active: Version\n): HTMLElement {\n const config = configuration()\n versions = versions.filter(version => !version.properties?.hidden)\n return (\n <div class=\"md-version\">\n <button\n class=\"md-version__current\"\n aria-label={translation(\"select.version\")}\n >\n {active.title}\n {config.version?.alias && active.aliases.length > 0 && (\n <span class=\"md-version__alias\">\n {active.aliases[0]}\n </span>\n )}\n </button>\n <ul class=\"md-version__list\">\n {versions.map(renderVersion)}\n </ul>\n </div>\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n BehaviorSubject,\n EMPTY,\n Observable,\n Subject,\n animationFrameScheduler,\n combineLatest,\n combineLatestWith,\n debounce,\n defer,\n distinctUntilChanged,\n endWith,\n filter,\n finalize,\n first,\n ignoreElements,\n map,\n mergeMap,\n observeOn,\n queueScheduler,\n share,\n startWith,\n switchMap,\n tap,\n throttleTime,\n timer,\n withLatestFrom\n} from \"rxjs\"\n\nimport {\n ElementOffset,\n Viewport,\n getElement,\n getElementContainers,\n getElementOffsetAbsolute,\n getElementSize,\n watchElementContentOffset,\n watchElementFocus,\n watchElementHover\n} from \"~/browser\"\nimport { renderInlineTooltip2 } from \"~/templates\"\n\nimport { Component } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Tooltip\n */\nexport interface Tooltip {\n active: boolean // Tooltip is active\n offset: ElementOffset // Tooltip offset\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Dependencies\n */\ninterface Dependencies {\n content$: Observable<HTMLElement> // Tooltip content observable\n viewport$: Observable<Viewport> // Viewport observable\n}\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Global sequence number for tooltips\n */\nlet sequence = 0\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch tooltip\n *\n * This function tracks the tooltip host element, and deduces the active state\n * and offset of the tooltip from it. The active state is determined by whether\n * the host element is focused or hovered, and the offset is determined by the\n * host element's absolute position in the document.\n *\n * @param el - Tooltip host element\n *\n * @returns Tooltip observable\n */\nexport function watchTooltip2(\n el: HTMLElement\n): Observable<Tooltip> {\n\n // Compute whether tooltip should be shown - we need to watch both focus and\n // hover events on the host element and emit if one of them is active. In case\n // of a hover event, we keep the element visible for a short amount of time\n // after the pointer left the host element for a better user experience.\n const active$ =\n combineLatest([\n watchElementFocus(el),\n watchElementHover(el)\n ])\n .pipe(\n map(([focus, hover]) => focus || hover),\n distinctUntilChanged()\n )\n\n // We need to determine all parent elements of the host element that are\n // currently scrollable, as they might affect the position of the tooltip\n // depending on their horizontal of vertical offset. We must track all of\n // them and recompute the position of the tooltip if they change.\n const offset$ =\n defer(() => getElementContainers(el)).pipe(\n mergeMap(watchElementContentOffset),\n throttleTime(1),\n // Note that we need to poll the value again if the active state changes,\n // as otherwise the tooltip might be misplaced. This particularly happens\n // when using third-party integrations like tablesort that change the\n // position of elements \u2013 see https://t.ly/Y-V7X\n combineLatestWith(active$),\n map(() => getElementOffsetAbsolute(el)),\n )\n\n // Only track parent elements and compute offset of the tooltip host if the\n // tooltip should be shown - we defer the computation of the offset until the\n // tooltip becomes active for the first time. This is necessary, because we\n // must also keep the tooltip active as long as it is focused or hovered.\n return active$.pipe(\n first(active => active),\n switchMap(() => combineLatest([active$, offset$])),\n map(([active, offset]) => ({ active, offset })),\n share()\n )\n}\n\n/**\n * Mount tooltip\n *\n * This function renders a tooltip with the content from the provided `content$`\n * observable as passed via the dependencies. If the returned element has a role\n * of type `dialog`, the tooltip is considered to be interactive, and rendered\n * either above or below the host element, depending on the available space.\n *\n * If the returned element has a role of type `tooltip`, the tooltip is always\n * rendered below the host element and considered to be non-interactive. This\n * allows us to reuse the same positioning logic for both interactive and\n * non-interactive tooltips, as it is largely the same.\n *\n * @param el - Tooltip host element\n * @param dependencies - Dependencies\n *\n * @returns Tooltip component observable\n */\nexport function mountTooltip2(\n el: HTMLElement, dependencies: Dependencies\n): Observable<Component<Tooltip>> {\n const { content$, viewport$ } = dependencies\n\n // Compute unique tooltip id - this is necessary to associate the tooltip host\n // element with the tooltip element for ARIA purposes\n const id = `__tooltip2_${sequence++}`\n\n // Create component on subscription\n return defer(() => {\n const push$ = new Subject<Tooltip>()\n\n // Create subject to track tooltip presence and visibility - we use another\n // purely internal subject to track the tooltip's presence and visibility,\n // as the tooltip should be visible if the host element or tooltip itself\n // is focused or hovered to allow for smooth pointer migration\n const show$ = new BehaviorSubject(false)\n push$.pipe(ignoreElements(), endWith(false))\n .subscribe(show$)\n\n // Create observable controlling tooltip element - we create and attach the\n // tooltip only if it is actually present, in order to keep the number of\n // elements low. We need to keep the tooltip visible for a short time after\n // the pointer left the host element or tooltip itself. For this, we use an\n // inner subscription to the tooltip observable, which we terminate when the\n // tooltip should not be shown, automatically removing the element. Moreover\n // we use the queue scheduler, which will schedule synchronously in case the\n // tooltip should be shown, and asynchronously if it should be hidden.\n const node$ = show$.pipe(\n debounce(active => timer(+!active * 250, queueScheduler)),\n distinctUntilChanged(),\n switchMap(active => active ? content$ : EMPTY),\n tap(node => node.id = id),\n share()\n )\n\n // Compute tooltip presence and visibility - the tooltip should be shown if\n // the host element or the tooltip itself is focused or hovered\n combineLatest([\n push$.pipe(map(({ active }) => active)),\n node$.pipe(\n switchMap(node => watchElementHover(node, 250)),\n startWith(false)\n )\n ])\n .pipe(map(states => states.some(active => active)))\n .subscribe(show$)\n\n // Compute tooltip origin - we need to compute the tooltip origin depending\n // on the position of the host element, the viewport size, as well as the\n // actual size of the tooltip, if positioned above. The tooltip must about\n // to be rendered for this to be correct, which is why we do it here.\n const origin$ = show$.pipe(\n filter(active => active),\n withLatestFrom(node$, viewport$),\n map(([_, node, { size }]) => {\n const host = el.getBoundingClientRect()\n const x = host.width / 2\n\n // If the tooltip is non-interactive, we always render it below the\n // actual element because all operating systems do it that way\n if (node.role === \"tooltip\") {\n return { x, y: 8 + host.height }\n\n // Otherwise, we determine where there is more space, and render the\n // tooltip either above or below the host element\n } else if (host.y >= size.height / 2) {\n const { height } = getElementSize(node)\n return { x, y: -16 - height }\n } else {\n return { x, y: +16 + host.height }\n }\n })\n )\n\n // Update tooltip position - we always need to update the position of the\n // tooltip, as it might change depending on the viewport offset of the host\n combineLatest([node$, push$, origin$])\n .subscribe(([node, { offset }, origin]) => {\n node.style.setProperty(\"--md-tooltip-host-x\", `${offset.x}px`)\n node.style.setProperty(\"--md-tooltip-host-y\", `${offset.y}px`)\n\n // Update tooltip origin - this is mainly set to determine the position\n // of the tooltip tail, to show the direction it is originating from\n node.style.setProperty(\"--md-tooltip-x\", `${origin.x}px`)\n node.style.setProperty(\"--md-tooltip-y\", `${origin.y}px`)\n\n // Update tooltip render location, i.e., whether the tooltip is shown\n // above or below the host element, depending on the available space\n node.classList.toggle(\"md-tooltip2--top\", origin.y < 0)\n node.classList.toggle(\"md-tooltip2--bottom\", origin.y >= 0)\n })\n\n // Update tooltip width - we only explicitly set the width of the tooltip\n // if it is non-interactive, in case it should always be rendered centered\n show$.pipe(\n filter(active => active),\n withLatestFrom(node$, (_, node) => node),\n filter(node => node.role === \"tooltip\")\n )\n .subscribe(node => {\n const size = getElementSize(getElement(\":scope > *\", node))\n\n // Set tooltip width and remove tail by setting it to a width of zero -\n // if authors want to keep the tail, we can move this to CSS later\n node.style.setProperty(\"--md-tooltip-width\", `${size.width}px`)\n node.style.setProperty(\"--md-tooltip-tail\", `${0}px`)\n })\n\n // Update tooltip visibility - we defer to the next animation frame, because\n // the tooltip must first be added to the document before we make it appear,\n // or it will appear instantly without delay. Additionally, we need to keep\n // the tooltip visible for a short time after the pointer left the host.\n show$.pipe(\n distinctUntilChanged(),\n observeOn(animationFrameScheduler),\n withLatestFrom(node$)\n )\n .subscribe(([active, node]) => {\n node.classList.toggle(\"md-tooltip2--active\", active)\n })\n\n // Set up ARIA attributes when tooltip is visible\n combineLatest([\n show$.pipe(filter(active => active)),\n node$\n ])\n .subscribe(([_, node]) => {\n if (node.role === \"dialog\") {\n el.setAttribute(\"aria-controls\", id)\n el.setAttribute(\"aria-haspopup\", \"dialog\")\n } else {\n el.setAttribute(\"aria-describedby\", id)\n }\n })\n\n // Remove ARIA attributes when tooltip is hidden\n show$.pipe(filter(active => !active))\n .subscribe(() => {\n el.removeAttribute(\"aria-controls\")\n el.removeAttribute(\"aria-describedby\")\n el.removeAttribute(\"aria-haspopup\")\n })\n\n // Create and return component\n return watchTooltip2(el)\n .pipe(\n tap(state => push$.next(state)),\n finalize(() => push$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n })\n}\n\n// ----------------------------------------------------------------------------\n\n/**\n * Mount inline tooltip\n *\n * @todo refactor this function\n *\n * @param el - Tooltip host element\n * @param dependencies - Dependencies\n * @param container - Container\n *\n * @returns Tooltip component observable\n */\nexport function mountInlineTooltip2(\n el: HTMLElement, { viewport$ }: { viewport$: Observable<Viewport> },\n container = document.body\n): Observable<Component<Tooltip>> {\n return mountTooltip2(el, {\n content$: new Observable<HTMLElement>(observer => {\n const title = el.title\n const node = renderInlineTooltip2(title)\n observer.next(node)\n el.removeAttribute(\"title\")\n // Append tooltip and remove on unsubscription\n container.append(node)\n return () => {\n node.remove()\n el.setAttribute(\"title\", title)\n }\n }),\n viewport$\n })\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n Subject,\n animationFrameScheduler,\n auditTime,\n combineLatest,\n debounceTime,\n defer,\n delay,\n endWith,\n filter,\n finalize,\n fromEvent,\n ignoreElements,\n map,\n merge,\n switchMap,\n take,\n takeUntil,\n tap,\n throttleTime,\n withLatestFrom\n} from \"rxjs\"\n\nimport {\n ElementOffset,\n getActiveElement,\n getElementSize,\n watchElementContentOffset,\n watchElementFocus,\n watchElementOffset,\n watchElementVisibility\n} from \"~/browser\"\n\nimport { Component } from \"../../../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Annotation\n */\nexport interface Annotation {\n active: boolean /* Annotation is active */\n offset: ElementOffset /* Annotation offset */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n target$: Observable<HTMLElement> /* Location target observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch annotation\n *\n * @param el - Annotation element\n * @param container - Containing element\n *\n * @returns Annotation observable\n */\nexport function watchAnnotation(\n el: HTMLElement, container: HTMLElement\n): Observable<Annotation> {\n const offset$ = defer(() => combineLatest([\n watchElementOffset(el),\n watchElementContentOffset(container)\n ]))\n .pipe(\n map(([{ x, y }, scroll]): ElementOffset => {\n const { width, height } = getElementSize(el)\n return ({\n x: x - scroll.x + width / 2,\n y: y - scroll.y + height / 2\n })\n })\n )\n\n /* Actively watch annotation on focus */\n return watchElementFocus(el)\n .pipe(\n switchMap(active => offset$\n .pipe(\n map(offset => ({ active, offset })),\n take(+!active || Infinity)\n )\n )\n )\n}\n\n/**\n * Mount annotation\n *\n * @param el - Annotation element\n * @param container - Containing element\n * @param options - Options\n *\n * @returns Annotation component observable\n */\nexport function mountAnnotation(\n el: HTMLElement, container: HTMLElement, { target$ }: MountOptions\n): Observable<Component<Annotation>> {\n const [tooltip, index] = Array.from(el.children)\n\n /* Mount component on subscription */\n return defer(() => {\n const push$ = new Subject<Annotation>()\n const done$ = push$.pipe(ignoreElements(), endWith(true))\n push$.subscribe({\n\n /* Handle emission */\n next({ offset }) {\n el.style.setProperty(\"--md-tooltip-x\", `${offset.x}px`)\n el.style.setProperty(\"--md-tooltip-y\", `${offset.y}px`)\n },\n\n /* Handle complete */\n complete() {\n el.style.removeProperty(\"--md-tooltip-x\")\n el.style.removeProperty(\"--md-tooltip-y\")\n }\n })\n\n /* Start animation only when annotation is visible */\n watchElementVisibility(el)\n .pipe(\n takeUntil(done$)\n )\n .subscribe(visible => {\n el.toggleAttribute(\"data-md-visible\", visible)\n })\n\n /* Toggle tooltip presence to mitigate empty lines when copying */\n merge(\n push$.pipe(filter(({ active }) => active)),\n push$.pipe(debounceTime(250), filter(({ active }) => !active))\n )\n .subscribe({\n\n /* Handle emission */\n next({ active }) {\n if (active)\n el.prepend(tooltip)\n else\n tooltip.remove()\n },\n\n /* Handle complete */\n complete() {\n el.prepend(tooltip)\n }\n })\n\n /* Toggle tooltip visibility */\n push$\n .pipe(\n auditTime(16, animationFrameScheduler)\n )\n .subscribe(({ active }) => {\n tooltip.classList.toggle(\"md-tooltip--active\", active)\n })\n\n /* Track relative origin of tooltip */\n push$\n .pipe(\n throttleTime(125, animationFrameScheduler),\n filter(() => !!el.offsetParent),\n map(() => el.offsetParent!.getBoundingClientRect()),\n map(({ x }) => x)\n )\n .subscribe({\n\n /* Handle emission */\n next(origin) {\n if (origin)\n el.style.setProperty(\"--md-tooltip-0\", `${-origin}px`)\n else\n el.style.removeProperty(\"--md-tooltip-0\")\n },\n\n /* Handle complete */\n complete() {\n el.style.removeProperty(\"--md-tooltip-0\")\n }\n })\n\n /* Allow to copy link without scrolling to anchor */\n fromEvent<MouseEvent>(index, \"click\")\n .pipe(\n takeUntil(done$),\n filter(ev => !(ev.metaKey || ev.ctrlKey))\n )\n .subscribe(ev => {\n ev.stopPropagation()\n ev.preventDefault()\n })\n\n /* Allow to open link in new tab or blur on close */\n fromEvent<MouseEvent>(index, \"mousedown\")\n .pipe(\n takeUntil(done$),\n withLatestFrom(push$)\n )\n .subscribe(([ev, { active }]) => {\n\n /* Open in new tab */\n if (ev.button !== 0 || ev.metaKey || ev.ctrlKey) {\n ev.preventDefault()\n\n /* Close annotation */\n } else if (active) {\n ev.preventDefault()\n\n /* Focus parent annotation, if any */\n const parent = el.parentElement!.closest(\".md-annotation\")\n if (parent instanceof HTMLElement)\n parent.focus()\n else\n getActiveElement()?.blur()\n }\n })\n\n /* Open and focus annotation on location target */\n target$\n .pipe(\n takeUntil(done$),\n filter(target => target === tooltip),\n delay(125)\n )\n .subscribe(() => el.focus())\n\n /* Create and return component */\n return watchAnnotation(el, container)\n .pipe(\n tap(state => push$.next(state)),\n finalize(() => push$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n })\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n EMPTY,\n Observable,\n Subject,\n defer,\n endWith,\n finalize,\n ignoreElements,\n merge,\n share,\n takeUntil\n} from \"rxjs\"\n\nimport {\n getElement,\n getElements,\n getOptionalElement\n} from \"~/browser\"\nimport { renderAnnotation } from \"~/templates\"\n\nimport { Component } from \"../../../_\"\nimport {\n Annotation,\n mountAnnotation\n} from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n target$: Observable<HTMLElement> /* Location target observable */\n print$: Observable<boolean> /* Media print observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Find all annotation hosts in the containing element\n *\n * @param container - Containing element\n *\n * @returns Annotation hosts\n */\nfunction findHosts(container: HTMLElement): HTMLElement[] {\n return container.tagName === \"CODE\"\n ? getElements(\".c, .c1, .cm\", container)\n : [container]\n}\n\n/**\n * Find all annotation markers in the containing element\n *\n * @param container - Containing element\n *\n * @returns Annotation markers\n */\nfunction findMarkers(container: HTMLElement): Text[] {\n const markers: Text[] = []\n for (const el of findHosts(container)) {\n const nodes: Text[] = []\n\n /* Find all text nodes in current element */\n const it = document.createNodeIterator(el, NodeFilter.SHOW_TEXT)\n for (let node = it.nextNode(); node; node = it.nextNode())\n nodes.push(node as Text)\n\n /* Find all markers in each text node */\n for (let text of nodes) {\n let match: RegExpExecArray | null\n\n /* Split text at marker and add to list */\n while ((match = /(\\(\\d+\\))(!)?/.exec(text.textContent!))) {\n const [, id, force] = match\n if (typeof force === \"undefined\") {\n const marker = text.splitText(match.index)\n text = marker.splitText(id.length)\n markers.push(marker)\n\n /* Replace entire text with marker */\n } else {\n text.textContent = id\n markers.push(text)\n break\n }\n }\n }\n }\n return markers\n}\n\n/**\n * Swap the child nodes of two elements\n *\n * @param source - Source element\n * @param target - Target element\n */\nfunction swap(source: HTMLElement, target: HTMLElement): void {\n target.append(...Array.from(source.childNodes))\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount annotation list\n *\n * This function analyzes the containing code block and checks for markers\n * referring to elements in the given annotation list. If no markers are found,\n * the list is left untouched. Otherwise, list elements are rendered as\n * annotations inside the code block.\n *\n * @param el - Annotation list element\n * @param container - Containing element\n * @param options - Options\n *\n * @returns Annotation component observable\n */\nexport function mountAnnotationList(\n el: HTMLElement, container: HTMLElement, { target$, print$ }: MountOptions\n): Observable<Component<Annotation>> {\n\n /* Compute prefix for tooltip anchors */\n const parent = container.closest(\"[id]\")\n const prefix = parent?.id\n\n /* Find and replace all markers with empty annotations */\n const annotations = new Map<string, HTMLElement>()\n for (const marker of findMarkers(container)) {\n const [, id] = marker.textContent!.match(/\\((\\d+)\\)/)!\n if (getOptionalElement(`:scope > li:nth-child(${id})`, el)) {\n annotations.set(id, renderAnnotation(id, prefix))\n marker.replaceWith(annotations.get(id)!)\n }\n }\n\n /* Keep list if there are no annotations to render */\n if (annotations.size === 0)\n return EMPTY\n\n /* Mount component on subscription */\n return defer(() => {\n const push$ = new Subject()\n const done$ = push$.pipe(ignoreElements(), endWith(true))\n\n /* Retrieve container pairs for swapping */\n const pairs: [HTMLElement, HTMLElement][] = []\n for (const [id, annotation] of annotations)\n pairs.push([\n getElement(\".md-typeset\", annotation),\n getElement(`:scope > li:nth-child(${id})`, el)\n ])\n\n /* Handle print mode - see https://bit.ly/3rgPdpt */\n print$.pipe(takeUntil(done$))\n .subscribe(active => {\n el.hidden = !active\n\n /* Add class to discern list element */\n el.classList.toggle(\"md-annotation-list\", active)\n\n /* Show annotations in code block or list (print) */\n for (const [inner, child] of pairs)\n if (!active)\n swap(child, inner)\n else\n swap(inner, child)\n })\n\n /* Create and return component */\n return merge(...[...annotations]\n .map(([, annotation]) => (\n mountAnnotation(annotation, container, { target$ })\n ))\n )\n .pipe(\n finalize(() => push$.complete()),\n share()\n )\n })\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { EMPTY, Observable, defer } from \"rxjs\"\n\nimport { Component } from \"../../../_\"\nimport { Annotation } from \"../_\"\nimport { mountAnnotationList } from \"../list\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n target$: Observable<HTMLElement> /* Location target observable */\n print$: Observable<boolean> /* Media print observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Find list element directly following a block\n *\n * @param el - Annotation block element\n *\n * @returns List element or nothing\n */\nfunction findList(el: HTMLElement): HTMLElement | undefined {\n if (el.nextElementSibling) {\n const sibling = el.nextElementSibling as HTMLElement\n if (sibling.tagName === \"OL\")\n return sibling\n\n /* Skip empty paragraphs - see https://bit.ly/3r4ZJ2O */\n else if (sibling.tagName === \"P\" && !sibling.children.length)\n return findList(sibling)\n }\n\n /* Everything else */\n return undefined\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount annotation block\n *\n * @param el - Annotation block element\n * @param options - Options\n *\n * @returns Annotation component observable\n */\nexport function mountAnnotationBlock(\n el: HTMLElement, options: MountOptions\n): Observable<Component<Annotation>> {\n return defer(() => {\n const list = findList(el)\n return typeof list !== \"undefined\"\n ? mountAnnotationList(list, el, options)\n : EMPTY\n })\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport ClipboardJS from \"clipboard\"\nimport {\n EMPTY,\n Observable,\n Subject,\n defer,\n distinctUntilChanged,\n distinctUntilKeyChanged,\n filter,\n finalize,\n map,\n mergeWith,\n switchMap,\n take,\n takeLast,\n takeUntil,\n tap\n} from \"rxjs\"\n\nimport { feature } from \"~/_\"\nimport {\n getElementContentSize,\n getElements,\n watchElementSize,\n watchElementVisibility\n} from \"~/browser\"\nimport {\n Tooltip,\n mountInlineTooltip2\n} from \"~/components/tooltip2\"\nimport { renderClipboardButton } from \"~/templates\"\n\nimport { Component } from \"../../../_\"\nimport {\n Annotation,\n mountAnnotationList\n} from \"../../annotation\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Code block overflow\n */\nexport interface Overflow {\n scrollable: boolean /* Code block overflows */\n}\n\n/**\n * Code block\n */\nexport type CodeBlock =\n | Overflow\n | Annotation\n | Tooltip\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n target$: Observable<HTMLElement> /* Location target observable */\n print$: Observable<boolean> /* Media print observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Global sequence number for code blocks\n */\nlet sequence = 0\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Find candidate list element directly following a code block\n *\n * @param el - Code block element\n *\n * @returns List element or nothing\n */\nfunction findCandidateList(el: HTMLElement): HTMLElement | undefined {\n if (el.nextElementSibling) {\n const sibling = el.nextElementSibling as HTMLElement\n if (sibling.tagName === \"OL\")\n return sibling\n\n /* Skip empty paragraphs - see https://bit.ly/3r4ZJ2O */\n else if (sibling.tagName === \"P\" && !sibling.children.length)\n return findCandidateList(sibling)\n }\n\n /* Everything else */\n return undefined\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch code block\n *\n * This function monitors size changes of the viewport, as well as switches of\n * content tabs with embedded code blocks, as both may trigger overflow.\n *\n * @param el - Code block element\n *\n * @returns Code block observable\n */\nexport function watchCodeBlock(\n el: HTMLElement\n): Observable<Overflow> {\n return watchElementSize(el)\n .pipe(\n map(({ width }) => {\n const content = getElementContentSize(el)\n return {\n scrollable: content.width > width\n }\n }),\n distinctUntilKeyChanged(\"scrollable\")\n )\n}\n\n/**\n * Mount code block\n *\n * This function ensures that an overflowing code block is focusable through\n * keyboard, so it can be scrolled without a mouse to improve on accessibility.\n * Furthermore, if code annotations are enabled, they are mounted if and only\n * if the code block is currently visible, e.g., not in a hidden content tab.\n *\n * Note that code blocks may be mounted eagerly or lazily. If they're mounted\n * lazily (on first visibility), code annotation anchor links will not work,\n * as they are evaluated on initial page load, and code annotations in general\n * might feel a little bumpier.\n *\n * @param el - Code block element\n * @param options - Options\n *\n * @returns Code block and annotation component observable\n */\nexport function mountCodeBlock(\n el: HTMLElement, options: MountOptions\n): Observable<Component<CodeBlock>> {\n const { matches: hover } = matchMedia(\"(hover)\")\n\n /* Defer mounting of code block - see https://bit.ly/3vHVoVD */\n const factory$ = defer(() => {\n const push$ = new Subject<Overflow>()\n const done$ = push$.pipe(takeLast(1))\n push$.subscribe(({ scrollable }) => {\n if (scrollable && hover)\n el.setAttribute(\"tabindex\", \"0\")\n else\n el.removeAttribute(\"tabindex\")\n })\n\n /* Render button for Clipboard.js integration */\n const content$: Array<Observable<Component<CodeBlock>>> = []\n if (ClipboardJS.isSupported()) {\n if (el.closest(\".copy\") || (\n feature(\"content.code.copy\") && !el.closest(\".no-copy\")\n )) {\n const parent = el.closest(\"pre\")!\n parent.id = `__code_${sequence++}`\n\n /* Mount tooltip, if enabled */\n const button = renderClipboardButton(parent.id)\n parent.insertBefore(button, el)\n if (feature(\"content.tooltips\"))\n content$.push(mountInlineTooltip2(button, { viewport$ }))\n }\n }\n\n /* Handle code annotations */\n const container = el.closest(\".highlight\")\n if (container instanceof HTMLElement) {\n const list = findCandidateList(container)\n\n /* Mount code annotations, if enabled */\n if (typeof list !== \"undefined\" && (\n container.classList.contains(\"annotate\") ||\n feature(\"content.code.annotate\")\n )) {\n const annotations$ = mountAnnotationList(list, el, options)\n content$.push(\n watchElementSize(container)\n .pipe(\n takeUntil(done$),\n map(({ width, height }) => width && height),\n distinctUntilChanged(),\n switchMap(active => active ? annotations$ : EMPTY)\n )\n )\n }\n }\n\n // If the code block has line spans, we can add this additional class to\n // the code block element, which fixes the problem for highlighted code\n // lines not stretching to the entirety of the screen when the code block\n // overflows, e.g., on mobile - see\n const spans = getElements(\":scope > span[id]\", el)\n if (spans.length)\n el.classList.add(\"md-code__content\")\n\n /* Create and return component */\n return watchCodeBlock(el)\n .pipe(\n tap(state => push$.next(state)),\n finalize(() => push$.complete()),\n map(state => ({ ref: el, ...state })),\n mergeWith(...content$)\n )\n })\n\n /* Mount code block lazily */\n if (feature(\"content.lazy\"))\n return watchElementVisibility(el)\n .pipe(\n filter(visible => visible),\n take(1),\n switchMap(() => factory$)\n )\n\n /* Mount code block */\n return factory$\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n Subject,\n defer,\n filter,\n finalize,\n map,\n merge,\n tap\n} from \"rxjs\"\n\nimport { Component } from \"../../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Details\n */\nexport interface Details {\n action: \"open\" | \"close\" /* Details state */\n reveal?: boolean /* Details is revealed */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n target$: Observable<HTMLElement> /* Location target observable */\n print$: Observable<boolean> /* Media print observable */\n}\n\n/**\n * Mount options\n */\ninterface MountOptions {\n target$: Observable<HTMLElement> /* Location target observable */\n print$: Observable<boolean> /* Media print observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch details\n *\n * @param el - Details element\n * @param options - Options\n *\n * @returns Details observable\n */\nexport function watchDetails(\n el: HTMLDetailsElement, { target$, print$ }: WatchOptions\n): Observable<Details> {\n let open = true\n return merge(\n\n /* Open and focus details on location target */\n target$\n .pipe(\n map(target => target.closest(\"details:not([open])\")!),\n filter(details => el === details),\n map(() => ({\n action: \"open\", reveal: true\n }) as Details)\n ),\n\n /* Open details on print and close afterwards */\n print$\n .pipe(\n filter(active => active || !open),\n tap(() => open = el.open),\n map(active => ({\n action: active ? \"open\" : \"close\"\n }) as Details)\n )\n )\n}\n\n/**\n * Mount details\n *\n * This function ensures that `details` tags are opened on anchor jumps and\n * prior to printing, so the whole content of the page is visible.\n *\n * @param el - Details element\n * @param options - Options\n *\n * @returns Details component observable\n */\nexport function mountDetails(\n el: HTMLDetailsElement, options: MountOptions\n): Observable<Component<Details>> {\n return defer(() => {\n const push$ = new Subject<Details>()\n push$.subscribe(({ action, reveal }) => {\n el.toggleAttribute(\"open\", action === \"open\")\n if (reveal)\n el.scrollIntoView()\n })\n\n /* Create and return component */\n return watchDetails(el, options)\n .pipe(\n tap(state => push$.next(state)),\n finalize(() => push$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n })\n}\n", ".node circle,.node ellipse,.node path,.node polygon,.node rect{fill:var(--md-mermaid-node-bg-color);stroke:var(--md-mermaid-node-fg-color)}marker{fill:var(--md-mermaid-edge-color)!important}.edgeLabel .label rect{fill:#0000}.flowchartTitleText{fill:var(--md-mermaid-label-fg-color)}.label{color:var(--md-mermaid-label-fg-color);font-family:var(--md-mermaid-font-family)}.label foreignObject{line-height:normal;overflow:visible}.label div .edgeLabel{color:var(--md-mermaid-label-fg-color)}.edgeLabel,.edgeLabel p,.label div .edgeLabel{background-color:var(--md-mermaid-label-bg-color)}.edgeLabel,.edgeLabel p{fill:var(--md-mermaid-label-bg-color);color:var(--md-mermaid-edge-color)}.edgePath .path,.flowchart-link{stroke:var(--md-mermaid-edge-color);stroke-width:.05rem}.edgePath .arrowheadPath{fill:var(--md-mermaid-edge-color);stroke:none}.cluster rect{fill:var(--md-default-fg-color--lightest);stroke:var(--md-default-fg-color--lighter)}.cluster span{color:var(--md-mermaid-label-fg-color);font-family:var(--md-mermaid-font-family)}g #flowchart-circleEnd,g #flowchart-circleStart,g #flowchart-crossEnd,g #flowchart-crossStart,g #flowchart-pointEnd,g #flowchart-pointStart{stroke:none}.classDiagramTitleText{fill:var(--md-mermaid-label-fg-color)}g.classGroup line,g.classGroup rect{fill:var(--md-mermaid-node-bg-color);stroke:var(--md-mermaid-node-fg-color)}g.classGroup text{fill:var(--md-mermaid-label-fg-color);font-family:var(--md-mermaid-font-family)}.classLabel .box{fill:var(--md-mermaid-label-bg-color);background-color:var(--md-mermaid-label-bg-color);opacity:1}.classLabel .label{fill:var(--md-mermaid-label-fg-color);font-family:var(--md-mermaid-font-family)}.node .divider{stroke:var(--md-mermaid-node-fg-color)}.relation{stroke:var(--md-mermaid-edge-color)}.cardinality{fill:var(--md-mermaid-label-fg-color);font-family:var(--md-mermaid-font-family)}.cardinality text{fill:inherit!important}defs marker.marker.composition.class path,defs marker.marker.dependency.class path,defs marker.marker.extension.class path{fill:var(--md-mermaid-edge-color)!important;stroke:var(--md-mermaid-edge-color)!important}defs marker.marker.aggregation.class path{fill:var(--md-mermaid-label-bg-color)!important;stroke:var(--md-mermaid-edge-color)!important}.statediagramTitleText{fill:var(--md-mermaid-label-fg-color)}g.stateGroup rect{fill:var(--md-mermaid-node-bg-color);stroke:var(--md-mermaid-node-fg-color)}g.stateGroup .state-title{fill:var(--md-mermaid-label-fg-color)!important;font-family:var(--md-mermaid-font-family)}g.stateGroup .composit{fill:var(--md-mermaid-label-bg-color)}.nodeLabel,.nodeLabel p{color:var(--md-mermaid-label-fg-color);font-family:var(--md-mermaid-font-family)}a .nodeLabel{text-decoration:underline}.node circle.state-end,.node circle.state-start,.start-state{fill:var(--md-mermaid-edge-color);stroke:none}.end-state-inner,.end-state-outer{fill:var(--md-mermaid-edge-color)}.end-state-inner,.node circle.state-end{stroke:var(--md-mermaid-label-bg-color)}.transition{stroke:var(--md-mermaid-edge-color)}[id^=state-fork] rect,[id^=state-join] rect{fill:var(--md-mermaid-edge-color)!important;stroke:none!important}.statediagram-cluster.statediagram-cluster .inner{fill:var(--md-default-bg-color)}.statediagram-cluster rect{fill:var(--md-mermaid-node-bg-color);stroke:var(--md-mermaid-node-fg-color)}.statediagram-state rect.divider{fill:var(--md-default-fg-color--lightest);stroke:var(--md-default-fg-color--lighter)}defs #statediagram-barbEnd{stroke:var(--md-mermaid-edge-color)}.entityTitleText{fill:var(--md-mermaid-label-fg-color)}.attributeBoxEven,.attributeBoxOdd{fill:var(--md-mermaid-node-bg-color);stroke:var(--md-mermaid-node-fg-color)}.entityBox{fill:var(--md-mermaid-label-bg-color);stroke:var(--md-mermaid-node-fg-color)}.entityLabel{fill:var(--md-mermaid-label-fg-color);font-family:var(--md-mermaid-font-family)}.relationshipLabelBox{fill:var(--md-mermaid-label-bg-color);fill-opacity:1;background-color:var(--md-mermaid-label-bg-color);opacity:1}.relationshipLabel{fill:var(--md-mermaid-label-fg-color)}.relationshipLine{stroke:var(--md-mermaid-edge-color)}defs #ONE_OR_MORE_END *,defs #ONE_OR_MORE_START *,defs #ONLY_ONE_END *,defs #ONLY_ONE_START *,defs #ZERO_OR_MORE_END *,defs #ZERO_OR_MORE_START *,defs #ZERO_OR_ONE_END *,defs #ZERO_OR_ONE_START *{stroke:var(--md-mermaid-edge-color)!important}defs #ZERO_OR_MORE_END circle,defs #ZERO_OR_MORE_START circle{fill:var(--md-mermaid-label-bg-color)}text:not([class]):last-child{fill:var(--md-mermaid-label-fg-color)}.actor{fill:var(--md-mermaid-sequence-actor-bg-color);stroke:var(--md-mermaid-sequence-actor-border-color)}text.actor>tspan{fill:var(--md-mermaid-sequence-actor-fg-color);font-family:var(--md-mermaid-font-family)}line{stroke:var(--md-mermaid-sequence-actor-line-color)}.actor-man circle,.actor-man line{fill:var(--md-mermaid-sequence-actorman-bg-color);stroke:var(--md-mermaid-sequence-actorman-line-color)}.messageLine0,.messageLine1{stroke:var(--md-mermaid-sequence-message-line-color)}.note{fill:var(--md-mermaid-sequence-note-bg-color);stroke:var(--md-mermaid-sequence-note-border-color)}.loopText,.loopText>tspan,.messageText,.noteText>tspan{stroke:none;font-family:var(--md-mermaid-font-family)!important}.messageText{fill:var(--md-mermaid-sequence-message-fg-color)}.loopText,.loopText>tspan{fill:var(--md-mermaid-sequence-loop-fg-color)}.noteText>tspan{fill:var(--md-mermaid-sequence-note-fg-color)}#arrowhead path{fill:var(--md-mermaid-sequence-message-line-color);stroke:none}.loopLine{fill:var(--md-mermaid-sequence-loop-bg-color);stroke:var(--md-mermaid-sequence-loop-border-color)}.labelBox{fill:var(--md-mermaid-sequence-label-bg-color);stroke:none}.labelText,.labelText>span{fill:var(--md-mermaid-sequence-label-fg-color);font-family:var(--md-mermaid-font-family)}.sequenceNumber{fill:var(--md-mermaid-sequence-number-fg-color)}rect.rect{fill:var(--md-mermaid-sequence-box-bg-color);stroke:none}rect.rect+text.text{fill:var(--md-mermaid-sequence-box-fg-color)}defs #sequencenumber{fill:var(--md-mermaid-sequence-number-bg-color)!important}", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n map,\n of,\n shareReplay,\n tap\n} from \"rxjs\"\n\nimport { watchScript } from \"~/browser\"\nimport { h } from \"~/utilities\"\n\nimport { Component } from \"../../_\"\n\nimport themeCSS from \"./index.css\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mermaid diagram\n */\nexport interface Mermaid {}\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Mermaid instance observable\n */\nlet mermaid$: Observable<void>\n\n/**\n * Global sequence number for diagrams\n */\nlet sequence = 0\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Fetch Mermaid script\n *\n * @returns Mermaid scripts observable\n */\nfunction fetchScripts(): Observable<void> {\n return typeof mermaid === \"undefined\" || mermaid instanceof Element\n ? watchScript(\"https://unpkg.com/mermaid@11/dist/mermaid.min.js\")\n : of(undefined)\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount Mermaid diagram\n *\n * @param el - Code block element\n *\n * @returns Mermaid diagram component observable\n */\nexport function mountMermaid(\n el: HTMLElement\n): Observable<Component<Mermaid>> {\n el.classList.remove(\"mermaid\") // Hack: mitigate https://bit.ly/3CiN6Du\n mermaid$ ||= fetchScripts()\n .pipe(\n tap(() => mermaid.initialize({\n startOnLoad: false,\n themeCSS,\n sequence: {\n actorFontSize: \"16px\", // Hack: mitigate https://bit.ly/3y0NEi3\n messageFontSize: \"16px\",\n noteFontSize: \"16px\"\n }\n })),\n map(() => undefined),\n shareReplay(1)\n )\n\n /* Render diagram */\n mermaid$.subscribe(async () => {\n el.classList.add(\"mermaid\") // Hack: mitigate https://bit.ly/3CiN6Du\n const id = `__mermaid_${sequence++}`\n\n /* Create host element to replace code block */\n const host = h(\"div\", { class: \"mermaid\" })\n const text = el.textContent\n\n /* Render and inject diagram */\n const { svg, fn } = await mermaid.render(id, text)\n\n /* Create a shadow root and inject diagram */\n const shadow = host.attachShadow({ mode: \"closed\" })\n shadow.innerHTML = svg\n\n /* Replace code block with diagram and bind functions */\n el.replaceWith(host)\n fn?.(shadow)\n })\n\n /* Create and return component */\n return mermaid$\n .pipe(\n map(() => ({ ref: el }))\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable, of } from \"rxjs\"\n\nimport { renderTable } from \"~/templates\"\nimport { h } from \"~/utilities\"\n\nimport { Component } from \"../../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Data table\n */\nexport interface DataTable {}\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Sentinel for replacement\n */\nconst sentinel = h(\"table\")\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount data table\n *\n * This function wraps a data table in another scrollable container, so it can\n * be smoothly scrolled on smaller screen sizes and won't break the layout.\n *\n * @param el - Data table element\n *\n * @returns Data table component observable\n */\nexport function mountDataTable(\n el: HTMLElement\n): Observable<Component<DataTable>> {\n el.replaceWith(sentinel)\n sentinel.replaceWith(renderTable(el))\n\n /* Create and return component */\n return of({ ref: el })\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n Subject,\n animationFrameScheduler,\n asyncScheduler,\n auditTime,\n combineLatest,\n defer,\n endWith,\n filter,\n finalize,\n fromEvent,\n ignoreElements,\n map,\n merge,\n skip,\n startWith,\n subscribeOn,\n takeUntil,\n tap,\n withLatestFrom\n} from \"rxjs\"\n\nimport { feature } from \"~/_\"\nimport {\n Viewport,\n getElement,\n getElementContentOffset,\n getElementContentSize,\n getElementOffset,\n getElementSize,\n getElements,\n watchElementContentOffset,\n watchElementSize,\n watchElementVisibility\n} from \"~/browser\"\nimport { renderTabbedControl } from \"~/templates\"\nimport { h } from \"~/utilities\"\n\nimport { Component } from \"../../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Content tabs\n */\nexport interface ContentTabs {\n active: HTMLLabelElement /* Active tab label */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n viewport$: Observable<Viewport> /* Viewport observable */\n target$: Observable<HTMLElement> /* Location target observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch content tabs\n *\n * @param inputs - Content tabs input elements\n *\n * @returns Content tabs observable\n */\nexport function watchContentTabs(\n inputs: HTMLInputElement[]\n): Observable<ContentTabs> {\n const initial = inputs.find(input => input.checked) || inputs[0]\n return merge(...inputs.map(input => fromEvent(input, \"change\")\n .pipe(\n map(() => getElement<HTMLLabelElement>(`label[for=\"${input.id}\"]`))\n )\n ))\n .pipe(\n startWith(getElement<HTMLLabelElement>(`label[for=\"${initial.id}\"]`)),\n map(active => ({ active }))\n )\n}\n\n/**\n * Mount content tabs\n *\n * @param el - Content tabs element\n * @param options - Options\n *\n * @returns Content tabs component observable\n */\nexport function mountContentTabs(\n el: HTMLElement, { viewport$, target$ }: MountOptions\n): Observable<Component<ContentTabs>> {\n const container = getElement(\".tabbed-labels\", el)\n const inputs = getElements<HTMLInputElement>(\":scope > input\", el)\n\n /* Render content tab previous button for pagination */\n const prev = renderTabbedControl(\"prev\")\n el.append(prev)\n\n /* Render content tab next button for pagination */\n const next = renderTabbedControl(\"next\")\n el.append(next)\n\n /* Mount component on subscription */\n return defer(() => {\n const push$ = new Subject<ContentTabs>()\n const done$ = push$.pipe(ignoreElements(), endWith(true))\n combineLatest([push$, watchElementSize(el), watchElementVisibility(el)])\n .pipe(\n takeUntil(done$),\n auditTime(1, animationFrameScheduler)\n )\n .subscribe({\n\n /* Handle emission */\n next([{ active }, size]) {\n const offset = getElementOffset(active)\n const { width } = getElementSize(active)\n\n /* Set tab indicator offset and width */\n el.style.setProperty(\"--md-indicator-x\", `${offset.x}px`)\n el.style.setProperty(\"--md-indicator-width\", `${width}px`)\n\n /* Scroll container to active content tab */\n const content = getElementContentOffset(container)\n if (\n offset.x < content.x ||\n offset.x + width > content.x + size.width\n )\n container.scrollTo({\n left: Math.max(0, offset.x - 16),\n behavior: \"smooth\"\n })\n },\n\n /* Handle complete */\n complete() {\n el.style.removeProperty(\"--md-indicator-x\")\n el.style.removeProperty(\"--md-indicator-width\")\n }\n })\n\n /* Hide content tab buttons on borders */\n combineLatest([\n watchElementContentOffset(container),\n watchElementSize(container)\n ])\n .pipe(\n takeUntil(done$)\n )\n .subscribe(([offset, size]) => {\n const content = getElementContentSize(container)\n prev.hidden = offset.x < 16\n next.hidden = offset.x > content.width - size.width - 16\n })\n\n /* Paginate content tab container on click */\n merge(\n fromEvent(prev, \"click\").pipe(map(() => -1)),\n fromEvent(next, \"click\").pipe(map(() => +1))\n )\n .pipe(\n takeUntil(done$)\n )\n .subscribe(direction => {\n const { width } = getElementSize(container)\n container.scrollBy({\n left: width * direction,\n behavior: \"smooth\"\n })\n })\n\n /* Switch to content tab target */\n target$\n .pipe(\n takeUntil(done$),\n filter(input => inputs.includes(input as HTMLInputElement))\n )\n .subscribe(input => input.click())\n\n /* Add link to each content tab label */\n container.classList.add(\"tabbed-labels--linked\")\n for (const input of inputs) {\n const label = getElement<HTMLLabelElement>(`label[for=\"${input.id}\"]`)\n label.replaceChildren(h(\"a\", {\n href: `#${label.htmlFor}`,\n tabIndex: -1\n }, ...Array.from(label.childNodes)))\n\n /* Allow to copy link without scrolling to anchor */\n fromEvent<MouseEvent>(label.firstElementChild!, \"click\")\n .pipe(\n takeUntil(done$),\n filter(ev => !(ev.metaKey || ev.ctrlKey)),\n tap(ev => {\n ev.preventDefault()\n ev.stopPropagation()\n })\n )\n // @todo we might need to remove the anchor link on complete\n .subscribe(() => {\n history.replaceState({}, \"\", `#${label.htmlFor}`)\n label.click()\n })\n }\n\n /* Set up linking of content tabs, if enabled */\n if (feature(\"content.tabs.link\"))\n push$.pipe(\n skip(1),\n withLatestFrom(viewport$)\n )\n .subscribe(([{ active }, { offset }]) => {\n const tab = active.innerText.trim()\n if (active.hasAttribute(\"data-md-switching\")) {\n active.removeAttribute(\"data-md-switching\")\n\n /* Determine viewport offset of active tab */\n } else {\n const y = el.offsetTop - offset.y\n\n /* Passively activate other tabs */\n for (const set of getElements(\"[data-tabs]\"))\n for (const input of getElements<HTMLInputElement>(\n \":scope > input\", set\n )) {\n const label = getElement(`label[for=\"${input.id}\"]`)\n if (\n label !== active &&\n label.innerText.trim() === tab\n ) {\n label.setAttribute(\"data-md-switching\", \"\")\n input.click()\n break\n }\n }\n\n /* Bring active tab into view */\n window.scrollTo({\n top: el.offsetTop - y\n })\n\n /* Persist active tabs in local storage */\n const tabs = __md_get<string[]>(\"__tabs\") || []\n __md_set(\"__tabs\", [...new Set([tab, ...tabs])])\n }\n })\n\n /* Pause media (audio, video) on switch - see https://bit.ly/3Bk6cel */\n push$.pipe(takeUntil(done$))\n .subscribe(() => {\n for (const media of getElements<HTMLAudioElement>(\"audio, video\", el))\n media.pause()\n })\n\n /* Create and return component */\n return watchContentTabs(inputs)\n .pipe(\n tap(state => push$.next(state)),\n finalize(() => push$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n })\n .pipe(\n subscribeOn(asyncScheduler)\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable, merge } from \"rxjs\"\n\nimport { feature } from \"~/_\"\nimport { Viewport, getElements } from \"~/browser\"\n\nimport { Component } from \"../../_\"\nimport {\n Tooltip,\n mountInlineTooltip2\n} from \"../../tooltip2\"\nimport {\n Annotation,\n mountAnnotationBlock\n} from \"../annotation\"\nimport {\n CodeBlock,\n mountCodeBlock\n} from \"../code\"\nimport {\n Details,\n mountDetails\n} from \"../details\"\nimport {\n Mermaid,\n mountMermaid\n} from \"../mermaid\"\nimport {\n DataTable,\n mountDataTable\n} from \"../table\"\nimport {\n ContentTabs,\n mountContentTabs\n} from \"../tabs\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Content\n */\nexport type Content =\n | Annotation\n | CodeBlock\n | ContentTabs\n | DataTable\n | Details\n | Mermaid\n | Tooltip\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n viewport$: Observable<Viewport> /* Viewport observable */\n target$: Observable<HTMLElement> /* Location target observable */\n print$: Observable<boolean> /* Media print observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount content\n *\n * This function mounts all components that are found in the content of the\n * actual article, including code blocks, data tables and details.\n *\n * @param el - Content element\n * @param options - Options\n *\n * @returns Content component observable\n */\nexport function mountContent(\n el: HTMLElement, { viewport$, target$, print$ }: MountOptions\n): Observable<Component<Content>> {\n return merge(\n\n /* Annotations */\n ...getElements(\".annotate:not(.highlight)\", el)\n .map(child => mountAnnotationBlock(child, { target$, print$ })),\n\n /* Code blocks */\n ...getElements(\"pre:not(.mermaid) > code\", el)\n .map(child => mountCodeBlock(child, { target$, print$ })),\n\n /* Mermaid diagrams */\n ...getElements(\"pre.mermaid\", el)\n .map(child => mountMermaid(child)),\n\n /* Data tables */\n ...getElements(\"table:not([class])\", el)\n .map(child => mountDataTable(child)),\n\n /* Details */\n ...getElements(\"details\", el)\n .map(child => mountDetails(child, { target$, print$ })),\n\n /* Content tabs */\n ...getElements(\"[data-tabs]\", el)\n .map(child => mountContentTabs(child, { viewport$, target$ })),\n\n /* Tooltips */\n ...getElements(\"[title]\", el)\n .filter(() => feature(\"content.tooltips\"))\n .map(child => mountInlineTooltip2(child, { viewport$ }))\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n Subject,\n defer,\n delay,\n finalize,\n map,\n merge,\n of,\n switchMap,\n tap\n} from \"rxjs\"\n\nimport { getElement } from \"~/browser\"\n\nimport { Component } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Dialog\n */\nexport interface Dialog {\n message: string /* Dialog message */\n active: boolean /* Dialog is active */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n alert$: Subject<string> /* Alert subject */\n}\n\n/**\n * Mount options\n */\ninterface MountOptions {\n alert$: Subject<string> /* Alert subject */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch dialog\n *\n * @param _el - Dialog element\n * @param options - Options\n *\n * @returns Dialog observable\n */\nexport function watchDialog(\n _el: HTMLElement, { alert$ }: WatchOptions\n): Observable<Dialog> {\n return alert$\n .pipe(\n switchMap(message => merge(\n of(true),\n of(false).pipe(delay(2000))\n )\n .pipe(\n map(active => ({ message, active }))\n )\n )\n )\n}\n\n/**\n * Mount dialog\n *\n * This function reveals the dialog in the right corner when a new alert is\n * emitted through the subject that is passed as part of the options.\n *\n * @param el - Dialog element\n * @param options - Options\n *\n * @returns Dialog component observable\n */\nexport function mountDialog(\n el: HTMLElement, options: MountOptions\n): Observable<Component<Dialog>> {\n const inner = getElement(\".md-typeset\", el)\n return defer(() => {\n const push$ = new Subject<Dialog>()\n push$.subscribe(({ message, active }) => {\n el.classList.toggle(\"md-dialog--active\", active)\n inner.textContent = message\n })\n\n /* Create and return component */\n return watchDialog(el, options)\n .pipe(\n tap(state => push$.next(state)),\n finalize(() => push$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n })\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n EMPTY,\n Observable,\n Subject,\n animationFrameScheduler,\n asyncScheduler,\n auditTime,\n combineLatest,\n debounceTime,\n defer,\n distinctUntilChanged,\n filter,\n finalize,\n map,\n merge,\n of,\n subscribeOn,\n tap,\n throttleTime\n} from \"rxjs\"\n\nimport {\n ElementOffset,\n getElement,\n getElementContainer,\n getElementOffset,\n getElementSize,\n watchElementContentOffset,\n watchElementFocus,\n watchElementHover\n} from \"~/browser\"\nimport { renderTooltip } from \"~/templates\"\n\nimport { Component } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Tooltip\n */\nexport interface Tooltip {\n active: boolean /* Tooltip is active */\n offset: ElementOffset /* Tooltip offset */\n}\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Global sequence number for tooltips\n */\nlet sequence = 0\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch tooltip\n *\n * This function will append the tooltip temporarily to compute its width,\n * which is necessary for correct centering, and then removing it again.\n *\n * @param el - Tooltip element\n * @param host - Host element\n *\n * @returns Tooltip observable\n */\nexport function watchTooltip(\n el: HTMLElement, host: HTMLElement\n): Observable<Tooltip> {\n document.body.append(el)\n\n /* Compute width and remove tooltip immediately */\n const { width } = getElementSize(el)\n el.style.setProperty(\"--md-tooltip-width\", `${width}px`)\n el.remove()\n\n /* Retrieve and watch containing element */\n const container = getElementContainer(host)\n const scroll$ =\n typeof container !== \"undefined\"\n ? watchElementContentOffset(container)\n : of({ x: 0, y: 0 })\n\n /* Compute tooltip visibility */\n const active$ = merge(\n watchElementFocus(host),\n watchElementHover(host)\n )\n .pipe(\n distinctUntilChanged()\n )\n\n /* Compute tooltip offset */\n return combineLatest([active$, scroll$])\n .pipe(\n map(([active, scroll]) => {\n let { x, y } = getElementOffset(host)\n const size = getElementSize(host)\n\n /**\n * Experimental: fix handling of tables - see https://bit.ly/3TQEj5O\n *\n * If this proves to be a viable fix, we should refactor tooltip\n * positioning and somehow streamline the current process. This might\n * also fix positioning for annotations inside tables, which is another\n * limitation.\n */\n const table = host.closest(\"table\")\n if (table && host.parentElement) {\n x += table.offsetLeft + host.parentElement.offsetLeft\n y += table.offsetTop + host.parentElement.offsetTop\n }\n return {\n active,\n offset: {\n x: x - scroll.x + size.width / 2 - width / 2,\n y: y - scroll.y + size.height + 8\n }\n }\n })\n )\n}\n\n/**\n * Mount tooltip\n *\n * @param el - Host element\n *\n * @returns Tooltip component observable\n */\nexport function mountTooltip(\n el: HTMLElement\n): Observable<Component<Tooltip>> {\n const title = el.title\n if (!title.length)\n return EMPTY\n\n /* Render tooltip and set title from host element */\n const id = `__tooltip_${sequence++}`\n const tooltip = renderTooltip(id, \"inline\")\n const typeset = getElement(\".md-typeset\", tooltip)\n typeset.innerHTML = title\n\n /* Mount component on subscription */\n return defer(() => {\n const push$ = new Subject<Tooltip>()\n push$.subscribe({\n\n /* Handle emission */\n next({ offset }) {\n tooltip.style.setProperty(\"--md-tooltip-x\", `${offset.x}px`)\n tooltip.style.setProperty(\"--md-tooltip-y\", `${offset.y}px`)\n },\n\n /* Handle complete */\n complete() {\n tooltip.style.removeProperty(\"--md-tooltip-x\")\n tooltip.style.removeProperty(\"--md-tooltip-y\")\n }\n })\n\n /* Toggle tooltip presence to mitigate empty lines when copying */\n merge(\n push$.pipe(filter(({ active }) => active)),\n push$.pipe(debounceTime(250), filter(({ active }) => !active))\n )\n .subscribe({\n\n /* Handle emission */\n next({ active }) {\n if (active) {\n el.insertAdjacentElement(\"afterend\", tooltip)\n el.setAttribute(\"aria-describedby\", id)\n el.removeAttribute(\"title\")\n } else {\n tooltip.remove()\n el.removeAttribute(\"aria-describedby\")\n el.setAttribute(\"title\", title)\n }\n },\n\n /* Handle complete */\n complete() {\n tooltip.remove()\n el.removeAttribute(\"aria-describedby\")\n el.setAttribute(\"title\", title)\n }\n })\n\n /* Toggle tooltip visibility */\n push$\n .pipe(\n auditTime(16, animationFrameScheduler)\n )\n .subscribe(({ active }) => {\n tooltip.classList.toggle(\"md-tooltip--active\", active)\n })\n\n // @todo - refactor positioning together with annotations \u2013 there are\n // several things that overlap and are identical in handling\n\n /* Track relative origin of tooltip */\n push$\n .pipe(\n throttleTime(125, animationFrameScheduler),\n filter(() => !!el.offsetParent),\n map(() => el.offsetParent!.getBoundingClientRect()),\n map(({ x }) => x)\n )\n .subscribe({\n\n /* Handle emission */\n next(origin) {\n if (origin)\n tooltip.style.setProperty(\"--md-tooltip-0\", `${-origin}px`)\n else\n tooltip.style.removeProperty(\"--md-tooltip-0\")\n },\n\n /* Handle complete */\n complete() {\n tooltip.style.removeProperty(\"--md-tooltip-0\")\n }\n })\n\n /* Create and return component */\n return watchTooltip(tooltip, el)\n .pipe(\n tap(state => push$.next(state)),\n finalize(() => push$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n })\n .pipe(\n subscribeOn(asyncScheduler)\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n Subject,\n bufferCount,\n combineLatest,\n combineLatestWith,\n defer,\n distinctUntilChanged,\n distinctUntilKeyChanged,\n endWith,\n filter,\n from,\n ignoreElements,\n map,\n mergeMap,\n mergeWith,\n of,\n shareReplay,\n startWith,\n switchMap,\n takeUntil\n} from \"rxjs\"\n\nimport { feature } from \"~/_\"\nimport {\n Viewport,\n getElements,\n watchElementSize,\n watchToggle\n} from \"~/browser\"\n\nimport { Component } from \"../../_\"\nimport { Main } from \"../../main\"\nimport {\n Tooltip,\n mountTooltip\n} from \"../../tooltip\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Header\n */\nexport interface Header {\n height: number /* Header visible height */\n hidden: boolean /* Header is hidden */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n viewport$: Observable<Viewport> /* Viewport observable */\n}\n\n/**\n * Mount options\n */\ninterface MountOptions {\n viewport$: Observable<Viewport> /* Viewport observable */\n header$: Observable<Header> /* Header observable */\n main$: Observable<Main> /* Main area observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Compute whether the header is hidden\n *\n * If the user scrolls past a certain threshold, the header can be hidden when\n * scrolling down, and shown when scrolling up.\n *\n * @param options - Options\n *\n * @returns Toggle observable\n */\nfunction isHidden({ viewport$ }: WatchOptions): Observable<boolean> {\n if (!feature(\"header.autohide\"))\n return of(false)\n\n /* Compute direction and turning point */\n const direction$ = viewport$\n .pipe(\n map(({ offset: { y } }) => y),\n bufferCount(2, 1),\n map(([a, b]) => [a < b, b] as const),\n distinctUntilKeyChanged(0)\n )\n\n /* Compute whether header should be hidden */\n const hidden$ = combineLatest([viewport$, direction$])\n .pipe(\n filter(([{ offset }, [, y]]) => Math.abs(y - offset.y) > 100),\n map(([, [direction]]) => direction),\n distinctUntilChanged()\n )\n\n /* Compute threshold for hiding */\n const search$ = watchToggle(\"search\")\n return combineLatest([viewport$, search$])\n .pipe(\n map(([{ offset }, search]) => offset.y > 400 && !search),\n distinctUntilChanged(),\n switchMap(active => active ? hidden$ : of(false)),\n startWith(false)\n )\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch header\n *\n * @param el - Header element\n * @param options - Options\n *\n * @returns Header observable\n */\nexport function watchHeader(\n el: HTMLElement, options: WatchOptions\n): Observable<Header> {\n return defer(() => combineLatest([\n watchElementSize(el),\n isHidden(options)\n ]))\n .pipe(\n map(([{ height }, hidden]) => ({\n height,\n hidden\n })),\n distinctUntilChanged((a, b) => (\n a.height === b.height &&\n a.hidden === b.hidden\n )),\n shareReplay(1)\n )\n}\n\n/**\n * Mount header\n *\n * This function manages the different states of the header, i.e. whether it's\n * hidden or rendered with a shadow. This depends heavily on the main area.\n *\n * @param el - Header element\n * @param options - Options\n *\n * @returns Header component observable\n */\nexport function mountHeader(\n el: HTMLElement, { header$, main$ }: MountOptions\n): Observable<Component<Header | Tooltip>> {\n return defer(() => {\n const push$ = new Subject<Main>()\n const done$ = push$.pipe(ignoreElements(), endWith(true))\n push$\n .pipe(\n distinctUntilKeyChanged(\"active\"),\n combineLatestWith(header$)\n )\n .subscribe(([{ active }, { hidden }]) => {\n el.classList.toggle(\"md-header--shadow\", active && !hidden)\n el.hidden = hidden\n })\n\n /* Mount tooltips, if enabled */\n const tooltips = from(getElements(\"[title]\", el))\n .pipe(\n filter(() => feature(\"content.tooltips\")),\n mergeMap(child => mountTooltip(child))\n )\n\n /* Link to main area */\n main$.subscribe(push$)\n\n /* Create and return component */\n return header$\n .pipe(\n takeUntil(done$),\n map(state => ({ ref: el, ...state })),\n mergeWith(tooltips.pipe(takeUntil(done$)))\n )\n })\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n EMPTY,\n Observable,\n Subject,\n defer,\n distinctUntilKeyChanged,\n finalize,\n map,\n tap\n} from \"rxjs\"\n\nimport {\n Viewport,\n getElementSize,\n getOptionalElement,\n watchViewportAt\n} from \"~/browser\"\n\nimport { Component } from \"../../_\"\nimport { Header } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Header\n */\nexport interface HeaderTitle {\n active: boolean /* Header title is active */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n viewport$: Observable<Viewport> /* Viewport observable */\n header$: Observable<Header> /* Header observable */\n}\n\n/**\n * Mount options\n */\ninterface MountOptions {\n viewport$: Observable<Viewport> /* Viewport observable */\n header$: Observable<Header> /* Header observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch header title\n *\n * @param el - Heading element\n * @param options - Options\n *\n * @returns Header title observable\n */\nexport function watchHeaderTitle(\n el: HTMLElement, { viewport$, header$ }: WatchOptions\n): Observable<HeaderTitle> {\n return watchViewportAt(el, { viewport$, header$ })\n .pipe(\n map(({ offset: { y } }) => {\n const { height } = getElementSize(el)\n return {\n active: y >= height\n }\n }),\n distinctUntilKeyChanged(\"active\")\n )\n}\n\n/**\n * Mount header title\n *\n * This function swaps the header title from the site title to the title of the\n * current page when the user scrolls past the first headline.\n *\n * @param el - Header title element\n * @param options - Options\n *\n * @returns Header title component observable\n */\nexport function mountHeaderTitle(\n el: HTMLElement, options: MountOptions\n): Observable<Component<HeaderTitle>> {\n return defer(() => {\n const push$ = new Subject<HeaderTitle>()\n push$.subscribe({\n\n /* Handle emission */\n next({ active }) {\n el.classList.toggle(\"md-header__title--active\", active)\n },\n\n /* Handle complete */\n complete() {\n el.classList.remove(\"md-header__title--active\")\n }\n })\n\n /* Obtain headline, if any */\n const heading = getOptionalElement(\".md-content h1\")\n if (typeof heading === \"undefined\")\n return EMPTY\n\n /* Create and return component */\n return watchHeaderTitle(heading, options)\n .pipe(\n tap(state => push$.next(state)),\n finalize(() => push$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n })\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n combineLatest,\n distinctUntilChanged,\n distinctUntilKeyChanged,\n map,\n switchMap\n} from \"rxjs\"\n\nimport {\n Viewport,\n watchElementSize\n} from \"~/browser\"\n\nimport { Header } from \"../header\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Main area\n */\nexport interface Main {\n offset: number /* Main area top offset */\n height: number /* Main area visible height */\n active: boolean /* Main area is active */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n viewport$: Observable<Viewport> /* Viewport observable */\n header$: Observable<Header> /* Header observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch main area\n *\n * This function returns an observable that computes the visual parameters of\n * the main area which depends on the viewport vertical offset and height, as\n * well as the height of the header element, if the header is fixed.\n *\n * @param el - Main area element\n * @param options - Options\n *\n * @returns Main area observable\n */\nexport function watchMain(\n el: HTMLElement, { viewport$, header$ }: WatchOptions\n): Observable<Main> {\n\n /* Compute necessary adjustment for header */\n const adjust$ = header$\n .pipe(\n map(({ height }) => height),\n distinctUntilChanged()\n )\n\n /* Compute the main area's top and bottom borders */\n const border$ = adjust$\n .pipe(\n switchMap(() => watchElementSize(el)\n .pipe(\n map(({ height }) => ({\n top: el.offsetTop,\n bottom: el.offsetTop + height\n })),\n distinctUntilKeyChanged(\"bottom\")\n )\n )\n )\n\n /* Compute the main area's offset, visible height and if we scrolled past */\n return combineLatest([adjust$, border$, viewport$])\n .pipe(\n map(([header, { top, bottom }, { offset: { y }, size: { height } }]) => {\n height = Math.max(0, height\n - Math.max(0, top - y, header)\n - Math.max(0, height + y - bottom)\n )\n return {\n offset: top - header,\n height,\n active: top - header <= y\n }\n }),\n distinctUntilChanged((a, b) => (\n a.offset === b.offset &&\n a.height === b.height &&\n a.active === b.active\n ))\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n Subject,\n asyncScheduler,\n defer,\n filter,\n finalize,\n fromEvent,\n map,\n mergeMap,\n observeOn,\n of,\n repeat,\n shareReplay,\n skip,\n startWith,\n takeUntil,\n tap,\n withLatestFrom\n} from \"rxjs\"\n\nimport { getElements, watchMedia } from \"~/browser\"\nimport { h } from \"~/utilities\"\n\nimport {\n Component,\n getComponentElement\n} from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Palette colors\n */\nexport interface PaletteColor {\n media?: string /* Media query */\n scheme?: string /* Color scheme */\n primary?: string /* Primary color */\n accent?: string /* Accent color */\n}\n\n/**\n * Palette\n */\nexport interface Palette {\n index: number /* Palette index */\n color: PaletteColor /* Palette colors */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch color palette\n *\n * @param inputs - Color palette element\n *\n * @returns Color palette observable\n */\nexport function watchPalette(\n inputs: HTMLInputElement[]\n): Observable<Palette> {\n const current = __md_get<Palette>(\"__palette\") || {\n index: inputs.findIndex(input => matchMedia(\n input.getAttribute(\"data-md-color-media\")!\n ).matches)\n }\n\n /* Emit changes in color palette */\n const index = Math.max(0, Math.min(current.index, inputs.length - 1))\n return of(...inputs)\n .pipe(\n mergeMap(input => fromEvent(input, \"change\").pipe(map(() => input))),\n startWith(inputs[index]),\n map(input => ({\n index: inputs.indexOf(input),\n color: {\n media: input.getAttribute(\"data-md-color-media\"),\n scheme: input.getAttribute(\"data-md-color-scheme\"),\n primary: input.getAttribute(\"data-md-color-primary\"),\n accent: input.getAttribute(\"data-md-color-accent\")\n }\n } as Palette)),\n shareReplay(1)\n )\n}\n\n/**\n * Mount color palette\n *\n * @param el - Color palette element\n *\n * @returns Color palette component observable\n */\nexport function mountPalette(\n el: HTMLElement\n): Observable<Component<Palette>> {\n const inputs = getElements<HTMLInputElement>(\"input\", el)\n const meta = h(\"meta\", { name: \"theme-color\" })\n document.head.appendChild(meta)\n\n // Add color scheme meta tag\n const scheme = h(\"meta\", { name: \"color-scheme\" })\n document.head.appendChild(scheme)\n\n /* Mount component on subscription */\n const media$ = watchMedia(\"(prefers-color-scheme: light)\")\n return defer(() => {\n const push$ = new Subject<Palette>()\n push$.subscribe(palette => {\n document.body.setAttribute(\"data-md-color-switching\", \"\")\n\n /* Retrieve color palette for system preference */\n if (palette.color.media === \"(prefers-color-scheme)\") {\n const media = matchMedia(\"(prefers-color-scheme: light)\")\n const input = document.querySelector(media.matches\n ? \"[data-md-color-media='(prefers-color-scheme: light)']\"\n : \"[data-md-color-media='(prefers-color-scheme: dark)']\"\n )!\n\n /* Retrieve colors for system preference */\n palette.color.scheme = input.getAttribute(\"data-md-color-scheme\")!\n palette.color.primary = input.getAttribute(\"data-md-color-primary\")!\n palette.color.accent = input.getAttribute(\"data-md-color-accent\")!\n }\n\n /* Set color palette */\n for (const [key, value] of Object.entries(palette.color))\n document.body.setAttribute(`data-md-color-${key}`, value)\n\n /* Set toggle visibility */\n for (let index = 0; index < inputs.length; index++) {\n const label = inputs[index].nextElementSibling\n if (label instanceof HTMLElement)\n label.hidden = palette.index !== index\n }\n\n /* Persist preference in local storage */\n __md_set(\"__palette\", palette)\n })\n\n // Handle color switch on Enter or Space - see https://t.ly/YIhVj\n fromEvent<KeyboardEvent>(el, \"keydown\").pipe(\n filter(ev => ev.key === \"Enter\"),\n withLatestFrom(push$, (_, palette) => palette)\n )\n .subscribe(({ index }) => {\n index = (index + 1) % inputs.length\n inputs[index].click()\n inputs[index].focus()\n })\n\n /* Update theme-color meta tag */\n push$\n .pipe(\n map(() => {\n const header = getComponentElement(\"header\")\n const style = window.getComputedStyle(header)\n\n // Set color scheme\n scheme.content = style.colorScheme\n\n /* Return color in hexadecimal format */\n return style.backgroundColor.match(/\\d+/g)!\n .map(value => (+value).toString(16).padStart(2, \"0\"))\n .join(\"\")\n })\n )\n .subscribe(color => meta.content = `#${color}`)\n\n /* Revert transition durations after color switch */\n push$.pipe(observeOn(asyncScheduler))\n .subscribe(() => {\n document.body.removeAttribute(\"data-md-color-switching\")\n })\n\n /* Create and return component */\n return watchPalette(inputs)\n .pipe(\n takeUntil(media$.pipe(skip(1))),\n repeat(),\n tap(state => push$.next(state)),\n finalize(() => push$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n })\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n Subject,\n defer,\n finalize,\n map,\n tap\n} from \"rxjs\"\n\nimport { Component } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Progress indicator\n */\nexport interface Progress {\n value: number // Progress value\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n progress$: Subject<number> // Progress subject\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount progress indicator\n *\n * @param el - Progress indicator element\n * @param options - Options\n *\n * @returns Progress indicator component observable\n */\nexport function mountProgress(\n el: HTMLElement, { progress$ }: MountOptions\n): Observable<Component<Progress>> {\n\n // Mount component on subscription\n return defer(() => {\n const push$ = new Subject<Progress>()\n push$.subscribe(({ value }) => {\n el.style.setProperty(\"--md-progress-value\", `${value}`)\n })\n\n // Create and return component\n return progress$\n .pipe(\n tap(value => push$.next({ value })),\n finalize(() => push$.complete()),\n map(value => ({ ref: el, value }))\n )\n })\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport ClipboardJS from \"clipboard\"\nimport {\n Observable,\n Subject,\n map,\n tap\n} from \"rxjs\"\n\nimport { translation } from \"~/_\"\nimport { getElement } from \"~/browser\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Setup options\n */\ninterface SetupOptions {\n alert$: Subject<string> /* Alert subject */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Extract text to copy\n *\n * @param el - HTML element\n *\n * @returns Extracted text\n */\nfunction extract(el: HTMLElement): string {\n el.setAttribute(\"data-md-copying\", \"\")\n const copy = el.closest(\"[data-copy]\")\n const text = copy\n ? copy.getAttribute(\"data-copy\")!\n : el.innerText\n el.removeAttribute(\"data-md-copying\")\n return text.trimEnd()\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set up Clipboard.js integration\n *\n * @param options - Options\n */\nexport function setupClipboardJS(\n { alert$ }: SetupOptions\n): void {\n if (ClipboardJS.isSupported()) {\n new Observable<ClipboardJS.Event>(subscriber => {\n new ClipboardJS(\"[data-clipboard-target], [data-clipboard-text]\", {\n text: el => (\n el.getAttribute(\"data-clipboard-text\")! ||\n extract(getElement(\n el.getAttribute(\"data-clipboard-target\")!\n ))\n )\n })\n .on(\"success\", ev => subscriber.next(ev))\n })\n .pipe(\n tap(ev => {\n const trigger = ev.trigger as HTMLElement\n trigger.focus()\n }),\n map(() => translation(\"clipboard.copied\"))\n )\n .subscribe(alert$)\n }\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n catchError,\n map,\n of\n} from \"rxjs\"\n\nimport {\n getElement,\n getElements,\n requestXML\n} from \"~/browser\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Sitemap, i.e. a list of URLs\n */\nexport type Sitemap = Map<string, URL[]>\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Resolve URL to the given base URL\n *\n * When serving the site with instant navigation, MkDocs will set the hostname\n * to the value as specified in `dev_addr`, but the browser allows for several\n * hostnames to be used: `localhost`, `127.0.0.1` or even `0.0.0.0`, depending\n * on configuration. This function resolves the URL to the given hostname.\n *\n * @param url - URL\n * @param base - Base URL\n *\n * @returns Resolved URL\n */\nfunction resolve(url: URL, base: URL) {\n url.protocol = base.protocol\n url.hostname = base.hostname\n return url\n}\n\n/**\n * Extract sitemap from document\n *\n * This function extracts the URLs and alternate links from the document, and\n * associates alternate links to the original URL as found in `loc`, allowing\n * the browser to navigate to the correct page when switching languages. The\n * format of the sitemap is expected to adhere to:\n *\n * ``` xml\n * <urlset>\n * <url>\n * <loc>...</loc>\n * <xhtml:link rel=\"alternate\" hreflang=\"en\" href=\"...\"/>\n * <xhtml:link rel=\"alternate\" hreflang=\"de\" href=\"...\"/>\n * ...\n * </url>\n * ...\n * </urlset>\n * ```\n *\n * @param document - Document\n * @param base - Base URL\n *\n * @returns Sitemap\n */\nfunction extract(document: Document, base: URL): Sitemap {\n const sitemap: Sitemap = new Map()\n for (const el of getElements(\"url\", document)) {\n const url = getElement(\"loc\", el)\n\n // Create entry for location and add it to the list of links\n const links = [resolve(new URL(url.textContent!), base)]\n sitemap.set(`${links[0]}`, links)\n\n // Attach alternate links to current entry\n for (const link of getElements(\"[rel=alternate]\", el)) {\n const href = link.getAttribute(\"href\")\n if (href != null)\n links.push(resolve(new URL(href), base))\n }\n }\n\n // Return sitemap\n return sitemap\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Fetch the sitemap for the given base URL\n *\n * If a network or parsing error occurs, we just default to an empty sitemap,\n * which means the caller should fall back to regular navigation.\n *\n * @param base - Base URL\n *\n * @returns Sitemap observable\n */\nexport function fetchSitemap(base: URL | string): Observable<Sitemap> {\n return requestXML(new URL(\"sitemap.xml\", base))\n .pipe(\n map(document => extract(document, new URL(base))),\n catchError(() => of(new Map())),\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n EMPTY,\n Observable,\n Subject,\n catchError,\n combineLatestWith,\n concat,\n debounceTime,\n distinctUntilChanged,\n distinctUntilKeyChanged,\n endWith,\n fromEvent,\n ignoreElements,\n map,\n merge,\n of,\n share,\n switchMap,\n tap,\n withLatestFrom\n} from \"rxjs\"\n\nimport { configuration, feature } from \"~/_\"\nimport {\n Viewport,\n getElements,\n getLocation,\n getOptionalElement,\n requestHTML,\n setLocation,\n setLocationHash\n} from \"~/browser\"\nimport { getComponentElement } from \"~/components\"\n\nimport { Sitemap, fetchSitemap } from \"../sitemap\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Setup options\n */\ninterface SetupOptions {\n location$: Subject<URL> // Location subject\n viewport$: Observable<Viewport> // Viewport observable\n progress$: Subject<number> // Progress subject\n}\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Handle clicks on internal URLs while skipping external URLs\n *\n * @param ev - Mouse event\n * @param sitemap - Sitemap\n *\n * @returns URL observable\n */\nfunction handle(\n ev: MouseEvent, sitemap: Sitemap\n): Observable<URL> {\n if (!(ev.target instanceof Element))\n return EMPTY\n\n // Skip, as target is not within a link - clicks on non-link elements are\n // also captured, which we need to exclude from processing\n const el = ev.target.closest(\"a\")\n if (el === null)\n return EMPTY\n\n // Skip, as link opens in new window - we now know we have captured a click\n // on a link, but the link either has a `target` property defined, or the\n // user pressed the `meta` or `ctrl` key to open it in a new window. Thus,\n // we need to filter this event as well.\n if (el.target || ev.metaKey || ev.ctrlKey)\n return EMPTY\n\n // Next, we must check if the URL is relevant for us, i.e., if it's an\n // internal link to a page that is managed by MkDocs. Only then we can be\n // sure that the structure of the page to be loaded adheres to the current\n // document structure and can subsequently be injected into it without doing\n // a full reload. For this reason, we must canonicalize the URL by removing\n // all search parameters and hash fragments.\n const url = new URL(el.href)\n url.search = url.hash = \"\"\n\n // Skip, if URL is not included in the sitemap - this could be the case when\n // linking between versions or languages, or to another page that the author\n // included as part of the build, but that is not managed by MkDocs. In that\n // case we must not continue with instant navigation.\n if (!sitemap.has(`${url}`))\n return EMPTY\n\n // We now know that we have a link to an internal page, so we prevent the\n // browser from navigation and emit the URL for instant navigation. Note that\n // this also includes anchor links, which means we need to implement anchor\n // positioning ourselves. The reason for this is that if we wouldn't manage\n // anchor links as well, scroll restoration will not work correctly (e.g.\n // following an anchor link and scrolling).\n ev.preventDefault()\n return of(new URL(el.href))\n}\n\n/**\n * Create a map of head elements for lookup and replacement\n *\n * @param document - Document\n *\n * @returns Tag map\n */\nfunction head(document: Document): Map<string, HTMLElement> {\n const tags = new Map<string, HTMLElement>()\n for (const el of getElements(\":scope > *\", document.head))\n tags.set(el.outerHTML, el)\n\n // Return tag map\n return tags\n}\n\n/**\n * Resolve relative URLs in the given document\n *\n * This function resolves relative `href` and `src` attributes, which can belong\n * to all sorts of tags, like meta tags, links, images, scripts and more.\n *\n * @param document - Document\n *\n * @returns Document observable\n */\nfunction resolve(document: Document): Observable<Document> {\n for (const el of getElements(\"[href], [src]\", document))\n for (const key of [\"href\", \"src\"]) {\n const value = el.getAttribute(key)\n if (value && !/^(?:[a-z]+:)?\\/\\//i.test(value)) {\n // @ts-expect-error - trick: self-assign to resolve URL\n el[key] = el[key]\n break\n }\n }\n\n // Return document observable\n return of(document)\n}\n\n/**\n * Inject the contents of a document into the current one\n *\n * @param next - Next document\n *\n * @returns Document observable\n */\nfunction inject(next: Document): Observable<Document> {\n for (const selector of [\n \"[data-md-component=announce]\",\n \"[data-md-component=container]\",\n \"[data-md-component=header-topic]\",\n \"[data-md-component=outdated]\",\n \"[data-md-component=logo]\",\n \"[data-md-component=skip]\",\n ...feature(\"navigation.tabs.sticky\")\n ? [\"[data-md-component=tabs]\"]\n : []\n ]) {\n const source = getOptionalElement(selector)\n const target = getOptionalElement(selector, next)\n if (\n typeof source !== \"undefined\" &&\n typeof target !== \"undefined\"\n ) {\n source.replaceWith(target)\n }\n }\n\n // Update meta tags\n const tags = head(document)\n for (const [html, el] of head(next))\n if (tags.has(html))\n tags.delete(html)\n else\n document.head.appendChild(el)\n\n // Remove meta tags that are not present in the new document\n for (const el of tags.values()) {\n const name = el.getAttribute(\"name\")\n // @todo - find a better way to handle attributes we add dynamically in\n // other components without mounting components on every navigation, as\n // this might impact overall performance - see https://t.ly/ehp_O\n if (name !== \"theme-color\" && name !== \"color-scheme\")\n el.remove()\n }\n\n // After components and meta tags were replaced, re-evaluate scripts\n // that were provided by the author as part of Markdown files\n const container = getComponentElement(\"container\")\n return concat(getElements(\"script\", container))\n .pipe(\n switchMap(el => {\n const script = next.createElement(\"script\")\n if (el.src) {\n for (const name of el.getAttributeNames())\n script.setAttribute(name, el.getAttribute(name)!)\n el.replaceWith(script)\n\n // Complete when script is loaded\n return new Observable(observer => {\n script.onload = () => observer.complete()\n })\n\n // Complete immediately\n } else {\n script.textContent = el.textContent\n el.replaceWith(script)\n return EMPTY\n }\n }),\n ignoreElements(),\n endWith(document)\n )\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set up instant navigation\n *\n * This is a heavily orchestrated operation - see inline comments to learn how\n * this works with Material for MkDocs, and how you can hook into it.\n *\n * @param options - Options\n *\n * @returns Document observable\n */\nexport function setupInstantNavigation(\n { location$, viewport$, progress$ }: SetupOptions\n): Observable<Document> {\n const config = configuration()\n if (location.protocol === \"file:\")\n return EMPTY\n\n // Load sitemap immediately, so we have it available when the user initiates\n // the first navigation request without any perceivable delay\n const sitemap$ = fetchSitemap(config.base)\n\n // Since we might be on a slow connection, the user might trigger multiple\n // instant navigation events that overlap. MkDocs produces relative URLs for\n // all internal links, which becomes a problem in this case, because we need\n // to change the base URL the moment the user clicks a link that should be\n // intercepted in order to be consistent with popstate, which means that the\n // base URL would now be incorrect when resolving another relative link from\n // the same site. For this reason we always resolve all relative links to\n // absolute links, so we can be sure this never happens.\n of(document)\n .subscribe(resolve)\n\n // --------------------------------------------------------------------------\n // Navigation interception\n // --------------------------------------------------------------------------\n\n // Intercept navigation - to keep the number of event listeners down we use\n // the fact that uncaptured events bubble up to the body. This has the nice\n // property that we don't need to detach and then re-attach event listeners\n // when the document is replaced after a navigation event.\n const instant$ =\n fromEvent<MouseEvent>(document.body, \"click\")\n .pipe(\n combineLatestWith(sitemap$),\n switchMap(([ev, sitemap]) => handle(ev, sitemap)),\n share()\n )\n\n // Intercept history change events, e.g. when the user uses the browser's\n // back or forward buttons, and emit new location for fetching and parsing\n const history$ =\n fromEvent<PopStateEvent>(window, \"popstate\")\n .pipe(\n map(getLocation),\n share()\n )\n\n // While it would be better UX to defer navigation events until the document\n // is fully fetched and parsed, we must schedule it here to synchronize with\n // popstate events, as they are emitted immediately. Moreover we need to\n // store the current viewport offset for scroll restoration later on.\n instant$.pipe(withLatestFrom(viewport$))\n .subscribe(([url, { offset }]) => {\n history.replaceState(offset, \"\")\n history.pushState(null, \"\", url)\n })\n\n // Emit URLs that should be fetched via instant navigation on location subject\n // which was passed into this function. The state of instant navigation can be\n // intercepted by other parts of the application, which can synchronously back\n // up or restore state before or after instant navigation happens.\n merge(instant$, history$)\n .subscribe(location$)\n\n // --------------------------------------------------------------------------\n // Fetching and parsing\n // --------------------------------------------------------------------------\n\n // Fetch document - we deduplicate requests to the same location, so we don't\n // end up with multiple requests for the same page. We use `switchMap`, since\n // we want to cancel the previous request when a new one is triggered, which\n // is automatically handled by the observable returned by `request`. This is\n // essential to ensure a good user experience, as we don't want to load pages\n // that are not needed anymore, e.g., when the user clicks multiple links in\n // quick succession or on slow connections. If the request fails for some\n // reason, we fall back and use regular navigation, forcing a reload.\n const document$ =\n location$.pipe(\n distinctUntilKeyChanged(\"pathname\"),\n switchMap(url => requestHTML(url, { progress$ })\n .pipe(\n catchError(() => {\n setLocation(url, true)\n return EMPTY\n })\n )\n ),\n\n // The document was successfully fetched and parsed, so we can inject its\n // contents into the currently active document\n switchMap(resolve),\n switchMap(inject),\n share()\n )\n\n // --------------------------------------------------------------------------\n // Scroll restoration\n // --------------------------------------------------------------------------\n\n // Handle scroll restoration - we must restore the viewport offset after the\n // document has been fetched and injected, and every time the user clicks an\n // anchor that leads to an element on the same page, which might also happen\n // when the user uses the back or forward button.\n merge(\n document$.pipe(withLatestFrom(location$, (_, url) => url)),\n\n // Handle instant navigation events that are triggered by the user clicking\n // on an anchor link with a hash fragment different from the current one, as\n // well as from popstate events, which are emitted when the user navigates\n // back and forth between pages.\n document$.pipe(\n switchMap(() => location$),\n distinctUntilKeyChanged(\"hash\"),\n ),\n\n // Handle instant navigation events that are triggered by the user clicking\n // on an anchor link with the same hash fragment as the current one in the\n // URL. It is essential that we only intercept those from instant navigation\n // events and not from history change events, or we'll end up in and endless\n // loop. The top-level history entry must be removed, as it will be replaced\n // with a new one, which would otherwise lead to a duplicate entry.\n location$.pipe(\n distinctUntilChanged((a, b) => (\n a.pathname === b.pathname &&\n a.hash === b.hash\n )),\n switchMap(() => instant$),\n tap(() => history.back())\n )\n )\n .subscribe(url => {\n\n // Check if the current history entry has a state, which happens when the\n // user presses the back or forward button to visit a page we've already\n // seen. If there's no state, it means a new page was visited and we must\n // scroll to the top, unless an anchor is given.\n if (history.state !== null || !url.hash) {\n window.scrollTo(0, history.state?.y ?? 0)\n } else {\n history.scrollRestoration = \"auto\"\n setLocationHash(url.hash)\n history.scrollRestoration = \"manual\"\n }\n })\n\n // Disable scroll restoration when an instant navigation event occurs, so the\n // browser does not immediately set the viewport offset to the prior history\n // entry, scrolling to the position on the same page, which would look odd.\n // Instead, we manually restore the position once the page has loaded.\n location$.subscribe(() => {\n history.scrollRestoration = \"manual\"\n })\n\n // Enable scroll restoration before window unloads - this is essential to\n // ensure that full reloads (F5) restore the viewport offset correctly. If\n // only popstate events wouldn't reset the viewport offset prior to their\n // emission, we could just reset this in popstate. Meh.\n fromEvent(window, \"beforeunload\")\n .subscribe(() => {\n history.scrollRestoration = \"auto\"\n })\n\n // Track viewport offset, so we can restore it when the user navigates back\n // and forth between pages. Note that this must be debounced and cannot be\n // done in popstate, as popstate has already removed the entry from the\n // history, which means it is too late.\n viewport$.pipe(\n distinctUntilKeyChanged(\"offset\"),\n debounceTime(100)\n )\n .subscribe(({ offset }) => {\n history.replaceState(offset, \"\")\n })\n\n // Return document observable\n return document$\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport escapeHTML from \"escape-html\"\n\nimport { SearchConfig } from \"../config\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Search highlight function\n *\n * @param value - Value\n *\n * @returns Highlighted value\n */\nexport type SearchHighlightFn = (value: string) => string\n\n/**\n * Search highlight factory function\n *\n * @param query - Query value\n *\n * @returns Search highlight function\n */\nexport type SearchHighlightFactoryFn = (query: string) => SearchHighlightFn\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Create a search highlighter\n *\n * @param config - Search configuration\n *\n * @returns Search highlight factory function\n */\nexport function setupSearchHighlighter(\n config: SearchConfig\n): SearchHighlightFactoryFn {\n // Hack: temporarily remove pure lookaheads and lookbehinds\n const regex = config.separator.split(\"|\").map(term => {\n const temp = term.replace(/(\\(\\?[!=<][^)]+\\))/g, \"\")\n return temp.length === 0 ? \"\uFFFD\" : term\n })\n .join(\"|\")\n\n const separator = new RegExp(regex, \"img\")\n const highlight = (_: unknown, data: string, term: string) => {\n return `${data}<mark data-md-highlight>${term}</mark>`\n }\n\n /* Return factory function */\n return (query: string) => {\n query = query\n .replace(/[\\s*+\\-:~^]+/g, \" \")\n .trim()\n\n /* Create search term match expression */\n const match = new RegExp(`(^|${config.separator}|)(${\n query\n .replace(/[|\\\\{}()[\\]^$+*?.-]/g, \"\\\\$&\")\n .replace(separator, \"|\")\n })`, \"img\")\n\n /* Highlight string value */\n return value => escapeHTML(value)\n .replace(match, highlight)\n .replace(/<\\/mark>(\\s+)<mark[^>]*>/img, \"$1\")\n }\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A RTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { SearchResult } from \"../../_\"\nimport { SearchIndex } from \"../../config\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Search message type\n */\nexport const enum SearchMessageType {\n SETUP, /* Search index setup */\n READY, /* Search index ready */\n QUERY, /* Search query */\n RESULT /* Search results */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Message containing the data necessary to setup the search index\n */\nexport interface SearchSetupMessage {\n type: SearchMessageType.SETUP /* Message type */\n data: SearchIndex /* Message data */\n}\n\n/**\n * Message indicating the search index is ready\n */\nexport interface SearchReadyMessage {\n type: SearchMessageType.READY /* Message type */\n}\n\n/**\n * Message containing a search query\n */\nexport interface SearchQueryMessage {\n type: SearchMessageType.QUERY /* Message type */\n data: string /* Message data */\n}\n\n/**\n * Message containing results for a search query\n */\nexport interface SearchResultMessage {\n type: SearchMessageType.RESULT /* Message type */\n data: SearchResult /* Message data */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Message exchanged with the search worker\n */\nexport type SearchMessage =\n | SearchSetupMessage\n | SearchReadyMessage\n | SearchQueryMessage\n | SearchResultMessage\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Type guard for search ready messages\n *\n * @param message - Search worker message\n *\n * @returns Test result\n */\nexport function isSearchReadyMessage(\n message: SearchMessage\n): message is SearchReadyMessage {\n return message.type === SearchMessageType.READY\n}\n\n/**\n * Type guard for search result messages\n *\n * @param message - Search worker message\n *\n * @returns Test result\n */\nexport function isSearchResultMessage(\n message: SearchMessage\n): message is SearchResultMessage {\n return message.type === SearchMessageType.RESULT\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A RTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n ObservableInput,\n Subject,\n first,\n merge,\n of,\n switchMap\n} from \"rxjs\"\n\nimport { feature } from \"~/_\"\nimport { watchToggle, watchWorker } from \"~/browser\"\n\nimport { SearchIndex } from \"../../config\"\nimport {\n SearchMessage,\n SearchMessageType\n} from \"../message\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set up search worker\n *\n * This function creates and initializes a web worker that is used for search,\n * so that the user interface doesn't freeze. In general, the application does\n * not care how search is implemented, as long as the web worker conforms to\n * the format expected by the application as defined in `SearchMessage`. This\n * allows the author to implement custom search functionality, by providing a\n * custom web worker via configuration.\n *\n * Material for MkDocs' built-in search implementation makes use of Lunr.js, an\n * efficient and fast implementation for client-side search. Leveraging a tiny\n * iframe-based web worker shim, search is even supported for the `file://`\n * protocol, enabling search for local non-hosted builds.\n *\n * If the protocol is `file://`, search initialization is deferred to mitigate\n * freezing, as it's now synchronous by design - see https://bit.ly/3C521EO\n *\n * @see https://bit.ly/3igvtQv - How to implement custom search\n *\n * @param url - Worker URL\n * @param index$ - Search index observable input\n *\n * @returns Search worker\n */\nexport function setupSearchWorker(\n url: string, index$: ObservableInput<SearchIndex>\n): Subject<SearchMessage> {\n const worker$ = watchWorker<SearchMessage>(url)\n merge(\n of(location.protocol !== \"file:\"),\n watchToggle(\"search\")\n )\n .pipe(\n first(active => active),\n switchMap(() => index$)\n )\n .subscribe(({ config, docs }) => worker$.next({\n type: SearchMessageType.SETUP,\n data: {\n config,\n docs,\n options: {\n suggest: feature(\"search.suggest\")\n }\n }\n }))\n\n /* Return search worker */\n return worker$\n}\n", "import { Sitemap } from \"../../sitemap\"\n\n/** See docstring for `selectedVersionCorrespondingURL` for the meaning of these fields. */\ntype CorrespondingURLParams = {\n selectedVersionSitemap: Sitemap\n selectedVersionBaseURL: URL\n currentLocation: URL\n currentBaseURL: string\n}\n\n/**\n * Choose a URL to navigate to when the user chooses a version in the version\n * selector.\n *\n * The parameters in `params` are named as follows, in order to make it clearer\n * which parameter means what when invoking the function:\n *\n * - selectedVersionSitemap: Sitemap - as obtained by fetchSitemap from `${selectedVersionBaseURL}/sitemap.xml`\n *\n * - selectedVersionBaseURL: URL - usually `${currentBaseURL}/../selectedVersion`\n *\n * - currentLocation: URL - current web browser location\n *\n * - currentBaseURL: string - as obtained from `config.base`\n *\n * @param params - arguments with the meanings explained above.\n * @returns the URL to navigate to or null if we can't be sure that the\n * corresponding page to the current page exists in the selected version\n */\nexport function selectedVersionCorrespondingURL(\n params: CorrespondingURLParams\n): URL | undefined {\n const {selectedVersionSitemap,\n selectedVersionBaseURL,\n currentLocation,\n currentBaseURL} = params\n const current_path = safeURLParse(currentBaseURL)?.pathname\n if (current_path === undefined) {\n return\n }\n const currentRelativePath = stripPrefix(currentLocation.pathname, current_path)\n if (currentRelativePath === undefined) {\n return\n }\n const sitemapCommonPrefix = shortestCommonPrefix(selectedVersionSitemap.keys())\n if (!selectedVersionSitemap.has(sitemapCommonPrefix)) {\n // We could also check that `commonSitemapPrefix` ends in the canonical version,\n // similarly to https://github.com/squidfunk/mkdocs-material/pull/7227. However,\n // I don't believe that Mike/MkDocs ever generate sitemaps where it would matter\n return\n }\n\n const potentialSitemapURL = safeURLParse(currentRelativePath, sitemapCommonPrefix)\n if (!potentialSitemapURL || !selectedVersionSitemap.has(potentialSitemapURL.href)) {\n return\n }\n\n const result = safeURLParse(currentRelativePath, selectedVersionBaseURL)\n if (!result) {\n return\n }\n result.hash = currentLocation.hash\n result.search = currentLocation.search\n return result\n}\n\n/**\n * A version of `new URL` that never throws. A polyfill for URL.parse() which is\n * not yet ubuquitous.\n *\n * @param url - passed to `new URL` constructor\n * @param base - passed to `new URL` constructor\n *\n * @returns `new URL(url, base)` or undefined if the URL is invalid.\n */\nfunction safeURLParse(url: string|URL, base?: string|URL): URL | undefined {\n try {\n return new URL(url, base)\n } catch {\n return\n }\n}\n\n// Basic string manipulation\n\n/** Strip a given prefix from a function\n *\n * @param s - string\n * @param prefix - prefix to strip\n *\n * @returns either the string with the prefix stripped or undefined if the\n * string did not begin with the prefix.\n */\nexport function stripPrefix(s: string, prefix: string): string | undefined {\n if (s.startsWith(prefix)) {\n return s.slice(prefix.length)\n }\n return undefined\n}\n\n/** Find the length of the longest common prefix of two strings\n *\n * @param s1 - first string\n * @param s2 - second string\n *\n * @returns - the length of the longest common prefix of the two strings.\n */\nfunction commonPrefixLen(s1: string, s2: string): number {\n const max = Math.min(s1.length, s2.length)\n let result\n for (result = 0; result < max; ++result) {\n if (s1[result] !== s2[result]) {\n break\n }\n }\n return result\n}\n\n/** Find the longest common prefix of any number of strings\n *\n * @param strs - an iterable of strings\n *\n * @returns the longest common prefix of all the strings\n */\nexport function shortestCommonPrefix(strs: Iterable<string>): string {\n let result // Undefined if no iterations happened\n for (const s of strs) {\n if (result === undefined) {\n result = s\n } else {\n result = result.slice(0, commonPrefixLen(result, s))\n }\n }\n return result ?? \"\"\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n EMPTY,\n Subject,\n catchError,\n combineLatest,\n filter,\n fromEvent,\n map,\n of,\n switchMap,\n withLatestFrom\n} from \"rxjs\"\n\nimport { configuration } from \"~/_\"\nimport {\n getElement,\n getLocation,\n requestJSON,\n setLocation\n} from \"~/browser\"\nimport { getComponentElements } from \"~/components\"\nimport {\n Version,\n renderVersionSelector\n} from \"~/templates\"\n\nimport { fetchSitemap } from \"../sitemap\"\n\nimport { selectedVersionCorrespondingURL } from \"./findurl\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Setup options\n */\ninterface SetupOptions {\n document$: Subject<Document> /* Document subject */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set up version selector\n *\n * @param options - Options\n */\nexport function setupVersionSelector(\n { document$ }: SetupOptions\n): void {\n const config = configuration()\n const versions$ = requestJSON<Version[]>(\n new URL(\"../versions.json\", config.base)\n )\n .pipe(\n catchError(() => EMPTY) // @todo refactor instant loading\n )\n\n /* Determine current version */\n const current$ = versions$\n .pipe(\n map(versions => {\n const [, current] = config.base.match(/([^/]+)\\/?$/)!\n return versions.find(({ version, aliases }) => (\n version === current || aliases.includes(current)\n )) || versions[0]\n })\n )\n\n /* Intercept inter-version navigation */\n versions$\n .pipe(\n map(versions => new Map(versions.map(version => [\n `${new URL(`../${version.version}/`, config.base)}`,\n version\n ]))),\n switchMap(urls => fromEvent<MouseEvent>(document.body, \"click\")\n .pipe(\n filter(ev => !ev.metaKey && !ev.ctrlKey),\n withLatestFrom(current$),\n switchMap(([ev, current]) => {\n if (ev.target instanceof Element) {\n const el = ev.target.closest(\"a\")\n if (el && !el.target && urls.has(el.href)) {\n const url = el.href\n // This is a temporary hack to detect if a version inside the\n // version selector or on another part of the site was clicked.\n // If we're inside the version selector, we definitely want to\n // find the same page, as we might have different deployments\n // due to aliases. However, if we're outside the version\n // selector, we must abort here, because we might otherwise\n // interfere with instant navigation. We need to refactor this\n // at some point together with instant navigation.\n //\n // See https://github.com/squidfunk/mkdocs-material/issues/4012\n if (!ev.target.closest(\".md-version\")) {\n const version = urls.get(url)!\n if (version === current)\n return EMPTY\n }\n ev.preventDefault()\n return of(new URL(url))\n }\n }\n return EMPTY\n }),\n switchMap(selectedVersionBaseURL => {\n return fetchSitemap(selectedVersionBaseURL).pipe(\n map(\n sitemap =>\n selectedVersionCorrespondingURL({\n selectedVersionSitemap: sitemap,\n selectedVersionBaseURL,\n currentLocation: getLocation(),\n currentBaseURL: config.base\n }) ?? selectedVersionBaseURL,\n ),\n )\n })\n )\n )\n )\n .subscribe(url => setLocation(url, true))\n\n /* Render version selector and warning */\n combineLatest([versions$, current$])\n .subscribe(([versions, current]) => {\n const topic = getElement(\".md-header__topic\")\n topic.appendChild(renderVersionSelector(versions, current))\n })\n\n /* Integrate outdated version banner with instant navigation */\n document$.pipe(switchMap(() => current$))\n .subscribe(current => {\n\n // Always scope outdate version banner to the base URL of the site\n const base = new URL(config.base)\n\n /* Check if version state was already determined */\n let outdated = __md_get(\"__outdated\", sessionStorage, base)\n if (outdated === null) {\n outdated = true\n\n /* Obtain and normalize default versions */\n let ignored = config.version?.default || \"latest\"\n if (!Array.isArray(ignored))\n ignored = [ignored]\n\n /* Check if version is considered a default */\n main: for (const ignore of ignored)\n for (const version of current.aliases.concat(current.version))\n if (new RegExp(ignore, \"i\").test(version)) {\n outdated = false\n break main\n }\n\n /* Persist version state in session storage */\n __md_set(\"__outdated\", outdated, sessionStorage, base)\n }\n\n /* Unhide outdated version banner */\n if (outdated)\n for (const warning of getComponentElements(\"outdated\"))\n warning.hidden = false\n })\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n Subject,\n combineLatest,\n distinctUntilChanged,\n distinctUntilKeyChanged,\n endWith,\n finalize,\n first,\n fromEvent,\n ignoreElements,\n map,\n merge,\n shareReplay,\n takeUntil,\n tap\n} from \"rxjs\"\n\nimport {\n getElement,\n getLocation,\n setToggle,\n watchElementFocus,\n watchToggle\n} from \"~/browser\"\nimport {\n SearchMessage,\n SearchMessageType,\n isSearchReadyMessage\n} from \"~/integrations\"\n\nimport { Component } from \"../../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Search query\n */\nexport interface SearchQuery {\n value: string /* Query value */\n focus: boolean /* Query focus */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n worker$: Subject<SearchMessage> /* Search worker */\n}\n\n/**\n * Mount options\n */\ninterface MountOptions {\n worker$: Subject<SearchMessage> /* Search worker */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch search query\n *\n * Note that the focus event which triggers re-reading the current query value\n * is delayed by `1ms` so the input's empty state is allowed to propagate.\n *\n * @param el - Search query element\n * @param options - Options\n *\n * @returns Search query observable\n */\nexport function watchSearchQuery(\n el: HTMLInputElement, { worker$ }: WatchOptions\n): Observable<SearchQuery> {\n\n /* Support search deep linking */\n const { searchParams } = getLocation()\n if (searchParams.has(\"q\")) {\n setToggle(\"search\", true)\n\n /* Set query from parameter */\n el.value = searchParams.get(\"q\")!\n el.focus()\n\n /* Remove query parameter on close */\n watchToggle(\"search\")\n .pipe(\n first(active => !active)\n )\n .subscribe(() => {\n const url = getLocation()\n url.searchParams.delete(\"q\")\n history.replaceState({}, \"\", `${url}`)\n })\n }\n\n /* Intercept focus and input events */\n const focus$ = watchElementFocus(el)\n const value$ = merge(\n worker$.pipe(first(isSearchReadyMessage)),\n fromEvent(el, \"keyup\"),\n focus$\n )\n .pipe(\n map(() => el.value),\n distinctUntilChanged()\n )\n\n /* Combine into single observable */\n return combineLatest([value$, focus$])\n .pipe(\n map(([value, focus]) => ({ value, focus })),\n shareReplay(1)\n )\n}\n\n/**\n * Mount search query\n *\n * @param el - Search query element\n * @param options - Options\n *\n * @returns Search query component observable\n */\nexport function mountSearchQuery(\n el: HTMLInputElement, { worker$ }: MountOptions\n): Observable<Component<SearchQuery, HTMLInputElement>> {\n const push$ = new Subject<SearchQuery>()\n const done$ = push$.pipe(ignoreElements(), endWith(true))\n\n /* Handle value change */\n combineLatest([\n worker$.pipe(first(isSearchReadyMessage)),\n push$\n ], (_, query) => query)\n .pipe(\n distinctUntilKeyChanged(\"value\")\n )\n .subscribe(({ value }) => worker$.next({\n type: SearchMessageType.QUERY,\n data: value\n }))\n\n /* Handle focus change */\n push$\n .pipe(\n distinctUntilKeyChanged(\"focus\")\n )\n .subscribe(({ focus }) => {\n if (focus)\n setToggle(\"search\", focus)\n })\n\n /* Handle reset */\n fromEvent(el.form!, \"reset\")\n .pipe(\n takeUntil(done$)\n )\n .subscribe(() => el.focus())\n\n // Focus search query on label click - note that this is necessary to bring\n // up the keyboard on iOS and other mobile platforms, as the search dialog is\n // not visible at first, and programatically focusing an input element must\n // be triggered by a user interaction - see https://t.ly/Cb30n\n const label = getElement(\"header [for=__search]\")\n fromEvent(label, \"click\")\n .subscribe(() => el.focus())\n\n /* Create and return component */\n return watchSearchQuery(el, { worker$ })\n .pipe(\n tap(state => push$.next(state)),\n finalize(() => push$.complete()),\n map(state => ({ ref: el, ...state })),\n shareReplay(1)\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n EMPTY,\n Observable,\n Subject,\n bufferCount,\n filter,\n finalize,\n first,\n fromEvent,\n map,\n merge,\n mergeMap,\n of,\n share,\n skipUntil,\n switchMap,\n takeUntil,\n tap,\n withLatestFrom,\n zipWith\n} from \"rxjs\"\n\nimport { translation } from \"~/_\"\nimport {\n getElement,\n getOptionalElement,\n watchElementBoundary,\n watchToggle\n} from \"~/browser\"\nimport {\n SearchMessage,\n SearchResult,\n isSearchReadyMessage,\n isSearchResultMessage\n} from \"~/integrations\"\nimport { renderSearchResultItem } from \"~/templates\"\nimport { round } from \"~/utilities\"\n\nimport { Component } from \"../../_\"\nimport { SearchQuery } from \"../query\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n query$: Observable<SearchQuery> /* Search query observable */\n worker$: Subject<SearchMessage> /* Search worker */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount search result list\n *\n * This function performs a lazy rendering of the search results, depending on\n * the vertical offset of the search result container.\n *\n * @param el - Search result list element\n * @param options - Options\n *\n * @returns Search result list component observable\n */\nexport function mountSearchResult(\n el: HTMLElement, { worker$, query$ }: MountOptions\n): Observable<Component<SearchResult>> {\n const push$ = new Subject<SearchResult>()\n const boundary$ = watchElementBoundary(el.parentElement!)\n .pipe(\n filter(Boolean)\n )\n\n /* Retrieve container */\n const container = el.parentElement!\n\n /* Retrieve nested components */\n const meta = getElement(\":scope > :first-child\", el)\n const list = getElement(\":scope > :last-child\", el)\n\n /* Reveal to accessibility tree \u2013 see https://bit.ly/3iAA7t8 */\n watchToggle(\"search\")\n .subscribe(active => list.setAttribute(\n \"role\", active ? \"list\" : \"presentation\"\n ))\n\n /* Update search result metadata */\n push$\n .pipe(\n withLatestFrom(query$),\n skipUntil(worker$.pipe(first(isSearchReadyMessage)))\n )\n .subscribe(([{ items }, { value }]) => {\n switch (items.length) {\n\n /* No results */\n case 0:\n meta.textContent = value.length\n ? translation(\"search.result.none\")\n : translation(\"search.result.placeholder\")\n break\n\n /* One result */\n case 1:\n meta.textContent = translation(\"search.result.one\")\n break\n\n /* Multiple result */\n default:\n const count = round(items.length)\n meta.textContent = translation(\"search.result.other\", count)\n }\n })\n\n /* Render search result item */\n const render$ = push$\n .pipe(\n tap(() => list.innerHTML = \"\"),\n switchMap(({ items }) => merge(\n of(...items.slice(0, 10)),\n of(...items.slice(10))\n .pipe(\n bufferCount(4),\n zipWith(boundary$),\n switchMap(([chunk]) => chunk)\n )\n )),\n map(renderSearchResultItem),\n share()\n )\n\n /* Update search result list */\n render$.subscribe(item => list.appendChild(item))\n render$\n .pipe(\n mergeMap(item => {\n const details = getOptionalElement(\"details\", item)\n if (typeof details === \"undefined\")\n return EMPTY\n\n /* Keep position of details element stable */\n return fromEvent(details, \"toggle\")\n .pipe(\n takeUntil(push$),\n map(() => details)\n )\n })\n )\n .subscribe(details => {\n if (\n details.open === false &&\n details.offsetTop <= container.scrollTop\n )\n container.scrollTo({ top: details.offsetTop })\n })\n\n /* Filter search result message */\n const result$ = worker$\n .pipe(\n filter(isSearchResultMessage),\n map(({ data }) => data)\n )\n\n /* Create and return component */\n return result$\n .pipe(\n tap(state => push$.next(state)),\n finalize(() => push$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n Subject,\n endWith,\n finalize,\n fromEvent,\n ignoreElements,\n map,\n takeUntil,\n tap\n} from \"rxjs\"\n\nimport { getLocation } from \"~/browser\"\n\nimport { Component } from \"../../_\"\nimport { SearchQuery } from \"../query\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Search sharing\n */\nexport interface SearchShare {\n url: URL /* Deep link for sharing */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n query$: Observable<SearchQuery> /* Search query observable */\n}\n\n/**\n * Mount options\n */\ninterface MountOptions {\n query$: Observable<SearchQuery> /* Search query observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount search sharing\n *\n * @param _el - Search sharing element\n * @param options - Options\n *\n * @returns Search sharing observable\n */\nexport function watchSearchShare(\n _el: HTMLElement, { query$ }: WatchOptions\n): Observable<SearchShare> {\n return query$\n .pipe(\n map(({ value }) => {\n const url = getLocation()\n url.hash = \"\"\n\n /* Compute readable query strings */\n value = value\n .replace(/\\s+/g, \"+\") /* Collapse whitespace */\n .replace(/&/g, \"%26\") /* Escape '&' character */\n .replace(/=/g, \"%3D\") /* Escape '=' character */\n\n /* Replace query string */\n url.search = `q=${value}`\n return { url }\n })\n )\n}\n\n/**\n * Mount search sharing\n *\n * @param el - Search sharing element\n * @param options - Options\n *\n * @returns Search sharing component observable\n */\nexport function mountSearchShare(\n el: HTMLAnchorElement, options: MountOptions\n): Observable<Component<SearchShare>> {\n const push$ = new Subject<SearchShare>()\n const done$ = push$.pipe(ignoreElements(), endWith(true))\n push$.subscribe(({ url }) => {\n el.setAttribute(\"data-clipboard-text\", el.href)\n el.href = `${url}`\n })\n\n /* Prevent following of link */\n fromEvent(el, \"click\")\n .pipe(\n takeUntil(done$)\n )\n .subscribe(ev => ev.preventDefault())\n\n /* Create and return component */\n return watchSearchShare(el, options)\n .pipe(\n tap(state => push$.next(state)),\n finalize(() => push$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n Subject,\n asyncScheduler,\n combineLatestWith,\n distinctUntilChanged,\n filter,\n finalize,\n fromEvent,\n map,\n merge,\n observeOn,\n tap\n} from \"rxjs\"\n\nimport { Keyboard } from \"~/browser\"\nimport {\n SearchMessage,\n SearchResult,\n isSearchResultMessage\n} from \"~/integrations\"\n\nimport { Component, getComponentElement } from \"../../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Search suggestions\n */\nexport interface SearchSuggest {}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n keyboard$: Observable<Keyboard> /* Keyboard observable */\n worker$: Subject<SearchMessage> /* Search worker */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount search suggestions\n *\n * This function will perform a lazy rendering of the search results, depending\n * on the vertical offset of the search result container.\n *\n * @param el - Search result list element\n * @param options - Options\n *\n * @returns Search result list component observable\n */\nexport function mountSearchSuggest(\n el: HTMLElement, { worker$, keyboard$ }: MountOptions\n): Observable<Component<SearchSuggest>> {\n const push$ = new Subject<SearchResult>()\n\n /* Retrieve query component and track all changes */\n const query = getComponentElement(\"search-query\")\n const query$ = merge(\n fromEvent(query, \"keydown\"),\n fromEvent(query, \"focus\")\n )\n .pipe(\n observeOn(asyncScheduler),\n map(() => query.value),\n distinctUntilChanged(),\n )\n\n /* Update search suggestions */\n push$\n .pipe(\n combineLatestWith(query$),\n map(([{ suggest }, value]) => {\n const words = value.split(/([\\s-]+)/)\n if (suggest?.length && words[words.length - 1]) {\n const last = suggest[suggest.length - 1]\n if (last.startsWith(words[words.length - 1]))\n words[words.length - 1] = last\n } else {\n words.length = 0\n }\n return words\n })\n )\n .subscribe(words => el.innerHTML = words\n .join(\"\")\n .replace(/\\s/g, \" \")\n )\n\n /* Set up search keyboard handlers */\n keyboard$\n .pipe(\n filter(({ mode }) => mode === \"search\")\n )\n .subscribe(key => {\n switch (key.type) {\n\n /* Right arrow: accept current suggestion */\n case \"ArrowRight\":\n if (\n el.innerText.length &&\n query.selectionStart === query.value.length\n )\n query.value = el.innerText\n break\n }\n })\n\n /* Filter search result message */\n const result$ = worker$\n .pipe(\n filter(isSearchResultMessage),\n map(({ data }) => data)\n )\n\n /* Create and return component */\n return result$\n .pipe(\n tap(state => push$.next(state)),\n finalize(() => push$.complete()),\n map(() => ({ ref: el }))\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n NEVER,\n Observable,\n ObservableInput,\n filter,\n fromEvent,\n merge,\n mergeWith\n} from \"rxjs\"\n\nimport { configuration } from \"~/_\"\nimport {\n Keyboard,\n getActiveElement,\n getElements,\n setToggle\n} from \"~/browser\"\nimport {\n SearchIndex,\n SearchResult,\n setupSearchWorker\n} from \"~/integrations\"\n\nimport {\n Component,\n getComponentElement,\n getComponentElements\n} from \"../../_\"\nimport {\n SearchQuery,\n mountSearchQuery\n} from \"../query\"\nimport { mountSearchResult } from \"../result\"\nimport {\n SearchShare,\n mountSearchShare\n} from \"../share\"\nimport {\n SearchSuggest,\n mountSearchSuggest\n} from \"../suggest\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Search\n */\nexport type Search =\n | SearchQuery\n | SearchResult\n | SearchShare\n | SearchSuggest\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n index$: ObservableInput<SearchIndex> /* Search index observable */\n keyboard$: Observable<Keyboard> /* Keyboard observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount search\n *\n * This function sets up the search functionality, including the underlying\n * web worker and all keyboard bindings.\n *\n * @param el - Search element\n * @param options - Options\n *\n * @returns Search component observable\n */\nexport function mountSearch(\n el: HTMLElement, { index$, keyboard$ }: MountOptions\n): Observable<Component<Search>> {\n const config = configuration()\n try {\n const worker$ = setupSearchWorker(config.search, index$)\n\n /* Retrieve query and result components */\n const query = getComponentElement(\"search-query\", el)\n const result = getComponentElement(\"search-result\", el)\n\n /* Always close search on result selection */\n fromEvent<PointerEvent>(el, \"click\")\n .pipe(\n filter(({ target }) => (\n target instanceof Element && !!target.closest(\"a\")\n ))\n )\n .subscribe(() => setToggle(\"search\", false))\n\n /* Set up search keyboard handlers */\n keyboard$\n .pipe(\n filter(({ mode }) => mode === \"search\")\n )\n .subscribe(key => {\n const active = getActiveElement()\n switch (key.type) {\n\n /* Enter: go to first (best) result */\n case \"Enter\":\n if (active === query) {\n const anchors = new Map<HTMLAnchorElement, number>()\n for (const anchor of getElements<HTMLAnchorElement>(\n \":first-child [href]\", result\n )) {\n const article = anchor.firstElementChild!\n anchors.set(anchor, parseFloat(\n article.getAttribute(\"data-md-score\")!\n ))\n }\n\n /* Go to result with highest score, if any */\n if (anchors.size) {\n const [[best]] = [...anchors].sort(([, a], [, b]) => b - a)\n best.click()\n }\n\n /* Otherwise omit form submission */\n key.claim()\n }\n break\n\n /* Escape or Tab: close search */\n case \"Escape\":\n case \"Tab\":\n setToggle(\"search\", false)\n query.blur()\n break\n\n /* Vertical arrows: select previous or next search result */\n case \"ArrowUp\":\n case \"ArrowDown\":\n if (typeof active === \"undefined\") {\n query.focus()\n } else {\n const els = [query, ...getElements(\n \":not(details) > [href], summary, details[open] [href]\",\n result\n )]\n const i = Math.max(0, (\n Math.max(0, els.indexOf(active)) + els.length + (\n key.type === \"ArrowUp\" ? -1 : +1\n )\n ) % els.length)\n els[i].focus()\n }\n\n /* Prevent scrolling of page */\n key.claim()\n break\n\n /* All other keys: hand to search query */\n default:\n if (query !== getActiveElement())\n query.focus()\n }\n })\n\n /* Set up global keyboard handlers */\n keyboard$\n .pipe(\n filter(({ mode }) => mode === \"global\")\n )\n .subscribe(key => {\n switch (key.type) {\n\n /* Open search and select query */\n case \"f\":\n case \"s\":\n case \"/\":\n query.focus()\n query.select()\n\n /* Prevent scrolling of page */\n key.claim()\n break\n }\n })\n\n /* Create and return component */\n const query$ = mountSearchQuery(query, { worker$ })\n return merge(\n query$,\n mountSearchResult(result, { worker$, query$ })\n )\n .pipe(\n mergeWith(\n\n /* Search sharing */\n ...getComponentElements(\"search-share\", el)\n .map(child => mountSearchShare(child, { query$ })),\n\n /* Search suggestions */\n ...getComponentElements(\"search-suggest\", el)\n .map(child => mountSearchSuggest(child, { worker$, keyboard$ }))\n )\n )\n\n /* Gracefully handle broken search */\n } catch (err) {\n el.hidden = true\n return NEVER\n }\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n ObservableInput,\n combineLatest,\n filter,\n map,\n startWith\n} from \"rxjs\"\n\nimport { getLocation } from \"~/browser\"\nimport {\n SearchIndex,\n setupSearchHighlighter\n} from \"~/integrations\"\nimport { h } from \"~/utilities\"\n\nimport { Component } from \"../../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Search highlighting\n */\nexport interface SearchHighlight {\n nodes: Map<ChildNode, string> /* Map of replacements */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n index$: ObservableInput<SearchIndex> /* Search index observable */\n location$: Observable<URL> /* Location observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount search highlighting\n *\n * @param el - Content element\n * @param options - Options\n *\n * @returns Search highlighting component observable\n */\nexport function mountSearchHiglight(\n el: HTMLElement, { index$, location$ }: MountOptions\n): Observable<Component<SearchHighlight>> {\n return combineLatest([\n index$,\n location$\n .pipe(\n startWith(getLocation()),\n filter(url => !!url.searchParams.get(\"h\"))\n )\n ])\n .pipe(\n map(([index, url]) => setupSearchHighlighter(index.config)(\n url.searchParams.get(\"h\")!\n )),\n map(fn => {\n const nodes = new Map<ChildNode, string>()\n\n /* Traverse text nodes and collect matches */\n const it = document.createNodeIterator(el, NodeFilter.SHOW_TEXT)\n for (let node = it.nextNode(); node; node = it.nextNode()) {\n if (node.parentElement?.offsetHeight) {\n const original = node.textContent!\n const replaced = fn(original)\n if (replaced.length > original.length)\n nodes.set(node as ChildNode, replaced)\n }\n }\n\n /* Replace original nodes with matches */\n for (const [node, text] of nodes) {\n const { childNodes } = h(\"span\", null, text)\n node.replaceWith(...Array.from(childNodes))\n }\n\n /* Return component */\n return { ref: el, nodes }\n })\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n Subject,\n animationFrameScheduler,\n asyncScheduler,\n auditTime,\n combineLatest,\n defer,\n distinctUntilChanged,\n endWith,\n finalize,\n first,\n from,\n fromEvent,\n ignoreElements,\n map,\n mergeMap,\n observeOn,\n takeUntil,\n tap,\n withLatestFrom\n} from \"rxjs\"\n\nimport {\n Viewport,\n getElement,\n getElementOffset,\n getElementSize,\n getElements\n} from \"~/browser\"\n\nimport { Component } from \"../_\"\nimport { Header } from \"../header\"\nimport { Main } from \"../main\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Sidebar\n */\nexport interface Sidebar {\n height: number /* Sidebar height */\n locked: boolean /* Sidebar is locked */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n viewport$: Observable<Viewport> /* Viewport observable */\n main$: Observable<Main> /* Main area observable */\n}\n\n/**\n * Mount options\n */\ninterface MountOptions {\n viewport$: Observable<Viewport> /* Viewport observable */\n header$: Observable<Header> /* Header observable */\n main$: Observable<Main> /* Main area observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch sidebar\n *\n * This function returns an observable that computes the visual parameters of\n * the sidebar which depends on the vertical viewport offset, as well as the\n * height of the main area. When the page is scrolled beyond the header, the\n * sidebar is locked and fills the remaining space.\n *\n * @param el - Sidebar element\n * @param options - Options\n *\n * @returns Sidebar observable\n */\nexport function watchSidebar(\n el: HTMLElement, { viewport$, main$ }: WatchOptions\n): Observable<Sidebar> {\n const parent = el.closest<HTMLElement>(\".md-grid\")!\n const adjust =\n parent.offsetTop -\n parent.parentElement!.offsetTop\n\n /* Compute the sidebar's available height and if it should be locked */\n return combineLatest([main$, viewport$])\n .pipe(\n map(([{ offset, height }, { offset: { y } }]) => {\n height = height\n + Math.min(adjust, Math.max(0, y - offset))\n - adjust\n return {\n height,\n locked: y >= offset + adjust\n }\n }),\n distinctUntilChanged((a, b) => (\n a.height === b.height &&\n a.locked === b.locked\n ))\n )\n}\n\n/**\n * Mount sidebar\n *\n * This function doesn't set the height of the actual sidebar, but of its first\n * child \u2013 the `.md-sidebar__scrollwrap` element in order to mitigiate jittery\n * sidebars when the footer is scrolled into view. At some point we switched\n * from `absolute` / `fixed` positioning to `sticky` positioning, significantly\n * reducing jitter in some browsers (respectively Firefox and Safari) when\n * scrolling from the top. However, top-aligned sticky positioning means that\n * the sidebar snaps to the bottom when the end of the container is reached.\n * This is what leads to the mentioned jitter, as the sidebar's height may be\n * updated too slowly.\n *\n * This behaviour can be mitigiated by setting the height of the sidebar to `0`\n * while preserving the padding, and the height on its first element.\n *\n * @param el - Sidebar element\n * @param options - Options\n *\n * @returns Sidebar component observable\n */\nexport function mountSidebar(\n el: HTMLElement, { header$, ...options }: MountOptions\n): Observable<Component<Sidebar>> {\n const inner = getElement(\".md-sidebar__scrollwrap\", el)\n const { y } = getElementOffset(inner)\n return defer(() => {\n const push$ = new Subject<Sidebar>()\n const done$ = push$.pipe(ignoreElements(), endWith(true))\n const next$ = push$\n .pipe(\n auditTime(0, animationFrameScheduler)\n )\n\n /* Update sidebar height and offset */\n next$.pipe(withLatestFrom(header$))\n .subscribe({\n\n /* Handle emission */\n next([{ height }, { height: offset }]) {\n inner.style.height = `${height - 2 * y}px`\n el.style.top = `${offset}px`\n },\n\n /* Handle complete */\n complete() {\n inner.style.height = \"\"\n el.style.top = \"\"\n }\n })\n\n /* Bring active item into view on initial load */\n next$.pipe(first())\n .subscribe(() => {\n for (const item of getElements(\".md-nav__link--active[href]\", el)) {\n if (!item.clientHeight) // skip invisible toc in left sidebar\n continue\n const container = item.closest<HTMLElement>(\".md-sidebar__scrollwrap\")!\n if (typeof container !== \"undefined\") {\n const offset = item.offsetTop - container.offsetTop\n const { height } = getElementSize(container)\n container.scrollTo({\n top: offset - height / 2\n })\n }\n }\n })\n\n /* Handle accessibility for expandable items, see https://bit.ly/3jaod9p */\n from(getElements<HTMLLabelElement>(\"label[tabindex]\", el))\n .pipe(\n mergeMap(label => fromEvent(label, \"click\")\n .pipe(\n observeOn(asyncScheduler),\n map(() => label),\n takeUntil(done$)\n )\n )\n )\n .subscribe(label => {\n const input = getElement<HTMLInputElement>(`[id=\"${label.htmlFor}\"]`)\n const nav = getElement(`[aria-labelledby=\"${label.id}\"]`)\n nav.setAttribute(\"aria-expanded\", `${input.checked}`)\n })\n\n /* Create and return component */\n return watchSidebar(el, options)\n .pipe(\n tap(state => push$.next(state)),\n finalize(() => push$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n })\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Repo, User } from \"github-types\"\nimport {\n EMPTY,\n Observable,\n catchError,\n defaultIfEmpty,\n map,\n zip\n} from \"rxjs\"\n\nimport { requestJSON } from \"~/browser\"\n\nimport { SourceFacts } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * GitHub release (partial)\n */\ninterface Release {\n tag_name: string /* Tag name */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Fetch GitHub repository facts\n *\n * @param user - GitHub user or organization\n * @param repo - GitHub repository\n *\n * @returns Repository facts observable\n */\nexport function fetchSourceFactsFromGitHub(\n user: string, repo?: string\n): Observable<SourceFacts> {\n if (typeof repo !== \"undefined\") {\n const url = `https://api.github.com/repos/${user}/${repo}`\n return zip(\n\n /* Fetch version */\n requestJSON<Release>(`${url}/releases/latest`)\n .pipe(\n catchError(() => EMPTY), // @todo refactor instant loading\n map(release => ({\n version: release.tag_name\n })),\n defaultIfEmpty({})\n ),\n\n /* Fetch stars and forks */\n requestJSON<Repo>(url)\n .pipe(\n catchError(() => EMPTY), // @todo refactor instant loading\n map(info => ({\n stars: info.stargazers_count,\n forks: info.forks_count\n })),\n defaultIfEmpty({})\n )\n )\n .pipe(\n map(([release, info]) => ({ ...release, ...info }))\n )\n\n /* User or organization */\n } else {\n const url = `https://api.github.com/users/${user}`\n return requestJSON<User>(url)\n .pipe(\n map(info => ({\n repositories: info.public_repos\n })),\n defaultIfEmpty({})\n )\n }\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { ProjectSchema } from \"gitlab\"\nimport {\n EMPTY,\n Observable,\n catchError,\n defaultIfEmpty,\n map,\n zip\n} from \"rxjs\"\n\nimport { requestJSON } from \"~/browser\"\n\nimport { SourceFacts } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * GitLab release (partial)\n */\ninterface Release { // @todo remove and use the ReleaseSchema type instead after switching from gitlab to @gitbeaker/rest\n tag_name: string /* Tag name */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Fetch GitLab repository facts\n *\n * @param base - GitLab base\n * @param project - GitLab project\n *\n * @returns Repository facts observable\n */\nexport function fetchSourceFactsFromGitLab(\n base: string, project: string\n): Observable<SourceFacts> {\n const url = `https://${base}/api/v4/projects/${encodeURIComponent(project)}`\n return zip(\n\n /* Fetch version */\n requestJSON<Release>(`${url}/releases/permalink/latest`)\n .pipe(\n catchError(() => EMPTY), // @todo refactor instant loading\n map(({ tag_name }) => ({\n version: tag_name\n })),\n defaultIfEmpty({})\n ),\n\n /* Fetch stars and forks */\n requestJSON<ProjectSchema>(url)\n .pipe(\n catchError(() => EMPTY), // @todo refactor instant loading\n map(({ star_count, forks_count }) => ({\n stars: star_count,\n forks: forks_count\n })),\n defaultIfEmpty({})\n )\n )\n .pipe(\n map(([release, info]) => ({ ...release, ...info }))\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { EMPTY, Observable } from \"rxjs\"\n\nimport { fetchSourceFactsFromGitHub } from \"../github\"\nimport { fetchSourceFactsFromGitLab } from \"../gitlab\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Repository facts for repositories\n */\nexport interface RepositoryFacts {\n stars?: number /* Number of stars */\n forks?: number /* Number of forks */\n version?: string /* Latest version */\n}\n\n/**\n * Repository facts for organizations\n */\nexport interface OrganizationFacts {\n repositories?: number /* Number of repositories */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Repository facts\n */\nexport type SourceFacts =\n | RepositoryFacts\n | OrganizationFacts\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Fetch repository facts\n *\n * @param url - Repository URL\n *\n * @returns Repository facts observable\n */\nexport function fetchSourceFacts(\n url: string\n): Observable<SourceFacts> {\n\n /* Try to match GitHub repository */\n let match = url.match(/^.+github\\.com\\/([^/]+)\\/?([^/]+)?/i)\n if (match) {\n const [, user, repo] = match\n return fetchSourceFactsFromGitHub(user, repo)\n }\n\n /* Try to match GitLab repository */\n match = url.match(/^.+?([^/]*gitlab[^/]+)\\/(.+?)\\/?$/i)\n if (match) {\n const [, base, slug] = match\n return fetchSourceFactsFromGitLab(base, slug)\n }\n\n /* Fallback */\n return EMPTY\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n EMPTY,\n Observable,\n Subject,\n catchError,\n defer,\n filter,\n finalize,\n map,\n of,\n shareReplay,\n tap\n} from \"rxjs\"\n\nimport { getElement } from \"~/browser\"\nimport { ConsentDefaults } from \"~/components/consent\"\nimport { renderSourceFacts } from \"~/templates\"\n\nimport {\n Component,\n getComponentElements\n} from \"../../_\"\nimport {\n SourceFacts,\n fetchSourceFacts\n} from \"../facts\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Repository information\n */\nexport interface Source {\n facts: SourceFacts /* Repository facts */\n}\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Repository information observable\n */\nlet fetch$: Observable<Source>\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch repository information\n *\n * This function tries to read the repository facts from session storage, and\n * if unsuccessful, fetches them from the underlying provider.\n *\n * @param el - Repository information element\n *\n * @returns Repository information observable\n */\nexport function watchSource(\n el: HTMLAnchorElement\n): Observable<Source> {\n return fetch$ ||= defer(() => {\n const cached = __md_get<SourceFacts>(\"__source\", sessionStorage)\n if (cached) {\n return of(cached)\n } else {\n\n /* Check if consent is configured and was given */\n const els = getComponentElements(\"consent\")\n if (els.length) {\n const consent = __md_get<ConsentDefaults>(\"__consent\")\n if (!(consent && consent.github))\n return EMPTY\n }\n\n /* Fetch repository facts */\n return fetchSourceFacts(el.href)\n .pipe(\n tap(facts => __md_set(\"__source\", facts, sessionStorage))\n )\n }\n })\n .pipe(\n catchError(() => EMPTY),\n filter(facts => Object.keys(facts).length > 0),\n map(facts => ({ facts })),\n shareReplay(1)\n )\n}\n\n/**\n * Mount repository information\n *\n * @param el - Repository information element\n *\n * @returns Repository information component observable\n */\nexport function mountSource(\n el: HTMLAnchorElement\n): Observable<Component<Source>> {\n const inner = getElement(\":scope > :last-child\", el)\n return defer(() => {\n const push$ = new Subject<Source>()\n push$.subscribe(({ facts }) => {\n inner.appendChild(renderSourceFacts(facts))\n inner.classList.add(\"md-source__repository--active\")\n })\n\n /* Create and return component */\n return watchSource(el)\n .pipe(\n tap(state => push$.next(state)),\n finalize(() => push$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n })\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n Subject,\n defer,\n distinctUntilKeyChanged,\n finalize,\n map,\n of,\n switchMap,\n tap\n} from \"rxjs\"\n\nimport { feature } from \"~/_\"\nimport {\n Viewport,\n watchElementSize,\n watchViewportAt\n} from \"~/browser\"\n\nimport { Component } from \"../_\"\nimport { Header } from \"../header\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Navigation tabs\n */\nexport interface Tabs {\n hidden: boolean /* Navigation tabs are hidden */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n viewport$: Observable<Viewport> /* Viewport observable */\n header$: Observable<Header> /* Header observable */\n}\n\n/**\n * Mount options\n */\ninterface MountOptions {\n viewport$: Observable<Viewport> /* Viewport observable */\n header$: Observable<Header> /* Header observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch navigation tabs\n *\n * @param el - Navigation tabs element\n * @param options - Options\n *\n * @returns Navigation tabs observable\n */\nexport function watchTabs(\n el: HTMLElement, { viewport$, header$ }: WatchOptions\n): Observable<Tabs> {\n return watchElementSize(document.body)\n .pipe(\n switchMap(() => watchViewportAt(el, { header$, viewport$ })),\n map(({ offset: { y } }) => {\n return {\n hidden: y >= 10\n }\n }),\n distinctUntilKeyChanged(\"hidden\")\n )\n}\n\n/**\n * Mount navigation tabs\n *\n * This function hides the navigation tabs when scrolling past the threshold\n * and makes them reappear in a nice CSS animation when scrolling back up.\n *\n * @param el - Navigation tabs element\n * @param options - Options\n *\n * @returns Navigation tabs component observable\n */\nexport function mountTabs(\n el: HTMLElement, options: MountOptions\n): Observable<Component<Tabs>> {\n return defer(() => {\n const push$ = new Subject<Tabs>()\n push$.subscribe({\n\n /* Handle emission */\n next({ hidden }) {\n el.hidden = hidden\n },\n\n /* Handle complete */\n complete() {\n el.hidden = false\n }\n })\n\n /* Create and return component */\n return (\n feature(\"navigation.tabs.sticky\")\n ? of({ hidden: false })\n : watchTabs(el, options)\n )\n .pipe(\n tap(state => push$.next(state)),\n finalize(() => push$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n })\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n Subject,\n asyncScheduler,\n bufferCount,\n combineLatestWith,\n debounceTime,\n defer,\n distinctUntilChanged,\n distinctUntilKeyChanged,\n endWith,\n filter,\n finalize,\n ignoreElements,\n map,\n merge,\n observeOn,\n of,\n repeat,\n scan,\n share,\n skip,\n startWith,\n switchMap,\n takeUntil,\n tap,\n withLatestFrom\n} from \"rxjs\"\n\nimport { feature } from \"~/_\"\nimport {\n Viewport,\n getElement,\n getElementContainer,\n getElementSize,\n getElements,\n getLocation,\n getOptionalElement,\n watchElementSize\n} from \"~/browser\"\n\nimport {\n Component,\n getComponentElement\n} from \"../_\"\nimport { Header } from \"../header\"\nimport { Main } from \"../main\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Table of contents\n */\nexport interface TableOfContents {\n prev: HTMLAnchorElement[][] /* Anchors (previous) */\n next: HTMLAnchorElement[][] /* Anchors (next) */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n viewport$: Observable<Viewport> /* Viewport observable */\n header$: Observable<Header> /* Header observable */\n}\n\n/**\n * Mount options\n */\ninterface MountOptions {\n viewport$: Observable<Viewport> /* Viewport observable */\n header$: Observable<Header> /* Header observable */\n main$: Observable<Main> /* Main area observable */\n target$: Observable<HTMLElement> /* Location target observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch table of contents\n *\n * This is effectively a scroll spy implementation which will account for the\n * fixed header and automatically re-calculate anchor offsets when the viewport\n * is resized. The returned observable will only emit if the table of contents\n * needs to be repainted.\n *\n * This implementation tracks an anchor element's entire path starting from its\n * level up to the top-most anchor element, e.g. `[h3, h2, h1]`. Although the\n * Material theme currently doesn't make use of this information, it enables\n * the styling of the entire hierarchy through customization.\n *\n * Note that the current anchor is the last item of the `prev` anchor list.\n *\n * @param el - Table of contents element\n * @param options - Options\n *\n * @returns Table of contents observable\n */\nexport function watchTableOfContents(\n el: HTMLElement, { viewport$, header$ }: WatchOptions\n): Observable<TableOfContents> {\n const table = new Map<HTMLAnchorElement, HTMLElement>()\n\n /* Compute anchor-to-target mapping */\n const anchors = getElements<HTMLAnchorElement>(\".md-nav__link\", el)\n for (const anchor of anchors) {\n const id = decodeURIComponent(anchor.hash.substring(1))\n const target = getOptionalElement(`[id=\"${id}\"]`)\n if (typeof target !== \"undefined\")\n table.set(anchor, target)\n }\n\n /* Compute necessary adjustment for header */\n const adjust$ = header$\n .pipe(\n distinctUntilKeyChanged(\"height\"),\n map(({ height }) => {\n const main = getComponentElement(\"main\")\n const grid = getElement(\":scope > :first-child\", main)\n return height + 0.8 * (\n grid.offsetTop -\n main.offsetTop\n )\n }),\n share()\n )\n\n /* Compute partition of previous and next anchors */\n const partition$ = watchElementSize(document.body)\n .pipe(\n distinctUntilKeyChanged(\"height\"),\n\n /* Build index to map anchor paths to vertical offsets */\n switchMap(body => defer(() => {\n let path: HTMLAnchorElement[] = []\n return of([...table].reduce((index, [anchor, target]) => {\n while (path.length) {\n const last = table.get(path[path.length - 1])!\n if (last.tagName >= target.tagName) {\n path.pop()\n } else {\n break\n }\n }\n\n /* If the current anchor is hidden, continue with its parent */\n let offset = target.offsetTop\n while (!offset && target.parentElement) {\n target = target.parentElement\n offset = target.offsetTop\n }\n\n /* Fix anchor offsets in tables - see https://bit.ly/3CUFOcn */\n let parent = target.offsetParent as HTMLElement\n for (; parent; parent = parent.offsetParent as HTMLElement)\n offset += parent.offsetTop\n\n /* Map reversed anchor path to vertical offset */\n return index.set(\n [...path = [...path, anchor]].reverse(),\n offset\n )\n }, new Map<HTMLAnchorElement[], number>()))\n })\n .pipe(\n\n /* Sort index by vertical offset (see https://bit.ly/30z6QSO) */\n map(index => new Map([...index].sort(([, a], [, b]) => a - b))),\n combineLatestWith(adjust$),\n\n /* Re-compute partition when viewport offset changes */\n switchMap(([index, adjust]) => viewport$\n .pipe(\n scan(([prev, next], { offset: { y }, size }) => {\n const last = y + size.height >= Math.floor(body.height)\n\n /* Look forward */\n while (next.length) {\n const [, offset] = next[0]\n if (offset - adjust < y || last) {\n prev = [...prev, next.shift()!]\n } else {\n break\n }\n }\n\n /* Look backward */\n while (prev.length) {\n const [, offset] = prev[prev.length - 1]\n if (offset - adjust >= y && !last) {\n next = [prev.pop()!, ...next]\n } else {\n break\n }\n }\n\n /* Return partition */\n return [prev, next]\n }, [[], [...index]]),\n distinctUntilChanged((a, b) => (\n a[0] === b[0] &&\n a[1] === b[1]\n ))\n )\n )\n )\n )\n )\n\n /* Compute and return anchor list migrations */\n return partition$\n .pipe(\n map(([prev, next]) => ({\n prev: prev.map(([path]) => path),\n next: next.map(([path]) => path)\n })),\n\n /* Extract anchor list migrations */\n startWith({ prev: [], next: [] }),\n bufferCount(2, 1),\n map(([a, b]) => {\n\n /* Moving down */\n if (a.prev.length < b.prev.length) {\n return {\n prev: b.prev.slice(Math.max(0, a.prev.length - 1), b.prev.length),\n next: []\n }\n\n /* Moving up */\n } else {\n return {\n prev: b.prev.slice(-1),\n next: b.next.slice(0, b.next.length - a.next.length)\n }\n }\n })\n )\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Mount table of contents\n *\n * @param el - Table of contents element\n * @param options - Options\n *\n * @returns Table of contents component observable\n */\nexport function mountTableOfContents(\n el: HTMLElement, { viewport$, header$, main$, target$ }: MountOptions\n): Observable<Component<TableOfContents>> {\n return defer(() => {\n const push$ = new Subject<TableOfContents>()\n const done$ = push$.pipe(ignoreElements(), endWith(true))\n push$.subscribe(({ prev, next }) => {\n\n /* Look forward */\n for (const [anchor] of next) {\n anchor.classList.remove(\"md-nav__link--passed\")\n anchor.classList.remove(\"md-nav__link--active\")\n }\n\n /* Look backward */\n for (const [index, [anchor]] of prev.entries()) {\n anchor.classList.add(\"md-nav__link--passed\")\n anchor.classList.toggle(\n \"md-nav__link--active\",\n index === prev.length - 1\n )\n }\n })\n\n /* Set up following, if enabled */\n if (feature(\"toc.follow\")) {\n\n /* Toggle smooth scrolling only for anchor clicks */\n const smooth$ = merge(\n viewport$.pipe(debounceTime(1), map(() => undefined)),\n viewport$.pipe(debounceTime(250), map(() => \"smooth\" as const))\n )\n\n /* Bring active anchor into view */ // @todo: refactor\n push$\n .pipe(\n filter(({ prev }) => prev.length > 0),\n combineLatestWith(main$.pipe(observeOn(asyncScheduler))),\n withLatestFrom(smooth$)\n )\n .subscribe(([[{ prev }], behavior]) => {\n const [anchor] = prev[prev.length - 1]\n if (anchor.offsetHeight) {\n\n /* Retrieve overflowing container and scroll */\n const container = getElementContainer(anchor)\n if (typeof container !== \"undefined\") {\n const offset = anchor.offsetTop - container.offsetTop\n const { height } = getElementSize(container)\n container.scrollTo({\n top: offset - height / 2,\n behavior\n })\n }\n }\n })\n }\n\n /* Set up anchor tracking, if enabled */\n if (feature(\"navigation.tracking\"))\n viewport$\n .pipe(\n takeUntil(done$),\n distinctUntilKeyChanged(\"offset\"),\n debounceTime(250),\n skip(1),\n takeUntil(target$.pipe(skip(1))),\n repeat({ delay: 250 }),\n withLatestFrom(push$)\n )\n .subscribe(([, { prev }]) => {\n const url = getLocation()\n\n /* Set hash fragment to active anchor */\n const anchor = prev[prev.length - 1]\n if (anchor && anchor.length) {\n const [active] = anchor\n const { hash } = new URL(active.href)\n if (url.hash !== hash) {\n url.hash = hash\n history.replaceState({}, \"\", `${url}`)\n }\n\n /* Reset anchor when at the top */\n } else {\n url.hash = \"\"\n history.replaceState({}, \"\", `${url}`)\n }\n })\n\n /* Create and return component */\n return watchTableOfContents(el, { viewport$, header$ })\n .pipe(\n tap(state => push$.next(state)),\n finalize(() => push$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n })\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n Subject,\n bufferCount,\n combineLatest,\n distinctUntilChanged,\n distinctUntilKeyChanged,\n endWith,\n finalize,\n fromEvent,\n ignoreElements,\n map,\n repeat,\n skip,\n takeUntil,\n tap\n} from \"rxjs\"\n\nimport { Viewport } from \"~/browser\"\n\nimport { Component } from \"../_\"\nimport { Header } from \"../header\"\nimport { Main } from \"../main\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Back-to-top button\n */\nexport interface BackToTop {\n hidden: boolean /* Back-to-top button is hidden */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n viewport$: Observable<Viewport> /* Viewport observable */\n main$: Observable<Main> /* Main area observable */\n target$: Observable<HTMLElement> /* Location target observable */\n}\n\n/**\n * Mount options\n */\ninterface MountOptions {\n viewport$: Observable<Viewport> /* Viewport observable */\n header$: Observable<Header> /* Header observable */\n main$: Observable<Main> /* Main area observable */\n target$: Observable<HTMLElement> /* Location target observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch back-to-top\n *\n * @param _el - Back-to-top element\n * @param options - Options\n *\n * @returns Back-to-top observable\n */\nexport function watchBackToTop(\n _el: HTMLElement, { viewport$, main$, target$ }: WatchOptions\n): Observable<BackToTop> {\n\n /* Compute direction */\n const direction$ = viewport$\n .pipe(\n map(({ offset: { y } }) => y),\n bufferCount(2, 1),\n map(([a, b]) => a > b && b > 0),\n distinctUntilChanged()\n )\n\n /* Compute whether main area is active */\n const active$ = main$\n .pipe(\n map(({ active }) => active)\n )\n\n /* Compute threshold for hiding */\n return combineLatest([active$, direction$])\n .pipe(\n map(([active, direction]) => !(active && direction)),\n distinctUntilChanged(),\n takeUntil(target$.pipe(skip(1))),\n endWith(true),\n repeat({ delay: 250 }),\n map(hidden => ({ hidden }))\n )\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Mount back-to-top\n *\n * @param el - Back-to-top element\n * @param options - Options\n *\n * @returns Back-to-top component observable\n */\nexport function mountBackToTop(\n el: HTMLElement, { viewport$, header$, main$, target$ }: MountOptions\n): Observable<Component<BackToTop>> {\n const push$ = new Subject<BackToTop>()\n const done$ = push$.pipe(ignoreElements(), endWith(true))\n push$.subscribe({\n\n /* Handle emission */\n next({ hidden }) {\n el.hidden = hidden\n if (hidden) {\n el.setAttribute(\"tabindex\", \"-1\")\n el.blur()\n } else {\n el.removeAttribute(\"tabindex\")\n }\n },\n\n /* Handle complete */\n complete() {\n el.style.top = \"\"\n el.hidden = true\n el.removeAttribute(\"tabindex\")\n }\n })\n\n /* Watch header height */\n header$\n .pipe(\n takeUntil(done$),\n distinctUntilKeyChanged(\"height\")\n )\n .subscribe(({ height }) => {\n el.style.top = `${height + 16}px`\n })\n\n /* Go back to top */\n fromEvent(el, \"click\")\n .subscribe(ev => {\n ev.preventDefault()\n window.scrollTo({ top: 0 })\n })\n\n /* Create and return component */\n return watchBackToTop(el, { viewport$, main$, target$ })\n .pipe(\n tap(state => push$.next(state)),\n finalize(() => push$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n EMPTY,\n Observable,\n filter,\n finalize,\n map,\n mergeMap,\n skip,\n switchMap,\n take,\n takeUntil\n} from \"rxjs\"\n\nimport { feature } from \"~/_\"\nimport {\n Viewport,\n getElements,\n watchElementVisibility\n} from \"~/browser\"\nimport { mountInlineTooltip2 } from \"~/components/tooltip2\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Patch options\n */\ninterface PatchOptions {\n document$: Observable<Document> /* Document observable */\n viewport$: Observable<Viewport> /* Viewport observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Patch ellipsis\n *\n * This function will fetch all elements that are shortened with ellipsis, and\n * filter those which are visible. Once they become visible, they stay in that\n * state, even though they may be hidden again. This optimization is necessary\n * to reduce pressure on the browser, with elements fading in and out of view.\n *\n * @param options - Options\n */\nexport function patchEllipsis(\n { document$, viewport$ }: PatchOptions\n): void {\n document$\n .pipe(\n switchMap(() => getElements(\".md-ellipsis\")),\n mergeMap(el => watchElementVisibility(el)\n .pipe(\n takeUntil(document$.pipe(skip(1))),\n filter(visible => visible),\n map(() => el),\n take(1)\n )\n ),\n filter(el => el.offsetWidth < el.scrollWidth),\n mergeMap(el => {\n const text = el.innerText\n const host = el.closest(\"a\") || el\n host.title = text\n\n // Do not mount improved tooltip if feature is disabled\n if (!feature(\"content.tooltips\"))\n return EMPTY\n\n /* Mount tooltip */\n return mountInlineTooltip2(host, { viewport$ })\n .pipe(\n takeUntil(document$.pipe(skip(1))),\n finalize(() => host.removeAttribute(\"title\"))\n )\n })\n )\n .subscribe()\n\n // @todo move this outside of here and fix memleaks\n if (feature(\"content.tooltips\"))\n document$\n .pipe(\n switchMap(() => getElements(\".md-status\")),\n mergeMap(el => mountInlineTooltip2(el, { viewport$ }))\n )\n .subscribe()\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n fromEvent,\n map,\n mergeMap,\n switchMap,\n takeWhile,\n tap,\n withLatestFrom\n} from \"rxjs\"\n\nimport { getElements } from \"~/browser\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Patch options\n */\ninterface PatchOptions {\n document$: Observable<Document> /* Document observable */\n tablet$: Observable<boolean> /* Media tablet observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Patch indeterminate checkboxes\n *\n * This function replaces the indeterminate \"pseudo state\" with the actual\n * indeterminate state, which is used to keep navigation always expanded.\n *\n * @param options - Options\n */\nexport function patchIndeterminate(\n { document$, tablet$ }: PatchOptions\n): void {\n document$\n .pipe(\n switchMap(() => getElements<HTMLInputElement>(\n \".md-toggle--indeterminate\"\n )),\n tap(el => {\n el.indeterminate = true\n el.checked = false\n }),\n mergeMap(el => fromEvent(el, \"change\")\n .pipe(\n takeWhile(() => el.classList.contains(\"md-toggle--indeterminate\")),\n map(() => el)\n )\n ),\n withLatestFrom(tablet$)\n )\n .subscribe(([el, tablet]) => {\n el.classList.remove(\"md-toggle--indeterminate\")\n if (tablet)\n el.checked = false\n })\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n filter,\n fromEvent,\n map,\n mergeMap,\n switchMap,\n tap\n} from \"rxjs\"\n\nimport { getElements } from \"~/browser\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Patch options\n */\ninterface PatchOptions {\n document$: Observable<Document> /* Document observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Check whether the given device is an Apple device\n *\n * @returns Test result\n */\nfunction isAppleDevice(): boolean {\n return /(iPad|iPhone|iPod)/.test(navigator.userAgent)\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Patch all elements with `data-md-scrollfix` attributes\n *\n * This is a year-old patch which ensures that overflow scrolling works at the\n * top and bottom of containers on iOS by ensuring a `1px` scroll offset upon\n * the start of a touch event.\n *\n * @see https://bit.ly/2SCtAOO - Original source\n *\n * @param options - Options\n */\nexport function patchScrollfix(\n { document$ }: PatchOptions\n): void {\n document$\n .pipe(\n switchMap(() => getElements(\"[data-md-scrollfix]\")),\n tap(el => el.removeAttribute(\"data-md-scrollfix\")),\n filter(isAppleDevice),\n mergeMap(el => fromEvent(el, \"touchstart\")\n .pipe(\n map(() => el)\n )\n )\n )\n .subscribe(el => {\n const top = el.scrollTop\n\n /* We're at the top of the container */\n if (top === 0) {\n el.scrollTop = 1\n\n /* We're at the bottom of the container */\n } else if (top + el.offsetHeight === el.scrollHeight) {\n el.scrollTop = top - 1\n }\n })\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n combineLatest,\n delay,\n map,\n of,\n switchMap,\n withLatestFrom\n} from \"rxjs\"\n\nimport {\n Viewport,\n watchToggle\n} from \"~/browser\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Patch options\n */\ninterface PatchOptions {\n viewport$: Observable<Viewport> /* Viewport observable */\n tablet$: Observable<boolean> /* Media tablet observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Patch the document body to lock when search is open\n *\n * For mobile and tablet viewports, the search is rendered full screen, which\n * leads to scroll leaking when at the top or bottom of the search result. This\n * function locks the body when the search is in full screen mode, and restores\n * the scroll position when leaving.\n *\n * @param options - Options\n */\nexport function patchScrolllock(\n { viewport$, tablet$ }: PatchOptions\n): void {\n combineLatest([watchToggle(\"search\"), tablet$])\n .pipe(\n map(([active, tablet]) => active && !tablet),\n switchMap(active => of(active)\n .pipe(\n delay(active ? 400 : 100)\n )\n ),\n withLatestFrom(viewport$)\n )\n .subscribe(([active, { offset: { y }}]) => {\n if (active) {\n document.body.setAttribute(\"data-md-scrolllock\", \"\")\n document.body.style.top = `-${y}px`\n } else {\n const value = -1 * parseInt(document.body.style.top, 10)\n document.body.removeAttribute(\"data-md-scrolllock\")\n document.body.style.top = \"\"\n if (value)\n window.scrollTo(0, value)\n }\n })\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n/* ----------------------------------------------------------------------------\n * Polyfills\n * ------------------------------------------------------------------------- */\n\n/* Polyfill `Object.entries` */\nif (!Object.entries)\n Object.entries = function (obj: object) {\n const data: [string, string][] = []\n for (const key of Object.keys(obj))\n // @ts-expect-error - ignore property access warning\n data.push([key, obj[key]])\n\n /* Return entries */\n return data\n }\n\n/* Polyfill `Object.values` */\nif (!Object.values)\n Object.values = function (obj: object) {\n const data: string[] = []\n for (const key of Object.keys(obj))\n // @ts-expect-error - ignore property access warning\n data.push(obj[key])\n\n /* Return values */\n return data\n }\n\n/* ------------------------------------------------------------------------- */\n\n/* Polyfills for `Element` */\nif (typeof Element !== \"undefined\") {\n\n /* Polyfill `Element.scrollTo` */\n if (!Element.prototype.scrollTo)\n Element.prototype.scrollTo = function (\n x?: ScrollToOptions | number, y?: number\n ): void {\n if (typeof x === \"object\") {\n this.scrollLeft = x.left!\n this.scrollTop = x.top!\n } else {\n this.scrollLeft = x!\n this.scrollTop = y!\n }\n }\n\n /* Polyfill `Element.replaceWith` */\n if (!Element.prototype.replaceWith)\n Element.prototype.replaceWith = function (\n ...nodes: Array<string | Node>\n ): void {\n const parent = this.parentNode\n if (parent) {\n if (nodes.length === 0)\n parent.removeChild(this)\n\n /* Replace children and create text nodes */\n for (let i = nodes.length - 1; i >= 0; i--) {\n let node = nodes[i]\n if (typeof node === \"string\")\n node = document.createTextNode(node)\n else if (node.parentNode)\n node.parentNode.removeChild(node)\n\n /* Replace child or insert before previous sibling */\n if (!i)\n parent.replaceChild(node, this)\n else\n parent.insertBefore(this.previousSibling!, node)\n }\n }\n }\n}\n"], "mappings": "2rCAAA,IAAAA,GAAAC,GAAA,CAAAC,GAAAC,KAAA,EAAC,SAAUC,EAAQC,EAAS,CAC1B,OAAOH,IAAY,UAAY,OAAOC,IAAW,YAAcE,EAAQ,EACvE,OAAO,QAAW,YAAc,OAAO,IAAM,OAAOA,CAAO,EAC1DA,EAAQ,CACX,GAAEH,GAAO,UAAY,CAAE,aASrB,SAASI,EAA0BC,EAAO,CACxC,IAAIC,EAAmB,GACnBC,EAA0B,GAC1BC,EAAiC,KAEjCC,EAAsB,CACxB,KAAM,GACN,OAAQ,GACR,IAAK,GACL,IAAK,GACL,MAAO,GACP,SAAU,GACV,OAAQ,GACR,KAAM,GACN,MAAO,GACP,KAAM,GACN,KAAM,GACN,SAAU,GACV,iBAAkB,EACpB,EAOA,SAASC,EAAmBC,EAAI,CAC9B,MACE,GAAAA,GACAA,IAAO,UACPA,EAAG,WAAa,QAChBA,EAAG,WAAa,QAChB,cAAeA,GACf,aAAcA,EAAG,UAKrB,CASA,SAASC,EAA8BD,EAAI,CACzC,IAAIE,GAAOF,EAAG,KACVG,GAAUH,EAAG,QAUjB,MARI,GAAAG,KAAY,SAAWL,EAAoBI,EAAI,GAAK,CAACF,EAAG,UAIxDG,KAAY,YAAc,CAACH,EAAG,UAI9BA,EAAG,kBAKT,CAOA,SAASI,EAAqBJ,EAAI,CAC5BA,EAAG,UAAU,SAAS,eAAe,IAGzCA,EAAG,UAAU,IAAI,eAAe,EAChCA,EAAG,aAAa,2BAA4B,EAAE,EAChD,CAOA,SAASK,EAAwBL,EAAI,CAC9BA,EAAG,aAAa,0BAA0B,IAG/CA,EAAG,UAAU,OAAO,eAAe,EACnCA,EAAG,gBAAgB,0BAA0B,EAC/C,CAUA,SAASM,EAAUC,EAAG,CAChBA,EAAE,SAAWA,EAAE,QAAUA,EAAE,UAI3BR,EAAmBL,EAAM,aAAa,GACxCU,EAAqBV,EAAM,aAAa,EAG1CC,EAAmB,GACrB,CAUA,SAASa,EAAcD,EAAG,CACxBZ,EAAmB,EACrB,CASA,SAASc,EAAQF,EAAG,CAEbR,EAAmBQ,EAAE,MAAM,IAI5BZ,GAAoBM,EAA8BM,EAAE,MAAM,IAC5DH,EAAqBG,EAAE,MAAM,CAEjC,CAMA,SAASG,EAAOH,EAAG,CACZR,EAAmBQ,EAAE,MAAM,IAK9BA,EAAE,OAAO,UAAU,SAAS,eAAe,GAC3CA,EAAE,OAAO,aAAa,0BAA0B,KAMhDX,EAA0B,GAC1B,OAAO,aAAaC,CAA8B,EAClDA,EAAiC,OAAO,WAAW,UAAW,CAC5DD,EAA0B,EAC5B,EAAG,GAAG,EACNS,EAAwBE,EAAE,MAAM,EAEpC,CAOA,SAASI,EAAmBJ,EAAG,CACzB,SAAS,kBAAoB,WAK3BX,IACFD,EAAmB,IAErBiB,EAA+B,EAEnC,CAQA,SAASA,GAAiC,CACxC,SAAS,iBAAiB,YAAaC,CAAoB,EAC3D,SAAS,iBAAiB,YAAaA,CAAoB,EAC3D,SAAS,iBAAiB,UAAWA,CAAoB,EACzD,SAAS,iBAAiB,cAAeA,CAAoB,EAC7D,SAAS,iBAAiB,cAAeA,CAAoB,EAC7D,SAAS,iBAAiB,YAAaA,CAAoB,EAC3D,SAAS,iBAAiB,YAAaA,CAAoB,EAC3D,SAAS,iBAAiB,aAAcA,CAAoB,EAC5D,SAAS,iBAAiB,WAAYA,CAAoB,CAC5D,CAEA,SAASC,IAAoC,CAC3C,SAAS,oBAAoB,YAAaD,CAAoB,EAC9D,SAAS,oBAAoB,YAAaA,CAAoB,EAC9D,SAAS,oBAAoB,UAAWA,CAAoB,EAC5D,SAAS,oBAAoB,cAAeA,CAAoB,EAChE,SAAS,oBAAoB,cAAeA,CAAoB,EAChE,SAAS,oBAAoB,YAAaA,CAAoB,EAC9D,SAAS,oBAAoB,YAAaA,CAAoB,EAC9D,SAAS,oBAAoB,aAAcA,CAAoB,EAC/D,SAAS,oBAAoB,WAAYA,CAAoB,CAC/D,CASA,SAASA,EAAqBN,EAAG,CAG3BA,EAAE,OAAO,UAAYA,EAAE,OAAO,SAAS,YAAY,IAAM,SAI7DZ,EAAmB,GACnBmB,GAAkC,EACpC,CAKA,SAAS,iBAAiB,UAAWR,EAAW,EAAI,EACpD,SAAS,iBAAiB,YAAaE,EAAe,EAAI,EAC1D,SAAS,iBAAiB,cAAeA,EAAe,EAAI,EAC5D,SAAS,iBAAiB,aAAcA,EAAe,EAAI,EAC3D,SAAS,iBAAiB,mBAAoBG,EAAoB,EAAI,EAEtEC,EAA+B,EAM/BlB,EAAM,iBAAiB,QAASe,EAAS,EAAI,EAC7Cf,EAAM,iBAAiB,OAAQgB,EAAQ,EAAI,EAOvChB,EAAM,WAAa,KAAK,wBAA0BA,EAAM,KAI1DA,EAAM,KAAK,aAAa,wBAAyB,EAAE,EAC1CA,EAAM,WAAa,KAAK,gBACjC,SAAS,gBAAgB,UAAU,IAAI,kBAAkB,EACzD,SAAS,gBAAgB,aAAa,wBAAyB,EAAE,EAErE,CAKA,GAAI,OAAO,QAAW,aAAe,OAAO,UAAa,YAAa,CAIpE,OAAO,0BAA4BD,EAInC,IAAIsB,EAEJ,GAAI,CACFA,EAAQ,IAAI,YAAY,8BAA8B,CACxD,OAASC,EAAO,CAEdD,EAAQ,SAAS,YAAY,aAAa,EAC1CA,EAAM,gBAAgB,+BAAgC,GAAO,GAAO,CAAC,CAAC,CACxE,CAEA,OAAO,cAAcA,CAAK,CAC5B,CAEI,OAAO,UAAa,aAGtBtB,EAA0B,QAAQ,CAGtC,CAAE,ICvTF,IAAAwB,GAAAC,GAAA,CAAAC,GAAAC,KAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,GAeA,IAAIC,GAAkB,UAOtBD,GAAO,QAAUE,GAUjB,SAASA,GAAWC,EAAQ,CAC1B,IAAIC,EAAM,GAAKD,EACXE,EAAQJ,GAAgB,KAAKG,CAAG,EAEpC,GAAI,CAACC,EACH,OAAOD,EAGT,IAAIE,EACAC,EAAO,GACPC,EAAQ,EACRC,EAAY,EAEhB,IAAKD,EAAQH,EAAM,MAAOG,EAAQJ,EAAI,OAAQI,IAAS,CACrD,OAAQJ,EAAI,WAAWI,CAAK,EAAG,CAC7B,IAAK,IACHF,EAAS,SACT,MACF,IAAK,IACHA,EAAS,QACT,MACF,IAAK,IACHA,EAAS,QACT,MACF,IAAK,IACHA,EAAS,OACT,MACF,IAAK,IACHA,EAAS,OACT,MACF,QACE,QACJ,CAEIG,IAAcD,IAChBD,GAAQH,EAAI,UAAUK,EAAWD,CAAK,GAGxCC,EAAYD,EAAQ,EACpBD,GAAQD,CACV,CAEA,OAAOG,IAAcD,EACjBD,EAAOH,EAAI,UAAUK,EAAWD,CAAK,EACrCD,CACN,IC7EA,IAAAG,GAAAC,GAAA,CAAAC,GAAAC,KAAA;AAAA;AAAA;AAAA;AAAA;AAAA,IAMC,SAA0CC,EAAMC,EAAS,CACtD,OAAOH,IAAY,UAAY,OAAOC,IAAW,SACnDA,GAAO,QAAUE,EAAQ,EAClB,OAAO,QAAW,YAAc,OAAO,IAC9C,OAAO,CAAC,EAAGA,CAAO,EACX,OAAOH,IAAY,SAC1BA,GAAQ,YAAiBG,EAAQ,EAEjCD,EAAK,YAAiBC,EAAQ,CAChC,GAAGH,GAAM,UAAW,CACpB,OAAiB,UAAW,CAClB,IAAII,EAAuB,CAE/B,IACC,SAASC,EAAyBC,EAAqBC,EAAqB,CAEnF,aAGAA,EAAoB,EAAED,EAAqB,CACzC,QAAW,UAAW,CAAE,OAAqBE,EAAW,CAC1D,CAAC,EAGD,IAAIC,EAAeF,EAAoB,GAAG,EACtCG,EAAoCH,EAAoB,EAAEE,CAAY,EAEtEE,EAASJ,EAAoB,GAAG,EAChCK,EAA8BL,EAAoB,EAAEI,CAAM,EAE1DE,EAAaN,EAAoB,GAAG,EACpCO,EAA8BP,EAAoB,EAAEM,CAAU,EAOlE,SAASE,EAAQC,EAAM,CACrB,GAAI,CACF,OAAO,SAAS,YAAYA,CAAI,CAClC,OAASC,EAAK,CACZ,MAAO,EACT,CACF,CAUA,IAAIC,EAAqB,SAA4BC,EAAQ,CAC3D,IAAIC,EAAeN,EAAe,EAAEK,CAAM,EAC1C,OAAAJ,EAAQ,KAAK,EACNK,CACT,EAEiCC,EAAeH,EAOhD,SAASI,EAAkBC,EAAO,CAChC,IAAIC,EAAQ,SAAS,gBAAgB,aAAa,KAAK,IAAM,MACzDC,EAAc,SAAS,cAAc,UAAU,EAEnDA,EAAY,MAAM,SAAW,OAE7BA,EAAY,MAAM,OAAS,IAC3BA,EAAY,MAAM,QAAU,IAC5BA,EAAY,MAAM,OAAS,IAE3BA,EAAY,MAAM,SAAW,WAC7BA,EAAY,MAAMD,EAAQ,QAAU,MAAM,EAAI,UAE9C,IAAIE,EAAY,OAAO,aAAe,SAAS,gBAAgB,UAC/D,OAAAD,EAAY,MAAM,IAAM,GAAG,OAAOC,EAAW,IAAI,EACjDD,EAAY,aAAa,WAAY,EAAE,EACvCA,EAAY,MAAQF,EACbE,CACT,CAYA,IAAIE,EAAiB,SAAwBJ,EAAOK,EAAS,CAC3D,IAAIH,EAAcH,EAAkBC,CAAK,EACzCK,EAAQ,UAAU,YAAYH,CAAW,EACzC,IAAIL,EAAeN,EAAe,EAAEW,CAAW,EAC/C,OAAAV,EAAQ,MAAM,EACdU,EAAY,OAAO,EACZL,CACT,EASIS,GAAsB,SAA6BV,EAAQ,CAC7D,IAAIS,EAAU,UAAU,OAAS,GAAK,UAAU,CAAC,IAAM,OAAY,UAAU,CAAC,EAAI,CAChF,UAAW,SAAS,IACtB,EACIR,EAAe,GAEnB,OAAI,OAAOD,GAAW,SACpBC,EAAeO,EAAeR,EAAQS,CAAO,EACpCT,aAAkB,kBAAoB,CAAC,CAAC,OAAQ,SAAU,MAAO,MAAO,UAAU,EAAE,SAASA,GAAW,KAA4B,OAASA,EAAO,IAAI,EAEjKC,EAAeO,EAAeR,EAAO,MAAOS,CAAO,GAEnDR,EAAeN,EAAe,EAAEK,CAAM,EACtCJ,EAAQ,MAAM,GAGTK,CACT,EAEiCU,EAAgBD,GAEjD,SAASE,EAAQC,EAAK,CAAE,0BAA2B,OAAI,OAAO,QAAW,YAAc,OAAO,OAAO,UAAa,SAAYD,EAAU,SAAiBC,EAAK,CAAE,OAAO,OAAOA,CAAK,EAAYD,EAAU,SAAiBC,EAAK,CAAE,OAAOA,GAAO,OAAO,QAAW,YAAcA,EAAI,cAAgB,QAAUA,IAAQ,OAAO,UAAY,SAAW,OAAOA,CAAK,EAAYD,EAAQC,CAAG,CAAG,CAUzX,IAAIC,GAAyB,UAAkC,CAC7D,IAAIL,EAAU,UAAU,OAAS,GAAK,UAAU,CAAC,IAAM,OAAY,UAAU,CAAC,EAAI,CAAC,EAE/EM,EAAkBN,EAAQ,OAC1BO,EAASD,IAAoB,OAAS,OAASA,EAC/CE,EAAYR,EAAQ,UACpBT,EAASS,EAAQ,OACjBS,GAAOT,EAAQ,KAEnB,GAAIO,IAAW,QAAUA,IAAW,MAClC,MAAM,IAAI,MAAM,oDAAoD,EAItE,GAAIhB,IAAW,OACb,GAAIA,GAAUY,EAAQZ,CAAM,IAAM,UAAYA,EAAO,WAAa,EAAG,CACnE,GAAIgB,IAAW,QAAUhB,EAAO,aAAa,UAAU,EACrD,MAAM,IAAI,MAAM,mFAAmF,EAGrG,GAAIgB,IAAW,QAAUhB,EAAO,aAAa,UAAU,GAAKA,EAAO,aAAa,UAAU,GACxF,MAAM,IAAI,MAAM,uGAAwG,CAE5H,KACE,OAAM,IAAI,MAAM,6CAA6C,EAKjE,GAAIkB,GACF,OAAOP,EAAaO,GAAM,CACxB,UAAWD,CACb,CAAC,EAIH,GAAIjB,EACF,OAAOgB,IAAW,MAAQd,EAAYF,CAAM,EAAIW,EAAaX,EAAQ,CACnE,UAAWiB,CACb,CAAC,CAEL,EAEiCE,GAAmBL,GAEpD,SAASM,GAAiBP,EAAK,CAAE,0BAA2B,OAAI,OAAO,QAAW,YAAc,OAAO,OAAO,UAAa,SAAYO,GAAmB,SAAiBP,EAAK,CAAE,OAAO,OAAOA,CAAK,EAAYO,GAAmB,SAAiBP,EAAK,CAAE,OAAOA,GAAO,OAAO,QAAW,YAAcA,EAAI,cAAgB,QAAUA,IAAQ,OAAO,UAAY,SAAW,OAAOA,CAAK,EAAYO,GAAiBP,CAAG,CAAG,CAE7Z,SAASQ,GAAgBC,EAAUC,EAAa,CAAE,GAAI,EAAED,aAAoBC,GAAgB,MAAM,IAAI,UAAU,mCAAmC,CAAK,CAExJ,SAASC,GAAkBxB,EAAQyB,EAAO,CAAE,QAASC,EAAI,EAAGA,EAAID,EAAM,OAAQC,IAAK,CAAE,IAAIC,EAAaF,EAAMC,CAAC,EAAGC,EAAW,WAAaA,EAAW,YAAc,GAAOA,EAAW,aAAe,GAAU,UAAWA,IAAYA,EAAW,SAAW,IAAM,OAAO,eAAe3B,EAAQ2B,EAAW,IAAKA,CAAU,CAAG,CAAE,CAE5T,SAASC,GAAaL,EAAaM,EAAYC,EAAa,CAAE,OAAID,GAAYL,GAAkBD,EAAY,UAAWM,CAAU,EAAOC,GAAaN,GAAkBD,EAAaO,CAAW,EAAUP,CAAa,CAEtN,SAASQ,GAAUC,EAAUC,EAAY,CAAE,GAAI,OAAOA,GAAe,YAAcA,IAAe,KAAQ,MAAM,IAAI,UAAU,oDAAoD,EAAKD,EAAS,UAAY,OAAO,OAAOC,GAAcA,EAAW,UAAW,CAAE,YAAa,CAAE,MAAOD,EAAU,SAAU,GAAM,aAAc,EAAK,CAAE,CAAC,EAAOC,GAAYC,GAAgBF,EAAUC,CAAU,CAAG,CAEhY,SAASC,GAAgBC,EAAGC,EAAG,CAAE,OAAAF,GAAkB,OAAO,gBAAkB,SAAyBC,EAAGC,EAAG,CAAE,OAAAD,EAAE,UAAYC,EAAUD,CAAG,EAAUD,GAAgBC,EAAGC,CAAC,CAAG,CAEzK,SAASC,GAAaC,EAAS,CAAE,IAAIC,EAA4BC,GAA0B,EAAG,OAAO,UAAgC,CAAE,IAAIC,EAAQC,GAAgBJ,CAAO,EAAGK,EAAQ,GAAIJ,EAA2B,CAAE,IAAIK,EAAYF,GAAgB,IAAI,EAAE,YAAaC,EAAS,QAAQ,UAAUF,EAAO,UAAWG,CAAS,CAAG,MAASD,EAASF,EAAM,MAAM,KAAM,SAAS,EAAK,OAAOI,GAA2B,KAAMF,CAAM,CAAG,CAAG,CAExa,SAASE,GAA2BC,EAAMC,EAAM,CAAE,OAAIA,IAAS3B,GAAiB2B,CAAI,IAAM,UAAY,OAAOA,GAAS,YAAsBA,EAAeC,GAAuBF,CAAI,CAAG,CAEzL,SAASE,GAAuBF,EAAM,CAAE,GAAIA,IAAS,OAAU,MAAM,IAAI,eAAe,2DAA2D,EAAK,OAAOA,CAAM,CAErK,SAASN,IAA4B,CAA0E,GAApE,OAAO,SAAY,aAAe,CAAC,QAAQ,WAA6B,QAAQ,UAAU,KAAM,MAAO,GAAO,GAAI,OAAO,OAAU,WAAY,MAAO,GAAM,GAAI,CAAE,YAAK,UAAU,SAAS,KAAK,QAAQ,UAAU,KAAM,CAAC,EAAG,UAAY,CAAC,CAAC,CAAC,EAAU,EAAM,OAASS,EAAG,CAAE,MAAO,EAAO,CAAE,CAEnU,SAASP,GAAgBP,EAAG,CAAE,OAAAO,GAAkB,OAAO,eAAiB,OAAO,eAAiB,SAAyBP,EAAG,CAAE,OAAOA,EAAE,WAAa,OAAO,eAAeA,CAAC,CAAG,EAAUO,GAAgBP,CAAC,CAAG,CAa5M,SAASe,GAAkBC,EAAQC,EAAS,CAC1C,IAAIC,EAAY,kBAAkB,OAAOF,CAAM,EAE/C,GAAKC,EAAQ,aAAaC,CAAS,EAInC,OAAOD,EAAQ,aAAaC,CAAS,CACvC,CAOA,IAAIC,GAAyB,SAAUC,EAAU,CAC/CxB,GAAUuB,EAAWC,CAAQ,EAE7B,IAAIC,EAASnB,GAAaiB,CAAS,EAMnC,SAASA,EAAUG,EAAShD,EAAS,CACnC,IAAIiD,EAEJ,OAAArC,GAAgB,KAAMiC,CAAS,EAE/BI,EAAQF,EAAO,KAAK,IAAI,EAExBE,EAAM,eAAejD,CAAO,EAE5BiD,EAAM,YAAYD,CAAO,EAElBC,CACT,CAQA,OAAA9B,GAAa0B,EAAW,CAAC,CACvB,IAAK,iBACL,MAAO,UAA0B,CAC/B,IAAI7C,EAAU,UAAU,OAAS,GAAK,UAAU,CAAC,IAAM,OAAY,UAAU,CAAC,EAAI,CAAC,EACnF,KAAK,OAAS,OAAOA,EAAQ,QAAW,WAAaA,EAAQ,OAAS,KAAK,cAC3E,KAAK,OAAS,OAAOA,EAAQ,QAAW,WAAaA,EAAQ,OAAS,KAAK,cAC3E,KAAK,KAAO,OAAOA,EAAQ,MAAS,WAAaA,EAAQ,KAAO,KAAK,YACrE,KAAK,UAAYW,GAAiBX,EAAQ,SAAS,IAAM,SAAWA,EAAQ,UAAY,SAAS,IACnG,CAMF,EAAG,CACD,IAAK,cACL,MAAO,SAAqBgD,EAAS,CACnC,IAAIE,EAAS,KAEb,KAAK,SAAWlE,EAAe,EAAEgE,EAAS,QAAS,SAAUR,GAAG,CAC9D,OAAOU,EAAO,QAAQV,EAAC,CACzB,CAAC,CACH,CAMF,EAAG,CACD,IAAK,UACL,MAAO,SAAiBA,EAAG,CACzB,IAAIQ,EAAUR,EAAE,gBAAkBA,EAAE,cAChCjC,GAAS,KAAK,OAAOyC,CAAO,GAAK,OACjCvC,GAAOC,GAAgB,CACzB,OAAQH,GACR,UAAW,KAAK,UAChB,OAAQ,KAAK,OAAOyC,CAAO,EAC3B,KAAM,KAAK,KAAKA,CAAO,CACzB,CAAC,EAED,KAAK,KAAKvC,GAAO,UAAY,QAAS,CACpC,OAAQF,GACR,KAAME,GACN,QAASuC,EACT,eAAgB,UAA0B,CACpCA,GACFA,EAAQ,MAAM,EAGhB,OAAO,aAAa,EAAE,gBAAgB,CACxC,CACF,CAAC,CACH,CAMF,EAAG,CACD,IAAK,gBACL,MAAO,SAAuBA,EAAS,CACrC,OAAOP,GAAkB,SAAUO,CAAO,CAC5C,CAMF,EAAG,CACD,IAAK,gBACL,MAAO,SAAuBA,EAAS,CACrC,IAAIG,EAAWV,GAAkB,SAAUO,CAAO,EAElD,GAAIG,EACF,OAAO,SAAS,cAAcA,CAAQ,CAE1C,CAQF,EAAG,CACD,IAAK,cAML,MAAO,SAAqBH,EAAS,CACnC,OAAOP,GAAkB,OAAQO,CAAO,CAC1C,CAKF,EAAG,CACD,IAAK,UACL,MAAO,UAAmB,CACxB,KAAK,SAAS,QAAQ,CACxB,CACF,CAAC,EAAG,CAAC,CACH,IAAK,OACL,MAAO,SAAczD,EAAQ,CAC3B,IAAIS,EAAU,UAAU,OAAS,GAAK,UAAU,CAAC,IAAM,OAAY,UAAU,CAAC,EAAI,CAChF,UAAW,SAAS,IACtB,EACA,OAAOE,EAAaX,EAAQS,CAAO,CACrC,CAOF,EAAG,CACD,IAAK,MACL,MAAO,SAAaT,EAAQ,CAC1B,OAAOE,EAAYF,CAAM,CAC3B,CAOF,EAAG,CACD,IAAK,cACL,MAAO,UAAuB,CAC5B,IAAIgB,EAAS,UAAU,OAAS,GAAK,UAAU,CAAC,IAAM,OAAY,UAAU,CAAC,EAAI,CAAC,OAAQ,KAAK,EAC3F6C,EAAU,OAAO7C,GAAW,SAAW,CAACA,CAAM,EAAIA,EAClD8C,GAAU,CAAC,CAAC,SAAS,sBACzB,OAAAD,EAAQ,QAAQ,SAAU7C,GAAQ,CAChC8C,GAAUA,IAAW,CAAC,CAAC,SAAS,sBAAsB9C,EAAM,CAC9D,CAAC,EACM8C,EACT,CACF,CAAC,CAAC,EAEKR,CACT,EAAG/D,EAAqB,CAAE,EAEOF,GAAaiE,EAExC,EAEA,IACC,SAASxE,EAAQ,CAExB,IAAIiF,EAAqB,EAKzB,GAAI,OAAO,SAAY,aAAe,CAAC,QAAQ,UAAU,QAAS,CAC9D,IAAIC,EAAQ,QAAQ,UAEpBA,EAAM,QAAUA,EAAM,iBACNA,EAAM,oBACNA,EAAM,mBACNA,EAAM,kBACNA,EAAM,qBAC1B,CASA,SAASC,EAASb,EAASQ,EAAU,CACjC,KAAOR,GAAWA,EAAQ,WAAaW,GAAoB,CACvD,GAAI,OAAOX,EAAQ,SAAY,YAC3BA,EAAQ,QAAQQ,CAAQ,EAC1B,OAAOR,EAETA,EAAUA,EAAQ,UACtB,CACJ,CAEAtE,EAAO,QAAUmF,CAGX,EAEA,IACC,SAASnF,EAAQoF,EAA0B9E,EAAqB,CAEvE,IAAI6E,EAAU7E,EAAoB,GAAG,EAYrC,SAAS+E,EAAUf,EAASQ,EAAU/D,EAAMuE,EAAUC,EAAY,CAC9D,IAAIC,EAAaC,EAAS,MAAM,KAAM,SAAS,EAE/C,OAAAnB,EAAQ,iBAAiBvD,EAAMyE,EAAYD,CAAU,EAE9C,CACH,QAAS,UAAW,CAChBjB,EAAQ,oBAAoBvD,EAAMyE,EAAYD,CAAU,CAC5D,CACJ,CACJ,CAYA,SAASG,EAASC,EAAUb,EAAU/D,EAAMuE,EAAUC,EAAY,CAE9D,OAAI,OAAOI,EAAS,kBAAqB,WAC9BN,EAAU,MAAM,KAAM,SAAS,EAItC,OAAOtE,GAAS,WAGTsE,EAAU,KAAK,KAAM,QAAQ,EAAE,MAAM,KAAM,SAAS,GAI3D,OAAOM,GAAa,WACpBA,EAAW,SAAS,iBAAiBA,CAAQ,GAI1C,MAAM,UAAU,IAAI,KAAKA,EAAU,SAAUrB,EAAS,CACzD,OAAOe,EAAUf,EAASQ,EAAU/D,EAAMuE,EAAUC,CAAU,CAClE,CAAC,EACL,CAWA,SAASE,EAASnB,EAASQ,EAAU/D,EAAMuE,EAAU,CACjD,OAAO,SAASnB,EAAG,CACfA,EAAE,eAAiBgB,EAAQhB,EAAE,OAAQW,CAAQ,EAEzCX,EAAE,gBACFmB,EAAS,KAAKhB,EAASH,CAAC,CAEhC,CACJ,CAEAnE,EAAO,QAAU0F,CAGX,EAEA,IACC,SAAStF,EAAyBL,EAAS,CAQlDA,EAAQ,KAAO,SAASuB,EAAO,CAC3B,OAAOA,IAAU,QACVA,aAAiB,aACjBA,EAAM,WAAa,CAC9B,EAQAvB,EAAQ,SAAW,SAASuB,EAAO,CAC/B,IAAIP,EAAO,OAAO,UAAU,SAAS,KAAKO,CAAK,EAE/C,OAAOA,IAAU,SACTP,IAAS,qBAAuBA,IAAS,4BACzC,WAAYO,IACZA,EAAM,SAAW,GAAKvB,EAAQ,KAAKuB,EAAM,CAAC,CAAC,EACvD,EAQAvB,EAAQ,OAAS,SAASuB,EAAO,CAC7B,OAAO,OAAOA,GAAU,UACjBA,aAAiB,MAC5B,EAQAvB,EAAQ,GAAK,SAASuB,EAAO,CACzB,IAAIP,EAAO,OAAO,UAAU,SAAS,KAAKO,CAAK,EAE/C,OAAOP,IAAS,mBACpB,CAGM,EAEA,IACC,SAASf,EAAQoF,EAA0B9E,EAAqB,CAEvE,IAAIsF,EAAKtF,EAAoB,GAAG,EAC5BoF,EAAWpF,EAAoB,GAAG,EAWtC,SAASI,EAAOQ,EAAQH,EAAMuE,EAAU,CACpC,GAAI,CAACpE,GAAU,CAACH,GAAQ,CAACuE,EACrB,MAAM,IAAI,MAAM,4BAA4B,EAGhD,GAAI,CAACM,EAAG,OAAO7E,CAAI,EACf,MAAM,IAAI,UAAU,kCAAkC,EAG1D,GAAI,CAAC6E,EAAG,GAAGN,CAAQ,EACf,MAAM,IAAI,UAAU,mCAAmC,EAG3D,GAAIM,EAAG,KAAK1E,CAAM,EACd,OAAO2E,EAAW3E,EAAQH,EAAMuE,CAAQ,EAEvC,GAAIM,EAAG,SAAS1E,CAAM,EACvB,OAAO4E,EAAe5E,EAAQH,EAAMuE,CAAQ,EAE3C,GAAIM,EAAG,OAAO1E,CAAM,EACrB,OAAO6E,EAAe7E,EAAQH,EAAMuE,CAAQ,EAG5C,MAAM,IAAI,UAAU,2EAA2E,CAEvG,CAWA,SAASO,EAAWG,EAAMjF,EAAMuE,EAAU,CACtC,OAAAU,EAAK,iBAAiBjF,EAAMuE,CAAQ,EAE7B,CACH,QAAS,UAAW,CAChBU,EAAK,oBAAoBjF,EAAMuE,CAAQ,CAC3C,CACJ,CACJ,CAWA,SAASQ,EAAeG,EAAUlF,EAAMuE,EAAU,CAC9C,aAAM,UAAU,QAAQ,KAAKW,EAAU,SAASD,EAAM,CAClDA,EAAK,iBAAiBjF,EAAMuE,CAAQ,CACxC,CAAC,EAEM,CACH,QAAS,UAAW,CAChB,MAAM,UAAU,QAAQ,KAAKW,EAAU,SAASD,EAAM,CAClDA,EAAK,oBAAoBjF,EAAMuE,CAAQ,CAC3C,CAAC,CACL,CACJ,CACJ,CAWA,SAASS,EAAejB,EAAU/D,EAAMuE,EAAU,CAC9C,OAAOI,EAAS,SAAS,KAAMZ,EAAU/D,EAAMuE,CAAQ,CAC3D,CAEAtF,EAAO,QAAUU,CAGX,EAEA,IACC,SAASV,EAAQ,CAExB,SAASkG,EAAO5B,EAAS,CACrB,IAAInD,EAEJ,GAAImD,EAAQ,WAAa,SACrBA,EAAQ,MAAM,EAEdnD,EAAemD,EAAQ,cAElBA,EAAQ,WAAa,SAAWA,EAAQ,WAAa,WAAY,CACtE,IAAI6B,EAAa7B,EAAQ,aAAa,UAAU,EAE3C6B,GACD7B,EAAQ,aAAa,WAAY,EAAE,EAGvCA,EAAQ,OAAO,EACfA,EAAQ,kBAAkB,EAAGA,EAAQ,MAAM,MAAM,EAE5C6B,GACD7B,EAAQ,gBAAgB,UAAU,EAGtCnD,EAAemD,EAAQ,KAC3B,KACK,CACGA,EAAQ,aAAa,iBAAiB,GACtCA,EAAQ,MAAM,EAGlB,IAAI8B,EAAY,OAAO,aAAa,EAChCC,EAAQ,SAAS,YAAY,EAEjCA,EAAM,mBAAmB/B,CAAO,EAChC8B,EAAU,gBAAgB,EAC1BA,EAAU,SAASC,CAAK,EAExBlF,EAAeiF,EAAU,SAAS,CACtC,CAEA,OAAOjF,CACX,CAEAnB,EAAO,QAAUkG,CAGX,EAEA,IACC,SAASlG,EAAQ,CAExB,SAASsG,GAAK,CAGd,CAEAA,EAAE,UAAY,CACZ,GAAI,SAAUC,EAAMjB,EAAUkB,EAAK,CACjC,IAAIrC,EAAI,KAAK,IAAM,KAAK,EAAI,CAAC,GAE7B,OAACA,EAAEoC,CAAI,IAAMpC,EAAEoC,CAAI,EAAI,CAAC,IAAI,KAAK,CAC/B,GAAIjB,EACJ,IAAKkB,CACP,CAAC,EAEM,IACT,EAEA,KAAM,SAAUD,EAAMjB,EAAUkB,EAAK,CACnC,IAAIxC,EAAO,KACX,SAASyB,GAAY,CACnBzB,EAAK,IAAIuC,EAAMd,CAAQ,EACvBH,EAAS,MAAMkB,EAAK,SAAS,CAC/B,CAEA,OAAAf,EAAS,EAAIH,EACN,KAAK,GAAGiB,EAAMd,EAAUe,CAAG,CACpC,EAEA,KAAM,SAAUD,EAAM,CACpB,IAAIE,EAAO,CAAC,EAAE,MAAM,KAAK,UAAW,CAAC,EACjCC,IAAW,KAAK,IAAM,KAAK,EAAI,CAAC,IAAIH,CAAI,GAAK,CAAC,GAAG,MAAM,EACvD3D,EAAI,EACJ+D,EAAMD,EAAO,OAEjB,IAAK9D,EAAGA,EAAI+D,EAAK/D,IACf8D,EAAO9D,CAAC,EAAE,GAAG,MAAM8D,EAAO9D,CAAC,EAAE,IAAK6D,CAAI,EAGxC,OAAO,IACT,EAEA,IAAK,SAAUF,EAAMjB,EAAU,CAC7B,IAAInB,EAAI,KAAK,IAAM,KAAK,EAAI,CAAC,GACzByC,EAAOzC,EAAEoC,CAAI,EACbM,EAAa,CAAC,EAElB,GAAID,GAAQtB,EACV,QAAS1C,EAAI,EAAG+D,EAAMC,EAAK,OAAQhE,EAAI+D,EAAK/D,IACtCgE,EAAKhE,CAAC,EAAE,KAAO0C,GAAYsB,EAAKhE,CAAC,EAAE,GAAG,IAAM0C,GAC9CuB,EAAW,KAAKD,EAAKhE,CAAC,CAAC,EAQ7B,OAACiE,EAAW,OACR1C,EAAEoC,CAAI,EAAIM,EACV,OAAO1C,EAAEoC,CAAI,EAEV,IACT,CACF,EAEAvG,EAAO,QAAUsG,EACjBtG,EAAO,QAAQ,YAAcsG,CAGvB,CAEI,EAGIQ,EAA2B,CAAC,EAGhC,SAASxG,EAAoByG,EAAU,CAEtC,GAAGD,EAAyBC,CAAQ,EACnC,OAAOD,EAAyBC,CAAQ,EAAE,QAG3C,IAAI/G,EAAS8G,EAAyBC,CAAQ,EAAI,CAGjD,QAAS,CAAC,CACX,EAGA,OAAA5G,EAAoB4G,CAAQ,EAAE/G,EAAQA,EAAO,QAASM,CAAmB,EAGlEN,EAAO,OACf,CAIA,OAAC,UAAW,CAEXM,EAAoB,EAAI,SAASN,EAAQ,CACxC,IAAIgH,EAAShH,GAAUA,EAAO,WAC7B,UAAW,CAAE,OAAOA,EAAO,OAAY,EACvC,UAAW,CAAE,OAAOA,CAAQ,EAC7B,OAAAM,EAAoB,EAAE0G,EAAQ,CAAE,EAAGA,CAAO,CAAC,EACpCA,CACR,CACD,EAAE,EAGD,UAAW,CAEX1G,EAAoB,EAAI,SAASP,EAASkH,EAAY,CACrD,QAAQC,KAAOD,EACX3G,EAAoB,EAAE2G,EAAYC,CAAG,GAAK,CAAC5G,EAAoB,EAAEP,EAASmH,CAAG,GAC/E,OAAO,eAAenH,EAASmH,EAAK,CAAE,WAAY,GAAM,IAAKD,EAAWC,CAAG,CAAE,CAAC,CAGjF,CACD,EAAE,EAGD,UAAW,CACX5G,EAAoB,EAAI,SAASyB,EAAKoF,EAAM,CAAE,OAAO,OAAO,UAAU,eAAe,KAAKpF,EAAKoF,CAAI,CAAG,CACvG,EAAE,EAMK7G,EAAoB,GAAG,CAC/B,EAAG,EACX,OACD,CAAC,ICn2BD,IAAA8G,GAAO,SCNP,IAAIC,GAAgB,SAASC,EAAGC,EAAG,CACjC,OAAAF,GAAgB,OAAO,gBAClB,CAAE,UAAW,CAAC,CAAE,YAAa,OAAS,SAAUC,EAAGC,EAAG,CAAED,EAAE,UAAYC,CAAG,GAC1E,SAAUD,EAAGC,EAAG,CAAE,QAASC,KAAKD,EAAO,OAAO,UAAU,eAAe,KAAKA,EAAGC,CAAC,IAAGF,EAAEE,CAAC,EAAID,EAAEC,CAAC,EAAG,EAC7FH,GAAcC,EAAGC,CAAC,CAC3B,EAEO,SAASE,GAAUH,EAAGC,EAAG,CAC9B,GAAI,OAAOA,GAAM,YAAcA,IAAM,KACjC,MAAM,IAAI,UAAU,uBAAyB,OAAOA,CAAC,EAAI,+BAA+B,EAC5FF,GAAcC,EAAGC,CAAC,EAClB,SAASG,GAAK,CAAE,KAAK,YAAcJ,CAAG,CACtCA,EAAE,UAAYC,IAAM,KAAO,OAAO,OAAOA,CAAC,GAAKG,EAAG,UAAYH,EAAE,UAAW,IAAIG,EACjF,CAqFO,SAASC,GAAUC,EAASC,EAAYC,EAAGC,EAAW,CAC3D,SAASC,EAAMC,EAAO,CAAE,OAAOA,aAAiBH,EAAIG,EAAQ,IAAIH,EAAE,SAAUI,EAAS,CAAEA,EAAQD,CAAK,CAAG,CAAC,CAAG,CAC3G,OAAO,IAAKH,IAAMA,EAAI,UAAU,SAAUI,EAASC,EAAQ,CACvD,SAASC,EAAUH,EAAO,CAAE,GAAI,CAAEI,EAAKN,EAAU,KAAKE,CAAK,CAAC,CAAG,OAASK,EAAG,CAAEH,EAAOG,CAAC,CAAG,CAAE,CAC1F,SAASC,EAASN,EAAO,CAAE,GAAI,CAAEI,EAAKN,EAAU,MAASE,CAAK,CAAC,CAAG,OAASK,EAAG,CAAEH,EAAOG,CAAC,CAAG,CAAE,CAC7F,SAASD,EAAKG,EAAQ,CAAEA,EAAO,KAAON,EAAQM,EAAO,KAAK,EAAIR,EAAMQ,EAAO,KAAK,EAAE,KAAKJ,EAAWG,CAAQ,CAAG,CAC7GF,GAAMN,EAAYA,EAAU,MAAMH,EAASC,GAAc,CAAC,CAAC,GAAG,KAAK,CAAC,CACxE,CAAC,CACH,CAEO,SAASY,GAAYb,EAASc,EAAM,CACzC,IAAIC,EAAI,CAAE,MAAO,EAAG,KAAM,UAAW,CAAE,GAAIC,EAAE,CAAC,EAAI,EAAG,MAAMA,EAAE,CAAC,EAAG,OAAOA,EAAE,CAAC,CAAG,EAAG,KAAM,CAAC,EAAG,IAAK,CAAC,CAAE,EAAGC,EAAGC,EAAGF,EAAGG,EAAI,OAAO,QAAQ,OAAO,UAAa,WAAa,SAAW,QAAQ,SAAS,EAC/L,OAAOA,EAAE,KAAOC,EAAK,CAAC,EAAGD,EAAE,MAAWC,EAAK,CAAC,EAAGD,EAAE,OAAYC,EAAK,CAAC,EAAG,OAAO,QAAW,aAAeD,EAAE,OAAO,QAAQ,EAAI,UAAW,CAAE,OAAO,IAAM,GAAIA,EAC1J,SAASC,EAAKC,EAAG,CAAE,OAAO,SAAUC,EAAG,CAAE,OAAOb,EAAK,CAACY,EAAGC,CAAC,CAAC,CAAG,CAAG,CACjE,SAASb,EAAKc,EAAI,CACd,GAAIN,EAAG,MAAM,IAAI,UAAU,iCAAiC,EAC5D,KAAOE,IAAMA,EAAI,EAAGI,EAAG,CAAC,IAAMR,EAAI,IAAKA,GAAG,GAAI,CAC1C,GAAIE,EAAI,EAAGC,IAAMF,EAAIO,EAAG,CAAC,EAAI,EAAIL,EAAE,OAAYK,EAAG,CAAC,EAAIL,EAAE,SAAcF,EAAIE,EAAE,SAAcF,EAAE,KAAKE,CAAC,EAAG,GAAKA,EAAE,OAAS,EAAEF,EAAIA,EAAE,KAAKE,EAAGK,EAAG,CAAC,CAAC,GAAG,KAAM,OAAOP,EAE3J,OADIE,EAAI,EAAGF,IAAGO,EAAK,CAACA,EAAG,CAAC,EAAI,EAAGP,EAAE,KAAK,GAC9BO,EAAG,CAAC,EAAG,CACX,IAAK,GAAG,IAAK,GAAGP,EAAIO,EAAI,MACxB,IAAK,GAAG,OAAAR,EAAE,QAAgB,CAAE,MAAOQ,EAAG,CAAC,EAAG,KAAM,EAAM,EACtD,IAAK,GAAGR,EAAE,QAASG,EAAIK,EAAG,CAAC,EAAGA,EAAK,CAAC,CAAC,EAAG,SACxC,IAAK,GAAGA,EAAKR,EAAE,IAAI,IAAI,EAAGA,EAAE,KAAK,IAAI,EAAG,SACxC,QACI,GAAMC,EAAID,EAAE,KAAM,EAAAC,EAAIA,EAAE,OAAS,GAAKA,EAAEA,EAAE,OAAS,CAAC,KAAOO,EAAG,CAAC,IAAM,GAAKA,EAAG,CAAC,IAAM,GAAI,CAAER,EAAI,EAAG,QAAU,CAC3G,GAAIQ,EAAG,CAAC,IAAM,IAAM,CAACP,GAAMO,EAAG,CAAC,EAAIP,EAAE,CAAC,GAAKO,EAAG,CAAC,EAAIP,EAAE,CAAC,GAAK,CAAED,EAAE,MAAQQ,EAAG,CAAC,EAAG,KAAO,CACrF,GAAIA,EAAG,CAAC,IAAM,GAAKR,EAAE,MAAQC,EAAE,CAAC,EAAG,CAAED,EAAE,MAAQC,EAAE,CAAC,EAAGA,EAAIO,EAAI,KAAO,CACpE,GAAIP,GAAKD,EAAE,MAAQC,EAAE,CAAC,EAAG,CAAED,EAAE,MAAQC,EAAE,CAAC,EAAGD,EAAE,IAAI,KAAKQ,CAAE,EAAG,KAAO,CAC9DP,EAAE,CAAC,GAAGD,EAAE,IAAI,IAAI,EACpBA,EAAE,KAAK,IAAI,EAAG,QACtB,CACAQ,EAAKT,EAAK,KAAKd,EAASe,CAAC,CAC7B,OAASL,EAAG,CAAEa,EAAK,CAAC,EAAGb,CAAC,EAAGQ,EAAI,CAAG,QAAE,CAAUD,EAAID,EAAI,CAAG,CACzD,GAAIO,EAAG,CAAC,EAAI,EAAG,MAAMA,EAAG,CAAC,EAAG,MAAO,CAAE,MAAOA,EAAG,CAAC,EAAIA,EAAG,CAAC,EAAI,OAAQ,KAAM,EAAK,CACnF,CACF,CAkBO,SAASC,GAASC,EAAG,CAC1B,IAAIC,EAAI,OAAO,QAAW,YAAc,OAAO,SAAUC,EAAID,GAAKD,EAAEC,CAAC,EAAGE,EAAI,EAC5E,GAAID,EAAG,OAAOA,EAAE,KAAKF,CAAC,EACtB,GAAIA,GAAK,OAAOA,EAAE,QAAW,SAAU,MAAO,CAC1C,KAAM,UAAY,CACd,OAAIA,GAAKG,GAAKH,EAAE,SAAQA,EAAI,QACrB,CAAE,MAAOA,GAAKA,EAAEG,GAAG,EAAG,KAAM,CAACH,CAAE,CAC1C,CACJ,EACA,MAAM,IAAI,UAAUC,EAAI,0BAA4B,iCAAiC,CACvF,CAEO,SAASG,EAAOJ,EAAGK,EAAG,CAC3B,IAAIH,EAAI,OAAO,QAAW,YAAcF,EAAE,OAAO,QAAQ,EACzD,GAAI,CAACE,EAAG,OAAOF,EACf,IAAIG,EAAID,EAAE,KAAKF,CAAC,EAAGM,EAAGC,EAAK,CAAC,EAAGC,EAC/B,GAAI,CACA,MAAQH,IAAM,QAAUA,KAAM,IAAM,EAAEC,EAAIH,EAAE,KAAK,GAAG,MAAMI,EAAG,KAAKD,EAAE,KAAK,CAC7E,OACOG,EAAO,CAAED,EAAI,CAAE,MAAOC,CAAM,CAAG,QACtC,CACI,GAAI,CACIH,GAAK,CAACA,EAAE,OAASJ,EAAIC,EAAE,SAAYD,EAAE,KAAKC,CAAC,CACnD,QACA,CAAU,GAAIK,EAAG,MAAMA,EAAE,KAAO,CACpC,CACA,OAAOD,CACT,CAkBO,SAASG,EAAcC,EAAIC,EAAMC,EAAM,CAC5C,GAAIA,GAAQ,UAAU,SAAW,EAAG,QAASC,EAAI,EAAGC,EAAIH,EAAK,OAAQI,EAAIF,EAAIC,EAAGD,KACxEE,GAAM,EAAEF,KAAKF,MACRI,IAAIA,EAAK,MAAM,UAAU,MAAM,KAAKJ,EAAM,EAAGE,CAAC,GACnDE,EAAGF,CAAC,EAAIF,EAAKE,CAAC,GAGtB,OAAOH,EAAG,OAAOK,GAAM,MAAM,UAAU,MAAM,KAAKJ,CAAI,CAAC,CACzD,CAEO,SAASK,GAAQC,EAAG,CACzB,OAAO,gBAAgBD,IAAW,KAAK,EAAIC,EAAG,MAAQ,IAAID,GAAQC,CAAC,CACrE,CAEO,SAASC,GAAiBC,EAASC,EAAYC,EAAW,CAC/D,GAAI,CAAC,OAAO,cAAe,MAAM,IAAI,UAAU,sCAAsC,EACrF,IAAIC,EAAID,EAAU,MAAMF,EAASC,GAAc,CAAC,CAAC,EAAGP,EAAGU,EAAI,CAAC,EAC5D,OAAOV,EAAI,OAAO,QAAQ,OAAO,eAAkB,WAAa,cAAgB,QAAQ,SAAS,EAAGW,EAAK,MAAM,EAAGA,EAAK,OAAO,EAAGA,EAAK,SAAUC,CAAW,EAAGZ,EAAE,OAAO,aAAa,EAAI,UAAY,CAAE,OAAO,IAAM,EAAGA,EACtN,SAASY,EAAYC,EAAG,CAAE,OAAO,SAAUT,EAAG,CAAE,OAAO,QAAQ,QAAQA,CAAC,EAAE,KAAKS,EAAGC,CAAM,CAAG,CAAG,CAC9F,SAASH,EAAKI,EAAGF,EAAG,CAAMJ,EAAEM,CAAC,IAAKf,EAAEe,CAAC,EAAI,SAAUX,EAAG,CAAE,OAAO,IAAI,QAAQ,SAAUY,EAAGC,GAAG,CAAEP,EAAE,KAAK,CAACK,EAAGX,EAAGY,EAAGC,EAAC,CAAC,EAAI,GAAKC,EAAOH,EAAGX,CAAC,CAAG,CAAC,CAAG,EAAOS,IAAGb,EAAEe,CAAC,EAAIF,EAAEb,EAAEe,CAAC,CAAC,GAAK,CACvK,SAASG,EAAOH,EAAGX,EAAG,CAAE,GAAI,CAAEe,EAAKV,EAAEM,CAAC,EAAEX,CAAC,CAAC,CAAG,OAASgB,EAAG,CAAEC,EAAOX,EAAE,CAAC,EAAE,CAAC,EAAGU,CAAC,CAAG,CAAE,CACjF,SAASD,EAAKG,EAAG,CAAEA,EAAE,iBAAiBnB,GAAU,QAAQ,QAAQmB,EAAE,MAAM,CAAC,EAAE,KAAKC,EAAST,CAAM,EAAIO,EAAOX,EAAE,CAAC,EAAE,CAAC,EAAGY,CAAC,CAAG,CACvH,SAASC,EAAQC,EAAO,CAAEN,EAAO,OAAQM,CAAK,CAAG,CACjD,SAASV,EAAOU,EAAO,CAAEN,EAAO,QAASM,CAAK,CAAG,CACjD,SAASH,EAAOR,EAAGT,EAAG,CAAMS,EAAET,CAAC,EAAGM,EAAE,MAAM,EAAGA,EAAE,QAAQQ,EAAOR,EAAE,CAAC,EAAE,CAAC,EAAGA,EAAE,CAAC,EAAE,CAAC,CAAC,CAAG,CACnF,CAQO,SAASe,GAAcC,EAAG,CAC/B,GAAI,CAAC,OAAO,cAAe,MAAM,IAAI,UAAU,sCAAsC,EACrF,IAAIC,EAAID,EAAE,OAAO,aAAa,EAAGE,EACjC,OAAOD,EAAIA,EAAE,KAAKD,CAAC,GAAKA,EAAI,OAAOG,IAAa,WAAaA,GAASH,CAAC,EAAIA,EAAE,OAAO,QAAQ,EAAE,EAAGE,EAAI,CAAC,EAAGE,EAAK,MAAM,EAAGA,EAAK,OAAO,EAAGA,EAAK,QAAQ,EAAGF,EAAE,OAAO,aAAa,EAAI,UAAY,CAAE,OAAO,IAAM,EAAGA,GAC9M,SAASE,EAAKC,EAAG,CAAEH,EAAEG,CAAC,EAAIL,EAAEK,CAAC,GAAK,SAAUC,EAAG,CAAE,OAAO,IAAI,QAAQ,SAAUC,EAASC,EAAQ,CAAEF,EAAIN,EAAEK,CAAC,EAAEC,CAAC,EAAGG,EAAOF,EAASC,EAAQF,EAAE,KAAMA,EAAE,KAAK,CAAG,CAAC,CAAG,CAAG,CAC/J,SAASG,EAAOF,EAASC,EAAQE,EAAGJ,EAAG,CAAE,QAAQ,QAAQA,CAAC,EAAE,KAAK,SAASA,EAAG,CAAEC,EAAQ,CAAE,MAAOD,EAAG,KAAMI,CAAE,CAAC,CAAG,EAAGF,CAAM,CAAG,CAC7H,CCxPM,SAAUG,EAAWC,EAAU,CACnC,OAAO,OAAOA,GAAU,UAC1B,CCGM,SAAUC,GAAoBC,EAAgC,CAClE,IAAMC,EAAS,SAACC,EAAa,CAC3B,MAAM,KAAKA,CAAQ,EACnBA,EAAS,MAAQ,IAAI,MAAK,EAAG,KAC/B,EAEMC,EAAWH,EAAWC,CAAM,EAClC,OAAAE,EAAS,UAAY,OAAO,OAAO,MAAM,SAAS,EAClDA,EAAS,UAAU,YAAcA,EAC1BA,CACT,CCDO,IAAMC,GAA+CC,GAC1D,SAACC,EAAM,CACL,OAAA,SAA4CC,EAA0B,CACpED,EAAO,IAAI,EACX,KAAK,QAAUC,EACRA,EAAO,OAAM;EACxBA,EAAO,IAAI,SAACC,EAAKC,EAAC,CAAK,OAAGA,EAAI,EAAC,KAAKD,EAAI,SAAQ,CAAzB,CAA6B,EAAE,KAAK;GAAM,EACzD,GACJ,KAAK,KAAO,sBACZ,KAAK,OAASD,CAChB,CARA,CAQC,ECvBC,SAAUG,GAAaC,EAA6BC,EAAO,CAC/D,GAAID,EAAK,CACP,IAAME,EAAQF,EAAI,QAAQC,CAAI,EAC9B,GAAKC,GAASF,EAAI,OAAOE,EAAO,CAAC,EAErC,CCOA,IAAAC,GAAA,UAAA,CAyBE,SAAAA,EAAoBC,EAA4B,CAA5B,KAAA,gBAAAA,EAdb,KAAA,OAAS,GAER,KAAA,WAAmD,KAMnD,KAAA,YAAqD,IAMV,CAQnD,OAAAD,EAAA,UAAA,YAAA,UAAA,aACME,EAEJ,GAAI,CAAC,KAAK,OAAQ,CAChB,KAAK,OAAS,GAGN,IAAAC,EAAe,KAAI,WAC3B,GAAIA,EAEF,GADA,KAAK,WAAa,KACd,MAAM,QAAQA,CAAU,MAC1B,QAAqBC,EAAAC,GAAAF,CAAU,EAAAG,EAAAF,EAAA,KAAA,EAAA,CAAAE,EAAA,KAAAA,EAAAF,EAAA,KAAA,EAAE,CAA5B,IAAMG,EAAMD,EAAA,MACfC,EAAO,OAAO,IAAI,yGAGpBJ,EAAW,OAAO,IAAI,EAIlB,IAAiBK,EAAqB,KAAI,gBAClD,GAAIC,EAAWD,CAAgB,EAC7B,GAAI,CACFA,EAAgB,QACTE,EAAG,CACVR,EAASQ,aAAaC,GAAsBD,EAAE,OAAS,CAACA,CAAC,EAIrD,IAAAE,EAAgB,KAAI,YAC5B,GAAIA,EAAa,CACf,KAAK,YAAc,SACnB,QAAwBC,EAAAR,GAAAO,CAAW,EAAAE,EAAAD,EAAA,KAAA,EAAA,CAAAC,EAAA,KAAAA,EAAAD,EAAA,KAAA,EAAE,CAAhC,IAAME,EAASD,EAAA,MAClB,GAAI,CACFE,GAAcD,CAAS,QAChBE,EAAK,CACZf,EAASA,GAAM,KAANA,EAAU,CAAA,EACfe,aAAeN,GACjBT,EAAMgB,EAAAA,EAAA,CAAA,EAAAC,EAAOjB,CAAM,CAAA,EAAAiB,EAAKF,EAAI,MAAM,CAAA,EAElCf,EAAO,KAAKe,CAAG,sGAMvB,GAAIf,EACF,MAAM,IAAIS,GAAoBT,CAAM,EAG1C,EAoBAF,EAAA,UAAA,IAAA,SAAIoB,EAAuB,OAGzB,GAAIA,GAAYA,IAAa,KAC3B,GAAI,KAAK,OAGPJ,GAAcI,CAAQ,MACjB,CACL,GAAIA,aAAoBpB,EAAc,CAGpC,GAAIoB,EAAS,QAAUA,EAAS,WAAW,IAAI,EAC7C,OAEFA,EAAS,WAAW,IAAI,GAEzB,KAAK,aAAcC,EAAA,KAAK,eAAW,MAAAA,IAAA,OAAAA,EAAI,CAAA,GAAI,KAAKD,CAAQ,EAG/D,EAOQpB,EAAA,UAAA,WAAR,SAAmBsB,EAAoB,CAC7B,IAAAnB,EAAe,KAAI,WAC3B,OAAOA,IAAemB,GAAW,MAAM,QAAQnB,CAAU,GAAKA,EAAW,SAASmB,CAAM,CAC1F,EASQtB,EAAA,UAAA,WAAR,SAAmBsB,EAAoB,CAC7B,IAAAnB,EAAe,KAAI,WAC3B,KAAK,WAAa,MAAM,QAAQA,CAAU,GAAKA,EAAW,KAAKmB,CAAM,EAAGnB,GAAcA,EAAa,CAACA,EAAYmB,CAAM,EAAIA,CAC5H,EAMQtB,EAAA,UAAA,cAAR,SAAsBsB,EAAoB,CAChC,IAAAnB,EAAe,KAAI,WACvBA,IAAemB,EACjB,KAAK,WAAa,KACT,MAAM,QAAQnB,CAAU,GACjCoB,GAAUpB,EAAYmB,CAAM,CAEhC,EAgBAtB,EAAA,UAAA,OAAA,SAAOoB,EAAsC,CACnC,IAAAR,EAAgB,KAAI,YAC5BA,GAAeW,GAAUX,EAAaQ,CAAQ,EAE1CA,aAAoBpB,GACtBoB,EAAS,cAAc,IAAI,CAE/B,EAlLcpB,EAAA,MAAS,UAAA,CACrB,IAAMwB,EAAQ,IAAIxB,EAClB,OAAAwB,EAAM,OAAS,GACRA,CACT,EAAE,EA+KJxB,GArLA,EAuLO,IAAMyB,GAAqBC,GAAa,MAEzC,SAAUC,GAAeC,EAAU,CACvC,OACEA,aAAiBF,IAChBE,GAAS,WAAYA,GAASC,EAAWD,EAAM,MAAM,GAAKC,EAAWD,EAAM,GAAG,GAAKC,EAAWD,EAAM,WAAW,CAEpH,CAEA,SAASE,GAAcC,EAAwC,CACzDF,EAAWE,CAAS,EACtBA,EAAS,EAETA,EAAU,YAAW,CAEzB,CChNO,IAAMC,GAAuB,CAClC,iBAAkB,KAClB,sBAAuB,KACvB,QAAS,OACT,sCAAuC,GACvC,yBAA0B,ICGrB,IAAMC,GAAmC,CAG9C,WAAA,SAAWC,EAAqBC,EAAgB,SAAEC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,EAAA,CAAA,EAAA,UAAAA,CAAA,EACxC,IAAAC,EAAaL,GAAe,SACpC,OAAIK,GAAQ,MAARA,EAAU,WACLA,EAAS,WAAU,MAAnBA,EAAQC,EAAA,CAAYL,EAASC,CAAO,EAAAK,EAAKJ,CAAI,CAAA,CAAA,EAE/C,WAAU,MAAA,OAAAG,EAAA,CAACL,EAASC,CAAO,EAAAK,EAAKJ,CAAI,CAAA,CAAA,CAC7C,EACA,aAAA,SAAaK,EAAM,CACT,IAAAH,EAAaL,GAAe,SACpC,QAAQK,GAAQ,KAAA,OAARA,EAAU,eAAgB,cAAcG,CAAa,CAC/D,EACA,SAAU,QCjBN,SAAUC,GAAqBC,EAAQ,CAC3CC,GAAgB,WAAW,UAAA,CACjB,IAAAC,EAAqBC,GAAM,iBACnC,GAAID,EAEFA,EAAiBF,CAAG,MAGpB,OAAMA,CAEV,CAAC,CACH,CCtBM,SAAUI,IAAI,CAAK,CCMlB,IAAMC,GAAyB,UAAA,CAAM,OAAAC,GAAmB,IAAK,OAAW,MAAS,CAA5C,EAAsE,EAO5G,SAAUC,GAAkBC,EAAU,CAC1C,OAAOF,GAAmB,IAAK,OAAWE,CAAK,CACjD,CAOM,SAAUC,GAAoBC,EAAQ,CAC1C,OAAOJ,GAAmB,IAAKI,EAAO,MAAS,CACjD,CAQM,SAAUJ,GAAmBK,EAAuBD,EAAYF,EAAU,CAC9E,MAAO,CACL,KAAIG,EACJ,MAAKD,EACL,MAAKF,EAET,CCrCA,IAAII,GAAuD,KASrD,SAAUC,GAAaC,EAAc,CACzC,GAAIC,GAAO,sCAAuC,CAChD,IAAMC,EAAS,CAACJ,GAKhB,GAJII,IACFJ,GAAU,CAAE,YAAa,GAAO,MAAO,IAAI,GAE7CE,EAAE,EACEE,EAAQ,CACJ,IAAAC,EAAyBL,GAAvBM,EAAWD,EAAA,YAAEE,EAAKF,EAAA,MAE1B,GADAL,GAAU,KACNM,EACF,MAAMC,QAMVL,EAAE,CAEN,CAMM,SAAUM,GAAaC,EAAQ,CAC/BN,GAAO,uCAAyCH,KAClDA,GAAQ,YAAc,GACtBA,GAAQ,MAAQS,EAEpB,CCrBA,IAAAC,GAAA,SAAAC,EAAA,CAAmCC,GAAAF,EAAAC,CAAA,EA6BjC,SAAAD,EAAYG,EAA6C,CAAzD,IAAAC,EACEH,EAAA,KAAA,IAAA,GAAO,KATC,OAAAG,EAAA,UAAqB,GAUzBD,GACFC,EAAK,YAAcD,EAGfE,GAAeF,CAAW,GAC5BA,EAAY,IAAIC,CAAI,GAGtBA,EAAK,YAAcE,IAEvB,CAzBO,OAAAN,EAAA,OAAP,SAAiBO,EAAwBC,EAA2BC,EAAqB,CACvF,OAAO,IAAIC,GAAeH,EAAMC,EAAOC,CAAQ,CACjD,EAgCAT,EAAA,UAAA,KAAA,SAAKW,EAAS,CACR,KAAK,UACPC,GAA0BC,GAAiBF,CAAK,EAAG,IAAI,EAEvD,KAAK,MAAMA,CAAM,CAErB,EASAX,EAAA,UAAA,MAAA,SAAMc,EAAS,CACT,KAAK,UACPF,GAA0BG,GAAkBD,CAAG,EAAG,IAAI,GAEtD,KAAK,UAAY,GACjB,KAAK,OAAOA,CAAG,EAEnB,EAQAd,EAAA,UAAA,SAAA,UAAA,CACM,KAAK,UACPY,GAA0BI,GAAuB,IAAI,GAErD,KAAK,UAAY,GACjB,KAAK,UAAS,EAElB,EAEAhB,EAAA,UAAA,YAAA,UAAA,CACO,KAAK,SACR,KAAK,UAAY,GACjBC,EAAA,UAAM,YAAW,KAAA,IAAA,EACjB,KAAK,YAAc,KAEvB,EAEUD,EAAA,UAAA,MAAV,SAAgBW,EAAQ,CACtB,KAAK,YAAY,KAAKA,CAAK,CAC7B,EAEUX,EAAA,UAAA,OAAV,SAAiBc,EAAQ,CACvB,GAAI,CACF,KAAK,YAAY,MAAMA,CAAG,UAE1B,KAAK,YAAW,EAEpB,EAEUd,EAAA,UAAA,UAAV,UAAA,CACE,GAAI,CACF,KAAK,YAAY,SAAQ,UAEzB,KAAK,YAAW,EAEpB,EACFA,CAAA,EApHmCiB,EAAY,EA2H/C,IAAMC,GAAQ,SAAS,UAAU,KAEjC,SAASC,GAAyCC,EAAQC,EAAY,CACpE,OAAOH,GAAM,KAAKE,EAAIC,CAAO,CAC/B,CAMA,IAAAC,GAAA,UAAA,CACE,SAAAA,EAAoBC,EAAqC,CAArC,KAAA,gBAAAA,CAAwC,CAE5D,OAAAD,EAAA,UAAA,KAAA,SAAKE,EAAQ,CACH,IAAAD,EAAoB,KAAI,gBAChC,GAAIA,EAAgB,KAClB,GAAI,CACFA,EAAgB,KAAKC,CAAK,QACnBC,EAAO,CACdC,GAAqBD,CAAK,EAGhC,EAEAH,EAAA,UAAA,MAAA,SAAMK,EAAQ,CACJ,IAAAJ,EAAoB,KAAI,gBAChC,GAAIA,EAAgB,MAClB,GAAI,CACFA,EAAgB,MAAMI,CAAG,QAClBF,EAAO,CACdC,GAAqBD,CAAK,OAG5BC,GAAqBC,CAAG,CAE5B,EAEAL,EAAA,UAAA,SAAA,UAAA,CACU,IAAAC,EAAoB,KAAI,gBAChC,GAAIA,EAAgB,SAClB,GAAI,CACFA,EAAgB,SAAQ,QACjBE,EAAO,CACdC,GAAqBD,CAAK,EAGhC,EACFH,CAAA,EArCA,EAuCAM,GAAA,SAAAC,EAAA,CAAuCC,GAAAF,EAAAC,CAAA,EACrC,SAAAD,EACEG,EACAN,EACAO,EAA8B,CAHhC,IAAAC,EAKEJ,EAAA,KAAA,IAAA,GAAO,KAEHN,EACJ,GAAIW,EAAWH,CAAc,GAAK,CAACA,EAGjCR,EAAkB,CAChB,KAAOQ,GAAc,KAAdA,EAAkB,OACzB,MAAON,GAAK,KAALA,EAAS,OAChB,SAAUO,GAAQ,KAARA,EAAY,YAEnB,CAEL,IAAIG,EACAF,GAAQG,GAAO,0BAIjBD,EAAU,OAAO,OAAOJ,CAAc,EACtCI,EAAQ,YAAc,UAAA,CAAM,OAAAF,EAAK,YAAW,CAAhB,EAC5BV,EAAkB,CAChB,KAAMQ,EAAe,MAAQZ,GAAKY,EAAe,KAAMI,CAAO,EAC9D,MAAOJ,EAAe,OAASZ,GAAKY,EAAe,MAAOI,CAAO,EACjE,SAAUJ,EAAe,UAAYZ,GAAKY,EAAe,SAAUI,CAAO,IAI5EZ,EAAkBQ,EAMtB,OAAAE,EAAK,YAAc,IAAIX,GAAiBC,CAAe,GACzD,CACF,OAAAK,CAAA,EAzCuCS,EAAU,EA2CjD,SAASC,GAAqBC,EAAU,CAClCC,GAAO,sCACTC,GAAaF,CAAK,EAIlBG,GAAqBH,CAAK,CAE9B,CAQA,SAASI,GAAoBC,EAAQ,CACnC,MAAMA,CACR,CAOA,SAASC,GAA0BC,EAA2CC,EAA2B,CAC/F,IAAAC,EAA0BR,GAAM,sBACxCQ,GAAyBC,GAAgB,WAAW,UAAA,CAAM,OAAAD,EAAsBF,EAAcC,CAAU,CAA9C,CAA+C,CAC3G,CAOO,IAAMG,GAA6D,CACxE,OAAQ,GACR,KAAMC,GACN,MAAOR,GACP,SAAUQ,IC5QL,IAAMC,GAA+B,UAAA,CAAM,OAAC,OAAO,QAAW,YAAc,OAAO,YAAe,cAAvD,EAAsE,ECoClH,SAAUC,GAAYC,EAAI,CAC9B,OAAOA,CACT,CCiCM,SAAUC,IAAI,SAACC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EACnB,OAAOC,GAAcF,CAAG,CAC1B,CAGM,SAAUE,GAAoBF,EAA+B,CACjE,OAAIA,EAAI,SAAW,EACVG,GAGLH,EAAI,SAAW,EACVA,EAAI,CAAC,EAGP,SAAeI,EAAQ,CAC5B,OAAOJ,EAAI,OAAO,SAACK,EAAWC,EAAuB,CAAK,OAAAA,EAAGD,CAAI,CAAP,EAAUD,CAAY,CAClF,CACF,CC9EA,IAAAG,EAAA,UAAA,CAkBE,SAAAA,EAAYC,EAA6E,CACnFA,IACF,KAAK,WAAaA,EAEtB,CA4BA,OAAAD,EAAA,UAAA,KAAA,SAAQE,EAAyB,CAC/B,IAAMC,EAAa,IAAIH,EACvB,OAAAG,EAAW,OAAS,KACpBA,EAAW,SAAWD,EACfC,CACT,EA6IAH,EAAA,UAAA,UAAA,SACEI,EACAC,EACAC,EAA8B,CAHhC,IAAAC,EAAA,KAKQC,EAAaC,GAAaL,CAAc,EAAIA,EAAiB,IAAIM,GAAeN,EAAgBC,EAAOC,CAAQ,EAErH,OAAAK,GAAa,UAAA,CACL,IAAAC,EAAuBL,EAArBL,EAAQU,EAAA,SAAEC,EAAMD,EAAA,OACxBJ,EAAW,IACTN,EAGIA,EAAS,KAAKM,EAAYK,CAAM,EAChCA,EAIAN,EAAK,WAAWC,CAAU,EAG1BD,EAAK,cAAcC,CAAU,CAAC,CAEtC,CAAC,EAEMA,CACT,EAGUR,EAAA,UAAA,cAAV,SAAwBc,EAAmB,CACzC,GAAI,CACF,OAAO,KAAK,WAAWA,CAAI,QACpBC,EAAK,CAIZD,EAAK,MAAMC,CAAG,EAElB,EA6DAf,EAAA,UAAA,QAAA,SAAQgB,EAA0BC,EAAoC,CAAtE,IAAAV,EAAA,KACE,OAAAU,EAAcC,GAAeD,CAAW,EAEjC,IAAIA,EAAkB,SAACE,EAASC,EAAM,CAC3C,IAAMZ,EAAa,IAAIE,GAAkB,CACvC,KAAM,SAACW,EAAK,CACV,GAAI,CACFL,EAAKK,CAAK,QACHN,EAAK,CACZK,EAAOL,CAAG,EACVP,EAAW,YAAW,EAE1B,EACA,MAAOY,EACP,SAAUD,EACX,EACDZ,EAAK,UAAUC,CAAU,CAC3B,CAAC,CACH,EAGUR,EAAA,UAAA,WAAV,SAAqBQ,EAA2B,OAC9C,OAAOI,EAAA,KAAK,UAAM,MAAAA,IAAA,OAAA,OAAAA,EAAE,UAAUJ,CAAU,CAC1C,EAOAR,EAAA,UAACG,EAAiB,EAAlB,UAAA,CACE,OAAO,IACT,EA4FAH,EAAA,UAAA,KAAA,UAAA,SAAKsB,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EACH,OAAOC,GAAcF,CAAU,EAAE,IAAI,CACvC,EA6BAtB,EAAA,UAAA,UAAA,SAAUiB,EAAoC,CAA9C,IAAAV,EAAA,KACE,OAAAU,EAAcC,GAAeD,CAAW,EAEjC,IAAIA,EAAY,SAACE,EAASC,EAAM,CACrC,IAAIC,EACJd,EAAK,UACH,SAACkB,EAAI,CAAK,OAACJ,EAAQI,CAAT,EACV,SAACV,EAAQ,CAAK,OAAAK,EAAOL,CAAG,CAAV,EACd,UAAA,CAAM,OAAAI,EAAQE,CAAK,CAAb,CAAc,CAExB,CAAC,CACH,EA1aOrB,EAAA,OAAkC,SAAIC,EAAwD,CACnG,OAAO,IAAID,EAAcC,CAAS,CACpC,EAyaFD,GA9cA,EAudA,SAAS0B,GAAeC,EAA+C,OACrE,OAAOC,EAAAD,GAAW,KAAXA,EAAeE,GAAO,WAAO,MAAAD,IAAA,OAAAA,EAAI,OAC1C,CAEA,SAASE,GAAcC,EAAU,CAC/B,OAAOA,GAASC,EAAWD,EAAM,IAAI,GAAKC,EAAWD,EAAM,KAAK,GAAKC,EAAWD,EAAM,QAAQ,CAChG,CAEA,SAASE,GAAgBF,EAAU,CACjC,OAAQA,GAASA,aAAiBG,IAAgBJ,GAAWC,CAAK,GAAKI,GAAeJ,CAAK,CAC7F,CCzeM,SAAUK,GAAQC,EAAW,CACjC,OAAOC,EAAWD,GAAM,KAAA,OAANA,EAAQ,IAAI,CAChC,CAMM,SAAUE,EACdC,EAAqF,CAErF,OAAO,SAACH,EAAqB,CAC3B,GAAID,GAAQC,CAAM,EAChB,OAAOA,EAAO,KAAK,SAA+BI,EAA2B,CAC3E,GAAI,CACF,OAAOD,EAAKC,EAAc,IAAI,QACvBC,EAAK,CACZ,KAAK,MAAMA,CAAG,EAElB,CAAC,EAEH,MAAM,IAAI,UAAU,wCAAwC,CAC9D,CACF,CCjBM,SAAUC,EACdC,EACAC,EACAC,EACAC,EACAC,EAAuB,CAEvB,OAAO,IAAIC,GAAmBL,EAAaC,EAAQC,EAAYC,EAASC,CAAU,CACpF,CAMA,IAAAC,GAAA,SAAAC,EAAA,CAA2CC,GAAAF,EAAAC,CAAA,EAiBzC,SAAAD,EACEL,EACAC,EACAC,EACAC,EACQC,EACAI,EAAiC,CAN3C,IAAAC,EAoBEH,EAAA,KAAA,KAAMN,CAAW,GAAC,KAfV,OAAAS,EAAA,WAAAL,EACAK,EAAA,kBAAAD,EAeRC,EAAK,MAAQR,EACT,SAAuCS,EAAQ,CAC7C,GAAI,CACFT,EAAOS,CAAK,QACLC,EAAK,CACZX,EAAY,MAAMW,CAAG,EAEzB,EACAL,EAAA,UAAM,MACVG,EAAK,OAASN,EACV,SAAuCQ,EAAQ,CAC7C,GAAI,CACFR,EAAQQ,CAAG,QACJA,EAAK,CAEZX,EAAY,MAAMW,CAAG,UAGrB,KAAK,YAAW,EAEpB,EACAL,EAAA,UAAM,OACVG,EAAK,UAAYP,EACb,UAAA,CACE,GAAI,CACFA,EAAU,QACHS,EAAK,CAEZX,EAAY,MAAMW,CAAG,UAGrB,KAAK,YAAW,EAEpB,EACAL,EAAA,UAAM,WACZ,CAEA,OAAAD,EAAA,UAAA,YAAA,UAAA,OACE,GAAI,CAAC,KAAK,mBAAqB,KAAK,kBAAiB,EAAI,CAC/C,IAAAO,EAAW,KAAI,OACvBN,EAAA,UAAM,YAAW,KAAA,IAAA,EAEjB,CAACM,KAAUC,EAAA,KAAK,cAAU,MAAAA,IAAA,QAAAA,EAAA,KAAf,IAAI,GAEnB,EACFR,CAAA,EAnF2CS,EAAU,ECd9C,IAAMC,GAAiD,CAG5D,SAAA,SAASC,EAAQ,CACf,IAAIC,EAAU,sBACVC,EAAkD,qBAC9CC,EAAaJ,GAAsB,SACvCI,IACFF,EAAUE,EAAS,sBACnBD,EAASC,EAAS,sBAEpB,IAAMC,EAASH,EAAQ,SAACI,EAAS,CAI/BH,EAAS,OACTF,EAASK,CAAS,CACpB,CAAC,EACD,OAAO,IAAIC,GAAa,UAAA,CAAM,OAAAJ,GAAM,KAAA,OAANA,EAASE,CAAM,CAAf,CAAgB,CAChD,EACA,sBAAqB,UAAA,SAACG,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EACZ,IAAAL,EAAaJ,GAAsB,SAC3C,QAAQI,GAAQ,KAAA,OAARA,EAAU,wBAAyB,uBAAsB,MAAA,OAAAM,EAAA,CAAA,EAAAC,EAAIH,CAAI,CAAA,CAAA,CAC3E,EACA,qBAAoB,UAAA,SAACA,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EACX,IAAAL,EAAaJ,GAAsB,SAC3C,QAAQI,GAAQ,KAAA,OAARA,EAAU,uBAAwB,sBAAqB,MAAA,OAAAM,EAAA,CAAA,EAAAC,EAAIH,CAAI,CAAA,CAAA,CACzE,EACA,SAAU,QCrBL,IAAMI,GAAuDC,GAClE,SAACC,EAAM,CACL,OAAA,UAAoC,CAClCA,EAAO,IAAI,EACX,KAAK,KAAO,0BACZ,KAAK,QAAU,qBACjB,CAJA,CAIC,ECXL,IAAAC,EAAA,SAAAC,EAAA,CAAgCC,GAAAF,EAAAC,CAAA,EAwB9B,SAAAD,GAAA,CAAA,IAAAG,EAEEF,EAAA,KAAA,IAAA,GAAO,KAzBT,OAAAE,EAAA,OAAS,GAEDA,EAAA,iBAAyC,KAGjDA,EAAA,UAA2B,CAAA,EAE3BA,EAAA,UAAY,GAEZA,EAAA,SAAW,GAEXA,EAAA,YAAmB,MAenB,CAGA,OAAAH,EAAA,UAAA,KAAA,SAAQI,EAAwB,CAC9B,IAAMC,EAAU,IAAIC,GAAiB,KAAM,IAAI,EAC/C,OAAAD,EAAQ,SAAWD,EACZC,CACT,EAGUL,EAAA,UAAA,eAAV,UAAA,CACE,GAAI,KAAK,OACP,MAAM,IAAIO,EAEd,EAEAP,EAAA,UAAA,KAAA,SAAKQ,EAAQ,CAAb,IAAAL,EAAA,KACEM,GAAa,UAAA,SAEX,GADAN,EAAK,eAAc,EACf,CAACA,EAAK,UAAW,CACdA,EAAK,mBACRA,EAAK,iBAAmB,MAAM,KAAKA,EAAK,SAAS,OAEnD,QAAuBO,EAAAC,GAAAR,EAAK,gBAAgB,EAAAS,EAAAF,EAAA,KAAA,EAAA,CAAAE,EAAA,KAAAA,EAAAF,EAAA,KAAA,EAAE,CAAzC,IAAMG,EAAQD,EAAA,MACjBC,EAAS,KAAKL,CAAK,qGAGzB,CAAC,CACH,EAEAR,EAAA,UAAA,MAAA,SAAMc,EAAQ,CAAd,IAAAX,EAAA,KACEM,GAAa,UAAA,CAEX,GADAN,EAAK,eAAc,EACf,CAACA,EAAK,UAAW,CACnBA,EAAK,SAAWA,EAAK,UAAY,GACjCA,EAAK,YAAcW,EAEnB,QADQC,EAAcZ,EAAI,UACnBY,EAAU,QACfA,EAAU,MAAK,EAAI,MAAMD,CAAG,EAGlC,CAAC,CACH,EAEAd,EAAA,UAAA,SAAA,UAAA,CAAA,IAAAG,EAAA,KACEM,GAAa,UAAA,CAEX,GADAN,EAAK,eAAc,EACf,CAACA,EAAK,UAAW,CACnBA,EAAK,UAAY,GAEjB,QADQY,EAAcZ,EAAI,UACnBY,EAAU,QACfA,EAAU,MAAK,EAAI,SAAQ,EAGjC,CAAC,CACH,EAEAf,EAAA,UAAA,YAAA,UAAA,CACE,KAAK,UAAY,KAAK,OAAS,GAC/B,KAAK,UAAY,KAAK,iBAAmB,IAC3C,EAEA,OAAA,eAAIA,EAAA,UAAA,WAAQ,KAAZ,UAAA,OACE,QAAOgB,EAAA,KAAK,aAAS,MAAAA,IAAA,OAAA,OAAAA,EAAE,QAAS,CAClC,kCAGUhB,EAAA,UAAA,cAAV,SAAwBiB,EAAyB,CAC/C,YAAK,eAAc,EACZhB,EAAA,UAAM,cAAa,KAAA,KAACgB,CAAU,CACvC,EAGUjB,EAAA,UAAA,WAAV,SAAqBiB,EAAyB,CAC5C,YAAK,eAAc,EACnB,KAAK,wBAAwBA,CAAU,EAChC,KAAK,gBAAgBA,CAAU,CACxC,EAGUjB,EAAA,UAAA,gBAAV,SAA0BiB,EAA2B,CAArD,IAAAd,EAAA,KACQa,EAAqC,KAAnCE,EAAQF,EAAA,SAAEG,EAASH,EAAA,UAAED,EAASC,EAAA,UACtC,OAAIE,GAAYC,EACPC,IAET,KAAK,iBAAmB,KACxBL,EAAU,KAAKE,CAAU,EAClB,IAAII,GAAa,UAAA,CACtBlB,EAAK,iBAAmB,KACxBmB,GAAUP,EAAWE,CAAU,CACjC,CAAC,EACH,EAGUjB,EAAA,UAAA,wBAAV,SAAkCiB,EAA2B,CACrD,IAAAD,EAAuC,KAArCE,EAAQF,EAAA,SAAEO,EAAWP,EAAA,YAAEG,EAASH,EAAA,UACpCE,EACFD,EAAW,MAAMM,CAAW,EACnBJ,GACTF,EAAW,SAAQ,CAEvB,EAQAjB,EAAA,UAAA,aAAA,UAAA,CACE,IAAMwB,EAAkB,IAAIC,EAC5B,OAAAD,EAAW,OAAS,KACbA,CACT,EAxHOxB,EAAA,OAAkC,SAAI0B,EAA0BC,EAAqB,CAC1F,OAAO,IAAIrB,GAAoBoB,EAAaC,CAAM,CACpD,EAuHF3B,GA7IgCyB,CAAU,EAkJ1C,IAAAG,GAAA,SAAAC,EAAA,CAAyCC,GAAAF,EAAAC,CAAA,EACvC,SAAAD,EAESG,EACPC,EAAsB,CAHxB,IAAAC,EAKEJ,EAAA,KAAA,IAAA,GAAO,KAHA,OAAAI,EAAA,YAAAF,EAIPE,EAAK,OAASD,GAChB,CAEA,OAAAJ,EAAA,UAAA,KAAA,SAAKM,EAAQ,UACXC,GAAAC,EAAA,KAAK,eAAW,MAAAA,IAAA,OAAA,OAAAA,EAAE,QAAI,MAAAD,IAAA,QAAAA,EAAA,KAAAC,EAAGF,CAAK,CAChC,EAEAN,EAAA,UAAA,MAAA,SAAMS,EAAQ,UACZF,GAAAC,EAAA,KAAK,eAAW,MAAAA,IAAA,OAAA,OAAAA,EAAE,SAAK,MAAAD,IAAA,QAAAA,EAAA,KAAAC,EAAGC,CAAG,CAC/B,EAEAT,EAAA,UAAA,SAAA,UAAA,UACEO,GAAAC,EAAA,KAAK,eAAW,MAAAA,IAAA,OAAA,OAAAA,EAAE,YAAQ,MAAAD,IAAA,QAAAA,EAAA,KAAAC,CAAA,CAC5B,EAGUR,EAAA,UAAA,WAAV,SAAqBU,EAAyB,SAC5C,OAAOH,GAAAC,EAAA,KAAK,UAAM,MAAAA,IAAA,OAAA,OAAAA,EAAE,UAAUE,CAAU,KAAC,MAAAH,IAAA,OAAAA,EAAII,EAC/C,EACFX,CAAA,EA1ByCY,CAAO,ECxJhD,IAAAC,GAAA,SAAAC,EAAA,CAAwCC,GAAAF,EAAAC,CAAA,EACtC,SAAAD,EAAoBG,EAAS,CAA7B,IAAAC,EACEH,EAAA,KAAA,IAAA,GAAO,KADW,OAAAG,EAAA,OAAAD,GAEpB,CAEA,cAAA,eAAIH,EAAA,UAAA,QAAK,KAAT,UAAA,CACE,OAAO,KAAK,SAAQ,CACtB,kCAGUA,EAAA,UAAA,WAAV,SAAqBK,EAAyB,CAC5C,IAAMC,EAAeL,EAAA,UAAM,WAAU,KAAA,KAACI,CAAU,EAChD,OAACC,EAAa,QAAUD,EAAW,KAAK,KAAK,MAAM,EAC5CC,CACT,EAEAN,EAAA,UAAA,SAAA,UAAA,CACQ,IAAAO,EAAoC,KAAlCC,EAAQD,EAAA,SAAEE,EAAWF,EAAA,YAAEJ,EAAMI,EAAA,OACrC,GAAIC,EACF,MAAMC,EAER,YAAK,eAAc,EACZN,CACT,EAEAH,EAAA,UAAA,KAAA,SAAKU,EAAQ,CACXT,EAAA,UAAM,KAAI,KAAA,KAAE,KAAK,OAASS,CAAM,CAClC,EACFV,CAAA,EA5BwCW,CAAO,ECJxC,IAAMC,GAA+C,CAC1D,IAAG,UAAA,CAGD,OAAQA,GAAsB,UAAY,MAAM,IAAG,CACrD,EACA,SAAU,QCwBZ,IAAAC,GAAA,SAAAC,EAAA,CAAsCC,GAAAF,EAAAC,CAAA,EAUpC,SAAAD,EACUG,EACAC,EACAC,EAA6D,CAF7DF,IAAA,SAAAA,EAAA,KACAC,IAAA,SAAAA,EAAA,KACAC,IAAA,SAAAA,EAAAC,IAHV,IAAAC,EAKEN,EAAA,KAAA,IAAA,GAAO,KAJC,OAAAM,EAAA,YAAAJ,EACAI,EAAA,YAAAH,EACAG,EAAA,mBAAAF,EAZFE,EAAA,QAA0B,CAAA,EAC1BA,EAAA,oBAAsB,GAc5BA,EAAK,oBAAsBH,IAAgB,IAC3CG,EAAK,YAAc,KAAK,IAAI,EAAGJ,CAAW,EAC1CI,EAAK,YAAc,KAAK,IAAI,EAAGH,CAAW,GAC5C,CAEA,OAAAJ,EAAA,UAAA,KAAA,SAAKQ,EAAQ,CACL,IAAAC,EAA+E,KAA7EC,EAASD,EAAA,UAAEE,EAAOF,EAAA,QAAEG,EAAmBH,EAAA,oBAAEJ,EAAkBI,EAAA,mBAAEL,EAAWK,EAAA,YAC3EC,IACHC,EAAQ,KAAKH,CAAK,EAClB,CAACI,GAAuBD,EAAQ,KAAKN,EAAmB,IAAG,EAAKD,CAAW,GAE7E,KAAK,YAAW,EAChBH,EAAA,UAAM,KAAI,KAAA,KAACO,CAAK,CAClB,EAGUR,EAAA,UAAA,WAAV,SAAqBa,EAAyB,CAC5C,KAAK,eAAc,EACnB,KAAK,YAAW,EAQhB,QANMC,EAAe,KAAK,gBAAgBD,CAAU,EAE9CJ,EAAmC,KAAjCG,EAAmBH,EAAA,oBAAEE,EAAOF,EAAA,QAG9BM,EAAOJ,EAAQ,MAAK,EACjBK,EAAI,EAAGA,EAAID,EAAK,QAAU,CAACF,EAAW,OAAQG,GAAKJ,EAAsB,EAAI,EACpFC,EAAW,KAAKE,EAAKC,CAAC,CAAM,EAG9B,YAAK,wBAAwBH,CAAU,EAEhCC,CACT,EAEQd,EAAA,UAAA,YAAR,UAAA,CACQ,IAAAS,EAAoE,KAAlEN,EAAWM,EAAA,YAAEJ,EAAkBI,EAAA,mBAAEE,EAAOF,EAAA,QAAEG,EAAmBH,EAAA,oBAK/DQ,GAAsBL,EAAsB,EAAI,GAAKT,EAK3D,GAJAA,EAAc,KAAYc,EAAqBN,EAAQ,QAAUA,EAAQ,OAAO,EAAGA,EAAQ,OAASM,CAAkB,EAIlH,CAACL,EAAqB,CAKxB,QAJMM,EAAMb,EAAmB,IAAG,EAC9Bc,EAAO,EAGFH,EAAI,EAAGA,EAAIL,EAAQ,QAAWA,EAAQK,CAAC,GAAgBE,EAAKF,GAAK,EACxEG,EAAOH,EAETG,GAAQR,EAAQ,OAAO,EAAGQ,EAAO,CAAC,EAEtC,EACFnB,CAAA,EAzEsCoB,CAAO,EClB7C,IAAAC,GAAA,SAAAC,EAAA,CAA+BC,GAAAF,EAAAC,CAAA,EAC7B,SAAAD,EAAYG,EAAsBC,EAAmD,QACnFH,EAAA,KAAA,IAAA,GAAO,IACT,CAWO,OAAAD,EAAA,UAAA,SAAP,SAAgBK,EAAWC,EAAiB,CAAjB,OAAAA,IAAA,SAAAA,EAAA,GAClB,IACT,EACFN,CAAA,EAjB+BO,EAAY,ECHpC,IAAMC,GAAqC,CAGhD,YAAA,SAAYC,EAAqBC,EAAgB,SAAEC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,EAAA,CAAA,EAAA,UAAAA,CAAA,EACzC,IAAAC,EAAaL,GAAgB,SACrC,OAAIK,GAAQ,MAARA,EAAU,YACLA,EAAS,YAAW,MAApBA,EAAQC,EAAA,CAAaL,EAASC,CAAO,EAAAK,EAAKJ,CAAI,CAAA,CAAA,EAEhD,YAAW,MAAA,OAAAG,EAAA,CAACL,EAASC,CAAO,EAAAK,EAAKJ,CAAI,CAAA,CAAA,CAC9C,EACA,cAAA,SAAcK,EAAM,CACV,IAAAH,EAAaL,GAAgB,SACrC,QAAQK,GAAQ,KAAA,OAARA,EAAU,gBAAiB,eAAeG,CAAa,CACjE,EACA,SAAU,QCrBZ,IAAAC,GAAA,SAAAC,EAAA,CAAoCC,GAAAF,EAAAC,CAAA,EAOlC,SAAAD,EAAsBG,EAAqCC,EAAmD,CAA9G,IAAAC,EACEJ,EAAA,KAAA,KAAME,EAAWC,CAAI,GAAC,KADF,OAAAC,EAAA,UAAAF,EAAqCE,EAAA,KAAAD,EAFjDC,EAAA,QAAmB,IAI7B,CAEO,OAAAL,EAAA,UAAA,SAAP,SAAgBM,EAAWC,EAAiB,OAC1C,GADyBA,IAAA,SAAAA,EAAA,GACrB,KAAK,OACP,OAAO,KAIT,KAAK,MAAQD,EAEb,IAAME,EAAK,KAAK,GACVL,EAAY,KAAK,UAuBvB,OAAIK,GAAM,OACR,KAAK,GAAK,KAAK,eAAeL,EAAWK,EAAID,CAAK,GAKpD,KAAK,QAAU,GAEf,KAAK,MAAQA,EAEb,KAAK,IAAKE,EAAA,KAAK,MAAE,MAAAA,IAAA,OAAAA,EAAI,KAAK,eAAeN,EAAW,KAAK,GAAII,CAAK,EAE3D,IACT,EAEUP,EAAA,UAAA,eAAV,SAAyBG,EAA2BO,EAAmBH,EAAiB,CAAjB,OAAAA,IAAA,SAAAA,EAAA,GAC9DI,GAAiB,YAAYR,EAAU,MAAM,KAAKA,EAAW,IAAI,EAAGI,CAAK,CAClF,EAEUP,EAAA,UAAA,eAAV,SAAyBY,EAA4BJ,EAAkBD,EAAwB,CAE7F,GAFqEA,IAAA,SAAAA,EAAA,GAEjEA,GAAS,MAAQ,KAAK,QAAUA,GAAS,KAAK,UAAY,GAC5D,OAAOC,EAILA,GAAM,MACRG,GAAiB,cAAcH,CAAE,CAIrC,EAMOR,EAAA,UAAA,QAAP,SAAeM,EAAUC,EAAa,CACpC,GAAI,KAAK,OACP,OAAO,IAAI,MAAM,8BAA8B,EAGjD,KAAK,QAAU,GACf,IAAMM,EAAQ,KAAK,SAASP,EAAOC,CAAK,EACxC,GAAIM,EACF,OAAOA,EACE,KAAK,UAAY,IAAS,KAAK,IAAM,OAc9C,KAAK,GAAK,KAAK,eAAe,KAAK,UAAW,KAAK,GAAI,IAAI,EAE/D,EAEUb,EAAA,UAAA,SAAV,SAAmBM,EAAUQ,EAAc,CACzC,IAAIC,EAAmB,GACnBC,EACJ,GAAI,CACF,KAAK,KAAKV,CAAK,QACRW,EAAG,CACVF,EAAU,GAIVC,EAAaC,GAAQ,IAAI,MAAM,oCAAoC,EAErE,GAAIF,EACF,YAAK,YAAW,EACTC,CAEX,EAEAhB,EAAA,UAAA,YAAA,UAAA,CACE,GAAI,CAAC,KAAK,OAAQ,CACV,IAAAS,EAAoB,KAAlBD,EAAEC,EAAA,GAAEN,EAASM,EAAA,UACbS,EAAYf,EAAS,QAE7B,KAAK,KAAO,KAAK,MAAQ,KAAK,UAAY,KAC1C,KAAK,QAAU,GAEfgB,GAAUD,EAAS,IAAI,EACnBV,GAAM,OACR,KAAK,GAAK,KAAK,eAAeL,EAAWK,EAAI,IAAI,GAGnD,KAAK,MAAQ,KACbP,EAAA,UAAM,YAAW,KAAA,IAAA,EAErB,EACFD,CAAA,EA9IoCoB,EAAM,ECgB1C,IAAAC,GAAA,UAAA,CAGE,SAAAA,EAAoBC,EAAoCC,EAAiC,CAAjCA,IAAA,SAAAA,EAAoBF,EAAU,KAAlE,KAAA,oBAAAC,EAClB,KAAK,IAAMC,CACb,CA6BO,OAAAF,EAAA,UAAA,SAAP,SAAmBG,EAAqDC,EAAmBC,EAAS,CAA5B,OAAAD,IAAA,SAAAA,EAAA,GAC/D,IAAI,KAAK,oBAAuB,KAAMD,CAAI,EAAE,SAASE,EAAOD,CAAK,CAC1E,EAnCcJ,EAAA,IAAoBM,GAAsB,IAoC1DN,GArCA,ECnBA,IAAAO,GAAA,SAAAC,EAAA,CAAoCC,GAAAF,EAAAC,CAAA,EAkBlC,SAAAD,EAAYG,EAAgCC,EAAiC,CAAjCA,IAAA,SAAAA,EAAoBC,GAAU,KAA1E,IAAAC,EACEL,EAAA,KAAA,KAAME,EAAiBC,CAAG,GAAC,KAlBtB,OAAAE,EAAA,QAAmC,CAAA,EAOnCA,EAAA,QAAmB,IAY1B,CAEO,OAAAN,EAAA,UAAA,MAAP,SAAaO,EAAwB,CAC3B,IAAAC,EAAY,KAAI,QAExB,GAAI,KAAK,QAAS,CAChBA,EAAQ,KAAKD,CAAM,EACnB,OAGF,IAAIE,EACJ,KAAK,QAAU,GAEf,EACE,IAAKA,EAAQF,EAAO,QAAQA,EAAO,MAAOA,EAAO,KAAK,EACpD,YAEMA,EAASC,EAAQ,MAAK,GAIhC,GAFA,KAAK,QAAU,GAEXC,EAAO,CACT,KAAQF,EAASC,EAAQ,MAAK,GAC5BD,EAAO,YAAW,EAEpB,MAAME,EAEV,EACFT,CAAA,EAhDoCK,EAAS,EC6CtC,IAAMK,GAAiB,IAAIC,GAAeC,EAAW,EAK/CC,GAAQH,GCjDrB,IAAAI,GAAA,SAAAC,EAAA,CAAoCC,GAAAF,EAAAC,CAAA,EAClC,SAAAD,EAAsBG,EAAqCC,EAAmD,CAA9G,IAAAC,EACEJ,EAAA,KAAA,KAAME,EAAWC,CAAI,GAAC,KADF,OAAAC,EAAA,UAAAF,EAAqCE,EAAA,KAAAD,GAE3D,CAEO,OAAAJ,EAAA,UAAA,SAAP,SAAgBM,EAAWC,EAAiB,CAC1C,OADyBA,IAAA,SAAAA,EAAA,GACrBA,EAAQ,EACHN,EAAA,UAAM,SAAQ,KAAA,KAACK,EAAOC,CAAK,GAEpC,KAAK,MAAQA,EACb,KAAK,MAAQD,EACb,KAAK,UAAU,MAAM,IAAI,EAClB,KACT,EAEON,EAAA,UAAA,QAAP,SAAeM,EAAUC,EAAa,CACpC,OAAOA,EAAQ,GAAK,KAAK,OAASN,EAAA,UAAM,QAAO,KAAA,KAACK,EAAOC,CAAK,EAAI,KAAK,SAASD,EAAOC,CAAK,CAC5F,EAEUP,EAAA,UAAA,eAAV,SAAyBG,EAA2BK,EAAkBD,EAAiB,CAKrF,OALoEA,IAAA,SAAAA,EAAA,GAK/DA,GAAS,MAAQA,EAAQ,GAAOA,GAAS,MAAQ,KAAK,MAAQ,EAC1DN,EAAA,UAAM,eAAc,KAAA,KAACE,EAAWK,EAAID,CAAK,GAIlDJ,EAAU,MAAM,IAAI,EAMb,EACT,EACFH,CAAA,EArCoCS,EAAW,ECJ/C,IAAAC,GAAA,SAAAC,EAAA,CAAoCC,GAAAF,EAAAC,CAAA,EAApC,SAAAD,GAAA,+CACA,CAAA,OAAAA,CAAA,EADoCG,EAAc,ECgE3C,IAAMC,GAAiB,IAAIC,GAAeC,EAAW,EC5D5D,IAAAC,GAAA,SAAAC,EAAA,CAA6CC,GAAAF,EAAAC,CAAA,EAC3C,SAAAD,EAAsBG,EAA8CC,EAAmD,CAAvH,IAAAC,EACEJ,EAAA,KAAA,KAAME,EAAWC,CAAI,GAAC,KADF,OAAAC,EAAA,UAAAF,EAA8CE,EAAA,KAAAD,GAEpE,CAEU,OAAAJ,EAAA,UAAA,eAAV,SAAyBG,EAAoCG,EAAkBC,EAAiB,CAE9F,OAF6EA,IAAA,SAAAA,EAAA,GAEzEA,IAAU,MAAQA,EAAQ,EACrBN,EAAA,UAAM,eAAc,KAAA,KAACE,EAAWG,EAAIC,CAAK,GAGlDJ,EAAU,QAAQ,KAAK,IAAI,EAIpBA,EAAU,aAAeA,EAAU,WAAaK,GAAuB,sBAAsB,UAAA,CAAM,OAAAL,EAAU,MAAM,MAAS,CAAzB,CAA0B,GACtI,EAEUH,EAAA,UAAA,eAAV,SAAyBG,EAAoCG,EAAkBC,EAAiB,OAI9F,GAJ6EA,IAAA,SAAAA,EAAA,GAIzEA,GAAS,KAAOA,EAAQ,EAAI,KAAK,MAAQ,EAC3C,OAAON,EAAA,UAAM,eAAc,KAAA,KAACE,EAAWG,EAAIC,CAAK,EAK1C,IAAAE,EAAYN,EAAS,QACzBG,GAAM,QAAQI,EAAAD,EAAQA,EAAQ,OAAS,CAAC,KAAC,MAAAC,IAAA,OAAA,OAAAA,EAAE,MAAOJ,IACpDE,GAAuB,qBAAqBF,CAAY,EACxDH,EAAU,WAAa,OAI3B,EACFH,CAAA,EApC6CW,EAAW,ECHxD,IAAAC,GAAA,SAAAC,EAAA,CAA6CC,GAAAF,EAAAC,CAAA,EAA7C,SAAAD,GAAA,+CAkCA,CAjCS,OAAAA,EAAA,UAAA,MAAP,SAAaG,EAAyB,CACpC,KAAK,QAAU,GAUf,IAAMC,EAAU,KAAK,WACrB,KAAK,WAAa,OAEV,IAAAC,EAAY,KAAI,QACpBC,EACJH,EAASA,GAAUE,EAAQ,MAAK,EAEhC,EACE,IAAKC,EAAQH,EAAO,QAAQA,EAAO,MAAOA,EAAO,KAAK,EACpD,aAEMA,EAASE,EAAQ,CAAC,IAAMF,EAAO,KAAOC,GAAWC,EAAQ,MAAK,GAIxE,GAFA,KAAK,QAAU,GAEXC,EAAO,CACT,MAAQH,EAASE,EAAQ,CAAC,IAAMF,EAAO,KAAOC,GAAWC,EAAQ,MAAK,GACpEF,EAAO,YAAW,EAEpB,MAAMG,EAEV,EACFN,CAAA,EAlC6CO,EAAc,ECgCpD,IAAMC,GAA0B,IAAIC,GAAwBC,EAAoB,EC8BhF,IAAMC,EAAQ,IAAIC,EAAkB,SAACC,EAAU,CAAK,OAAAA,EAAW,SAAQ,CAAnB,CAAqB,EC9D1E,SAAUC,GAAYC,EAAU,CACpC,OAAOA,GAASC,EAAWD,EAAM,QAAQ,CAC3C,CCDA,SAASE,GAAQC,EAAQ,CACvB,OAAOA,EAAIA,EAAI,OAAS,CAAC,CAC3B,CAEM,SAAUC,GAAkBC,EAAW,CAC3C,OAAOC,EAAWJ,GAAKG,CAAI,CAAC,EAAIA,EAAK,IAAG,EAAK,MAC/C,CAEM,SAAUE,GAAaF,EAAW,CACtC,OAAOG,GAAYN,GAAKG,CAAI,CAAC,EAAIA,EAAK,IAAG,EAAK,MAChD,CAEM,SAAUI,GAAUJ,EAAaK,EAAoB,CACzD,OAAO,OAAOR,GAAKG,CAAI,GAAM,SAAWA,EAAK,IAAG,EAAMK,CACxD,CClBO,IAAMC,GAAe,SAAIC,EAAM,CAAwB,OAAAA,GAAK,OAAOA,EAAE,QAAW,UAAY,OAAOA,GAAM,UAAlD,ECMxD,SAAUC,GAAUC,EAAU,CAClC,OAAOC,EAAWD,GAAK,KAAA,OAALA,EAAO,IAAI,CAC/B,CCHM,SAAUE,GAAoBC,EAAU,CAC5C,OAAOC,EAAWD,EAAME,EAAiB,CAAC,CAC5C,CCLM,SAAUC,GAAmBC,EAAQ,CACzC,OAAO,OAAO,eAAiBC,EAAWD,GAAG,KAAA,OAAHA,EAAM,OAAO,aAAa,CAAC,CACvE,CCAM,SAAUE,GAAiCC,EAAU,CAEzD,OAAO,IAAI,UACT,iBACEA,IAAU,MAAQ,OAAOA,GAAU,SAAW,oBAAsB,IAAIA,EAAK,KAAG,0HACwC,CAE9H,CCXM,SAAUC,IAAiB,CAC/B,OAAI,OAAO,QAAW,YAAc,CAAC,OAAO,SACnC,aAGF,OAAO,QAChB,CAEO,IAAMC,GAAWD,GAAiB,ECJnC,SAAUE,GAAWC,EAAU,CACnC,OAAOC,EAAWD,GAAK,KAAA,OAALA,EAAQE,EAAe,CAAC,CAC5C,CCHM,SAAiBC,GAAsCC,EAAqC,mGAC1FC,EAASD,EAAe,UAAS,2DAGX,MAAA,CAAA,EAAAE,GAAMD,EAAO,KAAI,CAAE,CAAA,gBAArCE,EAAkBC,EAAA,KAAA,EAAhBC,EAAKF,EAAA,MAAEG,EAAIH,EAAA,KACfG,iBAAA,CAAA,EAAA,CAAA,SACF,MAAA,CAAA,EAAAF,EAAA,KAAA,CAAA,qBAEIC,CAAM,CAAA,SAAZ,MAAA,CAAA,EAAAD,EAAA,KAAA,CAAA,SAAA,OAAAA,EAAA,KAAA,mCAGF,OAAAH,EAAO,YAAW,6BAIhB,SAAUM,GAAwBC,EAAQ,CAG9C,OAAOC,EAAWD,GAAG,KAAA,OAAHA,EAAK,SAAS,CAClC,CCPM,SAAUE,EAAaC,EAAyB,CACpD,GAAIA,aAAiBC,EACnB,OAAOD,EAET,GAAIA,GAAS,KAAM,CACjB,GAAIE,GAAoBF,CAAK,EAC3B,OAAOG,GAAsBH,CAAK,EAEpC,GAAII,GAAYJ,CAAK,EACnB,OAAOK,GAAcL,CAAK,EAE5B,GAAIM,GAAUN,CAAK,EACjB,OAAOO,GAAYP,CAAK,EAE1B,GAAIQ,GAAgBR,CAAK,EACvB,OAAOS,GAAkBT,CAAK,EAEhC,GAAIU,GAAWV,CAAK,EAClB,OAAOW,GAAaX,CAAK,EAE3B,GAAIY,GAAqBZ,CAAK,EAC5B,OAAOa,GAAuBb,CAAK,EAIvC,MAAMc,GAAiCd,CAAK,CAC9C,CAMM,SAAUG,GAAyBY,EAAQ,CAC/C,OAAO,IAAId,EAAW,SAACe,EAAyB,CAC9C,IAAMC,EAAMF,EAAIG,EAAiB,EAAC,EAClC,GAAIC,EAAWF,EAAI,SAAS,EAC1B,OAAOA,EAAI,UAAUD,CAAU,EAGjC,MAAM,IAAI,UAAU,gEAAgE,CACtF,CAAC,CACH,CASM,SAAUX,GAAiBe,EAAmB,CAClD,OAAO,IAAInB,EAAW,SAACe,EAAyB,CAU9C,QAASK,EAAI,EAAGA,EAAID,EAAM,QAAU,CAACJ,EAAW,OAAQK,IACtDL,EAAW,KAAKI,EAAMC,CAAC,CAAC,EAE1BL,EAAW,SAAQ,CACrB,CAAC,CACH,CAEM,SAAUT,GAAee,EAAuB,CACpD,OAAO,IAAIrB,EAAW,SAACe,EAAyB,CAC9CM,EACG,KACC,SAACC,EAAK,CACCP,EAAW,SACdA,EAAW,KAAKO,CAAK,EACrBP,EAAW,SAAQ,EAEvB,EACA,SAACQ,EAAQ,CAAK,OAAAR,EAAW,MAAMQ,CAAG,CAApB,CAAqB,EAEpC,KAAK,KAAMC,EAAoB,CACpC,CAAC,CACH,CAEM,SAAUd,GAAgBe,EAAqB,CACnD,OAAO,IAAIzB,EAAW,SAACe,EAAyB,aAC9C,QAAoBW,EAAAC,GAAAF,CAAQ,EAAAG,EAAAF,EAAA,KAAA,EAAA,CAAAE,EAAA,KAAAA,EAAAF,EAAA,KAAA,EAAE,CAAzB,IAAMJ,EAAKM,EAAA,MAEd,GADAb,EAAW,KAAKO,CAAK,EACjBP,EAAW,OACb,yGAGJA,EAAW,SAAQ,CACrB,CAAC,CACH,CAEM,SAAUP,GAAqBqB,EAA+B,CAClE,OAAO,IAAI7B,EAAW,SAACe,EAAyB,CAC9Ce,GAAQD,EAAed,CAAU,EAAE,MAAM,SAACQ,EAAG,CAAK,OAAAR,EAAW,MAAMQ,CAAG,CAApB,CAAqB,CACzE,CAAC,CACH,CAEM,SAAUX,GAA0BmB,EAAqC,CAC7E,OAAOvB,GAAkBwB,GAAmCD,CAAc,CAAC,CAC7E,CAEA,SAAeD,GAAWD,EAAiCd,EAAyB,uIACxDkB,EAAAC,GAAAL,CAAa,gFAIrC,GAJeP,EAAKa,EAAA,MACpBpB,EAAW,KAAKO,CAAK,EAGjBP,EAAW,OACb,MAAA,CAAA,CAAA,6RAGJ,OAAAA,EAAW,SAAQ,WChHf,SAAUqB,GACdC,EACAC,EACAC,EACAC,EACAC,EAAc,CADdD,IAAA,SAAAA,EAAA,GACAC,IAAA,SAAAA,EAAA,IAEA,IAAMC,EAAuBJ,EAAU,SAAS,UAAA,CAC9CC,EAAI,EACAE,EACFJ,EAAmB,IAAI,KAAK,SAAS,KAAMG,CAAK,CAAC,EAEjD,KAAK,YAAW,CAEpB,EAAGA,CAAK,EAIR,GAFAH,EAAmB,IAAIK,CAAoB,EAEvC,CAACD,EAKH,OAAOC,CAEX,CCeM,SAAUC,GAAaC,EAA0BC,EAAS,CAAT,OAAAA,IAAA,SAAAA,EAAA,GAC9CC,EAAQ,SAACC,EAAQC,EAAU,CAChCD,EAAO,UACLE,EACED,EACA,SAACE,EAAK,CAAK,OAAAC,GAAgBH,EAAYJ,EAAW,UAAA,CAAM,OAAAI,EAAW,KAAKE,CAAK,CAArB,EAAwBL,CAAK,CAA1E,EACX,UAAA,CAAM,OAAAM,GAAgBH,EAAYJ,EAAW,UAAA,CAAM,OAAAI,EAAW,SAAQ,CAAnB,EAAuBH,CAAK,CAAzE,EACN,SAACO,EAAG,CAAK,OAAAD,GAAgBH,EAAYJ,EAAW,UAAA,CAAM,OAAAI,EAAW,MAAMI,CAAG,CAApB,EAAuBP,CAAK,CAAzE,CAA0E,CACpF,CAEL,CAAC,CACH,CCPM,SAAUQ,GAAeC,EAA0BC,EAAiB,CAAjB,OAAAA,IAAA,SAAAA,EAAA,GAChDC,EAAQ,SAACC,EAAQC,EAAU,CAChCA,EAAW,IAAIJ,EAAU,SAAS,UAAA,CAAM,OAAAG,EAAO,UAAUC,CAAU,CAA3B,EAA8BH,CAAK,CAAC,CAC9E,CAAC,CACH,CC7DM,SAAUI,GAAsBC,EAA6BC,EAAwB,CACzF,OAAOC,EAAUF,CAAK,EAAE,KAAKG,GAAYF,CAAS,EAAGG,GAAUH,CAAS,CAAC,CAC3E,CCFM,SAAUI,GAAmBC,EAAuBC,EAAwB,CAChF,OAAOC,EAAUF,CAAK,EAAE,KAAKG,GAAYF,CAAS,EAAGG,GAAUH,CAAS,CAAC,CAC3E,CCJM,SAAUI,GAAiBC,EAAqBC,EAAwB,CAC5E,OAAO,IAAIC,EAAc,SAACC,EAAU,CAElC,IAAIC,EAAI,EAER,OAAOH,EAAU,SAAS,UAAA,CACpBG,IAAMJ,EAAM,OAGdG,EAAW,SAAQ,GAInBA,EAAW,KAAKH,EAAMI,GAAG,CAAC,EAIrBD,EAAW,QACd,KAAK,SAAQ,EAGnB,CAAC,CACH,CAAC,CACH,CCfM,SAAUE,GAAoBC,EAAoBC,EAAwB,CAC9E,OAAO,IAAIC,EAAc,SAACC,EAAU,CAClC,IAAIC,EAKJ,OAAAC,GAAgBF,EAAYF,EAAW,UAAA,CAErCG,EAAYJ,EAAcI,EAAe,EAAC,EAE1CC,GACEF,EACAF,EACA,UAAA,OACMK,EACAC,EACJ,GAAI,CAEDC,EAAkBJ,EAAS,KAAI,EAA7BE,EAAKE,EAAA,MAAED,EAAIC,EAAA,WACPC,EAAK,CAEZN,EAAW,MAAMM,CAAG,EACpB,OAGEF,EAKFJ,EAAW,SAAQ,EAGnBA,EAAW,KAAKG,CAAK,CAEzB,EACA,EACA,EAAI,CAER,CAAC,EAMM,UAAA,CAAM,OAAAI,EAAWN,GAAQ,KAAA,OAARA,EAAU,MAAM,GAAKA,EAAS,OAAM,CAA/C,CACf,CAAC,CACH,CCvDM,SAAUO,GAAyBC,EAAyBC,EAAwB,CACxF,GAAI,CAACD,EACH,MAAM,IAAI,MAAM,yBAAyB,EAE3C,OAAO,IAAIE,EAAc,SAACC,EAAU,CAClCC,GAAgBD,EAAYF,EAAW,UAAA,CACrC,IAAMI,EAAWL,EAAM,OAAO,aAAa,EAAC,EAC5CI,GACED,EACAF,EACA,UAAA,CACEI,EAAS,KAAI,EAAG,KAAK,SAACC,EAAM,CACtBA,EAAO,KAGTH,EAAW,SAAQ,EAEnBA,EAAW,KAAKG,EAAO,KAAK,CAEhC,CAAC,CACH,EACA,EACA,EAAI,CAER,CAAC,CACH,CAAC,CACH,CCzBM,SAAUC,GAA8BC,EAA8BC,EAAwB,CAClG,OAAOC,GAAsBC,GAAmCH,CAAK,EAAGC,CAAS,CACnF,CCoBM,SAAUG,GAAaC,EAA2BC,EAAwB,CAC9E,GAAID,GAAS,KAAM,CACjB,GAAIE,GAAoBF,CAAK,EAC3B,OAAOG,GAAmBH,EAAOC,CAAS,EAE5C,GAAIG,GAAYJ,CAAK,EACnB,OAAOK,GAAcL,EAAOC,CAAS,EAEvC,GAAIK,GAAUN,CAAK,EACjB,OAAOO,GAAgBP,EAAOC,CAAS,EAEzC,GAAIO,GAAgBR,CAAK,EACvB,OAAOS,GAAsBT,EAAOC,CAAS,EAE/C,GAAIS,GAAWV,CAAK,EAClB,OAAOW,GAAiBX,EAAOC,CAAS,EAE1C,GAAIW,GAAqBZ,CAAK,EAC5B,OAAOa,GAA2Bb,EAAOC,CAAS,EAGtD,MAAMa,GAAiCd,CAAK,CAC9C,CCoDM,SAAUe,GAAQC,EAA2BC,EAAyB,CAC1E,OAAOA,EAAYC,GAAUF,EAAOC,CAAS,EAAIE,EAAUH,CAAK,CAClE,CCxBM,SAAUI,GAAE,SAAIC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EACpB,IAAMC,EAAYC,GAAaH,CAAI,EACnC,OAAOI,GAAKJ,EAAaE,CAAS,CACpC,CCsCM,SAAUG,GAAWC,EAA0BC,EAAyB,CAC5E,IAAMC,EAAeC,EAAWH,CAAmB,EAAIA,EAAsB,UAAA,CAAM,OAAAA,CAAA,EAC7EI,EAAO,SAACC,EAA6B,CAAK,OAAAA,EAAW,MAAMH,EAAY,CAAE,CAA/B,EAChD,OAAO,IAAII,EAAWL,EAAY,SAACI,EAAU,CAAK,OAAAJ,EAAU,SAASG,EAAa,EAAGC,CAAU,CAA7C,EAAiDD,CAAI,CACzG,CCpGO,IAAMG,GAA6BC,GAAiB,SAACC,EAAM,CAAK,OAAA,UAAuB,CAC5FA,EAAO,IAAI,EACX,KAAK,KAAO,aACZ,KAAK,QAAU,yBACjB,CAJuE,CAItE,ECrBK,SAAUC,GAAYC,EAAU,CACpC,OAAOA,aAAiB,MAAQ,CAAC,MAAMA,CAAY,CACrD,CCsCM,SAAUC,EAAUC,EAAyCC,EAAa,CAC9E,OAAOC,EAAQ,SAACC,EAAQC,EAAU,CAEhC,IAAIC,EAAQ,EAGZF,EAAO,UACLG,EAAyBF,EAAY,SAACG,EAAQ,CAG5CH,EAAW,KAAKJ,EAAQ,KAAKC,EAASM,EAAOF,GAAO,CAAC,CACvD,CAAC,CAAC,CAEN,CAAC,CACH,CC1DQ,IAAAG,GAAY,MAAK,QAEzB,SAASC,GAAkBC,EAA6BC,EAAW,CAC/D,OAAOH,GAAQG,CAAI,EAAID,EAAE,MAAA,OAAAE,EAAA,CAAA,EAAAC,EAAIF,CAAI,CAAA,CAAA,EAAID,EAAGC,CAAI,CAChD,CAMM,SAAUG,GAAuBJ,EAA2B,CAC9D,OAAOK,EAAI,SAAAJ,EAAI,CAAI,OAAAF,GAAYC,EAAIC,CAAI,CAApB,CAAqB,CAC5C,CCfQ,IAAAK,GAAY,MAAK,QACjBC,GAA0D,OAAM,eAArCC,GAA+B,OAAM,UAAlBC,GAAY,OAAM,KAQlE,SAAUC,GAAqDC,EAAuB,CAC1F,GAAIA,EAAK,SAAW,EAAG,CACrB,IAAMC,EAAQD,EAAK,CAAC,EACpB,GAAIL,GAAQM,CAAK,EACf,MAAO,CAAE,KAAMA,EAAO,KAAM,IAAI,EAElC,GAAIC,GAAOD,CAAK,EAAG,CACjB,IAAME,EAAOL,GAAQG,CAAK,EAC1B,MAAO,CACL,KAAME,EAAK,IAAI,SAACC,EAAG,CAAK,OAAAH,EAAMG,CAAG,CAAT,CAAU,EAClC,KAAID,IAKV,MAAO,CAAE,KAAMH,EAAa,KAAM,IAAI,CACxC,CAEA,SAASE,GAAOG,EAAQ,CACtB,OAAOA,GAAO,OAAOA,GAAQ,UAAYT,GAAeS,CAAG,IAAMR,EACnE,CC7BM,SAAUS,GAAaC,EAAgBC,EAAa,CACxD,OAAOD,EAAK,OAAO,SAACE,EAAQC,EAAKC,EAAC,CAAK,OAAEF,EAAOC,CAAG,EAAIF,EAAOG,CAAC,EAAIF,CAA5B,EAAqC,CAAA,CAAS,CACvF,CCsMM,SAAUG,GAAa,SAAoCC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EAC/D,IAAMC,EAAYC,GAAaH,CAAI,EAC7BI,EAAiBC,GAAkBL,CAAI,EAEvCM,EAA8BC,GAAqBP,CAAI,EAA/CQ,EAAWF,EAAA,KAAEG,EAAIH,EAAA,KAE/B,GAAIE,EAAY,SAAW,EAIzB,OAAOE,GAAK,CAAA,EAAIR,CAAgB,EAGlC,IAAMS,EAAS,IAAIC,EACjBC,GACEL,EACAN,EACAO,EAEI,SAACK,EAAM,CAAK,OAAAC,GAAaN,EAAMK,CAAM,CAAzB,EAEZE,EAAQ,CACb,EAGH,OAAOZ,EAAkBO,EAAO,KAAKM,GAAiBb,CAAc,CAAC,EAAsBO,CAC7F,CAEM,SAAUE,GACdL,EACAN,EACAgB,EAAiD,CAAjD,OAAAA,IAAA,SAAAA,EAAAF,IAEO,SAACG,EAA2B,CAGjCC,GACElB,EACA,UAAA,CAaE,QAZQmB,EAAWb,EAAW,OAExBM,EAAS,IAAI,MAAMO,CAAM,EAG3BC,EAASD,EAITE,EAAuBF,aAGlBG,EAAC,CACRJ,GACElB,EACA,UAAA,CACE,IAAMuB,EAASf,GAAKF,EAAYgB,CAAC,EAAGtB,CAAgB,EAChDwB,EAAgB,GACpBD,EAAO,UACLE,EACER,EACA,SAACS,EAAK,CAEJd,EAAOU,CAAC,EAAII,EACPF,IAEHA,EAAgB,GAChBH,KAEGA,GAGHJ,EAAW,KAAKD,EAAeJ,EAAO,MAAK,CAAE,CAAC,CAElD,EACA,UAAA,CACO,EAAEQ,GAGLH,EAAW,SAAQ,CAEvB,CAAC,CACF,CAEL,EACAA,CAAU,GAjCLK,EAAI,EAAGA,EAAIH,EAAQG,MAAnBA,CAAC,CAoCZ,EACAL,CAAU,CAEd,CACF,CAMA,SAASC,GAAclB,EAAsC2B,EAAqBC,EAA0B,CACtG5B,EACF6B,GAAgBD,EAAc5B,EAAW2B,CAAO,EAEhDA,EAAO,CAEX,CC3RM,SAAUG,GACdC,EACAC,EACAC,EACAC,EACAC,EACAC,EACAC,EACAC,EAAgC,CAGhC,IAAMC,EAAc,CAAA,EAEhBC,EAAS,EAETC,EAAQ,EAERC,EAAa,GAKXC,EAAgB,UAAA,CAIhBD,GAAc,CAACH,EAAO,QAAU,CAACC,GACnCR,EAAW,SAAQ,CAEvB,EAGMY,EAAY,SAACC,EAAQ,CAAK,OAACL,EAASN,EAAaY,EAAWD,CAAK,EAAIN,EAAO,KAAKM,CAAK,CAA5D,EAE1BC,EAAa,SAACD,EAAQ,CAI1BT,GAAUJ,EAAW,KAAKa,CAAY,EAItCL,IAKA,IAAIO,EAAgB,GAGpBC,EAAUf,EAAQY,EAAOJ,GAAO,CAAC,EAAE,UACjCQ,EACEjB,EACA,SAACkB,GAAU,CAGTf,GAAY,MAAZA,EAAee,EAAU,EAErBd,EAGFQ,EAAUM,EAAiB,EAG3BlB,EAAW,KAAKkB,EAAU,CAE9B,EACA,UAAA,CAGEH,EAAgB,EAClB,EAEA,OACA,UAAA,CAIE,GAAIA,EAKF,GAAI,CAIFP,IAKA,sBACE,IAAMW,EAAgBZ,EAAO,MAAK,EAI9BF,EACFe,GAAgBpB,EAAYK,EAAmB,UAAA,CAAM,OAAAS,EAAWK,CAAa,CAAxB,CAAyB,EAE9EL,EAAWK,CAAa,GARrBZ,EAAO,QAAUC,EAASN,QAYjCS,EAAa,QACNU,EAAK,CACZrB,EAAW,MAAMqB,CAAG,EAG1B,CAAC,CACF,CAEL,EAGA,OAAAtB,EAAO,UACLkB,EAAyBjB,EAAYY,EAAW,UAAA,CAE9CF,EAAa,GACbC,EAAa,CACf,CAAC,CAAC,EAKG,UAAA,CACLL,GAAmB,MAAnBA,EAAmB,CACrB,CACF,CClEM,SAAUgB,GACdC,EACAC,EACAC,EAA6B,CAE7B,OAFAA,IAAA,SAAAA,EAAA,KAEIC,EAAWF,CAAc,EAEpBF,GAAS,SAACK,EAAGC,EAAC,CAAK,OAAAC,EAAI,SAACC,EAAQC,EAAU,CAAK,OAAAP,EAAeG,EAAGG,EAAGF,EAAGG,CAAE,CAA1B,CAA2B,EAAEC,EAAUT,EAAQI,EAAGC,CAAC,CAAC,CAAC,CAAjF,EAAoFH,CAAU,GAC/G,OAAOD,GAAmB,WACnCC,EAAaD,GAGRS,EAAQ,SAACC,EAAQC,EAAU,CAAK,OAAAC,GAAeF,EAAQC,EAAYZ,EAASE,CAAU,CAAtD,CAAuD,EAChG,CChCM,SAAUY,GAAyCC,EAA6B,CAA7B,OAAAA,IAAA,SAAAA,EAAA,KAChDC,GAASC,GAAUF,CAAU,CACtC,CCNM,SAAUG,IAAS,CACvB,OAAOC,GAAS,CAAC,CACnB,CCmDM,SAAUC,IAAM,SAACC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EACrB,OAAOC,GAAS,EAAGC,GAAKH,EAAMI,GAAaJ,CAAI,CAAC,CAAC,CACnD,CC9DM,SAAUK,EAAsCC,EAA0B,CAC9E,OAAO,IAAIC,EAA+B,SAACC,EAAU,CACnDC,EAAUH,EAAiB,CAAE,EAAE,UAAUE,CAAU,CACrD,CAAC,CACH,CChDA,IAAME,GAA0B,CAAC,cAAe,gBAAgB,EAC1DC,GAAqB,CAAC,mBAAoB,qBAAqB,EAC/DC,GAAgB,CAAC,KAAM,KAAK,EAkO5B,SAAUC,EACdC,EACAC,EACAC,EACAC,EAAsC,CAMtC,GAJIC,EAAWF,CAAO,IACpBC,EAAiBD,EACjBA,EAAU,QAERC,EACF,OAAOJ,EAAaC,EAAQC,EAAWC,CAA+B,EAAE,KAAKG,GAAiBF,CAAc,CAAC,EAUzG,IAAAG,EAAAC,EAEJC,GAAcR,CAAM,EAChBH,GAAmB,IAAI,SAACY,EAAU,CAAK,OAAA,SAACC,EAAY,CAAK,OAAAV,EAAOS,CAAU,EAAER,EAAWS,EAASR,CAA+B,CAAtE,CAAlB,CAAyF,EAElIS,GAAwBX,CAAM,EAC5BJ,GAAwB,IAAIgB,GAAwBZ,EAAQC,CAAS,CAAC,EACtEY,GAA0Bb,CAAM,EAChCF,GAAc,IAAIc,GAAwBZ,EAAQC,CAAS,CAAC,EAC5D,CAAA,EAAE,CAAA,EATDa,EAAGR,EAAA,CAAA,EAAES,EAAMT,EAAA,CAAA,EAgBlB,GAAI,CAACQ,GACCE,GAAYhB,CAAM,EACpB,OAAOiB,GAAS,SAACC,EAAc,CAAK,OAAAnB,EAAUmB,EAAWjB,EAAWC,CAA+B,CAA/D,CAAgE,EAClGiB,EAAUnB,CAAM,CAAC,EAOvB,GAAI,CAACc,EACH,MAAM,IAAI,UAAU,sBAAsB,EAG5C,OAAO,IAAIM,EAAc,SAACC,EAAU,CAIlC,IAAMX,EAAU,UAAA,SAACY,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EAAmB,OAAAF,EAAW,KAAK,EAAIC,EAAK,OAASA,EAAOA,EAAK,CAAC,CAAC,CAAhD,EAEpC,OAAAR,EAAIJ,CAAO,EAEJ,UAAA,CAAM,OAAAK,EAAQL,CAAO,CAAf,CACf,CAAC,CACH,CASA,SAASE,GAAwBZ,EAAaC,EAAiB,CAC7D,OAAO,SAACQ,EAAkB,CAAK,OAAA,SAACC,EAAY,CAAK,OAAAV,EAAOS,CAAU,EAAER,EAAWS,CAAO,CAArC,CAAlB,CACjC,CAOA,SAASC,GAAwBX,EAAW,CAC1C,OAAOI,EAAWJ,EAAO,WAAW,GAAKI,EAAWJ,EAAO,cAAc,CAC3E,CAOA,SAASa,GAA0Bb,EAAW,CAC5C,OAAOI,EAAWJ,EAAO,EAAE,GAAKI,EAAWJ,EAAO,GAAG,CACvD,CAOA,SAASQ,GAAcR,EAAW,CAChC,OAAOI,EAAWJ,EAAO,gBAAgB,GAAKI,EAAWJ,EAAO,mBAAmB,CACrF,CCnMM,SAAUwB,GACdC,EACAC,EACAC,EAAsC,CAEtC,OAAIA,EACKH,GAAoBC,EAAYC,CAAa,EAAE,KAAKE,GAAiBD,CAAc,CAAC,EAGtF,IAAIE,EAAoB,SAACC,EAAU,CACxC,IAAMC,EAAU,UAAA,SAACC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EAAc,OAAAH,EAAW,KAAKE,EAAE,SAAW,EAAIA,EAAE,CAAC,EAAIA,CAAC,CAAzC,EACzBE,EAAWT,EAAWM,CAAO,EACnC,OAAOI,EAAWT,CAAa,EAAI,UAAA,CAAM,OAAAA,EAAcK,EAASG,CAAQ,CAA/B,EAAmC,MAC9E,CAAC,CACH,CCtBM,SAAUE,GACdC,EACAC,EACAC,EAAyC,CAFzCF,IAAA,SAAAA,EAAA,GAEAE,IAAA,SAAAA,EAAAC,IAIA,IAAIC,EAAmB,GAEvB,OAAIH,GAAuB,OAIrBI,GAAYJ,CAAmB,EACjCC,EAAYD,EAIZG,EAAmBH,GAIhB,IAAIK,EAAW,SAACC,EAAU,CAI/B,IAAIC,EAAMC,GAAYT,CAAO,EAAI,CAACA,EAAUE,EAAW,IAAG,EAAKF,EAE3DQ,EAAM,IAERA,EAAM,GAIR,IAAIE,EAAI,EAGR,OAAOR,EAAU,SAAS,UAAA,CACnBK,EAAW,SAEdA,EAAW,KAAKG,GAAG,EAEf,GAAKN,EAGP,KAAK,SAAS,OAAWA,CAAgB,EAGzCG,EAAW,SAAQ,EAGzB,EAAGC,CAAG,CACR,CAAC,CACH,CChGM,SAAUG,GAAK,SAACC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EACpB,IAAMC,EAAYC,GAAaH,CAAI,EAC7BI,EAAaC,GAAUL,EAAM,GAAQ,EACrCM,EAAUN,EAChB,OAAQM,EAAQ,OAGZA,EAAQ,SAAW,EAEnBC,EAAUD,EAAQ,CAAC,CAAC,EAEpBE,GAASJ,CAAU,EAAEK,GAAKH,EAASJ,CAAS,CAAC,EAL7CQ,CAMN,CCjEO,IAAMC,GAAQ,IAAIC,EAAkBC,EAAI,ECpCvC,IAAAC,GAAY,MAAK,QAMnB,SAAUC,GAAkBC,EAAiB,CACjD,OAAOA,EAAK,SAAW,GAAKF,GAAQE,EAAK,CAAC,CAAC,EAAIA,EAAK,CAAC,EAAKA,CAC5D,CCoDM,SAAUC,EAAUC,EAAiDC,EAAa,CACtF,OAAOC,EAAQ,SAACC,EAAQC,EAAU,CAEhC,IAAIC,EAAQ,EAIZF,EAAO,UAILG,EAAyBF,EAAY,SAACG,EAAK,CAAK,OAAAP,EAAU,KAAKC,EAASM,EAAOF,GAAO,GAAKD,EAAW,KAAKG,CAAK,CAAhE,CAAiE,CAAC,CAEtH,CAAC,CACH,CCxBM,SAAUC,IAAG,SAACC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EAClB,IAAMC,EAAiBC,GAAkBH,CAAI,EAEvCI,EAAUC,GAAeL,CAAI,EAEnC,OAAOI,EAAQ,OACX,IAAIE,EAAsB,SAACC,EAAU,CAGnC,IAAIC,EAAuBJ,EAAQ,IAAI,UAAA,CAAM,MAAA,CAAA,CAAA,CAAE,EAK3CK,EAAYL,EAAQ,IAAI,UAAA,CAAM,MAAA,EAAA,CAAK,EAGvCG,EAAW,IAAI,UAAA,CACbC,EAAUC,EAAY,IACxB,CAAC,EAKD,mBAASC,EAAW,CAClBC,EAAUP,EAAQM,CAAW,CAAC,EAAE,UAC9BE,EACEL,EACA,SAACM,EAAK,CAKJ,GAJAL,EAAQE,CAAW,EAAE,KAAKG,CAAK,EAI3BL,EAAQ,MAAM,SAACM,EAAM,CAAK,OAAAA,EAAO,MAAP,CAAa,EAAG,CAC5C,IAAMC,EAAcP,EAAQ,IAAI,SAACM,EAAM,CAAK,OAAAA,EAAO,MAAK,CAAZ,CAAe,EAE3DP,EAAW,KAAKL,EAAiBA,EAAc,MAAA,OAAAc,EAAA,CAAA,EAAAC,EAAIF,CAAM,CAAA,CAAA,EAAIA,CAAM,EAI/DP,EAAQ,KAAK,SAACM,EAAQI,EAAC,CAAK,MAAA,CAACJ,EAAO,QAAUL,EAAUS,CAAC,CAA7B,CAA8B,GAC5DX,EAAW,SAAQ,EAGzB,EACA,UAAA,CAGEE,EAAUC,CAAW,EAAI,GAIzB,CAACF,EAAQE,CAAW,EAAE,QAAUH,EAAW,SAAQ,CACrD,CAAC,CACF,GA9BIG,EAAc,EAAG,CAACH,EAAW,QAAUG,EAAcN,EAAQ,OAAQM,MAArEA,CAAW,EAmCpB,OAAO,UAAA,CACLF,EAAUC,EAAY,IACxB,CACF,CAAC,EACDU,CACN,CC9DM,SAAUC,GAASC,EAAoD,CAC3E,OAAOC,EAAQ,SAACC,EAAQC,EAAU,CAChC,IAAIC,EAAW,GACXC,EAAsB,KACtBC,EAA6C,KAC7CC,EAAa,GAEXC,EAAc,UAAA,CAGlB,GAFAF,GAAkB,MAAlBA,EAAoB,YAAW,EAC/BA,EAAqB,KACjBF,EAAU,CACZA,EAAW,GACX,IAAMK,EAAQJ,EACdA,EAAY,KACZF,EAAW,KAAKM,CAAK,EAEvBF,GAAcJ,EAAW,SAAQ,CACnC,EAEMO,EAAkB,UAAA,CACtBJ,EAAqB,KACrBC,GAAcJ,EAAW,SAAQ,CACnC,EAEAD,EAAO,UACLS,EACER,EACA,SAACM,EAAK,CACJL,EAAW,GACXC,EAAYI,EACPH,GACHM,EAAUZ,EAAiBS,CAAK,CAAC,EAAE,UAChCH,EAAqBK,EAAyBR,EAAYK,EAAaE,CAAe,CAAE,CAG/F,EACA,UAAA,CACEH,EAAa,IACZ,CAACH,GAAY,CAACE,GAAsBA,EAAmB,SAAWH,EAAW,SAAQ,CACxF,CAAC,CACF,CAEL,CAAC,CACH,CC3CM,SAAUU,GAAaC,EAAkBC,EAAyC,CAAzC,OAAAA,IAAA,SAAAA,EAAAC,IACtCC,GAAM,UAAA,CAAM,OAAAC,GAAMJ,EAAUC,CAAS,CAAzB,CAA0B,CAC/C,CCEM,SAAUI,GAAeC,EAAoBC,EAAsC,CAAtC,OAAAA,IAAA,SAAAA,EAAA,MAGjDA,EAAmBA,GAAgB,KAAhBA,EAAoBD,EAEhCE,EAAQ,SAACC,EAAQC,EAAU,CAChC,IAAIC,EAAiB,CAAA,EACjBC,EAAQ,EAEZH,EAAO,UACLI,EACEH,EACA,SAACI,EAAK,aACAC,EAAuB,KAKvBH,IAAUL,IAAsB,GAClCI,EAAQ,KAAK,CAAA,CAAE,MAIjB,QAAqBK,EAAAC,GAAAN,CAAO,EAAAO,EAAAF,EAAA,KAAA,EAAA,CAAAE,EAAA,KAAAA,EAAAF,EAAA,KAAA,EAAE,CAAzB,IAAMG,EAAMD,EAAA,MACfC,EAAO,KAAKL,CAAK,EAMbR,GAAca,EAAO,SACvBJ,EAASA,GAAM,KAANA,EAAU,CAAA,EACnBA,EAAO,KAAKI,CAAM,uGAItB,GAAIJ,MAIF,QAAqBK,EAAAH,GAAAF,CAAM,EAAAM,EAAAD,EAAA,KAAA,EAAA,CAAAC,EAAA,KAAAA,EAAAD,EAAA,KAAA,EAAE,CAAxB,IAAMD,EAAME,EAAA,MACfC,GAAUX,EAASQ,CAAM,EACzBT,EAAW,KAAKS,CAAM,sGAG5B,EACA,UAAA,aAGE,QAAqBI,EAAAN,GAAAN,CAAO,EAAAa,EAAAD,EAAA,KAAA,EAAA,CAAAC,EAAA,KAAAA,EAAAD,EAAA,KAAA,EAAE,CAAzB,IAAMJ,EAAMK,EAAA,MACfd,EAAW,KAAKS,CAAM,oGAExBT,EAAW,SAAQ,CACrB,EAEA,OACA,UAAA,CAEEC,EAAU,IACZ,CAAC,CACF,CAEL,CAAC,CACH,CCbM,SAAUc,GACdC,EAAgD,CAEhD,OAAOC,EAAQ,SAACC,EAAQC,EAAU,CAChC,IAAIC,EAAgC,KAChCC,EAAY,GACZC,EAEJF,EAAWF,EAAO,UAChBK,EAAyBJ,EAAY,OAAW,OAAW,SAACK,EAAG,CAC7DF,EAAgBG,EAAUT,EAASQ,EAAKT,GAAWC,CAAQ,EAAEE,CAAM,CAAC,CAAC,EACjEE,GACFA,EAAS,YAAW,EACpBA,EAAW,KACXE,EAAc,UAAUH,CAAU,GAIlCE,EAAY,EAEhB,CAAC,CAAC,EAGAA,IAMFD,EAAS,YAAW,EACpBA,EAAW,KACXE,EAAe,UAAUH,CAAU,EAEvC,CAAC,CACH,CC/HM,SAAUO,GACdC,EACAC,EACAC,EACAC,EACAC,EAAqC,CAErC,OAAO,SAACC,EAAuBC,EAA2B,CAIxD,IAAIC,EAAWL,EAIXM,EAAaP,EAEbQ,EAAQ,EAGZJ,EAAO,UACLK,EACEJ,EACA,SAACK,EAAK,CAEJ,IAAMC,EAAIH,IAEVD,EAAQD,EAEJP,EAAYQ,EAAOG,EAAOC,CAAC,GAIzBL,EAAW,GAAOI,GAGxBR,GAAcG,EAAW,KAAKE,CAAK,CACrC,EAGAJ,GACG,UAAA,CACCG,GAAYD,EAAW,KAAKE,CAAK,EACjCF,EAAW,SAAQ,CACrB,CAAE,CACL,CAEL,CACF,CCnCM,SAAUO,IAAa,SAAOC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EAClC,IAAMC,EAAiBC,GAAkBH,CAAI,EAC7C,OAAOE,EACHE,GAAKL,GAAa,MAAA,OAAAM,EAAA,CAAA,EAAAC,EAAKN,CAAoC,CAAA,CAAA,EAAGO,GAAiBL,CAAc,CAAC,EAC9FM,EAAQ,SAACC,EAAQC,EAAU,CACzBC,GAAiBN,EAAA,CAAEI,CAAM,EAAAH,EAAKM,GAAeZ,CAAI,CAAC,CAAA,CAAA,EAAGU,CAAU,CACjE,CAAC,CACP,CCUM,SAAUG,IAAiB,SAC/BC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EAEA,OAAOC,GAAa,MAAA,OAAAC,EAAA,CAAA,EAAAC,EAAIJ,CAAY,CAAA,CAAA,CACtC,CCkBM,SAAUK,GAAYC,EAAoD,CAC9E,OAAOC,EAAQ,SAACC,EAAQC,EAAU,CAChC,IAAIC,EAAW,GACXC,EAAsB,KAEtBC,EAA6C,KAE3CC,EAAO,UAAA,CAMX,GAFAD,GAAkB,MAAlBA,EAAoB,YAAW,EAC/BA,EAAqB,KACjBF,EAAU,CAEZA,EAAW,GACX,IAAMI,EAAQH,EACdA,EAAY,KACZF,EAAW,KAAKK,CAAK,EAEzB,EAEAN,EAAO,UACLO,EACEN,EACA,SAACK,EAAQ,CAIPF,GAAkB,MAAlBA,EAAoB,YAAW,EAC/BF,EAAW,GACXC,EAAYG,EAGZF,EAAqBG,EAAyBN,EAAYI,EAAMG,EAAI,EAEpEC,EAAUX,EAAiBQ,CAAK,CAAC,EAAE,UAAUF,CAAkB,CACjE,EACA,UAAA,CAGEC,EAAI,EACJJ,EAAW,SAAQ,CACrB,EAEA,OACA,UAAA,CAEEE,EAAYC,EAAqB,IACnC,CAAC,CACF,CAEL,CAAC,CACH,CCvDM,SAAUM,GAAgBC,EAAiBC,EAAyC,CAAzC,OAAAA,IAAA,SAAAA,EAAAC,IACxCC,EAAQ,SAACC,EAAQC,EAAU,CAChC,IAAIC,EAAkC,KAClCC,EAAsB,KACtBC,EAA0B,KAExBC,EAAO,UAAA,CACX,GAAIH,EAAY,CAEdA,EAAW,YAAW,EACtBA,EAAa,KACb,IAAMI,EAAQH,EACdA,EAAY,KACZF,EAAW,KAAKK,CAAK,EAEzB,EACA,SAASC,GAAY,CAInB,IAAMC,EAAaJ,EAAYR,EACzBa,EAAMZ,EAAU,IAAG,EACzB,GAAIY,EAAMD,EAAY,CAEpBN,EAAa,KAAK,SAAS,OAAWM,EAAaC,CAAG,EACtDR,EAAW,IAAIC,CAAU,EACzB,OAGFG,EAAI,CACN,CAEAL,EAAO,UACLU,EACET,EACA,SAACK,EAAQ,CACPH,EAAYG,EACZF,EAAWP,EAAU,IAAG,EAGnBK,IACHA,EAAaL,EAAU,SAASU,EAAcX,CAAO,EACrDK,EAAW,IAAIC,CAAU,EAE7B,EACA,UAAA,CAGEG,EAAI,EACJJ,EAAW,SAAQ,CACrB,EAEA,OACA,UAAA,CAEEE,EAAYD,EAAa,IAC3B,CAAC,CACF,CAEL,CAAC,CACH,CCpFM,SAAUS,GAAqBC,EAAe,CAClD,OAAOC,EAAQ,SAACC,EAAQC,EAAU,CAChC,IAAIC,EAAW,GACfF,EAAO,UACLG,EACEF,EACA,SAACG,EAAK,CACJF,EAAW,GACXD,EAAW,KAAKG,CAAK,CACvB,EACA,UAAA,CACOF,GACHD,EAAW,KAAKH,CAAa,EAE/BG,EAAW,SAAQ,CACrB,CAAC,CACF,CAEL,CAAC,CACH,CCXM,SAAUI,GAAQC,EAAa,CACnC,OAAOA,GAAS,EAEZ,UAAA,CAAM,OAAAC,CAAA,EACNC,EAAQ,SAACC,EAAQC,EAAU,CACzB,IAAIC,EAAO,EACXF,EAAO,UACLG,EAAyBF,EAAY,SAACG,EAAK,CAIrC,EAAEF,GAAQL,IACZI,EAAW,KAAKG,CAAK,EAIjBP,GAASK,GACXD,EAAW,SAAQ,EAGzB,CAAC,CAAC,CAEN,CAAC,CACP,CC9BM,SAAUI,GAAc,CAC5B,OAAOC,EAAQ,SAACC,EAAQC,EAAU,CAChCD,EAAO,UAAUE,EAAyBD,EAAYE,EAAI,CAAC,CAC7D,CAAC,CACH,CCCM,SAAUC,GAASC,EAAQ,CAC/B,OAAOC,EAAI,UAAA,CAAM,OAAAD,CAAA,CAAK,CACxB,CC4CM,SAAUE,GACdC,EACAC,EAAmC,CAEnC,OAAIA,EAEK,SAACC,EAAqB,CAC3B,OAAAC,GAAOF,EAAkB,KAAKG,GAAK,CAAC,EAAGC,EAAc,CAAE,EAAGH,EAAO,KAAKH,GAAUC,CAAqB,CAAC,CAAC,CAAvG,EAGGM,GAAS,SAACC,EAAOC,EAAK,CAAK,OAAAC,EAAUT,EAAsBO,EAAOC,CAAK,CAAC,EAAE,KAAKJ,GAAK,CAAC,EAAGM,GAAMH,CAAK,CAAC,CAAzE,CAA0E,CAC9G,CCzCM,SAAUI,GAASC,EAAoBC,EAAyC,CAAzCA,IAAA,SAAAA,EAAAC,IAC3C,IAAMC,EAAWC,GAAMJ,EAAKC,CAAS,EACrC,OAAOI,GAAU,UAAA,CAAM,OAAAF,CAAA,CAAQ,CACjC,CC0EM,SAAUG,EACdC,EACAC,EAA0D,CAA1D,OAAAA,IAAA,SAAAA,EAA+BC,IAK/BF,EAAaA,GAAU,KAAVA,EAAcG,GAEpBC,EAAQ,SAACC,EAAQC,EAAU,CAGhC,IAAIC,EAEAC,EAAQ,GAEZH,EAAO,UACLI,EAAyBH,EAAY,SAACI,EAAK,CAEzC,IAAMC,EAAaV,EAAYS,CAAK,GAKhCF,GAAS,CAACR,EAAYO,EAAaI,CAAU,KAM/CH,EAAQ,GACRD,EAAcI,EAGdL,EAAW,KAAKI,CAAK,EAEzB,CAAC,CAAC,CAEN,CAAC,CACH,CAEA,SAASP,GAAeS,EAAQC,EAAM,CACpC,OAAOD,IAAMC,CACf,CCjHM,SAAUC,GAA8CC,EAAQC,EAAuC,CAC3G,OAAOC,EAAqB,SAACC,EAAMC,EAAI,CAAK,OAAAH,EAAUA,EAAQE,EAAEH,CAAG,EAAGI,EAAEJ,CAAG,CAAC,EAAIG,EAAEH,CAAG,IAAMI,EAAEJ,CAAG,CAApD,CAAqD,CACnG,CC7BM,SAAUK,GAAgBC,EAA6C,CAA7C,OAAAA,IAAA,SAAAA,EAAAC,IACvBC,EAAQ,SAACC,EAAQC,EAAU,CAChC,IAAIC,EAAW,GACfF,EAAO,UACLG,EACEF,EACA,SAACG,EAAK,CACJF,EAAW,GACXD,EAAW,KAAKG,CAAK,CACvB,EACA,UAAA,CAAM,OAACF,EAAWD,EAAW,SAAQ,EAAKA,EAAW,MAAMJ,EAAY,CAAE,CAAnE,CAAqE,CAC5E,CAEL,CAAC,CACH,CAEA,SAASC,IAAmB,CAC1B,OAAO,IAAIO,EACb,CCMM,SAAUC,IAAO,SAAIC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EACzB,OAAO,SAACC,EAAqB,CAAK,OAAAC,GAAOD,EAAQE,EAAE,MAAA,OAAAC,EAAA,CAAA,EAAAC,EAAIN,CAAM,CAAA,CAAA,CAAA,CAA3B,CACpC,CCHM,SAAUO,EAAYC,EAAoB,CAC9C,OAAOC,EAAQ,SAACC,EAAQC,EAAU,CAGhC,GAAI,CACFD,EAAO,UAAUC,CAAU,UAE3BA,EAAW,IAAIH,CAAQ,EAE3B,CAAC,CACH,CCMM,SAAUI,GACdC,EACAC,EAAgB,CAEhB,IAAMC,EAAkB,UAAU,QAAU,EAC5C,OAAO,SAACC,EAAqB,CAC3B,OAAAA,EAAO,KACLH,EAAYI,EAAO,SAACC,EAAG,EAAC,CAAK,OAAAL,EAAUK,EAAG,EAAGF,CAAM,CAAtB,CAAuB,EAAIG,GACxDC,GAAK,CAAC,EACNL,EAAkBM,GAAeP,CAAa,EAAIQ,GAAa,UAAA,CAAM,OAAA,IAAIC,EAAJ,CAAgB,CAAC,CAHxF,CAKJ,CC/CM,SAAUC,GAAYC,EAAa,CACvC,OAAOA,GAAS,EACZ,UAAA,CAAM,OAAAC,CAAA,EACNC,EAAQ,SAACC,EAAQC,EAAU,CAKzB,IAAIC,EAAc,CAAA,EAClBF,EAAO,UACLG,EACEF,EACA,SAACG,EAAK,CAEJF,EAAO,KAAKE,CAAK,EAGjBP,EAAQK,EAAO,QAAUA,EAAO,MAAK,CACvC,EACA,UAAA,aAGE,QAAoBG,EAAAC,GAAAJ,CAAM,EAAAK,EAAAF,EAAA,KAAA,EAAA,CAAAE,EAAA,KAAAA,EAAAF,EAAA,KAAA,EAAE,CAAvB,IAAMD,EAAKG,EAAA,MACdN,EAAW,KAAKG,CAAK,oGAEvBH,EAAW,SAAQ,CACrB,EAEA,OACA,UAAA,CAEEC,EAAS,IACX,CAAC,CACF,CAEL,CAAC,CACP,CC1DM,SAAUM,IAAK,SAAIC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EACvB,IAAMC,EAAYC,GAAaH,CAAI,EAC7BI,EAAaC,GAAUL,EAAM,GAAQ,EAC3C,OAAAA,EAAOM,GAAeN,CAAI,EAEnBO,EAAQ,SAACC,EAAQC,EAAU,CAChCC,GAASN,CAAU,EAAEO,GAAIC,EAAA,CAAEJ,CAAM,EAAAK,EAAMb,CAA6B,CAAA,EAAGE,CAAS,CAAC,EAAE,UAAUO,CAAU,CACzG,CAAC,CACH,CCcM,SAAUK,IAAS,SACvBC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EAEA,OAAOC,GAAK,MAAA,OAAAC,EAAA,CAAA,EAAAC,EAAIJ,CAAY,CAAA,CAAA,CAC9B,CCmEM,SAAUK,GAAUC,EAAqC,OACzDC,EAAQ,IACRC,EAEJ,OAAIF,GAAiB,OACf,OAAOA,GAAkB,UACxBG,EAA4BH,EAAa,MAAzCC,EAAKE,IAAA,OAAG,IAAQA,EAAED,EAAUF,EAAa,OAE5CC,EAAQD,GAILC,GAAS,EACZ,UAAA,CAAM,OAAAG,CAAA,EACNC,EAAQ,SAACC,EAAQC,EAAU,CACzB,IAAIC,EAAQ,EACRC,EAEEC,EAAc,UAAA,CAGlB,GAFAD,GAAS,MAATA,EAAW,YAAW,EACtBA,EAAY,KACRP,GAAS,KAAM,CACjB,IAAMS,EAAW,OAAOT,GAAU,SAAWU,GAAMV,CAAK,EAAIW,EAAUX,EAAMM,CAAK,CAAC,EAC5EM,EAAqBC,EAAyBR,EAAY,UAAA,CAC9DO,EAAmB,YAAW,EAC9BE,EAAiB,CACnB,CAAC,EACDL,EAAS,UAAUG,CAAkB,OAErCE,EAAiB,CAErB,EAEMA,EAAoB,UAAA,CACxB,IAAIC,EAAY,GAChBR,EAAYH,EAAO,UACjBS,EAAyBR,EAAY,OAAW,UAAA,CAC1C,EAAEC,EAAQP,EACRQ,EACFC,EAAW,EAEXO,EAAY,GAGdV,EAAW,SAAQ,CAEvB,CAAC,CAAC,EAGAU,GACFP,EAAW,CAEf,EAEAM,EAAiB,CACnB,CAAC,CACP,CCpFM,SAAUE,GAAcC,EAA6DC,EAAQ,CAMjG,OAAOC,EAAQC,GAAcH,EAAaC,EAAW,UAAU,QAAU,EAAG,EAAI,CAAC,CACnF,CC+CM,SAAUG,GAASC,EAA4B,CAA5BA,IAAA,SAAAA,EAAA,CAAA,GACf,IAAAC,EAAgHD,EAAO,UAAvHE,EAASD,IAAA,OAAG,UAAA,CAAM,OAAA,IAAIE,CAAJ,EAAgBF,EAAEG,EAA4EJ,EAAO,aAAnFK,EAAYD,IAAA,OAAG,GAAIA,EAAEE,EAAuDN,EAAO,gBAA9DO,EAAeD,IAAA,OAAG,GAAIA,EAAEE,EAA+BR,EAAO,oBAAtCS,EAAmBD,IAAA,OAAG,GAAIA,EAUnH,OAAO,SAACE,EAAa,CACnB,IAAIC,EACAC,EACAC,EACAC,EAAW,EACXC,EAAe,GACfC,EAAa,GAEXC,EAAc,UAAA,CAClBL,GAAe,MAAfA,EAAiB,YAAW,EAC5BA,EAAkB,MACpB,EAGMM,GAAQ,UAAA,CACZD,EAAW,EACXN,EAAaE,EAAU,OACvBE,EAAeC,EAAa,EAC9B,EACMG,EAAsB,UAAA,CAG1B,IAAMC,EAAOT,EACbO,GAAK,EACLE,GAAI,MAAJA,EAAM,YAAW,CACnB,EAEA,OAAOC,EAAc,SAACC,EAAQC,GAAU,CACtCT,IACI,CAACE,GAAc,CAACD,GAClBE,EAAW,EAOb,IAAMO,GAAQX,EAAUA,GAAO,KAAPA,EAAWX,EAAS,EAO5CqB,GAAW,IAAI,UAAA,CACbT,IAKIA,IAAa,GAAK,CAACE,GAAc,CAACD,IACpCH,EAAkBa,GAAYN,EAAqBV,CAAmB,EAE1E,CAAC,EAIDe,GAAK,UAAUD,EAAU,EAGvB,CAACZ,GAIDG,EAAW,IAOXH,EAAa,IAAIe,GAAe,CAC9B,KAAM,SAACC,GAAK,CAAK,OAAAH,GAAK,KAAKG,EAAK,CAAf,EACjB,MAAO,SAACC,GAAG,CACTZ,EAAa,GACbC,EAAW,EACXL,EAAkBa,GAAYP,GAAOb,EAAcuB,EAAG,EACtDJ,GAAK,MAAMI,EAAG,CAChB,EACA,SAAU,UAAA,CACRb,EAAe,GACfE,EAAW,EACXL,EAAkBa,GAAYP,GAAOX,CAAe,EACpDiB,GAAK,SAAQ,CACf,EACD,EACDK,EAAUP,CAAM,EAAE,UAAUX,CAAU,EAE1C,CAAC,EAAED,CAAa,CAClB,CACF,CAEA,SAASe,GACPP,EACAY,EAAoD,SACpDC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,EAAA,CAAA,EAAA,UAAAA,CAAA,EAEA,GAAIF,IAAO,GAAM,CACfZ,EAAK,EACL,OAGF,GAAIY,IAAO,GAIX,KAAMG,EAAe,IAAIP,GAAe,CACtC,KAAM,UAAA,CACJO,EAAa,YAAW,EACxBf,EAAK,CACP,EACD,EAED,OAAOW,EAAUC,EAAE,MAAA,OAAAI,EAAA,CAAA,EAAAC,EAAIJ,CAAI,CAAA,CAAA,CAAA,EAAG,UAAUE,CAAY,EACtD,CChHM,SAAUG,EACdC,EACAC,EACAC,EAAyB,WAErBC,EACAC,EAAW,GACf,OAAIJ,GAAsB,OAAOA,GAAuB,UACnDK,EAA8EL,EAAkB,WAAhGG,EAAUE,IAAA,OAAG,IAAQA,EAAEC,EAAuDN,EAAkB,WAAzEC,EAAUK,IAAA,OAAG,IAAQA,EAAEC,EAAgCP,EAAkB,SAAlDI,EAAQG,IAAA,OAAG,GAAKA,EAAEL,EAAcF,EAAkB,WAEnGG,EAAcH,GAAkB,KAAlBA,EAAsB,IAE/BQ,GAAS,CACd,UAAW,UAAA,CAAM,OAAA,IAAIC,GAAcN,EAAYF,EAAYC,CAAS,CAAnD,EACjB,aAAc,GACd,gBAAiB,GACjB,oBAAqBE,EACtB,CACH,CCxIM,SAAUM,GAAQC,EAAa,CACnC,OAAOC,EAAO,SAACC,EAAGC,EAAK,CAAK,OAAAH,GAASG,CAAT,CAAc,CAC5C,CCaM,SAAUC,GAAaC,EAA8B,CACzD,OAAOC,EAAQ,SAACC,EAAQC,EAAU,CAChC,IAAIC,EAAS,GAEPC,EAAiBC,EACrBH,EACA,UAAA,CACEE,GAAc,MAAdA,EAAgB,YAAW,EAC3BD,EAAS,EACX,EACAG,EAAI,EAGNC,EAAUR,CAAQ,EAAE,UAAUK,CAAc,EAE5CH,EAAO,UAAUI,EAAyBH,EAAY,SAACM,EAAK,CAAK,OAAAL,GAAUD,EAAW,KAAKM,CAAK,CAA/B,CAAgC,CAAC,CACpG,CAAC,CACH,CCVM,SAAUC,GAAS,SAAOC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EAC9B,IAAMC,EAAYC,GAAaH,CAAM,EACrC,OAAOI,EAAQ,SAACC,EAAQC,EAAU,EAI/BJ,EAAYK,GAAOP,EAAQK,EAAQH,CAAS,EAAIK,GAAOP,EAAQK,CAAM,GAAG,UAAUC,CAAU,CAC/F,CAAC,CACH,CCmBM,SAAUE,EACdC,EACAC,EAA6G,CAE7G,OAAOC,EAAQ,SAACC,EAAQC,EAAU,CAChC,IAAIC,EAAyD,KACzDC,EAAQ,EAERC,EAAa,GAIXC,EAAgB,UAAA,CAAM,OAAAD,GAAc,CAACF,GAAmBD,EAAW,SAAQ,CAArD,EAE5BD,EAAO,UACLM,EACEL,EACA,SAACM,EAAK,CAEJL,GAAe,MAAfA,EAAiB,YAAW,EAC5B,IAAIM,EAAa,EACXC,EAAaN,IAEnBO,EAAUb,EAAQU,EAAOE,CAAU,CAAC,EAAE,UACnCP,EAAkBI,EACjBL,EAIA,SAACU,EAAU,CAAK,OAAAV,EAAW,KAAKH,EAAiBA,EAAeS,EAAOI,EAAYF,EAAYD,GAAY,EAAIG,CAAU,CAAzG,EAChB,UAAA,CAIET,EAAkB,KAClBG,EAAa,CACf,CAAC,CACD,CAEN,EACA,UAAA,CACED,EAAa,GACbC,EAAa,CACf,CAAC,CACF,CAEL,CAAC,CACH,CCvFM,SAAUO,EAAaC,EAA8B,CACzD,OAAOC,EAAQ,SAACC,EAAQC,EAAU,CAChCC,EAAUJ,CAAQ,EAAE,UAAUK,EAAyBF,EAAY,UAAA,CAAM,OAAAA,EAAW,SAAQ,CAAnB,EAAuBG,EAAI,CAAC,EACrG,CAACH,EAAW,QAAUD,EAAO,UAAUC,CAAU,CACnD,CAAC,CACH,CCIM,SAAUI,GAAaC,EAAiDC,EAAiB,CAAjB,OAAAA,IAAA,SAAAA,EAAA,IACrEC,EAAQ,SAACC,EAAQC,EAAU,CAChC,IAAIC,EAAQ,EACZF,EAAO,UACLG,EAAyBF,EAAY,SAACG,EAAK,CACzC,IAAMC,EAASR,EAAUO,EAAOF,GAAO,GACtCG,GAAUP,IAAcG,EAAW,KAAKG,CAAK,EAC9C,CAACC,GAAUJ,EAAW,SAAQ,CAChC,CAAC,CAAC,CAEN,CAAC,CACH,CCqGM,SAAUK,EACdC,EACAC,EACAC,EAA8B,CAK9B,IAAMC,EACJC,EAAWJ,CAAc,GAAKC,GAASC,EAElC,CAAE,KAAMF,EAA2E,MAAKC,EAAE,SAAQC,CAAA,EACnGF,EAEN,OAAOG,EACHE,EAAQ,SAACC,EAAQC,EAAU,QACzBC,EAAAL,EAAY,aAAS,MAAAK,IAAA,QAAAA,EAAA,KAArBL,CAAW,EACX,IAAIM,EAAU,GACdH,EAAO,UACLI,EACEH,EACA,SAACI,EAAK,QACJH,EAAAL,EAAY,QAAI,MAAAK,IAAA,QAAAA,EAAA,KAAhBL,EAAmBQ,CAAK,EACxBJ,EAAW,KAAKI,CAAK,CACvB,EACA,UAAA,OACEF,EAAU,IACVD,EAAAL,EAAY,YAAQ,MAAAK,IAAA,QAAAA,EAAA,KAApBL,CAAW,EACXI,EAAW,SAAQ,CACrB,EACA,SAACK,EAAG,OACFH,EAAU,IACVD,EAAAL,EAAY,SAAK,MAAAK,IAAA,QAAAA,EAAA,KAAjBL,EAAoBS,CAAG,EACvBL,EAAW,MAAMK,CAAG,CACtB,EACA,UAAA,SACMH,KACFD,EAAAL,EAAY,eAAW,MAAAK,IAAA,QAAAA,EAAA,KAAvBL,CAAW,IAEbU,EAAAV,EAAY,YAAQ,MAAAU,IAAA,QAAAA,EAAA,KAApBV,CAAW,CACb,CAAC,CACF,CAEL,CAAC,EAIDW,EACN,CCnIM,SAAUC,GAAYC,EAAsDC,EAAuB,CACvG,OAAOC,EAAQ,SAACC,EAAQC,EAAU,CAC1B,IAAAC,EAAuCJ,GAAM,KAANA,EAAU,CAAA,EAA/CK,EAAAD,EAAA,QAAAE,EAAOD,IAAA,OAAG,GAAIA,EAAEE,EAAAH,EAAA,SAAAI,EAAQD,IAAA,OAAG,GAAKA,EACpCE,EAAW,GACXC,EAAsB,KACtBC,EAAiC,KACjCC,EAAa,GAEXC,EAAgB,UAAA,CACpBF,GAAS,MAATA,EAAW,YAAW,EACtBA,EAAY,KACRH,IACFM,EAAI,EACJF,GAAcT,EAAW,SAAQ,EAErC,EAEMY,EAAoB,UAAA,CACxBJ,EAAY,KACZC,GAAcT,EAAW,SAAQ,CACnC,EAEMa,EAAgB,SAACC,GAAQ,CAC7B,OAACN,EAAYO,EAAUnB,EAAiBkB,EAAK,CAAC,EAAE,UAAUE,EAAyBhB,EAAYU,EAAeE,CAAiB,CAAC,CAAhI,EAEID,EAAO,UAAA,CACX,GAAIL,EAAU,CAIZA,EAAW,GACX,IAAMQ,GAAQP,EACdA,EAAY,KAEZP,EAAW,KAAKc,EAAK,EACrB,CAACL,GAAcI,EAAcC,EAAK,EAEtC,EAEAf,EAAO,UACLiB,EACEhB,EAMA,SAACc,GAAK,CACJR,EAAW,GACXC,EAAYO,GACZ,EAAEN,GAAa,CAACA,EAAU,UAAYL,EAAUQ,EAAI,EAAKE,EAAcC,EAAK,EAC9E,EACA,UAAA,CACEL,EAAa,GACb,EAAEJ,GAAYC,GAAYE,GAAa,CAACA,EAAU,SAAWR,EAAW,SAAQ,CAClF,CAAC,CACF,CAEL,CAAC,CACH,CCxFM,SAAUiB,GACdC,EACAC,EACAC,EAAuB,CADvBD,IAAA,SAAAA,EAAAE,IAGA,IAAMC,EAAYC,GAAML,EAAUC,CAAS,EAC3C,OAAOK,GAAS,UAAA,CAAM,OAAAF,CAAA,EAAWF,CAAM,CACzC,CCJM,SAAUK,IAAc,SAAOC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EACnC,IAAMC,EAAUC,GAAkBH,CAAM,EAExC,OAAOI,EAAQ,SAACC,EAAQC,EAAU,CAehC,QAdMC,EAAMP,EAAO,OACbQ,EAAc,IAAI,MAAMD,CAAG,EAI7BE,EAAWT,EAAO,IAAI,UAAA,CAAM,MAAA,EAAA,CAAK,EAGjCU,EAAQ,cAMHC,EAAC,CACRC,EAAUZ,EAAOW,CAAC,CAAC,EAAE,UACnBE,EACEP,EACA,SAACQ,EAAK,CACJN,EAAYG,CAAC,EAAIG,EACb,CAACJ,GAAS,CAACD,EAASE,CAAC,IAEvBF,EAASE,CAAC,EAAI,IAKbD,EAAQD,EAAS,MAAMM,EAAQ,KAAON,EAAW,MAEtD,EAGAO,EAAI,CACL,GAnBIL,EAAI,EAAGA,EAAIJ,EAAKI,MAAhBA,CAAC,EAwBVN,EAAO,UACLQ,EAAyBP,EAAY,SAACQ,EAAK,CACzC,GAAIJ,EAAO,CAET,IAAMO,EAAMC,EAAA,CAAIJ,CAAK,EAAAK,EAAKX,CAAW,CAAA,EACrCF,EAAW,KAAKJ,EAAUA,EAAO,MAAA,OAAAgB,EAAA,CAAA,EAAAC,EAAIF,CAAM,CAAA,CAAA,EAAIA,CAAM,EAEzD,CAAC,CAAC,CAEN,CAAC,CACH,CCxFM,SAAUG,IAAG,SAAOC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EACxB,OAAOC,EAAQ,SAACC,EAAQC,EAAU,CAChCL,GAAS,MAAA,OAAAM,EAAA,CAACF,CAA8B,EAAAG,EAAMN,CAAuC,CAAA,CAAA,EAAE,UAAUI,CAAU,CAC7G,CAAC,CACH,CCCM,SAAUG,IAAO,SAAkCC,EAAA,CAAA,EAAAC,EAAA,EAAAA,EAAA,UAAA,OAAAA,IAAAD,EAAAC,CAAA,EAAA,UAAAA,CAAA,EACvD,OAAOC,GAAG,MAAA,OAAAC,EAAA,CAAA,EAAAC,EAAIJ,CAAW,CAAA,CAAA,CAC3B,CCYO,SAASK,IAAmC,CACjD,IAAMC,EAAY,IAAIC,GAAwB,CAAC,EAC/C,OAAAC,EAAU,SAAU,mBAAoB,CAAE,KAAM,EAAK,CAAC,EACnD,UAAU,IAAMF,EAAU,KAAK,QAAQ,CAAC,EAGpCA,CACT,CCHO,SAASG,EACdC,EAAkBC,EAAmB,SAChC,CACL,OAAO,MAAM,KAAKA,EAAK,iBAAoBD,CAAQ,CAAC,CACtD,CAuBO,SAASE,EACdF,EAAkBC,EAAmB,SAClC,CACH,IAAME,EAAKC,GAAsBJ,EAAUC,CAAI,EAC/C,GAAI,OAAOE,GAAO,YAChB,MAAM,IAAI,eACR,8BAA8BH,CAAQ,iBACxC,EAGF,OAAOG,CACT,CAsBO,SAASC,GACdJ,EAAkBC,EAAmB,SACtB,CACf,OAAOA,EAAK,cAAiBD,CAAQ,GAAK,MAC5C,CAOO,SAASK,IAA4C,CAnH5D,IAAAC,EAAAC,EAAAC,EAAAC,EAoHE,OACEA,GAAAD,GAAAD,GAAAD,EAAA,SAAS,gBAAT,YAAAA,EAAwB,aAAxB,YAAAC,EAAoC,gBAApC,KAAAC,EACA,SAAS,gBADT,KAAAC,EAEA,MAEJ,CCvEA,IAAMC,GAAYC,EAChBC,EAAU,SAAS,KAAM,SAAS,EAClCA,EAAU,SAAS,KAAM,UAAU,CACrC,EACG,KACCC,GAAa,CAAC,EACdC,EAAU,MAAS,EACnBC,EAAI,IAAMC,GAAiB,GAAK,SAAS,IAAI,EAC7CC,EAAY,CAAC,CACf,EAaK,SAASC,GACdC,EACqB,CACrB,OAAOT,GACJ,KACCK,EAAIK,GAAUD,EAAG,SAASC,CAAM,CAAC,EACjCC,EAAqB,CACvB,CACJ,CC7BO,SAASC,GACdC,EAAiBC,EACI,CACrB,OAAOC,EAAM,IAAMC,EACjBC,EAAUJ,EAAI,YAAY,EAAE,KAAKK,EAAI,IAAM,EAAI,CAAC,EAChDD,EAAUJ,EAAI,YAAY,EAAE,KAAKK,EAAI,IAAM,EAAK,CAAC,CACnD,EACG,KACCJ,EAAUK,GAASC,GAAUC,GAAM,CAAC,CAACD,EAASN,CAAO,CAAC,EAAIQ,GAC1DC,EAAUV,EAAG,QAAQ,QAAQ,CAAC,CAChC,CACF,CACF,CCPA,SAASW,GAAYC,EAAiBC,EAA8B,CAGlE,GAAI,OAAOA,GAAU,UAAY,OAAOA,GAAU,SAChDD,EAAG,WAAaC,EAAM,SAAS,UAGtBA,aAAiB,KAC1BD,EAAG,YAAYC,CAAK,UAGX,MAAM,QAAQA,CAAK,EAC5B,QAAWC,KAAQD,EACjBF,GAAYC,EAAIE,CAAI,CAE1B,CAyBO,SAASC,EACdC,EAAaC,KAAmCC,EAC7C,CACH,IAAMN,EAAK,SAAS,cAAcI,CAAG,EAGrC,GAAIC,EACF,QAAWE,KAAQ,OAAO,KAAKF,CAAU,EACnC,OAAOA,EAAWE,CAAI,GAAM,cAI5B,OAAOF,EAAWE,CAAI,GAAM,UAC9BP,EAAG,aAAaO,EAAMF,EAAWE,CAAI,CAAC,EAEtCP,EAAG,aAAaO,EAAM,EAAE,GAI9B,QAAWN,KAASK,EAClBP,GAAYC,EAAIC,CAAK,EAGvB,OAAOD,CACT,CC9EO,SAASQ,GAAMC,EAAuB,CAC3C,GAAIA,EAAQ,IAAK,CACf,IAAMC,EAAS,GAAGD,EAAQ,KAAO,IAAO,IACxC,MAAO,KAAKA,EAAQ,MAAY,KAAM,QAAQC,CAAM,CAAC,GACvD,KACE,QAAOD,EAAM,SAAS,CAE1B,CCCO,SAASE,GAAYC,EAA+B,CACzD,IAAMC,EAASC,EAAE,SAAU,CAAE,IAAAF,CAAI,CAAC,EAClC,OAAOG,EAAM,KACX,SAAS,KAAK,YAAYF,CAAM,EACzBG,EACLC,EAAUJ,EAAQ,MAAM,EACxBI,EAAUJ,EAAQ,OAAO,EACtB,KACCK,EAAU,IACRC,GAAW,IAAM,IAAI,eAAe,mBAAmBP,CAAG,EAAE,CAAC,CAC9D,CACH,CACJ,EACG,KACCQ,EAAI,IAAG,EAAY,EACnBC,EAAS,IAAM,SAAS,KAAK,YAAYR,CAAM,CAAC,EAChDS,GAAK,CAAC,CACR,EACH,CACH,CCVA,IAAMC,GAAS,IAAIC,EAiBbC,GAAYC,EAAM,IACtB,OAAO,gBAAmB,YACtBC,GAAY,4CAA4C,EACxDC,EAAG,MAAS,CACjB,EACE,KACCC,EAAI,IAAM,IAAI,eAAeC,GAC3BA,EAAQ,QAAQC,GAASR,GAAO,KAAKQ,CAAK,CAAC,CAC5C,CAAC,EACFC,EAAUC,GAAYC,EAAMC,GAAOP,EAAGK,CAAQ,CAAC,EAAE,KAC/CG,EAAS,IAAMH,EAAS,WAAW,CAAC,CACtC,CAAC,EACDI,EAAY,CAAC,CACf,EAaK,SAASC,GACdC,EACa,CACb,MAAO,CACL,MAAQA,EAAG,YACX,OAAQA,EAAG,YACb,CACF,CAuBO,SAASC,GACdD,EACyB,CAMzB,IAAIE,EAASF,EACb,KAAOE,EAAO,cAAgB,GACxBA,EAAO,eACTA,EAASA,EAAO,cAMpB,OAAOhB,GAAU,KACfiB,EAAIT,GAAYA,EAAS,QAAQQ,CAAM,CAAC,EACxCT,EAAUC,GAAYV,GAAO,KAC3BoB,EAAOZ,GAASA,EAAM,SAAWU,CAAM,EACvCL,EAAS,IAAMH,EAAS,UAAUQ,CAAM,CAAC,CAC3C,CAAC,EACDZ,EAAI,IAAMS,GAAeC,CAAE,CAAC,EAC5BK,EAAUN,GAAeC,CAAE,CAAC,CAC9B,CACF,CC3HO,SAASM,GACdC,EACa,CACb,MAAO,CACL,MAAQA,EAAG,YACX,OAAQA,EAAG,YACb,CACF,CASO,SAASC,GACdD,EACyB,CACzB,IAAIE,EAASF,EAAG,cAChB,KAAOE,IAEHF,EAAG,aAAgBE,EAAO,aAC1BF,EAAG,cAAgBE,EAAO,eAE1BA,GAAUF,EAAKE,GAAQ,cAK3B,OAAOA,EAASF,EAAK,MACvB,CAYO,SAASG,GACdH,EACe,CACf,IAAMI,EAA4B,CAAC,EAG/BF,EAASF,EAAG,cAChB,KAAOE,IAEHF,EAAG,YAAeE,EAAO,aACzBF,EAAG,aAAeE,EAAO,eAEzBE,EAAW,KAAKF,CAAM,EAGxBA,GAAUF,EAAKE,GAAQ,cAKzB,OAAIE,EAAW,SAAW,GACxBA,EAAW,KAAK,SAAS,eAAe,EAGnCA,CACT,CC9CO,SAASC,GACdC,EACe,CACf,MAAO,CACL,EAAGA,EAAG,WACN,EAAGA,EAAG,SACR,CACF,CASO,SAASC,GACdD,EACe,CACf,IAAME,EAAOF,EAAG,sBAAsB,EACtC,MAAO,CACL,EAAGE,EAAK,EAAI,OAAO,QACnB,EAAGA,EAAK,EAAI,OAAO,OACrB,CACF,CAWO,SAASC,GACdH,EAC2B,CAC3B,OAAOI,EACLC,EAAU,OAAQ,MAAM,EACxBA,EAAU,OAAQ,QAAQ,CAC5B,EACG,KACCC,GAAU,EAAGC,EAAuB,EACpCC,EAAI,IAAMT,GAAiBC,CAAE,CAAC,EAC9BS,EAAUV,GAAiBC,CAAE,CAAC,CAChC,CACJ,CC3DO,SAASU,GACdC,EACe,CACf,MAAO,CACL,EAAGA,EAAG,WACN,EAAGA,EAAG,SACR,CACF,CAWO,SAASC,GACdD,EAC2B,CAC3B,OAAOE,EACLC,EAAUH,EAAI,QAAQ,EACtBG,EAAU,OAAQ,QAAQ,EAC1BA,EAAU,OAAQ,QAAQ,CAC5B,EACG,KACCC,GAAU,EAAGC,EAAuB,EACpCC,EAAI,IAAMP,GAAwBC,CAAE,CAAC,EACrCO,EAAUR,GAAwBC,CAAE,CAAC,CACvC,CACJ,CCzBA,IAAMQ,GAAS,IAAIC,EAUbC,GAAYC,EAAM,IAAMC,EAC5B,IAAI,qBAAqBC,GAAW,CAClC,QAAWC,KAASD,EAClBL,GAAO,KAAKM,CAAK,CACrB,EAAG,CACD,UAAW,CACb,CAAC,CACH,CAAC,EACE,KACCC,EAAUC,GAAYC,EAAMC,GAAON,EAAGI,CAAQ,CAAC,EAC5C,KACCG,EAAS,IAAMH,EAAS,WAAW,CAAC,CACtC,CACF,EACAI,EAAY,CAAC,CACf,EAaK,SAASC,GACdC,EACqB,CACrB,OAAOZ,GACJ,KACCa,EAAIP,GAAYA,EAAS,QAAQM,CAAE,CAAC,EACpCP,EAAUC,GAAYR,GACnB,KACCgB,EAAO,CAAC,CAAE,OAAAC,CAAO,IAAMA,IAAWH,CAAE,EACpCH,EAAS,IAAMH,EAAS,UAAUM,CAAE,CAAC,EACrCI,EAAI,CAAC,CAAE,eAAAC,CAAe,IAAMA,CAAc,CAC5C,CACF,CACF,CACJ,CAaO,SAASC,GACdN,EAAiBO,EAAY,GACR,CACrB,OAAOC,GAA0BR,CAAE,EAChC,KACCI,EAAI,CAAC,CAAE,EAAAK,CAAE,IAAM,CACb,IAAMC,EAAUC,GAAeX,CAAE,EAC3BY,EAAUC,GAAsBb,CAAE,EACxC,OAAOS,GACLG,EAAQ,OAASF,EAAQ,OAASH,CAEtC,CAAC,EACDO,EAAqB,CACvB,CACJ,CCjFA,IAAMC,GAA4C,CAChD,OAAQC,EAAW,yBAAyB,EAC5C,OAAQA,EAAW,yBAAyB,CAC9C,EAaO,SAASC,GAAUC,EAAuB,CAC/C,OAAOH,GAAQG,CAAI,EAAE,OACvB,CAaO,SAASC,GAAUD,EAAcE,EAAsB,CACxDL,GAAQG,CAAI,EAAE,UAAYE,GAC5BL,GAAQG,CAAI,EAAE,MAAM,CACxB,CAWO,SAASG,GAAYH,EAAmC,CAC7D,IAAMI,EAAKP,GAAQG,CAAI,EACvB,OAAOK,EAAUD,EAAI,QAAQ,EAC1B,KACCE,EAAI,IAAMF,EAAG,OAAO,EACpBG,EAAUH,EAAG,OAAO,CACtB,CACJ,CC9BA,SAASI,GACPC,EAAiBC,EACR,CACT,OAAQD,EAAG,YAAa,CAGtB,KAAK,iBAEH,OAAIA,EAAG,OAAS,QACP,SAAS,KAAKC,CAAI,EAElB,GAGX,KAAK,kBACL,KAAK,oBACH,MAAO,GAGT,QACE,OAAOD,EAAG,iBACd,CACF,CAWO,SAASE,IAAwC,CACtD,OAAOC,EACLC,EAAU,OAAQ,kBAAkB,EAAE,KAAKC,EAAI,IAAM,EAAI,CAAC,EAC1DD,EAAU,OAAQ,gBAAgB,EAAE,KAAKC,EAAI,IAAM,EAAK,CAAC,CAC3D,EACG,KACCC,EAAU,EAAK,CACjB,CACJ,CAOO,SAASC,IAAsC,CACpD,IAAMC,EAAYJ,EAAyB,OAAQ,SAAS,EACzD,KACCK,EAAOC,GAAM,EAAEA,EAAG,SAAWA,EAAG,QAAQ,EACxCL,EAAIK,IAAO,CACT,KAAMC,GAAU,QAAQ,EAAI,SAAW,SACvC,KAAMD,EAAG,IACT,OAAQ,CACNA,EAAG,eAAe,EAClBA,EAAG,gBAAgB,CACrB,CACF,EAAc,EACdD,EAAO,CAAC,CAAE,KAAAG,EAAM,KAAAX,CAAK,IAAM,CACzB,GAAIW,IAAS,SAAU,CACrB,IAAMC,EAASC,GAAiB,EAChC,GAAI,OAAOD,GAAW,YACpB,MAAO,CAACd,GAAwBc,EAAQZ,CAAI,CAChD,CACA,MAAO,EACT,CAAC,EACDc,GAAM,CACR,EAGF,OAAOb,GAAiB,EACrB,KACCc,EAAUH,GAAWA,EAAqBI,EAAZT,CAAiB,CACjD,CACJ,CC1GO,SAASU,IAAmB,CACjC,OAAO,IAAI,IAAI,SAAS,IAAI,CAC9B,CAgBO,SAASC,GACdC,EAA4BC,EAAW,GACjC,CACN,GAAIC,EAAQ,oBAAoB,GAAK,CAACD,EAAU,CAC9C,IAAME,EAAKC,EAAE,IAAK,CAAE,KAAMJ,EAAI,IAAK,CAAC,EACpC,SAAS,KAAK,YAAYG,CAAE,EAC5BA,EAAG,MAAM,EACTA,EAAG,OAAO,CAIZ,MACE,SAAS,KAAOH,EAAI,IAExB,CASO,SAASK,IAA8B,CAC5C,OAAO,IAAIC,CACb,CCxCO,SAASC,IAA0B,CACxC,OAAO,SAAS,KAAK,MAAM,CAAC,CAC9B,CAYO,SAASC,GAAgBC,EAAoB,CAClD,IAAMC,EAAKC,EAAE,IAAK,CAAE,KAAMF,CAAK,CAAC,EAChCC,EAAG,iBAAiB,QAASE,GAAMA,EAAG,gBAAgB,CAAC,EACvDF,EAAG,MAAM,CACX,CAWO,SAASG,GACdC,EACoB,CACpB,OAAOC,EACLC,EAA2B,OAAQ,YAAY,EAC/CF,CACF,EACG,KACCG,EAAIV,EAAe,EACnBW,EAAUX,GAAgB,CAAC,EAC3BY,EAAOV,GAAQA,EAAK,OAAS,CAAC,EAC9BW,EAAY,CAAC,CACf,CACJ,CASO,SAASC,GACdP,EACyB,CACzB,OAAOD,GAAkBC,CAAS,EAC/B,KACCG,EAAIK,GAAMC,GAAmB,QAAQD,CAAE,IAAI,CAAE,EAC7CH,EAAOT,GAAM,OAAOA,GAAO,WAAW,CACxC,CACJ,CCtDO,SAASc,GAAWC,EAAoC,CAC7D,IAAMC,EAAQ,WAAWD,CAAK,EAC9B,OAAOE,GAA0BC,GAC/BF,EAAM,YAAY,IAAME,EAAKF,EAAM,OAAO,CAAC,CAC5C,EACE,KACCG,EAAUH,EAAM,OAAO,CACzB,CACJ,CAOO,SAASI,IAAkC,CAChD,IAAMJ,EAAQ,WAAW,OAAO,EAChC,OAAOK,EACLC,EAAU,OAAQ,aAAa,EAAE,KAAKC,EAAI,IAAM,EAAI,CAAC,EACrDD,EAAU,OAAQ,YAAY,EAAE,KAAKC,EAAI,IAAM,EAAK,CAAC,CACvD,EACG,KACCJ,EAAUH,EAAM,OAAO,CACzB,CACJ,CAcO,SAASQ,GACdC,EAA6BC,EACd,CACf,OAAOD,EACJ,KACCE,EAAUC,GAAUA,EAASF,EAAQ,EAAIG,CAAK,CAChD,CACJ,CC/BO,SAASC,GACdC,EAAmBC,EACD,CAClB,OAAO,IAAIC,EAAiBC,GAAY,CACtC,IAAMC,EAAM,IAAI,eAChB,OAAAA,EAAI,KAAK,MAAO,GAAGJ,CAAG,EAAE,EACxBI,EAAI,aAAe,OAGnBA,EAAI,iBAAiB,OAAQ,IAAM,CAC7BA,EAAI,QAAU,KAAOA,EAAI,OAAS,KACpCD,EAAS,KAAKC,EAAI,QAAQ,EAC1BD,EAAS,SAAS,GAIlBA,EAAS,MAAM,IAAI,MAAMC,EAAI,UAAU,CAAC,CAE5C,CAAC,EAGDA,EAAI,iBAAiB,QAAS,IAAM,CAClCD,EAAS,MAAM,IAAI,MAAM,eAAe,CAAC,CAC3C,CAAC,EAGDC,EAAI,iBAAiB,QAAS,IAAM,CAClCD,EAAS,SAAS,CACpB,CAAC,EAGG,OAAOF,GAAA,YAAAA,EAAS,YAAc,cAChCG,EAAI,iBAAiB,WAAYC,GAAS,CA/FhD,IAAAC,EAgGQ,GAAID,EAAM,iBACRJ,EAAQ,UAAW,KAAMI,EAAM,OAASA,EAAM,MAAS,GAAG,MAIrD,CACL,IAAME,GAASD,EAAAF,EAAI,kBAAkB,gBAAgB,IAAtC,KAAAE,EAA2C,EAC1DL,EAAQ,UAAW,KAAMI,EAAM,OAAS,CAACE,EAAU,GAAG,CACxD,CACF,CAAC,EAGDN,EAAQ,UAAU,KAAK,CAAC,GAI1BG,EAAI,KAAK,EACF,IAAMA,EAAI,MAAM,CACzB,CAAC,CACH,CAcO,SAASI,GACdR,EAAmBC,EACJ,CACf,OAAOF,GAAQC,EAAKC,CAAO,EACxB,KACCQ,EAAUC,GAAOA,EAAI,KAAK,CAAC,EAC3BC,EAAIC,GAAQ,KAAK,MAAMA,CAAI,CAAM,EACjCC,EAAY,CAAC,CACf,CACJ,CAUO,SAASC,GACdd,EAAmBC,EACG,CACtB,IAAMc,EAAM,IAAI,UAChB,OAAOhB,GAAQC,EAAKC,CAAO,EACxB,KACCQ,EAAUC,GAAOA,EAAI,KAAK,CAAC,EAC3BC,EAAID,GAAOK,EAAI,gBAAgBL,EAAK,WAAW,CAAC,EAChDG,EAAY,CAAC,CACf,CACJ,CAUO,SAASG,GACdhB,EAAmBC,EACG,CACtB,IAAMc,EAAM,IAAI,UAChB,OAAOhB,GAAQC,EAAKC,CAAO,EACxB,KACCQ,EAAUC,GAAOA,EAAI,KAAK,CAAC,EAC3BC,EAAID,GAAOK,EAAI,gBAAgBL,EAAK,UAAU,CAAC,EAC/CG,EAAY,CAAC,CACf,CACJ,CC5HO,SAASI,IAAoC,CAClD,MAAO,CACL,EAAG,KAAK,IAAI,EAAG,OAAO,EACtB,EAAG,KAAK,IAAI,EAAG,OAAO,CACxB,CACF,CASO,SAASC,IAAkD,CAChE,OAAOC,EACLC,EAAU,OAAQ,SAAU,CAAE,QAAS,EAAK,CAAC,EAC7CA,EAAU,OAAQ,SAAU,CAAE,QAAS,EAAK,CAAC,CAC/C,EACG,KACCC,EAAIJ,EAAiB,EACrBK,EAAUL,GAAkB,CAAC,CAC/B,CACJ,CC3BO,SAASM,IAAgC,CAC9C,MAAO,CACL,MAAQ,WACR,OAAQ,WACV,CACF,CASO,SAASC,IAA8C,CAC5D,OAAOC,EAAU,OAAQ,SAAU,CAAE,QAAS,EAAK,CAAC,EACjD,KACCC,EAAIH,EAAe,EACnBI,EAAUJ,GAAgB,CAAC,CAC7B,CACJ,CCXO,SAASK,IAAsC,CACpD,OAAOC,EAAc,CACnBC,GAAoB,EACpBC,GAAkB,CACpB,CAAC,EACE,KACCC,EAAI,CAAC,CAACC,EAAQC,CAAI,KAAO,CAAE,OAAAD,EAAQ,KAAAC,CAAK,EAAE,EAC1CC,EAAY,CAAC,CACf,CACJ,CCVO,SAASC,GACdC,EAAiB,CAAE,UAAAC,EAAW,QAAAC,CAAQ,EAChB,CACtB,IAAMC,EAAQF,EACX,KACCG,GAAwB,MAAM,CAChC,EAGIC,EAAUC,EAAc,CAACH,EAAOD,CAAO,CAAC,EAC3C,KACCK,EAAI,IAAMC,GAAiBR,CAAE,CAAC,CAChC,EAGF,OAAOM,EAAc,CAACJ,EAASD,EAAWI,CAAO,CAAC,EAC/C,KACCE,EAAI,CAAC,CAAC,CAAE,OAAAE,CAAO,EAAG,CAAE,OAAAC,EAAQ,KAAAC,CAAK,EAAG,CAAE,EAAAC,EAAG,EAAAC,CAAE,CAAC,KAAO,CACjD,OAAQ,CACN,EAAGH,EAAO,EAAIE,EACd,EAAGF,EAAO,EAAIG,EAAIJ,CACpB,EACA,KAAAE,CACF,EAAE,CACJ,CACJ,CCzBA,SAASG,GAAQC,EAA+B,CAC9C,OAAOC,EAA8BD,EAAQ,UAAWE,GAAMA,EAAG,IAAI,CACvE,CAWA,SAASC,GAAQH,EAA4B,CAC3C,IAAMI,EAAQ,IAAIC,EAClB,OAAAD,EAAM,UAAUE,GAAQN,EAAO,YAAYM,CAAI,CAAC,EAGzCF,CACT,CAgBO,SAASG,GACdC,EAAaR,EAAS,IAAI,OAAOQ,CAAG,EACxB,CACZ,IAAMC,EAAQV,GAAQC,CAAM,EACtBI,EAAQD,GAAQH,CAAM,EAGtBU,EAAU,IAAIL,EACpBK,EAAQ,UAAUN,CAAK,EAGvB,IAAMO,EAAQP,EAAM,KAAKQ,EAAe,EAAGC,GAAQ,EAAI,CAAC,EACxD,OAAOH,EACJ,KACCE,EAAe,EACfE,GAAUL,EAAM,KAAKM,EAAUJ,CAAK,CAAC,CAAC,EACtCK,GAAM,CACR,CACJ,CCJA,IAAMC,GAASC,EAAW,WAAW,EAC/BC,GAAiB,KAAK,MAAMF,GAAO,WAAY,EACrDE,GAAO,KAAO,GAAG,IAAI,IAAIA,GAAO,KAAMC,GAAY,CAAC,CAAC,GAW7C,SAASC,IAAwB,CACtC,OAAOF,EACT,CASO,SAASG,EAAQC,EAAqB,CAC3C,OAAOJ,GAAO,SAAS,SAASI,CAAI,CACtC,CAUO,SAASC,GACdC,EAAkBC,EACV,CACR,OAAO,OAAOA,GAAU,YACpBP,GAAO,aAAaM,CAAG,EAAE,QAAQ,IAAKC,EAAM,SAAS,CAAC,EACtDP,GAAO,aAAaM,CAAG,CAC7B,CChCO,SAASE,GACdC,EAASC,EAAmB,SACP,CACrB,OAAOC,EAAW,sBAAsBF,CAAI,IAAKC,CAAI,CACvD,CAYO,SAASE,GACdH,EAASC,EAAmB,SACL,CACvB,OAAOG,EAAY,sBAAsBJ,CAAI,IAAKC,CAAI,CACxD,CC7EO,SAASI,GACdC,EACsB,CACtB,IAAMC,EAASC,EAAW,6BAA8BF,CAAE,EAC1D,OAAOG,EAAUF,EAAQ,QAAS,CAAE,KAAM,EAAK,CAAC,EAC7C,KACCG,EAAI,IAAMF,EAAW,cAAeF,CAAE,CAAC,EACvCI,EAAIC,IAAY,CAAE,KAAM,UAAUA,EAAQ,SAAS,CAAE,EAAE,CACzD,CACJ,CASO,SAASC,GACdN,EACiC,CACjC,GAAI,CAACO,EAAQ,kBAAkB,GAAK,CAACP,EAAG,kBACtC,OAAOQ,EAGT,GAAI,CAACR,EAAG,OAAQ,CACd,IAAMK,EAAUH,EAAW,cAAeF,CAAE,EACxC,UAAUK,EAAQ,SAAS,IAAM,SAAS,YAAY,IACxDL,EAAG,OAAS,GAChB,CAGA,OAAOS,EAAM,IAAM,CACjB,IAAMC,EAAQ,IAAIC,EAClB,OAAAD,EAAM,UAAU,CAAC,CAAE,KAAAE,CAAK,IAAM,CAC5BZ,EAAG,OAAS,GAGZ,SAAiB,aAAcY,CAAI,CACrC,CAAC,EAGMb,GAAcC,CAAE,EACpB,KACCa,EAAIC,GAASJ,EAAM,KAAKI,CAAK,CAAC,EAC9BC,EAAS,IAAML,EAAM,SAAS,CAAC,EAC/BN,EAAIU,GAAUE,EAAA,CAAE,IAAKhB,GAAOc,EAAQ,CACtC,CACJ,CAAC,CACH,CC5BO,SAASG,GACdC,EAAiB,CAAE,QAAAC,CAAQ,EACN,CACrB,OAAOA,EACJ,KACCC,EAAIC,IAAW,CAAE,OAAQA,IAAWH,CAAG,EAAE,CAC3C,CACJ,CAYO,SAASI,GACdJ,EAAiBK,EACe,CAChC,IAAMC,EAAY,IAAIC,EACtB,OAAAD,EAAU,UAAU,CAAC,CAAE,OAAAE,CAAO,IAAM,CAClCR,EAAG,OAASQ,CACd,CAAC,EAGMT,GAAaC,EAAIK,CAAO,EAC5B,KACCI,EAAIC,GAASJ,EAAU,KAAKI,CAAK,CAAC,EAClCC,EAAS,IAAML,EAAU,SAAS,CAAC,EACnCJ,EAAIQ,GAAUE,EAAA,CAAE,IAAKZ,GAAOU,EAAQ,CACtC,CACJ,CCnEO,SAASG,GACdC,EAAaC,EACA,CACb,OAAIA,IAAU,SAEVC,EAAC,OAAI,MAAM,gCAAgC,GAAIF,EAAI,KAAK,WACtDE,EAAC,OAAI,MAAM,+BAA+B,CAC5C,EAIAA,EAAC,OAAI,MAAM,aAAa,GAAIF,EAAI,KAAK,WACnCE,EAAC,OAAI,MAAM,+BAA+B,CAC5C,CAGN,CAGO,SAASC,MACXC,EACU,CACb,OACEF,EAAC,OAAI,MAAM,cAAc,KAAK,WAC5BA,EAAC,OAAI,MAAM,iCACRE,CACH,CACF,CAEJ,CCvCO,SAASC,GACdC,EAAqBC,EACR,CAIb,GAHAA,EAASA,EAAS,GAAGA,CAAM,eAAeD,CAAE,GAAK,OAG7CC,EAAQ,CACV,IAAMC,EAASD,EAAS,IAAIA,CAAM,GAAK,OACvC,OACEE,EAAC,SAAM,MAAM,gBAAgB,SAAU,GACpCC,GAAcH,CAAM,EACrBE,EAAC,KAAE,KAAMD,EAAQ,MAAM,uBAAuB,SAAU,IACtDC,EAAC,QAAK,wBAAuBH,EAAI,CACnC,CACF,CAEJ,KACE,QACEG,EAAC,SAAM,MAAM,gBAAgB,SAAU,GACpCC,GAAcH,CAAM,EACrBE,EAAC,QAAK,MAAM,uBAAuB,SAAU,IAC3CA,EAAC,QAAK,wBAAuBH,EAAI,CACnC,CACF,CAGN,CC5BO,SAASK,GAAsBC,EAAyB,CAC7D,OACEC,EAAC,UACC,MAAM,uBACN,MAAOC,GAAY,gBAAgB,EACnC,wBAAuB,IAAIF,CAAE,UAC9B,CAEL,CCtBA,IAAAG,GAAuB,SA+BvB,SAASC,GACPC,EAAsBC,EACT,CACb,IAAMC,EAASD,EAAO,EAChBE,EAASF,EAAO,EAGhBG,EAAU,OAAO,KAAKJ,EAAS,KAAK,EACvC,OAAOK,GAAO,CAACL,EAAS,MAAMK,CAAG,CAAC,EAClC,OAAyB,CAACC,EAAMD,IAAQ,CACvC,GAAGC,EAAMC,EAAC,cAAK,GAAAC,SAAWH,CAAG,CAAE,EAAQ,GACzC,EAAG,CAAC,CAAC,EACJ,MAAM,EAAG,EAAE,EAGRI,EAASC,GAAc,EACvBC,EAAM,IAAI,IAAIX,EAAS,SAAUS,EAAO,IAAI,EAC9CG,EAAQ,kBAAkB,GAC5BD,EAAI,aAAa,IAAI,IAAK,OAAO,QAAQX,EAAS,KAAK,EACpD,OAAO,CAAC,CAAC,CAAEa,CAAK,IAAMA,CAAK,EAC3B,OAAO,CAACC,EAAW,CAACC,CAAK,IAAM,GAAGD,CAAS,IAAIC,CAAK,GAAG,KAAK,EAAG,EAAE,CACpE,EAGF,GAAM,CAAE,KAAAC,CAAK,EAAIN,GAAc,EAC/B,OACEH,EAAC,KAAE,KAAM,GAAGI,CAAG,GAAI,MAAM,yBAAyB,SAAU,IAC1DJ,EAAC,WACC,MAAM,uCACN,gBAAeP,EAAS,MAAM,QAAQ,CAAC,GAEtCE,EAAS,GAAKK,EAAC,OAAI,MAAM,iCAAiC,EAC1DL,EAAS,GAAKK,EAAC,UAAIP,EAAS,KAAM,EAClCE,GAAU,GAAKK,EAAC,UAAIP,EAAS,KAAM,EACnCG,EAAS,GAAKH,EAAS,KAAK,OAAS,GACpCA,EAAS,KAEVA,EAAS,MACRO,EAAC,OAAI,MAAM,WACRP,EAAS,KAAK,IAAIiB,GAAO,CACxB,IAAMC,EAAOF,EACTC,KAAOD,EACL,uBAAuBA,EAAKC,CAAG,CAAC,GAChC,cACF,GACJ,OACEV,EAAC,QAAK,MAAO,UAAUW,CAAI,IAAKD,CAAI,CAExC,CAAC,CACH,EAEDd,EAAS,GAAKC,EAAQ,OAAS,GAC9BG,EAAC,KAAE,MAAM,2BACNY,GAAY,4BAA4B,EAAE,KAAG,GAAGf,CACnD,CAEJ,CACF,CAEJ,CAaO,SAASgB,GACdC,EACa,CACb,IAAMC,EAAYD,EAAO,CAAC,EAAE,MACtBE,EAAO,CAAC,GAAGF,CAAM,EAEjBZ,EAASC,GAAc,EAGvBR,EAASqB,EAAK,UAAUC,GAErB,CADG,GAAG,IAAI,IAAIA,EAAI,SAAUf,EAAO,IAAI,CAAC,GACrC,SAAS,GAAG,CACvB,EACK,CAACgB,CAAO,EAAIF,EAAK,OAAOrB,EAAQ,CAAC,EAGnCwB,EAAQH,EAAK,UAAUC,GAAOA,EAAI,MAAQF,CAAS,EACnDI,IAAU,KACZA,EAAQH,EAAK,QAGf,IAAMI,EAAOJ,EAAK,MAAM,EAAGG,CAAK,EAC1BE,EAAOL,EAAK,MAAMG,CAAK,EAGvBG,EAAW,CACf9B,GAAqB0B,EAAS,EAAc,EAAE,CAACvB,GAAUwB,IAAU,EAAE,EACrE,GAAGC,EAAK,IAAIG,GAAW/B,GAAqB+B,EAAS,CAAW,CAAC,EACjE,GAAGF,EAAK,OAAS,CACfrB,EAAC,WAAQ,MAAM,0BACbA,EAAC,WAAQ,SAAU,IACjBA,EAAC,WACEqB,EAAK,OAAS,GAAKA,EAAK,SAAW,EAChCT,GAAY,wBAAwB,EACpCA,GAAY,2BAA4BS,EAAK,MAAM,CAEzD,CACF,EACC,GAAGA,EAAK,IAAIE,GAAW/B,GAAqB+B,EAAS,CAAW,CAAC,CACpE,CACF,EAAI,CAAC,CACP,EAGA,OACEvB,EAAC,MAAG,MAAM,0BACPsB,CACH,CAEJ,CC1IO,SAASE,GAAkBC,EAAiC,CACjE,OACEC,EAAC,MAAG,MAAM,oBACP,OAAO,QAAQD,CAAK,EAAE,IAAI,CAAC,CAACE,EAAKC,CAAK,IACrCF,EAAC,MAAG,MAAO,oCAAoCC,CAAG,IAC/C,OAAOC,GAAU,SAAWC,GAAMD,CAAK,EAAIA,CAC9C,CACD,CACH,CAEJ,CCAO,SAASE,GACdC,EACa,CACb,IAAMC,EAAU,kCAAkCD,CAAI,GACtD,OACEE,EAAC,OAAI,MAAOD,EAAS,OAAM,IACzBC,EAAC,UAAO,MAAM,gBAAgB,SAAU,GAAI,cAAY,OAAO,CACjE,CAEJ,CCpBO,SAASC,GAAYC,EAAiC,CAC3D,OACEC,EAAC,OAAI,MAAM,0BACTA,EAAC,OAAI,MAAM,qBACRD,CACH,CACF,CAEJ,CCcA,SAASE,GAAcC,EAA+B,CAzDtD,IAAAC,EA0DE,IAAMC,EAASC,GAAc,EAGvBC,EAAM,IAAI,IAAI,MAAMJ,EAAQ,OAAO,IAAKE,EAAO,IAAI,EACzD,OACEG,EAAC,MAAG,MAAM,oBACRA,EAAC,KAAE,KAAM,GAAGD,CAAG,GAAI,MAAM,oBACtBJ,EAAQ,QACRC,EAAAC,EAAO,UAAP,YAAAD,EAAgB,QAASD,EAAQ,QAAQ,OAAS,GACjDK,EAAC,QAAK,MAAM,qBACTL,EAAQ,QAAQ,CAAC,CACpB,CAEJ,CACF,CAEJ,CAcO,SAASM,GACdC,EAAqBC,EACR,CA1Ff,IAAAP,EA2FE,IAAMC,EAASC,GAAc,EAC7B,OAAAI,EAAWA,EAAS,OAAOP,GAAQ,CA5FrC,IAAAC,EA4FwC,SAACA,EAAAD,EAAQ,aAAR,MAAAC,EAAoB,QAAM,EAE/DI,EAAC,OAAI,MAAM,cACTA,EAAC,UACC,MAAM,sBACN,aAAYI,GAAY,gBAAgB,GAEvCD,EAAO,QACPP,EAAAC,EAAO,UAAP,YAAAD,EAAgB,QAASO,EAAO,QAAQ,OAAS,GAChDH,EAAC,QAAK,MAAM,qBACTG,EAAO,QAAQ,CAAC,CACnB,CAEJ,EACAH,EAAC,MAAG,MAAM,oBACPE,EAAS,IAAIR,EAAa,CAC7B,CACF,CAEJ,CCdA,IAAIW,GAAW,EAkBR,SAASC,GACdC,EACqB,CAMrB,IAAMC,EACJC,EAAc,CACZC,GAAkBH,CAAE,EACpBI,GAAkBJ,CAAE,CACtB,CAAC,EACE,KACCK,EAAI,CAAC,CAACC,EAAOC,CAAK,IAAMD,GAASC,CAAK,EACtCC,EAAqB,CACvB,EAMEC,EACJC,EAAM,IAAMC,GAAqBX,CAAE,CAAC,EAAE,KACpCY,GAASC,EAAyB,EAClCC,GAAa,CAAC,EAKdC,GAAkBd,CAAO,EACzBI,EAAI,IAAMW,GAAyBhB,CAAE,CAAC,CACxC,EAMF,OAAOC,EAAQ,KACbgB,GAAMC,GAAUA,CAAM,EACtBC,EAAU,IAAMjB,EAAc,CAACD,EAASQ,CAAO,CAAC,CAAC,EACjDJ,EAAI,CAAC,CAACa,EAAQE,CAAM,KAAO,CAAE,OAAAF,EAAQ,OAAAE,CAAO,EAAE,EAC9CC,GAAM,CACR,CACF,CAoBO,SAASC,GACdtB,EAAiBuB,EACe,CAChC,GAAM,CAAE,SAAAC,EAAU,UAAAC,CAAU,EAAIF,EAI1BG,EAAK,cAAc5B,IAAU,GAGnC,OAAOY,EAAM,IAAM,CACjB,IAAMiB,EAAQ,IAAIC,EAMZC,EAAQ,IAAIC,GAAgB,EAAK,EACvCH,EAAM,KAAKI,EAAe,EAAGC,GAAQ,EAAK,CAAC,EACxC,UAAUH,CAAK,EAUlB,IAAMI,EAAQJ,EAAM,KAClBK,GAAShB,GAAUiB,GAAM,CAAC,CAACjB,EAAS,IAAKkB,EAAc,CAAC,EACxD5B,EAAqB,EACrBW,EAAUD,GAAUA,EAASM,EAAWa,CAAK,EAC7CC,EAAIC,GAAQA,EAAK,GAAKb,CAAE,EACxBL,GAAM,CACR,EAIAnB,EAAc,CACZyB,EAAM,KAAKtB,EAAI,CAAC,CAAE,OAAAa,CAAO,IAAMA,CAAM,CAAC,EACtCe,EAAM,KACJd,EAAUoB,GAAQnC,GAAkBmC,EAAM,GAAG,CAAC,EAC9CC,EAAU,EAAK,CACjB,CACF,CAAC,EACE,KAAKnC,EAAIoC,GAAUA,EAAO,KAAKvB,GAAUA,CAAM,CAAC,CAAC,EACjD,UAAUW,CAAK,EAMlB,IAAMa,EAAUb,EAAM,KACpBc,EAAOzB,GAAUA,CAAM,EACvB0B,GAAeX,EAAOR,CAAS,EAC/BpB,EAAI,CAAC,CAACwC,EAAGN,EAAM,CAAE,KAAAO,CAAK,CAAC,IAAM,CAC3B,IAAMC,EAAO/C,EAAG,sBAAsB,EAChCgD,EAAID,EAAK,MAAQ,EAIvB,GAAIR,EAAK,OAAS,UAChB,MAAO,CAAE,EAAAS,EAAG,EAAG,EAAID,EAAK,MAAO,EAI1B,GAAIA,EAAK,GAAKD,EAAK,OAAS,EAAG,CACpC,GAAM,CAAE,OAAAG,CAAO,EAAIC,GAAeX,CAAI,EACtC,MAAO,CAAE,EAAAS,EAAG,EAAG,IAAMC,CAAO,CAC9B,KACE,OAAO,CAAE,EAAAD,EAAG,EAAG,GAAMD,EAAK,MAAO,CAErC,CAAC,CACH,EAIA,OAAA7C,EAAc,CAAC+B,EAAON,EAAOe,CAAO,CAAC,EAClC,UAAU,CAAC,CAACH,EAAM,CAAE,OAAAnB,CAAO,EAAG+B,CAAM,IAAM,CACzCZ,EAAK,MAAM,YAAY,sBAAuB,GAAGnB,EAAO,CAAC,IAAI,EAC7DmB,EAAK,MAAM,YAAY,sBAAuB,GAAGnB,EAAO,CAAC,IAAI,EAI7DmB,EAAK,MAAM,YAAY,iBAAkB,GAAGY,EAAO,CAAC,IAAI,EACxDZ,EAAK,MAAM,YAAY,iBAAkB,GAAGY,EAAO,CAAC,IAAI,EAIxDZ,EAAK,UAAU,OAAO,mBAAuBY,EAAO,EAAK,CAAC,EAC1DZ,EAAK,UAAU,OAAO,sBAAuBY,EAAO,GAAK,CAAC,CAC5D,CAAC,EAIHtB,EAAM,KACJc,EAAOzB,GAAUA,CAAM,EACvB0B,GAAeX,EAAO,CAACY,EAAGN,IAASA,CAAI,EACvCI,EAAOJ,GAAQA,EAAK,OAAS,SAAS,CACxC,EACG,UAAUA,GAAQ,CACjB,IAAMO,EAAOI,GAAeE,EAAW,aAAcb,CAAI,CAAC,EAI1DA,EAAK,MAAM,YAAY,qBAAsB,GAAGO,EAAK,KAAK,IAAI,EAC9DP,EAAK,MAAM,YAAY,oBAAsB,KAAQ,CACvD,CAAC,EAMHV,EAAM,KACJrB,EAAqB,EACrB6C,GAAUC,EAAuB,EACjCV,GAAeX,CAAK,CACtB,EACG,UAAU,CAAC,CAACf,EAAQqB,CAAI,IAAM,CAC7BA,EAAK,UAAU,OAAO,sBAAuBrB,CAAM,CACrD,CAAC,EAGHhB,EAAc,CACZ2B,EAAM,KAAKc,EAAOzB,GAAUA,CAAM,CAAC,EACnCe,CACF,CAAC,EACE,UAAU,CAAC,CAACY,EAAGN,CAAI,IAAM,CACpBA,EAAK,OAAS,UAChBvC,EAAG,aAAa,gBAAiB0B,CAAE,EACnC1B,EAAG,aAAa,gBAAiB,QAAQ,GAEzCA,EAAG,aAAa,mBAAoB0B,CAAE,CAE1C,CAAC,EAGHG,EAAM,KAAKc,EAAOzB,GAAU,CAACA,CAAM,CAAC,EACjC,UAAU,IAAM,CACflB,EAAG,gBAAgB,eAAe,EAClCA,EAAG,gBAAgB,kBAAkB,EACrCA,EAAG,gBAAgB,eAAe,CACpC,CAAC,EAGID,GAAcC,CAAE,EACpB,KACCsC,EAAIiB,GAAS5B,EAAM,KAAK4B,CAAK,CAAC,EAC9BC,EAAS,IAAM7B,EAAM,SAAS,CAAC,EAC/BtB,EAAIkD,GAAUE,EAAA,CAAE,IAAKzD,GAAOuD,EAAQ,CACtC,CACJ,CAAC,CACH,CAeO,SAASG,GACd1D,EAAiB,CAAE,UAAAyB,CAAU,EAC7BkC,EAAY,SAAS,KACW,CAChC,OAAOrC,GAActB,EAAI,CACvB,SAAU,IAAI4D,EAAwBC,GAAY,CAChD,IAAMC,EAAQ9D,EAAG,MACXuC,EAAOwB,GAAqBD,CAAK,EACvC,OAAAD,EAAS,KAAKtB,CAAI,EAClBvC,EAAG,gBAAgB,OAAO,EAE1B2D,EAAU,OAAOpB,CAAI,EACd,IAAM,CACXA,EAAK,OAAO,EACZvC,EAAG,aAAa,QAAS8D,CAAK,CAChC,CACF,CAAC,EACD,UAAArC,CACF,CAAC,CACH,CCjRO,SAASuC,GACdC,EAAiBC,EACO,CACxB,IAAMC,EAAUC,EAAM,IAAMC,EAAc,CACxCC,GAAmBL,CAAE,EACrBM,GAA0BL,CAAS,CACrC,CAAC,CAAC,EACC,KACCM,EAAI,CAAC,CAAC,CAAE,EAAAC,EAAG,EAAAC,CAAE,EAAGC,CAAM,IAAqB,CACzC,GAAM,CAAE,MAAAC,EAAO,OAAAC,CAAO,EAAIC,GAAeb,CAAE,EAC3C,MAAQ,CACN,EAAGQ,EAAIE,EAAO,EAAIC,EAAS,EAC3B,EAAGF,EAAIC,EAAO,EAAIE,EAAS,CAC7B,CACF,CAAC,CACH,EAGF,OAAOE,GAAkBd,CAAE,EACxB,KACCe,EAAUC,GAAUd,EACjB,KACCK,EAAIU,IAAW,CAAE,OAAAD,EAAQ,OAAAC,CAAO,EAAE,EAClCC,GAAK,CAAC,CAACF,GAAU,GAAQ,CAC3B,CACF,CACF,CACJ,CAWO,SAASG,GACdnB,EAAiBC,EAAwB,CAAE,QAAAmB,CAAQ,EAChB,CACnC,GAAM,CAACC,EAASC,CAAK,EAAI,MAAM,KAAKtB,EAAG,QAAQ,EAG/C,OAAOG,EAAM,IAAM,CACjB,IAAMoB,EAAQ,IAAIC,EACZC,EAAQF,EAAM,KAAKG,EAAe,EAAGC,GAAQ,EAAI,CAAC,EACxD,OAAAJ,EAAM,UAAU,CAGd,KAAK,CAAE,OAAAN,CAAO,EAAG,CACfjB,EAAG,MAAM,YAAY,iBAAkB,GAAGiB,EAAO,CAAC,IAAI,EACtDjB,EAAG,MAAM,YAAY,iBAAkB,GAAGiB,EAAO,CAAC,IAAI,CACxD,EAGA,UAAW,CACTjB,EAAG,MAAM,eAAe,gBAAgB,EACxCA,EAAG,MAAM,eAAe,gBAAgB,CAC1C,CACF,CAAC,EAGD4B,GAAuB5B,CAAE,EACtB,KACC6B,EAAUJ,CAAK,CACjB,EACG,UAAUK,GAAW,CACpB9B,EAAG,gBAAgB,kBAAmB8B,CAAO,CAC/C,CAAC,EAGLC,EACER,EAAM,KAAKS,EAAO,CAAC,CAAE,OAAAhB,CAAO,IAAMA,CAAM,CAAC,EACzCO,EAAM,KAAKU,GAAa,GAAG,EAAGD,EAAO,CAAC,CAAE,OAAAhB,CAAO,IAAM,CAACA,CAAM,CAAC,CAC/D,EACG,UAAU,CAGT,KAAK,CAAE,OAAAA,CAAO,EAAG,CACXA,EACFhB,EAAG,QAAQqB,CAAO,EAElBA,EAAQ,OAAO,CACnB,EAGA,UAAW,CACTrB,EAAG,QAAQqB,CAAO,CACpB,CACF,CAAC,EAGHE,EACG,KACCW,GAAU,GAAIC,EAAuB,CACvC,EACG,UAAU,CAAC,CAAE,OAAAnB,CAAO,IAAM,CACzBK,EAAQ,UAAU,OAAO,qBAAsBL,CAAM,CACvD,CAAC,EAGLO,EACG,KACCa,GAAa,IAAKD,EAAuB,EACzCH,EAAO,IAAM,CAAC,CAAChC,EAAG,YAAY,EAC9BO,EAAI,IAAMP,EAAG,aAAc,sBAAsB,CAAC,EAClDO,EAAI,CAAC,CAAE,EAAAC,CAAE,IAAMA,CAAC,CAClB,EACG,UAAU,CAGT,KAAK6B,EAAQ,CACPA,EACFrC,EAAG,MAAM,YAAY,iBAAkB,GAAG,CAACqC,CAAM,IAAI,EAErDrC,EAAG,MAAM,eAAe,gBAAgB,CAC5C,EAGA,UAAW,CACTA,EAAG,MAAM,eAAe,gBAAgB,CAC1C,CACF,CAAC,EAGLsC,EAAsBhB,EAAO,OAAO,EACjC,KACCO,EAAUJ,CAAK,EACfO,EAAOO,GAAM,EAAEA,EAAG,SAAWA,EAAG,QAAQ,CAC1C,EACG,UAAUA,GAAM,CACfA,EAAG,gBAAgB,EACnBA,EAAG,eAAe,CACpB,CAAC,EAGLD,EAAsBhB,EAAO,WAAW,EACrC,KACCO,EAAUJ,CAAK,EACfe,GAAejB,CAAK,CACtB,EACG,UAAU,CAAC,CAACgB,EAAI,CAAE,OAAAvB,CAAO,CAAC,IAAM,CA3OzC,IAAAyB,EA8OU,GAAIF,EAAG,SAAW,GAAKA,EAAG,SAAWA,EAAG,QACtCA,EAAG,eAAe,UAGTvB,EAAQ,CACjBuB,EAAG,eAAe,EAGlB,IAAMG,EAAS1C,EAAG,cAAe,QAAQ,gBAAgB,EACrD0C,aAAkB,YACpBA,EAAO,MAAM,GAEbD,EAAAE,GAAiB,IAAjB,MAAAF,EAAoB,MACxB,CACF,CAAC,EAGLrB,EACG,KACCS,EAAUJ,CAAK,EACfO,EAAOY,GAAUA,IAAWvB,CAAO,EACnCwB,GAAM,GAAG,CACX,EACG,UAAU,IAAM7C,EAAG,MAAM,CAAC,EAGxBD,GAAgBC,EAAIC,CAAS,EACjC,KACC6C,EAAIC,GAASxB,EAAM,KAAKwB,CAAK,CAAC,EAC9BC,EAAS,IAAMzB,EAAM,SAAS,CAAC,EAC/BhB,EAAIwC,GAAUE,EAAA,CAAE,IAAKjD,GAAO+C,EAAQ,CACtC,CACJ,CAAC,CACH,CCxMA,SAASG,GAAUC,EAAuC,CACxD,OAAOA,EAAU,UAAY,OACzBC,EAAY,eAAgBD,CAAS,EACrC,CAACA,CAAS,CAChB,CASA,SAASE,GAAYF,EAAgC,CACnD,IAAMG,EAAkB,CAAC,EACzB,QAAWC,KAAML,GAAUC,CAAS,EAAG,CACrC,IAAMK,EAAgB,CAAC,EAGjBC,EAAK,SAAS,mBAAmBF,EAAI,WAAW,SAAS,EAC/D,QAASG,EAAOD,EAAG,SAAS,EAAGC,EAAMA,EAAOD,EAAG,SAAS,EACtDD,EAAM,KAAKE,CAAY,EAGzB,QAASC,KAAQH,EAAO,CACtB,IAAII,EAGJ,KAAQA,EAAQ,gBAAgB,KAAKD,EAAK,WAAY,GAAI,CACxD,GAAM,CAAC,CAAEE,EAAIC,CAAK,EAAIF,EACtB,GAAI,OAAOE,GAAU,YAAa,CAChC,IAAMC,EAASJ,EAAK,UAAUC,EAAM,KAAK,EACzCD,EAAOI,EAAO,UAAUF,EAAG,MAAM,EACjCP,EAAQ,KAAKS,CAAM,CAGrB,KAAO,CACLJ,EAAK,YAAcE,EACnBP,EAAQ,KAAKK,CAAI,EACjB,KACF,CACF,CACF,CACF,CACA,OAAOL,CACT,CAQA,SAASU,GAAKC,EAAqBC,EAA2B,CAC5DA,EAAO,OAAO,GAAG,MAAM,KAAKD,EAAO,UAAU,CAAC,CAChD,CAoBO,SAASE,GACdZ,EAAiBJ,EAAwB,CAAE,QAAAiB,EAAS,OAAAC,CAAO,EACxB,CAGnC,IAAMC,EAASnB,EAAU,QAAQ,MAAM,EACjCoB,EAASD,GAAA,YAAAA,EAAQ,GAGjBE,EAAc,IAAI,IACxB,QAAWT,KAAUV,GAAYF,CAAS,EAAG,CAC3C,GAAM,CAAC,CAAEU,CAAE,EAAIE,EAAO,YAAa,MAAM,WAAW,EAChDU,GAAmB,yBAAyBZ,CAAE,IAAKN,CAAE,IACvDiB,EAAY,IAAIX,EAAIa,GAAiBb,EAAIU,CAAM,CAAC,EAChDR,EAAO,YAAYS,EAAY,IAAIX,CAAE,CAAE,EAE3C,CAGA,OAAIW,EAAY,OAAS,EAChBG,EAGFC,EAAM,IAAM,CACjB,IAAMC,EAAQ,IAAIC,EACZC,EAAQF,EAAM,KAAKG,EAAe,EAAGC,GAAQ,EAAI,CAAC,EAGlDC,EAAsC,CAAC,EAC7C,OAAW,CAACrB,EAAIsB,CAAU,IAAKX,EAC7BU,EAAM,KAAK,CACTE,EAAW,cAAeD,CAAU,EACpCC,EAAW,yBAAyBvB,CAAE,IAAKN,CAAE,CAC/C,CAAC,EAGH,OAAAc,EAAO,KAAKgB,EAAUN,CAAK,CAAC,EACzB,UAAUO,GAAU,CACnB/B,EAAG,OAAS,CAAC+B,EAGb/B,EAAG,UAAU,OAAO,qBAAsB+B,CAAM,EAGhD,OAAW,CAACC,EAAOC,CAAK,IAAKN,EACtBI,EAGHtB,GAAKuB,EAAOC,CAAK,EAFjBxB,GAAKwB,EAAOD,CAAK,CAGvB,CAAC,EAGIE,EAAM,GAAG,CAAC,GAAGjB,CAAW,EAC5B,IAAI,CAAC,CAAC,CAAEW,CAAU,IACjBO,GAAgBP,EAAYhC,EAAW,CAAE,QAAAiB,CAAQ,CAAC,CACnD,CACH,EACG,KACCuB,EAAS,IAAMd,EAAM,SAAS,CAAC,EAC/Be,GAAM,CACR,CACJ,CAAC,CACH,CC7JA,SAASC,GAASC,EAA0C,CAC1D,GAAIA,EAAG,mBAAoB,CACzB,IAAMC,EAAUD,EAAG,mBACnB,GAAIC,EAAQ,UAAY,KACtB,OAAOA,EAGJ,GAAIA,EAAQ,UAAY,KAAO,CAACA,EAAQ,SAAS,OACpD,OAAOF,GAASE,CAAO,CAC3B,CAIF,CAcO,SAASC,GACdF,EAAiBG,EACkB,CACnC,OAAOC,EAAM,IAAM,CACjB,IAAMC,EAAON,GAASC,CAAE,EACxB,OAAO,OAAOK,GAAS,YACnBC,GAAoBD,EAAML,EAAIG,CAAO,EACrCI,CACN,CAAC,CACH,CCjEA,IAAAC,GAAwB,SA4ExB,IAAIC,GAAW,EAaf,SAASC,GAAkBC,EAA0C,CACnE,GAAIA,EAAG,mBAAoB,CACzB,IAAMC,EAAUD,EAAG,mBACnB,GAAIC,EAAQ,UAAY,KACtB,OAAOA,EAGJ,GAAIA,EAAQ,UAAY,KAAO,CAACA,EAAQ,SAAS,OACpD,OAAOF,GAAkBE,CAAO,CACpC,CAIF,CAgBO,SAASC,GACdF,EACsB,CACtB,OAAOG,GAAiBH,CAAE,EACvB,KACCI,EAAI,CAAC,CAAE,MAAAC,CAAM,KAEJ,CACL,WAFcC,GAAsBN,CAAE,EAElB,MAAQK,CAC9B,EACD,EACDE,GAAwB,YAAY,CACtC,CACJ,CAoBO,SAASC,GACdR,EAAiBS,EACiB,CAClC,GAAM,CAAE,QAASC,CAAM,EAAI,WAAW,SAAS,EAGzCC,EAAWC,EAAM,IAAM,CAC3B,IAAMC,EAAQ,IAAIC,EACZC,EAAQF,EAAM,KAAKG,GAAS,CAAC,CAAC,EACpCH,EAAM,UAAU,CAAC,CAAE,WAAAI,CAAW,IAAM,CAC9BA,GAAcP,EAChBV,EAAG,aAAa,WAAY,GAAG,EAE/BA,EAAG,gBAAgB,UAAU,CACjC,CAAC,EAGD,IAAMkB,EAAoD,CAAC,EAC3D,GAAI,GAAAC,QAAY,YAAY,IACtBnB,EAAG,QAAQ,OAAO,GACpBoB,EAAQ,mBAAmB,GAAK,CAACpB,EAAG,QAAQ,UAAU,GACrD,CACD,IAAMqB,EAASrB,EAAG,QAAQ,KAAK,EAC/BqB,EAAO,GAAK,UAAUvB,IAAU,GAGhC,IAAMwB,EAASC,GAAsBF,EAAO,EAAE,EAC9CA,EAAO,aAAaC,EAAQtB,CAAE,EAC1BoB,EAAQ,kBAAkB,GAC5BF,EAAS,KAAKM,GAAoBF,EAAQ,CAAE,SAAU,CAAC,CAAC,CAC5D,CAIF,IAAMG,EAAYzB,EAAG,QAAQ,YAAY,EACzC,GAAIyB,aAAqB,YAAa,CACpC,IAAMC,EAAO3B,GAAkB0B,CAAS,EAGxC,GAAI,OAAOC,GAAS,cAClBD,EAAU,UAAU,SAAS,UAAU,GACvCL,EAAQ,uBAAuB,GAC9B,CACD,IAAMO,EAAeC,GAAoBF,EAAM1B,EAAIS,CAAO,EAC1DS,EAAS,KACPf,GAAiBsB,CAAS,EACvB,KACCI,EAAUd,CAAK,EACfX,EAAI,CAAC,CAAE,MAAAC,EAAO,OAAAyB,CAAO,IAAMzB,GAASyB,CAAM,EAC1CC,EAAqB,EACrBC,EAAUC,GAAUA,EAASN,EAAeO,CAAK,CACnD,CACJ,CACF,CACF,CAOA,OADcC,EAAY,oBAAqBnC,CAAE,EACvC,QACRA,EAAG,UAAU,IAAI,kBAAkB,EAG9BE,GAAeF,CAAE,EACrB,KACCoC,EAAIC,GAASxB,EAAM,KAAKwB,CAAK,CAAC,EAC9BC,EAAS,IAAMzB,EAAM,SAAS,CAAC,EAC/BT,EAAIiC,GAAUE,EAAA,CAAE,IAAKvC,GAAOqC,EAAQ,EACpCG,GAAU,GAAGtB,CAAQ,CACvB,CACJ,CAAC,EAGD,OAAIE,EAAQ,cAAc,EACjBqB,GAAuBzC,CAAE,EAC7B,KACC0C,EAAOC,GAAWA,CAAO,EACzBC,GAAK,CAAC,EACNZ,EAAU,IAAMrB,CAAQ,CAC1B,EAGGA,CACT,CCnLO,SAASkC,GACdC,EAAwB,CAAE,QAAAC,EAAS,OAAAC,CAAO,EACrB,CACrB,IAAIC,EAAO,GACX,OAAOC,EAGLH,EACG,KACCI,EAAIC,GAAUA,EAAO,QAAQ,qBAAqB,CAAE,EACpDC,EAAOC,GAAWR,IAAOQ,CAAO,EAChCH,EAAI,KAAO,CACT,OAAQ,OAAQ,OAAQ,EAC1B,EAAa,CACf,EAGFH,EACG,KACCK,EAAOE,GAAUA,GAAU,CAACN,CAAI,EAChCO,EAAI,IAAMP,EAAOH,EAAG,IAAI,EACxBK,EAAII,IAAW,CACb,OAAQA,EAAS,OAAS,OAC5B,EAAa,CACf,CACJ,CACF,CAaO,SAASE,GACdX,EAAwBY,EACQ,CAChC,OAAOC,EAAM,IAAM,CACjB,IAAMC,EAAQ,IAAIC,EAClB,OAAAD,EAAM,UAAU,CAAC,CAAE,OAAAE,EAAQ,OAAAC,CAAO,IAAM,CACtCjB,EAAG,gBAAgB,OAAQgB,IAAW,MAAM,EACxCC,GACFjB,EAAG,eAAe,CACtB,CAAC,EAGMD,GAAaC,EAAIY,CAAO,EAC5B,KACCF,EAAIQ,GAASJ,EAAM,KAAKI,CAAK,CAAC,EAC9BC,EAAS,IAAML,EAAM,SAAS,CAAC,EAC/BT,EAAIa,GAAUE,EAAA,CAAE,IAAKpB,GAAOkB,EAAQ,CACtC,CACJ,CAAC,CACH,CCzIA,IAAAG,GAAA,o7LCqDA,IAAIC,GAKAC,GAAW,EAWf,SAASC,IAAiC,CACxC,OAAO,OAAO,SAAY,aAAe,mBAAmB,QACxDC,GAAY,kDAAkD,EAC9DC,EAAG,MAAS,CAClB,CAaO,SAASC,GACdC,EACgC,CAChC,OAAAA,EAAG,UAAU,OAAO,SAAS,EAC7BN,QAAaE,GAAa,EACvB,KACCK,EAAI,IAAM,QAAQ,WAAW,CAC3B,YAAa,GACb,SAAAC,GACA,SAAU,CACR,cAAe,OACf,gBAAiB,OACjB,aAAc,MAChB,CACF,CAAC,CAAC,EACFC,EAAI,IAAG,EAAY,EACnBC,EAAY,CAAC,CACf,GAGFV,GAAS,UAAU,IAAYW,GAAA,sBAC7BL,EAAG,UAAU,IAAI,SAAS,EAC1B,IAAMM,EAAK,aAAaX,IAAU,GAG5BY,EAAOC,EAAE,MAAO,CAAE,MAAO,SAAU,CAAC,EACpCC,EAAOT,EAAG,YAGV,CAAE,IAAAU,EAAK,GAAAC,CAAG,EAAI,MAAM,QAAQ,OAAOL,EAAIG,CAAI,EAG3CG,EAASL,EAAK,aAAa,CAAE,KAAM,QAAS,CAAC,EACnDK,EAAO,UAAYF,EAGnBV,EAAG,YAAYO,CAAI,EACnBI,GAAA,MAAAA,EAAKC,EACP,EAAC,EAGMlB,GACJ,KACCS,EAAI,KAAO,CAAE,IAAKH,CAAG,EAAE,CACzB,CACJ,CCtFA,IAAMa,GAAWC,EAAE,OAAO,EAgBnB,SAASC,GACdC,EACkC,CAClC,OAAAA,EAAG,YAAYH,EAAQ,EACvBA,GAAS,YAAYI,GAAYD,CAAE,CAAC,EAG7BE,EAAG,CAAE,IAAKF,CAAG,CAAC,CACvB,CC4BO,SAASG,GACdC,EACyB,CACzB,IAAMC,EAAUD,EAAO,KAAKE,GAASA,EAAM,OAAO,GAAKF,EAAO,CAAC,EAC/D,OAAOG,EAAM,GAAGH,EAAO,IAAIE,GAASE,EAAUF,EAAO,QAAQ,EAC1D,KACCG,EAAI,IAAMC,EAA6B,cAAcJ,EAAM,EAAE,IAAI,CAAC,CACpE,CACF,CAAC,EACE,KACCK,EAAUD,EAA6B,cAAcL,EAAQ,EAAE,IAAI,CAAC,EACpEI,EAAIG,IAAW,CAAE,OAAAA,CAAO,EAAE,CAC5B,CACJ,CAUO,SAASC,GACdC,EAAiB,CAAE,UAAAC,EAAW,QAAAC,CAAQ,EACF,CACpC,IAAMC,EAAYP,EAAW,iBAAkBI,CAAE,EAC3CV,EAASc,EAA8B,iBAAkBJ,CAAE,EAG3DK,EAAOC,GAAoB,MAAM,EACvCN,EAAG,OAAOK,CAAI,EAGd,IAAME,EAAOD,GAAoB,MAAM,EACvC,OAAAN,EAAG,OAAOO,CAAI,EAGPC,EAAM,IAAM,CACjB,IAAMC,EAAQ,IAAIC,EACZC,EAAQF,EAAM,KAAKG,EAAe,EAAGC,GAAQ,EAAI,CAAC,EACxDC,EAAc,CAACL,EAAOM,GAAiBf,CAAE,EAAGgB,GAAuBhB,CAAE,CAAC,CAAC,EACpE,KACCiB,EAAUN,CAAK,EACfO,GAAU,EAAGC,EAAuB,CACtC,EACG,UAAU,CAGT,KAAK,CAAC,CAAE,OAAArB,CAAO,EAAGsB,CAAI,EAAG,CACvB,IAAMC,EAASC,GAAiBxB,CAAM,EAChC,CAAE,MAAAyB,CAAM,EAAIC,GAAe1B,CAAM,EAGvCE,EAAG,MAAM,YAAY,mBAAoB,GAAGqB,EAAO,CAAC,IAAI,EACxDrB,EAAG,MAAM,YAAY,uBAAwB,GAAGuB,CAAK,IAAI,EAGzD,IAAME,EAAUC,GAAwBvB,CAAS,GAE/CkB,EAAO,EAAYI,EAAQ,GAC3BJ,EAAO,EAAIE,EAAQE,EAAQ,EAAIL,EAAK,QAEpCjB,EAAU,SAAS,CACjB,KAAM,KAAK,IAAI,EAAGkB,EAAO,EAAI,EAAE,EAC/B,SAAU,QACZ,CAAC,CACL,EAGA,UAAW,CACTrB,EAAG,MAAM,eAAe,kBAAkB,EAC1CA,EAAG,MAAM,eAAe,sBAAsB,CAChD,CACF,CAAC,EAGLc,EAAc,CACZa,GAA0BxB,CAAS,EACnCY,GAAiBZ,CAAS,CAC5B,CAAC,EACE,KACCc,EAAUN,CAAK,CACjB,EACG,UAAU,CAAC,CAACU,EAAQD,CAAI,IAAM,CAC7B,IAAMK,EAAUG,GAAsBzB,CAAS,EAC/CE,EAAK,OAASgB,EAAO,EAAI,GACzBd,EAAK,OAASc,EAAO,EAAII,EAAQ,MAAQL,EAAK,MAAQ,EACxD,CAAC,EAGL3B,EACEC,EAAUW,EAAM,OAAO,EAAE,KAAKV,EAAI,IAAM,EAAE,CAAC,EAC3CD,EAAUa,EAAM,OAAO,EAAE,KAAKZ,EAAI,IAAM,CAAE,CAAC,CAC7C,EACG,KACCsB,EAAUN,CAAK,CACjB,EACG,UAAUkB,GAAa,CACtB,GAAM,CAAE,MAAAN,CAAM,EAAIC,GAAerB,CAAS,EAC1CA,EAAU,SAAS,CACjB,KAAMoB,EAAQM,EACd,SAAU,QACZ,CAAC,CACH,CAAC,EAGL3B,EACG,KACCe,EAAUN,CAAK,EACfmB,EAAOtC,GAASF,EAAO,SAASE,CAAyB,CAAC,CAC5D,EACG,UAAUA,GAASA,EAAM,MAAM,CAAC,EAGrCW,EAAU,UAAU,IAAI,uBAAuB,EAC/C,QAAWX,KAASF,EAAQ,CAC1B,IAAMyC,EAAQnC,EAA6B,cAAcJ,EAAM,EAAE,IAAI,EACrEuC,EAAM,gBAAgBC,EAAE,IAAK,CAC3B,KAAM,IAAID,EAAM,OAAO,GACvB,SAAU,EACZ,EAAG,GAAG,MAAM,KAAKA,EAAM,UAAU,CAAC,CAAC,EAGnCrC,EAAsBqC,EAAM,kBAAoB,OAAO,EACpD,KACCd,EAAUN,CAAK,EACfmB,EAAOG,GAAM,EAAEA,EAAG,SAAWA,EAAG,QAAQ,EACxCC,EAAID,GAAM,CACRA,EAAG,eAAe,EAClBA,EAAG,gBAAgB,CACrB,CAAC,CACH,EAEG,UAAU,IAAM,CACf,QAAQ,aAAa,CAAC,EAAG,GAAI,IAAIF,EAAM,OAAO,EAAE,EAChDA,EAAM,MAAM,CACd,CAAC,CACP,CAGA,OAAII,EAAQ,mBAAmB,GAC7B1B,EAAM,KACJ2B,GAAK,CAAC,EACNC,GAAepC,CAAS,CAC1B,EACG,UAAU,CAAC,CAAC,CAAE,OAAAH,CAAO,EAAG,CAAE,OAAAuB,CAAO,CAAC,IAAM,CACvC,IAAMiB,EAAMxC,EAAO,UAAU,KAAK,EAClC,GAAIA,EAAO,aAAa,mBAAmB,EACzCA,EAAO,gBAAgB,mBAAmB,MAGrC,CACL,IAAMyC,EAAIvC,EAAG,UAAYqB,EAAO,EAGhC,QAAWmB,KAAOpC,EAAY,aAAa,EACzC,QAAWZ,KAASY,EAClB,iBAAkBoC,CACpB,EAAG,CACD,IAAMT,EAAQnC,EAAW,cAAcJ,EAAM,EAAE,IAAI,EACnD,GACEuC,IAAUjC,GACViC,EAAM,UAAU,KAAK,IAAMO,EAC3B,CACAP,EAAM,aAAa,oBAAqB,EAAE,EAC1CvC,EAAM,MAAM,EACZ,KACF,CACF,CAGF,OAAO,SAAS,CACd,IAAKQ,EAAG,UAAYuC,CACtB,CAAC,EAGD,IAAME,EAAO,SAAmB,QAAQ,GAAK,CAAC,EAC9C,SAAS,SAAU,CAAC,GAAG,IAAI,IAAI,CAACH,EAAK,GAAGG,CAAI,CAAC,CAAC,CAAC,CACjD,CACF,CAAC,EAGLhC,EAAM,KAAKQ,EAAUN,CAAK,CAAC,EACxB,UAAU,IAAM,CACf,QAAW+B,KAAStC,EAA8B,eAAgBJ,CAAE,EAClE0C,EAAM,MAAM,CAChB,CAAC,EAGIrD,GAAiBC,CAAM,EAC3B,KACC4C,EAAIS,GAASlC,EAAM,KAAKkC,CAAK,CAAC,EAC9BC,EAAS,IAAMnC,EAAM,SAAS,CAAC,EAC/Bd,EAAIgD,GAAUE,EAAA,CAAE,IAAK7C,GAAO2C,EAAQ,CACtC,CACJ,CAAC,EACE,KACCG,GAAYC,EAAc,CAC5B,CACJ,CCpMO,SAASC,GACdC,EAAiB,CAAE,UAAAC,EAAW,QAAAC,EAAS,OAAAC,CAAO,EACd,CAChC,OAAOC,EAGL,GAAGC,EAAY,4BAA6BL,CAAE,EAC3C,IAAIM,GAASC,GAAqBD,EAAO,CAAE,QAAAJ,EAAS,OAAAC,CAAO,CAAC,CAAC,EAGhE,GAAGE,EAAY,2BAA4BL,CAAE,EAC1C,IAAIM,GAASE,GAAeF,EAAO,CAAE,QAAAJ,EAAS,OAAAC,CAAO,CAAC,CAAC,EAG1D,GAAGE,EAAY,cAAeL,CAAE,EAC7B,IAAIM,GAASG,GAAaH,CAAK,CAAC,EAGnC,GAAGD,EAAY,qBAAsBL,CAAE,EACpC,IAAIM,GAASI,GAAeJ,CAAK,CAAC,EAGrC,GAAGD,EAAY,UAAWL,CAAE,EACzB,IAAIM,GAASK,GAAaL,EAAO,CAAE,QAAAJ,EAAS,OAAAC,CAAO,CAAC,CAAC,EAGxD,GAAGE,EAAY,cAAeL,CAAE,EAC7B,IAAIM,GAASM,GAAiBN,EAAO,CAAE,UAAAL,EAAW,QAAAC,CAAQ,CAAC,CAAC,EAG/D,GAAGG,EAAY,UAAWL,CAAE,EACzB,OAAO,IAAMa,EAAQ,kBAAkB,CAAC,EACxC,IAAIP,GAASQ,GAAoBR,EAAO,CAAE,UAAAL,CAAU,CAAC,CAAC,CAC3D,CACF,CCtDO,SAASc,GACdC,EAAkB,CAAE,OAAAC,CAAO,EACP,CACpB,OAAOA,EACJ,KACCC,EAAUC,GAAWC,EACnBC,EAAG,EAAI,EACPA,EAAG,EAAK,EAAE,KAAKC,GAAM,GAAI,CAAC,CAC5B,EACG,KACCC,EAAIC,IAAW,CAAE,QAAAL,EAAS,OAAAK,CAAO,EAAE,CACrC,CACF,CACF,CACJ,CAaO,SAASC,GACdC,EAAiBC,EACc,CAC/B,IAAMC,EAAQC,EAAW,cAAeH,CAAE,EAC1C,OAAOI,EAAM,IAAM,CACjB,IAAMC,EAAQ,IAAIC,EAClB,OAAAD,EAAM,UAAU,CAAC,CAAE,QAAAZ,EAAS,OAAAK,CAAO,IAAM,CACvCE,EAAG,UAAU,OAAO,oBAAqBF,CAAM,EAC/CI,EAAM,YAAcT,CACtB,CAAC,EAGMJ,GAAYW,EAAIC,CAAO,EAC3B,KACCM,EAAIC,GAASH,EAAM,KAAKG,CAAK,CAAC,EAC9BC,EAAS,IAAMJ,EAAM,SAAS,CAAC,EAC/BR,EAAIW,GAAUE,EAAA,CAAE,IAAKV,GAAOQ,EAAQ,CACtC,CACJ,CAAC,CACH,CCnDA,IAAIG,GAAW,EAiBR,SAASC,GACdC,EAAiBC,EACI,CACrB,SAAS,KAAK,OAAOD,CAAE,EAGvB,GAAM,CAAE,MAAAE,CAAM,EAAIC,GAAeH,CAAE,EACnCA,EAAG,MAAM,YAAY,qBAAsB,GAAGE,CAAK,IAAI,EACvDF,EAAG,OAAO,EAGV,IAAMI,EAAYC,GAAoBJ,CAAI,EACpCK,EACJ,OAAOF,GAAc,YACjBG,GAA0BH,CAAS,EACnCI,EAAG,CAAE,EAAG,EAAG,EAAG,CAAE,CAAC,EAGjBC,EAAUC,EACdC,GAAkBV,CAAI,EACtBW,GAAkBX,CAAI,CACxB,EACG,KACCY,EAAqB,CACvB,EAGF,OAAOC,EAAc,CAACL,EAASH,CAAO,CAAC,EACpC,KACCS,EAAI,CAAC,CAACC,EAAQC,CAAM,IAAM,CACxB,GAAI,CAAE,EAAAC,EAAG,EAAAC,CAAE,EAAIC,GAAiBnB,CAAI,EAC9BoB,EAAOlB,GAAeF,CAAI,EAU1BqB,EAAQrB,EAAK,QAAQ,OAAO,EAClC,OAAIqB,GAASrB,EAAK,gBAChBiB,GAAKI,EAAM,WAAarB,EAAK,cAAc,WAC3CkB,GAAKG,EAAM,UAAarB,EAAK,cAAc,WAEtC,CACL,OAAAe,EACA,OAAQ,CACN,EAAGE,EAAID,EAAO,EAAII,EAAK,MAAS,EAAInB,EAAQ,EAC5C,EAAGiB,EAAIF,EAAO,EAAII,EAAK,OAAS,CAClC,CACF,CACF,CAAC,CACH,CACJ,CASO,SAASE,GACdvB,EACgC,CAChC,IAAMwB,EAAQxB,EAAG,MACjB,GAAI,CAACwB,EAAM,OACT,OAAOC,EAGT,IAAMC,EAAK,aAAa5B,IAAU,GAC5B6B,EAAUC,GAAcF,EAAI,QAAQ,EACpCG,EAAUC,EAAW,cAAeH,CAAO,EACjD,OAAAE,EAAQ,UAAYL,EAGbO,EAAM,IAAM,CACjB,IAAMC,EAAQ,IAAIC,EAClB,OAAAD,EAAM,UAAU,CAGd,KAAK,CAAE,OAAAE,CAAO,EAAG,CACfP,EAAQ,MAAM,YAAY,iBAAkB,GAAGO,EAAO,CAAC,IAAI,EAC3DP,EAAQ,MAAM,YAAY,iBAAkB,GAAGO,EAAO,CAAC,IAAI,CAC7D,EAGA,UAAW,CACTP,EAAQ,MAAM,eAAe,gBAAgB,EAC7CA,EAAQ,MAAM,eAAe,gBAAgB,CAC/C,CACF,CAAC,EAGDjB,EACEsB,EAAM,KAAKG,EAAO,CAAC,CAAE,OAAAnB,CAAO,IAAMA,CAAM,CAAC,EACzCgB,EAAM,KAAKI,GAAa,GAAG,EAAGD,EAAO,CAAC,CAAE,OAAAnB,CAAO,IAAM,CAACA,CAAM,CAAC,CAC/D,EACG,UAAU,CAGT,KAAK,CAAE,OAAAA,CAAO,EAAG,CACXA,GACFhB,EAAG,sBAAsB,WAAY2B,CAAO,EAC5C3B,EAAG,aAAa,mBAAoB0B,CAAE,EACtC1B,EAAG,gBAAgB,OAAO,IAE1B2B,EAAQ,OAAO,EACf3B,EAAG,gBAAgB,kBAAkB,EACrCA,EAAG,aAAa,QAASwB,CAAK,EAElC,EAGA,UAAW,CACTG,EAAQ,OAAO,EACf3B,EAAG,gBAAgB,kBAAkB,EACrCA,EAAG,aAAa,QAASwB,CAAK,CAChC,CACF,CAAC,EAGHQ,EACG,KACCK,GAAU,GAAIC,EAAuB,CACvC,EACG,UAAU,CAAC,CAAE,OAAAtB,CAAO,IAAM,CACzBW,EAAQ,UAAU,OAAO,qBAAsBX,CAAM,CACvD,CAAC,EAMLgB,EACG,KACCO,GAAa,IAAKD,EAAuB,EACzCH,EAAO,IAAM,CAAC,CAACnC,EAAG,YAAY,EAC9Be,EAAI,IAAMf,EAAG,aAAc,sBAAsB,CAAC,EAClDe,EAAI,CAAC,CAAE,EAAAG,CAAE,IAAMA,CAAC,CAClB,EACC,UAAU,CAGT,KAAKsB,EAAQ,CACPA,EACFb,EAAQ,MAAM,YAAY,iBAAkB,GAAG,CAACa,CAAM,IAAI,EAE1Db,EAAQ,MAAM,eAAe,gBAAgB,CACjD,EAGA,UAAW,CACTA,EAAQ,MAAM,eAAe,gBAAgB,CAC/C,CACF,CAAC,EAGI5B,GAAa4B,EAAS3B,CAAE,EAC5B,KACCyC,EAAIC,GAASV,EAAM,KAAKU,CAAK,CAAC,EAC9BC,EAAS,IAAMX,EAAM,SAAS,CAAC,EAC/BjB,EAAI2B,GAAUE,EAAA,CAAE,IAAK5C,GAAO0C,EAAQ,CACtC,CACJ,CAAC,EACE,KACCG,GAAYC,EAAc,CAC5B,CACJ,CC7JA,SAASC,GAAS,CAAE,UAAAC,CAAU,EAAsC,CAClE,GAAI,CAACC,EAAQ,iBAAiB,EAC5B,OAAOC,EAAG,EAAK,EAGjB,IAAMC,EAAaH,EAChB,KACCI,EAAI,CAAC,CAAE,OAAQ,CAAE,EAAAC,CAAE,CAAE,IAAMA,CAAC,EAC5BC,GAAY,EAAG,CAAC,EAChBF,EAAI,CAAC,CAACG,EAAGC,CAAC,IAAM,CAACD,EAAIC,EAAGA,CAAC,CAAU,EACnCC,GAAwB,CAAC,CAC3B,EAGIC,EAAUC,EAAc,CAACX,EAAWG,CAAU,CAAC,EAClD,KACCS,EAAO,CAAC,CAAC,CAAE,OAAAC,CAAO,EAAG,CAAC,CAAER,CAAC,CAAC,IAAM,KAAK,IAAIA,EAAIQ,EAAO,CAAC,EAAI,GAAG,EAC5DT,EAAI,CAAC,CAAC,CAAE,CAACU,CAAS,CAAC,IAAMA,CAAS,EAClCC,EAAqB,CACvB,EAGIC,EAAUC,GAAY,QAAQ,EACpC,OAAON,EAAc,CAACX,EAAWgB,CAAO,CAAC,EACtC,KACCZ,EAAI,CAAC,CAAC,CAAE,OAAAS,CAAO,EAAGK,CAAM,IAAML,EAAO,EAAI,KAAO,CAACK,CAAM,EACvDH,EAAqB,EACrBI,EAAUC,GAAUA,EAASV,EAAUR,EAAG,EAAK,CAAC,EAChDmB,EAAU,EAAK,CACjB,CACJ,CAcO,SAASC,GACdC,EAAiBC,EACG,CACpB,OAAOC,EAAM,IAAMd,EAAc,CAC/Be,GAAiBH,CAAE,EACnBxB,GAASyB,CAAO,CAClB,CAAC,CAAC,EACC,KACCpB,EAAI,CAAC,CAAC,CAAE,OAAAuB,CAAO,EAAGC,CAAM,KAAO,CAC7B,OAAAD,EACA,OAAAC,CACF,EAAE,EACFb,EAAqB,CAACR,EAAGC,IACvBD,EAAE,SAAWC,EAAE,QACfD,EAAE,SAAWC,EAAE,MAChB,EACDqB,EAAY,CAAC,CACf,CACJ,CAaO,SAASC,GACdP,EAAiB,CAAE,QAAAQ,EAAS,MAAAC,CAAM,EACO,CACzC,OAAOP,EAAM,IAAM,CACjB,IAAMQ,EAAQ,IAAIC,EACZC,EAAQF,EAAM,KAAKG,EAAe,EAAGC,GAAQ,EAAI,CAAC,EACxDJ,EACG,KACCxB,GAAwB,QAAQ,EAChC6B,GAAkBP,CAAO,CAC3B,EACG,UAAU,CAAC,CAAC,CAAE,OAAAX,CAAO,EAAG,CAAE,OAAAQ,CAAO,CAAC,IAAM,CACvCL,EAAG,UAAU,OAAO,oBAAqBH,GAAU,CAACQ,CAAM,EAC1DL,EAAG,OAASK,CACd,CAAC,EAGL,IAAMW,EAAWC,GAAKC,EAAY,UAAWlB,CAAE,CAAC,EAC7C,KACCX,EAAO,IAAMX,EAAQ,kBAAkB,CAAC,EACxCyC,GAASC,GAASC,GAAaD,CAAK,CAAC,CACvC,EAGF,OAAAX,EAAM,UAAUC,CAAK,EAGdF,EACJ,KACCc,EAAUV,CAAK,EACf/B,EAAI0C,GAAUC,EAAA,CAAE,IAAKxB,GAAOuB,EAAQ,EACpCE,GAAUT,EAAS,KAAKM,EAAUV,CAAK,CAAC,CAAC,CAC3C,CACJ,CAAC,CACH,CCjIO,SAASc,GACdC,EAAiB,CAAE,UAAAC,EAAW,QAAAC,CAAQ,EACb,CACzB,OAAOC,GAAgBH,EAAI,CAAE,UAAAC,EAAW,QAAAC,CAAQ,CAAC,EAC9C,KACCE,EAAI,CAAC,CAAE,OAAQ,CAAE,EAAAC,CAAE,CAAE,IAAM,CACzB,GAAM,CAAE,OAAAC,CAAO,EAAIC,GAAeP,CAAE,EACpC,MAAO,CACL,OAAQK,GAAKC,CACf,CACF,CAAC,EACDE,GAAwB,QAAQ,CAClC,CACJ,CAaO,SAASC,GACdT,EAAiBU,EACmB,CACpC,OAAOC,EAAM,IAAM,CACjB,IAAMC,EAAQ,IAAIC,EAClBD,EAAM,UAAU,CAGd,KAAK,CAAE,OAAAE,CAAO,EAAG,CACfd,EAAG,UAAU,OAAO,2BAA4Bc,CAAM,CACxD,EAGA,UAAW,CACTd,EAAG,UAAU,OAAO,0BAA0B,CAChD,CACF,CAAC,EAGD,IAAMe,EAAUC,GAAmB,gBAAgB,EACnD,OAAI,OAAOD,GAAY,YACdE,EAGFlB,GAAiBgB,EAASL,CAAO,EACrC,KACCQ,EAAIC,GAASP,EAAM,KAAKO,CAAK,CAAC,EAC9BC,EAAS,IAAMR,EAAM,SAAS,CAAC,EAC/BR,EAAIe,GAAUE,EAAA,CAAE,IAAKrB,GAAOmB,EAAQ,CACtC,CACJ,CAAC,CACH,CChEO,SAASG,GACdC,EAAiB,CAAE,UAAAC,EAAW,QAAAC,CAAQ,EACpB,CAGlB,IAAMC,EAAUD,EACb,KACCE,EAAI,CAAC,CAAE,OAAAC,CAAO,IAAMA,CAAM,EAC1BC,EAAqB,CACvB,EAGIC,EAAUJ,EACb,KACCK,EAAU,IAAMC,GAAiBT,CAAE,EAChC,KACCI,EAAI,CAAC,CAAE,OAAAC,CAAO,KAAO,CACnB,IAAQL,EAAG,UACX,OAAQA,EAAG,UAAYK,CACzB,EAAE,EACFK,GAAwB,QAAQ,CAClC,CACF,CACF,EAGF,OAAOC,EAAc,CAACR,EAASI,EAASN,CAAS,CAAC,EAC/C,KACCG,EAAI,CAAC,CAACQ,EAAQ,CAAE,IAAAC,EAAK,OAAAC,CAAO,EAAG,CAAE,OAAQ,CAAE,EAAAC,CAAE,EAAG,KAAM,CAAE,OAAAV,CAAO,CAAE,CAAC,KAChEA,EAAS,KAAK,IAAI,EAAGA,EACjB,KAAK,IAAI,EAAGQ,EAASE,EAAIH,CAAM,EAC/B,KAAK,IAAI,EAAGP,EAASU,EAAID,CAAM,CACnC,EACO,CACL,OAAQD,EAAMD,EACd,OAAAP,EACA,OAAQQ,EAAMD,GAAUG,CAC1B,EACD,EACDT,EAAqB,CAACU,EAAGC,IACvBD,EAAE,SAAWC,EAAE,QACfD,EAAE,SAAWC,EAAE,QACfD,EAAE,SAAWC,EAAE,MAChB,CACH,CACJ,CCxCO,SAASC,GACdC,EACqB,CACrB,IAAMC,EAAU,SAAkB,WAAW,GAAK,CAChD,MAAOD,EAAO,UAAUE,GAAS,WAC/BA,EAAM,aAAa,qBAAqB,CAC1C,EAAE,OAAO,CACX,EAGMC,EAAQ,KAAK,IAAI,EAAG,KAAK,IAAIF,EAAQ,MAAOD,EAAO,OAAS,CAAC,CAAC,EACpE,OAAOI,EAAG,GAAGJ,CAAM,EAChB,KACCK,GAASH,GAASI,EAAUJ,EAAO,QAAQ,EAAE,KAAKK,EAAI,IAAML,CAAK,CAAC,CAAC,EACnEM,EAAUR,EAAOG,CAAK,CAAC,EACvBI,EAAIL,IAAU,CACZ,MAAOF,EAAO,QAAQE,CAAK,EAC3B,MAAO,CACL,MAASA,EAAM,aAAa,qBAAqB,EACjD,OAASA,EAAM,aAAa,sBAAsB,EAClD,QAASA,EAAM,aAAa,uBAAuB,EACnD,OAASA,EAAM,aAAa,sBAAsB,CACpD,CACF,EAAa,EACbO,EAAY,CAAC,CACf,CACJ,CASO,SAASC,GACdC,EACgC,CAChC,IAAMX,EAASY,EAA8B,QAASD,CAAE,EAClDE,EAAOC,EAAE,OAAQ,CAAE,KAAM,aAAc,CAAC,EAC9C,SAAS,KAAK,YAAYD,CAAI,EAG9B,IAAME,EAASD,EAAE,OAAQ,CAAE,KAAM,cAAe,CAAC,EACjD,SAAS,KAAK,YAAYC,CAAM,EAGhC,IAAMC,EAASC,GAAW,+BAA+B,EACzD,OAAOC,EAAM,IAAM,CACjB,IAAMC,EAAQ,IAAIC,EAClB,OAAAD,EAAM,UAAUE,GAAW,CAIzB,GAHA,SAAS,KAAK,aAAa,0BAA2B,EAAE,EAGpDA,EAAQ,MAAM,QAAU,yBAA0B,CACpD,IAAMC,EAAQ,WAAW,+BAA+B,EAClDpB,EAAQ,SAAS,cAAcoB,EAAM,QACvC,wDACA,sDACJ,EAGAD,EAAQ,MAAM,OAAUnB,EAAM,aAAa,sBAAsB,EACjEmB,EAAQ,MAAM,QAAUnB,EAAM,aAAa,uBAAuB,EAClEmB,EAAQ,MAAM,OAAUnB,EAAM,aAAa,sBAAsB,CACnE,CAGA,OAAW,CAACqB,EAAKC,CAAK,IAAK,OAAO,QAAQH,EAAQ,KAAK,EACrD,SAAS,KAAK,aAAa,iBAAiBE,CAAG,GAAIC,CAAK,EAG1D,QAASrB,EAAQ,EAAGA,EAAQH,EAAO,OAAQG,IAAS,CAClD,IAAMsB,EAAQzB,EAAOG,CAAK,EAAE,mBACxBsB,aAAiB,cACnBA,EAAM,OAASJ,EAAQ,QAAUlB,EACrC,CAGA,SAAS,YAAakB,CAAO,CAC/B,CAAC,EAGDf,EAAyBK,EAAI,SAAS,EAAE,KACtCe,EAAOC,GAAMA,EAAG,MAAQ,OAAO,EAC/BC,GAAeT,EAAO,CAACU,EAAGR,IAAYA,CAAO,CAC/C,EACG,UAAU,CAAC,CAAE,MAAAlB,CAAM,IAAM,CACxBA,GAASA,EAAQ,GAAKH,EAAO,OAC7BA,EAAOG,CAAK,EAAE,MAAM,EACpBH,EAAOG,CAAK,EAAE,MAAM,CACtB,CAAC,EAGHgB,EACG,KACCZ,EAAI,IAAM,CACR,IAAMuB,EAASC,GAAoB,QAAQ,EACrCC,EAAS,OAAO,iBAAiBF,CAAM,EAG7C,OAAAf,EAAO,QAAUiB,EAAM,YAGhBA,EAAM,gBAAgB,MAAM,MAAM,EACtC,IAAIR,IAAU,CAACA,GAAO,SAAS,EAAE,EAAE,SAAS,EAAG,GAAG,CAAC,EACnD,KAAK,EAAE,CACZ,CAAC,CACH,EACG,UAAUS,GAASpB,EAAK,QAAU,IAAIoB,CAAK,EAAE,EAGlDd,EAAM,KAAKe,GAAUC,EAAc,CAAC,EACjC,UAAU,IAAM,CACf,SAAS,KAAK,gBAAgB,yBAAyB,CACzD,CAAC,EAGIpC,GAAaC,CAAM,EACvB,KACCoC,EAAUpB,EAAO,KAAKqB,GAAK,CAAC,CAAC,CAAC,EAC9BC,GAAO,EACPC,EAAIC,GAASrB,EAAM,KAAKqB,CAAK,CAAC,EAC9BC,EAAS,IAAMtB,EAAM,SAAS,CAAC,EAC/BZ,EAAIiC,GAAUE,EAAA,CAAE,IAAK/B,GAAO6B,EAAQ,CACtC,CACJ,CAAC,CACH,CChJO,SAASG,GACdC,EAAiB,CAAE,UAAAC,CAAU,EACI,CAGjC,OAAOC,EAAM,IAAM,CACjB,IAAMC,EAAQ,IAAIC,EAClB,OAAAD,EAAM,UAAU,CAAC,CAAE,MAAAE,CAAM,IAAM,CAC7BL,EAAG,MAAM,YAAY,sBAAuB,GAAGK,CAAK,EAAE,CACxD,CAAC,EAGMJ,EACJ,KACCK,EAAID,GAASF,EAAM,KAAK,CAAE,MAAAE,CAAM,CAAC,CAAC,EAClCE,EAAS,IAAMJ,EAAM,SAAS,CAAC,EAC/BK,EAAIH,IAAU,CAAE,IAAKL,EAAI,MAAAK,CAAM,EAAE,CACnC,CACJ,CAAC,CACH,CChEA,IAAAI,GAAwB,SAiCxB,SAASC,GAAQC,EAAyB,CACxCA,EAAG,aAAa,kBAAmB,EAAE,EACrC,IAAMC,EAAOD,EAAG,QAAQ,aAAa,EAC/BE,EAAOD,EACTA,EAAK,aAAa,WAAW,EAC7BD,EAAG,UACP,OAAAA,EAAG,gBAAgB,iBAAiB,EAC7BE,EAAK,QAAQ,CACtB,CAWO,SAASC,GACd,CAAE,OAAAC,CAAO,EACH,CACF,GAAAC,QAAY,YAAY,GAC1B,IAAIC,EAA8BC,GAAc,CAC9C,IAAI,GAAAF,QAAY,iDAAkD,CAChE,KAAML,GACJA,EAAG,aAAa,qBAAqB,GACrCD,GAAQS,EACNR,EAAG,aAAa,uBAAuB,CACzC,CAAC,CAEL,CAAC,EACE,GAAG,UAAWS,GAAMF,EAAW,KAAKE,CAAE,CAAC,CAC5C,CAAC,EACE,KACCC,EAAID,GAAM,CACQA,EAAG,QACX,MAAM,CAChB,CAAC,EACDE,EAAI,IAAMC,GAAY,kBAAkB,CAAC,CAC3C,EACG,UAAUR,CAAM,CAEzB,CCrCA,SAASS,GAAQC,EAAUC,EAAW,CACpC,OAAAD,EAAI,SAAWC,EAAK,SACpBD,EAAI,SAAWC,EAAK,SACbD,CACT,CA2BA,SAASE,GAAQC,EAAoBF,EAAoB,CACvD,IAAMG,EAAmB,IAAI,IAC7B,QAAWC,KAAMC,EAAY,MAAOH,CAAQ,EAAG,CAC7C,IAAMH,EAAMO,EAAW,MAAOF,CAAE,EAG1BG,EAAQ,CAACT,GAAQ,IAAI,IAAIC,EAAI,WAAY,EAAGC,CAAI,CAAC,EACvDG,EAAQ,IAAI,GAAGI,EAAM,CAAC,CAAC,GAAIA,CAAK,EAGhC,QAAWC,KAAQH,EAAY,kBAAmBD,CAAE,EAAG,CACrD,IAAMK,EAAOD,EAAK,aAAa,MAAM,EACjCC,GAAQ,MACVF,EAAM,KAAKT,GAAQ,IAAI,IAAIW,CAAI,EAAGT,CAAI,CAAC,CAC3C,CACF,CAGA,OAAOG,CACT,CAgBO,SAASO,GAAaV,EAAyC,CACpE,OAAOW,GAAW,IAAI,IAAI,cAAeX,CAAI,CAAC,EAC3C,KACCY,EAAIV,GAAYD,GAAQC,EAAU,IAAI,IAAIF,CAAI,CAAC,CAAC,EAChDa,GAAW,IAAMC,EAAG,IAAI,GAAK,CAAC,CAChC,CACJ,CClDA,SAASC,GACPC,EAAgBC,EACC,CACjB,GAAI,EAAED,EAAG,kBAAkB,SACzB,OAAOE,EAIT,IAAMC,EAAKH,EAAG,OAAO,QAAQ,GAAG,EAChC,GAAIG,IAAO,KACT,OAAOD,EAMT,GAAIC,EAAG,QAAUH,EAAG,SAAWA,EAAG,QAChC,OAAOE,EAQT,IAAME,EAAM,IAAI,IAAID,EAAG,IAAI,EAO3B,OANAC,EAAI,OAASA,EAAI,KAAO,GAMnBH,EAAQ,IAAI,GAAGG,CAAG,EAAE,GASzBJ,EAAG,eAAe,EACXK,EAAG,IAAI,IAAIF,EAAG,IAAI,CAAC,GATjBD,CAUX,CASA,SAASI,GAAKC,EAA8C,CAC1D,IAAMC,EAAO,IAAI,IACjB,QAAWL,KAAMM,EAAY,aAAcF,EAAS,IAAI,EACtDC,EAAK,IAAIL,EAAG,UAAWA,CAAE,EAG3B,OAAOK,CACT,CAYA,SAASE,GAAQH,EAA0C,CACzD,QAAWJ,KAAMM,EAAY,gBAAiBF,CAAQ,EACpD,QAAWI,IAAO,CAAC,OAAQ,KAAK,EAAG,CACjC,IAAMC,EAAQT,EAAG,aAAaQ,CAAG,EACjC,GAAIC,GAAS,CAAC,qBAAqB,KAAKA,CAAK,EAAG,CAE9CT,EAAGQ,CAAG,EAAIR,EAAGQ,CAAG,EAChB,KACF,CACF,CAGF,OAAON,EAAGE,CAAQ,CACpB,CASA,SAASM,GAAOC,EAAsC,CACpD,QAAWC,IAAY,CACrB,+BACA,gCACA,mCACA,+BACA,2BACA,2BACA,GAAGC,EAAQ,wBAAwB,EAC/B,CAAC,0BAA0B,EAC3B,CAAC,CACP,EAAG,CACD,IAAMC,EAASC,GAAmBH,CAAQ,EACpCI,EAASD,GAAmBH,EAAUD,CAAI,EAE9C,OAAOG,GAAW,aAClB,OAAOE,GAAW,aAElBF,EAAO,YAAYE,CAAM,CAE7B,CAGA,IAAMX,EAAOF,GAAK,QAAQ,EAC1B,OAAW,CAACc,EAAMjB,CAAE,IAAKG,GAAKQ,CAAI,EAC5BN,EAAK,IAAIY,CAAI,EACfZ,EAAK,OAAOY,CAAI,EAEhB,SAAS,KAAK,YAAYjB,CAAE,EAGhC,QAAWA,KAAMK,EAAK,OAAO,EAAG,CAC9B,IAAMa,EAAOlB,EAAG,aAAa,MAAM,EAI/BkB,IAAS,eAAiBA,IAAS,gBACrClB,EAAG,OAAO,CACd,CAIA,IAAMmB,EAAYC,GAAoB,WAAW,EACjD,OAAOC,GAAOf,EAAY,SAAUa,CAAS,CAAC,EAC3C,KACCG,EAAUtB,GAAM,CACd,IAAMuB,EAASZ,EAAK,cAAc,QAAQ,EAC1C,GAAIX,EAAG,IAAK,CACV,QAAWkB,KAAQlB,EAAG,kBAAkB,EACtCuB,EAAO,aAAaL,EAAMlB,EAAG,aAAakB,CAAI,CAAE,EAClD,OAAAlB,EAAG,YAAYuB,CAAM,EAGd,IAAIC,EAAWC,GAAY,CAChCF,EAAO,OAAS,IAAME,EAAS,SAAS,CAC1C,CAAC,CAGH,KACE,QAAAF,EAAO,YAAcvB,EAAG,YACxBA,EAAG,YAAYuB,CAAM,EACdxB,CAEX,CAAC,EACD2B,EAAe,EACfC,GAAQ,QAAQ,CAClB,CACJ,CAgBO,SAASC,GACd,CAAE,UAAAC,EAAW,UAAAC,EAAW,UAAAC,CAAU,EACZ,CACtB,IAAMC,EAASC,GAAc,EAC7B,GAAI,SAAS,WAAa,QACxB,OAAOlC,EAIT,IAAMmC,EAAWC,GAAaH,EAAO,IAAI,EAUzC9B,EAAG,QAAQ,EACR,UAAUK,EAAO,EAUpB,IAAM6B,EACJC,EAAsB,SAAS,KAAM,OAAO,EACzC,KACCC,GAAkBJ,CAAQ,EAC1BZ,EAAU,CAAC,CAACzB,EAAIC,CAAO,IAAMF,GAAOC,EAAIC,CAAO,CAAC,EAChDyC,GAAM,CACR,EAIEC,EACJH,EAAyB,OAAQ,UAAU,EACxC,KACCI,EAAIC,EAAW,EACfH,GAAM,CACR,EAMJH,EAAS,KAAKO,GAAeb,CAAS,CAAC,EACpC,UAAU,CAAC,CAAC7B,EAAK,CAAE,OAAA2C,CAAO,CAAC,IAAM,CAChC,QAAQ,aAAaA,EAAQ,EAAE,EAC/B,QAAQ,UAAU,KAAM,GAAI3C,CAAG,CACjC,CAAC,EAMH4C,EAAMT,EAAUI,CAAQ,EACrB,UAAUX,CAAS,EActB,IAAMiB,EACJjB,EAAU,KACRkB,GAAwB,UAAU,EAClCzB,EAAUrB,GAAO+C,GAAY/C,EAAK,CAAE,UAAA8B,CAAU,CAAC,EAC5C,KACCkB,GAAW,KACTC,GAAYjD,EAAK,EAAI,EACdF,EACR,CACH,CACF,EAIAuB,EAAUf,EAAO,EACjBe,EAAUZ,EAAM,EAChB6B,GAAM,CACR,EAUF,OAAAM,EACEC,EAAU,KAAKH,GAAed,EAAW,CAACsB,EAAGlD,IAAQA,CAAG,CAAC,EAMzD6C,EAAU,KACRxB,EAAU,IAAMO,CAAS,EACzBkB,GAAwB,MAAM,CAChC,EAQAlB,EAAU,KACRuB,EAAqB,CAACC,EAAGC,IACvBD,EAAE,WAAaC,EAAE,UACjBD,EAAE,OAAaC,EAAE,IAClB,EACDhC,EAAU,IAAMc,CAAQ,EACxBmB,EAAI,IAAM,QAAQ,KAAK,CAAC,CAC1B,CACF,EACG,UAAUtD,GAAO,CArYtB,IAAAuD,EAAAC,EA2YU,QAAQ,QAAU,MAAQ,CAACxD,EAAI,KACjC,OAAO,SAAS,GAAGwD,GAAAD,EAAA,QAAQ,QAAR,YAAAA,EAAe,IAAf,KAAAC,EAAoB,CAAC,GAExC,QAAQ,kBAAoB,OAC5BC,GAAgBzD,EAAI,IAAI,EACxB,QAAQ,kBAAoB,SAEhC,CAAC,EAMH4B,EAAU,UAAU,IAAM,CACxB,QAAQ,kBAAoB,QAC9B,CAAC,EAMDQ,EAAU,OAAQ,cAAc,EAC7B,UAAU,IAAM,CACf,QAAQ,kBAAoB,MAC9B,CAAC,EAMHP,EAAU,KACRiB,GAAwB,QAAQ,EAChCY,GAAa,GAAG,CAClB,EACG,UAAU,CAAC,CAAE,OAAAf,CAAO,IAAM,CACzB,QAAQ,aAAaA,EAAQ,EAAE,CACjC,CAAC,EAGIE,CACT,CC7ZA,IAAAc,GAAuB,SAqChB,SAASC,GACdC,EAC0B,CAE1B,IAAMC,EAAQD,EAAO,UAAU,MAAM,GAAG,EAAE,IAAIE,GAC/BA,EAAK,QAAQ,sBAAuB,EAAE,EACvC,SAAW,EAAI,SAAMA,CAClC,EACE,KAAK,GAAG,EAELC,EAAY,IAAI,OAAOF,EAAO,KAAK,EACnCG,EAAY,CAACC,EAAYC,EAAcJ,IACpC,GAAGI,CAAI,2BAA2BJ,CAAI,UAI/C,OAAQK,GAAkB,CACxBA,EAAQA,EACL,QAAQ,gBAAiB,GAAG,EAC5B,KAAK,EAGR,IAAMC,EAAQ,IAAI,OAAO,MAAMR,EAAO,SAAS,MAC7CO,EACG,QAAQ,uBAAwB,MAAM,EACtC,QAAQJ,EAAW,GAAG,CAC3B,IAAK,KAAK,EAGV,OAAOM,MAAS,GAAAC,SAAWD,CAAK,EAC7B,QAAQD,EAAOJ,CAAS,EACxB,QAAQ,8BAA+B,IAAI,CAChD,CACF,CCEO,SAASO,GACdC,EAC+B,CAC/B,OAAOA,EAAQ,OAAS,CAC1B,CASO,SAASC,GACdD,EACgC,CAChC,OAAOA,EAAQ,OAAS,CAC1B,CC1CO,SAASE,GACdC,EAAaC,EACW,CACxB,IAAMC,EAAUC,GAA2BH,CAAG,EAC9C,OAAAI,EACEC,EAAG,SAAS,WAAa,OAAO,EAChCC,GAAY,QAAQ,CACtB,EACG,KACCC,GAAMC,GAAUA,CAAM,EACtBC,EAAU,IAAMR,CAAM,CACxB,EACG,UAAU,CAAC,CAAE,OAAAS,EAAQ,KAAAC,CAAK,IAAMT,EAAQ,KAAK,CAC5C,OACA,KAAM,CACJ,OAAAQ,EACA,KAAAC,EACA,QAAS,CACP,QAASC,EAAQ,gBAAgB,CACnC,CACF,CACF,CAAC,CAAC,EAGCV,CACT,CCjEO,SAASW,GACdC,EACiB,CA/BnB,IAAAC,EAgCE,GAAM,CAAC,uBAAAC,EACL,uBAAAC,EACA,gBAAAC,EACA,eAAAC,CAAc,EAAIL,EACdM,GAAeL,EAAAM,GAAaF,CAAc,IAA3B,YAAAJ,EAA8B,SACnD,GAAIK,IAAiB,OACnB,OAEF,IAAME,EAAsBC,GAAYL,EAAgB,SAAUE,CAAY,EAC9E,GAAIE,IAAwB,OAC1B,OAEF,IAAME,EAAsBC,GAAqBT,EAAuB,KAAK,CAAC,EAC9E,GAAI,CAACA,EAAuB,IAAIQ,CAAmB,EAIjD,OAGF,IAAME,EAAsBL,GAAaC,EAAqBE,CAAmB,EACjF,GAAI,CAACE,GAAuB,CAACV,EAAuB,IAAIU,EAAoB,IAAI,EAC9E,OAGF,IAAMC,EAASN,GAAaC,EAAqBL,CAAsB,EACvE,GAAKU,EAGL,OAAAA,EAAO,KAAOT,EAAgB,KAC9BS,EAAO,OAAST,EAAgB,OACzBS,CACT,CAWA,SAASN,GAAaO,EAAiBC,EAAoC,CACzE,GAAI,CACF,OAAO,IAAI,IAAID,EAAKC,CAAI,CAC1B,OAAQC,EAAA,CACN,MACF,CACF,CAYO,SAASP,GAAYQ,EAAWC,EAAoC,CACzE,GAAID,EAAE,WAAWC,CAAM,EACrB,OAAOD,EAAE,MAAMC,EAAO,MAAM,CAGhC,CASA,SAASC,GAAgBC,EAAYC,EAAoB,CACvD,IAAMC,EAAM,KAAK,IAAIF,EAAG,OAAQC,EAAG,MAAM,EACrCR,EACJ,IAAKA,EAAS,EAAGA,EAASS,GACpBF,EAAGP,CAAM,IAAMQ,EAAGR,CAAM,EADC,EAAEA,EAC/B,CAIF,OAAOA,CACT,CAQO,SAASF,GAAqBY,EAAgC,CACnE,IAAIV,EACJ,QAAWI,KAAKM,EACVV,IAAW,OACbA,EAASI,EAETJ,EAASA,EAAO,MAAM,EAAGM,GAAgBN,EAAQI,CAAC,CAAC,EAGvD,OAAOJ,GAAA,KAAAA,EAAU,EACnB,CC9DO,SAASW,GACd,CAAE,UAAAC,CAAU,EACN,CACN,IAAMC,EAASC,GAAc,EACvBC,EAAYC,GAChB,IAAI,IAAI,mBAAoBH,EAAO,IAAI,CACzC,EACG,KACCI,GAAW,IAAMC,CAAK,CACxB,EAGIC,EAAWJ,EACd,KACCK,EAAIC,GAAY,CACd,GAAM,CAAC,CAAEC,CAAO,EAAIT,EAAO,KAAK,MAAM,aAAa,EACnD,OAAOQ,EAAS,KAAK,CAAC,CAAE,QAAAE,EAAS,QAAAC,CAAQ,IACvCD,IAAYD,GAAWE,EAAQ,SAASF,CAAO,CAChD,GAAKD,EAAS,CAAC,CAClB,CAAC,CACH,EAGFN,EACG,KACCK,EAAIC,GAAY,IAAI,IAAIA,EAAS,IAAIE,GAAW,CAC9C,GAAG,IAAI,IAAI,MAAMA,EAAQ,OAAO,IAAKV,EAAO,IAAI,CAAC,GACjDU,CACF,CAAC,CAAC,CAAC,EACHE,EAAUC,GAAQC,EAAsB,SAAS,KAAM,OAAO,EAC3D,KACCC,EAAOC,GAAM,CAACA,EAAG,SAAW,CAACA,EAAG,OAAO,EACvCC,GAAeX,CAAQ,EACvBM,EAAU,CAAC,CAACI,EAAIP,CAAO,IAAM,CAC3B,GAAIO,EAAG,kBAAkB,QAAS,CAChC,IAAME,EAAKF,EAAG,OAAO,QAAQ,GAAG,EAChC,GAAIE,GAAM,CAACA,EAAG,QAAUL,EAAK,IAAIK,EAAG,IAAI,EAAG,CACzC,IAAMC,EAAMD,EAAG,KAWf,MAAI,CAACF,EAAG,OAAO,QAAQ,aAAa,GAClBH,EAAK,IAAIM,CAAG,IACZV,EACPJ,GAEXW,EAAG,eAAe,EACXI,EAAG,IAAI,IAAID,CAAG,CAAC,EACxB,CACF,CACA,OAAOd,CACT,CAAC,EACDO,EAAUS,GACDC,GAAaD,CAAsB,EAAE,KAC1Cd,EACEgB,GAAQ,CAtIxB,IAAAC,EAuIkB,OAAAA,EAAAC,GAAgC,CAC9B,uBAAwBF,EACxB,uBAAAF,EACA,gBAAiBK,GAAY,EAC7B,eAAgB1B,EAAO,IACzB,CAAC,IALD,KAAAwB,EAKMH,EACV,CACF,CACD,CACH,CACF,CACF,EACG,UAAUF,GAAOQ,GAAYR,EAAK,EAAI,CAAC,EAG5CS,EAAc,CAAC1B,EAAWI,CAAQ,CAAC,EAChC,UAAU,CAAC,CAACE,EAAUC,CAAO,IAAM,CACpBoB,EAAW,mBAAmB,EACtC,YAAYC,GAAsBtB,EAAUC,CAAO,CAAC,CAC5D,CAAC,EAGHV,EAAU,KAAKa,EAAU,IAAMN,CAAQ,CAAC,EACrC,UAAUG,GAAW,CA9J1B,IAAAe,EAiKM,IAAMO,EAAO,IAAI,IAAI/B,EAAO,IAAI,EAG5BgC,EAAW,SAAS,aAAc,eAAgBD,CAAI,EAC1D,GAAIC,IAAa,KAAM,CACrBA,EAAW,GAGX,IAAIC,IAAUT,EAAAxB,EAAO,UAAP,YAAAwB,EAAgB,UAAW,SACpC,MAAM,QAAQS,CAAO,IACxBA,EAAU,CAACA,CAAO,GAGpBC,EAAM,QAAWC,KAAUF,EACzB,QAAWvB,KAAWD,EAAQ,QAAQ,OAAOA,EAAQ,OAAO,EAC1D,GAAI,IAAI,OAAO0B,EAAQ,GAAG,EAAE,KAAKzB,CAAO,EAAG,CACzCsB,EAAW,GACX,MAAME,CACR,CAGJ,SAAS,aAAcF,EAAU,eAAgBD,CAAI,CACvD,CAGA,GAAIC,EACF,QAAWI,KAAWC,GAAqB,UAAU,EACnDD,EAAQ,OAAS,EACvB,CAAC,CACL,CC1FO,SAASE,GACdC,EAAsB,CAAE,QAAAC,CAAQ,EACP,CAGzB,GAAM,CAAE,aAAAC,CAAa,EAAIC,GAAY,EACjCD,EAAa,IAAI,GAAG,IACtBE,GAAU,SAAU,EAAI,EAGxBJ,EAAG,MAAQE,EAAa,IAAI,GAAG,EAC/BF,EAAG,MAAM,EAGTK,GAAY,QAAQ,EACjB,KACCC,GAAMC,GAAU,CAACA,CAAM,CACzB,EACG,UAAU,IAAM,CACf,IAAMC,EAAML,GAAY,EACxBK,EAAI,aAAa,OAAO,GAAG,EAC3B,QAAQ,aAAa,CAAC,EAAG,GAAI,GAAGA,CAAG,EAAE,CACvC,CAAC,GAIP,IAAMC,EAASC,GAAkBV,CAAE,EAC7BW,EAASC,EACbX,EAAQ,KAAKK,GAAMO,EAAoB,CAAC,EACxCC,EAAUd,EAAI,OAAO,EACrBS,CACF,EACG,KACCM,EAAI,IAAMf,EAAG,KAAK,EAClBgB,EAAqB,CACvB,EAGF,OAAOC,EAAc,CAACN,EAAQF,CAAM,CAAC,EAClC,KACCM,EAAI,CAAC,CAACG,EAAOC,CAAK,KAAO,CAAE,MAAAD,EAAO,MAAAC,CAAM,EAAE,EAC1CC,EAAY,CAAC,CACf,CACJ,CAUO,SAASC,GACdrB,EAAsB,CAAE,QAAAC,CAAQ,EACsB,CACtD,IAAMqB,EAAQ,IAAIC,EACZC,EAAQF,EAAM,KAAKG,EAAe,EAAGC,GAAQ,EAAI,CAAC,EAGxDT,EAAc,CACZhB,EAAQ,KAAKK,GAAMO,EAAoB,CAAC,EACxCS,CACF,EAAG,CAACK,EAAGC,IAAUA,CAAK,EACnB,KACCC,GAAwB,OAAO,CACjC,EACG,UAAU,CAAC,CAAE,MAAAX,CAAM,IAAMjB,EAAQ,KAAK,CACrC,OACA,KAAMiB,CACR,CAAC,CAAC,EAGNI,EACG,KACCO,GAAwB,OAAO,CACjC,EACG,UAAU,CAAC,CAAE,MAAAV,CAAM,IAAM,CACpBA,GACFf,GAAU,SAAUe,CAAK,CAC7B,CAAC,EAGLL,EAAUd,EAAG,KAAO,OAAO,EACxB,KACC8B,EAAUN,CAAK,CACjB,EACG,UAAU,IAAMxB,EAAG,MAAM,CAAC,EAM/B,IAAM+B,EAAQC,EAAW,uBAAuB,EAChD,OAAAlB,EAAUiB,EAAO,OAAO,EACrB,UAAU,IAAM/B,EAAG,MAAM,CAAC,EAGtBD,GAAiBC,EAAI,CAAE,QAAAC,CAAQ,CAAC,EACpC,KACCgC,EAAIC,GAASZ,EAAM,KAAKY,CAAK,CAAC,EAC9BC,EAAS,IAAMb,EAAM,SAAS,CAAC,EAC/BP,EAAImB,GAAUE,EAAA,CAAE,IAAKpC,GAAOkC,EAAQ,EACpCd,EAAY,CAAC,CACf,CACJ,CCnHO,SAASiB,GACdC,EAAiB,CAAE,QAAAC,EAAS,OAAAC,CAAO,EACE,CACrC,IAAMC,EAAQ,IAAIC,EACZC,EAAYC,GAAqBN,EAAG,aAAc,EACrD,KACCO,EAAO,OAAO,CAChB,EAGIC,EAAYR,EAAG,cAGfS,EAAOC,EAAW,wBAAyBV,CAAE,EAC7CW,EAAOD,EAAW,uBAAwBV,CAAE,EAGlDY,GAAY,QAAQ,EACjB,UAAUC,GAAUF,EAAK,aACxB,OAAQE,EAAS,OAAS,cAC5B,CAAC,EAGHV,EACG,KACCW,GAAeZ,CAAM,EACrBa,GAAUd,EAAQ,KAAKe,GAAMC,EAAoB,CAAC,CAAC,CACrD,EACG,UAAU,CAAC,CAAC,CAAE,MAAAC,CAAM,EAAG,CAAE,MAAAC,CAAM,CAAC,IAAM,CACrC,OAAQD,EAAM,OAAQ,CAGpB,IAAK,GACHT,EAAK,YAAcU,EAAM,OACrBC,GAAY,oBAAoB,EAChCA,GAAY,2BAA2B,EAC3C,MAGF,IAAK,GACHX,EAAK,YAAcW,GAAY,mBAAmB,EAClD,MAGF,QACE,IAAMC,EAAQC,GAAMJ,EAAM,MAAM,EAChCT,EAAK,YAAcW,GAAY,sBAAuBC,CAAK,CAC/D,CACF,CAAC,EAGL,IAAME,EAAUpB,EACb,KACCqB,EAAI,IAAMb,EAAK,UAAY,EAAE,EAC7Bc,EAAU,CAAC,CAAE,MAAAP,CAAM,IAAMQ,EACvBC,EAAG,GAAGT,EAAM,MAAM,EAAG,EAAE,CAAC,EACxBS,EAAG,GAAGT,EAAM,MAAM,EAAE,CAAC,EAClB,KACCU,GAAY,CAAC,EACbC,GAAQxB,CAAS,EACjBoB,EAAU,CAAC,CAACK,CAAK,IAAMA,CAAK,CAC9B,CACJ,CAAC,EACDC,EAAIC,EAAsB,EAC1BC,GAAM,CACR,EAGF,OAAAV,EAAQ,UAAUW,GAAQvB,EAAK,YAAYuB,CAAI,CAAC,EAChDX,EACG,KACCY,GAASD,GAAQ,CACf,IAAME,EAAUC,GAAmB,UAAWH,CAAI,EAClD,OAAI,OAAOE,GAAY,YACdE,EAGFC,EAAUH,EAAS,QAAQ,EAC/B,KACCI,EAAUrC,CAAK,EACf4B,EAAI,IAAMK,CAAO,CACnB,CACJ,CAAC,CACH,EACG,UAAUA,GAAW,CAElBA,EAAQ,OAAS,IACjBA,EAAQ,WAAa5B,EAAU,WAE/BA,EAAU,SAAS,CAAE,IAAK4B,EAAQ,SAAU,CAAC,CACjD,CAAC,EAGWnC,EACb,KACCM,EAAOkC,EAAqB,EAC5BV,EAAI,CAAC,CAAE,KAAAW,CAAK,IAAMA,CAAI,CACxB,EAIC,KACClB,EAAImB,GAASxC,EAAM,KAAKwC,CAAK,CAAC,EAC9BC,EAAS,IAAMzC,EAAM,SAAS,CAAC,EAC/B4B,EAAIY,GAAUE,EAAA,CAAE,IAAK7C,GAAO2C,EAAQ,CACtC,CACJ,CCpHO,SAASG,GACdC,EAAkB,CAAE,OAAAC,CAAO,EACF,CACzB,OAAOA,EACJ,KACCC,EAAI,CAAC,CAAE,MAAAC,CAAM,IAAM,CACjB,IAAMC,EAAMC,GAAY,EACxB,OAAAD,EAAI,KAAO,GAGXD,EAAQA,EACL,QAAQ,OAAQ,GAAG,EACnB,QAAQ,KAAM,KAAK,EACnB,QAAQ,KAAM,KAAK,EAGtBC,EAAI,OAAS,KAAKD,CAAK,GAChB,CAAE,IAAAC,CAAI,CACf,CAAC,CACH,CACJ,CAUO,SAASE,GACdC,EAAuBC,EACa,CACpC,IAAMC,EAAQ,IAAIC,EACZC,EAAQF,EAAM,KAAKG,EAAe,EAAGC,GAAQ,EAAI,CAAC,EACxD,OAAAJ,EAAM,UAAU,CAAC,CAAE,IAAAL,CAAI,IAAM,CAC3BG,EAAG,aAAa,sBAAuBA,EAAG,IAAI,EAC9CA,EAAG,KAAO,GAAGH,CAAG,EAClB,CAAC,EAGDU,EAAUP,EAAI,OAAO,EAClB,KACCQ,EAAUJ,CAAK,CACjB,EACG,UAAUK,GAAMA,EAAG,eAAe,CAAC,EAGjCjB,GAAiBQ,EAAIC,CAAO,EAChC,KACCS,EAAIC,GAAST,EAAM,KAAKS,CAAK,CAAC,EAC9BC,EAAS,IAAMV,EAAM,SAAS,CAAC,EAC/BP,EAAIgB,GAAUE,EAAA,CAAE,IAAKb,GAAOW,EAAQ,CACtC,CACJ,CCpDO,SAASG,GACdC,EAAiB,CAAE,QAAAC,EAAS,UAAAC,CAAU,EACA,CACtC,IAAMC,EAAQ,IAAIC,EAGZC,EAASC,GAAoB,cAAc,EAC3CC,EAASC,EACbC,EAAUJ,EAAO,SAAS,EAC1BI,EAAUJ,EAAO,OAAO,CAC1B,EACG,KACCK,GAAUC,EAAc,EACxBC,EAAI,IAAMP,EAAM,KAAK,EACrBQ,EAAqB,CACvB,EAGF,OAAAV,EACG,KACCW,GAAkBP,CAAM,EACxBK,EAAI,CAAC,CAAC,CAAE,QAAAG,CAAQ,EAAGC,CAAK,IAAM,CAC5B,IAAMC,EAAQD,EAAM,MAAM,UAAU,EACpC,GAAID,GAAA,MAAAA,EAAS,QAAUE,EAAMA,EAAM,OAAS,CAAC,EAAG,CAC9C,IAAMC,EAAOH,EAAQA,EAAQ,OAAS,CAAC,EACnCG,EAAK,WAAWD,EAAMA,EAAM,OAAS,CAAC,CAAC,IACzCA,EAAMA,EAAM,OAAS,CAAC,EAAIC,EAC9B,MACED,EAAM,OAAS,EAEjB,OAAOA,CACT,CAAC,CACH,EACG,UAAUA,GAASjB,EAAG,UAAYiB,EAChC,KAAK,EAAE,EACP,QAAQ,MAAO,QAAQ,CAC1B,EAGJf,EACG,KACCiB,EAAO,CAAC,CAAE,KAAAC,CAAK,IAAMA,IAAS,QAAQ,CACxC,EACG,UAAUC,GAAO,CAChB,OAAQA,EAAI,KAAM,CAGhB,IAAK,aAEDrB,EAAG,UAAU,QACbK,EAAM,iBAAmBA,EAAM,MAAM,SAErCA,EAAM,MAAQL,EAAG,WACnB,KACJ,CACF,CAAC,EAGWC,EACb,KACCkB,EAAOG,EAAqB,EAC5BV,EAAI,CAAC,CAAE,KAAAW,CAAK,IAAMA,CAAI,CACxB,EAIC,KACCC,EAAIC,GAAStB,EAAM,KAAKsB,CAAK,CAAC,EAC9BC,EAAS,IAAMvB,EAAM,SAAS,CAAC,EAC/BS,EAAI,KAAO,CAAE,IAAKZ,CAAG,EAAE,CACzB,CACJ,CCjDO,SAAS2B,GACdC,EAAiB,CAAE,OAAAC,EAAQ,UAAAC,CAAU,EACN,CAC/B,IAAMC,EAASC,GAAc,EAC7B,GAAI,CACF,IAAMC,EAAUC,GAAkBH,EAAO,OAAQF,CAAM,EAGjDM,EAASC,GAAoB,eAAgBR,CAAE,EAC/CS,EAASD,GAAoB,gBAAiBR,CAAE,EAGtDU,EAAwBV,EAAI,OAAO,EAChC,KACCW,EAAO,CAAC,CAAE,OAAAC,CAAO,IACfA,aAAkB,SAAW,CAAC,CAACA,EAAO,QAAQ,GAAG,CAClD,CACH,EACG,UAAU,IAAMC,GAAU,SAAU,EAAK,CAAC,EAG/CX,EACG,KACCS,EAAO,CAAC,CAAE,KAAAG,CAAK,IAAMA,IAAS,QAAQ,CACxC,EACG,UAAUC,GAAO,CAChB,IAAMC,EAASC,GAAiB,EAChC,OAAQF,EAAI,KAAM,CAGhB,IAAK,QACH,GAAIC,IAAWT,EAAO,CACpB,IAAMW,EAAU,IAAI,IACpB,QAAWC,KAAUC,EACnB,sBAAuBX,CACzB,EAAG,CACD,IAAMY,EAAUF,EAAO,kBACvBD,EAAQ,IAAIC,EAAQ,WAClBE,EAAQ,aAAa,eAAe,CACtC,CAAC,CACH,CAGA,GAAIH,EAAQ,KAAM,CAChB,GAAM,CAAC,CAACI,CAAI,CAAC,EAAI,CAAC,GAAGJ,CAAO,EAAE,KAAK,CAAC,CAAC,CAAEK,CAAC,EAAG,CAAC,CAAEC,CAAC,IAAMA,EAAID,CAAC,EAC1DD,EAAK,MAAM,CACb,CAGAP,EAAI,MAAM,CACZ,CACA,MAGF,IAAK,SACL,IAAK,MACHF,GAAU,SAAU,EAAK,EACzBN,EAAM,KAAK,EACX,MAGF,IAAK,UACL,IAAK,YACH,GAAI,OAAOS,GAAW,YACpBT,EAAM,MAAM,MACP,CACL,IAAMkB,EAAM,CAAClB,EAAO,GAAGa,EACrB,wDACAX,CACF,CAAC,EACKiB,EAAI,KAAK,IAAI,GACjB,KAAK,IAAI,EAAGD,EAAI,QAAQT,CAAM,CAAC,EAAIS,EAAI,QACrCV,EAAI,OAAS,UAAY,GAAK,IAE9BU,EAAI,MAAM,EACdA,EAAIC,CAAC,EAAE,MAAM,CACf,CAGAX,EAAI,MAAM,EACV,MAGF,QACMR,IAAUU,GAAiB,GAC7BV,EAAM,MAAM,CAClB,CACF,CAAC,EAGLL,EACG,KACCS,EAAO,CAAC,CAAE,KAAAG,CAAK,IAAMA,IAAS,QAAQ,CACxC,EACG,UAAUC,GAAO,CAChB,OAAQA,EAAI,KAAM,CAGhB,IAAK,IACL,IAAK,IACL,IAAK,IACHR,EAAM,MAAM,EACZA,EAAM,OAAO,EAGbQ,EAAI,MAAM,EACV,KACJ,CACF,CAAC,EAGL,IAAMY,EAASC,GAAiBrB,EAAO,CAAE,QAAAF,CAAQ,CAAC,EAClD,OAAOwB,EACLF,EACAG,GAAkBrB,EAAQ,CAAE,QAAAJ,EAAS,OAAAsB,CAAO,CAAC,CAC/C,EACG,KACCI,GAGE,GAAGC,GAAqB,eAAgBhC,CAAE,EACvC,IAAIiC,GAASC,GAAiBD,EAAO,CAAE,OAAAN,CAAO,CAAC,CAAC,EAGnD,GAAGK,GAAqB,iBAAkBhC,CAAE,EACzC,IAAIiC,GAASE,GAAmBF,EAAO,CAAE,QAAA5B,EAAS,UAAAH,CAAU,CAAC,CAAC,CACnE,CACF,CAGJ,OAASkC,EAAK,CACZ,OAAApC,EAAG,OAAS,GACLqC,EACT,CACF,CCnKO,SAASC,GACdC,EAAiB,CAAE,OAAAC,EAAQ,UAAAC,CAAU,EACG,CACxC,OAAOC,EAAc,CACnBF,EACAC,EACG,KACCE,EAAUC,GAAY,CAAC,EACvBC,EAAOC,GAAO,CAAC,CAACA,EAAI,aAAa,IAAI,GAAG,CAAC,CAC3C,CACJ,CAAC,EACE,KACCC,EAAI,CAAC,CAACC,EAAOF,CAAG,IAAMG,GAAuBD,EAAM,MAAM,EACvDF,EAAI,aAAa,IAAI,GAAG,CAC1B,CAAC,EACDC,EAAIG,GAAM,CA1FhB,IAAAC,EA2FQ,IAAMC,EAAQ,IAAI,IAGZC,EAAK,SAAS,mBAAmBd,EAAI,WAAW,SAAS,EAC/D,QAASe,EAAOD,EAAG,SAAS,EAAGC,EAAMA,EAAOD,EAAG,SAAS,EACtD,IAAIF,EAAAG,EAAK,gBAAL,MAAAH,EAAoB,aAAc,CACpC,IAAMI,EAAWD,EAAK,YAChBE,EAAWN,EAAGK,CAAQ,EACxBC,EAAS,OAASD,EAAS,QAC7BH,EAAM,IAAIE,EAAmBE,CAAQ,CACzC,CAIF,OAAW,CAACF,EAAMG,CAAI,IAAKL,EAAO,CAChC,GAAM,CAAE,WAAAM,CAAW,EAAIC,EAAE,OAAQ,KAAMF,CAAI,EAC3CH,EAAK,YAAY,GAAG,MAAM,KAAKI,CAAU,CAAC,CAC5C,CAGA,MAAO,CAAE,IAAKnB,EAAI,MAAAa,CAAM,CAC1B,CAAC,CACH,CACJ,CCPO,SAASQ,GACdC,EAAiB,CAAE,UAAAC,EAAW,MAAAC,CAAM,EACf,CACrB,IAAMC,EAASH,EAAG,QAAqB,UAAU,EAC3CI,EACJD,EAAO,UACPA,EAAO,cAAe,UAGxB,OAAOE,EAAc,CAACH,EAAOD,CAAS,CAAC,EACpC,KACCK,EAAI,CAAC,CAAC,CAAE,OAAAC,EAAQ,OAAAC,CAAO,EAAG,CAAE,OAAQ,CAAE,EAAAC,CAAE,CAAE,CAAC,KACzCD,EAASA,EACL,KAAK,IAAIJ,EAAQ,KAAK,IAAI,EAAGK,EAAIF,CAAM,CAAC,EACxCH,EACG,CACL,OAAAI,EACA,OAAQC,GAAKF,EAASH,CACxB,EACD,EACDM,EAAqB,CAACC,EAAGC,IACvBD,EAAE,SAAWC,EAAE,QACfD,EAAE,SAAWC,EAAE,MAChB,CACH,CACJ,CAuBO,SAASC,GACdb,EAAiBc,EACe,CADf,IAAAC,EAAAD,EAAE,SAAAE,CA5JrB,EA4JmBD,EAAcE,EAAAC,GAAdH,EAAc,CAAZ,YAEnB,IAAMI,EAAQC,EAAW,0BAA2BpB,CAAE,EAChD,CAAE,EAAAS,CAAE,EAAIY,GAAiBF,CAAK,EACpC,OAAOG,EAAM,IAAM,CACjB,IAAMC,EAAQ,IAAIC,EACZC,EAAQF,EAAM,KAAKG,EAAe,EAAGC,GAAQ,EAAI,CAAC,EAClDC,EAAQL,EACX,KACCM,GAAU,EAAGC,EAAuB,CACtC,EAGF,OAAAF,EAAM,KAAKG,GAAef,CAAO,CAAC,EAC/B,UAAU,CAGT,KAAK,CAAC,CAAE,OAAAR,CAAO,EAAG,CAAE,OAAQD,CAAO,CAAC,EAAG,CACrCY,EAAM,MAAM,OAAS,GAAGX,EAAS,EAAIC,CAAC,KACtCT,EAAG,MAAM,IAAY,GAAGO,CAAM,IAChC,EAGA,UAAW,CACTY,EAAM,MAAM,OAAS,GACrBnB,EAAG,MAAM,IAAY,EACvB,CACF,CAAC,EAGH4B,EAAM,KAAKI,GAAM,CAAC,EACf,UAAU,IAAM,CACf,QAAWC,KAAQC,EAAY,8BAA+BlC,CAAE,EAAG,CACjE,GAAI,CAACiC,EAAK,aACR,SACF,IAAME,EAAYF,EAAK,QAAqB,yBAAyB,EACrE,GAAI,OAAOE,GAAc,YAAa,CACpC,IAAM5B,EAAS0B,EAAK,UAAYE,EAAU,UACpC,CAAE,OAAA3B,CAAO,EAAI4B,GAAeD,CAAS,EAC3CA,EAAU,SAAS,CACjB,IAAK5B,EAASC,EAAS,CACzB,CAAC,CACH,CACF,CACF,CAAC,EAGH6B,GAAKH,EAA8B,kBAAmBlC,CAAE,CAAC,EACtD,KACCsC,GAASC,GAASC,EAAUD,EAAO,OAAO,EACvC,KACCE,GAAUC,EAAc,EACxBpC,EAAI,IAAMiC,CAAK,EACfI,EAAUlB,CAAK,CACjB,CACF,CACF,EACG,UAAUc,GAAS,CAClB,IAAMK,EAAQxB,EAA6B,QAAQmB,EAAM,OAAO,IAAI,EACxDnB,EAAW,qBAAqBmB,EAAM,EAAE,IAAI,EACpD,aAAa,gBAAiB,GAAGK,EAAM,OAAO,EAAE,CACtD,CAAC,EAGE7C,GAAaC,EAAIiB,CAAO,EAC5B,KACC4B,EAAIC,GAASvB,EAAM,KAAKuB,CAAK,CAAC,EAC9BC,EAAS,IAAMxB,EAAM,SAAS,CAAC,EAC/BjB,EAAIwC,GAAUE,EAAA,CAAE,IAAKhD,GAAO8C,EAAQ,CACtC,CACJ,CAAC,CACH,CCxKO,SAASG,GACdC,EAAcC,EACW,CACzB,GAAI,OAAOA,GAAS,YAAa,CAC/B,IAAMC,EAAM,gCAAgCF,CAAI,IAAIC,CAAI,GACxD,OAAOE,GAGLC,GAAqB,GAAGF,CAAG,kBAAkB,EAC1C,KACCG,GAAW,IAAMC,CAAK,EACtBC,EAAIC,IAAY,CACd,QAASA,EAAQ,QACnB,EAAE,EACFC,GAAe,CAAC,CAAC,CACnB,EAGFL,GAAkBF,CAAG,EAClB,KACCG,GAAW,IAAMC,CAAK,EACtBC,EAAIG,IAAS,CACX,MAAOA,EAAK,iBACZ,MAAOA,EAAK,WACd,EAAE,EACFD,GAAe,CAAC,CAAC,CACnB,CACJ,EACG,KACCF,EAAI,CAAC,CAACC,EAASE,CAAI,IAAOC,IAAA,GAAKH,GAAYE,EAAO,CACpD,CAGJ,KAAO,CACL,IAAMR,EAAM,gCAAgCF,CAAI,GAChD,OAAOI,GAAkBF,CAAG,EACzB,KACCK,EAAIG,IAAS,CACX,aAAcA,EAAK,YACrB,EAAE,EACFD,GAAe,CAAC,CAAC,CACnB,CACJ,CACF,CC3CO,SAASG,GACdC,EAAcC,EACW,CACzB,IAAMC,EAAM,WAAWF,CAAI,oBAAoB,mBAAmBC,CAAO,CAAC,GAC1E,OAAOE,GAGLC,GAAqB,GAAGF,CAAG,4BAA4B,EACpD,KACCG,GAAW,IAAMC,CAAK,EACtBC,EAAI,CAAC,CAAE,SAAAC,CAAS,KAAO,CACrB,QAASA,CACX,EAAE,EACFC,GAAe,CAAC,CAAC,CACnB,EAGFL,GAA2BF,CAAG,EAC3B,KACCG,GAAW,IAAMC,CAAK,EACtBC,EAAI,CAAC,CAAE,WAAAG,EAAY,YAAAC,CAAY,KAAO,CACpC,MAAOD,EACP,MAAOC,CACT,EAAE,EACFF,GAAe,CAAC,CAAC,CACnB,CACJ,EACG,KACCF,EAAI,CAAC,CAACK,EAASC,CAAI,IAAOC,IAAA,GAAKF,GAAYC,EAAO,CACpD,CACJ,CCtBO,SAASE,GACdC,EACyB,CAGzB,IAAIC,EAAQD,EAAI,MAAM,qCAAqC,EAC3D,GAAIC,EAAO,CACT,GAAM,CAAC,CAAEC,EAAMC,CAAI,EAAIF,EACvB,OAAOG,GAA2BF,EAAMC,CAAI,CAC9C,CAIA,GADAF,EAAQD,EAAI,MAAM,oCAAoC,EAClDC,EAAO,CACT,GAAM,CAAC,CAAEI,EAAMC,CAAI,EAAIL,EACvB,OAAOM,GAA2BF,EAAMC,CAAI,CAC9C,CAGA,OAAOE,CACT,CCpBA,IAAIC,GAgBG,SAASC,GACdC,EACoB,CACpB,OAAOF,QAAWG,EAAM,IAAM,CAC5B,IAAMC,EAAS,SAAsB,WAAY,cAAc,EAC/D,GAAIA,EACF,OAAOC,EAAGD,CAAM,EAKhB,GADYE,GAAqB,SAAS,EAClC,OAAQ,CACd,IAAMC,EAAU,SAA0B,WAAW,EACrD,GAAI,EAAEA,GAAWA,EAAQ,QACvB,OAAOC,CACX,CAGA,OAAOC,GAAiBP,EAAG,IAAI,EAC5B,KACCQ,EAAIC,GAAS,SAAS,WAAYA,EAAO,cAAc,CAAC,CAC1D,CAEN,CAAC,EACE,KACCC,GAAW,IAAMJ,CAAK,EACtBK,EAAOF,GAAS,OAAO,KAAKA,CAAK,EAAE,OAAS,CAAC,EAC7CG,EAAIH,IAAU,CAAE,MAAAA,CAAM,EAAE,EACxBI,EAAY,CAAC,CACf,EACJ,CASO,SAASC,GACdd,EAC+B,CAC/B,IAAMe,EAAQC,EAAW,uBAAwBhB,CAAE,EACnD,OAAOC,EAAM,IAAM,CACjB,IAAMgB,EAAQ,IAAIC,EAClB,OAAAD,EAAM,UAAU,CAAC,CAAE,MAAAR,CAAM,IAAM,CAC7BM,EAAM,YAAYI,GAAkBV,CAAK,CAAC,EAC1CM,EAAM,UAAU,IAAI,+BAA+B,CACrD,CAAC,EAGMhB,GAAYC,CAAE,EAClB,KACCQ,EAAIY,GAASH,EAAM,KAAKG,CAAK,CAAC,EAC9BC,EAAS,IAAMJ,EAAM,SAAS,CAAC,EAC/BL,EAAIQ,GAAUE,EAAA,CAAE,IAAKtB,GAAOoB,EAAQ,CACtC,CACJ,CAAC,CACH,CCtDO,SAASG,GACdC,EAAiB,CAAE,UAAAC,EAAW,QAAAC,CAAQ,EACpB,CAClB,OAAOC,GAAiB,SAAS,IAAI,EAClC,KACCC,EAAU,IAAMC,GAAgBL,EAAI,CAAE,QAAAE,EAAS,UAAAD,CAAU,CAAC,CAAC,EAC3DK,EAAI,CAAC,CAAE,OAAQ,CAAE,EAAAC,CAAE,CAAE,KACZ,CACL,OAAQA,GAAK,EACf,EACD,EACDC,GAAwB,QAAQ,CAClC,CACJ,CAaO,SAASC,GACdT,EAAiBU,EACY,CAC7B,OAAOC,EAAM,IAAM,CACjB,IAAMC,EAAQ,IAAIC,EAClB,OAAAD,EAAM,UAAU,CAGd,KAAK,CAAE,OAAAE,CAAO,EAAG,CACfd,EAAG,OAASc,CACd,EAGA,UAAW,CACTd,EAAG,OAAS,EACd,CACF,CAAC,GAICe,EAAQ,wBAAwB,EAC5BC,EAAG,CAAE,OAAQ,EAAM,CAAC,EACpBjB,GAAUC,EAAIU,CAAO,GAExB,KACCO,EAAIC,GAASN,EAAM,KAAKM,CAAK,CAAC,EAC9BC,EAAS,IAAMP,EAAM,SAAS,CAAC,EAC/BN,EAAIY,GAAUE,EAAA,CAAE,IAAKpB,GAAOkB,EAAQ,CACtC,CACJ,CAAC,CACH,CCfO,SAASG,GACdC,EAAiB,CAAE,UAAAC,EAAW,QAAAC,CAAQ,EACT,CAC7B,IAAMC,EAAQ,IAAI,IAGZC,EAAUC,EAA+B,gBAAiBL,CAAE,EAClE,QAAWM,KAAUF,EAAS,CAC5B,IAAMG,EAAK,mBAAmBD,EAAO,KAAK,UAAU,CAAC,CAAC,EAChDE,EAASC,GAAmB,QAAQF,CAAE,IAAI,EAC5C,OAAOC,GAAW,aACpBL,EAAM,IAAIG,EAAQE,CAAM,CAC5B,CAGA,IAAME,EAAUR,EACb,KACCS,GAAwB,QAAQ,EAChCC,EAAI,CAAC,CAAE,OAAAC,CAAO,IAAM,CAClB,IAAMC,EAAOC,GAAoB,MAAM,EACjCC,EAAOC,EAAW,wBAAyBH,CAAI,EACrD,OAAOD,EAAS,IACdG,EAAK,UACLF,EAAK,UAET,CAAC,EACDI,GAAM,CACR,EAqFF,OAlFmBC,GAAiB,SAAS,IAAI,EAC9C,KACCR,GAAwB,QAAQ,EAGhCS,EAAUC,GAAQC,EAAM,IAAM,CAC5B,IAAIC,EAA4B,CAAC,EACjC,OAAOC,EAAG,CAAC,GAAGrB,CAAK,EAAE,OAAO,CAACsB,EAAO,CAACnB,EAAQE,CAAM,IAAM,CACvD,KAAOe,EAAK,QACGpB,EAAM,IAAIoB,EAAKA,EAAK,OAAS,CAAC,CAAC,EACnC,SAAWf,EAAO,SACzBe,EAAK,IAAI,EAOb,IAAIG,EAASlB,EAAO,UACpB,KAAO,CAACkB,GAAUlB,EAAO,eACvBA,EAASA,EAAO,cAChBkB,EAASlB,EAAO,UAIlB,IAAImB,EAASnB,EAAO,aACpB,KAAOmB,EAAQA,EAASA,EAAO,aAC7BD,GAAUC,EAAO,UAGnB,OAAOF,EAAM,IACX,CAAC,GAAGF,EAAO,CAAC,GAAGA,EAAMjB,CAAM,CAAC,EAAE,QAAQ,EACtCoB,CACF,CACF,EAAG,IAAI,GAAkC,CAAC,CAC5C,CAAC,EACE,KAGCd,EAAIa,GAAS,IAAI,IAAI,CAAC,GAAGA,CAAK,EAAE,KAAK,CAAC,CAAC,CAAEG,CAAC,EAAG,CAAC,CAAEC,CAAC,IAAMD,EAAIC,CAAC,CAAC,CAAC,EAC9DC,GAAkBpB,CAAO,EAGzBU,EAAU,CAAC,CAACK,EAAOM,CAAM,IAAM9B,EAC5B,KACC+B,GAAK,CAAC,CAACC,EAAMC,CAAI,EAAG,CAAE,OAAQ,CAAE,EAAAC,CAAE,EAAG,KAAAC,CAAK,IAAM,CAC9C,IAAMC,EAAOF,EAAIC,EAAK,QAAU,KAAK,MAAMf,EAAK,MAAM,EAGtD,KAAOa,EAAK,QAAQ,CAClB,GAAM,CAAC,CAAER,CAAM,EAAIQ,EAAK,CAAC,EACzB,GAAIR,EAASK,EAASI,GAAKE,EACzBJ,EAAO,CAAC,GAAGA,EAAMC,EAAK,MAAM,CAAE,MAE9B,MAEJ,CAGA,KAAOD,EAAK,QAAQ,CAClB,GAAM,CAAC,CAAEP,CAAM,EAAIO,EAAKA,EAAK,OAAS,CAAC,EACvC,GAAIP,EAASK,GAAUI,GAAK,CAACE,EAC3BH,EAAO,CAACD,EAAK,IAAI,EAAI,GAAGC,CAAI,MAE5B,MAEJ,CAGA,MAAO,CAACD,EAAMC,CAAI,CACpB,EAAG,CAAC,CAAC,EAAG,CAAC,GAAGT,CAAK,CAAC,CAAC,EACnBa,EAAqB,CAACV,EAAGC,IACvBD,EAAE,CAAC,IAAMC,EAAE,CAAC,GACZD,EAAE,CAAC,IAAMC,EAAE,CAAC,CACb,CACH,CACF,CACF,CACF,CACF,EAIC,KACCjB,EAAI,CAAC,CAACqB,EAAMC,CAAI,KAAO,CACrB,KAAMD,EAAK,IAAI,CAAC,CAACV,CAAI,IAAMA,CAAI,EAC/B,KAAMW,EAAK,IAAI,CAAC,CAACX,CAAI,IAAMA,CAAI,CACjC,EAAE,EAGFgB,EAAU,CAAE,KAAM,CAAC,EAAG,KAAM,CAAC,CAAE,CAAC,EAChCC,GAAY,EAAG,CAAC,EAChB5B,EAAI,CAAC,CAACgB,EAAGC,CAAC,IAGJD,EAAE,KAAK,OAASC,EAAE,KAAK,OAClB,CACL,KAAMA,EAAE,KAAK,MAAM,KAAK,IAAI,EAAGD,EAAE,KAAK,OAAS,CAAC,EAAGC,EAAE,KAAK,MAAM,EAChE,KAAM,CAAC,CACT,EAIO,CACL,KAAMA,EAAE,KAAK,MAAM,EAAE,EACrB,KAAMA,EAAE,KAAK,MAAM,EAAGA,EAAE,KAAK,OAASD,EAAE,KAAK,MAAM,CACrD,CAEH,CACH,CACJ,CAYO,SAASa,GACdzC,EAAiB,CAAE,UAAAC,EAAW,QAAAC,EAAS,MAAAwC,EAAO,QAAAC,CAAQ,EACd,CACxC,OAAOrB,EAAM,IAAM,CACjB,IAAMsB,EAAQ,IAAIC,EACZC,EAAQF,EAAM,KAAKG,EAAe,EAAGC,GAAQ,EAAI,CAAC,EAoBxD,GAnBAJ,EAAM,UAAU,CAAC,CAAE,KAAAX,EAAM,KAAAC,CAAK,IAAM,CAGlC,OAAW,CAAC5B,CAAM,IAAK4B,EACrB5B,EAAO,UAAU,OAAO,sBAAsB,EAC9CA,EAAO,UAAU,OAAO,sBAAsB,EAIhD,OAAW,CAACmB,EAAO,CAACnB,CAAM,CAAC,IAAK2B,EAAK,QAAQ,EAC3C3B,EAAO,UAAU,IAAI,sBAAsB,EAC3CA,EAAO,UAAU,OACf,uBACAmB,IAAUQ,EAAK,OAAS,CAC1B,CAEJ,CAAC,EAGGgB,EAAQ,YAAY,EAAG,CAGzB,IAAMC,EAAUC,EACdlD,EAAU,KAAKmD,GAAa,CAAC,EAAGxC,EAAI,IAAG,EAAY,CAAC,EACpDX,EAAU,KAAKmD,GAAa,GAAG,EAAGxC,EAAI,IAAM,QAAiB,CAAC,CAChE,EAGAgC,EACG,KACCS,EAAO,CAAC,CAAE,KAAApB,CAAK,IAAMA,EAAK,OAAS,CAAC,EACpCH,GAAkBY,EAAM,KAAKY,GAAUC,EAAc,CAAC,CAAC,EACvDC,GAAeN,CAAO,CACxB,EACG,UAAU,CAAC,CAAC,CAAC,CAAE,KAAAjB,CAAK,CAAC,EAAGwB,CAAQ,IAAM,CACrC,GAAM,CAACnD,CAAM,EAAI2B,EAAKA,EAAK,OAAS,CAAC,EACrC,GAAI3B,EAAO,aAAc,CAGvB,IAAMoD,EAAYC,GAAoBrD,CAAM,EAC5C,GAAI,OAAOoD,GAAc,YAAa,CACpC,IAAMhC,EAASpB,EAAO,UAAYoD,EAAU,UACtC,CAAE,OAAA7C,CAAO,EAAI+C,GAAeF,CAAS,EAC3CA,EAAU,SAAS,CACjB,IAAKhC,EAASb,EAAS,EACvB,SAAA4C,CACF,CAAC,CACH,CACF,CACF,CAAC,CACP,CAGA,OAAIR,EAAQ,qBAAqB,GAC/BhD,EACG,KACC4D,EAAUf,CAAK,EACfnC,GAAwB,QAAQ,EAChCyC,GAAa,GAAG,EAChBU,GAAK,CAAC,EACND,EAAUlB,EAAQ,KAAKmB,GAAK,CAAC,CAAC,CAAC,EAC/BC,GAAO,CAAE,MAAO,GAAI,CAAC,EACrBP,GAAeZ,CAAK,CACtB,EACG,UAAU,CAAC,CAAC,CAAE,CAAE,KAAAX,CAAK,CAAC,IAAM,CAC3B,IAAM+B,EAAMC,GAAY,EAGlB3D,EAAS2B,EAAKA,EAAK,OAAS,CAAC,EACnC,GAAI3B,GAAUA,EAAO,OAAQ,CAC3B,GAAM,CAAC4D,CAAM,EAAI5D,EACX,CAAE,KAAA6D,CAAK,EAAI,IAAI,IAAID,EAAO,IAAI,EAChCF,EAAI,OAASG,IACfH,EAAI,KAAOG,EACX,QAAQ,aAAa,CAAC,EAAG,GAAI,GAAGH,CAAG,EAAE,EAIzC,MACEA,EAAI,KAAO,GACX,QAAQ,aAAa,CAAC,EAAG,GAAI,GAAGA,CAAG,EAAE,CAEzC,CAAC,EAGAjE,GAAqBC,EAAI,CAAE,UAAAC,EAAW,QAAAC,CAAQ,CAAC,EACnD,KACCkE,EAAIC,GAASzB,EAAM,KAAKyB,CAAK,CAAC,EAC9BC,EAAS,IAAM1B,EAAM,SAAS,CAAC,EAC/BhC,EAAIyD,GAAUE,EAAA,CAAE,IAAKvE,GAAOqE,EAAQ,CACtC,CACJ,CAAC,CACH,CC9RO,SAASG,GACdC,EAAkB,CAAE,UAAAC,EAAW,MAAAC,EAAO,QAAAC,CAAQ,EACvB,CAGvB,IAAMC,EAAaH,EAChB,KACCI,EAAI,CAAC,CAAE,OAAQ,CAAE,EAAAC,CAAE,CAAE,IAAMA,CAAC,EAC5BC,GAAY,EAAG,CAAC,EAChBF,EAAI,CAAC,CAAC,EAAGG,CAAC,IAAM,EAAIA,GAAKA,EAAI,CAAC,EAC9BC,EAAqB,CACvB,EAGIC,EAAUR,EACb,KACCG,EAAI,CAAC,CAAE,OAAAM,CAAO,IAAMA,CAAM,CAC5B,EAGF,OAAOC,EAAc,CAACF,EAASN,CAAU,CAAC,EACvC,KACCC,EAAI,CAAC,CAACM,EAAQE,CAAS,IAAM,EAAEF,GAAUE,EAAU,EACnDJ,EAAqB,EACrBK,EAAUX,EAAQ,KAAKY,GAAK,CAAC,CAAC,CAAC,EAC/BC,GAAQ,EAAI,EACZC,GAAO,CAAE,MAAO,GAAI,CAAC,EACrBZ,EAAIa,IAAW,CAAE,OAAAA,CAAO,EAAE,CAC5B,CACJ,CAYO,SAASC,GACdC,EAAiB,CAAE,UAAAnB,EAAW,QAAAoB,EAAS,MAAAnB,EAAO,QAAAC,CAAQ,EACpB,CAClC,IAAMmB,EAAQ,IAAIC,EACZC,EAAQF,EAAM,KAAKG,EAAe,EAAGT,GAAQ,EAAI,CAAC,EACxD,OAAAM,EAAM,UAAU,CAGd,KAAK,CAAE,OAAAJ,CAAO,EAAG,CACfE,EAAG,OAASF,EACRA,GACFE,EAAG,aAAa,WAAY,IAAI,EAChCA,EAAG,KAAK,GAERA,EAAG,gBAAgB,UAAU,CAEjC,EAGA,UAAW,CACTA,EAAG,MAAM,IAAM,GACfA,EAAG,OAAS,GACZA,EAAG,gBAAgB,UAAU,CAC/B,CACF,CAAC,EAGDC,EACG,KACCP,EAAUU,CAAK,EACfE,GAAwB,QAAQ,CAClC,EACG,UAAU,CAAC,CAAE,OAAAC,CAAO,IAAM,CACzBP,EAAG,MAAM,IAAM,GAAGO,EAAS,EAAE,IAC/B,CAAC,EAGLC,EAAUR,EAAI,OAAO,EAClB,UAAUS,GAAM,CACfA,EAAG,eAAe,EAClB,OAAO,SAAS,CAAE,IAAK,CAAE,CAAC,CAC5B,CAAC,EAGI9B,GAAeqB,EAAI,CAAE,UAAAnB,EAAW,MAAAC,EAAO,QAAAC,CAAQ,CAAC,EACpD,KACC2B,EAAIC,GAAST,EAAM,KAAKS,CAAK,CAAC,EAC9BC,EAAS,IAAMV,EAAM,SAAS,CAAC,EAC/BjB,EAAI0B,GAAUE,EAAA,CAAE,IAAKb,GAAOW,EAAQ,CACtC,CACJ,CClHO,SAASG,GACd,CAAE,UAAAC,EAAW,UAAAC,CAAU,EACjB,CACND,EACG,KACCE,EAAU,IAAMC,EAAY,cAAc,CAAC,EAC3CC,GAASC,GAAMC,GAAuBD,CAAE,EACrC,KACCE,EAAUP,EAAU,KAAKQ,GAAK,CAAC,CAAC,CAAC,EACjCC,EAAOC,GAAWA,CAAO,EACzBC,EAAI,IAAMN,CAAE,EACZO,GAAK,CAAC,CACR,CACF,EACAH,EAAOJ,GAAMA,EAAG,YAAcA,EAAG,WAAW,EAC5CD,GAASC,GAAM,CACb,IAAMQ,EAAOR,EAAG,UACVS,EAAOT,EAAG,QAAQ,GAAG,GAAKA,EAIhC,OAHAS,EAAK,MAAQD,EAGRE,EAAQ,kBAAkB,EAIxBC,GAAoBF,EAAM,CAAE,UAAAb,CAAU,CAAC,EAC3C,KACCM,EAAUP,EAAU,KAAKQ,GAAK,CAAC,CAAC,CAAC,EACjCS,EAAS,IAAMH,EAAK,gBAAgB,OAAO,CAAC,CAC9C,EAPOI,CAQX,CAAC,CACH,EACG,UAAU,EAGXH,EAAQ,kBAAkB,GAC5Bf,EACG,KACCE,EAAU,IAAMC,EAAY,YAAY,CAAC,EACzCC,GAASC,GAAMW,GAAoBX,EAAI,CAAE,UAAAJ,CAAU,CAAC,CAAC,CACvD,EACG,UAAU,CACnB,CCpDO,SAASkB,GACd,CAAE,UAAAC,EAAW,QAAAC,CAAQ,EACf,CACND,EACG,KACCE,EAAU,IAAMC,EACd,2BACF,CAAC,EACDC,EAAIC,GAAM,CACRA,EAAG,cAAgB,GACnBA,EAAG,QAAU,EACf,CAAC,EACDC,GAASD,GAAME,EAAUF,EAAI,QAAQ,EAClC,KACCG,GAAU,IAAMH,EAAG,UAAU,SAAS,0BAA0B,CAAC,EACjEI,EAAI,IAAMJ,CAAE,CACd,CACF,EACAK,GAAeT,CAAO,CACxB,EACG,UAAU,CAAC,CAACI,EAAIM,CAAM,IAAM,CAC3BN,EAAG,UAAU,OAAO,0BAA0B,EAC1CM,IACFN,EAAG,QAAU,GACjB,CAAC,CACP,CC9BA,SAASO,IAAyB,CAChC,MAAO,qBAAqB,KAAK,UAAU,SAAS,CACtD,CAiBO,SAASC,GACd,CAAE,UAAAC,CAAU,EACN,CACNA,EACG,KACCC,EAAU,IAAMC,EAAY,qBAAqB,CAAC,EAClDC,EAAIC,GAAMA,EAAG,gBAAgB,mBAAmB,CAAC,EACjDC,EAAOP,EAAa,EACpBQ,GAASF,GAAMG,EAAUH,EAAI,YAAY,EACtC,KACCI,EAAI,IAAMJ,CAAE,CACd,CACF,CACF,EACG,UAAUA,GAAM,CACf,IAAMK,EAAML,EAAG,UAGXK,IAAQ,EACVL,EAAG,UAAY,EAGNK,EAAML,EAAG,eAAiBA,EAAG,eACtCA,EAAG,UAAYK,EAAM,EAEzB,CAAC,CACP,CCpCO,SAASC,GACd,CAAE,UAAAC,EAAW,QAAAC,CAAQ,EACf,CACNC,EAAc,CAACC,GAAY,QAAQ,EAAGF,CAAO,CAAC,EAC3C,KACCG,EAAI,CAAC,CAACC,EAAQC,CAAM,IAAMD,GAAU,CAACC,CAAM,EAC3CC,EAAUF,GAAUG,EAAGH,CAAM,EAC1B,KACCI,GAAMJ,EAAS,IAAM,GAAG,CAC1B,CACF,EACAK,GAAeV,CAAS,CAC1B,EACG,UAAU,CAAC,CAACK,EAAQ,CAAE,OAAQ,CAAE,EAAAM,CAAE,CAAC,CAAC,IAAM,CACzC,GAAIN,EACF,SAAS,KAAK,aAAa,qBAAsB,EAAE,EACnD,SAAS,KAAK,MAAM,IAAM,IAAIM,CAAC,SAC1B,CACL,IAAMC,EAAQ,GAAK,SAAS,SAAS,KAAK,MAAM,IAAK,EAAE,EACvD,SAAS,KAAK,gBAAgB,oBAAoB,EAClD,SAAS,KAAK,MAAM,IAAM,GACtBA,GACF,OAAO,SAAS,EAAGA,CAAK,CAC5B,CACF,CAAC,CACP,CC7DK,OAAO,UACV,OAAO,QAAU,SAAUC,EAAa,CACtC,IAAMC,EAA2B,CAAC,EAClC,QAAWC,KAAO,OAAO,KAAKF,CAAG,EAE/BC,EAAK,KAAK,CAACC,EAAKF,EAAIE,CAAG,CAAC,CAAC,EAG3B,OAAOD,CACT,GAGG,OAAO,SACV,OAAO,OAAS,SAAUD,EAAa,CACrC,IAAMC,EAAiB,CAAC,EACxB,QAAWC,KAAO,OAAO,KAAKF,CAAG,EAE/BC,EAAK,KAAKD,EAAIE,CAAG,CAAC,EAGpB,OAAOD,CACT,GAKE,OAAO,SAAY,cAGhB,QAAQ,UAAU,WACrB,QAAQ,UAAU,SAAW,SAC3BE,EAA8BC,EACxB,CACF,OAAOD,GAAM,UACf,KAAK,WAAaA,EAAE,KACpB,KAAK,UAAYA,EAAE,MAEnB,KAAK,WAAaA,EAClB,KAAK,UAAYC,EAErB,GAGG,QAAQ,UAAU,cACrB,QAAQ,UAAU,YAAc,YAC3BC,EACG,CACN,IAAMC,EAAS,KAAK,WACpB,GAAIA,EAAQ,CACND,EAAM,SAAW,GACnBC,EAAO,YAAY,IAAI,EAGzB,QAASC,EAAIF,EAAM,OAAS,EAAGE,GAAK,EAAGA,IAAK,CAC1C,IAAIC,EAAOH,EAAME,CAAC,EACd,OAAOC,GAAS,SAClBA,EAAO,SAAS,eAAeA,CAAI,EAC5BA,EAAK,YACZA,EAAK,WAAW,YAAYA,CAAI,EAG7BD,EAGHD,EAAO,aAAa,KAAK,gBAAkBE,CAAI,EAF/CF,EAAO,aAAaE,EAAM,IAAI,CAGlC,CACF,CACF,I3MMJ,SAASC,IAA4C,CACnD,OAAI,SAAS,WAAa,QACjBC,GACL,GAAG,IAAI,IAAI,yBAA0BC,GAAO,IAAI,CAAC,EACnD,EACG,KAECC,EAAI,IAAM,OAAO,EACjBC,EAAY,CAAC,CACf,EAEKC,GACL,IAAI,IAAI,2BAA4BH,GAAO,IAAI,CACjD,CAEJ,CAOA,SAAS,gBAAgB,UAAU,OAAO,OAAO,EACjD,SAAS,gBAAgB,UAAU,IAAI,IAAI,EAG3C,IAAMI,GAAYC,GAAc,EAC1BC,GAAYC,GAAc,EAC1BC,GAAYC,GAAoBH,EAAS,EACzCI,GAAYC,GAAc,EAG1BC,GAAYC,GAAc,EAC1BC,GAAYC,GAAW,oBAAoB,EAC3CC,GAAYD,GAAW,qBAAqB,EAC5CE,GAAYC,GAAW,EAGvBlB,GAASmB,GAAc,EACvBC,GAAS,SAAS,MAAM,UAAU,QAAQ,EAC5CtB,GAAiB,EACjBuB,GAGEC,GAAS,IAAIC,EACnBC,GAAiB,CAAE,OAAAF,EAAO,CAAC,EAG3B,IAAMG,GAAY,IAAIF,EAGlBG,EAAQ,oBAAoB,GAC9BC,GAAuB,CAAE,UAAArB,GAAW,UAAAM,GAAW,UAAAa,EAAU,CAAC,EACvD,UAAUrB,EAAS,EAzJxB,IAAAwB,KA4JIA,GAAA5B,GAAO,UAAP,YAAA4B,GAAgB,YAAa,QAC/BC,GAAqB,CAAE,UAAAzB,EAAU,CAAC,EAGpC0B,EAAMxB,GAAWE,EAAO,EACrB,KACCuB,GAAM,GAAG,CACX,EACG,UAAU,IAAM,CACfC,GAAU,SAAU,EAAK,EACzBA,GAAU,SAAU,EAAK,CAC3B,CAAC,EAGLtB,GACG,KACCuB,EAAO,CAAC,CAAE,KAAAC,CAAK,IAAMA,IAAS,QAAQ,CACxC,EACG,UAAUC,GAAO,CAChB,OAAQA,EAAI,KAAM,CAGhB,IAAK,IACL,IAAK,IACH,IAAMC,EAAOC,GAAoC,gBAAgB,EAC7D,OAAOD,GAAS,aAClBE,GAAYF,CAAI,EAClB,MAGF,IAAK,IACL,IAAK,IACH,IAAMG,EAAOF,GAAoC,gBAAgB,EAC7D,OAAOE,GAAS,aAClBD,GAAYC,CAAI,EAClB,MAGF,IAAK,QACH,IAAMC,EAASC,GAAiB,EAC5BD,aAAkB,kBACpBA,EAAO,MAAM,CACnB,CACF,CAAC,EAGLE,GAAc,CAAE,UAAA9B,GAAW,UAAAR,EAAU,CAAC,EACtCuC,GAAmB,CAAE,UAAAvC,GAAW,QAAAU,EAAQ,CAAC,EACzC8B,GAAe,CAAE,UAAAxC,EAAU,CAAC,EAC5ByC,GAAgB,CAAE,UAAAjC,GAAW,QAAAE,EAAQ,CAAC,EAGtC,IAAMgC,GAAUC,GAAYC,GAAoB,QAAQ,EAAG,CAAE,UAAApC,EAAU,CAAC,EAClEqC,GAAQ7C,GACX,KACCH,EAAI,IAAM+C,GAAoB,MAAM,CAAC,EACrCE,EAAUC,GAAMC,GAAUD,EAAI,CAAE,UAAAvC,GAAW,QAAAkC,EAAQ,CAAC,CAAC,EACrD5C,EAAY,CAAC,CACf,EAGImD,GAAWvB,EAGf,GAAGwB,GAAqB,SAAS,EAC9B,IAAIH,GAAMI,GAAaJ,EAAI,CAAE,QAAA3C,EAAQ,CAAC,CAAC,EAG1C,GAAG8C,GAAqB,QAAQ,EAC7B,IAAIH,GAAMK,GAAYL,EAAI,CAAE,OAAA7B,EAAO,CAAC,CAAC,EAGxC,GAAGgC,GAAqB,SAAS,EAC9B,IAAIH,GAAMM,GAAaN,CAAE,CAAC,EAG7B,GAAGG,GAAqB,UAAU,EAC/B,IAAIH,GAAMO,GAAcP,EAAI,CAAE,UAAA1B,EAAU,CAAC,CAAC,EAG7C,GAAG6B,GAAqB,QAAQ,EAC7B,IAAIH,GAAMQ,GAAYR,EAAI,CAAE,OAAA/B,GAAQ,UAAAV,EAAU,CAAC,CAAC,EAGnD,GAAG4C,GAAqB,QAAQ,EAC7B,IAAIH,GAAMS,GAAYT,CAAE,CAAC,CAC9B,EAGMU,GAAWC,EAAM,IAAMhC,EAG3B,GAAGwB,GAAqB,UAAU,EAC/B,IAAIH,GAAMY,GAAcZ,CAAE,CAAC,EAG9B,GAAGG,GAAqB,SAAS,EAC9B,IAAIH,GAAMa,GAAab,EAAI,CAAE,UAAAvC,GAAW,QAAAJ,GAAS,OAAAS,EAAO,CAAC,CAAC,EAG7D,GAAGqC,GAAqB,SAAS,EAC9B,IAAIH,GAAMzB,EAAQ,kBAAkB,EACjCuC,GAAoBd,EAAI,CAAE,OAAA/B,GAAQ,UAAAd,EAAU,CAAC,EAC7C4D,CACJ,EAGF,GAAGZ,GAAqB,QAAQ,EAC7B,IAAIH,GAAMgB,GAAYhB,EAAI,CAAE,UAAAvC,GAAW,QAAAkC,GAAS,MAAAG,EAAM,CAAC,CAAC,EAG3D,GAAGK,GAAqB,cAAc,EACnC,IAAIH,GAAMiB,GAAiBjB,EAAI,CAAE,UAAAvC,GAAW,QAAAkC,EAAQ,CAAC,CAAC,EAGzD,GAAGQ,GAAqB,SAAS,EAC9B,IAAIH,GAAMA,EAAG,aAAa,cAAc,IAAM,aAC3CkB,GAAGrD,GAAS,IAAMsD,GAAanB,EAAI,CAAE,UAAAvC,GAAW,QAAAkC,GAAS,MAAAG,EAAM,CAAC,CAAC,EACjEoB,GAAGvD,GAAS,IAAMwD,GAAanB,EAAI,CAAE,UAAAvC,GAAW,QAAAkC,GAAS,MAAAG,EAAM,CAAC,CAAC,CACrE,EAGF,GAAGK,GAAqB,MAAM,EAC3B,IAAIH,GAAMoB,GAAUpB,EAAI,CAAE,UAAAvC,GAAW,QAAAkC,EAAQ,CAAC,CAAC,EAGlD,GAAGQ,GAAqB,KAAK,EAC1B,IAAIH,GAAMqB,GAAqBrB,EAAI,CAClC,UAAAvC,GAAW,QAAAkC,GAAS,MAAAG,GAAO,QAAAzC,EAC7B,CAAC,CAAC,EAGJ,GAAG8C,GAAqB,KAAK,EAC1B,IAAIH,GAAMsB,GAAetB,EAAI,CAAE,UAAAvC,GAAW,QAAAkC,GAAS,MAAAG,GAAO,QAAAzC,EAAQ,CAAC,CAAC,CACzE,CAAC,EAGKkE,GAAatE,GAChB,KACC8C,EAAU,IAAMW,EAAQ,EACxBc,GAAUtB,EAAQ,EAClBnD,EAAY,CAAC,CACf,EAGFwE,GAAW,UAAU,EAMrB,OAAO,UAAatE,GACpB,OAAO,UAAaE,GACpB,OAAO,QAAaE,GACpB,OAAO,UAAaE,GACpB,OAAO,UAAaE,GACpB,OAAO,QAAaE,GACpB,OAAO,QAAaE,GACpB,OAAO,OAAaC,GACpB,OAAO,OAAaK,GACpB,OAAO,UAAaG,GACpB,OAAO,WAAaiD", "names": ["require_focus_visible", "__commonJSMin", "exports", "module", "global", "factory", "applyFocusVisiblePolyfill", "scope", "hadKeyboardEvent", "hadFocusVisibleRecently", "hadFocusVisibleRecentlyTimeout", "inputTypesAllowlist", "isValidFocusTarget", "el", "focusTriggersKeyboardModality", "type", "tagName", "addFocusVisibleClass", "removeFocusVisibleClass", "onKeyDown", "e", "onPointerDown", "onFocus", "onBlur", "onVisibilityChange", "addInitialPointerMoveListeners", "onInitialPointerMove", "removeInitialPointerMoveListeners", "event", "error", "require_escape_html", "__commonJSMin", "exports", "module", "matchHtmlRegExp", "escapeHtml", "string", "str", "match", "escape", "html", "index", "lastIndex", "require_clipboard", "__commonJSMin", "exports", "module", "root", "factory", "__webpack_modules__", "__unused_webpack_module", "__webpack_exports__", "__webpack_require__", "clipboard", "tiny_emitter", "tiny_emitter_default", "listen", "listen_default", "src_select", "select_default", "command", "type", "err", "ClipboardActionCut", "target", "selectedText", "actions_cut", "createFakeElement", "value", "isRTL", "fakeElement", "yPosition", "fakeCopyAction", "options", "ClipboardActionCopy", "actions_copy", "_typeof", "obj", "ClipboardActionDefault", "_options$action", "action", "container", "text", "actions_default", "clipboard_typeof", "_classCallCheck", "instance", "Constructor", "_defineProperties", "props", "i", "descriptor", "_createClass", "protoProps", "staticProps", "_inherits", "subClass", "superClass", "_setPrototypeOf", "o", "p", "_createSuper", "Derived", "hasNativeReflectConstruct", "_isNativeReflectConstruct", "Super", "_getPrototypeOf", "result", "NewTarget", "_possibleConstructorReturn", "self", "call", "_assertThisInitialized", "e", "getAttributeValue", "suffix", "element", "attribute", "Clipboard", "_Emitter", "_super", "trigger", "_this", "_this2", "selector", "actions", "support", "DOCUMENT_NODE_TYPE", "proto", "closest", "__unused_webpack_exports", "_delegate", "callback", "useCapture", "listenerFn", "listener", "delegate", "elements", "is", "listenNode", "listenNodeList", "listenSelector", "node", "nodeList", "select", "isReadOnly", "selection", "range", "E", "name", "ctx", "data", "evtArr", "len", "evts", "liveEvents", "__webpack_module_cache__", "moduleId", "getter", "definition", "key", "prop", "import_focus_visible", "extendStatics", "d", "b", "p", "__extends", "__", "__awaiter", "thisArg", "_arguments", "P", "generator", "adopt", "value", "resolve", "reject", "fulfilled", "step", "e", "rejected", "result", "__generator", "body", "_", "t", "f", "y", "g", "verb", "n", "v", "op", "__values", "o", "s", "m", "i", "__read", "n", "r", "ar", "e", "error", "__spreadArray", "to", "from", "pack", "i", "l", "ar", "__await", "v", "__asyncGenerator", "thisArg", "_arguments", "generator", "g", "q", "verb", "awaitReturn", "f", "reject", "n", "a", "b", "resume", "step", "e", "settle", "r", "fulfill", "value", "__asyncValues", "o", "m", "i", "__values", "verb", "n", "v", "resolve", "reject", "settle", "d", "isFunction", "value", "createErrorClass", "createImpl", "_super", "instance", "ctorFunc", "UnsubscriptionError", "createErrorClass", "_super", "errors", "err", "i", "arrRemove", "arr", "item", "index", "Subscription", "initialTeardown", "errors", "_parentage", "_parentage_1", "__values", "_parentage_1_1", "parent_1", "initialFinalizer", "isFunction", "e", "UnsubscriptionError", "_finalizers", "_finalizers_1", "_finalizers_1_1", "finalizer", "execFinalizer", "err", "__spreadArray", "__read", "teardown", "_a", "parent", "arrRemove", "empty", "EMPTY_SUBSCRIPTION", "Subscription", "isSubscription", "value", "isFunction", "execFinalizer", "finalizer", "config", "timeoutProvider", "handler", "timeout", "args", "_i", "delegate", "__spreadArray", "__read", "handle", "reportUnhandledError", "err", "timeoutProvider", "onUnhandledError", "config", "noop", "COMPLETE_NOTIFICATION", "createNotification", "errorNotification", "error", "nextNotification", "value", "kind", "context", "errorContext", "cb", "config", "isRoot", "_a", "errorThrown", "error", "captureError", "err", "Subscriber", "_super", "__extends", "destination", "_this", "isSubscription", "EMPTY_OBSERVER", "next", "error", "complete", "SafeSubscriber", "value", "handleStoppedNotification", "nextNotification", "err", "errorNotification", "COMPLETE_NOTIFICATION", "Subscription", "_bind", "bind", "fn", "thisArg", "ConsumerObserver", "partialObserver", "value", "error", "handleUnhandledError", "err", "SafeSubscriber", "_super", "__extends", "observerOrNext", "complete", "_this", "isFunction", "context_1", "config", "Subscriber", "handleUnhandledError", "error", "config", "captureError", "reportUnhandledError", "defaultErrorHandler", "err", "handleStoppedNotification", "notification", "subscriber", "onStoppedNotification", "timeoutProvider", "EMPTY_OBSERVER", "noop", "observable", "identity", "x", "pipe", "fns", "_i", "pipeFromArray", "identity", "input", "prev", "fn", "Observable", "subscribe", "operator", "observable", "observerOrNext", "error", "complete", "_this", "subscriber", "isSubscriber", "SafeSubscriber", "errorContext", "_a", "source", "sink", "err", "next", "promiseCtor", "getPromiseCtor", "resolve", "reject", "value", "operations", "_i", "pipeFromArray", "x", "getPromiseCtor", "promiseCtor", "_a", "config", "isObserver", "value", "isFunction", "isSubscriber", "Subscriber", "isSubscription", "hasLift", "source", "isFunction", "operate", "init", "liftedSource", "err", "createOperatorSubscriber", "destination", "onNext", "onComplete", "onError", "onFinalize", "OperatorSubscriber", "_super", "__extends", "shouldUnsubscribe", "_this", "value", "err", "closed_1", "_a", "Subscriber", "animationFrameProvider", "callback", "request", "cancel", "delegate", "handle", "timestamp", "Subscription", "args", "_i", "__spreadArray", "__read", "ObjectUnsubscribedError", "createErrorClass", "_super", "Subject", "_super", "__extends", "_this", "operator", "subject", "AnonymousSubject", "ObjectUnsubscribedError", "value", "errorContext", "_b", "__values", "_c", "observer", "err", "observers", "_a", "subscriber", "hasError", "isStopped", "EMPTY_SUBSCRIPTION", "Subscription", "arrRemove", "thrownError", "observable", "Observable", "destination", "source", "AnonymousSubject", "_super", "__extends", "destination", "source", "_this", "value", "_b", "_a", "err", "subscriber", "EMPTY_SUBSCRIPTION", "Subject", "BehaviorSubject", "_super", "__extends", "_value", "_this", "subscriber", "subscription", "_a", "hasError", "thrownError", "value", "Subject", "dateTimestampProvider", "ReplaySubject", "_super", "__extends", "_bufferSize", "_windowTime", "_timestampProvider", "dateTimestampProvider", "_this", "value", "_a", "isStopped", "_buffer", "_infiniteTimeWindow", "subscriber", "subscription", "copy", "i", "adjustedBufferSize", "now", "last", "Subject", "Action", "_super", "__extends", "scheduler", "work", "state", "delay", "Subscription", "intervalProvider", "handler", "timeout", "args", "_i", "delegate", "__spreadArray", "__read", "handle", "AsyncAction", "_super", "__extends", "scheduler", "work", "_this", "state", "delay", "id", "_a", "_id", "intervalProvider", "_scheduler", "error", "_delay", "errored", "errorValue", "e", "actions", "arrRemove", "Action", "Scheduler", "schedulerActionCtor", "now", "work", "delay", "state", "dateTimestampProvider", "AsyncScheduler", "_super", "__extends", "SchedulerAction", "now", "Scheduler", "_this", "action", "actions", "error", "asyncScheduler", "AsyncScheduler", "AsyncAction", "async", "QueueAction", "_super", "__extends", "scheduler", "work", "_this", "state", "delay", "id", "AsyncAction", "QueueScheduler", "_super", "__extends", "AsyncScheduler", "queueScheduler", "QueueScheduler", "QueueAction", "AnimationFrameAction", "_super", "__extends", "scheduler", "work", "_this", "id", "delay", "animationFrameProvider", "actions", "_a", "AsyncAction", "AnimationFrameScheduler", "_super", "__extends", "action", "flushId", "actions", "error", "AsyncScheduler", "animationFrameScheduler", "AnimationFrameScheduler", "AnimationFrameAction", "EMPTY", "Observable", "subscriber", "isScheduler", "value", "isFunction", "last", "arr", "popResultSelector", "args", "isFunction", "popScheduler", "isScheduler", "popNumber", "defaultValue", "isArrayLike", "x", "isPromise", "value", "isFunction", "isInteropObservable", "input", "isFunction", "observable", "isAsyncIterable", "obj", "isFunction", "createInvalidObservableTypeError", "input", "getSymbolIterator", "iterator", "isIterable", "input", "isFunction", "iterator", "readableStreamLikeToAsyncGenerator", "readableStream", "reader", "__await", "_a", "_b", "value", "done", "isReadableStreamLike", "obj", "isFunction", "innerFrom", "input", "Observable", "isInteropObservable", "fromInteropObservable", "isArrayLike", "fromArrayLike", "isPromise", "fromPromise", "isAsyncIterable", "fromAsyncIterable", "isIterable", "fromIterable", "isReadableStreamLike", "fromReadableStreamLike", "createInvalidObservableTypeError", "obj", "subscriber", "obs", "observable", "isFunction", "array", "i", "promise", "value", "err", "reportUnhandledError", "iterable", "iterable_1", "__values", "iterable_1_1", "asyncIterable", "process", "readableStream", "readableStreamLikeToAsyncGenerator", "asyncIterable_1", "__asyncValues", "asyncIterable_1_1", "executeSchedule", "parentSubscription", "scheduler", "work", "delay", "repeat", "scheduleSubscription", "observeOn", "scheduler", "delay", "operate", "source", "subscriber", "createOperatorSubscriber", "value", "executeSchedule", "err", "subscribeOn", "scheduler", "delay", "operate", "source", "subscriber", "scheduleObservable", "input", "scheduler", "innerFrom", "subscribeOn", "observeOn", "schedulePromise", "input", "scheduler", "innerFrom", "subscribeOn", "observeOn", "scheduleArray", "input", "scheduler", "Observable", "subscriber", "i", "scheduleIterable", "input", "scheduler", "Observable", "subscriber", "iterator", "executeSchedule", "value", "done", "_a", "err", "isFunction", "scheduleAsyncIterable", "input", "scheduler", "Observable", "subscriber", "executeSchedule", "iterator", "result", "scheduleReadableStreamLike", "input", "scheduler", "scheduleAsyncIterable", "readableStreamLikeToAsyncGenerator", "scheduled", "input", "scheduler", "isInteropObservable", "scheduleObservable", "isArrayLike", "scheduleArray", "isPromise", "schedulePromise", "isAsyncIterable", "scheduleAsyncIterable", "isIterable", "scheduleIterable", "isReadableStreamLike", "scheduleReadableStreamLike", "createInvalidObservableTypeError", "from", "input", "scheduler", "scheduled", "innerFrom", "of", "args", "_i", "scheduler", "popScheduler", "from", "throwError", "errorOrErrorFactory", "scheduler", "errorFactory", "isFunction", "init", "subscriber", "Observable", "EmptyError", "createErrorClass", "_super", "isValidDate", "value", "map", "project", "thisArg", "operate", "source", "subscriber", "index", "createOperatorSubscriber", "value", "isArray", "callOrApply", "fn", "args", "__spreadArray", "__read", "mapOneOrManyArgs", "map", "isArray", "getPrototypeOf", "objectProto", "getKeys", "argsArgArrayOrObject", "args", "first_1", "isPOJO", "keys", "key", "obj", "createObject", "keys", "values", "result", "key", "i", "combineLatest", "args", "_i", "scheduler", "popScheduler", "resultSelector", "popResultSelector", "_a", "argsArgArrayOrObject", "observables", "keys", "from", "result", "Observable", "combineLatestInit", "values", "createObject", "identity", "mapOneOrManyArgs", "valueTransform", "subscriber", "maybeSchedule", "length", "active", "remainingFirstValues", "i", "source", "hasFirstValue", "createOperatorSubscriber", "value", "execute", "subscription", "executeSchedule", "mergeInternals", "source", "subscriber", "project", "concurrent", "onBeforeNext", "expand", "innerSubScheduler", "additionalFinalizer", "buffer", "active", "index", "isComplete", "checkComplete", "outerNext", "value", "doInnerSub", "innerComplete", "innerFrom", "createOperatorSubscriber", "innerValue", "bufferedValue", "executeSchedule", "err", "mergeMap", "project", "resultSelector", "concurrent", "isFunction", "a", "i", "map", "b", "ii", "innerFrom", "operate", "source", "subscriber", "mergeInternals", "mergeAll", "concurrent", "mergeMap", "identity", "concatAll", "mergeAll", "concat", "args", "_i", "concatAll", "from", "popScheduler", "defer", "observableFactory", "Observable", "subscriber", "innerFrom", "nodeEventEmitterMethods", "eventTargetMethods", "jqueryMethods", "fromEvent", "target", "eventName", "options", "resultSelector", "isFunction", "mapOneOrManyArgs", "_a", "__read", "isEventTarget", "methodName", "handler", "isNodeStyleEventEmitter", "toCommonHandlerRegistry", "isJQueryStyleEventEmitter", "add", "remove", "isArrayLike", "mergeMap", "subTarget", "innerFrom", "Observable", "subscriber", "args", "_i", "fromEventPattern", "addHandler", "removeHandler", "resultSelector", "mapOneOrManyArgs", "Observable", "subscriber", "handler", "e", "_i", "retValue", "isFunction", "timer", "dueTime", "intervalOrScheduler", "scheduler", "async", "intervalDuration", "isScheduler", "Observable", "subscriber", "due", "isValidDate", "n", "merge", "args", "_i", "scheduler", "popScheduler", "concurrent", "popNumber", "sources", "innerFrom", "mergeAll", "from", "EMPTY", "NEVER", "Observable", "noop", "isArray", "argsOrArgArray", "args", "filter", "predicate", "thisArg", "operate", "source", "subscriber", "index", "createOperatorSubscriber", "value", "zip", "args", "_i", "resultSelector", "popResultSelector", "sources", "argsOrArgArray", "Observable", "subscriber", "buffers", "completed", "sourceIndex", "innerFrom", "createOperatorSubscriber", "value", "buffer", "result", "__spreadArray", "__read", "i", "EMPTY", "audit", "durationSelector", "operate", "source", "subscriber", "hasValue", "lastValue", "durationSubscriber", "isComplete", "endDuration", "value", "cleanupDuration", "createOperatorSubscriber", "innerFrom", "auditTime", "duration", "scheduler", "asyncScheduler", "audit", "timer", "bufferCount", "bufferSize", "startBufferEvery", "operate", "source", "subscriber", "buffers", "count", "createOperatorSubscriber", "value", "toEmit", "buffers_1", "__values", "buffers_1_1", "buffer", "toEmit_1", "toEmit_1_1", "arrRemove", "buffers_2", "buffers_2_1", "catchError", "selector", "operate", "source", "subscriber", "innerSub", "syncUnsub", "handledResult", "createOperatorSubscriber", "err", "innerFrom", "scanInternals", "accumulator", "seed", "hasSeed", "emitOnNext", "emitBeforeComplete", "source", "subscriber", "hasState", "state", "index", "createOperatorSubscriber", "value", "i", "combineLatest", "args", "_i", "resultSelector", "popResultSelector", "pipe", "__spreadArray", "__read", "mapOneOrManyArgs", "operate", "source", "subscriber", "combineLatestInit", "argsOrArgArray", "combineLatestWith", "otherSources", "_i", "combineLatest", "__spreadArray", "__read", "debounce", "durationSelector", "operate", "source", "subscriber", "hasValue", "lastValue", "durationSubscriber", "emit", "value", "createOperatorSubscriber", "noop", "innerFrom", "debounceTime", "dueTime", "scheduler", "asyncScheduler", "operate", "source", "subscriber", "activeTask", "lastValue", "lastTime", "emit", "value", "emitWhenIdle", "targetTime", "now", "createOperatorSubscriber", "defaultIfEmpty", "defaultValue", "operate", "source", "subscriber", "hasValue", "createOperatorSubscriber", "value", "take", "count", "EMPTY", "operate", "source", "subscriber", "seen", "createOperatorSubscriber", "value", "ignoreElements", "operate", "source", "subscriber", "createOperatorSubscriber", "noop", "mapTo", "value", "map", "delayWhen", "delayDurationSelector", "subscriptionDelay", "source", "concat", "take", "ignoreElements", "mergeMap", "value", "index", "innerFrom", "mapTo", "delay", "due", "scheduler", "asyncScheduler", "duration", "timer", "delayWhen", "distinctUntilChanged", "comparator", "keySelector", "identity", "defaultCompare", "operate", "source", "subscriber", "previousKey", "first", "createOperatorSubscriber", "value", "currentKey", "a", "b", "distinctUntilKeyChanged", "key", "compare", "distinctUntilChanged", "x", "y", "throwIfEmpty", "errorFactory", "defaultErrorFactory", "operate", "source", "subscriber", "hasValue", "createOperatorSubscriber", "value", "EmptyError", "endWith", "values", "_i", "source", "concat", "of", "__spreadArray", "__read", "finalize", "callback", "operate", "source", "subscriber", "first", "predicate", "defaultValue", "hasDefaultValue", "source", "filter", "v", "identity", "take", "defaultIfEmpty", "throwIfEmpty", "EmptyError", "takeLast", "count", "EMPTY", "operate", "source", "subscriber", "buffer", "createOperatorSubscriber", "value", "buffer_1", "__values", "buffer_1_1", "merge", "args", "_i", "scheduler", "popScheduler", "concurrent", "popNumber", "argsOrArgArray", "operate", "source", "subscriber", "mergeAll", "from", "__spreadArray", "__read", "mergeWith", "otherSources", "_i", "merge", "__spreadArray", "__read", "repeat", "countOrConfig", "count", "delay", "_a", "EMPTY", "operate", "source", "subscriber", "soFar", "sourceSub", "resubscribe", "notifier", "timer", "innerFrom", "notifierSubscriber_1", "createOperatorSubscriber", "subscribeToSource", "syncUnsub", "scan", "accumulator", "seed", "operate", "scanInternals", "share", "options", "_a", "connector", "Subject", "_b", "resetOnError", "_c", "resetOnComplete", "_d", "resetOnRefCountZero", "wrapperSource", "connection", "resetConnection", "subject", "refCount", "hasCompleted", "hasErrored", "cancelReset", "reset", "resetAndUnsubscribe", "conn", "operate", "source", "subscriber", "dest", "handleReset", "SafeSubscriber", "value", "err", "innerFrom", "on", "args", "_i", "onSubscriber", "__spreadArray", "__read", "shareReplay", "configOrBufferSize", "windowTime", "scheduler", "bufferSize", "refCount", "_a", "_b", "_c", "share", "ReplaySubject", "skip", "count", "filter", "_", "index", "skipUntil", "notifier", "operate", "source", "subscriber", "taking", "skipSubscriber", "createOperatorSubscriber", "noop", "innerFrom", "value", "startWith", "values", "_i", "scheduler", "popScheduler", "operate", "source", "subscriber", "concat", "switchMap", "project", "resultSelector", "operate", "source", "subscriber", "innerSubscriber", "index", "isComplete", "checkComplete", "createOperatorSubscriber", "value", "innerIndex", "outerIndex", "innerFrom", "innerValue", "takeUntil", "notifier", "operate", "source", "subscriber", "innerFrom", "createOperatorSubscriber", "noop", "takeWhile", "predicate", "inclusive", "operate", "source", "subscriber", "index", "createOperatorSubscriber", "value", "result", "tap", "observerOrNext", "error", "complete", "tapObserver", "isFunction", "operate", "source", "subscriber", "_a", "isUnsub", "createOperatorSubscriber", "value", "err", "_b", "identity", "throttle", "durationSelector", "config", "operate", "source", "subscriber", "_a", "_b", "leading", "_c", "trailing", "hasValue", "sendValue", "throttled", "isComplete", "endThrottling", "send", "cleanupThrottling", "startThrottle", "value", "innerFrom", "createOperatorSubscriber", "throttleTime", "duration", "scheduler", "config", "asyncScheduler", "duration$", "timer", "throttle", "withLatestFrom", "inputs", "_i", "project", "popResultSelector", "operate", "source", "subscriber", "len", "otherValues", "hasValue", "ready", "i", "innerFrom", "createOperatorSubscriber", "value", "identity", "noop", "values", "__spreadArray", "__read", "zip", "sources", "_i", "operate", "source", "subscriber", "__spreadArray", "__read", "zipWith", "otherInputs", "_i", "zip", "__spreadArray", "__read", "watchDocument", "document$", "ReplaySubject", "fromEvent", "getElements", "selector", "node", "getElement", "el", "getOptionalElement", "getActiveElement", "_a", "_b", "_c", "_d", "observer$", "merge", "fromEvent", "debounceTime", "startWith", "map", "getActiveElement", "shareReplay", "watchElementFocus", "el", "active", "distinctUntilChanged", "watchElementHover", "el", "timeout", "defer", "merge", "fromEvent", "map", "debounce", "active", "timer", "identity", "startWith", "appendChild", "el", "child", "node", "h", "tag", "attributes", "children", "attr", "round", "value", "digits", "watchScript", "src", "script", "h", "defer", "merge", "fromEvent", "switchMap", "throwError", "map", "finalize", "take", "entry$", "Subject", "observer$", "defer", "watchScript", "of", "map", "entries", "entry", "switchMap", "observer", "merge", "NEVER", "finalize", "shareReplay", "getElementSize", "el", "watchElementSize", "target", "tap", "filter", "startWith", "getElementContentSize", "el", "getElementContainer", "parent", "getElementContainers", "containers", "getElementOffset", "el", "getElementOffsetAbsolute", "rect", "watchElementOffset", "merge", "fromEvent", "auditTime", "animationFrameScheduler", "map", "startWith", "getElementContentOffset", "el", "watchElementContentOffset", "merge", "fromEvent", "auditTime", "animationFrameScheduler", "map", "startWith", "entry$", "Subject", "observer$", "defer", "of", "entries", "entry", "switchMap", "observer", "merge", "NEVER", "finalize", "shareReplay", "watchElementVisibility", "el", "tap", "filter", "target", "map", "isIntersecting", "watchElementBoundary", "threshold", "watchElementContentOffset", "y", "visible", "getElementSize", "content", "getElementContentSize", "distinctUntilChanged", "toggles", "getElement", "getToggle", "name", "setToggle", "value", "watchToggle", "el", "fromEvent", "map", "startWith", "isSusceptibleToKeyboard", "el", "type", "watchComposition", "merge", "fromEvent", "map", "startWith", "watchKeyboard", "keyboard$", "filter", "ev", "getToggle", "mode", "active", "getActiveElement", "share", "switchMap", "EMPTY", "getLocation", "setLocation", "url", "navigate", "feature", "el", "h", "watchLocation", "Subject", "getLocationHash", "setLocationHash", "hash", "el", "h", "ev", "watchLocationHash", "location$", "merge", "fromEvent", "map", "startWith", "filter", "shareReplay", "watchLocationTarget", "id", "getOptionalElement", "watchMedia", "query", "media", "fromEventPattern", "next", "startWith", "watchPrint", "merge", "fromEvent", "map", "at", "query$", "factory", "switchMap", "active", "EMPTY", "request", "url", "options", "Observable", "observer", "req", "event", "_a", "length", "requestJSON", "switchMap", "res", "map", "body", "shareReplay", "requestHTML", "dom", "requestXML", "getViewportOffset", "watchViewportOffset", "merge", "fromEvent", "map", "startWith", "getViewportSize", "watchViewportSize", "fromEvent", "map", "startWith", "watchViewport", "combineLatest", "watchViewportOffset", "watchViewportSize", "map", "offset", "size", "shareReplay", "watchViewportAt", "el", "viewport$", "header$", "size$", "distinctUntilKeyChanged", "offset$", "combineLatest", "map", "getElementOffset", "height", "offset", "size", "x", "y", "recv", "worker", "fromEvent", "ev", "send", "send$", "Subject", "data", "watchWorker", "url", "recv$", "worker$", "done$", "ignoreElements", "endWith", "mergeWith", "takeUntil", "share", "script", "getElement", "config", "getLocation", "configuration", "feature", "flag", "translation", "key", "value", "getComponentElement", "type", "node", "getElement", "getComponentElements", "getElements", "watchAnnounce", "el", "button", "getElement", "fromEvent", "map", "content", "mountAnnounce", "feature", "EMPTY", "defer", "push$", "Subject", "hash", "tap", "state", "finalize", "__spreadValues", "watchConsent", "el", "target$", "map", "target", "mountConsent", "options", "internal$", "Subject", "hidden", "tap", "state", "finalize", "__spreadValues", "renderTooltip", "id", "style", "h", "renderInlineTooltip2", "children", "renderAnnotation", "id", "prefix", "anchor", "h", "renderTooltip", "renderClipboardButton", "id", "h", "translation", "import_escape_html", "renderSearchDocument", "document", "flag", "parent", "teaser", "missing", "key", "list", "h", "escapeHTML", "config", "configuration", "url", "feature", "match", "highlight", "value", "tags", "tag", "type", "translation", "renderSearchResultItem", "result", "threshold", "docs", "doc", "article", "index", "best", "more", "children", "section", "renderSourceFacts", "facts", "h", "key", "value", "round", "renderTabbedControl", "type", "classes", "h", "renderTable", "table", "h", "renderVersion", "version", "_a", "config", "configuration", "url", "h", "renderVersionSelector", "versions", "active", "translation", "sequence", "watchTooltip2", "el", "active$", "combineLatest", "watchElementFocus", "watchElementHover", "map", "focus", "hover", "distinctUntilChanged", "offset$", "defer", "getElementContainers", "mergeMap", "watchElementContentOffset", "throttleTime", "combineLatestWith", "getElementOffsetAbsolute", "first", "active", "switchMap", "offset", "share", "mountTooltip2", "dependencies", "content$", "viewport$", "id", "push$", "Subject", "show$", "BehaviorSubject", "ignoreElements", "endWith", "node$", "debounce", "timer", "queueScheduler", "EMPTY", "tap", "node", "startWith", "states", "origin$", "filter", "withLatestFrom", "_", "size", "host", "x", "height", "getElementSize", "origin", "getElement", "observeOn", "animationFrameScheduler", "state", "finalize", "__spreadValues", "mountInlineTooltip2", "container", "Observable", "observer", "title", "renderInlineTooltip2", "watchAnnotation", "el", "container", "offset$", "defer", "combineLatest", "watchElementOffset", "watchElementContentOffset", "map", "x", "y", "scroll", "width", "height", "getElementSize", "watchElementFocus", "switchMap", "active", "offset", "take", "mountAnnotation", "target$", "tooltip", "index", "push$", "Subject", "done$", "ignoreElements", "endWith", "watchElementVisibility", "takeUntil", "visible", "merge", "filter", "debounceTime", "auditTime", "animationFrameScheduler", "throttleTime", "origin", "fromEvent", "ev", "withLatestFrom", "_a", "parent", "getActiveElement", "target", "delay", "tap", "state", "finalize", "__spreadValues", "findHosts", "container", "getElements", "findMarkers", "markers", "el", "nodes", "it", "node", "text", "match", "id", "force", "marker", "swap", "source", "target", "mountAnnotationList", "target$", "print$", "parent", "prefix", "annotations", "getOptionalElement", "renderAnnotation", "EMPTY", "defer", "push$", "Subject", "done$", "ignoreElements", "endWith", "pairs", "annotation", "getElement", "takeUntil", "active", "inner", "child", "merge", "mountAnnotation", "finalize", "share", "findList", "el", "sibling", "mountAnnotationBlock", "options", "defer", "list", "mountAnnotationList", "EMPTY", "import_clipboard", "sequence", "findCandidateList", "el", "sibling", "watchCodeBlock", "watchElementSize", "map", "width", "getElementContentSize", "distinctUntilKeyChanged", "mountCodeBlock", "options", "hover", "factory$", "defer", "push$", "Subject", "done$", "takeLast", "scrollable", "content$", "ClipboardJS", "feature", "parent", "button", "renderClipboardButton", "mountInlineTooltip2", "container", "list", "annotations$", "mountAnnotationList", "takeUntil", "height", "distinctUntilChanged", "switchMap", "active", "EMPTY", "getElements", "tap", "state", "finalize", "__spreadValues", "mergeWith", "watchElementVisibility", "filter", "visible", "take", "watchDetails", "el", "target$", "print$", "open", "merge", "map", "target", "filter", "details", "active", "tap", "mountDetails", "options", "defer", "push$", "Subject", "action", "reveal", "state", "finalize", "__spreadValues", "mermaid_default", "mermaid$", "sequence", "fetchScripts", "watchScript", "of", "mountMermaid", "el", "tap", "mermaid_default", "map", "shareReplay", "__async", "id", "host", "h", "text", "svg", "fn", "shadow", "sentinel", "h", "mountDataTable", "el", "renderTable", "of", "watchContentTabs", "inputs", "initial", "input", "merge", "fromEvent", "map", "getElement", "startWith", "active", "mountContentTabs", "el", "viewport$", "target$", "container", "getElements", "prev", "renderTabbedControl", "next", "defer", "push$", "Subject", "done$", "ignoreElements", "endWith", "combineLatest", "watchElementSize", "watchElementVisibility", "takeUntil", "auditTime", "animationFrameScheduler", "size", "offset", "getElementOffset", "width", "getElementSize", "content", "getElementContentOffset", "watchElementContentOffset", "getElementContentSize", "direction", "filter", "label", "h", "ev", "tap", "feature", "skip", "withLatestFrom", "tab", "y", "set", "tabs", "media", "state", "finalize", "__spreadValues", "subscribeOn", "asyncScheduler", "mountContent", "el", "viewport$", "target$", "print$", "merge", "getElements", "child", "mountAnnotationBlock", "mountCodeBlock", "mountMermaid", "mountDataTable", "mountDetails", "mountContentTabs", "feature", "mountInlineTooltip2", "watchDialog", "_el", "alert$", "switchMap", "message", "merge", "of", "delay", "map", "active", "mountDialog", "el", "options", "inner", "getElement", "defer", "push$", "Subject", "tap", "state", "finalize", "__spreadValues", "sequence", "watchTooltip", "el", "host", "width", "getElementSize", "container", "getElementContainer", "scroll$", "watchElementContentOffset", "of", "active$", "merge", "watchElementFocus", "watchElementHover", "distinctUntilChanged", "combineLatest", "map", "active", "scroll", "x", "y", "getElementOffset", "size", "table", "mountTooltip", "title", "EMPTY", "id", "tooltip", "renderTooltip", "typeset", "getElement", "defer", "push$", "Subject", "offset", "filter", "debounceTime", "auditTime", "animationFrameScheduler", "throttleTime", "origin", "tap", "state", "finalize", "__spreadValues", "subscribeOn", "asyncScheduler", "isHidden", "viewport$", "feature", "of", "direction$", "map", "y", "bufferCount", "a", "b", "distinctUntilKeyChanged", "hidden$", "combineLatest", "filter", "offset", "direction", "distinctUntilChanged", "search$", "watchToggle", "search", "switchMap", "active", "startWith", "watchHeader", "el", "options", "defer", "watchElementSize", "height", "hidden", "shareReplay", "mountHeader", "header$", "main$", "push$", "Subject", "done$", "ignoreElements", "endWith", "combineLatestWith", "tooltips", "from", "getElements", "mergeMap", "child", "mountTooltip", "takeUntil", "state", "__spreadValues", "mergeWith", "watchHeaderTitle", "el", "viewport$", "header$", "watchViewportAt", "map", "y", "height", "getElementSize", "distinctUntilKeyChanged", "mountHeaderTitle", "options", "defer", "push$", "Subject", "active", "heading", "getOptionalElement", "EMPTY", "tap", "state", "finalize", "__spreadValues", "watchMain", "el", "viewport$", "header$", "adjust$", "map", "height", "distinctUntilChanged", "border$", "switchMap", "watchElementSize", "distinctUntilKeyChanged", "combineLatest", "header", "top", "bottom", "y", "a", "b", "watchPalette", "inputs", "current", "input", "index", "of", "mergeMap", "fromEvent", "map", "startWith", "shareReplay", "mountPalette", "el", "getElements", "meta", "h", "scheme", "media$", "watchMedia", "defer", "push$", "Subject", "palette", "media", "key", "value", "label", "filter", "ev", "withLatestFrom", "_", "header", "getComponentElement", "style", "color", "observeOn", "asyncScheduler", "takeUntil", "skip", "repeat", "tap", "state", "finalize", "__spreadValues", "mountProgress", "el", "progress$", "defer", "push$", "Subject", "value", "tap", "finalize", "map", "import_clipboard", "extract", "el", "copy", "text", "setupClipboardJS", "alert$", "ClipboardJS", "Observable", "subscriber", "getElement", "ev", "tap", "map", "translation", "resolve", "url", "base", "extract", "document", "sitemap", "el", "getElements", "getElement", "links", "link", "href", "fetchSitemap", "requestXML", "map", "catchError", "of", "handle", "ev", "sitemap", "EMPTY", "el", "url", "of", "head", "document", "tags", "getElements", "resolve", "key", "value", "inject", "next", "selector", "feature", "source", "getOptionalElement", "target", "html", "name", "container", "getComponentElement", "concat", "switchMap", "script", "Observable", "observer", "ignoreElements", "endWith", "setupInstantNavigation", "location$", "viewport$", "progress$", "config", "configuration", "sitemap$", "fetchSitemap", "instant$", "fromEvent", "combineLatestWith", "share", "history$", "map", "getLocation", "withLatestFrom", "offset", "merge", "document$", "distinctUntilKeyChanged", "requestHTML", "catchError", "setLocation", "_", "distinctUntilChanged", "a", "b", "tap", "_a", "_b", "setLocationHash", "debounceTime", "import_escape_html", "setupSearchHighlighter", "config", "regex", "term", "separator", "highlight", "_", "data", "query", "match", "value", "escapeHTML", "isSearchReadyMessage", "message", "isSearchResultMessage", "setupSearchWorker", "url", "index$", "worker$", "watchWorker", "merge", "of", "watchToggle", "first", "active", "switchMap", "config", "docs", "feature", "selectedVersionCorrespondingURL", "params", "_a", "selectedVersionSitemap", "selectedVersionBaseURL", "currentLocation", "currentBaseURL", "current_path", "safeURLParse", "currentRelativePath", "stripPrefix", "sitemapCommonPrefix", "shortestCommonPrefix", "potentialSitemapURL", "result", "url", "base", "e", "s", "prefix", "commonPrefixLen", "s1", "s2", "max", "strs", "setupVersionSelector", "document$", "config", "configuration", "versions$", "requestJSON", "catchError", "EMPTY", "current$", "map", "versions", "current", "version", "aliases", "switchMap", "urls", "fromEvent", "filter", "ev", "withLatestFrom", "el", "url", "of", "selectedVersionBaseURL", "fetchSitemap", "sitemap", "_a", "selectedVersionCorrespondingURL", "getLocation", "setLocation", "combineLatest", "getElement", "renderVersionSelector", "base", "outdated", "ignored", "main", "ignore", "warning", "getComponentElements", "watchSearchQuery", "el", "worker$", "searchParams", "getLocation", "setToggle", "watchToggle", "first", "active", "url", "focus$", "watchElementFocus", "value$", "merge", "isSearchReadyMessage", "fromEvent", "map", "distinctUntilChanged", "combineLatest", "value", "focus", "shareReplay", "mountSearchQuery", "push$", "Subject", "done$", "ignoreElements", "endWith", "_", "query", "distinctUntilKeyChanged", "takeUntil", "label", "getElement", "tap", "state", "finalize", "__spreadValues", "mountSearchResult", "el", "worker$", "query$", "push$", "Subject", "boundary$", "watchElementBoundary", "filter", "container", "meta", "getElement", "list", "watchToggle", "active", "withLatestFrom", "skipUntil", "first", "isSearchReadyMessage", "items", "value", "translation", "count", "round", "render$", "tap", "switchMap", "merge", "of", "bufferCount", "zipWith", "chunk", "map", "renderSearchResultItem", "share", "item", "mergeMap", "details", "getOptionalElement", "EMPTY", "fromEvent", "takeUntil", "isSearchResultMessage", "data", "state", "finalize", "__spreadValues", "watchSearchShare", "_el", "query$", "map", "value", "url", "getLocation", "mountSearchShare", "el", "options", "push$", "Subject", "done$", "ignoreElements", "endWith", "fromEvent", "takeUntil", "ev", "tap", "state", "finalize", "__spreadValues", "mountSearchSuggest", "el", "worker$", "keyboard$", "push$", "Subject", "query", "getComponentElement", "query$", "merge", "fromEvent", "observeOn", "asyncScheduler", "map", "distinctUntilChanged", "combineLatestWith", "suggest", "value", "words", "last", "filter", "mode", "key", "isSearchResultMessage", "data", "tap", "state", "finalize", "mountSearch", "el", "index$", "keyboard$", "config", "configuration", "worker$", "setupSearchWorker", "query", "getComponentElement", "result", "fromEvent", "filter", "target", "setToggle", "mode", "key", "active", "getActiveElement", "anchors", "anchor", "getElements", "article", "best", "a", "b", "els", "i", "query$", "mountSearchQuery", "merge", "mountSearchResult", "mergeWith", "getComponentElements", "child", "mountSearchShare", "mountSearchSuggest", "err", "NEVER", "mountSearchHiglight", "el", "index$", "location$", "combineLatest", "startWith", "getLocation", "filter", "url", "map", "index", "setupSearchHighlighter", "fn", "_a", "nodes", "it", "node", "original", "replaced", "text", "childNodes", "h", "watchSidebar", "el", "viewport$", "main$", "parent", "adjust", "combineLatest", "map", "offset", "height", "y", "distinctUntilChanged", "a", "b", "mountSidebar", "_a", "_b", "header$", "options", "__objRest", "inner", "getElement", "getElementOffset", "defer", "push$", "Subject", "done$", "ignoreElements", "endWith", "next$", "auditTime", "animationFrameScheduler", "withLatestFrom", "first", "item", "getElements", "container", "getElementSize", "from", "mergeMap", "label", "fromEvent", "observeOn", "asyncScheduler", "takeUntil", "input", "tap", "state", "finalize", "__spreadValues", "fetchSourceFactsFromGitHub", "user", "repo", "url", "zip", "requestJSON", "catchError", "EMPTY", "map", "release", "defaultIfEmpty", "info", "__spreadValues", "fetchSourceFactsFromGitLab", "base", "project", "url", "zip", "requestJSON", "catchError", "EMPTY", "map", "tag_name", "defaultIfEmpty", "star_count", "forks_count", "release", "info", "__spreadValues", "fetchSourceFacts", "url", "match", "user", "repo", "fetchSourceFactsFromGitHub", "base", "slug", "fetchSourceFactsFromGitLab", "EMPTY", "fetch$", "watchSource", "el", "defer", "cached", "of", "getComponentElements", "consent", "EMPTY", "fetchSourceFacts", "tap", "facts", "catchError", "filter", "map", "shareReplay", "mountSource", "inner", "getElement", "push$", "Subject", "renderSourceFacts", "state", "finalize", "__spreadValues", "watchTabs", "el", "viewport$", "header$", "watchElementSize", "switchMap", "watchViewportAt", "map", "y", "distinctUntilKeyChanged", "mountTabs", "options", "defer", "push$", "Subject", "hidden", "feature", "of", "tap", "state", "finalize", "__spreadValues", "watchTableOfContents", "el", "viewport$", "header$", "table", "anchors", "getElements", "anchor", "id", "target", "getOptionalElement", "adjust$", "distinctUntilKeyChanged", "map", "height", "main", "getComponentElement", "grid", "getElement", "share", "watchElementSize", "switchMap", "body", "defer", "path", "of", "index", "offset", "parent", "a", "b", "combineLatestWith", "adjust", "scan", "prev", "next", "y", "size", "last", "distinctUntilChanged", "startWith", "bufferCount", "mountTableOfContents", "main$", "target$", "push$", "Subject", "done$", "ignoreElements", "endWith", "feature", "smooth$", "merge", "debounceTime", "filter", "observeOn", "asyncScheduler", "withLatestFrom", "behavior", "container", "getElementContainer", "getElementSize", "takeUntil", "skip", "repeat", "url", "getLocation", "active", "hash", "tap", "state", "finalize", "__spreadValues", "watchBackToTop", "_el", "viewport$", "main$", "target$", "direction$", "map", "y", "bufferCount", "b", "distinctUntilChanged", "active$", "active", "combineLatest", "direction", "takeUntil", "skip", "endWith", "repeat", "hidden", "mountBackToTop", "el", "header$", "push$", "Subject", "done$", "ignoreElements", "distinctUntilKeyChanged", "height", "fromEvent", "ev", "tap", "state", "finalize", "__spreadValues", "patchEllipsis", "document$", "viewport$", "switchMap", "getElements", "mergeMap", "el", "watchElementVisibility", "takeUntil", "skip", "filter", "visible", "map", "take", "text", "host", "feature", "mountInlineTooltip2", "finalize", "EMPTY", "patchIndeterminate", "document$", "tablet$", "switchMap", "getElements", "tap", "el", "mergeMap", "fromEvent", "takeWhile", "map", "withLatestFrom", "tablet", "isAppleDevice", "patchScrollfix", "document$", "switchMap", "getElements", "tap", "el", "filter", "mergeMap", "fromEvent", "map", "top", "patchScrolllock", "viewport$", "tablet$", "combineLatest", "watchToggle", "map", "active", "tablet", "switchMap", "of", "delay", "withLatestFrom", "y", "value", "obj", "data", "key", "x", "y", "nodes", "parent", "i", "node", "fetchSearchIndex", "watchScript", "config", "map", "shareReplay", "requestJSON", "document$", "watchDocument", "location$", "watchLocation", "target$", "watchLocationTarget", "keyboard$", "watchKeyboard", "viewport$", "watchViewport", "tablet$", "watchMedia", "screen$", "print$", "watchPrint", "configuration", "index$", "NEVER", "alert$", "Subject", "setupClipboardJS", "progress$", "feature", "setupInstantNavigation", "_a", "setupVersionSelector", "merge", "delay", "setToggle", "filter", "mode", "key", "prev", "getOptionalElement", "setLocation", "next", "active", "getActiveElement", "patchEllipsis", "patchIndeterminate", "patchScrollfix", "patchScrolllock", "header$", "watchHeader", "getComponentElement", "main$", "switchMap", "el", "watchMain", "control$", "getComponentElements", "mountConsent", "mountDialog", "mountPalette", "mountProgress", "mountSearch", "mountSource", "content$", "defer", "mountAnnounce", "mountContent", "mountSearchHiglight", "EMPTY", "mountHeader", "mountHeaderTitle", "at", "mountSidebar", "mountTabs", "mountTableOfContents", "mountBackToTop", "component$", "mergeWith"] } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/�����������������������������������0000775�0000000�0000000�00000000000�14753064456�0025233�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/�������������������������������0000775�0000000�0000000�00000000000�14753064456�0026016�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.ar.min.js�����������������0000664�0000000�0000000�00000041262�14753064456�0030524�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.ar=function(){this.pipeline.reset(),this.pipeline.add(e.ar.trimmer,e.ar.stopWordFilter,e.ar.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.ar.stemmer))},e.ar.wordCharacters="ء-ٛٱـ",e.ar.trimmer=e.trimmerSupport.generateTrimmer(e.ar.wordCharacters),e.Pipeline.registerFunction(e.ar.trimmer,"trimmer-ar"),e.ar.stemmer=function(){var e=this;return e.result=!1,e.preRemoved=!1,e.sufRemoved=!1,e.pre={pre1:"ف ك ب و س ل ن ا ي ت",pre2:"ال لل",pre3:"بال وال فال تال كال ولل",pre4:"فبال كبال وبال وكال"},e.suf={suf1:"ه ك ت ن ا ي",suf2:"نك نه ها وك يا اه ون ين تن تم نا وا ان كم كن ني نن ما هم هن تك ته ات يه",suf3:"تين كهم نيه نهم ونه وها يهم ونا ونك وني وهم تكم تنا تها تني تهم كما كها ناه نكم هنا تان يها",suf4:"كموه ناها ونني ونهم تكما تموه تكاه كماه ناكم ناهم نيها وننا"},e.patterns=JSON.parse('{"pt43":[{"pt":[{"c":"ا","l":1}]},{"pt":[{"c":"ا,ت,ن,ي","l":0}],"mPt":[{"c":"ف","l":0,"m":1},{"c":"ع","l":1,"m":2},{"c":"ل","l":2,"m":3}]},{"pt":[{"c":"و","l":2}],"mPt":[{"c":"ف","l":0,"m":0},{"c":"ع","l":1,"m":1},{"c":"ل","l":2,"m":3}]},{"pt":[{"c":"ا","l":2}]},{"pt":[{"c":"ي","l":2}],"mPt":[{"c":"ف","l":0,"m":0},{"c":"ع","l":1,"m":1},{"c":"ا","l":2},{"c":"ل","l":3,"m":3}]},{"pt":[{"c":"م","l":0}]}],"pt53":[{"pt":[{"c":"ت","l":0},{"c":"ا","l":2}]},{"pt":[{"c":"ا,ن,ت,ي","l":0},{"c":"ت","l":2}],"mPt":[{"c":"ا","l":0},{"c":"ف","l":1,"m":1},{"c":"ت","l":2},{"c":"ع","l":3,"m":3},{"c":"ا","l":4},{"c":"ل","l":5,"m":4}]},{"pt":[{"c":"ا","l":0},{"c":"ا","l":2}],"mPt":[{"c":"ا","l":0},{"c":"ف","l":1,"m":1},{"c":"ع","l":2,"m":3},{"c":"ل","l":3,"m":4},{"c":"ا","l":4},{"c":"ل","l":5,"m":4}]},{"pt":[{"c":"ا","l":0},{"c":"ا","l":3}],"mPt":[{"c":"ف","l":0,"m":1},{"c":"ع","l":1,"m":2},{"c":"ل","l":2,"m":4}]},{"pt":[{"c":"ا","l":3},{"c":"ن","l":4}]},{"pt":[{"c":"ت","l":0},{"c":"ي","l":3}]},{"pt":[{"c":"م","l":0},{"c":"و","l":3}]},{"pt":[{"c":"ا","l":1},{"c":"و","l":3}]},{"pt":[{"c":"و","l":1},{"c":"ا","l":2}]},{"pt":[{"c":"م","l":0},{"c":"ا","l":3}]},{"pt":[{"c":"م","l":0},{"c":"ي","l":3}]},{"pt":[{"c":"ا","l":2},{"c":"ن","l":3}]},{"pt":[{"c":"م","l":0},{"c":"ن","l":1}],"mPt":[{"c":"ا","l":0},{"c":"ن","l":1},{"c":"ف","l":2,"m":2},{"c":"ع","l":3,"m":3},{"c":"ا","l":4},{"c":"ل","l":5,"m":4}]},{"pt":[{"c":"م","l":0},{"c":"ت","l":2}],"mPt":[{"c":"ا","l":0},{"c":"ف","l":1,"m":1},{"c":"ت","l":2},{"c":"ع","l":3,"m":3},{"c":"ا","l":4},{"c":"ل","l":5,"m":4}]},{"pt":[{"c":"م","l":0},{"c":"ا","l":2}]},{"pt":[{"c":"م","l":1},{"c":"ا","l":3}]},{"pt":[{"c":"ي,ت,ا,ن","l":0},{"c":"ت","l":1}],"mPt":[{"c":"ف","l":0,"m":2},{"c":"ع","l":1,"m":3},{"c":"ا","l":2},{"c":"ل","l":3,"m":4}]},{"pt":[{"c":"ت,ي,ا,ن","l":0},{"c":"ت","l":2}],"mPt":[{"c":"ا","l":0},{"c":"ف","l":1,"m":1},{"c":"ت","l":2},{"c":"ع","l":3,"m":3},{"c":"ا","l":4},{"c":"ل","l":5,"m":4}]},{"pt":[{"c":"ا","l":2},{"c":"ي","l":3}]},{"pt":[{"c":"ا,ي,ت,ن","l":0},{"c":"ن","l":1}],"mPt":[{"c":"ا","l":0},{"c":"ن","l":1},{"c":"ف","l":2,"m":2},{"c":"ع","l":3,"m":3},{"c":"ا","l":4},{"c":"ل","l":5,"m":4}]},{"pt":[{"c":"ا","l":3},{"c":"ء","l":4}]}],"pt63":[{"pt":[{"c":"ا","l":0},{"c":"ت","l":2},{"c":"ا","l":4}]},{"pt":[{"c":"ا,ت,ن,ي","l":0},{"c":"س","l":1},{"c":"ت","l":2}],"mPt":[{"c":"ا","l":0},{"c":"س","l":1},{"c":"ت","l":2},{"c":"ف","l":3,"m":3},{"c":"ع","l":4,"m":4},{"c":"ا","l":5},{"c":"ل","l":6,"m":5}]},{"pt":[{"c":"ا,ن,ت,ي","l":0},{"c":"و","l":3}]},{"pt":[{"c":"م","l":0},{"c":"س","l":1},{"c":"ت","l":2}],"mPt":[{"c":"ا","l":0},{"c":"س","l":1},{"c":"ت","l":2},{"c":"ف","l":3,"m":3},{"c":"ع","l":4,"m":4},{"c":"ا","l":5},{"c":"ل","l":6,"m":5}]},{"pt":[{"c":"ي","l":1},{"c":"ي","l":3},{"c":"ا","l":4},{"c":"ء","l":5}]},{"pt":[{"c":"ا","l":0},{"c":"ن","l":1},{"c":"ا","l":4}]}],"pt54":[{"pt":[{"c":"ت","l":0}]},{"pt":[{"c":"ا,ي,ت,ن","l":0}],"mPt":[{"c":"ا","l":0},{"c":"ف","l":1,"m":1},{"c":"ع","l":2,"m":2},{"c":"ل","l":3,"m":3},{"c":"ر","l":4,"m":4},{"c":"ا","l":5},{"c":"ر","l":6,"m":4}]},{"pt":[{"c":"م","l":0}],"mPt":[{"c":"ا","l":0},{"c":"ف","l":1,"m":1},{"c":"ع","l":2,"m":2},{"c":"ل","l":3,"m":3},{"c":"ر","l":4,"m":4},{"c":"ا","l":5},{"c":"ر","l":6,"m":4}]},{"pt":[{"c":"ا","l":2}]},{"pt":[{"c":"ا","l":0},{"c":"ن","l":2}]}],"pt64":[{"pt":[{"c":"ا","l":0},{"c":"ا","l":4}]},{"pt":[{"c":"م","l":0},{"c":"ت","l":1}]}],"pt73":[{"pt":[{"c":"ا","l":0},{"c":"س","l":1},{"c":"ت","l":2},{"c":"ا","l":5}]}],"pt75":[{"pt":[{"c":"ا","l":0},{"c":"ا","l":5}]}]}'),e.execArray=["cleanWord","removeDiacritics","cleanAlef","removeStopWords","normalizeHamzaAndAlef","removeStartWaw","removePre432","removeEndTaa","wordCheck"],e.stem=function(){var r=0;for(e.result=!1,e.preRemoved=!1,e.sufRemoved=!1;r<e.execArray.length&&1!=e.result;)e.result=e[e.execArray[r]](),r++},e.setCurrent=function(r){e.word=r},e.getCurrent=function(){return e.word},e.cleanWord=function(){var r=new RegExp("[^ء-ٛٱـ]");return e.word=e.word.replace(new RegExp("ـ","g"),""),!!r.test("")},e.removeDiacritics=function(){new RegExp("[ً-ٛ]");return e.word=e.word.replace(/[\u064b-\u065b]/gi,""),!1},e.cleanAlef=function(){var r=new RegExp("[آأإٱى]");return e.word=e.word.replace(r,"ا"),!1},e.removeStopWords=function(){if("، اض امين اه اها اي ا اب اجل اجمع اخ اخذ اصبح اضحى اقبل اقل اكثر الا ام اما امامك امامك امسى اما ان انا انت انتم انتما انتن انت انشا انى او اوشك اولئك اولئكم اولاء اولالك اوه اي ايا اين اينما اي ان اي اف اذ اذا اذا اذما اذن الى اليكم اليكما اليكن اليك اليك الا اما ان انما اي اياك اياكم اياكما اياكن ايانا اياه اياها اياهم اياهما اياهن اياي ايه ان ا ابتدا اثر اجل احد اخرى اخلولق اذا اربعة ارتد استحال اطار اعادة اعلنت اف اكثر اكد الالاء الالى الا الاخيرة الان الاول الاولى التى التي الثاني الثانية الذاتي الذى الذي الذين السابق الف اللائي اللاتي اللتان اللتيا اللتين اللذان اللذين اللواتي الماضي المقبل الوقت الى اليوم اما امام امس ان انبرى انقلب انه انها او اول اي ايار ايام ايضا ب بات باسم بان بخ برس بسبب بس بشكل بضع بطان بعد بعض بك بكم بكما بكن بل بلى بما بماذا بمن بن بنا به بها بي بيد بين بس بله بئس تان تانك تبدل تجاه تحول تلقاء تلك تلكم تلكما تم تينك تين ته تي ثلاثة ثم ثم ثمة ثم جعل جلل جميع جير حار حاشا حاليا حاي حتى حرى حسب حم حوالى حول حيث حيثما حين حي حبذا حتى حذار خلا خلال دون دونك ذا ذات ذاك ذانك ذان ذلك ذلكم ذلكما ذلكن ذو ذوا ذواتا ذواتي ذيت ذينك ذين ذه ذي راح رجع رويدك ريث رب زيارة سبحان سرعان سنة سنوات سوف سوى ساء ساءما شبه شخصا شرع شتان صار صباح صفر صه صه ضد ضمن طاق طالما طفق طق ظل عاد عام عاما عامة عدا عدة عدد عدم عسى عشر عشرة علق على عليك عليه عليها عل عن عند عندما عوض عين عدس عما غدا غير ف فان فلان فو فى في فيم فيما فيه فيها قال قام قبل قد قط قلما قوة كانما كاين كاي كاين كاد كان كانت كذا كذلك كرب كل كلا كلاهما كلتا كلم كليكما كليهما كلما كلا كم كما كي كيت كيف كيفما كان كخ لئن لا لات لاسيما لدن لدى لعمر لقاء لك لكم لكما لكن لكنما لكي لكيلا للامم لم لما لما لن لنا له لها لو لوكالة لولا لوما لي لست لست لستم لستما لستن لست لسن لعل لكن ليت ليس ليسا ليستا ليست ليسوا لسنا ما ماانفك مابرح مادام ماذا مازال مافتئ مايو متى مثل مذ مساء مع معاذ مقابل مكانكم مكانكما مكانكن مكانك مليار مليون مما ممن من منذ منها مه مهما من من نحن نحو نعم نفس نفسه نهاية نخ نعما نعم ها هاؤم هاك هاهنا هب هذا هذه هكذا هل هلم هلا هم هما هن هنا هناك هنالك هو هي هيا هيت هيا هؤلاء هاتان هاتين هاته هاتي هج هذا هذان هذين هذه هذي هيهات و وا واحد واضاف واضافت واكد وان واها واوضح وراءك وفي وقال وقالت وقد وقف وكان وكانت ولا ولم ومن وهو وهي ويكان وي وشكان يكون يمكن يوم ايان".split(" ").indexOf(e.word)>=0)return!0},e.normalizeHamzaAndAlef=function(){return e.word=e.word.replace("ؤ","ء"),e.word=e.word.replace("ئ","ء"),e.word=e.word.replace(/([\u0627])\1+/gi,"ا"),!1},e.removeEndTaa=function(){return!(e.word.length>2)||(e.word=e.word.replace(/[\u0627]$/,""),e.word=e.word.replace("ة",""),!1)},e.removeStartWaw=function(){return e.word.length>3&&"و"==e.word[0]&&"و"==e.word[1]&&(e.word=e.word.slice(1)),!1},e.removePre432=function(){var r=e.word;if(e.word.length>=7){var t=new RegExp("^("+e.pre.pre4.split(" ").join("|")+")");e.word=e.word.replace(t,"")}if(e.word==r&&e.word.length>=6){var c=new RegExp("^("+e.pre.pre3.split(" ").join("|")+")");e.word=e.word.replace(c,"")}if(e.word==r&&e.word.length>=5){var l=new RegExp("^("+e.pre.pre2.split(" ").join("|")+")");e.word=e.word.replace(l,"")}return r!=e.word&&(e.preRemoved=!0),!1},e.patternCheck=function(r){for(var t=0;t<r.length;t++){for(var c=!0,l=0;l<r[t].pt.length;l++){var n=r[t].pt[l].c.split(","),o=!1;if(n.forEach(function(c){e.word[r[t].pt[l].l]==c&&(o=!0)}),!o){c=!1;break}}if(1==c){if(r[t].mPt){for(var p=[],m=0;m<r[t].mPt.length;m++)null!=r[t].mPt[m].m?p[r[t].mPt[m].l]=e.word[r[t].mPt[m].m]:p[r[t].mPt[m].l]=r[t].mPt[m].c;e.word=p.join("")}e.result=!0;break}}},e.removePre1=function(){var r=e.word;if(0==e.preRemoved&&e.word.length>3){var t=new RegExp("^("+e.pre.pre1.split(" ").join("|")+")");e.word=e.word.replace(t,"")}return r!=e.word&&(e.preRemoved=!0),!1},e.removeSuf1=function(){var r=e.word;if(0==e.sufRemoved&&e.word.length>3){var t=new RegExp("("+e.suf.suf1.split(" ").join("|")+")$");e.word=e.word.replace(t,"")}return r!=e.word&&(e.sufRemoved=!0),!1},e.removeSuf432=function(){var r=e.word;if(e.word.length>=6){var t=new RegExp("("+e.suf.suf4.split(" ").join("|")+")$");e.word=e.word.replace(t,"")}if(e.word==r&&e.word.length>=5){var c=new RegExp("("+e.suf.suf3.split(" ").join("|")+")$");e.word=e.word.replace(c,"")}if(e.word==r&&e.word.length>=4){var l=new RegExp("("+e.suf.suf2.split(" ").join("|")+")$");e.word=e.word.replace(l,"")}return r!=e.word&&(e.sufRemoved=!0),!1},e.wordCheck=function(){for(var r=(e.word,[e.removeSuf432,e.removeSuf1,e.removePre1]),t=0,c=!1;e.word.length>=7&&!e.result&&t<r.length;)7!=e.word.length||c?(r[t](),t++,c=!1):(e.checkPattern73(),c=!0);var l=[e.checkPattern63,e.removeSuf432,e.removeSuf1,e.removePre1,e.checkPattern64];for(t=0;6==e.word.length&&!e.result&&t<l.length;)l[t](),t++;var n=[e.checkPattern53,e.removeSuf432,e.removeSuf1,e.removePre1,e.checkPattern54];for(t=0;5==e.word.length&&!e.result&&t<n.length;)n[t](),t++;var o=[e.checkPattern43,e.removeSuf1,e.removePre1,e.removeSuf432];for(t=0;4==e.word.length&&!e.result&&t<o.length;)o[t](),t++;return!0},e.checkPattern43=function(){e.patternCheck(e.patterns.pt43)},e.checkPattern53=function(){e.patternCheck(e.patterns.pt53)},e.checkPattern54=function(){e.patternCheck(e.patterns.pt54)},e.checkPattern63=function(){e.patternCheck(e.patterns.pt63)},e.checkPattern64=function(){e.patternCheck(e.patterns.pt64)},e.checkPattern73=function(){e.patternCheck(e.patterns.pt73)},function(r){return"function"==typeof r.update?r.update(function(r){return e.setCurrent(r),e.stem(),e.getCurrent()}):(e.setCurrent(r),e.stem(),e.getCurrent())}}(),e.Pipeline.registerFunction(e.ar.stemmer,"stemmer-ar"),e.ar.stopWordFilter=e.generateStopWordFilter("، اض امين اه اها اي ا اب اجل اجمع اخ اخذ اصبح اضحى اقبل اقل اكثر الا ام اما امامك امامك امسى اما ان انا انت انتم انتما انتن انت انشا انى او اوشك اولئك اولئكم اولاء اولالك اوه اي ايا اين اينما اي ان اي اف اذ اذا اذا اذما اذن الى اليكم اليكما اليكن اليك اليك الا اما ان انما اي اياك اياكم اياكما اياكن ايانا اياه اياها اياهم اياهما اياهن اياي ايه ان ا ابتدا اثر اجل احد اخرى اخلولق اذا اربعة ارتد استحال اطار اعادة اعلنت اف اكثر اكد الالاء الالى الا الاخيرة الان الاول الاولى التى التي الثاني الثانية الذاتي الذى الذي الذين السابق الف اللائي اللاتي اللتان اللتيا اللتين اللذان اللذين اللواتي الماضي المقبل الوقت الى اليوم اما امام امس ان انبرى انقلب انه انها او اول اي ايار ايام ايضا ب بات باسم بان بخ برس بسبب بس بشكل بضع بطان بعد بعض بك بكم بكما بكن بل بلى بما بماذا بمن بن بنا به بها بي بيد بين بس بله بئس تان تانك تبدل تجاه تحول تلقاء تلك تلكم تلكما تم تينك تين ته تي ثلاثة ثم ثم ثمة ثم جعل جلل جميع جير حار حاشا حاليا حاي حتى حرى حسب حم حوالى حول حيث حيثما حين حي حبذا حتى حذار خلا خلال دون دونك ذا ذات ذاك ذانك ذان ذلك ذلكم ذلكما ذلكن ذو ذوا ذواتا ذواتي ذيت ذينك ذين ذه ذي راح رجع رويدك ريث رب زيارة سبحان سرعان سنة سنوات سوف سوى ساء ساءما شبه شخصا شرع شتان صار صباح صفر صه صه ضد ضمن طاق طالما طفق طق ظل عاد عام عاما عامة عدا عدة عدد عدم عسى عشر عشرة علق على عليك عليه عليها عل عن عند عندما عوض عين عدس عما غدا غير ف فان فلان فو فى في فيم فيما فيه فيها قال قام قبل قد قط قلما قوة كانما كاين كاي كاين كاد كان كانت كذا كذلك كرب كل كلا كلاهما كلتا كلم كليكما كليهما كلما كلا كم كما كي كيت كيف كيفما كان كخ لئن لا لات لاسيما لدن لدى لعمر لقاء لك لكم لكما لكن لكنما لكي لكيلا للامم لم لما لما لن لنا له لها لو لوكالة لولا لوما لي لست لست لستم لستما لستن لست لسن لعل لكن ليت ليس ليسا ليستا ليست ليسوا لسنا ما ماانفك مابرح مادام ماذا مازال مافتئ مايو متى مثل مذ مساء مع معاذ مقابل مكانكم مكانكما مكانكن مكانك مليار مليون مما ممن من منذ منها مه مهما من من نحن نحو نعم نفس نفسه نهاية نخ نعما نعم ها هاؤم هاك هاهنا هب هذا هذه هكذا هل هلم هلا هم هما هن هنا هناك هنالك هو هي هيا هيت هيا هؤلاء هاتان هاتين هاته هاتي هج هذا هذان هذين هذه هذي هيهات وا واحد واضاف واضافت واكد وان واها واوضح وراءك وفي وقال وقالت وقد وقف وكان وكانت ولا ولم ومن وهو وهي ويكان وي وشكان يكون يمكن يوم ايان".split(" ")),e.Pipeline.registerFunction(e.ar.stopWordFilter,"stopWordFilter-ar")}});����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.da.min.js�����������������0000664�0000000�0000000�00000011056�14753064456�0030504�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*! * Lunr languages, `Danish` language * https://github.com/MihaiValentin/lunr-languages * * Copyright 2014, Mihai Valentin * http://www.mozilla.org/MPL/ */ /*! * based on * Snowball JavaScript Library v0.3 * http://code.google.com/p/urim/ * http://snowball.tartarus.org/ * * Copyright 2010, Oleg Mazko * http://www.mozilla.org/MPL/ */ !function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.da=function(){this.pipeline.reset(),this.pipeline.add(e.da.trimmer,e.da.stopWordFilter,e.da.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.da.stemmer))},e.da.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",e.da.trimmer=e.trimmerSupport.generateTrimmer(e.da.wordCharacters),e.Pipeline.registerFunction(e.da.trimmer,"trimmer-da"),e.da.stemmer=function(){var r=e.stemmerSupport.Among,i=e.stemmerSupport.SnowballProgram,n=new function(){function e(){var e,r=f.cursor+3;if(d=f.limit,0<=r&&r<=f.limit){for(a=r;;){if(e=f.cursor,f.in_grouping(w,97,248)){f.cursor=e;break}if(f.cursor=e,e>=f.limit)return;f.cursor++}for(;!f.out_grouping(w,97,248);){if(f.cursor>=f.limit)return;f.cursor++}d=f.cursor,d<a&&(d=a)}}function n(){var e,r;if(f.cursor>=d&&(r=f.limit_backward,f.limit_backward=d,f.ket=f.cursor,e=f.find_among_b(c,32),f.limit_backward=r,e))switch(f.bra=f.cursor,e){case 1:f.slice_del();break;case 2:f.in_grouping_b(p,97,229)&&f.slice_del()}}function t(){var e,r=f.limit-f.cursor;f.cursor>=d&&(e=f.limit_backward,f.limit_backward=d,f.ket=f.cursor,f.find_among_b(l,4)?(f.bra=f.cursor,f.limit_backward=e,f.cursor=f.limit-r,f.cursor>f.limit_backward&&(f.cursor--,f.bra=f.cursor,f.slice_del())):f.limit_backward=e)}function s(){var e,r,i,n=f.limit-f.cursor;if(f.ket=f.cursor,f.eq_s_b(2,"st")&&(f.bra=f.cursor,f.eq_s_b(2,"ig")&&f.slice_del()),f.cursor=f.limit-n,f.cursor>=d&&(r=f.limit_backward,f.limit_backward=d,f.ket=f.cursor,e=f.find_among_b(m,5),f.limit_backward=r,e))switch(f.bra=f.cursor,e){case 1:f.slice_del(),i=f.limit-f.cursor,t(),f.cursor=f.limit-i;break;case 2:f.slice_from("løs")}}function o(){var e;f.cursor>=d&&(e=f.limit_backward,f.limit_backward=d,f.ket=f.cursor,f.out_grouping_b(w,97,248)?(f.bra=f.cursor,u=f.slice_to(u),f.limit_backward=e,f.eq_v_b(u)&&f.slice_del()):f.limit_backward=e)}var a,d,u,c=[new r("hed",-1,1),new r("ethed",0,1),new r("ered",-1,1),new r("e",-1,1),new r("erede",3,1),new r("ende",3,1),new r("erende",5,1),new r("ene",3,1),new r("erne",3,1),new r("ere",3,1),new r("en",-1,1),new r("heden",10,1),new r("eren",10,1),new r("er",-1,1),new r("heder",13,1),new r("erer",13,1),new r("s",-1,2),new r("heds",16,1),new r("es",16,1),new r("endes",18,1),new r("erendes",19,1),new r("enes",18,1),new r("ernes",18,1),new r("eres",18,1),new r("ens",16,1),new r("hedens",24,1),new r("erens",24,1),new r("ers",16,1),new r("ets",16,1),new r("erets",28,1),new r("et",-1,1),new r("eret",30,1)],l=[new r("gd",-1,-1),new r("dt",-1,-1),new r("gt",-1,-1),new r("kt",-1,-1)],m=[new r("ig",-1,1),new r("lig",0,1),new r("elig",1,1),new r("els",-1,1),new r("løst",-1,2)],w=[17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,48,0,128],p=[239,254,42,3,0,0,0,0,0,0,0,0,0,0,0,0,16],f=new i;this.setCurrent=function(e){f.setCurrent(e)},this.getCurrent=function(){return f.getCurrent()},this.stem=function(){var r=f.cursor;return e(),f.limit_backward=r,f.cursor=f.limit,n(),f.cursor=f.limit,t(),f.cursor=f.limit,s(),f.cursor=f.limit,o(),!0}};return function(e){return"function"==typeof e.update?e.update(function(e){return n.setCurrent(e),n.stem(),n.getCurrent()}):(n.setCurrent(e),n.stem(),n.getCurrent())}}(),e.Pipeline.registerFunction(e.da.stemmer,"stemmer-da"),e.da.stopWordFilter=e.generateStopWordFilter("ad af alle alt anden at blev blive bliver da de dem den denne der deres det dette dig din disse dog du efter eller en end er et for fra ham han hans har havde have hende hendes her hos hun hvad hvis hvor i ikke ind jeg jer jo kunne man mange med meget men mig min mine mit mod ned noget nogle nu når og også om op os over på selv sig sin sine sit skal skulle som sådan thi til ud under var vi vil ville vor være været".split(" ")),e.Pipeline.registerFunction(e.da.stopWordFilter,"stopWordFilter-da")}});����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.de.min.js�����������������0000664�0000000�0000000�00000013747�14753064456�0030521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*! * Lunr languages, `German` language * https://github.com/MihaiValentin/lunr-languages * * Copyright 2014, Mihai Valentin * http://www.mozilla.org/MPL/ */ /*! * based on * Snowball JavaScript Library v0.3 * http://code.google.com/p/urim/ * http://snowball.tartarus.org/ * * Copyright 2010, Oleg Mazko * http://www.mozilla.org/MPL/ */ !function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.de=function(){this.pipeline.reset(),this.pipeline.add(e.de.trimmer,e.de.stopWordFilter,e.de.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.de.stemmer))},e.de.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",e.de.trimmer=e.trimmerSupport.generateTrimmer(e.de.wordCharacters),e.Pipeline.registerFunction(e.de.trimmer,"trimmer-de"),e.de.stemmer=function(){var r=e.stemmerSupport.Among,n=e.stemmerSupport.SnowballProgram,i=new function(){function e(e,r,n){return!(!v.eq_s(1,e)||(v.ket=v.cursor,!v.in_grouping(p,97,252)))&&(v.slice_from(r),v.cursor=n,!0)}function i(){for(var r,n,i,s,t=v.cursor;;)if(r=v.cursor,v.bra=r,v.eq_s(1,"ß"))v.ket=v.cursor,v.slice_from("ss");else{if(r>=v.limit)break;v.cursor=r+1}for(v.cursor=t;;)for(n=v.cursor;;){if(i=v.cursor,v.in_grouping(p,97,252)){if(s=v.cursor,v.bra=s,e("u","U",i))break;if(v.cursor=s,e("y","Y",i))break}if(i>=v.limit)return void(v.cursor=n);v.cursor=i+1}}function s(){for(;!v.in_grouping(p,97,252);){if(v.cursor>=v.limit)return!0;v.cursor++}for(;!v.out_grouping(p,97,252);){if(v.cursor>=v.limit)return!0;v.cursor++}return!1}function t(){m=v.limit,l=m;var e=v.cursor+3;0<=e&&e<=v.limit&&(d=e,s()||(m=v.cursor,m<d&&(m=d),s()||(l=v.cursor)))}function o(){for(var e,r;;){if(r=v.cursor,v.bra=r,!(e=v.find_among(h,6)))return;switch(v.ket=v.cursor,e){case 1:v.slice_from("y");break;case 2:case 5:v.slice_from("u");break;case 3:v.slice_from("a");break;case 4:v.slice_from("o");break;case 6:if(v.cursor>=v.limit)return;v.cursor++}}}function c(){return m<=v.cursor}function u(){return l<=v.cursor}function a(){var e,r,n,i,s=v.limit-v.cursor;if(v.ket=v.cursor,(e=v.find_among_b(w,7))&&(v.bra=v.cursor,c()))switch(e){case 1:v.slice_del();break;case 2:v.slice_del(),v.ket=v.cursor,v.eq_s_b(1,"s")&&(v.bra=v.cursor,v.eq_s_b(3,"nis")&&v.slice_del());break;case 3:v.in_grouping_b(g,98,116)&&v.slice_del()}if(v.cursor=v.limit-s,v.ket=v.cursor,(e=v.find_among_b(f,4))&&(v.bra=v.cursor,c()))switch(e){case 1:v.slice_del();break;case 2:if(v.in_grouping_b(k,98,116)){var t=v.cursor-3;v.limit_backward<=t&&t<=v.limit&&(v.cursor=t,v.slice_del())}}if(v.cursor=v.limit-s,v.ket=v.cursor,(e=v.find_among_b(_,8))&&(v.bra=v.cursor,u()))switch(e){case 1:v.slice_del(),v.ket=v.cursor,v.eq_s_b(2,"ig")&&(v.bra=v.cursor,r=v.limit-v.cursor,v.eq_s_b(1,"e")||(v.cursor=v.limit-r,u()&&v.slice_del()));break;case 2:n=v.limit-v.cursor,v.eq_s_b(1,"e")||(v.cursor=v.limit-n,v.slice_del());break;case 3:if(v.slice_del(),v.ket=v.cursor,i=v.limit-v.cursor,!v.eq_s_b(2,"er")&&(v.cursor=v.limit-i,!v.eq_s_b(2,"en")))break;v.bra=v.cursor,c()&&v.slice_del();break;case 4:v.slice_del(),v.ket=v.cursor,e=v.find_among_b(b,2),e&&(v.bra=v.cursor,u()&&1==e&&v.slice_del())}}var d,l,m,h=[new r("",-1,6),new r("U",0,2),new r("Y",0,1),new r("ä",0,3),new r("ö",0,4),new r("ü",0,5)],w=[new r("e",-1,2),new r("em",-1,1),new r("en",-1,2),new r("ern",-1,1),new r("er",-1,1),new r("s",-1,3),new r("es",5,2)],f=[new r("en",-1,1),new r("er",-1,1),new r("st",-1,2),new r("est",2,1)],b=[new r("ig",-1,1),new r("lich",-1,1)],_=[new r("end",-1,1),new r("ig",-1,2),new r("ung",-1,1),new r("lich",-1,3),new r("isch",-1,2),new r("ik",-1,2),new r("heit",-1,3),new r("keit",-1,4)],p=[17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,8,0,32,8],g=[117,30,5],k=[117,30,4],v=new n;this.setCurrent=function(e){v.setCurrent(e)},this.getCurrent=function(){return v.getCurrent()},this.stem=function(){var e=v.cursor;return i(),v.cursor=e,t(),v.limit_backward=e,v.cursor=v.limit,a(),v.cursor=v.limit_backward,o(),!0}};return function(e){return"function"==typeof e.update?e.update(function(e){return i.setCurrent(e),i.stem(),i.getCurrent()}):(i.setCurrent(e),i.stem(),i.getCurrent())}}(),e.Pipeline.registerFunction(e.de.stemmer,"stemmer-de"),e.de.stopWordFilter=e.generateStopWordFilter("aber alle allem allen aller alles als also am an ander andere anderem anderen anderer anderes anderm andern anderr anders auch auf aus bei bin bis bist da damit dann das dasselbe dazu daß dein deine deinem deinen deiner deines dem demselben den denn denselben der derer derselbe derselben des desselben dessen dich die dies diese dieselbe dieselben diesem diesen dieser dieses dir doch dort du durch ein eine einem einen einer eines einig einige einigem einigen einiger einiges einmal er es etwas euch euer eure eurem euren eurer eures für gegen gewesen hab habe haben hat hatte hatten hier hin hinter ich ihm ihn ihnen ihr ihre ihrem ihren ihrer ihres im in indem ins ist jede jedem jeden jeder jedes jene jenem jenen jener jenes jetzt kann kein keine keinem keinen keiner keines können könnte machen man manche manchem manchen mancher manches mein meine meinem meinen meiner meines mich mir mit muss musste nach nicht nichts noch nun nur ob oder ohne sehr sein seine seinem seinen seiner seines selbst sich sie sind so solche solchem solchen solcher solches soll sollte sondern sonst um und uns unse unsem unsen unser unses unter viel vom von vor war waren warst was weg weil weiter welche welchem welchen welcher welches wenn werde werden wie wieder will wir wird wirst wo wollen wollte während würde würden zu zum zur zwar zwischen über".split(" ")),e.Pipeline.registerFunction(e.de.stopWordFilter,"stopWordFilter-de")}});�������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.du.min.js�����������������0000664�0000000�0000000�00000014100�14753064456�0030521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*! * Lunr languages, `Dutch` language * https://github.com/MihaiValentin/lunr-languages * * Copyright 2014, Mihai Valentin * http://www.mozilla.org/MPL/ */ /*! * based on * Snowball JavaScript Library v0.3 * http://code.google.com/p/urim/ * http://snowball.tartarus.org/ * * Copyright 2010, Oleg Mazko * http://www.mozilla.org/MPL/ */ !function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");console.warn('[Lunr Languages] Please use the "nl" instead of the "du". The "nl" code is the standard code for Dutch language, and "du" will be removed in the next major versions.'),e.du=function(){this.pipeline.reset(),this.pipeline.add(e.du.trimmer,e.du.stopWordFilter,e.du.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.du.stemmer))},e.du.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",e.du.trimmer=e.trimmerSupport.generateTrimmer(e.du.wordCharacters),e.Pipeline.registerFunction(e.du.trimmer,"trimmer-du"),e.du.stemmer=function(){var r=e.stemmerSupport.Among,i=e.stemmerSupport.SnowballProgram,n=new function(){function e(){for(var e,r,i,o=C.cursor;;){if(C.bra=C.cursor,e=C.find_among(b,11))switch(C.ket=C.cursor,e){case 1:C.slice_from("a");continue;case 2:C.slice_from("e");continue;case 3:C.slice_from("i");continue;case 4:C.slice_from("o");continue;case 5:C.slice_from("u");continue;case 6:if(C.cursor>=C.limit)break;C.cursor++;continue}break}for(C.cursor=o,C.bra=o,C.eq_s(1,"y")?(C.ket=C.cursor,C.slice_from("Y")):C.cursor=o;;)if(r=C.cursor,C.in_grouping(q,97,232)){if(i=C.cursor,C.bra=i,C.eq_s(1,"i"))C.ket=C.cursor,C.in_grouping(q,97,232)&&(C.slice_from("I"),C.cursor=r);else if(C.cursor=i,C.eq_s(1,"y"))C.ket=C.cursor,C.slice_from("Y"),C.cursor=r;else if(n(r))break}else if(n(r))break}function n(e){return C.cursor=e,e>=C.limit||(C.cursor++,!1)}function o(){_=C.limit,f=_,t()||(_=C.cursor,_<3&&(_=3),t()||(f=C.cursor))}function t(){for(;!C.in_grouping(q,97,232);){if(C.cursor>=C.limit)return!0;C.cursor++}for(;!C.out_grouping(q,97,232);){if(C.cursor>=C.limit)return!0;C.cursor++}return!1}function s(){for(var e;;)if(C.bra=C.cursor,e=C.find_among(p,3))switch(C.ket=C.cursor,e){case 1:C.slice_from("y");break;case 2:C.slice_from("i");break;case 3:if(C.cursor>=C.limit)return;C.cursor++}}function u(){return _<=C.cursor}function c(){return f<=C.cursor}function a(){var e=C.limit-C.cursor;C.find_among_b(g,3)&&(C.cursor=C.limit-e,C.ket=C.cursor,C.cursor>C.limit_backward&&(C.cursor--,C.bra=C.cursor,C.slice_del()))}function l(){var e;w=!1,C.ket=C.cursor,C.eq_s_b(1,"e")&&(C.bra=C.cursor,u()&&(e=C.limit-C.cursor,C.out_grouping_b(q,97,232)&&(C.cursor=C.limit-e,C.slice_del(),w=!0,a())))}function m(){var e;u()&&(e=C.limit-C.cursor,C.out_grouping_b(q,97,232)&&(C.cursor=C.limit-e,C.eq_s_b(3,"gem")||(C.cursor=C.limit-e,C.slice_del(),a())))}function d(){var e,r,i,n,o,t,s=C.limit-C.cursor;if(C.ket=C.cursor,e=C.find_among_b(h,5))switch(C.bra=C.cursor,e){case 1:u()&&C.slice_from("heid");break;case 2:m();break;case 3:u()&&C.out_grouping_b(z,97,232)&&C.slice_del()}if(C.cursor=C.limit-s,l(),C.cursor=C.limit-s,C.ket=C.cursor,C.eq_s_b(4,"heid")&&(C.bra=C.cursor,c()&&(r=C.limit-C.cursor,C.eq_s_b(1,"c")||(C.cursor=C.limit-r,C.slice_del(),C.ket=C.cursor,C.eq_s_b(2,"en")&&(C.bra=C.cursor,m())))),C.cursor=C.limit-s,C.ket=C.cursor,e=C.find_among_b(k,6))switch(C.bra=C.cursor,e){case 1:if(c()){if(C.slice_del(),i=C.limit-C.cursor,C.ket=C.cursor,C.eq_s_b(2,"ig")&&(C.bra=C.cursor,c()&&(n=C.limit-C.cursor,!C.eq_s_b(1,"e")))){C.cursor=C.limit-n,C.slice_del();break}C.cursor=C.limit-i,a()}break;case 2:c()&&(o=C.limit-C.cursor,C.eq_s_b(1,"e")||(C.cursor=C.limit-o,C.slice_del()));break;case 3:c()&&(C.slice_del(),l());break;case 4:c()&&C.slice_del();break;case 5:c()&&w&&C.slice_del()}C.cursor=C.limit-s,C.out_grouping_b(j,73,232)&&(t=C.limit-C.cursor,C.find_among_b(v,4)&&C.out_grouping_b(q,97,232)&&(C.cursor=C.limit-t,C.ket=C.cursor,C.cursor>C.limit_backward&&(C.cursor--,C.bra=C.cursor,C.slice_del())))}var f,_,w,b=[new r("",-1,6),new r("á",0,1),new r("ä",0,1),new r("é",0,2),new r("ë",0,2),new r("í",0,3),new r("ï",0,3),new r("ó",0,4),new r("ö",0,4),new r("ú",0,5),new r("ü",0,5)],p=[new r("",-1,3),new r("I",0,2),new r("Y",0,1)],g=[new r("dd",-1,-1),new r("kk",-1,-1),new r("tt",-1,-1)],h=[new r("ene",-1,2),new r("se",-1,3),new r("en",-1,2),new r("heden",2,1),new r("s",-1,3)],k=[new r("end",-1,1),new r("ig",-1,2),new r("ing",-1,1),new r("lijk",-1,3),new r("baar",-1,4),new r("bar",-1,5)],v=[new r("aa",-1,-1),new r("ee",-1,-1),new r("oo",-1,-1),new r("uu",-1,-1)],q=[17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,128],j=[1,0,0,17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,128],z=[17,67,16,1,0,0,0,0,0,0,0,0,0,0,0,0,128],C=new i;this.setCurrent=function(e){C.setCurrent(e)},this.getCurrent=function(){return C.getCurrent()},this.stem=function(){var r=C.cursor;return e(),C.cursor=r,o(),C.limit_backward=r,C.cursor=C.limit,d(),C.cursor=C.limit_backward,s(),!0}};return function(e){return"function"==typeof e.update?e.update(function(e){return n.setCurrent(e),n.stem(),n.getCurrent()}):(n.setCurrent(e),n.stem(),n.getCurrent())}}(),e.Pipeline.registerFunction(e.du.stemmer,"stemmer-du"),e.du.stopWordFilter=e.generateStopWordFilter(" aan al alles als altijd andere ben bij daar dan dat de der deze die dit doch doen door dus een eens en er ge geen geweest haar had heb hebben heeft hem het hier hij hoe hun iemand iets ik in is ja je kan kon kunnen maar me meer men met mij mijn moet na naar niet niets nog nu of om omdat onder ons ook op over reeds te tegen toch toen tot u uit uw van veel voor want waren was wat werd wezen wie wil worden wordt zal ze zelf zich zij zijn zo zonder zou".split(" ")),e.Pipeline.registerFunction(e.du.stopWordFilter,"stopWordFilter-du")}});����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.el.min.js�����������������0000664�0000000�0000000�00000035146�14753064456�0030526�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������!function(e,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t():t()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.el=function(){this.pipeline.reset(),void 0===this.searchPipeline&&this.pipeline.add(e.el.trimmer,e.el.normilizer),this.pipeline.add(e.el.stopWordFilter,e.el.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.el.stemmer))},e.el.wordCharacters="A-Za-zΑαΒβΓγΔδΕεΖζΗηΘθΙιΚκΛλΜμΝνΞξΟοΠπΡρΣσςΤτΥυΦφΧχΨψΩωΆάΈέΉήΊίΌόΎύΏώΪΐΫΰΐΰ",e.el.trimmer=e.trimmerSupport.generateTrimmer(e.el.wordCharacters),e.Pipeline.registerFunction(e.el.trimmer,"trimmer-el"),e.el.stemmer=function(){function e(e){return s.test(e)}function t(e){return/[ΑΕΗΙΟΥΩ]$/.test(e)}function r(e){return/[ΑΕΗΙΟΩ]$/.test(e)}function n(n){var s=n;if(n.length<3)return s;if(!e(n))return s;if(i.indexOf(n)>=0)return s;var u=new RegExp("(.*)("+Object.keys(l).join("|")+")$"),o=u.exec(s);return null!==o&&(s=o[1]+l[o[2]]),null!==(o=/^(.+?)(ΑΔΕΣ|ΑΔΩΝ)$/.exec(s))&&(s=o[1],/(ΟΚ|ΜΑΜ|ΜΑΝ|ΜΠΑΜΠ|ΠΑΤΕΡ|ΓΙΑΓΙ|ΝΤΑΝΤ|ΚΥΡ|ΘΕΙ|ΠΕΘΕΡ|ΜΟΥΣΑΜ|ΚΑΠΛΑΜ|ΠΑΡ|ΨΑΡ|ΤΖΟΥΡ|ΤΑΜΠΟΥΡ|ΓΑΛΑΤ|ΦΑΦΛΑΤ)$/.test(o[1])||(s+="ΑΔ")),null!==(o=/^(.+?)(ΕΔΕΣ|ΕΔΩΝ)$/.exec(s))&&(s=o[1],/(ΟΠ|ΙΠ|ΕΜΠ|ΥΠ|ΓΗΠ|ΔΑΠ|ΚΡΑΣΠ|ΜΙΛ)$/.test(o[1])&&(s+="ΕΔ")),null!==(o=/^(.+?)(ΟΥΔΕΣ|ΟΥΔΩΝ)$/.exec(s))&&(s=o[1],/(ΑΡΚ|ΚΑΛΙΑΚ|ΠΕΤΑΛ|ΛΙΧ|ΠΛΕΞ|ΣΚ|Σ|ΦΛ|ΦΡ|ΒΕΛ|ΛΟΥΛ|ΧΝ|ΣΠ|ΤΡΑΓ|ΦΕ)$/.test(o[1])&&(s+="ΟΥΔ")),null!==(o=/^(.+?)(ΕΩΣ|ΕΩΝ|ΕΑΣ|ΕΑ)$/.exec(s))&&(s=o[1],/^(Θ|Δ|ΕΛ|ΓΑΛ|Ν|Π|ΙΔ|ΠΑΡ|ΣΤΕΡ|ΟΡΦ|ΑΝΔΡ|ΑΝΤΡ)$/.test(o[1])&&(s+="Ε")),null!==(o=/^(.+?)(ΕΙΟ|ΕΙΟΣ|ΕΙΟΙ|ΕΙΑ|ΕΙΑΣ|ΕΙΕΣ|ΕΙΟΥ|ΕΙΟΥΣ|ΕΙΩΝ)$/.exec(s))&&o[1].length>4&&(s=o[1]),null!==(o=/^(.+?)(ΙΟΥΣ|ΙΑΣ|ΙΕΣ|ΙΟΣ|ΙΟΥ|ΙΟΙ|ΙΩΝ|ΙΟΝ|ΙΑ|ΙΟ)$/.exec(s))&&(s=o[1],(t(s)||s.length<2||/^(ΑΓ|ΑΓΓΕΛ|ΑΓΡ|ΑΕΡ|ΑΘΛ|ΑΚΟΥΣ|ΑΞ|ΑΣ|Β|ΒΙΒΛ|ΒΥΤ|Γ|ΓΙΑΓ|ΓΩΝ|Δ|ΔΑΝ|ΔΗΛ|ΔΗΜ|ΔΟΚΙΜ|ΕΛ|ΖΑΧΑΡ|ΗΛ|ΗΠ|ΙΔ|ΙΣΚ|ΙΣΤ|ΙΟΝ|ΙΩΝ|ΚΙΜΩΛ|ΚΟΛΟΝ|ΚΟΡ|ΚΤΗΡ|ΚΥΡ|ΛΑΓ|ΛΟΓ|ΜΑΓ|ΜΠΑΝ|ΜΠΡ|ΝΑΥΤ|ΝΟΤ|ΟΠΑΛ|ΟΞ|ΟΡ|ΟΣ|ΠΑΝΑΓ|ΠΑΤΡ|ΠΗΛ|ΠΗΝ|ΠΛΑΙΣ|ΠΟΝΤ|ΡΑΔ|ΡΟΔ|ΣΚ|ΣΚΟΡΠ|ΣΟΥΝ|ΣΠΑΝ|ΣΤΑΔ|ΣΥΡ|ΤΗΛ|ΤΙΜ|ΤΟΚ|ΤΟΠ|ΤΡΟΧ|ΦΙΛ|ΦΩΤ|Χ|ΧΙΛ|ΧΡΩΜ|ΧΩΡ)$/.test(o[1]))&&(s+="Ι"),/^(ΠΑΛ)$/.test(o[1])&&(s+="ΑΙ")),null!==(o=/^(.+?)(ΙΚΟΣ|ΙΚΟΝ|ΙΚΕΙΣ|ΙΚΟΙ|ΙΚΕΣ|ΙΚΟΥΣ|ΙΚΗ|ΙΚΗΣ|ΙΚΟ|ΙΚΑ|ΙΚΟΥ|ΙΚΩΝ|ΙΚΩΣ)$/.exec(s))&&(s=o[1],(t(s)||/^(ΑΔ|ΑΛ|ΑΜΑΝ|ΑΜΕΡ|ΑΜΜΟΧΑΛ|ΑΝΗΘ|ΑΝΤΙΔ|ΑΠΛ|ΑΤΤ|ΑΦΡ|ΒΑΣ|ΒΡΩΜ|ΓΕΝ|ΓΕΡ|Δ|ΔΙΚΑΝ|ΔΥΤ|ΕΙΔ|ΕΝΔ|ΕΞΩΔ|ΗΘ|ΘΕΤ|ΚΑΛΛΙΝ|ΚΑΛΠ|ΚΑΤΑΔ|ΚΟΥΖΙΝ|ΚΡ|ΚΩΔ|ΛΟΓ|Μ|ΜΕΡ|ΜΟΝΑΔ|ΜΟΥΛ|ΜΟΥΣ|ΜΠΑΓΙΑΤ|ΜΠΑΝ|ΜΠΟΛ|ΜΠΟΣ|ΜΥΣΤ|Ν|ΝΙΤ|ΞΙΚ|ΟΠΤ|ΠΑΝ|ΠΕΤΣ|ΠΙΚΑΝΤ|ΠΙΤΣ|ΠΛΑΣΤ|ΠΛΙΑΤΣ|ΠΟΝΤ|ΠΟΣΤΕΛΝ|ΠΡΩΤΟΔ|ΣΕΡΤ|ΣΗΜΑΝΤ|ΣΤΑΤ|ΣΥΝΑΔ|ΣΥΝΟΜΗΛ|ΤΕΛ|ΤΕΧΝ|ΤΡΟΠ|ΤΣΑΜ|ΥΠΟΔ|Φ|ΦΙΛΟΝ|ΦΥΛΟΔ|ΦΥΣ|ΧΑΣ)$/.test(o[1])||/(ΦΟΙΝ)$/.test(o[1]))&&(s+="ΙΚ")),"ΑΓΑΜΕ"===s&&(s="ΑΓΑΜ"),null!==(o=/^(.+?)(ΑΓΑΜΕ|ΗΣΑΜΕ|ΟΥΣΑΜΕ|ΗΚΑΜΕ|ΗΘΗΚΑΜΕ)$/.exec(s))&&(s=o[1]),null!==(o=/^(.+?)(ΑΜΕ)$/.exec(s))&&(s=o[1],/^(ΑΝΑΠ|ΑΠΟΘ|ΑΠΟΚ|ΑΠΟΣΤ|ΒΟΥΒ|ΞΕΘ|ΟΥΛ|ΠΕΘ|ΠΙΚΡ|ΠΟΤ|ΣΙΧ|Χ)$/.test(o[1])&&(s+="ΑΜ")),null!==(o=/^(.+?)(ΑΓΑΝΕ|ΗΣΑΝΕ|ΟΥΣΑΝΕ|ΙΟΝΤΑΝΕ|ΙΟΤΑΝΕ|ΙΟΥΝΤΑΝΕ|ΟΝΤΑΝΕ|ΟΤΑΝΕ|ΟΥΝΤΑΝΕ|ΗΚΑΝΕ|ΗΘΗΚΑΝΕ)$/.exec(s))&&(s=o[1],/^(ΤΡ|ΤΣ)$/.test(o[1])&&(s+="ΑΓΑΝ")),null!==(o=/^(.+?)(ΑΝΕ)$/.exec(s))&&(s=o[1],(r(s)||/^(ΒΕΤΕΡ|ΒΟΥΛΚ|ΒΡΑΧΜ|Γ|ΔΡΑΔΟΥΜ|Θ|ΚΑΛΠΟΥΖ|ΚΑΣΤΕΛ|ΚΟΡΜΟΡ|ΛΑΟΠΛ|ΜΩΑΜΕΘ|Μ|ΜΟΥΣΟΥΛΜΑΝ|ΟΥΛ|Π|ΠΕΛΕΚ|ΠΛ|ΠΟΛΙΣ|ΠΟΡΤΟΛ|ΣΑΡΑΚΑΤΣ|ΣΟΥΛΤ|ΤΣΑΡΛΑΤ|ΟΡΦ|ΤΣΙΓΓ|ΤΣΟΠ|ΦΩΤΟΣΤΕΦ|Χ|ΨΥΧΟΠΛ|ΑΓ|ΟΡΦ|ΓΑΛ|ΓΕΡ|ΔΕΚ|ΔΙΠΛ|ΑΜΕΡΙΚΑΝ|ΟΥΡ|ΠΙΘ|ΠΟΥΡΙΤ|Σ|ΖΩΝΤ|ΙΚ|ΚΑΣΤ|ΚΟΠ|ΛΙΧ|ΛΟΥΘΗΡ|ΜΑΙΝΤ|ΜΕΛ|ΣΙΓ|ΣΠ|ΣΤΕΓ|ΤΡΑΓ|ΤΣΑΓ|Φ|ΕΡ|ΑΔΑΠ|ΑΘΙΓΓ|ΑΜΗΧ|ΑΝΙΚ|ΑΝΟΡΓ|ΑΠΗΓ|ΑΠΙΘ|ΑΤΣΙΓΓ|ΒΑΣ|ΒΑΣΚ|ΒΑΘΥΓΑΛ|ΒΙΟΜΗΧ|ΒΡΑΧΥΚ|ΔΙΑΤ|ΔΙΑΦ|ΕΝΟΡΓ|ΘΥΣ|ΚΑΠΝΟΒΙΟΜΗΧ|ΚΑΤΑΓΑΛ|ΚΛΙΒ|ΚΟΙΛΑΡΦ|ΛΙΒ|ΜΕΓΛΟΒΙΟΜΗΧ|ΜΙΚΡΟΒΙΟΜΗΧ|ΝΤΑΒ|ΞΗΡΟΚΛΙΒ|ΟΛΙΓΟΔΑΜ|ΟΛΟΓΑΛ|ΠΕΝΤΑΡΦ|ΠΕΡΗΦ|ΠΕΡΙΤΡ|ΠΛΑΤ|ΠΟΛΥΔΑΠ|ΠΟΛΥΜΗΧ|ΣΤΕΦ|ΤΑΒ|ΤΕΤ|ΥΠΕΡΗΦ|ΥΠΟΚΟΠ|ΧΑΜΗΛΟΔΑΠ|ΨΗΛΟΤΑΒ)$/.test(o[1]))&&(s+="ΑΝ")),null!==(o=/^(.+?)(ΗΣΕΤΕ)$/.exec(s))&&(s=o[1]),null!==(o=/^(.+?)(ΕΤΕ)$/.exec(s))&&(s=o[1],(r(s)||/(ΟΔ|ΑΙΡ|ΦΟΡ|ΤΑΘ|ΔΙΑΘ|ΣΧ|ΕΝΔ|ΕΥΡ|ΤΙΘ|ΥΠΕΡΘ|ΡΑΘ|ΕΝΘ|ΡΟΘ|ΣΘ|ΠΥΡ|ΑΙΝ|ΣΥΝΔ|ΣΥΝ|ΣΥΝΘ|ΧΩΡ|ΠΟΝ|ΒΡ|ΚΑΘ|ΕΥΘ|ΕΚΘ|ΝΕΤ|ΡΟΝ|ΑΡΚ|ΒΑΡ|ΒΟΛ|ΩΦΕΛ)$/.test(o[1])||/^(ΑΒΑΡ|ΒΕΝ|ΕΝΑΡ|ΑΒΡ|ΑΔ|ΑΘ|ΑΝ|ΑΠΛ|ΒΑΡΟΝ|ΝΤΡ|ΣΚ|ΚΟΠ|ΜΠΟΡ|ΝΙΦ|ΠΑΓ|ΠΑΡΑΚΑΛ|ΣΕΡΠ|ΣΚΕΛ|ΣΥΡΦ|ΤΟΚ|Υ|Δ|ΕΜ|ΘΑΡΡ|Θ)$/.test(o[1]))&&(s+="ΕΤ")),null!==(o=/^(.+?)(ΟΝΤΑΣ|ΩΝΤΑΣ)$/.exec(s))&&(s=o[1],/^ΑΡΧ$/.test(o[1])&&(s+="ΟΝΤ"),/ΚΡΕ$/.test(o[1])&&(s+="ΩΝΤ")),null!==(o=/^(.+?)(ΟΜΑΣΤΕ|ΙΟΜΑΣΤΕ)$/.exec(s))&&(s=o[1],/^ΟΝ$/.test(o[1])&&(s+="ΟΜΑΣΤ")),null!==(o=/^(.+?)(ΙΕΣΤΕ)$/.exec(s))&&(s=o[1],/^(Π|ΑΠ|ΣΥΜΠ|ΑΣΥΜΠ|ΑΚΑΤΑΠ|ΑΜΕΤΑΜΦ)$/.test(o[1])&&(s+="ΙΕΣΤ")),null!==(o=/^(.+?)(ΕΣΤΕ)$/.exec(s))&&(s=o[1],/^(ΑΛ|ΑΡ|ΕΚΤΕΛ|Ζ|Μ|Ξ|ΠΑΡΑΚΑΛ|ΠΡΟ|ΝΙΣ)$/.test(o[1])&&(s+="ΕΣΤ")),null!==(o=/^(.+?)(ΗΘΗΚΑ|ΗΘΗΚΕΣ|ΗΘΗΚΕ)$/.exec(s))&&(s=o[1]),null!==(o=/^(.+?)(ΗΚΑ|ΗΚΕΣ|ΗΚΕ)$/.exec(s))&&(s=o[1],(/(ΣΚΩΛ|ΣΚΟΥΛ|ΝΑΡΘ|ΣΦ|ΟΘ|ΠΙΘ)$/.test(o[1])||/^(ΔΙΑΘ|Θ|ΠΑΡΑΚΑΤΑΘ|ΠΡΟΣΘ|ΣΥΝΘ)$/.test(o[1]))&&(s+="ΗΚ")),null!==(o=/^(.+?)(ΟΥΣΑ|ΟΥΣΕΣ|ΟΥΣΕ)$/.exec(s))&&(s=o[1],(t(s)||/^(ΦΑΡΜΑΚ|ΧΑΔ|ΑΓΚ|ΑΝΑΡΡ|ΒΡΟΜ|ΕΚΛΙΠ|ΛΑΜΠΙΔ|ΛΕΧ|Μ|ΠΑΤ|Ρ|Λ|ΜΕΔ|ΜΕΣΑΖ|ΥΠΟΤΕΙΝ|ΑΜ|ΑΙΘ|ΑΝΗΚ|ΔΕΣΠΟΖ|ΕΝΔΙΑΦΕΡ)$/.test(o[1])||/(ΠΟΔΑΡ|ΒΛΕΠ|ΠΑΝΤΑΧ|ΦΡΥΔ|ΜΑΝΤΙΛ|ΜΑΛΛ|ΚΥΜΑΤ|ΛΑΧ|ΛΗΓ|ΦΑΓ|ΟΜ|ΠΡΩΤ)$/.test(o[1]))&&(s+="ΟΥΣ")),null!==(o=/^(.+?)(ΑΓΑ|ΑΓΕΣ|ΑΓΕ)$/.exec(s))&&(s=o[1],(/^(ΑΒΑΣΤ|ΠΟΛΥΦ|ΑΔΗΦ|ΠΑΜΦ|Ρ|ΑΣΠ|ΑΦ|ΑΜΑΛ|ΑΜΑΛΛΙ|ΑΝΥΣΤ|ΑΠΕΡ|ΑΣΠΑΡ|ΑΧΑΡ|ΔΕΡΒΕΝ|ΔΡΟΣΟΠ|ΞΕΦ|ΝΕΟΠ|ΝΟΜΟΤ|ΟΛΟΠ|ΟΜΟΤ|ΠΡΟΣΤ|ΠΡΟΣΩΠΟΠ|ΣΥΜΠ|ΣΥΝΤ|Τ|ΥΠΟΤ|ΧΑΡ|ΑΕΙΠ|ΑΙΜΟΣΤ|ΑΝΥΠ|ΑΠΟΤ|ΑΡΤΙΠ|ΔΙΑΤ|ΕΝ|ΕΠΙΤ|ΚΡΟΚΑΛΟΠ|ΣΙΔΗΡΟΠ|Λ|ΝΑΥ|ΟΥΛΑΜ|ΟΥΡ|Π|ΤΡ|Μ)$/.test(o[1])||/(ΟΦ|ΠΕΛ|ΧΟΡΤ|ΛΛ|ΣΦ|ΡΠ|ΦΡ|ΠΡ|ΛΟΧ|ΣΜΗΝ)$/.test(o[1])&&!/^(ΨΟΦ|ΝΑΥΛΟΧ)$/.test(o[1])||/(ΚΟΛΛ)$/.test(o[1]))&&(s+="ΑΓ")),null!==(o=/^(.+?)(ΗΣΕ|ΗΣΟΥ|ΗΣΑ)$/.exec(s))&&(s=o[1],/^(Ν|ΧΕΡΣΟΝ|ΔΩΔΕΚΑΝ|ΕΡΗΜΟΝ|ΜΕΓΑΛΟΝ|ΕΠΤΑΝ|Ι)$/.test(o[1])&&(s+="ΗΣ")),null!==(o=/^(.+?)(ΗΣΤΕ)$/.exec(s))&&(s=o[1],/^(ΑΣΒ|ΣΒ|ΑΧΡ|ΧΡ|ΑΠΛ|ΑΕΙΜΝ|ΔΥΣΧΡ|ΕΥΧΡ|ΚΟΙΝΟΧΡ|ΠΑΛΙΜΨ)$/.test(o[1])&&(s+="ΗΣΤ")),null!==(o=/^(.+?)(ΟΥΝΕ|ΗΣΟΥΝΕ|ΗΘΟΥΝΕ)$/.exec(s))&&(s=o[1],/^(Ν|Ρ|ΣΠΙ|ΣΤΡΑΒΟΜΟΥΤΣ|ΚΑΚΟΜΟΥΤΣ|ΕΞΩΝ)$/.test(o[1])&&(s+="ΟΥΝ")),null!==(o=/^(.+?)(ΟΥΜΕ|ΗΣΟΥΜΕ|ΗΘΟΥΜΕ)$/.exec(s))&&(s=o[1],/^(ΠΑΡΑΣΟΥΣ|Φ|Χ|ΩΡΙΟΠΛ|ΑΖ|ΑΛΛΟΣΟΥΣ|ΑΣΟΥΣ)$/.test(o[1])&&(s+="ΟΥΜ")),null!=(o=/^(.+?)(ΜΑΤΟΙ|ΜΑΤΟΥΣ|ΜΑΤΟ|ΜΑΤΑ|ΜΑΤΩΣ|ΜΑΤΩΝ|ΜΑΤΟΣ|ΜΑΤΕΣ|ΜΑΤΗ|ΜΑΤΗΣ|ΜΑΤΟΥ)$/.exec(s))&&(s=o[1]+"Μ",/^(ΓΡΑΜ)$/.test(o[1])?s+="Α":/^(ΓΕ|ΣΤΑ)$/.test(o[1])&&(s+="ΑΤ")),null!==(o=/^(.+?)(ΟΥΑ)$/.exec(s))&&(s=o[1]+"ΟΥ"),n.length===s.length&&null!==(o=/^(.+?)(Α|ΑΓΑΤΕ|ΑΓΑΝ|ΑΕΙ|ΑΜΑΙ|ΑΝ|ΑΣ|ΑΣΑΙ|ΑΤΑΙ|ΑΩ|Ε|ΕΙ|ΕΙΣ|ΕΙΤΕ|ΕΣΑΙ|ΕΣ|ΕΤΑΙ|Ι|ΙΕΜΑΙ|ΙΕΜΑΣΤΕ|ΙΕΤΑΙ|ΙΕΣΑΙ|ΙΕΣΑΣΤΕ|ΙΟΜΑΣΤΑΝ|ΙΟΜΟΥΝ|ΙΟΜΟΥΝΑ|ΙΟΝΤΑΝ|ΙΟΝΤΟΥΣΑΝ|ΙΟΣΑΣΤΑΝ|ΙΟΣΑΣΤΕ|ΙΟΣΟΥΝ|ΙΟΣΟΥΝΑ|ΙΟΤΑΝ|ΙΟΥΜΑ|ΙΟΥΜΑΣΤΕ|ΙΟΥΝΤΑΙ|ΙΟΥΝΤΑΝ|Η|ΗΔΕΣ|ΗΔΩΝ|ΗΘΕΙ|ΗΘΕΙΣ|ΗΘΕΙΤΕ|ΗΘΗΚΑΤΕ|ΗΘΗΚΑΝ|ΗΘΟΥΝ|ΗΘΩ|ΗΚΑΤΕ|ΗΚΑΝ|ΗΣ|ΗΣΑΝ|ΗΣΑΤΕ|ΗΣΕΙ|ΗΣΕΣ|ΗΣΟΥΝ|ΗΣΩ|Ο|ΟΙ|ΟΜΑΙ|ΟΜΑΣΤΑΝ|ΟΜΟΥΝ|ΟΜΟΥΝΑ|ΟΝΤΑΙ|ΟΝΤΑΝ|ΟΝΤΟΥΣΑΝ|ΟΣ|ΟΣΑΣΤΑΝ|ΟΣΑΣΤΕ|ΟΣΟΥΝ|ΟΣΟΥΝΑ|ΟΤΑΝ|ΟΥ|ΟΥΜΑΙ|ΟΥΜΑΣΤΕ|ΟΥΝ|ΟΥΝΤΑΙ|ΟΥΝΤΑΝ|ΟΥΣ|ΟΥΣΑΝ|ΟΥΣΑΤΕ|Υ||ΥΑ|ΥΣ|Ω|ΩΝ|ΟΙΣ)$/.exec(s))&&(s=o[1]),null!=(o=/^(.+?)(ΕΣΤΕΡ|ΕΣΤΑΤ|ΟΤΕΡ|ΟΤΑΤ|ΥΤΕΡ|ΥΤΑΤ|ΩΤΕΡ|ΩΤΑΤ)$/.exec(s))&&(/^(ΕΞ|ΕΣ|ΑΝ|ΚΑΤ|Κ|ΠΡ)$/.test(o[1])||(s=o[1]),/^(ΚΑ|Μ|ΕΛΕ|ΛΕ|ΔΕ)$/.test(o[1])&&(s+="ΥΤ")),s}var l={"ΦΑΓΙΑ":"ΦΑ","ΦΑΓΙΟΥ":"ΦΑ","ΦΑΓΙΩΝ":"ΦΑ","ΣΚΑΓΙΑ":"ΣΚΑ","ΣΚΑΓΙΟΥ":"ΣΚΑ","ΣΚΑΓΙΩΝ":"ΣΚΑ","ΣΟΓΙΟΥ":"ΣΟ","ΣΟΓΙΑ":"ΣΟ","ΣΟΓΙΩΝ":"ΣΟ","ΤΑΤΟΓΙΑ":"ΤΑΤΟ","ΤΑΤΟΓΙΟΥ":"ΤΑΤΟ","ΤΑΤΟΓΙΩΝ":"ΤΑΤΟ","ΚΡΕΑΣ":"ΚΡΕ","ΚΡΕΑΤΟΣ":"ΚΡΕ","ΚΡΕΑΤΑ":"ΚΡΕ","ΚΡΕΑΤΩΝ":"ΚΡΕ","ΠΕΡΑΣ":"ΠΕΡ","ΠΕΡΑΤΟΣ":"ΠΕΡ","ΠΕΡΑΤΑ":"ΠΕΡ","ΠΕΡΑΤΩΝ":"ΠΕΡ","ΤΕΡΑΣ":"ΤΕΡ","ΤΕΡΑΤΟΣ":"ΤΕΡ","ΤΕΡΑΤΑ":"ΤΕΡ","ΤΕΡΑΤΩΝ":"ΤΕΡ","ΦΩΣ":"ΦΩ","ΦΩΤΟΣ":"ΦΩ","ΦΩΤΑ":"ΦΩ","ΦΩΤΩΝ":"ΦΩ","ΚΑΘΕΣΤΩΣ":"ΚΑΘΕΣΤ","ΚΑΘΕΣΤΩΤΟΣ":"ΚΑΘΕΣΤ","ΚΑΘΕΣΤΩΤΑ":"ΚΑΘΕΣΤ","ΚΑΘΕΣΤΩΤΩΝ":"ΚΑΘΕΣΤ","ΓΕΓΟΝΟΣ":"ΓΕΓΟΝ","ΓΕΓΟΝΟΤΟΣ":"ΓΕΓΟΝ","ΓΕΓΟΝΟΤΑ":"ΓΕΓΟΝ","ΓΕΓΟΝΟΤΩΝ":"ΓΕΓΟΝ","ΕΥΑ":"ΕΥ"},i=["ΑΚΡΙΒΩΣ","ΑΛΑ","ΑΛΛΑ","ΑΛΛΙΩΣ","ΑΛΛΟΤΕ","ΑΜΑ","ΑΝΩ","ΑΝΑ","ΑΝΑΜΕΣΑ","ΑΝΑΜΕΤΑΞΥ","ΑΝΕΥ","ΑΝΤΙ","ΑΝΤΙΠΕΡΑ","ΑΝΤΙΟ","ΑΞΑΦΝΑ","ΑΠΟ","ΑΠΟΨΕ","ΑΡΑ","ΑΡΑΓΕ","ΑΥΡΙΟ","ΑΦΟΙ","ΑΦΟΥ","ΑΦΟΤΟΥ","ΒΡΕ","ΓΕΙΑ","ΓΙΑ","ΓΙΑΤΙ","ΓΡΑΜΜΑ","ΔΕΗ","ΔΕΝ","ΔΗΛΑΔΗ","ΔΙΧΩΣ","ΔΥΟ","ΕΑΝ","ΕΓΩ","ΕΔΩ","ΕΔΑ","ΕΙΘΕ","ΕΙΜΑΙ","ΕΙΜΑΣΤΕ","ΕΙΣΑΙ","ΕΙΣΑΣΤΕ","ΕΙΝΑΙ","ΕΙΣΤΕ","ΕΙΤΕ","ΕΚΕΙ","ΕΚΟ","ΕΛΑ","ΕΜΑΣ","ΕΜΕΙΣ","ΕΝΤΕΛΩΣ","ΕΝΤΟΣ","ΕΝΤΩΜΕΤΑΞΥ","ΕΝΩ","ΕΞΙ","ΕΞΙΣΟΥ","ΕΞΗΣ","ΕΞΩ","ΕΟΚ","ΕΠΑΝΩ","ΕΠΕΙΔΗ","ΕΠΕΙΤΑ","ΕΠΙ","ΕΠΙΣΗΣ","ΕΠΟΜΕΝΩΣ","ΕΠΤΑ","ΕΣΑΣ","ΕΣΕΙΣ","ΕΣΤΩ","ΕΣΥ","ΕΣΩ","ΕΤΣΙ","ΕΥΓΕ","ΕΦΕ","ΕΦΕΞΗΣ","ΕΧΤΕΣ","ΕΩΣ","ΗΔΗ","ΗΜΙ","ΗΠΑ","ΗΤΟΙ","ΘΕΣ","ΙΔΙΩΣ","ΙΔΗ","ΙΚΑ","ΙΣΩΣ","ΚΑΘΕ","ΚΑΘΕΤΙ","ΚΑΘΟΛΟΥ","ΚΑΘΩΣ","ΚΑΙ","ΚΑΝ","ΚΑΠΟΤΕ","ΚΑΠΟΥ","ΚΑΤΑ","ΚΑΤΙ","ΚΑΤΟΠΙΝ","ΚΑΤΩ","ΚΕΙ","ΚΙΧ","ΚΚΕ","ΚΟΛΑΝ","ΚΥΡΙΩΣ","ΚΩΣ","ΜΑΚΑΡΙ","ΜΑΛΙΣΤΑ","ΜΑΛΛΟΝ","ΜΑΙ","ΜΑΟ","ΜΑΟΥΣ","ΜΑΣ","ΜΕΘΑΥΡΙΟ","ΜΕΣ","ΜΕΣΑ","ΜΕΤΑ","ΜΕΤΑΞΥ","ΜΕΧΡΙ","ΜΗΔΕ","ΜΗΝ","ΜΗΠΩΣ","ΜΗΤΕ","ΜΙΑ","ΜΙΑΣ","ΜΙΣ","ΜΜΕ","ΜΟΛΟΝΟΤΙ","ΜΟΥ","ΜΠΑ","ΜΠΑΣ","ΜΠΟΥΦΑΝ","ΜΠΡΟΣ","ΝΑΙ","ΝΕΣ","ΝΤΑ","ΝΤΕ","ΞΑΝΑ","ΟΗΕ","ΟΚΤΩ","ΟΜΩΣ","ΟΝΕ","ΟΠΑ","ΟΠΟΥ","ΟΠΩΣ","ΟΣΟ","ΟΤΑΝ","ΟΤΕ","ΟΤΙ","ΟΥΤΕ","ΟΧΙ","ΠΑΛΙ","ΠΑΝ","ΠΑΝΟ","ΠΑΝΤΟΤΕ","ΠΑΝΤΟΥ","ΠΑΝΤΩΣ","ΠΑΝΩ","ΠΑΡΑ","ΠΕΡΑ","ΠΕΡΙ","ΠΕΡΙΠΟΥ","ΠΙΑ","ΠΙΟ","ΠΙΣΩ","ΠΛΑΙ","ΠΛΕΟΝ","ΠΛΗΝ","ΠΟΤΕ","ΠΟΥ","ΠΡΟ","ΠΡΟΣ","ΠΡΟΧΤΕΣ","ΠΡΟΧΘΕΣ","ΡΟΔΙ","ΠΩΣ","ΣΑΙ","ΣΑΣ","ΣΑΝ","ΣΕΙΣ","ΣΙΑ","ΣΚΙ","ΣΟΙ","ΣΟΥ","ΣΡΙ","ΣΥΝ","ΣΥΝΑΜΑ","ΣΧΕΔΟΝ","ΤΑΔΕ","ΤΑΞΙ","ΤΑΧΑ","ΤΕΙ","ΤΗΝ","ΤΗΣ","ΤΙΠΟΤΑ","ΤΙΠΟΤΕ","ΤΙΣ","ΤΟΝ","ΤΟΤΕ","ΤΟΥ","ΤΟΥΣ","ΤΣΑ","ΤΣΕ","ΤΣΙ","ΤΣΟΥ","ΤΩΝ","ΥΠΟ","ΥΠΟΨΗ","ΥΠΟΨΙΝ","ΥΣΤΕΡΑ","ΦΕΤΟΣ","ΦΙΣ","ΦΠΑ","ΧΑΦ","ΧΘΕΣ","ΧΤΕΣ","ΧΩΡΙΣ","ΩΣ","ΩΣΑΝ","ΩΣΟΤΟΥ","ΩΣΠΟΥ","ΩΣΤΕ","ΩΣΤΟΣΟ"],s=new RegExp("^[ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ]+$");return function(e){return"function"==typeof e.update?e.update(function(e){return n(e.toUpperCase()).toLowerCase()}):n(e.toUpperCase()).toLowerCase()}}(),e.Pipeline.registerFunction(e.el.stemmer,"stemmer-el"),e.el.stopWordFilter=e.generateStopWordFilter("αλλα αν αντι απο αυτα αυτεσ αυτη αυτο αυτοι αυτοσ αυτουσ αυτων για δε δεν εαν ειμαι ειμαστε ειναι εισαι ειστε εκεινα εκεινεσ εκεινη εκεινο εκεινοι εκεινοσ εκεινουσ εκεινων ενω επι η θα ισωσ κ και κατα κι μα με μετα μη μην να ο οι ομωσ οπωσ οσο οτι παρα ποια ποιεσ ποιο ποιοι ποιοσ ποιουσ ποιων που προσ πωσ σε στη στην στο στον τα την τησ το τον τοτε του των ωσ".split(" ")),e.Pipeline.registerFunction(e.el.stopWordFilter,"stopWordFilter-el"),e.el.normilizer=function(){var e={"Ά":"Α","ά":"α","Έ":"Ε","έ":"ε","Ή":"Η","ή":"η","Ί":"Ι","ί":"ι","Ό":"Ο","ο":"ο","Ύ":"Υ","ύ":"υ","Ώ":"Ω","ώ":"ω","Ϊ":"Ι","ϊ":"ι","Ϋ":"Υ","ϋ":"υ","ΐ":"ι","ΰ":"υ"};return function(t){if("function"==typeof t.update)return t.update(function(t){for(var r="",n=0;n<t.length;n++)r+=e[t.charAt(n)]||t.charAt(n);return r});for(var r="",n=0;n<t.length;n++)r+=e[t.charAt(n)]||t.charAt(n);return r}}(),e.Pipeline.registerFunction(e.el.normilizer,"normilizer-el")}});��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.es.min.js�����������������0000664�0000000�0000000�00000026353�14753064456�0030535�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*! * Lunr languages, `Spanish` language * https://github.com/MihaiValentin/lunr-languages * * Copyright 2014, Mihai Valentin * http://www.mozilla.org/MPL/ */ /*! * based on * Snowball JavaScript Library v0.3 * http://code.google.com/p/urim/ * http://snowball.tartarus.org/ * * Copyright 2010, Oleg Mazko * http://www.mozilla.org/MPL/ */ !function(e,s){"function"==typeof define&&define.amd?define(s):"object"==typeof exports?module.exports=s():s()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.es=function(){this.pipeline.reset(),this.pipeline.add(e.es.trimmer,e.es.stopWordFilter,e.es.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.es.stemmer))},e.es.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",e.es.trimmer=e.trimmerSupport.generateTrimmer(e.es.wordCharacters),e.Pipeline.registerFunction(e.es.trimmer,"trimmer-es"),e.es.stemmer=function(){var s=e.stemmerSupport.Among,r=e.stemmerSupport.SnowballProgram,n=new function(){function e(){if(A.out_grouping(x,97,252)){for(;!A.in_grouping(x,97,252);){if(A.cursor>=A.limit)return!0;A.cursor++}return!1}return!0}function n(){if(A.in_grouping(x,97,252)){var s=A.cursor;if(e()){if(A.cursor=s,!A.in_grouping(x,97,252))return!0;for(;!A.out_grouping(x,97,252);){if(A.cursor>=A.limit)return!0;A.cursor++}}return!1}return!0}function i(){var s,r=A.cursor;if(n()){if(A.cursor=r,!A.out_grouping(x,97,252))return;if(s=A.cursor,e()){if(A.cursor=s,!A.in_grouping(x,97,252)||A.cursor>=A.limit)return;A.cursor++}}g=A.cursor}function a(){for(;!A.in_grouping(x,97,252);){if(A.cursor>=A.limit)return!1;A.cursor++}for(;!A.out_grouping(x,97,252);){if(A.cursor>=A.limit)return!1;A.cursor++}return!0}function t(){var e=A.cursor;g=A.limit,p=g,v=g,i(),A.cursor=e,a()&&(p=A.cursor,a()&&(v=A.cursor))}function o(){for(var e;;){if(A.bra=A.cursor,e=A.find_among(k,6))switch(A.ket=A.cursor,e){case 1:A.slice_from("a");continue;case 2:A.slice_from("e");continue;case 3:A.slice_from("i");continue;case 4:A.slice_from("o");continue;case 5:A.slice_from("u");continue;case 6:if(A.cursor>=A.limit)break;A.cursor++;continue}break}}function u(){return g<=A.cursor}function w(){return p<=A.cursor}function c(){return v<=A.cursor}function m(){var e;if(A.ket=A.cursor,A.find_among_b(y,13)&&(A.bra=A.cursor,(e=A.find_among_b(q,11))&&u()))switch(e){case 1:A.bra=A.cursor,A.slice_from("iendo");break;case 2:A.bra=A.cursor,A.slice_from("ando");break;case 3:A.bra=A.cursor,A.slice_from("ar");break;case 4:A.bra=A.cursor,A.slice_from("er");break;case 5:A.bra=A.cursor,A.slice_from("ir");break;case 6:A.slice_del();break;case 7:A.eq_s_b(1,"u")&&A.slice_del()}}function l(e,s){if(!c())return!0;A.slice_del(),A.ket=A.cursor;var r=A.find_among_b(e,s);return r&&(A.bra=A.cursor,1==r&&c()&&A.slice_del()),!1}function d(e){return!c()||(A.slice_del(),A.ket=A.cursor,A.eq_s_b(2,e)&&(A.bra=A.cursor,c()&&A.slice_del()),!1)}function b(){var e;if(A.ket=A.cursor,e=A.find_among_b(S,46)){switch(A.bra=A.cursor,e){case 1:if(!c())return!1;A.slice_del();break;case 2:if(d("ic"))return!1;break;case 3:if(!c())return!1;A.slice_from("log");break;case 4:if(!c())return!1;A.slice_from("u");break;case 5:if(!c())return!1;A.slice_from("ente");break;case 6:if(!w())return!1;A.slice_del(),A.ket=A.cursor,e=A.find_among_b(C,4),e&&(A.bra=A.cursor,c()&&(A.slice_del(),1==e&&(A.ket=A.cursor,A.eq_s_b(2,"at")&&(A.bra=A.cursor,c()&&A.slice_del()))));break;case 7:if(l(P,3))return!1;break;case 8:if(l(F,3))return!1;break;case 9:if(d("at"))return!1}return!0}return!1}function f(){var e,s;if(A.cursor>=g&&(s=A.limit_backward,A.limit_backward=g,A.ket=A.cursor,e=A.find_among_b(W,12),A.limit_backward=s,e)){if(A.bra=A.cursor,1==e){if(!A.eq_s_b(1,"u"))return!1;A.slice_del()}return!0}return!1}function _(){var e,s,r,n;if(A.cursor>=g&&(s=A.limit_backward,A.limit_backward=g,A.ket=A.cursor,e=A.find_among_b(L,96),A.limit_backward=s,e))switch(A.bra=A.cursor,e){case 1:r=A.limit-A.cursor,A.eq_s_b(1,"u")?(n=A.limit-A.cursor,A.eq_s_b(1,"g")?A.cursor=A.limit-n:A.cursor=A.limit-r):A.cursor=A.limit-r,A.bra=A.cursor;case 2:A.slice_del()}}function h(){var e,s;if(A.ket=A.cursor,e=A.find_among_b(z,8))switch(A.bra=A.cursor,e){case 1:u()&&A.slice_del();break;case 2:u()&&(A.slice_del(),A.ket=A.cursor,A.eq_s_b(1,"u")&&(A.bra=A.cursor,s=A.limit-A.cursor,A.eq_s_b(1,"g")&&(A.cursor=A.limit-s,u()&&A.slice_del())))}}var v,p,g,k=[new s("",-1,6),new s("á",0,1),new s("é",0,2),new s("í",0,3),new s("ó",0,4),new s("ú",0,5)],y=[new s("la",-1,-1),new s("sela",0,-1),new s("le",-1,-1),new s("me",-1,-1),new s("se",-1,-1),new s("lo",-1,-1),new s("selo",5,-1),new s("las",-1,-1),new s("selas",7,-1),new s("les",-1,-1),new s("los",-1,-1),new s("selos",10,-1),new s("nos",-1,-1)],q=[new s("ando",-1,6),new s("iendo",-1,6),new s("yendo",-1,7),new s("ándo",-1,2),new s("iéndo",-1,1),new s("ar",-1,6),new s("er",-1,6),new s("ir",-1,6),new s("ár",-1,3),new s("ér",-1,4),new s("ír",-1,5)],C=[new s("ic",-1,-1),new s("ad",-1,-1),new s("os",-1,-1),new s("iv",-1,1)],P=[new s("able",-1,1),new s("ible",-1,1),new s("ante",-1,1)],F=[new s("ic",-1,1),new s("abil",-1,1),new s("iv",-1,1)],S=[new s("ica",-1,1),new s("ancia",-1,2),new s("encia",-1,5),new s("adora",-1,2),new s("osa",-1,1),new s("ista",-1,1),new s("iva",-1,9),new s("anza",-1,1),new s("logía",-1,3),new s("idad",-1,8),new s("able",-1,1),new s("ible",-1,1),new s("ante",-1,2),new s("mente",-1,7),new s("amente",13,6),new s("ación",-1,2),new s("ución",-1,4),new s("ico",-1,1),new s("ismo",-1,1),new s("oso",-1,1),new s("amiento",-1,1),new s("imiento",-1,1),new s("ivo",-1,9),new s("ador",-1,2),new s("icas",-1,1),new s("ancias",-1,2),new s("encias",-1,5),new s("adoras",-1,2),new s("osas",-1,1),new s("istas",-1,1),new s("ivas",-1,9),new s("anzas",-1,1),new s("logías",-1,3),new s("idades",-1,8),new s("ables",-1,1),new s("ibles",-1,1),new s("aciones",-1,2),new s("uciones",-1,4),new s("adores",-1,2),new s("antes",-1,2),new s("icos",-1,1),new s("ismos",-1,1),new s("osos",-1,1),new s("amientos",-1,1),new s("imientos",-1,1),new s("ivos",-1,9)],W=[new s("ya",-1,1),new s("ye",-1,1),new s("yan",-1,1),new s("yen",-1,1),new s("yeron",-1,1),new s("yendo",-1,1),new s("yo",-1,1),new s("yas",-1,1),new s("yes",-1,1),new s("yais",-1,1),new s("yamos",-1,1),new s("yó",-1,1)],L=[new s("aba",-1,2),new s("ada",-1,2),new s("ida",-1,2),new s("ara",-1,2),new s("iera",-1,2),new s("ía",-1,2),new s("aría",5,2),new s("ería",5,2),new s("iría",5,2),new s("ad",-1,2),new s("ed",-1,2),new s("id",-1,2),new s("ase",-1,2),new s("iese",-1,2),new s("aste",-1,2),new s("iste",-1,2),new s("an",-1,2),new s("aban",16,2),new s("aran",16,2),new s("ieran",16,2),new s("ían",16,2),new s("arían",20,2),new s("erían",20,2),new s("irían",20,2),new s("en",-1,1),new s("asen",24,2),new s("iesen",24,2),new s("aron",-1,2),new s("ieron",-1,2),new s("arán",-1,2),new s("erán",-1,2),new s("irán",-1,2),new s("ado",-1,2),new s("ido",-1,2),new s("ando",-1,2),new s("iendo",-1,2),new s("ar",-1,2),new s("er",-1,2),new s("ir",-1,2),new s("as",-1,2),new s("abas",39,2),new s("adas",39,2),new s("idas",39,2),new s("aras",39,2),new s("ieras",39,2),new s("ías",39,2),new s("arías",45,2),new s("erías",45,2),new s("irías",45,2),new s("es",-1,1),new s("ases",49,2),new s("ieses",49,2),new s("abais",-1,2),new s("arais",-1,2),new s("ierais",-1,2),new s("íais",-1,2),new s("aríais",55,2),new s("eríais",55,2),new s("iríais",55,2),new s("aseis",-1,2),new s("ieseis",-1,2),new s("asteis",-1,2),new s("isteis",-1,2),new s("áis",-1,2),new s("éis",-1,1),new s("aréis",64,2),new s("eréis",64,2),new s("iréis",64,2),new s("ados",-1,2),new s("idos",-1,2),new s("amos",-1,2),new s("ábamos",70,2),new s("áramos",70,2),new s("iéramos",70,2),new s("íamos",70,2),new s("aríamos",74,2),new s("eríamos",74,2),new s("iríamos",74,2),new s("emos",-1,1),new s("aremos",78,2),new s("eremos",78,2),new s("iremos",78,2),new s("ásemos",78,2),new s("iésemos",78,2),new s("imos",-1,2),new s("arás",-1,2),new s("erás",-1,2),new s("irás",-1,2),new s("ís",-1,2),new s("ará",-1,2),new s("erá",-1,2),new s("irá",-1,2),new s("aré",-1,2),new s("eré",-1,2),new s("iré",-1,2),new s("ió",-1,2)],z=[new s("a",-1,1),new s("e",-1,2),new s("o",-1,1),new s("os",-1,1),new s("á",-1,1),new s("é",-1,2),new s("í",-1,1),new s("ó",-1,1)],x=[17,65,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,4,10],A=new r;this.setCurrent=function(e){A.setCurrent(e)},this.getCurrent=function(){return A.getCurrent()},this.stem=function(){var e=A.cursor;return t(),A.limit_backward=e,A.cursor=A.limit,m(),A.cursor=A.limit,b()||(A.cursor=A.limit,f()||(A.cursor=A.limit,_())),A.cursor=A.limit,h(),A.cursor=A.limit_backward,o(),!0}};return function(e){return"function"==typeof e.update?e.update(function(e){return n.setCurrent(e),n.stem(),n.getCurrent()}):(n.setCurrent(e),n.stem(),n.getCurrent())}}(),e.Pipeline.registerFunction(e.es.stemmer,"stemmer-es"),e.es.stopWordFilter=e.generateStopWordFilter("a al algo algunas algunos ante antes como con contra cual cuando de del desde donde durante e el ella ellas ellos en entre era erais eran eras eres es esa esas ese eso esos esta estaba estabais estaban estabas estad estada estadas estado estados estamos estando estar estaremos estará estarán estarás estaré estaréis estaría estaríais estaríamos estarían estarías estas este estemos esto estos estoy estuve estuviera estuvierais estuvieran estuvieras estuvieron estuviese estuvieseis estuviesen estuvieses estuvimos estuviste estuvisteis estuviéramos estuviésemos estuvo está estábamos estáis están estás esté estéis estén estés fue fuera fuerais fueran fueras fueron fuese fueseis fuesen fueses fui fuimos fuiste fuisteis fuéramos fuésemos ha habida habidas habido habidos habiendo habremos habrá habrán habrás habré habréis habría habríais habríamos habrían habrías habéis había habíais habíamos habían habías han has hasta hay haya hayamos hayan hayas hayáis he hemos hube hubiera hubierais hubieran hubieras hubieron hubiese hubieseis hubiesen hubieses hubimos hubiste hubisteis hubiéramos hubiésemos hubo la las le les lo los me mi mis mucho muchos muy más mí mía mías mío míos nada ni no nos nosotras nosotros nuestra nuestras nuestro nuestros o os otra otras otro otros para pero poco por porque que quien quienes qué se sea seamos sean seas seremos será serán serás seré seréis sería seríais seríamos serían serías seáis sido siendo sin sobre sois somos son soy su sus suya suyas suyo suyos sí también tanto te tendremos tendrá tendrán tendrás tendré tendréis tendría tendríais tendríamos tendrían tendrías tened tenemos tenga tengamos tengan tengas tengo tengáis tenida tenidas tenido tenidos teniendo tenéis tenía teníais teníamos tenían tenías ti tiene tienen tienes todo todos tu tus tuve tuviera tuvierais tuvieran tuvieras tuvieron tuviese tuvieseis tuviesen tuvieses tuvimos tuviste tuvisteis tuviéramos tuviésemos tuvo tuya tuyas tuyo tuyos tú un una uno unos vosotras vosotros vuestra vuestras vuestro vuestros y ya yo él éramos".split(" ")),e.Pipeline.registerFunction(e.es.stopWordFilter,"stopWordFilter-es")}});�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.fi.min.js�����������������0000664�0000000�0000000�00000022176�14753064456�0030523�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*! * Lunr languages, `Finnish` language * https://github.com/MihaiValentin/lunr-languages * * Copyright 2014, Mihai Valentin * http://www.mozilla.org/MPL/ */ /*! * based on * Snowball JavaScript Library v0.3 * http://code.google.com/p/urim/ * http://snowball.tartarus.org/ * * Copyright 2010, Oleg Mazko * http://www.mozilla.org/MPL/ */ !function(i,e){"function"==typeof define&&define.amd?define(e):"object"==typeof exports?module.exports=e():e()(i.lunr)}(this,function(){return function(i){if(void 0===i)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===i.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");i.fi=function(){this.pipeline.reset(),this.pipeline.add(i.fi.trimmer,i.fi.stopWordFilter,i.fi.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(i.fi.stemmer))},i.fi.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",i.fi.trimmer=i.trimmerSupport.generateTrimmer(i.fi.wordCharacters),i.Pipeline.registerFunction(i.fi.trimmer,"trimmer-fi"),i.fi.stemmer=function(){var e=i.stemmerSupport.Among,r=i.stemmerSupport.SnowballProgram,n=new function(){function i(){f=A.limit,d=f,n()||(f=A.cursor,n()||(d=A.cursor))}function n(){for(var i;;){if(i=A.cursor,A.in_grouping(W,97,246))break;if(A.cursor=i,i>=A.limit)return!0;A.cursor++}for(A.cursor=i;!A.out_grouping(W,97,246);){if(A.cursor>=A.limit)return!0;A.cursor++}return!1}function t(){return d<=A.cursor}function s(){var i,e;if(A.cursor>=f)if(e=A.limit_backward,A.limit_backward=f,A.ket=A.cursor,i=A.find_among_b(h,10)){switch(A.bra=A.cursor,A.limit_backward=e,i){case 1:if(!A.in_grouping_b(x,97,246))return;break;case 2:if(!t())return}A.slice_del()}else A.limit_backward=e}function o(){var i,e,r;if(A.cursor>=f)if(e=A.limit_backward,A.limit_backward=f,A.ket=A.cursor,i=A.find_among_b(v,9))switch(A.bra=A.cursor,A.limit_backward=e,i){case 1:r=A.limit-A.cursor,A.eq_s_b(1,"k")||(A.cursor=A.limit-r,A.slice_del());break;case 2:A.slice_del(),A.ket=A.cursor,A.eq_s_b(3,"kse")&&(A.bra=A.cursor,A.slice_from("ksi"));break;case 3:A.slice_del();break;case 4:A.find_among_b(p,6)&&A.slice_del();break;case 5:A.find_among_b(g,6)&&A.slice_del();break;case 6:A.find_among_b(j,2)&&A.slice_del()}else A.limit_backward=e}function l(){return A.find_among_b(q,7)}function a(){return A.eq_s_b(1,"i")&&A.in_grouping_b(L,97,246)}function u(){var i,e,r;if(A.cursor>=f)if(e=A.limit_backward,A.limit_backward=f,A.ket=A.cursor,i=A.find_among_b(C,30)){switch(A.bra=A.cursor,A.limit_backward=e,i){case 1:if(!A.eq_s_b(1,"a"))return;break;case 2:case 9:if(!A.eq_s_b(1,"e"))return;break;case 3:if(!A.eq_s_b(1,"i"))return;break;case 4:if(!A.eq_s_b(1,"o"))return;break;case 5:if(!A.eq_s_b(1,"ä"))return;break;case 6:if(!A.eq_s_b(1,"ö"))return;break;case 7:if(r=A.limit-A.cursor,!l()&&(A.cursor=A.limit-r,!A.eq_s_b(2,"ie"))){A.cursor=A.limit-r;break}if(A.cursor=A.limit-r,A.cursor<=A.limit_backward){A.cursor=A.limit-r;break}A.cursor--,A.bra=A.cursor;break;case 8:if(!A.in_grouping_b(W,97,246)||!A.out_grouping_b(W,97,246))return}A.slice_del(),k=!0}else A.limit_backward=e}function c(){var i,e,r;if(A.cursor>=d)if(e=A.limit_backward,A.limit_backward=d,A.ket=A.cursor,i=A.find_among_b(P,14)){if(A.bra=A.cursor,A.limit_backward=e,1==i){if(r=A.limit-A.cursor,A.eq_s_b(2,"po"))return;A.cursor=A.limit-r}A.slice_del()}else A.limit_backward=e}function m(){var i;A.cursor>=f&&(i=A.limit_backward,A.limit_backward=f,A.ket=A.cursor,A.find_among_b(F,2)?(A.bra=A.cursor,A.limit_backward=i,A.slice_del()):A.limit_backward=i)}function w(){var i,e,r,n,t,s;if(A.cursor>=f){if(e=A.limit_backward,A.limit_backward=f,A.ket=A.cursor,A.eq_s_b(1,"t")&&(A.bra=A.cursor,r=A.limit-A.cursor,A.in_grouping_b(W,97,246)&&(A.cursor=A.limit-r,A.slice_del(),A.limit_backward=e,n=A.limit-A.cursor,A.cursor>=d&&(A.cursor=d,t=A.limit_backward,A.limit_backward=A.cursor,A.cursor=A.limit-n,A.ket=A.cursor,i=A.find_among_b(S,2))))){if(A.bra=A.cursor,A.limit_backward=t,1==i){if(s=A.limit-A.cursor,A.eq_s_b(2,"po"))return;A.cursor=A.limit-s}return void A.slice_del()}A.limit_backward=e}}function _(){var i,e,r,n;if(A.cursor>=f){for(i=A.limit_backward,A.limit_backward=f,e=A.limit-A.cursor,l()&&(A.cursor=A.limit-e,A.ket=A.cursor,A.cursor>A.limit_backward&&(A.cursor--,A.bra=A.cursor,A.slice_del())),A.cursor=A.limit-e,A.ket=A.cursor,A.in_grouping_b(y,97,228)&&(A.bra=A.cursor,A.out_grouping_b(W,97,246)&&A.slice_del()),A.cursor=A.limit-e,A.ket=A.cursor,A.eq_s_b(1,"j")&&(A.bra=A.cursor,r=A.limit-A.cursor,A.eq_s_b(1,"o")?A.slice_del():(A.cursor=A.limit-r,A.eq_s_b(1,"u")&&A.slice_del())),A.cursor=A.limit-e,A.ket=A.cursor,A.eq_s_b(1,"o")&&(A.bra=A.cursor,A.eq_s_b(1,"j")&&A.slice_del()),A.cursor=A.limit-e,A.limit_backward=i;;){if(n=A.limit-A.cursor,A.out_grouping_b(W,97,246)){A.cursor=A.limit-n;break}if(A.cursor=A.limit-n,A.cursor<=A.limit_backward)return;A.cursor--}A.ket=A.cursor,A.cursor>A.limit_backward&&(A.cursor--,A.bra=A.cursor,b=A.slice_to(),A.eq_v_b(b)&&A.slice_del())}}var k,b,d,f,h=[new e("pa",-1,1),new e("sti",-1,2),new e("kaan",-1,1),new e("han",-1,1),new e("kin",-1,1),new e("hän",-1,1),new e("kään",-1,1),new e("ko",-1,1),new e("pä",-1,1),new e("kö",-1,1)],p=[new e("lla",-1,-1),new e("na",-1,-1),new e("ssa",-1,-1),new e("ta",-1,-1),new e("lta",3,-1),new e("sta",3,-1)],g=[new e("llä",-1,-1),new e("nä",-1,-1),new e("ssä",-1,-1),new e("tä",-1,-1),new e("ltä",3,-1),new e("stä",3,-1)],j=[new e("lle",-1,-1),new e("ine",-1,-1)],v=[new e("nsa",-1,3),new e("mme",-1,3),new e("nne",-1,3),new e("ni",-1,2),new e("si",-1,1),new e("an",-1,4),new e("en",-1,6),new e("än",-1,5),new e("nsä",-1,3)],q=[new e("aa",-1,-1),new e("ee",-1,-1),new e("ii",-1,-1),new e("oo",-1,-1),new e("uu",-1,-1),new e("ää",-1,-1),new e("öö",-1,-1)],C=[new e("a",-1,8),new e("lla",0,-1),new e("na",0,-1),new e("ssa",0,-1),new e("ta",0,-1),new e("lta",4,-1),new e("sta",4,-1),new e("tta",4,9),new e("lle",-1,-1),new e("ine",-1,-1),new e("ksi",-1,-1),new e("n",-1,7),new e("han",11,1),new e("den",11,-1,a),new e("seen",11,-1,l),new e("hen",11,2),new e("tten",11,-1,a),new e("hin",11,3),new e("siin",11,-1,a),new e("hon",11,4),new e("hän",11,5),new e("hön",11,6),new e("ä",-1,8),new e("llä",22,-1),new e("nä",22,-1),new e("ssä",22,-1),new e("tä",22,-1),new e("ltä",26,-1),new e("stä",26,-1),new e("ttä",26,9)],P=[new e("eja",-1,-1),new e("mma",-1,1),new e("imma",1,-1),new e("mpa",-1,1),new e("impa",3,-1),new e("mmi",-1,1),new e("immi",5,-1),new e("mpi",-1,1),new e("impi",7,-1),new e("ejä",-1,-1),new e("mmä",-1,1),new e("immä",10,-1),new e("mpä",-1,1),new e("impä",12,-1)],F=[new e("i",-1,-1),new e("j",-1,-1)],S=[new e("mma",-1,1),new e("imma",0,-1)],y=[17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8],W=[17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,8,0,32],L=[17,65,16,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,32],x=[17,97,24,1,0,0,0,0,0,0,0,0,0,0,0,0,8,0,32],A=new r;this.setCurrent=function(i){A.setCurrent(i)},this.getCurrent=function(){return A.getCurrent()},this.stem=function(){var e=A.cursor;return i(),k=!1,A.limit_backward=e,A.cursor=A.limit,s(),A.cursor=A.limit,o(),A.cursor=A.limit,u(),A.cursor=A.limit,c(),A.cursor=A.limit,k?(m(),A.cursor=A.limit):(A.cursor=A.limit,w(),A.cursor=A.limit),_(),!0}};return function(i){return"function"==typeof i.update?i.update(function(i){return n.setCurrent(i),n.stem(),n.getCurrent()}):(n.setCurrent(i),n.stem(),n.getCurrent())}}(),i.Pipeline.registerFunction(i.fi.stemmer,"stemmer-fi"),i.fi.stopWordFilter=i.generateStopWordFilter("ei eivät emme en et ette että he heidän heidät heihin heille heillä heiltä heissä heistä heitä hän häneen hänelle hänellä häneltä hänen hänessä hänestä hänet häntä itse ja johon joiden joihin joiksi joilla joille joilta joina joissa joista joita joka joksi jolla jolle jolta jona jonka jos jossa josta jota jotka kanssa keiden keihin keiksi keille keillä keiltä keinä keissä keistä keitä keneen keneksi kenelle kenellä keneltä kenen kenenä kenessä kenestä kenet ketkä ketkä ketä koska kuin kuka kun me meidän meidät meihin meille meillä meiltä meissä meistä meitä mihin miksi mikä mille millä miltä minkä minkä minua minulla minulle minulta minun minussa minusta minut minuun minä minä missä mistä mitkä mitä mukaan mutta ne niiden niihin niiksi niille niillä niiltä niin niin niinä niissä niistä niitä noiden noihin noiksi noilla noille noilta noin noina noissa noista noita nuo nyt näiden näihin näiksi näille näillä näiltä näinä näissä näistä näitä nämä ole olemme olen olet olette oli olimme olin olisi olisimme olisin olisit olisitte olisivat olit olitte olivat olla olleet ollut on ovat poikki se sekä sen siihen siinä siitä siksi sille sillä sillä siltä sinua sinulla sinulle sinulta sinun sinussa sinusta sinut sinuun sinä sinä sitä tai te teidän teidät teihin teille teillä teiltä teissä teistä teitä tuo tuohon tuoksi tuolla tuolle tuolta tuon tuona tuossa tuosta tuota tähän täksi tälle tällä tältä tämä tämän tänä tässä tästä tätä vaan vai vaikka yli".split(" ")),i.Pipeline.registerFunction(i.fi.stopWordFilter,"stopWordFilter-fi")}});��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.fr.min.js�����������������0000664�0000000�0000000�00000024655�14753064456�0030540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*! * Lunr languages, `French` language * https://github.com/MihaiValentin/lunr-languages * * Copyright 2014, Mihai Valentin * http://www.mozilla.org/MPL/ */ /*! * based on * Snowball JavaScript Library v0.3 * http://code.google.com/p/urim/ * http://snowball.tartarus.org/ * * Copyright 2010, Oleg Mazko * http://www.mozilla.org/MPL/ */ !function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.fr=function(){this.pipeline.reset(),this.pipeline.add(e.fr.trimmer,e.fr.stopWordFilter,e.fr.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.fr.stemmer))},e.fr.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",e.fr.trimmer=e.trimmerSupport.generateTrimmer(e.fr.wordCharacters),e.Pipeline.registerFunction(e.fr.trimmer,"trimmer-fr"),e.fr.stemmer=function(){var r=e.stemmerSupport.Among,s=e.stemmerSupport.SnowballProgram,i=new function(){function e(e,r,s){return!(!W.eq_s(1,e)||(W.ket=W.cursor,!W.in_grouping(F,97,251)))&&(W.slice_from(r),W.cursor=s,!0)}function i(e,r,s){return!!W.eq_s(1,e)&&(W.ket=W.cursor,W.slice_from(r),W.cursor=s,!0)}function n(){for(var r,s;;){if(r=W.cursor,W.in_grouping(F,97,251)){if(W.bra=W.cursor,s=W.cursor,e("u","U",r))continue;if(W.cursor=s,e("i","I",r))continue;if(W.cursor=s,i("y","Y",r))continue}if(W.cursor=r,W.bra=r,!e("y","Y",r)){if(W.cursor=r,W.eq_s(1,"q")&&(W.bra=W.cursor,i("u","U",r)))continue;if(W.cursor=r,r>=W.limit)return;W.cursor++}}}function t(){for(;!W.in_grouping(F,97,251);){if(W.cursor>=W.limit)return!0;W.cursor++}for(;!W.out_grouping(F,97,251);){if(W.cursor>=W.limit)return!0;W.cursor++}return!1}function u(){var e=W.cursor;if(q=W.limit,g=q,p=q,W.in_grouping(F,97,251)&&W.in_grouping(F,97,251)&&W.cursor<W.limit)W.cursor++;else if(W.cursor=e,!W.find_among(v,3)){W.cursor=e;do{if(W.cursor>=W.limit){W.cursor=q;break}W.cursor++}while(!W.in_grouping(F,97,251))}q=W.cursor,W.cursor=e,t()||(g=W.cursor,t()||(p=W.cursor))}function o(){for(var e,r;;){if(r=W.cursor,W.bra=r,!(e=W.find_among(h,4)))break;switch(W.ket=W.cursor,e){case 1:W.slice_from("i");break;case 2:W.slice_from("u");break;case 3:W.slice_from("y");break;case 4:if(W.cursor>=W.limit)return;W.cursor++}}}function c(){return q<=W.cursor}function a(){return g<=W.cursor}function l(){return p<=W.cursor}function w(){var e,r;if(W.ket=W.cursor,e=W.find_among_b(C,43)){switch(W.bra=W.cursor,e){case 1:if(!l())return!1;W.slice_del();break;case 2:if(!l())return!1;W.slice_del(),W.ket=W.cursor,W.eq_s_b(2,"ic")&&(W.bra=W.cursor,l()?W.slice_del():W.slice_from("iqU"));break;case 3:if(!l())return!1;W.slice_from("log");break;case 4:if(!l())return!1;W.slice_from("u");break;case 5:if(!l())return!1;W.slice_from("ent");break;case 6:if(!c())return!1;if(W.slice_del(),W.ket=W.cursor,e=W.find_among_b(z,6))switch(W.bra=W.cursor,e){case 1:l()&&(W.slice_del(),W.ket=W.cursor,W.eq_s_b(2,"at")&&(W.bra=W.cursor,l()&&W.slice_del()));break;case 2:l()?W.slice_del():a()&&W.slice_from("eux");break;case 3:l()&&W.slice_del();break;case 4:c()&&W.slice_from("i")}break;case 7:if(!l())return!1;if(W.slice_del(),W.ket=W.cursor,e=W.find_among_b(y,3))switch(W.bra=W.cursor,e){case 1:l()?W.slice_del():W.slice_from("abl");break;case 2:l()?W.slice_del():W.slice_from("iqU");break;case 3:l()&&W.slice_del()}break;case 8:if(!l())return!1;if(W.slice_del(),W.ket=W.cursor,W.eq_s_b(2,"at")&&(W.bra=W.cursor,l()&&(W.slice_del(),W.ket=W.cursor,W.eq_s_b(2,"ic")))){W.bra=W.cursor,l()?W.slice_del():W.slice_from("iqU");break}break;case 9:W.slice_from("eau");break;case 10:if(!a())return!1;W.slice_from("al");break;case 11:if(l())W.slice_del();else{if(!a())return!1;W.slice_from("eux")}break;case 12:if(!a()||!W.out_grouping_b(F,97,251))return!1;W.slice_del();break;case 13:return c()&&W.slice_from("ant"),!1;case 14:return c()&&W.slice_from("ent"),!1;case 15:return r=W.limit-W.cursor,W.in_grouping_b(F,97,251)&&c()&&(W.cursor=W.limit-r,W.slice_del()),!1}return!0}return!1}function f(){var e,r;if(W.cursor<q)return!1;if(r=W.limit_backward,W.limit_backward=q,W.ket=W.cursor,!(e=W.find_among_b(x,35)))return W.limit_backward=r,!1;if(W.bra=W.cursor,1==e){if(!W.out_grouping_b(F,97,251))return W.limit_backward=r,!1;W.slice_del()}return W.limit_backward=r,!0}function m(){var e,r,s;if(W.cursor<q)return!1;if(r=W.limit_backward,W.limit_backward=q,W.ket=W.cursor,!(e=W.find_among_b(I,38)))return W.limit_backward=r,!1;switch(W.bra=W.cursor,e){case 1:if(!l())return W.limit_backward=r,!1;W.slice_del();break;case 2:W.slice_del();break;case 3:W.slice_del(),s=W.limit-W.cursor,W.ket=W.cursor,W.eq_s_b(1,"e")?(W.bra=W.cursor,W.slice_del()):W.cursor=W.limit-s}return W.limit_backward=r,!0}function _(){var e,r,s,i,n=W.limit-W.cursor;if(W.ket=W.cursor,W.eq_s_b(1,"s")?(W.bra=W.cursor,r=W.limit-W.cursor,W.out_grouping_b(S,97,232)?(W.cursor=W.limit-r,W.slice_del()):W.cursor=W.limit-n):W.cursor=W.limit-n,W.cursor>=q){if(s=W.limit_backward,W.limit_backward=q,W.ket=W.cursor,e=W.find_among_b(P,7))switch(W.bra=W.cursor,e){case 1:if(l()){if(i=W.limit-W.cursor,!W.eq_s_b(1,"s")&&(W.cursor=W.limit-i,!W.eq_s_b(1,"t")))break;W.slice_del()}break;case 2:W.slice_from("i");break;case 3:W.slice_del();break;case 4:W.eq_s_b(2,"gu")&&W.slice_del()}W.limit_backward=s}}function b(){var e=W.limit-W.cursor;W.find_among_b(U,5)&&(W.cursor=W.limit-e,W.ket=W.cursor,W.cursor>W.limit_backward&&(W.cursor--,W.bra=W.cursor,W.slice_del()))}function d(){for(var e,r=1;W.out_grouping_b(F,97,251);)r--;if(r<=0){if(W.ket=W.cursor,e=W.limit-W.cursor,!W.eq_s_b(1,"é")&&(W.cursor=W.limit-e,!W.eq_s_b(1,"è")))return;W.bra=W.cursor,W.slice_from("e")}}function k(){if(!w()&&(W.cursor=W.limit,!f()&&(W.cursor=W.limit,!m())))return W.cursor=W.limit,void _();W.cursor=W.limit,W.ket=W.cursor,W.eq_s_b(1,"Y")?(W.bra=W.cursor,W.slice_from("i")):(W.cursor=W.limit,W.eq_s_b(1,"ç")&&(W.bra=W.cursor,W.slice_from("c")))}var p,g,q,v=[new r("col",-1,-1),new r("par",-1,-1),new r("tap",-1,-1)],h=[new r("",-1,4),new r("I",0,1),new r("U",0,2),new r("Y",0,3)],z=[new r("iqU",-1,3),new r("abl",-1,3),new r("Ièr",-1,4),new r("ièr",-1,4),new r("eus",-1,2),new r("iv",-1,1)],y=[new r("ic",-1,2),new r("abil",-1,1),new r("iv",-1,3)],C=[new r("iqUe",-1,1),new r("atrice",-1,2),new r("ance",-1,1),new r("ence",-1,5),new r("logie",-1,3),new r("able",-1,1),new r("isme",-1,1),new r("euse",-1,11),new r("iste",-1,1),new r("ive",-1,8),new r("if",-1,8),new r("usion",-1,4),new r("ation",-1,2),new r("ution",-1,4),new r("ateur",-1,2),new r("iqUes",-1,1),new r("atrices",-1,2),new r("ances",-1,1),new r("ences",-1,5),new r("logies",-1,3),new r("ables",-1,1),new r("ismes",-1,1),new r("euses",-1,11),new r("istes",-1,1),new r("ives",-1,8),new r("ifs",-1,8),new r("usions",-1,4),new r("ations",-1,2),new r("utions",-1,4),new r("ateurs",-1,2),new r("ments",-1,15),new r("ements",30,6),new r("issements",31,12),new r("ités",-1,7),new r("ment",-1,15),new r("ement",34,6),new r("issement",35,12),new r("amment",34,13),new r("emment",34,14),new r("aux",-1,10),new r("eaux",39,9),new r("eux",-1,1),new r("ité",-1,7)],x=[new r("ira",-1,1),new r("ie",-1,1),new r("isse",-1,1),new r("issante",-1,1),new r("i",-1,1),new r("irai",4,1),new r("ir",-1,1),new r("iras",-1,1),new r("ies",-1,1),new r("îmes",-1,1),new r("isses",-1,1),new r("issantes",-1,1),new r("îtes",-1,1),new r("is",-1,1),new r("irais",13,1),new r("issais",13,1),new r("irions",-1,1),new r("issions",-1,1),new r("irons",-1,1),new r("issons",-1,1),new r("issants",-1,1),new r("it",-1,1),new r("irait",21,1),new r("issait",21,1),new r("issant",-1,1),new r("iraIent",-1,1),new r("issaIent",-1,1),new r("irent",-1,1),new r("issent",-1,1),new r("iront",-1,1),new r("ît",-1,1),new r("iriez",-1,1),new r("issiez",-1,1),new r("irez",-1,1),new r("issez",-1,1)],I=[new r("a",-1,3),new r("era",0,2),new r("asse",-1,3),new r("ante",-1,3),new r("ée",-1,2),new r("ai",-1,3),new r("erai",5,2),new r("er",-1,2),new r("as",-1,3),new r("eras",8,2),new r("âmes",-1,3),new r("asses",-1,3),new r("antes",-1,3),new r("âtes",-1,3),new r("ées",-1,2),new r("ais",-1,3),new r("erais",15,2),new r("ions",-1,1),new r("erions",17,2),new r("assions",17,3),new r("erons",-1,2),new r("ants",-1,3),new r("és",-1,2),new r("ait",-1,3),new r("erait",23,2),new r("ant",-1,3),new r("aIent",-1,3),new r("eraIent",26,2),new r("èrent",-1,2),new r("assent",-1,3),new r("eront",-1,2),new r("ât",-1,3),new r("ez",-1,2),new r("iez",32,2),new r("eriez",33,2),new r("assiez",33,3),new r("erez",32,2),new r("é",-1,2)],P=[new r("e",-1,3),new r("Ière",0,2),new r("ière",0,2),new r("ion",-1,1),new r("Ier",-1,2),new r("ier",-1,2),new r("ë",-1,4)],U=[new r("ell",-1,-1),new r("eill",-1,-1),new r("enn",-1,-1),new r("onn",-1,-1),new r("ett",-1,-1)],F=[17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,128,130,103,8,5],S=[1,65,20,0,0,0,0,0,0,0,0,0,0,0,0,0,128],W=new s;this.setCurrent=function(e){W.setCurrent(e)},this.getCurrent=function(){return W.getCurrent()},this.stem=function(){var e=W.cursor;return n(),W.cursor=e,u(),W.limit_backward=e,W.cursor=W.limit,k(),W.cursor=W.limit,b(),W.cursor=W.limit,d(),W.cursor=W.limit_backward,o(),!0}};return function(e){return"function"==typeof e.update?e.update(function(e){return i.setCurrent(e),i.stem(),i.getCurrent()}):(i.setCurrent(e),i.stem(),i.getCurrent())}}(),e.Pipeline.registerFunction(e.fr.stemmer,"stemmer-fr"),e.fr.stopWordFilter=e.generateStopWordFilter("ai aie aient aies ait as au aura aurai auraient aurais aurait auras aurez auriez aurions aurons auront aux avaient avais avait avec avez aviez avions avons ayant ayez ayons c ce ceci celà ces cet cette d dans de des du elle en es est et eu eue eues eurent eus eusse eussent eusses eussiez eussions eut eux eûmes eût eûtes furent fus fusse fussent fusses fussiez fussions fut fûmes fût fûtes ici il ils j je l la le les leur leurs lui m ma mais me mes moi mon même n ne nos notre nous on ont ou par pas pour qu que quel quelle quelles quels qui s sa sans se sera serai seraient serais serait seras serez seriez serions serons seront ses soi soient sois soit sommes son sont soyez soyons suis sur t ta te tes toi ton tu un une vos votre vous y à étaient étais était étant étiez étions été étée étées étés êtes".split(" ")),e.Pipeline.registerFunction(e.fr.stopWordFilter,"stopWordFilter-fr")}});�����������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.he.min.js�����������������0000664�0000000�0000000�00000015342�14753064456�0030516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.he=function(){this.pipeline.reset(),this.pipeline.add(e.he.trimmer,e.he.stopWordFilter,e.he.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.he.stemmer))},e.he.wordCharacters="֑-״א-תa-zA-Za-zA-Z0-90-9",e.he.trimmer=e.trimmerSupport.generateTrimmer(e.he.wordCharacters),e.Pipeline.registerFunction(e.he.trimmer,"trimmer-he"),e.he.stemmer=function(){var e=this;return e.result=!1,e.preRemoved=!1,e.sufRemoved=!1,e.pre={pre1:"ה ו י ת",pre2:"ב כ ל מ ש כש",pre3:"הב הכ הל המ הש בש לכ",pre4:"וב וכ ול ומ וש",pre5:"מה שה כל",pre6:"מב מכ מל ממ מש",pre7:"בה בו בי בת כה כו כי כת לה לו לי לת",pre8:"ובה ובו ובי ובת וכה וכו וכי וכת ולה ולו ולי ולת"},e.suf={suf1:"ך כ ם ן נ",suf2:"ים ות וך וכ ום ון ונ הם הן יכ יך ינ ים",suf3:"תי תך תכ תם תן תנ",suf4:"ותי ותך ותכ ותם ותן ותנ",suf5:"נו כם כן הם הן",suf6:"ונו וכם וכן והם והן",suf7:"תכם תכן תנו תהם תהן",suf8:"הוא היא הם הן אני אתה את אנו אתם אתן",suf9:"ני נו כי כו כם כן תי תך תכ תם תן",suf10:"י ך כ ם ן נ ת"},e.patterns=JSON.parse('{"hebrewPatterns": [{"pt1": [{"c": "ה", "l": 0}]}, {"pt2": [{"c": "ו", "l": 0}]}, {"pt3": [{"c": "י", "l": 0}]}, {"pt4": [{"c": "ת", "l": 0}]}, {"pt5": [{"c": "מ", "l": 0}]}, {"pt6": [{"c": "ל", "l": 0}]}, {"pt7": [{"c": "ב", "l": 0}]}, {"pt8": [{"c": "כ", "l": 0}]}, {"pt9": [{"c": "ש", "l": 0}]}, {"pt10": [{"c": "כש", "l": 0}]}, {"pt11": [{"c": "בה", "l": 0}]}, {"pt12": [{"c": "וב", "l": 0}]}, {"pt13": [{"c": "וכ", "l": 0}]}, {"pt14": [{"c": "ול", "l": 0}]}, {"pt15": [{"c": "ומ", "l": 0}]}, {"pt16": [{"c": "וש", "l": 0}]}, {"pt17": [{"c": "הב", "l": 0}]}, {"pt18": [{"c": "הכ", "l": 0}]}, {"pt19": [{"c": "הל", "l": 0}]}, {"pt20": [{"c": "המ", "l": 0}]}, {"pt21": [{"c": "הש", "l": 0}]}, {"pt22": [{"c": "מה", "l": 0}]}, {"pt23": [{"c": "שה", "l": 0}]}, {"pt24": [{"c": "כל", "l": 0}]}]}'),e.execArray=["cleanWord","removeDiacritics","removeStopWords","normalizeHebrewCharacters"],e.stem=function(){var r=0;for(e.result=!1,e.preRemoved=!1,e.sufRemoved=!1;r<e.execArray.length&&1!=e.result;)e.result=e[e.execArray[r]](),r++},e.setCurrent=function(r){e.word=r},e.getCurrent=function(){return e.word},e.cleanWord=function(){return!!new RegExp("[^֑-״א-ת]").test("")},e.removeDiacritics=function(){var r=new RegExp("[ְ-ֿ]","g");return e.word=e.word.replace(r,""),!1},e.removeStopWords=function(){if("אבל או אולי אותו אותי אותך אותם אותן אותנו אז אחר אחרות אחרי אחריכן אחרים אחרת אי איזה איך אין איפה אל אלה אלו אם אנחנו אני אף אפשר את אתה אתכם אתכן אתם אתן באיזה באיזו בגלל בין בלבד בעבור בעזרת בכל בכן בלי במידה במקום שבו ברוב בשביל בשעה ש בתוך גם דרך הוא היא היה היי היכן היתה היתי הם הן הנה הסיבה שבגללה הרי ואילו ואת זאת זה זות יהיה יוכל יוכלו יותר מדי יכול יכולה יכולות יכולים יכל יכלה יכלו יש כאן כאשר כולם כולן כזה כי כיצד כך כל כלל כמו כן כפי כש לא לאו לאיזותך לאן לבין לה להיות להם להן לו לזה לזות לי לך לכם לכן למה למעלה למעלה מ למטה למטה מ למעט למקום שבו למרות לנו לעבר לעיכן לפיכך לפני מאד מאחורי מאיזו סיבה מאין מאיפה מבלי מבעד מדוע מה מהיכן מול מחוץ מי מידע מכאן מכל מכן מלבד מן מנין מסוגל מעט מעטים מעל מצד מקום בו מתחת מתי נגד נגר נו עד עז על עלי עליו עליה עליהם עליך עלינו עם עצמה עצמהם עצמהן עצמו עצמי עצמם עצמן עצמנו פה רק שוב של שלה שלהם שלהן שלו שלי שלך שלכה שלכם שלכן שלנו שם תהיה תחת".split(" ").indexOf(e.word)>=0)return!0},e.normalizeHebrewCharacters=function(){return e.word=e.word.replace("ך","כ"),e.word=e.word.replace("ם","מ"),e.word=e.word.replace("ן","נ"),e.word=e.word.replace("ף","פ"),e.word=e.word.replace("ץ","צ"),!1},function(r){return"function"==typeof r.update?r.update(function(r){return e.setCurrent(r),e.stem(),e.getCurrent()}):(e.setCurrent(r),e.stem(),e.getCurrent())}}(),e.Pipeline.registerFunction(e.he.stemmer,"stemmer-he"),e.he.stopWordFilter=e.generateStopWordFilter("אבל או אולי אותו אותי אותך אותם אותן אותנו אז אחר אחרות אחרי אחריכן אחרים אחרת אי איזה איך אין איפה אל אלה אלו אם אנחנו אני אף אפשר את אתה אתכם אתכן אתם אתן באיזה באיזו בגלל בין בלבד בעבור בעזרת בכל בכן בלי במידה במקום שבו ברוב בשביל בשעה ש בתוך גם דרך הוא היא היה היי היכן היתה היתי הם הן הנה הסיבה שבגללה הרי ואילו ואת זאת זה זות יהיה יוכל יוכלו יותר מדי יכול יכולה יכולות יכולים יכל יכלה יכלו יש כאן כאשר כולם כולן כזה כי כיצד כך כל כלל כמו כן כפי כש לא לאו לאיזותך לאן לבין לה להיות להם להן לו לזה לזות לי לך לכם לכן למה למעלה למעלה מ למטה למטה מ למעט למקום שבו למרות לנו לעבר לעיכן לפיכך לפני מאד מאחורי מאיזו סיבה מאין מאיפה מבלי מבעד מדוע מה מהיכן מול מחוץ מי מידע מכאן מכל מכן מלבד מן מנין מסוגל מעט מעטים מעל מצד מקום בו מתחת מתי נגד נגר נו עד עז על עלי עליו עליה עליהם עליך עלינו עם עצמה עצמהם עצמהן עצמו עצמי עצמם עצמן עצמנו פה רק שוב של שלה שלהם שלהן שלו שלי שלך שלכה שלכם שלכן שלנו שם תהיה תחת".split(" ")),e.Pipeline.registerFunction(e.he.stopWordFilter,"stopWordFilter-he")}});����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.hi.min.js�����������������0000664�0000000�0000000�00000006467�14753064456�0030532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.hi=function(){this.pipeline.reset(),this.pipeline.add(e.hi.trimmer,e.hi.stopWordFilter,e.hi.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.hi.stemmer))},e.hi.wordCharacters="ऀ-ःऄ-एऐ-टठ-यर-िी-ॏॐ-य़ॠ-९॰-ॿa-zA-Za-zA-Z0-90-9",e.hi.trimmer=e.trimmerSupport.generateTrimmer(e.hi.wordCharacters),e.Pipeline.registerFunction(e.hi.trimmer,"trimmer-hi"),e.hi.stopWordFilter=e.generateStopWordFilter("अत अपना अपनी अपने अभी अंदर आदि आप इत्यादि इन इनका इन्हीं इन्हें इन्हों इस इसका इसकी इसके इसमें इसी इसे उन उनका उनकी उनके उनको उन्हीं उन्हें उन्हों उस उसके उसी उसे एक एवं एस ऐसे और कई कर करता करते करना करने करें कहते कहा का काफ़ी कि कितना किन्हें किन्हों किया किर किस किसी किसे की कुछ कुल के को कोई कौन कौनसा गया घर जब जहाँ जा जितना जिन जिन्हें जिन्हों जिस जिसे जीधर जैसा जैसे जो तक तब तरह तिन तिन्हें तिन्हों तिस तिसे तो था थी थे दबारा दिया दुसरा दूसरे दो द्वारा न नके नहीं ना निहायत नीचे ने पर पहले पूरा पे फिर बनी बही बहुत बाद बाला बिलकुल भी भीतर मगर मानो मे में यदि यह यहाँ यही या यिह ये रखें रहा रहे ऱ्वासा लिए लिये लेकिन व वग़ैरह वर्ग वह वहाँ वहीं वाले वुह वे वो सकता सकते सबसे सभी साथ साबुत साभ सारा से सो संग ही हुआ हुई हुए है हैं हो होता होती होते होना होने".split(" ")),e.hi.stemmer=function(){return function(e){return"function"==typeof e.update?e.update(function(e){return e}):e}}();var r=e.wordcut;r.init(),e.hi.tokenizer=function(i){if(!arguments.length||null==i||void 0==i)return[];if(Array.isArray(i))return i.map(function(r){return isLunr2?new e.Token(r.toLowerCase()):r.toLowerCase()});var t=i.toString().toLowerCase().replace(/^\s+/,"");return r.cut(t).split("|")},e.Pipeline.registerFunction(e.hi.stemmer,"stemmer-hi"),e.Pipeline.registerFunction(e.hi.stopWordFilter,"stopWordFilter-hi")}});���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.hu.min.js�����������������0000664�0000000�0000000�00000022335�14753064456�0030536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*! * Lunr languages, `Hungarian` language * https://github.com/MihaiValentin/lunr-languages * * Copyright 2014, Mihai Valentin * http://www.mozilla.org/MPL/ */ /*! * based on * Snowball JavaScript Library v0.3 * http://code.google.com/p/urim/ * http://snowball.tartarus.org/ * * Copyright 2010, Oleg Mazko * http://www.mozilla.org/MPL/ */ !function(e,n){"function"==typeof define&&define.amd?define(n):"object"==typeof exports?module.exports=n():n()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.hu=function(){this.pipeline.reset(),this.pipeline.add(e.hu.trimmer,e.hu.stopWordFilter,e.hu.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.hu.stemmer))},e.hu.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",e.hu.trimmer=e.trimmerSupport.generateTrimmer(e.hu.wordCharacters),e.Pipeline.registerFunction(e.hu.trimmer,"trimmer-hu"),e.hu.stemmer=function(){var n=e.stemmerSupport.Among,r=e.stemmerSupport.SnowballProgram,i=new function(){function e(){var e,n=L.cursor;if(d=L.limit,L.in_grouping(W,97,252))for(;;){if(e=L.cursor,L.out_grouping(W,97,252))return L.cursor=e,L.find_among(g,8)||(L.cursor=e,e<L.limit&&L.cursor++),void(d=L.cursor);if(L.cursor=e,e>=L.limit)return void(d=e);L.cursor++}if(L.cursor=n,L.out_grouping(W,97,252)){for(;!L.in_grouping(W,97,252);){if(L.cursor>=L.limit)return;L.cursor++}d=L.cursor}}function i(){return d<=L.cursor}function a(){var e;if(L.ket=L.cursor,(e=L.find_among_b(h,2))&&(L.bra=L.cursor,i()))switch(e){case 1:L.slice_from("a");break;case 2:L.slice_from("e")}}function t(){var e=L.limit-L.cursor;return!!L.find_among_b(p,23)&&(L.cursor=L.limit-e,!0)}function s(){if(L.cursor>L.limit_backward){L.cursor--,L.ket=L.cursor;var e=L.cursor-1;L.limit_backward<=e&&e<=L.limit&&(L.cursor=e,L.bra=e,L.slice_del())}}function c(){var e;if(L.ket=L.cursor,(e=L.find_among_b(_,2))&&(L.bra=L.cursor,i())){if((1==e||2==e)&&!t())return;L.slice_del(),s()}}function o(){L.ket=L.cursor,L.find_among_b(v,44)&&(L.bra=L.cursor,i()&&(L.slice_del(),a()))}function w(){var e;if(L.ket=L.cursor,(e=L.find_among_b(z,3))&&(L.bra=L.cursor,i()))switch(e){case 1:L.slice_from("e");break;case 2:case 3:L.slice_from("a")}}function l(){var e;if(L.ket=L.cursor,(e=L.find_among_b(y,6))&&(L.bra=L.cursor,i()))switch(e){case 1:case 2:L.slice_del();break;case 3:L.slice_from("a");break;case 4:L.slice_from("e")}}function u(){var e;if(L.ket=L.cursor,(e=L.find_among_b(j,2))&&(L.bra=L.cursor,i())){if((1==e||2==e)&&!t())return;L.slice_del(),s()}}function m(){var e;if(L.ket=L.cursor,(e=L.find_among_b(C,7))&&(L.bra=L.cursor,i()))switch(e){case 1:L.slice_from("a");break;case 2:L.slice_from("e");break;case 3:case 4:case 5:case 6:case 7:L.slice_del()}}function k(){var e;if(L.ket=L.cursor,(e=L.find_among_b(P,12))&&(L.bra=L.cursor,i()))switch(e){case 1:case 4:case 7:case 9:L.slice_del();break;case 2:case 5:case 8:L.slice_from("e");break;case 3:case 6:L.slice_from("a")}}function f(){var e;if(L.ket=L.cursor,(e=L.find_among_b(F,31))&&(L.bra=L.cursor,i()))switch(e){case 1:case 4:case 7:case 8:case 9:case 12:case 13:case 16:case 17:case 18:L.slice_del();break;case 2:case 5:case 10:case 14:case 19:L.slice_from("a");break;case 3:case 6:case 11:case 15:case 20:L.slice_from("e")}}function b(){var e;if(L.ket=L.cursor,(e=L.find_among_b(S,42))&&(L.bra=L.cursor,i()))switch(e){case 1:case 4:case 5:case 6:case 9:case 10:case 11:case 14:case 15:case 16:case 17:case 20:case 21:case 24:case 25:case 26:case 29:L.slice_del();break;case 2:case 7:case 12:case 18:case 22:case 27:L.slice_from("a");break;case 3:case 8:case 13:case 19:case 23:case 28:L.slice_from("e")}}var d,g=[new n("cs",-1,-1),new n("dzs",-1,-1),new n("gy",-1,-1),new n("ly",-1,-1),new n("ny",-1,-1),new n("sz",-1,-1),new n("ty",-1,-1),new n("zs",-1,-1)],h=[new n("á",-1,1),new n("é",-1,2)],p=[new n("bb",-1,-1),new n("cc",-1,-1),new n("dd",-1,-1),new n("ff",-1,-1),new n("gg",-1,-1),new n("jj",-1,-1),new n("kk",-1,-1),new n("ll",-1,-1),new n("mm",-1,-1),new n("nn",-1,-1),new n("pp",-1,-1),new n("rr",-1,-1),new n("ccs",-1,-1),new n("ss",-1,-1),new n("zzs",-1,-1),new n("tt",-1,-1),new n("vv",-1,-1),new n("ggy",-1,-1),new n("lly",-1,-1),new n("nny",-1,-1),new n("tty",-1,-1),new n("ssz",-1,-1),new n("zz",-1,-1)],_=[new n("al",-1,1),new n("el",-1,2)],v=[new n("ba",-1,-1),new n("ra",-1,-1),new n("be",-1,-1),new n("re",-1,-1),new n("ig",-1,-1),new n("nak",-1,-1),new n("nek",-1,-1),new n("val",-1,-1),new n("vel",-1,-1),new n("ul",-1,-1),new n("nál",-1,-1),new n("nél",-1,-1),new n("ból",-1,-1),new n("ról",-1,-1),new n("tól",-1,-1),new n("bõl",-1,-1),new n("rõl",-1,-1),new n("tõl",-1,-1),new n("ül",-1,-1),new n("n",-1,-1),new n("an",19,-1),new n("ban",20,-1),new n("en",19,-1),new n("ben",22,-1),new n("képpen",22,-1),new n("on",19,-1),new n("ön",19,-1),new n("képp",-1,-1),new n("kor",-1,-1),new n("t",-1,-1),new n("at",29,-1),new n("et",29,-1),new n("ként",29,-1),new n("anként",32,-1),new n("enként",32,-1),new n("onként",32,-1),new n("ot",29,-1),new n("ért",29,-1),new n("öt",29,-1),new n("hez",-1,-1),new n("hoz",-1,-1),new n("höz",-1,-1),new n("vá",-1,-1),new n("vé",-1,-1)],z=[new n("án",-1,2),new n("én",-1,1),new n("ánként",-1,3)],y=[new n("stul",-1,2),new n("astul",0,1),new n("ástul",0,3),new n("stül",-1,2),new n("estül",3,1),new n("éstül",3,4)],j=[new n("á",-1,1),new n("é",-1,2)],C=[new n("k",-1,7),new n("ak",0,4),new n("ek",0,6),new n("ok",0,5),new n("ák",0,1),new n("ék",0,2),new n("ök",0,3)],P=[new n("éi",-1,7),new n("áéi",0,6),new n("ééi",0,5),new n("é",-1,9),new n("ké",3,4),new n("aké",4,1),new n("eké",4,1),new n("oké",4,1),new n("áké",4,3),new n("éké",4,2),new n("öké",4,1),new n("éé",3,8)],F=[new n("a",-1,18),new n("ja",0,17),new n("d",-1,16),new n("ad",2,13),new n("ed",2,13),new n("od",2,13),new n("ád",2,14),new n("éd",2,15),new n("öd",2,13),new n("e",-1,18),new n("je",9,17),new n("nk",-1,4),new n("unk",11,1),new n("ánk",11,2),new n("énk",11,3),new n("ünk",11,1),new n("uk",-1,8),new n("juk",16,7),new n("ájuk",17,5),new n("ük",-1,8),new n("jük",19,7),new n("éjük",20,6),new n("m",-1,12),new n("am",22,9),new n("em",22,9),new n("om",22,9),new n("ám",22,10),new n("ém",22,11),new n("o",-1,18),new n("á",-1,19),new n("é",-1,20)],S=[new n("id",-1,10),new n("aid",0,9),new n("jaid",1,6),new n("eid",0,9),new n("jeid",3,6),new n("áid",0,7),new n("éid",0,8),new n("i",-1,15),new n("ai",7,14),new n("jai",8,11),new n("ei",7,14),new n("jei",10,11),new n("ái",7,12),new n("éi",7,13),new n("itek",-1,24),new n("eitek",14,21),new n("jeitek",15,20),new n("éitek",14,23),new n("ik",-1,29),new n("aik",18,26),new n("jaik",19,25),new n("eik",18,26),new n("jeik",21,25),new n("áik",18,27),new n("éik",18,28),new n("ink",-1,20),new n("aink",25,17),new n("jaink",26,16),new n("eink",25,17),new n("jeink",28,16),new n("áink",25,18),new n("éink",25,19),new n("aitok",-1,21),new n("jaitok",32,20),new n("áitok",-1,22),new n("im",-1,5),new n("aim",35,4),new n("jaim",36,1),new n("eim",35,4),new n("jeim",38,1),new n("áim",35,2),new n("éim",35,3)],W=[17,65,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,52,14],L=new r;this.setCurrent=function(e){L.setCurrent(e)},this.getCurrent=function(){return L.getCurrent()},this.stem=function(){var n=L.cursor;return e(),L.limit_backward=n,L.cursor=L.limit,c(),L.cursor=L.limit,o(),L.cursor=L.limit,w(),L.cursor=L.limit,l(),L.cursor=L.limit,u(),L.cursor=L.limit,k(),L.cursor=L.limit,f(),L.cursor=L.limit,b(),L.cursor=L.limit,m(),!0}};return function(e){return"function"==typeof e.update?e.update(function(e){return i.setCurrent(e),i.stem(),i.getCurrent()}):(i.setCurrent(e),i.stem(),i.getCurrent())}}(),e.Pipeline.registerFunction(e.hu.stemmer,"stemmer-hu"),e.hu.stopWordFilter=e.generateStopWordFilter("a abban ahhoz ahogy ahol aki akik akkor alatt amely amelyek amelyekben amelyeket amelyet amelynek ami amikor amit amolyan amíg annak arra arról az azok azon azonban azt aztán azután azzal azért be belül benne bár cikk cikkek cikkeket csak de e ebben eddig egy egyes egyetlen egyik egyre egyéb egész ehhez ekkor el ellen elsõ elég elõ elõször elõtt emilyen ennek erre ez ezek ezen ezt ezzel ezért fel felé hanem hiszen hogy hogyan igen ill ill. illetve ilyen ilyenkor ismét ison itt jobban jó jól kell kellett keressünk keresztül ki kívül között közül legalább legyen lehet lehetett lenne lenni lesz lett maga magát majd majd meg mellett mely melyek mert mi mikor milyen minden mindenki mindent mindig mint mintha mit mivel miért most már más másik még míg nagy nagyobb nagyon ne nekem neki nem nincs néha néhány nélkül olyan ott pedig persze rá s saját sem semmi sok sokat sokkal szemben szerint szinte számára talán tehát teljes tovább továbbá több ugyanis utolsó után utána vagy vagyis vagyok valaki valami valamint való van vannak vele vissza viszont volna volt voltak voltam voltunk által általában át én éppen és így õ õk õket össze úgy új újabb újra".split(" ")),e.Pipeline.registerFunction(e.hu.stopWordFilter,"stopWordFilter-hu")}});���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.hy.min.js�����������������0000664�0000000�0000000�00000002360�14753064456�0030536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.hy=function(){this.pipeline.reset(),this.pipeline.add(e.hy.trimmer,e.hy.stopWordFilter)},e.hy.wordCharacters="[A-Za-z԰-֏ff-ﭏ]",e.hy.trimmer=e.trimmerSupport.generateTrimmer(e.hy.wordCharacters),e.Pipeline.registerFunction(e.hy.trimmer,"trimmer-hy"),e.hy.stopWordFilter=e.generateStopWordFilter("դու և եք էիր էիք հետո նաև նրանք որը վրա է որ պիտի են այս մեջ ն իր ու ի այդ որոնք այն կամ էր մի ես համար այլ իսկ էին ենք հետ ին թ էինք մենք նրա նա դուք եմ էի ըստ որպես ում".split(" ")),e.Pipeline.registerFunction(e.hy.stopWordFilter,"stopWordFilter-hy"),e.hy.stemmer=function(){return function(e){return"function"==typeof e.update?e.update(function(e){return e}):e}}(),e.Pipeline.registerFunction(e.hy.stemmer,"stemmer-hy")}});��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.it.min.js�����������������0000664�0000000�0000000�00000025740�14753064456�0030541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*! * Lunr languages, `Italian` language * https://github.com/MihaiValentin/lunr-languages * * Copyright 2014, Mihai Valentin * http://www.mozilla.org/MPL/ */ /*! * based on * Snowball JavaScript Library v0.3 * http://code.google.com/p/urim/ * http://snowball.tartarus.org/ * * Copyright 2010, Oleg Mazko * http://www.mozilla.org/MPL/ */ !function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.it=function(){this.pipeline.reset(),this.pipeline.add(e.it.trimmer,e.it.stopWordFilter,e.it.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.it.stemmer))},e.it.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",e.it.trimmer=e.trimmerSupport.generateTrimmer(e.it.wordCharacters),e.Pipeline.registerFunction(e.it.trimmer,"trimmer-it"),e.it.stemmer=function(){var r=e.stemmerSupport.Among,n=e.stemmerSupport.SnowballProgram,i=new function(){function e(e,r,n){return!(!x.eq_s(1,e)||(x.ket=x.cursor,!x.in_grouping(L,97,249)))&&(x.slice_from(r),x.cursor=n,!0)}function i(){for(var r,n,i,o,t=x.cursor;;){if(x.bra=x.cursor,r=x.find_among(h,7))switch(x.ket=x.cursor,r){case 1:x.slice_from("à");continue;case 2:x.slice_from("è");continue;case 3:x.slice_from("ì");continue;case 4:x.slice_from("ò");continue;case 5:x.slice_from("ù");continue;case 6:x.slice_from("qU");continue;case 7:if(x.cursor>=x.limit)break;x.cursor++;continue}break}for(x.cursor=t;;)for(n=x.cursor;;){if(i=x.cursor,x.in_grouping(L,97,249)){if(x.bra=x.cursor,o=x.cursor,e("u","U",i))break;if(x.cursor=o,e("i","I",i))break}if(x.cursor=i,x.cursor>=x.limit)return void(x.cursor=n);x.cursor++}}function o(e){if(x.cursor=e,!x.in_grouping(L,97,249))return!1;for(;!x.out_grouping(L,97,249);){if(x.cursor>=x.limit)return!1;x.cursor++}return!0}function t(){if(x.in_grouping(L,97,249)){var e=x.cursor;if(x.out_grouping(L,97,249)){for(;!x.in_grouping(L,97,249);){if(x.cursor>=x.limit)return o(e);x.cursor++}return!0}return o(e)}return!1}function s(){var e,r=x.cursor;if(!t()){if(x.cursor=r,!x.out_grouping(L,97,249))return;if(e=x.cursor,x.out_grouping(L,97,249)){for(;!x.in_grouping(L,97,249);){if(x.cursor>=x.limit)return x.cursor=e,void(x.in_grouping(L,97,249)&&x.cursor<x.limit&&x.cursor++);x.cursor++}return void(k=x.cursor)}if(x.cursor=e,!x.in_grouping(L,97,249)||x.cursor>=x.limit)return;x.cursor++}k=x.cursor}function a(){for(;!x.in_grouping(L,97,249);){if(x.cursor>=x.limit)return!1;x.cursor++}for(;!x.out_grouping(L,97,249);){if(x.cursor>=x.limit)return!1;x.cursor++}return!0}function u(){var e=x.cursor;k=x.limit,p=k,g=k,s(),x.cursor=e,a()&&(p=x.cursor,a()&&(g=x.cursor))}function c(){for(var e;;){if(x.bra=x.cursor,!(e=x.find_among(q,3)))break;switch(x.ket=x.cursor,e){case 1:x.slice_from("i");break;case 2:x.slice_from("u");break;case 3:if(x.cursor>=x.limit)return;x.cursor++}}}function w(){return k<=x.cursor}function l(){return p<=x.cursor}function m(){return g<=x.cursor}function f(){var e;if(x.ket=x.cursor,x.find_among_b(C,37)&&(x.bra=x.cursor,(e=x.find_among_b(z,5))&&w()))switch(e){case 1:x.slice_del();break;case 2:x.slice_from("e")}}function v(){var e;if(x.ket=x.cursor,!(e=x.find_among_b(S,51)))return!1;switch(x.bra=x.cursor,e){case 1:if(!m())return!1;x.slice_del();break;case 2:if(!m())return!1;x.slice_del(),x.ket=x.cursor,x.eq_s_b(2,"ic")&&(x.bra=x.cursor,m()&&x.slice_del());break;case 3:if(!m())return!1;x.slice_from("log");break;case 4:if(!m())return!1;x.slice_from("u");break;case 5:if(!m())return!1;x.slice_from("ente");break;case 6:if(!w())return!1;x.slice_del();break;case 7:if(!l())return!1;x.slice_del(),x.ket=x.cursor,e=x.find_among_b(P,4),e&&(x.bra=x.cursor,m()&&(x.slice_del(),1==e&&(x.ket=x.cursor,x.eq_s_b(2,"at")&&(x.bra=x.cursor,m()&&x.slice_del()))));break;case 8:if(!m())return!1;x.slice_del(),x.ket=x.cursor,e=x.find_among_b(F,3),e&&(x.bra=x.cursor,1==e&&m()&&x.slice_del());break;case 9:if(!m())return!1;x.slice_del(),x.ket=x.cursor,x.eq_s_b(2,"at")&&(x.bra=x.cursor,m()&&(x.slice_del(),x.ket=x.cursor,x.eq_s_b(2,"ic")&&(x.bra=x.cursor,m()&&x.slice_del())))}return!0}function b(){var e,r;x.cursor>=k&&(r=x.limit_backward,x.limit_backward=k,x.ket=x.cursor,e=x.find_among_b(W,87),e&&(x.bra=x.cursor,1==e&&x.slice_del()),x.limit_backward=r)}function d(){var e=x.limit-x.cursor;if(x.ket=x.cursor,x.in_grouping_b(y,97,242)&&(x.bra=x.cursor,w()&&(x.slice_del(),x.ket=x.cursor,x.eq_s_b(1,"i")&&(x.bra=x.cursor,w()))))return void x.slice_del();x.cursor=x.limit-e}function _(){d(),x.ket=x.cursor,x.eq_s_b(1,"h")&&(x.bra=x.cursor,x.in_grouping_b(U,99,103)&&w()&&x.slice_del())}var g,p,k,h=[new r("",-1,7),new r("qu",0,6),new r("á",0,1),new r("é",0,2),new r("í",0,3),new r("ó",0,4),new r("ú",0,5)],q=[new r("",-1,3),new r("I",0,1),new r("U",0,2)],C=[new r("la",-1,-1),new r("cela",0,-1),new r("gliela",0,-1),new r("mela",0,-1),new r("tela",0,-1),new r("vela",0,-1),new r("le",-1,-1),new r("cele",6,-1),new r("gliele",6,-1),new r("mele",6,-1),new r("tele",6,-1),new r("vele",6,-1),new r("ne",-1,-1),new r("cene",12,-1),new r("gliene",12,-1),new r("mene",12,-1),new r("sene",12,-1),new r("tene",12,-1),new r("vene",12,-1),new r("ci",-1,-1),new r("li",-1,-1),new r("celi",20,-1),new r("glieli",20,-1),new r("meli",20,-1),new r("teli",20,-1),new r("veli",20,-1),new r("gli",20,-1),new r("mi",-1,-1),new r("si",-1,-1),new r("ti",-1,-1),new r("vi",-1,-1),new r("lo",-1,-1),new r("celo",31,-1),new r("glielo",31,-1),new r("melo",31,-1),new r("telo",31,-1),new r("velo",31,-1)],z=[new r("ando",-1,1),new r("endo",-1,1),new r("ar",-1,2),new r("er",-1,2),new r("ir",-1,2)],P=[new r("ic",-1,-1),new r("abil",-1,-1),new r("os",-1,-1),new r("iv",-1,1)],F=[new r("ic",-1,1),new r("abil",-1,1),new r("iv",-1,1)],S=[new r("ica",-1,1),new r("logia",-1,3),new r("osa",-1,1),new r("ista",-1,1),new r("iva",-1,9),new r("anza",-1,1),new r("enza",-1,5),new r("ice",-1,1),new r("atrice",7,1),new r("iche",-1,1),new r("logie",-1,3),new r("abile",-1,1),new r("ibile",-1,1),new r("usione",-1,4),new r("azione",-1,2),new r("uzione",-1,4),new r("atore",-1,2),new r("ose",-1,1),new r("ante",-1,1),new r("mente",-1,1),new r("amente",19,7),new r("iste",-1,1),new r("ive",-1,9),new r("anze",-1,1),new r("enze",-1,5),new r("ici",-1,1),new r("atrici",25,1),new r("ichi",-1,1),new r("abili",-1,1),new r("ibili",-1,1),new r("ismi",-1,1),new r("usioni",-1,4),new r("azioni",-1,2),new r("uzioni",-1,4),new r("atori",-1,2),new r("osi",-1,1),new r("anti",-1,1),new r("amenti",-1,6),new r("imenti",-1,6),new r("isti",-1,1),new r("ivi",-1,9),new r("ico",-1,1),new r("ismo",-1,1),new r("oso",-1,1),new r("amento",-1,6),new r("imento",-1,6),new r("ivo",-1,9),new r("ità",-1,8),new r("istà",-1,1),new r("istè",-1,1),new r("istì",-1,1)],W=[new r("isca",-1,1),new r("enda",-1,1),new r("ata",-1,1),new r("ita",-1,1),new r("uta",-1,1),new r("ava",-1,1),new r("eva",-1,1),new r("iva",-1,1),new r("erebbe",-1,1),new r("irebbe",-1,1),new r("isce",-1,1),new r("ende",-1,1),new r("are",-1,1),new r("ere",-1,1),new r("ire",-1,1),new r("asse",-1,1),new r("ate",-1,1),new r("avate",16,1),new r("evate",16,1),new r("ivate",16,1),new r("ete",-1,1),new r("erete",20,1),new r("irete",20,1),new r("ite",-1,1),new r("ereste",-1,1),new r("ireste",-1,1),new r("ute",-1,1),new r("erai",-1,1),new r("irai",-1,1),new r("isci",-1,1),new r("endi",-1,1),new r("erei",-1,1),new r("irei",-1,1),new r("assi",-1,1),new r("ati",-1,1),new r("iti",-1,1),new r("eresti",-1,1),new r("iresti",-1,1),new r("uti",-1,1),new r("avi",-1,1),new r("evi",-1,1),new r("ivi",-1,1),new r("isco",-1,1),new r("ando",-1,1),new r("endo",-1,1),new r("Yamo",-1,1),new r("iamo",-1,1),new r("avamo",-1,1),new r("evamo",-1,1),new r("ivamo",-1,1),new r("eremo",-1,1),new r("iremo",-1,1),new r("assimo",-1,1),new r("ammo",-1,1),new r("emmo",-1,1),new r("eremmo",54,1),new r("iremmo",54,1),new r("immo",-1,1),new r("ano",-1,1),new r("iscano",58,1),new r("avano",58,1),new r("evano",58,1),new r("ivano",58,1),new r("eranno",-1,1),new r("iranno",-1,1),new r("ono",-1,1),new r("iscono",65,1),new r("arono",65,1),new r("erono",65,1),new r("irono",65,1),new r("erebbero",-1,1),new r("irebbero",-1,1),new r("assero",-1,1),new r("essero",-1,1),new r("issero",-1,1),new r("ato",-1,1),new r("ito",-1,1),new r("uto",-1,1),new r("avo",-1,1),new r("evo",-1,1),new r("ivo",-1,1),new r("ar",-1,1),new r("ir",-1,1),new r("erà",-1,1),new r("irà",-1,1),new r("erò",-1,1),new r("irò",-1,1)],L=[17,65,16,0,0,0,0,0,0,0,0,0,0,0,0,128,128,8,2,1],y=[17,65,0,0,0,0,0,0,0,0,0,0,0,0,0,128,128,8,2],U=[17],x=new n;this.setCurrent=function(e){x.setCurrent(e)},this.getCurrent=function(){return x.getCurrent()},this.stem=function(){var e=x.cursor;return i(),x.cursor=e,u(),x.limit_backward=e,x.cursor=x.limit,f(),x.cursor=x.limit,v()||(x.cursor=x.limit,b()),x.cursor=x.limit,_(),x.cursor=x.limit_backward,c(),!0}};return function(e){return"function"==typeof e.update?e.update(function(e){return i.setCurrent(e),i.stem(),i.getCurrent()}):(i.setCurrent(e),i.stem(),i.getCurrent())}}(),e.Pipeline.registerFunction(e.it.stemmer,"stemmer-it"),e.it.stopWordFilter=e.generateStopWordFilter("a abbia abbiamo abbiano abbiate ad agl agli ai al all alla alle allo anche avemmo avendo avesse avessero avessi avessimo aveste avesti avete aveva avevamo avevano avevate avevi avevo avrai avranno avrebbe avrebbero avrei avremmo avremo avreste avresti avrete avrà avrò avuta avute avuti avuto c che chi ci coi col come con contro cui da dagl dagli dai dal dall dalla dalle dallo degl degli dei del dell della delle dello di dov dove e ebbe ebbero ebbi ed era erano eravamo eravate eri ero essendo faccia facciamo facciano facciate faccio facemmo facendo facesse facessero facessi facessimo faceste facesti faceva facevamo facevano facevate facevi facevo fai fanno farai faranno farebbe farebbero farei faremmo faremo fareste faresti farete farà farò fece fecero feci fosse fossero fossi fossimo foste fosti fu fui fummo furono gli ha hai hanno ho i il in io l la le lei li lo loro lui ma mi mia mie miei mio ne negl negli nei nel nell nella nelle nello noi non nostra nostre nostri nostro o per perché più quale quanta quante quanti quanto quella quelle quelli quello questa queste questi questo sarai saranno sarebbe sarebbero sarei saremmo saremo sareste saresti sarete sarà sarò se sei si sia siamo siano siate siete sono sta stai stando stanno starai staranno starebbe starebbero starei staremmo staremo stareste staresti starete starà starò stava stavamo stavano stavate stavi stavo stemmo stesse stessero stessi stessimo steste stesti stette stettero stetti stia stiamo stiano stiate sto su sua sue sugl sugli sui sul sull sulla sulle sullo suo suoi ti tra tu tua tue tuo tuoi tutti tutto un una uno vi voi vostra vostre vostri vostro è".split(" ")),e.Pipeline.registerFunction(e.it.stopWordFilter,"stopWordFilter-it")}});��������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.ja.min.js�����������������0000664�0000000�0000000�00000004411�14753064456�0030507�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");var r="2"==e.version[0];e.ja=function(){this.pipeline.reset(),this.pipeline.add(e.ja.trimmer,e.ja.stopWordFilter,e.ja.stemmer),r?this.tokenizer=e.ja.tokenizer:(e.tokenizer&&(e.tokenizer=e.ja.tokenizer),this.tokenizerFn&&(this.tokenizerFn=e.ja.tokenizer))};var t=new e.TinySegmenter;e.ja.tokenizer=function(i){var n,o,s,p,a,u,m,l,c,f;if(!arguments.length||null==i||void 0==i)return[];if(Array.isArray(i))return i.map(function(t){return r?new e.Token(t.toLowerCase()):t.toLowerCase()});for(o=i.toString().toLowerCase().replace(/^\s+/,""),n=o.length-1;n>=0;n--)if(/\S/.test(o.charAt(n))){o=o.substring(0,n+1);break}for(a=[],s=o.length,c=0,l=0;c<=s;c++)if(u=o.charAt(c),m=c-l,u.match(/\s/)||c==s){if(m>0)for(p=t.segment(o.slice(l,c)).filter(function(e){return!!e}),f=l,n=0;n<p.length;n++)r?a.push(new e.Token(p[n],{position:[f,p[n].length],index:a.length})):a.push(p[n]),f+=p[n].length;l=c+1}return a},e.ja.stemmer=function(){return function(e){return e}}(),e.Pipeline.registerFunction(e.ja.stemmer,"stemmer-ja"),e.ja.wordCharacters="一二三四五六七八九十百千万億兆一-龠々〆ヵヶぁ-んァ-ヴーア-ン゙a-zA-Za-zA-Z0-90-9",e.ja.trimmer=e.trimmerSupport.generateTrimmer(e.ja.wordCharacters),e.Pipeline.registerFunction(e.ja.trimmer,"trimmer-ja"),e.ja.stopWordFilter=e.generateStopWordFilter("これ それ あれ この その あの ここ そこ あそこ こちら どこ だれ なに なん 何 私 貴方 貴方方 我々 私達 あの人 あのかた 彼女 彼 です あります おります います は が の に を で え から まで より も どの と し それで しかし".split(" ")),e.Pipeline.registerFunction(e.ja.stopWordFilter,"stopWordFilter-ja"),e.jp=e.ja,e.Pipeline.registerFunction(e.jp.stemmer,"stemmer-jp"),e.Pipeline.registerFunction(e.jp.trimmer,"trimmer-jp"),e.Pipeline.registerFunction(e.jp.stopWordFilter,"stopWordFilter-jp")}});�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.jp.min.js�����������������0000664�0000000�0000000�00000000044�14753064456�0030524�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������module.exports=require("./lunr.ja");��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.kn.min.js�����������������0000664�0000000�0000000�00000006646�14753064456�0030541�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.kn=function(){this.pipeline.reset(),this.pipeline.add(e.kn.trimmer,e.kn.stopWordFilter,e.kn.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.kn.stemmer))},e.kn.wordCharacters="ಀ-಄ಅ-ಔಕ-ಹಾ-ೌ಼-ಽೕ-ೖೝ-ೞೠ-ೡೢ-ೣ೤೥೦-೯ೱ-ೳ",e.kn.trimmer=e.trimmerSupport.generateTrimmer(e.kn.wordCharacters),e.Pipeline.registerFunction(e.kn.trimmer,"trimmer-kn"),e.kn.stopWordFilter=e.generateStopWordFilter("ಮತ್ತು ಈ ಒಂದು ರಲ್ಲಿ ಹಾಗೂ ಎಂದು ಅಥವಾ ಇದು ರ ಅವರು ಎಂಬ ಮೇಲೆ ಅವರ ತನ್ನ ಆದರೆ ತಮ್ಮ ನಂತರ ಮೂಲಕ ಹೆಚ್ಚು ನ ಆ ಕೆಲವು ಅನೇಕ ಎರಡು ಹಾಗು ಪ್ರಮುಖ ಇದನ್ನು ಇದರ ಸುಮಾರು ಅದರ ಅದು ಮೊದಲ ಬಗ್ಗೆ ನಲ್ಲಿ ರಂದು ಇತರ ಅತ್ಯಂತ ಹೆಚ್ಚಿನ ಸಹ ಸಾಮಾನ್ಯವಾಗಿ ನೇ ಹಲವಾರು ಹೊಸ ದಿ ಕಡಿಮೆ ಯಾವುದೇ ಹೊಂದಿದೆ ದೊಡ್ಡ ಅನ್ನು ಇವರು ಪ್ರಕಾರ ಇದೆ ಮಾತ್ರ ಕೂಡ ಇಲ್ಲಿ ಎಲ್ಲಾ ವಿವಿಧ ಅದನ್ನು ಹಲವು ರಿಂದ ಕೇವಲ ದ ದಕ್ಷಿಣ ಗೆ ಅವನ ಅತಿ ನೆಯ ಬಹಳ ಕೆಲಸ ಎಲ್ಲ ಪ್ರತಿ ಇತ್ಯಾದಿ ಇವು ಬೇರೆ ಹೀಗೆ ನಡುವೆ ಇದಕ್ಕೆ ಎಸ್ ಇವರ ಮೊದಲು ಶ್ರೀ ಮಾಡುವ ಇದರಲ್ಲಿ ರೀತಿಯ ಮಾಡಿದ ಕಾಲ ಅಲ್ಲಿ ಮಾಡಲು ಅದೇ ಈಗ ಅವು ಗಳು ಎ ಎಂಬುದು ಅವನು ಅಂದರೆ ಅವರಿಗೆ ಇರುವ ವಿಶೇಷ ಮುಂದೆ ಅವುಗಳ ಮುಂತಾದ ಮೂಲ ಬಿ ಮೀ ಒಂದೇ ಇನ್ನೂ ಹೆಚ್ಚಾಗಿ ಮಾಡಿ ಅವರನ್ನು ಇದೇ ಯ ರೀತಿಯಲ್ಲಿ ಜೊತೆ ಅದರಲ್ಲಿ ಮಾಡಿದರು ನಡೆದ ಆಗ ಮತ್ತೆ ಪೂರ್ವ ಆತ ಬಂದ ಯಾವ ಒಟ್ಟು ಇತರೆ ಹಿಂದೆ ಪ್ರಮಾಣದ ಗಳನ್ನು ಕುರಿತು ಯು ಆದ್ದರಿಂದ ಅಲ್ಲದೆ ನಗರದ ಮೇಲಿನ ಏಕೆಂದರೆ ರಷ್ಟು ಎಂಬುದನ್ನು ಬಾರಿ ಎಂದರೆ ಹಿಂದಿನ ಆದರೂ ಆದ ಸಂಬಂಧಿಸಿದ ಮತ್ತೊಂದು ಸಿ ಆತನ ".split(" ")),e.kn.stemmer=function(){return function(e){return"function"==typeof e.update?e.update(function(e){return e}):e}}();var r=e.wordcut;r.init(),e.kn.tokenizer=function(t){if(!arguments.length||null==t||void 0==t)return[];if(Array.isArray(t))return t.map(function(r){return isLunr2?new e.Token(r.toLowerCase()):r.toLowerCase()});var n=t.toString().toLowerCase().replace(/^\s+/,"");return r.cut(n).split("|")},e.Pipeline.registerFunction(e.kn.stemmer,"stemmer-kn"),e.Pipeline.registerFunction(e.kn.stopWordFilter,"stopWordFilter-kn")}});������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.ko.min.js�����������������0000664�0000000�0000000�00000017444�14753064456�0030540�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.ko=function(){this.pipeline.reset(),this.pipeline.add(e.ko.trimmer,e.ko.stopWordFilter)},e.ko.wordCharacters="[A-Za-z가-힣]",e.ko.trimmer=e.trimmerSupport.generateTrimmer(e.ko.wordCharacters),e.Pipeline.registerFunction(e.ko.trimmer,"trimmer-ko"),e.ko.stopWordFilter=e.generateStopWordFilter("아 휴 아이구 아이쿠 아이고 어 나 우리 저희 따라 의해 을 를 에 의 가 으로 로 에게 뿐이다 의거하여 근거하여 입각하여 기준으로 예하면 예를 들면 예를 들자면 저 소인 소생 저희 지말고 하지마 하지마라 다른 물론 또한 그리고 비길수 없다 해서는 안된다 뿐만 아니라 만이 아니다 만은 아니다 막론하고 관계없이 그치지 않다 그러나 그런데 하지만 든간에 논하지 않다 따지지 않다 설사 비록 더라도 아니면 만 못하다 하는 편이 낫다 불문하고 향하여 향해서 향하다 쪽으로 틈타 이용하여 타다 오르다 제외하고 이 외에 이 밖에 하여야 비로소 한다면 몰라도 외에도 이곳 여기 부터 기점으로 따라서 할 생각이다 하려고하다 이리하여 그리하여 그렇게 함으로써 하지만 일때 할때 앞에서 중에서 보는데서 으로써 로써 까지 해야한다 일것이다 반드시 할줄알다 할수있다 할수있어 임에 틀림없다 한다면 등 등등 제 겨우 단지 다만 할뿐 딩동 댕그 대해서 대하여 대하면 훨씬 얼마나 얼마만큼 얼마큼 남짓 여 얼마간 약간 다소 좀 조금 다수 몇 얼마 지만 하물며 또한 그러나 그렇지만 하지만 이외에도 대해 말하자면 뿐이다 다음에 반대로 반대로 말하자면 이와 반대로 바꾸어서 말하면 바꾸어서 한다면 만약 그렇지않으면 까악 툭 딱 삐걱거리다 보드득 비걱거리다 꽈당 응당 해야한다 에 가서 각 각각 여러분 각종 각자 제각기 하도록하다 와 과 그러므로 그래서 고로 한 까닭에 하기 때문에 거니와 이지만 대하여 관하여 관한 과연 실로 아니나다를가 생각한대로 진짜로 한적이있다 하곤하였다 하 하하 허허 아하 거바 와 오 왜 어째서 무엇때문에 어찌 하겠는가 무슨 어디 어느곳 더군다나 하물며 더욱이는 어느때 언제 야 이봐 어이 여보시오 흐흐 흥 휴 헉헉 헐떡헐떡 영차 여차 어기여차 끙끙 아야 앗 아야 콸콸 졸졸 좍좍 뚝뚝 주룩주룩 솨 우르르 그래도 또 그리고 바꾸어말하면 바꾸어말하자면 혹은 혹시 답다 및 그에 따르는 때가 되어 즉 지든지 설령 가령 하더라도 할지라도 일지라도 지든지 몇 거의 하마터면 인젠 이젠 된바에야 된이상 만큼\t어찌됏든 그위에 게다가 점에서 보아 비추어 보아 고려하면 하게될것이다 일것이다 비교적 좀 보다더 비하면 시키다 하게하다 할만하다 의해서 연이서 이어서 잇따라 뒤따라 뒤이어 결국 의지하여 기대여 통하여 자마자 더욱더 불구하고 얼마든지 마음대로 주저하지 않고 곧 즉시 바로 당장 하자마자 밖에 안된다 하면된다 그래 그렇지 요컨대 다시 말하자면 바꿔 말하면 즉 구체적으로 말하자면 시작하여 시초에 이상 허 헉 허걱 바와같이 해도좋다 해도된다 게다가 더구나 하물며 와르르 팍 퍽 펄렁 동안 이래 하고있었다 이었다 에서 로부터 까지 예하면 했어요 해요 함께 같이 더불어 마저 마저도 양자 모두 습니다 가까스로 하려고하다 즈음하여 다른 다른 방면으로 해봐요 습니까 했어요 말할것도 없고 무릎쓰고 개의치않고 하는것만 못하다 하는것이 낫다 매 매번 들 모 어느것 어느 로써 갖고말하자면 어디 어느쪽 어느것 어느해 어느 년도 라 해도 언젠가 어떤것 어느것 저기 저쪽 저것 그때 그럼 그러면 요만한걸 그래 그때 저것만큼 그저 이르기까지 할 줄 안다 할 힘이 있다 너 너희 당신 어찌 설마 차라리 할지언정 할지라도 할망정 할지언정 구토하다 게우다 토하다 메쓰겁다 옆사람 퉤 쳇 의거하여 근거하여 의해 따라 힘입어 그 다음 버금 두번째로 기타 첫번째로 나머지는 그중에서 견지에서 형식으로 쓰여 입장에서 위해서 단지 의해되다 하도록시키다 뿐만아니라 반대로 전후 전자 앞의것 잠시 잠깐 하면서 그렇지만 다음에 그러한즉 그런즉 남들 아무거나 어찌하든지 같다 비슷하다 예컨대 이럴정도로 어떻게 만약 만일 위에서 서술한바와같이 인 듯하다 하지 않는다면 만약에 무엇 무슨 어느 어떤 아래윗 조차 한데 그럼에도 불구하고 여전히 심지어 까지도 조차도 하지 않도록 않기 위하여 때 시각 무렵 시간 동안 어때 어떠한 하여금 네 예 우선 누구 누가 알겠는가 아무도 줄은모른다 줄은 몰랏다 하는 김에 겸사겸사 하는바 그런 까닭에 한 이유는 그러니 그러니까 때문에 그 너희 그들 너희들 타인 것 것들 너 위하여 공동으로 동시에 하기 위하여 어찌하여 무엇때문에 붕붕 윙윙 나 우리 엉엉 휘익 윙윙 오호 아하 어쨋든 만 못하다\t하기보다는 차라리 하는 편이 낫다 흐흐 놀라다 상대적으로 말하자면 마치 아니라면 쉿 그렇지 않으면 그렇지 않다면 안 그러면 아니었다면 하든지 아니면 이라면 좋아 알았어 하는것도 그만이다 어쩔수 없다 하나 일 일반적으로 일단 한켠으로는 오자마자 이렇게되면 이와같다면 전부 한마디 한항목 근거로 하기에 아울러 하지 않도록 않기 위해서 이르기까지 이 되다 로 인하여 까닭으로 이유만으로 이로 인하여 그래서 이 때문에 그러므로 그런 까닭에 알 수 있다 결론을 낼 수 있다 으로 인하여 있다 어떤것 관계가 있다 관련이 있다 연관되다 어떤것들 에 대해 이리하여 그리하여 여부 하기보다는 하느니 하면 할수록 운운 이러이러하다 하구나 하도다 다시말하면 다음으로 에 있다 에 달려 있다 우리 우리들 오히려 하기는한데 어떻게 어떻해 어찌됏어 어때 어째서 본대로 자 이 이쪽 여기 이것 이번 이렇게말하자면 이런 이러한 이와 같은 요만큼 요만한 것 얼마 안 되는 것 이만큼 이 정도의 이렇게 많은 것 이와 같다 이때 이렇구나 것과 같이 끼익 삐걱 따위 와 같은 사람들 부류의 사람들 왜냐하면 중의하나 오직 오로지 에 한하다 하기만 하면 도착하다 까지 미치다 도달하다 정도에 이르다 할 지경이다 결과에 이르다 관해서는 여러분 하고 있다 한 후 혼자 자기 자기집 자신 우에 종합한것과같이 총적으로 보면 총적으로 말하면 총적으로 대로 하다 으로서 참 그만이다 할 따름이다 쿵 탕탕 쾅쾅 둥둥 봐 봐라 아이야 아니 와아 응 아이 참나 년 월 일 령 영 일 이 삼 사 오 육 륙 칠 팔 구 이천육 이천칠 이천팔 이천구 하나 둘 셋 넷 다섯 여섯 일곱 여덟 아홉 령 영".split(" ")),e.Pipeline.registerFunction(e.ko.stopWordFilter,"stopWordFilter-ko"),e.ko.stemmer=function(){return function(e){return"function"==typeof e.update?e.update(function(e){return e}):e}}(),e.Pipeline.registerFunction(e.ko.stemmer,"stemmer-ko")}});����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.multi.min.js��������������0000664�0000000�0000000�00000001461�14753064456�0031251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������!function(e,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t():t()(e.lunr)}(this,function(){return function(e){e.multiLanguage=function(){for(var t=Array.prototype.slice.call(arguments),i=t.join("-"),r="",n=[],s=[],p=0;p<t.length;++p)"en"==t[p]?(r+="\\w",n.unshift(e.stopWordFilter),n.push(e.stemmer),s.push(e.stemmer)):(r+=e[t[p]].wordCharacters,e[t[p]].stopWordFilter&&n.unshift(e[t[p]].stopWordFilter),e[t[p]].stemmer&&(n.push(e[t[p]].stemmer),s.push(e[t[p]].stemmer)));var o=e.trimmerSupport.generateTrimmer(r);return e.Pipeline.registerFunction(o,"lunr-multi-trimmer-"+i),n.unshift(o),function(){this.pipeline.reset(),this.pipeline.add.apply(this.pipeline,n),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add.apply(this.searchPipeline,s))}}}});���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.nl.min.js�����������������0000664�0000000�0000000�00000013612�14753064456�0030531�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*! * Lunr languages, `Dutch` language * https://github.com/MihaiValentin/lunr-languages * * Copyright 2014, Mihai Valentin * http://www.mozilla.org/MPL/ */ /*! * based on * Snowball JavaScript Library v0.3 * http://code.google.com/p/urim/ * http://snowball.tartarus.org/ * * Copyright 2010, Oleg Mazko * http://www.mozilla.org/MPL/ */ !function(r,e){"function"==typeof define&&define.amd?define(e):"object"==typeof exports?module.exports=e():e()(r.lunr)}(this,function(){return function(r){if(void 0===r)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===r.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");r.nl=function(){this.pipeline.reset(),this.pipeline.add(r.nl.trimmer,r.nl.stopWordFilter,r.nl.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(r.nl.stemmer))},r.nl.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",r.nl.trimmer=r.trimmerSupport.generateTrimmer(r.nl.wordCharacters),r.Pipeline.registerFunction(r.nl.trimmer,"trimmer-nl"),r.nl.stemmer=function(){var e=r.stemmerSupport.Among,i=r.stemmerSupport.SnowballProgram,n=new function(){function r(){for(var r,e,i,o=C.cursor;;){if(C.bra=C.cursor,r=C.find_among(b,11))switch(C.ket=C.cursor,r){case 1:C.slice_from("a");continue;case 2:C.slice_from("e");continue;case 3:C.slice_from("i");continue;case 4:C.slice_from("o");continue;case 5:C.slice_from("u");continue;case 6:if(C.cursor>=C.limit)break;C.cursor++;continue}break}for(C.cursor=o,C.bra=o,C.eq_s(1,"y")?(C.ket=C.cursor,C.slice_from("Y")):C.cursor=o;;)if(e=C.cursor,C.in_grouping(q,97,232)){if(i=C.cursor,C.bra=i,C.eq_s(1,"i"))C.ket=C.cursor,C.in_grouping(q,97,232)&&(C.slice_from("I"),C.cursor=e);else if(C.cursor=i,C.eq_s(1,"y"))C.ket=C.cursor,C.slice_from("Y"),C.cursor=e;else if(n(e))break}else if(n(e))break}function n(r){return C.cursor=r,r>=C.limit||(C.cursor++,!1)}function o(){_=C.limit,d=_,t()||(_=C.cursor,_<3&&(_=3),t()||(d=C.cursor))}function t(){for(;!C.in_grouping(q,97,232);){if(C.cursor>=C.limit)return!0;C.cursor++}for(;!C.out_grouping(q,97,232);){if(C.cursor>=C.limit)return!0;C.cursor++}return!1}function s(){for(var r;;)if(C.bra=C.cursor,r=C.find_among(p,3))switch(C.ket=C.cursor,r){case 1:C.slice_from("y");break;case 2:C.slice_from("i");break;case 3:if(C.cursor>=C.limit)return;C.cursor++}}function u(){return _<=C.cursor}function c(){return d<=C.cursor}function a(){var r=C.limit-C.cursor;C.find_among_b(g,3)&&(C.cursor=C.limit-r,C.ket=C.cursor,C.cursor>C.limit_backward&&(C.cursor--,C.bra=C.cursor,C.slice_del()))}function l(){var r;w=!1,C.ket=C.cursor,C.eq_s_b(1,"e")&&(C.bra=C.cursor,u()&&(r=C.limit-C.cursor,C.out_grouping_b(q,97,232)&&(C.cursor=C.limit-r,C.slice_del(),w=!0,a())))}function m(){var r;u()&&(r=C.limit-C.cursor,C.out_grouping_b(q,97,232)&&(C.cursor=C.limit-r,C.eq_s_b(3,"gem")||(C.cursor=C.limit-r,C.slice_del(),a())))}function f(){var r,e,i,n,o,t,s=C.limit-C.cursor;if(C.ket=C.cursor,r=C.find_among_b(h,5))switch(C.bra=C.cursor,r){case 1:u()&&C.slice_from("heid");break;case 2:m();break;case 3:u()&&C.out_grouping_b(j,97,232)&&C.slice_del()}if(C.cursor=C.limit-s,l(),C.cursor=C.limit-s,C.ket=C.cursor,C.eq_s_b(4,"heid")&&(C.bra=C.cursor,c()&&(e=C.limit-C.cursor,C.eq_s_b(1,"c")||(C.cursor=C.limit-e,C.slice_del(),C.ket=C.cursor,C.eq_s_b(2,"en")&&(C.bra=C.cursor,m())))),C.cursor=C.limit-s,C.ket=C.cursor,r=C.find_among_b(k,6))switch(C.bra=C.cursor,r){case 1:if(c()){if(C.slice_del(),i=C.limit-C.cursor,C.ket=C.cursor,C.eq_s_b(2,"ig")&&(C.bra=C.cursor,c()&&(n=C.limit-C.cursor,!C.eq_s_b(1,"e")))){C.cursor=C.limit-n,C.slice_del();break}C.cursor=C.limit-i,a()}break;case 2:c()&&(o=C.limit-C.cursor,C.eq_s_b(1,"e")||(C.cursor=C.limit-o,C.slice_del()));break;case 3:c()&&(C.slice_del(),l());break;case 4:c()&&C.slice_del();break;case 5:c()&&w&&C.slice_del()}C.cursor=C.limit-s,C.out_grouping_b(z,73,232)&&(t=C.limit-C.cursor,C.find_among_b(v,4)&&C.out_grouping_b(q,97,232)&&(C.cursor=C.limit-t,C.ket=C.cursor,C.cursor>C.limit_backward&&(C.cursor--,C.bra=C.cursor,C.slice_del())))}var d,_,w,b=[new e("",-1,6),new e("á",0,1),new e("ä",0,1),new e("é",0,2),new e("ë",0,2),new e("í",0,3),new e("ï",0,3),new e("ó",0,4),new e("ö",0,4),new e("ú",0,5),new e("ü",0,5)],p=[new e("",-1,3),new e("I",0,2),new e("Y",0,1)],g=[new e("dd",-1,-1),new e("kk",-1,-1),new e("tt",-1,-1)],h=[new e("ene",-1,2),new e("se",-1,3),new e("en",-1,2),new e("heden",2,1),new e("s",-1,3)],k=[new e("end",-1,1),new e("ig",-1,2),new e("ing",-1,1),new e("lijk",-1,3),new e("baar",-1,4),new e("bar",-1,5)],v=[new e("aa",-1,-1),new e("ee",-1,-1),new e("oo",-1,-1),new e("uu",-1,-1)],q=[17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,128],z=[1,0,0,17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,128],j=[17,67,16,1,0,0,0,0,0,0,0,0,0,0,0,0,128],C=new i;this.setCurrent=function(r){C.setCurrent(r)},this.getCurrent=function(){return C.getCurrent()},this.stem=function(){var e=C.cursor;return r(),C.cursor=e,o(),C.limit_backward=e,C.cursor=C.limit,f(),C.cursor=C.limit_backward,s(),!0}};return function(r){return"function"==typeof r.update?r.update(function(r){return n.setCurrent(r),n.stem(),n.getCurrent()}):(n.setCurrent(r),n.stem(),n.getCurrent())}}(),r.Pipeline.registerFunction(r.nl.stemmer,"stemmer-nl"),r.nl.stopWordFilter=r.generateStopWordFilter(" aan al alles als altijd andere ben bij daar dan dat de der deze die dit doch doen door dus een eens en er ge geen geweest haar had heb hebben heeft hem het hier hij hoe hun iemand iets ik in is ja je kan kon kunnen maar me meer men met mij mijn moet na naar niet niets nog nu of om omdat onder ons ook op over reeds te tegen toch toen tot u uit uw van veel voor want waren was wat werd wezen wie wil worden wordt zal ze zelf zich zij zijn zo zonder zou".split(" ")),r.Pipeline.registerFunction(r.nl.stopWordFilter,"stopWordFilter-nl")}});����������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.no.min.js�����������������0000664�0000000�0000000�00000011222�14753064456�0030527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*! * Lunr languages, `Norwegian` language * https://github.com/MihaiValentin/lunr-languages * * Copyright 2014, Mihai Valentin * http://www.mozilla.org/MPL/ */ /*! * based on * Snowball JavaScript Library v0.3 * http://code.google.com/p/urim/ * http://snowball.tartarus.org/ * * Copyright 2010, Oleg Mazko * http://www.mozilla.org/MPL/ */ !function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.no=function(){this.pipeline.reset(),this.pipeline.add(e.no.trimmer,e.no.stopWordFilter,e.no.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.no.stemmer))},e.no.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",e.no.trimmer=e.trimmerSupport.generateTrimmer(e.no.wordCharacters),e.Pipeline.registerFunction(e.no.trimmer,"trimmer-no"),e.no.stemmer=function(){var r=e.stemmerSupport.Among,n=e.stemmerSupport.SnowballProgram,i=new function(){function e(){var e,r=w.cursor+3;if(a=w.limit,0<=r||r<=w.limit){for(s=r;;){if(e=w.cursor,w.in_grouping(d,97,248)){w.cursor=e;break}if(e>=w.limit)return;w.cursor=e+1}for(;!w.out_grouping(d,97,248);){if(w.cursor>=w.limit)return;w.cursor++}a=w.cursor,a<s&&(a=s)}}function i(){var e,r,n;if(w.cursor>=a&&(r=w.limit_backward,w.limit_backward=a,w.ket=w.cursor,e=w.find_among_b(m,29),w.limit_backward=r,e))switch(w.bra=w.cursor,e){case 1:w.slice_del();break;case 2:n=w.limit-w.cursor,w.in_grouping_b(c,98,122)?w.slice_del():(w.cursor=w.limit-n,w.eq_s_b(1,"k")&&w.out_grouping_b(d,97,248)&&w.slice_del());break;case 3:w.slice_from("er")}}function t(){var e,r=w.limit-w.cursor;w.cursor>=a&&(e=w.limit_backward,w.limit_backward=a,w.ket=w.cursor,w.find_among_b(u,2)?(w.bra=w.cursor,w.limit_backward=e,w.cursor=w.limit-r,w.cursor>w.limit_backward&&(w.cursor--,w.bra=w.cursor,w.slice_del())):w.limit_backward=e)}function o(){var e,r;w.cursor>=a&&(r=w.limit_backward,w.limit_backward=a,w.ket=w.cursor,e=w.find_among_b(l,11),e?(w.bra=w.cursor,w.limit_backward=r,1==e&&w.slice_del()):w.limit_backward=r)}var s,a,m=[new r("a",-1,1),new r("e",-1,1),new r("ede",1,1),new r("ande",1,1),new r("ende",1,1),new r("ane",1,1),new r("ene",1,1),new r("hetene",6,1),new r("erte",1,3),new r("en",-1,1),new r("heten",9,1),new r("ar",-1,1),new r("er",-1,1),new r("heter",12,1),new r("s",-1,2),new r("as",14,1),new r("es",14,1),new r("edes",16,1),new r("endes",16,1),new r("enes",16,1),new r("hetenes",19,1),new r("ens",14,1),new r("hetens",21,1),new r("ers",14,1),new r("ets",14,1),new r("et",-1,1),new r("het",25,1),new r("ert",-1,3),new r("ast",-1,1)],u=[new r("dt",-1,-1),new r("vt",-1,-1)],l=[new r("leg",-1,1),new r("eleg",0,1),new r("ig",-1,1),new r("eig",2,1),new r("lig",2,1),new r("elig",4,1),new r("els",-1,1),new r("lov",-1,1),new r("elov",7,1),new r("slov",7,1),new r("hetslov",9,1)],d=[17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,48,0,128],c=[119,125,149,1],w=new n;this.setCurrent=function(e){w.setCurrent(e)},this.getCurrent=function(){return w.getCurrent()},this.stem=function(){var r=w.cursor;return e(),w.limit_backward=r,w.cursor=w.limit,i(),w.cursor=w.limit,t(),w.cursor=w.limit,o(),!0}};return function(e){return"function"==typeof e.update?e.update(function(e){return i.setCurrent(e),i.stem(),i.getCurrent()}):(i.setCurrent(e),i.stem(),i.getCurrent())}}(),e.Pipeline.registerFunction(e.no.stemmer,"stemmer-no"),e.no.stopWordFilter=e.generateStopWordFilter("alle at av bare begge ble blei bli blir blitt både båe da de deg dei deim deira deires dem den denne der dere deres det dette di din disse ditt du dykk dykkar då eg ein eit eitt eller elles en enn er et ett etter for fordi fra før ha hadde han hans har hennar henne hennes her hjå ho hoe honom hoss hossen hun hva hvem hver hvilke hvilken hvis hvor hvordan hvorfor i ikke ikkje ikkje ingen ingi inkje inn inni ja jeg kan kom korleis korso kun kunne kva kvar kvarhelst kven kvi kvifor man mange me med medan meg meget mellom men mi min mine mitt mot mykje ned no noe noen noka noko nokon nokor nokre nå når og også om opp oss over på samme seg selv si si sia sidan siden sin sine sitt sjøl skal skulle slik so som som somme somt så sånn til um upp ut uten var vart varte ved vere verte vi vil ville vore vors vort vår være være vært å".split(" ")),e.Pipeline.registerFunction(e.no.stopWordFilter,"stopWordFilter-no")}});������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.pt.min.js�����������������0000664�0000000�0000000�00000023673�14753064456�0030553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*! * Lunr languages, `Portuguese` language * https://github.com/MihaiValentin/lunr-languages * * Copyright 2014, Mihai Valentin * http://www.mozilla.org/MPL/ */ /*! * based on * Snowball JavaScript Library v0.3 * http://code.google.com/p/urim/ * http://snowball.tartarus.org/ * * Copyright 2010, Oleg Mazko * http://www.mozilla.org/MPL/ */ !function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.pt=function(){this.pipeline.reset(),this.pipeline.add(e.pt.trimmer,e.pt.stopWordFilter,e.pt.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.pt.stemmer))},e.pt.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",e.pt.trimmer=e.trimmerSupport.generateTrimmer(e.pt.wordCharacters),e.Pipeline.registerFunction(e.pt.trimmer,"trimmer-pt"),e.pt.stemmer=function(){var r=e.stemmerSupport.Among,s=e.stemmerSupport.SnowballProgram,n=new function(){function e(){for(var e;;){if(z.bra=z.cursor,e=z.find_among(k,3))switch(z.ket=z.cursor,e){case 1:z.slice_from("a~");continue;case 2:z.slice_from("o~");continue;case 3:if(z.cursor>=z.limit)break;z.cursor++;continue}break}}function n(){if(z.out_grouping(y,97,250)){for(;!z.in_grouping(y,97,250);){if(z.cursor>=z.limit)return!0;z.cursor++}return!1}return!0}function i(){if(z.in_grouping(y,97,250))for(;!z.out_grouping(y,97,250);){if(z.cursor>=z.limit)return!1;z.cursor++}return g=z.cursor,!0}function o(){var e,r,s=z.cursor;if(z.in_grouping(y,97,250))if(e=z.cursor,n()){if(z.cursor=e,i())return}else g=z.cursor;if(z.cursor=s,z.out_grouping(y,97,250)){if(r=z.cursor,n()){if(z.cursor=r,!z.in_grouping(y,97,250)||z.cursor>=z.limit)return;z.cursor++}g=z.cursor}}function t(){for(;!z.in_grouping(y,97,250);){if(z.cursor>=z.limit)return!1;z.cursor++}for(;!z.out_grouping(y,97,250);){if(z.cursor>=z.limit)return!1;z.cursor++}return!0}function a(){var e=z.cursor;g=z.limit,b=g,h=g,o(),z.cursor=e,t()&&(b=z.cursor,t()&&(h=z.cursor))}function u(){for(var e;;){if(z.bra=z.cursor,e=z.find_among(q,3))switch(z.ket=z.cursor,e){case 1:z.slice_from("ã");continue;case 2:z.slice_from("õ");continue;case 3:if(z.cursor>=z.limit)break;z.cursor++;continue}break}}function w(){return g<=z.cursor}function m(){return b<=z.cursor}function c(){return h<=z.cursor}function l(){var e;if(z.ket=z.cursor,!(e=z.find_among_b(F,45)))return!1;switch(z.bra=z.cursor,e){case 1:if(!c())return!1;z.slice_del();break;case 2:if(!c())return!1;z.slice_from("log");break;case 3:if(!c())return!1;z.slice_from("u");break;case 4:if(!c())return!1;z.slice_from("ente");break;case 5:if(!m())return!1;z.slice_del(),z.ket=z.cursor,e=z.find_among_b(j,4),e&&(z.bra=z.cursor,c()&&(z.slice_del(),1==e&&(z.ket=z.cursor,z.eq_s_b(2,"at")&&(z.bra=z.cursor,c()&&z.slice_del()))));break;case 6:if(!c())return!1;z.slice_del(),z.ket=z.cursor,e=z.find_among_b(C,3),e&&(z.bra=z.cursor,1==e&&c()&&z.slice_del());break;case 7:if(!c())return!1;z.slice_del(),z.ket=z.cursor,e=z.find_among_b(P,3),e&&(z.bra=z.cursor,1==e&&c()&&z.slice_del());break;case 8:if(!c())return!1;z.slice_del(),z.ket=z.cursor,z.eq_s_b(2,"at")&&(z.bra=z.cursor,c()&&z.slice_del());break;case 9:if(!w()||!z.eq_s_b(1,"e"))return!1;z.slice_from("ir")}return!0}function f(){var e,r;if(z.cursor>=g){if(r=z.limit_backward,z.limit_backward=g,z.ket=z.cursor,e=z.find_among_b(S,120))return z.bra=z.cursor,1==e&&z.slice_del(),z.limit_backward=r,!0;z.limit_backward=r}return!1}function d(){var e;z.ket=z.cursor,(e=z.find_among_b(W,7))&&(z.bra=z.cursor,1==e&&w()&&z.slice_del())}function v(e,r){if(z.eq_s_b(1,e)){z.bra=z.cursor;var s=z.limit-z.cursor;if(z.eq_s_b(1,r))return z.cursor=z.limit-s,w()&&z.slice_del(),!1}return!0}function p(){var e;if(z.ket=z.cursor,e=z.find_among_b(L,4))switch(z.bra=z.cursor,e){case 1:w()&&(z.slice_del(),z.ket=z.cursor,z.limit-z.cursor,v("u","g")&&v("i","c"));break;case 2:z.slice_from("c")}}function _(){if(!l()&&(z.cursor=z.limit,!f()))return z.cursor=z.limit,void d();z.cursor=z.limit,z.ket=z.cursor,z.eq_s_b(1,"i")&&(z.bra=z.cursor,z.eq_s_b(1,"c")&&(z.cursor=z.limit,w()&&z.slice_del()))}var h,b,g,k=[new r("",-1,3),new r("ã",0,1),new r("õ",0,2)],q=[new r("",-1,3),new r("a~",0,1),new r("o~",0,2)],j=[new r("ic",-1,-1),new r("ad",-1,-1),new r("os",-1,-1),new r("iv",-1,1)],C=[new r("ante",-1,1),new r("avel",-1,1),new r("ível",-1,1)],P=[new r("ic",-1,1),new r("abil",-1,1),new r("iv",-1,1)],F=[new r("ica",-1,1),new r("ância",-1,1),new r("ência",-1,4),new r("ira",-1,9),new r("adora",-1,1),new r("osa",-1,1),new r("ista",-1,1),new r("iva",-1,8),new r("eza",-1,1),new r("logía",-1,2),new r("idade",-1,7),new r("ante",-1,1),new r("mente",-1,6),new r("amente",12,5),new r("ável",-1,1),new r("ível",-1,1),new r("ución",-1,3),new r("ico",-1,1),new r("ismo",-1,1),new r("oso",-1,1),new r("amento",-1,1),new r("imento",-1,1),new r("ivo",-1,8),new r("aça~o",-1,1),new r("ador",-1,1),new r("icas",-1,1),new r("ências",-1,4),new r("iras",-1,9),new r("adoras",-1,1),new r("osas",-1,1),new r("istas",-1,1),new r("ivas",-1,8),new r("ezas",-1,1),new r("logías",-1,2),new r("idades",-1,7),new r("uciones",-1,3),new r("adores",-1,1),new r("antes",-1,1),new r("aço~es",-1,1),new r("icos",-1,1),new r("ismos",-1,1),new r("osos",-1,1),new r("amentos",-1,1),new r("imentos",-1,1),new r("ivos",-1,8)],S=[new r("ada",-1,1),new r("ida",-1,1),new r("ia",-1,1),new r("aria",2,1),new r("eria",2,1),new r("iria",2,1),new r("ara",-1,1),new r("era",-1,1),new r("ira",-1,1),new r("ava",-1,1),new r("asse",-1,1),new r("esse",-1,1),new r("isse",-1,1),new r("aste",-1,1),new r("este",-1,1),new r("iste",-1,1),new r("ei",-1,1),new r("arei",16,1),new r("erei",16,1),new r("irei",16,1),new r("am",-1,1),new r("iam",20,1),new r("ariam",21,1),new r("eriam",21,1),new r("iriam",21,1),new r("aram",20,1),new r("eram",20,1),new r("iram",20,1),new r("avam",20,1),new r("em",-1,1),new r("arem",29,1),new r("erem",29,1),new r("irem",29,1),new r("assem",29,1),new r("essem",29,1),new r("issem",29,1),new r("ado",-1,1),new r("ido",-1,1),new r("ando",-1,1),new r("endo",-1,1),new r("indo",-1,1),new r("ara~o",-1,1),new r("era~o",-1,1),new r("ira~o",-1,1),new r("ar",-1,1),new r("er",-1,1),new r("ir",-1,1),new r("as",-1,1),new r("adas",47,1),new r("idas",47,1),new r("ias",47,1),new r("arias",50,1),new r("erias",50,1),new r("irias",50,1),new r("aras",47,1),new r("eras",47,1),new r("iras",47,1),new r("avas",47,1),new r("es",-1,1),new r("ardes",58,1),new r("erdes",58,1),new r("irdes",58,1),new r("ares",58,1),new r("eres",58,1),new r("ires",58,1),new r("asses",58,1),new r("esses",58,1),new r("isses",58,1),new r("astes",58,1),new r("estes",58,1),new r("istes",58,1),new r("is",-1,1),new r("ais",71,1),new r("eis",71,1),new r("areis",73,1),new r("ereis",73,1),new r("ireis",73,1),new r("áreis",73,1),new r("éreis",73,1),new r("íreis",73,1),new r("ásseis",73,1),new r("ésseis",73,1),new r("ísseis",73,1),new r("áveis",73,1),new r("íeis",73,1),new r("aríeis",84,1),new r("eríeis",84,1),new r("iríeis",84,1),new r("ados",-1,1),new r("idos",-1,1),new r("amos",-1,1),new r("áramos",90,1),new r("éramos",90,1),new r("íramos",90,1),new r("ávamos",90,1),new r("íamos",90,1),new r("aríamos",95,1),new r("eríamos",95,1),new r("iríamos",95,1),new r("emos",-1,1),new r("aremos",99,1),new r("eremos",99,1),new r("iremos",99,1),new r("ássemos",99,1),new r("êssemos",99,1),new r("íssemos",99,1),new r("imos",-1,1),new r("armos",-1,1),new r("ermos",-1,1),new r("irmos",-1,1),new r("ámos",-1,1),new r("arás",-1,1),new r("erás",-1,1),new r("irás",-1,1),new r("eu",-1,1),new r("iu",-1,1),new r("ou",-1,1),new r("ará",-1,1),new r("erá",-1,1),new r("irá",-1,1)],W=[new r("a",-1,1),new r("i",-1,1),new r("o",-1,1),new r("os",-1,1),new r("á",-1,1),new r("í",-1,1),new r("ó",-1,1)],L=[new r("e",-1,1),new r("ç",-1,2),new r("é",-1,1),new r("ê",-1,1)],y=[17,65,16,0,0,0,0,0,0,0,0,0,0,0,0,0,3,19,12,2],z=new s;this.setCurrent=function(e){z.setCurrent(e)},this.getCurrent=function(){return z.getCurrent()},this.stem=function(){var r=z.cursor;return e(),z.cursor=r,a(),z.limit_backward=r,z.cursor=z.limit,_(),z.cursor=z.limit,p(),z.cursor=z.limit_backward,u(),!0}};return function(e){return"function"==typeof e.update?e.update(function(e){return n.setCurrent(e),n.stem(),n.getCurrent()}):(n.setCurrent(e),n.stem(),n.getCurrent())}}(),e.Pipeline.registerFunction(e.pt.stemmer,"stemmer-pt"),e.pt.stopWordFilter=e.generateStopWordFilter("a ao aos aquela aquelas aquele aqueles aquilo as até com como da das de dela delas dele deles depois do dos e ela elas ele eles em entre era eram essa essas esse esses esta estamos estas estava estavam este esteja estejam estejamos estes esteve estive estivemos estiver estivera estiveram estiverem estivermos estivesse estivessem estivéramos estivéssemos estou está estávamos estão eu foi fomos for fora foram forem formos fosse fossem fui fôramos fôssemos haja hajam hajamos havemos hei houve houvemos houver houvera houveram houverei houverem houveremos houveria houveriam houvermos houverá houverão houveríamos houvesse houvessem houvéramos houvéssemos há hão isso isto já lhe lhes mais mas me mesmo meu meus minha minhas muito na nas nem no nos nossa nossas nosso nossos num numa não nós o os ou para pela pelas pelo pelos por qual quando que quem se seja sejam sejamos sem serei seremos seria seriam será serão seríamos seu seus somos sou sua suas são só também te tem temos tenha tenham tenhamos tenho terei teremos teria teriam terá terão teríamos teu teus teve tinha tinham tive tivemos tiver tivera tiveram tiverem tivermos tivesse tivessem tivéramos tivéssemos tu tua tuas tém tínhamos um uma você vocês vos à às éramos".split(" ")),e.Pipeline.registerFunction(e.pt.stopWordFilter,"stopWordFilter-pt")}});���������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.ro.min.js�����������������0000664�0000000�0000000�00000025316�14753064456�0030544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*! * Lunr languages, `Romanian` language * https://github.com/MihaiValentin/lunr-languages * * Copyright 2014, Mihai Valentin * http://www.mozilla.org/MPL/ */ /*! * based on * Snowball JavaScript Library v0.3 * http://code.google.com/p/urim/ * http://snowball.tartarus.org/ * * Copyright 2010, Oleg Mazko * http://www.mozilla.org/MPL/ */ !function(e,i){"function"==typeof define&&define.amd?define(i):"object"==typeof exports?module.exports=i():i()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.ro=function(){this.pipeline.reset(),this.pipeline.add(e.ro.trimmer,e.ro.stopWordFilter,e.ro.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.ro.stemmer))},e.ro.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",e.ro.trimmer=e.trimmerSupport.generateTrimmer(e.ro.wordCharacters),e.Pipeline.registerFunction(e.ro.trimmer,"trimmer-ro"),e.ro.stemmer=function(){var i=e.stemmerSupport.Among,r=e.stemmerSupport.SnowballProgram,n=new function(){function e(e,i){L.eq_s(1,e)&&(L.ket=L.cursor,L.in_grouping(W,97,259)&&L.slice_from(i))}function n(){for(var i,r;;){if(i=L.cursor,L.in_grouping(W,97,259)&&(r=L.cursor,L.bra=r,e("u","U"),L.cursor=r,e("i","I")),L.cursor=i,L.cursor>=L.limit)break;L.cursor++}}function t(){if(L.out_grouping(W,97,259)){for(;!L.in_grouping(W,97,259);){if(L.cursor>=L.limit)return!0;L.cursor++}return!1}return!0}function a(){if(L.in_grouping(W,97,259))for(;!L.out_grouping(W,97,259);){if(L.cursor>=L.limit)return!0;L.cursor++}return!1}function o(){var e,i,r=L.cursor;if(L.in_grouping(W,97,259)){if(e=L.cursor,!t())return void(h=L.cursor);if(L.cursor=e,!a())return void(h=L.cursor)}L.cursor=r,L.out_grouping(W,97,259)&&(i=L.cursor,t()&&(L.cursor=i,L.in_grouping(W,97,259)&&L.cursor<L.limit&&L.cursor++),h=L.cursor)}function u(){for(;!L.in_grouping(W,97,259);){if(L.cursor>=L.limit)return!1;L.cursor++}for(;!L.out_grouping(W,97,259);){if(L.cursor>=L.limit)return!1;L.cursor++}return!0}function c(){var e=L.cursor;h=L.limit,k=h,g=h,o(),L.cursor=e,u()&&(k=L.cursor,u()&&(g=L.cursor))}function s(){for(var e;;){if(L.bra=L.cursor,e=L.find_among(z,3))switch(L.ket=L.cursor,e){case 1:L.slice_from("i");continue;case 2:L.slice_from("u");continue;case 3:if(L.cursor>=L.limit)break;L.cursor++;continue}break}}function w(){return h<=L.cursor}function m(){return k<=L.cursor}function l(){return g<=L.cursor}function f(){var e,i;if(L.ket=L.cursor,(e=L.find_among_b(C,16))&&(L.bra=L.cursor,m()))switch(e){case 1:L.slice_del();break;case 2:L.slice_from("a");break;case 3:L.slice_from("e");break;case 4:L.slice_from("i");break;case 5:i=L.limit-L.cursor,L.eq_s_b(2,"ab")||(L.cursor=L.limit-i,L.slice_from("i"));break;case 6:L.slice_from("at");break;case 7:L.slice_from("aţi")}}function p(){var e,i=L.limit-L.cursor;if(L.ket=L.cursor,(e=L.find_among_b(P,46))&&(L.bra=L.cursor,m())){switch(e){case 1:L.slice_from("abil");break;case 2:L.slice_from("ibil");break;case 3:L.slice_from("iv");break;case 4:L.slice_from("ic");break;case 5:L.slice_from("at");break;case 6:L.slice_from("it")}return _=!0,L.cursor=L.limit-i,!0}return!1}function d(){var e,i;for(_=!1;;)if(i=L.limit-L.cursor,!p()){L.cursor=L.limit-i;break}if(L.ket=L.cursor,(e=L.find_among_b(F,62))&&(L.bra=L.cursor,l())){switch(e){case 1:L.slice_del();break;case 2:L.eq_s_b(1,"ţ")&&(L.bra=L.cursor,L.slice_from("t"));break;case 3:L.slice_from("ist")}_=!0}}function b(){var e,i,r;if(L.cursor>=h){if(i=L.limit_backward,L.limit_backward=h,L.ket=L.cursor,e=L.find_among_b(q,94))switch(L.bra=L.cursor,e){case 1:if(r=L.limit-L.cursor,!L.out_grouping_b(W,97,259)&&(L.cursor=L.limit-r,!L.eq_s_b(1,"u")))break;case 2:L.slice_del()}L.limit_backward=i}}function v(){var e;L.ket=L.cursor,(e=L.find_among_b(S,5))&&(L.bra=L.cursor,w()&&1==e&&L.slice_del())}var _,g,k,h,z=[new i("",-1,3),new i("I",0,1),new i("U",0,2)],C=[new i("ea",-1,3),new i("aţia",-1,7),new i("aua",-1,2),new i("iua",-1,4),new i("aţie",-1,7),new i("ele",-1,3),new i("ile",-1,5),new i("iile",6,4),new i("iei",-1,4),new i("atei",-1,6),new i("ii",-1,4),new i("ului",-1,1),new i("ul",-1,1),new i("elor",-1,3),new i("ilor",-1,4),new i("iilor",14,4)],P=[new i("icala",-1,4),new i("iciva",-1,4),new i("ativa",-1,5),new i("itiva",-1,6),new i("icale",-1,4),new i("aţiune",-1,5),new i("iţiune",-1,6),new i("atoare",-1,5),new i("itoare",-1,6),new i("ătoare",-1,5),new i("icitate",-1,4),new i("abilitate",-1,1),new i("ibilitate",-1,2),new i("ivitate",-1,3),new i("icive",-1,4),new i("ative",-1,5),new i("itive",-1,6),new i("icali",-1,4),new i("atori",-1,5),new i("icatori",18,4),new i("itori",-1,6),new i("ători",-1,5),new i("icitati",-1,4),new i("abilitati",-1,1),new i("ivitati",-1,3),new i("icivi",-1,4),new i("ativi",-1,5),new i("itivi",-1,6),new i("icităi",-1,4),new i("abilităi",-1,1),new i("ivităi",-1,3),new i("icităţi",-1,4),new i("abilităţi",-1,1),new i("ivităţi",-1,3),new i("ical",-1,4),new i("ator",-1,5),new i("icator",35,4),new i("itor",-1,6),new i("ător",-1,5),new i("iciv",-1,4),new i("ativ",-1,5),new i("itiv",-1,6),new i("icală",-1,4),new i("icivă",-1,4),new i("ativă",-1,5),new i("itivă",-1,6)],F=[new i("ica",-1,1),new i("abila",-1,1),new i("ibila",-1,1),new i("oasa",-1,1),new i("ata",-1,1),new i("ita",-1,1),new i("anta",-1,1),new i("ista",-1,3),new i("uta",-1,1),new i("iva",-1,1),new i("ic",-1,1),new i("ice",-1,1),new i("abile",-1,1),new i("ibile",-1,1),new i("isme",-1,3),new i("iune",-1,2),new i("oase",-1,1),new i("ate",-1,1),new i("itate",17,1),new i("ite",-1,1),new i("ante",-1,1),new i("iste",-1,3),new i("ute",-1,1),new i("ive",-1,1),new i("ici",-1,1),new i("abili",-1,1),new i("ibili",-1,1),new i("iuni",-1,2),new i("atori",-1,1),new i("osi",-1,1),new i("ati",-1,1),new i("itati",30,1),new i("iti",-1,1),new i("anti",-1,1),new i("isti",-1,3),new i("uti",-1,1),new i("işti",-1,3),new i("ivi",-1,1),new i("ităi",-1,1),new i("oşi",-1,1),new i("ităţi",-1,1),new i("abil",-1,1),new i("ibil",-1,1),new i("ism",-1,3),new i("ator",-1,1),new i("os",-1,1),new i("at",-1,1),new i("it",-1,1),new i("ant",-1,1),new i("ist",-1,3),new i("ut",-1,1),new i("iv",-1,1),new i("ică",-1,1),new i("abilă",-1,1),new i("ibilă",-1,1),new i("oasă",-1,1),new i("ată",-1,1),new i("ită",-1,1),new i("antă",-1,1),new i("istă",-1,3),new i("ută",-1,1),new i("ivă",-1,1)],q=[new i("ea",-1,1),new i("ia",-1,1),new i("esc",-1,1),new i("ăsc",-1,1),new i("ind",-1,1),new i("ând",-1,1),new i("are",-1,1),new i("ere",-1,1),new i("ire",-1,1),new i("âre",-1,1),new i("se",-1,2),new i("ase",10,1),new i("sese",10,2),new i("ise",10,1),new i("use",10,1),new i("âse",10,1),new i("eşte",-1,1),new i("ăşte",-1,1),new i("eze",-1,1),new i("ai",-1,1),new i("eai",19,1),new i("iai",19,1),new i("sei",-1,2),new i("eşti",-1,1),new i("ăşti",-1,1),new i("ui",-1,1),new i("ezi",-1,1),new i("âi",-1,1),new i("aşi",-1,1),new i("seşi",-1,2),new i("aseşi",29,1),new i("seseşi",29,2),new i("iseşi",29,1),new i("useşi",29,1),new i("âseşi",29,1),new i("işi",-1,1),new i("uşi",-1,1),new i("âşi",-1,1),new i("aţi",-1,2),new i("eaţi",38,1),new i("iaţi",38,1),new i("eţi",-1,2),new i("iţi",-1,2),new i("âţi",-1,2),new i("arăţi",-1,1),new i("serăţi",-1,2),new i("aserăţi",45,1),new i("seserăţi",45,2),new i("iserăţi",45,1),new i("userăţi",45,1),new i("âserăţi",45,1),new i("irăţi",-1,1),new i("urăţi",-1,1),new i("ârăţi",-1,1),new i("am",-1,1),new i("eam",54,1),new i("iam",54,1),new i("em",-1,2),new i("asem",57,1),new i("sesem",57,2),new i("isem",57,1),new i("usem",57,1),new i("âsem",57,1),new i("im",-1,2),new i("âm",-1,2),new i("ăm",-1,2),new i("arăm",65,1),new i("serăm",65,2),new i("aserăm",67,1),new i("seserăm",67,2),new i("iserăm",67,1),new i("userăm",67,1),new i("âserăm",67,1),new i("irăm",65,1),new i("urăm",65,1),new i("ârăm",65,1),new i("au",-1,1),new i("eau",76,1),new i("iau",76,1),new i("indu",-1,1),new i("ându",-1,1),new i("ez",-1,1),new i("ească",-1,1),new i("ară",-1,1),new i("seră",-1,2),new i("aseră",84,1),new i("seseră",84,2),new i("iseră",84,1),new i("useră",84,1),new i("âseră",84,1),new i("iră",-1,1),new i("ură",-1,1),new i("âră",-1,1),new i("ează",-1,1)],S=[new i("a",-1,1),new i("e",-1,1),new i("ie",1,1),new i("i",-1,1),new i("ă",-1,1)],W=[17,65,16,0,0,0,0,0,0,0,0,0,0,0,0,0,2,32,0,0,4],L=new r;this.setCurrent=function(e){L.setCurrent(e)},this.getCurrent=function(){return L.getCurrent()},this.stem=function(){var e=L.cursor;return n(),L.cursor=e,c(),L.limit_backward=e,L.cursor=L.limit,f(),L.cursor=L.limit,d(),L.cursor=L.limit,_||(L.cursor=L.limit,b(),L.cursor=L.limit),v(),L.cursor=L.limit_backward,s(),!0}};return function(e){return"function"==typeof e.update?e.update(function(e){return n.setCurrent(e),n.stem(),n.getCurrent()}):(n.setCurrent(e),n.stem(),n.getCurrent())}}(),e.Pipeline.registerFunction(e.ro.stemmer,"stemmer-ro"),e.ro.stopWordFilter=e.generateStopWordFilter("acea aceasta această aceea acei aceia acel acela acele acelea acest acesta aceste acestea aceşti aceştia acolo acord acum ai aia aibă aici al ale alea altceva altcineva am ar are asemenea asta astea astăzi asupra au avea avem aveţi azi aş aşadar aţi bine bucur bună ca care caut ce cel ceva chiar cinci cine cineva contra cu cum cumva curând curînd când cât câte câtva câţi cînd cît cîte cîtva cîţi că căci cărei căror cărui către da dacă dar datorită dată dau de deci deja deoarece departe deşi din dinaintea dintr- dintre doi doilea două drept după dă ea ei el ele eram este eu eşti face fata fi fie fiecare fii fim fiu fiţi frumos fără graţie halbă iar ieri la le li lor lui lângă lîngă mai mea mei mele mereu meu mi mie mine mult multă mulţi mulţumesc mâine mîine mă ne nevoie nici nicăieri nimeni nimeri nimic nişte noastre noastră noi noroc nostru nouă noştri nu opt ori oricare orice oricine oricum oricând oricât oricînd oricît oriunde patra patru patrulea pe pentru peste pic poate pot prea prima primul prin puţin puţina puţină până pînă rog sa sale sau se spate spre sub sunt suntem sunteţi sută sînt sîntem sînteţi să săi său ta tale te timp tine toate toată tot totuşi toţi trei treia treilea tu tăi tău un una unde undeva unei uneia unele uneori unii unor unora unu unui unuia unul vi voastre voastră voi vostru vouă voştri vreme vreo vreun vă zece zero zi zice îi îl îmi împotriva în înainte înaintea încotro încât încît între întrucât întrucît îţi ăla ălea ăsta ăstea ăştia şapte şase şi ştiu ţi ţie".split(" ")),e.Pipeline.registerFunction(e.ro.stopWordFilter,"stopWordFilter-ro")}});������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.ru.min.js�����������������0000664�0000000�0000000�00000024133�14753064456�0030546�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*! * Lunr languages, `Russian` language * https://github.com/MihaiValentin/lunr-languages * * Copyright 2014, Mihai Valentin * http://www.mozilla.org/MPL/ */ /*! * based on * Snowball JavaScript Library v0.3 * http://code.google.com/p/urim/ * http://snowball.tartarus.org/ * * Copyright 2010, Oleg Mazko * http://www.mozilla.org/MPL/ */ !function(e,n){"function"==typeof define&&define.amd?define(n):"object"==typeof exports?module.exports=n():n()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.ru=function(){this.pipeline.reset(),this.pipeline.add(e.ru.trimmer,e.ru.stopWordFilter,e.ru.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.ru.stemmer))},e.ru.wordCharacters="Ѐ-҄҇-ԯᴫᵸⷠ-ⷿꙀ-ꚟ︮︯",e.ru.trimmer=e.trimmerSupport.generateTrimmer(e.ru.wordCharacters),e.Pipeline.registerFunction(e.ru.trimmer,"trimmer-ru"),e.ru.stemmer=function(){var n=e.stemmerSupport.Among,r=e.stemmerSupport.SnowballProgram,t=new function(){function e(){for(;!W.in_grouping(S,1072,1103);){if(W.cursor>=W.limit)return!1;W.cursor++}return!0}function t(){for(;!W.out_grouping(S,1072,1103);){if(W.cursor>=W.limit)return!1;W.cursor++}return!0}function w(){b=W.limit,_=b,e()&&(b=W.cursor,t()&&e()&&t()&&(_=W.cursor))}function i(){return _<=W.cursor}function u(e,n){var r,t;if(W.ket=W.cursor,r=W.find_among_b(e,n)){switch(W.bra=W.cursor,r){case 1:if(t=W.limit-W.cursor,!W.eq_s_b(1,"а")&&(W.cursor=W.limit-t,!W.eq_s_b(1,"я")))return!1;case 2:W.slice_del()}return!0}return!1}function o(){return u(h,9)}function s(e,n){var r;return W.ket=W.cursor,!!(r=W.find_among_b(e,n))&&(W.bra=W.cursor,1==r&&W.slice_del(),!0)}function c(){return s(g,26)}function m(){return!!c()&&(u(C,8),!0)}function f(){return s(k,2)}function l(){return u(P,46)}function a(){s(v,36)}function p(){var e;W.ket=W.cursor,(e=W.find_among_b(F,2))&&(W.bra=W.cursor,i()&&1==e&&W.slice_del())}function d(){var e;if(W.ket=W.cursor,e=W.find_among_b(q,4))switch(W.bra=W.cursor,e){case 1:if(W.slice_del(),W.ket=W.cursor,!W.eq_s_b(1,"н"))break;W.bra=W.cursor;case 2:if(!W.eq_s_b(1,"н"))break;case 3:W.slice_del()}}var _,b,h=[new n("в",-1,1),new n("ив",0,2),new n("ыв",0,2),new n("вши",-1,1),new n("ивши",3,2),new n("ывши",3,2),new n("вшись",-1,1),new n("ившись",6,2),new n("ывшись",6,2)],g=[new n("ее",-1,1),new n("ие",-1,1),new n("ое",-1,1),new n("ые",-1,1),new n("ими",-1,1),new n("ыми",-1,1),new n("ей",-1,1),new n("ий",-1,1),new n("ой",-1,1),new n("ый",-1,1),new n("ем",-1,1),new n("им",-1,1),new n("ом",-1,1),new n("ым",-1,1),new n("его",-1,1),new n("ого",-1,1),new n("ему",-1,1),new n("ому",-1,1),new n("их",-1,1),new n("ых",-1,1),new n("ею",-1,1),new n("ою",-1,1),new n("ую",-1,1),new n("юю",-1,1),new n("ая",-1,1),new n("яя",-1,1)],C=[new n("ем",-1,1),new n("нн",-1,1),new n("вш",-1,1),new n("ивш",2,2),new n("ывш",2,2),new n("щ",-1,1),new n("ющ",5,1),new n("ующ",6,2)],k=[new n("сь",-1,1),new n("ся",-1,1)],P=[new n("ла",-1,1),new n("ила",0,2),new n("ыла",0,2),new n("на",-1,1),new n("ена",3,2),new n("ете",-1,1),new n("ите",-1,2),new n("йте",-1,1),new n("ейте",7,2),new n("уйте",7,2),new n("ли",-1,1),new n("или",10,2),new n("ыли",10,2),new n("й",-1,1),new n("ей",13,2),new n("уй",13,2),new n("л",-1,1),new n("ил",16,2),new n("ыл",16,2),new n("ем",-1,1),new n("им",-1,2),new n("ым",-1,2),new n("н",-1,1),new n("ен",22,2),new n("ло",-1,1),new n("ило",24,2),new n("ыло",24,2),new n("но",-1,1),new n("ено",27,2),new n("нно",27,1),new n("ет",-1,1),new n("ует",30,2),new n("ит",-1,2),new n("ыт",-1,2),new n("ют",-1,1),new n("уют",34,2),new n("ят",-1,2),new n("ны",-1,1),new n("ены",37,2),new n("ть",-1,1),new n("ить",39,2),new n("ыть",39,2),new n("ешь",-1,1),new n("ишь",-1,2),new n("ю",-1,2),new n("ую",44,2)],v=[new n("а",-1,1),new n("ев",-1,1),new n("ов",-1,1),new n("е",-1,1),new n("ие",3,1),new n("ье",3,1),new n("и",-1,1),new n("еи",6,1),new n("ии",6,1),new n("ами",6,1),new n("ями",6,1),new n("иями",10,1),new n("й",-1,1),new n("ей",12,1),new n("ией",13,1),new n("ий",12,1),new n("ой",12,1),new n("ам",-1,1),new n("ем",-1,1),new n("ием",18,1),new n("ом",-1,1),new n("ям",-1,1),new n("иям",21,1),new n("о",-1,1),new n("у",-1,1),new n("ах",-1,1),new n("ях",-1,1),new n("иях",26,1),new n("ы",-1,1),new n("ь",-1,1),new n("ю",-1,1),new n("ию",30,1),new n("ью",30,1),new n("я",-1,1),new n("ия",33,1),new n("ья",33,1)],F=[new n("ост",-1,1),new n("ость",-1,1)],q=[new n("ейше",-1,1),new n("н",-1,2),new n("ейш",-1,1),new n("ь",-1,3)],S=[33,65,8,232],W=new r;this.setCurrent=function(e){W.setCurrent(e)},this.getCurrent=function(){return W.getCurrent()},this.stem=function(){return w(),W.cursor=W.limit,!(W.cursor<b)&&(W.limit_backward=b,o()||(W.cursor=W.limit,f()||(W.cursor=W.limit),m()||(W.cursor=W.limit,l()||(W.cursor=W.limit,a()))),W.cursor=W.limit,W.ket=W.cursor,W.eq_s_b(1,"и")?(W.bra=W.cursor,W.slice_del()):W.cursor=W.limit,p(),W.cursor=W.limit,d(),!0)}};return function(e){return"function"==typeof e.update?e.update(function(e){return t.setCurrent(e),t.stem(),t.getCurrent()}):(t.setCurrent(e),t.stem(),t.getCurrent())}}(),e.Pipeline.registerFunction(e.ru.stemmer,"stemmer-ru"),e.ru.stopWordFilter=e.generateStopWordFilter("алло без близко более больше будем будет будете будешь будто буду будут будь бы бывает бывь был была были было быть в важная важное важные важный вам вами вас ваш ваша ваше ваши вверх вдали вдруг ведь везде весь вниз внизу во вокруг вон восемнадцатый восемнадцать восемь восьмой вот впрочем времени время все всегда всего всем всеми всему всех всею всю всюду вся всё второй вы г где говорил говорит год года году да давно даже далеко дальше даром два двадцатый двадцать две двенадцатый двенадцать двух девятнадцатый девятнадцать девятый девять действительно дел день десятый десять для до довольно долго должно другая другие других друго другое другой е его ее ей ему если есть еще ещё ею её ж же жизнь за занят занята занято заняты затем зато зачем здесь значит и из или им именно иметь ими имя иногда их к каждая каждое каждые каждый кажется как какая какой кем когда кого ком кому конечно которая которого которой которые который которых кроме кругом кто куда лет ли лишь лучше люди м мало между меля менее меньше меня миллионов мимо мира мне много многочисленная многочисленное многочисленные многочисленный мной мною мог могут мож может можно можхо мои мой мор мочь моя моё мы на наверху над надо назад наиболее наконец нам нами нас начала наш наша наше наши не него недавно недалеко нее ней нельзя нем немного нему непрерывно нередко несколько нет нею неё ни нибудь ниже низко никогда никуда ними них ничего но ну нужно нх о об оба обычно один одиннадцатый одиннадцать однажды однако одного одной около он она они оно опять особенно от отовсюду отсюда очень первый перед по под пожалуйста позже пока пор пора после посреди потом потому почему почти прекрасно при про просто против процентов пятнадцатый пятнадцать пятый пять раз разве рано раньше рядом с сам сама сами самим самими самих само самого самой самом самому саму свое своего своей свои своих свою сеаой себе себя сегодня седьмой сейчас семнадцатый семнадцать семь сих сказал сказала сказать сколько слишком сначала снова со собой собою совсем спасибо стал суть т та так такая также такие такое такой там твой твоя твоё те тебе тебя тем теми теперь тех то тобой тобою тогда того тоже только том тому тот тою третий три тринадцатый тринадцать ту туда тут ты тысяч у уж уже уметь хорошо хотеть хоть хотя хочешь часто чаще чего человек чем чему через четвертый четыре четырнадцатый четырнадцать что чтоб чтобы чуть шестнадцатый шестнадцать шестой шесть эта эти этим этими этих это этого этой этом этому этот эту я \ufeffа".split(" ")),e.Pipeline.registerFunction(e.ru.stopWordFilter,"stopWordFilter-ru")}});�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.sa.min.js�����������������0000664�0000000�0000000�00000011445�14753064456�0030525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.sa=function(){this.pipeline.reset(),this.pipeline.add(e.sa.trimmer,e.sa.stopWordFilter,e.sa.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.sa.stemmer))},e.sa.wordCharacters="ऀ-ःऄ-एऐ-टठ-यर-िी-ॏॐ-य़ॠ-९॰-ॿ꣠-꣱ꣲ-ꣷ꣸-ꣻ꣼-ꣽꣾ-ꣿᆰ0-ᆰ9",e.sa.trimmer=e.trimmerSupport.generateTrimmer(e.sa.wordCharacters),e.Pipeline.registerFunction(e.sa.trimmer,"trimmer-sa"),e.sa.stopWordFilter=e.generateStopWordFilter('तथा अयम्‌ एकम्‌ इत्यस्मिन्‌ तथा तत्‌ वा अयम्‌ इत्यस्य ते आहूत उपरि तेषाम्‌ किन्तु तेषाम्‌ तदा इत्यनेन अधिकः इत्यस्य तत्‌ केचन बहवः द्वि तथा महत्वपूर्णः अयम्‌ अस्य विषये अयं अस्ति तत्‌ प्रथमः विषये इत्युपरि इत्युपरि इतर अधिकतमः अधिकः अपि सामान्यतया ठ इतरेतर नूतनम्‌ द न्यूनम्‌ कश्चित्‌ वा विशालः द सः अस्ति तदनुसारम् तत्र अस्ति केवलम्‌ अपि अत्र सर्वे विविधाः तत्‌ बहवः यतः इदानीम्‌ द दक्षिण इत्यस्मै तस्य उपरि नथ अतीव कार्यम्‌ सर्वे एकैकम्‌ इत्यादि। एते सन्ति उत इत्थम्‌ मध्ये एतदर्थं . स कस्य प्रथमः श्री. करोति अस्मिन् प्रकारः निर्मिता कालः तत्र कर्तुं समान अधुना ते सन्ति स एकः अस्ति सः अर्थात् तेषां कृते . स्थितम् विशेषः अग्रिम तेषाम्‌ समान स्रोतः ख म समान इदानीमपि अधिकतया करोतु ते समान इत्यस्य वीथी सह यस्मिन् कृतवान्‌ धृतः तदा पुनः पूर्वं सः आगतः किम्‌ कुल इतर पुरा मात्रा स विषये उ अतएव अपि नगरस्य उपरि यतः प्रतिशतं कतरः कालः साधनानि भूत तथापि जात सम्बन्धि अन्यत्‌ ग अतः अस्माकं स्वकीयाः अस्माकं इदानीं अन्तः इत्यादयः भवन्तः इत्यादयः एते एताः तस्य अस्य इदम् एते तेषां तेषां तेषां तान् तेषां तेषां तेषां समानः सः एकः च तादृशाः बहवः अन्ये च वदन्ति यत् कियत् कस्मै कस्मै यस्मै यस्मै यस्मै यस्मै न अतिनीचः किन्तु प्रथमं सम्पूर्णतया ततः चिरकालानन्तरं पुस्तकं सम्पूर्णतया अन्तः किन्तु अत्र वा इह इव श्रद्धाय अवशिष्यते परन्तु अन्ये वर्गाः सन्ति ते सन्ति शक्नुवन्ति सर्वे मिलित्वा सर्वे एकत्र"'.split(" ")),e.sa.stemmer=function(){return function(e){return"function"==typeof e.update?e.update(function(e){return e}):e}}();var r=e.wordcut;r.init(),e.sa.tokenizer=function(t){if(!arguments.length||null==t||void 0==t)return[];if(Array.isArray(t))return t.map(function(r){return isLunr2?new e.Token(r.toLowerCase()):r.toLowerCase()});var i=t.toString().toLowerCase().replace(/^\s+/,"");return r.cut(i).split("|")},e.Pipeline.registerFunction(e.sa.stemmer,"stemmer-sa"),e.Pipeline.registerFunction(e.sa.stopWordFilter,"stopWordFilter-sa")}});���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.stemmer.support.min.js����0000664�0000000�0000000�00000007077�14753064456�0033317�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������!function(r,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t():t()(r.lunr)}(this,function(){return function(r){r.stemmerSupport={Among:function(r,t,i,s){if(this.toCharArray=function(r){for(var t=r.length,i=new Array(t),s=0;s<t;s++)i[s]=r.charCodeAt(s);return i},!r&&""!=r||!t&&0!=t||!i)throw"Bad Among initialisation: s:"+r+", substring_i: "+t+", result: "+i;this.s_size=r.length,this.s=this.toCharArray(r),this.substring_i=t,this.result=i,this.method=s},SnowballProgram:function(){var r;return{bra:0,ket:0,limit:0,cursor:0,limit_backward:0,setCurrent:function(t){r=t,this.cursor=0,this.limit=t.length,this.limit_backward=0,this.bra=this.cursor,this.ket=this.limit},getCurrent:function(){var t=r;return r=null,t},in_grouping:function(t,i,s){if(this.cursor<this.limit){var e=r.charCodeAt(this.cursor);if(e<=s&&e>=i&&(e-=i,t[e>>3]&1<<(7&e)))return this.cursor++,!0}return!1},in_grouping_b:function(t,i,s){if(this.cursor>this.limit_backward){var e=r.charCodeAt(this.cursor-1);if(e<=s&&e>=i&&(e-=i,t[e>>3]&1<<(7&e)))return this.cursor--,!0}return!1},out_grouping:function(t,i,s){if(this.cursor<this.limit){var e=r.charCodeAt(this.cursor);if(e>s||e<i)return this.cursor++,!0;if(e-=i,!(t[e>>3]&1<<(7&e)))return this.cursor++,!0}return!1},out_grouping_b:function(t,i,s){if(this.cursor>this.limit_backward){var e=r.charCodeAt(this.cursor-1);if(e>s||e<i)return this.cursor--,!0;if(e-=i,!(t[e>>3]&1<<(7&e)))return this.cursor--,!0}return!1},eq_s:function(t,i){if(this.limit-this.cursor<t)return!1;for(var s=0;s<t;s++)if(r.charCodeAt(this.cursor+s)!=i.charCodeAt(s))return!1;return this.cursor+=t,!0},eq_s_b:function(t,i){if(this.cursor-this.limit_backward<t)return!1;for(var s=0;s<t;s++)if(r.charCodeAt(this.cursor-t+s)!=i.charCodeAt(s))return!1;return this.cursor-=t,!0},find_among:function(t,i){for(var s=0,e=i,n=this.cursor,u=this.limit,o=0,h=0,c=!1;;){for(var a=s+(e-s>>1),f=0,l=o<h?o:h,_=t[a],m=l;m<_.s_size;m++){if(n+l==u){f=-1;break}if(f=r.charCodeAt(n+l)-_.s[m])break;l++}if(f<0?(e=a,h=l):(s=a,o=l),e-s<=1){if(s>0||e==s||c)break;c=!0}}for(;;){var _=t[s];if(o>=_.s_size){if(this.cursor=n+_.s_size,!_.method)return _.result;var b=_.method();if(this.cursor=n+_.s_size,b)return _.result}if((s=_.substring_i)<0)return 0}},find_among_b:function(t,i){for(var s=0,e=i,n=this.cursor,u=this.limit_backward,o=0,h=0,c=!1;;){for(var a=s+(e-s>>1),f=0,l=o<h?o:h,_=t[a],m=_.s_size-1-l;m>=0;m--){if(n-l==u){f=-1;break}if(f=r.charCodeAt(n-1-l)-_.s[m])break;l++}if(f<0?(e=a,h=l):(s=a,o=l),e-s<=1){if(s>0||e==s||c)break;c=!0}}for(;;){var _=t[s];if(o>=_.s_size){if(this.cursor=n-_.s_size,!_.method)return _.result;var b=_.method();if(this.cursor=n-_.s_size,b)return _.result}if((s=_.substring_i)<0)return 0}},replace_s:function(t,i,s){var e=s.length-(i-t),n=r.substring(0,t),u=r.substring(i);return r=n+s+u,this.limit+=e,this.cursor>=i?this.cursor+=e:this.cursor>t&&(this.cursor=t),e},slice_check:function(){if(this.bra<0||this.bra>this.ket||this.ket>this.limit||this.limit>r.length)throw"faulty slice operation"},slice_from:function(r){this.slice_check(),this.replace_s(this.bra,this.ket,r)},slice_del:function(){this.slice_from("")},insert:function(r,t,i){var s=this.replace_s(r,t,i);r<=this.bra&&(this.bra+=s),r<=this.ket&&(this.ket+=s)},slice_to:function(){return this.slice_check(),r.substring(this.bra,this.ket)},eq_v_b:function(r){return this.eq_s_b(r.length,r)}}}},r.trimmerSupport={generateTrimmer:function(r){var t=new RegExp("^[^"+r+"]+"),i=new RegExp("[^"+r+"]+$");return function(r){return"function"==typeof r.update?r.update(function(r){return r.replace(t,"").replace(i,"")}):r.replace(t,"").replace(i,"")}}}}});�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.sv.min.js�����������������0000664�0000000�0000000�00000010653�14753064456�0030552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*! * Lunr languages, `Swedish` language * https://github.com/MihaiValentin/lunr-languages * * Copyright 2014, Mihai Valentin * http://www.mozilla.org/MPL/ */ /*! * based on * Snowball JavaScript Library v0.3 * http://code.google.com/p/urim/ * http://snowball.tartarus.org/ * * Copyright 2010, Oleg Mazko * http://www.mozilla.org/MPL/ */ !function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.sv=function(){this.pipeline.reset(),this.pipeline.add(e.sv.trimmer,e.sv.stopWordFilter,e.sv.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.sv.stemmer))},e.sv.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",e.sv.trimmer=e.trimmerSupport.generateTrimmer(e.sv.wordCharacters),e.Pipeline.registerFunction(e.sv.trimmer,"trimmer-sv"),e.sv.stemmer=function(){var r=e.stemmerSupport.Among,n=e.stemmerSupport.SnowballProgram,t=new function(){function e(){var e,r=w.cursor+3;if(o=w.limit,0<=r||r<=w.limit){for(a=r;;){if(e=w.cursor,w.in_grouping(l,97,246)){w.cursor=e;break}if(w.cursor=e,w.cursor>=w.limit)return;w.cursor++}for(;!w.out_grouping(l,97,246);){if(w.cursor>=w.limit)return;w.cursor++}o=w.cursor,o<a&&(o=a)}}function t(){var e,r=w.limit_backward;if(w.cursor>=o&&(w.limit_backward=o,w.cursor=w.limit,w.ket=w.cursor,e=w.find_among_b(u,37),w.limit_backward=r,e))switch(w.bra=w.cursor,e){case 1:w.slice_del();break;case 2:w.in_grouping_b(d,98,121)&&w.slice_del()}}function i(){var e=w.limit_backward;w.cursor>=o&&(w.limit_backward=o,w.cursor=w.limit,w.find_among_b(c,7)&&(w.cursor=w.limit,w.ket=w.cursor,w.cursor>w.limit_backward&&(w.bra=--w.cursor,w.slice_del())),w.limit_backward=e)}function s(){var e,r;if(w.cursor>=o){if(r=w.limit_backward,w.limit_backward=o,w.cursor=w.limit,w.ket=w.cursor,e=w.find_among_b(m,5))switch(w.bra=w.cursor,e){case 1:w.slice_del();break;case 2:w.slice_from("lös");break;case 3:w.slice_from("full")}w.limit_backward=r}}var a,o,u=[new r("a",-1,1),new r("arna",0,1),new r("erna",0,1),new r("heterna",2,1),new r("orna",0,1),new r("ad",-1,1),new r("e",-1,1),new r("ade",6,1),new r("ande",6,1),new r("arne",6,1),new r("are",6,1),new r("aste",6,1),new r("en",-1,1),new r("anden",12,1),new r("aren",12,1),new r("heten",12,1),new r("ern",-1,1),new r("ar",-1,1),new r("er",-1,1),new r("heter",18,1),new r("or",-1,1),new r("s",-1,2),new r("as",21,1),new r("arnas",22,1),new r("ernas",22,1),new r("ornas",22,1),new r("es",21,1),new r("ades",26,1),new r("andes",26,1),new r("ens",21,1),new r("arens",29,1),new r("hetens",29,1),new r("erns",21,1),new r("at",-1,1),new r("andet",-1,1),new r("het",-1,1),new r("ast",-1,1)],c=[new r("dd",-1,-1),new r("gd",-1,-1),new r("nn",-1,-1),new r("dt",-1,-1),new r("gt",-1,-1),new r("kt",-1,-1),new r("tt",-1,-1)],m=[new r("ig",-1,1),new r("lig",0,1),new r("els",-1,1),new r("fullt",-1,3),new r("löst",-1,2)],l=[17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,24,0,32],d=[119,127,149],w=new n;this.setCurrent=function(e){w.setCurrent(e)},this.getCurrent=function(){return w.getCurrent()},this.stem=function(){var r=w.cursor;return e(),w.limit_backward=r,w.cursor=w.limit,t(),w.cursor=w.limit,i(),w.cursor=w.limit,s(),!0}};return function(e){return"function"==typeof e.update?e.update(function(e){return t.setCurrent(e),t.stem(),t.getCurrent()}):(t.setCurrent(e),t.stem(),t.getCurrent())}}(),e.Pipeline.registerFunction(e.sv.stemmer,"stemmer-sv"),e.sv.stopWordFilter=e.generateStopWordFilter("alla allt att av blev bli blir blivit de dem den denna deras dess dessa det detta dig din dina ditt du där då efter ej eller en er era ert ett från för ha hade han hans har henne hennes hon honom hur här i icke ingen inom inte jag ju kan kunde man med mellan men mig min mina mitt mot mycket ni nu när någon något några och om oss på samma sedan sig sin sina sitta själv skulle som så sådan sådana sådant till under upp ut utan vad var vara varför varit varje vars vart vem vi vid vilka vilkas vilken vilket vår våra vårt än är åt över".split(" ")),e.Pipeline.registerFunction(e.sv.stopWordFilter,"stopWordFilter-sv")}});�������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.ta.min.js�����������������0000664�0000000�0000000�00000004546�14753064456�0030532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������!function(e,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t():t()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.ta=function(){this.pipeline.reset(),this.pipeline.add(e.ta.trimmer,e.ta.stopWordFilter,e.ta.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.ta.stemmer))},e.ta.wordCharacters="஀-உஊ-ஏஐ-ஙச-ட஠-னப-யர-ஹ஺-ிீ-௉ொ-௏ௐ-௙௚-௟௠-௩௪-௯௰-௹௺-௿a-zA-Za-zA-Z0-90-9",e.ta.trimmer=e.trimmerSupport.generateTrimmer(e.ta.wordCharacters),e.Pipeline.registerFunction(e.ta.trimmer,"trimmer-ta"),e.ta.stopWordFilter=e.generateStopWordFilter("அங்கு அங்கே அது அதை அந்த அவர் அவர்கள் அவள் அவன் அவை ஆக ஆகவே ஆகையால் ஆதலால் ஆதலினால் ஆனாலும் ஆனால் இங்கு இங்கே இது இதை இந்த இப்படி இவர் இவர்கள் இவள் இவன் இவை இவ்வளவு உனக்கு உனது உன் உன்னால் எங்கு எங்கே எது எதை எந்த எப்படி எவர் எவர்கள் எவள் எவன் எவை எவ்வளவு எனக்கு எனது எனவே என் என்ன என்னால் ஏது ஏன் தனது தன்னால் தானே தான் நாங்கள் நாம் நான் நீ நீங்கள்".split(" ")),e.ta.stemmer=function(){return function(e){return"function"==typeof e.update?e.update(function(e){return e}):e}}();var t=e.wordcut;t.init(),e.ta.tokenizer=function(r){if(!arguments.length||null==r||void 0==r)return[];if(Array.isArray(r))return r.map(function(t){return isLunr2?new e.Token(t.toLowerCase()):t.toLowerCase()});var i=r.toString().toLowerCase().replace(/^\s+/,"");return t.cut(i).split("|")},e.Pipeline.registerFunction(e.ta.stemmer,"stemmer-ta"),e.Pipeline.registerFunction(e.ta.stopWordFilter,"stopWordFilter-ta")}});����������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.te.min.js�����������������0000664�0000000�0000000�00000004432�14753064456�0030530�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������!function(e,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t():t()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.te=function(){this.pipeline.reset(),this.pipeline.add(e.te.trimmer,e.te.stopWordFilter,e.te.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.te.stemmer))},e.te.wordCharacters="ఀ-ఄఅ-ఔక-హా-ౌౕ-ౖౘ-ౚౠ-ౡౢ-ౣ౦-౯౸-౿఼ఽ్ౝ౷౤౥",e.te.trimmer=e.trimmerSupport.generateTrimmer(e.te.wordCharacters),e.Pipeline.registerFunction(e.te.trimmer,"trimmer-te"),e.te.stopWordFilter=e.generateStopWordFilter("అందరూ అందుబాటులో అడగండి అడగడం అడ్డంగా అనుగుణంగా అనుమతించు అనుమతిస్తుంది అయితే ఇప్పటికే ఉన్నారు ఎక్కడైనా ఎప్పుడు ఎవరైనా ఎవరో ఏ ఏదైనా ఏమైనప్పటికి ఒక ఒకరు కనిపిస్తాయి కాదు కూడా గా గురించి చుట్టూ చేయగలిగింది తగిన తర్వాత దాదాపు దూరంగా నిజంగా పై ప్రకారం ప్రక్కన మధ్య మరియు మరొక మళ్ళీ మాత్రమే మెచ్చుకో వద్ద వెంట వేరుగా వ్యతిరేకంగా సంబంధం".split(" ")),e.te.stemmer=function(){return function(e){return"function"==typeof e.update?e.update(function(e){return e}):e}}();var t=e.wordcut;t.init(),e.te.tokenizer=function(r){if(!arguments.length||null==r||void 0==r)return[];if(Array.isArray(r))return r.map(function(t){return isLunr2?new e.Token(t.toLowerCase()):t.toLowerCase()});var i=r.toString().toLowerCase().replace(/^\s+/,"");return t.cut(i).split("|")},e.Pipeline.registerFunction(e.te.stemmer,"stemmer-te"),e.Pipeline.registerFunction(e.te.stopWordFilter,"stopWordFilter-te")}});��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.th.min.js�����������������0000664�0000000�0000000�00000002007�14753064456�0030527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");var r="2"==e.version[0];e.th=function(){this.pipeline.reset(),this.pipeline.add(e.th.trimmer),r?this.tokenizer=e.th.tokenizer:(e.tokenizer&&(e.tokenizer=e.th.tokenizer),this.tokenizerFn&&(this.tokenizerFn=e.th.tokenizer))},e.th.wordCharacters="[฀-๿]",e.th.trimmer=e.trimmerSupport.generateTrimmer(e.th.wordCharacters),e.Pipeline.registerFunction(e.th.trimmer,"trimmer-th");var t=e.wordcut;t.init(),e.th.tokenizer=function(i){if(!arguments.length||null==i||void 0==i)return[];if(Array.isArray(i))return i.map(function(t){return r?new e.Token(t):t});var n=i.toString().replace(/^\s+/,"");return t.cut(n).split("|")}}});�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.tr.min.js�����������������0000664�0000000�0000000�00000035241�14753064456�0030547�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*! * Lunr languages, `Turkish` language * https://github.com/MihaiValentin/lunr-languages * * Copyright 2014, Mihai Valentin * http://www.mozilla.org/MPL/ */ /*! * based on * Snowball JavaScript Library v0.3 * http://code.google.com/p/urim/ * http://snowball.tartarus.org/ * * Copyright 2010, Oleg Mazko * http://www.mozilla.org/MPL/ */ !function(r,i){"function"==typeof define&&define.amd?define(i):"object"==typeof exports?module.exports=i():i()(r.lunr)}(this,function(){return function(r){if(void 0===r)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===r.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");r.tr=function(){this.pipeline.reset(),this.pipeline.add(r.tr.trimmer,r.tr.stopWordFilter,r.tr.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(r.tr.stemmer))},r.tr.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",r.tr.trimmer=r.trimmerSupport.generateTrimmer(r.tr.wordCharacters),r.Pipeline.registerFunction(r.tr.trimmer,"trimmer-tr"),r.tr.stemmer=function(){var i=r.stemmerSupport.Among,e=r.stemmerSupport.SnowballProgram,n=new function(){function r(r,i,e){for(;;){var n=Dr.limit-Dr.cursor;if(Dr.in_grouping_b(r,i,e)){Dr.cursor=Dr.limit-n;break}if(Dr.cursor=Dr.limit-n,Dr.cursor<=Dr.limit_backward)return!1;Dr.cursor--}return!0}function n(){var i,e;i=Dr.limit-Dr.cursor,r(Wr,97,305);for(var n=0;n<Br.length;n++){e=Dr.limit-Dr.cursor;var t=Br[n];if(Dr.eq_s_b(1,t[0])&&r(t[1],t[2],t[3]))return Dr.cursor=Dr.limit-i,!0;Dr.cursor=Dr.limit-e}return Dr.cursor=Dr.limit-e,!(!Dr.eq_s_b(1,"ü")||!r(Zr,246,252))&&(Dr.cursor=Dr.limit-i,!0)}function t(r,i){var e,n=Dr.limit-Dr.cursor;return r()&&(Dr.cursor=Dr.limit-n,Dr.cursor>Dr.limit_backward&&(Dr.cursor--,e=Dr.limit-Dr.cursor,i()))?(Dr.cursor=Dr.limit-e,!0):(Dr.cursor=Dr.limit-n,r()?(Dr.cursor=Dr.limit-n,!1):(Dr.cursor=Dr.limit-n,!(Dr.cursor<=Dr.limit_backward)&&(Dr.cursor--,!!i()&&(Dr.cursor=Dr.limit-n,!0))))}function u(r){return t(r,function(){return Dr.in_grouping_b(Wr,97,305)})}function o(){return u(function(){return Dr.eq_s_b(1,"n")})}function s(){return u(function(){return Dr.eq_s_b(1,"s")})}function c(){return u(function(){return Dr.eq_s_b(1,"y")})}function l(){return t(function(){return Dr.in_grouping_b(Lr,105,305)},function(){return Dr.out_grouping_b(Wr,97,305)})}function a(){return Dr.find_among_b(ur,10)&&l()}function m(){return n()&&Dr.in_grouping_b(Lr,105,305)&&s()}function d(){return Dr.find_among_b(or,2)}function f(){return n()&&Dr.in_grouping_b(Lr,105,305)&&c()}function b(){return n()&&Dr.find_among_b(sr,4)}function w(){return n()&&Dr.find_among_b(cr,4)&&o()}function _(){return n()&&Dr.find_among_b(lr,2)&&c()}function k(){return n()&&Dr.find_among_b(ar,2)}function p(){return n()&&Dr.find_among_b(mr,4)}function g(){return n()&&Dr.find_among_b(dr,2)}function y(){return n()&&Dr.find_among_b(fr,4)}function z(){return n()&&Dr.find_among_b(br,2)}function v(){return n()&&Dr.find_among_b(wr,2)&&c()}function h(){return Dr.eq_s_b(2,"ki")}function q(){return n()&&Dr.find_among_b(_r,2)&&o()}function C(){return n()&&Dr.find_among_b(kr,4)&&c()}function P(){return n()&&Dr.find_among_b(pr,4)}function F(){return n()&&Dr.find_among_b(gr,4)&&c()}function S(){return Dr.find_among_b(yr,4)}function W(){return n()&&Dr.find_among_b(zr,2)}function L(){return n()&&Dr.find_among_b(vr,4)}function x(){return n()&&Dr.find_among_b(hr,8)}function A(){return Dr.find_among_b(qr,2)}function E(){return n()&&Dr.find_among_b(Cr,32)&&c()}function j(){return Dr.find_among_b(Pr,8)&&c()}function T(){return n()&&Dr.find_among_b(Fr,4)&&c()}function Z(){return Dr.eq_s_b(3,"ken")&&c()}function B(){var r=Dr.limit-Dr.cursor;return!(T()||(Dr.cursor=Dr.limit-r,E()||(Dr.cursor=Dr.limit-r,j()||(Dr.cursor=Dr.limit-r,Z()))))}function D(){if(A()){var r=Dr.limit-Dr.cursor;if(S()||(Dr.cursor=Dr.limit-r,W()||(Dr.cursor=Dr.limit-r,C()||(Dr.cursor=Dr.limit-r,P()||(Dr.cursor=Dr.limit-r,F()||(Dr.cursor=Dr.limit-r))))),T())return!1}return!0}function G(){if(W()){Dr.bra=Dr.cursor,Dr.slice_del();var r=Dr.limit-Dr.cursor;return Dr.ket=Dr.cursor,x()||(Dr.cursor=Dr.limit-r,E()||(Dr.cursor=Dr.limit-r,j()||(Dr.cursor=Dr.limit-r,T()||(Dr.cursor=Dr.limit-r)))),nr=!1,!1}return!0}function H(){if(!L())return!0;var r=Dr.limit-Dr.cursor;return!E()&&(Dr.cursor=Dr.limit-r,!j())}function I(){var r,i=Dr.limit-Dr.cursor;return!(S()||(Dr.cursor=Dr.limit-i,F()||(Dr.cursor=Dr.limit-i,P()||(Dr.cursor=Dr.limit-i,C()))))||(Dr.bra=Dr.cursor,Dr.slice_del(),r=Dr.limit-Dr.cursor,Dr.ket=Dr.cursor,T()||(Dr.cursor=Dr.limit-r),!1)}function J(){var r,i=Dr.limit-Dr.cursor;if(Dr.ket=Dr.cursor,nr=!0,B()&&(Dr.cursor=Dr.limit-i,D()&&(Dr.cursor=Dr.limit-i,G()&&(Dr.cursor=Dr.limit-i,H()&&(Dr.cursor=Dr.limit-i,I()))))){if(Dr.cursor=Dr.limit-i,!x())return;Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,r=Dr.limit-Dr.cursor,S()||(Dr.cursor=Dr.limit-r,W()||(Dr.cursor=Dr.limit-r,C()||(Dr.cursor=Dr.limit-r,P()||(Dr.cursor=Dr.limit-r,F()||(Dr.cursor=Dr.limit-r))))),T()||(Dr.cursor=Dr.limit-r)}Dr.bra=Dr.cursor,Dr.slice_del()}function K(){var r,i,e,n;if(Dr.ket=Dr.cursor,h()){if(r=Dr.limit-Dr.cursor,p())return Dr.bra=Dr.cursor,Dr.slice_del(),i=Dr.limit-Dr.cursor,Dr.ket=Dr.cursor,W()?(Dr.bra=Dr.cursor,Dr.slice_del(),K()):(Dr.cursor=Dr.limit-i,a()&&(Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,W()&&(Dr.bra=Dr.cursor,Dr.slice_del(),K()))),!0;if(Dr.cursor=Dr.limit-r,w()){if(Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,e=Dr.limit-Dr.cursor,d())Dr.bra=Dr.cursor,Dr.slice_del();else{if(Dr.cursor=Dr.limit-e,Dr.ket=Dr.cursor,!a()&&(Dr.cursor=Dr.limit-e,!m()&&(Dr.cursor=Dr.limit-e,!K())))return!0;Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,W()&&(Dr.bra=Dr.cursor,Dr.slice_del(),K())}return!0}if(Dr.cursor=Dr.limit-r,g()){if(n=Dr.limit-Dr.cursor,d())Dr.bra=Dr.cursor,Dr.slice_del();else if(Dr.cursor=Dr.limit-n,m())Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,W()&&(Dr.bra=Dr.cursor,Dr.slice_del(),K());else if(Dr.cursor=Dr.limit-n,!K())return!1;return!0}}return!1}function M(r){if(Dr.ket=Dr.cursor,!g()&&(Dr.cursor=Dr.limit-r,!k()))return!1;var i=Dr.limit-Dr.cursor;if(d())Dr.bra=Dr.cursor,Dr.slice_del();else if(Dr.cursor=Dr.limit-i,m())Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,W()&&(Dr.bra=Dr.cursor,Dr.slice_del(),K());else if(Dr.cursor=Dr.limit-i,!K())return!1;return!0}function N(r){if(Dr.ket=Dr.cursor,!z()&&(Dr.cursor=Dr.limit-r,!b()))return!1;var i=Dr.limit-Dr.cursor;return!(!m()&&(Dr.cursor=Dr.limit-i,!d()))&&(Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,W()&&(Dr.bra=Dr.cursor,Dr.slice_del(),K()),!0)}function O(){var r,i=Dr.limit-Dr.cursor;return Dr.ket=Dr.cursor,!(!w()&&(Dr.cursor=Dr.limit-i,!v()))&&(Dr.bra=Dr.cursor,Dr.slice_del(),r=Dr.limit-Dr.cursor,Dr.ket=Dr.cursor,!(!W()||(Dr.bra=Dr.cursor,Dr.slice_del(),!K()))||(Dr.cursor=Dr.limit-r,Dr.ket=Dr.cursor,!(a()||(Dr.cursor=Dr.limit-r,m()||(Dr.cursor=Dr.limit-r,K())))||(Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,W()&&(Dr.bra=Dr.cursor,Dr.slice_del(),K()),!0)))}function Q(){var r,i,e=Dr.limit-Dr.cursor;if(Dr.ket=Dr.cursor,!p()&&(Dr.cursor=Dr.limit-e,!f()&&(Dr.cursor=Dr.limit-e,!_())))return!1;if(Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,r=Dr.limit-Dr.cursor,a())Dr.bra=Dr.cursor,Dr.slice_del(),i=Dr.limit-Dr.cursor,Dr.ket=Dr.cursor,W()||(Dr.cursor=Dr.limit-i);else if(Dr.cursor=Dr.limit-r,!W())return!0;return Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,K(),!0}function R(){var r,i,e=Dr.limit-Dr.cursor;if(Dr.ket=Dr.cursor,W())return Dr.bra=Dr.cursor,Dr.slice_del(),void K();if(Dr.cursor=Dr.limit-e,Dr.ket=Dr.cursor,q())if(Dr.bra=Dr.cursor,Dr.slice_del(),r=Dr.limit-Dr.cursor,Dr.ket=Dr.cursor,d())Dr.bra=Dr.cursor,Dr.slice_del();else{if(Dr.cursor=Dr.limit-r,Dr.ket=Dr.cursor,!a()&&(Dr.cursor=Dr.limit-r,!m())){if(Dr.cursor=Dr.limit-r,Dr.ket=Dr.cursor,!W())return;if(Dr.bra=Dr.cursor,Dr.slice_del(),!K())return}Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,W()&&(Dr.bra=Dr.cursor,Dr.slice_del(),K())}else if(Dr.cursor=Dr.limit-e,!M(e)&&(Dr.cursor=Dr.limit-e,!N(e))){if(Dr.cursor=Dr.limit-e,Dr.ket=Dr.cursor,y())return Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,i=Dr.limit-Dr.cursor,void(a()?(Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,W()&&(Dr.bra=Dr.cursor,Dr.slice_del(),K())):(Dr.cursor=Dr.limit-i,W()?(Dr.bra=Dr.cursor,Dr.slice_del(),K()):(Dr.cursor=Dr.limit-i,K())));if(Dr.cursor=Dr.limit-e,!O()){if(Dr.cursor=Dr.limit-e,d())return Dr.bra=Dr.cursor,void Dr.slice_del();Dr.cursor=Dr.limit-e,K()||(Dr.cursor=Dr.limit-e,Q()||(Dr.cursor=Dr.limit-e,Dr.ket=Dr.cursor,(a()||(Dr.cursor=Dr.limit-e,m()))&&(Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,W()&&(Dr.bra=Dr.cursor,Dr.slice_del(),K()))))}}}function U(){var r;if(Dr.ket=Dr.cursor,r=Dr.find_among_b(Sr,4))switch(Dr.bra=Dr.cursor,r){case 1:Dr.slice_from("p");break;case 2:Dr.slice_from("ç");break;case 3:Dr.slice_from("t");break;case 4:Dr.slice_from("k")}}function V(){for(;;){var r=Dr.limit-Dr.cursor;if(Dr.in_grouping_b(Wr,97,305)){Dr.cursor=Dr.limit-r;break}if(Dr.cursor=Dr.limit-r,Dr.cursor<=Dr.limit_backward)return!1;Dr.cursor--}return!0}function X(r,i,e){if(Dr.cursor=Dr.limit-r,V()){var n=Dr.limit-Dr.cursor;if(!Dr.eq_s_b(1,i)&&(Dr.cursor=Dr.limit-n,!Dr.eq_s_b(1,e)))return!0;Dr.cursor=Dr.limit-r;var t=Dr.cursor;return Dr.insert(Dr.cursor,Dr.cursor,e),Dr.cursor=t,!1}return!0}function Y(){var r=Dr.limit-Dr.cursor;(Dr.eq_s_b(1,"d")||(Dr.cursor=Dr.limit-r,Dr.eq_s_b(1,"g")))&&X(r,"a","ı")&&X(r,"e","i")&&X(r,"o","u")&&X(r,"ö","ü")}function $(){for(var r,i=Dr.cursor,e=2;;){for(r=Dr.cursor;!Dr.in_grouping(Wr,97,305);){if(Dr.cursor>=Dr.limit)return Dr.cursor=r,!(e>0)&&(Dr.cursor=i,!0);Dr.cursor++}e--}}function rr(r,i,e){for(;!Dr.eq_s(i,e);){if(Dr.cursor>=Dr.limit)return!0;Dr.cursor++}return(tr=i)!=Dr.limit||(Dr.cursor=r,!1)}function ir(){var r=Dr.cursor;return!rr(r,2,"ad")||(Dr.cursor=r,!rr(r,5,"soyad"))}function er(){var r=Dr.cursor;return!ir()&&(Dr.limit_backward=r,Dr.cursor=Dr.limit,Y(),Dr.cursor=Dr.limit,U(),!0)}var nr,tr,ur=[new i("m",-1,-1),new i("n",-1,-1),new i("miz",-1,-1),new i("niz",-1,-1),new i("muz",-1,-1),new i("nuz",-1,-1),new i("müz",-1,-1),new i("nüz",-1,-1),new i("mız",-1,-1),new i("nız",-1,-1)],or=[new i("leri",-1,-1),new i("ları",-1,-1)],sr=[new i("ni",-1,-1),new i("nu",-1,-1),new i("nü",-1,-1),new i("nı",-1,-1)],cr=[new i("in",-1,-1),new i("un",-1,-1),new i("ün",-1,-1),new i("ın",-1,-1)],lr=[new i("a",-1,-1),new i("e",-1,-1)],ar=[new i("na",-1,-1),new i("ne",-1,-1)],mr=[new i("da",-1,-1),new i("ta",-1,-1),new i("de",-1,-1),new i("te",-1,-1)],dr=[new i("nda",-1,-1),new i("nde",-1,-1)],fr=[new i("dan",-1,-1),new i("tan",-1,-1),new i("den",-1,-1),new i("ten",-1,-1)],br=[new i("ndan",-1,-1),new i("nden",-1,-1)],wr=[new i("la",-1,-1),new i("le",-1,-1)],_r=[new i("ca",-1,-1),new i("ce",-1,-1)],kr=[new i("im",-1,-1),new i("um",-1,-1),new i("üm",-1,-1),new i("ım",-1,-1)],pr=[new i("sin",-1,-1),new i("sun",-1,-1),new i("sün",-1,-1),new i("sın",-1,-1)],gr=[new i("iz",-1,-1),new i("uz",-1,-1),new i("üz",-1,-1),new i("ız",-1,-1)],yr=[new i("siniz",-1,-1),new i("sunuz",-1,-1),new i("sünüz",-1,-1),new i("sınız",-1,-1)],zr=[new i("lar",-1,-1),new i("ler",-1,-1)],vr=[new i("niz",-1,-1),new i("nuz",-1,-1),new i("nüz",-1,-1),new i("nız",-1,-1)],hr=[new i("dir",-1,-1),new i("tir",-1,-1),new i("dur",-1,-1),new i("tur",-1,-1),new i("dür",-1,-1),new i("tür",-1,-1),new i("dır",-1,-1),new i("tır",-1,-1)],qr=[new i("casına",-1,-1),new i("cesine",-1,-1)],Cr=[new i("di",-1,-1),new i("ti",-1,-1),new i("dik",-1,-1),new i("tik",-1,-1),new i("duk",-1,-1),new i("tuk",-1,-1),new i("dük",-1,-1),new i("tük",-1,-1),new i("dık",-1,-1),new i("tık",-1,-1),new i("dim",-1,-1),new i("tim",-1,-1),new i("dum",-1,-1),new i("tum",-1,-1),new i("düm",-1,-1),new i("tüm",-1,-1),new i("dım",-1,-1),new i("tım",-1,-1),new i("din",-1,-1),new i("tin",-1,-1),new i("dun",-1,-1),new i("tun",-1,-1),new i("dün",-1,-1),new i("tün",-1,-1),new i("dın",-1,-1),new i("tın",-1,-1),new i("du",-1,-1),new i("tu",-1,-1),new i("dü",-1,-1),new i("tü",-1,-1),new i("dı",-1,-1),new i("tı",-1,-1)],Pr=[new i("sa",-1,-1),new i("se",-1,-1),new i("sak",-1,-1),new i("sek",-1,-1),new i("sam",-1,-1),new i("sem",-1,-1),new i("san",-1,-1),new i("sen",-1,-1)],Fr=[new i("miş",-1,-1),new i("muş",-1,-1),new i("müş",-1,-1),new i("mış",-1,-1)],Sr=[new i("b",-1,1),new i("c",-1,2),new i("d",-1,3),new i("ğ",-1,4)],Wr=[17,65,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,8,0,0,0,0,0,0,1],Lr=[1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1],xr=[1,64,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1],Ar=[17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130],Er=[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1],jr=[17],Tr=[65],Zr=[65],Br=[["a",xr,97,305],["e",Ar,101,252],["ı",Er,97,305],["i",jr,101,105],["o",Tr,111,117],["ö",Zr,246,252],["u",Tr,111,117]],Dr=new e;this.setCurrent=function(r){Dr.setCurrent(r)},this.getCurrent=function(){return Dr.getCurrent()},this.stem=function(){return!!($()&&(Dr.limit_backward=Dr.cursor,Dr.cursor=Dr.limit,J(),Dr.cursor=Dr.limit,nr&&(R(),Dr.cursor=Dr.limit_backward,er())))}};return function(r){return"function"==typeof r.update?r.update(function(r){return n.setCurrent(r),n.stem(),n.getCurrent()}):(n.setCurrent(r),n.stem(),n.getCurrent())}}(),r.Pipeline.registerFunction(r.tr.stemmer,"stemmer-tr"),r.tr.stopWordFilter=r.generateStopWordFilter("acaba altmış altı ama ancak arada aslında ayrıca bana bazı belki ben benden beni benim beri beş bile bin bir biri birkaç birkez birçok birşey birşeyi biz bizden bize bizi bizim bu buna bunda bundan bunlar bunları bunların bunu bunun burada böyle böylece da daha dahi de defa değil diye diğer doksan dokuz dolayı dolayısıyla dört edecek eden ederek edilecek ediliyor edilmesi ediyor elli en etmesi etti ettiği ettiğini eğer gibi göre halen hangi hatta hem henüz hep hepsi her herhangi herkesin hiç hiçbir iki ile ilgili ise itibaren itibariyle için işte kadar karşın katrilyon kendi kendilerine kendini kendisi kendisine kendisini kez ki kim kimden kime kimi kimse kırk milyar milyon mu mü mı nasıl ne neden nedenle nerde nerede nereye niye niçin o olan olarak oldu olduklarını olduğu olduğunu olmadı olmadığı olmak olması olmayan olmaz olsa olsun olup olur olursa oluyor on ona ondan onlar onlardan onları onların onu onun otuz oysa pek rağmen sadece sanki sekiz seksen sen senden seni senin siz sizden sizi sizin tarafından trilyon tüm var vardı ve veya ya yani yapacak yapmak yaptı yaptıkları yaptığı yaptığını yapılan yapılması yapıyor yedi yerine yetmiş yine yirmi yoksa yüz zaten çok çünkü öyle üzere üç şey şeyden şeyi şeyler şu şuna şunda şundan şunları şunu şöyle".split(" ")),r.Pipeline.registerFunction(r.tr.stopWordFilter,"stopWordFilter-tr")}});���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.vi.min.js�����������������0000664�0000000�0000000�00000001420�14753064456�0030530�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.vi=function(){this.pipeline.reset(),this.pipeline.add(e.vi.stopWordFilter,e.vi.trimmer)},e.vi.wordCharacters="[A-Za-ẓ̀͐́͑̉̃̓ÂâÊêÔôĂ-ăĐ-đƠ-ơƯ-ư]",e.vi.trimmer=e.trimmerSupport.generateTrimmer(e.vi.wordCharacters),e.Pipeline.registerFunction(e.vi.trimmer,"trimmer-vi"),e.vi.stopWordFilter=e.generateStopWordFilter("là cái nhưng mà".split(" "))}});������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/min/lunr.zh.min.js�����������������0000664�0000000�0000000�00000004156�14753064456�0030544�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r(require("@node-rs/jieba")):r()(e.lunr)}(this,function(e){return function(r,t){if(void 0===r)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===r.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");var i="2"==r.version[0];r.zh=function(){this.pipeline.reset(),this.pipeline.add(r.zh.trimmer,r.zh.stopWordFilter,r.zh.stemmer),i?this.tokenizer=r.zh.tokenizer:(r.tokenizer&&(r.tokenizer=r.zh.tokenizer),this.tokenizerFn&&(this.tokenizerFn=r.zh.tokenizer))},r.zh.tokenizer=function(n){if(!arguments.length||null==n||void 0==n)return[];if(Array.isArray(n))return n.map(function(e){return i?new r.Token(e.toLowerCase()):e.toLowerCase()});t&&e.load(t);var o=n.toString().trim().toLowerCase(),s=[];e.cut(o,!0).forEach(function(e){s=s.concat(e.split(" "))}),s=s.filter(function(e){return!!e});var u=0;return s.map(function(e,t){if(i){var n=o.indexOf(e,u),s={};return s.position=[n,e.length],s.index=t,u=n,new r.Token(e,s)}return e})},r.zh.wordCharacters="\\w一-龥",r.zh.trimmer=r.trimmerSupport.generateTrimmer(r.zh.wordCharacters),r.Pipeline.registerFunction(r.zh.trimmer,"trimmer-zh"),r.zh.stemmer=function(){return function(e){return e}}(),r.Pipeline.registerFunction(r.zh.stemmer,"stemmer-zh"),r.zh.stopWordFilter=r.generateStopWordFilter("的 一 不 在 人 有 是 为 為 以 于 於 上 他 而 后 後 之 来 來 及 了 因 下 可 到 由 这 這 与 與 也 此 但 并 並 个 個 其 已 无 無 小 我 们 們 起 最 再 今 去 好 只 又 或 很 亦 某 把 那 你 乃 它 吧 被 比 别 趁 当 當 从 從 得 打 凡 儿 兒 尔 爾 该 該 各 给 給 跟 和 何 还 還 即 几 幾 既 看 据 據 距 靠 啦 另 么 麽 每 嘛 拿 哪 您 凭 憑 且 却 卻 让 讓 仍 啥 如 若 使 谁 誰 虽 雖 随 隨 同 所 她 哇 嗡 往 些 向 沿 哟 喲 用 咱 则 則 怎 曾 至 致 着 著 诸 諸 自".split(" ")),r.Pipeline.registerFunction(r.zh.stopWordFilter,"stopWordFilter-zh")}});������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/tinyseg.js�������������������������0000664�0000000�0000000�00000054536�14753064456�0027270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/** * export the module via AMD, CommonJS or as a browser global * Export code from https://github.com/umdjs/umd/blob/master/returnExports.js */ ;(function (root, factory) { if (typeof define === 'function' && define.amd) { // AMD. Register as an anonymous module. define(factory) } else if (typeof exports === 'object') { /** * Node. Does not work with strict CommonJS, but * only CommonJS-like environments that support module.exports, * like Node. */ module.exports = factory() } else { // Browser globals (root is window) factory()(root.lunr); } }(this, function () { /** * Just return a value to define the module export. * This example returns an object, but the module * can return a function as the exported value. */ return function(lunr) { // TinySegmenter 0.1 -- Super compact Japanese tokenizer in Javascript // (c) 2008 Taku Kudo <taku@chasen.org> // TinySegmenter is freely distributable under the terms of a new BSD licence. // For details, see http://chasen.org/~taku/software/TinySegmenter/LICENCE.txt function TinySegmenter() { var patterns = { "[一二三四五六七八九十百千万億兆]":"M", "[一-龠々〆ヵヶ]":"H", "[ぁ-ん]":"I", "[ァ-ヴーア-ン゙ー]":"K", "[a-zA-Za-zA-Z]":"A", "[0-90-9]":"N" } this.chartype_ = []; for (var i in patterns) { var regexp = new RegExp(i); this.chartype_.push([regexp, patterns[i]]); } this.BIAS__ = -332 this.BC1__ = {"HH":6,"II":2461,"KH":406,"OH":-1378}; this.BC2__ = {"AA":-3267,"AI":2744,"AN":-878,"HH":-4070,"HM":-1711,"HN":4012,"HO":3761,"IA":1327,"IH":-1184,"II":-1332,"IK":1721,"IO":5492,"KI":3831,"KK":-8741,"MH":-3132,"MK":3334,"OO":-2920}; this.BC3__ = {"HH":996,"HI":626,"HK":-721,"HN":-1307,"HO":-836,"IH":-301,"KK":2762,"MK":1079,"MM":4034,"OA":-1652,"OH":266}; this.BP1__ = {"BB":295,"OB":304,"OO":-125,"UB":352}; this.BP2__ = {"BO":60,"OO":-1762}; this.BQ1__ = {"BHH":1150,"BHM":1521,"BII":-1158,"BIM":886,"BMH":1208,"BNH":449,"BOH":-91,"BOO":-2597,"OHI":451,"OIH":-296,"OKA":1851,"OKH":-1020,"OKK":904,"OOO":2965}; this.BQ2__ = {"BHH":118,"BHI":-1159,"BHM":466,"BIH":-919,"BKK":-1720,"BKO":864,"OHH":-1139,"OHM":-181,"OIH":153,"UHI":-1146}; this.BQ3__ = {"BHH":-792,"BHI":2664,"BII":-299,"BKI":419,"BMH":937,"BMM":8335,"BNN":998,"BOH":775,"OHH":2174,"OHM":439,"OII":280,"OKH":1798,"OKI":-793,"OKO":-2242,"OMH":-2402,"OOO":11699}; this.BQ4__ = {"BHH":-3895,"BIH":3761,"BII":-4654,"BIK":1348,"BKK":-1806,"BMI":-3385,"BOO":-12396,"OAH":926,"OHH":266,"OHK":-2036,"ONN":-973}; this.BW1__ = {",と":660,",同":727,"B1あ":1404,"B1同":542,"、と":660,"、同":727,"」と":1682,"あっ":1505,"いう":1743,"いっ":-2055,"いる":672,"うし":-4817,"うん":665,"から":3472,"がら":600,"こう":-790,"こと":2083,"こん":-1262,"さら":-4143,"さん":4573,"した":2641,"して":1104,"すで":-3399,"そこ":1977,"それ":-871,"たち":1122,"ため":601,"った":3463,"つい":-802,"てい":805,"てき":1249,"でき":1127,"です":3445,"では":844,"とい":-4915,"とみ":1922,"どこ":3887,"ない":5713,"なっ":3015,"など":7379,"なん":-1113,"にし":2468,"には":1498,"にも":1671,"に対":-912,"の一":-501,"の中":741,"ませ":2448,"まで":1711,"まま":2600,"まる":-2155,"やむ":-1947,"よっ":-2565,"れた":2369,"れで":-913,"をし":1860,"を見":731,"亡く":-1886,"京都":2558,"取り":-2784,"大き":-2604,"大阪":1497,"平方":-2314,"引き":-1336,"日本":-195,"本当":-2423,"毎日":-2113,"目指":-724,"B1あ":1404,"B1同":542,"」と":1682}; this.BW2__ = {"..":-11822,"11":-669,"――":-5730,"−−":-13175,"いう":-1609,"うか":2490,"かし":-1350,"かも":-602,"から":-7194,"かれ":4612,"がい":853,"がら":-3198,"きた":1941,"くな":-1597,"こと":-8392,"この":-4193,"させ":4533,"され":13168,"さん":-3977,"しい":-1819,"しか":-545,"した":5078,"して":972,"しな":939,"その":-3744,"たい":-1253,"たた":-662,"ただ":-3857,"たち":-786,"たと":1224,"たは":-939,"った":4589,"って":1647,"っと":-2094,"てい":6144,"てき":3640,"てく":2551,"ては":-3110,"ても":-3065,"でい":2666,"でき":-1528,"でし":-3828,"です":-4761,"でも":-4203,"とい":1890,"とこ":-1746,"とと":-2279,"との":720,"とみ":5168,"とも":-3941,"ない":-2488,"なが":-1313,"など":-6509,"なの":2614,"なん":3099,"にお":-1615,"にし":2748,"にな":2454,"によ":-7236,"に対":-14943,"に従":-4688,"に関":-11388,"のか":2093,"ので":-7059,"のに":-6041,"のの":-6125,"はい":1073,"はが":-1033,"はず":-2532,"ばれ":1813,"まし":-1316,"まで":-6621,"まれ":5409,"めて":-3153,"もい":2230,"もの":-10713,"らか":-944,"らし":-1611,"らに":-1897,"りし":651,"りま":1620,"れた":4270,"れて":849,"れば":4114,"ろう":6067,"われ":7901,"を通":-11877,"んだ":728,"んな":-4115,"一人":602,"一方":-1375,"一日":970,"一部":-1051,"上が":-4479,"会社":-1116,"出て":2163,"分の":-7758,"同党":970,"同日":-913,"大阪":-2471,"委員":-1250,"少な":-1050,"年度":-8669,"年間":-1626,"府県":-2363,"手権":-1982,"新聞":-4066,"日新":-722,"日本":-7068,"日米":3372,"曜日":-601,"朝鮮":-2355,"本人":-2697,"東京":-1543,"然と":-1384,"社会":-1276,"立て":-990,"第に":-1612,"米国":-4268,"11":-669}; this.BW3__ = {"あた":-2194,"あり":719,"ある":3846,"い.":-1185,"い。":-1185,"いい":5308,"いえ":2079,"いく":3029,"いた":2056,"いっ":1883,"いる":5600,"いわ":1527,"うち":1117,"うと":4798,"えと":1454,"か.":2857,"か。":2857,"かけ":-743,"かっ":-4098,"かに":-669,"から":6520,"かり":-2670,"が,":1816,"が、":1816,"がき":-4855,"がけ":-1127,"がっ":-913,"がら":-4977,"がり":-2064,"きた":1645,"けど":1374,"こと":7397,"この":1542,"ころ":-2757,"さい":-714,"さを":976,"し,":1557,"し、":1557,"しい":-3714,"した":3562,"して":1449,"しな":2608,"しま":1200,"す.":-1310,"す。":-1310,"する":6521,"ず,":3426,"ず、":3426,"ずに":841,"そう":428,"た.":8875,"た。":8875,"たい":-594,"たの":812,"たり":-1183,"たる":-853,"だ.":4098,"だ。":4098,"だっ":1004,"った":-4748,"って":300,"てい":6240,"てお":855,"ても":302,"です":1437,"でに":-1482,"では":2295,"とう":-1387,"とし":2266,"との":541,"とも":-3543,"どう":4664,"ない":1796,"なく":-903,"など":2135,"に,":-1021,"に、":-1021,"にし":1771,"にな":1906,"には":2644,"の,":-724,"の、":-724,"の子":-1000,"は,":1337,"は、":1337,"べき":2181,"まし":1113,"ます":6943,"まっ":-1549,"まで":6154,"まれ":-793,"らし":1479,"られ":6820,"るる":3818,"れ,":854,"れ、":854,"れた":1850,"れて":1375,"れば":-3246,"れる":1091,"われ":-605,"んだ":606,"んで":798,"カ月":990,"会議":860,"入り":1232,"大会":2217,"始め":1681,"市":965,"新聞":-5055,"日,":974,"日、":974,"社会":2024,"カ月":990}; this.TC1__ = {"AAA":1093,"HHH":1029,"HHM":580,"HII":998,"HOH":-390,"HOM":-331,"IHI":1169,"IOH":-142,"IOI":-1015,"IOM":467,"MMH":187,"OOI":-1832}; this.TC2__ = {"HHO":2088,"HII":-1023,"HMM":-1154,"IHI":-1965,"KKH":703,"OII":-2649}; this.TC3__ = {"AAA":-294,"HHH":346,"HHI":-341,"HII":-1088,"HIK":731,"HOH":-1486,"IHH":128,"IHI":-3041,"IHO":-1935,"IIH":-825,"IIM":-1035,"IOI":-542,"KHH":-1216,"KKA":491,"KKH":-1217,"KOK":-1009,"MHH":-2694,"MHM":-457,"MHO":123,"MMH":-471,"NNH":-1689,"NNO":662,"OHO":-3393}; this.TC4__ = {"HHH":-203,"HHI":1344,"HHK":365,"HHM":-122,"HHN":182,"HHO":669,"HIH":804,"HII":679,"HOH":446,"IHH":695,"IHO":-2324,"IIH":321,"III":1497,"IIO":656,"IOO":54,"KAK":4845,"KKA":3386,"KKK":3065,"MHH":-405,"MHI":201,"MMH":-241,"MMM":661,"MOM":841}; this.TQ1__ = {"BHHH":-227,"BHHI":316,"BHIH":-132,"BIHH":60,"BIII":1595,"BNHH":-744,"BOHH":225,"BOOO":-908,"OAKK":482,"OHHH":281,"OHIH":249,"OIHI":200,"OIIH":-68}; this.TQ2__ = {"BIHH":-1401,"BIII":-1033,"BKAK":-543,"BOOO":-5591}; this.TQ3__ = {"BHHH":478,"BHHM":-1073,"BHIH":222,"BHII":-504,"BIIH":-116,"BIII":-105,"BMHI":-863,"BMHM":-464,"BOMH":620,"OHHH":346,"OHHI":1729,"OHII":997,"OHMH":481,"OIHH":623,"OIIH":1344,"OKAK":2792,"OKHH":587,"OKKA":679,"OOHH":110,"OOII":-685}; this.TQ4__ = {"BHHH":-721,"BHHM":-3604,"BHII":-966,"BIIH":-607,"BIII":-2181,"OAAA":-2763,"OAKK":180,"OHHH":-294,"OHHI":2446,"OHHO":480,"OHIH":-1573,"OIHH":1935,"OIHI":-493,"OIIH":626,"OIII":-4007,"OKAK":-8156}; this.TW1__ = {"につい":-4681,"東京都":2026}; this.TW2__ = {"ある程":-2049,"いった":-1256,"ころが":-2434,"しょう":3873,"その後":-4430,"だって":-1049,"ていた":1833,"として":-4657,"ともに":-4517,"もので":1882,"一気に":-792,"初めて":-1512,"同時に":-8097,"大きな":-1255,"対して":-2721,"社会党":-3216}; this.TW3__ = {"いただ":-1734,"してい":1314,"として":-4314,"につい":-5483,"にとっ":-5989,"に当た":-6247,"ので,":-727,"ので、":-727,"のもの":-600,"れから":-3752,"十二月":-2287}; this.TW4__ = {"いう.":8576,"いう。":8576,"からな":-2348,"してい":2958,"たが,":1516,"たが、":1516,"ている":1538,"という":1349,"ました":5543,"ません":1097,"ようと":-4258,"よると":5865}; this.UC1__ = {"A":484,"K":93,"M":645,"O":-505}; this.UC2__ = {"A":819,"H":1059,"I":409,"M":3987,"N":5775,"O":646}; this.UC3__ = {"A":-1370,"I":2311}; this.UC4__ = {"A":-2643,"H":1809,"I":-1032,"K":-3450,"M":3565,"N":3876,"O":6646}; this.UC5__ = {"H":313,"I":-1238,"K":-799,"M":539,"O":-831}; this.UC6__ = {"H":-506,"I":-253,"K":87,"M":247,"O":-387}; this.UP1__ = {"O":-214}; this.UP2__ = {"B":69,"O":935}; this.UP3__ = {"B":189}; this.UQ1__ = {"BH":21,"BI":-12,"BK":-99,"BN":142,"BO":-56,"OH":-95,"OI":477,"OK":410,"OO":-2422}; this.UQ2__ = {"BH":216,"BI":113,"OK":1759}; this.UQ3__ = {"BA":-479,"BH":42,"BI":1913,"BK":-7198,"BM":3160,"BN":6427,"BO":14761,"OI":-827,"ON":-3212}; this.UW1__ = {",":156,"、":156,"「":-463,"あ":-941,"う":-127,"が":-553,"き":121,"こ":505,"で":-201,"と":-547,"ど":-123,"に":-789,"の":-185,"は":-847,"も":-466,"や":-470,"よ":182,"ら":-292,"り":208,"れ":169,"を":-446,"ん":-137,"・":-135,"主":-402,"京":-268,"区":-912,"午":871,"国":-460,"大":561,"委":729,"市":-411,"日":-141,"理":361,"生":-408,"県":-386,"都":-718,"「":-463,"・":-135}; this.UW2__ = {",":-829,"、":-829,"〇":892,"「":-645,"」":3145,"あ":-538,"い":505,"う":134,"お":-502,"か":1454,"が":-856,"く":-412,"こ":1141,"さ":878,"ざ":540,"し":1529,"す":-675,"せ":300,"そ":-1011,"た":188,"だ":1837,"つ":-949,"て":-291,"で":-268,"と":-981,"ど":1273,"な":1063,"に":-1764,"の":130,"は":-409,"ひ":-1273,"べ":1261,"ま":600,"も":-1263,"や":-402,"よ":1639,"り":-579,"る":-694,"れ":571,"を":-2516,"ん":2095,"ア":-587,"カ":306,"キ":568,"ッ":831,"三":-758,"不":-2150,"世":-302,"中":-968,"主":-861,"事":492,"人":-123,"会":978,"保":362,"入":548,"初":-3025,"副":-1566,"北":-3414,"区":-422,"大":-1769,"天":-865,"太":-483,"子":-1519,"学":760,"実":1023,"小":-2009,"市":-813,"年":-1060,"強":1067,"手":-1519,"揺":-1033,"政":1522,"文":-1355,"新":-1682,"日":-1815,"明":-1462,"最":-630,"朝":-1843,"本":-1650,"東":-931,"果":-665,"次":-2378,"民":-180,"気":-1740,"理":752,"発":529,"目":-1584,"相":-242,"県":-1165,"立":-763,"第":810,"米":509,"自":-1353,"行":838,"西":-744,"見":-3874,"調":1010,"議":1198,"込":3041,"開":1758,"間":-1257,"「":-645,"」":3145,"ッ":831,"ア":-587,"カ":306,"キ":568}; this.UW3__ = {",":4889,"1":-800,"−":-1723,"、":4889,"々":-2311,"〇":5827,"」":2670,"〓":-3573,"あ":-2696,"い":1006,"う":2342,"え":1983,"お":-4864,"か":-1163,"が":3271,"く":1004,"け":388,"げ":401,"こ":-3552,"ご":-3116,"さ":-1058,"し":-395,"す":584,"せ":3685,"そ":-5228,"た":842,"ち":-521,"っ":-1444,"つ":-1081,"て":6167,"で":2318,"と":1691,"ど":-899,"な":-2788,"に":2745,"の":4056,"は":4555,"ひ":-2171,"ふ":-1798,"へ":1199,"ほ":-5516,"ま":-4384,"み":-120,"め":1205,"も":2323,"や":-788,"よ":-202,"ら":727,"り":649,"る":5905,"れ":2773,"わ":-1207,"を":6620,"ん":-518,"ア":551,"グ":1319,"ス":874,"ッ":-1350,"ト":521,"ム":1109,"ル":1591,"ロ":2201,"ン":278,"・":-3794,"一":-1619,"下":-1759,"世":-2087,"両":3815,"中":653,"主":-758,"予":-1193,"二":974,"人":2742,"今":792,"他":1889,"以":-1368,"低":811,"何":4265,"作":-361,"保":-2439,"元":4858,"党":3593,"全":1574,"公":-3030,"六":755,"共":-1880,"円":5807,"再":3095,"分":457,"初":2475,"別":1129,"前":2286,"副":4437,"力":365,"動":-949,"務":-1872,"化":1327,"北":-1038,"区":4646,"千":-2309,"午":-783,"協":-1006,"口":483,"右":1233,"各":3588,"合":-241,"同":3906,"和":-837,"員":4513,"国":642,"型":1389,"場":1219,"外":-241,"妻":2016,"学":-1356,"安":-423,"実":-1008,"家":1078,"小":-513,"少":-3102,"州":1155,"市":3197,"平":-1804,"年":2416,"広":-1030,"府":1605,"度":1452,"建":-2352,"当":-3885,"得":1905,"思":-1291,"性":1822,"戸":-488,"指":-3973,"政":-2013,"教":-1479,"数":3222,"文":-1489,"新":1764,"日":2099,"旧":5792,"昨":-661,"時":-1248,"曜":-951,"最":-937,"月":4125,"期":360,"李":3094,"村":364,"東":-805,"核":5156,"森":2438,"業":484,"氏":2613,"民":-1694,"決":-1073,"法":1868,"海":-495,"無":979,"物":461,"特":-3850,"生":-273,"用":914,"町":1215,"的":7313,"直":-1835,"省":792,"県":6293,"知":-1528,"私":4231,"税":401,"立":-960,"第":1201,"米":7767,"系":3066,"約":3663,"級":1384,"統":-4229,"総":1163,"線":1255,"者":6457,"能":725,"自":-2869,"英":785,"見":1044,"調":-562,"財":-733,"費":1777,"車":1835,"軍":1375,"込":-1504,"通":-1136,"選":-681,"郎":1026,"郡":4404,"部":1200,"金":2163,"長":421,"開":-1432,"間":1302,"関":-1282,"雨":2009,"電":-1045,"非":2066,"駅":1620,"1":-800,"」":2670,"・":-3794,"ッ":-1350,"ア":551,"グ":1319,"ス":874,"ト":521,"ム":1109,"ル":1591,"ロ":2201,"ン":278}; this.UW4__ = {",":3930,".":3508,"―":-4841,"、":3930,"。":3508,"〇":4999,"「":1895,"」":3798,"〓":-5156,"あ":4752,"い":-3435,"う":-640,"え":-2514,"お":2405,"か":530,"が":6006,"き":-4482,"ぎ":-3821,"く":-3788,"け":-4376,"げ":-4734,"こ":2255,"ご":1979,"さ":2864,"し":-843,"じ":-2506,"す":-731,"ず":1251,"せ":181,"そ":4091,"た":5034,"だ":5408,"ち":-3654,"っ":-5882,"つ":-1659,"て":3994,"で":7410,"と":4547,"な":5433,"に":6499,"ぬ":1853,"ね":1413,"の":7396,"は":8578,"ば":1940,"ひ":4249,"び":-4134,"ふ":1345,"へ":6665,"べ":-744,"ほ":1464,"ま":1051,"み":-2082,"む":-882,"め":-5046,"も":4169,"ゃ":-2666,"や":2795,"ょ":-1544,"よ":3351,"ら":-2922,"り":-9726,"る":-14896,"れ":-2613,"ろ":-4570,"わ":-1783,"を":13150,"ん":-2352,"カ":2145,"コ":1789,"セ":1287,"ッ":-724,"ト":-403,"メ":-1635,"ラ":-881,"リ":-541,"ル":-856,"ン":-3637,"・":-4371,"ー":-11870,"一":-2069,"中":2210,"予":782,"事":-190,"井":-1768,"人":1036,"以":544,"会":950,"体":-1286,"作":530,"側":4292,"先":601,"党":-2006,"共":-1212,"内":584,"円":788,"初":1347,"前":1623,"副":3879,"力":-302,"動":-740,"務":-2715,"化":776,"区":4517,"協":1013,"参":1555,"合":-1834,"和":-681,"員":-910,"器":-851,"回":1500,"国":-619,"園":-1200,"地":866,"場":-1410,"塁":-2094,"士":-1413,"多":1067,"大":571,"子":-4802,"学":-1397,"定":-1057,"寺":-809,"小":1910,"屋":-1328,"山":-1500,"島":-2056,"川":-2667,"市":2771,"年":374,"庁":-4556,"後":456,"性":553,"感":916,"所":-1566,"支":856,"改":787,"政":2182,"教":704,"文":522,"方":-856,"日":1798,"時":1829,"最":845,"月":-9066,"木":-485,"来":-442,"校":-360,"業":-1043,"氏":5388,"民":-2716,"気":-910,"沢":-939,"済":-543,"物":-735,"率":672,"球":-1267,"生":-1286,"産":-1101,"田":-2900,"町":1826,"的":2586,"目":922,"省":-3485,"県":2997,"空":-867,"立":-2112,"第":788,"米":2937,"系":786,"約":2171,"経":1146,"統":-1169,"総":940,"線":-994,"署":749,"者":2145,"能":-730,"般":-852,"行":-792,"規":792,"警":-1184,"議":-244,"谷":-1000,"賞":730,"車":-1481,"軍":1158,"輪":-1433,"込":-3370,"近":929,"道":-1291,"選":2596,"郎":-4866,"都":1192,"野":-1100,"銀":-2213,"長":357,"間":-2344,"院":-2297,"際":-2604,"電":-878,"領":-1659,"題":-792,"館":-1984,"首":1749,"高":2120,"「":1895,"」":3798,"・":-4371,"ッ":-724,"ー":-11870,"カ":2145,"コ":1789,"セ":1287,"ト":-403,"メ":-1635,"ラ":-881,"リ":-541,"ル":-856,"ン":-3637}; this.UW5__ = {",":465,".":-299,"1":-514,"E2":-32768,"]":-2762,"、":465,"。":-299,"「":363,"あ":1655,"い":331,"う":-503,"え":1199,"お":527,"か":647,"が":-421,"き":1624,"ぎ":1971,"く":312,"げ":-983,"さ":-1537,"し":-1371,"す":-852,"だ":-1186,"ち":1093,"っ":52,"つ":921,"て":-18,"で":-850,"と":-127,"ど":1682,"な":-787,"に":-1224,"の":-635,"は":-578,"べ":1001,"み":502,"め":865,"ゃ":3350,"ょ":854,"り":-208,"る":429,"れ":504,"わ":419,"を":-1264,"ん":327,"イ":241,"ル":451,"ン":-343,"中":-871,"京":722,"会":-1153,"党":-654,"務":3519,"区":-901,"告":848,"員":2104,"大":-1296,"学":-548,"定":1785,"嵐":-1304,"市":-2991,"席":921,"年":1763,"思":872,"所":-814,"挙":1618,"新":-1682,"日":218,"月":-4353,"査":932,"格":1356,"機":-1508,"氏":-1347,"田":240,"町":-3912,"的":-3149,"相":1319,"省":-1052,"県":-4003,"研":-997,"社":-278,"空":-813,"統":1955,"者":-2233,"表":663,"語":-1073,"議":1219,"選":-1018,"郎":-368,"長":786,"間":1191,"題":2368,"館":-689,"1":-514,"E2":-32768,"「":363,"イ":241,"ル":451,"ン":-343}; this.UW6__ = {",":227,".":808,"1":-270,"E1":306,"、":227,"。":808,"あ":-307,"う":189,"か":241,"が":-73,"く":-121,"こ":-200,"じ":1782,"す":383,"た":-428,"っ":573,"て":-1014,"で":101,"と":-105,"な":-253,"に":-149,"の":-417,"は":-236,"も":-206,"り":187,"る":-135,"を":195,"ル":-673,"ン":-496,"一":-277,"中":201,"件":-800,"会":624,"前":302,"区":1792,"員":-1212,"委":798,"学":-960,"市":887,"広":-695,"後":535,"業":-697,"相":753,"社":-507,"福":974,"空":-822,"者":1811,"連":463,"郎":1082,"1":-270,"E1":306,"ル":-673,"ン":-496}; return this; } TinySegmenter.prototype.ctype_ = function(str) { for (var i in this.chartype_) { if (str.match(this.chartype_[i][0])) { return this.chartype_[i][1]; } } return "O"; } TinySegmenter.prototype.ts_ = function(v) { if (v) { return v; } return 0; } TinySegmenter.prototype.segment = function(input) { if (input == null || input == undefined || input == "") { return []; } var result = []; var seg = ["B3","B2","B1"]; var ctype = ["O","O","O"]; var o = input.split(""); for (i = 0; i < o.length; ++i) { seg.push(o[i]); ctype.push(this.ctype_(o[i])) } seg.push("E1"); seg.push("E2"); seg.push("E3"); ctype.push("O"); ctype.push("O"); ctype.push("O"); var word = seg[3]; var p1 = "U"; var p2 = "U"; var p3 = "U"; for (var i = 4; i < seg.length - 3; ++i) { var score = this.BIAS__; var w1 = seg[i-3]; var w2 = seg[i-2]; var w3 = seg[i-1]; var w4 = seg[i]; var w5 = seg[i+1]; var w6 = seg[i+2]; var c1 = ctype[i-3]; var c2 = ctype[i-2]; var c3 = ctype[i-1]; var c4 = ctype[i]; var c5 = ctype[i+1]; var c6 = ctype[i+2]; score += this.ts_(this.UP1__[p1]); score += this.ts_(this.UP2__[p2]); score += this.ts_(this.UP3__[p3]); score += this.ts_(this.BP1__[p1 + p2]); score += this.ts_(this.BP2__[p2 + p3]); score += this.ts_(this.UW1__[w1]); score += this.ts_(this.UW2__[w2]); score += this.ts_(this.UW3__[w3]); score += this.ts_(this.UW4__[w4]); score += this.ts_(this.UW5__[w5]); score += this.ts_(this.UW6__[w6]); score += this.ts_(this.BW1__[w2 + w3]); score += this.ts_(this.BW2__[w3 + w4]); score += this.ts_(this.BW3__[w4 + w5]); score += this.ts_(this.TW1__[w1 + w2 + w3]); score += this.ts_(this.TW2__[w2 + w3 + w4]); score += this.ts_(this.TW3__[w3 + w4 + w5]); score += this.ts_(this.TW4__[w4 + w5 + w6]); score += this.ts_(this.UC1__[c1]); score += this.ts_(this.UC2__[c2]); score += this.ts_(this.UC3__[c3]); score += this.ts_(this.UC4__[c4]); score += this.ts_(this.UC5__[c5]); score += this.ts_(this.UC6__[c6]); score += this.ts_(this.BC1__[c2 + c3]); score += this.ts_(this.BC2__[c3 + c4]); score += this.ts_(this.BC3__[c4 + c5]); score += this.ts_(this.TC1__[c1 + c2 + c3]); score += this.ts_(this.TC2__[c2 + c3 + c4]); score += this.ts_(this.TC3__[c3 + c4 + c5]); score += this.ts_(this.TC4__[c4 + c5 + c6]); // score += this.ts_(this.TC5__[c4 + c5 + c6]); score += this.ts_(this.UQ1__[p1 + c1]); score += this.ts_(this.UQ2__[p2 + c2]); score += this.ts_(this.UQ3__[p3 + c3]); score += this.ts_(this.BQ1__[p2 + c2 + c3]); score += this.ts_(this.BQ2__[p2 + c3 + c4]); score += this.ts_(this.BQ3__[p3 + c2 + c3]); score += this.ts_(this.BQ4__[p3 + c3 + c4]); score += this.ts_(this.TQ1__[p2 + c1 + c2 + c3]); score += this.ts_(this.TQ2__[p2 + c2 + c3 + c4]); score += this.ts_(this.TQ3__[p3 + c1 + c2 + c3]); score += this.ts_(this.TQ4__[p3 + c2 + c3 + c4]); var p = "O"; if (score > 0) { result.push(word); word = ""; p = "B"; } p1 = p2; p2 = p3; p3 = p; word += seg[i]; } result.push(word); return result; } lunr.TinySegmenter = TinySegmenter; }; }));������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/lunr/wordcut.js�������������������������0000664�0000000�0000000�00002453127�14753064456�0027276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}(g.lunr || (g.lunr = {})).wordcut = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ var _ = require("underscore"); var Acceptors = { creators: null, current: null, tag: null, init: function() { this.creators = []; this.current = []; this.tag = {}; }, reset: function() { this.current = []; this.tag = {} }, transit: function(ch) { var self = this; self.creators.forEach(function(creator) { var acceptor = creator.createAcceptor(self.tag); if (acceptor) self.current.push(acceptor); }); var _current = []; self.tag = {}; for (var i = 0; i < self.current.length; i++) { var _acceptor = self.current[i] , acceptor = _acceptor.transit(ch); if (!acceptor.isError) { _current.push(acceptor); self.tag[acceptor.tag] = acceptor; } } self.current = _current; }, getFinalAcceptors: function() { return this.current.filter(function(acceptor) { return acceptor.isFinal; }); } }; module.exports = function() { var acceptors = _.clone(Acceptors); acceptors.init(); return acceptors; }; },{"underscore":25}],2:[function(require,module,exports){ (function (__dirname){ var LEFT = 0; var RIGHT = 1; var path = require("path"); var glob = require("glob"); var WordcutDict = { init: function (dictPathFile, withDefault, words) { withDefault = withDefault || false var defaultDict = path.normalize(__dirname + "/..") + "/data/tdict-*.txt"; this.dict=[] var dictPathIsDefined = dictPathFile !== undefined var dictPath = (withDefault || !dictPathIsDefined) ? [defaultDict]: []; var dictPathFile = dictPathFile || defaultDict if(dictPathIsDefined){ if (Array.isArray(dictPathFile)) { dictPath.concat.apply(dictPath, dictPathFile); } else { dictPath.push(dictPathFile) } } this.addFiles(dictPath, false) if(words!==undefined){ this.addWords(words, false) } this.finalizeDict(); }, addWords: function(words, finalize){ finalize = finalize===undefined || finalize; this.dict.push.apply(this.dict, words) if(finalize){ this.finalizeDict(); } }, finalizeDict: function(){ this.dict = this.sortuniq(this.dict); }, addFiles: function(files, finalize){ finalize = finalize===undefined || finalize; for (var i = 0; i < 1; i++) { var words = "ก.ก.\nก.ก.น.\nก.ข.ค.\nก.ค.\nก.จ.\nก.ช.น.\nก.ฌ.\nก.ต.\nก.ต.ง.\nก.ต.ช.\nก.ตร.\nก.ท.\nก.น.ช.\nก.บช.\nก.บถ.\nก.ป.ส.\nก.พ.\nก.ม.\nก.ย.\nก.ร.\nก.ล.ต.\nก.ว.\nก.ศ.ว.\nก.ส.ท.\nก.ส.ธ.\nก.ส.อ.\nก.อ.\nกก.ตชด.\nกก.ตร.น.\nกก.ภ.จว.\nกก.รสช.\nกกบ.ขส.ทบ.\nกกล.รพน.\nกง.กห.\nกง.ทบ.\nกง.ทร.\nกซข.ป.\nกซม.ป.\nกทม.กรุงเทพมหานคร\nกบ.ทบ.\nกป.สป.\nกพ.ทบ.\nกพ.ทร.\nกพ.ทหาร\nกร.ทบ.\nกรป.กลาง\nกรอ.พอ.\nกศ.ด.\nกศ.บ.\nกศ.บป.\nกศ.ม.\nกษ.ด.\nกษ.บ.\nกษ.ม.\nกส.ด.\nกส.ทบ.\nกส.บ.\nกส.ม.\nกอ.ปค.\nกอ.รพน.\nกอ.รมน.\nกอ.รสต.\nข.ต.ว.\nขว.ทบ.\nขว.ทร.\nขว.ทหาร\nขส.ทบ.\nขส.ทร.\nขส.ทอ.\nค.ด.\nค.บ.\nค.พ.ศ.\nค.ม.\nค.ร.น.\nค.ร.ฟ.\nค.ร.ม.\nค.ศ.\nค.อ.ด.\nค.อ.บ.\nค.อ.ม.\nคศ.ด.\nคศ.บ.\nคศ.ม.\nง.ด.\nจ.จ.\nจ.จ.จ.\nจ.ช.\nจ.ต.\nจ.ท.\nจ.ป.ร.\nจ.ม.\nจ.ศ.\nจ.ส.ต.\nจ.ส.ท.\nจ.ส.อ.\nจ.อ.\nจ.อ.ร.\nจ.๑๘\nจก.ธน.\nจก.สน.\nช.ค.\nช.ค.บ.\nช.พ.ค.\nช.ส.\nช.ส.ค.\nฌ.ป.ค.\nฌ.ศ.ร.\nฌ.ส.อ.\nฐท.สห.\nด.ช.\nด.ญ.\nด.ต.\nด.ศ.ค.\nด.ศ.ร.\nดย.ทร.\nต.ก.\nต.ค.\nต.จ.\nต.จ.ว.\nต.ช.\nต.ต.\nต.บ.\nต.ม.\nต.ร.\nต.ศ.ร.\nต.ห.\nต.อ.\nต.อ.จ.\nตร.กม.\nตร.ซม.\nตร.ต.\nตร.ทล.\nตร.น.\nตร.ปม.\nตร.ภ.\nตร.ม.\nตร.รฟ.\nตร.ว.\nตร.ส.\nตร.สข.\nท.จ.\nท.จ.ว.\nท.ช.\nท.ญ.\nท.ด.\nท.ท.ท.\nท.ทบ.\nท.บ.\nท.พ.\nท.ม.\nท.ศ.\nทก.ด.\nทก.บ.\nทก.ม.\nทส.ปช.\nทส.รมว.กห.\nทุ.ส.นิ.ม.\nธ.ก.ส.\nธ.ค.\nธ.ญ\nธ.บ.\nน.ช.\nน.ญ.\nน.ด.\nน.ต.\nน.ท.\nน.น.\nน.บ.\nน.บ.ท.\nน.ป.ท.\nน.พ.\nน.ม.\nน.ร.\nน.ว.\nน.ศ.\nน.ส.\nน.ส.พ.\nน.ส.๓\nน.สพ.\nน.อ.\nนปพ.ภ.\nนศ.ด.\nนศ.บ.\nนศ.ม.\nบ.ก.\nบ.ข.ส.\nบ.ช.\nบ.ด.ท.\nบ.ตร.\nบ.ภ.\nบ.ม.\nบก.จร.\nบก.ตชด.\nบก.ตม.\nบก.ทล.\nบก.น.\nบก.ป.\nบก.ปค.\nบก.ปม.\nบก.ภ.เขต\nบก.รน.\nบก.รฟ.\nบก.ร้อย.ตชด.\nบก.ส.\nบกข.ป.\nบจพ.ป.\nบช.ก.\nบช.ด.\nบช.ตชด.\nบช.น.\nบช.บ.\nบช.ปส.\nบช.ภ.\nบช.ม.\nบชท.ป.\nบชน.ป.\nบชส.ป.\nบธ.ด.\nบธ.บ.\nบธ.ม.\nบนท.ป.\nบนอ.ป.\nบปช.ป.\nป.กท.\nป.กศ.\nป.กศ.สูง\nป.จ.\nป.จ.ว.\nป.ช.\nป.ธ.\nป.ป.\nป.ป.ก.\nป.ป.ช.\nป.ป.ป.\nป.ป.ร.\nป.ป.ส.\nป.พ.\nป.พ.พ.\nป.พย.\nป.ม.\nป.ม.ก.\nป.ม.ช.\nป.ม.ธ.\nป.ม.ศ.\nป.ม.อ.\nป.ร.ร.๔\nป.ร.ร.๕\nป.ร.ร.๖\nป.ล.\nป.ว.พ.\nป.วิ.อ.\nป.ส.ส.\nป.อ.\nป.อ.ร.ส.\nป.๑\nปม.วส.\nปอ.พ.\nผกก.ภ.\nผช.ผอ.\nผต.มท.\nผบ.ตร.\nผบ.ทบ.\nผบ.ทร.\nผบ.ทสส.\nผบ.ทอ.\nผบก.น.\nผบก.ป.\nผบก.ปค.\nผบก.ปม.\nผบก.ภ.\nผบช.ก.\nผบช.ตชด.\nผบช.น.\nผบช.ภ.\nผว.กทม.\nผอ.ปจ.\nพ.ก.ง.\nพ.กศ.\nพ.ข.ต.\nพ.ค.\nพ.ค.ช.\nพ.ค.ว.\nพ.ค.ศ.\nพ.จ.ต.\nพ.จ.ท.\nพ.จ.อ.\nพ.ช.\nพ.ช.ค.\nพ.ด.\nพ.ต.\nพ.ต.ต.\nพ.ต.ท.\nพ.ต.อ.\nพ.ต.อ.พิเศษ\nพ.ท.\nพ.บ.\nพ.ป.\nพ.ภ.ม.\nพ.ม.\nพ.ม.ช.\nพ.ย.\nพ.ร.ก.\nพ.ร.ฎ.\nพ.ร.ต.\nพ.ร.ธ.\nพ.ร.บ.\nพ.ศ.\nพ.ศ.บ.\nพ.ส.ร.\nพ.ส.ล.\nพ.อ.\nพ.อ.ต.\nพ.อ.ท.\nพ.อ.พิเศษ\nพ.อ.อ.\nพณ.ด.\nพณ.บ.\nพณ.ม.\nพธ.ด.\nพธ.บ.\nพธ.ม.\nพบ.ด.\nพบ.บ.\nพบ.ม.\nพย.ด.\nพย.บ.\nพย.ม.\nพล.จ.\nพล.ต.\nพล.ต.จ.\nพล.ต.ต.\nพล.ต.ท.\nพล.ต.อ.\nพล.ท.\nพล.ปตอ.\nพล.ม.\nพล.ม.๒\nพล.ร.จ.\nพล.ร.ต.\nพล.ร.ท.\nพล.ร.อ.\nพล.อ.\nพล.อ.จ.\nพล.อ.ต.\nพล.อ.ท.\nพล.อ.อ.\nพลา.ทร.\nพศ.ด.\nพศ.บ.\nพศ.ม.\nพอ.สว.\nภ.ง.ด.\nภ.ง.ด.๙\nภ.ด.\nภ.บ.\nภ.บ.ท.๕\nภ.ป.ร.\nภ.พ.\nภ.ม.\nภ.สถ.บ.\nม.ค.\nม.จ.\nม.ป.ท.\nม.ป.ป.\nม.ป.พ.\nม.ร.ว.\nม.ศ.\nม.อ.\nม.อ.ปัตตานี\nมิ.ย.\nมี.ค.\nยศ.ทบ.\nยศ.ทร.\nยศ.ทอ.\nร.ง.\nร.ด.\nร.ต.\nร.ต.ต.\nร.ต.ท.\nร.ต.อ.\nร.ท.\nร.น.\nร.บ.\nร.พ.\nร.ฟ.ล.\nร.ย.ล.\nร.ย.ส.ท.\nร.ล.\nร.ศ.\nร.ส.พ.\nร.อ.\nรป.ม.\nรร.จปร.\nรร.จอ.\nรร.ชท.\nรร.ตท.\nรร.นร.\nรร.นรต.\nรร.นอ.\nล.ญ.\nล.ว.\nลส.ชบ.\nว.ค.\nว.ฉ.\nว.ช.\nว.ด.ป.\nว.ป.ถ.\nวท.บ.\nศ.บ.\nศ.ป.ก.\nศ.ศ.ป.\nศฝร.ภ.\nศศ.บ.\nศษ.บ.\nศส.บ.\nส.ก.\nส.ก.ศ.ท.\nส.ค.\nส.ค.1\nส.ค.ร.\nส.ค.ส.\nส.ต.\nส.ต.ต.\nส.ต.ท.\nส.ต.อ.\nส.ท.\nส.ทร.\nส.ป.ช.\nส.ป.ส.ท.\nส.ป.อ.\nส.ร.\nส.ล.น.\nส.ว.\nส.ว.ท.\nส.ว.ส.ท.\nส.ส.\nส.ส.ท.\nส.ส.ร.\nส.ห.\nส.อ.\nสถ.บ.\nสนง.สสอ.\nสพ.ญ.\nสพ.บ.\nสว.จร.\nสว.ธร.\nสว.ส.\nสว.สป.\nสว.สส.\nสว.อก.\nสส.บ.\nสุ.จิ.ปุ.ลิ.\nห.ร.ม.\nอ.ก.ค.\nอ.ก.จ.\nอ.จ.\nอ.ช.พ.\nอ.ตร.\nอ.บ.\nอ.ส.ท.\nอ.ส.ม.ท.\nอ.ส.ย.\nอ.อ.ป.\nอส.รด.\nอุ.อา.ก.ส.\nฮ.จ.\nฮ.ท.\nฮ.ฝ.\nฮ.ล.\nฮ.ศ.\nเม.ย.\n\nกรีนิช\nกลันตัน\nกัลกัตตา\nกัวลาลัมเปอร์\nกัศมีร์\nกาฐมาณฑุ\nโกลกาตา\nควิเบก\nคอนเนตทิคัต\nคาบูล\nคุชราต\nคุนหมิง\nเคนตักกี\nเคนทักกี\nเคมบริดจ์\nแคชเมียร์\nแคนซัส\nแคนเบอร์รา\nแคโรไลนา\nแคลิฟอร์เนีย\nโคเปนเฮเกน\nโคลัมโบ\nโคโลราโด\nไครสต์เชิร์ช\nไคโร\nจาการ์ตา\nจำปาศักดิ์\nเจนไน\nเจนีวา\nเจ้อเจียง\nฉงชิ่ง\nเฉิงตู\nชานตง\nชิคาโก\nเชนไน\nเชอร์โนบิล\nซัปโปโร\nซานมารีโน\nซาบาห์\nซาราเยโว\nซาราวัก\nซิดนีย์\nซีอาน\nซีแอตเทิล\nซูริก\nซูริค\nเซเชลส์\nเซนได\nเซี่ยงไฮ้\nโซเฟีย\nโซล\nโซโลมอน\nไซ่ง่อน\nไซบีเรีย\nดัลลัส\nดาโคตา\nดานัง\nดีทรอยต์\nดูไบ\nเดนเวอร์\nเดลาแวร์\nเดียนเบียนฟู\nโดเวอร์\nโดฮา\nไดฟุกุ\nไดฟูกุ\nตรังกานู\nตริโปลี\nตูวาลู\nเตหะราน\nโตเกียว\nโตรอนโต\nทมิฬนาฑู\nทริโปลี\nทิเบต\nเทกซัส\nเท็กซัส\nเทนเนสซี\nเทลอาวีฟ\nแทสเมเนีย\nโทรอนโต\nไทเป\nธากา\nนางาซากิ\nนาริตะ\nนิวเจอร์ซีย์\nนิวเดลี\nนิวยอร์ก\nนิวยอร์ค\nนิวแฮมป์เชียร์\nเนบราสกา\nเนแบรสกา\nเนวาดา\nบรัสเซลส์\nบราซิเลีย\nบอมเบย์\nบอสตัน\nบังกาลอร์\nบังคาลอร์\nบูคาเรสต์\nบูดาเปสต์\nเบงกาซี\nเบนกาซี\nเบรุต\nเบลเกรด\nเบอร์ลิน\nแบกแดด\nปอยเปต\nปะลิส\nปะหัง\nปักกิ่ง\nปัญจาบ\nปัฏนา\nปารีส\nปีนัง\nเประ\nเปียงยาง\nพนมเปญ\nพระตะบอง\nพะโค\nพะสิม\nพาราณสี\nพิหารี\nเพนซิลวาเนีย\nเพนซิลเวเนีย\nฟรานซ์\nฟลอริดา\nฟิลาเดลเฟีย\nฟุกุชิมะ\nฟุกุชิมา\nฟุกุโอกะ\nฟูกูโอกะ\nแฟรงก์เฟิร์ต\nมอสโก\nมะนิลา\nมะละแหม่ง\nมัณฑะเลย์\nมัทราส\nมาดริด\nมิชิแกน\nมินนิโซตา\nมิยางิ\nมิลาน\nมิวนิก\nมิสซูรี\nมุมไบ\nเมน\nเมลเบิร์น\nเมาะตะมะ\nเมาะลำเลิง\nแมนจูเรีย\nแมนเชสเตอร์\nแมนฮัตตัน\nแมริแลนด์\nแมรีแลนด์\nแมสซาชูเซตส์\nยะไข่\nย่างกุ้ง\nยูทาห์\nยูนนาน\nเยรูซาเล็ม\nโยโกฮามา\nริยาด\nรีโอเดจาเนโร\nโรดไอแลนด์\nลอนดอน\nลอสแองเจลิส\nลาปาซ\nลาสเวกัส\nลิสบอน\nลุยเซียนา\nโลซาน\nโลซานน์\nวอชิงตัน\nวอร์ซอ\nวิสคอนซิน\nเวนิส\nเวลส์\nเวอร์จิเนีย\nเวอร์มอนต์\nเวียงจันทน์\nเวียนนา\nแวนคูเวอร์\nไวโอมิง\nสกอตแลนด์\nสก็อตแลนด์\nสตอกโฮล์ม\nสลังงอร์\nเสฉวน\nเสียมราฐ\nเสียมเรียบ\nหงสา\nหงสาวดี\nหนานไห่\nหลวงพระบาง\nหูเป่ย\nหูเป่ย์\nหูหนาน\nเหอเป่ย\nเหอเป่ย์\nเหอหนาน\nอชันตา\nอลาสกา\nอวันตี\nออริกอน\nออสโล\nอะแลสกา\nอัตตะปือ\nอัมมาน\nอัมสเตอร์ดัม\nอัสสัม\nอาบูดาบี\nอาร์คันซอ\nอินเดียนา\nอิบารากิ\nอิลลินอยส์\nอิสตันบูล\nอิสลามาบัด\nอุรุมชี\nอูลานบาตอร์\nเอดินบะระ\nเอเธนส์\nแอตแลนตา\nแอริโซนา\nแอลเจียร์\nโอคลาโฮมา\nโอค็อตสค์\nโอกินาวา\nโอซากา\nโอริสสา\nโอเรกอน\nโอไฮโอ\nไอดาโฮ\nไอโอวา\nฮอนโนลูลู\nฮานอย\nฮาเนดะ\nฮาราเร\nฮาวาย\nฮิโรชิมา\nฮุสตัน\nเฮลซิงกิ\n\nมกรา\nกุมภา\nมีนา\nเมษา\nพฤษภา\nมิถุนา\nกรกฎา\nสิงหา\nกันยา\nตุลา\nพฤศจิกา\nธันวา\nเอ\nบี\nซี\nดี\nอี\nเอฟ\nจี\nเอช\nไอ\nเจ\nเค\nแอล\nเอ็ม\nเอ็น\nโอ\nพี\nคิว\nอาร์\nเอส\nที\nยู\nวี\nดับเบิล\nดับบลิว\nเอ็กซ์\nเอ๊กซ์\nวาย\nแซด\nแอลฟา\nแอลฟ่า\nเบตา\nเบต้า\nแกมมา\nแกมม่า\nเดลตา\nเดลต้า\nโอเมกา\nโอเมก้า\nเมกะ\nกิกะ\nนาโน\nไมโคร\n\nกรรมาชน\nกรอบรูป\nกระดี๊กระด๊า\nกระบับ\nกราวนด์\nกรีน\nกรุ๊ป\nกฤษณ์\nกลาส\nก๊วน\nกษัตริยา\nกษัตริยาธิราช\nก่อนหน้า\nกะบับ\nกับดัก\nกัมมันตะ\nก๊าก\nก๋ากั่น\nกาญจน์\nกาญจนาภิเษก\nกามิกาเซ่\nการันตี\nกาหลิบ\nกิฟท์\nกิมจิ\nกีวี\nกึ๊ก\nกึ๋ย\nกุนซือ\nกุมภาพันธ์\nกู๋\nเกจิ\nเกมส์\nเกย์\nเกรด\nเกรย์\nเกสต์เฮาส์\nเก๊ะ\nเก๋ากี้\nเกิร์ล\nแกงค์\nแกรนด์\nแกสโซฮอล์\nแก๊สโซฮอล์\nโกเต็กซ์\nโกลด์\nโกะ\nโก๊ะ\nไกด์\nขั้นตอน\nเขวี้ยง\nคณาญาติ\nครัวซอง\nครัวซองต์\nคร่ำครวญ\nครีเอทีฟ\nครูเสด\nคลับ\nคลาสสิก\nคลิตอริส\nคลิป\nความหมาย\nควิก\nควีน\nคองเกรส\nคอนซูเมอร์\nคอนเซปต์\nคอนเซ็ปต์\nคอนโด\nคอนโดมิเนียม\nคอนเทนเนอร์\nคอนแทค\nคอนแท็ค\nคอนโทรล\nคอนเฟิร์ม\nคอปเตอร์\nคอมพ์\nคอมเพล็กซ์\nคอมมอนส์\nคอมเมนท์\nคอมเมนต์\nคอร์ป\nคอร์ปอเรชั่น\nคอร์รัปชัน\nคอร์รัปชั่น\nคอรัปชัน\nคอรัปชั่น\nคอร์ส\nคอลเล็กชั่น\nคอลัมน์\nคอลัมนิสต์\nคัตเอาต์\nคันคาก\nคันถธุระ\nคันธาระ\nคันยิ\nคัสตาร์ด\nคาราโอเกะ\nคีตกวี\nคีตปฏิภาณ\nคีตราชัน\nคาปูชิโน\nคามิคาเซ่\nคาเฟ่\nคาร์\nคาร์โก้\nคาราเมล\nคาแรกเตอร์\nคาแร็กเตอร์\nคาแรคเตอร์\nคาแร็คเตอร์\nคาวบอย\nคาสิโน\nคิกขุ\nคิวบิก\nคูลเลอร์\nเคบับ\nเครป\nเคลม\nเคลียร์\nเคลื่อนย้าย\nเคส\nเคอร์ฟิว\nแคชเชียร์\nแคทวอล์ค\nแคนดิเดต\nแคนตาลูป\nแคนยอน\nแคนู\nแคป\nแคมป์\nแคมปัส\nแคมเปญ\nแคร์\nแครกเกอร์\nแคร็กเกอร์\nแครอท\nแคสต์\nแคสติง\nแคสติ้ง\nโค้ก\nโค้ช\nโคโยตี\nโคโยตี้\nโครนา\nโคอะล่า\nโคอาลา\nโคอาล่า\nไคลแมกซ์\nไคลแม็กซ์\nงั้น\nง่าว\nงี้\nเง็ง\nโง่เขลา\nไง\nจตุคาม\nจ๊อกกี้\nจอหงวน\nจังโก้\nจัมโบ้\nจ๊าบ\nจารกรรม\nจารชน\nจิ๊ก\nจิ๊กโก๋\nจิ๊กซอว์\nจิตพิสัย\nจิตเภท\nจีดีพี\nจึ๊ก\nจุ๊ย\nจูน\nจูเนียร์\nเจ๊\nเจได\nเจ็ต\nเจล\nเจ๊าะแจ๊ะ\nเจี๊ยว\nแจ็กเก็ต\nแจ๊กเก็ต\nแจ็กพอต\nแจ็กพ็อต\nแจ๊กพอต\nแจ๊กพ็อต\nแจม\nแจ๊ส\nโจ๋\nฉลุย\nเฉิ่ม\nชนะเลิศ\nช็อค\nช็อต\nช็อป\nช็อปปิ้ง\nช็อปเปอร์\nชะโนด\nชัตเตอร์\nชัวร์\nชาร์จ\nชาร์ต\nชาร์ป\nชินบัญชร\nชิฟฟอน\nชีส\nชีอะห์\nเช็ก\nเช็งเม้ง\nเชฟ\nเชลียร์\nเชอร์รี่\nแชเชือน\nแช่แข็ง\nแชมป์\nแชมปิยอง\nแชมเปญ\nแชมเปี้ยน\nแชมพู\nโชว์รูม\nโชห่วย\nใช้งาน\nไชน่า\nซ้อ\nซอมบี้\nซะ\nซังเต\nซันตาคลอส\nซัพพลาย\nซัพพลายเออร์\nซัมเมอร์\nซากุระ\nซาดิสต์\nซาดิสม์\nซาตาน\nซานตาคลอส\nซาฟารี\nซาบะ\nซามูไร\nซาร์\nซาร์ดีน\nซาเล้ง\nซิง\nซิ่ง\nซิงเกิล\nซิตี\nซิตี้\nซินโดรม\nซิม\nซิ้ม\nซิมโฟนี\nซิมโฟนี่\nซิลเวอร์\nซี้\nซี้ซั้ว\nซีดาน\nซีน\nซีนีเพล็กซ์\nซีเนียร์\nซีร็อกซ์\nซีรีส์\nซีเรียส\nซีอีโอ\nซื่อบื้อ\nซุนหนี่\nซุปเปอร์\nซูชิ\nซูเปอร์\nซูม\nซูโม่\nซูเอี๋ย\nซูฮก\nเซ็กซ์\nเซ็กซี่\nเซ็กส์\nเซนเซอร์\nเซ็นเซอร์\nเซนเตอร์\nเซ็นเตอร์\nเซ็นทรัล\nเซนส์\nเซ่นไหว้\nเซฟตี้\nเซรามิก\nเซลส์\nเซลส์แมน\nเซอร์\nเซอร์ไพรส์\nเซอร์วิส\nเซาท์\nเซี้ยว\nแซ็ก\nแซกโซโฟน\nแซ็กโซโฟน\nแซนด์วิช\nแซมบ้า\nแซลมอน\nแซว\nโซเชียล\nโซน\nโซนี่\nโซลาร์\nโซโล\nโซโล่\nญาณทัสสนะ\nดยุก\nดยุค\nดร็อป\nดรัมเมเยอร์\nดรามา\nดราม่า\nดอกเตอร์\nด็อกเตอร์\nดัมพ์\nดั๊มพ์\nดาวน์\nดิกชันนารี\nดิสเครดิต\nดีกรี\nดีเจ\nดีไซน์\nดีไซน์เนอร์\nดีไซเนอร์\nดีเบต\nดีพาร์ตเมนต์\nดีพาร์ตเมนท์\nดีพาร์ทเมนต์\nดีพาร์ทเมนท์\nดีมานด์\nดีล\nดีลเลอร์\nดีเลย์\nเดชานุภาพ\nเดบิต\nเดโม\nเดย์\nเด้อ\nเดอะ\nเด๊ะ\nเดี้ยง\nเดี๊ยะ\nแดนซ์\nแดนเซอร์\nแดรี่\nโดนัท\nโดมิโน\nโดรายากิ\nไดเอ็ต\nตถตา\nตนเอง\nตรวจทาน\nตรวจสอบ\nตอกย้ำ\nต๊อง\nต่อยอด\nต่อรอง\nตะหงิด\nตังค์\nตันเถียน\nตัวตน\nตัวเอง\nตาปรือ\nต้าอ่วย\nติงต๊อง\nติ๋ม\nติ่มซำ\nติว\nติวเตอร์\nตี๋\nตื้บ\nตุ๊ก\nตุ๊กตุ๊ก\nตุ๊ด\nตุ๋ย\nตู้เซฟ\nเต๊ะ\nเตี๊ยม\nแตงกวา\nแตงโม\nแต๋ว\nโต๋เต๋\nโต๊ะจีน\nไตรมาส\nถ่ายทำ\nถูกต้อง\nทงคัตสึ\nทริป\nทรู\nทอม\nท็อป\nทอร์นาโด\nทอล์ค\nทักซิโด\nทันตกรรม\nทันตแพทยศาสตร์\nทับซ้อน\nทัวร์\nทัวร์นาเมนต์\nทัวร์นาเมนท์\nทัวริสต์\nทาเลนต์\nทาวน์\nทาวน์เฮาส์\nทำงาน\nทิป\nทิพยสมบัติ\nทิวลิป\nทีรามิสุ\nทีวี\nทูน่า\nเท็กซ์\nเทค\nเทคโน\nเทคโนแครต\nเทควันโด\nเทป\nเทรด\nเทรนด์\nเทรนเนอร์\nเทรลเลอร์\nเทรลเล่อร์\nเทเลกราฟ\nเทวบัญชา\nเทวบุตร\nเทวา\nเทวาธิราช\nเทโวโรหนะ\nเทอร์โบ\nเที่ยงคืน\nเที่ยงวัน\nเทียมทาน\nแทกติค\nแทคติค\nแทงกั๊ก\nแทงโก้\nโทมาฮอก\nโทมาฮอว์ก\nโทมาฮอว์ค\nโทร\nโทรโข่ง\nไทม์\nไทยแลนด์\nไทเฮา\nธรรมา\nธรรมาภิบาล\nธัมโม\nธีม\nธุรกรรม\nธุหร่ำ\nเธค\nนพมาศ\nนรีแพทย์\nน็อก\nน็อค\nน้องใหม่\nนอมินี\nนอร์ท\nน่ะ\nนางแบบ\nนาฏยศาลา\nนายแบบ\nนายพราน\nนินจา\nนิรันดร์\nนิว\nนิวส์\nนู้ด\nเนอะ\nเนิร์สเซอรี\nเนิร์สเซอรี่\nเนี้ยบ\nโนติส\nไนท์\nไนน์\nบรรพชน\nบร็อกโคลี\nบร็อคโคลี\nบรา\nบริกร\nบริวเวอรี่ส์\nบลอนด์\nบลูเบอร์รี\nบลูเบอร์รี่\nบ๊วย\nบอกซ์\nบ็อกซ์\nบ๊อกซ์\nบอดี้\nบอนด์\nบ๊อบ\nบอมบ์\nบ๋อย\nบอยคอต\nบอยคอตต์\nบอร์ด\nบังเกอร์\nบัตเตอร์\nบัลลาสต์\nบัส\nบาบูน\nบาร์บีคิว\nบาร์บี้\nบาลานซ์\nบิ๊ก\nบิล\nบึม\nบึ้ม\nบุญคุณ\nบุ๋น\nบุปผา\nบู๊\nบูชิโด\nบูติก\nบูติค\nบูม\nเบเกอรี่\nเบญจมบพิตร\nเบตาดีน\nเบนโตะ\nเบนโล\nเบบี้\nเบลอ\nเบอร์เกอร์\nเบอร์รี\nเบิร์ด\nเบิร์น\nแบ็กโฮ\nแบคโฮ\nแบด\nแบต\nแบนเนอร์\nแบรนด์\nแบล็ก\nแบล็ค\nไบโอ\nโบกี้\nโบตั๋น\nโบ้ย\nโบรกเกอร์\nโบรชัวร์\nโบว์\nโบว์ลิ่ง\nไบเบิล\nปฏิสัมพันธ์\nป๊อก\nปอดแหก\nป๊อป\nป๋อหลอ\nปักขคณนา\nปัจเจกชน\nปัจฉิมนิเทศ\nป๊า\nป๋า\nป่าไม้\nปาร์ตี้\nปาสกาล\nปาสคาล\nปาสเตอร์\nปิกอัพ\nปิ๊ง\nปิโตรเคมี\nปิยมิตร\nปึ้ก\nปูอัด\nเปโซ\nเป็นไง\nเปปเปอร์มินต์\nเปเปอร์\nเปราะบาง\nเป๊ะ\nเป่ายิงฉุบ\nเป่ายิ้งฉุบ\nเปียโน\nแป้ก\nแป๋ว\nแป๊ะเจี๊ยะ\nโปร\nโปรเจกต์\nโปรเจ็กต์\nโปรเจกเตอร์\nโปรเจ็กเตอร์\nโปรเจคท์\nโปรเจ็คท์\nโปรดักชั่น\nโปรดิวเซอร์\nโปรโมชั่น\nโปรโมต\nโปรโมเตอร์\nโปรโมท\nโปลิศ\nโปสเตอร์\nผลไม้\nผลักดัน\nผ้าห่ม\nผิดพลาด\nผู้นำ\nแผดเผา\nเฝอ\nพงษ์\nพริตตี้\nพรีเซนต์\nพรีเซ็นเตอร์\nพรีเมียม\nพรีเมียร์\nพฤหัส\nพล็อต\nพลาซ่า\nพลานุภาพ\nพ่อค้า\nพอเพียง\nพะเรอ\nพันธกิจ\nพันธุวิศวกรรม\nพาร์\nพาร์ตเนอร์\nพาร์ทเนอร์\nพาวเวอร์\nพาสเจอร์ไรส์\nพาสตา\nพาสต้า\nพาสปอร์ต\nพาเหรด\nพิซซ่า\nพีเรียด\nพุดดิ้ง\nพุทธภูมิ\nพุทธศตวรรษ\nพุทโธ\nพูล\nเพทนาการ\nเพนกวิน\nเพนตากอน\nเพรส\nเพรียวบาง\nเพลซ\nเพลท\nเพลย์บอย\nเพียบแปร้\nเพียว\nเพาเวอร์\nแพกเกจ\nแพ็ค\nแพตเทิร์น\nแพทเทิร์น\nแพทยสภา\nแพนงเชิญ\nแพนดา\nแพนด้า\nแพลน\nโพลล์\nโพลารอยด์\nโพสต์\nไพลิน\nฟยอร์ด\nฟรังก์\nฟรุต\nฟลอร์\nฟลุก\nฟลุค\nฟลุต\nฟลุท\nฟอยล์\nฟอร์ม\nฟันด์\nฟาวล์\nฟาสต์ฟู้ด\nฟินิกซ์\nฟิวเจอร์\nฟีด\nฟีเวอร์\nฟุตบาท\nเฟรช\nเฟรชชี่\nเฟรม\nเฟมินิสต์\nเฟส\nเฟอร์นิเจอร์\nเฟอร์รี่\nเฟิร์ม\nเฟี้ยวฟ้าว\nแฟกซ์\nแฟ็กซ์\nแฟนซี\nแฟนตาซี\nแฟ้บ\nแฟร์\nแฟรนไชส์\nแฟรี\nแฟรี่\nแฟลช\nแฟล็ต\nโฟน\nโฟม\nโฟล์ค\nไฟต์\nไฟแนนซ์\nไฟลต์\nไฟลท์\nภควัทคีตา\nภควัมบดี\nภควัมปติ\nภคันทลาพาธ\nภววิสัย\nภารตะ\nภูมิทัศน์\nม้ง\nมวลชน\nมยุราภิรมย์\nมลภาวะ\nมหภาค\nมหาอุปราชา\nมอคคา\nมอคค่า\nมอนสเตอร์\nม็อบ\nมอบตัว\nมอยส์เจอไรเซอร์\nมอลล์\nมะกัน\nมั้ง\nมัฟฟิน\nมั้ย\nม้านั่ง\nมาเฟีย\nมาม่า\nมายองเนส\nมายาคติ\nมาร์ก\nมาร์เก็ต\nมาร์เก็ตติ้ง\nมาร์ค\nมาร์จิน\nมาร์ช\nมาร์ต\nมาร์ท\nมาราธอน\nม้าหินอ่อน\nมินต์\nมินท์\nมินิ\nมิลค์\nมิวสิค\nมิสซัง\nมิสไซล์\nมิสเตอร์\nมือถือ\nมุมมอง\nเมคอัพ\nเมจิก\nเมจิค\nเมทัล\nเมเปิล\nเมาท์\nเมี่ยงคำ\nแมกกาซีน\nแม็กกาซีน\nแมคเคอเรล\nแม่ค้า\nแมชชีน\nแมชีน\nแมนชั่น\nแมมบ้า\nแมมโบ้\nโมจิ\nโมเดล\nโมเดิร์น\nโมเต็ล\nโมโนเรล\nโมหจริต\nไมค์\nไมเกรน\nยนตรกรรม\nยอมรับ\nยะเยือก\nยังไง\nยากูซ่า\nยาวี\nยิม\nยิว\nยุวทูต\nยูโทเปีย\nยูโร\nยูวี\nเยน\nเยลลี่\nเย้ว\nเยอบีรา\nเยอบีร่า\nเยอร์บีรา\nเยอร์บีร่า\nแยมโรล\nโยเกิร์ต\nโยโย่\nรวมมิตร\nร็อค\nร็อคเก็ต\nรองรับ\nรอมฎอน\nรอยัลตี้\nระโงก\nรันเวย์\nรัม\nรากหญ้า\nราชบัณฑิตยสถาน\nราชานุญาต\nราชานุสาวรีย์\nรามเทพ\nรามาธิบดี\nรามายณะ\nราเม็ง\nราเมน\nรายชื่อ\nราสเบอร์รี\nริกเตอร์\nริคเตอร์\nรีไซเคิล\nรีดไถ\nรีทัช\nรีเทิร์น\nรีไทร์\nรีแบรนด์\nรีพอร์ท\nรีโมต\nรีโมท\nรีวิว\nรีสอร์ต\nรีสอร์ท\nรีเสิร์ช\nรุมบ้า\nรุสโซ\nรูบิก\nรูบิค\nเรซิน\nเรซิ่น\nเรดิโอ\nเรต\nเรตติ้ง\nแรงใจ\nแรงดูด\nแรงผลัก\nแรลลี\nแรลลี่\nโรดแมป\nโรเนียว\nโรแมนติก\nโรแมนติค\nโรล\nโรลออน\nไรเฟิล\nล็อกเกอร์\nลอจิสติกส์\nล็อต\nล็อบบี้\nลอร์ด\nล้มเหลว\nละติน\nละอ่อน\nลาซานญ่า\nลาติน\nลาเต้\nลานีญา\nลามะ\nลิมิต\nลิมูซีน\nลิสต์\nลีก\nลีด\nลีดเดอร์\nลีเมอร์\nลีลาวดี\nลุค\nลูกชาย\nลูกสาว\nเลกเชอร์\nเลคเชอร์\nเลดี้\nเลสเบี้ยน\nเลิฟ\nแลนด์\nแล็บ\nโลโก้\nโลชั่น\nไลท์\nไลน์\nไลฟ์\nวนาราม\nวราราม\nวโรกาส\nว้อดก้า\nวอเตอร์\nวอฟเฟิล\nว้อย\nวอร์ม\nวอร์มอัพ\nวอร์รูม\nวอล์ก\nวอล์ค\nวอลซ์\nวอลนัต\nวอลนัท\nวอลล์\nว่ะ\nวันเวย์\nวัสสา\nวาซาบิ\nวาทกรรม\nวาทะ\nวานิลลา\nวานิลา\nวาฟเฟิล\nวาริชศาสตร์\nว้าว\nวัคค์\nวัจนะ\nวาไรตี้\nวิก\nวิดีโอ\nวิทย์\nวิน\nวิป\nวิปปิ้ง\nวิภัชภาค\nวิว\nวิลล์\nวิลเลจ\nวีเจ\nวีซ่า\nวีดิทัศน์\nวีน\nวีไอพี\nวืด\nเวณิกา\nเวเฟอร์\nเวสต์\nเวอร์\nเวิร์ก\nเวิร์กช็อป\nเวิร์ค\nเวิร์ลด์\nเวิลด์\nแวมไพร์\nไวกิ้ง\nไวเบรเตอร์\nไวอะกร้า\nไวอากร้า\nศากยบุตร\nศิรินทร์\nศิลปวัฒนธรรม\nศิลปากร\nศิวิไลซ์\nศึกษาศาสตร์\nสกรัม\nสกาย\nสกู๊ป\nสเกตช์\nสเก็ตช์\nสคริปต์\nสแควร์\nสงบสุข\nสจ๊วต\nสตรอเบอร์รี\nสตรอเบอรี\nสตรอว์เบอร์รี\nสตริง\nสต็อก\nสต๊อก\nสต็อค\nสต๊อค\nสตอรี\nสตาร์\nสตาร์ท\nสติกเกอร์\nสติ๊กเกอร์\nสตีล\nสตูดิโอ\nสเตชัน\nสเตชั่น\nสเตเดียม\nสเตนเลส\nสเต็ป\nสเตย์\nสเตริโอ\nสเตอริโอ\nสแตนดาร์ด\nสแตนเลส\nสโตน\nสโตร์\nสไตรค์\nสไตล์\nสถาปัตย์\nสไนเปอร์\nสปอต\nสป็อต\nสปอนเซอร์\nสปอร์ต\nสปา\nสปาย\nสปิริต\nสเปก\nสเปค\nสไปเดอร์\nสมณพราหมณ์\nสมาพันธ์\nสมิติเวช\nสโรชา\nสลัม\nสแล็ก\nสโลแกน\nสโลว์\nสไลด์\nสวีท\nสหรัฐ\nสหัชญาณ\nสหัสวรรษ\nสะกอม\nสะเด่า\nสะบึม\nสะบึมส์\nสะออน\nสังโฆ\nสะโหลสะเหล\nสันทนาการ\nสัมนา\nสามช่า\nสามแยก\nสารขัณฑ์\nสี่แยก\nสึนามิ\nสุนทรีย์\nสุริยยาตร\nสุริยยาตร์\nสุหนี่\nเสกสรรค์\nเสพติด\nเสือโคร่ง\nหงวน\nหน่อมแน้ม\nหมวย\nหมั่นโถว\nหม่านโถว\nหมายปอง\nหมิง\nหยวน\nหลวงตา\nหลวงปู่\nหลวงพี่\nหล่อฮังก้วย\nหลินจือ\nห่วย\nเห็นด้วย\nเหมย\nเห่ย\nเหี่ยวย่น\nแหม็บ\nแหวว\nโหงว\nโหงวเฮ้ง\nโหลน\nโหลยโท่ย\nไหง\nไหร่\nอพาร์ตเมนต์\nอพาร์ตเมนท์\nอพาร์ทเมนต์\nอพาร์ทเมนท์\nอมาตยาธิปไตย\nอยุติธรรม\nอริยสงฆ์\nอ่วม\nอวอร์ด\nออกแบบ\nออดิชั่น\nออดิทอเรียม\nออเดอร์\nออโต้\nออทิสติก\nอ่อนด้อย\nออฟ\nออยล์\nออร์แกน\nออร์แกนิก\nออร์แกนิค\nออร์เดอร์\nออรัล\nออสซี่\nอะ\nอัตลักษณ์\nอัตวิสัย\nอันเดอร์\nอันตรกิริยา\nอัลตรา\nอัลไซเมอร์\nอัลบัม\nอัลบั้ม\nอัลมอนด์\nอาข่า\nอาโนเนะ\nอาฟเตอร์\nอาร์ติสต์\nอาร์พีจี\nอาว์\nอาสวะ\nอิกัวนา\nอินดอร์\nอินดัสตรีส์\nอินเตอร์\nอิ่มแปร้\nอิมพีเรียล\nอิเล็กทริก\nอิเล็กทริค\nอิเลียด\nอิสรชน\nอิเหนา\nอิออน\nอีแต๋น\nอีโรติก\nอีเวนท์\nอีสต์\nอีสเตอร์\nอึ๊บ\nอึ้ม\nอึ๋ม\nอึมครึม\nอุด้ง\nอุตสาหการ\nอุเทน\nอุปการคุณ\nอุปทาน\nอุปนายก\nอุปนายิกา\nอุปสงค์\nอุปัทวเหตุ\nอุรังคธาตุ\nอูคูเลเล่\nอู้ฟู่\nเอ๋\nเอ็กซ์โป\nเอ็กซ์เพรส\nเอ็กโซเซต์\nเอ็กโซเซ่ต์\nเอเซีย\nเอ็นจีโอ\nเอ็นเตอร์เทน\nเอนทรานซ์\nเอ็นทรานซ์\nเอฟเฟ็กต์\nเอเยนต์\nเอลนีโญ\nเอสเปรสโซ\nเอสเพรสโซ\nเอ๋อ\nเอาต์\nเอาท์\nเอาท์ดอร์\nเอ๊าะ\nแอ็กชั่น\nแอ็คชั่น\nแอคทีฟ\nแอดมิชชั่น\nแอดมิสชัน\nแอนด์\nแอ๊บแบ๊ว\nแอปเปิล\nแอปเปิ้ล\nแอปพริคอท\nแอพพริคอท\nแอพริคอต\nแอร์\nแอโรบิก\nแอโรบิค\nแอลมอนด์\nแอสเตอร์\nโอเค\nโอเปอเรเตอร์\nโอเปร่า\nโอเพ่น\nโอ้ย\nโอยัวะ\nโอรสาธิราช\nโอเลี้ยง\nโอวัลติน\nโอเวอร์\nไอซ์\nไอซียู\nไอดอล\nไอเดีย\nไอติม\nฮวงจุ้ย\nฮ่องเต้\nฮองเฮา\nฮอต\nฮ็อต\nฮอตดอก\nฮ็อตด็อก\nฮันนีมูน\nฮัม\nฮัลโลวีน\nฮัลโหล\nฮากกา\nฮาร์ด\nฮาราคีรี\nฮาลาล\nฮาโลวีน\nฮิ\nฮิต\nฮิบรู\nฮิปโป\nฮิปฮอป\nฮีโร่\nฮูลาฮูป\nฮูล่าฮูป\nเฮฟวี\nเฮฟวี่\nเฮอร์ริเคน\nเฮีย\nแฮนด์\nแฮปปี้\nแฮมเบอร์เกอร์\nโฮป\nโฮม\nโฮลดิงส์\nโฮลวีต\nโฮสเตส\nไฮกุ\nไฮแจ็ค\nไฮโซ\nไฮเทค\nไฮบริด\nไฮเปอร์\nไฮไลต์\nไฮไลท์\nไฮเวย์\nไฮสคูล\nไฮเอนด์\n\nกรีซ\nกัมพูชา\nกัวเตมาลา\nกาตาร์\nกานา\nกาบอง\nกายอานา\nกินี\nเกรนาดีนส์\nเกรเนดา\nเกาหลี\nแกมเบีย\nโกตดิวัวร์\nคองโก\nคอโมโรส\nคอสตาริกา\nคาซัคสถาน\nคิตส์\nคิริบาตี\nคิริบาส\nคิวบา\nคีร์กีซสถาน\nคูเวต\nเคนยา\nเคปเวิร์ด\nเคย์แมน\nแคนาดา\nแคเมอรูน\nโครเอเชีย\nโคลอมเบีย\nจอร์เจีย\nจอร์แดน\nจาเมกา\nจิบูตี\nจีน\nชาด\nชิลี\nเช็ก\nซามัว\nซาอุ\nซิมบับเว\nซีเรีย\nซูดาน\nซูรินาเม\nเซนต์\nเซเนกัล\nเซอร์เบีย\nเซาตูเม\nเซียร์รา\nแซมเบีย\nโซมาเลีย\nโซเวียต\nไซปรัส\nญี่ปุ่น\nดารุสซาลาม\nเดนมาร์ก\nโดมินิกัน\nโดมินิกา\nตรินิแดด\nตองกา\nติมอร์\nตุรกี\nตูนิเซีย\nเติร์กเมนิสถาน\nโตโก\nโตเบโก\nไต้หวัน\nทาจิกิสถาน\nแทนซาเนีย\nนอร์เวย์\nนามิเบีย\nนาอูรู\nนิการากัว\nนิวซีแลนด์\nเนเธอร์แลนด์\nเนปาล\nเนวิส\nไนจีเรีย\nไนเจอร์\nบราซิล\nบริติช\nบริเตน\nบรูไน\nบอตสวานา\nบอสเนีย\nบังกลาเทศ\nบังคลาเทศ\nบัลแกเรีย\nบาร์บูดา\nบาร์เบโดส\nบาห์เรน\nบาฮามาส\nบิสเซา\nบุรุนดี\nบูร์กินาฟาโซ\nเบนิน\nเบลเยียม\nเบลารุส\nเบลีซ\nเบอร์มิวดา\nโบลิเวีย\nปรินซิปี\nปากีสถาน\nปานามา\nปาปัวนิวกินี\nปารากวัย\nปาเลสไตน์\nปาเลา\nเปรู\nเปอร์เซีย\nเปอร์โตริโก\nโปรตุเกส\nโปแลนด์\nฝรั่งเศส\nพม่า\nฟิจิ\nฟินแลนด์\nฟิลิปปินส์\nเฟรนช์\nภูฏาน\nภูฐาน\nมองโกเลีย\nมอนเตเนโกร\nมอนแทนา\nมอริเชียส\nมอริเตเนีย\nมอลโดวา\nมอลตา\nมัลดีฟส์\nมาเก๊า\nมาซิโดเนีย\nมาดากัสการ์\nมาร์แชลล์\nมาลาวี\nมาลี\nมาเลเซีย\nเม็กซิโก\nเมียนมาร์\nโมซัมบิก\nโมนาโก\nโมนาโค\nโมร็อกโก\nไมโครนีเซีย\nยูกันดา\nยูโกสลาเวีย\nยูเครน\nเยเมน\nเยอรมนี\nรวันดา\nรัสเซีย\nโรมาเนีย\nลักเซมเบิร์ก\nลัตเวีย\nลาว\nลิกเตนสไตน์\nลิทัวเนีย\nลิเบีย\nลีโอน\nลูเซีย\nเลโซโท\nเลบานอน\nเลสเต\nไลบีเรีย\nวาติกัน\nวานูอาตู\nวินเซนต์\nเวเนซุเอลา\nเวียดนาม\nศรีลังกา\nสเปน\nสโลวะเกีย\nสโลวัก\nสโลวีเนีย\nสวาซิแลนด์\nสวิตเซอร์แลนด์\nสวีเดน\nสหรัฐ\nสหราชอาณาจักร\nสิกขิม\nสิงคโปร์\nอเมริกา\nออสเตรเลีย\nออสเตรีย\nอันดอร์รา\nอัฟกานิสถาน\nอาเซอร์ไบจาน\nอาร์เจนตินา\nอาร์เมเนีย\nอาระเบีย\nอิเควทอเรียล\nอิตาลี\nอินเดีย\nอินโดนีเซีย\nอิรัก\nอิสราเอล\nอิหร่าน\nอียิปต์\nอุซเบกิสถาน\nอุรุกวัย\nเอกวาดอร์\nเอธิโอเปีย\nเอมิเรตส์\nเอริเทรีย\nเอลซัลวาดอร์\nเอสโตเนีย\nแองโกลา\nแอนติกา\nแอลจีเรีย\nแอลเบเนีย\nโอมาน\nไอซ์แลนด์\nไอร์แลนด์\nฮ่องกง\nฮอนดูรัส\nฮังการี\nเฮติ\nเฮอร์เซโกวีนา\n\nกระบี่\nกรุงเทพ\nกาญจนบุรี\nกาฬสินธุ์\nกำแพงเพชร\nขอนแก่น\nจันทบุรี\nฉะเชิงเทรา\nชลบุรี\nชัยนาท\nชัยภูมิ\nชุมพร\nเชียงราย\nเชียงใหม่\nตรัง\nตราด\nตาก\nนครนายก\nนครปฐม\nนครพนม\nนครราชสีมา\nนครศรีธรรมราช\nนครสวรรค์\nนนทบุรี\nนราธิวาส\nน่าน\nบึงกาฬ\nบุรีรัมย์\nปทุมธานี\nประจวบคีรีขันธ์\nปราจีนบุรี\nปัตตานี\nพะเยา\nพังงา\nพัทลุง\nพิจิตร\nพิษณุโลก\nเพชรบุรี\nเพชรบูรณ์\nแพร่\nภูเก็ต\nมหาสารคาม\nมุกดาหาร\nแม่ฮ่องสอน\nยโสธร\nยะลา\nร้อยเอ็ด\nระนอง\nระยอง\nราชบุรี\nลพบุรี\nลำปาง\nลำพูน\nเลย\nศรีสะเกษ\nสกลนคร\nสงขลา\nสตูล\nสมุทรปราการ\nสมุทรสงคราม\nสมุทรสาคร\nสระแก้ว\nสระบุรี\nสิงห์บุรี\nสุโขทัย\nสุพรรณบุรี\nสุราษฎร์\nสุราษฎร์ธานี\nสุรินทร์\nหนองคาย\nหนองบัวลำภู\nอยุธยา\nอ่างทอง\nอำนาจเจริญ\nอุดรธานี\nอุตรดิตถ์\nอุทัยธานี\nอุบลราชธานี\nกันทรลักษ์\nจตุจักร\nไชยา\nซีคอน\nดอนเมือง\nถลาง\nไทรโยค\nธนบุรี\nธัญบุรี\nบางกอก\nบางปะกง\nบางระจัน\nปะทิว\nปาย\nพญาไท\nพัฒน์พงษ์\nพัทยา\nพารากอน\nภูมิซรอล\nรัตนาธิเบศร์\nรังสิต\nลันตา\nลาดพร้าว\nวโรรส\nวิภาวดี\nสตึก\nสมุย\nสัตหีบ\nสิมิลัน\nสุขุมวิท\nสุไหง\nเสลภูมิ\nอังรีดูนังต์\nอ่างขาง\nอินทนนท์\nเอ็มโพเรียม\n\nคิวชู\nแคริบเบียน\nแคสเปียน\nดานูบ\nตะนาวศรี\nนอร์วีเจียน\nนิโคบาร์\nเนรัญชรา\nไนล์\nบอร์เนียว\nบอลติก\nเบงกอล\nปิง\nแปซิฟิก\nมะละกา\nมินดาเนา\nมิสซิสซิปปี\nเมดิเตอร์เรเนียน\nเมโสโปเตเมีย\nยมุนา\nยุโรป\nยูเรเชีย\nยูเรเซีย\nแยงซี\nแยงซีเกียง\nสแกนดิเนเวีย\nสะโตง\nสาละวิน\nสุมาตรา\nสุเอซ\nอะเมซอน\nอันดามัน\nอัลไต\nอาร์กติก\nอาหรับ\nอินโดจีน\nอิรวดี\nอิระวดี\nอีเจียน\nอุษาคเณย์\nอูราล\nเอเชีย\nเอเดรียติก\nเอเวอเรสต์\nแอตแลนติก\nแอนตาร์กติก\nแอนตาร์กติกา\nแอฟริกา\nโอลิมปัส\nไอโอเนียน\nฮวงโห\nฮอกไกโด\nฮอนชู\n\nกบิลพัสดุ์\nกุสินารา\nโกลิยะ\nโกสัมพี\nโคตรบอง\nโคตรบูรณ์\nตองอู\nทรอย\nทวารวดี\nทวาราวดี\nเทวทหะ\nไทรบุรี\nนาลันทา\nไบแซนไทน์\nปรัสเซีย\nปัลลวะ\nปาฏลีบุตร\nพุทธคยา\nมถุรา\nมายัน\nมิถิลา\nราชคฤห์\nล้านช้าง\nล้านนา\nลุมพินี\nวัชชี\nเวสาลี\nสารนาถ\nสาวัตถี\nหริภุญชัย\nอโยธยา\nออตโตมัน\nอังวะ\nอินทปัตถ์\nอุชเชนี\n\nกราฟิก\nกราฟิกส์\nกราฟิค\nกริด\nกิกะไบต์\nกูเกิล\nกูเกิ้ล\nเกตเวย์\nโกลบอล\nคลัสเตอร์\nคลาส\nคลิก\nคลิปอาร์ต\nคอนโซล\nคอนเทนต์\nคอมพิวติ้ง\nคอมไพล์\nคอมไพเลอร์\nคอมมูนิเคชั่น\nคอร์\nคีย์\nคีย์บอร์ด\nเครือข่าย\nเคอร์เซอร์\nเคอร์เนล\nแคช\nแคมฟรอก\nแคมฟร็อก\nแคร็ก\nโค้ด\nจาวา\nจีพีเอส\nชิป\nชิพ\nเชลล์\nแช็ต\nแชนเนล\nแชนแนล\nซ็อกเก็ต\nซอฟต์แวร์\nซอฟท์แวร์\nซอร์ส\nซัพพอร์ต\nซัพพอร์ท\nซีดี\nซีดีรอม\nซีเนอร์\nเซิร์ฟเวอร์\nโซลูชัน\nโซลูชั่น\nไซต์\nไซเบอร์\nทรานแซกชัน\nทรานแซกชั่น\nทรานแซ็กชัน\nทรานแซ็กชั่น\nทรานแซคชัน\nทรานแซคชั่น\nทรานแซ็คชัน\nทรานแซ็คชั่น\nทวิตเตอร์\nทวีต\nทัชแพด\nเทมเพลต\nเทอร์มินัล\nแท็ก\nแท็บ\nแทบเล็ต\nโทรจัน\nเน็ต\nเน็ตบุ๊ก\nเน็ตบุค\nเน็ตบุ๊ค\nเน็ตเวิร์ก\nเน็ตเวิร์ค\nโน้ตบุ๊ก\nโน้ตบุค\nโน้ตบุ๊ค\nดอส\nดาวน์เกรด\nดาวน์โหลด\nดิจิตอล\nดิจิทัล\nดีบั๊ก\nดีวีดี\nดีไวซ์\nเดเบียน\nเดลไฟ\nเดสก์ท็อป\nโดเมน\nไดรว์\nไดรเวอร์\nไดเรกทอรี\nไดโอด\nเทเลคอม\nบล็อกเกอร์\nบรอดแบนด์\nบราวเซอร์\nบลูทูท\nบลูทูธ\nบลูเรย์\nบั๊ก\nบัฟเฟอร์\nบิต\nบิท\nบูต\nเบราว์เซอร์\nแบนด์วิดท์\nไบต์\nไบนารี\nโปรแกรมเมอร์\nโปรเซส\nโปรเซสเซอร์\nโปรโตคอล\nพร็อกซี\nพอร์ต\nพอร์ท\nพาเนล\nพาร์ทิชัน\nพารามิเตอร์\nพาสเวิร์ด\nพิกเซล\nเพจ\nเพจเจอร์\nแพกเก็ต\nแพตช์\nแพลตฟอร์ม\nโพรเซส\nโพรเซสเซอร์\nโพรโทคอล\nไพธอน\nฟล็อปส์\nฟอนต์\nฟอร์แมต\nฟอร์เวิร์ด\nฟอรัม\nฟีเจอร์\nเฟซบุ๊ก\nเฟิร์มแวร์\nแฟล็ก\nโฟลเดอร์\nไฟร์ฟอกซ์\nไฟร์วอลล์\nไฟล์\nมอดูล\nมอนิเตอร์\nมัลติ\nมัลติทัช\nมัลติเพล็กซ์\nมัลแวร์\nมาสเตอร์\nมีเดีย\nเมนู\nเมมโมรี\nเมล\nเมาส์\nแมค\nโมดูล\nโมเด็ม\nโมบาย\nโมบายล์\nโมไบล์\nไมโครซอฟท์\nยูนิกซ์\nยูนิโคด\nยูนิโค้ด\nริงโทน\nรีเฟรช\nรีเลย์\nเราเตอร์\nเรียลไทม์\nลิงก์\nลินุกซ์\nลีนุกซ์\nลูป\nเลเยอร์\nแล็ปท็อป\nไลเซนส์\nไลบรารี\nวิกิ\nวิกิพีเดีย\nวินโดวส์\nวินโดว์ส\nเว็บ\nเวอร์ชวล\nเวอร์ชัน\nเวอร์ชั่น\nเวิร์กสเตชัน\nเวิร์กสเตชั่น\nเวิร์คสเตชัน\nเวิร์คสเตชั่น\nเวิร์ด\nเวิร์ม\nไวแมกซ์\nสกรีน\nสแกน\nสแกนเนอร์\nสแต็ก\nสนิฟเฟอร์\nสปายแวร์\nสเปซ\nสแปม\nสมาร์ท\nสล็อต\nเสิร์ช\nโหลด\nออนไลน์\nออปติก\nออปติคอล\nออปติคัล\nออฟไลน์\nออราเคิล\nอัพเกรด\nอัพเดต\nอัพโหลด\nอัปเกรด\nอัปเดต\nอัปโหลด\nอัลกอริทึม\nอาร์กิวเมนต์\nอินเตอร์เน็ต\nอินทิเกรเตอร์\nอินเทอร์เน็ต\nอินเทอร์เฟซ\nอินเทล\nอินพุต\nอินพุท\nอีเมล\nอีเมล์\nอูบุนตู\nอูบันตู\nเอนจิน\nเอ็นจิน\nเอาต์พุต\nเอาต์พุท\nเอาท์พุต\nเอาท์พุท\nแอนะล็อก\nแอนิเมชัน\nแอนิเมชั่น\nแอปพลิเคชัน\nแอปพลิเคชั่น\nแอพพลิเคชัน\nแอพพลิเคชั่น\nแอสเซมบลี\nแอสเซมเบลอร์\nโอเพน\nไอคอน\nไอซี\nไอพอด\nไอพ็อด\nไอแพด\nไอโฟน\nฮับ\nฮาร์ดดิสก์\nฮาร์ดแวร์\nแฮกเกอร์\nแฮ็กเกอร์\nแฮนด์เฮลด์\nโฮสต์\n\nกรีก\nกัณณาฑ\nกัศมีรี\nคันจิ\nคาตาคานะ\nคุชราตี\nคุรุมุขี\nซีริลลิก\nซูลู\nเซลติก\nเซิร์บ\nตากาล็อก\nเตลุคู\nเติร์ก\nทราวิฑ\nเบงกาลี\nปัญจาบี\nพินอิน\nมลยาฬัม\nมองโกล\nมาราฐี\nมาเลย์\nเม็กซิกัน\nแมนจู\nแมนดาริน\nไมถิลี\nเยอรมัน\nรัสเซียน\nสวาฮิลี\nสวิส\nสินธี\nอูรดู\nอัสสมี\nอารบิก\nอิตาเลียน\nอุยกูร์\nแอฟริกัน\nโอริยา\nไอริช\nฮันกึล\nฮินดี\nฮิรางานะ\nฮีบรู\n\nกรีนพีซ\nกรือเซะ\nกวนอิม\nกวนอู\nกัดดาฟี\nกัลยาณวัตร\nกัสสปะ\nกาลิเลโอ\nกินเนส\nกุมภกรรณ\nกูเตนเบิร์ก\nเกตส์\nเกษมณี\nโกณฑัญญะ\nขงเบ้ง\nคริสโตเฟอร์\nคองคอร์ด\nคอลเกต\nคานธี\nคาเบรียล\nคาร์ฟูร์\nคาร์สัน\nคาราบาว\nคาสิโอ\nคิริน\nคุนลุ้น\nคูโบต้า\nเครมลิน\nแคทรีนา\nโคตมะ\nโคตมี\nโคลัมบัส\nไคฟง\nไครสเลอร์\nง้อไบ๊\nจตุพร\nจ็อบส์\nจอห์น\nจิ้น\nจิม\nจิ๋ม\nจิว\nจุฬาภรณ์\nจุฬาลงกรณ์\nเจมส์\nแจ็กสัน\nโจเซฟ\nโจว\nชมัยมรุเชฐ\nชมัยมรุเชษฐ์\nชเวดากอง\nชาร์ลส์\nชินราช\nชินวัตร\nชุนชิว\nเช็ง\nเชตวัน\nเชฟรอน\nเชฟโรเลต\nเชลซี\nไชยานุชิต\nซ่ง\nซังฮี้\nซัดดัม\nซันซิล\nซัมซุง\nซัวเจ๋ง\nซินหัว\nซีซาร์\nซีแพค\nซูซาน\nซูซูกิ\nซูบารุ\nเซ็นทารา\nเซเวน\nเซเว่น\nโซฟิเทล\nโซยุซ\nโซยูซ\nณัฐวุฒิ\nดาร์ลี่\nดาวโจนส์\nดิสนีย์\nดีแทค\nดูปองท์\nเดโมแครต\nเดลล์\nเดลินิวส์\nเดวิด\nแดวู\nโดนัลด์\nโดราเอมอน\nโดเรมอน\nต๋อง\nตั๊กม้อ\nตากสิน\nตาเมือน\nตาลีบัน\nตูน\nเตมีย์\nโต๋\nโตชิบา\nโตโยต้า\nถังซัมจั๋ง\nถังซำจั๋ง\nทรพา\nทราเวล\nทรูมูฟ\nทีปังกร\nเทปโก\nเทพรัตน\nเทวทัต\nเทสโก้\nโทมัส\nไททานิก\nไททานิค\nไทยรัฐ\nธีออส\nนครินทรา\nนโปเลียน\nนพดล\nนราดูร\nนเรนทร\nนอสตราดามุส\nนาซา\nนาซ่า\nนาซี\nนาโต\nนาโต้\nนาลแก\nนิคอน\nนิโคลัส\nนิด้า\nนินเทนโด\nนิปปอน\nนิวตัน\nนิสสัน\nเนคเทค\nเนชั่น\nเนชันแนล\nเนชั่นแนล\nเนวิน\nเนสเล่\nเนสาด\nแนท\nแนสแดค\nโนเกีย\nโนเบล\nโนเวลล์\nโนโวเทล\nไนเม็กซ์\nบรอดเวย์\nบรัดเลย์\nบรู๊ซ\nบัลเมอร์\nบารัก\nบารัค\nบู๊ตึ๊ง\nเบญกาย\nเบนซ์\nเบ็นซ์\nเบนจามิน\nโบตัน\nไบโอเทค\nประชาธิปัตย์\nปวีณา\nปอเต็กตึ๊ง\nปอเต๊กตึ๊ง\nป่อเต็กตึ๊ง\nปัตตะโชติ\nปารุสก์\nปีเตอร์\nปูติน\nเป๊ปซี่\nเป้ย\nเปอร์โยต์\nเปาบุ้นจิ้น\nโปเกมอน\nโป๊ยก่าย\nพรหมทัต\nพลาโต\nพอลล่า\nพานาโซนิค\nพานาโซนิก\nพิทยานุกูล\nพิมพิสาร\nเพนแทกซ์\nเพลโต\nไพโอเนียร์\nฟรอยด์\nฟรังซิส\nฟรานซิส\nฟลอเรนซ์\nฟอร์ด\nฟิลิปส์\nฟูจิ\nแฟซ่า\nโฟร์โมสต์\nภูมิพล\nภูริทัต\nมงฟอร์ต\nมณโฑ\nมติชน\nมหิตลาธิเบศร\nมโหสถ\nมัจฉานุ\nมาร์กาเร็ต\nมาร์ติน\nมาสด้า\nมิตซูบิชิ\nมิราเคิล\nมุสโสลินี\nเม้ง\nเมจิ\nเมอร์ซีเดส\nเมอร์เซเดส\nแมกซ์เวลล์\nแมกไซไซ\nแมคอินทอช\nแมชีนเนอรี่\nโมคคัลลานะ\nโมโตโรลา\nโมโตโรล่า\nโมเนีย\nไมเคิล\nไมยราพณ์\nยโสธรา\nยะโฮวา\nยะโฮวาห์\nยามาฮ่า\nยาเวห์\nยาฮู\nยูนิเซฟ\nยูเนสโก\nยูไล\nเยโฮวาห์\nรอยเตอร์\nรอยัล\nรัชดา\nรัสปูติน\nราฟาเอล\nรามาวตาร\nราเมศวร\nราหุล\nริชาร์ด\nรีพับลิกัน\nรูนีย์\nเรนโบว์\nแรมโบ้\nโรตารี\nโรนัลโด\nโรนัลโด้\nโรบินสัน\nโรเบิร์ต\nล็อกซเล่ย์\nลิงคอล์น\nลิจฉวี\nลิไท\nลิไทย\nลินคอล์น\nลิเวอร์พูล\nเลโนโว\nเลียดก๊ก\nโลตัส\nวชิราลงกรณ์\nวลาดิเมียร์\nวอลล์สตรีท\nวาเลนไทน์\nวิกตอเรีย\nวิทยานุสรณ์\nวิทยายน\nวิมเบิลดัน\nวิลเลียม\nวีระ\nวุฒิชัย\nเวียดกง\nไวตามิลค์\nศกุนตลา\nศรีวิชัย\nศิริพงษ์\nศิริราช\nศุภชลาศัย\nสดกก๊อกธม\nสดายุ\nสตาลิน\nสตีฟ\nสแตนฟอร์ด\nสวรินทิรา\nสังกัจจายน์\nสาทิตย์\nสารีบุตร\nสิริกิติ์\nสิรินธร\nสิหิงค์\nสีวลี\nสีหนุ\nสีหมุนี\nสีหโมนี\nสุครีพ\nสุทโธทนะ\nสุเทพ\nสุนทราภรณ์\nสุนีย์\nสุรนารี\nสุรยุทธ์\nสุริยาสน์\nเส้าหลิน\nโสกราตีส\nโสภิต\nหนุมาน\nหลินฮุ่ย\nหลุยส์\nเห้งเจีย\nไหหม่า\nองคต\nองคุลิมาล\nอชาตศัตรู\nอดุลยเดช\nอพอลโล\nอริสโตเติล\nอริสมันต์\nอลิซาเบธ\nอ๋อม\nออร์คิด\nออสการ์\nอะพอลโล\nอับราฮัม\nอั้ม\nอัลกออิดะห์\nอัลคาเทล\nอัลจาซีราห์\nอัลเฟรด\nอัลเลาะห์\nอัสซุส\nอัสสชิ\nอัสสัมชัญ\nอาเซม\nอาเซ็ม\nอาเซียน\nอาฟต้า\nอาร์เซนอล\nอินทรชิต\nอินทราทิตย์\nอีซูซุ\nอีเลฟเวน\nอีเลฟเว่น\nอุณรุท\nอุบลรัตน์\nอุบาลี\nอุ๋ย\nเอกทัศน์\nเอเซอร์\nเอ็ดเวิร์ด\nเอดิสัน\nเอแบค\nเอลิซาเบธ\nเอสพลานาด\nเอสพลานาร์ด\nแอคคอร์\nแอคคอร์ด\nแองเจลิน่า\nแอตแลนติส\nแอน\nแอ๋ม\nแอมบาสซาเดอร์\nแอมบาสเดอร์\nแอมเวย์\nแอ๋ว\nโอดีสซีย์\nโอเดียน\nโอบามา\nโอรสาราม\nโอลิมเปีย\nโออิชิ\nไอน์สไตน์\nฮอนด้า\nฮอปกินส์\nฮอลลีวูด\nฮอลลีวู้ด\nฮานามิ\nฮามาส\nฮิตเลอร์\nฮิตาชิ\nฮุนเซน\nฮุนเซ็น\nฮุนได\nฮุสเซ็น\nเฮนรี\nเฮนรี่\nเฮเลน\nโฮจิมินห์\nโฮปเวลล์\nโฮเมอร์\n\nกลีเซอรีน\nกำทอน\nแกนีมีด\nครอส\nคริสตัล\nคลอโรพลาสต์\nคลอไรด์\nควอนตัม\nคอนดักเตอร์\nคอปเปอร์\nคอลลาเจน\nคอเลสเตอรอล\nคอสมิก\nคูลอมบ์\nเคอราติน\nแคโรทีน\nแคสสินี\nโครมาโทกราฟี\nไคโตซาน\nจีโนม\nจุลชีววิทยา\nชิคุนกุนยา\nซัลฟิวริก\nซัลเฟต\nซัลไฟด์\nซิงค์\nซิริอุส\nซิลิกา\nซิลิเกต\nซิลิโคน\nซีเทน\nซีเวิร์ต\nเซ็กเตอร์\nเซ็กเมนต์\nเซมิ\nโซนาร์\nไซบอร์ก\nดอปเปลอร์\nดอปเพลอร์\nไดนามิก\nไดนามิกส์\nไดนามิค\nไดนามิคส์\nไดออกไซด์\nทรานส์\nทามิฟลู\nเทฟลอน\nเทสโทสเตอโรน\nเทอร์โม\nแทนนิน\nไททัน\nไทฟอยด์\nไทรอยด์\nธาลัสซีเมีย\nเนกาตีฟ\nโนวา\nบอแรกซ์\nโบทอกซ์\nโบท็อกซ์\nไบโอติน\nปฏิยานุพันธ์\nโปรเจสเตอโรน\nพอลิเมอร์\nพันธุศาสตร์\nพัลซาร์\nพาร์กินสัน\nพาราเซตามอล\nพาราโบลา\nเพอร์ออกไซด์\nโพรเจสเทอโรน\nโพลาไรซ์\nโพลิเมอร์\nโพลีเอทิลีน\nไพรเมต\nฟลาโวนอยด์\nฟลูออเรสเซนซ์\nฟลูออไรด์\nฟอสซิล\nฟิชชัน\nฟิวชัน\nฟีโรโมน\nไฟเบอร์\nมอนอกไซด์\nมิราจ\nเมตริกซ์\nเมทริกซ์\nเมลานิน\nเมลามีน\nโมเมนตัม\nไมโตคอนเดรีย\nไมโทคอนเดรีย\nยีสต์\nยูริก\nยูเรีย\nรูมาตอยด์\nวีก้า\nเวกเตอร์\nเวก้า\nเวสิเคิล\nโวลต์\nสเกล\nสเกลาร์\nสเต็ม\nสเตียรอยด์\nสปีชีส์\nสเปิร์ม\nสัมพัทธภาพ\nสุริยจักรวาล\nออกเทน\nออโรรา\nออโรร่า\nอะคริลิก\nอะครีลิก\nอะซีติก\nอะซีโตน\nอะมิโน\nอะลูมินา\nอันโดรเมดา\nอัลคาไลน์\nอัลตราซาวด์\nอัลตราซาวนด์\nอัลลอยด์\nอินทิกรัล\nอินทิเกรต\nอีโบลา\nอีโบล่า\nเอ็กซ์โพเนนเชียล\nเอทานอล\nเอทิลีน\nเอนโทรปี\nเอสเตอร์\nเอสโตรเจน\nเอสโทรเจน\nแอนดรอยด์\nแอนแทร็กซ์\nแอมพลิจูด\nแอมโมเนียม\nแอลกอฮอลิซึม\nแอสพาร์แตม\nโอเซลทามิเวียร์\nฮับเบิล\nฮิวมัส\nไฮดรอกไซด์\nไฮดรอลิก\nไฮโดรลิก\nไฮเพอร์โบลา\n\nกงเต็ก\nกฎุมพี\nกฏ\nกฏหมาย\nกบฎ\nกราไฟต์\nก๊อปปี้\nกะทะ\nกังวาล\nกุฎฐัง\nกุฏุมพี\nฃวด\nคฑา\nคลินิค\nคลีนิก\nคลีนิค\nคาทอลิค\nคึ่นฉ่าย\nแคตตาล็อก\nโควต้า\nฅน\nจุมพฎ\nช็อคโกแลต\nแซ่ด\nดัทช์\nทนง\nทรมาณ\nทราก\nทะแยง\nทิฏฐิ\nบล็อค\nบ๊องแบ๊ว\nบัลเล่ต์\nเบรค\nแบงค์\nปรากฎ\nปัคคหะ\nปาฏิโมกข์\nปิติ\nปิรามิด\nโปรเตสแตนท์\nพนิช\nพยักเพยิด\nพริ้ว\nพลูโตเนียม\nพากษ์\nเฟิร์น\nยากี้\nเยภุยยสิกา\nรุสเซีย\nฤาษี\nล็อค\nล็อคเกอร์\nวันทยาหัตถ์\nวานิช\nวิญญาน\nวิศิษฐ์\nศรีษะ\nสเปกโทรสโคป\nสฤษฎ์\nสลิ่ม\nสัตตสดก\nสาราณียากร\nสุกี้\nสุกี้ยากี้\nสูญญากาศ\nหยอมแหยม\nหยอย\nหล่ะ\nอะดรีนาลีน\nอะหลั่ย\nอัตคัต\nอัฟริกา\nอานิสงค์\nอาฟริกา\nอิริยาบท\nอิเลคโทรนิคส์\nอีรุงตุงนัง\nอุตรายัน\nอุลตรา\nอุลตร้า\nโอกาศ\n\nกกหู\nกงการ\nกงจักร\nกฎเกณฑ์\nกฎบัตร\nกฎหมาย\nกฎหมู่\nกดขี่\nกดดัน\nก้นกบ\nก้นบึ้ง\nก้นปล่อง\nกนิษฐภคินี\nกนิษฐภาดา\nกรงเล็บ\nกรมการ\nกรมท่า\nกรมธรรม์\nกรมนา\nกรมวัง\nกรรมกร\nกรรมการ\nกรรมฐาน\nกรรมบถ\nกรรมพันธุ์\nกรรมวิธี\nกรรมสิทธิ์\nกระจกเงา\nกระจกตา\nกระจกนูน\nกระจกเว้า\nกระจอกชวา\nกระจอกเทศ\nกระจ้อยร่อย\nกระจับบก\nกระจับปิ้ง\nกระจับปี่\nกระโชกโฮกฮาก\nกระดานดำ\nกระดานหก\nกระดาษแก้ว\nกระดาษไข\nกระดาษทราย\nกระดาษสา\nกระดูกงู\nกระทาชาย\nกระเท่เร่\nกระบวนการ\nกระบองเพชร\nกระผีกริ้น\nกระยาทิพย์\nกระยาสารท\nกระยาหาร\nกระสอบทราย\nกระสุนปืน\nกระแสจิต\nกระแสน้ำ\nกระแสลม\nกรับคู่\nกรับพวง\nกรับเสภา\nกราดเกรี้ยว\nกราวรูด\nกริ่งเกรง\nกรีฑาสถาน\nกรีดกราย\nกรี๊ดกร๊าด\nกลไก\nกลบท\nกลเม็ด\nกลยุทธ์\nกลวิธี\nกลศาสตร์\nกลอักษร\nกลบเกลื่อน\nกลมกล่อม\nกลมกลืน\nกลมเกลียว\nกล้วยแขก\nกล้วยไม้\nกล่องเสียง\nกล่อมเกลา\nกล่อมเกลี้ยง\nกลัดกลุ้ม\nกลัดมัน\nกลั่นกรอง\nกลั่นแกล้ง\nกลับกลอก\nกลางคน\nกลางคัน\nกลางค่ำ\nกลางคืน\nกลางแจ้ง\nกลางแปลง\nกลางวัน\nกลาดเกลื่อน\nกล่าวขวัญ\nกล่าวโทษ\nกล่าวหา\nกล้ำกราย\nกล้ำกลืน\nกลิ้งกลอก\nกลิ้งเกลือก\nกลิ่นอาย\nกลียุค\nกวดขัน\nกวัดแกว่ง\nกวัดไกว\nกวีนิพนธ์\nก่อกวน\nก่อการ\nก่อตั้ง\nก่อสร้าง\nก่อหวอด\nก้อร่อก้อติก\nกองกลาง\nกองเกิน\nกองโจร\nกองทัพ\nกองทุน\nกองพล\nกองพัน\nกองฟอน\nกองร้อย\nกองหนุน\nกอบโกย\nกะเกณฑ์\nกะบังลม\nกักกัน\nกักขัง\nกักตัว\nกักตุน\nกัณฑ์เทศน์\nกัดฟัน\nกันชน\nกันท่า\nกันสาด\nกันเอง\nกับแกล้ม\nกับข้าว\nกับระเบิด\nกากเพชร\nกากหมู\nกาชาด\nกาญจนาภิเษก\nก้านคอ\nกาฝาก\nก้ามกราม\nกามกิจ\nกามคุณ\nกามเทพ\nกามโรค\nก้ามปู\nกายกรรม\nกายบริหาร\nกายภาพ\nกายวิภาค\nกายสิทธิ์\nก่ายกอง\nการคลัง\nการเงิน\nการบ้าน\nการเปรียญ\nการเมือง\nการเรือน\nการละเล่น\nกาลกิริยา\nกาลเทศะ\nก้าวก่าย\nก้าวร้าว\nก้าวหน้า\nกาสาวพัสตร์\nกาฬพฤกษ์\nกาฬโรค\nกำปั้น\nกำมือ\nกำแพงขาว\nกำลังใจ\nกำลังม้า\nกี่งอำเภอ\nกิจกรรม\nกิจการ\nกิจวัตร\nกิจจะลักษณะ\nกิตติคุณ\nกิตติศัพท์\nกินขาด\nกินใจ\nกินดอง\nกินโต๊ะ\nกินแบ่ง\nกินเปล่า\nกินเลี้ยง\nกินเส้น\nกินแหนง\nกิโลกรัม\nกิโลเมตร\nกิโลลิตร\nกิโลเฮิรตซ์\nกีดกัน\nกีดกั้น\nกีดขวาง\nกึกก้อง\nกึกกัก\nกึกกือ\nกึ่งกลาง\nกุกกัก\nกุ๊กกิ๊ก\nกุ้งฝอย\nกุ้งมังกร\nกุ้งแห้ง\nกุ้งเต้น\nกุ้งยิง\nกุญแจผี\nกุญแจมือ\nกุญแจเลื่อน\nกุญแจเสียง\nกุลธิดา\nกุลบุตร\nกุลสตรี\nกู้ยืม\nเก้งก้าง\nเก็บกวาด\nเก็บเกี่ยว\nเก็บงำ\nเก็บตก\nเกรงกลัว\nเกรงใจ\nเกรงขาม\nเกรียงไกร\nเกรียมกรม\nเกรี้ยวกราด\nเกล็ดเลือด\nเกลี้ยกล่อม\nเกลี้ยงเกลา\nเกลือกกลั้ว\nเกลือกกลิ้ง\nเกลื่อนกล่น\nเกลื่อนกลาด\nเกศธาตุ\nเกษตรกร\nเกษตรกรรม\nเกษตรศาสตร์\nเกษมสันต์\nเกษียรสมุทร\nเก้อเขิน\nเกาะแกะ\nเกี่ยงงอน\nเกียจคร้าน\nเกียรติคุณ\nเกียรตินิยม\nเกียรติประวัติ\nเกียรติภูมิ\nเกียรติยศ\nเกียรติศักดิ์\nเกียรติมุข\nเกี่ยวข้อง\nเกี่ยวดอง\nเกี่ยวพัน\nเกี่ยวโยง\nเกี้ยวพาน\nเกี้ยวพาราสี\nแก่แดด\nแก้ขัด\nแก้ไข\nแก้ตัว\nแก้เผ็ด\nแก้ลำ\nแกงคั่ว\nแกงจืด\nแกงบวด\nแกงป่า\nแกงเผ็ด\nแกงส้ม\nแก่งแย่ง\nแก่นแก้ว\nแก่นสาร\nแก้วตา\nแก้วหู\nแกว่งกวัด\nแกว่งไกว\nแกะรอย\nโก้เก๋\nโกรธเกรี้ยว\nโกรธขึ้ง\nไก่เขี่ย\nไก่ชน\nไก่บ้าน\nไก่ป่า\nไก่ฟ้า\nไกล่เกลี่ย\nขจัดขจาย\nขนเพชร\nขนสัตว์\nขนหนู\nขนส่ง\nขนมจีน\nขบขัน\nขบวนการ\nข่มขี่\nข่มขู่\nข่มขืน\nข่มเหง\nขมหิน\nขมิ้นชัน\nขมุบขมิบ\nขยะแขยง\nขยักขย่อน\nขยักขย้อน\nขยับขยาย\nขยับเขยื้อน\nขวดโหล\nขวยเขิน\nขวัญใจ\nขวัญตา\nขวัญอ่อน\nขวากหนาม\nขวางโลก\nของ้าว\nขอสับ\nขอขมา\nขอทาน\nขอโทษ\nขอร้อง\nขออภัย\nข้อเขียน\nข้อความ\nข้อเท็จจริง\nของกลาง\nของขวัญ\nของแข็ง\nของชำ\nของลับ\nของเล่น\nของว่าง\nของเหลว\nของไหล\nของไหว้\nข้องใจ\nข้องแวะ\nขอบข่าย\nขอบเขต\nขอบคุณ\nขอบใจ\nขอบพระคุณ\nข้อมูล\nข้อแม้\nข้อหา\nข้อสังเกต\nขัดข้อง\nขัดขืน\nขัดเขิน\nขัดจังหวะ\nขัดดอก\nขัดแตะ\nขัดยอก\nขัดแย้ง\nขัดสมาธิ\nขันหมาก\nขันอาสา\nขับขี่\nขับเคี่ยว\nขั้วโลก\nขาจร\nขาประจำ\nข้าราชการ\nข้าศึก\nข้าหลวง\nขาดแคลน\nขาดใจ\nขาดตอน\nขาดตัว\nขาดทุน\nขาดเหลือ\nขายหน้า\nข่าวกรอง\nข่าวคราว\nข่าวล่า\nข่าวลือ\nข่าวสาร\nข้าวเกรียบ\nข้าวแกง\nข้าวของ\nข้าวจี่\nข้าวเจ้า\nข้าวซอย\nข้าวต้ม\nข้าวตอก\nข้าวตัง\nข้าวแตน\nข้าวทิพย์\nข้าวบิณฑ์\nข้าวเปลือก\nข้าวโพด\nข้าวฟ่าง\nข้าวเม่า\nข้าวสวย\nข้าวสาร\nข้าวเหนียว\nข้าวหมาก\nข้าวหลาม\nขี้เกียจ\nขี้ข้า\nขี้ครอก\nขี้คร้าน\nขี้คุก\nขี้ไคล\nขี้เซา\nขีดขั้น\nขีดคร่อม\nขีดคั่น\nขีดฆ่า\nขี้ตา\nขี้ตืด\nขี้เถ้า\nขี้ทูด\nขี้ปะติ๋ว\nขี้ผึ้ง\nขี้มูก\nขี้ยา\nขี้แย\nขี้ริ้ว\nขี้เรื้อน\nขี้เล็บ\nขี้หู\nขี้หน้า\nขี้เหนียว\nขี้เหล็ก\nขี้เหร่\nขึงขัง\nขึงพืด\nขึ้งโกรธ\nขึ้นใจ\nขึ้นชื่อ\nขึ้นมือ\nขืนใจ\nขื่นขม\nขุดคุ้ย\nขุนทอง\nขุนนาง\nขุนพล\nขุนศึก\nขุนหลวง\nขูดรีด\nเข็มกลัด\nเข็มขัด\nเข้มข้น\nเข้มแข็ง\nเข้มงวด\nเข็มทิศ\nเข็มหมุด\nเข้าขา\nเข้าเค้า\nเข้าใจ\nเข้าชื่อ\nเข้าตัว\nเข้าถึง\nเข้าทรง\nเข้าท่า\nเข้าที\nเข้าเนื้อ\nเข้าเล่ม\nเขียวเสวย\nเขียวหวาน\nแขกเต้า\nแข็งกร้าว\nแข็งกล้า\nแข็งแกร่ง\nแข็งข้อ\nแข็งขัน\nแข่งขัน\nแข็งใจ\nแข็งตัว\nแข็งเมือง\nแข็งแรง\nแขวนลอย\nโขกสับ\nโขยกเขยก\nไขข้อ\nไขควง\nไขมัน\nไข่มุก\nไขว่ห้าง\nไขสันหลัง\nไขสือ\nไข่เค็ม\nไข่เยี่ยวม้า\nไข่หงส์\nไข่เหี้ย\nคงกระพัน\nคงตัว\nคงทน\nคงที่\nคชลักษณ์\nคชสาร\nคชสีห์\nคชราช\nคณิตศาสตร์\nคดเคี้ยว\nคติธรรม\nคติพจน์\nคนกลาง\nคนไข้\nคนใช้\nคนทรง\nคบไฟ\nคบเพลิง\nคบค้า\nคบคิด\nคบหา\nคมคาย\nครบครัน\nครบถ้วน\nครอบครอง\nครอบคลุม\nครอบครัว\nครอบงำ\nครอบจักรวาล\nคริสตกาล\nคริสตจักร\nคริสต์มาส\nคริสต์ศตวรรษ\nคริสต์ศักราช\nคริสตัง\nคริสเตียน\nครุกรรม\nครุภัณฑ์\nครุศาสตร์\nครุฑพ่าห์\nครุ่นคิด\nคลอเคลีย\nคล่องแคล่ว\nคล่องตัว\nคล่องมือ\nคลั่งไคล้\nคลาคล่ำ\nคลาไคล\nคลาดเคลื่อน\nคลาดแคล้ว\nคลี่คลาย\nคลึงเคล้น\nคลึงเคล้า\nคลื่นไส้\nคลื่นเหียน\nคลุกคลี\nคลุกคลาน\nคลุมเครือ\nคลุมโปง\nคลุ้มคลั่ง\nควงสว่าน\nควบคุม\nควบคู่\nควบแน่น\nควันหลง\nความคิด\nความหลัง\nความเห็น\nคอหอย\nคอห่าน\nคอแห้ง\nค่อนขอด\nค่อนแคะ\nค้อนควัก\nคั่งค้าง\nคั่งแค้น\nคัดค้าน\nคัดง้าง\nคัดท้าย\nคัดเลือก\nคันจาม\nคันฉ่อง\nคันฉาย\nคันชัก\nคันชั่ง\nคันไถ\nคันนา\nคันเร่ง\nคับขัน\nคับคั่ง\nคับแค้น\nคับแคบ\nคางทูม\nคางหมู\nค้างคืน\nค้างปี\nคาดคั้น\nคาดเชือก\nคาดโทษ\nคาดหมาย\nคานหาม\nคาบเกี่ยว\nคาบศิลา\nคาบสมุทร\nคำขาด\nคำนำ\nคิดค้น\nคืนดี\nคืนตัว\nคุกเข่า\nคุณค่า\nคุณชาย\nคุณธรรม\nคุณนาย\nคุณภาพ\nคุณลักษณะ\nคุณวุฒิ\nคุณศัพท์\nคุณสมบัติ\nคุณหญิง\nคุณากร\nคุณูปการ\nคุโณปการ\nคุมเชิง\nคุ้มกัน\nคุยเขื่อง\nคุยโต\nคุ้ยเขี่ย\nคุ้มครอง\nคู่กรณี\nคู่กัด\nคู่ขา\nคู่แข่ง\nคู่ครอง\nคู่ควร\nคู่คิด\nคู่คี่\nคู่ใจ\nคู่ชีพ\nคู่ชีวิต\nคู่บารมี\nคู่บุญ\nคู่ปรปักษ์\nคู่ปรับ\nคู่ผสม\nคู่มือ\nคู่รัก\nคู่ลำดับ\nคู่สาย\nคู่หมั้น\nคู่หู\nคู่อริ\nคู่อาฆาต\nเคมีภัณฑ์\nเคยตัว\nเคร่งขรึม\nเคร่งครัด\nเคร่งเครียด\nเครดิตฟองซิเอร์\nเครื่องกล\nเครื่องกัณฑ์\nเครื่องแกง\nเครื่องเขิน\nเครื่องครัว\nเครื่องเคียง\nเครื่องเงิน\nเครื่องจักร\nเครื่องเซ่น\nเครื่องดนตรี\nเครื่องต้น\nเครื่องทุ่นแรง\nเครื่องเทศ\nเครื่องใน\nเครื่องบิน\nเครื่องบูชา\nเครื่องแบบ\nเครื่องประดับ\nเครื่องปรุง\nเครื่องปรุงรส\nเครื่องมือ\nเครื่องยนต์\nเครื่องร่อน\nเครื่องราง\nเครื่องเรือน\nเครื่องล่าง\nเครื่องเล่น\nเครื่องสาย\nเครื่องสำอาง\nเครื่องสุกำศพ\nเครื่องหมาย\nเครือรัฐ\nเคลียคลอ\nเคลื่อนที่\nเคลื่อนไหว\nเคลือบแคลง\nเคลือบแฝง\nเคลือบฟัน\nเคว้งคว้าง\nเคหสถาน\nเค้าโครง\nเคียดแค้น\nเคี่ยวเข็ญ\nเคี้ยวเอื้อง\nเคืองขุ่น\nโคนม\nโคบาล\nโคมูตร\nโคมลอย\nโครงการ\nโครงเรื่อง\nโครงงาน\nโครงสร้าง\nโครมคราม\nโคลงเคลง\nฆ้องกระแต\nฆ้องชัย\nฆ้องวง\nฆ้องหุ่ย\nฆ้องเหม่ง\nฆ้องโหม่ง\nฆาตกร\nฆาตกรรม\nฆานประสาท\nงงงวย\nงงงัน\nงดเว้น\nงบดุล\nงบประมาณ\nงมโข่ง\nงมงาย\nง่วงงุน\nง่วงเหงา\nงอหาย\nง้องอน\nงอนง้อ\nงอมแงม\nงาช้าง\nง่าเงย\nงานการ\nง่ายดาย\nงึมงำ\nเงินเดือน\nเงินตรา\nเงินยวง\nเงียบกริบ\nเงียบเชียบ\nเงียบเหงา\nเงื่องหงอย\nเงื่อนไข\nเงื่อนงำ\nเงื่อนเวลา\nเงื้อมมือ\nแง่งอน\nจงใจ\nจงรัก\nจดจ่อ\nจดจำ\nจดหมาย\nจดหมายเหตุ\nจรจัด\nจรรยาบรรณ\nจริงจัง\nจริงใจ\nจอมขวัญ\nจอมใจ\nจอมทัพ\nจอมปลวก\nจอมพล\nจ๊ะเอ๋\nจักสาน\nจักรพรรดิ\nจักรภพ\nจักรยาน\nจักรยานยนต์\nจักรราศี\nจักรวรรดิ\nจักรวรรดินิยม\nจักรวาล\nจังหนับ\nจัดการ\nจัดจ้าน\nจัดเจน\nจัดแจง\nจัดตั้ง\nจัดสรร\nจับกุม\nจับจด\nจับเจ่า\nจ่าหน้า\nจาตุทสี\nจาตุมหาราช\nจาตุมหาราชิก\nจาตุมหาราชิกา\nจาตุรงคสันนิบาต\nจาตุรราชการ\nจานเชิง\nจานบิน\nจานผี\nจานเสียง\nจาบจ้วง\nจำเป็น\nจำพรรษา\nจำวัด\nจ้ำจี้จ้ำไช\nจำเลาะตา\nจิงโจ้น้ำ\nจิตใจ\nจิตตภาวนา\nจิตตัง\nจิตตานุปัสสนา\nจิตนิยม\nจิตบำบัด\nจิตแพทย์\nจิตวิสัย\nจิตรกร\nจิตรกรรม\nจิตรลดา\nจิตวิทยา\nจิตเวช\nจิตเวชศาสตร์\nจินตกวี\nจินตนา\nจินตนาการ\nจินตภาพ\nจุฑามณี\nจุฑามาศ\nจุฑารัตน์\nจุนเจือ\nจุ้นจ้าน\nจุลชีพ\nจุลชีวัน\nจุลชีวิน\nจุลทรรศน์\nจุลภาค\nจุลวรรค\nจุลศักราช\nจุลสาร\nจุลินทรีย์\nจุฬามณี\nจุฬาลักษณ์\nเจตคติ\nเจตจำนง\nเจตนารมณ์\nเจตภูต\nเจริญพร\nเจ้ากรม\nเจ้ากรรม\nเจ้าของ\nเจ้าขา\nเจ้าข้า\nเจ้าคณะ\nเจ้าค่ะ\nเจ้าจอม\nเจ้าชู้\nเจ้าตัว\nเจ้าถิ่น\nเจ้าท่า\nเจ้าที่\nเจ้าทุกข์\nเจ้านาย\nเจ้าเนื้อ\nเจ้าบ้าน\nเจ้าบ่าว\nเจ้าประคุณ\nเจ้าประคู้น\nเจ้าพนักงาน\nเจ้าพระคุณ\nเจ้าพระยา\nเจ้าพ่อ\nเจ้าพายุ\nเจ้าฟ้า\nเจ้าภาพ\nเจ้ามือ\nเจ้าแม่\nเจ้าเรือน\nเจ้าสังกัด\nเจ้าสัว\nเจ้าสาว\nเจ้าหน้าที่\nเจ้าหนี้\nเจ้าอาวาส\nเจาะจง\nเจือจาง\nเจือจาน\nเจือปน\nเจื้อยแจ้ว\nแจกจ่าย\nแจ่มแจ้ง\nแจ่มใส\nโจงกระเบน\nโจมตี\nโจรกรรม\nโจรสลัด\nใจความ\nใจคอ\nฉกฉวย\nฉกชิง\nฉลองได\nฉ้อฉล\nฉัตรมงคล\nฉันทลักษณ์\nฉายาลักษณ์\nฉิบหาย\nฉุกเฉิน\nฉุกละหุก\nฉุนเฉียว\nฉุปศาสตร์\nเฉไฉ\nเฉยเมย\nเฉาโฉด\nเฉิดฉัน\nเฉิดฉาย\nเฉิดฉิน\nเฉียบขาด\nเฉียบพลัน\nเฉียบแหลม\nเฉื่อยชา\nแฉะแบะ\nโฉดเฉา\nโฉมงาม\nโฉมฉาย\nโฉมเฉลา\nโฉมตรู\nโฉมยง\nโฉมศรี\nโฉมหน้า\nชดช้อย\nชดเชย\nชดใช้\nชนบท\nชนินทร์\nชนกกรรม\nชนมพรรษา\nชนมายุ\nชมเชย\nชมพูทวีป\nชมพูนท\nชมพูนุท\nชราธรรม\nชราภาพ\nชลจร\nชลธาร\nชลธี\nชลนัยน์\nชลนา\nชลเนตร\nชลประทาน\nชลมารค\nชลาธาร\nชลาลัย\nชลาศัย\nชลาสินธุ์\nชโลทร\nช่วงชิง\nช่วงใช้\nชวนชม\nชวนหัว\nช่วยเหลือ\nช่อฟ้า\nช่อม่วง\nชอกช้ำ\nช่องเขา\nช่องแคบ\nช่องไฟ\nช่องว่าง\nช้องนาง\nชอบกล\nชอบใจ\nชอบธรรม\nชอบพอ\nชักโครก\nชักเงา\nชักจูง\nชักชวน\nชักนำ\nชักเนื้อ\nชักพระ\nชักเย่อ\nชักใย\nชั่งใจ\nชังฆวิหาร\nชัดเจน\nชั้นเชิง\nชั่วคน\nชั่วคราว\nชั่วช้า\nชั่วโมง\nชั่วแล่น\nชาเย็น\nช้านาน\nช่างเครื่อง\nช่างฝีมือ\nช่างฟิต\nช่างไฟ\nช้างน้ำ\nช้างเผือก\nช้างพลาย\nช้างพัง\nช้างสาร\nช้างสีดอ\nชาติธรรม\nชาตินิยม\nชาติพันธุ์\nชาติพันธุ์วิทยา\nชาติภูมิ\nชานชาลา\nชายชาตรี\nชายคา\nชายฝั่ง\nชายทะเล\nชาวเล\nชาววัง\nช้ำใจ\nช้ำชอก\nชิงชัง\nชิงพลบ\nชินชา\nชินบุตร\nชิ้นเอก\nชิมลาง\nชีเปลือย\nชี้ขาด\nชี้แจง\nชี้นำ\nชี้แนะ\nชี้ฟ้า\nชีพจร\nชีพิตักษัย\nชื่นชม\nชื่นบาน\nชื่นมื่น\nชื่อย่อ\nชื่อรอง\nชื่อเล่น\nชื่อเสียง\nชุกชุม\nชุติมา\nชุบตัว\nชุบเลี้ยง\nชุมชน\nชุมทาง\nชุมสาย\nชุ่มใจ\nชุ่มชื่น\nชุ่มชื้น\nชุมนุมชน\nชูชีพ\nชูโรง\nชู้สาว\nเชยชม\nเชลยศักดิ์\nเชลยศึก\nเช่าซื้อ\nเช้าตรู่\nเช้ามืด\nเชิงกราน\nเชิงกล\nเชิงชั้น\nเชิงชาย\nเชิงซ้อน\nเชิงเดียว\nเชิงเดี่ยว\nเชิงตะกอน\nเชิงเทิน\nเชิงมุม\nเชิดชู\nเชิงอรรถ\nเชี่ยนหมาก\nเชี่ยวชาญ\nเชื่องช้า\nเชื่อใจ\nเชื่อถือ\nเชื่อฟัง\nเชื่อมือ\nเชื้อชาติ\nเชื้อเพลิง\nเชื้อไฟ\nเชื้อโรค\nเชื้อสาย\nเชื้อเชิญ\nเชื่องช้า\nเชือนแช\nเชื่อวัน\nแช่เย็น\nแช่อิ่ม\nแช่มช้อย\nแช่มชื่น\nโชกโชน\nโชติช่วง\nโชติรส\nใช้สอย\nซบเซา\nซมซาน\nซวนเซ\nซอกซอน\nซอกแซก\nซ่องสุม\nซ่องเสพ\nซ่องแซ่ง\nซ่อนรูป\nซ่อนเร้น\nซ่อนหา\nซ่อนกลิ่น\nซ่อนทราย\nซ่อมแซม\nซักค้าน\nซักซ้อม\nซักไซ้\nซักฟอก\nซักแห้ง\nซังกะตาย\nซังตาย\nซัดเซ\nซัดทอด\nซับซ้อน\nซับใน\nซับพระพักตร์\nซากศพ\nซ่านเซ็น\nซ้ำซ้อน\nซ้ำซาก\nซ้ำเติม\nซ้ำร้าย\nซี่โครง\nซีดเซียว\nซึมกะทือ\nซึมซาบ\nซึมเซา\nซึมทราบ\nซึมเศร้า\nซื่อตรง\nซื่อสัตย์\nซื้อขาย\nซุกซน\nซุกซ่อน\nซุบซิบ\nซู่ซ่า\nเซซัง\nเซ่อซ่า\nแซ่ซ้อง\nโซดาไฟ\nญาณทัสนะ\nญาณวิทยา\nญาณศาสตร์\nญาติกา\nฐานราก\nดกดื่น\nดงดิบ\nดลใจ\nดลบันดาล\nดวงแก้ว\nดวงใจ\nดวงเดือน\nดวงตรา\nดวงตา\nดวงสมร\nดอกจัน\nดอกจิก\nดอกบัว\nดอกเบี้ย\nดอกฟ้า\nดอกไม้\nดอกยาง\nดอกเล็บ\nดอกทอง\nดอกสร้อย\nดองยา\nดักคอ\nดักฟัง\nดังนั้น\nดังนี้\nดังหนึ่ง\nดั้งเดิม\nดัดจริต\nดัดแปลง\nดันทุรัง\nดับขันธ์\nดับจิต\nดับชีพ\nด่าทอ\nด่างทับทิม\nด่างพร้อย\nดาดฟ้า\nดาราศาสตร์\nดาลเดือด\nดาวกระจาย\nดาวเคราะห์\nดาวตก\nดาวเทียม\nดาวรุ่ง\nดาวเรือง\nดาวฤกษ์\nดาวหาง\nดาวเหนือ\nดาษดื่น\nดินขาว\nดินดาน\nดินดำ\nดินประสิว\nดินปืน\nดินระเบิด\nดินสอ\nดินสอพอง\nดิ้นรน\nดิบดี\nดีเกลือ\nดีใจ\nดีซ่าน\nดีดัก\nดีเดือด\nดีฝ่อ\nดีดดิ้น\nดึกดำบรรพ์\nดึกดื่น\nดึงดัน\nดึงดูด\nดื่มด่ำ\nดื้อด้าน\nดื้อดึง\nดื้อแพ่ง\nดื้อยา\nดื้อรั้น\nดุดัน\nดุเดือด\nดุร้าย\nดุลการค้า\nดุลพินิจ\nดุลภาค\nดุลยพินิจ\nดุลยภาพ\nดุษฎีนิพนธ์\nดุษฎีบัณฑิต\nดุษณีภาพ\nดูแคลน\nดูถูก\nดูดาย\nดูเบา\nดูแล\nดูหมิ่น\nดูเหมือน\nดูดดื่ม\nเด็ดขาด\nเด็ดดวง\nเด็ดเดี่ยว\nเดนตาย\nเดาสวด\nเดาสุ่ม\nเดินทาง\nเดินสะพัด\nเดินสาย\nเดินเหิน\nเดิมพัน\nเดียงสา\nเดียดฉันท์\nเดียวกัน\nเดียวดาย\nเดี๋ยวเดียว\nเดี๋ยวนี้\nเดือดดาล\nเดือดร้อน\nเดือนมืด\nเดือนหงาย\nแดดาล\nแดดิ้น\nแดกดัน\nโด่เด่\nโด่งดัง\nโดดเดี่ยว\nโดยสาร\nได้การ\nได้แก่\nได้ใจ\nได้ที\nได้ยิน\nได้เสีย\nตกเขียว\nตกค้าง\nตกใจ\nตกต่ำ\nตกแต่ง\nตกทอด\nตกฟาก\nตกมัน\nตกยาก\nตกลง\nตกหล่น\nต้นขั้ว\nต้นคิด\nต้นฉบับ\nต้นตอ\nต้นตำรับ\nต้นทุน\nต้นแบบ\nต้นเพลิง\nต้นมือ\nต้นไม้\nต้นร่าง\nต้นเรื่อง\nต้นสังกัด\nต้นหน\nต้นเหตุ\nตบตา\nตบแต่ง\nตบแผละ\nตบมือ\nต้มข่า\nต้มโคล้ง\nต้มยำ\nต้มส้ม\nตรมตรอม\nตรรกวิทยา\nตรรกศาสตร์\nตรวจการ\nตรวจการณ์\nตรวจตรา\nตระบัดสัตย์\nตรัสรู้\nตราตั้ง\nตราบาป\nตรายาง\nตราสาร\nตริตรอง\nตรีกฏุก\nตรีกาย\nตรีโกณ\nตรีโกณมิติ\nตรีคูณ\nตรีทูต\nตรีปิฎก\nตรีภพ\nตรีมูรติ\nตรึกตรอง\nตรึงตรา\nตรุษจีน\nตฤณชาติ\nตฤณมัย\nตลกบาตร\nตลบตะแลง\nตลบหลัง\nตลาดนัด\nตลาดน้ำ\nตลาดมืด\nตลาดสด\nต่อตี\nต่อเติม\nต่อว่า\nต่อสู้\nต่อกร\nต่อต้าน\nต่อแย้ง\nต้องการ\nต้องโทษ\nต้องหา\nต้อนรับ\nตอบโต้\nตอบแทน\nต่อยหอย\nตะพาบน้ำ\nตักตวง\nตักบาตร\nตั้งเข็ม\nตั้งไข่\nตั้งเค้า\nตั้งแง่\nตั้งใจ\nตั้งต้น\nตั้งแต่\nตั้งท้อง\nตัดขาด\nตัดใจ\nตัดเชือก\nตัดตอน\nตัดทอน\nตัดบท\nตัดพ้อ\nตัดรอน\nตัดสิน\nตับเต่า\nตับแลบ\nตับอ่อน\nตัวกลาง\nตัวการ\nตัวเก็ง\nตัวดี\nตัวตั้ง\nตัวเต็ง\nตัวถัง\nตัวแทน\nตัวประกอบ\nตัวประกัน\nตัวแปร\nตัวผู้\nตัวพิมพ์\nตัวเมีย\nตัวยืน\nตัวเลข\nตัวอย่าง\nตั๋วเงิน\nตั๋วแลกเงิน\nตากล้อง\nตาไก่\nตาข่าย\nตาชั่ง\nตาตุ่ม\nตาทวด\nตาปลา\nตาราง\nต่างหาก\nต้านทาน\nตามใจ\nตายใจ\nตายซาก\nตายด้าน\nตายตัว\nตายทั้งกลม\nตายห่า\nตายโหง\nตาลปัตร\nต่ำช้า\nต่ำต้อย\nตำส้ม\nติเตียน\nติณชาติ\nติดขัด\nติดใจ\nติดต่อ\nติดตั้ง\nติดตาม\nติดตื้น\nติดพัน\nติดลม\nติดอ่าง\nตีเกลียว\nตีขลุม\nตีความ\nตีคู่\nตีจาก\nตีตื้น\nตีแผ่\nตีรวน\nตีลังกา\nตีวง\nตีเสมอ\nตีนกา\nตีนคู้\nตีนจก\nตีนตะขาบ\nตีนผี\nตีนเหยียด\nตึกแถว\nตึกระฟ้า\nตึงเครียด\nตึงตัง\nตื้นตัน\nตื่นตัว\nตื่นตูม\nตื่นเต้น\nตุ๊ต๊ะ\nตุ้บตั้บ\nตุ้มหู\nตุลาการ\nตุลาคม\nตู้นิรภัย\nตูมตาม\nตู้เสบียง\nเตโชธาตุ\nเตร็ดเตร่\nเต้นรำ\nเตาแก๊ส\nเตาผิง\nเตาฟู่\nเตาไฟ\nเตารีด\nเตาสูบ\nเต่าทอง\nเต้ารับ\nเต้าส่วน\nเต้าเสียบ\nเต้าหู้ยี้\nแต่ละ\nแตกคอ\nแตกคอก\nแตกฉาน\nแตกดับ\nแตกตื่น\nแตกพาน\nแตกแยก\nแตกร้าว\nแตกหัก\nแต่งงาน\nแต่งตั้ง\nแต้มคู\nแต้มต่อ\nแตรงอน\nแตรเดี่ยว\nแตรฝรั่ง\nแตรฟันฟาร์\nแตรวง\nโต้ตอบ\nโต้เถียง\nโต้แย้ง\nโต๊ะหมู่\nโต๊ะอิหม่าม\nใต้ถุน\nไต้ก๋ง\nไต่คู้\nไต่เต้า\nไต่ถาม\nไต้ฝุ่น\nไตรจักร\nไตรจีวร\nไตรตรึงษ์\nไตรทวาร\nไตรปิฎก\nไตรเพท\nไตรภพ\nไตรภูมิ\nไตรภาคี\nไตรยางศ์\nไตรรงค์\nไตรรัตน์\nไตรลักษณ์\nไตรโลก\nไตรสรณคมน์\nไตรสิกขา\nไต่สวน\nถกเถียง\nถดถอย\nถนัดถนี่\nถนิมสร้อย\nถมถืด\nถมเถ\nถมไป\nถลากไถล\nถ้วนถี่\nถ้วยฟู\nถ่องแท้\nถอดถอน\nถ้อยคำ\nถ้อยแถลง\nถากถาง\nถ่านไฟฉาย\nถ่านหิน\nถามไถ่\nถ่ายทอด\nถ่ายทุกข์\nถ่ายเท\nถาวรวัตถุ\nถ้ำมอง\nถี่ถ้วน\nถึงใจ\nถูกใจ\nถูกชะตา\nเถรวาท\nเถ้าแก่\nเถ้าแก่เนี้ย\nแถมพก\nแถลงการณ์\nไถ่ถอน\nไถ่ถาม\nทดแทน\nทดรอง\nทดลอง\nทดสอบ\nทนทาน\nทนายความ\nทบทวน\nทแยงมุม\nทรงกลด\nทรงเครื่อง\nทรงเจ้า\nทรัพย์สิน\nทรามชม\nทรามเชย\nทรามวัย\nทรามสงวน\nทรามสวาท\nทรุดโทรม\nทฤษฎีบท\nท้วงติง\nท่วมท้น\nทวาทศ\nทวาทศมาส\nทวาบรยุค\nทวารบาล\nทวิบถ\nทวิบท\nทวิบาท\nทวิภาค\nทวิภาคี\nทวีคูณ\nทศกัณฐ์\nทศชาติ\nทศทิศ\nทศนิยม\nทศพร\nทศพล\nทศพิธราชธรรม\nทศมาส\nทศวรรษ\nท่อไอเสีย\nท้อถอย\nท้อแท้\nทองขาว\nทองคำ\nทองคำขาว\nทองคำเปลว\nทองเค\nทองแดง\nทองบรอนซ์\nทองม้วน\nทองย้อย\nทองสัมฤทธิ์\nทองหยอด\nทองหยิบ\nทองเหลือง\nทองเอก\nท่องเที่ยว\nท้องตรา\nท้องถิ่น\nท้องที่\nท้องน้อย\nท้องร่อง\nท้องเรื่อง\nทอดมัน\nทอดทิ้ง\nทอดน่อง\nทอดยอด\nทอดหุ่ย\nทอยกอง\nทะเบียนบ้าน\nทะเลทราย\nทะเลสาบ\nทะเลหลวง\nทักขิณาวัฏ\nทักท้วง\nทักทาย\nทักษิณาวรรต\nทักษิณาทาน\nทักษิณานุประทาน\nทั้งกลม\nทั้งคน\nทั้งดุ้น\nทั้งที\nทั้งนั้น\nทั้งนี้\nทั้งปวง\nทั้งผอง\nทั้งเพ\nทั้งมวล\nทั้งสิ้น\nทั้งหมด\nทั้งหลาย\nทัณฑ์บน\nทัดทาน\nทัดเทียม\nทันควัน\nทันใจ\nทันใด\nทันตา\nทันสมัย\nทันที\nทับถม\nทับทรวง\nทับศัพท์\nทั่วถึง\nทั่วไป\nท่าทาง\nท่าที\nท้าทาย\nทางการ\nทางข้าม\nทางด่วน\nทางเท้า\nทางโท\nทางใน\nทางผ่าน\nทางม้าลาย\nทางหลวง\nทางออก\nทางเอก\nทานกัณฑ์\nทานตะวัน\nท่านชาย\nทานบารมี\nท่านผู้หญิง\nท่านหญิง\nทาบทาม\nท้ายทอย\nทารุณกรรม\nทำคลอด\nทำใจ\nทำซ้ำ\nทำท่า\nทำที\nทำแท้ง\nทำโทษ\nทำบาป\nทำบุญ\nทำพิษ\nทำฟัน\nทำร้าย\nทำวัตร\nทำสาว\nทำเสน่ห์\nทำหมัน\nทำให้\nทิ้งขว้าง\nทิ้งทวน\nทิ้งท้าย\nทินกร\nทิพจักขุ\nทิพโสต\nทิพยจักษุ\nทิพยญาณ\nทิพยเนตร\nทิพยรส\nทิพากร\nทิ่มตำ\nทิ่มแทง\nทิวากร\nทิวากาล\nทิศทาง\nทีเด็ด\nทีท่า\nทีนี้\nทีหลัง\nทีฆนิกาย\nทีฆสระ\nที่ดิน\nที่นอน\nที่นั่ง\nที่ปรึกษา\nที่พึ่ง\nที่มั่น\nที่ราบ\nที่ว่าการ\nที่สุด\nที่หมาย\nที่ไหน\nทุกที\nทุกเมื่อ\nทุกข์สุข\nทุนทรัพย์\nทุนนิยม\nทุนรอน\nทุนสำรอง\nทุ่มเถียง\nทุ่มเท\nทูนหัว\nทูลกระหม่อม\nเทกระจาด\nเทครัว\nเทพเจ้า\nเทพดา\nเทพธิดา\nเทพนม\nเทพนิยม\nเทพนิยาย\nเทพบุตร\nเทพสังหรณ์\nเทศกาล\nเทศนาโวหาร\nเทศบัญญัติ\nเทศบาล\nเทศมนตรี\nเทห์ฟากฟ้า\nเท่ากับ\nเท่าใด\nเท่าตัว\nเท่าทัน\nเท่าทุน\nเท่าเทียม\nเท่านั้น\nเท่าไร\nเท้าช้าง\nเทิดทูน\nเที่ยงตรง\nเที่ยงแท้\nเที่ยงธรรม\nเทียนชนวน\nเทียนพรรษา\nเทียบเคียง\nเทียบเท่า\nเทือกเขา\nเทือกเถา\nแท็งก์น้ำ\nแท่นพิมพ์\nแท่นมณฑล\nแท่นหมึก\nแทรกซอน\nแทรกซ้อน\nแทรกซึม\nแทรกแซง\nแทะโลม\nไทยดำ\nไทยทาน\nไทยธรรม\nไทยน้อย\nไทยใหญ่\nธงชัย\nธงชาติ\nธงทิว\nธรณีวิทยา\nธรณีสงฆ์\nธรรมกาย\nธรรมการ\nธรรมเกษตร\nธรรมขันธ์\nธรรมคุณ\nธรรมจรรยา\nธรรมจริยา\nธรรมจักร\nธรรมจักษุ\nธรรมจาคะ\nธรรมจารี\nธรรมชาติ\nธรรมดา\nธรรมเนียม\nธรรมราชา\nธรรมศาสตร์\nธรรมสภา\nธรรมสังเวช\nธัญพืช\nธารพระกร\nธีรภาพ\nธีรราช\nนกเขา\nนกต่อ\nนกยูง\nนกรู้\nนกหวีด\nนครบาล\nนครรัฐ\nนงคราญ\nนงนุช\nนงพะงา\nนงเยาว์\nนงราม\nนงลักษณ์\nนบนอบ\nนพเก้า\nนพคุณ\nนพเคราะห์\nนพปฎล\nนพพล\nนพรัตน์\nนพศก\nนพศูล\nนมข้น\nนมผง\nนมไม้\nนมนาน\nนมหนู\nนมแมว\nนรีเวช\nนรีเวชวิทยา\nนวดฟั้น\nนวยนาด\nนวลระหง\nนวลลออ\nนวลละออง\nนวลจันทร์\nนอกครู\nนอกคอก\nนอกจาก\nนอกใจ\nนอกชาน\nนอกรีต\nนอกเหนือ\nนองเนือง\nนองเลือด\nนอนก้น\nนอนใจ\nนอบนบ\nนอนเล่น\nนอบน้อม\nน้อมนำ\nน้อยใจ\nน้อยหน้า\nนักการ\nนักการเมือง\nนักกีฬา\nนักข่าว\nนักท่องเที่ยว\nนักเทศน์\nนักโทษ\nนักธรรม\nนักบวช\nนักบิน\nนักบุญ\nนักปราชญ์\nนักพรต\nนักรบ\nนักเรียน\nนักเลง\nนักวิชาการ\nนักศึกษา\nนักสิทธิ์\nนักสืบ\nนักหนา\nนั่งเทียน\nนั่งร้าน\nนัดแนะ\nนัดหมาย\nนั่นแหละ\nนั่นเอง\nนับถือ\nนับประสา\nนัยน์ตา\nนาดำ\nนาปรัง\nนาปี\nนาสวน\nนาหว่าน\nนาคบาศ\nนาคปรก\nนาคราช\nนางกวัก\nนางกำนัล\nนางงาม\nนางใน\nนางบำเรอ\nนางแบบ\nนางพญา\nนางฟ้า\nนางไม้\nนางโลม\nนางสาว\nนางห้าม\nนางเอก\nนาฏกรรม\nนาฏดนตรี\nนาฏศิลป์\nนานนม\nน่านน้ำ\nน่านฟ้า\nนามกร\nนามธรรม\nนามไธย\nนามบัตร\nนามปากกา\nนามแฝง\nนามสกุล\nนามสงเคราะห์\nนามสมญา\nนายทะเบียน\nนายท่า\nนายท้าย\nนายทุน\nนายประกัน\nนายหน้า\nนายอำเภอ\nนารายณ์หัตถ์\nนารีผล\nนาวิกโยธิน\nนำจับ\nนำพา\nนำทาง\nนำร่อง\nนำสืบ\nนำแสดง\nน้ำกรด\nน้ำกาม\nน้ำเกลือ\nน้ำข้าว\nน้ำแข็ง\nน้ำแข็งไส\nน้ำแข็งแห้ง\nน้ำครำ\nน้ำคร่ำ\nน้ำค้าง\nน้ำค้างแข็ง\nน้ำคาวปลา\nน้ำคำ\nน้ำเค็ม\nน้ำเคย\nน้ำเงิน\nน้ำเงี้ยว\nน้ำจัณฑ์\nน้ำจิ้ม\nน้ำใจ\nน้ำเชื้อ\nน้ำเชื่อม\nน้ำซาวข้าว\nน้ำดอกไม้\nน้ำดี\nน้ำตก\nน้ำตา\nน้ำตาล\nน้ำท่า\nน้ำนม\nน้ำนวล\nน้ำบาดาล\nน้ำประสานทอง\nน้ำประปา\nน้ำปลา\nน้ำป่า\nน้ำผึ้ง\nน้ำพริก\nน้ำพริกเผา\nน้ำพี้\nน้ำพุ\nน้ำมนต์\nน้ำมนตร์\nน้ำมัน\nน้ำมือ\nน้ำมูก\nน้ำเมา\nน้ำย่อย\nน้ำยา\nน้ำรัก\nน้ำแร่\nน้ำลาย\nน้ำเลี้ยง\nน้ำสต๊อก\nน้ำส้ม\nน้ำส้มสายชู\nน้ำสังข์\nน้ำสาบาน\nน้ำเสียง\nน้ำหนวก\nน้ำหนอง\nน้ำหนัก\nน้ำหน้า\nน้ำหนึ่ง\nน้ำหมึก\nน้ำหอม\nน้ำเหลือง\nน้ำอบ\nน้ำอ้อย\nน้ำอัดลม\nนิ่งเฉย\nนิจศีล\nนิดเดียว\nนิดหน่อย\nนิติกร\nนิติกรรม\nนิติธรรม\nนิตินัย\nนิติบัญญัติ\nนิติบุคคล\nนิติภาวะ\nนิติวิทยาศาสตร์\nนิติเวช\nนิติเวชศาสตร์\nนิติศาสตร์\nนิเทศศาสตร์\nนิ่มนวล\nนิรุกติศาสตร์\nนิเวศวิทยา\nนิศากร\nนิศากาล\nนิศาชล\nนิศารัตน์\nนี่แน่ะ\nนี่แหละ\nนี่เอง\nนึกคิด\nนุงถุง\nนุ่งห่ม\nนุ่มนวล\nนุ่มนิ่ม\nเนตรนารี\nเนติบัณฑิต\nเนยเทียม\nเนยใส\nเนิ่นนาน\nเนิบนาบ\nเนื้อความ\nเนื้อคู่\nเนื้อเค็ม\nเนื้องอก\nเนื้อตัว\nเนื้อตาย\nเนื้อที่\nเนื้อแท้\nเนื้อเปื่อย\nเนื้อผ้า\nเนื้อเพลง\nเนื้อไม้\nเนื้อเยื่อ\nเนื้อร้อง\nเนื้อร้าย\nเนื้อเรื่อง\nเนื้อหา\nเนืองนอง\nเนืองนิตย์\nเนืองแน่น\nแน่ใจ\nแน่ชัด\nแน่แท้\nแน่นอน\nแน่นิ่ง\nแน่แน่ว\nแน่นแฟ้น\nแน่นหนา\nแนบเนียน\nแนบแน่น\nแนวคิด\nแนวทาง\nแนวโน้ม\nแนวป่า\nแนวรบ\nแนวร่วม\nแนวหน้า\nแนวหลัง\nแน่วแน่\nแนะนำ\nแนะแนว\nโน้มน้าว\nในหลวง\nบกพร่อง\nบงกช\nบงการ\nบดบัง\nบทกลอน\nบทกวี\nบทความ\nบทคัดย่อ\nบทเฉพาะกาล\nบทนำ\nบทบัญญัติ\nบทบาท\nบทประพันธ์\nบทเพลง\nบทร้อง\nบทเรียน\nบทลงโทษ\nบทสนทนา\nบทอัศจรรย์\nบทจร\nบทบงสุ์\nบทมาลย์\nบทรัช\nบทเรศ\nบทวลัญช์\nบนบาน\nบรมครู\nบรมธาตุ\nบรมบพิตร\nบรมวงศานุวงศ์\nบรมอัฐิ\nบรรณพิภพ\nบรรณศาลา\nบรรณาการ\nบรรณาธิการ\nบรรณานุกรม\nบรรณารักษ์\nบรรณารักษศาสตร์\nบรรดามี\nบรรดาศักดิ์\nบรรทัดฐาน\nบรรพบุรุษ\nบรรลัยกัลป์\nบรรลัยจักร\nบริคณห์สนธิ\nบวงสรวง\nบ่วงบาศ\nบ้วนพระโอษฐ์\nบ่อเกิด\nบอกกล่าว\nบอกบท\nบอกบุญ\nบอกใบ้\nบอกปัด\nบ้องกัญชา\nบ้องตื้น\nบ้องไฟ\nบ้องหู\nบอดสี\nบ่อนทำลาย\nบอบช้ำ\nบอบบาง\nบอบแบบ\nบังโกลน\nบังโคลน\nบังใบ\nบั้งไฟ\nบังคับการ\nบังคับบัญชา\nบัญชาการ\nบัณฑุกัมพล\nบัดดล\nบัดเดี๋ยว\nบัดนั้น\nบัดนี้\nบัดสีบัดเถลิง\nบัตรเครดิต\nบัตรพลี\nบัตรสนเท่ห์\nบัตรสินเชื่อ\nบั่นทอน\nบั้นท้าย\nบั้นปลาย\nบั้นพระองค์\nบั้นเอว\nบันไดลิง\nบันไดเลื่อน\nบันเทิงคดี\nบัวลอย\nบัวบก\nบ้าจี้\nบ้าดีเดือด\nบ้าน้ำลาย\nบ้าบิ่น\nบ้าระห่ำ\nบ้าเลือด\nบ้าหอบฟาง\nบากบั่น\nบากหน้า\nบางตา\nบางเบา\nบางที\nบาดเจ็บ\nบาดแผล\nบาดหมาง\nบาตรใหญ่\nบาทบงกช\nบาทบงสุ์\nบาทบริจาริกา\nบาทวิถี\nบานเกล็ด\nบานตะเกียง\nบานตะไท\nบานเบอะ\nบานปลาย\nบานแผละ\nบานพับ\nบ้านจัดสรร\nบ้านช่อง\nบ้านนอก\nบ้านพัก\nบ้านเมือง\nบ้านรับรอง\nบ้านเรือน\nบาปกรรม\nบายศรี\nบ่ายเบี่ยง\nบ่ายหน้า\nบ่าวไพร่\nบิดเบี้ยว\nบิดเบือน\nบิดพลิ้ว\nบี้แบน\nบีบคั้น\nบีบรัด\nบึ้งตึง\nบึ้งบูด\nบุกบั่น\nบุกเบิก\nบุกรุก\nบุคลิกภาพ\nบุคลิกลักษณะ\nบุญธรรม\nบุญนิธิ\nบุญฤทธิ์\nบุบสลาย\nบุ้ยใบ้\nบุรุษเพศ\nบุหงารำไป\nบู้บี้\nบูชายัญ\nบูดบึ้ง\nบูดเบี้ยว\nเบาความ\nเบาใจ\nเบาบาง\nเบาปัญญา\nเบามือ\nเบาแรง\nเบาสมอง\nเบาหวาน\nเบาโหวง\nเบ้าตา\nเบาะแส\nเบิกความ\nเบิกบาน\nเบี้ยล่าง\nเบี้ยเลี้ยง\nเบี้ยหวัด\nเบี่ยงบ่าย\nเบียดบัง\nเบียดเบียน\nเบียดเสียด\nเบื้องต้น\nเบื้องบน\nเบื้องหน้า\nเบื้องหลัง\nแบกะดิน\nแบเบาะ\nแบ่งเบา\nแบ่งปัน\nแบ่งแยก\nแบบฉบับ\nแบบแปลน\nแบบแผน\nแบบฝึกหัด\nแบบพิมพ์\nแบบสอบถาม\nแบบอย่าง\nแบะแฉะ\nแบะท่า\nโบแดง\nโบราณคดี\nโบราณวัตถุ\nโบราณสถาน\nใบขับขี่\nใบจอง\nใบตอง\nใบแทรก\nใบบอก\nใบบุญ\nใบเบิกทาง\nใบปลิว\nใบพัด\nใบโพ\nใบไม้\nใบระกา\nใบรับรอง\nใบลา\nใบเลี้ยง\nใบสั่ง\nใบสำคัญ\nใบสุทธิ\nใบเสร็จ\nใบหน้า\nใบอนุญาต\nใบระกา\nปกครอง\nปกคลุม\nปกป้อง\nปกปิด\nปฏิบัติการ\nปฏิบัติบูชา\nปฐพีวิทยา\nปฐมฌาน\nปฐมทัศน์\nปฐมเทศนา\nปฐมนิเทศ\nปฐมพยาบาล\nปฐมยาม\nปฐมฤกษ์\nปฐมวัย\nปฐมสมโพธิ\nปนเป\nป่นปี้\nปมเขื่อง\nปมเด่น\nปมด้อย\nปรนเปรอ\nปรบไก่\nปรบมือ\nปรสิตวิทยา\nประโปรย\nประพรม\nประกันชีวิต\nประกันภัย\nประจักษ์พยาน\nประจัญบาน\nประจันหน้า\nประจำการ\nประจำเดือน\nประจำเมือง\nประจำยาม\nประชดประชัน\nประชากร\nประชากรศาสตร์\nประชาคม\nประชาชน\nประชาราษฎร์\nประชาชาติ\nประชาชี\nประชาทัณฑ์\nประชาบาล\nประชาพิจารณ์\nประชาภิบาล\nประชามติ\nประชาสงเคราะห์\nประชาสัมพันธ์\nประดับประดา\nประดามี\nประดาน้ำ\nประเดี๋ยวเดียว\nประเดี๋ยวนี้\nประทับใจ\nประทุษร้าย\nประเทศราช\nประพาสต้น\nประเพณีนิยม\nประลัยกัลป์\nประวัติการณ์\nประวัติศาสตร์\nประสบการณ์\nประสบการณ์นิยม\nประสาทการ\nประสูติการ\nประสูติกาล\nประเส\nปรับทุกข์\nปรับโทษ\nปรับปรุง\nปรากฏการณ์\nปราดเปรียว\nปราดเปรื่อง\nปราบปราม\nปริญญาบัตร\nปรัยัติธรรม\nปรุโปร่ง\nปลงใจ\nปลงตก\nปลดทุกข์\nปลดปลง\nปลดปล่อย\nปลดเปลื้อง\nปลดระวาง\nปลดแอก\nปล้นสะดม\nปลอกกระสุน\nปลอกคอ\nปลอดโปร่ง\nปลอดภัย\nปลอมปน\nปลอมแปลง\nปลอบโยน\nปล่อยใจ\nปล่อยตัว\nปล่อยปละ\nปลั๊กไฟ\nปลากริม\nปลาเค็ม\nปลาจ่อม\nปลาเจ่า\nปลาแดก\nปลาตู้\nปลาทอง\nปลาร้า\nปลาส้ม\nปลาดาว\nปลาบิน\nปลาฝา\nปลาวาฬ\nปลาหมึก\nปลาบปลื้ม\nปลายข้าว\nปลายแถว\nปลายทาง\nปลิ้นปลอก\nปลิ้นปล้อน\nปลีกตัว\nปลีกย่อย\nปลุกใจ\nปลุกปล้ำ\nปลุกปั่น\nปลุกระดม\nปลุกเสก\nปลูกฝัง\nปลูกสร้าง\nปวดถ่วง\nปวดมวน\nปวดร้าว\nป่วนปั่น\nป่วยการ\nปอกลอก\nป้องกัน\nปักใจ\nปักดำ\nปักหลัก\nปัจเจกบุคคล\nปัจเจกพุทธะ\nปัจเจกโพธิ\nปัจฉิมชน\nปัจฉิมทิศ\nปัจฉิมภาค\nปัจฉิมยาม\nปัจฉิมลิขิต\nปัจฉิมวัย\nปัจฉิมวาจา\nปัญญาชน\nปัญญาวิมุติ\nปัญญาอ่อน\nปัดเป่า\nปันส่วน\nปั่นป่วน\nปั่นแปะ\nปั่นหัว\nปั้นจิ้ม\nปั้นเจ๋อ\nปั้นปึ่ง\nปั้นสิบ\nปั๊มน้ำมัน\nป่าช้า\nป่าชายเลน\nป่าดง\nป่าดงดิบ\nป่าดิบ\nป่าเถื่อน\nป่าเบญจพรรณ\nป่าละเมาะ\nปากกา\nปากขอ\nปากแข็ง\nปากคอ\nปากคำ\nปากคีบ\nปากจัด\nปากน้ำ\nปากเปล่า\nปากเสียง\nปานกลาง\nป่านนี้\nป้านลม\nป้ายสี\nป่าวร้อง\nปิดฉาก\nปิดบัง\nปิตุฆาต\nปิตุภูมิ\nปีมะโว้\nปีแสง\nปี่กลาง\nปี่ไฉน\nปี่ชวา\nปี่นอก\nปี่ใน\nปี่พาทย์\nปี่อ้อ\nปีกกา\nปีนเกลียว\nปีนป่าย\nปึกแผ่น\nปึงปัง\nปืนกล\nปืนครก\nปืนพก\nปืนยา\nปืนยาว\nปืนลม\nปืนเล็ก\nปืนเล็กยาว\nปืนสั้น\nปืนใหญ่\nปุบปับ\nปุ๊บปั๊บ\nปุ่มเปือก\nปุยฝ้าย\nปุ๋ยคอก\nปุ๋ยเคมี\nปุ๋ยวิทยาศาสตร์\nปุ๋ยหมัก\nปุ๋ยอินทรีย์\nปูจ๋า\nปูเสฉวน\nปู่เจ้า\nปู่ทวด\nปูนขาว\nปูนซีเมนต์\nปูนดิบ\nปูนแดง\nปูนปลาสเตอร์\nปูนปั้น\nเป็ดเทศ\nเป็ดน้ำ\nเป็นกลาง\nเป็นใจ\nเป็นต้น\nเป็นต่อ\nเป็นรอง\nเป็นไร\nเป็นลม\nเป็นห่วง\nเป็นอยู่\nเปรมปรีดิ์\nเปรอะเปื้อน\nเปรียบเทียบ\nเปรียบเปรย\nเปรี้ยวปาก\nเปรี้ยวหวาน\nเปรื่องปราด\nเปลญวน\nเปล่งปลั่ง\nเปล่าดาย\nเปล่าเปลี่ยว\nเปลี่ยนใจ\nเปลี่ยนตัว\nเปลี่ยนแปลง\nเปลี่ยนมือ\nเปลี่ยนหน้า\nเป๋อเหลอ\nเปะปะ\nเป่ากบ\nเป้านิ่ง\nเป้าหมาย\nเปิดฉาก\nเปิดเปิง\nเปิดโปง\nเปิดผนึก\nเปิดเผย\nเปียกปูน\nแป้งสาลี\nแป้งนวล\nแป้งเปียก\nแป้งมัน\nแป้งฝุ่น\nแป้งร่ำ\nแป้งสิงคโปร์\nแป้งหมี่\nแปดปน\nแปดเปื้อน\nแปรปรวน\nแปรผัน\nแปรพักตร์\nแปรรูป\nแปรอักษร\nแปลกปลอม\nแปะโป้ง\nโป้ปด\nโปร่งแสง\nโปร่งใส\nโปรดปราน\nโปรยทาน\nโปรยปราย\nโปโลน้ำ\nผกผัน\nผกากรอง\nผงขาว\nผงชูรส\nผงซักฟอก\nผงฟู\nผดุงครรภ์\nผมไฟ\nผลพลอยได้\nผลลัพธ์\nผลัดเปลี่ยน\nผลิตผล\nผลิตภัณฑ์\nผลุบโผล่\nผสมเทียม\nผสมผสาน\nผสมผเส\nผสมพันธุ์\nผสมโรง\nผสมเสร็จ\nผ่องแผ้ว\nผ่องใส\nผ่อนคลาย\nผ่อนชำระ\nผ่อนปรน\nผ่อนผัน\nผ่อนส่ง\nผอมโซ\nผอมแห้ง\nผักชี\nผักตบชวา\nผักบุ้ง\nผังเมือง\nผัดผ่อน\nผันแปร\nผันผวน\nผ่าตัด\nผ่าเผย\nผ่าหมาก\nผ่าเหล่า\nผ้าขนหนู\nผ้าขาวม้า\nผ้าขี้ริ้ว\nผ้าเช็ดตัว\nผ้าเช็ดปาก\nผ้าเช็ดมือ\nผ้าเช็ดหน้า\nผ้าดิบ\nผ้าต่วน\nผ้าไตร\nผ้าถุง\nผ้าแถบ\nผ้านวม\nผ้านุ่ง\nผ้าใบ\nผ้าป่า\nผ้าป่าน\nผ้าผ่อน\nผ้าพันคอ\nผ้าพันแผล\nผ้าแพร\nผ้าโพกหัว\nผ้ามัดหมี่\nผ้ายาง\nผ้าลูกไม้\nผ้าเหลือง\nผ้าอนามัย\nผ้าอ้อม\nผาดโผน\nผาติกรรม\nผิดหวัง\nผิวเผิน\nผิวพรรณ\nผิวหนัง\nผีกระสือ\nผีกระหัง\nผีกองกอย\nผีโขมด\nผีดิบ\nผีตองเหลือง\nผีถ้วยแก้ว\nผีแถน\nผีทะเล\nผีบุญ\nผีปอบ\nผีพุ่งไต้\nผีฟ้า\nผีเรือน\nผีสาง\nผีเสื้อ\nผีห่า\nผึ่งผาย\nผุดผ่อง\nผุดผาด\nผู้คน\nผู้คุม\nผู้จัดการ\nผู้ชาย\nผู้เชี่ยวชาญ\nผู้ดี\nผู้โดยสาร\nผู้ต้องขัง\nผู้ต้องหา\nผู้แทน\nผู้น้อย\nผู้บริโภค\nผู้บังคับบัญชา\nผู้ปกครอง\nผู้ประกอบการ\nผู้ป่วย\nผู้พิพากษา\nผู้เยาว์\nผู้ร้าย\nผู้วิเศษ\nผู้สื่อข่าว\nผู้เสียหาย\nผู้หญิง\nผู้ใหญ่\nผู้ใหญ่บ้าน\nผูกขวัญ\nผูกขาด\nผูกพัน\nผูกมัด\nเผชิญหน้า\nเผด็จการ\nเผด็จศึก\nเผยแผ่\nเผยแพร่\nเผละผละ\nเผ่าพันธุ์\nเผื่อแผ่\nแผงลอย\nแผนการ\nแผนงาน\nแผนที่\nแผนผัง\nแผนภาพ\nแผนภูมิ\nแผ่นดิน\nแผ่นเสียง\nแผ้วพาน\nโผงผาง\nฝนทอง\nฝอยทอง\nฝักแค\nฝักบัว\nฝักฝ่าย\nฝักใฝ่\nฝังใจ\nฝังหัว\nฝาชี\nฝาแฝด\nฝาละมี\nฝ่าพระบาท\nฝ่าฝืน\nฝ่าฟัน\nฝ้าฟาง\nฝากตัว\nฝากฝัง\nฝีดาษ\nฝีมะม่วง\nฝีจักร\nฝีเท้า\nฝีปาก\nฝีพาย\nฝีมือ\nฝีเย็บ\nฝึกงาน\nฝึกปรือ\nฝึกฝน\nฝึกสอน\nฝึกหัด\nฝืดเคือง\nใฝ่ฝัน\nพงพี\nพงศ์พันธุ์\nพญาโศก\nพญาไฟ\nพบปะ\nพบพาน\nพรสวรรค์\nพรมคด\nพรมแดน\nพรมมิ\nพรรคพวก\nพรรณราย\nพรวดพราด\nพรหมชาติ\nพรหมลิขิต\nพรหมโลก\nพรหมวิหาร\nพร้อมใจ\nพร้อมพรั่ง\nพร้อมเพรียง\nพร้อมมูล\nพร้อมสรรพ\nพร้อมหน้า\nพระครู\nพระคุณ\nพระเคราะห์\nพระเครื่อง\nพระเจ้า\nพระเจ้าอยู่หัว\nพระชายา\nพระทัย\nพระนาง\nพระนางเจ้า\nพระเป็นเจ้า\nพระผู้เป็นเจ้า\nพระพิมพ์\nพระพุทธเจ้า\nพระพุทธองค์\nพระภูมิ\nพระยา\nพระรอง\nพระสนม\nพระสนมเอก\nพระองค์\nพระองค์เจ้า\nพระเอก\nพรั่งพร้อม\nพรั่งพรู\nพรั่นพรึง\nพร่างพราว\nพรายน้ำ\nพรายแพรว\nพราวแพรว\nพร่ำพลอด\nพร่ำเพรื่อ\nพร่ำเพ้อ\nพริกไทย\nพริ้งพราย\nพริ้งเพรา\nพริ้งเพริศ\nพริบตา\nพริ้มพราย\nพริ้มเพรา\nพรุ่งนี้\nพฤติกรรม\nพฤติการณ์\nพฤตินัย\nพลการ\nพลขับ\nพลความ\nพลเมือง\nพลรบ\nพลร่ม\nพลเรือน\nพลโลก\nพลศึกษา\nพลบค่ำ\nพลอดรัก\nพลังงาน\nพลังเงียบ\nพลังจิต\nพลั้งปาก\nพลั้งเผลอ\nพลั้งพลาด\nพลัดถิ่น\nพลัดพราก\nพลาดท่า\nพลาดพลั้ง\nพลิกแพลง\nพลีกรรม\nพลุ่งพล่าน\nพวกพ้อง\nพวงมาลัย\nพวงมาลา\nพวงหรีด\nพวงคราม\nพวงชมพู\nพวงแสด\nพ่วงพี\nพวยน้ำ\nพวยพุ่ง\nพสกนิกร\nพหุคูณ\nพหุภาคี\nพหูพจน์\nพหูสูต\nพอควร\nพอใจ\nพอใช้\nพอใช้ได้\nพอดี\nพอตัว\nพอทำเนา\nพอประมาณ\nพอเพียง\nพอแรง\nพอสมควร\nพอเหมาะ\nพ่อขุน\nพ่อครัว\nพ่อตา\nพ่อบ้าน\nพ่อพันธุ์\nพ่อม่าย\nพ่อเมือง\nพ่อเลี้ยง\nพ่อสื่อ\nพอกพูน\nพ้องพาน\nพักผ่อน\nพักพิง\nพักฟื้น\nพักร้อน\nพักแรม\nพัดยศ\nพัดลม\nพันพัว\nพับฐาน\nพับเพียบ\nพัวพัน\nพาซื่อ\nพาดพิง\nพิณพาทย์\nพิธีกร\nพิธีกรรม\nพิธีการ\nพิธีรีตอง\nพิธีสาร\nพินัยกรรม\nพิมพ์เขียว\nพิมพ์ใจ\nพิมพ์ดีด\nพิษสง\nพี่น้อง\nพี่เบิ้ม\nพี่เลี้ยง\nพึงใจ\nพึงพอใจ\nพึ่งพา\nพึ่งพิง\nพืชพันธุ์\nพืชมงคล\nพื้นฐาน\nพื้นที่\nพื้นบ้าน\nพื้นเพ\nพื้นเมือง\nพื้นเสีย\nพุพอง\nพุทธกาล\nพุทธคุณ\nพุทธจักร\nพุทธเจดีย์\nพุทธฎีกา\nพุทธปฏิมา\nพุทธปฏิมากร\nพุทธมามกะ\nพุทธศักราช\nพุทธศาสนิกชน\nพุทธองค์\nพุทธชาด\nพุทธรักษา\nพุ่มพวง\nพุ่มไม้\nพู่กัน\nพูดจา\nเพ่งเล็ง\nเพดานบิน\nเพดานปาก\nเพริศพราย\nเพริศพริ้ง\nเพริศแพร้ว\nเพรียกพร้อง\nเพรียวลม\nเพลงเชิด\nเพลงยาว\nเพลิงกัลป์\nเพลินใจ\nเพลินตา\nเพลี่ยงพล้ำ\nเพ้อฝัน\nเพาะกาย\nเพาะชำ\nเพาะปลูก\nเพิกถอน\nเพิกเฉย\nเพิ่มเติม\nเพิ่มพูน\nเพียงตา\nเพียงพอ\nเพียบแประ\nเพียบพร้อม\nเพื่อนเกลอ\nเพื่อนตาย\nเพื่อนบ้าน\nเพื่อนฝูง\nเพื่อนยาก\nแพ้ท้อง\nแพร่หลาย\nแพร่งพราย\nแพรวพราว\nโพธิญาณ\nโพธิบัลลังก์\nโพธิสมภาร\nโพธิสัตว์\nโพ้นทะเล\nโพยภัย\nไพ่ตาย\nไพ่ป๊อก\nไพรวัน\nไพรสณฑ์\nไพรสัณฑ์\nไพร่พล\nไพร่ฟ้า\nไพร่สม\nไพร่ส่วย\nไพร่หลวง\nฟกช้ำ\nฟองเต้าหู้\nฟองน้ำ\nฟองมัน\nฟ้องกลับ\nฟ้องร้อง\nฟอนเฟะ\nฟักทอง\nฟัดเฟียด\nฟันดาบ\nฟันฝ่า\nฟันแท้\nฟันน้ำนม\nฟันปลา\nฟันฟาง\nฟันเฟือง\nฟันม้า\nฟันเลื่อย\nฟันหนู\nฟั่นเฝือ\nฟั่นเฟือน\nฟื้นตัว\nฟื้นฝอย\nฟื้นฟู\nฟุ้งซ่าน\nฟุ้งเฟ้อ\nฟุ้งเฟื่อง\nฟุตบอล\nฟูฟ่อง\nฟูเฟื่อง\nฟูมฟัก\nฟูมฟาย\nเฟะฟะ\nเฟื่องฟ้า\nเฟื่องฟุ้ง\nเฟื่องฟู\nไฟฉาย\nไฟแช็ก\nไฟธาตุ\nไฟฟ้า\nภัตกิจ\nภาคทัณฑ์\nภาคพื้น\nภาคเรียน\nภาคภูมิ\nภาพถ่าย\nภาพนิ่ง\nภาพประกอบ\nภาพพจน์\nภาพยนตร์\nภาพลวงตา\nภาพลักษณ์\nภายนอก\nภายใน\nภายหน้า\nภายหลัง\nภารกิจ\nภารธุระ\nภารโรง\nภารตวิทยา\nภาษาศาสตร์\nภาสกร\nภิญโญภาพ\nภินชาติ\nภูธร\nภูธเรศ\nภูบาล\nภูเบศ\nภูเบศวร์\nภูเขา\nภูเขาไฟ\nภูผา\nภูตคาม\nภูตบดี\nภูตรูป\nภูเตศวร\nภูมินทร์\nภูมิบาล\nภูมิประเทศ\nภูมิภาค\nภูมิรัฐศาสตร์\nภูมิลำเนา\nภูมิศาสตร์\nภูมิอากาศ\nภูมิธรรม\nภูมิปัญญา\nภูมิรู้\nภูมิใจ\nภูมิฐาน\nภูมิคุ้มกัน\nภูมิแพ้\nภูษาโยง\nเภทภัย\nเภสัชกร\nเภสัชกรรม\nเภสัชวิทยา\nเภสัชศาสตร์\nโภคทรัพย์\nโภคภัณฑ์\nโภชนากร\nโภชนาการ\nมกุฎราชกุมาร\nมงคลแฝด\nมงคลสูตร\nมงคลหัตถี\nมณเฑียรบาล\nมดดำ\nมดแดง\nมดเท็จ\nมดยอบ\nมดลูก\nมธุปายาส\nมธุรส\nมนเทียรบาล\nมนุษย์กบ\nมโนกรรม\nมโนคติ\nมโนทุจริต\nมโนธรรม\nมโนภาพ\nมโนมัย\nมโนรถ\nมโนรมย์\nมโนสุจริต\nมรรคนายก\nมรรคผล\nมฤคชาติ\nมฤคทายวัน\nมฤคราช\nมลทิน\nมลพิษ\nมลสาร\nมวกเหล็ก\nม้วนหน้า\nมวยไทย\nมวยปล้ำ\nมวยล้ม\nมวยวัด\nมวยสากล\nมวยหมู่\nมวลสาร\nมอคราม\nมอซอ\nมอหมึก\nมองเมียง\nมอบตัว\nมอบหมาย\nมอมเมา\nมะขามเทศ\nมะขามป้อม\nมะขามเปียก\nมะเขือเทศ\nมะเขือพวง\nมะพร้าวแก้ว\nมักคุ้น\nมักจี่\nมักง่าย\nมักน้อย\nมักมาก\nมักใหญ่\nมั่งคั่ง\nมั่งมี\nมัจจุราช\nมัชฌิมนิกาย\nมัชฌิมประเทศ\nมัชฌิมยาม\nมัชฌิมวัย\nมัดจำ\nมัดหมี่\nมัธยมกาล\nมัธยมศึกษา\nมันแกว\nมันเทศ\nมันฝรั่ง\nมันเปลว\nมันสมอง\nมั่นคง\nมั่นใจ\nมั่นหมาย\nมั่นเหมาะ\nมัวเมา\nมัวหมอง\nมั่วสุม\nม้าเทศ\nม้าน้ำ\nม้ามืด\nม้าเร็ว\nม้าล่อ\nม้าลาย\nมากมาย\nมาตรการ\nมาตรฐาน\nมาตราส่วน\nมาตุคาม\nมาตุฆาต\nมาตุภูมิ\nม่านตา\nม่านบังตา\nมายากร\nมายากล\nมายาการ\nมายาวี\nมารผจญ\nมารวิชัย\nมารสังคม\nมารหัวขน\nมาลาการ\nมิ่งขวัญ\nมิ่งมิตร\nมิจฉาจาร\nมิจฉาชีพ\nมิดชิด\nมิดเมี้ยน\nมิดหมี\nมิตรจิต\nมิตรภาพ\nมิตรสหาย\nมิน่า\nมีหน้า\nมีดโกน\nมีดดาบ\nมีดโต้\nมีดพก\nมีดพับ\nมีดสั้น\nมึนงง\nมึนชา\nมึนตึง\nมึนเมา\nมืดครึ้ม\nมืดมน\nมืดมัว\nมือจับ\nมือดี\nมือเติบ\nมือปืน\nมือเปล่า\nมือมืด\nมือสอง\nมือเสือ\nมือหนึ่ง\nมือใหม่\nมุกตลก\nมุขปาฐะ\nมุขมนตรี\nมุ่งมั่น\nมุ่งมาด\nมุ่งหน้า\nมุ่งหมาย\nมุ่งหวัง\nมุ้งลวด\nมุ้งสายบัว\nมุมก้ม\nมุมกลับ\nมุมเงย\nมุมฉาก\nมุมตรง\nมุมป้าน\nมุมมืด\nมุมแย้ง\nมุมสะท้อน\nมุมหักเห\nมุมแหลม\nมุสาวาท\nมูกเลือด\nมูกมัน\nมูกหลวง\nมูนดิน\nมูลฐาน\nมูลนาย\nมูลนิธิ\nมูลเหตุ\nมูลค่า\nมูลฝอย\nเม็ดเงิน\nเม็ดเลือด\nเม็ดโลหิต\nเม่นทะเล\nเมรุมาศ\nเมรุราช\nเมล์อากาศ\nเมาดิบ\nเมามัน\nเมามัว\nเมามาย\nเมินเฉย\nเมียน้อย\nเมียหลวง\nเมียงมอง\nเมี่ยงลาว\nเมี่ยงส้ม\nเมื่อกี้\nเมื่อตะกี้\nเมื่อใด\nเมื่อไร\nเมื่อไหร่\nเมื่อนั้น\nเมืองขึ้น\nเมืองท่า\nเมืองนอก\nเมืองหลวง\nเมื่อยขบ\nเมื่อยล้า\nแม่กอง\nแม่กุญแจ\nแม่คุณ\nแม่งาน\nแม่เจ้า\nแม่ชี\nแม่ทัพ\nแม่นม\nแม่น้ำ\nแม่บท\nแม่บ้าน\nแม่เบี้ย\nแม่พระ\nแม่พิมพ์\nแม่เพลง\nแม่มด\nแม่ม่าย\nแม่ไม้\nแม่ยก\nแม่ยาย\nแม่ร้าง\nแม่เรือน\nแม่แรง\nแม่เล้า\nแม่เลี้ยง\nแม่สี\nแม่สื่อ\nแม่เหล็ก\nแมงมุม\nแม่นยำ\nแมลงช้าง\nแมลงวัน\nแมลงปอ\nแมลงภู่\nแมลงเม่า\nแมวเซา\nแมวน้ำ\nแมวป่า\nแมวมอง\nไม้กลัด\nไม้กวาด\nไม้กางเขน\nไม้เกาหลัง\nไม้ขีดไฟ\nไม้จิ้มฟัน\nไม้เด็ด\nไม้ตาย\nไม้ตีพริก\nไม้ที\nไม้เท้า\nไม้บรรทัด\nไม้เมตร\nไม้ระแนง\nไม้เรียว\nไม้หมอน\nไม้อัด\nไม้จัตวา\nไม้ตรี\nไม้ไต่คู้\nไม้โท\nไม้ผัด\nไม้มลาย\nไม้ม้วน\nไม้ยมก\nไม้หน้า\nไม้หันอากาศ\nไม้เอก\nยกกลีบ\nยกครู\nยกเครื่อง\nยกเค้า\nยกทรง\nยกฟ้อง\nยกเมฆ\nยกยอ\nยกย่อง\nยกเลิก\nยกเว้น\nย่นย่อ\nยมทูต\nยมบาล\nยมราช\nยมโลก\nยวดยิ่ง\nยวดยาน\nยวนยี\nยวบยาบ\nย่อท้อ\nย่อส่วน\nย่อหน้า\nย่อหย่อน\nยอกย้อน\nยองใย\nย่องเบา\nย่องแย่ง\nยอดเยี่ยม\nยอดอก\nย้อนยอก\nย้อนรอย\nย้อนศร\nย้อนแสง\nย้อนหลัง\nยอบแยบ\nยอมความ\nย่อมเยา\nย่อยยับ\nยักยอก\nยักย้าย\nยักเยื้อง\nยัญกรรม\nยัญพิธี\nยัดเยียด\nยับเยิน\nยับยั้ง\nยั่วยวน\nยั่วยุ\nยั่วเย้า\nยากวาด\nยากันยุง\nยาเขียว\nยาใจ\nยาฉุน\nยาชา\nยาซัด\nยาดอง\nยาแดง\nยาถ่าย\nยาธาตุ\nยานัตถุ์\nยาเบื่อ\nยาโป๊\nยาแฝด\nยาพิษ\nยาระบาย\nยาสลบ\nยาสั่ง\nยาสีฟัน\nยาสูบ\nยาเส้น\nยาเสพติด\nยาหม่อง\nยาเหลือง\nย่าทวด\nย่านาง\nยากแค้น\nยากจน\nยากเย็น\nยากไร้\nยางนอก\nยางใน\nยางมะตอย\nยางมะตูม\nยางลบ\nยางสน\nยางอาย\nย่างกราย\nย่างเยื้อง\nย่างสด\nย่างสามขุม\nย่างเหยียบ\nยานเกราะ\nยานพาหนะ\nยานอวกาศ\nยานคาง\nยายทวด\nยาวเฟื้อย\nยาวยืด\nยาวเหยียด\nยำทวาย\nยำใหญ่\nยำเกรง\nยำเยง\nย่ำต๊อก\nย่ำยี\nย่ำแย่\nยิงเป้า\nยิ่งนัก\nยิ่งยวด\nยิ่งใหญ่\nยินดี\nยินยอม\nยินร้าย\nยิ้มกริ่ม\nยิ้มแฉ่ง\nยิ้มแต้\nยิ้มแป้น\nยิ้มเผล่\nยิ้มเยาะ\nยิ้มแย้ม\nยียวน\nยึดครอง\nยึดถือ\nยึดมั่น\nยึดเหนี่ยว\nยืดยาด\nยืดยาว\nยืดเยื้อ\nยืดหยุ่น\nยืดอก\nยืนกราน\nยืนต้น\nยืนพื้น\nยืนยง\nยืนยัน\nยืนหยัด\nยื้อยุด\nยุยง\nยุแยง\nยุแหย่\nยุคลบาท\nยุคเข็ญ\nยุคทอง\nยุคมืด\nยุ่งขิง\nยุ่งยาก\nยุ่งเหยิง\nยุติธรรม\nยุทธการ\nยุทธนาวี\nยุทธปัจจัย\nยุทธภัณฑ์\nยุทธภูมิ\nยุทธวิธี\nยุทธศาสตร์\nยุทธหัตถี\nยุทธนาการ\nยุทธนาธิการ\nยุบยับ\nยุบยิบ\nยุพราช\nยู่ยี่\nเย็นเจี๊ยบ\nเย็นใจ\nเย็นฉ่ำ\nเย็นเฉียบ\nเย็นชา\nเย็นชืด\nเย็นตา\nเย็นเยียบ\nเย็นเยือก\nเย็นวาบ\nเย็นวูบ\nเย็บกี่\nเย็บจักร\nเย็บด้าย\nเย้ยหยัน\nเย้าหยอก\nเยาะเย้ย\nเยี่ยมกราย\nเยี่ยมเยียน\nเยี่ยมเยือน\nเยี่ยมยอด\nเยื่อเคย\nเยื่อใย\nเยือกเย็น\nเยื้องกราย\nเยื้องยัก\nเยื้องย่าง\nแยกย้าย\nแยกแยะ\nแย่งชิง\nแยบคาย\nแยบยล\nแย้มพราย\nแย้มยิ้ม\nแย้มสรวล\nโยเย\nโย้เย้\nโยกโคลง\nโยกย้าย\nโยกโย้\nโยนกลอง\nใยหิน\nรกชัฏ\nรกร้าง\nรกเรี้ยว\nรกเรื้อ\nรกราก\nรงควัตถุ\nรชนีกร\nรถกระบะ\nรถเก๋ง\nรถเข็น\nรถแข่ง\nรถจักร\nรถจี๊ป\nรถตู้\nรถทัวร์\nรถบรรทุก\nรถพ่วง\nรถพยาบาล\nรถไฟ\nรถไฟฟ้า\nรถม้า\nรถเมล์\nรถยนต์\nรถราง\nรถลาก\nรถสปอร์ต\nรถสิบล้อ\nรบกวน\nรบรา\nรบเร้า\nรมดำ\nร่มเกล้า\nร่มชูชีพ\nร่มเย็น\nร่มรื่น\nร่วงโรย\nรวงผึ้ง\nรวงรัง\nรวดเร็ว\nรวนเร\nรวบยอด\nรวบรวม\nรวบรัด\nรวมพล\nรวมหัว\nร่วมใจ\nร่วมเพศ\nร่วมมือ\nร่วมรัก\nร่วมสมัย\nรวยริน\nรวยรื่น\nรสชาติ\nรสนิยม\nรองท้อง\nรองเท้า\nรองพื้น\nร่องน้ำ\nร่องรอย\nร้องขอ\nร้องทุกข์\nร้องเรียน\nร้องห่ม\nร้องไห้\nรองช้ำ\nรองทรง\nรอดชีวิต\nรอดตัว\nรอดตาย\nรอนแรม\nร่อนเร่\nร้อนใจ\nร้อนตัว\nร้อนรน\nร้อนรุ่ม\nร้อนวิชา\nร้อนอาสน์\nรอบจัด\nรอบเดือน\nรอบรู้\nรอยร้าว\nร่อยหรอ\nร้อยละ\nร้อยกรอง\nร้อยแก้ว\nร้อยหวาย\nระนาดทุ้ม\nระนาดเอก\nระเบิดขวด\nระเบิดมือ\nระเบียบการ\nรักใคร่\nรักษาการ\nรักษาการณ์\nรังไข่\nรังแตน\nรังนก\nรังผึ้ง\nรังเพลิง\nรังมด\nรังสรรค์\nรังสฤษฏ์\nรั้งรอ\nรังสีแพทย์\nรังสีวิทยา\nรัชกาล\nรัชทายาท\nรัชนีกร\nรัฐธรรมนูญ\nรัฐบาล\nรัฐบุรุษ\nรัฐประศาสน์\nรัฐประหาร\nรัฐพิธี\nรัฐมนตรี\nรัฐวิสาหกิจ\nรัฐศาสตร์\nรัฐสภา\nรัดกุม\nรัดเกล้า\nรัดตัว\nรัดประคด\nรัดรึง\nรัดรูป\nรัตติกาล\nรับขวัญ\nรับจ้าง\nรับช่วง\nรับใช้\nรับซื้อ\nรับทราบ\nรับประกัน\nรับประทาน\nรับปาก\nรับผิด\nรับผิดชอบ\nรับฟ้อง\nรับฟัง\nรับมือ\nรับรอง\nรับรู้\nรับสมัคร\nรับสั่ง\nรับหน้า\nรับเหมา\nรั่วไหล\nรามือ\nร่าเริง\nรากแก้ว\nรากขวัญ\nรากฐาน\nรากฟัน\nรากศัพท์\nรากเหง้า\nร่างกาย\nร่างแห\nร้างรา\nราชกรณียกิจ\nราชการ\nราชกิจ\nราชครู\nราชฐาน\nราชทัณฑ์\nราชทินนาม\nราชทูต\nราชธานี\nราชนาวี\nราชบัณฑิต\nราชบัลลังก์\nราชบาตร\nราชบุตร\nราชปะแตน\nราชภัฏ\nราชมัล\nราชยาน\nราชรถ\nราชลัญจกร\nราชเลขาธิการ\nราชเลขานุการ\nราชวงศ์\nราชวัติ\nราชสกุล\nราชสมบัติ\nราชสาส์น\nราชหัตถเลขา\nราชองครักษ์\nราชโองการ\nราชาคณะ\nราชาศัพท์\nราชินีนาถ\nร้านชำ\nร้านรวง\nราบคาบ\nราบรื่น\nราบเรียบ\nรายการ\nรายงาน\nรายจ่าย\nรายได้\nรายทาง\nรายรับ\nรายล้อม\nรายละเอียด\nรายวิชา\nร่ายยาว\nร่ายรำ\nร้ายกาจ\nร้ายแรง\nราวนม\nราวป่า\nร้าวฉาน\nร้าวราน\nรำพัด\nรำแพน\nรำวง\nร่ำไป\nร่ำร้อง\nร่ำเรียน\nร่ำไร\nร่ำลา\nร่ำไห้\nริเริ่ม\nริอ่าน\nริมฝีปาก\nริ้วรอย\nรีบร้อน\nรีบรุด\nรีบเร่ง\nรื่นรมย์\nรื่นเริง\nรื้อถอน\nรื้อฟื้น\nรุกฆาต\nรุกราน\nรุกล้ำ\nรุกไล่\nรุ่งขึ้น\nรุ่งแจ้ง\nรุ่งเช้า\nรุ่งเรือง\nรุ่งโรจน์\nรุ่งสว่าง\nรุ่งสาง\nรุ่งอรุณ\nรุจิเรข\nรุดหน้า\nรุนแรง\nรุมเร้า\nรุมล้อม\nรุ่มรวย\nรุ่มร้อน\nรุ่ยร่าย\nรู้แกว\nรู้ความ\nรู้คุณ\nรู้งาน\nรู้จัก\nรู้แจ้ง\nรู้ใจ\nรู้เชิง\nรู้ตัว\nรู้ทัน\nรู้เท่า\nรู้เรื่อง\nรู้สำนึก\nรู้สึก\nรู้เห็น\nรูปการณ์\nรูปโฉม\nรูปฌาน\nรูปถ่าย\nรูปทรง\nรูปธรรม\nรูปแบบ\nรูปพรรณ\nรูปพรหม\nรูปภพ\nรูปภาพ\nรูปร่าง\nรูปสมบัติ\nเร่ร่อน\nเร่งด่วน\nเร่งมือ\nเร่งรัด\nเร่งรีบ\nเร่งเร้า\nเร้นลับ\nเร่อร่า\nเร่าร้อน\nเราะราย\nเราะร้าย\nเริงใจ\nเริงรมย์\nเริดร้าง\nเริ่มต้น\nเริ่มแรก\nเรี่ยราด\nเรี่ยไร\nเรียกคืน\nเรียกตัว\nเรียกร้อง\nเรียกหา\nเรียบร้อย\nเรียงความ\nเรียงตัว\nเรียงเบอร์\nเรียงพิมพ์\nเรียงเม็ด\nเรียงราย\nเรียนรู้\nเรียบร้อย\nเรียบเรียง\nเรียบวุธ\nเรี่ยมเร้\nเรี่ยวแรง\nเรือกลไฟ\nเรือกอและ\nเรือกำปั่น\nเรือจ้าง\nเรือดำน้ำ\nเรือโดยสาร\nเรือตรวจการณ์\nเรือตังเก\nเรือธง\nเรือนำร่อง\nเรือบด\nเรือบิน\nเรือใบ\nเรือประมง\nเรือพ่วง\nเรือพิฆาต\nเรือยนต์\nเรือยาว\nเรือโยง\nเรือรบ\nเรือลากจูง\nเรือสำปั้น\nเรือสำเภา\nเรือหลวง\nเรือหางยาว\nเรืออีโปง\nเรือเอี้ยมจุ๊น\nเรื้อรัง\nเรือกสวน\nเรืองนาม\nเรืองรอง\nเรืองแสง\nเรื่องราว\nเรื่องสั้น\nเรือนแก้ว\nเรือนจำ\nเรือนเบี้ย\nเรือนแพ\nเรือนหอ\nเรื่อยเจื้อย\nเรื่อยเฉื่อย\nเรื่อยเปื่อย\nแรเงา\nแรกนา\nแรกนาขวัญ\nแรงงาน\nแรงดึงดูด\nแรงเทียน\nแรงม้า\nแรงเหวี่ยง\nแรมรอน\nแรมรา\nแรมโรย\nโรคจิต\nโรงครัว\nโรงงาน\nโรงเจ\nโรงเตี๊ยม\nโรงทาน\nโรงนา\nโรงพยาบาล\nโรงพัก\nโรงพิมพ์\nโรงเรียน\nโรงเรือน\nโรงแรม\nโรงเลี้ยง\nโรงเลื่อย\nโรงสี\nโรงสีข้าว\nโรงอาหาร\nโรมรัน\nโรยรา\nฤชากร\nฤดูกาล\nลงขัน\nลงแขก\nลงคอ\nลงตัว\nลงท้าย\nลงทุน\nลงโทษ\nลงพุง\nลงมือ\nลงรัก\nลงรอย\nลงแรง\nลงโรง\nลงเอย\nลดตัว\nลดละ\nลดเลี้ยว\nลดหย่อน\nลดหลั่น\nลนลาน\nล้นพ้น\nล้นหลาม\nล้นเหลือ\nลบล้าง\nลบเลือน\nลบหลู่\nลมกรด\nลมค้า\nลมงวง\nลมแดด\nลมทะเล\nลมบก\nลมบน\nลมบ้าหมู\nลมปราณ\nลมปาก\nลมพิษ\nลมว่าว\nลมเสีย\nลมหนาว\nลมหายใจ\nล่มจม\nล่มสลาย\nล้มละลาย\nล้มลุก\nล้มเลิก\nล่วงเกิน\nล่วงรู้\nล่วงละเมิด\nล่วงลับ\nล่วงล้ำ\nล่วงเลย\nล่วงหน้า\nลวดลาย\nลวดสปริง\nลวดหนาม\nล้วนแล้ว\nลหุโทษ\nล่อลวง\nล่อหลอก\nล่อแหลม\nล้อต๊อก\nล้อเลื่อน\nล้อเล่น\nล้อเลียน\nล้อหลอก\nลองเชิง\nลองดี\nลองภูมิ\nล่องหน\nลอดช่อง\nล่อนจ้อน\nลอบกัด\nล้อมวง\nลอยแก้ว\nลอยชาย\nลอยตัว\nลอยนวล\nลอยแพ\nลอยลำ\nละทิ้ง\nละเลย\nละเว้น\nละครนอก\nละครใน\nละครเพลง\nละครร้อง\nละครรำ\nละครลิง\nละครสัตว์\nละเอียดอ่อน\nลักไก่\nลักพา\nลักเพศ\nลักยิ้ม\nลักลอบ\nลักลั่น\nลักหลับ\nลัดเลาะ\nลับตา\nลับแล\nลับหลัง\nลาออก\nล่าช้า\nล่าทัพ\nล้าสมัย\nล้าหลัง\nลากข้าง\nล้างบาง\nล้างผลาญ\nลาดเขา\nลาดตระเวน\nลาดเท\nลาดยาง\nลานบิน\nลาภปาก\nลาภลอย\nลามปาม\nลามเลีย\nลายคราม\nลายเซ็น\nลายแทง\nลายน้ำ\nลายพร้อย\nลายมือ\nลายลักษณ์\nลายเส้น\nลำกล้อง\nลำแข้ง\nลำธาร\nลำแสง\nลำไส้\nลำตัด\nลำนำ\nล่ำสัน\nล้ำยุค\nล้ำสมัย\nล้ำลึก\nล้ำเลิศ\nล้ำเส้น\nล้ำหน้า\nลิงจุ่น\nลิงลม\nลิงโลด\nลิดรอน\nลิ้นไก่\nลิ้นชัก\nลิ้นปี่\nลิ้นควาย\nลิ้นงูเห่า\nลิ้นหมา\nลิบลับ\nลิบลิ่ว\nลิ่มเลือด\nลี้ภัย\nลี้ลับ\nลึกซึ้ง\nลึกลับ\nลึกล้ำ\nลืมตน\nลืมต้น\nลืมตัว\nลืมตา\nลืมเลือน\nลือชา\nลือชื่อ\nลือลั่น\nลุล่วง\nลุกลน\nลุกลาม\nลุกลี้ลุกลน\nลุกฮือ\nลุ่มน้ำ\nลุ่มลึก\nลุ่มหลง\nลุ่ทาง\nลูกกรง\nลูกกรอก\nลูกกรุง\nลูกกลอน\nลูกกลิ้ง\nลูกกวาด\nลูกกะจ๊อก\nลูกกุญแจ\nลูกเกด\nลูกแก้ว\nลูกขนไก่\nลูกข่าง\nลูกขุน\nลูกเขย\nลูกครึ่ง\nลูกคลื่น\nลูกความ\nลูกคอ\nลูกค้า\nลูกคิด\nลูกคู่\nลูกจ้าง\nลูกช้าง\nลูกชิด\nลูกชิ้น\nลูกชุบ\nลูกซอง\nลูกโซ่\nลูกดอก\nลูกดิ่ง\nลูกตะกั่ว\nลูกตุ้ม\nลูกเต้า\nลูกเต๋า\nลูกถ้วย\nลูกทุ่ง\nลูกเธอ\nลูกน้อง\nลูกน้ำ\nลูกนิมิต\nลูกบอล\nลูกบ้าน\nลูกบาศก์\nลูกบิด\nลูกเบี้ยว\nลูกประคบ\nลูกประคำ\nลูกปัด\nลูกปืน\nลูกโป่ง\nลูกผสม\nลูกผู้ชาย\nลูกผู้หญิง\nลูกพรรค\nลูกพี่\nลูกฟูก\nลูกไฟ\nลูกมือ\nลูกโม่\nลูกไม้\nลูกยาเธอ\nลูกรอก\nลูกรัง\nลูกเรือ\nลูกล้อ\nลูกลอย\nลูกเล่น\nลูกเลี้ยง\nลูกโลก\nลูกวัด\nลูกศร\nลูกศิษย์\nลูกสมุน\nลูกสะใภ้\nลูกสูบ\nลูกเสือ\nลูกหนัง\nลูกหนี้\nลูกหนู\nลูกหมาก\nลูกหลง\nลูกหลาน\nลูกหาบ\nลูกหิน\nลูกเห็บ\nลูกเหม็น\nลูกแหง่\nลูกอม\nลูกหม้อ\nลูบคม\nลูบคลำ\nลูบไล้\nเล็กน้อย\nเลขคณิต\nเลขผา\nเลขหมาย\nเล็ดลอด\nเล่นงาน\nเล่นแง่\nเล่นชู้\nเล่นตัว\nเล่นลิ้น\nเล่นหัว\nเลนส์นูน\nเลนส์เว้า\nเล็บครุฑ\nเลยเถิด\nเลศนัย\nเล่ห์กล\nเล่ห์เหลี่ยม\nเลอโฉม\nเลอมาน\nเลอเลิศ\nเลอสรวง\nเล่อล่า\nเลอะเลือน\nเล่าเรียน\nเล่าลือ\nเลาะลัด\nเลิกรา\nเลิกร้าง\nเลิกล้ม\nเลิศเลอ\nเลี้ยงชีพ\nเลี้ยงดู\nเลี้ยงต้อย\nเลียบเคียง\nเลี้ยวลด\nเลือกตั้ง\nเลือกเฟ้น\nเลือกสรร\nเลื่องลือ\nเลือดกำเดา\nเลือดเนื้อ\nเลือดฝาด\nเลือดเย็น\nเลือดร้อน\nเลือดหมู\nเลือดอุ่น\nเลือนราง\nเลื่อนเปื้อน\nเลื่อนลอย\nเลื่อมพราย\nเลื่อมใส\nเลื่อยฉลุ\nเลื่อยลันดา\nเลื่อยวงเดือน\nเลื้อยคลาน\nแลเหลียว\nแลกเปลี่ยน\nแล้วกัน\nและเล็ม\nโล่งใจ\nโล่งโถง\nโล่งอก\nโลดเต้น\nโลดโผน\nโลดลิ่ว\nโลดแล่น\nไล่ที่\nไล่เบี้ย\nไล่เลี่ย\nไล่เลียง\nไล่หลัง\nไล่ออก\nวกวน\nวงกบ\nวงกลม\nวงการ\nวงแขน\nวงเงิน\nวงจร\nวงนอก\nวงใน\nวงรี\nวงเล็บ\nวงเวียน\nวงแหวน\nวงศ์วาน\nวจีกรรม\nวจีเภท\nวจีภาค\nวนเวียน\nวอดวาย\nว็อบแว็บ\nวังวน\nวังหน้า\nวังหลวง\nวังหลัง\nวัดราษฎร์\nวัดวา\nวัดหลวง\nวัดผล\nวัดพื้น\nวัตถุนิยม\nวัตถุประสงค์\nวัตรปฏิบัติ\nวันโกน\nวันพระ\nวันเพ็ญ\nวัยรุ่น\nวัยวุฒิ\nว่ากล่าว\nว่าจ้าง\nว่าด้วย\nว่าที่\nวางก้าม\nวางใจ\nวางตัว\nวางตา\nวางโต\nวางท่า\nวางมวย\nวางมาด\nวางมือ\nวางวาย\nว่างเปล่า\nว่างเว้น\nวาดเขียน\nว่านเครือ\nวาบหวาม\nวายชนม์\nวายปราณ\nวายวาง\nวายวอด\nวายร้าย\nวายุภักษ์\nวาววับ\nวาววาม\nวาวแวว\nวาวแสง\nวิกฤตการณ์\nวิกฤติการณ์\nวิกฤตกาล\nวิกฤติกาล\nวิกลจริต\nวิงเวียน\nวิ่งเต้น\nวิ่งผลัด\nวิ่งรอก\nวิ่งราว\nวิจิตรศิลป์\nวิชาการ\nวิชาชีพ\nวิชาธร\nวิญญูชน\nวิดพื้น\nวิตกจริต\nวิถีทาง\nวิทยากร\nวิทยากล\nวิทยาการ\nวิทยาเขต\nวิทยาทาน\nวิทยาธร\nวิทยานิพนธ์\nวิทยาศาสตร์\nวิเทศสัมพันธ์\nวิธีการ\nวินัยธร\nวินัยปิฎก\nวินาศกรรม\nวินาศภัย\nวินาศสันตะโร\nวิภัชพยากรณ์\nวิภัชวาที\nวิไลวรรณ\nวิสัญญีแพทย์\nวิสัญญีภาพ\nวิสัญญีวิทยา\nวุฒิบัตร\nวุฒิสภา\nวุฒิสมาชิก\nวุ่นวาย\nวุ้นเส้น\nวูบวาบ\nเวจกุฎี\nเวจมรรค\nเวชกรรม\nเวชภัณฑ์\nเวชศาสตร์\nเวทมนตร์\nเวนคืน\nเวรกรรม\nเวฬุการ\nเวฬุวัน\nเว้าวอน\nเวิ้งว้าง\nเวียงวัง\nเวียนเทียน\nแว้งกัด\nแวดล้อม\nแวดวง\nแว่นขยาย\nแว่นแคว้น\nแว่นตา\nแวบวับ\nแววตา\nแวววาม\nแวววาว\nแวะเวียน\nโวยวาย\nไวไฟ\nไว้ใจ\nไว้ชื่อ\nไว้ตัว\nไว้ทุกข์\nไว้ลาย\nไว้หน้า\nไว้อาลัย\nศนิวาร\nศอกกลับ\nศอกกำ\nศอกกำมา\nศักดิ์ศรี\nศักดิ์สิทธิ์\nศารทวิษุวัติ\nศาลแขวง\nศาลจังหวัด\nศาลชั้นต้น\nศาลฎีกา\nศาลเตี้ย\nศาลทหาร\nศาลปกครอง\nศาลพระภูมิ\nศาลเพียงตา\nศาลแพ่ง\nศาลรัฐธรรมนูญ\nศาลแรงงาน\nศาลล้มละลาย\nศาลโลก\nศาลสูง\nศาลสูงสุด\nศาลอาญา\nศาลอุทธรณ์\nศาลากลาง\nศาลาดิน\nศาลาราย\nศาลาวัด\nศิลาฤกษ์\nศิลาแลง\nศิษย์เก่า\nศิษย์เอก\nศีลจุ่ม\nศีลธรรม\nศีลวัต\nศีลอด\nศูนย์กลาง\nศูนย์การค้า\nศูนย์ถ่วง\nศูนย์สูตร\nศูนย์หน้า\nเศร้าใจ\nเศร้าโศก\nเศร้าสร้อย\nเศร้าสลด\nเศร้าหมอง\nเศวตฉัตร\nเศษเกิน\nเศษซ้อน\nเศษวรรค\nเศษส่วน\nเศษเหล็ก\nโศกนาฏกรรม\nโศกศัลย์\nโศกเศร้า\nโศกสลด\nสกลโลก\nส่งเดช\nส่งท้าย\nส่งเสริม\nส่งเสีย\nส่งเสียง\nสงบเงียบ\nสงบเสงี่ยม\nสง่างาม\nสง่าราศี\nสดชื่น\nสดใส\nสตรีเพศ\nสติปัญญา\nสถลมารค\nสถานกงสุล\nสถานที่\nสถานทูต\nสถานการณ์\nสถานภาพ\nสถิติศาสตร์\nสนตะพาย\nสนใจ\nส้นตีน\nสนธิสัญญา\nสนนราคา\nสนับแข้ง\nสนับเพลา\nสนับมือ\nสนามบิน\nสนามเพลาะ\nสนิทสนม\nสนิมขุม\nสนิมสร้อย\nสนุกสนาน\nสบประมาท\nสบายใจ\nสภาพธรรม\nสมควร\nสมจริง\nสมใจ\nสมนัย\nสมน้ำหน้า\nสมประกอบ\nสมส่วน\nสมหวัง\nสมคบ\nสมทบ\nสมยอม\nสมรัก\nสมรู้\nสมสู่\nส้มฉุน\nส้มตำ\nส้มลิ้ม\nส้มกุ้ง\nส้มเช้า\nสมญานาม\nสมมติฐาน\nสมมุติฐาน\nสมมติเทพ\nสมรภูมิ\nสมัครใจ\nสมัยนิยม\nสมุทรศาสตร์\nสมุทรเสนา\nสยดสยอง\nสยองขวัญ\nสยามรัฐ\nสรรหา\nสรวมชีพ\nสรวลเส\nสร้อยเศร้า\nสร้างสรรค์\nสร้างเสริม\nสลดใจ\nสลบไสล\nสละสลวย\nสลาเหิน\nสลากภัต\nสวนครัว\nสวนป่า\nสวนสนุก\nสวนหย่อม\nส่วนกลาง\nส่วนเกิน\nส่วนตัว\nส่วนบุญ\nส่วนแบ่ง\nส่วนประกอบ\nส่วนพระองค์\nส่วนผสม\nส่วนรวม\nส่วนร่วม\nส่วนลด\nส่วนสัด\nสวมกอด\nสวมเขา\nสวมรอย\nสวยมภู\nสว่างไสว\nสวามิภักดิ์\nสวิงสวาย\nสสารนิยม\nส่อเสียด\nสอดคล้อง\nสอดแทรก\nสอดแนม\nสอบถาม\nสอบทาน\nสอบไล่\nสอบสวน\nส้อมเสียง\nสะสวย\nสะแกวัลย์\nสะแกแสง\nสะใจ\nสะเด็ดยาด\nสะเทือนใจ\nสะบัดช่อ\nสั่งสม\nสั่งสอน\nสั่งเสีย\nสังเกตการณ์\nสังคมนิยม\nสังคมวิทยา\nสังคมศาสตร์\nสังคมศึกษา\nสังคมสงเคราะห์\nสัญญาบัตร\nสัดส่วน\nสัตการ\nสัตบุรุษ\nสัตบริภัณฑ์\nสัตภัณฑ์\nสัตมหาสถาน\nสัตโลหะ\nสันเขา\nสันดอน\nสันหลัง\nสั่นเทา\nสั่นเทิ้ม\nสันติบาล\nสันติภาพ\nสันติวิธี\nสันติสุข\nสับเปลี่ยน\nสับสน\nสับหลีก\nสับหว่าง\nสัมมาคารวะ\nสัมมาชีพ\nส่าเหล้า\nสากกะเบือ\nสาทิสลักษณ์\nสาธุการ\nสาธุชน\nสาบเสือ\nสาปสรร\nสาปแช่ง\nสาปส่ง\nสามง่าม\nสามล้อ\nสามเหลี่ยม\nสามเวท\nสามัญชน\nสามัญสำนึก\nสายดิ่ง\nสายดิน\nสายตรวจ\nสายน้ำ\nสายบัว\nสายพาน\nสายฟ้า\nสายยาง\nสายยู\nสายใย\nสายรก\nสายรุ้ง\nสายล่อฟ้า\nสายลับ\nสายเลือด\nสายโลหิต\nสายวัด\nสายส่ง\nสายสวาท\nสายสะดือ\nสายสะพาย\nสายสัมพันธ์\nสายสิญจน์\nสายสืบ\nสายไหม\nสายอากาศ\nสายตา\nสายหยุด\nสารตรา\nสารประกอบ\nสารละลาย\nสารส้ม\nสารหนู\nสารทฤดู\nสาวใช้\nสาวน้อย\nสาวใหญ่\nสำนักงาน\nสำนักพิมพ์\nสำนักสงฆ์\nสำมะโนครัว\nสำเร็จรูป\nสิกขาบท\nสิงสถิต\nสิงสู่\nสิ่งก่อสร้าง\nสิ่งของ\nสิ่งปฏิกูล\nสิ่งพิมพ์\nสิ่งแวดล้อม\nสิ่งศักดิ์สิทธิ์\nสิทธิกร\nสิทธิ์ขาด\nสิทธิชัย\nสิทธิโชค\nสิทธิบัตร\nสินค้า\nสินจ้าง\nสินเชื่อ\nสินไถ่\nสินทรัพย์\nสินน้ำใจ\nสินบน\nสินแร่\nสินสมรส\nสินสอด\nสินไหม\nสิ้นเชิง\nสิ้นสุด\nสีผึ้ง\nสีลม\nสีชอล์ก\nสีถ่าน\nสีเทียน\nสีน้ำ\nสีน้ำมัน\nสีโปสเตอร์\nสีฝุ่น\nสี่เหลี่ยม\nสีหน้า\nสึกหรอ\nสืบทอด\nสืบค้น\nสืบสวน\nสืบสาว\nสืบเสาะ\nสื่อผสม\nสื่อมวลชน\nสื่อสาร\nสุกงอม\nสุกดิบ\nสุกปลั่ง\nสุกใส\nสุขนาฏกรรม\nสุขภัณฑ์\nสุขภาพ\nสุขลักษณะ\nสุขวิทยา\nสุขศาลา\nสุขศึกษา\nสุดท้าย\nสุตกวี\nสุนทรพจน์\nสุภาพชน\nสู่ขอ\nสู่รู้\nสู่สม\nสูงส่ง\nสูญเปล่า\nสูญสิ้น\nสูญเสีย\nสูญหาย\nเสสรวล\nเสแสร้ง\nเสกสรร\nเสถียรภาพ\nเส้นชัย\nเส้นตรง\nเส้นตาย\nเส้นทาง\nเส้นใย\nเส้นรุ้ง\nเส้นเลือด\nเส้นแวง\nเส้นสาย\nเส้นเสียง\nเส้นหมี่\nเส้นเอ็น\nเสบียงกรัง\nเสมอภาค\nเสมอหน้า\nเสมอเหมือน\nเสมียนตรา\nเสร็จสรรพ\nเสร็จสิ้น\nเสริมส่ง\nเสริมสร้าง\nเสริมสวย\nเสรีไทย\nเสรีธรรม\nเสรีนิยม\nเสรีภาพ\nเสาเข็ม\nเสาธง\nเสียใจ\nเสียเชิง\nเสียดาย\nเสียที\nเสียเที่ยว\nเสียเปรียบ\nเสียเปล่า\nเสียรู้\nเสียแรง\nเสียสละ\nเสียหลัก\nเสียหาย\nเสี่ยงทาย\nเสียดแทง\nเสียดแทรก\nเสียดสี\nเสี้ยนศึก\nเสี้ยนหนาม\nเสี้ยมสอน\nเสียวซ่าน\nเสียวไส้\nเสือดาว\nเสือดำ\nเสือปลา\nเสือป่า\nเสือไฟ\nเสื่อกก\nเสื่อกระจูด\nเสื่อน้ำมัน\nเสื่อลำแพน\nเสื้อกล้าม\nเสื้อกั๊ก\nเสื้อเกราะ\nเสื้อครุย\nเสื้อแสง\nเสื้อเมือง\nเสือกคลาน\nเสือกสน\nเสือกไส\nเสื่อมคลาย\nเสื่อมถอย\nเสื่อมทราม\nเสื่อมโทรม\nเสื่อมสลาย\nเสื่อมสูญ\nเสื่อมเสีย\nเสือหมอบ\nแสกหน้า\nแสดงออก\nแสเถา\nแสนกล\nแสนรู้\nแสร้งว่า\nใส่ความ\nใส่ไคล้\nใส่ใจ\nใส่ไฟ\nไส้กรอก\nไส้ไก่\nไส้ติ่ง\nไส้ศึก\nไส้อั่ว\nไส้เดือน\nไส้ตัน\nไสยเวท\nไสยศาสตร์\nหกล้ม\nหงส์หยก\nหงอนไก่\nหงอยก๋อย\nหงอยเหงา\nหงายท้อง\nหงายหลัง\nหงำเหงอะ\nหงำเหงือก\nหดหาย\nหดหู่\nหนทาง\nหนวกหู\nหน่วงเหนี่ยว\nหน่วยก้าน\nหน่อไม้\nหนองใน\nหนองแซง\nหนักข้อ\nหนักใจ\nหนักแน่น\nหนักหน่วง\nหนักหนา\nหนังกลับ\nหนังตะลุง\nหนังเรียด\nหนังสด\nหนังใหญ่\nหนังสือพิมพ์\nหนาแน่น\nหน้ากระดาน\nหน้ากาก\nหน้ากาฬ\nหน้าแข้ง\nหน้าจั่ว\nหน้าฉาน\nหน้าตัก\nหน้าตา\nหน้าต่าง\nหน้าท้อง\nหน้าทับ\nหน้าที่\nหน้าที่นั่ง\nหน้าบัน\nหน้าปัด\nหน้าผา\nหน้าผาก\nหน้าม้า\nหน้ามุข\nหน้าไม้\nหน้าเลือด\nหน้าอก\nหนามเตย\nหน่ายหนี\nหน่ายแหนง\nหนาวเหน็บ\nหนำใจ\nหนี้สิน\nหนี้สูญ\nหนุนเนื่อง\nหนุนหลัง\nหมกมุ่น\nหมดจด\nหมอขวัญ\nหมอความ\nหมอแคน\nหมองู\nหมอดู\nหมอตำแย\nหมอทำขวัญ\nหมอนวด\nหมอผี\nหมอยา\nหมอลำ\nหมอเสน่ห์\nหม้อแกง\nหม้อตาล\nหม้อน้ำ\nหม้อแปลง\nหมองใจ\nหมองมัว\nหมองหม่น\nหมองหมาง\nหมอนขวาน\nหมอนข้าง\nหมอนทอง\nหม่อมเจ้า\nหม่อมฉัน\nหม่อมราชวงศ์\nหม่อมหลวง\nหม่อมห้าม\nหมั่นไส้\nหมาป่า\nหมาหมู่\nหมากฝรั่ง\nหมากสง\nหมากหอม\nหมากเก็บ\nหมากรุก\nหมากเม่า\nหมางใจ\nหมางเมิน\nหมาไม้\nหมายเกณฑ์\nหมายขัง\nหมายค้น\nหมายความ\nหมายจับ\nหมายใจ\nหมายตา\nหมายปล่อย\nหมายมั่น\nหมายเรียก\nหมายเลข\nหมายเหตุ\nหมิ่นเหม่\nหมึกจีน\nหมุนเวียน\nหมูแดง\nหมูป่า\nหมูแผ่น\nหมูยอ\nหมูหย็อง\nหมูหัน\nหมูแฮม\nหมู่บ้าน\nหยดย้อย\nหยอกเย้า\nหยักรั้ง\nหยักศก\nหยั่งทราบ\nหยั่งรู้\nหยั่งเสียง\nหยาบคาย\nหยาบช้า\nหยาบโลน\nหยาบหยาม\nหยิบมือ\nหยิบยก\nหยิบยืม\nหยิบหย่ง\nหยิบโหย่ง\nหริรักษ์\nหริวงศ์\nหลงผิด\nหลบฉาก\nหลบมุม\nหลวงจีน\nหลวงพ่อ\nหลวมตัว\nหล่อลื่น\nหล่อเลี้ยง\nหล่อหลอม\nหลอกลวง\nหลอกล่อ\nหลอกล้อ\nหลอดลม\nหลอดเลือด\nหลอดอาหาร\nหลอมตัว\nหลอมเหลว\nหลักการ\nหลักเกณฑ์\nหลักชัย\nหลักฐาน\nหลักทรัพย์\nหลักเมือง\nหลักลอย\nหลักสูตร\nหลักแหล่ง\nหลักแหลม\nหลังคา\nหลังเต่า\nหลั่งไหล\nหลับนก\nหลับใน\nหลากใจ\nหลากหลาย\nหลาบจำ\nหลายหลาก\nหลายแหล่\nหลุดพ้น\nหลุดลอย\nหลุดลุ่ย\nหลุมโจน\nหลุมพราง\nหวงก้าง\nหวงห้าม\nหวงแหน\nห่วงใย\nห้วงน้ำ\nหวังใจ\nหวังดี\nหวั่นกลัว\nหวั่นเกรง\nหวั่นใจ\nหวั่นวิตก\nหวั่นหวาด\nหวั่นไหว\nหวาดกลัว\nหวาดเกรง\nหวาดผวา\nหวาดเสียว\nหวาดหวั่น\nหวาดไหว\nหวานเย็น\nหว่านล้อม\nหอคอย\nหอคำ\nหอฉัน\nหอไตร\nหอประชุม\nหอพัก\nห่อหมก\nห่อเหี่ยว\nหอกซัด\nห้องเครื่อง\nห้องชุด\nห้องแถว\nห้องโถง\nห้องน้ำ\nห้องสมุด\nหอสมุด\nหอมหวน\nห้อมล้อม\nห้อยโหน\nหักล้าง\nหักหาญ\nหักห้าม\nหักเห\nหักโหม\nหักมุก\nหันเห\nหับเผย\nหัวขโมย\nหัวข้อ\nหัวขั้ว\nหัวเข่า\nหัวโขน\nหัวคะแนน\nหัวค่ำ\nหัวคิด\nหัวจุก\nหัวโจก\nหัวใจ\nหัวเทียน\nหัวนม\nหัวนอน\nหัวป่า\nหัวมุม\nหัวเรื่อง\nหัวแร้ง\nหัวใส\nหัวหน้า\nหัวหน่าว\nหัวหอก\nหัวเห็ด\nหัวไหล่\nหัวอก\nหัสดนตรี\nหัสนาฏกรรม\nหัสนิยาย\nหัสดีลิงค์\nหางเครื่อง\nหางแถว\nหางเลข\nหางว่าว\nหางเสียง\nหางเสือ\nห่างเหิน\nหาบเร่\nห้ามปราม\nห้ามล้อ\nหายตัว\nหาวนอน\nห้าวหาญ\nห้ำหั่น\nหินงอก\nหินทราย\nหินปูน\nหินย้อย\nหินอ่อน\nหินชาติ\nหินยาน\nหีบเพลง\nหีบห่อ\nหุ่นกระบอก\nหุ่นยนต์\nหุ้นลม\nหุ้นส่วน\nหุบเขา\nหุบผา\nหุบเหว\nหูกระต่าย\nหูช้าง\nหูรูด\nหูกวาง\nเหงาหงอย\nเหงื่อกาฬ\nเหตุการณ์\nเหตุผล\nเห็นแก่\nเห็นใจ\nเหน็บแนม\nเหน็บชา\nเหนียวแน่น\nเหนี่ยวนำ\nเหนี่ยวรั้ง\nเหนื่อยหน่าย\nเหมาะเจาะ\nเหมาะสม\nเหมาะเหม็ง\nเหยเก\nเหยียดหยาม\nเหล็กกล้า\nเหล็กจาร\nเหล็กใน\nเหล็กส่ง\nเหล็กเส้น\nเหล็กหล่อ\nเหล็กไหล\nเหลวแหลก\nเหลวไหล\nเหลอหลา\nเหล่ากอ\nเหลียวแล\nเหลือเกิน\nเหลือขอ\nเหลือใจ\nเหลือเชื่อ\nเหลือเฟือ\nเหลือร้าย\nเหลือล้น\nเหลือหลาย\nเหลือแหล่\nเหลือแสน\nเหลือหลอ\nเหลื่อมล้ำ\nเห่อเหิม\nเหินห่าง\nเหิมเกริม\nเหิมหาญ\nเหี้ยมเกรียม\nเหี้ยมหาญ\nเหี้ยมโหด\nเหี่ยวแห้ง\nเหือดหาย\nเหือดแห้ง\nแห่แหน\nแหนงหน่าย\nแหลกลาญ\nแหลกเหลว\nแหวกแนว\nแหวกว่าย\nโหงพราย\nโหดร้าย\nโหดเหี้ยม\nโหยหวน\nโหวงเหวง\nให้การ\nให้ท่า\nให้ท้าย\nให้ร้าย\nให้หลัง\nไหมพรม\nไหวพริบ\nอกไก่\nอกร่อง\nองค์กร\nองค์การ\nอดกลั้น\nอดทน\nอดสู\nอดอยาก\nอดออม\nอดีตกาล\nอดีตชาติ\nอดีตภพ\nอติชาตบุตร\nอธิการบดี\nอนาคตกาล\nอนิจกรรม\nอนุชาตบุตร\nอเนกประสงค์\nอบรม\nอบอวล\nอบอ้าว\nอบอุ่น\nอบายภูมิ\nอบายมุข\nอภัพบุคคล\nอภัยทาน\nอภัยโทษ\nอภิชาตบุตร\nอมยิ้ม\nอมรรัตน์\nอมฤตบท\nอมฤตรส\nอย่างไร\nอรรถกร\nอรรถกวี\nอรรถคดี\nอรรถประโยชน์\nอรรถรส\nอรรธนิศา\nอรรธภาค\nอรรธสระ\nอรสุมพล\nอรูปฌาน\nอรูปพรหม\nอรูปภพ\nอรูปภูมิ\nอวชาตบุตร\nอวดดี\nอวดอ้าง\nอ้วนท้วน\nอ้วนพี\nอวบอั๋น\nอวยชัย\nอวยพร\nอสุภกรรมฐาน\nอสุภสัญญา\nอโหสิกรรม\nออเจ้า\nออกแขก\nออกตัว\nออกโรง\nออกฤทธิ์\nออกลาย\nออกหาก\nออดอ้อน\nออดแอด\nอ่อนข้อ\nอ่อนใจ\nอ่อนช้อย\nอ่อนน้อม\nอ่อนเปลี้ย\nอ่อนเพลีย\nอ่อนโยน\nอ่อนหวาน\nอ่อนหัด\nอ่อนไหว\nอ่อนแอ\nอ้อนวอน\nอ้อนออด\nอ้อมค้อม\nอักษรศาสตร์\nอักษรสาส์น\nอัคคีภัย\nอัญชนะศักราช\nอัดฉีด\nอัดอั้น\nอัตราส่วน\nอันโตชน\nอันโตนาที\nอับจน\nอับเฉา\nอับอาย\nอัสสุชล\nอัสสุธารา\nอากัปกิริยา\nอาการนาม\nอากาศธาตุ\nอากาศยาน\nอาคารชุด\nอ่างเก็บน้ำ\nอ้างอิง\nอาจหาญ\nอาจอง\nอาชญากร\nอาชญากรรม\nอาชญาบัตร\nอาชญาสิทธิ์\nอาญาสิทธิ์\nอาณาเขต\nอาณาจักร\nอาณานิคม\nอาณาประโยชน์\nอาโปกสิณ\nอาโปธาตุ\nอาภากร\nอายุขัย\nอายุวัฒนะ\nอาโลกกสิณ\nอาหารว่าง\nอำพราง\nอิดโรย\nอิดออด\nอิดเอื้อน\nอิตถีลิงค์\nอิทธิปาฏิหาริย์\nอิทธิพล\nอิทธิฤทธิ์\nอินังขังขอบ\nอิ่มตัว\nอิ่มหนำ\nอิ่มเอม\nอิ่มเอิบ\nอีฉัน\nอีตัว\nอึงคะนึง\nอึงมี่\nอึงอล\nอึ่งยาง\nอึ่งอ่าง\nอึดใจ\nอึดอัด\nอืดอาด\nอื้อฉาว\nอื้อซ่า\nอื้ออึง\nอุกฉกรรจ์\nอุกอาจ\nอุดอู้\nอุ่นเครื่อง\nอุ่นใจ\nอุบอิบ\nอุบัติภัย\nอุบัติเหตุ\nอุโบสถกรรม\nอุโบสถหัตถี\nอุปมาโวหาร\nอุ้มชู\nอุ้มสม\nอุ้ยอ้าย\nอู้อี้\nเอกจิต\nเอกฉันท์\nเอกชน\nเอกเทศ\nเอกนัย\nเอกบุคคล\nเอกบุรุษ\nเอกพจน์\nเอกภพ\nเอกภาพ\nเอกมัย\nเอกราช\nเอกรูป\nเอกลักษณ์\nเอกศก\nเอกสาร\nเอกสิทธิ์\nเอกอุ\nเอ็ดอึง\nเอนเอียง\nเอมอร\nเอออวย\nเออออ\nเอาการ\nเอางาน\nเอาจริง\nเอาใจ\nเอาเปรียบ\nเอาเยี่ยง\nเอิบอาบ\nเอียงอาย\nเอียงเอน\nเอื้อเฟื้อ\nโอ่โถง\nโอ้โถง\nโอ่อวด\nโอ้อวด\nโอ่อ่า\nโอ้โลม\nโอดครวญ\nโอดโอย\nโอนอ่อน\nโอนเอน\nโอบอ้อม\nโอบอุ้ม\nโอสถกรรม\nไอเสีย\nไอกรน\nฮวบฮาบ\nฮาป่า\nฮึกหาญ\nฮึกห้าว\nฮึกเหิม\nฮึกโหม\nฮึกฮัก\nเฮงซวย\nโฮกฮือ\nโฮกฮาก\n\nก็\nกก\nก๊ก\nกกุธภัณฑ์\nกง\nก่ง\nก้ง\nก๊ง\nก๋ง\nกงกอน\nกงไฉ่\nกงเต๊ก\nกงสี\nกงสุล\nกช\nกฎ\nกฏุก\nกฐิน\nกณิกนันต์\nกณิการ์\nกด\nกตเวทิตา\nกตเวที\nกตัญชลี\nกตัญญุตา\nกตัญญู\nกตาธิการ\nกตาภินิหาร\nกติกา\nกถา\nกถิกาจารย์\nกทลี\nกน\nก่น\nก้น\nกนก\nกนิษฐ์\nกนิษฐา\nกบ\nกบฏ\nกบดาน\nกบทู\nกบาล\nกบินทร์\nกบิล\nกบี่\nกบูร\nกเบนทร์\nกม\nก้ม\nกมณฑลาภิเษก\nกมณฑโลทก\nกมล\nกมลา\nกมลาศ\nกมลาสน์\nกมเลศ\nกมัณฑลุ\nกมุท\nกร\nกรกฎ\nกรกฎาคม\nกรกฏ\nกรง\nกรชกาย\nกรณฑ์\nกรณิการ์\nกรณี\nกรณีย์\nกรณียกิจ\nกรณียะ\nกรด\nกรน\nกรบ\nกรบูร\nกรพินธุ์\nกรม\nกรรกฎ\nกรรกศ\nกรรเกด\nกรรไกร\nกรรเจียก\nกรรชิง\nกรรเชียง\nกรรโชก\nกรรฐ์\nกรรฐา\nกรรณ\nกรรณา\nกรรณิกา\nกรรณิการ์\nกรรดิ\nกรรดิก\nกรรดึก\nกรรตุ\nกรรไตร\nกรรทบ\nกรรแทก\nกรรบิด\nกรรบูร\nกรรภิรมย์\nกรรม\nกรรม์\nกรรม์ภิรมย์\nกรรมชวาต\nกรรมัชวาต\nกรรมาชีพ\nกรรมาธิการ\nกรรมาร\nกรรษก\nกรรสะ\nกรรแสง\nกรวด\nกรวบ\nกรวม\nกร้วม\nกรวย\nกรวิก\nกรสาปน์\nกรสุทธิ์\nกรอ\nกร้อ\nกรอก\nกร็อกกร๋อย\nกรอกแกรก\nกรอง\nกรองกรอย\nกรอด\nกร่อน\nกรอบ\nกรอม\nกร่อย\nกระ\nกระกร\nกระกรุ่น\nกระกลับกลอก\nกระกี้\nกระเกรอก\nกระเกริก\nกระเกริ่น\nกระคน\nกระคาย\nกระงกกระเงิ่น\nกระง่องกระแง่ง\nกระง่อนกระแง่น\nกระเง้ากระงอด\nกระโงก\nกระจก\nกระจง\nกระจร\nกระจอก\nกระจองหง่อง\nกระจ๋องหง่อง\nกระจองอแง\nกระจ้อน\nกระจอนหู\nกระจ้อย\nกระจ๋อหวอ\nกระจะ\nกระจัก\nกระจัง\nกระจัด\nกระจับ\nกระจ่า\nกระจ่าง\nกระจาด\nกระจาน\nกระจาบ\nกระจาม\nกระจาย\nกระจาว\nกระจิก\nกระจิ๋ง\nกระจิด\nกระจิบ\nกระจิ๋ม\nกระจิริด\nกระจิ๋ว\nกระจี้\nกระจี๋\nกระจุก\nกระจุ๋งกระจิ๋ง\nกระจุบ\nกระจุ๊บ\nกระจุ๋มกระจิ๋ม\nกระจุย\nกระจู้\nกระจู๋กระจี๋\nกระจูด\nกระเจอะกระเจิง\nกระเจา\nกระเจ่า\nกระเจ้า\nกระเจาะ\nกระเจิง\nกระเจิดกระเจิง\nกระเจี้ยง\nกระเจี๊ยบ\nกระเจียว\nกระเจี๊ยว\nกระแจะ\nกระโจน\nกระโจม\nกระฉอก\nกระฉ่อน\nกระฉับกระเฉง\nกระฉิ่ง\nกระฉีก\nกระฉูด\nกระเฉก\nกระเฉด\nกระแฉก\nกระโฉกกระเฉก\nกระโฉม\nกระชดกระช้อย\nกระชอน\nกระชอมดอก\nกระช้อย\nกระชัง\nกระชั้น\nกระชับ\nกระชาก\nกระชาย\nกระชิง\nกระชิด\nกระชุ\nกระชุก\nกระชุ่มกระชวย\nกระเชอ\nกระเชา\nกระเช้า\nกระเชียง\nกระแชง\nกระแชะ\nกระโชก\nกระซ่องกระแซ่ง\nกระซับ\nกระซาบ\nกระซิก\nกระซิบ\nกระซี้\nกระซุง\nกระซุบกระซิบ\nกระซุ้ม\nกระซู่\nกระเซ็น\nกระเซอ\nกระเซอะกระเซอ\nกระเซอะกระเซิง\nกระเซ้า\nกระเซิง\nกระแซ\nกระแซะ\nกระโซกระเซ\nกระฎี\nกระฎุมพี\nกระดก\nกระด้ง\nกระดนโด่\nกระดวง\nกระดวน\nกระด้วมกระเดี้ยม\nกระดอ\nกระดอง\nกระดองหาย\nกระดอน\nกระดอม\nกระดักกระเดี้ย\nกระดังงัว\nกระดังงา\nกระดาก\nกระด้าง\nกระดางลาง\nกระดาด\nกระดาดขาว\nกระดาน\nกระดานพน\nกระดาษ\nกระดำกระด่าง\nกระดิก\nกระดิ่ง\nกระดิ้ง\nกระดิบ\nกระดี่\nกระดี้กระเดียม\nกระดึง\nกระดืบ\nกระดุ\nกระดุกกระดิก\nกระดุ้งกระดิ้ง\nกระดุบ\nกระดุบกระดิบ\nกระดุม\nกระดูก\nกระเดก\nกระเด้ง\nกระเด็น\nกระเด้า\nกระเดาะ\nกระเดิด\nกระเดี้ย\nกระเดียด\nกระเดือก\nกระเดื่อง\nกระแด็ก\nกระแด้ง\nกระแด้แร่\nกระแด่ว\nกระแดะ\nกระโดก\nกระโดง\nกระโดด\nกระโดน\nกระได\nกระตรับ\nกระตราก\nกระตรุด\nกระตรุม\nกระต้วมกระเตี้ยม\nกระต้อ\nกระต่องกระแต่ง\nกระต๊อบ\nกระต้อยตีวิด\nกระตัก\nกระตั้ว\nกระต่าย\nกระติก\nกระติ๊ด\nกระติบ\nกระตือรือร้น\nกระตุก\nกระตุ้งกระติ้ง\nกระตุ่น\nกระตุ้น\nกระตูบ\nกระเตง\nกระเต็น\nกระเตอะ\nกระเตาะ\nกระเตาะกระแตะ\nกระเตื้อง\nกระแต\nกระแตแต้แว้ด\nกระโตกกระตาก\nกระโตน\nกระถด\nกระถอบ\nกระถั่ว\nกระถาง\nกระถิก\nกระถิน\nกระเถิบ\nกระโถน\nกระทก\nกระทง\nกระทบ\nกระทรวง\nกระทอก\nกระท้อน\nกระท่อนกระแท่น\nกระท่อม\nกระท้อมกระแท้ม\nกระทะ\nกระทั่ง\nกระทั้น\nกระทา\nกระทาย\nกระทาสี\nกระทาหอง\nกระทำ\nกระทิกกระทวย\nกระทิง\nกระทึง\nกระทืบ\nกระทุ\nกระทุง\nกระทุ้ง\nกระทุ่ม\nกระทู้\nกระเท่\nกระเทียบ\nกระเทียม\nกระเทือน\nกระเทื้อม\nกระแทก\nกระแท่น\nกระแทะ\nกระไทชาย\nกระน่อง\nกระนั้น\nกระนี้\nกระแนะกระแหน\nกระโน้น\nกระไน\nกระบก\nกระบม\nกระบวน\nกระบวย\nกระบวร\nกระบอก\nกระบอง\nกระบะ\nกระบัด\nกระบั้วกระเบี้ย\nกระบ่า\nกระบ้า\nกระบาก\nกระบาย\nกระบาล\nกระบิ\nกระบิ้ง\nกระบิด\nกระบิล\nกระบี่\nกระบือ\nกระบุง\nกระบุ่มกระบ่าม\nกระบู้กระบี้\nกระบูน\nกระบูร\nกระเบง\nกระเบญ\nกระเบ็ดกระบวน\nกระเบน\nกระเบา\nกระเบิก\nกระเบียด\nกระเบียน\nกระเบื้อง\nกระแบก\nกระแบะ\nกระโบม\nกระปมกระปำ\nกระปมกระเปา\nกระปรอก\nกระปรอกว่าว\nกระปรี้กระเปร่า\nกระปอก\nกระป้อกระแป้\nกระป่อง\nกระป๋อง\nกระปอดกระแปด\nกระป๋อหลอ\nกระปั้วกระเปี้ย\nกระป่ำ\nกระปุก\nกระปุ๊กลุก\nกระปุ่ม\nกระปุ่มกระป่ำ\nกระปุ่มกระปิ่ม\nกระเป๋า\nกระเปาะ\nกระโปก\nกระโปรง\nกระผม\nกระผลีกระผลาม\nกระผาน\nกระผีก\nกระพรวน\nกระพริ้ม\nกระพอก\nกระพอง\nกระพ้อม\nกระพัก\nกระพัง\nกระพังเหิร\nกระพังโหม\nกระพัด\nกระพัตร\nกระพัน\nกระพั่น\nกระพา\nกระพาก\nกระพี้\nกระพือ\nกระพุ้ง\nกระพุ่ม\nกระเพาะ\nกระเพิง\nกระเพื่อม\nกระแพ้ง\nกระฟัดกระเฟียด\nกระฟูมกระฟาย\nกระมล\nกระมอบ\nกระมอมกระแมม\nกระมัง\nกระมัน\nกระมิดกระเมี้ยน\nกระมุท\nกระเมาะ\nกระย่อง\nกระย่องกระแย่ง\nกระย่อน\nกระย่อม\nกระยา\nกระยาง\nกระยาจก\nกระยาหงัน\nกระยิก\nกระยิ้มกระย่อง\nกระยึกกระยือ\nกระยืดกระยาด\nกระเย้อกระแหย่ง\nกระรอก\nกระเรียน\nกระโรกน้ำข้าว\nกระโรกใหญ่\nกระไร\nกระลด\nกระลบ\nกระลอก\nกระลอม\nกระละหล่ำ\nกระลัด\nกระลับ\nกระลัมพร\nกระลา\nกระลำ\nกระลำพัก\nกระลำพุก\nกระลิง\nกระลี\nกระลุมพาง\nกระลุมพุก\nกระลุมพู\nกระลูน\nกระลู่น์\nกระเล็น\nกระเลียด\nกระเลือก\nกระโลง\nกระวน\nกระวัด\nกระวาด\nกระวาน\nกระวาย\nกระวิน\nกระวี\nกระวีกระวาด\nกระวูดกระวาด\nกระเวน\nกระเวยกระวาย\nกระแวน\nกระโวยกระวาย\nกระษัย\nกระษาปณ์\nกระสง\nกระสบ\nกระสม\nกระสรวล\nกระสร้อย\nกระสวน\nกระสวย\nกระสอบ\nกระสะ\nกระสัง\nกระสัน\nกระสับกระส่าย\nกระสา\nกระสานติ์\nกระสาบ\nกระสาย\nกระสือ\nกระสุงกระสิง\nกระสุน\nกระสูทธิ์\nกระสูบ\nกระเสด\nกระเส็นกระสาย\nกระเส่า\nกระเสาะกระแสะ\nกระเสียน\nกระเสียร\nกระเสือกกระสน\nกระแส\nกระแสง\nกระแสะ\nกระโสง\nกระไส\nกระหนก\nกระหนาก\nกระหนาบ\nกระหน่ำ\nกระหมวด\nกระหมอบ\nกระหม่อม\nกระหมั่ง\nกระหมิบ\nกระหมุดกระหมิด\nกระหมุบ\nกระหย่ง\nกระหย่อม\nกระหยัง\nกระหยับ\nกระหยิ่ม\nกระหรอด\nกระหริ่ง\nกระหวน\nกระหวัด\nกระหอง\nกระหัง\nกระหัด\nกระหาง\nกระหาย\nกระหึม\nกระหึ่ม\nกระหืดกระหอบ\nกระเห็น\nกระเหนียด\nกระเหม็ดกระเหมียด\nกระเหม็ดกระแหม่\nกระเหม่น\nกระเหม่า\nกระเหว่า\nกระเห่อ\nกระเหิม\nกระเหี้ยนกระหือรือ\nกระแห\nกระแหทอง\nกระแหนบ\nกระแหนะ\nกระแหมบ\nกระแหม่ว\nกระแหย่ง\nกระแหร่ม\nกระแหล่ง\nกระโห้\nกระโหนด\nกระโหม\nกระโหย\nกระโหย่ง\nกระอวล\nกระอ้อกระแอ้\nกระออดกระแอด\nกระออบ\nกระออม\nกระอ้อมกระแอ้ม\nกระอัก\nกระอักกระอ่วน\nกระอั้วแทงควาย\nกระอ้า\nกระอาน\nกระอิด\nกระอิดกระเอื้อน\nกระอึก\nกระอืด\nกระอุ\nกระอุก\nกระเอา\nกระเอิก\nกระเอิบ\nกระแอก\nกระแอบ\nกระแอม\nกระไอ\nกรัก\nกรักขี\nกรัง\nกรัชกาย\nกรัณฑ์\nกรัณย์\nกรัน\nกรับ\nกรัม\nกราก\nกราง\nกร่าง\nกราด\nกราดวง\nกราน\nกร้าน\nกราบ\nกราฟ\nกราม\nกราย\nกร่าย\nกราว\nกร้าว\nกรำ\nกร่ำ\nกริก\nกริ๊ก\nกริกกริว\nกริกกรี\nกริ่ง\nกริ๊ง\nกริงกริว\nกริ้งกริ้ว\nกริช\nกริณี\nกริน\nกรินทร์\nกรินี\nกริบ\nกริม\nกริ่ม\nกริยา\nกริยานุเคราะห์\nกริว\nกริ้ว\nกรี\nกรีฑา\nกรีด\nกรี๊ด\nกรีธา\nกรีษ\nกรีส\nกรึ๊บ\nกรุ\nกรุง\nกรุ้งกริ่ง\nกรุณ\nกรุณา\nกรุณาธิคุณ\nกรุ่น\nกรุบ\nกรุ่ม\nกรุ้มกริ่ม\nกรุย\nกรุยเกรียว\nกรู\nกรูด\nกรูม\nกเรณุ\nกเรนทร\nกเรนทร์\nกฤช\nกฤดาภินิหาร\nกฤตติกา\nกฤษฎา\nกฤษฎาธาร\nกฤษฎาภินิหาร\nกฤษฎีกา\nกฤษณา\nกล\nกลด\nกล่น\nกลบ\nกลม\nกลละ\nกลวง\nกล้วย\nกลศ\nกล้อ\nกลอก\nกลอง\nกล่อง\nกล้อง\nกล้องแกล้ง\nกลอน\nกล่อน\nกล้อน\nกล่อม\nกล้อมแกล้ม\nกลอย\nกลัก\nกลัด\nกลั่น\nกลั้น\nกลันทก์\nกลันทะ\nกลับ\nกลัมพร\nกลัมพัก\nกลัว\nกลั้ว\nกลา\nกล้า\nกลาก\nกลากลาด\nกลาง\nกลาด\nกลาบาต\nกลาป\nกล้าม\nกลาย\nกล้าย\nกลายกลอก\nกล่าว\nกลาโหม\nกล่ำ\nกล้ำ\nกลิ้ง\nกลิงค์\nกลิ่น\nกลี\nกลีบ\nกลึง\nกลึงค์\nกลืน\nกลุ่ม\nกลุ้ม\nกลูโคส\nกเลวระ\nกวด\nกวน\nกวม\nกวย\nกวยจั๊บ\nกวยจี๊\nก๋วยเตี๋ยว\nกวัก\nกวัด\nกวา\nกว่า\nกวาง\nกว่าง\nกว้าง\nกว่างโซ้ง\nกวางตุ้ง\nกวาด\nกว้าน\nกว๊าน\nกว้าว\nกวาวเครือ\nกวี\nกษณะ\nกษมา\nกษัตร\nกษัตรา\nกษัตริย์\nกษัตรี\nกษัตรีย์\nกษัย\nกษาปณ์\nกษิดิ\nกษีร\nกษีรธารา\nกษีระ\nกสานติ์\nกสิกร\nกสิกรรม\nกสิณ\nกหังปายา\nกหาปณะ\nกเฬวราก\nกอ\nก่อ\nก้อ\nก๊อ\nกอก\nก๊อก\nกอแก\nกอง\nก่อง\nก้อง\nกองกอย\nก๊อซ\nกอด\nก่อน\nก้อน\nกอบ\nกอบนาง\nก๊อบปี้\nกอปร\nก้อม\nกอมก้อ\nก่อมก้อ\nกอย\nก้อย\nก๋อย\nกอริลลา\nกอล์ฟ\nกอและ\nกอเอี๊ยะ\nกะ\nกะกัง\nกะง้องกะแง้ง\nกะจัง\nกะแจะ\nกะชะ\nกะชัง\nกะชามาศ\nกะชิง\nกะชึ่กกะชั่ก\nกะแช่\nกะซวก\nกะซ้าหอย\nกะซี่\nกะโซ่\nกะโซ้\nกะดก\nกะดง\nกะดวน\nกะดอก\nกะดะ\nกะดังบาย\nกะดัด\nกะด้าง\nกะดำกะด่าง\nกะดี\nกะดี่\nกะดุ้ง\nกะเด้\nกะเดก\nกะเดี๋ยว\nกะตรุด\nกะตอก\nกะต่อย\nกะตัก\nกะตั้ก\nกะตัง\nกะตังกะติ้ว\nกะต๊าก\nกะต้ำ\nกะติ๊กริก\nกะติงกะแตง\nกะตีบ\nกะตึงกะแตง\nกะตุ๊ก\nกะตุด\nกะตูก\nกะเตง\nกะโต๊ก\nกะโตงกะเตง\nกะโต้งโห่ง\nกะถัว\nกะทกรก\nกะทอ\nกะทัง\nกะทังหัน\nกะทัดรัด\nกะทันหัน\nกะทับ\nกะทิ\nกะทือ\nกะทุน\nกะเทย\nกะเทาะ\nกะแท้\nกะแท่ง\nกะแทน\nกะนวล\nกะนัด\nกะบ่อนกะแบ่น\nกะบัง\nกะบั้ง\nกะบิ้ง\nกะบิล\nกะบึงกะบอน\nกะบุด\nกะเบ้อ\nกะเบียน\nกะเบือ\nกะปริดกะปรอย\nกะปริบ\nกะปริบกะปรอย\nกะปลกกะเปลี้ย\nกะปวกกะเปียก\nกะปอม\nกะปอมขาง\nกะปะ\nกะป้ำกะเป๋อ\nกะปิ\nกะปู\nกะปูด\nกะปูดหลูด\nกะเปะ\nกะเปิ๊บกะป๊าบ\nกะเปียด\nกะแป้น\nกะแปะ\nกะโปรง\nกะโปโล\nกะผลุบกะโผล่\nกะเผ่น\nกะเผลก\nกะโผลกกะเผลก\nกะพง\nกะพรวดกะพราด\nกะพร่องกะแพร่ง\nกะพริบ\nกะพรุน\nกะพรูดกะพราด\nกะพล้อ\nกะพ้อ\nกะเพรา\nกะเพียด\nกะเม็ง\nกะร่องกะแร่ง\nกะระตะ\nกะระหนะ\nกะรัง\nกะรัต\nกะราง\nกะริง\nกะรุงกะรัง\nกะรุ่งกะริ่ง\nกะรุน\nกะเร\nกะเรกะร่อน\nกะเร่กะร่อน\nกะเร่อ\nกะเรี่ยกะราด\nกะโรกะเร\nกะลวย\nกะลอ\nกะล่อกะแล่\nกะลอจี๊\nกะล่อน\nกะล่อมกะแล่ม\nกะล่อยกะหลิบ\nกะละปังหา\nกะละมัง\nกะละแม\nกะละออม\nกะลังตังไก่\nกะลัน\nกะลันทา\nกะลา\nกะลาง\nกะลาสี\nกะลำพอ\nกะลิง\nกะลิงปลิง\nกะลิ้มกะเหลี่ย\nกะลิอ่อง\nกะลุมพี\nกะเล็ง\nกะเล่อกะล่า\nกะเลิด\nกะเลียว\nกะแล\nกะโล่\nกะโลง\nกะวอกกะแวก\nกะวะ\nกะส้มชื่น\nกะสัง\nกะส้าหอย\nกะหนอกะแหน\nกะหน็องกะแหน็ง\nกะหนะ\nกะหนุงกะหนิง\nกะหร่อง\nกะหรอด\nกะหร็อมกะแหร็ม\nกะหราน\nกะหรี่\nกะหรี่ปั๊บ\nกะหลาป๋า\nกะหล่ำ\nกะหลี่\nกะหลีกะหลอ\nกะหลุกกะหลิก\nกะหำ\nกะหำแพะ\nกะหือ\nกะหูด\nกะเหรี่ยง\nกะเหลาะเปาะ\nกะแหยก\nกะแหะ\nกะโหลก\nกะโหล้ง\nกะไหล่\nกะอวม\nกะออม\nกะอาน\nกะอาม\nกะอูบ\nกัก\nกั๊ก\nกักกรา\nกักการุ\nกักขฬะ\nกัง\nกั้ง\nกังก้า\nกังเกียง\nกังขา\nกังฉิน\nกังฟู\nกังวล\nกังวาน\nกังสดาล\nกังไส\nกังหัน\nกัจฉปะ\nกัจฉะ\nกัจฉา\nกัญ\nกัญจุก\nกัญจุการา\nกัญชา\nกัญญา\nกัฐ\nกัณฏกะ\nกัณฐกะ\nกัณฐชะ\nกัณฐัศ\nกัณฐัศว์\nกัณฐา\nกัณฐี\nกัณฑ์\nกัณณ์\nกัณหา\nกัด\nกัตติกมาส\nกัตติกา\nกัตติเกยา\nกัตรา\nกัทลี\nกัน\nกั่น\nกั้น\nกันเกรา\nกันไกร\nกันชิง\nกันเชอ\nกันดาร\nกันดาล\nกันได\nกันต์\nกันตัง\nกันไตร\nกันทร\nกันทรากร\nกันภิรมย์\nกันเมียง\nกันย์\nกันยา\nกันยายน\nกันลง\nกันลอง\nกันแสง\nกั้นหยั่น\nกับ\nกับแก้\nกัป\nกัปตัน\nกัปปาสิก\nกัปปิยภัณฑ์\nกัปปิยะ\nกัมปนาท\nกัมประโด\nกัมปี\nกัมพล\nกัมพุช\nกัมพู\nกัมพูชา\nกัมโพช\nกัมมัชวาต\nกัมมัฏฐาน\nกัมมันตภาพรังสี\nกัมมันตรังสี\nกัมมาร\nกัมลาศ\nกัยวิกัย\nกัลชาญ\nกัลบก\nกัลป์\nกัลปนา\nกัลปพฤกษ์\nกัลปังหา\nกัลปาวสาน\nกัลปิต\nกัลเม็ด\nกัลยา\nกัลยาณมิตร\nกัลยาณี\nกัลออม\nกัศยป\nกัษณ\nกา\nก๋า\nกาก\nกากบาท\nกากะทิง\nกากะเยีย\nกากี\nกาง\nก้าง\nกางเกง\nกางเขน\nก๊าซ\nกาซะลอง\nกาญจนา\nกาฐ\nกาด\nก๊าด\nกาน\nก่าน\nก้าน\nก๊าน\nกานดา\nกานต์\nกานน\nก้านพร้าว\nกานพลู\nกาน้า\nกาบ\nก้าบ\nกาบู\nกาพย์\nกาเฟอีน\nกาแฟ\nกาม\nก้าม\nกามารมณ์\nกามินี\nกาเมสุมิจฉาจาร\nกาย\nก่าย\nกาเยน\nการ\nการณ์\nการ์ด\nการ์ตูน\nการบูร\nการย์\nการวิก\nการเวก\nการะเกด\nการะบุหนิง\nการัณย์\nการันต์\nการางหัวขวาน\nการิตการก\nการิตวาจก\nการุญ\nการุณย์\nกาเรการ่อน\nกาล\nกาลกรรณี\nกาลกิณี\nกาลจักร\nกาลัญญุตา\nกาลัญญู\nกาลัด\nกาลานุกาล\nกาลิก\nกาลี\nกาแล\nกาแล็กซี\nกาแล็กโทส\nกาว\nก้าว\nกาววาว\nกาวาง\nกาแวน\nกาศิก\nกาษฐะ\nกาษา\nกาสร\nกาสะ\nกาสา\nกาสาร\nกาสาวะ\nกาสิโน\nกาหล\nกาหลง\nกาหลา\nกาเหว่า\nกาไหล่\nกาฬ\nกาฬาวก\nกาฮัง\nกำ\nก่ำ\nกำกวม\nกำกัด\nกำกับ\nก้ำกึ่ง\nกำกูน\nก้ำเกิน\nกำเกียง\nกำคูน\nกำจร\nกำจัด\nกำจาย\nกำชับ\nกำชำ\nกำซาบ\nกำซำ\nกำด้น\nกำดัด\nกำดาล\nกำเดา\nกำธร\nกำนล\nกำนัน\nกำนัล\nกำเนิด\nกำบัง\nก่ำบึ้ง\nกำเบ้อ\nกำปอ\nกำปั่น\nกำผลา\nกำพง\nกำพด\nกำพต\nกำพร้า\nกำพราก\nกำพวด\nกำพอง\nกำพืด\nกำพุด\nกำพู\nกำเพลิง\nกำแพง\nกำภู\nกำมลาศน์\nกำมเลศ\nกำมะถัน\nกำมะลอ\nกำมะหยี่\nกำมะหริด\nกำมังละการ\nกำมังวิลิต\nกำมัชพล\nกำยาน\nกำยำ\nกำรอ\nกำราบ\nกำราล\nกำเริบ\nกำไร\nกำลัง\nกำลุง\nกำเลา\nกำไล\nกำสรด\nกำสรวล\nกำหนด\nกำหนัด\nกำเหน็จ\nกำแหง\nกิก\nกิ๊ก\nกิ่ง\nกิ้งก่า\nกิ้งกือ\nกิ้งโครง\nกิจ\nกิจจะ\nกิจจา\nกิดาการ\nกิดาหยัน\nกิตติ\nกิตติมศักดิ์\nกิน\nกินนร\nกินปลี\nกินเปี้ยว\nกินริน\nกินรี\nกิ๊บ\nกิมตึ๋ง\nกิมิชาติ\nกิมิวิทยา\nกิโมโน\nกิโยตีน\nกิระ\nกิริณี\nกิรินท\nกิริเนศวร\nกิริยา\nกิเลน\nกิเลส\nกิโล\nกิโลมกะ\nกิ่ว\nกิ๋ว\nกี\nกี่\nกี้\nกี๊\nกี๋\nกีฏวิทยา\nกีด\nกีตาร์\nกีบ\nกีรติ\nกีฬา\nกึก\nกึง\nกึ่ง\nกึ๋น\nกุ\nกุก\nกุ๊ก\nกุกกุฏ\nกุกกุร\nกุกรรม\nกุ้ง\nกุงอน\nกุงาน\nกุโงก\nกุจี\nกุญแจ\nกุญชร\nกุฎ\nกุฎา\nกุฎี\nกุฎุมพี\nกุฏฐัง\nกุฏิ\nกุณฑ์\nกุณฑล\nกุณฑี\nกุณโฑ\nกุณาล\nกุณี\nกุด\nกุดัง\nกุดั่น\nกุดา\nกุทัณฑ์\nกุน\nกุ๊น\nกุนเชียง\nกุนที\nกุโนกามอ\nกุบ\nกุบกับ\nกุม\nกุ่ม\nกุมฝอย\nกุมภ์\nกุมภนิยา\nกุมภัณฑ์\nกุมภา\nกุมภิล\nกุมภีล์\nกุมเหง\nกุมาร\nกุมารา\nกุมารี\nกุมุท\nกุย\nกุ๊ย\nกุ๋ย\nกุยช่าย\nกุยเฮง\nกุรระ\nกุรุพินท์\nกุเรา\nกุล\nกุลา\nกุลาหล\nกุลี\nกุลีกุจอ\nกุเลา\nกุแล\nกุเวร\nกุศราช\nกุศล\nกุศโลบาย\nกุสุม\nกุสุมภ์\nกุสุมา\nกุสุมาลย์\nกุสุมิตลดาเวลลิตา\nกุหนี\nกุหนุง\nกุหร่า\nกุหล่า\nกุหลาบ\nกุแหละ\nกู\nกู่\nกู้\nกู๊ก\nกูฏ\nกูฏา\nกูณฑ์\nกูด\nกูบ\nกูปรี\nกูรมะ\nกูรมาวตาร\nเก\nเก้\nเก๊\nเก๋\nเกก\nเก๊ก\nเกกมะเหรก\nเก๊กฮวย\nเก้กัง\nเก็ง\nเก่ง\nเก้ง\nเก๋ง\nเกงกอย\nเก่งกาจ\nเกงเขง\nเก๋งเคง\nเก็จ\nเกจิอาจารย์\nเกชา\nเกณฑ์\nเกด\nเก็ด\nเกตุ\nเกน\nเก็บ\nเกม\nเกย\nเกยูร\nเกรง\nเกร็ง\nเกร็ด\nเกรน\nเกร่อ\nเกรอะ\nเกราะ\nเกริก\nเกริน\nเกริ่น\nเกรียก\nเกรียง\nเกรียด\nเกรียน\nเกรียบ\nเกรียม\nเกรียว\nเกรี้ยว\nเกเร\nเกล็ด\nเกลศ\nเกลอ\nเกลา\nเกล้า\nเกลาะ\nเกลี่ย\nเกลี้ย\nเกลียง\nเกลี้ยง\nเกลียด\nเกลียว\nเกลือ\nเกลื้อ\nเกลือก\nเกลื่อน\nเกลื้อน\nเกวัฏ\nเกวียน\nเกศ\nเกศว\nเกศวะ\nเกศา\nเกศินี\nเกศี\nเกษตร\nเกษม\nเกษียณ\nเกษียน\nเกษียร\nเกส\nเกสร\nเกสรี\nเกสา\nเกสี\nเก้อ\nเกอิชา\nเกะ\nเกะกะ\nเกา\nเก่า\nเก้า\nเก๋า\nเกาต์\nเกาทัณฑ์\nเกาบิล\nเกาลัด\nเกาลิน\nเกาไศย\nเกาหลี\nเกาเหลา\nเกาเหลียง\nเก้าอี้\nเกาะ\nเกิ้ง\nเกิด\nเกิน\nเกิบ\nเกีย\nเกียกกาย\nเกียง\nเกี่ยง\nเกี๋ยง\nเกียจ\nเกียด\nเกียน\nเกี้ยมไฉ่\nเกี้ยมอี๋\nเกียร์\nเกียรติ\nเกียรติ์\nเกี่ยว\nเกี้ยว\nเกี๊ยว\nเกี๊ยะ\nเกื้อ\nเกือก\nเกื้อกูล\nเกือบ\nแก\nแก่\nแก้\nแกง\nแก่ง\nแก้ง\nแก๊ง\nแกงได\nแกงแนง\nแกโดลิเนียม\nแกน\nแก่น\nแก๊ป\nแกม\nแก้ม\nแกมมา\nแกรก\nแกร่ง\nแกร็น\nแกรนิต\nแกรไฟต์\nแกร่ว\nแกระ\nแกล\nแกล้ง\nแกลน\nแกลบ\nแกล้ม\nแกลลอน\nแกลเลียม\nแกล้ว\nแกละ\nแกแล\nแกว\nแก้ว\nแกว่ง\nแก๊ส\nแกะ\nโก\nโก่\nโก้\nโก๋\nโกก\nโกกนุท\nโกกิลา\nโกโก้\nโกง\nโก่ง\nโกงกาง\nโก้งเก้ง\nโกงโก้\nโก้งโค้ง\nโกเชาว์\nโกญจนาท\nโกญจา\nโกฏิ\nโกฐ\nโกฐาส\nโกณะ\nโกดัง\nโกทัณฑ์\nโกน\nโก่น\nโก๋น\nโกมล\nโกมุท\nโกเมน\nโกเมศ\nโกย\nโกรก\nโกรกกราก\nโกรง\nโกร่ง\nโกร่งกร่าง\nโกรงเกรง\nโกร๋งเกร๋ง\nโกรญจ\nโกรต๋น\nโกรธ\nโกรธา\nโกร๋น\nโกรม\nโกรย\nโกรศ\nโกโรโกเต\nโกโรโกโรก\nโกโรโกโส\nโกลน\nโกลาหล\nโกไล\nโกวิท\nโกศ\nโกศล\nโกษม\nโกสน\nโกสัช\nโกสินทร์\nโกสีย์\nโกสุม\nโกไสย\nโกหก\nใกล้\nไก\nไก่\nไก๊\nไก๋\nไก่กอม\nไกพัล\nไกร\nไกรพ\nไกรลาส\nไกรศร\nไกรศรี\nไกรสร\nไกรสรี\nไกรสิทธิ\nไกล\nไกล่\nไกลาส\nไกว\nไกวัล\nขงจื๊อ\nขจร\nขจรจบ\nขจัด\nขจ่าง\nขจาย\nขจาว\nขจิต\nขจี\nขจุย\nขเจา\nขณะ\nขด\nขน\nข้น\nขนง\nขนด\nขนบ\nขนม\nขนอง\nขนอน\nขนอบ\nขนัด\nขนัน\nขนาก\nขนาง\nขนาด\nขนาน\nขนาบ\nขนาย\nขนำ\nขนิษฐ\nขนิษฐา\nขนุน\nขนุนนก\nขบ\nขบถ\nขบวน\nขบวร\nขม\nข่ม\nขมงโกรย\nขมวด\nขมวน\nขมอง\nขม่อม\nขมัง\nขมับ\nขมา\nขม้ำ\nขมิ้น\nขมิบ\nขมีขมัน\nขมึง\nขมึงทึง\nขมุ\nขมุกขมัว\nขมุบ\nขโมย\nขยด\nขยม\nขย่ม\nขยอก\nขยอง\nขย่อน\nขย้อน\nขยะ\nขยัก\nขยัน\nขยั้น\nขยับ\nขยาด\nขยาย\nขยำ\nขย้ำ\nขยิก\nขยิบ\nขยิ่ม\nขยี้\nขยุกขยิก\nขยุกขยุย\nขยุบ\nขยุบขยิบ\nขยุม\nขยุ้ม\nขยุย\nขรม\nขรรค์\nขรัว\nขริบ\nขรี\nขรึม\nขรุขระ\nขลบ\nขล้อ\nขลัง\nขลับ\nขลาด\nขลาย\nขลิบ\nขลุก\nขลุกขลัก\nขลุกขลิก\nขลุบ\nขลุม\nขลุ่ย\nขลู\nขลู่\nขวง\nข่วง\nขวด\nข่วน\nขวนขวาย\nขวบ\nขวย\nขวักไขว่\nขวัญ\nขวั้น\nขวับ\nขวับเขวียว\nขวา\nขวาก\nขวาง\nขว้าง\nขวาด\nขวาน\nขวายขวน\nขวาว\nขว้าว\nขวิด\nขอ\nข่อ\nข้อ\nของ\nข้อง\nขอด\nขอน\nข้อน\nขอบ\nขอม\nข่อย\nข้อย\nข่อยหยอง\nขะแจะ\nขะเน็ด\nขะมอมขะแมม\nขะมักเขม้น\nขะมุกขะมอม\nขะยิก\nขะยุก\nขะเย้อแขย่ง\nขัค\nขัง\nขังขอก\nขัช\nขัณฑสกร\nขัณฑสีมา\nขัด\nขัดมอน\nขัตติยมานะ\nขัน\nขั้น\nขันติ\nขันตี\nขันโตก\nขันที\nขันธ์\nขันธาวาร\nขับ\nขัว\nขั้ว\nขา\nข่า\nข้า\nขาก\nขาก๊วย\nขาง\nข่าง\nข้าง\nขาณุ\nขาด\nขาทนียะ\nขาน\nขาบ\nข้าพเจ้า\nขาม\nข่าม\nข้าม\nขาย\nข่าย\nขาล\nขาว\nข่าว\nข้าว\nข้าวอังกุลี\nขำ\nขิก\nขิง\nขิงแกลง\nขิงแครง\nขิด\nขิปสัทโท\nขิม\nขี่\nขี้\nขี้เข็บ\nขีณาสพ\nขีด\nขี้ตังนี\nขีปนาวุธ\nขี้ยอก\nขีระ\nขึง\nขึ้ง\nขึ้น\nขึ้นฉ่าย\nขืน\nขื่น\nขื่อ\nขุก\nขุด\nขุน\nขุ่น\nขุนเพ็ด\nขุม\nขุย\nขู่\nขูด\nเข\nเข้\nเขก\nเข็ง\nเข่ง\nเขจร\nเข็ญ\nเข็ด\nเขดา\nเขต\nเขน\nเข็น\nเข่น\nเขนง\nเขน็ด\nเขนย\nเขบ็จขบวน\nเขบ็ต\nเขม\nเข็ม\nเข้ม\nเข้มขาบ\nเขม็ง\nเขม็ดแขม่\nเขม่น\nเขม้น\nเขม้นขะมัก\nเขมร\nเขมา\nเขม่า\nเขมือบ\nเขย\nเขยก\nเขย่ง\nเขย้อแขย่ง\nเขย่า\nเขยิน\nเขยิบ\nเขยื้อน\nเขรอะ\nเขลง\nเขลอะ\nเขละ\nเขลา\nเขลาะ\nเขว\nเขษม\nเขฬะ\nเขะขะ\nเขา\nเข่า\nเข้า\nเขิง\nเขิน\nเขิบ\nเขี่ย\nเขียง\nเขียด\nเขียดตะปาด\nเขียน\nเขี่ยน\nเขียม\nเขียว\nเขี้ยว\nเขียะ\nเขือ\nเขือง\nเขื่อง\nเขื่อน\nเขือม\nแข\nแข้\nแขก\nแข็ง\nแข่ง\nแข้ง\nแขน\nแข่น\nแข้น\nแขนง\nแขม\nแขม็บ\nแขม่ว\nแขยง\nแขย่ง\nแขวก\nแขวง\nแขวน\nแขวะ\nโข\nโขก\nโขง\nโข่ง\nโขด\nโขดง\nโขน\nโขนง\nโขม\nโขมง\nโขมด\nโขยก\nโขยง\nโขย่ง\nโขยด\nโขลก\nโขลง\nโขลน\nโขษม\nไข\nไข่\nไข้\nไขว่\nไขว้\nคคนะ\nคคนัมพร\nคคนางค์\nคคนานต์\nคง\nคงคา\nคงไคย\nคช\nคชาชาติ\nคชาชีพ\nคชาธาร\nคชาภรณ์\nคณนา\nคณบดี\nคณะ\nคณาจารย์\nคณาธิการ\nคณาธิปไตย\nคณานับ\nคณิกา\nคณิต\nคเณศ\nคด\nคดี\nคติ\nคทา\nคน\nค้น\nคนทา\nคนทิสอ\nคนที\nคนโท\nคนธ์\nคันธ์\nคนธรรพ์\nคเนจร\nคบ\nคม\nคมน์\nคมนาการ\nคมนาคม\nคมิกภัต\nครก\nครบ\nครรชิต\nครรภ\nครรภ์\nครรลอง\nครรโลง\nครรไล\nครวญ\nครวี\nครหา\nครอก\nครอง\nครองแครง\nคร่อเงาะ\nคร่อเทียน\nครอบ\nคร่อม\nคระเมิม\nคระแลง\nคระไล\nคระแวง\nคระหน\nคระหวน\nคระหาย\nคระโหย\nครั่ง\nครั้ง\nครัดเคร่ง\nครัน\nครั่น\nครั้น\nครับ\nครัว\nครา\nคร่า\nคราก\nคราง\nคราญ\nคราด\nคร้าน\nคราบ\nคราม\nคร้าม\nครามครัน\nคราว\nคร่าว\nคราส\nครำ\nคร่ำ\nคร่ำเคร่ง\nคริปทอน\nคริสต์\nครีบ\nครีม\nครีษมายัน\nครึ\nครึกครื้น\nครึกโครม\nครึ่ง\nครึ่ด\nครึน\nครึ้ม\nครืด\nครืน\nครื้น\nครืนครั่น\nครื้นครั่น\nครื้นครึก\nครื้นเครง\nครือ\nครุ\nครุคระ\nครุฑ\nครุ่น\nครุมเครือ\nครุย\nครุวนา\nครู\nครู่\nครูด\nคฤโฆษ\nคฤนถ์\nคฤหบดี\nคฤหัสถ์\nคฤหาสน์\nคลวง\nคลอ\nคล้อ\nคลอก\nคลอง\nคล่อง\nคล้อง\nคลอด\nคลอน\nคล้อย\nคลอรีน\nคลอโรฟอร์ม\nคลอโรฟีลล์\nคละ\nคละคลุ้ง\nคลัก\nคลั่ก\nคลัง\nคลั่ง\nคลัตช์\nคลับคล้าย\nคลับคลา\nคลา\nคล้า\nคลางแคลง\nคลาด\nคลาน\nคลาย\nคล้าย\nคล้ายคลึง\nคล่าว\nคลำ\nคล่ำ\nคล้ำ\nคลิ้งโคลง\nคลิด\nคลินิก\nคลี\nคลี่\nคลึง\nคลื่น\nคลุก\nคลุ้ง\nคลุบ\nคลุม\nคลุ่ม\nคลุ้ม\nควง\nควณ\nควน\nควบ\nควย\nควร\nควัก\nควั่ก\nควั่งคว้าง\nควัน\nควั่น\nคว้า\nควาก\nคว้าง\nควาญ\nควาน\nคว้าน\nความ\nควาย\nคว่าว\nคว่ำ\nควินิน\nควิวคว่าง\nคหกรรม\nคหกรรมศาสตร์\nคหบดี\nคหัฐ\nคอ\nค้อ\nคอก\nค็อกคัส\nค็อกเทล\nคอเคซอยด์\nค่องอ้อย\nคอด\nคอแดง\nคอน\nค่อน\nค้อน\nคอนกรีต\nคอนเดนเซอร์\nคอนแวนต์\nคอนเสิร์ต\nคอม\nค่อม\nค้อม\nคอมพิวเตอร์\nคอมมานโด\nคอมมิวนิสต์\nคอย\nค่อย\nค้อย\nคอยล์\nคอร์ด\nคอแลน\nคอสติกโซดา\nคะ\nค่ะ\nคะไขว่\nคะค้อย\nคะคาน\nคะนน\nคะนอง\nคะน้า\nคะนึง\nคะเน\nคะเนงร้าย\nคะเน็ด\nคะแนน\nคะมำ\nคะยั้นคะยอ\nคะเยอ\nคัก\nคั่ก\nคัคนะ\nคัคนัมพร\nคัคนางค์\nคัคนานต์\nคั่ง\nคังไคย\nคัจฉ\nคัณฑมาลา\nคัณฑสูตร\nคัด\nคัดเค้า\nคัดมอน\nคัดเม็ง\nคัทลียา\nคัน\nคั่น\nคั้น\nคันถรจนาจารย์\nคันธกุฎี\nคันธมาทน์\nคันธารราษฎร์\nคับ\nคับค้อน\nคับคา\nคับแค\nคัพภ์\nคัมภีร์\nคัมภีรภาพ\nคัล\nคั่ว\nคา\nค่า\nค้า\nค่าคบ\nคาง\nค่าง\nค้าง\nคางคก\nค้างคาว\nคาด\nคาถา\nคาทอลิก\nคาน\nค้าน\nคาบ\nคาพยุต\nคาม\nคามวาสี\nคามณีย์\nคามภีร์\nคาย\nค่าย\nคาร์บอน\nคาร์บอเนต\nคาร์บอลิก\nคาร์บูเรเตอร์\nคาร์โบรันดัม\nคาร์โบไฮเดรต\nคารม\nคารวะ\nคาราเต้\nคาราวาน\nคาว\nค่าว\nค้าว\nคาวตอง\nคาวี\nคาวุต\nคาส\nคำ\nค่ำ\nค้ำ\nคำนวณ\nคำนวร\nคำนับ\nคำนัล\nคำนึง\nคำนูณ\nคำฝอย\nคำเพลิง\nคำรน\nคำรบ\nคำราม\nคำแสด\nคำแหง\nคำโอง\nคิก\nคิง\nคิด\nคิมหันต์\nคิรี\nคิลาน\nคิลานะ\nคิว\nคิ้ว\nคี่\nคีต\nคีบ\nคีม\nคีรี\nคีรีบูน\nคึก\nคึ่ก\nคึกคัก\nคืน\nคืบ\nคือ\nคุ\nคุก\nคุกกี้\nคุกคาม\nคุกพาทย์\nคุ้ง\nคุณ\nคุด\nคุดทะราด\nคุต\nคุตติ\nคุ่น\nคุ้น\nคุป\nคุปต์\nคุปติ\nคุม\nคุ่ม\nคุ้ม\nคุย\nคุ้ย\nคุยหฐาน\nคุยหประเทศ\nคุรุ\nคุลา\nคุลิก่า\nคุลีการ\nคุหา\nคู\nคู่\nคู้\nคูณ\nคูถ\nคูน\nคูปอง\nคูเรียม\nคูหา\nเค้ก\nเค้เก้\nเค้ง\nเคณฑะ\nเคด\nเค็ด\nเคน\nเค้น\nเคเบิล\nเค็ม\nเคมี\nเคย\nเครง\nเคร่ง\nเครงครา\nเครงครำ\nเครดิต\nเครน\nเครา\nเคร่า\nเคราหณี\nเคราะห์\nเครียด\nเครียว\nเครือ\nเครื่อง\nเคล้ง\nเคล็ด\nเคล้น\nเคล้า\nเคล่าคล่อง\nเคลิบเคลิ้ม\nเคลิ้ม\nเคลีย\nเคลื่อน\nเคลือบ\nเคว้ง\nเคหะ\nเคหา\nเคอะ\nเค้า\nเคาน์เตอร์\nเคารพ\nเคาะ\nเคาะแคะ\nเคียง\nเคียด\nเคียน\nเคียม\nเคี่ยม\nเคียร\nเคียว\nเคี่ยว\nเคี้ยว\nเคือง\nแค\nแค่\nแค้\nแคแล\nแคดเมียม\nแค็ตตาล็อก\nแคแตร\nแคโทด\nแคน\nแค่น\nแค้น\nแคบ\nแคบหมู\nแคปซูล\nแคม\nแคร่\nแครก\nแครง\nแคระ\nแคลคูลัส\nแคลง\nแคลเซียม\nแคลน\nแคล้ว\nแคล่วคล่อง\nแคลอรี\nแคลิฟอร์เนียม\nแคว\nแควก\nแคว้น\nแคแสด\nแคะ\nโค\nโคก\nโคเคน\nโค่ง\nโค้ง\nโคจร\nโคเซแคนต์\nโคไซน์\nโคตร\nโคแทนเจนต์\nโคธา\nโคน\nโค่น\nโคบอลต์\nโคปผกะ\nโคม\nโคม่า\nโครก\nโครกคราก\nโครง\nโคร่ง\nโคร่งคร่าง\nโครม\nโครเมียม\nโครโมโซม\nโคราช\nโครำ\nโคล\nโคลง\nโคลน\nโควตา\nโคออร์ดิเนต\nใคร\nใคร่\nใคร่ครวญ\nไค\nไค้\nไคร้\nไคร้เครือ\nไคล\nไคล้\nฆนะ\nฆราวาส\nฆ้อง\nฆ่า\nฆาต\nฆาน\nฆานินทรีย์\nเฆี่ยน\nโฆรวิส\nโฆษก\nโฆษณา\nโฆษะ\nโฆษิต\nงก\nงง\nงด\nงดงาม\nงบ\nงม\nงวง\nง่วง\nงวด\nง่วน\nง้วน\nงวยงง\nงอ\nง้อ\nงอก\nงอกแงก\nง่อกแง่ก\nง่อง\nง่องแง่ง\nงอแง\nงอด\nงอดแงด\nงอน\nง่อน\nง่อนแง่น\nงอนหง่อ\nงอบ\nงอม\nง้อม\nงอย\nง่อย\nงัก\nงั่ก\nงั่ง\nงัด\nงัน\nงันงก\nงับ\nงัว\nงั่ว\nงัวเงีย\nงา\nง่า\nง้าง\nงาน\nง่าน\nงาบ\nงาม\nง่าม\nงาย\nง่าย\nง้าว\nงำ\nง่ำ\nง้ำ\nงิ้ว\nงี่เง่า\nงีบ\nงึก\nงึน\nงึม\nงุด\nงุนงง\nงุ่นง่าน\nงุบ\nงุบงิบ\nงุ้ม\nงุ่มง่าม\nงุย\nงู\nงูบ\nงูสวัด\nเงก\nเงย\nเงอะ\nเงอะงะ\nเงา\nเง่า\nเง้า\nเงาะ\nเงิน\nเงี่ยง\nเงี่ยน\nเงียบ\nเงี้ยว\nเงี่ยหู\nเงื้อ\nเงือก\nเงื่อง\nเงือด\nเงื่อน\nเงือบ\nเงื้อม\nแง\nแง่\nแง่ง\nแง่น\nแง้ม\nแงะ\nโง\nโง่\nโงก\nโงกเงก\nโงง\nโง่ง\nโง้ง\nโงงเงง\nโง่งเง่ง\nโงเง\nโงน\nโงนเงน\nไง้\nจก\nจง\nจ่ง\nจงกรม\nจงกล\nจงกลนี\nจงโคร่ง\nโจงโคร่ง\nจงอร\nจงอาง\nจด\nจดุรงค์\nจตุปัจจัย\nจตุลังคบาท\nจตุโลกบาล\nจตุสดมภ์\nจตุตถ\nจตุตถี\nจตุร\nจตุรงค์\nจตุรพักตร์\nจตุรพิธ\nจตุรพิธพร\nจน\nจบ\nจม\nจ่ม\nจมร\nจมรี\nจมูก\nจยุติ\nจร\nจรณะ\nจรด\nจรรจา\nจรรโจษ\nจรรม\nจรรยา\nจรรโลง\nจรลี\nจรวจ\nจรวด\nจรส\nจรอก\nจระเข้\nจระนำ\nจระบี\nจรัล\nจรัส\nจราจร\nจราญ\nจริก\nจริง\nจริต\nจริม\nจริยธรรม\nจริยวัตร\nจริยาวัตร\nจริยศาสตร์\nจริยศึกษา\nจริยา\nจรุง\nจรูง\nจรูญ\nจเร\nจล\nจลนพลศาสตร์\nจลนศาสตร์\nจลนี\nจลาจล\nจวก\nจ๊วก\nจวง\nจ้วง\nจ๋วง\nจวด\nจวน\nจวบ\nจวัก\nจอ\nจ่อ\nจ้อ\nจ๋อ\nจอก\nจ้อก\nจ๊อก\nจ้อกแจ้ก\nจอง\nจ้อง\nจ๋อง\nจ้องเต\nจองเปรียง\nจ้องหน่อง\nจองหอง\nจอแจ\nจ๋อแจ๋\nจอด\nจอน\nจ้อน\nจอนจ่อ\nจอบ\nจอม\nจ่อม\nจอมสุรางค์\nจ่อย\nจ้อย\nจ๋อย\nจอแส\nจะ\nจ้ะ\nจ๊ะ\nจ๋ะ\nจะกละ\nจะกลาม\nจะกูด\nจะขาบ\nจะเข้\nจะเข็บ\nจะงอย\nจะจะ\nจ๊ะจ๋า\nจะแจ้ง\nจะแจ่ม\nจะละเม็ด\nจะละหวั่น\nจัก\nจั้ก\nจักกาย\nจั๊กกิ้ม\nจักขุ\nจักจั่น\nจักจี้\nจั๊กจี้\nจั๊กเดียม\nจักร\nจักรพาก\nจักรวาก\nจักริน\nจักรี\nจั๊กเล้อ\nจักษุ\nจักแหล่น\nจัง\nจั้ง\nจั๋ง\nจังกวด\nจังกอบ\nจังก้า\nจังกูด\nจังโกฏก์\nจังงัง\nจั้งมั่ง\nจังไร\nจังหนับ\nจังหรีด\nจังหวะ\nจังหวัด\nจังหัน\nจัญไร\nจัณฑ์\nจัณฑาล\nจัด\nจัตตาฬีสะ\nจัตวา\nจัตุ\nจัตุรงค์\nจัตุรัส\nจัตุลังคบาท\nจัตุโลกบาล\nจัตุสดมภ์\nจัน\nจั่น\nจันโจษ\nจั่นดิน\nจันท์\nจันทน์\nจันทร์\nจันทรคติ\nจันทรคราส\nจันทรุปราคา\nจันทรเม็ด\nจันทวาร\nจันทัน\nจันอับ\nจับ\nจับกัง\nจับฉ่าย\nจับเดิม\nจับปิ้ง\nจับยี่กี\nจัมบก\nจัมปกะ\nจัมปา\nจัมมะ\nจัว\nจั่ว\nจั๊วะ\nจา\nจ่า\nจ้า\nจ๋า\nจาก\nจากพาก\nจาคะ\nจาคี\nจาง\nจ่าง\nจ้าง\nจางปาง\nจางวาง\nจาด\nจาตุรงค์\nจาตุรนต์\nจาตุรันต์\nจาน\nจ้าน\nจาบ\nจาบัล\nจาบัลย์\nจาป\nจาม\nจ่ามงกุฎ\nจามจุรี\nจามร\nจามรี\nจามีกร\nจ่าย\nจาร\nจ่ารง\nจารวาก\nจาระไน\nจาระบี\nจาริก\nจารึก\nจารี\nจารีต\nจารุ\nจ้าละหวั่น\nจาว\nจ้าว\nจ่าหวัก\nจำ\nจ้ำ\nจำกัด\nจำงาย\nจ้ำจี้\nจำเจ\nจำเดิม\nจำทวย\nจำนง\nจำนน\nจำนรรจ์\nจำนรรจา\nจำนวน\nจำนอง\nจำนัล\nจำนำ\nจำเนียน\nจำเนียม\nจำเนียร\nจำแนก\nจำบ่ม\nจำบัง\nจ้ำเบ้า\nจำปา\nจำปาดะ\nจำปี\nจำปูน\nจำพวก\nจำเพาะ\nจ้ำม่ำ\nจำรัส\nจำราญ\nจำรูญ\nจำเริญ\nจำเรียง\nจำลอง\nจำเลย\nจำเลาะ\nจำแลง\nจำแล่น\nจำหนับ\nจ๋ำหนับ\nจำหน่าย\nจำหระ\nจำหล่อ\nจำหลัก\nจำเหียง\nจำอวด\nจิ\nจิก\nจิ้งโกร่ง\nจิ้งจก\nจิงจ้อ\nจิ้งจอก\nจิงจัง\nจิ้งจัง\nจิงโจ้\nจิ้งหรีด\nจิ้งเหลน\nจิต\nจิตกาธาน\nจิตต์\nจิตร\nจิตรจุล\nจิตระ\nจิตรา\nจินเจา\nจินดา\nจินดาหนา\nจินดาหรา\nจินต์\nจิบ\nจิปาถะ\nจิ่ม\nจิ้ม\nจิ้มก้อง\nจิ้มลิ้ม\nจิรกาล\nจิ๋ว\nจี\nจี่\nจี้\nจี๋\nจี๋จ้อ\nจีแจ๊บ\nจี๊ด\nจีน\nจีนแส\nจีบ\nจีโบ\nจีม\nจีวร\nจึง\nจึ่ง\nจึ้ง\nจืด\nจุ\nจุก\nจุ๊กกรู๊\nจุกจิก\nจุกชี\nจุกผาม\nจุกโรหินี\nจุ่ง\nจุ๋งจิ๋ง\nจุฑา\nจุณ\nจุณณียบท\nจุด\nจุติ\nจุตูปปาตญาณ\nจุทส\nจุน\nจุ่น\nจุ้น\nจุนจู๋\nจุ้นจู๊\nจุนทการ\nจุนสี\nจุบ\nจุ๊บ\nจุบจิบ\nจุ๊บแจง\nจุ่ม\nจุ้ม\nจุ๋มจิ๋ม\nจุมพฏ\nจุมพรวด\nจุมพล\nจุมพิต\nจุมโพล่\nจุ้ย\nจุรณ\nจูรณ\nจุรี\nจุไร\nจุล\nจุลจอมเกล้า\nจุลวงศ์\nจุฬา\nจุฬาราชมนตรี\nจุฬาลัมพา\nจุฬาลำพา\nจู\nจู่\nจู้\nจู๋\nจูง\nจู้จี้\nจู๋จี๋\nจู๊ด\nจูบ\nเจ\nเจ๊ก\nเจ่ง\nเจ้ง\nเจ๊ง\nเจ๋ง\nเจ็ด\nเจ็ดตะคลี\nเจดีย์\nเจดียสถาน\nเจต\nเจตนา\nเจตพังคี\nเจตมูลเพลิง\nเจตสิก\nเจโตวิมุติ\nเจน\nเจ็บ\nเจรจา\nเจริญ\nเจริด\nเจรียง\nเจลียง\nเจว็ด\nเจษฎา\nเจ๊สัว\nเจอ\nเจ่อ\nเจ๋อ\nเจ๋อเจ๊อะ\nเจอร์เมเนียม\nเจอะ\nเจา\nเจ่า\nเจ้า\nเจ๊า\nเจาะ\nเจิ่ง\nเจิด\nเจิ่น\nเจิม\nเจีย\nเจียง\nเจียด\nเจียน\nเจี๋ยน\nเจี๊ยบ\nเจียม\nเจี๋ยมเจี้ยม\nเจียร\nเจียระไน\nเจียระบาด\nเจียว\nเจี๊ยวจ๊าว\nเจือ\nเจื่อน\nเจื้อย\nเจือสม\nแจ\nแจ้\nแจ๋\nแจก\nแจกัน\nแจง\nแจ่ง\nแจ้ง\nแจงลอน\nแจ๊ด\nแจ๊ดแจ๋\nแจตร\nแจ้น\nแจบ\nแจ่ม\nแจรง\nแจว\nแจ่ว\nแจ้ว\nแจ๋ว\nแจะ\nโจก\nโจ๊ก\nโจง\nโจ่งครึ่ม\nโจ๋งครึ่ม\nโจ่งครุ่ม\nโจ๋งเจ๋ง\nโจ่งแจ้ง\nโจท\nโจทก์\nโจทนา\nโจทย์\nโจน\nโจม\nโจร\nโจล\nโจษ\nโจษจัน\nใจ\nไจ\nไจ้\nฉก\nฉกรรจ์\nฉกษัตริย์\nฉกาจ\nฉกามาพจร\nฉกามาวจร\nฉง\nฉงน\nฉงาย\nฉทึง\nฉนวน\nฉนัง\nฉนาก\nฉนำ\nฉบัง\nฉบัด\nฉบับ\nฉบำ\nฉม\nฉมบ\nฉมวก\nฉมวย\nฉม่อง\nฉมัง\nฉมัน\nฉมา\nฉมำ\nฉล\nฉลวย\nฉลอง\nฉลอม\nฉลัก\nฉลับ\nฉลาก\nฉลาง\nฉลาด\nฉลาม\nฉลาย\nฉลิว\nฉลีก\nฉลุ\nฉลู\nฉวย\nฉวะ\nฉวัดเฉวียน\nฉวาง\nฉวี\nฉศก\nฉ้อ\nฉอก\nฉ่อง\nฉอด\nฉ่อย\nฉอเลาะ\nฉะ\nฉะฉาด\nฉะฉาน\nฉะฉ่ำ\nฉะฉี่\nฉะเฉื่อย\nฉะนั้น\nฉะนี้\nฉะอ้อน\nฉักกะ\nฉัฐ\nฉัด\nฉัตร\nฉัททันต์\nฉัน\nฉันท\nฉันท์\nฉันทะ\nฉันทา\nฉันทาคติ\nฉันทานุมัติ\nฉับ\nฉัพพรรณรังสี\nฉัยยา\nฉ่า\nฉาก\nฉาง\nฉ่าง\nฉ่าฉาว\nฉาด\nฉาดฉาน\nฉาตกภัย\nฉาน\nฉาบ\nฉาบฉวย\nฉาย\nฉายา\nฉาว\nฉ่ำ\nฉำฉา\nฉำแฉะ\nฉิ่ง\nฉิน\nฉินท์\nฉินทฤกษ์\nฉิบ\nฉิมพลี\nฉิว\nฉี่\nฉีก\nฉีด\nฉุ\nฉุก\nฉุด\nฉุน\nฉุป\nฉุป\nฉุย\nฉุยฉาย\nฉู่\nฉู่ฉี่\nฉูด\nฉูดฉาด\nเฉ\nเฉก\nเฉโก\nเฉ่ง\nเฉด\nเฉท\nเฉนียน\nเฉพาะ\nเฉย\nเฉลย\nเฉลว\nเฉลา\nเฉลิม\nเฉลี่ย\nเฉลียง\nเฉลี่ยง\nเฉลียบ\nเฉลียว\nเฉวียง\nเฉวียน\nเฉอะแฉะ\nเฉา\nเฉาก๊วย\nเฉาฮื้อ\nเฉาะ\nเฉิด\nเฉิบ\nเฉียง\nเฉียงพร้านางแอ\nเฉียด\nเฉียบ\nเฉียว\nเฉี่ยว\nเฉือน\nเฉื่อย\nแฉ\nแฉ่\nแฉก\nแฉง\nแฉ่ง\nแฉลบ\nแฉล้ม\nแฉะ\nโฉ\nโฉ่\nโฉเก\nโฉ่งฉ่าง\nโฉงเฉง\nโฉด\nโฉนด\nโฉบ\nโฉเบ๊\nโฉม\nโฉลก\nไฉน\nไฉไล\nชก\nชคัตตรัย\nชง\nชงโค\nชงฆ์\nชงฆา\nชงโลง\nชฎา\nชฎามังษี\nชฎามังสี\nชฎิล\nชด\nชน\nชนก\nชนนี\nชนม์\nชนวน\nชนะ\nชนัก\nชนา\nชนาง\nชนิด\nชเนตตี\nชบา\nชม\nชมดชม้อย\nชมนาด\nชมพู\nชมพู่\nชมรม\nชม้อย\nชม้าย\nชไม\nชยา\nชโย\nชรทึง\nชรริน\nชรอุ่ม\nชระล้ำ\nชระลุ\nชระอาบ\nชระเอม\nชรัด\nชรา\nชล\nชโลง\nชโลม\nช่วง\nชวด\nชวน\nชวย\nช่วย\nชวร\nชวลิต\nชวา\nชวาล\nชวาลา\nช่อ\nชอก\nช็อก\nช็อกโกเลต\nช็อกโกแลต\nชอง\nช่อง\nช้อง\nชองระอา\nชอน\nช่อน\nช้อน\nชอบ\nชอม\nช้อย\nชอล์ก\nชอ่ำ\nชอุ่ม\nชะ\nชะคราม\nชะงอก\nชะง่อน\nชะงัก\nชะงัด\nชะง้ำ\nชะงุ้ม\nชะเง้อ\nชะเงื้อม\nชะแง้\nชะโงก\nชะฉ่า\nชะช่อง\nชะชะ\nชะช้า\nชะโด\nชะตา\nชะต้า\nชะนี\nชะเนาะ\nชะเนียง\nชะพลู\nชะเพลิง\nชะมด\nชะมบ\nชะมวง\nชะมัง\nชะมัด\nชะแม่\nชะรอย\nชะลอ\nชะลอม\nชะล่า\nชะลาน\nชะลิน\nชะลูด\nชะเลง\nชะเลย\nชะแล็ก\nชะแลง\nชะวาก\nชะวาด\nชะเวิกชะวาก\nชะแวง\nชะอม\nชะอ้อน\nชะเอม\nชะโอน\nชัก\nชักคราม\nชักช้า\nชัง\nชั่ง\nชังคา\nชังฆ\nชัชวาล\nชัฏ\nชัด\nชัดช้า\nชัน\nชั้น\nชันกาด\nชันชี\nชันตุ\nชันนะตุ\nชันนุ\nชันโรง\nชันษา\nชันสูตร\nชัปนะ\nชัพ\nชัมพูนท\nชัย\nชัยพฤกษ์\nชัยภูมิ\nชัลลุกา\nชั่ว\nชั้ว\nชัวชม\nชา\nช้า\nชาคระ\nชาคริต\nชาคริยานุโยค\nช่าง\nช้าง\nช้าช่อน\nชาญ\nชาด\nชาดก\nชาต\nชาตบุษย์\nชาตรี\nชาตะ\nชาตา\nชาติ\nชาน\nชานุ\nช้าปี่\nชาปีไหน\nช้าแป้น\nช้าพลู\nชาม\nชามพูนท\nชามาดร\nชามาดา\nชามาตุ\nชาย\nชายา\nชาล\nชาลา\nชาลินี\nช้าเลือด\nชาว\nชาวี\nชำ\nช่ำ\nช้ำ\nชำงัด\nชำงาย\nช่ำชอง\nชำนะ\nชำนัญ\nชำนัน\nชำนาญ\nชำนิ\nชำเนียร\nชำมะนาด\nชำมะเลียง\nชำร่วย\nชำระ\nช้ำรั่ว\nชำรุด\nชำเรา\nชำเราะ\nชำแรก\nชำแระ\nชำเลือง\nชำแหละ\nชิ\nชิง\nชิ่ง\nชิงชัน\nชิงช้า\nชิงช้าชาลี\nชิงชี่\nชิงฮื้อ\nชิชะ\nชิชิ\nชิณณะ\nชิด\nชิเดนทรีย์\nชิต\nชิตินทรีย์\nชิน\nชิ้น\nชินโต\nชิโนรส\nชิม\nชิมแปนซี\nชิยา\nชิรณะ\nชิระ\nชิวหา\nชิสา\nชี\nชี่\nชี้\nชีปะขาว\nชีผะขาว\nชีผ้าขาว\nชีพ\nชีฟอง\nชีรณ\nชีระ\nชีวเคมี\nชีวประวัติ\nชีวภาพ\nชีววิทยา\nชีวะ\nชีวัน\nชีวา\nชีวาตม์\nชีวาลัย\nชีวิต\nชีวิตักษัย\nชีวิน\nชีวี\nชืด\nชื่น\nชื้น\nชื่อ\nชุก\nชุกชี\nชุ้ง\nชุณห\nชุด\nชุติ\nชุน\nชุบ\nชุม\nชุ่ม\nชุมนุม\nชุมพร\nชุมพา\nชุมแพรก\nชุมรุม\nชุมแสง\nชุมเห็ด\nชุ่ย\nชุลมุน\nชุลี\nชุษณะ\nชู\nชู้\nเช็ค\nเช้ง\nเช้งวับ\nเชงเลง\nเช็ด\nเชน\nเช่น\nเชย\nเชลง\nเชลย\nเชลแล็ก\nเชลียง\nเชวง\nเชษฐะ\nเชษฐา\nเชอ\nเช่า\nเช้า\nเชาว์\nเชาวน์\nเชิง\nเชิญ\nเชิด\nเชิ้ต\nเชียง\nเชี่ยน\nเชียบ\nเชี่ยม\nเชียร\nเชียร์\nเชียว\nเชี่ยว\nเชื่อ\nเชื้อ\nเชือก\nเชื่อง\nเชือด\nเชือน\nเชื่อม\nแช\nแช่\nแช่ง\nแชงมา\nแชบ๊วย\nแช่ม\nแชร์\nแชล่ม\nแชสซี\nแชะ\nโชก\nโชค\nโชงโลง\nโชดก\nโชดึก\nโชต\nโชตก\nโชติ\nโชติก\nโชน\nโชมโรม\nโชย\nโชยงการ\nโชยชาย\nโชยติส\nโชว์\nใช่\nใช้\nไช\nไชนะ\nไชย\nไชโย\nซก\nซ่ก\nซงดำ\nซ่งฮื้อ\nซด\nซน\nซ้น\nซบ\nซม\nซวดเซ\nซวน\nซวย\nซอ\nซอก\nซอง\nซ่อง\nซ้อง\nซองแมว\nซ้องแมว\nซอน\nซ่อน\nซ้อน\nซอม\nซ่อม\nซ้อม\nซอมซ่อ\nซอย\nซอส\nซัก\nซักส้าว\nซัง\nซั้ง\nซัด\nซับ\nซัลฟา\nซั้ว\nซา\nซ่า\nซาก\nซาง\nซ่าง\nซาด\nซาน\nซ่าน\nซาบซ่าน\nซาบซึ้ง\nซ่าโบะ\nซาแมเรียม\nซ้าย\nซาลาเปา\nซาว\nซ่าหริ่ม\nซำ\nซ้ำ\nซิ\nซี\nซิก\nซิกข์\nซิกซี้\nซิกแซ็ก\nซิการ์\nซิงโคนา\nซิ่น\nซินนามิก\nซินแส\nซิบ\nซิป\nซิฟิลิส\nซิลิคอน\nซิว\nซี่\nซีก\nซีเซียม\nซีด\nซี้ด\nซีนอน\nซีป่าย\nซีเมนต์\nซีเรียม\nซีลีเนียม\nซีอิ๊ว\nซึก\nซึง\nซึ่ง\nซึ้ง\nซึม\nซื่อ\nซื้อ\nซุก\nซุง\nซุน\nซุบ\nซุป\nซุ่ม\nซุ้ม\nซุ่มซ่าม\nซุย\nซู่\nซูโครส\nซูด\nซู้ด\nซูดซาด\nซูบ\nเซ\nเซ็ก\nเซแคนต์\nเซ็ง\nเซ่ง\nเซ้ง\nเซ็งแซ่\nเซต\nเซน\nเซ็น\nเซ่น\nเซนติกรัม\nเซนติเกรด\nเซนติเมตร\nเซนติลิตร\nเซปักตะกร้อ\nเซราะ\nเซรุ่ม\nเซลเซียส\nเซลล์\nเซลลูลอยด์\nเซลลูโลส\nเซ่อ\nเซอร์โคเนียม\nเซอะ\nเซา\nเซ้าซี้\nเซาะ\nเซิง\nเซิ้ง\nเซียน\nเซียบ\nเซียมซี\nเซียว\nเซี่ยว\nเซี่ยวกาง\nเซื่อง\nแซ\nแซ่\nแซ็กคาริน\nแซง\nแซงแซว\nแซด\nแซบ\nแซม\nแซยิด\nแซ่ว\nแซะ\nโซ\nโซ่\nโซก\nโซ่ง\nโซงโขดง\nโซเซ\nโซดา\nโซเดียม\nโซม\nโซรม\nโซลา\nไซ\nไซ้\nไซเกิล\nไซโคลน\nไซน์\nไซยาไนด์\nไซร้\nไซเรน\nไซโล\nฌาน\nฌาปน\nฌาปนกิจ\nฌาปนสถาน\nเฌอ\nเฌอเอม\nญวน\nญัตติ\nญาณ\nญาติ\nญานาซะฮ์\nญิบ\nญี่ปุ่น\nเญยธรรม\nไญยธรรม\nฎีกา\nฐกัด\nฐากูร\nฐาน\nฐานะ\nฐานันดร\nฐานานุกรม\nฐานานุรูป\nฐานานุศักดิ์\nฐานียะ\nฐาปน\nฐาปนา\nฐายี\nฐิต\nฐิติ\nฑาหก\nฑาหะ\nเฒ่า\nณรงค์\nเณร\nดก\nดง\nด้ง\nด้น\nดนโด่\nดนตรี\nดนัย\nดนุ\nดนู\nดบัสวิน\nดบัสวี\nดม\nดรงค์\nดรณี\nดรรชนี\nดราฟต์\nดรุณ\nดรุณี\nดล\nดวง\nด้วง\nดวด\nด่วน\nด้วน\nด้วย\nดอก\nดอง\nด่อง\nด้อง\nดองฉาย\nดองดึง\nดอด\nดอน\nด่อน\nดอม\nด้อม\nดอย\nด้อย\nดอลลาร์\nดะ\nดะโต๊ะ\nดะหมัง\nดัก\nดักดาน\nดักแด้\nดัง\nดั่ง\nดั้ง\nดัชนี\nดัด\nดัตช์\nดัน\nดั้น\nดับ\nดัมพ์\nดั้วเดี้ย\nดัสกร\nดา\nด่า\nดาก\nด่าง\nด้าง\nดาด\nดาน\nด่าน\nด้าน\nดาบ\nดาบส\nดาม\nด้าม\nด้ามจิ้ว\nดามพ์\nดาย\nด้าย\nดารกะ\nดารณี\nดารดาษ\nดาระ\nดารา\nดาล\nดาลัด\nดาว\nด่าว\nด้าว\nดาวดึงส์\nดาวบส\nดาษ\nดาษดา\nดำ\nด่ำ\nด้ำ\nดำกล\nดำเกิง\nดำแคง\nดำดง\nดำนาณ\nดำเนิน\nดำบล\nดำรง\nดำรวจ\nดำรัส\nดำริ\nดำรี\nดำรู\nดำฤษณา\nดำเลิง\nดิก\nดิ่ง\nดิฉัน\nดิฐ\nดิตถ์\nดิถี\nดิน\nดิ้น\nดิบ\nดิรัจฉาน\nดิลก\nดิ่ว\nดิ้ว\nดิ้วเดี้ยว\nดิษฐ์\nดิสโพรเซียม\nดี\nดีเซล\nดีด\nดีดีที\nดีบุก\nดีปลี\nดีเปรสชัน\nดีหมี\nดีหลี\nดึก\nดึง\nดึ่ง\nดึ่ม\nดื่น\nดื่ม\nดือ\nดื้อ\nดุ\nดุก\nดุกดิก\nดุกทะเล\nดุ้ง\nดุ้งดิ้ง\nดุจ\nดุด\nดุน\nดุ้น\nดุบ\nดุม\nดุ่ม\nดุ่ย\nดุรงค์\nดุริยะ\nดุริยางค์\nดุริยางคศาสตร์\nดุริยางคศิลป์\nดุล\nดุษฎี\nดุษณี\nดุษณีภาพ\nดุษิต\nดุสิต\nดุเหว่า\nดู\nดูกค่าง\nดูกร\nดูด\nดูรา\nดูแล\nเด\nเด่\nเดก\nเด็ก\nเดกซ์โทรส\nเดคากรัม\nเดคาเมตร\nเดคาลิตร\nเด้ง\nเด็จ\nเดช\nเดชน์\nเดชนะ\nเดชะ\nเดโช\nเดซิกรัม\nเดซิเมตร\nเดซิลิตร\nเด็ด\nเดน\nเด่น\nเดนมาร์ก\nเดรัจฉาน\nเด๋อ\nเด๋อด๋า\nเดา\nเด้า\nเดาะ\nเดิน\nเดิ่น\nเดิม\nเดียง\nเดียด\nเดียรดาษ\nเดียรถีย์\nเดียรัจฉาน\nเดียว\nเดี่ยว\nเดี๋ยว\nเดียะ\nเดื่อ\nเดือก\nเดื่อง\nเดือด\nเดือน\nเดือย\nแด\nแด่\nแดก\nแด็ก\nแดกงา\nแดกแด้\nแดง\nแดด\nแดน\nแด่น\nแด่ว\nแดะ\nแดะแด๋\nโด\nโด่\nโดกเดก\nโด่ง\nโดด\nโดน\nโดม\nโดมร\nโดย\nโดรณ\nใด\nได\nได้\nไดแซ็กคาไรด์\nไดนาโม\nไดนาไมต์\nไดโนเสาร์\nไดเรกตริกซ์\nตก\nต๊กโต\nตง\nต๋ง\nตงฉิน\nตงิด\nตงุ่น\nตด\nตติย\nตถาคต\nตน\nต้น\nตนัย\nตนุ\nตบ\nตบะ\nตปนียะ\nตม\nต้ม\nตมูก\nตยาคี\nตรง\nตรณี\nตรม\nตรรก\nตรรกะ\nตรลบ\nตรลอด\nตรลาด\nตรวจ\nตรวน\nตรอก\nตรอง\nตรอมใจ\nตรอมตรม\nตระ\nตระกล\nตระกวน\nตระกอง\nตระการ\nตระกูล\nตระคัร\nตระเตรียม\nตระนาว\nตระบก\nตระบอก\nตระบอง\nตระบัด\nตระบัน\nตระเบ็ง\nตระแบก\nตระแบง\nตระโบม\nตระพอง\nตระพัง\nตระลาการ\nตระวัน\nตระเว็ด\nตระเวน\nตระสัก\nตระหง่าน\nตระหนก\nตระหนัก\nตระหน่ำ\nตระหนี่\nตรัง\nตรังค์\nตรับ\nตรับฟัง\nตรัย\nตรัยตรึงศ์\nตรัส\nตรัสสา\nตรา\nตรากตรำ\nตราชู\nตราบ\nตราสัง\nตรำ\nตริ\nตริว\nตรี\nตรีปวาย\nตรีพิธพรรณ\nตรียัมปวาย\nตรึก\nตรึง\nตรุ\nตรุณ\nตรุณะ\nตรุษ\nตรู\nตรู่\nตฤณ\nตฤตีย\nตฤษณา\nตลก\nตลบ\nตลอด\nตลับ\nตลาด\nตลิ่ง\nตลึง\nตวง\nต่วน\nต้วมเตี้ยม\nตวัก\nตวัด\nตวาด\nตอ\nตอม่อ\nต่อ\nต้อ\nตอก\nต๊อก\nต๊อกต๋อย\nตอง\nต้อง\nตองกราย\nต้องเต\nตองแตก\nต่องแต่ง\nตองเหลือง\nตอด\nตอน\nต้อน\nตอบ\nตอเบา\nตอม\nต่อม\nต๋อม\nต่อย\nต้อย\nต้อยตริ่ง\nต้อยติ่ง\nต้อยตีวิด\nตอแย\nตอร์ปิโด\nต่อไส้\nตอแหล\nตะ\nตะกรน\nตะกร้อ\nตะกรัน\nตะกรับ\nตะกร้า\nตะกราม\nตะกรุด\nตะกรุม\nตะกรุมตะกราม\nตะกละ\nตะกลาม\nตะกวด\nตะกอ\nตะกอน\nตะกัง\nตะกั่ว\nตะกาง\nตะกาด\nตะกาย\nตะกาว\nตะกุกตะกัก\nตะกุย\nตะกู\nตะกูด\nตะเกียกตะกาย\nตะเกียง\nตะเกียบ\nตะแก\nตะแก่\nตะแกรง\nตะโก\nตะโก้\nตะโกก\nตะโกน\nตะโกรง\nตะโกรม\nตะไกร\nตะขบ\nตะขอ\nตะขาบ\nตะขิดตะขวง\nตะเข้\nตะเข็บ\nตะโขง\nตะคร้อ\nตะครอง\nตะครั่นตะครอ\nตะคร้ำ\nตะคริว\nตะคิว\nตะครุบ\nตะคอก\nตะคัน\nตะค้า\nตะคาก\nตะค้าน\nตะคุ่ม\nตะเครียว\nตะเคียว\nตะเคียน\nตะแคง\nตะไคร่\nตะไคร้\nตะเฆ่\nตะนอย\nตะนาว\nตะบม\nตะบอง\nตะบอย\nตะบัน\nตะบิ้ง\nตะบิด\nตะบิดตะบอย\nตะบี้ตะบัน\nตะบึง\nตะบูน\nตะเบ็ง\nตะเบ็งมาน\nตะเบ๊ะ\nตะแบก\nตะแบง\nตะโบม\nตะไบ\nตะปบ\nตะปลิง\nตะปิ้ง\nตะปุ่มตะป่ำ\nตะปู\nตะพง\nตะพด\nตะพอง\nตะพัก\nตะพัง\nตะพัด\nตะพั้น\nตะพาก\nตะพาน\nตะพาบ\nตะพาย\nตะพึด\nตะพึดตะพือ\nตะพุ่น\nตะเพรา\nตะเพิง\nตะเพิด\nตะเพียน\nตะโพก\nตะโพง\nตะโพน\nตะเภา\nตะใภ้\nตะม่อ\nตะมอย\nตะรังกะนู\nตะรังตังกวาง\nตะรังตังช้าง\nตะราง\nตะลอง\nตะลอน\nตะล่อม\nตะละ\nตะลาน\nตะลิงปลิง\nตะลิบ\nตะลีตะลาน\nตะลึง\nตะลึงพรึงเพริด\nตะลุง\nตะลุ่ม\nตะลุ่มนก\nตะลุมบอน\nตะลุ่มโปง\nตะลุมพอ\nตะลุมพุก\nตะลุย\nตะเลง\nตะแลงแกง\nตะไล\nตะวัน\nตะเวน\nตะหลิว\nตะหลุก\nตะหลุง\nตะแหง่ว\nตะแหมะแขะ\nตะโหงก\nตัก\nตักกะ\nตักเตือน\nตั๊กแตน\nตักษัย\nตัง\nตั่ง\nตั้ง\nตังเก\nตังฉ่าย\nตังเม\nตังวาย\nตังโอ๋\nตัจฉก\nตัจฉนี\nตัณฑุล\nตัณหา\nตัด\nตัน\nตันตระ\nตันติ\nตันหยง\nตับ\nตับปิ้ง\nตัว\nตั๋ว\nตัวจี๊ด\nตัวตืด\nตั้วโผ\nตั้วเหี่ย\nตา\nตาก\nตากวาง\nต่าง\nตาด\nตาน\nต่าน\nต้าน\nตานนกกด\nตานี\nตาบ\nตาม\nตามะแน\nตามิน\nตาย\nตาราไต\nตาล\nตาลุ\nต๋าว\nตาเสือ\nตาหนู\nตาฬ\nตำ\nต่ำ\nตำนาน\nตำบล\nตำแบ\nตำแย\nตำรวจ\nตำรับ\nตำรา\nตำรุ\nตำลึง\nตำเสา\nตำหนัก\nตำหนิ\nตำแหน่ง\nติ\nติก\nติ๊ก\nติกะ\nติกาหรัง\nติง\nติ่ง\nติ๋ง\nติ่งตั่ง\nติ๋งต่าง\nติงส\nติงสติ\nติณ\nติด\nติตติกะ\nติตติร\nติตถ\nติตถะ\nติถี\nติมิงคละ\nติรัจฉาน\nติลก\nติละ\nติ้ว\nตี\nตี่\nตีน\nตีบ\nตีรถะ\nตีระ\nตึ\nตึก\nตึ้ก\nตึ้กตั้ก\nตึง\nตึดตื๋อ\nตึ๊ดตื๋อ\nตืด\nตื่น\nตื้น\nตื้อ\nตื๊อ\nตื๋อ\nตุ\nตุ๊\nตุ๊กแก\nตุ๊กตา\nตุ๊กต่ำ\nตุกติก\nตุ๊กติ๊ก\nตุ๊กตุ่น\nตุ๊กตุ๋ย\nตุง\nตุ้งก่า\nตุ้งติ้ง\nตุ๊ดตู่\nตุน\nตุ่น\nตุ๋น\nตุนาหงัน\nตุบ\nตุ้บ\nตุ๊บป่อง\nตุปัดตุป่อง\nตุปัดตุเป๋\nตุ่ม\nตุ้ม\nตุ๋ม\nตุ้มกว้าว\nตุมกา\nตุ้มแซะ\nตุมตัง\nตุ้มเต๋น\nตุ้มปี่\nตุมพะ\nตุ่ย\nตุ้ย\nตุ๊ย\nตุ๋ยตุ่ย\nตุรคะ\nตุรงค์\nตุล\nตุลา\nตุหรัดตุเหร่\nตู\nตู่\nตู้\nตูก\nตูด\nตูบ\nตูม\nเต๊ก\nเต็ง\nเต่ง\nเตช\nเตโช\nเต้น\nเต็นท์\nเต็ม\nเตย\nเตร่\nเตร็ด\nเตรตา\nเตรียม\nเตรียมตรม\nเตละ\nเตลิด\nเตว็ด\nเต่อ\nเตอะ\nเตะ\nเตา\nเต่า\nเต้า\nเต๋า\nเต่าเกียด\nเต้าเจี้ยว\nเต้าทึง\nเต้าหู้\nเต้าฮวย\nเต๊าะ\nเตาะแตะ\nเติ่ง\nเติบ\nเติม\nเตี้ย\nเตียง\nเตียน\nเตียบ\nเตี๋ยม\nเตียรถ์\nเตียว\nเตี่ยว\nเตือน\nแต่\nแต้\nแตก\nแตง\nแต่ง\nแตงเม\nแต้จิ๋ว\nแตด\nแต๊ดแต๋\nแตน\nแต้ม\nแตร\nแตระ\nแต้ว\nแต้วแร้ว\nแต้วแล้ว\nแต่ว่า\nแต้แว้ด\nแตะ\nโต\nโต้\nโตก\nโต่ง\nโต้ง\nโตงเตง\nโตฎก\nโต๊ด\nโตน\nโตนด\nโต้โผ\nโตมร\nโตย\nโตรก\nโต๊ะ\nใต้\nไต\nไต่\nไต้\nไต๋\nไตร\nไตรกิศยา\nไตรดายุค\nไตร่ตรอง\nไตรย\nไต้หวัน\nถก\nถกล\nถงาด\nถด\nถนน\nถนอม\nถนัด\nถนัน\nถนำ\nถนิม\nถม\nถ่ม\nถมอ\nถมึงทึง\nถลก\nถลกบาตร\nถลน\nถล่ม\nถลอก\nถลัน\nถลา\nถลาก\nถลาย\nถลำ\nถลึงตา\nถลุง\nถ่วง\nถ้วน\nถ้วย\nถวัล\nถวัลย์\nถวาย\nถวิน\nถวิล\nถ่อ\nถ้อ\nถอก\nถอง\nถ่อง\nถ้อง\nถอด\nถอน\nถอบ\nถอบแถบ\nถ่อม\nถอย\nถ่อย\nถ้อย\nถะ\nถะถั่น\nถะมัดถะแมง\nถัก\nถัง\nถั่ง\nถัด\nถัทธ\nถัน\nถั่น\nถับ\nถัมภ์\nถัว\nถั่ว\nถา\nถ้า\nถาก\nถาง\nถ่าง\nถาด\nถาน\nถ่าน\nถาบ\nถาม\nถามะ\nถ่าย\nถ่าว\nถาวร\nถาวรธิรา\nถ้ำ\nถิ่น\nถี่\nถีบ\nถึก\nถึง\nถือ\nถุง\nถุน\nถุย\nถู\nถูก\nเถกิง\nเถน\nเถร\nเถระ\nเถรานุเถระ\nเถรี\nเถลไถล\nเถลิง\nเถลือกถลน\nเถ่อ\nเถอะ\nเถา\nเถ้า\nเถาวัลย์\nเถาะ\nเถิก\nเถิง\nเถิด\nเถิดเทิง\nเถิน\nเถียง\nเถียร\nเถือ\nเถือก\nเถื่อน\nแถ\nแถก\nแถง\nแถน\nแถบ\nแถม\nแถลง\nแถลบ\nแถว\nโถ\nโถง\nโถงเถง\nโถบ\nโถม\nโถมนาการ\nไถ\nไถ่\nไถ้\nไถง\nไถล\nทกล้า\nทแกล้ว\nท่ง\nทด\nทน\nท้น\nทนต์\nทนโท่\nทนาย\nทบ\nทบวง\nทมอ\nทมะ\nทมิฬ\nทโมน\nทยอย\nทแยง\nทรกรรม\nทรชน\nทรชาติ\nทรพิษ\nทรยศ\nทรราช\nทรลักษณ์\nทรง\nทรพี\nทรมาทรกรรม\nทรมาน\nทรรทึง\nทรรป\nทรรปณ์\nทรรปณะ\nทรรศนะ\nทรรศนาการ\nทรรศนีย์\nทรวง\nทรวดทรง\nทรวาร\nทรหด\nทรหวล\nทรหึง\nทรอมโบน\nทระนง\nทรัพย์\nทรัพยากร\nทรัมเป็ต\nทรานซิสเตอร์\nทราบ\nทราม\nทราย\nทรุด\nทฤษฎี\nทลาย\nทลิท\nทลิททก\nทวง\nท้วง\nท่วงท่า\nท่วงทำนอง\nท่วงที\nทวด\nทวน\nท้วน\nท่วม\nท้วม\nทวย\nท่วย\nท้วย\nทวอย\nทวัตดึงส์\nทวัย\nทวา\nทวาบร\nทว่า\nทวาย\nทวาร\nทวิ\nทวิช\nทวิตีย์\nทวิตียา\nทวี\nทวีธาภิเษก\nทวีป\nทศ\nทศมี\nทศางค์\nทหระ\nทหาร\nทอ\nท่อ\nท้อ\nทอก\nทอง\nท่อง\nท้อง\nทองกวาว\nทองภู\nทองลิน\nทองหลาง\nทองโหลง\nทองอุไร\nทอด\nทอน\nท่อน\nทอนซิล\nทอฟฟี่\nท่อม\nทอย\nทอเรียม\nทะ\nทะงัน\nทะนง\nทะนน\nทะนาน\nทะนุ\nทะเบียน\nทะมัดทะแมง\nทะมึน\nทะมื่น\nทะแม่ง\nทะยาน\nทะเยอทะยาน\nทะแย\nทะร่อทะแร่\nทะลวง\nทะลอก\nทะลัก\nทะลาย\nทะลึ่ง\nทะลุ\nทะลุดทะลาด\nทะเล\nทะเล้น\nทะเล่อทะล่า\nทะเลาะ\nทะเลิ่กทะลั่ก\nทะวาย\nทัก\nทักข์\nทักขิญ\nทักขิณ\nทักขิณา\nทักขิณาวัฏ\nทักขิโณทก\nทักขิไณยบุคคล\nทักทิน\nทักษะ\nทักษา\nทักษิณ\nทักษิณา\nทักษิโณทก\nทัง\nทั่ง\nทั้ง\nทังวล\nทังวี้ทังวล\nทังสเตน\nทัณฑ์\nทัณฑกรรม\nทัณฑฆาต\nทัณฑสถาน\nทัณฑะ\nทัณฑิกา\nทัณฑิมา\nทัณฑีบท\nทัด\nทัดทา\nทัต\nทัน\nทันต์\nทันตชะ\nทันตแพทย์\nทันติน\nทันตี\nทันธ์\nทับ\nทับทิม\nทับสมิงคลา\nทัพ\nทัพพะ\nทัพพี\nทั่ว\nทัศ\nทัศน์\nทัศนะ\nทัศนา\nทัศนคติ\nทัศนวิสัย\nทัศนศาสตร์\nทัศนศิลป์\nทัศนศึกษา\nทัศนาการ\nทัศนาจร\nทัศนีย์\nทัศนียภาพ\nทัศนูปกรณ์\nทัศไนย\nทัสนานุตริยะ\nทัฬหะ\nทัฬหิ\nทัฬหี\nทา\nท่า\nท้า\nทาก\nทาง\nท้าง\nทาฐะ\nทาฐิกะ\nทาฒะ\nทาฒิกะ\nทาน\nท่าน\nทานต์\nทานพ\nทาบ\nทาม\nท่ามกลาง\nทาย\nท้าย\nทายก\nทายัช\nทายาด\nทายาท\nทายิกา\nทารก\nทารพี\nทาริกา\nทารุณ\nทาว\nท่าว\nท้าว\nทาส\nทาสี\nทำ\nทำนบ\nทำนอง\nทำนาย\nทำนุ\nทำนูล\nทำเนา\nทำเนียบ\nทำไม\nทำลาย\nทำเล\nทิคัมพร\nทิฆัมพร\nทิ้ง\nทิงเจอร์\nทิ้งถ่อน\nทิ้งทูด\nทิชะ\nทิชากร\nทิชาชาติ\nทิฏฐะ\nทิฏฐานุคติ\nทิฏฐุชุกรรม\nทิฐธรรม\nทิฐิ\nทิด\nทิต\nทิน\nทิพ\nทิพย์\nทิพา\nทิม\nทิ่ม\nทิมทอง\nทิว\nทิวงคต\nทิวทัศน์\nทิวา\nทิศ\nทิศา\nทิศานุทิศ\nที\nที่\nทีฆชาติ\nทีฆนิกาย\nทีฆสระ\nทีฆายุ\nทีป\nทีม\nทีเอ็นที\nทึก\nทึกทัก\nทึ่ง\nทึ้ง\nทึดทือ\nทึนทึก\nทึบ\nทึม\nทึ่ม\nทื่อ\nทุ\nทุก\nทุกข์\nทุกขลาภ\nทุกขเวทนา\nทุกขารมณ์\nทุกฏ\nทุกรกิริยา\nทุกะ\nทุกัง\nทุกูล\nทุคตะ\nทุคติ\nทุ่ง\nทุ้ง\nทุงงะ\nทุจริต\nทุด\nทุทรรศนนิยม\nทุนิยม\nทุน\nทุ่น\nทุนนิมิต\nทุบ\nทุบทู\nทุปปัญญา\nทุพพรรณ\nทุพพล\nทุพพลภาพ\nทุพภิกขภัย\nทุม\nทุ่ม\nทุ้ม\nทุย\nทุ้ย\nทุรกันดาร\nทุรชน\nทุรชาติ\nทุรพล\nทุรลักษณ์\nทุรน\nทุรนทุราย\nทุรัศ\nทุราคม\nทุราจาร\nทุเรศ\nทุเรียน\nทุลักทุเล\nทุเลา\nทุศีล\nทุสสะ\nทุสสีล\nทู\nทูโม่ง\nทู่\nทู้\nทูกัง\nทู่ซี้\nทูต\nทูตานุทูต\nทูน\nทูบ\nทูม\nทูล\nทูเลียม\nเท\nเท่\nเทคนิค\nเทคนีเชียม\nเทคโนโลยี\nเท้ง\nเท้งเต้ง\nเท็จ\nเทนนิส\nเทพ\nเทพา\nเทพารักษ์\nเทพยเจ้า\nเทพยดา\nเทพยุดา\nเทพิน\nเทพินทร์\nเทพี\nเทเพนทร์\nเทโพ\nเทริด\nเทลลูเรียม\nเทวทัณฑ์\nเทวดา\nเทวทูต\nเทวธรรม\nเทวนาครี\nเทวนิยม\nเทวรูป\nเทวโลก\nเทววิทยา\nเทวสถาน\nเทวศ\nเทวษ\nเทวัญ\nเทวัน\nเทวาลัย\nเทวินทร์\nเทวี\nเทเวศ\nเทเวศร์\nเทเวศวร์\nเทศ\nเทศะ\nเทศาภิบาล\nเทศน์\nเทศนา\nเทห์\nเท่ห์\nเทห์ฟากฟ้า\nเทหวัตถุ\nเท่อ\nเท้อ\nเทอญ\nเทอม\nเทอร์เบียม\nเทอร์โมมิเตอร์\nเทอะทะ\nเทา\nเท่า\nเท้า\nเท้ายายม่อม\nเท่ารึง\nเทิ่ง\nเทิด\nเทิน\nเทิบ\nเทิบทาบ\nเทิ้ม\nเที่ยง\nเทียด\nเทียน\nเที้ยน\nเทียบ\nเทียม\nเทียร\nเที้ยร\nเทียว\nเที่ยว\nเทือ\nเทื่อ\nเทื้อ\nเทือก\nแท้\nแท็กซี่\nแทง\nแท่ง\nแท้ง\nแท็งก์\nแทงทวย\nแทงวิสัย\nแทตย์\nแทน\nแท่น\nแทนเจนต์\nแทนทาลัม\nแทบ\nแทรก\nแทรกเตอร์\nแทลเลียม\nแทะ\nโท\nโท่\nโทกเทก\nโทง\nโทงเทง\nโทณะ\nโทน\nโทนโท่\nโทมนัส\nโทรคมนาคม\nโทรทรรศน์\nโทรทัศน์\nโทรพิมพ์\nโทรภาพ\nโทรเลข\nโทรศัพท์\nโทรสาร\nโทรม\nโทษ\nโทษา\nโทษานุโทษ\nโทสะ\nโทสาคติ\nโทโส\nโทหฬินี\nไท\nไท้\nไทเทเนียม\nไทเทรต\nไทย\nไทร\nไทวะ\nธง\nธงก์\nธชะ\nธชี\nธตรฐ\nธนบัตร\nธนสมบัติ\nธนสาร\nธนะ\nธนา\nธนาคม\nธนาคาร\nธนาณัติ\nธเนศ\nธโนปจัย\nธไนศวรรย์\nธนิต\nธนิษฐะ\nธนิษฐา\nธนุ\nธนุรวิทยา\nธนุรเวท\nธนู\nธม\nธมกรก\nธรณะ\nธรณิน\nธรณินทร์\nธรณิศ\nธรณิศร\nธรณิศวร์\nธรณี\nธรมาน\nธรรม\nธรรมนูญ\nธรรมยุต\nธรรมยุติกนิกาย\nธรรมะ\nธรรมาทิตย์\nธรรมาธรรม\nธรรมาธิปไตย\nธรรมาธิษฐาน\nธรรมานุสาร\nธรรมาภิมุข\nธรรมาภิสมัย\nธรรมายตนะ\nธรรมารมณ์\nธรรมาสน์\nธรรมิก\nธรา\nธราดล\nธราธร\nธราธาร\nธราธิบดี\nธราธิป\nธริษตรี\nธเรษตรี\nธเรศ\nธวัช\nธัช\nธัญ\nธัญญาหาร\nธันยา\nธันยาวาท\nธันวาคม\nธัมมะ\nธาดา\nธาตรี\nธาตวากร\nธาตุ\nธาตุโขภ\nธาตุมมิสสา\nธานิน\nธานินทร์\nธานี\nธาร\nธารกำนัล\nธารคำนัล\nธารณะ\nธารณา\nธารา\nธาษตรี\nธำมรงค์\nธำรง\nธิดา\nธิติ\nธีระ\nธุช\nธุดงค์\nธุดงควัตร\nธุต\nธุตตะ\nธุมเกตุ\nธุมา\nธุรการ\nธุรกิจ\nธุระ\nธุรำ\nธุลี\nธุวดารา\nธุวภาค\nธุวมณฑล\nธูป\nเธนุ\nเธอ\nเธียร\nโธ่\nโธวนะ\nนก\nนกุล\nนขลิขิต\nนขะ\nนขา\nนเคนทร์\nนโคทร\nนคร\nนครินทร์\nนคเรศ\nนง\nนงคุฐ\nนที\nนนตรา\nนนท์\nนันทน์\nนนทรี\nนนทลี\nนนทิ\nนบ\nนปุงสกลิงค์\nนปุงสกลึงค์\nนพ\nนพนิต\nนภจร\nนภดล\nนภศูล\nนภา\nนภาลัย\nนม\nนมตำเรีย\nนมตำเลีย\nนมะ\nนมัสการ\nนมาซ\nนยนะ\nนยนา\nนโยบาย\nนรชาติ\nนรเทพ\nนรนาถ\nนรบดี\nนรบาล\nนรสิงห์\nนรสีห์\nนรา\nนรากร\nนราธิป\nนรินทร์\nนริศ\nนริศร\nนริศวร\nนเรศ\nนเรศวร\nนเรศวร์\nนโรดม\nนรก\nนรกานต์\nนรการ\nนรี\nนฤเทพ\nนฤบดี\nนฤบาล\nนฤเบศ\nนฤปเวศม์\nนฤปัตนี\nนฤคหิต\nนฤนาท\nนฤมล\nนฤตย์\nนฤตยสถาน\nนฤพาน\nนฤมาณ\nนฤมิต\nนลาฏ\nนลิน\nนลินี\nนวกรรม\nนวการ\nนวกิจ\nนวนิยาย\nนวปฎล\nนวรัตน์\nนวโลหะ\nนวกะ\nนวโกวาท\nนวด\nนวม\nน่วม\nนวมี\nนวย\nนวล\nนวัตกรรม\nนวาระ\nนหารุ\nนหุต\nนฬการ\nนอ\nนอก\nนอง\nน่อง\nน้อง\nน่องแน่ง\nนอต\nนอน\nนอบ\nน้อม\nน้อย\nน้อยหน่า\nน้อยโหน่ง\nนะ\nนะแน่ง\nนัก\nนักขัต\nนักขัตฤกษ์\nนักษัตร\nนักสราช\nนัข\nนั่ง\nนังคัล\nนัจ\nนัฑ\nนัด\nนัดดา\nนัตถุ์\nนั่น\nนั้น\nนันททายี\nนันทนาการ\nนันทวัน\nนันทิ\nนับ\nนัย\nนัยน์\nนัยนา\nนัว\nนัวเนีย\nนา\nน่า\nน้า\nนาก\nนากบุด\nนากาสาหรี\nนาค\nนาคร\nนาคา\nนาคาวโลก\nนาคินทร์\nนาคี\nนาเคนทร์\nนาเคศวร\nนาง\nนางเกล็ด\nนางนวล\nนางนูน\nนางรม\nนางรำ\nนางล้อม\nนางเล็ด\nนางเลิ้ง\nนางหงส์\nนางอาย\nนางแอ่น\nนาฏ\nนาฏกะ\nนาด\nนาถ\nนาท\nนาที\nนาน\nน่าน\nนานัครส\nนานัปการ\nนานา\nนาเนก\nนาบ\nนาภี\nนาม\nนามานุกรม\nนามาภิไธย\nนาย\nน่าย\nนายก\nนายิกา\nนารา\nนารายณ์\nนารี\nนาเรศ\nนาลิวัน\nนาว\nน้าว\nนาวา\nนาวิก\nนาวิน\nนาวี\nนาเวศ\nนาศ\nนาสา\nนาสิก\nนาฬิกา\nนาฬิเก\nนาฬี\nนำ\nน้ำ\nน้ำละว้า\nน้ำว้า\nนิ\nนิกเกิล\nนิกขะ\nนิกร\nนิกรอยด์\nนิกาย\nนิคม\nนิครนถ์\nนิคหกรรม\nนิคหะ\nนิคหิต\nนิคาลัย\nนิเคราะห์\nนิโคติน\nนิโครธ\nนิโครม\nนิ่ง\nนิจ\nนิด\nนิตย์\nนิตยทาน\nนิตยภัต\nนิตยสาร\nนิติ\nนิทร\nนิทรรศการ\nนิทรา\nนิทรารมณ์\nนิทัศน์\nนิทาน\nนิเทศ\nนิธาน\nนิธิ\nนินทา\nนินนาท\nนินาท\nนิบาต\nนิปริยาย\nนิปัจการ\nนิพจน์\nนิพนธ์\nนิพพาน\nนิพพิทา\nนิพัทธ์\nนิพันธ์\nนิพิท\nนิเพท\nนิภา\nนิ่ม\nนิ้ม\nนิมนต์\nนิมมาน\nนิมมานรดี\nนิมิต\nนิยต\nนิยม\nนิยัตินิยม\nนิยาม\nนิยาย\nนิยุต\nนิรคุณ\nนิรชร\nนิรชรา\nนิรทุกข์\nนิรเทศ\nนิรโทษ\nนิรโทษกรรม\nนิรนัย\nนิรนาม\nนิรภัย\nนิรมล\nนิรมาน\nนิรัตศัย\nนิรันดร\nนิราพาธ\nนิรามัย\nนิรามิษ\nนิราศรัย\nนิรินธน์\nนิรมาณ\nนิรมิต\nนิรยบาล\nนิรัพพุท\nนิรา\nนิราศ\nนิรุกติ\nนิรุตติ\nนิรุทธ์\nนิโรธ\nนิล\nนิลุบล\nนิโลบล\nนิ่ว\nนิ้ว\nนิวคลิอิก\nนิวเคลียร์\nนิวเคลียส\nนิวตรอน\nนิวรณ์\nนิวัต\nนิวัตน์\nนิวาต\nนิวาส\nนิเวศ\nนิเวศน์\nนิศา\nนิษาท\nนิสัช\nนิสัชชาการ\nนิสัย\nนิสาท\nนิสิต\nนิสีทนสันถัต\nนิสีทนะ\nนิสีทนาการ\nนิเสธ\nนี่\nนี้\nนี่นัน\nนีรนาท\nนีออน\nนีโอดิเมียม\nนึก\nนึง\nนึ่ง\nนุง\nนุ่ง\nนุงนัง\nนุช\nนุต\nนุ่น\nนุ่ม\nนุ้ย\nนูน\nนู่น\nนู้น\nเนกขัม\nเนตบอล\nเนตร\nเนติ\nเน้น\nเนบิวลา\nเนปจูน\nเนปทูเนียม\nเนมิ\nเนย\nเนรกัณฐี\nเนรคุณ\nเนรเทศ\nเนรนาด\nเนรมิต\nเนระพูสี\nเนอ\nเน้อ\nเนา\nเน่า\nเนาวนิต\nเนาวรัตน์\nเนิน\nเนิ่น\nเนิบ\nเนียง\nเนียน\nเนียม\nเนียร\nเนียรทุกข์\nเนียรเทศ\nเนียรนาท\nเนื้อ\nเนือง\nเนื่อง\nเนือย\nแน่\nแน่ง\nแน่น\nแนบ\nแน่บ\nแนม\nแนว\nแน่ว\nแนะ\nแน่ะ\nแนะแหน\nโน\nโน้ต\nโนน\nโน่น\nโน้น\nโนเบเลียม\nโน้ม\nโนมพรรณ\nโนรา\nโนรี\nใน\nไน\nไนต์คลับ\nไนโตรเจน\nไนลอน\nไนโอเบียม\nบ่\nบก\nบง\nบ่ง\nบงก์\nบ๊งเบ๊ง\nบงสุ์\nบด\nบดินทร์\nบดี\nบถ\nบท\nบน\nบ่น\nบพิตร\nบพิธ\nบ่ม\nบรม\nบรมัตถ์\nบรรจง\nบรรจถรณ์\nบรรจบ\nบรรจวบ\nบรรจุ\nบรรเจิด\nบรรณ\nบรรดา\nบรรตานึก\nบรรถร\nบรรทม\nบรรทัด\nบรรทาน\nบรรทุก\nบรรเทา\nบรรเทือง\nบรรพ\nบรรพ์\nบรรพชา\nบรรพชิต\nบรรพต\nบรรยง\nบรรยงก์\nบรรยเวกษก์\nบรรยากาศ\nบรรยาย\nบรรลัย\nบรรลาย\nบรรลุ\nบรรเลง\nบรรโลม\nบรรษัท\nบรรสบ\nบรรสพ\nบรรสม\nบรรสาน\nบรรสาร\nบรรหาน\nบรรหาร\nบรอนซ์\nบรั่นดี\nบรัศว์\nบราลี\nบริกรรม\nบริการ\nบริขาร\nบริขารโจล\nบริคณห์\nบริจาค\nบริจาริกา\nบริเฉท\nบริชน\nบริดจ์\nบริบท\nบริบาล\nบริบูรณ์\nบริพนธ์\nบริพัตร\nบริพันธ์\nบริพาชก\nบริพาร\nบริภัณฑ์\nบริภาษ\nบริโภค\nบริมาส\nบริยาย\nบริรม\nบริรักษ์\nบริราช\nบริวรรต\nบริวาร\nบริวาส\nบริเวณ\nบริษัท\nบริสชน\nบริสุทธิ์\nบริหาร\nบล็อก\nบวก\nบวง\nบ่วง\nบวช\nบวน\nบ้วน\nบวบ\nบวม\nบ๊วย\nบวร\nบหลิ่ม\nบอ\nบ่อ\nบ้อ\nบอก\nบอง\nบ่อง\nบ้อง\nบ๊อง\nบ้องแบ๊ว\nบองหลา\nบอด\nบอน\nบ่อน\nบอบ\nบ้อม\nบ๋อม\nบ่อย\nบอระเพ็ด\nบอล\nบอลลูน\nบ้อหุ้น\nบ๊ะ\nบ๊ะจ่าง\nบะหมี่\nบัก\nบักโกรก\nบัคเตรี\nบัง\nบั้ง\nบังกะโล\nบังเกิด\nบังคน\nบังคม\nบังคล\nบังควร\nบังคับ\nบังคัล\nบังแทรก\nบังวาย\nบังเวียน\nบังสุกุล\nบังสุกูลิก\nบังสูรย์\nบังหวน\nบังเหตุ\nบังเหียน\nบังอร\nบังอวจ\nบังอาจ\nบังเอิญ\nบัญจก\nบัญชร\nบัญชา\nบัญชี\nบัญญัติ\nบัญหา\nบัฏ\nบัณฑร\nบัณฑิต\nบัณฑิตย์\nบัณฑุ\nบัณฑูร\nบัณเฑาะก์\nบัณเฑาะว์\nบัณณาส\nบัณรส\nบัณรสี\nบัด\nบัดกรี\nบัดซบ\nบัดสี\nบัตร\nบัทม์\nบัน\nบั่น\nบั้น\nบันจวบ\nบันดล\nบันดาล\nบันได\nบันทึก\nบันทึง\nบันเทิง\nบันยะบันยัง\nบันลือ\nบัปผาสะ\nบัพ\nบัพชา\nบัพพาชนียกรรม\nบัล\nบัลลพ\nบัลลังก์\nบัลลูน\nบัลเลต์\nบัว\nบา\nบ่า\nบ้า\nบาก\nบาง\nบ่าง\nบ้าง\nบาจรีย์\nบาซิลลัส\nบาด\nบาดทะจิต\nบาดทะพิษ\nบาดทะยัก\nบาดาล\nบาตร\nบาท\nบาทสกุณี\nบาทหลวง\nบาทาธึก\nบาทุกา\nบาน\nบ้าน\nบานชื่น\nบานเช้า\nบานบุรี\nบานไม่รู้โรย\nบานเย็น\nบ้าบ๋า\nบาป\nบาย\nบ่าย\nบ้าย\nบาร์\nบารนี\nบารมี\nบาร์เรล\nบาร์เลย์\nบารอมิเตอร์\nบ้าระบุ่น\nบาเรียน\nบาเรียม\nบาล\nบาลี\nบ่าว\nบ่าวขุน\nบาศ\nบาศก์\nบาสเกตบอล\nบาหลี\nบ๋ำ\nบำเทิง\nบำนาญ\nบำบวง\nบำบัด\nบำเพ็ญ\nบำราบ\nบำราศ\nบำรุง\nบำรู\nบำเรอ\nบำหยัด\nบำเหน็จ\nบิ\nบิฐ\nบิณฑบาต\nบิด\nบิดร\nบิดหล่า\nบิดา\nบิตุ\nบิตุจฉา\nบิตุรงค์\nบิตุเรศ\nบิตุลา\nบิน\nบิ่น\nบินยา\nบิลเลียด\nบิวเรตต์\nบิสมัท\nบี้\nบีฑา\nบีตา\nบีบ\nบีเยศ\nบึก\nบึกบึน\nบึง\nบึ่ง\nบึ้ง\nบุ\nบุก\nบุคคล\nบุคลากร\nบุคลาธิษฐาน\nบุคลิก\nบุง\nบุ่ง\nบุ้ง\nบุ้งกี๋\nบุญ\nบุญญาธิการ\nบุญญานุภาพ\nบุญญาภินิหาร\nบุญญาภิสังขาร\nบุณฑริก\nบุณมี\nบุณย์\nบุตร\nบุตรี\nบุถุชน\nบุทคล\nบุนนาค\nบุบ\nบุบบิบ\nบุปผชาติ\nบุพกรรม\nบุพการี\nบุพกิจ\nบุพชาติ\nบุพทักษิณ\nบุพนิมิต\nบุพบท\nบุพพาจารย์\nบุพเพสันนิวาส\nบุพโพ\nบุ๋ม\nบุ่มบ่าม\nบุ้ย\nบุรณะ\nบุรพทิศ\nบุรพบท\nบุรพาจารย์\nบูรพาจารย์\nบุระ\nบุราณ\nบุรินทร์\nบุริมทิศ\nบุริมพรรษา\nบุริมสิทธิ\nบุรี\nบุรุษ\nบุโรทั่ง\nบุษกร\nบุษบก\nบุษบง\nบุษบัน\nบุษบา\nบุษบามินตรา\nบุษปราค\nบุษปะ\nบุษย์\nบุษย์น้ำทอง\nบุษยมาส\nบุษยะ\nบุษราคัม\nบุหงัน\nบุหงา\nบุหรง\nบุหรี่\nบุหลัน\nบู่\nบู้\nบูชนียสถาน\nบูชา\nบูชิต\nบูด\nบูดู\nบูร\nบูรณ์\nบูรณภาพ\nบูรณมี\nบูรณะ\nบูรณาการ\nบูรพ์\nบูรพะ\nบูรพา\nเบ้\nเบ่ง\nเบ๊จี๋\nเบญกานี\nเบญจกัลยาณี\nเบญจกามคุณ\nเบญจขันธ์\nเบญจดุริยางค์\nเบญจธรรม\nเบญจบรรพต\nเบญจพรรณ\nเบญจเพส\nเบญจมาศ\nเบญจรงค์\nเบญจศก\nเบญจศีล\nเบญจะ\nเบญจา\nเบญจางค์\nเบญจางคประดิษฐ์\nเบญญา\nเบญพาด\nเบ็ด\nเบ็ดเตล็ด\nเบ็ดเสร็จ\nเบน\nเบนซิน\nเบรก\nเบริลเลียม\nเบส\nเบ้อ\nเบอร์\nเบอร์คีเลียม\nเบ้อเร่อ\nเบ้อเร่อเท่อ\nเบ้อเริ่ม\nเบ้อเริ่มเทิ่ม\nเบอะ\nเบอะบะ\nเบะ\nเบา\nเบ้า\nเบาราณ\nเบาะ\nเบิก\nเบิ่ง\nเบี้ย\nเบี่ยง\nเบียด\nเบียน\nเบียร์\nเบี้ยว\nเบือ\nเบื่อ\nเบื้อ\nเบื้อง\nเบือน\nแบ\nแบ้\nแบก\nแบคทีเรีย\nแบ่ง\nแบงก์\nแบดมินตัน\nแบตเตอรี่\nแบน\nแบนโจ\nแบบ\nแบ็บ\nแบเรียม\nแบหลา\nแบะ\nโบ\nโบ้\nโบ๋\nโบก\nโบกขรณี\nโบกขรพรรษ\nโบชุก\nโบต\nโบนัส\nโบ๊เบ๊\nโบย\nโบรมีน\nโบรอน\nโบราณ\nโบสถ์\nใบ\nใบ้\nไบ่\nปก\nปกติ\nปกรณ์\nปกรณัม\nปกิณกะ\nปกีรณัม\nปโกฏิ\nปง\nป่ง\nปงช้าง\nปฎล\nปฏัก\nปฏิกรณ์\nปฏิกรรม\nปฏิการะ\nปฏิกิริยา\nปฏิกูล\nปฏิคม\nปฏิคหิต\nปฏิคาหก\nปฏิฆะ\nปฏิชีวนะ\nปฏิญญา\nปฏิญาณ\nปฏิทิน\nปฏิบถ\nปฏิบัติ\nปฏิปทา\nปฏิปักษ์\nปฏิปัน\nปฏิปุจฉาพยากรณ์\nปฏิปุจฉาวาที\nปฏิพัทธ์\nปฏิพากย์\nปฏิภาค\nปฏิภาณ\nปฏิมา\nปฏิมากร\nปฏิยุทธ์\nปฏิรพ\nปฏิรูป\nปฏิโลม\nปฏิวัติ\nปฏิวาต\nปฏิวาท\nปฏิเวธ\nปฏิสนธิ\nปฏิสวะ\nปฏิสังขรณ์\nปฏิสันถาร\nปฏิสัมภิทา\nปฏิเสธ\nปฐพี\nปฐม\nปฐวี\nปณต\nปณาม\nปณิธาน\nปณิธิ\nปณีต\nปด\nปดิวรัดา\nปติ\nปถพี\nปถมัง\nปถวี\nปทัฏฐาน\nปทัสถาน\nปทานุกรม\nปทีป\nปทุม\nปน\nป่น\nปนัดดา\nปปัญจะ\nปม\nปรนัย\nปรปักษ์\nปรโลก\nปรวาที\nปรก\nปรกติ\nปรง\nปรตยักษ์\nปรน\nปรนนิบัติ\nปรนิมมิตวสวัตดี\nปรบ\nปรปักษ์\nปรมัตถ์\nปรมาจารย์\nปรมาณู\nปรมาภิไธย\nปรมาภิเษก\nปรมินทร์\nบรเมนทร์\nปรเมศวร์\nปรเมษฐ์\nปรวด\nปรวนแปร\nปรศุ\nปรสิต\nปร๋อ\nปรองดอง\nปรอด\nปรอท\nปรอย\nประ\nประกบ\nประกฤต\nประกฤติ\nประกล\nประกวด\nประกวดประขัน\nประกอบ\nประกัน\nประกับ\nประกาย\nประกายพรึก\nประการ\nประกาศ\nประกาศนียบัตร\nประกาศิต\nประกำ\nประกิด\nประกิต\nประคด\nประคนธรรพ\nประคนธรรพ์\nประคบ\nประคบประหงม\nประคอง\nประคับประคอง\nประคัลภ์\nประคำ\nประคิ่น\nประคุณ\nประเคน\nประเคราะห์\nประโคน\nประโคนธรรพ\nประโคนธรรพ์\nประโคม\nประจง\nประจญ\nประจบ\nประจบประแจง\nประจวบ\nประจ๋อประแจ๋\nประจักษ์\nประจักษนิยม\nประจัญ\nประจัน\nประจาก\nประจาค\nประจาน\nประจำ\nประจิม\nประจิ้มประเจ๋อ\nประจุ\nประจุคมน์\nประจุบัน\nประเจก\nประเจิด\nประเจิดประเจ้อ\nประเจียด\nประแจ\nประชด\nประชน\nประชวม\nประชวร\nประชัน\nประชา\nประชาธิปไตย\nประชิด\nประชี\nประชุม\nประเชิญ\nประณต\nประณม\nประณาม\nประณิธาน\nประณิธิ\nประณีต\nประณุท\nประดง\nประดน\nประดวน\nประดอน\nประดอย\nประดัก\nประดักประเดิด\nประดัง\nประดับ\nประดา\nประดาก\nประดาป\nประดาษ\nประดิชญา\nประดิดประดอย\nประดิทิน\nประดิษฐ์\nประดิษฐกรรม\nประดิษฐาน\nประดุง\nประดุจ\nประดู่\nประเด\nประเด็น\nประเดิม\nประเดียง\nประเดี๋ยว\nประเดี๋ยวประด๋าว\nประแดง\nประแดะ\nประโดง\nประโดย\nประตง\nประตัก\nประตาป\nประติชญา\nประติญาณ\nประติทิน\nประติมากร\nประติมากรรม\nประติรพ\nประตู\nประถม\nประถมจินดา\nประทม\nประท้วง\nประทวน\nประทักษ์\nประทักษิณ\nประทัง\nประทัด\nประทับ\nประทาน\nประทาย\nประทาศี\nประทิน\nประทิ่น\nประทีป\nประทุฐ\nประทุน\nประทุษ\nประทุษฐ์\nประเทศ\nประเทา\nประเทียด\nประเทียบ\nประเทือง\nประธาน\nประธานาธิบดี\nประนม\nประนอ\nประนอม\nประนัง\nประนัปดา\nประนีประนอม\nประปราน\nประปราย\nประปา\nประเปรี้ยง\nประเปรียว\nประพจน์\nประพนธ์\nประพรม\nประพฤติ\nประพฤทธิ์\nประพัด\nประพัทธ์\nประพันธ์\nประพาต\nประพาส\nประพาสมหรณพ\nประพาฬ\nประพิณ\nประพิมพ์ประพาย\nประพุทธ์\nประเพณี\nประโพธ\nประไพ\nประไพร\nประภพ\nประภัสสร\nประภา\nประภาคาร\nประภาพ\nประภาษ\nประภาส\nประเภท\nประมง\nประมวล\nประมาณ\nประมาท\nประมุข\nประมุท\nประมูล\nประเมิน\nประโมง\nประโมทย์\nประยงค์\nประยุกต์\nประยุทธ์\nประยุร\nประยูร\nประโยค\nประโยชน์\nประโรหิต\nประลมพ์\nประลอง\nประลัย\nประลาต\nประลาย\nประลุ\nประเล่ห์\nประเล้าประโลม\nประโลม\nประวรรต\nประวรรตน์\nประวัติ\nประวาล\nประวาลปัทม์\nประวาส\nประวิง\nประวิช\nประวิตร\nประวิน\nประวีณ\nประเวณี\nประเวศ\nประเวศน์\nประศม\nประศาสน์\nประศุ\nประสก\nประสงค์\nประสบ\nประสพ\nประสม\nประสะ\nประสัก\nประสันนาการ\nประสัยห์\nประสา\nประสาท\nประสาธน์\nประสาน\nประสาร\nประสิทธิ์\nประสิทธิผล\nประสิทธิภาพ\nประสีประสา\nประสูต\nประสูติ\nประเสบัน\nประเสบันอากง\nประเสริฐ\nประหนึ่ง\nประหม่า\nประหยัด\nประหลาด\nประหล่ำ\nประหวัด\nประหวั่น\nประหัตประหาร\nประหาณ\nประหาร\nประเหล\nประเหส\nประไหมสุหรี\nประอบ\nประอร\nปรัก\nปรักปรำ\nปรักมะ\nปรัง\nปรัชญา\nปรัตถจริยา\nปรัตยุบัน\nปรัน\nปรับ\nปรัมปรา\nปรัศจิม\nปรัศนา\nปรัศนี\nปรัศว์\nปรัสสบท\nปร่า\nปรากฏ\nปรากรม\nปรากฤต\nปราการ\nปราง\nปรางค์\nปราจีน\nปราชญ์\nปราชญา\nปราชัย\nปราณ\nปราณี\nปราด\nปราน\nปรานี\nปราบ\nปราบดาภิเษก\nปราปต์\nปราม\nปรามาส\nปราโมช\nปราโมทย์\nปราย\nปรารถนา\nปรารภ\nปรารมภ์\nปราศ\nปราศจาก\nปราศรัย\nปราษณี\nปราษาณ\nปราสัย\nปราสาท\nปรำ\nปริ\nปริก\nปริกขาร\nปริกรรม\nปริกัป\nปริคณห์\nปริจาค\nปริจาริกา\nปริเฉท\nปริชน\nปริซึม\nปริญญา\nปริณาม\nปริณายก\nปริต\nปริตตะ\nปริตโตทก\nปริตร\nปริทรรศน์\nปริทัยหัคคี\nปริทัศน์\nปริเทพ\nปริเทวะ\nปรินิพพาน\nปริบ\nปริบท\nปริปันถ์\nปริพนธ์\nปริพัตร\nปริพันธ์\nปริพาชก\nปริภัณฑ์\nปริภาษ\nปริภูมิ\nปริโภค\nปริ่ม\nปริมณฑล\nปริมาณ\nปริมาตร\nปริยัติ\nปริยานุช\nปริยาย\nปริเยศ\nปริโยสาน\nปริวรรต\nปริวัตร\nปริวาร\nปริวาส\nปริวิตก\nปริเวณ\nปริศนา\nปริษัท\nปริสัญญู\nปริสุทธิ\nปริหาน\nปริหาร\nปรี่\nปรีชญา\nปรีชา\nปรี๊ด\nปรีดา\nปรีดิ\nปรีดิ์\nปรีดี\nปรีติ\nปรียะ\nปรียา\nปรึก\nปรึกษา\nปรึง\nปรือ\nปรื๋อ\nปรุ\nปรุง\nปรู\nปรู๋\nปรูด\nปรู๊ด\nปรู๊ดปร๊าด\nปรู๊ฟ\nปฤงคพ\nปฤจฉา\nปฤษฎางค์\nปฤษฐ\nปลก\nปลกเปลี้ย\nปลง\nปล่ง\nปลด\nปล้น\nปลวก\nปลอก\nปล่อง\nปล้อง\nปลอด\nปล้อน\nปลอบ\nปลอม\nปล่อย\nปละ\nปลัก\nปลั๊ก\nปลัง\nปลั่ง\nปลัด\nปลัดขิก\nปลา\nปลาต\nปลาบ\nปลาย\nปลาสเตอร์\nปลาสนาการ\nปล้ำ\nปลิง\nปลิด\nปลิ้น\nปลิโพธ\nปลิม\nปลิ่ม\nปลิว\nปลี\nปลีก\nปลื้ม\nปลุก\nปลูก\nปวกเปียก\nปวง\nป่วง\nปวด\nป่วน\nป้วน\nป้วนเปี้ยน\nป่วย\nปวัตน์\nปวารณา\nปวาล\nปวาส\nปวาฬ\nปวิช\nปวิตร\nปวิธ\nปวิเวก\nปวีณ\nปวุติ\nปเวณี\nปเวส\nปเวสน์\nปศุ\nปสันนะ\nปสันนาการ\nปสาท\nปสาน\nปสาสน์\nปสุ\nปสุต\nปสูติ\nปหังสนะ\nปหาน\nปหาร\nปหาส\nปอ\nป้อ\nป๋อ\nปอก\nปอง\nป่อง\nป้อง\nปอด\nปอน\nป้อน\nปอนด์\nปอเนาะ\nปอบ\nป้อแป้\nปอม\nป้อม\nป๋อม\nปอย\nป้อย\nป้อยอ\nปะ\nปะกน\nปะกัง\nปะการัง\nปะกำ\nปะขาว\nปะงาบ\nปะตาปา\nปะตาระกาหลา\nปะติดปะต่อ\nปะติยาน\nปะทะ\nปะทะปะทัง\nปะทุ\nปะทุน\nปะปน\nปะมง\nปะราลี\nปะรำ\nปะไร\nปะลอม\nปะเลง\nปะแล่ม\nปะโลง\nปะวะหล่ำ\nปะหงับ\nปะหนัน\nปะหัง\nปะเหลาะ\nปัก\nปักข์\nปักเป้า\nปักษ์\nปักษา\nปักษิน\nปักษี\nปัง\nปั๋ง\nปังสุ์\nปังสุกุล\nปัจจัตตะ\nปัจจันต์\nปัจจันตคาม\nปัจจันตชนบท\nปัจจันตประเทศ\nปัจจัย\nปัจจามิตร\nปัจจุคมน์\nปัจจุทธรณ์\nปัจจุบัน\nปัจจุสมัย\nปัจเจก\nปัจโจปการกิจ\nปัจฉา\nปัจฉิม\nปัจถรณ์\nปัจนึก\nปัจยาการ\nปัจเวกขณ์\nปัชชุน\nปัญจนที\nปัญจวัคคีย์\nปัญจก\nปัญจกะ\nปัญจมี\nปัญจวีสติ\nปัญญัติ\nปัญญา\nปัญหา\nปัฏ\nปัฏนะ\nปัฐยาวัต\nปัณฑรหัตถี\nปัณณะ\nปัณณาส\nปัณณาสก์\nปัณรสี\nปัณหิ\nปัด\nปัตคาด\nปัตตะ\nปัตตานึก\nปัตตานุโมทนา\nปัตตาเวีย\nปัตติ\nปัตติก\nปัตถร\nปัตถะ\nปัตนิ\nปัตนี\nปัตหล่า\nปัถพี\nปัถวี\nปัทม์\nปัทมะ\nปัทมาสน์\nปัน\nปั่น\nปั้น\nปั้นจั่น\nปันจุเหร็จ\nปั้นลม\nปั้นหยา\nปั้นเหน่ง\nปับ\nปั๊บ\nปัปผาสะ\nปัพพาชนียกรรม\nปัพภาระ\nปั๊ม\nปัยกา\nปัยยิกา\nปัวเปีย\nปัศจิม\nปัศตัน\nปัสสาวะ\nปัสสาสะ\nปา\nป่า\nป้า\nปาก\nปาง\nป้าง\nปาจรีย์\nปาจิตตีย์\nปาจีน\nปาฏลิ\nปาฏิบท\nปาฏิบุคลิก\nปาฏิโภค\nปาฏิหาริย์\nปาฐก\nปาฐกถา\nปาฐะ\nปาณกชาติ\nปาณะ\nปาณาติบาต\nปาณิ\nปาณี\nปาด\nปาติโมกข์\nปาตี\nปาเต๊ะ\nปาท่องโก๋\nปาทังกา\nปาทาน\nปาทุกา\nปาน\nป่าน\nป้าน\nปานะ\nปานียะ\nป้าบ\nป๊าบ\nปาพจน์\nปาม\nปาโมกข์\nป่าย\nป้าย\nปายาส\nปาร์เกต์\nปารมี\nปารเมศ\nปาราชิก\nปาริฉัตร\nปาริชาต\nปารุสกวัน\nปาล\nปาล์ม\nปาลิไลยก์\nปาลี\nปาว\nป่าว\nป๊าว\nปาวาร\nปาษาณ\nปาส\nปาสาณ\nปาสาทิกะ\nปาหนัน\nปาหี่\nปำ\nป้ำ\nป้ำเป๋อ\nปิกนิก\nปิ้ง\nปิงคละ\nปิงปอง\nปิฎก\nปิฏฐะ\nปิฐิ\nปิณฑะ\nปิด\nปิตตะ\nปิตา\nปิตามหัยกา\nปิตามหัยยิกา\nปิตุ\nปิตุจฉา\nปิตุภูมิ\nปิตุลา\nปิโตรเลียม\nปิ่น\nปิ่นแก้ว\nปิ่นโต\nปิปผลี\nปิ่ม\nปิ้ม\nปิยะ\nปิยังคุ\nปิโยรส\nปิลันธน์\nปิ๋ว\nปิศาจ\nปิหกะ\nปี\nปี่\nปี้\nปี๋\nปีก\nปีฐะ\nปี๊ด\nปีติ\nปีน\nปีบ\nปี๊บ\nปีศาจ\nปีฬกะ\nปึก\nปึง\nปึ่ง\nปึ๋ง\nปึ้ด\nปึมปื้อ\nปืน\nปื้น\nปือ\nปื้อ\nปื๋อ\nปุ\nปุ๊\nปุก\nปุกปุย\nปุคละ\nปุ้งกี๋\nปุงควะ\nปุงลิงค์\nปุงลึงค์\nปุจฉา\nปุฏะ\nปุณฑริก\nปุด\nปุตตะ\nปุถุชน\nปุนนาค\nปุนภพ\nปุนัพสุ\nปุบ\nปุ๊บ\nปุปผะ\nปุปะ\nปุพพะ\nปุ่ม\nปุ่มป่ำ\nปุ้ม\nปุ๋ม\nปุย\nปุ้ย\nปุ๋ย\nปุรณะ\nปุระ\nปุราณ\nปุราณะ\nปุริมพรรษา\nปุเรจาริก\nปุโรหิต\nปุลลิงค์\nปุลลึงค์\nปุลินท์\nปุโลปุเล\nปุษยะ\nปุสสะ\nปู\nปู่\nปูชกะ\nปูชนียบุคคล\nปูชนียวัตถุ\nปูชนียะ\nปูชา\nปูชิต\nปูด\nปูน\nปูม\nปู้ยี่ปู้ยำ\nปูระ\nปูลู\nเป้\nเป๋\nเปก\nเป๊ก\nเป่ง\nเป้ง\nเป๋ง\nเป็ด\nเปตพลี\nเปตอง\nเป็น\nเปยยาล\nเปร็ง\nเปรต\nเปรม\nเปรย\nเปรอ\nเปรอะ\nเปราะ\nเปรียง\nเปรี้ยง\nเปรี้ยงปร้าง\nเปรียญ\nเปรียบ\nเปรี่ยม\nเปรียว\nเปรี้ยว\nเปรียะ\nเปรี๊ยะ\nเปรื่อง\nเปรื้อย\nเปล\nเปล่ง\nเปลว\nเปลา\nเปล่า\nเปล้า\nเปลาะ\nเปลี้ย\nเปลี่ยน\nเปลี่ยม\nเปลี่ยว\nเปลือก\nเปลือง\nเปลื้อง\nเปลือย\nเปศะ\nเปศัส\nเปสการ\nเปสละ\nเปสุญวาท\nเป๋อ\nเป้อเย้อ\nเปอร์\nเปอร์เซ็นต์\nเปะ\nเปา\nเป่า\nเป้า\nเป๊า\nเป๋า\nเป๋าฮื้อ\nเปาะ\nเป๊าะ\nเปาะเปี๊ยะ\nเปาะแปะ\nเปิก\nเปิง\nเปิงมาง\nเปิด\nเปิ่น\nเปิบ\nเปิ๊บ\nเปีย\nเปียก\nเปี๊ยก\nเปี๊ยบ\nเปี่ยม\nเปี้ยว\nเปี๊ยว\nเปียะ\nเปี๊ยะ\nเปือก\nเปื้อน\nเปื่อย\nแป\nแป้ง\nแป๋ง\nแปด\nแป๊ด\nแปทู\nแป้น\nแป๊น\nแปบ\nแป๊บ\nแปม\nแปร\nแปร๋\nแปรก\nแปรง\nแปร่ง\nแปร๊ด\nแปร้น\nแปร๋น\nแปรปรวน\nแประ\nแปล\nแปล้\nแปลก\nแปลง\nแปลน\nแปลบ\nแปล๊บ\nแป้ว\nแป๊ว\nแปะ\nแป๊ะ\nแป๊ะซะ\nโป\nโป่\nโป้\nโป๊\nโปก\nโป๊ก\nโป๊กเกอร์\nโปกขรณี\nโปกขรพรรษ\nโปเก\nโปง\nโป่ง\nโป้ง\nโป่งข่าม\nโปงลาง\nโป่งวิด\nโปฐบท\nโปฐปทมาส\nโปดก\nโปตถกะ\nโปน\nโป๊ป\nโป๊ยเซียน\nโปรแกรม\nโปรง\nโปร่ง\nโปรด\nโปรตอน\nโปรตีน\nโปรเตสแตนต์\nโปรแทรกเตอร์\nโปรย\nโปล่ง\nโปลิโอ\nโปโล\nโปสก\nโปสต์การ์ด\nโปะ\nโป๊ะ\nโป๊ะจ้าย\nไป\nไป่\nไป๋\nไปยาล\nไปรษณีย์\nไปรษณียบัตร\nไปรษณียภัณฑ์\nไปรษณียากร\nไปล่\nไปศาจ\nผก\nผกา\nผกาย\nผคม\nผง\nผงก\nผงม\nผงะ\nผงาด\nผง่าน\nผจง\nผจญ\nผจัญ\nผจาน\nผชุม\nผณิน\nผณินทร\nผณิศวร\nผด\nผดุง\nผเดิน\nผทม\nผนวก\nผนวช\nผนัง\nผนิด\nผนึก\nผม\nผยอง\nผรณาปีติ\nผรสุ\nผริต\nผรุสวาท\nผล\nผลคุน\nผลคุนี\nผล็อย\nผละ\nผลัก\nผลัด\nผลับ\nผลัวะ\nผลา\nผลาญ\nผลานิสงส์\nผลาผล\nผลาหาร\nผลิ\nผลิกะ\nผลิต\nผลิน\nผลี\nผลีผลาม\nผลึก\nผลึ่ง\nผลือ\nผลุ\nผลุง\nผลุด\nผลุน\nผลุนผลัน\nผลุบ\nผลุบผลับ\nผลุย\nผลู\nผวน\nผวย\nผวา\nผสม\nผสาน\nผอง\nผ่อง\nผ่อน\nผอบ\nผอม\nผ็อย\nผอูน\nผะ\nผะดา\nผะสา\nผัก\nผัคคุณ\nผัคคุณี\nผัง\nผัด\nผัน\nผับ\nผัว\nผัวะ\nผัสสะ\nผัสสาหาร\nผา\nผ่า\nผ้า\nผาก\nผาง\nผ่าง\nผาณิต\nผาด\nผาติ\nผ่าน\nผาม\nผาย\nผ่ายผอม\nผาล\nผาลคุน\nผาลา\nผ่าว\nผาสุก\nผ้าฮาด\nผำ\nผ้ำ\nผิ\nผิง\nผิด\nผิตะ\nผิน\nผิว\nผี\nผี้ว์\nผึง\nผึ่ง\nผึ้ง\nผึ้งรวง\nผืน\nผื่น\nผุ\nผุด\nผุยผง\nผุสราคา\nผู้\nผูก\nเผ\nเผง\nเผชิญ\nเผ็ด\nเผด็จ\nเผดิม\nเผดียง\nเผ่น\nเผนิก\nเผย\nเผยอ\nเผยิบ\nเผยิบผยาบ\nเผล\nเผล่\nเผล็ด\nเผลอ\nเผลอไผล\nเผละ\nเผลาะ\nเผลาะแผละ\nเผลียง\nเผอเรอ\nเผอิญ\nเผอิล\nเผะ\nเผา\nเผ่า\nเผ้า\nเผาะ\nเผิ้ง\nเผิน\nเผียน\nเผือ\nเผื่อ\nเผือก\nเผือด\nเผือน\nเผื่อน\nแผ่\nแผก\nแผง\nแผด\nแผน\nแผ่น\nแผนก\nแผล\nแผลง\nแผล็บ\nแผล็ว\nแผละ\nแผ่ว\nแผ้ว\nโผ\nโผง\nโผฏฐัพพะ\nโผน\nโผเผ\nโผย\nโผล่\nโผลกเผลก\nโผละ\nโผอน\nโผะ\nไผ\nไผ่\nไผท\nฝน\nฝรั่ง\nฝรั่งเศส\nฝ่อ\nฝอย\nฝัก\nฝัง\nฝั่ง\nฝัด\nฝัน\nฝา\nฝ่า\nฝ้า\nฝาก\nฝาง\nฝาด\nฝาน\nฝาย\nฝ่าย\nฝ้าย\nฝิ่น\nฝี\nฝี่\nฝีก\nฝึก\nฝืด\nฝืน\nฝุ่น\nฝูง\nเฝ้า\nเฝือ\nเฝือก\nเฝือง\nเฝื่อน\nแฝก\nแฝง\nแฝด\nใฝ่\nไฝ\nพก\nพกุล\nพง\nพงศ์\nพงศกร\nพงศธร\nพงศา\nพงศาวดาร\nพจน์\nพจนา\nพจนานุกรม\nพจนารถ\nพจนีย์\nพจมาน\nพจี\nพชระ\nพญา\nพญาลอ\nพณิช\nพณิชย์\nพดด้วง\nพธู\nพนันดร\nพนาดร\nพนาดอน\nพนาราม\nพนาลัย\nพนาลี\nพนาวาส\nพนาเวศ\nพนาศรม\nพนาสณฑ์\nพนาสัณฑ์\nพเนจร\nพ่น\nพ้น\nพนม\nพนอง\nพนอม\nพนัก\nพนักงาน\nพนัง\nพนัน\nพนัส\nพนา\nพนาย\nพนิดา\nพนิต\nพบ\nพม่า\nพยนต์\nพยศ\nพยัก\nพยักพเยิด\nพยัคฆ์\nพยัคฆา\nพยัคฆิน\nพยัคฆี\nพยัชน์\nพยัญชนะ\nพยัต\nพยับ\nพยากรณ์\nพยาฆร์\nพยางค์\nพยาธิ\nพยาน\nพยาบาท\nพยาบาล\nพยาม\nพยามะ\nพยายาม\nพยุ\nพยุง\nพยุหยาตรา\nพยุหโยธา\nพยุหเสนา\nพยุหะ\nพยู่ห์\nพเยีย\nพร\nพรต\nพรม\nพรรค\nพรรค์\nพรรคานต์\nพรรณ\nพรรณนา\nพรรดึก\nพรรลาย\nพรรษ\nพรรษา\nพรรเอิญ\nพรวด\nพรวน\nพรหม\nพรหมจรรย์\nพรหมจาริณี\nพรหมจารี\nพรหมา\nพรหมาสตร์\nพรหมินทร์\nพรอก\nพร่อง\nพร้อง\nพรอด\nพร้อม\nพร้อมพรัก\nพร่อย\nพร้อย\nพระ\nพระนอม\nพระนาด\nพระฮาม\nพรักพร้อม\nพรั่ง\nพรัด\nพรั่น\nพรับ\nพร่า\nพร้า\nพราก\nพราง\nพร่าง\nพราด\nพราน\nพราย\nพราว\nพราหมณ์\nพราหมณะ\nพราหมณี\nพราหมี\nพรำ\nพร่ำ\nพริก\nพริ้ง\nพริบ\nพริ้ม\nพรึง\nพรึน\nพรึบ\nพรึ่บ\nพรืด\nพรุ\nพรุ่ง\nพรุน\nพรู\nพรูด\nพฤกษ์\nพฤกษชาติ\nพฤกษเทวดา\nพฤกษราช\nพฤกษศาสตร์\nพฤกษา\nพฤฒ\nพฤฒา\nพฤฒาจารย์\nพฤฒิ\nพฤต\nพฤติ\nพฤทธ์\nพฤทธิ์\nพฤนต์\nพฤนท์\nพฤศจิก\nพฤศจิกายน\nพฤษภ\nพฤษภาคม\nพฤหัสบดี\nพล\nพละ\nพลากร\nพลาดิศัย\nพลาธิการ\nพลานามัย\nพลบ\nพลวก\nพลวง\nพลวัต\nพลศาสตร์\nพลอ\nพล้อ\nพลอง\nพลอด\nพลอน\nพลอมแพลม\nพลอย\nพล่อย\nพลั่ก\nพลัง\nพลั่ง\nพลั้ง\nพลัด\nพลัน\nพลับ\nพลับพลา\nพลับพลึง\nพลั่ว\nพล่า\nพลาง\nพลาญ\nพลาด\nพล่าน\nพลาม\nพล่าม\nพลาย\nพลาสติก\nพลาสมา\nพลาหก\nพลำ\nพล้ำ\nพลำภัง\nพลิก\nพลิพัท\nพลิ้ว\nพลี\nพลุ\nพลุก\nพลุ่ก\nพลุกพล่าน\nพลุ่ง\nพลุ้ย\nพลู\nพลูโต\nพลูโทเนียม\nพวก\nพวง\nพ่วง\nพวน\nพวย\nพสก\nพสุ\nพสุธา\nพสุสงกรานต์\nพหล\nพหุ\nพหุล\nพหู\nพอ\nพ่อ\nพ้อ\nพอก\nพอง\nพ้อง\nพอน\nพ้อม\nพอโลเนียม\nพะ\nพะงา\nพะงาบ\nพะจง\nพะทำมะรง\nพะนอ\nพะเน้าพะนอ\nพะเนิน\nพะเนียง\nพะแนง\nพะพาน\nพะพิง\nพะเพิง\nพะยอม\nพ่ะย่ะค่ะ\nพะยูง\nพะยูน\nพะเยิบ\nพะเยิบพะยาบ\nพะรุงพะรัง\nพะโล้\nพะไล\nพะวง\nพะวักพะวน\nพะวา\nพะว้าพะวัง\nพะอง\nพะอากพะอำ\nพะอืดพะอม\nพัก\nพักตร์\nพักตรา\nพักร\nพัง\nพังกา\nพังงา\nพังผืด\nพังพวย\nพังพอน\nพังพาน\nพังพาบ\nพังเพย\nพัช\nพัชนี\nพัชระ\nพัญจน์\nพัฒนะ\nพัฒนา\nพัฒนากร\nพัฒนาการ\nพัด\nพัดชา\nพัดดึงส์\nพัตร\nพัทธ์\nพัทธยา\nพัทธสีมา\nพัทร\nพัน\nพันตู\nพันทาง\nพันธ์\nพันธะ\nพันธกรณี\nพันธบัตร\nพันธมิตร\nพันธนะ\nพันธนาคาร\nพันธนาการ\nพันธุ์\nพันธุกรรม\nพันลึก\nพันลือ\nพันเลิศ\nพันเอิญ\nพับ\nพัลลภ\nพัลวัน\nพัว\nพัวะ\nพัศดี\nพัสดุ\nพัสตร์\nพัสถาน\nพา\nพาก\nพากเพียร\nพากย์\nพาง\nพ่าง\nพาชี\nพาณิช\nพาณิชย์\nพาณิชยกรรม\nพาณิชยการ\nพาณิชยศาสตร์\nพาณิชยศิลป์\nพาณินี\nพาณี\nพาณีนี\nพาด\nพาท\nพาทย์\nพาธ\nพาธา\nพาน\nพ่าน\nพานร\nพานรินทร์\nพาม\nพาย\nพ่าย\nพายม้า\nพายัพ\nพายุ\nพาร์เซก\nพารณ\nพารา\nพาราฟิน\nพาล\nพาลา\nพาลี\nพาลุก\nพาโล\nพาไล\nพาส\nพาสน์\nพาสนา\nพาสุกรี\nพ่าห์\nพาหนะ\nพาหะ\nพาหา\nพาหิรกะ\nพาหิระ\nพาหุ\nพาหุรัด\nพาหุสัจจะ\nพาเหียร\nพาฬ\nพำ\nพำนัก\nพำพึม\nพำลา\nพิกล\nพิกสิต\nพิกัด\nพิกัติ\nพิกัน\nพิการ\nพิกุล\nพิเคราะห์\nพิฆน์\nพิฆเนศ\nพิฆเนศวร\nพิฆาต\nพิง\nพิจัย\nพิจาร\nพิจารณ์\nพิจารณา\nพิจิก\nพิจิต\nพิจิตร\nพิชญ์\nพิชัย\nพิชาน\nพิชิต\nพิเชฐ\nพิเชียร\nพิฑูรย์\nพิณ\nพิดทูล\nพิดาน\nพิโดร\nพิตร\nพิถี\nพิถีพิถัน\nพิทย\nพิทย์\nพิทยา\nพิทยาคม\nพิทยาคาร\nพิทยาธร\nพิทยาลัย\nพิทักษ์\nพิทูร\nพิเทศ\nพิธาน\nพิธี\nพิธุ\nพินทุ\nพินอบพิเทา\nพินัย\nพินาศ\nพินิจ\nพินิต\nพินิศ\nพินิศจัย\nพิเนต\nพิบัติ\nพิบุล\nพิบูล\nพิปริต\nพิปลาส\nพิพรรธ\nพิพรรธน์\nพิพักพิพ่วน\nพิพัฒ\nพิพัฒน์\nพิพากษ์\nพิพากษา\nพิพาท\nพิพิธ\nพิพิธภัณฑ์\nพิพิธภัณฑสถาน\nพิภพ\nพิภัช\nพิภาค\nพิภูษณะ\nพิเภก\nพิมปะการัง\nพิมพ์\nพิมพการัง\nพิมพา\nพิมพาภรณ์\nพิมล\nพิมเสน\nพิมาน\nพิมุข\nพิโมกข์\nพิโมกษ์\nพิโยกพิเกน\nพิโยค\nพิรอด\nพิระ\nพิรากล\nพิราบ\nพิราม\nพิราลัย\nพิริยะ\nพิรี้พิไร\nพิรุณ\nพิรุธ\nพิรุฬห์\nพิเรนทร์\nพิเราะ\nพิโรธ\nพิไร\nพิลังกาสา\nพิลาป\nพิลาส\nพิลิปดา\nพิลึก\nพิลึกกึกกือ\nพิลึกพิลั่น\nพิโลน\nพิไล\nพิศ\nพิศวง\nพิศวาส\nพิศาล\nพิศุทธ์\nพิศุทธิ์\nพิเศษ\nพิษ\nพิษฐาน\nพิษนาศน์\nพิสดาร\nพิสมร\nพิสมัย\nพิสัง\nพิสัช\nพิสัย\nพิสิฐ\nพิสุทธิ์\nพิสูจน์\nพิหค\nพิหาร\nพิฬาร\nพี\nพี่\nพี้\nพีชคณิต\nพีระมิด\nพึง\nพึ่ง\nพึ่บ\nพึ่บพั่บ\nพึม\nพึมพำ\nพืช\nพืด\nพื้น\nพุ\nพุก\nพุกาม\nพุง\nพุ่ง\nพุงดอ\nพุฒ\nพุฒิ\nพุด\nพุดตาน\nพุทธ\nพุทธะ\nพุทธังกูร\nพุทธางกูร\nพุทธันดร\nพุทธาภิเษก\nพุทธาวาส\nพุทธิ\nพุทโธ่\nพุทรา\nพุธ\nพุ่ม\nพุมเรียง\nพุ้ย\nพู\nพูพอน\nพู่\nพูด\nพูน\nพู้น\nพู่ระหง\nเพ\nเพ็ก\nเพกา\nเพคะ\nเพ็ง\nเพ่ง\nเพ็จ\nเพชฉลูกรรม\nเพชฌฆาต\nเพชร\nเพชรดา\nเพชรปาณี\nเพชรฤกษ์\nเพชรายุธ\nเพชรกลับ\nเพชรสังฆาต\nเพชรหลีก\nเพชรหึง\nเพ็ญ\nเพฑูริย์\nเพณี\nเพ็ดทูล\nเพดาน\nเพท\nเพทนา\nเพทาย\nเพทุบาย\nเพโทบาย\nเพ่นพ่าน\nเพนียด\nเพไนย\nเพ้ย\nเพรง\nเพรซีโอดิเมียม\nเพรา\nเพราะ\nเพริด\nเพริศ\nเพรียก\nเพรียง\nเพรียบ\nเพรี้ยม\nเพรียว\nเพรื่อ\nเพรือง\nเพล\nเพลง\nเพล็ด\nเพล้โพล้\nเพลา\nเพลาะ\nเพลิง\nเพลิดเพลิน\nเพลิน\nเพลีย\nเพลี้ย\nเพลี่ยง\nเพศ\nเพส\nเพสลาด\nเพ่อ\nเพ้อ\nเพ้อเจ้อ\nเพอิญ\nเพะ\nเพา\nเพาะ\nเพิก\nเพิง\nเพิ่ง\nเพิดเพ้ย\nเพิ่ม\nเพี้ย\nเพียง\nเพี้ยง\nเพียงออ\nเพี้ยน\nเพียบ\nเพียร\nเพื่อ\nเพื่อน\nแพ\nแพ้\nแพง\nแพ่ง\nแพงพวย\nแพทย์\nแพทยศาสตร์\nแพน\nแพ่น\nแพนก\nแพนงเชิง\nแพร\nแพร่\nแพรก\nแพร่ง\nแพรว\nแพร้ว\nแพลง\nแพลทินัม\nแพล็บ\nแพลม\nแพลเลเดียม\nแพละ\nแพละโลม\nแพว\nแพ้ว\nแพศย์\nแพศยา\nแพะ\nโพ\nโพก\nโพกพาย\nโพง\nโพงพาง\nโพชฌงค์\nโพซิตรอน\nโพด\nโพทะเล\nโพแทสเซียม\nโพธ\nโพธิ\nโพธิ์\nโพน\nโพ้น\nโพนทะนา\nโพบาย\nโพย\nโพยก๊วน\nโพยม\nโพรก\nโพรง\nโพรโทแอกทิเนียม\nโพรมีเทียม\nโพระดก\nโพล่\nโพลง\nโพล่ง\nโพล้ง\nโพลน\nโพล้เพล้\nโพละ\nโพสพ\nไพ\nไพ่\nไพจิตร\nไพชน\nไพชยนต์\nไพฑูรย์\nไพที\nไพบูลย์\nไพพรรณ\nไพร\nไพร่\nไพรจิตร\nไพรชน\nไพรชยนต์\nไพรฑูรย์\nไพรที\nไพรบูลย์\nไพรเราะ\nไพรัช\nไพรำ\nไพริน\nไพรินทร์\nไพรี\nไพเราะ\nไพโรจน์\nไพล\nไพล่\nไพศาขะ\nไพศาล\nไพเศษ\nไพสพ\nไพสิฐ\nไพหาร\nฟก\nฟ้ง\nฟรักโทส\nฟรี\nฟลูออรีน\nฟ่อ\nฟ้อ\nฟอก\nฟอง\nฟ่อง\nฟ้อง\nฟอด\nฟอน\nฟ่อน\nฟ้อน\nฟ้อแฟ้\nฟอร์มาลดีไฮด์\nฟอร์มาลิน\nฟอสฟอรัส\nฟอสเฟต\nฟัก\nฟักฟุ้น\nฟัง\nฟังก์ชัน\nฟัด\nฟัน\nฟั่น\nฟั้น\nฟ้า\nฟาก\nฟาง\nฟ่าง\nฟาด\nฟาทอม\nฟาน\nฟ่าม\nฟาย\nฟาร์ม\nฟาสซิสต์\nฟิด\nฟิต\nฟิบ\nฟิล์ม\nฟิวส์\nฟิสิกส์\nฟี่\nฟี้\nฟืดฟาด\nฟืน\nฟื้น\nฟืม\nฟุ\nฟุ้ง\nฟุต\nฟุน\nฟุบ\nฟุ่บ\nฟุ่มเฟือย\nฟุลสแก๊ป\nฟู\nฟู่\nฟูก\nฟูด\nฟูม\nเฟ็ด\nเฟ้น\nเฟลด์สปาร์\nเฟ้อ\nเฟอร์เมียม\nเฟอะ\nเฟอะฟะ\nเฟะ\nเฟะฟะ\nเฟิน\nเฟี้ยม\nเฟี้ยว\nเฟือ\nเฟื้อ\nเฟือง\nเฟื่อง\nเฟื้อง\nเฟือน\nเฟือย\nเฟื้อย\nแฟ่\nแฟง\nแฟชั่น\nแฟน\nแฟบ\nแฟ้ม\nแฟรนเซียม\nแฟลกซ์\nแฟลต\nแฟะ\nโฟกัส\nไฟ\nภควดี\nภควัต\nภควันต์\nภควัม\nภควา\nภควาน\nภคะ\nภคันทลา\nภคินี\nภณะ\nภณิดา\nภพ\nภมร\nภมริน\nภมรี\nภมุกา\nภยันตราย\nภยาคติ\nภระ\nภรณี\nภรต\nภรรดร\nภรรดา\nภรรยา\nภระมร\nภระมรี\nภราดร\nภราดรภาพ\nภราดา\nภริยา\nภฤศ\nภวะ\nภวตัณหา\nภวนะ\nภวังค์\nภวังคจิต\nภักดี\nภักตะ\nภักติ\nภักษ์\nภักษา\nภักษาหาร\nภัค\nภัคน์\nภังคะ\nภังคี\nภัจ\nภัณฑ์\nภัณฑาคาร\nภัณฑาคาริก\nภัณฑารักษ์\nภัณฑนะ\nภัณฑู\nภัต\nภัตตาคาร\nภัตตาหาร\nภัตร\nภัทระ\nภัทรกัป\nภัพ\nภัย\nภัสดา\nภัสตรา\nภัสมะ\nภัสสร\nภา\nภาค\nภาคย์\nภาคยานุวัติ\nภาคินี\nภาคิไนย\nภาคี\nภาคียะ\nภาชนะ\nภาชี\nภาณ\nภาณวาร\nภาณกะ\nภาณี\nภาณุ\nภาดร\nภาดา\nภาตระ\nภาตา\nภาตุ\nภาติกะ\nภาติยะ\nภาพ\nภาพย์\nภาม\nภาย\nภาร\nภาระ\nภารดี\nภารต\nภารตี\nภารยทรัพย์\nภารยา\nภารา\nภาวนา\nภาวะ\nภาษ\nภาษณ์\nภาษา\nภาษิต\nภาษี\nภาส\nภาสน์\nภาสวร\nภาสา\nภาสุระ\nภิกขา\nภิกขาจาร\nภิกขุ\nภิกขุนี\nภิกษา\nภิกษาจาร\nภิกษาหาร\nภิกษุ\nภิกษุณี\nภิงคาร\nภิญโญ\nภิตติ\nภินท์\nภินทนาการ\nภิยโย\nภิรมย์\nภิรมย์สุรางค์\nภิษัช\nภิสัก\nภีตะ\nภีมะ\nภีรุ\nภุกต์\nภุขัน\nภุช\nภุชงค์\nภุต\nภุมมะ\nภุมรัตน์\nภุมวาร\nภุมรา\nภุมริน\nภุมรี\nภุมเรศ\nภู\nภู่\nภูต\nภูติ\nภูม\nภูมิ\nภูมี\nภูริ\nภูรี\nภูวดล\nภูวนาถ\nภูวเนตร\nภูวไนย\nภูษา\nภูษิต\nเภกะ\nเภตรา\nเภท\nเภทุบาย\nเภรี\nเภสัช\nโภค\nโภคะ\nโภคิน\nโภคี\nโภไคย\nโภไคศวรรย์\nโภช\nโภชย์\nโภชก\nโภชนะ\nโภชนา\nโภชนาหาร\nโภชนียะ\nไภริน\nไภรี\nไภษัชคุรุ\nไภษัชย์\nมกร\nมกราคม\nมกุฎ\nมคธ\nมฆวัน\nมฆะ\nมฆา\nม่ง\nมงกุฎ\nมงโกรย\nมงคล\nมงคลวาร\nมณฑ์\nมณฑก\nมณฑนะ\nมณฑป\nมณฑล\nมณฑา\nมณฑารพ\nมณฑิระ\nมณเฑียร\nมณี\nมด\nมตะ\nมตกภัต\nมติ\nมทนะ\nมทะ\nมธุ\nมธุกร\nมธุการี\nมธุลีห์\nมธุระ\nมธุรพจน์\nมน\nมนินทรีย์\nม่น\nมนต์\nมนตร์\nมนตรี\nมนท์\nมนทิราลัย\nมนเทียร\nมนสิการ\nมนัส\nมนัสวี\nมนินทรีย์\nมนิมนา\nมนิลา\nมนุญ\nมนุษย์\nมนุษยชาติ\nมนุษยธรรม\nมนุษย์มนา\nมนุษยโลก\nมนุษยศาสตร์\nมนุษยสัมพันธ์\nมนุสาร\nมนู\nมนูสาร\nมโน\nมโนช\nมโนชญ์\nมโนราห์\nมโนสาเร่\nมโนห์รา\nมมังการ\nมยุรฉัตร\nมยุระ\nมยุรา\nมยุรี\nมยุเรศ\nมยูร\nมรกต\nมรคา\nมรฑป\nมรณ์\nมรณะ\nมรณกรรม\nมรณบัตร\nมรณภัย\nมรณภาพ\nมรดก\nมรรค\nมรรคา\nมรรตัย\nมรรยาท\nมรรษ\nมรสุม\nมริจ\nมริยาท\nมรีจิ\nมรุต\nมฤค\nมฤคย์\nมฤคศิระ\nมฤคศิรมาส\nมฤคเศียร\nมฤคินทร์\nมฤเคนทร์\nมฤดก\nมฤต\nมฤตยู\nมฤทุ\nมล\nมละ\nมลัก\nมลังเมลือง\nมล้าง\nมลาย\nมลายู\nมวก\nม่วง\nมวน\nม่วน\nม้วน\nม้วนต้วน\nมวย\nม้วย\nมวล\nมหกรรม\nมหรณพ\nมหรรณพ\nมหรสพ\nมหัจฉริยะ\nมหัต\nมหัทธนะ\nมหันต์\nมหันตโทษ\nมหัพภาค\nมหัศจรรย์\nมหา\nมหากฐิน\nมหากาฬ\nมหาขันธกะ\nมหาจักร\nมหาชน\nมหาชัย\nมหาชาติ\nมหาโชตรัต\nมหาดไทย\nมหาดเล็ก\nมหาตมะ\nมหาไถ่\nมหาเทพ\nมหาเทพี\nมหาเทวี\nมหาธาตุ\nมหานิกาย\nมหานิล\nมหาบพิตร\nมหาบัณฑิต\nมหาพน\nมหาพรหม\nมหาภารตะ\nมหาภิเนษกรมณ์\nมหาภูต\nมหาเมฆ\nมหายาน\nมหายุค\nมหาราช\nมหาฤกษ์\nมหาละลวย\nมหาละลาย\nมหาวงศ์\nมหาวรรค\nมหาวิทยาลัย\nมหาศักราช\nมหาศาล\nมหาสงกรานต์\nมหาสดมภ์\nมหาสดำ\nมหาสมุทร\nมหาสาวก\nมหาหงส์\nมหาหิงคุ์\nมหาอำนาจ\nมหาอุจ\nมหาอุด\nมหาอุปรากร\nมหาอุปราช\nมหิ\nมหิดล\nมหิธร\nมหิป\nมหิงส์\nมหิทธิ\nมหินท์\nมหิมา\nมหิศร\nมหิศวร\nมหิษ\nมหิษี\nมหึมา\nมเหยงค์\nมเหศ\nมเหศวร\nมเหศักดิ์\nมเหสักข์\nมเหสิ\nมเหสี\nมเหาฬาร\nมโหรสพ\nมโหระทึก\nมโหรี\nมโหฬาร\nมไหศวรรย์\nมอ\nมอง\nมองโกลอยด์\nมองโกเลีย\nมองคร่อ\nมอญ\nมอด\nม่อต้อ\nมอเตอร์\nมอเตอร์ไซค์\nมอน\nม่อน\nมอบ\nมอม\nมอมแมม\nม่อย\nมอร์ฟีน\nมอระกู่\nมอลโทส\nม่อลอกม่อแลก\nม่อห้อม\nม่อฮ่อม\nมะ\nมะกรูด\nมะกล่ำ\nมะกอก\nมะก่อง\nมะกะโรนี\nมะกา\nมะเกลือ\nมะเกี๋ยง\nมะข่วง\nมะขวิด\nมะขาม\nมะเขือ\nมะแข่น\nมะคังแดง\nมะค่า\nมะคำไก่\nมะคำดีควาย\nมะงั่ว\nมะงุมมะงาหรา\nมะซัก\nมะซาง\nมะดัน\nมะดีหวี\nมะดูก\nมะเดหวี\nมะเดื่อ\nมะต้อง\nมะตะบะ\nมะตาด\nมะตาหะรี\nมะตึ่ง\nมะตื๋น\nมะตูม\nมะแตก\nมะโต\nมะนาว\nมะปราง\nมะปริง\nมะฝ่อ\nมะพร้าว\nมะพลับ\nมะพูด\nมะแพน\nมะแพร้ว\nมะเฟือง\nมะแฟน\nมะไฟ\nมะม่วง\nมะม่าว\nมะมี่\nมะมื่น\nมะมุด\nมะเมอ\nมะเมีย\nมะเมื่อย\nมะแม\nมะยง\nมะยม\nมะระ\nมะริด\nมะรืน\nมะรุม\nมะรุมมะตุ้ม\nมะเร็ง\nมะเรื่อง\nมะโรง\nมะลอกมะแลก\nมะละกอ\nมะลิ\nมะลื่น\nมะลืมดำ\nมะลุลี\nมะแว้ง\nมะสัง\nมะเส็ง\nมะหวด\nมะหะหมัด\nมะหาด\nมะหิ่ง\nมะเหงก\nมะอึก\nมะฮอกกานี\nมัก\nมักกะโรนี\nมักกะลีผล\nมักกะสัน\nมักขะ\nมั่กขั้ก\nมักขิกา\nมัค\nมัคคะ\nมัคคุเทศก์\nมัคนายก\nมัฆวาน\nมั่ง\nมังกง\nมังกร\nมังกุ\nมังคละ\nมังค่า\nมังคุด\nมังตาน\nมังสวิรัติ\nมังสะ\nมังสี\nมัจจะ\nมัจจุ\nมัจฉริยะ\nมัจฉรี\nมัจฉะ\nมัจฉา\nมัชชะ\nมัชวิรัติ\nมัชชาระ\nมัชฌันติกสมัย\nมัชฌิม\nมัชฌิมา\nมัญจา\nมัญชิษฐา\nมัญชุ\nมัญชุสา\nมัญชูสา\nมัญเชฏฐะ\nมัฏฐะ\nมัณฑนศิลป์\nมัณฑนา\nมัด\nมัตตะ\nมัตตัญญู\nมัตตา\nมัตติกา\nมัตถกะ\nมัตถลุงค์\nมัตสยะ\nมัตสยา\nมัตสระ\nมัตสริน\nมัททวะ\nมัทนะ\nมัทยะ\nมัธยฐาน\nมัธยม\nมัธยันห์\nมัธยัสถ์\nมัน\nมั่น\nมันตา\nมันถะ\nมันทิระ\nมันทิราลัย\nมับ\nมั้ม\nมัมมี่\nมัย\nมัลละ\nมัลลิกา\nมัว\nมัวซัว\nมั่ว\nมัศยา\nมัสตุ\nมัสตาร์ด\nมัสมั่น\nมัสยิด\nมัสรู่\nมัสลิน\nมัสสุ\nมา\nม้า\nมาก\nมาคสิระ\nมาฆบูชา\nมาฆะ\nม้าง\nมางสะ\nมาณพ\nมาณวิกา\nมาด\nมาดา\nมาตงค์\nมาตร\nมาตรา\nมาตฤ\nมาตังคะ\nมาตา\nมาตามหัยกะ\nมาตามหัยกา\nมาตามหัยยิกา\nมาติกะ\nมาติกา\nมาตุ\nมาตุจฉา\nมาตุรงค์\nมาตุเรศ\nมาตุละ\nมาตุลา\nมาตุลานี\nมาทะ\nมาธยมิก\nมาธยมิกะ\nมาธุระ\nมาธุสร\nมาธูระ\nมาน\nม่าน\nม้าน\nมานพ\nมานะ\nมานัต\nมานัส\nมานิต\nมานี\nมานุษ\nมานุษยวิทยา\nมาโนชญ์\nมาบ\nมาภา\nม้าม\nม่าย\nมายา\nมาร\nมาราธิราช\nมารค\nมารดร\nมารดา\nมารยา\nมารยาท\nมารศรี\nมารษา\nมาริต\nมารุต\nมาลย์\nมาลัย\nมาลา\nมาลาตี\nมาลาเรีย\nมาลินี\nมาลี\nมาลุต\nมาศ\nมาส\nมาสก\nมาห์\nม่าห์\nมาหิส\nม่าเหมี่ยว\nมาฬก\nมิ\nมิค\nมิคสัญญี\nมิ่ง\nมิจฉา\nมิด\nมิตร\nมิติ\nมิเตอร์\nมิถยา\nมิถุน\nมิถุนายน\nมิทธะ\nมินตรา\nมินตา\nมินหม้อ\nมิ่ม\nมิ้ม\nมิไย\nมิรันตี\nมิลลิกรัม\nมิลลิบาร์\nมิลลิเมตร\nมิลลิลิตร\nมิลักขะ\nมิลักขู\nมิส\nมิสกรี\nมิสกวัน\nมิสซา\nมี\nมี่\nมีด\nมีเทน\nมีน\nมีนาคม\nมี่สั้ว\nมึง\nมึน\nมืด\nมืน\nมื่น\nมือ\nมื้อ\nมุ\nมุก\nมุกดา\nมุกดาหาร\nมุกุระ\nมุข\nมุขเด็จ\nมุขยประโยค\nมุโขโลกนะ\nมุคคะ\nมุง\nมุ่ง\nมุ้ง\nมุจฉา\nมุจนะ\nมุจลินท์\nมุญจนะ\nมุญชะ\nมุฐิ\nมุณฑกะ\nมุณฑะ\nมุด\nมุตกิด\nมุตฆาต\nมุตตะ\nมุตตา\nมุตติ\nมุตะ\nมุติ\nมุททา\nมุทธชะ\nมุทธา\nมุทธาภิเษก\nมุทรา\nมุทริกา\nมุทะลุ\nมุทา\nมุทิกา\nมุทิงค์\nมุทิตา\nมุทุ\nมุทุตา\nมุ่น\nมุนิ\nมุนินทร์\nมุนี\nมุบ\nมุบมิบ\nมุม\nมุ้ม\nมุ่ย\nมุรธา\nมุรธาภิเษก\nมุสละ\nมุสลิม\nมุสา\nมุสิก\nมุหงิด\nมุหน่าย\nมุหุต\nมุฮัมมัด\nมูก\nมูเซอ\nมูตร\nมู่ทู่\nมูน\nมูมมาม\nมูรติ\nมูรธา\nมูรธาภิเษก\nมูล\nมูละ\nมูลา\nมูลิกากร\nมู่ลี่\nมู่เล่\nมูสัง\nมูสิก\nมูสิกะ\nมูสิกทันต์\nเม\nเม็ก\nเมกะเฮิรตซ์\nเมขลา\nเมฆ\nเมฆา\nเมฆินทร์\nเมฆี\nเม็ง\nเม็ด\nเมตตา\nเมตไตรย\nเมตร\nเมตริก\nเมตริกตัน\nเมถุน\nเมท\nเมโท\nเมทนี\nเมทินี\nเมทนีดล\nเมทานอล\nเมทิลแอลกอฮอล์\nเมธ\nเมธา\nเมธาวี\nเมธี\nเมน\nเม่น\nเม้น\nเมนเดลีเวียม\nเมนทอล\nเม้ม\nเมรัย\nเมริเดียน\nเมรุ\nเมล์\nเมล็ด\nเมลือง\nเมษ\nเมษายน\nเมห์\nเมหนะ\nเมหะ\nเมะ\nเมา\nเม่า\nเม้า\nเมารี\nเมาลี\nเมาฬี\nเมาะ\nเมิง\nเมิน\nเมิล\nเมีย\nเมียง\nเมี่ยง\nเมี้ยน\nเมือ\nเมื้อ\nเมื่อ\nเมือก\nเมือง\nเมือบ\nเมื่อย\nแม่\nแม้\nแมก\nแมกนีเซียม\nแมง\nแมงกะพรุน\nแมงกานิน\nแมงกานีส\nแมงคา\nแมงคาเรือง\nแมงช้าง\nแมงดา\nแมงลัก\nแม่ตะงาว\nแมน\nแม่น\nแม้น\nแมลง\nแมลบ\nแมว\nแม้ว\nแมะ\nโม\nโม่\nโม้\nโมก\nโมกข์\nโมกษะ\nโมฆกรรม\nโมฆสัญญา\nโมฆะ\nโมฆียกรรม\nโมฆียะ\nโมง\nโม่ง\nโมงครุ่ม\nโมทนา\nโมโนแซ็กคาไรด์\nโมไนย\nโมเม\nโมเมนต์\nโมเย\nโมรา\nโมรี\nโมเรส\nโมลิบดีนัม\nโมลี\nโมเลกุล\nโมเสก\nโมเสส\nโม่ห์\nโมหะ\nโมหันธ์\nโมหาคติ\nโมโห\nไม่\nไม้\nไมกา\nไมครอน\nไมโครกรัม\nไมโครฟิล์ม\nไมโครโฟน\nไมโครมิเตอร์\nไมโครเมตร\nไมโครลิตร\nไมโครเวฟ\nไมตรี\nไมยราบ\nไมล์\nยก\nยกกระบัตร\nยกนะ\nยง\nยงโย่\nยชุรเวท\nยติ\nยติภังค์\nยถากรรม\nยถาภูตญาณ\nย่น\nยนต์\nยนตร์\nยม\nยมก\nยมโดย\nยมนา\nยมล\nยมะ\nยรรยง\nยล\nยวง\nยวด\nยวน\nยวบ\nย้วย\nยวรยาตร\nยศ\nยโส\nยอ\nย่อ\nยอก\nย็อกแย็ก\nยอง\nย่อง\nย้อง\nยอด\nยอน\nย้อน\nยอบ\nยอม\nย่อม\nย้อม\nย่อย\nย้อย\nย้อแย้\nยะ\nย่ะ\nยะยอบ\nยะยับ\nยัก\nยักข์\nยักขินี\nยักษ์\nยักษา\nยักษิณี\nยักษี\nยัง\nยั้ง\nยั่งยืน\nยัชโญปวีต\nยัญ\nยัญญะ\nยัด\nยัติภังค์\nยัน\nยั่น\nยันต์\nยันตร\nยันตร์\nยันตรกรรม\nยั่นตะนี\nยับ\nยั่ว\nยั้ว\nยั้วเยี้ย\nยัวรยาตร\nยัวะ\nยัษฏิ\nยา\nย่า\nยาก\nยาคุ\nยาคู\nยาง\nย่าง\nยางพารา\nยาจก\nยาจนา\nยาไฉน\nยาด\nยาดา\nยาตร\nยาตรา\nยาน\nย่าน\nย่านพาโหม\nยานมาศ\nยานุมาศ\nยานี\nยาม\nย่าม\nยามะ\nยามักการ\nยามา\nยาย\nย้าย\nยายี\nยาว\nย้าว\nยาวกาลิก\nยาวชีวิก\nยาสูบ\nย่าหยา\nยาหยี\nยำ\nย่ำ\nย้ำ\nยำเยีย\nยิก\nยิง\nยิ่ง\nยิฏฐะ\nยิน\nยิบ\nยิบหยี\nยิปซัม\nยิปซี\nยิ้ม\nยิมนาสติก\nยิหวา\nยี\nยี่\nยี้\nยี่ก่า\nยี่เก\nยี่เข่ง\nยี่โถ\nยีน\nยี่โป้\nยี่ภู่\nยีราฟ\nยี่สก\nยี่สง\nยี่สน\nยี่สาน\nยี่สุ่น\nยี่หระ\nยี่หร่า\nยี่ห้อ\nยี่หุบ\nยึกยัก\nยึกยือ\nยึด\nยืด\nยืน\nยื่น\nยืม\nยื้อ\nยุ\nยุกกระบัตร\nยุกดิ\nยุกติ\nยุกติธรรม\nยุกต์\nยุค\nยุคนธร\nยุคล\nยุคันต์\nยุคันธร\nยุคุนธร\nยุง\nยุ่ง\nยุ้ง\nยุด\nยุต\nยุติ\nยุทธ\nยุทธ์\nยุทธนา\nยุทโธปกรณ์\nยุบ\nยุ่บ\nยุ่บยั่บ\nยุบล\nยุพดี\nยุพเรศ\nยุพา\nยุพาน\nยุพาพาล\nยุพาพิน\nยุ่มย่าม\nยุ่ย\nยุ้ย\nยุรยาตร\nยูรยาตร\nยุวชน\nยุวดี\nยุวราช\nยุวา\nยุวาน\nยู\nยู่\nยูง\nยูโด\nยูถะ\nยูถิกา\nยูริก\nยูเรนัส\nยูเรเนียม\nยูโรเพียม\nเย\nเย้\nเยง\nเยซู\nเย็ด\nเย็น\nเย็นตาโฟ\nเย็นเตาโฟ\nเย็บ\nเย้ย\nเยอ\nเย่อ\nเยอรมัน\nเยอว\nเย่อหยิ่ง\nเยอะ\nเยอะแยะ\nเยา\nเย้า\nเยาว์\nเยาวชน\nเยาวมาลย์\nเยาวยอด\nเยาวราช\nเยาวเรศ\nเยาวลักษณ์\nเยาวพา\nเยาวพาณี\nเยาวพาน\nเยาะ\nเยิง\nเยิน\nเยิ่น\nเยิ่นเย้อ\nเยินยอ\nเยิบ\nเยิบยาบ\nเยิ้ม\nเยีย\nเยี่ยง\nเยี่ยงอย่าง\nเยียงผา\nเยียดยัด\nเยียน\nเยียบ\nเยี่ยม\nเยียรบับ\nเยียรยง\nเยียว\nเยี่ยว\nเยียวยา\nเยือ\nเยื่อ\nเยื้อ\nเยือก\nเยือง\nเยื่อง\nเยื้อง\nเยือน\nเยื้อน\nแย่\nแย้\nแยก\nแยง\nแย่ง\nแย้ง\nแยงแย่\nแยงแย้\nแยบ\nแย็บ\nแยม\nแย้ม\nแยแส\nแยะ\nโย\nโย้\nโยก\nโยกเยก\nโยคาพจร\nโยคาวจร\nโยคเกณฑ์\nโยคยะ\nโยคะ\nโยคิน\nโยคี\nโยง\nโย่ง\nโย่งเย่ง\nโยงโย่\nโยชน์\nโยชนา\nโยถิกะ\nโยทะกา\nโยธวาทิต\nโยธา\nโยธิน\nโยน\nโยนก\nโยนิโส\nโยนี\nโยม\nโยโส\nใย\nไย\nไย่\nไยดี\nไยไพ\nรก\nรง\nรงค์\nรงควัตถุ\nรงรอง\nรจนา\nรจเรข\nรจเลข\nรจิต\nรชตะ\nรชนิ\nรชนี\nรชะ\nรณรงค์\nรด\nรดี\nรตนะ\nรตะ\nรติ\nรถ\nรน\nร่น\nรบ\nรบาญ\nรพี\nรม\nร่ม\nรมณี\nรมณีย์\nรมณียสถาน\nรมย์\nรมเยศ\nรยางค์\nรวก\nรวง\nร่วง\nรวด\nรวน\nรวนเร\nร่วน\nรวบ\nรวม\nร่วม\nรวย\nรวิ\nรวิวาร\nรวี\nรศนา\nรส\nรสนา\nรสสุคนธ์\nรสายนเวท\nรสิก\nรหัท\nรหัส\nรโห\nรโหฐาน\nรอ\nร่อ\nรอก\nรอง\nร่อง\nร้อง\nรองเง็ง\nร่องแร่ง\nรอด\nรอน\nร่อน\nร้อน\nรอบ\nรอบคอบ\nรอม\nรอมชอม\nรอมร่อ\nรอย\nร่อย\nร้อย\nร่อแร่\nระ\nระกะ\nระกา\nระกำ\nระเกะระกะ\nระคน\nระคาง\nระคาย\nระแคะ\nระฆัง\nระงม\nระงับ\nระแง้\nระโงกหิน\nระชวย\nระดม\nระดะ\nระดับ\nระดา\nระด่าว\nระดู\nระเด่น\nระเดียง\nระแด\nระตู\nระทก\nระทด\nระทม\nระทวย\nระทา\nระทึก\nระแทะ\nระนาด\nระนาบ\nระนาม\nระนาว\nระเนน\nระเนระนาด\nระเนียด\nระแนง\nระแนะ\nระบบ\nระบม\nระบอบ\nระบัด\nระบับ\nระบาด\nระบาย\nระบำ\nระบิล\nระบือ\nระบุ\nระเบง\nระเบ็ง\nระเบิด\nระเบียง\nระเบียน\nระเบียบ\nระแบบ\nระมัดระวัง\nระมาด\nระเมียร\nระย่อ\nระย่อม\nระยะ\nระยั้ง\nระยับ\nระย้า\nระยาบ\nระยำ\nระยิบระยับ\nระโยง\nระโยงระยาง\nระรวย\nระรอง\nระร่อน\nระรัว\nระราน\nระร่าย\nระริก\nระรี่\nระรึง\nระรื่น\nระรื้น\nระเร้ง\nระเริง\nระเรียง\nระเรื่อย\nระแรง\nระลวง\nระลอก\nระลึก\nระวัง\nระวาง\nระวาย\nระวิง\nระแวง\nระแวดระวัง\nระไว\nระส่ำระสาย\nระหกระเหิน\nระหง\nระหวย\nระหว่าง\nระหองระแหง\nระหัด\nระหาย\nระเห็จ\nระเหย\nระเหระหน\nระเหหน\nระเหิด\nระเหินระหก\nระแหง\nระโหย\nระอา\nระอิดระอา\nระอุ\nรัก\nรักข์\nรักขิต\nรักตะ\nรักบี้\nรักเร่\nรักแร้\nรักษ์\nรักษา\nรัง\nรั้ง\nรังเกียจ\nรังแก\nรังค์\nรังควาน\nรังแค\nรังรอง\nรังวัด\nรังสิ\nรังสี\nรังสิมันตุ์\nรังสิมา\nรัจฉา\nรัช\nรัชชูปการ\nรัชมังคลาภิเษก\nรัชชุ\nรัชฎาภิเษก\nรัชดาภิเษก\nรัชนะ\nรัชนี\nรัญจวน\nรัฏฐาภิปาลโนบาย\nรัฐ\nรัฐประศาสโนบาย\nรัฐประศาสนศาสตร์\nรัด\nรัต\nรัตกัมพล\nรัตมณี\nรัตคน\nรัตจันทน์\nรัตตัญญู\nรัตติ\nรัตน์\nรัตนะ\nรัตนโกสินทร์\nรัตนโกสินทรศก\nรัตนชาติ\nรัตนตรัย\nรัตนบัลลังก์\nรัตนวราภรณ์\nรัตนสิงหาสน์\nรัตนา\nรัตนากร\nรัตนาภรณ์\nรัตนาวลี\nรัตมา\nรัถ\nรัถยา\nรัทเทอร์ฟอร์เดียม\nรัน\nรั้น\nรันทด\nรันทวย\nรับ\nรัมณียสถาน\nรัมภา\nรัมมี่\nรัมย์\nรัย\nรัว\nรั่ว\nรั้ว\nรัศมิมัต\nรัศมิมาน\nรัศมี\nรัษฎากร\nรัสเซีย\nรัสสะ\nรัสสระ\nรา\nร่า\nร้า\nราก\nรากษส\nรากสาด\nราคะ\nราคจริต\nราคา\nราคิน\nราคี\nราง\nร่าง\nร้าง\nรางจืด\nรางชาง\nรางวัล\nราช\nราชกิจจานุเบกษา\nราชนิกุล\nราชวโรงการ\nราชญี\nราชดัด\nราชพฤกษ์\nราชมาณพ\nราชมาษ\nราชมาส\nราชย์\nราชสีห์\nราชะ\nราชัน\nราชันย์\nราชัย\nราชา\nราชาธิปไตย\nราชาธิราช\nราชาภิเษก\nราชายตนะ\nราชาวดี\nราชี\nราชินิกุล\nราชินีกุล\nราชินี\nราชินูปถัมภ์\nราชูปถัมภ์\nราชูปโภค\nราเชน\nราเชนทร์\nราเชนทรยาน\nราโชวาท\nราไชศวรรย์\nราญ\nราญรอน\nราด\nราต\nราตร\nราตรี\nราน\nร่าน\nร้าน\nราบ\nราพณ์\nราพณาสูร\nราม\nรามเกียรติ์\nรามสูร\nรามัญ\nรามา\nราย\nร่าย\nร้าย\nราว\nร้าว\nราวี\nราศี\nราษฎร\nราษฎร์\nราษตรี\nราษราตรี\nราหุ\nราหู\nรำ\nร่ำ\nรำคาญ\nรำงับ\nรำจวน\nรำบาญ\nรำพัน\nรำพาย\nรำพึง\nรำเพย\nรำไพ\nรำมะนา\nรำมะนาด\nรำมะร่อ\nร่ำรวย\nร่ำร่ำ\nรำไร\nรำลึก\nรำหัด\nรำหัส\nริ\nริก\nริดสีดวง\nริน\nริ้น\nริบ\nริบบิ้น\nริบรี่\nริบหรี่\nริปุ\nริปู\nริม\nริ้ว\nริษยา\nรี\nรี่\nรี้พล\nรีด\nรีดักชัน\nรีต\nรีเนียม\nรีบ\nรีม\nรีรอ\nรี้ริก\nรึง\nรึ้ง\nรื่น\nรื้น\nรื้อ\nรุ\nรุก\nรุกข์\nรุกขชาติ\nรุกขเทวดา\nรุกขมูล\nรุกขา\nรุกรุย\nรุ่ง\nรุ้ง\nรุงรัง\nรุ่งริ่ง\nรุจ\nรุจา\nรุจนะ\nรุจิ\nรุจี\nรุจิระ\nรุจิรา\nรุด\nรุต\nรุทธ์\nรุทระ\nรุธิร\nรุธิระ\nรุเธียร\nรุน\nรุ่น\nรุบรู่\nรุม\nรุ่ม\nรุ่มร่าม\nรุย\nรุ่ย\nรุรุ\nรุหะ\nรู\nรู่\nรู้\nรูจี\nรูด\nรูทีเนียม\nรูบิเดียม\nรูป\nรูปิยะ\nรูปี\nรูเล็ตต์\nเร่\nเรข\nเรขา\nเรขาคณิต\nเร็ง\nเร่ง\nเร้ง\nเรณุ\nเรณู\nเรดอน\nเรดาร์\nเรเดียม\nเร้น\nเรรวน\nเรไร\nเร็ว\nเร่ว\nเรวดี\nเรอ\nเร่อ\nเรา\nเร่า\nเร้า\nเราะ\nเริง\nเริด\nเริม\nเริ่ม\nเริ้ม\nเริศร้าง\nเรี่ย\nเรี้ย\nเรียก\nเรียง\nเรียด\nเรียน\nเรียบ\nเรียม\nเรี่ยม\nเรียว\nเรี่ยว\nเรี้ยวรก\nเรือ\nเรื่อ\nเรื้อ\nเรือก\nเรือง\nเรื่อง\nเรื้อง\nเรืองรอง\nเรือด\nเรือน\nเรื้อน\nเรื่อย\nแร\nแร่\nแรก\nแร็กเกต\nแรง\nแร่ง\nแร้ง\nแรด\nแร้นแค้น\nแรม\nแร้ว\nแระ\nโร\nโร่\nโรค\nโรคา\nโรคาพาธ\nโรง\nโรจ\nโรจน์\nโรเดียม\nโรตี\nโรท\nโรธ\nโรม\nโรมัน\nโรเมอร์\nโรย\nโรเร\nโรหิณี\nโรหิต\nไร\nไร่\nไร้\nไรย์\nฤกษ์\nฤกษณะ\nฤคเวท\nฤชา\nฤชุ\nฤณ\nฤดี\nฤดียา\nฤดู\nฤต\nฤติยา\nฤตุ\nฤทธา\nฤทธิ์\nฤทัย\nฤษภ\nฤษยา\nฤษี\nฤๅ\nฤๅดี\nฤๅทัย\nฤๅษี\nฤๅสาย\nลก\nล่ก\nลฆุ\nลง\nล่ง\nลงกา\nล้งเล้ง\nลด\nลดา\nลดาวัลย์\nลน\nล้น\nลบ\nลบอง\nลพ\nลพุช\nลม\nล่ม\nล้ม\nลมาด\nลรรลุง\nลลนา\nลลิต\nลวก\nลวง\nล่วง\nล้วง\nลวณะ\nลวด\nล้วน\nลวนลาม\nลวนะ\nล่วม\nลวะ\nลวิตร\nลหุ\nลหุกาบัติ\nล่อ\nล้อ\nลอก\nล็อก\nล็อกเกต\nลอกแลก\nลอการิทึม\nลอง\nล่อง\nลองกอง\nลองจิจูด\nลองไน\nลอด\nลอตเตอรี่\nลอน\nล่อน\nลอบ\nลอม\nล้อม\nลอมชอม\nลอมพอก\nลอย\nล่อย\nล่อแล่\nลอว์เรนเซียม\nลออ\nละ\nล่ะ\nละคร\nละติจูด\nละบม\nละบอง\nละบือ\nละเบ็ง\nละโบม\nละม่อม\nละมั่ง\nละมาน\nละม้าย\nละมุ\nละมุด\nละมุน\nละเมอ\nละเมาะ\nละเมิด\nละเมียด\nละแมะ\nละโมก\nละโมบ\nละไม\nละลวย\nละลอก\nละล้า\nละล้าละลัง\nละลาน\nละลาบละล้วง\nละลาย\nละล้าว\nละล่ำละลัก\nละลิบ\nละลุม\nละเลง\nละเล้า\nละเลาะ\nละเลิง\nละเลียด\nละเลียบ\nละไล้\nละว้า\nละวาด\nละเวง\nละแวก\nละโว้\nละหมาด\nละห้อย\nละหาน\nละหาร\nละหุ่ง\nละเหย\nละเหี่ย\nละอง\nละออง\nละอาย\nละเอียด\nละแอน\nลัก\nลักขณะ\nลักขณา\nลักขะ\nลักขี\nลักจั่น\nลักปิดลักเปิด\nลักษณ์\nลักษณนาม\nลักษณะ\nลักษณาการ\nลักษมณ์\nลักษมาณา\nลักษมี\nลักษะ\nลัคคะ\nลัคน์\nลัคนา\nลัง\nลั่ง\nลังกา\nลังคี\nลังถึง\nลังลอง\nลังเล\nลังสาด\nลัชชา\nลัชชี\nลัญจ์\nลัญจกร\nลัญฉกร\nลัญฉน์\nลัฐิ\nลัฐิกา\nลัด\nลัดา\nลัทธ์\nลัทธิ\nลัน\nลั่น\nลันเต\nลันเตา\nลันไต\nลั่นทม\nลันโทม\nลับ\nลัพธ์\nลัพธิ\nลัภ\nลัภนะ\nลัภย์\nลัมพ์\nลัย\nลา\nล่า\nล้า\nลาก\nลาง\nล่าง\nล้าง\nลางลิง\nลางสาด\nลาช\nลาชะ\nลาชา\nลาญ\nลาด\nลาดเลา\nล้าต้า\nล่าเตียง\nลาน\nล่าน\nล้าน\nลาบ\nลาพอน\nลาภ\nลาม\nล่าม\nลามก\nลาย\nล้าย\nลายสือ\nลาลา\nลาว\nลาวัณย์\nลาวา\nลำ\nล่ำ\nล้ำ\nลำเข็ญ\nลำแข\nลำเค็ญ\nลำเจียก\nลำดวน\nลำดับ\nลำเนา\nลำบอง\nลำบาก\nลำปำ\nลำพวน\nลำพอง\nลำพัง\nลำพู\nลำเพ็ญ\nลำเพา\nลำแพน\nลำโพง\nลำไพ่\nลำภุขัน\nลำมะลอก\nลำยอง\nลำไย\nลำลอง\nล่ำลา\nลำลาบ\nลำลึก\nลำเลาะ\nลำเลิก\nลำเลียง\nลำเวียง\nลำเอียก\nลำเอียง\nลิ\nลิกขา\nลิกไนต์\nลิกู\nลิเก\nลิขนะ\nลิขสิทธิ์\nลิขิต\nลิง\nลิงค์\nลิด\nลิต\nลิตมัส\nลิตร\nลิเทียม\nลิ่น\nลิ้น\nลินจง\nลิ้นจี่\nลินลา\nลินสีด\nลิ่นฮื้อ\nลินิน\nลิบ\nลิปดา\nลิปสติก\nลิปิ\nลิฟต์\nลิเภา\nลิ่ม\nลิ้ม\nลิมป์\nลิมปนะ\nลิลิต\nลิว\nลิ่ว\nลิสง\nลี\nลี่\nลี้\nลีซอ\nลีบ\nลีลา\nลีลาศ\nลีฬหา\nลึก\nลึงค์\nลืด\nลื่น\nลื้น\nลืบ\nลืม\nลือ\nลื่อ\nลื้อ\nลุ\nลุก\nลุง\nลุ้ง\nลุ่น\nลุ้น\nลุพธ์\nลุ่ม\nลุมพี\nลุมพู\nลุย\nลุ่ย\nลุ้ย\nลู่\nลูก\nลูกระมาศ\nลูกเอ็น\nลูขะ\nลูทีเชียม\nลูบ\nเลก\nเล็ก\nเลข\nเลขา\nเลขาธิการ\nเลขานุการ\nเล็ง\nเล้ง\nเล่งฮื้อ\nเลเซอร์\nเลฑฑุ\nเลณฑุ\nเลณะ\nเล็ด\nเลน\nเล็น\nเล่น\nเลนส์\nเล็บ\nเลบง\nเลปกร\nเลปน์\nเลเป\nเลเพ\nเล็ม\nเล่ม\nเลย\nเลว\nเลวง\nเลวูโลส\nเลศ\nเลษฏุ\nเล่ห์\nเล่ห์กระเท่ห์\nเลหลัง\nเลหะ\nเลอ\nเล่อ\nเลอะ\nเลอะเทอะ\nเละ\nเละเทะ\nเลา\nเล่า\nเล้า\nเลากัย\nเล้าโลม\nเลาะ\nเลิก\nเลิ่กลั่ก\nเลิง\nเลิ้ง\nเลินเล่อ\nเลิศ\nเลีย\nเลียง\nเลี่ยง\nเลี้ยง\nเลียงผา\nเลียงฝ้าย\nเลียงมัน\nเลียน\nเลี่ยน\nเลียนไฟ\nเลียบ\nเลี่ยม\nเลียว\nเลี้ยว\nเลือก\nเลือง\nเลื่อง\nเลือด\nเลือน\nเลื่อน\nเลื่อม\nเลื่อย\nเลื้อย\nเลื่อยล้า\nแล\nแล่\nแล้\nแลก\nแล็กเกอร์\nแล็กโทส\nแลง\nแล่ง\nแล้ง\nแลน\nแล่น\nแลนทานัม\nแลบ\nแล้ว\nและ\nโล่\nโล้\nโลก\nโลกเชษฐ์\nโลกธรรม\nโลกธาตุ\nโลกนาถ\nโลกบาล\nโลกย์\nโลกัย\nโลกวัชชะ\nโลกวิทู\nโลกัตถจริยา\nโลกันตร์\nโลกา\nโลกาธิบดี\nโลกาธิปไตย\nโลกานุวัตร\nโลกาภิวัตน์\nโลกามิส\nโลกายัต\nโลกาวินาศ\nโลกิยะ\nโลกีย์\nโลกียวัตร\nโลกียวิสัย\nโลกียสุข\nโลกุตระ\nโลกุตรธรรม\nโลกุตรภูมิ\nโลง\nโล่ง\nโล้ง\nโล่งโจ้ง\nโล่งโต้ง\nโล้งโต้ง\nโลจนะ\nโลณะ\nโลด\nโล่ติ๊น\nโลโต\nโลท\nโลน\nโล้น\nโลภ\nโลม\nโลมเล้า\nโลมะ\nโลมา\nโลลุป\nโลเล\nโลโล\nโลโล้\nโลหะ\nโลหกุมภี\nโลหัช\nโลหิต\nไล่\nไล้\nไลย\nไลลา\nไล่เลี่ย\nฦๅ\nฦๅชา\nฦๅสาย\nวก\nวง\nวงก์\nวงกต\nวงศ์\nวงศกร\nวงศา\nวงษ์\nวจนะ\nวจี\nวชิระ\nวชิรปาณี\nวชิรหัตถ์\nวชิราวุธ\nวฏะ\nวฏาการ\nวณิช\nวณิชชา\nวณิชย์\nวณิชยา\nวณิพก\nวดี\nวทนะ\nวทัญญุตา\nวทัญญู\nวธุกา\nวธู\nวน\nวนศาสตร์\nวนสณฑ์\nวนสัณฑ์\nวนอุทยาน\nวนัส\nวนัสบดี\nวนา\nวนาดร\nวนาดอน\nวนานต์\nวนาลัย\nวนาลี\nวนาวาส\nวนาศรม\nวนาสณฑ์\nวนาสัณฑ์\nวนิดา\nวนิพก\nวเนจร\nวโนทยาน\nวยัคฆ์\nวยากรณ์\nวรดนู\nวรทาน\nวรมหาวิหาร\nวรงค์\nวรณะ\nวรรค\nวรรคย์\nวรรช\nวรรชย์\nวรรณะ\nวรรณกรรม\nวรรณคดี\nวรรณยุกต์\nวรรณยุต\nวรรณศิลป์\nวรรณนา\nวรรณพฤติ\nวรรณึก\nวรรธกะ\nวรรธนะ\nวรรษ\nวรรษา\nวรวิหาร\nวรัญญู\nวรางคณา\nวรางคนา\nวราห์\nวราหะ\nวรุณ\nวโรดม\nวฤก\nวลัช\nวลัญช์\nวลัญชน์\nวลัย\nวลาหก\nวลี\nวศค\nวศะ\nวศิน\nวสนะ\nวสภะ\nวสละ\nวสวัดดี\nวสวัตตี\nวสะ\nวสันต์\nวสันตดิลก\nวสันตฤดู\nวสันตวิษุวัต\nวสา\nวสี\nวสุ\nวสุธา\nวสุนธรา\nวสุมดี\nวหะ\nวอ\nวอก\nวอกแวก\nว่องไว\nวอด\nวอน\nว่อน\nว็อบ\nวอมแวม\nวอลเลย์บอล\nวอแว\nวะ\nวัก\nวักกะ\nวัคคีย์\nวัคคุ\nวัคซีน\nวัง\nวังก์\nวังชา\nวังเวง\nวังศะ\nวังสะ\nวัจจะ\nวัจกุฎี\nวัจฉละ\nวัจน์\nวัช\nวัชชะ\nวัชพืช\nวัชฌ์\nวัชระ\nวัชรปาณี\nวัชรยาน\nวัชรอาสน์\nวัชราสน์\nวัชรินทร์\nวัชรี\nวัชเรนทร์\nวัฏ\nวัฏฏะ\nวัฏจักร\nวัฏทุกข์\nวัฏสงสาร\nวัฏกะ\nวัฏฏิ\nวัฒกะ\nวัฒกี\nวัฒนธรรม\nวัฒนะ\nวัฒนา\nวัณ\nวัณโรค\nวัณฏ์\nวัณณะ\nวัณนา\nวัด\nวัต\nวัตต์\nวัตตา\nวัตถ์\nวัตถาภรณ์\nวัตถาลังการ\nวัตถุ\nวัตนะ\nวัตร\nวัตสดร\nวัตสะ\nวัติ\nวัทน์\nวัน\nวันต์\nวันทนา\nวันทนาการ\nวันทนีย์\nวันทยหัตถ์\nวันทยาวุธ\nวันทา\nวันทิ\nวับ\nวับวาบ\nวับวาม\nวับแวบ\nวับแวม\nวัปปะ\nวัมมิกะ\nวัย\nวัลก์\nวัลคุ\nวัลย์\nวัลลภ\nวัลลี\nวัว\nวัสสะ\nวัสโสทก\nวัสดุ\nวัสตร์\nวัสน์\nวัสนะ\nวัสสานะ\nวัสสานฤดู\nวา\nว่า\nว้า\nว้าเหว่\nวาก\nว้าก\nวากยสัมพันธ์\nวากยะ\nวาง\nว่าง\nว้าง\nวาจก\nวาจา\nวาจาไปยะ\nวาจาล\nวาชเปยะ\nวาณิช\nวาณิชกะ\nวาณิชย์\nวาณี\nวาด\nวาต\nวาตะ\nวาตภัย\nวาท\nวาทศาสตร์\nวาทศิลป์\nวาทกะ\nวาทนะ\nวาทย์\nวาทยกร\nวาทิต\nวาทิน\nวาที\nวาน\nวานซืน\nว่าน\nวานร\nวานรินทร์\nวาเนเดียม\nวาบ\nวาปี\nวาม\nวามน\nวามนาวตาร\nวามะ\nวาย\nว่าย\nว้าย\nวายะ\nวาโย\nวายามะ\nวายุ\nวายุกูล\nวาร\nวาระ\nวารสาร\nวารสารศาสตร์\nวาริ\nวารี\nวาริช\nวารีช\nวาริท\nวาริธร\nวารุณ\nวารุณี\nวาล\nวาลวีชนี\nวาล์ว\nวาลิกา\nวาลุกา\nวาว\nว่าว\nว้าว่อน\nว้าวุ่น\nวาสนะ\nวาสนา\nวาสพ\nวาสะ\nวาสิน\nวาสี\nวาสุกรี\nวาสุกี\nวาสุเทพ\nวาหนะ\nวาหะ\nวาหินี\nวาฬ\nวิกขัมภ์\nวิกขัมภนะ\nวิกเขป\nวิกรม\nวิกรัย\nวิกรานต์\nวิกฤต\nวิกฤติ\nวิกล\nวิกสิต\nวิกัต\nวิกัติ\nวิกัติการก\nวิกัป\nวิกัย\nวิการ\nวิกาล\nวิกาลโภชน์\nวิคหะ\nวิเคราะห์\nวิฆเนศ\nวิฆเนศวร\nวิฆาต\nวิง\nวิ่ง\nวิ่งเปี้ยว\nวิงวอน\nวิจฉิกะ\nวิจล\nวิจักขณ์\nวิจักษ์\nวิจักษณ์\nวิจัย\nวิจาร\nวิจารณ์\nวิจารณญาณ\nวิจิ\nวิจิกิจฉา\nวิจิต\nวิจิตร\nวิจิน\nวิจุณ\nวิจุรณ\nวิชชา\nวิชชุ\nวิชชุดา\nวิชชุตา\nวิชชุลดา\nวิชญะ\nวิชน\nวิชนี\nวิชย\nวิชัย\nวิชา\nวิชานนะ\nวิชิต\nวิเชียร\nวิญญัตติ\nวิญญาณ\nวิญญาณกทรัพย์\nวิญญู\nวิฑูรย์\nวิด\nวิตก\nวิตถาร\nวิตามิน\nวิถี\nวิทธะ\nวิทยฐานะ\nวิทยา\nวิทยาคม\nวิทยาคาร\nวิทยาลัย\nวิทยุ\nวิทยุต\nวิทวัส\nวิทัตถิ\nวิทัศน์\nวิทารณ์\nวิทิต\nวิทู\nวิทูร\nวิเทศ\nวิเทโศบาย\nวิธ\nวิธวา\nวิธาน\nวิธี\nวิธุระ\nวิธู\nวิธูปนะ\nวิ่น\nวินตกะ\nวินัย\nวินาที\nวินายก\nวินาศ\nวินิจ\nวินิจฉัย\nวินิต\nวินิบาต\nวินิปาติก\nวิเนต\nวิบัติ\nวิบาก\nวิบุล\nวิบุลย์\nวิบูล\nวิบูลย์\nวิปการ\nวิปฏิสาร\nวิปโยค\nวิประโยค\nวิปริต\nวิปลาส\nวิปวาส\nวิปักษ์\nวิปัสสก\nวิปัสสนา\nวิปัสสนายานิก\nวิพากษ์\nวิพิธทัศนา\nวิพุธ\nวิภว\nวิภวตัณหา\nวิภังค์\nวิภัช\nวิภัตติ\nวิภา\nวิภาค\nวิภาช\nวิภาดา\nวิภาวี\nวิภาษ\nวิภาส\nวิภู\nวิภูษณะ\nวิภูษา\nวิภูษิต\nวิมน\nวิมล\nวิมลัก\nวิมังสา\nวิมัติ\nวิมาน\nวิมุข\nวิมุต\nวิมุตติ\nวิเมลือง\nวิโมกข์\nวิโยค\nวิระ\nวิรงรอง\nวิรังรอง\nวิรัช\nวิรัต\nวิรัติ\nวิราคะ\nวิราม\nวิริยภาพ\nวิริยะ\nวิรุธ\nวิรุฬห์\nวิรุฬหก\nวิรูป\nวิรูปักษ์\nวิเรนทร์\nวิโรจ\nวิโรจน์\nวิโรฒ\nวิโรธ\nวิลันดา\nวิลัย\nวิลาด\nวิลาศ\nวิลาป\nวิลาวัณย์\nวิลาส\nวิลาสินี\nวิลิปดา\nวิลิศมาหรา\nวิเลป\nวิเลปนะ\nวิโลกนะ\nวิโลม\nวิไล\nวิไลวรรณ\nวิวรณ์\nวิวรรธน์\nวิวัฏ\nวิวัฒน์\nวิวัฒนาการ\nวิวัน\nวิวาท\nวิวาห์\nวิวาหมงคล\nวิวาหะ\nวิวิต\nวิวิธ\nวิเวก\nวิศรุต\nวิศว\nวิศวกร\nวิศวกรรม\nวิศวกรรมศาสตร์\nวิศัลย์\nวิศาขบูชา\nวิศาขา\nวิศาล\nวิศิษฏ์\nวิศุทธ์\nวิศุทธิ์\nวิเศษ\nวิเศษณ์\nวิษณุ\nวิษณุกรรม\nวิษธร\nวิษัย\nวิษาณ\nวิษุวัต\nวิสกี้\nวิสรรชนีย์\nวิสฤต\nวิสสุกรรม\nวิสัชนา\nวิสัญญี\nวิสัย\nวิสัยทัศน์\nวิสาขบูชา\nวิสาขะ\nวิสาขา\nวิสามัญ\nวิสามานยนาม\nวิสาร\nวิสารทะ\nวิสาล\nวิสาสะ\nวิสาหกิจ\nวิสิฐ\nวิสุงคามสีมา\nวิสุทธ์\nวิสุทธิ์\nวิสูตร\nวิเสท\nวิหค\nวิหลั่น\nวิหาร\nวิหิงสา\nวิเหสา\nวิฬาร\nวิฬาร์\nวี\nวีจิ\nวีชนี\nวีณา\nวี้ด\nวีรกรรม\nวีรชน\nวีรบุรุษ\nวีรสตรี\nวี่วัน\nวี่แวว\nวีสะ\nวุ้ง\nวุฐิ\nวุฒ\nวุฒิ\nวุด\nวุ่น\nวุ้น\nวุบ\nวุ้ย\nวุลแฟรม\nวู้\nวูดวาด\nวูบ\nวู่วาม\nเว้\nเวค\nเวคิน\nเวคี\nเวจ\nเวช\nเวชยันต์\nเวฐน์\nเวณิ\nเวณิก\nเวณุ\nเวตน์\nเวตร\nเวตาล\nเวท\nเวทคู\nเวทนา\nเวทย์\nเวทัลละ\nเวทางค์\nเวทางคศาสตร์\nเวทานต์\nเวทานตะ\nเวทิ\nเวที\nเวธะ\nเวน\nเว้น\nเวนไตย\nเวไนย\nเวมัต\nเว้ย\nเวยยากรณะ\nเวร\nเวรมณี\nเวรี\nเวโรจน์\nเวลา\nเวเลนซี\nเวศม์\nเวศย์\nเวศยา\nเวสน์\nเวสภู\nเวสม์\nเวสวัณ\nเวสสะ\nเวสสันดร\nเวสสุกรรม\nเวสสุวัณ\nเวสารัช\nเวสิยา\nเวหน\nเวหะ\nเวหา\nเวหาส\nเวฬุ\nเวฬุริยะ\nเว่อ\nเว้า\nเวิก\nเวิ้ง\nเวี่ย\nเวียง\nเวียด\nเวียดนาม\nเวียน\nเวียร\nเวี่ยว\nแว้\nแวง\nแว้ง\nแวด\nแว้ด\nแวน\nแว่น\nแวนดา\nแวบ\nแว็บ\nแวม\nแว็ม\nแวว\nแว่ว\nแวะ\nโว\nโว่\nโวการ\nโว่ง\nโวทาน\nโวย\nโว้ย\nโว้เว้\nโวหาร\nไว\nไว้\nไวกูณฐ์\nไวฑูรย์\nไวทย์\nไวน์\nไวพจน์\nไวยากรณ์\nไวยาวัจกร\nไวยาวัจมัย\nไวรัส\nไววรรณ\nไวษณพ\nไวโอลิน\nศก\nศกุน\nศกุนต์\nศกุนิ\nศกุนี\nศจี\nศตะ\nศตภิษัช\nศตวรรษ\nศตพรรษ\nศตกะ\nศนิ\nศพ\nศมนะ\nศมะ\nศยาม\nศยามล\nศร\nศรายุธ\nศราวรณ์\nศรรกรา\nศรวณะ\nศรวณีย์\nศรวิษฐา\nศรัณย์\nศรัณยู\nศรัท\nศรัทธา\nศรัย\nศราทธ์\nศราทธพรต\nศราพก\nศราวก\nศราวณะ\nศรี\nศรีตรัง\nศรุติ\nศฤคาล\nศฤงค์\nศฤงคาร\nศฤงคาริน\nศฤงคารี\nศลิษฏ์\nศลิษา\nศวะ\nศวัส\nศวา\nศวาน\nศศะ\nศศธร\nศศพินทุ์\nศศลักษณ์\nศศิ\nศศิน\nศศี\nศศิขัณฑ์\nศศิธร\nศศิมณฑล\nศศิวิมล\nศอ\nศอก\nศักดา\nศักดิ\nศักดิ์\nศักดินา\nศักติ\nศักย\nศักยภาพ\nศักย์\nศักยะ\nศักร\nศักรินทร์\nศักเรนทร์\nศักราช\nศังกร\nศัตรู\nศันสนะ\nศันสนีย์\nศัพท์\nศัยยา\nศัล\nศัลย์\nศัลยกรรม\nศัลยแพทย์\nศัลยศาสตร์\nศัสดร\nศัสตร\nศัสตรศาสตร์\nศัสตรา\nศัสตราวุธ\nศากตะ\nศากย\nศากยะ\nศากยพุทธ\nศากยมุนี\nศาฎก\nศาณ\nศานต์\nศานติ\nศาป\nศารท\nศารทูล\nศาริกา\nศาล\nศาลา\nศาศวัต\nศาสดา\nศาสตร์\nศาสตรา\nศาสตราจารย์\nศาสนา\nศาสนกิจ\nศาสนจักร\nศาสนธรรม\nศาสนบุคคล\nศาสนพิธี\nศาสนวัตถุ\nศาสนศาสตร์\nศาสนสถาน\nศาสนสมบัติ\nศาสนิกชน\nศาสนีย์\nศาสนูปถัมภก\nศาสน์\nศิกษก\nศิการ\nศิขร\nศิขริน\nศิขรี\nศิขัณฑ์\nศิคาล\nศิงขร\nศิงขริน\nศิตะ\nศิถี\nศิพิระ\nศิระ\nศิรประภา\nศิราภรณ์\nศิโรรัตน์\nศิโรเวฐน์\nศิรา\nศิรามพุช\nศิโรราบ\nศิลป\nศิลป์\nศิลปะ\nศิลปกร\nศิลปกรรม\nศิลปกิจ\nศิลปวัตถุ\nศิลปวิทยา\nศิลปศาสตร์\nศิลปศึกษา\nศิลปหัตถกรรม\nศิลปิน\nศิลปี\nศิลา\nศิวะ\nศิวโมกข์\nศิวลึงค์\nศิวเวท\nศิวาลัย\nศิศีระ\nศิษฎิ\nศิษฏ์\nศิษย์\nศิษยานุศิษย์\nศีขร\nศีต\nศีตกาล\nศีรษะ\nศีล\nศึก\nศึกษา\nศึกษาธิการ\nศึกษานิเทศก์\nศุกร์\nศุกรวรรณ\nศุกรวาร\nศุกระ\nศุกล\nศุกลปักษ์\nศุจิ\nศุทธะ\nศุทธิ\nศุนะ\nศุนิ\nศุภกร\nศุภเคราะห์\nศุภนิมิต\nศุภมัสดุ\nศุภมาตรา\nศุภมาส\nศุภอักษร\nศุภางค์\nศูกร\nศุลกากร\nศุลการักษ์\nศุลี\nศุษิร\nศูทร\nศูนย์\nศูนยวาท\nศูละ\nศูลิน\nเศรณี\nเศรษฐ\nเศรษฐ์\nเศรษฐกิจ\nเศรษฐศาสตร์\nเศรษฐี\nเศร้า\nเศลษ\nเศวต\nเศวตร\nเศวตัมพร\nเศษ\nเศาจ\nเศาร์\nเศารยะ\nเศิก\nเศียร\nโศก\nโศกา\nโศกาดูร\nโศกาลัย\nโศกี\nโศจิ\nโศธนะ\nโศภน\nโศภะ\nโศภา\nโศภิต\nโศภิน\nโศภิษฐ์\nโศภี\nโศรดา\nโศรตร\nโศลก\nไศล\nไศวะ\nษมา\nษัฏ\nษัฑ\nษัณ\nษัษ\nษัษฐะ\nษัษฐี\nโษฑศัน\nสก\nสกวาที\nสกฏะ\nสกทาคามิผล\nสกิทาคามิผล\nสกทาคามิมรรค\nสกิทาคามิมรรค\nสกทาคามี\nสกิทาคามี\nสกนธ์\nสกปรก\nสกรณีย์\nสกรรจ์\nสกรรมกริยา\nสกล\nสกลมหาสังฆปริณายก\nสกัด\nสกา\nสกาว\nสกี\nสกุณ\nสกุณา\nสกุณี\nสกุน\nสกุนต์\nสกุล\nสเกต\nสแกนเดียม\nสขะ\nสง\nส่ง\nสงกร\nสงกรานต์\nสงกา\nสงค์\nสงคร\nสงคราม\nสงเคราะห์\nสงฆ์\nสงบ\nสงวน\nส่งสการ\nสงสัย\nสงสาร\nสงสารวัฏ\nสงัด\nสง่า\nสฐะ\nสณฑ์\nสด\nสดมภ์\nสดับ\nสดับปกรณ์\nสดำ\nสดุดี\nสตะ\nสตน\nสตภิสชะ\nสตรอนเชียม\nสตริกนิน\nสตรี\nสตัฟฟ์\nสตัมภ์\nสตางค์\nสติ\nสติปัฏฐาน\nสตี\nสตู\nสตูป\nสเต๊ก\nสถบดี\nสถล\nสถวีระ\nสถาน\nสถานะ\nสถานี\nสถาบัน\nสถาปนา\nสถาปนิก\nสถาปัตยกรรม\nสถาปัตยกรรมศาสตร์\nสถาปัตยเรขา\nสถาปัตยเวท\nสถาพร\nสถาวร\nสถิต\nสถิตยศาสตร์\nสถิติ\nสถิร\nสถีรวาท\nสถุล\nสถูป\nสทิง\nสทึง\nสทุม\nสธนะ\nสาธุสะ\nสน\nส้น\nสนทนา\nสนทรรศ\nสนทรรศน์\nสนเทศ\nสนเท่ห์\nสนธยา\nสนธิ\nสนน\nสนม\nสนวน\nสนอง\nสนอบ\nสนอม\nสนะ\nสนัด\nสนั่น\nสนับ\nสนับทึบ\nสนับสนุน\nสนาน\nสนาม\nสนายุ\nสนิกะ\nสนิท\nสนิธ\nสนิม\nสนุก\nสนุกเกอร์\nสนุข\nสนุต\nสนุ่น\nสบ\nสบง\nสบถ\nสบัน\nสบาย\nสบู่\nสไบ\nสปริง\nสปอร์\nสปาเกตตี\nสเปกตรัม\nสเปกโทรสโกป\nสไปริลลัม\nสพาบ\nสภา\nสภาพ\nสภาวการณ์\nสภาวะ\nสม\nสมการ\nสมจารี\nสมดุล\nสมมูล\nส้ม\nสมญา\nสมณะ\nสมณบริขาร\nสมณศักดิ์\nสมณสารูป\nสมเด็จ\nสมถะ\nสมถยานิก\nสมถวิปัสสนา\nสมนาคุณ\nสมบัติ\nสมบุกสมบัน\nสมบูรณ์\nสมบูรณาญาสิทธิราชย์\nสมประดี\nสมปฤดี\nสมปฤๅดี\nส้มป่อย\nสมปัก\nสมผุส\nสมพง\nสมพงศ์\nสมพล\nสมพัตสร\nสมพาส\nสมเพช\nสมโพธน์\nสมโพธิ\nสมภพ\nสมภาร\nสมโภค\nสมโภช\nสมมต\nสมมติ\nสมมุติ\nสมมาตร\nส้มมือ\nสมโมท\nสมโยค\nสมร\nสมรด\nสมรรถ\nสมรรถนะ\nสมรรถภาพ\nสมรส\nสมฤดี\nสมฤติ\nสมวายะ\nสมเสร็จ\nสมอ\nสมอง\nสมะ\nสมัคร\nสมังคี\nสมัช\nสมัชชา\nสมัญญา\nสมัต\nสมัน\nสมันต์\nสมัย\nสมา\nสมาคม\nสมาจาร\nสมาชิก\nสมาทาน\nสมาธิ\nสมาน\nสมานฉันท์\nสมาบัติ\nสมาพันธรัฐ\nสมาส\nสม่ำเสมอ\nสมิง\nสมิต\nสมิติ\nสมิทธ์\nสมิทธิ\nสมี\nสมุก\nสมุจจัย\nสมุจเฉท\nสมุฏฐาน\nสมุด\nสมุทร\nสมุทรโคดม\nสมุทัย\nสมุน\nสมุนไพร\nสมุลแว้ง\nสมุห\nสมุห์\nสมุหกลาโหม\nสมุหเทศาภิบาล\nสมุหนาม\nสมุหนายก\nสโมธาน\nสโมสร\nสยด\nสยนะ\nสยบ\nสยมพร\nสยมภู\nสยอง\nสยอน\nสยัมวรา\nสยาม\nสยามานุสติ\nสยามินทร์\nสยาย\nสยิว\nสยิ้ว\nสยุมพร\nสยุมภู\nสร\nสรง\nสร่ง\nสรณะ\nสรณคมน์\nสรณาคมน์\nสรณตรัย\nสรตะ\nสรทะ\nสรนุก\nสรเนาะ\nสรไน\nสรเพชญ\nสรภะ\nสรภัญญะ\nสรภู\nสรม\nสรร\nสรรค์\nสรรพ\nสรรพคุณ\nสรรพนาม\nสรรพสามิต\nสรรพัชญ\nสรรพากร\nสรรพางค์\nสรรเพชญ\nสรรเพชุดา\nสรรเสริญ\nสรลอน\nสรเลข\nสรวง\nสรวม\nสรวล\nสรเสริญ\nสร้อย\nสระ\nสระกอ\nสระท้อน\nสระพรั่ง\nสระอาด\nสรั่ง\nสรัสวดี\nสร่าง\nสร้าง\nสราญ\nสรี้\nสรีระ\nสรีรกิจ\nสรีรธาตุ\nสรีรวิทยา\nสรีรศาสตร์\nสรีรังคาร\nสรีรางคาร\nสรุป\nสโรช\nสโรชะ\nสฤก\nสฤต\nสฤษฎิ\nสฤษฎี\nสฤษฏ์\nสฤษดิ์\nสลด\nสลบ\nสลวน\nสลวย\nสลอด\nสลอน\nสลอย\nสละ\nสลัก\nสลัด\nสลัดได\nสลับ\nสลัว\nสลา\nสลาก\nสลาง\nสล้าง\nสลาด\nสลาตัน\nสลาบ\nสลาย\nสลิด\nสลิล\nสลึก\nสลึง\nสลุต\nสลุบ\nสลุมพร\nสแลง\nสวการย์\nสวภาพ\nสวราชย์\nสวก\nส้วง\nสวด\nสวน\nสวนะ\nสวนาการ\nส่วน\nสวนิต\nสวบ\nสวม\nส้วม\nสวย\nส่วย\nส้วย\nสวยม\nสวรรค\nสวรรค์\nสวรรคต\nสวรรคาลัย\nสวรรยา\nสวระ\nสวะ\nสวัสดิ\nสวัสดิ์\nสวัสดิการ\nสวัสดิภาพ\nสวัสดิมงคล\nสวัสดี\nสวัสติ\nสวาตี\nสวัสติกะ\nสวา\nสวาปาม\nสวาคตะ\nสวาง\nสว่าง\nสวาด\nสวาดิ\nสวาท\nสว่าน\nสว้าน\nสวาบ\nสวามิ\nสวามี\nสวามินี\nสวาย\nสวาสดิ์\nสวาหะ\nสวิง\nสวิญญาณกทรัพย์\nสวิตช์\nสสาร\nสสุระ\nสสุรี\nสหกรณ์\nสหการ\nสหจร\nสหชาต\nสหชาติ\nสหธรรม\nสหธรรมิก\nสหประชาชาติ\nสหพันธ์\nสหพันธรัฐ\nสหภาพ\nสหศึกษา\nสหัช\nสหัมบดี\nสหัส\nสหัสสะ\nสหัสธารา\nสหัสนัยน์\nสหัสเนตร\nสหัสรังสี\nสหัสา\nสหาย\nสอ\nส่อ\nสอง\nส่อง\nส้อง\nสอด\nสอน\nส่อน\nสอบ\nสอพลอ\nส้อม\nสอย\nสะ\nสะกด\nสะกอ\nสะกาง\nสะการะ\nสะกิด\nสะกิดสะเกา\nสะเก็ด\nสะแก\nสะคร้อ\nสะคราญ\nสะค้าน\nสะเงาะสะแงะ\nสะดม\nสะดวก\nสะดิ้ง\nสะดึง\nสะดือ\nสะดุ้ง\nสะดุด\nสะเด็ด\nสะเดา\nสะเดาะ\nสะตอ\nสะตาหมัน\nสะตึ\nสะตือ\nสะตุ\nสะเต๊ะ\nสะโตก\nสะทก\nสะท้อน\nสะท้าน\nสะทึก\nสะเทิน\nสะเทิ้น\nสะเทือน\nสะเทื้อน\nสะบะ\nสะบัก\nสะบักสะบอม\nสะบัด\nสะบัดสะบิ้ง\nสะบั้น\nสะบันงา\nสะบ้า\nสะบู\nสะแบง\nสะเปะสะปะ\nสะพรั่ง\nสะพรึงกลัว\nสะพรึบ\nสะพรึ่บ\nสะพัก\nสะพัง\nสะพัด\nสะพั้น\nสะพาน\nสะพาย\nสะเพร่า\nสะโพก\nสะเภา\nสะใภ้\nสะโมง\nสะระตะ\nสะระแหน่\nสะลาง\nสะลาบ\nสะลึมสะลือ\nสะวี้ดสะว้าด\nสะสม\nสะสวย\nสะสาง\nสะเหล่อ\nสะอาง\nสะอาด\nสะอ้าน\nสะอิ้ง\nสะอิดสะเอียน\nสะอึก\nสะอื้น\nสะเอ้ง\nสะเอว\nสะเออะ\nสะโอดสะอง\nสะไอ\nสัก\nสักกะ\nสักยะ\nสักกัจจะ\nสักกายทิฐิ\nสักการ\nสักการะ\nสักขี\nสักวา\nสักหลาด\nสัค\nสัคคะ\nสั่ง\nสังกร\nสังกรณี\nสังกรประโยค\nสังกะตัง\nสังกะวัง\nสังกะวาด\nสังกะสี\nสังกัด\nสังกัปปะ\nสังกา\nสังการ\nสังกาศ\nสังกิเลส\nสังเกต\nสังข์\nสังขกร\nสังขตธรรม\nสังขตะ\nสังขยา\nสังขลิก\nสังขลิกา\nสังขาร\nสังขารา\nสังเขป\nสังค์\nสังคญาติ\nสังคม\nสังคหะ\nสังคัง\nสังคายนา\nสังคายนาย\nสังคีต\nสังคีติ\nสังเค็ด\nสังเคราะห์\nสังฆกรรม\nสังฆการี\nสังฆเถระ\nสังฆทาน\nสังฆนายก\nสังฆปาโมกข์\nสังฆภัต\nสังฆเภท\nสังฆมณฑล\nสังฆมนตรี\nสังฆราช\nสังฆสภา\nสังฆาณัติ\nสังฆาฏิ\nสังฆาทิเสส\nสังฆาธิการ\nสังฆานุสติ\nสังฆาวาส\nสังยุตนิกาย\nสังโยค\nสังโยชน์\nสังวร\nสังวัจฉระ\nสังวัธยาย\nสังวาล\nสังวาส\nสังเวคะ\nสังเวช\nสังเวชนียสถาน\nสังเวย\nสังเวียน\nสังสกฤต\nสังสการ\nสังสนทนา\nสั่งสนทนา\nสังสรรค์\nสังสารวัฏ\nสังสิทธิ\nสังสุทธ์\nสังสุทธิ\nสังหร\nสังหรณ์\nสังหาร\nสังหาริมทรัพย์\nสังหาริมะ\nสังหิต\nสัจ\nสัจกิริยา\nสัจจะ\nสัจญาณ\nสัจธรรม\nสัจนิยม\nสัจพจน์\nสัชฌะ\nสัชฌุ\nสัญจร\nสัญเจตนา\nสัญชาตญาณ\nสัญชาติ\nสัญฌา\nสัญญา\nสัญญาณ\nสัญญี\nสัญโญชน์\nสัญนิยม\nสัญประกาศ\nสัญลักษณ์\nสัฐิ\nสัณฐาน\nสัณฐิติ\nสัณฑ์\nสัณห์\nสัด\nสัดจอง\nสัต\nสัตตะ\nสัตตาหกรณียะ\nสัตตาหกาลิก\nสัตมวาร\nสัตสดก\nสัตตบงกช\nสัตตบรรณ\nสัตตบุษย์\nสัตตู\nสัตถันดร\nสัตถา\nสัตถิ\nสัตถุ\nสัตถุศาสนา\nสัตบรรณ\nสัตย์\nสัตยพรต\nสัตยวาที\nสัตยาเคราะห์\nสัตยาธิษฐาน\nสัตยาบัน\nสัตว์\nสัตวชาติ\nสัตวบาล\nสัตวแพทย์\nสัตววิทยา\nสัตวา\nสัทธรรม\nสัทธา\nสัทธาจริต\nสัทธาธิกะ\nสัทธินทรีย์\nสัทธิงวิหาริก\nสัทธิวิหาริก\nสัทวิทยา\nสัทศาสตร์\nสัทอักษร\nสัน\nสั่น\nสั้น\nสันดาน\nสันดาป\nสันโดษ\nสันต์\nสันตติ\nสันตะปาปา\nสันตะวา\nสันติ\nสันตุฏฐี\nสันถวไมตรี\nสันถวะ\nสันถัต\nสันถาร\nสันทนะ\nสันทะ\nสันทัด\nสันทัสนะ\nสันทาน\nสันทิฐิก\nสันทิส\nสันเทหะ\nสันธาน\nสันนิธิ\nสันนิบาต\nสันนิวาส\nสันนิษฐาน\nสันสกฤต\nสับ\nสับปลับ\nสับปลี้\nสับปะรด\nสัปคับ\nสัปดาห์\nสัปดาหะ\nสัปดน\nสัปตศก\nสัปทน\nสัปปะ\nสัปปิ\nสัปปุริส\nสัปปุรุษ\nสัประยุทธ์\nสัปหงก\nสัปเหร่อ\nสัพ\nสัพพะ\nสัพพัญญู\nสัพเพเหระ\nสัพยอก\nสัมบูรณ์\nสัมปชัญญะ\nสัมปทา\nสัมปทาน\nสัมปยุต\nสัมปโยค\nสัมประสิทธิ์\nสัมประหาร\nสัมปรายภพ\nสัมปรายิกภพ\nสัมปัตติ\nสัมผัปลาป\nสัมผัปลาปะ\nสัมผัส\nสัมพล\nสัมพหุลา\nสัมพัจฉรฉินท์\nสัมพัตสร\nสัมพัทธ์\nสัมพันธ์\nสัมพันธน์\nสัมพันธภาพ\nสัมพันธมิตร\nสัมพันธไมตรี\nสัมพาหะ\nสัมพุทธ\nสัมพุทธะ\nสัมโพธิ\nสัมภวะ\nสัมภเวสี\nสัมภัต\nสัมภัตตะ\nสัมภาระ\nสัมภาษณ์\nสัมโภคกาย\nสัมมนา\nสัมมัปธาน\nสัมมา\nสัมโมทนียกถา\nสัมฤทธิ\nสัมฤทธิ์\nสัมฤทธิศก\nสัยน์\nสัลเลข\nสัสดี\nสัสตทิฐิ\nสัสสะ\nสัสสุ\nสัสสู\nสา\nส่า\nสาก\nสากรรจ์\nสากล\nสากัจฉา\nสากัลย์\nสากิยะ\nสาเก\nสาขา\nสาคร\nสาคเรศ\nสาคู\nสาง\nส้าง\nสาชล\nสาฎก\nสาฏิก\nสาณี\nสาด\nสาไถย\nสาทร\nสาทิส\nสาทุ\nสาโท\nสาธก\nสาธยะ\nสาธยาย\nสาธารณะ\nสาธารณชน\nสาธารณประโยชน์\nสาธารณภัย\nสาธารณรัฐ\nสาธารณสถาน\nสาธารณสมบัติ\nสาธารณสุข\nสาธารณูปการ\nสาธารณูปโภค\nสาธารณ์\nสาธิต\nสาธุ\nสาน\nส่าน\nสานุ\nสานู\nสานุศิษย์\nสาบ\nสาบสูญ\nสาบาน\nสาป\nสาปไตย\nสาม\nสามชุก\nสามเณร\nสามเณรี\nสามนต์\nสามนตราช\nสามยทรัพย์\nสามล\nสามหาว\nสามะ\nสามัคคี\nสามัญ\nสามัตถิยะ\nสามานย์\nสามานยนาม\nสามารถ\nสามิต\nสามินี\nสามิภักดิ์\nสามี\nสามีจิกรรม\nสาย\nส่าย\nส้าย\nสายชู\nสายัณห์\nสายาห์\nสาร\nสารคดี\nสารธรรม\nสารนิเทศ\nสารบบ\nสารบรรณ\nสารบัญ\nสารบาญ\nสารบาญชี\nสารประโยชน์\nสารสนเทศ\nสารทุกข์\nสารถี\nสารท\nสารพัด\nสารพัน\nสารพางค์\nสารภาพ\nสารภี\nสารวัตร\nสาระ\nสาระแน\nสาระพา\nสาระยำ\nสาระวารี\nสาระสะมา\nสารัตถประโยชน์\nสารัตถศึกษา\nสารัตถะ\nสารัทธ์\nสารัมภ์\nสาราณียกร\nสาราณียธรรม\nสาราณียะ\nสารานุกรม\nสารีริกธาตุ\nสารูป\nสาโรช\nสาละ\nสาละวน\nสาลิ\nสาลิกา\nสาลินี\nสาลี\nสาลี่\nสาลู\nสาโลหิต\nสาว\nสาวก\nสาวิกา\nสาวิตร\nสาวิตรี\nสาสน\nสาสน์\nสาส์น\nสาสนา\nสาสม\nสาหร่าย\nสาหรี\nส่าหรี\nสาหัส\nสาเหตุ\nสาแหรก\nสำ\nสำส่อน\nส่ำ\nสำคัญ\nสำซ่าง\nสำแดง\nสำทับ\nสำนวน\nสำนอง\nสำนัก\nสำนาน\nสำนึก\nสำนึง\nสำเนา\nสำเนียง\nสำบัด\nสำปะลอ\nสำปะหลัง\nสำปั้น\nสำปันนี\nสำเภา\nสำมะงา\nสำมะโน\nสำมะลอ\nสำมะเลเทเมา\nสำมะหา\nสำรด\nสำรวจ\nสำรวม\nสำรวย\nสำรวล\nสำรอก\nสำรอง\nสำรับ\nสำราก\nสำราญ\nสำริด\nสำเร็จ\nสำเรา\nสำเริง\nสำโรง\nสำลัก\nสำลาน\nสำลี\nสำแลง\nสำหรวด\nสำหรับ\nสำหา\nสำเหนียก\nสำเหร่\nสำออย\nสำอาง\nสิ\nสิกข์\nสิข\nสิกขมานา\nสิกขา\nสิขร\nสิขรี\nสิขเรศ\nสิขา\nสิขานล\nสิขี\nสิคาล\nสิง\nสิ่ง\nสิงขร\nสิงค์\nสิงคลิ้ง\nสิงคลี\nสิงคาร\nสิงคาล\nสิงคี\nสิงโต\nสิงห์\nสิงหนาท\nสิงหบัญชร\nสิงหรา\nสิงหราช\nสิงหาคม\nสิงหาสน์\nสิงหล\nสิญจน์\nสิตะ\nสิตางศุ์\nสิถิล\nสิทธ์\nสิทธัตถะ\nสิทธา\nสิทธาจารย์\nสิทธารถ\nสิทธิ\nสิทธิ์\nสิทธิการิยะ\nสิธยะ\nสิน\nสิ้น\nสินเทา\nสินธพ\nสินธุ\nสินธุ์\nสินธุระ\nสินธู\nสินเธาว์\nสินาด\nสินิทธ์\nสินี\nสิเนรุ\nสิเนหก\nสิเนหะ\nสิเนหา\nสิเน่หา\nสิบ\nสิปปะ\nสิมพลี\nสิระ\nสิโรดม\nสิโรตม์\nสิริ\nสิรี\nสิลา\nสิว\nสิ่ว\nสิวะ\nสิวาลัย\nสิวิกา\nสี\nสี่\nสี้\nสีกา\nสีกุน\nสีข้าง\nสีด\nสีดอ\nสีดา\nสีตลรัศมี\nสีตโลทก\nสีโตทก\nสีทันดร\nสีมันต์\nสีมา\nสีละมัน\nสีวิกา\nสีสอ\nสีสะ\nสีสา\nสีสุก\nสีเสียด\nสีห์\nสีหนาท\nสีหบัญชร\nสีหราช\nสีหไสยา\nสีหไสยาสน์\nสีหะ\nสึก\nสึง\nสืบ\nสื่อ\nสุ\nสุก\nสุกข์\nสุกร\nสุกรม\nสุกำศพ\nสุกียากี้\nสุข\nสุขา\nสุขาภิบาล\nสุขารมณ์\nสุขาวดี\nสุขิน\nสุขี\nสุขุม\nสุขุมาล\nสุโข\nสุคต\nสุคติ\nสุคนธ\nสุคนธ์\nสุคนธชาติ\nสุคนธรส\nสุคันธ์\nสุคันธรส\nสุงกะ\nสุงกากร\nสุงสิง\nสุงสุมาร\nสุจริต\nสุจหนี่\nสุจิ\nสุจิต\nสุจิตร\nสุชน\nสุชัมบดี\nสุชา\nสุชาดา\nสุญ\nสุญญากาศ\nสุญตา\nสุญนิยม\nสุณ\nสุณิสา\nสุด\nสุดา\nสุต\nสุตตนิบาต\nสุตตะ\nสุตตันตปิฎก\nสุตตันตะ\nสุติ\nสุทธ\nสุทธ์\nสุทธาวาส\nสุทธิ\nสุทรรศน์\nสุทัศน์\nสุธา\nสุธาโภชน์\nสุธารส\nสุธาสินี\nสุธาสี\nสุธี\nสุนทร\nสุนทรี\nสุนทรียภาพ\nสุนทรียศาสตร์\nสุนทรียะ\nสุนัข\nสุนันท์\nสุโนก\nสุบดี\nสุบรรณ\nสุบิน\nสุปรีดิ์\nสุปรีย์\nสุปาณี\nสุพพัต\nสุพรรณ\nสุพรรณบัฏ\nสุพรรณภาชน์\nสุพรรณราช\nสุพรรณศรี\nสุพรรณถัน\nสุพรรณิการ์\nสุภร\nสุภัค\nสุภา\nสุภาพ\nสุภาษิต\nสุม\nสุ่ม\nสุมทุม\nสุมน\nสุมนะ\nสุมนัส\nสุมนา\nสุ้มเสียง\nสุมะ\nสุมาลี\nสุเมธ\nสุเมรุ\nสุรคต\nสุรเชษฐ์\nสุรบดี\nสุรภาพ\nสุรโลก\nสุรสีหนาท\nสุรเสียง\nสุรงค์\nสุรังค์\nสุรภี\nสุรัติ\nสุรัสวดี\nสุรา\nสุรางค์จำเรียง\nสุรางคนา\nสุรางคนางค์\nสุรารักษ์\nสุราลัย\nสุรินทร์\nสุรินทราหู\nสุริยะ\nสุริยกันต์\nสุริยกานต์\nสุริยการ\nสุริยกาล\nสุริยคติ\nสุริยคราส\nสุริยมณฑล\nสุริยวงศ์\nสุริยง\nสุริยา\nสุริเยนทร์\nสุริเยศ\nสุริโย\nสุริยน\nสุริยัน\nสุริยุปราคา\nสุรีย์\nสุรุ่ยสุร่าย\nสุลต่าน\nสุวคนธ์\nสุวภาพ\nสุวรรณ\nสุวรรณภูมิ\nสุวะ\nสุวาน\nสุวินัย\nสุวิมล\nสุษิระ\nสุสาน\nสุหนัต\nสุหร่ง\nสุหร่าย\nสุหฤท\nสุหัท\nสุเหร่า\nสู\nสู่\nสู้\nสูง\nสูจิ\nสูจิบัตร\nสูญ\nสูด\nสูต\nสูตร\nสูติ\nสูติกรรม\nสูตินรีเวช\nสูติบัตร\nสูติแพทย์\nสูติศาสตร์\nสูท\nสูทกรรม\nสูทศาสตร์\nสูบ\nสูปะ\nสูร\nสูรย์\nสูรยกานต์\nสูริ\nสูสี\nเส\nเสก\nเสกขบุคคล\nเสกขะ\nเสขบุคคล\nเสขะ\nเส็ง\nเส้ง\nเส็งเคร็ง\nเสงี่ยม\nเสฏฐี\nเสณี\nเสด\nเสด็จ\nเสตุ\nเสถียร\nเสทะ\nเสโท\nเสน\nเส้น\nเสนง\nเสน่ง\nเสน่ห์\nเสนหา\nเสน่หา\nเสนอ\nเสนะ\nเสนา\nเสนาธิการ\nเสนาบดี\nเสน่า\nเสนากุฎ\nเสนางค์\nเสนางคนิกร\nเสนานี\nเสนาสนะ\nเสนาะ\nเสนี\nเสนีย์\nเสนียะ\nเสนียด\nเสบย\nเสบียง\nเสพ\nเสพย์\nเสเพล\nเสภา\nเสม็ด\nเสมหะ\nเสมอ\nเสมา\nเสมียน\nเสมือน\nเสย\nเสร็จ\nเสริด\nเสริม\nเสรี\nเสลด\nเสลบรรพต\nเสลา\nเสลี่ยง\nเสลือกสลน\nเสโล\nเสวก\nเสวกามาตย์\nเสวนะ\nเสวนา\nเสวย\nเสวียน\nเสสรวง\nเสสรวล\nเสา\nเส้า\nเสาร์\nเสารภย์\nเสารี\nเสาวคนธ์\nเสาวธาร\nเสาวภา\nเสาวภาคย์\nเสาวภาพ\nเสาวรภย์\nเสาวรส\nเสาวลักษณ์\nเสาวณิต\nเสาวนะ\nเสาวนา\nเสาวนีย์\nเสาหฤท\nเสาะ\nเสาะแสะ\nเสิร์จ\nเสิร์ฟ\nเสีย\nเสียง\nเสี่ยง\nเสียด\nเสี้ยน\nเสียบ\nเสียม\nเสี่ยม\nเสี้ยม\nเสียว\nเสี่ยว\nเสี้ยว\nเสือ\nเสื่อ\nเสื้อ\nเสือก\nเสื่อม\nแส\nแส่\nแส้\nแสก\nแสง\nแสด\nแสดง\nแสตมป์\nแสน\nแสนย์\nแสนยากร\nแสนยานุภาพ\nแสบ\nแสม\nแสยก\nแสยง\nแสยะ\nแสรก\nแสร้ง\nแสลง\nแสล้ม\nแสวง\nแสะ\nโสก\nโสกโดก\nโสกันต์\nโสโครก\nโสณฑ์\nโสณิ\nโสณี\nโสด\nโสดก\nโสดม\nโสดา\nโสดาบัน\nโสดาปัตติผล\nโสดาปัตติมรรค\nโสต\nโสตทัศนวัสดุ\nโสตทัศนอุปกรณ์\nโสตทัศนูปกรณ์\nโสตินทรีย์\nโสตถิ\nโสทก\nโสทร\nโสธก\nโสธนะ\nโสน\nโสภณ\nโสภา\nโสภี\nโสภิณี\nโสเภณี\nโสม\nโสมนัส\nโสมม\nโสมย์\nโสร่ง\nโสรจ\nโสรวาร\nโสโร\nโสวรรณ\nโสหุ้ย\nโสฬส\nใส\nใส่\nไส\nไส้\nไสย\nไสยา\nไสยาสน์\nไสร้\nไสว\nหก\nหกคะเมน\nหง\nหงก\nหงส์\nหงสบาท\nหงสรถ\nหงอ\nหงอก\nหง่อง\nหงองแหงง\nหงอด\nหงอน\nหง่อม\nหงอย\nหง่อย\nหงัก\nหงับ\nหง่าง\nหงาย\nหง่าว\nหงำ\nหงิก\nหงิง\nหงิม\nหงึก\nหงุงหงิง\nหงุดหงิด\nหงุบ\nหงุ่ย\nหญ้า\nหญ้าฝรั่น\nหญ้ายายเภา\nหญิง\nหญิบ\nหด\nหตะ\nหทัย\nหน\nหนวก\nหน่วง\nหนวด\nหน่วย\nหน่วยกิต\nหนอ\nหน่อ\nหนอก\nหนอง\nหนอน\nหนอนตายหยาก\nหน่อย\nหน็อยแน่\nหนัก\nหนัง\nหนังสติ๊ก\nหนังสือ\nหนั่น\nหนับ\nหนา\nหน้า\nหน่าง\nหนาด\nหนาน\nหนาม\nหน่าย\nหนาว\nหนำ\nหนำเลี้ยบ\nหนี\nหนี้\nหนีบ\nหนึก\nหนึ่ง\nหนึบ\nหนืด\nหนุ\nหนุน\nหนุบ\nหนุ่ม\nหนุ่ย\nหนู\nห่ม\nหมก\nหมด\nหม่น\nหมวก\nหมวด\nหมวน\nหมอ\nหม่อ\nหม้อ\nหมอก\nหมอง\nหม่อง\nหมอน\nหม่อน\nหมอบ\nหม่อม\nหมอย\nหม้อห้อม\nหมัก\nหมักหมม\nหมัด\nหมัน\nหมั่น\nหมั้น\nหมับ\nหมา\nหม่า\nหมาก\nหมากฮอส\nหมาง\nหมาด\nหมามุ่ย\nหมามุ้ย\nหมาย\nหม้าย\nหมาร่า\nหม่ำ\nหม้ำ\nหมิ่น\nหมี\nหมี่\nหมึก\nหมืน\nหมื่น\nหมุด\nหมุน\nหมุบ\nหมุบหมับ\nหมุบหมิบ\nหมุ่ย\nหมุยขาว\nหมู\nหมู่\nหมูหริ่ง\nหยก\nหย่ง\nหยด\nหยวก\nหยวบ\nหยอก\nหยอกเอิน\nหย็อกหย็อย\nหยอง\nหย็อง\nหย่อง\nหย็องกรอด\nหย็องแหย็ง\nหยอด\nหยอน\nหย่อน\nหย่อม\nหย็อมแหย็ม\nหย็อย\nหย่อย\nหยัก\nหยักไย่\nหยักเหยา\nหยัง\nหยั่ง\nหยังหยัง\nหยัด\nหยัน\nหยับ\nหยั่วเมือง\nหย่า\nหยากเยื่อ\nหยากไย่\nหยาด\nหยาบ\nหยาม\nหยาว\nหย้าว\nหยำเป\nหยำเหยอะ\nหยำแหยะ\nหยิก\nหยิ่ง\nหยิบ\nหยิม\nหยี\nหยี่\nหยุกหยิก\nหยุด\nหยุ่น\nหยุบ\nหยุมหยิม\nหยูกยา\nหโยดม\nหรคุณ\nหรณะ\nหรดาล\nหรดี\nหรรษ์\nหรรษา\nหรอ\nหรอก\nหร็อมแหร็ม\nหรอย\nหระ\nหรับ\nหรา\nหริ\nหริ่ง\nหริณะ\nหริต\nหริตกี\nหรีตกี\nหรี่\nหรีด\nหรือ\nหรุบ\nหรุบรู่\nหรุบหรู่\nหรุ่ม\nหรู\nหรูหรา\nหฤทัย\nหฤทย์\nหฤษฎ์\nหฤษฎี\nหฤหรรษ์\nหฤโหด\nหลง\nหลงใหล\nหลงจู๊\nหลด\nหลน\nหล่น\nหลบ\nหล่ม\nหลวง\nหลวม\nหลอ\nหล่อ\nหลอก\nหลอด\nหลอน\nหล็อน\nหล่อน\nหลอม\nหละ\nหละหลวม\nหลัก\nหลัง\nหลั่ง\nหลัด\nหลั่น\nหลับ\nหลัว\nหลา\nหล้า\nหลาก\nหลาน\nหลาบ\nหลาม\nหลาย\nหลาว\nหลิ่ง\nหลิท\nหลิน\nหลิม\nหลิว\nหลิ่ว\nหลี\nหลีก\nหลีโก\nหลีบ\nหลีฮื้อ\nหลืบ\nหลุกหลิก\nหลุด\nหลุน\nหลุบ\nหลุม\nหลุมพอ\nหลุมพี\nหลู่\nหวง\nห่วง\nห้วง\nหวด\nหวน\nห้วน\nหวย\nห้วย\nหวอ\nหวอด\nหวะ\nหวัง\nหวัด\nหวั่น\nหวันยิหวา\nหวัว\nหวัวร่อ\nหวัวเราะ\nหวา\nหว่า\nหว้า\nหวาก\nหว่าง\nหวาด\nหวาน\nหว่าน\nหวาม\nหวาย\nหวำ\nหวิด\nหวิว\nหวี\nหวี่\nหวีด\nหวือ\nหวุดหวิด\nหวูด\nหอ\nห่อ\nห้อ\nหอก\nหอง\nห้อง\nหอน\nห่อน\nหอบ\nหอม\nห้อม\nหอย\nห้อย\nหะ\nหะยี\nหะหาย\nหัก\nหัจญ์\nหัจญี\nหัช\nหัฏฐะ\nหัด\nหัต\nหัตถ์\nหัตถกรรม\nหัตถการ\nหัตถกิจ\nหัตถบาส\nหัตถพันธ์\nหัตถาภรณ์\nหัตถศาสตร์\nหัตถศิลป์\nหัตถศึกษา\nหัตถาจารย์\nหัตถินี\nหัตถี\nหัน\nหั่น\nหั้น\nหันตรา\nหับ\nหัย\nหัว\nหัวร่อ\nหัวเราะ\nหัส\nหัสดิน\nหัสดี\nหัสต์\nหัสตะ\nหา\nห่า\nห้า\nหาก\nหาง\nห่าง\nห้าง\nหาญ\nหาด\nห่าน\nหาบ\nหาม\nห่าม\nห้าม\nหาย\nหายใจ\nหายนะ\nหาร\nหารือ\nหาว\nห้าว\nหาสะ\nหำ\nห้ำ\nหิ้ง\nหิงคุ\nหิงสา\nหิงห้อย\nหิ่งห้อย\nหิ่งหาย\nหิด\nหิต\nหิตานุหิตประโยชน์\nหิน\nหิมพาน\nหิมพานต์\nหิมวัต\nหิมวันต์\nหิมวา\nหิมะ\nหิมาลัย\nหิรัญ\nหิรัญญิการ์\nหิรัญบัฏ\nหิรัณย์\nหิรัณยรัศมี\nหิริ\nหิว\nหิ้ว\nหี\nหีด\nหีนยาน\nหีบ\nหึ\nหึง\nหึ่ง\nหึงสา\nหืด\nหืน\nหื่น\nหือ\nหื้อ\nหุง\nหุน\nหุ่น\nหุ้น\nหุนหัน\nหุบ\nหุ้ม\nหุยฮา\nหู\nหู่\nหูก\nหูด\nเห\nเห่\nเหง\nเหง่ง\nเหงา\nเหง้า\nเหงื่อ\nเหงือก\nเห็จ\nเห็ด\nเหติ\nเหตุ\nเห็น\nเหน่ง\nเหนงนายพราน\nเหน็ดเหนื่อย\nเหน็บ\nเหน่อ\nเห็นอ้ม\nเหนอะ\nเหนอะหนะ\nเหน้า\nเหนาะ\nเหนียง\nเหนี่ยง\nเหนี่ยน\nเหนียม\nเหนียว\nเหนี่ยว\nเหนือ\nเหนื่อย\nเห็บ\nเหม\nเหม่\nเหม็ง\nเหม่ง\nเหม็น\nเหมวดี\nเหม่อ\nเหมันต์\nเหมันตฤดู\nเหมา\nเหมายัน\nเหมาะ\nเหมียว\nเหมี่ยว\nเหมือง\nเหมือด\nเหมือน\nเหมื่อย\nเหย\nเหยง\nเหย่อย\nเหยา\nเหย่า\nเหย้า\nเหยาะ\nเหยาะแหยะ\nเหยิง\nเหยิบ\nเหยียด\nเหยียบ\nเหยี่ยว\nเหยื่อ\nเหยือก\nเหรอ\nเหรอะ\nเหรัญญิก\nเหรา\nเหราะ\nเหรียญ\nเหล่\nเหล็ก\nเหลน\nเหลว\nเหลอ\nเหลา\nเหล่า\nเหล้า\nเหลาะแหละ\nเหลิง\nเหลิงเจิ้ง\nเหลียน\nเหลี่ยม\nเหลียว\nเหลือ\nเหลือก\nเหลือง\nเหลือบ\nเหลือม\nเหลื่อม\nเหว\nเหว่\nเหวง\nเหวย\nเหวอะ\nเหวอะหวะ\nเหวี่ยง\nเห่อ\nเหอะ\nเหะ\nเหะหะ\nเหา\nเห่า\nเหาะ\nเหิน\nเหิม\nเหี้ย\nเหียง\nเหียน\nเหี้ยน\nเหี้ยม\nเหี่ยว\nเหื่อ\nเหือด\nแห\nแห่\nแห้\nแหก\nแหง\nแหง่\nแห่ง\nแห้ง\nแหงแก๋\nแหง่ง\nแหงน\nแหน\nแห้น\nแหนง\nแหนบ\nแหนม\nแหบ\nแหม\nแหม่\nแหม่ม\nแหมะ\nแหย\nแหย่\nแหยง\nแหย่ง\nแหยม\nแหย็ม\nแหยะ\nแหล่\nแหลก\nแหล่ง\nแหลน\nแหลม\nแหละ\nแหว\nแห้ว\nแหวก\nแหว่ง\nแหวด\nแหวน\nแหวะ\nแหะ\nโห่\nโหง\nโหด\nโหน\nโหนก\nโหน่ง\nโหม\nโหม่ง\nโหมด\nโหย\nโหยกเหยก\nโหยง\nโหย่ง\nโหร\nโหรง\nโหรงเหรง\nโหรดาจารย์\nโหระพา\nโหรา\nโหราจารย์\nโหราศาสตร์\nโหล\nโหล่\nโหลงโจ้ง\nโหว\nโหว่\nโหว้\nโหวกเหวก\nโหวง\nโหวด\nโหวต\nให้\nใหญ่\nใหม่\nไห\nไห่\nไห้\nไหน\nไหม\nไหม้\nไหรณย์\nไหล\nไหล่\nไหว\nไหว้\nไหหลำ\nอก\nอกตเวทิตา\nอกตเวที\nอกตัญญุตา\nอกตัญญู\nอกนิษฐ์\nอกรณีย์\nอกรรมกริยา\nอกัปปิยวัตถุ\nอกัปปิยะ\nอกุศล\nอคติ\nอคาธ\nอโฆษะ\nองก์\nองค์\nองคชาต\nองคมนตรี\nองครักษ์\nองคาพยพ\nองคุลี\nองศ์\nองศา\nองอาจ\nองุ่น\nอจลา\nอจินตา\nอจินไตย\nอจิระ\nอเจลก\nอเจละ\nอชะ\nอชิน\nอชินี\nอชิระ\nอฏวี\nอณิ\nอณู\nอโณทัย\nอด\nอดิถี\nอดิเทพ\nอดิเรก\nอดิศร\nอดิศวร\nอดิศัย\nอดีต\nอดุล\nอดุลย์\nอติ\nอติชาต\nอติมานะ\nอติราช\nอติเรก\nอติสาร\nอถรรพเวท\nอาถรรพเวท\nอทระ\nอทินนาทาน\nอธรรม\nอธิ\nอธิกมาส\nอธิกรณ์\nอธิกวาร\nอธิกสุรทิน\nอธิการ\nอธิคม\nอธิฏฐาน\nอธิบดี\nอธิบาย\nอธิป\nอธิปไตย\nอธิมาตร\nอธิมุตติ\nอธิโมกข์\nอธิราช\nอธิวาส\nอธิวาสนะ\nอธิศีล\nอธิษฐาน\nอธึก\nอ้น\nอนงค์\nอนงคณะ\nอนงคเลขา\nอนธการ\nอนนต์\nอนยะ\nอนรรฆ\nอนรรถ\nอนล\nอนวัช\nอนัญ\nอนัตตา\nอนันต์\nอนันตริยกรรม\nอนัม\nอนาคต\nอนาคามิผล\nอนาคามิมรรค\nอนาคามี\nอนาจาร\nอนาถ\nอนาถา\nอนาทร\nอนาธิปไตย\nอนามัย\nอนามิกา\nอนารยชน\nอนารยธรรม\nอนารยะ\nอนาลัย\nอนำ\nอนิจ\nอนิจจัง\nอนิจจา\nอนิฏฐารมณ์\nอนิยต\nอนิยม\nอนิล\nอนิวรรต\nอนิวรรตน์\nอนีกะ\nอนีจะ\nอนึก\nอนึ่ง\nอนุ\nอนุกร\nอนุกรม\nอนุกรรมการ\nอนุกระเบียด\nอนุกาชาด\nอนุการ\nอนุกูล\nอนุคามิก\nอนุเคราะห์\nอนุจร\nอนุช\nอนุชน\nอนุชา\nอนุชาต\nอนุชิต\nอนุญาต\nอนุญาโตตุลาการ\nอนุตร\nอนุเถระ\nอนุทิน\nอนุบท\nอนุบาล\nอนุประโยค\nอนุปริญญา\nอนุปสัมบัน\nอนุปัสนา\nอนุพงศ์\nอนุพัทธ์\nอนุพันธ์\nอนุโพธ\nอนุภรรยา\nอนุภริยา\nอนุภาค\nอนุภาษ\nอนุมัติ\nอนุมาตรา\nอนุมาน\nอนุมูล\nอนุโมทนา\nอนุโยค\nอนุรักษ์\nอนุรักษนิยม\nอนุราช\nอนุราธ\nอนุราธะ\nอนุราธา\nอนุรูป\nอนุโลม\nอนุวงศ์\nอนุวรรตน์\nอนุวัต\nอนุวัตน์\nอนุวัตร\nอนุวัติ\nอนุวาต\nอนุศาสก\nอนุศาสน์\nอนุศาสนาจารย์\nอนุศิษฏ์\nอนุสติ\nอนุสนธิ\nอนุสร\nอนุสรณ์\nอนุสัญญา\nอนุสัย\nอนุสาวรีย์\nอนุสาสนี\nอเนก\nอเนกคุณ\nอเนกรรถประโยค\nอเนจอนาถ\nอโนชา\nอโนดาต\nอบ\nอบเชย\nอบาย\nอปจายนธรรม\nอปจายนมัย\nอปมงคล\nอปยศ\nอประไมย\nอปรัณณชาติ\nอปรา\nอปราชัย\nอปราชิต\nอปริมาณ\nอปลักษณ์\nอปโลกน์\nอปวาท\nอเปหิ\nอพพะ\nอพยพ\nอภัพ\nอภัย\nอภิ\nอภิฆาต\nอภิชฌา\nอภิชน\nอภิชนาธิปไตย\nอภิชัย\nอภิชาต\nอภิชิต\nอภิญญา\nอภิญญาณ\nอภิธรรม\nอภิธาน\nอภิไธย\nอภินันท์\nอภินันทนาการ\nอภินัย\nอภินิหาร\nอภิเนษกรมณ์\nอภิบาล\nอภิปรัชญา\nอภิปราย\nอภิมหาอำนาจ\nอภิมานะ\nอภิมุข\nอภิรดี\nอภิรติ\nอภิรมย์\nอภิรักษ์\nอภิราม\nอภิรุต\nอภิรุม\nอภิรูป\nอภิลักขิต\nอภิลักขิตสมัย\nอภิเลปน์\nอภิวันท์\nอภิวาท\nอภิวาทน์\nอภิเษก\nอภิสมโพธิ\nอภิสมัย\nอภิสมาจาร\nอภิสัมโพธิ\nอภิสัมโพธิญาณ\nอภิสิต\nอภิสิทธิ์\nอภูตะ\nอม\nอมพะนำ\nอ้ม\nอมตธรรม\nอมตบท\nอมตะ\nอมนุษย์\nอมร\nอมรา\nอมราวดี\nอมรินทร์\nอมเรนทร์\nอมเรศ\nอมฤต\nอมัตร\nอมาตย์\nอมาวสี\nอมาวสุ\nอมาวาสี\nอมิตร\nอเมริกัน\nอย่า\nอยาก\nอย่าง\nอยุทธ์\nอยู่\nอร\nอรชร\nอรชุน\nอรดี\nอรติ\nอรทัย\nอรไท\nอรนุช\nอรพินท์\nอรพิม\nอรรค\nอรรฆ\nอรรฆย์\nอรรจน์\nอรรณพ\nอรรถ\nอรรถกถา\nอรรถกถาจารย์\nอรรถาธิบาย\nอรรธ\nอรสุม\nอรหะ\nอรหัง\nอรหัต\nอรหัตผล\nอรหัตมรรค\nอรหัน\nอรหันต์\nอรหันตฆาต\nอร่อย\nอรัญ\nอรัญญิก\nอรัญวาส\nอรัญวาสี\nอรัณย์\nอราดี\nอร่าม\nอริ\nอรินทร์\nอริน\nอริยกะ\nอริยทรัพย์\nอริยบุคคล\nอริยผล\nอริยมรรค\nอริยสัจ\nอริยะ\nอรุณ\nอรุโณทัย\nอรุ่ม\nอรูป\nอลงกต\nอลงกรณ์\nอลงการ\nอลวน\nอลเวง\nอลหม่าน\nอล่องฉ่อง\nอลักเอลื่อ\nอลังการ\nอลัชชี\nอล่างฉ่าง\nอลิงค์\nอลึงค์\nอลึ่งฉึ่ง\nอโลหะ\nอ้วก\nอวกาศ\nอวจร\nอวชัย\nอวชาต\nอวด\nอวตาร\nอวน\nอ้วน\nอวบ\nอวมงคล\nอวย\nอวยวะ\nอวรรค\nอวรุทธ์\nอวรุทธก\nอวล\nอวสาน\nอวหาร\nอวัยวะ\nอวัสดา\nอวาจี\nอวิจี\nอวิชชา\nอวิญญาณกทรัพย์\nอวิญญู\nอวิรุทธ์\nอวิโรธน์\nอวิโรธนะ\nอวิหิงสา\nอวีจิ\nอเวจี\nอโศก\nอสงไขย\nอสนี\nอัสนี\nอสนีบาต\nอสภะ\nอสมการ\nอสมมาตร\nอสรพิษ\nอสังหาริมทรัพย์\nอสังหาริมะ\nอสัญกรรม\nอสัญญี\nอสัญแดหวา\nอสัตถพฤกษ์\nอัสสัตถพฤกษ์\nอสัตย์\nอสัมภิน\nอสัมภินพงศ์\nอสัมภินวงศ์\nอสิ\nอสิธารา\nอสิต\nอสิเลสะ\nอสีตยานุพยัญชนะ\nอสีติ\nอสุ\nอสุจิ\nอสุนีบาต\nอสุภ\nอสุรกาย\nอสุรา\nอสุรี\nอสุเรศ\nอสูร\nอเสกขบุคคล\nอเสกขะ\nอเสขบุคคล\nอเสขะ\nอหังการ\nอหิ\nอหิงสา\nอหิวาต์\nอหิวาตกโรค\nอหึงสา\nอเหตุกทิฐิ\nอโหสิ\nออ\nอ้อ\nอ๋อ\nออก\nออกซิเจน\nออกซิเดชัน\nออกไซด์\nออกญา\nอ่อง\nอ๋อง\nอ้องแอ้ง\nออเซาะ\nออด\nอ๊อด\nอ๊อดแอ๊ด\nอ่อน\nอ้อน\nออนซ์\nออนซอน\nอ้อนแอ้น\nออฟฟิศ\nออม\nอ่อม\nอ้อม\nออมชอม\nออมซอม\nอ้อมแอ้ม\nอ่อย\nอ้อย\nอ๋อย\nอ้อยส้อย\nอ้อยอิ่ง\nออสเมียม\nอ้อแอ้\nอ๊ะ\nอะคร้าว\nอะเคื้อ\nอะแจ\nอะเซทิลีน\nอะดรีนาลิน\nอะดุง\nอะตอม\nอะมีบา\nอะเมริเซียม\nอะร้าอร่าม\nอะไร\nอะลุ่มอล่วย\nอะลุ้มอล่วย\nอะลูมิเนียม\nอะหม\nอะไหล่\nอัก\nอั้ก\nอั๊ก\nอักกะ\nอักโกธะ\nอักขรวิธี\nอักขรวิบัติ\nอักขรสมัย\nอักขระ\nอักขรานุกรม\nอักขะ\nอักโข\nอักโขภิณี\nอักโขเภณี\nอักษร\nอักษะ\nอักเษาหิณี\nอักเสบ\nอักอ่วน\nอัคคะ\nอัคคิ\nอัคคี\nอัคนิ\nอัคนี\nอัคร\nอัครชายา\nอัครมเหสี\nอัครราชทูต\nอัครสมณทูต\nอัง\nอังก์\nอังกนะ\nอังกฤษ\nอังกะลุง\nอังกา\nอังกาบ\nอังกุระ\nอังกุศ\nอังกูร\nอังคณะ\nอังคณา\nอังคาร\nอังคาส\nอังคีรส\nอังคุฐ\nอังคุตรนิกาย\nอังฆาต\nอังแพลม\nอั้งยี่\nอั้งโล่\nอังศุ\nอังศุก\nอังศุธร\nอังศุมาลี\nอังสกุฏ\nอังสตรอม\nอังสนา\nอังสภาระ\nอังสะ\nอังสา\nอัจกลับ\nอัจจิ\nอัจจิมา\nอัจจุตะ\nอัจฉรา\nอัจฉริยบุคคล\nอัจฉริยภาพ\nอัจฉริยลักษณ์\nอัจฉริยลักษณะ\nอัจฉริยะ\nอัจนา\nอัชฌัตติก\nอัชฌา\nอัชฌาจาร\nอัชฌาศัย\nอัชฌาสัย\nอัญเดียรถีย์\nอัญมณี\nอัญขยม\nอัญชนะ\nอัญชลี\nอัญชัน\nอัญชุลี\nอัญเชิญ\nอัญญะ\nอัญดิตถีย์\nอัญเดียรถีย์\nอัญประกาศ\nอัญรูป\nอัฏ\nอัฏฐบาน\nอัฏฐะ\nอัฏฐังคิกมรรค\nอัฏนา\nอัฐ\nอัฐฬส\nอัฐเคราะห์\nอัฐทิศ\nอัฐบริขาร\nอัฐบาน\nอัฐม\nอัฐมี\nอัฐศก\nอัฐิ\nอัฒจันทร์\nอัฒภาค\nอัฒมาส\nอัฒรัตติ\nอัณฑโกส\nอัณฑชะ\nอัณฑะ\nอัณณพ\nอัด\nอัดแจ\nอัต\nอัตชีวประวัติ\nอัตนัย\nอัตภาพ\nอัตวินิบาตกรรม\nอัตคัด\nอัตตโนบท\nอัตตา\nอัตตาธิปไตย\nอัตถ์\nอัตถะ\nอัตโนมัติ\nอัตรชะ\nอัตรา\nอัตลัด\nอัททา\nอัทธ์\nอัทธา\nอัทธาน\nอัทธายุ\nอัธยาตมวิทยา\nอัธยาย\nอัธยาศัย\nอัน\nอั้น\nอั๋น\nอันดร\nอันดับ\nอันตกะ\nอันตกาล\nอันตะ\nอันตคุณ\nอันตรภาค\nอันตรวาสก\nอันตรธาน\nอันตรา\nอันตราย\nอันตรายิกธรรม\nอันติกะ\nอันติมสัจ\nอันติมะ\nอันเต\nอันโต\nอันเตปุริก\nอันเตวาสิก\nอันแถ้ง\nอันโทล\nอันธการ\nอันธพาล\nอันธิกา\nอันเวส\nอับ\nอับปาง\nอัปปะ\nอัปเปหิ\nอัปภาคย์\nอัปมงคล\nอัปยศ\nอัประมาณ\nอัประไมย\nอัปราชัย\nอัปรีย์\nอัปลักษณ์\nอัปสร\nอัพพุท\nอัพโพหาริก\nอัพภันดร\nอัพภาน\nอัพภาส\nอัพภูตธรรม\nอัพยากฤต\nอัมพฤกษ์\nอัมพาต\nอัมพวัน\nอัมพวา\nอัมพร\nอัมพา\nอัมพิละ\nอัมพุ\nอัมพุช\nอัมพุชินี\nอัมพุท\nอัยกา\nอัยการ\nอัยกี\nอัยยะ\nอัยยิกา\nอัลกุรอาน\nอัลตราไวโอเลต\nอั่ว\nอัศจรรย์\nอัศเจรีย์\nอัศว\nอัศวเมธ\nอัศวยุช\nอัศวานึก\nอัศวิน\nอัศวินี\nอัษฎมงคล\nอัษฏมงคล\nอัษฎางคิกมรรค\nอัษฎายุธ\nอัษฎาวุธ\nอัสสะ\nอัสดร\nอัสกัณ\nอัสดง\nอัสดงคต\nอัสมิมานะ\nอัสสนี\nอัสสานึก\nอัสสาสะ\nอัสสุ\nอา\nอ่า\nอ้า\nอ๋า\nอากร\nอากังขา\nอากัป\nอาการ\nอากาศ\nอากูล\nอาเกียรณ์\nอาขยาต\nอาขยาน\nอาคเนย์\nอาคม\nอาครหายณี\nอาคันตุกะ\nอาคันตุกภัต\nอาคันตุกวัตร\nอาคาร\nอาฆาต\nอ่าง\nอ้าง\nอางขนาง\nอ้างว้าง\nอาจ\nอาจม\nอาจริยวัตร\nอาจริยวาท\nอาจาด\nอาจาร\nอาจารย์\nอาจารี\nอาจิณ\nอาเจียน\nอาชญา\nอาชวะ\nอาชา\nอาชาไนย\nอาชีพ\nอาชีวศึกษา\nอาชีวะ\nอาชีวก\nอาญา\nอาฏานา\nอาณัติ\nอาณา\nอาด\nอาดูร\nอาดุลย์\nอาดูลย์\nอาเด๊ะ\nอาตมภาพ\nอาตมัน\nอาตมา\nอาถรรพ์\nอาถรรพณ์\nอาทร\nอาทิ\nอาทิจจวาร\nอาทิตย์\nอาทิตยมณฑล\nอาทิตยวาร\nอาทีนพ\nอาทีนวะ\nอาทึก\nอาเทศ\nอาเทสนา\nอาธรรม\nอาธรรม์\nอาธาน\nอาธาร\nอาน\nอ่าน\nอานน\nอานนท์\nอานันท์\nอานันทนะ\nอานัม\nอานาปานะ\nอานาปานัสสติ\nอานิสงส์\nอานุภาพ\nอานุภาวะ\nอาบ\nอาบัติ\nอาบัน\nอาปณกะ\nอาปณะ\nอาปะ\nอาโป\nอาปานะ\nอาพัทธ์\nอาพันธ์\nอาพันธนะ\nอาพาธ\nอาเพศ\nอาภรณ์\nอาภัพ\nอาภัสระ\nอาภา\nอาภาส\nอามลกะ\nอามัย\nอามิษ\nอามิส\nอาย\nอ้าย\nอายตนะ\nอายตะ\nอายน\nอายัด\nอายัต\nอายัน\nอายาจนะ\nอายานะ\nอายุ\nอายุตกะ\nอายุธ\nอายุรกรรม\nอายุรแพทย์\nอายุรเวช\nอายุรเวท\nอายุศาสตร์\nอายุษ\nอาร์กอน\nอารดี\nอารติ\nอาร์ต\nอารทรา\nอาร์ม\nอารมณ์\nอารยชน\nอารยชาติ\nอารยธรรม\nอารยประเทศ\nอารยะ\nอารยัน\nอาระ\nอารักขา\nอารักษ์\nอารัญ\nอารัณย์\nอารัญญิก\nอารัณยกะ\nอารัติ\nอารัมภ์\nอารัมภกถา\nอารัมภบท\nอารัมภะ\nอาราธน์\nอาราธนา\nอาราม\nอารามิก\nอารี\nอารุม\nอาลปนะ\nอาละวาด\nอาลักษณ์\nอาลัย\nอาลัว\nอาลี\nอาโลก\nอาว\nอ่าว\nอ้าว\nอาวรณ์\nอาวัชนาการ\nอาวัล\nอาวาส\nอาวาสิก\nอาวาหมงคล\nอาวาหะ\nอาวุต\nอาวุธ\nอาวุโส\nอาเวค\nอาศรม\nอาศรมบท\nอาศเลษา\nอาศัย\nอาศิรพจน์\nอาศิรพาท\nอาศิรวาท\nอาศุ\nอาเศียรพจน์\nอาเศียรพาท\nอาเศียรวาท\nอาษาฒ\nอาสน\nอาสน์\nอาสนะ\nอาสนศาลา\nอาสัญ\nอาสัตย์\nอาสา\nอาสาฬห์\nอาสาฬหบูชา\nอาสาฬหะ\nอาสิญจ์\nอาสิน\nอาหม\nอาหรับ\nอาหาร\nอาฬหก\nอำ\nอ่ำ\nอ้ำ\nอำแดง\nอำนนต์\nอำนรรฆ\nอำนวย\nอำนาจ\nอำนาถ\nอำนิฐ\nอำนิษฐ์\nอำปลัง\nอำพน\nอำพล\nอำพะนำ\nอำพัน\nอำไพ\nอำเภอ\nอำมร\nอำมฤคโชค\nอำมฤต\nอำมหิต\nอำมาตย์\nอำมาตยาธิปไตย\nอำยวน\nอำรุง\nอำลา\nอำอวม\nอ้ำอึ้ง\nอิก\nอิง\nอิงค์\nอิงอร\nอิจฉา\nอิฉัน\nอิชยา\nอิฏฐารมณ์\nอิฐ\nอิฐผล\nอิด\nอิตถี\nอิตเทรียม\nอิตเทอร์เบียม\nอิติวุตตกะ\nอิทธิ\nอิน\nอินซูลิน\nอินเดีย\nอินเดียนแดง\nอินเดียม\nอินท์\nอินทขีล\nอินทนิล\nอินทผลัม\nอินทร์\nอินทรธนู\nอินทรวงศ์\nอินทรวิเชียร\nอินทรศักดิ์\nอินทราณี\nอินทราภิเษก\nอินทรายุธ\nอินทรี\nอินทรีย์\nอินทรียสังวร\nอินทีวร\nอินทุ\nอินฟราเรด\nอินัง\nอิ่ม\nอิมัลชัน\nอิริเดียม\nอิริยา\nอิริยาบถ\nอิรุพเพท\nอิเล็กตรอน\nอิเล็กทรอนิกส์\nอิเล็กโทน\nอิศร\nอิศวร\nอิษฏ์\nอิษฏี\nอิส\nอิสตรี\nอิสัตรี\nอิสรภาพ\nอิสระ\nอิสริยยศ\nอิสริยะ\nอิสริยาภรณ์\nอิสลาม\nอิสสา\nอิสิ\nอิสี\nอิหม่าม\nอิหลักอิเหลื่อ\nอี\nอี่\nอี้\nอี๊\nอี๋\nอี๋อ๋อ\nอีก\nอีก้อ\nอีก๋อย\nอีโก้ง\nอีจู้\nอี๊ด\nอีเต้อ\nอีโต้\nอีทุบ\nอีเทอร์\nอีนุงตุงนัง\nอีนูน\nอีโน\nอีแปะ\nอีโปง\nอีเพา\nอีมู\nอีรม\nอีลุ้ม\nอีลุ่ยฉุยแฉก\nอีเลิ้ง\nอีศ\nอีศวร\nอีส\nอีสาน\nอีสุกอีใส\nอีหรอบ\nอีหลักอีเหลื่อ\nอีหลี\nอีหลุกขลุกขลัก\nอีหลุกขลุกขลุ่ย\nอีเห็น\nอีเหน็บ\nอีเหนียว\nอีเหละเขละขละ\nอีเหละเขะขะ\nอีโหน่อีเหน่\nอีโหลกโขลกเขลก\nอีแอ่น\nอึ\nอึก\nอึ้ก\nอึ๊ก\nอึกทึก\nอึกอัก\nอึง\nอึ่ง\nอึ้ง\nอึด\nอึดตะปือ\nอึ้ดทึ่ด\nอึน\nอืด\nอื่น\nอื้น\nอือ\nอื้อ\nอื้อฮือ\nอุ\nอุก\nอุกกา\nอุกกาบาต\nอุกฤษฏ์\nอุกลาบาต\nอุค\nอุคระ\nอุคหนิมิต\nอุโฆษ\nอุ้ง\nอุจ\nอุจจาระ\nอุจฉุ\nอุจเฉท\nอุจเฉททิฐิ\nอุจาด\nอุชุ\nอุฏฐาการ\nอุณหภูมิ\nอุณหะ\nอุณหาหาร\nอุณหิส\nอุณา\nอุณาโลม\nอุด\nอุดเตา\nอุดม\nอุดมการณ์\nอุดมคติ\nอุดมศึกษา\nอุดร\nอุดหนุน\nอุตดม\nอุตตมะ\nอุตมภาพ\nอุตมางค์\nอุตดร\nอุตรกุรุทวีป\nอุตตรายัน\nอุตรนิกาย\nอุตรผลคุนี\nอุตตรผลคุนี\nอุตรภัทรบท\nอุตตรภัทรบท\nอุตตรภัททะ\nอุตราภิมุข\nอุตราวรรต\nอุตราวัฏ\nอุตราษาฒ\nอุตตราสาฬหะ\nอุตราสงค์\nอุตตานภาพ\nอุตพิด\nอุตรา\nอุตริ\nอุตริมนุสธรรม\nอุตลุด\nอุตส่าห์\nอุตสาหกรรม\nอุตสาหะ\nอุตุ\nอุตุนิยม\nอุตุนิยมวิทยา\nอุทก\nอุทกธาร\nอุทกธารา\nอุทกภัย\nอุทกวิทยา\nอุทกศาสตร์\nอุทธรณ์\nอุทธัจ\nอุทยาน\nอุทร\nอุทริยะ\nอุทลุม\nอุทัช\nอุทัย\nอุทาน\nอุทาร\nอุทาหรณ์\nอุทิศ\nอุทุมพร\nอุเทศ\nอุเทสิกเจดีย์\nอุธัจ\nอุ่น\nอุบ\nอุบล\nอุบะ\nอุบ๊ะ\nอุบัติ\nอุบาท\nอุบาทว์\nอุบาย\nอุบาสก\nอุบาสิกา\nอุเบกขา\nอุโบสถ\nอุปกรณ์\nอุปกรม\nอุปการ\nอุปการะ\nอุปการี\nอุปกิเลส\nอุปจาร\nอุปถัมภ์\nอุปถัมภก\nอุปทม\nอุปทูต\nอุปเทศ\nอุปเท่ห์\nอุปธิ\nอุปนัย\nอุปนิกขิต\nอุปนิษัท\nอุปนิสัย\nอุปบัติ\nอุปปาติกะ\nอุปพัทธ์\nอุปพันธ์\nอุปโภค\nอุปมา\nอุปมาน\nอุปไมย\nอุปยุวราช\nอุปรากร\nอุปราคา\nอุปราช\nอุปริ\nอุปริมปริยาย\nอุปโลกน์\nอุปเวท\nอุปสมบท\nอุปสมบัน\nอุปสัมบัน\nอุปสรรค\nอุปสัมปทา\nอุปฮาด\nอุปัชฌาย์\nอุปัชฌายวัตร\nอุปัชฌายะ\nอุปัฏฐาก\nอุปัฏฐานะ\nอุปัทวะ\nอุปัทวันตราย\nอุปาทาน\nอุปาหนา\nอุภัย\nอุ้ม\nอุมงค์\nอุโมงค์\nอุย\nอุ่ย\nอุ้ย\nอุ๊ย\nอุยยาน\nอุยยาม\nอุรณะ\nอุรพี\nอุระ\nอุรังอุตัง\nอุรัจฉัท\nอุรัจฉทะ\nอุรา\nอุรุ\nอุไร\nอุลกมณี\nอุลโลจ\nอุลามก\nอุลิด\nอุโลก\nอุแว้\nอุษณกร\nอุษณกาล\nอุษณรัศมี\nอุษณรุจี\nอุษณาการ\nอุษณีษ์\nอุษมะ\nอุษมัน\nอุษา\nอุษาโยค\nอุสภ\nอุสส่าห์\nอุสสาหะ\nอุสา\nอุสุ\nอุสุภ\nอุสุภราช\nอุสุม\nอุหรับ\nอุหลบ\nอุเหม่\nอุฬาร\nอู\nอู่\nอู้\nอูฐ\nอูด\nอูม\nอูย\nอูรุ\nอู๋อี๋\nเอ\nเอ้\nเอ๊\nเอก\nเอกเขนก\nเอกซเรย์\nเอกรรถประโยค\nเอกัคตา\nเอกังสพยากรณ์\nเอกังสวาที\nเอกา\nเอ้กา\nเอกาธิปไตย\nเอเคอร์\nเอง\nเอ็ง\nเอ๋ง\nเอ็ด\nเอ็ดตะโร\nเอดส์\nเอตทัคคะ\nเอ้เต\nเอทิล\nเอน\nเอ็น\nเอนไซม์\nเอ็นดู\nเอ็นอ่อน\nเอม\nเอ็มบริโอ\nเอย\nเอ่ย\nเอ๊ย\nเอ๋ย\nเอร็ดอร่อย\nเอราวัณ\nเอว\nเอ๊ว\nเอวัง\nเอฬกะ\nเอฬา\nเออ\nเอ่อ\nเออร์เบียม\nเอ้อระเหย\nเอ้อเร้อ\nเอ้อเฮอ\nเอ๊ะ\nเอะใจ\nเอะอะ\nเอะอะมะเทิ่ง\nเอา\nเอาทาร\nเอาทารย์\nเอารส\nเอาฬาร\nเอาะลาย\nเอิก\nเอิกเกริก\nเอิ้น\nเอิบ\nเอียง\nเอี้ยง\nเอียด\nเอี๊ยด\nเอียน\nเอี่ยน\nเอี่ยม\nเอี๊ยม\nเอี้ยมจุ๊น\nเอี้ยมเฟี้ยม\nเอี่ยว\nเอี้ยว\nเอื้อ\nเอื๊อก\nเอื้อง\nเอือด\nเอือน\nเอื้อน\nเอือม\nเอื้อม\nเอื่อย\nเอื้อย\nแอ\nแอ้\nแอ๋\nแอก\nแอกทิเนียม\nแอ่ง\nแอ้งแม้ง\nแอด\nแอ้ด\nแอ๊ด\nแอ่น\nแอนติเจน\nแอนติบอดี\nแอนติอิเล็กตรอน\nแอโนด\nแอบ\nแอม\nแอ้ม\nแอมแปร์\nแอมมิเตอร์\nแอมโมเนีย\nแอร่ม\nแอลกอฮอล์\nแอลฟา\nแอว\nแอ่ว\nแอ้วแซ่ว\nแอสทาทีน\nแอสไพริน\nแอสฟัลต์\nแอหนัง\nแออัด\nโอ\nโอ่\nโอ้\nโอ๋\nโอก\nโอ้ก\nโอ้กอ้าก\nโอ๊ก\nโอกาส\nโอฆชล\nโอฆสงสาร\nโอฆะ\nโอ่ง\nโองการ\nโองโขดง\nโอชะ\nโอชา\nโอโซน\nโอฐ\nโอด\nโอ๊ต\nโอตตัปปะ\nโอทนะ\nโอน\nโอบ\nโอปปาติกะ\nโอภา\nโอภาส\nโอม\nโอย\nโอ๊ย\nโอรส\nโอละพ่อ\nโอลิมปิก\nโอวาท\nโอษฐ์\nโอษฐชะ\nโอษฐภัย\nโอสถ\nโอห์ม\nโอหัง\nโอฬาร\nโอฬาริก\nโอฬารึก\nโอ้เอ้\nโอเอซิส\nโอ้โฮ\nไอ\nไอ้\nไอโซโทป\nไอน์สไตเนียม\nไอยรา\nไอยเรศ\nไอราพต\nไอราวัณ\nไอราวัต\nไอศกรีม\nไอศวรรย์\nไอศุริยสมบัติ\nไอศูรย์\nไอออน\nไอโอดีน\nฮกเกี้ยน\nฮด\nฮวงซุ้ย\nฮวน\nฮ้วนหมู\nฮวบ\nฮ่อ\nฮ้อ\nฮอกกี้\nฮอด\nฮ่อม\nฮ่อยจ๊อ\nฮอร์โมน\nฮอลแลนด์\nฮอลันดา\nฮะ\nฮะเบส\nฮะเรีย\nฮัก\nฮังเล\nฮัจญ์\nฮัจญะฮ์\nฮัจญี\nฮั่น\nฮั้ว\nฮา\nฮ้า\nฮ่างหลวง\nฮาจญ์\nฮาม\nฮาเร็ม\nฮาห์เนียม\nฮิจเราะห์\nฮินดู\nฮิปโปโปเตมัส\nฮิสทีเรีย\nฮีเลียม\nฮึ\nฮึก\nฮึด\nฮึดฮัด\nฮึ่ม\nฮึย\nฮึ่ย\nฮืดฮาด\nฮือ\nฮื่อ\nฮื้อ\nฮื้อฉี่\nฮุด\nฮุบ\nฮุยเลฮุย\nฮู้\nฮูก\nฮูม\nเฮ\nเฮฮา\nเฮกตาร์\nเฮกโตกรัม\nเฮกโตเมตร\nเฮกโตลิตร\nเฮง\nเฮ็ด\nเฮโมโกลบิน\nเฮย\nเฮ่ย\nเฮ้ย\nเฮโรอีน\nเฮลิคอปเตอร์\nเฮโล\nเฮละโล\nเฮ้ว\nเฮอ\nเฮ่อ\nเฮ้อ\nเฮอริเคน\nเฮิรตซ์\nเฮี้ยน\nเฮี้ยบ\nเฮี้ยว\nเฮือก\nเฮือน\nแฮ\nแฮ่\nแฮก\nแฮ่กึ๊น\nแฮนด์บอล\nแฮฟเนียม\nแฮม\nแฮะ\nโฮ\nโฮก\nโฮ่ง\nโฮ้ง\nโฮเต็ล\nโฮลเมียม\nโฮะ\nไฮ้\nไฮโกรมิเตอร์\nไฮดรา\nไฮโดร\nไฮโดรคาร์บอน\nไฮโดรเจน\nไฮโดรมิเตอร์\nไฮไฟ\nไฮโล\nไฮฮี\n" .split(/[\r\n]+/) .filter(function (w) { return w.length > 1; }) this.addWords(words, false) } if(finalize){ this.finalizeDict(); } }, dictSeek: function (l, r, ch, strOffset, pos) { var ans = null; while (l <= r) { var m = Math.floor((l + r) / 2), dict_item = this.dict[m], len = dict_item.length; if (len <= strOffset) { l = m + 1; } else { var ch_ = dict_item[strOffset]; if (ch_ < ch) { l = m + 1; } else if (ch_ > ch) { r = m - 1; } else { ans = m; if (pos == LEFT) { r = m - 1; } else { l = m + 1; } } } } return ans; }, isFinal: function (acceptor) { return this.dict[acceptor.l].length == acceptor.strOffset; }, createAcceptor: function () { return { l: 0, r: this.dict.length - 1, strOffset: 0, isFinal: false, dict: this, transit: function (ch) { return this.dict.transit(this, ch); }, isError: false, tag: "DICT", w: 1, type: "DICT" }; }, transit: function (acceptor, ch) { var l = this.dictSeek(acceptor.l, acceptor.r, ch, acceptor.strOffset, LEFT); if (l !== null) { var r = this.dictSeek(l, acceptor.r, ch, acceptor.strOffset, RIGHT); acceptor.l = l; acceptor.r = r; acceptor.strOffset++; acceptor.isFinal = this.isFinal(acceptor); } else { acceptor.isError = true; } return acceptor; }, sortuniq: function(a){ return a.sort().filter(function(item, pos, arr){ return !pos || item != arr[pos - 1]; }) }, flatten: function(a){ //[[1,2],[3]] -> [1,2,3] return [].concat.apply([], a); } }; module.exports = WordcutDict; }).call(this,"/dist/tmp") },{"glob":16,"path":22}],3:[function(require,module,exports){ var WordRule = { createAcceptor: function(tag) { if (tag["WORD_RULE"]) return null; return {strOffset: 0, isFinal: false, transit: function(ch) { var lch = ch.toLowerCase(); if (lch >= "a" && lch <= "z") { this.isFinal = true; this.strOffset++; } else { this.isError = true; } return this; }, isError: false, tag: "WORD_RULE", type: "WORD_RULE", w: 1}; } }; var NumberRule = { createAcceptor: function(tag) { if (tag["NUMBER_RULE"]) return null; return {strOffset: 0, isFinal: false, transit: function(ch) { if (ch >= "0" && ch <= "9") { this.isFinal = true; this.strOffset++; } else { this.isError = true; } return this; }, isError: false, tag: "NUMBER_RULE", type: "NUMBER_RULE", w: 1}; } }; var SpaceRule = { tag: "SPACE_RULE", createAcceptor: function(tag) { if (tag["SPACE_RULE"]) return null; return {strOffset: 0, isFinal: false, transit: function(ch) { if (ch == " " || ch == "\t" || ch == "\r" || ch == "\n" || ch == "\u00A0" || ch=="\u2003"//nbsp and emsp ) { this.isFinal = true; this.strOffset++; } else { this.isError = true; } return this; }, isError: false, tag: SpaceRule.tag, w: 1, type: "SPACE_RULE"}; } } var SingleSymbolRule = { tag: "SINSYM", createAcceptor: function(tag) { return {strOffset: 0, isFinal: false, transit: function(ch) { if (this.strOffset == 0 && ch.match(/^[\@\(\)\/\,\-\."`]$/)) { this.isFinal = true; this.strOffset++; } else { this.isError = true; } return this; }, isError: false, tag: "SINSYM", w: 1, type: "SINSYM"}; } } var LatinRules = [WordRule, SpaceRule, SingleSymbolRule, NumberRule]; module.exports = LatinRules; },{}],4:[function(require,module,exports){ var _ = require("underscore") , WordcutCore = require("./wordcut_core"); var PathInfoBuilder = { /* buildByPartAcceptors: function(path, acceptors, i) { var var genInfos = partAcceptors.reduce(function(genInfos, acceptor) { }, []); return genInfos; } */ buildByAcceptors: function(path, finalAcceptors, i) { var self = this; var infos = finalAcceptors.map(function(acceptor) { var p = i - acceptor.strOffset + 1 , _info = path[p]; var info = {p: p, mw: _info.mw + (acceptor.mw === undefined ? 0 : acceptor.mw), w: acceptor.w + _info.w, unk: (acceptor.unk ? acceptor.unk : 0) + _info.unk, type: acceptor.type}; if (acceptor.type == "PART") { for(var j = p + 1; j <= i; j++) { path[j].merge = p; } info.merge = p; } return info; }); return infos.filter(function(info) { return info; }); }, fallback: function(path, leftBoundary, text, i) { var _info = path[leftBoundary]; if (text[i].match(/[\u0E48-\u0E4E]/)) { if (leftBoundary != 0) leftBoundary = path[leftBoundary].p; return {p: leftBoundary, mw: 0, w: 1 + _info.w, unk: 1 + _info.unk, type: "UNK"}; /* } else if(leftBoundary > 0 && path[leftBoundary].type !== "UNK") { leftBoundary = path[leftBoundary].p; return {p: leftBoundary, w: 1 + _info.w, unk: 1 + _info.unk, type: "UNK"}; */ } else { return {p: leftBoundary, mw: _info.mw, w: 1 + _info.w, unk: 1 + _info.unk, type: "UNK"}; } }, build: function(path, finalAcceptors, i, leftBoundary, text) { var basicPathInfos = this.buildByAcceptors(path, finalAcceptors, i); if (basicPathInfos.length > 0) { return basicPathInfos; } else { return [this.fallback(path, leftBoundary, text, i)]; } } }; module.exports = function() { return _.clone(PathInfoBuilder); } },{"./wordcut_core":8,"underscore":25}],5:[function(require,module,exports){ var _ = require("underscore"); var PathSelector = { selectPath: function(paths) { var path = paths.reduce(function(selectedPath, path) { if (selectedPath == null) { return path; } else { if (path.unk < selectedPath.unk) return path; if (path.unk == selectedPath.unk) { if (path.mw < selectedPath.mw) return path if (path.mw == selectedPath.mw) { if (path.w < selectedPath.w) return path; } } return selectedPath; } }, null); return path; }, createPath: function() { return [{p:null, w:0, unk:0, type: "INIT", mw:0}]; } }; module.exports = function() { return _.clone(PathSelector); }; },{"underscore":25}],6:[function(require,module,exports){ function isMatch(pat, offset, ch) { if (pat.length <= offset) return false; var _ch = pat[offset]; return _ch == ch || (_ch.match(/[กข]/) && ch.match(/[ก-ฮ]/)) || (_ch.match(/[มบ]/) && ch.match(/[ก-ฮ]/)) || (_ch.match(/\u0E49/) && ch.match(/[\u0E48-\u0E4B]/)); } var Rule0 = { pat: "เหก็ม", createAcceptor: function(tag) { return {strOffset: 0, isFinal: false, transit: function(ch) { if (isMatch(Rule0.pat, this.strOffset,ch)) { this.isFinal = (this.strOffset + 1 == Rule0.pat.length); this.strOffset++; } else { this.isError = true; } return this; }, isError: false, tag: "THAI_RULE", type: "THAI_RULE", w: 1}; } }; var PartRule = { createAcceptor: function(tag) { return {strOffset: 0, patterns: [ "แก", "เก", "ก้", "กก์", "กา", "กี", "กิ", "กืก" ], isFinal: false, transit: function(ch) { var offset = this.strOffset; this.patterns = this.patterns.filter(function(pat) { return isMatch(pat, offset, ch); }); if (this.patterns.length > 0) { var len = 1 + offset; this.isFinal = this.patterns.some(function(pat) { return pat.length == len; }); this.strOffset++; } else { this.isError = true; } return this; }, isError: false, tag: "PART", type: "PART", unk: 1, w: 1}; } }; var ThaiRules = [Rule0, PartRule]; module.exports = ThaiRules; },{}],7:[function(require,module,exports){ var sys = require("sys") , WordcutDict = require("./dict") , WordcutCore = require("./wordcut_core") , PathInfoBuilder = require("./path_info_builder") , PathSelector = require("./path_selector") , Acceptors = require("./acceptors") , latinRules = require("./latin_rules") , thaiRules = require("./thai_rules") , _ = require("underscore"); var Wordcut = Object.create(WordcutCore); Wordcut.defaultPathInfoBuilder = PathInfoBuilder; Wordcut.defaultPathSelector = PathSelector; Wordcut.defaultAcceptors = Acceptors; Wordcut.defaultLatinRules = latinRules; Wordcut.defaultThaiRules = thaiRules; Wordcut.defaultDict = WordcutDict; Wordcut.initNoDict = function(dict_path) { var self = this; self.pathInfoBuilder = new self.defaultPathInfoBuilder; self.pathSelector = new self.defaultPathSelector; self.acceptors = new self.defaultAcceptors; self.defaultLatinRules.forEach(function(rule) { self.acceptors.creators.push(rule); }); self.defaultThaiRules.forEach(function(rule) { self.acceptors.creators.push(rule); }); }; Wordcut.init = function(dict_path, withDefault, additionalWords) { withDefault = withDefault || false; this.initNoDict(); var dict = _.clone(this.defaultDict); dict.init(dict_path, withDefault, additionalWords); this.acceptors.creators.push(dict); }; module.exports = Wordcut; },{"./acceptors":1,"./dict":2,"./latin_rules":3,"./path_info_builder":4,"./path_selector":5,"./thai_rules":6,"./wordcut_core":8,"sys":28,"underscore":25}],8:[function(require,module,exports){ var WordcutCore = { buildPath: function(text) { var self = this , path = self.pathSelector.createPath() , leftBoundary = 0; self.acceptors.reset(); for (var i = 0; i < text.length; i++) { var ch = text[i]; self.acceptors.transit(ch); var possiblePathInfos = self .pathInfoBuilder .build(path, self.acceptors.getFinalAcceptors(), i, leftBoundary, text); var selectedPath = self.pathSelector.selectPath(possiblePathInfos) path.push(selectedPath); if (selectedPath.type !== "UNK") { leftBoundary = i; } } return path; }, pathToRanges: function(path) { var e = path.length - 1 , ranges = []; while (e > 0) { var info = path[e] , s = info.p; if (info.merge !== undefined && ranges.length > 0) { var r = ranges[ranges.length - 1]; r.s = info.merge; s = r.s; } else { ranges.push({s:s, e:e}); } e = s; } return ranges.reverse(); }, rangesToText: function(text, ranges, delimiter) { return ranges.map(function(r) { return text.substring(r.s, r.e); }).join(delimiter); }, cut: function(text, delimiter) { var path = this.buildPath(text) , ranges = this.pathToRanges(path); return this .rangesToText(text, ranges, (delimiter === undefined ? "|" : delimiter)); }, cutIntoRanges: function(text, noText) { var path = this.buildPath(text) , ranges = this.pathToRanges(path); if (!noText) { ranges.forEach(function(r) { r.text = text.substring(r.s, r.e); }); } return ranges; }, cutIntoArray: function(text) { var path = this.buildPath(text) , ranges = this.pathToRanges(path); return ranges.map(function(r) { return text.substring(r.s, r.e) }); } }; module.exports = WordcutCore; },{}],9:[function(require,module,exports){ // http://wiki.commonjs.org/wiki/Unit_Testing/1.0 // // THIS IS NOT TESTED NOR LIKELY TO WORK OUTSIDE V8! // // Originally from narwhal.js (http://narwhaljs.org) // Copyright (c) 2009 Thomas Robinson <280north.com> // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the 'Software'), to // deal in the Software without restriction, including without limitation the // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or // sell copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // when used in node, this will actually load the util module we depend on // versus loading the builtin util module as happens otherwise // this is a bug in node module loading as far as I am concerned var util = require('util/'); var pSlice = Array.prototype.slice; var hasOwn = Object.prototype.hasOwnProperty; // 1. The assert module provides functions that throw // AssertionError's when particular conditions are not met. The // assert module must conform to the following interface. var assert = module.exports = ok; // 2. The AssertionError is defined in assert. // new assert.AssertionError({ message: message, // actual: actual, // expected: expected }) assert.AssertionError = function AssertionError(options) { this.name = 'AssertionError'; this.actual = options.actual; this.expected = options.expected; this.operator = options.operator; if (options.message) { this.message = options.message; this.generatedMessage = false; } else { this.message = getMessage(this); this.generatedMessage = true; } var stackStartFunction = options.stackStartFunction || fail; if (Error.captureStackTrace) { Error.captureStackTrace(this, stackStartFunction); } else { // non v8 browsers so we can have a stacktrace var err = new Error(); if (err.stack) { var out = err.stack; // try to strip useless frames var fn_name = stackStartFunction.name; var idx = out.indexOf('\n' + fn_name); if (idx >= 0) { // once we have located the function frame // we need to strip out everything before it (and its line) var next_line = out.indexOf('\n', idx + 1); out = out.substring(next_line + 1); } this.stack = out; } } }; // assert.AssertionError instanceof Error util.inherits(assert.AssertionError, Error); function replacer(key, value) { if (util.isUndefined(value)) { return '' + value; } if (util.isNumber(value) && !isFinite(value)) { return value.toString(); } if (util.isFunction(value) || util.isRegExp(value)) { return value.toString(); } return value; } function truncate(s, n) { if (util.isString(s)) { return s.length < n ? s : s.slice(0, n); } else { return s; } } function getMessage(self) { return truncate(JSON.stringify(self.actual, replacer), 128) + ' ' + self.operator + ' ' + truncate(JSON.stringify(self.expected, replacer), 128); } // At present only the three keys mentioned above are used and // understood by the spec. Implementations or sub modules can pass // other keys to the AssertionError's constructor - they will be // ignored. // 3. All of the following functions must throw an AssertionError // when a corresponding condition is not met, with a message that // may be undefined if not provided. All assertion methods provide // both the actual and expected values to the assertion error for // display purposes. function fail(actual, expected, message, operator, stackStartFunction) { throw new assert.AssertionError({ message: message, actual: actual, expected: expected, operator: operator, stackStartFunction: stackStartFunction }); } // EXTENSION! allows for well behaved errors defined elsewhere. assert.fail = fail; // 4. Pure assertion tests whether a value is truthy, as determined // by !!guard. // assert.ok(guard, message_opt); // This statement is equivalent to assert.equal(true, !!guard, // message_opt);. To test strictly for the value true, use // assert.strictEqual(true, guard, message_opt);. function ok(value, message) { if (!value) fail(value, true, message, '==', assert.ok); } assert.ok = ok; // 5. The equality assertion tests shallow, coercive equality with // ==. // assert.equal(actual, expected, message_opt); assert.equal = function equal(actual, expected, message) { if (actual != expected) fail(actual, expected, message, '==', assert.equal); }; // 6. The non-equality assertion tests for whether two objects are not equal // with != assert.notEqual(actual, expected, message_opt); assert.notEqual = function notEqual(actual, expected, message) { if (actual == expected) { fail(actual, expected, message, '!=', assert.notEqual); } }; // 7. The equivalence assertion tests a deep equality relation. // assert.deepEqual(actual, expected, message_opt); assert.deepEqual = function deepEqual(actual, expected, message) { if (!_deepEqual(actual, expected)) { fail(actual, expected, message, 'deepEqual', assert.deepEqual); } }; function _deepEqual(actual, expected) { // 7.1. All identical values are equivalent, as determined by ===. if (actual === expected) { return true; } else if (util.isBuffer(actual) && util.isBuffer(expected)) { if (actual.length != expected.length) return false; for (var i = 0; i < actual.length; i++) { if (actual[i] !== expected[i]) return false; } return true; // 7.2. If the expected value is a Date object, the actual value is // equivalent if it is also a Date object that refers to the same time. } else if (util.isDate(actual) && util.isDate(expected)) { return actual.getTime() === expected.getTime(); // 7.3 If the expected value is a RegExp object, the actual value is // equivalent if it is also a RegExp object with the same source and // properties (`global`, `multiline`, `lastIndex`, `ignoreCase`). } else if (util.isRegExp(actual) && util.isRegExp(expected)) { return actual.source === expected.source && actual.global === expected.global && actual.multiline === expected.multiline && actual.lastIndex === expected.lastIndex && actual.ignoreCase === expected.ignoreCase; // 7.4. Other pairs that do not both pass typeof value == 'object', // equivalence is determined by ==. } else if (!util.isObject(actual) && !util.isObject(expected)) { return actual == expected; // 7.5 For all other Object pairs, including Array objects, equivalence is // determined by having the same number of owned properties (as verified // with Object.prototype.hasOwnProperty.call), the same set of keys // (although not necessarily the same order), equivalent values for every // corresponding key, and an identical 'prototype' property. Note: this // accounts for both named and indexed properties on Arrays. } else { return objEquiv(actual, expected); } } function isArguments(object) { return Object.prototype.toString.call(object) == '[object Arguments]'; } function objEquiv(a, b) { if (util.isNullOrUndefined(a) || util.isNullOrUndefined(b)) return false; // an identical 'prototype' property. if (a.prototype !== b.prototype) return false; // if one is a primitive, the other must be same if (util.isPrimitive(a) || util.isPrimitive(b)) { return a === b; } var aIsArgs = isArguments(a), bIsArgs = isArguments(b); if ((aIsArgs && !bIsArgs) || (!aIsArgs && bIsArgs)) return false; if (aIsArgs) { a = pSlice.call(a); b = pSlice.call(b); return _deepEqual(a, b); } var ka = objectKeys(a), kb = objectKeys(b), key, i; // having the same number of owned properties (keys incorporates // hasOwnProperty) if (ka.length != kb.length) return false; //the same set of keys (although not necessarily the same order), ka.sort(); kb.sort(); //~~~cheap key test for (i = ka.length - 1; i >= 0; i--) { if (ka[i] != kb[i]) return false; } //equivalent values for every corresponding key, and //~~~possibly expensive deep test for (i = ka.length - 1; i >= 0; i--) { key = ka[i]; if (!_deepEqual(a[key], b[key])) return false; } return true; } // 8. The non-equivalence assertion tests for any deep inequality. // assert.notDeepEqual(actual, expected, message_opt); assert.notDeepEqual = function notDeepEqual(actual, expected, message) { if (_deepEqual(actual, expected)) { fail(actual, expected, message, 'notDeepEqual', assert.notDeepEqual); } }; // 9. The strict equality assertion tests strict equality, as determined by ===. // assert.strictEqual(actual, expected, message_opt); assert.strictEqual = function strictEqual(actual, expected, message) { if (actual !== expected) { fail(actual, expected, message, '===', assert.strictEqual); } }; // 10. The strict non-equality assertion tests for strict inequality, as // determined by !==. assert.notStrictEqual(actual, expected, message_opt); assert.notStrictEqual = function notStrictEqual(actual, expected, message) { if (actual === expected) { fail(actual, expected, message, '!==', assert.notStrictEqual); } }; function expectedException(actual, expected) { if (!actual || !expected) { return false; } if (Object.prototype.toString.call(expected) == '[object RegExp]') { return expected.test(actual); } else if (actual instanceof expected) { return true; } else if (expected.call({}, actual) === true) { return true; } return false; } function _throws(shouldThrow, block, expected, message) { var actual; if (util.isString(expected)) { message = expected; expected = null; } try { block(); } catch (e) { actual = e; } message = (expected && expected.name ? ' (' + expected.name + ').' : '.') + (message ? ' ' + message : '.'); if (shouldThrow && !actual) { fail(actual, expected, 'Missing expected exception' + message); } if (!shouldThrow && expectedException(actual, expected)) { fail(actual, expected, 'Got unwanted exception' + message); } if ((shouldThrow && actual && expected && !expectedException(actual, expected)) || (!shouldThrow && actual)) { throw actual; } } // 11. Expected to throw an error: // assert.throws(block, Error_opt, message_opt); assert.throws = function(block, /*optional*/error, /*optional*/message) { _throws.apply(this, [true].concat(pSlice.call(arguments))); }; // EXTENSION! This is annoying to write outside this module. assert.doesNotThrow = function(block, /*optional*/message) { _throws.apply(this, [false].concat(pSlice.call(arguments))); }; assert.ifError = function(err) { if (err) {throw err;}}; var objectKeys = Object.keys || function (obj) { var keys = []; for (var key in obj) { if (hasOwn.call(obj, key)) keys.push(key); } return keys; }; },{"util/":28}],10:[function(require,module,exports){ 'use strict'; module.exports = balanced; function balanced(a, b, str) { if (a instanceof RegExp) a = maybeMatch(a, str); if (b instanceof RegExp) b = maybeMatch(b, str); var r = range(a, b, str); return r && { start: r[0], end: r[1], pre: str.slice(0, r[0]), body: str.slice(r[0] + a.length, r[1]), post: str.slice(r[1] + b.length) }; } function maybeMatch(reg, str) { var m = str.match(reg); return m ? m[0] : null; } balanced.range = range; function range(a, b, str) { var begs, beg, left, right, result; var ai = str.indexOf(a); var bi = str.indexOf(b, ai + 1); var i = ai; if (ai >= 0 && bi > 0) { begs = []; left = str.length; while (i >= 0 && !result) { if (i == ai) { begs.push(i); ai = str.indexOf(a, i + 1); } else if (begs.length == 1) { result = [ begs.pop(), bi ]; } else { beg = begs.pop(); if (beg < left) { left = beg; right = bi; } bi = str.indexOf(b, i + 1); } i = ai < bi && ai >= 0 ? ai : bi; } if (begs.length) { result = [ left, right ]; } } return result; } },{}],11:[function(require,module,exports){ var concatMap = require('concat-map'); var balanced = require('balanced-match'); module.exports = expandTop; var escSlash = '\0SLASH'+Math.random()+'\0'; var escOpen = '\0OPEN'+Math.random()+'\0'; var escClose = '\0CLOSE'+Math.random()+'\0'; var escComma = '\0COMMA'+Math.random()+'\0'; var escPeriod = '\0PERIOD'+Math.random()+'\0'; function numeric(str) { return parseInt(str, 10) == str ? parseInt(str, 10) : str.charCodeAt(0); } function escapeBraces(str) { return str.split('\\\\').join(escSlash) .split('\\{').join(escOpen) .split('\\}').join(escClose) .split('\\,').join(escComma) .split('\\.').join(escPeriod); } function unescapeBraces(str) { return str.split(escSlash).join('\\') .split(escOpen).join('{') .split(escClose).join('}') .split(escComma).join(',') .split(escPeriod).join('.'); } // Basically just str.split(","), but handling cases // where we have nested braced sections, which should be // treated as individual members, like {a,{b,c},d} function parseCommaParts(str) { if (!str) return ['']; var parts = []; var m = balanced('{', '}', str); if (!m) return str.split(','); var pre = m.pre; var body = m.body; var post = m.post; var p = pre.split(','); p[p.length-1] += '{' + body + '}'; var postParts = parseCommaParts(post); if (post.length) { p[p.length-1] += postParts.shift(); p.push.apply(p, postParts); } parts.push.apply(parts, p); return parts; } function expandTop(str) { if (!str) return []; // I don't know why Bash 4.3 does this, but it does. // Anything starting with {} will have the first two bytes preserved // but *only* at the top level, so {},a}b will not expand to anything, // but a{},b}c will be expanded to [a}c,abc]. // One could argue that this is a bug in Bash, but since the goal of // this module is to match Bash's rules, we escape a leading {} if (str.substr(0, 2) === '{}') { str = '\\{\\}' + str.substr(2); } return expand(escapeBraces(str), true).map(unescapeBraces); } function identity(e) { return e; } function embrace(str) { return '{' + str + '}'; } function isPadded(el) { return /^-?0\d/.test(el); } function lte(i, y) { return i <= y; } function gte(i, y) { return i >= y; } function expand(str, isTop) { var expansions = []; var m = balanced('{', '}', str); if (!m || /\$$/.test(m.pre)) return [str]; var isNumericSequence = /^-?\d+\.\.-?\d+(?:\.\.-?\d+)?$/.test(m.body); var isAlphaSequence = /^[a-zA-Z]\.\.[a-zA-Z](?:\.\.-?\d+)?$/.test(m.body); var isSequence = isNumericSequence || isAlphaSequence; var isOptions = m.body.indexOf(',') >= 0; if (!isSequence && !isOptions) { // {a},b} if (m.post.match(/,.*\}/)) { str = m.pre + '{' + m.body + escClose + m.post; return expand(str); } return [str]; } var n; if (isSequence) { n = m.body.split(/\.\./); } else { n = parseCommaParts(m.body); if (n.length === 1) { // x{{a,b}}y ==> x{a}y x{b}y n = expand(n[0], false).map(embrace); if (n.length === 1) { var post = m.post.length ? expand(m.post, false) : ['']; return post.map(function(p) { return m.pre + n[0] + p; }); } } } // at this point, n is the parts, and we know it's not a comma set // with a single entry. // no need to expand pre, since it is guaranteed to be free of brace-sets var pre = m.pre; var post = m.post.length ? expand(m.post, false) : ['']; var N; if (isSequence) { var x = numeric(n[0]); var y = numeric(n[1]); var width = Math.max(n[0].length, n[1].length) var incr = n.length == 3 ? Math.abs(numeric(n[2])) : 1; var test = lte; var reverse = y < x; if (reverse) { incr *= -1; test = gte; } var pad = n.some(isPadded); N = []; for (var i = x; test(i, y); i += incr) { var c; if (isAlphaSequence) { c = String.fromCharCode(i); if (c === '\\') c = ''; } else { c = String(i); if (pad) { var need = width - c.length; if (need > 0) { var z = new Array(need + 1).join('0'); if (i < 0) c = '-' + z + c.slice(1); else c = z + c; } } } N.push(c); } } else { N = concatMap(n, function(el) { return expand(el, false) }); } for (var j = 0; j < N.length; j++) { for (var k = 0; k < post.length; k++) { var expansion = pre + N[j] + post[k]; if (!isTop || isSequence || expansion) expansions.push(expansion); } } return expansions; } },{"balanced-match":10,"concat-map":13}],12:[function(require,module,exports){ },{}],13:[function(require,module,exports){ module.exports = function (xs, fn) { var res = []; for (var i = 0; i < xs.length; i++) { var x = fn(xs[i], i); if (isArray(x)) res.push.apply(res, x); else res.push(x); } return res; }; var isArray = Array.isArray || function (xs) { return Object.prototype.toString.call(xs) === '[object Array]'; }; },{}],14:[function(require,module,exports){ // Copyright Joyent, Inc. and other Node contributors. // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublicense, and/or sell copies of the Software, and to permit // persons to whom the Software is furnished to do so, subject to the // following conditions: // // The above copyright notice and this permission notice shall be included // in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // USE OR OTHER DEALINGS IN THE SOFTWARE. function EventEmitter() { this._events = this._events || {}; this._maxListeners = this._maxListeners || undefined; } module.exports = EventEmitter; // Backwards-compat with node 0.10.x EventEmitter.EventEmitter = EventEmitter; EventEmitter.prototype._events = undefined; EventEmitter.prototype._maxListeners = undefined; // By default EventEmitters will print a warning if more than 10 listeners are // added to it. This is a useful default which helps finding memory leaks. EventEmitter.defaultMaxListeners = 10; // Obviously not all Emitters should be limited to 10. This function allows // that to be increased. Set to zero for unlimited. EventEmitter.prototype.setMaxListeners = function(n) { if (!isNumber(n) || n < 0 || isNaN(n)) throw TypeError('n must be a positive number'); this._maxListeners = n; return this; }; EventEmitter.prototype.emit = function(type) { var er, handler, len, args, i, listeners; if (!this._events) this._events = {}; // If there is no 'error' event listener then throw. if (type === 'error') { if (!this._events.error || (isObject(this._events.error) && !this._events.error.length)) { er = arguments[1]; if (er instanceof Error) { throw er; // Unhandled 'error' event } throw TypeError('Uncaught, unspecified "error" event.'); } } handler = this._events[type]; if (isUndefined(handler)) return false; if (isFunction(handler)) { switch (arguments.length) { // fast cases case 1: handler.call(this); break; case 2: handler.call(this, arguments[1]); break; case 3: handler.call(this, arguments[1], arguments[2]); break; // slower default: len = arguments.length; args = new Array(len - 1); for (i = 1; i < len; i++) args[i - 1] = arguments[i]; handler.apply(this, args); } } else if (isObject(handler)) { len = arguments.length; args = new Array(len - 1); for (i = 1; i < len; i++) args[i - 1] = arguments[i]; listeners = handler.slice(); len = listeners.length; for (i = 0; i < len; i++) listeners[i].apply(this, args); } return true; }; EventEmitter.prototype.addListener = function(type, listener) { var m; if (!isFunction(listener)) throw TypeError('listener must be a function'); if (!this._events) this._events = {}; // To avoid recursion in the case that type === "newListener"! Before // adding it to the listeners, first emit "newListener". if (this._events.newListener) this.emit('newListener', type, isFunction(listener.listener) ? listener.listener : listener); if (!this._events[type]) // Optimize the case of one listener. Don't need the extra array object. this._events[type] = listener; else if (isObject(this._events[type])) // If we've already got an array, just append. this._events[type].push(listener); else // Adding the second element, need to change to array. this._events[type] = [this._events[type], listener]; // Check for listener leak if (isObject(this._events[type]) && !this._events[type].warned) { var m; if (!isUndefined(this._maxListeners)) { m = this._maxListeners; } else { m = EventEmitter.defaultMaxListeners; } if (m && m > 0 && this._events[type].length > m) { this._events[type].warned = true; console.error('(node) warning: possible EventEmitter memory ' + 'leak detected. %d listeners added. ' + 'Use emitter.setMaxListeners() to increase limit.', this._events[type].length); if (typeof console.trace === 'function') { // not supported in IE 10 console.trace(); } } } return this; }; EventEmitter.prototype.on = EventEmitter.prototype.addListener; EventEmitter.prototype.once = function(type, listener) { if (!isFunction(listener)) throw TypeError('listener must be a function'); var fired = false; function g() { this.removeListener(type, g); if (!fired) { fired = true; listener.apply(this, arguments); } } g.listener = listener; this.on(type, g); return this; }; // emits a 'removeListener' event iff the listener was removed EventEmitter.prototype.removeListener = function(type, listener) { var list, position, length, i; if (!isFunction(listener)) throw TypeError('listener must be a function'); if (!this._events || !this._events[type]) return this; list = this._events[type]; length = list.length; position = -1; if (list === listener || (isFunction(list.listener) && list.listener === listener)) { delete this._events[type]; if (this._events.removeListener) this.emit('removeListener', type, listener); } else if (isObject(list)) { for (i = length; i-- > 0;) { if (list[i] === listener || (list[i].listener && list[i].listener === listener)) { position = i; break; } } if (position < 0) return this; if (list.length === 1) { list.length = 0; delete this._events[type]; } else { list.splice(position, 1); } if (this._events.removeListener) this.emit('removeListener', type, listener); } return this; }; EventEmitter.prototype.removeAllListeners = function(type) { var key, listeners; if (!this._events) return this; // not listening for removeListener, no need to emit if (!this._events.removeListener) { if (arguments.length === 0) this._events = {}; else if (this._events[type]) delete this._events[type]; return this; } // emit removeListener for all listeners on all events if (arguments.length === 0) { for (key in this._events) { if (key === 'removeListener') continue; this.removeAllListeners(key); } this.removeAllListeners('removeListener'); this._events = {}; return this; } listeners = this._events[type]; if (isFunction(listeners)) { this.removeListener(type, listeners); } else { // LIFO order while (listeners.length) this.removeListener(type, listeners[listeners.length - 1]); } delete this._events[type]; return this; }; EventEmitter.prototype.listeners = function(type) { var ret; if (!this._events || !this._events[type]) ret = []; else if (isFunction(this._events[type])) ret = [this._events[type]]; else ret = this._events[type].slice(); return ret; }; EventEmitter.listenerCount = function(emitter, type) { var ret; if (!emitter._events || !emitter._events[type]) ret = 0; else if (isFunction(emitter._events[type])) ret = 1; else ret = emitter._events[type].length; return ret; }; function isFunction(arg) { return typeof arg === 'function'; } function isNumber(arg) { return typeof arg === 'number'; } function isObject(arg) { return typeof arg === 'object' && arg !== null; } function isUndefined(arg) { return arg === void 0; } },{}],15:[function(require,module,exports){ (function (process){ exports.alphasort = alphasort exports.alphasorti = alphasorti exports.setopts = setopts exports.ownProp = ownProp exports.makeAbs = makeAbs exports.finish = finish exports.mark = mark exports.isIgnored = isIgnored exports.childrenIgnored = childrenIgnored function ownProp (obj, field) { return Object.prototype.hasOwnProperty.call(obj, field) } var path = require("path") var minimatch = require("minimatch") var isAbsolute = require("path-is-absolute") var Minimatch = minimatch.Minimatch function alphasorti (a, b) { return a.toLowerCase().localeCompare(b.toLowerCase()) } function alphasort (a, b) { return a.localeCompare(b) } function setupIgnores (self, options) { self.ignore = options.ignore || [] if (!Array.isArray(self.ignore)) self.ignore = [self.ignore] if (self.ignore.length) { self.ignore = self.ignore.map(ignoreMap) } } function ignoreMap (pattern) { var gmatcher = null if (pattern.slice(-3) === '/**') { var gpattern = pattern.replace(/(\/\*\*)+$/, '') gmatcher = new Minimatch(gpattern) } return { matcher: new Minimatch(pattern), gmatcher: gmatcher } } function setopts (self, pattern, options) { if (!options) options = {} // base-matching: just use globstar for that. if (options.matchBase && -1 === pattern.indexOf("/")) { if (options.noglobstar) { throw new Error("base matching requires globstar") } pattern = "**/" + pattern } self.silent = !!options.silent self.pattern = pattern self.strict = options.strict !== false self.realpath = !!options.realpath self.realpathCache = options.realpathCache || Object.create(null) self.follow = !!options.follow self.dot = !!options.dot self.mark = !!options.mark self.nodir = !!options.nodir if (self.nodir) self.mark = true self.sync = !!options.sync self.nounique = !!options.nounique self.nonull = !!options.nonull self.nosort = !!options.nosort self.nocase = !!options.nocase self.stat = !!options.stat self.noprocess = !!options.noprocess self.maxLength = options.maxLength || Infinity self.cache = options.cache || Object.create(null) self.statCache = options.statCache || Object.create(null) self.symlinks = options.symlinks || Object.create(null) setupIgnores(self, options) self.changedCwd = false var cwd = process.cwd() if (!ownProp(options, "cwd")) self.cwd = cwd else { self.cwd = options.cwd self.changedCwd = path.resolve(options.cwd) !== cwd } self.root = options.root || path.resolve(self.cwd, "/") self.root = path.resolve(self.root) if (process.platform === "win32") self.root = self.root.replace(/\\/g, "/") self.nomount = !!options.nomount // disable comments and negation unless the user explicitly // passes in false as the option. options.nonegate = options.nonegate === false ? false : true options.nocomment = options.nocomment === false ? false : true deprecationWarning(options) self.minimatch = new Minimatch(pattern, options) self.options = self.minimatch.options } // TODO(isaacs): remove entirely in v6 // exported to reset in tests exports.deprecationWarned function deprecationWarning(options) { if (!options.nonegate || !options.nocomment) { if (process.noDeprecation !== true && !exports.deprecationWarned) { var msg = 'glob WARNING: comments and negation will be disabled in v6' if (process.throwDeprecation) throw new Error(msg) else if (process.traceDeprecation) console.trace(msg) else console.error(msg) exports.deprecationWarned = true } } } function finish (self) { var nou = self.nounique var all = nou ? [] : Object.create(null) for (var i = 0, l = self.matches.length; i < l; i ++) { var matches = self.matches[i] if (!matches || Object.keys(matches).length === 0) { if (self.nonull) { // do like the shell, and spit out the literal glob var literal = self.minimatch.globSet[i] if (nou) all.push(literal) else all[literal] = true } } else { // had matches var m = Object.keys(matches) if (nou) all.push.apply(all, m) else m.forEach(function (m) { all[m] = true }) } } if (!nou) all = Object.keys(all) if (!self.nosort) all = all.sort(self.nocase ? alphasorti : alphasort) // at *some* point we statted all of these if (self.mark) { for (var i = 0; i < all.length; i++) { all[i] = self._mark(all[i]) } if (self.nodir) { all = all.filter(function (e) { return !(/\/$/.test(e)) }) } } if (self.ignore.length) all = all.filter(function(m) { return !isIgnored(self, m) }) self.found = all } function mark (self, p) { var abs = makeAbs(self, p) var c = self.cache[abs] var m = p if (c) { var isDir = c === 'DIR' || Array.isArray(c) var slash = p.slice(-1) === '/' if (isDir && !slash) m += '/' else if (!isDir && slash) m = m.slice(0, -1) if (m !== p) { var mabs = makeAbs(self, m) self.statCache[mabs] = self.statCache[abs] self.cache[mabs] = self.cache[abs] } } return m } // lotta situps... function makeAbs (self, f) { var abs = f if (f.charAt(0) === '/') { abs = path.join(self.root, f) } else if (isAbsolute(f) || f === '') { abs = f } else if (self.changedCwd) { abs = path.resolve(self.cwd, f) } else { abs = path.resolve(f) } return abs } // Return true, if pattern ends with globstar '**', for the accompanying parent directory. // Ex:- If node_modules/** is the pattern, add 'node_modules' to ignore list along with it's contents function isIgnored (self, path) { if (!self.ignore.length) return false return self.ignore.some(function(item) { return item.matcher.match(path) || !!(item.gmatcher && item.gmatcher.match(path)) }) } function childrenIgnored (self, path) { if (!self.ignore.length) return false return self.ignore.some(function(item) { return !!(item.gmatcher && item.gmatcher.match(path)) }) } }).call(this,require('_process')) },{"_process":24,"minimatch":20,"path":22,"path-is-absolute":23}],16:[function(require,module,exports){ (function (process){ // Approach: // // 1. Get the minimatch set // 2. For each pattern in the set, PROCESS(pattern, false) // 3. Store matches per-set, then uniq them // // PROCESS(pattern, inGlobStar) // Get the first [n] items from pattern that are all strings // Join these together. This is PREFIX. // If there is no more remaining, then stat(PREFIX) and // add to matches if it succeeds. END. // // If inGlobStar and PREFIX is symlink and points to dir // set ENTRIES = [] // else readdir(PREFIX) as ENTRIES // If fail, END // // with ENTRIES // If pattern[n] is GLOBSTAR // // handle the case where the globstar match is empty // // by pruning it out, and testing the resulting pattern // PROCESS(pattern[0..n] + pattern[n+1 .. $], false) // // handle other cases. // for ENTRY in ENTRIES (not dotfiles) // // attach globstar + tail onto the entry // // Mark that this entry is a globstar match // PROCESS(pattern[0..n] + ENTRY + pattern[n .. $], true) // // else // not globstar // for ENTRY in ENTRIES (not dotfiles, unless pattern[n] is dot) // Test ENTRY against pattern[n] // If fails, continue // If passes, PROCESS(pattern[0..n] + item + pattern[n+1 .. $]) // // Caveat: // Cache all stats and readdirs results to minimize syscall. Since all // we ever care about is existence and directory-ness, we can just keep // `true` for files, and [children,...] for directories, or `false` for // things that don't exist. module.exports = glob var fs = require('fs') var minimatch = require('minimatch') var Minimatch = minimatch.Minimatch var inherits = require('inherits') var EE = require('events').EventEmitter var path = require('path') var assert = require('assert') var isAbsolute = require('path-is-absolute') var globSync = require('./sync.js') var common = require('./common.js') var alphasort = common.alphasort var alphasorti = common.alphasorti var setopts = common.setopts var ownProp = common.ownProp var inflight = require('inflight') var util = require('util') var childrenIgnored = common.childrenIgnored var isIgnored = common.isIgnored var once = require('once') function glob (pattern, options, cb) { if (typeof options === 'function') cb = options, options = {} if (!options) options = {} if (options.sync) { if (cb) throw new TypeError('callback provided to sync glob') return globSync(pattern, options) } return new Glob(pattern, options, cb) } glob.sync = globSync var GlobSync = glob.GlobSync = globSync.GlobSync // old api surface glob.glob = glob glob.hasMagic = function (pattern, options_) { var options = util._extend({}, options_) options.noprocess = true var g = new Glob(pattern, options) var set = g.minimatch.set if (set.length > 1) return true for (var j = 0; j < set[0].length; j++) { if (typeof set[0][j] !== 'string') return true } return false } glob.Glob = Glob inherits(Glob, EE) function Glob (pattern, options, cb) { if (typeof options === 'function') { cb = options options = null } if (options && options.sync) { if (cb) throw new TypeError('callback provided to sync glob') return new GlobSync(pattern, options) } if (!(this instanceof Glob)) return new Glob(pattern, options, cb) setopts(this, pattern, options) this._didRealPath = false // process each pattern in the minimatch set var n = this.minimatch.set.length // The matches are stored as {<filename>: true,...} so that // duplicates are automagically pruned. // Later, we do an Object.keys() on these. // Keep them as a list so we can fill in when nonull is set. this.matches = new Array(n) if (typeof cb === 'function') { cb = once(cb) this.on('error', cb) this.on('end', function (matches) { cb(null, matches) }) } var self = this var n = this.minimatch.set.length this._processing = 0 this.matches = new Array(n) this._emitQueue = [] this._processQueue = [] this.paused = false if (this.noprocess) return this if (n === 0) return done() for (var i = 0; i < n; i ++) { this._process(this.minimatch.set[i], i, false, done) } function done () { --self._processing if (self._processing <= 0) self._finish() } } Glob.prototype._finish = function () { assert(this instanceof Glob) if (this.aborted) return if (this.realpath && !this._didRealpath) return this._realpath() common.finish(this) this.emit('end', this.found) } Glob.prototype._realpath = function () { if (this._didRealpath) return this._didRealpath = true var n = this.matches.length if (n === 0) return this._finish() var self = this for (var i = 0; i < this.matches.length; i++) this._realpathSet(i, next) function next () { if (--n === 0) self._finish() } } Glob.prototype._realpathSet = function (index, cb) { var matchset = this.matches[index] if (!matchset) return cb() var found = Object.keys(matchset) var self = this var n = found.length if (n === 0) return cb() var set = this.matches[index] = Object.create(null) found.forEach(function (p, i) { // If there's a problem with the stat, then it means that // one or more of the links in the realpath couldn't be // resolved. just return the abs value in that case. p = self._makeAbs(p) fs.realpath(p, self.realpathCache, function (er, real) { if (!er) set[real] = true else if (er.syscall === 'stat') set[p] = true else self.emit('error', er) // srsly wtf right here if (--n === 0) { self.matches[index] = set cb() } }) }) } Glob.prototype._mark = function (p) { return common.mark(this, p) } Glob.prototype._makeAbs = function (f) { return common.makeAbs(this, f) } Glob.prototype.abort = function () { this.aborted = true this.emit('abort') } Glob.prototype.pause = function () { if (!this.paused) { this.paused = true this.emit('pause') } } Glob.prototype.resume = function () { if (this.paused) { this.emit('resume') this.paused = false if (this._emitQueue.length) { var eq = this._emitQueue.slice(0) this._emitQueue.length = 0 for (var i = 0; i < eq.length; i ++) { var e = eq[i] this._emitMatch(e[0], e[1]) } } if (this._processQueue.length) { var pq = this._processQueue.slice(0) this._processQueue.length = 0 for (var i = 0; i < pq.length; i ++) { var p = pq[i] this._processing-- this._process(p[0], p[1], p[2], p[3]) } } } } Glob.prototype._process = function (pattern, index, inGlobStar, cb) { assert(this instanceof Glob) assert(typeof cb === 'function') if (this.aborted) return this._processing++ if (this.paused) { this._processQueue.push([pattern, index, inGlobStar, cb]) return } //console.error('PROCESS %d', this._processing, pattern) // Get the first [n] parts of pattern that are all strings. var n = 0 while (typeof pattern[n] === 'string') { n ++ } // now n is the index of the first one that is *not* a string. // see if there's anything else var prefix switch (n) { // if not, then this is rather simple case pattern.length: this._processSimple(pattern.join('/'), index, cb) return case 0: // pattern *starts* with some non-trivial item. // going to readdir(cwd), but not include the prefix in matches. prefix = null break default: // pattern has some string bits in the front. // whatever it starts with, whether that's 'absolute' like /foo/bar, // or 'relative' like '../baz' prefix = pattern.slice(0, n).join('/') break } var remain = pattern.slice(n) // get the list of entries. var read if (prefix === null) read = '.' else if (isAbsolute(prefix) || isAbsolute(pattern.join('/'))) { if (!prefix || !isAbsolute(prefix)) prefix = '/' + prefix read = prefix } else read = prefix var abs = this._makeAbs(read) //if ignored, skip _processing if (childrenIgnored(this, read)) return cb() var isGlobStar = remain[0] === minimatch.GLOBSTAR if (isGlobStar) this._processGlobStar(prefix, read, abs, remain, index, inGlobStar, cb) else this._processReaddir(prefix, read, abs, remain, index, inGlobStar, cb) } Glob.prototype._processReaddir = function (prefix, read, abs, remain, index, inGlobStar, cb) { var self = this this._readdir(abs, inGlobStar, function (er, entries) { return self._processReaddir2(prefix, read, abs, remain, index, inGlobStar, entries, cb) }) } Glob.prototype._processReaddir2 = function (prefix, read, abs, remain, index, inGlobStar, entries, cb) { // if the abs isn't a dir, then nothing can match! if (!entries) return cb() // It will only match dot entries if it starts with a dot, or if // dot is set. Stuff like @(.foo|.bar) isn't allowed. var pn = remain[0] var negate = !!this.minimatch.negate var rawGlob = pn._glob var dotOk = this.dot || rawGlob.charAt(0) === '.' var matchedEntries = [] for (var i = 0; i < entries.length; i++) { var e = entries[i] if (e.charAt(0) !== '.' || dotOk) { var m if (negate && !prefix) { m = !e.match(pn) } else { m = e.match(pn) } if (m) matchedEntries.push(e) } } //console.error('prd2', prefix, entries, remain[0]._glob, matchedEntries) var len = matchedEntries.length // If there are no matched entries, then nothing matches. if (len === 0) return cb() // if this is the last remaining pattern bit, then no need for // an additional stat *unless* the user has specified mark or // stat explicitly. We know they exist, since readdir returned // them. if (remain.length === 1 && !this.mark && !this.stat) { if (!this.matches[index]) this.matches[index] = Object.create(null) for (var i = 0; i < len; i ++) { var e = matchedEntries[i] if (prefix) { if (prefix !== '/') e = prefix + '/' + e else e = prefix + e } if (e.charAt(0) === '/' && !this.nomount) { e = path.join(this.root, e) } this._emitMatch(index, e) } // This was the last one, and no stats were needed return cb() } // now test all matched entries as stand-ins for that part // of the pattern. remain.shift() for (var i = 0; i < len; i ++) { var e = matchedEntries[i] var newPattern if (prefix) { if (prefix !== '/') e = prefix + '/' + e else e = prefix + e } this._process([e].concat(remain), index, inGlobStar, cb) } cb() } Glob.prototype._emitMatch = function (index, e) { if (this.aborted) return if (this.matches[index][e]) return if (isIgnored(this, e)) return if (this.paused) { this._emitQueue.push([index, e]) return } var abs = this._makeAbs(e) if (this.nodir) { var c = this.cache[abs] if (c === 'DIR' || Array.isArray(c)) return } if (this.mark) e = this._mark(e) this.matches[index][e] = true var st = this.statCache[abs] if (st) this.emit('stat', e, st) this.emit('match', e) } Glob.prototype._readdirInGlobStar = function (abs, cb) { if (this.aborted) return // follow all symlinked directories forever // just proceed as if this is a non-globstar situation if (this.follow) return this._readdir(abs, false, cb) var lstatkey = 'lstat\0' + abs var self = this var lstatcb = inflight(lstatkey, lstatcb_) if (lstatcb) fs.lstat(abs, lstatcb) function lstatcb_ (er, lstat) { if (er) return cb() var isSym = lstat.isSymbolicLink() self.symlinks[abs] = isSym // If it's not a symlink or a dir, then it's definitely a regular file. // don't bother doing a readdir in that case. if (!isSym && !lstat.isDirectory()) { self.cache[abs] = 'FILE' cb() } else self._readdir(abs, false, cb) } } Glob.prototype._readdir = function (abs, inGlobStar, cb) { if (this.aborted) return cb = inflight('readdir\0'+abs+'\0'+inGlobStar, cb) if (!cb) return //console.error('RD %j %j', +inGlobStar, abs) if (inGlobStar && !ownProp(this.symlinks, abs)) return this._readdirInGlobStar(abs, cb) if (ownProp(this.cache, abs)) { var c = this.cache[abs] if (!c || c === 'FILE') return cb() if (Array.isArray(c)) return cb(null, c) } var self = this fs.readdir(abs, readdirCb(this, abs, cb)) } function readdirCb (self, abs, cb) { return function (er, entries) { if (er) self._readdirError(abs, er, cb) else self._readdirEntries(abs, entries, cb) } } Glob.prototype._readdirEntries = function (abs, entries, cb) { if (this.aborted) return // if we haven't asked to stat everything, then just // assume that everything in there exists, so we can avoid // having to stat it a second time. if (!this.mark && !this.stat) { for (var i = 0; i < entries.length; i ++) { var e = entries[i] if (abs === '/') e = abs + e else e = abs + '/' + e this.cache[e] = true } } this.cache[abs] = entries return cb(null, entries) } Glob.prototype._readdirError = function (f, er, cb) { if (this.aborted) return // handle errors, and cache the information switch (er.code) { case 'ENOTSUP': // https://github.com/isaacs/node-glob/issues/205 case 'ENOTDIR': // totally normal. means it *does* exist. this.cache[this._makeAbs(f)] = 'FILE' break case 'ENOENT': // not terribly unusual case 'ELOOP': case 'ENAMETOOLONG': case 'UNKNOWN': this.cache[this._makeAbs(f)] = false break default: // some unusual error. Treat as failure. this.cache[this._makeAbs(f)] = false if (this.strict) { this.emit('error', er) // If the error is handled, then we abort // if not, we threw out of here this.abort() } if (!this.silent) console.error('glob error', er) break } return cb() } Glob.prototype._processGlobStar = function (prefix, read, abs, remain, index, inGlobStar, cb) { var self = this this._readdir(abs, inGlobStar, function (er, entries) { self._processGlobStar2(prefix, read, abs, remain, index, inGlobStar, entries, cb) }) } Glob.prototype._processGlobStar2 = function (prefix, read, abs, remain, index, inGlobStar, entries, cb) { //console.error('pgs2', prefix, remain[0], entries) // no entries means not a dir, so it can never have matches // foo.txt/** doesn't match foo.txt if (!entries) return cb() // test without the globstar, and with every child both below // and replacing the globstar. var remainWithoutGlobStar = remain.slice(1) var gspref = prefix ? [ prefix ] : [] var noGlobStar = gspref.concat(remainWithoutGlobStar) // the noGlobStar pattern exits the inGlobStar state this._process(noGlobStar, index, false, cb) var isSym = this.symlinks[abs] var len = entries.length // If it's a symlink, and we're in a globstar, then stop if (isSym && inGlobStar) return cb() for (var i = 0; i < len; i++) { var e = entries[i] if (e.charAt(0) === '.' && !this.dot) continue // these two cases enter the inGlobStar state var instead = gspref.concat(entries[i], remainWithoutGlobStar) this._process(instead, index, true, cb) var below = gspref.concat(entries[i], remain) this._process(below, index, true, cb) } cb() } Glob.prototype._processSimple = function (prefix, index, cb) { // XXX review this. Shouldn't it be doing the mounting etc // before doing stat? kinda weird? var self = this this._stat(prefix, function (er, exists) { self._processSimple2(prefix, index, er, exists, cb) }) } Glob.prototype._processSimple2 = function (prefix, index, er, exists, cb) { //console.error('ps2', prefix, exists) if (!this.matches[index]) this.matches[index] = Object.create(null) // If it doesn't exist, then just mark the lack of results if (!exists) return cb() if (prefix && isAbsolute(prefix) && !this.nomount) { var trail = /[\/\\]$/.test(prefix) if (prefix.charAt(0) === '/') { prefix = path.join(this.root, prefix) } else { prefix = path.resolve(this.root, prefix) if (trail) prefix += '/' } } if (process.platform === 'win32') prefix = prefix.replace(/\\/g, '/') // Mark this as a match this._emitMatch(index, prefix) cb() } // Returns either 'DIR', 'FILE', or false Glob.prototype._stat = function (f, cb) { var abs = this._makeAbs(f) var needDir = f.slice(-1) === '/' if (f.length > this.maxLength) return cb() if (!this.stat && ownProp(this.cache, abs)) { var c = this.cache[abs] if (Array.isArray(c)) c = 'DIR' // It exists, but maybe not how we need it if (!needDir || c === 'DIR') return cb(null, c) if (needDir && c === 'FILE') return cb() // otherwise we have to stat, because maybe c=true // if we know it exists, but not what it is. } var exists var stat = this.statCache[abs] if (stat !== undefined) { if (stat === false) return cb(null, stat) else { var type = stat.isDirectory() ? 'DIR' : 'FILE' if (needDir && type === 'FILE') return cb() else return cb(null, type, stat) } } var self = this var statcb = inflight('stat\0' + abs, lstatcb_) if (statcb) fs.lstat(abs, statcb) function lstatcb_ (er, lstat) { if (lstat && lstat.isSymbolicLink()) { // If it's a symlink, then treat it as the target, unless // the target does not exist, then treat it as a file. return fs.stat(abs, function (er, stat) { if (er) self._stat2(f, abs, null, lstat, cb) else self._stat2(f, abs, er, stat, cb) }) } else { self._stat2(f, abs, er, lstat, cb) } } } Glob.prototype._stat2 = function (f, abs, er, stat, cb) { if (er) { this.statCache[abs] = false return cb() } var needDir = f.slice(-1) === '/' this.statCache[abs] = stat if (abs.slice(-1) === '/' && !stat.isDirectory()) return cb(null, false, stat) var c = stat.isDirectory() ? 'DIR' : 'FILE' this.cache[abs] = this.cache[abs] || c if (needDir && c !== 'DIR') return cb() return cb(null, c, stat) } }).call(this,require('_process')) },{"./common.js":15,"./sync.js":17,"_process":24,"assert":9,"events":14,"fs":12,"inflight":18,"inherits":19,"minimatch":20,"once":21,"path":22,"path-is-absolute":23,"util":28}],17:[function(require,module,exports){ (function (process){ module.exports = globSync globSync.GlobSync = GlobSync var fs = require('fs') var minimatch = require('minimatch') var Minimatch = minimatch.Minimatch var Glob = require('./glob.js').Glob var util = require('util') var path = require('path') var assert = require('assert') var isAbsolute = require('path-is-absolute') var common = require('./common.js') var alphasort = common.alphasort var alphasorti = common.alphasorti var setopts = common.setopts var ownProp = common.ownProp var childrenIgnored = common.childrenIgnored function globSync (pattern, options) { if (typeof options === 'function' || arguments.length === 3) throw new TypeError('callback provided to sync glob\n'+ 'See: https://github.com/isaacs/node-glob/issues/167') return new GlobSync(pattern, options).found } function GlobSync (pattern, options) { if (!pattern) throw new Error('must provide pattern') if (typeof options === 'function' || arguments.length === 3) throw new TypeError('callback provided to sync glob\n'+ 'See: https://github.com/isaacs/node-glob/issues/167') if (!(this instanceof GlobSync)) return new GlobSync(pattern, options) setopts(this, pattern, options) if (this.noprocess) return this var n = this.minimatch.set.length this.matches = new Array(n) for (var i = 0; i < n; i ++) { this._process(this.minimatch.set[i], i, false) } this._finish() } GlobSync.prototype._finish = function () { assert(this instanceof GlobSync) if (this.realpath) { var self = this this.matches.forEach(function (matchset, index) { var set = self.matches[index] = Object.create(null) for (var p in matchset) { try { p = self._makeAbs(p) var real = fs.realpathSync(p, self.realpathCache) set[real] = true } catch (er) { if (er.syscall === 'stat') set[self._makeAbs(p)] = true else throw er } } }) } common.finish(this) } GlobSync.prototype._process = function (pattern, index, inGlobStar) { assert(this instanceof GlobSync) // Get the first [n] parts of pattern that are all strings. var n = 0 while (typeof pattern[n] === 'string') { n ++ } // now n is the index of the first one that is *not* a string. // See if there's anything else var prefix switch (n) { // if not, then this is rather simple case pattern.length: this._processSimple(pattern.join('/'), index) return case 0: // pattern *starts* with some non-trivial item. // going to readdir(cwd), but not include the prefix in matches. prefix = null break default: // pattern has some string bits in the front. // whatever it starts with, whether that's 'absolute' like /foo/bar, // or 'relative' like '../baz' prefix = pattern.slice(0, n).join('/') break } var remain = pattern.slice(n) // get the list of entries. var read if (prefix === null) read = '.' else if (isAbsolute(prefix) || isAbsolute(pattern.join('/'))) { if (!prefix || !isAbsolute(prefix)) prefix = '/' + prefix read = prefix } else read = prefix var abs = this._makeAbs(read) //if ignored, skip processing if (childrenIgnored(this, read)) return var isGlobStar = remain[0] === minimatch.GLOBSTAR if (isGlobStar) this._processGlobStar(prefix, read, abs, remain, index, inGlobStar) else this._processReaddir(prefix, read, abs, remain, index, inGlobStar) } GlobSync.prototype._processReaddir = function (prefix, read, abs, remain, index, inGlobStar) { var entries = this._readdir(abs, inGlobStar) // if the abs isn't a dir, then nothing can match! if (!entries) return // It will only match dot entries if it starts with a dot, or if // dot is set. Stuff like @(.foo|.bar) isn't allowed. var pn = remain[0] var negate = !!this.minimatch.negate var rawGlob = pn._glob var dotOk = this.dot || rawGlob.charAt(0) === '.' var matchedEntries = [] for (var i = 0; i < entries.length; i++) { var e = entries[i] if (e.charAt(0) !== '.' || dotOk) { var m if (negate && !prefix) { m = !e.match(pn) } else { m = e.match(pn) } if (m) matchedEntries.push(e) } } var len = matchedEntries.length // If there are no matched entries, then nothing matches. if (len === 0) return // if this is the last remaining pattern bit, then no need for // an additional stat *unless* the user has specified mark or // stat explicitly. We know they exist, since readdir returned // them. if (remain.length === 1 && !this.mark && !this.stat) { if (!this.matches[index]) this.matches[index] = Object.create(null) for (var i = 0; i < len; i ++) { var e = matchedEntries[i] if (prefix) { if (prefix.slice(-1) !== '/') e = prefix + '/' + e else e = prefix + e } if (e.charAt(0) === '/' && !this.nomount) { e = path.join(this.root, e) } this.matches[index][e] = true } // This was the last one, and no stats were needed return } // now test all matched entries as stand-ins for that part // of the pattern. remain.shift() for (var i = 0; i < len; i ++) { var e = matchedEntries[i] var newPattern if (prefix) newPattern = [prefix, e] else newPattern = [e] this._process(newPattern.concat(remain), index, inGlobStar) } } GlobSync.prototype._emitMatch = function (index, e) { var abs = this._makeAbs(e) if (this.mark) e = this._mark(e) if (this.matches[index][e]) return if (this.nodir) { var c = this.cache[this._makeAbs(e)] if (c === 'DIR' || Array.isArray(c)) return } this.matches[index][e] = true if (this.stat) this._stat(e) } GlobSync.prototype._readdirInGlobStar = function (abs) { // follow all symlinked directories forever // just proceed as if this is a non-globstar situation if (this.follow) return this._readdir(abs, false) var entries var lstat var stat try { lstat = fs.lstatSync(abs) } catch (er) { // lstat failed, doesn't exist return null } var isSym = lstat.isSymbolicLink() this.symlinks[abs] = isSym // If it's not a symlink or a dir, then it's definitely a regular file. // don't bother doing a readdir in that case. if (!isSym && !lstat.isDirectory()) this.cache[abs] = 'FILE' else entries = this._readdir(abs, false) return entries } GlobSync.prototype._readdir = function (abs, inGlobStar) { var entries if (inGlobStar && !ownProp(this.symlinks, abs)) return this._readdirInGlobStar(abs) if (ownProp(this.cache, abs)) { var c = this.cache[abs] if (!c || c === 'FILE') return null if (Array.isArray(c)) return c } try { return this._readdirEntries(abs, fs.readdirSync(abs)) } catch (er) { this._readdirError(abs, er) return null } } GlobSync.prototype._readdirEntries = function (abs, entries) { // if we haven't asked to stat everything, then just // assume that everything in there exists, so we can avoid // having to stat it a second time. if (!this.mark && !this.stat) { for (var i = 0; i < entries.length; i ++) { var e = entries[i] if (abs === '/') e = abs + e else e = abs + '/' + e this.cache[e] = true } } this.cache[abs] = entries // mark and cache dir-ness return entries } GlobSync.prototype._readdirError = function (f, er) { // handle errors, and cache the information switch (er.code) { case 'ENOTSUP': // https://github.com/isaacs/node-glob/issues/205 case 'ENOTDIR': // totally normal. means it *does* exist. this.cache[this._makeAbs(f)] = 'FILE' break case 'ENOENT': // not terribly unusual case 'ELOOP': case 'ENAMETOOLONG': case 'UNKNOWN': this.cache[this._makeAbs(f)] = false break default: // some unusual error. Treat as failure. this.cache[this._makeAbs(f)] = false if (this.strict) throw er if (!this.silent) console.error('glob error', er) break } } GlobSync.prototype._processGlobStar = function (prefix, read, abs, remain, index, inGlobStar) { var entries = this._readdir(abs, inGlobStar) // no entries means not a dir, so it can never have matches // foo.txt/** doesn't match foo.txt if (!entries) return // test without the globstar, and with every child both below // and replacing the globstar. var remainWithoutGlobStar = remain.slice(1) var gspref = prefix ? [ prefix ] : [] var noGlobStar = gspref.concat(remainWithoutGlobStar) // the noGlobStar pattern exits the inGlobStar state this._process(noGlobStar, index, false) var len = entries.length var isSym = this.symlinks[abs] // If it's a symlink, and we're in a globstar, then stop if (isSym && inGlobStar) return for (var i = 0; i < len; i++) { var e = entries[i] if (e.charAt(0) === '.' && !this.dot) continue // these two cases enter the inGlobStar state var instead = gspref.concat(entries[i], remainWithoutGlobStar) this._process(instead, index, true) var below = gspref.concat(entries[i], remain) this._process(below, index, true) } } GlobSync.prototype._processSimple = function (prefix, index) { // XXX review this. Shouldn't it be doing the mounting etc // before doing stat? kinda weird? var exists = this._stat(prefix) if (!this.matches[index]) this.matches[index] = Object.create(null) // If it doesn't exist, then just mark the lack of results if (!exists) return if (prefix && isAbsolute(prefix) && !this.nomount) { var trail = /[\/\\]$/.test(prefix) if (prefix.charAt(0) === '/') { prefix = path.join(this.root, prefix) } else { prefix = path.resolve(this.root, prefix) if (trail) prefix += '/' } } if (process.platform === 'win32') prefix = prefix.replace(/\\/g, '/') // Mark this as a match this.matches[index][prefix] = true } // Returns either 'DIR', 'FILE', or false GlobSync.prototype._stat = function (f) { var abs = this._makeAbs(f) var needDir = f.slice(-1) === '/' if (f.length > this.maxLength) return false if (!this.stat && ownProp(this.cache, abs)) { var c = this.cache[abs] if (Array.isArray(c)) c = 'DIR' // It exists, but maybe not how we need it if (!needDir || c === 'DIR') return c if (needDir && c === 'FILE') return false // otherwise we have to stat, because maybe c=true // if we know it exists, but not what it is. } var exists var stat = this.statCache[abs] if (!stat) { var lstat try { lstat = fs.lstatSync(abs) } catch (er) { return false } if (lstat.isSymbolicLink()) { try { stat = fs.statSync(abs) } catch (er) { stat = lstat } } else { stat = lstat } } this.statCache[abs] = stat var c = stat.isDirectory() ? 'DIR' : 'FILE' this.cache[abs] = this.cache[abs] || c if (needDir && c !== 'DIR') return false return c } GlobSync.prototype._mark = function (p) { return common.mark(this, p) } GlobSync.prototype._makeAbs = function (f) { return common.makeAbs(this, f) } }).call(this,require('_process')) },{"./common.js":15,"./glob.js":16,"_process":24,"assert":9,"fs":12,"minimatch":20,"path":22,"path-is-absolute":23,"util":28}],18:[function(require,module,exports){ (function (process){ var wrappy = require('wrappy') var reqs = Object.create(null) var once = require('once') module.exports = wrappy(inflight) function inflight (key, cb) { if (reqs[key]) { reqs[key].push(cb) return null } else { reqs[key] = [cb] return makeres(key) } } function makeres (key) { return once(function RES () { var cbs = reqs[key] var len = cbs.length var args = slice(arguments) // XXX It's somewhat ambiguous whether a new callback added in this // pass should be queued for later execution if something in the // list of callbacks throws, or if it should just be discarded. // However, it's such an edge case that it hardly matters, and either // choice is likely as surprising as the other. // As it happens, we do go ahead and schedule it for later execution. try { for (var i = 0; i < len; i++) { cbs[i].apply(null, args) } } finally { if (cbs.length > len) { // added more in the interim. // de-zalgo, just in case, but don't call again. cbs.splice(0, len) process.nextTick(function () { RES.apply(null, args) }) } else { delete reqs[key] } } }) } function slice (args) { var length = args.length var array = [] for (var i = 0; i < length; i++) array[i] = args[i] return array } }).call(this,require('_process')) },{"_process":24,"once":21,"wrappy":29}],19:[function(require,module,exports){ if (typeof Object.create === 'function') { // implementation from standard node.js 'util' module module.exports = function inherits(ctor, superCtor) { ctor.super_ = superCtor ctor.prototype = Object.create(superCtor.prototype, { constructor: { value: ctor, enumerable: false, writable: true, configurable: true } }); }; } else { // old school shim for old browsers module.exports = function inherits(ctor, superCtor) { ctor.super_ = superCtor var TempCtor = function () {} TempCtor.prototype = superCtor.prototype ctor.prototype = new TempCtor() ctor.prototype.constructor = ctor } } },{}],20:[function(require,module,exports){ module.exports = minimatch minimatch.Minimatch = Minimatch var path = { sep: '/' } try { path = require('path') } catch (er) {} var GLOBSTAR = minimatch.GLOBSTAR = Minimatch.GLOBSTAR = {} var expand = require('brace-expansion') var plTypes = { '!': { open: '(?:(?!(?:', close: '))[^/]*?)'}, '?': { open: '(?:', close: ')?' }, '+': { open: '(?:', close: ')+' }, '*': { open: '(?:', close: ')*' }, '@': { open: '(?:', close: ')' } } // any single thing other than / // don't need to escape / when using new RegExp() var qmark = '[^/]' // * => any number of characters var star = qmark + '*?' // ** when dots are allowed. Anything goes, except .. and . // not (^ or / followed by one or two dots followed by $ or /), // followed by anything, any number of times. var twoStarDot = '(?:(?!(?:\\\/|^)(?:\\.{1,2})($|\\\/)).)*?' // not a ^ or / followed by a dot, // followed by anything, any number of times. var twoStarNoDot = '(?:(?!(?:\\\/|^)\\.).)*?' // characters that need to be escaped in RegExp. var reSpecials = charSet('().*{}+?[]^$\\!') // "abc" -> { a:true, b:true, c:true } function charSet (s) { return s.split('').reduce(function (set, c) { set[c] = true return set }, {}) } // normalizes slashes. var slashSplit = /\/+/ minimatch.filter = filter function filter (pattern, options) { options = options || {} return function (p, i, list) { return minimatch(p, pattern, options) } } function ext (a, b) { a = a || {} b = b || {} var t = {} Object.keys(b).forEach(function (k) { t[k] = b[k] }) Object.keys(a).forEach(function (k) { t[k] = a[k] }) return t } minimatch.defaults = function (def) { if (!def || !Object.keys(def).length) return minimatch var orig = minimatch var m = function minimatch (p, pattern, options) { return orig.minimatch(p, pattern, ext(def, options)) } m.Minimatch = function Minimatch (pattern, options) { return new orig.Minimatch(pattern, ext(def, options)) } return m } Minimatch.defaults = function (def) { if (!def || !Object.keys(def).length) return Minimatch return minimatch.defaults(def).Minimatch } function minimatch (p, pattern, options) { if (typeof pattern !== 'string') { throw new TypeError('glob pattern string required') } if (!options) options = {} // shortcut: comments match nothing. if (!options.nocomment && pattern.charAt(0) === '#') { return false } // "" only matches "" if (pattern.trim() === '') return p === '' return new Minimatch(pattern, options).match(p) } function Minimatch (pattern, options) { if (!(this instanceof Minimatch)) { return new Minimatch(pattern, options) } if (typeof pattern !== 'string') { throw new TypeError('glob pattern string required') } if (!options) options = {} pattern = pattern.trim() // windows support: need to use /, not \ if (path.sep !== '/') { pattern = pattern.split(path.sep).join('/') } this.options = options this.set = [] this.pattern = pattern this.regexp = null this.negate = false this.comment = false this.empty = false // make the set of regexps etc. this.make() } Minimatch.prototype.debug = function () {} Minimatch.prototype.make = make function make () { // don't do it more than once. if (this._made) return var pattern = this.pattern var options = this.options // empty patterns and comments match nothing. if (!options.nocomment && pattern.charAt(0) === '#') { this.comment = true return } if (!pattern) { this.empty = true return } // step 1: figure out negation, etc. this.parseNegate() // step 2: expand braces var set = this.globSet = this.braceExpand() if (options.debug) this.debug = console.error this.debug(this.pattern, set) // step 3: now we have a set, so turn each one into a series of path-portion // matching patterns. // These will be regexps, except in the case of "**", which is // set to the GLOBSTAR object for globstar behavior, // and will not contain any / characters set = this.globParts = set.map(function (s) { return s.split(slashSplit) }) this.debug(this.pattern, set) // glob --> regexps set = set.map(function (s, si, set) { return s.map(this.parse, this) }, this) this.debug(this.pattern, set) // filter out everything that didn't compile properly. set = set.filter(function (s) { return s.indexOf(false) === -1 }) this.debug(this.pattern, set) this.set = set } Minimatch.prototype.parseNegate = parseNegate function parseNegate () { var pattern = this.pattern var negate = false var options = this.options var negateOffset = 0 if (options.nonegate) return for (var i = 0, l = pattern.length ; i < l && pattern.charAt(i) === '!' ; i++) { negate = !negate negateOffset++ } if (negateOffset) this.pattern = pattern.substr(negateOffset) this.negate = negate } // Brace expansion: // a{b,c}d -> abd acd // a{b,}c -> abc ac // a{0..3}d -> a0d a1d a2d a3d // a{b,c{d,e}f}g -> abg acdfg acefg // a{b,c}d{e,f}g -> abdeg acdeg abdeg abdfg // // Invalid sets are not expanded. // a{2..}b -> a{2..}b // a{b}c -> a{b}c minimatch.braceExpand = function (pattern, options) { return braceExpand(pattern, options) } Minimatch.prototype.braceExpand = braceExpand function braceExpand (pattern, options) { if (!options) { if (this instanceof Minimatch) { options = this.options } else { options = {} } } pattern = typeof pattern === 'undefined' ? this.pattern : pattern if (typeof pattern === 'undefined') { throw new TypeError('undefined pattern') } if (options.nobrace || !pattern.match(/\{.*\}/)) { // shortcut. no need to expand. return [pattern] } return expand(pattern) } // parse a component of the expanded set. // At this point, no pattern may contain "/" in it // so we're going to return a 2d array, where each entry is the full // pattern, split on '/', and then turned into a regular expression. // A regexp is made at the end which joins each array with an // escaped /, and another full one which joins each regexp with |. // // Following the lead of Bash 4.1, note that "**" only has special meaning // when it is the *only* thing in a path portion. Otherwise, any series // of * is equivalent to a single *. Globstar behavior is enabled by // default, and can be disabled by setting options.noglobstar. Minimatch.prototype.parse = parse var SUBPARSE = {} function parse (pattern, isSub) { if (pattern.length > 1024 * 64) { throw new TypeError('pattern is too long') } var options = this.options // shortcuts if (!options.noglobstar && pattern === '**') return GLOBSTAR if (pattern === '') return '' var re = '' var hasMagic = !!options.nocase var escaping = false // ? => one single character var patternListStack = [] var negativeLists = [] var stateChar var inClass = false var reClassStart = -1 var classStart = -1 // . and .. never match anything that doesn't start with ., // even when options.dot is set. var patternStart = pattern.charAt(0) === '.' ? '' // anything // not (start or / followed by . or .. followed by / or end) : options.dot ? '(?!(?:^|\\\/)\\.{1,2}(?:$|\\\/))' : '(?!\\.)' var self = this function clearStateChar () { if (stateChar) { // we had some state-tracking character // that wasn't consumed by this pass. switch (stateChar) { case '*': re += star hasMagic = true break case '?': re += qmark hasMagic = true break default: re += '\\' + stateChar break } self.debug('clearStateChar %j %j', stateChar, re) stateChar = false } } for (var i = 0, len = pattern.length, c ; (i < len) && (c = pattern.charAt(i)) ; i++) { this.debug('%s\t%s %s %j', pattern, i, re, c) // skip over any that are escaped. if (escaping && reSpecials[c]) { re += '\\' + c escaping = false continue } switch (c) { case '/': // completely not allowed, even escaped. // Should already be path-split by now. return false case '\\': clearStateChar() escaping = true continue // the various stateChar values // for the "extglob" stuff. case '?': case '*': case '+': case '@': case '!': this.debug('%s\t%s %s %j <-- stateChar', pattern, i, re, c) // all of those are literals inside a class, except that // the glob [!a] means [^a] in regexp if (inClass) { this.debug(' in class') if (c === '!' && i === classStart + 1) c = '^' re += c continue } // if we already have a stateChar, then it means // that there was something like ** or +? in there. // Handle the stateChar, then proceed with this one. self.debug('call clearStateChar %j', stateChar) clearStateChar() stateChar = c // if extglob is disabled, then +(asdf|foo) isn't a thing. // just clear the statechar *now*, rather than even diving into // the patternList stuff. if (options.noext) clearStateChar() continue case '(': if (inClass) { re += '(' continue } if (!stateChar) { re += '\\(' continue } patternListStack.push({ type: stateChar, start: i - 1, reStart: re.length, open: plTypes[stateChar].open, close: plTypes[stateChar].close }) // negation is (?:(?!js)[^/]*) re += stateChar === '!' ? '(?:(?!(?:' : '(?:' this.debug('plType %j %j', stateChar, re) stateChar = false continue case ')': if (inClass || !patternListStack.length) { re += '\\)' continue } clearStateChar() hasMagic = true var pl = patternListStack.pop() // negation is (?:(?!js)[^/]*) // The others are (?:<pattern>)<type> re += pl.close if (pl.type === '!') { negativeLists.push(pl) } pl.reEnd = re.length continue case '|': if (inClass || !patternListStack.length || escaping) { re += '\\|' escaping = false continue } clearStateChar() re += '|' continue // these are mostly the same in regexp and glob case '[': // swallow any state-tracking char before the [ clearStateChar() if (inClass) { re += '\\' + c continue } inClass = true classStart = i reClassStart = re.length re += c continue case ']': // a right bracket shall lose its special // meaning and represent itself in // a bracket expression if it occurs // first in the list. -- POSIX.2 2.8.3.2 if (i === classStart + 1 || !inClass) { re += '\\' + c escaping = false continue } // handle the case where we left a class open. // "[z-a]" is valid, equivalent to "\[z-a\]" if (inClass) { // split where the last [ was, make sure we don't have // an invalid re. if so, re-walk the contents of the // would-be class to re-translate any characters that // were passed through as-is // TODO: It would probably be faster to determine this // without a try/catch and a new RegExp, but it's tricky // to do safely. For now, this is safe and works. var cs = pattern.substring(classStart + 1, i) try { RegExp('[' + cs + ']') } catch (er) { // not a valid class! var sp = this.parse(cs, SUBPARSE) re = re.substr(0, reClassStart) + '\\[' + sp[0] + '\\]' hasMagic = hasMagic || sp[1] inClass = false continue } } // finish up the class. hasMagic = true inClass = false re += c continue default: // swallow any state char that wasn't consumed clearStateChar() if (escaping) { // no need escaping = false } else if (reSpecials[c] && !(c === '^' && inClass)) { re += '\\' } re += c } // switch } // for // handle the case where we left a class open. // "[abc" is valid, equivalent to "\[abc" if (inClass) { // split where the last [ was, and escape it // this is a huge pita. We now have to re-walk // the contents of the would-be class to re-translate // any characters that were passed through as-is cs = pattern.substr(classStart + 1) sp = this.parse(cs, SUBPARSE) re = re.substr(0, reClassStart) + '\\[' + sp[0] hasMagic = hasMagic || sp[1] } // handle the case where we had a +( thing at the *end* // of the pattern. // each pattern list stack adds 3 chars, and we need to go through // and escape any | chars that were passed through as-is for the regexp. // Go through and escape them, taking care not to double-escape any // | chars that were already escaped. for (pl = patternListStack.pop(); pl; pl = patternListStack.pop()) { var tail = re.slice(pl.reStart + pl.open.length) this.debug('setting tail', re, pl) // maybe some even number of \, then maybe 1 \, followed by a | tail = tail.replace(/((?:\\{2}){0,64})(\\?)\|/g, function (_, $1, $2) { if (!$2) { // the | isn't already escaped, so escape it. $2 = '\\' } // need to escape all those slashes *again*, without escaping the // one that we need for escaping the | character. As it works out, // escaping an even number of slashes can be done by simply repeating // it exactly after itself. That's why this trick works. // // I am sorry that you have to see this. return $1 + $1 + $2 + '|' }) this.debug('tail=%j\n %s', tail, tail, pl, re) var t = pl.type === '*' ? star : pl.type === '?' ? qmark : '\\' + pl.type hasMagic = true re = re.slice(0, pl.reStart) + t + '\\(' + tail } // handle trailing things that only matter at the very end. clearStateChar() if (escaping) { // trailing \\ re += '\\\\' } // only need to apply the nodot start if the re starts with // something that could conceivably capture a dot var addPatternStart = false switch (re.charAt(0)) { case '.': case '[': case '(': addPatternStart = true } // Hack to work around lack of negative lookbehind in JS // A pattern like: *.!(x).!(y|z) needs to ensure that a name // like 'a.xyz.yz' doesn't match. So, the first negative // lookahead, has to look ALL the way ahead, to the end of // the pattern. for (var n = negativeLists.length - 1; n > -1; n--) { var nl = negativeLists[n] var nlBefore = re.slice(0, nl.reStart) var nlFirst = re.slice(nl.reStart, nl.reEnd - 8) var nlLast = re.slice(nl.reEnd - 8, nl.reEnd) var nlAfter = re.slice(nl.reEnd) nlLast += nlAfter // Handle nested stuff like *(*.js|!(*.json)), where open parens // mean that we should *not* include the ) in the bit that is considered // "after" the negated section. var openParensBefore = nlBefore.split('(').length - 1 var cleanAfter = nlAfter for (i = 0; i < openParensBefore; i++) { cleanAfter = cleanAfter.replace(/\)[+*?]?/, '') } nlAfter = cleanAfter var dollar = '' if (nlAfter === '' && isSub !== SUBPARSE) { dollar = '$' } var newRe = nlBefore + nlFirst + nlAfter + dollar + nlLast re = newRe } // if the re is not "" at this point, then we need to make sure // it doesn't match against an empty path part. // Otherwise a/* will match a/, which it should not. if (re !== '' && hasMagic) { re = '(?=.)' + re } if (addPatternStart) { re = patternStart + re } // parsing just a piece of a larger pattern. if (isSub === SUBPARSE) { return [re, hasMagic] } // skip the regexp for non-magical patterns // unescape anything in it, though, so that it'll be // an exact match against a file etc. if (!hasMagic) { return globUnescape(pattern) } var flags = options.nocase ? 'i' : '' try { var regExp = new RegExp('^' + re + '$', flags) } catch (er) { // If it was an invalid regular expression, then it can't match // anything. This trick looks for a character after the end of // the string, which is of course impossible, except in multi-line // mode, but it's not a /m regex. return new RegExp('$.') } regExp._glob = pattern regExp._src = re return regExp } minimatch.makeRe = function (pattern, options) { return new Minimatch(pattern, options || {}).makeRe() } Minimatch.prototype.makeRe = makeRe function makeRe () { if (this.regexp || this.regexp === false) return this.regexp // at this point, this.set is a 2d array of partial // pattern strings, or "**". // // It's better to use .match(). This function shouldn't // be used, really, but it's pretty convenient sometimes, // when you just want to work with a regex. var set = this.set if (!set.length) { this.regexp = false return this.regexp } var options = this.options var twoStar = options.noglobstar ? star : options.dot ? twoStarDot : twoStarNoDot var flags = options.nocase ? 'i' : '' var re = set.map(function (pattern) { return pattern.map(function (p) { return (p === GLOBSTAR) ? twoStar : (typeof p === 'string') ? regExpEscape(p) : p._src }).join('\\\/') }).join('|') // must match entire pattern // ending in a * or ** will make it less strict. re = '^(?:' + re + ')$' // can match anything, as long as it's not this. if (this.negate) re = '^(?!' + re + ').*$' try { this.regexp = new RegExp(re, flags) } catch (ex) { this.regexp = false } return this.regexp } minimatch.match = function (list, pattern, options) { options = options || {} var mm = new Minimatch(pattern, options) list = list.filter(function (f) { return mm.match(f) }) if (mm.options.nonull && !list.length) { list.push(pattern) } return list } Minimatch.prototype.match = match function match (f, partial) { this.debug('match', f, this.pattern) // short-circuit in the case of busted things. // comments, etc. if (this.comment) return false if (this.empty) return f === '' if (f === '/' && partial) return true var options = this.options // windows: need to use /, not \ if (path.sep !== '/') { f = f.split(path.sep).join('/') } // treat the test path as a set of pathparts. f = f.split(slashSplit) this.debug(this.pattern, 'split', f) // just ONE of the pattern sets in this.set needs to match // in order for it to be valid. If negating, then just one // match means that we have failed. // Either way, return on the first hit. var set = this.set this.debug(this.pattern, 'set', set) // Find the basename of the path by looking for the last non-empty segment var filename var i for (i = f.length - 1; i >= 0; i--) { filename = f[i] if (filename) break } for (i = 0; i < set.length; i++) { var pattern = set[i] var file = f if (options.matchBase && pattern.length === 1) { file = [filename] } var hit = this.matchOne(file, pattern, partial) if (hit) { if (options.flipNegate) return true return !this.negate } } // didn't get any hits. this is success if it's a negative // pattern, failure otherwise. if (options.flipNegate) return false return this.negate } // set partial to true to test if, for example, // "/a/b" matches the start of "/*/b/*/d" // Partial means, if you run out of file before you run // out of pattern, then that's fine, as long as all // the parts match. Minimatch.prototype.matchOne = function (file, pattern, partial) { var options = this.options this.debug('matchOne', { 'this': this, file: file, pattern: pattern }) this.debug('matchOne', file.length, pattern.length) for (var fi = 0, pi = 0, fl = file.length, pl = pattern.length ; (fi < fl) && (pi < pl) ; fi++, pi++) { this.debug('matchOne loop') var p = pattern[pi] var f = file[fi] this.debug(pattern, p, f) // should be impossible. // some invalid regexp stuff in the set. if (p === false) return false if (p === GLOBSTAR) { this.debug('GLOBSTAR', [pattern, p, f]) // "**" // a/**/b/**/c would match the following: // a/b/x/y/z/c // a/x/y/z/b/c // a/b/x/b/x/c // a/b/c // To do this, take the rest of the pattern after // the **, and see if it would match the file remainder. // If so, return success. // If not, the ** "swallows" a segment, and try again. // This is recursively awful. // // a/**/b/**/c matching a/b/x/y/z/c // - a matches a // - doublestar // - matchOne(b/x/y/z/c, b/**/c) // - b matches b // - doublestar // - matchOne(x/y/z/c, c) -> no // - matchOne(y/z/c, c) -> no // - matchOne(z/c, c) -> no // - matchOne(c, c) yes, hit var fr = fi var pr = pi + 1 if (pr === pl) { this.debug('** at the end') // a ** at the end will just swallow the rest. // We have found a match. // however, it will not swallow /.x, unless // options.dot is set. // . and .. are *never* matched by **, for explosively // exponential reasons. for (; fi < fl; fi++) { if (file[fi] === '.' || file[fi] === '..' || (!options.dot && file[fi].charAt(0) === '.')) return false } return true } // ok, let's see if we can swallow whatever we can. while (fr < fl) { var swallowee = file[fr] this.debug('\nglobstar while', file, fr, pattern, pr, swallowee) // XXX remove this slice. Just pass the start index. if (this.matchOne(file.slice(fr), pattern.slice(pr), partial)) { this.debug('globstar found match!', fr, fl, swallowee) // found a match. return true } else { // can't swallow "." or ".." ever. // can only swallow ".foo" when explicitly asked. if (swallowee === '.' || swallowee === '..' || (!options.dot && swallowee.charAt(0) === '.')) { this.debug('dot detected!', file, fr, pattern, pr) break } // ** swallows a segment, and continue. this.debug('globstar swallow a segment, and continue') fr++ } } // no match was found. // However, in partial mode, we can't say this is necessarily over. // If there's more *pattern* left, then if (partial) { // ran out of file this.debug('\n>>> no match, partial?', file, fr, pattern, pr) if (fr === fl) return true } return false } // something other than ** // non-magic patterns just have to match exactly // patterns with magic have been turned into regexps. var hit if (typeof p === 'string') { if (options.nocase) { hit = f.toLowerCase() === p.toLowerCase() } else { hit = f === p } this.debug('string match', p, f, hit) } else { hit = f.match(p) this.debug('pattern match', p, f, hit) } if (!hit) return false } // Note: ending in / means that we'll get a final "" // at the end of the pattern. This can only match a // corresponding "" at the end of the file. // If the file ends in /, then it can only match a // a pattern that ends in /, unless the pattern just // doesn't have any more for it. But, a/b/ should *not* // match "a/b/*", even though "" matches against the // [^/]*? pattern, except in partial mode, where it might // simply not be reached yet. // However, a/b/ should still satisfy a/* // now either we fell off the end of the pattern, or we're done. if (fi === fl && pi === pl) { // ran out of pattern and filename at the same time. // an exact hit! return true } else if (fi === fl) { // ran out of file, but still had pattern left. // this is ok if we're doing the match as part of // a glob fs traversal. return partial } else if (pi === pl) { // ran out of pattern, still have file left. // this is only acceptable if we're on the very last // empty segment of a file with a trailing slash. // a/* should match a/b/ var emptyFileEnd = (fi === fl - 1) && (file[fi] === '') return emptyFileEnd } // should be unreachable. throw new Error('wtf?') } // replace stuff like \* with * function globUnescape (s) { return s.replace(/\\(.)/g, '$1') } function regExpEscape (s) { return s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&') } },{"brace-expansion":11,"path":22}],21:[function(require,module,exports){ var wrappy = require('wrappy') module.exports = wrappy(once) module.exports.strict = wrappy(onceStrict) once.proto = once(function () { Object.defineProperty(Function.prototype, 'once', { value: function () { return once(this) }, configurable: true }) Object.defineProperty(Function.prototype, 'onceStrict', { value: function () { return onceStrict(this) }, configurable: true }) }) function once (fn) { var f = function () { if (f.called) return f.value f.called = true return f.value = fn.apply(this, arguments) } f.called = false return f } function onceStrict (fn) { var f = function () { if (f.called) throw new Error(f.onceError) f.called = true return f.value = fn.apply(this, arguments) } var name = fn.name || 'Function wrapped with `once`' f.onceError = name + " shouldn't be called more than once" f.called = false return f } },{"wrappy":29}],22:[function(require,module,exports){ (function (process){ // Copyright Joyent, Inc. and other Node contributors. // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublicense, and/or sell copies of the Software, and to permit // persons to whom the Software is furnished to do so, subject to the // following conditions: // // The above copyright notice and this permission notice shall be included // in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // USE OR OTHER DEALINGS IN THE SOFTWARE. // resolves . and .. elements in a path array with directory names there // must be no slashes, empty elements, or device names (c:\) in the array // (so also no leading and trailing slashes - it does not distinguish // relative and absolute paths) function normalizeArray(parts, allowAboveRoot) { // if the path tries to go above the root, `up` ends up > 0 var up = 0; for (var i = parts.length - 1; i >= 0; i--) { var last = parts[i]; if (last === '.') { parts.splice(i, 1); } else if (last === '..') { parts.splice(i, 1); up++; } else if (up) { parts.splice(i, 1); up--; } } // if the path is allowed to go above the root, restore leading ..s if (allowAboveRoot) { for (; up--; up) { parts.unshift('..'); } } return parts; } // Split a filename into [root, dir, basename, ext], unix version // 'root' is just a slash, or nothing. var splitPathRe = /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/; var splitPath = function(filename) { return splitPathRe.exec(filename).slice(1); }; // path.resolve([from ...], to) // posix version exports.resolve = function() { var resolvedPath = '', resolvedAbsolute = false; for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) { var path = (i >= 0) ? arguments[i] : process.cwd(); // Skip empty and invalid entries if (typeof path !== 'string') { throw new TypeError('Arguments to path.resolve must be strings'); } else if (!path) { continue; } resolvedPath = path + '/' + resolvedPath; resolvedAbsolute = path.charAt(0) === '/'; } // At this point the path should be resolved to a full absolute path, but // handle relative paths to be safe (might happen when process.cwd() fails) // Normalize the path resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) { return !!p; }), !resolvedAbsolute).join('/'); return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.'; }; // path.normalize(path) // posix version exports.normalize = function(path) { var isAbsolute = exports.isAbsolute(path), trailingSlash = substr(path, -1) === '/'; // Normalize the path path = normalizeArray(filter(path.split('/'), function(p) { return !!p; }), !isAbsolute).join('/'); if (!path && !isAbsolute) { path = '.'; } if (path && trailingSlash) { path += '/'; } return (isAbsolute ? '/' : '') + path; }; // posix version exports.isAbsolute = function(path) { return path.charAt(0) === '/'; }; // posix version exports.join = function() { var paths = Array.prototype.slice.call(arguments, 0); return exports.normalize(filter(paths, function(p, index) { if (typeof p !== 'string') { throw new TypeError('Arguments to path.join must be strings'); } return p; }).join('/')); }; // path.relative(from, to) // posix version exports.relative = function(from, to) { from = exports.resolve(from).substr(1); to = exports.resolve(to).substr(1); function trim(arr) { var start = 0; for (; start < arr.length; start++) { if (arr[start] !== '') break; } var end = arr.length - 1; for (; end >= 0; end--) { if (arr[end] !== '') break; } if (start > end) return []; return arr.slice(start, end - start + 1); } var fromParts = trim(from.split('/')); var toParts = trim(to.split('/')); var length = Math.min(fromParts.length, toParts.length); var samePartsLength = length; for (var i = 0; i < length; i++) { if (fromParts[i] !== toParts[i]) { samePartsLength = i; break; } } var outputParts = []; for (var i = samePartsLength; i < fromParts.length; i++) { outputParts.push('..'); } outputParts = outputParts.concat(toParts.slice(samePartsLength)); return outputParts.join('/'); }; exports.sep = '/'; exports.delimiter = ':'; exports.dirname = function(path) { var result = splitPath(path), root = result[0], dir = result[1]; if (!root && !dir) { // No dirname whatsoever return '.'; } if (dir) { // It has a dirname, strip trailing slash dir = dir.substr(0, dir.length - 1); } return root + dir; }; exports.basename = function(path, ext) { var f = splitPath(path)[2]; // TODO: make this comparison case-insensitive on windows? if (ext && f.substr(-1 * ext.length) === ext) { f = f.substr(0, f.length - ext.length); } return f; }; exports.extname = function(path) { return splitPath(path)[3]; }; function filter (xs, f) { if (xs.filter) return xs.filter(f); var res = []; for (var i = 0; i < xs.length; i++) { if (f(xs[i], i, xs)) res.push(xs[i]); } return res; } // String.prototype.substr - negative index don't work in IE8 var substr = 'ab'.substr(-1) === 'b' ? function (str, start, len) { return str.substr(start, len) } : function (str, start, len) { if (start < 0) start = str.length + start; return str.substr(start, len); } ; }).call(this,require('_process')) },{"_process":24}],23:[function(require,module,exports){ (function (process){ 'use strict'; function posix(path) { return path.charAt(0) === '/'; } function win32(path) { // https://github.com/nodejs/node/blob/b3fcc245fb25539909ef1d5eaa01dbf92e168633/lib/path.js#L56 var splitDeviceRe = /^([a-zA-Z]:|[\\\/]{2}[^\\\/]+[\\\/]+[^\\\/]+)?([\\\/])?([\s\S]*?)$/; var result = splitDeviceRe.exec(path); var device = result[1] || ''; var isUnc = Boolean(device && device.charAt(1) !== ':'); // UNC paths are always absolute return Boolean(result[2] || isUnc); } module.exports = process.platform === 'win32' ? win32 : posix; module.exports.posix = posix; module.exports.win32 = win32; }).call(this,require('_process')) },{"_process":24}],24:[function(require,module,exports){ // shim for using process in browser var process = module.exports = {}; // cached from whatever global is present so that test runners that stub it // don't break things. But we need to wrap it in a try catch in case it is // wrapped in strict mode code which doesn't define any globals. It's inside a // function because try/catches deoptimize in certain engines. var cachedSetTimeout; var cachedClearTimeout; function defaultSetTimout() { throw new Error('setTimeout has not been defined'); } function defaultClearTimeout () { throw new Error('clearTimeout has not been defined'); } (function () { try { if (typeof setTimeout === 'function') { cachedSetTimeout = setTimeout; } else { cachedSetTimeout = defaultSetTimout; } } catch (e) { cachedSetTimeout = defaultSetTimout; } try { if (typeof clearTimeout === 'function') { cachedClearTimeout = clearTimeout; } else { cachedClearTimeout = defaultClearTimeout; } } catch (e) { cachedClearTimeout = defaultClearTimeout; } } ()) function runTimeout(fun) { if (cachedSetTimeout === setTimeout) { //normal enviroments in sane situations return setTimeout(fun, 0); } // if setTimeout wasn't available but was latter defined if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) { cachedSetTimeout = setTimeout; return setTimeout(fun, 0); } try { // when when somebody has screwed with setTimeout but no I.E. maddness return cachedSetTimeout(fun, 0); } catch(e){ try { // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally return cachedSetTimeout.call(null, fun, 0); } catch(e){ // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error return cachedSetTimeout.call(this, fun, 0); } } } function runClearTimeout(marker) { if (cachedClearTimeout === clearTimeout) { //normal enviroments in sane situations return clearTimeout(marker); } // if clearTimeout wasn't available but was latter defined if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) { cachedClearTimeout = clearTimeout; return clearTimeout(marker); } try { // when when somebody has screwed with setTimeout but no I.E. maddness return cachedClearTimeout(marker); } catch (e){ try { // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally return cachedClearTimeout.call(null, marker); } catch (e){ // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error. // Some versions of I.E. have different rules for clearTimeout vs setTimeout return cachedClearTimeout.call(this, marker); } } } var queue = []; var draining = false; var currentQueue; var queueIndex = -1; function cleanUpNextTick() { if (!draining || !currentQueue) { return; } draining = false; if (currentQueue.length) { queue = currentQueue.concat(queue); } else { queueIndex = -1; } if (queue.length) { drainQueue(); } } function drainQueue() { if (draining) { return; } var timeout = runTimeout(cleanUpNextTick); draining = true; var len = queue.length; while(len) { currentQueue = queue; queue = []; while (++queueIndex < len) { if (currentQueue) { currentQueue[queueIndex].run(); } } queueIndex = -1; len = queue.length; } currentQueue = null; draining = false; runClearTimeout(timeout); } process.nextTick = function (fun) { var args = new Array(arguments.length - 1); if (arguments.length > 1) { for (var i = 1; i < arguments.length; i++) { args[i - 1] = arguments[i]; } } queue.push(new Item(fun, args)); if (queue.length === 1 && !draining) { runTimeout(drainQueue); } }; // v8 likes predictible objects function Item(fun, array) { this.fun = fun; this.array = array; } Item.prototype.run = function () { this.fun.apply(null, this.array); }; process.title = 'browser'; process.browser = true; process.env = {}; process.argv = []; process.version = ''; // empty string to avoid regexp issues process.versions = {}; function noop() {} process.on = noop; process.addListener = noop; process.once = noop; process.off = noop; process.removeListener = noop; process.removeAllListeners = noop; process.emit = noop; process.prependListener = noop; process.prependOnceListener = noop; process.listeners = function (name) { return [] } process.binding = function (name) { throw new Error('process.binding is not supported'); }; process.cwd = function () { return '/' }; process.chdir = function (dir) { throw new Error('process.chdir is not supported'); }; process.umask = function() { return 0; }; },{}],25:[function(require,module,exports){ // Underscore.js 1.8.3 // http://underscorejs.org // (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors // Underscore may be freely distributed under the MIT license. (function() { // Baseline setup // -------------- // Establish the root object, `window` in the browser, or `exports` on the server. var root = this; // Save the previous value of the `_` variable. var previousUnderscore = root._; // Save bytes in the minified (but not gzipped) version: var ArrayProto = Array.prototype, ObjProto = Object.prototype, FuncProto = Function.prototype; // Create quick reference variables for speed access to core prototypes. var push = ArrayProto.push, slice = ArrayProto.slice, toString = ObjProto.toString, hasOwnProperty = ObjProto.hasOwnProperty; // All **ECMAScript 5** native function implementations that we hope to use // are declared here. var nativeIsArray = Array.isArray, nativeKeys = Object.keys, nativeBind = FuncProto.bind, nativeCreate = Object.create; // Naked function reference for surrogate-prototype-swapping. var Ctor = function(){}; // Create a safe reference to the Underscore object for use below. var _ = function(obj) { if (obj instanceof _) return obj; if (!(this instanceof _)) return new _(obj); this._wrapped = obj; }; // Export the Underscore object for **Node.js**, with // backwards-compatibility for the old `require()` API. If we're in // the browser, add `_` as a global object. if (typeof exports !== 'undefined') { if (typeof module !== 'undefined' && module.exports) { exports = module.exports = _; } exports._ = _; } else { root._ = _; } // Current version. _.VERSION = '1.8.3'; // Internal function that returns an efficient (for current engines) version // of the passed-in callback, to be repeatedly applied in other Underscore // functions. var optimizeCb = function(func, context, argCount) { if (context === void 0) return func; switch (argCount == null ? 3 : argCount) { case 1: return function(value) { return func.call(context, value); }; case 2: return function(value, other) { return func.call(context, value, other); }; case 3: return function(value, index, collection) { return func.call(context, value, index, collection); }; case 4: return function(accumulator, value, index, collection) { return func.call(context, accumulator, value, index, collection); }; } return function() { return func.apply(context, arguments); }; }; // A mostly-internal function to generate callbacks that can be applied // to each element in a collection, returning the desired result — either // identity, an arbitrary callback, a property matcher, or a property accessor. var cb = function(value, context, argCount) { if (value == null) return _.identity; if (_.isFunction(value)) return optimizeCb(value, context, argCount); if (_.isObject(value)) return _.matcher(value); return _.property(value); }; _.iteratee = function(value, context) { return cb(value, context, Infinity); }; // An internal function for creating assigner functions. var createAssigner = function(keysFunc, undefinedOnly) { return function(obj) { var length = arguments.length; if (length < 2 || obj == null) return obj; for (var index = 1; index < length; index++) { var source = arguments[index], keys = keysFunc(source), l = keys.length; for (var i = 0; i < l; i++) { var key = keys[i]; if (!undefinedOnly || obj[key] === void 0) obj[key] = source[key]; } } return obj; }; }; // An internal function for creating a new object that inherits from another. var baseCreate = function(prototype) { if (!_.isObject(prototype)) return {}; if (nativeCreate) return nativeCreate(prototype); Ctor.prototype = prototype; var result = new Ctor; Ctor.prototype = null; return result; }; var property = function(key) { return function(obj) { return obj == null ? void 0 : obj[key]; }; }; // Helper for collection methods to determine whether a collection // should be iterated as an array or as an object // Related: http://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength // Avoids a very nasty iOS 8 JIT bug on ARM-64. #2094 var MAX_ARRAY_INDEX = Math.pow(2, 53) - 1; var getLength = property('length'); var isArrayLike = function(collection) { var length = getLength(collection); return typeof length == 'number' && length >= 0 && length <= MAX_ARRAY_INDEX; }; // Collection Functions // -------------------- // The cornerstone, an `each` implementation, aka `forEach`. // Handles raw objects in addition to array-likes. Treats all // sparse array-likes as if they were dense. _.each = _.forEach = function(obj, iteratee, context) { iteratee = optimizeCb(iteratee, context); var i, length; if (isArrayLike(obj)) { for (i = 0, length = obj.length; i < length; i++) { iteratee(obj[i], i, obj); } } else { var keys = _.keys(obj); for (i = 0, length = keys.length; i < length; i++) { iteratee(obj[keys[i]], keys[i], obj); } } return obj; }; // Return the results of applying the iteratee to each element. _.map = _.collect = function(obj, iteratee, context) { iteratee = cb(iteratee, context); var keys = !isArrayLike(obj) && _.keys(obj), length = (keys || obj).length, results = Array(length); for (var index = 0; index < length; index++) { var currentKey = keys ? keys[index] : index; results[index] = iteratee(obj[currentKey], currentKey, obj); } return results; }; // Create a reducing function iterating left or right. function createReduce(dir) { // Optimized iterator function as using arguments.length // in the main function will deoptimize the, see #1991. function iterator(obj, iteratee, memo, keys, index, length) { for (; index >= 0 && index < length; index += dir) { var currentKey = keys ? keys[index] : index; memo = iteratee(memo, obj[currentKey], currentKey, obj); } return memo; } return function(obj, iteratee, memo, context) { iteratee = optimizeCb(iteratee, context, 4); var keys = !isArrayLike(obj) && _.keys(obj), length = (keys || obj).length, index = dir > 0 ? 0 : length - 1; // Determine the initial value if none is provided. if (arguments.length < 3) { memo = obj[keys ? keys[index] : index]; index += dir; } return iterator(obj, iteratee, memo, keys, index, length); }; } // **Reduce** builds up a single result from a list of values, aka `inject`, // or `foldl`. _.reduce = _.foldl = _.inject = createReduce(1); // The right-associative version of reduce, also known as `foldr`. _.reduceRight = _.foldr = createReduce(-1); // Return the first value which passes a truth test. Aliased as `detect`. _.find = _.detect = function(obj, predicate, context) { var key; if (isArrayLike(obj)) { key = _.findIndex(obj, predicate, context); } else { key = _.findKey(obj, predicate, context); } if (key !== void 0 && key !== -1) return obj[key]; }; // Return all the elements that pass a truth test. // Aliased as `select`. _.filter = _.select = function(obj, predicate, context) { var results = []; predicate = cb(predicate, context); _.each(obj, function(value, index, list) { if (predicate(value, index, list)) results.push(value); }); return results; }; // Return all the elements for which a truth test fails. _.reject = function(obj, predicate, context) { return _.filter(obj, _.negate(cb(predicate)), context); }; // Determine whether all of the elements match a truth test. // Aliased as `all`. _.every = _.all = function(obj, predicate, context) { predicate = cb(predicate, context); var keys = !isArrayLike(obj) && _.keys(obj), length = (keys || obj).length; for (var index = 0; index < length; index++) { var currentKey = keys ? keys[index] : index; if (!predicate(obj[currentKey], currentKey, obj)) return false; } return true; }; // Determine if at least one element in the object matches a truth test. // Aliased as `any`. _.some = _.any = function(obj, predicate, context) { predicate = cb(predicate, context); var keys = !isArrayLike(obj) && _.keys(obj), length = (keys || obj).length; for (var index = 0; index < length; index++) { var currentKey = keys ? keys[index] : index; if (predicate(obj[currentKey], currentKey, obj)) return true; } return false; }; // Determine if the array or object contains a given item (using `===`). // Aliased as `includes` and `include`. _.contains = _.includes = _.include = function(obj, item, fromIndex, guard) { if (!isArrayLike(obj)) obj = _.values(obj); if (typeof fromIndex != 'number' || guard) fromIndex = 0; return _.indexOf(obj, item, fromIndex) >= 0; }; // Invoke a method (with arguments) on every item in a collection. _.invoke = function(obj, method) { var args = slice.call(arguments, 2); var isFunc = _.isFunction(method); return _.map(obj, function(value) { var func = isFunc ? method : value[method]; return func == null ? func : func.apply(value, args); }); }; // Convenience version of a common use case of `map`: fetching a property. _.pluck = function(obj, key) { return _.map(obj, _.property(key)); }; // Convenience version of a common use case of `filter`: selecting only objects // containing specific `key:value` pairs. _.where = function(obj, attrs) { return _.filter(obj, _.matcher(attrs)); }; // Convenience version of a common use case of `find`: getting the first object // containing specific `key:value` pairs. _.findWhere = function(obj, attrs) { return _.find(obj, _.matcher(attrs)); }; // Return the maximum element (or element-based computation). _.max = function(obj, iteratee, context) { var result = -Infinity, lastComputed = -Infinity, value, computed; if (iteratee == null && obj != null) { obj = isArrayLike(obj) ? obj : _.values(obj); for (var i = 0, length = obj.length; i < length; i++) { value = obj[i]; if (value > result) { result = value; } } } else { iteratee = cb(iteratee, context); _.each(obj, function(value, index, list) { computed = iteratee(value, index, list); if (computed > lastComputed || computed === -Infinity && result === -Infinity) { result = value; lastComputed = computed; } }); } return result; }; // Return the minimum element (or element-based computation). _.min = function(obj, iteratee, context) { var result = Infinity, lastComputed = Infinity, value, computed; if (iteratee == null && obj != null) { obj = isArrayLike(obj) ? obj : _.values(obj); for (var i = 0, length = obj.length; i < length; i++) { value = obj[i]; if (value < result) { result = value; } } } else { iteratee = cb(iteratee, context); _.each(obj, function(value, index, list) { computed = iteratee(value, index, list); if (computed < lastComputed || computed === Infinity && result === Infinity) { result = value; lastComputed = computed; } }); } return result; }; // Shuffle a collection, using the modern version of the // [Fisher-Yates shuffle](http://en.wikipedia.org/wiki/Fisher–Yates_shuffle). _.shuffle = function(obj) { var set = isArrayLike(obj) ? obj : _.values(obj); var length = set.length; var shuffled = Array(length); for (var index = 0, rand; index < length; index++) { rand = _.random(0, index); if (rand !== index) shuffled[index] = shuffled[rand]; shuffled[rand] = set[index]; } return shuffled; }; // Sample **n** random values from a collection. // If **n** is not specified, returns a single random element. // The internal `guard` argument allows it to work with `map`. _.sample = function(obj, n, guard) { if (n == null || guard) { if (!isArrayLike(obj)) obj = _.values(obj); return obj[_.random(obj.length - 1)]; } return _.shuffle(obj).slice(0, Math.max(0, n)); }; // Sort the object's values by a criterion produced by an iteratee. _.sortBy = function(obj, iteratee, context) { iteratee = cb(iteratee, context); return _.pluck(_.map(obj, function(value, index, list) { return { value: value, index: index, criteria: iteratee(value, index, list) }; }).sort(function(left, right) { var a = left.criteria; var b = right.criteria; if (a !== b) { if (a > b || a === void 0) return 1; if (a < b || b === void 0) return -1; } return left.index - right.index; }), 'value'); }; // An internal function used for aggregate "group by" operations. var group = function(behavior) { return function(obj, iteratee, context) { var result = {}; iteratee = cb(iteratee, context); _.each(obj, function(value, index) { var key = iteratee(value, index, obj); behavior(result, value, key); }); return result; }; }; // Groups the object's values by a criterion. Pass either a string attribute // to group by, or a function that returns the criterion. _.groupBy = group(function(result, value, key) { if (_.has(result, key)) result[key].push(value); else result[key] = [value]; }); // Indexes the object's values by a criterion, similar to `groupBy`, but for // when you know that your index values will be unique. _.indexBy = group(function(result, value, key) { result[key] = value; }); // Counts instances of an object that group by a certain criterion. Pass // either a string attribute to count by, or a function that returns the // criterion. _.countBy = group(function(result, value, key) { if (_.has(result, key)) result[key]++; else result[key] = 1; }); // Safely create a real, live array from anything iterable. _.toArray = function(obj) { if (!obj) return []; if (_.isArray(obj)) return slice.call(obj); if (isArrayLike(obj)) return _.map(obj, _.identity); return _.values(obj); }; // Return the number of elements in an object. _.size = function(obj) { if (obj == null) return 0; return isArrayLike(obj) ? obj.length : _.keys(obj).length; }; // Split a collection into two arrays: one whose elements all satisfy the given // predicate, and one whose elements all do not satisfy the predicate. _.partition = function(obj, predicate, context) { predicate = cb(predicate, context); var pass = [], fail = []; _.each(obj, function(value, key, obj) { (predicate(value, key, obj) ? pass : fail).push(value); }); return [pass, fail]; }; // Array Functions // --------------- // Get the first element of an array. Passing **n** will return the first N // values in the array. Aliased as `head` and `take`. The **guard** check // allows it to work with `_.map`. _.first = _.head = _.take = function(array, n, guard) { if (array == null) return void 0; if (n == null || guard) return array[0]; return _.initial(array, array.length - n); }; // Returns everything but the last entry of the array. Especially useful on // the arguments object. Passing **n** will return all the values in // the array, excluding the last N. _.initial = function(array, n, guard) { return slice.call(array, 0, Math.max(0, array.length - (n == null || guard ? 1 : n))); }; // Get the last element of an array. Passing **n** will return the last N // values in the array. _.last = function(array, n, guard) { if (array == null) return void 0; if (n == null || guard) return array[array.length - 1]; return _.rest(array, Math.max(0, array.length - n)); }; // Returns everything but the first entry of the array. Aliased as `tail` and `drop`. // Especially useful on the arguments object. Passing an **n** will return // the rest N values in the array. _.rest = _.tail = _.drop = function(array, n, guard) { return slice.call(array, n == null || guard ? 1 : n); }; // Trim out all falsy values from an array. _.compact = function(array) { return _.filter(array, _.identity); }; // Internal implementation of a recursive `flatten` function. var flatten = function(input, shallow, strict, startIndex) { var output = [], idx = 0; for (var i = startIndex || 0, length = getLength(input); i < length; i++) { var value = input[i]; if (isArrayLike(value) && (_.isArray(value) || _.isArguments(value))) { //flatten current level of array or arguments object if (!shallow) value = flatten(value, shallow, strict); var j = 0, len = value.length; output.length += len; while (j < len) { output[idx++] = value[j++]; } } else if (!strict) { output[idx++] = value; } } return output; }; // Flatten out an array, either recursively (by default), or just one level. _.flatten = function(array, shallow) { return flatten(array, shallow, false); }; // Return a version of the array that does not contain the specified value(s). _.without = function(array) { return _.difference(array, slice.call(arguments, 1)); }; // Produce a duplicate-free version of the array. If the array has already // been sorted, you have the option of using a faster algorithm. // Aliased as `unique`. _.uniq = _.unique = function(array, isSorted, iteratee, context) { if (!_.isBoolean(isSorted)) { context = iteratee; iteratee = isSorted; isSorted = false; } if (iteratee != null) iteratee = cb(iteratee, context); var result = []; var seen = []; for (var i = 0, length = getLength(array); i < length; i++) { var value = array[i], computed = iteratee ? iteratee(value, i, array) : value; if (isSorted) { if (!i || seen !== computed) result.push(value); seen = computed; } else if (iteratee) { if (!_.contains(seen, computed)) { seen.push(computed); result.push(value); } } else if (!_.contains(result, value)) { result.push(value); } } return result; }; // Produce an array that contains the union: each distinct element from all of // the passed-in arrays. _.union = function() { return _.uniq(flatten(arguments, true, true)); }; // Produce an array that contains every item shared between all the // passed-in arrays. _.intersection = function(array) { var result = []; var argsLength = arguments.length; for (var i = 0, length = getLength(array); i < length; i++) { var item = array[i]; if (_.contains(result, item)) continue; for (var j = 1; j < argsLength; j++) { if (!_.contains(arguments[j], item)) break; } if (j === argsLength) result.push(item); } return result; }; // Take the difference between one array and a number of other arrays. // Only the elements present in just the first array will remain. _.difference = function(array) { var rest = flatten(arguments, true, true, 1); return _.filter(array, function(value){ return !_.contains(rest, value); }); }; // Zip together multiple lists into a single array -- elements that share // an index go together. _.zip = function() { return _.unzip(arguments); }; // Complement of _.zip. Unzip accepts an array of arrays and groups // each array's elements on shared indices _.unzip = function(array) { var length = array && _.max(array, getLength).length || 0; var result = Array(length); for (var index = 0; index < length; index++) { result[index] = _.pluck(array, index); } return result; }; // Converts lists into objects. Pass either a single array of `[key, value]` // pairs, or two parallel arrays of the same length -- one of keys, and one of // the corresponding values. _.object = function(list, values) { var result = {}; for (var i = 0, length = getLength(list); i < length; i++) { if (values) { result[list[i]] = values[i]; } else { result[list[i][0]] = list[i][1]; } } return result; }; // Generator function to create the findIndex and findLastIndex functions function createPredicateIndexFinder(dir) { return function(array, predicate, context) { predicate = cb(predicate, context); var length = getLength(array); var index = dir > 0 ? 0 : length - 1; for (; index >= 0 && index < length; index += dir) { if (predicate(array[index], index, array)) return index; } return -1; }; } // Returns the first index on an array-like that passes a predicate test _.findIndex = createPredicateIndexFinder(1); _.findLastIndex = createPredicateIndexFinder(-1); // Use a comparator function to figure out the smallest index at which // an object should be inserted so as to maintain order. Uses binary search. _.sortedIndex = function(array, obj, iteratee, context) { iteratee = cb(iteratee, context, 1); var value = iteratee(obj); var low = 0, high = getLength(array); while (low < high) { var mid = Math.floor((low + high) / 2); if (iteratee(array[mid]) < value) low = mid + 1; else high = mid; } return low; }; // Generator function to create the indexOf and lastIndexOf functions function createIndexFinder(dir, predicateFind, sortedIndex) { return function(array, item, idx) { var i = 0, length = getLength(array); if (typeof idx == 'number') { if (dir > 0) { i = idx >= 0 ? idx : Math.max(idx + length, i); } else { length = idx >= 0 ? Math.min(idx + 1, length) : idx + length + 1; } } else if (sortedIndex && idx && length) { idx = sortedIndex(array, item); return array[idx] === item ? idx : -1; } if (item !== item) { idx = predicateFind(slice.call(array, i, length), _.isNaN); return idx >= 0 ? idx + i : -1; } for (idx = dir > 0 ? i : length - 1; idx >= 0 && idx < length; idx += dir) { if (array[idx] === item) return idx; } return -1; }; } // Return the position of the first occurrence of an item in an array, // or -1 if the item is not included in the array. // If the array is large and already in sort order, pass `true` // for **isSorted** to use binary search. _.indexOf = createIndexFinder(1, _.findIndex, _.sortedIndex); _.lastIndexOf = createIndexFinder(-1, _.findLastIndex); // Generate an integer Array containing an arithmetic progression. A port of // the native Python `range()` function. See // [the Python documentation](http://docs.python.org/library/functions.html#range). _.range = function(start, stop, step) { if (stop == null) { stop = start || 0; start = 0; } step = step || 1; var length = Math.max(Math.ceil((stop - start) / step), 0); var range = Array(length); for (var idx = 0; idx < length; idx++, start += step) { range[idx] = start; } return range; }; // Function (ahem) Functions // ------------------ // Determines whether to execute a function as a constructor // or a normal function with the provided arguments var executeBound = function(sourceFunc, boundFunc, context, callingContext, args) { if (!(callingContext instanceof boundFunc)) return sourceFunc.apply(context, args); var self = baseCreate(sourceFunc.prototype); var result = sourceFunc.apply(self, args); if (_.isObject(result)) return result; return self; }; // Create a function bound to a given object (assigning `this`, and arguments, // optionally). Delegates to **ECMAScript 5**'s native `Function.bind` if // available. _.bind = function(func, context) { if (nativeBind && func.bind === nativeBind) return nativeBind.apply(func, slice.call(arguments, 1)); if (!_.isFunction(func)) throw new TypeError('Bind must be called on a function'); var args = slice.call(arguments, 2); var bound = function() { return executeBound(func, bound, context, this, args.concat(slice.call(arguments))); }; return bound; }; // Partially apply a function by creating a version that has had some of its // arguments pre-filled, without changing its dynamic `this` context. _ acts // as a placeholder, allowing any combination of arguments to be pre-filled. _.partial = function(func) { var boundArgs = slice.call(arguments, 1); var bound = function() { var position = 0, length = boundArgs.length; var args = Array(length); for (var i = 0; i < length; i++) { args[i] = boundArgs[i] === _ ? arguments[position++] : boundArgs[i]; } while (position < arguments.length) args.push(arguments[position++]); return executeBound(func, bound, this, this, args); }; return bound; }; // Bind a number of an object's methods to that object. Remaining arguments // are the method names to be bound. Useful for ensuring that all callbacks // defined on an object belong to it. _.bindAll = function(obj) { var i, length = arguments.length, key; if (length <= 1) throw new Error('bindAll must be passed function names'); for (i = 1; i < length; i++) { key = arguments[i]; obj[key] = _.bind(obj[key], obj); } return obj; }; // Memoize an expensive function by storing its results. _.memoize = function(func, hasher) { var memoize = function(key) { var cache = memoize.cache; var address = '' + (hasher ? hasher.apply(this, arguments) : key); if (!_.has(cache, address)) cache[address] = func.apply(this, arguments); return cache[address]; }; memoize.cache = {}; return memoize; }; // Delays a function for the given number of milliseconds, and then calls // it with the arguments supplied. _.delay = function(func, wait) { var args = slice.call(arguments, 2); return setTimeout(function(){ return func.apply(null, args); }, wait); }; // Defers a function, scheduling it to run after the current call stack has // cleared. _.defer = _.partial(_.delay, _, 1); // Returns a function, that, when invoked, will only be triggered at most once // during a given window of time. Normally, the throttled function will run // as much as it can, without ever going more than once per `wait` duration; // but if you'd like to disable the execution on the leading edge, pass // `{leading: false}`. To disable execution on the trailing edge, ditto. _.throttle = function(func, wait, options) { var context, args, result; var timeout = null; var previous = 0; if (!options) options = {}; var later = function() { previous = options.leading === false ? 0 : _.now(); timeout = null; result = func.apply(context, args); if (!timeout) context = args = null; }; return function() { var now = _.now(); if (!previous && options.leading === false) previous = now; var remaining = wait - (now - previous); context = this; args = arguments; if (remaining <= 0 || remaining > wait) { if (timeout) { clearTimeout(timeout); timeout = null; } previous = now; result = func.apply(context, args); if (!timeout) context = args = null; } else if (!timeout && options.trailing !== false) { timeout = setTimeout(later, remaining); } return result; }; }; // Returns a function, that, as long as it continues to be invoked, will not // be triggered. The function will be called after it stops being called for // N milliseconds. If `immediate` is passed, trigger the function on the // leading edge, instead of the trailing. _.debounce = function(func, wait, immediate) { var timeout, args, context, timestamp, result; var later = function() { var last = _.now() - timestamp; if (last < wait && last >= 0) { timeout = setTimeout(later, wait - last); } else { timeout = null; if (!immediate) { result = func.apply(context, args); if (!timeout) context = args = null; } } }; return function() { context = this; args = arguments; timestamp = _.now(); var callNow = immediate && !timeout; if (!timeout) timeout = setTimeout(later, wait); if (callNow) { result = func.apply(context, args); context = args = null; } return result; }; }; // Returns the first function passed as an argument to the second, // allowing you to adjust arguments, run code before and after, and // conditionally execute the original function. _.wrap = function(func, wrapper) { return _.partial(wrapper, func); }; // Returns a negated version of the passed-in predicate. _.negate = function(predicate) { return function() { return !predicate.apply(this, arguments); }; }; // Returns a function that is the composition of a list of functions, each // consuming the return value of the function that follows. _.compose = function() { var args = arguments; var start = args.length - 1; return function() { var i = start; var result = args[start].apply(this, arguments); while (i--) result = args[i].call(this, result); return result; }; }; // Returns a function that will only be executed on and after the Nth call. _.after = function(times, func) { return function() { if (--times < 1) { return func.apply(this, arguments); } }; }; // Returns a function that will only be executed up to (but not including) the Nth call. _.before = function(times, func) { var memo; return function() { if (--times > 0) { memo = func.apply(this, arguments); } if (times <= 1) func = null; return memo; }; }; // Returns a function that will be executed at most one time, no matter how // often you call it. Useful for lazy initialization. _.once = _.partial(_.before, 2); // Object Functions // ---------------- // Keys in IE < 9 that won't be iterated by `for key in ...` and thus missed. var hasEnumBug = !{toString: null}.propertyIsEnumerable('toString'); var nonEnumerableProps = ['valueOf', 'isPrototypeOf', 'toString', 'propertyIsEnumerable', 'hasOwnProperty', 'toLocaleString']; function collectNonEnumProps(obj, keys) { var nonEnumIdx = nonEnumerableProps.length; var constructor = obj.constructor; var proto = (_.isFunction(constructor) && constructor.prototype) || ObjProto; // Constructor is a special case. var prop = 'constructor'; if (_.has(obj, prop) && !_.contains(keys, prop)) keys.push(prop); while (nonEnumIdx--) { prop = nonEnumerableProps[nonEnumIdx]; if (prop in obj && obj[prop] !== proto[prop] && !_.contains(keys, prop)) { keys.push(prop); } } } // Retrieve the names of an object's own properties. // Delegates to **ECMAScript 5**'s native `Object.keys` _.keys = function(obj) { if (!_.isObject(obj)) return []; if (nativeKeys) return nativeKeys(obj); var keys = []; for (var key in obj) if (_.has(obj, key)) keys.push(key); // Ahem, IE < 9. if (hasEnumBug) collectNonEnumProps(obj, keys); return keys; }; // Retrieve all the property names of an object. _.allKeys = function(obj) { if (!_.isObject(obj)) return []; var keys = []; for (var key in obj) keys.push(key); // Ahem, IE < 9. if (hasEnumBug) collectNonEnumProps(obj, keys); return keys; }; // Retrieve the values of an object's properties. _.values = function(obj) { var keys = _.keys(obj); var length = keys.length; var values = Array(length); for (var i = 0; i < length; i++) { values[i] = obj[keys[i]]; } return values; }; // Returns the results of applying the iteratee to each element of the object // In contrast to _.map it returns an object _.mapObject = function(obj, iteratee, context) { iteratee = cb(iteratee, context); var keys = _.keys(obj), length = keys.length, results = {}, currentKey; for (var index = 0; index < length; index++) { currentKey = keys[index]; results[currentKey] = iteratee(obj[currentKey], currentKey, obj); } return results; }; // Convert an object into a list of `[key, value]` pairs. _.pairs = function(obj) { var keys = _.keys(obj); var length = keys.length; var pairs = Array(length); for (var i = 0; i < length; i++) { pairs[i] = [keys[i], obj[keys[i]]]; } return pairs; }; // Invert the keys and values of an object. The values must be serializable. _.invert = function(obj) { var result = {}; var keys = _.keys(obj); for (var i = 0, length = keys.length; i < length; i++) { result[obj[keys[i]]] = keys[i]; } return result; }; // Return a sorted list of the function names available on the object. // Aliased as `methods` _.functions = _.methods = function(obj) { var names = []; for (var key in obj) { if (_.isFunction(obj[key])) names.push(key); } return names.sort(); }; // Extend a given object with all the properties in passed-in object(s). _.extend = createAssigner(_.allKeys); // Assigns a given object with all the own properties in the passed-in object(s) // (https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object/assign) _.extendOwn = _.assign = createAssigner(_.keys); // Returns the first key on an object that passes a predicate test _.findKey = function(obj, predicate, context) { predicate = cb(predicate, context); var keys = _.keys(obj), key; for (var i = 0, length = keys.length; i < length; i++) { key = keys[i]; if (predicate(obj[key], key, obj)) return key; } }; // Return a copy of the object only containing the whitelisted properties. _.pick = function(object, oiteratee, context) { var result = {}, obj = object, iteratee, keys; if (obj == null) return result; if (_.isFunction(oiteratee)) { keys = _.allKeys(obj); iteratee = optimizeCb(oiteratee, context); } else { keys = flatten(arguments, false, false, 1); iteratee = function(value, key, obj) { return key in obj; }; obj = Object(obj); } for (var i = 0, length = keys.length; i < length; i++) { var key = keys[i]; var value = obj[key]; if (iteratee(value, key, obj)) result[key] = value; } return result; }; // Return a copy of the object without the blacklisted properties. _.omit = function(obj, iteratee, context) { if (_.isFunction(iteratee)) { iteratee = _.negate(iteratee); } else { var keys = _.map(flatten(arguments, false, false, 1), String); iteratee = function(value, key) { return !_.contains(keys, key); }; } return _.pick(obj, iteratee, context); }; // Fill in a given object with default properties. _.defaults = createAssigner(_.allKeys, true); // Creates an object that inherits from the given prototype object. // If additional properties are provided then they will be added to the // created object. _.create = function(prototype, props) { var result = baseCreate(prototype); if (props) _.extendOwn(result, props); return result; }; // Create a (shallow-cloned) duplicate of an object. _.clone = function(obj) { if (!_.isObject(obj)) return obj; return _.isArray(obj) ? obj.slice() : _.extend({}, obj); }; // Invokes interceptor with the obj, and then returns obj. // The primary purpose of this method is to "tap into" a method chain, in // order to perform operations on intermediate results within the chain. _.tap = function(obj, interceptor) { interceptor(obj); return obj; }; // Returns whether an object has a given set of `key:value` pairs. _.isMatch = function(object, attrs) { var keys = _.keys(attrs), length = keys.length; if (object == null) return !length; var obj = Object(object); for (var i = 0; i < length; i++) { var key = keys[i]; if (attrs[key] !== obj[key] || !(key in obj)) return false; } return true; }; // Internal recursive comparison function for `isEqual`. var eq = function(a, b, aStack, bStack) { // Identical objects are equal. `0 === -0`, but they aren't identical. // See the [Harmony `egal` proposal](http://wiki.ecmascript.org/doku.php?id=harmony:egal). if (a === b) return a !== 0 || 1 / a === 1 / b; // A strict comparison is necessary because `null == undefined`. if (a == null || b == null) return a === b; // Unwrap any wrapped objects. if (a instanceof _) a = a._wrapped; if (b instanceof _) b = b._wrapped; // Compare `[[Class]]` names. var className = toString.call(a); if (className !== toString.call(b)) return false; switch (className) { // Strings, numbers, regular expressions, dates, and booleans are compared by value. case '[object RegExp]': // RegExps are coerced to strings for comparison (Note: '' + /a/i === '/a/i') case '[object String]': // Primitives and their corresponding object wrappers are equivalent; thus, `"5"` is // equivalent to `new String("5")`. return '' + a === '' + b; case '[object Number]': // `NaN`s are equivalent, but non-reflexive. // Object(NaN) is equivalent to NaN if (+a !== +a) return +b !== +b; // An `egal` comparison is performed for other numeric values. return +a === 0 ? 1 / +a === 1 / b : +a === +b; case '[object Date]': case '[object Boolean]': // Coerce dates and booleans to numeric primitive values. Dates are compared by their // millisecond representations. Note that invalid dates with millisecond representations // of `NaN` are not equivalent. return +a === +b; } var areArrays = className === '[object Array]'; if (!areArrays) { if (typeof a != 'object' || typeof b != 'object') return false; // Objects with different constructors are not equivalent, but `Object`s or `Array`s // from different frames are. var aCtor = a.constructor, bCtor = b.constructor; if (aCtor !== bCtor && !(_.isFunction(aCtor) && aCtor instanceof aCtor && _.isFunction(bCtor) && bCtor instanceof bCtor) && ('constructor' in a && 'constructor' in b)) { return false; } } // Assume equality for cyclic structures. The algorithm for detecting cyclic // structures is adapted from ES 5.1 section 15.12.3, abstract operation `JO`. // Initializing stack of traversed objects. // It's done here since we only need them for objects and arrays comparison. aStack = aStack || []; bStack = bStack || []; var length = aStack.length; while (length--) { // Linear search. Performance is inversely proportional to the number of // unique nested structures. if (aStack[length] === a) return bStack[length] === b; } // Add the first object to the stack of traversed objects. aStack.push(a); bStack.push(b); // Recursively compare objects and arrays. if (areArrays) { // Compare array lengths to determine if a deep comparison is necessary. length = a.length; if (length !== b.length) return false; // Deep compare the contents, ignoring non-numeric properties. while (length--) { if (!eq(a[length], b[length], aStack, bStack)) return false; } } else { // Deep compare objects. var keys = _.keys(a), key; length = keys.length; // Ensure that both objects contain the same number of properties before comparing deep equality. if (_.keys(b).length !== length) return false; while (length--) { // Deep compare each member key = keys[length]; if (!(_.has(b, key) && eq(a[key], b[key], aStack, bStack))) return false; } } // Remove the first object from the stack of traversed objects. aStack.pop(); bStack.pop(); return true; }; // Perform a deep comparison to check if two objects are equal. _.isEqual = function(a, b) { return eq(a, b); }; // Is a given array, string, or object empty? // An "empty" object has no enumerable own-properties. _.isEmpty = function(obj) { if (obj == null) return true; if (isArrayLike(obj) && (_.isArray(obj) || _.isString(obj) || _.isArguments(obj))) return obj.length === 0; return _.keys(obj).length === 0; }; // Is a given value a DOM element? _.isElement = function(obj) { return !!(obj && obj.nodeType === 1); }; // Is a given value an array? // Delegates to ECMA5's native Array.isArray _.isArray = nativeIsArray || function(obj) { return toString.call(obj) === '[object Array]'; }; // Is a given variable an object? _.isObject = function(obj) { var type = typeof obj; return type === 'function' || type === 'object' && !!obj; }; // Add some isType methods: isArguments, isFunction, isString, isNumber, isDate, isRegExp, isError. _.each(['Arguments', 'Function', 'String', 'Number', 'Date', 'RegExp', 'Error'], function(name) { _['is' + name] = function(obj) { return toString.call(obj) === '[object ' + name + ']'; }; }); // Define a fallback version of the method in browsers (ahem, IE < 9), where // there isn't any inspectable "Arguments" type. if (!_.isArguments(arguments)) { _.isArguments = function(obj) { return _.has(obj, 'callee'); }; } // Optimize `isFunction` if appropriate. Work around some typeof bugs in old v8, // IE 11 (#1621), and in Safari 8 (#1929). if (typeof /./ != 'function' && typeof Int8Array != 'object') { _.isFunction = function(obj) { return typeof obj == 'function' || false; }; } // Is a given object a finite number? _.isFinite = function(obj) { return isFinite(obj) && !isNaN(parseFloat(obj)); }; // Is the given value `NaN`? (NaN is the only number which does not equal itself). _.isNaN = function(obj) { return _.isNumber(obj) && obj !== +obj; }; // Is a given value a boolean? _.isBoolean = function(obj) { return obj === true || obj === false || toString.call(obj) === '[object Boolean]'; }; // Is a given value equal to null? _.isNull = function(obj) { return obj === null; }; // Is a given variable undefined? _.isUndefined = function(obj) { return obj === void 0; }; // Shortcut function for checking if an object has a given property directly // on itself (in other words, not on a prototype). _.has = function(obj, key) { return obj != null && hasOwnProperty.call(obj, key); }; // Utility Functions // ----------------- // Run Underscore.js in *noConflict* mode, returning the `_` variable to its // previous owner. Returns a reference to the Underscore object. _.noConflict = function() { root._ = previousUnderscore; return this; }; // Keep the identity function around for default iteratees. _.identity = function(value) { return value; }; // Predicate-generating functions. Often useful outside of Underscore. _.constant = function(value) { return function() { return value; }; }; _.noop = function(){}; _.property = property; // Generates a function for a given object that returns a given property. _.propertyOf = function(obj) { return obj == null ? function(){} : function(key) { return obj[key]; }; }; // Returns a predicate for checking whether an object has a given set of // `key:value` pairs. _.matcher = _.matches = function(attrs) { attrs = _.extendOwn({}, attrs); return function(obj) { return _.isMatch(obj, attrs); }; }; // Run a function **n** times. _.times = function(n, iteratee, context) { var accum = Array(Math.max(0, n)); iteratee = optimizeCb(iteratee, context, 1); for (var i = 0; i < n; i++) accum[i] = iteratee(i); return accum; }; // Return a random integer between min and max (inclusive). _.random = function(min, max) { if (max == null) { max = min; min = 0; } return min + Math.floor(Math.random() * (max - min + 1)); }; // A (possibly faster) way to get the current timestamp as an integer. _.now = Date.now || function() { return new Date().getTime(); }; // List of HTML entities for escaping. var escapeMap = { '&': '&', '<': '<', '>': '>', '"': '"', "'": ''', '`': '`' }; var unescapeMap = _.invert(escapeMap); // Functions for escaping and unescaping strings to/from HTML interpolation. var createEscaper = function(map) { var escaper = function(match) { return map[match]; }; // Regexes for identifying a key that needs to be escaped var source = '(?:' + _.keys(map).join('|') + ')'; var testRegexp = RegExp(source); var replaceRegexp = RegExp(source, 'g'); return function(string) { string = string == null ? '' : '' + string; return testRegexp.test(string) ? string.replace(replaceRegexp, escaper) : string; }; }; _.escape = createEscaper(escapeMap); _.unescape = createEscaper(unescapeMap); // If the value of the named `property` is a function then invoke it with the // `object` as context; otherwise, return it. _.result = function(object, property, fallback) { var value = object == null ? void 0 : object[property]; if (value === void 0) { value = fallback; } return _.isFunction(value) ? value.call(object) : value; }; // Generate a unique integer id (unique within the entire client session). // Useful for temporary DOM ids. var idCounter = 0; _.uniqueId = function(prefix) { var id = ++idCounter + ''; return prefix ? prefix + id : id; }; // By default, Underscore uses ERB-style template delimiters, change the // following template settings to use alternative delimiters. _.templateSettings = { evaluate : /<%([\s\S]+?)%>/g, interpolate : /<%=([\s\S]+?)%>/g, escape : /<%-([\s\S]+?)%>/g }; // When customizing `templateSettings`, if you don't want to define an // interpolation, evaluation or escaping regex, we need one that is // guaranteed not to match. var noMatch = /(.)^/; // Certain characters need to be escaped so that they can be put into a // string literal. var escapes = { "'": "'", '\\': '\\', '\r': 'r', '\n': 'n', '\u2028': 'u2028', '\u2029': 'u2029' }; var escaper = /\\|'|\r|\n|\u2028|\u2029/g; var escapeChar = function(match) { return '\\' + escapes[match]; }; // JavaScript micro-templating, similar to John Resig's implementation. // Underscore templating handles arbitrary delimiters, preserves whitespace, // and correctly escapes quotes within interpolated code. // NB: `oldSettings` only exists for backwards compatibility. _.template = function(text, settings, oldSettings) { if (!settings && oldSettings) settings = oldSettings; settings = _.defaults({}, settings, _.templateSettings); // Combine delimiters into one regular expression via alternation. var matcher = RegExp([ (settings.escape || noMatch).source, (settings.interpolate || noMatch).source, (settings.evaluate || noMatch).source ].join('|') + '|$', 'g'); // Compile the template source, escaping string literals appropriately. var index = 0; var source = "__p+='"; text.replace(matcher, function(match, escape, interpolate, evaluate, offset) { source += text.slice(index, offset).replace(escaper, escapeChar); index = offset + match.length; if (escape) { source += "'+\n((__t=(" + escape + "))==null?'':_.escape(__t))+\n'"; } else if (interpolate) { source += "'+\n((__t=(" + interpolate + "))==null?'':__t)+\n'"; } else if (evaluate) { source += "';\n" + evaluate + "\n__p+='"; } // Adobe VMs need the match returned to produce the correct offest. return match; }); source += "';\n"; // If a variable is not specified, place data values in local scope. if (!settings.variable) source = 'with(obj||{}){\n' + source + '}\n'; source = "var __t,__p='',__j=Array.prototype.join," + "print=function(){__p+=__j.call(arguments,'');};\n" + source + 'return __p;\n'; try { var render = new Function(settings.variable || 'obj', '_', source); } catch (e) { e.source = source; throw e; } var template = function(data) { return render.call(this, data, _); }; // Provide the compiled source as a convenience for precompilation. var argument = settings.variable || 'obj'; template.source = 'function(' + argument + '){\n' + source + '}'; return template; }; // Add a "chain" function. Start chaining a wrapped Underscore object. _.chain = function(obj) { var instance = _(obj); instance._chain = true; return instance; }; // OOP // --------------- // If Underscore is called as a function, it returns a wrapped object that // can be used OO-style. This wrapper holds altered versions of all the // underscore functions. Wrapped objects may be chained. // Helper function to continue chaining intermediate results. var result = function(instance, obj) { return instance._chain ? _(obj).chain() : obj; }; // Add your own custom functions to the Underscore object. _.mixin = function(obj) { _.each(_.functions(obj), function(name) { var func = _[name] = obj[name]; _.prototype[name] = function() { var args = [this._wrapped]; push.apply(args, arguments); return result(this, func.apply(_, args)); }; }); }; // Add all of the Underscore functions to the wrapper object. _.mixin(_); // Add all mutator Array functions to the wrapper. _.each(['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], function(name) { var method = ArrayProto[name]; _.prototype[name] = function() { var obj = this._wrapped; method.apply(obj, arguments); if ((name === 'shift' || name === 'splice') && obj.length === 0) delete obj[0]; return result(this, obj); }; }); // Add all accessor Array functions to the wrapper. _.each(['concat', 'join', 'slice'], function(name) { var method = ArrayProto[name]; _.prototype[name] = function() { return result(this, method.apply(this._wrapped, arguments)); }; }); // Extracts the result from a wrapped and chained object. _.prototype.value = function() { return this._wrapped; }; // Provide unwrapping proxy for some methods used in engine operations // such as arithmetic and JSON stringification. _.prototype.valueOf = _.prototype.toJSON = _.prototype.value; _.prototype.toString = function() { return '' + this._wrapped; }; // AMD registration happens at the end for compatibility with AMD loaders // that may not enforce next-turn semantics on modules. Even though general // practice for AMD registration is to be anonymous, underscore registers // as a named module because, like jQuery, it is a base library that is // popular enough to be bundled in a third party lib, but not be part of // an AMD load request. Those cases could generate an error when an // anonymous define() is called outside of a loader request. if (typeof define === 'function' && define.amd) { define('underscore', [], function() { return _; }); } }.call(this)); },{}],26:[function(require,module,exports){ arguments[4][19][0].apply(exports,arguments) },{"dup":19}],27:[function(require,module,exports){ module.exports = function isBuffer(arg) { return arg && typeof arg === 'object' && typeof arg.copy === 'function' && typeof arg.fill === 'function' && typeof arg.readUInt8 === 'function'; } },{}],28:[function(require,module,exports){ (function (process,global){ // Copyright Joyent, Inc. and other Node contributors. // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublicense, and/or sell copies of the Software, and to permit // persons to whom the Software is furnished to do so, subject to the // following conditions: // // The above copyright notice and this permission notice shall be included // in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // USE OR OTHER DEALINGS IN THE SOFTWARE. var formatRegExp = /%[sdj%]/g; exports.format = function(f) { if (!isString(f)) { var objects = []; for (var i = 0; i < arguments.length; i++) { objects.push(inspect(arguments[i])); } return objects.join(' '); } var i = 1; var args = arguments; var len = args.length; var str = String(f).replace(formatRegExp, function(x) { if (x === '%%') return '%'; if (i >= len) return x; switch (x) { case '%s': return String(args[i++]); case '%d': return Number(args[i++]); case '%j': try { return JSON.stringify(args[i++]); } catch (_) { return '[Circular]'; } default: return x; } }); for (var x = args[i]; i < len; x = args[++i]) { if (isNull(x) || !isObject(x)) { str += ' ' + x; } else { str += ' ' + inspect(x); } } return str; }; // Mark that a method should not be used. // Returns a modified function which warns once by default. // If --no-deprecation is set, then it is a no-op. exports.deprecate = function(fn, msg) { // Allow for deprecating things in the process of starting up. if (isUndefined(global.process)) { return function() { return exports.deprecate(fn, msg).apply(this, arguments); }; } if (process.noDeprecation === true) { return fn; } var warned = false; function deprecated() { if (!warned) { if (process.throwDeprecation) { throw new Error(msg); } else if (process.traceDeprecation) { console.trace(msg); } else { console.error(msg); } warned = true; } return fn.apply(this, arguments); } return deprecated; }; var debugs = {}; var debugEnviron; exports.debuglog = function(set) { if (isUndefined(debugEnviron)) debugEnviron = process.env.NODE_DEBUG || ''; set = set.toUpperCase(); if (!debugs[set]) { if (new RegExp('\\b' + set + '\\b', 'i').test(debugEnviron)) { var pid = process.pid; debugs[set] = function() { var msg = exports.format.apply(exports, arguments); console.error('%s %d: %s', set, pid, msg); }; } else { debugs[set] = function() {}; } } return debugs[set]; }; /** * Echos the value of a value. Trys to print the value out * in the best way possible given the different types. * * @param {Object} obj The object to print out. * @param {Object} opts Optional options object that alters the output. */ /* legacy: obj, showHidden, depth, colors*/ function inspect(obj, opts) { // default options var ctx = { seen: [], stylize: stylizeNoColor }; // legacy... if (arguments.length >= 3) ctx.depth = arguments[2]; if (arguments.length >= 4) ctx.colors = arguments[3]; if (isBoolean(opts)) { // legacy... ctx.showHidden = opts; } else if (opts) { // got an "options" object exports._extend(ctx, opts); } // set default options if (isUndefined(ctx.showHidden)) ctx.showHidden = false; if (isUndefined(ctx.depth)) ctx.depth = 2; if (isUndefined(ctx.colors)) ctx.colors = false; if (isUndefined(ctx.customInspect)) ctx.customInspect = true; if (ctx.colors) ctx.stylize = stylizeWithColor; return formatValue(ctx, obj, ctx.depth); } exports.inspect = inspect; // http://en.wikipedia.org/wiki/ANSI_escape_code#graphics inspect.colors = { 'bold' : [1, 22], 'italic' : [3, 23], 'underline' : [4, 24], 'inverse' : [7, 27], 'white' : [37, 39], 'grey' : [90, 39], 'black' : [30, 39], 'blue' : [34, 39], 'cyan' : [36, 39], 'green' : [32, 39], 'magenta' : [35, 39], 'red' : [31, 39], 'yellow' : [33, 39] }; // Don't use 'blue' not visible on cmd.exe inspect.styles = { 'special': 'cyan', 'number': 'yellow', 'boolean': 'yellow', 'undefined': 'grey', 'null': 'bold', 'string': 'green', 'date': 'magenta', // "name": intentionally not styling 'regexp': 'red' }; function stylizeWithColor(str, styleType) { var style = inspect.styles[styleType]; if (style) { return '\u001b[' + inspect.colors[style][0] + 'm' + str + '\u001b[' + inspect.colors[style][1] + 'm'; } else { return str; } } function stylizeNoColor(str, styleType) { return str; } function arrayToHash(array) { var hash = {}; array.forEach(function(val, idx) { hash[val] = true; }); return hash; } function formatValue(ctx, value, recurseTimes) { // Provide a hook for user-specified inspect functions. // Check that value is an object with an inspect function on it if (ctx.customInspect && value && isFunction(value.inspect) && // Filter out the util module, it's inspect function is special value.inspect !== exports.inspect && // Also filter out any prototype objects using the circular check. !(value.constructor && value.constructor.prototype === value)) { var ret = value.inspect(recurseTimes, ctx); if (!isString(ret)) { ret = formatValue(ctx, ret, recurseTimes); } return ret; } // Primitive types cannot have properties var primitive = formatPrimitive(ctx, value); if (primitive) { return primitive; } // Look up the keys of the object. var keys = Object.keys(value); var visibleKeys = arrayToHash(keys); if (ctx.showHidden) { keys = Object.getOwnPropertyNames(value); } // IE doesn't make error fields non-enumerable // http://msdn.microsoft.com/en-us/library/ie/dww52sbt(v=vs.94).aspx if (isError(value) && (keys.indexOf('message') >= 0 || keys.indexOf('description') >= 0)) { return formatError(value); } // Some type of object without properties can be shortcutted. if (keys.length === 0) { if (isFunction(value)) { var name = value.name ? ': ' + value.name : ''; return ctx.stylize('[Function' + name + ']', 'special'); } if (isRegExp(value)) { return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp'); } if (isDate(value)) { return ctx.stylize(Date.prototype.toString.call(value), 'date'); } if (isError(value)) { return formatError(value); } } var base = '', array = false, braces = ['{', '}']; // Make Array say that they are Array if (isArray(value)) { array = true; braces = ['[', ']']; } // Make functions say that they are functions if (isFunction(value)) { var n = value.name ? ': ' + value.name : ''; base = ' [Function' + n + ']'; } // Make RegExps say that they are RegExps if (isRegExp(value)) { base = ' ' + RegExp.prototype.toString.call(value); } // Make dates with properties first say the date if (isDate(value)) { base = ' ' + Date.prototype.toUTCString.call(value); } // Make error with message first say the error if (isError(value)) { base = ' ' + formatError(value); } if (keys.length === 0 && (!array || value.length == 0)) { return braces[0] + base + braces[1]; } if (recurseTimes < 0) { if (isRegExp(value)) { return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp'); } else { return ctx.stylize('[Object]', 'special'); } } ctx.seen.push(value); var output; if (array) { output = formatArray(ctx, value, recurseTimes, visibleKeys, keys); } else { output = keys.map(function(key) { return formatProperty(ctx, value, recurseTimes, visibleKeys, key, array); }); } ctx.seen.pop(); return reduceToSingleString(output, base, braces); } function formatPrimitive(ctx, value) { if (isUndefined(value)) return ctx.stylize('undefined', 'undefined'); if (isString(value)) { var simple = '\'' + JSON.stringify(value).replace(/^"|"$/g, '') .replace(/'/g, "\\'") .replace(/\\"/g, '"') + '\''; return ctx.stylize(simple, 'string'); } if (isNumber(value)) return ctx.stylize('' + value, 'number'); if (isBoolean(value)) return ctx.stylize('' + value, 'boolean'); // For some reason typeof null is "object", so special case here. if (isNull(value)) return ctx.stylize('null', 'null'); } function formatError(value) { return '[' + Error.prototype.toString.call(value) + ']'; } function formatArray(ctx, value, recurseTimes, visibleKeys, keys) { var output = []; for (var i = 0, l = value.length; i < l; ++i) { if (hasOwnProperty(value, String(i))) { output.push(formatProperty(ctx, value, recurseTimes, visibleKeys, String(i), true)); } else { output.push(''); } } keys.forEach(function(key) { if (!key.match(/^\d+$/)) { output.push(formatProperty(ctx, value, recurseTimes, visibleKeys, key, true)); } }); return output; } function formatProperty(ctx, value, recurseTimes, visibleKeys, key, array) { var name, str, desc; desc = Object.getOwnPropertyDescriptor(value, key) || { value: value[key] }; if (desc.get) { if (desc.set) { str = ctx.stylize('[Getter/Setter]', 'special'); } else { str = ctx.stylize('[Getter]', 'special'); } } else { if (desc.set) { str = ctx.stylize('[Setter]', 'special'); } } if (!hasOwnProperty(visibleKeys, key)) { name = '[' + key + ']'; } if (!str) { if (ctx.seen.indexOf(desc.value) < 0) { if (isNull(recurseTimes)) { str = formatValue(ctx, desc.value, null); } else { str = formatValue(ctx, desc.value, recurseTimes - 1); } if (str.indexOf('\n') > -1) { if (array) { str = str.split('\n').map(function(line) { return ' ' + line; }).join('\n').substr(2); } else { str = '\n' + str.split('\n').map(function(line) { return ' ' + line; }).join('\n'); } } } else { str = ctx.stylize('[Circular]', 'special'); } } if (isUndefined(name)) { if (array && key.match(/^\d+$/)) { return str; } name = JSON.stringify('' + key); if (name.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)) { name = name.substr(1, name.length - 2); name = ctx.stylize(name, 'name'); } else { name = name.replace(/'/g, "\\'") .replace(/\\"/g, '"') .replace(/(^"|"$)/g, "'"); name = ctx.stylize(name, 'string'); } } return name + ': ' + str; } function reduceToSingleString(output, base, braces) { var numLinesEst = 0; var length = output.reduce(function(prev, cur) { numLinesEst++; if (cur.indexOf('\n') >= 0) numLinesEst++; return prev + cur.replace(/\u001b\[\d\d?m/g, '').length + 1; }, 0); if (length > 60) { return braces[0] + (base === '' ? '' : base + '\n ') + ' ' + output.join(',\n ') + ' ' + braces[1]; } return braces[0] + base + ' ' + output.join(', ') + ' ' + braces[1]; } // NOTE: These type checking functions intentionally don't use `instanceof` // because it is fragile and can be easily faked with `Object.create()`. function isArray(ar) { return Array.isArray(ar); } exports.isArray = isArray; function isBoolean(arg) { return typeof arg === 'boolean'; } exports.isBoolean = isBoolean; function isNull(arg) { return arg === null; } exports.isNull = isNull; function isNullOrUndefined(arg) { return arg == null; } exports.isNullOrUndefined = isNullOrUndefined; function isNumber(arg) { return typeof arg === 'number'; } exports.isNumber = isNumber; function isString(arg) { return typeof arg === 'string'; } exports.isString = isString; function isSymbol(arg) { return typeof arg === 'symbol'; } exports.isSymbol = isSymbol; function isUndefined(arg) { return arg === void 0; } exports.isUndefined = isUndefined; function isRegExp(re) { return isObject(re) && objectToString(re) === '[object RegExp]'; } exports.isRegExp = isRegExp; function isObject(arg) { return typeof arg === 'object' && arg !== null; } exports.isObject = isObject; function isDate(d) { return isObject(d) && objectToString(d) === '[object Date]'; } exports.isDate = isDate; function isError(e) { return isObject(e) && (objectToString(e) === '[object Error]' || e instanceof Error); } exports.isError = isError; function isFunction(arg) { return typeof arg === 'function'; } exports.isFunction = isFunction; function isPrimitive(arg) { return arg === null || typeof arg === 'boolean' || typeof arg === 'number' || typeof arg === 'string' || typeof arg === 'symbol' || // ES6 symbol typeof arg === 'undefined'; } exports.isPrimitive = isPrimitive; exports.isBuffer = require('./support/isBuffer'); function objectToString(o) { return Object.prototype.toString.call(o); } function pad(n) { return n < 10 ? '0' + n.toString(10) : n.toString(10); } var months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']; // 26 Feb 16:19:34 function timestamp() { var d = new Date(); var time = [pad(d.getHours()), pad(d.getMinutes()), pad(d.getSeconds())].join(':'); return [d.getDate(), months[d.getMonth()], time].join(' '); } // log is just a thin wrapper to console.log that prepends a timestamp exports.log = function() { console.log('%s - %s', timestamp(), exports.format.apply(exports, arguments)); }; /** * Inherit the prototype methods from one constructor into another. * * The Function.prototype.inherits from lang.js rewritten as a standalone * function (not on Function.prototype). NOTE: If this file is to be loaded * during bootstrapping this function needs to be rewritten using some native * functions as prototype setup using normal JavaScript does not work as * expected during bootstrapping (see mirror.js in r114903). * * @param {function} ctor Constructor function which needs to inherit the * prototype. * @param {function} superCtor Constructor function to inherit prototype from. */ exports.inherits = require('inherits'); exports._extend = function(origin, add) { // Don't do anything if add isn't an object if (!add || !isObject(add)) return origin; var keys = Object.keys(add); var i = keys.length; while (i--) { origin[keys[i]] = add[keys[i]]; } return origin; }; function hasOwnProperty(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); } }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) },{"./support/isBuffer":27,"_process":24,"inherits":26}],29:[function(require,module,exports){ // Returns a wrapper function that returns a wrapped callback // The wrapper function should do some stuff, and return a // presumably different callback function. // This makes sure that own properties are retained, so that // decorations and such are not lost along the way. module.exports = wrappy function wrappy (fn, cb) { if (fn && cb) return wrappy(fn)(cb) if (typeof fn !== 'function') throw new TypeError('need wrapper function') Object.keys(fn).forEach(function (k) { wrapper[k] = fn[k] }) return wrapper function wrapper() { var args = new Array(arguments.length) for (var i = 0; i < args.length; i++) { args[i] = arguments[i] } var ret = fn.apply(this, args) var cb = args[args.length-1] if (typeof ret === 'function' && ret !== cb) { Object.keys(cb).forEach(function (k) { ret[k] = cb[k] }) } return ret } } },{}]},{},[7])(7) });�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/workers/��������������������������������0000775�0000000�0000000�00000000000�14753064456�0025747�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/workers/search.f8cc74c7.min.js����������0000664�0000000�0000000�00000115215�14753064456�0031570�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������"use strict";(()=>{var xe=Object.create;var U=Object.defineProperty,ve=Object.defineProperties,Se=Object.getOwnPropertyDescriptor,Te=Object.getOwnPropertyDescriptors,Qe=Object.getOwnPropertyNames,J=Object.getOwnPropertySymbols,Ee=Object.getPrototypeOf,Z=Object.prototype.hasOwnProperty,be=Object.prototype.propertyIsEnumerable;var K=Math.pow,X=(t,e,r)=>e in t?U(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r,A=(t,e)=>{for(var r in e||(e={}))Z.call(e,r)&&X(t,r,e[r]);if(J)for(var r of J(e))be.call(e,r)&&X(t,r,e[r]);return t},G=(t,e)=>ve(t,Te(e));var Le=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var we=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of Qe(e))!Z.call(t,i)&&i!==r&&U(t,i,{get:()=>e[i],enumerable:!(n=Se(e,i))||n.enumerable});return t};var Pe=(t,e,r)=>(r=t!=null?xe(Ee(t)):{},we(e||!t||!t.__esModule?U(r,"default",{value:t,enumerable:!0}):r,t));var B=(t,e,r)=>new Promise((n,i)=>{var s=u=>{try{a(r.next(u))}catch(c){i(c)}},o=u=>{try{a(r.throw(u))}catch(c){i(c)}},a=u=>u.done?n(u.value):Promise.resolve(u.value).then(s,o);a((r=r.apply(t,e)).next())});var re=Le((ee,te)=>{/** * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9 * Copyright (C) 2020 Oliver Nightingale * @license MIT */(function(){var t=function(e){var r=new t.Builder;return r.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),r.searchPipeline.add(t.stemmer),e.call(r,r),r.build()};t.version="2.3.9";/*! * lunr.utils * Copyright (C) 2020 Oliver Nightingale */t.utils={},t.utils.warn=function(e){return function(r){e.console&&console.warn&&console.warn(r)}}(this),t.utils.asString=function(e){return e==null?"":e.toString()},t.utils.clone=function(e){if(e==null)return e;for(var r=Object.create(null),n=Object.keys(e),i=0;i<n.length;i++){var s=n[i],o=e[s];if(Array.isArray(o)){r[s]=o.slice();continue}if(typeof o=="string"||typeof o=="number"||typeof o=="boolean"){r[s]=o;continue}throw new TypeError("clone is not deep and does not support nested objects")}return r},t.FieldRef=function(e,r,n){this.docRef=e,this.fieldName=r,this._stringValue=n},t.FieldRef.joiner="/",t.FieldRef.fromString=function(e){var r=e.indexOf(t.FieldRef.joiner);if(r===-1)throw"malformed field ref string";var n=e.slice(0,r),i=e.slice(r+1);return new t.FieldRef(i,n,e)},t.FieldRef.prototype.toString=function(){return this._stringValue==null&&(this._stringValue=this.fieldName+t.FieldRef.joiner+this.docRef),this._stringValue};/*! * lunr.Set * Copyright (C) 2020 Oliver Nightingale */t.Set=function(e){if(this.elements=Object.create(null),e){this.length=e.length;for(var r=0;r<this.length;r++)this.elements[e[r]]=!0}else this.length=0},t.Set.complete={intersect:function(e){return e},union:function(){return this},contains:function(){return!0}},t.Set.empty={intersect:function(){return this},union:function(e){return e},contains:function(){return!1}},t.Set.prototype.contains=function(e){return!!this.elements[e]},t.Set.prototype.intersect=function(e){var r,n,i,s=[];if(e===t.Set.complete)return this;if(e===t.Set.empty)return e;this.length<e.length?(r=this,n=e):(r=e,n=this),i=Object.keys(r.elements);for(var o=0;o<i.length;o++){var a=i[o];a in n.elements&&s.push(a)}return new t.Set(s)},t.Set.prototype.union=function(e){return e===t.Set.complete?t.Set.complete:e===t.Set.empty?this:new t.Set(Object.keys(this.elements).concat(Object.keys(e.elements)))},t.idf=function(e,r){var n=0;for(var i in e)i!="_index"&&(n+=Object.keys(e[i]).length);var s=(r-n+.5)/(n+.5);return Math.log(1+Math.abs(s))},t.Token=function(e,r){this.str=e||"",this.metadata=r||{}},t.Token.prototype.toString=function(){return this.str},t.Token.prototype.update=function(e){return this.str=e(this.str,this.metadata),this},t.Token.prototype.clone=function(e){return e=e||function(r){return r},new t.Token(e(this.str,this.metadata),this.metadata)};/*! * lunr.tokenizer * Copyright (C) 2020 Oliver Nightingale */t.tokenizer=function(e,r){if(e==null||e==null)return[];if(Array.isArray(e))return e.map(function(g){return new t.Token(t.utils.asString(g).toLowerCase(),t.utils.clone(r))});for(var n=e.toString().toLowerCase(),i=n.length,s=[],o=0,a=0;o<=i;o++){var u=n.charAt(o),c=o-a;if(u.match(t.tokenizer.separator)||o==i){if(c>0){var f=t.utils.clone(r)||{};f.position=[a,c],f.index=s.length,s.push(new t.Token(n.slice(a,o),f))}a=o+1}}return s},t.tokenizer.separator=/[\s\-]+/;/*! * lunr.Pipeline * Copyright (C) 2020 Oliver Nightingale */t.Pipeline=function(){this._stack=[]},t.Pipeline.registeredFunctions=Object.create(null),t.Pipeline.registerFunction=function(e,r){r in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+r),e.label=r,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var r=e.label&&e.label in this.registeredFunctions;r||t.utils.warn(`Function is not registered with pipeline. This may cause problems when serialising the index. `,e)},t.Pipeline.load=function(e){var r=new t.Pipeline;return e.forEach(function(n){var i=t.Pipeline.registeredFunctions[n];if(i)r.add(i);else throw new Error("Cannot load unregistered function: "+n)}),r},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(r){t.Pipeline.warnIfFunctionNotRegistered(r),this._stack.push(r)},this)},t.Pipeline.prototype.after=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");n=n+1,this._stack.splice(n,0,r)},t.Pipeline.prototype.before=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");this._stack.splice(n,0,r)},t.Pipeline.prototype.remove=function(e){var r=this._stack.indexOf(e);r!=-1&&this._stack.splice(r,1)},t.Pipeline.prototype.run=function(e){for(var r=this._stack.length,n=0;n<r;n++){for(var i=this._stack[n],s=[],o=0;o<e.length;o++){var a=i(e[o],o,e);if(!(a==null||a===""))if(Array.isArray(a))for(var u=0;u<a.length;u++)s.push(a[u]);else s.push(a)}e=s}return e},t.Pipeline.prototype.runString=function(e,r){var n=new t.Token(e,r);return this.run([n]).map(function(i){return i.toString()})},t.Pipeline.prototype.reset=function(){this._stack=[]},t.Pipeline.prototype.toJSON=function(){return this._stack.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})};/*! * lunr.Vector * Copyright (C) 2020 Oliver Nightingale */t.Vector=function(e){this._magnitude=0,this.elements=e||[]},t.Vector.prototype.positionForIndex=function(e){if(this.elements.length==0)return 0;for(var r=0,n=this.elements.length/2,i=n-r,s=Math.floor(i/2),o=this.elements[s*2];i>1&&(o<e&&(r=s),o>e&&(n=s),o!=e);)i=n-r,s=r+Math.floor(i/2),o=this.elements[s*2];if(o==e||o>e)return s*2;if(o<e)return(s+1)*2},t.Vector.prototype.insert=function(e,r){this.upsert(e,r,function(){throw"duplicate index"})},t.Vector.prototype.upsert=function(e,r,n){this._magnitude=0;var i=this.positionForIndex(e);this.elements[i]==e?this.elements[i+1]=n(this.elements[i+1],r):this.elements.splice(i,0,e,r)},t.Vector.prototype.magnitude=function(){if(this._magnitude)return this._magnitude;for(var e=0,r=this.elements.length,n=1;n<r;n+=2){var i=this.elements[n];e+=i*i}return this._magnitude=Math.sqrt(e)},t.Vector.prototype.dot=function(e){for(var r=0,n=this.elements,i=e.elements,s=n.length,o=i.length,a=0,u=0,c=0,f=0;c<s&&f<o;)a=n[c],u=i[f],a<u?c+=2:a>u?f+=2:a==u&&(r+=n[c+1]*i[f+1],c+=2,f+=2);return r},t.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},t.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),r=1,n=0;r<this.elements.length;r+=2,n++)e[n]=this.elements[r];return e},t.Vector.prototype.toJSON=function(){return this.elements};/*! * lunr.stemmer * Copyright (C) 2020 Oliver Nightingale * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt */t.stemmer=function(){var e={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},r={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},n="[^aeiou]",i="[aeiouy]",s=n+"[^aeiouy]*",o=i+"[aeiou]*",a="^("+s+")?"+o+s,u="^("+s+")?"+o+s+"("+o+")?$",c="^("+s+")?"+o+s+o+s,f="^("+s+")?"+i,g=new RegExp(a),l=new RegExp(c),m=new RegExp(u),x=new RegExp(f),v=/^(.+?)(ss|i)es$/,d=/^(.+?)([^s])s$/,y=/^(.+?)eed$/,b=/^(.+?)(ed|ing)$/,E=/.$/,w=/(at|bl|iz)$/,R=new RegExp("([^aeiouylsz])\\1$"),j=new RegExp("^"+s+i+"[^aeiouwxy]$"),_=/^(.+?[^aeiou])y$/,D=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,N=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,C=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,V=/^(.+?)(s|t)(ion)$/,P=/^(.+?)e$/,z=/ll$/,$=new RegExp("^"+s+i+"[^aeiouwxy]$"),M=function(h){var S,k,L,p,T,O,F;if(h.length<3)return h;if(L=h.substr(0,1),L=="y"&&(h=L.toUpperCase()+h.substr(1)),p=v,T=d,p.test(h)?h=h.replace(p,"$1$2"):T.test(h)&&(h=h.replace(T,"$1$2")),p=y,T=b,p.test(h)){var Q=p.exec(h);p=g,p.test(Q[1])&&(p=E,h=h.replace(p,""))}else if(T.test(h)){var Q=T.exec(h);S=Q[1],T=x,T.test(S)&&(h=S,T=w,O=R,F=j,T.test(h)?h=h+"e":O.test(h)?(p=E,h=h.replace(p,"")):F.test(h)&&(h=h+"e"))}if(p=_,p.test(h)){var Q=p.exec(h);S=Q[1],h=S+"i"}if(p=D,p.test(h)){var Q=p.exec(h);S=Q[1],k=Q[2],p=g,p.test(S)&&(h=S+e[k])}if(p=N,p.test(h)){var Q=p.exec(h);S=Q[1],k=Q[2],p=g,p.test(S)&&(h=S+r[k])}if(p=C,T=V,p.test(h)){var Q=p.exec(h);S=Q[1],p=l,p.test(S)&&(h=S)}else if(T.test(h)){var Q=T.exec(h);S=Q[1]+Q[2],T=l,T.test(S)&&(h=S)}if(p=P,p.test(h)){var Q=p.exec(h);S=Q[1],p=l,T=m,O=$,(p.test(S)||T.test(S)&&!O.test(S))&&(h=S)}return p=z,T=l,p.test(h)&&T.test(h)&&(p=E,h=h.replace(p,"")),L=="y"&&(h=L.toLowerCase()+h.substr(1)),h};return function(I){return I.update(M)}}(),t.Pipeline.registerFunction(t.stemmer,"stemmer");/*! * lunr.stopWordFilter * Copyright (C) 2020 Oliver Nightingale */t.generateStopWordFilter=function(e){var r=e.reduce(function(n,i){return n[i]=i,n},{});return function(n){if(n&&r[n.toString()]!==n.toString())return n}},t.stopWordFilter=t.generateStopWordFilter(["a","able","about","across","after","all","almost","also","am","among","an","and","any","are","as","at","be","because","been","but","by","can","cannot","could","dear","did","do","does","either","else","ever","every","for","from","get","got","had","has","have","he","her","hers","him","his","how","however","i","if","in","into","is","it","its","just","least","let","like","likely","may","me","might","most","must","my","neither","no","nor","not","of","off","often","on","only","or","other","our","own","rather","said","say","says","she","should","since","so","some","than","that","the","their","them","then","there","these","they","this","tis","to","too","twas","us","wants","was","we","were","what","when","where","which","while","who","whom","why","will","with","would","yet","you","your"]),t.Pipeline.registerFunction(t.stopWordFilter,"stopWordFilter");/*! * lunr.trimmer * Copyright (C) 2020 Oliver Nightingale */t.trimmer=function(e){return e.update(function(r){return r.replace(/^\W+/,"").replace(/\W+$/,"")})},t.Pipeline.registerFunction(t.trimmer,"trimmer");/*! * lunr.TokenSet * Copyright (C) 2020 Oliver Nightingale */t.TokenSet=function(){this.final=!1,this.edges={},this.id=t.TokenSet._nextId,t.TokenSet._nextId+=1},t.TokenSet._nextId=1,t.TokenSet.fromArray=function(e){for(var r=new t.TokenSet.Builder,n=0,i=e.length;n<i;n++)r.insert(e[n]);return r.finish(),r.root},t.TokenSet.fromClause=function(e){return"editDistance"in e?t.TokenSet.fromFuzzyString(e.term,e.editDistance):t.TokenSet.fromString(e.term)},t.TokenSet.fromFuzzyString=function(e,r){for(var n=new t.TokenSet,i=[{node:n,editsRemaining:r,str:e}];i.length;){var s=i.pop();if(s.str.length>0){var o=s.str.charAt(0),a;o in s.node.edges?a=s.node.edges[o]:(a=new t.TokenSet,s.node.edges[o]=a),s.str.length==1&&(a.final=!0),i.push({node:a,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(s.editsRemaining!=0){if("*"in s.node.edges)var u=s.node.edges["*"];else{var u=new t.TokenSet;s.node.edges["*"]=u}if(s.str.length==0&&(u.final=!0),i.push({node:u,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&i.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),s.str.length==1&&(s.node.final=!0),s.str.length>=1){if("*"in s.node.edges)var c=s.node.edges["*"];else{var c=new t.TokenSet;s.node.edges["*"]=c}s.str.length==1&&(c.final=!0),i.push({node:c,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var f=s.str.charAt(0),g=s.str.charAt(1),l;g in s.node.edges?l=s.node.edges[g]:(l=new t.TokenSet,s.node.edges[g]=l),s.str.length==1&&(l.final=!0),i.push({node:l,editsRemaining:s.editsRemaining-1,str:f+s.str.slice(2)})}}}return n},t.TokenSet.fromString=function(e){for(var r=new t.TokenSet,n=r,i=0,s=e.length;i<s;i++){var o=e[i],a=i==s-1;if(o=="*")r.edges[o]=r,r.final=a;else{var u=new t.TokenSet;u.final=a,r.edges[o]=u,r=u}}return n},t.TokenSet.prototype.toArray=function(){for(var e=[],r=[{prefix:"",node:this}];r.length;){var n=r.pop(),i=Object.keys(n.node.edges),s=i.length;n.node.final&&(n.prefix.charAt(0),e.push(n.prefix));for(var o=0;o<s;o++){var a=i[o];r.push({prefix:n.prefix.concat(a),node:n.node.edges[a]})}}return e},t.TokenSet.prototype.toString=function(){if(this._str)return this._str;for(var e=this.final?"1":"0",r=Object.keys(this.edges).sort(),n=r.length,i=0;i<n;i++){var s=r[i],o=this.edges[s];e=e+s+o.id}return e},t.TokenSet.prototype.intersect=function(e){for(var r=new t.TokenSet,n=void 0,i=[{qNode:e,output:r,node:this}];i.length;){n=i.pop();for(var s=Object.keys(n.qNode.edges),o=s.length,a=Object.keys(n.node.edges),u=a.length,c=0;c<o;c++)for(var f=s[c],g=0;g<u;g++){var l=a[g];if(l==f||f=="*"){var m=n.node.edges[l],x=n.qNode.edges[f],v=m.final&&x.final,d=void 0;l in n.output.edges?(d=n.output.edges[l],d.final=d.final||v):(d=new t.TokenSet,d.final=v,n.output.edges[l]=d),i.push({qNode:x,output:d,node:m})}}}return r},t.TokenSet.Builder=function(){this.previousWord="",this.root=new t.TokenSet,this.uncheckedNodes=[],this.minimizedNodes={}},t.TokenSet.Builder.prototype.insert=function(e){var r,n=0;if(e<this.previousWord)throw new Error("Out of order word insertion");for(var i=0;i<e.length&&i<this.previousWord.length&&e[i]==this.previousWord[i];i++)n++;this.minimize(n),this.uncheckedNodes.length==0?r=this.root:r=this.uncheckedNodes[this.uncheckedNodes.length-1].child;for(var i=n;i<e.length;i++){var s=new t.TokenSet,o=e[i];r.edges[o]=s,this.uncheckedNodes.push({parent:r,char:o,child:s}),r=s}r.final=!0,this.previousWord=e},t.TokenSet.Builder.prototype.finish=function(){this.minimize(0)},t.TokenSet.Builder.prototype.minimize=function(e){for(var r=this.uncheckedNodes.length-1;r>=e;r--){var n=this.uncheckedNodes[r],i=n.child.toString();i in this.minimizedNodes?n.parent.edges[n.char]=this.minimizedNodes[i]:(n.child._str=i,this.minimizedNodes[i]=n.child),this.uncheckedNodes.pop()}};/*! * lunr.Index * Copyright (C) 2020 Oliver Nightingale */t.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},t.Index.prototype.search=function(e){return this.query(function(r){var n=new t.QueryParser(e,r);n.parse()})},t.Index.prototype.query=function(e){for(var r=new t.Query(this.fields),n=Object.create(null),i=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),u=0;u<this.fields.length;u++)i[this.fields[u]]=new t.Vector;e.call(r,r);for(var u=0;u<r.clauses.length;u++){var c=r.clauses[u],f=null,g=t.Set.empty;c.usePipeline?f=this.pipeline.runString(c.term,{fields:c.fields}):f=[c.term];for(var l=0;l<f.length;l++){var m=f[l];c.term=m;var x=t.TokenSet.fromClause(c),v=this.tokenSet.intersect(x).toArray();if(v.length===0&&c.presence===t.Query.presence.REQUIRED){for(var d=0;d<c.fields.length;d++){var y=c.fields[d];o[y]=t.Set.empty}break}for(var b=0;b<v.length;b++)for(var E=v[b],w=this.invertedIndex[E],R=w._index,d=0;d<c.fields.length;d++){var y=c.fields[d],j=w[y],_=Object.keys(j),D=E+"/"+y,N=new t.Set(_);if(c.presence==t.Query.presence.REQUIRED&&(g=g.union(N),o[y]===void 0&&(o[y]=t.Set.complete)),c.presence==t.Query.presence.PROHIBITED){a[y]===void 0&&(a[y]=t.Set.empty),a[y]=a[y].union(N);continue}if(i[y].upsert(R,c.boost,function(ye,me){return ye+me}),!s[D]){for(var C=0;C<_.length;C++){var V=_[C],P=new t.FieldRef(V,y),z=j[V],$;($=n[P])===void 0?n[P]=new t.MatchData(E,y,z):$.add(E,y,z)}s[D]=!0}}}if(c.presence===t.Query.presence.REQUIRED)for(var d=0;d<c.fields.length;d++){var y=c.fields[d];o[y]=o[y].intersect(g)}}for(var M=t.Set.complete,I=t.Set.empty,u=0;u<this.fields.length;u++){var y=this.fields[u];o[y]&&(M=M.intersect(o[y])),a[y]&&(I=I.union(a[y]))}var h=Object.keys(n),S=[],k=Object.create(null);if(r.isNegated()){h=Object.keys(this.fieldVectors);for(var u=0;u<h.length;u++){var P=h[u],L=t.FieldRef.fromString(P);n[P]=new t.MatchData}}for(var u=0;u<h.length;u++){var L=t.FieldRef.fromString(h[u]),p=L.docRef;if(M.contains(p)&&!I.contains(p)){var T=this.fieldVectors[L],O=i[L.fieldName].similarity(T),F;if((F=k[p])!==void 0)F.score+=O,F.matchData.combine(n[L]);else{var Q={ref:p,score:O,matchData:n[L]};k[p]=Q,S.push(Q)}}}return S.sort(function(pe,ge){return ge.score-pe.score})},t.Index.prototype.toJSON=function(){var e=Object.keys(this.invertedIndex).sort().map(function(n){return[n,this.invertedIndex[n]]},this),r=Object.keys(this.fieldVectors).map(function(n){return[n,this.fieldVectors[n].toJSON()]},this);return{version:t.version,fields:this.fields,fieldVectors:r,invertedIndex:e,pipeline:this.pipeline.toJSON()}},t.Index.load=function(e){var r={},n={},i=e.fieldVectors,s=Object.create(null),o=e.invertedIndex,a=new t.TokenSet.Builder,u=t.Pipeline.load(e.pipeline);e.version!=t.version&&t.utils.warn("Version mismatch when loading serialised index. Current version of lunr '"+t.version+"' does not match serialized index '"+e.version+"'");for(var c=0;c<i.length;c++){var f=i[c],g=f[0],l=f[1];n[g]=new t.Vector(l)}for(var c=0;c<o.length;c++){var f=o[c],m=f[0],x=f[1];a.insert(m),s[m]=x}return a.finish(),r.fields=e.fields,r.fieldVectors=n,r.invertedIndex=s,r.tokenSet=a.root,r.pipeline=u,new t.Index(r)};/*! * lunr.Builder * Copyright (C) 2020 Oliver Nightingale */t.Builder=function(){this._ref="id",this._fields=Object.create(null),this._documents=Object.create(null),this.invertedIndex=Object.create(null),this.fieldTermFrequencies={},this.fieldLengths={},this.tokenizer=t.tokenizer,this.pipeline=new t.Pipeline,this.searchPipeline=new t.Pipeline,this.documentCount=0,this._b=.75,this._k1=1.2,this.termIndex=0,this.metadataWhitelist=[]},t.Builder.prototype.ref=function(e){this._ref=e},t.Builder.prototype.field=function(e,r){if(/\//.test(e))throw new RangeError("Field '"+e+"' contains illegal character '/'");this._fields[e]=r||{}},t.Builder.prototype.b=function(e){e<0?this._b=0:e>1?this._b=1:this._b=e},t.Builder.prototype.k1=function(e){this._k1=e},t.Builder.prototype.add=function(e,r){var n=e[this._ref],i=Object.keys(this._fields);this._documents[n]=r||{},this.documentCount+=1;for(var s=0;s<i.length;s++){var o=i[s],a=this._fields[o].extractor,u=a?a(e):e[o],c=this.tokenizer(u,{fields:[o]}),f=this.pipeline.run(c),g=new t.FieldRef(n,o),l=Object.create(null);this.fieldTermFrequencies[g]=l,this.fieldLengths[g]=0,this.fieldLengths[g]+=f.length;for(var m=0;m<f.length;m++){var x=f[m];if(l[x]==null&&(l[x]=0),l[x]+=1,this.invertedIndex[x]==null){var v=Object.create(null);v._index=this.termIndex,this.termIndex+=1;for(var d=0;d<i.length;d++)v[i[d]]=Object.create(null);this.invertedIndex[x]=v}this.invertedIndex[x][o][n]==null&&(this.invertedIndex[x][o][n]=Object.create(null));for(var y=0;y<this.metadataWhitelist.length;y++){var b=this.metadataWhitelist[y],E=x.metadata[b];this.invertedIndex[x][o][n][b]==null&&(this.invertedIndex[x][o][n][b]=[]),this.invertedIndex[x][o][n][b].push(E)}}}},t.Builder.prototype.calculateAverageFieldLengths=function(){for(var e=Object.keys(this.fieldLengths),r=e.length,n={},i={},s=0;s<r;s++){var o=t.FieldRef.fromString(e[s]),a=o.fieldName;i[a]||(i[a]=0),i[a]+=1,n[a]||(n[a]=0),n[a]+=this.fieldLengths[o]}for(var u=Object.keys(this._fields),s=0;s<u.length;s++){var c=u[s];n[c]=n[c]/i[c]}this.averageFieldLength=n},t.Builder.prototype.createFieldVectors=function(){for(var e={},r=Object.keys(this.fieldTermFrequencies),n=r.length,i=Object.create(null),s=0;s<n;s++){for(var o=t.FieldRef.fromString(r[s]),a=o.fieldName,u=this.fieldLengths[o],c=new t.Vector,f=this.fieldTermFrequencies[o],g=Object.keys(f),l=g.length,m=this._fields[a].boost||1,x=this._documents[o.docRef].boost||1,v=0;v<l;v++){var d=g[v],y=f[d],b=this.invertedIndex[d]._index,E,w,R;i[d]===void 0?(E=t.idf(this.invertedIndex[d],this.documentCount),i[d]=E):E=i[d],w=E*((this._k1+1)*y)/(this._k1*(1-this._b+this._b*(u/this.averageFieldLength[a]))+y),w*=m,w*=x,R=Math.round(w*1e3)/1e3,c.insert(b,R)}e[o]=c}this.fieldVectors=e},t.Builder.prototype.createTokenSet=function(){this.tokenSet=t.TokenSet.fromArray(Object.keys(this.invertedIndex).sort())},t.Builder.prototype.build=function(){return this.calculateAverageFieldLengths(),this.createFieldVectors(),this.createTokenSet(),new t.Index({invertedIndex:this.invertedIndex,fieldVectors:this.fieldVectors,tokenSet:this.tokenSet,fields:Object.keys(this._fields),pipeline:this.searchPipeline})},t.Builder.prototype.use=function(e){var r=Array.prototype.slice.call(arguments,1);r.unshift(this),e.apply(this,r)},t.MatchData=function(e,r,n){for(var i=Object.create(null),s=Object.keys(n||{}),o=0;o<s.length;o++){var a=s[o];i[a]=n[a].slice()}this.metadata=Object.create(null),e!==void 0&&(this.metadata[e]=Object.create(null),this.metadata[e][r]=i)},t.MatchData.prototype.combine=function(e){for(var r=Object.keys(e.metadata),n=0;n<r.length;n++){var i=r[n],s=Object.keys(e.metadata[i]);this.metadata[i]==null&&(this.metadata[i]=Object.create(null));for(var o=0;o<s.length;o++){var a=s[o],u=Object.keys(e.metadata[i][a]);this.metadata[i][a]==null&&(this.metadata[i][a]=Object.create(null));for(var c=0;c<u.length;c++){var f=u[c];this.metadata[i][a][f]==null?this.metadata[i][a][f]=e.metadata[i][a][f]:this.metadata[i][a][f]=this.metadata[i][a][f].concat(e.metadata[i][a][f])}}}},t.MatchData.prototype.add=function(e,r,n){if(!(e in this.metadata)){this.metadata[e]=Object.create(null),this.metadata[e][r]=n;return}if(!(r in this.metadata[e])){this.metadata[e][r]=n;return}for(var i=Object.keys(n),s=0;s<i.length;s++){var o=i[s];o in this.metadata[e][r]?this.metadata[e][r][o]=this.metadata[e][r][o].concat(n[o]):this.metadata[e][r][o]=n[o]}},t.Query=function(e){this.clauses=[],this.allFields=e},t.Query.wildcard=new String("*"),t.Query.wildcard.NONE=0,t.Query.wildcard.LEADING=1,t.Query.wildcard.TRAILING=2,t.Query.presence={OPTIONAL:1,REQUIRED:2,PROHIBITED:3},t.Query.prototype.clause=function(e){return"fields"in e||(e.fields=this.allFields),"boost"in e||(e.boost=1),"usePipeline"in e||(e.usePipeline=!0),"wildcard"in e||(e.wildcard=t.Query.wildcard.NONE),e.wildcard&t.Query.wildcard.LEADING&&e.term.charAt(0)!=t.Query.wildcard&&(e.term="*"+e.term),e.wildcard&t.Query.wildcard.TRAILING&&e.term.slice(-1)!=t.Query.wildcard&&(e.term=""+e.term+"*"),"presence"in e||(e.presence=t.Query.presence.OPTIONAL),this.clauses.push(e),this},t.Query.prototype.isNegated=function(){for(var e=0;e<this.clauses.length;e++)if(this.clauses[e].presence!=t.Query.presence.PROHIBITED)return!1;return!0},t.Query.prototype.term=function(e,r){if(Array.isArray(e))return e.forEach(function(i){this.term(i,t.utils.clone(r))},this),this;var n=r||{};return n.term=e.toString(),this.clause(n),this},t.QueryParseError=function(e,r,n){this.name="QueryParseError",this.message=e,this.start=r,this.end=n},t.QueryParseError.prototype=new Error,t.QueryLexer=function(e){this.lexemes=[],this.str=e,this.length=e.length,this.pos=0,this.start=0,this.escapeCharPositions=[]},t.QueryLexer.prototype.run=function(){for(var e=t.QueryLexer.lexText;e;)e=e(this)},t.QueryLexer.prototype.sliceString=function(){for(var e=[],r=this.start,n=this.pos,i=0;i<this.escapeCharPositions.length;i++)n=this.escapeCharPositions[i],e.push(this.str.slice(r,n)),r=n+1;return e.push(this.str.slice(r,this.pos)),this.escapeCharPositions.length=0,e.join("")},t.QueryLexer.prototype.emit=function(e){this.lexemes.push({type:e,str:this.sliceString(),start:this.start,end:this.pos}),this.start=this.pos},t.QueryLexer.prototype.escapeCharacter=function(){this.escapeCharPositions.push(this.pos-1),this.pos+=1},t.QueryLexer.prototype.next=function(){if(this.pos>=this.length)return t.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},t.QueryLexer.prototype.width=function(){return this.pos-this.start},t.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},t.QueryLexer.prototype.backup=function(){this.pos-=1},t.QueryLexer.prototype.acceptDigitRun=function(){var e,r;do e=this.next(),r=e.charCodeAt(0);while(r>47&&r<58);e!=t.QueryLexer.EOS&&this.backup()},t.QueryLexer.prototype.more=function(){return this.pos<this.length},t.QueryLexer.EOS="EOS",t.QueryLexer.FIELD="FIELD",t.QueryLexer.TERM="TERM",t.QueryLexer.EDIT_DISTANCE="EDIT_DISTANCE",t.QueryLexer.BOOST="BOOST",t.QueryLexer.PRESENCE="PRESENCE",t.QueryLexer.lexField=function(e){return e.backup(),e.emit(t.QueryLexer.FIELD),e.ignore(),t.QueryLexer.lexText},t.QueryLexer.lexTerm=function(e){if(e.width()>1&&(e.backup(),e.emit(t.QueryLexer.TERM)),e.ignore(),e.more())return t.QueryLexer.lexText},t.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.EDIT_DISTANCE),t.QueryLexer.lexText},t.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.BOOST),t.QueryLexer.lexText},t.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(t.QueryLexer.TERM)},t.QueryLexer.termSeparator=t.tokenizer.separator,t.QueryLexer.lexText=function(e){for(;;){var r=e.next();if(r==t.QueryLexer.EOS)return t.QueryLexer.lexEOS;if(r.charCodeAt(0)==92){e.escapeCharacter();continue}if(r==":")return t.QueryLexer.lexField;if(r=="~")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexEditDistance;if(r=="^")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexBoost;if(r=="+"&&e.width()===1||r=="-"&&e.width()===1)return e.emit(t.QueryLexer.PRESENCE),t.QueryLexer.lexText;if(r.match(t.QueryLexer.termSeparator))return t.QueryLexer.lexTerm}},t.QueryParser=function(e,r){this.lexer=new t.QueryLexer(e),this.query=r,this.currentClause={},this.lexemeIdx=0},t.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=t.QueryParser.parseClause;e;)e=e(this);return this.query},t.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},t.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},t.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},t.QueryParser.parseClause=function(e){var r=e.peekLexeme();if(r!=null)switch(r.type){case t.QueryLexer.PRESENCE:return t.QueryParser.parsePresence;case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expected either a field or a term, found "+r.type;throw r.str.length>=1&&(n+=" with value '"+r.str+"'"),new t.QueryParseError(n,r.start,r.end)}},t.QueryParser.parsePresence=function(e){var r=e.consumeLexeme();if(r!=null){switch(r.str){case"-":e.currentClause.presence=t.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=t.Query.presence.REQUIRED;break;default:var n="unrecognised presence operator'"+r.str+"'";throw new t.QueryParseError(n,r.start,r.end)}var i=e.peekLexeme();if(i==null){var n="expecting term or field, found nothing";throw new t.QueryParseError(n,r.start,r.end)}switch(i.type){case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expecting term or field, found '"+i.type+"'";throw new t.QueryParseError(n,i.start,i.end)}}},t.QueryParser.parseField=function(e){var r=e.consumeLexeme();if(r!=null){if(e.query.allFields.indexOf(r.str)==-1){var n=e.query.allFields.map(function(o){return"'"+o+"'"}).join(", "),i="unrecognised field '"+r.str+"', possible fields: "+n;throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.fields=[r.str];var s=e.peekLexeme();if(s==null){var i="expecting term, found nothing";throw new t.QueryParseError(i,r.start,r.end)}switch(s.type){case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var i="expecting term, found '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseTerm=function(e){var r=e.consumeLexeme();if(r!=null){e.currentClause.term=r.str.toLowerCase(),r.str.indexOf("*")!=-1&&(e.currentClause.usePipeline=!1);var n=e.peekLexeme();if(n==null){e.nextClause();return}switch(n.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+n.type+"'";throw new t.QueryParseError(i,n.start,n.end)}}},t.QueryParser.parseEditDistance=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="edit distance must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.editDistance=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseBoost=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="boost must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.boost=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},function(e,r){typeof define=="function"&&define.amd?define(r):typeof ee=="object"?te.exports=r():e.lunr=r()}(this,function(){return t})})()});var Y=Pe(re());function ne(t,e=document){let r=ke(t,e);if(typeof r=="undefined")throw new ReferenceError(`Missing element: expected "${t}" to be present`);return r}function ke(t,e=document){return e.querySelector(t)||void 0}Object.entries||(Object.entries=function(t){let e=[];for(let r of Object.keys(t))e.push([r,t[r]]);return e});Object.values||(Object.values=function(t){let e=[];for(let r of Object.keys(t))e.push(t[r]);return e});typeof Element!="undefined"&&(Element.prototype.scrollTo||(Element.prototype.scrollTo=function(t,e){typeof t=="object"?(this.scrollLeft=t.left,this.scrollTop=t.top):(this.scrollLeft=t,this.scrollTop=e)}),Element.prototype.replaceWith||(Element.prototype.replaceWith=function(...t){let e=this.parentNode;if(e){t.length===0&&e.removeChild(this);for(let r=t.length-1;r>=0;r--){let n=t[r];typeof n=="string"?n=document.createTextNode(n):n.parentNode&&n.parentNode.removeChild(n),r?e.insertBefore(this.previousSibling,n):e.replaceChild(n,this)}}}));function ie(t){let e=new Map;for(let r of t){let[n]=r.location.split("#"),i=e.get(n);typeof i=="undefined"?e.set(n,r):(e.set(r.location,r),r.parent=i)}return e}function W(t,e,r){var s;e=new RegExp(e,"g");let n,i=0;do{n=e.exec(t);let o=(s=n==null?void 0:n.index)!=null?s:t.length;if(i<o&&r(i,o),n){let[a]=n;i=n.index+a.length,a.length===0&&(e.lastIndex=n.index+1)}}while(n)}function se(t,e){let r=0,n=0,i=0;for(let s=0;i<t.length;i++)t.charAt(i)==="<"&&i>n?e(r,1,n,n=i):t.charAt(i)===">"&&(t.charAt(n+1)==="/"?--s===0&&e(r++,2,n,i+1):t.charAt(i-1)!=="/"&&s++===0&&e(r,0,n,i+1),n=i+1);i>n&&e(r,1,n,i)}function oe(t,e,r,n=!1){return q([t],e,r,n).pop()}function q(t,e,r,n=!1){let i=[0];for(let s=1;s<e.length;s++){let o=e[s-1],a=e[s],u=o[o.length-1]>>>2&1023,c=a[0]>>>12;i.push(+(u>c)+i[i.length-1])}return t.map((s,o)=>{let a=0,u=new Map;for(let f of r.sort((g,l)=>g-l)){let g=f&1048575,l=f>>>20;if(i[l]!==o)continue;let m=u.get(l);typeof m=="undefined"&&u.set(l,m=[]),m.push(g)}if(u.size===0)return s;let c=[];for(let[f,g]of u){let l=e[f],m=l[0]>>>12,x=l[l.length-1]>>>12,v=l[l.length-1]>>>2&1023;n&&m>a&&c.push(s.slice(a,m));let d=s.slice(m,x+v);for(let y of g.sort((b,E)=>E-b)){let b=(l[y]>>>12)-m,E=(l[y]>>>2&1023)+b;d=[d.slice(0,b),"<mark>",d.slice(b,E),"</mark>",d.slice(E)].join("")}if(a=x+v,c.push(d)===2)break}return n&&a<s.length&&c.push(s.slice(a)),c.join("")})}function ae(t){let e=[];if(typeof t=="undefined")return e;let r=Array.isArray(t)?t:[t];for(let n=0;n<r.length;n++){let i=lunr.tokenizer.table,s=i.length;se(r[n],(o,a,u,c)=>{var f;switch(i[f=o+=s]||(i[f]=[]),a){case 0:case 2:i[o].push(u<<12|c-u<<2|a);break;case 1:let g=r[n].slice(u,c);W(g,lunr.tokenizer.separator,(l,m)=>{if(typeof lunr.segmenter!="undefined"){let x=g.slice(l,m);if(/^[MHIK]$/.test(lunr.segmenter.ctype_(x))){let v=lunr.segmenter.segment(x);for(let d=0,y=0;d<v.length;d++)i[o]||(i[o]=[]),i[o].push(u+l+y<<12|v[d].length<<2|a),e.push(new lunr.Token(v[d].toLowerCase(),{position:o<<20|i[o].length-1})),y+=v[d].length;return}}i[o].push(u+l<<12|m-l<<2|a),e.push(new lunr.Token(g.slice(l,m).toLowerCase(),{position:o<<20|i[o].length-1}))})}})}return e}function ue(t,e=r=>r){return t.trim().split(/"([^"]+)"/g).map((r,n)=>n&1?r.replace(/^\b|^(?![^\x00-\x7F]|$)|\s+/g," +"):r).join("").replace(/"|(?:^|\s+)[*+\-:^~]+(?=\s+|$)/g,"").split(/\s+/g).reduce((r,n)=>{let i=e(n);return[...r,...Array.isArray(i)?i:[i]]},[]).map(r=>/([~^]$)/.test(r)?`${r}1`:r).map(r=>/(^[+-]|[~^]\d+$)/.test(r)?r:`${r}*`).join(" ")}function ce(t){return ue(t,e=>{let r=[],n=new lunr.QueryLexer(e);n.run();for(let{type:i,str:s,start:o,end:a}of n.lexemes)switch(i){case"FIELD":["title","text","tags"].includes(s)||(e=[e.slice(0,a)," ",e.slice(a+1)].join(""));break;case"TERM":W(s,lunr.tokenizer.separator,(...u)=>{r.push([e.slice(0,o),s.slice(...u),e.slice(a)].join(""))})}return r})}function le(t){let e=new lunr.Query(["title","text","tags"]);new lunr.QueryParser(t,e).parse();for(let n of e.clauses)n.usePipeline=!0,n.term.startsWith("*")&&(n.wildcard=lunr.Query.wildcard.LEADING,n.term=n.term.slice(1)),n.term.endsWith("*")&&(n.wildcard=lunr.Query.wildcard.TRAILING,n.term=n.term.slice(0,-1));return e.clauses}function he(t,e){var i;let r=new Set(t),n={};for(let s=0;s<e.length;s++)for(let o of r)e[s].startsWith(o.term)&&(n[o.term]=!0,r.delete(o));for(let s of r)(i=lunr.stopWordFilter)!=null&&i.call(lunr,s.term)&&(n[s.term]=!1);return n}function fe(t,e){let r=new Set,n=new Uint16Array(t.length);for(let s=0;s<t.length;s++)for(let o=s+1;o<t.length;o++)t.slice(s,o)in e&&(n[s]=o-s);let i=[0];for(let s=i.length;s>0;){let o=i[--s];for(let u=1;u<n[o];u++)n[o+u]>n[o]-u&&(r.add(t.slice(o,o+u)),i[s++]=o+u);let a=o+n[o];n[a]&&a<t.length-1&&(i[s++]=a),r.add(t.slice(o,a))}return r.has("")?new Set([t]):r}function Oe(t){return e=>r=>{if(typeof r[e]=="undefined")return;let n=[r.location,e].join(":");return t.set(n,lunr.tokenizer.table=[]),r[e]}}function Re(t,e){let[r,n]=[new Set(t),new Set(e)];return[...new Set([...r].filter(i=>!n.has(i)))]}var H=class{constructor({config:e,docs:r,options:n}){let i=Oe(this.table=new Map);this.map=ie(r),this.options=n,this.index=lunr(function(){this.metadataWhitelist=["position"],this.b(0),e.lang.length===1&&e.lang[0]!=="en"?this.use(lunr[e.lang[0]]):e.lang.length>1&&this.use(lunr.multiLanguage(...e.lang)),this.tokenizer=ae,lunr.tokenizer.separator=new RegExp(e.separator),lunr.segmenter="TinySegmenter"in lunr?new lunr.TinySegmenter:void 0;let s=Re(["trimmer","stopWordFilter","stemmer"],e.pipeline);for(let o of e.lang.map(a=>a==="en"?lunr:lunr[a]))for(let a of s)this.pipeline.remove(o[a]),this.searchPipeline.remove(o[a]);this.ref("location"),this.field("title",{boost:1e3,extractor:i("title")}),this.field("text",{boost:1,extractor:i("text")}),this.field("tags",{boost:1e6,extractor:i("tags")});for(let o of r)this.add(o,{boost:o.boost})})}search(e){if(e=e.replace(new RegExp("\\p{sc=Han}+","gu"),s=>[...fe(s,this.index.invertedIndex)].join("* ")),e=ce(e),!e)return{items:[]};let r=le(e).filter(s=>s.presence!==lunr.Query.presence.PROHIBITED),n=this.index.search(e).reduce((s,{ref:o,score:a,matchData:u})=>{let c=this.map.get(o);if(typeof c!="undefined"){c=A({},c),c.tags&&(c.tags=[...c.tags]);let f=he(r,Object.keys(u.metadata));for(let l of this.index.fields){if(typeof c[l]=="undefined")continue;let m=[];for(let d of Object.values(u.metadata))typeof d[l]!="undefined"&&m.push(...d[l].position);if(!m.length)continue;let x=this.table.get([c.location,l].join(":")),v=Array.isArray(c[l])?q:oe;c[l]=v(c[l],x,m,l!=="text")}let g=+!c.parent+Object.values(f).filter(l=>l).length/Object.keys(f).length;s.push(G(A({},c),{score:a*(1+K(g,2)),terms:f}))}return s},[]).sort((s,o)=>o.score-s.score).reduce((s,o)=>{let a=this.map.get(o.location);if(typeof a!="undefined"){let u=a.parent?a.parent.location:a.location;s.set(u,[...s.get(u)||[],o])}return s},new Map);for(let[s,o]of n)if(!o.find(a=>a.location===s)){let a=this.map.get(s);o.push(G(A({},a),{score:0,terms:{}}))}let i;if(this.options.suggest){let s=this.index.query(o=>{for(let a of r)o.term(a.term,{fields:["title"],presence:lunr.Query.presence.REQUIRED,wildcard:lunr.Query.wildcard.TRAILING})});i=s.length?Object.keys(s[0].matchData.metadata):[]}return A({items:[...n.values()]},typeof i!="undefined"&&{suggest:i})}};var de;function Ie(t){return B(this,null,function*(){let e="../lunr";if(typeof parent!="undefined"&&"IFrameWorker"in parent){let n=ne("script[src]"),[i]=n.src.split("/worker");e=e.replace("..",i)}let r=[];for(let n of t.lang){switch(n){case"ja":r.push(`${e}/tinyseg.js`);break;case"hi":case"th":r.push(`${e}/wordcut.js`);break}n!=="en"&&r.push(`${e}/min/lunr.${n}.min.js`)}t.lang.length>1&&r.push(`${e}/min/lunr.multi.min.js`),r.length&&(yield importScripts(`${e}/min/lunr.stemmer.support.min.js`,...r))})}function Fe(t){return B(this,null,function*(){switch(t.type){case 0:return yield Ie(t.data.config),de=new H(t.data),{type:1};case 2:let e=t.data;try{return{type:3,data:de.search(e)}}catch(r){return console.warn(`Invalid query: ${e} \u2013 see https://bit.ly/2s3ChXG`),console.warn(r),{type:3,data:{items:[]}}}default:throw new TypeError("Invalid message type")}})}self.lunr=Y.default;Y.default.utils.warn=console.warn;addEventListener("message",t=>B(void 0,null,function*(){postMessage(yield Fe(t.data))}));})(); //# sourceMappingURL=search.f8cc74c7.min.js.map �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/javascripts/workers/search.f8cc74c7.min.js.map������0000664�0000000�0000000�00000645566�14753064456�0032365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{ "version": 3, "sources": ["node_modules/lunr/lunr.js", "src/templates/assets/javascripts/integrations/search/worker/main/index.ts", "src/templates/assets/javascripts/browser/element/_/index.ts", "src/templates/assets/javascripts/polyfills/index.ts", "src/templates/assets/javascripts/integrations/search/config/index.ts", "src/templates/assets/javascripts/integrations/search/internal/_/index.ts", "src/templates/assets/javascripts/integrations/search/internal/extract/index.ts", "src/templates/assets/javascripts/integrations/search/internal/highlight/index.ts", "src/templates/assets/javascripts/integrations/search/internal/tokenize/index.ts", "src/templates/assets/javascripts/integrations/search/query/transform/index.ts", "src/templates/assets/javascripts/integrations/search/query/_/index.ts", "src/templates/assets/javascripts/integrations/search/query/segment/index.ts", "src/templates/assets/javascripts/integrations/search/_/index.ts"], "sourcesContent": ["/**\n * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9\n * Copyright (C) 2020 Oliver Nightingale\n * @license MIT\n */\n\n;(function(){\n\n/**\n * A convenience function for configuring and constructing\n * a new lunr Index.\n *\n * A lunr.Builder instance is created and the pipeline setup\n * with a trimmer, stop word filter and stemmer.\n *\n * This builder object is yielded to the configuration function\n * that is passed as a parameter, allowing the list of fields\n * and other builder parameters to be customised.\n *\n * All documents _must_ be added within the passed config function.\n *\n * @example\n * var idx = lunr(function () {\n * this.field('title')\n * this.field('body')\n * this.ref('id')\n *\n * documents.forEach(function (doc) {\n * this.add(doc)\n * }, this)\n * })\n *\n * @see {@link lunr.Builder}\n * @see {@link lunr.Pipeline}\n * @see {@link lunr.trimmer}\n * @see {@link lunr.stopWordFilter}\n * @see {@link lunr.stemmer}\n * @namespace {function} lunr\n */\nvar lunr = function (config) {\n var builder = new lunr.Builder\n\n builder.pipeline.add(\n lunr.trimmer,\n lunr.stopWordFilter,\n lunr.stemmer\n )\n\n builder.searchPipeline.add(\n lunr.stemmer\n )\n\n config.call(builder, builder)\n return builder.build()\n}\n\nlunr.version = \"2.3.9\"\n/*!\n * lunr.utils\n * Copyright (C) 2020 Oliver Nightingale\n */\n\n/**\n * A namespace containing utils for the rest of the lunr library\n * @namespace lunr.utils\n */\nlunr.utils = {}\n\n/**\n * Print a warning message to the console.\n *\n * @param {String} message The message to be printed.\n * @memberOf lunr.utils\n * @function\n */\nlunr.utils.warn = (function (global) {\n /* eslint-disable no-console */\n return function (message) {\n if (global.console && console.warn) {\n console.warn(message)\n }\n }\n /* eslint-enable no-console */\n})(this)\n\n/**\n * Convert an object to a string.\n *\n * In the case of `null` and `undefined` the function returns\n * the empty string, in all other cases the result of calling\n * `toString` on the passed object is returned.\n *\n * @param {Any} obj The object to convert to a string.\n * @return {String} string representation of the passed object.\n * @memberOf lunr.utils\n */\nlunr.utils.asString = function (obj) {\n if (obj === void 0 || obj === null) {\n return \"\"\n } else {\n return obj.toString()\n }\n}\n\n/**\n * Clones an object.\n *\n * Will create a copy of an existing object such that any mutations\n * on the copy cannot affect the original.\n *\n * Only shallow objects are supported, passing a nested object to this\n * function will cause a TypeError.\n *\n * Objects with primitives, and arrays of primitives are supported.\n *\n * @param {Object} obj The object to clone.\n * @return {Object} a clone of the passed object.\n * @throws {TypeError} when a nested object is passed.\n * @memberOf Utils\n */\nlunr.utils.clone = function (obj) {\n if (obj === null || obj === undefined) {\n return obj\n }\n\n var clone = Object.create(null),\n keys = Object.keys(obj)\n\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i],\n val = obj[key]\n\n if (Array.isArray(val)) {\n clone[key] = val.slice()\n continue\n }\n\n if (typeof val === 'string' ||\n typeof val === 'number' ||\n typeof val === 'boolean') {\n clone[key] = val\n continue\n }\n\n throw new TypeError(\"clone is not deep and does not support nested objects\")\n }\n\n return clone\n}\nlunr.FieldRef = function (docRef, fieldName, stringValue) {\n this.docRef = docRef\n this.fieldName = fieldName\n this._stringValue = stringValue\n}\n\nlunr.FieldRef.joiner = \"/\"\n\nlunr.FieldRef.fromString = function (s) {\n var n = s.indexOf(lunr.FieldRef.joiner)\n\n if (n === -1) {\n throw \"malformed field ref string\"\n }\n\n var fieldRef = s.slice(0, n),\n docRef = s.slice(n + 1)\n\n return new lunr.FieldRef (docRef, fieldRef, s)\n}\n\nlunr.FieldRef.prototype.toString = function () {\n if (this._stringValue == undefined) {\n this._stringValue = this.fieldName + lunr.FieldRef.joiner + this.docRef\n }\n\n return this._stringValue\n}\n/*!\n * lunr.Set\n * Copyright (C) 2020 Oliver Nightingale\n */\n\n/**\n * A lunr set.\n *\n * @constructor\n */\nlunr.Set = function (elements) {\n this.elements = Object.create(null)\n\n if (elements) {\n this.length = elements.length\n\n for (var i = 0; i < this.length; i++) {\n this.elements[elements[i]] = true\n }\n } else {\n this.length = 0\n }\n}\n\n/**\n * A complete set that contains all elements.\n *\n * @static\n * @readonly\n * @type {lunr.Set}\n */\nlunr.Set.complete = {\n intersect: function (other) {\n return other\n },\n\n union: function () {\n return this\n },\n\n contains: function () {\n return true\n }\n}\n\n/**\n * An empty set that contains no elements.\n *\n * @static\n * @readonly\n * @type {lunr.Set}\n */\nlunr.Set.empty = {\n intersect: function () {\n return this\n },\n\n union: function (other) {\n return other\n },\n\n contains: function () {\n return false\n }\n}\n\n/**\n * Returns true if this set contains the specified object.\n *\n * @param {object} object - Object whose presence in this set is to be tested.\n * @returns {boolean} - True if this set contains the specified object.\n */\nlunr.Set.prototype.contains = function (object) {\n return !!this.elements[object]\n}\n\n/**\n * Returns a new set containing only the elements that are present in both\n * this set and the specified set.\n *\n * @param {lunr.Set} other - set to intersect with this set.\n * @returns {lunr.Set} a new set that is the intersection of this and the specified set.\n */\n\nlunr.Set.prototype.intersect = function (other) {\n var a, b, elements, intersection = []\n\n if (other === lunr.Set.complete) {\n return this\n }\n\n if (other === lunr.Set.empty) {\n return other\n }\n\n if (this.length < other.length) {\n a = this\n b = other\n } else {\n a = other\n b = this\n }\n\n elements = Object.keys(a.elements)\n\n for (var i = 0; i < elements.length; i++) {\n var element = elements[i]\n if (element in b.elements) {\n intersection.push(element)\n }\n }\n\n return new lunr.Set (intersection)\n}\n\n/**\n * Returns a new set combining the elements of this and the specified set.\n *\n * @param {lunr.Set} other - set to union with this set.\n * @return {lunr.Set} a new set that is the union of this and the specified set.\n */\n\nlunr.Set.prototype.union = function (other) {\n if (other === lunr.Set.complete) {\n return lunr.Set.complete\n }\n\n if (other === lunr.Set.empty) {\n return this\n }\n\n return new lunr.Set(Object.keys(this.elements).concat(Object.keys(other.elements)))\n}\n/**\n * A function to calculate the inverse document frequency for\n * a posting. This is shared between the builder and the index\n *\n * @private\n * @param {object} posting - The posting for a given term\n * @param {number} documentCount - The total number of documents.\n */\nlunr.idf = function (posting, documentCount) {\n var documentsWithTerm = 0\n\n for (var fieldName in posting) {\n if (fieldName == '_index') continue // Ignore the term index, its not a field\n documentsWithTerm += Object.keys(posting[fieldName]).length\n }\n\n var x = (documentCount - documentsWithTerm + 0.5) / (documentsWithTerm + 0.5)\n\n return Math.log(1 + Math.abs(x))\n}\n\n/**\n * A token wraps a string representation of a token\n * as it is passed through the text processing pipeline.\n *\n * @constructor\n * @param {string} [str=''] - The string token being wrapped.\n * @param {object} [metadata={}] - Metadata associated with this token.\n */\nlunr.Token = function (str, metadata) {\n this.str = str || \"\"\n this.metadata = metadata || {}\n}\n\n/**\n * Returns the token string that is being wrapped by this object.\n *\n * @returns {string}\n */\nlunr.Token.prototype.toString = function () {\n return this.str\n}\n\n/**\n * A token update function is used when updating or optionally\n * when cloning a token.\n *\n * @callback lunr.Token~updateFunction\n * @param {string} str - The string representation of the token.\n * @param {Object} metadata - All metadata associated with this token.\n */\n\n/**\n * Applies the given function to the wrapped string token.\n *\n * @example\n * token.update(function (str, metadata) {\n * return str.toUpperCase()\n * })\n *\n * @param {lunr.Token~updateFunction} fn - A function to apply to the token string.\n * @returns {lunr.Token}\n */\nlunr.Token.prototype.update = function (fn) {\n this.str = fn(this.str, this.metadata)\n return this\n}\n\n/**\n * Creates a clone of this token. Optionally a function can be\n * applied to the cloned token.\n *\n * @param {lunr.Token~updateFunction} [fn] - An optional function to apply to the cloned token.\n * @returns {lunr.Token}\n */\nlunr.Token.prototype.clone = function (fn) {\n fn = fn || function (s) { return s }\n return new lunr.Token (fn(this.str, this.metadata), this.metadata)\n}\n/*!\n * lunr.tokenizer\n * Copyright (C) 2020 Oliver Nightingale\n */\n\n/**\n * A function for splitting a string into tokens ready to be inserted into\n * the search index. Uses `lunr.tokenizer.separator` to split strings, change\n * the value of this property to change how strings are split into tokens.\n *\n * This tokenizer will convert its parameter to a string by calling `toString` and\n * then will split this string on the character in `lunr.tokenizer.separator`.\n * Arrays will have their elements converted to strings and wrapped in a lunr.Token.\n *\n * Optional metadata can be passed to the tokenizer, this metadata will be cloned and\n * added as metadata to every token that is created from the object to be tokenized.\n *\n * @static\n * @param {?(string|object|object[])} obj - The object to convert into tokens\n * @param {?object} metadata - Optional metadata to associate with every token\n * @returns {lunr.Token[]}\n * @see {@link lunr.Pipeline}\n */\nlunr.tokenizer = function (obj, metadata) {\n if (obj == null || obj == undefined) {\n return []\n }\n\n if (Array.isArray(obj)) {\n return obj.map(function (t) {\n return new lunr.Token(\n lunr.utils.asString(t).toLowerCase(),\n lunr.utils.clone(metadata)\n )\n })\n }\n\n var str = obj.toString().toLowerCase(),\n len = str.length,\n tokens = []\n\n for (var sliceEnd = 0, sliceStart = 0; sliceEnd <= len; sliceEnd++) {\n var char = str.charAt(sliceEnd),\n sliceLength = sliceEnd - sliceStart\n\n if ((char.match(lunr.tokenizer.separator) || sliceEnd == len)) {\n\n if (sliceLength > 0) {\n var tokenMetadata = lunr.utils.clone(metadata) || {}\n tokenMetadata[\"position\"] = [sliceStart, sliceLength]\n tokenMetadata[\"index\"] = tokens.length\n\n tokens.push(\n new lunr.Token (\n str.slice(sliceStart, sliceEnd),\n tokenMetadata\n )\n )\n }\n\n sliceStart = sliceEnd + 1\n }\n\n }\n\n return tokens\n}\n\n/**\n * The separator used to split a string into tokens. Override this property to change the behaviour of\n * `lunr.tokenizer` behaviour when tokenizing strings. By default this splits on whitespace and hyphens.\n *\n * @static\n * @see lunr.tokenizer\n */\nlunr.tokenizer.separator = /[\\s\\-]+/\n/*!\n * lunr.Pipeline\n * Copyright (C) 2020 Oliver Nightingale\n */\n\n/**\n * lunr.Pipelines maintain an ordered list of functions to be applied to all\n * tokens in documents entering the search index and queries being ran against\n * the index.\n *\n * An instance of lunr.Index created with the lunr shortcut will contain a\n * pipeline with a stop word filter and an English language stemmer. Extra\n * functions can be added before or after either of these functions or these\n * default functions can be removed.\n *\n * When run the pipeline will call each function in turn, passing a token, the\n * index of that token in the original list of all tokens and finally a list of\n * all the original tokens.\n *\n * The output of functions in the pipeline will be passed to the next function\n * in the pipeline. To exclude a token from entering the index the function\n * should return undefined, the rest of the pipeline will not be called with\n * this token.\n *\n * For serialisation of pipelines to work, all functions used in an instance of\n * a pipeline should be registered with lunr.Pipeline. Registered functions can\n * then be loaded. If trying to load a serialised pipeline that uses functions\n * that are not registered an error will be thrown.\n *\n * If not planning on serialising the pipeline then registering pipeline functions\n * is not necessary.\n *\n * @constructor\n */\nlunr.Pipeline = function () {\n this._stack = []\n}\n\nlunr.Pipeline.registeredFunctions = Object.create(null)\n\n/**\n * A pipeline function maps lunr.Token to lunr.Token. A lunr.Token contains the token\n * string as well as all known metadata. A pipeline function can mutate the token string\n * or mutate (or add) metadata for a given token.\n *\n * A pipeline function can indicate that the passed token should be discarded by returning\n * null, undefined or an empty string. This token will not be passed to any downstream pipeline\n * functions and will not be added to the index.\n *\n * Multiple tokens can be returned by returning an array of tokens. Each token will be passed\n * to any downstream pipeline functions and all will returned tokens will be added to the index.\n *\n * Any number of pipeline functions may be chained together using a lunr.Pipeline.\n *\n * @interface lunr.PipelineFunction\n * @param {lunr.Token} token - A token from the document being processed.\n * @param {number} i - The index of this token in the complete list of tokens for this document/field.\n * @param {lunr.Token[]} tokens - All tokens for this document/field.\n * @returns {(?lunr.Token|lunr.Token[])}\n */\n\n/**\n * Register a function with the pipeline.\n *\n * Functions that are used in the pipeline should be registered if the pipeline\n * needs to be serialised, or a serialised pipeline needs to be loaded.\n *\n * Registering a function does not add it to a pipeline, functions must still be\n * added to instances of the pipeline for them to be used when running a pipeline.\n *\n * @param {lunr.PipelineFunction} fn - The function to check for.\n * @param {String} label - The label to register this function with\n */\nlunr.Pipeline.registerFunction = function (fn, label) {\n if (label in this.registeredFunctions) {\n lunr.utils.warn('Overwriting existing registered function: ' + label)\n }\n\n fn.label = label\n lunr.Pipeline.registeredFunctions[fn.label] = fn\n}\n\n/**\n * Warns if the function is not registered as a Pipeline function.\n *\n * @param {lunr.PipelineFunction} fn - The function to check for.\n * @private\n */\nlunr.Pipeline.warnIfFunctionNotRegistered = function (fn) {\n var isRegistered = fn.label && (fn.label in this.registeredFunctions)\n\n if (!isRegistered) {\n lunr.utils.warn('Function is not registered with pipeline. This may cause problems when serialising the index.\\n', fn)\n }\n}\n\n/**\n * Loads a previously serialised pipeline.\n *\n * All functions to be loaded must already be registered with lunr.Pipeline.\n * If any function from the serialised data has not been registered then an\n * error will be thrown.\n *\n * @param {Object} serialised - The serialised pipeline to load.\n * @returns {lunr.Pipeline}\n */\nlunr.Pipeline.load = function (serialised) {\n var pipeline = new lunr.Pipeline\n\n serialised.forEach(function (fnName) {\n var fn = lunr.Pipeline.registeredFunctions[fnName]\n\n if (fn) {\n pipeline.add(fn)\n } else {\n throw new Error('Cannot load unregistered function: ' + fnName)\n }\n })\n\n return pipeline\n}\n\n/**\n * Adds new functions to the end of the pipeline.\n *\n * Logs a warning if the function has not been registered.\n *\n * @param {lunr.PipelineFunction[]} functions - Any number of functions to add to the pipeline.\n */\nlunr.Pipeline.prototype.add = function () {\n var fns = Array.prototype.slice.call(arguments)\n\n fns.forEach(function (fn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(fn)\n this._stack.push(fn)\n }, this)\n}\n\n/**\n * Adds a single function after a function that already exists in the\n * pipeline.\n *\n * Logs a warning if the function has not been registered.\n *\n * @param {lunr.PipelineFunction} existingFn - A function that already exists in the pipeline.\n * @param {lunr.PipelineFunction} newFn - The new function to add to the pipeline.\n */\nlunr.Pipeline.prototype.after = function (existingFn, newFn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(newFn)\n\n var pos = this._stack.indexOf(existingFn)\n if (pos == -1) {\n throw new Error('Cannot find existingFn')\n }\n\n pos = pos + 1\n this._stack.splice(pos, 0, newFn)\n}\n\n/**\n * Adds a single function before a function that already exists in the\n * pipeline.\n *\n * Logs a warning if the function has not been registered.\n *\n * @param {lunr.PipelineFunction} existingFn - A function that already exists in the pipeline.\n * @param {lunr.PipelineFunction} newFn - The new function to add to the pipeline.\n */\nlunr.Pipeline.prototype.before = function (existingFn, newFn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(newFn)\n\n var pos = this._stack.indexOf(existingFn)\n if (pos == -1) {\n throw new Error('Cannot find existingFn')\n }\n\n this._stack.splice(pos, 0, newFn)\n}\n\n/**\n * Removes a function from the pipeline.\n *\n * @param {lunr.PipelineFunction} fn The function to remove from the pipeline.\n */\nlunr.Pipeline.prototype.remove = function (fn) {\n var pos = this._stack.indexOf(fn)\n if (pos == -1) {\n return\n }\n\n this._stack.splice(pos, 1)\n}\n\n/**\n * Runs the current list of functions that make up the pipeline against the\n * passed tokens.\n *\n * @param {Array} tokens The tokens to run through the pipeline.\n * @returns {Array}\n */\nlunr.Pipeline.prototype.run = function (tokens) {\n var stackLength = this._stack.length\n\n for (var i = 0; i < stackLength; i++) {\n var fn = this._stack[i]\n var memo = []\n\n for (var j = 0; j < tokens.length; j++) {\n var result = fn(tokens[j], j, tokens)\n\n if (result === null || result === void 0 || result === '') continue\n\n if (Array.isArray(result)) {\n for (var k = 0; k < result.length; k++) {\n memo.push(result[k])\n }\n } else {\n memo.push(result)\n }\n }\n\n tokens = memo\n }\n\n return tokens\n}\n\n/**\n * Convenience method for passing a string through a pipeline and getting\n * strings out. This method takes care of wrapping the passed string in a\n * token and mapping the resulting tokens back to strings.\n *\n * @param {string} str - The string to pass through the pipeline.\n * @param {?object} metadata - Optional metadata to associate with the token\n * passed to the pipeline.\n * @returns {string[]}\n */\nlunr.Pipeline.prototype.runString = function (str, metadata) {\n var token = new lunr.Token (str, metadata)\n\n return this.run([token]).map(function (t) {\n return t.toString()\n })\n}\n\n/**\n * Resets the pipeline by removing any existing processors.\n *\n */\nlunr.Pipeline.prototype.reset = function () {\n this._stack = []\n}\n\n/**\n * Returns a representation of the pipeline ready for serialisation.\n *\n * Logs a warning if the function has not been registered.\n *\n * @returns {Array}\n */\nlunr.Pipeline.prototype.toJSON = function () {\n return this._stack.map(function (fn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(fn)\n\n return fn.label\n })\n}\n/*!\n * lunr.Vector\n * Copyright (C) 2020 Oliver Nightingale\n */\n\n/**\n * A vector is used to construct the vector space of documents and queries. These\n * vectors support operations to determine the similarity between two documents or\n * a document and a query.\n *\n * Normally no parameters are required for initializing a vector, but in the case of\n * loading a previously dumped vector the raw elements can be provided to the constructor.\n *\n * For performance reasons vectors are implemented with a flat array, where an elements\n * index is immediately followed by its value. E.g. [index, value, index, value]. This\n * allows the underlying array to be as sparse as possible and still offer decent\n * performance when being used for vector calculations.\n *\n * @constructor\n * @param {Number[]} [elements] - The flat list of element index and element value pairs.\n */\nlunr.Vector = function (elements) {\n this._magnitude = 0\n this.elements = elements || []\n}\n\n\n/**\n * Calculates the position within the vector to insert a given index.\n *\n * This is used internally by insert and upsert. If there are duplicate indexes then\n * the position is returned as if the value for that index were to be updated, but it\n * is the callers responsibility to check whether there is a duplicate at that index\n *\n * @param {Number} insertIdx - The index at which the element should be inserted.\n * @returns {Number}\n */\nlunr.Vector.prototype.positionForIndex = function (index) {\n // For an empty vector the tuple can be inserted at the beginning\n if (this.elements.length == 0) {\n return 0\n }\n\n var start = 0,\n end = this.elements.length / 2,\n sliceLength = end - start,\n pivotPoint = Math.floor(sliceLength / 2),\n pivotIndex = this.elements[pivotPoint * 2]\n\n while (sliceLength > 1) {\n if (pivotIndex < index) {\n start = pivotPoint\n }\n\n if (pivotIndex > index) {\n end = pivotPoint\n }\n\n if (pivotIndex == index) {\n break\n }\n\n sliceLength = end - start\n pivotPoint = start + Math.floor(sliceLength / 2)\n pivotIndex = this.elements[pivotPoint * 2]\n }\n\n if (pivotIndex == index) {\n return pivotPoint * 2\n }\n\n if (pivotIndex > index) {\n return pivotPoint * 2\n }\n\n if (pivotIndex < index) {\n return (pivotPoint + 1) * 2\n }\n}\n\n/**\n * Inserts an element at an index within the vector.\n *\n * Does not allow duplicates, will throw an error if there is already an entry\n * for this index.\n *\n * @param {Number} insertIdx - The index at which the element should be inserted.\n * @param {Number} val - The value to be inserted into the vector.\n */\nlunr.Vector.prototype.insert = function (insertIdx, val) {\n this.upsert(insertIdx, val, function () {\n throw \"duplicate index\"\n })\n}\n\n/**\n * Inserts or updates an existing index within the vector.\n *\n * @param {Number} insertIdx - The index at which the element should be inserted.\n * @param {Number} val - The value to be inserted into the vector.\n * @param {function} fn - A function that is called for updates, the existing value and the\n * requested value are passed as arguments\n */\nlunr.Vector.prototype.upsert = function (insertIdx, val, fn) {\n this._magnitude = 0\n var position = this.positionForIndex(insertIdx)\n\n if (this.elements[position] == insertIdx) {\n this.elements[position + 1] = fn(this.elements[position + 1], val)\n } else {\n this.elements.splice(position, 0, insertIdx, val)\n }\n}\n\n/**\n * Calculates the magnitude of this vector.\n *\n * @returns {Number}\n */\nlunr.Vector.prototype.magnitude = function () {\n if (this._magnitude) return this._magnitude\n\n var sumOfSquares = 0,\n elementsLength = this.elements.length\n\n for (var i = 1; i < elementsLength; i += 2) {\n var val = this.elements[i]\n sumOfSquares += val * val\n }\n\n return this._magnitude = Math.sqrt(sumOfSquares)\n}\n\n/**\n * Calculates the dot product of this vector and another vector.\n *\n * @param {lunr.Vector} otherVector - The vector to compute the dot product with.\n * @returns {Number}\n */\nlunr.Vector.prototype.dot = function (otherVector) {\n var dotProduct = 0,\n a = this.elements, b = otherVector.elements,\n aLen = a.length, bLen = b.length,\n aVal = 0, bVal = 0,\n i = 0, j = 0\n\n while (i < aLen && j < bLen) {\n aVal = a[i], bVal = b[j]\n if (aVal < bVal) {\n i += 2\n } else if (aVal > bVal) {\n j += 2\n } else if (aVal == bVal) {\n dotProduct += a[i + 1] * b[j + 1]\n i += 2\n j += 2\n }\n }\n\n return dotProduct\n}\n\n/**\n * Calculates the similarity between this vector and another vector.\n *\n * @param {lunr.Vector} otherVector - The other vector to calculate the\n * similarity with.\n * @returns {Number}\n */\nlunr.Vector.prototype.similarity = function (otherVector) {\n return this.dot(otherVector) / this.magnitude() || 0\n}\n\n/**\n * Converts the vector to an array of the elements within the vector.\n *\n * @returns {Number[]}\n */\nlunr.Vector.prototype.toArray = function () {\n var output = new Array (this.elements.length / 2)\n\n for (var i = 1, j = 0; i < this.elements.length; i += 2, j++) {\n output[j] = this.elements[i]\n }\n\n return output\n}\n\n/**\n * A JSON serializable representation of the vector.\n *\n * @returns {Number[]}\n */\nlunr.Vector.prototype.toJSON = function () {\n return this.elements\n}\n/* eslint-disable */\n/*!\n * lunr.stemmer\n * Copyright (C) 2020 Oliver Nightingale\n * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt\n */\n\n/**\n * lunr.stemmer is an english language stemmer, this is a JavaScript\n * implementation of the PorterStemmer taken from http://tartarus.org/~martin\n *\n * @static\n * @implements {lunr.PipelineFunction}\n * @param {lunr.Token} token - The string to stem\n * @returns {lunr.Token}\n * @see {@link lunr.Pipeline}\n * @function\n */\nlunr.stemmer = (function(){\n var step2list = {\n \"ational\" : \"ate\",\n \"tional\" : \"tion\",\n \"enci\" : \"ence\",\n \"anci\" : \"ance\",\n \"izer\" : \"ize\",\n \"bli\" : \"ble\",\n \"alli\" : \"al\",\n \"entli\" : \"ent\",\n \"eli\" : \"e\",\n \"ousli\" : \"ous\",\n \"ization\" : \"ize\",\n \"ation\" : \"ate\",\n \"ator\" : \"ate\",\n \"alism\" : \"al\",\n \"iveness\" : \"ive\",\n \"fulness\" : \"ful\",\n \"ousness\" : \"ous\",\n \"aliti\" : \"al\",\n \"iviti\" : \"ive\",\n \"biliti\" : \"ble\",\n \"logi\" : \"log\"\n },\n\n step3list = {\n \"icate\" : \"ic\",\n \"ative\" : \"\",\n \"alize\" : \"al\",\n \"iciti\" : \"ic\",\n \"ical\" : \"ic\",\n \"ful\" : \"\",\n \"ness\" : \"\"\n },\n\n c = \"[^aeiou]\", // consonant\n v = \"[aeiouy]\", // vowel\n C = c + \"[^aeiouy]*\", // consonant sequence\n V = v + \"[aeiou]*\", // vowel sequence\n\n mgr0 = \"^(\" + C + \")?\" + V + C, // [C]VC... is m>0\n meq1 = \"^(\" + C + \")?\" + V + C + \"(\" + V + \")?$\", // [C]VC[V] is m=1\n mgr1 = \"^(\" + C + \")?\" + V + C + V + C, // [C]VCVC... is m>1\n s_v = \"^(\" + C + \")?\" + v; // vowel in stem\n\n var re_mgr0 = new RegExp(mgr0);\n var re_mgr1 = new RegExp(mgr1);\n var re_meq1 = new RegExp(meq1);\n var re_s_v = new RegExp(s_v);\n\n var re_1a = /^(.+?)(ss|i)es$/;\n var re2_1a = /^(.+?)([^s])s$/;\n var re_1b = /^(.+?)eed$/;\n var re2_1b = /^(.+?)(ed|ing)$/;\n var re_1b_2 = /.$/;\n var re2_1b_2 = /(at|bl|iz)$/;\n var re3_1b_2 = new RegExp(\"([^aeiouylsz])\\\\1$\");\n var re4_1b_2 = new RegExp(\"^\" + C + v + \"[^aeiouwxy]$\");\n\n var re_1c = /^(.+?[^aeiou])y$/;\n var re_2 = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/;\n\n var re_3 = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/;\n\n var re_4 = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/;\n var re2_4 = /^(.+?)(s|t)(ion)$/;\n\n var re_5 = /^(.+?)e$/;\n var re_5_1 = /ll$/;\n var re3_5 = new RegExp(\"^\" + C + v + \"[^aeiouwxy]$\");\n\n var porterStemmer = function porterStemmer(w) {\n var stem,\n suffix,\n firstch,\n re,\n re2,\n re3,\n re4;\n\n if (w.length < 3) { return w; }\n\n firstch = w.substr(0,1);\n if (firstch == \"y\") {\n w = firstch.toUpperCase() + w.substr(1);\n }\n\n // Step 1a\n re = re_1a\n re2 = re2_1a;\n\n if (re.test(w)) { w = w.replace(re,\"$1$2\"); }\n else if (re2.test(w)) { w = w.replace(re2,\"$1$2\"); }\n\n // Step 1b\n re = re_1b;\n re2 = re2_1b;\n if (re.test(w)) {\n var fp = re.exec(w);\n re = re_mgr0;\n if (re.test(fp[1])) {\n re = re_1b_2;\n w = w.replace(re,\"\");\n }\n } else if (re2.test(w)) {\n var fp = re2.exec(w);\n stem = fp[1];\n re2 = re_s_v;\n if (re2.test(stem)) {\n w = stem;\n re2 = re2_1b_2;\n re3 = re3_1b_2;\n re4 = re4_1b_2;\n if (re2.test(w)) { w = w + \"e\"; }\n else if (re3.test(w)) { re = re_1b_2; w = w.replace(re,\"\"); }\n else if (re4.test(w)) { w = w + \"e\"; }\n }\n }\n\n // Step 1c - replace suffix y or Y by i if preceded by a non-vowel which is not the first letter of the word (so cry -> cri, by -> by, say -> say)\n re = re_1c;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n w = stem + \"i\";\n }\n\n // Step 2\n re = re_2;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n suffix = fp[2];\n re = re_mgr0;\n if (re.test(stem)) {\n w = stem + step2list[suffix];\n }\n }\n\n // Step 3\n re = re_3;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n suffix = fp[2];\n re = re_mgr0;\n if (re.test(stem)) {\n w = stem + step3list[suffix];\n }\n }\n\n // Step 4\n re = re_4;\n re2 = re2_4;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n re = re_mgr1;\n if (re.test(stem)) {\n w = stem;\n }\n } else if (re2.test(w)) {\n var fp = re2.exec(w);\n stem = fp[1] + fp[2];\n re2 = re_mgr1;\n if (re2.test(stem)) {\n w = stem;\n }\n }\n\n // Step 5\n re = re_5;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n re = re_mgr1;\n re2 = re_meq1;\n re3 = re3_5;\n if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) {\n w = stem;\n }\n }\n\n re = re_5_1;\n re2 = re_mgr1;\n if (re.test(w) && re2.test(w)) {\n re = re_1b_2;\n w = w.replace(re,\"\");\n }\n\n // and turn initial Y back to y\n\n if (firstch == \"y\") {\n w = firstch.toLowerCase() + w.substr(1);\n }\n\n return w;\n };\n\n return function (token) {\n return token.update(porterStemmer);\n }\n})();\n\nlunr.Pipeline.registerFunction(lunr.stemmer, 'stemmer')\n/*!\n * lunr.stopWordFilter\n * Copyright (C) 2020 Oliver Nightingale\n */\n\n/**\n * lunr.generateStopWordFilter builds a stopWordFilter function from the provided\n * list of stop words.\n *\n * The built in lunr.stopWordFilter is built using this generator and can be used\n * to generate custom stopWordFilters for applications or non English languages.\n *\n * @function\n * @param {Array} token The token to pass through the filter\n * @returns {lunr.PipelineFunction}\n * @see lunr.Pipeline\n * @see lunr.stopWordFilter\n */\nlunr.generateStopWordFilter = function (stopWords) {\n var words = stopWords.reduce(function (memo, stopWord) {\n memo[stopWord] = stopWord\n return memo\n }, {})\n\n return function (token) {\n if (token && words[token.toString()] !== token.toString()) return token\n }\n}\n\n/**\n * lunr.stopWordFilter is an English language stop word list filter, any words\n * contained in the list will not be passed through the filter.\n *\n * This is intended to be used in the Pipeline. If the token does not pass the\n * filter then undefined will be returned.\n *\n * @function\n * @implements {lunr.PipelineFunction}\n * @params {lunr.Token} token - A token to check for being a stop word.\n * @returns {lunr.Token}\n * @see {@link lunr.Pipeline}\n */\nlunr.stopWordFilter = lunr.generateStopWordFilter([\n 'a',\n 'able',\n 'about',\n 'across',\n 'after',\n 'all',\n 'almost',\n 'also',\n 'am',\n 'among',\n 'an',\n 'and',\n 'any',\n 'are',\n 'as',\n 'at',\n 'be',\n 'because',\n 'been',\n 'but',\n 'by',\n 'can',\n 'cannot',\n 'could',\n 'dear',\n 'did',\n 'do',\n 'does',\n 'either',\n 'else',\n 'ever',\n 'every',\n 'for',\n 'from',\n 'get',\n 'got',\n 'had',\n 'has',\n 'have',\n 'he',\n 'her',\n 'hers',\n 'him',\n 'his',\n 'how',\n 'however',\n 'i',\n 'if',\n 'in',\n 'into',\n 'is',\n 'it',\n 'its',\n 'just',\n 'least',\n 'let',\n 'like',\n 'likely',\n 'may',\n 'me',\n 'might',\n 'most',\n 'must',\n 'my',\n 'neither',\n 'no',\n 'nor',\n 'not',\n 'of',\n 'off',\n 'often',\n 'on',\n 'only',\n 'or',\n 'other',\n 'our',\n 'own',\n 'rather',\n 'said',\n 'say',\n 'says',\n 'she',\n 'should',\n 'since',\n 'so',\n 'some',\n 'than',\n 'that',\n 'the',\n 'their',\n 'them',\n 'then',\n 'there',\n 'these',\n 'they',\n 'this',\n 'tis',\n 'to',\n 'too',\n 'twas',\n 'us',\n 'wants',\n 'was',\n 'we',\n 'were',\n 'what',\n 'when',\n 'where',\n 'which',\n 'while',\n 'who',\n 'whom',\n 'why',\n 'will',\n 'with',\n 'would',\n 'yet',\n 'you',\n 'your'\n])\n\nlunr.Pipeline.registerFunction(lunr.stopWordFilter, 'stopWordFilter')\n/*!\n * lunr.trimmer\n * Copyright (C) 2020 Oliver Nightingale\n */\n\n/**\n * lunr.trimmer is a pipeline function for trimming non word\n * characters from the beginning and end of tokens before they\n * enter the index.\n *\n * This implementation may not work correctly for non latin\n * characters and should either be removed or adapted for use\n * with languages with non-latin characters.\n *\n * @static\n * @implements {lunr.PipelineFunction}\n * @param {lunr.Token} token The token to pass through the filter\n * @returns {lunr.Token}\n * @see lunr.Pipeline\n */\nlunr.trimmer = function (token) {\n return token.update(function (s) {\n return s.replace(/^\\W+/, '').replace(/\\W+$/, '')\n })\n}\n\nlunr.Pipeline.registerFunction(lunr.trimmer, 'trimmer')\n/*!\n * lunr.TokenSet\n * Copyright (C) 2020 Oliver Nightingale\n */\n\n/**\n * A token set is used to store the unique list of all tokens\n * within an index. Token sets are also used to represent an\n * incoming query to the index, this query token set and index\n * token set are then intersected to find which tokens to look\n * up in the inverted index.\n *\n * A token set can hold multiple tokens, as in the case of the\n * index token set, or it can hold a single token as in the\n * case of a simple query token set.\n *\n * Additionally token sets are used to perform wildcard matching.\n * Leading, contained and trailing wildcards are supported, and\n * from this edit distance matching can also be provided.\n *\n * Token sets are implemented as a minimal finite state automata,\n * where both common prefixes and suffixes are shared between tokens.\n * This helps to reduce the space used for storing the token set.\n *\n * @constructor\n */\nlunr.TokenSet = function () {\n this.final = false\n this.edges = {}\n this.id = lunr.TokenSet._nextId\n lunr.TokenSet._nextId += 1\n}\n\n/**\n * Keeps track of the next, auto increment, identifier to assign\n * to a new tokenSet.\n *\n * TokenSets require a unique identifier to be correctly minimised.\n *\n * @private\n */\nlunr.TokenSet._nextId = 1\n\n/**\n * Creates a TokenSet instance from the given sorted array of words.\n *\n * @param {String[]} arr - A sorted array of strings to create the set from.\n * @returns {lunr.TokenSet}\n * @throws Will throw an error if the input array is not sorted.\n */\nlunr.TokenSet.fromArray = function (arr) {\n var builder = new lunr.TokenSet.Builder\n\n for (var i = 0, len = arr.length; i < len; i++) {\n builder.insert(arr[i])\n }\n\n builder.finish()\n return builder.root\n}\n\n/**\n * Creates a token set from a query clause.\n *\n * @private\n * @param {Object} clause - A single clause from lunr.Query.\n * @param {string} clause.term - The query clause term.\n * @param {number} [clause.editDistance] - The optional edit distance for the term.\n * @returns {lunr.TokenSet}\n */\nlunr.TokenSet.fromClause = function (clause) {\n if ('editDistance' in clause) {\n return lunr.TokenSet.fromFuzzyString(clause.term, clause.editDistance)\n } else {\n return lunr.TokenSet.fromString(clause.term)\n }\n}\n\n/**\n * Creates a token set representing a single string with a specified\n * edit distance.\n *\n * Insertions, deletions, substitutions and transpositions are each\n * treated as an edit distance of 1.\n *\n * Increasing the allowed edit distance will have a dramatic impact\n * on the performance of both creating and intersecting these TokenSets.\n * It is advised to keep the edit distance less than 3.\n *\n * @param {string} str - The string to create the token set from.\n * @param {number} editDistance - The allowed edit distance to match.\n * @returns {lunr.Vector}\n */\nlunr.TokenSet.fromFuzzyString = function (str, editDistance) {\n var root = new lunr.TokenSet\n\n var stack = [{\n node: root,\n editsRemaining: editDistance,\n str: str\n }]\n\n while (stack.length) {\n var frame = stack.pop()\n\n // no edit\n if (frame.str.length > 0) {\n var char = frame.str.charAt(0),\n noEditNode\n\n if (char in frame.node.edges) {\n noEditNode = frame.node.edges[char]\n } else {\n noEditNode = new lunr.TokenSet\n frame.node.edges[char] = noEditNode\n }\n\n if (frame.str.length == 1) {\n noEditNode.final = true\n }\n\n stack.push({\n node: noEditNode,\n editsRemaining: frame.editsRemaining,\n str: frame.str.slice(1)\n })\n }\n\n if (frame.editsRemaining == 0) {\n continue\n }\n\n // insertion\n if (\"*\" in frame.node.edges) {\n var insertionNode = frame.node.edges[\"*\"]\n } else {\n var insertionNode = new lunr.TokenSet\n frame.node.edges[\"*\"] = insertionNode\n }\n\n if (frame.str.length == 0) {\n insertionNode.final = true\n }\n\n stack.push({\n node: insertionNode,\n editsRemaining: frame.editsRemaining - 1,\n str: frame.str\n })\n\n // deletion\n // can only do a deletion if we have enough edits remaining\n // and if there are characters left to delete in the string\n if (frame.str.length > 1) {\n stack.push({\n node: frame.node,\n editsRemaining: frame.editsRemaining - 1,\n str: frame.str.slice(1)\n })\n }\n\n // deletion\n // just removing the last character from the str\n if (frame.str.length == 1) {\n frame.node.final = true\n }\n\n // substitution\n // can only do a substitution if we have enough edits remaining\n // and if there are characters left to substitute\n if (frame.str.length >= 1) {\n if (\"*\" in frame.node.edges) {\n var substitutionNode = frame.node.edges[\"*\"]\n } else {\n var substitutionNode = new lunr.TokenSet\n frame.node.edges[\"*\"] = substitutionNode\n }\n\n if (frame.str.length == 1) {\n substitutionNode.final = true\n }\n\n stack.push({\n node: substitutionNode,\n editsRemaining: frame.editsRemaining - 1,\n str: frame.str.slice(1)\n })\n }\n\n // transposition\n // can only do a transposition if there are edits remaining\n // and there are enough characters to transpose\n if (frame.str.length > 1) {\n var charA = frame.str.charAt(0),\n charB = frame.str.charAt(1),\n transposeNode\n\n if (charB in frame.node.edges) {\n transposeNode = frame.node.edges[charB]\n } else {\n transposeNode = new lunr.TokenSet\n frame.node.edges[charB] = transposeNode\n }\n\n if (frame.str.length == 1) {\n transposeNode.final = true\n }\n\n stack.push({\n node: transposeNode,\n editsRemaining: frame.editsRemaining - 1,\n str: charA + frame.str.slice(2)\n })\n }\n }\n\n return root\n}\n\n/**\n * Creates a TokenSet from a string.\n *\n * The string may contain one or more wildcard characters (*)\n * that will allow wildcard matching when intersecting with\n * another TokenSet.\n *\n * @param {string} str - The string to create a TokenSet from.\n * @returns {lunr.TokenSet}\n */\nlunr.TokenSet.fromString = function (str) {\n var node = new lunr.TokenSet,\n root = node\n\n /*\n * Iterates through all characters within the passed string\n * appending a node for each character.\n *\n * When a wildcard character is found then a self\n * referencing edge is introduced to continually match\n * any number of any characters.\n */\n for (var i = 0, len = str.length; i < len; i++) {\n var char = str[i],\n final = (i == len - 1)\n\n if (char == \"*\") {\n node.edges[char] = node\n node.final = final\n\n } else {\n var next = new lunr.TokenSet\n next.final = final\n\n node.edges[char] = next\n node = next\n }\n }\n\n return root\n}\n\n/**\n * Converts this TokenSet into an array of strings\n * contained within the TokenSet.\n *\n * This is not intended to be used on a TokenSet that\n * contains wildcards, in these cases the results are\n * undefined and are likely to cause an infinite loop.\n *\n * @returns {string[]}\n */\nlunr.TokenSet.prototype.toArray = function () {\n var words = []\n\n var stack = [{\n prefix: \"\",\n node: this\n }]\n\n while (stack.length) {\n var frame = stack.pop(),\n edges = Object.keys(frame.node.edges),\n len = edges.length\n\n if (frame.node.final) {\n /* In Safari, at this point the prefix is sometimes corrupted, see:\n * https://github.com/olivernn/lunr.js/issues/279 Calling any\n * String.prototype method forces Safari to \"cast\" this string to what\n * it's supposed to be, fixing the bug. */\n frame.prefix.charAt(0)\n words.push(frame.prefix)\n }\n\n for (var i = 0; i < len; i++) {\n var edge = edges[i]\n\n stack.push({\n prefix: frame.prefix.concat(edge),\n node: frame.node.edges[edge]\n })\n }\n }\n\n return words\n}\n\n/**\n * Generates a string representation of a TokenSet.\n *\n * This is intended to allow TokenSets to be used as keys\n * in objects, largely to aid the construction and minimisation\n * of a TokenSet. As such it is not designed to be a human\n * friendly representation of the TokenSet.\n *\n * @returns {string}\n */\nlunr.TokenSet.prototype.toString = function () {\n // NOTE: Using Object.keys here as this.edges is very likely\n // to enter 'hash-mode' with many keys being added\n //\n // avoiding a for-in loop here as it leads to the function\n // being de-optimised (at least in V8). From some simple\n // benchmarks the performance is comparable, but allowing\n // V8 to optimize may mean easy performance wins in the future.\n\n if (this._str) {\n return this._str\n }\n\n var str = this.final ? '1' : '0',\n labels = Object.keys(this.edges).sort(),\n len = labels.length\n\n for (var i = 0; i < len; i++) {\n var label = labels[i],\n node = this.edges[label]\n\n str = str + label + node.id\n }\n\n return str\n}\n\n/**\n * Returns a new TokenSet that is the intersection of\n * this TokenSet and the passed TokenSet.\n *\n * This intersection will take into account any wildcards\n * contained within the TokenSet.\n *\n * @param {lunr.TokenSet} b - An other TokenSet to intersect with.\n * @returns {lunr.TokenSet}\n */\nlunr.TokenSet.prototype.intersect = function (b) {\n var output = new lunr.TokenSet,\n frame = undefined\n\n var stack = [{\n qNode: b,\n output: output,\n node: this\n }]\n\n while (stack.length) {\n frame = stack.pop()\n\n // NOTE: As with the #toString method, we are using\n // Object.keys and a for loop instead of a for-in loop\n // as both of these objects enter 'hash' mode, causing\n // the function to be de-optimised in V8\n var qEdges = Object.keys(frame.qNode.edges),\n qLen = qEdges.length,\n nEdges = Object.keys(frame.node.edges),\n nLen = nEdges.length\n\n for (var q = 0; q < qLen; q++) {\n var qEdge = qEdges[q]\n\n for (var n = 0; n < nLen; n++) {\n var nEdge = nEdges[n]\n\n if (nEdge == qEdge || qEdge == '*') {\n var node = frame.node.edges[nEdge],\n qNode = frame.qNode.edges[qEdge],\n final = node.final && qNode.final,\n next = undefined\n\n if (nEdge in frame.output.edges) {\n // an edge already exists for this character\n // no need to create a new node, just set the finality\n // bit unless this node is already final\n next = frame.output.edges[nEdge]\n next.final = next.final || final\n\n } else {\n // no edge exists yet, must create one\n // set the finality bit and insert it\n // into the output\n next = new lunr.TokenSet\n next.final = final\n frame.output.edges[nEdge] = next\n }\n\n stack.push({\n qNode: qNode,\n output: next,\n node: node\n })\n }\n }\n }\n }\n\n return output\n}\nlunr.TokenSet.Builder = function () {\n this.previousWord = \"\"\n this.root = new lunr.TokenSet\n this.uncheckedNodes = []\n this.minimizedNodes = {}\n}\n\nlunr.TokenSet.Builder.prototype.insert = function (word) {\n var node,\n commonPrefix = 0\n\n if (word < this.previousWord) {\n throw new Error (\"Out of order word insertion\")\n }\n\n for (var i = 0; i < word.length && i < this.previousWord.length; i++) {\n if (word[i] != this.previousWord[i]) break\n commonPrefix++\n }\n\n this.minimize(commonPrefix)\n\n if (this.uncheckedNodes.length == 0) {\n node = this.root\n } else {\n node = this.uncheckedNodes[this.uncheckedNodes.length - 1].child\n }\n\n for (var i = commonPrefix; i < word.length; i++) {\n var nextNode = new lunr.TokenSet,\n char = word[i]\n\n node.edges[char] = nextNode\n\n this.uncheckedNodes.push({\n parent: node,\n char: char,\n child: nextNode\n })\n\n node = nextNode\n }\n\n node.final = true\n this.previousWord = word\n}\n\nlunr.TokenSet.Builder.prototype.finish = function () {\n this.minimize(0)\n}\n\nlunr.TokenSet.Builder.prototype.minimize = function (downTo) {\n for (var i = this.uncheckedNodes.length - 1; i >= downTo; i--) {\n var node = this.uncheckedNodes[i],\n childKey = node.child.toString()\n\n if (childKey in this.minimizedNodes) {\n node.parent.edges[node.char] = this.minimizedNodes[childKey]\n } else {\n // Cache the key for this node since\n // we know it can't change anymore\n node.child._str = childKey\n\n this.minimizedNodes[childKey] = node.child\n }\n\n this.uncheckedNodes.pop()\n }\n}\n/*!\n * lunr.Index\n * Copyright (C) 2020 Oliver Nightingale\n */\n\n/**\n * An index contains the built index of all documents and provides a query interface\n * to the index.\n *\n * Usually instances of lunr.Index will not be created using this constructor, instead\n * lunr.Builder should be used to construct new indexes, or lunr.Index.load should be\n * used to load previously built and serialized indexes.\n *\n * @constructor\n * @param {Object} attrs - The attributes of the built search index.\n * @param {Object} attrs.invertedIndex - An index of term/field to document reference.\n * @param {Object<string, lunr.Vector>} attrs.fieldVectors - Field vectors\n * @param {lunr.TokenSet} attrs.tokenSet - An set of all corpus tokens.\n * @param {string[]} attrs.fields - The names of indexed document fields.\n * @param {lunr.Pipeline} attrs.pipeline - The pipeline to use for search terms.\n */\nlunr.Index = function (attrs) {\n this.invertedIndex = attrs.invertedIndex\n this.fieldVectors = attrs.fieldVectors\n this.tokenSet = attrs.tokenSet\n this.fields = attrs.fields\n this.pipeline = attrs.pipeline\n}\n\n/**\n * A result contains details of a document matching a search query.\n * @typedef {Object} lunr.Index~Result\n * @property {string} ref - The reference of the document this result represents.\n * @property {number} score - A number between 0 and 1 representing how similar this document is to the query.\n * @property {lunr.MatchData} matchData - Contains metadata about this match including which term(s) caused the match.\n */\n\n/**\n * Although lunr provides the ability to create queries using lunr.Query, it also provides a simple\n * query language which itself is parsed into an instance of lunr.Query.\n *\n * For programmatically building queries it is advised to directly use lunr.Query, the query language\n * is best used for human entered text rather than program generated text.\n *\n * At its simplest queries can just be a single term, e.g. `hello`, multiple terms are also supported\n * and will be combined with OR, e.g `hello world` will match documents that contain either 'hello'\n * or 'world', though those that contain both will rank higher in the results.\n *\n * Wildcards can be included in terms to match one or more unspecified characters, these wildcards can\n * be inserted anywhere within the term, and more than one wildcard can exist in a single term. Adding\n * wildcards will increase the number of documents that will be found but can also have a negative\n * impact on query performance, especially with wildcards at the beginning of a term.\n *\n * Terms can be restricted to specific fields, e.g. `title:hello`, only documents with the term\n * hello in the title field will match this query. Using a field not present in the index will lead\n * to an error being thrown.\n *\n * Modifiers can also be added to terms, lunr supports edit distance and boost modifiers on terms. A term\n * boost will make documents matching that term score higher, e.g. `foo^5`. Edit distance is also supported\n * to provide fuzzy matching, e.g. 'hello~2' will match documents with hello with an edit distance of 2.\n * Avoid large values for edit distance to improve query performance.\n *\n * Each term also supports a presence modifier. By default a term's presence in document is optional, however\n * this can be changed to either required or prohibited. For a term's presence to be required in a document the\n * term should be prefixed with a '+', e.g. `+foo bar` is a search for documents that must contain 'foo' and\n * optionally contain 'bar'. Conversely a leading '-' sets the terms presence to prohibited, i.e. it must not\n * appear in a document, e.g. `-foo bar` is a search for documents that do not contain 'foo' but may contain 'bar'.\n *\n * To escape special characters the backslash character '\\' can be used, this allows searches to include\n * characters that would normally be considered modifiers, e.g. `foo\\~2` will search for a term \"foo~2\" instead\n * of attempting to apply a boost of 2 to the search term \"foo\".\n *\n * @typedef {string} lunr.Index~QueryString\n * @example <caption>Simple single term query</caption>\n * hello\n * @example <caption>Multiple term query</caption>\n * hello world\n * @example <caption>term scoped to a field</caption>\n * title:hello\n * @example <caption>term with a boost of 10</caption>\n * hello^10\n * @example <caption>term with an edit distance of 2</caption>\n * hello~2\n * @example <caption>terms with presence modifiers</caption>\n * -foo +bar baz\n */\n\n/**\n * Performs a search against the index using lunr query syntax.\n *\n * Results will be returned sorted by their score, the most relevant results\n * will be returned first. For details on how the score is calculated, please see\n * the {@link https://lunrjs.com/guides/searching.html#scoring|guide}.\n *\n * For more programmatic querying use lunr.Index#query.\n *\n * @param {lunr.Index~QueryString} queryString - A string containing a lunr query.\n * @throws {lunr.QueryParseError} If the passed query string cannot be parsed.\n * @returns {lunr.Index~Result[]}\n */\nlunr.Index.prototype.search = function (queryString) {\n return this.query(function (query) {\n var parser = new lunr.QueryParser(queryString, query)\n parser.parse()\n })\n}\n\n/**\n * A query builder callback provides a query object to be used to express\n * the query to perform on the index.\n *\n * @callback lunr.Index~queryBuilder\n * @param {lunr.Query} query - The query object to build up.\n * @this lunr.Query\n */\n\n/**\n * Performs a query against the index using the yielded lunr.Query object.\n *\n * If performing programmatic queries against the index, this method is preferred\n * over lunr.Index#search so as to avoid the additional query parsing overhead.\n *\n * A query object is yielded to the supplied function which should be used to\n * express the query to be run against the index.\n *\n * Note that although this function takes a callback parameter it is _not_ an\n * asynchronous operation, the callback is just yielded a query object to be\n * customized.\n *\n * @param {lunr.Index~queryBuilder} fn - A function that is used to build the query.\n * @returns {lunr.Index~Result[]}\n */\nlunr.Index.prototype.query = function (fn) {\n // for each query clause\n // * process terms\n // * expand terms from token set\n // * find matching documents and metadata\n // * get document vectors\n // * score documents\n\n var query = new lunr.Query(this.fields),\n matchingFields = Object.create(null),\n queryVectors = Object.create(null),\n termFieldCache = Object.create(null),\n requiredMatches = Object.create(null),\n prohibitedMatches = Object.create(null)\n\n /*\n * To support field level boosts a query vector is created per\n * field. An empty vector is eagerly created to support negated\n * queries.\n */\n for (var i = 0; i < this.fields.length; i++) {\n queryVectors[this.fields[i]] = new lunr.Vector\n }\n\n fn.call(query, query)\n\n for (var i = 0; i < query.clauses.length; i++) {\n /*\n * Unless the pipeline has been disabled for this term, which is\n * the case for terms with wildcards, we need to pass the clause\n * term through the search pipeline. A pipeline returns an array\n * of processed terms. Pipeline functions may expand the passed\n * term, which means we may end up performing multiple index lookups\n * for a single query term.\n */\n var clause = query.clauses[i],\n terms = null,\n clauseMatches = lunr.Set.empty\n\n if (clause.usePipeline) {\n terms = this.pipeline.runString(clause.term, {\n fields: clause.fields\n })\n } else {\n terms = [clause.term]\n }\n\n for (var m = 0; m < terms.length; m++) {\n var term = terms[m]\n\n /*\n * Each term returned from the pipeline needs to use the same query\n * clause object, e.g. the same boost and or edit distance. The\n * simplest way to do this is to re-use the clause object but mutate\n * its term property.\n */\n clause.term = term\n\n /*\n * From the term in the clause we create a token set which will then\n * be used to intersect the indexes token set to get a list of terms\n * to lookup in the inverted index\n */\n var termTokenSet = lunr.TokenSet.fromClause(clause),\n expandedTerms = this.tokenSet.intersect(termTokenSet).toArray()\n\n /*\n * If a term marked as required does not exist in the tokenSet it is\n * impossible for the search to return any matches. We set all the field\n * scoped required matches set to empty and stop examining any further\n * clauses.\n */\n if (expandedTerms.length === 0 && clause.presence === lunr.Query.presence.REQUIRED) {\n for (var k = 0; k < clause.fields.length; k++) {\n var field = clause.fields[k]\n requiredMatches[field] = lunr.Set.empty\n }\n\n break\n }\n\n for (var j = 0; j < expandedTerms.length; j++) {\n /*\n * For each term get the posting and termIndex, this is required for\n * building the query vector.\n */\n var expandedTerm = expandedTerms[j],\n posting = this.invertedIndex[expandedTerm],\n termIndex = posting._index\n\n for (var k = 0; k < clause.fields.length; k++) {\n /*\n * For each field that this query term is scoped by (by default\n * all fields are in scope) we need to get all the document refs\n * that have this term in that field.\n *\n * The posting is the entry in the invertedIndex for the matching\n * term from above.\n */\n var field = clause.fields[k],\n fieldPosting = posting[field],\n matchingDocumentRefs = Object.keys(fieldPosting),\n termField = expandedTerm + \"/\" + field,\n matchingDocumentsSet = new lunr.Set(matchingDocumentRefs)\n\n /*\n * if the presence of this term is required ensure that the matching\n * documents are added to the set of required matches for this clause.\n *\n */\n if (clause.presence == lunr.Query.presence.REQUIRED) {\n clauseMatches = clauseMatches.union(matchingDocumentsSet)\n\n if (requiredMatches[field] === undefined) {\n requiredMatches[field] = lunr.Set.complete\n }\n }\n\n /*\n * if the presence of this term is prohibited ensure that the matching\n * documents are added to the set of prohibited matches for this field,\n * creating that set if it does not yet exist.\n */\n if (clause.presence == lunr.Query.presence.PROHIBITED) {\n if (prohibitedMatches[field] === undefined) {\n prohibitedMatches[field] = lunr.Set.empty\n }\n\n prohibitedMatches[field] = prohibitedMatches[field].union(matchingDocumentsSet)\n\n /*\n * Prohibited matches should not be part of the query vector used for\n * similarity scoring and no metadata should be extracted so we continue\n * to the next field\n */\n continue\n }\n\n /*\n * The query field vector is populated using the termIndex found for\n * the term and a unit value with the appropriate boost applied.\n * Using upsert because there could already be an entry in the vector\n * for the term we are working with. In that case we just add the scores\n * together.\n */\n queryVectors[field].upsert(termIndex, clause.boost, function (a, b) { return a + b })\n\n /**\n * If we've already seen this term, field combo then we've already collected\n * the matching documents and metadata, no need to go through all that again\n */\n if (termFieldCache[termField]) {\n continue\n }\n\n for (var l = 0; l < matchingDocumentRefs.length; l++) {\n /*\n * All metadata for this term/field/document triple\n * are then extracted and collected into an instance\n * of lunr.MatchData ready to be returned in the query\n * results\n */\n var matchingDocumentRef = matchingDocumentRefs[l],\n matchingFieldRef = new lunr.FieldRef (matchingDocumentRef, field),\n metadata = fieldPosting[matchingDocumentRef],\n fieldMatch\n\n if ((fieldMatch = matchingFields[matchingFieldRef]) === undefined) {\n matchingFields[matchingFieldRef] = new lunr.MatchData (expandedTerm, field, metadata)\n } else {\n fieldMatch.add(expandedTerm, field, metadata)\n }\n\n }\n\n termFieldCache[termField] = true\n }\n }\n }\n\n /**\n * If the presence was required we need to update the requiredMatches field sets.\n * We do this after all fields for the term have collected their matches because\n * the clause terms presence is required in _any_ of the fields not _all_ of the\n * fields.\n */\n if (clause.presence === lunr.Query.presence.REQUIRED) {\n for (var k = 0; k < clause.fields.length; k++) {\n var field = clause.fields[k]\n requiredMatches[field] = requiredMatches[field].intersect(clauseMatches)\n }\n }\n }\n\n /**\n * Need to combine the field scoped required and prohibited\n * matching documents into a global set of required and prohibited\n * matches\n */\n var allRequiredMatches = lunr.Set.complete,\n allProhibitedMatches = lunr.Set.empty\n\n for (var i = 0; i < this.fields.length; i++) {\n var field = this.fields[i]\n\n if (requiredMatches[field]) {\n allRequiredMatches = allRequiredMatches.intersect(requiredMatches[field])\n }\n\n if (prohibitedMatches[field]) {\n allProhibitedMatches = allProhibitedMatches.union(prohibitedMatches[field])\n }\n }\n\n var matchingFieldRefs = Object.keys(matchingFields),\n results = [],\n matches = Object.create(null)\n\n /*\n * If the query is negated (contains only prohibited terms)\n * we need to get _all_ fieldRefs currently existing in the\n * index. This is only done when we know that the query is\n * entirely prohibited terms to avoid any cost of getting all\n * fieldRefs unnecessarily.\n *\n * Additionally, blank MatchData must be created to correctly\n * populate the results.\n */\n if (query.isNegated()) {\n matchingFieldRefs = Object.keys(this.fieldVectors)\n\n for (var i = 0; i < matchingFieldRefs.length; i++) {\n var matchingFieldRef = matchingFieldRefs[i]\n var fieldRef = lunr.FieldRef.fromString(matchingFieldRef)\n matchingFields[matchingFieldRef] = new lunr.MatchData\n }\n }\n\n for (var i = 0; i < matchingFieldRefs.length; i++) {\n /*\n * Currently we have document fields that match the query, but we\n * need to return documents. The matchData and scores are combined\n * from multiple fields belonging to the same document.\n *\n * Scores are calculated by field, using the query vectors created\n * above, and combined into a final document score using addition.\n */\n var fieldRef = lunr.FieldRef.fromString(matchingFieldRefs[i]),\n docRef = fieldRef.docRef\n\n if (!allRequiredMatches.contains(docRef)) {\n continue\n }\n\n if (allProhibitedMatches.contains(docRef)) {\n continue\n }\n\n var fieldVector = this.fieldVectors[fieldRef],\n score = queryVectors[fieldRef.fieldName].similarity(fieldVector),\n docMatch\n\n if ((docMatch = matches[docRef]) !== undefined) {\n docMatch.score += score\n docMatch.matchData.combine(matchingFields[fieldRef])\n } else {\n var match = {\n ref: docRef,\n score: score,\n matchData: matchingFields[fieldRef]\n }\n matches[docRef] = match\n results.push(match)\n }\n }\n\n /*\n * Sort the results objects by score, highest first.\n */\n return results.sort(function (a, b) {\n return b.score - a.score\n })\n}\n\n/**\n * Prepares the index for JSON serialization.\n *\n * The schema for this JSON blob will be described in a\n * separate JSON schema file.\n *\n * @returns {Object}\n */\nlunr.Index.prototype.toJSON = function () {\n var invertedIndex = Object.keys(this.invertedIndex)\n .sort()\n .map(function (term) {\n return [term, this.invertedIndex[term]]\n }, this)\n\n var fieldVectors = Object.keys(this.fieldVectors)\n .map(function (ref) {\n return [ref, this.fieldVectors[ref].toJSON()]\n }, this)\n\n return {\n version: lunr.version,\n fields: this.fields,\n fieldVectors: fieldVectors,\n invertedIndex: invertedIndex,\n pipeline: this.pipeline.toJSON()\n }\n}\n\n/**\n * Loads a previously serialized lunr.Index\n *\n * @param {Object} serializedIndex - A previously serialized lunr.Index\n * @returns {lunr.Index}\n */\nlunr.Index.load = function (serializedIndex) {\n var attrs = {},\n fieldVectors = {},\n serializedVectors = serializedIndex.fieldVectors,\n invertedIndex = Object.create(null),\n serializedInvertedIndex = serializedIndex.invertedIndex,\n tokenSetBuilder = new lunr.TokenSet.Builder,\n pipeline = lunr.Pipeline.load(serializedIndex.pipeline)\n\n if (serializedIndex.version != lunr.version) {\n lunr.utils.warn(\"Version mismatch when loading serialised index. Current version of lunr '\" + lunr.version + \"' does not match serialized index '\" + serializedIndex.version + \"'\")\n }\n\n for (var i = 0; i < serializedVectors.length; i++) {\n var tuple = serializedVectors[i],\n ref = tuple[0],\n elements = tuple[1]\n\n fieldVectors[ref] = new lunr.Vector(elements)\n }\n\n for (var i = 0; i < serializedInvertedIndex.length; i++) {\n var tuple = serializedInvertedIndex[i],\n term = tuple[0],\n posting = tuple[1]\n\n tokenSetBuilder.insert(term)\n invertedIndex[term] = posting\n }\n\n tokenSetBuilder.finish()\n\n attrs.fields = serializedIndex.fields\n\n attrs.fieldVectors = fieldVectors\n attrs.invertedIndex = invertedIndex\n attrs.tokenSet = tokenSetBuilder.root\n attrs.pipeline = pipeline\n\n return new lunr.Index(attrs)\n}\n/*!\n * lunr.Builder\n * Copyright (C) 2020 Oliver Nightingale\n */\n\n/**\n * lunr.Builder performs indexing on a set of documents and\n * returns instances of lunr.Index ready for querying.\n *\n * All configuration of the index is done via the builder, the\n * fields to index, the document reference, the text processing\n * pipeline and document scoring parameters are all set on the\n * builder before indexing.\n *\n * @constructor\n * @property {string} _ref - Internal reference to the document reference field.\n * @property {string[]} _fields - Internal reference to the document fields to index.\n * @property {object} invertedIndex - The inverted index maps terms to document fields.\n * @property {object} documentTermFrequencies - Keeps track of document term frequencies.\n * @property {object} documentLengths - Keeps track of the length of documents added to the index.\n * @property {lunr.tokenizer} tokenizer - Function for splitting strings into tokens for indexing.\n * @property {lunr.Pipeline} pipeline - The pipeline performs text processing on tokens before indexing.\n * @property {lunr.Pipeline} searchPipeline - A pipeline for processing search terms before querying the index.\n * @property {number} documentCount - Keeps track of the total number of documents indexed.\n * @property {number} _b - A parameter to control field length normalization, setting this to 0 disabled normalization, 1 fully normalizes field lengths, the default value is 0.75.\n * @property {number} _k1 - A parameter to control how quickly an increase in term frequency results in term frequency saturation, the default value is 1.2.\n * @property {number} termIndex - A counter incremented for each unique term, used to identify a terms position in the vector space.\n * @property {array} metadataWhitelist - A list of metadata keys that have been whitelisted for entry in the index.\n */\nlunr.Builder = function () {\n this._ref = \"id\"\n this._fields = Object.create(null)\n this._documents = Object.create(null)\n this.invertedIndex = Object.create(null)\n this.fieldTermFrequencies = {}\n this.fieldLengths = {}\n this.tokenizer = lunr.tokenizer\n this.pipeline = new lunr.Pipeline\n this.searchPipeline = new lunr.Pipeline\n this.documentCount = 0\n this._b = 0.75\n this._k1 = 1.2\n this.termIndex = 0\n this.metadataWhitelist = []\n}\n\n/**\n * Sets the document field used as the document reference. Every document must have this field.\n * The type of this field in the document should be a string, if it is not a string it will be\n * coerced into a string by calling toString.\n *\n * The default ref is 'id'.\n *\n * The ref should _not_ be changed during indexing, it should be set before any documents are\n * added to the index. Changing it during indexing can lead to inconsistent results.\n *\n * @param {string} ref - The name of the reference field in the document.\n */\nlunr.Builder.prototype.ref = function (ref) {\n this._ref = ref\n}\n\n/**\n * A function that is used to extract a field from a document.\n *\n * Lunr expects a field to be at the top level of a document, if however the field\n * is deeply nested within a document an extractor function can be used to extract\n * the right field for indexing.\n *\n * @callback fieldExtractor\n * @param {object} doc - The document being added to the index.\n * @returns {?(string|object|object[])} obj - The object that will be indexed for this field.\n * @example <caption>Extracting a nested field</caption>\n * function (doc) { return doc.nested.field }\n */\n\n/**\n * Adds a field to the list of document fields that will be indexed. Every document being\n * indexed should have this field. Null values for this field in indexed documents will\n * not cause errors but will limit the chance of that document being retrieved by searches.\n *\n * All fields should be added before adding documents to the index. Adding fields after\n * a document has been indexed will have no effect on already indexed documents.\n *\n * Fields can be boosted at build time. This allows terms within that field to have more\n * importance when ranking search results. Use a field boost to specify that matches within\n * one field are more important than other fields.\n *\n * @param {string} fieldName - The name of a field to index in all documents.\n * @param {object} attributes - Optional attributes associated with this field.\n * @param {number} [attributes.boost=1] - Boost applied to all terms within this field.\n * @param {fieldExtractor} [attributes.extractor] - Function to extract a field from a document.\n * @throws {RangeError} fieldName cannot contain unsupported characters '/'\n */\nlunr.Builder.prototype.field = function (fieldName, attributes) {\n if (/\\//.test(fieldName)) {\n throw new RangeError (\"Field '\" + fieldName + \"' contains illegal character '/'\")\n }\n\n this._fields[fieldName] = attributes || {}\n}\n\n/**\n * A parameter to tune the amount of field length normalisation that is applied when\n * calculating relevance scores. A value of 0 will completely disable any normalisation\n * and a value of 1 will fully normalise field lengths. The default is 0.75. Values of b\n * will be clamped to the range 0 - 1.\n *\n * @param {number} number - The value to set for this tuning parameter.\n */\nlunr.Builder.prototype.b = function (number) {\n if (number < 0) {\n this._b = 0\n } else if (number > 1) {\n this._b = 1\n } else {\n this._b = number\n }\n}\n\n/**\n * A parameter that controls the speed at which a rise in term frequency results in term\n * frequency saturation. The default value is 1.2. Setting this to a higher value will give\n * slower saturation levels, a lower value will result in quicker saturation.\n *\n * @param {number} number - The value to set for this tuning parameter.\n */\nlunr.Builder.prototype.k1 = function (number) {\n this._k1 = number\n}\n\n/**\n * Adds a document to the index.\n *\n * Before adding fields to the index the index should have been fully setup, with the document\n * ref and all fields to index already having been specified.\n *\n * The document must have a field name as specified by the ref (by default this is 'id') and\n * it should have all fields defined for indexing, though null or undefined values will not\n * cause errors.\n *\n * Entire documents can be boosted at build time. Applying a boost to a document indicates that\n * this document should rank higher in search results than other documents.\n *\n * @param {object} doc - The document to add to the index.\n * @param {object} attributes - Optional attributes associated with this document.\n * @param {number} [attributes.boost=1] - Boost applied to all terms within this document.\n */\nlunr.Builder.prototype.add = function (doc, attributes) {\n var docRef = doc[this._ref],\n fields = Object.keys(this._fields)\n\n this._documents[docRef] = attributes || {}\n this.documentCount += 1\n\n for (var i = 0; i < fields.length; i++) {\n var fieldName = fields[i],\n extractor = this._fields[fieldName].extractor,\n field = extractor ? extractor(doc) : doc[fieldName],\n tokens = this.tokenizer(field, {\n fields: [fieldName]\n }),\n terms = this.pipeline.run(tokens),\n fieldRef = new lunr.FieldRef (docRef, fieldName),\n fieldTerms = Object.create(null)\n\n this.fieldTermFrequencies[fieldRef] = fieldTerms\n this.fieldLengths[fieldRef] = 0\n\n // store the length of this field for this document\n this.fieldLengths[fieldRef] += terms.length\n\n // calculate term frequencies for this field\n for (var j = 0; j < terms.length; j++) {\n var term = terms[j]\n\n if (fieldTerms[term] == undefined) {\n fieldTerms[term] = 0\n }\n\n fieldTerms[term] += 1\n\n // add to inverted index\n // create an initial posting if one doesn't exist\n if (this.invertedIndex[term] == undefined) {\n var posting = Object.create(null)\n posting[\"_index\"] = this.termIndex\n this.termIndex += 1\n\n for (var k = 0; k < fields.length; k++) {\n posting[fields[k]] = Object.create(null)\n }\n\n this.invertedIndex[term] = posting\n }\n\n // add an entry for this term/fieldName/docRef to the invertedIndex\n if (this.invertedIndex[term][fieldName][docRef] == undefined) {\n this.invertedIndex[term][fieldName][docRef] = Object.create(null)\n }\n\n // store all whitelisted metadata about this token in the\n // inverted index\n for (var l = 0; l < this.metadataWhitelist.length; l++) {\n var metadataKey = this.metadataWhitelist[l],\n metadata = term.metadata[metadataKey]\n\n if (this.invertedIndex[term][fieldName][docRef][metadataKey] == undefined) {\n this.invertedIndex[term][fieldName][docRef][metadataKey] = []\n }\n\n this.invertedIndex[term][fieldName][docRef][metadataKey].push(metadata)\n }\n }\n\n }\n}\n\n/**\n * Calculates the average document length for this index\n *\n * @private\n */\nlunr.Builder.prototype.calculateAverageFieldLengths = function () {\n\n var fieldRefs = Object.keys(this.fieldLengths),\n numberOfFields = fieldRefs.length,\n accumulator = {},\n documentsWithField = {}\n\n for (var i = 0; i < numberOfFields; i++) {\n var fieldRef = lunr.FieldRef.fromString(fieldRefs[i]),\n field = fieldRef.fieldName\n\n documentsWithField[field] || (documentsWithField[field] = 0)\n documentsWithField[field] += 1\n\n accumulator[field] || (accumulator[field] = 0)\n accumulator[field] += this.fieldLengths[fieldRef]\n }\n\n var fields = Object.keys(this._fields)\n\n for (var i = 0; i < fields.length; i++) {\n var fieldName = fields[i]\n accumulator[fieldName] = accumulator[fieldName] / documentsWithField[fieldName]\n }\n\n this.averageFieldLength = accumulator\n}\n\n/**\n * Builds a vector space model of every document using lunr.Vector\n *\n * @private\n */\nlunr.Builder.prototype.createFieldVectors = function () {\n var fieldVectors = {},\n fieldRefs = Object.keys(this.fieldTermFrequencies),\n fieldRefsLength = fieldRefs.length,\n termIdfCache = Object.create(null)\n\n for (var i = 0; i < fieldRefsLength; i++) {\n var fieldRef = lunr.FieldRef.fromString(fieldRefs[i]),\n fieldName = fieldRef.fieldName,\n fieldLength = this.fieldLengths[fieldRef],\n fieldVector = new lunr.Vector,\n termFrequencies = this.fieldTermFrequencies[fieldRef],\n terms = Object.keys(termFrequencies),\n termsLength = terms.length\n\n\n var fieldBoost = this._fields[fieldName].boost || 1,\n docBoost = this._documents[fieldRef.docRef].boost || 1\n\n for (var j = 0; j < termsLength; j++) {\n var term = terms[j],\n tf = termFrequencies[term],\n termIndex = this.invertedIndex[term]._index,\n idf, score, scoreWithPrecision\n\n if (termIdfCache[term] === undefined) {\n idf = lunr.idf(this.invertedIndex[term], this.documentCount)\n termIdfCache[term] = idf\n } else {\n idf = termIdfCache[term]\n }\n\n score = idf * ((this._k1 + 1) * tf) / (this._k1 * (1 - this._b + this._b * (fieldLength / this.averageFieldLength[fieldName])) + tf)\n score *= fieldBoost\n score *= docBoost\n scoreWithPrecision = Math.round(score * 1000) / 1000\n // Converts 1.23456789 to 1.234.\n // Reducing the precision so that the vectors take up less\n // space when serialised. Doing it now so that they behave\n // the same before and after serialisation. Also, this is\n // the fastest approach to reducing a number's precision in\n // JavaScript.\n\n fieldVector.insert(termIndex, scoreWithPrecision)\n }\n\n fieldVectors[fieldRef] = fieldVector\n }\n\n this.fieldVectors = fieldVectors\n}\n\n/**\n * Creates a token set of all tokens in the index using lunr.TokenSet\n *\n * @private\n */\nlunr.Builder.prototype.createTokenSet = function () {\n this.tokenSet = lunr.TokenSet.fromArray(\n Object.keys(this.invertedIndex).sort()\n )\n}\n\n/**\n * Builds the index, creating an instance of lunr.Index.\n *\n * This completes the indexing process and should only be called\n * once all documents have been added to the index.\n *\n * @returns {lunr.Index}\n */\nlunr.Builder.prototype.build = function () {\n this.calculateAverageFieldLengths()\n this.createFieldVectors()\n this.createTokenSet()\n\n return new lunr.Index({\n invertedIndex: this.invertedIndex,\n fieldVectors: this.fieldVectors,\n tokenSet: this.tokenSet,\n fields: Object.keys(this._fields),\n pipeline: this.searchPipeline\n })\n}\n\n/**\n * Applies a plugin to the index builder.\n *\n * A plugin is a function that is called with the index builder as its context.\n * Plugins can be used to customise or extend the behaviour of the index\n * in some way. A plugin is just a function, that encapsulated the custom\n * behaviour that should be applied when building the index.\n *\n * The plugin function will be called with the index builder as its argument, additional\n * arguments can also be passed when calling use. The function will be called\n * with the index builder as its context.\n *\n * @param {Function} plugin The plugin to apply.\n */\nlunr.Builder.prototype.use = function (fn) {\n var args = Array.prototype.slice.call(arguments, 1)\n args.unshift(this)\n fn.apply(this, args)\n}\n/**\n * Contains and collects metadata about a matching document.\n * A single instance of lunr.MatchData is returned as part of every\n * lunr.Index~Result.\n *\n * @constructor\n * @param {string} term - The term this match data is associated with\n * @param {string} field - The field in which the term was found\n * @param {object} metadata - The metadata recorded about this term in this field\n * @property {object} metadata - A cloned collection of metadata associated with this document.\n * @see {@link lunr.Index~Result}\n */\nlunr.MatchData = function (term, field, metadata) {\n var clonedMetadata = Object.create(null),\n metadataKeys = Object.keys(metadata || {})\n\n // Cloning the metadata to prevent the original\n // being mutated during match data combination.\n // Metadata is kept in an array within the inverted\n // index so cloning the data can be done with\n // Array#slice\n for (var i = 0; i < metadataKeys.length; i++) {\n var key = metadataKeys[i]\n clonedMetadata[key] = metadata[key].slice()\n }\n\n this.metadata = Object.create(null)\n\n if (term !== undefined) {\n this.metadata[term] = Object.create(null)\n this.metadata[term][field] = clonedMetadata\n }\n}\n\n/**\n * An instance of lunr.MatchData will be created for every term that matches a\n * document. However only one instance is required in a lunr.Index~Result. This\n * method combines metadata from another instance of lunr.MatchData with this\n * objects metadata.\n *\n * @param {lunr.MatchData} otherMatchData - Another instance of match data to merge with this one.\n * @see {@link lunr.Index~Result}\n */\nlunr.MatchData.prototype.combine = function (otherMatchData) {\n var terms = Object.keys(otherMatchData.metadata)\n\n for (var i = 0; i < terms.length; i++) {\n var term = terms[i],\n fields = Object.keys(otherMatchData.metadata[term])\n\n if (this.metadata[term] == undefined) {\n this.metadata[term] = Object.create(null)\n }\n\n for (var j = 0; j < fields.length; j++) {\n var field = fields[j],\n keys = Object.keys(otherMatchData.metadata[term][field])\n\n if (this.metadata[term][field] == undefined) {\n this.metadata[term][field] = Object.create(null)\n }\n\n for (var k = 0; k < keys.length; k++) {\n var key = keys[k]\n\n if (this.metadata[term][field][key] == undefined) {\n this.metadata[term][field][key] = otherMatchData.metadata[term][field][key]\n } else {\n this.metadata[term][field][key] = this.metadata[term][field][key].concat(otherMatchData.metadata[term][field][key])\n }\n\n }\n }\n }\n}\n\n/**\n * Add metadata for a term/field pair to this instance of match data.\n *\n * @param {string} term - The term this match data is associated with\n * @param {string} field - The field in which the term was found\n * @param {object} metadata - The metadata recorded about this term in this field\n */\nlunr.MatchData.prototype.add = function (term, field, metadata) {\n if (!(term in this.metadata)) {\n this.metadata[term] = Object.create(null)\n this.metadata[term][field] = metadata\n return\n }\n\n if (!(field in this.metadata[term])) {\n this.metadata[term][field] = metadata\n return\n }\n\n var metadataKeys = Object.keys(metadata)\n\n for (var i = 0; i < metadataKeys.length; i++) {\n var key = metadataKeys[i]\n\n if (key in this.metadata[term][field]) {\n this.metadata[term][field][key] = this.metadata[term][field][key].concat(metadata[key])\n } else {\n this.metadata[term][field][key] = metadata[key]\n }\n }\n}\n/**\n * A lunr.Query provides a programmatic way of defining queries to be performed\n * against a {@link lunr.Index}.\n *\n * Prefer constructing a lunr.Query using the {@link lunr.Index#query} method\n * so the query object is pre-initialized with the right index fields.\n *\n * @constructor\n * @property {lunr.Query~Clause[]} clauses - An array of query clauses.\n * @property {string[]} allFields - An array of all available fields in a lunr.Index.\n */\nlunr.Query = function (allFields) {\n this.clauses = []\n this.allFields = allFields\n}\n\n/**\n * Constants for indicating what kind of automatic wildcard insertion will be used when constructing a query clause.\n *\n * This allows wildcards to be added to the beginning and end of a term without having to manually do any string\n * concatenation.\n *\n * The wildcard constants can be bitwise combined to select both leading and trailing wildcards.\n *\n * @constant\n * @default\n * @property {number} wildcard.NONE - The term will have no wildcards inserted, this is the default behaviour\n * @property {number} wildcard.LEADING - Prepend the term with a wildcard, unless a leading wildcard already exists\n * @property {number} wildcard.TRAILING - Append a wildcard to the term, unless a trailing wildcard already exists\n * @see lunr.Query~Clause\n * @see lunr.Query#clause\n * @see lunr.Query#term\n * @example <caption>query term with trailing wildcard</caption>\n * query.term('foo', { wildcard: lunr.Query.wildcard.TRAILING })\n * @example <caption>query term with leading and trailing wildcard</caption>\n * query.term('foo', {\n * wildcard: lunr.Query.wildcard.LEADING | lunr.Query.wildcard.TRAILING\n * })\n */\n\nlunr.Query.wildcard = new String (\"*\")\nlunr.Query.wildcard.NONE = 0\nlunr.Query.wildcard.LEADING = 1\nlunr.Query.wildcard.TRAILING = 2\n\n/**\n * Constants for indicating what kind of presence a term must have in matching documents.\n *\n * @constant\n * @enum {number}\n * @see lunr.Query~Clause\n * @see lunr.Query#clause\n * @see lunr.Query#term\n * @example <caption>query term with required presence</caption>\n * query.term('foo', { presence: lunr.Query.presence.REQUIRED })\n */\nlunr.Query.presence = {\n /**\n * Term's presence in a document is optional, this is the default value.\n */\n OPTIONAL: 1,\n\n /**\n * Term's presence in a document is required, documents that do not contain\n * this term will not be returned.\n */\n REQUIRED: 2,\n\n /**\n * Term's presence in a document is prohibited, documents that do contain\n * this term will not be returned.\n */\n PROHIBITED: 3\n}\n\n/**\n * A single clause in a {@link lunr.Query} contains a term and details on how to\n * match that term against a {@link lunr.Index}.\n *\n * @typedef {Object} lunr.Query~Clause\n * @property {string[]} fields - The fields in an index this clause should be matched against.\n * @property {number} [boost=1] - Any boost that should be applied when matching this clause.\n * @property {number} [editDistance] - Whether the term should have fuzzy matching applied, and how fuzzy the match should be.\n * @property {boolean} [usePipeline] - Whether the term should be passed through the search pipeline.\n * @property {number} [wildcard=lunr.Query.wildcard.NONE] - Whether the term should have wildcards appended or prepended.\n * @property {number} [presence=lunr.Query.presence.OPTIONAL] - The terms presence in any matching documents.\n */\n\n/**\n * Adds a {@link lunr.Query~Clause} to this query.\n *\n * Unless the clause contains the fields to be matched all fields will be matched. In addition\n * a default boost of 1 is applied to the clause.\n *\n * @param {lunr.Query~Clause} clause - The clause to add to this query.\n * @see lunr.Query~Clause\n * @returns {lunr.Query}\n */\nlunr.Query.prototype.clause = function (clause) {\n if (!('fields' in clause)) {\n clause.fields = this.allFields\n }\n\n if (!('boost' in clause)) {\n clause.boost = 1\n }\n\n if (!('usePipeline' in clause)) {\n clause.usePipeline = true\n }\n\n if (!('wildcard' in clause)) {\n clause.wildcard = lunr.Query.wildcard.NONE\n }\n\n if ((clause.wildcard & lunr.Query.wildcard.LEADING) && (clause.term.charAt(0) != lunr.Query.wildcard)) {\n clause.term = \"*\" + clause.term\n }\n\n if ((clause.wildcard & lunr.Query.wildcard.TRAILING) && (clause.term.slice(-1) != lunr.Query.wildcard)) {\n clause.term = \"\" + clause.term + \"*\"\n }\n\n if (!('presence' in clause)) {\n clause.presence = lunr.Query.presence.OPTIONAL\n }\n\n this.clauses.push(clause)\n\n return this\n}\n\n/**\n * A negated query is one in which every clause has a presence of\n * prohibited. These queries require some special processing to return\n * the expected results.\n *\n * @returns boolean\n */\nlunr.Query.prototype.isNegated = function () {\n for (var i = 0; i < this.clauses.length; i++) {\n if (this.clauses[i].presence != lunr.Query.presence.PROHIBITED) {\n return false\n }\n }\n\n return true\n}\n\n/**\n * Adds a term to the current query, under the covers this will create a {@link lunr.Query~Clause}\n * to the list of clauses that make up this query.\n *\n * The term is used as is, i.e. no tokenization will be performed by this method. Instead conversion\n * to a token or token-like string should be done before calling this method.\n *\n * The term will be converted to a string by calling `toString`. Multiple terms can be passed as an\n * array, each term in the array will share the same options.\n *\n * @param {object|object[]} term - The term(s) to add to the query.\n * @param {object} [options] - Any additional properties to add to the query clause.\n * @returns {lunr.Query}\n * @see lunr.Query#clause\n * @see lunr.Query~Clause\n * @example <caption>adding a single term to a query</caption>\n * query.term(\"foo\")\n * @example <caption>adding a single term to a query and specifying search fields, term boost and automatic trailing wildcard</caption>\n * query.term(\"foo\", {\n * fields: [\"title\"],\n * boost: 10,\n * wildcard: lunr.Query.wildcard.TRAILING\n * })\n * @example <caption>using lunr.tokenizer to convert a string to tokens before using them as terms</caption>\n * query.term(lunr.tokenizer(\"foo bar\"))\n */\nlunr.Query.prototype.term = function (term, options) {\n if (Array.isArray(term)) {\n term.forEach(function (t) { this.term(t, lunr.utils.clone(options)) }, this)\n return this\n }\n\n var clause = options || {}\n clause.term = term.toString()\n\n this.clause(clause)\n\n return this\n}\nlunr.QueryParseError = function (message, start, end) {\n this.name = \"QueryParseError\"\n this.message = message\n this.start = start\n this.end = end\n}\n\nlunr.QueryParseError.prototype = new Error\nlunr.QueryLexer = function (str) {\n this.lexemes = []\n this.str = str\n this.length = str.length\n this.pos = 0\n this.start = 0\n this.escapeCharPositions = []\n}\n\nlunr.QueryLexer.prototype.run = function () {\n var state = lunr.QueryLexer.lexText\n\n while (state) {\n state = state(this)\n }\n}\n\nlunr.QueryLexer.prototype.sliceString = function () {\n var subSlices = [],\n sliceStart = this.start,\n sliceEnd = this.pos\n\n for (var i = 0; i < this.escapeCharPositions.length; i++) {\n sliceEnd = this.escapeCharPositions[i]\n subSlices.push(this.str.slice(sliceStart, sliceEnd))\n sliceStart = sliceEnd + 1\n }\n\n subSlices.push(this.str.slice(sliceStart, this.pos))\n this.escapeCharPositions.length = 0\n\n return subSlices.join('')\n}\n\nlunr.QueryLexer.prototype.emit = function (type) {\n this.lexemes.push({\n type: type,\n str: this.sliceString(),\n start: this.start,\n end: this.pos\n })\n\n this.start = this.pos\n}\n\nlunr.QueryLexer.prototype.escapeCharacter = function () {\n this.escapeCharPositions.push(this.pos - 1)\n this.pos += 1\n}\n\nlunr.QueryLexer.prototype.next = function () {\n if (this.pos >= this.length) {\n return lunr.QueryLexer.EOS\n }\n\n var char = this.str.charAt(this.pos)\n this.pos += 1\n return char\n}\n\nlunr.QueryLexer.prototype.width = function () {\n return this.pos - this.start\n}\n\nlunr.QueryLexer.prototype.ignore = function () {\n if (this.start == this.pos) {\n this.pos += 1\n }\n\n this.start = this.pos\n}\n\nlunr.QueryLexer.prototype.backup = function () {\n this.pos -= 1\n}\n\nlunr.QueryLexer.prototype.acceptDigitRun = function () {\n var char, charCode\n\n do {\n char = this.next()\n charCode = char.charCodeAt(0)\n } while (charCode > 47 && charCode < 58)\n\n if (char != lunr.QueryLexer.EOS) {\n this.backup()\n }\n}\n\nlunr.QueryLexer.prototype.more = function () {\n return this.pos < this.length\n}\n\nlunr.QueryLexer.EOS = 'EOS'\nlunr.QueryLexer.FIELD = 'FIELD'\nlunr.QueryLexer.TERM = 'TERM'\nlunr.QueryLexer.EDIT_DISTANCE = 'EDIT_DISTANCE'\nlunr.QueryLexer.BOOST = 'BOOST'\nlunr.QueryLexer.PRESENCE = 'PRESENCE'\n\nlunr.QueryLexer.lexField = function (lexer) {\n lexer.backup()\n lexer.emit(lunr.QueryLexer.FIELD)\n lexer.ignore()\n return lunr.QueryLexer.lexText\n}\n\nlunr.QueryLexer.lexTerm = function (lexer) {\n if (lexer.width() > 1) {\n lexer.backup()\n lexer.emit(lunr.QueryLexer.TERM)\n }\n\n lexer.ignore()\n\n if (lexer.more()) {\n return lunr.QueryLexer.lexText\n }\n}\n\nlunr.QueryLexer.lexEditDistance = function (lexer) {\n lexer.ignore()\n lexer.acceptDigitRun()\n lexer.emit(lunr.QueryLexer.EDIT_DISTANCE)\n return lunr.QueryLexer.lexText\n}\n\nlunr.QueryLexer.lexBoost = function (lexer) {\n lexer.ignore()\n lexer.acceptDigitRun()\n lexer.emit(lunr.QueryLexer.BOOST)\n return lunr.QueryLexer.lexText\n}\n\nlunr.QueryLexer.lexEOS = function (lexer) {\n if (lexer.width() > 0) {\n lexer.emit(lunr.QueryLexer.TERM)\n }\n}\n\n// This matches the separator used when tokenising fields\n// within a document. These should match otherwise it is\n// not possible to search for some tokens within a document.\n//\n// It is possible for the user to change the separator on the\n// tokenizer so it _might_ clash with any other of the special\n// characters already used within the search string, e.g. :.\n//\n// This means that it is possible to change the separator in\n// such a way that makes some words unsearchable using a search\n// string.\nlunr.QueryLexer.termSeparator = lunr.tokenizer.separator\n\nlunr.QueryLexer.lexText = function (lexer) {\n while (true) {\n var char = lexer.next()\n\n if (char == lunr.QueryLexer.EOS) {\n return lunr.QueryLexer.lexEOS\n }\n\n // Escape character is '\\'\n if (char.charCodeAt(0) == 92) {\n lexer.escapeCharacter()\n continue\n }\n\n if (char == \":\") {\n return lunr.QueryLexer.lexField\n }\n\n if (char == \"~\") {\n lexer.backup()\n if (lexer.width() > 0) {\n lexer.emit(lunr.QueryLexer.TERM)\n }\n return lunr.QueryLexer.lexEditDistance\n }\n\n if (char == \"^\") {\n lexer.backup()\n if (lexer.width() > 0) {\n lexer.emit(lunr.QueryLexer.TERM)\n }\n return lunr.QueryLexer.lexBoost\n }\n\n // \"+\" indicates term presence is required\n // checking for length to ensure that only\n // leading \"+\" are considered\n if (char == \"+\" && lexer.width() === 1) {\n lexer.emit(lunr.QueryLexer.PRESENCE)\n return lunr.QueryLexer.lexText\n }\n\n // \"-\" indicates term presence is prohibited\n // checking for length to ensure that only\n // leading \"-\" are considered\n if (char == \"-\" && lexer.width() === 1) {\n lexer.emit(lunr.QueryLexer.PRESENCE)\n return lunr.QueryLexer.lexText\n }\n\n if (char.match(lunr.QueryLexer.termSeparator)) {\n return lunr.QueryLexer.lexTerm\n }\n }\n}\n\nlunr.QueryParser = function (str, query) {\n this.lexer = new lunr.QueryLexer (str)\n this.query = query\n this.currentClause = {}\n this.lexemeIdx = 0\n}\n\nlunr.QueryParser.prototype.parse = function () {\n this.lexer.run()\n this.lexemes = this.lexer.lexemes\n\n var state = lunr.QueryParser.parseClause\n\n while (state) {\n state = state(this)\n }\n\n return this.query\n}\n\nlunr.QueryParser.prototype.peekLexeme = function () {\n return this.lexemes[this.lexemeIdx]\n}\n\nlunr.QueryParser.prototype.consumeLexeme = function () {\n var lexeme = this.peekLexeme()\n this.lexemeIdx += 1\n return lexeme\n}\n\nlunr.QueryParser.prototype.nextClause = function () {\n var completedClause = this.currentClause\n this.query.clause(completedClause)\n this.currentClause = {}\n}\n\nlunr.QueryParser.parseClause = function (parser) {\n var lexeme = parser.peekLexeme()\n\n if (lexeme == undefined) {\n return\n }\n\n switch (lexeme.type) {\n case lunr.QueryLexer.PRESENCE:\n return lunr.QueryParser.parsePresence\n case lunr.QueryLexer.FIELD:\n return lunr.QueryParser.parseField\n case lunr.QueryLexer.TERM:\n return lunr.QueryParser.parseTerm\n default:\n var errorMessage = \"expected either a field or a term, found \" + lexeme.type\n\n if (lexeme.str.length >= 1) {\n errorMessage += \" with value '\" + lexeme.str + \"'\"\n }\n\n throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\n }\n}\n\nlunr.QueryParser.parsePresence = function (parser) {\n var lexeme = parser.consumeLexeme()\n\n if (lexeme == undefined) {\n return\n }\n\n switch (lexeme.str) {\n case \"-\":\n parser.currentClause.presence = lunr.Query.presence.PROHIBITED\n break\n case \"+\":\n parser.currentClause.presence = lunr.Query.presence.REQUIRED\n break\n default:\n var errorMessage = \"unrecognised presence operator'\" + lexeme.str + \"'\"\n throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\n }\n\n var nextLexeme = parser.peekLexeme()\n\n if (nextLexeme == undefined) {\n var errorMessage = \"expecting term or field, found nothing\"\n throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\n }\n\n switch (nextLexeme.type) {\n case lunr.QueryLexer.FIELD:\n return lunr.QueryParser.parseField\n case lunr.QueryLexer.TERM:\n return lunr.QueryParser.parseTerm\n default:\n var errorMessage = \"expecting term or field, found '\" + nextLexeme.type + \"'\"\n throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end)\n }\n}\n\nlunr.QueryParser.parseField = function (parser) {\n var lexeme = parser.consumeLexeme()\n\n if (lexeme == undefined) {\n return\n }\n\n if (parser.query.allFields.indexOf(lexeme.str) == -1) {\n var possibleFields = parser.query.allFields.map(function (f) { return \"'\" + f + \"'\" }).join(', '),\n errorMessage = \"unrecognised field '\" + lexeme.str + \"', possible fields: \" + possibleFields\n\n throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\n }\n\n parser.currentClause.fields = [lexeme.str]\n\n var nextLexeme = parser.peekLexeme()\n\n if (nextLexeme == undefined) {\n var errorMessage = \"expecting term, found nothing\"\n throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\n }\n\n switch (nextLexeme.type) {\n case lunr.QueryLexer.TERM:\n return lunr.QueryParser.parseTerm\n default:\n var errorMessage = \"expecting term, found '\" + nextLexeme.type + \"'\"\n throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end)\n }\n}\n\nlunr.QueryParser.parseTerm = function (parser) {\n var lexeme = parser.consumeLexeme()\n\n if (lexeme == undefined) {\n return\n }\n\n parser.currentClause.term = lexeme.str.toLowerCase()\n\n if (lexeme.str.indexOf(\"*\") != -1) {\n parser.currentClause.usePipeline = false\n }\n\n var nextLexeme = parser.peekLexeme()\n\n if (nextLexeme == undefined) {\n parser.nextClause()\n return\n }\n\n switch (nextLexeme.type) {\n case lunr.QueryLexer.TERM:\n parser.nextClause()\n return lunr.QueryParser.parseTerm\n case lunr.QueryLexer.FIELD:\n parser.nextClause()\n return lunr.QueryParser.parseField\n case lunr.QueryLexer.EDIT_DISTANCE:\n return lunr.QueryParser.parseEditDistance\n case lunr.QueryLexer.BOOST:\n return lunr.QueryParser.parseBoost\n case lunr.QueryLexer.PRESENCE:\n parser.nextClause()\n return lunr.QueryParser.parsePresence\n default:\n var errorMessage = \"Unexpected lexeme type '\" + nextLexeme.type + \"'\"\n throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end)\n }\n}\n\nlunr.QueryParser.parseEditDistance = function (parser) {\n var lexeme = parser.consumeLexeme()\n\n if (lexeme == undefined) {\n return\n }\n\n var editDistance = parseInt(lexeme.str, 10)\n\n if (isNaN(editDistance)) {\n var errorMessage = \"edit distance must be numeric\"\n throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\n }\n\n parser.currentClause.editDistance = editDistance\n\n var nextLexeme = parser.peekLexeme()\n\n if (nextLexeme == undefined) {\n parser.nextClause()\n return\n }\n\n switch (nextLexeme.type) {\n case lunr.QueryLexer.TERM:\n parser.nextClause()\n return lunr.QueryParser.parseTerm\n case lunr.QueryLexer.FIELD:\n parser.nextClause()\n return lunr.QueryParser.parseField\n case lunr.QueryLexer.EDIT_DISTANCE:\n return lunr.QueryParser.parseEditDistance\n case lunr.QueryLexer.BOOST:\n return lunr.QueryParser.parseBoost\n case lunr.QueryLexer.PRESENCE:\n parser.nextClause()\n return lunr.QueryParser.parsePresence\n default:\n var errorMessage = \"Unexpected lexeme type '\" + nextLexeme.type + \"'\"\n throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end)\n }\n}\n\nlunr.QueryParser.parseBoost = function (parser) {\n var lexeme = parser.consumeLexeme()\n\n if (lexeme == undefined) {\n return\n }\n\n var boost = parseInt(lexeme.str, 10)\n\n if (isNaN(boost)) {\n var errorMessage = \"boost must be numeric\"\n throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\n }\n\n parser.currentClause.boost = boost\n\n var nextLexeme = parser.peekLexeme()\n\n if (nextLexeme == undefined) {\n parser.nextClause()\n return\n }\n\n switch (nextLexeme.type) {\n case lunr.QueryLexer.TERM:\n parser.nextClause()\n return lunr.QueryParser.parseTerm\n case lunr.QueryLexer.FIELD:\n parser.nextClause()\n return lunr.QueryParser.parseField\n case lunr.QueryLexer.EDIT_DISTANCE:\n return lunr.QueryParser.parseEditDistance\n case lunr.QueryLexer.BOOST:\n return lunr.QueryParser.parseBoost\n case lunr.QueryLexer.PRESENCE:\n parser.nextClause()\n return lunr.QueryParser.parsePresence\n default:\n var errorMessage = \"Unexpected lexeme type '\" + nextLexeme.type + \"'\"\n throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end)\n }\n}\n\n /**\n * export the module via AMD, CommonJS or as a browser global\n * Export code from https://github.com/umdjs/umd/blob/master/returnExports.js\n */\n ;(function (root, factory) {\n if (typeof define === 'function' && define.amd) {\n // AMD. Register as an anonymous module.\n define(factory)\n } else if (typeof exports === 'object') {\n /**\n * Node. Does not work with strict CommonJS, but\n * only CommonJS-like enviroments that support module.exports,\n * like Node.\n */\n module.exports = factory()\n } else {\n // Browser globals (root is window)\n root.lunr = factory()\n }\n }(this, function () {\n /**\n * Just return a value to define the module export.\n * This example returns an object, but the module\n * can return a function as the exported value.\n */\n return lunr\n }))\n})();\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A RTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport lunr from \"lunr\"\n\nimport { getElement } from \"~/browser/element/_\"\nimport \"~/polyfills\"\n\nimport { Search } from \"../../_\"\nimport { SearchConfig } from \"../../config\"\nimport {\n SearchMessage,\n SearchMessageType\n} from \"../message\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Add support for `iframe-worker` shim\n *\n * While `importScripts` is synchronous when executed inside of a web worker,\n * it's not possible to provide a synchronous shim implementation. The cool\n * thing is that awaiting a non-Promise will convert it into a Promise, so\n * extending the type definition to return a `Promise` shouldn't break anything.\n *\n * @see https://bit.ly/2PjDnXi - GitHub comment\n *\n * @param urls - Scripts to load\n *\n * @returns Promise resolving with no result\n */\ndeclare global {\n function importScripts(...urls: string[]): Promise<void> | void\n}\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Search index\n */\nlet index: Search\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Fetch (= import) multi-language support through `lunr-languages`\n *\n * This function automatically imports the stemmers necessary to process the\n * languages which are defined as part of the search configuration.\n *\n * If the worker runs inside of an `iframe` (when using `iframe-worker` as\n * a shim), the base URL for the stemmers to be loaded must be determined by\n * searching for the first `script` element with a `src` attribute, which will\n * contain the contents of this script.\n *\n * @param config - Search configuration\n *\n * @returns Promise resolving with no result\n */\nasync function setupSearchLanguages(\n config: SearchConfig\n): Promise<void> {\n let base = \"../lunr\"\n\n /* Detect `iframe-worker` and fix base URL */\n if (typeof parent !== \"undefined\" && \"IFrameWorker\" in parent) {\n const worker = getElement<HTMLScriptElement>(\"script[src]\")\n const [path] = worker.src.split(\"/worker\")\n\n /* Prefix base with path */\n base = base.replace(\"..\", path)\n }\n\n /* Add scripts for languages */\n const scripts = []\n for (const lang of config.lang) {\n switch (lang) {\n\n /* Add segmenter for Japanese */\n case \"ja\":\n scripts.push(`${base}/tinyseg.js`)\n break\n\n /* Add segmenter for Hindi and Thai */\n case \"hi\":\n case \"th\":\n scripts.push(`${base}/wordcut.js`)\n break\n }\n\n /* Add language support */\n if (lang !== \"en\")\n scripts.push(`${base}/min/lunr.${lang}.min.js`)\n }\n\n /* Add multi-language support */\n if (config.lang.length > 1)\n scripts.push(`${base}/min/lunr.multi.min.js`)\n\n /* Load scripts synchronously */\n if (scripts.length)\n await importScripts(\n `${base}/min/lunr.stemmer.support.min.js`,\n ...scripts\n )\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Message handler\n *\n * @param message - Source message\n *\n * @returns Target message\n */\nexport async function handler(\n message: SearchMessage\n): Promise<SearchMessage> {\n switch (message.type) {\n\n /* Search setup message */\n case SearchMessageType.SETUP:\n await setupSearchLanguages(message.data.config)\n index = new Search(message.data)\n return {\n type: SearchMessageType.READY\n }\n\n /* Search query message */\n case SearchMessageType.QUERY:\n const query = message.data\n try {\n return {\n type: SearchMessageType.RESULT,\n data: index.search(query)\n }\n\n /* Return empty result in case of error */\n } catch (err) {\n console.warn(`Invalid query: ${query} \u2013 see https://bit.ly/2s3ChXG`)\n console.warn(err)\n return {\n type: SearchMessageType.RESULT,\n data: { items: [] }\n }\n }\n\n /* All other messages */\n default:\n throw new TypeError(\"Invalid message type\")\n }\n}\n\n/* ----------------------------------------------------------------------------\n * Worker\n * ------------------------------------------------------------------------- */\n\n/* Expose Lunr.js in global scope, or stemmers won't work */\nself.lunr = lunr\n\n/* Monkey-patch Lunr.js to mitigate https://t.ly/68TLq */\nlunr.utils.warn = console.warn\n\n/* Handle messages */\naddEventListener(\"message\", async ev => {\n postMessage(await handler(ev.data))\n})\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve all elements matching the query selector\n *\n * @template T - Element type\n *\n * @param selector - Query selector\n * @param node - Node of reference\n *\n * @returns Elements\n */\nexport function getElements<T extends keyof HTMLElementTagNameMap>(\n selector: T, node?: ParentNode\n): HTMLElementTagNameMap[T][]\n\nexport function getElements<T extends HTMLElement>(\n selector: string, node?: ParentNode\n): T[]\n\nexport function getElements<T extends HTMLElement>(\n selector: string, node: ParentNode = document\n): T[] {\n return Array.from(node.querySelectorAll<T>(selector))\n}\n\n/**\n * Retrieve an element matching a query selector or throw a reference error\n *\n * Note that this function assumes that the element is present. If unsure if an\n * element is existent, use the `getOptionalElement` function instead.\n *\n * @template T - Element type\n *\n * @param selector - Query selector\n * @param node - Node of reference\n *\n * @returns Element\n */\nexport function getElement<T extends keyof HTMLElementTagNameMap>(\n selector: T, node?: ParentNode\n): HTMLElementTagNameMap[T]\n\nexport function getElement<T extends HTMLElement>(\n selector: string, node?: ParentNode\n): T\n\nexport function getElement<T extends HTMLElement>(\n selector: string, node: ParentNode = document\n): T {\n const el = getOptionalElement<T>(selector, node)\n if (typeof el === \"undefined\")\n throw new ReferenceError(\n `Missing element: expected \"${selector}\" to be present`\n )\n\n /* Return element */\n return el\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Retrieve an optional element matching the query selector\n *\n * @template T - Element type\n *\n * @param selector - Query selector\n * @param node - Node of reference\n *\n * @returns Element or nothing\n */\nexport function getOptionalElement<T extends keyof HTMLElementTagNameMap>(\n selector: T, node?: ParentNode\n): HTMLElementTagNameMap[T] | undefined\n\nexport function getOptionalElement<T extends HTMLElement>(\n selector: string, node?: ParentNode\n): T | undefined\n\nexport function getOptionalElement<T extends HTMLElement>(\n selector: string, node: ParentNode = document\n): T | undefined {\n return node.querySelector<T>(selector) || undefined\n}\n\n/**\n * Retrieve the currently active element\n *\n * @returns Element or nothing\n */\nexport function getActiveElement(): HTMLElement | undefined {\n return (\n document.activeElement?.shadowRoot?.activeElement as HTMLElement ??\n document.activeElement as HTMLElement ??\n undefined\n )\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n/* ----------------------------------------------------------------------------\n * Polyfills\n * ------------------------------------------------------------------------- */\n\n/* Polyfill `Object.entries` */\nif (!Object.entries)\n Object.entries = function (obj: object) {\n const data: [string, string][] = []\n for (const key of Object.keys(obj))\n // @ts-expect-error - ignore property access warning\n data.push([key, obj[key]])\n\n /* Return entries */\n return data\n }\n\n/* Polyfill `Object.values` */\nif (!Object.values)\n Object.values = function (obj: object) {\n const data: string[] = []\n for (const key of Object.keys(obj))\n // @ts-expect-error - ignore property access warning\n data.push(obj[key])\n\n /* Return values */\n return data\n }\n\n/* ------------------------------------------------------------------------- */\n\n/* Polyfills for `Element` */\nif (typeof Element !== \"undefined\") {\n\n /* Polyfill `Element.scrollTo` */\n if (!Element.prototype.scrollTo)\n Element.prototype.scrollTo = function (\n x?: ScrollToOptions | number, y?: number\n ): void {\n if (typeof x === \"object\") {\n this.scrollLeft = x.left!\n this.scrollTop = x.top!\n } else {\n this.scrollLeft = x!\n this.scrollTop = y!\n }\n }\n\n /* Polyfill `Element.replaceWith` */\n if (!Element.prototype.replaceWith)\n Element.prototype.replaceWith = function (\n ...nodes: Array<string | Node>\n ): void {\n const parent = this.parentNode\n if (parent) {\n if (nodes.length === 0)\n parent.removeChild(this)\n\n /* Replace children and create text nodes */\n for (let i = nodes.length - 1; i >= 0; i--) {\n let node = nodes[i]\n if (typeof node === \"string\")\n node = document.createTextNode(node)\n else if (node.parentNode)\n node.parentNode.removeChild(node)\n\n /* Replace child or insert before previous sibling */\n if (!i)\n parent.replaceChild(node, this)\n else\n parent.insertBefore(this.previousSibling!, node)\n }\n }\n }\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Search configuration\n */\nexport interface SearchConfig {\n lang: string[] /* Search languages */\n separator: string /* Search separator */\n pipeline: SearchPipelineFn[] /* Search pipeline */\n}\n\n/**\n * Search document\n */\nexport interface SearchDocument {\n location: string /* Document location */\n title: string /* Document title */\n text: string /* Document text */\n tags?: string[] /* Document tags */\n boost?: number /* Document boost */\n parent?: SearchDocument /* Document parent */\n}\n\n/**\n * Search options\n */\nexport interface SearchOptions {\n suggest: boolean /* Search suggestions */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Search index\n */\nexport interface SearchIndex {\n config: SearchConfig /* Search configuration */\n docs: SearchDocument[] /* Search documents */\n options: SearchOptions /* Search options */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Search pipeline function\n */\ntype SearchPipelineFn =\n | \"trimmer\" /* Trimmer */\n | \"stopWordFilter\" /* Stop word filter */\n | \"stemmer\" /* Stemmer */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Create a search document map\n *\n * This function creates a mapping of URLs (including anchors) to the actual\n * articles and sections. It relies on the invariant that the search index is\n * ordered with the main article appearing before all sections with anchors.\n * If this is not the case, the logic music be changed.\n *\n * @param docs - Search documents\n *\n * @returns Search document map\n */\nexport function setupSearchDocumentMap(\n docs: SearchDocument[]\n): Map<string, SearchDocument> {\n const map = new Map<string, SearchDocument>()\n for (const doc of docs) {\n const [path] = doc.location.split(\"#\")\n\n /* Add document article */\n const article = map.get(path)\n if (typeof article === \"undefined\") {\n map.set(path, doc)\n\n /* Add document section */\n } else {\n map.set(doc.location, doc)\n doc.parent = article\n }\n }\n\n /* Return search document map */\n return map\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Visitor function\n *\n * @param start - Start offset\n * @param end - End offset\n */\ntype VisitorFn = (\n start: number, end: number\n) => void\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Split a string using the given separator\n *\n * @param input - Input value\n * @param separator - Separator\n * @param fn - Visitor function\n */\nexport function split(\n input: string, separator: RegExp, fn: VisitorFn\n): void {\n separator = new RegExp(separator, \"g\")\n\n /* Split string using separator */\n let match: RegExpExecArray | null\n let index = 0\n do {\n match = separator.exec(input)\n\n /* Emit non-empty range */\n const until = match?.index ?? input.length\n if (index < until)\n fn(index, until)\n\n /* Update last index */\n if (match) {\n const [term] = match\n index = match.index + term.length\n\n /* Support zero-length lookaheads */\n if (term.length === 0)\n separator.lastIndex = match.index + 1\n }\n } while (match)\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Extraction type\n *\n * This type defines the possible values that are encoded into the first two\n * bits of a section that is part of the blocks of a tokenization table. There\n * are three types of interest: HTML opening and closing tags, as well as the\n * actual text content we need to extract for indexing.\n */\nexport const enum Extract {\n TAG_OPEN = 0, /* HTML opening tag */\n TEXT = 1, /* Text content */\n TAG_CLOSE = 2 /* HTML closing tag */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Visitor function\n *\n * @param block - Block index\n * @param type - Extraction type\n * @param start - Start offset\n * @param end - End offset\n */\ntype VisitorFn = (\n block: number, type: Extract, start: number, end: number\n) => void\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Split a string into markup and text sections\n *\n * This function scans a string and divides it up into sections of markup and\n * text. For each section, it invokes the given visitor function with the block\n * index, extraction type, as well as start and end offsets. Using a visitor\n * function (= streaming data) is ideal for minimizing pressure on the GC.\n *\n * @param input - Input value\n * @param fn - Visitor function\n */\nexport function extract(\n input: string, fn: VisitorFn\n): void {\n\n let block = 0 /* Current block */\n let start = 0 /* Current start offset */\n let end = 0 /* Current end offset */\n\n /* Split string into sections */\n for (let stack = 0; end < input.length; end++) {\n\n /* Opening tag after non-empty section */\n if (input.charAt(end) === \"<\" && end > start) {\n fn(block, Extract.TEXT, start, start = end)\n\n /* Closing tag */\n } else if (input.charAt(end) === \">\") {\n if (input.charAt(start + 1) === \"/\") {\n if (--stack === 0)\n fn(block++, Extract.TAG_CLOSE, start, end + 1)\n\n /* Tag is not self-closing */\n } else if (input.charAt(end - 1) !== \"/\") {\n if (stack++ === 0)\n fn(block, Extract.TAG_OPEN, start, end + 1)\n }\n\n /* New section */\n start = end + 1\n }\n }\n\n /* Add trailing section */\n if (end > start)\n fn(block, Extract.TEXT, start, end)\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Position table\n */\nexport type PositionTable = number[][]\n\n/**\n * Position\n */\nexport type Position = number\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Highlight all occurrences in a string\n *\n * This function receives a field's value (e.g. like `title` or `text`), it's\n * position table that was generated during indexing, and the positions found\n * when executing the query. It then highlights all occurrences, and returns\n * their concatenation. In case of multiple blocks, two are returned.\n *\n * @param input - Input value\n * @param table - Table for indexing\n * @param positions - Occurrences\n * @param full - Full results\n *\n * @returns Highlighted string value\n */\nexport function highlight(\n input: string, table: PositionTable, positions: Position[], full = false\n): string {\n return highlightAll([input], table, positions, full).pop()!\n}\n\n/**\n * Highlight all occurrences in a set of strings\n *\n * @param inputs - Input values\n * @param table - Table for indexing\n * @param positions - Occurrences\n * @param full - Full results\n *\n * @returns Highlighted string values\n */\nexport function highlightAll(\n inputs: string[], table: PositionTable, positions: Position[], full = false\n): string[] {\n\n /* Map blocks to input values */\n const mapping = [0]\n for (let t = 1; t < table.length; t++) {\n const prev = table[t - 1]\n const next = table[t]\n\n /* Check if table points to new block */\n const p = prev[prev.length - 1] >>> 2 & 0x3FF\n const q = next[0] >>> 12\n\n /* Add block to mapping */\n mapping.push(+(p > q) + mapping[mapping.length - 1])\n }\n\n /* Highlight strings one after another */\n return inputs.map((input, i) => {\n let cursor = 0\n\n /* Map occurrences to blocks */\n const blocks = new Map<number, number[]>()\n for (const p of positions.sort((a, b) => a - b)) {\n const index = p & 0xFFFFF\n const block = p >>> 20\n if (mapping[block] !== i)\n continue\n\n /* Ensure presence of block group */\n let group = blocks.get(block)\n if (typeof group === \"undefined\")\n blocks.set(block, group = [])\n\n /* Add index to group */\n group.push(index)\n }\n\n /* Just return string, if no occurrences */\n if (blocks.size === 0)\n return input\n\n /* Compute slices */\n const slices: string[] = []\n for (const [block, indexes] of blocks) {\n const t = table[block]\n\n /* Extract positions and length */\n const start = t[0] >>> 12\n const end = t[t.length - 1] >>> 12\n const length = t[t.length - 1] >>> 2 & 0x3FF\n\n /* Add prefix, if full results are desired */\n if (full && start > cursor)\n slices.push(input.slice(cursor, start))\n\n /* Extract and highlight slice */\n let slice = input.slice(start, end + length)\n for (const j of indexes.sort((a, b) => b - a)) {\n\n /* Retrieve offset and length of match */\n const p = (t[j] >>> 12) - start\n const q = (t[j] >>> 2 & 0x3FF) + p\n\n /* Wrap occurrence */\n slice = [\n slice.slice(0, p),\n \"<mark>\",\n slice.slice(p, q),\n \"</mark>\",\n slice.slice(q)\n ].join(\"\")\n }\n\n /* Update cursor */\n cursor = end + length\n\n /* Append slice and abort if we have two */\n if (slices.push(slice) === 2)\n break\n }\n\n /* Add suffix, if full results are desired */\n if (full && cursor < input.length)\n slices.push(input.slice(cursor))\n\n /* Return highlighted slices */\n return slices.join(\"\")\n })\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { split } from \"../_\"\nimport {\n Extract,\n extract\n} from \"../extract\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Split a string or set of strings into tokens\n *\n * This tokenizer supersedes the default tokenizer that is provided by Lunr.js,\n * as it is aware of HTML tags and allows for multi-character splitting.\n *\n * It takes the given inputs, splits each of them into markup and text sections,\n * tokenizes and segments (if necessary) each of them, and then indexes them in\n * a table by using a compact bit representation. Bitwise techniques are used\n * to write and read from the table during indexing and querying.\n *\n * @see https://bit.ly/3W3Xw4J - Search: better, faster, smaller\n *\n * @param input - Input value(s)\n *\n * @returns Tokens\n */\nexport function tokenize(\n input?: string | string[]\n): lunr.Token[] {\n const tokens: lunr.Token[] = []\n if (typeof input === \"undefined\")\n return tokens\n\n /* Tokenize strings one after another */\n const inputs = Array.isArray(input) ? input : [input]\n for (let i = 0; i < inputs.length; i++) {\n const table = lunr.tokenizer.table\n const total = table.length\n\n /* Split string into sections and tokenize content blocks */\n extract(inputs[i], (block, type, start, end) => {\n table[block += total] ||= []\n switch (type) {\n\n /* Handle markup */\n case Extract.TAG_OPEN:\n case Extract.TAG_CLOSE:\n table[block].push(\n start << 12 |\n end - start << 2 |\n type\n )\n break\n\n /* Handle text content */\n case Extract.TEXT:\n const section = inputs[i].slice(start, end)\n split(section, lunr.tokenizer.separator, (index, until) => {\n\n /**\n * Apply segmenter after tokenization. Note that the segmenter will\n * also split words at word boundaries, which is not what we want,\n * so we need to check if we can somehow mitigate this behavior.\n */\n if (typeof lunr.segmenter !== \"undefined\") {\n const subsection = section.slice(index, until)\n if (/^[MHIK]$/.test(lunr.segmenter.ctype_(subsection))) {\n const segments = lunr.segmenter.segment(subsection)\n for (let s = 0, l = 0; s < segments.length; s++) {\n\n /* Add block to section */\n table[block] ||= []\n table[block].push(\n start + index + l << 12 |\n segments[s].length << 2 |\n type\n )\n\n /* Add token with position */\n tokens.push(new lunr.Token(\n segments[s].toLowerCase(), {\n position: block << 20 | table[block].length - 1\n }\n ))\n\n /* Keep track of length */\n l += segments[s].length\n }\n return\n }\n }\n\n /* Add block to section */\n table[block].push(\n start + index << 12 |\n until - index << 2 |\n type\n )\n\n /* Add token with position */\n tokens.push(new lunr.Token(\n section.slice(index, until).toLowerCase(), {\n position: block << 20 | table[block].length - 1\n }\n ))\n })\n }\n })\n }\n\n /* Return tokens */\n return tokens\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Visitor function\n *\n * @param value - String value\n *\n * @returns String term(s)\n */\ntype VisitorFn = (\n value: string\n) => string | string[]\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Default transformation function\n *\n * 1. Trim excess whitespace from left and right.\n *\n * 2. Search for parts in quotation marks and prepend a `+` modifier to denote\n * that the resulting document must contain all parts, converting the query\n * to an `AND` query (as opposed to the default `OR` behavior). While users\n * may expect parts enclosed in quotation marks to map to span queries, i.e.\n * for which order is important, Lunr.js doesn't support them, so the best\n * we can do is to convert the parts to an `AND` query.\n *\n * 3. Replace control characters which are not located at the beginning of the\n * query or preceded by white space, or are not followed by a non-whitespace\n * character or are at the end of the query string. Furthermore, filter\n * unmatched quotation marks.\n *\n * 4. Split the query string at whitespace, then pass each part to the visitor\n * function for tokenization, and append a wildcard to every resulting term\n * that is not explicitly marked with a `+`, `-`, `~` or `^` modifier, since\n * it ensures consistent and stable ranking when multiple terms are entered.\n * Also, if a fuzzy or boost modifier are given, but no numeric value has\n * been entered, default to 1 to not induce a query error.\n *\n * @param query - Query value\n * @param fn - Visitor function\n *\n * @returns Transformed query value\n */\nexport function transform(\n query: string, fn: VisitorFn = term => term\n): string {\n return query\n\n /* => 1 */\n .trim()\n\n /* => 2 */\n .split(/\"([^\"]+)\"/g)\n .map((parts, index) => index & 1\n ? parts.replace(/^\\b|^(?![^\\x00-\\x7F]|$)|\\s+/g, \" +\")\n : parts\n )\n .join(\"\")\n\n /* => 3 */\n .replace(/\"|(?:^|\\s+)[*+\\-:^~]+(?=\\s+|$)/g, \"\")\n\n /* => 4 */\n .split(/\\s+/g)\n .reduce((prev, term) => {\n const next = fn(term)\n return [...prev, ...Array.isArray(next) ? next : [next]]\n }, [] as string[])\n .map(term => /([~^]$)/.test(term) ? `${term}1` : term)\n .map(term => /(^[+-]|[~^]\\d+$)/.test(term) ? term : `${term}*`)\n .join(\" \")\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { split } from \"../../internal\"\nimport { transform } from \"../transform\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Search query clause\n */\nexport interface SearchQueryClause {\n presence: lunr.Query.presence /* Clause presence */\n term: string /* Clause term */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Search query terms\n */\nexport type SearchQueryTerms = Record<string, boolean>\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Transform search query\n *\n * This function lexes the given search query and applies the transformation\n * function to each term, preserving markup like `+` and `-` modifiers.\n *\n * @param query - Search query\n *\n * @returns Search query\n */\nexport function transformSearchQuery(\n query: string\n): string {\n\n /* Split query terms with tokenizer */\n return transform(query, part => {\n const terms: string[] = []\n\n /* Initialize lexer and analyze part */\n const lexer = new lunr.QueryLexer(part)\n lexer.run()\n\n /* Extract and tokenize term from lexeme */\n for (const { type, str: term, start, end } of lexer.lexemes)\n switch (type) {\n\n /* Hack: remove colon - see https://bit.ly/3wD3T3I */\n case \"FIELD\":\n if (![\"title\", \"text\", \"tags\"].includes(term))\n part = [\n part.slice(0, end),\n \" \",\n part.slice(end + 1)\n ].join(\"\")\n break\n\n /* Tokenize term */\n case \"TERM\":\n split(term, lunr.tokenizer.separator, (...range) => {\n terms.push([\n part.slice(0, start),\n term.slice(...range),\n part.slice(end)\n ].join(\"\"))\n })\n }\n\n /* Return terms */\n return terms\n })\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Parse a search query for analysis\n *\n * Lunr.js itself has a bug where it doesn't detect or remove wildcards for\n * query clauses, so we must do this here.\n *\n * @see https://bit.ly/3DpTGtz - GitHub issue\n *\n * @param value - Query value\n *\n * @returns Search query clauses\n */\nexport function parseSearchQuery(\n value: string\n): SearchQueryClause[] {\n const query = new lunr.Query([\"title\", \"text\", \"tags\"])\n const parser = new lunr.QueryParser(value, query)\n\n /* Parse Search query */\n parser.parse()\n for (const clause of query.clauses) {\n clause.usePipeline = true\n\n /* Handle leading wildcard */\n if (clause.term.startsWith(\"*\")) {\n clause.wildcard = lunr.Query.wildcard.LEADING\n clause.term = clause.term.slice(1)\n }\n\n /* Handle trailing wildcard */\n if (clause.term.endsWith(\"*\")) {\n clause.wildcard = lunr.Query.wildcard.TRAILING\n clause.term = clause.term.slice(0, -1)\n }\n }\n\n /* Return query clauses */\n return query.clauses\n}\n\n/**\n * Analyze the search query clauses in regard to the search terms found\n *\n * @param query - Search query clauses\n * @param terms - Search terms\n *\n * @returns Search query terms\n */\nexport function getSearchQueryTerms(\n query: SearchQueryClause[], terms: string[]\n): SearchQueryTerms {\n const clauses = new Set<SearchQueryClause>(query)\n\n /* Match query clauses against terms */\n const result: SearchQueryTerms = {}\n for (let t = 0; t < terms.length; t++)\n for (const clause of clauses)\n if (terms[t].startsWith(clause.term)) {\n result[clause.term] = true\n clauses.delete(clause)\n }\n\n /* Annotate unmatched non-stopword query clauses */\n for (const clause of clauses)\n if (lunr.stopWordFilter?.(clause.term))\n result[clause.term] = false\n\n /* Return query terms */\n return result\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Segment a search query using the inverted index\n *\n * This function implements a clever approach to text segmentation for Asian\n * languages, as it used the information already available in the search index.\n * The idea is to greedily segment the search query based on the tokens that are\n * already part of the index, as described in the linked issue.\n *\n * @see https://bit.ly/3lwjrk7 - GitHub issue\n *\n * @param query - Query value\n * @param index - Inverted index\n *\n * @returns Segmented query value\n */\nexport function segment(\n query: string, index: object\n): Iterable<string> {\n const segments = new Set<string>()\n\n /* Segment search query */\n const wordcuts = new Uint16Array(query.length)\n for (let i = 0; i < query.length; i++)\n for (let j = i + 1; j < query.length; j++) {\n const value = query.slice(i, j)\n if (value in index)\n wordcuts[i] = j - i\n }\n\n /* Compute longest matches with minimum overlap */\n const stack = [0]\n for (let s = stack.length; s > 0;) {\n const p = stack[--s]\n for (let q = 1; q < wordcuts[p]; q++)\n if (wordcuts[p + q] > wordcuts[p] - q) {\n segments.add(query.slice(p, p + q))\n stack[s++] = p + q\n }\n\n /* Continue at end of query string */\n const q = p + wordcuts[p]\n if (wordcuts[q] && q < query.length - 1)\n stack[s++] = q\n\n /* Add current segment */\n segments.add(query.slice(p, q))\n }\n\n // @todo fix this case in the code block above, this is a hotfix\n if (segments.has(\"\"))\n return new Set([query])\n\n /* Return segmented query value */\n return segments\n}\n", "/*\n * Copyright (c) 2016-2025 Martin Donath <martin.donath@squidfunk.com>\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n SearchDocument,\n SearchIndex,\n SearchOptions,\n setupSearchDocumentMap\n} from \"../config\"\nimport {\n Position,\n PositionTable,\n highlight,\n highlightAll,\n tokenize\n} from \"../internal\"\nimport {\n SearchQueryTerms,\n getSearchQueryTerms,\n parseSearchQuery,\n segment,\n transformSearchQuery\n} from \"../query\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Search item\n */\nexport interface SearchItem\n extends SearchDocument\n{\n score: number /* Score (relevance) */\n terms: SearchQueryTerms /* Search query terms */\n}\n\n/**\n * Search result\n */\nexport interface SearchResult {\n items: SearchItem[][] /* Search items */\n suggest?: string[] /* Search suggestions */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Create field extractor factory\n *\n * @param table - Position table map\n *\n * @returns Extractor factory\n */\nfunction extractor(table: Map<string, PositionTable>) {\n return (name: keyof SearchDocument) => {\n return (doc: SearchDocument) => {\n if (typeof doc[name] === \"undefined\")\n return undefined\n\n /* Compute identifier and initialize table */\n const id = [doc.location, name].join(\":\")\n table.set(id, lunr.tokenizer.table = [])\n\n /* Return field value */\n return doc[name]\n }\n }\n}\n\n/**\n * Compute the difference of two lists of strings\n *\n * @param a - 1st list of strings\n * @param b - 2nd list of strings\n *\n * @returns Difference\n */\nfunction difference(a: string[], b: string[]): string[] {\n const [x, y] = [new Set(a), new Set(b)]\n return [\n ...new Set([...x].filter(value => !y.has(value)))\n ]\n}\n\n/* ----------------------------------------------------------------------------\n * Class\n * ------------------------------------------------------------------------- */\n\n/**\n * Search index\n */\nexport class Search {\n\n /**\n * Search document map\n */\n protected map: Map<string, SearchDocument>\n\n /**\n * Search options\n */\n protected options: SearchOptions\n\n /**\n * The underlying Lunr.js search index\n */\n protected index: lunr.Index\n\n /**\n * Internal position table map\n */\n protected table: Map<string, PositionTable>\n\n /**\n * Create the search integration\n *\n * @param data - Search index\n */\n public constructor({ config, docs, options }: SearchIndex) {\n const field = extractor(this.table = new Map())\n\n /* Set up document map and options */\n this.map = setupSearchDocumentMap(docs)\n this.options = options\n\n /* Set up document index */\n this.index = lunr(function () {\n this.metadataWhitelist = [\"position\"]\n this.b(0)\n\n /* Set up (multi-)language support */\n if (config.lang.length === 1 && config.lang[0] !== \"en\") {\n // @ts-expect-error - namespace indexing not supported\n this.use(lunr[config.lang[0]])\n } else if (config.lang.length > 1) {\n this.use(lunr.multiLanguage(...config.lang))\n }\n\n /* Set up custom tokenizer (must be after language setup) */\n this.tokenizer = tokenize as typeof lunr.tokenizer\n lunr.tokenizer.separator = new RegExp(config.separator)\n\n /* Set up custom segmenter, if loaded */\n lunr.segmenter = \"TinySegmenter\" in lunr\n ? new lunr.TinySegmenter()\n : undefined\n\n /* Compute functions to be removed from the pipeline */\n const fns = difference([\n \"trimmer\", \"stopWordFilter\", \"stemmer\"\n ], config.pipeline)\n\n /* Remove functions from the pipeline for registered languages */\n for (const lang of config.lang.map(language => (\n // @ts-expect-error - namespace indexing not supported\n language === \"en\" ? lunr : lunr[language]\n )))\n for (const fn of fns) {\n this.pipeline.remove(lang[fn])\n this.searchPipeline.remove(lang[fn])\n }\n\n /* Set up index reference */\n this.ref(\"location\")\n\n /* Set up index fields */\n this.field(\"title\", { boost: 1e3, extractor: field(\"title\") })\n this.field(\"text\", { boost: 1e0, extractor: field(\"text\") })\n this.field(\"tags\", { boost: 1e6, extractor: field(\"tags\") })\n\n /* Add documents to index */\n for (const doc of docs)\n this.add(doc, { boost: doc.boost })\n })\n }\n\n /**\n * Search for matching documents\n *\n * @param query - Search query\n *\n * @returns Search result\n */\n public search(query: string): SearchResult {\n\n // Experimental Chinese segmentation\n query = query.replace(/\\p{sc=Han}+/gu, value => {\n return [...segment(value, this.index.invertedIndex)]\n .join(\"* \")\n })\n\n // @todo: move segmenter (above) into transformSearchQuery\n query = transformSearchQuery(query)\n if (!query)\n return { items: [] }\n\n /* Parse query to extract clauses for analysis */\n const clauses = parseSearchQuery(query)\n .filter(clause => (\n clause.presence !== lunr.Query.presence.PROHIBITED\n ))\n\n /* Perform search and post-process results */\n const groups = this.index.search(query)\n\n /* Apply post-query boosts based on title and search query terms */\n .reduce<SearchItem[]>((item, { ref, score, matchData }) => {\n let doc = this.map.get(ref)\n if (typeof doc !== \"undefined\") {\n\n /* Shallow copy document */\n doc = { ...doc }\n if (doc.tags)\n doc.tags = [...doc.tags]\n\n /* Compute and analyze search query terms */\n const terms = getSearchQueryTerms(\n clauses,\n Object.keys(matchData.metadata)\n )\n\n /* Highlight matches in fields */\n for (const field of this.index.fields) {\n if (typeof doc[field] === \"undefined\")\n continue\n\n /* Collect positions from matches */\n const positions: Position[] = []\n for (const match of Object.values(matchData.metadata))\n if (typeof match[field] !== \"undefined\")\n positions.push(...match[field].position)\n\n /* Skip highlighting, if no positions were collected */\n if (!positions.length)\n continue\n\n /* Load table and determine highlighting method */\n const table = this.table.get([doc.location, field].join(\":\"))!\n const fn = Array.isArray(doc[field])\n ? highlightAll\n : highlight\n\n // @ts-expect-error - stop moaning, TypeScript!\n doc[field] = fn(doc[field], table, positions, field !== \"text\")\n }\n\n /* Highlight title and text and apply post-query boosts */\n const boost = +!doc.parent +\n Object.values(terms)\n .filter(t => t).length /\n Object.keys(terms).length\n\n /* Append item */\n item.push({\n ...doc,\n score: score * (1 + boost ** 2),\n terms\n })\n }\n return item\n }, [])\n\n /* Sort search results again after applying boosts */\n .sort((a, b) => b.score - a.score)\n\n /* Group search results by article */\n .reduce((items, result) => {\n const doc = this.map.get(result.location)\n if (typeof doc !== \"undefined\") {\n const ref = doc.parent\n ? doc.parent.location\n : doc.location\n items.set(ref, [...items.get(ref) || [], result])\n }\n return items\n }, new Map<string, SearchItem[]>())\n\n /* Ensure that every item set has an article */\n for (const [ref, items] of groups)\n if (!items.find(item => item.location === ref)) {\n const doc = this.map.get(ref)!\n items.push({ ...doc, score: 0, terms: {} })\n }\n\n /* Generate search suggestions, if desired */\n let suggest: string[] | undefined\n if (this.options.suggest) {\n const titles = this.index.query(builder => {\n for (const clause of clauses)\n builder.term(clause.term, {\n fields: [\"title\"],\n presence: lunr.Query.presence.REQUIRED,\n wildcard: lunr.Query.wildcard.TRAILING\n })\n })\n\n /* Retrieve suggestions for best match */\n suggest = titles.length\n ? Object.keys(titles[0].matchData.metadata)\n : []\n }\n\n /* Return search result */\n return {\n items: [...groups.values()],\n ...typeof suggest !== \"undefined\" && { suggest }\n }\n }\n}\n"], "mappings": "6lCAAA,IAAAA,GAAAC,GAAA,CAAAC,GAAAC,KAAA;AAAA;AAAA;AAAA;AAAA,IAME,UAAU,CAiCZ,IAAIC,EAAO,SAAUC,EAAQ,CAC3B,IAAIC,EAAU,IAAIF,EAAK,QAEvB,OAAAE,EAAQ,SAAS,IACfF,EAAK,QACLA,EAAK,eACLA,EAAK,OACP,EAEAE,EAAQ,eAAe,IACrBF,EAAK,OACP,EAEAC,EAAO,KAAKC,EAASA,CAAO,EACrBA,EAAQ,MAAM,CACvB,EAEAF,EAAK,QAAU,QACf;AAAA;AAAA;AAAA,GASAA,EAAK,MAAQ,CAAC,EASdA,EAAK,MAAM,KAAQ,SAAUG,EAAQ,CAEnC,OAAO,SAAUC,EAAS,CACpBD,EAAO,SAAW,QAAQ,MAC5B,QAAQ,KAAKC,CAAO,CAExB,CAEF,EAAG,IAAI,EAaPJ,EAAK,MAAM,SAAW,SAAUK,EAAK,CACnC,OAAsBA,GAAQ,KACrB,GAEAA,EAAI,SAAS,CAExB,EAkBAL,EAAK,MAAM,MAAQ,SAAUK,EAAK,CAChC,GAAIA,GAAQ,KACV,OAAOA,EAMT,QAHIC,EAAQ,OAAO,OAAO,IAAI,EAC1BC,EAAO,OAAO,KAAKF,CAAG,EAEjB,EAAI,EAAG,EAAIE,EAAK,OAAQ,IAAK,CACpC,IAAIC,EAAMD,EAAK,CAAC,EACZE,EAAMJ,EAAIG,CAAG,EAEjB,GAAI,MAAM,QAAQC,CAAG,EAAG,CACtBH,EAAME,CAAG,EAAIC,EAAI,MAAM,EACvB,QACF,CAEA,GAAI,OAAOA,GAAQ,UACf,OAAOA,GAAQ,UACf,OAAOA,GAAQ,UAAW,CAC5BH,EAAME,CAAG,EAAIC,EACb,QACF,CAEA,MAAM,IAAI,UAAU,uDAAuD,CAC7E,CAEA,OAAOH,CACT,EACAN,EAAK,SAAW,SAAUU,EAAQC,EAAWC,EAAa,CACxD,KAAK,OAASF,EACd,KAAK,UAAYC,EACjB,KAAK,aAAeC,CACtB,EAEAZ,EAAK,SAAS,OAAS,IAEvBA,EAAK,SAAS,WAAa,SAAUa,EAAG,CACtC,IAAIC,EAAID,EAAE,QAAQb,EAAK,SAAS,MAAM,EAEtC,GAAIc,IAAM,GACR,KAAM,6BAGR,IAAIC,EAAWF,EAAE,MAAM,EAAGC,CAAC,EACvBJ,EAASG,EAAE,MAAMC,EAAI,CAAC,EAE1B,OAAO,IAAId,EAAK,SAAUU,EAAQK,EAAUF,CAAC,CAC/C,EAEAb,EAAK,SAAS,UAAU,SAAW,UAAY,CAC7C,OAAI,KAAK,cAAgB,OACvB,KAAK,aAAe,KAAK,UAAYA,EAAK,SAAS,OAAS,KAAK,QAG5D,KAAK,YACd,EACA;AAAA;AAAA;AAAA,GAUAA,EAAK,IAAM,SAAUgB,EAAU,CAG7B,GAFA,KAAK,SAAW,OAAO,OAAO,IAAI,EAE9BA,EAAU,CACZ,KAAK,OAASA,EAAS,OAEvB,QAASC,EAAI,EAAGA,EAAI,KAAK,OAAQA,IAC/B,KAAK,SAASD,EAASC,CAAC,CAAC,EAAI,EAEjC,MACE,KAAK,OAAS,CAElB,EASAjB,EAAK,IAAI,SAAW,CAClB,UAAW,SAAUkB,EAAO,CAC1B,OAAOA,CACT,EAEA,MAAO,UAAY,CACjB,OAAO,IACT,EAEA,SAAU,UAAY,CACpB,MAAO,EACT,CACF,EASAlB,EAAK,IAAI,MAAQ,CACf,UAAW,UAAY,CACrB,OAAO,IACT,EAEA,MAAO,SAAUkB,EAAO,CACtB,OAAOA,CACT,EAEA,SAAU,UAAY,CACpB,MAAO,EACT,CACF,EAQAlB,EAAK,IAAI,UAAU,SAAW,SAAUmB,EAAQ,CAC9C,MAAO,CAAC,CAAC,KAAK,SAASA,CAAM,CAC/B,EAUAnB,EAAK,IAAI,UAAU,UAAY,SAAUkB,EAAO,CAC9C,IAAIE,EAAGC,EAAGL,EAAUM,EAAe,CAAC,EAEpC,GAAIJ,IAAUlB,EAAK,IAAI,SACrB,OAAO,KAGT,GAAIkB,IAAUlB,EAAK,IAAI,MACrB,OAAOkB,EAGL,KAAK,OAASA,EAAM,QACtBE,EAAI,KACJC,EAAIH,IAEJE,EAAIF,EACJG,EAAI,MAGNL,EAAW,OAAO,KAAKI,EAAE,QAAQ,EAEjC,QAASH,EAAI,EAAGA,EAAID,EAAS,OAAQC,IAAK,CACxC,IAAIM,EAAUP,EAASC,CAAC,EACpBM,KAAWF,EAAE,UACfC,EAAa,KAAKC,CAAO,CAE7B,CAEA,OAAO,IAAIvB,EAAK,IAAKsB,CAAY,CACnC,EASAtB,EAAK,IAAI,UAAU,MAAQ,SAAUkB,EAAO,CAC1C,OAAIA,IAAUlB,EAAK,IAAI,SACdA,EAAK,IAAI,SAGdkB,IAAUlB,EAAK,IAAI,MACd,KAGF,IAAIA,EAAK,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE,OAAO,OAAO,KAAKkB,EAAM,QAAQ,CAAC,CAAC,CACpF,EASAlB,EAAK,IAAM,SAAUwB,EAASC,EAAe,CAC3C,IAAIC,EAAoB,EAExB,QAASf,KAAaa,EAChBb,GAAa,WACjBe,GAAqB,OAAO,KAAKF,EAAQb,CAAS,CAAC,EAAE,QAGvD,IAAIgB,GAAKF,EAAgBC,EAAoB,KAAQA,EAAoB,IAEzE,OAAO,KAAK,IAAI,EAAI,KAAK,IAAIC,CAAC,CAAC,CACjC,EAUA3B,EAAK,MAAQ,SAAU4B,EAAKC,EAAU,CACpC,KAAK,IAAMD,GAAO,GAClB,KAAK,SAAWC,GAAY,CAAC,CAC/B,EAOA7B,EAAK,MAAM,UAAU,SAAW,UAAY,CAC1C,OAAO,KAAK,GACd,EAsBAA,EAAK,MAAM,UAAU,OAAS,SAAU8B,EAAI,CAC1C,YAAK,IAAMA,EAAG,KAAK,IAAK,KAAK,QAAQ,EAC9B,IACT,EASA9B,EAAK,MAAM,UAAU,MAAQ,SAAU8B,EAAI,CACzC,OAAAA,EAAKA,GAAM,SAAUjB,EAAG,CAAE,OAAOA,CAAE,EAC5B,IAAIb,EAAK,MAAO8B,EAAG,KAAK,IAAK,KAAK,QAAQ,EAAG,KAAK,QAAQ,CACnE,EACA;AAAA;AAAA;AAAA,GAuBA9B,EAAK,UAAY,SAAUK,EAAKwB,EAAU,CACxC,GAAIxB,GAAO,MAAQA,GAAO,KACxB,MAAO,CAAC,EAGV,GAAI,MAAM,QAAQA,CAAG,EACnB,OAAOA,EAAI,IAAI,SAAU0B,EAAG,CAC1B,OAAO,IAAI/B,EAAK,MACdA,EAAK,MAAM,SAAS+B,CAAC,EAAE,YAAY,EACnC/B,EAAK,MAAM,MAAM6B,CAAQ,CAC3B,CACF,CAAC,EAOH,QAJID,EAAMvB,EAAI,SAAS,EAAE,YAAY,EACjC2B,EAAMJ,EAAI,OACVK,EAAS,CAAC,EAELC,EAAW,EAAGC,EAAa,EAAGD,GAAYF,EAAKE,IAAY,CAClE,IAAIE,EAAOR,EAAI,OAAOM,CAAQ,EAC1BG,EAAcH,EAAWC,EAE7B,GAAKC,EAAK,MAAMpC,EAAK,UAAU,SAAS,GAAKkC,GAAYF,EAAM,CAE7D,GAAIK,EAAc,EAAG,CACnB,IAAIC,EAAgBtC,EAAK,MAAM,MAAM6B,CAAQ,GAAK,CAAC,EACnDS,EAAc,SAAc,CAACH,EAAYE,CAAW,EACpDC,EAAc,MAAWL,EAAO,OAEhCA,EAAO,KACL,IAAIjC,EAAK,MACP4B,EAAI,MAAMO,EAAYD,CAAQ,EAC9BI,CACF,CACF,CACF,CAEAH,EAAaD,EAAW,CAC1B,CAEF,CAEA,OAAOD,CACT,EASAjC,EAAK,UAAU,UAAY,UAC3B;AAAA;AAAA;AAAA,GAkCAA,EAAK,SAAW,UAAY,CAC1B,KAAK,OAAS,CAAC,CACjB,EAEAA,EAAK,SAAS,oBAAsB,OAAO,OAAO,IAAI,EAmCtDA,EAAK,SAAS,iBAAmB,SAAU8B,EAAIS,EAAO,CAChDA,KAAS,KAAK,qBAChBvC,EAAK,MAAM,KAAK,6CAA+CuC,CAAK,EAGtET,EAAG,MAAQS,EACXvC,EAAK,SAAS,oBAAoB8B,EAAG,KAAK,EAAIA,CAChD,EAQA9B,EAAK,SAAS,4BAA8B,SAAU8B,EAAI,CACxD,IAAIU,EAAeV,EAAG,OAAUA,EAAG,SAAS,KAAK,oBAE5CU,GACHxC,EAAK,MAAM,KAAK;AAAA,EAAmG8B,CAAE,CAEzH,EAYA9B,EAAK,SAAS,KAAO,SAAUyC,EAAY,CACzC,IAAIC,EAAW,IAAI1C,EAAK,SAExB,OAAAyC,EAAW,QAAQ,SAAUE,EAAQ,CACnC,IAAIb,EAAK9B,EAAK,SAAS,oBAAoB2C,CAAM,EAEjD,GAAIb,EACFY,EAAS,IAAIZ,CAAE,MAEf,OAAM,IAAI,MAAM,sCAAwCa,CAAM,CAElE,CAAC,EAEMD,CACT,EASA1C,EAAK,SAAS,UAAU,IAAM,UAAY,CACxC,IAAI4C,EAAM,MAAM,UAAU,MAAM,KAAK,SAAS,EAE9CA,EAAI,QAAQ,SAAUd,EAAI,CACxB9B,EAAK,SAAS,4BAA4B8B,CAAE,EAC5C,KAAK,OAAO,KAAKA,CAAE,CACrB,EAAG,IAAI,CACT,EAWA9B,EAAK,SAAS,UAAU,MAAQ,SAAU6C,EAAYC,EAAO,CAC3D9C,EAAK,SAAS,4BAA4B8C,CAAK,EAE/C,IAAIC,EAAM,KAAK,OAAO,QAAQF,CAAU,EACxC,GAAIE,GAAO,GACT,MAAM,IAAI,MAAM,wBAAwB,EAG1CA,EAAMA,EAAM,EACZ,KAAK,OAAO,OAAOA,EAAK,EAAGD,CAAK,CAClC,EAWA9C,EAAK,SAAS,UAAU,OAAS,SAAU6C,EAAYC,EAAO,CAC5D9C,EAAK,SAAS,4BAA4B8C,CAAK,EAE/C,IAAIC,EAAM,KAAK,OAAO,QAAQF,CAAU,EACxC,GAAIE,GAAO,GACT,MAAM,IAAI,MAAM,wBAAwB,EAG1C,KAAK,OAAO,OAAOA,EAAK,EAAGD,CAAK,CAClC,EAOA9C,EAAK,SAAS,UAAU,OAAS,SAAU8B,EAAI,CAC7C,IAAIiB,EAAM,KAAK,OAAO,QAAQjB,CAAE,EAC5BiB,GAAO,IAIX,KAAK,OAAO,OAAOA,EAAK,CAAC,CAC3B,EASA/C,EAAK,SAAS,UAAU,IAAM,SAAUiC,EAAQ,CAG9C,QAFIe,EAAc,KAAK,OAAO,OAErB/B,EAAI,EAAGA,EAAI+B,EAAa/B,IAAK,CAIpC,QAHIa,EAAK,KAAK,OAAOb,CAAC,EAClBgC,EAAO,CAAC,EAEHC,EAAI,EAAGA,EAAIjB,EAAO,OAAQiB,IAAK,CACtC,IAAIC,EAASrB,EAAGG,EAAOiB,CAAC,EAAGA,EAAGjB,CAAM,EAEpC,GAAI,EAAAkB,GAAW,MAA6BA,IAAW,IAEvD,GAAI,MAAM,QAAQA,CAAM,EACtB,QAASC,EAAI,EAAGA,EAAID,EAAO,OAAQC,IACjCH,EAAK,KAAKE,EAAOC,CAAC,CAAC,OAGrBH,EAAK,KAAKE,CAAM,CAEpB,CAEAlB,EAASgB,CACX,CAEA,OAAOhB,CACT,EAYAjC,EAAK,SAAS,UAAU,UAAY,SAAU4B,EAAKC,EAAU,CAC3D,IAAIwB,EAAQ,IAAIrD,EAAK,MAAO4B,EAAKC,CAAQ,EAEzC,OAAO,KAAK,IAAI,CAACwB,CAAK,CAAC,EAAE,IAAI,SAAUtB,EAAG,CACxC,OAAOA,EAAE,SAAS,CACpB,CAAC,CACH,EAMA/B,EAAK,SAAS,UAAU,MAAQ,UAAY,CAC1C,KAAK,OAAS,CAAC,CACjB,EASAA,EAAK,SAAS,UAAU,OAAS,UAAY,CAC3C,OAAO,KAAK,OAAO,IAAI,SAAU8B,EAAI,CACnC,OAAA9B,EAAK,SAAS,4BAA4B8B,CAAE,EAErCA,EAAG,KACZ,CAAC,CACH,EACA;AAAA;AAAA;AAAA,GAqBA9B,EAAK,OAAS,SAAUgB,EAAU,CAChC,KAAK,WAAa,EAClB,KAAK,SAAWA,GAAY,CAAC,CAC/B,EAaAhB,EAAK,OAAO,UAAU,iBAAmB,SAAUsD,EAAO,CAExD,GAAI,KAAK,SAAS,QAAU,EAC1B,MAAO,GAST,QANIC,EAAQ,EACRC,EAAM,KAAK,SAAS,OAAS,EAC7BnB,EAAcmB,EAAMD,EACpBE,EAAa,KAAK,MAAMpB,EAAc,CAAC,EACvCqB,EAAa,KAAK,SAASD,EAAa,CAAC,EAEtCpB,EAAc,IACfqB,EAAaJ,IACfC,EAAQE,GAGNC,EAAaJ,IACfE,EAAMC,GAGJC,GAAcJ,IAIlBjB,EAAcmB,EAAMD,EACpBE,EAAaF,EAAQ,KAAK,MAAMlB,EAAc,CAAC,EAC/CqB,EAAa,KAAK,SAASD,EAAa,CAAC,EAO3C,GAJIC,GAAcJ,GAIdI,EAAaJ,EACf,OAAOG,EAAa,EAGtB,GAAIC,EAAaJ,EACf,OAAQG,EAAa,GAAK,CAE9B,EAWAzD,EAAK,OAAO,UAAU,OAAS,SAAU2D,EAAWlD,EAAK,CACvD,KAAK,OAAOkD,EAAWlD,EAAK,UAAY,CACtC,KAAM,iBACR,CAAC,CACH,EAUAT,EAAK,OAAO,UAAU,OAAS,SAAU2D,EAAWlD,EAAKqB,EAAI,CAC3D,KAAK,WAAa,EAClB,IAAI8B,EAAW,KAAK,iBAAiBD,CAAS,EAE1C,KAAK,SAASC,CAAQ,GAAKD,EAC7B,KAAK,SAASC,EAAW,CAAC,EAAI9B,EAAG,KAAK,SAAS8B,EAAW,CAAC,EAAGnD,CAAG,EAEjE,KAAK,SAAS,OAAOmD,EAAU,EAAGD,EAAWlD,CAAG,CAEpD,EAOAT,EAAK,OAAO,UAAU,UAAY,UAAY,CAC5C,GAAI,KAAK,WAAY,OAAO,KAAK,WAKjC,QAHI6D,EAAe,EACfC,EAAiB,KAAK,SAAS,OAE1B7C,EAAI,EAAGA,EAAI6C,EAAgB7C,GAAK,EAAG,CAC1C,IAAIR,EAAM,KAAK,SAASQ,CAAC,EACzB4C,GAAgBpD,EAAMA,CACxB,CAEA,OAAO,KAAK,WAAa,KAAK,KAAKoD,CAAY,CACjD,EAQA7D,EAAK,OAAO,UAAU,IAAM,SAAU+D,EAAa,CAOjD,QANIC,EAAa,EACb5C,EAAI,KAAK,SAAUC,EAAI0C,EAAY,SACnCE,EAAO7C,EAAE,OAAQ8C,EAAO7C,EAAE,OAC1B8C,EAAO,EAAGC,EAAO,EACjBnD,EAAI,EAAGiC,EAAI,EAERjC,EAAIgD,GAAQf,EAAIgB,GACrBC,EAAO/C,EAAEH,CAAC,EAAGmD,EAAO/C,EAAE6B,CAAC,EACnBiB,EAAOC,EACTnD,GAAK,EACIkD,EAAOC,EAChBlB,GAAK,EACIiB,GAAQC,IACjBJ,GAAc5C,EAAEH,EAAI,CAAC,EAAII,EAAE6B,EAAI,CAAC,EAChCjC,GAAK,EACLiC,GAAK,GAIT,OAAOc,CACT,EASAhE,EAAK,OAAO,UAAU,WAAa,SAAU+D,EAAa,CACxD,OAAO,KAAK,IAAIA,CAAW,EAAI,KAAK,UAAU,GAAK,CACrD,EAOA/D,EAAK,OAAO,UAAU,QAAU,UAAY,CAG1C,QAFIqE,EAAS,IAAI,MAAO,KAAK,SAAS,OAAS,CAAC,EAEvCpD,EAAI,EAAGiC,EAAI,EAAGjC,EAAI,KAAK,SAAS,OAAQA,GAAK,EAAGiC,IACvDmB,EAAOnB,CAAC,EAAI,KAAK,SAASjC,CAAC,EAG7B,OAAOoD,CACT,EAOArE,EAAK,OAAO,UAAU,OAAS,UAAY,CACzC,OAAO,KAAK,QACd,EAEA;AAAA;AAAA;AAAA;AAAA,GAiBAA,EAAK,QAAW,UAAU,CACxB,IAAIsE,EAAY,CACZ,QAAY,MACZ,OAAW,OACX,KAAS,OACT,KAAS,OACT,KAAS,MACT,IAAQ,MACR,KAAS,KACT,MAAU,MACV,IAAQ,IACR,MAAU,MACV,QAAY,MACZ,MAAU,MACV,KAAS,MACT,MAAU,KACV,QAAY,MACZ,QAAY,MACZ,QAAY,MACZ,MAAU,KACV,MAAU,MACV,OAAW,MACX,KAAS,KACX,EAEAC,EAAY,CACV,MAAU,KACV,MAAU,GACV,MAAU,KACV,MAAU,KACV,KAAS,KACT,IAAQ,GACR,KAAS,EACX,EAEAC,EAAI,WACJC,EAAI,WACJC,EAAIF,EAAI,aACRG,EAAIF,EAAI,WAERG,EAAO,KAAOF,EAAI,KAAOC,EAAID,EAC7BG,EAAO,KAAOH,EAAI,KAAOC,EAAID,EAAI,IAAMC,EAAI,MAC3CG,EAAO,KAAOJ,EAAI,KAAOC,EAAID,EAAIC,EAAID,EACrCK,EAAM,KAAOL,EAAI,KAAOD,EAEtBO,EAAU,IAAI,OAAOJ,CAAI,EACzBK,EAAU,IAAI,OAAOH,CAAI,EACzBI,EAAU,IAAI,OAAOL,CAAI,EACzBM,EAAS,IAAI,OAAOJ,CAAG,EAEvBK,EAAQ,kBACRC,EAAS,iBACTC,EAAQ,aACRC,EAAS,kBACTC,EAAU,KACVC,EAAW,cACXC,EAAW,IAAI,OAAO,oBAAoB,EAC1CC,EAAW,IAAI,OAAO,IAAMjB,EAAID,EAAI,cAAc,EAElDmB,EAAQ,mBACRC,EAAO,2IAEPC,EAAO,iDAEPC,EAAO,sFACPC,EAAQ,oBAERC,EAAO,WACPC,EAAS,MACTC,EAAQ,IAAI,OAAO,IAAMzB,EAAID,EAAI,cAAc,EAE/C2B,EAAgB,SAAuBC,EAAG,CAC5C,IAAIC,EACFC,EACAC,EACAC,EACAC,EACAC,EACAC,EAEF,GAAIP,EAAE,OAAS,EAAK,OAAOA,EAiB3B,GAfAG,EAAUH,EAAE,OAAO,EAAE,CAAC,EAClBG,GAAW,MACbH,EAAIG,EAAQ,YAAY,EAAIH,EAAE,OAAO,CAAC,GAIxCI,EAAKrB,EACLsB,EAAMrB,EAEFoB,EAAG,KAAKJ,CAAC,EAAKA,EAAIA,EAAE,QAAQI,EAAG,MAAM,EAChCC,EAAI,KAAKL,CAAC,IAAKA,EAAIA,EAAE,QAAQK,EAAI,MAAM,GAGhDD,EAAKnB,EACLoB,EAAMnB,EACFkB,EAAG,KAAKJ,CAAC,EAAG,CACd,IAAIQ,EAAKJ,EAAG,KAAKJ,CAAC,EAClBI,EAAKzB,EACDyB,EAAG,KAAKI,EAAG,CAAC,CAAC,IACfJ,EAAKjB,EACLa,EAAIA,EAAE,QAAQI,EAAG,EAAE,EAEvB,SAAWC,EAAI,KAAKL,CAAC,EAAG,CACtB,IAAIQ,EAAKH,EAAI,KAAKL,CAAC,EACnBC,EAAOO,EAAG,CAAC,EACXH,EAAMvB,EACFuB,EAAI,KAAKJ,CAAI,IACfD,EAAIC,EACJI,EAAMjB,EACNkB,EAAMjB,EACNkB,EAAMjB,EACFe,EAAI,KAAKL,CAAC,EAAKA,EAAIA,EAAI,IAClBM,EAAI,KAAKN,CAAC,GAAKI,EAAKjB,EAASa,EAAIA,EAAE,QAAQI,EAAG,EAAE,GAChDG,EAAI,KAAKP,CAAC,IAAKA,EAAIA,EAAI,KAEpC,CAIA,GADAI,EAAKb,EACDa,EAAG,KAAKJ,CAAC,EAAG,CACd,IAAIQ,EAAKJ,EAAG,KAAKJ,CAAC,EAClBC,EAAOO,EAAG,CAAC,EACXR,EAAIC,EAAO,GACb,CAIA,GADAG,EAAKZ,EACDY,EAAG,KAAKJ,CAAC,EAAG,CACd,IAAIQ,EAAKJ,EAAG,KAAKJ,CAAC,EAClBC,EAAOO,EAAG,CAAC,EACXN,EAASM,EAAG,CAAC,EACbJ,EAAKzB,EACDyB,EAAG,KAAKH,CAAI,IACdD,EAAIC,EAAOhC,EAAUiC,CAAM,EAE/B,CAIA,GADAE,EAAKX,EACDW,EAAG,KAAKJ,CAAC,EAAG,CACd,IAAIQ,EAAKJ,EAAG,KAAKJ,CAAC,EAClBC,EAAOO,EAAG,CAAC,EACXN,EAASM,EAAG,CAAC,EACbJ,EAAKzB,EACDyB,EAAG,KAAKH,CAAI,IACdD,EAAIC,EAAO/B,EAAUgC,CAAM,EAE/B,CAKA,GAFAE,EAAKV,EACLW,EAAMV,EACFS,EAAG,KAAKJ,CAAC,EAAG,CACd,IAAIQ,EAAKJ,EAAG,KAAKJ,CAAC,EAClBC,EAAOO,EAAG,CAAC,EACXJ,EAAKxB,EACDwB,EAAG,KAAKH,CAAI,IACdD,EAAIC,EAER,SAAWI,EAAI,KAAKL,CAAC,EAAG,CACtB,IAAIQ,EAAKH,EAAI,KAAKL,CAAC,EACnBC,EAAOO,EAAG,CAAC,EAAIA,EAAG,CAAC,EACnBH,EAAMzB,EACFyB,EAAI,KAAKJ,CAAI,IACfD,EAAIC,EAER,CAIA,GADAG,EAAKR,EACDQ,EAAG,KAAKJ,CAAC,EAAG,CACd,IAAIQ,EAAKJ,EAAG,KAAKJ,CAAC,EAClBC,EAAOO,EAAG,CAAC,EACXJ,EAAKxB,EACLyB,EAAMxB,EACNyB,EAAMR,GACFM,EAAG,KAAKH,CAAI,GAAMI,EAAI,KAAKJ,CAAI,GAAK,CAAEK,EAAI,KAAKL,CAAI,KACrDD,EAAIC,EAER,CAEA,OAAAG,EAAKP,EACLQ,EAAMzB,EACFwB,EAAG,KAAKJ,CAAC,GAAKK,EAAI,KAAKL,CAAC,IAC1BI,EAAKjB,EACLa,EAAIA,EAAE,QAAQI,EAAG,EAAE,GAKjBD,GAAW,MACbH,EAAIG,EAAQ,YAAY,EAAIH,EAAE,OAAO,CAAC,GAGjCA,CACT,EAEA,OAAO,SAAUhD,EAAO,CACtB,OAAOA,EAAM,OAAO+C,CAAa,CACnC,CACF,EAAG,EAEHpG,EAAK,SAAS,iBAAiBA,EAAK,QAAS,SAAS,EACtD;AAAA;AAAA;AAAA,GAkBAA,EAAK,uBAAyB,SAAU8G,EAAW,CACjD,IAAIC,EAAQD,EAAU,OAAO,SAAU7D,EAAM+D,EAAU,CACrD,OAAA/D,EAAK+D,CAAQ,EAAIA,EACV/D,CACT,EAAG,CAAC,CAAC,EAEL,OAAO,SAAUI,EAAO,CACtB,GAAIA,GAAS0D,EAAM1D,EAAM,SAAS,CAAC,IAAMA,EAAM,SAAS,EAAG,OAAOA,CACpE,CACF,EAeArD,EAAK,eAAiBA,EAAK,uBAAuB,CAChD,IACA,OACA,QACA,SACA,QACA,MACA,SACA,OACA,KACA,QACA,KACA,MACA,MACA,MACA,KACA,KACA,KACA,UACA,OACA,MACA,KACA,MACA,SACA,QACA,OACA,MACA,KACA,OACA,SACA,OACA,OACA,QACA,MACA,OACA,MACA,MACA,MACA,MACA,OACA,KACA,MACA,OACA,MACA,MACA,MACA,UACA,IACA,KACA,KACA,OACA,KACA,KACA,MACA,OACA,QACA,MACA,OACA,SACA,MACA,KACA,QACA,OACA,OACA,KACA,UACA,KACA,MACA,MACA,KACA,MACA,QACA,KACA,OACA,KACA,QACA,MACA,MACA,SACA,OACA,MACA,OACA,MACA,SACA,QACA,KACA,OACA,OACA,OACA,MACA,QACA,OACA,OACA,QACA,QACA,OACA,OACA,MACA,KACA,MACA,OACA,KACA,QACA,MACA,KACA,OACA,OACA,OACA,QACA,QACA,QACA,MACA,OACA,MACA,OACA,OACA,QACA,MACA,MACA,MACF,CAAC,EAEDA,EAAK,SAAS,iBAAiBA,EAAK,eAAgB,gBAAgB,EACpE;AAAA;AAAA;AAAA,GAoBAA,EAAK,QAAU,SAAUqD,EAAO,CAC9B,OAAOA,EAAM,OAAO,SAAUxC,EAAG,CAC/B,OAAOA,EAAE,QAAQ,OAAQ,EAAE,EAAE,QAAQ,OAAQ,EAAE,CACjD,CAAC,CACH,EAEAb,EAAK,SAAS,iBAAiBA,EAAK,QAAS,SAAS,EACtD;AAAA;AAAA;AAAA,GA0BAA,EAAK,SAAW,UAAY,CAC1B,KAAK,MAAQ,GACb,KAAK,MAAQ,CAAC,EACd,KAAK,GAAKA,EAAK,SAAS,QACxBA,EAAK,SAAS,SAAW,CAC3B,EAUAA,EAAK,SAAS,QAAU,EASxBA,EAAK,SAAS,UAAY,SAAUiH,EAAK,CAGvC,QAFI/G,EAAU,IAAIF,EAAK,SAAS,QAEvBiB,EAAI,EAAGe,EAAMiF,EAAI,OAAQhG,EAAIe,EAAKf,IACzCf,EAAQ,OAAO+G,EAAIhG,CAAC,CAAC,EAGvB,OAAAf,EAAQ,OAAO,EACRA,EAAQ,IACjB,EAWAF,EAAK,SAAS,WAAa,SAAUkH,EAAQ,CAC3C,MAAI,iBAAkBA,EACblH,EAAK,SAAS,gBAAgBkH,EAAO,KAAMA,EAAO,YAAY,EAE9DlH,EAAK,SAAS,WAAWkH,EAAO,IAAI,CAE/C,EAiBAlH,EAAK,SAAS,gBAAkB,SAAU4B,EAAKuF,EAAc,CAS3D,QARIC,EAAO,IAAIpH,EAAK,SAEhBqH,EAAQ,CAAC,CACX,KAAMD,EACN,eAAgBD,EAChB,IAAKvF,CACP,CAAC,EAEMyF,EAAM,QAAQ,CACnB,IAAIC,EAAQD,EAAM,IAAI,EAGtB,GAAIC,EAAM,IAAI,OAAS,EAAG,CACxB,IAAIlF,EAAOkF,EAAM,IAAI,OAAO,CAAC,EACzBC,EAEAnF,KAAQkF,EAAM,KAAK,MACrBC,EAAaD,EAAM,KAAK,MAAMlF,CAAI,GAElCmF,EAAa,IAAIvH,EAAK,SACtBsH,EAAM,KAAK,MAAMlF,CAAI,EAAImF,GAGvBD,EAAM,IAAI,QAAU,IACtBC,EAAW,MAAQ,IAGrBF,EAAM,KAAK,CACT,KAAME,EACN,eAAgBD,EAAM,eACtB,IAAKA,EAAM,IAAI,MAAM,CAAC,CACxB,CAAC,CACH,CAEA,GAAIA,EAAM,gBAAkB,EAK5B,IAAI,MAAOA,EAAM,KAAK,MACpB,IAAIE,EAAgBF,EAAM,KAAK,MAAM,GAAG,MACnC,CACL,IAAIE,EAAgB,IAAIxH,EAAK,SAC7BsH,EAAM,KAAK,MAAM,GAAG,EAAIE,CAC1B,CAgCA,GA9BIF,EAAM,IAAI,QAAU,IACtBE,EAAc,MAAQ,IAGxBH,EAAM,KAAK,CACT,KAAMG,EACN,eAAgBF,EAAM,eAAiB,EACvC,IAAKA,EAAM,GACb,CAAC,EAKGA,EAAM,IAAI,OAAS,GACrBD,EAAM,KAAK,CACT,KAAMC,EAAM,KACZ,eAAgBA,EAAM,eAAiB,EACvC,IAAKA,EAAM,IAAI,MAAM,CAAC,CACxB,CAAC,EAKCA,EAAM,IAAI,QAAU,IACtBA,EAAM,KAAK,MAAQ,IAMjBA,EAAM,IAAI,QAAU,EAAG,CACzB,GAAI,MAAOA,EAAM,KAAK,MACpB,IAAIG,EAAmBH,EAAM,KAAK,MAAM,GAAG,MACtC,CACL,IAAIG,EAAmB,IAAIzH,EAAK,SAChCsH,EAAM,KAAK,MAAM,GAAG,EAAIG,CAC1B,CAEIH,EAAM,IAAI,QAAU,IACtBG,EAAiB,MAAQ,IAG3BJ,EAAM,KAAK,CACT,KAAMI,EACN,eAAgBH,EAAM,eAAiB,EACvC,IAAKA,EAAM,IAAI,MAAM,CAAC,CACxB,CAAC,CACH,CAKA,GAAIA,EAAM,IAAI,OAAS,EAAG,CACxB,IAAII,EAAQJ,EAAM,IAAI,OAAO,CAAC,EAC1BK,EAAQL,EAAM,IAAI,OAAO,CAAC,EAC1BM,EAEAD,KAASL,EAAM,KAAK,MACtBM,EAAgBN,EAAM,KAAK,MAAMK,CAAK,GAEtCC,EAAgB,IAAI5H,EAAK,SACzBsH,EAAM,KAAK,MAAMK,CAAK,EAAIC,GAGxBN,EAAM,IAAI,QAAU,IACtBM,EAAc,MAAQ,IAGxBP,EAAM,KAAK,CACT,KAAMO,EACN,eAAgBN,EAAM,eAAiB,EACvC,IAAKI,EAAQJ,EAAM,IAAI,MAAM,CAAC,CAChC,CAAC,CACH,EACF,CAEA,OAAOF,CACT,EAYApH,EAAK,SAAS,WAAa,SAAU4B,EAAK,CAYxC,QAXIiG,EAAO,IAAI7H,EAAK,SAChBoH,EAAOS,EAUF,EAAI,EAAG7F,EAAMJ,EAAI,OAAQ,EAAII,EAAK,IAAK,CAC9C,IAAII,EAAOR,EAAI,CAAC,EACZkG,EAAS,GAAK9F,EAAM,EAExB,GAAII,GAAQ,IACVyF,EAAK,MAAMzF,CAAI,EAAIyF,EACnBA,EAAK,MAAQC,MAER,CACL,IAAIC,EAAO,IAAI/H,EAAK,SACpB+H,EAAK,MAAQD,EAEbD,EAAK,MAAMzF,CAAI,EAAI2F,EACnBF,EAAOE,CACT,CACF,CAEA,OAAOX,CACT,EAYApH,EAAK,SAAS,UAAU,QAAU,UAAY,CAQ5C,QAPI+G,EAAQ,CAAC,EAETM,EAAQ,CAAC,CACX,OAAQ,GACR,KAAM,IACR,CAAC,EAEMA,EAAM,QAAQ,CACnB,IAAIC,EAAQD,EAAM,IAAI,EAClBW,EAAQ,OAAO,KAAKV,EAAM,KAAK,KAAK,EACpCtF,EAAMgG,EAAM,OAEZV,EAAM,KAAK,QAKbA,EAAM,OAAO,OAAO,CAAC,EACrBP,EAAM,KAAKO,EAAM,MAAM,GAGzB,QAASrG,EAAI,EAAGA,EAAIe,EAAKf,IAAK,CAC5B,IAAIgH,EAAOD,EAAM/G,CAAC,EAElBoG,EAAM,KAAK,CACT,OAAQC,EAAM,OAAO,OAAOW,CAAI,EAChC,KAAMX,EAAM,KAAK,MAAMW,CAAI,CAC7B,CAAC,CACH,CACF,CAEA,OAAOlB,CACT,EAYA/G,EAAK,SAAS,UAAU,SAAW,UAAY,CAS7C,GAAI,KAAK,KACP,OAAO,KAAK,KAOd,QAJI4B,EAAM,KAAK,MAAQ,IAAM,IACzBsG,EAAS,OAAO,KAAK,KAAK,KAAK,EAAE,KAAK,EACtClG,EAAMkG,EAAO,OAER,EAAI,EAAG,EAAIlG,EAAK,IAAK,CAC5B,IAAIO,EAAQ2F,EAAO,CAAC,EAChBL,EAAO,KAAK,MAAMtF,CAAK,EAE3BX,EAAMA,EAAMW,EAAQsF,EAAK,EAC3B,CAEA,OAAOjG,CACT,EAYA5B,EAAK,SAAS,UAAU,UAAY,SAAUqB,EAAG,CAU/C,QATIgD,EAAS,IAAIrE,EAAK,SAClBsH,EAAQ,OAERD,EAAQ,CAAC,CACX,MAAOhG,EACP,OAAQgD,EACR,KAAM,IACR,CAAC,EAEMgD,EAAM,QAAQ,CACnBC,EAAQD,EAAM,IAAI,EAWlB,QALIc,EAAS,OAAO,KAAKb,EAAM,MAAM,KAAK,EACtCc,EAAOD,EAAO,OACdE,EAAS,OAAO,KAAKf,EAAM,KAAK,KAAK,EACrCgB,EAAOD,EAAO,OAETE,EAAI,EAAGA,EAAIH,EAAMG,IAGxB,QAFIC,EAAQL,EAAOI,CAAC,EAEXzH,EAAI,EAAGA,EAAIwH,EAAMxH,IAAK,CAC7B,IAAI2H,EAAQJ,EAAOvH,CAAC,EAEpB,GAAI2H,GAASD,GAASA,GAAS,IAAK,CAClC,IAAIX,EAAOP,EAAM,KAAK,MAAMmB,CAAK,EAC7BC,EAAQpB,EAAM,MAAM,MAAMkB,CAAK,EAC/BV,EAAQD,EAAK,OAASa,EAAM,MAC5BX,EAAO,OAEPU,KAASnB,EAAM,OAAO,OAIxBS,EAAOT,EAAM,OAAO,MAAMmB,CAAK,EAC/BV,EAAK,MAAQA,EAAK,OAASD,IAM3BC,EAAO,IAAI/H,EAAK,SAChB+H,EAAK,MAAQD,EACbR,EAAM,OAAO,MAAMmB,CAAK,EAAIV,GAG9BV,EAAM,KAAK,CACT,MAAOqB,EACP,OAAQX,EACR,KAAMF,CACR,CAAC,CACH,CACF,CAEJ,CAEA,OAAOxD,CACT,EACArE,EAAK,SAAS,QAAU,UAAY,CAClC,KAAK,aAAe,GACpB,KAAK,KAAO,IAAIA,EAAK,SACrB,KAAK,eAAiB,CAAC,EACvB,KAAK,eAAiB,CAAC,CACzB,EAEAA,EAAK,SAAS,QAAQ,UAAU,OAAS,SAAU2I,EAAM,CACvD,IAAId,EACAe,EAAe,EAEnB,GAAID,EAAO,KAAK,aACd,MAAM,IAAI,MAAO,6BAA6B,EAGhD,QAAS,EAAI,EAAG,EAAIA,EAAK,QAAU,EAAI,KAAK,aAAa,QACnDA,EAAK,CAAC,GAAK,KAAK,aAAa,CAAC,EAD6B,IAE/DC,IAGF,KAAK,SAASA,CAAY,EAEtB,KAAK,eAAe,QAAU,EAChCf,EAAO,KAAK,KAEZA,EAAO,KAAK,eAAe,KAAK,eAAe,OAAS,CAAC,EAAE,MAG7D,QAAS,EAAIe,EAAc,EAAID,EAAK,OAAQ,IAAK,CAC/C,IAAIE,EAAW,IAAI7I,EAAK,SACpBoC,EAAOuG,EAAK,CAAC,EAEjBd,EAAK,MAAMzF,CAAI,EAAIyG,EAEnB,KAAK,eAAe,KAAK,CACvB,OAAQhB,EACR,KAAMzF,EACN,MAAOyG,CACT,CAAC,EAEDhB,EAAOgB,CACT,CAEAhB,EAAK,MAAQ,GACb,KAAK,aAAec,CACtB,EAEA3I,EAAK,SAAS,QAAQ,UAAU,OAAS,UAAY,CACnD,KAAK,SAAS,CAAC,CACjB,EAEAA,EAAK,SAAS,QAAQ,UAAU,SAAW,SAAU8I,EAAQ,CAC3D,QAAS7H,EAAI,KAAK,eAAe,OAAS,EAAGA,GAAK6H,EAAQ7H,IAAK,CAC7D,IAAI4G,EAAO,KAAK,eAAe5G,CAAC,EAC5B8H,EAAWlB,EAAK,MAAM,SAAS,EAE/BkB,KAAY,KAAK,eACnBlB,EAAK,OAAO,MAAMA,EAAK,IAAI,EAAI,KAAK,eAAekB,CAAQ,GAI3DlB,EAAK,MAAM,KAAOkB,EAElB,KAAK,eAAeA,CAAQ,EAAIlB,EAAK,OAGvC,KAAK,eAAe,IAAI,CAC1B,CACF,EACA;AAAA;AAAA;AAAA,GAqBA7H,EAAK,MAAQ,SAAUgJ,EAAO,CAC5B,KAAK,cAAgBA,EAAM,cAC3B,KAAK,aAAeA,EAAM,aAC1B,KAAK,SAAWA,EAAM,SACtB,KAAK,OAASA,EAAM,OACpB,KAAK,SAAWA,EAAM,QACxB,EAyEAhJ,EAAK,MAAM,UAAU,OAAS,SAAUiJ,EAAa,CACnD,OAAO,KAAK,MAAM,SAAUC,EAAO,CACjC,IAAIC,EAAS,IAAInJ,EAAK,YAAYiJ,EAAaC,CAAK,EACpDC,EAAO,MAAM,CACf,CAAC,CACH,EA2BAnJ,EAAK,MAAM,UAAU,MAAQ,SAAU8B,EAAI,CAoBzC,QAZIoH,EAAQ,IAAIlJ,EAAK,MAAM,KAAK,MAAM,EAClCoJ,EAAiB,OAAO,OAAO,IAAI,EACnCC,EAAe,OAAO,OAAO,IAAI,EACjCC,EAAiB,OAAO,OAAO,IAAI,EACnCC,EAAkB,OAAO,OAAO,IAAI,EACpCC,EAAoB,OAAO,OAAO,IAAI,EAOjCvI,EAAI,EAAGA,EAAI,KAAK,OAAO,OAAQA,IACtCoI,EAAa,KAAK,OAAOpI,CAAC,CAAC,EAAI,IAAIjB,EAAK,OAG1C8B,EAAG,KAAKoH,EAAOA,CAAK,EAEpB,QAASjI,EAAI,EAAGA,EAAIiI,EAAM,QAAQ,OAAQjI,IAAK,CAS7C,IAAIiG,EAASgC,EAAM,QAAQjI,CAAC,EACxBwI,EAAQ,KACRC,EAAgB1J,EAAK,IAAI,MAEzBkH,EAAO,YACTuC,EAAQ,KAAK,SAAS,UAAUvC,EAAO,KAAM,CAC3C,OAAQA,EAAO,MACjB,CAAC,EAEDuC,EAAQ,CAACvC,EAAO,IAAI,EAGtB,QAASyC,EAAI,EAAGA,EAAIF,EAAM,OAAQE,IAAK,CACrC,IAAIC,EAAOH,EAAME,CAAC,EAQlBzC,EAAO,KAAO0C,EAOd,IAAIC,EAAe7J,EAAK,SAAS,WAAWkH,CAAM,EAC9C4C,EAAgB,KAAK,SAAS,UAAUD,CAAY,EAAE,QAAQ,EAQlE,GAAIC,EAAc,SAAW,GAAK5C,EAAO,WAAalH,EAAK,MAAM,SAAS,SAAU,CAClF,QAASoD,EAAI,EAAGA,EAAI8D,EAAO,OAAO,OAAQ9D,IAAK,CAC7C,IAAI2G,EAAQ7C,EAAO,OAAO9D,CAAC,EAC3BmG,EAAgBQ,CAAK,EAAI/J,EAAK,IAAI,KACpC,CAEA,KACF,CAEA,QAASkD,EAAI,EAAGA,EAAI4G,EAAc,OAAQ5G,IASxC,QAJI8G,EAAeF,EAAc5G,CAAC,EAC9B1B,EAAU,KAAK,cAAcwI,CAAY,EACzCC,EAAYzI,EAAQ,OAEf4B,EAAI,EAAGA,EAAI8D,EAAO,OAAO,OAAQ9D,IAAK,CAS7C,IAAI2G,EAAQ7C,EAAO,OAAO9D,CAAC,EACvB8G,EAAe1I,EAAQuI,CAAK,EAC5BI,EAAuB,OAAO,KAAKD,CAAY,EAC/CE,EAAYJ,EAAe,IAAMD,EACjCM,EAAuB,IAAIrK,EAAK,IAAImK,CAAoB,EAoB5D,GAbIjD,EAAO,UAAYlH,EAAK,MAAM,SAAS,WACzC0J,EAAgBA,EAAc,MAAMW,CAAoB,EAEpDd,EAAgBQ,CAAK,IAAM,SAC7BR,EAAgBQ,CAAK,EAAI/J,EAAK,IAAI,WASlCkH,EAAO,UAAYlH,EAAK,MAAM,SAAS,WAAY,CACjDwJ,EAAkBO,CAAK,IAAM,SAC/BP,EAAkBO,CAAK,EAAI/J,EAAK,IAAI,OAGtCwJ,EAAkBO,CAAK,EAAIP,EAAkBO,CAAK,EAAE,MAAMM,CAAoB,EAO9E,QACF,CAeA,GANAhB,EAAaU,CAAK,EAAE,OAAOE,EAAW/C,EAAO,MAAO,SAAU9F,GAAGC,GAAG,CAAE,OAAOD,GAAIC,EAAE,CAAC,EAMhF,CAAAiI,EAAec,CAAS,EAI5B,SAASE,EAAI,EAAGA,EAAIH,EAAqB,OAAQG,IAAK,CAOpD,IAAIC,EAAsBJ,EAAqBG,CAAC,EAC5CE,EAAmB,IAAIxK,EAAK,SAAUuK,EAAqBR,CAAK,EAChElI,EAAWqI,EAAaK,CAAmB,EAC3CE,GAECA,EAAarB,EAAeoB,CAAgB,KAAO,OACtDpB,EAAeoB,CAAgB,EAAI,IAAIxK,EAAK,UAAWgK,EAAcD,EAAOlI,CAAQ,EAEpF4I,EAAW,IAAIT,EAAcD,EAAOlI,CAAQ,CAGhD,CAEAyH,EAAec,CAAS,EAAI,GAC9B,CAEJ,CAQA,GAAIlD,EAAO,WAAalH,EAAK,MAAM,SAAS,SAC1C,QAASoD,EAAI,EAAGA,EAAI8D,EAAO,OAAO,OAAQ9D,IAAK,CAC7C,IAAI2G,EAAQ7C,EAAO,OAAO9D,CAAC,EAC3BmG,EAAgBQ,CAAK,EAAIR,EAAgBQ,CAAK,EAAE,UAAUL,CAAa,CACzE,CAEJ,CAUA,QAHIgB,EAAqB1K,EAAK,IAAI,SAC9B2K,EAAuB3K,EAAK,IAAI,MAE3BiB,EAAI,EAAGA,EAAI,KAAK,OAAO,OAAQA,IAAK,CAC3C,IAAI8I,EAAQ,KAAK,OAAO9I,CAAC,EAErBsI,EAAgBQ,CAAK,IACvBW,EAAqBA,EAAmB,UAAUnB,EAAgBQ,CAAK,CAAC,GAGtEP,EAAkBO,CAAK,IACzBY,EAAuBA,EAAqB,MAAMnB,EAAkBO,CAAK,CAAC,EAE9E,CAEA,IAAIa,EAAoB,OAAO,KAAKxB,CAAc,EAC9CyB,EAAU,CAAC,EACXC,EAAU,OAAO,OAAO,IAAI,EAYhC,GAAI5B,EAAM,UAAU,EAAG,CACrB0B,EAAoB,OAAO,KAAK,KAAK,YAAY,EAEjD,QAAS3J,EAAI,EAAGA,EAAI2J,EAAkB,OAAQ3J,IAAK,CACjD,IAAIuJ,EAAmBI,EAAkB3J,CAAC,EACtCF,EAAWf,EAAK,SAAS,WAAWwK,CAAgB,EACxDpB,EAAeoB,CAAgB,EAAI,IAAIxK,EAAK,SAC9C,CACF,CAEA,QAASiB,EAAI,EAAGA,EAAI2J,EAAkB,OAAQ3J,IAAK,CASjD,IAAIF,EAAWf,EAAK,SAAS,WAAW4K,EAAkB3J,CAAC,CAAC,EACxDP,EAASK,EAAS,OAEtB,GAAK2J,EAAmB,SAAShK,CAAM,GAInC,CAAAiK,EAAqB,SAASjK,CAAM,EAIxC,KAAIqK,EAAc,KAAK,aAAahK,CAAQ,EACxCiK,EAAQ3B,EAAatI,EAAS,SAAS,EAAE,WAAWgK,CAAW,EAC/DE,EAEJ,IAAKA,EAAWH,EAAQpK,CAAM,KAAO,OACnCuK,EAAS,OAASD,EAClBC,EAAS,UAAU,QAAQ7B,EAAerI,CAAQ,CAAC,MAC9C,CACL,IAAImK,EAAQ,CACV,IAAKxK,EACL,MAAOsK,EACP,UAAW5B,EAAerI,CAAQ,CACpC,EACA+J,EAAQpK,CAAM,EAAIwK,EAClBL,EAAQ,KAAKK,CAAK,CACpB,EACF,CAKA,OAAOL,EAAQ,KAAK,SAAUzJ,GAAGC,GAAG,CAClC,OAAOA,GAAE,MAAQD,GAAE,KACrB,CAAC,CACH,EAUApB,EAAK,MAAM,UAAU,OAAS,UAAY,CACxC,IAAImL,EAAgB,OAAO,KAAK,KAAK,aAAa,EAC/C,KAAK,EACL,IAAI,SAAUvB,EAAM,CACnB,MAAO,CAACA,EAAM,KAAK,cAAcA,CAAI,CAAC,CACxC,EAAG,IAAI,EAELwB,EAAe,OAAO,KAAK,KAAK,YAAY,EAC7C,IAAI,SAAUC,EAAK,CAClB,MAAO,CAACA,EAAK,KAAK,aAAaA,CAAG,EAAE,OAAO,CAAC,CAC9C,EAAG,IAAI,EAET,MAAO,CACL,QAASrL,EAAK,QACd,OAAQ,KAAK,OACb,aAAcoL,EACd,cAAeD,EACf,SAAU,KAAK,SAAS,OAAO,CACjC,CACF,EAQAnL,EAAK,MAAM,KAAO,SAAUsL,EAAiB,CAC3C,IAAItC,EAAQ,CAAC,EACToC,EAAe,CAAC,EAChBG,EAAoBD,EAAgB,aACpCH,EAAgB,OAAO,OAAO,IAAI,EAClCK,EAA0BF,EAAgB,cAC1CG,EAAkB,IAAIzL,EAAK,SAAS,QACpC0C,EAAW1C,EAAK,SAAS,KAAKsL,EAAgB,QAAQ,EAEtDA,EAAgB,SAAWtL,EAAK,SAClCA,EAAK,MAAM,KAAK,4EAA8EA,EAAK,QAAU,sCAAwCsL,EAAgB,QAAU,GAAG,EAGpL,QAASrK,EAAI,EAAGA,EAAIsK,EAAkB,OAAQtK,IAAK,CACjD,IAAIyK,EAAQH,EAAkBtK,CAAC,EAC3BoK,EAAMK,EAAM,CAAC,EACb1K,EAAW0K,EAAM,CAAC,EAEtBN,EAAaC,CAAG,EAAI,IAAIrL,EAAK,OAAOgB,CAAQ,CAC9C,CAEA,QAASC,EAAI,EAAGA,EAAIuK,EAAwB,OAAQvK,IAAK,CACvD,IAAIyK,EAAQF,EAAwBvK,CAAC,EACjC2I,EAAO8B,EAAM,CAAC,EACdlK,EAAUkK,EAAM,CAAC,EAErBD,EAAgB,OAAO7B,CAAI,EAC3BuB,EAAcvB,CAAI,EAAIpI,CACxB,CAEA,OAAAiK,EAAgB,OAAO,EAEvBzC,EAAM,OAASsC,EAAgB,OAE/BtC,EAAM,aAAeoC,EACrBpC,EAAM,cAAgBmC,EACtBnC,EAAM,SAAWyC,EAAgB,KACjCzC,EAAM,SAAWtG,EAEV,IAAI1C,EAAK,MAAMgJ,CAAK,CAC7B,EACA;AAAA;AAAA;AAAA,GA6BAhJ,EAAK,QAAU,UAAY,CACzB,KAAK,KAAO,KACZ,KAAK,QAAU,OAAO,OAAO,IAAI,EACjC,KAAK,WAAa,OAAO,OAAO,IAAI,EACpC,KAAK,cAAgB,OAAO,OAAO,IAAI,EACvC,KAAK,qBAAuB,CAAC,EAC7B,KAAK,aAAe,CAAC,EACrB,KAAK,UAAYA,EAAK,UACtB,KAAK,SAAW,IAAIA,EAAK,SACzB,KAAK,eAAiB,IAAIA,EAAK,SAC/B,KAAK,cAAgB,EACrB,KAAK,GAAK,IACV,KAAK,IAAM,IACX,KAAK,UAAY,EACjB,KAAK,kBAAoB,CAAC,CAC5B,EAcAA,EAAK,QAAQ,UAAU,IAAM,SAAUqL,EAAK,CAC1C,KAAK,KAAOA,CACd,EAkCArL,EAAK,QAAQ,UAAU,MAAQ,SAAUW,EAAWgL,EAAY,CAC9D,GAAI,KAAK,KAAKhL,CAAS,EACrB,MAAM,IAAI,WAAY,UAAYA,EAAY,kCAAkC,EAGlF,KAAK,QAAQA,CAAS,EAAIgL,GAAc,CAAC,CAC3C,EAUA3L,EAAK,QAAQ,UAAU,EAAI,SAAU4L,EAAQ,CACvCA,EAAS,EACX,KAAK,GAAK,EACDA,EAAS,EAClB,KAAK,GAAK,EAEV,KAAK,GAAKA,CAEd,EASA5L,EAAK,QAAQ,UAAU,GAAK,SAAU4L,EAAQ,CAC5C,KAAK,IAAMA,CACb,EAmBA5L,EAAK,QAAQ,UAAU,IAAM,SAAU6L,EAAKF,EAAY,CACtD,IAAIjL,EAASmL,EAAI,KAAK,IAAI,EACtBC,EAAS,OAAO,KAAK,KAAK,OAAO,EAErC,KAAK,WAAWpL,CAAM,EAAIiL,GAAc,CAAC,EACzC,KAAK,eAAiB,EAEtB,QAAS1K,EAAI,EAAGA,EAAI6K,EAAO,OAAQ7K,IAAK,CACtC,IAAIN,EAAYmL,EAAO7K,CAAC,EACpB8K,EAAY,KAAK,QAAQpL,CAAS,EAAE,UACpCoJ,EAAQgC,EAAYA,EAAUF,CAAG,EAAIA,EAAIlL,CAAS,EAClDsB,EAAS,KAAK,UAAU8H,EAAO,CAC7B,OAAQ,CAACpJ,CAAS,CACpB,CAAC,EACD8I,EAAQ,KAAK,SAAS,IAAIxH,CAAM,EAChClB,EAAW,IAAIf,EAAK,SAAUU,EAAQC,CAAS,EAC/CqL,EAAa,OAAO,OAAO,IAAI,EAEnC,KAAK,qBAAqBjL,CAAQ,EAAIiL,EACtC,KAAK,aAAajL,CAAQ,EAAI,EAG9B,KAAK,aAAaA,CAAQ,GAAK0I,EAAM,OAGrC,QAASvG,EAAI,EAAGA,EAAIuG,EAAM,OAAQvG,IAAK,CACrC,IAAI0G,EAAOH,EAAMvG,CAAC,EAUlB,GARI8I,EAAWpC,CAAI,GAAK,OACtBoC,EAAWpC,CAAI,EAAI,GAGrBoC,EAAWpC,CAAI,GAAK,EAIhB,KAAK,cAAcA,CAAI,GAAK,KAAW,CACzC,IAAIpI,EAAU,OAAO,OAAO,IAAI,EAChCA,EAAQ,OAAY,KAAK,UACzB,KAAK,WAAa,EAElB,QAAS4B,EAAI,EAAGA,EAAI0I,EAAO,OAAQ1I,IACjC5B,EAAQsK,EAAO1I,CAAC,CAAC,EAAI,OAAO,OAAO,IAAI,EAGzC,KAAK,cAAcwG,CAAI,EAAIpI,CAC7B,CAGI,KAAK,cAAcoI,CAAI,EAAEjJ,CAAS,EAAED,CAAM,GAAK,OACjD,KAAK,cAAckJ,CAAI,EAAEjJ,CAAS,EAAED,CAAM,EAAI,OAAO,OAAO,IAAI,GAKlE,QAAS4J,EAAI,EAAGA,EAAI,KAAK,kBAAkB,OAAQA,IAAK,CACtD,IAAI2B,EAAc,KAAK,kBAAkB3B,CAAC,EACtCzI,EAAW+H,EAAK,SAASqC,CAAW,EAEpC,KAAK,cAAcrC,CAAI,EAAEjJ,CAAS,EAAED,CAAM,EAAEuL,CAAW,GAAK,OAC9D,KAAK,cAAcrC,CAAI,EAAEjJ,CAAS,EAAED,CAAM,EAAEuL,CAAW,EAAI,CAAC,GAG9D,KAAK,cAAcrC,CAAI,EAAEjJ,CAAS,EAAED,CAAM,EAAEuL,CAAW,EAAE,KAAKpK,CAAQ,CACxE,CACF,CAEF,CACF,EAOA7B,EAAK,QAAQ,UAAU,6BAA+B,UAAY,CAOhE,QALIkM,EAAY,OAAO,KAAK,KAAK,YAAY,EACzCC,EAAiBD,EAAU,OAC3BE,EAAc,CAAC,EACfC,EAAqB,CAAC,EAEjBpL,EAAI,EAAGA,EAAIkL,EAAgBlL,IAAK,CACvC,IAAIF,EAAWf,EAAK,SAAS,WAAWkM,EAAUjL,CAAC,CAAC,EAChD8I,EAAQhJ,EAAS,UAErBsL,EAAmBtC,CAAK,IAAMsC,EAAmBtC,CAAK,EAAI,GAC1DsC,EAAmBtC,CAAK,GAAK,EAE7BqC,EAAYrC,CAAK,IAAMqC,EAAYrC,CAAK,EAAI,GAC5CqC,EAAYrC,CAAK,GAAK,KAAK,aAAahJ,CAAQ,CAClD,CAIA,QAFI+K,EAAS,OAAO,KAAK,KAAK,OAAO,EAE5B7K,EAAI,EAAGA,EAAI6K,EAAO,OAAQ7K,IAAK,CACtC,IAAIN,EAAYmL,EAAO7K,CAAC,EACxBmL,EAAYzL,CAAS,EAAIyL,EAAYzL,CAAS,EAAI0L,EAAmB1L,CAAS,CAChF,CAEA,KAAK,mBAAqByL,CAC5B,EAOApM,EAAK,QAAQ,UAAU,mBAAqB,UAAY,CAMtD,QALIoL,EAAe,CAAC,EAChBc,EAAY,OAAO,KAAK,KAAK,oBAAoB,EACjDI,EAAkBJ,EAAU,OAC5BK,EAAe,OAAO,OAAO,IAAI,EAE5BtL,EAAI,EAAGA,EAAIqL,EAAiBrL,IAAK,CAaxC,QAZIF,EAAWf,EAAK,SAAS,WAAWkM,EAAUjL,CAAC,CAAC,EAChDN,EAAYI,EAAS,UACrByL,EAAc,KAAK,aAAazL,CAAQ,EACxCgK,EAAc,IAAI/K,EAAK,OACvByM,EAAkB,KAAK,qBAAqB1L,CAAQ,EACpD0I,EAAQ,OAAO,KAAKgD,CAAe,EACnCC,EAAcjD,EAAM,OAGpBkD,EAAa,KAAK,QAAQhM,CAAS,EAAE,OAAS,EAC9CiM,EAAW,KAAK,WAAW7L,EAAS,MAAM,EAAE,OAAS,EAEhDmC,EAAI,EAAGA,EAAIwJ,EAAaxJ,IAAK,CACpC,IAAI0G,EAAOH,EAAMvG,CAAC,EACd2J,EAAKJ,EAAgB7C,CAAI,EACzBK,EAAY,KAAK,cAAcL,CAAI,EAAE,OACrCkD,EAAK9B,EAAO+B,EAEZR,EAAa3C,CAAI,IAAM,QACzBkD,EAAM9M,EAAK,IAAI,KAAK,cAAc4J,CAAI,EAAG,KAAK,aAAa,EAC3D2C,EAAa3C,CAAI,EAAIkD,GAErBA,EAAMP,EAAa3C,CAAI,EAGzBoB,EAAQ8B,IAAQ,KAAK,IAAM,GAAKD,IAAO,KAAK,KAAO,EAAI,KAAK,GAAK,KAAK,IAAML,EAAc,KAAK,mBAAmB7L,CAAS,IAAMkM,GACjI7B,GAAS2B,EACT3B,GAAS4B,EACTG,EAAqB,KAAK,MAAM/B,EAAQ,GAAI,EAAI,IAQhDD,EAAY,OAAOd,EAAW8C,CAAkB,CAClD,CAEA3B,EAAarK,CAAQ,EAAIgK,CAC3B,CAEA,KAAK,aAAeK,CACtB,EAOApL,EAAK,QAAQ,UAAU,eAAiB,UAAY,CAClD,KAAK,SAAWA,EAAK,SAAS,UAC5B,OAAO,KAAK,KAAK,aAAa,EAAE,KAAK,CACvC,CACF,EAUAA,EAAK,QAAQ,UAAU,MAAQ,UAAY,CACzC,YAAK,6BAA6B,EAClC,KAAK,mBAAmB,EACxB,KAAK,eAAe,EAEb,IAAIA,EAAK,MAAM,CACpB,cAAe,KAAK,cACpB,aAAc,KAAK,aACnB,SAAU,KAAK,SACf,OAAQ,OAAO,KAAK,KAAK,OAAO,EAChC,SAAU,KAAK,cACjB,CAAC,CACH,EAgBAA,EAAK,QAAQ,UAAU,IAAM,SAAU8B,EAAI,CACzC,IAAIkL,EAAO,MAAM,UAAU,MAAM,KAAK,UAAW,CAAC,EAClDA,EAAK,QAAQ,IAAI,EACjBlL,EAAG,MAAM,KAAMkL,CAAI,CACrB,EAaAhN,EAAK,UAAY,SAAU4J,EAAMG,EAAOlI,EAAU,CAShD,QARIoL,EAAiB,OAAO,OAAO,IAAI,EACnCC,EAAe,OAAO,KAAKrL,GAAY,CAAC,CAAC,EAOpCZ,EAAI,EAAGA,EAAIiM,EAAa,OAAQjM,IAAK,CAC5C,IAAIT,EAAM0M,EAAajM,CAAC,EACxBgM,EAAezM,CAAG,EAAIqB,EAASrB,CAAG,EAAE,MAAM,CAC5C,CAEA,KAAK,SAAW,OAAO,OAAO,IAAI,EAE9BoJ,IAAS,SACX,KAAK,SAASA,CAAI,EAAI,OAAO,OAAO,IAAI,EACxC,KAAK,SAASA,CAAI,EAAEG,CAAK,EAAIkD,EAEjC,EAWAjN,EAAK,UAAU,UAAU,QAAU,SAAUmN,EAAgB,CAG3D,QAFI1D,EAAQ,OAAO,KAAK0D,EAAe,QAAQ,EAEtClM,EAAI,EAAGA,EAAIwI,EAAM,OAAQxI,IAAK,CACrC,IAAI2I,EAAOH,EAAMxI,CAAC,EACd6K,EAAS,OAAO,KAAKqB,EAAe,SAASvD,CAAI,CAAC,EAElD,KAAK,SAASA,CAAI,GAAK,OACzB,KAAK,SAASA,CAAI,EAAI,OAAO,OAAO,IAAI,GAG1C,QAAS1G,EAAI,EAAGA,EAAI4I,EAAO,OAAQ5I,IAAK,CACtC,IAAI6G,EAAQ+B,EAAO5I,CAAC,EAChB3C,EAAO,OAAO,KAAK4M,EAAe,SAASvD,CAAI,EAAEG,CAAK,CAAC,EAEvD,KAAK,SAASH,CAAI,EAAEG,CAAK,GAAK,OAChC,KAAK,SAASH,CAAI,EAAEG,CAAK,EAAI,OAAO,OAAO,IAAI,GAGjD,QAAS3G,EAAI,EAAGA,EAAI7C,EAAK,OAAQ6C,IAAK,CACpC,IAAI5C,EAAMD,EAAK6C,CAAC,EAEZ,KAAK,SAASwG,CAAI,EAAEG,CAAK,EAAEvJ,CAAG,GAAK,KACrC,KAAK,SAASoJ,CAAI,EAAEG,CAAK,EAAEvJ,CAAG,EAAI2M,EAAe,SAASvD,CAAI,EAAEG,CAAK,EAAEvJ,CAAG,EAE1E,KAAK,SAASoJ,CAAI,EAAEG,CAAK,EAAEvJ,CAAG,EAAI,KAAK,SAASoJ,CAAI,EAAEG,CAAK,EAAEvJ,CAAG,EAAE,OAAO2M,EAAe,SAASvD,CAAI,EAAEG,CAAK,EAAEvJ,CAAG,CAAC,CAGtH,CACF,CACF,CACF,EASAR,EAAK,UAAU,UAAU,IAAM,SAAU4J,EAAMG,EAAOlI,EAAU,CAC9D,GAAI,EAAE+H,KAAQ,KAAK,UAAW,CAC5B,KAAK,SAASA,CAAI,EAAI,OAAO,OAAO,IAAI,EACxC,KAAK,SAASA,CAAI,EAAEG,CAAK,EAAIlI,EAC7B,MACF,CAEA,GAAI,EAAEkI,KAAS,KAAK,SAASH,CAAI,GAAI,CACnC,KAAK,SAASA,CAAI,EAAEG,CAAK,EAAIlI,EAC7B,MACF,CAIA,QAFIqL,EAAe,OAAO,KAAKrL,CAAQ,EAE9BZ,EAAI,EAAGA,EAAIiM,EAAa,OAAQjM,IAAK,CAC5C,IAAIT,EAAM0M,EAAajM,CAAC,EAEpBT,KAAO,KAAK,SAASoJ,CAAI,EAAEG,CAAK,EAClC,KAAK,SAASH,CAAI,EAAEG,CAAK,EAAEvJ,CAAG,EAAI,KAAK,SAASoJ,CAAI,EAAEG,CAAK,EAAEvJ,CAAG,EAAE,OAAOqB,EAASrB,CAAG,CAAC,EAEtF,KAAK,SAASoJ,CAAI,EAAEG,CAAK,EAAEvJ,CAAG,EAAIqB,EAASrB,CAAG,CAElD,CACF,EAYAR,EAAK,MAAQ,SAAUoN,EAAW,CAChC,KAAK,QAAU,CAAC,EAChB,KAAK,UAAYA,CACnB,EA0BApN,EAAK,MAAM,SAAW,IAAI,OAAQ,GAAG,EACrCA,EAAK,MAAM,SAAS,KAAO,EAC3BA,EAAK,MAAM,SAAS,QAAU,EAC9BA,EAAK,MAAM,SAAS,SAAW,EAa/BA,EAAK,MAAM,SAAW,CAIpB,SAAU,EAMV,SAAU,EAMV,WAAY,CACd,EAyBAA,EAAK,MAAM,UAAU,OAAS,SAAUkH,EAAQ,CAC9C,MAAM,WAAYA,IAChBA,EAAO,OAAS,KAAK,WAGjB,UAAWA,IACfA,EAAO,MAAQ,GAGX,gBAAiBA,IACrBA,EAAO,YAAc,IAGjB,aAAcA,IAClBA,EAAO,SAAWlH,EAAK,MAAM,SAAS,MAGnCkH,EAAO,SAAWlH,EAAK,MAAM,SAAS,SAAakH,EAAO,KAAK,OAAO,CAAC,GAAKlH,EAAK,MAAM,WAC1FkH,EAAO,KAAO,IAAMA,EAAO,MAGxBA,EAAO,SAAWlH,EAAK,MAAM,SAAS,UAAckH,EAAO,KAAK,MAAM,EAAE,GAAKlH,EAAK,MAAM,WAC3FkH,EAAO,KAAO,GAAKA,EAAO,KAAO,KAG7B,aAAcA,IAClBA,EAAO,SAAWlH,EAAK,MAAM,SAAS,UAGxC,KAAK,QAAQ,KAAKkH,CAAM,EAEjB,IACT,EASAlH,EAAK,MAAM,UAAU,UAAY,UAAY,CAC3C,QAASiB,EAAI,EAAGA,EAAI,KAAK,QAAQ,OAAQA,IACvC,GAAI,KAAK,QAAQA,CAAC,EAAE,UAAYjB,EAAK,MAAM,SAAS,WAClD,MAAO,GAIX,MAAO,EACT,EA4BAA,EAAK,MAAM,UAAU,KAAO,SAAU4J,EAAMyD,EAAS,CACnD,GAAI,MAAM,QAAQzD,CAAI,EACpB,OAAAA,EAAK,QAAQ,SAAU7H,EAAG,CAAE,KAAK,KAAKA,EAAG/B,EAAK,MAAM,MAAMqN,CAAO,CAAC,CAAE,EAAG,IAAI,EACpE,KAGT,IAAInG,EAASmG,GAAW,CAAC,EACzB,OAAAnG,EAAO,KAAO0C,EAAK,SAAS,EAE5B,KAAK,OAAO1C,CAAM,EAEX,IACT,EACAlH,EAAK,gBAAkB,SAAUI,EAASmD,EAAOC,EAAK,CACpD,KAAK,KAAO,kBACZ,KAAK,QAAUpD,EACf,KAAK,MAAQmD,EACb,KAAK,IAAMC,CACb,EAEAxD,EAAK,gBAAgB,UAAY,IAAI,MACrCA,EAAK,WAAa,SAAU4B,EAAK,CAC/B,KAAK,QAAU,CAAC,EAChB,KAAK,IAAMA,EACX,KAAK,OAASA,EAAI,OAClB,KAAK,IAAM,EACX,KAAK,MAAQ,EACb,KAAK,oBAAsB,CAAC,CAC9B,EAEA5B,EAAK,WAAW,UAAU,IAAM,UAAY,CAG1C,QAFIsN,EAAQtN,EAAK,WAAW,QAErBsN,GACLA,EAAQA,EAAM,IAAI,CAEtB,EAEAtN,EAAK,WAAW,UAAU,YAAc,UAAY,CAKlD,QAJIuN,EAAY,CAAC,EACbpL,EAAa,KAAK,MAClBD,EAAW,KAAK,IAEX,EAAI,EAAG,EAAI,KAAK,oBAAoB,OAAQ,IACnDA,EAAW,KAAK,oBAAoB,CAAC,EACrCqL,EAAU,KAAK,KAAK,IAAI,MAAMpL,EAAYD,CAAQ,CAAC,EACnDC,EAAaD,EAAW,EAG1B,OAAAqL,EAAU,KAAK,KAAK,IAAI,MAAMpL,EAAY,KAAK,GAAG,CAAC,EACnD,KAAK,oBAAoB,OAAS,EAE3BoL,EAAU,KAAK,EAAE,CAC1B,EAEAvN,EAAK,WAAW,UAAU,KAAO,SAAUwN,EAAM,CAC/C,KAAK,QAAQ,KAAK,CAChB,KAAMA,EACN,IAAK,KAAK,YAAY,EACtB,MAAO,KAAK,MACZ,IAAK,KAAK,GACZ,CAAC,EAED,KAAK,MAAQ,KAAK,GACpB,EAEAxN,EAAK,WAAW,UAAU,gBAAkB,UAAY,CACtD,KAAK,oBAAoB,KAAK,KAAK,IAAM,CAAC,EAC1C,KAAK,KAAO,CACd,EAEAA,EAAK,WAAW,UAAU,KAAO,UAAY,CAC3C,GAAI,KAAK,KAAO,KAAK,OACnB,OAAOA,EAAK,WAAW,IAGzB,IAAIoC,EAAO,KAAK,IAAI,OAAO,KAAK,GAAG,EACnC,YAAK,KAAO,EACLA,CACT,EAEApC,EAAK,WAAW,UAAU,MAAQ,UAAY,CAC5C,OAAO,KAAK,IAAM,KAAK,KACzB,EAEAA,EAAK,WAAW,UAAU,OAAS,UAAY,CACzC,KAAK,OAAS,KAAK,MACrB,KAAK,KAAO,GAGd,KAAK,MAAQ,KAAK,GACpB,EAEAA,EAAK,WAAW,UAAU,OAAS,UAAY,CAC7C,KAAK,KAAO,CACd,EAEAA,EAAK,WAAW,UAAU,eAAiB,UAAY,CACrD,IAAIoC,EAAMqL,EAEV,GACErL,EAAO,KAAK,KAAK,EACjBqL,EAAWrL,EAAK,WAAW,CAAC,QACrBqL,EAAW,IAAMA,EAAW,IAEjCrL,GAAQpC,EAAK,WAAW,KAC1B,KAAK,OAAO,CAEhB,EAEAA,EAAK,WAAW,UAAU,KAAO,UAAY,CAC3C,OAAO,KAAK,IAAM,KAAK,MACzB,EAEAA,EAAK,WAAW,IAAM,MACtBA,EAAK,WAAW,MAAQ,QACxBA,EAAK,WAAW,KAAO,OACvBA,EAAK,WAAW,cAAgB,gBAChCA,EAAK,WAAW,MAAQ,QACxBA,EAAK,WAAW,SAAW,WAE3BA,EAAK,WAAW,SAAW,SAAU0N,EAAO,CAC1C,OAAAA,EAAM,OAAO,EACbA,EAAM,KAAK1N,EAAK,WAAW,KAAK,EAChC0N,EAAM,OAAO,EACN1N,EAAK,WAAW,OACzB,EAEAA,EAAK,WAAW,QAAU,SAAU0N,EAAO,CAQzC,GAPIA,EAAM,MAAM,EAAI,IAClBA,EAAM,OAAO,EACbA,EAAM,KAAK1N,EAAK,WAAW,IAAI,GAGjC0N,EAAM,OAAO,EAETA,EAAM,KAAK,EACb,OAAO1N,EAAK,WAAW,OAE3B,EAEAA,EAAK,WAAW,gBAAkB,SAAU0N,EAAO,CACjD,OAAAA,EAAM,OAAO,EACbA,EAAM,eAAe,EACrBA,EAAM,KAAK1N,EAAK,WAAW,aAAa,EACjCA,EAAK,WAAW,OACzB,EAEAA,EAAK,WAAW,SAAW,SAAU0N,EAAO,CAC1C,OAAAA,EAAM,OAAO,EACbA,EAAM,eAAe,EACrBA,EAAM,KAAK1N,EAAK,WAAW,KAAK,EACzBA,EAAK,WAAW,OACzB,EAEAA,EAAK,WAAW,OAAS,SAAU0N,EAAO,CACpCA,EAAM,MAAM,EAAI,GAClBA,EAAM,KAAK1N,EAAK,WAAW,IAAI,CAEnC,EAaAA,EAAK,WAAW,cAAgBA,EAAK,UAAU,UAE/CA,EAAK,WAAW,QAAU,SAAU0N,EAAO,CACzC,OAAa,CACX,IAAItL,EAAOsL,EAAM,KAAK,EAEtB,GAAItL,GAAQpC,EAAK,WAAW,IAC1B,OAAOA,EAAK,WAAW,OAIzB,GAAIoC,EAAK,WAAW,CAAC,GAAK,GAAI,CAC5BsL,EAAM,gBAAgB,EACtB,QACF,CAEA,GAAItL,GAAQ,IACV,OAAOpC,EAAK,WAAW,SAGzB,GAAIoC,GAAQ,IACV,OAAAsL,EAAM,OAAO,EACTA,EAAM,MAAM,EAAI,GAClBA,EAAM,KAAK1N,EAAK,WAAW,IAAI,EAE1BA,EAAK,WAAW,gBAGzB,GAAIoC,GAAQ,IACV,OAAAsL,EAAM,OAAO,EACTA,EAAM,MAAM,EAAI,GAClBA,EAAM,KAAK1N,EAAK,WAAW,IAAI,EAE1BA,EAAK,WAAW,SAczB,GARIoC,GAAQ,KAAOsL,EAAM,MAAM,IAAM,GAQjCtL,GAAQ,KAAOsL,EAAM,MAAM,IAAM,EACnC,OAAAA,EAAM,KAAK1N,EAAK,WAAW,QAAQ,EAC5BA,EAAK,WAAW,QAGzB,GAAIoC,EAAK,MAAMpC,EAAK,WAAW,aAAa,EAC1C,OAAOA,EAAK,WAAW,OAE3B,CACF,EAEAA,EAAK,YAAc,SAAU4B,EAAKsH,EAAO,CACvC,KAAK,MAAQ,IAAIlJ,EAAK,WAAY4B,CAAG,EACrC,KAAK,MAAQsH,EACb,KAAK,cAAgB,CAAC,EACtB,KAAK,UAAY,CACnB,EAEAlJ,EAAK,YAAY,UAAU,MAAQ,UAAY,CAC7C,KAAK,MAAM,IAAI,EACf,KAAK,QAAU,KAAK,MAAM,QAI1B,QAFIsN,EAAQtN,EAAK,YAAY,YAEtBsN,GACLA,EAAQA,EAAM,IAAI,EAGpB,OAAO,KAAK,KACd,EAEAtN,EAAK,YAAY,UAAU,WAAa,UAAY,CAClD,OAAO,KAAK,QAAQ,KAAK,SAAS,CACpC,EAEAA,EAAK,YAAY,UAAU,cAAgB,UAAY,CACrD,IAAI2N,EAAS,KAAK,WAAW,EAC7B,YAAK,WAAa,EACXA,CACT,EAEA3N,EAAK,YAAY,UAAU,WAAa,UAAY,CAClD,IAAI4N,EAAkB,KAAK,cAC3B,KAAK,MAAM,OAAOA,CAAe,EACjC,KAAK,cAAgB,CAAC,CACxB,EAEA5N,EAAK,YAAY,YAAc,SAAUmJ,EAAQ,CAC/C,IAAIwE,EAASxE,EAAO,WAAW,EAE/B,GAAIwE,GAAU,KAId,OAAQA,EAAO,KAAM,CACnB,KAAK3N,EAAK,WAAW,SACnB,OAAOA,EAAK,YAAY,cAC1B,KAAKA,EAAK,WAAW,MACnB,OAAOA,EAAK,YAAY,WAC1B,KAAKA,EAAK,WAAW,KACnB,OAAOA,EAAK,YAAY,UAC1B,QACE,IAAI6N,EAAe,4CAA8CF,EAAO,KAExE,MAAIA,EAAO,IAAI,QAAU,IACvBE,GAAgB,gBAAkBF,EAAO,IAAM,KAG3C,IAAI3N,EAAK,gBAAiB6N,EAAcF,EAAO,MAAOA,EAAO,GAAG,CAC1E,CACF,EAEA3N,EAAK,YAAY,cAAgB,SAAUmJ,EAAQ,CACjD,IAAIwE,EAASxE,EAAO,cAAc,EAElC,GAAIwE,GAAU,KAId,QAAQA,EAAO,IAAK,CAClB,IAAK,IACHxE,EAAO,cAAc,SAAWnJ,EAAK,MAAM,SAAS,WACpD,MACF,IAAK,IACHmJ,EAAO,cAAc,SAAWnJ,EAAK,MAAM,SAAS,SACpD,MACF,QACE,IAAI6N,EAAe,kCAAoCF,EAAO,IAAM,IACpE,MAAM,IAAI3N,EAAK,gBAAiB6N,EAAcF,EAAO,MAAOA,EAAO,GAAG,CAC1E,CAEA,IAAIG,EAAa3E,EAAO,WAAW,EAEnC,GAAI2E,GAAc,KAAW,CAC3B,IAAID,EAAe,yCACnB,MAAM,IAAI7N,EAAK,gBAAiB6N,EAAcF,EAAO,MAAOA,EAAO,GAAG,CACxE,CAEA,OAAQG,EAAW,KAAM,CACvB,KAAK9N,EAAK,WAAW,MACnB,OAAOA,EAAK,YAAY,WAC1B,KAAKA,EAAK,WAAW,KACnB,OAAOA,EAAK,YAAY,UAC1B,QACE,IAAI6N,EAAe,mCAAqCC,EAAW,KAAO,IAC1E,MAAM,IAAI9N,EAAK,gBAAiB6N,EAAcC,EAAW,MAAOA,EAAW,GAAG,CAClF,EACF,EAEA9N,EAAK,YAAY,WAAa,SAAUmJ,EAAQ,CAC9C,IAAIwE,EAASxE,EAAO,cAAc,EAElC,GAAIwE,GAAU,KAId,IAAIxE,EAAO,MAAM,UAAU,QAAQwE,EAAO,GAAG,GAAK,GAAI,CACpD,IAAII,EAAiB5E,EAAO,MAAM,UAAU,IAAI,SAAU6E,EAAG,CAAE,MAAO,IAAMA,EAAI,GAAI,CAAC,EAAE,KAAK,IAAI,EAC5FH,EAAe,uBAAyBF,EAAO,IAAM,uBAAyBI,EAElF,MAAM,IAAI/N,EAAK,gBAAiB6N,EAAcF,EAAO,MAAOA,EAAO,GAAG,CACxE,CAEAxE,EAAO,cAAc,OAAS,CAACwE,EAAO,GAAG,EAEzC,IAAIG,EAAa3E,EAAO,WAAW,EAEnC,GAAI2E,GAAc,KAAW,CAC3B,IAAID,EAAe,gCACnB,MAAM,IAAI7N,EAAK,gBAAiB6N,EAAcF,EAAO,MAAOA,EAAO,GAAG,CACxE,CAEA,OAAQG,EAAW,KAAM,CACvB,KAAK9N,EAAK,WAAW,KACnB,OAAOA,EAAK,YAAY,UAC1B,QACE,IAAI6N,EAAe,0BAA4BC,EAAW,KAAO,IACjE,MAAM,IAAI9N,EAAK,gBAAiB6N,EAAcC,EAAW,MAAOA,EAAW,GAAG,CAClF,EACF,EAEA9N,EAAK,YAAY,UAAY,SAAUmJ,EAAQ,CAC7C,IAAIwE,EAASxE,EAAO,cAAc,EAElC,GAAIwE,GAAU,KAId,CAAAxE,EAAO,cAAc,KAAOwE,EAAO,IAAI,YAAY,EAE/CA,EAAO,IAAI,QAAQ,GAAG,GAAK,KAC7BxE,EAAO,cAAc,YAAc,IAGrC,IAAI2E,EAAa3E,EAAO,WAAW,EAEnC,GAAI2E,GAAc,KAAW,CAC3B3E,EAAO,WAAW,EAClB,MACF,CAEA,OAAQ2E,EAAW,KAAM,CACvB,KAAK9N,EAAK,WAAW,KACnB,OAAAmJ,EAAO,WAAW,EACXnJ,EAAK,YAAY,UAC1B,KAAKA,EAAK,WAAW,MACnB,OAAAmJ,EAAO,WAAW,EACXnJ,EAAK,YAAY,WAC1B,KAAKA,EAAK,WAAW,cACnB,OAAOA,EAAK,YAAY,kBAC1B,KAAKA,EAAK,WAAW,MACnB,OAAOA,EAAK,YAAY,WAC1B,KAAKA,EAAK,WAAW,SACnB,OAAAmJ,EAAO,WAAW,EACXnJ,EAAK,YAAY,cAC1B,QACE,IAAI6N,EAAe,2BAA6BC,EAAW,KAAO,IAClE,MAAM,IAAI9N,EAAK,gBAAiB6N,EAAcC,EAAW,MAAOA,EAAW,GAAG,CAClF,EACF,EAEA9N,EAAK,YAAY,kBAAoB,SAAUmJ,EAAQ,CACrD,IAAIwE,EAASxE,EAAO,cAAc,EAElC,GAAIwE,GAAU,KAId,KAAIxG,EAAe,SAASwG,EAAO,IAAK,EAAE,EAE1C,GAAI,MAAMxG,CAAY,EAAG,CACvB,IAAI0G,EAAe,gCACnB,MAAM,IAAI7N,EAAK,gBAAiB6N,EAAcF,EAAO,MAAOA,EAAO,GAAG,CACxE,CAEAxE,EAAO,cAAc,aAAehC,EAEpC,IAAI2G,EAAa3E,EAAO,WAAW,EAEnC,GAAI2E,GAAc,KAAW,CAC3B3E,EAAO,WAAW,EAClB,MACF,CAEA,OAAQ2E,EAAW,KAAM,CACvB,KAAK9N,EAAK,WAAW,KACnB,OAAAmJ,EAAO,WAAW,EACXnJ,EAAK,YAAY,UAC1B,KAAKA,EAAK,WAAW,MACnB,OAAAmJ,EAAO,WAAW,EACXnJ,EAAK,YAAY,WAC1B,KAAKA,EAAK,WAAW,cACnB,OAAOA,EAAK,YAAY,kBAC1B,KAAKA,EAAK,WAAW,MACnB,OAAOA,EAAK,YAAY,WAC1B,KAAKA,EAAK,WAAW,SACnB,OAAAmJ,EAAO,WAAW,EACXnJ,EAAK,YAAY,cAC1B,QACE,IAAI6N,EAAe,2BAA6BC,EAAW,KAAO,IAClE,MAAM,IAAI9N,EAAK,gBAAiB6N,EAAcC,EAAW,MAAOA,EAAW,GAAG,CAClF,EACF,EAEA9N,EAAK,YAAY,WAAa,SAAUmJ,EAAQ,CAC9C,IAAIwE,EAASxE,EAAO,cAAc,EAElC,GAAIwE,GAAU,KAId,KAAIM,EAAQ,SAASN,EAAO,IAAK,EAAE,EAEnC,GAAI,MAAMM,CAAK,EAAG,CAChB,IAAIJ,EAAe,wBACnB,MAAM,IAAI7N,EAAK,gBAAiB6N,EAAcF,EAAO,MAAOA,EAAO,GAAG,CACxE,CAEAxE,EAAO,cAAc,MAAQ8E,EAE7B,IAAIH,EAAa3E,EAAO,WAAW,EAEnC,GAAI2E,GAAc,KAAW,CAC3B3E,EAAO,WAAW,EAClB,MACF,CAEA,OAAQ2E,EAAW,KAAM,CACvB,KAAK9N,EAAK,WAAW,KACnB,OAAAmJ,EAAO,WAAW,EACXnJ,EAAK,YAAY,UAC1B,KAAKA,EAAK,WAAW,MACnB,OAAAmJ,EAAO,WAAW,EACXnJ,EAAK,YAAY,WAC1B,KAAKA,EAAK,WAAW,cACnB,OAAOA,EAAK,YAAY,kBAC1B,KAAKA,EAAK,WAAW,MACnB,OAAOA,EAAK,YAAY,WAC1B,KAAKA,EAAK,WAAW,SACnB,OAAAmJ,EAAO,WAAW,EACXnJ,EAAK,YAAY,cAC1B,QACE,IAAI6N,EAAe,2BAA6BC,EAAW,KAAO,IAClE,MAAM,IAAI9N,EAAK,gBAAiB6N,EAAcC,EAAW,MAAOA,EAAW,GAAG,CAClF,EACF,EAMI,SAAU1G,EAAM8G,EAAS,CACrB,OAAO,QAAW,YAAc,OAAO,IAEzC,OAAOA,CAAO,EACL,OAAOpO,IAAY,SAM5BC,GAAO,QAAUmO,EAAQ,EAGzB9G,EAAK,KAAO8G,EAAQ,CAExB,EAAE,KAAM,UAAY,CAMlB,OAAOlO,CACT,CAAC,CACH,GAAG,IC53GH,IAAAmO,EAAiB,SCiDV,SAASC,GACdC,EAAkBC,EAAmB,SAClC,CACH,IAAMC,EAAKC,GAAsBH,EAAUC,CAAI,EAC/C,GAAI,OAAOC,GAAO,YAChB,MAAM,IAAI,eACR,8BAA8BF,CAAQ,iBACxC,EAGF,OAAOE,CACT,CAsBO,SAASC,GACdH,EAAkBC,EAAmB,SACtB,CACf,OAAOA,EAAK,cAAiBD,CAAQ,GAAK,MAC5C,CCjFK,OAAO,UACV,OAAO,QAAU,SAAUI,EAAa,CACtC,IAAMC,EAA2B,CAAC,EAClC,QAAWC,KAAO,OAAO,KAAKF,CAAG,EAE/BC,EAAK,KAAK,CAACC,EAAKF,EAAIE,CAAG,CAAC,CAAC,EAG3B,OAAOD,CACT,GAGG,OAAO,SACV,OAAO,OAAS,SAAUD,EAAa,CACrC,IAAMC,EAAiB,CAAC,EACxB,QAAWC,KAAO,OAAO,KAAKF,CAAG,EAE/BC,EAAK,KAAKD,EAAIE,CAAG,CAAC,EAGpB,OAAOD,CACT,GAKE,OAAO,SAAY,cAGhB,QAAQ,UAAU,WACrB,QAAQ,UAAU,SAAW,SAC3BE,EAA8BC,EACxB,CACF,OAAOD,GAAM,UACf,KAAK,WAAaA,EAAE,KACpB,KAAK,UAAYA,EAAE,MAEnB,KAAK,WAAaA,EAClB,KAAK,UAAYC,EAErB,GAGG,QAAQ,UAAU,cACrB,QAAQ,UAAU,YAAc,YAC3BC,EACG,CACN,IAAMC,EAAS,KAAK,WACpB,GAAIA,EAAQ,CACND,EAAM,SAAW,GACnBC,EAAO,YAAY,IAAI,EAGzB,QAASC,EAAIF,EAAM,OAAS,EAAGE,GAAK,EAAGA,IAAK,CAC1C,IAAIC,EAAOH,EAAME,CAAC,EACd,OAAOC,GAAS,SAClBA,EAAO,SAAS,eAAeA,CAAI,EAC5BA,EAAK,YACZA,EAAK,WAAW,YAAYA,CAAI,EAG7BD,EAGHD,EAAO,aAAa,KAAK,gBAAkBE,CAAI,EAF/CF,EAAO,aAAaE,EAAM,IAAI,CAGlC,CACF,CACF,ICDG,SAASC,GACdC,EAC6B,CAC7B,IAAMC,EAAM,IAAI,IAChB,QAAWC,KAAOF,EAAM,CACtB,GAAM,CAACG,CAAI,EAAID,EAAI,SAAS,MAAM,GAAG,EAG/BE,EAAUH,EAAI,IAAIE,CAAI,EACxB,OAAOC,GAAY,YACrBH,EAAI,IAAIE,EAAMD,CAAG,GAIjBD,EAAI,IAAIC,EAAI,SAAUA,CAAG,EACzBA,EAAI,OAASE,EAEjB,CAGA,OAAOH,CACT,CCnEO,SAASI,EACdC,EAAeC,EAAmBC,EAC5B,CAjDR,IAAAC,EAkDEF,EAAY,IAAI,OAAOA,EAAW,GAAG,EAGrC,IAAIG,EACAC,EAAQ,EACZ,EAAG,CACDD,EAAQH,EAAU,KAAKD,CAAK,EAG5B,IAAMM,GAAQH,EAAAC,GAAA,YAAAA,EAAO,QAAP,KAAAD,EAAgBH,EAAM,OAKpC,GAJIK,EAAQC,GACVJ,EAAGG,EAAOC,CAAK,EAGbF,EAAO,CACT,GAAM,CAACG,CAAI,EAAIH,EACfC,EAAQD,EAAM,MAAQG,EAAK,OAGvBA,EAAK,SAAW,IAClBN,EAAU,UAAYG,EAAM,MAAQ,EACxC,CACF,OAASA,EACX,CCFO,SAASI,GACdC,EAAeC,EACT,CAEN,IAAIC,EAAQ,EACRC,EAAQ,EACRC,EAAM,EAGV,QAASC,EAAQ,EAAGD,EAAMJ,EAAM,OAAQI,IAGlCJ,EAAM,OAAOI,CAAG,IAAM,KAAOA,EAAMD,EACrCF,EAAGC,EAAO,EAAcC,EAAOA,EAAQC,CAAG,EAGjCJ,EAAM,OAAOI,CAAG,IAAM,MAC3BJ,EAAM,OAAOG,EAAQ,CAAC,IAAM,IAC1B,EAAEE,IAAU,GACdJ,EAAGC,IAAS,EAAmBC,EAAOC,EAAM,CAAC,EAGtCJ,EAAM,OAAOI,EAAM,CAAC,IAAM,KAC/BC,MAAY,GACdJ,EAAGC,EAAO,EAAkBC,EAAOC,EAAM,CAAC,EAI9CD,EAAQC,EAAM,GAKdA,EAAMD,GACRF,EAAGC,EAAO,EAAcC,EAAOC,CAAG,CACtC,CCnDO,SAASE,GACdC,EAAeC,EAAsBC,EAAuBC,EAAO,GAC3D,CACR,OAAOC,EAAa,CAACJ,CAAK,EAAGC,EAAOC,EAAWC,CAAI,EAAE,IAAI,CAC3D,CAYO,SAASC,EACdC,EAAkBJ,EAAsBC,EAAuBC,EAAO,GAC5D,CAGV,IAAMG,EAAU,CAAC,CAAC,EAClB,QAASC,EAAI,EAAGA,EAAIN,EAAM,OAAQM,IAAK,CACrC,IAAMC,EAAOP,EAAMM,EAAI,CAAC,EAClBE,EAAOR,EAAMM,CAAC,EAGdG,EAAIF,EAAKA,EAAK,OAAS,CAAC,IAAM,EAAI,KAClCG,EAAIF,EAAK,CAAC,IAAoB,GAGpCH,EAAQ,KAAK,EAAEI,EAAIC,GAAKL,EAAQA,EAAQ,OAAS,CAAC,CAAC,CACrD,CAGA,OAAOD,EAAO,IAAI,CAACL,EAAOY,IAAM,CAC9B,IAAIC,EAAS,EAGPC,EAAS,IAAI,IACnB,QAAWJ,KAAKR,EAAU,KAAK,CAACa,EAAGC,IAAMD,EAAIC,CAAC,EAAG,CAC/C,IAAMC,EAAQP,EAAI,QACZQ,EAAQR,IAAM,GACpB,GAAIJ,EAAQY,CAAK,IAAMN,EACrB,SAGF,IAAIO,EAAQL,EAAO,IAAII,CAAK,EACxB,OAAOC,GAAU,aACnBL,EAAO,IAAII,EAAOC,EAAQ,CAAC,CAAC,EAG9BA,EAAM,KAAKF,CAAK,CAClB,CAGA,GAAIH,EAAO,OAAS,EAClB,OAAOd,EAGT,IAAMoB,EAAmB,CAAC,EAC1B,OAAW,CAACF,EAAOG,CAAO,IAAKP,EAAQ,CACrC,IAAMP,EAAIN,EAAMiB,CAAK,EAGfI,EAASf,EAAE,CAAC,IAAiB,GAC7BgB,EAAShB,EAAEA,EAAE,OAAS,CAAC,IAAM,GAC7BiB,EAASjB,EAAEA,EAAE,OAAS,CAAC,IAAM,EAAI,KAGnCJ,GAAQmB,EAAQT,GAClBO,EAAO,KAAKpB,EAAM,MAAMa,EAAQS,CAAK,CAAC,EAGxC,IAAIG,EAAQzB,EAAM,MAAMsB,EAAOC,EAAMC,CAAM,EAC3C,QAAWE,KAAKL,EAAQ,KAAK,CAACN,EAAGC,IAAMA,EAAID,CAAC,EAAG,CAG7C,IAAML,GAAKH,EAAEmB,CAAC,IAAM,IAAMJ,EACpBX,GAAKJ,EAAEmB,CAAC,IAAM,EAAI,MAAShB,EAGjCe,EAAQ,CACNA,EAAM,MAAM,EAAGf,CAAC,EAChB,SACAe,EAAM,MAAMf,EAAGC,CAAC,EAChB,UACAc,EAAM,MAAMd,CAAC,CACf,EAAE,KAAK,EAAE,CACX,CAMA,GAHAE,EAASU,EAAMC,EAGXJ,EAAO,KAAKK,CAAK,IAAM,EACzB,KACJ,CAGA,OAAItB,GAAQU,EAASb,EAAM,QACzBoB,EAAO,KAAKpB,EAAM,MAAMa,CAAM,CAAC,EAG1BO,EAAO,KAAK,EAAE,CACvB,CAAC,CACH,CChHO,SAASO,GACdC,EACc,CACd,IAAMC,EAAuB,CAAC,EAC9B,GAAI,OAAOD,GAAU,YACnB,OAAOC,EAGT,IAAMC,EAAS,MAAM,QAAQF,CAAK,EAAIA,EAAQ,CAACA,CAAK,EACpD,QAASG,EAAI,EAAGA,EAAID,EAAO,OAAQC,IAAK,CACtC,IAAMC,EAAQ,KAAK,UAAU,MACvBC,EAAQD,EAAM,OAGpBE,GAAQJ,EAAOC,CAAC,EAAG,CAACI,EAAOC,EAAMC,EAAOC,IAAQ,CA/DpD,IAAAC,EAiEM,OADAP,EAAAO,EAAMJ,GAASF,KAAfD,EAAAO,GAA0B,CAAC,GACnBH,EAAM,CAGZ,OACA,OACEJ,EAAMG,CAAK,EAAE,KACXE,GAAe,GACfC,EAAMD,GAAU,EAChBD,CACF,EACA,MAGF,OACE,IAAMI,EAAUV,EAAOC,CAAC,EAAE,MAAMM,EAAOC,CAAG,EAC1CG,EAAMD,EAAS,KAAK,UAAU,UAAW,CAACE,EAAOC,IAAU,CAOzD,GAAI,OAAO,KAAK,WAAc,YAAa,CACzC,IAAMC,EAAaJ,EAAQ,MAAME,EAAOC,CAAK,EAC7C,GAAI,WAAW,KAAK,KAAK,UAAU,OAAOC,CAAU,CAAC,EAAG,CACtD,IAAMC,EAAW,KAAK,UAAU,QAAQD,CAAU,EAClD,QAASE,EAAI,EAAGC,EAAI,EAAGD,EAAID,EAAS,OAAQC,IAG1Cd,EAAAG,KAAAH,EAAAG,GAAiB,CAAC,GAClBH,EAAMG,CAAK,EAAE,KACXE,EAAQK,EAAQK,GAAM,GACtBF,EAASC,CAAC,EAAE,QAAW,EACvBV,CACF,EAGAP,EAAO,KAAK,IAAI,KAAK,MACnBgB,EAASC,CAAC,EAAE,YAAY,EAAG,CACzB,SAAUX,GAAS,GAAKH,EAAMG,CAAK,EAAE,OAAS,CAChD,CACF,CAAC,EAGDY,GAAKF,EAASC,CAAC,EAAE,OAEnB,MACF,CACF,CAGAd,EAAMG,CAAK,EAAE,KACXE,EAAQK,GAAS,GACjBC,EAAQD,GAAU,EAClBN,CACF,EAGAP,EAAO,KAAK,IAAI,KAAK,MACnBW,EAAQ,MAAME,EAAOC,CAAK,EAAE,YAAY,EAAG,CACzC,SAAUR,GAAS,GAAKH,EAAMG,CAAK,EAAE,OAAS,CAChD,CACF,CAAC,CACH,CAAC,CACL,CACF,CAAC,CACH,CAGA,OAAON,CACT,CCjEO,SAASmB,GACdC,EAAeC,EAAgBC,GAAQA,EAC/B,CACR,OAAOF,EAGJ,KAAK,EAGL,MAAM,YAAY,EAChB,IAAI,CAACG,EAAOC,IAAUA,EAAQ,EAC3BD,EAAM,QAAQ,+BAAgC,IAAI,EAClDA,CACJ,EACC,KAAK,EAAE,EAGT,QAAQ,kCAAmC,EAAE,EAG7C,MAAM,MAAM,EACV,OAAO,CAACE,EAAMH,IAAS,CACtB,IAAMI,EAAOL,EAAGC,CAAI,EACpB,MAAO,CAAC,GAAGG,EAAM,GAAG,MAAM,QAAQC,CAAI,EAAIA,EAAO,CAACA,CAAI,CAAC,CACzD,EAAG,CAAC,CAAa,EAChB,IAAIJ,GAAQ,UAAU,KAAKA,CAAI,EAAI,GAAGA,CAAI,IAAMA,CAAI,EACpD,IAAIA,GAAQ,mBAAmB,KAAKA,CAAI,EAAIA,EAAO,GAAGA,CAAI,GAAG,EAC7D,KAAK,GAAG,CACf,CCxCO,SAASK,GACdC,EACQ,CAGR,OAAOC,GAAUD,EAAOE,GAAQ,CAC9B,IAAMC,EAAkB,CAAC,EAGnBC,EAAQ,IAAI,KAAK,WAAWF,CAAI,EACtCE,EAAM,IAAI,EAGV,OAAW,CAAE,KAAAC,EAAM,IAAKC,EAAM,MAAAC,EAAO,IAAAC,CAAI,IAAKJ,EAAM,QAClD,OAAQC,EAAM,CAGZ,IAAK,QACE,CAAC,QAAS,OAAQ,MAAM,EAAE,SAASC,CAAI,IAC1CJ,EAAO,CACLA,EAAK,MAAM,EAAGM,CAAG,EACjB,IACAN,EAAK,MAAMM,EAAM,CAAC,CACpB,EAAE,KAAK,EAAE,GACX,MAGF,IAAK,OACHC,EAAMH,EAAM,KAAK,UAAU,UAAW,IAAII,IAAU,CAClDP,EAAM,KAAK,CACTD,EAAK,MAAM,EAAGK,CAAK,EACnBD,EAAK,MAAM,GAAGI,CAAK,EACnBR,EAAK,MAAMM,CAAG,CAChB,EAAE,KAAK,EAAE,CAAC,CACZ,CAAC,CACL,CAGF,OAAOL,CACT,CAAC,CACH,CAgBO,SAASQ,GACdC,EACqB,CACrB,IAAMZ,EAAS,IAAI,KAAK,MAAM,CAAC,QAAS,OAAQ,MAAM,CAAC,EACxC,IAAI,KAAK,YAAYY,EAAOZ,CAAK,EAGzC,MAAM,EACb,QAAWa,KAAUb,EAAM,QACzBa,EAAO,YAAc,GAGjBA,EAAO,KAAK,WAAW,GAAG,IAC5BA,EAAO,SAAW,KAAK,MAAM,SAAS,QACtCA,EAAO,KAAOA,EAAO,KAAK,MAAM,CAAC,GAI/BA,EAAO,KAAK,SAAS,GAAG,IAC1BA,EAAO,SAAW,KAAK,MAAM,SAAS,SACtCA,EAAO,KAAOA,EAAO,KAAK,MAAM,EAAG,EAAE,GAKzC,OAAOb,EAAM,OACf,CAUO,SAASc,GACdd,EAA4BG,EACV,CAxJpB,IAAAY,EAyJE,IAAMC,EAAU,IAAI,IAAuBhB,CAAK,EAG1CiB,EAA2B,CAAC,EAClC,QAASC,EAAI,EAAGA,EAAIf,EAAM,OAAQe,IAChC,QAAWL,KAAUG,EACfb,EAAMe,CAAC,EAAE,WAAWL,EAAO,IAAI,IACjCI,EAAOJ,EAAO,IAAI,EAAI,GACtBG,EAAQ,OAAOH,CAAM,GAI3B,QAAWA,KAAUG,GACfD,EAAA,KAAK,iBAAL,MAAAA,EAAA,UAAsBF,EAAO,QAC/BI,EAAOJ,EAAO,IAAI,EAAI,IAG1B,OAAOI,CACT,CClIO,SAASE,GACdC,EAAeC,EACG,CAClB,IAAMC,EAAW,IAAI,IAGfC,EAAW,IAAI,YAAYH,EAAM,MAAM,EAC7C,QAASI,EAAI,EAAGA,EAAIJ,EAAM,OAAQI,IAChC,QAASC,EAAID,EAAI,EAAGC,EAAIL,EAAM,OAAQK,IACtBL,EAAM,MAAMI,EAAGC,CAAC,IACjBJ,IACXE,EAASC,CAAC,EAAIC,EAAID,GAIxB,IAAME,EAAQ,CAAC,CAAC,EAChB,QAAS,EAAIA,EAAM,OAAQ,EAAI,GAAI,CACjC,IAAMC,EAAID,EAAM,EAAE,CAAC,EACnB,QAASE,EAAI,EAAGA,EAAIL,EAASI,CAAC,EAAGC,IAC3BL,EAASI,EAAIC,CAAC,EAAIL,EAASI,CAAC,EAAIC,IAClCN,EAAS,IAAIF,EAAM,MAAMO,EAAGA,EAAIC,CAAC,CAAC,EAClCF,EAAM,GAAG,EAAIC,EAAIC,GAIrB,IAAMA,EAAID,EAAIJ,EAASI,CAAC,EACpBJ,EAASK,CAAC,GAAKA,EAAIR,EAAM,OAAS,IACpCM,EAAM,GAAG,EAAIE,GAGfN,EAAS,IAAIF,EAAM,MAAMO,EAAGC,CAAC,CAAC,CAChC,CAGA,OAAIN,EAAS,IAAI,EAAE,EACV,IAAI,IAAI,CAACF,CAAK,CAAC,EAGjBE,CACT,CCJA,SAASO,GAAUC,EAAmC,CACpD,OAAQC,GACEC,GAAwB,CAC9B,GAAI,OAAOA,EAAID,CAAI,GAAM,YACvB,OAGF,IAAME,EAAK,CAACD,EAAI,SAAUD,CAAI,EAAE,KAAK,GAAG,EACxC,OAAAD,EAAM,IAAIG,EAAI,KAAK,UAAU,MAAQ,CAAC,CAAC,EAGhCD,EAAID,CAAI,CACjB,CAEJ,CAUA,SAASG,GAAWC,EAAaC,EAAuB,CACtD,GAAM,CAACC,EAAGC,CAAC,EAAI,CAAC,IAAI,IAAIH,CAAC,EAAG,IAAI,IAAIC,CAAC,CAAC,EACtC,MAAO,CACL,GAAG,IAAI,IAAI,CAAC,GAAGC,CAAC,EAAE,OAAOE,GAAS,CAACD,EAAE,IAAIC,CAAK,CAAC,CAAC,CAClD,CACF,CASO,IAAMC,EAAN,KAAa,CA2BX,YAAY,CAAE,OAAAC,EAAQ,KAAAC,EAAM,QAAAC,CAAQ,EAAgB,CACzD,IAAMC,EAAQf,GAAU,KAAK,MAAQ,IAAI,GAAK,EAG9C,KAAK,IAAMgB,GAAuBH,CAAI,EACtC,KAAK,QAAUC,EAGf,KAAK,MAAQ,KAAK,UAAY,CAC5B,KAAK,kBAAoB,CAAC,UAAU,EACpC,KAAK,EAAE,CAAC,EAGJF,EAAO,KAAK,SAAW,GAAKA,EAAO,KAAK,CAAC,IAAM,KAEjD,KAAK,IAAI,KAAKA,EAAO,KAAK,CAAC,CAAC,CAAC,EACpBA,EAAO,KAAK,OAAS,GAC9B,KAAK,IAAI,KAAK,cAAc,GAAGA,EAAO,IAAI,CAAC,EAI7C,KAAK,UAAYK,GACjB,KAAK,UAAU,UAAY,IAAI,OAAOL,EAAO,SAAS,EAGtD,KAAK,UAAY,kBAAmB,KAChC,IAAI,KAAK,cACT,OAGJ,IAAMM,EAAMb,GAAW,CACrB,UAAW,iBAAkB,SAC/B,EAAGO,EAAO,QAAQ,EAGlB,QAAWO,KAAQP,EAAO,KAAK,IAAIQ,GAEjCA,IAAa,KAAO,KAAO,KAAKA,CAAQ,CACzC,EACC,QAAWC,KAAMH,EACf,KAAK,SAAS,OAAOC,EAAKE,CAAE,CAAC,EAC7B,KAAK,eAAe,OAAOF,EAAKE,CAAE,CAAC,EAIvC,KAAK,IAAI,UAAU,EAGnB,KAAK,MAAM,QAAS,CAAE,MAAO,IAAK,UAAWN,EAAM,OAAO,CAAE,CAAC,EAC7D,KAAK,MAAM,OAAS,CAAE,MAAO,EAAK,UAAWA,EAAM,MAAM,CAAE,CAAC,EAC5D,KAAK,MAAM,OAAS,CAAE,MAAO,IAAK,UAAWA,EAAM,MAAM,CAAE,CAAC,EAG5D,QAAWZ,KAAOU,EAChB,KAAK,IAAIV,EAAK,CAAE,MAAOA,EAAI,KAAM,CAAC,CACtC,CAAC,CACH,CASO,OAAOmB,EAA6B,CAUzC,GAPAA,EAAQA,EAAM,QAAQ,WAAC,eAAY,IAAE,EAAEZ,GAC9B,CAAC,GAAGa,GAAQb,EAAO,KAAK,MAAM,aAAa,CAAC,EAChD,KAAK,IAAI,CACb,EAGDY,EAAQE,GAAqBF,CAAK,EAC9B,CAACA,EACH,MAAO,CAAE,MAAO,CAAC,CAAE,EAGrB,IAAMG,EAAUC,GAAiBJ,CAAK,EACnC,OAAOK,GACNA,EAAO,WAAa,KAAK,MAAM,SAAS,UACzC,EAGGC,EAAS,KAAK,MAAM,OAAON,CAAK,EAGnC,OAAqB,CAACO,EAAM,CAAE,IAAAC,EAAK,MAAAC,EAAO,UAAAC,CAAU,IAAM,CACzD,IAAI7B,EAAM,KAAK,IAAI,IAAI2B,CAAG,EAC1B,GAAI,OAAO3B,GAAQ,YAAa,CAG9BA,EAAM8B,EAAA,GAAK9B,GACPA,EAAI,OACNA,EAAI,KAAO,CAAC,GAAGA,EAAI,IAAI,GAGzB,IAAM+B,EAAQC,GACZV,EACA,OAAO,KAAKO,EAAU,QAAQ,CAChC,EAGA,QAAWjB,KAAS,KAAK,MAAM,OAAQ,CACrC,GAAI,OAAOZ,EAAIY,CAAK,GAAM,YACxB,SAGF,IAAMqB,EAAwB,CAAC,EAC/B,QAAWC,KAAS,OAAO,OAAOL,EAAU,QAAQ,EAC9C,OAAOK,EAAMtB,CAAK,GAAM,aAC1BqB,EAAU,KAAK,GAAGC,EAAMtB,CAAK,EAAE,QAAQ,EAG3C,GAAI,CAACqB,EAAU,OACb,SAGF,IAAMnC,EAAQ,KAAK,MAAM,IAAI,CAACE,EAAI,SAAUY,CAAK,EAAE,KAAK,GAAG,CAAC,EACtDM,EAAK,MAAM,QAAQlB,EAAIY,CAAK,CAAC,EAC/BuB,EACAC,GAGJpC,EAAIY,CAAK,EAAIM,EAAGlB,EAAIY,CAAK,EAAGd,EAAOmC,EAAWrB,IAAU,MAAM,CAChE,CAGA,IAAMyB,EAAQ,CAAC,CAACrC,EAAI,OAClB,OAAO,OAAO+B,CAAK,EAChB,OAAOO,GAAKA,CAAC,EAAE,OAClB,OAAO,KAAKP,CAAK,EAAE,OAGrBL,EAAK,KAAKa,EAAAT,EAAA,GACL9B,GADK,CAER,MAAO4B,GAAS,EAAIY,EAAAH,EAAS,IAC7B,MAAAN,CACF,EAAC,CACH,CACA,OAAOL,CACT,EAAG,CAAC,CAAC,EAGJ,KAAK,CAACvB,EAAGC,IAAMA,EAAE,MAAQD,EAAE,KAAK,EAGhC,OAAO,CAACsC,EAAOC,IAAW,CACzB,IAAM1C,EAAM,KAAK,IAAI,IAAI0C,EAAO,QAAQ,EACxC,GAAI,OAAO1C,GAAQ,YAAa,CAC9B,IAAM2B,EAAM3B,EAAI,OACZA,EAAI,OAAO,SACXA,EAAI,SACRyC,EAAM,IAAId,EAAK,CAAC,GAAGc,EAAM,IAAId,CAAG,GAAK,CAAC,EAAGe,CAAM,CAAC,CAClD,CACA,OAAOD,CACT,EAAG,IAAI,GAA2B,EAGpC,OAAW,CAACd,EAAKc,CAAK,IAAKhB,EACzB,GAAI,CAACgB,EAAM,KAAKf,GAAQA,EAAK,WAAaC,CAAG,EAAG,CAC9C,IAAM3B,EAAM,KAAK,IAAI,IAAI2B,CAAG,EAC5Bc,EAAM,KAAKF,EAAAT,EAAA,GAAK9B,GAAL,CAAU,MAAO,EAAG,MAAO,CAAC,CAAE,EAAC,CAC5C,CAGF,IAAI2C,EACJ,GAAI,KAAK,QAAQ,QAAS,CACxB,IAAMC,EAAS,KAAK,MAAM,MAAMC,GAAW,CACzC,QAAWrB,KAAUF,EACnBuB,EAAQ,KAAKrB,EAAO,KAAM,CACxB,OAAQ,CAAC,OAAO,EAChB,SAAU,KAAK,MAAM,SAAS,SAC9B,SAAU,KAAK,MAAM,SAAS,QAChC,CAAC,CACL,CAAC,EAGDmB,EAAUC,EAAO,OACb,OAAO,KAAKA,EAAO,CAAC,EAAE,UAAU,QAAQ,EACxC,CAAC,CACP,CAGA,OAAOd,EAAA,CACL,MAAO,CAAC,GAAGL,EAAO,OAAO,CAAC,GACvB,OAAOkB,GAAY,aAAe,CAAE,QAAAA,CAAQ,EAEnD,CACF,EX5QA,IAAIG,GAqBJ,SAAeC,GACbC,EACe,QAAAC,EAAA,sBACf,IAAIC,EAAO,UAGX,GAAI,OAAO,QAAW,aAAe,iBAAkB,OAAQ,CAC7D,IAAMC,EAASC,GAA8B,aAAa,EACpD,CAACC,CAAI,EAAIF,EAAO,IAAI,MAAM,SAAS,EAGzCD,EAAOA,EAAK,QAAQ,KAAMG,CAAI,CAChC,CAGA,IAAMC,EAAU,CAAC,EACjB,QAAWC,KAAQP,EAAO,KAAM,CAC9B,OAAQO,EAAM,CAGZ,IAAK,KACHD,EAAQ,KAAK,GAAGJ,CAAI,aAAa,EACjC,MAGF,IAAK,KACL,IAAK,KACHI,EAAQ,KAAK,GAAGJ,CAAI,aAAa,EACjC,KACJ,CAGIK,IAAS,MACXD,EAAQ,KAAK,GAAGJ,CAAI,aAAaK,CAAI,SAAS,CAClD,CAGIP,EAAO,KAAK,OAAS,GACvBM,EAAQ,KAAK,GAAGJ,CAAI,wBAAwB,EAG1CI,EAAQ,SACV,MAAM,cACJ,GAAGJ,CAAI,mCACP,GAAGI,CACL,EACJ,GAaA,SAAsBE,GACpBC,EACwB,QAAAR,EAAA,sBACxB,OAAQQ,EAAQ,KAAM,CAGpB,OACE,aAAMV,GAAqBU,EAAQ,KAAK,MAAM,EAC9CX,GAAQ,IAAIY,EAAOD,EAAQ,IAAI,EACxB,CACL,MACF,EAGF,OACE,IAAME,EAAQF,EAAQ,KACtB,GAAI,CACF,MAAO,CACL,OACA,KAAMX,GAAM,OAAOa,CAAK,CAC1B,CAGF,OAASC,EAAK,CACZ,eAAQ,KAAK,kBAAkBD,CAAK,oCAA+B,EACnE,QAAQ,KAAKC,CAAG,EACT,CACL,OACA,KAAM,CAAE,MAAO,CAAC,CAAE,CACpB,CACF,CAGF,QACE,MAAM,IAAI,UAAU,sBAAsB,CAC9C,CACF,GAOA,KAAK,KAAO,EAAAC,QAGZ,EAAAA,QAAK,MAAM,KAAO,QAAQ,KAG1B,iBAAiB,UAAiBC,GAAMb,EAAA,wBACtC,YAAY,MAAMO,GAAQM,EAAG,IAAI,CAAC,CACpC,EAAC", "names": ["require_lunr", "__commonJSMin", "exports", "module", "lunr", "config", "builder", "global", "message", "obj", "clone", "keys", "key", "val", "docRef", "fieldName", "stringValue", "s", "n", "fieldRef", "elements", "i", "other", "object", "a", "b", "intersection", "element", "posting", "documentCount", "documentsWithTerm", "x", "str", "metadata", "fn", "t", "len", "tokens", "sliceEnd", "sliceStart", "char", "sliceLength", "tokenMetadata", "label", "isRegistered", "serialised", "pipeline", "fnName", "fns", "existingFn", "newFn", "pos", "stackLength", "memo", "j", "result", "k", "token", "index", "start", "end", "pivotPoint", "pivotIndex", "insertIdx", "position", "sumOfSquares", "elementsLength", "otherVector", "dotProduct", "aLen", "bLen", "aVal", "bVal", "output", "step2list", "step3list", "c", "v", "C", "V", "mgr0", "meq1", "mgr1", "s_v", "re_mgr0", "re_mgr1", "re_meq1", "re_s_v", "re_1a", "re2_1a", "re_1b", "re2_1b", "re_1b_2", "re2_1b_2", "re3_1b_2", "re4_1b_2", "re_1c", "re_2", "re_3", "re_4", "re2_4", "re_5", "re_5_1", "re3_5", "porterStemmer", "w", "stem", "suffix", "firstch", "re", "re2", "re3", "re4", "fp", "stopWords", "words", "stopWord", "arr", "clause", "editDistance", "root", "stack", "frame", "noEditNode", "insertionNode", "substitutionNode", "charA", "charB", "transposeNode", "node", "final", "next", "edges", "edge", "labels", "qEdges", "qLen", "nEdges", "nLen", "q", "qEdge", "nEdge", "qNode", "word", "commonPrefix", "nextNode", "downTo", "childKey", "attrs", "queryString", "query", "parser", "matchingFields", "queryVectors", "termFieldCache", "requiredMatches", "prohibitedMatches", "terms", "clauseMatches", "m", "term", "termTokenSet", "expandedTerms", "field", "expandedTerm", "termIndex", "fieldPosting", "matchingDocumentRefs", "termField", "matchingDocumentsSet", "l", "matchingDocumentRef", "matchingFieldRef", "fieldMatch", "allRequiredMatches", "allProhibitedMatches", "matchingFieldRefs", "results", "matches", "fieldVector", "score", "docMatch", "match", "invertedIndex", "fieldVectors", "ref", "serializedIndex", "serializedVectors", "serializedInvertedIndex", "tokenSetBuilder", "tuple", "attributes", "number", "doc", "fields", "extractor", "fieldTerms", "metadataKey", "fieldRefs", "numberOfFields", "accumulator", "documentsWithField", "fieldRefsLength", "termIdfCache", "fieldLength", "termFrequencies", "termsLength", "fieldBoost", "docBoost", "tf", "idf", "scoreWithPrecision", "args", "clonedMetadata", "metadataKeys", "otherMatchData", "allFields", "options", "state", "subSlices", "type", "charCode", "lexer", "lexeme", "completedClause", "errorMessage", "nextLexeme", "possibleFields", "f", "boost", "factory", "import_lunr", "getElement", "selector", "node", "el", "getOptionalElement", "obj", "data", "key", "x", "y", "nodes", "parent", "i", "node", "setupSearchDocumentMap", "docs", "map", "doc", "path", "article", "split", "input", "separator", "fn", "_a", "match", "index", "until", "term", "extract", "input", "fn", "block", "start", "end", "stack", "highlight", "input", "table", "positions", "full", "highlightAll", "inputs", "mapping", "t", "prev", "next", "p", "q", "i", "cursor", "blocks", "a", "b", "index", "block", "group", "slices", "indexes", "start", "end", "length", "slice", "j", "tokenize", "input", "tokens", "inputs", "i", "table", "total", "extract", "block", "type", "start", "end", "_a", "section", "split", "index", "until", "subsection", "segments", "s", "l", "transform", "query", "fn", "term", "parts", "index", "prev", "next", "transformSearchQuery", "query", "transform", "part", "terms", "lexer", "type", "term", "start", "end", "split", "range", "parseSearchQuery", "value", "clause", "getSearchQueryTerms", "_a", "clauses", "result", "t", "segment", "query", "index", "segments", "wordcuts", "i", "j", "stack", "p", "q", "extractor", "table", "name", "doc", "id", "difference", "a", "b", "x", "y", "value", "Search", "config", "docs", "options", "field", "setupSearchDocumentMap", "tokenize", "fns", "lang", "language", "fn", "query", "segment", "transformSearchQuery", "clauses", "parseSearchQuery", "clause", "groups", "item", "ref", "score", "matchData", "__spreadValues", "terms", "getSearchQueryTerms", "positions", "match", "highlightAll", "highlight", "boost", "t", "__spreadProps", "__pow", "items", "result", "suggest", "titles", "builder", "index", "setupSearchLanguages", "config", "__async", "base", "worker", "getElement", "path", "scripts", "lang", "handler", "message", "Search", "query", "err", "lunr", "ev"] } ������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/stylesheets/����������������������������������������0000775�0000000�0000000�00000000000�14753064456�0024276�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/stylesheets/main.8608ea7d.min.css�������������������0000664�0000000�0000000�00000401260�14753064456�0027666�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������@charset "UTF-8";html{-webkit-text-size-adjust:none;-moz-text-size-adjust:none;text-size-adjust:none;box-sizing:border-box}*,:after,:before{box-sizing:inherit}@media (prefers-reduced-motion){*,:after,:before{transition:none!important}}body{margin:0}a,button,input,label{-webkit-tap-highlight-color:transparent}a{color:inherit;text-decoration:none}hr{border:0;box-sizing:initial;display:block;height:.05rem;overflow:visible;padding:0}small{font-size:80%}sub,sup{line-height:1em}img{border-style:none}table{border-collapse:initial;border-spacing:0}td,th{font-weight:400;vertical-align:top}button{background:#0000;border:0;font-family:inherit;font-size:inherit;margin:0;padding:0}input{border:0;outline:none}:root{--md-primary-fg-color:#4051b5;--md-primary-fg-color--light:#5d6cc0;--md-primary-fg-color--dark:#303fa1;--md-primary-bg-color:#fff;--md-primary-bg-color--light:#ffffffb3;--md-accent-fg-color:#526cfe;--md-accent-fg-color--transparent:#526cfe1a;--md-accent-bg-color:#fff;--md-accent-bg-color--light:#ffffffb3}[data-md-color-scheme=default]{color-scheme:light}[data-md-color-scheme=default] img[src$="#gh-dark-mode-only"],[data-md-color-scheme=default] img[src$="#only-dark"]{display:none}:root,[data-md-color-scheme=default]{--md-hue:225deg;--md-default-fg-color:#000000de;--md-default-fg-color--light:#0000008a;--md-default-fg-color--lighter:#00000052;--md-default-fg-color--lightest:#00000012;--md-default-bg-color:#fff;--md-default-bg-color--light:#ffffffb3;--md-default-bg-color--lighter:#ffffff4d;--md-default-bg-color--lightest:#ffffff1f;--md-code-fg-color:#36464e;--md-code-bg-color:#f5f5f5;--md-code-hl-color:#4287ff;--md-code-hl-color--light:#4287ff1a;--md-code-hl-number-color:#d52a2a;--md-code-hl-special-color:#db1457;--md-code-hl-function-color:#a846b9;--md-code-hl-constant-color:#6e59d9;--md-code-hl-keyword-color:#3f6ec6;--md-code-hl-string-color:#1c7d4d;--md-code-hl-name-color:var(--md-code-fg-color);--md-code-hl-operator-color:var(--md-default-fg-color--light);--md-code-hl-punctuation-color:var(--md-default-fg-color--light);--md-code-hl-comment-color:var(--md-default-fg-color--light);--md-code-hl-generic-color:var(--md-default-fg-color--light);--md-code-hl-variable-color:var(--md-default-fg-color--light);--md-typeset-color:var(--md-default-fg-color);--md-typeset-a-color:var(--md-primary-fg-color);--md-typeset-del-color:#f5503d26;--md-typeset-ins-color:#0bd57026;--md-typeset-kbd-color:#fafafa;--md-typeset-kbd-accent-color:#fff;--md-typeset-kbd-border-color:#b8b8b8;--md-typeset-mark-color:#ffff0080;--md-typeset-table-color:#0000001f;--md-typeset-table-color--light:rgba(0,0,0,.035);--md-admonition-fg-color:var(--md-default-fg-color);--md-admonition-bg-color:var(--md-default-bg-color);--md-warning-fg-color:#000000de;--md-warning-bg-color:#ff9;--md-footer-fg-color:#fff;--md-footer-fg-color--light:#ffffffb3;--md-footer-fg-color--lighter:#ffffff73;--md-footer-bg-color:#000000de;--md-footer-bg-color--dark:#00000052;--md-shadow-z1:0 0.2rem 0.5rem #0000000d,0 0 0.05rem #0000001a;--md-shadow-z2:0 0.2rem 0.5rem #0000001a,0 0 0.05rem #00000040;--md-shadow-z3:0 0.2rem 0.5rem #0003,0 0 0.05rem #00000059}.md-icon svg{fill:currentcolor;display:block;height:1.2rem;width:1.2rem}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;--md-text-font-family:var(--md-text-font,_),-apple-system,BlinkMacSystemFont,Helvetica,Arial,sans-serif;--md-code-font-family:var(--md-code-font,_),SFMono-Regular,Consolas,Menlo,monospace}aside,body,input{font-feature-settings:"kern","liga";color:var(--md-typeset-color);font-family:var(--md-text-font-family)}code,kbd,pre{font-feature-settings:"kern";font-family:var(--md-code-font-family)}:root{--md-typeset-table-sort-icon:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18 21-4-4h3V7h-3l4-4 4 4h-3v10h3M2 19v-2h10v2M2 13v-2h7v2M2 7V5h4v2z"/></svg>');--md-typeset-table-sort-icon--asc:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 17h3l-4 4-4-4h3V3h2M2 17h10v2H2M6 5v2H2V5m0 6h7v2H2z"/></svg>');--md-typeset-table-sort-icon--desc:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 7h3l-4-4-4 4h3v14h2M2 17h10v2H2M6 5v2H2V5m0 6h7v2H2z"/></svg>')}.md-typeset{-webkit-print-color-adjust:exact;color-adjust:exact;font-size:.8rem;line-height:1.6;overflow-wrap:break-word}@media print{.md-typeset{font-size:.68rem}}.md-typeset blockquote,.md-typeset dl,.md-typeset figure,.md-typeset ol,.md-typeset pre,.md-typeset ul{margin-bottom:1em;margin-top:1em}.md-typeset h1{color:var(--md-default-fg-color--light);font-size:2em;line-height:1.3;margin:0 0 1.25em}.md-typeset h1,.md-typeset h2{font-weight:300;letter-spacing:-.01em}.md-typeset h2{font-size:1.5625em;line-height:1.4;margin:1.6em 0 .64em}.md-typeset h3{font-size:1.25em;font-weight:400;letter-spacing:-.01em;line-height:1.5;margin:1.6em 0 .8em}.md-typeset h2+h3{margin-top:.8em}.md-typeset h4{font-weight:700;letter-spacing:-.01em;margin:1em 0}.md-typeset h5,.md-typeset h6{color:var(--md-default-fg-color--light);font-size:.8em;font-weight:700;letter-spacing:-.01em;margin:1.25em 0}.md-typeset h5{text-transform:uppercase}.md-typeset h5 code{text-transform:none}.md-typeset hr{border-bottom:.05rem solid var(--md-default-fg-color--lightest);display:flow-root;margin:1.5em 0}.md-typeset a{color:var(--md-typeset-a-color);word-break:break-word}.md-typeset a,.md-typeset a:before{transition:color 125ms}.md-typeset a:focus,.md-typeset a:hover{color:var(--md-accent-fg-color)}.md-typeset a:focus code,.md-typeset a:hover code{background-color:var(--md-accent-fg-color--transparent)}.md-typeset a code{color:currentcolor;transition:background-color 125ms}.md-typeset a.focus-visible{outline-color:var(--md-accent-fg-color);outline-offset:.2rem}.md-typeset code,.md-typeset kbd,.md-typeset pre{color:var(--md-code-fg-color);direction:ltr;font-variant-ligatures:none}@media print{.md-typeset code,.md-typeset kbd,.md-typeset pre{white-space:pre-wrap}}.md-typeset code{background-color:var(--md-code-bg-color);border-radius:.1rem;-webkit-box-decoration-break:clone;box-decoration-break:clone;font-size:.85em;padding:0 .2941176471em;word-break:break-word}.md-typeset code:not(.focus-visible){-webkit-tap-highlight-color:transparent;outline:none}.md-typeset pre{display:flow-root;line-height:1.4;position:relative}.md-typeset pre>code{-webkit-box-decoration-break:slice;box-decoration-break:slice;box-shadow:none;display:block;margin:0;outline-color:var(--md-accent-fg-color);overflow:auto;padding:.7720588235em 1.1764705882em;scrollbar-color:var(--md-default-fg-color--lighter) #0000;scrollbar-width:thin;touch-action:auto;word-break:normal}.md-typeset pre>code:hover{scrollbar-color:var(--md-accent-fg-color) #0000}.md-typeset pre>code::-webkit-scrollbar{height:.2rem;width:.2rem}.md-typeset pre>code::-webkit-scrollbar-thumb{background-color:var(--md-default-fg-color--lighter)}.md-typeset pre>code::-webkit-scrollbar-thumb:hover{background-color:var(--md-accent-fg-color)}.md-typeset kbd{background-color:var(--md-typeset-kbd-color);border-radius:.1rem;box-shadow:0 .1rem 0 .05rem var(--md-typeset-kbd-border-color),0 .1rem 0 var(--md-typeset-kbd-border-color),0 -.1rem .2rem var(--md-typeset-kbd-accent-color) inset;color:var(--md-default-fg-color);display:inline-block;font-size:.75em;padding:0 .6666666667em;vertical-align:text-top;word-break:break-word}.md-typeset mark{background-color:var(--md-typeset-mark-color);-webkit-box-decoration-break:clone;box-decoration-break:clone;color:inherit;word-break:break-word}.md-typeset abbr{border-bottom:.05rem dotted var(--md-default-fg-color--light);cursor:help;text-decoration:none}.md-typeset small{opacity:.75}[dir=ltr] .md-typeset sub,[dir=ltr] .md-typeset sup{margin-left:.078125em}[dir=rtl] .md-typeset sub,[dir=rtl] .md-typeset sup{margin-right:.078125em}[dir=ltr] .md-typeset blockquote{padding-left:.6rem}[dir=rtl] .md-typeset blockquote{padding-right:.6rem}[dir=ltr] .md-typeset blockquote{border-left:.2rem solid var(--md-default-fg-color--lighter)}[dir=rtl] .md-typeset blockquote{border-right:.2rem solid var(--md-default-fg-color--lighter)}.md-typeset blockquote{color:var(--md-default-fg-color--light);margin-left:0;margin-right:0}.md-typeset ul{list-style-type:disc}.md-typeset ul[type]{list-style-type:revert-layer}[dir=ltr] .md-typeset ol,[dir=ltr] .md-typeset ul{margin-left:.625em}[dir=rtl] .md-typeset ol,[dir=rtl] .md-typeset ul{margin-right:.625em}.md-typeset ol,.md-typeset ul{padding:0}.md-typeset ol:not([hidden]),.md-typeset ul:not([hidden]){display:flow-root}.md-typeset ol ol,.md-typeset ul ol{list-style-type:lower-alpha}.md-typeset ol ol ol,.md-typeset ul ol ol{list-style-type:lower-roman}.md-typeset ol ol ol ol,.md-typeset ul ol ol ol{list-style-type:upper-alpha}.md-typeset ol ol ol ol ol,.md-typeset ul ol ol ol ol{list-style-type:upper-roman}.md-typeset ol[type],.md-typeset ul[type]{list-style-type:revert-layer}[dir=ltr] .md-typeset ol li,[dir=ltr] .md-typeset ul li{margin-left:1.25em}[dir=rtl] .md-typeset ol li,[dir=rtl] .md-typeset ul li{margin-right:1.25em}.md-typeset ol li,.md-typeset ul li{margin-bottom:.5em}.md-typeset ol li blockquote,.md-typeset ol li p,.md-typeset ul li blockquote,.md-typeset ul li p{margin:.5em 0}.md-typeset ol li:last-child,.md-typeset ul li:last-child{margin-bottom:0}[dir=ltr] .md-typeset ol li ol,[dir=ltr] .md-typeset ol li ul,[dir=ltr] .md-typeset ul li ol,[dir=ltr] .md-typeset ul li ul{margin-left:.625em}[dir=rtl] .md-typeset ol li ol,[dir=rtl] .md-typeset ol li ul,[dir=rtl] .md-typeset ul li ol,[dir=rtl] .md-typeset ul li ul{margin-right:.625em}.md-typeset ol li ol,.md-typeset ol li ul,.md-typeset ul li ol,.md-typeset ul li ul{margin-bottom:.5em;margin-top:.5em}[dir=ltr] .md-typeset dd{margin-left:1.875em}[dir=rtl] .md-typeset dd{margin-right:1.875em}.md-typeset dd{margin-bottom:1.5em;margin-top:1em}.md-typeset img,.md-typeset svg,.md-typeset video{height:auto;max-width:100%}.md-typeset img[align=left]{margin:1em 1em 1em 0}.md-typeset img[align=right]{margin:1em 0 1em 1em}.md-typeset img[align]:only-child{margin-top:0}.md-typeset figure{display:flow-root;margin:1em auto;max-width:100%;text-align:center;width:-moz-fit-content;width:fit-content}.md-typeset figure img{display:block;margin:0 auto}.md-typeset figcaption{font-style:italic;margin:1em auto;max-width:24rem}.md-typeset iframe{max-width:100%}.md-typeset table:not([class]){background-color:var(--md-default-bg-color);border:.05rem solid var(--md-typeset-table-color);border-radius:.1rem;display:inline-block;font-size:.64rem;max-width:100%;overflow:auto;touch-action:auto}@media print{.md-typeset table:not([class]){display:table}}.md-typeset table:not([class])+*{margin-top:1.5em}.md-typeset table:not([class]) td>:first-child,.md-typeset table:not([class]) th>:first-child{margin-top:0}.md-typeset table:not([class]) td>:last-child,.md-typeset table:not([class]) th>:last-child{margin-bottom:0}.md-typeset table:not([class]) td:not([align]),.md-typeset table:not([class]) th:not([align]){text-align:left}[dir=rtl] .md-typeset table:not([class]) td:not([align]),[dir=rtl] .md-typeset table:not([class]) th:not([align]){text-align:right}.md-typeset table:not([class]) th{font-weight:700;min-width:5rem;padding:.9375em 1.25em;vertical-align:top}.md-typeset table:not([class]) td{border-top:.05rem solid var(--md-typeset-table-color);padding:.9375em 1.25em;vertical-align:top}.md-typeset table:not([class]) tbody tr{transition:background-color 125ms}.md-typeset table:not([class]) tbody tr:hover{background-color:var(--md-typeset-table-color--light);box-shadow:0 .05rem 0 var(--md-default-bg-color) inset}.md-typeset table:not([class]) a{word-break:normal}.md-typeset table th[role=columnheader]{cursor:pointer}[dir=ltr] .md-typeset table th[role=columnheader]:after{margin-left:.5em}[dir=rtl] .md-typeset table th[role=columnheader]:after{margin-right:.5em}.md-typeset table th[role=columnheader]:after{content:"";display:inline-block;height:1.2em;-webkit-mask-image:var(--md-typeset-table-sort-icon);mask-image:var(--md-typeset-table-sort-icon);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;transition:background-color 125ms;vertical-align:text-bottom;width:1.2em}.md-typeset table th[role=columnheader]:hover:after{background-color:var(--md-default-fg-color--lighter)}.md-typeset table th[role=columnheader][aria-sort=ascending]:after{background-color:var(--md-default-fg-color--light);-webkit-mask-image:var(--md-typeset-table-sort-icon--asc);mask-image:var(--md-typeset-table-sort-icon--asc)}.md-typeset table th[role=columnheader][aria-sort=descending]:after{background-color:var(--md-default-fg-color--light);-webkit-mask-image:var(--md-typeset-table-sort-icon--desc);mask-image:var(--md-typeset-table-sort-icon--desc)}.md-typeset__scrollwrap{margin:1em -.8rem;overflow-x:auto;touch-action:auto}.md-typeset__table{display:inline-block;margin-bottom:.5em;padding:0 .8rem}@media print{.md-typeset__table{display:block}}html .md-typeset__table table{display:table;margin:0;overflow:hidden;width:100%}@media screen and (max-width:44.984375em){.md-content__inner>pre{margin:1em -.8rem}.md-content__inner>pre code{border-radius:0}}.md-typeset .md-author{border-radius:100%;display:block;flex-shrink:0;height:1.6rem;overflow:hidden;position:relative;transition:color 125ms,transform 125ms;width:1.6rem}.md-typeset .md-author img{display:block}.md-typeset .md-author--more{background:var(--md-default-fg-color--lightest);color:var(--md-default-fg-color--lighter);font-size:.6rem;font-weight:700;line-height:1.6rem;text-align:center}.md-typeset .md-author--long{height:2.4rem;width:2.4rem}.md-typeset a.md-author{transform:scale(1)}.md-typeset a.md-author img{border-radius:100%;filter:grayscale(100%) opacity(75%);transition:filter 125ms}.md-typeset a.md-author:focus,.md-typeset a.md-author:hover{transform:scale(1.1);z-index:1}.md-typeset a.md-author:focus img,.md-typeset a.md-author:hover img{filter:grayscale(0)}.md-banner{background-color:var(--md-footer-bg-color);color:var(--md-footer-fg-color);overflow:auto}@media print{.md-banner{display:none}}.md-banner--warning{background-color:var(--md-warning-bg-color);color:var(--md-warning-fg-color)}.md-banner__inner{font-size:.7rem;margin:.6rem auto;padding:0 .8rem}[dir=ltr] .md-banner__button{float:right}[dir=rtl] .md-banner__button{float:left}.md-banner__button{color:inherit;cursor:pointer;transition:opacity .25s}.no-js .md-banner__button{display:none}.md-banner__button:hover{opacity:.7}html{font-size:125%;height:100%;overflow-x:hidden}@media screen and (min-width:100em){html{font-size:137.5%}}@media screen and (min-width:125em){html{font-size:150%}}body{background-color:var(--md-default-bg-color);display:flex;flex-direction:column;font-size:.5rem;min-height:100%;position:relative;width:100%}@media print{body{display:block}}@media screen and (max-width:59.984375em){body[data-md-scrolllock]{position:fixed}}.md-grid{margin-left:auto;margin-right:auto;max-width:61rem}.md-container{display:flex;flex-direction:column;flex-grow:1}@media print{.md-container{display:block}}.md-main{flex-grow:1}.md-main__inner{display:flex;height:100%;margin-top:1.5rem}.md-ellipsis{overflow:hidden;text-overflow:ellipsis}.md-toggle{display:none}.md-option{height:0;opacity:0;position:absolute;width:0}.md-option:checked+label:not([hidden]){display:block}.md-option.focus-visible+label{outline-color:var(--md-accent-fg-color);outline-style:auto}.md-skip{background-color:var(--md-default-fg-color);border-radius:.1rem;color:var(--md-default-bg-color);font-size:.64rem;margin:.5rem;opacity:0;outline-color:var(--md-accent-fg-color);padding:.3rem .5rem;position:fixed;transform:translateY(.4rem);z-index:-1}.md-skip:focus{opacity:1;transform:translateY(0);transition:transform .25s cubic-bezier(.4,0,.2,1),opacity 175ms 75ms;z-index:10}@page{margin:25mm}:root{--md-clipboard-icon:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 21H8V7h11m0-2H8a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h11a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2m-3-4H4a2 2 0 0 0-2 2v14h2V3h12z"/></svg>')}.md-clipboard{border-radius:.1rem;color:var(--md-default-fg-color--lightest);cursor:pointer;height:1.5em;outline-color:var(--md-accent-fg-color);outline-offset:.1rem;position:absolute;right:.5em;top:.5em;transition:color .25s;width:1.5em;z-index:1}@media print{.md-clipboard{display:none}}.md-clipboard:not(.focus-visible){-webkit-tap-highlight-color:transparent;outline:none}:hover>.md-clipboard{color:var(--md-default-fg-color--light)}.md-clipboard:focus,.md-clipboard:hover{color:var(--md-accent-fg-color)}.md-clipboard:after{background-color:currentcolor;content:"";display:block;height:1.125em;margin:0 auto;-webkit-mask-image:var(--md-clipboard-icon);mask-image:var(--md-clipboard-icon);-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;width:1.125em}.md-clipboard--inline{cursor:pointer}.md-clipboard--inline code{transition:color .25s,background-color .25s}.md-clipboard--inline:focus code,.md-clipboard--inline:hover code{background-color:var(--md-accent-fg-color--transparent);color:var(--md-accent-fg-color)}.md-typeset .md-code__content{display:grid}@keyframes consent{0%{opacity:0;transform:translateY(100%)}to{opacity:1;transform:translateY(0)}}@keyframes overlay{0%{opacity:0}to{opacity:1}}.md-consent__overlay{animation:overlay .25s both;-webkit-backdrop-filter:blur(.1rem);backdrop-filter:blur(.1rem);background-color:#0000008a;height:100%;opacity:1;position:fixed;top:0;width:100%;z-index:5}.md-consent__inner{animation:consent .5s cubic-bezier(.1,.7,.1,1) both;background-color:var(--md-default-bg-color);border:0;border-radius:.1rem;bottom:0;box-shadow:0 0 .2rem #0000001a,0 .2rem .4rem #0003;max-height:100%;overflow:auto;padding:0;position:fixed;width:100%;z-index:5}.md-consent__form{padding:.8rem}.md-consent__settings{display:none;margin:1em 0}input:checked+.md-consent__settings{display:block}.md-consent__controls{margin-bottom:.8rem}.md-typeset .md-consent__controls .md-button{display:inline}@media screen and (max-width:44.984375em){.md-typeset .md-consent__controls .md-button{display:block;margin-top:.4rem;text-align:center;width:100%}}.md-consent label{cursor:pointer}.md-content{flex-grow:1;min-width:0}.md-content__inner{margin:0 .8rem 1.2rem;padding-top:.6rem}@media screen and (min-width:76.25em){[dir=ltr] .md-sidebar--primary:not([hidden])~.md-content>.md-content__inner{margin-left:1.2rem}[dir=ltr] .md-sidebar--secondary:not([hidden])~.md-content>.md-content__inner,[dir=rtl] .md-sidebar--primary:not([hidden])~.md-content>.md-content__inner{margin-right:1.2rem}[dir=rtl] .md-sidebar--secondary:not([hidden])~.md-content>.md-content__inner{margin-left:1.2rem}}.md-content__inner:before{content:"";display:block;height:.4rem}.md-content__inner>:last-child{margin-bottom:0}[dir=ltr] .md-content__button{float:right}[dir=rtl] .md-content__button{float:left}[dir=ltr] .md-content__button{margin-left:.4rem}[dir=rtl] .md-content__button{margin-right:.4rem}.md-content__button{margin:.4rem 0;padding:0}@media print{.md-content__button{display:none}}.md-typeset .md-content__button{color:var(--md-default-fg-color--lighter)}.md-content__button svg{display:inline;vertical-align:top}[dir=rtl] .md-content__button svg{transform:scaleX(-1)}[dir=ltr] .md-dialog{right:.8rem}[dir=rtl] .md-dialog{left:.8rem}.md-dialog{background-color:var(--md-default-fg-color);border-radius:.1rem;bottom:.8rem;box-shadow:var(--md-shadow-z3);min-width:11.1rem;opacity:0;padding:.4rem .6rem;pointer-events:none;position:fixed;transform:translateY(100%);transition:transform 0ms .4s,opacity .4s;z-index:4}@media print{.md-dialog{display:none}}.md-dialog--active{opacity:1;pointer-events:auto;transform:translateY(0);transition:transform .4s cubic-bezier(.075,.85,.175,1),opacity .4s}.md-dialog__inner{color:var(--md-default-bg-color);font-size:.7rem}.md-feedback{margin:2em 0 1em;text-align:center}.md-feedback fieldset{border:none;margin:0;padding:0}.md-feedback__title{font-weight:700;margin:1em auto}.md-feedback__inner{position:relative}.md-feedback__list{display:flex;flex-wrap:wrap;place-content:baseline center;position:relative}.md-feedback__list:hover .md-icon:not(:disabled){color:var(--md-default-fg-color--lighter)}:disabled .md-feedback__list{min-height:1.8rem}.md-feedback__icon{color:var(--md-default-fg-color--light);cursor:pointer;flex-shrink:0;margin:0 .1rem;transition:color 125ms}.md-feedback__icon:not(:disabled).md-icon:hover{color:var(--md-accent-fg-color)}.md-feedback__icon:disabled{color:var(--md-default-fg-color--lightest);pointer-events:none}.md-feedback__note{opacity:0;position:relative;transform:translateY(.4rem);transition:transform .4s cubic-bezier(.1,.7,.1,1),opacity .15s}.md-feedback__note>*{margin:0 auto;max-width:16rem}:disabled .md-feedback__note{opacity:1;transform:translateY(0)}@media print{.md-feedback{display:none}}.md-footer{background-color:var(--md-footer-bg-color);color:var(--md-footer-fg-color)}@media print{.md-footer{display:none}}.md-footer__inner{justify-content:space-between;overflow:auto;padding:.2rem}.md-footer__inner:not([hidden]){display:flex}.md-footer__link{align-items:end;display:flex;flex-grow:0.01;margin-bottom:.4rem;margin-top:1rem;max-width:100%;outline-color:var(--md-accent-fg-color);overflow:hidden;transition:opacity .25s}.md-footer__link:focus,.md-footer__link:hover{opacity:.7}[dir=rtl] .md-footer__link svg{transform:scaleX(-1)}@media screen and (max-width:44.984375em){.md-footer__link--prev{flex-shrink:0}.md-footer__link--prev .md-footer__title{display:none}}[dir=ltr] .md-footer__link--next{margin-left:auto}[dir=rtl] .md-footer__link--next{margin-right:auto}.md-footer__link--next{text-align:right}[dir=rtl] .md-footer__link--next{text-align:left}.md-footer__title{flex-grow:1;font-size:.9rem;margin-bottom:.7rem;max-width:calc(100% - 2.4rem);padding:0 1rem;white-space:nowrap}.md-footer__button{margin:.2rem;padding:.4rem}.md-footer__direction{font-size:.64rem;opacity:.7}.md-footer-meta{background-color:var(--md-footer-bg-color--dark)}.md-footer-meta__inner{display:flex;flex-wrap:wrap;justify-content:space-between;padding:.2rem}html .md-footer-meta.md-typeset a{color:var(--md-footer-fg-color--light)}html .md-footer-meta.md-typeset a:focus,html .md-footer-meta.md-typeset a:hover{color:var(--md-footer-fg-color)}.md-copyright{color:var(--md-footer-fg-color--lighter);font-size:.64rem;margin:auto .6rem;padding:.4rem 0;width:100%}@media screen and (min-width:45em){.md-copyright{width:auto}}.md-copyright__highlight{color:var(--md-footer-fg-color--light)}.md-social{display:inline-flex;gap:.2rem;margin:0 .4rem;padding:.2rem 0 .6rem}@media screen and (min-width:45em){.md-social{padding:.6rem 0}}.md-social__link{display:inline-block;height:1.6rem;text-align:center;width:1.6rem}.md-social__link:before{line-height:1.9}.md-social__link svg{fill:currentcolor;max-height:.8rem;vertical-align:-25%}.md-typeset .md-button{border:.1rem solid;border-radius:.1rem;color:var(--md-primary-fg-color);cursor:pointer;display:inline-block;font-weight:700;padding:.625em 2em;transition:color 125ms,background-color 125ms,border-color 125ms}.md-typeset .md-button--primary{background-color:var(--md-primary-fg-color);border-color:var(--md-primary-fg-color);color:var(--md-primary-bg-color)}.md-typeset .md-button:focus,.md-typeset .md-button:hover{background-color:var(--md-accent-fg-color);border-color:var(--md-accent-fg-color);color:var(--md-accent-bg-color)}[dir=ltr] .md-typeset .md-input{border-top-left-radius:.1rem}[dir=ltr] .md-typeset .md-input,[dir=rtl] .md-typeset .md-input{border-top-right-radius:.1rem}[dir=rtl] .md-typeset .md-input{border-top-left-radius:.1rem}.md-typeset .md-input{border-bottom:.1rem solid var(--md-default-fg-color--lighter);box-shadow:var(--md-shadow-z1);font-size:.8rem;height:1.8rem;padding:0 .6rem;transition:border .25s,box-shadow .25s}.md-typeset .md-input:focus,.md-typeset .md-input:hover{border-bottom-color:var(--md-accent-fg-color);box-shadow:var(--md-shadow-z2)}.md-typeset .md-input--stretch{width:100%}.md-header{background-color:var(--md-primary-fg-color);box-shadow:0 0 .2rem #0000,0 .2rem .4rem #0000;color:var(--md-primary-bg-color);display:block;left:0;position:sticky;right:0;top:0;z-index:4}@media print{.md-header{display:none}}.md-header[hidden]{transform:translateY(-100%);transition:transform .25s cubic-bezier(.8,0,.6,1),box-shadow .25s}.md-header--shadow{box-shadow:0 0 .2rem #0000001a,0 .2rem .4rem #0003;transition:transform .25s cubic-bezier(.1,.7,.1,1),box-shadow .25s}.md-header__inner{align-items:center;display:flex;padding:0 .2rem}.md-header__button{color:currentcolor;cursor:pointer;margin:.2rem;outline-color:var(--md-accent-fg-color);padding:.4rem;position:relative;transition:opacity .25s;vertical-align:middle;z-index:1}.md-header__button:hover{opacity:.7}.md-header__button:not([hidden]){display:inline-block}.md-header__button:not(.focus-visible){-webkit-tap-highlight-color:transparent;outline:none}.md-header__button.md-logo{margin:.2rem;padding:.4rem}@media screen and (max-width:76.234375em){.md-header__button.md-logo{display:none}}.md-header__button.md-logo img,.md-header__button.md-logo svg{fill:currentcolor;display:block;height:1.2rem;width:auto}@media screen and (min-width:60em){.md-header__button[for=__search]{display:none}}.no-js .md-header__button[for=__search]{display:none}[dir=rtl] .md-header__button[for=__search] svg{transform:scaleX(-1)}@media screen and (min-width:76.25em){.md-header__button[for=__drawer]{display:none}}.md-header__topic{display:flex;max-width:100%;position:absolute;transition:transform .4s cubic-bezier(.1,.7,.1,1),opacity .15s;white-space:nowrap}.md-header__topic+.md-header__topic{opacity:0;pointer-events:none;transform:translateX(1.25rem);transition:transform .4s cubic-bezier(1,.7,.1,.1),opacity .15s;z-index:-1}[dir=rtl] .md-header__topic+.md-header__topic{transform:translateX(-1.25rem)}.md-header__topic:first-child{font-weight:700}[dir=ltr] .md-header__title{margin-left:1rem;margin-right:.4rem}[dir=rtl] .md-header__title{margin-left:.4rem;margin-right:1rem}.md-header__title{flex-grow:1;font-size:.9rem;height:2.4rem;line-height:2.4rem}.md-header__title--active .md-header__topic{opacity:0;pointer-events:none;transform:translateX(-1.25rem);transition:transform .4s cubic-bezier(1,.7,.1,.1),opacity .15s;z-index:-1}[dir=rtl] .md-header__title--active .md-header__topic{transform:translateX(1.25rem)}.md-header__title--active .md-header__topic+.md-header__topic{opacity:1;pointer-events:auto;transform:translateX(0);transition:transform .4s cubic-bezier(.1,.7,.1,1),opacity .15s;z-index:0}.md-header__title>.md-header__ellipsis{height:100%;position:relative;width:100%}.md-header__option{display:flex;flex-shrink:0;max-width:100%;transition:max-width 0ms .25s,opacity .25s .25s;white-space:nowrap}[data-md-toggle=search]:checked~.md-header .md-header__option{max-width:0;opacity:0;transition:max-width 0ms,opacity 0ms}.md-header__option>input{bottom:0}.md-header__source{display:none}@media screen and (min-width:60em){[dir=ltr] .md-header__source{margin-left:1rem}[dir=rtl] .md-header__source{margin-right:1rem}.md-header__source{display:block;max-width:11.7rem;width:11.7rem}}@media screen and (min-width:76.25em){[dir=ltr] .md-header__source{margin-left:1.4rem}[dir=rtl] .md-header__source{margin-right:1.4rem}}.md-meta{color:var(--md-default-fg-color--light);font-size:.7rem;line-height:1.3}.md-meta__list{display:inline-flex;flex-wrap:wrap;list-style:none;margin:0;padding:0}.md-meta__item:not(:last-child):after{content:"·";margin-left:.2rem;margin-right:.2rem}.md-meta__link{color:var(--md-typeset-a-color)}.md-meta__link:focus,.md-meta__link:hover{color:var(--md-accent-fg-color)}.md-draft{background-color:#ff1744;border-radius:.125em;color:#fff;display:inline-block;font-weight:700;padding-left:.5714285714em;padding-right:.5714285714em}:root{--md-nav-icon--prev:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11z"/></svg>');--md-nav-icon--next:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.59 16.58 13.17 12 8.59 7.41 10 6l6 6-6 6z"/></svg>');--md-toc-icon:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 9h14V7H3zm0 4h14v-2H3zm0 4h14v-2H3zm16 0h2v-2h-2zm0-10v2h2V7zm0 6h2v-2h-2z"/></svg>')}.md-nav{font-size:.7rem;line-height:1.3}.md-nav__title{color:var(--md-default-fg-color--light);display:block;font-weight:700;overflow:hidden;padding:0 .6rem;text-overflow:ellipsis}.md-nav__title .md-nav__button{display:none}.md-nav__title .md-nav__button img{height:100%;width:auto}.md-nav__title .md-nav__button.md-logo img,.md-nav__title .md-nav__button.md-logo svg{fill:currentcolor;display:block;height:2.4rem;max-width:100%;object-fit:contain;width:auto}.md-nav__list{list-style:none;margin:0;padding:0}.md-nav__link{align-items:flex-start;display:flex;gap:.4rem;margin-top:.625em;scroll-snap-align:start;transition:color 125ms}.md-nav__link--passed{color:var(--md-default-fg-color--light)}.md-nav__item .md-nav__link--active,.md-nav__item .md-nav__link--active code{color:var(--md-typeset-a-color)}.md-nav__link .md-ellipsis{position:relative}[dir=ltr] .md-nav__link .md-icon:last-child{margin-left:auto}[dir=rtl] .md-nav__link .md-icon:last-child{margin-right:auto}.md-nav__link svg{fill:currentcolor;flex-shrink:0;height:1.3em;position:relative}.md-nav__link[for]:focus,.md-nav__link[for]:hover,.md-nav__link[href]:focus,.md-nav__link[href]:hover{color:var(--md-accent-fg-color);cursor:pointer}.md-nav__link.focus-visible{outline-color:var(--md-accent-fg-color);outline-offset:.2rem}.md-nav--primary .md-nav__link[for=__toc]{display:none}.md-nav--primary .md-nav__link[for=__toc] .md-icon:after{background-color:currentcolor;display:block;height:100%;-webkit-mask-image:var(--md-toc-icon);mask-image:var(--md-toc-icon);width:100%}.md-nav--primary .md-nav__link[for=__toc]~.md-nav{display:none}.md-nav__container>.md-nav__link{margin-top:0}.md-nav__container>.md-nav__link:first-child{flex-grow:1;min-width:0}.md-nav__icon{flex-shrink:0}.md-nav__source{display:none}@media screen and (max-width:76.234375em){.md-nav--primary,.md-nav--primary .md-nav{background-color:var(--md-default-bg-color);display:flex;flex-direction:column;height:100%;left:0;position:absolute;right:0;top:0;z-index:1}.md-nav--primary .md-nav__item,.md-nav--primary .md-nav__title{font-size:.8rem;line-height:1.5}.md-nav--primary .md-nav__title{background-color:var(--md-default-fg-color--lightest);color:var(--md-default-fg-color--light);cursor:pointer;height:5.6rem;line-height:2.4rem;padding:3rem .8rem .2rem;position:relative;white-space:nowrap}[dir=ltr] .md-nav--primary .md-nav__title .md-nav__icon{left:.4rem}[dir=rtl] .md-nav--primary .md-nav__title .md-nav__icon{right:.4rem}.md-nav--primary .md-nav__title .md-nav__icon{display:block;height:1.2rem;margin:.2rem;position:absolute;top:.4rem;width:1.2rem}.md-nav--primary .md-nav__title .md-nav__icon:after{background-color:currentcolor;content:"";display:block;height:100%;-webkit-mask-image:var(--md-nav-icon--prev);mask-image:var(--md-nav-icon--prev);-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;width:100%}.md-nav--primary .md-nav__title~.md-nav__list{background-color:var(--md-default-bg-color);box-shadow:0 .05rem 0 var(--md-default-fg-color--lightest) inset;overflow-y:auto;scroll-snap-type:y mandatory;touch-action:pan-y}.md-nav--primary .md-nav__title~.md-nav__list>:first-child{border-top:0}.md-nav--primary .md-nav__title[for=__drawer]{background-color:var(--md-primary-fg-color);color:var(--md-primary-bg-color);font-weight:700}.md-nav--primary .md-nav__title .md-logo{display:block;left:.2rem;margin:.2rem;padding:.4rem;position:absolute;right:.2rem;top:.2rem}.md-nav--primary .md-nav__list{flex:1}.md-nav--primary .md-nav__item{border-top:.05rem solid var(--md-default-fg-color--lightest)}.md-nav--primary .md-nav__item--active>.md-nav__link{color:var(--md-typeset-a-color)}.md-nav--primary .md-nav__item--active>.md-nav__link:focus,.md-nav--primary .md-nav__item--active>.md-nav__link:hover{color:var(--md-accent-fg-color)}.md-nav--primary .md-nav__link{margin-top:0;padding:.6rem .8rem}.md-nav--primary .md-nav__link svg{margin-top:.1em}.md-nav--primary .md-nav__link>.md-nav__link{padding:0}[dir=ltr] .md-nav--primary .md-nav__link .md-nav__icon{margin-right:-.2rem}[dir=rtl] .md-nav--primary .md-nav__link .md-nav__icon{margin-left:-.2rem}.md-nav--primary .md-nav__link .md-nav__icon{font-size:1.2rem;height:1.2rem;width:1.2rem}.md-nav--primary .md-nav__link .md-nav__icon:after{background-color:currentcolor;content:"";display:block;height:100%;-webkit-mask-image:var(--md-nav-icon--next);mask-image:var(--md-nav-icon--next);-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;width:100%}[dir=rtl] .md-nav--primary .md-nav__icon:after{transform:scale(-1)}.md-nav--primary .md-nav--secondary .md-nav{background-color:initial;position:static}[dir=ltr] .md-nav--primary .md-nav--secondary .md-nav .md-nav__link{padding-left:1.4rem}[dir=rtl] .md-nav--primary .md-nav--secondary .md-nav .md-nav__link{padding-right:1.4rem}[dir=ltr] .md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav__link{padding-left:2rem}[dir=rtl] .md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav__link{padding-right:2rem}[dir=ltr] .md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav__link{padding-left:2.6rem}[dir=rtl] .md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav__link{padding-right:2.6rem}[dir=ltr] .md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav .md-nav__link{padding-left:3.2rem}[dir=rtl] .md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav .md-nav__link{padding-right:3.2rem}.md-nav--secondary{background-color:initial}.md-nav__toggle~.md-nav{display:flex;opacity:0;transform:translateX(100%);transition:transform .25s cubic-bezier(.8,0,.6,1),opacity 125ms 50ms}[dir=rtl] .md-nav__toggle~.md-nav{transform:translateX(-100%)}.md-nav__toggle:checked~.md-nav{opacity:1;transform:translateX(0);transition:transform .25s cubic-bezier(.4,0,.2,1),opacity 125ms 125ms}.md-nav__toggle:checked~.md-nav>.md-nav__list{-webkit-backface-visibility:hidden;backface-visibility:hidden}}@media screen and (max-width:59.984375em){.md-nav--primary .md-nav__link[for=__toc]{display:flex}.md-nav--primary .md-nav__link[for=__toc] .md-icon:after{content:""}.md-nav--primary .md-nav__link[for=__toc]+.md-nav__link{display:none}.md-nav--primary .md-nav__link[for=__toc]~.md-nav{display:flex}.md-nav__source{background-color:var(--md-primary-fg-color--dark);color:var(--md-primary-bg-color);display:block;padding:0 .2rem}}@media screen and (min-width:60em) and (max-width:76.234375em){.md-nav--integrated .md-nav__link[for=__toc]{display:flex}.md-nav--integrated .md-nav__link[for=__toc] .md-icon:after{content:""}.md-nav--integrated .md-nav__link[for=__toc]+.md-nav__link{display:none}.md-nav--integrated .md-nav__link[for=__toc]~.md-nav{display:flex}}@media screen and (min-width:60em){.md-nav{margin-bottom:-.4rem}.md-nav--secondary .md-nav__title{background:var(--md-default-bg-color);box-shadow:0 0 .4rem .4rem var(--md-default-bg-color);position:sticky;top:0;z-index:1}.md-nav--secondary .md-nav__title[for=__toc]{scroll-snap-align:start}.md-nav--secondary .md-nav__title .md-nav__icon{display:none}[dir=ltr] .md-nav--secondary .md-nav__list{padding-left:.6rem}[dir=rtl] .md-nav--secondary .md-nav__list{padding-right:.6rem}.md-nav--secondary .md-nav__list{padding-bottom:.4rem}[dir=ltr] .md-nav--secondary .md-nav__item>.md-nav__link{margin-right:.4rem}[dir=rtl] .md-nav--secondary .md-nav__item>.md-nav__link{margin-left:.4rem}}@media screen and (min-width:76.25em){.md-nav{margin-bottom:-.4rem;transition:max-height .25s cubic-bezier(.86,0,.07,1)}.md-nav--primary .md-nav__title{background:var(--md-default-bg-color);box-shadow:0 0 .4rem .4rem var(--md-default-bg-color);position:sticky;top:0;z-index:1}.md-nav--primary .md-nav__title[for=__drawer]{scroll-snap-align:start}.md-nav--primary .md-nav__title .md-nav__icon{display:none}[dir=ltr] .md-nav--primary .md-nav__list{padding-left:.6rem}[dir=rtl] .md-nav--primary .md-nav__list{padding-right:.6rem}.md-nav--primary .md-nav__list{padding-bottom:.4rem}[dir=ltr] .md-nav--primary .md-nav__item>.md-nav__link{margin-right:.4rem}[dir=rtl] .md-nav--primary .md-nav__item>.md-nav__link{margin-left:.4rem}.md-nav__toggle~.md-nav{display:grid;grid-template-rows:minmax(.4rem,0fr);opacity:0;transition:grid-template-rows .25s cubic-bezier(.86,0,.07,1),opacity .25s,visibility 0ms .25s;visibility:collapse}.md-nav__toggle~.md-nav>.md-nav__list{overflow:hidden}.md-nav__toggle.md-toggle--indeterminate~.md-nav,.md-nav__toggle:checked~.md-nav{grid-template-rows:minmax(.4rem,1fr);opacity:1;transition:grid-template-rows .25s cubic-bezier(.86,0,.07,1),opacity .15s .1s,visibility 0ms;visibility:visible}.md-nav__toggle.md-toggle--indeterminate~.md-nav{transition:none}.md-nav__item--nested>.md-nav>.md-nav__title{display:none}.md-nav__item--section{display:block;margin:1.25em 0}.md-nav__item--section:last-child{margin-bottom:0}.md-nav__item--section>.md-nav__link{font-weight:700}.md-nav__item--section>.md-nav__link[for]{color:var(--md-default-fg-color--light)}.md-nav__item--section>.md-nav__link:not(.md-nav__container){pointer-events:none}.md-nav__item--section>.md-nav__link .md-icon,.md-nav__item--section>.md-nav__link>[for]{display:none}[dir=ltr] .md-nav__item--section>.md-nav{margin-left:-.6rem}[dir=rtl] .md-nav__item--section>.md-nav{margin-right:-.6rem}.md-nav__item--section>.md-nav{display:block;opacity:1;visibility:visible}.md-nav__item--section>.md-nav>.md-nav__list>.md-nav__item{padding:0}.md-nav__icon{border-radius:100%;height:.9rem;transition:background-color .25s;width:.9rem}.md-nav__icon:hover{background-color:var(--md-accent-fg-color--transparent)}.md-nav__icon:after{background-color:currentcolor;border-radius:100%;content:"";display:inline-block;height:100%;-webkit-mask-image:var(--md-nav-icon--next);mask-image:var(--md-nav-icon--next);-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;transition:transform .25s;vertical-align:-.1rem;width:100%}[dir=rtl] .md-nav__icon:after{transform:rotate(180deg)}.md-nav__item--nested .md-nav__toggle:checked~.md-nav__link .md-nav__icon:after,.md-nav__item--nested .md-toggle--indeterminate~.md-nav__link .md-nav__icon:after{transform:rotate(90deg)}.md-nav--lifted>.md-nav__list>.md-nav__item,.md-nav--lifted>.md-nav__title{display:none}.md-nav--lifted>.md-nav__list>.md-nav__item--active{display:block}.md-nav--lifted>.md-nav__list>.md-nav__item--active>.md-nav__link{background:var(--md-default-bg-color);box-shadow:0 0 .4rem .4rem var(--md-default-bg-color);margin-top:0;position:sticky;top:0;z-index:1}.md-nav--lifted>.md-nav__list>.md-nav__item--active>.md-nav__link:not(.md-nav__container){pointer-events:none}.md-nav--lifted>.md-nav__list>.md-nav__item--active.md-nav__item--section{margin:0}[dir=ltr] .md-nav--lifted>.md-nav__list>.md-nav__item>.md-nav:not(.md-nav--secondary){margin-left:-.6rem}[dir=rtl] .md-nav--lifted>.md-nav__list>.md-nav__item>.md-nav:not(.md-nav--secondary){margin-right:-.6rem}.md-nav--lifted>.md-nav__list>.md-nav__item>[for]{color:var(--md-default-fg-color--light)}.md-nav--lifted .md-nav[data-md-level="1"]{grid-template-rows:minmax(.4rem,1fr);opacity:1;visibility:visible}[dir=ltr] .md-nav--integrated>.md-nav__list>.md-nav__item--active .md-nav--secondary{border-left:.05rem solid var(--md-primary-fg-color)}[dir=rtl] .md-nav--integrated>.md-nav__list>.md-nav__item--active .md-nav--secondary{border-right:.05rem solid var(--md-primary-fg-color)}.md-nav--integrated>.md-nav__list>.md-nav__item--active .md-nav--secondary{display:block;margin-bottom:1.25em;opacity:1;visibility:visible}.md-nav--integrated>.md-nav__list>.md-nav__item--active .md-nav--secondary>.md-nav__list{overflow:visible;padding-bottom:0}.md-nav--integrated>.md-nav__list>.md-nav__item--active .md-nav--secondary>.md-nav__title{display:none}}.md-pagination{font-size:.8rem;font-weight:700;gap:.4rem}.md-pagination,.md-pagination>*{align-items:center;display:flex;justify-content:center}.md-pagination>*{border-radius:.2rem;height:1.8rem;min-width:1.8rem;text-align:center}.md-pagination__current{background-color:var(--md-default-fg-color--lightest);color:var(--md-default-fg-color--light)}.md-pagination__link{transition:color 125ms,background-color 125ms}.md-pagination__link:focus,.md-pagination__link:hover{background-color:var(--md-accent-fg-color--transparent);color:var(--md-accent-fg-color)}.md-pagination__link:focus svg,.md-pagination__link:hover svg{color:var(--md-accent-fg-color)}.md-pagination__link.focus-visible{outline-color:var(--md-accent-fg-color);outline-offset:.2rem}.md-pagination__link svg{fill:currentcolor;color:var(--md-default-fg-color--lighter);display:block;max-height:100%;width:1.2rem}.md-post__back{border-bottom:.05rem solid var(--md-default-fg-color--lightest);margin-bottom:1.2rem;padding-bottom:1.2rem}@media screen and (max-width:76.234375em){.md-post__back{display:none}}[dir=rtl] .md-post__back svg{transform:scaleX(-1)}.md-post__authors{display:flex;flex-direction:column;gap:.6rem;margin:0 .6rem 1.2rem}.md-post .md-post__meta a{transition:color 125ms}.md-post .md-post__meta a:focus,.md-post .md-post__meta a:hover{color:var(--md-accent-fg-color)}.md-post__title{color:var(--md-default-fg-color--light);font-weight:700}.md-post--excerpt{margin-bottom:3.2rem}.md-post--excerpt .md-post__header{align-items:center;display:flex;gap:.6rem;min-height:1.6rem}.md-post--excerpt .md-post__authors{align-items:center;display:inline-flex;flex-direction:row;gap:.2rem;margin:0;min-height:2.4rem}[dir=ltr] .md-post--excerpt .md-post__meta .md-meta__list{margin-right:.4rem}[dir=rtl] .md-post--excerpt .md-post__meta .md-meta__list{margin-left:.4rem}.md-post--excerpt .md-post__content>:first-child{--md-scroll-margin:6rem;margin-top:0}.md-post>.md-nav--secondary{margin:1em 0}.md-profile{align-items:center;display:flex;font-size:.7rem;gap:.6rem;line-height:1.4;width:100%}.md-profile__description{flex-grow:1}.md-content--post{display:flex}@media screen and (max-width:76.234375em){.md-content--post{flex-flow:column-reverse}}.md-content--post>.md-content__inner{flex-grow:1;min-width:0}@media screen and (min-width:76.25em){[dir=ltr] .md-content--post>.md-content__inner{margin-left:1.2rem}[dir=rtl] .md-content--post>.md-content__inner{margin-right:1.2rem}}@media screen and (max-width:76.234375em){.md-sidebar.md-sidebar--post{padding:0;position:static;width:100%}.md-sidebar.md-sidebar--post .md-sidebar__scrollwrap{overflow:visible}.md-sidebar.md-sidebar--post .md-sidebar__inner{padding:0}.md-sidebar.md-sidebar--post .md-post__meta{margin-left:.6rem;margin-right:.6rem}.md-sidebar.md-sidebar--post .md-nav__item{border:none;display:inline}.md-sidebar.md-sidebar--post .md-nav__list{display:inline-flex;flex-wrap:wrap;gap:.6rem;padding-bottom:.6rem;padding-top:.6rem}.md-sidebar.md-sidebar--post .md-nav__link{padding:0}.md-sidebar.md-sidebar--post .md-nav{height:auto;margin-bottom:0;position:static}}:root{--md-progress-value:0;--md-progress-delay:400ms}.md-progress{background:var(--md-primary-bg-color);height:.075rem;opacity:min(clamp(0,var(--md-progress-value),1),clamp(0,100 - var(--md-progress-value),1));position:fixed;top:0;transform:scaleX(calc(var(--md-progress-value)*1%));transform-origin:left;transition:transform .5s cubic-bezier(.19,1,.22,1),opacity .25s var(--md-progress-delay);width:100%;z-index:4}:root{--md-search-result-icon:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h7c-.41-.25-.8-.56-1.14-.9-.33-.33-.61-.7-.86-1.1H6V4h7v5h5v1.18c.71.16 1.39.43 2 .82V8zm6.31 16.9c1.33-2.11.69-4.9-1.4-6.22-2.11-1.33-4.91-.68-6.22 1.4-1.34 2.11-.69 4.89 1.4 6.22 1.46.93 3.32.93 4.79.02L22 23.39 23.39 22zm-3.81.1a2.5 2.5 0 0 1-2.5-2.5 2.5 2.5 0 0 1 2.5-2.5 2.5 2.5 0 0 1 2.5 2.5 2.5 2.5 0 0 1-2.5 2.5"/></svg>')}.md-search{position:relative}@media screen and (min-width:60em){.md-search{padding:.2rem 0}}.no-js .md-search{display:none}.md-search__overlay{opacity:0;z-index:1}@media screen and (max-width:59.984375em){[dir=ltr] .md-search__overlay{left:-2.2rem}[dir=rtl] .md-search__overlay{right:-2.2rem}.md-search__overlay{background-color:var(--md-default-bg-color);border-radius:1rem;height:2rem;overflow:hidden;pointer-events:none;position:absolute;top:-1rem;transform-origin:center;transition:transform .3s .1s,opacity .2s .2s;width:2rem}[data-md-toggle=search]:checked~.md-header .md-search__overlay{opacity:1;transition:transform .4s,opacity .1s}}@media screen and (min-width:60em){[dir=ltr] .md-search__overlay{left:0}[dir=rtl] .md-search__overlay{right:0}.md-search__overlay{background-color:#0000008a;cursor:pointer;height:0;position:fixed;top:0;transition:width 0ms .25s,height 0ms .25s,opacity .25s;width:0}[data-md-toggle=search]:checked~.md-header .md-search__overlay{height:200vh;opacity:1;transition:width 0ms,height 0ms,opacity .25s;width:100%}}@media screen and (max-width:29.984375em){[data-md-toggle=search]:checked~.md-header .md-search__overlay{transform:scale(45)}}@media screen and (min-width:30em) and (max-width:44.984375em){[data-md-toggle=search]:checked~.md-header .md-search__overlay{transform:scale(60)}}@media screen and (min-width:45em) and (max-width:59.984375em){[data-md-toggle=search]:checked~.md-header .md-search__overlay{transform:scale(75)}}.md-search__inner{-webkit-backface-visibility:hidden;backface-visibility:hidden}@media screen and (max-width:59.984375em){[dir=ltr] .md-search__inner{left:0}[dir=rtl] .md-search__inner{right:0}.md-search__inner{height:0;opacity:0;overflow:hidden;position:fixed;top:0;transform:translateX(5%);transition:width 0ms .3s,height 0ms .3s,transform .15s cubic-bezier(.4,0,.2,1) .15s,opacity .15s .15s;width:0;z-index:2}[dir=rtl] .md-search__inner{transform:translateX(-5%)}[data-md-toggle=search]:checked~.md-header .md-search__inner{height:100%;opacity:1;transform:translateX(0);transition:width 0ms 0ms,height 0ms 0ms,transform .15s cubic-bezier(.1,.7,.1,1) .15s,opacity .15s .15s;width:100%}}@media screen and (min-width:60em){[dir=ltr] .md-search__inner{float:right}[dir=rtl] .md-search__inner{float:left}.md-search__inner{padding:.1rem 0;position:relative;transition:width .25s cubic-bezier(.1,.7,.1,1);width:11.7rem}}@media screen and (min-width:60em) and (max-width:76.234375em){[data-md-toggle=search]:checked~.md-header .md-search__inner{width:23.4rem}}@media screen and (min-width:76.25em){[data-md-toggle=search]:checked~.md-header .md-search__inner{width:34.4rem}}.md-search__form{background-color:var(--md-default-bg-color);box-shadow:0 0 .6rem #0000;height:2.4rem;position:relative;transition:color .25s,background-color .25s;z-index:2}@media screen and (min-width:60em){.md-search__form{background-color:#00000042;border-radius:.1rem;height:1.8rem}.md-search__form:hover{background-color:#ffffff1f}}[data-md-toggle=search]:checked~.md-header .md-search__form{background-color:var(--md-default-bg-color);border-radius:.1rem .1rem 0 0;box-shadow:0 0 .6rem #00000012;color:var(--md-default-fg-color)}[dir=ltr] .md-search__input{padding-left:3.6rem;padding-right:2.2rem}[dir=rtl] .md-search__input{padding-left:2.2rem;padding-right:3.6rem}.md-search__input{background:#0000;font-size:.9rem;height:100%;position:relative;text-overflow:ellipsis;width:100%;z-index:2}.md-search__input::placeholder{transition:color .25s}.md-search__input::placeholder,.md-search__input~.md-search__icon{color:var(--md-default-fg-color--light)}.md-search__input::-ms-clear{display:none}@media screen and (max-width:59.984375em){.md-search__input{font-size:.9rem;height:2.4rem;width:100%}}@media screen and (min-width:60em){[dir=ltr] .md-search__input{padding-left:2.2rem}[dir=rtl] .md-search__input{padding-right:2.2rem}.md-search__input{color:inherit;font-size:.8rem}.md-search__input::placeholder{color:var(--md-primary-bg-color--light)}.md-search__input+.md-search__icon{color:var(--md-primary-bg-color)}[data-md-toggle=search]:checked~.md-header .md-search__input{text-overflow:clip}[data-md-toggle=search]:checked~.md-header .md-search__input+.md-search__icon{color:var(--md-default-fg-color--light)}[data-md-toggle=search]:checked~.md-header .md-search__input::placeholder{color:#0000}}.md-search__icon{cursor:pointer;display:inline-block;height:1.2rem;transition:color .25s,opacity .25s;width:1.2rem}.md-search__icon:hover{opacity:.7}[dir=ltr] .md-search__icon[for=__search]{left:.5rem}[dir=rtl] .md-search__icon[for=__search]{right:.5rem}.md-search__icon[for=__search]{position:absolute;top:.3rem;z-index:2}[dir=rtl] .md-search__icon[for=__search] svg{transform:scaleX(-1)}@media screen and (max-width:59.984375em){[dir=ltr] .md-search__icon[for=__search]{left:.8rem}[dir=rtl] .md-search__icon[for=__search]{right:.8rem}.md-search__icon[for=__search]{top:.6rem}.md-search__icon[for=__search] svg:first-child{display:none}}@media screen and (min-width:60em){.md-search__icon[for=__search]{pointer-events:none}.md-search__icon[for=__search] svg:last-child{display:none}}[dir=ltr] .md-search__options{right:.5rem}[dir=rtl] .md-search__options{left:.5rem}.md-search__options{pointer-events:none;position:absolute;top:.3rem;z-index:2}@media screen and (max-width:59.984375em){[dir=ltr] .md-search__options{right:.8rem}[dir=rtl] .md-search__options{left:.8rem}.md-search__options{top:.6rem}}[dir=ltr] .md-search__options>.md-icon{margin-left:.2rem}[dir=rtl] .md-search__options>.md-icon{margin-right:.2rem}.md-search__options>.md-icon{color:var(--md-default-fg-color--light);opacity:0;transform:scale(.75);transition:transform .15s cubic-bezier(.1,.7,.1,1),opacity .15s}.md-search__options>.md-icon:not(.focus-visible){-webkit-tap-highlight-color:transparent;outline:none}[data-md-toggle=search]:checked~.md-header .md-search__input:valid~.md-search__options>.md-icon{opacity:1;pointer-events:auto;transform:scale(1)}[data-md-toggle=search]:checked~.md-header .md-search__input:valid~.md-search__options>.md-icon:hover{opacity:.7}[dir=ltr] .md-search__suggest{padding-left:3.6rem;padding-right:2.2rem}[dir=rtl] .md-search__suggest{padding-left:2.2rem;padding-right:3.6rem}.md-search__suggest{align-items:center;color:var(--md-default-fg-color--lighter);display:flex;font-size:.9rem;height:100%;opacity:0;position:absolute;top:0;transition:opacity 50ms;white-space:nowrap;width:100%}@media screen and (min-width:60em){[dir=ltr] .md-search__suggest{padding-left:2.2rem}[dir=rtl] .md-search__suggest{padding-right:2.2rem}.md-search__suggest{font-size:.8rem}}[data-md-toggle=search]:checked~.md-header .md-search__suggest{opacity:1;transition:opacity .3s .1s}[dir=ltr] .md-search__output{border-bottom-left-radius:.1rem}[dir=ltr] .md-search__output,[dir=rtl] .md-search__output{border-bottom-right-radius:.1rem}[dir=rtl] .md-search__output{border-bottom-left-radius:.1rem}.md-search__output{overflow:hidden;position:absolute;width:100%;z-index:1}@media screen and (max-width:59.984375em){.md-search__output{bottom:0;top:2.4rem}}@media screen and (min-width:60em){.md-search__output{opacity:0;top:1.9rem;transition:opacity .4s}[data-md-toggle=search]:checked~.md-header .md-search__output{box-shadow:var(--md-shadow-z3);opacity:1}}.md-search__scrollwrap{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:var(--md-default-bg-color);height:100%;overflow-y:auto;touch-action:pan-y}@media (-webkit-max-device-pixel-ratio:1),(max-resolution:1dppx){.md-search__scrollwrap{transform:translateZ(0)}}@media screen and (min-width:60em) and (max-width:76.234375em){.md-search__scrollwrap{width:23.4rem}}@media screen and (min-width:76.25em){.md-search__scrollwrap{width:34.4rem}}@media screen and (min-width:60em){.md-search__scrollwrap{max-height:0;scrollbar-color:var(--md-default-fg-color--lighter) #0000;scrollbar-width:thin}[data-md-toggle=search]:checked~.md-header .md-search__scrollwrap{max-height:75vh}.md-search__scrollwrap:hover{scrollbar-color:var(--md-accent-fg-color) #0000}.md-search__scrollwrap::-webkit-scrollbar{height:.2rem;width:.2rem}.md-search__scrollwrap::-webkit-scrollbar-thumb{background-color:var(--md-default-fg-color--lighter)}.md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:var(--md-accent-fg-color)}}.md-search-result{color:var(--md-default-fg-color);word-break:break-word}.md-search-result__meta{background-color:var(--md-default-fg-color--lightest);color:var(--md-default-fg-color--light);font-size:.64rem;line-height:1.8rem;padding:0 .8rem;scroll-snap-align:start}@media screen and (min-width:60em){[dir=ltr] .md-search-result__meta{padding-left:2.2rem}[dir=rtl] .md-search-result__meta{padding-right:2.2rem}}.md-search-result__list{list-style:none;margin:0;padding:0;-webkit-user-select:none;user-select:none}.md-search-result__item{box-shadow:0 -.05rem var(--md-default-fg-color--lightest)}.md-search-result__item:first-child{box-shadow:none}.md-search-result__link{display:block;outline:none;scroll-snap-align:start;transition:background-color .25s}.md-search-result__link:focus,.md-search-result__link:hover{background-color:var(--md-accent-fg-color--transparent)}.md-search-result__link:last-child p:last-child{margin-bottom:.6rem}.md-search-result__more>summary{cursor:pointer;display:block;outline:none;position:sticky;scroll-snap-align:start;top:0;z-index:1}.md-search-result__more>summary::marker{display:none}.md-search-result__more>summary::-webkit-details-marker{display:none}.md-search-result__more>summary>div{color:var(--md-typeset-a-color);font-size:.64rem;padding:.75em .8rem;transition:color .25s,background-color .25s}@media screen and (min-width:60em){[dir=ltr] .md-search-result__more>summary>div{padding-left:2.2rem}[dir=rtl] .md-search-result__more>summary>div{padding-right:2.2rem}}.md-search-result__more>summary:focus>div,.md-search-result__more>summary:hover>div{background-color:var(--md-accent-fg-color--transparent);color:var(--md-accent-fg-color)}.md-search-result__more[open]>summary{background-color:var(--md-default-bg-color)}.md-search-result__article{overflow:hidden;padding:0 .8rem;position:relative}@media screen and (min-width:60em){[dir=ltr] .md-search-result__article{padding-left:2.2rem}[dir=rtl] .md-search-result__article{padding-right:2.2rem}}[dir=ltr] .md-search-result__icon{left:0}[dir=rtl] .md-search-result__icon{right:0}.md-search-result__icon{color:var(--md-default-fg-color--light);height:1.2rem;margin:.5rem;position:absolute;width:1.2rem}@media screen and (max-width:59.984375em){.md-search-result__icon{display:none}}.md-search-result__icon:after{background-color:currentcolor;content:"";display:inline-block;height:100%;-webkit-mask-image:var(--md-search-result-icon);mask-image:var(--md-search-result-icon);-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;width:100%}[dir=rtl] .md-search-result__icon:after{transform:scaleX(-1)}.md-search-result .md-typeset{color:var(--md-default-fg-color--light);font-size:.64rem;line-height:1.6}.md-search-result .md-typeset h1{color:var(--md-default-fg-color);font-size:.8rem;font-weight:400;line-height:1.4;margin:.55rem 0}.md-search-result .md-typeset h1 mark{text-decoration:none}.md-search-result .md-typeset h2{color:var(--md-default-fg-color);font-size:.64rem;font-weight:700;line-height:1.6;margin:.5em 0}.md-search-result .md-typeset h2 mark{text-decoration:none}.md-search-result__terms{color:var(--md-default-fg-color);display:block;font-size:.64rem;font-style:italic;margin:.5em 0}.md-search-result mark{background-color:initial;color:var(--md-accent-fg-color);text-decoration:underline}.md-select{position:relative;z-index:1}.md-select__inner{background-color:var(--md-default-bg-color);border-radius:.1rem;box-shadow:var(--md-shadow-z2);color:var(--md-default-fg-color);left:50%;margin-top:.2rem;max-height:0;opacity:0;position:absolute;top:calc(100% - .2rem);transform:translate3d(-50%,.3rem,0);transition:transform .25s 375ms,opacity .25s .25s,max-height 0ms .5s}.md-select:focus-within .md-select__inner,.md-select:hover .md-select__inner{max-height:10rem;opacity:1;transform:translate3d(-50%,0,0);transition:transform .25s cubic-bezier(.1,.7,.1,1),opacity .25s,max-height 0ms}.md-select__inner:after{border-bottom:.2rem solid #0000;border-bottom-color:var(--md-default-bg-color);border-left:.2rem solid #0000;border-right:.2rem solid #0000;border-top:0;content:"";height:0;left:50%;margin-left:-.2rem;margin-top:-.2rem;position:absolute;top:0;width:0}.md-select__list{border-radius:.1rem;font-size:.8rem;list-style-type:none;margin:0;max-height:inherit;overflow:auto;padding:0}.md-select__item{line-height:1.8rem}[dir=ltr] .md-select__link{padding-left:.6rem;padding-right:1.2rem}[dir=rtl] .md-select__link{padding-left:1.2rem;padding-right:.6rem}.md-select__link{cursor:pointer;display:block;outline:none;scroll-snap-align:start;transition:background-color .25s,color .25s;width:100%}.md-select__link:focus,.md-select__link:hover{color:var(--md-accent-fg-color)}.md-select__link:focus{background-color:var(--md-default-fg-color--lightest)}.md-sidebar{align-self:flex-start;flex-shrink:0;padding:1.2rem 0;position:sticky;top:2.4rem;width:12.1rem}@media print{.md-sidebar{display:none}}@media screen and (max-width:76.234375em){[dir=ltr] .md-sidebar--primary{left:-12.1rem}[dir=rtl] .md-sidebar--primary{right:-12.1rem}.md-sidebar--primary{background-color:var(--md-default-bg-color);display:block;height:100%;position:fixed;top:0;transform:translateX(0);transition:transform .25s cubic-bezier(.4,0,.2,1),box-shadow .25s;width:12.1rem;z-index:5}[data-md-toggle=drawer]:checked~.md-container .md-sidebar--primary{box-shadow:var(--md-shadow-z3);transform:translateX(12.1rem)}[dir=rtl] [data-md-toggle=drawer]:checked~.md-container .md-sidebar--primary{transform:translateX(-12.1rem)}.md-sidebar--primary .md-sidebar__scrollwrap{bottom:0;left:0;margin:0;overflow:hidden;position:absolute;right:0;scroll-snap-type:none;top:0}}@media screen and (min-width:76.25em){.md-sidebar{height:0}.no-js .md-sidebar{height:auto}.md-header--lifted~.md-container .md-sidebar{top:4.8rem}}.md-sidebar--secondary{display:none;order:2}@media screen and (min-width:60em){.md-sidebar--secondary{height:0}.no-js .md-sidebar--secondary{height:auto}.md-sidebar--secondary:not([hidden]){display:block}.md-sidebar--secondary .md-sidebar__scrollwrap{touch-action:pan-y}}.md-sidebar__scrollwrap{scrollbar-gutter:stable;-webkit-backface-visibility:hidden;backface-visibility:hidden;margin:0 .2rem;overflow-y:auto;scrollbar-color:var(--md-default-fg-color--lighter) #0000;scrollbar-width:thin}.md-sidebar__scrollwrap::-webkit-scrollbar{height:.2rem;width:.2rem}.md-sidebar__scrollwrap:focus-within,.md-sidebar__scrollwrap:hover{scrollbar-color:var(--md-accent-fg-color) #0000}.md-sidebar__scrollwrap:focus-within::-webkit-scrollbar-thumb,.md-sidebar__scrollwrap:hover::-webkit-scrollbar-thumb{background-color:var(--md-default-fg-color--lighter)}.md-sidebar__scrollwrap:focus-within::-webkit-scrollbar-thumb:hover,.md-sidebar__scrollwrap:hover::-webkit-scrollbar-thumb:hover{background-color:var(--md-accent-fg-color)}@supports selector(::-webkit-scrollbar){.md-sidebar__scrollwrap{scrollbar-gutter:auto}[dir=ltr] .md-sidebar__inner{padding-right:calc(100% - 11.5rem)}[dir=rtl] .md-sidebar__inner{padding-left:calc(100% - 11.5rem)}}@media screen and (max-width:76.234375em){.md-overlay{background-color:#0000008a;height:0;opacity:0;position:fixed;top:0;transition:width 0ms .25s,height 0ms .25s,opacity .25s;width:0;z-index:5}[data-md-toggle=drawer]:checked~.md-overlay{height:100%;opacity:1;transition:width 0ms,height 0ms,opacity .25s;width:100%}}@keyframes facts{0%{height:0}to{height:.65rem}}@keyframes fact{0%{opacity:0;transform:translateY(100%)}50%{opacity:0}to{opacity:1;transform:translateY(0)}}:root{--md-source-forks-icon:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M5 5.372v.878c0 .414.336.75.75.75h4.5a.75.75 0 0 0 .75-.75v-.878a2.25 2.25 0 1 1 1.5 0v.878a2.25 2.25 0 0 1-2.25 2.25h-1.5v2.128a2.251 2.251 0 1 1-1.5 0V8.5h-1.5A2.25 2.25 0 0 1 3.5 6.25v-.878a2.25 2.25 0 1 1 1.5 0M5 3.25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0m6.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5m-3 8.75a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0"/></svg>');--md-source-repositories-icon:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2 2.5A2.5 2.5 0 0 1 4.5 0h8.75a.75.75 0 0 1 .75.75v12.5a.75.75 0 0 1-.75.75h-2.5a.75.75 0 0 1 0-1.5h1.75v-2h-8a1 1 0 0 0-.714 1.7.75.75 0 1 1-1.072 1.05A2.5 2.5 0 0 1 2 11.5Zm10.5-1h-8a1 1 0 0 0-1 1v6.708A2.5 2.5 0 0 1 4.5 9h8ZM5 12.25a.25.25 0 0 1 .25-.25h3.5a.25.25 0 0 1 .25.25v3.25a.25.25 0 0 1-.4.2l-1.45-1.087a.25.25 0 0 0-.3 0L5.4 15.7a.25.25 0 0 1-.4-.2Z"/></svg>');--md-source-stars-icon:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 .25a.75.75 0 0 1 .673.418l1.882 3.815 4.21.612a.75.75 0 0 1 .416 1.279l-3.046 2.97.719 4.192a.751.751 0 0 1-1.088.791L8 12.347l-3.766 1.98a.75.75 0 0 1-1.088-.79l.72-4.194L.818 6.374a.75.75 0 0 1 .416-1.28l4.21-.611L7.327.668A.75.75 0 0 1 8 .25m0 2.445L6.615 5.5a.75.75 0 0 1-.564.41l-3.097.45 2.24 2.184a.75.75 0 0 1 .216.664l-.528 3.084 2.769-1.456a.75.75 0 0 1 .698 0l2.77 1.456-.53-3.084a.75.75 0 0 1 .216-.664l2.24-2.183-3.096-.45a.75.75 0 0 1-.564-.41z"/></svg>');--md-source-version-icon:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1 7.775V2.75C1 1.784 1.784 1 2.75 1h5.025c.464 0 .91.184 1.238.513l6.25 6.25a1.75 1.75 0 0 1 0 2.474l-5.026 5.026a1.75 1.75 0 0 1-2.474 0l-6.25-6.25A1.75 1.75 0 0 1 1 7.775m1.5 0c0 .066.026.13.073.177l6.25 6.25a.25.25 0 0 0 .354 0l5.025-5.025a.25.25 0 0 0 0-.354l-6.25-6.25a.25.25 0 0 0-.177-.073H2.75a.25.25 0 0 0-.25.25ZM6 5a1 1 0 1 1 0 2 1 1 0 0 1 0-2"/></svg>')}.md-source{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:block;font-size:.65rem;line-height:1.2;outline-color:var(--md-accent-fg-color);transition:opacity .25s;white-space:nowrap}.md-source:hover{opacity:.7}.md-source__icon{display:inline-block;height:2.4rem;vertical-align:middle;width:2rem}[dir=ltr] .md-source__icon svg{margin-left:.6rem}[dir=rtl] .md-source__icon svg{margin-right:.6rem}.md-source__icon svg{margin-top:.6rem}[dir=ltr] .md-source__icon+.md-source__repository{padding-left:2rem}[dir=rtl] .md-source__icon+.md-source__repository{padding-right:2rem}[dir=ltr] .md-source__icon+.md-source__repository{margin-left:-2rem}[dir=rtl] .md-source__icon+.md-source__repository{margin-right:-2rem}[dir=ltr] .md-source__repository{margin-left:.6rem}[dir=rtl] .md-source__repository{margin-right:.6rem}.md-source__repository{display:inline-block;max-width:calc(100% - 1.2rem);overflow:hidden;text-overflow:ellipsis;vertical-align:middle}.md-source__facts{display:flex;font-size:.55rem;gap:.4rem;list-style-type:none;margin:.1rem 0 0;opacity:.75;overflow:hidden;padding:0;width:100%}.md-source__repository--active .md-source__facts{animation:facts .25s ease-in}.md-source__fact{overflow:hidden;text-overflow:ellipsis}.md-source__repository--active .md-source__fact{animation:fact .4s ease-out}[dir=ltr] .md-source__fact:before{margin-right:.1rem}[dir=rtl] .md-source__fact:before{margin-left:.1rem}.md-source__fact:before{background-color:currentcolor;content:"";display:inline-block;height:.6rem;-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;vertical-align:text-top;width:.6rem}.md-source__fact:nth-child(1n+2){flex-shrink:0}.md-source__fact--version:before{-webkit-mask-image:var(--md-source-version-icon);mask-image:var(--md-source-version-icon)}.md-source__fact--stars:before{-webkit-mask-image:var(--md-source-stars-icon);mask-image:var(--md-source-stars-icon)}.md-source__fact--forks:before{-webkit-mask-image:var(--md-source-forks-icon);mask-image:var(--md-source-forks-icon)}.md-source__fact--repositories:before{-webkit-mask-image:var(--md-source-repositories-icon);mask-image:var(--md-source-repositories-icon)}.md-source-file{margin:1em 0}[dir=ltr] .md-source-file__fact{margin-right:.6rem}[dir=rtl] .md-source-file__fact{margin-left:.6rem}.md-source-file__fact{align-items:center;color:var(--md-default-fg-color--light);display:inline-flex;font-size:.68rem;gap:.3rem}.md-source-file__fact .md-icon{flex-shrink:0;margin-bottom:.05rem}[dir=ltr] .md-source-file__fact .md-author{float:left}[dir=rtl] .md-source-file__fact .md-author{float:right}.md-source-file__fact .md-author{margin-right:.2rem}.md-source-file__fact svg{width:.9rem}:root{--md-status:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 9h2V7h-2m1 13c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m-1 15h2v-6h-2z"/></svg>');--md-status--new:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23 12-2.44-2.78.34-3.68-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68zm-10 5h-2v-2h2zm0-4h-2V7h2z"/></svg>');--md-status--deprecated:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 3v1H4v2h1v13a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V6h1V4h-5V3zm0 5h2v9H9zm4 0h2v9h-2z"/></svg>');--md-status--encrypted:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5zm0 6c1.4 0 2.8 1.1 2.8 2.5V11c.6 0 1.2.6 1.2 1.3v3.5c0 .6-.6 1.2-1.3 1.2H9.2c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2V9.5C9.2 8.1 10.6 7 12 7m0 1.2c-.8 0-1.5.5-1.5 1.3V11h3V9.5c0-.8-.7-1.3-1.5-1.3"/></svg>')}.md-status:after{background-color:var(--md-default-fg-color--light);content:"";display:inline-block;height:1.125em;-webkit-mask-image:var(--md-status);mask-image:var(--md-status);-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;vertical-align:text-bottom;width:1.125em}.md-status:hover:after{background-color:currentcolor}.md-status--new:after{-webkit-mask-image:var(--md-status--new);mask-image:var(--md-status--new)}.md-status--deprecated:after{-webkit-mask-image:var(--md-status--deprecated);mask-image:var(--md-status--deprecated)}.md-status--encrypted:after{-webkit-mask-image:var(--md-status--encrypted);mask-image:var(--md-status--encrypted)}.md-tabs{background-color:var(--md-primary-fg-color);color:var(--md-primary-bg-color);display:block;line-height:1.3;overflow:auto;width:100%;z-index:3}@media print{.md-tabs{display:none}}@media screen and (max-width:76.234375em){.md-tabs{display:none}}.md-tabs[hidden]{pointer-events:none}[dir=ltr] .md-tabs__list{margin-left:.2rem}[dir=rtl] .md-tabs__list{margin-right:.2rem}.md-tabs__list{contain:content;display:flex;list-style:none;margin:0;overflow:auto;padding:0;scrollbar-width:none;white-space:nowrap}.md-tabs__list::-webkit-scrollbar{display:none}.md-tabs__item{height:2.4rem;padding-left:.6rem;padding-right:.6rem}.md-tabs__item--active .md-tabs__link{color:inherit;opacity:1}.md-tabs__link{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:flex;font-size:.7rem;margin-top:.8rem;opacity:.7;outline-color:var(--md-accent-fg-color);outline-offset:.2rem;transition:transform .4s cubic-bezier(.1,.7,.1,1),opacity .25s}.md-tabs__link:focus,.md-tabs__link:hover{color:inherit;opacity:1}[dir=ltr] .md-tabs__link svg{margin-right:.4rem}[dir=rtl] .md-tabs__link svg{margin-left:.4rem}.md-tabs__link svg{fill:currentcolor;height:1.3em}.md-tabs__item:nth-child(2) .md-tabs__link{transition-delay:20ms}.md-tabs__item:nth-child(3) .md-tabs__link{transition-delay:40ms}.md-tabs__item:nth-child(4) .md-tabs__link{transition-delay:60ms}.md-tabs__item:nth-child(5) .md-tabs__link{transition-delay:80ms}.md-tabs__item:nth-child(6) .md-tabs__link{transition-delay:.1s}.md-tabs__item:nth-child(7) .md-tabs__link{transition-delay:.12s}.md-tabs__item:nth-child(8) .md-tabs__link{transition-delay:.14s}.md-tabs__item:nth-child(9) .md-tabs__link{transition-delay:.16s}.md-tabs__item:nth-child(10) .md-tabs__link{transition-delay:.18s}.md-tabs__item:nth-child(11) .md-tabs__link{transition-delay:.2s}.md-tabs__item:nth-child(12) .md-tabs__link{transition-delay:.22s}.md-tabs__item:nth-child(13) .md-tabs__link{transition-delay:.24s}.md-tabs__item:nth-child(14) .md-tabs__link{transition-delay:.26s}.md-tabs__item:nth-child(15) .md-tabs__link{transition-delay:.28s}.md-tabs__item:nth-child(16) .md-tabs__link{transition-delay:.3s}.md-tabs[hidden] .md-tabs__link{opacity:0;transform:translateY(50%);transition:transform 0ms .1s,opacity .1s}:root{--md-tag-icon:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5.41 21 .71-4h-4l.35-2h4l1.06-6h-4l.35-2h4l.71-4h2l-.71 4h6l.71-4h2l-.71 4h4l-.35 2h-4l-1.06 6h4l-.35 2h-4l-.71 4h-2l.71-4h-6l-.71 4zM9.53 9l-1.06 6h6l1.06-6z"/></svg>')}.md-typeset .md-tags:not([hidden]){display:inline-flex;flex-wrap:wrap;gap:.5em;margin-bottom:.75em;margin-top:-.125em}.md-typeset .md-tag{align-items:center;background:var(--md-default-fg-color--lightest);border-radius:2.4rem;display:inline-flex;font-size:.64rem;font-size:min(.8em,.64rem);font-weight:700;gap:.5em;letter-spacing:normal;line-height:1.6;padding:.3125em .78125em}.md-typeset .md-tag[href]{-webkit-tap-highlight-color:transparent;color:inherit;outline:none;transition:color 125ms,background-color 125ms}.md-typeset .md-tag[href]:focus,.md-typeset .md-tag[href]:hover{background-color:var(--md-accent-fg-color);color:var(--md-accent-bg-color)}[id]>.md-typeset .md-tag{vertical-align:text-top}.md-typeset .md-tag-icon:before{background-color:var(--md-default-fg-color--lighter);content:"";display:inline-block;height:1.2em;-webkit-mask-image:var(--md-tag-icon);mask-image:var(--md-tag-icon);-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;transition:background-color 125ms;vertical-align:text-bottom;width:1.2em}.md-typeset .md-tag-icon[href]:focus:before,.md-typeset .md-tag-icon[href]:hover:before{background-color:var(--md-accent-bg-color)}@keyframes pulse{0%{transform:scale(.95)}75%{transform:scale(1)}to{transform:scale(.95)}}:root{--md-annotation-bg-icon:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2"/></svg>');--md-annotation-icon:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 13h-4v4h-2v-4H7v-2h4V7h2v4h4m-5-9A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2"/></svg>')}.md-tooltip{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:var(--md-default-bg-color);border-radius:.1rem;box-shadow:var(--md-shadow-z2);color:var(--md-default-fg-color);font-family:var(--md-text-font-family);left:clamp(var(--md-tooltip-0,0rem) + .8rem,var(--md-tooltip-x),100vw + var(--md-tooltip-0,0rem) + .8rem - var(--md-tooltip-width) - 2 * .8rem);max-width:calc(100vw - 1.6rem);opacity:0;position:absolute;top:var(--md-tooltip-y);transform:translateY(-.4rem);transition:transform 0ms .25s,opacity .25s,z-index .25s;width:var(--md-tooltip-width);z-index:0}.md-tooltip--active{opacity:1;transform:translateY(0);transition:transform .25s cubic-bezier(.1,.7,.1,1),opacity .25s,z-index 0ms;z-index:2}.md-tooltip--inline{font-weight:700;-webkit-user-select:none;user-select:none;width:auto}.md-tooltip--inline:not(.md-tooltip--active){transform:translateY(.2rem) scale(.9)}.md-tooltip--inline .md-tooltip__inner{font-size:.5rem;padding:.2rem .4rem}[hidden]+.md-tooltip--inline{display:none}.focus-visible>.md-tooltip,.md-tooltip:target{outline:var(--md-accent-fg-color) auto}.md-tooltip__inner{font-size:.64rem;padding:.8rem}.md-tooltip__inner.md-typeset>:first-child{margin-top:0}.md-tooltip__inner.md-typeset>:last-child{margin-bottom:0}.md-annotation{font-style:normal;font-weight:400;outline:none;text-align:initial;vertical-align:text-bottom;white-space:normal}[dir=rtl] .md-annotation{direction:rtl}code .md-annotation{font-family:var(--md-code-font-family);font-size:inherit}.md-annotation:not([hidden]){display:inline-block;line-height:1.25}.md-annotation__index{border-radius:.01px;cursor:pointer;display:inline-block;margin-left:.4ch;margin-right:.4ch;outline:none;overflow:hidden;position:relative;-webkit-user-select:none;user-select:none;vertical-align:text-top;z-index:0}.md-annotation .md-annotation__index{transition:z-index .25s}@media screen{.md-annotation__index{width:2.2ch}[data-md-visible]>.md-annotation__index{animation:pulse 2s infinite}.md-annotation__index:before{background:var(--md-default-bg-color);-webkit-mask-image:var(--md-annotation-bg-icon);mask-image:var(--md-annotation-bg-icon)}.md-annotation__index:after,.md-annotation__index:before{content:"";height:2.2ch;-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;position:absolute;top:-.1ch;width:2.2ch;z-index:-1}.md-annotation__index:after{background-color:var(--md-default-fg-color--lighter);-webkit-mask-image:var(--md-annotation-icon);mask-image:var(--md-annotation-icon);transform:scale(1.0001);transition:background-color .25s,transform .25s}.md-tooltip--active+.md-annotation__index:after{transform:rotate(45deg)}.md-tooltip--active+.md-annotation__index:after,:hover>.md-annotation__index:after{background-color:var(--md-accent-fg-color)}}.md-tooltip--active+.md-annotation__index{animation-play-state:paused;transition-duration:0ms;z-index:2}.md-annotation__index [data-md-annotation-id]{display:inline-block}@media print{.md-annotation__index [data-md-annotation-id]{background:var(--md-default-fg-color--lighter);border-radius:2ch;color:var(--md-default-bg-color);font-weight:700;padding:0 .6ch;white-space:nowrap}.md-annotation__index [data-md-annotation-id]:after{content:attr(data-md-annotation-id)}}.md-typeset .md-annotation-list{counter-reset:xxx;list-style:none}.md-typeset .md-annotation-list li{position:relative}[dir=ltr] .md-typeset .md-annotation-list li:before{left:-2.125em}[dir=rtl] .md-typeset .md-annotation-list li:before{right:-2.125em}.md-typeset .md-annotation-list li:before{background:var(--md-default-fg-color--lighter);border-radius:2ch;color:var(--md-default-bg-color);content:counter(xxx);counter-increment:xxx;font-size:.8875em;font-weight:700;height:2ch;line-height:1.25;min-width:2ch;padding:0 .6ch;position:absolute;text-align:center;top:.25em}:root{--md-tooltip-width:20rem;--md-tooltip-tail:0.3rem}.md-tooltip2{-webkit-backface-visibility:hidden;backface-visibility:hidden;color:var(--md-default-fg-color);font-family:var(--md-text-font-family);opacity:0;pointer-events:none;position:absolute;top:calc(var(--md-tooltip-host-y) + var(--md-tooltip-y));transform:translateY(-.4rem);transform-origin:calc(var(--md-tooltip-host-x) + var(--md-tooltip-x)) 0;transition:transform 0ms .25s,opacity .25s,z-index .25s;width:100%;z-index:0}.md-tooltip2:before{border-left:var(--md-tooltip-tail) solid #0000;border-right:var(--md-tooltip-tail) solid #0000;content:"";display:block;left:clamp(1.5 * .8rem,var(--md-tooltip-host-x) + var(--md-tooltip-x) - var(--md-tooltip-tail),100vw - 2 * var(--md-tooltip-tail) - 1.5 * .8rem);position:absolute;z-index:1}.md-tooltip2--top:before{border-top:var(--md-tooltip-tail) solid var(--md-default-bg-color);bottom:calc(var(--md-tooltip-tail)*-1 + .025rem);filter:drop-shadow(0 1px 0 hsla(0,0%,0%,.05))}.md-tooltip2--bottom:before{border-bottom:var(--md-tooltip-tail) solid var(--md-default-bg-color);filter:drop-shadow(0 -1px 0 hsla(0,0%,0%,.05));top:calc(var(--md-tooltip-tail)*-1 + .025rem)}.md-tooltip2--active{opacity:1;transform:translateY(0);transition:transform .4s cubic-bezier(0,1,.5,1),opacity .25s,z-index 0ms;z-index:2}.md-tooltip2__inner{scrollbar-gutter:stable;background-color:var(--md-default-bg-color);border-radius:.1rem;box-shadow:var(--md-shadow-z2);left:clamp(.8rem,var(--md-tooltip-host-x) - .8rem,100vw - var(--md-tooltip-width) - .8rem);max-height:40vh;max-width:calc(100vw - 1.6rem);position:relative;scrollbar-width:thin}.md-tooltip2__inner::-webkit-scrollbar{height:.2rem;width:.2rem}.md-tooltip2__inner::-webkit-scrollbar-thumb{background-color:var(--md-default-fg-color--lighter)}.md-tooltip2__inner::-webkit-scrollbar-thumb:hover{background-color:var(--md-accent-fg-color)}[role=tooltip]>.md-tooltip2__inner{font-size:.5rem;font-weight:700;left:clamp(.8rem,var(--md-tooltip-host-x) + var(--md-tooltip-x) - var(--md-tooltip-width)/2,100vw - var(--md-tooltip-width) - .8rem);max-width:min(100vw - 2 * .8rem,400px);padding:.2rem .4rem;-webkit-user-select:none;user-select:none;width:-moz-fit-content;width:fit-content}.md-tooltip2__inner.md-typeset>:first-child{margin-top:0}.md-tooltip2__inner.md-typeset>:last-child{margin-bottom:0}[dir=ltr] .md-top{margin-left:50%}[dir=rtl] .md-top{margin-right:50%}.md-top{background-color:var(--md-default-bg-color);border-radius:1.6rem;box-shadow:var(--md-shadow-z2);color:var(--md-default-fg-color--light);cursor:pointer;display:block;font-size:.7rem;outline:none;padding:.4rem .8rem;position:fixed;top:3.2rem;transform:translate(-50%);transition:color 125ms,background-color 125ms,transform 125ms cubic-bezier(.4,0,.2,1),opacity 125ms;z-index:2}@media print{.md-top{display:none}}[dir=rtl] .md-top{transform:translate(50%)}.md-top[hidden]{opacity:0;pointer-events:none;transform:translate(-50%,.2rem);transition-duration:0ms}[dir=rtl] .md-top[hidden]{transform:translate(50%,.2rem)}.md-top:focus,.md-top:hover{background-color:var(--md-accent-fg-color);color:var(--md-accent-bg-color)}.md-top svg{display:inline-block;vertical-align:-.5em}@keyframes hoverfix{0%{pointer-events:none}}:root{--md-version-icon:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M137.4 374.6c12.5 12.5 32.8 12.5 45.3 0l128-128c9.2-9.2 11.9-22.9 6.9-34.9S301 191.9 288 191.9L32 192c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l128 128z"/></svg>')}.md-version{flex-shrink:0;font-size:.8rem;height:2.4rem}[dir=ltr] .md-version__current{margin-left:1.4rem;margin-right:.4rem}[dir=rtl] .md-version__current{margin-left:.4rem;margin-right:1.4rem}.md-version__current{color:inherit;cursor:pointer;outline:none;position:relative;top:.05rem}[dir=ltr] .md-version__current:after{margin-left:.4rem}[dir=rtl] .md-version__current:after{margin-right:.4rem}.md-version__current:after{background-color:currentcolor;content:"";display:inline-block;height:.6rem;-webkit-mask-image:var(--md-version-icon);mask-image:var(--md-version-icon);-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;width:.4rem}.md-version__alias{margin-left:.3rem;opacity:.7}.md-version__list{background-color:var(--md-default-bg-color);border-radius:.1rem;box-shadow:var(--md-shadow-z2);color:var(--md-default-fg-color);list-style-type:none;margin:.2rem .8rem;max-height:0;opacity:0;overflow:auto;padding:0;position:absolute;scroll-snap-type:y mandatory;top:.15rem;transition:max-height 0ms .5s,opacity .25s .25s;z-index:3}.md-version:focus-within .md-version__list,.md-version:hover .md-version__list{max-height:10rem;opacity:1;transition:max-height 0ms,opacity .25s}@media (hover:none),(pointer:coarse){.md-version:hover .md-version__list{animation:hoverfix .25s forwards}.md-version:focus-within .md-version__list{animation:none}}.md-version__item{line-height:1.8rem}[dir=ltr] .md-version__link{padding-left:.6rem;padding-right:1.2rem}[dir=rtl] .md-version__link{padding-left:1.2rem;padding-right:.6rem}.md-version__link{cursor:pointer;display:block;outline:none;scroll-snap-align:start;transition:color .25s,background-color .25s;white-space:nowrap;width:100%}.md-version__link:focus,.md-version__link:hover{color:var(--md-accent-fg-color)}.md-version__link:focus{background-color:var(--md-default-fg-color--lightest)}:root{--md-admonition-icon--note:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2m3.1 5.07c.14 0 .28.05.4.16l1.27 1.27c.23.22.23.57 0 .78l-1 1-2.05-2.05 1-1c.1-.11.24-.16.38-.16m-1.97 1.74 2.06 2.06-6.06 6.06H7.07v-2.06z"/></svg>');--md-admonition-icon--abstract:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 9H7V7h10m0 6H7v-2h10m-3 6H7v-2h7M12 3a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m7 0h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"/></svg>');--md-admonition-icon--info:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9h-2V7h2m0 10h-2v-6h2m-1-9A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2"/></svg>');--md-admonition-icon--tip:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.66 11.2c-.23-.3-.51-.56-.77-.82-.67-.6-1.43-1.03-2.07-1.66C13.33 7.26 13 4.85 13.95 3c-.95.23-1.78.75-2.49 1.32-2.59 2.08-3.61 5.75-2.39 8.9.04.1.08.2.08.33 0 .22-.15.42-.35.5-.23.1-.47.04-.66-.12a.6.6 0 0 1-.14-.17c-1.13-1.43-1.31-3.48-.55-5.12C5.78 10 4.87 12.3 5 14.47c.06.5.12 1 .29 1.5.14.6.41 1.2.71 1.73 1.08 1.73 2.95 2.97 4.96 3.22 2.14.27 4.43-.12 6.07-1.6 1.83-1.66 2.47-4.32 1.53-6.6l-.13-.26c-.21-.46-.77-1.26-.77-1.26m-3.16 6.3c-.28.24-.74.5-1.1.6-1.12.4-2.24-.16-2.9-.82 1.19-.28 1.9-1.16 2.11-2.05.17-.8-.15-1.46-.28-2.23-.12-.74-.1-1.37.17-2.06.19.38.39.76.63 1.06.77 1 1.98 1.44 2.24 2.8.04.14.06.28.06.43.03.82-.33 1.72-.93 2.27"/></svg>');--md-admonition-icon--success:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 7 9 19l-5.5-5.5 1.41-1.41L9 16.17 19.59 5.59z"/></svg>');--md-admonition-icon--question:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.07 11.25-.9.92C13.45 12.89 13 13.5 13 15h-2v-.5c0-1.11.45-2.11 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41a2 2 0 0 0-2-2 2 2 0 0 0-2 2H8a4 4 0 0 1 4-4 4 4 0 0 1 4 4 3.2 3.2 0 0 1-.93 2.25M13 19h-2v-2h2M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10c0-5.53-4.5-10-10-10"/></svg>');--md-admonition-icon--warning:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 14h-2V9h2m0 9h-2v-2h2M1 21h22L12 2z"/></svg>');--md-admonition-icon--failure:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>');--md-admonition-icon--danger:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.5 20 4.86-9.73H13V4l-5 9.73h3.5zM12 2c2.75 0 5.1 1 7.05 2.95S22 9.25 22 12s-1 5.1-2.95 7.05S14.75 22 12 22s-5.1-1-7.05-2.95S2 14.75 2 12s1-5.1 2.95-7.05S9.25 2 12 2"/></svg>');--md-admonition-icon--bug:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 13h2v1h-2zm10-8v6c0 5.5-3.8 10.7-9 12-5.2-1.3-9-6.5-9-12V5l9-4zm-4 5h-2.2c-.2-.6-.6-1.1-1.1-1.5l1.2-1.2-.7-.7L12.8 8H12c-.2 0-.5 0-.7.1L9.9 6.6l-.8.8 1.2 1.2c-.5.3-.9.8-1.1 1.4H7v1h2v1H7v1h2v1H7v1h2.2c.4 1.2 1.5 2 2.8 2s2.4-.8 2.8-2H17v-1h-2v-1h2v-1h-2v-1h2zm-6 2h2v-1h-2z"/></svg>');--md-admonition-icon--example:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2v2h1v14a4 4 0 0 0 4 4 4 4 0 0 0 4-4V4h1V2zm4 14c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1m2-4c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1m1-5h-4V4h4z"/></svg>');--md-admonition-icon--quote:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 17h3l2-4V7h-6v6h3M6 17h3l2-4V7H5v6h3z"/></svg>')}.md-typeset .admonition,.md-typeset details{background-color:var(--md-admonition-bg-color);border:.075rem solid #448aff;border-radius:.2rem;box-shadow:var(--md-shadow-z1);color:var(--md-admonition-fg-color);display:flow-root;font-size:.64rem;margin:1.5625em 0;padding:0 .6rem;page-break-inside:avoid;transition:box-shadow 125ms}@media print{.md-typeset .admonition,.md-typeset details{box-shadow:none}}.md-typeset .admonition:focus-within,.md-typeset details:focus-within{box-shadow:0 0 0 .2rem #448aff1a}.md-typeset .admonition>*,.md-typeset details>*{box-sizing:border-box}.md-typeset .admonition .admonition,.md-typeset .admonition details,.md-typeset details .admonition,.md-typeset details details{margin-bottom:1em;margin-top:1em}.md-typeset .admonition .md-typeset__scrollwrap,.md-typeset details .md-typeset__scrollwrap{margin:1em -.6rem}.md-typeset .admonition .md-typeset__table,.md-typeset details .md-typeset__table{padding:0 .6rem}.md-typeset .admonition>.tabbed-set:only-child,.md-typeset details>.tabbed-set:only-child{margin-top:0}html .md-typeset .admonition>:last-child,html .md-typeset details>:last-child{margin-bottom:.6rem}[dir=ltr] .md-typeset .admonition-title,[dir=ltr] .md-typeset summary{padding-left:2rem;padding-right:.6rem}[dir=rtl] .md-typeset .admonition-title,[dir=rtl] .md-typeset summary{padding-left:.6rem;padding-right:2rem}[dir=ltr] .md-typeset .admonition-title,[dir=ltr] .md-typeset summary{border-left-width:.2rem}[dir=rtl] .md-typeset .admonition-title,[dir=rtl] .md-typeset summary{border-right-width:.2rem}[dir=ltr] .md-typeset .admonition-title,[dir=ltr] .md-typeset summary{border-top-left-radius:.1rem}[dir=ltr] .md-typeset .admonition-title,[dir=ltr] .md-typeset summary,[dir=rtl] .md-typeset .admonition-title,[dir=rtl] .md-typeset summary{border-top-right-radius:.1rem}[dir=rtl] .md-typeset .admonition-title,[dir=rtl] .md-typeset summary{border-top-left-radius:.1rem}.md-typeset .admonition-title,.md-typeset summary{background-color:#448aff1a;border:none;font-weight:700;margin:0 -.6rem;padding-bottom:.4rem;padding-top:.4rem;position:relative}html .md-typeset .admonition-title:last-child,html .md-typeset summary:last-child{margin-bottom:0}[dir=ltr] .md-typeset .admonition-title:before,[dir=ltr] .md-typeset summary:before{left:.6rem}[dir=rtl] .md-typeset .admonition-title:before,[dir=rtl] .md-typeset summary:before{right:.6rem}.md-typeset .admonition-title:before,.md-typeset summary:before{background-color:#448aff;content:"";height:1rem;-webkit-mask-image:var(--md-admonition-icon--note);mask-image:var(--md-admonition-icon--note);-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;position:absolute;top:.625em;width:1rem}.md-typeset .admonition-title code,.md-typeset summary code{box-shadow:0 0 0 .05rem var(--md-default-fg-color--lightest)}.md-typeset .admonition.note,.md-typeset details.note{border-color:#448aff}.md-typeset .admonition.note:focus-within,.md-typeset details.note:focus-within{box-shadow:0 0 0 .2rem #448aff1a}.md-typeset .note>.admonition-title,.md-typeset .note>summary{background-color:#448aff1a}.md-typeset .note>.admonition-title:before,.md-typeset .note>summary:before{background-color:#448aff;-webkit-mask-image:var(--md-admonition-icon--note);mask-image:var(--md-admonition-icon--note)}.md-typeset .note>.admonition-title:after,.md-typeset .note>summary:after{color:#448aff}.md-typeset .admonition.abstract,.md-typeset details.abstract{border-color:#00b0ff}.md-typeset .admonition.abstract:focus-within,.md-typeset details.abstract:focus-within{box-shadow:0 0 0 .2rem #00b0ff1a}.md-typeset .abstract>.admonition-title,.md-typeset .abstract>summary{background-color:#00b0ff1a}.md-typeset .abstract>.admonition-title:before,.md-typeset .abstract>summary:before{background-color:#00b0ff;-webkit-mask-image:var(--md-admonition-icon--abstract);mask-image:var(--md-admonition-icon--abstract)}.md-typeset .abstract>.admonition-title:after,.md-typeset .abstract>summary:after{color:#00b0ff}.md-typeset .admonition.info,.md-typeset details.info{border-color:#00b8d4}.md-typeset .admonition.info:focus-within,.md-typeset details.info:focus-within{box-shadow:0 0 0 .2rem #00b8d41a}.md-typeset .info>.admonition-title,.md-typeset .info>summary{background-color:#00b8d41a}.md-typeset .info>.admonition-title:before,.md-typeset .info>summary:before{background-color:#00b8d4;-webkit-mask-image:var(--md-admonition-icon--info);mask-image:var(--md-admonition-icon--info)}.md-typeset .info>.admonition-title:after,.md-typeset .info>summary:after{color:#00b8d4}.md-typeset .admonition.tip,.md-typeset details.tip{border-color:#00bfa5}.md-typeset .admonition.tip:focus-within,.md-typeset details.tip:focus-within{box-shadow:0 0 0 .2rem #00bfa51a}.md-typeset .tip>.admonition-title,.md-typeset .tip>summary{background-color:#00bfa51a}.md-typeset .tip>.admonition-title:before,.md-typeset .tip>summary:before{background-color:#00bfa5;-webkit-mask-image:var(--md-admonition-icon--tip);mask-image:var(--md-admonition-icon--tip)}.md-typeset .tip>.admonition-title:after,.md-typeset .tip>summary:after{color:#00bfa5}.md-typeset .admonition.success,.md-typeset details.success{border-color:#00c853}.md-typeset .admonition.success:focus-within,.md-typeset details.success:focus-within{box-shadow:0 0 0 .2rem #00c8531a}.md-typeset .success>.admonition-title,.md-typeset .success>summary{background-color:#00c8531a}.md-typeset .success>.admonition-title:before,.md-typeset .success>summary:before{background-color:#00c853;-webkit-mask-image:var(--md-admonition-icon--success);mask-image:var(--md-admonition-icon--success)}.md-typeset .success>.admonition-title:after,.md-typeset .success>summary:after{color:#00c853}.md-typeset .admonition.question,.md-typeset details.question{border-color:#64dd17}.md-typeset .admonition.question:focus-within,.md-typeset details.question:focus-within{box-shadow:0 0 0 .2rem #64dd171a}.md-typeset .question>.admonition-title,.md-typeset .question>summary{background-color:#64dd171a}.md-typeset .question>.admonition-title:before,.md-typeset .question>summary:before{background-color:#64dd17;-webkit-mask-image:var(--md-admonition-icon--question);mask-image:var(--md-admonition-icon--question)}.md-typeset .question>.admonition-title:after,.md-typeset .question>summary:after{color:#64dd17}.md-typeset .admonition.warning,.md-typeset details.warning{border-color:#ff9100}.md-typeset .admonition.warning:focus-within,.md-typeset details.warning:focus-within{box-shadow:0 0 0 .2rem #ff91001a}.md-typeset .warning>.admonition-title,.md-typeset .warning>summary{background-color:#ff91001a}.md-typeset .warning>.admonition-title:before,.md-typeset .warning>summary:before{background-color:#ff9100;-webkit-mask-image:var(--md-admonition-icon--warning);mask-image:var(--md-admonition-icon--warning)}.md-typeset .warning>.admonition-title:after,.md-typeset .warning>summary:after{color:#ff9100}.md-typeset .admonition.failure,.md-typeset details.failure{border-color:#ff5252}.md-typeset .admonition.failure:focus-within,.md-typeset details.failure:focus-within{box-shadow:0 0 0 .2rem #ff52521a}.md-typeset .failure>.admonition-title,.md-typeset .failure>summary{background-color:#ff52521a}.md-typeset .failure>.admonition-title:before,.md-typeset .failure>summary:before{background-color:#ff5252;-webkit-mask-image:var(--md-admonition-icon--failure);mask-image:var(--md-admonition-icon--failure)}.md-typeset .failure>.admonition-title:after,.md-typeset .failure>summary:after{color:#ff5252}.md-typeset .admonition.danger,.md-typeset details.danger{border-color:#ff1744}.md-typeset .admonition.danger:focus-within,.md-typeset details.danger:focus-within{box-shadow:0 0 0 .2rem #ff17441a}.md-typeset .danger>.admonition-title,.md-typeset .danger>summary{background-color:#ff17441a}.md-typeset .danger>.admonition-title:before,.md-typeset .danger>summary:before{background-color:#ff1744;-webkit-mask-image:var(--md-admonition-icon--danger);mask-image:var(--md-admonition-icon--danger)}.md-typeset .danger>.admonition-title:after,.md-typeset .danger>summary:after{color:#ff1744}.md-typeset .admonition.bug,.md-typeset details.bug{border-color:#f50057}.md-typeset .admonition.bug:focus-within,.md-typeset details.bug:focus-within{box-shadow:0 0 0 .2rem #f500571a}.md-typeset .bug>.admonition-title,.md-typeset .bug>summary{background-color:#f500571a}.md-typeset .bug>.admonition-title:before,.md-typeset .bug>summary:before{background-color:#f50057;-webkit-mask-image:var(--md-admonition-icon--bug);mask-image:var(--md-admonition-icon--bug)}.md-typeset .bug>.admonition-title:after,.md-typeset .bug>summary:after{color:#f50057}.md-typeset .admonition.example,.md-typeset details.example{border-color:#7c4dff}.md-typeset .admonition.example:focus-within,.md-typeset details.example:focus-within{box-shadow:0 0 0 .2rem #7c4dff1a}.md-typeset .example>.admonition-title,.md-typeset .example>summary{background-color:#7c4dff1a}.md-typeset .example>.admonition-title:before,.md-typeset .example>summary:before{background-color:#7c4dff;-webkit-mask-image:var(--md-admonition-icon--example);mask-image:var(--md-admonition-icon--example)}.md-typeset .example>.admonition-title:after,.md-typeset .example>summary:after{color:#7c4dff}.md-typeset .admonition.quote,.md-typeset details.quote{border-color:#9e9e9e}.md-typeset .admonition.quote:focus-within,.md-typeset details.quote:focus-within{box-shadow:0 0 0 .2rem #9e9e9e1a}.md-typeset .quote>.admonition-title,.md-typeset .quote>summary{background-color:#9e9e9e1a}.md-typeset .quote>.admonition-title:before,.md-typeset .quote>summary:before{background-color:#9e9e9e;-webkit-mask-image:var(--md-admonition-icon--quote);mask-image:var(--md-admonition-icon--quote)}.md-typeset .quote>.admonition-title:after,.md-typeset .quote>summary:after{color:#9e9e9e}:root{--md-footnotes-icon:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 7v4H5.83l3.58-3.59L8 6l-6 6 6 6 1.41-1.42L5.83 13H21V7z"/></svg>')}.md-typeset .footnote{color:var(--md-default-fg-color--light);font-size:.64rem}[dir=ltr] .md-typeset .footnote>ol{margin-left:0}[dir=rtl] .md-typeset .footnote>ol{margin-right:0}.md-typeset .footnote>ol>li{transition:color 125ms}.md-typeset .footnote>ol>li:target{color:var(--md-default-fg-color)}.md-typeset .footnote>ol>li:focus-within .footnote-backref{opacity:1;transform:translateX(0);transition:none}.md-typeset .footnote>ol>li:hover .footnote-backref,.md-typeset .footnote>ol>li:target .footnote-backref{opacity:1;transform:translateX(0)}.md-typeset .footnote>ol>li>:first-child{margin-top:0}.md-typeset .footnote-ref{font-size:.75em;font-weight:700}html .md-typeset .footnote-ref{outline-offset:.1rem}.md-typeset [id^="fnref:"]:target>.footnote-ref{outline:auto}.md-typeset .footnote-backref{color:var(--md-typeset-a-color);display:inline-block;font-size:0;opacity:0;transform:translateX(.25rem);transition:color .25s,transform .25s .25s,opacity 125ms .25s;vertical-align:text-bottom}@media print{.md-typeset .footnote-backref{color:var(--md-typeset-a-color);opacity:1;transform:translateX(0)}}[dir=rtl] .md-typeset .footnote-backref{transform:translateX(-.25rem)}.md-typeset .footnote-backref:hover{color:var(--md-accent-fg-color)}.md-typeset .footnote-backref:before{background-color:currentcolor;content:"";display:inline-block;height:.8rem;-webkit-mask-image:var(--md-footnotes-icon);mask-image:var(--md-footnotes-icon);-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;width:.8rem}[dir=rtl] .md-typeset .footnote-backref:before svg{transform:scaleX(-1)}[dir=ltr] .md-typeset .headerlink{margin-left:.5rem}[dir=rtl] .md-typeset .headerlink{margin-right:.5rem}.md-typeset .headerlink{color:var(--md-default-fg-color--lighter);display:inline-block;opacity:0;transition:color .25s,opacity 125ms}@media print{.md-typeset .headerlink{display:none}}.md-typeset .headerlink:focus,.md-typeset :hover>.headerlink,.md-typeset :target>.headerlink{opacity:1;transition:color .25s,opacity 125ms}.md-typeset .headerlink:focus,.md-typeset .headerlink:hover,.md-typeset :target>.headerlink{color:var(--md-accent-fg-color)}.md-typeset :target{--md-scroll-margin:3.6rem;--md-scroll-offset:0rem;scroll-margin-top:calc(var(--md-scroll-margin) - var(--md-scroll-offset))}@media screen and (min-width:76.25em){.md-header--lifted~.md-container .md-typeset :target{--md-scroll-margin:6rem}}.md-typeset h1:target,.md-typeset h2:target,.md-typeset h3:target{--md-scroll-offset:0.2rem}.md-typeset h4:target{--md-scroll-offset:0.15rem}.md-typeset div.arithmatex{overflow:auto}@media screen and (max-width:44.984375em){.md-typeset div.arithmatex{margin:0 -.8rem}.md-typeset div.arithmatex>*{width:min-content}}.md-typeset div.arithmatex>*{margin-left:auto!important;margin-right:auto!important;padding:0 .8rem;touch-action:auto}.md-typeset div.arithmatex>* mjx-container{margin:0!important}.md-typeset div.arithmatex mjx-assistive-mml{height:0}.md-typeset del.critic{background-color:var(--md-typeset-del-color)}.md-typeset del.critic,.md-typeset ins.critic{-webkit-box-decoration-break:clone;box-decoration-break:clone}.md-typeset ins.critic{background-color:var(--md-typeset-ins-color)}.md-typeset .critic.comment{-webkit-box-decoration-break:clone;box-decoration-break:clone;color:var(--md-code-hl-comment-color)}.md-typeset .critic.comment:before{content:"/* "}.md-typeset .critic.comment:after{content:" */"}.md-typeset .critic.block{box-shadow:none;display:block;margin:1em 0;overflow:auto;padding-left:.8rem;padding-right:.8rem}.md-typeset .critic.block>:first-child{margin-top:.5em}.md-typeset .critic.block>:last-child{margin-bottom:.5em}:root{--md-details-icon:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.59 16.58 13.17 12 8.59 7.41 10 6l6 6-6 6z"/></svg>')}.md-typeset details{display:flow-root;overflow:visible;padding-top:0}.md-typeset details[open]>summary:after{transform:rotate(90deg)}.md-typeset details:not([open]){box-shadow:none;padding-bottom:0}.md-typeset details:not([open])>summary{border-radius:.1rem}[dir=ltr] .md-typeset summary{padding-right:1.8rem}[dir=rtl] .md-typeset summary{padding-left:1.8rem}[dir=ltr] .md-typeset summary{border-top-left-radius:.1rem}[dir=ltr] .md-typeset summary,[dir=rtl] .md-typeset summary{border-top-right-radius:.1rem}[dir=rtl] .md-typeset summary{border-top-left-radius:.1rem}.md-typeset summary{cursor:pointer;display:block;min-height:1rem;overflow:hidden}.md-typeset summary.focus-visible{outline-color:var(--md-accent-fg-color);outline-offset:.2rem}.md-typeset summary:not(.focus-visible){-webkit-tap-highlight-color:transparent;outline:none}[dir=ltr] .md-typeset summary:after{right:.4rem}[dir=rtl] .md-typeset summary:after{left:.4rem}.md-typeset summary:after{background-color:currentcolor;content:"";height:1rem;-webkit-mask-image:var(--md-details-icon);mask-image:var(--md-details-icon);-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;position:absolute;top:.625em;transform:rotate(0deg);transition:transform .25s;width:1rem}[dir=rtl] .md-typeset summary:after{transform:rotate(180deg)}.md-typeset summary::marker{display:none}.md-typeset summary::-webkit-details-marker{display:none}.md-typeset .emojione,.md-typeset .gemoji,.md-typeset .twemoji{--md-icon-size:1.125em;display:inline-flex;height:var(--md-icon-size);vertical-align:text-top}.md-typeset .emojione svg,.md-typeset .gemoji svg,.md-typeset .twemoji svg{fill:currentcolor;max-height:100%;width:var(--md-icon-size)}.md-typeset .lg,.md-typeset .xl,.md-typeset .xxl,.md-typeset .xxxl{vertical-align:text-bottom}.md-typeset .middle{vertical-align:middle}.md-typeset .lg{--md-icon-size:1.5em}.md-typeset .xl{--md-icon-size:2.25em}.md-typeset .xxl{--md-icon-size:3em}.md-typeset .xxxl{--md-icon-size:4em}.highlight .o,.highlight .ow{color:var(--md-code-hl-operator-color)}.highlight .p{color:var(--md-code-hl-punctuation-color)}.highlight .cpf,.highlight .l,.highlight .s,.highlight .s1,.highlight .s2,.highlight .sb,.highlight .sc,.highlight .si,.highlight .ss{color:var(--md-code-hl-string-color)}.highlight .cp,.highlight .se,.highlight .sh,.highlight .sr,.highlight .sx{color:var(--md-code-hl-special-color)}.highlight .il,.highlight .m,.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:var(--md-code-hl-number-color)}.highlight .k,.highlight .kd,.highlight .kn,.highlight .kp,.highlight .kr,.highlight .kt{color:var(--md-code-hl-keyword-color)}.highlight .kc,.highlight .n{color:var(--md-code-hl-name-color)}.highlight .bp,.highlight .nb,.highlight .no{color:var(--md-code-hl-constant-color)}.highlight .nc,.highlight .ne,.highlight .nf,.highlight .nn{color:var(--md-code-hl-function-color)}.highlight .nd,.highlight .ni,.highlight .nl,.highlight .nt{color:var(--md-code-hl-keyword-color)}.highlight .c,.highlight .c1,.highlight .ch,.highlight .cm,.highlight .cs,.highlight .sd{color:var(--md-code-hl-comment-color)}.highlight .na,.highlight .nv,.highlight .vc,.highlight .vg,.highlight .vi{color:var(--md-code-hl-variable-color)}.highlight .ge,.highlight .gh,.highlight .go,.highlight .gp,.highlight .gr,.highlight .gs,.highlight .gt,.highlight .gu{color:var(--md-code-hl-generic-color)}.highlight .gd,.highlight .gi{border-radius:.1rem;margin:0 -.125em;padding:0 .125em}.highlight .gd{background-color:var(--md-typeset-del-color)}.highlight .gi{background-color:var(--md-typeset-ins-color)}.highlight .hll{background-color:var(--md-code-hl-color--light);box-shadow:2px 0 0 0 var(--md-code-hl-color) inset;display:block;margin:0 -1.1764705882em;padding:0 1.1764705882em}.highlight span.filename{background-color:var(--md-code-bg-color);border-bottom:.05rem solid var(--md-default-fg-color--lightest);border-top-left-radius:.1rem;border-top-right-radius:.1rem;display:flow-root;font-size:.85em;font-weight:700;margin-top:1em;padding:.6617647059em 1.1764705882em;position:relative}.highlight span.filename+pre{margin-top:0}.highlight span.filename+pre>code{border-top-left-radius:0;border-top-right-radius:0}.highlight [data-linenos]:before{background-color:var(--md-code-bg-color);box-shadow:-.05rem 0 var(--md-default-fg-color--lightest) inset;color:var(--md-default-fg-color--light);content:attr(data-linenos);float:left;left:-1.1764705882em;margin-left:-1.1764705882em;margin-right:1.1764705882em;padding-left:1.1764705882em;position:sticky;-webkit-user-select:none;user-select:none;z-index:3}.highlight code a[id]{position:absolute;visibility:hidden}.highlight code[data-md-copying]{display:initial}.highlight code[data-md-copying] .hll{display:contents}.highlight code[data-md-copying] .md-annotation{display:none}.highlighttable{display:flow-root}.highlighttable tbody,.highlighttable td{display:block;padding:0}.highlighttable tr{display:flex}.highlighttable pre{margin:0}.highlighttable th.filename{flex-grow:1;padding:0;text-align:left}.highlighttable th.filename span.filename{margin-top:0}.highlighttable .linenos{background-color:var(--md-code-bg-color);border-bottom-left-radius:.1rem;border-top-left-radius:.1rem;font-size:.85em;padding:.7720588235em 0 .7720588235em 1.1764705882em;-webkit-user-select:none;user-select:none}.highlighttable .linenodiv{box-shadow:-.05rem 0 var(--md-default-fg-color--lightest) inset;padding-right:.5882352941em}.highlighttable .linenodiv pre{color:var(--md-default-fg-color--light);text-align:right}.highlighttable .code{flex:1;min-width:0}.linenodiv a{color:inherit}.md-typeset .highlighttable{direction:ltr;margin:1em 0}.md-typeset .highlighttable>tbody>tr>.code>div>pre>code{border-bottom-left-radius:0;border-top-left-radius:0}.md-typeset .highlight+.result{border:.05rem solid var(--md-code-bg-color);border-bottom-left-radius:.1rem;border-bottom-right-radius:.1rem;border-top-width:.1rem;margin-top:-1.125em;overflow:visible;padding:0 1em}.md-typeset .highlight+.result:after{clear:both;content:"";display:block}@media screen and (max-width:44.984375em){.md-content__inner>.highlight{margin:1em -.8rem}.md-content__inner>.highlight>.filename,.md-content__inner>.highlight>.highlighttable>tbody>tr>.code>div>pre>code,.md-content__inner>.highlight>.highlighttable>tbody>tr>.filename span.filename,.md-content__inner>.highlight>.highlighttable>tbody>tr>.linenos,.md-content__inner>.highlight>pre>code{border-radius:0}.md-content__inner>.highlight+.result{border-left-width:0;border-radius:0;border-right-width:0;margin-left:-.8rem;margin-right:-.8rem}}.md-typeset .keys kbd:after,.md-typeset .keys kbd:before{-moz-osx-font-smoothing:initial;-webkit-font-smoothing:initial;color:inherit;margin:0;position:relative}.md-typeset .keys span{color:var(--md-default-fg-color--light);padding:0 .2em}.md-typeset .keys .key-alt:before,.md-typeset .keys .key-left-alt:before,.md-typeset .keys .key-right-alt:before{content:"⎇";padding-right:.4em}.md-typeset .keys .key-command:before,.md-typeset .keys .key-left-command:before,.md-typeset .keys .key-right-command:before{content:"⌘";padding-right:.4em}.md-typeset .keys .key-control:before,.md-typeset .keys .key-left-control:before,.md-typeset .keys .key-right-control:before{content:"⌃";padding-right:.4em}.md-typeset .keys .key-left-meta:before,.md-typeset .keys .key-meta:before,.md-typeset .keys .key-right-meta:before{content:"◆";padding-right:.4em}.md-typeset .keys .key-left-option:before,.md-typeset .keys .key-option:before,.md-typeset .keys .key-right-option:before{content:"⌥";padding-right:.4em}.md-typeset .keys .key-left-shift:before,.md-typeset .keys .key-right-shift:before,.md-typeset .keys .key-shift:before{content:"⇧";padding-right:.4em}.md-typeset .keys .key-left-super:before,.md-typeset .keys .key-right-super:before,.md-typeset .keys .key-super:before{content:"❖";padding-right:.4em}.md-typeset .keys .key-left-windows:before,.md-typeset .keys .key-right-windows:before,.md-typeset .keys .key-windows:before{content:"⊞";padding-right:.4em}.md-typeset .keys .key-arrow-down:before{content:"↓";padding-right:.4em}.md-typeset .keys .key-arrow-left:before{content:"←";padding-right:.4em}.md-typeset .keys .key-arrow-right:before{content:"→";padding-right:.4em}.md-typeset .keys .key-arrow-up:before{content:"↑";padding-right:.4em}.md-typeset .keys .key-backspace:before{content:"⌫";padding-right:.4em}.md-typeset .keys .key-backtab:before{content:"⇤";padding-right:.4em}.md-typeset .keys .key-caps-lock:before{content:"⇪";padding-right:.4em}.md-typeset .keys .key-clear:before{content:"⌧";padding-right:.4em}.md-typeset .keys .key-context-menu:before{content:"☰";padding-right:.4em}.md-typeset .keys .key-delete:before{content:"⌦";padding-right:.4em}.md-typeset .keys .key-eject:before{content:"⏏";padding-right:.4em}.md-typeset .keys .key-end:before{content:"⤓";padding-right:.4em}.md-typeset .keys .key-escape:before{content:"⎋";padding-right:.4em}.md-typeset .keys .key-home:before{content:"⤒";padding-right:.4em}.md-typeset .keys .key-insert:before{content:"⎀";padding-right:.4em}.md-typeset .keys .key-page-down:before{content:"⇟";padding-right:.4em}.md-typeset .keys .key-page-up:before{content:"⇞";padding-right:.4em}.md-typeset .keys .key-print-screen:before{content:"⎙";padding-right:.4em}.md-typeset .keys .key-tab:after{content:"⇥";padding-left:.4em}.md-typeset .keys .key-num-enter:after{content:"⌤";padding-left:.4em}.md-typeset .keys .key-enter:after{content:"⏎";padding-left:.4em}:root{--md-tabbed-icon--prev:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.41 16.58 10.83 12l4.58-4.59L14 6l-6 6 6 6z"/></svg>');--md-tabbed-icon--next:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.59 16.58 13.17 12 8.59 7.41 10 6l6 6-6 6z"/></svg>')}.md-typeset .tabbed-set{border-radius:.1rem;display:flex;flex-flow:column wrap;margin:1em 0;position:relative}.md-typeset .tabbed-set>input{height:0;opacity:0;position:absolute;width:0}.md-typeset .tabbed-set>input:target{--md-scroll-offset:0.625em}.md-typeset .tabbed-set>input.focus-visible~.tabbed-labels:before{background-color:var(--md-accent-fg-color)}.md-typeset .tabbed-labels{-ms-overflow-style:none;box-shadow:0 -.05rem var(--md-default-fg-color--lightest) inset;display:flex;max-width:100%;overflow:auto;scrollbar-width:none}@media print{.md-typeset .tabbed-labels{display:contents}}@media screen{.js .md-typeset .tabbed-labels{position:relative}.js .md-typeset .tabbed-labels:before{background:var(--md-default-fg-color);bottom:0;content:"";display:block;height:2px;left:0;position:absolute;transform:translateX(var(--md-indicator-x));transition:width 225ms,background-color .25s,transform .25s;transition-timing-function:cubic-bezier(.4,0,.2,1);width:var(--md-indicator-width)}}.md-typeset .tabbed-labels::-webkit-scrollbar{display:none}.md-typeset .tabbed-labels>label{border-bottom:.1rem solid #0000;border-radius:.1rem .1rem 0 0;color:var(--md-default-fg-color--light);cursor:pointer;flex-shrink:0;font-size:.64rem;font-weight:700;padding:.78125em 1.25em .625em;scroll-margin-inline-start:1rem;transition:background-color .25s,color .25s;white-space:nowrap;width:auto}@media print{.md-typeset .tabbed-labels>label:first-child{order:1}.md-typeset .tabbed-labels>label:nth-child(2){order:2}.md-typeset .tabbed-labels>label:nth-child(3){order:3}.md-typeset .tabbed-labels>label:nth-child(4){order:4}.md-typeset .tabbed-labels>label:nth-child(5){order:5}.md-typeset .tabbed-labels>label:nth-child(6){order:6}.md-typeset .tabbed-labels>label:nth-child(7){order:7}.md-typeset .tabbed-labels>label:nth-child(8){order:8}.md-typeset .tabbed-labels>label:nth-child(9){order:9}.md-typeset .tabbed-labels>label:nth-child(10){order:10}.md-typeset .tabbed-labels>label:nth-child(11){order:11}.md-typeset .tabbed-labels>label:nth-child(12){order:12}.md-typeset .tabbed-labels>label:nth-child(13){order:13}.md-typeset .tabbed-labels>label:nth-child(14){order:14}.md-typeset .tabbed-labels>label:nth-child(15){order:15}.md-typeset .tabbed-labels>label:nth-child(16){order:16}.md-typeset .tabbed-labels>label:nth-child(17){order:17}.md-typeset .tabbed-labels>label:nth-child(18){order:18}.md-typeset .tabbed-labels>label:nth-child(19){order:19}.md-typeset .tabbed-labels>label:nth-child(20){order:20}}.md-typeset .tabbed-labels>label:hover{color:var(--md-default-fg-color)}.md-typeset .tabbed-labels>label>[href]:first-child{color:inherit}.md-typeset .tabbed-labels--linked>label{padding:0}.md-typeset .tabbed-labels--linked>label>a{display:block;padding:.78125em 1.25em .625em}.md-typeset .tabbed-content{width:100%}@media print{.md-typeset .tabbed-content{display:contents}}.md-typeset .tabbed-block{display:none}@media print{.md-typeset .tabbed-block{display:block}.md-typeset .tabbed-block:first-child{order:1}.md-typeset .tabbed-block:nth-child(2){order:2}.md-typeset .tabbed-block:nth-child(3){order:3}.md-typeset .tabbed-block:nth-child(4){order:4}.md-typeset .tabbed-block:nth-child(5){order:5}.md-typeset .tabbed-block:nth-child(6){order:6}.md-typeset .tabbed-block:nth-child(7){order:7}.md-typeset .tabbed-block:nth-child(8){order:8}.md-typeset .tabbed-block:nth-child(9){order:9}.md-typeset .tabbed-block:nth-child(10){order:10}.md-typeset .tabbed-block:nth-child(11){order:11}.md-typeset .tabbed-block:nth-child(12){order:12}.md-typeset .tabbed-block:nth-child(13){order:13}.md-typeset .tabbed-block:nth-child(14){order:14}.md-typeset .tabbed-block:nth-child(15){order:15}.md-typeset .tabbed-block:nth-child(16){order:16}.md-typeset .tabbed-block:nth-child(17){order:17}.md-typeset .tabbed-block:nth-child(18){order:18}.md-typeset .tabbed-block:nth-child(19){order:19}.md-typeset .tabbed-block:nth-child(20){order:20}}.md-typeset .tabbed-block>.highlight:first-child>pre,.md-typeset .tabbed-block>pre:first-child{margin:0}.md-typeset .tabbed-block>.highlight:first-child>pre>code,.md-typeset .tabbed-block>pre:first-child>code{border-top-left-radius:0;border-top-right-radius:0}.md-typeset .tabbed-block>.highlight:first-child>.filename{border-top-left-radius:0;border-top-right-radius:0;margin:0}.md-typeset .tabbed-block>.highlight:first-child>.highlighttable{margin:0}.md-typeset .tabbed-block>.highlight:first-child>.highlighttable>tbody>tr>.filename span.filename,.md-typeset .tabbed-block>.highlight:first-child>.highlighttable>tbody>tr>.linenos{border-top-left-radius:0;border-top-right-radius:0;margin:0}.md-typeset .tabbed-block>.highlight:first-child>.highlighttable>tbody>tr>.code>div>pre>code{border-top-left-radius:0;border-top-right-radius:0}.md-typeset .tabbed-block>.highlight:first-child+.result{margin-top:-.125em}.md-typeset .tabbed-block>.tabbed-set{margin:0}.md-typeset .tabbed-button{align-self:center;border-radius:100%;color:var(--md-default-fg-color--light);cursor:pointer;display:block;height:.9rem;margin-top:.1rem;pointer-events:auto;transition:background-color .25s;width:.9rem}.md-typeset .tabbed-button:hover{background-color:var(--md-accent-fg-color--transparent);color:var(--md-accent-fg-color)}.md-typeset .tabbed-button:after{background-color:currentcolor;content:"";display:block;height:100%;-webkit-mask-image:var(--md-tabbed-icon--prev);mask-image:var(--md-tabbed-icon--prev);-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;transition:background-color .25s,transform .25s;width:100%}.md-typeset .tabbed-control{background:linear-gradient(to right,var(--md-default-bg-color) 60%,#0000);display:flex;height:1.9rem;justify-content:start;pointer-events:none;position:absolute;transition:opacity 125ms;width:1.2rem}[dir=rtl] .md-typeset .tabbed-control{transform:rotate(180deg)}.md-typeset .tabbed-control[hidden]{opacity:0}.md-typeset .tabbed-control--next{background:linear-gradient(to left,var(--md-default-bg-color) 60%,#0000);justify-content:end;right:0}.md-typeset .tabbed-control--next .tabbed-button:after{-webkit-mask-image:var(--md-tabbed-icon--next);mask-image:var(--md-tabbed-icon--next)}@media screen and (max-width:44.984375em){[dir=ltr] .md-content__inner>.tabbed-set .tabbed-labels{padding-left:.8rem}[dir=rtl] .md-content__inner>.tabbed-set .tabbed-labels{padding-right:.8rem}.md-content__inner>.tabbed-set .tabbed-labels{margin:0 -.8rem;max-width:100vw;scroll-padding-inline-start:.8rem}[dir=ltr] .md-content__inner>.tabbed-set .tabbed-labels:after{padding-right:.8rem}[dir=rtl] .md-content__inner>.tabbed-set .tabbed-labels:after{padding-left:.8rem}.md-content__inner>.tabbed-set .tabbed-labels:after{content:""}[dir=ltr] .md-content__inner>.tabbed-set .tabbed-labels~.tabbed-control--prev{padding-left:.8rem}[dir=rtl] .md-content__inner>.tabbed-set .tabbed-labels~.tabbed-control--prev{padding-right:.8rem}[dir=ltr] .md-content__inner>.tabbed-set .tabbed-labels~.tabbed-control--prev{margin-left:-.8rem}[dir=rtl] .md-content__inner>.tabbed-set .tabbed-labels~.tabbed-control--prev{margin-right:-.8rem}.md-content__inner>.tabbed-set .tabbed-labels~.tabbed-control--prev{width:2rem}[dir=ltr] .md-content__inner>.tabbed-set .tabbed-labels~.tabbed-control--next{padding-right:.8rem}[dir=rtl] .md-content__inner>.tabbed-set .tabbed-labels~.tabbed-control--next{padding-left:.8rem}[dir=ltr] .md-content__inner>.tabbed-set .tabbed-labels~.tabbed-control--next{margin-right:-.8rem}[dir=rtl] .md-content__inner>.tabbed-set .tabbed-labels~.tabbed-control--next{margin-left:-.8rem}.md-content__inner>.tabbed-set .tabbed-labels~.tabbed-control--next{width:2rem}}@media screen{.md-typeset .tabbed-set>input:first-child:checked~.tabbed-labels>:first-child,.md-typeset .tabbed-set>input:nth-child(10):checked~.tabbed-labels>:nth-child(10),.md-typeset .tabbed-set>input:nth-child(11):checked~.tabbed-labels>:nth-child(11),.md-typeset .tabbed-set>input:nth-child(12):checked~.tabbed-labels>:nth-child(12),.md-typeset .tabbed-set>input:nth-child(13):checked~.tabbed-labels>:nth-child(13),.md-typeset .tabbed-set>input:nth-child(14):checked~.tabbed-labels>:nth-child(14),.md-typeset .tabbed-set>input:nth-child(15):checked~.tabbed-labels>:nth-child(15),.md-typeset .tabbed-set>input:nth-child(16):checked~.tabbed-labels>:nth-child(16),.md-typeset .tabbed-set>input:nth-child(17):checked~.tabbed-labels>:nth-child(17),.md-typeset .tabbed-set>input:nth-child(18):checked~.tabbed-labels>:nth-child(18),.md-typeset .tabbed-set>input:nth-child(19):checked~.tabbed-labels>:nth-child(19),.md-typeset .tabbed-set>input:nth-child(2):checked~.tabbed-labels>:nth-child(2),.md-typeset .tabbed-set>input:nth-child(20):checked~.tabbed-labels>:nth-child(20),.md-typeset .tabbed-set>input:nth-child(3):checked~.tabbed-labels>:nth-child(3),.md-typeset .tabbed-set>input:nth-child(4):checked~.tabbed-labels>:nth-child(4),.md-typeset .tabbed-set>input:nth-child(5):checked~.tabbed-labels>:nth-child(5),.md-typeset .tabbed-set>input:nth-child(6):checked~.tabbed-labels>:nth-child(6),.md-typeset .tabbed-set>input:nth-child(7):checked~.tabbed-labels>:nth-child(7),.md-typeset .tabbed-set>input:nth-child(8):checked~.tabbed-labels>:nth-child(8),.md-typeset .tabbed-set>input:nth-child(9):checked~.tabbed-labels>:nth-child(9){color:var(--md-default-fg-color)}.md-typeset .no-js .tabbed-set>input:first-child:checked~.tabbed-labels>:first-child,.md-typeset .no-js .tabbed-set>input:nth-child(10):checked~.tabbed-labels>:nth-child(10),.md-typeset .no-js .tabbed-set>input:nth-child(11):checked~.tabbed-labels>:nth-child(11),.md-typeset .no-js .tabbed-set>input:nth-child(12):checked~.tabbed-labels>:nth-child(12),.md-typeset .no-js .tabbed-set>input:nth-child(13):checked~.tabbed-labels>:nth-child(13),.md-typeset .no-js .tabbed-set>input:nth-child(14):checked~.tabbed-labels>:nth-child(14),.md-typeset .no-js .tabbed-set>input:nth-child(15):checked~.tabbed-labels>:nth-child(15),.md-typeset .no-js .tabbed-set>input:nth-child(16):checked~.tabbed-labels>:nth-child(16),.md-typeset .no-js .tabbed-set>input:nth-child(17):checked~.tabbed-labels>:nth-child(17),.md-typeset .no-js .tabbed-set>input:nth-child(18):checked~.tabbed-labels>:nth-child(18),.md-typeset .no-js .tabbed-set>input:nth-child(19):checked~.tabbed-labels>:nth-child(19),.md-typeset .no-js .tabbed-set>input:nth-child(2):checked~.tabbed-labels>:nth-child(2),.md-typeset .no-js .tabbed-set>input:nth-child(20):checked~.tabbed-labels>:nth-child(20),.md-typeset .no-js .tabbed-set>input:nth-child(3):checked~.tabbed-labels>:nth-child(3),.md-typeset .no-js .tabbed-set>input:nth-child(4):checked~.tabbed-labels>:nth-child(4),.md-typeset .no-js .tabbed-set>input:nth-child(5):checked~.tabbed-labels>:nth-child(5),.md-typeset .no-js .tabbed-set>input:nth-child(6):checked~.tabbed-labels>:nth-child(6),.md-typeset .no-js .tabbed-set>input:nth-child(7):checked~.tabbed-labels>:nth-child(7),.md-typeset .no-js .tabbed-set>input:nth-child(8):checked~.tabbed-labels>:nth-child(8),.md-typeset .no-js .tabbed-set>input:nth-child(9):checked~.tabbed-labels>:nth-child(9),.no-js .md-typeset .tabbed-set>input:first-child:checked~.tabbed-labels>:first-child,.no-js .md-typeset .tabbed-set>input:nth-child(10):checked~.tabbed-labels>:nth-child(10),.no-js .md-typeset .tabbed-set>input:nth-child(11):checked~.tabbed-labels>:nth-child(11),.no-js .md-typeset .tabbed-set>input:nth-child(12):checked~.tabbed-labels>:nth-child(12),.no-js .md-typeset .tabbed-set>input:nth-child(13):checked~.tabbed-labels>:nth-child(13),.no-js .md-typeset .tabbed-set>input:nth-child(14):checked~.tabbed-labels>:nth-child(14),.no-js .md-typeset .tabbed-set>input:nth-child(15):checked~.tabbed-labels>:nth-child(15),.no-js .md-typeset .tabbed-set>input:nth-child(16):checked~.tabbed-labels>:nth-child(16),.no-js .md-typeset .tabbed-set>input:nth-child(17):checked~.tabbed-labels>:nth-child(17),.no-js .md-typeset .tabbed-set>input:nth-child(18):checked~.tabbed-labels>:nth-child(18),.no-js .md-typeset .tabbed-set>input:nth-child(19):checked~.tabbed-labels>:nth-child(19),.no-js .md-typeset .tabbed-set>input:nth-child(2):checked~.tabbed-labels>:nth-child(2),.no-js .md-typeset .tabbed-set>input:nth-child(20):checked~.tabbed-labels>:nth-child(20),.no-js .md-typeset .tabbed-set>input:nth-child(3):checked~.tabbed-labels>:nth-child(3),.no-js .md-typeset .tabbed-set>input:nth-child(4):checked~.tabbed-labels>:nth-child(4),.no-js .md-typeset .tabbed-set>input:nth-child(5):checked~.tabbed-labels>:nth-child(5),.no-js .md-typeset .tabbed-set>input:nth-child(6):checked~.tabbed-labels>:nth-child(6),.no-js .md-typeset .tabbed-set>input:nth-child(7):checked~.tabbed-labels>:nth-child(7),.no-js .md-typeset .tabbed-set>input:nth-child(8):checked~.tabbed-labels>:nth-child(8),.no-js .md-typeset .tabbed-set>input:nth-child(9):checked~.tabbed-labels>:nth-child(9){border-color:var(--md-default-fg-color)}}.md-typeset .tabbed-set>input:first-child.focus-visible~.tabbed-labels>:first-child,.md-typeset .tabbed-set>input:nth-child(10).focus-visible~.tabbed-labels>:nth-child(10),.md-typeset .tabbed-set>input:nth-child(11).focus-visible~.tabbed-labels>:nth-child(11),.md-typeset .tabbed-set>input:nth-child(12).focus-visible~.tabbed-labels>:nth-child(12),.md-typeset .tabbed-set>input:nth-child(13).focus-visible~.tabbed-labels>:nth-child(13),.md-typeset .tabbed-set>input:nth-child(14).focus-visible~.tabbed-labels>:nth-child(14),.md-typeset .tabbed-set>input:nth-child(15).focus-visible~.tabbed-labels>:nth-child(15),.md-typeset .tabbed-set>input:nth-child(16).focus-visible~.tabbed-labels>:nth-child(16),.md-typeset .tabbed-set>input:nth-child(17).focus-visible~.tabbed-labels>:nth-child(17),.md-typeset .tabbed-set>input:nth-child(18).focus-visible~.tabbed-labels>:nth-child(18),.md-typeset .tabbed-set>input:nth-child(19).focus-visible~.tabbed-labels>:nth-child(19),.md-typeset .tabbed-set>input:nth-child(2).focus-visible~.tabbed-labels>:nth-child(2),.md-typeset .tabbed-set>input:nth-child(20).focus-visible~.tabbed-labels>:nth-child(20),.md-typeset .tabbed-set>input:nth-child(3).focus-visible~.tabbed-labels>:nth-child(3),.md-typeset .tabbed-set>input:nth-child(4).focus-visible~.tabbed-labels>:nth-child(4),.md-typeset .tabbed-set>input:nth-child(5).focus-visible~.tabbed-labels>:nth-child(5),.md-typeset .tabbed-set>input:nth-child(6).focus-visible~.tabbed-labels>:nth-child(6),.md-typeset .tabbed-set>input:nth-child(7).focus-visible~.tabbed-labels>:nth-child(7),.md-typeset .tabbed-set>input:nth-child(8).focus-visible~.tabbed-labels>:nth-child(8),.md-typeset .tabbed-set>input:nth-child(9).focus-visible~.tabbed-labels>:nth-child(9){color:var(--md-accent-fg-color)}.md-typeset .tabbed-set>input:first-child:checked~.tabbed-content>:first-child,.md-typeset .tabbed-set>input:nth-child(10):checked~.tabbed-content>:nth-child(10),.md-typeset .tabbed-set>input:nth-child(11):checked~.tabbed-content>:nth-child(11),.md-typeset .tabbed-set>input:nth-child(12):checked~.tabbed-content>:nth-child(12),.md-typeset .tabbed-set>input:nth-child(13):checked~.tabbed-content>:nth-child(13),.md-typeset .tabbed-set>input:nth-child(14):checked~.tabbed-content>:nth-child(14),.md-typeset .tabbed-set>input:nth-child(15):checked~.tabbed-content>:nth-child(15),.md-typeset .tabbed-set>input:nth-child(16):checked~.tabbed-content>:nth-child(16),.md-typeset .tabbed-set>input:nth-child(17):checked~.tabbed-content>:nth-child(17),.md-typeset .tabbed-set>input:nth-child(18):checked~.tabbed-content>:nth-child(18),.md-typeset .tabbed-set>input:nth-child(19):checked~.tabbed-content>:nth-child(19),.md-typeset .tabbed-set>input:nth-child(2):checked~.tabbed-content>:nth-child(2),.md-typeset .tabbed-set>input:nth-child(20):checked~.tabbed-content>:nth-child(20),.md-typeset .tabbed-set>input:nth-child(3):checked~.tabbed-content>:nth-child(3),.md-typeset .tabbed-set>input:nth-child(4):checked~.tabbed-content>:nth-child(4),.md-typeset .tabbed-set>input:nth-child(5):checked~.tabbed-content>:nth-child(5),.md-typeset .tabbed-set>input:nth-child(6):checked~.tabbed-content>:nth-child(6),.md-typeset .tabbed-set>input:nth-child(7):checked~.tabbed-content>:nth-child(7),.md-typeset .tabbed-set>input:nth-child(8):checked~.tabbed-content>:nth-child(8),.md-typeset .tabbed-set>input:nth-child(9):checked~.tabbed-content>:nth-child(9){display:block}:root{--md-tasklist-icon:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12m16.28-2.72a.75.75 0 0 0-.018-1.042.75.75 0 0 0-1.042-.018l-5.97 5.97-2.47-2.47a.75.75 0 0 0-1.042.018.75.75 0 0 0-.018 1.042l3 3a.75.75 0 0 0 1.06 0Z"/></svg>');--md-tasklist-icon--checked:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12m16.28-2.72a.75.75 0 0 0-.018-1.042.75.75 0 0 0-1.042-.018l-5.97 5.97-2.47-2.47a.75.75 0 0 0-1.042.018.75.75 0 0 0-.018 1.042l3 3a.75.75 0 0 0 1.06 0Z"/></svg>')}.md-typeset .task-list-item{list-style-type:none;position:relative}[dir=ltr] .md-typeset .task-list-item [type=checkbox]{left:-2em}[dir=rtl] .md-typeset .task-list-item [type=checkbox]{right:-2em}.md-typeset .task-list-item [type=checkbox]{position:absolute;top:.45em}.md-typeset .task-list-control [type=checkbox]{opacity:0;z-index:-1}[dir=ltr] .md-typeset .task-list-indicator:before{left:-1.5em}[dir=rtl] .md-typeset .task-list-indicator:before{right:-1.5em}.md-typeset .task-list-indicator:before{background-color:var(--md-default-fg-color--lightest);content:"";height:1.25em;-webkit-mask-image:var(--md-tasklist-icon);mask-image:var(--md-tasklist-icon);-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;position:absolute;top:.15em;width:1.25em}.md-typeset [type=checkbox]:checked+.task-list-indicator:before{background-color:#00e676;-webkit-mask-image:var(--md-tasklist-icon--checked);mask-image:var(--md-tasklist-icon--checked)}@media print{.giscus,[id=__comments]{display:none}}:root>*{--md-mermaid-font-family:var(--md-text-font-family),sans-serif;--md-mermaid-edge-color:var(--md-code-fg-color);--md-mermaid-node-bg-color:var(--md-accent-fg-color--transparent);--md-mermaid-node-fg-color:var(--md-accent-fg-color);--md-mermaid-label-bg-color:var(--md-default-bg-color);--md-mermaid-label-fg-color:var(--md-code-fg-color);--md-mermaid-sequence-actor-bg-color:var(--md-mermaid-label-bg-color);--md-mermaid-sequence-actor-fg-color:var(--md-mermaid-label-fg-color);--md-mermaid-sequence-actor-border-color:var(--md-mermaid-node-fg-color);--md-mermaid-sequence-actor-line-color:var(--md-default-fg-color--lighter);--md-mermaid-sequence-actorman-bg-color:var(--md-mermaid-label-bg-color);--md-mermaid-sequence-actorman-line-color:var(--md-mermaid-node-fg-color);--md-mermaid-sequence-box-bg-color:var(--md-mermaid-node-bg-color);--md-mermaid-sequence-box-fg-color:var(--md-mermaid-edge-color);--md-mermaid-sequence-label-bg-color:var(--md-mermaid-node-bg-color);--md-mermaid-sequence-label-fg-color:var(--md-mermaid-node-fg-color);--md-mermaid-sequence-loop-bg-color:var(--md-mermaid-node-bg-color);--md-mermaid-sequence-loop-fg-color:var(--md-mermaid-edge-color);--md-mermaid-sequence-loop-border-color:var(--md-mermaid-node-fg-color);--md-mermaid-sequence-message-fg-color:var(--md-mermaid-edge-color);--md-mermaid-sequence-message-line-color:var(--md-mermaid-edge-color);--md-mermaid-sequence-note-bg-color:var(--md-mermaid-label-bg-color);--md-mermaid-sequence-note-fg-color:var(--md-mermaid-edge-color);--md-mermaid-sequence-note-border-color:var(--md-mermaid-label-fg-color);--md-mermaid-sequence-number-bg-color:var(--md-mermaid-node-fg-color);--md-mermaid-sequence-number-fg-color:var(--md-accent-bg-color)}.mermaid{line-height:normal;margin:1em 0}.md-typeset .grid{grid-gap:.4rem;display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,16rem),1fr));margin:1em 0}.md-typeset .grid.cards>ol,.md-typeset .grid.cards>ul{display:contents}.md-typeset .grid.cards>ol>li,.md-typeset .grid.cards>ul>li,.md-typeset .grid>.card{border:.05rem solid var(--md-default-fg-color--lightest);border-radius:.1rem;display:block;margin:0;padding:.8rem;transition:border .25s,box-shadow .25s}.md-typeset .grid.cards>ol>li:focus-within,.md-typeset .grid.cards>ol>li:hover,.md-typeset .grid.cards>ul>li:focus-within,.md-typeset .grid.cards>ul>li:hover,.md-typeset .grid>.card:focus-within,.md-typeset .grid>.card:hover{border-color:#0000;box-shadow:var(--md-shadow-z2)}.md-typeset .grid.cards>ol>li>hr,.md-typeset .grid.cards>ul>li>hr,.md-typeset .grid>.card>hr{margin-bottom:1em;margin-top:1em}.md-typeset .grid.cards>ol>li>:first-child,.md-typeset .grid.cards>ul>li>:first-child,.md-typeset .grid>.card>:first-child{margin-top:0}.md-typeset .grid.cards>ol>li>:last-child,.md-typeset .grid.cards>ul>li>:last-child,.md-typeset .grid>.card>:last-child{margin-bottom:0}.md-typeset .grid>*,.md-typeset .grid>.admonition,.md-typeset .grid>.highlight>*,.md-typeset .grid>.highlighttable,.md-typeset .grid>.md-typeset details,.md-typeset .grid>details,.md-typeset .grid>pre{margin-bottom:0;margin-top:0}.md-typeset .grid>.highlight>pre:only-child,.md-typeset .grid>.highlight>pre>code,.md-typeset .grid>.highlighttable,.md-typeset .grid>.highlighttable>tbody,.md-typeset .grid>.highlighttable>tbody>tr,.md-typeset .grid>.highlighttable>tbody>tr>.code,.md-typeset .grid>.highlighttable>tbody>tr>.code>.highlight,.md-typeset .grid>.highlighttable>tbody>tr>.code>.highlight>pre,.md-typeset .grid>.highlighttable>tbody>tr>.code>.highlight>pre>code{height:100%}.md-typeset .grid>.tabbed-set{margin-bottom:0;margin-top:0}@media screen and (min-width:45em){[dir=ltr] .md-typeset .inline{float:left}[dir=rtl] .md-typeset .inline{float:right}[dir=ltr] .md-typeset .inline{margin-right:.8rem}[dir=rtl] .md-typeset .inline{margin-left:.8rem}.md-typeset .inline{margin-bottom:.8rem;margin-top:0;width:11.7rem}[dir=ltr] .md-typeset .inline.end{float:right}[dir=rtl] .md-typeset .inline.end{float:left}[dir=ltr] .md-typeset .inline.end{margin-left:.8rem;margin-right:0}[dir=rtl] .md-typeset .inline.end{margin-left:0;margin-right:.8rem}}������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/stylesheets/main.8608ea7d.min.css.map���������������0000664�0000000�0000000�00000132011�14753064456�0030435�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{"version":3,"sources":["src/templates/assets/stylesheets/main/components/_meta.scss","../../../../src/templates/assets/stylesheets/main.scss","src/templates/assets/stylesheets/main/_resets.scss","src/templates/assets/stylesheets/main/_colors.scss","src/templates/assets/stylesheets/main/_icons.scss","src/templates/assets/stylesheets/main/_typeset.scss","src/templates/assets/stylesheets/utilities/_break.scss","src/templates/assets/stylesheets/main/components/_author.scss","src/templates/assets/stylesheets/main/components/_banner.scss","src/templates/assets/stylesheets/main/components/_base.scss","src/templates/assets/stylesheets/main/components/_clipboard.scss","src/templates/assets/stylesheets/main/components/_code.scss","src/templates/assets/stylesheets/main/components/_consent.scss","src/templates/assets/stylesheets/main/components/_content.scss","src/templates/assets/stylesheets/main/components/_dialog.scss","src/templates/assets/stylesheets/main/components/_feedback.scss","src/templates/assets/stylesheets/main/components/_footer.scss","src/templates/assets/stylesheets/main/components/_form.scss","src/templates/assets/stylesheets/main/components/_header.scss","node_modules/material-design-color/material-color.scss","src/templates/assets/stylesheets/main/components/_nav.scss","src/templates/assets/stylesheets/main/components/_pagination.scss","src/templates/assets/stylesheets/main/components/_post.scss","src/templates/assets/stylesheets/main/components/_progress.scss","src/templates/assets/stylesheets/main/components/_search.scss","src/templates/assets/stylesheets/main/components/_select.scss","src/templates/assets/stylesheets/main/components/_sidebar.scss","src/templates/assets/stylesheets/main/components/_source.scss","src/templates/assets/stylesheets/main/components/_status.scss","src/templates/assets/stylesheets/main/components/_tabs.scss","src/templates/assets/stylesheets/main/components/_tag.scss","src/templates/assets/stylesheets/main/components/_tooltip.scss","src/templates/assets/stylesheets/main/components/_tooltip2.scss","src/templates/assets/stylesheets/main/components/_top.scss","src/templates/assets/stylesheets/main/components/_version.scss","src/templates/assets/stylesheets/main/extensions/markdown/_admonition.scss","src/templates/assets/stylesheets/main/extensions/markdown/_footnotes.scss","src/templates/assets/stylesheets/main/extensions/markdown/_toc.scss","src/templates/assets/stylesheets/main/extensions/pymdownx/_arithmatex.scss","src/templates/assets/stylesheets/main/extensions/pymdownx/_critic.scss","src/templates/assets/stylesheets/main/extensions/pymdownx/_details.scss","src/templates/assets/stylesheets/main/extensions/pymdownx/_emoji.scss","src/templates/assets/stylesheets/main/extensions/pymdownx/_highlight.scss","src/templates/assets/stylesheets/main/extensions/pymdownx/_keys.scss","src/templates/assets/stylesheets/main/extensions/pymdownx/_tabbed.scss","src/templates/assets/stylesheets/main/extensions/pymdownx/_tasklist.scss","src/templates/assets/stylesheets/main/integrations/_giscus.scss","src/templates/assets/stylesheets/main/integrations/_mermaid.scss","src/templates/assets/stylesheets/main/modifiers/_grid.scss","src/templates/assets/stylesheets/main/modifiers/_inline.scss"],"names":[],"mappings":"AA0CE,gBC6yCF,CC3zCA,KAEE,6BAAA,CAAA,0BAAA,CAAA,qBAAA,CADA,qBDzBF,CC8BA,iBAGE,kBD3BF,CC8BE,gCANF,iBAOI,yBDzBF,CACF,CC6BA,KACE,QD1BF,CC8BA,qBAIE,uCD3BF,CC+BA,EACE,aAAA,CACA,oBD5BF,CCgCA,GAME,QAAA,CALA,kBAAA,CACA,aAAA,CACA,aAAA,CAEA,gBAAA,CADA,SD3BF,CCiCA,MACE,aD9BF,CCkCA,QAEE,eD/BF,CCmCA,IACE,iBDhCF,CCoCA,MAEE,uBAAA,CADA,gBDhCF,CCqCA,MAEE,eAAA,CACA,kBDlCF,CCsCA,OAKE,gBAAA,CACA,QAAA,CAHA,mBAAA,CACA,iBAAA,CAFA,QAAA,CADA,SD9BF,CCuCA,MACE,QAAA,CACA,YDpCF,CErDA,MAIE,6BAAA,CACA,oCAAA,CACA,mCAAA,CACA,0BAAA,CACA,sCAAA,CAGA,4BAAA,CACA,2CAAA,CACA,yBAAA,CACA,qCFmDF,CE7CA,+BAIE,kBF6CF,CE1CE,oHAEE,YF4CJ,CEnCA,qCAIE,eAAA,CAGA,+BAAA,CACA,sCAAA,CACA,wCAAA,CACA,yCAAA,CACA,0BAAA,CACA,sCAAA,CACA,wCAAA,CACA,yCAAA,CAGA,0BAAA,CACA,0BAAA,CAGA,0BAAA,CACA,mCAAA,CAGA,iCAAA,CACA,kCAAA,CACA,mCAAA,CACA,mCAAA,CACA,kCAAA,CACA,iCAAA,CACA,+CAAA,CACA,6DAAA,CACA,gEAAA,CACA,4DAAA,CACA,4DAAA,CACA,6DAAA,CAGA,6CAAA,CAGA,+CAAA,CAGA,gCAAA,CACA,gCAAA,CAGA,8BAAA,CACA,kCAAA,CACA,qCAAA,CAGA,iCAAA,CAGA,kCAAA,CACA,gDAAA,CAGA,mDAAA,CACA,mDAAA,CAGA,+BAAA,CACA,0BAAA,CAGA,yBAAA,CACA,qCAAA,CACA,uCAAA,CACA,8BAAA,CACA,oCAAA,CAGA,8DAAA,CAKA,8DAAA,CAKA,0DFKF,CG9HE,aAIE,iBAAA,CAHA,aAAA,CAEA,aAAA,CADA,YHmIJ,CIxIA,KACE,kCAAA,CACA,iCAAA,CAGA,uGAAA,CAKA,mFJyIF,CInIA,iBAIE,mCAAA,CACA,6BAAA,CAFA,sCJwIF,CIlIA,aAIE,4BAAA,CADA,sCJsIF,CI7HA,MACE,wNAAA,CACA,gNAAA,CACA,iNJgIF,CIzHA,YAIE,gCAAA,CAAA,kBAAA,CAHA,eAAA,CACA,eAAA,CACA,wBJ6HF,CIxHE,aARF,YASI,gBJ2HF,CACF,CIxHE,uGAME,iBAAA,CAAA,cJ0HJ,CItHE,eAKE,uCAAA,CAHA,aAAA,CAEA,eAAA,CAHA,iBJ6HJ,CIpHE,8BAPE,eAAA,CAGA,qBJ+HJ,CI3HE,eAEE,kBAAA,CAEA,eAAA,CAHA,oBJ0HJ,CIlHE,eAEE,gBAAA,CACA,eAAA,CAEA,qBAAA,CADA,eAAA,CAHA,mBJwHJ,CIhHE,kBACE,eJkHJ,CI9GE,eAEE,eAAA,CACA,qBAAA,CAFA,YJkHJ,CI5GE,8BAKE,uCAAA,CAFA,cAAA,CACA,eAAA,CAEA,qBAAA,CAJA,eJkHJ,CI1GE,eACE,wBJ4GJ,CIzGI,oBACE,mBJ2GN,CItGE,eAGE,+DAAA,CAFA,iBAAA,CACA,cJyGJ,CIpGE,cACE,+BAAA,CACA,qBJsGJ,CInGI,mCAEE,sBJoGN,CIhGI,wCACE,+BJkGN,CI/FM,kDACE,uDJiGR,CI5FI,mBACE,kBAAA,CACA,iCJ8FN,CI1FI,4BACE,uCAAA,CACA,oBJ4FN,CIvFE,iDAIE,6BAAA,CACA,aAAA,CAFA,2BJ2FJ,CItFI,aARF,iDASI,oBJ2FJ,CACF,CIvFE,iBAIE,wCAAA,CACA,mBAAA,CACA,kCAAA,CAAA,0BAAA,CAJA,eAAA,CADA,uBAAA,CAEA,qBJ4FJ,CItFI,qCAEE,uCAAA,CADA,YJyFN,CInFE,gBAEE,iBAAA,CACA,eAAA,CAFA,iBJuFJ,CIlFI,qBAWE,kCAAA,CAAA,0BAAA,CADA,eAAA,CATA,aAAA,CAEA,QAAA,CAMA,uCAAA,CALA,aAAA,CAFA,oCAAA,CAKA,yDAAA,CACA,oBAAA,CAFA,iBAAA,CADA,iBJ0FN,CIjFM,2BACE,+CJmFR,CI/EM,wCAEE,YAAA,CADA,WJkFR,CI7EM,8CACE,oDJ+ER,CI5EQ,oDACE,0CJ8EV,CIvEE,gBAOE,4CAAA,CACA,mBAAA,CACA,mKACE,CANF,gCAAA,CAHA,oBAAA,CAEA,eAAA,CADA,uBAAA,CAIA,uBAAA,CADA,qBJ6EJ,CIlEE,iBAGE,6CAAA,CACA,kCAAA,CAAA,0BAAA,CAHA,aAAA,CACA,qBJsEJ,CIhEE,iBAGE,6DAAA,CADA,WAAA,CADA,oBJoEJ,CI9DE,kBACE,WJgEJ,CI5DE,oDAEE,qBJ8DJ,CIhEE,oDAEE,sBJ8DJ,CI1DE,iCACE,kBJ+DJ,CIhEE,iCACE,mBJ+DJ,CIhEE,iCAIE,2DJ4DJ,CIhEE,iCAIE,4DJ4DJ,CIhEE,uBAGE,uCAAA,CADA,aAAA,CAAA,cJ8DJ,CIxDE,eACE,oBJ0DJ,CItDI,qBACE,4BJwDN,CInDE,kDAGE,kBJqDJ,CIxDE,kDAGE,mBJqDJ,CIxDE,8BAEE,SJsDJ,CIlDI,0DACE,iBJqDN,CIjDI,oCACE,2BJoDN,CIjDM,0CACE,2BJoDR,CIjDQ,gDACE,2BJoDV,CIjDU,sDACE,2BJoDZ,CI5CI,0CACE,4BJ+CN,CI3CI,wDACE,kBJ+CN,CIhDI,wDACE,mBJ+CN,CIhDI,oCAEE,kBJ8CN,CI3CM,kGAEE,aJ+CR,CI3CM,0DACE,eJ8CR,CI1CM,4HAEE,kBJ6CR,CI/CM,4HAEE,mBJ6CR,CI/CM,oFACE,kBAAA,CAAA,eJ8CR,CIvCE,yBAEE,mBJyCJ,CI3CE,yBAEE,oBJyCJ,CI3CE,eACE,mBAAA,CAAA,cJ0CJ,CIrCE,kDAIE,WAAA,CADA,cJwCJ,CIhCI,4BAEE,oBJkCN,CI9BI,6BAEE,oBJgCN,CI5BI,kCACE,YJ8BN,CIzBE,mBACE,iBAAA,CAGA,eAAA,CADA,cAAA,CAEA,iBAAA,CAHA,sBAAA,CAAA,iBJ8BJ,CIxBI,uBACE,aAAA,CACA,aJ0BN,CIrBE,uBAGE,iBAAA,CADA,eAAA,CADA,eJyBJ,CInBE,mBACE,cJqBJ,CIjBE,+BAME,2CAAA,CACA,iDAAA,CACA,mBAAA,CAPA,oBAAA,CAGA,gBAAA,CAFA,cAAA,CACA,aAAA,CAEA,iBJsBJ,CIhBI,aAXF,+BAYI,aJmBJ,CACF,CIdI,iCACE,gBJgBN,CITM,8FACE,YJWR,CIPM,4FACE,eJSR,CIJI,8FACE,eJMN,CIHM,kHACE,gBJKR,CIAI,kCAGE,eAAA,CAFA,cAAA,CACA,sBAAA,CAEA,kBJEN,CIEI,kCAGE,qDAAA,CAFA,sBAAA,CACA,kBJCN,CIII,wCACE,iCJFN,CIKM,8CACE,qDAAA,CACA,sDJHR,CIQI,iCACE,iBJNN,CIWE,wCACE,cJTJ,CIYI,wDAIE,gBJJN,CIAI,wDAIE,iBJJN,CIAI,8CAME,UAAA,CALA,oBAAA,CAEA,YAAA,CAIA,oDAAA,CAAA,4CAAA,CACA,6BAAA,CAAA,qBAAA,CACA,yBAAA,CAAA,iBAAA,CACA,iCAAA,CALA,0BAAA,CAHA,WJFN,CIcI,oDACE,oDJZN,CIgBI,mEACE,kDAAA,CACA,yDAAA,CAAA,iDJdN,CIkBI,oEACE,kDAAA,CACA,0DAAA,CAAA,kDJhBN,CIqBE,wBACE,iBAAA,CACA,eAAA,CACA,iBJnBJ,CIuBE,mBACE,oBAAA,CAEA,kBAAA,CADA,eJpBJ,CIwBI,aANF,mBAOI,aJrBJ,CACF,CIwBI,8BACE,aAAA,CAEA,QAAA,CACA,eAAA,CAFA,UJpBN,CKtWI,0CDyYF,uBACE,iBJ/BF,CIkCE,4BACE,eJhCJ,CACF,CMriBE,uBAOE,kBAAA,CALA,aAAA,CACA,aAAA,CAEA,aAAA,CACA,eAAA,CALA,iBAAA,CAOA,sCACE,CALF,YN2iBJ,CMliBI,2BACE,aNoiBN,CMhiBI,6BAME,+CAAA,CAFA,yCAAA,CAHA,eAAA,CACA,eAAA,CACA,kBAAA,CAEA,iBNmiBN,CM9hBI,6BAEE,aAAA,CADA,YNiiBN,CM3hBE,wBACE,kBN6hBJ,CM1hBI,4BAIE,kBAAA,CAHA,mCAAA,CAIA,uBN0hBN,CMthBI,4DAEE,oBAAA,CADA,SNyhBN,CMrhBM,oEACE,mBNuhBR,COhlBA,WAGE,0CAAA,CADA,+BAAA,CADA,aPqlBF,COhlBE,aANF,WAOI,YPmlBF,CACF,COhlBE,oBAEE,2CAAA,CADA,gCPmlBJ,CO9kBE,kBAGE,eAAA,CADA,iBAAA,CADA,ePklBJ,CO5kBE,6BACE,WPilBJ,COllBE,6BACE,UPilBJ,COllBE,mBAEE,aAAA,CACA,cAAA,CACA,uBP8kBJ,CO3kBI,0BACE,YP6kBN,COzkBI,yBACE,UP2kBN,CQhnBA,KASE,cAAA,CARA,WAAA,CACA,iBRonBF,CKhdI,oCGtKJ,KAaI,gBR6mBF,CACF,CKrdI,oCGtKJ,KAkBI,cR6mBF,CACF,CQxmBA,KASE,2CAAA,CAPA,YAAA,CACA,qBAAA,CAKA,eAAA,CAHA,eAAA,CAJA,iBAAA,CAGA,UR8mBF,CQtmBE,aAZF,KAaI,aRymBF,CACF,CKtdI,0CGhJF,yBAII,cRsmBJ,CACF,CQ7lBA,SAEE,gBAAA,CAAA,iBAAA,CADA,eRimBF,CQ5lBA,cACE,YAAA,CAEA,qBAAA,CADA,WRgmBF,CQ5lBE,aANF,cAOI,aR+lBF,CACF,CQ3lBA,SACE,WR8lBF,CQ3lBE,gBACE,YAAA,CACA,WAAA,CACA,iBR6lBJ,CQxlBA,aACE,eAAA,CACA,sBR2lBF,CQllBA,WACE,YRqlBF,CQhlBA,WAGE,QAAA,CACA,SAAA,CAHA,iBAAA,CACA,ORqlBF,CQhlBE,uCACE,aRklBJ,CQ9kBE,+BAEE,uCAAA,CADA,kBRilBJ,CQ3kBA,SASE,2CAAA,CACA,mBAAA,CAFA,gCAAA,CADA,gBAAA,CADA,YAAA,CAMA,SAAA,CADA,uCAAA,CANA,mBAAA,CAJA,cAAA,CAYA,2BAAA,CATA,URqlBF,CQzkBE,eAEE,SAAA,CAIA,uBAAA,CAHA,oEACE,CAHF,UR8kBJ,CQhkBA,MACE,WRmkBF,CS5tBA,MACE,6PT8tBF,CSxtBA,cASE,mBAAA,CAFA,0CAAA,CACA,cAAA,CAFA,YAAA,CAIA,uCAAA,CACA,oBAAA,CAVA,iBAAA,CAEA,UAAA,CADA,QAAA,CAUA,qBAAA,CAPA,WAAA,CADA,STmuBF,CSxtBE,aAfF,cAgBI,YT2tBF,CACF,CSxtBE,kCAEE,uCAAA,CADA,YT2tBJ,CSttBE,qBACE,uCTwtBJ,CSptBE,wCACE,+BTstBJ,CSjtBE,oBAME,6BAAA,CADA,UAAA,CAJA,aAAA,CAEA,cAAA,CACA,aAAA,CAGA,2CAAA,CAAA,mCAAA,CAEA,4BAAA,CAAA,oBAAA,CADA,6BAAA,CAAA,qBAAA,CAEA,yBAAA,CAAA,iBAAA,CARA,aT2tBJ,CS/sBE,sBACE,cTitBJ,CS9sBI,2BACE,2CTgtBN,CS1sBI,kEAEE,uDAAA,CADA,+BT6sBN,CU/wBE,8BACE,YVkxBJ,CWvxBA,mBACE,GACE,SAAA,CACA,0BX0xBF,CWvxBA,GACE,SAAA,CACA,uBXyxBF,CACF,CWrxBA,mBACE,GACE,SXuxBF,CWpxBA,GACE,SXsxBF,CACF,CW3wBE,qBASE,2BAAA,CAFA,mCAAA,CAAA,2BAAA,CADA,0BAAA,CADA,WAAA,CAGA,SAAA,CAPA,cAAA,CACA,KAAA,CAEA,UAAA,CADA,SXmxBJ,CWzwBE,mBAcE,mDAAA,CANA,2CAAA,CACA,QAAA,CACA,mBAAA,CARA,QAAA,CASA,kDACE,CAPF,eAAA,CAEA,aAAA,CADA,SAAA,CALA,cAAA,CAGA,UAAA,CADA,SXoxBJ,CWrwBE,kBACE,aXuwBJ,CWnwBE,sBACE,YAAA,CACA,YXqwBJ,CWlwBI,oCACE,aXowBN,CW/vBE,sBACE,mBXiwBJ,CW9vBI,6CACE,cXgwBN,CK1pBI,0CMvGA,6CAKI,aAAA,CAEA,gBAAA,CACA,iBAAA,CAFA,UXkwBN,CACF,CW3vBE,kBACE,cX6vBJ,CY91BA,YACE,WAAA,CAIA,WZ81BF,CY31BE,mBAEE,qBAAA,CADA,iBZ81BJ,CKjsBI,sCOtJE,4EACE,kBZ01BN,CYt1BI,0JACE,mBZw1BN,CYz1BI,8EACE,kBZw1BN,CACF,CYn1BI,0BAGE,UAAA,CAFA,aAAA,CACA,YZs1BN,CYj1BI,+BACE,eZm1BN,CY70BE,8BACE,WZk1BJ,CYn1BE,8BACE,UZk1BJ,CYn1BE,8BAIE,iBZ+0BJ,CYn1BE,8BAIE,kBZ+0BJ,CYn1BE,oBAGE,cAAA,CADA,SZi1BJ,CY50BI,aAPF,oBAQI,YZ+0BJ,CACF,CY50BI,gCACE,yCZ80BN,CY10BI,wBACE,cAAA,CACA,kBZ40BN,CYz0BM,kCACE,oBZ20BR,Ca54BA,qBAEE,Wb05BF,Ca55BA,qBAEE,Ub05BF,Ca55BA,WAQE,2CAAA,CACA,mBAAA,CANA,YAAA,CAOA,8BAAA,CALA,iBAAA,CAMA,SAAA,CALA,mBAAA,CACA,mBAAA,CANA,cAAA,CAcA,0BAAA,CAHA,wCACE,CATF,Sbw5BF,Ca14BE,aAlBF,WAmBI,Yb64BF,CACF,Ca14BE,mBAEE,SAAA,CADA,mBAAA,CAKA,uBAAA,CAHA,kEb64BJ,Cat4BE,kBAEE,gCAAA,CADA,eby4BJ,Cc36BA,aACE,gBAAA,CACA,iBd86BF,Cc36BE,sBAGE,WAAA,CADA,QAAA,CADA,Sd+6BJ,Ccz6BE,oBAEE,eAAA,CADA,ed46BJ,Ccv6BE,oBACE,iBdy6BJ,Ccr6BE,mBAEE,YAAA,CACA,cAAA,CACA,6BAAA,CAHA,iBd06BJ,Ccp6BI,iDACE,yCds6BN,Ccl6BI,6BACE,iBdo6BN,Cc/5BE,mBAGE,uCAAA,CACA,cAAA,CAHA,aAAA,CACA,cAAA,CAGA,sBdi6BJ,Cc95BI,gDACE,+Bdg6BN,Cc55BI,4BACE,0CAAA,CACA,mBd85BN,Ccz5BE,mBAEE,SAAA,CADA,iBAAA,CAKA,2BAAA,CAHA,8Dd45BJ,Cct5BI,qBAEE,aAAA,CADA,edy5BN,Ccp5BI,6BACE,SAAA,CACA,uBds5BN,Ccj5BE,aAnFF,aAoFI,Ydo5BF,CACF,Cez+BA,WAEE,0CAAA,CADA,+Bf6+BF,Cez+BE,aALF,WAMI,Yf4+BF,CACF,Cez+BE,kBACE,6BAAA,CAEA,aAAA,CADA,af4+BJ,Cex+BI,gCACE,Yf0+BN,Cer+BE,iBAOE,eAAA,CANA,YAAA,CAKA,cAAA,CAGA,mBAAA,CAAA,eAAA,CADA,cAAA,CAGA,uCAAA,CADA,eAAA,CAEA,uBfm+BJ,Ceh+BI,8CACE,Ufk+BN,Ce99BI,+BACE,oBfg+BN,CKl1BI,0CUvIE,uBACE,af49BN,Cez9BM,yCACE,Yf29BR,CACF,Cet9BI,iCACE,gBfy9BN,Ce19BI,iCACE,iBfy9BN,Ce19BI,uBAEE,gBfw9BN,Cer9BM,iCACE,efu9BR,Cej9BE,kBACE,WAAA,CAIA,eAAA,CADA,mBAAA,CAFA,6BAAA,CACA,cAAA,CAGA,kBfm9BJ,Ce/8BE,mBAEE,YAAA,CADA,afk9BJ,Ce78BE,sBACE,gBAAA,CACA,Uf+8BJ,Ce18BA,gBACE,gDf68BF,Ce18BE,uBACE,YAAA,CACA,cAAA,CACA,6BAAA,CACA,af48BJ,Cex8BE,kCACE,sCf08BJ,Cev8BI,gFACE,+Bfy8BN,Cej8BA,cAKE,wCAAA,CADA,gBAAA,CADA,iBAAA,CADA,eAAA,CADA,Ufw8BF,CK55BI,mCU7CJ,cASI,Ufo8BF,CACF,Ceh8BE,yBACE,sCfk8BJ,Ce37BA,WACE,mBAAA,CACA,SAAA,CAEA,cAAA,CADA,qBf+7BF,CK36BI,mCUvBJ,WAQI,ef87BF,CACF,Ce37BE,iBACE,oBAAA,CAEA,aAAA,CACA,iBAAA,CAFA,Yf+7BJ,Ce17BI,wBACE,ef47BN,Cex7BI,qBAGE,iBAAA,CAFA,gBAAA,CACA,mBf27BN,CgBjmCE,uBAME,kBAAA,CACA,mBAAA,CAHA,gCAAA,CACA,cAAA,CAJA,oBAAA,CAEA,eAAA,CADA,kBAAA,CAMA,gEhBomCJ,CgB9lCI,gCAEE,2CAAA,CACA,uCAAA,CAFA,gChBkmCN,CgB5lCI,0DAEE,0CAAA,CACA,sCAAA,CAFA,+BhBgmCN,CgBzlCE,gCAKE,4BhB8lCJ,CgBnmCE,gEAME,6BhB6lCJ,CgBnmCE,gCAME,4BhB6lCJ,CgBnmCE,sBAIE,6DAAA,CAGA,8BAAA,CAJA,eAAA,CAFA,aAAA,CACA,eAAA,CAMA,sChB2lCJ,CgBtlCI,wDACE,6CAAA,CACA,8BhBwlCN,CgBplCI,+BACE,UhBslCN,CiBzoCA,WAOE,2CAAA,CAGA,8CACE,CALF,gCAAA,CADA,aAAA,CAHA,MAAA,CADA,eAAA,CACA,OAAA,CACA,KAAA,CACA,SjBgpCF,CiBroCE,aAfF,WAgBI,YjBwoCF,CACF,CiBroCE,mBAIE,2BAAA,CAHA,iEjBwoCJ,CiBjoCE,mBACE,kDACE,CAEF,kEjBioCJ,CiB3nCE,kBAEE,kBAAA,CADA,YAAA,CAEA,ejB6nCJ,CiBznCE,mBAKE,kBAAA,CAEA,cAAA,CAHA,YAAA,CAIA,uCAAA,CALA,aAAA,CAFA,iBAAA,CAQA,uBAAA,CAHA,qBAAA,CAJA,SjBkoCJ,CiBxnCI,yBACE,UjB0nCN,CiBtnCI,iCACE,oBjBwnCN,CiBpnCI,uCAEE,uCAAA,CADA,YjBunCN,CiBlnCI,2BAEE,YAAA,CADA,ajBqnCN,CKvgCI,0CY/GA,2BAMI,YjBonCN,CACF,CiBjnCM,8DAIE,iBAAA,CAHA,aAAA,CAEA,aAAA,CADA,UjBqnCR,CKriCI,mCYzEA,iCAII,YjB8mCN,CACF,CiB3mCM,wCACE,YjB6mCR,CiBzmCM,+CACE,oBjB2mCR,CKhjCI,sCYtDA,iCAII,YjBsmCN,CACF,CiBjmCE,kBAEE,YAAA,CACA,cAAA,CAFA,iBAAA,CAIA,8DACE,CAFF,kBjBomCJ,CiB9lCI,oCAGE,SAAA,CADA,mBAAA,CAKA,6BAAA,CAHA,8DACE,CAJF,UjBomCN,CiB3lCM,8CACE,8BjB6lCR,CiBxlCI,8BACE,ejB0lCN,CiBrlCE,4BAGE,gBAAA,CAAA,kBjBylCJ,CiB5lCE,4BAGE,iBAAA,CAAA,iBjBylCJ,CiB5lCE,kBACE,WAAA,CAGA,eAAA,CAFA,aAAA,CAGA,kBjBulCJ,CiBplCI,4CAGE,SAAA,CADA,mBAAA,CAKA,8BAAA,CAHA,8DACE,CAJF,UjB0lCN,CiBjlCM,sDACE,6BjBmlCR,CiB/kCM,8DAGE,SAAA,CADA,mBAAA,CAKA,uBAAA,CAHA,8DACE,CAJF,SjBqlCR,CiB1kCI,uCAGE,WAAA,CAFA,iBAAA,CACA,UjB6kCN,CiBvkCE,mBACE,YAAA,CACA,aAAA,CACA,cAAA,CAEA,+CACE,CAFF,kBjB0kCJ,CiBpkCI,8DACE,WAAA,CACA,SAAA,CACA,oCjBskCN,CiB7jCI,yBACE,QjB+jCN,CiB1jCE,mBACE,YjB4jCJ,CKxnCI,mCY2DF,6BAQI,gBjB4jCJ,CiBpkCA,6BAQI,iBjB4jCJ,CiBpkCA,mBAKI,aAAA,CAEA,iBAAA,CADA,ajB8jCJ,CACF,CKhoCI,sCY2DF,6BAaI,kBjB4jCJ,CiBzkCA,6BAaI,mBjB4jCJ,CACF,CD3yCA,SAGE,uCAAA,CAFA,eAAA,CACA,eC+yCF,CD3yCE,eACE,mBAAA,CACA,cAAA,CAGA,eAAA,CADA,QAAA,CADA,SC+yCJ,CDzyCE,sCAEE,WAAA,CADA,iBAAA,CAAA,kBC4yCJ,CDvyCE,eACE,+BCyyCJ,CDtyCI,0CACE,+BCwyCN,CDlyCA,UAKE,wBmBaa,CnBZb,oBAAA,CAFA,UAAA,CAHA,oBAAA,CAEA,eAAA,CADA,0BAAA,CAAA,2BCyyCF,CmB30CA,MACE,uMAAA,CACA,sLAAA,CACA,iNnB80CF,CmBx0CA,QACE,eAAA,CACA,enB20CF,CmBx0CE,eAKE,uCAAA,CAJA,aAAA,CAGA,eAAA,CADA,eAAA,CADA,eAAA,CAIA,sBnB00CJ,CmBv0CI,+BACE,YnBy0CN,CmBt0CM,mCAEE,WAAA,CADA,UnBy0CR,CmBj0CQ,sFAME,iBAAA,CALA,aAAA,CAGA,aAAA,CADA,cAAA,CAEA,kBAAA,CAHA,UnBu0CV,CmB5zCE,cAGE,eAAA,CADA,QAAA,CADA,SnBg0CJ,CmB1zCE,cAGE,sBAAA,CAFA,YAAA,CACA,SAAA,CAEA,iBAAA,CACA,uBAAA,CACA,sBnB4zCJ,CmBzzCI,sBACE,uCnB2zCN,CmBpzCM,6EAEE,+BnBszCR,CmBjzCI,2BAIE,iBnBgzCN,CmB5yCI,4CACE,gBnB8yCN,CmB/yCI,4CACE,iBnB8yCN,CmB1yCI,kBAME,iBAAA,CAFA,aAAA,CACA,YAAA,CAFA,iBnB6yCN,CmBtyCI,sGACE,+BAAA,CACA,cnBwyCN,CmBpyCI,4BACE,uCAAA,CACA,oBnBsyCN,CmBlyCI,0CACE,YnBoyCN,CmBjyCM,yDAIE,6BAAA,CAHA,aAAA,CAEA,WAAA,CAEA,qCAAA,CAAA,6BAAA,CAHA,UnBsyCR,CmB/xCM,kDACE,YnBiyCR,CmB3xCE,iCACE,YnB6xCJ,CmB1xCI,6CACE,WAAA,CAGA,WnB0xCN,CmBrxCE,cACE,anBuxCJ,CmBnxCE,gBACE,YnBqxCJ,CKtvCI,0CcxBA,0CASE,2CAAA,CAHA,YAAA,CACA,qBAAA,CACA,WAAA,CALA,MAAA,CADA,iBAAA,CACA,OAAA,CACA,KAAA,CACA,SnBoxCJ,CmBzwCI,+DACE,eAAA,CACA,enB2wCN,CmBvwCI,gCAQE,qDAAA,CAHA,uCAAA,CAEA,cAAA,CALA,aAAA,CAEA,kBAAA,CADA,wBAAA,CAFA,iBAAA,CAKA,kBnB2wCN,CmBtwCM,wDAEE,UnB6wCR,CmB/wCM,wDAEE,WnB6wCR,CmB/wCM,8CAIE,aAAA,CAEA,aAAA,CACA,YAAA,CANA,iBAAA,CAEA,SAAA,CAEA,YnB0wCR,CmBrwCQ,oDAKE,6BAAA,CADA,UAAA,CAHA,aAAA,CAEA,WAAA,CAGA,2CAAA,CAAA,mCAAA,CAEA,4BAAA,CAAA,oBAAA,CADA,6BAAA,CAAA,qBAAA,CAEA,yBAAA,CAAA,iBAAA,CAPA,UnB8wCV,CmBlwCM,8CAIE,2CAAA,CACA,gEACE,CALF,eAAA,CAEA,4BAAA,CADA,kBnBuwCR,CmBhwCQ,2DACE,YnBkwCV,CmB7vCM,8CAGE,2CAAA,CADA,gCAAA,CADA,enBiwCR,CmB3vCM,yCAIE,aAAA,CAFA,UAAA,CAIA,YAAA,CADA,aAAA,CAJA,iBAAA,CACA,WAAA,CACA,SnBgwCR,CmBxvCI,+BACE,MnB0vCN,CmBtvCI,+BACE,4DnBwvCN,CmBrvCM,qDACE,+BnBuvCR,CmBpvCQ,sHACE,+BnBsvCV,CmBhvCI,+BAEE,YAAA,CADA,mBnBmvCN,CmB/uCM,mCACE,enBivCR,CmB7uCM,6CACE,SnB+uCR,CmB3uCM,uDAGE,mBnB8uCR,CmBjvCM,uDAGE,kBnB8uCR,CmBjvCM,6CAIE,gBAAA,CAFA,aAAA,CADA,YnBgvCR,CmB1uCQ,mDAKE,6BAAA,CADA,UAAA,CAHA,aAAA,CAEA,WAAA,CAGA,2CAAA,CAAA,mCAAA,CAEA,4BAAA,CAAA,oBAAA,CADA,6BAAA,CAAA,qBAAA,CAEA,yBAAA,CAAA,iBAAA,CAPA,UnBmvCV,CmBnuCM,+CACE,mBnBquCR,CmB7tCM,4CAEE,wBAAA,CADA,enBguCR,CmB5tCQ,oEACE,mBnB8tCV,CmB/tCQ,oEACE,oBnB8tCV,CmB1tCQ,4EACE,iBnB4tCV,CmB7tCQ,4EACE,kBnB4tCV,CmBxtCQ,oFACE,mBnB0tCV,CmB3tCQ,oFACE,oBnB0tCV,CmBttCQ,4FACE,mBnBwtCV,CmBztCQ,4FACE,oBnBwtCV,CmBjtCE,mBACE,wBnBmtCJ,CmB/sCE,wBACE,YAAA,CACA,SAAA,CAIA,0BAAA,CAHA,oEnBktCJ,CmB5sCI,kCACE,2BnB8sCN,CmBzsCE,gCACE,SAAA,CAIA,uBAAA,CAHA,qEnB4sCJ,CmBtsCI,8CAEE,kCAAA,CAAA,0BnBusCN,CACF,CKz4CI,0Cc0MA,0CACE,YnBksCJ,CmB/rCI,yDACE,UnBisCN,CmB7rCI,wDACE,YnB+rCN,CmB3rCI,kDACE,YnB6rCN,CmBxrCE,gBAIE,iDAAA,CADA,gCAAA,CAFA,aAAA,CACA,enB4rCJ,CACF,CKt8CM,+DcmRF,6CACE,YnBsrCJ,CmBnrCI,4DACE,UnBqrCN,CmBjrCI,2DACE,YnBmrCN,CmB/qCI,qDACE,YnBirCN,CACF,CK97CI,mCc7JJ,QAgbI,oBnB+qCF,CmBzqCI,kCAME,qCAAA,CACA,qDAAA,CANA,eAAA,CACA,KAAA,CAGA,SnB2qCN,CmBtqCM,6CACE,uBnBwqCR,CmBpqCM,gDACE,YnBsqCR,CmBjqCI,2CACE,kBnBoqCN,CmBrqCI,2CACE,mBnBoqCN,CmBrqCI,iCAEE,oBnBmqCN,CmB5pCI,yDACE,kBnB8pCN,CmB/pCI,yDACE,iBnB8pCN,CACF,CKv9CI,sCc7JJ,QA4dI,oBAAA,CACA,oDnB4pCF,CmBtpCI,gCAME,qCAAA,CACA,qDAAA,CANA,eAAA,CACA,KAAA,CAGA,SnBwpCN,CmBnpCM,8CACE,uBnBqpCR,CmBjpCM,8CACE,YnBmpCR,CmB9oCI,yCACE,kBnBipCN,CmBlpCI,yCACE,mBnBipCN,CmBlpCI,+BAEE,oBnBgpCN,CmBzoCI,uDACE,kBnB2oCN,CmB5oCI,uDACE,iBnB2oCN,CmBtoCE,wBACE,YAAA,CAGA,oCAAA,CAEA,SAAA,CACA,6FACE,CAHF,mBnBwoCJ,CmBhoCI,sCACE,enBkoCN,CmB7nCE,iFACE,oCAAA,CAEA,SAAA,CACA,4FACE,CAHF,kBnBioCJ,CmBxnCE,iDACE,enB0nCJ,CmBtnCE,6CACE,YnBwnCJ,CmBpnCE,uBACE,aAAA,CACA,enBsnCJ,CmBnnCI,kCACE,enBqnCN,CmBjnCI,qCACE,enBmnCN,CmBhnCM,0CACE,uCnBknCR,CmB9mCM,6DACE,mBnBgnCR,CmB5mCM,yFAEE,YnB8mCR,CmBzmCI,yCAEE,kBnB6mCN,CmB/mCI,yCAEE,mBnB6mCN,CmB/mCI,+BACE,aAAA,CAGA,SAAA,CADA,kBnB4mCN,CmBxmCM,2DACE,SnB0mCR,CmBpmCE,cAGE,kBAAA,CADA,YAAA,CAEA,gCAAA,CAHA,WnBymCJ,CmBnmCI,oBACE,uDnBqmCN,CmBjmCI,oBAME,6BAAA,CACA,kBAAA,CAFA,UAAA,CAJA,oBAAA,CAEA,WAAA,CAKA,2CAAA,CAAA,mCAAA,CAEA,4BAAA,CAAA,oBAAA,CADA,6BAAA,CAAA,qBAAA,CAEA,yBAAA,CAAA,iBAAA,CACA,yBAAA,CARA,qBAAA,CAFA,UnB6mCN,CmBhmCM,8BACE,wBnBkmCR,CmB9lCM,kKAEE,uBnB+lCR,CmBjlCI,2EACE,YnBslCN,CmBnlCM,oDACE,anBqlCR,CmBllCQ,kEAKE,qCAAA,CACA,qDAAA,CAFA,YAAA,CAHA,eAAA,CACA,KAAA,CACA,SnBulCV,CmBjlCU,0FACE,mBnBmlCZ,CmB9kCQ,0EACE,QnBglCV,CmB3kCM,sFACE,kBnB6kCR,CmB9kCM,sFACE,mBnB6kCR,CmBzkCM,kDACE,uCnB2kCR,CmBrkCI,2CACE,oCAAA,CAEA,SAAA,CADA,kBnBwkCN,CmB/jCI,qFAIE,mDnBkkCN,CmBtkCI,qFAIE,oDnBkkCN,CmBtkCI,2EACE,aAAA,CACA,oBAAA,CAGA,SAAA,CAFA,kBnBmkCN,CmB9jCM,yFAEE,gBAAA,CADA,gBnBikCR,CmB5jCM,0FACE,YnB8jCR,CACF,CoBvxDA,eAKE,eAAA,CACA,eAAA,CAJA,SpB8xDF,CoBvxDE,gCANA,kBAAA,CAFA,YAAA,CAGA,sBpBqyDF,CoBhyDE,iBAOE,mBAAA,CAFA,aAAA,CADA,gBAAA,CAEA,iBpB0xDJ,CoBrxDE,wBAEE,qDAAA,CADA,uCpBwxDJ,CoBnxDE,qBACE,6CpBqxDJ,CoBhxDI,sDAEE,uDAAA,CADA,+BpBmxDN,CoB/wDM,8DACE,+BpBixDR,CoB5wDI,mCACE,uCAAA,CACA,oBpB8wDN,CoB1wDI,yBAKE,iBAAA,CADA,yCAAA,CAHA,aAAA,CAEA,eAAA,CADA,YpB+wDN,CqB/zDE,eAGE,+DAAA,CADA,oBAAA,CADA,qBrBo0DJ,CK/oDI,0CgBtLF,eAOI,YrBk0DJ,CACF,CqB5zDM,6BACE,oBrB8zDR,CqBxzDE,kBACE,YAAA,CACA,qBAAA,CACA,SAAA,CACA,qBrB0zDJ,CqBnzDI,0BACE,sBrBqzDN,CqBlzDM,gEACE,+BrBozDR,CqB9yDE,gBAEE,uCAAA,CADA,erBizDJ,CqB5yDE,kBACE,oBrB8yDJ,CqB3yDI,mCAGE,kBAAA,CAFA,YAAA,CACA,SAAA,CAEA,iBrB6yDN,CqBzyDI,oCAIE,kBAAA,CAHA,mBAAA,CACA,kBAAA,CACA,SAAA,CAGA,QAAA,CADA,iBrB4yDN,CqBvyDI,0DACE,kBrByyDN,CqB1yDI,0DACE,iBrByyDN,CqBryDI,iDACE,uBAAA,CAEA,YrBsyDN,CqBjyDE,4BACE,YrBmyDJ,CqB5xDA,YAGE,kBAAA,CAFA,YAAA,CAIA,eAAA,CAHA,SAAA,CAIA,eAAA,CAFA,UrBiyDF,CqB5xDE,yBACE,WrB8xDJ,CqBvxDA,kBACE,YrB0xDF,CKltDI,0CgBzEJ,kBAKI,wBrB0xDF,CACF,CqBvxDE,qCACE,WAAA,CACA,WrByxDJ,CK9uDI,sCgB7CF,+CAMI,kBrByxDJ,CqB/xDA,+CAMI,mBrByxDJ,CACF,CKhuDI,0CgBpDJ,6BAMI,SAAA,CAFA,eAAA,CACA,UrBsxDF,CqBnxDE,qDACE,gBrBqxDJ,CqBlxDE,gDACE,SrBoxDJ,CqBjxDE,4CACE,iBAAA,CAAA,kBrBmxDJ,CqBhxDE,2CAEE,WAAA,CADA,crBmxDJ,CqB/wDE,2CACE,mBAAA,CACA,cAAA,CACA,SAAA,CACA,oBAAA,CAAA,iBrBixDJ,CqB9wDE,2CACE,SrBgxDJ,CqB7wDE,qCAEE,WAAA,CACA,eAAA,CAFA,erBixDJ,CACF,CsB57DA,MACE,qBAAA,CACA,yBtB+7DF,CsBz7DA,aAME,qCAAA,CADA,cAAA,CAEA,0FACE,CAPF,cAAA,CACA,KAAA,CAaA,mDAAA,CACA,qBAAA,CAJA,wFACE,CATF,UAAA,CADA,StBm8DF,CuB98DA,MACE,mfvBi9DF,CuB38DA,WACE,iBvB88DF,CKhzDI,mCkB/JJ,WAKI,evB88DF,CACF,CuB38DE,kBACE,YvB68DJ,CuBz8DE,oBAEE,SAAA,CADA,SvB48DJ,CKzyDI,0CkBpKF,8BAOI,YvBo9DJ,CuB39DA,8BAOI,avBo9DJ,CuB39DA,oBAaI,2CAAA,CACA,kBAAA,CAJA,WAAA,CACA,eAAA,CACA,mBAAA,CANA,iBAAA,CAEA,SAAA,CAUA,uBAAA,CAHA,4CACE,CAPF,UvBk9DJ,CuBt8DI,+DACE,SAAA,CACA,oCvBw8DN,CACF,CK/0DI,mCkBjJF,8BAgCI,MvB28DJ,CuB3+DA,8BAgCI,OvB28DJ,CuB3+DA,oBAqCI,0BAAA,CADA,cAAA,CADA,QAAA,CAJA,cAAA,CAEA,KAAA,CAKA,sDACE,CALF,OvBy8DJ,CuB/7DI,+DAME,YAAA,CACA,SAAA,CACA,4CACE,CARF,UvBo8DN,CACF,CK90DI,0CkBxGA,+DAII,mBvBs7DN,CACF,CK53DM,+DkB/DF,+DASI,mBvBs7DN,CACF,CKj4DM,+DkB/DF,+DAcI,mBvBs7DN,CACF,CuBj7DE,kBAEE,kCAAA,CAAA,0BvBk7DJ,CKh2DI,0CkBpFF,4BAOI,MvB07DJ,CuBj8DA,4BAOI,OvB07DJ,CuBj8DA,kBAWI,QAAA,CAEA,SAAA,CADA,eAAA,CANA,cAAA,CAEA,KAAA,CAWA,wBAAA,CALA,qGACE,CALF,OAAA,CADA,SvBw7DJ,CuB36DI,4BACE,yBvB66DN,CuBz6DI,6DAEE,WAAA,CACA,SAAA,CAMA,uBAAA,CALA,sGACE,CAJF,UvB+6DN,CACF,CK34DI,mCkBjEF,4BA2CI,WvBy6DJ,CuBp9DA,4BA2CI,UvBy6DJ,CuBp9DA,kBA6CI,eAAA,CAHA,iBAAA,CAIA,8CAAA,CAFA,avBw6DJ,CACF,CK16DM,+DkBOF,6DAII,avBm6DN,CACF,CKz5DI,sCkBfA,6DASI,avBm6DN,CACF,CuB95DE,iBAIE,2CAAA,CACA,0BAAA,CAFA,aAAA,CAFA,iBAAA,CAKA,2CACE,CALF,SvBo6DJ,CKt6DI,mCkBAF,iBAaI,0BAAA,CACA,mBAAA,CAFA,avBg6DJ,CuB35DI,uBACE,0BvB65DN,CACF,CuBz5DI,4DAEE,2CAAA,CACA,6BAAA,CACA,8BAAA,CAHA,gCvB85DN,CuBt5DE,4BAKE,mBAAA,CAAA,oBvB25DJ,CuBh6DE,4BAKE,mBAAA,CAAA,oBvB25DJ,CuBh6DE,kBAQE,gBAAA,CAFA,eAAA,CAFA,WAAA,CAHA,iBAAA,CAMA,sBAAA,CAJA,UAAA,CADA,SvB85DJ,CuBr5DI,+BACE,qBvBu5DN,CuBn5DI,kEAEE,uCvBo5DN,CuBh5DI,6BACE,YvBk5DN,CKt7DI,0CkBaF,kBA8BI,eAAA,CADA,aAAA,CADA,UvBm5DJ,CACF,CKh9DI,mCkBgCF,4BAmCI,mBvBm5DJ,CuBt7DA,4BAmCI,oBvBm5DJ,CuBt7DA,kBAqCI,aAAA,CADA,evBk5DJ,CuB94DI,+BACE,uCvBg5DN,CuB54DI,mCACE,gCvB84DN,CuB14DI,6DACE,kBvB44DN,CuBz4DM,8EACE,uCvB24DR,CuBv4DM,0EACE,WvBy4DR,CACF,CuBn4DE,iBAIE,cAAA,CAHA,oBAAA,CAEA,aAAA,CAEA,kCACE,CAJF,YvBw4DJ,CuBh4DI,uBACE,UvBk4DN,CuB93DI,yCAEE,UvBk4DN,CuBp4DI,yCAEE,WvBk4DN,CuBp4DI,+BACE,iBAAA,CAEA,SAAA,CACA,SvBg4DN,CuB73DM,6CACE,oBvB+3DR,CKt+DI,0CkB+FA,yCAaI,UvB+3DN,CuB54DE,yCAaI,WvB+3DN,CuB54DE,+BAcI,SvB83DN,CuB33DM,+CACE,YvB63DR,CACF,CKlgEI,mCkBkHA,+BAwBI,mBvB43DN,CuBz3DM,8CACE,YvB23DR,CACF,CuBr3DE,8BAEE,WvB03DJ,CuB53DE,8BAEE,UvB03DJ,CuB53DE,oBAKE,mBAAA,CAJA,iBAAA,CAEA,SAAA,CACA,SvBw3DJ,CK9/DI,0CkBkIF,8BASI,WvBw3DJ,CuBj4DA,8BASI,UvBw3DJ,CuBj4DA,oBAUI,SvBu3DJ,CACF,CuBp3DI,uCACE,iBvB03DN,CuB33DI,uCACE,kBvB03DN,CuB33DI,6BAEE,uCAAA,CACA,SAAA,CAIA,oBAAA,CAHA,+DvBu3DN,CuBj3DM,iDAEE,uCAAA,CADA,YvBo3DR,CuB/2DM,gGAGE,SAAA,CADA,mBAAA,CAEA,kBvBg3DR,CuB72DQ,sGACE,UvB+2DV,CuBx2DE,8BAOE,mBAAA,CAAA,oBvB+2DJ,CuBt3DE,8BAOE,mBAAA,CAAA,oBvB+2DJ,CuBt3DE,oBAIE,kBAAA,CAKA,yCAAA,CANA,YAAA,CAKA,eAAA,CAFA,WAAA,CAKA,SAAA,CAVA,iBAAA,CACA,KAAA,CAUA,uBAAA,CAFA,kBAAA,CALA,UvBi3DJ,CKxjEI,mCkBkMF,8BAgBI,mBvB22DJ,CuB33DA,8BAgBI,oBvB22DJ,CuB33DA,oBAiBI,evB02DJ,CACF,CuBv2DI,+DACE,SAAA,CACA,0BvBy2DN,CuBp2DE,6BAKE,+BvBu2DJ,CuB52DE,0DAME,gCvBs2DJ,CuB52DE,6BAME,+BvBs2DJ,CuB52DE,mBAIE,eAAA,CAHA,iBAAA,CAEA,UAAA,CADA,SvB02DJ,CKvjEI,0CkB2MF,mBAWI,QAAA,CADA,UvBu2DJ,CACF,CKhlEI,mCkB8NF,mBAiBI,SAAA,CADA,UAAA,CAEA,sBvBs2DJ,CuBn2DI,8DACE,8BAAA,CACA,SvBq2DN,CACF,CuBh2DE,uBASE,kCAAA,CAAA,0BAAA,CAFA,2CAAA,CANA,WAAA,CACA,eAAA,CAIA,kBvBi2DJ,CuB31DI,iEAZF,uBAaI,uBvB81DJ,CACF,CK7nEM,+DkBiRJ,uBAkBI,avB81DJ,CACF,CK5mEI,sCkB2PF,uBAuBI,avB81DJ,CACF,CKjnEI,mCkB2PF,uBA4BI,YAAA,CACA,yDAAA,CACA,oBvB81DJ,CuB31DI,kEACE,evB61DN,CuBz1DI,6BACE,+CvB21DN,CuBv1DI,0CAEE,YAAA,CADA,WvB01DN,CuBr1DI,gDACE,oDvBu1DN,CuBp1DM,sDACE,0CvBs1DR,CACF,CuB/0DA,kBACE,gCAAA,CACA,qBvBk1DF,CuB/0DE,wBAME,qDAAA,CAFA,uCAAA,CAFA,gBAAA,CACA,kBAAA,CAFA,eAAA,CAIA,uBvBk1DJ,CKrpEI,mCkB8TF,kCAUI,mBvBi1DJ,CuB31DA,kCAUI,oBvBi1DJ,CACF,CuB70DE,wBAGE,eAAA,CADA,QAAA,CADA,SAAA,CAIA,wBAAA,CAAA,gBvB80DJ,CuB10DE,wBACE,yDvB40DJ,CuBz0DI,oCACE,evB20DN,CuBt0DE,wBACE,aAAA,CAEA,YAAA,CADA,uBAAA,CAEA,gCvBw0DJ,CuBr0DI,4DACE,uDvBu0DN,CuBn0DI,gDACE,mBvBq0DN,CuBh0DE,gCAKE,cAAA,CADA,aAAA,CAGA,YAAA,CANA,eAAA,CAKA,uBAAA,CAJA,KAAA,CACA,SvBs0DJ,CuB/zDI,wCACE,YvBi0DN,CuB5zDI,wDACE,YvB8zDN,CuB1zDI,oCAGE,+BAAA,CADA,gBAAA,CADA,mBAAA,CAGA,2CvB4zDN,CKvsEI,mCkBuYA,8CAUI,mBvB0zDN,CuBp0DE,8CAUI,oBvB0zDN,CACF,CuBtzDI,oFAEE,uDAAA,CADA,+BvByzDN,CuBnzDE,sCACE,2CvBqzDJ,CuBhzDE,2BAGE,eAAA,CADA,eAAA,CADA,iBvBozDJ,CKxtEI,mCkBmaF,qCAOI,mBvBkzDJ,CuBzzDA,qCAOI,oBvBkzDJ,CACF,CuB9yDE,kCAEE,MvBozDJ,CuBtzDE,kCAEE,OvBozDJ,CuBtzDE,wBAME,uCAAA,CAFA,aAAA,CACA,YAAA,CAJA,iBAAA,CAEA,YvBmzDJ,CKltEI,0CkB4ZF,wBAUI,YvBgzDJ,CACF,CuB7yDI,8BAKE,6BAAA,CADA,UAAA,CAHA,oBAAA,CAEA,WAAA,CAGA,+CAAA,CAAA,uCAAA,CAEA,4BAAA,CAAA,oBAAA,CADA,6BAAA,CAAA,qBAAA,CAEA,yBAAA,CAAA,iBAAA,CAPA,UvBszDN,CuB5yDM,wCACE,oBvB8yDR,CuBxyDE,8BAGE,uCAAA,CAFA,gBAAA,CACA,evB2yDJ,CuBvyDI,iCAKE,gCAAA,CAHA,eAAA,CACA,eAAA,CACA,eAAA,CAHA,evB6yDN,CuBtyDM,sCACE,oBvBwyDR,CuBnyDI,iCAKE,gCAAA,CAHA,gBAAA,CACA,eAAA,CACA,eAAA,CAHA,avByyDN,CuBlyDM,sCACE,oBvBoyDR,CuB9xDE,yBAKE,gCAAA,CAJA,aAAA,CAEA,gBAAA,CACA,iBAAA,CAFA,avBmyDJ,CuB5xDE,uBAGE,wBAAA,CAFA,+BAAA,CACA,yBvB+xDJ,CwBn8EA,WACE,iBAAA,CACA,SxBs8EF,CwBn8EE,kBAOE,2CAAA,CACA,mBAAA,CACA,8BAAA,CAHA,gCAAA,CAHA,QAAA,CAEA,gBAAA,CADA,YAAA,CAMA,SAAA,CATA,iBAAA,CACA,sBAAA,CAaA,mCAAA,CAJA,oExBs8EJ,CwB/7EI,6EACE,gBAAA,CACA,SAAA,CAKA,+BAAA,CAJA,8ExBk8EN,CwB17EI,wBAWE,+BAAA,CAAA,8CAAA,CAFA,6BAAA,CAAA,8BAAA,CACA,YAAA,CAFA,UAAA,CAHA,QAAA,CAFA,QAAA,CAIA,kBAAA,CADA,iBAAA,CALA,iBAAA,CACA,KAAA,CAEA,OxBm8EN,CwBv7EE,iBAOE,mBAAA,CAFA,eAAA,CACA,oBAAA,CAHA,QAAA,CAFA,kBAAA,CAGA,aAAA,CAFA,SxB87EJ,CwBr7EE,iBACE,kBxBu7EJ,CwBn7EE,2BAGE,kBAAA,CAAA,oBxBy7EJ,CwB57EE,2BAGE,mBAAA,CAAA,mBxBy7EJ,CwB57EE,iBAIE,cAAA,CAHA,aAAA,CAKA,YAAA,CADA,uBAAA,CAEA,2CACE,CANF,UxB07EJ,CwBh7EI,8CACE,+BxBk7EN,CwB96EI,uBACE,qDxBg7EN,CyBpgFA,YAIE,qBAAA,CADA,aAAA,CAGA,gBAAA,CALA,eAAA,CACA,UAAA,CAGA,azBwgFF,CyBpgFE,aATF,YAUI,YzBugFF,CACF,CKz1EI,0CoB3KF,+BAKI,azB4gFJ,CyBjhFA,+BAKI,czB4gFJ,CyBjhFA,qBAWI,2CAAA,CAHA,aAAA,CAEA,WAAA,CANA,cAAA,CAEA,KAAA,CASA,uBAAA,CAHA,iEACE,CAJF,aAAA,CAFA,SzB0gFJ,CyB//EI,mEACE,8BAAA,CACA,6BzBigFN,CyB9/EM,6EACE,8BzBggFR,CyB3/EI,6CAEE,QAAA,CAAA,MAAA,CACA,QAAA,CACA,eAAA,CAHA,iBAAA,CACA,OAAA,CAGA,qBAAA,CAHA,KzBggFN,CACF,CKx4EI,sCoBtKJ,YAuDI,QzB2/EF,CyBx/EE,mBACE,WzB0/EJ,CyBt/EE,6CACE,UzBw/EJ,CACF,CyBp/EE,uBACE,YAAA,CACA,OzBs/EJ,CKv5EI,mCoBjGF,uBAMI,QzBs/EJ,CyBn/EI,8BACE,WzBq/EN,CyBj/EI,qCACE,azBm/EN,CyB/+EI,+CACE,kBzBi/EN,CACF,CyB5+EE,wBAIE,uBAAA,CAOA,kCAAA,CAAA,0BAAA,CAVA,cAAA,CACA,eAAA,CACA,yDAAA,CAMA,oBzB2+EJ,CyBt+EI,2CAEE,YAAA,CADA,WzBy+EN,CyBp+EI,mEACE,+CzBs+EN,CyBn+EM,qHACE,oDzBq+ER,CyBl+EQ,iIACE,0CzBo+EV,CyBr9EE,wCAGE,wBACE,qBzBq9EJ,CyBj9EE,6BACE,kCzBm9EJ,CyBp9EE,6BACE,iCzBm9EJ,CACF,CK/6EI,0CoB5BF,YAME,0BAAA,CADA,QAAA,CAEA,SAAA,CANA,cAAA,CACA,KAAA,CAMA,sDACE,CALF,OAAA,CADA,SzBo9EF,CyBz8EE,4CAEE,WAAA,CACA,SAAA,CACA,4CACE,CAJF,UzB88EJ,CACF,C0B3nFA,iBACE,GACE,Q1B6nFF,C0B1nFA,GACE,a1B4nFF,CACF,C0BxnFA,gBACE,GACE,SAAA,CACA,0B1B0nFF,C0BvnFA,IACE,S1BynFF,C0BtnFA,GACE,SAAA,CACA,uB1BwnFF,CACF,C0BhnFA,MACE,2eAAA,CACA,+fAAA,CACA,0lBAAA,CACA,kf1BknFF,C0B5mFA,WAOE,kCAAA,CAAA,0BAAA,CANA,aAAA,CACA,gBAAA,CACA,eAAA,CAEA,uCAAA,CAGA,uBAAA,CAJA,kB1BknFF,C0B3mFE,iBACE,U1B6mFJ,C0BzmFE,iBACE,oBAAA,CAEA,aAAA,CACA,qBAAA,CAFA,U1B6mFJ,C0BxmFI,+BACE,iB1B2mFN,C0B5mFI,+BACE,kB1B2mFN,C0B5mFI,qBAEE,gB1B0mFN,C0BtmFI,kDACE,iB1BymFN,C0B1mFI,kDACE,kB1BymFN,C0B1mFI,kDAEE,iB1BwmFN,C0B1mFI,kDAEE,kB1BwmFN,C0BnmFE,iCAGE,iB1BwmFJ,C0B3mFE,iCAGE,kB1BwmFJ,C0B3mFE,uBACE,oBAAA,CACA,6BAAA,CAEA,eAAA,CACA,sBAAA,CACA,qB1BqmFJ,C0BjmFE,kBACE,YAAA,CAMA,gBAAA,CALA,SAAA,CAMA,oBAAA,CAHA,gBAAA,CAIA,WAAA,CAHA,eAAA,CAFA,SAAA,CADA,U1BymFJ,C0BhmFI,iDACE,4B1BkmFN,C0B7lFE,iBACE,eAAA,CACA,sB1B+lFJ,C0B5lFI,gDACE,2B1B8lFN,C0B1lFI,kCAIE,kB1BkmFN,C0BtmFI,kCAIE,iB1BkmFN,C0BtmFI,wBAOE,6BAAA,CADA,UAAA,CALA,oBAAA,CAEA,YAAA,CAMA,4BAAA,CAAA,oBAAA,CADA,6BAAA,CAAA,qBAAA,CAEA,yBAAA,CAAA,iBAAA,CALA,uBAAA,CAHA,W1BomFN,C0BxlFI,iCACE,a1B0lFN,C0BtlFI,iCACE,gDAAA,CAAA,wC1BwlFN,C0BplFI,+BACE,8CAAA,CAAA,sC1BslFN,C0BllFI,+BACE,8CAAA,CAAA,sC1BolFN,C0BhlFI,sCACE,qDAAA,CAAA,6C1BklFN,C0B5kFA,gBACE,Y1B+kFF,C0B5kFE,gCAIE,kB1BglFJ,C0BplFE,gCAIE,iB1BglFJ,C0BplFE,sBAGE,kBAAA,CAGA,uCAAA,CALA,mBAAA,CAIA,gBAAA,CAHA,S1BklFJ,C0B3kFI,+BACE,aAAA,CACA,oB1B6kFN,C0BzkFI,2CACE,U1B4kFN,C0B7kFI,2CACE,W1B4kFN,C0B7kFI,iCAEE,kB1B2kFN,C0BvkFI,0BACE,W1BykFN,C2BhwFA,MACE,iSAAA,CACA,4UAAA,CACA,+NAAA,CACA,gZ3BmwFF,C2B1vFE,iBAME,kDAAA,CADA,UAAA,CAJA,oBAAA,CAEA,cAAA,CAIA,mCAAA,CAAA,2BAAA,CAEA,4BAAA,CAAA,oBAAA,CADA,6BAAA,CAAA,qBAAA,CAEA,yBAAA,CAAA,iBAAA,CANA,0BAAA,CAFA,a3BqwFJ,C2BzvFE,uBACE,6B3B2vFJ,C2BvvFE,sBACE,wCAAA,CAAA,gC3ByvFJ,C2BrvFE,6BACE,+CAAA,CAAA,uC3BuvFJ,C2BnvFE,4BACE,8CAAA,CAAA,sC3BqvFJ,C4BhyFA,SASE,2CAAA,CADA,gCAAA,CAJA,aAAA,CAGA,eAAA,CADA,aAAA,CADA,UAAA,CAFA,S5BuyFF,C4B9xFE,aAZF,SAaI,Y5BiyFF,CACF,CKtnFI,0CuBzLJ,SAkBI,Y5BiyFF,CACF,C4B9xFE,iBACE,mB5BgyFJ,C4B5xFE,yBAIE,iB5BmyFJ,C4BvyFE,yBAIE,kB5BmyFJ,C4BvyFE,eAQE,eAAA,CAPA,YAAA,CAMA,eAAA,CAJA,QAAA,CAEA,aAAA,CAHA,SAAA,CAWA,oBAAA,CAPA,kB5BiyFJ,C4BvxFI,kCACE,Y5ByxFN,C4BpxFE,eACE,aAAA,CACA,kBAAA,CAAA,mB5BsxFJ,C4BnxFI,sCACE,aAAA,CACA,S5BqxFN,C4B/wFE,eAOE,kCAAA,CAAA,0BAAA,CANA,YAAA,CAEA,eAAA,CADA,gBAAA,CAMA,UAAA,CAJA,uCAAA,CACA,oBAAA,CAIA,8D5BgxFJ,C4B3wFI,0CACE,aAAA,CACA,S5B6wFN,C4BzwFI,6BAEE,kB5B4wFN,C4B9wFI,6BAEE,iB5B4wFN,C4B9wFI,mBAGE,iBAAA,CAFA,Y5B6wFN,C4BtwFM,2CACE,qB5BwwFR,C4BzwFM,2CACE,qB5B2wFR,C4B5wFM,2CACE,qB5B8wFR,C4B/wFM,2CACE,qB5BixFR,C4BlxFM,2CACE,oB5BoxFR,C4BrxFM,2CACE,qB5BuxFR,C4BxxFM,2CACE,qB5B0xFR,C4B3xFM,2CACE,qB5B6xFR,C4B9xFM,4CACE,qB5BgyFR,C4BjyFM,4CACE,oB5BmyFR,C4BpyFM,4CACE,qB5BsyFR,C4BvyFM,4CACE,qB5ByyFR,C4B1yFM,4CACE,qB5B4yFR,C4B7yFM,4CACE,qB5B+yFR,C4BhzFM,4CACE,oB5BkzFR,C4B5yFI,gCACE,SAAA,CAIA,yBAAA,CAHA,wC5B+yFN,C6Bl5FA,MACE,mS7Bq5FF,C6B54FE,mCACE,mBAAA,CACA,cAAA,CACA,QAAA,CAEA,mBAAA,CADA,kB7Bg5FJ,C6B34FE,oBAGE,kBAAA,CAOA,+CAAA,CACA,oBAAA,CAVA,mBAAA,CAIA,gBAAA,CACA,0BAAA,CACA,eAAA,CALA,QAAA,CAOA,qBAAA,CADA,eAAA,CAJA,wB7Bo5FJ,C6B14FI,0BAGE,uCAAA,CAFA,aAAA,CACA,YAAA,CAEA,6C7B44FN,C6Bv4FM,gEAEE,0CAAA,CADA,+B7B04FR,C6Bp4FI,yBACE,uB7Bs4FN,C6B93FI,gCAME,oDAAA,CADA,UAAA,CAJA,oBAAA,CAEA,YAAA,CAIA,qCAAA,CAAA,6BAAA,CAEA,4BAAA,CAAA,oBAAA,CADA,6BAAA,CAAA,qBAAA,CAEA,yBAAA,CAAA,iBAAA,CACA,iCAAA,CAPA,0BAAA,CAFA,W7By4FN,C6B53FI,wFACE,0C7B83FN,C8Bx8FA,iBACE,GACE,oB9B28FF,C8Bx8FA,IACE,kB9B08FF,C8Bv8FA,GACE,oB9By8FF,CACF,C8Bj8FA,MACE,yNAAA,CACA,sP9Bo8FF,C8B77FA,YA6BE,kCAAA,CAAA,0BAAA,CAVA,2CAAA,CACA,mBAAA,CACA,8BAAA,CAHA,gCAAA,CADA,sCAAA,CAdA,+IACE,CAYF,8BAAA,CAMA,SAAA,CArBA,iBAAA,CACA,uBAAA,CAyBA,4BAAA,CAJA,uDACE,CATF,6BAAA,CADA,S9Bi8FF,C8B/6FE,oBAEE,SAAA,CAKA,uBAAA,CAJA,2EACE,CAHF,S9Bo7FJ,C8B16FE,oBAEE,eAAA,CACA,wBAAA,CAAA,gBAAA,CAFA,U9B86FJ,C8Bz6FI,6CACE,qC9B26FN,C8Bv6FI,uCAEE,eAAA,CADA,mB9B06FN,C8Bp6FI,6BACE,Y9Bs6FN,C8Bj6FE,8CACE,sC9Bm6FJ,C8B/5FE,mBAEE,gBAAA,CADA,a9Bk6FJ,C8B95FI,2CACE,Y9Bg6FN,C8B55FI,0CACE,e9B85FN,C8Bt5FA,eACE,iBAAA,CACA,eAAA,CAIA,YAAA,CAHA,kBAAA,CAEA,0BAAA,CADA,kB9B25FF,C8Bt5FE,yBACE,a9Bw5FJ,C8Bp5FE,oBACE,sCAAA,CACA,iB9Bs5FJ,C8Bl5FE,6BACE,oBAAA,CAGA,gB9Bk5FJ,C8B94FE,sBAYE,mBAAA,CANA,cAAA,CAHA,oBAAA,CACA,gBAAA,CAAA,iBAAA,CAIA,YAAA,CAGA,eAAA,CAVA,iBAAA,CAMA,wBAAA,CAAA,gBAAA,CAFA,uBAAA,CAHA,S9Bw5FJ,C8B14FI,qCACE,uB9B44FN,C8Bx4FI,cArBF,sBAsBI,W9B24FJ,C8Bx4FI,wCACE,2B9B04FN,C8Bt4FI,6BAOE,qCAAA,CACA,+CAAA,CAAA,uC9B24FN,C8Bj4FI,yDAZE,UAAA,CADA,YAAA,CAKA,4BAAA,CAAA,oBAAA,CADA,6BAAA,CAAA,qBAAA,CAEA,yBAAA,CAAA,iBAAA,CAVA,iBAAA,CACA,SAAA,CAEA,WAAA,CADA,U9B+5FN,C8Bh5FI,4BAOE,oDAAA,CACA,4CAAA,CAAA,oCAAA,CAQA,uBAAA,CAJA,+C9Bo4FN,C8B73FM,gDACE,uB9B+3FR,C8B33FM,mFACE,0C9B63FR,CACF,C8Bx3FI,0CAGE,2BAAA,CADA,uBAAA,CADA,S9B43FN,C8Bt3FI,8CACE,oB9Bw3FN,C8Br3FM,aAJF,8CASI,8CAAA,CACA,iBAAA,CAHA,gCAAA,CADA,eAAA,CADA,cAAA,CAGA,kB9B03FN,C8Br3FM,oDACE,mC9Bu3FR,CACF,C8B32FE,gCAEE,iBAAA,CADA,e9B+2FJ,C8B32FI,mCACE,iB9B62FN,C8B12FM,oDAEE,a9By3FR,C8B33FM,oDAEE,c9By3FR,C8B33FM,0CAcE,8CAAA,CACA,iBAAA,CALA,gCAAA,CAEA,oBAAA,CACA,qBAAA,CANA,iBAAA,CACA,eAAA,CAHA,UAAA,CAIA,gBAAA,CALA,aAAA,CAEA,cAAA,CALA,iBAAA,CAUA,iBAAA,CARA,S9Bw3FR,C+BxoGA,MACE,wBAAA,CACA,wB/B2oGF,C+BroGA,aA+BE,kCAAA,CAAA,0BAAA,CAjBA,gCAAA,CADA,sCAAA,CAGA,SAAA,CADA,mBAAA,CAdA,iBAAA,CAGA,wDACE,CAgBF,4BAAA,CAGA,uEACE,CARF,uDACE,CANF,UAAA,CADA,S/ByoGF,C+BlnGE,oBAuBE,8CAAA,CAAA,+CAAA,CADA,UAAA,CADA,aAAA,CAfA,gJACE,CANF,iBAAA,CAmBA,S/BsmGJ,C+B/lGE,yBAGE,kEAAA,CAFA,gDAAA,CACA,6C/BkmGJ,C+B7lGE,4BAGE,qEAAA,CADA,8CAAA,CADA,6C/BimGJ,C+B3lGE,qBAEE,SAAA,CAKA,uBAAA,CAJA,wEACE,CAHF,S/BgmGJ,C+BtlGE,oBAqBE,uBAAA,CAEA,2CAAA,CACA,mBAAA,CACA,8BAAA,CAnBA,0FACE,CAaF,eAAA,CADA,8BAAA,CAlBA,iBAAA,CAqBA,oB/B2kGJ,C+BrkGI,uCAEE,YAAA,CADA,W/BwkGN,C+BnkGI,6CACE,oD/BqkGN,C+BlkGM,mDACE,0C/BokGR,C+B5jGI,mCAwBE,eAAA,CACA,eAAA,CAxBA,oIACE,CAgBF,sCACE,CAIF,mBAAA,CAKA,wBAAA,CAAA,gBAAA,CAbA,sBAAA,CAAA,iB/BsjGN,C+BriGI,4CACE,Y/BuiGN,C+BniGI,2CACE,e/BqiGN,CgCxtGA,kBAME,ehCouGF,CgC1uGA,kBAME,gBhCouGF,CgC1uGA,QAUE,2CAAA,CACA,oBAAA,CAEA,8BAAA,CALA,uCAAA,CACA,cAAA,CALA,aAAA,CAGA,eAAA,CAKA,YAAA,CAPA,mBAAA,CAJA,cAAA,CACA,UAAA,CAiBA,yBAAA,CALA,mGACE,CAZF,ShCuuGF,CgCptGE,aAtBF,QAuBI,YhCutGF,CACF,CgCptGE,kBACE,wBhCstGJ,CgCltGE,gBAEE,SAAA,CADA,mBAAA,CAGA,+BAAA,CADA,uBhCqtGJ,CgCjtGI,0BACE,8BhCmtGN,CgC9sGE,4BAEE,0CAAA,CADA,+BhCitGJ,CgC5sGE,YACE,oBAAA,CACA,oBhC8sGJ,CiCnwGA,oBACE,GACE,mBjCswGF,CACF,CiC9vGA,MACE,wfjCgwGF,CiC1vGA,YACE,aAAA,CAEA,eAAA,CADA,ajC8vGF,CiC1vGE,+BAOE,kBAAA,CAAA,kBjC2vGJ,CiClwGE,+BAOE,iBAAA,CAAA,mBjC2vGJ,CiClwGE,qBAQE,aAAA,CACA,cAAA,CACA,YAAA,CATA,iBAAA,CAKA,UjC4vGJ,CiCrvGI,qCAIE,iBjC6vGN,CiCjwGI,qCAIE,kBjC6vGN,CiCjwGI,2BAME,6BAAA,CADA,UAAA,CAJA,oBAAA,CAEA,YAAA,CAIA,yCAAA,CAAA,iCAAA,CAEA,4BAAA,CAAA,oBAAA,CADA,6BAAA,CAAA,qBAAA,CAEA,yBAAA,CAAA,iBAAA,CARA,WjC+vGN,CiClvGE,mBACE,iBAAA,CACA,UjCovGJ,CiChvGE,kBAWE,2CAAA,CACA,mBAAA,CACA,8BAAA,CALA,gCAAA,CACA,oBAAA,CAHA,kBAAA,CAFA,YAAA,CAUA,SAAA,CAPA,aAAA,CAFA,SAAA,CAJA,iBAAA,CASA,4BAAA,CARA,UAAA,CAaA,+CACE,CAbF,SjC8vGJ,CiC7uGI,+EACE,gBAAA,CACA,SAAA,CACA,sCjC+uGN,CiCzuGI,qCAEE,oCACE,gCjC0uGN,CiCtuGI,2CACE,cjCwuGN,CACF,CiCnuGE,kBACE,kBjCquGJ,CiCjuGE,4BAGE,kBAAA,CAAA,oBjCwuGJ,CiC3uGE,4BAGE,mBAAA,CAAA,mBjCwuGJ,CiC3uGE,kBAKE,cAAA,CAJA,aAAA,CAMA,YAAA,CADA,uBAAA,CAEA,2CACE,CALF,kBAAA,CAFA,UjCyuGJ,CiC9tGI,gDACE,+BjCguGN,CiC5tGI,wBACE,qDjC8tGN,CkCp0GA,MAEI,6VAAA,CAAA,uWAAA,CAAA,qPAAA,CAAA,2xBAAA,CAAA,qMAAA,CAAA,+aAAA,CAAA,2LAAA,CAAA,yPAAA,CAAA,2TAAA,CAAA,oaAAA,CAAA,2SAAA,CAAA,2LlC61GJ,CkCj1GE,4CAME,8CAAA,CACA,4BAAA,CACA,mBAAA,CACA,8BAAA,CAJA,mCAAA,CAJA,iBAAA,CAGA,gBAAA,CADA,iBAAA,CADA,eAAA,CASA,uBAAA,CADA,2BlCq1GJ,CkCj1GI,aAdF,4CAeI,elCo1GJ,CACF,CkCj1GI,sEACE,gClCm1GN,CkC90GI,gDACE,qBlCg1GN,CkC50GI,gIAEE,iBAAA,CADA,clC+0GN,CkC10GI,4FACE,iBlC40GN,CkCx0GI,kFACE,elC00GN,CkCt0GI,0FACE,YlCw0GN,CkCp0GI,8EACE,mBlCs0GN,CkCj0GE,sEAGE,iBAAA,CAAA,mBlC20GJ,CkC90GE,sEAGE,kBAAA,CAAA,kBlC20GJ,CkC90GE,sEASE,uBlCq0GJ,CkC90GE,sEASE,wBlCq0GJ,CkC90GE,sEAUE,4BlCo0GJ,CkC90GE,4IAWE,6BlCm0GJ,CkC90GE,sEAWE,4BlCm0GJ,CkC90GE,kDAOE,0BAAA,CACA,WAAA,CAFA,eAAA,CADA,eAAA,CAHA,oBAAA,CAAA,iBAAA,CADA,iBlC60GJ,CkCh0GI,kFACE,elCk0GN,CkC9zGI,oFAEE,UlCy0GN,CkC30GI,oFAEE,WlCy0GN,CkC30GI,gEAOE,wBhBiIU,CgBlIV,UAAA,CADA,WAAA,CAGA,kDAAA,CAAA,0CAAA,CAEA,4BAAA,CAAA,oBAAA,CADA,6BAAA,CAAA,qBAAA,CAEA,yBAAA,CAAA,iBAAA,CAVA,iBAAA,CAEA,UAAA,CACA,UlCu0GN,CkC5zGI,4DACE,4DlC8zGN,CkChzGE,sDACE,oBlCmzGJ,CkChzGI,gFACE,gClCkzGN,CkC7yGE,8DACE,0BlCgzGJ,CkC7yGI,4EACE,wBAlBG,CAmBH,kDAAA,CAAA,0ClC+yGN,CkC3yGI,0EACE,alC6yGN,CkCl0GE,8DACE,oBlCq0GJ,CkCl0GI,wFACE,gClCo0GN,CkC/zGE,sEACE,0BlCk0GJ,CkC/zGI,oFACE,wBAlBG,CAmBH,sDAAA,CAAA,8ClCi0GN,CkC7zGI,kFACE,alC+zGN,CkCp1GE,sDACE,oBlCu1GJ,CkCp1GI,gFACE,gClCs1GN,CkCj1GE,8DACE,0BlCo1GJ,CkCj1GI,4EACE,wBAlBG,CAmBH,kDAAA,CAAA,0ClCm1GN,CkC/0GI,0EACE,alCi1GN,CkCt2GE,oDACE,oBlCy2GJ,CkCt2GI,8EACE,gClCw2GN,CkCn2GE,4DACE,0BlCs2GJ,CkCn2GI,0EACE,wBAlBG,CAmBH,iDAAA,CAAA,yClCq2GN,CkCj2GI,wEACE,alCm2GN,CkCx3GE,4DACE,oBlC23GJ,CkCx3GI,sFACE,gClC03GN,CkCr3GE,oEACE,0BlCw3GJ,CkCr3GI,kFACE,wBAlBG,CAmBH,qDAAA,CAAA,6ClCu3GN,CkCn3GI,gFACE,alCq3GN,CkC14GE,8DACE,oBlC64GJ,CkC14GI,wFACE,gClC44GN,CkCv4GE,sEACE,0BlC04GJ,CkCv4GI,oFACE,wBAlBG,CAmBH,sDAAA,CAAA,8ClCy4GN,CkCr4GI,kFACE,alCu4GN,CkC55GE,4DACE,oBlC+5GJ,CkC55GI,sFACE,gClC85GN,CkCz5GE,oEACE,0BlC45GJ,CkCz5GI,kFACE,wBAlBG,CAmBH,qDAAA,CAAA,6ClC25GN,CkCv5GI,gFACE,alCy5GN,CkC96GE,4DACE,oBlCi7GJ,CkC96GI,sFACE,gClCg7GN,CkC36GE,oEACE,0BlC86GJ,CkC36GI,kFACE,wBAlBG,CAmBH,qDAAA,CAAA,6ClC66GN,CkCz6GI,gFACE,alC26GN,CkCh8GE,0DACE,oBlCm8GJ,CkCh8GI,oFACE,gClCk8GN,CkC77GE,kEACE,0BlCg8GJ,CkC77GI,gFACE,wBAlBG,CAmBH,oDAAA,CAAA,4ClC+7GN,CkC37GI,8EACE,alC67GN,CkCl9GE,oDACE,oBlCq9GJ,CkCl9GI,8EACE,gClCo9GN,CkC/8GE,4DACE,0BlCk9GJ,CkC/8GI,0EACE,wBAlBG,CAmBH,iDAAA,CAAA,yClCi9GN,CkC78GI,wEACE,alC+8GN,CkCp+GE,4DACE,oBlCu+GJ,CkCp+GI,sFACE,gClCs+GN,CkCj+GE,oEACE,0BlCo+GJ,CkCj+GI,kFACE,wBAlBG,CAmBH,qDAAA,CAAA,6ClCm+GN,CkC/9GI,gFACE,alCi+GN,CkCt/GE,wDACE,oBlCy/GJ,CkCt/GI,kFACE,gClCw/GN,CkCn/GE,gEACE,0BlCs/GJ,CkCn/GI,8EACE,wBAlBG,CAmBH,mDAAA,CAAA,2ClCq/GN,CkCj/GI,4EACE,alCm/GN,CmCvpHA,MACE,qMnC0pHF,CmCjpHE,sBAEE,uCAAA,CADA,gBnCqpHJ,CmCjpHI,mCACE,anCmpHN,CmCppHI,mCACE,cnCmpHN,CmC/oHM,4BACE,sBnCipHR,CmC9oHQ,mCACE,gCnCgpHV,CmC5oHQ,2DACE,SAAA,CAEA,uBAAA,CADA,enC+oHV,CmC1oHQ,yGACE,SAAA,CACA,uBnC4oHV,CmCxoHQ,yCACE,YnC0oHV,CmCnoHE,0BACE,eAAA,CACA,enCqoHJ,CmCloHI,+BACE,oBnCooHN,CmC/nHE,gDACE,YnCioHJ,CmC7nHE,8BAIE,+BAAA,CAHA,oBAAA,CAEA,WAAA,CAGA,SAAA,CAKA,4BAAA,CAJA,4DACE,CAHF,0BnCioHJ,CmCxnHI,aAdF,8BAeI,+BAAA,CACA,SAAA,CACA,uBnC2nHJ,CACF,CmCxnHI,wCACE,6BnC0nHN,CmCtnHI,oCACE,+BnCwnHN,CmCpnHI,qCAKE,6BAAA,CADA,UAAA,CAHA,oBAAA,CAEA,YAAA,CAGA,2CAAA,CAAA,mCAAA,CAEA,4BAAA,CAAA,oBAAA,CADA,6BAAA,CAAA,qBAAA,CAEA,yBAAA,CAAA,iBAAA,CAPA,WnC6nHN,CmChnHQ,mDACE,oBnCknHV,CoChuHE,kCAEE,iBpCsuHJ,CoCxuHE,kCAEE,kBpCsuHJ,CoCxuHE,wBAGE,yCAAA,CAFA,oBAAA,CAGA,SAAA,CACA,mCpCmuHJ,CoC9tHI,aAVF,wBAWI,YpCiuHJ,CACF,CoC7tHE,6FAEE,SAAA,CACA,mCpC+tHJ,CoCztHE,4FAEE,+BpC2tHJ,CoCvtHE,oBACE,yBAAA,CACA,uBAAA,CAGA,yEpCutHJ,CKxlHI,sC+BrHE,qDACE,uBpCgtHN,CACF,CoC3sHE,kEACE,yBpC6sHJ,CoCzsHE,sBACE,0BpC2sHJ,CqCtwHE,2BACE,arCywHJ,CKplHI,0CgCtLF,2BAKI,erCywHJ,CqCtwHI,6BACE,iBrCwwHN,CACF,CqCpwHI,6BAEE,0BAAA,CAAA,2BAAA,CADA,eAAA,CAEA,iBrCswHN,CqCnwHM,2CACE,kBrCqwHR,CqC/vHI,6CACE,QrCiwHN,CsC7xHE,uBACE,4CtCiyHJ,CsC5xHE,8CAJE,kCAAA,CAAA,0BtCoyHJ,CsChyHE,uBACE,4CtC+xHJ,CsC1xHE,4BAEE,kCAAA,CAAA,0BAAA,CADA,qCtC6xHJ,CsCzxHI,mCACE,atC2xHN,CsCvxHI,kCACE,atCyxHN,CsCpxHE,0BAKE,eAAA,CAJA,aAAA,CAEA,YAAA,CACA,aAAA,CAFA,kBAAA,CAAA,mBtCyxHJ,CsCnxHI,uCACE,etCqxHN,CsCjxHI,sCACE,kBtCmxHN,CuCh0HA,MACE,oLvCm0HF,CuC1zHE,oBAGE,iBAAA,CAEA,gBAAA,CADA,avC4zHJ,CuCxzHI,wCACE,uBvC0zHN,CuCtzHI,gCAEE,eAAA,CADA,gBvCyzHN,CuClzHM,wCACE,mBvCozHR,CuC9yHE,8BAKE,oBvCkzHJ,CuCvzHE,8BAKE,mBvCkzHJ,CuCvzHE,8BAUE,4BvC6yHJ,CuCvzHE,4DAWE,6BvC4yHJ,CuCvzHE,8BAWE,4BvC4yHJ,CuCvzHE,oBASE,cAAA,CANA,aAAA,CACA,eAAA,CAIA,evC+yHJ,CuCzyHI,kCACE,uCAAA,CACA,oBvC2yHN,CuCvyHI,wCAEE,uCAAA,CADA,YvC0yHN,CuCryHI,oCAEE,WvCkzHN,CuCpzHI,oCAEE,UvCkzHN,CuCpzHI,0BAOE,6BAAA,CADA,UAAA,CADA,WAAA,CAGA,yCAAA,CAAA,iCAAA,CAEA,4BAAA,CAAA,oBAAA,CADA,6BAAA,CAAA,qBAAA,CAEA,yBAAA,CAAA,iBAAA,CAVA,iBAAA,CAEA,UAAA,CAUA,sBAAA,CADA,yBAAA,CARA,UvCgzHN,CuCpyHM,oCACE,wBvCsyHR,CuCjyHI,4BACE,YvCmyHN,CuC9xHI,4CACE,YvCgyHN,CwC13HE,+DACE,sBAAA,CAEA,mBAAA,CACA,0BAAA,CACA,uBxC43HJ,CwCz3HI,2EAGE,iBAAA,CADA,eAAA,CADA,yBxC63HN,CwCt3HE,mEACE,0BxCw3HJ,CwCp3HE,oBACE,qBxCs3HJ,CwCl3HE,gBACE,oBxCo3HJ,CwCh3HE,gBACE,qBxCk3HJ,CwC92HE,iBACE,kBxCg3HJ,CwC52HE,kBACE,kBxC82HJ,CyCv5HE,6BACE,sCzC05HJ,CyCv5HE,cACE,yCzCy5HJ,CyC74HE,sIACE,oCzC+4HJ,CyCv4HE,2EACE,qCzCy4HJ,CyC/3HE,wGACE,oCzCi4HJ,CyCx3HE,yFACE,qCzC03HJ,CyCr3HE,6BACE,kCzCu3HJ,CyCj3HE,6CACE,sCzCm3HJ,CyC52HE,4DACE,sCzC82HJ,CyCv2HE,4DACE,qCzCy2HJ,CyCh2HE,yFACE,qCzCk2HJ,CyC11HE,2EACE,sCzC41HJ,CyCj1HE,wHACE,qCzCm1HJ,CyC90HE,8BAGE,mBAAA,CADA,gBAAA,CADA,gBzCk1HJ,CyC70HE,eACE,4CzC+0HJ,CyC50HE,eACE,4CzC80HJ,CyC10HE,gBAIE,+CAAA,CACA,kDAAA,CAJA,aAAA,CAEA,wBAAA,CADA,wBzC+0HJ,CyCx0HE,yBAOE,wCAAA,CACA,+DAAA,CACA,4BAAA,CACA,6BAAA,CARA,iBAAA,CAGA,eAAA,CACA,eAAA,CAFA,cAAA,CADA,oCAAA,CAFA,iBzCm1HJ,CyCv0HI,6BACE,YzCy0HN,CyCt0HM,kCACE,wBAAA,CACA,yBzCw0HR,CyCl0HE,iCAaE,wCAAA,CACA,+DAAA,CAJA,uCAAA,CACA,0BAAA,CALA,UAAA,CAJA,oBAAA,CAOA,2BAAA,CADA,2BAAA,CADA,2BAAA,CANA,eAAA,CAWA,wBAAA,CAAA,gBAAA,CAPA,SzC20HJ,CyCzzHE,sBACE,iBAAA,CACA,iBzC2zHJ,CyCtzHE,iCAKE,ezCozHJ,CyCjzHI,sCACE,gBzCmzHN,CyC/yHI,gDACE,YzCizHN,CyCvyHA,gBACE,iBzC0yHF,CyCtyHE,yCACE,aAAA,CACA,SzCwyHJ,CyCnyHE,mBACE,YzCqyHJ,CyChyHE,oBACE,QzCkyHJ,CyC9xHE,4BACE,WAAA,CACA,SAAA,CACA,ezCgyHJ,CyC7xHI,0CACE,YzC+xHN,CyCzxHE,yBAKE,wCAAA,CAEA,+BAAA,CADA,4BAAA,CAHA,eAAA,CADA,oDAAA,CAEA,wBAAA,CAAA,gBzC8xHJ,CyCvxHE,2BAEE,+DAAA,CADA,2BzC0xHJ,CyCtxHI,+BACE,uCAAA,CACA,gBzCwxHN,CyCnxHE,sBACE,MAAA,CACA,WzCqxHJ,CyChxHA,aACE,azCmxHF,CyCzwHE,4BAEE,aAAA,CADA,YzC6wHJ,CyCzwHI,wDAEE,2BAAA,CADA,wBzC4wHN,CyCtwHE,+BAKE,2CAAA,CAEA,+BAAA,CADA,gCAAA,CADA,sBAAA,CAHA,mBAAA,CACA,gBAAA,CAFA,azC8wHJ,CyCrwHI,qCAEE,UAAA,CACA,UAAA,CAFA,azCywHN,CKh5HI,0CoCsJF,8BACE,iBzC8vHF,CyCpvHE,wSAGE,ezC0vHJ,CyCtvHE,sCAEE,mBAAA,CACA,eAAA,CADA,oBAAA,CADA,kBAAA,CAAA,mBzC0vHJ,CACF,C0CvlII,yDAIE,+BAAA,CACA,8BAAA,CAFA,aAAA,CADA,QAAA,CADA,iB1C6lIN,C0CrlII,uBAEE,uCAAA,CADA,c1CwlIN,C0CniIM,iHAEE,WAlDkB,CAiDlB,kB1C8iIR,C0C/iIM,6HAEE,WAlDkB,CAiDlB,kB1C0jIR,C0C3jIM,6HAEE,WAlDkB,CAiDlB,kB1CskIR,C0CvkIM,oHAEE,WAlDkB,CAiDlB,kB1CklIR,C0CnlIM,0HAEE,WAlDkB,CAiDlB,kB1C8lIR,C0C/lIM,uHAEE,WAlDkB,CAiDlB,kB1C0mIR,C0C3mIM,uHAEE,WAlDkB,CAiDlB,kB1CsnIR,C0CvnIM,6HAEE,WAlDkB,CAiDlB,kB1CkoIR,C0CnoIM,yCAEE,WAlDkB,CAiDlB,kB1CsoIR,C0CvoIM,yCAEE,WAlDkB,CAiDlB,kB1C0oIR,C0C3oIM,0CAEE,WAlDkB,CAiDlB,kB1C8oIR,C0C/oIM,uCAEE,WAlDkB,CAiDlB,kB1CkpIR,C0CnpIM,wCAEE,WAlDkB,CAiDlB,kB1CspIR,C0CvpIM,sCAEE,WAlDkB,CAiDlB,kB1C0pIR,C0C3pIM,wCAEE,WAlDkB,CAiDlB,kB1C8pIR,C0C/pIM,oCAEE,WAlDkB,CAiDlB,kB1CkqIR,C0CnqIM,2CAEE,WAlDkB,CAiDlB,kB1CsqIR,C0CvqIM,qCAEE,WAlDkB,CAiDlB,kB1C0qIR,C0C3qIM,oCAEE,WAlDkB,CAiDlB,kB1C8qIR,C0C/qIM,kCAEE,WAlDkB,CAiDlB,kB1CkrIR,C0CnrIM,qCAEE,WAlDkB,CAiDlB,kB1CsrIR,C0CvrIM,mCAEE,WAlDkB,CAiDlB,kB1C0rIR,C0C3rIM,qCAEE,WAlDkB,CAiDlB,kB1C8rIR,C0C/rIM,wCAEE,WAlDkB,CAiDlB,kB1CksIR,C0CnsIM,sCAEE,WAlDkB,CAiDlB,kB1CssIR,C0CvsIM,2CAEE,WAlDkB,CAiDlB,kB1C0sIR,C0C/rIM,iCAEE,WAPkB,CAMlB,iB1CksIR,C0CnsIM,uCAEE,WAPkB,CAMlB,iB1CssIR,C0CvsIM,mCAEE,WAPkB,CAMlB,iB1C0sIR,C2C5xIA,MACE,2LAAA,CACA,yL3C+xIF,C2CtxIE,wBAKE,mBAAA,CAHA,YAAA,CACA,qBAAA,CACA,YAAA,CAHA,iB3C6xIJ,C2CnxII,8BAGE,QAAA,CACA,SAAA,CAHA,iBAAA,CACA,O3CuxIN,C2ClxIM,qCACE,0B3CoxIR,C2CvvIM,kEACE,0C3CyvIR,C2CnvIE,2BAME,uBAAA,CADA,+DAAA,CAJA,YAAA,CACA,cAAA,CACA,aAAA,CACA,oB3CuvIJ,C2ClvII,aATF,2BAUI,gB3CqvIJ,CACF,C2ClvII,cAGE,+BACE,iB3CkvIN,C2C/uIM,sCAQE,qCAAA,CANA,QAAA,CAKA,UAAA,CAHA,aAAA,CAEA,UAAA,CAHA,MAAA,CAFA,iBAAA,CAaA,2CAAA,CALA,2DACE,CAGF,kDAAA,CARA,+B3CuvIR,CACF,C2CzuII,8CACE,Y3C2uIN,C2CvuII,iCAUE,+BAAA,CACA,6BAAA,CALA,uCAAA,CAEA,cAAA,CAPA,aAAA,CAGA,gBAAA,CACA,eAAA,CAFA,8BAAA,CAMA,+BAAA,CAGA,2CACE,CANF,kBAAA,CALA,U3CmvIN,C2CpuIM,aAII,6CACE,O3CmuIV,C2CpuIQ,8CACE,O3CsuIV,C2CvuIQ,8CACE,O3CyuIV,C2C1uIQ,8CACE,O3C4uIV,C2C7uIQ,8CACE,O3C+uIV,C2ChvIQ,8CACE,O3CkvIV,C2CnvIQ,8CACE,O3CqvIV,C2CtvIQ,8CACE,O3CwvIV,C2CzvIQ,8CACE,O3C2vIV,C2C5vIQ,+CACE,Q3C8vIV,C2C/vIQ,+CACE,Q3CiwIV,C2ClwIQ,+CACE,Q3CowIV,C2CrwIQ,+CACE,Q3CuwIV,C2CxwIQ,+CACE,Q3C0wIV,C2C3wIQ,+CACE,Q3C6wIV,C2C9wIQ,+CACE,Q3CgxIV,C2CjxIQ,+CACE,Q3CmxIV,C2CpxIQ,+CACE,Q3CsxIV,C2CvxIQ,+CACE,Q3CyxIV,C2C1xIQ,+CACE,Q3C4xIV,CACF,C2CvxIM,uCACE,gC3CyxIR,C2CrxIM,oDACE,a3CuxIR,C2ClxII,yCACE,S3CoxIN,C2ChxIM,2CACE,aAAA,CACA,8B3CkxIR,C2C5wIE,4BACE,U3C8wIJ,C2C3wII,aAJF,4BAKI,gB3C8wIJ,CACF,C2C1wIE,0BACE,Y3C4wIJ,C2CzwII,aAJF,0BAKI,a3C4wIJ,C2CxwIM,sCACE,O3C0wIR,C2C3wIM,uCACE,O3C6wIR,C2C9wIM,uCACE,O3CgxIR,C2CjxIM,uCACE,O3CmxIR,C2CpxIM,uCACE,O3CsxIR,C2CvxIM,uCACE,O3CyxIR,C2C1xIM,uCACE,O3C4xIR,C2C7xIM,uCACE,O3C+xIR,C2ChyIM,uCACE,O3CkyIR,C2CnyIM,wCACE,Q3CqyIR,C2CtyIM,wCACE,Q3CwyIR,C2CzyIM,wCACE,Q3C2yIR,C2C5yIM,wCACE,Q3C8yIR,C2C/yIM,wCACE,Q3CizIR,C2ClzIM,wCACE,Q3CozIR,C2CrzIM,wCACE,Q3CuzIR,C2CxzIM,wCACE,Q3C0zIR,C2C3zIM,wCACE,Q3C6zIR,C2C9zIM,wCACE,Q3Cg0IR,C2Cj0IM,wCACE,Q3Cm0IR,CACF,C2C7zII,+FAEE,Q3C+zIN,C2C5zIM,yGACE,wBAAA,CACA,yB3C+zIR,C2CtzIM,2DAEE,wBAAA,CACA,yBAAA,CAFA,Q3C0zIR,C2CnzIM,iEACE,Q3CqzIR,C2ClzIQ,qLAGE,wBAAA,CACA,yBAAA,CAFA,Q3CszIV,C2ChzIQ,6FACE,wBAAA,CACA,yB3CkzIV,C2C7yIM,yDACE,kB3C+yIR,C2C1yII,sCACE,Q3C4yIN,C2CvyIE,2BAEE,iBAAA,CAOA,kBAAA,CAHA,uCAAA,CAEA,cAAA,CAPA,aAAA,CAGA,YAAA,CACA,gBAAA,CAEA,mBAAA,CAGA,gCAAA,CAPA,W3CgzIJ,C2CtyII,iCAEE,uDAAA,CADA,+B3CyyIN,C2CpyII,iCAKE,6BAAA,CADA,UAAA,CAHA,aAAA,CAEA,WAAA,CAGA,8CAAA,CAAA,sCAAA,CAEA,4BAAA,CAAA,oBAAA,CADA,6BAAA,CAAA,qBAAA,CAEA,yBAAA,CAAA,iBAAA,CACA,+CACE,CATF,U3C8yIN,C2C/xIE,4BAOE,yEACE,CANF,YAAA,CAGA,aAAA,CAFA,qBAAA,CAGA,mBAAA,CALA,iBAAA,CAYA,wBAAA,CATA,Y3CqyIJ,C2CzxII,sCACE,wB3C2xIN,C2CvxII,oCACE,S3CyxIN,C2CrxII,kCAGE,wEACE,CAFF,mBAAA,CADA,O3CyxIN,C2C/wIM,uDACE,8CAAA,CAAA,sC3CixIR,CKx5II,0CsCqJF,wDAEE,kB3CywIF,C2C3wIA,wDAEE,mB3CywIF,C2C3wIA,8CAGE,eAAA,CAFA,eAAA,CAGA,iC3CuwIF,C2CnwIE,8DACE,mB3CswIJ,C2CvwIE,8DACE,kB3CswIJ,C2CvwIE,oDAEE,U3CqwIJ,C2CjwIE,8EAEE,kB3CowIJ,C2CtwIE,8EAEE,mB3CowIJ,C2CtwIE,8EAGE,kB3CmwIJ,C2CtwIE,8EAGE,mB3CmwIJ,C2CtwIE,oEACE,U3CqwIJ,C2C/vIE,8EAEE,mB3CkwIJ,C2CpwIE,8EAEE,kB3CkwIJ,C2CpwIE,8EAGE,mB3CiwIJ,C2CpwIE,8EAGE,kB3CiwIJ,C2CpwIE,oEACE,U3CmwIJ,CACF,C2CrvIE,cAHF,olDAII,gC3CwvIF,C2CrvIE,g8GACE,uC3CuvIJ,CACF,C2ClvIA,4sDACE,+B3CqvIF,C2CjvIA,wmDACE,a3CovIF,C4CxnJA,MACE,qWAAA,CACA,8W5C2nJF,C4ClnJE,4BAEE,oBAAA,CADA,iB5CsnJJ,C4CjnJI,sDAEE,S5ConJN,C4CtnJI,sDAEE,U5ConJN,C4CtnJI,4CACE,iBAAA,CAEA,S5CmnJN,C4C9mJE,+CAEE,SAAA,CADA,U5CinJJ,C4C5mJE,kDAEE,W5CunJJ,C4CznJE,kDAEE,Y5CunJJ,C4CznJE,wCAOE,qDAAA,CADA,UAAA,CADA,aAAA,CAGA,0CAAA,CAAA,kCAAA,CAEA,4BAAA,CAAA,oBAAA,CADA,6BAAA,CAAA,qBAAA,CAEA,yBAAA,CAAA,iBAAA,CAVA,iBAAA,CAEA,SAAA,CACA,Y5CqnJJ,C4C1mJE,gEACE,wB1B2Wa,C0B1Wb,mDAAA,CAAA,2C5C4mJJ,C6C5pJA,aAQE,wBACE,Y7C2pJF,CACF,C8CrqJA,QACE,8DAAA,CAGA,+CAAA,CACA,iEAAA,CACA,oDAAA,CACA,sDAAA,CACA,mDAAA,CAGA,qEAAA,CACA,qEAAA,CACA,wEAAA,CACA,0EAAA,CACA,wEAAA,CACA,yEAAA,CACA,kEAAA,CACA,+DAAA,CACA,oEAAA,CACA,oEAAA,CACA,mEAAA,CACA,gEAAA,CACA,uEAAA,CACA,mEAAA,CACA,qEAAA,CACA,oEAAA,CACA,gEAAA,CACA,wEAAA,CACA,qEAAA,CACA,+D9CmqJF,C8C7pJA,SAEE,kBAAA,CADA,Y9CiqJF,C+CnsJE,kBAUE,cAAA,CATA,YAAA,CACA,kEACE,CAQF,Y/C+rJJ,C+C3rJI,sDACE,gB/C6rJN,C+CvrJI,oFAKE,wDAAA,CACA,mBAAA,CAJA,aAAA,CAEA,QAAA,CADA,aAAA,CAIA,sC/CyrJN,C+CprJM,iOACE,kBAAA,CACA,8B/CurJR,C+CnrJM,6FACE,iBAAA,CAAA,c/CsrJR,C+ClrJM,2HACE,Y/CqrJR,C+CjrJM,wHACE,e/CorJR,C+CrqJI,yMAGE,eAAA,CAAA,Y/C6qJN,C+C/pJI,ybAOE,W/CqqJN,C+CjqJI,8BACE,eAAA,CAAA,Y/CmqJN,CK/lJI,mC2ChKA,8BACE,UhDuwJJ,CgDxwJE,8BACE,WhDuwJJ,CgDxwJE,8BAGE,kBhDqwJJ,CgDxwJE,8BAGE,iBhDqwJJ,CgDxwJE,oBAKE,mBAAA,CADA,YAAA,CAFA,ahDswJJ,CgDhwJI,kCACE,WhDmwJN,CgDpwJI,kCACE,UhDmwJN,CgDpwJI,kCAEE,iBAAA,CAAA,chDkwJN,CgDpwJI,kCAEE,aAAA,CAAA,kBhDkwJN,CACF","file":"main.css"}�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/stylesheets/palette.06af60db.min.css����������������0000664�0000000�0000000�00000030352�14753064456�0030442�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������@media screen{[data-md-color-scheme=slate]{--md-default-fg-color:hsla(var(--md-hue),15%,90%,0.82);--md-default-fg-color--light:hsla(var(--md-hue),15%,90%,0.56);--md-default-fg-color--lighter:hsla(var(--md-hue),15%,90%,0.32);--md-default-fg-color--lightest:hsla(var(--md-hue),15%,90%,0.12);--md-default-bg-color:hsla(var(--md-hue),15%,14%,1);--md-default-bg-color--light:hsla(var(--md-hue),15%,14%,0.54);--md-default-bg-color--lighter:hsla(var(--md-hue),15%,14%,0.26);--md-default-bg-color--lightest:hsla(var(--md-hue),15%,14%,0.07);--md-code-fg-color:hsla(var(--md-hue),18%,86%,0.82);--md-code-bg-color:hsla(var(--md-hue),15%,18%,1);--md-code-hl-color:#2977ff;--md-code-hl-color--light:#2977ff1a;--md-code-hl-number-color:#e6695b;--md-code-hl-special-color:#f06090;--md-code-hl-function-color:#c973d9;--md-code-hl-constant-color:#9383e2;--md-code-hl-keyword-color:#6791e0;--md-code-hl-string-color:#2fb170;--md-code-hl-name-color:var(--md-code-fg-color);--md-code-hl-operator-color:var(--md-default-fg-color--light);--md-code-hl-punctuation-color:var(--md-default-fg-color--light);--md-code-hl-comment-color:var(--md-default-fg-color--light);--md-code-hl-generic-color:var(--md-default-fg-color--light);--md-code-hl-variable-color:var(--md-default-fg-color--light);--md-typeset-color:var(--md-default-fg-color);--md-typeset-a-color:var(--md-primary-fg-color);--md-typeset-kbd-color:hsla(var(--md-hue),15%,90%,0.12);--md-typeset-kbd-accent-color:hsla(var(--md-hue),15%,90%,0.2);--md-typeset-kbd-border-color:hsla(var(--md-hue),15%,14%,1);--md-typeset-mark-color:#4287ff4d;--md-typeset-table-color:hsla(var(--md-hue),15%,95%,0.12);--md-typeset-table-color--light:hsla(var(--md-hue),15%,95%,0.035);--md-admonition-fg-color:var(--md-default-fg-color);--md-admonition-bg-color:var(--md-default-bg-color);--md-footer-bg-color:hsla(var(--md-hue),15%,10%,0.87);--md-footer-bg-color--dark:hsla(var(--md-hue),15%,8%,1);--md-shadow-z1:0 0.2rem 0.5rem #0000000d,0 0 0.05rem #0000001a;--md-shadow-z2:0 0.2rem 0.5rem #00000040,0 0 0.05rem #00000040;--md-shadow-z3:0 0.2rem 0.5rem #0006,0 0 0.05rem #00000059;color-scheme:dark}[data-md-color-scheme=slate] img[src$="#gh-light-mode-only"],[data-md-color-scheme=slate] img[src$="#only-light"]{display:none}[data-md-color-scheme=slate][data-md-color-primary=pink]{--md-typeset-a-color:#ed5487}[data-md-color-scheme=slate][data-md-color-primary=purple]{--md-typeset-a-color:#c46fd3}[data-md-color-scheme=slate][data-md-color-primary=deep-purple]{--md-typeset-a-color:#a47bea}[data-md-color-scheme=slate][data-md-color-primary=indigo]{--md-typeset-a-color:#5488e8}[data-md-color-scheme=slate][data-md-color-primary=teal]{--md-typeset-a-color:#00ccb8}[data-md-color-scheme=slate][data-md-color-primary=green]{--md-typeset-a-color:#71c174}[data-md-color-scheme=slate][data-md-color-primary=deep-orange]{--md-typeset-a-color:#ff764d}[data-md-color-scheme=slate][data-md-color-primary=brown]{--md-typeset-a-color:#c1775c}[data-md-color-scheme=slate][data-md-color-primary=black],[data-md-color-scheme=slate][data-md-color-primary=blue-grey],[data-md-color-scheme=slate][data-md-color-primary=grey],[data-md-color-scheme=slate][data-md-color-primary=white]{--md-typeset-a-color:#5e8bde}[data-md-color-switching] *,[data-md-color-switching] :after,[data-md-color-switching] :before{transition-duration:0ms!important}}[data-md-color-accent=red]{--md-accent-fg-color:#ff1947;--md-accent-fg-color--transparent:#ff19471a;--md-accent-bg-color:#fff;--md-accent-bg-color--light:#ffffffb3}[data-md-color-accent=pink]{--md-accent-fg-color:#f50056;--md-accent-fg-color--transparent:#f500561a;--md-accent-bg-color:#fff;--md-accent-bg-color--light:#ffffffb3}[data-md-color-accent=purple]{--md-accent-fg-color:#df41fb;--md-accent-fg-color--transparent:#df41fb1a;--md-accent-bg-color:#fff;--md-accent-bg-color--light:#ffffffb3}[data-md-color-accent=deep-purple]{--md-accent-fg-color:#7c4dff;--md-accent-fg-color--transparent:#7c4dff1a;--md-accent-bg-color:#fff;--md-accent-bg-color--light:#ffffffb3}[data-md-color-accent=indigo]{--md-accent-fg-color:#526cfe;--md-accent-fg-color--transparent:#526cfe1a;--md-accent-bg-color:#fff;--md-accent-bg-color--light:#ffffffb3}[data-md-color-accent=blue]{--md-accent-fg-color:#4287ff;--md-accent-fg-color--transparent:#4287ff1a;--md-accent-bg-color:#fff;--md-accent-bg-color--light:#ffffffb3}[data-md-color-accent=light-blue]{--md-accent-fg-color:#0091eb;--md-accent-fg-color--transparent:#0091eb1a;--md-accent-bg-color:#fff;--md-accent-bg-color--light:#ffffffb3}[data-md-color-accent=cyan]{--md-accent-fg-color:#00bad6;--md-accent-fg-color--transparent:#00bad61a;--md-accent-bg-color:#fff;--md-accent-bg-color--light:#ffffffb3}[data-md-color-accent=teal]{--md-accent-fg-color:#00bda4;--md-accent-fg-color--transparent:#00bda41a;--md-accent-bg-color:#fff;--md-accent-bg-color--light:#ffffffb3}[data-md-color-accent=green]{--md-accent-fg-color:#00c753;--md-accent-fg-color--transparent:#00c7531a;--md-accent-bg-color:#fff;--md-accent-bg-color--light:#ffffffb3}[data-md-color-accent=light-green]{--md-accent-fg-color:#63de17;--md-accent-fg-color--transparent:#63de171a;--md-accent-bg-color:#fff;--md-accent-bg-color--light:#ffffffb3}[data-md-color-accent=lime]{--md-accent-fg-color:#b0eb00;--md-accent-fg-color--transparent:#b0eb001a;--md-accent-bg-color:#000000de;--md-accent-bg-color--light:#0000008a}[data-md-color-accent=yellow]{--md-accent-fg-color:#ffd500;--md-accent-fg-color--transparent:#ffd5001a;--md-accent-bg-color:#000000de;--md-accent-bg-color--light:#0000008a}[data-md-color-accent=amber]{--md-accent-fg-color:#fa0;--md-accent-fg-color--transparent:#ffaa001a;--md-accent-bg-color:#000000de;--md-accent-bg-color--light:#0000008a}[data-md-color-accent=orange]{--md-accent-fg-color:#ff9100;--md-accent-fg-color--transparent:#ff91001a;--md-accent-bg-color:#000000de;--md-accent-bg-color--light:#0000008a}[data-md-color-accent=deep-orange]{--md-accent-fg-color:#ff6e42;--md-accent-fg-color--transparent:#ff6e421a;--md-accent-bg-color:#fff;--md-accent-bg-color--light:#ffffffb3}[data-md-color-primary=red]{--md-primary-fg-color:#ef5552;--md-primary-fg-color--light:#e57171;--md-primary-fg-color--dark:#e53734;--md-primary-bg-color:#fff;--md-primary-bg-color--light:#ffffffb3}[data-md-color-primary=pink]{--md-primary-fg-color:#e92063;--md-primary-fg-color--light:#ec417a;--md-primary-fg-color--dark:#c3185d;--md-primary-bg-color:#fff;--md-primary-bg-color--light:#ffffffb3}[data-md-color-primary=purple]{--md-primary-fg-color:#ab47bd;--md-primary-fg-color--light:#bb69c9;--md-primary-fg-color--dark:#8c24a8;--md-primary-bg-color:#fff;--md-primary-bg-color--light:#ffffffb3}[data-md-color-primary=deep-purple]{--md-primary-fg-color:#7e56c2;--md-primary-fg-color--light:#9574cd;--md-primary-fg-color--dark:#673ab6;--md-primary-bg-color:#fff;--md-primary-bg-color--light:#ffffffb3}[data-md-color-primary=indigo]{--md-primary-fg-color:#4051b5;--md-primary-fg-color--light:#5d6cc0;--md-primary-fg-color--dark:#303fa1;--md-primary-bg-color:#fff;--md-primary-bg-color--light:#ffffffb3}[data-md-color-primary=blue]{--md-primary-fg-color:#2094f3;--md-primary-fg-color--light:#42a5f5;--md-primary-fg-color--dark:#1975d2;--md-primary-bg-color:#fff;--md-primary-bg-color--light:#ffffffb3}[data-md-color-primary=light-blue]{--md-primary-fg-color:#02a6f2;--md-primary-fg-color--light:#28b5f6;--md-primary-fg-color--dark:#0287cf;--md-primary-bg-color:#fff;--md-primary-bg-color--light:#ffffffb3}[data-md-color-primary=cyan]{--md-primary-fg-color:#00bdd6;--md-primary-fg-color--light:#25c5da;--md-primary-fg-color--dark:#0097a8;--md-primary-bg-color:#fff;--md-primary-bg-color--light:#ffffffb3}[data-md-color-primary=teal]{--md-primary-fg-color:#009485;--md-primary-fg-color--light:#26a699;--md-primary-fg-color--dark:#007a6c;--md-primary-bg-color:#fff;--md-primary-bg-color--light:#ffffffb3}[data-md-color-primary=green]{--md-primary-fg-color:#4cae4f;--md-primary-fg-color--light:#68bb6c;--md-primary-fg-color--dark:#398e3d;--md-primary-bg-color:#fff;--md-primary-bg-color--light:#ffffffb3}[data-md-color-primary=light-green]{--md-primary-fg-color:#8bc34b;--md-primary-fg-color--light:#9ccc66;--md-primary-fg-color--dark:#689f38;--md-primary-bg-color:#fff;--md-primary-bg-color--light:#ffffffb3}[data-md-color-primary=lime]{--md-primary-fg-color:#cbdc38;--md-primary-fg-color--light:#d3e156;--md-primary-fg-color--dark:#b0b52c;--md-primary-bg-color:#000000de;--md-primary-bg-color--light:#0000008a}[data-md-color-primary=yellow]{--md-primary-fg-color:#ffec3d;--md-primary-fg-color--light:#ffee57;--md-primary-fg-color--dark:#fbc02d;--md-primary-bg-color:#000000de;--md-primary-bg-color--light:#0000008a}[data-md-color-primary=amber]{--md-primary-fg-color:#ffc105;--md-primary-fg-color--light:#ffc929;--md-primary-fg-color--dark:#ffa200;--md-primary-bg-color:#000000de;--md-primary-bg-color--light:#0000008a}[data-md-color-primary=orange]{--md-primary-fg-color:#ffa724;--md-primary-fg-color--light:#ffa724;--md-primary-fg-color--dark:#fa8900;--md-primary-bg-color:#000000de;--md-primary-bg-color--light:#0000008a}[data-md-color-primary=deep-orange]{--md-primary-fg-color:#ff6e42;--md-primary-fg-color--light:#ff8a66;--md-primary-fg-color--dark:#f4511f;--md-primary-bg-color:#fff;--md-primary-bg-color--light:#ffffffb3}[data-md-color-primary=brown]{--md-primary-fg-color:#795649;--md-primary-fg-color--light:#8d6e62;--md-primary-fg-color--dark:#5d4037;--md-primary-bg-color:#fff;--md-primary-bg-color--light:#ffffffb3}[data-md-color-primary=grey]{--md-primary-fg-color:#757575;--md-primary-fg-color--light:#9e9e9e;--md-primary-fg-color--dark:#616161;--md-primary-bg-color:#fff;--md-primary-bg-color--light:#ffffffb3;--md-typeset-a-color:#4051b5}[data-md-color-primary=blue-grey]{--md-primary-fg-color:#546d78;--md-primary-fg-color--light:#607c8a;--md-primary-fg-color--dark:#455a63;--md-primary-bg-color:#fff;--md-primary-bg-color--light:#ffffffb3;--md-typeset-a-color:#4051b5}[data-md-color-primary=light-green]:not([data-md-color-scheme=slate]){--md-typeset-a-color:#72ad2e}[data-md-color-primary=lime]:not([data-md-color-scheme=slate]){--md-typeset-a-color:#8b990a}[data-md-color-primary=yellow]:not([data-md-color-scheme=slate]){--md-typeset-a-color:#b8a500}[data-md-color-primary=amber]:not([data-md-color-scheme=slate]){--md-typeset-a-color:#d19d00}[data-md-color-primary=orange]:not([data-md-color-scheme=slate]){--md-typeset-a-color:#e68a00}[data-md-color-primary=white]{--md-primary-fg-color:hsla(var(--md-hue),0%,100%,1);--md-primary-fg-color--light:hsla(var(--md-hue),0%,100%,0.7);--md-primary-fg-color--dark:hsla(var(--md-hue),0%,0%,0.07);--md-primary-bg-color:hsla(var(--md-hue),0%,0%,0.87);--md-primary-bg-color--light:hsla(var(--md-hue),0%,0%,0.54);--md-typeset-a-color:#4051b5}[data-md-color-primary=white] .md-button{color:var(--md-typeset-a-color)}[data-md-color-primary=white] .md-button--primary{background-color:var(--md-typeset-a-color);border-color:var(--md-typeset-a-color);color:hsla(var(--md-hue),0%,100%,1)}@media screen and (min-width:60em){[data-md-color-primary=white] .md-search__form{background-color:hsla(var(--md-hue),0%,0%,.07)}[data-md-color-primary=white] .md-search__form:hover{background-color:hsla(var(--md-hue),0%,0%,.32)}[data-md-color-primary=white] .md-search__input+.md-search__icon{color:hsla(var(--md-hue),0%,0%,.87)}}@media screen and (min-width:76.25em){[data-md-color-primary=white] .md-tabs{border-bottom:.05rem solid #00000012}}[data-md-color-primary=black]{--md-primary-fg-color:hsla(var(--md-hue),15%,9%,1);--md-primary-fg-color--light:hsla(var(--md-hue),15%,9%,0.54);--md-primary-fg-color--dark:hsla(var(--md-hue),15%,9%,1);--md-primary-bg-color:hsla(var(--md-hue),15%,100%,1);--md-primary-bg-color--light:hsla(var(--md-hue),15%,100%,0.7);--md-typeset-a-color:#4051b5}[data-md-color-primary=black] .md-button{color:var(--md-typeset-a-color)}[data-md-color-primary=black] .md-button--primary{background-color:var(--md-typeset-a-color);border-color:var(--md-typeset-a-color);color:hsla(var(--md-hue),0%,100%,1)}[data-md-color-primary=black] .md-header{background-color:hsla(var(--md-hue),15%,9%,1)}@media screen and (max-width:59.984375em){[data-md-color-primary=black] .md-nav__source{background-color:hsla(var(--md-hue),15%,11%,.87)}}@media screen and (max-width:76.234375em){html [data-md-color-primary=black] .md-nav--primary .md-nav__title[for=__drawer]{background-color:hsla(var(--md-hue),15%,9%,1)}}@media screen and (min-width:76.25em){[data-md-color-primary=black] .md-tabs{background-color:hsla(var(--md-hue),15%,9%,1)}}��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/assets/stylesheets/palette.06af60db.min.css.map������������0000664�0000000�0000000�00000007077�14753064456�0031226�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{"version":3,"sources":["src/templates/assets/stylesheets/palette/_scheme.scss","../../../../src/templates/assets/stylesheets/palette.scss","src/templates/assets/stylesheets/palette/_accent.scss","src/templates/assets/stylesheets/palette/_primary.scss","src/templates/assets/stylesheets/utilities/_break.scss"],"names":[],"mappings":"AA2BA,cAGE,6BAME,sDAAA,CACA,6DAAA,CACA,+DAAA,CACA,gEAAA,CACA,mDAAA,CACA,6DAAA,CACA,+DAAA,CACA,gEAAA,CAGA,mDAAA,CACA,gDAAA,CAGA,0BAAA,CACA,mCAAA,CAGA,iCAAA,CACA,kCAAA,CACA,mCAAA,CACA,mCAAA,CACA,kCAAA,CACA,iCAAA,CACA,+CAAA,CACA,6DAAA,CACA,gEAAA,CACA,4DAAA,CACA,4DAAA,CACA,6DAAA,CAGA,6CAAA,CAGA,+CAAA,CAGA,uDAAA,CACA,6DAAA,CACA,2DAAA,CAGA,iCAAA,CAGA,yDAAA,CACA,iEAAA,CAGA,mDAAA,CACA,mDAAA,CAGA,qDAAA,CACA,uDAAA,CAGA,8DAAA,CAKA,8DAAA,CAKA,0DAAA,CAvEA,iBCeF,CD6DE,kHAEE,YC3DJ,CDkFE,yDACE,4BChFJ,CD+EE,2DACE,4BC7EJ,CD4EE,gEACE,4BC1EJ,CDyEE,2DACE,4BCvEJ,CDsEE,yDACE,4BCpEJ,CDmEE,0DACE,4BCjEJ,CDgEE,gEACE,4BC9DJ,CD6DE,0DACE,4BC3DJ,CD0DE,2OACE,4BC/CJ,CDsDA,+FAGE,iCCpDF,CACF,CC/CE,2BACE,4BAAA,CACA,2CAAA,CAOE,yBAAA,CACA,qCD2CN,CCrDE,4BACE,4BAAA,CACA,2CAAA,CAOE,yBAAA,CACA,qCDkDN,CC5DE,8BACE,4BAAA,CACA,2CAAA,CAOE,yBAAA,CACA,qCDyDN,CCnEE,mCACE,4BAAA,CACA,2CAAA,CAOE,yBAAA,CACA,qCDgEN,CC1EE,8BACE,4BAAA,CACA,2CAAA,CAOE,yBAAA,CACA,qCDuEN,CCjFE,4BACE,4BAAA,CACA,2CAAA,CAOE,yBAAA,CACA,qCD8EN,CCxFE,kCACE,4BAAA,CACA,2CAAA,CAOE,yBAAA,CACA,qCDqFN,CC/FE,4BACE,4BAAA,CACA,2CAAA,CAOE,yBAAA,CACA,qCD4FN,CCtGE,4BACE,4BAAA,CACA,2CAAA,CAOE,yBAAA,CACA,qCDmGN,CC7GE,6BACE,4BAAA,CACA,2CAAA,CAOE,yBAAA,CACA,qCD0GN,CCpHE,mCACE,4BAAA,CACA,2CAAA,CAOE,yBAAA,CACA,qCDiHN,CC3HE,4BACE,4BAAA,CACA,2CAAA,CAIE,8BAAA,CACA,qCD2HN,CClIE,8BACE,4BAAA,CACA,2CAAA,CAIE,8BAAA,CACA,qCDkIN,CCzIE,6BACE,yBAAA,CACA,2CAAA,CAIE,8BAAA,CACA,qCDyIN,CChJE,8BACE,4BAAA,CACA,2CAAA,CAIE,8BAAA,CACA,qCDgJN,CCvJE,mCACE,4BAAA,CACA,2CAAA,CAOE,yBAAA,CACA,qCDoJN,CEzJE,4BACE,6BAAA,CACA,oCAAA,CACA,mCAAA,CAOE,0BAAA,CACA,sCFsJN,CEjKE,6BACE,6BAAA,CACA,oCAAA,CACA,mCAAA,CAOE,0BAAA,CACA,sCF8JN,CEzKE,+BACE,6BAAA,CACA,oCAAA,CACA,mCAAA,CAOE,0BAAA,CACA,sCFsKN,CEjLE,oCACE,6BAAA,CACA,oCAAA,CACA,mCAAA,CAOE,0BAAA,CACA,sCF8KN,CEzLE,+BACE,6BAAA,CACA,oCAAA,CACA,mCAAA,CAOE,0BAAA,CACA,sCFsLN,CEjME,6BACE,6BAAA,CACA,oCAAA,CACA,mCAAA,CAOE,0BAAA,CACA,sCF8LN,CEzME,mCACE,6BAAA,CACA,oCAAA,CACA,mCAAA,CAOE,0BAAA,CACA,sCFsMN,CEjNE,6BACE,6BAAA,CACA,oCAAA,CACA,mCAAA,CAOE,0BAAA,CACA,sCF8MN,CEzNE,6BACE,6BAAA,CACA,oCAAA,CACA,mCAAA,CAOE,0BAAA,CACA,sCFsNN,CEjOE,8BACE,6BAAA,CACA,oCAAA,CACA,mCAAA,CAOE,0BAAA,CACA,sCF8NN,CEzOE,oCACE,6BAAA,CACA,oCAAA,CACA,mCAAA,CAOE,0BAAA,CACA,sCFsON,CEjPE,6BACE,6BAAA,CACA,oCAAA,CACA,mCAAA,CAIE,+BAAA,CACA,sCFiPN,CEzPE,+BACE,6BAAA,CACA,oCAAA,CACA,mCAAA,CAIE,+BAAA,CACA,sCFyPN,CEjQE,8BACE,6BAAA,CACA,oCAAA,CACA,mCAAA,CAIE,+BAAA,CACA,sCFiQN,CEzQE,+BACE,6BAAA,CACA,oCAAA,CACA,mCAAA,CAIE,+BAAA,CACA,sCFyQN,CEjRE,oCACE,6BAAA,CACA,oCAAA,CACA,mCAAA,CAOE,0BAAA,CACA,sCF8QN,CEzRE,8BACE,6BAAA,CACA,oCAAA,CACA,mCAAA,CAOE,0BAAA,CACA,sCFsRN,CEjSE,6BACE,6BAAA,CACA,oCAAA,CACA,mCAAA,CAOE,0BAAA,CACA,sCAAA,CAKA,4BF0RN,CE1SE,kCACE,6BAAA,CACA,oCAAA,CACA,mCAAA,CAOE,0BAAA,CACA,sCAAA,CAKA,4BFmSN,CEpRE,sEACE,4BFuRJ,CExRE,+DACE,4BF2RJ,CE5RE,iEACE,4BF+RJ,CEhSE,gEACE,4BFmSJ,CEpSE,iEACE,4BFuSJ,CE9RA,8BACE,mDAAA,CACA,4DAAA,CACA,0DAAA,CACA,oDAAA,CACA,2DAAA,CAGA,4BF+RF,CE5RE,yCACE,+BF8RJ,CE3RI,kDAEE,0CAAA,CACA,sCAAA,CAFA,mCF+RN,CG3MI,mCD1EA,+CACE,8CFwRJ,CErRI,qDACE,8CFuRN,CElRE,iEACE,mCFoRJ,CACF,CGtNI,sCDvDA,uCACE,oCFgRJ,CACF,CEvQA,8BACE,kDAAA,CACA,4DAAA,CACA,wDAAA,CACA,oDAAA,CACA,6DAAA,CAGA,4BFwQF,CErQE,yCACE,+BFuQJ,CEpQI,kDAEE,0CAAA,CACA,sCAAA,CAFA,mCFwQN,CEjQE,yCACE,6CFmQJ,CG5NI,0CDhCA,8CACE,gDF+PJ,CACF,CGjOI,0CDvBA,iFACE,6CF2PJ,CACF,CGzPI,sCDKA,uCACE,6CFuPJ,CACF","file":"palette.css"}�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mkdocs-material-9.6.4/material/templates/base.html��������������������������������������������������0000664�0000000�0000000�00000024664�14753064456�0022234�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������{#- This file was automatically generated - do not edit -#} {% import "partials/language.html" as lang with context %} <!doctype html> <html lang="{{ lang.t('language') }}" class="no-js"> <head> {% block site_meta %} <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> {% if page.meta and page.meta.description %} <meta name="description" content="{{ page.meta.description }}"> {% elif config.site_description %} <meta name="description" content="{{ config.site_description }}"> {% endif %} {% if page.meta and page.meta.author %} <meta name="author" content="{{ page.meta.author }}"> {% elif config.site_author %} <meta name="author" content="{{ config.site_author }}"> {% endif %} {% if page.canonical_url %} <link rel="canonical" href="{{ page.canonical_url }}"> {% endif %} {% if page.previous_page %} <link rel="prev" href="{{ page.previous_page.url | url }}"> {% endif %} {% if page.next_page %} <link rel="next" href="{{ page.next_page.url | url }}"> {% endif %} {% if "rss" in config.plugins %} <link rel="alternate" type="application/rss+xml" title="{{ lang.t('rss.created') }}" href="{{ 'feed_rss_created.xml' | url }}"> <link rel="alternate" type="application/rss+xml" title="{{ lang.t('rss.updated') }}" href="{{ 'feed_rss_updated.xml' | url }}"> {% endif %} <link rel="icon" href="{{ config.theme.favicon | url }}"> <meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-9.6.4"> {% endblock %} {% block htmltitle %} {% if page.meta and page.meta.title %} <title>{{ page.meta.title }} - {{ config.site_name }} {% elif page.title and not page.is_homepage %} {{ page.title | striptags }} - {{ config.site_name }} {% else %} {{ config.site_name }} {% endif %} {% endblock %} {% block styles %} {% if config.theme.palette %} {% set palette = config.theme.palette %} {% endif %} {% include "partials/icons.html" %} {% endblock %} {% block libs %} {% for script in config.extra.polyfills %} {{ script | script_tag }} {% endfor %} {% endblock %} {% block fonts %} {% if config.theme.font != false %} {% set text = config.theme.font.get("text", "Roboto") %} {% set code = config.theme.font.get("code", "Roboto Mono") %} {% endif %} {% endblock %} {% for path in config.extra_css %} {% endfor %} {% include "partials/javascripts/base.html" %} {% block analytics %} {% include "partials/integrations/analytics.html" %} {% endblock %} {% if page.meta and page.meta.meta %} {% for tag in page.meta.meta %} {% endfor %} {% endif %} {% block extrahead %}{% endblock %} {% set direction = config.theme.direction or lang.t("direction") %} {% if config.theme.palette %} {% set palette = config.theme.palette %} {% if not palette is mapping %} {% set palette = palette | first %} {% endif %} {% set scheme = palette.scheme | d("default", true) %} {% set primary = palette.primary | d("indigo", true) %} {% set accent = palette.accent | d("indigo", true) %} {% else %} {% endif %} {% set features = config.theme.features or [] %}
{% if self.announce() %} {% endif %}
{% if config.extra.version %} {% endif %} {% block header %} {% include "partials/header.html" %} {% endblock %}
{% block hero %}{% endblock %} {% block tabs %} {% if "navigation.tabs.sticky" not in features %} {% if "navigation.tabs" in features %} {% include "partials/tabs.html" %} {% endif %} {% endif %} {% endblock %}
{% block site_nav %} {% if nav %} {% if page.meta and page.meta.hide %} {% set hidden = "hidden" if "navigation" in page.meta.hide %} {% endif %} {% endif %} {% if "toc.integrate" not in features %} {% if page.meta and page.meta.hide %} {% set hidden = "hidden" if "toc" in page.meta.hide %} {% endif %} {% endif %} {% endblock %} {% block container %}
{% block content %} {% include "partials/content.html" %} {% endblock %}
{% endblock %} {% include "partials/javascripts/content.html" %}
{% if "navigation.top" in features %} {% include "partials/top.html" %} {% endif %}
{% block footer %} {% include "partials/footer.html" %} {% endblock %}
{% if "navigation.instant.progress" in features %} {% include "partials/progress.html" %} {% endif %} {% if config.extra.consent %} {% include "partials/javascripts/consent.html" %} {% endif %} {% block config %} {%- set app = { "base": base_url, "features": features, "translations": {}, "search": "assets/javascripts/workers/search.f8cc74c7.min.js" | url } -%} {%- if config.extra.version -%} {%- set mike = config.plugins.get("mike") -%} {%- if not mike or mike.config.version_selector -%} {%- set _ = app.update({ "version": config.extra.version }) -%} {%- endif -%} {%- endif -%} {%- if config.extra.tags -%} {%- set _ = app.update({ "tags": config.extra.tags }) -%} {%- endif -%} {%- set translations = app.translations -%} {%- for key in [ "clipboard.copy", "clipboard.copied", "search.result.placeholder", "search.result.none", "search.result.one", "search.result.other", "search.result.more.one", "search.result.more.other", "search.result.term.missing", "select.version" ] -%} {%- set _ = translations.update({ key: lang.t(key) }) -%} {%- endfor -%} {% endblock %} {% block scripts %} {% for script in config.extra_javascript %} {{ script | script_tag }} {% endfor %} {% endblock %} mkdocs-material-9.6.4/material/templates/blog-post.html000066400000000000000000000133751475306445600232250ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% extends "main.html" %} {% import "partials/nav-item.html" as item with context %} {% block container %}
{% if "toc.integrate" in features %} {% include "partials/toc.html" %} {% endif %}
{% block content %} {% include "partials/content.html" %} {% endblock %}
{% endblock %} mkdocs-material-9.6.4/material/templates/blog.html000066400000000000000000000010521475306445600222270ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% extends "main.html" %} {% block container %}
{{ page.content }}
{% for post in posts %} {% include "partials/post.html" %} {% endfor %} {% if pagination %} {% block pagination %} {% include "partials/pagination.html" %} {% endblock %} {% endif %}
{% endblock %} mkdocs-material-9.6.4/material/templates/fragments/000077500000000000000000000000001475306445600224065ustar00rootroot00000000000000mkdocs-material-9.6.4/material/templates/fragments/tags/000077500000000000000000000000001475306445600233445ustar00rootroot00000000000000mkdocs-material-9.6.4/material/templates/fragments/tags/default/000077500000000000000000000000001475306445600247705ustar00rootroot00000000000000mkdocs-material-9.6.4/material/templates/fragments/tags/default/listing.html000066400000000000000000000007101475306445600273250ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro render(listing) %} {{ listing.content }}
    {% for mapping in listing.mappings %}
  • {{ mapping.item.title }}
  • {% endfor %} {% for child in listing %}
  • {{ render(child) }}
  • {% endfor %}
{% endmacro %} {{ render(listing) }} mkdocs-material-9.6.4/material/templates/fragments/tags/default/tag.html000066400000000000000000000006551475306445600264370ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% set class = "md-tag" %} {% if tag.hidden %} {% set class = class ~ " md-tag-shadow" %} {% endif %} {% if config.extra.tags %} {% set class = class ~ " md-tag-icon" %} {% if tag.name in config.extra.tags %} {% set class = class ~ " md-tag--" ~ config.extra.tags[tag.name] %} {% endif %} {% endif %} {{- tag.name -}} mkdocs-material-9.6.4/material/templates/main.html000066400000000000000000000001301475306445600222240ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% extends "base.html" %} mkdocs-material-9.6.4/material/templates/mkdocs_theme.yml000066400000000000000000000034571475306445600236160ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # Language for theme localization language: en # Text direction (can be ltr or rtl), default: ltr direction: # Feature flags for functionality that alters behavior significantly, and thus # may be a matter of taste features: [] # Fonts used by Material, automatically loaded from Google Fonts - see the site # for a list of available fonts font: # Default font for text text: Roboto # Fixed-width font for code listings code: Roboto Mono # From Material 5.x on, icons are inlined into the HTML and CSS as SVGs. # Icons that are part of the HTML can be configured and replaced icon: # Favicon to be rendered favicon: assets/images/favicon.png # Static pages to build static_templates: - 404.html mkdocs-material-9.6.4/material/templates/partials/000077500000000000000000000000001475306445600222375ustar00rootroot00000000000000mkdocs-material-9.6.4/material/templates/partials/actions.html000066400000000000000000000015151475306445600245670ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% if page.edit_url %} {% if "content.action.edit" in features %} {% set icon = config.theme.icon.edit or "material/file-edit-outline" %} {% include ".icons/" ~ icon ~ ".svg" %} {% endif %} {% if "content.action.view" in features %} {% if "/blob/" in page.edit_url %} {% set part = "blob" %} {% else %} {% set part = "edit" %} {% endif %} {% set icon = config.theme.icon.view or "material/file-eye-outline" %} {% include ".icons/" ~ icon ~ ".svg" %} {% endif %} {% endif %} mkdocs-material-9.6.4/material/templates/partials/alternate.html000066400000000000000000000013161475306445600251050ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#}
{% set icon = config.theme.icon.alternate or "material/translate" %}
mkdocs-material-9.6.4/material/templates/partials/comments.html000066400000000000000000000000761475306445600247550ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} mkdocs-material-9.6.4/material/templates/partials/consent.html000066400000000000000000000040421475306445600245760ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% set cookies = config.extra.consent.cookies | d({}) %} {% if config.extra.analytics %} {% if "analytics" not in cookies %} {% set _ = cookies.update({ "analytics": "Google Analytics" }) %} {% endif %} {% endif %} {% if config.repo_url and "github.com" in config.repo_url %} {% if "github" not in cookies %} {% set _ = cookies.update({ "github": "GitHub" }) %} {% endif %} {% endif %} {% set actions = config.extra.consent.actions %} {% if not actions %} {% set actions = ["accept", "manage"] %} {% endif %} {% if "manage" not in actions %} {% set checked = "checked" %} {% endif %}

{{ config.extra.consent.title }}

{{ config.extra.consent.description }}

mkdocs-material-9.6.4/material/templates/partials/content.html000066400000000000000000000005731475306445600246040ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% include "partials/tags.html" %} {% include "partials/actions.html" %} {% if "\x3ch1" not in page.content %}

{{ page.title | d(config.site_name, true)}}

{% endif %} {{ page.content }} {% include "partials/source-file.html" %} {% include "partials/feedback.html" %} {% include "partials/comments.html" %} mkdocs-material-9.6.4/material/templates/partials/copyright.html000066400000000000000000000006451475306445600251420ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} mkdocs-material-9.6.4/material/templates/partials/feedback.html000066400000000000000000000026261475306445600246570ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% if config.extra.analytics %} {% set feedback = config.extra.analytics.feedback %} {% endif %} {% if page.meta and page.meta.hide %} {% if "feedback" in page.meta.hide %} {% set feedback = None %} {% endif %} {% endif %} {% if feedback %} {% endif %} mkdocs-material-9.6.4/material/templates/partials/footer.html000066400000000000000000000043041475306445600244240ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} mkdocs-material-9.6.4/material/templates/partials/header.html000066400000000000000000000046611475306445600243640ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% set class = "md-header" %} {% if "navigation.tabs.sticky" in features %} {% set class = class ~ " md-header--shadow md-header--lifted" %} {% elif "navigation.tabs" not in features %} {% set class = class ~ " md-header--shadow" %} {% endif %}
{% if "navigation.tabs.sticky" in features %} {% if "navigation.tabs" in features %} {% include "partials/tabs.html" %} {% endif %} {% endif %}
mkdocs-material-9.6.4/material/templates/partials/icons.html000066400000000000000000000027361475306445600242500ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% if config.theme.icon.admonition %} {% set style = ["\x3cstyle\x3e:root{"] %} {% for type, icon in config.theme.icon.admonition.items() %} {% import ".icons/" ~ icon ~ ".svg" as icon %} {% set _ = style.append( "--md-admonition-icon--" ~ type ~ ":" ~ "url('data:image/svg+xml;charset=utf-8," ~ icon | replace("\n", "") ~ "');" ) %} {% endfor %} {% set _ = style.append("}\x3c/style\x3e") %} {{ style | join }} {% endif %} {% if config.theme.icon.annotation %} {% set style = ["\x3cstyle\x3e:root{"] %} {% import ".icons/" ~ config.theme.icon.annotation ~ ".svg" as icon %} {% set _ = style.append( "--md-annotation-icon:" ~ "url('data:image/svg+xml;charset=utf-8," ~ icon | replace("\n", "") ~ "');" ) %} {% set _ = style.append("}\x3c/style\x3e") %} {{ style | join }} {% endif %} {% if config.theme.icon.tag %} {% set style = ["\x3cstyle\x3e"] %} {% for type, icon in config.theme.icon.tag.items() %} {% import ".icons/" ~ icon ~ ".svg" as icon %} {% if type != "default" %} {% set modifier = ".md-tag--" ~ type %} {% endif %} {% set _ = style.append( ".md-tag" ~ modifier ~ "{" ~ "--md-tag-icon:" ~ "url('data:image/svg+xml;charset=utf-8," ~ icon | replace("\n", "") ~ "');" ~ "}" ) %} {% endfor %} {% set _ = style.append("\x3c/style\x3e") %} {{ style | join }} {% endif %} mkdocs-material-9.6.4/material/templates/partials/integrations/000077500000000000000000000000001475306445600247455ustar00rootroot00000000000000mkdocs-material-9.6.4/material/templates/partials/integrations/analytics.html000066400000000000000000000010301475306445600276140ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% if config.extra.analytics %} {% set provider = config.extra.analytics.provider %} {% endif %} {% if provider %} {% include "partials/integrations/analytics/" ~ provider ~ ".html" %} {% if config.extra.consent %} {% else %} {% endif %} {% endif %} mkdocs-material-9.6.4/material/templates/partials/integrations/analytics/000077500000000000000000000000001475306445600267345ustar00rootroot00000000000000mkdocs-material-9.6.4/material/templates/partials/integrations/analytics/google.html000066400000000000000000000023711475306445600311010ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% if config.extra.analytics %} {% set property = config.extra.analytics.property | d("", true) %} {% endif %} mkdocs-material-9.6.4/material/templates/partials/javascripts/000077500000000000000000000000001475306445600245705ustar00rootroot00000000000000mkdocs-material-9.6.4/material/templates/partials/javascripts/announce.html000066400000000000000000000004071475306445600272650ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} mkdocs-material-9.6.4/material/templates/partials/javascripts/base.html000066400000000000000000000006221475306445600263700ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} mkdocs-material-9.6.4/material/templates/partials/javascripts/consent.html000066400000000000000000000013201475306445600271230ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} mkdocs-material-9.6.4/material/templates/partials/javascripts/content.html000066400000000000000000000011631475306445600271310ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% if "content.tabs.link" in features %} {% endif %} mkdocs-material-9.6.4/material/templates/partials/javascripts/outdated.html000066400000000000000000000004021475306445600272630ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} mkdocs-material-9.6.4/material/templates/partials/javascripts/palette.html000066400000000000000000000013731475306445600271200ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} mkdocs-material-9.6.4/material/templates/partials/language.html000066400000000000000000000004151475306445600247100ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% import "partials/languages/" ~ config.theme.language ~ ".html" as lang %} {% import "partials/languages/en.html" as fallback %} {% macro t(key) %}{{ lang.t(key) or fallback.t(key) or key }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/000077500000000000000000000000001475306445600242055ustar00rootroot00000000000000mkdocs-material-9.6.4/material/templates/partials/languages/af.html000066400000000000000000000037331475306445600254670ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "af", "action.edit": "Wysig hierdie bladsy", "action.skip": "Slaan oor na inhoud", "action.view": "Bekyk bron van hierdie bladsy", "announce.dismiss": "Moenie dit weer wys nie", "blog.archive": "Argief", "blog.categories": "Kategorieë", "blog.categories.in": "binne", "blog.continue": "Lees verder", "blog.draft": "Konsep", "blog.index": "Terug na indeks", "blog.meta": "Metadata", "blog.references": "Verwante skakels", "clipboard.copy": "Kopieer na knipbord", "clipboard.copied": "gekopieer na knipbord", "consent.accept": "Aanvaar", "consent.manage": "Bestuur instellings", "consent.reject": "Verwerp", "footer": "Voetskrif", "footer.next": "Volgende", "footer.previous": "Vorige", "header": "Kopskrif", "meta.comments": "Kommentaar", "meta.source": "Bron", "nav": "Navigasie", "readtime.one": "1 minuut se lees", "readtime.other": "# minuut se lees", "rss.created": "RSS-voer geskep", "rss.updated": "RSS-voer van opgedateerde inhoud", "search": "Soek", "search.config.lang": "nl", "search.placeholder": "Soek", "search.share": "Deel", "search.reset": "Terugstel", "search.result.initializer": "Inisialisering van soektog", "search.result.placeholder": "Tik om te begin soek", "search.result.none": "Geen ooreenstemmende dokumente", "search.result.one": "1 ooreenstemmende dokument", "search.result.other": "# ooreenstemmende dokumente", "search.result.more.one": "1 meer op hierdie bladsy", "search.result.more.other": "# meer op hierdie bladsy", "search.result.term.missing": "Vermis", "select.language": "Kies taal", "select.version": "Kies weergawe", "source": "Slaan oor na inhoud", "source.file.contributors": "Medewerkers", "source.file.date.created": "Geskep", "source.file.date.updated": "Laaste opdatering", "tabs": "Duimgids", "toc": "Inhoudsopgawe", "top": "Terug na bo" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/ar.html000066400000000000000000000045311475306445600255000ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "ar", "direction": "rtl", "action.edit": "عدل الصفحة", "action.skip": "انتقل إلى المحتوى", "action.view": "عرض مصدر هذه الصفحة", "announce.dismiss": "لا تظهر هذا مرة أخرى", "blog.archive": "أرشيف", "blog.categories": "فئات", "blog.categories.in": "ضمن", "blog.continue": "أكمل القراءة", "blog.draft": "مسودة", "blog.index": "رجوع إلى الفهرس", "blog.meta": "بيانات وصفية", "blog.references": "روابط ذات علاقة", "clipboard.copy": "نسخ إلى الحافظة", "clipboard.copied": "تم النسخ الى الحافظة", "consent.accept": "قبول", "consent.manage": "إدارة الإعدادات", "consent.reject": "رفض", "footer": "هامش سفلي", "footer.next": "التالية", "footer.previous": "السابقة", "header": "عنوان العارضة", "meta.comments": "التعليقات", "meta.source": "المصدر", "nav": "تصفح", "readtime.one": "قراءة لمدة دقيقة", "readtime.other": "دقائق قراءة #", "rss.created": "ملقم بالخلاصات", "rss.updated": "ملقم بالخلاصات المحدثة", "search": "إبحث", "search.config.pipeline": " ", "search.placeholder": "بحث", "search.share": "شارك", "search.reset": "مسح كلي", "search.result.initializer": "بدء البحث", "search.result.placeholder": "اكتب لبدء البحث", "search.result.none": "لا توجد نتائج", "search.result.one": "نتائج البحث مستند واحد", "search.result.other": "نتائج البحث # مستندات", "search.result.more.one": "أكثر من 1 في هذه الصفحة", "search.result.more.other": "أكثر من # في هذه الصفحة", "search.result.term.missing": "مفقود", "select.language": "إختر اللغة", "select.version": "إختر الإصدار", "source": "اذهب إلى المصدر", "source.file.contributors": "المساهمون", "source.file.date.created": "خلقت", "source.file.date.updated": "اخر تحديث", "tabs": "نوافذ", "toc": "جدول المحتويات", "top": "عد إلى الأعلى" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/az.html000066400000000000000000000040421475306445600255050ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "az", "action.edit": "Bu səhifəni redaktə eləmək", "action.skip": "Məzmuna keçin", "action.view": "Bu səhifənin mənbəyinə baxın", "announce.dismiss": "Bunu bir daha göstərməyin", "blog.archive": "Arxiv", "blog.categories": "Kateqoriyalar", "blog.continue": "Oxumağa davam etmək", "blog.draft": "Qaralama", "blog.index": "İndeksə qayıtmaq", "blog.meta": "Metadata", "blog.references": "Əlaqədar bağlantılar", "clipboard.copy": "Mübadilə buferə kopyalayın", "clipboard.copied": "Mübadilə buferə kopyalanıb", "consent.accept": "Qəbul etmək", "consent.manage": "Parametrləri idarə edin", "consent.reject": "Qəbul eləməmək", "footer.next": "Növbəti", "footer.previous": "Əvvəlki", "header": "Başlıq", "meta.comments": "Şərhlər", "meta.source": "Mənbə", "nav": "Navigasiya", "readtime.one": "1 dəqiqəyə oxumaq", "readtime.other": "# dəqiqəyə oxumaq", "rss.created": "RSS lenti", "rss.updated": "Yenilənmiş məzmunun RSS lenti", "search": "Axtarmaq", "search.placeholder": "Axtarmaq", "search.share": "Paylaşmaq", "search.reset": "Silmək", "search.result.initializer": "Axtarış işə salınır", "search.result.placeholder": "Axtarmağa başlamaq üçün yazın", "search.result.none": "Uyğun sənədlər yoxdur", "search.result.one": "1 dənə uyğun nəticə var", "search.result.other": "# dənə uyğun nəticə var", "search.result.more.one": "Bu səhifədə daha 1 dənə", "search.result.more.other": "Bu səhifədə daha # dənə", "search.result.term.missing": "İtkin", "select.language": "Dili seçmək", "select.version": "Versiyanı seçmək", "source": "Repositoriyaya baxmaq", "source.file.contributors": "Töhfəçilər", "source.file.date.created": "Yaradılmışdır", "source.file.date.updated": "Son yeniləmə", "tabs": "Nişanlar", "toc": "Mündəricat", "top": "Yuxarıya qayıtmaq" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/be.html000066400000000000000000000052701475306445600254650ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "be", "direction": "ltr", "action.edit": "Правіць старонку", "action.skip": "Перайсці да зместа", "action.view": "Паглядзець зыходны код старонкі", "announce.dismiss": "Больш не паказваць", "blog.archive": "Заархіваваць", "blog.categories": "Катэгорыі", "blog.categories.in": "у", "blog.continue": "Працягнуць чытаць", "blog.draft": "Чарнавік", "blog.index": "Вярнуцца на хатнюю", "blog.meta": "Метаданыя", "blog.references": "Спасылкі па тэме", "clipboard.copy": "Скапіраваць у буфер абмена", "clipboard.copied": "Скапіравана ў буфер абмена", "consent.accept": "Прыняць", "consent.manage": "Кіраваць наладамі", "consent.reject": "Адхіліць", "footer": "Ніжні калантытул", "footer.next": "Наступная", "footer.previous": "Папярэдняя", "header": "Верхні калантытул", "meta.comments": "Каментарыі", "meta.source": "Зыходны код", "nav": "Навігацыя", "readtime.one": "Прачытанне зойме 1 хв", "readtime.other": "Прачытанне зойме # хв", "rss.created": "RSS стужка", "rss.updated": "RSS стужка з абноўленым зместам", "search": "Пошук", "search.config.lang": "ru", "search.placeholder": "Пошук", "search.share": "Падзяліцца", "search.reset": "Ачысціць", "search.result.initializer": "Пачынаем пошук", "search.result.placeholder": "Пачніце друкаваць для пошуку", "search.result.none": "Нічога ня знойдзена", "search.result.one": "Адзін адпаведны дакумент", "search.result.other": "Адпаведных дакументаў: #", "search.result.more.one": "Яшчэ 1 на гэтай старонцы", "search.result.more.other": "Яшчэ # на гэтай старонцы", "search.result.term.missing": "Адсутнічае", "select.language": "Выберыце мову", "select.version": "Выберыце версію", "source": "Перайсці ў рэпазітар", "source.file.contributors": "Укладальнікі", "source.file.date.created": "Створана", "source.file.date.updated": "Апошняе абнаўленне", "tabs": "Укладкі", "toc": "Змест", "top": "Вярнуцца да пачатку" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/bg.html000066400000000000000000000047701475306445600254730ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "bg", "action.edit": "Редактирай тази страница", "action.skip": "Към съдържанието", "action.view": "Виж съдържанието на тази страница", "announce.dismiss": "Не показвай повече", "blog.archive": "Архив", "blog.categories": "Категории", "blog.categories.in": "В", "blog.continue": "Продължи четенето", "blog.draft": "Чернова", "blog.index": "Назад към индекса", "blog.meta": "Метаданни", "blog.references": "Свързани линкове", "clipboard.copy": "Копирай", "clipboard.copied": "Копирано", "consent.accept": "Приеми", "consent.manage": "Управление на настойките", "consent.reject": "Откажи", "footer": "Долен колонтитул", "footer.next": "Следваща", "footer.previous": "Предишна", "header": "Горен колонтитул", "meta.comments": "Коментари", "meta.source": "Код", "nav": "Навигация", "readtime.one": "1 мин четено", "readtime.other": "# мин четено", "rss.created": "RSS публикации", "rss.updated": "RSS публикации с актуализирано съдържание", "search": "Търси", "search.config.lang": "ru", "search.placeholder": "Търси", "search.share": "Сподели", "search.reset": "Изчисти", "search.result.initializer": "Инициализирано търсене", "search.result.placeholder": "Започнете да пишете, за да търсите", "search.result.none": "Няма резултати", "search.result.one": "1 резултат", "search.result.other": "# резултата", "search.result.more.one": "още 1 на тази страница", "search.result.more.other": "още # на тази страница", "search.result.term.missing": "Липсващо", "select.language": "Избери език", "select.version": "Избери версия", "source": "Към хранилището", "source.file.contributors": "Участници", "source.file.date.created": "Създаден", "source.file.date.updated": "Последна промяна", "tabs": "Табове", "toc": "Съдържание", "top": "Върни се в началото" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/bn.html000066400000000000000000000057261475306445600255040ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "bn", "action.edit": "এই পেজ এডিট করুন", "action.skip": "কনটেন্টে যান", "action.view": "পেজের ভিউ", "announce.dismiss": "আর কখনো দেখাবে না", "blog.archive": "সংরক্ষণাগার", "blog.categories": "বিভাগ", "blog.categories.in": "বিভাগের মধ্যে", "blog.continue": "পড়তে থাকুন", "blog.draft": "খসড়া", "blog.index": "ইনডেক্সে ফিরে যান", "blog.meta": "মেটাডেটা", "blog.references": "সম্পর্কিত লিংক", "clipboard.copy": "ক্লিপবোর্ডে কপি করুন", "clipboard.copied": "ক্লিপবোর্ডে কপি হয়েছে", "consent.accept": "গ্রহণ", "consent.manage": "সেটিংস ব্যবস্থাপনা", "consent.reject": "প্রত্যাখ্যান", "footer": "ফুটার", "footer.next": "পরে", "footer.previous": "পূর্ববর্তী", "header": "হেডার", "meta.comments": "মন্তব্য", "meta.source": "উৎস", "nav": "ন্যাভিগেশন", "readtime.one": "১ মিনিট পড়া", "readtime.other": "# মিনিট পড়া", "rss.created": "আরএসএস ফিড", "rss.updated": "আপডেট করা বিষয়বস্তুর আরএসএস ফিড", "search": "অনুসন্ধান করুন", "search.config.pipeline": " ", "search.placeholder": "অনুসন্ধান করুন", "search.share": "শেয়ার", "search.reset": "রিসেট", "search.result.initializer": "অনুসন্ধান শুরু করা হচ্ছে", "search.result.placeholder": "সার্চ টাইপ করুন", "search.result.none": "কিছু পাওয়া যায়নি", "search.result.one": "১ টা ডকুমেন্ট", "search.result.other": "# টা ডকুমেন্ট", "search.result.more.one": "এই পৃষ্ঠায় আরও ১টি আছে", "search.result.more.other": "এই পৃষ্ঠায় আরও #টি আছে", "search.result.term.missing": "অনুপস্থিত", "select.language": "ভাষা নির্বাচন করুণ", "select.version": "সংস্করণ নির্বাচন করুণ", "source": "রিপোজিটরিতে যান", "source.file.contributors": "অবদানকারী", "source.file.date.created": "তৈরি হয়েছে", "source.file.date.updated": "শেষ আপডেট", "tabs": "ট্যাব", "toc": "সূচি তালিকা", "top": "উপরে ফিরে যাও" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/ca.html000066400000000000000000000037751475306445600254720ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "ca", "action.edit": "Edita aquesta pàgina", "action.skip": "Salta el contingut", "action.view": "Visualitza el codi font", "announce.dismiss": "No ho tornis a mostrar", "blog.archive": "Arxiva", "blog.categories": "Categories", "blog.categories.in": "a", "blog.continue": "Continua llegint", "blog.draft": "Esborrany", "blog.index": "Torna a l'índex", "blog.meta": "Metadades", "blog.references": "Enllaços relacionats", "clipboard.copy": "Còpia al porta-retalls", "clipboard.copied": "Copiat al porta-retalls", "consent.accept": "Accepta", "consent.manage": "Gestiona la configuració", "consent.reject": "Rebutja", "footer": "Peu de pàgina", "footer.next": "Següent", "footer.previous": "Anterior", "header": "Capçalera", "meta.comments": "Comentaris", "meta.source": "Codi font", "nav": "Navegació", "readtime.one": "1 min de lectura", "readtime.other": "# min de lectura", "rss.created": "Canal RSS", "rss.updated": "Canal RSS de contingut actualitzat", "search": "Cerca", "search.placeholder": "Cerca", "search.share": "Comparteix", "search.reset": "Neteja", "search.result.initializer": "Inicialitzant cerca", "search.result.placeholder": "Escriu per a començar a cercar", "search.result.none": "Cap document coincideix", "search.result.one": "1 document coincident", "search.result.other": "# documents coincidents", "search.result.more.one": "1 més en aquesta pàgina", "search.result.more.other": "# més en aquesta pàgina", "search.result.term.missing": "Desaparegut", "select.language": "Selecciona la llengua", "select.version": "Selecciona la versió", "source": "Ves al repositori", "source.file.contributors": "Col·laboradors", "source.file.date.created": "Creada", "source.file.date.updated": "Darrera actualització", "tabs": "Pestanyes", "toc": "Taula de continguts", "top": "Torna a l'inici" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/cs.html000066400000000000000000000037551475306445600255120ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "cs", "action.edit": "Upravit tuto stránku", "action.skip": "Přeskočit obsah", "action.view": "Zobrazit zdroj této stránky", "announce.dismiss": "Již nezobrazovat", "blog.archive": "Archiv", "blog.categories": "Kategorie", "blog.categories.in": "v", "blog.continue": "Pokračovat ve čtení", "blog.draft": "Návrh", "blog.index": "Zpět na index", "blog.meta": "Metadata", "blog.references": "Související odkazy", "clipboard.copy": "Kopírovat do schránky", "clipboard.copied": "Zkopírováno do schránky", "consent.accept": "Akceptovat", "consent.manage": "Spravovat nastavení", "consent.reject": "Odmítnout", "footer": "Zápatí", "footer.next": "Další", "footer.previous": "Předchozí", "header": "Záhlaví", "meta.comments": "Komentáře", "meta.source": "Zdroj", "nav": "Navigace", "readtime.one": "1 min čtení", "readtime.other": "# min čtení", "rss.created": "RSS kanál", "rss.updated": "RSS zdroj aktualizovaného obsahu", "search": "Vyhledávání", "search.placeholder": "Hledat", "search.share": "Sdílet", "search.reset": "Vyčistit", "search.result.initializer": "Inicializace vyhledávání", "search.result.placeholder": "Pište co se má vyhledat", "search.result.none": "Nenalezeny žádné dokumenty", "search.result.one": "Nalezený dokument: 1", "search.result.other": "Nalezené dokumenty: #", "search.result.more.one": "1 další na této stránce", "search.result.more.other": "# více na této stránce", "search.result.term.missing": "Chybějící", "select.language": "Zvolte jazyk", "select.version": "Vyberte verzi", "source": "Přejít do repozitáře", "source.file.contributors": "Přispěvatelé", "source.file.date.created": "Vytvořeno", "source.file.date.updated": "Poslední aktualizace", "tabs": "Karty", "toc": "Obsah", "top": "Zpět na začátek" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/da.html000066400000000000000000000036721475306445600254670ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "da", "action.edit": "Redigér denne side", "action.skip": "Gå til indholdet", "action.view": "Vis kildetekst på denne side", "announce.dismiss": "Vis ikke dette igen", "blog.archive": "Arkiv", "blog.categories": "Kategorier", "blog.categories.in": "i", "blog.continue": "Læs mere", "blog.draft": "Udkast", "blog.index": "Gå tilbage", "blog.meta": "Metadata", "blog.references": "Relateret indhold", "clipboard.copy": "Kopiér til udklipsholderen", "clipboard.copied": "Kopieret til udklipsholderen", "consent.accept": "Accepter", "consent.manage": "Administrer indstillinger", "consent.reject": "Afvis", "footer": "Sidefod", "footer.next": "Næste", "footer.previous": "Forrige", "header": "Sidehoved", "meta.comments": "Kommentarer", "meta.source": "Kilde", "nav": "Navigation", "readtime.one": "1 minuts læsetid", "readtime.other": "# minutters læsetid", "rss.created": "RSS feed", "rss.updated": "RSS feed af opdateret indhold", "search": "Søg", "search.config.lang": "da", "search.placeholder": "Søg", "search.share": "Del", "search.reset": "Nulstil søgning", "search.result.initializer": "Start søgning", "search.result.placeholder": "Indtast søgeord", "search.result.none": "Ingen resultater fundet", "search.result.one": "1 resultat", "search.result.other": "# resultater", "search.result.more.one": "1 resultat mere på denne side", "search.result.more.other": "# resultater mere på denne side", "search.result.term.missing": "Mangler", "select.language": "Vælg sprog", "select.version": "Vælg version", "source": "Åbn arkiv", "source.file.contributors": "Bidragydere", "source.file.date.created": "Oprettet", "source.file.date.updated": "Sidste ændring", "tabs": "Faner", "toc": "Indholdsfortegnelse", "top": "Tilbage til start" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/de.html000066400000000000000000000037731475306445600254750ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "de", "action.edit": "Seite editieren", "action.skip": "Zum Inhalt", "action.view": "Quellcode der Seite anzeigen", "announce.dismiss": "Nicht mehr anzeigen", "blog.archive": "Archiv", "blog.categories": "Kategorien", "blog.categories.in": "in", "blog.continue": "Weiterlesen", "blog.draft": "Entwurf", "blog.index": "Zur Übersicht", "blog.meta": "Metadaten", "blog.references": "Weiterführende Links", "clipboard.copy": "In Zwischenablage kopieren", "clipboard.copied": "In Zwischenablage kopiert", "consent.accept": "Akzeptieren", "consent.manage": "Einstellungen", "consent.reject": "Ablehnen", "footer": "Fußzeile", "footer.next": "Weiter", "footer.previous": "Zurück", "header": "Kopfzeile", "meta.comments": "Kommentare", "meta.source": "Quellcode", "nav": "Navigation", "readtime.one": "1 Min. Lesezeit", "readtime.other": "# Min. Lesezeit", "rss.created": "RSS Feed", "rss.updated": "RSS Feed der aktualisierten Inhalte", "search": "Suche", "search.config.lang": "de", "search.placeholder": "Suche", "search.share": "Teilen", "search.reset": "Zurücksetzen", "search.result.initializer": "Suche wird initialisiert", "search.result.placeholder": "Suchbegriff eingeben", "search.result.none": "Keine Suchergebnisse", "search.result.one": "1 Suchergebnis", "search.result.other": "# Suchergebnisse", "search.result.more.one": "1 weiteres Suchergebnis auf dieser Seite", "search.result.more.other": "# weitere Suchergebnisse auf dieser Seite", "search.result.term.missing": "Es fehlt", "select.language": "Sprache wechseln", "select.version": "Version auswählen", "source": "Zum Repository", "source.file.contributors": "Mitwirkende", "source.file.date.created": "Erstellt", "source.file.date.updated": "Letztes Update", "tabs": "Hauptnavigation", "toc": "Inhaltsverzeichnis", "top": "Zurück zum Seitenanfang" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/el.html000066400000000000000000000053111475306445600254730ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "el", "action.edit": "Επεξεργασία αυτής της σελίδας", "action.skip": "Μετάβαση στο περιεχόμενο", "action.view": "Προβολή πηγαίου κώδικα", "announce.dismiss": "Μην το ξαναδείξετε αυτό", "blog.archive": "Aρχείο", "blog.categories": "Κατηγορίες", "blog.categories.in": "Στο", "blog.continue": "Περισσότερα", "blog.draft": "Πρόχειρο", "blog.index": "Eπιστροφή", "blog.meta": "Μεταδεδομένα", "blog.references": "Σχετικοί σύνδεσμοι", "clipboard.copy": "Αντιγραφή στο πρόχειρο", "clipboard.copied": "Αντιγράφηκε στο πρόχειρο", "consent.accept": "Αποδοχή", "consent.manage": "Περισσότερες επιλογές", "consent.reject": "Απόρριψη", "footer": "Υποσέλιδο", "footer.next": "Επόμενο", "footer.previous": "Προηγούμενο", "header": "Κεφαλίδα", "meta.comments": "Σχόλια", "meta.source": "Πηγή", "nav": "Πλοήγηση", "readtime.one": "1 λεπτό διάβασμα", "readtime.other": "# λεπτά διάβασμα", "rss.created": "Ροές Δεδομένων RSS", "rss.updated": "Ροές Δεδομένων RSS. Τελευταία νέα", "search": "Αναζήτηση", "search.placeholder": "Αναζήτηση", "search.share": "Διαμοίραση", "search.reset": "Καθαρισμός", "search.result.initializer": "Αρχικοποίηση αναζήτησης", "search.result.placeholder": "Πληκτρολογήστε για να αρχίσει η αναζήτηση", "search.result.none": "δεν βρήκε κάποιο έγγραφο", "search.result.one": "1 έγγραφο που ταιριάζει", "search.result.other": "# έγγραφα που ταιριάζουν", "search.result.more.one": "1 ακόμα σε αυτήν τη σελίδα", "search.result.more.other": "# ακόμα σε αυτήν τη σελίδα", "search.result.term.missing": "Λείπει", "select.language": "Επιλογή γλώσσας", "select.version": "Επιλογή έκδοσης", "source": "Μετάβαση στο αποθετήριο", "source.file.contributors": "Συνεισφέροντες", "source.file.date.created": "Δημιουργήθηκε", "source.file.date.updated": "τελευταία ενημέρωση", "tabs": "Καρτέλες", "toc": "Πίνακας περιεχομένων", "top": "Επιστροφή στην αρχή" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/en.html000066400000000000000000000037511475306445600255030ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "en", "direction": "ltr", "action.edit": "Edit this page", "action.skip": "Skip to content", "action.view": "View source of this page", "announce.dismiss": "Don't show this again", "blog.archive": "Archive", "blog.categories": "Categories", "blog.categories.in": "in", "blog.continue": "Continue reading", "blog.draft": "Draft", "blog.index": "Back to index", "blog.meta": "Metadata", "blog.references": "Related links", "clipboard.copy": "Copy to clipboard", "clipboard.copied": "Copied to clipboard", "consent.accept": "Accept", "consent.manage": "Manage settings", "consent.reject": "Reject", "footer": "Footer", "footer.next": "Next", "footer.previous": "Previous", "header": "Header", "meta.comments": "Comments", "meta.source": "Source", "nav": "Navigation", "readtime.one": "1 min read", "readtime.other": "# min read", "rss.created": "RSS feed", "rss.updated": "RSS feed of updated content", "search": "Search", "search.config.lang": "en", "search.config.pipeline": "stopWordFilter", "search.config.separator": "[\\s\\-]+", "search.placeholder": "Search", "search.share": "Share", "search.reset": "Clear", "search.result.initializer": "Initializing search", "search.result.placeholder": "Type to start searching", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.term.missing": "Missing", "select.language": "Select language", "select.version": "Select version", "source": "Go to repository", "source.file.contributors": "Contributors", "source.file.date.created": "Created", "source.file.date.updated": "Last update", "tabs": "Tabs", "toc": "Table of contents", "top": "Back to top" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/eo.html000066400000000000000000000036731475306445600255070ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "eo", "action.edit": "Redakti ĉi tiun paĝon", "action.skip": "Saltu al enhavo", "action.view": "Vidi fonton de ĉi tiu paĝo", "announce.dismiss": "Ne montru ĉi tion denove", "blog.archive": "Arkivo", "blog.categories": "Kategorioj", "blog.categories.in": "en", "blog.continue": "Daŭrigi legadon", "blog.draft": "Malneto", "blog.index": "Reen al indekso", "blog.meta": "Metadatenoj", "blog.references": "Rilataj ligiloj", "clipboard.copy": "Kopii al tondujo", "clipboard.copied": "Kopiado al klipo", "consent.accept": "Akcepti", "consent.manage": "Administri agordojn", "consent.reject": "Rifuzi", "footer": "Piedlinio", "footer.next": "Sekva", "footer.previous": "Antaŭa", "header": "Kaplinio", "meta.comments": "Komentoj", "meta.source": "Fontkodo", "nav": "Navigado", "readtime.one": "1 min legado", "readtime.other": "# min legado", "rss.created": "RSS-fluo", "rss.updated": "RSS-fluo de ĝisdatigita enhavo", "search": "Serĉi", "search.config.lang": "es", "search.placeholder": "Serĉo", "search.share": "Kunhavigi", "search.reset": "Klara", "search.result.initializer": "Komencante serĉon", "search.result.placeholder": "Tajpu por komenci serĉadon", "search.result.none": "Neniuj kongruaj dokumentoj", "search.result.one": "1 kongrua dokumento", "search.result.other": "# kongruaj dokumentoj", "search.result.more.one": "1 pli sur ĉi tiu paĝo", "search.result.more.other": "# pli sur ĉi tiu paĝo", "search.result.term.missing": "Mankanta", "select.language": "Elekti lingvon", "select.version": "Elekti version", "source": "Iru al deponejo", "source.file.contributors": "Kontribuantoj", "source.file.date.created": "Kreita", "source.file.date.updated": "Lasta ĝisdatigo", "tabs": "Langetoj", "toc": "Enhavtabelo", "top": "Reen al supro" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/es.html000066400000000000000000000040351475306445600255040ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "es", "action.edit": "Editar esta página", "action.skip": "Saltar a contenido", "action.view": "Ver código fuente de esta página", "announce.dismiss": "No mostrar esto de nuevo", "blog.archive": "Archivo", "blog.categories": "Categorías", "blog.categories.in": "en", "blog.continue": "Seguir leyendo", "blog.draft": "Borrador", "blog.index": "Regresar al índice", "blog.meta": "Metadata", "blog.references": "Enlaces relacionados", "clipboard.copy": "Copiar al portapapeles", "clipboard.copied": "Copiado al portapapeles", "consent.accept": "Aceptar", "consent.manage": "Gestionar cookies", "consent.reject": "Rechazar", "footer": "Pie", "footer.next": "Siguiente", "footer.previous": "Anterior", "header": "Cabecera", "meta.comments": "Comentarios", "meta.source": "Fuente", "nav": "Navegación", "readtime.one": "1 minuto de lectura", "readtime.other": "# minutos de lectura", "rss.created": "Fuente RSS", "rss.updated": "Fuente RSS de contenido actualizado", "search": "Buscar", "search.config.lang": "es", "search.placeholder": "Búsqueda", "search.share": "Compartir", "search.reset": "Limpiar", "search.result.initializer": "Inicializando búsqueda", "search.result.placeholder": "Teclee para comenzar búsqueda", "search.result.none": "No se encontraron documentos", "search.result.one": "1 documento encontrado", "search.result.other": "# documentos encontrados", "search.result.more.one": "1 más en esta página", "search.result.more.other": "# más en esta página", "search.result.term.missing": "Falta", "select.language": "Seleccionar idioma", "select.version": "Seleccionar versión", "source": "Ir al repositorio", "source.file.contributors": "Contribuidores", "source.file.date.created": "Creado", "source.file.date.updated": "Última actualización", "tabs": "Pestañas", "toc": "Tabla de contenidos", "top": "Volver al principio" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/et.html000066400000000000000000000035571475306445600255150ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "et", "action.edit": "Muuda seda lehte", "action.skip": "Keri sisuni", "action.view": "Vaata lehe lähtekoodi", "announce.dismiss": "Ära näita uuesti", "blog.archive": "Arhiiv", "blog.categories": "Kategooriad", "blog.categories.in": "sees", "blog.continue": "Jätka lugemist", "blog.draft": "Mustand", "blog.index": "Tagasi indeksisse", "blog.meta": "Metaandmed", "blog.references": "Seotud lingid", "clipboard.copy": "Kopeeri lõikelauale", "clipboard.copied": "Kopeeritud", "consent.accept": "Nõustu", "consent.manage": "Halda seadeid", "consent.reject": "Keeldu", "footer": "Jalus", "footer.next": "Järgmine", "footer.previous": "Eelmine", "header": "Päis", "meta.comments": "Kommentaarid", "meta.source": "Lähtekood", "nav": "Navigatsioon", "readtime.one": "1-minutiline lugemine", "readtime.other": "#-minutiline lugemine", "rss.created": "RSS-voog", "rss.updated": "Uuendatud sisu RSS-voog", "search": "Otsing", "search.placeholder": "Otsi", "search.share": "Jaga", "search.reset": "Lähtesta", "search.result.initializer": "Otsingu lähtestamine", "search.result.placeholder": "Otsimiseks kirjuta siia", "search.result.none": "Otsingule ei leitud ühtegi vastet", "search.result.one": "Leiti üks tulemus", "search.result.other": "Leiti # tulemust", "search.result.more.one": "1 veel sellel lehel", "search.result.more.other": "# veel sellel lehel", "search.result.term.missing": "Puudub", "select.language": "Vali keel", "select.version": "Vali versioon", "source": "Ava repositooriumis", "source.file.contributors": "Autorid", "source.file.date.created": "Loodud", "source.file.date.updated": "Viimane uuendus", "tabs": "Vaheleht", "toc": "Sisukord", "top": "Üles" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/eu.html000066400000000000000000000037411475306445600255110ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "eu", "action.edit": "Editatu orri hau", "action.skip": "Joan zuzenean edukira", "action.view": "Ikusi orri honen iturburua", "announce.dismiss": "Ez erakutsi hau berriro", "blog.archive": "Artxiboa", "blog.categories": "Kategoriak", "blog.categories.in": "kategoria", "blog.continue": "Jarraitu irakurtzen", "blog.draft": "Zirriborroa", "blog.index": "Itzuli aurkibidera", "blog.meta": "Metadatuak", "blog.references": "Erlazionatutako estekak", "clipboard.copy": "Kopiatu arbelean", "clipboard.copied": "Arbelean kopiatuta", "consent.accept": "Onartu", "consent.manage": "Kudeatu ezarpenak", "consent.reject": "Ukatu", "footer": "Orri-oina", "footer.next": "Hurrengoa", "footer.previous": "Aurrekoa", "header": "Atalburua", "meta.comments": "Iruzkinak", "meta.source": "Iturburua", "nav": "Nabigazioa", "readtime.one": "Minutu batean irakurtzeko", "readtime.other": "# minututan irakurtzeko", "rss.created": "RSS jarioa", "rss.updated": "Eduki eguneratuen RSS jarioa", "search": "Bilatu", "search.placeholder": "Bilatu", "search.share": "Partekatu", "search.reset": "Garbitu", "search.result.initializer": "Bilaketa hasieratzen", "search.result.placeholder": "Idatzi bilatzen hasteko", "search.result.none": "Bat datorren dokumenturik ez", "search.result.one": "Bat datorren dokumentu bat", "search.result.other": "Bat datozen # dokumentu", "search.result.more.one": "Bat gehiago orri honetan", "search.result.more.other": "# gehiago orri honetan", "search.result.term.missing": "Falta da", "select.language": "Hautatu hizkuntza", "select.version": "Hautatu bertsioa", "source": "Joan biltegira", "source.file.contributors": "Kolaboratzaileak", "source.file.date.created": "Sortze data", "source.file.date.updated": "Azken eguneratzea", "tabs": "Fitxak", "toc": "Edukiak", "top": "Igo goraino" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/fa.html000066400000000000000000000046371475306445600254730ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "fa", "direction": "rtl", "action.edit": "این صفحه را ویرایش کنید", "action.skip": "پرش به محتویات", "action.view": "محتویات این صفحه را نشان بده", "announce.dismiss": "این را دیگر نشان نده", "blog.archive": "بایگانی", "blog.categories": "دسته‌بندی‌ها", "blog.categories.in": "در", "blog.continue": "ادامه به خواندن", "blog.draft": "پیش‌نویس", "blog.index": "برگشت به فهرست", "blog.meta": "فراداده", "blog.references": "پیوندهای مربوط", "clipboard.copy": "کپی کردن", "clipboard.copied": "کپی شد", "consent.accept": "تایید", "consent.manage": "مدیریت تنظیمات", "consent.reject": "رد کردن", "footer": "پاورقی", "footer.next": "بعدی", "footer.previous": "قبلی", "header": "سرتیتر", "meta.comments": "نظرات", "meta.source": "منبع", "nav": "هدایت", "readtime.one": "1 دقیقه زمان خواندن", "readtime.other": "# دقیقه زمان خواندن", "rss.created": "خوراک آراس‌اس", "rss.updated": "خوراک آراساس محتویات به‌روز شده", "search": "جستجو", "search.config.pipeline": " ", "search.placeholder": "جستجو", "search.share": "هم‌رسانی", "search.reset": "بازنشانی", "search.result.initializer": "راه‌اندازی جستجو", "search.result.placeholder": "برای شروع جستجو تایپ کنید", "search.result.none": "سندی یافت نشد", "search.result.one": "1 سند یافت شد", "search.result.other": "# سند یافت شد", "search.result.more.one": "1 مورد دیگر در این صفحه", "search.result.more.other": "# مورد دیگر در این صفحه", "search.result.term.missing": "موجود نیست", "select.language": "انتخاب زبان", "select.version": "انتخاب ویرایش", "source": "رفتن به مخزن", "source.file.contributors": "مشارکت کنندگان", "source.file.date.created": "ایجاد شده", "source.file.date.updated": "اخرین بروزرسانی", "tabs": "زبانه‌ها", "toc": "فهرست موضوعات", "top": "برگشت به بالا" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/fi.html000066400000000000000000000040101475306445600254640ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "fi", "action.edit": "Muokkaa tätä sivua", "action.skip": "Hyppää sisältöön", "action.view": "Näytä tämän sivun lähdekoodi", "announce.dismiss": "Älä näytä tätä enää", "blog.archive": "Arkisto", "blog.categories": "Kategoriat", "blog.categories.in": "", "blog.continue": "Jatka lukemista", "blog.draft": "Luonnos", "blog.index": "Takaisin hakemistoon", "blog.meta": "Metatiedot", "blog.references": "Liittyvät linkit", "clipboard.copy": "Kopioi leikepöydälle", "clipboard.copied": "Kopioitu leikepöydälle", "consent.accept": "Hyväksy", "consent.manage": "Hallinnoi asetuksia", "consent.reject": "Hylkää", "footer": "Alatunniste", "footer.next": "Seuraava", "footer.previous": "Edellinen", "header": "Ylätunniste", "meta.comments": "Kommentit", "meta.source": "Lähdekodi", "nav": "Navigaatio", "readtime.one": "1 min lukuaika", "readtime.other": "# min lukuaika", "rss.created": "RSS-syöte", "rss.updated": "RSS-syöte päivitetylle sisällölle", "search": "Haku", "search.config.lang": "fi", "search.placeholder": "Hae", "search.share": "Jaa", "search.reset": "Tyhjää", "search.result.initializer": "Aloitetaan hakua", "search.result.placeholder": "Kirjoita aloittaaksesi haun", "search.result.none": "Ei täsmääviä dokumentteja", "search.result.one": "1 täsmäävä dokumentti", "search.result.other": "# täsmäävää dokumenttia", "search.result.more.one": "1 lisää tällä sivulla", "search.result.more.other": "# lisää tällä sivulla", "search.result.term.missing": "Puuttuu", "select.language": "Valitse kieli", "select.version": "Valitse versio", "source": "Mene repositoryyn", "source.file.contributors": "Avustajat", "source.file.date.created": "Luotu", "source.file.date.updated": "Viimeisin päivitys", "tabs": "Välilehdet", "toc": "Sisällysluettelo", "top": "Takaisin ylös" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/fr.html000066400000000000000000000040711475306445600255040ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "fr", "action.edit": "Editer cette page", "action.skip": "Aller au contenu", "action.view": "Consulter la source de cette page", "announce.dismiss": "Ne plus montrer cela", "blog.archive": "Archive", "blog.categories": "Catégories", "blog.categories.in": "dans", "blog.continue": "Continuer à lire", "blog.draft": "Brouillon", "blog.index": "Retourner à l'index", "blog.meta": "Metadonnées", "blog.references": "Liens connexes", "clipboard.copy": "Copier dans le presse-papier", "clipboard.copied": "Copié dans le presse-papier", "consent.accept": "Accepter", "consent.manage": "Paramétrer vos choix", "consent.reject": "Refuser", "footer": "Pied de page", "footer.next": "Suivant", "footer.previous": "Précédent", "header": "En-tête", "meta.comments": "Commentaires", "meta.source": "Source", "nav": "Navigation", "readtime.one": "1 min de lecture", "readtime.other": "# min de lecture", "rss.created": "Flux RSS", "rss.updated": "Flux RSS du contenu mis à jour", "search": "Recherche", "search.config.lang": "fr", "search.placeholder": "Rechercher", "search.share": "Partager", "search.reset": "Effacer", "search.result.initializer": "Initialisation de la recherche", "search.result.placeholder": "Taper pour démarrer la recherche", "search.result.none": "Aucun document trouvé", "search.result.one": "1 document trouvé", "search.result.other": "# documents trouvés", "search.result.more.one": "1 de plus sur cette page", "search.result.more.other": "# de plus sur cette page", "search.result.term.missing": "Non trouvé", "select.language": "Sélectionner la langue", "select.version": "Sélectionner la version", "source": "Aller au dépôt", "source.file.contributors": "Contributeurs", "source.file.date.created": "Créé", "source.file.date.updated": "Dernière mise à jour", "tabs": "Onglets", "toc": "Table des matières", "top": "Retour en haut de la page" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/gl.html000066400000000000000000000037441475306445600255050ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "gl", "action.edit": "Editar esta páxina", "action.skip": "Ir ao contido", "action.view": "Ver código fonte desta páxina", "announce.dismiss": "Non volver a mostrar", "blog.archive": "Arquivo", "blog.categories": "Categorías", "blog.categories.in": "en", "blog.continue": "Continuar lendo", "blog.draft": "Borrador", "blog.index": "Voltar ó índice", "blog.meta": "Metadatos", "blog.references": "Enlaces relacionados", "clipboard.copy": "Copiar no cortapapeis", "clipboard.copied": "Copiado no cortapapeis", "consent.accept": "Aceptar", "consent.manage": "Xestionar configuración", "consent.reject": "Rexeitar", "footer": "Pé", "footer.next": "Seguinte", "footer.previous": "Anterior", "header": "Cabeceira", "meta.comments": "Comentarios", "meta.source": "Fonte", "nav": "Navegación", "readtime.one": "1 minuto de lectura", "readtime.other": "# minutos de lectura", "rss.created": "RSS feed", "rss.updated": "RSS feed do contido actualizado", "search": "Procurar", "search.config.lang": "es", "search.placeholder": "Procura", "search.share": "Compartir", "search.reset": "Limpar", "search.result.initializer": "Inicializando procura", "search.result.placeholder": "Insira un termo", "search.result.none": "Sen resultados", "search.result.one": "1 resultado atopado", "search.result.other": "# resultados atopados", "search.result.more.one": "1 máis nesta páxina", "search.result.more.other": "# máis nesta páxina", "search.result.term.missing": "Falta", "select.language": "Seleccionar idioma", "select.version": "Seleccionar version", "source": "Ir ao repositorio", "source.file.contributors": "Contribuidores", "source.file.date.created": "Creada", "source.file.date.updated": "Última actualización", "tabs": "Pestanas", "toc": "Táboa de contidos", "top": "Volver ao principio" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/he.html000066400000000000000000000043031475306445600254670ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "he", "direction": "rtl", "action.edit": "עריכת הדף הזה", "action.skip": "לדלג לתוכן", "action.view": "צפה במקור של דף זה", "announce.dismiss": "לא להציג את זה שוב", "blog.archive": "ארכיון", "blog.categories": "קטגוריות", "blog.categories.in": "בתוך", "blog.continue": "המשך לקרוא", "blog.draft": "טיוטה", "blog.index": "חזרה לאינדקס", "blog.meta": "מטא-נתונים", "blog.references": "קישורים קשורים", "clipboard.copy": "העתקה ללוח", "clipboard.copied": "הועתק ללוח", "consent.accept": "לקבל", "consent.manage": "לנהל הגדרות", "consent.reject": "לדחות", "footer": "כותרת תחתונה", "footer.next": "הבא", "footer.previous": "הקודם", "header": "כותרת עליונה", "meta.comments": "הערות", "meta.source": "מקור", "nav": "ניווט", "readtime.one": "קריאה 1 דקות", "readtime.other": "# דקות קריאה", "rss.created": "RSS הזנת", "rss.updated": "הזנת RSS של תוכן מעודכן", "search": "חיפוש", "search.config.pipeline": " ", "search.placeholder": "חיפוש", "search.share": "שיתוף", "search.reset": "ניקוי", "search.result.initializer": "אתחול חיפוש", "search.result.placeholder": "יש להקליד כדי להתחיל לחפש", "search.result.none": "אין מסמכים תואמים", "search.result.one": "מסמך1 תואם", "search.result.other": "# מסמך תואם", "search.result.more.one": "עוד אחד בדף הזה", "search.result.more.other": "עוד # בדף הזה", "search.result.term.missing": "חסר", "select.language": "בחירת שפה", "select.version": "בחירת גרסה", "source": "לעבור אל המאגר", "source.file.contributors": "תורמים", "source.file.date.created": "נוצר", "source.file.date.updated": "עדכון אחרון", "tabs": "לשוניות", "toc": "תוכן העניינים", "top": "חזרה למעלה" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/hi.html000066400000000000000000000056111475306445600254760ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "hi", "action.edit": "इस पृष्ठ को संपादित करें", "action.skip": "विषय पर बढ़ें", "action.view": "इस पृष्ठ का सूत्र देखें", "announce.dismiss": "इसे पुनः न दिखायें", "blog.archive": "पुरालेख", "blog.categories": "वर्ग", "blog.categories.in": "में", "blog.continue": "पढ़ते रहिये", "blog.draft": "मसौदा", "blog.index": "सूचि को लौटें", "blog.meta": "मेटाडेटा", "blog.references": "सम्बंधित लिंक", "clipboard.copy": "क्लिपबोर्ड पर कॉपी करें", "clipboard.copied": "क्लिपबोर्ड पर कॉपी कर दिया गया", "consent.accept": "स्वीकार करें", "consent.manage": "सेटिंग्स मैनेज करें", "consent.reject": "अस्वीकार करें", "footer": "फुटर", "footer.next": "आगामी", "footer.previous": "पिछला", "header": "शीर्षक", "meta.comments": "टिप्पणियाँ", "meta.source": "स्रोत", "nav": "नैविगेशन", "readtime.one": "1 मिनट पढ़ने को", "readtime.other": "# मिनट पढ़ने को", "rss.created": "RSS फीड", "rss.updated": "नवीनतम विषयवस्तु का RSS feed", "search": "खोजें", "search.config.lang": "hi", "search.placeholder": "खोज", "search.share": "शेयर करें", "search.reset": "हटा दें", "search.result.initializer": "खोज शुरू करें", "search.result.placeholder": "खोज शुरू करने के लिए टाइप करें", "search.result.none": "कोई मिलान डॉक्यूमेंट नहीं", "search.result.one": "1 मिलान डॉक्यूमेंट", "search.result.other": "# मिलान डाक्यूमेंट्स", "search.result.more.one": "1 और इस पृष्ठ पर", "search.result.more.other": "# और इस पृष्ठ पर", "search.result.term.missing": "ग़ायब", "select.language": "भाषा चुनें", "select.version": "वर्शन चुनें", "source": "रिपॉजिटरी पर जाएं", "source.file.contributors": "योगदाता", "source.file.date.created": "बनाया था", "source.file.date.updated": "आखिरी अपडेट", "tabs": "टैब", "toc": "विषय - सूची", "top": "शीर्षभाग पर लौटें" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/hr.html000066400000000000000000000037611475306445600255130ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "hr", "action.edit": "Uredi stranicu", "action.skip": "Preskoči na sadržaj", "action.view": "Pregledaj izvorni kod ove stranice", "announce.dismiss": "Ne prikazuj ovo opet", "blog.archive": "Arhiva", "blog.categories": "Kategorije", "blog.categories.in": "u", "blog.continue": "Nastavi čitati", "blog.draft": "Nacrt", "blog.index": "Natrag na indeks", "blog.meta": "Metapodaci", "blog.references": "Srodne poveznice", "clipboard.copy": "Kopiraj u međuspremnik", "clipboard.copied": "Kopirano u međuspremnik", "consent.accept": "Prihvati", "consent.manage": "Upravljaj postavkama", "consent.reject": "Odbij", "footer": "Podnožje", "footer.next": "Sljedeće", "footer.previous": "Prethodno", "header": "Zaglavlje", "meta.comments": "Komentari", "meta.source": "Izvor", "nav": "Navigacija", "readtime.one": "1 minuta čitanja", "readtime.other": "# minut(a/e) čitanja", "rss.created": "RSS izvor", "rss.updated": "RSS izvor osvježenog sadržaja", "search": "Pretraživanje", "search.placeholder": "Pretraži", "search.share": "Podijeli", "search.reset": "Očisti", "search.result.initializer": "Inicijaliziranje pretraživanja", "search.result.placeholder": "Unesite pojam pretraživanja", "search.result.none": "Ništa nije pronađeno", "search.result.one": "1 rezultat pretraživanja", "search.result.other": "# rezultat(a) pretraživanja", "search.result.more.one": "1 rezultat na ovoj stranici", "search.result.more.other": "# rezultat(a) na ovoj stranici", "search.result.term.missing": "Nedostaje", "select.language": "Odabir jezika", "select.version": "Odabir verzije", "source": "Idi u repozitorij", "source.file.contributors": "Suradnici", "source.file.date.created": "Stvaranje", "source.file.date.updated": "Posljednje ažuriranje", "tabs": "Kartice", "toc": "Sadržaj", "top": "Vrati se na vrh" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/hu.html000066400000000000000000000037621475306445600255170ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "hu", "action.edit": "Oldal szerkesztése", "action.skip": "Kihagyás", "action.view": "Oldal forrásának megtekintése", "announce.dismiss": "Ne mutasd többet", "blog.archive": "Archívum", "blog.categories": "Kategóriák", "blog.categories.in": "Kategória:", "blog.continue": "Folytatás", "blog.draft": "Piszkozat", "blog.index": "Vissza a főoldalra", "blog.meta": "Metaadat", "blog.references": "Kapcsolódó linkek", "clipboard.copy": "Másolás vágólapra", "clipboard.copied": "Vágólapra másolva", "consent.accept": "Elfogadás", "consent.manage": "Beállítások", "consent.reject": "Visszautasítás", "footer": "Élőláb", "footer.next": "Következő", "footer.previous": "Előző", "header": "Élőfej", "meta.comments": "Hozzászólások", "meta.source": "Forrás", "nav": "Navigáció", "readtime.one": "1 percnyi", "readtime.other": "# percnyi", "rss.created": "RSS feed", "rss.updated": "Frissített tartalom RSS feedje", "search": "Keresés", "search.config.lang": "hu", "search.placeholder": "Keresés", "search.share": "Megosztás", "search.reset": "Törlés", "search.result.initializer": "Keresés inicializálása", "search.result.placeholder": "Kereséshez írj ide valamit", "search.result.none": "Nincs találat", "search.result.one": "1 egyező dokumentum", "search.result.other": "# egyező dokumentum", "search.result.more.one": "1 további találat az oldalon", "search.result.more.other": "# további találat az oldalon", "search.result.term.missing": "Üres", "select.language": "Nyelvváltás", "select.version": "Verzióváltás", "source": "Főoldalra ugrás", "source.file.contributors": "Szerzők", "source.file.date.created": "Létrehozva", "source.file.date.updated": "Utolsó frissítés", "tabs": "Lapok", "toc": "Tartalomjegyzék", "top": "Vissza a tetejére" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/hy.html000066400000000000000000000047131475306445600255200ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "hy", "action.edit": "Խմբագրել այս էջը", "action.skip": "Անցնել պարունակությանը", "action.view": "Դիտել այս էջի սկզբնաղբյուրը", "announce.dismiss": "Այլևս չցուցադրել", "blog.archive": "Արխիվ", "blog.categories": "Կատեգորիաներ", "blog.categories.in": "in", "blog.continue": "Շարունակել կարդալ", "blog.draft": "Սևագիր", "blog.index": "Հետ դեպի ինդեքս", "blog.meta": "Մետատվյալներ", "blog.references": "Առնչվող հղումներ", "clipboard.copy": "Պատճենել", "clipboard.copied": "Պատճենված է", "consent.accept": "Ընդունել", "consent.manage": "Կառավարել կարգավորումները", "consent.reject": "Մերժել", "footer": "Էջատակ", "footer.next": "Հաջորդը", "footer.previous": "Նախորդը", "header": "Գլխագիր", "meta.comments": "Մեկնաբանությունները", "meta.source": "Աղբյուր", "nav": "Տեղորոշում", "readtime.one": "Ընթերցում՝ 1 րոպե", "readtime.other": "Ընթերցում՝ # րոպե", "rss.created": "RSS հոսք", "rss.updated": "Արդիացված բովանդակության RSS հոսք", "search": "Որոնում", "search.config.pipeline": " ", "search.placeholder": "Որոնում", "search.share": "Կիսվել", "search.reset": "Ջնջել", "search.result.initializer": "Որոնում", "search.result.placeholder": "Մուտքագրեք որոնելու համար", "search.result.none": "Արդյունքներ չկան", "search.result.one": "1 արդյունք", "search.result.other": "# արդյունք", "search.result.more.one": "ևս 1-ը այս էջում", "search.result.more.other": "ևս #-ը այս էջում", "search.result.term.missing": "Բացակայում է", "select.language": "Ընտրել լեզուն", "select.version": "Ընտրել տարբերակը", "source": "Դեպի պահոց", "source.file.contributors": "Հեղինակողներ", "source.file.date.created": "Ստեղծված է", "source.file.date.updated": "Վերջին թարմացումը", "tabs": "Ներդիրներ", "toc": "Բովանդակություն", "top": "Վերադառնալ սկիզբ" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/id.html000066400000000000000000000036611475306445600254750ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "id", "action.edit": "Ubah halaman ini", "action.skip": "Lewati ke isi", "action.view": "Lihat sumber halaman ini", "announce.dismiss": "Jangan lihat ini lagi", "blog.archive": "Arsip", "blog.categories": "Kategori", "blog.categories.in": "dalam", "blog.continue": "Lanjut membaca", "blog.draft": "Draf", "blog.index": "Kembali ke indeks", "blog.meta": "Metadata", "blog.references": "Tautan yang berhubungan", "clipboard.copy": "Salin ke clipboard", "clipboard.copied": "Tersalin ke clipboard", "consent.accept": "Terima", "consent.manage": "Kelola pengaturan", "consent.reject": "Tolak", "footer": "Footer", "footer.next": "Selanjutnya", "footer.previous": "Sebelumnya", "header": "Header", "meta.comments": "Komentar", "meta.source": "Sumber", "nav": "Navigasi", "readtime.one": "1 menit baca", "readtime.other": "# menit baca", "rss.created": "Umpan RSS", "rss.updated": "Umpan RSS dari konten yang diperbarui", "search": "Cari", "search.config.pipeline": " ", "search.placeholder": "Cari", "search.share": "Bagikan", "search.reset": "Kosongkan", "search.result.initializer": "Mempersiapkan pencarian", "search.result.placeholder": "Ketik untuk mulai pencarian", "search.result.none": "Tidak ada dokumen yang sesuai", "search.result.one": "1 dokumen ditemukan", "search.result.other": "# dokumen ditemukan", "search.result.more.one": "1 lagi di halaman ini", "search.result.more.other": "# lagi di halaman ini", "search.result.term.missing": "Tidak ada", "select.language": "Pilih bahasa", "select.version": "Pilih versi", "source": "Ke repositori", "source.file.contributors": "Kontributor", "source.file.date.created": "Dibuat", "source.file.date.updated": "Pembaruan terakhir", "tabs": "Tab", "toc": "Daftar isi", "top": "Kembali ke atas" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/is.html000066400000000000000000000037051475306445600255130ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "is", "action.edit": "Breyta þessari síðu", "action.skip": "Hoppa yfir í efnið", "action.view": "Skoða frumgögn þessarar síðu", "announce.dismiss": "Ekki sýna þetta aftur", "blog.archive": "Safn", "blog.categories": "Flokkar", "blog.categories.in": "í", "blog.continue": "Lesa meira", "blog.draft": "Uppkast", "blog.index": "Til baka í yfirlit", "blog.meta": "Lýsigögn", "blog.references": "Þessu tengt", "clipboard.copy": "Afrita á klemmuspjald", "clipboard.copied": "Afritað á klemmuspjald", "consent.accept": "Samþykkja", "consent.manage": "Breyta stillingum", "consent.reject": "Hafna", "footer": "Síðufótur", "footer.next": "Næsta", "footer.previous": "Fyrri", "header": "Haus", "meta.comments": "Umræður", "meta.source": "Frumgögn", "nav": "Valmynd", "readtime.one": "1 mín lestur", "readtime.other": "# mín lestur", "rss.created": "RSS veita", "rss.updated": "RSS veita fyrir uppfært innihald", "search": "Leita", "search.placeholder": "Leita", "search.share": "Deila", "search.reset": "Hreinsa", "search.result.initializer": "Ræsi leitarvél", "search.result.placeholder": "Byrjaðu að skrifa til að hefja leit", "search.result.none": "Engar síður fundust", "search.result.one": "1 síða fannst", "search.result.other": "# síður fundust", "search.result.more.one": "1 til viðbótar á þessari síðu", "search.result.more.other": "# til viðbótar á þessari síðu", "search.result.term.missing": "Vantar", "select.language": "Veldu tungumál", "select.version": "Veldu útgáfu", "source": "Fara í gagnageymslu", "source.file.contributors": "Meðhöfundar", "source.file.date.created": "Búið til", "source.file.date.updated": "Síðast uppfært", "tabs": "Flipar", "toc": "Efnisyfirlit", "top": "Fara aftur efst" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/it.html000066400000000000000000000036701475306445600255150ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "it", "action.edit": "Modifica", "action.skip": "Vai al contenuto", "action.view": "Vedi il sorgente di questa pagina", "announce.dismiss": "Non mostrare più", "blog.archive": "Archivio", "blog.categories": "Categorie", "blog.categories.in": "in", "blog.continue": "Continua a leggere", "blog.draft": "Bozza", "blog.index": "Torna all'indice", "blog.meta": "Metadati", "blog.references": "Collegamenti", "clipboard.copy": "Copia", "clipboard.copied": "Copiato", "consent.accept": "Accetta", "consent.manage": "Gestisci le opzioni", "consent.reject": "Rifiuta", "footer": "Piede", "footer.next": "Successivo", "footer.previous": "Precedente", "header": "Intestazione", "meta.comments": "Commenti", "meta.source": "Sorgente", "nav": "Navigazione", "readtime.one": "1 minuto di lettura", "readtime.other": "# minuti di lettura", "rss.created": "Feed RSS", "rss.updated": "Contenuto aggiornato del feed RSS", "search": "Cerca", "search.config.lang": "it", "search.placeholder": "Cerca", "search.share": "Condividi", "search.reset": "Cancella", "search.result.initializer": "Inizializza la ricerca", "search.result.placeholder": "Scrivi per iniziare a cercare", "search.result.none": "Nessun documento trovato", "search.result.one": "1 documento trovato", "search.result.other": "# documenti trovati", "search.result.more.one": "1 altro in questa pagina", "search.result.more.other": "# altri in questa pagina", "search.result.term.missing": "Non presente", "select.language": "Seleziona la lingua", "select.version": "Seleziona la versione", "source": "Apri repository", "source.file.contributors": "Contributori", "source.file.date.created": "Creata", "source.file.date.updated": "Ultimo aggiornamento", "tabs": "Tabs", "toc": "Indice", "top": "Torna su" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/ja.html000066400000000000000000000045121475306445600254670ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "ja", "action.edit": "編集", "action.skip": "コンテンツにスキップ", "action.view": "このページの原文を表示", "announce.dismiss": "非表示にします", "blog.archive": "過去の投稿", "blog.categories": "カテゴリー", "blog.categories.in": "", "blog.continue": "続きを読む", "blog.draft": "下書き", "blog.index": "ブログトップへ戻る", "blog.meta": "メタデータ", "blog.references": "関連リンク", "clipboard.copy": "クリップボードへコピー", "clipboard.copied": "コピーしました", "consent.accept": "同意", "consent.manage": "サイトの設定", "consent.reject": "拒否", "footer": "フッター", "footer.next": "次", "footer.previous": "前", "header": "ヘッダー", "meta.comments": "コメント", "meta.source": "ソース", "nav": "ナビゲーション", "readtime.one": "このページは約1分で読めます", "readtime.other": "このページは約#分で読めます", "rss.created": "新しいページのRSSフィード", "rss.updated": "更新されたページのRSSフィード", "search": "検索", "search.config.lang": "ja", "search.config.pipeline": "stemmer", "search.config.separator": "[\\s\\- 、。,.]+", "search.placeholder": "検索", "search.share": "共有", "search.reset": "クリア", "search.result.initializer": "検索を初期化", "search.result.placeholder": "検索キーワードを入力してください", "search.result.none": "何も見つかりませんでした", "search.result.one": "1件見つかりました", "search.result.other": "#件見つかりました", "search.result.more.one": "このページ内にもう1件見つかりました", "search.result.more.other": "このページ内にあと#件見つかりました", "search.result.term.missing": "検索に含まれない", "select.language": "言語切り替え", "select.version": "バージョン切り替え", "source": "リポジトリへ", "source.file.contributors": "投稿者", "source.file.date.created": "作成日", "source.file.date.updated": "最終更新日", "tabs": "タブ", "toc": "目次", "top": "ページトップへ戻る" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/ka.html000066400000000000000000000027321475306445600254720ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "ka", "action.edit": "გვერდის რედარქირება", "action.skip": "კონტენტზე გადასვლა", "clipboard.copy": "კოპირება", "clipboard.copied": "კოპირებულია", "footer.next": "შემდეგი", "footer.previous": "წინა", "meta.comments": "კომენტარები", "meta.source": "წყარო", "nav": "ნავიგაცია", "search.config.pipeline": " ", "search.placeholder": "ძებნა", "search.reset": "გასუფთავება", "search.result.placeholder": "ჩაწერე ძებნის დასაწყებად", "search.result.none": "დოკუმენტი ვერ მოიძებნა", "search.result.one": "მოიძებნა 1 დოკუმენტი", "search.result.other": "მოიძებნა # დოკუმენტი", "search.result.more.one": "კიდევ 1 ამ გვერდზე", "search.result.more.other": "კიდევ # ამ გვერდზე", "source": "საცავში გადასვლა", "source.file.date.created": "შეიქმნა", "source.file.date.updated": "ბოლო განახლება", "tabs": "ტაბები", "toc": "სარჩევი" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/kn.html000066400000000000000000000072221475306445600255060ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "kn", "action.edit": "ಈ ಪುಟವನ್ನು ತಿದ್ದುಪಡಿ ಮಾಡಿ", "action.skip": "ವಿಷಯಕ್ಕೆ ತೆರಳಿ", "action.view": "ಈ ಪುಟದ ಮೂಲವನ್ನು ವೀಕ್ಷಿಸಿ", "announce.dismiss": "ಇದನ್ನು ಮತ್ತೊಮ್ಮೆ ತೋರಿಸಬೇಡಿ", "blog.archive": "ಹಳೆಯ ಲೇಖನ", "blog.categories": "ವರ್ಗಗಳು", "blog.categories.in": "ರಲ್ಲಿ", "blog.continue": "ಓದು ಮುಂದುವರೆಸಿ", "blog.draft": "ಆರಂಭಿಕ ಬರವಣಿಗೆ", "blog.index": "ಸೂಚ್ಯಂಕಕ್ಕೆ ಹಿಂತಿರುಗಿ", "blog.meta": "ಮಾಹಿತಿಯ ಬಗ್ಗೆ ಮಾಹಿತಿ", "blog.references": "ಸಂಬಂಧಿತ ಉಲ್ಲೇಖಗಳು", "clipboard.copy": "ಇದನ್ನು ನಕಲಿಸಿ", "clipboard.copied": "ಇದನ್ನು ನಕಲು ಮಾಡಿದೆ", "consent.accept": "ನಾನು ಇದನ್ನು ಒಪ್ಪಿಕೊಳ್ಳುತ್ತೇನೆ", "consent.manage": "ಸಂರಚನೆಯನ್ನು ನಿರ್ವಹಿಸಿ", "consent.reject": "ನಾನು ಇದನ್ನು ತಿರಸ್ಕರಿಸುತ್ತೇನೆ", "footer": "ಅಡಿಟಿಪ್ಪಣಿ", "footer.next": "ಮುಂದಿನ ಸಂಚಿಕೆ", "footer.previous": "ಹಿಂದಿನ ಸಂಚಿಕೆ", "header": "ಮೇಲ್ಟಿಪ್ಪಣಿ", "meta.comments": "ಪ್ರತಿಕ್ರಿಯೆಗಳು", "meta.source": "ಮೂಲ", "nav": "ಸಂಚರಣೆ", "readtime.one": "ಓದಲು ೧ ನಿಮಿಷ ತೆಗೆದುಕೊಳ್ಳುತ್ತದೆ", "readtime.other": "ಓದಲು # ನಿಮಿಷಗಳನ್ನು ತೆಗೆದುಕೊಳ್ಳುತ್ತದೆ", "rss.created": "ಆರ್ಎಸ್ಎಸ್ ಸೇವೆ", "rss.updated": "ಆರ್ಎಸ್ಎಸ್ ಸೇವೆಯಿಂದ ಇತ್ತೀಚಿನ ನವೀಕರಣ", "search": "ಹುಡುಕಿ", "search.placeholder": "ಹುಡುಕಿ", "search.share": "ಹಂಚಿಕೊಳ್ಳಿ", "search.reset": "ಅಳಿಸು", "search.result.initializer": "ಹುಡುಕಾಟವನ್ನು ಪ್ರಾರಂಭಿಸಲಾಗುತ್ತಿದೆ", "search.result.placeholder": "ಬರೆಯುವ ಮೂಲಕ ಹುಡುಕಲು ಪ್ರಾರಂಭಿಸಿ", "search.result.none": "ಹೊಂದಾಣಿಕೆಯಾಗುವ ದಾಖಲೆಗಳಿಲ್ಲ", "search.result.one": "೧ ಹೊಂದಾಣಿಕೆಯ ದಾಖಲೆಯಿದೆ", "search.result.other": "# ಹೊಂದಾಣಿಕೆಯ ದಾಖಲೆಗಳಿವೆ", "search.result.more.one": "ಈ ಪುಟದಲ್ಲಿ ಇನ್ನೂ ಒಂದು ಕಂಡುಬಂದಿದೆ", "search.result.more.other": "ಈ ಪುಟದಲ್ಲಿ ಇನ್ನೂ # ಇವೆ", "search.result.term.missing": "ಕಾಣೆಯಾಗಿದೆ", "select.language": "ಭಾಷೆಯನ್ನು ಆಯ್ಕೆಮಾಡಿ", "select.version": "ಆವೃತ್ತಿಯನ್ನು ಆಯ್ಕೆಮಾಡಿ", "source": "ಭಂಡಾರಕ್ಕೆ ಹೋಗಿ", "source.file.contributors": "ಕೊಡುಗೆದಾರರು", "source.file.date.created": "ರಚಿಸಿದ ದಿನಾಂಕ", "source.file.date.updated": "ಕೊನೆಯ ನವೀಕರಣ ದಿನಾಂಕ", "tabs": "ವಿವಿಧ ಕಿಟಕಿಗಳು", "toc": "ವಿಷಯಗಳ ಪಟ್ಟಿ", "top": "ಮೇಲಕ್ಕೆ ಹಿಂತಿರುಗಿ" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/ko.html000066400000000000000000000041701475306445600255060ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "ko", "action.edit": "이 페이지를 편집", "action.skip": "콘텐츠로 이동", "action.view": "페이지소스 보기", "announce.dismiss": "다시 안보기", "blog.archive": "아카이브", "blog.categories": "카테고리", "blog.categories.in": "카테고리", "blog.continue": "계속 읽기", "blog.draft": "임시 저장", "blog.index": "Index로 돌아가기", "blog.meta": "메타데이터", "blog.references": "관련 링크", "clipboard.copy": "클립보드로 복사", "clipboard.copied": "클립보드에 복사됨", "consent.accept": "동의 허락", "consent.manage": "동의 허락 관리", "consent.reject": "동의 거부", "footer": "하단/푸터", "footer.next": "다음", "footer.previous": "이전", "header": "상단/헤더", "meta.comments": "댓글", "meta.source": "출처", "nav": "네비게이션", "readtime.one": "읽는시간 1분", "readtime.other": "읽는시간 #분", "rss.created": "RSS 피드 생성완료", "rss.updated": "RSS 피드 업데이트완료", "search": "검색", "search.config.pipeline": " ", "search.placeholder": "검색", "search.share": "공유", "search.reset": "지우기", "search.result.initializer": "검색 초기화", "search.result.placeholder": "검색어를 입력하세요", "search.result.none": "검색어와 일치하는 문서가 없습니다", "search.result.one": "1개의 일치하는 문서", "search.result.other": "#개의 일치하는 문서", "search.result.more.one": "이 문서에서 1개의 검색 결과 더 보기", "search.result.more.other": "이 문서에서 #개의 검색 결과 더 보기", "search.result.term.missing": "포함되지 않은 검색어", "select.language": "언어설정", "select.version": "버전 선택", "source": "저장소로 이동", "source.file.contributors": "참여자들", "source.file.date.created": "작성일", "source.file.date.updated": "마지막 업데이트", "tabs": "탭", "toc": "목차", "top": "맨위로" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/ku-IQ.html000066400000000000000000000040321475306445600260200ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "ku", "direction": "rtl", "action.edit": "دەستکاری ئەم پەڕە بکە", "action.skip": "ئەم ناوەڕۆکە بپەڕێنە", "action.view": "سەرچاوەی ئەم لاپەڕەیە نیشان بدە", "announce.dismiss": "دووبارە ئەمە پیشان مەدە", "clipboard.copy": "لەبەرگتنەوە بۆ کلیپبۆرد", "clipboard.copied": "لەبەرگیرایەوە بۆ کلیپ بۆرد", "consent.accept": "ڕازیبوون", "consent.manage": "بەڕیوەبردنی ڕیکخستنەکان", "consent.reject": "ڕەتکردنەوە", "footer": "ژێرپەڕە", "footer.next": "دواتر", "footer.previous": "پێشتر", "header": "ناونیشانی بەڕه", "meta.comments": "لێدوانەکان", "meta.source": "سەرجاوە", "nav": "ڕێنیشاندەر", "search": "گەڕان", "search.config.pipeline": " ", "search.placeholder": "گەڕان", "search.share": "گەڕان", "search.reset": "سڕینەوە", "search.result.initializer": "ئامادەکردنی گەڕان", "search.result.placeholder": "بنووسە بۆ دەستپێکردن بە گەڕان", "search.result.none": "هیچ بەڵگەنامەیەکی هاوتا نیە", "search.result.one": "١ بەڵگەنامەی هاوتا", "search.result.other": "بەڵگەنامەی هاوتا #", "search.result.more.one": "١ دانەی تر لەسەر ئەم پەڕەیە", "search.result.more.other": "دانەی تر لەسەر ئەم پەڕەیە #", "search.result.term.missing": "ونبوو", "select.language": "زمان دیاریبکە", "select.version": "وەشان دیاریبکە", "source": "بڕۆ بۆ کۆگا", "source.file.date.created": "دروسکت کرا", "source.file.date.updated": "دوایین نوێکردنەوە", "tabs": "تابەکان", "toc": "خشتەی ناوەڕۆکەکان", "top": "گەڕانەوە بۆ سەرەوە" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/lb.html000066400000000000000000000037061475306445600254760ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "lb", "direction": "ltr", "action.edit": "D'Säit beaarbechten", "action.skip": "Zum Inhalt iwwersprangen", "action.view": "Quellcode uweisen", "announce.dismiss": "Net erëm uweisen", "blog.archive": "Archiv", "blog.categories": "Kategorien", "blog.categories.in": "an", "blog.continue": "Weider liesen", "blog.draft": "Skizz", "blog.index": "Zeréck zum Index", "blog.meta": "Metadaten", "blog.references": "Änlech Links", "clipboard.copy": "Kopéieren", "clipboard.copied": "Kopéiert", "consent.accept": "Accept", "consent.manage": "Astellungen beaarbechten", "consent.reject": "Ofleenen", "footer": "Footer", "footer.next": "Weider", "footer.previous": "Zeréck", "header": "Header", "meta.comments": "Kommentaren", "meta.source": "Quell", "nav": "Navigatioun", "readtime.one": "1 min Liesedauer", "readtime.other": "# min Liesedauer", "rss.created": "RSS feed", "rss.updated": "RSS feed vun aktualiséiertem Inhalt", "search": "Sichen", "search.placeholder": "Sichen", "search.share": "Deelen", "search.reset": "Läschen", "search.result.initializer": "D'Sich gëtt initialiséiert", "search.result.placeholder": "Schreif fir eppes ze sichen", "search.result.none": "Keng zoutreffend Dokumenter", "search.result.one": "1 zoutreffend Dokument", "search.result.other": "# zoutreffend Dokumenter", "search.result.more.one": "1 méi op dëser Säit", "search.result.more.other": "# méi op dëser Säit", "search.result.term.missing": "Feelend", "select.language": "Sprooch auswielen", "select.version": "Versioun auswielen", "source": "Op den Repository goen", "source.file.contributors": "Matwirkender", "source.file.date.created": "Erstallt", "source.file.date.updated": "Läscht update", "tabs": "Tabs", "toc": "Inhaltsverzeichnis", "top": "Zeréck zum Ufank" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/lt.html000066400000000000000000000040521475306445600255130ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "lt", "action.edit": "Redaguoti šį puslapį", "action.skip": "Pereiti prie turinio", "action.view": "Žiūrėti puslapio šaltinius", "announce.dismiss": "Daugiau neberodyti", "blog.archive": "Archyvas", "blog.categories": "Kategorijos", "blog.categories.in": "į", "blog.continue": "Skaityti toliau", "blog.draft": "Ruošinys", "blog.index": "Grįžti į indeksą", "blog.meta": "Meta duomenys", "blog.references": "Susieja saitai", "clipboard.copy": "Kopijuoti į iškarpinę", "clipboard.copied": "Nukopijuota į iškarpinę", "consent.accept": "Sutikti", "consent.manage": "Redaguoti nustatymus", "consent.reject": "Atmesti", "footer": "Poraštė", "footer.next": "Sekantis", "footer.previous": "Ankstesnis", "header": "Antraštė", "meta.comments": "Komentarai", "meta.source": "Išeitinis kodas", "nav": "Navigacija", "readtime.one": "1 min skaitymo", "readtime.other": "# min skaitymo", "rss.created": "RSS šaltinis", "rss.updated": "RSS šaltinis atnaujinimams", "search": "Paieška", "search.config.pipeline": " ", "search.placeholder": "Paieška", "search.share": "Dalintis", "search.reset": "Išvalyti", "search.result.initializer": "Paieškos inicijavimas", "search.result.placeholder": "Įveskite norėdami pradėti paiešką", "search.result.none": "Atitinkančių dokumentų nerasta", "search.result.one": "1 atitinkantis dokumentas", "search.result.other": "# atitinkantys dokumentai", "search.result.more.one": "Dar 1 šiame puslapyje", "search.result.more.other": "Dar # šiame puslapyje", "search.result.term.missing": "Nerasta", "select.language": "Pasirinkti kalbą", "select.version": "Pasrinkti versiją", "source": "Eiti į saugyklą", "source.file.contributors": "Dalininkai", "source.file.date.created": "Sukurta", "source.file.date.updated": "Paskutinis atnaujinimas", "tabs": "Skirtukai", "toc": "Turinys", "top": "Grįžti į viršų" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/lv.html000066400000000000000000000040141475306445600255130ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "lv", "action.edit": "Rediģēt šo lapu", "action.skip": "Pāriet uz saturu", "action.view": "Rādīt šīs lapas avotu", "announce.dismiss": "Nerādīt vairs", "blog.archive": "Arhivēt", "blog.categories": "Kategorijas", "blog.categories.in": "iekš", "blog.continue": "Turpināt lasīt", "blog.draft": "Melnraksts", "blog.index": "Atpakaļ uz satura rādītāju", "blog.meta": "Metadati", "blog.references": "Saistītās saites", "clipboard.copy": "Kopēt starpliktuvē", "clipboard.copied": "Kopēts starpliktuvē", "consent.accept": "Pieņemt", "consent.manage": "Pārvaldīt iestatījumus", "consent.reject": "Noraidīt", "footer": "Kājene", "footer.next": "Nākamais", "footer.previous": "Iepriekšējais", "header": "Galvene", "meta.comments": "Komentārs", "meta.source": "Avots", "nav": "Navigācija", "readtime.one": "1 min lasīšana", "readtime.other": "# min lasīšana", "rss.created": "RSS padeve", "rss.updated": "RSS padeve atjauninātajam saturam", "search": "Meklēt", "search.placeholder": "Meklēt", "search.share": "Dalīties", "search.reset": "Notīrīt", "search.result.initializer": "Notiek meklēšanas inicializācija", "search.result.placeholder": "Ierakstiet, lai sāktu meklēšanu", "search.result.none": "Nav atbilstošu dokumentu", "search.result.one": "1 atbilstošs dokuments", "search.result.other": "# atbilstoši dokumenti ", "search.result.more.one": "1 šajā lapā", "search.result.more.other": "# un vairāk šajā lapā", "search.result.term.missing": "Trūkstošs", "select.language": "Izvēlies valodu", "select.version": "Izvēlies versiju", "source": "Doties uz repozitoriju", "source.file.contributors": "Veidotāji", "source.file.date.created": "Izveidots", "source.file.date.updated": "Pēdējoreiz atjaunots", "tabs": "Cilnes", "toc": "Satura rādītājs", "top": "Atpakaļ uz augšu" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/mk.html000066400000000000000000000052541475306445600255100ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "mk", "action.edit": "Уредете ја оваа страница", "action.skip": "Прескокнете до содржината", "action.view": "Прикажи го изворот на оваа страница", "announce.dismiss": "Не го прикажувај ова повторно", "blog.archive": "Архива", "blog.categories": "Категории", "blog.categories.in": "во", "blog.continue": "Продолжи со читање", "blog.draft": "Нацрт", "blog.index": "Назад кон индекс", "blog.meta": "Метадата", "blog.references": "Поврзани линкови", "clipboard.copy": "Копирај во таблата", "clipboard.copied": "Копирано", "consent.accept": "Прифати", "consent.manage": "Прилагодување со поставките", "consent.reject": "Одбиј", "footer": "Подножје", "footer.next": "Следно", "footer.previous": "Претходно", "header": "Заглавје", "meta.comments": "Коментари", "meta.source": "Извор", "nav": "Наслов за навигација", "readtime.one": "1 min читање", "readtime.other": "# min читање", "rss.created": "RSS извор", "rss.updated": "RSS извор на ажурирана содржина", "search": "Пребарување", "search.config.lang": "ru", "search.placeholder": "Пребарување", "search.share": "Сподели", "search.reset": "Чисти", "search.result.initializer": "Иницијализирање на пребарувањето", "search.result.placeholder": "Напишете за да започнете со пребарување", "search.result.none": "Нема соодветни документи", "search.result.one": "1 документ што се совпаѓа", "search.result.other": "# соодветни документи", "search.result.more.one": "Уште 1 на оваа страница", "search.result.more.other": "Уште # на оваа страница", "search.result.term.missing": "Недостасува", "select.language": "Изберете јазик", "select.version": "Изберете верзија", "source": "Одете до складиштето", "source.file.contributors": "Соработници", "source.file.date.created": "Создаден", "source.file.date.updated": "Последно ажурирање", "tabs": "Јазичиња", "toc": "Содржина", "top": "Вратете се на почетокот" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/mn.html000066400000000000000000000023731475306445600255120ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "mn", "action.edit": "Хуудас засварлах", "action.skip": "Агуулгыг алгасах", "clipboard.copy": "Хуулах", "clipboard.copied": "Санах ойд хуулах", "footer": "Хөл", "footer.next": "Дараах", "footer.previous": "Өмнөх", "header": "Толгой", "meta.comments": "Сэтгэгдэл", "meta.source": "Эх үүсвэр", "nav": "Чиглүүлэгч", "search.config.lang": "ru", "search.placeholder": "Хайлт", "search.reset": "Цэвэрлэх", "search.result.placeholder": "Хайлтын үгээ бичнэ үү", "search.result.none": "Таарц илэрсэнгүй", "search.result.one": "1 таарц илэрлээ", "search.result.other": "# Тохирох баримт бичиг", "search.result.more.one": "1 илүү хуудас байна", "search.result.more.other": "# илүү хуудас байна", "source": "Хадгалах сан руу очих", "source.file.date.created": "Үүсгэсэн", "source.file.date.updated": "Сүүлийн шинэчлэлт", "tabs": "Табууд", "toc": "Агуулга" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/ms.html000066400000000000000000000026361475306445600255210ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "ms", "action.edit": "Edit halaman ini", "action.skip": "Langkau tajuk talian", "action.view": "Paparkan sumber laman ini", "announce.dismiss": "Jangan paparkan lagi", "blog.archive": "Arkib", "blog.categories": "Kategori", "blog.categories.in": "masuk", "clipboard.copy": "Salin ke papan keratan", "clipboard.copied": "Disalin ke papan keratan", "footer": "Pengaki", "footer.next" : "Seterusnya", "footer.previous": "Sebelumnya", "header": "Pengepala", "meta.comments": "Komen", "meta.source": "Sumber", "nav": "Navigasi", "search.placeholder": "Cari", "search.reset": "Padam", "search.result.initializer": "Siap carian", "search.result.placeholder": "Taip untuk mula mencari", "search.result.none": "Tiada dokumen yang sepadan", "search.result.one": "1 dokumen yang sepadan", "search.result.other": "# dokumen yang sepadan", "search.result.more.one": "1 lagi di halaman ini", "search.result.more.other": "# lagi di halaman ini", "search.result.term.missing": "Hilang", "select.language": "Pilih bahasa", "select.version": "Pilih versi", "source": "tajuk talian asal", "source.file.date.created": "tarikh fil asal dicipta", "source.file.date.updated": "Tarikh fil dikemas kini", "tabs": "Tab", "toc": "Jadual kandungan", "top": "Kembali ke atas" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/my.html000066400000000000000000000032041475306445600255170ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "my", "action.edit": "ဤ စာမျက်နှာကို ပြင်ရန်", "action.skip": "မာတိကာ သို့ သွားရန်", "clipboard.copy": "ကလစ်ဘုတ် သို့ ကူးယူရန်", "clipboard.copied": "ကလစ်ဘုတ် သို့ ကူယူပြီး", "footer": "အောက်ခြေ", "footer.next": "ရှေ့သို့", "footer.previous": "နောက်သို့", "header": "ခေါင်းပိုင်း", "meta.comments": "မှတ်ချက်များ", "meta.source": "ရင်းမြစ်", "nav": "လမ်းညွှန်", "search.config.pipeline": " ", "search.placeholder": "ရှာရန်", "search.reset": "ရှင်းလင်း", "search.result.placeholder": "ရှာဖွေခြင်းစရန် စာရိုက်ပါ", "search.result.none": "တူညီသော စာရွက်စာတမ်းများ မရှိပါ", "search.result.one": "စာရွက်စာတမ်း ၁ ခု တူညီသည်", "search.result.other": "စာရွက်စာတမ်း # ခု တူညီသည်", "source": "repository သို့ သွားရန်", "source.file.date.created": "နေပြည်တော်", "source.file.date.updated": "နောက်ဆုံး ထုတ်ပြန်ချက်", "tabs": "တက်များ", "toc": "ပါဝင်အကြောင်းအရာများ" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/nb.html000066400000000000000000000035561475306445600255030ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "nb", "action.edit": "Rediger denne siden", "action.skip": "Gå til innhold", "action.view": "Vis kildekoden til denne siden", "announce.dismiss": "Ikke vis dette igjen", "blog.archive": "Arkiv", "blog.categories": "Kategorier", "blog.categories.in": "i", "blog.continue": "Fortsett å lese", "blog.draft": "Kladd", "blog.index": "Tilbake til oversikt", "blog.meta": "Metadata", "blog.references": "Relaterte lenker", "clipboard.copy": "Kopier til utklippstavlen", "clipboard.copied": "Kopiert til utklippstavlen", "consent.accept": "Akseptert", "consent.manage": "Innstillinger", "consent.reject": "Reject", "footer": "Footer", "footer.next": "Neste", "footer.previous": "Forrige", "header": "Header", "meta.comments": "Kommentarer", "meta.source": "Kilde", "nav": "Navigasjon", "readtime.one": "lesteid: 1 min", "readtime.other": "lesetid: # min", "rss.created": "RSS feed", "rss.updated": "Oppdatert RSS feed", "search": "Søk", "search.config.lang": "no", "search.placeholder": "Søk", "search.share": "Del", "search.reset": "Nullstill", "search.result.initializer": "Starter søk", "search.result.placeholder": "Skriv søkeord", "search.result.none": "Ingen treff", "search.result.one": "1 treff", "search.result.other": "# treff", "search.result.more.one": "1 til på denne siden", "search.result.more.other": "# flere på denne siden", "search.result.term.missing": "Mangler", "select.language": "Velg språk", "select.version": "Velg versjon", "source": "Gå til kilde", "source.file.contributors": "Bidragsytere", "source.file.date.created": "Opprettet", "source.file.date.updated": "Sist oppdatert", "tabs": "Faner", "toc": "Innholdsliste", "top": "Tilbake til toppen" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/nl.html000066400000000000000000000040031475306445600255010ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "nl", "action.edit": "Wijzig deze pagina", "action.skip": "Ga naar inhoud", "action.view": "Bron van deze pagina bekijken", "announce.dismiss": "Niet meer laten zien", "blog.archive": "Archief", "blog.categories": "Categorieën", "blog.categories.in": "in", "blog.continue": "Doorgaan met lezen", "blog.draft": "Concept", "blog.index": "Terug naar de inhoudsopgave", "blog.meta": "Metadata", "blog.references": "Gerelateerde links", "clipboard.copy": "Kopiëren naar klembord", "clipboard.copied": "Gekopieerd naar klembord", "consent.accept": "Accepteren", "consent.manage": "Instellingen", "consent.reject": "Afwijzen", "footer": "Footer", "footer.next": "Volgende", "footer.previous": "Vorige", "header": "Header", "meta.comments": "Reacties", "meta.source": "Bron", "nav": "Navigatie", "readtime.one": "1 min leestijd", "readtime.other": "# min leestijd", "rss.created": "RSS feed", "rss.updated": "RSS feed met geüpdatet inhoud", "search": "Zoeken", "search.config.lang": "nl", "search.placeholder": "Zoeken", "search.share": "Delen", "search.reset": "Leegmaken", "search.result.initializer": "Zoeken initialiseren", "search.result.placeholder": "Typ om te beginnen met zoeken", "search.result.none": "Geen overeenkomende documenten", "search.result.one": "1 overeenkomende document", "search.result.other": "# overeenkomende documenten", "search.result.more.one": "1 extra overeenkomst op deze pagina", "search.result.more.other": "# extra overeenkomsten op deze pagina", "search.result.term.missing": "Ontbreekt", "select.language": "Selecteer taal", "select.version": "Selecteer versie", "source": "Ga naar repository", "source.file.contributors": "Bijdragers", "source.file.date.created": "Gecreëerd", "source.file.date.updated": "Laatst geüpdatet", "tabs": "Tabs", "toc": "Inhoudsopgave", "top": "Terug naar boven" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/nn.html000066400000000000000000000035471475306445600255170ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "nn", "action.edit": "Rediger denne sida", "action.skip": "Gå til innhald", "action.view": "Vis kjeldekoden for denne sida", "announce.dismiss": "Ikkje vis igjen", "blog.archive": "Arkiver", "blog.categories": "Kategoriar", "blog.categories.in": "i", "blog.continue": "Les vidare", "blog.draft": "Utkast", "blog.index": "Tilbake til index", "blog.meta": "Metadata", "blog.references": "Relaterte lenkjer", "clipboard.copy": "Kopier til utklippstavla", "clipboard.copied": "Kopiert til utklippstavla", "consent.accept": "Akseptert", "consent.manage": "Innstillingar", "consent.reject": "Avvis", "footer": "Footer", "footer.next": "Neste", "footer.previous": "Førre", "header": "Header", "meta.comments": "Kommentarar", "meta.source": "Kjelde", "nav": "Navigasjon", "readtime.one": "1 min lesnad", "readtime.other": "# min lesnad", "rss.created": "RSS feed", "rss.updated": "RSS feed for oppdatert innhald", "search": "Søk", "search.config.lang": "no", "search.placeholder": "Søk", "search.share": "Del", "search.reset": "Nullstill", "search.result.initializer": "Startar søk", "search.result.placeholder": "Skriv søkjeord", "search.result.none": "Ingen treff", "search.result.one": "1 treff", "search.result.other": "# treff", "search.result.more.one": "1 til på denne sida", "search.result.more.other": "# fleire på denne sida", "search.result.term.missing": "Manglar", "select.language": "Vel språk", "select.version": "Vel versjon", "source": "Gå til kjelde", "source.file.contributors": "Bidragsytarar", "source.file.date.created": "Oppretta", "source.file.date.updated": "Sist oppdatert", "tabs": "Faner", "toc": "Innhaldsliste", "top": "Tilbake til toppen" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/pl.html000066400000000000000000000040541475306445600255110ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "pl", "action.edit": "Edytuj tę stronę", "action.skip": "Przejdź do treści", "action.view": "Zobacz kod źródłowy tej strony", "announce.dismiss": "Nie pokazuj tego ponownie", "blog.archive": "Archiwum", "blog.categories": "Kategorie", "blog.categories.in": "", "blog.continue": "Czytaj dalej", "blog.draft": "Wersja robocza", "blog.index": "Powrót do indeksu", "blog.meta": "Metadane", "blog.references": "Powiązane łącza", "clipboard.copy": "Kopiuj do schowka", "clipboard.copied": "Skopiowano do schowka", "consent.accept": "Akceptuj", "consent.manage": "Zarządzaj ustawieniami", "consent.reject": "Odrzuć", "footer": "Stopka", "footer.next": "Następna strona", "footer.previous": "Poprzednia strona", "header": "Nagłówek", "meta.comments": "Komentarze", "meta.source": "Kod źródłowy", "nav": "Nawigacja", "readtime.one": "Czas czytania: 1 min", "readtime.other": "Czas czytania: # min", "rss.created": "Kanał RSS", "rss.updated": "Kanał RSS zaktualizowanych treści", "search": "Szukaj", "search.config.pipeline": " ", "search.placeholder": "Szukaj", "search.share": "Udostępnij", "search.reset": "Wyczyść", "search.result.initializer": "Inicjowanie wyszukiwania", "search.result.placeholder": "Zacznij pisać, aby szukać", "search.result.none": "Brak wyników wyszukiwania", "search.result.one": "Wyniki wyszukiwania: 1", "search.result.other": "Wyniki wyszukiwania: #", "search.result.more.one": "1 więcej na tej stronie", "search.result.more.other": "# więcej na tej stronie", "search.result.term.missing": "Brak", "select.language": "Wybierz język", "select.version": "Wybierz wersję", "source": "Przejdź do repozytorium", "source.file.contributors": "Kontrybutorzy", "source.file.date.created": "Utworzony", "source.file.date.updated": "Ostatnia aktualizacja", "tabs": "Zakładki", "toc": "Spis treści", "top": "Powrót do góry" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/pt-BR.html000066400000000000000000000040371475306445600260230ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "pt", "action.edit": "Editar esta página", "action.skip": "Pular para conteúdo", "action.view": "Exibir fonte desta página", "announce.dismiss": "Não mostrar isso novamente", "blog.archive": "Arquivo", "blog.categories": "Categorias", "blog.categories.in": "em", "blog.continue": "Continuar leitura", "blog.draft": "Rascunho", "blog.index": "Voltar ao índice", "blog.meta": "Metadados", "blog.references": "Links relacionados", "clipboard.copy": "Copiar para área de transferência", "clipboard.copied": "Copiado para área de transferência", "consent.accept": "Aceitar", "consent.manage": "Gerenciar configurações", "consent.reject": "Rejeitar", "footer": "Rodapé", "footer.next": "Próximo", "footer.previous": "Anterior", "header": "Cabeçalho", "meta.comments": "Comentários", "meta.source": "Origem", "nav": "Navegação", "readtime.one": "1 min de leitura", "readtime.other": "# min de leitura", "rss.created": "RSS feed", "rss.updated": "RSS feed de conteúdo atualizado", "search": "Pesquisar", "search.config.lang": "pt", "search.placeholder": "Buscar", "search.share": "Compartilhar", "search.reset": "Limpar", "search.result.initializer": "Inicializando busca", "search.result.placeholder": "Digite para iniciar a busca", "search.result.none": "Nenhum documento encontrado", "search.result.one": "1 documento encontrado", "search.result.other": "# documentos encontrados", "search.result.more.one": "mais 1 nesta página", "search.result.more.other": "# mais nesta página", "search.result.term.missing": "Ausente", "select.language": "Selecione o idioma", "select.version": "Selecione a versão", "source": "Ir para repositório", "source.file.contributors": "Contribuidores", "source.file.date.created": "Criado em", "source.file.date.updated": "Última atualização", "tabs": "Abas", "toc": "Índice", "top": "Voltar para o topo" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/pt.html000066400000000000000000000040241475306445600255160ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "pt", "action.edit": "Editar esta página", "action.skip": "Ir para o conteúdo", "action.view": "Ver fonte desta página", "announce.dismiss": "Não mostrar novamente", "blog.archive": "Arquivo", "blog.categories": "Categorias", "blog.categories.in": "em", "blog.continue": "Continuar leitura", "blog.draft": "Rascunho", "blog.index": "Voltar ao índice", "blog.meta": "Metadados", "blog.references": "Ligações relacionadas", "clipboard.copy": "Copiar para área de transferência", "clipboard.copied": "Copiado para área de transferência", "consent.accept": "Aceitar", "consent.manage": "Gerir configurações", "consent.reject": "Rejeitar", "footer": "Rodapé", "footer.next": "Próximo", "footer.previous": "Anterior", "header": "Cabeçalho", "meta.comments": "Comentários", "meta.source": "Fonte", "nav": "Navegação", "readtime.one": "1 min de leitura", "readtime.other": "# min de leitura", "rss.created": "canal RSS", "rss.updated": "canal RSS com conteúdo atualizado", "search": "Pesquisar", "search.config.lang": "pt", "search.placeholder": "Buscar", "search.share": "Compartilhar", "search.reset": "Limpar", "search.result.initializer": "Inicializando a pesquisa", "search.result.placeholder": "Digite para iniciar a busca", "search.result.none": "Nenhum resultado encontrado", "search.result.one": "1 resultado encontrado", "search.result.other": "# resultados encontrados", "search.result.more.one": "Mais 1 nesta página", "search.result.more.other": "Mais # nesta página", "search.result.term.missing": "Ausente", "select.language": "Selecione o idioma", "select.version": "Selecione a versão", "source": "Ir ao repositório", "source.file.contributors": "Colaboradores", "source.file.date.created": "Criada", "source.file.date.updated": "Última atualização", "tabs": "Abas", "toc": "Índice", "top": "Voltar ao topo" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/ro.html000066400000000000000000000037751475306445600255270ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "ro", "action.edit": "Editeaza această pagină", "action.skip": "Sari la conținut", "action.view": "Vezi sursa acestei pagini", "announce.dismiss": "Nu mai arăta asta", "blog.archive": "Arhivează", "blog.categories": "Categorii", "blog.categories.in": "în", "blog.continue": "Continuă să citești", "blog.draft": "Ciornă", "blog.index": "Înapoi la index", "blog.meta": "Metadata", "blog.references": "Link-uri relevante", "clipboard.copy": "Copiază în clipboard", "clipboard.copied": "Copiat în clipboard", "consent.accept": "Accept", "consent.manage": "Gestionați setările", "consent.reject": "Refuz", "footer": "Subsol", "footer.next": "Următor", "footer.previous": "Anterior", "header": "Antet", "meta.comments": "Comentarii", "meta.source": "Sursă", "nav": "Navigație", "readtime.one": "1 minut de citit", "readtime.other": "# minut de citit", "rss.created": "Flux RSS", "rss.updated": "Flux RSS cu conținut actualizat", "search": "Caută", "search.config.lang": "ro", "search.placeholder": "Căutare", "search.share": "Distribuie", "search.reset": "Resetează", "search.result.initializer": "Inițializare căutare", "search.result.placeholder": "Tastează pentru a începe căutarea", "search.result.none": "Nu a fost găsit niciun document", "search.result.one": "1 document găsit", "search.result.other": "# documente găsite", "search.result.more.one": "Încă 1 pe această pagină", "search.result.more.other": "Încă # pe această pagină", "search.result.term.missing": "Lipsă", "select.language": "Selectează limba", "select.version": "Selectează versuine", "source": "Accesează repository-ul", "source.file.contributors": "Contribuitori", "source.file.date.created": "Creată", "source.file.date.updated": "Ultima actualizare", "tabs": "File", "toc": "Cuprins", "top": "Înapoi sus" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/ru.html000066400000000000000000000050471475306445600255270ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "ru", "action.edit": "Редактировать страницу", "action.skip": "Перейти к содержанию", "action.view": "Посмотреть исходный код страницы", "announce.dismiss": "Больше не показывать", "blog.archive": "Архив", "blog.categories": "Категории", "blog.categories.in": "В", "blog.continue": "Читать", "blog.draft": "Черновик", "blog.index": "На главную", "blog.meta": "Метаданные", "blog.references": "Ссылки", "clipboard.copy": "Копировать в буфер", "clipboard.copied": "Скопировано в буфер", "consent.accept": "Принять", "consent.manage": "Управлять настройками", "consent.reject": "Отклонить", "footer": "Нижний колонтитул", "footer.next": "Вперед", "footer.previous": "Назад", "header": "Верхний колонтитул", "meta.comments": "Комментарии", "meta.source": "Исходный код", "nav": "Навигация", "readtime.one": "Читать 1 мин", "readtime.other": "Читать # мин", "rss.created": "RSS канал", "rss.updated": "RSS канал с новым контентом", "search": "Поиск", "search.config.lang": "ru", "search.placeholder": "Поиск", "search.share": "Поделиться", "search.reset": "Очистить", "search.result.initializer": "Инициализация поиска", "search.result.placeholder": "Начните печатать для поиска", "search.result.none": "Совпадений не найдено", "search.result.one": "Найдено 1 совпадение", "search.result.other": "Найдено совпадений: #", "search.result.more.one": "Ещё 1 на этой странице", "search.result.more.other": "Ещё # на этой странице", "search.result.term.missing": "Отсутствует", "select.language": "Выберите язык", "select.version": "Выберите версию", "source": "Перейти к репозиторию", "source.file.contributors": "Участники", "source.file.date.created": "Дата создания", "source.file.date.updated": "Последнее обновление", "tabs": "Вкладки", "toc": "Содержание", "top": "К началу" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/sa.html000066400000000000000000000064661475306445600255120ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "sa", "action.edit": "एतत् पृष्ठं सम्पादयतु", "action.skip": "सामग्रीं त्यजन्तु", "action.view": "अस्य पृष्ठस्य स्रोतः पश्यन्तु", "announce.dismiss": "एतत् पुनः न दर्शयतु", "blog.archive": "लेखागार", "blog.categories": "श्रेणियाँ", "blog.categories.in": "इत्यस्मिन्‌", "blog.continue": "पठनं निरन्तरं कुर्वन्तु", "blog.draft": "प्रारूप", "blog.index": "अनुक्रमणिकां प्रति पुनः आगच्छन्तु", "blog.meta": "परिदत्तांश", "blog.references": "सन्दर्भाः", "clipboard.copy": "एतत् प्रतिलिख्यताम्", "clipboard.copied": "प्रतिलिपितः भवति", "consent.accept": "अहं तत् स्वीकुर्वन् अस्मि", "consent.manage": "वविन्यासं प्रबन्धयन्तु", "consent.reject": "अहं तत् निराकरोमि", "footer": "पादलेखः", "footer.next": "अग्रिमः", "footer.previous": "पूर्वकृत", "header": "शीर्षकम्", "meta.comments": "विचाराः", "meta.source": "स्रोतः", "nav": "मार्गदर्शनम्", "readtime.one": "१ निमेषं पठितुं", "readtime.other": "# निमेषं पठितुं", "rss.created": "आरएसएस सेवा", "rss.updated": "आरएसएस सेवातः नवीनतमं अद्यतनम्", "search": "अन्वेषण", "search.placeholder": "अन्वेषण", "search.share": "भजतु", "search.reset": "तत् स्वच्छं कुर्वन्तु", "search.result.initializer": "अन्वेषणस्य आरम्भः", "search.result.placeholder": "अन्वेषणं आरभ्य लिखन्तु", "search.result.none": "अभिलेखाः नास्ति", "search.result.one": "१ अभिलेखः अस्ति", "search.result.other": "# अभिलेखाः सन्ति", "search.result.more.one": "अस्मिन् पृष्ठे १ अन्यः अस्ति", "search.result.more.other": "अस्मिन् पृष्ठे # अन्ये सन्ति", "search.result.term.missing": "शून्य", "select.language": "भाषां चिनोतु", "select.version": "संस्करणं चिनोतु", "source": "भण्डारं गच्छन्तु", "source.file.contributors": "अंशदाता", "source.file.date.created": "ननिर्माणस्य तिथिः", "source.file.date.updated": "परिवर्तनस्य तिथिः", "tabs": "पट्टाः", "toc": "सामग्रीसारणी", "top": "पुनः उपरिभागं प्रति गच्छन्तु" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/sh.html000066400000000000000000000033561475306445600255140ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "sh", "action.edit": "Ažuriraj stranicu", "action.skip": "Idi na tekst", "action.view": "Pogledaj izvorni kod ove stranice", "announce.dismiss": "Nemoj mi ponovo pokazati ovo", "blog.archive": "Arhiva", "blog.categories": "Kategorije", "blog.categories.in": "u", "blog.continue": "Nastavi sa čitanjem", "blog.meta": "Metapodaci", "blog.references": "Povezani linkovi", "clipboard.copy": "Kopiraj u klipbord", "clipboard.copied": "Iskopirano u klipbord", "consent.accept": "Prihvati", "consent.manage": "Promeni podešavanja", "consent.reject": "Odbij", "footer": "Podnožje", "footer.next": "Sledeće", "footer.previous": "Prethodno", "header": "Zaglavlje", "meta.comments": "Komentari", "meta.source": "Izvor", "nav": "Navigacija", "readtime.one": "1 minut čitanja", "readtime.other": "# minuta čitanja", "search": "Pretraga", "search.placeholder": "Pretraga", "search.share": "Deljenje", "search.reset": "Očisti", "search.result.initializer": "Inicijalizujem pretragu", "search.result.placeholder": "Unesite pojam pretrage", "search.result.none": "Ništa nije pronađeno", "search.result.one": "1 rezultat pretrage", "search.result.other": "# rezultata pretrage", "search.result.more.one": "još 1 na ovoj strani", "search.result.more.other": "još # na ovoj strani", "search.result.term.missing": "Nedostaje", "select.language": "Izaberi jezik", "select.version": "Izaberi verziju", "source": "Idi u repozitorijum", "source.file.date.created": "Kreiran", "source.file.date.updated": "Ažuriran", "tabs": "Tabovi", "toc": "Sadržaj", "top": "Nazad na vrh" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/si.html000066400000000000000000000026621475306445600255140ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "si", "action.edit": "පිටුව සංස්කරණය", "action.skip": "අන්තර්ගතය වෙත යන්න", "clipboard.copy": "කොපි කරන්න", "clipboard.copied": "කොපි කළා", "footer": "පාදම", "footer.next": "මීළඟ", "footer.previous": "පසුගිය", "header": "ශීර්ෂය", "meta.comments": "ප්‍රතිචාර", "meta.source": "මූලාශ්‍රය", "nav": "යාත්‍රණය", "search.config.pipeline": " ", "search.placeholder": "සොයන්න", "search.reset": "මකන්න", "search.result.placeholder": "සෙවීමට ටයිප් කරන්න", "search.result.none": "කිසිවක් හමු නොවුණි", "search.result.one": "1 ගැලපෙන ගොනුවක්", "search.result.other": "ගැලපෙන ගොනු # ක්", "search.result.more.one": "තව 1 ප්‍රතිඵලයක්", "search.result.more.other": "තව ප්‍රතිඵල # ක්", "source": "රිපොසිටරියට යන්න", "source.file.date.created": "ٺاھيو ويو", "source.file.date.updated": "අවසන් යාවත්කාලීන වීම", "tabs": "ටැබ්ස්", "toc": "පටුන" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/sk.html000066400000000000000000000037701475306445600255170ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "sk", "action.edit": "Upraviť túto stránku", "action.skip": "Preskočiť na obsah", "action.view": "Zobraziť zdroj tejto stránky", "announce.dismiss": "Už nezobrazovať", "blog.archive": "Archív", "blog.categories": "Kategórie", "blog.categories.in": "v", "blog.continue": "Pokračovať v čítaní", "blog.draft": "Návrh", "blog.index": "Späť na index", "blog.meta": "Metadata", "blog.references": "Súvisiace odkazy", "clipboard.copy": "Kopírovať do schránky", "clipboard.copied": "Skopírované do schránky", "consent.accept": "Prijať", "consent.manage": "Spravovať nastavenia", "consent.reject": "Odmietnuť", "footer": "Pätka", "footer.next": "Ďalej", "footer.previous": "Späť", "header": "Hlavička", "meta.comments": "Komentáre", "meta.source": "Zdroj", "nav": "Navigácia", "readtime.one": "1 min čítanie", "readtime.other": "# min čítanie", "rss.created": "RSS kanál", "rss.updated": "RSS zdroj aktualizovaného obsahu", "search": "Vyhľadávanie", "search.placeholder": "Hľadať", "search.share": "Zdieľaj", "search.reset": "Vyčistiť", "search.result.initializer": "Spúšťam hľadanie", "search.result.placeholder": "Pre vyhľadávanie začni písať", "search.result.none": "Žiadne vyhovujúce dokumenty", "search.result.one": "Vyhovujúci dokument: 1", "search.result.other": "Vyhovujúce dokumenty: #", "search.result.more.one": "1 ďalší na tejto stránke", "search.result.more.other": "# ďalších na tejto stránke", "search.result.term.missing": "Chýbajúci", "select.language": "Vyberte jazyk", "select.version": "Vyberte verziu", "source": "Zobraziť repozitár", "source.file.contributors": "Prispievatelia", "source.file.date.created": "Vytvorené", "source.file.date.updated": "Posledná aktualizácia", "tabs": "Karty", "toc": "Obsah", "top": "Na začiatok" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/sl.html000066400000000000000000000036241475306445600255160ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "sl", "action.edit": "Uredi stran", "action.skip": "Skoči na vsebino", "action.view": "Prikaži izvorno stran", "announce.dismiss": "Ne prikaži več", "blog.archive": "Arhiv", "blog.categories": "Kategorije", "blog.categories.in": "v", "blog.continue": "Nadaljuj z branjem", "blog.draft": "Osnutek", "blog.index": "Nazaj na kazalo", "blog.meta": "Metapodatki", "blog.references": "Sorodne povezave", "clipboard.copy": "Kopiraj v odložišče", "clipboard.copied": "Kopirano v odložišče", "consent.accept": "Sprejmi", "consent.manage": "Uredi nastavitve", "consent.reject": "Zavrni", "footer": "Glava", "footer.next": "Naslednja stran", "footer.previous": "Prejšnja stran", "header": "Noga", "meta.comments": "Komentarji", "meta.source": "Izvorna koda", "nav": "Navigacija", "readtime.one": "Čas branja: 1 min", "readtime.other": "Čas branja: # min", "rss.created": "RSS vir", "rss.updated": "RSS vir posodobljene vsebine", "search": "Iskanje", "search.config.lang": "sl", "search.placeholder": "Išči", "search.share": "Deli", "search.reset": "Počisti", "search.result.initializer": "Inicializacija iskanja", "search.result.placeholder": "Vpiši iskalni niz", "search.result.none": "Ni zadetkov", "search.result.one": "1 zadetek", "search.result.other": "# zadetkov", "search.result.more.one": "Še 1 na tej strani", "search.result.more.other": "Še # na tej strani", "search.result.term.missing": "Manjka", "select.language": "Izberi jezik", "select.version": "Izberi različico", "source": "Pojdi na repozitorij", "source.file.contributors": "Soavtorji", "source.file.date.created": "Ustvarjeno", "source.file.date.updated": "Zadnja posodobitev", "tabs": "Zavihki", "toc": "Kazalo", "top": "Nazaj na vrh" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/sq.html000066400000000000000000000040141475306445600255150ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "sq", "direction": "ltr", "action.edit": "Ndrysho këtë faqe", "action.skip": "Kalo te përmbajtja", "action.view": "Shiko burimin e kësaj faqeje", "announce.dismiss": "Mos e shfaq më këtë", "blog.archive": "Arkiva", "blog.categories": "Kategoritë", "blog.categories.in": "në", "blog.continue": "Vazhdo leximin", "blog.draft": "Draft", "blog.index": "Kthehu te indeksi", "blog.meta": "Të dhëna", "blog.references": "Linqe të afërta", "clipboard.copy": "Kopjo në clipboard", "clipboard.copied": "U kopjua në clipboard", "consent.accept": "Prano", "consent.manage": "Administro parametrat", "consent.reject": "Refuzo", "footer": "Fundi i faqes", "footer.next": "Tjetër", "footer.previous": "E mëparshme", "header": "Koka", "meta.comments": "Komente", "meta.source": "Burimi", "nav": "Navigacion", "readtime.one": "Lexim 1 min", "readtime.other": "Lexim # min", "rss.created": "Burim RSS", "rss.updated": "Burim RSS me përmbajtje të përditësuar", "search": "Kërko", "search.placeholder": "Vendmbajtës", "search.share": "Shpërndaj", "search.reset": "Zbraz", "search.result.initializer": "Duke filluar kërkimin", "search.result.placeholder": "Shkruaj për të filluar kërkimin", "search.result.none": "Nuk ka dokumente të përputhshme", "search.result.one": "1 dokument i përputhshëm", "search.result.other": "# dokumente të përputhshme", "search.result.more.one": "1 më shumë në këtë faqe", "search.result.more.other": "# më shumë në këtë faqe", "search.result.term.missing": "Mungon", "select.language": "Zgjidh gjuhën", "select.version": "Zgjidh versionin", "source": "Shko te burimi", "source.file.contributors": "Bashkëpunues", "source.file.date.created": "Krijimi", "source.file.date.updated": "Përditësimi i fundit", "tabs": "Skedat", "toc": "Tabela e përmbajtjes", "top": "Kthehu në krye" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/sr.html000066400000000000000000000047111475306445600255220ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "sr", "action.edit": "Ажурирај страницу", "action.skip": "Иди на текст", "action.view": "Погледајте изворни код ове странице", "announce.dismiss": "Не приказуј поново", "blog.archive": "Архива", "blog.categories": "Категорије", "blog.categories.in": "у", "blog.continue": "Настави са читањем", "blog.draft": "Нацрт", "blog.index": "Назад на индекс", "blog.meta": "Метаподаци", "blog.references": "Сродне везе", "clipboard.copy": "Копирај у клипборд", "clipboard.copied": "Ископирано у клипборд", "consent.accept": "Прихвати", "consent.manage": "Управљај подешавањима", "consent.reject": "Одбиј", "footer": "Подножје", "footer.next": "Следеће", "footer.previous": "Претходно", "header": "Заглавље", "meta.comments": "Коментари", "meta.source": "Извор", "nav": "Навигација", "readtime.one": "1 минут читања", "readtime.other": "# минута читања", "rss.created": "РСС феед", "rss.updated": "РСС феед ажурираног садржаја", "search": "Претрага", "search.placeholder": "Претрага", "search.share": "Дељење", "search.reset": "Очисти", "search.result.initializer": "Иницијализујем претрагу", "search.result.placeholder": "Унесите појам претраге", "search.result.none": "Ништа није пронађено", "search.result.one": "1 резултат претраге", "search.result.other": "# резултата претраге", "search.result.more.one": "још 1 на овој страни", "search.result.more.other": "још # на овој страни", "search.result.term.missing": "Недостаје", "select.language": "Изабери језик", "select.version": "Изабери верзију", "source": "Иди у репозиторијум", "source.file.contributors": "Доприноситељи", "source.file.date.created": "Креиран", "source.file.date.updated": "Ажуриран", "tabs": "Табови", "toc": "Садржај", "top": "Назад на врх" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/sv.html000066400000000000000000000036641475306445600255340ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "sv", "action.edit": "Redigera sidan", "action.skip": "Gå till innehållet", "action.view": "Visa källkoden för denna sida", "announce.dismiss": "Visa inte igen", "blog.archive": "Arkivera", "blog.categories": "Kategorier", "blog.categories.in": "i", "blog.continue": "Fortsätt läsa", "blog.draft": "Utkast", "blog.index": "Tillbaka till index", "blog.meta": "Metadata", "blog.references": "Relaterade länkar", "clipboard.copy": "Kopiera till urklipp", "clipboard.copied": "Kopierat till urklipp", "consent.accept": "Acceptera", "consent.manage": "Hantera inställningar", "consent.reject": "Acceptera inte", "footer": "Sidfot", "footer.next": "Nästa", "footer.previous": "Föregående", "header": "Sidhuvud", "meta.comments": "Kommentarer", "meta.source": "Källa", "nav": "Navigation", "readtime.one": "1 min lästid", "readtime.other": "# min lästid", "rss.created": "RSS-flöde", "rss.updated": "RSS-flöde av uppdaterat innehåll", "search": "Sök", "search.config.lang": "sv", "search.placeholder": "Sök", "search.share": "Dela", "search.reset": "Rensa", "search.result.initializer": "Initialiserar sök", "search.result.placeholder": "Skriv sökord", "search.result.none": "Inga sökresultat", "search.result.one": "1 sökresultat", "search.result.other": "# sökresultat", "search.result.more.one": "1 till på denna sida", "search.result.more.other": "# till på denna sida", "search.result.term.missing": "Saknas", "select.language": "Välj språk", "select.version": "Välj version", "source": "Gå till datakatalog", "source.file.contributors": "Författare", "source.file.date.created": "Skapad", "source.file.date.updated": "Senast uppdaterad", "tabs": "Flikar", "toc": "Innehållsförteckning", "top": "Tillbaka till toppen" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/ta.html000066400000000000000000000072741475306445600255110ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "ta", "action.edit": "இந்த பக்கத்தை திருத்தவும்", "action.skip": "உள்ளடக்கத்திற்கு செல்க", "action.view": "இந்தப் பக்கத்தின் மூலத்தைப் பார்க்கவும்", "announce.dismiss": "இதை மீண்டும் காட்டாதே", "blog.archive": "காப்பகம்", "blog.categories": "வகைகள்", "blog.categories.in": "உள்ளே", "blog.continue": "தொடர்ந்து படிக்கவும்", "blog.draft": "வரைவு", "blog.index": "குறியீட்டுக்குத் திரும்பு", "blog.meta": "மெட்டாடேட்டா", "blog.references": "தொடர்புடைய இணைப்புகள்", "clipboard.copy": "கிளிப்போர்டுக்கு நகலெடுக்கவும்", "clipboard.copied": "கிளிப்போர்டுக்கு நகலெடுக்கப்பட்டது", "consent.accept": "ஏற்றுக்கொள்", "consent.manage": "அமைப்புகளை நிர்வகிக்கவும்", "consent.reject": "நிராகரி", "footer": "அடிக்குறிப்பு", "footer.next": "அடுத்தது", "footer.previous": "முந்தையது", "header": "தலைப்பு", "meta.comments": "கருத்துகள்", "meta.source": "ஆதாரம்", "nav": "வழிசெலுத்தல்", "readtime.one": "படிப்பதற்கு 1 நிமிடம்", "readtime.other": "படிப்பதற்கு # நிமிடம்", "rss.created": "RSS ஊட்டம்", "rss.updated": "புதுப்பிக்கப்பட்ட உள்ளடக்கத்தின் RSS ஊட்டம்", "search": "தேடு", "search.config.pipeline": " ", "search.placeholder": "தேடு", "search.share": "பகிரவும்", "search.reset": "அழிக்கவும்", "search.result.initializer": "தேடலைத் துவக்குகிறது", "search.result.placeholder": "தேடலைத் தொடங்க தட்டச்சு செய்யவும்", "search.result.none": "பொருந்தக்கூடிய ஆவணங்கள் இல்லை", "search.result.one": "1 பொருந்தும் ஆவணம்", "search.result.other": "# பொருந்தும் ஆவணங்கள்", "search.result.more.one": "இந்தப் பக்கத்தில் மேலும் 1", "search.result.more.other": "இந்தப் பக்கத்தில் மேலும் #", "search.result.term.missing": "காணவில்லை", "select.language": "மொழியைத் தேர்ந்தெடுக்கவும்", "select.version": "பதிப்பைத் தேர்ந்தெடுக்கவும்", "source": "களஞ்சியத்திற்குச் செல்லவும்", "source.file.contributors": "பங்களிப்பாளர்கள்", "source.file.date.created": "உருவாக்கப்பட்டது", "source.file.date.updated": "கடைசி புதுப்பிப்பு", "tabs": "தாவல்கள்", "toc": "உள்ளடக்க அட்டவணை", "top": "மீண்டும் மேலே" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/te.html000066400000000000000000000071071475306445600255100ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "te", "action.edit": "ఈ పేజీలో దిద్దుబాట్లు చేయండి", "action.skip": "సమాచారానికి వెళ్లండి", "action.view": "నేను ఈ పేజీ యొక్క మూలాన్ని చూడాలనుకుంటున్నాను", "announce.dismiss": "దీన్ని మళ్లీ చూపవద్దు", "blog.archive": "పాత వ్యాసం", "blog.categories": "వర్గాలు", "blog.categories.in": "లో", "blog.continue": "చదవడం కొనసాగించండి", "blog.draft": "ప్రారంభ రచన", "blog.index": "సూచికకు తిరిగి వెళ్ళు", "blog.meta": "సమాచారం గురించి సమాచారం", "blog.references": "సంబంధిత సూచనలు", "clipboard.copy": "దీనిని అనుకరించు", "clipboard.copied": "దీనిని అతికించు", "consent.accept": "నేను దీనిని అంగీకరిస్తున్నాను", "consent.manage": "ఆకృతీకరణను నిర్వహించండి", "consent.reject": "నేను దీనిని తిరస్కరిస్తున్నాను", "footer": "అడిటిప్పణి", "footer.next": "తదుపరి భాగం", "footer.previous": "మునుపటి భాగం", "header": "శీర్షిక విభాగం", "meta.comments": "అభిప్రాయాలు", "meta.source": "మూలం", "nav": "మార్గదర్శక పట్టీ", "readtime.one": "చదవడానికి ఒక నిమిషం పడుతుంది", "readtime.other": "చదవడానికి # నిమిషాలు పడుతుంది", "rss.created": "ఆర్ఎస్ఎస్ సేవ", "rss.updated": "ఆర్ఎస్ఎస్ సేవ నుండి తాజా నవీకరణ", "search": "వెతకండి", "search.placeholder": "వెతకండి", "search.share": "పంచుకోండి", "search.reset": "తుడిచివేయు", "search.result.initializer": "శోధనను ప్రారంభిస్తోంది", "search.result.placeholder": "రాయడం ద్వారా వెతకడం ప్రారంభించండి", "search.result.none": "సరిపోలే పత్రాలు లేవు", "search.result.one": "ఒక సరిపోలే పత్రం", "search.result.other": "# సరిపోలే పత్రాలు", "search.result.more.one": "ఈ పేజీలో మరొకటి", "search.result.more.other": "ఈ పేజీలో ఇంకా # ఉన్నాయి", "search.result.term.missing": "తప్పిపోయింది", "select.language": "భాషను ఎంచుకోండి", "select.version": "సంస్కరణను ఎంచుకోండి", "source": "భండారానికి వెళ్ళండి", "source.file.contributors": "సహకారులు", "source.file.date.created": "సృష్టించబడింది", "source.file.date.updated": "చివరి నవీకరణ", "tabs": "వివిధ కిటికీలు", "toc": "విషయ సూచిక", "top": "పైకి తిరిగి వెళ్ళు" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/th.html000066400000000000000000000056471475306445600255220ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "th", "action.edit": "แก้ไขหน้านี้", "action.skip": "ข้ามไปที่เนื้อหา", "action.view": "ดูแหล่งที่มาของหน้านี้", "announce.dismiss": "อย่าแสดงสิ่งนี้อีก", "blog.archive": "คลังเก็บเอกสาร", "blog.categories": "หมวดหมู่", "blog.categories.in": "ใย", "blog.continue": "อ่านต่อไป", "blog.draft": "ฉบับร่าง", "blog.index": "กลับไปยังหน้าแรก", "blog.meta": "คำอธิบายข้อมูล", "blog.references": "ลิงก์ที่เกี่ยวข้อง", "clipboard.copy": "คัดลอก", "clipboard.copied": "คัดลอกแล้ว", "consent.accept": "ยอมรับ", "consent.manage": "จัดการการตั้งค่า", "consent.reject": "ปฏิเสธ", "footer": "ส่วนท้าย", "footer.next": "ต่อไป", "footer.previous": "ก่อนหน้า", "header": "หัวข้อ", "meta.comments": "ความคิดเห็น", "meta.source": "แหล่งที่มา", "nav": "ตัวนำทาง", "readtime.one": "อ่าน 1 นาที", "readtime.other": "อ่าน # นาที", "rss.created": "ฟีด RSS", "rss.updated": "ฟีด RSS ของเนื้อหาที่อัปเดต", "search": "ค้นหา", "search.config.lang": "th", "search.placeholder": "ค้นหา", "search.share": "แบ่งปัน", "search.reset": "ล้าง", "search.result.initializer": "กำลังเริ่มต้นการค้นหา", "search.result.placeholder": "พิมพ์เพื่อเริ่มค้นหา", "search.result.none": "ไม่พบเอกสารที่ตรงกัน", "search.result.one": "พบเอกสารที่ตรงกัน", "search.result.other": "พบ # เอกสารที่ตรงกัน", "search.result.more.one": "อีกหนึ่งในหน้านี้", "search.result.more.other": "# เพิ่มเติมในหน้านี้", "search.result.term.missing": "ไม่พบ", "select.language": "เลือกภาษา", "select.version": "เลือกเวอร์ชัน", "source": "ไปที่พื้นที่เก็บข้อมูล", "source.file.contributors": "ผู้มีส่วนร่วม", "source.file.date.created": "สร้าง", "source.file.date.updated": "สร้าง", "tabs": "แท็บ", "toc": "สารบัญ", "top": "กลับไปด้านบนสุด" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/tl.html000066400000000000000000000037421475306445600255200ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "tl", "action.edit": "I-edit ang pahinang ito", "action.skip": "I-skip tungo sa nilalaman", "action.view": "Tingnan ang pinagmulan ng pahinang ito", "announce.dismiss": "Huwag mo nang ipakita muli ito", "blog.categories": "Kategorya", "blog.categories.in": "sa", "blog.continue": "Magpatuloy sa pagbabasa", "blog.index": "Bumalik sa index", "blog.references": "Mga kaugnay na link", "clipboard.copy": "Kopyahin sa clipboard", "clipboard.copied": "Nakopya mula sa clipboard", "consent.accept": "Tanggapin", "consent.manage": "Pamahalaan ang mga setting", "consent.reject": "Tanggihan", "footer": "Lagdang Pangwakas", "footer.next": "Susunod", "footer.previous": "Nakaraan", "header": "Pamuhatan", "meta.comments": "Mga Komento", "meta.source": "Pinagmulan", "nav": "Nabigasyon", "readtime.one": "1 minutong basahin", "readtime.other": "# minutong basahin", "rss.created": "RSS feed", "rss.updated": "RSS feed ng na-update na nilalaman", "search": "Hanapin", "search.placeholder": "Hanapin", "search.share": "Ibahagi", "search.reset": "Tanggalin", "search.result.initializer": "Sinisimulan ang paghahanap", "search.result.placeholder": "Mag-type upang simulan ang paghahanap", "search.result.none": "Walang nahanap na dokumento", "search.result.one": "1 magkatugmang dokumento", "search.result.other": "# magkatugmang mga dokumento", "search.result.more.one": "1 meron sa pahina na ito", "search.result.more.other": "# meron sa pahina na ito", "search.result.term.missing": "Nawawala", "select.language": "Pumili ng lenguwahe", "select.version": "Pumili ng bersyon", "source": "Pumunta sa repository", "source.file.contributors": "Mga nag-ambag", "source.file.date.created": "Nagawa", "source.file.date.updated": "Huling update", "tabs": "Mga tala", "toc": "Talaan ng nilalaman", "top": "Bumalik sa taas" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/tr.html000066400000000000000000000036561475306445600255320ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "tr", "action.edit": "Düzenle", "action.skip": "Ana içeriğe geç", "action.view": "Sayfanın kaynağını görüntüle", "announce.dismiss": "Bir daha gösterme", "blog.archive": "Arşiv", "blog.categories": "Kategoriler", "blog.categories.in": "in", "blog.continue": "Okumaya devam et", "blog.draft": "Taslak", "blog.index": "Dizine geri dön", "blog.meta": "Metadata", "blog.references": "İlgili bağlantılar", "clipboard.copy": "Kopyala", "clipboard.copied": "Kopyalandı", "consent.accept": "Kabul et", "consent.manage": "Ayarları yönet", "consent.reject": "Reddet", "footer": "Altbilgi", "footer.next": "Sonraki", "footer.previous": "Önceki", "header": "Başlık", "meta.comments": "Yorumlar", "meta.source": "Kaynak", "nav": "Navigasyon", "readtime.one": "1 dakika okuma", "readtime.other": "# dakika okuma", "rss.created": "RSS beslemesi", "rss.updated": "Güncellenmiş içeriğin RSS beslemesi", "search": "Ara", "search.config.lang": "tr", "search.placeholder": "Ara", "search.share": "Paylaş", "search.reset": "Temizle", "search.result.initializer": "Arama başlatılıyor", "search.result.placeholder": "Aramaya başlamak için yazın", "search.result.none": "Eşleşen doküman bulunamadı", "search.result.one": "1 doküman bulundu", "search.result.other": "# doküman bulundu", "search.result.more.one": "Bu sayfada 1 tane daha", "search.result.more.other": "Bu sayfada # tane daha", "search.result.term.missing": "Eksik", "select.language": "Dil seç", "select.version": "Versiyon seç", "source": "Depoya git", "source.file.contributors": "Katkıda bulunanlar", "source.file.date.created": "Oluşturuldu", "source.file.date.updated": "Son Güncelleme", "tabs": "Sekmeler", "toc": "İçindekiler", "top": "Başa dön" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/uk.html000066400000000000000000000051221475306445600255120ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "uk", "action.edit": "Редагувати сторінку", "action.skip": "Перейти до змісту", "action.view": "Переглянути вихідний код сторінки", "announce.dismiss": "Більше не показувати", "blog.archive": "Архівувати", "blog.categories": "Категорії", "blog.categories.in": "в", "blog.continue": "Читати далі", "blog.draft": "Чернетка", "blog.index": "Повернутись на головну", "blog.meta": "Метадані", "blog.references": "Пов'язані посилання", "clipboard.copy": "Скопіювати в буфер", "clipboard.copied": "Скопійовано в буфер", "consent.accept": "Прийняти", "consent.manage": "Керувати налаштуваннями", "consent.reject": "Відхилити", "footer": "Футер", "footer.next": "Вперед", "footer.previous": "Назад", "header": "Хедер", "meta.comments": "Коментарі", "meta.source": "Вихідний код", "nav": "Навігація", "readtime.one": "Час на прочитання: 1 хвилина", "readtime.other": "Час на прочитання: # хвилин", "rss.created": "RSS стрічка", "rss.updated": "RSS стрічка оновленого контенту", "search": "Шукати", "search.placeholder": "Пошук", "search.share": "Поділитись", "search.reset": "Очистити", "search.result.initializer": "Пошук розпочато", "search.result.placeholder": "Розпочніть писати для пошуку", "search.result.none": "Збігів не знайдено", "search.result.one": "Знайдено 1 збіг", "search.result.other": "Знайдено # збігів", "search.result.more.one": "Ще 1 збіг на цій сторінці", "search.result.more.other": "Ще # збігів на цій сторінці", "search.result.term.missing": "Не знайдено запиту", "select.language": "Обрати мову", "select.version": "Обрати версію", "source": "Перейти до вихідного коду", "source.file.contributors": "Контриб'ютори", "source.file.date.created": "Створено", "source.file.date.updated": "Востаннє оновлено", "tabs": "Вкладки", "toc": "Зміст", "top": "Повернутись нагору" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/ur.html000066400000000000000000000047551475306445600255340ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "ur", "direction": "rtl", "action.edit": "اس صفحے میں ترمیم کریں", "action.skip": "براہِ راست مواد پر جائیں", "action.view": "اس صفحہ کا ماخذ دیکھیں", "announce.dismiss": "اسے دوبارہ مت دکھائیں", "blog.archive": "محفوظ شدہ", "blog.categories": "اقسام", "blog.categories.in": "میں", "blog.continue": "پڑھنا جاری رکھیے", "blog.draft": "ڈرافٹ", "blog.index": "واپس انڈیکس پر جائیں", "blog.meta": "میٹا ڈیٹا", "blog.references": "متعلقہ لنکس", "clipboard.copy": "کلِپ بورڈ میں نقل کریں", "clipboard.copied": "کلِپ بورڈ میں نقل کر دیا گیا", "consent.accept": "قبول کریں", "consent.manage": "سیٹینگ بدلیں", "consent.reject": "رد کرنا", "footer": "ذیلی تحریر", "footer.next": "اگلا", "footer.previous": "پچھلا", "header": "سر تحریر", "meta.comments": "تبصرے", "meta.source": "ذریعہ", "nav": "رہنمائی", "readtime.one": "1 منٹ لگے گا", "readtime.other": "# منٹ لگیں گے", "rss.created": "RSS فیڈ", "rss.updated": "تازہ ترین مواد کی RSS فیڈ", "search": "تلاش", "search.config.pipeline": " ", "search.placeholder": "تلاش کریں", "search.share": "اشتراک کریں", "search.reset": "صاف کریں", "search.result.initializer": "تلاش کا آغاز ہو رہا ہے", "search.result.placeholder": "تلاش شروع کرنے کے لئے ٹائپ کریں", "search.result.none": "کوئی ملتی جلتی دستاویزات نہیں", "search.result.one": "۱ ملتی جلتی دستاویز", "search.result.other": "# ملتی جلتی دستاویزات", "search.result.more.one": "اِس صفحے پر مزید ۱", "search.result.more.other": "اِس صفحے پر مزید #", "search.result.term.missing": "گمشدہ", "select.language": "زبان کا انتخاب کریں", "select.version": "ورژن کا انتخاب کریں", "source": "ریپازٹری پر جائیں", "source.file.contributors": "تعاون کار", "source.file.date.created": "تخلیق", "source.file.date.updated": "آخری بار تجدید", "tabs": "ٹیبز", "toc": "فہرست", "top": "واپس اوپر جائیں" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/uz.html000066400000000000000000000040761475306445600255400ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "uz", "action.edit": "Ushbu sahifani tahrirlash", "action.skip": "Tarkibga o'tish", "action.view": "Ushbu sahifaning manbasini ko'rish", "announce.dismiss": "Buni boshqa ko'rsatma", "blog.archive": "Arxiv", "blog.categories": "Kategoriyalar", "blog.categories.in": "ichida", "blog.continue": "O'qishni davom ettiring", "blog.draft": "Qoralama", "blog.index": "Indeks sahifasiga qaytish", "blog.meta": "Metama'lumot", "blog.references": "Bog'liq havolalar", "clipboard.copy": "Buferga nusxalash", "clipboard.copied": "Buferga nusxalandi", "consent.accept": "Qabul qilish", "consent.manage": "Sozlamalarni boshqarish", "consent.reject": "Rad etish", "footer": "Pastgi qism", "footer.next": "Keyingi sahifa", "footer.previous": "Oldingi sahifa", "header": "Sarlavha", "meta.comments": "Izohlar", "meta.source": "Manba", "nav": "Navigatsiya", "readtime.one": "1 daqiqa o'qish", "readtime.other": "# daqiqa o'qish", "rss.created": "RSS tasmasi", "rss.updated": "Yangilangan kontentning RSS tasmasi", "search": "Qidirish", "search.config.lang": "tr", "search.placeholder": "Qidirish", "search.share": "Ulashish", "search.reset": "Tozalash", "search.result.initializer": "Qidiruv ishga tushirilmoqda", "search.result.placeholder": "Qidiruvni boshlash uchun kiriting", "search.result.none": "Mos natijalar yo'q", "search.result.one": "1 ta mos natija", "search.result.other": "# ta mos keladigan natijalar", "search.result.more.one": "Ushbu sahifada yana 1 ta natija", "search.result.more.other": "Bu sahifada yana # ta natija", "search.result.term.missing": "To'ldirilmagan", "select.language": "Tilni tanlang", "select.version": "Versiyani tanlang", "source": "Repozitoriyga o'tish", "source.file.contributors": "Hissa qo'shuvchilar", "source.file.date.created": "Yaratildi", "source.file.date.updated": "Oxirgi yangilanish", "tabs": "Yorliqlar", "toc": "Mundarija", "top": "Yuqoriga qaytish" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/vi.html000066400000000000000000000040361475306445600255140ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "vi", "action.edit": "Chỉnh sửa", "action.skip": "Bỏ qua", "action.view": "Xem mã nguồn của trang", "announce.dismiss": "Không hiển thị lại", "blog.archive": "Lưu trữ", "blog.categories": "Mục", "blog.categories.in": "Trong", "blog.continue": "Tiếp tục đọc", "blog.draft": "Bản nháp", "blog.index": "Quay lại", "blog.meta": "Metadata", "blog.references": "Các liên kết liên quan", "clipboard.copy": "Sao chép vào bộ nhớ tạm", "clipboard.copied": "Đã sao chép", "consent.accept": "Đồng ý", "consent.manage": "Cài đặt", "consent.reject": "Từ chối", "footer": "Chân trang", "footer.next": "Sau", "footer.previous": "Trước", "header": "Đầu trang", "meta.comments": "Bình luận", "meta.source": "Mã nguồn", "nav": "Thanh điều hướng", "readtime.one": "1 phút đọc", "readtime.other": "# phút đọc", "rss.created": "RSS feed", "rss.updated": "RSS feed of updated content", "search": "Tìm kiếm", "search.config.lang": "vi", "search.placeholder": "Tìm kiếm", "search.share": "Chia sẻ", "search.reset": "Xoá", "search.result.initializer": "Initializing search", "search.result.placeholder": "Nhập để bắt đầu tìm kiếm", "search.result.none": "Không tìm thấy tài liệu liên quan", "search.result.one": "1 tài liệu liên quan", "search.result.other": "# tài liệu liên quan", "search.result.more.one": "1 từ khác trong trang", "search.result.more.other": "# từ khác trong trang", "search.result.term.missing": "Không", "select.language": "Chọn ngôn ngữ", "select.version": "Chọn phiên bản", "source": "Xem mã nguồn", "source.file.contributors": "Contributors", "source.file.date.created": "Tạo", "source.file.date.updated": "Cập nhật lần cuối", "tabs": "Tabs", "toc": "Mục lục", "top": "Trở lại mục lục" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/zh-Hant.html000066400000000000000000000040231475306445600264030ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "zh-Hant", "action.edit": "編輯此頁", "action.skip": "跳轉至", "action.view": "查看源代碼", "announce.dismiss": "不再顯示此訊息", "blog.archive": "存檔", "blog.categories": "分類", "blog.categories.in": "分類在", "blog.continue": "繼續閲讀", "blog.draft": "草稿", "blog.index": "回到首頁", "blog.meta": "元數據", "blog.references": "相關鏈接", "clipboard.copy": "拷貝", "clipboard.copied": "已拷貝", "consent.accept": "接受", "consent.manage": "管理設置", "consent.reject": "拒絕", "footer": "頁脚", "footer.next": "下一頁", "footer.previous": "上一頁", "header": "頁首", "meta.comments": "評論", "meta.source": "來源", "search.config.pipeline": "stemmer", "search.config.separator": "[\\s\\u200b\\u3000\\-、。,.?!;]+", "nav": "導航", "readtime.one": "需要 1 分鐘閲讀", "readtime.other": "需要 # 分鐘閲讀", "rss.created": "簡易資訊聚合", "rss.updated": "更新之部分的簡易資訊聚合", "search": "搜尋", "search.placeholder": "搜尋", "search.share": "分享", "search.reset": "清空", "search.result.initializer": "正在初始化搜尋引擎", "search.result.placeholder": "鍵入以開始檢索", "search.result.none": "沒有找到符合條件的結果", "search.result.one": "找到 1 个符合條件的結果", "search.result.other": "找到 # 個符合條件的結果", "search.result.more.one": "此頁尚有 1 個符合的項目", "search.result.more.other": "此頁尚有 # 個符合的項目", "search.result.term.missing": "缺失", "select.language": "選擇語言", "select.version": "選擇版本", "source": "前往倉庫", "source.file.contributors": "貢獻者", "source.file.date.created": "建立日期", "source.file.date.updated": "最後更新", "tabs": "標籤頁", "toc": "目錄", "top": "回到頂部" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/zh-TW.html000066400000000000000000000037651475306445600260570ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "zh-TW", "action.edit": "編輯此頁", "action.skip": "跳轉到", "action.view": "查看此頁原始碼", "announce.dismiss": "不再顯示此訊息", "blog.archive": "封存", "blog.categories": "分類", "blog.categories.in": "於", "blog.continue": "繼續閱讀", "blog.draft": "草稿", "blog.index": "回到主頁", "blog.meta": "元數據", "blog.references": "相關連結", "clipboard.copy": "複製", "clipboard.copied": "已複製", "consent.accept": "同意", "consent.manage": "管理設定", "consent.reject": "拒絕", "footer": "頁腳", "footer.next": "下一頁", "footer.previous": "上一頁", "header": "頁首", "meta.comments": "留言", "meta.source": "來源", "nav": "導覽列", "readtime.one": "需要 1 分鐘閱讀時間", "readtime.other": "需要 # 分鐘閱讀時間", "rss.created": "RSS 訂閱", "rss.updated": "RSS 訂閱內容已更新", "search": "搜尋", "search.config.pipeline": "stemmer", "search.config.separator": "[\\s\\u200b\\u3000\\-、。,.?!;]+", "search.placeholder": "搜尋", "search.share": "分享", "search.reset": "清除", "search.result.initializer": "正在初始化搜尋引擎", "search.result.placeholder": "打字進行搜尋", "search.result.none": "沒有符合的項目", "search.result.one": "找到 1 個符合的項目", "search.result.other": "找到 # 個符合的項目", "search.result.more.one": "此頁尚有 1 個符合的項目", "search.result.more.other": "此頁尚有 # 個符合的項目", "search.result.term.missing": "缺少字詞", "select.language": "選擇語言", "select.version": "選擇版本", "source": "前往倉庫", "source.file.contributors": "貢獻者", "source.file.date.created": "建立日期", "source.file.date.updated": "最後更新", "tabs": "標籤", "toc": "目錄", "top": "回到頂端" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/languages/zh.html000066400000000000000000000041031475306445600255120ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro t(key) %}{{ { "language": "zh", "action.edit": "编辑此页", "action.skip": "跳转至", "action.view": "查看本页的源代码", "announce.dismiss": "不再显示此消息", "blog.archive": "归档", "blog.categories": "分类", "blog.categories.in": "分类于", "blog.continue": "继续阅读", "blog.draft": "草稿", "blog.index": "回到主页", "blog.meta": "元数据", "blog.references": "相关链接", "clipboard.copy": "复制", "clipboard.copied": "已复制", "consent.accept": "同意", "consent.manage": "管理设定", "consent.reject": "拒绝", "footer": "页脚", "footer.next": "下一页", "footer.previous": "上一页", "header": "页眉", "meta.comments": "评论", "meta.source": "来源", "nav": "导航栏", "readtime.one": "需要 1 分钟阅读时间", "readtime.other": "需要 # 分钟阅读时间", "rss.created": "RSS 订阅", "rss.updated": "已更新内容的 RSS 订阅", "search": "查找", "search.config.pipeline": "stemmer", "search.config.separator": "[\\s\\u200b\\u3000\\-、。,.?!;]+", "search.placeholder": "搜索", "search.share": "分享", "search.reset": "清空当前内容", "search.result.initializer": "正在初始化搜索引擎", "search.result.placeholder": "键入以开始搜索", "search.result.none": "没有找到符合条件的结果", "search.result.one": "找到 1 个符合条件的结果", "search.result.other": "# 个符合条件的结果", "search.result.more.one": "在该页上还有 1 个符合条件的结果", "search.result.more.other": "在该页上还有 # 个符合条件的结果", "search.result.term.missing": "缺少", "select.language": "选择当前语言", "select.version": "选择当前版本", "source": "前往仓库", "source.file.contributors": "贡献者", "source.file.date.created": "创建日期", "source.file.date.updated": "最后更新", "tabs": "标签", "toc": "目录", "top": "回到页面顶部" }[key] }}{% endmacro %} mkdocs-material-9.6.4/material/templates/partials/logo.html000066400000000000000000000004211475306445600240620ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% if config.theme.logo %} logo {% else %} {% set icon = config.theme.icon.logo or "material/library" %} {% include ".icons/" ~ icon ~ ".svg" %} {% endif %} mkdocs-material-9.6.4/material/templates/partials/nav-item.html000066400000000000000000000133171475306445600246520ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro render_status(nav_item, type) %} {% set class = "md-status md-status--" ~ type %} {% if config.extra.status and config.extra.status[type] %} {% else %} {% endif %} {% endmacro %} {% macro render_content(nav_item, ref = nav_item) %} {% if nav_item.meta and nav_item.meta.icon %} {% include ".icons/" ~ nav_item.meta.icon ~ ".svg" %} {% endif %} {{ ref.title }} {% if nav_item.meta and nav_item.meta.subtitle %}
{{ nav_item.meta.subtitle }} {% endif %}
{% if nav_item.meta and nav_item.meta.status %} {{ render_status(nav_item, nav_item.meta.status) }} {% endif %} {% endmacro %} {% macro render_pruned(nav_item, ref = nav_item) %} {% set first = nav_item.children | first %} {% if first and first.children %} {{ render_pruned(first, ref) }} {% else %} {{ render_content(ref) }} {% if nav_item.children | length > 0 %} {% endif %} {% endif %} {% endmacro %} {% macro render(nav_item, path, level) %} {% set class = "md-nav__item" %} {% if nav_item.active %} {% set class = class ~ " md-nav__item--active" %} {% endif %} {% if nav_item.pages %} {% if page in nav_item.pages %} {% set nav_item = page %} {% endif %} {% endif %} {% if nav_item.children %} {% set indexes = [] %} {% if "navigation.indexes" in features %} {% for nav_item in nav_item.children %} {% if nav_item.is_index and not index is defined %} {% set _ = indexes.append(nav_item) %} {% endif %} {% endfor %} {% endif %} {% if "navigation.tabs" in features %} {% if level == 1 and nav_item.active %} {% set class = class ~ " md-nav__item--section" %} {% set is_section = true %} {% endif %} {% if "navigation.sections" in features %} {% if level == 2 and nav_item.parent.active %} {% set class = class ~ " md-nav__item--section" %} {% set is_section = true %} {% endif %} {% endif %} {% elif "navigation.sections" in features %} {% if level == 1 %} {% set class = class ~ " md-nav__item--section" %} {% set is_section = true %} {% endif %} {% endif %} {% if "navigation.prune" in features %} {% if not is_section and not nav_item.active %} {% set class = class ~ " md-nav__item--pruned" %} {% set is_pruned = true %} {% endif %} {% endif %}
  • {% if not is_pruned %} {% set checked = "checked" if nav_item.active %} {% if "navigation.expand" in features and not checked %} {% set indeterminate = "md-toggle--indeterminate" %} {% endif %} {% if not indexes %} {% set tabindex = "0" if not is_section %} {% else %} {% set index = indexes | first %} {% set class = "md-nav__link--active" if index == page %} {% endif %} {% else %} {{ render_pruned(nav_item) }} {% endif %}
  • {% elif nav_item == page %}
  • {% set toc = page.toc %} {% set first = toc | first %} {% if first and first.level == 1 %} {% set toc = first.children %} {% endif %} {% if toc %} {% endif %} {{ render_content(nav_item) }} {% if toc %} {% include "partials/toc.html" %} {% endif %}
  • {% else %}
  • {{ render_content(nav_item) }}
  • {% endif %} {% endmacro %} mkdocs-material-9.6.4/material/templates/partials/nav.html000066400000000000000000000021141475306445600237070ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% import "partials/nav-item.html" as item with context %} {% set class = "md-nav md-nav--primary" %} {% if "navigation.tabs" in features %} {% set class = class ~ " md-nav--lifted" %} {% endif %} {% if "toc.integrate" in features %} {% set class = class ~ " md-nav--integrated" %} {% endif %} mkdocs-material-9.6.4/material/templates/partials/pagination.html000066400000000000000000000013321475306445600252550ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% import ".icons/material/chevron-double-left.svg" as icon_first %} {% import ".icons/material/chevron-left.svg" as icon_previous %} {% import ".icons/material/chevron-right.svg" as icon_next %} {% import ".icons/material/chevron-double-right.svg" as icon_last %} mkdocs-material-9.6.4/material/templates/partials/palette.html000066400000000000000000000020051475306445600245600ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#}
    {% for option in config.theme.palette %} {% set scheme = option.scheme | d("default", true) %} {% set primary = option.primary | d("indigo", true) %} {% set accent = option.accent | d("indigo", true) %} {% if option.toggle %} {% endif %} {% endfor %}
    mkdocs-material-9.6.4/material/templates/partials/post.html000066400000000000000000000036011475306445600241120ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#}
    {% if post.authors %} {% endif %}
    {{ post.content }} {% if post.more %} {% endif %}
    mkdocs-material-9.6.4/material/templates/partials/progress.html000066400000000000000000000002161475306445600247700ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#}
    mkdocs-material-9.6.4/material/templates/partials/search.html000066400000000000000000000043701475306445600243760ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} mkdocs-material-9.6.4/material/templates/partials/social.html000066400000000000000000000011721475306445600244000ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#}
    {% for social in config.extra.social %} {% set rel = "noopener" %} {% if "mastodon" in social.icon %} {% set rel = rel ~ " me" %} {% endif %} {% set title = social.name %} {% if not title and "//" in social.link %} {% set _, url = social.link.split("//") %} {% set title = url.split("/")[0] %} {% endif %} {% include ".icons/" ~ social.icon ~ ".svg" %} {% endfor %}
    mkdocs-material-9.6.4/material/templates/partials/source-file.html000066400000000000000000000070061475306445600253450ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro render_updated(date) %} {% include ".icons/material/clock-edit-outline.svg" %} {{ date }} {% endmacro %} {% macro render_created(date) %} {% include ".icons/material/clock-plus-outline.svg" %} {{ date }} {% endmacro %} {% macro render_authors(authors) %} {% set git_authors = config.plugins.get("git-authors") %} {% if authors | length == 1 %} {% include ".icons/material/account.svg" %} {% else %} {% include ".icons/material/account-group.svg" %} {% endif %} {% endmacro %} {% macro render_committers_github(title) %} {% include ".icons/material/github.svg" %} {{ title }} {% endmacro %} {% macro render_committers_gitlab(title) %} {% include ".icons/material/gitlab.svg" %} {{ title }} {% endmacro %} {% macro render_committers(authors) %} {% if committers_source == "gitlab" %} {{ render_committers_gitlab("GitLab") }} {% else %} {{ render_committers_github("GitHub") }} {% endif %} {% endmacro %} {% if page.meta %} {% if page.meta.git_revision_date_localized %} {% set updated = page.meta.git_revision_date_localized %} {% elif page.meta.revision_date %} {% set updated = page.meta.revision_date %} {% endif %} {% if page.meta.git_creation_date_localized %} {% set created = page.meta.git_creation_date_localized %} {% endif %} {% endif %} {% if updated or created or git_info or committers %} {% endif %} mkdocs-material-9.6.4/material/templates/partials/source.html000066400000000000000000000006431475306445600244300ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#}
    {% set icon = config.theme.icon.repo or "fontawesome/brands/git-alt" %} {% include ".icons/" ~ icon ~ ".svg" %}
    {{ config.repo_name }}
    mkdocs-material-9.6.4/material/templates/partials/tabs-item.html000066400000000000000000000020331475306445600250100ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% macro render_content(nav_item, ref = nav_item) %} {% if nav_item == ref or "navigation.indexes" in features %} {% if nav_item.is_index and nav_item.meta.icon %} {% include ".icons/" ~ nav_item.meta.icon ~ ".svg" %} {% endif %} {% endif %} {{ ref.title }} {% endmacro %} {% macro render(nav_item, ref = nav_item) %} {% set class = "md-tabs__item" %} {% if ref.active %} {% set class = class ~ " md-tabs__item--active" %} {% endif %} {% if nav_item.children %} {% set first = nav_item.children | first %} {% if first.children %} {{ render(first, ref) }} {% else %}
  • {{ render_content(first, ref) }}
  • {% endif %} {% else %}
  • {{ render_content(nav_item) }}
  • {% endif %} {% endmacro %} mkdocs-material-9.6.4/material/templates/partials/tabs.html000066400000000000000000000005631475306445600240620ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% import "partials/tabs-item.html" as item with context %} mkdocs-material-9.6.4/material/templates/partials/tags.html000066400000000000000000000014361475306445600240670ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% if page.meta and page.meta.hide %} {% set hidden = "hidden" if "tags" in page.meta.hide %} {% endif %} {% if tags %} {% endif %} mkdocs-material-9.6.4/material/templates/partials/toc-item.html000066400000000000000000000007771475306445600246610ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#}
  • {{ toc_item.title }} {% if toc_item.children %} {% endif %}
  • mkdocs-material-9.6.4/material/templates/partials/toc.html000066400000000000000000000014041475306445600237110ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {% set title = lang.t("toc") %} {% if config.mdx_configs.toc and config.mdx_configs.toc.title %} {% set title = config.mdx_configs.toc.title %} {% endif %} mkdocs-material-9.6.4/material/templates/partials/top.html000066400000000000000000000004251475306445600237300ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} mkdocs-material-9.6.4/material/templates/redirect.html000066400000000000000000000007671475306445600231210ustar00rootroot00000000000000{#- This file was automatically generated - do not edit -#} {{ config.site_name }} mkdocs-material-9.6.4/material/utilities/000077500000000000000000000000001475306445600204355ustar00rootroot00000000000000mkdocs-material-9.6.4/material/utilities/__init__.py000066400000000000000000000021451475306445600225500ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. mkdocs-material-9.6.4/material/utilities/filter/000077500000000000000000000000001475306445600217225ustar00rootroot00000000000000mkdocs-material-9.6.4/material/utilities/filter/__init__.py000066400000000000000000000075731475306445600240470ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations import logging from fnmatch import fnmatch from mkdocs.structure.files import File from .config import FilterConfig # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- class Filter: """ A filter. """ def __init__(self, config: FilterConfig): """ Initialize the filter. Arguments: config: The filter configuration. """ self.config = config def __call__(self, value: str, ref: str | None = None) -> bool: """ Filter a value. First, the inclusion patterns are checked. Regardless of whether they are present, the exclusion patterns are checked afterwards. This allows to exclude values that are included by the inclusion patterns, so that exclusion patterns can be used to refine inclusion patterns. Arguments: value: The value to filter. ref: The value used for logging. Returns: Whether the value should be included. """ ref = ref or value # Check if value matches one of the inclusion patterns if self.config.include: for pattern in self.config.include: if fnmatch(value, pattern): break # Value is not included else: log.debug(f"Excluding '{ref}' due to inclusion patterns") return False # Check if value matches one of the exclusion patterns for pattern in self.config.exclude: if fnmatch(value, pattern): log.debug(f"Excluding '{ref}' due to exclusion patterns") return False # Value is not excluded return True # ------------------------------------------------------------------------- config: FilterConfig """ The filter configuration. """ # ----------------------------------------------------------------------------- class FileFilter(Filter): """ A file filter. """ def __call__(self, file: File) -> bool: """ Filter a file by its source path. Arguments: file: The file to filter. Returns: Whether the file should be included. """ if file.inclusion.is_excluded(): return False # Filter file by source path return super().__call__( file.src_uri, file.src_path ) # ----------------------------------------------------------------------------- # Data # ----------------------------------------------------------------------------- # Set up logging log = logging.getLogger("mkdocs.material.utilities") mkdocs-material-9.6.4/material/utilities/filter/config.py000066400000000000000000000036331475306445600235460ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from mkdocs.config.base import Config from mkdocs.config.config_options import ListOfItems, Type # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- class FilterConfig(Config): """ A filter configuration. """ include = ListOfItems(Type(str), default = []) """ Patterns to include. This list contains patterns that are matched against the value to filter. If the value matches at least one pattern, it will be included. """ exclude = ListOfItems(Type(str), default = []) """ Patterns to exclude. This list contains patterns that are matched against the value to filter. If the value matches at least one pattern, it will be excluded. """ mkdocs-material-9.6.4/mkdocs.yml000077500000000000000000000235031475306445600166350ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # Project information site_name: Material for MkDocs site_url: https://squidfunk.github.io/mkdocs-material/ site_author: Martin Donath site_description: >- Write your documentation in Markdown and create a professional static site in minutes – searchable, customizable, in 60+ languages, for all devices # Repository repo_name: squidfunk/mkdocs-material repo_url: https://github.com/squidfunk/mkdocs-material # Copyright copyright: Copyright © 2016 - 2025 Martin Donath # Configuration theme: name: material custom_dir: material/overrides features: - announce.dismiss - content.action.edit - content.action.view - content.code.annotate - content.code.copy # - content.code.select # - content.footnote.tooltips # - content.tabs.link - content.tooltips # - header.autohide # - navigation.expand - navigation.footer - navigation.indexes # - navigation.instant # - navigation.instant.prefetch # - navigation.instant.progress # - navigation.prune - navigation.sections - navigation.tabs # - navigation.tabs.sticky - navigation.top - navigation.tracking - search.highlight - search.share - search.suggest - toc.follow # - toc.integrate palette: - media: "(prefers-color-scheme)" toggle: icon: material/link name: Switch to light mode - media: "(prefers-color-scheme: light)" scheme: default primary: indigo accent: indigo toggle: icon: material/toggle-switch name: Switch to dark mode - media: "(prefers-color-scheme: dark)" scheme: slate primary: black accent: indigo toggle: icon: material/toggle-switch-off name: Switch to system preference font: text: Roboto code: Roboto Mono favicon: assets/favicon.png icon: logo: logo # Plugins plugins: - blog - search: separator: '[\s\u200b\-_,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])' - minify: minify_html: true # Hooks hooks: - material/overrides/hooks/shortcodes.py - material/overrides/hooks/translations.py # Additional configuration extra: status: new: Recently added deprecated: Deprecated analytics: provider: google property: !ENV GOOGLE_ANALYTICS_KEY social: - icon: fontawesome/brands/github link: https://github.com/squidfunk - icon: fontawesome/brands/docker link: https://hub.docker.com/r/squidfunk/mkdocs-material/ - icon: fontawesome/brands/python link: https://pypi.org/project/mkdocs-material/ - icon: fontawesome/brands/bluesky link: https://bsky.app/profile/squidfunk.bsky.social - icon: fontawesome/brands/mastodon link: https://fosstodon.org/@squidfunk - icon: fontawesome/brands/x-twitter link: https://x.com/squidfunk # Extensions markdown_extensions: - abbr - admonition - attr_list - def_list - footnotes - md_in_html - toc: permalink: true - pymdownx.arithmatex: generic: true - pymdownx.betterem: smart_enable: all - pymdownx.caret - pymdownx.details - pymdownx.emoji: emoji_generator: !!python/name:material.extensions.emoji.to_svg emoji_index: !!python/name:material.extensions.emoji.twemoji - pymdownx.highlight: anchor_linenums: true line_spans: __span pygments_lang_class: true - pymdownx.inlinehilite - pymdownx.keys - pymdownx.magiclink: normalize_issue_symbols: true repo_url_shorthand: true user: squidfunk repo: mkdocs-material - pymdownx.mark - pymdownx.smartsymbols - pymdownx.snippets: auto_append: - includes/mkdocs.md - pymdownx.superfences: custom_fences: - name: mermaid class: mermaid format: !!python/name:pymdownx.superfences.fence_code_format - pymdownx.tabbed: alternate_style: true combine_header_slug: true slugify: !!python/object/apply:pymdownx.slugs.slugify kwds: case: lower - pymdownx.tasklist: custom_checkbox: true - pymdownx.tilde not_in_nav: | /tutorials/**/*.md # Page tree nav: - Home: index.md - Getting started: - Installation: getting-started.md - Creating your site: creating-your-site.md - Publishing your site: publishing-your-site.md - Customization: customization.md - Conventions: conventions.md - Browser support: browser-support.md - Enterprise feedback: enterprise-support.md - Philosophy: philosophy.md - Alternatives: alternatives.md - License: license.md - Tutorials: - tutorials/index.md - "Blogs": - tutorials/blogs/basic.md - tutorials/blogs/navigation.md - tutorials/blogs/engage.md - "Social cards": - tutorials/social/basic.md - tutorials/social/custom.md - Changelog: - changelog/index.md - How to upgrade: upgrade.md - Setup: - setup/index.md - Changing the colors: setup/changing-the-colors.md - Changing the fonts: setup/changing-the-fonts.md - Changing the language: setup/changing-the-language.md - Changing the logo and icons: setup/changing-the-logo-and-icons.md - Ensuring data privacy: setup/ensuring-data-privacy.md - Setting up navigation: setup/setting-up-navigation.md - Setting up site search: setup/setting-up-site-search.md - Setting up site analytics: setup/setting-up-site-analytics.md - Setting up social cards: setup/setting-up-social-cards.md - Setting up a blog: setup/setting-up-a-blog.md - Setting up tags: setup/setting-up-tags.md - Setting up versioning: setup/setting-up-versioning.md - Setting up the header: setup/setting-up-the-header.md - Setting up the footer: setup/setting-up-the-footer.md - Adding a git repository: setup/adding-a-git-repository.md - Adding a comment system: setup/adding-a-comment-system.md - Building an optimized site: setup/building-an-optimized-site.md - Building for offline usage: setup/building-for-offline-usage.md - Extensions: - setup/extensions/index.md - Python Markdown: setup/extensions/python-markdown.md - Python Markdown Extensions: setup/extensions/python-markdown-extensions.md - Plugins: - plugins/index.md - Blog: plugins/blog.md - Group: plugins/group.md - Info: plugins/info.md - Meta: plugins/meta.md - Offline: plugins/offline.md - Optimize: plugins/optimize.md - Privacy: plugins/privacy.md - Projects: plugins/projects.md - Search: plugins/search.md - Social: plugins/social.md - Tags: plugins/tags.md - Typeset: plugins/typeset.md - Requirements: - Image processing: plugins/requirements/image-processing.md - Caching: plugins/requirements/caching.md - Reference: - reference/index.md - Admonitions: reference/admonitions.md - Annotations: reference/annotations.md - Buttons: reference/buttons.md - Code blocks: reference/code-blocks.md - Content tabs: reference/content-tabs.md - Data tables: reference/data-tables.md - Diagrams: reference/diagrams.md - Footnotes: reference/footnotes.md - Formatting: reference/formatting.md - Grids: reference/grids.md - Icons, Emojis: reference/icons-emojis.md - Images: reference/images.md - Lists: reference/lists.md - Math: reference/math.md - Tooltips: reference/tooltips.md - Insiders: - insiders/index.md - Why sponsor us: insiders/why-sponsor-us.md - What's in it for you: insiders/benefits.md - Who is sponsoring: insiders/our-sponsors.md - Sponsoring tiers: insiders/sponsoring-tiers.md - How to sponsor: insiders/how-to-sponsor.md - Additional information: - Payment and billing: insiders/payment-and-billing.md - Access management: insiders/access-management.md - Runtime and cancellation: insiders/runtime-and-cancellation.md - Privacy: insiders/privacy.md - License: insiders/license.md - Support: support.md - Using Insiders: - Getting started: insiders/getting-started.md - Changelog: - insiders/changelog/index.md - How to upgrade: insiders/upgrade.md - Community: - Contributing: - contributing/index.md - Reporting a bug: contributing/reporting-a-bug.md - Reporting a docs issue: contributing/reporting-a-docs-issue.md - Requesting a change: contributing/requesting-a-change.md - Adding translations: contributing/adding-translations.md - Making a pull request: contributing/making-a-pull-request.md - Asking a question: https://github.com/squidfunk/mkdocs-material/discussions - Guides: - Creating a reproduction: guides/creating-a-reproduction.md - Community experts program: - insiders/community-experts-program/index.md - Blog: - blog/index.md mkdocs-material-9.6.4/package-lock.json000066400000000000000000020260571475306445600200540ustar00rootroot00000000000000{ "name": "mkdocs-material", "version": "9.6.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "mkdocs-material", "version": "9.6.4", "license": "MIT", "dependencies": { "clipboard": "^2.0.11", "escape-html": "^1.0.3", "focus-visible": "^5.2.1", "fuzzaldrin-plus": "^0.6.0", "lunr": "^2.3.9", "lunr-languages": "^1.14.0", "rxjs": "^7.8.1" }, "devDependencies": { "@fortawesome/fontawesome-free": "^6.7.2", "@mdi/svg": "^7.4.47", "@primer/octicons": "^19.14.0", "@stylistic/eslint-plugin-ts": "^3.0.1", "@stylistic/stylelint-config": "^2.0.0", "@stylistic/stylelint-plugin": "^3.1.1", "@types/css-modules": "^1.0.5", "@types/escape-html": "^1.0.4", "@types/fuzzaldrin-plus": "^0.6.5", "@types/html-minifier-terser": "^7.0.2", "@types/lunr": "^2.3.7", "@types/node": "^22.12.0", "@types/resize-observer-browser": "^0.1.11", "@types/sass": "^1.45.0", "@typescript-eslint/eslint-plugin": "^8.22.0", "@typescript-eslint/parser": "^8.22.0", "autoprefixer": "^10.4.20", "chokidar": "^4.0.3", "cssnano": "5.1.0", "esbuild": "^0.24.2", "eslint": "8.57.0", "eslint-plugin-eslint-comments": "^3.2.0", "eslint-plugin-import": "^2.31.0", "eslint-plugin-jsdoc": "^50.6.3", "eslint-plugin-no-null": "^1.0.2", "github-types": "^1.0.0", "gitlab": "^14.2.2", "google-fonts-complete": "jonathantneal/google-fonts-complete", "html-minifier-terser": "^7.2.0", "material-design-color": "^2.3.2", "material-shadows": "^3.0.1", "npm-check-updates": "^17.1.14", "npm-run-all": "^4.1.5", "postcss": "^8.5.1", "postcss-dir-pseudo-class": "^9.0.1", "postcss-inline-svg": "^6.0.0", "postcss-logical": "5.0.4", "postcss-pseudo-is": "^0.3.0", "preact": "^10.25.4", "rimraf": "^6.0.1", "sass": "^1.83.4", "simple-icons": "^14.4.0", "stylelint": "16.12.0", "stylelint-config-recess-order": "5.1.1", "stylelint-config-recommended": "14.0.1", "stylelint-config-standard-scss": "^14.0.0", "stylelint-scss": "^6.11.0", "svgo": "^3.3.2", "tiny-glob": "^0.2.9", "ts-node": "^10.9.2", "typescript": "^5.7.3" }, "engines": { "node": ">= 18" } }, "node_modules/@aashutoshrathi/word-wrap": { "version": "1.2.6", "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/@babel/code-frame": { "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", "dev": true, "license": "MIT", "dependencies": { "@babel/highlight": "^7.24.7", "picocolors": "^1.0.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", "dev": true, "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-validator-identifier": "^7.24.7", "chalk": "^2.4.2", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@cspotcode/source-map-support": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", "dev": true, "dependencies": { "@jridgewell/trace-mapping": "0.3.9" }, "engines": { "node": ">=12" } }, "node_modules/@csstools/css-parser-algorithms": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.4.tgz", "integrity": "sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/csstools" }, { "type": "opencollective", "url": "https://opencollective.com/csstools" } ], "license": "MIT", "engines": { "node": ">=18" }, "peerDependencies": { "@csstools/css-tokenizer": "^3.0.3" } }, "node_modules/@csstools/css-tokenizer": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.3.tgz", "integrity": "sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/csstools" }, { "type": "opencollective", "url": "https://opencollective.com/csstools" } ], "license": "MIT", "engines": { "node": ">=18" } }, "node_modules/@csstools/media-query-list-parser": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-3.0.1.tgz", "integrity": "sha512-HNo8gGD02kHmcbX6PvCoUuOQvn4szyB9ca63vZHKX5A81QytgDG4oxG4IaEfHTlEZSZ6MjPEMWIVU+zF2PZcgw==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/csstools" }, { "type": "opencollective", "url": "https://opencollective.com/csstools" } ], "license": "MIT", "engines": { "node": ">=18" }, "peerDependencies": { "@csstools/css-parser-algorithms": "^3.0.1", "@csstools/css-tokenizer": "^3.0.1" } }, "node_modules/@dual-bundle/import-meta-resolve": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/@dual-bundle/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz", "integrity": "sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg==", "dev": true, "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" } }, "node_modules/@es-joy/jsdoccomment": { "version": "0.49.0", "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.49.0.tgz", "integrity": "sha512-xjZTSFgECpb9Ohuk5yMX5RhUEbfeQcuOp8IF60e+wyzWEF0M5xeSgqsfLtvPEX8BIyOX9saZqzuGPmZ8oWc+5Q==", "dev": true, "license": "MIT", "dependencies": { "comment-parser": "1.4.1", "esquery": "^1.6.0", "jsdoc-type-pratt-parser": "~4.1.0" }, "engines": { "node": ">=16" } }, "node_modules/@esbuild/aix-ppc64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.24.2.tgz", "integrity": "sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==", "cpu": [ "ppc64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "aix" ], "engines": { "node": ">=18" } }, "node_modules/@esbuild/android-arm": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.24.2.tgz", "integrity": "sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==", "cpu": [ "arm" ], "dev": true, "license": "MIT", "optional": true, "os": [ "android" ], "engines": { "node": ">=18" } }, "node_modules/@esbuild/android-arm64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.24.2.tgz", "integrity": "sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==", "cpu": [ "arm64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "android" ], "engines": { "node": ">=18" } }, "node_modules/@esbuild/android-x64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.24.2.tgz", "integrity": "sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==", "cpu": [ "x64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "android" ], "engines": { "node": ">=18" } }, "node_modules/@esbuild/darwin-arm64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.24.2.tgz", "integrity": "sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==", "cpu": [ "arm64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "darwin" ], "engines": { "node": ">=18" } }, "node_modules/@esbuild/darwin-x64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.24.2.tgz", "integrity": "sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==", "cpu": [ "x64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "darwin" ], "engines": { "node": ">=18" } }, "node_modules/@esbuild/freebsd-arm64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.2.tgz", "integrity": "sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==", "cpu": [ "arm64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "freebsd" ], "engines": { "node": ">=18" } }, "node_modules/@esbuild/freebsd-x64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.24.2.tgz", "integrity": "sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==", "cpu": [ "x64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "freebsd" ], "engines": { "node": ">=18" } }, "node_modules/@esbuild/linux-arm": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.24.2.tgz", "integrity": "sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==", "cpu": [ "arm" ], "dev": true, "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { "node": ">=18" } }, "node_modules/@esbuild/linux-arm64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.24.2.tgz", "integrity": "sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==", "cpu": [ "arm64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { "node": ">=18" } }, "node_modules/@esbuild/linux-ia32": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.24.2.tgz", "integrity": "sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==", "cpu": [ "ia32" ], "dev": true, "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { "node": ">=18" } }, "node_modules/@esbuild/linux-loong64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.24.2.tgz", "integrity": "sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==", "cpu": [ "loong64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { "node": ">=18" } }, "node_modules/@esbuild/linux-mips64el": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.24.2.tgz", "integrity": "sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==", "cpu": [ "mips64el" ], "dev": true, "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { "node": ">=18" } }, "node_modules/@esbuild/linux-ppc64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.24.2.tgz", "integrity": "sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==", "cpu": [ "ppc64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { "node": ">=18" } }, "node_modules/@esbuild/linux-riscv64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.24.2.tgz", "integrity": "sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==", "cpu": [ "riscv64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { "node": ">=18" } }, "node_modules/@esbuild/linux-s390x": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.24.2.tgz", "integrity": "sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==", "cpu": [ "s390x" ], "dev": true, "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { "node": ">=18" } }, "node_modules/@esbuild/linux-x64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.24.2.tgz", "integrity": "sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==", "cpu": [ "x64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { "node": ">=18" } }, "node_modules/@esbuild/netbsd-arm64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.24.2.tgz", "integrity": "sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==", "cpu": [ "arm64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "netbsd" ], "engines": { "node": ">=18" } }, "node_modules/@esbuild/netbsd-x64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.24.2.tgz", "integrity": "sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==", "cpu": [ "x64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "netbsd" ], "engines": { "node": ">=18" } }, "node_modules/@esbuild/openbsd-arm64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.2.tgz", "integrity": "sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==", "cpu": [ "arm64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "openbsd" ], "engines": { "node": ">=18" } }, "node_modules/@esbuild/openbsd-x64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.24.2.tgz", "integrity": "sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==", "cpu": [ "x64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "openbsd" ], "engines": { "node": ">=18" } }, "node_modules/@esbuild/sunos-x64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.24.2.tgz", "integrity": "sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==", "cpu": [ "x64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "sunos" ], "engines": { "node": ">=18" } }, "node_modules/@esbuild/win32-arm64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.24.2.tgz", "integrity": "sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==", "cpu": [ "arm64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "win32" ], "engines": { "node": ">=18" } }, "node_modules/@esbuild/win32-ia32": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.24.2.tgz", "integrity": "sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==", "cpu": [ "ia32" ], "dev": true, "license": "MIT", "optional": true, "os": [ "win32" ], "engines": { "node": ">=18" } }, "node_modules/@esbuild/win32-x64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.24.2.tgz", "integrity": "sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==", "cpu": [ "x64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "win32" ], "engines": { "node": ">=18" } }, "node_modules/@eslint-community/eslint-utils": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", "dev": true, "license": "MIT", "dependencies": { "eslint-visitor-keys": "^3.3.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, "node_modules/@eslint-community/regexpp": { "version": "4.11.0", "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.0.tgz", "integrity": "sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==", "dev": true, "license": "MIT", "engines": { "node": "^12.0.0 || ^14.0.0 || >=16.0.0" } }, "node_modules/@eslint/eslintrc": { "version": "2.1.4", "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", "dev": true, "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", "espree": "^9.6.0", "globals": "^13.19.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", "minimatch": "^3.1.2", "strip-json-comments": "^3.1.1" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/@eslint/js": { "version": "8.57.0", "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", "dev": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, "node_modules/@fortawesome/fontawesome-free": { "version": "6.7.2", "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-free/-/fontawesome-free-6.7.2.tgz", "integrity": "sha512-JUOtgFW6k9u4Y+xeIaEiLr3+cjoUPiAuLXoyKOJSia6Duzb7pq+A76P9ZdPDoAoxHdHzq6gE9/jKBGXlZT8FbA==", "dev": true, "license": "(CC-BY-4.0 AND OFL-1.1 AND MIT)", "engines": { "node": ">=6" } }, "node_modules/@humanwhocodes/config-array": { "version": "0.11.14", "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", "dev": true, "dependencies": { "@humanwhocodes/object-schema": "^2.0.2", "debug": "^4.3.1", "minimatch": "^3.0.5" }, "engines": { "node": ">=10.10.0" } }, "node_modules/@humanwhocodes/module-importer": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", "dev": true, "engines": { "node": ">=12.22" }, "funding": { "type": "github", "url": "https://github.com/sponsors/nzakas" } }, "node_modules/@humanwhocodes/object-schema": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", "dev": true }, "node_modules/@isaacs/cliui": { "version": "8.0.2", "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", "dev": true, "dependencies": { "string-width": "^5.1.2", "string-width-cjs": "npm:string-width@^4.2.0", "strip-ansi": "^7.0.1", "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", "wrap-ansi": "^8.1.0", "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" }, "engines": { "node": ">=12" } }, "node_modules/@isaacs/cliui/node_modules/ansi-regex": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", "dev": true, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, "node_modules/@isaacs/cliui/node_modules/emoji-regex": { "version": "9.2.2", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", "dev": true }, "node_modules/@isaacs/cliui/node_modules/string-width": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", "dev": true, "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", "strip-ansi": "^7.0.1" }, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@isaacs/cliui/node_modules/strip-ansi": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", "dev": true, "dependencies": { "ansi-regex": "^6.0.1" }, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, "node_modules/@jridgewell/gen-mapping": { "version": "0.3.5", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", "dev": true, "license": "MIT", "dependencies": { "@jridgewell/set-array": "^1.2.1", "@jridgewell/sourcemap-codec": "^1.4.10", "@jridgewell/trace-mapping": "^0.3.24" }, "engines": { "node": ">=6.0.0" } }, "node_modules/@jridgewell/gen-mapping/node_modules/@jridgewell/trace-mapping": { "version": "0.3.25", "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", "dev": true, "license": "MIT", "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" } }, "node_modules/@jridgewell/resolve-uri": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", "dev": true, "license": "MIT", "engines": { "node": ">=6.0.0" } }, "node_modules/@jridgewell/set-array": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", "dev": true, "license": "MIT", "engines": { "node": ">=6.0.0" } }, "node_modules/@jridgewell/source-map": { "version": "0.3.6", "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", "dev": true, "license": "MIT", "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25" } }, "node_modules/@jridgewell/source-map/node_modules/@jridgewell/trace-mapping": { "version": "0.3.25", "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", "dev": true, "license": "MIT", "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" } }, "node_modules/@jridgewell/sourcemap-codec": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", "dev": true, "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { "version": "0.3.9", "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", "dev": true, "dependencies": { "@jridgewell/resolve-uri": "^3.0.3", "@jridgewell/sourcemap-codec": "^1.4.10" } }, "node_modules/@mdi/svg": { "version": "7.4.47", "resolved": "https://registry.npmjs.org/@mdi/svg/-/svg-7.4.47.tgz", "integrity": "sha512-WQ2gDll12T9WD34fdRFgQVgO8bag3gavrAgJ0frN4phlwdJARpE6gO1YvLEMJR0KKgoc+/Ea/A0Pp11I00xBvw==", "dev": true }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, "dependencies": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" }, "engines": { "node": ">= 8" } }, "node_modules/@nodelib/fs.stat": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true, "engines": { "node": ">= 8" } }, "node_modules/@nodelib/fs.walk": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, "dependencies": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" }, "engines": { "node": ">= 8" } }, "node_modules/@parcel/watcher": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.4.1.tgz", "integrity": "sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==", "dev": true, "license": "MIT", "optional": true, "dependencies": { "detect-libc": "^1.0.3", "is-glob": "^4.0.3", "micromatch": "^4.0.5", "node-addon-api": "^7.0.0" }, "engines": { "node": ">= 10.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/parcel" }, "optionalDependencies": { "@parcel/watcher-android-arm64": "2.4.1", "@parcel/watcher-darwin-arm64": "2.4.1", "@parcel/watcher-darwin-x64": "2.4.1", "@parcel/watcher-freebsd-x64": "2.4.1", "@parcel/watcher-linux-arm-glibc": "2.4.1", "@parcel/watcher-linux-arm64-glibc": "2.4.1", "@parcel/watcher-linux-arm64-musl": "2.4.1", "@parcel/watcher-linux-x64-glibc": "2.4.1", "@parcel/watcher-linux-x64-musl": "2.4.1", "@parcel/watcher-win32-arm64": "2.4.1", "@parcel/watcher-win32-ia32": "2.4.1", "@parcel/watcher-win32-x64": "2.4.1" } }, "node_modules/@parcel/watcher-android-arm64": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.4.1.tgz", "integrity": "sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==", "cpu": [ "arm64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "android" ], "engines": { "node": ">= 10.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/parcel" } }, "node_modules/@parcel/watcher-darwin-arm64": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.4.1.tgz", "integrity": "sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==", "cpu": [ "arm64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "darwin" ], "engines": { "node": ">= 10.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/parcel" } }, "node_modules/@parcel/watcher-darwin-x64": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.4.1.tgz", "integrity": "sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==", "cpu": [ "x64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "darwin" ], "engines": { "node": ">= 10.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/parcel" } }, "node_modules/@parcel/watcher-freebsd-x64": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.4.1.tgz", "integrity": "sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==", "cpu": [ "x64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "freebsd" ], "engines": { "node": ">= 10.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/parcel" } }, "node_modules/@parcel/watcher-linux-arm-glibc": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.4.1.tgz", "integrity": "sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==", "cpu": [ "arm" ], "dev": true, "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { "node": ">= 10.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/parcel" } }, "node_modules/@parcel/watcher-linux-arm64-glibc": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.4.1.tgz", "integrity": "sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==", "cpu": [ "arm64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { "node": ">= 10.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/parcel" } }, "node_modules/@parcel/watcher-linux-arm64-musl": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.4.1.tgz", "integrity": "sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==", "cpu": [ "arm64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { "node": ">= 10.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/parcel" } }, "node_modules/@parcel/watcher-linux-x64-glibc": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.4.1.tgz", "integrity": "sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==", "cpu": [ "x64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { "node": ">= 10.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/parcel" } }, "node_modules/@parcel/watcher-linux-x64-musl": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.4.1.tgz", "integrity": "sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==", "cpu": [ "x64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { "node": ">= 10.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/parcel" } }, "node_modules/@parcel/watcher-win32-arm64": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.4.1.tgz", "integrity": "sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==", "cpu": [ "arm64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "win32" ], "engines": { "node": ">= 10.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/parcel" } }, "node_modules/@parcel/watcher-win32-ia32": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.4.1.tgz", "integrity": "sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==", "cpu": [ "ia32" ], "dev": true, "license": "MIT", "optional": true, "os": [ "win32" ], "engines": { "node": ">= 10.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/parcel" } }, "node_modules/@parcel/watcher-win32-x64": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.4.1.tgz", "integrity": "sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==", "cpu": [ "x64" ], "dev": true, "license": "MIT", "optional": true, "os": [ "win32" ], "engines": { "node": ">= 10.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/parcel" } }, "node_modules/@pkgjs/parseargs": { "version": "0.11.0", "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", "dev": true, "optional": true, "engines": { "node": ">=14" } }, "node_modules/@pkgr/core": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz", "integrity": "sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==", "dev": true, "license": "MIT", "engines": { "node": "^12.20.0 || ^14.18.0 || >=16.0.0" }, "funding": { "url": "https://opencollective.com/unts" } }, "node_modules/@primer/octicons": { "version": "19.14.0", "resolved": "https://registry.npmjs.org/@primer/octicons/-/octicons-19.14.0.tgz", "integrity": "sha512-9Ovw/xcUFHC/zbsNhr/Hkp1+m9XnNeQvnGHDHrI5vhlf6PRZVzSsdMnesV2xCzQh7jXP3EVRcaeXsUGlsZrfcA==", "dev": true, "license": "MIT", "dependencies": { "object-assign": "^4.1.1" } }, "node_modules/@rtsao/scc": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz", "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==", "dev": true, "license": "MIT" }, "node_modules/@stylistic/eslint-plugin-ts": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/@stylistic/eslint-plugin-ts/-/eslint-plugin-ts-3.0.1.tgz", "integrity": "sha512-fBPKvYhp3KPlww9lZVe2htMwQZ/uh1v1Een6G2jnRpHWoQZfZ/qIhhWge7ovBtnK0z9QBa/DhBaBqcm7ZcLYKw==", "dev": true, "license": "MIT", "dependencies": { "@typescript-eslint/utils": "^8.13.0", "eslint-visitor-keys": "^4.2.0", "espree": "^10.3.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "peerDependencies": { "eslint": ">=8.40.0" } }, "node_modules/@stylistic/eslint-plugin-ts/node_modules/eslint-visitor-keys": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", "dev": true, "license": "Apache-2.0", "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/@stylistic/eslint-plugin-ts/node_modules/espree": { "version": "10.3.0", "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", "dev": true, "license": "BSD-2-Clause", "dependencies": { "acorn": "^8.14.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^4.2.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/@stylistic/stylelint-config": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@stylistic/stylelint-config/-/stylelint-config-2.0.0.tgz", "integrity": "sha512-8J4YAxggy2Nzkb8KJIOLbtMXTPZ5gpKVmyhiiuKEUgCl9XFND5lM0e/ZZBMGEYZ68h5qcsS/jgg1wh235erRAw==", "dev": true, "license": "MIT", "dependencies": { "@stylistic/stylelint-plugin": "^3.0.0" }, "engines": { "node": "^18.12 || >=20.9" }, "peerDependencies": { "stylelint": "^16.8.0" } }, "node_modules/@stylistic/stylelint-plugin": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/@stylistic/stylelint-plugin/-/stylelint-plugin-3.1.1.tgz", "integrity": "sha512-XagAHHIa528EvyGybv8EEYGK5zrVW74cHpsjhtovVATbhDRuJYfE+X4HCaAieW9lCkwbX6L+X0I4CiUG3w/hFw==", "dev": true, "license": "MIT", "dependencies": { "@csstools/css-parser-algorithms": "^3.0.1", "@csstools/css-tokenizer": "^3.0.1", "@csstools/media-query-list-parser": "^3.0.1", "is-plain-object": "^5.0.0", "postcss-selector-parser": "^6.1.2", "postcss-value-parser": "^4.2.0", "style-search": "^0.1.0", "stylelint": "^16.8.2" }, "engines": { "node": "^18.12 || >=20.9" }, "peerDependencies": { "stylelint": "^16.8.0" } }, "node_modules/@trysound/sax": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", "dev": true, "engines": { "node": ">=10.13.0" } }, "node_modules/@tsconfig/node10": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.8.tgz", "integrity": "sha512-6XFfSQmMgq0CFLY1MslA/CPUfhIL919M1rMsa5lP2P097N2Wd1sSX0tx1u4olM16fLNhtHZpRhedZJphNJqmZg==", "dev": true }, "node_modules/@tsconfig/node12": { "version": "1.0.9", "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.9.tgz", "integrity": "sha512-/yBMcem+fbvhSREH+s14YJi18sp7J9jpuhYByADT2rypfajMZZN4WQ6zBGgBKp53NKmqI36wFYDb3yaMPurITw==", "dev": true }, "node_modules/@tsconfig/node14": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.1.tgz", "integrity": "sha512-509r2+yARFfHHE7T6Puu2jjkoycftovhXRqW328PDXTVGKihlb1P8Z9mMZH04ebyajfRY7dedfGynlrFHJUQCg==", "dev": true }, "node_modules/@tsconfig/node16": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.2.tgz", "integrity": "sha512-eZxlbI8GZscaGS7kkc/trHTT5xgrjH3/1n2JDwusC9iahPKWMRvRjJSAN5mCXviuTGQ/lHnhvv8Q1YTpnfz9gA==", "dev": true }, "node_modules/@types/css-modules": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/@types/css-modules/-/css-modules-1.0.5.tgz", "integrity": "sha512-oeKafs/df9lwOvtfiXVliZsocFVOexK9PZtLQWuPeuVCFR7jwiqlg60lu80JTe5NFNtH3tnV6Fs/ySR8BUPHAw==", "dev": true }, "node_modules/@types/escape-html": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/@types/escape-html/-/escape-html-1.0.4.tgz", "integrity": "sha512-qZ72SFTgUAZ5a7Tj6kf2SHLetiH5S6f8G5frB2SPQ3EyF02kxdyBFf4Tz4banE3xCgGnKgWLt//a6VuYHKYJTg==", "dev": true }, "node_modules/@types/fuzzaldrin-plus": { "version": "0.6.5", "resolved": "https://registry.npmjs.org/@types/fuzzaldrin-plus/-/fuzzaldrin-plus-0.6.5.tgz", "integrity": "sha512-fUFxKXq/Qu8WVgPtSkQMK7jF5odTnBaIthuhKQb6PivpTaTTUlOTMS3WsT+UpWVZcYQH5skjHuFRTNmrUGSDfg==", "dev": true }, "node_modules/@types/html-minifier-terser": { "version": "7.0.2", "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-7.0.2.tgz", "integrity": "sha512-mm2HqV22l8lFQh4r2oSsOEVea+m0qqxEmwpc9kC1p/XzmjLWrReR9D/GRs8Pex2NX/imyEH9c5IU/7tMBQCHOA==", "dev": true, "license": "MIT" }, "node_modules/@types/json5": { "version": "0.0.29", "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", "dev": true }, "node_modules/@types/lunr": { "version": "2.3.7", "resolved": "https://registry.npmjs.org/@types/lunr/-/lunr-2.3.7.tgz", "integrity": "sha512-Tb/kUm38e8gmjahQzdCKhbdsvQ9/ppzHFfsJ0dMs3ckqQsRj+P5IkSAwFTBrBxdyr3E/LoMUUrZngjDYAjiE3A==", "dev": true }, "node_modules/@types/node": { "version": "22.12.0", "resolved": "https://registry.npmjs.org/@types/node/-/node-22.12.0.tgz", "integrity": "sha512-Fll2FZ1riMjNmlmJOdAyY5pUbkftXslB5DgEzlIuNaiWhXd00FhWxVC/r4yV/4wBb9JfImTu+jiSvXTkJ7F/gA==", "dev": true, "license": "MIT", "dependencies": { "undici-types": "~6.20.0" } }, "node_modules/@types/resize-observer-browser": { "version": "0.1.11", "resolved": "https://registry.npmjs.org/@types/resize-observer-browser/-/resize-observer-browser-0.1.11.tgz", "integrity": "sha512-cNw5iH8JkMkb3QkCoe7DaZiawbDQEUX8t7iuQaRTyLOyQCR2h+ibBD4GJt7p5yhUHrlOeL7ZtbxNHeipqNsBzQ==", "dev": true }, "node_modules/@types/sass": { "version": "1.45.0", "resolved": "https://registry.npmjs.org/@types/sass/-/sass-1.45.0.tgz", "integrity": "sha512-jn7qwGFmJHwUSphV8zZneO3GmtlgLsmhs/LQyVvQbIIa+fzGMUiHI4HXJZL3FT8MJmgXWbLGiVVY7ElvHq6vDA==", "deprecated": "This is a stub types definition. sass provides its own type definitions, so you do not need this installed.", "dev": true, "dependencies": { "sass": "*" } }, "node_modules/@typescript-eslint/eslint-plugin": { "version": "8.22.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.22.0.tgz", "integrity": "sha512-4Uta6REnz/xEJMvwf72wdUnC3rr4jAQf5jnTkeRQ9b6soxLxhDEbS/pfMPoJLDfFPNVRdryqWUIV/2GZzDJFZw==", "dev": true, "license": "MIT", "dependencies": { "@eslint-community/regexpp": "^4.10.0", "@typescript-eslint/scope-manager": "8.22.0", "@typescript-eslint/type-utils": "8.22.0", "@typescript-eslint/utils": "8.22.0", "@typescript-eslint/visitor-keys": "8.22.0", "graphemer": "^1.4.0", "ignore": "^5.3.1", "natural-compare": "^1.4.0", "ts-api-utils": "^2.0.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.8.0" } }, "node_modules/@typescript-eslint/parser": { "version": "8.22.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.22.0.tgz", "integrity": "sha512-MqtmbdNEdoNxTPzpWiWnqNac54h8JDAmkWtJExBVVnSrSmi9z+sZUt0LfKqk9rjqmKOIeRhO4fHHJ1nQIjduIQ==", "dev": true, "license": "MIT", "dependencies": { "@typescript-eslint/scope-manager": "8.22.0", "@typescript-eslint/types": "8.22.0", "@typescript-eslint/typescript-estree": "8.22.0", "@typescript-eslint/visitor-keys": "8.22.0", "debug": "^4.3.4" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.8.0" } }, "node_modules/@typescript-eslint/scope-manager": { "version": "8.22.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.22.0.tgz", "integrity": "sha512-/lwVV0UYgkj7wPSw0o8URy6YI64QmcOdwHuGuxWIYznO6d45ER0wXUbksr9pYdViAofpUCNJx/tAzNukgvaaiQ==", "dev": true, "license": "MIT", "dependencies": { "@typescript-eslint/types": "8.22.0", "@typescript-eslint/visitor-keys": "8.22.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" } }, "node_modules/@typescript-eslint/type-utils": { "version": "8.22.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.22.0.tgz", "integrity": "sha512-NzE3aB62fDEaGjaAYZE4LH7I1MUwHooQ98Byq0G0y3kkibPJQIXVUspzlFOmOfHhiDLwKzMlWxaNv+/qcZurJA==", "dev": true, "license": "MIT", "dependencies": { "@typescript-eslint/typescript-estree": "8.22.0", "@typescript-eslint/utils": "8.22.0", "debug": "^4.3.4", "ts-api-utils": "^2.0.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.8.0" } }, "node_modules/@typescript-eslint/types": { "version": "8.22.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.22.0.tgz", "integrity": "sha512-0S4M4baNzp612zwpD4YOieP3VowOARgK2EkN/GBn95hpyF8E2fbMT55sRHWBq+Huaqk3b3XK+rxxlM8sPgGM6A==", "dev": true, "license": "MIT", "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" } }, "node_modules/@typescript-eslint/typescript-estree": { "version": "8.22.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.22.0.tgz", "integrity": "sha512-SJX99NAS2ugGOzpyhMza/tX+zDwjvwAtQFLsBo3GQxiGcvaKlqGBkmZ+Y1IdiSi9h4Q0Lr5ey+Cp9CGWNY/F/w==", "dev": true, "license": "MIT", "dependencies": { "@typescript-eslint/types": "8.22.0", "@typescript-eslint/visitor-keys": "8.22.0", "debug": "^4.3.4", "fast-glob": "^3.3.2", "is-glob": "^4.0.3", "minimatch": "^9.0.4", "semver": "^7.6.0", "ts-api-utils": "^2.0.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { "typescript": ">=4.8.4 <5.8.0" } }, "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, "license": "MIT", "dependencies": { "balanced-match": "^1.0.0" } }, "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { "version": "9.0.5", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "dev": true, "license": "ISC", "dependencies": { "brace-expansion": "^2.0.1" }, "engines": { "node": ">=16 || 14 >=14.17" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/@typescript-eslint/utils": { "version": "8.22.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.22.0.tgz", "integrity": "sha512-T8oc1MbF8L+Bk2msAvCUzjxVB2Z2f+vXYfcucE2wOmYs7ZUwco5Ep0fYZw8quNwOiw9K8GYVL+Kgc2pETNTLOg==", "dev": true, "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.4.0", "@typescript-eslint/scope-manager": "8.22.0", "@typescript-eslint/types": "8.22.0", "@typescript-eslint/typescript-estree": "8.22.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.8.0" } }, "node_modules/@typescript-eslint/visitor-keys": { "version": "8.22.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.22.0.tgz", "integrity": "sha512-AWpYAXnUgvLNabGTy3uBylkgZoosva/miNd1I8Bz3SjotmQPbVqhO4Cczo8AsZ44XVErEBPr/CRSgaj8sG7g0w==", "dev": true, "license": "MIT", "dependencies": { "@typescript-eslint/types": "8.22.0", "eslint-visitor-keys": "^4.2.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" } }, "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", "dev": true, "license": "Apache-2.0", "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/@ungap/structured-clone": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", "dev": true }, "node_modules/abort-controller": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", "dev": true, "dependencies": { "event-target-shim": "^5.0.0" }, "engines": { "node": ">=6.5" } }, "node_modules/acorn": { "version": "8.14.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", "dev": true, "license": "MIT", "bin": { "acorn": "bin/acorn" }, "engines": { "node": ">=0.4.0" } }, "node_modules/acorn-jsx": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, "node_modules/acorn-walk": { "version": "8.2.0", "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", "dev": true, "engines": { "node": ">=0.4.0" } }, "node_modules/ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" }, "funding": { "type": "github", "url": "https://github.com/sponsors/epoberezkin" } }, "node_modules/ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/ansi-styles": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "dependencies": { "color-convert": "^1.9.0" }, "engines": { "node": ">=4" } }, "node_modules/are-docs-informative": { "version": "0.0.2", "resolved": "https://registry.npmjs.org/are-docs-informative/-/are-docs-informative-0.0.2.tgz", "integrity": "sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==", "dev": true, "engines": { "node": ">=14" } }, "node_modules/arg": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", "dev": true }, "node_modules/argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, "node_modules/array-buffer-byte-length": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.5", "is-array-buffer": "^3.0.4" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/array-includes": { "version": "3.1.8", "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-abstract": "^1.23.2", "es-object-atoms": "^1.0.0", "get-intrinsic": "^1.2.4", "is-string": "^1.0.7" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/array-union": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/array.prototype.findlastindex": { "version": "1.2.5", "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz", "integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-abstract": "^1.23.2", "es-errors": "^1.3.0", "es-object-atoms": "^1.0.0", "es-shim-unscopables": "^1.0.2" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/array.prototype.flat": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", "dev": true, "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.2.0", "es-abstract": "^1.22.1", "es-shim-unscopables": "^1.0.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/array.prototype.flatmap": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", "dev": true, "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.2.0", "es-abstract": "^1.22.1", "es-shim-unscopables": "^1.0.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/arraybuffer.prototype.slice": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", "dev": true, "license": "MIT", "dependencies": { "array-buffer-byte-length": "^1.0.1", "call-bind": "^1.0.5", "define-properties": "^1.2.1", "es-abstract": "^1.22.3", "es-errors": "^1.2.1", "get-intrinsic": "^1.2.3", "is-array-buffer": "^3.0.4", "is-shared-array-buffer": "^1.0.2" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/astral-regex": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", "dev": true }, "node_modules/autoprefixer": { "version": "10.4.20", "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz", "integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==", "dev": true, "funding": [ { "type": "opencollective", "url": "https://opencollective.com/postcss/" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/autoprefixer" }, { "type": "github", "url": "https://github.com/sponsors/ai" } ], "license": "MIT", "dependencies": { "browserslist": "^4.23.3", "caniuse-lite": "^1.0.30001646", "fraction.js": "^4.3.7", "normalize-range": "^0.1.2", "picocolors": "^1.0.1", "postcss-value-parser": "^4.2.0" }, "bin": { "autoprefixer": "bin/autoprefixer" }, "engines": { "node": "^10 || ^12 || >=14" }, "peerDependencies": { "postcss": "^8.1.0" } }, "node_modules/available-typed-arrays": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", "dev": true, "license": "MIT", "dependencies": { "possible-typed-array-names": "^1.0.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/balanced-match": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", "dev": true }, "node_modules/boolbase": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", "dev": true }, "node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "node_modules/braces": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "dev": true, "dependencies": { "fill-range": "^7.1.1" }, "engines": { "node": ">=8" } }, "node_modules/browserslist": { "version": "4.23.3", "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.3.tgz", "integrity": "sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==", "dev": true, "funding": [ { "type": "opencollective", "url": "https://opencollective.com/browserslist" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/browserslist" }, { "type": "github", "url": "https://github.com/sponsors/ai" } ], "license": "MIT", "dependencies": { "caniuse-lite": "^1.0.30001646", "electron-to-chromium": "^1.5.4", "node-releases": "^2.0.18", "update-browserslist-db": "^1.1.0" }, "bin": { "browserslist": "cli.js" }, "engines": { "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, "node_modules/buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true, "license": "MIT" }, "node_modules/call-bind": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", "dev": true, "license": "MIT", "dependencies": { "es-define-property": "^1.0.0", "es-errors": "^1.3.0", "function-bind": "^1.1.2", "get-intrinsic": "^1.2.4", "set-function-length": "^1.2.1" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/caniuse-api": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", "dev": true, "dependencies": { "browserslist": "^4.0.0", "caniuse-lite": "^1.0.0", "lodash.memoize": "^4.1.2", "lodash.uniq": "^4.5.0" } }, "node_modules/caniuse-lite": { "version": "1.0.30001649", "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001649.tgz", "integrity": "sha512-fJegqZZ0ZX8HOWr6rcafGr72+xcgJKI9oWfDW5DrD7ExUtgZC7a7R7ZYmZqplh7XDocFdGeIFn7roAxhOeYrPQ==", "dev": true, "funding": [ { "type": "opencollective", "url": "https://opencollective.com/browserslist" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/caniuse-lite" }, { "type": "github", "url": "https://github.com/sponsors/ai" } ], "license": "CC-BY-4.0" }, "node_modules/chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" }, "engines": { "node": ">=4" } }, "node_modules/chalk/node_modules/supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, "dependencies": { "has-flag": "^3.0.0" }, "engines": { "node": ">=4" } }, "node_modules/chokidar": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", "dev": true, "license": "MIT", "dependencies": { "readdirp": "^4.0.1" }, "engines": { "node": ">= 14.16.0" }, "funding": { "url": "https://paulmillr.com/funding/" } }, "node_modules/cli-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", "dev": true, "dependencies": { "restore-cursor": "^3.1.0" }, "engines": { "node": ">=8" } }, "node_modules/cli-spinners": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.5.0.tgz", "integrity": "sha512-PC+AmIuK04E6aeSs/pUccSujsTzBhu4HzC2dL+CfJB/Jcc2qTRbEwZQDfIUpt2Xl8BodYBEq8w4fc0kU2I9DjQ==", "dev": true, "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/clipboard": { "version": "2.0.11", "resolved": "https://registry.npmjs.org/clipboard/-/clipboard-2.0.11.tgz", "integrity": "sha512-C+0bbOqkezLIsmWSvlsXS0Q0bmkugu7jcfMIACB+RDEntIzQIkdr148we28AfSloQLRdZlYL/QYyrq05j/3Faw==", "dependencies": { "good-listener": "^1.2.2", "select": "^1.1.2", "tiny-emitter": "^2.0.0" } }, "node_modules/clone": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", "dev": true, "engines": { "node": ">=0.8" } }, "node_modules/color-convert": { "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, "dependencies": { "color-name": "1.1.3" } }, "node_modules/color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", "dev": true }, "node_modules/colord": { "version": "2.9.3", "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", "dev": true }, "node_modules/combined-stream": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "dev": true, "dependencies": { "delayed-stream": "~1.0.0" }, "engines": { "node": ">= 0.8" } }, "node_modules/commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "dev": true }, "node_modules/comment-parser": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.4.1.tgz", "integrity": "sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==", "dev": true, "license": "MIT", "engines": { "node": ">= 12.0.0" } }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", "dev": true }, "node_modules/cosmiconfig": { "version": "9.0.0", "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", "dev": true, "license": "MIT", "dependencies": { "env-paths": "^2.2.1", "import-fresh": "^3.3.0", "js-yaml": "^4.1.0", "parse-json": "^5.2.0" }, "engines": { "node": ">=14" }, "funding": { "url": "https://github.com/sponsors/d-fischer" }, "peerDependencies": { "typescript": ">=4.9.5" }, "peerDependenciesMeta": { "typescript": { "optional": true } } }, "node_modules/cosmiconfig/node_modules/parse-json": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, "license": "MIT", "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/create-require": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", "dev": true }, "node_modules/cross-spawn": { "version": "7.0.6", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, "license": "MIT", "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" }, "engines": { "node": ">= 8" } }, "node_modules/css-declaration-sorter": { "version": "6.1.4", "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.1.4.tgz", "integrity": "sha512-lpfkqS0fctcmZotJGhnxkIyJWvBXgpyi2wsFd4J8VB7wzyrT6Ch/3Q+FMNJpjK4gu1+GN5khOnpU2ZVKrLbhCw==", "dev": true, "dependencies": { "timsort": "^0.3.0" }, "engines": { "node": ">= 10" }, "peerDependencies": { "postcss": "^8.0.9" } }, "node_modules/css-functions-list": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.2.3.tgz", "integrity": "sha512-IQOkD3hbR5KrN93MtcYuad6YPuTSUhntLHDuLEbFWE+ff2/XSZNdZG+LcbbIW5AXKg/WFIfYItIzVoHngHXZzA==", "dev": true, "license": "MIT", "engines": { "node": ">=12 || >=16" } }, "node_modules/css-select": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", "dev": true, "dependencies": { "boolbase": "^1.0.0", "css-what": "^6.1.0", "domhandler": "^5.0.2", "domutils": "^3.0.1", "nth-check": "^2.0.1" }, "funding": { "url": "https://github.com/sponsors/fb55" } }, "node_modules/css-select/node_modules/dom-serializer": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", "dev": true, "dependencies": { "domelementtype": "^2.3.0", "domhandler": "^5.0.2", "entities": "^4.2.0" }, "funding": { "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, "node_modules/css-select/node_modules/domelementtype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/fb55" } ] }, "node_modules/css-select/node_modules/domhandler": { "version": "5.0.3", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", "dev": true, "dependencies": { "domelementtype": "^2.3.0" }, "engines": { "node": ">= 4" }, "funding": { "url": "https://github.com/fb55/domhandler?sponsor=1" } }, "node_modules/css-select/node_modules/domutils": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.0.1.tgz", "integrity": "sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==", "dev": true, "dependencies": { "dom-serializer": "^2.0.0", "domelementtype": "^2.3.0", "domhandler": "^5.0.1" }, "funding": { "url": "https://github.com/fb55/domutils?sponsor=1" } }, "node_modules/css-select/node_modules/entities": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz", "integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==", "dev": true, "engines": { "node": ">=0.12" }, "funding": { "url": "https://github.com/fb55/entities?sponsor=1" } }, "node_modules/css-tree": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", "dev": true, "dependencies": { "mdn-data": "2.0.28", "source-map-js": "^1.0.1" }, "engines": { "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", "npm": ">=7.0.0" } }, "node_modules/css-what": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", "dev": true, "engines": { "node": ">= 6" }, "funding": { "url": "https://github.com/sponsors/fb55" } }, "node_modules/cssesc": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", "dev": true, "bin": { "cssesc": "bin/cssesc" }, "engines": { "node": ">=4" } }, "node_modules/cssnano": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.0.tgz", "integrity": "sha512-wWxave1wMlThGg4ueK98jFKaNqXnQd1nVZpSkQ9XvR+YymlzP1ofWqES1JkHtI250LksP9z5JH+oDcrKDJezAg==", "dev": true, "dependencies": { "cssnano-preset-default": "^5.2.0", "lilconfig": "^2.0.3", "yaml": "^1.10.2" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/cssnano" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/cssnano-preset-default": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.0.tgz", "integrity": "sha512-3N5Vcptj2pqVKpHVqH6ezOJvqikR2PdLTbTrsrhF61FbLRQuujAqZ2sKN5rvcMsb7hFjrNnjZT8CGEkxoN/Pwg==", "dev": true, "dependencies": { "css-declaration-sorter": "^6.0.3", "cssnano-utils": "^3.1.0", "postcss-calc": "^8.2.3", "postcss-colormin": "^5.3.0", "postcss-convert-values": "^5.1.0", "postcss-discard-comments": "^5.1.0", "postcss-discard-duplicates": "^5.1.0", "postcss-discard-empty": "^5.1.0", "postcss-discard-overridden": "^5.1.0", "postcss-merge-longhand": "^5.1.0", "postcss-merge-rules": "^5.1.0", "postcss-minify-font-values": "^5.1.0", "postcss-minify-gradients": "^5.1.0", "postcss-minify-params": "^5.1.0", "postcss-minify-selectors": "^5.2.0", "postcss-normalize-charset": "^5.1.0", "postcss-normalize-display-values": "^5.1.0", "postcss-normalize-positions": "^5.1.0", "postcss-normalize-repeat-style": "^5.1.0", "postcss-normalize-string": "^5.1.0", "postcss-normalize-timing-functions": "^5.1.0", "postcss-normalize-unicode": "^5.1.0", "postcss-normalize-url": "^5.1.0", "postcss-normalize-whitespace": "^5.1.0", "postcss-ordered-values": "^5.1.0", "postcss-reduce-initial": "^5.1.0", "postcss-reduce-transforms": "^5.1.0", "postcss-svgo": "^5.1.0", "postcss-unique-selectors": "^5.1.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/cssnano-utils": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", "dev": true, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/csso": { "version": "5.0.5", "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", "dev": true, "dependencies": { "css-tree": "~2.2.0" }, "engines": { "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", "npm": ">=7.0.0" } }, "node_modules/data-view-buffer": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.6", "es-errors": "^1.3.0", "is-data-view": "^1.0.1" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/data-view-byte-length": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "es-errors": "^1.3.0", "is-data-view": "^1.0.1" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/data-view-byte-offset": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.6", "es-errors": "^1.3.0", "is-data-view": "^1.0.1" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/debug": { "version": "4.3.7", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", "dev": true, "license": "MIT", "dependencies": { "ms": "^2.1.3" }, "engines": { "node": ">=6.0" }, "peerDependenciesMeta": { "supports-color": { "optional": true } } }, "node_modules/decode-uri-component": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", "dev": true, "engines": { "node": ">=0.10" } }, "node_modules/deep-is": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true }, "node_modules/defaults": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", "dev": true, "dependencies": { "clone": "^1.0.2" } }, "node_modules/define-data-property": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", "dev": true, "license": "MIT", "dependencies": { "es-define-property": "^1.0.0", "es-errors": "^1.3.0", "gopd": "^1.0.1" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/define-properties": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", "dev": true, "license": "MIT", "dependencies": { "define-data-property": "^1.0.1", "has-property-descriptors": "^1.0.0", "object-keys": "^1.1.1" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", "dev": true, "engines": { "node": ">=0.4.0" } }, "node_modules/delegate": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz", "integrity": "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==" }, "node_modules/detect-libc": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", "dev": true, "license": "Apache-2.0", "optional": true, "bin": { "detect-libc": "bin/detect-libc.js" }, "engines": { "node": ">=0.10" } }, "node_modules/diff": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", "dev": true, "engines": { "node": ">=0.3.1" } }, "node_modules/dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, "dependencies": { "path-type": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/doctrine": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, "dependencies": { "esutils": "^2.0.2" }, "engines": { "node": ">=6.0.0" } }, "node_modules/domhandler": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "dev": true, "dependencies": { "domelementtype": "^2.2.0" }, "engines": { "node": ">= 4" }, "funding": { "url": "https://github.com/fb55/domhandler?sponsor=1" } }, "node_modules/domhandler/node_modules/domelementtype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/fb55" } ] }, "node_modules/dot-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", "dev": true, "license": "MIT", "dependencies": { "no-case": "^3.0.4", "tslib": "^2.0.3" } }, "node_modules/dot-case/node_modules/lower-case": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", "dev": true, "license": "MIT", "dependencies": { "tslib": "^2.0.3" } }, "node_modules/dot-case/node_modules/no-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", "dev": true, "license": "MIT", "dependencies": { "lower-case": "^2.0.2", "tslib": "^2.0.3" } }, "node_modules/eastasianwidth": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", "dev": true }, "node_modules/electron-to-chromium": { "version": "1.5.4", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.4.tgz", "integrity": "sha512-orzA81VqLyIGUEA77YkVA1D+N+nNfl2isJVjjmOyrlxuooZ19ynb+dOlaDTqd/idKRS9lDCSBmtzM+kyCsMnkA==", "dev": true, "license": "ISC" }, "node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, "node_modules/encoding": { "version": "0.1.13", "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", "dev": true, "optional": true, "peer": true, "dependencies": { "iconv-lite": "^0.6.2" } }, "node_modules/entities": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", "dev": true, "funding": { "url": "https://github.com/fb55/entities?sponsor=1" } }, "node_modules/env-paths": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", "dev": true, "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, "dependencies": { "is-arrayish": "^0.2.1" } }, "node_modules/es-abstract": { "version": "1.23.3", "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", "dev": true, "license": "MIT", "dependencies": { "array-buffer-byte-length": "^1.0.1", "arraybuffer.prototype.slice": "^1.0.3", "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.7", "data-view-buffer": "^1.0.1", "data-view-byte-length": "^1.0.1", "data-view-byte-offset": "^1.0.0", "es-define-property": "^1.0.0", "es-errors": "^1.3.0", "es-object-atoms": "^1.0.0", "es-set-tostringtag": "^2.0.3", "es-to-primitive": "^1.2.1", "function.prototype.name": "^1.1.6", "get-intrinsic": "^1.2.4", "get-symbol-description": "^1.0.2", "globalthis": "^1.0.3", "gopd": "^1.0.1", "has-property-descriptors": "^1.0.2", "has-proto": "^1.0.3", "has-symbols": "^1.0.3", "hasown": "^2.0.2", "internal-slot": "^1.0.7", "is-array-buffer": "^3.0.4", "is-callable": "^1.2.7", "is-data-view": "^1.0.1", "is-negative-zero": "^2.0.3", "is-regex": "^1.1.4", "is-shared-array-buffer": "^1.0.3", "is-string": "^1.0.7", "is-typed-array": "^1.1.13", "is-weakref": "^1.0.2", "object-inspect": "^1.13.1", "object-keys": "^1.1.1", "object.assign": "^4.1.5", "regexp.prototype.flags": "^1.5.2", "safe-array-concat": "^1.1.2", "safe-regex-test": "^1.0.3", "string.prototype.trim": "^1.2.9", "string.prototype.trimend": "^1.0.8", "string.prototype.trimstart": "^1.0.8", "typed-array-buffer": "^1.0.2", "typed-array-byte-length": "^1.0.1", "typed-array-byte-offset": "^1.0.2", "typed-array-length": "^1.0.6", "unbox-primitive": "^1.0.2", "which-typed-array": "^1.1.15" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/es-define-property": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", "dev": true, "license": "MIT", "dependencies": { "get-intrinsic": "^1.2.4" }, "engines": { "node": ">= 0.4" } }, "node_modules/es-errors": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" } }, "node_modules/es-module-lexer": { "version": "1.5.4", "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==", "dev": true, "license": "MIT" }, "node_modules/es-object-atoms": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", "dev": true, "license": "MIT", "dependencies": { "es-errors": "^1.3.0" }, "engines": { "node": ">= 0.4" } }, "node_modules/es-set-tostringtag": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", "dev": true, "license": "MIT", "dependencies": { "get-intrinsic": "^1.2.4", "has-tostringtag": "^1.0.2", "hasown": "^2.0.1" }, "engines": { "node": ">= 0.4" } }, "node_modules/es-shim-unscopables": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", "dev": true, "dependencies": { "hasown": "^2.0.0" } }, "node_modules/es-to-primitive": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "dev": true, "dependencies": { "is-callable": "^1.1.4", "is-date-object": "^1.0.1", "is-symbol": "^1.0.2" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/esbuild": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz", "integrity": "sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==", "dev": true, "hasInstallScript": true, "license": "MIT", "bin": { "esbuild": "bin/esbuild" }, "engines": { "node": ">=18" }, "optionalDependencies": { "@esbuild/aix-ppc64": "0.24.2", "@esbuild/android-arm": "0.24.2", "@esbuild/android-arm64": "0.24.2", "@esbuild/android-x64": "0.24.2", "@esbuild/darwin-arm64": "0.24.2", "@esbuild/darwin-x64": "0.24.2", "@esbuild/freebsd-arm64": "0.24.2", "@esbuild/freebsd-x64": "0.24.2", "@esbuild/linux-arm": "0.24.2", "@esbuild/linux-arm64": "0.24.2", "@esbuild/linux-ia32": "0.24.2", "@esbuild/linux-loong64": "0.24.2", "@esbuild/linux-mips64el": "0.24.2", "@esbuild/linux-ppc64": "0.24.2", "@esbuild/linux-riscv64": "0.24.2", "@esbuild/linux-s390x": "0.24.2", "@esbuild/linux-x64": "0.24.2", "@esbuild/netbsd-arm64": "0.24.2", "@esbuild/netbsd-x64": "0.24.2", "@esbuild/openbsd-arm64": "0.24.2", "@esbuild/openbsd-x64": "0.24.2", "@esbuild/sunos-x64": "0.24.2", "@esbuild/win32-arm64": "0.24.2", "@esbuild/win32-ia32": "0.24.2", "@esbuild/win32-x64": "0.24.2" } }, "node_modules/escalade": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", "dev": true, "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" }, "node_modules/escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", "dev": true, "engines": { "node": ">=0.8.0" } }, "node_modules/eslint": { "version": "8.57.0", "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", "@eslint/eslintrc": "^2.1.4", "@eslint/js": "8.57.0", "@humanwhocodes/config-array": "^0.11.14", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", "@ungap/structured-clone": "^1.2.0", "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", "debug": "^4.3.2", "doctrine": "^3.0.0", "escape-string-regexp": "^4.0.0", "eslint-scope": "^7.2.2", "eslint-visitor-keys": "^3.4.3", "espree": "^9.6.1", "esquery": "^1.4.2", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^6.0.1", "find-up": "^5.0.0", "glob-parent": "^6.0.2", "globals": "^13.19.0", "graphemer": "^1.4.0", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "is-path-inside": "^3.0.3", "js-yaml": "^4.1.0", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", "optionator": "^0.9.3", "strip-ansi": "^6.0.1", "text-table": "^0.2.0" }, "bin": { "eslint": "bin/eslint.js" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/eslint-import-resolver-node": { "version": "0.3.9", "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", "dev": true, "dependencies": { "debug": "^3.2.7", "is-core-module": "^2.13.0", "resolve": "^1.22.4" } }, "node_modules/eslint-import-resolver-node/node_modules/debug": { "version": "3.2.7", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "dependencies": { "ms": "^2.1.1" } }, "node_modules/eslint-module-utils": { "version": "2.12.0", "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.0.tgz", "integrity": "sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==", "dev": true, "license": "MIT", "dependencies": { "debug": "^3.2.7" }, "engines": { "node": ">=4" }, "peerDependenciesMeta": { "eslint": { "optional": true } } }, "node_modules/eslint-module-utils/node_modules/debug": { "version": "3.2.7", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "license": "MIT", "dependencies": { "ms": "^2.1.1" } }, "node_modules/eslint-plugin-eslint-comments": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/eslint-plugin-eslint-comments/-/eslint-plugin-eslint-comments-3.2.0.tgz", "integrity": "sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==", "dev": true, "dependencies": { "escape-string-regexp": "^1.0.5", "ignore": "^5.0.5" }, "engines": { "node": ">=6.5.0" }, "funding": { "url": "https://github.com/sponsors/mysticatea" }, "peerDependencies": { "eslint": ">=4.19.1" } }, "node_modules/eslint-plugin-import": { "version": "2.31.0", "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.31.0.tgz", "integrity": "sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==", "dev": true, "license": "MIT", "dependencies": { "@rtsao/scc": "^1.1.0", "array-includes": "^3.1.8", "array.prototype.findlastindex": "^1.2.5", "array.prototype.flat": "^1.3.2", "array.prototype.flatmap": "^1.3.2", "debug": "^3.2.7", "doctrine": "^2.1.0", "eslint-import-resolver-node": "^0.3.9", "eslint-module-utils": "^2.12.0", "hasown": "^2.0.2", "is-core-module": "^2.15.1", "is-glob": "^4.0.3", "minimatch": "^3.1.2", "object.fromentries": "^2.0.8", "object.groupby": "^1.0.3", "object.values": "^1.2.0", "semver": "^6.3.1", "string.prototype.trimend": "^1.0.8", "tsconfig-paths": "^3.15.0" }, "engines": { "node": ">=4" }, "peerDependencies": { "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9" } }, "node_modules/eslint-plugin-import/node_modules/debug": { "version": "3.2.7", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "dependencies": { "ms": "^2.1.1" } }, "node_modules/eslint-plugin-import/node_modules/doctrine": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, "dependencies": { "esutils": "^2.0.2" }, "engines": { "node": ">=0.10.0" } }, "node_modules/eslint-plugin-import/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" } }, "node_modules/eslint-plugin-jsdoc": { "version": "50.6.3", "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.6.3.tgz", "integrity": "sha512-NxbJyt1M5zffPcYZ8Nb53/8nnbIScmiLAMdoe0/FAszwb7lcSiX3iYBTsuF7RV84dZZJC8r3NghomrUXsmWvxQ==", "dev": true, "license": "BSD-3-Clause", "dependencies": { "@es-joy/jsdoccomment": "~0.49.0", "are-docs-informative": "^0.0.2", "comment-parser": "1.4.1", "debug": "^4.3.6", "escape-string-regexp": "^4.0.0", "espree": "^10.1.0", "esquery": "^1.6.0", "parse-imports": "^2.1.1", "semver": "^7.6.3", "spdx-expression-parse": "^4.0.0", "synckit": "^0.9.1" }, "engines": { "node": ">=18" }, "peerDependencies": { "eslint": "^7.0.0 || ^8.0.0 || ^9.0.0" } }, "node_modules/eslint-plugin-jsdoc/node_modules/escape-string-regexp": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/eslint-plugin-jsdoc/node_modules/eslint-visitor-keys": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz", "integrity": "sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==", "dev": true, "license": "Apache-2.0", "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/eslint-plugin-jsdoc/node_modules/espree": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/espree/-/espree-10.1.0.tgz", "integrity": "sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==", "dev": true, "license": "BSD-2-Clause", "dependencies": { "acorn": "^8.12.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^4.0.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/eslint-plugin-jsdoc/node_modules/spdx-expression-parse": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-4.0.0.tgz", "integrity": "sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==", "dev": true, "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" } }, "node_modules/eslint-plugin-no-null": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/eslint-plugin-no-null/-/eslint-plugin-no-null-1.0.2.tgz", "integrity": "sha1-EjaoEjkTkKGHetQAfCbnRTQclR8=", "dev": true, "engines": { "node": ">=5.0.0" }, "peerDependencies": { "eslint": ">=3.0.0" } }, "node_modules/eslint-scope": { "version": "7.2.2", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", "dev": true, "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/eslint-visitor-keys": { "version": "3.4.3", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", "dev": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/eslint/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { "color-convert": "^2.0.1" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/eslint/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/eslint/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { "color-name": "~1.1.4" }, "engines": { "node": ">=7.0.0" } }, "node_modules/eslint/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, "node_modules/eslint/node_modules/escape-string-regexp": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/eslint/node_modules/glob-parent": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, "dependencies": { "is-glob": "^4.0.3" }, "engines": { "node": ">=10.13.0" } }, "node_modules/espree": { "version": "9.6.1", "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", "dev": true, "dependencies": { "acorn": "^8.9.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^3.4.1" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/esquery": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", "dev": true, "license": "BSD-3-Clause", "dependencies": { "estraverse": "^5.1.0" }, "engines": { "node": ">=0.10" } }, "node_modules/esrecurse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, "dependencies": { "estraverse": "^5.2.0" }, "engines": { "node": ">=4.0" } }, "node_modules/estraverse": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, "engines": { "node": ">=4.0" } }, "node_modules/esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/event-target-shim": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, "node_modules/fast-glob": { "version": "3.3.3", "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", "dev": true, "license": "MIT", "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.8" }, "engines": { "node": ">=8.6.0" } }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, "node_modules/fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true }, "node_modules/fast-uri": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.3.tgz", "integrity": "sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==", "dev": true, "license": "BSD-3-Clause" }, "node_modules/fastest-levenshtein": { "version": "1.0.16", "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", "dev": true, "engines": { "node": ">= 4.9.1" } }, "node_modules/fastq": { "version": "1.11.0", "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz", "integrity": "sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g==", "dev": true, "dependencies": { "reusify": "^1.0.4" } }, "node_modules/file-entry-cache": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, "dependencies": { "flat-cache": "^3.0.4" }, "engines": { "node": "^10.12.0 || >=12.0.0" } }, "node_modules/fill-range": { "version": "7.1.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dev": true, "dependencies": { "to-regex-range": "^5.0.1" }, "engines": { "node": ">=8" } }, "node_modules/filter-obj": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz", "integrity": "sha1-mzERErxsYSehbgFsbF1/GeCAXFs=", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/find-up": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, "dependencies": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/flat-cache": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", "dev": true, "dependencies": { "flatted": "^3.2.9", "keyv": "^4.5.3", "rimraf": "^3.0.2" }, "engines": { "node": "^10.12.0 || >=12.0.0" } }, "node_modules/flat-cache/node_modules/rimraf": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "dev": true, "dependencies": { "glob": "^7.1.3" }, "bin": { "rimraf": "bin.js" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/flatted": { "version": "3.3.2", "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz", "integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==", "dev": true, "license": "ISC" }, "node_modules/focus-visible": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/focus-visible/-/focus-visible-5.2.1.tgz", "integrity": "sha512-8Bx950VD1bWTQJEH/AM6SpEk+SU55aVnp4Ujhuuxy3eMEBCRwBnTBnVXr9YAPvZL3/CNjCa8u4IWfNmEO53whA==", "license": "W3C" }, "node_modules/for-each": { "version": "0.3.3", "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", "dev": true, "license": "MIT", "dependencies": { "is-callable": "^1.1.3" } }, "node_modules/foreground-child": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", "dev": true, "dependencies": { "cross-spawn": "^7.0.0", "signal-exit": "^4.0.1" }, "engines": { "node": ">=14" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/foreground-child/node_modules/signal-exit": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz", "integrity": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==", "dev": true, "engines": { "node": ">=14" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/form-data": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", "dev": true, "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", "mime-types": "^2.1.12" }, "engines": { "node": ">= 6" } }, "node_modules/fraction.js": { "version": "4.3.7", "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", "dev": true, "engines": { "node": "*" }, "funding": { "type": "patreon", "url": "https://github.com/sponsors/rawify" } }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", "dev": true }, "node_modules/function-bind": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/function.prototype.name": { "version": "1.1.6", "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.2.0", "es-abstract": "^1.22.1", "functions-have-names": "^1.2.3" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/functions-have-names": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", "dev": true, "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/fuzzaldrin-plus": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/fuzzaldrin-plus/-/fuzzaldrin-plus-0.6.0.tgz", "integrity": "sha1-gy9kifvodnaUWVmckUpnDsIpR+4=" }, "node_modules/get-intrinsic": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", "dev": true, "license": "MIT", "dependencies": { "es-errors": "^1.3.0", "function-bind": "^1.1.2", "has-proto": "^1.0.1", "has-symbols": "^1.0.3", "hasown": "^2.0.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/get-symbol-description": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.5", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.4" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/github-types": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/github-types/-/github-types-1.0.0.tgz", "integrity": "sha512-cUyNZq/cC853l0mlbWaugGWNqegqoxj0iVJCfQYBYSjfqhz6mDRExfsfdp6a5kFvGfwsDiNduE+e18hlsERSuA==", "dev": true }, "node_modules/gitlab": { "version": "14.2.2", "resolved": "https://registry.npmjs.org/gitlab/-/gitlab-14.2.2.tgz", "integrity": "sha512-MVLGXLFk5erJCeDnDtV+srDHogadVV8y94G4mAulukCwdCwh+IUqsU4ESZksZvBis8VTJsK9Mj01lRJ1JrxVsg==", "deprecated": "The gitlab package has found a new home in the @gitbeaker organization. For the latest gitlab node library, check out @gitbeaker/node. A full list of the features can be found here: https://github.com/jdalrymple/gitbeaker#readme", "dev": true, "dependencies": { "chalk": "^3.0.0", "form-data": "^3.0.0", "ky": "^0.16.0", "ky-universal": "^0.3.0", "li": "^1.3.0", "ora": "^4.0.3", "query-string": "^6.9.0", "sywac": "^1.2.2", "xcase": "^2.0.1" }, "bin": { "gitlab": "dist/index.cli.js" }, "engines": { "node": ">=10.0.0" } }, "node_modules/gitlab/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { "color-convert": "^2.0.1" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/gitlab/node_modules/chalk": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=8" } }, "node_modules/gitlab/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { "color-name": "~1.1.4" }, "engines": { "node": ">=7.0.0" } }, "node_modules/gitlab/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, "node_modules/glob": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", "dev": true, "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.4", "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "engines": { "node": "*" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/glob-parent": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "dependencies": { "is-glob": "^4.0.1" }, "engines": { "node": ">= 6" } }, "node_modules/global-modules": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", "dev": true, "dependencies": { "global-prefix": "^3.0.0" }, "engines": { "node": ">=6" } }, "node_modules/global-prefix": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", "dev": true, "dependencies": { "ini": "^1.3.5", "kind-of": "^6.0.2", "which": "^1.3.1" }, "engines": { "node": ">=6" } }, "node_modules/global-prefix/node_modules/which": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, "dependencies": { "isexe": "^2.0.0" }, "bin": { "which": "bin/which" } }, "node_modules/globals": { "version": "13.24.0", "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, "dependencies": { "type-fest": "^0.20.2" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/globalthis": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", "dev": true, "dependencies": { "define-properties": "^1.1.3" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/globalyzer": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz", "integrity": "sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==", "dev": true }, "node_modules/globby": { "version": "11.1.0", "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dev": true, "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/globjoin": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz", "integrity": "sha1-L0SUrIkZ43Z8XLtpHp9GMyQoXUM=", "dev": true }, "node_modules/globrex": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==", "dev": true }, "node_modules/good-listener": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz", "integrity": "sha1-1TswzfkxPf+33JoNR3CWqm0UXFA=", "dependencies": { "delegate": "^3.1.2" } }, "node_modules/google-fonts-complete": { "version": "2.2.3", "resolved": "git+ssh://git@github.com/jonathantneal/google-fonts-complete.git#2fb60572daa44fb229ef8396b97279bcbd29671f", "dev": true, "license": "CC0-1.0", "peerDependencies": { "postcss": "^8.0.0" } }, "node_modules/gopd": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", "dev": true, "license": "MIT", "dependencies": { "get-intrinsic": "^1.1.3" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/graceful-fs": { "version": "4.2.10", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", "dev": true }, "node_modules/graphemer": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", "dev": true }, "node_modules/has-bigints": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", "dev": true, "engines": { "node": ">=4" } }, "node_modules/has-property-descriptors": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", "dev": true, "license": "MIT", "dependencies": { "es-define-property": "^1.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/has-proto": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/has-symbols": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "dev": true, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/has-tostringtag": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "dev": true, "license": "MIT", "dependencies": { "has-symbols": "^1.0.3" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/hasown": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", "dev": true, "license": "MIT", "dependencies": { "function-bind": "^1.1.2" }, "engines": { "node": ">= 0.4" } }, "node_modules/hosted-git-info": { "version": "2.8.9", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", "dev": true }, "node_modules/html-minifier-terser": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-7.2.0.tgz", "integrity": "sha512-tXgn3QfqPIpGl9o+K5tpcj3/MN4SfLtsx2GWwBC3SSd0tXQGyF3gsSqad8loJgKZGM3ZxbYDd5yhiBIdWpmvLA==", "dev": true, "license": "MIT", "dependencies": { "camel-case": "^4.1.2", "clean-css": "~5.3.2", "commander": "^10.0.0", "entities": "^4.4.0", "param-case": "^3.0.4", "relateurl": "^0.2.7", "terser": "^5.15.1" }, "bin": { "html-minifier-terser": "cli.js" }, "engines": { "node": "^14.13.1 || >=16.0.0" } }, "node_modules/html-minifier-terser/node_modules/camel-case": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", "dev": true, "license": "MIT", "dependencies": { "pascal-case": "^3.1.2", "tslib": "^2.0.3" } }, "node_modules/html-minifier-terser/node_modules/clean-css": { "version": "5.3.3", "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz", "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==", "dev": true, "license": "MIT", "dependencies": { "source-map": "~0.6.0" }, "engines": { "node": ">= 10.0" } }, "node_modules/html-minifier-terser/node_modules/commander": { "version": "10.0.1", "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", "dev": true, "license": "MIT", "engines": { "node": ">=14" } }, "node_modules/html-minifier-terser/node_modules/entities": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", "dev": true, "license": "BSD-2-Clause", "engines": { "node": ">=0.12" }, "funding": { "url": "https://github.com/fb55/entities?sponsor=1" } }, "node_modules/html-minifier-terser/node_modules/param-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", "dev": true, "license": "MIT", "dependencies": { "dot-case": "^3.0.4", "tslib": "^2.0.3" } }, "node_modules/html-tags": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", "dev": true, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/htmlparser2": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.1.tgz", "integrity": "sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA==", "dev": true, "funding": [ "https://github.com/fb55/htmlparser2?sponsor=1", { "type": "github", "url": "https://github.com/sponsors/fb55" } ], "dependencies": { "domelementtype": "^2.3.0", "domhandler": "^5.0.2", "domutils": "^3.0.1", "entities": "^4.3.0" } }, "node_modules/htmlparser2/node_modules/dom-serializer": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", "dev": true, "dependencies": { "domelementtype": "^2.3.0", "domhandler": "^5.0.2", "entities": "^4.2.0" }, "funding": { "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, "node_modules/htmlparser2/node_modules/domelementtype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/fb55" } ] }, "node_modules/htmlparser2/node_modules/domhandler": { "version": "5.0.3", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", "dev": true, "dependencies": { "domelementtype": "^2.3.0" }, "engines": { "node": ">= 4" }, "funding": { "url": "https://github.com/fb55/domhandler?sponsor=1" } }, "node_modules/htmlparser2/node_modules/domutils": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.0.1.tgz", "integrity": "sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==", "dev": true, "dependencies": { "dom-serializer": "^2.0.0", "domelementtype": "^2.3.0", "domhandler": "^5.0.1" }, "funding": { "url": "https://github.com/fb55/domutils?sponsor=1" } }, "node_modules/htmlparser2/node_modules/entities": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz", "integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==", "dev": true, "engines": { "node": ">=0.12" }, "funding": { "url": "https://github.com/fb55/entities?sponsor=1" } }, "node_modules/iconv-lite": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dev": true, "optional": true, "peer": true, "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" }, "engines": { "node": ">=0.10.0" } }, "node_modules/ignore": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true, "license": "MIT", "engines": { "node": ">= 4" } }, "node_modules/immutable": { "version": "5.0.2", "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.0.2.tgz", "integrity": "sha512-1NU7hWZDkV7hJ4PJ9dur9gTNQ4ePNPN4k9/0YhwjzykTi/+3Q5pF93YU5QoVj8BuOnhLgaY8gs0U2pj4kSYVcw==", "dev": true, "license": "MIT" }, "node_modules/import-fresh": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" }, "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", "dev": true, "engines": { "node": ">=0.8.19" } }, "node_modules/inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", "dev": true, "dependencies": { "once": "^1.3.0", "wrappy": "1" } }, "node_modules/inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, "node_modules/ini": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", "dev": true }, "node_modules/internal-slot": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", "dev": true, "license": "MIT", "dependencies": { "es-errors": "^1.3.0", "hasown": "^2.0.0", "side-channel": "^1.0.4" }, "engines": { "node": ">= 0.4" } }, "node_modules/is-array-buffer": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.2.1" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", "dev": true }, "node_modules/is-bigint": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", "dev": true, "dependencies": { "has-bigints": "^1.0.1" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-boolean-object": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "dev": true, "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-callable": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", "dev": true, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-core-module": { "version": "2.15.1", "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", "dev": true, "license": "MIT", "dependencies": { "hasown": "^2.0.2" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-data-view": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", "dev": true, "license": "MIT", "dependencies": { "is-typed-array": "^1.1.13" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-date-object": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.4.tgz", "integrity": "sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A==", "dev": true, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/is-fullwidth-code-point": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, "dependencies": { "is-extglob": "^2.1.1" }, "engines": { "node": ">=0.10.0" } }, "node_modules/is-interactive": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/is-negative-zero": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true, "engines": { "node": ">=0.12.0" } }, "node_modules/is-number-object": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", "dev": true, "dependencies": { "has-tostringtag": "^1.0.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-path-inside": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/is-plain-object": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/is-regex": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-shared-array-buffer": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.7" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-string": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", "dev": true, "dependencies": { "has-tostringtag": "^1.0.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-symbol": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", "dev": true, "dependencies": { "has-symbols": "^1.0.2" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-typed-array": { "version": "1.1.13", "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", "dev": true, "license": "MIT", "dependencies": { "which-typed-array": "^1.1.14" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-weakref": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", "dev": true, "dependencies": { "call-bind": "^1.0.2" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/isarray": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", "dev": true, "license": "MIT" }, "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", "dev": true }, "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", "dev": true, "license": "MIT" }, "node_modules/js-yaml": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, "dependencies": { "argparse": "^2.0.1" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, "node_modules/jsdoc-type-pratt-parser": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-4.1.0.tgz", "integrity": "sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==", "dev": true, "license": "MIT", "engines": { "node": ">=12.0.0" } }, "node_modules/json-buffer": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", "dev": true }, "node_modules/json-parse-better-errors": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", "dev": true }, "node_modules/json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true, "license": "MIT" }, "node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "dev": true }, "node_modules/json5": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, "dependencies": { "minimist": "^1.2.0" }, "bin": { "json5": "lib/cli.js" } }, "node_modules/keyv": { "version": "4.5.4", "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", "dev": true, "dependencies": { "json-buffer": "3.0.1" } }, "node_modules/kind-of": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/known-css-properties": { "version": "0.35.0", "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.35.0.tgz", "integrity": "sha512-a/RAk2BfKk+WFGhhOCAYqSiFLc34k8Mt/6NWRI4joER0EYUzXIcFivjjnoD3+XU1DggLn/tZc3DOAgke7l8a4A==", "dev": true, "license": "MIT" }, "node_modules/ky": { "version": "0.16.2", "resolved": "https://registry.npmjs.org/ky/-/ky-0.16.2.tgz", "integrity": "sha512-4/Xcb0hqeueNX9sa+G2jREiam9yb+I2Y3p3J42lIeitAenHXUZwpyejEgeQcQsaGl+hbuA0s7c3u+nlcIYFtog==", "dev": true, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sindresorhus/ky?sponsor=1" } }, "node_modules/ky-universal": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/ky-universal/-/ky-universal-0.3.0.tgz", "integrity": "sha512-CM4Bgb2zZZpsprcjI6DNYTaH3oGHXL2u7BU4DK+lfCuC4snkt9/WRpMYeKbBbXscvKkeqBwzzjFX2WwmKY5K/A==", "dev": true, "dependencies": { "abort-controller": "^3.0.0", "node-fetch": "^2.6.0" }, "engines": { "node": ">=8" }, "peerDependencies": { "ky": ">=0.12.0" } }, "node_modules/levn": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, "dependencies": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/li": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/li/-/li-1.3.0.tgz", "integrity": "sha1-IsWbyu+qmo7zWc91l4TkvxBq6hs=", "dev": true }, "node_modules/lilconfig": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.4.tgz", "integrity": "sha512-bfTIN7lEsiooCocSISTWXkiWJkRqtL9wYtYy+8EK3Y41qh3mpwPU0ycTOgjdY9ErwXCc8QyrQp82bdL0Xkm9yA==", "dev": true, "engines": { "node": ">=10" } }, "node_modules/lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true, "license": "MIT" }, "node_modules/load-json-file": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", "dev": true, "dependencies": { "graceful-fs": "^4.1.2", "parse-json": "^4.0.0", "pify": "^3.0.0", "strip-bom": "^3.0.0" }, "engines": { "node": ">=4" } }, "node_modules/locate-path": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, "dependencies": { "p-locate": "^5.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", "dev": true }, "node_modules/lodash.merge": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "dev": true }, "node_modules/lodash.truncate": { "version": "4.4.2", "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", "dev": true, "license": "MIT" }, "node_modules/lodash.uniq": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=", "dev": true }, "node_modules/log-symbols": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz", "integrity": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==", "dev": true, "dependencies": { "chalk": "^2.4.2" }, "engines": { "node": ">=8" } }, "node_modules/lunr": { "version": "2.3.9", "resolved": "https://registry.npmjs.org/lunr/-/lunr-2.3.9.tgz", "integrity": "sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==" }, "node_modules/lunr-languages": { "version": "1.14.0", "resolved": "https://registry.npmjs.org/lunr-languages/-/lunr-languages-1.14.0.tgz", "integrity": "sha512-hWUAb2KqM3L7J5bcrngszzISY4BxrXn/Xhbb9TTCJYEGqlR1nG67/M14sp09+PTIRklobrn57IAxcdcO/ZFyNA==" }, "node_modules/make-error": { "version": "1.3.6", "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", "dev": true }, "node_modules/material-design-color": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/material-design-color/-/material-design-color-2.3.2.tgz", "integrity": "sha1-6K+VjYUqh0e/shHkjOEoK9qRiBU=", "dev": true }, "node_modules/material-shadows": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/material-shadows/-/material-shadows-3.0.1.tgz", "integrity": "sha1-WGrRKxZzYKjk6Je/dTDLaazqURA=", "dev": true }, "node_modules/mathml-tag-names": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz", "integrity": "sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==", "dev": true, "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" } }, "node_modules/mdn-data": { "version": "2.0.28", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", "dev": true }, "node_modules/memorystream": { "version": "0.3.1", "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", "integrity": "sha1-htcJCzDORV1j+64S3aUaR93K+bI=", "dev": true, "engines": { "node": ">= 0.10.0" } }, "node_modules/meow": { "version": "13.2.0", "resolved": "https://registry.npmjs.org/meow/-/meow-13.2.0.tgz", "integrity": "sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==", "dev": true, "license": "MIT", "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/merge2": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true, "engines": { "node": ">= 8" } }, "node_modules/micromatch": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dev": true, "license": "MIT", "dependencies": { "braces": "^3.0.3", "picomatch": "^2.3.1" }, "engines": { "node": ">=8.6" } }, "node_modules/mime-db": { "version": "1.46.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.46.0.tgz", "integrity": "sha512-svXaP8UQRZ5K7or+ZmfNhg2xX3yKDMUzqadsSqi4NCH/KomcH75MAMYAGVlvXn4+b/xOPhS3I2uHKRUzvjY7BQ==", "dev": true, "engines": { "node": ">= 0.6" } }, "node_modules/mime-types": { "version": "2.1.29", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.29.tgz", "integrity": "sha512-Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ==", "dev": true, "dependencies": { "mime-db": "1.46.0" }, "engines": { "node": ">= 0.6" } }, "node_modules/mimic-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { "brace-expansion": "^1.1.7" }, "engines": { "node": "*" } }, "node_modules/minimist": { "version": "1.2.6", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", "dev": true }, "node_modules/ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "dev": true, "license": "MIT" }, "node_modules/mute-stream": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", "dev": true }, "node_modules/nanoid": { "version": "3.3.8", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/ai" } ], "license": "MIT", "bin": { "nanoid": "bin/nanoid.cjs" }, "engines": { "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, "node_modules/natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true }, "node_modules/nice-try": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", "dev": true }, "node_modules/node-addon-api": { "version": "7.1.1", "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", "dev": true, "license": "MIT", "optional": true }, "node_modules/node-fetch": { "version": "2.6.7", "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", "dev": true, "dependencies": { "whatwg-url": "^5.0.0" }, "engines": { "node": "4.x || >=6.0.0" }, "peerDependencies": { "encoding": "^0.1.0" }, "peerDependenciesMeta": { "encoding": { "optional": true } } }, "node_modules/node-releases": { "version": "2.0.18", "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", "dev": true, "license": "MIT" }, "node_modules/normalize-package-data": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, "dependencies": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", "semver": "2 || 3 || 4 || 5", "validate-npm-package-license": "^3.0.1" } }, "node_modules/normalize-package-data/node_modules/semver": { "version": "5.7.2", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true, "bin": { "semver": "bin/semver" } }, "node_modules/normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/normalize-range": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/normalize-url": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", "dev": true, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/npm-check-updates": { "version": "17.1.14", "resolved": "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-17.1.14.tgz", "integrity": "sha512-dr4bXIxETubLI1tFGeock5hN8yVjahvaVpx+lPO4/O2md3zJuxB7FgH3MIoTvQSCgsgkIRpe0skti01IEAA5tA==", "dev": true, "license": "Apache-2.0", "bin": { "ncu": "build/cli.js", "npm-check-updates": "build/cli.js" }, "engines": { "node": "^18.18.0 || >=20.0.0", "npm": ">=8.12.1" } }, "node_modules/npm-run-all": { "version": "4.1.5", "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", "integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==", "dev": true, "dependencies": { "ansi-styles": "^3.2.1", "chalk": "^2.4.1", "cross-spawn": "^6.0.5", "memorystream": "^0.3.1", "minimatch": "^3.0.4", "pidtree": "^0.3.0", "read-pkg": "^3.0.0", "shell-quote": "^1.6.1", "string.prototype.padend": "^3.0.0" }, "bin": { "npm-run-all": "bin/npm-run-all/index.js", "run-p": "bin/run-p/index.js", "run-s": "bin/run-s/index.js" }, "engines": { "node": ">= 4" } }, "node_modules/npm-run-all/node_modules/cross-spawn": { "version": "6.0.6", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", "dev": true, "license": "MIT", "dependencies": { "nice-try": "^1.0.4", "path-key": "^2.0.1", "semver": "^5.5.0", "shebang-command": "^1.2.0", "which": "^1.2.9" }, "engines": { "node": ">=4.8" } }, "node_modules/npm-run-all/node_modules/path-key": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", "dev": true, "engines": { "node": ">=4" } }, "node_modules/npm-run-all/node_modules/semver": { "version": "5.7.2", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true, "bin": { "semver": "bin/semver" } }, "node_modules/npm-run-all/node_modules/shebang-command": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", "dev": true, "dependencies": { "shebang-regex": "^1.0.0" }, "engines": { "node": ">=0.10.0" } }, "node_modules/npm-run-all/node_modules/shebang-regex": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/npm-run-all/node_modules/which": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, "dependencies": { "isexe": "^2.0.0" }, "bin": { "which": "bin/which" } }, "node_modules/nth-check": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.1.tgz", "integrity": "sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==", "dev": true, "dependencies": { "boolbase": "^1.0.0" }, "funding": { "url": "https://github.com/fb55/nth-check?sponsor=1" } }, "node_modules/object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/object-inspect": { "version": "1.13.2", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/object-keys": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", "dev": true, "engines": { "node": ">= 0.4" } }, "node_modules/object.assign": { "version": "4.1.5", "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.5", "define-properties": "^1.2.1", "has-symbols": "^1.0.3", "object-keys": "^1.1.1" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/object.fromentries": { "version": "2.0.8", "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-abstract": "^1.23.2", "es-object-atoms": "^1.0.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/object.groupby": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-abstract": "^1.23.2" }, "engines": { "node": ">= 0.4" } }, "node_modules/object.values": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", "dev": true, "dependencies": { "wrappy": "1" } }, "node_modules/onetime": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, "dependencies": { "mimic-fn": "^2.1.0" }, "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/optionator": { "version": "0.9.3", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", "dev": true, "dependencies": { "@aashutoshrathi/word-wrap": "^1.2.3", "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", "type-check": "^0.4.0" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/ora": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/ora/-/ora-4.1.1.tgz", "integrity": "sha512-sjYP8QyVWBpBZWD6Vr1M/KwknSw6kJOz41tvGMlwWeClHBtYKTbHMki1PsLZnxKpXMPbTKv9b3pjQu3REib96A==", "dev": true, "dependencies": { "chalk": "^3.0.0", "cli-cursor": "^3.1.0", "cli-spinners": "^2.2.0", "is-interactive": "^1.0.0", "log-symbols": "^3.0.0", "mute-stream": "0.0.8", "strip-ansi": "^6.0.0", "wcwidth": "^1.0.1" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/ora/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { "color-convert": "^2.0.1" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/ora/node_modules/chalk": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=8" } }, "node_modules/ora/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { "color-name": "~1.1.4" }, "engines": { "node": ">=7.0.0" } }, "node_modules/ora/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, "node_modules/p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, "dependencies": { "yocto-queue": "^0.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/p-locate": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, "dependencies": { "p-limit": "^3.0.2" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/package-json-from-dist": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==", "dev": true, "license": "BlueOak-1.0.0" }, "node_modules/parent-module": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, "dependencies": { "callsites": "^3.0.0" }, "engines": { "node": ">=6" } }, "node_modules/parent-module/node_modules/callsites": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/parse-imports": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/parse-imports/-/parse-imports-2.1.1.tgz", "integrity": "sha512-TDT4HqzUiTMO1wJRwg/t/hYk8Wdp3iF/ToMIlAoVQfL1Xs/sTxq1dKWSMjMbQmIarfWKymOyly40+zmPHXMqCA==", "dev": true, "license": "Apache-2.0", "dependencies": { "es-module-lexer": "^1.5.3", "slashes": "^3.0.12" }, "engines": { "node": ">= 18" } }, "node_modules/parse-json": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", "dev": true, "dependencies": { "error-ex": "^1.3.1", "json-parse-better-errors": "^1.0.1" }, "engines": { "node": ">=4" } }, "node_modules/pascal-case": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", "dev": true, "license": "MIT", "dependencies": { "no-case": "^3.0.4", "tslib": "^2.0.3" } }, "node_modules/pascal-case/node_modules/lower-case": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", "dev": true, "license": "MIT", "dependencies": { "tslib": "^2.0.3" } }, "node_modules/pascal-case/node_modules/no-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", "dev": true, "license": "MIT", "dependencies": { "lower-case": "^2.0.2", "tslib": "^2.0.3" } }, "node_modules/path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/path-parse": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true }, "node_modules/path-type": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/picocolors": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", "dev": true, "license": "ISC" }, "node_modules/picomatch": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true, "engines": { "node": ">=8.6" }, "funding": { "url": "https://github.com/sponsors/jonschlinkert" } }, "node_modules/pidtree": { "version": "0.3.1", "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz", "integrity": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==", "dev": true, "bin": { "pidtree": "bin/pidtree.js" }, "engines": { "node": ">=0.10" } }, "node_modules/pify": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", "dev": true, "engines": { "node": ">=4" } }, "node_modules/possible-typed-array-names": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" } }, "node_modules/postcss": { "version": "8.5.1", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.1.tgz", "integrity": "sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==", "dev": true, "funding": [ { "type": "opencollective", "url": "https://opencollective.com/postcss/" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/postcss" }, { "type": "github", "url": "https://github.com/sponsors/ai" } ], "license": "MIT", "dependencies": { "nanoid": "^3.3.8", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" }, "engines": { "node": "^10 || ^12 || >=14" } }, "node_modules/postcss-calc": { "version": "8.2.4", "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", "dev": true, "dependencies": { "postcss-selector-parser": "^6.0.9", "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.2.2" } }, "node_modules/postcss-colormin": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.0.tgz", "integrity": "sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==", "dev": true, "dependencies": { "browserslist": "^4.16.6", "caniuse-api": "^3.0.0", "colord": "^2.9.1", "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-convert-values": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.0.tgz", "integrity": "sha512-GkyPbZEYJiWtQB0KZ0X6qusqFHUepguBCNFi9t5JJc7I2OTXG7C0twbTLvCfaKOLl3rSXmpAwV7W5txd91V84g==", "dev": true, "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-dir-pseudo-class": { "version": "9.0.1", "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-9.0.1.tgz", "integrity": "sha512-tRBEK0MHYvcMUrAuYMEOa0zg9APqirBcgzi6P21OhxtJyJADo/SWBwY1CAwEohQ/6HDaa9jCjLRG7K3PVQYHEA==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/csstools" }, { "type": "opencollective", "url": "https://opencollective.com/csstools" } ], "license": "MIT-0", "dependencies": { "postcss-selector-parser": "^7.0.0" }, "engines": { "node": ">=18" }, "peerDependencies": { "postcss": "^8.4" } }, "node_modules/postcss-dir-pseudo-class/node_modules/postcss-selector-parser": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", "dev": true, "license": "MIT", "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" }, "engines": { "node": ">=4" } }, "node_modules/postcss-discard-comments": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.0.tgz", "integrity": "sha512-L0IKF4jAshRyn03SkEO6ar/Ipz2oLywVbg2THf2EqqdNkBwmVMxuTR/RoAltOw4piiaLt3gCAdrbAqmTBInmhg==", "dev": true, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-discard-duplicates": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", "dev": true, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-discard-empty": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.0.tgz", "integrity": "sha512-782T/buGgb3HOuHOJAHpdyKzAAKsv/BxWqsutnZ+QsiHEcDkY7v+6WWdturuBiSal6XMOO1p1aJvwXdqLD5vhA==", "dev": true, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-discard-overridden": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", "dev": true, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-inline-svg": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/postcss-inline-svg/-/postcss-inline-svg-6.0.0.tgz", "integrity": "sha512-ok5j0Iqsn8mS/5U1W+Im6qkQjm6nBxdwwJU+BSnBaDhLjC06h1xvy9MA+tefxhfZP/ARTRwARSozzYGf/sqEGg==", "dev": true, "dependencies": { "css-select": "^5.1.0", "dom-serializer": "^2.0.0", "htmlparser2": "^8.0.1", "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.1.4" } }, "node_modules/postcss-inline-svg/node_modules/dom-serializer": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", "dev": true, "dependencies": { "domelementtype": "^2.3.0", "domhandler": "^5.0.2", "entities": "^4.2.0" }, "funding": { "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, "node_modules/postcss-inline-svg/node_modules/domelementtype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/fb55" } ] }, "node_modules/postcss-inline-svg/node_modules/domhandler": { "version": "5.0.3", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", "dev": true, "dependencies": { "domelementtype": "^2.3.0" }, "engines": { "node": ">= 4" }, "funding": { "url": "https://github.com/fb55/domhandler?sponsor=1" } }, "node_modules/postcss-inline-svg/node_modules/entities": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz", "integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==", "dev": true, "engines": { "node": ">=0.12" }, "funding": { "url": "https://github.com/fb55/entities?sponsor=1" } }, "node_modules/postcss-logical": { "version": "5.0.4", "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz", "integrity": "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==", "dev": true, "license": "CC0-1.0", "engines": { "node": "^12 || ^14 || >=16" }, "peerDependencies": { "postcss": "^8.4" } }, "node_modules/postcss-media-query-parser": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz", "integrity": "sha1-J7Ocb02U+Bsac7j3Y1HGCeXO8kQ=", "dev": true }, "node_modules/postcss-merge-longhand": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.0.tgz", "integrity": "sha512-Gr46srN2tsLD8fudKYoHO56RG0BLQ2nsBRnSZGY04eNBPwTeWa9KeHrbL3tOLAHyB2aliikycPH2TMJG1U+W6g==", "dev": true, "dependencies": { "postcss-value-parser": "^4.2.0", "stylehacks": "^5.1.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-merge-rules": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.0.tgz", "integrity": "sha512-NecukEJovQ0mG7h7xV8wbYAkXGTO3MPKnXvuiXzOKcxoOodfTTKYjeo8TMhAswlSkjcPIBlnKbSFcTuVSDaPyQ==", "dev": true, "dependencies": { "browserslist": "^4.16.6", "caniuse-api": "^3.0.0", "cssnano-utils": "^3.1.0", "postcss-selector-parser": "^6.0.5" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-minify-font-values": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", "dev": true, "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-minify-gradients": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.0.tgz", "integrity": "sha512-J/TMLklkONn3LuL8wCwfwU8zKC1hpS6VcxFkNUNjmVt53uKqrrykR3ov11mdUYyqVMEx67slMce0tE14cE4DTg==", "dev": true, "dependencies": { "colord": "^2.9.1", "cssnano-utils": "^3.1.0", "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-minify-params": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.0.tgz", "integrity": "sha512-q67dcts4Hct6x8+JmhBgctHkbvUsqGIg2IItenjE63iZXMbhjr7AlVZkNnKtIGt/1Wsv7p/7YzeSII6Q+KPXRg==", "dev": true, "dependencies": { "browserslist": "^4.16.6", "cssnano-utils": "^3.1.0", "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-minify-selectors": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.0.tgz", "integrity": "sha512-vYxvHkW+iULstA+ctVNx0VoRAR4THQQRkG77o0oa4/mBS0OzGvvzLIvHDv/nNEM0crzN2WIyFU5X7wZhaUK3RA==", "dev": true, "dependencies": { "postcss-selector-parser": "^6.0.5" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-normalize-charset": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", "dev": true, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-normalize-display-values": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", "dev": true, "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-normalize-positions": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.0.tgz", "integrity": "sha512-8gmItgA4H5xiUxgN/3TVvXRoJxkAWLW6f/KKhdsH03atg0cB8ilXnrB5PpSshwVu/dD2ZsRFQcR1OEmSBDAgcQ==", "dev": true, "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-normalize-repeat-style": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.0.tgz", "integrity": "sha512-IR3uBjc+7mcWGL6CtniKNQ4Rr5fTxwkaDHwMBDGGs1x9IVRkYIT/M4NelZWkAOBdV6v3Z9S46zqaKGlyzHSchw==", "dev": true, "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-normalize-string": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", "dev": true, "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-normalize-timing-functions": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", "dev": true, "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-normalize-unicode": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.0.tgz", "integrity": "sha512-J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ==", "dev": true, "dependencies": { "browserslist": "^4.16.6", "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-normalize-url": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", "dev": true, "dependencies": { "normalize-url": "^6.0.1", "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-normalize-whitespace": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.0.tgz", "integrity": "sha512-7O1FanKaJkpWFyCghFzIkLhehujV/frGkdofGLwhg5upbLyGsSfiTcZAdSzoPsSUgyPCkBkNMeWR8yVgPdQybg==", "dev": true, "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-ordered-values": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.0.tgz", "integrity": "sha512-wU4Z4D4uOIH+BUKkYid36gGDJNQtkVJT7Twv8qH6UyfttbbJWyw4/xIPuVEkkCtQLAJ0EdsNSh8dlvqkXb49TA==", "dev": true, "dependencies": { "cssnano-utils": "^3.1.0", "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-pseudo-is": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/postcss-pseudo-is/-/postcss-pseudo-is-0.3.0.tgz", "integrity": "sha512-ztGTR/GrExv9PANuMS5NpiB9lhm/9Hql2tZqWh5LVXNFqHZNKSD8cgzbMOfi4Xhdhkj2B/KNpI9bDwFQo+xdOA==", "dev": true, "dependencies": { "postcss-selector-parser": "^6.0.2" }, "engines": { "node": ">=8.0.0" }, "peerDependencies": { "postcss": "^8.0.0" } }, "node_modules/postcss-reduce-initial": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.0.tgz", "integrity": "sha512-5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw==", "dev": true, "dependencies": { "browserslist": "^4.16.6", "caniuse-api": "^3.0.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-reduce-transforms": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", "dev": true, "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-resolve-nested-selector": { "version": "0.1.6", "resolved": "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.6.tgz", "integrity": "sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw==", "dev": true, "license": "MIT" }, "node_modules/postcss-safe-parser": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-7.0.1.tgz", "integrity": "sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A==", "dev": true, "funding": [ { "type": "opencollective", "url": "https://opencollective.com/postcss/" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/postcss-safe-parser" }, { "type": "github", "url": "https://github.com/sponsors/ai" } ], "license": "MIT", "engines": { "node": ">=18.0" }, "peerDependencies": { "postcss": "^8.4.31" } }, "node_modules/postcss-scss": { "version": "4.0.9", "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-4.0.9.tgz", "integrity": "sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==", "dev": true, "funding": [ { "type": "opencollective", "url": "https://opencollective.com/postcss/" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/postcss-scss" }, { "type": "github", "url": "https://github.com/sponsors/ai" } ], "license": "MIT", "engines": { "node": ">=12.0" }, "peerDependencies": { "postcss": "^8.4.29" } }, "node_modules/postcss-selector-parser": { "version": "6.1.2", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", "dev": true, "license": "MIT", "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" }, "engines": { "node": ">=4" } }, "node_modules/postcss-sorting": { "version": "8.0.2", "resolved": "https://registry.npmjs.org/postcss-sorting/-/postcss-sorting-8.0.2.tgz", "integrity": "sha512-M9dkSrmU00t/jK7rF6BZSZauA5MAaBW4i5EnJXspMwt4iqTh/L9j6fgMnbElEOfyRyfLfVbIHj/R52zHzAPe1Q==", "dev": true, "peerDependencies": { "postcss": "^8.4.20" } }, "node_modules/postcss-svgo": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", "dev": true, "dependencies": { "postcss-value-parser": "^4.2.0", "svgo": "^2.7.0" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-svgo/node_modules/commander": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", "dev": true, "engines": { "node": ">= 10" } }, "node_modules/postcss-svgo/node_modules/css-select": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", "dev": true, "dependencies": { "boolbase": "^1.0.0", "css-what": "^6.0.1", "domhandler": "^4.3.1", "domutils": "^2.8.0", "nth-check": "^2.0.1" }, "funding": { "url": "https://github.com/sponsors/fb55" } }, "node_modules/postcss-svgo/node_modules/css-tree": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", "dev": true, "dependencies": { "mdn-data": "2.0.14", "source-map": "^0.6.1" }, "engines": { "node": ">=8.0.0" } }, "node_modules/postcss-svgo/node_modules/csso": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", "dev": true, "dependencies": { "css-tree": "^1.1.2" }, "engines": { "node": ">=8.0.0" } }, "node_modules/postcss-svgo/node_modules/dom-serializer": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", "dev": true, "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.2.0", "entities": "^2.0.0" }, "funding": { "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, "node_modules/postcss-svgo/node_modules/domelementtype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/fb55" } ] }, "node_modules/postcss-svgo/node_modules/domutils": { "version": "2.8.0", "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "dev": true, "dependencies": { "dom-serializer": "^1.0.1", "domelementtype": "^2.2.0", "domhandler": "^4.2.0" }, "funding": { "url": "https://github.com/fb55/domutils?sponsor=1" } }, "node_modules/postcss-svgo/node_modules/mdn-data": { "version": "2.0.14", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", "dev": true }, "node_modules/postcss-svgo/node_modules/svgo": { "version": "2.8.0", "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", "dev": true, "dependencies": { "@trysound/sax": "0.2.0", "commander": "^7.2.0", "css-select": "^4.1.3", "css-tree": "^1.1.3", "csso": "^4.2.0", "picocolors": "^1.0.0", "stable": "^0.1.8" }, "bin": { "svgo": "bin/svgo" }, "engines": { "node": ">=10.13.0" } }, "node_modules/postcss-unique-selectors": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.0.tgz", "integrity": "sha512-LmUhgGobtpeVJJHuogzjLRwJlN7VH+BL5c9GKMVJSS/ejoyePZkXvNsYUtk//F6vKOGK86gfRS0xH7fXQSDtvA==", "dev": true, "dependencies": { "postcss-selector-parser": "^6.0.5" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/postcss-value-parser": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", "dev": true }, "node_modules/preact": { "version": "10.25.4", "resolved": "https://registry.npmjs.org/preact/-/preact-10.25.4.tgz", "integrity": "sha512-jLdZDb+Q+odkHJ+MpW/9U5cODzqnB+fy2EiHSZES7ldV5LK7yjlVzTp7R8Xy6W6y75kfK8iWYtFVH7lvjwrCMA==", "dev": true, "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/preact" } }, "node_modules/prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, "engines": { "node": ">= 0.8.0" } }, "node_modules/punycode": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/query-string": { "version": "6.14.1", "resolved": "https://registry.npmjs.org/query-string/-/query-string-6.14.1.tgz", "integrity": "sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==", "dev": true, "dependencies": { "decode-uri-component": "^0.2.0", "filter-obj": "^1.1.0", "split-on-first": "^1.0.0", "strict-uri-encode": "^2.0.0" }, "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ] }, "node_modules/read-pkg": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", "dev": true, "dependencies": { "load-json-file": "^4.0.0", "normalize-package-data": "^2.3.2", "path-type": "^3.0.0" }, "engines": { "node": ">=4" } }, "node_modules/read-pkg/node_modules/path-type": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", "dev": true, "dependencies": { "pify": "^3.0.0" }, "engines": { "node": ">=4" } }, "node_modules/readdirp": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.0.1.tgz", "integrity": "sha512-GkMg9uOTpIWWKbSsgwb5fA4EavTR+SG/PMPoAY8hkhHfEEY0/vqljY+XHqtDf2cr2IJtoNRDbrrEpZUiZCkYRw==", "dev": true, "license": "MIT", "engines": { "node": ">= 14.16.0" }, "funding": { "type": "individual", "url": "https://paulmillr.com/funding/" } }, "node_modules/regexp.prototype.flags": { "version": "1.5.2", "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.6", "define-properties": "^1.2.1", "es-errors": "^1.3.0", "set-function-name": "^2.0.1" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/relateurl": { "version": "0.2.7", "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=", "dev": true, "engines": { "node": ">= 0.10" } }, "node_modules/require-from-string": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/resolve": { "version": "1.22.8", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", "dev": true, "dependencies": { "is-core-module": "^2.13.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/resolve-from": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true, "engines": { "node": ">=4" } }, "node_modules/restore-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", "dev": true, "dependencies": { "onetime": "^5.1.0", "signal-exit": "^3.0.2" }, "engines": { "node": ">=8" } }, "node_modules/reusify": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "dev": true, "engines": { "iojs": ">=1.0.0", "node": ">=0.10.0" } }, "node_modules/rimraf": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-6.0.1.tgz", "integrity": "sha512-9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A==", "dev": true, "license": "ISC", "dependencies": { "glob": "^11.0.0", "package-json-from-dist": "^1.0.0" }, "bin": { "rimraf": "dist/esm/bin.mjs" }, "engines": { "node": "20 || >=22" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/rimraf/node_modules/brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, "license": "MIT", "dependencies": { "balanced-match": "^1.0.0" } }, "node_modules/rimraf/node_modules/glob": { "version": "11.0.0", "resolved": "https://registry.npmjs.org/glob/-/glob-11.0.0.tgz", "integrity": "sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==", "dev": true, "license": "ISC", "dependencies": { "foreground-child": "^3.1.0", "jackspeak": "^4.0.1", "minimatch": "^10.0.0", "minipass": "^7.1.2", "package-json-from-dist": "^1.0.0", "path-scurry": "^2.0.0" }, "bin": { "glob": "dist/esm/bin.mjs" }, "engines": { "node": "20 || >=22" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/rimraf/node_modules/jackspeak": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.0.1.tgz", "integrity": "sha512-cub8rahkh0Q/bw1+GxP7aeSe29hHHn2V4m29nnDlvCdlgU+3UGxkZp7Z53jLUdpX3jdTO0nJZUDl3xvbWc2Xog==", "dev": true, "license": "BlueOak-1.0.0", "dependencies": { "@isaacs/cliui": "^8.0.2" }, "engines": { "node": "20 || >=22" }, "funding": { "url": "https://github.com/sponsors/isaacs" }, "optionalDependencies": { "@pkgjs/parseargs": "^0.11.0" } }, "node_modules/rimraf/node_modules/lru-cache": { "version": "11.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.0.0.tgz", "integrity": "sha512-Qv32eSV1RSCfhY3fpPE2GNZ8jgM9X7rdAfemLWqTUxwiyIC4jJ6Sy0fZ8H+oLWevO6i4/bizg7c8d8i6bxrzbA==", "dev": true, "license": "ISC", "engines": { "node": "20 || >=22" } }, "node_modules/rimraf/node_modules/minimatch": { "version": "10.0.1", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz", "integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==", "dev": true, "license": "ISC", "dependencies": { "brace-expansion": "^2.0.1" }, "engines": { "node": "20 || >=22" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/rimraf/node_modules/minipass": { "version": "7.1.2", "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", "dev": true, "license": "ISC", "engines": { "node": ">=16 || 14 >=14.17" } }, "node_modules/rimraf/node_modules/path-scurry": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.0.tgz", "integrity": "sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==", "dev": true, "license": "BlueOak-1.0.0", "dependencies": { "lru-cache": "^11.0.0", "minipass": "^7.1.2" }, "engines": { "node": "20 || >=22" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ], "dependencies": { "queue-microtask": "^1.2.2" } }, "node_modules/rxjs": { "version": "7.8.1", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", "dependencies": { "tslib": "^2.1.0" } }, "node_modules/safe-array-concat": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "get-intrinsic": "^1.2.4", "has-symbols": "^1.0.3", "isarray": "^2.0.5" }, "engines": { "node": ">=0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/safe-regex-test": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.6", "es-errors": "^1.3.0", "is-regex": "^1.1.4" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", "dev": true, "optional": true, "peer": true }, "node_modules/sass": { "version": "1.83.4", "resolved": "https://registry.npmjs.org/sass/-/sass-1.83.4.tgz", "integrity": "sha512-B1bozCeNQiOgDcLd33e2Cs2U60wZwjUUXzh900ZyQF5qUasvMdDZYbQ566LJu7cqR+sAHlAfO6RMkaID5s6qpA==", "dev": true, "license": "MIT", "dependencies": { "chokidar": "^4.0.0", "immutable": "^5.0.2", "source-map-js": ">=0.6.2 <2.0.0" }, "bin": { "sass": "sass.js" }, "engines": { "node": ">=14.0.0" }, "optionalDependencies": { "@parcel/watcher": "^2.4.1" } }, "node_modules/select": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/select/-/select-1.1.2.tgz", "integrity": "sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0=" }, "node_modules/semver": { "version": "7.6.3", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" }, "engines": { "node": ">=10" } }, "node_modules/set-function-length": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", "dev": true, "license": "MIT", "dependencies": { "define-data-property": "^1.1.4", "es-errors": "^1.3.0", "function-bind": "^1.1.2", "get-intrinsic": "^1.2.4", "gopd": "^1.0.1", "has-property-descriptors": "^1.0.2" }, "engines": { "node": ">= 0.4" } }, "node_modules/set-function-name": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", "dev": true, "license": "MIT", "dependencies": { "define-data-property": "^1.1.4", "es-errors": "^1.3.0", "functions-have-names": "^1.2.3", "has-property-descriptors": "^1.0.2" }, "engines": { "node": ">= 0.4" } }, "node_modules/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, "dependencies": { "shebang-regex": "^3.0.0" }, "engines": { "node": ">=8" } }, "node_modules/shebang-regex": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/shell-quote": { "version": "1.7.3", "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz", "integrity": "sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==", "dev": true }, "node_modules/side-channel": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.4", "object-inspect": "^1.13.1" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/signal-exit": { "version": "3.0.7", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, "node_modules/simple-icons": { "version": "14.4.0", "resolved": "https://registry.npmjs.org/simple-icons/-/simple-icons-14.4.0.tgz", "integrity": "sha512-eR4WWGF2/dMn6Na7wQZ9nUnGQg4CC9MnqYUlKKfIO0kQ79BdwyFS2L+X/MIxArULsh/IE0U48d4r9N4JVPicIQ==", "dev": true, "license": "CC0-1.0", "engines": { "node": ">=0.12.18" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/simple-icons" } }, "node_modules/slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/slashes": { "version": "3.0.12", "resolved": "https://registry.npmjs.org/slashes/-/slashes-3.0.12.tgz", "integrity": "sha512-Q9VME8WyGkc7pJf6QEkj3wE+2CnvZMI+XJhwdTPR8Z/kWQRXi7boAWLDibRPyHRTUTPx5FaU7MsyrjI3yLB4HA==", "dev": true, "license": "ISC" }, "node_modules/slice-ansi": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "astral-regex": "^2.0.0", "is-fullwidth-code-point": "^3.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, "node_modules/slice-ansi/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/slice-ansi/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, "engines": { "node": ">=7.0.0" } }, "node_modules/slice-ansi/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true, "license": "MIT" }, "node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/source-map-js": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/source-map-support": { "version": "0.5.21", "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "dev": true, "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" } }, "node_modules/spdx-correct": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", "dev": true, "dependencies": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" } }, "node_modules/spdx-exceptions": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", "dev": true }, "node_modules/spdx-expression-parse": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "dev": true, "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" } }, "node_modules/spdx-license-ids": { "version": "3.0.7", "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz", "integrity": "sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==", "dev": true }, "node_modules/split-on-first": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz", "integrity": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/stable": { "version": "0.1.8", "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility", "dev": true }, "node_modules/strict-uri-encode": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz", "integrity": "sha1-ucczDHBChi9rFC3CdLvMWGbONUY=", "dev": true, "engines": { "node": ">=4" } }, "node_modules/string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" }, "engines": { "node": ">=8" } }, "node_modules/string-width-cjs": { "name": "string-width", "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" }, "engines": { "node": ">=8" } }, "node_modules/string.prototype.padend": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.2.tgz", "integrity": "sha512-/AQFLdYvePENU3W5rgurfWSMU6n+Ww8n/3cUt7E+vPBB/D7YDG8x+qjoFs4M/alR2bW7Qg6xMjVwWUOvuQ0XpQ==", "dev": true, "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.3", "es-abstract": "^1.18.0-next.2" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/string.prototype.trim": { "version": "1.2.9", "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-abstract": "^1.23.0", "es-object-atoms": "^1.0.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/string.prototype.trimend": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/string.prototype.trimstart": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "dependencies": { "ansi-regex": "^5.0.1" }, "engines": { "node": ">=8" } }, "node_modules/strip-ansi-cjs": { "name": "strip-ansi", "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "dependencies": { "ansi-regex": "^5.0.1" }, "engines": { "node": ">=8" } }, "node_modules/strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", "dev": true, "engines": { "node": ">=4" } }, "node_modules/strip-json-comments": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/style-search": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", "integrity": "sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==", "dev": true, "license": "ISC" }, "node_modules/stylehacks": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.0.tgz", "integrity": "sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==", "dev": true, "dependencies": { "browserslist": "^4.16.6", "postcss-selector-parser": "^6.0.4" }, "engines": { "node": "^10 || ^12 || >=14.0" }, "peerDependencies": { "postcss": "^8.2.15" } }, "node_modules/stylelint": { "version": "16.12.0", "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.12.0.tgz", "integrity": "sha512-F8zZ3L/rBpuoBZRvI4JVT20ZanPLXfQLzMOZg1tzPflRVh9mKpOZ8qcSIhh1my3FjAjZWG4T2POwGnmn6a6hbg==", "dev": true, "funding": [ { "type": "opencollective", "url": "https://opencollective.com/stylelint" }, { "type": "github", "url": "https://github.com/sponsors/stylelint" } ], "license": "MIT", "dependencies": { "@csstools/css-parser-algorithms": "^3.0.4", "@csstools/css-tokenizer": "^3.0.3", "@csstools/media-query-list-parser": "^4.0.2", "@csstools/selector-specificity": "^5.0.0", "@dual-bundle/import-meta-resolve": "^4.1.0", "balanced-match": "^2.0.0", "colord": "^2.9.3", "cosmiconfig": "^9.0.0", "css-functions-list": "^3.2.3", "css-tree": "^3.0.1", "debug": "^4.3.7", "fast-glob": "^3.3.2", "fastest-levenshtein": "^1.0.16", "file-entry-cache": "^9.1.0", "global-modules": "^2.0.0", "globby": "^11.1.0", "globjoin": "^0.1.4", "html-tags": "^3.3.1", "ignore": "^6.0.2", "imurmurhash": "^0.1.4", "is-plain-object": "^5.0.0", "known-css-properties": "^0.35.0", "mathml-tag-names": "^2.1.3", "meow": "^13.2.0", "micromatch": "^4.0.8", "normalize-path": "^3.0.0", "picocolors": "^1.1.1", "postcss": "^8.4.49", "postcss-resolve-nested-selector": "^0.1.6", "postcss-safe-parser": "^7.0.1", "postcss-selector-parser": "^7.0.0", "postcss-value-parser": "^4.2.0", "resolve-from": "^5.0.0", "string-width": "^4.2.3", "supports-hyperlinks": "^3.1.0", "svg-tags": "^1.0.0", "table": "^6.9.0", "write-file-atomic": "^5.0.1" }, "bin": { "stylelint": "bin/stylelint.mjs" }, "engines": { "node": ">=18.12.0" } }, "node_modules/stylelint-config-recess-order": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/stylelint-config-recess-order/-/stylelint-config-recess-order-5.1.1.tgz", "integrity": "sha512-eDAHWVBelzDbMbdMj15pSw0Ycykv5eLeriJdbGCp0zd44yvhgZLI+wyVHegzXp5NrstxTPSxl0fuOVKdMm0XLA==", "dev": true, "license": "ISC", "dependencies": { "stylelint-order": "^6.0.4" }, "peerDependencies": { "stylelint": ">=16" } }, "node_modules/stylelint-config-recommended": { "version": "14.0.1", "resolved": "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-14.0.1.tgz", "integrity": "sha512-bLvc1WOz/14aPImu/cufKAZYfXs/A/owZfSMZ4N+16WGXLoX5lOir53M6odBxvhgmgdxCVnNySJmZKx73T93cg==", "dev": true, "funding": [ { "type": "opencollective", "url": "https://opencollective.com/stylelint" }, { "type": "github", "url": "https://github.com/sponsors/stylelint" } ], "license": "MIT", "engines": { "node": ">=18.12.0" }, "peerDependencies": { "stylelint": "^16.1.0" } }, "node_modules/stylelint-config-recommended-scss": { "version": "14.1.0", "resolved": "https://registry.npmjs.org/stylelint-config-recommended-scss/-/stylelint-config-recommended-scss-14.1.0.tgz", "integrity": "sha512-bhaMhh1u5dQqSsf6ri2GVWWQW5iUjBYgcHkh7SgDDn92ijoItC/cfO/W+fpXshgTQWhwFkP1rVcewcv4jaftRg==", "dev": true, "license": "MIT", "dependencies": { "postcss-scss": "^4.0.9", "stylelint-config-recommended": "^14.0.1", "stylelint-scss": "^6.4.0" }, "engines": { "node": ">=18.12.0" }, "peerDependencies": { "postcss": "^8.3.3", "stylelint": "^16.6.1" }, "peerDependenciesMeta": { "postcss": { "optional": true } } }, "node_modules/stylelint-config-standard": { "version": "36.0.1", "resolved": "https://registry.npmjs.org/stylelint-config-standard/-/stylelint-config-standard-36.0.1.tgz", "integrity": "sha512-8aX8mTzJ6cuO8mmD5yon61CWuIM4UD8Q5aBcWKGSf6kg+EC3uhB+iOywpTK4ca6ZL7B49en8yanOFtUW0qNzyw==", "dev": true, "funding": [ { "type": "opencollective", "url": "https://opencollective.com/stylelint" }, { "type": "github", "url": "https://github.com/sponsors/stylelint" } ], "license": "MIT", "dependencies": { "stylelint-config-recommended": "^14.0.1" }, "engines": { "node": ">=18.12.0" }, "peerDependencies": { "stylelint": "^16.1.0" } }, "node_modules/stylelint-config-standard-scss": { "version": "14.0.0", "resolved": "https://registry.npmjs.org/stylelint-config-standard-scss/-/stylelint-config-standard-scss-14.0.0.tgz", "integrity": "sha512-6Pa26D9mHyi4LauJ83ls3ELqCglU6VfCXchovbEqQUiEkezvKdv6VgsIoMy58i00c854wVmOw0k8W5FTpuaVqg==", "dev": true, "license": "MIT", "dependencies": { "stylelint-config-recommended-scss": "^14.1.0", "stylelint-config-standard": "^36.0.1" }, "engines": { "node": ">=18.12.0" }, "peerDependencies": { "postcss": "^8.3.3", "stylelint": "^16.11.0" }, "peerDependenciesMeta": { "postcss": { "optional": true } } }, "node_modules/stylelint-order": { "version": "6.0.4", "resolved": "https://registry.npmjs.org/stylelint-order/-/stylelint-order-6.0.4.tgz", "integrity": "sha512-0UuKo4+s1hgQ/uAxlYU4h0o0HS4NiQDud0NAUNI0aa8FJdmYHA5ZZTFHiV5FpmE3071e9pZx5j0QpVJW5zOCUA==", "dev": true, "dependencies": { "postcss": "^8.4.32", "postcss-sorting": "^8.0.2" }, "peerDependencies": { "stylelint": "^14.0.0 || ^15.0.0 || ^16.0.1" } }, "node_modules/stylelint-scss": { "version": "6.11.0", "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-6.11.0.tgz", "integrity": "sha512-AvJ6LVzz2iXHxPlPTR9WVy73FC/vmohH54VySNlCKX1NIXNAeuzy/VbIkMJLMyw/xKYqkgY4kAgB+qy5BfCaCg==", "dev": true, "license": "MIT", "dependencies": { "css-tree": "^3.0.1", "is-plain-object": "^5.0.0", "known-css-properties": "^0.35.0", "mdn-data": "^2.15.0", "postcss-media-query-parser": "^0.2.3", "postcss-resolve-nested-selector": "^0.1.6", "postcss-selector-parser": "^7.0.0", "postcss-value-parser": "^4.2.0" }, "engines": { "node": ">=18.12.0" }, "peerDependencies": { "stylelint": "^16.0.2" } }, "node_modules/stylelint-scss/node_modules/css-tree": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.0.1.tgz", "integrity": "sha512-8Fxxv+tGhORlshCdCwnNJytvlvq46sOLSYEx2ZIGurahWvMucSRnyjPA3AmrMq4VPRYbHVpWj5VkiVasrM2H4Q==", "dev": true, "license": "MIT", "dependencies": { "mdn-data": "2.12.1", "source-map-js": "^1.0.1" }, "engines": { "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" } }, "node_modules/stylelint-scss/node_modules/css-tree/node_modules/mdn-data": { "version": "2.12.1", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.12.1.tgz", "integrity": "sha512-rsfnCbOHjqrhWxwt5/wtSLzpoKTzW7OXdT5lLOIH1OTYhWu9rRJveGq0sKvDZODABH7RX+uoR+DYcpFnq4Tf6Q==", "dev": true, "license": "CC0-1.0" }, "node_modules/stylelint-scss/node_modules/mdn-data": { "version": "2.15.0", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.15.0.tgz", "integrity": "sha512-KIrS0lFPOqA4DgeO16vI5fkAsy8p++WBlbXtB5P1EQs8ubBgguAInNd1DnrCeTRfGchY0kgThgDOOIPyOLH2dQ==", "dev": true, "license": "CC0-1.0" }, "node_modules/stylelint-scss/node_modules/postcss-selector-parser": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", "dev": true, "license": "MIT", "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" }, "engines": { "node": ">=4" } }, "node_modules/stylelint/node_modules/@csstools/media-query-list-parser": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-4.0.2.tgz", "integrity": "sha512-EUos465uvVvMJehckATTlNqGj4UJWkTmdWuDMjqvSUkjGpmOyFZBVwb4knxCm/k2GMTXY+c/5RkdndzFYWeX5A==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/csstools" }, { "type": "opencollective", "url": "https://opencollective.com/csstools" } ], "license": "MIT", "engines": { "node": ">=18" }, "peerDependencies": { "@csstools/css-parser-algorithms": "^3.0.4", "@csstools/css-tokenizer": "^3.0.3" } }, "node_modules/stylelint/node_modules/@csstools/selector-specificity": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz", "integrity": "sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/csstools" }, { "type": "opencollective", "url": "https://opencollective.com/csstools" } ], "license": "MIT-0", "engines": { "node": ">=18" }, "peerDependencies": { "postcss-selector-parser": "^7.0.0" } }, "node_modules/stylelint/node_modules/balanced-match": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", "dev": true }, "node_modules/stylelint/node_modules/css-tree": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.1.0.tgz", "integrity": "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==", "dev": true, "license": "MIT", "dependencies": { "mdn-data": "2.12.2", "source-map-js": "^1.0.1" }, "engines": { "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" } }, "node_modules/stylelint/node_modules/file-entry-cache": { "version": "9.1.0", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-9.1.0.tgz", "integrity": "sha512-/pqPFG+FdxWQj+/WSuzXSDaNzxgTLr/OrR1QuqfEZzDakpdYE70PwUxL7BPUa8hpjbvY1+qvCl8k+8Tq34xJgg==", "dev": true, "license": "MIT", "dependencies": { "flat-cache": "^5.0.0" }, "engines": { "node": ">=18" } }, "node_modules/stylelint/node_modules/flat-cache": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-5.0.0.tgz", "integrity": "sha512-JrqFmyUl2PnPi1OvLyTVHnQvwQ0S+e6lGSwu8OkAZlSaNIZciTY2H/cOOROxsBA1m/LZNHDsqAgDZt6akWcjsQ==", "dev": true, "license": "MIT", "dependencies": { "flatted": "^3.3.1", "keyv": "^4.5.4" }, "engines": { "node": ">=18" } }, "node_modules/stylelint/node_modules/ignore": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/ignore/-/ignore-6.0.2.tgz", "integrity": "sha512-InwqeHHN2XpumIkMvpl/DCJVrAHgCsG5+cn1XlnLWGwtZBm8QJfSusItfrwx81CTp5agNZqpKU2J/ccC5nGT4A==", "dev": true, "license": "MIT", "engines": { "node": ">= 4" } }, "node_modules/stylelint/node_modules/mdn-data": { "version": "2.12.2", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.12.2.tgz", "integrity": "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==", "dev": true, "license": "CC0-1.0" }, "node_modules/stylelint/node_modules/postcss-selector-parser": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", "dev": true, "license": "MIT", "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" }, "engines": { "node": ">=4" } }, "node_modules/stylelint/node_modules/resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/stylelint/node_modules/signal-exit": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.1.tgz", "integrity": "sha512-uUWsN4aOxJAS8KOuf3QMyFtgm1pkb6I+KRZbRF/ghdf5T7sM+B1lLLzPDxswUjkmHyxQAVzEgG35E3NzDM9GVw==", "dev": true, "engines": { "node": ">=14" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/stylelint/node_modules/write-file-atomic": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-5.0.1.tgz", "integrity": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==", "dev": true, "dependencies": { "imurmurhash": "^0.1.4", "signal-exit": "^4.0.1" }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { "has-flag": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/supports-color/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/supports-hyperlinks": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.1.0.tgz", "integrity": "sha512-2rn0BZ+/f7puLOHZm1HOJfwBggfaHXUpPUSSG/SWM4TWp5KCfmNYwnC3hruy2rZlMnmWZ+QAGpZfchu3f3695A==", "dev": true, "license": "MIT", "dependencies": { "has-flag": "^4.0.0", "supports-color": "^7.0.0" }, "engines": { "node": ">=14.18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/supports-hyperlinks/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "dev": true, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/svg-tags": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", "integrity": "sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q=", "dev": true }, "node_modules/svgo": { "version": "3.3.2", "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.3.2.tgz", "integrity": "sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==", "dev": true, "license": "MIT", "dependencies": { "@trysound/sax": "0.2.0", "commander": "^7.2.0", "css-select": "^5.1.0", "css-tree": "^2.3.1", "css-what": "^6.1.0", "csso": "^5.0.5", "picocolors": "^1.0.0" }, "bin": { "svgo": "bin/svgo" }, "engines": { "node": ">=14.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/svgo" } }, "node_modules/svgo/node_modules/commander": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", "dev": true, "engines": { "node": ">= 10" } }, "node_modules/svgo/node_modules/css-tree": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", "dev": true, "license": "MIT", "dependencies": { "mdn-data": "2.0.30", "source-map-js": "^1.0.1" }, "engines": { "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" } }, "node_modules/svgo/node_modules/mdn-data": { "version": "2.0.30", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", "dev": true, "license": "CC0-1.0" }, "node_modules/synckit": { "version": "0.9.1", "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.9.1.tgz", "integrity": "sha512-7gr8p9TQP6RAHusBOSLs46F4564ZrjV8xFmw5zCmgmhGUcw2hxsShhJ6CEiHQMgPDwAQ1fWHPM0ypc4RMAig4A==", "dev": true, "license": "MIT", "dependencies": { "@pkgr/core": "^0.1.0", "tslib": "^2.6.2" }, "engines": { "node": "^14.18.0 || >=16.0.0" }, "funding": { "url": "https://opencollective.com/unts" } }, "node_modules/sywac": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/sywac/-/sywac-1.3.0.tgz", "integrity": "sha512-LDt2stNTp4bVPMgd70Jj9PWrSa4batl+bv+Ea5NLNGT7ufc4oQPtRfQ73wbddNV6RilaPqnEt6y1Wkm5FVTNEg==", "dev": true, "engines": { "node": ">=4" } }, "node_modules/table": { "version": "6.9.0", "resolved": "https://registry.npmjs.org/table/-/table-6.9.0.tgz", "integrity": "sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==", "dev": true, "license": "BSD-3-Clause", "dependencies": { "ajv": "^8.0.1", "lodash.truncate": "^4.4.2", "slice-ansi": "^4.0.0", "string-width": "^4.2.3", "strip-ansi": "^6.0.1" }, "engines": { "node": ">=10.0.0" } }, "node_modules/table/node_modules/ajv": { "version": "8.17.1", "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3", "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2" }, "funding": { "type": "github", "url": "https://github.com/sponsors/epoberezkin" } }, "node_modules/table/node_modules/json-schema-traverse": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true, "license": "MIT" }, "node_modules/terser": { "version": "5.31.6", "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.6.tgz", "integrity": "sha512-PQ4DAriWzKj+qgehQ7LK5bQqCFNMmlhjR2PFFLuqGCpuCAauxemVBWwWOxo3UIwWQx8+Pr61Df++r76wDmkQBg==", "dev": true, "license": "BSD-2-Clause", "dependencies": { "@jridgewell/source-map": "^0.3.3", "acorn": "^8.8.2", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, "bin": { "terser": "bin/terser" }, "engines": { "node": ">=10" } }, "node_modules/text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", "dev": true }, "node_modules/timsort": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=", "dev": true }, "node_modules/tiny-emitter": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz", "integrity": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==" }, "node_modules/tiny-glob": { "version": "0.2.9", "resolved": "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz", "integrity": "sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==", "dev": true, "dependencies": { "globalyzer": "0.1.0", "globrex": "^0.1.2" } }, "node_modules/to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, "dependencies": { "is-number": "^7.0.0" }, "engines": { "node": ">=8.0" } }, "node_modules/tr46": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=", "dev": true }, "node_modules/ts-api-utils": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.0.0.tgz", "integrity": "sha512-xCt/TOAc+EOHS1XPnijD3/yzpH6qg2xppZO1YDqGoVsNXfQfzHpOdNuXwrwOU8u4ITXJyDCTyt8w5g1sZv9ynQ==", "dev": true, "license": "MIT", "engines": { "node": ">=18.12" }, "peerDependencies": { "typescript": ">=4.8.4" } }, "node_modules/ts-node": { "version": "10.9.2", "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", "dev": true, "dependencies": { "@cspotcode/source-map-support": "^0.8.0", "@tsconfig/node10": "^1.0.7", "@tsconfig/node12": "^1.0.7", "@tsconfig/node14": "^1.0.0", "@tsconfig/node16": "^1.0.2", "acorn": "^8.4.1", "acorn-walk": "^8.1.1", "arg": "^4.1.0", "create-require": "^1.1.0", "diff": "^4.0.1", "make-error": "^1.1.1", "v8-compile-cache-lib": "^3.0.1", "yn": "3.1.1" }, "bin": { "ts-node": "dist/bin.js", "ts-node-cwd": "dist/bin-cwd.js", "ts-node-esm": "dist/bin-esm.js", "ts-node-script": "dist/bin-script.js", "ts-node-transpile-only": "dist/bin-transpile.js", "ts-script": "dist/bin-script-deprecated.js" }, "peerDependencies": { "@swc/core": ">=1.2.50", "@swc/wasm": ">=1.2.50", "@types/node": "*", "typescript": ">=2.7" }, "peerDependenciesMeta": { "@swc/core": { "optional": true }, "@swc/wasm": { "optional": true } } }, "node_modules/tsconfig-paths": { "version": "3.15.0", "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", "dev": true, "dependencies": { "@types/json5": "^0.0.29", "json5": "^1.0.2", "minimist": "^1.2.6", "strip-bom": "^3.0.0" } }, "node_modules/tslib": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==", "license": "0BSD" }, "node_modules/type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, "dependencies": { "prelude-ls": "^1.2.1" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/type-fest": { "version": "0.20.2", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/typed-array-buffer": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "es-errors": "^1.3.0", "is-typed-array": "^1.1.13" }, "engines": { "node": ">= 0.4" } }, "node_modules/typed-array-byte-length": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "for-each": "^0.3.3", "gopd": "^1.0.1", "has-proto": "^1.0.3", "is-typed-array": "^1.1.13" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/typed-array-byte-offset": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", "dev": true, "license": "MIT", "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.7", "for-each": "^0.3.3", "gopd": "^1.0.1", "has-proto": "^1.0.3", "is-typed-array": "^1.1.13" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/typed-array-length": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "for-each": "^0.3.3", "gopd": "^1.0.1", "has-proto": "^1.0.3", "is-typed-array": "^1.1.13", "possible-typed-array-names": "^1.0.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/typescript": { "version": "5.7.3", "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz", "integrity": "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==", "dev": true, "license": "Apache-2.0", "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" }, "engines": { "node": ">=14.17" } }, "node_modules/unbox-primitive": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", "dev": true, "dependencies": { "call-bind": "^1.0.2", "has-bigints": "^1.0.2", "has-symbols": "^1.0.3", "which-boxed-primitive": "^1.0.2" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/undici-types": { "version": "6.20.0", "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz", "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==", "dev": true, "license": "MIT" }, "node_modules/update-browserslist-db": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz", "integrity": "sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==", "dev": true, "funding": [ { "type": "opencollective", "url": "https://opencollective.com/browserslist" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/browserslist" }, { "type": "github", "url": "https://github.com/sponsors/ai" } ], "license": "MIT", "dependencies": { "escalade": "^3.1.2", "picocolors": "^1.0.1" }, "bin": { "update-browserslist-db": "cli.js" }, "peerDependencies": { "browserslist": ">= 4.21.0" } }, "node_modules/uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, "dependencies": { "punycode": "^2.1.0" } }, "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", "dev": true }, "node_modules/v8-compile-cache-lib": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", "dev": true }, "node_modules/validate-npm-package-license": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", "dev": true, "dependencies": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" } }, "node_modules/wcwidth": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", "integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=", "dev": true, "dependencies": { "defaults": "^1.0.3" } }, "node_modules/webidl-conversions": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=", "dev": true }, "node_modules/whatwg-url": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", "integrity": "sha1-lmRU6HZUYuN2RNNib2dCzotwll0=", "dev": true, "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" } }, "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, "dependencies": { "isexe": "^2.0.0" }, "bin": { "node-which": "bin/node-which" }, "engines": { "node": ">= 8" } }, "node_modules/which-boxed-primitive": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", "dev": true, "dependencies": { "is-bigint": "^1.0.1", "is-boolean-object": "^1.1.0", "is-number-object": "^1.0.4", "is-string": "^1.0.5", "is-symbol": "^1.0.3" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/which-typed-array": { "version": "1.1.15", "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", "dev": true, "license": "MIT", "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.7", "for-each": "^0.3.3", "gopd": "^1.0.1", "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/wrap-ansi": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", "dev": true, "dependencies": { "ansi-styles": "^6.1.0", "string-width": "^5.0.1", "strip-ansi": "^7.0.1" }, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, "node_modules/wrap-ansi-cjs": { "name": "wrap-ansi", "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { "color-convert": "^2.0.1" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/wrap-ansi-cjs/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { "color-name": "~1.1.4" }, "engines": { "node": ">=7.0.0" } }, "node_modules/wrap-ansi-cjs/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, "node_modules/wrap-ansi/node_modules/ansi-regex": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", "dev": true, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, "node_modules/wrap-ansi/node_modules/ansi-styles": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.1.0.tgz", "integrity": "sha512-VbqNsoz55SYGczauuup0MFUyXNQviSpFTj1RQtFzmQLk18qbVSpTFFGMT293rmDaQuKCT6InmbuEyUne4mTuxQ==", "dev": true, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/wrap-ansi/node_modules/emoji-regex": { "version": "9.2.2", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", "dev": true }, "node_modules/wrap-ansi/node_modules/string-width": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", "dev": true, "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", "strip-ansi": "^7.0.1" }, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/wrap-ansi/node_modules/strip-ansi": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", "dev": true, "dependencies": { "ansi-regex": "^6.0.1" }, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", "dev": true }, "node_modules/xcase": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/xcase/-/xcase-2.0.1.tgz", "integrity": "sha1-x/pyyqD0QNt4/VZzQyA4rJhEULk=", "dev": true }, "node_modules/yaml": { "version": "1.10.2", "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", "dev": true, "engines": { "node": ">= 6" } }, "node_modules/yn": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "dev": true, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } } }, "dependencies": { "@aashutoshrathi/word-wrap": { "version": "1.2.6", "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", "dev": true }, "@babel/code-frame": { "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", "dev": true, "requires": { "@babel/highlight": "^7.24.7", "picocolors": "^1.0.0" } }, "@babel/helper-validator-identifier": { "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", "dev": true }, "@babel/highlight": { "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", "dev": true, "requires": { "@babel/helper-validator-identifier": "^7.24.7", "chalk": "^2.4.2", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "@cspotcode/source-map-support": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", "dev": true, "requires": { "@jridgewell/trace-mapping": "0.3.9" } }, "@csstools/css-parser-algorithms": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.4.tgz", "integrity": "sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A==", "dev": true, "requires": {} }, "@csstools/css-tokenizer": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.3.tgz", "integrity": "sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==", "dev": true }, "@csstools/media-query-list-parser": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-3.0.1.tgz", "integrity": "sha512-HNo8gGD02kHmcbX6PvCoUuOQvn4szyB9ca63vZHKX5A81QytgDG4oxG4IaEfHTlEZSZ6MjPEMWIVU+zF2PZcgw==", "dev": true, "requires": {} }, "@dual-bundle/import-meta-resolve": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/@dual-bundle/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz", "integrity": "sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg==", "dev": true }, "@es-joy/jsdoccomment": { "version": "0.49.0", "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.49.0.tgz", "integrity": "sha512-xjZTSFgECpb9Ohuk5yMX5RhUEbfeQcuOp8IF60e+wyzWEF0M5xeSgqsfLtvPEX8BIyOX9saZqzuGPmZ8oWc+5Q==", "dev": true, "requires": { "comment-parser": "1.4.1", "esquery": "^1.6.0", "jsdoc-type-pratt-parser": "~4.1.0" } }, "@esbuild/aix-ppc64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.24.2.tgz", "integrity": "sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==", "dev": true, "optional": true }, "@esbuild/android-arm": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.24.2.tgz", "integrity": "sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==", "dev": true, "optional": true }, "@esbuild/android-arm64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.24.2.tgz", "integrity": "sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==", "dev": true, "optional": true }, "@esbuild/android-x64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.24.2.tgz", "integrity": "sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==", "dev": true, "optional": true }, "@esbuild/darwin-arm64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.24.2.tgz", "integrity": "sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==", "dev": true, "optional": true }, "@esbuild/darwin-x64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.24.2.tgz", "integrity": "sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==", "dev": true, "optional": true }, "@esbuild/freebsd-arm64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.2.tgz", "integrity": "sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==", "dev": true, "optional": true }, "@esbuild/freebsd-x64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.24.2.tgz", "integrity": "sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==", "dev": true, "optional": true }, "@esbuild/linux-arm": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.24.2.tgz", "integrity": "sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==", "dev": true, "optional": true }, "@esbuild/linux-arm64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.24.2.tgz", "integrity": "sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==", "dev": true, "optional": true }, "@esbuild/linux-ia32": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.24.2.tgz", "integrity": "sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==", "dev": true, "optional": true }, "@esbuild/linux-loong64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.24.2.tgz", "integrity": "sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==", "dev": true, "optional": true }, "@esbuild/linux-mips64el": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.24.2.tgz", "integrity": "sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==", "dev": true, "optional": true }, "@esbuild/linux-ppc64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.24.2.tgz", "integrity": "sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==", "dev": true, "optional": true }, "@esbuild/linux-riscv64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.24.2.tgz", "integrity": "sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==", "dev": true, "optional": true }, "@esbuild/linux-s390x": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.24.2.tgz", "integrity": "sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==", "dev": true, "optional": true }, "@esbuild/linux-x64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.24.2.tgz", "integrity": "sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==", "dev": true, "optional": true }, "@esbuild/netbsd-arm64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.24.2.tgz", "integrity": "sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==", "dev": true, "optional": true }, "@esbuild/netbsd-x64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.24.2.tgz", "integrity": "sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==", "dev": true, "optional": true }, "@esbuild/openbsd-arm64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.2.tgz", "integrity": "sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==", "dev": true, "optional": true }, "@esbuild/openbsd-x64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.24.2.tgz", "integrity": "sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==", "dev": true, "optional": true }, "@esbuild/sunos-x64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.24.2.tgz", "integrity": "sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==", "dev": true, "optional": true }, "@esbuild/win32-arm64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.24.2.tgz", "integrity": "sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==", "dev": true, "optional": true }, "@esbuild/win32-ia32": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.24.2.tgz", "integrity": "sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==", "dev": true, "optional": true }, "@esbuild/win32-x64": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.24.2.tgz", "integrity": "sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==", "dev": true, "optional": true }, "@eslint-community/eslint-utils": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", "dev": true, "requires": { "eslint-visitor-keys": "^3.3.0" } }, "@eslint-community/regexpp": { "version": "4.11.0", "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.0.tgz", "integrity": "sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==", "dev": true }, "@eslint/eslintrc": { "version": "2.1.4", "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", "dev": true, "requires": { "ajv": "^6.12.4", "debug": "^4.3.2", "espree": "^9.6.0", "globals": "^13.19.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", "minimatch": "^3.1.2", "strip-json-comments": "^3.1.1" } }, "@eslint/js": { "version": "8.57.0", "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", "dev": true }, "@fortawesome/fontawesome-free": { "version": "6.7.2", "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-free/-/fontawesome-free-6.7.2.tgz", "integrity": "sha512-JUOtgFW6k9u4Y+xeIaEiLr3+cjoUPiAuLXoyKOJSia6Duzb7pq+A76P9ZdPDoAoxHdHzq6gE9/jKBGXlZT8FbA==", "dev": true }, "@humanwhocodes/config-array": { "version": "0.11.14", "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", "dev": true, "requires": { "@humanwhocodes/object-schema": "^2.0.2", "debug": "^4.3.1", "minimatch": "^3.0.5" } }, "@humanwhocodes/module-importer": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", "dev": true }, "@humanwhocodes/object-schema": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", "dev": true }, "@isaacs/cliui": { "version": "8.0.2", "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", "dev": true, "requires": { "string-width": "^5.1.2", "string-width-cjs": "npm:string-width@^4.2.0", "strip-ansi": "^7.0.1", "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", "wrap-ansi": "^8.1.0", "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" }, "dependencies": { "ansi-regex": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", "dev": true }, "emoji-regex": { "version": "9.2.2", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", "dev": true }, "string-width": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", "dev": true, "requires": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", "strip-ansi": "^7.0.1" } }, "strip-ansi": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", "dev": true, "requires": { "ansi-regex": "^6.0.1" } } } }, "@jridgewell/gen-mapping": { "version": "0.3.5", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", "dev": true, "requires": { "@jridgewell/set-array": "^1.2.1", "@jridgewell/sourcemap-codec": "^1.4.10", "@jridgewell/trace-mapping": "^0.3.24" }, "dependencies": { "@jridgewell/trace-mapping": { "version": "0.3.25", "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", "dev": true, "requires": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" } } } }, "@jridgewell/resolve-uri": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", "dev": true }, "@jridgewell/set-array": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", "dev": true }, "@jridgewell/source-map": { "version": "0.3.6", "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", "dev": true, "requires": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25" }, "dependencies": { "@jridgewell/trace-mapping": { "version": "0.3.25", "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", "dev": true, "requires": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" } } } }, "@jridgewell/sourcemap-codec": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", "dev": true }, "@jridgewell/trace-mapping": { "version": "0.3.9", "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", "dev": true, "requires": { "@jridgewell/resolve-uri": "^3.0.3", "@jridgewell/sourcemap-codec": "^1.4.10" } }, "@mdi/svg": { "version": "7.4.47", "resolved": "https://registry.npmjs.org/@mdi/svg/-/svg-7.4.47.tgz", "integrity": "sha512-WQ2gDll12T9WD34fdRFgQVgO8bag3gavrAgJ0frN4phlwdJARpE6gO1YvLEMJR0KKgoc+/Ea/A0Pp11I00xBvw==", "dev": true }, "@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, "requires": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" } }, "@nodelib/fs.stat": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true }, "@nodelib/fs.walk": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, "requires": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" } }, "@parcel/watcher": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.4.1.tgz", "integrity": "sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==", "dev": true, "optional": true, "requires": { "@parcel/watcher-android-arm64": "2.4.1", "@parcel/watcher-darwin-arm64": "2.4.1", "@parcel/watcher-darwin-x64": "2.4.1", "@parcel/watcher-freebsd-x64": "2.4.1", "@parcel/watcher-linux-arm-glibc": "2.4.1", "@parcel/watcher-linux-arm64-glibc": "2.4.1", "@parcel/watcher-linux-arm64-musl": "2.4.1", "@parcel/watcher-linux-x64-glibc": "2.4.1", "@parcel/watcher-linux-x64-musl": "2.4.1", "@parcel/watcher-win32-arm64": "2.4.1", "@parcel/watcher-win32-ia32": "2.4.1", "@parcel/watcher-win32-x64": "2.4.1", "detect-libc": "^1.0.3", "is-glob": "^4.0.3", "micromatch": "^4.0.5", "node-addon-api": "^7.0.0" } }, "@parcel/watcher-android-arm64": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.4.1.tgz", "integrity": "sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==", "dev": true, "optional": true }, "@parcel/watcher-darwin-arm64": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.4.1.tgz", "integrity": "sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==", "dev": true, "optional": true }, "@parcel/watcher-darwin-x64": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.4.1.tgz", "integrity": "sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==", "dev": true, "optional": true }, "@parcel/watcher-freebsd-x64": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.4.1.tgz", "integrity": "sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==", "dev": true, "optional": true }, "@parcel/watcher-linux-arm-glibc": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.4.1.tgz", "integrity": "sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==", "dev": true, "optional": true }, "@parcel/watcher-linux-arm64-glibc": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.4.1.tgz", "integrity": "sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==", "dev": true, "optional": true }, "@parcel/watcher-linux-arm64-musl": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.4.1.tgz", "integrity": "sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==", "dev": true, "optional": true }, "@parcel/watcher-linux-x64-glibc": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.4.1.tgz", "integrity": "sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==", "dev": true, "optional": true }, "@parcel/watcher-linux-x64-musl": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.4.1.tgz", "integrity": "sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==", "dev": true, "optional": true }, "@parcel/watcher-win32-arm64": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.4.1.tgz", "integrity": "sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==", "dev": true, "optional": true }, "@parcel/watcher-win32-ia32": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.4.1.tgz", "integrity": "sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==", "dev": true, "optional": true }, "@parcel/watcher-win32-x64": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.4.1.tgz", "integrity": "sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==", "dev": true, "optional": true }, "@pkgjs/parseargs": { "version": "0.11.0", "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", "dev": true, "optional": true }, "@pkgr/core": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz", "integrity": "sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==", "dev": true }, "@primer/octicons": { "version": "19.14.0", "resolved": "https://registry.npmjs.org/@primer/octicons/-/octicons-19.14.0.tgz", "integrity": "sha512-9Ovw/xcUFHC/zbsNhr/Hkp1+m9XnNeQvnGHDHrI5vhlf6PRZVzSsdMnesV2xCzQh7jXP3EVRcaeXsUGlsZrfcA==", "dev": true, "requires": { "object-assign": "^4.1.1" } }, "@rtsao/scc": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz", "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==", "dev": true }, "@stylistic/eslint-plugin-ts": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/@stylistic/eslint-plugin-ts/-/eslint-plugin-ts-3.0.1.tgz", "integrity": "sha512-fBPKvYhp3KPlww9lZVe2htMwQZ/uh1v1Een6G2jnRpHWoQZfZ/qIhhWge7ovBtnK0z9QBa/DhBaBqcm7ZcLYKw==", "dev": true, "requires": { "@typescript-eslint/utils": "^8.13.0", "eslint-visitor-keys": "^4.2.0", "espree": "^10.3.0" }, "dependencies": { "eslint-visitor-keys": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", "dev": true }, "espree": { "version": "10.3.0", "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", "dev": true, "requires": { "acorn": "^8.14.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^4.2.0" } } } }, "@stylistic/stylelint-config": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@stylistic/stylelint-config/-/stylelint-config-2.0.0.tgz", "integrity": "sha512-8J4YAxggy2Nzkb8KJIOLbtMXTPZ5gpKVmyhiiuKEUgCl9XFND5lM0e/ZZBMGEYZ68h5qcsS/jgg1wh235erRAw==", "dev": true, "requires": { "@stylistic/stylelint-plugin": "^3.0.0" } }, "@stylistic/stylelint-plugin": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/@stylistic/stylelint-plugin/-/stylelint-plugin-3.1.1.tgz", "integrity": "sha512-XagAHHIa528EvyGybv8EEYGK5zrVW74cHpsjhtovVATbhDRuJYfE+X4HCaAieW9lCkwbX6L+X0I4CiUG3w/hFw==", "dev": true, "requires": { "@csstools/css-parser-algorithms": "^3.0.1", "@csstools/css-tokenizer": "^3.0.1", "@csstools/media-query-list-parser": "^3.0.1", "is-plain-object": "^5.0.0", "postcss-selector-parser": "^6.1.2", "postcss-value-parser": "^4.2.0", "style-search": "^0.1.0", "stylelint": "^16.8.2" } }, "@trysound/sax": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", "dev": true }, "@tsconfig/node10": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.8.tgz", "integrity": "sha512-6XFfSQmMgq0CFLY1MslA/CPUfhIL919M1rMsa5lP2P097N2Wd1sSX0tx1u4olM16fLNhtHZpRhedZJphNJqmZg==", "dev": true }, "@tsconfig/node12": { "version": "1.0.9", "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.9.tgz", "integrity": "sha512-/yBMcem+fbvhSREH+s14YJi18sp7J9jpuhYByADT2rypfajMZZN4WQ6zBGgBKp53NKmqI36wFYDb3yaMPurITw==", "dev": true }, "@tsconfig/node14": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.1.tgz", "integrity": "sha512-509r2+yARFfHHE7T6Puu2jjkoycftovhXRqW328PDXTVGKihlb1P8Z9mMZH04ebyajfRY7dedfGynlrFHJUQCg==", "dev": true }, "@tsconfig/node16": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.2.tgz", "integrity": "sha512-eZxlbI8GZscaGS7kkc/trHTT5xgrjH3/1n2JDwusC9iahPKWMRvRjJSAN5mCXviuTGQ/lHnhvv8Q1YTpnfz9gA==", "dev": true }, "@types/css-modules": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/@types/css-modules/-/css-modules-1.0.5.tgz", "integrity": "sha512-oeKafs/df9lwOvtfiXVliZsocFVOexK9PZtLQWuPeuVCFR7jwiqlg60lu80JTe5NFNtH3tnV6Fs/ySR8BUPHAw==", "dev": true }, "@types/escape-html": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/@types/escape-html/-/escape-html-1.0.4.tgz", "integrity": "sha512-qZ72SFTgUAZ5a7Tj6kf2SHLetiH5S6f8G5frB2SPQ3EyF02kxdyBFf4Tz4banE3xCgGnKgWLt//a6VuYHKYJTg==", "dev": true }, "@types/fuzzaldrin-plus": { "version": "0.6.5", "resolved": "https://registry.npmjs.org/@types/fuzzaldrin-plus/-/fuzzaldrin-plus-0.6.5.tgz", "integrity": "sha512-fUFxKXq/Qu8WVgPtSkQMK7jF5odTnBaIthuhKQb6PivpTaTTUlOTMS3WsT+UpWVZcYQH5skjHuFRTNmrUGSDfg==", "dev": true }, "@types/html-minifier-terser": { "version": "7.0.2", "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-7.0.2.tgz", "integrity": "sha512-mm2HqV22l8lFQh4r2oSsOEVea+m0qqxEmwpc9kC1p/XzmjLWrReR9D/GRs8Pex2NX/imyEH9c5IU/7tMBQCHOA==", "dev": true }, "@types/json5": { "version": "0.0.29", "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", "dev": true }, "@types/lunr": { "version": "2.3.7", "resolved": "https://registry.npmjs.org/@types/lunr/-/lunr-2.3.7.tgz", "integrity": "sha512-Tb/kUm38e8gmjahQzdCKhbdsvQ9/ppzHFfsJ0dMs3ckqQsRj+P5IkSAwFTBrBxdyr3E/LoMUUrZngjDYAjiE3A==", "dev": true }, "@types/node": { "version": "22.12.0", "resolved": "https://registry.npmjs.org/@types/node/-/node-22.12.0.tgz", "integrity": "sha512-Fll2FZ1riMjNmlmJOdAyY5pUbkftXslB5DgEzlIuNaiWhXd00FhWxVC/r4yV/4wBb9JfImTu+jiSvXTkJ7F/gA==", "dev": true, "requires": { "undici-types": "~6.20.0" } }, "@types/resize-observer-browser": { "version": "0.1.11", "resolved": "https://registry.npmjs.org/@types/resize-observer-browser/-/resize-observer-browser-0.1.11.tgz", "integrity": "sha512-cNw5iH8JkMkb3QkCoe7DaZiawbDQEUX8t7iuQaRTyLOyQCR2h+ibBD4GJt7p5yhUHrlOeL7ZtbxNHeipqNsBzQ==", "dev": true }, "@types/sass": { "version": "1.45.0", "resolved": "https://registry.npmjs.org/@types/sass/-/sass-1.45.0.tgz", "integrity": "sha512-jn7qwGFmJHwUSphV8zZneO3GmtlgLsmhs/LQyVvQbIIa+fzGMUiHI4HXJZL3FT8MJmgXWbLGiVVY7ElvHq6vDA==", "dev": true, "requires": { "sass": "*" } }, "@typescript-eslint/eslint-plugin": { "version": "8.22.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.22.0.tgz", "integrity": "sha512-4Uta6REnz/xEJMvwf72wdUnC3rr4jAQf5jnTkeRQ9b6soxLxhDEbS/pfMPoJLDfFPNVRdryqWUIV/2GZzDJFZw==", "dev": true, "requires": { "@eslint-community/regexpp": "^4.10.0", "@typescript-eslint/scope-manager": "8.22.0", "@typescript-eslint/type-utils": "8.22.0", "@typescript-eslint/utils": "8.22.0", "@typescript-eslint/visitor-keys": "8.22.0", "graphemer": "^1.4.0", "ignore": "^5.3.1", "natural-compare": "^1.4.0", "ts-api-utils": "^2.0.0" } }, "@typescript-eslint/parser": { "version": "8.22.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.22.0.tgz", "integrity": "sha512-MqtmbdNEdoNxTPzpWiWnqNac54h8JDAmkWtJExBVVnSrSmi9z+sZUt0LfKqk9rjqmKOIeRhO4fHHJ1nQIjduIQ==", "dev": true, "requires": { "@typescript-eslint/scope-manager": "8.22.0", "@typescript-eslint/types": "8.22.0", "@typescript-eslint/typescript-estree": "8.22.0", "@typescript-eslint/visitor-keys": "8.22.0", "debug": "^4.3.4" } }, "@typescript-eslint/scope-manager": { "version": "8.22.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.22.0.tgz", "integrity": "sha512-/lwVV0UYgkj7wPSw0o8URy6YI64QmcOdwHuGuxWIYznO6d45ER0wXUbksr9pYdViAofpUCNJx/tAzNukgvaaiQ==", "dev": true, "requires": { "@typescript-eslint/types": "8.22.0", "@typescript-eslint/visitor-keys": "8.22.0" } }, "@typescript-eslint/type-utils": { "version": "8.22.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.22.0.tgz", "integrity": "sha512-NzE3aB62fDEaGjaAYZE4LH7I1MUwHooQ98Byq0G0y3kkibPJQIXVUspzlFOmOfHhiDLwKzMlWxaNv+/qcZurJA==", "dev": true, "requires": { "@typescript-eslint/typescript-estree": "8.22.0", "@typescript-eslint/utils": "8.22.0", "debug": "^4.3.4", "ts-api-utils": "^2.0.0" } }, "@typescript-eslint/types": { "version": "8.22.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.22.0.tgz", "integrity": "sha512-0S4M4baNzp612zwpD4YOieP3VowOARgK2EkN/GBn95hpyF8E2fbMT55sRHWBq+Huaqk3b3XK+rxxlM8sPgGM6A==", "dev": true }, "@typescript-eslint/typescript-estree": { "version": "8.22.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.22.0.tgz", "integrity": "sha512-SJX99NAS2ugGOzpyhMza/tX+zDwjvwAtQFLsBo3GQxiGcvaKlqGBkmZ+Y1IdiSi9h4Q0Lr5ey+Cp9CGWNY/F/w==", "dev": true, "requires": { "@typescript-eslint/types": "8.22.0", "@typescript-eslint/visitor-keys": "8.22.0", "debug": "^4.3.4", "fast-glob": "^3.3.2", "is-glob": "^4.0.3", "minimatch": "^9.0.4", "semver": "^7.6.0", "ts-api-utils": "^2.0.0" }, "dependencies": { "brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, "requires": { "balanced-match": "^1.0.0" } }, "minimatch": { "version": "9.0.5", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "dev": true, "requires": { "brace-expansion": "^2.0.1" } } } }, "@typescript-eslint/utils": { "version": "8.22.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.22.0.tgz", "integrity": "sha512-T8oc1MbF8L+Bk2msAvCUzjxVB2Z2f+vXYfcucE2wOmYs7ZUwco5Ep0fYZw8quNwOiw9K8GYVL+Kgc2pETNTLOg==", "dev": true, "requires": { "@eslint-community/eslint-utils": "^4.4.0", "@typescript-eslint/scope-manager": "8.22.0", "@typescript-eslint/types": "8.22.0", "@typescript-eslint/typescript-estree": "8.22.0" } }, "@typescript-eslint/visitor-keys": { "version": "8.22.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.22.0.tgz", "integrity": "sha512-AWpYAXnUgvLNabGTy3uBylkgZoosva/miNd1I8Bz3SjotmQPbVqhO4Cczo8AsZ44XVErEBPr/CRSgaj8sG7g0w==", "dev": true, "requires": { "@typescript-eslint/types": "8.22.0", "eslint-visitor-keys": "^4.2.0" }, "dependencies": { "eslint-visitor-keys": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", "dev": true } } }, "@ungap/structured-clone": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", "dev": true }, "abort-controller": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", "dev": true, "requires": { "event-target-shim": "^5.0.0" } }, "acorn": { "version": "8.14.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", "dev": true }, "acorn-jsx": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, "requires": {} }, "acorn-walk": { "version": "8.2.0", "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", "dev": true }, "ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "requires": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" } }, "ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true }, "ansi-styles": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "requires": { "color-convert": "^1.9.0" } }, "are-docs-informative": { "version": "0.0.2", "resolved": "https://registry.npmjs.org/are-docs-informative/-/are-docs-informative-0.0.2.tgz", "integrity": "sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==", "dev": true }, "arg": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", "dev": true }, "argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, "array-buffer-byte-length": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", "dev": true, "requires": { "call-bind": "^1.0.5", "is-array-buffer": "^3.0.4" } }, "array-includes": { "version": "3.1.8", "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", "dev": true, "requires": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-abstract": "^1.23.2", "es-object-atoms": "^1.0.0", "get-intrinsic": "^1.2.4", "is-string": "^1.0.7" } }, "array-union": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "dev": true }, "array.prototype.findlastindex": { "version": "1.2.5", "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz", "integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==", "dev": true, "requires": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-abstract": "^1.23.2", "es-errors": "^1.3.0", "es-object-atoms": "^1.0.0", "es-shim-unscopables": "^1.0.2" } }, "array.prototype.flat": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", "dev": true, "requires": { "call-bind": "^1.0.2", "define-properties": "^1.2.0", "es-abstract": "^1.22.1", "es-shim-unscopables": "^1.0.0" } }, "array.prototype.flatmap": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", "dev": true, "requires": { "call-bind": "^1.0.2", "define-properties": "^1.2.0", "es-abstract": "^1.22.1", "es-shim-unscopables": "^1.0.0" } }, "arraybuffer.prototype.slice": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", "dev": true, "requires": { "array-buffer-byte-length": "^1.0.1", "call-bind": "^1.0.5", "define-properties": "^1.2.1", "es-abstract": "^1.22.3", "es-errors": "^1.2.1", "get-intrinsic": "^1.2.3", "is-array-buffer": "^3.0.4", "is-shared-array-buffer": "^1.0.2" } }, "astral-regex": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", "dev": true }, "asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", "dev": true }, "autoprefixer": { "version": "10.4.20", "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz", "integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==", "dev": true, "requires": { "browserslist": "^4.23.3", "caniuse-lite": "^1.0.30001646", "fraction.js": "^4.3.7", "normalize-range": "^0.1.2", "picocolors": "^1.0.1", "postcss-value-parser": "^4.2.0" } }, "available-typed-arrays": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", "dev": true, "requires": { "possible-typed-array-names": "^1.0.0" } }, "balanced-match": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", "dev": true }, "boolbase": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", "dev": true }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "braces": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "dev": true, "requires": { "fill-range": "^7.1.1" } }, "browserslist": { "version": "4.23.3", "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.3.tgz", "integrity": "sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==", "dev": true, "requires": { "caniuse-lite": "^1.0.30001646", "electron-to-chromium": "^1.5.4", "node-releases": "^2.0.18", "update-browserslist-db": "^1.1.0" } }, "buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true }, "call-bind": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", "dev": true, "requires": { "es-define-property": "^1.0.0", "es-errors": "^1.3.0", "function-bind": "^1.1.2", "get-intrinsic": "^1.2.4", "set-function-length": "^1.2.1" } }, "caniuse-api": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", "dev": true, "requires": { "browserslist": "^4.0.0", "caniuse-lite": "^1.0.0", "lodash.memoize": "^4.1.2", "lodash.uniq": "^4.5.0" } }, "caniuse-lite": { "version": "1.0.30001649", "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001649.tgz", "integrity": "sha512-fJegqZZ0ZX8HOWr6rcafGr72+xcgJKI9oWfDW5DrD7ExUtgZC7a7R7ZYmZqplh7XDocFdGeIFn7roAxhOeYrPQ==", "dev": true }, "chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "requires": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" }, "dependencies": { "supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, "requires": { "has-flag": "^3.0.0" } } } }, "chokidar": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", "dev": true, "requires": { "readdirp": "^4.0.1" } }, "cli-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", "dev": true, "requires": { "restore-cursor": "^3.1.0" } }, "cli-spinners": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.5.0.tgz", "integrity": "sha512-PC+AmIuK04E6aeSs/pUccSujsTzBhu4HzC2dL+CfJB/Jcc2qTRbEwZQDfIUpt2Xl8BodYBEq8w4fc0kU2I9DjQ==", "dev": true }, "clipboard": { "version": "2.0.11", "resolved": "https://registry.npmjs.org/clipboard/-/clipboard-2.0.11.tgz", "integrity": "sha512-C+0bbOqkezLIsmWSvlsXS0Q0bmkugu7jcfMIACB+RDEntIzQIkdr148we28AfSloQLRdZlYL/QYyrq05j/3Faw==", "requires": { "good-listener": "^1.2.2", "select": "^1.1.2", "tiny-emitter": "^2.0.0" } }, "clone": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", "dev": true }, "color-convert": { "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, "requires": { "color-name": "1.1.3" } }, "color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", "dev": true }, "colord": { "version": "2.9.3", "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", "dev": true }, "combined-stream": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "dev": true, "requires": { "delayed-stream": "~1.0.0" } }, "commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "dev": true }, "comment-parser": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.4.1.tgz", "integrity": "sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==", "dev": true }, "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", "dev": true }, "cosmiconfig": { "version": "9.0.0", "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", "dev": true, "requires": { "env-paths": "^2.2.1", "import-fresh": "^3.3.0", "js-yaml": "^4.1.0", "parse-json": "^5.2.0" }, "dependencies": { "parse-json": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, "requires": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" } } } }, "create-require": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", "dev": true }, "cross-spawn": { "version": "7.0.6", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, "requires": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" } }, "css-declaration-sorter": { "version": "6.1.4", "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.1.4.tgz", "integrity": "sha512-lpfkqS0fctcmZotJGhnxkIyJWvBXgpyi2wsFd4J8VB7wzyrT6Ch/3Q+FMNJpjK4gu1+GN5khOnpU2ZVKrLbhCw==", "dev": true, "requires": { "timsort": "^0.3.0" } }, "css-functions-list": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.2.3.tgz", "integrity": "sha512-IQOkD3hbR5KrN93MtcYuad6YPuTSUhntLHDuLEbFWE+ff2/XSZNdZG+LcbbIW5AXKg/WFIfYItIzVoHngHXZzA==", "dev": true }, "css-select": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", "dev": true, "requires": { "boolbase": "^1.0.0", "css-what": "^6.1.0", "domhandler": "^5.0.2", "domutils": "^3.0.1", "nth-check": "^2.0.1" }, "dependencies": { "dom-serializer": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", "dev": true, "requires": { "domelementtype": "^2.3.0", "domhandler": "^5.0.2", "entities": "^4.2.0" } }, "domelementtype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", "dev": true }, "domhandler": { "version": "5.0.3", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", "dev": true, "requires": { "domelementtype": "^2.3.0" } }, "domutils": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.0.1.tgz", "integrity": "sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==", "dev": true, "requires": { "dom-serializer": "^2.0.0", "domelementtype": "^2.3.0", "domhandler": "^5.0.1" } }, "entities": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz", "integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==", "dev": true } } }, "css-tree": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", "dev": true, "requires": { "mdn-data": "2.0.28", "source-map-js": "^1.0.1" } }, "css-what": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", "dev": true }, "cssesc": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", "dev": true }, "cssnano": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.0.tgz", "integrity": "sha512-wWxave1wMlThGg4ueK98jFKaNqXnQd1nVZpSkQ9XvR+YymlzP1ofWqES1JkHtI250LksP9z5JH+oDcrKDJezAg==", "dev": true, "requires": { "cssnano-preset-default": "^5.2.0", "lilconfig": "^2.0.3", "yaml": "^1.10.2" } }, "cssnano-preset-default": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.0.tgz", "integrity": "sha512-3N5Vcptj2pqVKpHVqH6ezOJvqikR2PdLTbTrsrhF61FbLRQuujAqZ2sKN5rvcMsb7hFjrNnjZT8CGEkxoN/Pwg==", "dev": true, "requires": { "css-declaration-sorter": "^6.0.3", "cssnano-utils": "^3.1.0", "postcss-calc": "^8.2.3", "postcss-colormin": "^5.3.0", "postcss-convert-values": "^5.1.0", "postcss-discard-comments": "^5.1.0", "postcss-discard-duplicates": "^5.1.0", "postcss-discard-empty": "^5.1.0", "postcss-discard-overridden": "^5.1.0", "postcss-merge-longhand": "^5.1.0", "postcss-merge-rules": "^5.1.0", "postcss-minify-font-values": "^5.1.0", "postcss-minify-gradients": "^5.1.0", "postcss-minify-params": "^5.1.0", "postcss-minify-selectors": "^5.2.0", "postcss-normalize-charset": "^5.1.0", "postcss-normalize-display-values": "^5.1.0", "postcss-normalize-positions": "^5.1.0", "postcss-normalize-repeat-style": "^5.1.0", "postcss-normalize-string": "^5.1.0", "postcss-normalize-timing-functions": "^5.1.0", "postcss-normalize-unicode": "^5.1.0", "postcss-normalize-url": "^5.1.0", "postcss-normalize-whitespace": "^5.1.0", "postcss-ordered-values": "^5.1.0", "postcss-reduce-initial": "^5.1.0", "postcss-reduce-transforms": "^5.1.0", "postcss-svgo": "^5.1.0", "postcss-unique-selectors": "^5.1.0" } }, "cssnano-utils": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", "dev": true, "requires": {} }, "csso": { "version": "5.0.5", "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", "dev": true, "requires": { "css-tree": "~2.2.0" } }, "data-view-buffer": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", "dev": true, "requires": { "call-bind": "^1.0.6", "es-errors": "^1.3.0", "is-data-view": "^1.0.1" } }, "data-view-byte-length": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", "dev": true, "requires": { "call-bind": "^1.0.7", "es-errors": "^1.3.0", "is-data-view": "^1.0.1" } }, "data-view-byte-offset": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", "dev": true, "requires": { "call-bind": "^1.0.6", "es-errors": "^1.3.0", "is-data-view": "^1.0.1" } }, "debug": { "version": "4.3.7", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", "dev": true, "requires": { "ms": "^2.1.3" } }, "decode-uri-component": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", "dev": true }, "deep-is": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true }, "defaults": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", "dev": true, "requires": { "clone": "^1.0.2" } }, "define-data-property": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", "dev": true, "requires": { "es-define-property": "^1.0.0", "es-errors": "^1.3.0", "gopd": "^1.0.1" } }, "define-properties": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", "dev": true, "requires": { "define-data-property": "^1.0.1", "has-property-descriptors": "^1.0.0", "object-keys": "^1.1.1" } }, "delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", "dev": true }, "delegate": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz", "integrity": "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==" }, "detect-libc": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", "dev": true, "optional": true }, "diff": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", "dev": true }, "dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, "requires": { "path-type": "^4.0.0" } }, "doctrine": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, "requires": { "esutils": "^2.0.2" } }, "domhandler": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "dev": true, "requires": { "domelementtype": "^2.2.0" }, "dependencies": { "domelementtype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", "dev": true } } }, "dot-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", "dev": true, "requires": { "no-case": "^3.0.4", "tslib": "^2.0.3" }, "dependencies": { "lower-case": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", "dev": true, "requires": { "tslib": "^2.0.3" } }, "no-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", "dev": true, "requires": { "lower-case": "^2.0.2", "tslib": "^2.0.3" } } } }, "eastasianwidth": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", "dev": true }, "electron-to-chromium": { "version": "1.5.4", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.4.tgz", "integrity": "sha512-orzA81VqLyIGUEA77YkVA1D+N+nNfl2isJVjjmOyrlxuooZ19ynb+dOlaDTqd/idKRS9lDCSBmtzM+kyCsMnkA==", "dev": true }, "emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, "encoding": { "version": "0.1.13", "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", "dev": true, "optional": true, "peer": true, "requires": { "iconv-lite": "^0.6.2" } }, "entities": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", "dev": true }, "env-paths": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", "dev": true }, "error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, "requires": { "is-arrayish": "^0.2.1" } }, "es-abstract": { "version": "1.23.3", "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", "dev": true, "requires": { "array-buffer-byte-length": "^1.0.1", "arraybuffer.prototype.slice": "^1.0.3", "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.7", "data-view-buffer": "^1.0.1", "data-view-byte-length": "^1.0.1", "data-view-byte-offset": "^1.0.0", "es-define-property": "^1.0.0", "es-errors": "^1.3.0", "es-object-atoms": "^1.0.0", "es-set-tostringtag": "^2.0.3", "es-to-primitive": "^1.2.1", "function.prototype.name": "^1.1.6", "get-intrinsic": "^1.2.4", "get-symbol-description": "^1.0.2", "globalthis": "^1.0.3", "gopd": "^1.0.1", "has-property-descriptors": "^1.0.2", "has-proto": "^1.0.3", "has-symbols": "^1.0.3", "hasown": "^2.0.2", "internal-slot": "^1.0.7", "is-array-buffer": "^3.0.4", "is-callable": "^1.2.7", "is-data-view": "^1.0.1", "is-negative-zero": "^2.0.3", "is-regex": "^1.1.4", "is-shared-array-buffer": "^1.0.3", "is-string": "^1.0.7", "is-typed-array": "^1.1.13", "is-weakref": "^1.0.2", "object-inspect": "^1.13.1", "object-keys": "^1.1.1", "object.assign": "^4.1.5", "regexp.prototype.flags": "^1.5.2", "safe-array-concat": "^1.1.2", "safe-regex-test": "^1.0.3", "string.prototype.trim": "^1.2.9", "string.prototype.trimend": "^1.0.8", "string.prototype.trimstart": "^1.0.8", "typed-array-buffer": "^1.0.2", "typed-array-byte-length": "^1.0.1", "typed-array-byte-offset": "^1.0.2", "typed-array-length": "^1.0.6", "unbox-primitive": "^1.0.2", "which-typed-array": "^1.1.15" } }, "es-define-property": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", "dev": true, "requires": { "get-intrinsic": "^1.2.4" } }, "es-errors": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", "dev": true }, "es-module-lexer": { "version": "1.5.4", "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==", "dev": true }, "es-object-atoms": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", "dev": true, "requires": { "es-errors": "^1.3.0" } }, "es-set-tostringtag": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", "dev": true, "requires": { "get-intrinsic": "^1.2.4", "has-tostringtag": "^1.0.2", "hasown": "^2.0.1" } }, "es-shim-unscopables": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", "dev": true, "requires": { "hasown": "^2.0.0" } }, "es-to-primitive": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "dev": true, "requires": { "is-callable": "^1.1.4", "is-date-object": "^1.0.1", "is-symbol": "^1.0.2" } }, "esbuild": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz", "integrity": "sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==", "dev": true, "requires": { "@esbuild/aix-ppc64": "0.24.2", "@esbuild/android-arm": "0.24.2", "@esbuild/android-arm64": "0.24.2", "@esbuild/android-x64": "0.24.2", "@esbuild/darwin-arm64": "0.24.2", "@esbuild/darwin-x64": "0.24.2", "@esbuild/freebsd-arm64": "0.24.2", "@esbuild/freebsd-x64": "0.24.2", "@esbuild/linux-arm": "0.24.2", "@esbuild/linux-arm64": "0.24.2", "@esbuild/linux-ia32": "0.24.2", "@esbuild/linux-loong64": "0.24.2", "@esbuild/linux-mips64el": "0.24.2", "@esbuild/linux-ppc64": "0.24.2", "@esbuild/linux-riscv64": "0.24.2", "@esbuild/linux-s390x": "0.24.2", "@esbuild/linux-x64": "0.24.2", "@esbuild/netbsd-arm64": "0.24.2", "@esbuild/netbsd-x64": "0.24.2", "@esbuild/openbsd-arm64": "0.24.2", "@esbuild/openbsd-x64": "0.24.2", "@esbuild/sunos-x64": "0.24.2", "@esbuild/win32-arm64": "0.24.2", "@esbuild/win32-ia32": "0.24.2", "@esbuild/win32-x64": "0.24.2" } }, "escalade": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", "dev": true }, "escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" }, "escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", "dev": true }, "eslint": { "version": "8.57.0", "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", "dev": true, "requires": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", "@eslint/eslintrc": "^2.1.4", "@eslint/js": "8.57.0", "@humanwhocodes/config-array": "^0.11.14", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", "@ungap/structured-clone": "^1.2.0", "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", "debug": "^4.3.2", "doctrine": "^3.0.0", "escape-string-regexp": "^4.0.0", "eslint-scope": "^7.2.2", "eslint-visitor-keys": "^3.4.3", "espree": "^9.6.1", "esquery": "^1.4.2", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^6.0.1", "find-up": "^5.0.0", "glob-parent": "^6.0.2", "globals": "^13.19.0", "graphemer": "^1.4.0", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "is-path-inside": "^3.0.3", "js-yaml": "^4.1.0", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", "optionator": "^0.9.3", "strip-ansi": "^6.0.1", "text-table": "^0.2.0" }, "dependencies": { "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "requires": { "color-convert": "^2.0.1" } }, "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "requires": { "color-name": "~1.1.4" } }, "color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, "escape-string-regexp": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true }, "glob-parent": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, "requires": { "is-glob": "^4.0.3" } } } }, "eslint-import-resolver-node": { "version": "0.3.9", "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", "dev": true, "requires": { "debug": "^3.2.7", "is-core-module": "^2.13.0", "resolve": "^1.22.4" }, "dependencies": { "debug": { "version": "3.2.7", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "requires": { "ms": "^2.1.1" } } } }, "eslint-module-utils": { "version": "2.12.0", "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.0.tgz", "integrity": "sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==", "dev": true, "requires": { "debug": "^3.2.7" }, "dependencies": { "debug": { "version": "3.2.7", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "requires": { "ms": "^2.1.1" } } } }, "eslint-plugin-eslint-comments": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/eslint-plugin-eslint-comments/-/eslint-plugin-eslint-comments-3.2.0.tgz", "integrity": "sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==", "dev": true, "requires": { "escape-string-regexp": "^1.0.5", "ignore": "^5.0.5" } }, "eslint-plugin-import": { "version": "2.31.0", "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.31.0.tgz", "integrity": "sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==", "dev": true, "requires": { "@rtsao/scc": "^1.1.0", "array-includes": "^3.1.8", "array.prototype.findlastindex": "^1.2.5", "array.prototype.flat": "^1.3.2", "array.prototype.flatmap": "^1.3.2", "debug": "^3.2.7", "doctrine": "^2.1.0", "eslint-import-resolver-node": "^0.3.9", "eslint-module-utils": "^2.12.0", "hasown": "^2.0.2", "is-core-module": "^2.15.1", "is-glob": "^4.0.3", "minimatch": "^3.1.2", "object.fromentries": "^2.0.8", "object.groupby": "^1.0.3", "object.values": "^1.2.0", "semver": "^6.3.1", "string.prototype.trimend": "^1.0.8", "tsconfig-paths": "^3.15.0" }, "dependencies": { "debug": { "version": "3.2.7", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "requires": { "ms": "^2.1.1" } }, "doctrine": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, "requires": { "esutils": "^2.0.2" } }, "semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true } } }, "eslint-plugin-jsdoc": { "version": "50.6.3", "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.6.3.tgz", "integrity": "sha512-NxbJyt1M5zffPcYZ8Nb53/8nnbIScmiLAMdoe0/FAszwb7lcSiX3iYBTsuF7RV84dZZJC8r3NghomrUXsmWvxQ==", "dev": true, "requires": { "@es-joy/jsdoccomment": "~0.49.0", "are-docs-informative": "^0.0.2", "comment-parser": "1.4.1", "debug": "^4.3.6", "escape-string-regexp": "^4.0.0", "espree": "^10.1.0", "esquery": "^1.6.0", "parse-imports": "^2.1.1", "semver": "^7.6.3", "spdx-expression-parse": "^4.0.0", "synckit": "^0.9.1" }, "dependencies": { "escape-string-regexp": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true }, "eslint-visitor-keys": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz", "integrity": "sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==", "dev": true }, "espree": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/espree/-/espree-10.1.0.tgz", "integrity": "sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==", "dev": true, "requires": { "acorn": "^8.12.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^4.0.0" } }, "spdx-expression-parse": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-4.0.0.tgz", "integrity": "sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==", "dev": true, "requires": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" } } } }, "eslint-plugin-no-null": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/eslint-plugin-no-null/-/eslint-plugin-no-null-1.0.2.tgz", "integrity": "sha1-EjaoEjkTkKGHetQAfCbnRTQclR8=", "dev": true, "requires": {} }, "eslint-scope": { "version": "7.2.2", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", "dev": true, "requires": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" } }, "eslint-visitor-keys": { "version": "3.4.3", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", "dev": true }, "espree": { "version": "9.6.1", "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", "dev": true, "requires": { "acorn": "^8.9.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^3.4.1" } }, "esquery": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", "dev": true, "requires": { "estraverse": "^5.1.0" } }, "esrecurse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, "requires": { "estraverse": "^5.2.0" } }, "estraverse": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true }, "esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true }, "event-target-shim": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", "dev": true }, "fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, "fast-glob": { "version": "3.3.3", "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", "dev": true, "requires": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.8" } }, "fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, "fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true }, "fast-uri": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.3.tgz", "integrity": "sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==", "dev": true }, "fastest-levenshtein": { "version": "1.0.16", "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", "dev": true }, "fastq": { "version": "1.11.0", "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz", "integrity": "sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g==", "dev": true, "requires": { "reusify": "^1.0.4" } }, "file-entry-cache": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, "requires": { "flat-cache": "^3.0.4" } }, "fill-range": { "version": "7.1.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dev": true, "requires": { "to-regex-range": "^5.0.1" } }, "filter-obj": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz", "integrity": "sha1-mzERErxsYSehbgFsbF1/GeCAXFs=", "dev": true }, "find-up": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, "requires": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" } }, "flat-cache": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", "dev": true, "requires": { "flatted": "^3.2.9", "keyv": "^4.5.3", "rimraf": "^3.0.2" }, "dependencies": { "rimraf": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "dev": true, "requires": { "glob": "^7.1.3" } } } }, "flatted": { "version": "3.3.2", "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz", "integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==", "dev": true }, "focus-visible": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/focus-visible/-/focus-visible-5.2.1.tgz", "integrity": "sha512-8Bx950VD1bWTQJEH/AM6SpEk+SU55aVnp4Ujhuuxy3eMEBCRwBnTBnVXr9YAPvZL3/CNjCa8u4IWfNmEO53whA==" }, "for-each": { "version": "0.3.3", "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", "dev": true, "requires": { "is-callable": "^1.1.3" } }, "foreground-child": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", "dev": true, "requires": { "cross-spawn": "^7.0.0", "signal-exit": "^4.0.1" }, "dependencies": { "signal-exit": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz", "integrity": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==", "dev": true } } }, "form-data": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", "dev": true, "requires": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", "mime-types": "^2.1.12" } }, "fraction.js": { "version": "4.3.7", "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", "dev": true }, "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", "dev": true }, "function-bind": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", "dev": true }, "function.prototype.name": { "version": "1.1.6", "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", "dev": true, "requires": { "call-bind": "^1.0.2", "define-properties": "^1.2.0", "es-abstract": "^1.22.1", "functions-have-names": "^1.2.3" } }, "functions-have-names": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", "dev": true }, "fuzzaldrin-plus": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/fuzzaldrin-plus/-/fuzzaldrin-plus-0.6.0.tgz", "integrity": "sha1-gy9kifvodnaUWVmckUpnDsIpR+4=" }, "get-intrinsic": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", "dev": true, "requires": { "es-errors": "^1.3.0", "function-bind": "^1.1.2", "has-proto": "^1.0.1", "has-symbols": "^1.0.3", "hasown": "^2.0.0" } }, "get-symbol-description": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", "dev": true, "requires": { "call-bind": "^1.0.5", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.4" } }, "github-types": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/github-types/-/github-types-1.0.0.tgz", "integrity": "sha512-cUyNZq/cC853l0mlbWaugGWNqegqoxj0iVJCfQYBYSjfqhz6mDRExfsfdp6a5kFvGfwsDiNduE+e18hlsERSuA==", "dev": true }, "gitlab": { "version": "14.2.2", "resolved": "https://registry.npmjs.org/gitlab/-/gitlab-14.2.2.tgz", "integrity": "sha512-MVLGXLFk5erJCeDnDtV+srDHogadVV8y94G4mAulukCwdCwh+IUqsU4ESZksZvBis8VTJsK9Mj01lRJ1JrxVsg==", "dev": true, "requires": { "chalk": "^3.0.0", "form-data": "^3.0.0", "ky": "^0.16.0", "ky-universal": "^0.3.0", "li": "^1.3.0", "ora": "^4.0.3", "query-string": "^6.9.0", "sywac": "^1.2.2", "xcase": "^2.0.1" }, "dependencies": { "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "requires": { "color-convert": "^2.0.1" } }, "chalk": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "requires": { "color-name": "~1.1.4" } }, "color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true } } }, "glob": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", "dev": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.4", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } }, "glob-parent": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "requires": { "is-glob": "^4.0.1" } }, "global-modules": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", "dev": true, "requires": { "global-prefix": "^3.0.0" } }, "global-prefix": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", "dev": true, "requires": { "ini": "^1.3.5", "kind-of": "^6.0.2", "which": "^1.3.1" }, "dependencies": { "which": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, "requires": { "isexe": "^2.0.0" } } } }, "globals": { "version": "13.24.0", "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, "requires": { "type-fest": "^0.20.2" } }, "globalthis": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", "dev": true, "requires": { "define-properties": "^1.1.3" } }, "globalyzer": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz", "integrity": "sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==", "dev": true }, "globby": { "version": "11.1.0", "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dev": true, "requires": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" } }, "globjoin": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz", "integrity": "sha1-L0SUrIkZ43Z8XLtpHp9GMyQoXUM=", "dev": true }, "globrex": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==", "dev": true }, "good-listener": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz", "integrity": "sha1-1TswzfkxPf+33JoNR3CWqm0UXFA=", "requires": { "delegate": "^3.1.2" } }, "google-fonts-complete": { "version": "git+ssh://git@github.com/jonathantneal/google-fonts-complete.git#2fb60572daa44fb229ef8396b97279bcbd29671f", "dev": true, "from": "google-fonts-complete@jonathantneal/google-fonts-complete", "requires": {} }, "gopd": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", "dev": true, "requires": { "get-intrinsic": "^1.1.3" } }, "graceful-fs": { "version": "4.2.10", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", "dev": true }, "graphemer": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", "dev": true }, "has-bigints": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", "dev": true }, "has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", "dev": true }, "has-property-descriptors": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", "dev": true, "requires": { "es-define-property": "^1.0.0" } }, "has-proto": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", "dev": true }, "has-symbols": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "dev": true }, "has-tostringtag": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "dev": true, "requires": { "has-symbols": "^1.0.3" } }, "hasown": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", "dev": true, "requires": { "function-bind": "^1.1.2" } }, "hosted-git-info": { "version": "2.8.9", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", "dev": true }, "html-minifier-terser": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-7.2.0.tgz", "integrity": "sha512-tXgn3QfqPIpGl9o+K5tpcj3/MN4SfLtsx2GWwBC3SSd0tXQGyF3gsSqad8loJgKZGM3ZxbYDd5yhiBIdWpmvLA==", "dev": true, "requires": { "camel-case": "^4.1.2", "clean-css": "~5.3.2", "commander": "^10.0.0", "entities": "^4.4.0", "param-case": "^3.0.4", "relateurl": "^0.2.7", "terser": "^5.15.1" }, "dependencies": { "camel-case": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", "dev": true, "requires": { "pascal-case": "^3.1.2", "tslib": "^2.0.3" } }, "clean-css": { "version": "5.3.3", "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz", "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==", "dev": true, "requires": { "source-map": "~0.6.0" } }, "commander": { "version": "10.0.1", "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", "dev": true }, "entities": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", "dev": true }, "param-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", "dev": true, "requires": { "dot-case": "^3.0.4", "tslib": "^2.0.3" } } } }, "html-tags": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", "dev": true }, "htmlparser2": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.1.tgz", "integrity": "sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA==", "dev": true, "requires": { "domelementtype": "^2.3.0", "domhandler": "^5.0.2", "domutils": "^3.0.1", "entities": "^4.3.0" }, "dependencies": { "dom-serializer": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", "dev": true, "requires": { "domelementtype": "^2.3.0", "domhandler": "^5.0.2", "entities": "^4.2.0" } }, "domelementtype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", "dev": true }, "domhandler": { "version": "5.0.3", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", "dev": true, "requires": { "domelementtype": "^2.3.0" } }, "domutils": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.0.1.tgz", "integrity": "sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==", "dev": true, "requires": { "dom-serializer": "^2.0.0", "domelementtype": "^2.3.0", "domhandler": "^5.0.1" } }, "entities": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz", "integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==", "dev": true } } }, "iconv-lite": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dev": true, "optional": true, "peer": true, "requires": { "safer-buffer": ">= 2.1.2 < 3.0.0" } }, "ignore": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true }, "immutable": { "version": "5.0.2", "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.0.2.tgz", "integrity": "sha512-1NU7hWZDkV7hJ4PJ9dur9gTNQ4ePNPN4k9/0YhwjzykTi/+3Q5pF93YU5QoVj8BuOnhLgaY8gs0U2pj4kSYVcw==", "dev": true }, "import-fresh": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, "requires": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" } }, "imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", "dev": true }, "inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", "dev": true, "requires": { "once": "^1.3.0", "wrappy": "1" } }, "inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, "ini": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", "dev": true }, "internal-slot": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", "dev": true, "requires": { "es-errors": "^1.3.0", "hasown": "^2.0.0", "side-channel": "^1.0.4" } }, "is-array-buffer": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", "dev": true, "requires": { "call-bind": "^1.0.2", "get-intrinsic": "^1.2.1" } }, "is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", "dev": true }, "is-bigint": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", "dev": true, "requires": { "has-bigints": "^1.0.1" } }, "is-boolean-object": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "dev": true, "requires": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" } }, "is-callable": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", "dev": true }, "is-core-module": { "version": "2.15.1", "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", "dev": true, "requires": { "hasown": "^2.0.2" } }, "is-data-view": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", "dev": true, "requires": { "is-typed-array": "^1.1.13" } }, "is-date-object": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.4.tgz", "integrity": "sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A==", "dev": true }, "is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", "dev": true }, "is-fullwidth-code-point": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true }, "is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, "requires": { "is-extglob": "^2.1.1" } }, "is-interactive": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", "dev": true }, "is-negative-zero": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", "dev": true }, "is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true }, "is-number-object": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", "dev": true, "requires": { "has-tostringtag": "^1.0.0" } }, "is-path-inside": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", "dev": true }, "is-plain-object": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", "dev": true }, "is-regex": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "dev": true, "requires": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" } }, "is-shared-array-buffer": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", "dev": true, "requires": { "call-bind": "^1.0.7" } }, "is-string": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", "dev": true, "requires": { "has-tostringtag": "^1.0.0" } }, "is-symbol": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", "dev": true, "requires": { "has-symbols": "^1.0.2" } }, "is-typed-array": { "version": "1.1.13", "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", "dev": true, "requires": { "which-typed-array": "^1.1.14" } }, "is-weakref": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", "dev": true, "requires": { "call-bind": "^1.0.2" } }, "isarray": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", "dev": true }, "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", "dev": true }, "js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", "dev": true }, "js-yaml": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, "requires": { "argparse": "^2.0.1" } }, "jsdoc-type-pratt-parser": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-4.1.0.tgz", "integrity": "sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==", "dev": true }, "json-buffer": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", "dev": true }, "json-parse-better-errors": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", "dev": true }, "json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true }, "json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, "json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "dev": true }, "json5": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, "requires": { "minimist": "^1.2.0" } }, "keyv": { "version": "4.5.4", "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", "dev": true, "requires": { "json-buffer": "3.0.1" } }, "kind-of": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true }, "known-css-properties": { "version": "0.35.0", "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.35.0.tgz", "integrity": "sha512-a/RAk2BfKk+WFGhhOCAYqSiFLc34k8Mt/6NWRI4joER0EYUzXIcFivjjnoD3+XU1DggLn/tZc3DOAgke7l8a4A==", "dev": true }, "ky": { "version": "0.16.2", "resolved": "https://registry.npmjs.org/ky/-/ky-0.16.2.tgz", "integrity": "sha512-4/Xcb0hqeueNX9sa+G2jREiam9yb+I2Y3p3J42lIeitAenHXUZwpyejEgeQcQsaGl+hbuA0s7c3u+nlcIYFtog==", "dev": true }, "ky-universal": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/ky-universal/-/ky-universal-0.3.0.tgz", "integrity": "sha512-CM4Bgb2zZZpsprcjI6DNYTaH3oGHXL2u7BU4DK+lfCuC4snkt9/WRpMYeKbBbXscvKkeqBwzzjFX2WwmKY5K/A==", "dev": true, "requires": { "abort-controller": "^3.0.0", "node-fetch": "^2.6.0" } }, "levn": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, "requires": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" } }, "li": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/li/-/li-1.3.0.tgz", "integrity": "sha1-IsWbyu+qmo7zWc91l4TkvxBq6hs=", "dev": true }, "lilconfig": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.4.tgz", "integrity": "sha512-bfTIN7lEsiooCocSISTWXkiWJkRqtL9wYtYy+8EK3Y41qh3mpwPU0ycTOgjdY9ErwXCc8QyrQp82bdL0Xkm9yA==", "dev": true }, "lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true }, "load-json-file": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", "dev": true, "requires": { "graceful-fs": "^4.1.2", "parse-json": "^4.0.0", "pify": "^3.0.0", "strip-bom": "^3.0.0" } }, "locate-path": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, "requires": { "p-locate": "^5.0.0" } }, "lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", "dev": true }, "lodash.merge": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "dev": true }, "lodash.truncate": { "version": "4.4.2", "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", "dev": true }, "lodash.uniq": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=", "dev": true }, "log-symbols": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz", "integrity": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==", "dev": true, "requires": { "chalk": "^2.4.2" } }, "lunr": { "version": "2.3.9", "resolved": "https://registry.npmjs.org/lunr/-/lunr-2.3.9.tgz", "integrity": "sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==" }, "lunr-languages": { "version": "1.14.0", "resolved": "https://registry.npmjs.org/lunr-languages/-/lunr-languages-1.14.0.tgz", "integrity": "sha512-hWUAb2KqM3L7J5bcrngszzISY4BxrXn/Xhbb9TTCJYEGqlR1nG67/M14sp09+PTIRklobrn57IAxcdcO/ZFyNA==" }, "make-error": { "version": "1.3.6", "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", "dev": true }, "material-design-color": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/material-design-color/-/material-design-color-2.3.2.tgz", "integrity": "sha1-6K+VjYUqh0e/shHkjOEoK9qRiBU=", "dev": true }, "material-shadows": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/material-shadows/-/material-shadows-3.0.1.tgz", "integrity": "sha1-WGrRKxZzYKjk6Je/dTDLaazqURA=", "dev": true }, "mathml-tag-names": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz", "integrity": "sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==", "dev": true }, "mdn-data": { "version": "2.0.28", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", "dev": true }, "memorystream": { "version": "0.3.1", "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", "integrity": "sha1-htcJCzDORV1j+64S3aUaR93K+bI=", "dev": true }, "meow": { "version": "13.2.0", "resolved": "https://registry.npmjs.org/meow/-/meow-13.2.0.tgz", "integrity": "sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==", "dev": true }, "merge2": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true }, "micromatch": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dev": true, "requires": { "braces": "^3.0.3", "picomatch": "^2.3.1" } }, "mime-db": { "version": "1.46.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.46.0.tgz", "integrity": "sha512-svXaP8UQRZ5K7or+ZmfNhg2xX3yKDMUzqadsSqi4NCH/KomcH75MAMYAGVlvXn4+b/xOPhS3I2uHKRUzvjY7BQ==", "dev": true }, "mime-types": { "version": "2.1.29", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.29.tgz", "integrity": "sha512-Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ==", "dev": true, "requires": { "mime-db": "1.46.0" } }, "mimic-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true }, "minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "requires": { "brace-expansion": "^1.1.7" } }, "minimist": { "version": "1.2.6", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", "dev": true }, "ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "dev": true }, "mute-stream": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", "dev": true }, "nanoid": { "version": "3.3.8", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", "dev": true }, "natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true }, "nice-try": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", "dev": true }, "node-addon-api": { "version": "7.1.1", "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", "dev": true, "optional": true }, "node-fetch": { "version": "2.6.7", "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", "dev": true, "requires": { "whatwg-url": "^5.0.0" } }, "node-releases": { "version": "2.0.18", "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", "dev": true }, "normalize-package-data": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, "requires": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", "semver": "2 || 3 || 4 || 5", "validate-npm-package-license": "^3.0.1" }, "dependencies": { "semver": { "version": "5.7.2", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true } } }, "normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true }, "normalize-range": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", "dev": true }, "normalize-url": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", "dev": true }, "npm-check-updates": { "version": "17.1.14", "resolved": "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-17.1.14.tgz", "integrity": "sha512-dr4bXIxETubLI1tFGeock5hN8yVjahvaVpx+lPO4/O2md3zJuxB7FgH3MIoTvQSCgsgkIRpe0skti01IEAA5tA==", "dev": true }, "npm-run-all": { "version": "4.1.5", "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", "integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==", "dev": true, "requires": { "ansi-styles": "^3.2.1", "chalk": "^2.4.1", "cross-spawn": "^6.0.5", "memorystream": "^0.3.1", "minimatch": "^3.0.4", "pidtree": "^0.3.0", "read-pkg": "^3.0.0", "shell-quote": "^1.6.1", "string.prototype.padend": "^3.0.0" }, "dependencies": { "cross-spawn": { "version": "6.0.6", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", "dev": true, "requires": { "nice-try": "^1.0.4", "path-key": "^2.0.1", "semver": "^5.5.0", "shebang-command": "^1.2.0", "which": "^1.2.9" } }, "path-key": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", "dev": true }, "semver": { "version": "5.7.2", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true }, "shebang-command": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", "dev": true, "requires": { "shebang-regex": "^1.0.0" } }, "shebang-regex": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", "dev": true }, "which": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, "requires": { "isexe": "^2.0.0" } } } }, "nth-check": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.1.tgz", "integrity": "sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==", "dev": true, "requires": { "boolbase": "^1.0.0" } }, "object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", "dev": true }, "object-inspect": { "version": "1.13.2", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", "dev": true }, "object-keys": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", "dev": true }, "object.assign": { "version": "4.1.5", "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", "dev": true, "requires": { "call-bind": "^1.0.5", "define-properties": "^1.2.1", "has-symbols": "^1.0.3", "object-keys": "^1.1.1" } }, "object.fromentries": { "version": "2.0.8", "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", "dev": true, "requires": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-abstract": "^1.23.2", "es-object-atoms": "^1.0.0" } }, "object.groupby": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", "dev": true, "requires": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-abstract": "^1.23.2" } }, "object.values": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==", "dev": true, "requires": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" } }, "once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", "dev": true, "requires": { "wrappy": "1" } }, "onetime": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, "requires": { "mimic-fn": "^2.1.0" } }, "optionator": { "version": "0.9.3", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", "dev": true, "requires": { "@aashutoshrathi/word-wrap": "^1.2.3", "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", "type-check": "^0.4.0" } }, "ora": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/ora/-/ora-4.1.1.tgz", "integrity": "sha512-sjYP8QyVWBpBZWD6Vr1M/KwknSw6kJOz41tvGMlwWeClHBtYKTbHMki1PsLZnxKpXMPbTKv9b3pjQu3REib96A==", "dev": true, "requires": { "chalk": "^3.0.0", "cli-cursor": "^3.1.0", "cli-spinners": "^2.2.0", "is-interactive": "^1.0.0", "log-symbols": "^3.0.0", "mute-stream": "0.0.8", "strip-ansi": "^6.0.0", "wcwidth": "^1.0.1" }, "dependencies": { "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "requires": { "color-convert": "^2.0.1" } }, "chalk": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "requires": { "color-name": "~1.1.4" } }, "color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true } } }, "p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, "requires": { "yocto-queue": "^0.1.0" } }, "p-locate": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, "requires": { "p-limit": "^3.0.2" } }, "package-json-from-dist": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==", "dev": true }, "parent-module": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, "requires": { "callsites": "^3.0.0" }, "dependencies": { "callsites": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true } } }, "parse-imports": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/parse-imports/-/parse-imports-2.1.1.tgz", "integrity": "sha512-TDT4HqzUiTMO1wJRwg/t/hYk8Wdp3iF/ToMIlAoVQfL1Xs/sTxq1dKWSMjMbQmIarfWKymOyly40+zmPHXMqCA==", "dev": true, "requires": { "es-module-lexer": "^1.5.3", "slashes": "^3.0.12" } }, "parse-json": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", "dev": true, "requires": { "error-ex": "^1.3.1", "json-parse-better-errors": "^1.0.1" } }, "pascal-case": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", "dev": true, "requires": { "no-case": "^3.0.4", "tslib": "^2.0.3" }, "dependencies": { "lower-case": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", "dev": true, "requires": { "tslib": "^2.0.3" } }, "no-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", "dev": true, "requires": { "lower-case": "^2.0.2", "tslib": "^2.0.3" } } } }, "path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true }, "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", "dev": true }, "path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true }, "path-parse": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true }, "path-type": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true }, "picocolors": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", "dev": true }, "picomatch": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true }, "pidtree": { "version": "0.3.1", "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz", "integrity": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==", "dev": true }, "pify": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", "dev": true }, "possible-typed-array-names": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", "dev": true }, "postcss": { "version": "8.5.1", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.1.tgz", "integrity": "sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==", "dev": true, "requires": { "nanoid": "^3.3.8", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "postcss-calc": { "version": "8.2.4", "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", "dev": true, "requires": { "postcss-selector-parser": "^6.0.9", "postcss-value-parser": "^4.2.0" } }, "postcss-colormin": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.0.tgz", "integrity": "sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==", "dev": true, "requires": { "browserslist": "^4.16.6", "caniuse-api": "^3.0.0", "colord": "^2.9.1", "postcss-value-parser": "^4.2.0" } }, "postcss-convert-values": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.0.tgz", "integrity": "sha512-GkyPbZEYJiWtQB0KZ0X6qusqFHUepguBCNFi9t5JJc7I2OTXG7C0twbTLvCfaKOLl3rSXmpAwV7W5txd91V84g==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-dir-pseudo-class": { "version": "9.0.1", "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-9.0.1.tgz", "integrity": "sha512-tRBEK0MHYvcMUrAuYMEOa0zg9APqirBcgzi6P21OhxtJyJADo/SWBwY1CAwEohQ/6HDaa9jCjLRG7K3PVQYHEA==", "dev": true, "requires": { "postcss-selector-parser": "^7.0.0" }, "dependencies": { "postcss-selector-parser": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", "dev": true, "requires": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } } } }, "postcss-discard-comments": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.0.tgz", "integrity": "sha512-L0IKF4jAshRyn03SkEO6ar/Ipz2oLywVbg2THf2EqqdNkBwmVMxuTR/RoAltOw4piiaLt3gCAdrbAqmTBInmhg==", "dev": true, "requires": {} }, "postcss-discard-duplicates": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", "dev": true, "requires": {} }, "postcss-discard-empty": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.0.tgz", "integrity": "sha512-782T/buGgb3HOuHOJAHpdyKzAAKsv/BxWqsutnZ+QsiHEcDkY7v+6WWdturuBiSal6XMOO1p1aJvwXdqLD5vhA==", "dev": true, "requires": {} }, "postcss-discard-overridden": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", "dev": true, "requires": {} }, "postcss-inline-svg": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/postcss-inline-svg/-/postcss-inline-svg-6.0.0.tgz", "integrity": "sha512-ok5j0Iqsn8mS/5U1W+Im6qkQjm6nBxdwwJU+BSnBaDhLjC06h1xvy9MA+tefxhfZP/ARTRwARSozzYGf/sqEGg==", "dev": true, "requires": { "css-select": "^5.1.0", "dom-serializer": "^2.0.0", "htmlparser2": "^8.0.1", "postcss-value-parser": "^4.2.0" }, "dependencies": { "dom-serializer": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", "dev": true, "requires": { "domelementtype": "^2.3.0", "domhandler": "^5.0.2", "entities": "^4.2.0" } }, "domelementtype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", "dev": true }, "domhandler": { "version": "5.0.3", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", "dev": true, "requires": { "domelementtype": "^2.3.0" } }, "entities": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz", "integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==", "dev": true } } }, "postcss-logical": { "version": "5.0.4", "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz", "integrity": "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==", "dev": true, "requires": {} }, "postcss-media-query-parser": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz", "integrity": "sha1-J7Ocb02U+Bsac7j3Y1HGCeXO8kQ=", "dev": true }, "postcss-merge-longhand": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.0.tgz", "integrity": "sha512-Gr46srN2tsLD8fudKYoHO56RG0BLQ2nsBRnSZGY04eNBPwTeWa9KeHrbL3tOLAHyB2aliikycPH2TMJG1U+W6g==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0", "stylehacks": "^5.1.0" } }, "postcss-merge-rules": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.0.tgz", "integrity": "sha512-NecukEJovQ0mG7h7xV8wbYAkXGTO3MPKnXvuiXzOKcxoOodfTTKYjeo8TMhAswlSkjcPIBlnKbSFcTuVSDaPyQ==", "dev": true, "requires": { "browserslist": "^4.16.6", "caniuse-api": "^3.0.0", "cssnano-utils": "^3.1.0", "postcss-selector-parser": "^6.0.5" } }, "postcss-minify-font-values": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-minify-gradients": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.0.tgz", "integrity": "sha512-J/TMLklkONn3LuL8wCwfwU8zKC1hpS6VcxFkNUNjmVt53uKqrrykR3ov11mdUYyqVMEx67slMce0tE14cE4DTg==", "dev": true, "requires": { "colord": "^2.9.1", "cssnano-utils": "^3.1.0", "postcss-value-parser": "^4.2.0" } }, "postcss-minify-params": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.0.tgz", "integrity": "sha512-q67dcts4Hct6x8+JmhBgctHkbvUsqGIg2IItenjE63iZXMbhjr7AlVZkNnKtIGt/1Wsv7p/7YzeSII6Q+KPXRg==", "dev": true, "requires": { "browserslist": "^4.16.6", "cssnano-utils": "^3.1.0", "postcss-value-parser": "^4.2.0" } }, "postcss-minify-selectors": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.0.tgz", "integrity": "sha512-vYxvHkW+iULstA+ctVNx0VoRAR4THQQRkG77o0oa4/mBS0OzGvvzLIvHDv/nNEM0crzN2WIyFU5X7wZhaUK3RA==", "dev": true, "requires": { "postcss-selector-parser": "^6.0.5" } }, "postcss-normalize-charset": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", "dev": true, "requires": {} }, "postcss-normalize-display-values": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-normalize-positions": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.0.tgz", "integrity": "sha512-8gmItgA4H5xiUxgN/3TVvXRoJxkAWLW6f/KKhdsH03atg0cB8ilXnrB5PpSshwVu/dD2ZsRFQcR1OEmSBDAgcQ==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-normalize-repeat-style": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.0.tgz", "integrity": "sha512-IR3uBjc+7mcWGL6CtniKNQ4Rr5fTxwkaDHwMBDGGs1x9IVRkYIT/M4NelZWkAOBdV6v3Z9S46zqaKGlyzHSchw==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-normalize-string": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-normalize-timing-functions": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-normalize-unicode": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.0.tgz", "integrity": "sha512-J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ==", "dev": true, "requires": { "browserslist": "^4.16.6", "postcss-value-parser": "^4.2.0" } }, "postcss-normalize-url": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", "dev": true, "requires": { "normalize-url": "^6.0.1", "postcss-value-parser": "^4.2.0" } }, "postcss-normalize-whitespace": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.0.tgz", "integrity": "sha512-7O1FanKaJkpWFyCghFzIkLhehujV/frGkdofGLwhg5upbLyGsSfiTcZAdSzoPsSUgyPCkBkNMeWR8yVgPdQybg==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-ordered-values": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.0.tgz", "integrity": "sha512-wU4Z4D4uOIH+BUKkYid36gGDJNQtkVJT7Twv8qH6UyfttbbJWyw4/xIPuVEkkCtQLAJ0EdsNSh8dlvqkXb49TA==", "dev": true, "requires": { "cssnano-utils": "^3.1.0", "postcss-value-parser": "^4.2.0" } }, "postcss-pseudo-is": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/postcss-pseudo-is/-/postcss-pseudo-is-0.3.0.tgz", "integrity": "sha512-ztGTR/GrExv9PANuMS5NpiB9lhm/9Hql2tZqWh5LVXNFqHZNKSD8cgzbMOfi4Xhdhkj2B/KNpI9bDwFQo+xdOA==", "dev": true, "requires": { "postcss-selector-parser": "^6.0.2" } }, "postcss-reduce-initial": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.0.tgz", "integrity": "sha512-5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw==", "dev": true, "requires": { "browserslist": "^4.16.6", "caniuse-api": "^3.0.0" } }, "postcss-reduce-transforms": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-resolve-nested-selector": { "version": "0.1.6", "resolved": "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.6.tgz", "integrity": "sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw==", "dev": true }, "postcss-safe-parser": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-7.0.1.tgz", "integrity": "sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A==", "dev": true, "requires": {} }, "postcss-scss": { "version": "4.0.9", "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-4.0.9.tgz", "integrity": "sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==", "dev": true, "requires": {} }, "postcss-selector-parser": { "version": "6.1.2", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", "dev": true, "requires": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "postcss-sorting": { "version": "8.0.2", "resolved": "https://registry.npmjs.org/postcss-sorting/-/postcss-sorting-8.0.2.tgz", "integrity": "sha512-M9dkSrmU00t/jK7rF6BZSZauA5MAaBW4i5EnJXspMwt4iqTh/L9j6fgMnbElEOfyRyfLfVbIHj/R52zHzAPe1Q==", "dev": true, "requires": {} }, "postcss-svgo": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0", "svgo": "^2.7.0" }, "dependencies": { "commander": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", "dev": true }, "css-select": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", "dev": true, "requires": { "boolbase": "^1.0.0", "css-what": "^6.0.1", "domhandler": "^4.3.1", "domutils": "^2.8.0", "nth-check": "^2.0.1" } }, "css-tree": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", "dev": true, "requires": { "mdn-data": "2.0.14", "source-map": "^0.6.1" } }, "csso": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", "dev": true, "requires": { "css-tree": "^1.1.2" } }, "dom-serializer": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", "dev": true, "requires": { "domelementtype": "^2.0.1", "domhandler": "^4.2.0", "entities": "^2.0.0" } }, "domelementtype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", "dev": true }, "domutils": { "version": "2.8.0", "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "dev": true, "requires": { "dom-serializer": "^1.0.1", "domelementtype": "^2.2.0", "domhandler": "^4.2.0" } }, "mdn-data": { "version": "2.0.14", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", "dev": true }, "svgo": { "version": "2.8.0", "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", "dev": true, "requires": { "@trysound/sax": "0.2.0", "commander": "^7.2.0", "css-select": "^4.1.3", "css-tree": "^1.1.3", "csso": "^4.2.0", "picocolors": "^1.0.0", "stable": "^0.1.8" } } } }, "postcss-unique-selectors": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.0.tgz", "integrity": "sha512-LmUhgGobtpeVJJHuogzjLRwJlN7VH+BL5c9GKMVJSS/ejoyePZkXvNsYUtk//F6vKOGK86gfRS0xH7fXQSDtvA==", "dev": true, "requires": { "postcss-selector-parser": "^6.0.5" } }, "postcss-value-parser": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", "dev": true }, "preact": { "version": "10.25.4", "resolved": "https://registry.npmjs.org/preact/-/preact-10.25.4.tgz", "integrity": "sha512-jLdZDb+Q+odkHJ+MpW/9U5cODzqnB+fy2EiHSZES7ldV5LK7yjlVzTp7R8Xy6W6y75kfK8iWYtFVH7lvjwrCMA==", "dev": true }, "prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true }, "punycode": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", "dev": true }, "query-string": { "version": "6.14.1", "resolved": "https://registry.npmjs.org/query-string/-/query-string-6.14.1.tgz", "integrity": "sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==", "dev": true, "requires": { "decode-uri-component": "^0.2.0", "filter-obj": "^1.1.0", "split-on-first": "^1.0.0", "strict-uri-encode": "^2.0.0" } }, "queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true }, "read-pkg": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", "dev": true, "requires": { "load-json-file": "^4.0.0", "normalize-package-data": "^2.3.2", "path-type": "^3.0.0" }, "dependencies": { "path-type": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", "dev": true, "requires": { "pify": "^3.0.0" } } } }, "readdirp": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.0.1.tgz", "integrity": "sha512-GkMg9uOTpIWWKbSsgwb5fA4EavTR+SG/PMPoAY8hkhHfEEY0/vqljY+XHqtDf2cr2IJtoNRDbrrEpZUiZCkYRw==", "dev": true }, "regexp.prototype.flags": { "version": "1.5.2", "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", "dev": true, "requires": { "call-bind": "^1.0.6", "define-properties": "^1.2.1", "es-errors": "^1.3.0", "set-function-name": "^2.0.1" } }, "relateurl": { "version": "0.2.7", "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=", "dev": true }, "require-from-string": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "dev": true }, "resolve": { "version": "1.22.8", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", "dev": true, "requires": { "is-core-module": "^2.13.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" } }, "resolve-from": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true }, "restore-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", "dev": true, "requires": { "onetime": "^5.1.0", "signal-exit": "^3.0.2" } }, "reusify": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "dev": true }, "rimraf": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-6.0.1.tgz", "integrity": "sha512-9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A==", "dev": true, "requires": { "glob": "^11.0.0", "package-json-from-dist": "^1.0.0" }, "dependencies": { "brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, "requires": { "balanced-match": "^1.0.0" } }, "glob": { "version": "11.0.0", "resolved": "https://registry.npmjs.org/glob/-/glob-11.0.0.tgz", "integrity": "sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==", "dev": true, "requires": { "foreground-child": "^3.1.0", "jackspeak": "^4.0.1", "minimatch": "^10.0.0", "minipass": "^7.1.2", "package-json-from-dist": "^1.0.0", "path-scurry": "^2.0.0" } }, "jackspeak": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.0.1.tgz", "integrity": "sha512-cub8rahkh0Q/bw1+GxP7aeSe29hHHn2V4m29nnDlvCdlgU+3UGxkZp7Z53jLUdpX3jdTO0nJZUDl3xvbWc2Xog==", "dev": true, "requires": { "@isaacs/cliui": "^8.0.2", "@pkgjs/parseargs": "^0.11.0" } }, "lru-cache": { "version": "11.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.0.0.tgz", "integrity": "sha512-Qv32eSV1RSCfhY3fpPE2GNZ8jgM9X7rdAfemLWqTUxwiyIC4jJ6Sy0fZ8H+oLWevO6i4/bizg7c8d8i6bxrzbA==", "dev": true }, "minimatch": { "version": "10.0.1", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz", "integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==", "dev": true, "requires": { "brace-expansion": "^2.0.1" } }, "minipass": { "version": "7.1.2", "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", "dev": true }, "path-scurry": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.0.tgz", "integrity": "sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==", "dev": true, "requires": { "lru-cache": "^11.0.0", "minipass": "^7.1.2" } } } }, "run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, "requires": { "queue-microtask": "^1.2.2" } }, "rxjs": { "version": "7.8.1", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", "requires": { "tslib": "^2.1.0" } }, "safe-array-concat": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", "dev": true, "requires": { "call-bind": "^1.0.7", "get-intrinsic": "^1.2.4", "has-symbols": "^1.0.3", "isarray": "^2.0.5" } }, "safe-regex-test": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", "dev": true, "requires": { "call-bind": "^1.0.6", "es-errors": "^1.3.0", "is-regex": "^1.1.4" } }, "safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", "dev": true, "optional": true, "peer": true }, "sass": { "version": "1.83.4", "resolved": "https://registry.npmjs.org/sass/-/sass-1.83.4.tgz", "integrity": "sha512-B1bozCeNQiOgDcLd33e2Cs2U60wZwjUUXzh900ZyQF5qUasvMdDZYbQ566LJu7cqR+sAHlAfO6RMkaID5s6qpA==", "dev": true, "requires": { "@parcel/watcher": "^2.4.1", "chokidar": "^4.0.0", "immutable": "^5.0.2", "source-map-js": ">=0.6.2 <2.0.0" } }, "select": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/select/-/select-1.1.2.tgz", "integrity": "sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0=" }, "semver": { "version": "7.6.3", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true }, "set-function-length": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", "dev": true, "requires": { "define-data-property": "^1.1.4", "es-errors": "^1.3.0", "function-bind": "^1.1.2", "get-intrinsic": "^1.2.4", "gopd": "^1.0.1", "has-property-descriptors": "^1.0.2" } }, "set-function-name": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", "dev": true, "requires": { "define-data-property": "^1.1.4", "es-errors": "^1.3.0", "functions-have-names": "^1.2.3", "has-property-descriptors": "^1.0.2" } }, "shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, "requires": { "shebang-regex": "^3.0.0" } }, "shebang-regex": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true }, "shell-quote": { "version": "1.7.3", "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz", "integrity": "sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==", "dev": true }, "side-channel": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", "dev": true, "requires": { "call-bind": "^1.0.7", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.4", "object-inspect": "^1.13.1" } }, "signal-exit": { "version": "3.0.7", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, "simple-icons": { "version": "14.4.0", "resolved": "https://registry.npmjs.org/simple-icons/-/simple-icons-14.4.0.tgz", "integrity": "sha512-eR4WWGF2/dMn6Na7wQZ9nUnGQg4CC9MnqYUlKKfIO0kQ79BdwyFS2L+X/MIxArULsh/IE0U48d4r9N4JVPicIQ==", "dev": true }, "slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true }, "slashes": { "version": "3.0.12", "resolved": "https://registry.npmjs.org/slashes/-/slashes-3.0.12.tgz", "integrity": "sha512-Q9VME8WyGkc7pJf6QEkj3wE+2CnvZMI+XJhwdTPR8Z/kWQRXi7boAWLDibRPyHRTUTPx5FaU7MsyrjI3yLB4HA==", "dev": true }, "slice-ansi": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", "dev": true, "requires": { "ansi-styles": "^4.0.0", "astral-regex": "^2.0.0", "is-fullwidth-code-point": "^3.0.0" }, "dependencies": { "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "requires": { "color-convert": "^2.0.1" } }, "color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "requires": { "color-name": "~1.1.4" } }, "color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true } } }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true }, "source-map-js": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", "dev": true }, "source-map-support": { "version": "0.5.21", "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "dev": true, "requires": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" } }, "spdx-correct": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", "dev": true, "requires": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" } }, "spdx-exceptions": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", "dev": true }, "spdx-expression-parse": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "dev": true, "requires": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" } }, "spdx-license-ids": { "version": "3.0.7", "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz", "integrity": "sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==", "dev": true }, "split-on-first": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz", "integrity": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==", "dev": true }, "stable": { "version": "0.1.8", "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", "dev": true }, "strict-uri-encode": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz", "integrity": "sha1-ucczDHBChi9rFC3CdLvMWGbONUY=", "dev": true }, "string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, "requires": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "string-width-cjs": { "version": "npm:string-width@4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, "requires": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "string.prototype.padend": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.2.tgz", "integrity": "sha512-/AQFLdYvePENU3W5rgurfWSMU6n+Ww8n/3cUt7E+vPBB/D7YDG8x+qjoFs4M/alR2bW7Qg6xMjVwWUOvuQ0XpQ==", "dev": true, "requires": { "call-bind": "^1.0.2", "define-properties": "^1.1.3", "es-abstract": "^1.18.0-next.2" } }, "string.prototype.trim": { "version": "1.2.9", "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", "dev": true, "requires": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-abstract": "^1.23.0", "es-object-atoms": "^1.0.0" } }, "string.prototype.trimend": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", "dev": true, "requires": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" } }, "string.prototype.trimstart": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", "dev": true, "requires": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" } }, "strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "requires": { "ansi-regex": "^5.0.1" } }, "strip-ansi-cjs": { "version": "npm:strip-ansi@6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "requires": { "ansi-regex": "^5.0.1" } }, "strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", "dev": true }, "strip-json-comments": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true }, "style-search": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", "integrity": "sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==", "dev": true }, "stylehacks": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.0.tgz", "integrity": "sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==", "dev": true, "requires": { "browserslist": "^4.16.6", "postcss-selector-parser": "^6.0.4" } }, "stylelint": { "version": "16.12.0", "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.12.0.tgz", "integrity": "sha512-F8zZ3L/rBpuoBZRvI4JVT20ZanPLXfQLzMOZg1tzPflRVh9mKpOZ8qcSIhh1my3FjAjZWG4T2POwGnmn6a6hbg==", "dev": true, "requires": { "@csstools/css-parser-algorithms": "^3.0.4", "@csstools/css-tokenizer": "^3.0.3", "@csstools/media-query-list-parser": "^4.0.2", "@csstools/selector-specificity": "^5.0.0", "@dual-bundle/import-meta-resolve": "^4.1.0", "balanced-match": "^2.0.0", "colord": "^2.9.3", "cosmiconfig": "^9.0.0", "css-functions-list": "^3.2.3", "css-tree": "^3.0.1", "debug": "^4.3.7", "fast-glob": "^3.3.2", "fastest-levenshtein": "^1.0.16", "file-entry-cache": "^9.1.0", "global-modules": "^2.0.0", "globby": "^11.1.0", "globjoin": "^0.1.4", "html-tags": "^3.3.1", "ignore": "^6.0.2", "imurmurhash": "^0.1.4", "is-plain-object": "^5.0.0", "known-css-properties": "^0.35.0", "mathml-tag-names": "^2.1.3", "meow": "^13.2.0", "micromatch": "^4.0.8", "normalize-path": "^3.0.0", "picocolors": "^1.1.1", "postcss": "^8.4.49", "postcss-resolve-nested-selector": "^0.1.6", "postcss-safe-parser": "^7.0.1", "postcss-selector-parser": "^7.0.0", "postcss-value-parser": "^4.2.0", "resolve-from": "^5.0.0", "string-width": "^4.2.3", "supports-hyperlinks": "^3.1.0", "svg-tags": "^1.0.0", "table": "^6.9.0", "write-file-atomic": "^5.0.1" }, "dependencies": { "@csstools/media-query-list-parser": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-4.0.2.tgz", "integrity": "sha512-EUos465uvVvMJehckATTlNqGj4UJWkTmdWuDMjqvSUkjGpmOyFZBVwb4knxCm/k2GMTXY+c/5RkdndzFYWeX5A==", "dev": true, "requires": {} }, "@csstools/selector-specificity": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz", "integrity": "sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==", "dev": true, "requires": {} }, "balanced-match": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", "dev": true }, "css-tree": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.1.0.tgz", "integrity": "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==", "dev": true, "requires": { "mdn-data": "2.12.2", "source-map-js": "^1.0.1" } }, "file-entry-cache": { "version": "9.1.0", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-9.1.0.tgz", "integrity": "sha512-/pqPFG+FdxWQj+/WSuzXSDaNzxgTLr/OrR1QuqfEZzDakpdYE70PwUxL7BPUa8hpjbvY1+qvCl8k+8Tq34xJgg==", "dev": true, "requires": { "flat-cache": "^5.0.0" } }, "flat-cache": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-5.0.0.tgz", "integrity": "sha512-JrqFmyUl2PnPi1OvLyTVHnQvwQ0S+e6lGSwu8OkAZlSaNIZciTY2H/cOOROxsBA1m/LZNHDsqAgDZt6akWcjsQ==", "dev": true, "requires": { "flatted": "^3.3.1", "keyv": "^4.5.4" } }, "ignore": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/ignore/-/ignore-6.0.2.tgz", "integrity": "sha512-InwqeHHN2XpumIkMvpl/DCJVrAHgCsG5+cn1XlnLWGwtZBm8QJfSusItfrwx81CTp5agNZqpKU2J/ccC5nGT4A==", "dev": true }, "mdn-data": { "version": "2.12.2", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.12.2.tgz", "integrity": "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==", "dev": true }, "postcss-selector-parser": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", "dev": true, "requires": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true }, "signal-exit": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.1.tgz", "integrity": "sha512-uUWsN4aOxJAS8KOuf3QMyFtgm1pkb6I+KRZbRF/ghdf5T7sM+B1lLLzPDxswUjkmHyxQAVzEgG35E3NzDM9GVw==", "dev": true }, "write-file-atomic": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-5.0.1.tgz", "integrity": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==", "dev": true, "requires": { "imurmurhash": "^0.1.4", "signal-exit": "^4.0.1" } } } }, "stylelint-config-recess-order": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/stylelint-config-recess-order/-/stylelint-config-recess-order-5.1.1.tgz", "integrity": "sha512-eDAHWVBelzDbMbdMj15pSw0Ycykv5eLeriJdbGCp0zd44yvhgZLI+wyVHegzXp5NrstxTPSxl0fuOVKdMm0XLA==", "dev": true, "requires": { "stylelint-order": "^6.0.4" } }, "stylelint-config-recommended": { "version": "14.0.1", "resolved": "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-14.0.1.tgz", "integrity": "sha512-bLvc1WOz/14aPImu/cufKAZYfXs/A/owZfSMZ4N+16WGXLoX5lOir53M6odBxvhgmgdxCVnNySJmZKx73T93cg==", "dev": true, "requires": {} }, "stylelint-config-recommended-scss": { "version": "14.1.0", "resolved": "https://registry.npmjs.org/stylelint-config-recommended-scss/-/stylelint-config-recommended-scss-14.1.0.tgz", "integrity": "sha512-bhaMhh1u5dQqSsf6ri2GVWWQW5iUjBYgcHkh7SgDDn92ijoItC/cfO/W+fpXshgTQWhwFkP1rVcewcv4jaftRg==", "dev": true, "requires": { "postcss-scss": "^4.0.9", "stylelint-config-recommended": "^14.0.1", "stylelint-scss": "^6.4.0" } }, "stylelint-config-standard": { "version": "36.0.1", "resolved": "https://registry.npmjs.org/stylelint-config-standard/-/stylelint-config-standard-36.0.1.tgz", "integrity": "sha512-8aX8mTzJ6cuO8mmD5yon61CWuIM4UD8Q5aBcWKGSf6kg+EC3uhB+iOywpTK4ca6ZL7B49en8yanOFtUW0qNzyw==", "dev": true, "requires": { "stylelint-config-recommended": "^14.0.1" } }, "stylelint-config-standard-scss": { "version": "14.0.0", "resolved": "https://registry.npmjs.org/stylelint-config-standard-scss/-/stylelint-config-standard-scss-14.0.0.tgz", "integrity": "sha512-6Pa26D9mHyi4LauJ83ls3ELqCglU6VfCXchovbEqQUiEkezvKdv6VgsIoMy58i00c854wVmOw0k8W5FTpuaVqg==", "dev": true, "requires": { "stylelint-config-recommended-scss": "^14.1.0", "stylelint-config-standard": "^36.0.1" } }, "stylelint-order": { "version": "6.0.4", "resolved": "https://registry.npmjs.org/stylelint-order/-/stylelint-order-6.0.4.tgz", "integrity": "sha512-0UuKo4+s1hgQ/uAxlYU4h0o0HS4NiQDud0NAUNI0aa8FJdmYHA5ZZTFHiV5FpmE3071e9pZx5j0QpVJW5zOCUA==", "dev": true, "requires": { "postcss": "^8.4.32", "postcss-sorting": "^8.0.2" } }, "stylelint-scss": { "version": "6.11.0", "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-6.11.0.tgz", "integrity": "sha512-AvJ6LVzz2iXHxPlPTR9WVy73FC/vmohH54VySNlCKX1NIXNAeuzy/VbIkMJLMyw/xKYqkgY4kAgB+qy5BfCaCg==", "dev": true, "requires": { "css-tree": "^3.0.1", "is-plain-object": "^5.0.0", "known-css-properties": "^0.35.0", "mdn-data": "^2.15.0", "postcss-media-query-parser": "^0.2.3", "postcss-resolve-nested-selector": "^0.1.6", "postcss-selector-parser": "^7.0.0", "postcss-value-parser": "^4.2.0" }, "dependencies": { "css-tree": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.0.1.tgz", "integrity": "sha512-8Fxxv+tGhORlshCdCwnNJytvlvq46sOLSYEx2ZIGurahWvMucSRnyjPA3AmrMq4VPRYbHVpWj5VkiVasrM2H4Q==", "dev": true, "requires": { "mdn-data": "2.12.1", "source-map-js": "^1.0.1" }, "dependencies": { "mdn-data": { "version": "2.12.1", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.12.1.tgz", "integrity": "sha512-rsfnCbOHjqrhWxwt5/wtSLzpoKTzW7OXdT5lLOIH1OTYhWu9rRJveGq0sKvDZODABH7RX+uoR+DYcpFnq4Tf6Q==", "dev": true } } }, "mdn-data": { "version": "2.15.0", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.15.0.tgz", "integrity": "sha512-KIrS0lFPOqA4DgeO16vI5fkAsy8p++WBlbXtB5P1EQs8ubBgguAInNd1DnrCeTRfGchY0kgThgDOOIPyOLH2dQ==", "dev": true }, "postcss-selector-parser": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", "dev": true, "requires": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } } } }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "requires": { "has-flag": "^4.0.0" }, "dependencies": { "has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true } } }, "supports-hyperlinks": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.1.0.tgz", "integrity": "sha512-2rn0BZ+/f7puLOHZm1HOJfwBggfaHXUpPUSSG/SWM4TWp5KCfmNYwnC3hruy2rZlMnmWZ+QAGpZfchu3f3695A==", "dev": true, "requires": { "has-flag": "^4.0.0", "supports-color": "^7.0.0" }, "dependencies": { "has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true } } }, "supports-preserve-symlinks-flag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "dev": true }, "svg-tags": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", "integrity": "sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q=", "dev": true }, "svgo": { "version": "3.3.2", "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.3.2.tgz", "integrity": "sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==", "dev": true, "requires": { "@trysound/sax": "0.2.0", "commander": "^7.2.0", "css-select": "^5.1.0", "css-tree": "^2.3.1", "css-what": "^6.1.0", "csso": "^5.0.5", "picocolors": "^1.0.0" }, "dependencies": { "commander": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", "dev": true }, "css-tree": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", "dev": true, "requires": { "mdn-data": "2.0.30", "source-map-js": "^1.0.1" } }, "mdn-data": { "version": "2.0.30", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", "dev": true } } }, "synckit": { "version": "0.9.1", "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.9.1.tgz", "integrity": "sha512-7gr8p9TQP6RAHusBOSLs46F4564ZrjV8xFmw5zCmgmhGUcw2hxsShhJ6CEiHQMgPDwAQ1fWHPM0ypc4RMAig4A==", "dev": true, "requires": { "@pkgr/core": "^0.1.0", "tslib": "^2.6.2" } }, "sywac": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/sywac/-/sywac-1.3.0.tgz", "integrity": "sha512-LDt2stNTp4bVPMgd70Jj9PWrSa4batl+bv+Ea5NLNGT7ufc4oQPtRfQ73wbddNV6RilaPqnEt6y1Wkm5FVTNEg==", "dev": true }, "table": { "version": "6.9.0", "resolved": "https://registry.npmjs.org/table/-/table-6.9.0.tgz", "integrity": "sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==", "dev": true, "requires": { "ajv": "^8.0.1", "lodash.truncate": "^4.4.2", "slice-ansi": "^4.0.0", "string-width": "^4.2.3", "strip-ansi": "^6.0.1" }, "dependencies": { "ajv": { "version": "8.17.1", "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", "dev": true, "requires": { "fast-deep-equal": "^3.1.3", "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2" } }, "json-schema-traverse": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true } } }, "terser": { "version": "5.31.6", "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.6.tgz", "integrity": "sha512-PQ4DAriWzKj+qgehQ7LK5bQqCFNMmlhjR2PFFLuqGCpuCAauxemVBWwWOxo3UIwWQx8+Pr61Df++r76wDmkQBg==", "dev": true, "requires": { "@jridgewell/source-map": "^0.3.3", "acorn": "^8.8.2", "commander": "^2.20.0", "source-map-support": "~0.5.20" } }, "text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", "dev": true }, "timsort": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=", "dev": true }, "tiny-emitter": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz", "integrity": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==" }, "tiny-glob": { "version": "0.2.9", "resolved": "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz", "integrity": "sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==", "dev": true, "requires": { "globalyzer": "0.1.0", "globrex": "^0.1.2" } }, "to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, "requires": { "is-number": "^7.0.0" } }, "tr46": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=", "dev": true }, "ts-api-utils": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.0.0.tgz", "integrity": "sha512-xCt/TOAc+EOHS1XPnijD3/yzpH6qg2xppZO1YDqGoVsNXfQfzHpOdNuXwrwOU8u4ITXJyDCTyt8w5g1sZv9ynQ==", "dev": true, "requires": {} }, "ts-node": { "version": "10.9.2", "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", "dev": true, "requires": { "@cspotcode/source-map-support": "^0.8.0", "@tsconfig/node10": "^1.0.7", "@tsconfig/node12": "^1.0.7", "@tsconfig/node14": "^1.0.0", "@tsconfig/node16": "^1.0.2", "acorn": "^8.4.1", "acorn-walk": "^8.1.1", "arg": "^4.1.0", "create-require": "^1.1.0", "diff": "^4.0.1", "make-error": "^1.1.1", "v8-compile-cache-lib": "^3.0.1", "yn": "3.1.1" } }, "tsconfig-paths": { "version": "3.15.0", "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", "dev": true, "requires": { "@types/json5": "^0.0.29", "json5": "^1.0.2", "minimist": "^1.2.6", "strip-bom": "^3.0.0" } }, "tslib": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==" }, "type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, "requires": { "prelude-ls": "^1.2.1" } }, "type-fest": { "version": "0.20.2", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true }, "typed-array-buffer": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", "dev": true, "requires": { "call-bind": "^1.0.7", "es-errors": "^1.3.0", "is-typed-array": "^1.1.13" } }, "typed-array-byte-length": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", "dev": true, "requires": { "call-bind": "^1.0.7", "for-each": "^0.3.3", "gopd": "^1.0.1", "has-proto": "^1.0.3", "is-typed-array": "^1.1.13" } }, "typed-array-byte-offset": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", "dev": true, "requires": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.7", "for-each": "^0.3.3", "gopd": "^1.0.1", "has-proto": "^1.0.3", "is-typed-array": "^1.1.13" } }, "typed-array-length": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", "dev": true, "requires": { "call-bind": "^1.0.7", "for-each": "^0.3.3", "gopd": "^1.0.1", "has-proto": "^1.0.3", "is-typed-array": "^1.1.13", "possible-typed-array-names": "^1.0.0" } }, "typescript": { "version": "5.7.3", "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz", "integrity": "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==", "dev": true }, "unbox-primitive": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", "dev": true, "requires": { "call-bind": "^1.0.2", "has-bigints": "^1.0.2", "has-symbols": "^1.0.3", "which-boxed-primitive": "^1.0.2" } }, "undici-types": { "version": "6.20.0", "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz", "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==", "dev": true }, "update-browserslist-db": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz", "integrity": "sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==", "dev": true, "requires": { "escalade": "^3.1.2", "picocolors": "^1.0.1" } }, "uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, "requires": { "punycode": "^2.1.0" } }, "util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", "dev": true }, "v8-compile-cache-lib": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", "dev": true }, "validate-npm-package-license": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", "dev": true, "requires": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" } }, "wcwidth": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", "integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=", "dev": true, "requires": { "defaults": "^1.0.3" } }, "webidl-conversions": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=", "dev": true }, "whatwg-url": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", "integrity": "sha1-lmRU6HZUYuN2RNNib2dCzotwll0=", "dev": true, "requires": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" } }, "which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, "requires": { "isexe": "^2.0.0" } }, "which-boxed-primitive": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", "dev": true, "requires": { "is-bigint": "^1.0.1", "is-boolean-object": "^1.1.0", "is-number-object": "^1.0.4", "is-string": "^1.0.5", "is-symbol": "^1.0.3" } }, "which-typed-array": { "version": "1.1.15", "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", "dev": true, "requires": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.7", "for-each": "^0.3.3", "gopd": "^1.0.1", "has-tostringtag": "^1.0.2" } }, "wrap-ansi": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", "dev": true, "requires": { "ansi-styles": "^6.1.0", "string-width": "^5.0.1", "strip-ansi": "^7.0.1" }, "dependencies": { "ansi-regex": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", "dev": true }, "ansi-styles": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.1.0.tgz", "integrity": "sha512-VbqNsoz55SYGczauuup0MFUyXNQviSpFTj1RQtFzmQLk18qbVSpTFFGMT293rmDaQuKCT6InmbuEyUne4mTuxQ==", "dev": true }, "emoji-regex": { "version": "9.2.2", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", "dev": true }, "string-width": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", "dev": true, "requires": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", "strip-ansi": "^7.0.1" } }, "strip-ansi": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", "dev": true, "requires": { "ansi-regex": "^6.0.1" } } } }, "wrap-ansi-cjs": { "version": "npm:wrap-ansi@7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, "requires": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" }, "dependencies": { "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "requires": { "color-convert": "^2.0.1" } }, "color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "requires": { "color-name": "~1.1.4" } }, "color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true } } }, "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", "dev": true }, "xcase": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/xcase/-/xcase-2.0.1.tgz", "integrity": "sha1-x/pyyqD0QNt4/VZzQyA4rJhEULk=", "dev": true }, "yaml": { "version": "1.10.2", "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", "dev": true }, "yn": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", "dev": true }, "yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "dev": true } } } mkdocs-material-9.6.4/package.json000066400000000000000000000066761475306445600171310ustar00rootroot00000000000000{ "name": "mkdocs-material", "version": "9.6.4", "description": "Documentation that simply works", "keywords": [ "mkdocs", "documentation", "theme" ], "homepage": "https://squidfunk.github.io/mkdocs-material/", "bugs": { "url": "https://github.com/squidfunk/mkdocs-material/issues", "email": "martin.donath@squidfunk.com" }, "license": "MIT", "private": true, "author": { "name": "Martin Donath", "email": "martin.donath@squidfunk.com" }, "contributors": [], "repository": { "type": "git", "url": "https://github.com/squidfunk/mkdocs-material.git" }, "scripts": { "build": "rimraf material && ts-node -T tools/build --optimize", "build:all": "rimraf material && ts-node -T tools/build --all --optimize", "build:dirty": "ts-node -T tools/build --dirty", "clean": "rimraf material", "check": "run-p check:*", "check:build": "tsc --noEmit", "check:style": "run-p check:style:*", "check:style:scss": "stylelint \"src/**/*.scss\"", "check:style:ts": "eslint --cache \"src/**/*.ts\"", "fix": "run-p fix:*", "fix:style": "run-p fix:style:*", "fix:style:ts": "eslint --cache \"src/**/*.ts\" --fix", "start": "ts-node -T tools/build --verbose --all --dirty --watch", "upgrade": "run-s upgrade:*", "upgrade:bump": "ncu --upgrade --filterVersion \"/^\\^/\"", "upgrade:install": "npm install" }, "dependencies": { "clipboard": "^2.0.11", "escape-html": "^1.0.3", "focus-visible": "^5.2.1", "fuzzaldrin-plus": "^0.6.0", "lunr": "^2.3.9", "lunr-languages": "^1.14.0", "rxjs": "^7.8.1" }, "devDependencies": { "@fortawesome/fontawesome-free": "^6.7.2", "@mdi/svg": "^7.4.47", "@primer/octicons": "^19.14.0", "@stylistic/eslint-plugin-ts": "^3.0.1", "@stylistic/stylelint-config": "^2.0.0", "@stylistic/stylelint-plugin": "^3.1.1", "@types/css-modules": "^1.0.5", "@types/escape-html": "^1.0.4", "@types/fuzzaldrin-plus": "^0.6.5", "@types/html-minifier-terser": "^7.0.2", "@types/lunr": "^2.3.7", "@types/node": "^22.12.0", "@types/resize-observer-browser": "^0.1.11", "@types/sass": "^1.45.0", "@typescript-eslint/eslint-plugin": "^8.22.0", "@typescript-eslint/parser": "^8.22.0", "autoprefixer": "^10.4.20", "chokidar": "^4.0.3", "cssnano": "5.1.0", "esbuild": "^0.24.2", "eslint": "8.57.0", "eslint-plugin-eslint-comments": "^3.2.0", "eslint-plugin-import": "^2.31.0", "eslint-plugin-jsdoc": "^50.6.3", "eslint-plugin-no-null": "^1.0.2", "github-types": "^1.0.0", "gitlab": "^14.2.2", "google-fonts-complete": "jonathantneal/google-fonts-complete", "html-minifier-terser": "^7.2.0", "material-design-color": "^2.3.2", "material-shadows": "^3.0.1", "npm-check-updates": "^17.1.14", "npm-run-all": "^4.1.5", "postcss": "^8.5.1", "postcss-dir-pseudo-class": "^9.0.1", "postcss-inline-svg": "^6.0.0", "postcss-logical": "5.0.4", "postcss-pseudo-is": "^0.3.0", "preact": "^10.25.4", "rimraf": "^6.0.1", "sass": "^1.83.4", "simple-icons": "^14.4.0", "stylelint": "16.12.0", "stylelint-config-recess-order": "5.1.1", "stylelint-config-recommended": "14.0.1", "stylelint-config-standard-scss": "^14.0.0", "stylelint-scss": "^6.11.0", "svgo": "^3.3.2", "tiny-glob": "^0.2.9", "ts-node": "^10.9.2", "typescript": "^5.7.3" }, "engines": { "node": ">= 18" } } mkdocs-material-9.6.4/pyproject.toml000066400000000000000000000070271475306445600175460ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. [build-system] requires = [ "hatchling", "hatch-requirements-txt", "hatch-nodejs-version>=0.3.0", # Needed for "Framework :: MkDocs" "trove_classifiers>=2023.10.18", ] build-backend = "hatchling.build" [project] name = "mkdocs-material" dynamic = [ "version", "dependencies", "license", "description", "authors", "keywords" ] readme = "README.md" requires-python = ">=3.8" classifiers = [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: MkDocs", "License :: OSI Approved :: MIT License", "Programming Language :: JavaScript", "Programming Language :: Python", "Topic :: Documentation", "Topic :: Software Development :: Documentation", "Topic :: Text Processing :: Markup :: HTML", ] [project.optional-dependencies] recommended = [ "mkdocs-minify-plugin~=0.7", "mkdocs-redirects~=1.2", "mkdocs-rss-plugin~=1.6" ] git = [ "mkdocs-git-committers-plugin-2>=1.1,<3", "mkdocs-git-revision-date-localized-plugin~=1.2,>=1.2.4" ] imaging = [ "pillow~=10.2", "cairosvg~=2.6" ] [project.urls] Documentation = "https://squidfunk.github.io/mkdocs-material/" Source = "https://github.com/squidfunk/mkdocs-material" Changelog = "https://squidfunk.github.io/mkdocs-material/changelog/" Issues = "https://github.com/squidfunk/mkdocs-material/issues" Funding = "https://github.com/sponsors/squidfunk" [project.entry-points."mkdocs.plugins"] "material/blog" = "material.plugins.blog.plugin:BlogPlugin" "material/group" = "material.plugins.group.plugin:GroupPlugin" "material/info" = "material.plugins.info.plugin:InfoPlugin" "material/meta" = "material.plugins.meta.plugin:MetaPlugin" "material/offline" = "material.plugins.offline.plugin:OfflinePlugin" "material/privacy" = "material.plugins.privacy.plugin:PrivacyPlugin" "material/search" = "material.plugins.search.plugin:SearchPlugin" "material/social" = "material.plugins.social.plugin:SocialPlugin" "material/tags" = "material.plugins.tags.plugin:TagsPlugin" [project.entry-points."mkdocs.themes"] material = "material.templates" [tool.hatch.version] source = "nodejs" [tool.hatch.metadata.hooks.nodejs] fields = ["license", "description", "authors", "keywords", "urls"] [tool.hatch.metadata.hooks.requirements_txt] filename = "requirements.txt" [tool.hatch.build.targets.wheel] include = ["/material"] [tool.hatch.build.targets.sdist] include = ["/material", "/package.json", "/requirements.txt"] exclude = ["/material/overrides"] mkdocs-material-9.6.4/requirements.txt000066400000000000000000000025151475306445600201130ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # Requirements for core jinja2~=3.0 markdown~=3.2 mkdocs~=1.6 mkdocs-material-extensions~=1.3 pygments~=2.16 pymdown-extensions~=10.2 # Requirements for plugins babel~=2.10 colorama~=0.4 paginate~=0.5 regex>=2022.4 requests~=2.26 mkdocs-material-9.6.4/src/000077500000000000000000000000001475306445600154135ustar00rootroot00000000000000mkdocs-material-9.6.4/src/__init__.py000066400000000000000000000022031475306445600175210ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. __version__ = "$md-version$" mkdocs-material-9.6.4/src/extensions/000077500000000000000000000000001475306445600176125ustar00rootroot00000000000000mkdocs-material-9.6.4/src/extensions/__init__.py000066400000000000000000000021451475306445600217250ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. mkdocs-material-9.6.4/src/extensions/emoji.py000066400000000000000000000070611475306445600212730ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations import codecs import functools import material import os from glob import iglob from inspect import getfile from markdown import Markdown from pymdownx import emoji, twemoji_db from xml.etree.ElementTree import Element # ----------------------------------------------------------------------------- # Functions # ----------------------------------------------------------------------------- # Create twemoji index def twemoji(options: object, md: Markdown): paths = options.get("custom_icons", [])[:] return _load_twemoji_index(tuple(paths)) # Create emoji or icon def to_svg( index: str, shortname: str, alias: str, uc: str | None, alt: str, title: str, category: str, options: object, md: Markdown ): if not uc: icons = md.inlinePatterns["emoji"].emoji_index["emoji"] # Create and return element to host icon el = Element("span", { "class": options.get("classes", index) }) el.text = md.htmlStash.store(_load(icons[shortname]["path"])) return el # Delegate to `pymdownx.emoji` extension return emoji.to_svg( index, shortname, alias, uc, alt, title, category, options, md ) # ----------------------------------------------------------------------------- # Helper functions # ----------------------------------------------------------------------------- # Load icon @functools.lru_cache(maxsize = None) def _load(file: str): with codecs.open(file, encoding = "utf-8") as f: return f.read() # Load twemoji index and add icons @functools.lru_cache(maxsize = None) def _load_twemoji_index(paths): index = { "name": "twemoji", "emoji": twemoji_db.emoji, "aliases": twemoji_db.aliases } # Compute path to theme root and traverse all icon directories root = os.path.dirname(getfile(material)) root = os.path.join(root, "templates", ".icons") for path in [*paths, root]: base = os.path.normpath(path) # Index icons provided by the theme and via custom icons glob = os.path.join(base, "**", "*.svg") glob = iglob(os.path.normpath(glob), recursive = True) for file in glob: icon = file[len(base) + 1:-4].replace(os.path.sep, "-") # Add icon to index name = f":{icon}:" if not any(name in index[key] for key in ["emoji", "aliases"]): index["emoji"][name] = { "name": name, "path": file } # Return index return index mkdocs-material-9.6.4/src/overrides/000077500000000000000000000000001475306445600174155ustar00rootroot00000000000000mkdocs-material-9.6.4/src/overrides/assets/000077500000000000000000000000001475306445600207175ustar00rootroot00000000000000mkdocs-material-9.6.4/src/overrides/assets/javascripts/000077500000000000000000000000001475306445600232505ustar00rootroot00000000000000mkdocs-material-9.6.4/src/overrides/assets/javascripts/components/000077500000000000000000000000001475306445600254355ustar00rootroot00000000000000mkdocs-material-9.6.4/src/overrides/assets/javascripts/components/_/000077500000000000000000000000001475306445600256535ustar00rootroot00000000000000mkdocs-material-9.6.4/src/overrides/assets/javascripts/components/_/index.ts000066400000000000000000000071751475306445600273440ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { getElement, getElements } from "~/browser" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Component type */ export type ComponentType = | "iconsearch" /* Icon search */ | "iconsearch-query" /* Icon search input */ | "iconsearch-result" /* Icon search results */ | "iconsearch-select" /* Icon search select */ | "sponsorship" /* Sponsorship */ | "sponsorship-count" /* Sponsorship count */ | "sponsorship-total" /* Sponsorship total */ /** * Component * * @template T - Component type * @template U - Reference type */ export type Component< T extends {} = {}, U extends HTMLElement = HTMLElement > = T & { ref: U /* Component reference */ } /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Component type map */ interface ComponentTypeMap { "iconsearch": HTMLElement /* Icon search */ "iconsearch-query": HTMLInputElement /* Icon search input */ "iconsearch-result": HTMLElement /* Icon search results */ "iconsearch-select": HTMLSelectElement "sponsorship": HTMLElement /* Sponsorship */ "sponsorship-count": HTMLElement /* Sponsorship count */ "sponsorship-total": HTMLElement /* Sponsorship total */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Retrieve the element for a given component or throw a reference error * * @template T - Component type * * @param type - Component type * @param node - Node of reference * * @returns Element */ export function getComponentElement( type: T, node: ParentNode = document ): ComponentTypeMap[T] { return getElement(`[data-mdx-component=${type}]`, node) } /** * Retrieve all elements for a given component * * @template T - Component type * * @param type - Component type * @param node - Node of reference * * @returns Elements */ export function getComponentElements( type: T, node: ParentNode = document ): ComponentTypeMap[T][] { return getElements(`[data-mdx-component=${type}]`, node) } mkdocs-material-9.6.4/src/overrides/assets/javascripts/components/iconsearch/000077500000000000000000000000001475306445600275535ustar00rootroot00000000000000mkdocs-material-9.6.4/src/overrides/assets/javascripts/components/iconsearch/_/000077500000000000000000000000001475306445600277715ustar00rootroot00000000000000mkdocs-material-9.6.4/src/overrides/assets/javascripts/components/iconsearch/_/index.ts000066400000000000000000000067371475306445600314650ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { BehaviorSubject, Observable, fromEvent, map, merge } from "rxjs" import { configuration } from "~/_" import { requestJSON } from "~/browser" import { Component, getComponentElement, getComponentElements } from "../../_" import { IconSearchQuery, mountIconSearchQuery } from "../query" import { IconSearchResult, mountIconSearchResult } from "../result" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Icon category */ export interface IconCategory { base: string /* Category base URL */ data: Record /* Category data */ } /** * Icon search index */ export interface IconSearchIndex { icons: IconCategory /* Icons */ emojis: IconCategory /* Emojis */ } /* ------------------------------------------------------------------------- */ /** * Icon search */ export type IconSearch = | IconSearchQuery | IconSearchResult /** * Icon search mode */ export type IconSearchMode = | "all" | "icons" | "emojis" /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Mount icon search * * @param el - Icon search element * * @returns Icon search component observable */ export function mountIconSearch( el: HTMLElement ): Observable> { const config = configuration() const index$ = requestJSON( new URL("assets/javascripts/iconsearch_index.json", config.base) ) /* Retrieve query and result components */ const query = getComponentElement("iconsearch-query", el) const result = getComponentElement("iconsearch-result", el) /* Retrieve select component */ const mode$ = new BehaviorSubject("all") const selects = getComponentElements("iconsearch-select", el) for (const select of selects) { fromEvent(select, "change").pipe( map(ev => (ev.target as HTMLSelectElement).value as IconSearchMode) ) .subscribe(mode$) } /* Create and return component */ const query$ = mountIconSearchQuery(query) const result$ = mountIconSearchResult(result, { index$, query$, mode$ }) return merge(query$, result$) } mkdocs-material-9.6.4/src/overrides/assets/javascripts/components/iconsearch/index.ts000066400000000000000000000023101475306445600312260ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ export * from "./_" export * from "./query" export * from "./result" mkdocs-material-9.6.4/src/overrides/assets/javascripts/components/iconsearch/query/000077500000000000000000000000001475306445600307205ustar00rootroot00000000000000mkdocs-material-9.6.4/src/overrides/assets/javascripts/components/iconsearch/query/index.ts000066400000000000000000000055741475306445600324120ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, combineLatest, delay, distinctUntilChanged, filter, fromEvent, map, merge, startWith, withLatestFrom } from "rxjs" import { watchElementFocus } from "~/browser" import { Component } from "../../_" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Icon search query */ export interface IconSearchQuery { value: string /* Query value */ focus: boolean /* Query focus */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Mount icon search query * * @param el - Icon search query element * * @returns Icon search query component observable */ export function mountIconSearchQuery( el: HTMLInputElement ): Observable> { /* Intercept focus and input events */ const focus$ = watchElementFocus(el) const value$ = merge( fromEvent(el, "keyup"), fromEvent(el, "focus").pipe(delay(1)) ) .pipe( map(() => el.value), startWith(el.value), distinctUntilChanged(), ) /* Log search on blur */ focus$ .pipe( filter(active => !active), withLatestFrom(value$) ) .subscribe(([, value]) => { const path = document.location.pathname if (typeof ga === "function" && value.length) ga("send", "pageview", `${path}?q=[icon]+${value}`) }) /* Combine into single observable */ return combineLatest([value$, focus$]) .pipe( map(([value, focus]) => ({ ref: el, value, focus })), ) } mkdocs-material-9.6.4/src/overrides/assets/javascripts/components/iconsearch/result/000077500000000000000000000000001475306445600310715ustar00rootroot00000000000000mkdocs-material-9.6.4/src/overrides/assets/javascripts/components/iconsearch/result/index.ts000066400000000000000000000156641475306445600325640ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { filter as search } from "fuzzaldrin-plus" import { Observable, Subject, bufferCount, combineLatest, combineLatestWith, distinctUntilKeyChanged, filter, finalize, map, merge, of, switchMap, tap, withLatestFrom, zipWith } from "rxjs" import { getElement, watchElementBoundary } from "~/browser" import { round } from "~/utilities" import { Icon, renderIconSearchResult } from "_/templates" import { Component } from "../../_" import { IconSearchIndex, IconSearchMode } from "../_" import { IconSearchQuery } from "../query" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Icon search result */ export interface IconSearchResult { data: Icon[] /* Search result data */ } /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Watch options */ interface WatchOptions { index$: Observable /* Search index observable */ query$: Observable /* Search query observable */ mode$: Observable /* Search mode observable */ } /** * Mount options */ interface MountOptions { index$: Observable /* Search index observable */ query$: Observable /* Search query observable */ mode$: Observable /* Search mode observable */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch icon search result * * @param el - Icon search result element * @param options - Options * * @returns Icon search result observable */ export function watchIconSearchResult( el: HTMLElement, { index$, query$, mode$ }: WatchOptions ): Observable { switch (el.getAttribute("data-mdx-mode")) { case "file": return combineLatest([ query$.pipe(distinctUntilKeyChanged("value")), index$ .pipe( map(({ icons }) => Object.values(icons.data) .map(icon => icon.replace(/\.svg$/, "")) ) ) ]) .pipe( map(([{ value }, data]) => search(data, value)), switchMap(files => index$.pipe( map(({ icons }) => ({ data: files.map(shortcode => { return { shortcode, url: [ icons.base, shortcode, ".svg" ].join("") } }) })) )) ) default: return combineLatest([ query$.pipe(distinctUntilKeyChanged("value")), index$ .pipe( combineLatestWith(mode$), map(([{ icons, emojis }, mode]) => [ ...["all", "icons"].includes(mode) ? Object.keys(icons.data) : [], ...["all", "emojis"].includes(mode) ? Object.keys(emojis.data) : [] ]) ) ]) .pipe( map(([{ value }, data]) => search(data, value)), switchMap(shortcodes => index$.pipe( map(({ icons, emojis }) => ({ data: shortcodes.map(shortcode => { const category = shortcode in icons.data ? icons : emojis return { shortcode, url: [ category.base, category.data[shortcode] ].join("") } }) })) )) ) } } /** * Mount icon search result * * @param el - Icon search result element * @param options - Options * * @returns Icon search result component observable */ export function mountIconSearchResult( el: HTMLElement, { index$, query$, mode$ }: MountOptions ): Observable> { const push$ = new Subject() const boundary$ = watchElementBoundary(el) .pipe( filter(Boolean) ) /* Update search result metadata */ const meta = getElement(".mdx-iconsearch-result__meta", el) push$ .pipe( withLatestFrom(query$) ) .subscribe(([{ data }, { value }]) => { if (value) { switch (data.length) { /* No results */ case 0: meta.textContent = "No matches" break /* One result */ case 1: meta.textContent = "1 match" break /* Multiple result */ default: meta.textContent = `${round(data.length)} matches` } } else { meta.textContent = "Type to start searching" } }) /* Update icon search result list */ const file = el.getAttribute("data-mdx-mode") === "file" const list = getElement(":scope > :last-child", el) push$ .pipe( tap(() => list.innerHTML = ""), switchMap(({ data }) => merge( of(...data.slice(0, 10)), of(...data.slice(10)) .pipe( bufferCount(10), zipWith(boundary$), switchMap(([chunk]) => chunk) ) )), withLatestFrom(query$) ) .subscribe(([result, { value }]) => list.appendChild( renderIconSearchResult(result, value, file) )) /* Create and return component */ return watchIconSearchResult(el, { query$, index$, mode$ }) .pipe( tap(state => push$.next(state)), finalize(() => push$.complete()), map(state => ({ ref: el, ...state })) ) } mkdocs-material-9.6.4/src/overrides/assets/javascripts/components/index.ts000066400000000000000000000023221475306445600271130ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ export * from "./_" export * from "./iconsearch" export * from "./sponsorship" mkdocs-material-9.6.4/src/overrides/assets/javascripts/components/sponsorship/000077500000000000000000000000001475306445600300245ustar00rootroot00000000000000mkdocs-material-9.6.4/src/overrides/assets/javascripts/components/sponsorship/index.ts000066400000000000000000000115471475306445600315130ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, from, map, switchMap, tap } from "rxjs" import { getOptionalElement, requestJSON } from "~/browser" import { renderPrivateSponsor, renderPublicSponsor } from "_/templates" import { Component, getComponentElements } from "../_" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Sponsor type */ export type SponsorType = | "user" /* Sponsor is a user */ | "organization" /* Sponsor is an organization */ /** * Sponsor visibility */ export type SponsorVisibility = | "public" /* Sponsor is a user */ | "private" /* Sponsor is an organization */ /* ------------------------------------------------------------------------- */ /** * Sponsor user */ export interface SponsorUser { type: SponsorType /* Sponsor type */ name: string /* Sponsor login name */ image: string /* Sponsor image URL */ url: string /* Sponsor URL */ } /* ------------------------------------------------------------------------- */ /** * Public sponsor */ export interface PublicSponsor { type: "public" /* Sponsor visibility */ user: SponsorUser /* Sponsor user */ } /** * Private sponsor */ export interface PrivateSponsor { type: "private" /* Sponsor visibility */ } /* ------------------------------------------------------------------------- */ /** * Sponsor */ export type Sponsor = | PublicSponsor | PrivateSponsor /* ------------------------------------------------------------------------- */ /** * Sponsorship */ export interface Sponsorship { sponsors: Sponsor[] /* Sponsors */ total: number /* Total amount */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Mount sponsorship * * @param el - Sponsorship element * * @returns Sponsorship component observable */ export function mountSponsorship( el: HTMLElement ): Observable> { const sponsorship$ = requestJSON( "https://3if8u9o552.execute-api.us-east-1.amazonaws.com/_/" ) /* Retrieve adjacent components */ const count = getComponentElements("sponsorship-count") const total = getComponentElements("sponsorship-total") /* Render sponsorship count */ sponsorship$.pipe( switchMap(sponsorship => from(count).pipe( tap(child => child.innerText = `${sponsorship.sponsors.length}`) )) ) .subscribe(() => el.removeAttribute("hidden")) /* Render sponsorship total */ sponsorship$.pipe( switchMap(sponsorship => from(total).pipe( tap(child => child.innerText = `$ ${sponsorship.total .toString() .replace(/\B(?=(\d{3})+(?!\d))/g, ",") } a month`) )) ) .subscribe() // Render sponsorship list const list = getOptionalElement(":scope > .mdx-sponsorship__list", el) if (list && count.length) { sponsorship$.subscribe(sponsorship => { for (const sponsor of sponsorship.sponsors) if (sponsor.type === "public") list.appendChild(renderPublicSponsor(sponsor.user)) /* Render combined private sponsors */ list.appendChild(renderPrivateSponsor( sponsorship.sponsors.filter(({ type }) => ( type === "private" )).length )) }) } /* Create and return component */ return sponsorship$ .pipe( map(state => ({ ref: el, ...state })) ) } mkdocs-material-9.6.4/src/overrides/assets/javascripts/custom.ts000066400000000000000000000036541475306445600251420ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { merge, switchMap } from "rxjs" import { getComponentElements, mountIconSearch, mountSponsorship } from "./components" import { setupAnalytics } from "./integrations" /* ---------------------------------------------------------------------------- * Application * ------------------------------------------------------------------------- */ /* Set up extra analytics events */ setupAnalytics() /* Set up extra component observables */ const component$ = document$ .pipe( switchMap(() => merge( /* Icon search */ ...getComponentElements("iconsearch") .map(el => mountIconSearch(el)), /* Sponsorship */ ...getComponentElements("sponsorship") .map(el => mountSponsorship(el)) )) ) /* Subscribe to all components */ component$.subscribe() mkdocs-material-9.6.4/src/overrides/assets/javascripts/iconsearch_index.json000066400000000000000000033133551475306445600274650ustar00rootroot00000000000000{"icons":{"base":"https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/material/templates/.icons/","data":{"fontawesome-brands-42-group":"fontawesome/brands/42-group.svg","fontawesome-brands-500px":"fontawesome/brands/500px.svg","fontawesome-brands-accessible-icon":"fontawesome/brands/accessible-icon.svg","fontawesome-brands-accusoft":"fontawesome/brands/accusoft.svg","fontawesome-brands-adn":"fontawesome/brands/adn.svg","fontawesome-brands-adversal":"fontawesome/brands/adversal.svg","fontawesome-brands-affiliatetheme":"fontawesome/brands/affiliatetheme.svg","fontawesome-brands-airbnb":"fontawesome/brands/airbnb.svg","fontawesome-brands-algolia":"fontawesome/brands/algolia.svg","fontawesome-brands-alipay":"fontawesome/brands/alipay.svg","fontawesome-brands-amazon-pay":"fontawesome/brands/amazon-pay.svg","fontawesome-brands-amazon":"fontawesome/brands/amazon.svg","fontawesome-brands-amilia":"fontawesome/brands/amilia.svg","fontawesome-brands-android":"fontawesome/brands/android.svg","fontawesome-brands-angellist":"fontawesome/brands/angellist.svg","fontawesome-brands-angrycreative":"fontawesome/brands/angrycreative.svg","fontawesome-brands-angular":"fontawesome/brands/angular.svg","fontawesome-brands-app-store-ios":"fontawesome/brands/app-store-ios.svg","fontawesome-brands-app-store":"fontawesome/brands/app-store.svg","fontawesome-brands-apper":"fontawesome/brands/apper.svg","fontawesome-brands-apple-pay":"fontawesome/brands/apple-pay.svg","fontawesome-brands-apple":"fontawesome/brands/apple.svg","fontawesome-brands-artstation":"fontawesome/brands/artstation.svg","fontawesome-brands-asymmetrik":"fontawesome/brands/asymmetrik.svg","fontawesome-brands-atlassian":"fontawesome/brands/atlassian.svg","fontawesome-brands-audible":"fontawesome/brands/audible.svg","fontawesome-brands-autoprefixer":"fontawesome/brands/autoprefixer.svg","fontawesome-brands-avianex":"fontawesome/brands/avianex.svg","fontawesome-brands-aviato":"fontawesome/brands/aviato.svg","fontawesome-brands-aws":"fontawesome/brands/aws.svg","fontawesome-brands-bandcamp":"fontawesome/brands/bandcamp.svg","fontawesome-brands-battle-net":"fontawesome/brands/battle-net.svg","fontawesome-brands-behance":"fontawesome/brands/behance.svg","fontawesome-brands-bilibili":"fontawesome/brands/bilibili.svg","fontawesome-brands-bimobject":"fontawesome/brands/bimobject.svg","fontawesome-brands-bitbucket":"fontawesome/brands/bitbucket.svg","fontawesome-brands-bitcoin":"fontawesome/brands/bitcoin.svg","fontawesome-brands-bity":"fontawesome/brands/bity.svg","fontawesome-brands-black-tie":"fontawesome/brands/black-tie.svg","fontawesome-brands-blackberry":"fontawesome/brands/blackberry.svg","fontawesome-brands-blogger-b":"fontawesome/brands/blogger-b.svg","fontawesome-brands-blogger":"fontawesome/brands/blogger.svg","fontawesome-brands-bluesky":"fontawesome/brands/bluesky.svg","fontawesome-brands-bluetooth-b":"fontawesome/brands/bluetooth-b.svg","fontawesome-brands-bluetooth":"fontawesome/brands/bluetooth.svg","fontawesome-brands-bootstrap":"fontawesome/brands/bootstrap.svg","fontawesome-brands-bots":"fontawesome/brands/bots.svg","fontawesome-brands-brave-reverse":"fontawesome/brands/brave-reverse.svg","fontawesome-brands-brave":"fontawesome/brands/brave.svg","fontawesome-brands-btc":"fontawesome/brands/btc.svg","fontawesome-brands-buffer":"fontawesome/brands/buffer.svg","fontawesome-brands-buromobelexperte":"fontawesome/brands/buromobelexperte.svg","fontawesome-brands-buy-n-large":"fontawesome/brands/buy-n-large.svg","fontawesome-brands-buysellads":"fontawesome/brands/buysellads.svg","fontawesome-brands-canadian-maple-leaf":"fontawesome/brands/canadian-maple-leaf.svg","fontawesome-brands-cc-amazon-pay":"fontawesome/brands/cc-amazon-pay.svg","fontawesome-brands-cc-amex":"fontawesome/brands/cc-amex.svg","fontawesome-brands-cc-apple-pay":"fontawesome/brands/cc-apple-pay.svg","fontawesome-brands-cc-diners-club":"fontawesome/brands/cc-diners-club.svg","fontawesome-brands-cc-discover":"fontawesome/brands/cc-discover.svg","fontawesome-brands-cc-jcb":"fontawesome/brands/cc-jcb.svg","fontawesome-brands-cc-mastercard":"fontawesome/brands/cc-mastercard.svg","fontawesome-brands-cc-paypal":"fontawesome/brands/cc-paypal.svg","fontawesome-brands-cc-stripe":"fontawesome/brands/cc-stripe.svg","fontawesome-brands-cc-visa":"fontawesome/brands/cc-visa.svg","fontawesome-brands-centercode":"fontawesome/brands/centercode.svg","fontawesome-brands-centos":"fontawesome/brands/centos.svg","fontawesome-brands-chrome":"fontawesome/brands/chrome.svg","fontawesome-brands-chromecast":"fontawesome/brands/chromecast.svg","fontawesome-brands-cloudflare":"fontawesome/brands/cloudflare.svg","fontawesome-brands-cloudscale":"fontawesome/brands/cloudscale.svg","fontawesome-brands-cloudsmith":"fontawesome/brands/cloudsmith.svg","fontawesome-brands-cloudversify":"fontawesome/brands/cloudversify.svg","fontawesome-brands-cmplid":"fontawesome/brands/cmplid.svg","fontawesome-brands-codepen":"fontawesome/brands/codepen.svg","fontawesome-brands-codiepie":"fontawesome/brands/codiepie.svg","fontawesome-brands-confluence":"fontawesome/brands/confluence.svg","fontawesome-brands-connectdevelop":"fontawesome/brands/connectdevelop.svg","fontawesome-brands-contao":"fontawesome/brands/contao.svg","fontawesome-brands-cotton-bureau":"fontawesome/brands/cotton-bureau.svg","fontawesome-brands-cpanel":"fontawesome/brands/cpanel.svg","fontawesome-brands-creative-commons-by":"fontawesome/brands/creative-commons-by.svg","fontawesome-brands-creative-commons-nc-eu":"fontawesome/brands/creative-commons-nc-eu.svg","fontawesome-brands-creative-commons-nc-jp":"fontawesome/brands/creative-commons-nc-jp.svg","fontawesome-brands-creative-commons-nc":"fontawesome/brands/creative-commons-nc.svg","fontawesome-brands-creative-commons-nd":"fontawesome/brands/creative-commons-nd.svg","fontawesome-brands-creative-commons-pd-alt":"fontawesome/brands/creative-commons-pd-alt.svg","fontawesome-brands-creative-commons-pd":"fontawesome/brands/creative-commons-pd.svg","fontawesome-brands-creative-commons-remix":"fontawesome/brands/creative-commons-remix.svg","fontawesome-brands-creative-commons-sa":"fontawesome/brands/creative-commons-sa.svg","fontawesome-brands-creative-commons-sampling-plus":"fontawesome/brands/creative-commons-sampling-plus.svg","fontawesome-brands-creative-commons-sampling":"fontawesome/brands/creative-commons-sampling.svg","fontawesome-brands-creative-commons-share":"fontawesome/brands/creative-commons-share.svg","fontawesome-brands-creative-commons-zero":"fontawesome/brands/creative-commons-zero.svg","fontawesome-brands-creative-commons":"fontawesome/brands/creative-commons.svg","fontawesome-brands-critical-role":"fontawesome/brands/critical-role.svg","fontawesome-brands-css":"fontawesome/brands/css.svg","fontawesome-brands-css3-alt":"fontawesome/brands/css3-alt.svg","fontawesome-brands-css3":"fontawesome/brands/css3.svg","fontawesome-brands-cuttlefish":"fontawesome/brands/cuttlefish.svg","fontawesome-brands-d-and-d-beyond":"fontawesome/brands/d-and-d-beyond.svg","fontawesome-brands-d-and-d":"fontawesome/brands/d-and-d.svg","fontawesome-brands-dailymotion":"fontawesome/brands/dailymotion.svg","fontawesome-brands-dart-lang":"fontawesome/brands/dart-lang.svg","fontawesome-brands-dashcube":"fontawesome/brands/dashcube.svg","fontawesome-brands-debian":"fontawesome/brands/debian.svg","fontawesome-brands-deezer":"fontawesome/brands/deezer.svg","fontawesome-brands-delicious":"fontawesome/brands/delicious.svg","fontawesome-brands-deploydog":"fontawesome/brands/deploydog.svg","fontawesome-brands-deskpro":"fontawesome/brands/deskpro.svg","fontawesome-brands-dev":"fontawesome/brands/dev.svg","fontawesome-brands-deviantart":"fontawesome/brands/deviantart.svg","fontawesome-brands-dhl":"fontawesome/brands/dhl.svg","fontawesome-brands-diaspora":"fontawesome/brands/diaspora.svg","fontawesome-brands-digg":"fontawesome/brands/digg.svg","fontawesome-brands-digital-ocean":"fontawesome/brands/digital-ocean.svg","fontawesome-brands-discord":"fontawesome/brands/discord.svg","fontawesome-brands-discourse":"fontawesome/brands/discourse.svg","fontawesome-brands-dochub":"fontawesome/brands/dochub.svg","fontawesome-brands-docker":"fontawesome/brands/docker.svg","fontawesome-brands-draft2digital":"fontawesome/brands/draft2digital.svg","fontawesome-brands-dribbble":"fontawesome/brands/dribbble.svg","fontawesome-brands-dropbox":"fontawesome/brands/dropbox.svg","fontawesome-brands-drupal":"fontawesome/brands/drupal.svg","fontawesome-brands-dyalog":"fontawesome/brands/dyalog.svg","fontawesome-brands-earlybirds":"fontawesome/brands/earlybirds.svg","fontawesome-brands-ebay":"fontawesome/brands/ebay.svg","fontawesome-brands-edge-legacy":"fontawesome/brands/edge-legacy.svg","fontawesome-brands-edge":"fontawesome/brands/edge.svg","fontawesome-brands-elementor":"fontawesome/brands/elementor.svg","fontawesome-brands-ello":"fontawesome/brands/ello.svg","fontawesome-brands-ember":"fontawesome/brands/ember.svg","fontawesome-brands-empire":"fontawesome/brands/empire.svg","fontawesome-brands-envira":"fontawesome/brands/envira.svg","fontawesome-brands-erlang":"fontawesome/brands/erlang.svg","fontawesome-brands-ethereum":"fontawesome/brands/ethereum.svg","fontawesome-brands-etsy":"fontawesome/brands/etsy.svg","fontawesome-brands-evernote":"fontawesome/brands/evernote.svg","fontawesome-brands-expeditedssl":"fontawesome/brands/expeditedssl.svg","fontawesome-brands-facebook-f":"fontawesome/brands/facebook-f.svg","fontawesome-brands-facebook-messenger":"fontawesome/brands/facebook-messenger.svg","fontawesome-brands-facebook":"fontawesome/brands/facebook.svg","fontawesome-brands-fantasy-flight-games":"fontawesome/brands/fantasy-flight-games.svg","fontawesome-brands-fedex":"fontawesome/brands/fedex.svg","fontawesome-brands-fedora":"fontawesome/brands/fedora.svg","fontawesome-brands-figma":"fontawesome/brands/figma.svg","fontawesome-brands-files-pinwheel":"fontawesome/brands/files-pinwheel.svg","fontawesome-brands-firefox-browser":"fontawesome/brands/firefox-browser.svg","fontawesome-brands-firefox":"fontawesome/brands/firefox.svg","fontawesome-brands-first-order-alt":"fontawesome/brands/first-order-alt.svg","fontawesome-brands-first-order":"fontawesome/brands/first-order.svg","fontawesome-brands-firstdraft":"fontawesome/brands/firstdraft.svg","fontawesome-brands-flickr":"fontawesome/brands/flickr.svg","fontawesome-brands-flipboard":"fontawesome/brands/flipboard.svg","fontawesome-brands-flutter":"fontawesome/brands/flutter.svg","fontawesome-brands-fly":"fontawesome/brands/fly.svg","fontawesome-brands-font-awesome":"fontawesome/brands/font-awesome.svg","fontawesome-brands-fonticons-fi":"fontawesome/brands/fonticons-fi.svg","fontawesome-brands-fonticons":"fontawesome/brands/fonticons.svg","fontawesome-brands-fort-awesome-alt":"fontawesome/brands/fort-awesome-alt.svg","fontawesome-brands-fort-awesome":"fontawesome/brands/fort-awesome.svg","fontawesome-brands-forumbee":"fontawesome/brands/forumbee.svg","fontawesome-brands-foursquare":"fontawesome/brands/foursquare.svg","fontawesome-brands-free-code-camp":"fontawesome/brands/free-code-camp.svg","fontawesome-brands-freebsd":"fontawesome/brands/freebsd.svg","fontawesome-brands-fulcrum":"fontawesome/brands/fulcrum.svg","fontawesome-brands-galactic-republic":"fontawesome/brands/galactic-republic.svg","fontawesome-brands-galactic-senate":"fontawesome/brands/galactic-senate.svg","fontawesome-brands-get-pocket":"fontawesome/brands/get-pocket.svg","fontawesome-brands-gg-circle":"fontawesome/brands/gg-circle.svg","fontawesome-brands-gg":"fontawesome/brands/gg.svg","fontawesome-brands-git-alt":"fontawesome/brands/git-alt.svg","fontawesome-brands-git":"fontawesome/brands/git.svg","fontawesome-brands-github-alt":"fontawesome/brands/github-alt.svg","fontawesome-brands-github":"fontawesome/brands/github.svg","fontawesome-brands-gitkraken":"fontawesome/brands/gitkraken.svg","fontawesome-brands-gitlab":"fontawesome/brands/gitlab.svg","fontawesome-brands-gitter":"fontawesome/brands/gitter.svg","fontawesome-brands-glide-g":"fontawesome/brands/glide-g.svg","fontawesome-brands-glide":"fontawesome/brands/glide.svg","fontawesome-brands-gofore":"fontawesome/brands/gofore.svg","fontawesome-brands-golang":"fontawesome/brands/golang.svg","fontawesome-brands-goodreads-g":"fontawesome/brands/goodreads-g.svg","fontawesome-brands-goodreads":"fontawesome/brands/goodreads.svg","fontawesome-brands-google-drive":"fontawesome/brands/google-drive.svg","fontawesome-brands-google-pay":"fontawesome/brands/google-pay.svg","fontawesome-brands-google-play":"fontawesome/brands/google-play.svg","fontawesome-brands-google-plus-g":"fontawesome/brands/google-plus-g.svg","fontawesome-brands-google-plus":"fontawesome/brands/google-plus.svg","fontawesome-brands-google-scholar":"fontawesome/brands/google-scholar.svg","fontawesome-brands-google-wallet":"fontawesome/brands/google-wallet.svg","fontawesome-brands-google":"fontawesome/brands/google.svg","fontawesome-brands-gratipay":"fontawesome/brands/gratipay.svg","fontawesome-brands-grav":"fontawesome/brands/grav.svg","fontawesome-brands-gripfire":"fontawesome/brands/gripfire.svg","fontawesome-brands-grunt":"fontawesome/brands/grunt.svg","fontawesome-brands-guilded":"fontawesome/brands/guilded.svg","fontawesome-brands-gulp":"fontawesome/brands/gulp.svg","fontawesome-brands-hacker-news":"fontawesome/brands/hacker-news.svg","fontawesome-brands-hackerrank":"fontawesome/brands/hackerrank.svg","fontawesome-brands-hashnode":"fontawesome/brands/hashnode.svg","fontawesome-brands-hips":"fontawesome/brands/hips.svg","fontawesome-brands-hire-a-helper":"fontawesome/brands/hire-a-helper.svg","fontawesome-brands-hive":"fontawesome/brands/hive.svg","fontawesome-brands-hooli":"fontawesome/brands/hooli.svg","fontawesome-brands-hornbill":"fontawesome/brands/hornbill.svg","fontawesome-brands-hotjar":"fontawesome/brands/hotjar.svg","fontawesome-brands-houzz":"fontawesome/brands/houzz.svg","fontawesome-brands-html5":"fontawesome/brands/html5.svg","fontawesome-brands-hubspot":"fontawesome/brands/hubspot.svg","fontawesome-brands-ideal":"fontawesome/brands/ideal.svg","fontawesome-brands-imdb":"fontawesome/brands/imdb.svg","fontawesome-brands-instagram":"fontawesome/brands/instagram.svg","fontawesome-brands-instalod":"fontawesome/brands/instalod.svg","fontawesome-brands-intercom":"fontawesome/brands/intercom.svg","fontawesome-brands-internet-explorer":"fontawesome/brands/internet-explorer.svg","fontawesome-brands-invision":"fontawesome/brands/invision.svg","fontawesome-brands-ioxhost":"fontawesome/brands/ioxhost.svg","fontawesome-brands-itch-io":"fontawesome/brands/itch-io.svg","fontawesome-brands-itunes-note":"fontawesome/brands/itunes-note.svg","fontawesome-brands-itunes":"fontawesome/brands/itunes.svg","fontawesome-brands-java":"fontawesome/brands/java.svg","fontawesome-brands-jedi-order":"fontawesome/brands/jedi-order.svg","fontawesome-brands-jenkins":"fontawesome/brands/jenkins.svg","fontawesome-brands-jira":"fontawesome/brands/jira.svg","fontawesome-brands-joget":"fontawesome/brands/joget.svg","fontawesome-brands-joomla":"fontawesome/brands/joomla.svg","fontawesome-brands-js":"fontawesome/brands/js.svg","fontawesome-brands-jsfiddle":"fontawesome/brands/jsfiddle.svg","fontawesome-brands-jxl":"fontawesome/brands/jxl.svg","fontawesome-brands-kaggle":"fontawesome/brands/kaggle.svg","fontawesome-brands-keybase":"fontawesome/brands/keybase.svg","fontawesome-brands-keycdn":"fontawesome/brands/keycdn.svg","fontawesome-brands-kickstarter-k":"fontawesome/brands/kickstarter-k.svg","fontawesome-brands-kickstarter":"fontawesome/brands/kickstarter.svg","fontawesome-brands-korvue":"fontawesome/brands/korvue.svg","fontawesome-brands-laravel":"fontawesome/brands/laravel.svg","fontawesome-brands-lastfm":"fontawesome/brands/lastfm.svg","fontawesome-brands-leanpub":"fontawesome/brands/leanpub.svg","fontawesome-brands-less":"fontawesome/brands/less.svg","fontawesome-brands-letterboxd":"fontawesome/brands/letterboxd.svg","fontawesome-brands-line":"fontawesome/brands/line.svg","fontawesome-brands-linkedin-in":"fontawesome/brands/linkedin-in.svg","fontawesome-brands-linkedin":"fontawesome/brands/linkedin.svg","fontawesome-brands-linode":"fontawesome/brands/linode.svg","fontawesome-brands-linux":"fontawesome/brands/linux.svg","fontawesome-brands-lyft":"fontawesome/brands/lyft.svg","fontawesome-brands-magento":"fontawesome/brands/magento.svg","fontawesome-brands-mailchimp":"fontawesome/brands/mailchimp.svg","fontawesome-brands-mandalorian":"fontawesome/brands/mandalorian.svg","fontawesome-brands-markdown":"fontawesome/brands/markdown.svg","fontawesome-brands-mastodon":"fontawesome/brands/mastodon.svg","fontawesome-brands-maxcdn":"fontawesome/brands/maxcdn.svg","fontawesome-brands-mdb":"fontawesome/brands/mdb.svg","fontawesome-brands-medapps":"fontawesome/brands/medapps.svg","fontawesome-brands-medium":"fontawesome/brands/medium.svg","fontawesome-brands-medrt":"fontawesome/brands/medrt.svg","fontawesome-brands-meetup":"fontawesome/brands/meetup.svg","fontawesome-brands-megaport":"fontawesome/brands/megaport.svg","fontawesome-brands-mendeley":"fontawesome/brands/mendeley.svg","fontawesome-brands-meta":"fontawesome/brands/meta.svg","fontawesome-brands-microblog":"fontawesome/brands/microblog.svg","fontawesome-brands-microsoft":"fontawesome/brands/microsoft.svg","fontawesome-brands-mintbit":"fontawesome/brands/mintbit.svg","fontawesome-brands-mix":"fontawesome/brands/mix.svg","fontawesome-brands-mixcloud":"fontawesome/brands/mixcloud.svg","fontawesome-brands-mixer":"fontawesome/brands/mixer.svg","fontawesome-brands-mizuni":"fontawesome/brands/mizuni.svg","fontawesome-brands-modx":"fontawesome/brands/modx.svg","fontawesome-brands-monero":"fontawesome/brands/monero.svg","fontawesome-brands-napster":"fontawesome/brands/napster.svg","fontawesome-brands-neos":"fontawesome/brands/neos.svg","fontawesome-brands-nfc-directional":"fontawesome/brands/nfc-directional.svg","fontawesome-brands-nfc-symbol":"fontawesome/brands/nfc-symbol.svg","fontawesome-brands-nimblr":"fontawesome/brands/nimblr.svg","fontawesome-brands-node-js":"fontawesome/brands/node-js.svg","fontawesome-brands-node":"fontawesome/brands/node.svg","fontawesome-brands-npm":"fontawesome/brands/npm.svg","fontawesome-brands-ns8":"fontawesome/brands/ns8.svg","fontawesome-brands-nutritionix":"fontawesome/brands/nutritionix.svg","fontawesome-brands-octopus-deploy":"fontawesome/brands/octopus-deploy.svg","fontawesome-brands-odnoklassniki":"fontawesome/brands/odnoklassniki.svg","fontawesome-brands-odysee":"fontawesome/brands/odysee.svg","fontawesome-brands-old-republic":"fontawesome/brands/old-republic.svg","fontawesome-brands-opencart":"fontawesome/brands/opencart.svg","fontawesome-brands-openid":"fontawesome/brands/openid.svg","fontawesome-brands-opensuse":"fontawesome/brands/opensuse.svg","fontawesome-brands-opera":"fontawesome/brands/opera.svg","fontawesome-brands-optin-monster":"fontawesome/brands/optin-monster.svg","fontawesome-brands-orcid":"fontawesome/brands/orcid.svg","fontawesome-brands-osi":"fontawesome/brands/osi.svg","fontawesome-brands-padlet":"fontawesome/brands/padlet.svg","fontawesome-brands-page4":"fontawesome/brands/page4.svg","fontawesome-brands-pagelines":"fontawesome/brands/pagelines.svg","fontawesome-brands-palfed":"fontawesome/brands/palfed.svg","fontawesome-brands-patreon":"fontawesome/brands/patreon.svg","fontawesome-brands-paypal":"fontawesome/brands/paypal.svg","fontawesome-brands-perbyte":"fontawesome/brands/perbyte.svg","fontawesome-brands-periscope":"fontawesome/brands/periscope.svg","fontawesome-brands-phabricator":"fontawesome/brands/phabricator.svg","fontawesome-brands-phoenix-framework":"fontawesome/brands/phoenix-framework.svg","fontawesome-brands-phoenix-squadron":"fontawesome/brands/phoenix-squadron.svg","fontawesome-brands-php":"fontawesome/brands/php.svg","fontawesome-brands-pied-piper-alt":"fontawesome/brands/pied-piper-alt.svg","fontawesome-brands-pied-piper-hat":"fontawesome/brands/pied-piper-hat.svg","fontawesome-brands-pied-piper-pp":"fontawesome/brands/pied-piper-pp.svg","fontawesome-brands-pied-piper":"fontawesome/brands/pied-piper.svg","fontawesome-brands-pinterest-p":"fontawesome/brands/pinterest-p.svg","fontawesome-brands-pinterest":"fontawesome/brands/pinterest.svg","fontawesome-brands-pix":"fontawesome/brands/pix.svg","fontawesome-brands-pixiv":"fontawesome/brands/pixiv.svg","fontawesome-brands-playstation":"fontawesome/brands/playstation.svg","fontawesome-brands-product-hunt":"fontawesome/brands/product-hunt.svg","fontawesome-brands-pushed":"fontawesome/brands/pushed.svg","fontawesome-brands-python":"fontawesome/brands/python.svg","fontawesome-brands-qq":"fontawesome/brands/qq.svg","fontawesome-brands-quinscape":"fontawesome/brands/quinscape.svg","fontawesome-brands-quora":"fontawesome/brands/quora.svg","fontawesome-brands-r-project":"fontawesome/brands/r-project.svg","fontawesome-brands-raspberry-pi":"fontawesome/brands/raspberry-pi.svg","fontawesome-brands-ravelry":"fontawesome/brands/ravelry.svg","fontawesome-brands-react":"fontawesome/brands/react.svg","fontawesome-brands-reacteurope":"fontawesome/brands/reacteurope.svg","fontawesome-brands-readme":"fontawesome/brands/readme.svg","fontawesome-brands-rebel":"fontawesome/brands/rebel.svg","fontawesome-brands-red-river":"fontawesome/brands/red-river.svg","fontawesome-brands-reddit-alien":"fontawesome/brands/reddit-alien.svg","fontawesome-brands-reddit":"fontawesome/brands/reddit.svg","fontawesome-brands-redhat":"fontawesome/brands/redhat.svg","fontawesome-brands-renren":"fontawesome/brands/renren.svg","fontawesome-brands-replyd":"fontawesome/brands/replyd.svg","fontawesome-brands-researchgate":"fontawesome/brands/researchgate.svg","fontawesome-brands-resolving":"fontawesome/brands/resolving.svg","fontawesome-brands-rev":"fontawesome/brands/rev.svg","fontawesome-brands-rocketchat":"fontawesome/brands/rocketchat.svg","fontawesome-brands-rockrms":"fontawesome/brands/rockrms.svg","fontawesome-brands-rust":"fontawesome/brands/rust.svg","fontawesome-brands-safari":"fontawesome/brands/safari.svg","fontawesome-brands-salesforce":"fontawesome/brands/salesforce.svg","fontawesome-brands-sass":"fontawesome/brands/sass.svg","fontawesome-brands-schlix":"fontawesome/brands/schlix.svg","fontawesome-brands-screenpal":"fontawesome/brands/screenpal.svg","fontawesome-brands-scribd":"fontawesome/brands/scribd.svg","fontawesome-brands-searchengin":"fontawesome/brands/searchengin.svg","fontawesome-brands-sellcast":"fontawesome/brands/sellcast.svg","fontawesome-brands-sellsy":"fontawesome/brands/sellsy.svg","fontawesome-brands-servicestack":"fontawesome/brands/servicestack.svg","fontawesome-brands-shirtsinbulk":"fontawesome/brands/shirtsinbulk.svg","fontawesome-brands-shoelace":"fontawesome/brands/shoelace.svg","fontawesome-brands-shopify":"fontawesome/brands/shopify.svg","fontawesome-brands-shopware":"fontawesome/brands/shopware.svg","fontawesome-brands-signal-messenger":"fontawesome/brands/signal-messenger.svg","fontawesome-brands-simplybuilt":"fontawesome/brands/simplybuilt.svg","fontawesome-brands-sistrix":"fontawesome/brands/sistrix.svg","fontawesome-brands-sith":"fontawesome/brands/sith.svg","fontawesome-brands-sitrox":"fontawesome/brands/sitrox.svg","fontawesome-brands-sketch":"fontawesome/brands/sketch.svg","fontawesome-brands-skyatlas":"fontawesome/brands/skyatlas.svg","fontawesome-brands-skype":"fontawesome/brands/skype.svg","fontawesome-brands-slack":"fontawesome/brands/slack.svg","fontawesome-brands-slideshare":"fontawesome/brands/slideshare.svg","fontawesome-brands-snapchat":"fontawesome/brands/snapchat.svg","fontawesome-brands-soundcloud":"fontawesome/brands/soundcloud.svg","fontawesome-brands-sourcetree":"fontawesome/brands/sourcetree.svg","fontawesome-brands-space-awesome":"fontawesome/brands/space-awesome.svg","fontawesome-brands-speakap":"fontawesome/brands/speakap.svg","fontawesome-brands-speaker-deck":"fontawesome/brands/speaker-deck.svg","fontawesome-brands-spotify":"fontawesome/brands/spotify.svg","fontawesome-brands-square-behance":"fontawesome/brands/square-behance.svg","fontawesome-brands-square-bluesky":"fontawesome/brands/square-bluesky.svg","fontawesome-brands-square-dribbble":"fontawesome/brands/square-dribbble.svg","fontawesome-brands-square-facebook":"fontawesome/brands/square-facebook.svg","fontawesome-brands-square-font-awesome-stroke":"fontawesome/brands/square-font-awesome-stroke.svg","fontawesome-brands-square-font-awesome":"fontawesome/brands/square-font-awesome.svg","fontawesome-brands-square-git":"fontawesome/brands/square-git.svg","fontawesome-brands-square-github":"fontawesome/brands/square-github.svg","fontawesome-brands-square-gitlab":"fontawesome/brands/square-gitlab.svg","fontawesome-brands-square-google-plus":"fontawesome/brands/square-google-plus.svg","fontawesome-brands-square-hacker-news":"fontawesome/brands/square-hacker-news.svg","fontawesome-brands-square-instagram":"fontawesome/brands/square-instagram.svg","fontawesome-brands-square-js":"fontawesome/brands/square-js.svg","fontawesome-brands-square-lastfm":"fontawesome/brands/square-lastfm.svg","fontawesome-brands-square-letterboxd":"fontawesome/brands/square-letterboxd.svg","fontawesome-brands-square-odnoklassniki":"fontawesome/brands/square-odnoklassniki.svg","fontawesome-brands-square-pied-piper":"fontawesome/brands/square-pied-piper.svg","fontawesome-brands-square-pinterest":"fontawesome/brands/square-pinterest.svg","fontawesome-brands-square-reddit":"fontawesome/brands/square-reddit.svg","fontawesome-brands-square-snapchat":"fontawesome/brands/square-snapchat.svg","fontawesome-brands-square-steam":"fontawesome/brands/square-steam.svg","fontawesome-brands-square-threads":"fontawesome/brands/square-threads.svg","fontawesome-brands-square-tumblr":"fontawesome/brands/square-tumblr.svg","fontawesome-brands-square-twitter":"fontawesome/brands/square-twitter.svg","fontawesome-brands-square-upwork":"fontawesome/brands/square-upwork.svg","fontawesome-brands-square-viadeo":"fontawesome/brands/square-viadeo.svg","fontawesome-brands-square-vimeo":"fontawesome/brands/square-vimeo.svg","fontawesome-brands-square-web-awesome-stroke":"fontawesome/brands/square-web-awesome-stroke.svg","fontawesome-brands-square-web-awesome":"fontawesome/brands/square-web-awesome.svg","fontawesome-brands-square-whatsapp":"fontawesome/brands/square-whatsapp.svg","fontawesome-brands-square-x-twitter":"fontawesome/brands/square-x-twitter.svg","fontawesome-brands-square-xing":"fontawesome/brands/square-xing.svg","fontawesome-brands-square-youtube":"fontawesome/brands/square-youtube.svg","fontawesome-brands-squarespace":"fontawesome/brands/squarespace.svg","fontawesome-brands-stack-exchange":"fontawesome/brands/stack-exchange.svg","fontawesome-brands-stack-overflow":"fontawesome/brands/stack-overflow.svg","fontawesome-brands-stackpath":"fontawesome/brands/stackpath.svg","fontawesome-brands-staylinked":"fontawesome/brands/staylinked.svg","fontawesome-brands-steam-symbol":"fontawesome/brands/steam-symbol.svg","fontawesome-brands-steam":"fontawesome/brands/steam.svg","fontawesome-brands-sticker-mule":"fontawesome/brands/sticker-mule.svg","fontawesome-brands-strava":"fontawesome/brands/strava.svg","fontawesome-brands-stripe-s":"fontawesome/brands/stripe-s.svg","fontawesome-brands-stripe":"fontawesome/brands/stripe.svg","fontawesome-brands-stubber":"fontawesome/brands/stubber.svg","fontawesome-brands-studiovinari":"fontawesome/brands/studiovinari.svg","fontawesome-brands-stumbleupon-circle":"fontawesome/brands/stumbleupon-circle.svg","fontawesome-brands-stumbleupon":"fontawesome/brands/stumbleupon.svg","fontawesome-brands-superpowers":"fontawesome/brands/superpowers.svg","fontawesome-brands-supple":"fontawesome/brands/supple.svg","fontawesome-brands-suse":"fontawesome/brands/suse.svg","fontawesome-brands-swift":"fontawesome/brands/swift.svg","fontawesome-brands-symfony":"fontawesome/brands/symfony.svg","fontawesome-brands-teamspeak":"fontawesome/brands/teamspeak.svg","fontawesome-brands-telegram":"fontawesome/brands/telegram.svg","fontawesome-brands-tencent-weibo":"fontawesome/brands/tencent-weibo.svg","fontawesome-brands-the-red-yeti":"fontawesome/brands/the-red-yeti.svg","fontawesome-brands-themeco":"fontawesome/brands/themeco.svg","fontawesome-brands-themeisle":"fontawesome/brands/themeisle.svg","fontawesome-brands-think-peaks":"fontawesome/brands/think-peaks.svg","fontawesome-brands-threads":"fontawesome/brands/threads.svg","fontawesome-brands-tiktok":"fontawesome/brands/tiktok.svg","fontawesome-brands-trade-federation":"fontawesome/brands/trade-federation.svg","fontawesome-brands-trello":"fontawesome/brands/trello.svg","fontawesome-brands-tumblr":"fontawesome/brands/tumblr.svg","fontawesome-brands-twitch":"fontawesome/brands/twitch.svg","fontawesome-brands-twitter":"fontawesome/brands/twitter.svg","fontawesome-brands-typo3":"fontawesome/brands/typo3.svg","fontawesome-brands-uber":"fontawesome/brands/uber.svg","fontawesome-brands-ubuntu":"fontawesome/brands/ubuntu.svg","fontawesome-brands-uikit":"fontawesome/brands/uikit.svg","fontawesome-brands-umbraco":"fontawesome/brands/umbraco.svg","fontawesome-brands-uncharted":"fontawesome/brands/uncharted.svg","fontawesome-brands-uniregistry":"fontawesome/brands/uniregistry.svg","fontawesome-brands-unity":"fontawesome/brands/unity.svg","fontawesome-brands-unsplash":"fontawesome/brands/unsplash.svg","fontawesome-brands-untappd":"fontawesome/brands/untappd.svg","fontawesome-brands-ups":"fontawesome/brands/ups.svg","fontawesome-brands-upwork":"fontawesome/brands/upwork.svg","fontawesome-brands-usb":"fontawesome/brands/usb.svg","fontawesome-brands-usps":"fontawesome/brands/usps.svg","fontawesome-brands-ussunnah":"fontawesome/brands/ussunnah.svg","fontawesome-brands-vaadin":"fontawesome/brands/vaadin.svg","fontawesome-brands-viacoin":"fontawesome/brands/viacoin.svg","fontawesome-brands-viadeo":"fontawesome/brands/viadeo.svg","fontawesome-brands-viber":"fontawesome/brands/viber.svg","fontawesome-brands-vimeo-v":"fontawesome/brands/vimeo-v.svg","fontawesome-brands-vimeo":"fontawesome/brands/vimeo.svg","fontawesome-brands-vine":"fontawesome/brands/vine.svg","fontawesome-brands-vk":"fontawesome/brands/vk.svg","fontawesome-brands-vnv":"fontawesome/brands/vnv.svg","fontawesome-brands-vuejs":"fontawesome/brands/vuejs.svg","fontawesome-brands-watchman-monitoring":"fontawesome/brands/watchman-monitoring.svg","fontawesome-brands-waze":"fontawesome/brands/waze.svg","fontawesome-brands-web-awesome":"fontawesome/brands/web-awesome.svg","fontawesome-brands-webflow":"fontawesome/brands/webflow.svg","fontawesome-brands-weebly":"fontawesome/brands/weebly.svg","fontawesome-brands-weibo":"fontawesome/brands/weibo.svg","fontawesome-brands-weixin":"fontawesome/brands/weixin.svg","fontawesome-brands-whatsapp":"fontawesome/brands/whatsapp.svg","fontawesome-brands-whmcs":"fontawesome/brands/whmcs.svg","fontawesome-brands-wikipedia-w":"fontawesome/brands/wikipedia-w.svg","fontawesome-brands-windows":"fontawesome/brands/windows.svg","fontawesome-brands-wirsindhandwerk":"fontawesome/brands/wirsindhandwerk.svg","fontawesome-brands-wix":"fontawesome/brands/wix.svg","fontawesome-brands-wizards-of-the-coast":"fontawesome/brands/wizards-of-the-coast.svg","fontawesome-brands-wodu":"fontawesome/brands/wodu.svg","fontawesome-brands-wolf-pack-battalion":"fontawesome/brands/wolf-pack-battalion.svg","fontawesome-brands-wordpress-simple":"fontawesome/brands/wordpress-simple.svg","fontawesome-brands-wordpress":"fontawesome/brands/wordpress.svg","fontawesome-brands-wpbeginner":"fontawesome/brands/wpbeginner.svg","fontawesome-brands-wpexplorer":"fontawesome/brands/wpexplorer.svg","fontawesome-brands-wpforms":"fontawesome/brands/wpforms.svg","fontawesome-brands-wpressr":"fontawesome/brands/wpressr.svg","fontawesome-brands-x-twitter":"fontawesome/brands/x-twitter.svg","fontawesome-brands-xbox":"fontawesome/brands/xbox.svg","fontawesome-brands-xing":"fontawesome/brands/xing.svg","fontawesome-brands-y-combinator":"fontawesome/brands/y-combinator.svg","fontawesome-brands-yahoo":"fontawesome/brands/yahoo.svg","fontawesome-brands-yammer":"fontawesome/brands/yammer.svg","fontawesome-brands-yandex-international":"fontawesome/brands/yandex-international.svg","fontawesome-brands-yandex":"fontawesome/brands/yandex.svg","fontawesome-brands-yarn":"fontawesome/brands/yarn.svg","fontawesome-brands-yelp":"fontawesome/brands/yelp.svg","fontawesome-brands-yoast":"fontawesome/brands/yoast.svg","fontawesome-brands-youtube":"fontawesome/brands/youtube.svg","fontawesome-brands-zhihu":"fontawesome/brands/zhihu.svg","fontawesome-regular-address-book":"fontawesome/regular/address-book.svg","fontawesome-regular-address-card":"fontawesome/regular/address-card.svg","fontawesome-regular-bell-slash":"fontawesome/regular/bell-slash.svg","fontawesome-regular-bell":"fontawesome/regular/bell.svg","fontawesome-regular-bookmark":"fontawesome/regular/bookmark.svg","fontawesome-regular-building":"fontawesome/regular/building.svg","fontawesome-regular-calendar-check":"fontawesome/regular/calendar-check.svg","fontawesome-regular-calendar-days":"fontawesome/regular/calendar-days.svg","fontawesome-regular-calendar-minus":"fontawesome/regular/calendar-minus.svg","fontawesome-regular-calendar-plus":"fontawesome/regular/calendar-plus.svg","fontawesome-regular-calendar-xmark":"fontawesome/regular/calendar-xmark.svg","fontawesome-regular-calendar":"fontawesome/regular/calendar.svg","fontawesome-regular-chart-bar":"fontawesome/regular/chart-bar.svg","fontawesome-regular-chess-bishop":"fontawesome/regular/chess-bishop.svg","fontawesome-regular-chess-king":"fontawesome/regular/chess-king.svg","fontawesome-regular-chess-knight":"fontawesome/regular/chess-knight.svg","fontawesome-regular-chess-pawn":"fontawesome/regular/chess-pawn.svg","fontawesome-regular-chess-queen":"fontawesome/regular/chess-queen.svg","fontawesome-regular-chess-rook":"fontawesome/regular/chess-rook.svg","fontawesome-regular-circle-check":"fontawesome/regular/circle-check.svg","fontawesome-regular-circle-dot":"fontawesome/regular/circle-dot.svg","fontawesome-regular-circle-down":"fontawesome/regular/circle-down.svg","fontawesome-regular-circle-left":"fontawesome/regular/circle-left.svg","fontawesome-regular-circle-pause":"fontawesome/regular/circle-pause.svg","fontawesome-regular-circle-play":"fontawesome/regular/circle-play.svg","fontawesome-regular-circle-question":"fontawesome/regular/circle-question.svg","fontawesome-regular-circle-right":"fontawesome/regular/circle-right.svg","fontawesome-regular-circle-stop":"fontawesome/regular/circle-stop.svg","fontawesome-regular-circle-up":"fontawesome/regular/circle-up.svg","fontawesome-regular-circle-user":"fontawesome/regular/circle-user.svg","fontawesome-regular-circle-xmark":"fontawesome/regular/circle-xmark.svg","fontawesome-regular-circle":"fontawesome/regular/circle.svg","fontawesome-regular-clipboard":"fontawesome/regular/clipboard.svg","fontawesome-regular-clock":"fontawesome/regular/clock.svg","fontawesome-regular-clone":"fontawesome/regular/clone.svg","fontawesome-regular-closed-captioning":"fontawesome/regular/closed-captioning.svg","fontawesome-regular-comment-dots":"fontawesome/regular/comment-dots.svg","fontawesome-regular-comment":"fontawesome/regular/comment.svg","fontawesome-regular-comments":"fontawesome/regular/comments.svg","fontawesome-regular-compass":"fontawesome/regular/compass.svg","fontawesome-regular-copy":"fontawesome/regular/copy.svg","fontawesome-regular-copyright":"fontawesome/regular/copyright.svg","fontawesome-regular-credit-card":"fontawesome/regular/credit-card.svg","fontawesome-regular-envelope-open":"fontawesome/regular/envelope-open.svg","fontawesome-regular-envelope":"fontawesome/regular/envelope.svg","fontawesome-regular-eye-slash":"fontawesome/regular/eye-slash.svg","fontawesome-regular-eye":"fontawesome/regular/eye.svg","fontawesome-regular-face-angry":"fontawesome/regular/face-angry.svg","fontawesome-regular-face-dizzy":"fontawesome/regular/face-dizzy.svg","fontawesome-regular-face-flushed":"fontawesome/regular/face-flushed.svg","fontawesome-regular-face-frown-open":"fontawesome/regular/face-frown-open.svg","fontawesome-regular-face-frown":"fontawesome/regular/face-frown.svg","fontawesome-regular-face-grimace":"fontawesome/regular/face-grimace.svg","fontawesome-regular-face-grin-beam-sweat":"fontawesome/regular/face-grin-beam-sweat.svg","fontawesome-regular-face-grin-beam":"fontawesome/regular/face-grin-beam.svg","fontawesome-regular-face-grin-hearts":"fontawesome/regular/face-grin-hearts.svg","fontawesome-regular-face-grin-squint-tears":"fontawesome/regular/face-grin-squint-tears.svg","fontawesome-regular-face-grin-squint":"fontawesome/regular/face-grin-squint.svg","fontawesome-regular-face-grin-stars":"fontawesome/regular/face-grin-stars.svg","fontawesome-regular-face-grin-tears":"fontawesome/regular/face-grin-tears.svg","fontawesome-regular-face-grin-tongue-squint":"fontawesome/regular/face-grin-tongue-squint.svg","fontawesome-regular-face-grin-tongue-wink":"fontawesome/regular/face-grin-tongue-wink.svg","fontawesome-regular-face-grin-tongue":"fontawesome/regular/face-grin-tongue.svg","fontawesome-regular-face-grin-wide":"fontawesome/regular/face-grin-wide.svg","fontawesome-regular-face-grin-wink":"fontawesome/regular/face-grin-wink.svg","fontawesome-regular-face-grin":"fontawesome/regular/face-grin.svg","fontawesome-regular-face-kiss-beam":"fontawesome/regular/face-kiss-beam.svg","fontawesome-regular-face-kiss-wink-heart":"fontawesome/regular/face-kiss-wink-heart.svg","fontawesome-regular-face-kiss":"fontawesome/regular/face-kiss.svg","fontawesome-regular-face-laugh-beam":"fontawesome/regular/face-laugh-beam.svg","fontawesome-regular-face-laugh-squint":"fontawesome/regular/face-laugh-squint.svg","fontawesome-regular-face-laugh-wink":"fontawesome/regular/face-laugh-wink.svg","fontawesome-regular-face-laugh":"fontawesome/regular/face-laugh.svg","fontawesome-regular-face-meh-blank":"fontawesome/regular/face-meh-blank.svg","fontawesome-regular-face-meh":"fontawesome/regular/face-meh.svg","fontawesome-regular-face-rolling-eyes":"fontawesome/regular/face-rolling-eyes.svg","fontawesome-regular-face-sad-cry":"fontawesome/regular/face-sad-cry.svg","fontawesome-regular-face-sad-tear":"fontawesome/regular/face-sad-tear.svg","fontawesome-regular-face-smile-beam":"fontawesome/regular/face-smile-beam.svg","fontawesome-regular-face-smile-wink":"fontawesome/regular/face-smile-wink.svg","fontawesome-regular-face-smile":"fontawesome/regular/face-smile.svg","fontawesome-regular-face-surprise":"fontawesome/regular/face-surprise.svg","fontawesome-regular-face-tired":"fontawesome/regular/face-tired.svg","fontawesome-regular-file-audio":"fontawesome/regular/file-audio.svg","fontawesome-regular-file-code":"fontawesome/regular/file-code.svg","fontawesome-regular-file-excel":"fontawesome/regular/file-excel.svg","fontawesome-regular-file-image":"fontawesome/regular/file-image.svg","fontawesome-regular-file-lines":"fontawesome/regular/file-lines.svg","fontawesome-regular-file-pdf":"fontawesome/regular/file-pdf.svg","fontawesome-regular-file-powerpoint":"fontawesome/regular/file-powerpoint.svg","fontawesome-regular-file-video":"fontawesome/regular/file-video.svg","fontawesome-regular-file-word":"fontawesome/regular/file-word.svg","fontawesome-regular-file-zipper":"fontawesome/regular/file-zipper.svg","fontawesome-regular-file":"fontawesome/regular/file.svg","fontawesome-regular-flag":"fontawesome/regular/flag.svg","fontawesome-regular-floppy-disk":"fontawesome/regular/floppy-disk.svg","fontawesome-regular-folder-closed":"fontawesome/regular/folder-closed.svg","fontawesome-regular-folder-open":"fontawesome/regular/folder-open.svg","fontawesome-regular-folder":"fontawesome/regular/folder.svg","fontawesome-regular-font-awesome":"fontawesome/regular/font-awesome.svg","fontawesome-regular-futbol":"fontawesome/regular/futbol.svg","fontawesome-regular-gem":"fontawesome/regular/gem.svg","fontawesome-regular-hand-back-fist":"fontawesome/regular/hand-back-fist.svg","fontawesome-regular-hand-lizard":"fontawesome/regular/hand-lizard.svg","fontawesome-regular-hand-peace":"fontawesome/regular/hand-peace.svg","fontawesome-regular-hand-point-down":"fontawesome/regular/hand-point-down.svg","fontawesome-regular-hand-point-left":"fontawesome/regular/hand-point-left.svg","fontawesome-regular-hand-point-right":"fontawesome/regular/hand-point-right.svg","fontawesome-regular-hand-point-up":"fontawesome/regular/hand-point-up.svg","fontawesome-regular-hand-pointer":"fontawesome/regular/hand-pointer.svg","fontawesome-regular-hand-scissors":"fontawesome/regular/hand-scissors.svg","fontawesome-regular-hand-spock":"fontawesome/regular/hand-spock.svg","fontawesome-regular-hand":"fontawesome/regular/hand.svg","fontawesome-regular-handshake":"fontawesome/regular/handshake.svg","fontawesome-regular-hard-drive":"fontawesome/regular/hard-drive.svg","fontawesome-regular-heart":"fontawesome/regular/heart.svg","fontawesome-regular-hospital":"fontawesome/regular/hospital.svg","fontawesome-regular-hourglass-half":"fontawesome/regular/hourglass-half.svg","fontawesome-regular-hourglass":"fontawesome/regular/hourglass.svg","fontawesome-regular-id-badge":"fontawesome/regular/id-badge.svg","fontawesome-regular-id-card":"fontawesome/regular/id-card.svg","fontawesome-regular-image":"fontawesome/regular/image.svg","fontawesome-regular-images":"fontawesome/regular/images.svg","fontawesome-regular-keyboard":"fontawesome/regular/keyboard.svg","fontawesome-regular-lemon":"fontawesome/regular/lemon.svg","fontawesome-regular-life-ring":"fontawesome/regular/life-ring.svg","fontawesome-regular-lightbulb":"fontawesome/regular/lightbulb.svg","fontawesome-regular-map":"fontawesome/regular/map.svg","fontawesome-regular-message":"fontawesome/regular/message.svg","fontawesome-regular-money-bill-1":"fontawesome/regular/money-bill-1.svg","fontawesome-regular-moon":"fontawesome/regular/moon.svg","fontawesome-regular-newspaper":"fontawesome/regular/newspaper.svg","fontawesome-regular-note-sticky":"fontawesome/regular/note-sticky.svg","fontawesome-regular-object-group":"fontawesome/regular/object-group.svg","fontawesome-regular-object-ungroup":"fontawesome/regular/object-ungroup.svg","fontawesome-regular-paper-plane":"fontawesome/regular/paper-plane.svg","fontawesome-regular-paste":"fontawesome/regular/paste.svg","fontawesome-regular-pen-to-square":"fontawesome/regular/pen-to-square.svg","fontawesome-regular-rectangle-list":"fontawesome/regular/rectangle-list.svg","fontawesome-regular-rectangle-xmark":"fontawesome/regular/rectangle-xmark.svg","fontawesome-regular-registered":"fontawesome/regular/registered.svg","fontawesome-regular-share-from-square":"fontawesome/regular/share-from-square.svg","fontawesome-regular-snowflake":"fontawesome/regular/snowflake.svg","fontawesome-regular-square-caret-down":"fontawesome/regular/square-caret-down.svg","fontawesome-regular-square-caret-left":"fontawesome/regular/square-caret-left.svg","fontawesome-regular-square-caret-right":"fontawesome/regular/square-caret-right.svg","fontawesome-regular-square-caret-up":"fontawesome/regular/square-caret-up.svg","fontawesome-regular-square-check":"fontawesome/regular/square-check.svg","fontawesome-regular-square-full":"fontawesome/regular/square-full.svg","fontawesome-regular-square-minus":"fontawesome/regular/square-minus.svg","fontawesome-regular-square-plus":"fontawesome/regular/square-plus.svg","fontawesome-regular-square":"fontawesome/regular/square.svg","fontawesome-regular-star-half-stroke":"fontawesome/regular/star-half-stroke.svg","fontawesome-regular-star-half":"fontawesome/regular/star-half.svg","fontawesome-regular-star":"fontawesome/regular/star.svg","fontawesome-regular-sun":"fontawesome/regular/sun.svg","fontawesome-regular-thumbs-down":"fontawesome/regular/thumbs-down.svg","fontawesome-regular-thumbs-up":"fontawesome/regular/thumbs-up.svg","fontawesome-regular-trash-can":"fontawesome/regular/trash-can.svg","fontawesome-regular-user":"fontawesome/regular/user.svg","fontawesome-regular-window-maximize":"fontawesome/regular/window-maximize.svg","fontawesome-regular-window-minimize":"fontawesome/regular/window-minimize.svg","fontawesome-regular-window-restore":"fontawesome/regular/window-restore.svg","fontawesome-solid-0":"fontawesome/solid/0.svg","fontawesome-solid-1":"fontawesome/solid/1.svg","fontawesome-solid-2":"fontawesome/solid/2.svg","fontawesome-solid-3":"fontawesome/solid/3.svg","fontawesome-solid-4":"fontawesome/solid/4.svg","fontawesome-solid-5":"fontawesome/solid/5.svg","fontawesome-solid-6":"fontawesome/solid/6.svg","fontawesome-solid-7":"fontawesome/solid/7.svg","fontawesome-solid-8":"fontawesome/solid/8.svg","fontawesome-solid-9":"fontawesome/solid/9.svg","fontawesome-solid-a":"fontawesome/solid/a.svg","fontawesome-solid-address-book":"fontawesome/solid/address-book.svg","fontawesome-solid-address-card":"fontawesome/solid/address-card.svg","fontawesome-solid-align-center":"fontawesome/solid/align-center.svg","fontawesome-solid-align-justify":"fontawesome/solid/align-justify.svg","fontawesome-solid-align-left":"fontawesome/solid/align-left.svg","fontawesome-solid-align-right":"fontawesome/solid/align-right.svg","fontawesome-solid-anchor-circle-check":"fontawesome/solid/anchor-circle-check.svg","fontawesome-solid-anchor-circle-exclamation":"fontawesome/solid/anchor-circle-exclamation.svg","fontawesome-solid-anchor-circle-xmark":"fontawesome/solid/anchor-circle-xmark.svg","fontawesome-solid-anchor-lock":"fontawesome/solid/anchor-lock.svg","fontawesome-solid-anchor":"fontawesome/solid/anchor.svg","fontawesome-solid-angle-down":"fontawesome/solid/angle-down.svg","fontawesome-solid-angle-left":"fontawesome/solid/angle-left.svg","fontawesome-solid-angle-right":"fontawesome/solid/angle-right.svg","fontawesome-solid-angle-up":"fontawesome/solid/angle-up.svg","fontawesome-solid-angles-down":"fontawesome/solid/angles-down.svg","fontawesome-solid-angles-left":"fontawesome/solid/angles-left.svg","fontawesome-solid-angles-right":"fontawesome/solid/angles-right.svg","fontawesome-solid-angles-up":"fontawesome/solid/angles-up.svg","fontawesome-solid-ankh":"fontawesome/solid/ankh.svg","fontawesome-solid-apple-whole":"fontawesome/solid/apple-whole.svg","fontawesome-solid-archway":"fontawesome/solid/archway.svg","fontawesome-solid-arrow-down-1-9":"fontawesome/solid/arrow-down-1-9.svg","fontawesome-solid-arrow-down-9-1":"fontawesome/solid/arrow-down-9-1.svg","fontawesome-solid-arrow-down-a-z":"fontawesome/solid/arrow-down-a-z.svg","fontawesome-solid-arrow-down-long":"fontawesome/solid/arrow-down-long.svg","fontawesome-solid-arrow-down-short-wide":"fontawesome/solid/arrow-down-short-wide.svg","fontawesome-solid-arrow-down-up-across-line":"fontawesome/solid/arrow-down-up-across-line.svg","fontawesome-solid-arrow-down-up-lock":"fontawesome/solid/arrow-down-up-lock.svg","fontawesome-solid-arrow-down-wide-short":"fontawesome/solid/arrow-down-wide-short.svg","fontawesome-solid-arrow-down-z-a":"fontawesome/solid/arrow-down-z-a.svg","fontawesome-solid-arrow-down":"fontawesome/solid/arrow-down.svg","fontawesome-solid-arrow-left-long":"fontawesome/solid/arrow-left-long.svg","fontawesome-solid-arrow-left":"fontawesome/solid/arrow-left.svg","fontawesome-solid-arrow-pointer":"fontawesome/solid/arrow-pointer.svg","fontawesome-solid-arrow-right-arrow-left":"fontawesome/solid/arrow-right-arrow-left.svg","fontawesome-solid-arrow-right-from-bracket":"fontawesome/solid/arrow-right-from-bracket.svg","fontawesome-solid-arrow-right-long":"fontawesome/solid/arrow-right-long.svg","fontawesome-solid-arrow-right-to-bracket":"fontawesome/solid/arrow-right-to-bracket.svg","fontawesome-solid-arrow-right-to-city":"fontawesome/solid/arrow-right-to-city.svg","fontawesome-solid-arrow-right":"fontawesome/solid/arrow-right.svg","fontawesome-solid-arrow-rotate-left":"fontawesome/solid/arrow-rotate-left.svg","fontawesome-solid-arrow-rotate-right":"fontawesome/solid/arrow-rotate-right.svg","fontawesome-solid-arrow-trend-down":"fontawesome/solid/arrow-trend-down.svg","fontawesome-solid-arrow-trend-up":"fontawesome/solid/arrow-trend-up.svg","fontawesome-solid-arrow-turn-down":"fontawesome/solid/arrow-turn-down.svg","fontawesome-solid-arrow-turn-up":"fontawesome/solid/arrow-turn-up.svg","fontawesome-solid-arrow-up-1-9":"fontawesome/solid/arrow-up-1-9.svg","fontawesome-solid-arrow-up-9-1":"fontawesome/solid/arrow-up-9-1.svg","fontawesome-solid-arrow-up-a-z":"fontawesome/solid/arrow-up-a-z.svg","fontawesome-solid-arrow-up-from-bracket":"fontawesome/solid/arrow-up-from-bracket.svg","fontawesome-solid-arrow-up-from-ground-water":"fontawesome/solid/arrow-up-from-ground-water.svg","fontawesome-solid-arrow-up-from-water-pump":"fontawesome/solid/arrow-up-from-water-pump.svg","fontawesome-solid-arrow-up-long":"fontawesome/solid/arrow-up-long.svg","fontawesome-solid-arrow-up-right-dots":"fontawesome/solid/arrow-up-right-dots.svg","fontawesome-solid-arrow-up-right-from-square":"fontawesome/solid/arrow-up-right-from-square.svg","fontawesome-solid-arrow-up-short-wide":"fontawesome/solid/arrow-up-short-wide.svg","fontawesome-solid-arrow-up-wide-short":"fontawesome/solid/arrow-up-wide-short.svg","fontawesome-solid-arrow-up-z-a":"fontawesome/solid/arrow-up-z-a.svg","fontawesome-solid-arrow-up":"fontawesome/solid/arrow-up.svg","fontawesome-solid-arrows-down-to-line":"fontawesome/solid/arrows-down-to-line.svg","fontawesome-solid-arrows-down-to-people":"fontawesome/solid/arrows-down-to-people.svg","fontawesome-solid-arrows-left-right-to-line":"fontawesome/solid/arrows-left-right-to-line.svg","fontawesome-solid-arrows-left-right":"fontawesome/solid/arrows-left-right.svg","fontawesome-solid-arrows-rotate":"fontawesome/solid/arrows-rotate.svg","fontawesome-solid-arrows-spin":"fontawesome/solid/arrows-spin.svg","fontawesome-solid-arrows-split-up-and-left":"fontawesome/solid/arrows-split-up-and-left.svg","fontawesome-solid-arrows-to-circle":"fontawesome/solid/arrows-to-circle.svg","fontawesome-solid-arrows-to-dot":"fontawesome/solid/arrows-to-dot.svg","fontawesome-solid-arrows-to-eye":"fontawesome/solid/arrows-to-eye.svg","fontawesome-solid-arrows-turn-right":"fontawesome/solid/arrows-turn-right.svg","fontawesome-solid-arrows-turn-to-dots":"fontawesome/solid/arrows-turn-to-dots.svg","fontawesome-solid-arrows-up-down-left-right":"fontawesome/solid/arrows-up-down-left-right.svg","fontawesome-solid-arrows-up-down":"fontawesome/solid/arrows-up-down.svg","fontawesome-solid-arrows-up-to-line":"fontawesome/solid/arrows-up-to-line.svg","fontawesome-solid-asterisk":"fontawesome/solid/asterisk.svg","fontawesome-solid-at":"fontawesome/solid/at.svg","fontawesome-solid-atom":"fontawesome/solid/atom.svg","fontawesome-solid-audio-description":"fontawesome/solid/audio-description.svg","fontawesome-solid-austral-sign":"fontawesome/solid/austral-sign.svg","fontawesome-solid-award":"fontawesome/solid/award.svg","fontawesome-solid-b":"fontawesome/solid/b.svg","fontawesome-solid-baby-carriage":"fontawesome/solid/baby-carriage.svg","fontawesome-solid-baby":"fontawesome/solid/baby.svg","fontawesome-solid-backward-fast":"fontawesome/solid/backward-fast.svg","fontawesome-solid-backward-step":"fontawesome/solid/backward-step.svg","fontawesome-solid-backward":"fontawesome/solid/backward.svg","fontawesome-solid-bacon":"fontawesome/solid/bacon.svg","fontawesome-solid-bacteria":"fontawesome/solid/bacteria.svg","fontawesome-solid-bacterium":"fontawesome/solid/bacterium.svg","fontawesome-solid-bag-shopping":"fontawesome/solid/bag-shopping.svg","fontawesome-solid-bahai":"fontawesome/solid/bahai.svg","fontawesome-solid-baht-sign":"fontawesome/solid/baht-sign.svg","fontawesome-solid-ban-smoking":"fontawesome/solid/ban-smoking.svg","fontawesome-solid-ban":"fontawesome/solid/ban.svg","fontawesome-solid-bandage":"fontawesome/solid/bandage.svg","fontawesome-solid-bangladeshi-taka-sign":"fontawesome/solid/bangladeshi-taka-sign.svg","fontawesome-solid-barcode":"fontawesome/solid/barcode.svg","fontawesome-solid-bars-progress":"fontawesome/solid/bars-progress.svg","fontawesome-solid-bars-staggered":"fontawesome/solid/bars-staggered.svg","fontawesome-solid-bars":"fontawesome/solid/bars.svg","fontawesome-solid-baseball-bat-ball":"fontawesome/solid/baseball-bat-ball.svg","fontawesome-solid-baseball":"fontawesome/solid/baseball.svg","fontawesome-solid-basket-shopping":"fontawesome/solid/basket-shopping.svg","fontawesome-solid-basketball":"fontawesome/solid/basketball.svg","fontawesome-solid-bath":"fontawesome/solid/bath.svg","fontawesome-solid-battery-empty":"fontawesome/solid/battery-empty.svg","fontawesome-solid-battery-full":"fontawesome/solid/battery-full.svg","fontawesome-solid-battery-half":"fontawesome/solid/battery-half.svg","fontawesome-solid-battery-quarter":"fontawesome/solid/battery-quarter.svg","fontawesome-solid-battery-three-quarters":"fontawesome/solid/battery-three-quarters.svg","fontawesome-solid-bed-pulse":"fontawesome/solid/bed-pulse.svg","fontawesome-solid-bed":"fontawesome/solid/bed.svg","fontawesome-solid-beer-mug-empty":"fontawesome/solid/beer-mug-empty.svg","fontawesome-solid-bell-concierge":"fontawesome/solid/bell-concierge.svg","fontawesome-solid-bell-slash":"fontawesome/solid/bell-slash.svg","fontawesome-solid-bell":"fontawesome/solid/bell.svg","fontawesome-solid-bezier-curve":"fontawesome/solid/bezier-curve.svg","fontawesome-solid-bicycle":"fontawesome/solid/bicycle.svg","fontawesome-solid-binoculars":"fontawesome/solid/binoculars.svg","fontawesome-solid-biohazard":"fontawesome/solid/biohazard.svg","fontawesome-solid-bitcoin-sign":"fontawesome/solid/bitcoin-sign.svg","fontawesome-solid-blender-phone":"fontawesome/solid/blender-phone.svg","fontawesome-solid-blender":"fontawesome/solid/blender.svg","fontawesome-solid-blog":"fontawesome/solid/blog.svg","fontawesome-solid-bold":"fontawesome/solid/bold.svg","fontawesome-solid-bolt-lightning":"fontawesome/solid/bolt-lightning.svg","fontawesome-solid-bolt":"fontawesome/solid/bolt.svg","fontawesome-solid-bomb":"fontawesome/solid/bomb.svg","fontawesome-solid-bone":"fontawesome/solid/bone.svg","fontawesome-solid-bong":"fontawesome/solid/bong.svg","fontawesome-solid-book-atlas":"fontawesome/solid/book-atlas.svg","fontawesome-solid-book-bible":"fontawesome/solid/book-bible.svg","fontawesome-solid-book-bookmark":"fontawesome/solid/book-bookmark.svg","fontawesome-solid-book-journal-whills":"fontawesome/solid/book-journal-whills.svg","fontawesome-solid-book-medical":"fontawesome/solid/book-medical.svg","fontawesome-solid-book-open-reader":"fontawesome/solid/book-open-reader.svg","fontawesome-solid-book-open":"fontawesome/solid/book-open.svg","fontawesome-solid-book-quran":"fontawesome/solid/book-quran.svg","fontawesome-solid-book-skull":"fontawesome/solid/book-skull.svg","fontawesome-solid-book-tanakh":"fontawesome/solid/book-tanakh.svg","fontawesome-solid-book":"fontawesome/solid/book.svg","fontawesome-solid-bookmark":"fontawesome/solid/bookmark.svg","fontawesome-solid-border-all":"fontawesome/solid/border-all.svg","fontawesome-solid-border-none":"fontawesome/solid/border-none.svg","fontawesome-solid-border-top-left":"fontawesome/solid/border-top-left.svg","fontawesome-solid-bore-hole":"fontawesome/solid/bore-hole.svg","fontawesome-solid-bottle-droplet":"fontawesome/solid/bottle-droplet.svg","fontawesome-solid-bottle-water":"fontawesome/solid/bottle-water.svg","fontawesome-solid-bowl-food":"fontawesome/solid/bowl-food.svg","fontawesome-solid-bowl-rice":"fontawesome/solid/bowl-rice.svg","fontawesome-solid-bowling-ball":"fontawesome/solid/bowling-ball.svg","fontawesome-solid-box-archive":"fontawesome/solid/box-archive.svg","fontawesome-solid-box-open":"fontawesome/solid/box-open.svg","fontawesome-solid-box-tissue":"fontawesome/solid/box-tissue.svg","fontawesome-solid-box":"fontawesome/solid/box.svg","fontawesome-solid-boxes-packing":"fontawesome/solid/boxes-packing.svg","fontawesome-solid-boxes-stacked":"fontawesome/solid/boxes-stacked.svg","fontawesome-solid-braille":"fontawesome/solid/braille.svg","fontawesome-solid-brain":"fontawesome/solid/brain.svg","fontawesome-solid-brazilian-real-sign":"fontawesome/solid/brazilian-real-sign.svg","fontawesome-solid-bread-slice":"fontawesome/solid/bread-slice.svg","fontawesome-solid-bridge-circle-check":"fontawesome/solid/bridge-circle-check.svg","fontawesome-solid-bridge-circle-exclamation":"fontawesome/solid/bridge-circle-exclamation.svg","fontawesome-solid-bridge-circle-xmark":"fontawesome/solid/bridge-circle-xmark.svg","fontawesome-solid-bridge-lock":"fontawesome/solid/bridge-lock.svg","fontawesome-solid-bridge-water":"fontawesome/solid/bridge-water.svg","fontawesome-solid-bridge":"fontawesome/solid/bridge.svg","fontawesome-solid-briefcase-medical":"fontawesome/solid/briefcase-medical.svg","fontawesome-solid-briefcase":"fontawesome/solid/briefcase.svg","fontawesome-solid-broom-ball":"fontawesome/solid/broom-ball.svg","fontawesome-solid-broom":"fontawesome/solid/broom.svg","fontawesome-solid-brush":"fontawesome/solid/brush.svg","fontawesome-solid-bucket":"fontawesome/solid/bucket.svg","fontawesome-solid-bug-slash":"fontawesome/solid/bug-slash.svg","fontawesome-solid-bug":"fontawesome/solid/bug.svg","fontawesome-solid-bugs":"fontawesome/solid/bugs.svg","fontawesome-solid-building-circle-arrow-right":"fontawesome/solid/building-circle-arrow-right.svg","fontawesome-solid-building-circle-check":"fontawesome/solid/building-circle-check.svg","fontawesome-solid-building-circle-exclamation":"fontawesome/solid/building-circle-exclamation.svg","fontawesome-solid-building-circle-xmark":"fontawesome/solid/building-circle-xmark.svg","fontawesome-solid-building-columns":"fontawesome/solid/building-columns.svg","fontawesome-solid-building-flag":"fontawesome/solid/building-flag.svg","fontawesome-solid-building-lock":"fontawesome/solid/building-lock.svg","fontawesome-solid-building-ngo":"fontawesome/solid/building-ngo.svg","fontawesome-solid-building-shield":"fontawesome/solid/building-shield.svg","fontawesome-solid-building-un":"fontawesome/solid/building-un.svg","fontawesome-solid-building-user":"fontawesome/solid/building-user.svg","fontawesome-solid-building-wheat":"fontawesome/solid/building-wheat.svg","fontawesome-solid-building":"fontawesome/solid/building.svg","fontawesome-solid-bullhorn":"fontawesome/solid/bullhorn.svg","fontawesome-solid-bullseye":"fontawesome/solid/bullseye.svg","fontawesome-solid-burger":"fontawesome/solid/burger.svg","fontawesome-solid-burst":"fontawesome/solid/burst.svg","fontawesome-solid-bus-simple":"fontawesome/solid/bus-simple.svg","fontawesome-solid-bus":"fontawesome/solid/bus.svg","fontawesome-solid-business-time":"fontawesome/solid/business-time.svg","fontawesome-solid-c":"fontawesome/solid/c.svg","fontawesome-solid-cable-car":"fontawesome/solid/cable-car.svg","fontawesome-solid-cake-candles":"fontawesome/solid/cake-candles.svg","fontawesome-solid-calculator":"fontawesome/solid/calculator.svg","fontawesome-solid-calendar-check":"fontawesome/solid/calendar-check.svg","fontawesome-solid-calendar-day":"fontawesome/solid/calendar-day.svg","fontawesome-solid-calendar-days":"fontawesome/solid/calendar-days.svg","fontawesome-solid-calendar-minus":"fontawesome/solid/calendar-minus.svg","fontawesome-solid-calendar-plus":"fontawesome/solid/calendar-plus.svg","fontawesome-solid-calendar-week":"fontawesome/solid/calendar-week.svg","fontawesome-solid-calendar-xmark":"fontawesome/solid/calendar-xmark.svg","fontawesome-solid-calendar":"fontawesome/solid/calendar.svg","fontawesome-solid-camera-retro":"fontawesome/solid/camera-retro.svg","fontawesome-solid-camera-rotate":"fontawesome/solid/camera-rotate.svg","fontawesome-solid-camera":"fontawesome/solid/camera.svg","fontawesome-solid-campground":"fontawesome/solid/campground.svg","fontawesome-solid-candy-cane":"fontawesome/solid/candy-cane.svg","fontawesome-solid-cannabis":"fontawesome/solid/cannabis.svg","fontawesome-solid-capsules":"fontawesome/solid/capsules.svg","fontawesome-solid-car-battery":"fontawesome/solid/car-battery.svg","fontawesome-solid-car-burst":"fontawesome/solid/car-burst.svg","fontawesome-solid-car-on":"fontawesome/solid/car-on.svg","fontawesome-solid-car-rear":"fontawesome/solid/car-rear.svg","fontawesome-solid-car-side":"fontawesome/solid/car-side.svg","fontawesome-solid-car-tunnel":"fontawesome/solid/car-tunnel.svg","fontawesome-solid-car":"fontawesome/solid/car.svg","fontawesome-solid-caravan":"fontawesome/solid/caravan.svg","fontawesome-solid-caret-down":"fontawesome/solid/caret-down.svg","fontawesome-solid-caret-left":"fontawesome/solid/caret-left.svg","fontawesome-solid-caret-right":"fontawesome/solid/caret-right.svg","fontawesome-solid-caret-up":"fontawesome/solid/caret-up.svg","fontawesome-solid-carrot":"fontawesome/solid/carrot.svg","fontawesome-solid-cart-arrow-down":"fontawesome/solid/cart-arrow-down.svg","fontawesome-solid-cart-flatbed-suitcase":"fontawesome/solid/cart-flatbed-suitcase.svg","fontawesome-solid-cart-flatbed":"fontawesome/solid/cart-flatbed.svg","fontawesome-solid-cart-plus":"fontawesome/solid/cart-plus.svg","fontawesome-solid-cart-shopping":"fontawesome/solid/cart-shopping.svg","fontawesome-solid-cash-register":"fontawesome/solid/cash-register.svg","fontawesome-solid-cat":"fontawesome/solid/cat.svg","fontawesome-solid-cedi-sign":"fontawesome/solid/cedi-sign.svg","fontawesome-solid-cent-sign":"fontawesome/solid/cent-sign.svg","fontawesome-solid-certificate":"fontawesome/solid/certificate.svg","fontawesome-solid-chair":"fontawesome/solid/chair.svg","fontawesome-solid-chalkboard-user":"fontawesome/solid/chalkboard-user.svg","fontawesome-solid-chalkboard":"fontawesome/solid/chalkboard.svg","fontawesome-solid-champagne-glasses":"fontawesome/solid/champagne-glasses.svg","fontawesome-solid-charging-station":"fontawesome/solid/charging-station.svg","fontawesome-solid-chart-area":"fontawesome/solid/chart-area.svg","fontawesome-solid-chart-bar":"fontawesome/solid/chart-bar.svg","fontawesome-solid-chart-column":"fontawesome/solid/chart-column.svg","fontawesome-solid-chart-diagram":"fontawesome/solid/chart-diagram.svg","fontawesome-solid-chart-gantt":"fontawesome/solid/chart-gantt.svg","fontawesome-solid-chart-line":"fontawesome/solid/chart-line.svg","fontawesome-solid-chart-pie":"fontawesome/solid/chart-pie.svg","fontawesome-solid-chart-simple":"fontawesome/solid/chart-simple.svg","fontawesome-solid-check-double":"fontawesome/solid/check-double.svg","fontawesome-solid-check-to-slot":"fontawesome/solid/check-to-slot.svg","fontawesome-solid-check":"fontawesome/solid/check.svg","fontawesome-solid-cheese":"fontawesome/solid/cheese.svg","fontawesome-solid-chess-bishop":"fontawesome/solid/chess-bishop.svg","fontawesome-solid-chess-board":"fontawesome/solid/chess-board.svg","fontawesome-solid-chess-king":"fontawesome/solid/chess-king.svg","fontawesome-solid-chess-knight":"fontawesome/solid/chess-knight.svg","fontawesome-solid-chess-pawn":"fontawesome/solid/chess-pawn.svg","fontawesome-solid-chess-queen":"fontawesome/solid/chess-queen.svg","fontawesome-solid-chess-rook":"fontawesome/solid/chess-rook.svg","fontawesome-solid-chess":"fontawesome/solid/chess.svg","fontawesome-solid-chevron-down":"fontawesome/solid/chevron-down.svg","fontawesome-solid-chevron-left":"fontawesome/solid/chevron-left.svg","fontawesome-solid-chevron-right":"fontawesome/solid/chevron-right.svg","fontawesome-solid-chevron-up":"fontawesome/solid/chevron-up.svg","fontawesome-solid-child-combatant":"fontawesome/solid/child-combatant.svg","fontawesome-solid-child-dress":"fontawesome/solid/child-dress.svg","fontawesome-solid-child-reaching":"fontawesome/solid/child-reaching.svg","fontawesome-solid-child":"fontawesome/solid/child.svg","fontawesome-solid-children":"fontawesome/solid/children.svg","fontawesome-solid-church":"fontawesome/solid/church.svg","fontawesome-solid-circle-arrow-down":"fontawesome/solid/circle-arrow-down.svg","fontawesome-solid-circle-arrow-left":"fontawesome/solid/circle-arrow-left.svg","fontawesome-solid-circle-arrow-right":"fontawesome/solid/circle-arrow-right.svg","fontawesome-solid-circle-arrow-up":"fontawesome/solid/circle-arrow-up.svg","fontawesome-solid-circle-check":"fontawesome/solid/circle-check.svg","fontawesome-solid-circle-chevron-down":"fontawesome/solid/circle-chevron-down.svg","fontawesome-solid-circle-chevron-left":"fontawesome/solid/circle-chevron-left.svg","fontawesome-solid-circle-chevron-right":"fontawesome/solid/circle-chevron-right.svg","fontawesome-solid-circle-chevron-up":"fontawesome/solid/circle-chevron-up.svg","fontawesome-solid-circle-dollar-to-slot":"fontawesome/solid/circle-dollar-to-slot.svg","fontawesome-solid-circle-dot":"fontawesome/solid/circle-dot.svg","fontawesome-solid-circle-down":"fontawesome/solid/circle-down.svg","fontawesome-solid-circle-exclamation":"fontawesome/solid/circle-exclamation.svg","fontawesome-solid-circle-h":"fontawesome/solid/circle-h.svg","fontawesome-solid-circle-half-stroke":"fontawesome/solid/circle-half-stroke.svg","fontawesome-solid-circle-info":"fontawesome/solid/circle-info.svg","fontawesome-solid-circle-left":"fontawesome/solid/circle-left.svg","fontawesome-solid-circle-minus":"fontawesome/solid/circle-minus.svg","fontawesome-solid-circle-nodes":"fontawesome/solid/circle-nodes.svg","fontawesome-solid-circle-notch":"fontawesome/solid/circle-notch.svg","fontawesome-solid-circle-pause":"fontawesome/solid/circle-pause.svg","fontawesome-solid-circle-play":"fontawesome/solid/circle-play.svg","fontawesome-solid-circle-plus":"fontawesome/solid/circle-plus.svg","fontawesome-solid-circle-question":"fontawesome/solid/circle-question.svg","fontawesome-solid-circle-radiation":"fontawesome/solid/circle-radiation.svg","fontawesome-solid-circle-right":"fontawesome/solid/circle-right.svg","fontawesome-solid-circle-stop":"fontawesome/solid/circle-stop.svg","fontawesome-solid-circle-up":"fontawesome/solid/circle-up.svg","fontawesome-solid-circle-user":"fontawesome/solid/circle-user.svg","fontawesome-solid-circle-xmark":"fontawesome/solid/circle-xmark.svg","fontawesome-solid-circle":"fontawesome/solid/circle.svg","fontawesome-solid-city":"fontawesome/solid/city.svg","fontawesome-solid-clapperboard":"fontawesome/solid/clapperboard.svg","fontawesome-solid-clipboard-check":"fontawesome/solid/clipboard-check.svg","fontawesome-solid-clipboard-list":"fontawesome/solid/clipboard-list.svg","fontawesome-solid-clipboard-question":"fontawesome/solid/clipboard-question.svg","fontawesome-solid-clipboard-user":"fontawesome/solid/clipboard-user.svg","fontawesome-solid-clipboard":"fontawesome/solid/clipboard.svg","fontawesome-solid-clock-rotate-left":"fontawesome/solid/clock-rotate-left.svg","fontawesome-solid-clock":"fontawesome/solid/clock.svg","fontawesome-solid-clone":"fontawesome/solid/clone.svg","fontawesome-solid-closed-captioning":"fontawesome/solid/closed-captioning.svg","fontawesome-solid-cloud-arrow-down":"fontawesome/solid/cloud-arrow-down.svg","fontawesome-solid-cloud-arrow-up":"fontawesome/solid/cloud-arrow-up.svg","fontawesome-solid-cloud-bolt":"fontawesome/solid/cloud-bolt.svg","fontawesome-solid-cloud-meatball":"fontawesome/solid/cloud-meatball.svg","fontawesome-solid-cloud-moon-rain":"fontawesome/solid/cloud-moon-rain.svg","fontawesome-solid-cloud-moon":"fontawesome/solid/cloud-moon.svg","fontawesome-solid-cloud-rain":"fontawesome/solid/cloud-rain.svg","fontawesome-solid-cloud-showers-heavy":"fontawesome/solid/cloud-showers-heavy.svg","fontawesome-solid-cloud-showers-water":"fontawesome/solid/cloud-showers-water.svg","fontawesome-solid-cloud-sun-rain":"fontawesome/solid/cloud-sun-rain.svg","fontawesome-solid-cloud-sun":"fontawesome/solid/cloud-sun.svg","fontawesome-solid-cloud":"fontawesome/solid/cloud.svg","fontawesome-solid-clover":"fontawesome/solid/clover.svg","fontawesome-solid-code-branch":"fontawesome/solid/code-branch.svg","fontawesome-solid-code-commit":"fontawesome/solid/code-commit.svg","fontawesome-solid-code-compare":"fontawesome/solid/code-compare.svg","fontawesome-solid-code-fork":"fontawesome/solid/code-fork.svg","fontawesome-solid-code-merge":"fontawesome/solid/code-merge.svg","fontawesome-solid-code-pull-request":"fontawesome/solid/code-pull-request.svg","fontawesome-solid-code":"fontawesome/solid/code.svg","fontawesome-solid-coins":"fontawesome/solid/coins.svg","fontawesome-solid-colon-sign":"fontawesome/solid/colon-sign.svg","fontawesome-solid-comment-dollar":"fontawesome/solid/comment-dollar.svg","fontawesome-solid-comment-dots":"fontawesome/solid/comment-dots.svg","fontawesome-solid-comment-medical":"fontawesome/solid/comment-medical.svg","fontawesome-solid-comment-nodes":"fontawesome/solid/comment-nodes.svg","fontawesome-solid-comment-slash":"fontawesome/solid/comment-slash.svg","fontawesome-solid-comment-sms":"fontawesome/solid/comment-sms.svg","fontawesome-solid-comment":"fontawesome/solid/comment.svg","fontawesome-solid-comments-dollar":"fontawesome/solid/comments-dollar.svg","fontawesome-solid-comments":"fontawesome/solid/comments.svg","fontawesome-solid-compact-disc":"fontawesome/solid/compact-disc.svg","fontawesome-solid-compass-drafting":"fontawesome/solid/compass-drafting.svg","fontawesome-solid-compass":"fontawesome/solid/compass.svg","fontawesome-solid-compress":"fontawesome/solid/compress.svg","fontawesome-solid-computer-mouse":"fontawesome/solid/computer-mouse.svg","fontawesome-solid-computer":"fontawesome/solid/computer.svg","fontawesome-solid-cookie-bite":"fontawesome/solid/cookie-bite.svg","fontawesome-solid-cookie":"fontawesome/solid/cookie.svg","fontawesome-solid-copy":"fontawesome/solid/copy.svg","fontawesome-solid-copyright":"fontawesome/solid/copyright.svg","fontawesome-solid-couch":"fontawesome/solid/couch.svg","fontawesome-solid-cow":"fontawesome/solid/cow.svg","fontawesome-solid-credit-card":"fontawesome/solid/credit-card.svg","fontawesome-solid-crop-simple":"fontawesome/solid/crop-simple.svg","fontawesome-solid-crop":"fontawesome/solid/crop.svg","fontawesome-solid-cross":"fontawesome/solid/cross.svg","fontawesome-solid-crosshairs":"fontawesome/solid/crosshairs.svg","fontawesome-solid-crow":"fontawesome/solid/crow.svg","fontawesome-solid-crown":"fontawesome/solid/crown.svg","fontawesome-solid-crutch":"fontawesome/solid/crutch.svg","fontawesome-solid-cruzeiro-sign":"fontawesome/solid/cruzeiro-sign.svg","fontawesome-solid-cube":"fontawesome/solid/cube.svg","fontawesome-solid-cubes-stacked":"fontawesome/solid/cubes-stacked.svg","fontawesome-solid-cubes":"fontawesome/solid/cubes.svg","fontawesome-solid-d":"fontawesome/solid/d.svg","fontawesome-solid-database":"fontawesome/solid/database.svg","fontawesome-solid-delete-left":"fontawesome/solid/delete-left.svg","fontawesome-solid-democrat":"fontawesome/solid/democrat.svg","fontawesome-solid-desktop":"fontawesome/solid/desktop.svg","fontawesome-solid-dharmachakra":"fontawesome/solid/dharmachakra.svg","fontawesome-solid-diagram-next":"fontawesome/solid/diagram-next.svg","fontawesome-solid-diagram-predecessor":"fontawesome/solid/diagram-predecessor.svg","fontawesome-solid-diagram-project":"fontawesome/solid/diagram-project.svg","fontawesome-solid-diagram-successor":"fontawesome/solid/diagram-successor.svg","fontawesome-solid-diamond-turn-right":"fontawesome/solid/diamond-turn-right.svg","fontawesome-solid-diamond":"fontawesome/solid/diamond.svg","fontawesome-solid-dice-d20":"fontawesome/solid/dice-d20.svg","fontawesome-solid-dice-d6":"fontawesome/solid/dice-d6.svg","fontawesome-solid-dice-five":"fontawesome/solid/dice-five.svg","fontawesome-solid-dice-four":"fontawesome/solid/dice-four.svg","fontawesome-solid-dice-one":"fontawesome/solid/dice-one.svg","fontawesome-solid-dice-six":"fontawesome/solid/dice-six.svg","fontawesome-solid-dice-three":"fontawesome/solid/dice-three.svg","fontawesome-solid-dice-two":"fontawesome/solid/dice-two.svg","fontawesome-solid-dice":"fontawesome/solid/dice.svg","fontawesome-solid-disease":"fontawesome/solid/disease.svg","fontawesome-solid-display":"fontawesome/solid/display.svg","fontawesome-solid-divide":"fontawesome/solid/divide.svg","fontawesome-solid-dna":"fontawesome/solid/dna.svg","fontawesome-solid-dog":"fontawesome/solid/dog.svg","fontawesome-solid-dollar-sign":"fontawesome/solid/dollar-sign.svg","fontawesome-solid-dolly":"fontawesome/solid/dolly.svg","fontawesome-solid-dong-sign":"fontawesome/solid/dong-sign.svg","fontawesome-solid-door-closed":"fontawesome/solid/door-closed.svg","fontawesome-solid-door-open":"fontawesome/solid/door-open.svg","fontawesome-solid-dove":"fontawesome/solid/dove.svg","fontawesome-solid-down-left-and-up-right-to-center":"fontawesome/solid/down-left-and-up-right-to-center.svg","fontawesome-solid-down-long":"fontawesome/solid/down-long.svg","fontawesome-solid-download":"fontawesome/solid/download.svg","fontawesome-solid-dragon":"fontawesome/solid/dragon.svg","fontawesome-solid-draw-polygon":"fontawesome/solid/draw-polygon.svg","fontawesome-solid-droplet-slash":"fontawesome/solid/droplet-slash.svg","fontawesome-solid-droplet":"fontawesome/solid/droplet.svg","fontawesome-solid-drum-steelpan":"fontawesome/solid/drum-steelpan.svg","fontawesome-solid-drum":"fontawesome/solid/drum.svg","fontawesome-solid-drumstick-bite":"fontawesome/solid/drumstick-bite.svg","fontawesome-solid-dumbbell":"fontawesome/solid/dumbbell.svg","fontawesome-solid-dumpster-fire":"fontawesome/solid/dumpster-fire.svg","fontawesome-solid-dumpster":"fontawesome/solid/dumpster.svg","fontawesome-solid-dungeon":"fontawesome/solid/dungeon.svg","fontawesome-solid-e":"fontawesome/solid/e.svg","fontawesome-solid-ear-deaf":"fontawesome/solid/ear-deaf.svg","fontawesome-solid-ear-listen":"fontawesome/solid/ear-listen.svg","fontawesome-solid-earth-africa":"fontawesome/solid/earth-africa.svg","fontawesome-solid-earth-americas":"fontawesome/solid/earth-americas.svg","fontawesome-solid-earth-asia":"fontawesome/solid/earth-asia.svg","fontawesome-solid-earth-europe":"fontawesome/solid/earth-europe.svg","fontawesome-solid-earth-oceania":"fontawesome/solid/earth-oceania.svg","fontawesome-solid-egg":"fontawesome/solid/egg.svg","fontawesome-solid-eject":"fontawesome/solid/eject.svg","fontawesome-solid-elevator":"fontawesome/solid/elevator.svg","fontawesome-solid-ellipsis-vertical":"fontawesome/solid/ellipsis-vertical.svg","fontawesome-solid-ellipsis":"fontawesome/solid/ellipsis.svg","fontawesome-solid-envelope-circle-check":"fontawesome/solid/envelope-circle-check.svg","fontawesome-solid-envelope-open-text":"fontawesome/solid/envelope-open-text.svg","fontawesome-solid-envelope-open":"fontawesome/solid/envelope-open.svg","fontawesome-solid-envelope":"fontawesome/solid/envelope.svg","fontawesome-solid-envelopes-bulk":"fontawesome/solid/envelopes-bulk.svg","fontawesome-solid-equals":"fontawesome/solid/equals.svg","fontawesome-solid-eraser":"fontawesome/solid/eraser.svg","fontawesome-solid-ethernet":"fontawesome/solid/ethernet.svg","fontawesome-solid-euro-sign":"fontawesome/solid/euro-sign.svg","fontawesome-solid-exclamation":"fontawesome/solid/exclamation.svg","fontawesome-solid-expand":"fontawesome/solid/expand.svg","fontawesome-solid-explosion":"fontawesome/solid/explosion.svg","fontawesome-solid-eye-dropper":"fontawesome/solid/eye-dropper.svg","fontawesome-solid-eye-low-vision":"fontawesome/solid/eye-low-vision.svg","fontawesome-solid-eye-slash":"fontawesome/solid/eye-slash.svg","fontawesome-solid-eye":"fontawesome/solid/eye.svg","fontawesome-solid-f":"fontawesome/solid/f.svg","fontawesome-solid-face-angry":"fontawesome/solid/face-angry.svg","fontawesome-solid-face-dizzy":"fontawesome/solid/face-dizzy.svg","fontawesome-solid-face-flushed":"fontawesome/solid/face-flushed.svg","fontawesome-solid-face-frown-open":"fontawesome/solid/face-frown-open.svg","fontawesome-solid-face-frown":"fontawesome/solid/face-frown.svg","fontawesome-solid-face-grimace":"fontawesome/solid/face-grimace.svg","fontawesome-solid-face-grin-beam-sweat":"fontawesome/solid/face-grin-beam-sweat.svg","fontawesome-solid-face-grin-beam":"fontawesome/solid/face-grin-beam.svg","fontawesome-solid-face-grin-hearts":"fontawesome/solid/face-grin-hearts.svg","fontawesome-solid-face-grin-squint-tears":"fontawesome/solid/face-grin-squint-tears.svg","fontawesome-solid-face-grin-squint":"fontawesome/solid/face-grin-squint.svg","fontawesome-solid-face-grin-stars":"fontawesome/solid/face-grin-stars.svg","fontawesome-solid-face-grin-tears":"fontawesome/solid/face-grin-tears.svg","fontawesome-solid-face-grin-tongue-squint":"fontawesome/solid/face-grin-tongue-squint.svg","fontawesome-solid-face-grin-tongue-wink":"fontawesome/solid/face-grin-tongue-wink.svg","fontawesome-solid-face-grin-tongue":"fontawesome/solid/face-grin-tongue.svg","fontawesome-solid-face-grin-wide":"fontawesome/solid/face-grin-wide.svg","fontawesome-solid-face-grin-wink":"fontawesome/solid/face-grin-wink.svg","fontawesome-solid-face-grin":"fontawesome/solid/face-grin.svg","fontawesome-solid-face-kiss-beam":"fontawesome/solid/face-kiss-beam.svg","fontawesome-solid-face-kiss-wink-heart":"fontawesome/solid/face-kiss-wink-heart.svg","fontawesome-solid-face-kiss":"fontawesome/solid/face-kiss.svg","fontawesome-solid-face-laugh-beam":"fontawesome/solid/face-laugh-beam.svg","fontawesome-solid-face-laugh-squint":"fontawesome/solid/face-laugh-squint.svg","fontawesome-solid-face-laugh-wink":"fontawesome/solid/face-laugh-wink.svg","fontawesome-solid-face-laugh":"fontawesome/solid/face-laugh.svg","fontawesome-solid-face-meh-blank":"fontawesome/solid/face-meh-blank.svg","fontawesome-solid-face-meh":"fontawesome/solid/face-meh.svg","fontawesome-solid-face-rolling-eyes":"fontawesome/solid/face-rolling-eyes.svg","fontawesome-solid-face-sad-cry":"fontawesome/solid/face-sad-cry.svg","fontawesome-solid-face-sad-tear":"fontawesome/solid/face-sad-tear.svg","fontawesome-solid-face-smile-beam":"fontawesome/solid/face-smile-beam.svg","fontawesome-solid-face-smile-wink":"fontawesome/solid/face-smile-wink.svg","fontawesome-solid-face-smile":"fontawesome/solid/face-smile.svg","fontawesome-solid-face-surprise":"fontawesome/solid/face-surprise.svg","fontawesome-solid-face-tired":"fontawesome/solid/face-tired.svg","fontawesome-solid-fan":"fontawesome/solid/fan.svg","fontawesome-solid-faucet-drip":"fontawesome/solid/faucet-drip.svg","fontawesome-solid-faucet":"fontawesome/solid/faucet.svg","fontawesome-solid-fax":"fontawesome/solid/fax.svg","fontawesome-solid-feather-pointed":"fontawesome/solid/feather-pointed.svg","fontawesome-solid-feather":"fontawesome/solid/feather.svg","fontawesome-solid-ferry":"fontawesome/solid/ferry.svg","fontawesome-solid-file-arrow-down":"fontawesome/solid/file-arrow-down.svg","fontawesome-solid-file-arrow-up":"fontawesome/solid/file-arrow-up.svg","fontawesome-solid-file-audio":"fontawesome/solid/file-audio.svg","fontawesome-solid-file-circle-check":"fontawesome/solid/file-circle-check.svg","fontawesome-solid-file-circle-exclamation":"fontawesome/solid/file-circle-exclamation.svg","fontawesome-solid-file-circle-minus":"fontawesome/solid/file-circle-minus.svg","fontawesome-solid-file-circle-plus":"fontawesome/solid/file-circle-plus.svg","fontawesome-solid-file-circle-question":"fontawesome/solid/file-circle-question.svg","fontawesome-solid-file-circle-xmark":"fontawesome/solid/file-circle-xmark.svg","fontawesome-solid-file-code":"fontawesome/solid/file-code.svg","fontawesome-solid-file-contract":"fontawesome/solid/file-contract.svg","fontawesome-solid-file-csv":"fontawesome/solid/file-csv.svg","fontawesome-solid-file-excel":"fontawesome/solid/file-excel.svg","fontawesome-solid-file-export":"fontawesome/solid/file-export.svg","fontawesome-solid-file-fragment":"fontawesome/solid/file-fragment.svg","fontawesome-solid-file-half-dashed":"fontawesome/solid/file-half-dashed.svg","fontawesome-solid-file-image":"fontawesome/solid/file-image.svg","fontawesome-solid-file-import":"fontawesome/solid/file-import.svg","fontawesome-solid-file-invoice-dollar":"fontawesome/solid/file-invoice-dollar.svg","fontawesome-solid-file-invoice":"fontawesome/solid/file-invoice.svg","fontawesome-solid-file-lines":"fontawesome/solid/file-lines.svg","fontawesome-solid-file-medical":"fontawesome/solid/file-medical.svg","fontawesome-solid-file-pdf":"fontawesome/solid/file-pdf.svg","fontawesome-solid-file-pen":"fontawesome/solid/file-pen.svg","fontawesome-solid-file-powerpoint":"fontawesome/solid/file-powerpoint.svg","fontawesome-solid-file-prescription":"fontawesome/solid/file-prescription.svg","fontawesome-solid-file-shield":"fontawesome/solid/file-shield.svg","fontawesome-solid-file-signature":"fontawesome/solid/file-signature.svg","fontawesome-solid-file-video":"fontawesome/solid/file-video.svg","fontawesome-solid-file-waveform":"fontawesome/solid/file-waveform.svg","fontawesome-solid-file-word":"fontawesome/solid/file-word.svg","fontawesome-solid-file-zipper":"fontawesome/solid/file-zipper.svg","fontawesome-solid-file":"fontawesome/solid/file.svg","fontawesome-solid-fill-drip":"fontawesome/solid/fill-drip.svg","fontawesome-solid-fill":"fontawesome/solid/fill.svg","fontawesome-solid-film":"fontawesome/solid/film.svg","fontawesome-solid-filter-circle-dollar":"fontawesome/solid/filter-circle-dollar.svg","fontawesome-solid-filter-circle-xmark":"fontawesome/solid/filter-circle-xmark.svg","fontawesome-solid-filter":"fontawesome/solid/filter.svg","fontawesome-solid-fingerprint":"fontawesome/solid/fingerprint.svg","fontawesome-solid-fire-burner":"fontawesome/solid/fire-burner.svg","fontawesome-solid-fire-extinguisher":"fontawesome/solid/fire-extinguisher.svg","fontawesome-solid-fire-flame-curved":"fontawesome/solid/fire-flame-curved.svg","fontawesome-solid-fire-flame-simple":"fontawesome/solid/fire-flame-simple.svg","fontawesome-solid-fire":"fontawesome/solid/fire.svg","fontawesome-solid-fish-fins":"fontawesome/solid/fish-fins.svg","fontawesome-solid-fish":"fontawesome/solid/fish.svg","fontawesome-solid-flag-checkered":"fontawesome/solid/flag-checkered.svg","fontawesome-solid-flag-usa":"fontawesome/solid/flag-usa.svg","fontawesome-solid-flag":"fontawesome/solid/flag.svg","fontawesome-solid-flask-vial":"fontawesome/solid/flask-vial.svg","fontawesome-solid-flask":"fontawesome/solid/flask.svg","fontawesome-solid-floppy-disk":"fontawesome/solid/floppy-disk.svg","fontawesome-solid-florin-sign":"fontawesome/solid/florin-sign.svg","fontawesome-solid-folder-closed":"fontawesome/solid/folder-closed.svg","fontawesome-solid-folder-minus":"fontawesome/solid/folder-minus.svg","fontawesome-solid-folder-open":"fontawesome/solid/folder-open.svg","fontawesome-solid-folder-plus":"fontawesome/solid/folder-plus.svg","fontawesome-solid-folder-tree":"fontawesome/solid/folder-tree.svg","fontawesome-solid-folder":"fontawesome/solid/folder.svg","fontawesome-solid-font-awesome":"fontawesome/solid/font-awesome.svg","fontawesome-solid-font":"fontawesome/solid/font.svg","fontawesome-solid-football":"fontawesome/solid/football.svg","fontawesome-solid-forward-fast":"fontawesome/solid/forward-fast.svg","fontawesome-solid-forward-step":"fontawesome/solid/forward-step.svg","fontawesome-solid-forward":"fontawesome/solid/forward.svg","fontawesome-solid-franc-sign":"fontawesome/solid/franc-sign.svg","fontawesome-solid-frog":"fontawesome/solid/frog.svg","fontawesome-solid-futbol":"fontawesome/solid/futbol.svg","fontawesome-solid-g":"fontawesome/solid/g.svg","fontawesome-solid-gamepad":"fontawesome/solid/gamepad.svg","fontawesome-solid-gas-pump":"fontawesome/solid/gas-pump.svg","fontawesome-solid-gauge-high":"fontawesome/solid/gauge-high.svg","fontawesome-solid-gauge-simple-high":"fontawesome/solid/gauge-simple-high.svg","fontawesome-solid-gauge-simple":"fontawesome/solid/gauge-simple.svg","fontawesome-solid-gauge":"fontawesome/solid/gauge.svg","fontawesome-solid-gavel":"fontawesome/solid/gavel.svg","fontawesome-solid-gear":"fontawesome/solid/gear.svg","fontawesome-solid-gears":"fontawesome/solid/gears.svg","fontawesome-solid-gem":"fontawesome/solid/gem.svg","fontawesome-solid-genderless":"fontawesome/solid/genderless.svg","fontawesome-solid-ghost":"fontawesome/solid/ghost.svg","fontawesome-solid-gift":"fontawesome/solid/gift.svg","fontawesome-solid-gifts":"fontawesome/solid/gifts.svg","fontawesome-solid-glass-water-droplet":"fontawesome/solid/glass-water-droplet.svg","fontawesome-solid-glass-water":"fontawesome/solid/glass-water.svg","fontawesome-solid-glasses":"fontawesome/solid/glasses.svg","fontawesome-solid-globe":"fontawesome/solid/globe.svg","fontawesome-solid-golf-ball-tee":"fontawesome/solid/golf-ball-tee.svg","fontawesome-solid-gopuram":"fontawesome/solid/gopuram.svg","fontawesome-solid-graduation-cap":"fontawesome/solid/graduation-cap.svg","fontawesome-solid-greater-than-equal":"fontawesome/solid/greater-than-equal.svg","fontawesome-solid-greater-than":"fontawesome/solid/greater-than.svg","fontawesome-solid-grip-lines-vertical":"fontawesome/solid/grip-lines-vertical.svg","fontawesome-solid-grip-lines":"fontawesome/solid/grip-lines.svg","fontawesome-solid-grip-vertical":"fontawesome/solid/grip-vertical.svg","fontawesome-solid-grip":"fontawesome/solid/grip.svg","fontawesome-solid-group-arrows-rotate":"fontawesome/solid/group-arrows-rotate.svg","fontawesome-solid-guarani-sign":"fontawesome/solid/guarani-sign.svg","fontawesome-solid-guitar":"fontawesome/solid/guitar.svg","fontawesome-solid-gun":"fontawesome/solid/gun.svg","fontawesome-solid-h":"fontawesome/solid/h.svg","fontawesome-solid-hammer":"fontawesome/solid/hammer.svg","fontawesome-solid-hamsa":"fontawesome/solid/hamsa.svg","fontawesome-solid-hand-back-fist":"fontawesome/solid/hand-back-fist.svg","fontawesome-solid-hand-dots":"fontawesome/solid/hand-dots.svg","fontawesome-solid-hand-fist":"fontawesome/solid/hand-fist.svg","fontawesome-solid-hand-holding-dollar":"fontawesome/solid/hand-holding-dollar.svg","fontawesome-solid-hand-holding-droplet":"fontawesome/solid/hand-holding-droplet.svg","fontawesome-solid-hand-holding-hand":"fontawesome/solid/hand-holding-hand.svg","fontawesome-solid-hand-holding-heart":"fontawesome/solid/hand-holding-heart.svg","fontawesome-solid-hand-holding-medical":"fontawesome/solid/hand-holding-medical.svg","fontawesome-solid-hand-holding":"fontawesome/solid/hand-holding.svg","fontawesome-solid-hand-lizard":"fontawesome/solid/hand-lizard.svg","fontawesome-solid-hand-middle-finger":"fontawesome/solid/hand-middle-finger.svg","fontawesome-solid-hand-peace":"fontawesome/solid/hand-peace.svg","fontawesome-solid-hand-point-down":"fontawesome/solid/hand-point-down.svg","fontawesome-solid-hand-point-left":"fontawesome/solid/hand-point-left.svg","fontawesome-solid-hand-point-right":"fontawesome/solid/hand-point-right.svg","fontawesome-solid-hand-point-up":"fontawesome/solid/hand-point-up.svg","fontawesome-solid-hand-pointer":"fontawesome/solid/hand-pointer.svg","fontawesome-solid-hand-scissors":"fontawesome/solid/hand-scissors.svg","fontawesome-solid-hand-sparkles":"fontawesome/solid/hand-sparkles.svg","fontawesome-solid-hand-spock":"fontawesome/solid/hand-spock.svg","fontawesome-solid-hand":"fontawesome/solid/hand.svg","fontawesome-solid-handcuffs":"fontawesome/solid/handcuffs.svg","fontawesome-solid-hands-asl-interpreting":"fontawesome/solid/hands-asl-interpreting.svg","fontawesome-solid-hands-bound":"fontawesome/solid/hands-bound.svg","fontawesome-solid-hands-bubbles":"fontawesome/solid/hands-bubbles.svg","fontawesome-solid-hands-clapping":"fontawesome/solid/hands-clapping.svg","fontawesome-solid-hands-holding-child":"fontawesome/solid/hands-holding-child.svg","fontawesome-solid-hands-holding-circle":"fontawesome/solid/hands-holding-circle.svg","fontawesome-solid-hands-holding":"fontawesome/solid/hands-holding.svg","fontawesome-solid-hands-praying":"fontawesome/solid/hands-praying.svg","fontawesome-solid-hands":"fontawesome/solid/hands.svg","fontawesome-solid-handshake-angle":"fontawesome/solid/handshake-angle.svg","fontawesome-solid-handshake-simple-slash":"fontawesome/solid/handshake-simple-slash.svg","fontawesome-solid-handshake-simple":"fontawesome/solid/handshake-simple.svg","fontawesome-solid-handshake-slash":"fontawesome/solid/handshake-slash.svg","fontawesome-solid-handshake":"fontawesome/solid/handshake.svg","fontawesome-solid-hanukiah":"fontawesome/solid/hanukiah.svg","fontawesome-solid-hard-drive":"fontawesome/solid/hard-drive.svg","fontawesome-solid-hashtag":"fontawesome/solid/hashtag.svg","fontawesome-solid-hat-cowboy-side":"fontawesome/solid/hat-cowboy-side.svg","fontawesome-solid-hat-cowboy":"fontawesome/solid/hat-cowboy.svg","fontawesome-solid-hat-wizard":"fontawesome/solid/hat-wizard.svg","fontawesome-solid-head-side-cough-slash":"fontawesome/solid/head-side-cough-slash.svg","fontawesome-solid-head-side-cough":"fontawesome/solid/head-side-cough.svg","fontawesome-solid-head-side-mask":"fontawesome/solid/head-side-mask.svg","fontawesome-solid-head-side-virus":"fontawesome/solid/head-side-virus.svg","fontawesome-solid-heading":"fontawesome/solid/heading.svg","fontawesome-solid-headphones-simple":"fontawesome/solid/headphones-simple.svg","fontawesome-solid-headphones":"fontawesome/solid/headphones.svg","fontawesome-solid-headset":"fontawesome/solid/headset.svg","fontawesome-solid-heart-circle-bolt":"fontawesome/solid/heart-circle-bolt.svg","fontawesome-solid-heart-circle-check":"fontawesome/solid/heart-circle-check.svg","fontawesome-solid-heart-circle-exclamation":"fontawesome/solid/heart-circle-exclamation.svg","fontawesome-solid-heart-circle-minus":"fontawesome/solid/heart-circle-minus.svg","fontawesome-solid-heart-circle-plus":"fontawesome/solid/heart-circle-plus.svg","fontawesome-solid-heart-circle-xmark":"fontawesome/solid/heart-circle-xmark.svg","fontawesome-solid-heart-crack":"fontawesome/solid/heart-crack.svg","fontawesome-solid-heart-pulse":"fontawesome/solid/heart-pulse.svg","fontawesome-solid-heart":"fontawesome/solid/heart.svg","fontawesome-solid-helicopter-symbol":"fontawesome/solid/helicopter-symbol.svg","fontawesome-solid-helicopter":"fontawesome/solid/helicopter.svg","fontawesome-solid-helmet-safety":"fontawesome/solid/helmet-safety.svg","fontawesome-solid-helmet-un":"fontawesome/solid/helmet-un.svg","fontawesome-solid-hexagon-nodes-bolt":"fontawesome/solid/hexagon-nodes-bolt.svg","fontawesome-solid-hexagon-nodes":"fontawesome/solid/hexagon-nodes.svg","fontawesome-solid-highlighter":"fontawesome/solid/highlighter.svg","fontawesome-solid-hill-avalanche":"fontawesome/solid/hill-avalanche.svg","fontawesome-solid-hill-rockslide":"fontawesome/solid/hill-rockslide.svg","fontawesome-solid-hippo":"fontawesome/solid/hippo.svg","fontawesome-solid-hockey-puck":"fontawesome/solid/hockey-puck.svg","fontawesome-solid-holly-berry":"fontawesome/solid/holly-berry.svg","fontawesome-solid-horse-head":"fontawesome/solid/horse-head.svg","fontawesome-solid-horse":"fontawesome/solid/horse.svg","fontawesome-solid-hospital-user":"fontawesome/solid/hospital-user.svg","fontawesome-solid-hospital":"fontawesome/solid/hospital.svg","fontawesome-solid-hot-tub-person":"fontawesome/solid/hot-tub-person.svg","fontawesome-solid-hotdog":"fontawesome/solid/hotdog.svg","fontawesome-solid-hotel":"fontawesome/solid/hotel.svg","fontawesome-solid-hourglass-end":"fontawesome/solid/hourglass-end.svg","fontawesome-solid-hourglass-half":"fontawesome/solid/hourglass-half.svg","fontawesome-solid-hourglass-start":"fontawesome/solid/hourglass-start.svg","fontawesome-solid-hourglass":"fontawesome/solid/hourglass.svg","fontawesome-solid-house-chimney-crack":"fontawesome/solid/house-chimney-crack.svg","fontawesome-solid-house-chimney-medical":"fontawesome/solid/house-chimney-medical.svg","fontawesome-solid-house-chimney-user":"fontawesome/solid/house-chimney-user.svg","fontawesome-solid-house-chimney-window":"fontawesome/solid/house-chimney-window.svg","fontawesome-solid-house-chimney":"fontawesome/solid/house-chimney.svg","fontawesome-solid-house-circle-check":"fontawesome/solid/house-circle-check.svg","fontawesome-solid-house-circle-exclamation":"fontawesome/solid/house-circle-exclamation.svg","fontawesome-solid-house-circle-xmark":"fontawesome/solid/house-circle-xmark.svg","fontawesome-solid-house-crack":"fontawesome/solid/house-crack.svg","fontawesome-solid-house-fire":"fontawesome/solid/house-fire.svg","fontawesome-solid-house-flag":"fontawesome/solid/house-flag.svg","fontawesome-solid-house-flood-water-circle-arrow-right":"fontawesome/solid/house-flood-water-circle-arrow-right.svg","fontawesome-solid-house-flood-water":"fontawesome/solid/house-flood-water.svg","fontawesome-solid-house-laptop":"fontawesome/solid/house-laptop.svg","fontawesome-solid-house-lock":"fontawesome/solid/house-lock.svg","fontawesome-solid-house-medical-circle-check":"fontawesome/solid/house-medical-circle-check.svg","fontawesome-solid-house-medical-circle-exclamation":"fontawesome/solid/house-medical-circle-exclamation.svg","fontawesome-solid-house-medical-circle-xmark":"fontawesome/solid/house-medical-circle-xmark.svg","fontawesome-solid-house-medical-flag":"fontawesome/solid/house-medical-flag.svg","fontawesome-solid-house-medical":"fontawesome/solid/house-medical.svg","fontawesome-solid-house-signal":"fontawesome/solid/house-signal.svg","fontawesome-solid-house-tsunami":"fontawesome/solid/house-tsunami.svg","fontawesome-solid-house-user":"fontawesome/solid/house-user.svg","fontawesome-solid-house":"fontawesome/solid/house.svg","fontawesome-solid-hryvnia-sign":"fontawesome/solid/hryvnia-sign.svg","fontawesome-solid-hurricane":"fontawesome/solid/hurricane.svg","fontawesome-solid-i-cursor":"fontawesome/solid/i-cursor.svg","fontawesome-solid-i":"fontawesome/solid/i.svg","fontawesome-solid-ice-cream":"fontawesome/solid/ice-cream.svg","fontawesome-solid-icicles":"fontawesome/solid/icicles.svg","fontawesome-solid-icons":"fontawesome/solid/icons.svg","fontawesome-solid-id-badge":"fontawesome/solid/id-badge.svg","fontawesome-solid-id-card-clip":"fontawesome/solid/id-card-clip.svg","fontawesome-solid-id-card":"fontawesome/solid/id-card.svg","fontawesome-solid-igloo":"fontawesome/solid/igloo.svg","fontawesome-solid-image-portrait":"fontawesome/solid/image-portrait.svg","fontawesome-solid-image":"fontawesome/solid/image.svg","fontawesome-solid-images":"fontawesome/solid/images.svg","fontawesome-solid-inbox":"fontawesome/solid/inbox.svg","fontawesome-solid-indent":"fontawesome/solid/indent.svg","fontawesome-solid-indian-rupee-sign":"fontawesome/solid/indian-rupee-sign.svg","fontawesome-solid-industry":"fontawesome/solid/industry.svg","fontawesome-solid-infinity":"fontawesome/solid/infinity.svg","fontawesome-solid-info":"fontawesome/solid/info.svg","fontawesome-solid-italic":"fontawesome/solid/italic.svg","fontawesome-solid-j":"fontawesome/solid/j.svg","fontawesome-solid-jar-wheat":"fontawesome/solid/jar-wheat.svg","fontawesome-solid-jar":"fontawesome/solid/jar.svg","fontawesome-solid-jedi":"fontawesome/solid/jedi.svg","fontawesome-solid-jet-fighter-up":"fontawesome/solid/jet-fighter-up.svg","fontawesome-solid-jet-fighter":"fontawesome/solid/jet-fighter.svg","fontawesome-solid-joint":"fontawesome/solid/joint.svg","fontawesome-solid-jug-detergent":"fontawesome/solid/jug-detergent.svg","fontawesome-solid-k":"fontawesome/solid/k.svg","fontawesome-solid-kaaba":"fontawesome/solid/kaaba.svg","fontawesome-solid-key":"fontawesome/solid/key.svg","fontawesome-solid-keyboard":"fontawesome/solid/keyboard.svg","fontawesome-solid-khanda":"fontawesome/solid/khanda.svg","fontawesome-solid-kip-sign":"fontawesome/solid/kip-sign.svg","fontawesome-solid-kit-medical":"fontawesome/solid/kit-medical.svg","fontawesome-solid-kitchen-set":"fontawesome/solid/kitchen-set.svg","fontawesome-solid-kiwi-bird":"fontawesome/solid/kiwi-bird.svg","fontawesome-solid-l":"fontawesome/solid/l.svg","fontawesome-solid-land-mine-on":"fontawesome/solid/land-mine-on.svg","fontawesome-solid-landmark-dome":"fontawesome/solid/landmark-dome.svg","fontawesome-solid-landmark-flag":"fontawesome/solid/landmark-flag.svg","fontawesome-solid-landmark":"fontawesome/solid/landmark.svg","fontawesome-solid-language":"fontawesome/solid/language.svg","fontawesome-solid-laptop-code":"fontawesome/solid/laptop-code.svg","fontawesome-solid-laptop-file":"fontawesome/solid/laptop-file.svg","fontawesome-solid-laptop-medical":"fontawesome/solid/laptop-medical.svg","fontawesome-solid-laptop":"fontawesome/solid/laptop.svg","fontawesome-solid-lari-sign":"fontawesome/solid/lari-sign.svg","fontawesome-solid-layer-group":"fontawesome/solid/layer-group.svg","fontawesome-solid-leaf":"fontawesome/solid/leaf.svg","fontawesome-solid-left-long":"fontawesome/solid/left-long.svg","fontawesome-solid-left-right":"fontawesome/solid/left-right.svg","fontawesome-solid-lemon":"fontawesome/solid/lemon.svg","fontawesome-solid-less-than-equal":"fontawesome/solid/less-than-equal.svg","fontawesome-solid-less-than":"fontawesome/solid/less-than.svg","fontawesome-solid-life-ring":"fontawesome/solid/life-ring.svg","fontawesome-solid-lightbulb":"fontawesome/solid/lightbulb.svg","fontawesome-solid-lines-leaning":"fontawesome/solid/lines-leaning.svg","fontawesome-solid-link-slash":"fontawesome/solid/link-slash.svg","fontawesome-solid-link":"fontawesome/solid/link.svg","fontawesome-solid-lira-sign":"fontawesome/solid/lira-sign.svg","fontawesome-solid-list-check":"fontawesome/solid/list-check.svg","fontawesome-solid-list-ol":"fontawesome/solid/list-ol.svg","fontawesome-solid-list-ul":"fontawesome/solid/list-ul.svg","fontawesome-solid-list":"fontawesome/solid/list.svg","fontawesome-solid-litecoin-sign":"fontawesome/solid/litecoin-sign.svg","fontawesome-solid-location-arrow":"fontawesome/solid/location-arrow.svg","fontawesome-solid-location-crosshairs":"fontawesome/solid/location-crosshairs.svg","fontawesome-solid-location-dot":"fontawesome/solid/location-dot.svg","fontawesome-solid-location-pin-lock":"fontawesome/solid/location-pin-lock.svg","fontawesome-solid-location-pin":"fontawesome/solid/location-pin.svg","fontawesome-solid-lock-open":"fontawesome/solid/lock-open.svg","fontawesome-solid-lock":"fontawesome/solid/lock.svg","fontawesome-solid-locust":"fontawesome/solid/locust.svg","fontawesome-solid-lungs-virus":"fontawesome/solid/lungs-virus.svg","fontawesome-solid-lungs":"fontawesome/solid/lungs.svg","fontawesome-solid-m":"fontawesome/solid/m.svg","fontawesome-solid-magnet":"fontawesome/solid/magnet.svg","fontawesome-solid-magnifying-glass-arrow-right":"fontawesome/solid/magnifying-glass-arrow-right.svg","fontawesome-solid-magnifying-glass-chart":"fontawesome/solid/magnifying-glass-chart.svg","fontawesome-solid-magnifying-glass-dollar":"fontawesome/solid/magnifying-glass-dollar.svg","fontawesome-solid-magnifying-glass-location":"fontawesome/solid/magnifying-glass-location.svg","fontawesome-solid-magnifying-glass-minus":"fontawesome/solid/magnifying-glass-minus.svg","fontawesome-solid-magnifying-glass-plus":"fontawesome/solid/magnifying-glass-plus.svg","fontawesome-solid-magnifying-glass":"fontawesome/solid/magnifying-glass.svg","fontawesome-solid-manat-sign":"fontawesome/solid/manat-sign.svg","fontawesome-solid-map-location-dot":"fontawesome/solid/map-location-dot.svg","fontawesome-solid-map-location":"fontawesome/solid/map-location.svg","fontawesome-solid-map-pin":"fontawesome/solid/map-pin.svg","fontawesome-solid-map":"fontawesome/solid/map.svg","fontawesome-solid-marker":"fontawesome/solid/marker.svg","fontawesome-solid-mars-and-venus-burst":"fontawesome/solid/mars-and-venus-burst.svg","fontawesome-solid-mars-and-venus":"fontawesome/solid/mars-and-venus.svg","fontawesome-solid-mars-double":"fontawesome/solid/mars-double.svg","fontawesome-solid-mars-stroke-right":"fontawesome/solid/mars-stroke-right.svg","fontawesome-solid-mars-stroke-up":"fontawesome/solid/mars-stroke-up.svg","fontawesome-solid-mars-stroke":"fontawesome/solid/mars-stroke.svg","fontawesome-solid-mars":"fontawesome/solid/mars.svg","fontawesome-solid-martini-glass-citrus":"fontawesome/solid/martini-glass-citrus.svg","fontawesome-solid-martini-glass-empty":"fontawesome/solid/martini-glass-empty.svg","fontawesome-solid-martini-glass":"fontawesome/solid/martini-glass.svg","fontawesome-solid-mask-face":"fontawesome/solid/mask-face.svg","fontawesome-solid-mask-ventilator":"fontawesome/solid/mask-ventilator.svg","fontawesome-solid-mask":"fontawesome/solid/mask.svg","fontawesome-solid-masks-theater":"fontawesome/solid/masks-theater.svg","fontawesome-solid-mattress-pillow":"fontawesome/solid/mattress-pillow.svg","fontawesome-solid-maximize":"fontawesome/solid/maximize.svg","fontawesome-solid-medal":"fontawesome/solid/medal.svg","fontawesome-solid-memory":"fontawesome/solid/memory.svg","fontawesome-solid-menorah":"fontawesome/solid/menorah.svg","fontawesome-solid-mercury":"fontawesome/solid/mercury.svg","fontawesome-solid-message":"fontawesome/solid/message.svg","fontawesome-solid-meteor":"fontawesome/solid/meteor.svg","fontawesome-solid-microchip":"fontawesome/solid/microchip.svg","fontawesome-solid-microphone-lines-slash":"fontawesome/solid/microphone-lines-slash.svg","fontawesome-solid-microphone-lines":"fontawesome/solid/microphone-lines.svg","fontawesome-solid-microphone-slash":"fontawesome/solid/microphone-slash.svg","fontawesome-solid-microphone":"fontawesome/solid/microphone.svg","fontawesome-solid-microscope":"fontawesome/solid/microscope.svg","fontawesome-solid-mill-sign":"fontawesome/solid/mill-sign.svg","fontawesome-solid-minimize":"fontawesome/solid/minimize.svg","fontawesome-solid-minus":"fontawesome/solid/minus.svg","fontawesome-solid-mitten":"fontawesome/solid/mitten.svg","fontawesome-solid-mobile-button":"fontawesome/solid/mobile-button.svg","fontawesome-solid-mobile-retro":"fontawesome/solid/mobile-retro.svg","fontawesome-solid-mobile-screen-button":"fontawesome/solid/mobile-screen-button.svg","fontawesome-solid-mobile-screen":"fontawesome/solid/mobile-screen.svg","fontawesome-solid-mobile":"fontawesome/solid/mobile.svg","fontawesome-solid-money-bill-1-wave":"fontawesome/solid/money-bill-1-wave.svg","fontawesome-solid-money-bill-1":"fontawesome/solid/money-bill-1.svg","fontawesome-solid-money-bill-transfer":"fontawesome/solid/money-bill-transfer.svg","fontawesome-solid-money-bill-trend-up":"fontawesome/solid/money-bill-trend-up.svg","fontawesome-solid-money-bill-wave":"fontawesome/solid/money-bill-wave.svg","fontawesome-solid-money-bill-wheat":"fontawesome/solid/money-bill-wheat.svg","fontawesome-solid-money-bill":"fontawesome/solid/money-bill.svg","fontawesome-solid-money-bills":"fontawesome/solid/money-bills.svg","fontawesome-solid-money-check-dollar":"fontawesome/solid/money-check-dollar.svg","fontawesome-solid-money-check":"fontawesome/solid/money-check.svg","fontawesome-solid-monument":"fontawesome/solid/monument.svg","fontawesome-solid-moon":"fontawesome/solid/moon.svg","fontawesome-solid-mortar-pestle":"fontawesome/solid/mortar-pestle.svg","fontawesome-solid-mosque":"fontawesome/solid/mosque.svg","fontawesome-solid-mosquito-net":"fontawesome/solid/mosquito-net.svg","fontawesome-solid-mosquito":"fontawesome/solid/mosquito.svg","fontawesome-solid-motorcycle":"fontawesome/solid/motorcycle.svg","fontawesome-solid-mound":"fontawesome/solid/mound.svg","fontawesome-solid-mountain-city":"fontawesome/solid/mountain-city.svg","fontawesome-solid-mountain-sun":"fontawesome/solid/mountain-sun.svg","fontawesome-solid-mountain":"fontawesome/solid/mountain.svg","fontawesome-solid-mug-hot":"fontawesome/solid/mug-hot.svg","fontawesome-solid-mug-saucer":"fontawesome/solid/mug-saucer.svg","fontawesome-solid-music":"fontawesome/solid/music.svg","fontawesome-solid-n":"fontawesome/solid/n.svg","fontawesome-solid-naira-sign":"fontawesome/solid/naira-sign.svg","fontawesome-solid-network-wired":"fontawesome/solid/network-wired.svg","fontawesome-solid-neuter":"fontawesome/solid/neuter.svg","fontawesome-solid-newspaper":"fontawesome/solid/newspaper.svg","fontawesome-solid-not-equal":"fontawesome/solid/not-equal.svg","fontawesome-solid-notdef":"fontawesome/solid/notdef.svg","fontawesome-solid-note-sticky":"fontawesome/solid/note-sticky.svg","fontawesome-solid-notes-medical":"fontawesome/solid/notes-medical.svg","fontawesome-solid-o":"fontawesome/solid/o.svg","fontawesome-solid-object-group":"fontawesome/solid/object-group.svg","fontawesome-solid-object-ungroup":"fontawesome/solid/object-ungroup.svg","fontawesome-solid-oil-can":"fontawesome/solid/oil-can.svg","fontawesome-solid-oil-well":"fontawesome/solid/oil-well.svg","fontawesome-solid-om":"fontawesome/solid/om.svg","fontawesome-solid-otter":"fontawesome/solid/otter.svg","fontawesome-solid-outdent":"fontawesome/solid/outdent.svg","fontawesome-solid-p":"fontawesome/solid/p.svg","fontawesome-solid-pager":"fontawesome/solid/pager.svg","fontawesome-solid-paint-roller":"fontawesome/solid/paint-roller.svg","fontawesome-solid-paintbrush":"fontawesome/solid/paintbrush.svg","fontawesome-solid-palette":"fontawesome/solid/palette.svg","fontawesome-solid-pallet":"fontawesome/solid/pallet.svg","fontawesome-solid-panorama":"fontawesome/solid/panorama.svg","fontawesome-solid-paper-plane":"fontawesome/solid/paper-plane.svg","fontawesome-solid-paperclip":"fontawesome/solid/paperclip.svg","fontawesome-solid-parachute-box":"fontawesome/solid/parachute-box.svg","fontawesome-solid-paragraph":"fontawesome/solid/paragraph.svg","fontawesome-solid-passport":"fontawesome/solid/passport.svg","fontawesome-solid-paste":"fontawesome/solid/paste.svg","fontawesome-solid-pause":"fontawesome/solid/pause.svg","fontawesome-solid-paw":"fontawesome/solid/paw.svg","fontawesome-solid-peace":"fontawesome/solid/peace.svg","fontawesome-solid-pen-clip":"fontawesome/solid/pen-clip.svg","fontawesome-solid-pen-fancy":"fontawesome/solid/pen-fancy.svg","fontawesome-solid-pen-nib":"fontawesome/solid/pen-nib.svg","fontawesome-solid-pen-ruler":"fontawesome/solid/pen-ruler.svg","fontawesome-solid-pen-to-square":"fontawesome/solid/pen-to-square.svg","fontawesome-solid-pen":"fontawesome/solid/pen.svg","fontawesome-solid-pencil":"fontawesome/solid/pencil.svg","fontawesome-solid-people-arrows":"fontawesome/solid/people-arrows.svg","fontawesome-solid-people-carry-box":"fontawesome/solid/people-carry-box.svg","fontawesome-solid-people-group":"fontawesome/solid/people-group.svg","fontawesome-solid-people-line":"fontawesome/solid/people-line.svg","fontawesome-solid-people-pulling":"fontawesome/solid/people-pulling.svg","fontawesome-solid-people-robbery":"fontawesome/solid/people-robbery.svg","fontawesome-solid-people-roof":"fontawesome/solid/people-roof.svg","fontawesome-solid-pepper-hot":"fontawesome/solid/pepper-hot.svg","fontawesome-solid-percent":"fontawesome/solid/percent.svg","fontawesome-solid-person-arrow-down-to-line":"fontawesome/solid/person-arrow-down-to-line.svg","fontawesome-solid-person-arrow-up-from-line":"fontawesome/solid/person-arrow-up-from-line.svg","fontawesome-solid-person-biking":"fontawesome/solid/person-biking.svg","fontawesome-solid-person-booth":"fontawesome/solid/person-booth.svg","fontawesome-solid-person-breastfeeding":"fontawesome/solid/person-breastfeeding.svg","fontawesome-solid-person-burst":"fontawesome/solid/person-burst.svg","fontawesome-solid-person-cane":"fontawesome/solid/person-cane.svg","fontawesome-solid-person-chalkboard":"fontawesome/solid/person-chalkboard.svg","fontawesome-solid-person-circle-check":"fontawesome/solid/person-circle-check.svg","fontawesome-solid-person-circle-exclamation":"fontawesome/solid/person-circle-exclamation.svg","fontawesome-solid-person-circle-minus":"fontawesome/solid/person-circle-minus.svg","fontawesome-solid-person-circle-plus":"fontawesome/solid/person-circle-plus.svg","fontawesome-solid-person-circle-question":"fontawesome/solid/person-circle-question.svg","fontawesome-solid-person-circle-xmark":"fontawesome/solid/person-circle-xmark.svg","fontawesome-solid-person-digging":"fontawesome/solid/person-digging.svg","fontawesome-solid-person-dots-from-line":"fontawesome/solid/person-dots-from-line.svg","fontawesome-solid-person-dress-burst":"fontawesome/solid/person-dress-burst.svg","fontawesome-solid-person-dress":"fontawesome/solid/person-dress.svg","fontawesome-solid-person-drowning":"fontawesome/solid/person-drowning.svg","fontawesome-solid-person-falling-burst":"fontawesome/solid/person-falling-burst.svg","fontawesome-solid-person-falling":"fontawesome/solid/person-falling.svg","fontawesome-solid-person-half-dress":"fontawesome/solid/person-half-dress.svg","fontawesome-solid-person-harassing":"fontawesome/solid/person-harassing.svg","fontawesome-solid-person-hiking":"fontawesome/solid/person-hiking.svg","fontawesome-solid-person-military-pointing":"fontawesome/solid/person-military-pointing.svg","fontawesome-solid-person-military-rifle":"fontawesome/solid/person-military-rifle.svg","fontawesome-solid-person-military-to-person":"fontawesome/solid/person-military-to-person.svg","fontawesome-solid-person-praying":"fontawesome/solid/person-praying.svg","fontawesome-solid-person-pregnant":"fontawesome/solid/person-pregnant.svg","fontawesome-solid-person-rays":"fontawesome/solid/person-rays.svg","fontawesome-solid-person-rifle":"fontawesome/solid/person-rifle.svg","fontawesome-solid-person-running":"fontawesome/solid/person-running.svg","fontawesome-solid-person-shelter":"fontawesome/solid/person-shelter.svg","fontawesome-solid-person-skating":"fontawesome/solid/person-skating.svg","fontawesome-solid-person-skiing-nordic":"fontawesome/solid/person-skiing-nordic.svg","fontawesome-solid-person-skiing":"fontawesome/solid/person-skiing.svg","fontawesome-solid-person-snowboarding":"fontawesome/solid/person-snowboarding.svg","fontawesome-solid-person-swimming":"fontawesome/solid/person-swimming.svg","fontawesome-solid-person-through-window":"fontawesome/solid/person-through-window.svg","fontawesome-solid-person-walking-arrow-loop-left":"fontawesome/solid/person-walking-arrow-loop-left.svg","fontawesome-solid-person-walking-arrow-right":"fontawesome/solid/person-walking-arrow-right.svg","fontawesome-solid-person-walking-dashed-line-arrow-right":"fontawesome/solid/person-walking-dashed-line-arrow-right.svg","fontawesome-solid-person-walking-luggage":"fontawesome/solid/person-walking-luggage.svg","fontawesome-solid-person-walking-with-cane":"fontawesome/solid/person-walking-with-cane.svg","fontawesome-solid-person-walking":"fontawesome/solid/person-walking.svg","fontawesome-solid-person":"fontawesome/solid/person.svg","fontawesome-solid-peseta-sign":"fontawesome/solid/peseta-sign.svg","fontawesome-solid-peso-sign":"fontawesome/solid/peso-sign.svg","fontawesome-solid-phone-flip":"fontawesome/solid/phone-flip.svg","fontawesome-solid-phone-slash":"fontawesome/solid/phone-slash.svg","fontawesome-solid-phone-volume":"fontawesome/solid/phone-volume.svg","fontawesome-solid-phone":"fontawesome/solid/phone.svg","fontawesome-solid-photo-film":"fontawesome/solid/photo-film.svg","fontawesome-solid-piggy-bank":"fontawesome/solid/piggy-bank.svg","fontawesome-solid-pills":"fontawesome/solid/pills.svg","fontawesome-solid-pizza-slice":"fontawesome/solid/pizza-slice.svg","fontawesome-solid-place-of-worship":"fontawesome/solid/place-of-worship.svg","fontawesome-solid-plane-arrival":"fontawesome/solid/plane-arrival.svg","fontawesome-solid-plane-circle-check":"fontawesome/solid/plane-circle-check.svg","fontawesome-solid-plane-circle-exclamation":"fontawesome/solid/plane-circle-exclamation.svg","fontawesome-solid-plane-circle-xmark":"fontawesome/solid/plane-circle-xmark.svg","fontawesome-solid-plane-departure":"fontawesome/solid/plane-departure.svg","fontawesome-solid-plane-lock":"fontawesome/solid/plane-lock.svg","fontawesome-solid-plane-slash":"fontawesome/solid/plane-slash.svg","fontawesome-solid-plane-up":"fontawesome/solid/plane-up.svg","fontawesome-solid-plane":"fontawesome/solid/plane.svg","fontawesome-solid-plant-wilt":"fontawesome/solid/plant-wilt.svg","fontawesome-solid-plate-wheat":"fontawesome/solid/plate-wheat.svg","fontawesome-solid-play":"fontawesome/solid/play.svg","fontawesome-solid-plug-circle-bolt":"fontawesome/solid/plug-circle-bolt.svg","fontawesome-solid-plug-circle-check":"fontawesome/solid/plug-circle-check.svg","fontawesome-solid-plug-circle-exclamation":"fontawesome/solid/plug-circle-exclamation.svg","fontawesome-solid-plug-circle-minus":"fontawesome/solid/plug-circle-minus.svg","fontawesome-solid-plug-circle-plus":"fontawesome/solid/plug-circle-plus.svg","fontawesome-solid-plug-circle-xmark":"fontawesome/solid/plug-circle-xmark.svg","fontawesome-solid-plug":"fontawesome/solid/plug.svg","fontawesome-solid-plus-minus":"fontawesome/solid/plus-minus.svg","fontawesome-solid-plus":"fontawesome/solid/plus.svg","fontawesome-solid-podcast":"fontawesome/solid/podcast.svg","fontawesome-solid-poo-storm":"fontawesome/solid/poo-storm.svg","fontawesome-solid-poo":"fontawesome/solid/poo.svg","fontawesome-solid-poop":"fontawesome/solid/poop.svg","fontawesome-solid-power-off":"fontawesome/solid/power-off.svg","fontawesome-solid-prescription-bottle-medical":"fontawesome/solid/prescription-bottle-medical.svg","fontawesome-solid-prescription-bottle":"fontawesome/solid/prescription-bottle.svg","fontawesome-solid-prescription":"fontawesome/solid/prescription.svg","fontawesome-solid-print":"fontawesome/solid/print.svg","fontawesome-solid-pump-medical":"fontawesome/solid/pump-medical.svg","fontawesome-solid-pump-soap":"fontawesome/solid/pump-soap.svg","fontawesome-solid-puzzle-piece":"fontawesome/solid/puzzle-piece.svg","fontawesome-solid-q":"fontawesome/solid/q.svg","fontawesome-solid-qrcode":"fontawesome/solid/qrcode.svg","fontawesome-solid-question":"fontawesome/solid/question.svg","fontawesome-solid-quote-left":"fontawesome/solid/quote-left.svg","fontawesome-solid-quote-right":"fontawesome/solid/quote-right.svg","fontawesome-solid-r":"fontawesome/solid/r.svg","fontawesome-solid-radiation":"fontawesome/solid/radiation.svg","fontawesome-solid-radio":"fontawesome/solid/radio.svg","fontawesome-solid-rainbow":"fontawesome/solid/rainbow.svg","fontawesome-solid-ranking-star":"fontawesome/solid/ranking-star.svg","fontawesome-solid-receipt":"fontawesome/solid/receipt.svg","fontawesome-solid-record-vinyl":"fontawesome/solid/record-vinyl.svg","fontawesome-solid-rectangle-ad":"fontawesome/solid/rectangle-ad.svg","fontawesome-solid-rectangle-list":"fontawesome/solid/rectangle-list.svg","fontawesome-solid-rectangle-xmark":"fontawesome/solid/rectangle-xmark.svg","fontawesome-solid-recycle":"fontawesome/solid/recycle.svg","fontawesome-solid-registered":"fontawesome/solid/registered.svg","fontawesome-solid-repeat":"fontawesome/solid/repeat.svg","fontawesome-solid-reply-all":"fontawesome/solid/reply-all.svg","fontawesome-solid-reply":"fontawesome/solid/reply.svg","fontawesome-solid-republican":"fontawesome/solid/republican.svg","fontawesome-solid-restroom":"fontawesome/solid/restroom.svg","fontawesome-solid-retweet":"fontawesome/solid/retweet.svg","fontawesome-solid-ribbon":"fontawesome/solid/ribbon.svg","fontawesome-solid-right-from-bracket":"fontawesome/solid/right-from-bracket.svg","fontawesome-solid-right-left":"fontawesome/solid/right-left.svg","fontawesome-solid-right-long":"fontawesome/solid/right-long.svg","fontawesome-solid-right-to-bracket":"fontawesome/solid/right-to-bracket.svg","fontawesome-solid-ring":"fontawesome/solid/ring.svg","fontawesome-solid-road-barrier":"fontawesome/solid/road-barrier.svg","fontawesome-solid-road-bridge":"fontawesome/solid/road-bridge.svg","fontawesome-solid-road-circle-check":"fontawesome/solid/road-circle-check.svg","fontawesome-solid-road-circle-exclamation":"fontawesome/solid/road-circle-exclamation.svg","fontawesome-solid-road-circle-xmark":"fontawesome/solid/road-circle-xmark.svg","fontawesome-solid-road-lock":"fontawesome/solid/road-lock.svg","fontawesome-solid-road-spikes":"fontawesome/solid/road-spikes.svg","fontawesome-solid-road":"fontawesome/solid/road.svg","fontawesome-solid-robot":"fontawesome/solid/robot.svg","fontawesome-solid-rocket":"fontawesome/solid/rocket.svg","fontawesome-solid-rotate-left":"fontawesome/solid/rotate-left.svg","fontawesome-solid-rotate-right":"fontawesome/solid/rotate-right.svg","fontawesome-solid-rotate":"fontawesome/solid/rotate.svg","fontawesome-solid-route":"fontawesome/solid/route.svg","fontawesome-solid-rss":"fontawesome/solid/rss.svg","fontawesome-solid-ruble-sign":"fontawesome/solid/ruble-sign.svg","fontawesome-solid-rug":"fontawesome/solid/rug.svg","fontawesome-solid-ruler-combined":"fontawesome/solid/ruler-combined.svg","fontawesome-solid-ruler-horizontal":"fontawesome/solid/ruler-horizontal.svg","fontawesome-solid-ruler-vertical":"fontawesome/solid/ruler-vertical.svg","fontawesome-solid-ruler":"fontawesome/solid/ruler.svg","fontawesome-solid-rupee-sign":"fontawesome/solid/rupee-sign.svg","fontawesome-solid-rupiah-sign":"fontawesome/solid/rupiah-sign.svg","fontawesome-solid-s":"fontawesome/solid/s.svg","fontawesome-solid-sack-dollar":"fontawesome/solid/sack-dollar.svg","fontawesome-solid-sack-xmark":"fontawesome/solid/sack-xmark.svg","fontawesome-solid-sailboat":"fontawesome/solid/sailboat.svg","fontawesome-solid-satellite-dish":"fontawesome/solid/satellite-dish.svg","fontawesome-solid-satellite":"fontawesome/solid/satellite.svg","fontawesome-solid-scale-balanced":"fontawesome/solid/scale-balanced.svg","fontawesome-solid-scale-unbalanced-flip":"fontawesome/solid/scale-unbalanced-flip.svg","fontawesome-solid-scale-unbalanced":"fontawesome/solid/scale-unbalanced.svg","fontawesome-solid-school-circle-check":"fontawesome/solid/school-circle-check.svg","fontawesome-solid-school-circle-exclamation":"fontawesome/solid/school-circle-exclamation.svg","fontawesome-solid-school-circle-xmark":"fontawesome/solid/school-circle-xmark.svg","fontawesome-solid-school-flag":"fontawesome/solid/school-flag.svg","fontawesome-solid-school-lock":"fontawesome/solid/school-lock.svg","fontawesome-solid-school":"fontawesome/solid/school.svg","fontawesome-solid-scissors":"fontawesome/solid/scissors.svg","fontawesome-solid-screwdriver-wrench":"fontawesome/solid/screwdriver-wrench.svg","fontawesome-solid-screwdriver":"fontawesome/solid/screwdriver.svg","fontawesome-solid-scroll-torah":"fontawesome/solid/scroll-torah.svg","fontawesome-solid-scroll":"fontawesome/solid/scroll.svg","fontawesome-solid-sd-card":"fontawesome/solid/sd-card.svg","fontawesome-solid-section":"fontawesome/solid/section.svg","fontawesome-solid-seedling":"fontawesome/solid/seedling.svg","fontawesome-solid-server":"fontawesome/solid/server.svg","fontawesome-solid-shapes":"fontawesome/solid/shapes.svg","fontawesome-solid-share-from-square":"fontawesome/solid/share-from-square.svg","fontawesome-solid-share-nodes":"fontawesome/solid/share-nodes.svg","fontawesome-solid-share":"fontawesome/solid/share.svg","fontawesome-solid-sheet-plastic":"fontawesome/solid/sheet-plastic.svg","fontawesome-solid-shekel-sign":"fontawesome/solid/shekel-sign.svg","fontawesome-solid-shield-cat":"fontawesome/solid/shield-cat.svg","fontawesome-solid-shield-dog":"fontawesome/solid/shield-dog.svg","fontawesome-solid-shield-halved":"fontawesome/solid/shield-halved.svg","fontawesome-solid-shield-heart":"fontawesome/solid/shield-heart.svg","fontawesome-solid-shield-virus":"fontawesome/solid/shield-virus.svg","fontawesome-solid-shield":"fontawesome/solid/shield.svg","fontawesome-solid-ship":"fontawesome/solid/ship.svg","fontawesome-solid-shirt":"fontawesome/solid/shirt.svg","fontawesome-solid-shoe-prints":"fontawesome/solid/shoe-prints.svg","fontawesome-solid-shop-lock":"fontawesome/solid/shop-lock.svg","fontawesome-solid-shop-slash":"fontawesome/solid/shop-slash.svg","fontawesome-solid-shop":"fontawesome/solid/shop.svg","fontawesome-solid-shower":"fontawesome/solid/shower.svg","fontawesome-solid-shrimp":"fontawesome/solid/shrimp.svg","fontawesome-solid-shuffle":"fontawesome/solid/shuffle.svg","fontawesome-solid-shuttle-space":"fontawesome/solid/shuttle-space.svg","fontawesome-solid-sign-hanging":"fontawesome/solid/sign-hanging.svg","fontawesome-solid-signal":"fontawesome/solid/signal.svg","fontawesome-solid-signature":"fontawesome/solid/signature.svg","fontawesome-solid-signs-post":"fontawesome/solid/signs-post.svg","fontawesome-solid-sim-card":"fontawesome/solid/sim-card.svg","fontawesome-solid-sink":"fontawesome/solid/sink.svg","fontawesome-solid-sitemap":"fontawesome/solid/sitemap.svg","fontawesome-solid-skull-crossbones":"fontawesome/solid/skull-crossbones.svg","fontawesome-solid-skull":"fontawesome/solid/skull.svg","fontawesome-solid-slash":"fontawesome/solid/slash.svg","fontawesome-solid-sleigh":"fontawesome/solid/sleigh.svg","fontawesome-solid-sliders":"fontawesome/solid/sliders.svg","fontawesome-solid-smog":"fontawesome/solid/smog.svg","fontawesome-solid-smoking":"fontawesome/solid/smoking.svg","fontawesome-solid-snowflake":"fontawesome/solid/snowflake.svg","fontawesome-solid-snowman":"fontawesome/solid/snowman.svg","fontawesome-solid-snowplow":"fontawesome/solid/snowplow.svg","fontawesome-solid-soap":"fontawesome/solid/soap.svg","fontawesome-solid-socks":"fontawesome/solid/socks.svg","fontawesome-solid-solar-panel":"fontawesome/solid/solar-panel.svg","fontawesome-solid-sort-down":"fontawesome/solid/sort-down.svg","fontawesome-solid-sort-up":"fontawesome/solid/sort-up.svg","fontawesome-solid-sort":"fontawesome/solid/sort.svg","fontawesome-solid-spa":"fontawesome/solid/spa.svg","fontawesome-solid-spaghetti-monster-flying":"fontawesome/solid/spaghetti-monster-flying.svg","fontawesome-solid-spell-check":"fontawesome/solid/spell-check.svg","fontawesome-solid-spider":"fontawesome/solid/spider.svg","fontawesome-solid-spinner":"fontawesome/solid/spinner.svg","fontawesome-solid-splotch":"fontawesome/solid/splotch.svg","fontawesome-solid-spoon":"fontawesome/solid/spoon.svg","fontawesome-solid-spray-can-sparkles":"fontawesome/solid/spray-can-sparkles.svg","fontawesome-solid-spray-can":"fontawesome/solid/spray-can.svg","fontawesome-solid-square-arrow-up-right":"fontawesome/solid/square-arrow-up-right.svg","fontawesome-solid-square-binary":"fontawesome/solid/square-binary.svg","fontawesome-solid-square-caret-down":"fontawesome/solid/square-caret-down.svg","fontawesome-solid-square-caret-left":"fontawesome/solid/square-caret-left.svg","fontawesome-solid-square-caret-right":"fontawesome/solid/square-caret-right.svg","fontawesome-solid-square-caret-up":"fontawesome/solid/square-caret-up.svg","fontawesome-solid-square-check":"fontawesome/solid/square-check.svg","fontawesome-solid-square-envelope":"fontawesome/solid/square-envelope.svg","fontawesome-solid-square-full":"fontawesome/solid/square-full.svg","fontawesome-solid-square-h":"fontawesome/solid/square-h.svg","fontawesome-solid-square-minus":"fontawesome/solid/square-minus.svg","fontawesome-solid-square-nfi":"fontawesome/solid/square-nfi.svg","fontawesome-solid-square-parking":"fontawesome/solid/square-parking.svg","fontawesome-solid-square-pen":"fontawesome/solid/square-pen.svg","fontawesome-solid-square-person-confined":"fontawesome/solid/square-person-confined.svg","fontawesome-solid-square-phone-flip":"fontawesome/solid/square-phone-flip.svg","fontawesome-solid-square-phone":"fontawesome/solid/square-phone.svg","fontawesome-solid-square-plus":"fontawesome/solid/square-plus.svg","fontawesome-solid-square-poll-horizontal":"fontawesome/solid/square-poll-horizontal.svg","fontawesome-solid-square-poll-vertical":"fontawesome/solid/square-poll-vertical.svg","fontawesome-solid-square-root-variable":"fontawesome/solid/square-root-variable.svg","fontawesome-solid-square-rss":"fontawesome/solid/square-rss.svg","fontawesome-solid-square-share-nodes":"fontawesome/solid/square-share-nodes.svg","fontawesome-solid-square-up-right":"fontawesome/solid/square-up-right.svg","fontawesome-solid-square-virus":"fontawesome/solid/square-virus.svg","fontawesome-solid-square-xmark":"fontawesome/solid/square-xmark.svg","fontawesome-solid-square":"fontawesome/solid/square.svg","fontawesome-solid-staff-snake":"fontawesome/solid/staff-snake.svg","fontawesome-solid-stairs":"fontawesome/solid/stairs.svg","fontawesome-solid-stamp":"fontawesome/solid/stamp.svg","fontawesome-solid-stapler":"fontawesome/solid/stapler.svg","fontawesome-solid-star-and-crescent":"fontawesome/solid/star-and-crescent.svg","fontawesome-solid-star-half-stroke":"fontawesome/solid/star-half-stroke.svg","fontawesome-solid-star-half":"fontawesome/solid/star-half.svg","fontawesome-solid-star-of-david":"fontawesome/solid/star-of-david.svg","fontawesome-solid-star-of-life":"fontawesome/solid/star-of-life.svg","fontawesome-solid-star":"fontawesome/solid/star.svg","fontawesome-solid-sterling-sign":"fontawesome/solid/sterling-sign.svg","fontawesome-solid-stethoscope":"fontawesome/solid/stethoscope.svg","fontawesome-solid-stop":"fontawesome/solid/stop.svg","fontawesome-solid-stopwatch-20":"fontawesome/solid/stopwatch-20.svg","fontawesome-solid-stopwatch":"fontawesome/solid/stopwatch.svg","fontawesome-solid-store-slash":"fontawesome/solid/store-slash.svg","fontawesome-solid-store":"fontawesome/solid/store.svg","fontawesome-solid-street-view":"fontawesome/solid/street-view.svg","fontawesome-solid-strikethrough":"fontawesome/solid/strikethrough.svg","fontawesome-solid-stroopwafel":"fontawesome/solid/stroopwafel.svg","fontawesome-solid-subscript":"fontawesome/solid/subscript.svg","fontawesome-solid-suitcase-medical":"fontawesome/solid/suitcase-medical.svg","fontawesome-solid-suitcase-rolling":"fontawesome/solid/suitcase-rolling.svg","fontawesome-solid-suitcase":"fontawesome/solid/suitcase.svg","fontawesome-solid-sun-plant-wilt":"fontawesome/solid/sun-plant-wilt.svg","fontawesome-solid-sun":"fontawesome/solid/sun.svg","fontawesome-solid-superscript":"fontawesome/solid/superscript.svg","fontawesome-solid-swatchbook":"fontawesome/solid/swatchbook.svg","fontawesome-solid-synagogue":"fontawesome/solid/synagogue.svg","fontawesome-solid-syringe":"fontawesome/solid/syringe.svg","fontawesome-solid-t":"fontawesome/solid/t.svg","fontawesome-solid-table-cells-column-lock":"fontawesome/solid/table-cells-column-lock.svg","fontawesome-solid-table-cells-large":"fontawesome/solid/table-cells-large.svg","fontawesome-solid-table-cells-row-lock":"fontawesome/solid/table-cells-row-lock.svg","fontawesome-solid-table-cells-row-unlock":"fontawesome/solid/table-cells-row-unlock.svg","fontawesome-solid-table-cells":"fontawesome/solid/table-cells.svg","fontawesome-solid-table-columns":"fontawesome/solid/table-columns.svg","fontawesome-solid-table-list":"fontawesome/solid/table-list.svg","fontawesome-solid-table-tennis-paddle-ball":"fontawesome/solid/table-tennis-paddle-ball.svg","fontawesome-solid-table":"fontawesome/solid/table.svg","fontawesome-solid-tablet-button":"fontawesome/solid/tablet-button.svg","fontawesome-solid-tablet-screen-button":"fontawesome/solid/tablet-screen-button.svg","fontawesome-solid-tablet":"fontawesome/solid/tablet.svg","fontawesome-solid-tablets":"fontawesome/solid/tablets.svg","fontawesome-solid-tachograph-digital":"fontawesome/solid/tachograph-digital.svg","fontawesome-solid-tag":"fontawesome/solid/tag.svg","fontawesome-solid-tags":"fontawesome/solid/tags.svg","fontawesome-solid-tape":"fontawesome/solid/tape.svg","fontawesome-solid-tarp-droplet":"fontawesome/solid/tarp-droplet.svg","fontawesome-solid-tarp":"fontawesome/solid/tarp.svg","fontawesome-solid-taxi":"fontawesome/solid/taxi.svg","fontawesome-solid-teeth-open":"fontawesome/solid/teeth-open.svg","fontawesome-solid-teeth":"fontawesome/solid/teeth.svg","fontawesome-solid-temperature-arrow-down":"fontawesome/solid/temperature-arrow-down.svg","fontawesome-solid-temperature-arrow-up":"fontawesome/solid/temperature-arrow-up.svg","fontawesome-solid-temperature-empty":"fontawesome/solid/temperature-empty.svg","fontawesome-solid-temperature-full":"fontawesome/solid/temperature-full.svg","fontawesome-solid-temperature-half":"fontawesome/solid/temperature-half.svg","fontawesome-solid-temperature-high":"fontawesome/solid/temperature-high.svg","fontawesome-solid-temperature-low":"fontawesome/solid/temperature-low.svg","fontawesome-solid-temperature-quarter":"fontawesome/solid/temperature-quarter.svg","fontawesome-solid-temperature-three-quarters":"fontawesome/solid/temperature-three-quarters.svg","fontawesome-solid-tenge-sign":"fontawesome/solid/tenge-sign.svg","fontawesome-solid-tent-arrow-down-to-line":"fontawesome/solid/tent-arrow-down-to-line.svg","fontawesome-solid-tent-arrow-left-right":"fontawesome/solid/tent-arrow-left-right.svg","fontawesome-solid-tent-arrow-turn-left":"fontawesome/solid/tent-arrow-turn-left.svg","fontawesome-solid-tent-arrows-down":"fontawesome/solid/tent-arrows-down.svg","fontawesome-solid-tent":"fontawesome/solid/tent.svg","fontawesome-solid-tents":"fontawesome/solid/tents.svg","fontawesome-solid-terminal":"fontawesome/solid/terminal.svg","fontawesome-solid-text-height":"fontawesome/solid/text-height.svg","fontawesome-solid-text-slash":"fontawesome/solid/text-slash.svg","fontawesome-solid-text-width":"fontawesome/solid/text-width.svg","fontawesome-solid-thermometer":"fontawesome/solid/thermometer.svg","fontawesome-solid-thumbs-down":"fontawesome/solid/thumbs-down.svg","fontawesome-solid-thumbs-up":"fontawesome/solid/thumbs-up.svg","fontawesome-solid-thumbtack-slash":"fontawesome/solid/thumbtack-slash.svg","fontawesome-solid-thumbtack":"fontawesome/solid/thumbtack.svg","fontawesome-solid-ticket-simple":"fontawesome/solid/ticket-simple.svg","fontawesome-solid-ticket":"fontawesome/solid/ticket.svg","fontawesome-solid-timeline":"fontawesome/solid/timeline.svg","fontawesome-solid-toggle-off":"fontawesome/solid/toggle-off.svg","fontawesome-solid-toggle-on":"fontawesome/solid/toggle-on.svg","fontawesome-solid-toilet-paper-slash":"fontawesome/solid/toilet-paper-slash.svg","fontawesome-solid-toilet-paper":"fontawesome/solid/toilet-paper.svg","fontawesome-solid-toilet-portable":"fontawesome/solid/toilet-portable.svg","fontawesome-solid-toilet":"fontawesome/solid/toilet.svg","fontawesome-solid-toilets-portable":"fontawesome/solid/toilets-portable.svg","fontawesome-solid-toolbox":"fontawesome/solid/toolbox.svg","fontawesome-solid-tooth":"fontawesome/solid/tooth.svg","fontawesome-solid-torii-gate":"fontawesome/solid/torii-gate.svg","fontawesome-solid-tornado":"fontawesome/solid/tornado.svg","fontawesome-solid-tower-broadcast":"fontawesome/solid/tower-broadcast.svg","fontawesome-solid-tower-cell":"fontawesome/solid/tower-cell.svg","fontawesome-solid-tower-observation":"fontawesome/solid/tower-observation.svg","fontawesome-solid-tractor":"fontawesome/solid/tractor.svg","fontawesome-solid-trademark":"fontawesome/solid/trademark.svg","fontawesome-solid-traffic-light":"fontawesome/solid/traffic-light.svg","fontawesome-solid-trailer":"fontawesome/solid/trailer.svg","fontawesome-solid-train-subway":"fontawesome/solid/train-subway.svg","fontawesome-solid-train-tram":"fontawesome/solid/train-tram.svg","fontawesome-solid-train":"fontawesome/solid/train.svg","fontawesome-solid-transgender":"fontawesome/solid/transgender.svg","fontawesome-solid-trash-arrow-up":"fontawesome/solid/trash-arrow-up.svg","fontawesome-solid-trash-can-arrow-up":"fontawesome/solid/trash-can-arrow-up.svg","fontawesome-solid-trash-can":"fontawesome/solid/trash-can.svg","fontawesome-solid-trash":"fontawesome/solid/trash.svg","fontawesome-solid-tree-city":"fontawesome/solid/tree-city.svg","fontawesome-solid-tree":"fontawesome/solid/tree.svg","fontawesome-solid-triangle-exclamation":"fontawesome/solid/triangle-exclamation.svg","fontawesome-solid-trophy":"fontawesome/solid/trophy.svg","fontawesome-solid-trowel-bricks":"fontawesome/solid/trowel-bricks.svg","fontawesome-solid-trowel":"fontawesome/solid/trowel.svg","fontawesome-solid-truck-arrow-right":"fontawesome/solid/truck-arrow-right.svg","fontawesome-solid-truck-droplet":"fontawesome/solid/truck-droplet.svg","fontawesome-solid-truck-fast":"fontawesome/solid/truck-fast.svg","fontawesome-solid-truck-field-un":"fontawesome/solid/truck-field-un.svg","fontawesome-solid-truck-field":"fontawesome/solid/truck-field.svg","fontawesome-solid-truck-front":"fontawesome/solid/truck-front.svg","fontawesome-solid-truck-medical":"fontawesome/solid/truck-medical.svg","fontawesome-solid-truck-monster":"fontawesome/solid/truck-monster.svg","fontawesome-solid-truck-moving":"fontawesome/solid/truck-moving.svg","fontawesome-solid-truck-pickup":"fontawesome/solid/truck-pickup.svg","fontawesome-solid-truck-plane":"fontawesome/solid/truck-plane.svg","fontawesome-solid-truck-ramp-box":"fontawesome/solid/truck-ramp-box.svg","fontawesome-solid-truck":"fontawesome/solid/truck.svg","fontawesome-solid-tty":"fontawesome/solid/tty.svg","fontawesome-solid-turkish-lira-sign":"fontawesome/solid/turkish-lira-sign.svg","fontawesome-solid-turn-down":"fontawesome/solid/turn-down.svg","fontawesome-solid-turn-up":"fontawesome/solid/turn-up.svg","fontawesome-solid-tv":"fontawesome/solid/tv.svg","fontawesome-solid-u":"fontawesome/solid/u.svg","fontawesome-solid-umbrella-beach":"fontawesome/solid/umbrella-beach.svg","fontawesome-solid-umbrella":"fontawesome/solid/umbrella.svg","fontawesome-solid-underline":"fontawesome/solid/underline.svg","fontawesome-solid-universal-access":"fontawesome/solid/universal-access.svg","fontawesome-solid-unlock-keyhole":"fontawesome/solid/unlock-keyhole.svg","fontawesome-solid-unlock":"fontawesome/solid/unlock.svg","fontawesome-solid-up-down-left-right":"fontawesome/solid/up-down-left-right.svg","fontawesome-solid-up-down":"fontawesome/solid/up-down.svg","fontawesome-solid-up-long":"fontawesome/solid/up-long.svg","fontawesome-solid-up-right-and-down-left-from-center":"fontawesome/solid/up-right-and-down-left-from-center.svg","fontawesome-solid-up-right-from-square":"fontawesome/solid/up-right-from-square.svg","fontawesome-solid-upload":"fontawesome/solid/upload.svg","fontawesome-solid-user-astronaut":"fontawesome/solid/user-astronaut.svg","fontawesome-solid-user-check":"fontawesome/solid/user-check.svg","fontawesome-solid-user-clock":"fontawesome/solid/user-clock.svg","fontawesome-solid-user-doctor":"fontawesome/solid/user-doctor.svg","fontawesome-solid-user-gear":"fontawesome/solid/user-gear.svg","fontawesome-solid-user-graduate":"fontawesome/solid/user-graduate.svg","fontawesome-solid-user-group":"fontawesome/solid/user-group.svg","fontawesome-solid-user-injured":"fontawesome/solid/user-injured.svg","fontawesome-solid-user-large-slash":"fontawesome/solid/user-large-slash.svg","fontawesome-solid-user-large":"fontawesome/solid/user-large.svg","fontawesome-solid-user-lock":"fontawesome/solid/user-lock.svg","fontawesome-solid-user-minus":"fontawesome/solid/user-minus.svg","fontawesome-solid-user-ninja":"fontawesome/solid/user-ninja.svg","fontawesome-solid-user-nurse":"fontawesome/solid/user-nurse.svg","fontawesome-solid-user-pen":"fontawesome/solid/user-pen.svg","fontawesome-solid-user-plus":"fontawesome/solid/user-plus.svg","fontawesome-solid-user-secret":"fontawesome/solid/user-secret.svg","fontawesome-solid-user-shield":"fontawesome/solid/user-shield.svg","fontawesome-solid-user-slash":"fontawesome/solid/user-slash.svg","fontawesome-solid-user-tag":"fontawesome/solid/user-tag.svg","fontawesome-solid-user-tie":"fontawesome/solid/user-tie.svg","fontawesome-solid-user-xmark":"fontawesome/solid/user-xmark.svg","fontawesome-solid-user":"fontawesome/solid/user.svg","fontawesome-solid-users-between-lines":"fontawesome/solid/users-between-lines.svg","fontawesome-solid-users-gear":"fontawesome/solid/users-gear.svg","fontawesome-solid-users-line":"fontawesome/solid/users-line.svg","fontawesome-solid-users-rays":"fontawesome/solid/users-rays.svg","fontawesome-solid-users-rectangle":"fontawesome/solid/users-rectangle.svg","fontawesome-solid-users-slash":"fontawesome/solid/users-slash.svg","fontawesome-solid-users-viewfinder":"fontawesome/solid/users-viewfinder.svg","fontawesome-solid-users":"fontawesome/solid/users.svg","fontawesome-solid-utensils":"fontawesome/solid/utensils.svg","fontawesome-solid-v":"fontawesome/solid/v.svg","fontawesome-solid-van-shuttle":"fontawesome/solid/van-shuttle.svg","fontawesome-solid-vault":"fontawesome/solid/vault.svg","fontawesome-solid-vector-square":"fontawesome/solid/vector-square.svg","fontawesome-solid-venus-double":"fontawesome/solid/venus-double.svg","fontawesome-solid-venus-mars":"fontawesome/solid/venus-mars.svg","fontawesome-solid-venus":"fontawesome/solid/venus.svg","fontawesome-solid-vest-patches":"fontawesome/solid/vest-patches.svg","fontawesome-solid-vest":"fontawesome/solid/vest.svg","fontawesome-solid-vial-circle-check":"fontawesome/solid/vial-circle-check.svg","fontawesome-solid-vial-virus":"fontawesome/solid/vial-virus.svg","fontawesome-solid-vial":"fontawesome/solid/vial.svg","fontawesome-solid-vials":"fontawesome/solid/vials.svg","fontawesome-solid-video-slash":"fontawesome/solid/video-slash.svg","fontawesome-solid-video":"fontawesome/solid/video.svg","fontawesome-solid-vihara":"fontawesome/solid/vihara.svg","fontawesome-solid-virus-covid-slash":"fontawesome/solid/virus-covid-slash.svg","fontawesome-solid-virus-covid":"fontawesome/solid/virus-covid.svg","fontawesome-solid-virus-slash":"fontawesome/solid/virus-slash.svg","fontawesome-solid-virus":"fontawesome/solid/virus.svg","fontawesome-solid-viruses":"fontawesome/solid/viruses.svg","fontawesome-solid-voicemail":"fontawesome/solid/voicemail.svg","fontawesome-solid-volcano":"fontawesome/solid/volcano.svg","fontawesome-solid-volleyball":"fontawesome/solid/volleyball.svg","fontawesome-solid-volume-high":"fontawesome/solid/volume-high.svg","fontawesome-solid-volume-low":"fontawesome/solid/volume-low.svg","fontawesome-solid-volume-off":"fontawesome/solid/volume-off.svg","fontawesome-solid-volume-xmark":"fontawesome/solid/volume-xmark.svg","fontawesome-solid-vr-cardboard":"fontawesome/solid/vr-cardboard.svg","fontawesome-solid-w":"fontawesome/solid/w.svg","fontawesome-solid-walkie-talkie":"fontawesome/solid/walkie-talkie.svg","fontawesome-solid-wallet":"fontawesome/solid/wallet.svg","fontawesome-solid-wand-magic-sparkles":"fontawesome/solid/wand-magic-sparkles.svg","fontawesome-solid-wand-magic":"fontawesome/solid/wand-magic.svg","fontawesome-solid-wand-sparkles":"fontawesome/solid/wand-sparkles.svg","fontawesome-solid-warehouse":"fontawesome/solid/warehouse.svg","fontawesome-solid-water-ladder":"fontawesome/solid/water-ladder.svg","fontawesome-solid-water":"fontawesome/solid/water.svg","fontawesome-solid-wave-square":"fontawesome/solid/wave-square.svg","fontawesome-solid-web-awesome":"fontawesome/solid/web-awesome.svg","fontawesome-solid-weight-hanging":"fontawesome/solid/weight-hanging.svg","fontawesome-solid-weight-scale":"fontawesome/solid/weight-scale.svg","fontawesome-solid-wheat-awn-circle-exclamation":"fontawesome/solid/wheat-awn-circle-exclamation.svg","fontawesome-solid-wheat-awn":"fontawesome/solid/wheat-awn.svg","fontawesome-solid-wheelchair-move":"fontawesome/solid/wheelchair-move.svg","fontawesome-solid-wheelchair":"fontawesome/solid/wheelchair.svg","fontawesome-solid-whiskey-glass":"fontawesome/solid/whiskey-glass.svg","fontawesome-solid-wifi":"fontawesome/solid/wifi.svg","fontawesome-solid-wind":"fontawesome/solid/wind.svg","fontawesome-solid-window-maximize":"fontawesome/solid/window-maximize.svg","fontawesome-solid-window-minimize":"fontawesome/solid/window-minimize.svg","fontawesome-solid-window-restore":"fontawesome/solid/window-restore.svg","fontawesome-solid-wine-bottle":"fontawesome/solid/wine-bottle.svg","fontawesome-solid-wine-glass-empty":"fontawesome/solid/wine-glass-empty.svg","fontawesome-solid-wine-glass":"fontawesome/solid/wine-glass.svg","fontawesome-solid-won-sign":"fontawesome/solid/won-sign.svg","fontawesome-solid-worm":"fontawesome/solid/worm.svg","fontawesome-solid-wrench":"fontawesome/solid/wrench.svg","fontawesome-solid-x-ray":"fontawesome/solid/x-ray.svg","fontawesome-solid-x":"fontawesome/solid/x.svg","fontawesome-solid-xmark":"fontawesome/solid/xmark.svg","fontawesome-solid-xmarks-lines":"fontawesome/solid/xmarks-lines.svg","fontawesome-solid-y":"fontawesome/solid/y.svg","fontawesome-solid-yen-sign":"fontawesome/solid/yen-sign.svg","fontawesome-solid-yin-yang":"fontawesome/solid/yin-yang.svg","fontawesome-solid-z":"fontawesome/solid/z.svg","logo-monochrome":"logo-monochrome.svg","logo":"logo.svg","material-ab-testing":"material/ab-testing.svg","material-abacus":"material/abacus.svg","material-abjad-arabic":"material/abjad-arabic.svg","material-abjad-hebrew":"material/abjad-hebrew.svg","material-abugida-devanagari":"material/abugida-devanagari.svg","material-abugida-thai":"material/abugida-thai.svg","material-access-point-check":"material/access-point-check.svg","material-access-point-minus":"material/access-point-minus.svg","material-access-point-network-off":"material/access-point-network-off.svg","material-access-point-network":"material/access-point-network.svg","material-access-point-off":"material/access-point-off.svg","material-access-point-plus":"material/access-point-plus.svg","material-access-point-remove":"material/access-point-remove.svg","material-access-point":"material/access-point.svg","material-account-alert-outline":"material/account-alert-outline.svg","material-account-alert":"material/account-alert.svg","material-account-arrow-down-outline":"material/account-arrow-down-outline.svg","material-account-arrow-down":"material/account-arrow-down.svg","material-account-arrow-left-outline":"material/account-arrow-left-outline.svg","material-account-arrow-left":"material/account-arrow-left.svg","material-account-arrow-right-outline":"material/account-arrow-right-outline.svg","material-account-arrow-right":"material/account-arrow-right.svg","material-account-arrow-up-outline":"material/account-arrow-up-outline.svg","material-account-arrow-up":"material/account-arrow-up.svg","material-account-badge-outline":"material/account-badge-outline.svg","material-account-badge":"material/account-badge.svg","material-account-box-edit-outline":"material/account-box-edit-outline.svg","material-account-box-minus-outline":"material/account-box-minus-outline.svg","material-account-box-multiple-outline":"material/account-box-multiple-outline.svg","material-account-box-multiple":"material/account-box-multiple.svg","material-account-box-outline":"material/account-box-outline.svg","material-account-box-plus-outline":"material/account-box-plus-outline.svg","material-account-box":"material/account-box.svg","material-account-cancel-outline":"material/account-cancel-outline.svg","material-account-cancel":"material/account-cancel.svg","material-account-card-outline":"material/account-card-outline.svg","material-account-card":"material/account-card.svg","material-account-cash-outline":"material/account-cash-outline.svg","material-account-cash":"material/account-cash.svg","material-account-check-outline":"material/account-check-outline.svg","material-account-check":"material/account-check.svg","material-account-child-circle":"material/account-child-circle.svg","material-account-child-outline":"material/account-child-outline.svg","material-account-child":"material/account-child.svg","material-account-circle-outline":"material/account-circle-outline.svg","material-account-circle":"material/account-circle.svg","material-account-clock-outline":"material/account-clock-outline.svg","material-account-clock":"material/account-clock.svg","material-account-cog-outline":"material/account-cog-outline.svg","material-account-cog":"material/account-cog.svg","material-account-convert-outline":"material/account-convert-outline.svg","material-account-convert":"material/account-convert.svg","material-account-cowboy-hat-outline":"material/account-cowboy-hat-outline.svg","material-account-cowboy-hat":"material/account-cowboy-hat.svg","material-account-credit-card-outline":"material/account-credit-card-outline.svg","material-account-credit-card":"material/account-credit-card.svg","material-account-details-outline":"material/account-details-outline.svg","material-account-details":"material/account-details.svg","material-account-edit-outline":"material/account-edit-outline.svg","material-account-edit":"material/account-edit.svg","material-account-eye-outline":"material/account-eye-outline.svg","material-account-eye":"material/account-eye.svg","material-account-file-outline":"material/account-file-outline.svg","material-account-file-text-outline":"material/account-file-text-outline.svg","material-account-file-text":"material/account-file-text.svg","material-account-file":"material/account-file.svg","material-account-filter-outline":"material/account-filter-outline.svg","material-account-filter":"material/account-filter.svg","material-account-group-outline":"material/account-group-outline.svg","material-account-group":"material/account-group.svg","material-account-hard-hat-outline":"material/account-hard-hat-outline.svg","material-account-hard-hat":"material/account-hard-hat.svg","material-account-heart-outline":"material/account-heart-outline.svg","material-account-heart":"material/account-heart.svg","material-account-injury-outline":"material/account-injury-outline.svg","material-account-injury":"material/account-injury.svg","material-account-key-outline":"material/account-key-outline.svg","material-account-key":"material/account-key.svg","material-account-lock-open-outline":"material/account-lock-open-outline.svg","material-account-lock-open":"material/account-lock-open.svg","material-account-lock-outline":"material/account-lock-outline.svg","material-account-lock":"material/account-lock.svg","material-account-minus-outline":"material/account-minus-outline.svg","material-account-minus":"material/account-minus.svg","material-account-multiple-check-outline":"material/account-multiple-check-outline.svg","material-account-multiple-check":"material/account-multiple-check.svg","material-account-multiple-minus-outline":"material/account-multiple-minus-outline.svg","material-account-multiple-minus":"material/account-multiple-minus.svg","material-account-multiple-outline":"material/account-multiple-outline.svg","material-account-multiple-plus-outline":"material/account-multiple-plus-outline.svg","material-account-multiple-plus":"material/account-multiple-plus.svg","material-account-multiple-remove-outline":"material/account-multiple-remove-outline.svg","material-account-multiple-remove":"material/account-multiple-remove.svg","material-account-multiple":"material/account-multiple.svg","material-account-music-outline":"material/account-music-outline.svg","material-account-music":"material/account-music.svg","material-account-network-off-outline":"material/account-network-off-outline.svg","material-account-network-off":"material/account-network-off.svg","material-account-network-outline":"material/account-network-outline.svg","material-account-network":"material/account-network.svg","material-account-off-outline":"material/account-off-outline.svg","material-account-off":"material/account-off.svg","material-account-outline":"material/account-outline.svg","material-account-plus-outline":"material/account-plus-outline.svg","material-account-plus":"material/account-plus.svg","material-account-question-outline":"material/account-question-outline.svg","material-account-question":"material/account-question.svg","material-account-reactivate-outline":"material/account-reactivate-outline.svg","material-account-reactivate":"material/account-reactivate.svg","material-account-remove-outline":"material/account-remove-outline.svg","material-account-remove":"material/account-remove.svg","material-account-school-outline":"material/account-school-outline.svg","material-account-school":"material/account-school.svg","material-account-search-outline":"material/account-search-outline.svg","material-account-search":"material/account-search.svg","material-account-settings-outline":"material/account-settings-outline.svg","material-account-settings":"material/account-settings.svg","material-account-star-outline":"material/account-star-outline.svg","material-account-star":"material/account-star.svg","material-account-supervisor-circle-outline":"material/account-supervisor-circle-outline.svg","material-account-supervisor-circle":"material/account-supervisor-circle.svg","material-account-supervisor-outline":"material/account-supervisor-outline.svg","material-account-supervisor":"material/account-supervisor.svg","material-account-switch-outline":"material/account-switch-outline.svg","material-account-switch":"material/account-switch.svg","material-account-sync-outline":"material/account-sync-outline.svg","material-account-sync":"material/account-sync.svg","material-account-tag-outline":"material/account-tag-outline.svg","material-account-tag":"material/account-tag.svg","material-account-tie-hat-outline":"material/account-tie-hat-outline.svg","material-account-tie-hat":"material/account-tie-hat.svg","material-account-tie-outline":"material/account-tie-outline.svg","material-account-tie-voice-off-outline":"material/account-tie-voice-off-outline.svg","material-account-tie-voice-off":"material/account-tie-voice-off.svg","material-account-tie-voice-outline":"material/account-tie-voice-outline.svg","material-account-tie-voice":"material/account-tie-voice.svg","material-account-tie-woman":"material/account-tie-woman.svg","material-account-tie":"material/account-tie.svg","material-account-voice-off":"material/account-voice-off.svg","material-account-voice":"material/account-voice.svg","material-account-wrench-outline":"material/account-wrench-outline.svg","material-account-wrench":"material/account-wrench.svg","material-account":"material/account.svg","material-adjust":"material/adjust.svg","material-advertisements-off":"material/advertisements-off.svg","material-advertisements":"material/advertisements.svg","material-air-conditioner":"material/air-conditioner.svg","material-air-filter":"material/air-filter.svg","material-air-horn":"material/air-horn.svg","material-air-humidifier-off":"material/air-humidifier-off.svg","material-air-humidifier":"material/air-humidifier.svg","material-air-purifier-off":"material/air-purifier-off.svg","material-air-purifier":"material/air-purifier.svg","material-airbag":"material/airbag.svg","material-airballoon-outline":"material/airballoon-outline.svg","material-airballoon":"material/airballoon.svg","material-airplane-alert":"material/airplane-alert.svg","material-airplane-check":"material/airplane-check.svg","material-airplane-clock":"material/airplane-clock.svg","material-airplane-cog":"material/airplane-cog.svg","material-airplane-edit":"material/airplane-edit.svg","material-airplane-landing":"material/airplane-landing.svg","material-airplane-marker":"material/airplane-marker.svg","material-airplane-minus":"material/airplane-minus.svg","material-airplane-off":"material/airplane-off.svg","material-airplane-plus":"material/airplane-plus.svg","material-airplane-remove":"material/airplane-remove.svg","material-airplane-search":"material/airplane-search.svg","material-airplane-settings":"material/airplane-settings.svg","material-airplane-takeoff":"material/airplane-takeoff.svg","material-airplane":"material/airplane.svg","material-airport":"material/airport.svg","material-alarm-bell":"material/alarm-bell.svg","material-alarm-check":"material/alarm-check.svg","material-alarm-light-off-outline":"material/alarm-light-off-outline.svg","material-alarm-light-off":"material/alarm-light-off.svg","material-alarm-light-outline":"material/alarm-light-outline.svg","material-alarm-light":"material/alarm-light.svg","material-alarm-multiple":"material/alarm-multiple.svg","material-alarm-note-off":"material/alarm-note-off.svg","material-alarm-note":"material/alarm-note.svg","material-alarm-off":"material/alarm-off.svg","material-alarm-panel-outline":"material/alarm-panel-outline.svg","material-alarm-panel":"material/alarm-panel.svg","material-alarm-plus":"material/alarm-plus.svg","material-alarm-snooze":"material/alarm-snooze.svg","material-alarm":"material/alarm.svg","material-album":"material/album.svg","material-alert-box-outline":"material/alert-box-outline.svg","material-alert-box":"material/alert-box.svg","material-alert-circle-check-outline":"material/alert-circle-check-outline.svg","material-alert-circle-check":"material/alert-circle-check.svg","material-alert-circle-outline":"material/alert-circle-outline.svg","material-alert-circle":"material/alert-circle.svg","material-alert-decagram-outline":"material/alert-decagram-outline.svg","material-alert-decagram":"material/alert-decagram.svg","material-alert-minus-outline":"material/alert-minus-outline.svg","material-alert-minus":"material/alert-minus.svg","material-alert-octagon-outline":"material/alert-octagon-outline.svg","material-alert-octagon":"material/alert-octagon.svg","material-alert-octagram-outline":"material/alert-octagram-outline.svg","material-alert-octagram":"material/alert-octagram.svg","material-alert-outline":"material/alert-outline.svg","material-alert-plus-outline":"material/alert-plus-outline.svg","material-alert-plus":"material/alert-plus.svg","material-alert-remove-outline":"material/alert-remove-outline.svg","material-alert-remove":"material/alert-remove.svg","material-alert-rhombus-outline":"material/alert-rhombus-outline.svg","material-alert-rhombus":"material/alert-rhombus.svg","material-alert":"material/alert.svg","material-alien-outline":"material/alien-outline.svg","material-alien":"material/alien.svg","material-align-horizontal-center":"material/align-horizontal-center.svg","material-align-horizontal-distribute":"material/align-horizontal-distribute.svg","material-align-horizontal-left":"material/align-horizontal-left.svg","material-align-horizontal-right":"material/align-horizontal-right.svg","material-align-vertical-bottom":"material/align-vertical-bottom.svg","material-align-vertical-center":"material/align-vertical-center.svg","material-align-vertical-distribute":"material/align-vertical-distribute.svg","material-align-vertical-top":"material/align-vertical-top.svg","material-all-inclusive-box-outline":"material/all-inclusive-box-outline.svg","material-all-inclusive-box":"material/all-inclusive-box.svg","material-all-inclusive":"material/all-inclusive.svg","material-allergy":"material/allergy.svg","material-alpha-a-box-outline":"material/alpha-a-box-outline.svg","material-alpha-a-box":"material/alpha-a-box.svg","material-alpha-a-circle-outline":"material/alpha-a-circle-outline.svg","material-alpha-a-circle":"material/alpha-a-circle.svg","material-alpha-a":"material/alpha-a.svg","material-alpha-b-box-outline":"material/alpha-b-box-outline.svg","material-alpha-b-box":"material/alpha-b-box.svg","material-alpha-b-circle-outline":"material/alpha-b-circle-outline.svg","material-alpha-b-circle":"material/alpha-b-circle.svg","material-alpha-b":"material/alpha-b.svg","material-alpha-c-box-outline":"material/alpha-c-box-outline.svg","material-alpha-c-box":"material/alpha-c-box.svg","material-alpha-c-circle-outline":"material/alpha-c-circle-outline.svg","material-alpha-c-circle":"material/alpha-c-circle.svg","material-alpha-c":"material/alpha-c.svg","material-alpha-d-box-outline":"material/alpha-d-box-outline.svg","material-alpha-d-box":"material/alpha-d-box.svg","material-alpha-d-circle-outline":"material/alpha-d-circle-outline.svg","material-alpha-d-circle":"material/alpha-d-circle.svg","material-alpha-d":"material/alpha-d.svg","material-alpha-e-box-outline":"material/alpha-e-box-outline.svg","material-alpha-e-box":"material/alpha-e-box.svg","material-alpha-e-circle-outline":"material/alpha-e-circle-outline.svg","material-alpha-e-circle":"material/alpha-e-circle.svg","material-alpha-e":"material/alpha-e.svg","material-alpha-f-box-outline":"material/alpha-f-box-outline.svg","material-alpha-f-box":"material/alpha-f-box.svg","material-alpha-f-circle-outline":"material/alpha-f-circle-outline.svg","material-alpha-f-circle":"material/alpha-f-circle.svg","material-alpha-f":"material/alpha-f.svg","material-alpha-g-box-outline":"material/alpha-g-box-outline.svg","material-alpha-g-box":"material/alpha-g-box.svg","material-alpha-g-circle-outline":"material/alpha-g-circle-outline.svg","material-alpha-g-circle":"material/alpha-g-circle.svg","material-alpha-g":"material/alpha-g.svg","material-alpha-h-box-outline":"material/alpha-h-box-outline.svg","material-alpha-h-box":"material/alpha-h-box.svg","material-alpha-h-circle-outline":"material/alpha-h-circle-outline.svg","material-alpha-h-circle":"material/alpha-h-circle.svg","material-alpha-h":"material/alpha-h.svg","material-alpha-i-box-outline":"material/alpha-i-box-outline.svg","material-alpha-i-box":"material/alpha-i-box.svg","material-alpha-i-circle-outline":"material/alpha-i-circle-outline.svg","material-alpha-i-circle":"material/alpha-i-circle.svg","material-alpha-i":"material/alpha-i.svg","material-alpha-j-box-outline":"material/alpha-j-box-outline.svg","material-alpha-j-box":"material/alpha-j-box.svg","material-alpha-j-circle-outline":"material/alpha-j-circle-outline.svg","material-alpha-j-circle":"material/alpha-j-circle.svg","material-alpha-j":"material/alpha-j.svg","material-alpha-k-box-outline":"material/alpha-k-box-outline.svg","material-alpha-k-box":"material/alpha-k-box.svg","material-alpha-k-circle-outline":"material/alpha-k-circle-outline.svg","material-alpha-k-circle":"material/alpha-k-circle.svg","material-alpha-k":"material/alpha-k.svg","material-alpha-l-box-outline":"material/alpha-l-box-outline.svg","material-alpha-l-box":"material/alpha-l-box.svg","material-alpha-l-circle-outline":"material/alpha-l-circle-outline.svg","material-alpha-l-circle":"material/alpha-l-circle.svg","material-alpha-l":"material/alpha-l.svg","material-alpha-m-box-outline":"material/alpha-m-box-outline.svg","material-alpha-m-box":"material/alpha-m-box.svg","material-alpha-m-circle-outline":"material/alpha-m-circle-outline.svg","material-alpha-m-circle":"material/alpha-m-circle.svg","material-alpha-m":"material/alpha-m.svg","material-alpha-n-box-outline":"material/alpha-n-box-outline.svg","material-alpha-n-box":"material/alpha-n-box.svg","material-alpha-n-circle-outline":"material/alpha-n-circle-outline.svg","material-alpha-n-circle":"material/alpha-n-circle.svg","material-alpha-n":"material/alpha-n.svg","material-alpha-o-box-outline":"material/alpha-o-box-outline.svg","material-alpha-o-box":"material/alpha-o-box.svg","material-alpha-o-circle-outline":"material/alpha-o-circle-outline.svg","material-alpha-o-circle":"material/alpha-o-circle.svg","material-alpha-o":"material/alpha-o.svg","material-alpha-p-box-outline":"material/alpha-p-box-outline.svg","material-alpha-p-box":"material/alpha-p-box.svg","material-alpha-p-circle-outline":"material/alpha-p-circle-outline.svg","material-alpha-p-circle":"material/alpha-p-circle.svg","material-alpha-p":"material/alpha-p.svg","material-alpha-q-box-outline":"material/alpha-q-box-outline.svg","material-alpha-q-box":"material/alpha-q-box.svg","material-alpha-q-circle-outline":"material/alpha-q-circle-outline.svg","material-alpha-q-circle":"material/alpha-q-circle.svg","material-alpha-q":"material/alpha-q.svg","material-alpha-r-box-outline":"material/alpha-r-box-outline.svg","material-alpha-r-box":"material/alpha-r-box.svg","material-alpha-r-circle-outline":"material/alpha-r-circle-outline.svg","material-alpha-r-circle":"material/alpha-r-circle.svg","material-alpha-r":"material/alpha-r.svg","material-alpha-s-box-outline":"material/alpha-s-box-outline.svg","material-alpha-s-box":"material/alpha-s-box.svg","material-alpha-s-circle-outline":"material/alpha-s-circle-outline.svg","material-alpha-s-circle":"material/alpha-s-circle.svg","material-alpha-s":"material/alpha-s.svg","material-alpha-t-box-outline":"material/alpha-t-box-outline.svg","material-alpha-t-box":"material/alpha-t-box.svg","material-alpha-t-circle-outline":"material/alpha-t-circle-outline.svg","material-alpha-t-circle":"material/alpha-t-circle.svg","material-alpha-t":"material/alpha-t.svg","material-alpha-u-box-outline":"material/alpha-u-box-outline.svg","material-alpha-u-box":"material/alpha-u-box.svg","material-alpha-u-circle-outline":"material/alpha-u-circle-outline.svg","material-alpha-u-circle":"material/alpha-u-circle.svg","material-alpha-u":"material/alpha-u.svg","material-alpha-v-box-outline":"material/alpha-v-box-outline.svg","material-alpha-v-box":"material/alpha-v-box.svg","material-alpha-v-circle-outline":"material/alpha-v-circle-outline.svg","material-alpha-v-circle":"material/alpha-v-circle.svg","material-alpha-v":"material/alpha-v.svg","material-alpha-w-box-outline":"material/alpha-w-box-outline.svg","material-alpha-w-box":"material/alpha-w-box.svg","material-alpha-w-circle-outline":"material/alpha-w-circle-outline.svg","material-alpha-w-circle":"material/alpha-w-circle.svg","material-alpha-w":"material/alpha-w.svg","material-alpha-x-box-outline":"material/alpha-x-box-outline.svg","material-alpha-x-box":"material/alpha-x-box.svg","material-alpha-x-circle-outline":"material/alpha-x-circle-outline.svg","material-alpha-x-circle":"material/alpha-x-circle.svg","material-alpha-x":"material/alpha-x.svg","material-alpha-y-box-outline":"material/alpha-y-box-outline.svg","material-alpha-y-box":"material/alpha-y-box.svg","material-alpha-y-circle-outline":"material/alpha-y-circle-outline.svg","material-alpha-y-circle":"material/alpha-y-circle.svg","material-alpha-y":"material/alpha-y.svg","material-alpha-z-box-outline":"material/alpha-z-box-outline.svg","material-alpha-z-box":"material/alpha-z-box.svg","material-alpha-z-circle-outline":"material/alpha-z-circle-outline.svg","material-alpha-z-circle":"material/alpha-z-circle.svg","material-alpha-z":"material/alpha-z.svg","material-alpha":"material/alpha.svg","material-alphabet-aurebesh":"material/alphabet-aurebesh.svg","material-alphabet-cyrillic":"material/alphabet-cyrillic.svg","material-alphabet-greek":"material/alphabet-greek.svg","material-alphabet-latin":"material/alphabet-latin.svg","material-alphabet-piqad":"material/alphabet-piqad.svg","material-alphabet-tengwar":"material/alphabet-tengwar.svg","material-alphabetical-off":"material/alphabetical-off.svg","material-alphabetical-variant-off":"material/alphabetical-variant-off.svg","material-alphabetical-variant":"material/alphabetical-variant.svg","material-alphabetical":"material/alphabetical.svg","material-altimeter":"material/altimeter.svg","material-ambulance":"material/ambulance.svg","material-ammunition":"material/ammunition.svg","material-ampersand":"material/ampersand.svg","material-amplifier-off":"material/amplifier-off.svg","material-amplifier":"material/amplifier.svg","material-anchor":"material/anchor.svg","material-android-studio":"material/android-studio.svg","material-android":"material/android.svg","material-angle-acute":"material/angle-acute.svg","material-angle-obtuse":"material/angle-obtuse.svg","material-angle-right":"material/angle-right.svg","material-angular":"material/angular.svg","material-angularjs":"material/angularjs.svg","material-animation-outline":"material/animation-outline.svg","material-animation-play-outline":"material/animation-play-outline.svg","material-animation-play":"material/animation-play.svg","material-animation":"material/animation.svg","material-ansible":"material/ansible.svg","material-antenna":"material/antenna.svg","material-anvil":"material/anvil.svg","material-apache-kafka":"material/apache-kafka.svg","material-api-off":"material/api-off.svg","material-api":"material/api.svg","material-apple-finder":"material/apple-finder.svg","material-apple-icloud":"material/apple-icloud.svg","material-apple-ios":"material/apple-ios.svg","material-apple-keyboard-caps":"material/apple-keyboard-caps.svg","material-apple-keyboard-command":"material/apple-keyboard-command.svg","material-apple-keyboard-control":"material/apple-keyboard-control.svg","material-apple-keyboard-option":"material/apple-keyboard-option.svg","material-apple-keyboard-shift":"material/apple-keyboard-shift.svg","material-apple-safari":"material/apple-safari.svg","material-apple":"material/apple.svg","material-application-array-outline":"material/application-array-outline.svg","material-application-array":"material/application-array.svg","material-application-braces-outline":"material/application-braces-outline.svg","material-application-braces":"material/application-braces.svg","material-application-brackets-outline":"material/application-brackets-outline.svg","material-application-brackets":"material/application-brackets.svg","material-application-cog-outline":"material/application-cog-outline.svg","material-application-cog":"material/application-cog.svg","material-application-edit-outline":"material/application-edit-outline.svg","material-application-edit":"material/application-edit.svg","material-application-export":"material/application-export.svg","material-application-import":"material/application-import.svg","material-application-outline":"material/application-outline.svg","material-application-parentheses-outline":"material/application-parentheses-outline.svg","material-application-parentheses":"material/application-parentheses.svg","material-application-settings-outline":"material/application-settings-outline.svg","material-application-settings":"material/application-settings.svg","material-application-variable-outline":"material/application-variable-outline.svg","material-application-variable":"material/application-variable.svg","material-application":"material/application.svg","material-approximately-equal-box":"material/approximately-equal-box.svg","material-approximately-equal":"material/approximately-equal.svg","material-apps-box":"material/apps-box.svg","material-apps":"material/apps.svg","material-arch":"material/arch.svg","material-archive-alert-outline":"material/archive-alert-outline.svg","material-archive-alert":"material/archive-alert.svg","material-archive-arrow-down-outline":"material/archive-arrow-down-outline.svg","material-archive-arrow-down":"material/archive-arrow-down.svg","material-archive-arrow-up-outline":"material/archive-arrow-up-outline.svg","material-archive-arrow-up":"material/archive-arrow-up.svg","material-archive-cancel-outline":"material/archive-cancel-outline.svg","material-archive-cancel":"material/archive-cancel.svg","material-archive-check-outline":"material/archive-check-outline.svg","material-archive-check":"material/archive-check.svg","material-archive-clock-outline":"material/archive-clock-outline.svg","material-archive-clock":"material/archive-clock.svg","material-archive-cog-outline":"material/archive-cog-outline.svg","material-archive-cog":"material/archive-cog.svg","material-archive-edit-outline":"material/archive-edit-outline.svg","material-archive-edit":"material/archive-edit.svg","material-archive-eye-outline":"material/archive-eye-outline.svg","material-archive-eye":"material/archive-eye.svg","material-archive-lock-open-outline":"material/archive-lock-open-outline.svg","material-archive-lock-open":"material/archive-lock-open.svg","material-archive-lock-outline":"material/archive-lock-outline.svg","material-archive-lock":"material/archive-lock.svg","material-archive-marker-outline":"material/archive-marker-outline.svg","material-archive-marker":"material/archive-marker.svg","material-archive-minus-outline":"material/archive-minus-outline.svg","material-archive-minus":"material/archive-minus.svg","material-archive-music-outline":"material/archive-music-outline.svg","material-archive-music":"material/archive-music.svg","material-archive-off-outline":"material/archive-off-outline.svg","material-archive-off":"material/archive-off.svg","material-archive-outline":"material/archive-outline.svg","material-archive-plus-outline":"material/archive-plus-outline.svg","material-archive-plus":"material/archive-plus.svg","material-archive-refresh-outline":"material/archive-refresh-outline.svg","material-archive-refresh":"material/archive-refresh.svg","material-archive-remove-outline":"material/archive-remove-outline.svg","material-archive-remove":"material/archive-remove.svg","material-archive-search-outline":"material/archive-search-outline.svg","material-archive-search":"material/archive-search.svg","material-archive-settings-outline":"material/archive-settings-outline.svg","material-archive-settings":"material/archive-settings.svg","material-archive-star-outline":"material/archive-star-outline.svg","material-archive-star":"material/archive-star.svg","material-archive-sync-outline":"material/archive-sync-outline.svg","material-archive-sync":"material/archive-sync.svg","material-archive":"material/archive.svg","material-arm-flex-outline":"material/arm-flex-outline.svg","material-arm-flex":"material/arm-flex.svg","material-arrange-bring-forward":"material/arrange-bring-forward.svg","material-arrange-bring-to-front":"material/arrange-bring-to-front.svg","material-arrange-send-backward":"material/arrange-send-backward.svg","material-arrange-send-to-back":"material/arrange-send-to-back.svg","material-arrow-all":"material/arrow-all.svg","material-arrow-bottom-left-bold-box-outline":"material/arrow-bottom-left-bold-box-outline.svg","material-arrow-bottom-left-bold-box":"material/arrow-bottom-left-bold-box.svg","material-arrow-bottom-left-bold-outline":"material/arrow-bottom-left-bold-outline.svg","material-arrow-bottom-left-thick":"material/arrow-bottom-left-thick.svg","material-arrow-bottom-left-thin-circle-outline":"material/arrow-bottom-left-thin-circle-outline.svg","material-arrow-bottom-left-thin":"material/arrow-bottom-left-thin.svg","material-arrow-bottom-left":"material/arrow-bottom-left.svg","material-arrow-bottom-right-bold-box-outline":"material/arrow-bottom-right-bold-box-outline.svg","material-arrow-bottom-right-bold-box":"material/arrow-bottom-right-bold-box.svg","material-arrow-bottom-right-bold-outline":"material/arrow-bottom-right-bold-outline.svg","material-arrow-bottom-right-thick":"material/arrow-bottom-right-thick.svg","material-arrow-bottom-right-thin-circle-outline":"material/arrow-bottom-right-thin-circle-outline.svg","material-arrow-bottom-right-thin":"material/arrow-bottom-right-thin.svg","material-arrow-bottom-right":"material/arrow-bottom-right.svg","material-arrow-collapse-all":"material/arrow-collapse-all.svg","material-arrow-collapse-down":"material/arrow-collapse-down.svg","material-arrow-collapse-horizontal":"material/arrow-collapse-horizontal.svg","material-arrow-collapse-left":"material/arrow-collapse-left.svg","material-arrow-collapse-right":"material/arrow-collapse-right.svg","material-arrow-collapse-up":"material/arrow-collapse-up.svg","material-arrow-collapse-vertical":"material/arrow-collapse-vertical.svg","material-arrow-collapse":"material/arrow-collapse.svg","material-arrow-decision-auto-outline":"material/arrow-decision-auto-outline.svg","material-arrow-decision-auto":"material/arrow-decision-auto.svg","material-arrow-decision-outline":"material/arrow-decision-outline.svg","material-arrow-decision":"material/arrow-decision.svg","material-arrow-down-bold-box-outline":"material/arrow-down-bold-box-outline.svg","material-arrow-down-bold-box":"material/arrow-down-bold-box.svg","material-arrow-down-bold-circle-outline":"material/arrow-down-bold-circle-outline.svg","material-arrow-down-bold-circle":"material/arrow-down-bold-circle.svg","material-arrow-down-bold-hexagon-outline":"material/arrow-down-bold-hexagon-outline.svg","material-arrow-down-bold-outline":"material/arrow-down-bold-outline.svg","material-arrow-down-bold":"material/arrow-down-bold.svg","material-arrow-down-box":"material/arrow-down-box.svg","material-arrow-down-circle-outline":"material/arrow-down-circle-outline.svg","material-arrow-down-circle":"material/arrow-down-circle.svg","material-arrow-down-drop-circle-outline":"material/arrow-down-drop-circle-outline.svg","material-arrow-down-drop-circle":"material/arrow-down-drop-circle.svg","material-arrow-down-left-bold":"material/arrow-down-left-bold.svg","material-arrow-down-left":"material/arrow-down-left.svg","material-arrow-down-right-bold":"material/arrow-down-right-bold.svg","material-arrow-down-right":"material/arrow-down-right.svg","material-arrow-down-thick":"material/arrow-down-thick.svg","material-arrow-down-thin-circle-outline":"material/arrow-down-thin-circle-outline.svg","material-arrow-down-thin":"material/arrow-down-thin.svg","material-arrow-down":"material/arrow-down.svg","material-arrow-expand-all":"material/arrow-expand-all.svg","material-arrow-expand-down":"material/arrow-expand-down.svg","material-arrow-expand-horizontal":"material/arrow-expand-horizontal.svg","material-arrow-expand-left":"material/arrow-expand-left.svg","material-arrow-expand-right":"material/arrow-expand-right.svg","material-arrow-expand-up":"material/arrow-expand-up.svg","material-arrow-expand-vertical":"material/arrow-expand-vertical.svg","material-arrow-expand":"material/arrow-expand.svg","material-arrow-horizontal-lock":"material/arrow-horizontal-lock.svg","material-arrow-left-bold-box-outline":"material/arrow-left-bold-box-outline.svg","material-arrow-left-bold-box":"material/arrow-left-bold-box.svg","material-arrow-left-bold-circle-outline":"material/arrow-left-bold-circle-outline.svg","material-arrow-left-bold-circle":"material/arrow-left-bold-circle.svg","material-arrow-left-bold-hexagon-outline":"material/arrow-left-bold-hexagon-outline.svg","material-arrow-left-bold-outline":"material/arrow-left-bold-outline.svg","material-arrow-left-bold":"material/arrow-left-bold.svg","material-arrow-left-bottom-bold":"material/arrow-left-bottom-bold.svg","material-arrow-left-bottom":"material/arrow-left-bottom.svg","material-arrow-left-box":"material/arrow-left-box.svg","material-arrow-left-circle-outline":"material/arrow-left-circle-outline.svg","material-arrow-left-circle":"material/arrow-left-circle.svg","material-arrow-left-drop-circle-outline":"material/arrow-left-drop-circle-outline.svg","material-arrow-left-drop-circle":"material/arrow-left-drop-circle.svg","material-arrow-left-right-bold-outline":"material/arrow-left-right-bold-outline.svg","material-arrow-left-right-bold":"material/arrow-left-right-bold.svg","material-arrow-left-right":"material/arrow-left-right.svg","material-arrow-left-thick":"material/arrow-left-thick.svg","material-arrow-left-thin-circle-outline":"material/arrow-left-thin-circle-outline.svg","material-arrow-left-thin":"material/arrow-left-thin.svg","material-arrow-left-top-bold":"material/arrow-left-top-bold.svg","material-arrow-left-top":"material/arrow-left-top.svg","material-arrow-left":"material/arrow-left.svg","material-arrow-oscillating-off":"material/arrow-oscillating-off.svg","material-arrow-oscillating":"material/arrow-oscillating.svg","material-arrow-projectile-multiple":"material/arrow-projectile-multiple.svg","material-arrow-projectile":"material/arrow-projectile.svg","material-arrow-right-bold-box-outline":"material/arrow-right-bold-box-outline.svg","material-arrow-right-bold-box":"material/arrow-right-bold-box.svg","material-arrow-right-bold-circle-outline":"material/arrow-right-bold-circle-outline.svg","material-arrow-right-bold-circle":"material/arrow-right-bold-circle.svg","material-arrow-right-bold-hexagon-outline":"material/arrow-right-bold-hexagon-outline.svg","material-arrow-right-bold-outline":"material/arrow-right-bold-outline.svg","material-arrow-right-bold":"material/arrow-right-bold.svg","material-arrow-right-bottom-bold":"material/arrow-right-bottom-bold.svg","material-arrow-right-bottom":"material/arrow-right-bottom.svg","material-arrow-right-box":"material/arrow-right-box.svg","material-arrow-right-circle-outline":"material/arrow-right-circle-outline.svg","material-arrow-right-circle":"material/arrow-right-circle.svg","material-arrow-right-drop-circle-outline":"material/arrow-right-drop-circle-outline.svg","material-arrow-right-drop-circle":"material/arrow-right-drop-circle.svg","material-arrow-right-thick":"material/arrow-right-thick.svg","material-arrow-right-thin-circle-outline":"material/arrow-right-thin-circle-outline.svg","material-arrow-right-thin":"material/arrow-right-thin.svg","material-arrow-right-top-bold":"material/arrow-right-top-bold.svg","material-arrow-right-top":"material/arrow-right-top.svg","material-arrow-right":"material/arrow-right.svg","material-arrow-split-horizontal":"material/arrow-split-horizontal.svg","material-arrow-split-vertical":"material/arrow-split-vertical.svg","material-arrow-top-left-bold-box-outline":"material/arrow-top-left-bold-box-outline.svg","material-arrow-top-left-bold-box":"material/arrow-top-left-bold-box.svg","material-arrow-top-left-bold-outline":"material/arrow-top-left-bold-outline.svg","material-arrow-top-left-bottom-right-bold":"material/arrow-top-left-bottom-right-bold.svg","material-arrow-top-left-bottom-right":"material/arrow-top-left-bottom-right.svg","material-arrow-top-left-thick":"material/arrow-top-left-thick.svg","material-arrow-top-left-thin-circle-outline":"material/arrow-top-left-thin-circle-outline.svg","material-arrow-top-left-thin":"material/arrow-top-left-thin.svg","material-arrow-top-left":"material/arrow-top-left.svg","material-arrow-top-right-bold-box-outline":"material/arrow-top-right-bold-box-outline.svg","material-arrow-top-right-bold-box":"material/arrow-top-right-bold-box.svg","material-arrow-top-right-bold-outline":"material/arrow-top-right-bold-outline.svg","material-arrow-top-right-bottom-left-bold":"material/arrow-top-right-bottom-left-bold.svg","material-arrow-top-right-bottom-left":"material/arrow-top-right-bottom-left.svg","material-arrow-top-right-thick":"material/arrow-top-right-thick.svg","material-arrow-top-right-thin-circle-outline":"material/arrow-top-right-thin-circle-outline.svg","material-arrow-top-right-thin":"material/arrow-top-right-thin.svg","material-arrow-top-right":"material/arrow-top-right.svg","material-arrow-u-down-left-bold":"material/arrow-u-down-left-bold.svg","material-arrow-u-down-left":"material/arrow-u-down-left.svg","material-arrow-u-down-right-bold":"material/arrow-u-down-right-bold.svg","material-arrow-u-down-right":"material/arrow-u-down-right.svg","material-arrow-u-left-bottom-bold":"material/arrow-u-left-bottom-bold.svg","material-arrow-u-left-bottom":"material/arrow-u-left-bottom.svg","material-arrow-u-left-top-bold":"material/arrow-u-left-top-bold.svg","material-arrow-u-left-top":"material/arrow-u-left-top.svg","material-arrow-u-right-bottom-bold":"material/arrow-u-right-bottom-bold.svg","material-arrow-u-right-bottom":"material/arrow-u-right-bottom.svg","material-arrow-u-right-top-bold":"material/arrow-u-right-top-bold.svg","material-arrow-u-right-top":"material/arrow-u-right-top.svg","material-arrow-u-up-left-bold":"material/arrow-u-up-left-bold.svg","material-arrow-u-up-left":"material/arrow-u-up-left.svg","material-arrow-u-up-right-bold":"material/arrow-u-up-right-bold.svg","material-arrow-u-up-right":"material/arrow-u-up-right.svg","material-arrow-up-bold-box-outline":"material/arrow-up-bold-box-outline.svg","material-arrow-up-bold-box":"material/arrow-up-bold-box.svg","material-arrow-up-bold-circle-outline":"material/arrow-up-bold-circle-outline.svg","material-arrow-up-bold-circle":"material/arrow-up-bold-circle.svg","material-arrow-up-bold-hexagon-outline":"material/arrow-up-bold-hexagon-outline.svg","material-arrow-up-bold-outline":"material/arrow-up-bold-outline.svg","material-arrow-up-bold":"material/arrow-up-bold.svg","material-arrow-up-box":"material/arrow-up-box.svg","material-arrow-up-circle-outline":"material/arrow-up-circle-outline.svg","material-arrow-up-circle":"material/arrow-up-circle.svg","material-arrow-up-down-bold-outline":"material/arrow-up-down-bold-outline.svg","material-arrow-up-down-bold":"material/arrow-up-down-bold.svg","material-arrow-up-down":"material/arrow-up-down.svg","material-arrow-up-drop-circle-outline":"material/arrow-up-drop-circle-outline.svg","material-arrow-up-drop-circle":"material/arrow-up-drop-circle.svg","material-arrow-up-left-bold":"material/arrow-up-left-bold.svg","material-arrow-up-left":"material/arrow-up-left.svg","material-arrow-up-right-bold":"material/arrow-up-right-bold.svg","material-arrow-up-right":"material/arrow-up-right.svg","material-arrow-up-thick":"material/arrow-up-thick.svg","material-arrow-up-thin-circle-outline":"material/arrow-up-thin-circle-outline.svg","material-arrow-up-thin":"material/arrow-up-thin.svg","material-arrow-up":"material/arrow-up.svg","material-arrow-vertical-lock":"material/arrow-vertical-lock.svg","material-artboard":"material/artboard.svg","material-artstation":"material/artstation.svg","material-aspect-ratio":"material/aspect-ratio.svg","material-assistant":"material/assistant.svg","material-asterisk-circle-outline":"material/asterisk-circle-outline.svg","material-asterisk":"material/asterisk.svg","material-at":"material/at.svg","material-atlassian":"material/atlassian.svg","material-atm":"material/atm.svg","material-atom-variant":"material/atom-variant.svg","material-atom":"material/atom.svg","material-attachment-check":"material/attachment-check.svg","material-attachment-lock":"material/attachment-lock.svg","material-attachment-minus":"material/attachment-minus.svg","material-attachment-off":"material/attachment-off.svg","material-attachment-plus":"material/attachment-plus.svg","material-attachment-remove":"material/attachment-remove.svg","material-attachment":"material/attachment.svg","material-atv":"material/atv.svg","material-audio-input-rca":"material/audio-input-rca.svg","material-audio-input-stereo-minijack":"material/audio-input-stereo-minijack.svg","material-audio-input-xlr":"material/audio-input-xlr.svg","material-audio-video-off":"material/audio-video-off.svg","material-audio-video":"material/audio-video.svg","material-augmented-reality":"material/augmented-reality.svg","material-aurora":"material/aurora.svg","material-auto-download":"material/auto-download.svg","material-auto-fix":"material/auto-fix.svg","material-auto-mode":"material/auto-mode.svg","material-auto-upload":"material/auto-upload.svg","material-autorenew-off":"material/autorenew-off.svg","material-autorenew":"material/autorenew.svg","material-av-timer":"material/av-timer.svg","material-awning-outline":"material/awning-outline.svg","material-awning":"material/awning.svg","material-aws":"material/aws.svg","material-axe-battle":"material/axe-battle.svg","material-axe":"material/axe.svg","material-axis-arrow-info":"material/axis-arrow-info.svg","material-axis-arrow-lock":"material/axis-arrow-lock.svg","material-axis-arrow":"material/axis-arrow.svg","material-axis-lock":"material/axis-lock.svg","material-axis-x-arrow-lock":"material/axis-x-arrow-lock.svg","material-axis-x-arrow":"material/axis-x-arrow.svg","material-axis-x-rotate-clockwise":"material/axis-x-rotate-clockwise.svg","material-axis-x-rotate-counterclockwise":"material/axis-x-rotate-counterclockwise.svg","material-axis-x-y-arrow-lock":"material/axis-x-y-arrow-lock.svg","material-axis-y-arrow-lock":"material/axis-y-arrow-lock.svg","material-axis-y-arrow":"material/axis-y-arrow.svg","material-axis-y-rotate-clockwise":"material/axis-y-rotate-clockwise.svg","material-axis-y-rotate-counterclockwise":"material/axis-y-rotate-counterclockwise.svg","material-axis-z-arrow-lock":"material/axis-z-arrow-lock.svg","material-axis-z-arrow":"material/axis-z-arrow.svg","material-axis-z-rotate-clockwise":"material/axis-z-rotate-clockwise.svg","material-axis-z-rotate-counterclockwise":"material/axis-z-rotate-counterclockwise.svg","material-axis":"material/axis.svg","material-babel":"material/babel.svg","material-baby-bottle-outline":"material/baby-bottle-outline.svg","material-baby-bottle":"material/baby-bottle.svg","material-baby-buggy-off":"material/baby-buggy-off.svg","material-baby-buggy":"material/baby-buggy.svg","material-baby-carriage-off":"material/baby-carriage-off.svg","material-baby-carriage":"material/baby-carriage.svg","material-baby-face-outline":"material/baby-face-outline.svg","material-baby-face":"material/baby-face.svg","material-baby":"material/baby.svg","material-backburger":"material/backburger.svg","material-backspace-outline":"material/backspace-outline.svg","material-backspace-reverse-outline":"material/backspace-reverse-outline.svg","material-backspace-reverse":"material/backspace-reverse.svg","material-backspace":"material/backspace.svg","material-backup-restore":"material/backup-restore.svg","material-bacteria-outline":"material/bacteria-outline.svg","material-bacteria":"material/bacteria.svg","material-badge-account-alert-outline":"material/badge-account-alert-outline.svg","material-badge-account-alert":"material/badge-account-alert.svg","material-badge-account-horizontal-outline":"material/badge-account-horizontal-outline.svg","material-badge-account-horizontal":"material/badge-account-horizontal.svg","material-badge-account-outline":"material/badge-account-outline.svg","material-badge-account":"material/badge-account.svg","material-badminton":"material/badminton.svg","material-bag-carry-on-check":"material/bag-carry-on-check.svg","material-bag-carry-on-off":"material/bag-carry-on-off.svg","material-bag-carry-on":"material/bag-carry-on.svg","material-bag-checked":"material/bag-checked.svg","material-bag-personal-off-outline":"material/bag-personal-off-outline.svg","material-bag-personal-off":"material/bag-personal-off.svg","material-bag-personal-outline":"material/bag-personal-outline.svg","material-bag-personal-plus-outline":"material/bag-personal-plus-outline.svg","material-bag-personal-plus":"material/bag-personal-plus.svg","material-bag-personal-tag-outline":"material/bag-personal-tag-outline.svg","material-bag-personal-tag":"material/bag-personal-tag.svg","material-bag-personal":"material/bag-personal.svg","material-bag-suitcase-off-outline":"material/bag-suitcase-off-outline.svg","material-bag-suitcase-off":"material/bag-suitcase-off.svg","material-bag-suitcase-outline":"material/bag-suitcase-outline.svg","material-bag-suitcase":"material/bag-suitcase.svg","material-baguette":"material/baguette.svg","material-balcony":"material/balcony.svg","material-balloon":"material/balloon.svg","material-ballot-outline":"material/ballot-outline.svg","material-ballot-recount-outline":"material/ballot-recount-outline.svg","material-ballot-recount":"material/ballot-recount.svg","material-ballot":"material/ballot.svg","material-bandage":"material/bandage.svg","material-bank-check":"material/bank-check.svg","material-bank-circle-outline":"material/bank-circle-outline.svg","material-bank-circle":"material/bank-circle.svg","material-bank-minus":"material/bank-minus.svg","material-bank-off-outline":"material/bank-off-outline.svg","material-bank-off":"material/bank-off.svg","material-bank-outline":"material/bank-outline.svg","material-bank-plus":"material/bank-plus.svg","material-bank-remove":"material/bank-remove.svg","material-bank-transfer-in":"material/bank-transfer-in.svg","material-bank-transfer-out":"material/bank-transfer-out.svg","material-bank-transfer":"material/bank-transfer.svg","material-bank":"material/bank.svg","material-barcode-off":"material/barcode-off.svg","material-barcode-scan":"material/barcode-scan.svg","material-barcode":"material/barcode.svg","material-barley-off":"material/barley-off.svg","material-barley":"material/barley.svg","material-barn":"material/barn.svg","material-barrel-outline":"material/barrel-outline.svg","material-barrel":"material/barrel.svg","material-baseball-bat":"material/baseball-bat.svg","material-baseball-diamond-outline":"material/baseball-diamond-outline.svg","material-baseball-diamond":"material/baseball-diamond.svg","material-baseball-outline":"material/baseball-outline.svg","material-baseball":"material/baseball.svg","material-bash":"material/bash.svg","material-basket-check-outline":"material/basket-check-outline.svg","material-basket-check":"material/basket-check.svg","material-basket-fill":"material/basket-fill.svg","material-basket-minus-outline":"material/basket-minus-outline.svg","material-basket-minus":"material/basket-minus.svg","material-basket-off-outline":"material/basket-off-outline.svg","material-basket-off":"material/basket-off.svg","material-basket-outline":"material/basket-outline.svg","material-basket-plus-outline":"material/basket-plus-outline.svg","material-basket-plus":"material/basket-plus.svg","material-basket-remove-outline":"material/basket-remove-outline.svg","material-basket-remove":"material/basket-remove.svg","material-basket-unfill":"material/basket-unfill.svg","material-basket":"material/basket.svg","material-basketball-hoop-outline":"material/basketball-hoop-outline.svg","material-basketball-hoop":"material/basketball-hoop.svg","material-basketball":"material/basketball.svg","material-bat":"material/bat.svg","material-bathtub-outline":"material/bathtub-outline.svg","material-bathtub":"material/bathtub.svg","material-battery-10-bluetooth":"material/battery-10-bluetooth.svg","material-battery-10":"material/battery-10.svg","material-battery-20-bluetooth":"material/battery-20-bluetooth.svg","material-battery-20":"material/battery-20.svg","material-battery-30-bluetooth":"material/battery-30-bluetooth.svg","material-battery-30":"material/battery-30.svg","material-battery-40-bluetooth":"material/battery-40-bluetooth.svg","material-battery-40":"material/battery-40.svg","material-battery-50-bluetooth":"material/battery-50-bluetooth.svg","material-battery-50":"material/battery-50.svg","material-battery-60-bluetooth":"material/battery-60-bluetooth.svg","material-battery-60":"material/battery-60.svg","material-battery-70-bluetooth":"material/battery-70-bluetooth.svg","material-battery-70":"material/battery-70.svg","material-battery-80-bluetooth":"material/battery-80-bluetooth.svg","material-battery-80":"material/battery-80.svg","material-battery-90-bluetooth":"material/battery-90-bluetooth.svg","material-battery-90":"material/battery-90.svg","material-battery-alert-bluetooth":"material/battery-alert-bluetooth.svg","material-battery-alert-variant-outline":"material/battery-alert-variant-outline.svg","material-battery-alert-variant":"material/battery-alert-variant.svg","material-battery-alert":"material/battery-alert.svg","material-battery-arrow-down-outline":"material/battery-arrow-down-outline.svg","material-battery-arrow-down":"material/battery-arrow-down.svg","material-battery-arrow-up-outline":"material/battery-arrow-up-outline.svg","material-battery-arrow-up":"material/battery-arrow-up.svg","material-battery-bluetooth-variant":"material/battery-bluetooth-variant.svg","material-battery-bluetooth":"material/battery-bluetooth.svg","material-battery-charging-10":"material/battery-charging-10.svg","material-battery-charging-100":"material/battery-charging-100.svg","material-battery-charging-20":"material/battery-charging-20.svg","material-battery-charging-30":"material/battery-charging-30.svg","material-battery-charging-40":"material/battery-charging-40.svg","material-battery-charging-50":"material/battery-charging-50.svg","material-battery-charging-60":"material/battery-charging-60.svg","material-battery-charging-70":"material/battery-charging-70.svg","material-battery-charging-80":"material/battery-charging-80.svg","material-battery-charging-90":"material/battery-charging-90.svg","material-battery-charging-high":"material/battery-charging-high.svg","material-battery-charging-low":"material/battery-charging-low.svg","material-battery-charging-medium":"material/battery-charging-medium.svg","material-battery-charging-outline":"material/battery-charging-outline.svg","material-battery-charging-wireless-10":"material/battery-charging-wireless-10.svg","material-battery-charging-wireless-20":"material/battery-charging-wireless-20.svg","material-battery-charging-wireless-30":"material/battery-charging-wireless-30.svg","material-battery-charging-wireless-40":"material/battery-charging-wireless-40.svg","material-battery-charging-wireless-50":"material/battery-charging-wireless-50.svg","material-battery-charging-wireless-60":"material/battery-charging-wireless-60.svg","material-battery-charging-wireless-70":"material/battery-charging-wireless-70.svg","material-battery-charging-wireless-80":"material/battery-charging-wireless-80.svg","material-battery-charging-wireless-90":"material/battery-charging-wireless-90.svg","material-battery-charging-wireless-alert":"material/battery-charging-wireless-alert.svg","material-battery-charging-wireless-outline":"material/battery-charging-wireless-outline.svg","material-battery-charging-wireless":"material/battery-charging-wireless.svg","material-battery-charging":"material/battery-charging.svg","material-battery-check-outline":"material/battery-check-outline.svg","material-battery-check":"material/battery-check.svg","material-battery-clock-outline":"material/battery-clock-outline.svg","material-battery-clock":"material/battery-clock.svg","material-battery-heart-outline":"material/battery-heart-outline.svg","material-battery-heart-variant":"material/battery-heart-variant.svg","material-battery-heart":"material/battery-heart.svg","material-battery-high":"material/battery-high.svg","material-battery-lock-open":"material/battery-lock-open.svg","material-battery-lock":"material/battery-lock.svg","material-battery-low":"material/battery-low.svg","material-battery-medium":"material/battery-medium.svg","material-battery-minus-outline":"material/battery-minus-outline.svg","material-battery-minus-variant":"material/battery-minus-variant.svg","material-battery-minus":"material/battery-minus.svg","material-battery-negative":"material/battery-negative.svg","material-battery-off-outline":"material/battery-off-outline.svg","material-battery-off":"material/battery-off.svg","material-battery-outline":"material/battery-outline.svg","material-battery-plus-outline":"material/battery-plus-outline.svg","material-battery-plus-variant":"material/battery-plus-variant.svg","material-battery-plus":"material/battery-plus.svg","material-battery-positive":"material/battery-positive.svg","material-battery-remove-outline":"material/battery-remove-outline.svg","material-battery-remove":"material/battery-remove.svg","material-battery-sync-outline":"material/battery-sync-outline.svg","material-battery-sync":"material/battery-sync.svg","material-battery-unknown-bluetooth":"material/battery-unknown-bluetooth.svg","material-battery-unknown":"material/battery-unknown.svg","material-battery":"material/battery.svg","material-beach":"material/beach.svg","material-beaker-alert-outline":"material/beaker-alert-outline.svg","material-beaker-alert":"material/beaker-alert.svg","material-beaker-check-outline":"material/beaker-check-outline.svg","material-beaker-check":"material/beaker-check.svg","material-beaker-minus-outline":"material/beaker-minus-outline.svg","material-beaker-minus":"material/beaker-minus.svg","material-beaker-outline":"material/beaker-outline.svg","material-beaker-plus-outline":"material/beaker-plus-outline.svg","material-beaker-plus":"material/beaker-plus.svg","material-beaker-question-outline":"material/beaker-question-outline.svg","material-beaker-question":"material/beaker-question.svg","material-beaker-remove-outline":"material/beaker-remove-outline.svg","material-beaker-remove":"material/beaker-remove.svg","material-beaker":"material/beaker.svg","material-bed-clock":"material/bed-clock.svg","material-bed-double-outline":"material/bed-double-outline.svg","material-bed-double":"material/bed-double.svg","material-bed-empty":"material/bed-empty.svg","material-bed-king-outline":"material/bed-king-outline.svg","material-bed-king":"material/bed-king.svg","material-bed-outline":"material/bed-outline.svg","material-bed-queen-outline":"material/bed-queen-outline.svg","material-bed-queen":"material/bed-queen.svg","material-bed-single-outline":"material/bed-single-outline.svg","material-bed-single":"material/bed-single.svg","material-bed":"material/bed.svg","material-bee-flower":"material/bee-flower.svg","material-bee":"material/bee.svg","material-beehive-off-outline":"material/beehive-off-outline.svg","material-beehive-outline":"material/beehive-outline.svg","material-beekeeper":"material/beekeeper.svg","material-beer-outline":"material/beer-outline.svg","material-beer":"material/beer.svg","material-bell-alert-outline":"material/bell-alert-outline.svg","material-bell-alert":"material/bell-alert.svg","material-bell-badge-outline":"material/bell-badge-outline.svg","material-bell-badge":"material/bell-badge.svg","material-bell-cancel-outline":"material/bell-cancel-outline.svg","material-bell-cancel":"material/bell-cancel.svg","material-bell-check-outline":"material/bell-check-outline.svg","material-bell-check":"material/bell-check.svg","material-bell-circle-outline":"material/bell-circle-outline.svg","material-bell-circle":"material/bell-circle.svg","material-bell-cog-outline":"material/bell-cog-outline.svg","material-bell-cog":"material/bell-cog.svg","material-bell-minus-outline":"material/bell-minus-outline.svg","material-bell-minus":"material/bell-minus.svg","material-bell-off-outline":"material/bell-off-outline.svg","material-bell-off":"material/bell-off.svg","material-bell-outline":"material/bell-outline.svg","material-bell-plus-outline":"material/bell-plus-outline.svg","material-bell-plus":"material/bell-plus.svg","material-bell-remove-outline":"material/bell-remove-outline.svg","material-bell-remove":"material/bell-remove.svg","material-bell-ring-outline":"material/bell-ring-outline.svg","material-bell-ring":"material/bell-ring.svg","material-bell-sleep-outline":"material/bell-sleep-outline.svg","material-bell-sleep":"material/bell-sleep.svg","material-bell":"material/bell.svg","material-bench-back":"material/bench-back.svg","material-bench":"material/bench.svg","material-beta":"material/beta.svg","material-betamax":"material/betamax.svg","material-biathlon":"material/biathlon.svg","material-bicycle-basket":"material/bicycle-basket.svg","material-bicycle-cargo":"material/bicycle-cargo.svg","material-bicycle-electric":"material/bicycle-electric.svg","material-bicycle-penny-farthing":"material/bicycle-penny-farthing.svg","material-bicycle":"material/bicycle.svg","material-bike-fast":"material/bike-fast.svg","material-bike-pedal-clipless":"material/bike-pedal-clipless.svg","material-bike-pedal-mountain":"material/bike-pedal-mountain.svg","material-bike-pedal":"material/bike-pedal.svg","material-bike":"material/bike.svg","material-billboard":"material/billboard.svg","material-billiards-rack":"material/billiards-rack.svg","material-billiards":"material/billiards.svg","material-binoculars":"material/binoculars.svg","material-bio":"material/bio.svg","material-biohazard":"material/biohazard.svg","material-bird":"material/bird.svg","material-bitbucket":"material/bitbucket.svg","material-bitcoin":"material/bitcoin.svg","material-black-mesa":"material/black-mesa.svg","material-blender-outline":"material/blender-outline.svg","material-blender-software":"material/blender-software.svg","material-blender":"material/blender.svg","material-blinds-horizontal-closed":"material/blinds-horizontal-closed.svg","material-blinds-horizontal":"material/blinds-horizontal.svg","material-blinds-open":"material/blinds-open.svg","material-blinds-vertical-closed":"material/blinds-vertical-closed.svg","material-blinds-vertical":"material/blinds-vertical.svg","material-blinds":"material/blinds.svg","material-block-helper":"material/block-helper.svg","material-blood-bag":"material/blood-bag.svg","material-bluetooth-audio":"material/bluetooth-audio.svg","material-bluetooth-connect":"material/bluetooth-connect.svg","material-bluetooth-off":"material/bluetooth-off.svg","material-bluetooth-settings":"material/bluetooth-settings.svg","material-bluetooth-transfer":"material/bluetooth-transfer.svg","material-bluetooth":"material/bluetooth.svg","material-blur-linear":"material/blur-linear.svg","material-blur-off":"material/blur-off.svg","material-blur-radial":"material/blur-radial.svg","material-blur":"material/blur.svg","material-bolt":"material/bolt.svg","material-bomb-off":"material/bomb-off.svg","material-bomb":"material/bomb.svg","material-bone-off":"material/bone-off.svg","material-bone":"material/bone.svg","material-book-account-outline":"material/book-account-outline.svg","material-book-account":"material/book-account.svg","material-book-alert-outline":"material/book-alert-outline.svg","material-book-alert":"material/book-alert.svg","material-book-alphabet":"material/book-alphabet.svg","material-book-arrow-down-outline":"material/book-arrow-down-outline.svg","material-book-arrow-down":"material/book-arrow-down.svg","material-book-arrow-left-outline":"material/book-arrow-left-outline.svg","material-book-arrow-left":"material/book-arrow-left.svg","material-book-arrow-right-outline":"material/book-arrow-right-outline.svg","material-book-arrow-right":"material/book-arrow-right.svg","material-book-arrow-up-outline":"material/book-arrow-up-outline.svg","material-book-arrow-up":"material/book-arrow-up.svg","material-book-cancel-outline":"material/book-cancel-outline.svg","material-book-cancel":"material/book-cancel.svg","material-book-check-outline":"material/book-check-outline.svg","material-book-check":"material/book-check.svg","material-book-clock-outline":"material/book-clock-outline.svg","material-book-clock":"material/book-clock.svg","material-book-cog-outline":"material/book-cog-outline.svg","material-book-cog":"material/book-cog.svg","material-book-cross":"material/book-cross.svg","material-book-edit-outline":"material/book-edit-outline.svg","material-book-edit":"material/book-edit.svg","material-book-education-outline":"material/book-education-outline.svg","material-book-education":"material/book-education.svg","material-book-heart-outline":"material/book-heart-outline.svg","material-book-heart":"material/book-heart.svg","material-book-information-variant":"material/book-information-variant.svg","material-book-lock-open-outline":"material/book-lock-open-outline.svg","material-book-lock-open":"material/book-lock-open.svg","material-book-lock-outline":"material/book-lock-outline.svg","material-book-lock":"material/book-lock.svg","material-book-marker-outline":"material/book-marker-outline.svg","material-book-marker":"material/book-marker.svg","material-book-minus-multiple-outline":"material/book-minus-multiple-outline.svg","material-book-minus-multiple":"material/book-minus-multiple.svg","material-book-minus-outline":"material/book-minus-outline.svg","material-book-minus":"material/book-minus.svg","material-book-multiple-outline":"material/book-multiple-outline.svg","material-book-multiple":"material/book-multiple.svg","material-book-music-outline":"material/book-music-outline.svg","material-book-music":"material/book-music.svg","material-book-off-outline":"material/book-off-outline.svg","material-book-off":"material/book-off.svg","material-book-open-blank-variant-outline":"material/book-open-blank-variant-outline.svg","material-book-open-blank-variant":"material/book-open-blank-variant.svg","material-book-open-outline":"material/book-open-outline.svg","material-book-open-page-variant-outline":"material/book-open-page-variant-outline.svg","material-book-open-page-variant":"material/book-open-page-variant.svg","material-book-open-variant-outline":"material/book-open-variant-outline.svg","material-book-open-variant":"material/book-open-variant.svg","material-book-open":"material/book-open.svg","material-book-outline":"material/book-outline.svg","material-book-play-outline":"material/book-play-outline.svg","material-book-play":"material/book-play.svg","material-book-plus-multiple-outline":"material/book-plus-multiple-outline.svg","material-book-plus-multiple":"material/book-plus-multiple.svg","material-book-plus-outline":"material/book-plus-outline.svg","material-book-plus":"material/book-plus.svg","material-book-refresh-outline":"material/book-refresh-outline.svg","material-book-refresh":"material/book-refresh.svg","material-book-remove-multiple-outline":"material/book-remove-multiple-outline.svg","material-book-remove-multiple":"material/book-remove-multiple.svg","material-book-remove-outline":"material/book-remove-outline.svg","material-book-remove":"material/book-remove.svg","material-book-search-outline":"material/book-search-outline.svg","material-book-search":"material/book-search.svg","material-book-settings-outline":"material/book-settings-outline.svg","material-book-settings":"material/book-settings.svg","material-book-sync-outline":"material/book-sync-outline.svg","material-book-sync":"material/book-sync.svg","material-book-variant":"material/book-variant.svg","material-book":"material/book.svg","material-bookmark-box-multiple-outline":"material/bookmark-box-multiple-outline.svg","material-bookmark-box-multiple":"material/bookmark-box-multiple.svg","material-bookmark-box-outline":"material/bookmark-box-outline.svg","material-bookmark-box":"material/bookmark-box.svg","material-bookmark-check-outline":"material/bookmark-check-outline.svg","material-bookmark-check":"material/bookmark-check.svg","material-bookmark-minus-outline":"material/bookmark-minus-outline.svg","material-bookmark-minus":"material/bookmark-minus.svg","material-bookmark-multiple-outline":"material/bookmark-multiple-outline.svg","material-bookmark-multiple":"material/bookmark-multiple.svg","material-bookmark-music-outline":"material/bookmark-music-outline.svg","material-bookmark-music":"material/bookmark-music.svg","material-bookmark-off-outline":"material/bookmark-off-outline.svg","material-bookmark-off":"material/bookmark-off.svg","material-bookmark-outline":"material/bookmark-outline.svg","material-bookmark-plus-outline":"material/bookmark-plus-outline.svg","material-bookmark-plus":"material/bookmark-plus.svg","material-bookmark-remove-outline":"material/bookmark-remove-outline.svg","material-bookmark-remove":"material/bookmark-remove.svg","material-bookmark":"material/bookmark.svg","material-bookshelf":"material/bookshelf.svg","material-boom-gate-alert-outline":"material/boom-gate-alert-outline.svg","material-boom-gate-alert":"material/boom-gate-alert.svg","material-boom-gate-arrow-down-outline":"material/boom-gate-arrow-down-outline.svg","material-boom-gate-arrow-down":"material/boom-gate-arrow-down.svg","material-boom-gate-arrow-up-outline":"material/boom-gate-arrow-up-outline.svg","material-boom-gate-arrow-up":"material/boom-gate-arrow-up.svg","material-boom-gate-outline":"material/boom-gate-outline.svg","material-boom-gate-up-outline":"material/boom-gate-up-outline.svg","material-boom-gate-up":"material/boom-gate-up.svg","material-boom-gate":"material/boom-gate.svg","material-boombox":"material/boombox.svg","material-boomerang":"material/boomerang.svg","material-bootstrap":"material/bootstrap.svg","material-border-all-variant":"material/border-all-variant.svg","material-border-all":"material/border-all.svg","material-border-bottom-variant":"material/border-bottom-variant.svg","material-border-bottom":"material/border-bottom.svg","material-border-color":"material/border-color.svg","material-border-horizontal":"material/border-horizontal.svg","material-border-inside":"material/border-inside.svg","material-border-left-variant":"material/border-left-variant.svg","material-border-left":"material/border-left.svg","material-border-none-variant":"material/border-none-variant.svg","material-border-none":"material/border-none.svg","material-border-outside":"material/border-outside.svg","material-border-radius":"material/border-radius.svg","material-border-right-variant":"material/border-right-variant.svg","material-border-right":"material/border-right.svg","material-border-style":"material/border-style.svg","material-border-top-variant":"material/border-top-variant.svg","material-border-top":"material/border-top.svg","material-border-vertical":"material/border-vertical.svg","material-bottle-soda-classic-outline":"material/bottle-soda-classic-outline.svg","material-bottle-soda-classic":"material/bottle-soda-classic.svg","material-bottle-soda-outline":"material/bottle-soda-outline.svg","material-bottle-soda":"material/bottle-soda.svg","material-bottle-tonic-outline":"material/bottle-tonic-outline.svg","material-bottle-tonic-plus-outline":"material/bottle-tonic-plus-outline.svg","material-bottle-tonic-plus":"material/bottle-tonic-plus.svg","material-bottle-tonic-skull-outline":"material/bottle-tonic-skull-outline.svg","material-bottle-tonic-skull":"material/bottle-tonic-skull.svg","material-bottle-tonic":"material/bottle-tonic.svg","material-bottle-wine-outline":"material/bottle-wine-outline.svg","material-bottle-wine":"material/bottle-wine.svg","material-bow-arrow":"material/bow-arrow.svg","material-bow-tie":"material/bow-tie.svg","material-bowl-mix-outline":"material/bowl-mix-outline.svg","material-bowl-mix":"material/bowl-mix.svg","material-bowl-outline":"material/bowl-outline.svg","material-bowl":"material/bowl.svg","material-bowling":"material/bowling.svg","material-box-cutter-off":"material/box-cutter-off.svg","material-box-cutter":"material/box-cutter.svg","material-box-shadow":"material/box-shadow.svg","material-box":"material/box.svg","material-boxing-glove":"material/boxing-glove.svg","material-braille":"material/braille.svg","material-brain":"material/brain.svg","material-bread-slice-outline":"material/bread-slice-outline.svg","material-bread-slice":"material/bread-slice.svg","material-bridge":"material/bridge.svg","material-briefcase-account-outline":"material/briefcase-account-outline.svg","material-briefcase-account":"material/briefcase-account.svg","material-briefcase-arrow-left-right-outline":"material/briefcase-arrow-left-right-outline.svg","material-briefcase-arrow-left-right":"material/briefcase-arrow-left-right.svg","material-briefcase-arrow-up-down-outline":"material/briefcase-arrow-up-down-outline.svg","material-briefcase-arrow-up-down":"material/briefcase-arrow-up-down.svg","material-briefcase-check-outline":"material/briefcase-check-outline.svg","material-briefcase-check":"material/briefcase-check.svg","material-briefcase-clock-outline":"material/briefcase-clock-outline.svg","material-briefcase-clock":"material/briefcase-clock.svg","material-briefcase-download-outline":"material/briefcase-download-outline.svg","material-briefcase-download":"material/briefcase-download.svg","material-briefcase-edit-outline":"material/briefcase-edit-outline.svg","material-briefcase-edit":"material/briefcase-edit.svg","material-briefcase-eye-outline":"material/briefcase-eye-outline.svg","material-briefcase-eye":"material/briefcase-eye.svg","material-briefcase-minus-outline":"material/briefcase-minus-outline.svg","material-briefcase-minus":"material/briefcase-minus.svg","material-briefcase-off-outline":"material/briefcase-off-outline.svg","material-briefcase-off":"material/briefcase-off.svg","material-briefcase-outline":"material/briefcase-outline.svg","material-briefcase-plus-outline":"material/briefcase-plus-outline.svg","material-briefcase-plus":"material/briefcase-plus.svg","material-briefcase-remove-outline":"material/briefcase-remove-outline.svg","material-briefcase-remove":"material/briefcase-remove.svg","material-briefcase-search-outline":"material/briefcase-search-outline.svg","material-briefcase-search":"material/briefcase-search.svg","material-briefcase-upload-outline":"material/briefcase-upload-outline.svg","material-briefcase-upload":"material/briefcase-upload.svg","material-briefcase-variant-off-outline":"material/briefcase-variant-off-outline.svg","material-briefcase-variant-off":"material/briefcase-variant-off.svg","material-briefcase-variant-outline":"material/briefcase-variant-outline.svg","material-briefcase-variant":"material/briefcase-variant.svg","material-briefcase":"material/briefcase.svg","material-brightness-1":"material/brightness-1.svg","material-brightness-2":"material/brightness-2.svg","material-brightness-3":"material/brightness-3.svg","material-brightness-4":"material/brightness-4.svg","material-brightness-5":"material/brightness-5.svg","material-brightness-6":"material/brightness-6.svg","material-brightness-7":"material/brightness-7.svg","material-brightness-auto":"material/brightness-auto.svg","material-brightness-percent":"material/brightness-percent.svg","material-broadcast-off":"material/broadcast-off.svg","material-broadcast":"material/broadcast.svg","material-broom":"material/broom.svg","material-brush-off":"material/brush-off.svg","material-brush-outline":"material/brush-outline.svg","material-brush-variant":"material/brush-variant.svg","material-brush":"material/brush.svg","material-bucket-outline":"material/bucket-outline.svg","material-bucket":"material/bucket.svg","material-buffet":"material/buffet.svg","material-bug-check-outline":"material/bug-check-outline.svg","material-bug-check":"material/bug-check.svg","material-bug-outline":"material/bug-outline.svg","material-bug-pause-outline":"material/bug-pause-outline.svg","material-bug-pause":"material/bug-pause.svg","material-bug-play-outline":"material/bug-play-outline.svg","material-bug-play":"material/bug-play.svg","material-bug-stop-outline":"material/bug-stop-outline.svg","material-bug-stop":"material/bug-stop.svg","material-bug":"material/bug.svg","material-bugle":"material/bugle.svg","material-bulkhead-light":"material/bulkhead-light.svg","material-bulldozer":"material/bulldozer.svg","material-bullet":"material/bullet.svg","material-bulletin-board":"material/bulletin-board.svg","material-bullhorn-outline":"material/bullhorn-outline.svg","material-bullhorn-variant-outline":"material/bullhorn-variant-outline.svg","material-bullhorn-variant":"material/bullhorn-variant.svg","material-bullhorn":"material/bullhorn.svg","material-bullseye-arrow":"material/bullseye-arrow.svg","material-bullseye":"material/bullseye.svg","material-bulma":"material/bulma.svg","material-bunk-bed-outline":"material/bunk-bed-outline.svg","material-bunk-bed":"material/bunk-bed.svg","material-bus-alert":"material/bus-alert.svg","material-bus-articulated-end":"material/bus-articulated-end.svg","material-bus-articulated-front":"material/bus-articulated-front.svg","material-bus-clock":"material/bus-clock.svg","material-bus-double-decker":"material/bus-double-decker.svg","material-bus-electric":"material/bus-electric.svg","material-bus-marker":"material/bus-marker.svg","material-bus-multiple":"material/bus-multiple.svg","material-bus-school":"material/bus-school.svg","material-bus-side":"material/bus-side.svg","material-bus-sign":"material/bus-sign.svg","material-bus-stop-covered":"material/bus-stop-covered.svg","material-bus-stop-uncovered":"material/bus-stop-uncovered.svg","material-bus-stop":"material/bus-stop.svg","material-bus-wrench":"material/bus-wrench.svg","material-bus":"material/bus.svg","material-butterfly-outline":"material/butterfly-outline.svg","material-butterfly":"material/butterfly.svg","material-button-cursor":"material/button-cursor.svg","material-button-pointer":"material/button-pointer.svg","material-cabin-a-frame":"material/cabin-a-frame.svg","material-cable-data":"material/cable-data.svg","material-cached":"material/cached.svg","material-cactus":"material/cactus.svg","material-cake-layered":"material/cake-layered.svg","material-cake-variant-outline":"material/cake-variant-outline.svg","material-cake-variant":"material/cake-variant.svg","material-cake":"material/cake.svg","material-calculator-variant-outline":"material/calculator-variant-outline.svg","material-calculator-variant":"material/calculator-variant.svg","material-calculator":"material/calculator.svg","material-calendar-account-outline":"material/calendar-account-outline.svg","material-calendar-account":"material/calendar-account.svg","material-calendar-alert-outline":"material/calendar-alert-outline.svg","material-calendar-alert":"material/calendar-alert.svg","material-calendar-arrow-left":"material/calendar-arrow-left.svg","material-calendar-arrow-right":"material/calendar-arrow-right.svg","material-calendar-badge-outline":"material/calendar-badge-outline.svg","material-calendar-badge":"material/calendar-badge.svg","material-calendar-blank-multiple":"material/calendar-blank-multiple.svg","material-calendar-blank-outline":"material/calendar-blank-outline.svg","material-calendar-blank":"material/calendar-blank.svg","material-calendar-check-outline":"material/calendar-check-outline.svg","material-calendar-check":"material/calendar-check.svg","material-calendar-clock-outline":"material/calendar-clock-outline.svg","material-calendar-clock":"material/calendar-clock.svg","material-calendar-collapse-horizontal-outline":"material/calendar-collapse-horizontal-outline.svg","material-calendar-collapse-horizontal":"material/calendar-collapse-horizontal.svg","material-calendar-cursor-outline":"material/calendar-cursor-outline.svg","material-calendar-cursor":"material/calendar-cursor.svg","material-calendar-edit-outline":"material/calendar-edit-outline.svg","material-calendar-edit":"material/calendar-edit.svg","material-calendar-end-outline":"material/calendar-end-outline.svg","material-calendar-end":"material/calendar-end.svg","material-calendar-expand-horizontal-outline":"material/calendar-expand-horizontal-outline.svg","material-calendar-expand-horizontal":"material/calendar-expand-horizontal.svg","material-calendar-export-outline":"material/calendar-export-outline.svg","material-calendar-export":"material/calendar-export.svg","material-calendar-filter-outline":"material/calendar-filter-outline.svg","material-calendar-filter":"material/calendar-filter.svg","material-calendar-heart-outline":"material/calendar-heart-outline.svg","material-calendar-heart":"material/calendar-heart.svg","material-calendar-import-outline":"material/calendar-import-outline.svg","material-calendar-import":"material/calendar-import.svg","material-calendar-lock-open-outline":"material/calendar-lock-open-outline.svg","material-calendar-lock-open":"material/calendar-lock-open.svg","material-calendar-lock-outline":"material/calendar-lock-outline.svg","material-calendar-lock":"material/calendar-lock.svg","material-calendar-minus-outline":"material/calendar-minus-outline.svg","material-calendar-minus":"material/calendar-minus.svg","material-calendar-month-outline":"material/calendar-month-outline.svg","material-calendar-month":"material/calendar-month.svg","material-calendar-multiple-check":"material/calendar-multiple-check.svg","material-calendar-multiple":"material/calendar-multiple.svg","material-calendar-multiselect-outline":"material/calendar-multiselect-outline.svg","material-calendar-multiselect":"material/calendar-multiselect.svg","material-calendar-outline":"material/calendar-outline.svg","material-calendar-plus-outline":"material/calendar-plus-outline.svg","material-calendar-plus":"material/calendar-plus.svg","material-calendar-question-outline":"material/calendar-question-outline.svg","material-calendar-question":"material/calendar-question.svg","material-calendar-range-outline":"material/calendar-range-outline.svg","material-calendar-range":"material/calendar-range.svg","material-calendar-refresh-outline":"material/calendar-refresh-outline.svg","material-calendar-refresh":"material/calendar-refresh.svg","material-calendar-remove-outline":"material/calendar-remove-outline.svg","material-calendar-remove":"material/calendar-remove.svg","material-calendar-search-outline":"material/calendar-search-outline.svg","material-calendar-search":"material/calendar-search.svg","material-calendar-star-four-points":"material/calendar-star-four-points.svg","material-calendar-star-outline":"material/calendar-star-outline.svg","material-calendar-star":"material/calendar-star.svg","material-calendar-start-outline":"material/calendar-start-outline.svg","material-calendar-start":"material/calendar-start.svg","material-calendar-sync-outline":"material/calendar-sync-outline.svg","material-calendar-sync":"material/calendar-sync.svg","material-calendar-text-outline":"material/calendar-text-outline.svg","material-calendar-text":"material/calendar-text.svg","material-calendar-today-outline":"material/calendar-today-outline.svg","material-calendar-today":"material/calendar-today.svg","material-calendar-week-begin-outline":"material/calendar-week-begin-outline.svg","material-calendar-week-begin":"material/calendar-week-begin.svg","material-calendar-week-outline":"material/calendar-week-outline.svg","material-calendar-week":"material/calendar-week.svg","material-calendar-weekend-outline":"material/calendar-weekend-outline.svg","material-calendar-weekend":"material/calendar-weekend.svg","material-calendar":"material/calendar.svg","material-call-made":"material/call-made.svg","material-call-merge":"material/call-merge.svg","material-call-missed":"material/call-missed.svg","material-call-received":"material/call-received.svg","material-call-split":"material/call-split.svg","material-camcorder-off":"material/camcorder-off.svg","material-camcorder":"material/camcorder.svg","material-camera-account":"material/camera-account.svg","material-camera-burst":"material/camera-burst.svg","material-camera-control":"material/camera-control.svg","material-camera-document-off":"material/camera-document-off.svg","material-camera-document":"material/camera-document.svg","material-camera-enhance-outline":"material/camera-enhance-outline.svg","material-camera-enhance":"material/camera-enhance.svg","material-camera-flip-outline":"material/camera-flip-outline.svg","material-camera-flip":"material/camera-flip.svg","material-camera-front-variant":"material/camera-front-variant.svg","material-camera-front":"material/camera-front.svg","material-camera-gopro":"material/camera-gopro.svg","material-camera-image":"material/camera-image.svg","material-camera-iris":"material/camera-iris.svg","material-camera-lock-open-outline":"material/camera-lock-open-outline.svg","material-camera-lock-open":"material/camera-lock-open.svg","material-camera-lock-outline":"material/camera-lock-outline.svg","material-camera-lock":"material/camera-lock.svg","material-camera-marker-outline":"material/camera-marker-outline.svg","material-camera-marker":"material/camera-marker.svg","material-camera-metering-center":"material/camera-metering-center.svg","material-camera-metering-matrix":"material/camera-metering-matrix.svg","material-camera-metering-partial":"material/camera-metering-partial.svg","material-camera-metering-spot":"material/camera-metering-spot.svg","material-camera-off-outline":"material/camera-off-outline.svg","material-camera-off":"material/camera-off.svg","material-camera-outline":"material/camera-outline.svg","material-camera-party-mode":"material/camera-party-mode.svg","material-camera-plus-outline":"material/camera-plus-outline.svg","material-camera-plus":"material/camera-plus.svg","material-camera-rear-variant":"material/camera-rear-variant.svg","material-camera-rear":"material/camera-rear.svg","material-camera-retake-outline":"material/camera-retake-outline.svg","material-camera-retake":"material/camera-retake.svg","material-camera-switch-outline":"material/camera-switch-outline.svg","material-camera-switch":"material/camera-switch.svg","material-camera-timer":"material/camera-timer.svg","material-camera-wireless-outline":"material/camera-wireless-outline.svg","material-camera-wireless":"material/camera-wireless.svg","material-camera":"material/camera.svg","material-campfire":"material/campfire.svg","material-cancel":"material/cancel.svg","material-candelabra-fire":"material/candelabra-fire.svg","material-candelabra":"material/candelabra.svg","material-candle":"material/candle.svg","material-candy-off-outline":"material/candy-off-outline.svg","material-candy-off":"material/candy-off.svg","material-candy-outline":"material/candy-outline.svg","material-candy":"material/candy.svg","material-candycane":"material/candycane.svg","material-cannabis-off":"material/cannabis-off.svg","material-cannabis":"material/cannabis.svg","material-caps-lock":"material/caps-lock.svg","material-car-2-plus":"material/car-2-plus.svg","material-car-3-plus":"material/car-3-plus.svg","material-car-arrow-left":"material/car-arrow-left.svg","material-car-arrow-right":"material/car-arrow-right.svg","material-car-back":"material/car-back.svg","material-car-battery":"material/car-battery.svg","material-car-brake-abs":"material/car-brake-abs.svg","material-car-brake-alert":"material/car-brake-alert.svg","material-car-brake-fluid-level":"material/car-brake-fluid-level.svg","material-car-brake-hold":"material/car-brake-hold.svg","material-car-brake-low-pressure":"material/car-brake-low-pressure.svg","material-car-brake-parking":"material/car-brake-parking.svg","material-car-brake-retarder":"material/car-brake-retarder.svg","material-car-brake-temperature":"material/car-brake-temperature.svg","material-car-brake-worn-linings":"material/car-brake-worn-linings.svg","material-car-child-seat":"material/car-child-seat.svg","material-car-clock":"material/car-clock.svg","material-car-clutch":"material/car-clutch.svg","material-car-cog":"material/car-cog.svg","material-car-connected":"material/car-connected.svg","material-car-convertible":"material/car-convertible.svg","material-car-coolant-level":"material/car-coolant-level.svg","material-car-cruise-control":"material/car-cruise-control.svg","material-car-defrost-front":"material/car-defrost-front.svg","material-car-defrost-rear":"material/car-defrost-rear.svg","material-car-door-lock-open":"material/car-door-lock-open.svg","material-car-door-lock":"material/car-door-lock.svg","material-car-door":"material/car-door.svg","material-car-electric-outline":"material/car-electric-outline.svg","material-car-electric":"material/car-electric.svg","material-car-emergency":"material/car-emergency.svg","material-car-esp":"material/car-esp.svg","material-car-estate":"material/car-estate.svg","material-car-hatchback":"material/car-hatchback.svg","material-car-info":"material/car-info.svg","material-car-key":"material/car-key.svg","material-car-lifted-pickup":"material/car-lifted-pickup.svg","material-car-light-alert":"material/car-light-alert.svg","material-car-light-dimmed":"material/car-light-dimmed.svg","material-car-light-fog":"material/car-light-fog.svg","material-car-light-high":"material/car-light-high.svg","material-car-limousine":"material/car-limousine.svg","material-car-multiple":"material/car-multiple.svg","material-car-off":"material/car-off.svg","material-car-outline":"material/car-outline.svg","material-car-parking-lights":"material/car-parking-lights.svg","material-car-pickup":"material/car-pickup.svg","material-car-search-outline":"material/car-search-outline.svg","material-car-search":"material/car-search.svg","material-car-seat-cooler":"material/car-seat-cooler.svg","material-car-seat-heater":"material/car-seat-heater.svg","material-car-seat":"material/car-seat.svg","material-car-select":"material/car-select.svg","material-car-settings":"material/car-settings.svg","material-car-shift-pattern":"material/car-shift-pattern.svg","material-car-side":"material/car-side.svg","material-car-speed-limiter":"material/car-speed-limiter.svg","material-car-sports":"material/car-sports.svg","material-car-tire-alert":"material/car-tire-alert.svg","material-car-traction-control":"material/car-traction-control.svg","material-car-turbocharger":"material/car-turbocharger.svg","material-car-wash":"material/car-wash.svg","material-car-windshield-outline":"material/car-windshield-outline.svg","material-car-windshield":"material/car-windshield.svg","material-car-wireless":"material/car-wireless.svg","material-car-wrench":"material/car-wrench.svg","material-car":"material/car.svg","material-carabiner":"material/carabiner.svg","material-caravan":"material/caravan.svg","material-card-account-details-outline":"material/card-account-details-outline.svg","material-card-account-details-star-outline":"material/card-account-details-star-outline.svg","material-card-account-details-star":"material/card-account-details-star.svg","material-card-account-details":"material/card-account-details.svg","material-card-account-mail-outline":"material/card-account-mail-outline.svg","material-card-account-mail":"material/card-account-mail.svg","material-card-account-phone-outline":"material/card-account-phone-outline.svg","material-card-account-phone":"material/card-account-phone.svg","material-card-bulleted-off-outline":"material/card-bulleted-off-outline.svg","material-card-bulleted-off":"material/card-bulleted-off.svg","material-card-bulleted-outline":"material/card-bulleted-outline.svg","material-card-bulleted-settings-outline":"material/card-bulleted-settings-outline.svg","material-card-bulleted-settings":"material/card-bulleted-settings.svg","material-card-bulleted":"material/card-bulleted.svg","material-card-minus-outline":"material/card-minus-outline.svg","material-card-minus":"material/card-minus.svg","material-card-multiple-outline":"material/card-multiple-outline.svg","material-card-multiple":"material/card-multiple.svg","material-card-off-outline":"material/card-off-outline.svg","material-card-off":"material/card-off.svg","material-card-outline":"material/card-outline.svg","material-card-plus-outline":"material/card-plus-outline.svg","material-card-plus":"material/card-plus.svg","material-card-remove-outline":"material/card-remove-outline.svg","material-card-remove":"material/card-remove.svg","material-card-search-outline":"material/card-search-outline.svg","material-card-search":"material/card-search.svg","material-card-text-outline":"material/card-text-outline.svg","material-card-text":"material/card-text.svg","material-card":"material/card.svg","material-cards-club-outline":"material/cards-club-outline.svg","material-cards-club":"material/cards-club.svg","material-cards-diamond-outline":"material/cards-diamond-outline.svg","material-cards-diamond":"material/cards-diamond.svg","material-cards-heart-outline":"material/cards-heart-outline.svg","material-cards-heart":"material/cards-heart.svg","material-cards-outline":"material/cards-outline.svg","material-cards-playing-club-multiple-outline":"material/cards-playing-club-multiple-outline.svg","material-cards-playing-club-multiple":"material/cards-playing-club-multiple.svg","material-cards-playing-club-outline":"material/cards-playing-club-outline.svg","material-cards-playing-club":"material/cards-playing-club.svg","material-cards-playing-diamond-multiple-outline":"material/cards-playing-diamond-multiple-outline.svg","material-cards-playing-diamond-multiple":"material/cards-playing-diamond-multiple.svg","material-cards-playing-diamond-outline":"material/cards-playing-diamond-outline.svg","material-cards-playing-diamond":"material/cards-playing-diamond.svg","material-cards-playing-heart-multiple-outline":"material/cards-playing-heart-multiple-outline.svg","material-cards-playing-heart-multiple":"material/cards-playing-heart-multiple.svg","material-cards-playing-heart-outline":"material/cards-playing-heart-outline.svg","material-cards-playing-heart":"material/cards-playing-heart.svg","material-cards-playing-outline":"material/cards-playing-outline.svg","material-cards-playing-spade-multiple-outline":"material/cards-playing-spade-multiple-outline.svg","material-cards-playing-spade-multiple":"material/cards-playing-spade-multiple.svg","material-cards-playing-spade-outline":"material/cards-playing-spade-outline.svg","material-cards-playing-spade":"material/cards-playing-spade.svg","material-cards-playing":"material/cards-playing.svg","material-cards-spade-outline":"material/cards-spade-outline.svg","material-cards-spade":"material/cards-spade.svg","material-cards-variant":"material/cards-variant.svg","material-cards":"material/cards.svg","material-carrot":"material/carrot.svg","material-cart-arrow-down":"material/cart-arrow-down.svg","material-cart-arrow-right":"material/cart-arrow-right.svg","material-cart-arrow-up":"material/cart-arrow-up.svg","material-cart-check":"material/cart-check.svg","material-cart-heart":"material/cart-heart.svg","material-cart-minus":"material/cart-minus.svg","material-cart-off":"material/cart-off.svg","material-cart-outline":"material/cart-outline.svg","material-cart-percent":"material/cart-percent.svg","material-cart-plus":"material/cart-plus.svg","material-cart-remove":"material/cart-remove.svg","material-cart-variant":"material/cart-variant.svg","material-cart":"material/cart.svg","material-case-sensitive-alt":"material/case-sensitive-alt.svg","material-cash-100":"material/cash-100.svg","material-cash-check":"material/cash-check.svg","material-cash-clock":"material/cash-clock.svg","material-cash-edit":"material/cash-edit.svg","material-cash-fast":"material/cash-fast.svg","material-cash-lock-open":"material/cash-lock-open.svg","material-cash-lock":"material/cash-lock.svg","material-cash-marker":"material/cash-marker.svg","material-cash-minus":"material/cash-minus.svg","material-cash-multiple":"material/cash-multiple.svg","material-cash-off":"material/cash-off.svg","material-cash-plus":"material/cash-plus.svg","material-cash-refund":"material/cash-refund.svg","material-cash-register":"material/cash-register.svg","material-cash-remove":"material/cash-remove.svg","material-cash-sync":"material/cash-sync.svg","material-cash":"material/cash.svg","material-cassette":"material/cassette.svg","material-cast-audio-variant":"material/cast-audio-variant.svg","material-cast-audio":"material/cast-audio.svg","material-cast-connected":"material/cast-connected.svg","material-cast-education":"material/cast-education.svg","material-cast-off":"material/cast-off.svg","material-cast-variant":"material/cast-variant.svg","material-cast":"material/cast.svg","material-castle":"material/castle.svg","material-cat":"material/cat.svg","material-cctv-off":"material/cctv-off.svg","material-cctv":"material/cctv.svg","material-ceiling-fan-light":"material/ceiling-fan-light.svg","material-ceiling-fan":"material/ceiling-fan.svg","material-ceiling-light-multiple-outline":"material/ceiling-light-multiple-outline.svg","material-ceiling-light-multiple":"material/ceiling-light-multiple.svg","material-ceiling-light-outline":"material/ceiling-light-outline.svg","material-ceiling-light":"material/ceiling-light.svg","material-cellphone-arrow-down-variant":"material/cellphone-arrow-down-variant.svg","material-cellphone-arrow-down":"material/cellphone-arrow-down.svg","material-cellphone-basic":"material/cellphone-basic.svg","material-cellphone-charging":"material/cellphone-charging.svg","material-cellphone-check":"material/cellphone-check.svg","material-cellphone-cog":"material/cellphone-cog.svg","material-cellphone-dock":"material/cellphone-dock.svg","material-cellphone-information":"material/cellphone-information.svg","material-cellphone-key":"material/cellphone-key.svg","material-cellphone-link-off":"material/cellphone-link-off.svg","material-cellphone-link":"material/cellphone-link.svg","material-cellphone-lock":"material/cellphone-lock.svg","material-cellphone-marker":"material/cellphone-marker.svg","material-cellphone-message-off":"material/cellphone-message-off.svg","material-cellphone-message":"material/cellphone-message.svg","material-cellphone-nfc-off":"material/cellphone-nfc-off.svg","material-cellphone-nfc":"material/cellphone-nfc.svg","material-cellphone-off":"material/cellphone-off.svg","material-cellphone-play":"material/cellphone-play.svg","material-cellphone-remove":"material/cellphone-remove.svg","material-cellphone-screenshot":"material/cellphone-screenshot.svg","material-cellphone-settings":"material/cellphone-settings.svg","material-cellphone-sound":"material/cellphone-sound.svg","material-cellphone-text":"material/cellphone-text.svg","material-cellphone-wireless":"material/cellphone-wireless.svg","material-cellphone":"material/cellphone.svg","material-centos":"material/centos.svg","material-certificate-outline":"material/certificate-outline.svg","material-certificate":"material/certificate.svg","material-chair-rolling":"material/chair-rolling.svg","material-chair-school":"material/chair-school.svg","material-chandelier":"material/chandelier.svg","material-charity-search":"material/charity-search.svg","material-charity":"material/charity.svg","material-chart-arc":"material/chart-arc.svg","material-chart-areaspline-variant":"material/chart-areaspline-variant.svg","material-chart-areaspline":"material/chart-areaspline.svg","material-chart-bar-stacked":"material/chart-bar-stacked.svg","material-chart-bar":"material/chart-bar.svg","material-chart-bell-curve-cumulative":"material/chart-bell-curve-cumulative.svg","material-chart-bell-curve":"material/chart-bell-curve.svg","material-chart-box-multiple-outline":"material/chart-box-multiple-outline.svg","material-chart-box-multiple":"material/chart-box-multiple.svg","material-chart-box-outline":"material/chart-box-outline.svg","material-chart-box-plus-outline":"material/chart-box-plus-outline.svg","material-chart-box":"material/chart-box.svg","material-chart-bubble":"material/chart-bubble.svg","material-chart-donut-variant":"material/chart-donut-variant.svg","material-chart-donut":"material/chart-donut.svg","material-chart-gantt":"material/chart-gantt.svg","material-chart-histogram":"material/chart-histogram.svg","material-chart-line-stacked":"material/chart-line-stacked.svg","material-chart-line-variant":"material/chart-line-variant.svg","material-chart-line":"material/chart-line.svg","material-chart-multiline":"material/chart-multiline.svg","material-chart-multiple":"material/chart-multiple.svg","material-chart-pie-outline":"material/chart-pie-outline.svg","material-chart-pie":"material/chart-pie.svg","material-chart-ppf":"material/chart-ppf.svg","material-chart-sankey-variant":"material/chart-sankey-variant.svg","material-chart-sankey":"material/chart-sankey.svg","material-chart-scatter-plot-hexbin":"material/chart-scatter-plot-hexbin.svg","material-chart-scatter-plot":"material/chart-scatter-plot.svg","material-chart-timeline-variant-shimmer":"material/chart-timeline-variant-shimmer.svg","material-chart-timeline-variant":"material/chart-timeline-variant.svg","material-chart-timeline":"material/chart-timeline.svg","material-chart-tree":"material/chart-tree.svg","material-chart-waterfall":"material/chart-waterfall.svg","material-chat-alert-outline":"material/chat-alert-outline.svg","material-chat-alert":"material/chat-alert.svg","material-chat-minus-outline":"material/chat-minus-outline.svg","material-chat-minus":"material/chat-minus.svg","material-chat-outline":"material/chat-outline.svg","material-chat-plus-outline":"material/chat-plus-outline.svg","material-chat-plus":"material/chat-plus.svg","material-chat-processing-outline":"material/chat-processing-outline.svg","material-chat-processing":"material/chat-processing.svg","material-chat-question-outline":"material/chat-question-outline.svg","material-chat-question":"material/chat-question.svg","material-chat-remove-outline":"material/chat-remove-outline.svg","material-chat-remove":"material/chat-remove.svg","material-chat-sleep-outline":"material/chat-sleep-outline.svg","material-chat-sleep":"material/chat-sleep.svg","material-chat":"material/chat.svg","material-check-all":"material/check-all.svg","material-check-bold":"material/check-bold.svg","material-check-circle-outline":"material/check-circle-outline.svg","material-check-circle":"material/check-circle.svg","material-check-decagram-outline":"material/check-decagram-outline.svg","material-check-decagram":"material/check-decagram.svg","material-check-network-outline":"material/check-network-outline.svg","material-check-network":"material/check-network.svg","material-check-outline":"material/check-outline.svg","material-check-underline-circle-outline":"material/check-underline-circle-outline.svg","material-check-underline-circle":"material/check-underline-circle.svg","material-check-underline":"material/check-underline.svg","material-check":"material/check.svg","material-checkbook-arrow-left":"material/checkbook-arrow-left.svg","material-checkbook-arrow-right":"material/checkbook-arrow-right.svg","material-checkbook":"material/checkbook.svg","material-checkbox-blank-badge-outline":"material/checkbox-blank-badge-outline.svg","material-checkbox-blank-badge":"material/checkbox-blank-badge.svg","material-checkbox-blank-circle-outline":"material/checkbox-blank-circle-outline.svg","material-checkbox-blank-circle":"material/checkbox-blank-circle.svg","material-checkbox-blank-off-outline":"material/checkbox-blank-off-outline.svg","material-checkbox-blank-off":"material/checkbox-blank-off.svg","material-checkbox-blank-outline":"material/checkbox-blank-outline.svg","material-checkbox-blank":"material/checkbox-blank.svg","material-checkbox-intermediate-variant":"material/checkbox-intermediate-variant.svg","material-checkbox-intermediate":"material/checkbox-intermediate.svg","material-checkbox-marked-circle-auto-outline":"material/checkbox-marked-circle-auto-outline.svg","material-checkbox-marked-circle-minus-outline":"material/checkbox-marked-circle-minus-outline.svg","material-checkbox-marked-circle-outline":"material/checkbox-marked-circle-outline.svg","material-checkbox-marked-circle-plus-outline":"material/checkbox-marked-circle-plus-outline.svg","material-checkbox-marked-circle":"material/checkbox-marked-circle.svg","material-checkbox-marked-outline":"material/checkbox-marked-outline.svg","material-checkbox-marked":"material/checkbox-marked.svg","material-checkbox-multiple-blank-circle-outline":"material/checkbox-multiple-blank-circle-outline.svg","material-checkbox-multiple-blank-circle":"material/checkbox-multiple-blank-circle.svg","material-checkbox-multiple-blank-outline":"material/checkbox-multiple-blank-outline.svg","material-checkbox-multiple-blank":"material/checkbox-multiple-blank.svg","material-checkbox-multiple-marked-circle-outline":"material/checkbox-multiple-marked-circle-outline.svg","material-checkbox-multiple-marked-circle":"material/checkbox-multiple-marked-circle.svg","material-checkbox-multiple-marked-outline":"material/checkbox-multiple-marked-outline.svg","material-checkbox-multiple-marked":"material/checkbox-multiple-marked.svg","material-checkbox-multiple-outline":"material/checkbox-multiple-outline.svg","material-checkbox-outline":"material/checkbox-outline.svg","material-checkerboard-minus":"material/checkerboard-minus.svg","material-checkerboard-plus":"material/checkerboard-plus.svg","material-checkerboard-remove":"material/checkerboard-remove.svg","material-checkerboard":"material/checkerboard.svg","material-cheese-off":"material/cheese-off.svg","material-cheese":"material/cheese.svg","material-chef-hat":"material/chef-hat.svg","material-chemical-weapon":"material/chemical-weapon.svg","material-chess-bishop":"material/chess-bishop.svg","material-chess-king":"material/chess-king.svg","material-chess-knight":"material/chess-knight.svg","material-chess-pawn":"material/chess-pawn.svg","material-chess-queen":"material/chess-queen.svg","material-chess-rook":"material/chess-rook.svg","material-chevron-double-down":"material/chevron-double-down.svg","material-chevron-double-left":"material/chevron-double-left.svg","material-chevron-double-right":"material/chevron-double-right.svg","material-chevron-double-up":"material/chevron-double-up.svg","material-chevron-down-box-outline":"material/chevron-down-box-outline.svg","material-chevron-down-box":"material/chevron-down-box.svg","material-chevron-down-circle-outline":"material/chevron-down-circle-outline.svg","material-chevron-down-circle":"material/chevron-down-circle.svg","material-chevron-down":"material/chevron-down.svg","material-chevron-left-box-outline":"material/chevron-left-box-outline.svg","material-chevron-left-box":"material/chevron-left-box.svg","material-chevron-left-circle-outline":"material/chevron-left-circle-outline.svg","material-chevron-left-circle":"material/chevron-left-circle.svg","material-chevron-left":"material/chevron-left.svg","material-chevron-right-box-outline":"material/chevron-right-box-outline.svg","material-chevron-right-box":"material/chevron-right-box.svg","material-chevron-right-circle-outline":"material/chevron-right-circle-outline.svg","material-chevron-right-circle":"material/chevron-right-circle.svg","material-chevron-right":"material/chevron-right.svg","material-chevron-triple-down":"material/chevron-triple-down.svg","material-chevron-triple-left":"material/chevron-triple-left.svg","material-chevron-triple-right":"material/chevron-triple-right.svg","material-chevron-triple-up":"material/chevron-triple-up.svg","material-chevron-up-box-outline":"material/chevron-up-box-outline.svg","material-chevron-up-box":"material/chevron-up-box.svg","material-chevron-up-circle-outline":"material/chevron-up-circle-outline.svg","material-chevron-up-circle":"material/chevron-up-circle.svg","material-chevron-up":"material/chevron-up.svg","material-chili-alert-outline":"material/chili-alert-outline.svg","material-chili-alert":"material/chili-alert.svg","material-chili-hot-outline":"material/chili-hot-outline.svg","material-chili-hot":"material/chili-hot.svg","material-chili-medium-outline":"material/chili-medium-outline.svg","material-chili-medium":"material/chili-medium.svg","material-chili-mild-outline":"material/chili-mild-outline.svg","material-chili-mild":"material/chili-mild.svg","material-chili-off-outline":"material/chili-off-outline.svg","material-chili-off":"material/chili-off.svg","material-chip":"material/chip.svg","material-church-outline":"material/church-outline.svg","material-church":"material/church.svg","material-cigar-off":"material/cigar-off.svg","material-cigar":"material/cigar.svg","material-circle-box-outline":"material/circle-box-outline.svg","material-circle-box":"material/circle-box.svg","material-circle-double":"material/circle-double.svg","material-circle-edit-outline":"material/circle-edit-outline.svg","material-circle-expand":"material/circle-expand.svg","material-circle-half-full":"material/circle-half-full.svg","material-circle-half":"material/circle-half.svg","material-circle-medium":"material/circle-medium.svg","material-circle-multiple-outline":"material/circle-multiple-outline.svg","material-circle-multiple":"material/circle-multiple.svg","material-circle-off-outline":"material/circle-off-outline.svg","material-circle-opacity":"material/circle-opacity.svg","material-circle-outline":"material/circle-outline.svg","material-circle-slice-1":"material/circle-slice-1.svg","material-circle-slice-2":"material/circle-slice-2.svg","material-circle-slice-3":"material/circle-slice-3.svg","material-circle-slice-4":"material/circle-slice-4.svg","material-circle-slice-5":"material/circle-slice-5.svg","material-circle-slice-6":"material/circle-slice-6.svg","material-circle-slice-7":"material/circle-slice-7.svg","material-circle-slice-8":"material/circle-slice-8.svg","material-circle-small":"material/circle-small.svg","material-circle":"material/circle.svg","material-circular-saw":"material/circular-saw.svg","material-city-switch":"material/city-switch.svg","material-city-variant-outline":"material/city-variant-outline.svg","material-city-variant":"material/city-variant.svg","material-city":"material/city.svg","material-clipboard-account-outline":"material/clipboard-account-outline.svg","material-clipboard-account":"material/clipboard-account.svg","material-clipboard-alert-outline":"material/clipboard-alert-outline.svg","material-clipboard-alert":"material/clipboard-alert.svg","material-clipboard-arrow-down-outline":"material/clipboard-arrow-down-outline.svg","material-clipboard-arrow-down":"material/clipboard-arrow-down.svg","material-clipboard-arrow-left-outline":"material/clipboard-arrow-left-outline.svg","material-clipboard-arrow-left":"material/clipboard-arrow-left.svg","material-clipboard-arrow-right-outline":"material/clipboard-arrow-right-outline.svg","material-clipboard-arrow-right":"material/clipboard-arrow-right.svg","material-clipboard-arrow-up-outline":"material/clipboard-arrow-up-outline.svg","material-clipboard-arrow-up":"material/clipboard-arrow-up.svg","material-clipboard-check-multiple-outline":"material/clipboard-check-multiple-outline.svg","material-clipboard-check-multiple":"material/clipboard-check-multiple.svg","material-clipboard-check-outline":"material/clipboard-check-outline.svg","material-clipboard-check":"material/clipboard-check.svg","material-clipboard-clock-outline":"material/clipboard-clock-outline.svg","material-clipboard-clock":"material/clipboard-clock.svg","material-clipboard-edit-outline":"material/clipboard-edit-outline.svg","material-clipboard-edit":"material/clipboard-edit.svg","material-clipboard-file-outline":"material/clipboard-file-outline.svg","material-clipboard-file":"material/clipboard-file.svg","material-clipboard-flow-outline":"material/clipboard-flow-outline.svg","material-clipboard-flow":"material/clipboard-flow.svg","material-clipboard-list-outline":"material/clipboard-list-outline.svg","material-clipboard-list":"material/clipboard-list.svg","material-clipboard-minus-outline":"material/clipboard-minus-outline.svg","material-clipboard-minus":"material/clipboard-minus.svg","material-clipboard-multiple-outline":"material/clipboard-multiple-outline.svg","material-clipboard-multiple":"material/clipboard-multiple.svg","material-clipboard-off-outline":"material/clipboard-off-outline.svg","material-clipboard-off":"material/clipboard-off.svg","material-clipboard-outline":"material/clipboard-outline.svg","material-clipboard-play-multiple-outline":"material/clipboard-play-multiple-outline.svg","material-clipboard-play-multiple":"material/clipboard-play-multiple.svg","material-clipboard-play-outline":"material/clipboard-play-outline.svg","material-clipboard-play":"material/clipboard-play.svg","material-clipboard-plus-outline":"material/clipboard-plus-outline.svg","material-clipboard-plus":"material/clipboard-plus.svg","material-clipboard-pulse-outline":"material/clipboard-pulse-outline.svg","material-clipboard-pulse":"material/clipboard-pulse.svg","material-clipboard-remove-outline":"material/clipboard-remove-outline.svg","material-clipboard-remove":"material/clipboard-remove.svg","material-clipboard-search-outline":"material/clipboard-search-outline.svg","material-clipboard-search":"material/clipboard-search.svg","material-clipboard-text-clock-outline":"material/clipboard-text-clock-outline.svg","material-clipboard-text-clock":"material/clipboard-text-clock.svg","material-clipboard-text-multiple-outline":"material/clipboard-text-multiple-outline.svg","material-clipboard-text-multiple":"material/clipboard-text-multiple.svg","material-clipboard-text-off-outline":"material/clipboard-text-off-outline.svg","material-clipboard-text-off":"material/clipboard-text-off.svg","material-clipboard-text-outline":"material/clipboard-text-outline.svg","material-clipboard-text-play-outline":"material/clipboard-text-play-outline.svg","material-clipboard-text-play":"material/clipboard-text-play.svg","material-clipboard-text-search-outline":"material/clipboard-text-search-outline.svg","material-clipboard-text-search":"material/clipboard-text-search.svg","material-clipboard-text":"material/clipboard-text.svg","material-clipboard":"material/clipboard.svg","material-clippy":"material/clippy.svg","material-clock-alert-outline":"material/clock-alert-outline.svg","material-clock-alert":"material/clock-alert.svg","material-clock-check-outline":"material/clock-check-outline.svg","material-clock-check":"material/clock-check.svg","material-clock-digital":"material/clock-digital.svg","material-clock-edit-outline":"material/clock-edit-outline.svg","material-clock-edit":"material/clock-edit.svg","material-clock-end":"material/clock-end.svg","material-clock-fast":"material/clock-fast.svg","material-clock-in":"material/clock-in.svg","material-clock-minus-outline":"material/clock-minus-outline.svg","material-clock-minus":"material/clock-minus.svg","material-clock-out":"material/clock-out.svg","material-clock-outline":"material/clock-outline.svg","material-clock-plus-outline":"material/clock-plus-outline.svg","material-clock-plus":"material/clock-plus.svg","material-clock-remove-outline":"material/clock-remove-outline.svg","material-clock-remove":"material/clock-remove.svg","material-clock-star-four-points-outline":"material/clock-star-four-points-outline.svg","material-clock-star-four-points":"material/clock-star-four-points.svg","material-clock-start":"material/clock-start.svg","material-clock-time-eight-outline":"material/clock-time-eight-outline.svg","material-clock-time-eight":"material/clock-time-eight.svg","material-clock-time-eleven-outline":"material/clock-time-eleven-outline.svg","material-clock-time-eleven":"material/clock-time-eleven.svg","material-clock-time-five-outline":"material/clock-time-five-outline.svg","material-clock-time-five":"material/clock-time-five.svg","material-clock-time-four-outline":"material/clock-time-four-outline.svg","material-clock-time-four":"material/clock-time-four.svg","material-clock-time-nine-outline":"material/clock-time-nine-outline.svg","material-clock-time-nine":"material/clock-time-nine.svg","material-clock-time-one-outline":"material/clock-time-one-outline.svg","material-clock-time-one":"material/clock-time-one.svg","material-clock-time-seven-outline":"material/clock-time-seven-outline.svg","material-clock-time-seven":"material/clock-time-seven.svg","material-clock-time-six-outline":"material/clock-time-six-outline.svg","material-clock-time-six":"material/clock-time-six.svg","material-clock-time-ten-outline":"material/clock-time-ten-outline.svg","material-clock-time-ten":"material/clock-time-ten.svg","material-clock-time-three-outline":"material/clock-time-three-outline.svg","material-clock-time-three":"material/clock-time-three.svg","material-clock-time-twelve-outline":"material/clock-time-twelve-outline.svg","material-clock-time-twelve":"material/clock-time-twelve.svg","material-clock-time-two-outline":"material/clock-time-two-outline.svg","material-clock-time-two":"material/clock-time-two.svg","material-clock":"material/clock.svg","material-close-box-multiple-outline":"material/close-box-multiple-outline.svg","material-close-box-multiple":"material/close-box-multiple.svg","material-close-box-outline":"material/close-box-outline.svg","material-close-box":"material/close-box.svg","material-close-circle-multiple-outline":"material/close-circle-multiple-outline.svg","material-close-circle-multiple":"material/close-circle-multiple.svg","material-close-circle-outline":"material/close-circle-outline.svg","material-close-circle":"material/close-circle.svg","material-close-network-outline":"material/close-network-outline.svg","material-close-network":"material/close-network.svg","material-close-octagon-outline":"material/close-octagon-outline.svg","material-close-octagon":"material/close-octagon.svg","material-close-outline":"material/close-outline.svg","material-close-thick":"material/close-thick.svg","material-close":"material/close.svg","material-closed-caption-outline":"material/closed-caption-outline.svg","material-closed-caption":"material/closed-caption.svg","material-cloud-alert-outline":"material/cloud-alert-outline.svg","material-cloud-alert":"material/cloud-alert.svg","material-cloud-arrow-down-outline":"material/cloud-arrow-down-outline.svg","material-cloud-arrow-down":"material/cloud-arrow-down.svg","material-cloud-arrow-left-outline":"material/cloud-arrow-left-outline.svg","material-cloud-arrow-left":"material/cloud-arrow-left.svg","material-cloud-arrow-right-outline":"material/cloud-arrow-right-outline.svg","material-cloud-arrow-right":"material/cloud-arrow-right.svg","material-cloud-arrow-up-outline":"material/cloud-arrow-up-outline.svg","material-cloud-arrow-up":"material/cloud-arrow-up.svg","material-cloud-braces":"material/cloud-braces.svg","material-cloud-cancel-outline":"material/cloud-cancel-outline.svg","material-cloud-cancel":"material/cloud-cancel.svg","material-cloud-check-outline":"material/cloud-check-outline.svg","material-cloud-check-variant-outline":"material/cloud-check-variant-outline.svg","material-cloud-check-variant":"material/cloud-check-variant.svg","material-cloud-check":"material/cloud-check.svg","material-cloud-circle-outline":"material/cloud-circle-outline.svg","material-cloud-circle":"material/cloud-circle.svg","material-cloud-clock-outline":"material/cloud-clock-outline.svg","material-cloud-clock":"material/cloud-clock.svg","material-cloud-cog-outline":"material/cloud-cog-outline.svg","material-cloud-cog":"material/cloud-cog.svg","material-cloud-download-outline":"material/cloud-download-outline.svg","material-cloud-download":"material/cloud-download.svg","material-cloud-key-outline":"material/cloud-key-outline.svg","material-cloud-key":"material/cloud-key.svg","material-cloud-lock-open-outline":"material/cloud-lock-open-outline.svg","material-cloud-lock-open":"material/cloud-lock-open.svg","material-cloud-lock-outline":"material/cloud-lock-outline.svg","material-cloud-lock":"material/cloud-lock.svg","material-cloud-minus-outline":"material/cloud-minus-outline.svg","material-cloud-minus":"material/cloud-minus.svg","material-cloud-off-outline":"material/cloud-off-outline.svg","material-cloud-off":"material/cloud-off.svg","material-cloud-outline":"material/cloud-outline.svg","material-cloud-percent-outline":"material/cloud-percent-outline.svg","material-cloud-percent":"material/cloud-percent.svg","material-cloud-plus-outline":"material/cloud-plus-outline.svg","material-cloud-plus":"material/cloud-plus.svg","material-cloud-print-outline":"material/cloud-print-outline.svg","material-cloud-print":"material/cloud-print.svg","material-cloud-question-outline":"material/cloud-question-outline.svg","material-cloud-question":"material/cloud-question.svg","material-cloud-refresh-outline":"material/cloud-refresh-outline.svg","material-cloud-refresh-variant-outline":"material/cloud-refresh-variant-outline.svg","material-cloud-refresh-variant":"material/cloud-refresh-variant.svg","material-cloud-refresh":"material/cloud-refresh.svg","material-cloud-remove-outline":"material/cloud-remove-outline.svg","material-cloud-remove":"material/cloud-remove.svg","material-cloud-search-outline":"material/cloud-search-outline.svg","material-cloud-search":"material/cloud-search.svg","material-cloud-sync-outline":"material/cloud-sync-outline.svg","material-cloud-sync":"material/cloud-sync.svg","material-cloud-tags":"material/cloud-tags.svg","material-cloud-upload-outline":"material/cloud-upload-outline.svg","material-cloud-upload":"material/cloud-upload.svg","material-cloud":"material/cloud.svg","material-clouds":"material/clouds.svg","material-clover-outline":"material/clover-outline.svg","material-clover":"material/clover.svg","material-coach-lamp-variant":"material/coach-lamp-variant.svg","material-coach-lamp":"material/coach-lamp.svg","material-coat-rack":"material/coat-rack.svg","material-code-array":"material/code-array.svg","material-code-block-braces":"material/code-block-braces.svg","material-code-block-brackets":"material/code-block-brackets.svg","material-code-block-parentheses":"material/code-block-parentheses.svg","material-code-block-tags":"material/code-block-tags.svg","material-code-braces-box":"material/code-braces-box.svg","material-code-braces":"material/code-braces.svg","material-code-brackets":"material/code-brackets.svg","material-code-equal":"material/code-equal.svg","material-code-greater-than-or-equal":"material/code-greater-than-or-equal.svg","material-code-greater-than":"material/code-greater-than.svg","material-code-json":"material/code-json.svg","material-code-less-than-or-equal":"material/code-less-than-or-equal.svg","material-code-less-than":"material/code-less-than.svg","material-code-not-equal-variant":"material/code-not-equal-variant.svg","material-code-not-equal":"material/code-not-equal.svg","material-code-parentheses-box":"material/code-parentheses-box.svg","material-code-parentheses":"material/code-parentheses.svg","material-code-string":"material/code-string.svg","material-code-tags-check":"material/code-tags-check.svg","material-code-tags":"material/code-tags.svg","material-codepen":"material/codepen.svg","material-coffee-maker-check-outline":"material/coffee-maker-check-outline.svg","material-coffee-maker-check":"material/coffee-maker-check.svg","material-coffee-maker-outline":"material/coffee-maker-outline.svg","material-coffee-maker":"material/coffee-maker.svg","material-coffee-off-outline":"material/coffee-off-outline.svg","material-coffee-off":"material/coffee-off.svg","material-coffee-outline":"material/coffee-outline.svg","material-coffee-to-go-outline":"material/coffee-to-go-outline.svg","material-coffee-to-go":"material/coffee-to-go.svg","material-coffee":"material/coffee.svg","material-coffin":"material/coffin.svg","material-cog-box":"material/cog-box.svg","material-cog-clockwise":"material/cog-clockwise.svg","material-cog-counterclockwise":"material/cog-counterclockwise.svg","material-cog-off-outline":"material/cog-off-outline.svg","material-cog-off":"material/cog-off.svg","material-cog-outline":"material/cog-outline.svg","material-cog-pause-outline":"material/cog-pause-outline.svg","material-cog-pause":"material/cog-pause.svg","material-cog-play-outline":"material/cog-play-outline.svg","material-cog-play":"material/cog-play.svg","material-cog-refresh-outline":"material/cog-refresh-outline.svg","material-cog-refresh":"material/cog-refresh.svg","material-cog-stop-outline":"material/cog-stop-outline.svg","material-cog-stop":"material/cog-stop.svg","material-cog-sync-outline":"material/cog-sync-outline.svg","material-cog-sync":"material/cog-sync.svg","material-cog-transfer-outline":"material/cog-transfer-outline.svg","material-cog-transfer":"material/cog-transfer.svg","material-cog":"material/cog.svg","material-cogs":"material/cogs.svg","material-collage":"material/collage.svg","material-collapse-all-outline":"material/collapse-all-outline.svg","material-collapse-all":"material/collapse-all.svg","material-color-helper":"material/color-helper.svg","material-comma-box-outline":"material/comma-box-outline.svg","material-comma-box":"material/comma-box.svg","material-comma-circle-outline":"material/comma-circle-outline.svg","material-comma-circle":"material/comma-circle.svg","material-comma":"material/comma.svg","material-comment-account-outline":"material/comment-account-outline.svg","material-comment-account":"material/comment-account.svg","material-comment-alert-outline":"material/comment-alert-outline.svg","material-comment-alert":"material/comment-alert.svg","material-comment-arrow-left-outline":"material/comment-arrow-left-outline.svg","material-comment-arrow-left":"material/comment-arrow-left.svg","material-comment-arrow-right-outline":"material/comment-arrow-right-outline.svg","material-comment-arrow-right":"material/comment-arrow-right.svg","material-comment-bookmark-outline":"material/comment-bookmark-outline.svg","material-comment-bookmark":"material/comment-bookmark.svg","material-comment-check-outline":"material/comment-check-outline.svg","material-comment-check":"material/comment-check.svg","material-comment-edit-outline":"material/comment-edit-outline.svg","material-comment-edit":"material/comment-edit.svg","material-comment-eye-outline":"material/comment-eye-outline.svg","material-comment-eye":"material/comment-eye.svg","material-comment-flash-outline":"material/comment-flash-outline.svg","material-comment-flash":"material/comment-flash.svg","material-comment-minus-outline":"material/comment-minus-outline.svg","material-comment-minus":"material/comment-minus.svg","material-comment-multiple-outline":"material/comment-multiple-outline.svg","material-comment-multiple":"material/comment-multiple.svg","material-comment-off-outline":"material/comment-off-outline.svg","material-comment-off":"material/comment-off.svg","material-comment-outline":"material/comment-outline.svg","material-comment-plus-outline":"material/comment-plus-outline.svg","material-comment-plus":"material/comment-plus.svg","material-comment-processing-outline":"material/comment-processing-outline.svg","material-comment-processing":"material/comment-processing.svg","material-comment-question-outline":"material/comment-question-outline.svg","material-comment-question":"material/comment-question.svg","material-comment-quote-outline":"material/comment-quote-outline.svg","material-comment-quote":"material/comment-quote.svg","material-comment-remove-outline":"material/comment-remove-outline.svg","material-comment-remove":"material/comment-remove.svg","material-comment-search-outline":"material/comment-search-outline.svg","material-comment-search":"material/comment-search.svg","material-comment-text-multiple-outline":"material/comment-text-multiple-outline.svg","material-comment-text-multiple":"material/comment-text-multiple.svg","material-comment-text-outline":"material/comment-text-outline.svg","material-comment-text":"material/comment-text.svg","material-comment":"material/comment.svg","material-compare-horizontal":"material/compare-horizontal.svg","material-compare-remove":"material/compare-remove.svg","material-compare-vertical":"material/compare-vertical.svg","material-compare":"material/compare.svg","material-compass-off-outline":"material/compass-off-outline.svg","material-compass-off":"material/compass-off.svg","material-compass-outline":"material/compass-outline.svg","material-compass-rose":"material/compass-rose.svg","material-compass":"material/compass.svg","material-compost":"material/compost.svg","material-cone-off":"material/cone-off.svg","material-cone":"material/cone.svg","material-connection":"material/connection.svg","material-console-line":"material/console-line.svg","material-console-network-outline":"material/console-network-outline.svg","material-console-network":"material/console-network.svg","material-console":"material/console.svg","material-consolidate":"material/consolidate.svg","material-contactless-payment-circle-outline":"material/contactless-payment-circle-outline.svg","material-contactless-payment-circle":"material/contactless-payment-circle.svg","material-contactless-payment":"material/contactless-payment.svg","material-contacts-outline":"material/contacts-outline.svg","material-contacts":"material/contacts.svg","material-contain-end":"material/contain-end.svg","material-contain-start":"material/contain-start.svg","material-contain":"material/contain.svg","material-content-copy":"material/content-copy.svg","material-content-cut":"material/content-cut.svg","material-content-duplicate":"material/content-duplicate.svg","material-content-paste":"material/content-paste.svg","material-content-save-alert-outline":"material/content-save-alert-outline.svg","material-content-save-alert":"material/content-save-alert.svg","material-content-save-all-outline":"material/content-save-all-outline.svg","material-content-save-all":"material/content-save-all.svg","material-content-save-check-outline":"material/content-save-check-outline.svg","material-content-save-check":"material/content-save-check.svg","material-content-save-cog-outline":"material/content-save-cog-outline.svg","material-content-save-cog":"material/content-save-cog.svg","material-content-save-edit-outline":"material/content-save-edit-outline.svg","material-content-save-edit":"material/content-save-edit.svg","material-content-save-minus-outline":"material/content-save-minus-outline.svg","material-content-save-minus":"material/content-save-minus.svg","material-content-save-move-outline":"material/content-save-move-outline.svg","material-content-save-move":"material/content-save-move.svg","material-content-save-off-outline":"material/content-save-off-outline.svg","material-content-save-off":"material/content-save-off.svg","material-content-save-outline":"material/content-save-outline.svg","material-content-save-plus-outline":"material/content-save-plus-outline.svg","material-content-save-plus":"material/content-save-plus.svg","material-content-save-settings-outline":"material/content-save-settings-outline.svg","material-content-save-settings":"material/content-save-settings.svg","material-content-save":"material/content-save.svg","material-contrast-box":"material/contrast-box.svg","material-contrast-circle":"material/contrast-circle.svg","material-contrast":"material/contrast.svg","material-controller-classic-outline":"material/controller-classic-outline.svg","material-controller-classic":"material/controller-classic.svg","material-controller-off":"material/controller-off.svg","material-controller":"material/controller.svg","material-cookie-alert-outline":"material/cookie-alert-outline.svg","material-cookie-alert":"material/cookie-alert.svg","material-cookie-check-outline":"material/cookie-check-outline.svg","material-cookie-check":"material/cookie-check.svg","material-cookie-clock-outline":"material/cookie-clock-outline.svg","material-cookie-clock":"material/cookie-clock.svg","material-cookie-cog-outline":"material/cookie-cog-outline.svg","material-cookie-cog":"material/cookie-cog.svg","material-cookie-edit-outline":"material/cookie-edit-outline.svg","material-cookie-edit":"material/cookie-edit.svg","material-cookie-lock-outline":"material/cookie-lock-outline.svg","material-cookie-lock":"material/cookie-lock.svg","material-cookie-minus-outline":"material/cookie-minus-outline.svg","material-cookie-minus":"material/cookie-minus.svg","material-cookie-off-outline":"material/cookie-off-outline.svg","material-cookie-off":"material/cookie-off.svg","material-cookie-outline":"material/cookie-outline.svg","material-cookie-plus-outline":"material/cookie-plus-outline.svg","material-cookie-plus":"material/cookie-plus.svg","material-cookie-refresh-outline":"material/cookie-refresh-outline.svg","material-cookie-refresh":"material/cookie-refresh.svg","material-cookie-remove-outline":"material/cookie-remove-outline.svg","material-cookie-remove":"material/cookie-remove.svg","material-cookie-settings-outline":"material/cookie-settings-outline.svg","material-cookie-settings":"material/cookie-settings.svg","material-cookie":"material/cookie.svg","material-coolant-temperature":"material/coolant-temperature.svg","material-copyleft":"material/copyleft.svg","material-copyright":"material/copyright.svg","material-cordova":"material/cordova.svg","material-corn-off":"material/corn-off.svg","material-corn":"material/corn.svg","material-cosine-wave":"material/cosine-wave.svg","material-counter":"material/counter.svg","material-countertop-outline":"material/countertop-outline.svg","material-countertop":"material/countertop.svg","material-cow-off":"material/cow-off.svg","material-cow":"material/cow.svg","material-cpu-32-bit":"material/cpu-32-bit.svg","material-cpu-64-bit":"material/cpu-64-bit.svg","material-cradle-outline":"material/cradle-outline.svg","material-cradle":"material/cradle.svg","material-crane":"material/crane.svg","material-creation-outline":"material/creation-outline.svg","material-creation":"material/creation.svg","material-creative-commons":"material/creative-commons.svg","material-credit-card-check-outline":"material/credit-card-check-outline.svg","material-credit-card-check":"material/credit-card-check.svg","material-credit-card-chip-outline":"material/credit-card-chip-outline.svg","material-credit-card-chip":"material/credit-card-chip.svg","material-credit-card-clock-outline":"material/credit-card-clock-outline.svg","material-credit-card-clock":"material/credit-card-clock.svg","material-credit-card-edit-outline":"material/credit-card-edit-outline.svg","material-credit-card-edit":"material/credit-card-edit.svg","material-credit-card-fast-outline":"material/credit-card-fast-outline.svg","material-credit-card-fast":"material/credit-card-fast.svg","material-credit-card-lock-outline":"material/credit-card-lock-outline.svg","material-credit-card-lock":"material/credit-card-lock.svg","material-credit-card-marker-outline":"material/credit-card-marker-outline.svg","material-credit-card-marker":"material/credit-card-marker.svg","material-credit-card-minus-outline":"material/credit-card-minus-outline.svg","material-credit-card-minus":"material/credit-card-minus.svg","material-credit-card-multiple-outline":"material/credit-card-multiple-outline.svg","material-credit-card-multiple":"material/credit-card-multiple.svg","material-credit-card-off-outline":"material/credit-card-off-outline.svg","material-credit-card-off":"material/credit-card-off.svg","material-credit-card-outline":"material/credit-card-outline.svg","material-credit-card-plus-outline":"material/credit-card-plus-outline.svg","material-credit-card-plus":"material/credit-card-plus.svg","material-credit-card-refresh-outline":"material/credit-card-refresh-outline.svg","material-credit-card-refresh":"material/credit-card-refresh.svg","material-credit-card-refund-outline":"material/credit-card-refund-outline.svg","material-credit-card-refund":"material/credit-card-refund.svg","material-credit-card-remove-outline":"material/credit-card-remove-outline.svg","material-credit-card-remove":"material/credit-card-remove.svg","material-credit-card-scan-outline":"material/credit-card-scan-outline.svg","material-credit-card-scan":"material/credit-card-scan.svg","material-credit-card-search-outline":"material/credit-card-search-outline.svg","material-credit-card-search":"material/credit-card-search.svg","material-credit-card-settings-outline":"material/credit-card-settings-outline.svg","material-credit-card-settings":"material/credit-card-settings.svg","material-credit-card-sync-outline":"material/credit-card-sync-outline.svg","material-credit-card-sync":"material/credit-card-sync.svg","material-credit-card-wireless-off-outline":"material/credit-card-wireless-off-outline.svg","material-credit-card-wireless-off":"material/credit-card-wireless-off.svg","material-credit-card-wireless-outline":"material/credit-card-wireless-outline.svg","material-credit-card-wireless":"material/credit-card-wireless.svg","material-credit-card":"material/credit-card.svg","material-cricket":"material/cricket.svg","material-crop-free":"material/crop-free.svg","material-crop-landscape":"material/crop-landscape.svg","material-crop-portrait":"material/crop-portrait.svg","material-crop-rotate":"material/crop-rotate.svg","material-crop-square":"material/crop-square.svg","material-crop":"material/crop.svg","material-cross-bolnisi":"material/cross-bolnisi.svg","material-cross-celtic":"material/cross-celtic.svg","material-cross-outline":"material/cross-outline.svg","material-cross":"material/cross.svg","material-crosshairs-gps":"material/crosshairs-gps.svg","material-crosshairs-off":"material/crosshairs-off.svg","material-crosshairs-question":"material/crosshairs-question.svg","material-crosshairs":"material/crosshairs.svg","material-crowd":"material/crowd.svg","material-crown-circle-outline":"material/crown-circle-outline.svg","material-crown-circle":"material/crown-circle.svg","material-crown-outline":"material/crown-outline.svg","material-crown":"material/crown.svg","material-cryengine":"material/cryengine.svg","material-crystal-ball":"material/crystal-ball.svg","material-cube-off-outline":"material/cube-off-outline.svg","material-cube-off":"material/cube-off.svg","material-cube-outline":"material/cube-outline.svg","material-cube-scan":"material/cube-scan.svg","material-cube-send":"material/cube-send.svg","material-cube-unfolded":"material/cube-unfolded.svg","material-cube":"material/cube.svg","material-cup-off-outline":"material/cup-off-outline.svg","material-cup-off":"material/cup-off.svg","material-cup-outline":"material/cup-outline.svg","material-cup-water":"material/cup-water.svg","material-cup":"material/cup.svg","material-cupboard-outline":"material/cupboard-outline.svg","material-cupboard":"material/cupboard.svg","material-cupcake":"material/cupcake.svg","material-curling":"material/curling.svg","material-currency-bdt":"material/currency-bdt.svg","material-currency-brl":"material/currency-brl.svg","material-currency-btc":"material/currency-btc.svg","material-currency-cny":"material/currency-cny.svg","material-currency-eth":"material/currency-eth.svg","material-currency-eur-off":"material/currency-eur-off.svg","material-currency-eur":"material/currency-eur.svg","material-currency-fra":"material/currency-fra.svg","material-currency-gbp":"material/currency-gbp.svg","material-currency-ils":"material/currency-ils.svg","material-currency-inr":"material/currency-inr.svg","material-currency-jpy":"material/currency-jpy.svg","material-currency-krw":"material/currency-krw.svg","material-currency-kzt":"material/currency-kzt.svg","material-currency-mnt":"material/currency-mnt.svg","material-currency-ngn":"material/currency-ngn.svg","material-currency-php":"material/currency-php.svg","material-currency-rial":"material/currency-rial.svg","material-currency-rub":"material/currency-rub.svg","material-currency-rupee":"material/currency-rupee.svg","material-currency-sign":"material/currency-sign.svg","material-currency-thb":"material/currency-thb.svg","material-currency-try":"material/currency-try.svg","material-currency-twd":"material/currency-twd.svg","material-currency-uah":"material/currency-uah.svg","material-currency-usd-off":"material/currency-usd-off.svg","material-currency-usd":"material/currency-usd.svg","material-current-ac":"material/current-ac.svg","material-current-dc":"material/current-dc.svg","material-cursor-default-click-outline":"material/cursor-default-click-outline.svg","material-cursor-default-click":"material/cursor-default-click.svg","material-cursor-default-gesture-outline":"material/cursor-default-gesture-outline.svg","material-cursor-default-gesture":"material/cursor-default-gesture.svg","material-cursor-default-outline":"material/cursor-default-outline.svg","material-cursor-default":"material/cursor-default.svg","material-cursor-move":"material/cursor-move.svg","material-cursor-pointer":"material/cursor-pointer.svg","material-cursor-text":"material/cursor-text.svg","material-curtains-closed":"material/curtains-closed.svg","material-curtains":"material/curtains.svg","material-cylinder-off":"material/cylinder-off.svg","material-cylinder":"material/cylinder.svg","material-dance-ballroom":"material/dance-ballroom.svg","material-dance-pole":"material/dance-pole.svg","material-data-matrix-edit":"material/data-matrix-edit.svg","material-data-matrix-minus":"material/data-matrix-minus.svg","material-data-matrix-plus":"material/data-matrix-plus.svg","material-data-matrix-remove":"material/data-matrix-remove.svg","material-data-matrix-scan":"material/data-matrix-scan.svg","material-data-matrix":"material/data-matrix.svg","material-database-alert-outline":"material/database-alert-outline.svg","material-database-alert":"material/database-alert.svg","material-database-arrow-down-outline":"material/database-arrow-down-outline.svg","material-database-arrow-down":"material/database-arrow-down.svg","material-database-arrow-left-outline":"material/database-arrow-left-outline.svg","material-database-arrow-left":"material/database-arrow-left.svg","material-database-arrow-right-outline":"material/database-arrow-right-outline.svg","material-database-arrow-right":"material/database-arrow-right.svg","material-database-arrow-up-outline":"material/database-arrow-up-outline.svg","material-database-arrow-up":"material/database-arrow-up.svg","material-database-check-outline":"material/database-check-outline.svg","material-database-check":"material/database-check.svg","material-database-clock-outline":"material/database-clock-outline.svg","material-database-clock":"material/database-clock.svg","material-database-cog-outline":"material/database-cog-outline.svg","material-database-cog":"material/database-cog.svg","material-database-edit-outline":"material/database-edit-outline.svg","material-database-edit":"material/database-edit.svg","material-database-export-outline":"material/database-export-outline.svg","material-database-export":"material/database-export.svg","material-database-eye-off-outline":"material/database-eye-off-outline.svg","material-database-eye-off":"material/database-eye-off.svg","material-database-eye-outline":"material/database-eye-outline.svg","material-database-eye":"material/database-eye.svg","material-database-import-outline":"material/database-import-outline.svg","material-database-import":"material/database-import.svg","material-database-lock-outline":"material/database-lock-outline.svg","material-database-lock":"material/database-lock.svg","material-database-marker-outline":"material/database-marker-outline.svg","material-database-marker":"material/database-marker.svg","material-database-minus-outline":"material/database-minus-outline.svg","material-database-minus":"material/database-minus.svg","material-database-off-outline":"material/database-off-outline.svg","material-database-off":"material/database-off.svg","material-database-outline":"material/database-outline.svg","material-database-plus-outline":"material/database-plus-outline.svg","material-database-plus":"material/database-plus.svg","material-database-refresh-outline":"material/database-refresh-outline.svg","material-database-refresh":"material/database-refresh.svg","material-database-remove-outline":"material/database-remove-outline.svg","material-database-remove":"material/database-remove.svg","material-database-search-outline":"material/database-search-outline.svg","material-database-search":"material/database-search.svg","material-database-settings-outline":"material/database-settings-outline.svg","material-database-settings":"material/database-settings.svg","material-database-sync-outline":"material/database-sync-outline.svg","material-database-sync":"material/database-sync.svg","material-database":"material/database.svg","material-death-star-variant":"material/death-star-variant.svg","material-death-star":"material/death-star.svg","material-deathly-hallows":"material/deathly-hallows.svg","material-debian":"material/debian.svg","material-debug-step-into":"material/debug-step-into.svg","material-debug-step-out":"material/debug-step-out.svg","material-debug-step-over":"material/debug-step-over.svg","material-decagram-outline":"material/decagram-outline.svg","material-decagram":"material/decagram.svg","material-decimal-comma-decrease":"material/decimal-comma-decrease.svg","material-decimal-comma-increase":"material/decimal-comma-increase.svg","material-decimal-comma":"material/decimal-comma.svg","material-decimal-decrease":"material/decimal-decrease.svg","material-decimal-increase":"material/decimal-increase.svg","material-decimal":"material/decimal.svg","material-delete-alert-outline":"material/delete-alert-outline.svg","material-delete-alert":"material/delete-alert.svg","material-delete-circle-outline":"material/delete-circle-outline.svg","material-delete-circle":"material/delete-circle.svg","material-delete-clock-outline":"material/delete-clock-outline.svg","material-delete-clock":"material/delete-clock.svg","material-delete-empty-outline":"material/delete-empty-outline.svg","material-delete-empty":"material/delete-empty.svg","material-delete-forever-outline":"material/delete-forever-outline.svg","material-delete-forever":"material/delete-forever.svg","material-delete-off-outline":"material/delete-off-outline.svg","material-delete-off":"material/delete-off.svg","material-delete-outline":"material/delete-outline.svg","material-delete-restore":"material/delete-restore.svg","material-delete-sweep-outline":"material/delete-sweep-outline.svg","material-delete-sweep":"material/delete-sweep.svg","material-delete-variant":"material/delete-variant.svg","material-delete":"material/delete.svg","material-delta":"material/delta.svg","material-desk-lamp-off":"material/desk-lamp-off.svg","material-desk-lamp-on":"material/desk-lamp-on.svg","material-desk-lamp":"material/desk-lamp.svg","material-desk":"material/desk.svg","material-deskphone":"material/deskphone.svg","material-desktop-classic":"material/desktop-classic.svg","material-desktop-tower-monitor":"material/desktop-tower-monitor.svg","material-desktop-tower":"material/desktop-tower.svg","material-details":"material/details.svg","material-dev-to":"material/dev-to.svg","material-developer-board":"material/developer-board.svg","material-deviantart":"material/deviantart.svg","material-devices":"material/devices.svg","material-dharmachakra":"material/dharmachakra.svg","material-diabetes":"material/diabetes.svg","material-dialpad":"material/dialpad.svg","material-diameter-outline":"material/diameter-outline.svg","material-diameter-variant":"material/diameter-variant.svg","material-diameter":"material/diameter.svg","material-diamond-outline":"material/diamond-outline.svg","material-diamond-stone":"material/diamond-stone.svg","material-diamond":"material/diamond.svg","material-diaper-outline":"material/diaper-outline.svg","material-dice-1-outline":"material/dice-1-outline.svg","material-dice-1":"material/dice-1.svg","material-dice-2-outline":"material/dice-2-outline.svg","material-dice-2":"material/dice-2.svg","material-dice-3-outline":"material/dice-3-outline.svg","material-dice-3":"material/dice-3.svg","material-dice-4-outline":"material/dice-4-outline.svg","material-dice-4":"material/dice-4.svg","material-dice-5-outline":"material/dice-5-outline.svg","material-dice-5":"material/dice-5.svg","material-dice-6-outline":"material/dice-6-outline.svg","material-dice-6":"material/dice-6.svg","material-dice-d10-outline":"material/dice-d10-outline.svg","material-dice-d10":"material/dice-d10.svg","material-dice-d12-outline":"material/dice-d12-outline.svg","material-dice-d12":"material/dice-d12.svg","material-dice-d20-outline":"material/dice-d20-outline.svg","material-dice-d20":"material/dice-d20.svg","material-dice-d4-outline":"material/dice-d4-outline.svg","material-dice-d4":"material/dice-d4.svg","material-dice-d6-outline":"material/dice-d6-outline.svg","material-dice-d6":"material/dice-d6.svg","material-dice-d8-outline":"material/dice-d8-outline.svg","material-dice-d8":"material/dice-d8.svg","material-dice-multiple-outline":"material/dice-multiple-outline.svg","material-dice-multiple":"material/dice-multiple.svg","material-digital-ocean":"material/digital-ocean.svg","material-dip-switch":"material/dip-switch.svg","material-directions-fork":"material/directions-fork.svg","material-directions":"material/directions.svg","material-disc-alert":"material/disc-alert.svg","material-disc-player":"material/disc-player.svg","material-disc":"material/disc.svg","material-dishwasher-alert":"material/dishwasher-alert.svg","material-dishwasher-off":"material/dishwasher-off.svg","material-dishwasher":"material/dishwasher.svg","material-disqus":"material/disqus.svg","material-distribute-horizontal-center":"material/distribute-horizontal-center.svg","material-distribute-horizontal-left":"material/distribute-horizontal-left.svg","material-distribute-horizontal-right":"material/distribute-horizontal-right.svg","material-distribute-vertical-bottom":"material/distribute-vertical-bottom.svg","material-distribute-vertical-center":"material/distribute-vertical-center.svg","material-distribute-vertical-top":"material/distribute-vertical-top.svg","material-diversify":"material/diversify.svg","material-diving-flippers":"material/diving-flippers.svg","material-diving-helmet":"material/diving-helmet.svg","material-diving-scuba-flag":"material/diving-scuba-flag.svg","material-diving-scuba-mask":"material/diving-scuba-mask.svg","material-diving-scuba-tank-multiple":"material/diving-scuba-tank-multiple.svg","material-diving-scuba-tank":"material/diving-scuba-tank.svg","material-diving-scuba":"material/diving-scuba.svg","material-diving-snorkel":"material/diving-snorkel.svg","material-diving":"material/diving.svg","material-division-box":"material/division-box.svg","material-division":"material/division.svg","material-dlna":"material/dlna.svg","material-dna":"material/dna.svg","material-dns-outline":"material/dns-outline.svg","material-dns":"material/dns.svg","material-dock-bottom":"material/dock-bottom.svg","material-dock-left":"material/dock-left.svg","material-dock-right":"material/dock-right.svg","material-dock-top":"material/dock-top.svg","material-dock-window":"material/dock-window.svg","material-docker":"material/docker.svg","material-doctor":"material/doctor.svg","material-dog-service":"material/dog-service.svg","material-dog-side-off":"material/dog-side-off.svg","material-dog-side":"material/dog-side.svg","material-dog":"material/dog.svg","material-dolby":"material/dolby.svg","material-dolly":"material/dolly.svg","material-dolphin":"material/dolphin.svg","material-domain-off":"material/domain-off.svg","material-domain-plus":"material/domain-plus.svg","material-domain-remove":"material/domain-remove.svg","material-domain-switch":"material/domain-switch.svg","material-domain":"material/domain.svg","material-dome-light":"material/dome-light.svg","material-domino-mask":"material/domino-mask.svg","material-donkey":"material/donkey.svg","material-door-closed-cancel":"material/door-closed-cancel.svg","material-door-closed-lock":"material/door-closed-lock.svg","material-door-closed":"material/door-closed.svg","material-door-open":"material/door-open.svg","material-door-sliding-lock":"material/door-sliding-lock.svg","material-door-sliding-open":"material/door-sliding-open.svg","material-door-sliding":"material/door-sliding.svg","material-door":"material/door.svg","material-doorbell-video":"material/doorbell-video.svg","material-doorbell":"material/doorbell.svg","material-dot-net":"material/dot-net.svg","material-dots-circle":"material/dots-circle.svg","material-dots-grid":"material/dots-grid.svg","material-dots-hexagon":"material/dots-hexagon.svg","material-dots-horizontal-circle-outline":"material/dots-horizontal-circle-outline.svg","material-dots-horizontal-circle":"material/dots-horizontal-circle.svg","material-dots-horizontal":"material/dots-horizontal.svg","material-dots-square":"material/dots-square.svg","material-dots-triangle":"material/dots-triangle.svg","material-dots-vertical-circle-outline":"material/dots-vertical-circle-outline.svg","material-dots-vertical-circle":"material/dots-vertical-circle.svg","material-dots-vertical":"material/dots-vertical.svg","material-download-box-outline":"material/download-box-outline.svg","material-download-box":"material/download-box.svg","material-download-circle-outline":"material/download-circle-outline.svg","material-download-circle":"material/download-circle.svg","material-download-lock-outline":"material/download-lock-outline.svg","material-download-lock":"material/download-lock.svg","material-download-multiple-outline":"material/download-multiple-outline.svg","material-download-multiple":"material/download-multiple.svg","material-download-network-outline":"material/download-network-outline.svg","material-download-network":"material/download-network.svg","material-download-off-outline":"material/download-off-outline.svg","material-download-off":"material/download-off.svg","material-download-outline":"material/download-outline.svg","material-download":"material/download.svg","material-drag-horizontal-variant":"material/drag-horizontal-variant.svg","material-drag-horizontal":"material/drag-horizontal.svg","material-drag-variant":"material/drag-variant.svg","material-drag-vertical-variant":"material/drag-vertical-variant.svg","material-drag-vertical":"material/drag-vertical.svg","material-drag":"material/drag.svg","material-drama-masks":"material/drama-masks.svg","material-draw-pen":"material/draw-pen.svg","material-draw":"material/draw.svg","material-drawing-box":"material/drawing-box.svg","material-drawing":"material/drawing.svg","material-dresser-outline":"material/dresser-outline.svg","material-dresser":"material/dresser.svg","material-drone":"material/drone.svg","material-dropbox":"material/dropbox.svg","material-drupal":"material/drupal.svg","material-duck":"material/duck.svg","material-dumbbell":"material/dumbbell.svg","material-dump-truck":"material/dump-truck.svg","material-ear-hearing-loop":"material/ear-hearing-loop.svg","material-ear-hearing-off":"material/ear-hearing-off.svg","material-ear-hearing":"material/ear-hearing.svg","material-earbuds-off-outline":"material/earbuds-off-outline.svg","material-earbuds-off":"material/earbuds-off.svg","material-earbuds-outline":"material/earbuds-outline.svg","material-earbuds":"material/earbuds.svg","material-earth-arrow-down":"material/earth-arrow-down.svg","material-earth-arrow-left":"material/earth-arrow-left.svg","material-earth-arrow-right":"material/earth-arrow-right.svg","material-earth-arrow-up":"material/earth-arrow-up.svg","material-earth-box-minus":"material/earth-box-minus.svg","material-earth-box-off":"material/earth-box-off.svg","material-earth-box-plus":"material/earth-box-plus.svg","material-earth-box-remove":"material/earth-box-remove.svg","material-earth-box":"material/earth-box.svg","material-earth-minus":"material/earth-minus.svg","material-earth-off":"material/earth-off.svg","material-earth-plus":"material/earth-plus.svg","material-earth-remove":"material/earth-remove.svg","material-earth":"material/earth.svg","material-egg-easter":"material/egg-easter.svg","material-egg-fried":"material/egg-fried.svg","material-egg-off-outline":"material/egg-off-outline.svg","material-egg-off":"material/egg-off.svg","material-egg-outline":"material/egg-outline.svg","material-egg":"material/egg.svg","material-eiffel-tower":"material/eiffel-tower.svg","material-eight-track":"material/eight-track.svg","material-eject-circle-outline":"material/eject-circle-outline.svg","material-eject-circle":"material/eject-circle.svg","material-eject-outline":"material/eject-outline.svg","material-eject":"material/eject.svg","material-electric-switch-closed":"material/electric-switch-closed.svg","material-electric-switch":"material/electric-switch.svg","material-electron-framework":"material/electron-framework.svg","material-elephant":"material/elephant.svg","material-elevation-decline":"material/elevation-decline.svg","material-elevation-rise":"material/elevation-rise.svg","material-elevator-down":"material/elevator-down.svg","material-elevator-passenger-off-outline":"material/elevator-passenger-off-outline.svg","material-elevator-passenger-off":"material/elevator-passenger-off.svg","material-elevator-passenger-outline":"material/elevator-passenger-outline.svg","material-elevator-passenger":"material/elevator-passenger.svg","material-elevator-up":"material/elevator-up.svg","material-elevator":"material/elevator.svg","material-ellipse-outline":"material/ellipse-outline.svg","material-ellipse":"material/ellipse.svg","material-email-alert-outline":"material/email-alert-outline.svg","material-email-alert":"material/email-alert.svg","material-email-arrow-left-outline":"material/email-arrow-left-outline.svg","material-email-arrow-left":"material/email-arrow-left.svg","material-email-arrow-right-outline":"material/email-arrow-right-outline.svg","material-email-arrow-right":"material/email-arrow-right.svg","material-email-box":"material/email-box.svg","material-email-check-outline":"material/email-check-outline.svg","material-email-check":"material/email-check.svg","material-email-edit-outline":"material/email-edit-outline.svg","material-email-edit":"material/email-edit.svg","material-email-fast-outline":"material/email-fast-outline.svg","material-email-fast":"material/email-fast.svg","material-email-heart-outline":"material/email-heart-outline.svg","material-email-lock-outline":"material/email-lock-outline.svg","material-email-lock":"material/email-lock.svg","material-email-mark-as-unread":"material/email-mark-as-unread.svg","material-email-minus-outline":"material/email-minus-outline.svg","material-email-minus":"material/email-minus.svg","material-email-multiple-outline":"material/email-multiple-outline.svg","material-email-multiple":"material/email-multiple.svg","material-email-newsletter":"material/email-newsletter.svg","material-email-off-outline":"material/email-off-outline.svg","material-email-off":"material/email-off.svg","material-email-open-heart-outline":"material/email-open-heart-outline.svg","material-email-open-multiple-outline":"material/email-open-multiple-outline.svg","material-email-open-multiple":"material/email-open-multiple.svg","material-email-open-outline":"material/email-open-outline.svg","material-email-open":"material/email-open.svg","material-email-outline":"material/email-outline.svg","material-email-plus-outline":"material/email-plus-outline.svg","material-email-plus":"material/email-plus.svg","material-email-remove-outline":"material/email-remove-outline.svg","material-email-remove":"material/email-remove.svg","material-email-seal-outline":"material/email-seal-outline.svg","material-email-seal":"material/email-seal.svg","material-email-search-outline":"material/email-search-outline.svg","material-email-search":"material/email-search.svg","material-email-sync-outline":"material/email-sync-outline.svg","material-email-sync":"material/email-sync.svg","material-email-variant":"material/email-variant.svg","material-email":"material/email.svg","material-ember":"material/ember.svg","material-emby":"material/emby.svg","material-emoticon-angry-outline":"material/emoticon-angry-outline.svg","material-emoticon-angry":"material/emoticon-angry.svg","material-emoticon-confused-outline":"material/emoticon-confused-outline.svg","material-emoticon-confused":"material/emoticon-confused.svg","material-emoticon-cool-outline":"material/emoticon-cool-outline.svg","material-emoticon-cool":"material/emoticon-cool.svg","material-emoticon-cry-outline":"material/emoticon-cry-outline.svg","material-emoticon-cry":"material/emoticon-cry.svg","material-emoticon-dead-outline":"material/emoticon-dead-outline.svg","material-emoticon-dead":"material/emoticon-dead.svg","material-emoticon-devil-outline":"material/emoticon-devil-outline.svg","material-emoticon-devil":"material/emoticon-devil.svg","material-emoticon-excited-outline":"material/emoticon-excited-outline.svg","material-emoticon-excited":"material/emoticon-excited.svg","material-emoticon-frown-outline":"material/emoticon-frown-outline.svg","material-emoticon-frown":"material/emoticon-frown.svg","material-emoticon-happy-outline":"material/emoticon-happy-outline.svg","material-emoticon-happy":"material/emoticon-happy.svg","material-emoticon-kiss-outline":"material/emoticon-kiss-outline.svg","material-emoticon-kiss":"material/emoticon-kiss.svg","material-emoticon-lol-outline":"material/emoticon-lol-outline.svg","material-emoticon-lol":"material/emoticon-lol.svg","material-emoticon-minus-outline":"material/emoticon-minus-outline.svg","material-emoticon-minus":"material/emoticon-minus.svg","material-emoticon-neutral-outline":"material/emoticon-neutral-outline.svg","material-emoticon-neutral":"material/emoticon-neutral.svg","material-emoticon-outline":"material/emoticon-outline.svg","material-emoticon-plus-outline":"material/emoticon-plus-outline.svg","material-emoticon-plus":"material/emoticon-plus.svg","material-emoticon-poop-outline":"material/emoticon-poop-outline.svg","material-emoticon-poop":"material/emoticon-poop.svg","material-emoticon-remove-outline":"material/emoticon-remove-outline.svg","material-emoticon-remove":"material/emoticon-remove.svg","material-emoticon-sad-outline":"material/emoticon-sad-outline.svg","material-emoticon-sad":"material/emoticon-sad.svg","material-emoticon-sick-outline":"material/emoticon-sick-outline.svg","material-emoticon-sick":"material/emoticon-sick.svg","material-emoticon-tongue-outline":"material/emoticon-tongue-outline.svg","material-emoticon-tongue":"material/emoticon-tongue.svg","material-emoticon-wink-outline":"material/emoticon-wink-outline.svg","material-emoticon-wink":"material/emoticon-wink.svg","material-emoticon":"material/emoticon.svg","material-engine-off-outline":"material/engine-off-outline.svg","material-engine-off":"material/engine-off.svg","material-engine-outline":"material/engine-outline.svg","material-engine":"material/engine.svg","material-epsilon":"material/epsilon.svg","material-equal-box":"material/equal-box.svg","material-equal":"material/equal.svg","material-equalizer-outline":"material/equalizer-outline.svg","material-equalizer":"material/equalizer.svg","material-eraser-variant":"material/eraser-variant.svg","material-eraser":"material/eraser.svg","material-escalator-box":"material/escalator-box.svg","material-escalator-down":"material/escalator-down.svg","material-escalator-up":"material/escalator-up.svg","material-escalator":"material/escalator.svg","material-eslint":"material/eslint.svg","material-et":"material/et.svg","material-ethereum":"material/ethereum.svg","material-ethernet-cable-off":"material/ethernet-cable-off.svg","material-ethernet-cable":"material/ethernet-cable.svg","material-ethernet-off":"material/ethernet-off.svg","material-ethernet":"material/ethernet.svg","material-ev-plug-ccs1":"material/ev-plug-ccs1.svg","material-ev-plug-ccs2":"material/ev-plug-ccs2.svg","material-ev-plug-chademo":"material/ev-plug-chademo.svg","material-ev-plug-tesla":"material/ev-plug-tesla.svg","material-ev-plug-type1":"material/ev-plug-type1.svg","material-ev-plug-type2":"material/ev-plug-type2.svg","material-ev-station":"material/ev-station.svg","material-evernote":"material/evernote.svg","material-excavator":"material/excavator.svg","material-exclamation-thick":"material/exclamation-thick.svg","material-exclamation":"material/exclamation.svg","material-exit-run":"material/exit-run.svg","material-exit-to-app":"material/exit-to-app.svg","material-expand-all-outline":"material/expand-all-outline.svg","material-expand-all":"material/expand-all.svg","material-expansion-card-variant":"material/expansion-card-variant.svg","material-expansion-card":"material/expansion-card.svg","material-exponent-box":"material/exponent-box.svg","material-exponent":"material/exponent.svg","material-export-variant":"material/export-variant.svg","material-export":"material/export.svg","material-eye-arrow-left-outline":"material/eye-arrow-left-outline.svg","material-eye-arrow-left":"material/eye-arrow-left.svg","material-eye-arrow-right-outline":"material/eye-arrow-right-outline.svg","material-eye-arrow-right":"material/eye-arrow-right.svg","material-eye-check-outline":"material/eye-check-outline.svg","material-eye-check":"material/eye-check.svg","material-eye-circle-outline":"material/eye-circle-outline.svg","material-eye-circle":"material/eye-circle.svg","material-eye-closed":"material/eye-closed.svg","material-eye-lock-open-outline":"material/eye-lock-open-outline.svg","material-eye-lock-open":"material/eye-lock-open.svg","material-eye-lock-outline":"material/eye-lock-outline.svg","material-eye-lock":"material/eye-lock.svg","material-eye-minus-outline":"material/eye-minus-outline.svg","material-eye-minus":"material/eye-minus.svg","material-eye-off-outline":"material/eye-off-outline.svg","material-eye-off":"material/eye-off.svg","material-eye-outline":"material/eye-outline.svg","material-eye-plus-outline":"material/eye-plus-outline.svg","material-eye-plus":"material/eye-plus.svg","material-eye-refresh-outline":"material/eye-refresh-outline.svg","material-eye-refresh":"material/eye-refresh.svg","material-eye-remove-outline":"material/eye-remove-outline.svg","material-eye-remove":"material/eye-remove.svg","material-eye-settings-outline":"material/eye-settings-outline.svg","material-eye-settings":"material/eye-settings.svg","material-eye":"material/eye.svg","material-eyedropper-minus":"material/eyedropper-minus.svg","material-eyedropper-off":"material/eyedropper-off.svg","material-eyedropper-plus":"material/eyedropper-plus.svg","material-eyedropper-remove":"material/eyedropper-remove.svg","material-eyedropper-variant":"material/eyedropper-variant.svg","material-eyedropper":"material/eyedropper.svg","material-face-agent":"material/face-agent.svg","material-face-man-outline":"material/face-man-outline.svg","material-face-man-profile":"material/face-man-profile.svg","material-face-man-shimmer-outline":"material/face-man-shimmer-outline.svg","material-face-man-shimmer":"material/face-man-shimmer.svg","material-face-man":"material/face-man.svg","material-face-mask-outline":"material/face-mask-outline.svg","material-face-mask":"material/face-mask.svg","material-face-recognition":"material/face-recognition.svg","material-face-woman-outline":"material/face-woman-outline.svg","material-face-woman-profile":"material/face-woman-profile.svg","material-face-woman-shimmer-outline":"material/face-woman-shimmer-outline.svg","material-face-woman-shimmer":"material/face-woman-shimmer.svg","material-face-woman":"material/face-woman.svg","material-facebook-gaming":"material/facebook-gaming.svg","material-facebook-messenger":"material/facebook-messenger.svg","material-facebook-workplace":"material/facebook-workplace.svg","material-facebook":"material/facebook.svg","material-factory":"material/factory.svg","material-family-tree":"material/family-tree.svg","material-fan-alert":"material/fan-alert.svg","material-fan-auto":"material/fan-auto.svg","material-fan-chevron-down":"material/fan-chevron-down.svg","material-fan-chevron-up":"material/fan-chevron-up.svg","material-fan-clock":"material/fan-clock.svg","material-fan-minus":"material/fan-minus.svg","material-fan-off":"material/fan-off.svg","material-fan-plus":"material/fan-plus.svg","material-fan-remove":"material/fan-remove.svg","material-fan-speed-1":"material/fan-speed-1.svg","material-fan-speed-2":"material/fan-speed-2.svg","material-fan-speed-3":"material/fan-speed-3.svg","material-fan":"material/fan.svg","material-fast-forward-10":"material/fast-forward-10.svg","material-fast-forward-15":"material/fast-forward-15.svg","material-fast-forward-30":"material/fast-forward-30.svg","material-fast-forward-45":"material/fast-forward-45.svg","material-fast-forward-5":"material/fast-forward-5.svg","material-fast-forward-60":"material/fast-forward-60.svg","material-fast-forward-outline":"material/fast-forward-outline.svg","material-fast-forward":"material/fast-forward.svg","material-faucet-variant":"material/faucet-variant.svg","material-faucet":"material/faucet.svg","material-fax":"material/fax.svg","material-feather":"material/feather.svg","material-feature-search-outline":"material/feature-search-outline.svg","material-feature-search":"material/feature-search.svg","material-fedora":"material/fedora.svg","material-fence-electric":"material/fence-electric.svg","material-fence":"material/fence.svg","material-fencing":"material/fencing.svg","material-ferris-wheel":"material/ferris-wheel.svg","material-ferry":"material/ferry.svg","material-file-account-outline":"material/file-account-outline.svg","material-file-account":"material/file-account.svg","material-file-alert-outline":"material/file-alert-outline.svg","material-file-alert":"material/file-alert.svg","material-file-arrow-left-right-outline":"material/file-arrow-left-right-outline.svg","material-file-arrow-left-right":"material/file-arrow-left-right.svg","material-file-arrow-up-down-outline":"material/file-arrow-up-down-outline.svg","material-file-arrow-up-down":"material/file-arrow-up-down.svg","material-file-cabinet":"material/file-cabinet.svg","material-file-cad-box":"material/file-cad-box.svg","material-file-cad":"material/file-cad.svg","material-file-cancel-outline":"material/file-cancel-outline.svg","material-file-cancel":"material/file-cancel.svg","material-file-certificate-outline":"material/file-certificate-outline.svg","material-file-certificate":"material/file-certificate.svg","material-file-chart-check-outline":"material/file-chart-check-outline.svg","material-file-chart-check":"material/file-chart-check.svg","material-file-chart-outline":"material/file-chart-outline.svg","material-file-chart":"material/file-chart.svg","material-file-check-outline":"material/file-check-outline.svg","material-file-check":"material/file-check.svg","material-file-clock-outline":"material/file-clock-outline.svg","material-file-clock":"material/file-clock.svg","material-file-cloud-outline":"material/file-cloud-outline.svg","material-file-cloud":"material/file-cloud.svg","material-file-code-outline":"material/file-code-outline.svg","material-file-code":"material/file-code.svg","material-file-cog-outline":"material/file-cog-outline.svg","material-file-cog":"material/file-cog.svg","material-file-compare":"material/file-compare.svg","material-file-delimited-outline":"material/file-delimited-outline.svg","material-file-delimited":"material/file-delimited.svg","material-file-document-alert-outline":"material/file-document-alert-outline.svg","material-file-document-alert":"material/file-document-alert.svg","material-file-document-arrow-right-outline":"material/file-document-arrow-right-outline.svg","material-file-document-arrow-right":"material/file-document-arrow-right.svg","material-file-document-check-outline":"material/file-document-check-outline.svg","material-file-document-check":"material/file-document-check.svg","material-file-document-edit-outline":"material/file-document-edit-outline.svg","material-file-document-edit":"material/file-document-edit.svg","material-file-document-minus-outline":"material/file-document-minus-outline.svg","material-file-document-minus":"material/file-document-minus.svg","material-file-document-multiple-outline":"material/file-document-multiple-outline.svg","material-file-document-multiple":"material/file-document-multiple.svg","material-file-document-outline":"material/file-document-outline.svg","material-file-document-plus-outline":"material/file-document-plus-outline.svg","material-file-document-plus":"material/file-document-plus.svg","material-file-document-refresh-outline":"material/file-document-refresh-outline.svg","material-file-document-refresh":"material/file-document-refresh.svg","material-file-document-remove-outline":"material/file-document-remove-outline.svg","material-file-document-remove":"material/file-document-remove.svg","material-file-document":"material/file-document.svg","material-file-download-outline":"material/file-download-outline.svg","material-file-download":"material/file-download.svg","material-file-edit-outline":"material/file-edit-outline.svg","material-file-edit":"material/file-edit.svg","material-file-excel-box-outline":"material/file-excel-box-outline.svg","material-file-excel-box":"material/file-excel-box.svg","material-file-excel-outline":"material/file-excel-outline.svg","material-file-excel":"material/file-excel.svg","material-file-export-outline":"material/file-export-outline.svg","material-file-export":"material/file-export.svg","material-file-eye-outline":"material/file-eye-outline.svg","material-file-eye":"material/file-eye.svg","material-file-find-outline":"material/file-find-outline.svg","material-file-find":"material/file-find.svg","material-file-gif-box":"material/file-gif-box.svg","material-file-hidden":"material/file-hidden.svg","material-file-image-marker-outline":"material/file-image-marker-outline.svg","material-file-image-marker":"material/file-image-marker.svg","material-file-image-minus-outline":"material/file-image-minus-outline.svg","material-file-image-minus":"material/file-image-minus.svg","material-file-image-outline":"material/file-image-outline.svg","material-file-image-plus-outline":"material/file-image-plus-outline.svg","material-file-image-plus":"material/file-image-plus.svg","material-file-image-remove-outline":"material/file-image-remove-outline.svg","material-file-image-remove":"material/file-image-remove.svg","material-file-image":"material/file-image.svg","material-file-import-outline":"material/file-import-outline.svg","material-file-import":"material/file-import.svg","material-file-jpg-box":"material/file-jpg-box.svg","material-file-key-outline":"material/file-key-outline.svg","material-file-key":"material/file-key.svg","material-file-link-outline":"material/file-link-outline.svg","material-file-link":"material/file-link.svg","material-file-lock-open-outline":"material/file-lock-open-outline.svg","material-file-lock-open":"material/file-lock-open.svg","material-file-lock-outline":"material/file-lock-outline.svg","material-file-lock":"material/file-lock.svg","material-file-marker-outline":"material/file-marker-outline.svg","material-file-marker":"material/file-marker.svg","material-file-minus-outline":"material/file-minus-outline.svg","material-file-minus":"material/file-minus.svg","material-file-move-outline":"material/file-move-outline.svg","material-file-move":"material/file-move.svg","material-file-multiple-outline":"material/file-multiple-outline.svg","material-file-multiple":"material/file-multiple.svg","material-file-music-outline":"material/file-music-outline.svg","material-file-music":"material/file-music.svg","material-file-outline":"material/file-outline.svg","material-file-pdf-box":"material/file-pdf-box.svg","material-file-percent-outline":"material/file-percent-outline.svg","material-file-percent":"material/file-percent.svg","material-file-phone-outline":"material/file-phone-outline.svg","material-file-phone":"material/file-phone.svg","material-file-plus-outline":"material/file-plus-outline.svg","material-file-plus":"material/file-plus.svg","material-file-png-box":"material/file-png-box.svg","material-file-powerpoint-box-outline":"material/file-powerpoint-box-outline.svg","material-file-powerpoint-box":"material/file-powerpoint-box.svg","material-file-powerpoint-outline":"material/file-powerpoint-outline.svg","material-file-powerpoint":"material/file-powerpoint.svg","material-file-presentation-box":"material/file-presentation-box.svg","material-file-question-outline":"material/file-question-outline.svg","material-file-question":"material/file-question.svg","material-file-refresh-outline":"material/file-refresh-outline.svg","material-file-refresh":"material/file-refresh.svg","material-file-remove-outline":"material/file-remove-outline.svg","material-file-remove":"material/file-remove.svg","material-file-replace-outline":"material/file-replace-outline.svg","material-file-replace":"material/file-replace.svg","material-file-restore-outline":"material/file-restore-outline.svg","material-file-restore":"material/file-restore.svg","material-file-rotate-left-outline":"material/file-rotate-left-outline.svg","material-file-rotate-left":"material/file-rotate-left.svg","material-file-rotate-right-outline":"material/file-rotate-right-outline.svg","material-file-rotate-right":"material/file-rotate-right.svg","material-file-search-outline":"material/file-search-outline.svg","material-file-search":"material/file-search.svg","material-file-send-outline":"material/file-send-outline.svg","material-file-send":"material/file-send.svg","material-file-settings-outline":"material/file-settings-outline.svg","material-file-settings":"material/file-settings.svg","material-file-sign":"material/file-sign.svg","material-file-star-four-points-outline":"material/file-star-four-points-outline.svg","material-file-star-four-points":"material/file-star-four-points.svg","material-file-star-outline":"material/file-star-outline.svg","material-file-star":"material/file-star.svg","material-file-swap-outline":"material/file-swap-outline.svg","material-file-swap":"material/file-swap.svg","material-file-sync-outline":"material/file-sync-outline.svg","material-file-sync":"material/file-sync.svg","material-file-table-box-multiple-outline":"material/file-table-box-multiple-outline.svg","material-file-table-box-multiple":"material/file-table-box-multiple.svg","material-file-table-box-outline":"material/file-table-box-outline.svg","material-file-table-box":"material/file-table-box.svg","material-file-table-outline":"material/file-table-outline.svg","material-file-table":"material/file-table.svg","material-file-tree-outline":"material/file-tree-outline.svg","material-file-tree":"material/file-tree.svg","material-file-undo-outline":"material/file-undo-outline.svg","material-file-undo":"material/file-undo.svg","material-file-upload-outline":"material/file-upload-outline.svg","material-file-upload":"material/file-upload.svg","material-file-video-outline":"material/file-video-outline.svg","material-file-video":"material/file-video.svg","material-file-word-box-outline":"material/file-word-box-outline.svg","material-file-word-box":"material/file-word-box.svg","material-file-word-outline":"material/file-word-outline.svg","material-file-word":"material/file-word.svg","material-file-xml-box":"material/file-xml-box.svg","material-file":"material/file.svg","material-film":"material/film.svg","material-filmstrip-box-multiple":"material/filmstrip-box-multiple.svg","material-filmstrip-box":"material/filmstrip-box.svg","material-filmstrip-off":"material/filmstrip-off.svg","material-filmstrip":"material/filmstrip.svg","material-filter-check-outline":"material/filter-check-outline.svg","material-filter-check":"material/filter-check.svg","material-filter-cog-outline":"material/filter-cog-outline.svg","material-filter-cog":"material/filter-cog.svg","material-filter-menu-outline":"material/filter-menu-outline.svg","material-filter-menu":"material/filter-menu.svg","material-filter-minus-outline":"material/filter-minus-outline.svg","material-filter-minus":"material/filter-minus.svg","material-filter-multiple-outline":"material/filter-multiple-outline.svg","material-filter-multiple":"material/filter-multiple.svg","material-filter-off-outline":"material/filter-off-outline.svg","material-filter-off":"material/filter-off.svg","material-filter-outline":"material/filter-outline.svg","material-filter-plus-outline":"material/filter-plus-outline.svg","material-filter-plus":"material/filter-plus.svg","material-filter-remove-outline":"material/filter-remove-outline.svg","material-filter-remove":"material/filter-remove.svg","material-filter-settings-outline":"material/filter-settings-outline.svg","material-filter-settings":"material/filter-settings.svg","material-filter-variant-minus":"material/filter-variant-minus.svg","material-filter-variant-plus":"material/filter-variant-plus.svg","material-filter-variant-remove":"material/filter-variant-remove.svg","material-filter-variant":"material/filter-variant.svg","material-filter":"material/filter.svg","material-finance":"material/finance.svg","material-find-replace":"material/find-replace.svg","material-fingerprint-off":"material/fingerprint-off.svg","material-fingerprint":"material/fingerprint.svg","material-fire-alert":"material/fire-alert.svg","material-fire-circle":"material/fire-circle.svg","material-fire-extinguisher":"material/fire-extinguisher.svg","material-fire-hydrant-alert":"material/fire-hydrant-alert.svg","material-fire-hydrant-off":"material/fire-hydrant-off.svg","material-fire-hydrant":"material/fire-hydrant.svg","material-fire-off":"material/fire-off.svg","material-fire-station":"material/fire-station.svg","material-fire-truck":"material/fire-truck.svg","material-fire":"material/fire.svg","material-firebase":"material/firebase.svg","material-firefox":"material/firefox.svg","material-fireplace-off":"material/fireplace-off.svg","material-fireplace":"material/fireplace.svg","material-firewire":"material/firewire.svg","material-firework-off":"material/firework-off.svg","material-firework":"material/firework.svg","material-fish-off":"material/fish-off.svg","material-fish":"material/fish.svg","material-fishbowl-outline":"material/fishbowl-outline.svg","material-fishbowl":"material/fishbowl.svg","material-fit-to-page-outline":"material/fit-to-page-outline.svg","material-fit-to-page":"material/fit-to-page.svg","material-fit-to-screen-outline":"material/fit-to-screen-outline.svg","material-fit-to-screen":"material/fit-to-screen.svg","material-flag-checkered":"material/flag-checkered.svg","material-flag-minus-outline":"material/flag-minus-outline.svg","material-flag-minus":"material/flag-minus.svg","material-flag-off-outline":"material/flag-off-outline.svg","material-flag-off":"material/flag-off.svg","material-flag-outline":"material/flag-outline.svg","material-flag-plus-outline":"material/flag-plus-outline.svg","material-flag-plus":"material/flag-plus.svg","material-flag-remove-outline":"material/flag-remove-outline.svg","material-flag-remove":"material/flag-remove.svg","material-flag-triangle":"material/flag-triangle.svg","material-flag-variant-minus-outline":"material/flag-variant-minus-outline.svg","material-flag-variant-minus":"material/flag-variant-minus.svg","material-flag-variant-off-outline":"material/flag-variant-off-outline.svg","material-flag-variant-off":"material/flag-variant-off.svg","material-flag-variant-outline":"material/flag-variant-outline.svg","material-flag-variant-plus-outline":"material/flag-variant-plus-outline.svg","material-flag-variant-plus":"material/flag-variant-plus.svg","material-flag-variant-remove-outline":"material/flag-variant-remove-outline.svg","material-flag-variant-remove":"material/flag-variant-remove.svg","material-flag-variant":"material/flag-variant.svg","material-flag":"material/flag.svg","material-flare":"material/flare.svg","material-flash-alert-outline":"material/flash-alert-outline.svg","material-flash-alert":"material/flash-alert.svg","material-flash-auto":"material/flash-auto.svg","material-flash-off-outline":"material/flash-off-outline.svg","material-flash-off":"material/flash-off.svg","material-flash-outline":"material/flash-outline.svg","material-flash-red-eye":"material/flash-red-eye.svg","material-flash-triangle-outline":"material/flash-triangle-outline.svg","material-flash-triangle":"material/flash-triangle.svg","material-flash":"material/flash.svg","material-flashlight-off":"material/flashlight-off.svg","material-flashlight":"material/flashlight.svg","material-flask-empty-minus-outline":"material/flask-empty-minus-outline.svg","material-flask-empty-minus":"material/flask-empty-minus.svg","material-flask-empty-off-outline":"material/flask-empty-off-outline.svg","material-flask-empty-off":"material/flask-empty-off.svg","material-flask-empty-outline":"material/flask-empty-outline.svg","material-flask-empty-plus-outline":"material/flask-empty-plus-outline.svg","material-flask-empty-plus":"material/flask-empty-plus.svg","material-flask-empty-remove-outline":"material/flask-empty-remove-outline.svg","material-flask-empty-remove":"material/flask-empty-remove.svg","material-flask-empty":"material/flask-empty.svg","material-flask-minus-outline":"material/flask-minus-outline.svg","material-flask-minus":"material/flask-minus.svg","material-flask-off-outline":"material/flask-off-outline.svg","material-flask-off":"material/flask-off.svg","material-flask-outline":"material/flask-outline.svg","material-flask-plus-outline":"material/flask-plus-outline.svg","material-flask-plus":"material/flask-plus.svg","material-flask-remove-outline":"material/flask-remove-outline.svg","material-flask-remove":"material/flask-remove.svg","material-flask-round-bottom-empty-outline":"material/flask-round-bottom-empty-outline.svg","material-flask-round-bottom-empty":"material/flask-round-bottom-empty.svg","material-flask-round-bottom-outline":"material/flask-round-bottom-outline.svg","material-flask-round-bottom":"material/flask-round-bottom.svg","material-flask":"material/flask.svg","material-fleur-de-lis":"material/fleur-de-lis.svg","material-flip-horizontal":"material/flip-horizontal.svg","material-flip-to-back":"material/flip-to-back.svg","material-flip-to-front":"material/flip-to-front.svg","material-flip-vertical":"material/flip-vertical.svg","material-floor-lamp-dual-outline":"material/floor-lamp-dual-outline.svg","material-floor-lamp-dual":"material/floor-lamp-dual.svg","material-floor-lamp-outline":"material/floor-lamp-outline.svg","material-floor-lamp-torchiere-outline":"material/floor-lamp-torchiere-outline.svg","material-floor-lamp-torchiere-variant-outline":"material/floor-lamp-torchiere-variant-outline.svg","material-floor-lamp-torchiere-variant":"material/floor-lamp-torchiere-variant.svg","material-floor-lamp-torchiere":"material/floor-lamp-torchiere.svg","material-floor-lamp":"material/floor-lamp.svg","material-floor-plan":"material/floor-plan.svg","material-floppy-variant":"material/floppy-variant.svg","material-floppy":"material/floppy.svg","material-flower-outline":"material/flower-outline.svg","material-flower-pollen-outline":"material/flower-pollen-outline.svg","material-flower-pollen":"material/flower-pollen.svg","material-flower-poppy":"material/flower-poppy.svg","material-flower-tulip-outline":"material/flower-tulip-outline.svg","material-flower-tulip":"material/flower-tulip.svg","material-flower":"material/flower.svg","material-focus-auto":"material/focus-auto.svg","material-focus-field-horizontal":"material/focus-field-horizontal.svg","material-focus-field-vertical":"material/focus-field-vertical.svg","material-focus-field":"material/focus-field.svg","material-folder-account-outline":"material/folder-account-outline.svg","material-folder-account":"material/folder-account.svg","material-folder-alert-outline":"material/folder-alert-outline.svg","material-folder-alert":"material/folder-alert.svg","material-folder-arrow-down-outline":"material/folder-arrow-down-outline.svg","material-folder-arrow-down":"material/folder-arrow-down.svg","material-folder-arrow-left-outline":"material/folder-arrow-left-outline.svg","material-folder-arrow-left-right-outline":"material/folder-arrow-left-right-outline.svg","material-folder-arrow-left-right":"material/folder-arrow-left-right.svg","material-folder-arrow-left":"material/folder-arrow-left.svg","material-folder-arrow-right-outline":"material/folder-arrow-right-outline.svg","material-folder-arrow-right":"material/folder-arrow-right.svg","material-folder-arrow-up-down-outline":"material/folder-arrow-up-down-outline.svg","material-folder-arrow-up-down":"material/folder-arrow-up-down.svg","material-folder-arrow-up-outline":"material/folder-arrow-up-outline.svg","material-folder-arrow-up":"material/folder-arrow-up.svg","material-folder-cancel-outline":"material/folder-cancel-outline.svg","material-folder-cancel":"material/folder-cancel.svg","material-folder-check-outline":"material/folder-check-outline.svg","material-folder-check":"material/folder-check.svg","material-folder-clock-outline":"material/folder-clock-outline.svg","material-folder-clock":"material/folder-clock.svg","material-folder-cog-outline":"material/folder-cog-outline.svg","material-folder-cog":"material/folder-cog.svg","material-folder-download-outline":"material/folder-download-outline.svg","material-folder-download":"material/folder-download.svg","material-folder-edit-outline":"material/folder-edit-outline.svg","material-folder-edit":"material/folder-edit.svg","material-folder-eye-outline":"material/folder-eye-outline.svg","material-folder-eye":"material/folder-eye.svg","material-folder-file-outline":"material/folder-file-outline.svg","material-folder-file":"material/folder-file.svg","material-folder-google-drive":"material/folder-google-drive.svg","material-folder-heart-outline":"material/folder-heart-outline.svg","material-folder-heart":"material/folder-heart.svg","material-folder-hidden":"material/folder-hidden.svg","material-folder-home-outline":"material/folder-home-outline.svg","material-folder-home":"material/folder-home.svg","material-folder-image":"material/folder-image.svg","material-folder-information-outline":"material/folder-information-outline.svg","material-folder-information":"material/folder-information.svg","material-folder-key-network-outline":"material/folder-key-network-outline.svg","material-folder-key-network":"material/folder-key-network.svg","material-folder-key-outline":"material/folder-key-outline.svg","material-folder-key":"material/folder-key.svg","material-folder-lock-open-outline":"material/folder-lock-open-outline.svg","material-folder-lock-open":"material/folder-lock-open.svg","material-folder-lock-outline":"material/folder-lock-outline.svg","material-folder-lock":"material/folder-lock.svg","material-folder-marker-outline":"material/folder-marker-outline.svg","material-folder-marker":"material/folder-marker.svg","material-folder-minus-outline":"material/folder-minus-outline.svg","material-folder-minus":"material/folder-minus.svg","material-folder-move-outline":"material/folder-move-outline.svg","material-folder-move":"material/folder-move.svg","material-folder-multiple-image":"material/folder-multiple-image.svg","material-folder-multiple-outline":"material/folder-multiple-outline.svg","material-folder-multiple-plus-outline":"material/folder-multiple-plus-outline.svg","material-folder-multiple-plus":"material/folder-multiple-plus.svg","material-folder-multiple":"material/folder-multiple.svg","material-folder-music-outline":"material/folder-music-outline.svg","material-folder-music":"material/folder-music.svg","material-folder-network-outline":"material/folder-network-outline.svg","material-folder-network":"material/folder-network.svg","material-folder-off-outline":"material/folder-off-outline.svg","material-folder-off":"material/folder-off.svg","material-folder-open-outline":"material/folder-open-outline.svg","material-folder-open":"material/folder-open.svg","material-folder-outline":"material/folder-outline.svg","material-folder-play-outline":"material/folder-play-outline.svg","material-folder-play":"material/folder-play.svg","material-folder-plus-outline":"material/folder-plus-outline.svg","material-folder-plus":"material/folder-plus.svg","material-folder-pound-outline":"material/folder-pound-outline.svg","material-folder-pound":"material/folder-pound.svg","material-folder-question-outline":"material/folder-question-outline.svg","material-folder-question":"material/folder-question.svg","material-folder-refresh-outline":"material/folder-refresh-outline.svg","material-folder-refresh":"material/folder-refresh.svg","material-folder-remove-outline":"material/folder-remove-outline.svg","material-folder-remove":"material/folder-remove.svg","material-folder-search-outline":"material/folder-search-outline.svg","material-folder-search":"material/folder-search.svg","material-folder-settings-outline":"material/folder-settings-outline.svg","material-folder-settings":"material/folder-settings.svg","material-folder-star-multiple-outline":"material/folder-star-multiple-outline.svg","material-folder-star-multiple":"material/folder-star-multiple.svg","material-folder-star-outline":"material/folder-star-outline.svg","material-folder-star":"material/folder-star.svg","material-folder-swap-outline":"material/folder-swap-outline.svg","material-folder-swap":"material/folder-swap.svg","material-folder-sync-outline":"material/folder-sync-outline.svg","material-folder-sync":"material/folder-sync.svg","material-folder-table-outline":"material/folder-table-outline.svg","material-folder-table":"material/folder-table.svg","material-folder-text-outline":"material/folder-text-outline.svg","material-folder-text":"material/folder-text.svg","material-folder-upload-outline":"material/folder-upload-outline.svg","material-folder-upload":"material/folder-upload.svg","material-folder-wrench-outline":"material/folder-wrench-outline.svg","material-folder-wrench":"material/folder-wrench.svg","material-folder-zip-outline":"material/folder-zip-outline.svg","material-folder-zip":"material/folder-zip.svg","material-folder":"material/folder.svg","material-font-awesome":"material/font-awesome.svg","material-food-apple-outline":"material/food-apple-outline.svg","material-food-apple":"material/food-apple.svg","material-food-croissant":"material/food-croissant.svg","material-food-drumstick-off-outline":"material/food-drumstick-off-outline.svg","material-food-drumstick-off":"material/food-drumstick-off.svg","material-food-drumstick-outline":"material/food-drumstick-outline.svg","material-food-drumstick":"material/food-drumstick.svg","material-food-fork-drink":"material/food-fork-drink.svg","material-food-halal":"material/food-halal.svg","material-food-hot-dog":"material/food-hot-dog.svg","material-food-kosher":"material/food-kosher.svg","material-food-off-outline":"material/food-off-outline.svg","material-food-off":"material/food-off.svg","material-food-outline":"material/food-outline.svg","material-food-steak-off":"material/food-steak-off.svg","material-food-steak":"material/food-steak.svg","material-food-takeout-box-outline":"material/food-takeout-box-outline.svg","material-food-takeout-box":"material/food-takeout-box.svg","material-food-turkey":"material/food-turkey.svg","material-food-variant-off":"material/food-variant-off.svg","material-food-variant":"material/food-variant.svg","material-food":"material/food.svg","material-foot-print":"material/foot-print.svg","material-football-australian":"material/football-australian.svg","material-football-helmet":"material/football-helmet.svg","material-football":"material/football.svg","material-forest-outline":"material/forest-outline.svg","material-forest":"material/forest.svg","material-forklift":"material/forklift.svg","material-form-dropdown":"material/form-dropdown.svg","material-form-select":"material/form-select.svg","material-form-textarea":"material/form-textarea.svg","material-form-textbox-lock":"material/form-textbox-lock.svg","material-form-textbox-password":"material/form-textbox-password.svg","material-form-textbox":"material/form-textbox.svg","material-format-align-bottom":"material/format-align-bottom.svg","material-format-align-center":"material/format-align-center.svg","material-format-align-justify":"material/format-align-justify.svg","material-format-align-left":"material/format-align-left.svg","material-format-align-middle":"material/format-align-middle.svg","material-format-align-right":"material/format-align-right.svg","material-format-align-top":"material/format-align-top.svg","material-format-annotation-minus":"material/format-annotation-minus.svg","material-format-annotation-plus":"material/format-annotation-plus.svg","material-format-bold":"material/format-bold.svg","material-format-clear":"material/format-clear.svg","material-format-color-fill":"material/format-color-fill.svg","material-format-color-highlight":"material/format-color-highlight.svg","material-format-color-marker-cancel":"material/format-color-marker-cancel.svg","material-format-color-text":"material/format-color-text.svg","material-format-columns":"material/format-columns.svg","material-format-float-center":"material/format-float-center.svg","material-format-float-left":"material/format-float-left.svg","material-format-float-none":"material/format-float-none.svg","material-format-float-right":"material/format-float-right.svg","material-format-font-size-decrease":"material/format-font-size-decrease.svg","material-format-font-size-increase":"material/format-font-size-increase.svg","material-format-font":"material/format-font.svg","material-format-header-1":"material/format-header-1.svg","material-format-header-2":"material/format-header-2.svg","material-format-header-3":"material/format-header-3.svg","material-format-header-4":"material/format-header-4.svg","material-format-header-5":"material/format-header-5.svg","material-format-header-6":"material/format-header-6.svg","material-format-header-decrease":"material/format-header-decrease.svg","material-format-header-equal":"material/format-header-equal.svg","material-format-header-increase":"material/format-header-increase.svg","material-format-header-pound":"material/format-header-pound.svg","material-format-horizontal-align-center":"material/format-horizontal-align-center.svg","material-format-horizontal-align-left":"material/format-horizontal-align-left.svg","material-format-horizontal-align-right":"material/format-horizontal-align-right.svg","material-format-indent-decrease":"material/format-indent-decrease.svg","material-format-indent-increase":"material/format-indent-increase.svg","material-format-italic":"material/format-italic.svg","material-format-letter-case-lower":"material/format-letter-case-lower.svg","material-format-letter-case-upper":"material/format-letter-case-upper.svg","material-format-letter-case":"material/format-letter-case.svg","material-format-letter-ends-with":"material/format-letter-ends-with.svg","material-format-letter-matches":"material/format-letter-matches.svg","material-format-letter-spacing-variant":"material/format-letter-spacing-variant.svg","material-format-letter-spacing":"material/format-letter-spacing.svg","material-format-letter-starts-with":"material/format-letter-starts-with.svg","material-format-line-height":"material/format-line-height.svg","material-format-line-spacing":"material/format-line-spacing.svg","material-format-line-style":"material/format-line-style.svg","material-format-line-weight":"material/format-line-weight.svg","material-format-list-bulleted-square":"material/format-list-bulleted-square.svg","material-format-list-bulleted-triangle":"material/format-list-bulleted-triangle.svg","material-format-list-bulleted-type":"material/format-list-bulleted-type.svg","material-format-list-bulleted":"material/format-list-bulleted.svg","material-format-list-checkbox":"material/format-list-checkbox.svg","material-format-list-checks":"material/format-list-checks.svg","material-format-list-group-plus":"material/format-list-group-plus.svg","material-format-list-group":"material/format-list-group.svg","material-format-list-numbered-rtl":"material/format-list-numbered-rtl.svg","material-format-list-numbered":"material/format-list-numbered.svg","material-format-list-text":"material/format-list-text.svg","material-format-overline":"material/format-overline.svg","material-format-page-break":"material/format-page-break.svg","material-format-page-split":"material/format-page-split.svg","material-format-paint":"material/format-paint.svg","material-format-paragraph-spacing":"material/format-paragraph-spacing.svg","material-format-paragraph":"material/format-paragraph.svg","material-format-pilcrow-arrow-left":"material/format-pilcrow-arrow-left.svg","material-format-pilcrow-arrow-right":"material/format-pilcrow-arrow-right.svg","material-format-pilcrow":"material/format-pilcrow.svg","material-format-quote-close-outline":"material/format-quote-close-outline.svg","material-format-quote-close":"material/format-quote-close.svg","material-format-quote-open-outline":"material/format-quote-open-outline.svg","material-format-quote-open":"material/format-quote-open.svg","material-format-rotate-90":"material/format-rotate-90.svg","material-format-section":"material/format-section.svg","material-format-size":"material/format-size.svg","material-format-strikethrough-variant":"material/format-strikethrough-variant.svg","material-format-strikethrough":"material/format-strikethrough.svg","material-format-subscript":"material/format-subscript.svg","material-format-superscript":"material/format-superscript.svg","material-format-text-rotation-angle-down":"material/format-text-rotation-angle-down.svg","material-format-text-rotation-angle-up":"material/format-text-rotation-angle-up.svg","material-format-text-rotation-down-vertical":"material/format-text-rotation-down-vertical.svg","material-format-text-rotation-down":"material/format-text-rotation-down.svg","material-format-text-rotation-none":"material/format-text-rotation-none.svg","material-format-text-rotation-up":"material/format-text-rotation-up.svg","material-format-text-rotation-vertical":"material/format-text-rotation-vertical.svg","material-format-text-variant-outline":"material/format-text-variant-outline.svg","material-format-text-variant":"material/format-text-variant.svg","material-format-text-wrapping-clip":"material/format-text-wrapping-clip.svg","material-format-text-wrapping-overflow":"material/format-text-wrapping-overflow.svg","material-format-text-wrapping-wrap":"material/format-text-wrapping-wrap.svg","material-format-text":"material/format-text.svg","material-format-textbox":"material/format-textbox.svg","material-format-title":"material/format-title.svg","material-format-underline-wavy":"material/format-underline-wavy.svg","material-format-underline":"material/format-underline.svg","material-format-vertical-align-bottom":"material/format-vertical-align-bottom.svg","material-format-vertical-align-center":"material/format-vertical-align-center.svg","material-format-vertical-align-top":"material/format-vertical-align-top.svg","material-format-wrap-inline":"material/format-wrap-inline.svg","material-format-wrap-square":"material/format-wrap-square.svg","material-format-wrap-tight":"material/format-wrap-tight.svg","material-format-wrap-top-bottom":"material/format-wrap-top-bottom.svg","material-forum-minus-outline":"material/forum-minus-outline.svg","material-forum-minus":"material/forum-minus.svg","material-forum-outline":"material/forum-outline.svg","material-forum-plus-outline":"material/forum-plus-outline.svg","material-forum-plus":"material/forum-plus.svg","material-forum-remove-outline":"material/forum-remove-outline.svg","material-forum-remove":"material/forum-remove.svg","material-forum":"material/forum.svg","material-forward":"material/forward.svg","material-forwardburger":"material/forwardburger.svg","material-fountain-pen-tip":"material/fountain-pen-tip.svg","material-fountain-pen":"material/fountain-pen.svg","material-fountain":"material/fountain.svg","material-fraction-one-half":"material/fraction-one-half.svg","material-freebsd":"material/freebsd.svg","material-french-fries":"material/french-fries.svg","material-frequently-asked-questions":"material/frequently-asked-questions.svg","material-fridge-alert-outline":"material/fridge-alert-outline.svg","material-fridge-alert":"material/fridge-alert.svg","material-fridge-bottom":"material/fridge-bottom.svg","material-fridge-industrial-alert-outline":"material/fridge-industrial-alert-outline.svg","material-fridge-industrial-alert":"material/fridge-industrial-alert.svg","material-fridge-industrial-off-outline":"material/fridge-industrial-off-outline.svg","material-fridge-industrial-off":"material/fridge-industrial-off.svg","material-fridge-industrial-outline":"material/fridge-industrial-outline.svg","material-fridge-industrial":"material/fridge-industrial.svg","material-fridge-off-outline":"material/fridge-off-outline.svg","material-fridge-off":"material/fridge-off.svg","material-fridge-outline":"material/fridge-outline.svg","material-fridge-top":"material/fridge-top.svg","material-fridge-variant-alert-outline":"material/fridge-variant-alert-outline.svg","material-fridge-variant-alert":"material/fridge-variant-alert.svg","material-fridge-variant-off-outline":"material/fridge-variant-off-outline.svg","material-fridge-variant-off":"material/fridge-variant-off.svg","material-fridge-variant-outline":"material/fridge-variant-outline.svg","material-fridge-variant":"material/fridge-variant.svg","material-fridge":"material/fridge.svg","material-fruit-cherries-off":"material/fruit-cherries-off.svg","material-fruit-cherries":"material/fruit-cherries.svg","material-fruit-citrus-off":"material/fruit-citrus-off.svg","material-fruit-citrus":"material/fruit-citrus.svg","material-fruit-grapes-outline":"material/fruit-grapes-outline.svg","material-fruit-grapes":"material/fruit-grapes.svg","material-fruit-pear":"material/fruit-pear.svg","material-fruit-pineapple":"material/fruit-pineapple.svg","material-fruit-watermelon":"material/fruit-watermelon.svg","material-fuel-cell":"material/fuel-cell.svg","material-fuel":"material/fuel.svg","material-fullscreen-exit":"material/fullscreen-exit.svg","material-fullscreen":"material/fullscreen.svg","material-function-variant":"material/function-variant.svg","material-function":"material/function.svg","material-furigana-horizontal":"material/furigana-horizontal.svg","material-furigana-vertical":"material/furigana-vertical.svg","material-fuse-alert":"material/fuse-alert.svg","material-fuse-blade":"material/fuse-blade.svg","material-fuse-off":"material/fuse-off.svg","material-fuse":"material/fuse.svg","material-gamepad-circle-down":"material/gamepad-circle-down.svg","material-gamepad-circle-left":"material/gamepad-circle-left.svg","material-gamepad-circle-outline":"material/gamepad-circle-outline.svg","material-gamepad-circle-right":"material/gamepad-circle-right.svg","material-gamepad-circle-up":"material/gamepad-circle-up.svg","material-gamepad-circle":"material/gamepad-circle.svg","material-gamepad-down":"material/gamepad-down.svg","material-gamepad-left":"material/gamepad-left.svg","material-gamepad-outline":"material/gamepad-outline.svg","material-gamepad-right":"material/gamepad-right.svg","material-gamepad-round-down":"material/gamepad-round-down.svg","material-gamepad-round-left":"material/gamepad-round-left.svg","material-gamepad-round-outline":"material/gamepad-round-outline.svg","material-gamepad-round-right":"material/gamepad-round-right.svg","material-gamepad-round-up":"material/gamepad-round-up.svg","material-gamepad-round":"material/gamepad-round.svg","material-gamepad-square-outline":"material/gamepad-square-outline.svg","material-gamepad-square":"material/gamepad-square.svg","material-gamepad-up":"material/gamepad-up.svg","material-gamepad-variant-outline":"material/gamepad-variant-outline.svg","material-gamepad-variant":"material/gamepad-variant.svg","material-gamepad":"material/gamepad.svg","material-gamma":"material/gamma.svg","material-gantry-crane":"material/gantry-crane.svg","material-garage-alert-variant":"material/garage-alert-variant.svg","material-garage-alert":"material/garage-alert.svg","material-garage-lock":"material/garage-lock.svg","material-garage-open-variant":"material/garage-open-variant.svg","material-garage-open":"material/garage-open.svg","material-garage-variant-lock":"material/garage-variant-lock.svg","material-garage-variant":"material/garage-variant.svg","material-garage":"material/garage.svg","material-gas-burner":"material/gas-burner.svg","material-gas-cylinder":"material/gas-cylinder.svg","material-gas-station-in-use-outline":"material/gas-station-in-use-outline.svg","material-gas-station-in-use":"material/gas-station-in-use.svg","material-gas-station-off-outline":"material/gas-station-off-outline.svg","material-gas-station-off":"material/gas-station-off.svg","material-gas-station-outline":"material/gas-station-outline.svg","material-gas-station":"material/gas-station.svg","material-gate-alert":"material/gate-alert.svg","material-gate-and":"material/gate-and.svg","material-gate-arrow-left":"material/gate-arrow-left.svg","material-gate-arrow-right":"material/gate-arrow-right.svg","material-gate-buffer":"material/gate-buffer.svg","material-gate-nand":"material/gate-nand.svg","material-gate-nor":"material/gate-nor.svg","material-gate-not":"material/gate-not.svg","material-gate-open":"material/gate-open.svg","material-gate-or":"material/gate-or.svg","material-gate-xnor":"material/gate-xnor.svg","material-gate-xor":"material/gate-xor.svg","material-gate":"material/gate.svg","material-gatsby":"material/gatsby.svg","material-gauge-empty":"material/gauge-empty.svg","material-gauge-full":"material/gauge-full.svg","material-gauge-low":"material/gauge-low.svg","material-gauge":"material/gauge.svg","material-gavel":"material/gavel.svg","material-gender-female":"material/gender-female.svg","material-gender-male-female-variant":"material/gender-male-female-variant.svg","material-gender-male-female":"material/gender-male-female.svg","material-gender-male":"material/gender-male.svg","material-gender-non-binary":"material/gender-non-binary.svg","material-gender-transgender":"material/gender-transgender.svg","material-generator-mobile":"material/generator-mobile.svg","material-generator-portable":"material/generator-portable.svg","material-generator-stationary":"material/generator-stationary.svg","material-gentoo":"material/gentoo.svg","material-gesture-double-tap":"material/gesture-double-tap.svg","material-gesture-pinch":"material/gesture-pinch.svg","material-gesture-spread":"material/gesture-spread.svg","material-gesture-swipe-down":"material/gesture-swipe-down.svg","material-gesture-swipe-horizontal":"material/gesture-swipe-horizontal.svg","material-gesture-swipe-left":"material/gesture-swipe-left.svg","material-gesture-swipe-right":"material/gesture-swipe-right.svg","material-gesture-swipe-up":"material/gesture-swipe-up.svg","material-gesture-swipe-vertical":"material/gesture-swipe-vertical.svg","material-gesture-swipe":"material/gesture-swipe.svg","material-gesture-tap-box":"material/gesture-tap-box.svg","material-gesture-tap-button":"material/gesture-tap-button.svg","material-gesture-tap-hold":"material/gesture-tap-hold.svg","material-gesture-tap":"material/gesture-tap.svg","material-gesture-two-double-tap":"material/gesture-two-double-tap.svg","material-gesture-two-tap":"material/gesture-two-tap.svg","material-gesture":"material/gesture.svg","material-ghost-off-outline":"material/ghost-off-outline.svg","material-ghost-off":"material/ghost-off.svg","material-ghost-outline":"material/ghost-outline.svg","material-ghost":"material/ghost.svg","material-gift-off-outline":"material/gift-off-outline.svg","material-gift-off":"material/gift-off.svg","material-gift-open-outline":"material/gift-open-outline.svg","material-gift-open":"material/gift-open.svg","material-gift-outline":"material/gift-outline.svg","material-gift":"material/gift.svg","material-git":"material/git.svg","material-github":"material/github.svg","material-gitlab":"material/gitlab.svg","material-glass-cocktail-off":"material/glass-cocktail-off.svg","material-glass-cocktail":"material/glass-cocktail.svg","material-glass-flute":"material/glass-flute.svg","material-glass-fragile":"material/glass-fragile.svg","material-glass-mug-off":"material/glass-mug-off.svg","material-glass-mug-variant-off":"material/glass-mug-variant-off.svg","material-glass-mug-variant":"material/glass-mug-variant.svg","material-glass-mug":"material/glass-mug.svg","material-glass-pint-outline":"material/glass-pint-outline.svg","material-glass-stange":"material/glass-stange.svg","material-glass-tulip":"material/glass-tulip.svg","material-glass-wine":"material/glass-wine.svg","material-glasses":"material/glasses.svg","material-globe-light-outline":"material/globe-light-outline.svg","material-globe-light":"material/globe-light.svg","material-globe-model":"material/globe-model.svg","material-gmail":"material/gmail.svg","material-gnome":"material/gnome.svg","material-go-kart-track":"material/go-kart-track.svg","material-go-kart":"material/go-kart.svg","material-gog":"material/gog.svg","material-gold":"material/gold.svg","material-golf-cart":"material/golf-cart.svg","material-golf-tee":"material/golf-tee.svg","material-golf":"material/golf.svg","material-gondola":"material/gondola.svg","material-goodreads":"material/goodreads.svg","material-google-ads":"material/google-ads.svg","material-google-analytics":"material/google-analytics.svg","material-google-assistant":"material/google-assistant.svg","material-google-cardboard":"material/google-cardboard.svg","material-google-chrome":"material/google-chrome.svg","material-google-circles-communities":"material/google-circles-communities.svg","material-google-circles-extended":"material/google-circles-extended.svg","material-google-circles-group":"material/google-circles-group.svg","material-google-circles":"material/google-circles.svg","material-google-classroom":"material/google-classroom.svg","material-google-cloud":"material/google-cloud.svg","material-google-downasaur":"material/google-downasaur.svg","material-google-drive":"material/google-drive.svg","material-google-earth":"material/google-earth.svg","material-google-fit":"material/google-fit.svg","material-google-glass":"material/google-glass.svg","material-google-hangouts":"material/google-hangouts.svg","material-google-keep":"material/google-keep.svg","material-google-lens":"material/google-lens.svg","material-google-maps":"material/google-maps.svg","material-google-my-business":"material/google-my-business.svg","material-google-nearby":"material/google-nearby.svg","material-google-play":"material/google-play.svg","material-google-plus":"material/google-plus.svg","material-google-podcast":"material/google-podcast.svg","material-google-spreadsheet":"material/google-spreadsheet.svg","material-google-street-view":"material/google-street-view.svg","material-google-translate":"material/google-translate.svg","material-google":"material/google.svg","material-gradient-horizontal":"material/gradient-horizontal.svg","material-gradient-vertical":"material/gradient-vertical.svg","material-grain":"material/grain.svg","material-graph-outline":"material/graph-outline.svg","material-graph":"material/graph.svg","material-graphql":"material/graphql.svg","material-grass":"material/grass.svg","material-grave-stone":"material/grave-stone.svg","material-grease-pencil":"material/grease-pencil.svg","material-greater-than-or-equal":"material/greater-than-or-equal.svg","material-greater-than":"material/greater-than.svg","material-greenhouse":"material/greenhouse.svg","material-grid-large":"material/grid-large.svg","material-grid-off":"material/grid-off.svg","material-grid":"material/grid.svg","material-grill-outline":"material/grill-outline.svg","material-grill":"material/grill.svg","material-group":"material/group.svg","material-guitar-acoustic":"material/guitar-acoustic.svg","material-guitar-electric":"material/guitar-electric.svg","material-guitar-pick-outline":"material/guitar-pick-outline.svg","material-guitar-pick":"material/guitar-pick.svg","material-guy-fawkes-mask":"material/guy-fawkes-mask.svg","material-gymnastics":"material/gymnastics.svg","material-hail":"material/hail.svg","material-hair-dryer-outline":"material/hair-dryer-outline.svg","material-hair-dryer":"material/hair-dryer.svg","material-halloween":"material/halloween.svg","material-hamburger-check":"material/hamburger-check.svg","material-hamburger-minus":"material/hamburger-minus.svg","material-hamburger-off":"material/hamburger-off.svg","material-hamburger-plus":"material/hamburger-plus.svg","material-hamburger-remove":"material/hamburger-remove.svg","material-hamburger":"material/hamburger.svg","material-hammer-screwdriver":"material/hammer-screwdriver.svg","material-hammer-sickle":"material/hammer-sickle.svg","material-hammer-wrench":"material/hammer-wrench.svg","material-hammer":"material/hammer.svg","material-hand-back-left-off-outline":"material/hand-back-left-off-outline.svg","material-hand-back-left-off":"material/hand-back-left-off.svg","material-hand-back-left-outline":"material/hand-back-left-outline.svg","material-hand-back-left":"material/hand-back-left.svg","material-hand-back-right-off-outline":"material/hand-back-right-off-outline.svg","material-hand-back-right-off":"material/hand-back-right-off.svg","material-hand-back-right-outline":"material/hand-back-right-outline.svg","material-hand-back-right":"material/hand-back-right.svg","material-hand-clap-off":"material/hand-clap-off.svg","material-hand-clap":"material/hand-clap.svg","material-hand-coin-outline":"material/hand-coin-outline.svg","material-hand-coin":"material/hand-coin.svg","material-hand-cycle":"material/hand-cycle.svg","material-hand-extended-outline":"material/hand-extended-outline.svg","material-hand-extended":"material/hand-extended.svg","material-hand-front-left-outline":"material/hand-front-left-outline.svg","material-hand-front-left":"material/hand-front-left.svg","material-hand-front-right-outline":"material/hand-front-right-outline.svg","material-hand-front-right":"material/hand-front-right.svg","material-hand-heart-outline":"material/hand-heart-outline.svg","material-hand-heart":"material/hand-heart.svg","material-hand-okay":"material/hand-okay.svg","material-hand-peace-variant":"material/hand-peace-variant.svg","material-hand-peace":"material/hand-peace.svg","material-hand-pointing-down":"material/hand-pointing-down.svg","material-hand-pointing-left":"material/hand-pointing-left.svg","material-hand-pointing-right":"material/hand-pointing-right.svg","material-hand-pointing-up":"material/hand-pointing-up.svg","material-hand-saw":"material/hand-saw.svg","material-hand-wash-outline":"material/hand-wash-outline.svg","material-hand-wash":"material/hand-wash.svg","material-hand-water":"material/hand-water.svg","material-hand-wave-outline":"material/hand-wave-outline.svg","material-hand-wave":"material/hand-wave.svg","material-handball":"material/handball.svg","material-handcuffs":"material/handcuffs.svg","material-hands-pray":"material/hands-pray.svg","material-handshake-outline":"material/handshake-outline.svg","material-handshake":"material/handshake.svg","material-hanger":"material/hanger.svg","material-hard-hat":"material/hard-hat.svg","material-harddisk-plus":"material/harddisk-plus.svg","material-harddisk-remove":"material/harddisk-remove.svg","material-harddisk":"material/harddisk.svg","material-hat-fedora":"material/hat-fedora.svg","material-hazard-lights":"material/hazard-lights.svg","material-hdmi-port":"material/hdmi-port.svg","material-hdr-off":"material/hdr-off.svg","material-hdr":"material/hdr.svg","material-head-alert-outline":"material/head-alert-outline.svg","material-head-alert":"material/head-alert.svg","material-head-check-outline":"material/head-check-outline.svg","material-head-check":"material/head-check.svg","material-head-cog-outline":"material/head-cog-outline.svg","material-head-cog":"material/head-cog.svg","material-head-dots-horizontal-outline":"material/head-dots-horizontal-outline.svg","material-head-dots-horizontal":"material/head-dots-horizontal.svg","material-head-flash-outline":"material/head-flash-outline.svg","material-head-flash":"material/head-flash.svg","material-head-heart-outline":"material/head-heart-outline.svg","material-head-heart":"material/head-heart.svg","material-head-lightbulb-outline":"material/head-lightbulb-outline.svg","material-head-lightbulb":"material/head-lightbulb.svg","material-head-minus-outline":"material/head-minus-outline.svg","material-head-minus":"material/head-minus.svg","material-head-outline":"material/head-outline.svg","material-head-plus-outline":"material/head-plus-outline.svg","material-head-plus":"material/head-plus.svg","material-head-question-outline":"material/head-question-outline.svg","material-head-question":"material/head-question.svg","material-head-remove-outline":"material/head-remove-outline.svg","material-head-remove":"material/head-remove.svg","material-head-snowflake-outline":"material/head-snowflake-outline.svg","material-head-snowflake":"material/head-snowflake.svg","material-head-sync-outline":"material/head-sync-outline.svg","material-head-sync":"material/head-sync.svg","material-head":"material/head.svg","material-headphones-bluetooth":"material/headphones-bluetooth.svg","material-headphones-box":"material/headphones-box.svg","material-headphones-off":"material/headphones-off.svg","material-headphones-settings":"material/headphones-settings.svg","material-headphones":"material/headphones.svg","material-headset-dock":"material/headset-dock.svg","material-headset-off":"material/headset-off.svg","material-headset":"material/headset.svg","material-heart-box-outline":"material/heart-box-outline.svg","material-heart-box":"material/heart-box.svg","material-heart-broken-outline":"material/heart-broken-outline.svg","material-heart-broken":"material/heart-broken.svg","material-heart-circle-outline":"material/heart-circle-outline.svg","material-heart-circle":"material/heart-circle.svg","material-heart-cog-outline":"material/heart-cog-outline.svg","material-heart-cog":"material/heart-cog.svg","material-heart-flash":"material/heart-flash.svg","material-heart-half-full":"material/heart-half-full.svg","material-heart-half-outline":"material/heart-half-outline.svg","material-heart-half":"material/heart-half.svg","material-heart-minus-outline":"material/heart-minus-outline.svg","material-heart-minus":"material/heart-minus.svg","material-heart-multiple-outline":"material/heart-multiple-outline.svg","material-heart-multiple":"material/heart-multiple.svg","material-heart-off-outline":"material/heart-off-outline.svg","material-heart-off":"material/heart-off.svg","material-heart-outline":"material/heart-outline.svg","material-heart-plus-outline":"material/heart-plus-outline.svg","material-heart-plus":"material/heart-plus.svg","material-heart-pulse":"material/heart-pulse.svg","material-heart-remove-outline":"material/heart-remove-outline.svg","material-heart-remove":"material/heart-remove.svg","material-heart-search":"material/heart-search.svg","material-heart-settings-outline":"material/heart-settings-outline.svg","material-heart-settings":"material/heart-settings.svg","material-heart":"material/heart.svg","material-heat-pump-outline":"material/heat-pump-outline.svg","material-heat-pump":"material/heat-pump.svg","material-heat-wave":"material/heat-wave.svg","material-heating-coil":"material/heating-coil.svg","material-helicopter":"material/helicopter.svg","material-help-box-multiple-outline":"material/help-box-multiple-outline.svg","material-help-box-multiple":"material/help-box-multiple.svg","material-help-box-outline":"material/help-box-outline.svg","material-help-box":"material/help-box.svg","material-help-circle-outline":"material/help-circle-outline.svg","material-help-circle":"material/help-circle.svg","material-help-network-outline":"material/help-network-outline.svg","material-help-network":"material/help-network.svg","material-help-rhombus-outline":"material/help-rhombus-outline.svg","material-help-rhombus":"material/help-rhombus.svg","material-help":"material/help.svg","material-hexadecimal":"material/hexadecimal.svg","material-hexagon-multiple-outline":"material/hexagon-multiple-outline.svg","material-hexagon-multiple":"material/hexagon-multiple.svg","material-hexagon-outline":"material/hexagon-outline.svg","material-hexagon-slice-1":"material/hexagon-slice-1.svg","material-hexagon-slice-2":"material/hexagon-slice-2.svg","material-hexagon-slice-3":"material/hexagon-slice-3.svg","material-hexagon-slice-4":"material/hexagon-slice-4.svg","material-hexagon-slice-5":"material/hexagon-slice-5.svg","material-hexagon-slice-6":"material/hexagon-slice-6.svg","material-hexagon":"material/hexagon.svg","material-hexagram-outline":"material/hexagram-outline.svg","material-hexagram":"material/hexagram.svg","material-high-definition-box":"material/high-definition-box.svg","material-high-definition":"material/high-definition.svg","material-highway":"material/highway.svg","material-hiking":"material/hiking.svg","material-history":"material/history.svg","material-hockey-puck":"material/hockey-puck.svg","material-hockey-sticks":"material/hockey-sticks.svg","material-hololens":"material/hololens.svg","material-home-account":"material/home-account.svg","material-home-alert-outline":"material/home-alert-outline.svg","material-home-alert":"material/home-alert.svg","material-home-analytics":"material/home-analytics.svg","material-home-assistant":"material/home-assistant.svg","material-home-automation":"material/home-automation.svg","material-home-battery-outline":"material/home-battery-outline.svg","material-home-battery":"material/home-battery.svg","material-home-circle-outline":"material/home-circle-outline.svg","material-home-circle":"material/home-circle.svg","material-home-city-outline":"material/home-city-outline.svg","material-home-city":"material/home-city.svg","material-home-clock-outline":"material/home-clock-outline.svg","material-home-clock":"material/home-clock.svg","material-home-edit-outline":"material/home-edit-outline.svg","material-home-edit":"material/home-edit.svg","material-home-export-outline":"material/home-export-outline.svg","material-home-flood":"material/home-flood.svg","material-home-floor-0":"material/home-floor-0.svg","material-home-floor-1":"material/home-floor-1.svg","material-home-floor-2":"material/home-floor-2.svg","material-home-floor-3":"material/home-floor-3.svg","material-home-floor-a":"material/home-floor-a.svg","material-home-floor-b":"material/home-floor-b.svg","material-home-floor-g":"material/home-floor-g.svg","material-home-floor-l":"material/home-floor-l.svg","material-home-floor-negative-1":"material/home-floor-negative-1.svg","material-home-group-minus":"material/home-group-minus.svg","material-home-group-plus":"material/home-group-plus.svg","material-home-group-remove":"material/home-group-remove.svg","material-home-group":"material/home-group.svg","material-home-heart":"material/home-heart.svg","material-home-import-outline":"material/home-import-outline.svg","material-home-lightbulb-outline":"material/home-lightbulb-outline.svg","material-home-lightbulb":"material/home-lightbulb.svg","material-home-lightning-bolt-outline":"material/home-lightning-bolt-outline.svg","material-home-lightning-bolt":"material/home-lightning-bolt.svg","material-home-lock-open":"material/home-lock-open.svg","material-home-lock":"material/home-lock.svg","material-home-map-marker":"material/home-map-marker.svg","material-home-minus-outline":"material/home-minus-outline.svg","material-home-minus":"material/home-minus.svg","material-home-modern":"material/home-modern.svg","material-home-off-outline":"material/home-off-outline.svg","material-home-off":"material/home-off.svg","material-home-outline":"material/home-outline.svg","material-home-percent-outline":"material/home-percent-outline.svg","material-home-percent":"material/home-percent.svg","material-home-plus-outline":"material/home-plus-outline.svg","material-home-plus":"material/home-plus.svg","material-home-remove-outline":"material/home-remove-outline.svg","material-home-remove":"material/home-remove.svg","material-home-roof":"material/home-roof.svg","material-home-search-outline":"material/home-search-outline.svg","material-home-search":"material/home-search.svg","material-home-silo-outline":"material/home-silo-outline.svg","material-home-silo":"material/home-silo.svg","material-home-sound-in-outline":"material/home-sound-in-outline.svg","material-home-sound-in":"material/home-sound-in.svg","material-home-sound-out-outline":"material/home-sound-out-outline.svg","material-home-sound-out":"material/home-sound-out.svg","material-home-switch-outline":"material/home-switch-outline.svg","material-home-switch":"material/home-switch.svg","material-home-thermometer-outline":"material/home-thermometer-outline.svg","material-home-thermometer":"material/home-thermometer.svg","material-home-variant-outline":"material/home-variant-outline.svg","material-home-variant":"material/home-variant.svg","material-home":"material/home.svg","material-hook-off":"material/hook-off.svg","material-hook":"material/hook.svg","material-hoop-house":"material/hoop-house.svg","material-hops":"material/hops.svg","material-horizontal-rotate-clockwise":"material/horizontal-rotate-clockwise.svg","material-horizontal-rotate-counterclockwise":"material/horizontal-rotate-counterclockwise.svg","material-horse-human":"material/horse-human.svg","material-horse-variant-fast":"material/horse-variant-fast.svg","material-horse-variant":"material/horse-variant.svg","material-horse":"material/horse.svg","material-horseshoe":"material/horseshoe.svg","material-hospital-box-outline":"material/hospital-box-outline.svg","material-hospital-box":"material/hospital-box.svg","material-hospital-building":"material/hospital-building.svg","material-hospital-marker":"material/hospital-marker.svg","material-hospital":"material/hospital.svg","material-hot-tub":"material/hot-tub.svg","material-hours-12":"material/hours-12.svg","material-hours-24":"material/hours-24.svg","material-hub-outline":"material/hub-outline.svg","material-hub":"material/hub.svg","material-hubspot":"material/hubspot.svg","material-hulu":"material/hulu.svg","material-human-baby-changing-table":"material/human-baby-changing-table.svg","material-human-cane":"material/human-cane.svg","material-human-capacity-decrease":"material/human-capacity-decrease.svg","material-human-capacity-increase":"material/human-capacity-increase.svg","material-human-child":"material/human-child.svg","material-human-dolly":"material/human-dolly.svg","material-human-edit":"material/human-edit.svg","material-human-female-boy":"material/human-female-boy.svg","material-human-female-dance":"material/human-female-dance.svg","material-human-female-female-child":"material/human-female-female-child.svg","material-human-female-female":"material/human-female-female.svg","material-human-female-girl":"material/human-female-girl.svg","material-human-female":"material/human-female.svg","material-human-greeting-proximity":"material/human-greeting-proximity.svg","material-human-greeting-variant":"material/human-greeting-variant.svg","material-human-greeting":"material/human-greeting.svg","material-human-handsdown":"material/human-handsdown.svg","material-human-handsup":"material/human-handsup.svg","material-human-male-board-poll":"material/human-male-board-poll.svg","material-human-male-board":"material/human-male-board.svg","material-human-male-boy":"material/human-male-boy.svg","material-human-male-child":"material/human-male-child.svg","material-human-male-female-child":"material/human-male-female-child.svg","material-human-male-female":"material/human-male-female.svg","material-human-male-girl":"material/human-male-girl.svg","material-human-male-height-variant":"material/human-male-height-variant.svg","material-human-male-height":"material/human-male-height.svg","material-human-male-male-child":"material/human-male-male-child.svg","material-human-male-male":"material/human-male-male.svg","material-human-male":"material/human-male.svg","material-human-non-binary":"material/human-non-binary.svg","material-human-pregnant":"material/human-pregnant.svg","material-human-queue":"material/human-queue.svg","material-human-scooter":"material/human-scooter.svg","material-human-walker":"material/human-walker.svg","material-human-wheelchair":"material/human-wheelchair.svg","material-human-white-cane":"material/human-white-cane.svg","material-human":"material/human.svg","material-humble-bundle":"material/humble-bundle.svg","material-hvac-off":"material/hvac-off.svg","material-hvac":"material/hvac.svg","material-hydraulic-oil-level":"material/hydraulic-oil-level.svg","material-hydraulic-oil-temperature":"material/hydraulic-oil-temperature.svg","material-hydro-power":"material/hydro-power.svg","material-hydrogen-station":"material/hydrogen-station.svg","material-ice-cream-off":"material/ice-cream-off.svg","material-ice-cream":"material/ice-cream.svg","material-ice-pop":"material/ice-pop.svg","material-id-card":"material/id-card.svg","material-identifier":"material/identifier.svg","material-ideogram-cjk-variant":"material/ideogram-cjk-variant.svg","material-ideogram-cjk":"material/ideogram-cjk.svg","material-image-album":"material/image-album.svg","material-image-area-close":"material/image-area-close.svg","material-image-area":"material/image-area.svg","material-image-auto-adjust":"material/image-auto-adjust.svg","material-image-broken-variant":"material/image-broken-variant.svg","material-image-broken":"material/image-broken.svg","material-image-check-outline":"material/image-check-outline.svg","material-image-check":"material/image-check.svg","material-image-edit-outline":"material/image-edit-outline.svg","material-image-edit":"material/image-edit.svg","material-image-filter-black-white":"material/image-filter-black-white.svg","material-image-filter-center-focus-strong-outline":"material/image-filter-center-focus-strong-outline.svg","material-image-filter-center-focus-strong":"material/image-filter-center-focus-strong.svg","material-image-filter-center-focus-weak":"material/image-filter-center-focus-weak.svg","material-image-filter-center-focus":"material/image-filter-center-focus.svg","material-image-filter-drama-outline":"material/image-filter-drama-outline.svg","material-image-filter-drama":"material/image-filter-drama.svg","material-image-filter-frames":"material/image-filter-frames.svg","material-image-filter-hdr-outline":"material/image-filter-hdr-outline.svg","material-image-filter-hdr":"material/image-filter-hdr.svg","material-image-filter-none":"material/image-filter-none.svg","material-image-filter-tilt-shift":"material/image-filter-tilt-shift.svg","material-image-filter-vintage":"material/image-filter-vintage.svg","material-image-frame":"material/image-frame.svg","material-image-lock-outline":"material/image-lock-outline.svg","material-image-lock":"material/image-lock.svg","material-image-marker-outline":"material/image-marker-outline.svg","material-image-marker":"material/image-marker.svg","material-image-minus-outline":"material/image-minus-outline.svg","material-image-minus":"material/image-minus.svg","material-image-move":"material/image-move.svg","material-image-multiple-outline":"material/image-multiple-outline.svg","material-image-multiple":"material/image-multiple.svg","material-image-off-outline":"material/image-off-outline.svg","material-image-off":"material/image-off.svg","material-image-outline":"material/image-outline.svg","material-image-plus-outline":"material/image-plus-outline.svg","material-image-plus":"material/image-plus.svg","material-image-refresh-outline":"material/image-refresh-outline.svg","material-image-refresh":"material/image-refresh.svg","material-image-remove-outline":"material/image-remove-outline.svg","material-image-remove":"material/image-remove.svg","material-image-search-outline":"material/image-search-outline.svg","material-image-search":"material/image-search.svg","material-image-size-select-actual":"material/image-size-select-actual.svg","material-image-size-select-large":"material/image-size-select-large.svg","material-image-size-select-small":"material/image-size-select-small.svg","material-image-sync-outline":"material/image-sync-outline.svg","material-image-sync":"material/image-sync.svg","material-image-text":"material/image-text.svg","material-image":"material/image.svg","material-import":"material/import.svg","material-inbox-arrow-down-outline":"material/inbox-arrow-down-outline.svg","material-inbox-arrow-down":"material/inbox-arrow-down.svg","material-inbox-arrow-up-outline":"material/inbox-arrow-up-outline.svg","material-inbox-arrow-up":"material/inbox-arrow-up.svg","material-inbox-full-outline":"material/inbox-full-outline.svg","material-inbox-full":"material/inbox-full.svg","material-inbox-multiple-outline":"material/inbox-multiple-outline.svg","material-inbox-multiple":"material/inbox-multiple.svg","material-inbox-outline":"material/inbox-outline.svg","material-inbox-remove-outline":"material/inbox-remove-outline.svg","material-inbox-remove":"material/inbox-remove.svg","material-inbox":"material/inbox.svg","material-incognito-circle-off":"material/incognito-circle-off.svg","material-incognito-circle":"material/incognito-circle.svg","material-incognito-off":"material/incognito-off.svg","material-incognito":"material/incognito.svg","material-induction":"material/induction.svg","material-infinity":"material/infinity.svg","material-information-box-outline":"material/information-box-outline.svg","material-information-box":"material/information-box.svg","material-information-off-outline":"material/information-off-outline.svg","material-information-off":"material/information-off.svg","material-information-outline":"material/information-outline.svg","material-information-slab-box-outline":"material/information-slab-box-outline.svg","material-information-slab-box":"material/information-slab-box.svg","material-information-slab-circle-outline":"material/information-slab-circle-outline.svg","material-information-slab-circle":"material/information-slab-circle.svg","material-information-slab-symbol":"material/information-slab-symbol.svg","material-information-symbol":"material/information-symbol.svg","material-information-variant-box-outline":"material/information-variant-box-outline.svg","material-information-variant-box":"material/information-variant-box.svg","material-information-variant-circle-outline":"material/information-variant-circle-outline.svg","material-information-variant-circle":"material/information-variant-circle.svg","material-information-variant":"material/information-variant.svg","material-information":"material/information.svg","material-instagram":"material/instagram.svg","material-instrument-triangle":"material/instrument-triangle.svg","material-integrated-circuit-chip":"material/integrated-circuit-chip.svg","material-invert-colors-off":"material/invert-colors-off.svg","material-invert-colors":"material/invert-colors.svg","material-invoice-arrow-left-outline":"material/invoice-arrow-left-outline.svg","material-invoice-arrow-left":"material/invoice-arrow-left.svg","material-invoice-arrow-right-outline":"material/invoice-arrow-right-outline.svg","material-invoice-arrow-right":"material/invoice-arrow-right.svg","material-invoice-check-outline":"material/invoice-check-outline.svg","material-invoice-check":"material/invoice-check.svg","material-invoice-clock-outline":"material/invoice-clock-outline.svg","material-invoice-clock":"material/invoice-clock.svg","material-invoice-edit-outline":"material/invoice-edit-outline.svg","material-invoice-edit":"material/invoice-edit.svg","material-invoice-export-outline":"material/invoice-export-outline.svg","material-invoice-fast-outline":"material/invoice-fast-outline.svg","material-invoice-fast":"material/invoice-fast.svg","material-invoice-import-outline":"material/invoice-import-outline.svg","material-invoice-import":"material/invoice-import.svg","material-invoice-list-outline":"material/invoice-list-outline.svg","material-invoice-list":"material/invoice-list.svg","material-invoice-minus-outline":"material/invoice-minus-outline.svg","material-invoice-minus":"material/invoice-minus.svg","material-invoice-multiple-outline":"material/invoice-multiple-outline.svg","material-invoice-multiple":"material/invoice-multiple.svg","material-invoice-outline":"material/invoice-outline.svg","material-invoice-plus-outline":"material/invoice-plus-outline.svg","material-invoice-plus":"material/invoice-plus.svg","material-invoice-remove-outline":"material/invoice-remove-outline.svg","material-invoice-remove":"material/invoice-remove.svg","material-invoice-send-outline":"material/invoice-send-outline.svg","material-invoice-send":"material/invoice-send.svg","material-invoice-text-arrow-left-outline":"material/invoice-text-arrow-left-outline.svg","material-invoice-text-arrow-left":"material/invoice-text-arrow-left.svg","material-invoice-text-arrow-right-outline":"material/invoice-text-arrow-right-outline.svg","material-invoice-text-arrow-right":"material/invoice-text-arrow-right.svg","material-invoice-text-check-outline":"material/invoice-text-check-outline.svg","material-invoice-text-check":"material/invoice-text-check.svg","material-invoice-text-clock-outline":"material/invoice-text-clock-outline.svg","material-invoice-text-clock":"material/invoice-text-clock.svg","material-invoice-text-edit-outline":"material/invoice-text-edit-outline.svg","material-invoice-text-edit":"material/invoice-text-edit.svg","material-invoice-text-fast-outline":"material/invoice-text-fast-outline.svg","material-invoice-text-fast":"material/invoice-text-fast.svg","material-invoice-text-minus-outline":"material/invoice-text-minus-outline.svg","material-invoice-text-minus":"material/invoice-text-minus.svg","material-invoice-text-multiple-outline":"material/invoice-text-multiple-outline.svg","material-invoice-text-multiple":"material/invoice-text-multiple.svg","material-invoice-text-outline":"material/invoice-text-outline.svg","material-invoice-text-plus-outline":"material/invoice-text-plus-outline.svg","material-invoice-text-plus":"material/invoice-text-plus.svg","material-invoice-text-remove-outline":"material/invoice-text-remove-outline.svg","material-invoice-text-remove":"material/invoice-text-remove.svg","material-invoice-text-send-outline":"material/invoice-text-send-outline.svg","material-invoice-text-send":"material/invoice-text-send.svg","material-invoice-text":"material/invoice-text.svg","material-invoice":"material/invoice.svg","material-iobroker":"material/iobroker.svg","material-ip-network-outline":"material/ip-network-outline.svg","material-ip-network":"material/ip-network.svg","material-ip-outline":"material/ip-outline.svg","material-ip":"material/ip.svg","material-ipod":"material/ipod.svg","material-iron-board":"material/iron-board.svg","material-iron-outline":"material/iron-outline.svg","material-iron":"material/iron.svg","material-island-variant":"material/island-variant.svg","material-island":"material/island.svg","material-iv-bag":"material/iv-bag.svg","material-jabber":"material/jabber.svg","material-jeepney":"material/jeepney.svg","material-jellyfish-outline":"material/jellyfish-outline.svg","material-jellyfish":"material/jellyfish.svg","material-jira":"material/jira.svg","material-jquery":"material/jquery.svg","material-jsfiddle":"material/jsfiddle.svg","material-jump-rope":"material/jump-rope.svg","material-kabaddi":"material/kabaddi.svg","material-kangaroo":"material/kangaroo.svg","material-karate":"material/karate.svg","material-kayaking":"material/kayaking.svg","material-keg":"material/keg.svg","material-kettle-alert-outline":"material/kettle-alert-outline.svg","material-kettle-alert":"material/kettle-alert.svg","material-kettle-off-outline":"material/kettle-off-outline.svg","material-kettle-off":"material/kettle-off.svg","material-kettle-outline":"material/kettle-outline.svg","material-kettle-pour-over":"material/kettle-pour-over.svg","material-kettle-steam-outline":"material/kettle-steam-outline.svg","material-kettle-steam":"material/kettle-steam.svg","material-kettle":"material/kettle.svg","material-kettlebell":"material/kettlebell.svg","material-key-alert-outline":"material/key-alert-outline.svg","material-key-alert":"material/key-alert.svg","material-key-arrow-right":"material/key-arrow-right.svg","material-key-chain-variant":"material/key-chain-variant.svg","material-key-chain":"material/key-chain.svg","material-key-change":"material/key-change.svg","material-key-link":"material/key-link.svg","material-key-minus":"material/key-minus.svg","material-key-outline":"material/key-outline.svg","material-key-plus":"material/key-plus.svg","material-key-remove":"material/key-remove.svg","material-key-star":"material/key-star.svg","material-key-variant":"material/key-variant.svg","material-key-wireless":"material/key-wireless.svg","material-key":"material/key.svg","material-keyboard-backspace":"material/keyboard-backspace.svg","material-keyboard-caps":"material/keyboard-caps.svg","material-keyboard-close-outline":"material/keyboard-close-outline.svg","material-keyboard-close":"material/keyboard-close.svg","material-keyboard-esc":"material/keyboard-esc.svg","material-keyboard-f1":"material/keyboard-f1.svg","material-keyboard-f10":"material/keyboard-f10.svg","material-keyboard-f11":"material/keyboard-f11.svg","material-keyboard-f12":"material/keyboard-f12.svg","material-keyboard-f2":"material/keyboard-f2.svg","material-keyboard-f3":"material/keyboard-f3.svg","material-keyboard-f4":"material/keyboard-f4.svg","material-keyboard-f5":"material/keyboard-f5.svg","material-keyboard-f6":"material/keyboard-f6.svg","material-keyboard-f7":"material/keyboard-f7.svg","material-keyboard-f8":"material/keyboard-f8.svg","material-keyboard-f9":"material/keyboard-f9.svg","material-keyboard-off-outline":"material/keyboard-off-outline.svg","material-keyboard-off":"material/keyboard-off.svg","material-keyboard-outline":"material/keyboard-outline.svg","material-keyboard-return":"material/keyboard-return.svg","material-keyboard-settings-outline":"material/keyboard-settings-outline.svg","material-keyboard-settings":"material/keyboard-settings.svg","material-keyboard-space":"material/keyboard-space.svg","material-keyboard-tab-reverse":"material/keyboard-tab-reverse.svg","material-keyboard-tab":"material/keyboard-tab.svg","material-keyboard-variant":"material/keyboard-variant.svg","material-keyboard":"material/keyboard.svg","material-khanda":"material/khanda.svg","material-kickstarter":"material/kickstarter.svg","material-kite-outline":"material/kite-outline.svg","material-kite":"material/kite.svg","material-kitesurfing":"material/kitesurfing.svg","material-klingon":"material/klingon.svg","material-knife-military":"material/knife-military.svg","material-knife":"material/knife.svg","material-knob":"material/knob.svg","material-koala":"material/koala.svg","material-kodi":"material/kodi.svg","material-kubernetes":"material/kubernetes.svg","material-label-multiple-outline":"material/label-multiple-outline.svg","material-label-multiple":"material/label-multiple.svg","material-label-off-outline":"material/label-off-outline.svg","material-label-off":"material/label-off.svg","material-label-outline":"material/label-outline.svg","material-label-percent-outline":"material/label-percent-outline.svg","material-label-percent":"material/label-percent.svg","material-label-variant-outline":"material/label-variant-outline.svg","material-label-variant":"material/label-variant.svg","material-label":"material/label.svg","material-ladder":"material/ladder.svg","material-ladybug":"material/ladybug.svg","material-lambda":"material/lambda.svg","material-lamp-outline":"material/lamp-outline.svg","material-lamp":"material/lamp.svg","material-lamps-outline":"material/lamps-outline.svg","material-lamps":"material/lamps.svg","material-lan-check":"material/lan-check.svg","material-lan-connect":"material/lan-connect.svg","material-lan-disconnect":"material/lan-disconnect.svg","material-lan-pending":"material/lan-pending.svg","material-lan":"material/lan.svg","material-land-fields":"material/land-fields.svg","material-land-plots-circle-variant":"material/land-plots-circle-variant.svg","material-land-plots-circle":"material/land-plots-circle.svg","material-land-plots-marker":"material/land-plots-marker.svg","material-land-plots":"material/land-plots.svg","material-land-rows-horizontal":"material/land-rows-horizontal.svg","material-land-rows-vertical":"material/land-rows-vertical.svg","material-landslide-outline":"material/landslide-outline.svg","material-landslide":"material/landslide.svg","material-language-c":"material/language-c.svg","material-language-cpp":"material/language-cpp.svg","material-language-csharp":"material/language-csharp.svg","material-language-css3":"material/language-css3.svg","material-language-fortran":"material/language-fortran.svg","material-language-go":"material/language-go.svg","material-language-haskell":"material/language-haskell.svg","material-language-html5":"material/language-html5.svg","material-language-java":"material/language-java.svg","material-language-javascript":"material/language-javascript.svg","material-language-kotlin":"material/language-kotlin.svg","material-language-lua":"material/language-lua.svg","material-language-markdown-outline":"material/language-markdown-outline.svg","material-language-markdown":"material/language-markdown.svg","material-language-php":"material/language-php.svg","material-language-python":"material/language-python.svg","material-language-r":"material/language-r.svg","material-language-ruby-on-rails":"material/language-ruby-on-rails.svg","material-language-ruby":"material/language-ruby.svg","material-language-rust":"material/language-rust.svg","material-language-swift":"material/language-swift.svg","material-language-typescript":"material/language-typescript.svg","material-language-xaml":"material/language-xaml.svg","material-laptop-account":"material/laptop-account.svg","material-laptop-off":"material/laptop-off.svg","material-laptop":"material/laptop.svg","material-laravel":"material/laravel.svg","material-laser-pointer":"material/laser-pointer.svg","material-lasso":"material/lasso.svg","material-lastpass":"material/lastpass.svg","material-latitude":"material/latitude.svg","material-launch":"material/launch.svg","material-lava-lamp":"material/lava-lamp.svg","material-layers-edit":"material/layers-edit.svg","material-layers-minus":"material/layers-minus.svg","material-layers-off-outline":"material/layers-off-outline.svg","material-layers-off":"material/layers-off.svg","material-layers-outline":"material/layers-outline.svg","material-layers-plus":"material/layers-plus.svg","material-layers-remove":"material/layers-remove.svg","material-layers-search-outline":"material/layers-search-outline.svg","material-layers-search":"material/layers-search.svg","material-layers-triple-outline":"material/layers-triple-outline.svg","material-layers-triple":"material/layers-triple.svg","material-layers":"material/layers.svg","material-lead-pencil":"material/lead-pencil.svg","material-leaf-circle-outline":"material/leaf-circle-outline.svg","material-leaf-circle":"material/leaf-circle.svg","material-leaf-maple-off":"material/leaf-maple-off.svg","material-leaf-maple":"material/leaf-maple.svg","material-leaf-off":"material/leaf-off.svg","material-leaf":"material/leaf.svg","material-leak-off":"material/leak-off.svg","material-leak":"material/leak.svg","material-lectern":"material/lectern.svg","material-led-off":"material/led-off.svg","material-led-on":"material/led-on.svg","material-led-outline":"material/led-outline.svg","material-led-strip-variant-off":"material/led-strip-variant-off.svg","material-led-strip-variant":"material/led-strip-variant.svg","material-led-strip":"material/led-strip.svg","material-led-variant-off":"material/led-variant-off.svg","material-led-variant-on":"material/led-variant-on.svg","material-led-variant-outline":"material/led-variant-outline.svg","material-leek":"material/leek.svg","material-less-than-or-equal":"material/less-than-or-equal.svg","material-less-than":"material/less-than.svg","material-library-outline":"material/library-outline.svg","material-library-shelves":"material/library-shelves.svg","material-library":"material/library.svg","material-license":"material/license.svg","material-lifebuoy":"material/lifebuoy.svg","material-light-flood-down":"material/light-flood-down.svg","material-light-flood-up":"material/light-flood-up.svg","material-light-recessed":"material/light-recessed.svg","material-light-switch-off":"material/light-switch-off.svg","material-light-switch":"material/light-switch.svg","material-lightbulb-alert-outline":"material/lightbulb-alert-outline.svg","material-lightbulb-alert":"material/lightbulb-alert.svg","material-lightbulb-auto-outline":"material/lightbulb-auto-outline.svg","material-lightbulb-auto":"material/lightbulb-auto.svg","material-lightbulb-cfl-off":"material/lightbulb-cfl-off.svg","material-lightbulb-cfl-spiral-off":"material/lightbulb-cfl-spiral-off.svg","material-lightbulb-cfl-spiral":"material/lightbulb-cfl-spiral.svg","material-lightbulb-cfl":"material/lightbulb-cfl.svg","material-lightbulb-fluorescent-tube-outline":"material/lightbulb-fluorescent-tube-outline.svg","material-lightbulb-fluorescent-tube":"material/lightbulb-fluorescent-tube.svg","material-lightbulb-group-off-outline":"material/lightbulb-group-off-outline.svg","material-lightbulb-group-off":"material/lightbulb-group-off.svg","material-lightbulb-group-outline":"material/lightbulb-group-outline.svg","material-lightbulb-group":"material/lightbulb-group.svg","material-lightbulb-multiple-off-outline":"material/lightbulb-multiple-off-outline.svg","material-lightbulb-multiple-off":"material/lightbulb-multiple-off.svg","material-lightbulb-multiple-outline":"material/lightbulb-multiple-outline.svg","material-lightbulb-multiple":"material/lightbulb-multiple.svg","material-lightbulb-night-outline":"material/lightbulb-night-outline.svg","material-lightbulb-night":"material/lightbulb-night.svg","material-lightbulb-off-outline":"material/lightbulb-off-outline.svg","material-lightbulb-off":"material/lightbulb-off.svg","material-lightbulb-on-10":"material/lightbulb-on-10.svg","material-lightbulb-on-20":"material/lightbulb-on-20.svg","material-lightbulb-on-30":"material/lightbulb-on-30.svg","material-lightbulb-on-40":"material/lightbulb-on-40.svg","material-lightbulb-on-50":"material/lightbulb-on-50.svg","material-lightbulb-on-60":"material/lightbulb-on-60.svg","material-lightbulb-on-70":"material/lightbulb-on-70.svg","material-lightbulb-on-80":"material/lightbulb-on-80.svg","material-lightbulb-on-90":"material/lightbulb-on-90.svg","material-lightbulb-on-outline":"material/lightbulb-on-outline.svg","material-lightbulb-on":"material/lightbulb-on.svg","material-lightbulb-outline":"material/lightbulb-outline.svg","material-lightbulb-question-outline":"material/lightbulb-question-outline.svg","material-lightbulb-question":"material/lightbulb-question.svg","material-lightbulb-spot-off":"material/lightbulb-spot-off.svg","material-lightbulb-spot":"material/lightbulb-spot.svg","material-lightbulb-variant-outline":"material/lightbulb-variant-outline.svg","material-lightbulb-variant":"material/lightbulb-variant.svg","material-lightbulb":"material/lightbulb.svg","material-lighthouse-on":"material/lighthouse-on.svg","material-lighthouse":"material/lighthouse.svg","material-lightning-bolt-circle":"material/lightning-bolt-circle.svg","material-lightning-bolt-outline":"material/lightning-bolt-outline.svg","material-lightning-bolt":"material/lightning-bolt.svg","material-line-scan":"material/line-scan.svg","material-lingerie":"material/lingerie.svg","material-link-box-outline":"material/link-box-outline.svg","material-link-box-variant-outline":"material/link-box-variant-outline.svg","material-link-box-variant":"material/link-box-variant.svg","material-link-box":"material/link-box.svg","material-link-circle-outline":"material/link-circle-outline.svg","material-link-circle":"material/link-circle.svg","material-link-edit":"material/link-edit.svg","material-link-lock":"material/link-lock.svg","material-link-off":"material/link-off.svg","material-link-plus":"material/link-plus.svg","material-link-variant-minus":"material/link-variant-minus.svg","material-link-variant-off":"material/link-variant-off.svg","material-link-variant-plus":"material/link-variant-plus.svg","material-link-variant-remove":"material/link-variant-remove.svg","material-link-variant":"material/link-variant.svg","material-link":"material/link.svg","material-linkedin":"material/linkedin.svg","material-linux-mint":"material/linux-mint.svg","material-linux":"material/linux.svg","material-lipstick":"material/lipstick.svg","material-liquid-spot":"material/liquid-spot.svg","material-liquor":"material/liquor.svg","material-list-box-outline":"material/list-box-outline.svg","material-list-box":"material/list-box.svg","material-list-status":"material/list-status.svg","material-litecoin":"material/litecoin.svg","material-loading":"material/loading.svg","material-location-enter":"material/location-enter.svg","material-location-exit":"material/location-exit.svg","material-lock-alert-outline":"material/lock-alert-outline.svg","material-lock-alert":"material/lock-alert.svg","material-lock-check-outline":"material/lock-check-outline.svg","material-lock-check":"material/lock-check.svg","material-lock-clock":"material/lock-clock.svg","material-lock-minus-outline":"material/lock-minus-outline.svg","material-lock-minus":"material/lock-minus.svg","material-lock-off-outline":"material/lock-off-outline.svg","material-lock-off":"material/lock-off.svg","material-lock-open-alert-outline":"material/lock-open-alert-outline.svg","material-lock-open-alert":"material/lock-open-alert.svg","material-lock-open-check-outline":"material/lock-open-check-outline.svg","material-lock-open-check":"material/lock-open-check.svg","material-lock-open-minus-outline":"material/lock-open-minus-outline.svg","material-lock-open-minus":"material/lock-open-minus.svg","material-lock-open-outline":"material/lock-open-outline.svg","material-lock-open-plus-outline":"material/lock-open-plus-outline.svg","material-lock-open-plus":"material/lock-open-plus.svg","material-lock-open-remove-outline":"material/lock-open-remove-outline.svg","material-lock-open-remove":"material/lock-open-remove.svg","material-lock-open-variant-outline":"material/lock-open-variant-outline.svg","material-lock-open-variant":"material/lock-open-variant.svg","material-lock-open":"material/lock-open.svg","material-lock-outline":"material/lock-outline.svg","material-lock-pattern":"material/lock-pattern.svg","material-lock-percent-open-outline":"material/lock-percent-open-outline.svg","material-lock-percent-open-variant-outline":"material/lock-percent-open-variant-outline.svg","material-lock-percent-open-variant":"material/lock-percent-open-variant.svg","material-lock-percent-open":"material/lock-percent-open.svg","material-lock-percent-outline":"material/lock-percent-outline.svg","material-lock-percent":"material/lock-percent.svg","material-lock-plus-outline":"material/lock-plus-outline.svg","material-lock-plus":"material/lock-plus.svg","material-lock-question":"material/lock-question.svg","material-lock-remove-outline":"material/lock-remove-outline.svg","material-lock-remove":"material/lock-remove.svg","material-lock-reset":"material/lock-reset.svg","material-lock-smart":"material/lock-smart.svg","material-lock":"material/lock.svg","material-locker-multiple":"material/locker-multiple.svg","material-locker":"material/locker.svg","material-login-variant":"material/login-variant.svg","material-login":"material/login.svg","material-logout-variant":"material/logout-variant.svg","material-logout":"material/logout.svg","material-longitude":"material/longitude.svg","material-looks":"material/looks.svg","material-lotion-outline":"material/lotion-outline.svg","material-lotion-plus-outline":"material/lotion-plus-outline.svg","material-lotion-plus":"material/lotion-plus.svg","material-lotion":"material/lotion.svg","material-loupe":"material/loupe.svg","material-lumx":"material/lumx.svg","material-lungs":"material/lungs.svg","material-mace":"material/mace.svg","material-magazine-pistol":"material/magazine-pistol.svg","material-magazine-rifle":"material/magazine-rifle.svg","material-magic-staff":"material/magic-staff.svg","material-magnet-on":"material/magnet-on.svg","material-magnet":"material/magnet.svg","material-magnify-close":"material/magnify-close.svg","material-magnify-expand":"material/magnify-expand.svg","material-magnify-minus-cursor":"material/magnify-minus-cursor.svg","material-magnify-minus-outline":"material/magnify-minus-outline.svg","material-magnify-minus":"material/magnify-minus.svg","material-magnify-plus-cursor":"material/magnify-plus-cursor.svg","material-magnify-plus-outline":"material/magnify-plus-outline.svg","material-magnify-plus":"material/magnify-plus.svg","material-magnify-remove-cursor":"material/magnify-remove-cursor.svg","material-magnify-remove-outline":"material/magnify-remove-outline.svg","material-magnify-scan":"material/magnify-scan.svg","material-magnify":"material/magnify.svg","material-mail":"material/mail.svg","material-mailbox-open-outline":"material/mailbox-open-outline.svg","material-mailbox-open-up-outline":"material/mailbox-open-up-outline.svg","material-mailbox-open-up":"material/mailbox-open-up.svg","material-mailbox-open":"material/mailbox-open.svg","material-mailbox-outline":"material/mailbox-outline.svg","material-mailbox-up-outline":"material/mailbox-up-outline.svg","material-mailbox-up":"material/mailbox-up.svg","material-mailbox":"material/mailbox.svg","material-manjaro":"material/manjaro.svg","material-map-check-outline":"material/map-check-outline.svg","material-map-check":"material/map-check.svg","material-map-clock-outline":"material/map-clock-outline.svg","material-map-clock":"material/map-clock.svg","material-map-legend":"material/map-legend.svg","material-map-marker-account-outline":"material/map-marker-account-outline.svg","material-map-marker-account":"material/map-marker-account.svg","material-map-marker-alert-outline":"material/map-marker-alert-outline.svg","material-map-marker-alert":"material/map-marker-alert.svg","material-map-marker-check-outline":"material/map-marker-check-outline.svg","material-map-marker-check":"material/map-marker-check.svg","material-map-marker-circle":"material/map-marker-circle.svg","material-map-marker-distance":"material/map-marker-distance.svg","material-map-marker-down":"material/map-marker-down.svg","material-map-marker-left-outline":"material/map-marker-left-outline.svg","material-map-marker-left":"material/map-marker-left.svg","material-map-marker-minus-outline":"material/map-marker-minus-outline.svg","material-map-marker-minus":"material/map-marker-minus.svg","material-map-marker-multiple-outline":"material/map-marker-multiple-outline.svg","material-map-marker-multiple":"material/map-marker-multiple.svg","material-map-marker-off-outline":"material/map-marker-off-outline.svg","material-map-marker-off":"material/map-marker-off.svg","material-map-marker-outline":"material/map-marker-outline.svg","material-map-marker-path":"material/map-marker-path.svg","material-map-marker-plus-outline":"material/map-marker-plus-outline.svg","material-map-marker-plus":"material/map-marker-plus.svg","material-map-marker-question-outline":"material/map-marker-question-outline.svg","material-map-marker-question":"material/map-marker-question.svg","material-map-marker-radius-outline":"material/map-marker-radius-outline.svg","material-map-marker-radius":"material/map-marker-radius.svg","material-map-marker-remove-outline":"material/map-marker-remove-outline.svg","material-map-marker-remove-variant":"material/map-marker-remove-variant.svg","material-map-marker-remove":"material/map-marker-remove.svg","material-map-marker-right-outline":"material/map-marker-right-outline.svg","material-map-marker-right":"material/map-marker-right.svg","material-map-marker-star-outline":"material/map-marker-star-outline.svg","material-map-marker-star":"material/map-marker-star.svg","material-map-marker-up":"material/map-marker-up.svg","material-map-marker":"material/map-marker.svg","material-map-minus":"material/map-minus.svg","material-map-outline":"material/map-outline.svg","material-map-plus":"material/map-plus.svg","material-map-search-outline":"material/map-search-outline.svg","material-map-search":"material/map-search.svg","material-map":"material/map.svg","material-mapbox":"material/mapbox.svg","material-margin":"material/margin.svg","material-marker-cancel":"material/marker-cancel.svg","material-marker-check":"material/marker-check.svg","material-marker":"material/marker.svg","material-mastodon":"material/mastodon.svg","material-material-design":"material/material-design.svg","material-material-ui":"material/material-ui.svg","material-math-compass":"material/math-compass.svg","material-math-cos":"material/math-cos.svg","material-math-integral-box":"material/math-integral-box.svg","material-math-integral":"material/math-integral.svg","material-math-log":"material/math-log.svg","material-math-norm-box":"material/math-norm-box.svg","material-math-norm":"material/math-norm.svg","material-math-sin":"material/math-sin.svg","material-math-tan":"material/math-tan.svg","material-matrix":"material/matrix.svg","material-medal-outline":"material/medal-outline.svg","material-medal":"material/medal.svg","material-medical-bag":"material/medical-bag.svg","material-medical-cotton-swab":"material/medical-cotton-swab.svg","material-medication-outline":"material/medication-outline.svg","material-medication":"material/medication.svg","material-meditation":"material/meditation.svg","material-memory-arrow-down":"material/memory-arrow-down.svg","material-memory":"material/memory.svg","material-menorah-fire":"material/menorah-fire.svg","material-menorah":"material/menorah.svg","material-menu-close":"material/menu-close.svg","material-menu-down-outline":"material/menu-down-outline.svg","material-menu-down":"material/menu-down.svg","material-menu-left-outline":"material/menu-left-outline.svg","material-menu-left":"material/menu-left.svg","material-menu-open":"material/menu-open.svg","material-menu-right-outline":"material/menu-right-outline.svg","material-menu-right":"material/menu-right.svg","material-menu-swap-outline":"material/menu-swap-outline.svg","material-menu-swap":"material/menu-swap.svg","material-menu-up-outline":"material/menu-up-outline.svg","material-menu-up":"material/menu-up.svg","material-menu":"material/menu.svg","material-merge":"material/merge.svg","material-message-alert-outline":"material/message-alert-outline.svg","material-message-alert":"material/message-alert.svg","material-message-arrow-left-outline":"material/message-arrow-left-outline.svg","material-message-arrow-left":"material/message-arrow-left.svg","material-message-arrow-right-outline":"material/message-arrow-right-outline.svg","material-message-arrow-right":"material/message-arrow-right.svg","material-message-badge-outline":"material/message-badge-outline.svg","material-message-badge":"material/message-badge.svg","material-message-bookmark-outline":"material/message-bookmark-outline.svg","material-message-bookmark":"material/message-bookmark.svg","material-message-bulleted-off":"material/message-bulleted-off.svg","material-message-bulleted":"material/message-bulleted.svg","material-message-check-outline":"material/message-check-outline.svg","material-message-check":"material/message-check.svg","material-message-cog-outline":"material/message-cog-outline.svg","material-message-cog":"material/message-cog.svg","material-message-draw":"material/message-draw.svg","material-message-fast-outline":"material/message-fast-outline.svg","material-message-fast":"material/message-fast.svg","material-message-flash-outline":"material/message-flash-outline.svg","material-message-flash":"material/message-flash.svg","material-message-image-outline":"material/message-image-outline.svg","material-message-image":"material/message-image.svg","material-message-lock-outline":"material/message-lock-outline.svg","material-message-lock":"material/message-lock.svg","material-message-minus-outline":"material/message-minus-outline.svg","material-message-minus":"material/message-minus.svg","material-message-off-outline":"material/message-off-outline.svg","material-message-off":"material/message-off.svg","material-message-outline":"material/message-outline.svg","material-message-plus-outline":"material/message-plus-outline.svg","material-message-plus":"material/message-plus.svg","material-message-processing-outline":"material/message-processing-outline.svg","material-message-processing":"material/message-processing.svg","material-message-question-outline":"material/message-question-outline.svg","material-message-question":"material/message-question.svg","material-message-reply-outline":"material/message-reply-outline.svg","material-message-reply-text-outline":"material/message-reply-text-outline.svg","material-message-reply-text":"material/message-reply-text.svg","material-message-reply":"material/message-reply.svg","material-message-settings-outline":"material/message-settings-outline.svg","material-message-settings":"material/message-settings.svg","material-message-star-outline":"material/message-star-outline.svg","material-message-star":"material/message-star.svg","material-message-text-clock-outline":"material/message-text-clock-outline.svg","material-message-text-clock":"material/message-text-clock.svg","material-message-text-fast-outline":"material/message-text-fast-outline.svg","material-message-text-fast":"material/message-text-fast.svg","material-message-text-lock-outline":"material/message-text-lock-outline.svg","material-message-text-lock":"material/message-text-lock.svg","material-message-text-outline":"material/message-text-outline.svg","material-message-text":"material/message-text.svg","material-message-video":"material/message-video.svg","material-message":"material/message.svg","material-meteor":"material/meteor.svg","material-meter-electric-outline":"material/meter-electric-outline.svg","material-meter-electric":"material/meter-electric.svg","material-meter-gas-outline":"material/meter-gas-outline.svg","material-meter-gas":"material/meter-gas.svg","material-metronome-tick":"material/metronome-tick.svg","material-metronome":"material/metronome.svg","material-micro-sd":"material/micro-sd.svg","material-microphone-message-off":"material/microphone-message-off.svg","material-microphone-message":"material/microphone-message.svg","material-microphone-minus":"material/microphone-minus.svg","material-microphone-off":"material/microphone-off.svg","material-microphone-outline":"material/microphone-outline.svg","material-microphone-plus":"material/microphone-plus.svg","material-microphone-question-outline":"material/microphone-question-outline.svg","material-microphone-question":"material/microphone-question.svg","material-microphone-settings":"material/microphone-settings.svg","material-microphone-variant-off":"material/microphone-variant-off.svg","material-microphone-variant":"material/microphone-variant.svg","material-microphone":"material/microphone.svg","material-microscope":"material/microscope.svg","material-microsoft-access":"material/microsoft-access.svg","material-microsoft-azure-devops":"material/microsoft-azure-devops.svg","material-microsoft-azure":"material/microsoft-azure.svg","material-microsoft-bing":"material/microsoft-bing.svg","material-microsoft-dynamics-365":"material/microsoft-dynamics-365.svg","material-microsoft-edge":"material/microsoft-edge.svg","material-microsoft-excel":"material/microsoft-excel.svg","material-microsoft-internet-explorer":"material/microsoft-internet-explorer.svg","material-microsoft-office":"material/microsoft-office.svg","material-microsoft-onedrive":"material/microsoft-onedrive.svg","material-microsoft-onenote":"material/microsoft-onenote.svg","material-microsoft-outlook":"material/microsoft-outlook.svg","material-microsoft-powerpoint":"material/microsoft-powerpoint.svg","material-microsoft-sharepoint":"material/microsoft-sharepoint.svg","material-microsoft-teams":"material/microsoft-teams.svg","material-microsoft-visual-studio-code":"material/microsoft-visual-studio-code.svg","material-microsoft-visual-studio":"material/microsoft-visual-studio.svg","material-microsoft-windows-classic":"material/microsoft-windows-classic.svg","material-microsoft-windows":"material/microsoft-windows.svg","material-microsoft-word":"material/microsoft-word.svg","material-microsoft-xbox-controller-battery-alert":"material/microsoft-xbox-controller-battery-alert.svg","material-microsoft-xbox-controller-battery-charging":"material/microsoft-xbox-controller-battery-charging.svg","material-microsoft-xbox-controller-battery-empty":"material/microsoft-xbox-controller-battery-empty.svg","material-microsoft-xbox-controller-battery-full":"material/microsoft-xbox-controller-battery-full.svg","material-microsoft-xbox-controller-battery-low":"material/microsoft-xbox-controller-battery-low.svg","material-microsoft-xbox-controller-battery-medium":"material/microsoft-xbox-controller-battery-medium.svg","material-microsoft-xbox-controller-battery-unknown":"material/microsoft-xbox-controller-battery-unknown.svg","material-microsoft-xbox-controller-menu":"material/microsoft-xbox-controller-menu.svg","material-microsoft-xbox-controller-off":"material/microsoft-xbox-controller-off.svg","material-microsoft-xbox-controller-view":"material/microsoft-xbox-controller-view.svg","material-microsoft-xbox-controller":"material/microsoft-xbox-controller.svg","material-microsoft-xbox":"material/microsoft-xbox.svg","material-microsoft":"material/microsoft.svg","material-microwave-off":"material/microwave-off.svg","material-microwave":"material/microwave.svg","material-middleware-outline":"material/middleware-outline.svg","material-middleware":"material/middleware.svg","material-midi-port":"material/midi-port.svg","material-midi":"material/midi.svg","material-mine":"material/mine.svg","material-minecraft":"material/minecraft.svg","material-mini-sd":"material/mini-sd.svg","material-minidisc":"material/minidisc.svg","material-minus-box-multiple-outline":"material/minus-box-multiple-outline.svg","material-minus-box-multiple":"material/minus-box-multiple.svg","material-minus-box-outline":"material/minus-box-outline.svg","material-minus-box":"material/minus-box.svg","material-minus-circle-multiple-outline":"material/minus-circle-multiple-outline.svg","material-minus-circle-multiple":"material/minus-circle-multiple.svg","material-minus-circle-off-outline":"material/minus-circle-off-outline.svg","material-minus-circle-off":"material/minus-circle-off.svg","material-minus-circle-outline":"material/minus-circle-outline.svg","material-minus-circle":"material/minus-circle.svg","material-minus-network-outline":"material/minus-network-outline.svg","material-minus-network":"material/minus-network.svg","material-minus-thick":"material/minus-thick.svg","material-minus":"material/minus.svg","material-mirror-rectangle":"material/mirror-rectangle.svg","material-mirror-variant":"material/mirror-variant.svg","material-mirror":"material/mirror.svg","material-mixed-martial-arts":"material/mixed-martial-arts.svg","material-mixed-reality":"material/mixed-reality.svg","material-molecule-co":"material/molecule-co.svg","material-molecule-co2":"material/molecule-co2.svg","material-molecule":"material/molecule.svg","material-monitor-account":"material/monitor-account.svg","material-monitor-arrow-down-variant":"material/monitor-arrow-down-variant.svg","material-monitor-arrow-down":"material/monitor-arrow-down.svg","material-monitor-cellphone-star":"material/monitor-cellphone-star.svg","material-monitor-cellphone":"material/monitor-cellphone.svg","material-monitor-dashboard":"material/monitor-dashboard.svg","material-monitor-edit":"material/monitor-edit.svg","material-monitor-eye":"material/monitor-eye.svg","material-monitor-lock":"material/monitor-lock.svg","material-monitor-multiple":"material/monitor-multiple.svg","material-monitor-off":"material/monitor-off.svg","material-monitor-screenshot":"material/monitor-screenshot.svg","material-monitor-share":"material/monitor-share.svg","material-monitor-shimmer":"material/monitor-shimmer.svg","material-monitor-small":"material/monitor-small.svg","material-monitor-speaker-off":"material/monitor-speaker-off.svg","material-monitor-speaker":"material/monitor-speaker.svg","material-monitor-star":"material/monitor-star.svg","material-monitor-vertical":"material/monitor-vertical.svg","material-monitor":"material/monitor.svg","material-moon-first-quarter":"material/moon-first-quarter.svg","material-moon-full":"material/moon-full.svg","material-moon-last-quarter":"material/moon-last-quarter.svg","material-moon-new":"material/moon-new.svg","material-moon-waning-crescent":"material/moon-waning-crescent.svg","material-moon-waning-gibbous":"material/moon-waning-gibbous.svg","material-moon-waxing-crescent":"material/moon-waxing-crescent.svg","material-moon-waxing-gibbous":"material/moon-waxing-gibbous.svg","material-moped-electric-outline":"material/moped-electric-outline.svg","material-moped-electric":"material/moped-electric.svg","material-moped-outline":"material/moped-outline.svg","material-moped":"material/moped.svg","material-more":"material/more.svg","material-mortar-pestle-plus":"material/mortar-pestle-plus.svg","material-mortar-pestle":"material/mortar-pestle.svg","material-mosque-outline":"material/mosque-outline.svg","material-mosque":"material/mosque.svg","material-mother-heart":"material/mother-heart.svg","material-mother-nurse":"material/mother-nurse.svg","material-motion-outline":"material/motion-outline.svg","material-motion-pause-outline":"material/motion-pause-outline.svg","material-motion-pause":"material/motion-pause.svg","material-motion-play-outline":"material/motion-play-outline.svg","material-motion-play":"material/motion-play.svg","material-motion-sensor-off":"material/motion-sensor-off.svg","material-motion-sensor":"material/motion-sensor.svg","material-motion":"material/motion.svg","material-motorbike-electric":"material/motorbike-electric.svg","material-motorbike-off":"material/motorbike-off.svg","material-motorbike":"material/motorbike.svg","material-mouse-bluetooth":"material/mouse-bluetooth.svg","material-mouse-left-click-outline":"material/mouse-left-click-outline.svg","material-mouse-left-click":"material/mouse-left-click.svg","material-mouse-move-down":"material/mouse-move-down.svg","material-mouse-move-up":"material/mouse-move-up.svg","material-mouse-move-vertical":"material/mouse-move-vertical.svg","material-mouse-off":"material/mouse-off.svg","material-mouse-outline":"material/mouse-outline.svg","material-mouse-right-click-outline":"material/mouse-right-click-outline.svg","material-mouse-right-click":"material/mouse-right-click.svg","material-mouse-scroll-wheel":"material/mouse-scroll-wheel.svg","material-mouse-variant-off":"material/mouse-variant-off.svg","material-mouse-variant":"material/mouse-variant.svg","material-mouse":"material/mouse.svg","material-move-resize-variant":"material/move-resize-variant.svg","material-move-resize":"material/move-resize.svg","material-movie-check-outline":"material/movie-check-outline.svg","material-movie-check":"material/movie-check.svg","material-movie-cog-outline":"material/movie-cog-outline.svg","material-movie-cog":"material/movie-cog.svg","material-movie-edit-outline":"material/movie-edit-outline.svg","material-movie-edit":"material/movie-edit.svg","material-movie-filter-outline":"material/movie-filter-outline.svg","material-movie-filter":"material/movie-filter.svg","material-movie-minus-outline":"material/movie-minus-outline.svg","material-movie-minus":"material/movie-minus.svg","material-movie-off-outline":"material/movie-off-outline.svg","material-movie-off":"material/movie-off.svg","material-movie-open-check-outline":"material/movie-open-check-outline.svg","material-movie-open-check":"material/movie-open-check.svg","material-movie-open-cog-outline":"material/movie-open-cog-outline.svg","material-movie-open-cog":"material/movie-open-cog.svg","material-movie-open-edit-outline":"material/movie-open-edit-outline.svg","material-movie-open-edit":"material/movie-open-edit.svg","material-movie-open-minus-outline":"material/movie-open-minus-outline.svg","material-movie-open-minus":"material/movie-open-minus.svg","material-movie-open-off-outline":"material/movie-open-off-outline.svg","material-movie-open-off":"material/movie-open-off.svg","material-movie-open-outline":"material/movie-open-outline.svg","material-movie-open-play-outline":"material/movie-open-play-outline.svg","material-movie-open-play":"material/movie-open-play.svg","material-movie-open-plus-outline":"material/movie-open-plus-outline.svg","material-movie-open-plus":"material/movie-open-plus.svg","material-movie-open-remove-outline":"material/movie-open-remove-outline.svg","material-movie-open-remove":"material/movie-open-remove.svg","material-movie-open-settings-outline":"material/movie-open-settings-outline.svg","material-movie-open-settings":"material/movie-open-settings.svg","material-movie-open-star-outline":"material/movie-open-star-outline.svg","material-movie-open-star":"material/movie-open-star.svg","material-movie-open":"material/movie-open.svg","material-movie-outline":"material/movie-outline.svg","material-movie-play-outline":"material/movie-play-outline.svg","material-movie-play":"material/movie-play.svg","material-movie-plus-outline":"material/movie-plus-outline.svg","material-movie-plus":"material/movie-plus.svg","material-movie-remove-outline":"material/movie-remove-outline.svg","material-movie-remove":"material/movie-remove.svg","material-movie-roll":"material/movie-roll.svg","material-movie-search-outline":"material/movie-search-outline.svg","material-movie-search":"material/movie-search.svg","material-movie-settings-outline":"material/movie-settings-outline.svg","material-movie-settings":"material/movie-settings.svg","material-movie-star-outline":"material/movie-star-outline.svg","material-movie-star":"material/movie-star.svg","material-movie":"material/movie.svg","material-mower-bag-on":"material/mower-bag-on.svg","material-mower-bag":"material/mower-bag.svg","material-mower-on":"material/mower-on.svg","material-mower":"material/mower.svg","material-muffin":"material/muffin.svg","material-multicast":"material/multicast.svg","material-multimedia":"material/multimedia.svg","material-multiplication-box":"material/multiplication-box.svg","material-multiplication":"material/multiplication.svg","material-mushroom-off-outline":"material/mushroom-off-outline.svg","material-mushroom-off":"material/mushroom-off.svg","material-mushroom-outline":"material/mushroom-outline.svg","material-mushroom":"material/mushroom.svg","material-music-accidental-double-flat":"material/music-accidental-double-flat.svg","material-music-accidental-double-sharp":"material/music-accidental-double-sharp.svg","material-music-accidental-flat":"material/music-accidental-flat.svg","material-music-accidental-natural":"material/music-accidental-natural.svg","material-music-accidental-sharp":"material/music-accidental-sharp.svg","material-music-box-multiple-outline":"material/music-box-multiple-outline.svg","material-music-box-multiple":"material/music-box-multiple.svg","material-music-box-outline":"material/music-box-outline.svg","material-music-box":"material/music-box.svg","material-music-circle-outline":"material/music-circle-outline.svg","material-music-circle":"material/music-circle.svg","material-music-clef-alto":"material/music-clef-alto.svg","material-music-clef-bass":"material/music-clef-bass.svg","material-music-clef-treble":"material/music-clef-treble.svg","material-music-note-bluetooth-off":"material/music-note-bluetooth-off.svg","material-music-note-bluetooth":"material/music-note-bluetooth.svg","material-music-note-eighth-dotted":"material/music-note-eighth-dotted.svg","material-music-note-eighth":"material/music-note-eighth.svg","material-music-note-half-dotted":"material/music-note-half-dotted.svg","material-music-note-half":"material/music-note-half.svg","material-music-note-minus":"material/music-note-minus.svg","material-music-note-off-outline":"material/music-note-off-outline.svg","material-music-note-off":"material/music-note-off.svg","material-music-note-outline":"material/music-note-outline.svg","material-music-note-plus":"material/music-note-plus.svg","material-music-note-quarter-dotted":"material/music-note-quarter-dotted.svg","material-music-note-quarter":"material/music-note-quarter.svg","material-music-note-sixteenth-dotted":"material/music-note-sixteenth-dotted.svg","material-music-note-sixteenth":"material/music-note-sixteenth.svg","material-music-note-whole-dotted":"material/music-note-whole-dotted.svg","material-music-note-whole":"material/music-note-whole.svg","material-music-note":"material/music-note.svg","material-music-off":"material/music-off.svg","material-music-rest-eighth":"material/music-rest-eighth.svg","material-music-rest-half":"material/music-rest-half.svg","material-music-rest-quarter":"material/music-rest-quarter.svg","material-music-rest-sixteenth":"material/music-rest-sixteenth.svg","material-music-rest-whole":"material/music-rest-whole.svg","material-music":"material/music.svg","material-mustache":"material/mustache.svg","material-nail":"material/nail.svg","material-nas":"material/nas.svg","material-nativescript":"material/nativescript.svg","material-nature-outline":"material/nature-outline.svg","material-nature-people-outline":"material/nature-people-outline.svg","material-nature-people":"material/nature-people.svg","material-nature":"material/nature.svg","material-navigation-outline":"material/navigation-outline.svg","material-navigation-variant-outline":"material/navigation-variant-outline.svg","material-navigation-variant":"material/navigation-variant.svg","material-navigation":"material/navigation.svg","material-near-me":"material/near-me.svg","material-necklace":"material/necklace.svg","material-needle-off":"material/needle-off.svg","material-needle":"material/needle.svg","material-netflix":"material/netflix.svg","material-network-off-outline":"material/network-off-outline.svg","material-network-off":"material/network-off.svg","material-network-outline":"material/network-outline.svg","material-network-pos":"material/network-pos.svg","material-network-strength-1-alert":"material/network-strength-1-alert.svg","material-network-strength-1":"material/network-strength-1.svg","material-network-strength-2-alert":"material/network-strength-2-alert.svg","material-network-strength-2":"material/network-strength-2.svg","material-network-strength-3-alert":"material/network-strength-3-alert.svg","material-network-strength-3":"material/network-strength-3.svg","material-network-strength-4-alert":"material/network-strength-4-alert.svg","material-network-strength-4-cog":"material/network-strength-4-cog.svg","material-network-strength-4":"material/network-strength-4.svg","material-network-strength-off-outline":"material/network-strength-off-outline.svg","material-network-strength-off":"material/network-strength-off.svg","material-network-strength-outline":"material/network-strength-outline.svg","material-network":"material/network.svg","material-new-box":"material/new-box.svg","material-newspaper-check":"material/newspaper-check.svg","material-newspaper-minus":"material/newspaper-minus.svg","material-newspaper-plus":"material/newspaper-plus.svg","material-newspaper-remove":"material/newspaper-remove.svg","material-newspaper-variant-multiple-outline":"material/newspaper-variant-multiple-outline.svg","material-newspaper-variant-multiple":"material/newspaper-variant-multiple.svg","material-newspaper-variant-outline":"material/newspaper-variant-outline.svg","material-newspaper-variant":"material/newspaper-variant.svg","material-newspaper":"material/newspaper.svg","material-nfc-search-variant":"material/nfc-search-variant.svg","material-nfc-tap":"material/nfc-tap.svg","material-nfc-variant-off":"material/nfc-variant-off.svg","material-nfc-variant":"material/nfc-variant.svg","material-nfc":"material/nfc.svg","material-ninja":"material/ninja.svg","material-nintendo-game-boy":"material/nintendo-game-boy.svg","material-nintendo-switch":"material/nintendo-switch.svg","material-nintendo-wii":"material/nintendo-wii.svg","material-nintendo-wiiu":"material/nintendo-wiiu.svg","material-nix":"material/nix.svg","material-nodejs":"material/nodejs.svg","material-noodles":"material/noodles.svg","material-not-equal-variant":"material/not-equal-variant.svg","material-not-equal":"material/not-equal.svg","material-note-alert-outline":"material/note-alert-outline.svg","material-note-alert":"material/note-alert.svg","material-note-check-outline":"material/note-check-outline.svg","material-note-check":"material/note-check.svg","material-note-edit-outline":"material/note-edit-outline.svg","material-note-edit":"material/note-edit.svg","material-note-minus-outline":"material/note-minus-outline.svg","material-note-minus":"material/note-minus.svg","material-note-multiple-outline":"material/note-multiple-outline.svg","material-note-multiple":"material/note-multiple.svg","material-note-off-outline":"material/note-off-outline.svg","material-note-off":"material/note-off.svg","material-note-outline":"material/note-outline.svg","material-note-plus-outline":"material/note-plus-outline.svg","material-note-plus":"material/note-plus.svg","material-note-remove-outline":"material/note-remove-outline.svg","material-note-remove":"material/note-remove.svg","material-note-search-outline":"material/note-search-outline.svg","material-note-search":"material/note-search.svg","material-note-text-outline":"material/note-text-outline.svg","material-note-text":"material/note-text.svg","material-note":"material/note.svg","material-notebook-check-outline":"material/notebook-check-outline.svg","material-notebook-check":"material/notebook-check.svg","material-notebook-edit-outline":"material/notebook-edit-outline.svg","material-notebook-edit":"material/notebook-edit.svg","material-notebook-heart-outline":"material/notebook-heart-outline.svg","material-notebook-heart":"material/notebook-heart.svg","material-notebook-minus-outline":"material/notebook-minus-outline.svg","material-notebook-minus":"material/notebook-minus.svg","material-notebook-multiple":"material/notebook-multiple.svg","material-notebook-outline":"material/notebook-outline.svg","material-notebook-plus-outline":"material/notebook-plus-outline.svg","material-notebook-plus":"material/notebook-plus.svg","material-notebook-remove-outline":"material/notebook-remove-outline.svg","material-notebook-remove":"material/notebook-remove.svg","material-notebook":"material/notebook.svg","material-notification-clear-all":"material/notification-clear-all.svg","material-npm":"material/npm.svg","material-nuke":"material/nuke.svg","material-null":"material/null.svg","material-numeric-0-box-multiple-outline":"material/numeric-0-box-multiple-outline.svg","material-numeric-0-box-multiple":"material/numeric-0-box-multiple.svg","material-numeric-0-box-outline":"material/numeric-0-box-outline.svg","material-numeric-0-box":"material/numeric-0-box.svg","material-numeric-0-circle-outline":"material/numeric-0-circle-outline.svg","material-numeric-0-circle":"material/numeric-0-circle.svg","material-numeric-0":"material/numeric-0.svg","material-numeric-1-box-multiple-outline":"material/numeric-1-box-multiple-outline.svg","material-numeric-1-box-multiple":"material/numeric-1-box-multiple.svg","material-numeric-1-box-outline":"material/numeric-1-box-outline.svg","material-numeric-1-box":"material/numeric-1-box.svg","material-numeric-1-circle-outline":"material/numeric-1-circle-outline.svg","material-numeric-1-circle":"material/numeric-1-circle.svg","material-numeric-1":"material/numeric-1.svg","material-numeric-10-box-multiple-outline":"material/numeric-10-box-multiple-outline.svg","material-numeric-10-box-multiple":"material/numeric-10-box-multiple.svg","material-numeric-10-box-outline":"material/numeric-10-box-outline.svg","material-numeric-10-box":"material/numeric-10-box.svg","material-numeric-10-circle-outline":"material/numeric-10-circle-outline.svg","material-numeric-10-circle":"material/numeric-10-circle.svg","material-numeric-10":"material/numeric-10.svg","material-numeric-2-box-multiple-outline":"material/numeric-2-box-multiple-outline.svg","material-numeric-2-box-multiple":"material/numeric-2-box-multiple.svg","material-numeric-2-box-outline":"material/numeric-2-box-outline.svg","material-numeric-2-box":"material/numeric-2-box.svg","material-numeric-2-circle-outline":"material/numeric-2-circle-outline.svg","material-numeric-2-circle":"material/numeric-2-circle.svg","material-numeric-2":"material/numeric-2.svg","material-numeric-3-box-multiple-outline":"material/numeric-3-box-multiple-outline.svg","material-numeric-3-box-multiple":"material/numeric-3-box-multiple.svg","material-numeric-3-box-outline":"material/numeric-3-box-outline.svg","material-numeric-3-box":"material/numeric-3-box.svg","material-numeric-3-circle-outline":"material/numeric-3-circle-outline.svg","material-numeric-3-circle":"material/numeric-3-circle.svg","material-numeric-3":"material/numeric-3.svg","material-numeric-4-box-multiple-outline":"material/numeric-4-box-multiple-outline.svg","material-numeric-4-box-multiple":"material/numeric-4-box-multiple.svg","material-numeric-4-box-outline":"material/numeric-4-box-outline.svg","material-numeric-4-box":"material/numeric-4-box.svg","material-numeric-4-circle-outline":"material/numeric-4-circle-outline.svg","material-numeric-4-circle":"material/numeric-4-circle.svg","material-numeric-4":"material/numeric-4.svg","material-numeric-5-box-multiple-outline":"material/numeric-5-box-multiple-outline.svg","material-numeric-5-box-multiple":"material/numeric-5-box-multiple.svg","material-numeric-5-box-outline":"material/numeric-5-box-outline.svg","material-numeric-5-box":"material/numeric-5-box.svg","material-numeric-5-circle-outline":"material/numeric-5-circle-outline.svg","material-numeric-5-circle":"material/numeric-5-circle.svg","material-numeric-5":"material/numeric-5.svg","material-numeric-6-box-multiple-outline":"material/numeric-6-box-multiple-outline.svg","material-numeric-6-box-multiple":"material/numeric-6-box-multiple.svg","material-numeric-6-box-outline":"material/numeric-6-box-outline.svg","material-numeric-6-box":"material/numeric-6-box.svg","material-numeric-6-circle-outline":"material/numeric-6-circle-outline.svg","material-numeric-6-circle":"material/numeric-6-circle.svg","material-numeric-6":"material/numeric-6.svg","material-numeric-7-box-multiple-outline":"material/numeric-7-box-multiple-outline.svg","material-numeric-7-box-multiple":"material/numeric-7-box-multiple.svg","material-numeric-7-box-outline":"material/numeric-7-box-outline.svg","material-numeric-7-box":"material/numeric-7-box.svg","material-numeric-7-circle-outline":"material/numeric-7-circle-outline.svg","material-numeric-7-circle":"material/numeric-7-circle.svg","material-numeric-7":"material/numeric-7.svg","material-numeric-8-box-multiple-outline":"material/numeric-8-box-multiple-outline.svg","material-numeric-8-box-multiple":"material/numeric-8-box-multiple.svg","material-numeric-8-box-outline":"material/numeric-8-box-outline.svg","material-numeric-8-box":"material/numeric-8-box.svg","material-numeric-8-circle-outline":"material/numeric-8-circle-outline.svg","material-numeric-8-circle":"material/numeric-8-circle.svg","material-numeric-8":"material/numeric-8.svg","material-numeric-9-box-multiple-outline":"material/numeric-9-box-multiple-outline.svg","material-numeric-9-box-multiple":"material/numeric-9-box-multiple.svg","material-numeric-9-box-outline":"material/numeric-9-box-outline.svg","material-numeric-9-box":"material/numeric-9-box.svg","material-numeric-9-circle-outline":"material/numeric-9-circle-outline.svg","material-numeric-9-circle":"material/numeric-9-circle.svg","material-numeric-9-plus-box-multiple-outline":"material/numeric-9-plus-box-multiple-outline.svg","material-numeric-9-plus-box-multiple":"material/numeric-9-plus-box-multiple.svg","material-numeric-9-plus-box-outline":"material/numeric-9-plus-box-outline.svg","material-numeric-9-plus-box":"material/numeric-9-plus-box.svg","material-numeric-9-plus-circle-outline":"material/numeric-9-plus-circle-outline.svg","material-numeric-9-plus-circle":"material/numeric-9-plus-circle.svg","material-numeric-9-plus":"material/numeric-9-plus.svg","material-numeric-9":"material/numeric-9.svg","material-numeric-negative-1":"material/numeric-negative-1.svg","material-numeric-off":"material/numeric-off.svg","material-numeric-positive-1":"material/numeric-positive-1.svg","material-numeric":"material/numeric.svg","material-nut":"material/nut.svg","material-nutrition":"material/nutrition.svg","material-nuxt":"material/nuxt.svg","material-oar":"material/oar.svg","material-ocarina":"material/ocarina.svg","material-oci":"material/oci.svg","material-ocr":"material/ocr.svg","material-octagon-outline":"material/octagon-outline.svg","material-octagon":"material/octagon.svg","material-octagram-edit-outline":"material/octagram-edit-outline.svg","material-octagram-edit":"material/octagram-edit.svg","material-octagram-minus-outline":"material/octagram-minus-outline.svg","material-octagram-minus":"material/octagram-minus.svg","material-octagram-outline":"material/octagram-outline.svg","material-octagram-plus-outline":"material/octagram-plus-outline.svg","material-octagram-plus":"material/octagram-plus.svg","material-octagram":"material/octagram.svg","material-octahedron-off":"material/octahedron-off.svg","material-octahedron":"material/octahedron.svg","material-odnoklassniki":"material/odnoklassniki.svg","material-offer":"material/offer.svg","material-office-building-cog-outline":"material/office-building-cog-outline.svg","material-office-building-cog":"material/office-building-cog.svg","material-office-building-marker-outline":"material/office-building-marker-outline.svg","material-office-building-marker":"material/office-building-marker.svg","material-office-building-minus-outline":"material/office-building-minus-outline.svg","material-office-building-minus":"material/office-building-minus.svg","material-office-building-outline":"material/office-building-outline.svg","material-office-building-plus-outline":"material/office-building-plus-outline.svg","material-office-building-plus":"material/office-building-plus.svg","material-office-building-remove-outline":"material/office-building-remove-outline.svg","material-office-building-remove":"material/office-building-remove.svg","material-office-building":"material/office-building.svg","material-oil-lamp":"material/oil-lamp.svg","material-oil-level":"material/oil-level.svg","material-oil-temperature":"material/oil-temperature.svg","material-oil":"material/oil.svg","material-om":"material/om.svg","material-omega":"material/omega.svg","material-one-up":"material/one-up.svg","material-onepassword":"material/onepassword.svg","material-opacity":"material/opacity.svg","material-open-in-app":"material/open-in-app.svg","material-open-in-new":"material/open-in-new.svg","material-open-source-initiative":"material/open-source-initiative.svg","material-openid":"material/openid.svg","material-opera":"material/opera.svg","material-orbit-variant":"material/orbit-variant.svg","material-orbit":"material/orbit.svg","material-order-alphabetical-ascending":"material/order-alphabetical-ascending.svg","material-order-alphabetical-descending":"material/order-alphabetical-descending.svg","material-order-bool-ascending-variant":"material/order-bool-ascending-variant.svg","material-order-bool-ascending":"material/order-bool-ascending.svg","material-order-bool-descending-variant":"material/order-bool-descending-variant.svg","material-order-bool-descending":"material/order-bool-descending.svg","material-order-numeric-ascending":"material/order-numeric-ascending.svg","material-order-numeric-descending":"material/order-numeric-descending.svg","material-origin":"material/origin.svg","material-ornament-variant":"material/ornament-variant.svg","material-ornament":"material/ornament.svg","material-outdoor-lamp":"material/outdoor-lamp.svg","material-overscan":"material/overscan.svg","material-owl":"material/owl.svg","material-pac-man":"material/pac-man.svg","material-package-check":"material/package-check.svg","material-package-down":"material/package-down.svg","material-package-up":"material/package-up.svg","material-package-variant-closed-check":"material/package-variant-closed-check.svg","material-package-variant-closed-minus":"material/package-variant-closed-minus.svg","material-package-variant-closed-plus":"material/package-variant-closed-plus.svg","material-package-variant-closed-remove":"material/package-variant-closed-remove.svg","material-package-variant-closed":"material/package-variant-closed.svg","material-package-variant-minus":"material/package-variant-minus.svg","material-package-variant-plus":"material/package-variant-plus.svg","material-package-variant-remove":"material/package-variant-remove.svg","material-package-variant":"material/package-variant.svg","material-package":"material/package.svg","material-page-first":"material/page-first.svg","material-page-last":"material/page-last.svg","material-page-layout-body":"material/page-layout-body.svg","material-page-layout-footer":"material/page-layout-footer.svg","material-page-layout-header-footer":"material/page-layout-header-footer.svg","material-page-layout-header":"material/page-layout-header.svg","material-page-layout-sidebar-left":"material/page-layout-sidebar-left.svg","material-page-layout-sidebar-right":"material/page-layout-sidebar-right.svg","material-page-next-outline":"material/page-next-outline.svg","material-page-next":"material/page-next.svg","material-page-previous-outline":"material/page-previous-outline.svg","material-page-previous":"material/page-previous.svg","material-pail-minus-outline":"material/pail-minus-outline.svg","material-pail-minus":"material/pail-minus.svg","material-pail-off-outline":"material/pail-off-outline.svg","material-pail-off":"material/pail-off.svg","material-pail-outline":"material/pail-outline.svg","material-pail-plus-outline":"material/pail-plus-outline.svg","material-pail-plus":"material/pail-plus.svg","material-pail-remove-outline":"material/pail-remove-outline.svg","material-pail-remove":"material/pail-remove.svg","material-pail":"material/pail.svg","material-palette-advanced":"material/palette-advanced.svg","material-palette-outline":"material/palette-outline.svg","material-palette-swatch-outline":"material/palette-swatch-outline.svg","material-palette-swatch-variant":"material/palette-swatch-variant.svg","material-palette-swatch":"material/palette-swatch.svg","material-palette":"material/palette.svg","material-palm-tree":"material/palm-tree.svg","material-pan-bottom-left":"material/pan-bottom-left.svg","material-pan-bottom-right":"material/pan-bottom-right.svg","material-pan-down":"material/pan-down.svg","material-pan-horizontal":"material/pan-horizontal.svg","material-pan-left":"material/pan-left.svg","material-pan-right":"material/pan-right.svg","material-pan-top-left":"material/pan-top-left.svg","material-pan-top-right":"material/pan-top-right.svg","material-pan-up":"material/pan-up.svg","material-pan-vertical":"material/pan-vertical.svg","material-pan":"material/pan.svg","material-panda":"material/panda.svg","material-pandora":"material/pandora.svg","material-panorama-fisheye":"material/panorama-fisheye.svg","material-panorama-horizontal-outline":"material/panorama-horizontal-outline.svg","material-panorama-horizontal":"material/panorama-horizontal.svg","material-panorama-outline":"material/panorama-outline.svg","material-panorama-sphere-outline":"material/panorama-sphere-outline.svg","material-panorama-sphere":"material/panorama-sphere.svg","material-panorama-variant-outline":"material/panorama-variant-outline.svg","material-panorama-variant":"material/panorama-variant.svg","material-panorama-vertical-outline":"material/panorama-vertical-outline.svg","material-panorama-vertical":"material/panorama-vertical.svg","material-panorama-wide-angle-outline":"material/panorama-wide-angle-outline.svg","material-panorama-wide-angle":"material/panorama-wide-angle.svg","material-panorama":"material/panorama.svg","material-paper-cut-vertical":"material/paper-cut-vertical.svg","material-paper-roll-outline":"material/paper-roll-outline.svg","material-paper-roll":"material/paper-roll.svg","material-paperclip-check":"material/paperclip-check.svg","material-paperclip-lock":"material/paperclip-lock.svg","material-paperclip-minus":"material/paperclip-minus.svg","material-paperclip-off":"material/paperclip-off.svg","material-paperclip-plus":"material/paperclip-plus.svg","material-paperclip-remove":"material/paperclip-remove.svg","material-paperclip":"material/paperclip.svg","material-parachute-outline":"material/parachute-outline.svg","material-parachute":"material/parachute.svg","material-paragliding":"material/paragliding.svg","material-parking":"material/parking.svg","material-party-popper":"material/party-popper.svg","material-passport-alert":"material/passport-alert.svg","material-passport-biometric":"material/passport-biometric.svg","material-passport-cancel":"material/passport-cancel.svg","material-passport-check":"material/passport-check.svg","material-passport-minus":"material/passport-minus.svg","material-passport-plus":"material/passport-plus.svg","material-passport-remove":"material/passport-remove.svg","material-passport":"material/passport.svg","material-pasta":"material/pasta.svg","material-patio-heater":"material/patio-heater.svg","material-patreon":"material/patreon.svg","material-pause-box-outline":"material/pause-box-outline.svg","material-pause-box":"material/pause-box.svg","material-pause-circle-outline":"material/pause-circle-outline.svg","material-pause-circle":"material/pause-circle.svg","material-pause-octagon-outline":"material/pause-octagon-outline.svg","material-pause-octagon":"material/pause-octagon.svg","material-pause":"material/pause.svg","material-paw-off-outline":"material/paw-off-outline.svg","material-paw-off":"material/paw-off.svg","material-paw-outline":"material/paw-outline.svg","material-paw":"material/paw.svg","material-peace":"material/peace.svg","material-peanut-off-outline":"material/peanut-off-outline.svg","material-peanut-off":"material/peanut-off.svg","material-peanut-outline":"material/peanut-outline.svg","material-peanut":"material/peanut.svg","material-pen-lock":"material/pen-lock.svg","material-pen-minus":"material/pen-minus.svg","material-pen-off":"material/pen-off.svg","material-pen-plus":"material/pen-plus.svg","material-pen-remove":"material/pen-remove.svg","material-pen":"material/pen.svg","material-pencil-box-multiple-outline":"material/pencil-box-multiple-outline.svg","material-pencil-box-multiple":"material/pencil-box-multiple.svg","material-pencil-box-outline":"material/pencil-box-outline.svg","material-pencil-box":"material/pencil-box.svg","material-pencil-circle-outline":"material/pencil-circle-outline.svg","material-pencil-circle":"material/pencil-circle.svg","material-pencil-lock-outline":"material/pencil-lock-outline.svg","material-pencil-lock":"material/pencil-lock.svg","material-pencil-minus-outline":"material/pencil-minus-outline.svg","material-pencil-minus":"material/pencil-minus.svg","material-pencil-off-outline":"material/pencil-off-outline.svg","material-pencil-off":"material/pencil-off.svg","material-pencil-outline":"material/pencil-outline.svg","material-pencil-plus-outline":"material/pencil-plus-outline.svg","material-pencil-plus":"material/pencil-plus.svg","material-pencil-remove-outline":"material/pencil-remove-outline.svg","material-pencil-remove":"material/pencil-remove.svg","material-pencil-ruler-outline":"material/pencil-ruler-outline.svg","material-pencil-ruler":"material/pencil-ruler.svg","material-pencil":"material/pencil.svg","material-penguin":"material/penguin.svg","material-pentagon-outline":"material/pentagon-outline.svg","material-pentagon":"material/pentagon.svg","material-pentagram":"material/pentagram.svg","material-percent-box-outline":"material/percent-box-outline.svg","material-percent-box":"material/percent-box.svg","material-percent-circle-outline":"material/percent-circle-outline.svg","material-percent-circle":"material/percent-circle.svg","material-percent-outline":"material/percent-outline.svg","material-percent":"material/percent.svg","material-periodic-table":"material/periodic-table.svg","material-perspective-less":"material/perspective-less.svg","material-perspective-more":"material/perspective-more.svg","material-ph":"material/ph.svg","material-phone-alert-outline":"material/phone-alert-outline.svg","material-phone-alert":"material/phone-alert.svg","material-phone-bluetooth-outline":"material/phone-bluetooth-outline.svg","material-phone-bluetooth":"material/phone-bluetooth.svg","material-phone-cancel-outline":"material/phone-cancel-outline.svg","material-phone-cancel":"material/phone-cancel.svg","material-phone-check-outline":"material/phone-check-outline.svg","material-phone-check":"material/phone-check.svg","material-phone-classic-off":"material/phone-classic-off.svg","material-phone-classic":"material/phone-classic.svg","material-phone-clock":"material/phone-clock.svg","material-phone-dial-outline":"material/phone-dial-outline.svg","material-phone-dial":"material/phone-dial.svg","material-phone-forward-outline":"material/phone-forward-outline.svg","material-phone-forward":"material/phone-forward.svg","material-phone-hangup-outline":"material/phone-hangup-outline.svg","material-phone-hangup":"material/phone-hangup.svg","material-phone-in-talk-outline":"material/phone-in-talk-outline.svg","material-phone-in-talk":"material/phone-in-talk.svg","material-phone-incoming-outgoing-outline":"material/phone-incoming-outgoing-outline.svg","material-phone-incoming-outgoing":"material/phone-incoming-outgoing.svg","material-phone-incoming-outline":"material/phone-incoming-outline.svg","material-phone-incoming":"material/phone-incoming.svg","material-phone-lock-outline":"material/phone-lock-outline.svg","material-phone-lock":"material/phone-lock.svg","material-phone-log-outline":"material/phone-log-outline.svg","material-phone-log":"material/phone-log.svg","material-phone-message-outline":"material/phone-message-outline.svg","material-phone-message":"material/phone-message.svg","material-phone-minus-outline":"material/phone-minus-outline.svg","material-phone-minus":"material/phone-minus.svg","material-phone-missed-outline":"material/phone-missed-outline.svg","material-phone-missed":"material/phone-missed.svg","material-phone-off-outline":"material/phone-off-outline.svg","material-phone-off":"material/phone-off.svg","material-phone-outgoing-outline":"material/phone-outgoing-outline.svg","material-phone-outgoing":"material/phone-outgoing.svg","material-phone-outline":"material/phone-outline.svg","material-phone-paused-outline":"material/phone-paused-outline.svg","material-phone-paused":"material/phone-paused.svg","material-phone-plus-outline":"material/phone-plus-outline.svg","material-phone-plus":"material/phone-plus.svg","material-phone-refresh-outline":"material/phone-refresh-outline.svg","material-phone-refresh":"material/phone-refresh.svg","material-phone-remove-outline":"material/phone-remove-outline.svg","material-phone-remove":"material/phone-remove.svg","material-phone-return-outline":"material/phone-return-outline.svg","material-phone-return":"material/phone-return.svg","material-phone-ring-outline":"material/phone-ring-outline.svg","material-phone-ring":"material/phone-ring.svg","material-phone-rotate-landscape":"material/phone-rotate-landscape.svg","material-phone-rotate-portrait":"material/phone-rotate-portrait.svg","material-phone-settings-outline":"material/phone-settings-outline.svg","material-phone-settings":"material/phone-settings.svg","material-phone-sync-outline":"material/phone-sync-outline.svg","material-phone-sync":"material/phone-sync.svg","material-phone-voip":"material/phone-voip.svg","material-phone":"material/phone.svg","material-pi-box":"material/pi-box.svg","material-pi-hole":"material/pi-hole.svg","material-pi":"material/pi.svg","material-piano-off":"material/piano-off.svg","material-piano":"material/piano.svg","material-pickaxe":"material/pickaxe.svg","material-picture-in-picture-bottom-right-outline":"material/picture-in-picture-bottom-right-outline.svg","material-picture-in-picture-bottom-right":"material/picture-in-picture-bottom-right.svg","material-picture-in-picture-top-right-outline":"material/picture-in-picture-top-right-outline.svg","material-picture-in-picture-top-right":"material/picture-in-picture-top-right.svg","material-pier-crane":"material/pier-crane.svg","material-pier":"material/pier.svg","material-pig-variant-outline":"material/pig-variant-outline.svg","material-pig-variant":"material/pig-variant.svg","material-pig":"material/pig.svg","material-piggy-bank-outline":"material/piggy-bank-outline.svg","material-piggy-bank":"material/piggy-bank.svg","material-pill-multiple":"material/pill-multiple.svg","material-pill-off":"material/pill-off.svg","material-pill":"material/pill.svg","material-pillar":"material/pillar.svg","material-pin-off-outline":"material/pin-off-outline.svg","material-pin-off":"material/pin-off.svg","material-pin-outline":"material/pin-outline.svg","material-pin":"material/pin.svg","material-pine-tree-box":"material/pine-tree-box.svg","material-pine-tree-fire":"material/pine-tree-fire.svg","material-pine-tree-variant-outline":"material/pine-tree-variant-outline.svg","material-pine-tree-variant":"material/pine-tree-variant.svg","material-pine-tree":"material/pine-tree.svg","material-pinterest":"material/pinterest.svg","material-pinwheel-outline":"material/pinwheel-outline.svg","material-pinwheel":"material/pinwheel.svg","material-pipe-disconnected":"material/pipe-disconnected.svg","material-pipe-leak":"material/pipe-leak.svg","material-pipe-valve":"material/pipe-valve.svg","material-pipe-wrench":"material/pipe-wrench.svg","material-pipe":"material/pipe.svg","material-pirate":"material/pirate.svg","material-pistol":"material/pistol.svg","material-piston":"material/piston.svg","material-pitchfork":"material/pitchfork.svg","material-pizza":"material/pizza.svg","material-plane-car":"material/plane-car.svg","material-plane-train":"material/plane-train.svg","material-play-box-edit-outline":"material/play-box-edit-outline.svg","material-play-box-lock-open-outline":"material/play-box-lock-open-outline.svg","material-play-box-lock-open":"material/play-box-lock-open.svg","material-play-box-lock-outline":"material/play-box-lock-outline.svg","material-play-box-lock":"material/play-box-lock.svg","material-play-box-multiple-outline":"material/play-box-multiple-outline.svg","material-play-box-multiple":"material/play-box-multiple.svg","material-play-box-outline":"material/play-box-outline.svg","material-play-box":"material/play-box.svg","material-play-circle-outline":"material/play-circle-outline.svg","material-play-circle":"material/play-circle.svg","material-play-network-outline":"material/play-network-outline.svg","material-play-network":"material/play-network.svg","material-play-outline":"material/play-outline.svg","material-play-pause":"material/play-pause.svg","material-play-protected-content":"material/play-protected-content.svg","material-play-speed":"material/play-speed.svg","material-play":"material/play.svg","material-playlist-check":"material/playlist-check.svg","material-playlist-edit":"material/playlist-edit.svg","material-playlist-minus":"material/playlist-minus.svg","material-playlist-music-outline":"material/playlist-music-outline.svg","material-playlist-music":"material/playlist-music.svg","material-playlist-play":"material/playlist-play.svg","material-playlist-plus":"material/playlist-plus.svg","material-playlist-remove":"material/playlist-remove.svg","material-playlist-star":"material/playlist-star.svg","material-plex":"material/plex.svg","material-pliers":"material/pliers.svg","material-plus-box-multiple-outline":"material/plus-box-multiple-outline.svg","material-plus-box-multiple":"material/plus-box-multiple.svg","material-plus-box-outline":"material/plus-box-outline.svg","material-plus-box":"material/plus-box.svg","material-plus-circle-multiple-outline":"material/plus-circle-multiple-outline.svg","material-plus-circle-multiple":"material/plus-circle-multiple.svg","material-plus-circle-outline":"material/plus-circle-outline.svg","material-plus-circle":"material/plus-circle.svg","material-plus-lock-open":"material/plus-lock-open.svg","material-plus-lock":"material/plus-lock.svg","material-plus-minus-box":"material/plus-minus-box.svg","material-plus-minus-variant":"material/plus-minus-variant.svg","material-plus-minus":"material/plus-minus.svg","material-plus-network-outline":"material/plus-network-outline.svg","material-plus-network":"material/plus-network.svg","material-plus-outline":"material/plus-outline.svg","material-plus-thick":"material/plus-thick.svg","material-plus":"material/plus.svg","material-pocket":"material/pocket.svg","material-podcast":"material/podcast.svg","material-podium-bronze":"material/podium-bronze.svg","material-podium-gold":"material/podium-gold.svg","material-podium-silver":"material/podium-silver.svg","material-podium":"material/podium.svg","material-point-of-sale":"material/point-of-sale.svg","material-pokeball":"material/pokeball.svg","material-pokemon-go":"material/pokemon-go.svg","material-poker-chip":"material/poker-chip.svg","material-polaroid":"material/polaroid.svg","material-police-badge-outline":"material/police-badge-outline.svg","material-police-badge":"material/police-badge.svg","material-police-station":"material/police-station.svg","material-poll":"material/poll.svg","material-polo":"material/polo.svg","material-polymer":"material/polymer.svg","material-pool-thermometer":"material/pool-thermometer.svg","material-pool":"material/pool.svg","material-popcorn":"material/popcorn.svg","material-post-lamp":"material/post-lamp.svg","material-post-outline":"material/post-outline.svg","material-post":"material/post.svg","material-postage-stamp":"material/postage-stamp.svg","material-pot-mix-outline":"material/pot-mix-outline.svg","material-pot-mix":"material/pot-mix.svg","material-pot-outline":"material/pot-outline.svg","material-pot-steam-outline":"material/pot-steam-outline.svg","material-pot-steam":"material/pot-steam.svg","material-pot":"material/pot.svg","material-pound-box-outline":"material/pound-box-outline.svg","material-pound-box":"material/pound-box.svg","material-pound":"material/pound.svg","material-power-cycle":"material/power-cycle.svg","material-power-off":"material/power-off.svg","material-power-on":"material/power-on.svg","material-power-plug-battery-outline":"material/power-plug-battery-outline.svg","material-power-plug-battery":"material/power-plug-battery.svg","material-power-plug-off-outline":"material/power-plug-off-outline.svg","material-power-plug-off":"material/power-plug-off.svg","material-power-plug-outline":"material/power-plug-outline.svg","material-power-plug":"material/power-plug.svg","material-power-settings":"material/power-settings.svg","material-power-sleep":"material/power-sleep.svg","material-power-socket-au":"material/power-socket-au.svg","material-power-socket-ch":"material/power-socket-ch.svg","material-power-socket-de":"material/power-socket-de.svg","material-power-socket-eu":"material/power-socket-eu.svg","material-power-socket-fr":"material/power-socket-fr.svg","material-power-socket-it":"material/power-socket-it.svg","material-power-socket-jp":"material/power-socket-jp.svg","material-power-socket-uk":"material/power-socket-uk.svg","material-power-socket-us":"material/power-socket-us.svg","material-power-socket":"material/power-socket.svg","material-power-standby":"material/power-standby.svg","material-power":"material/power.svg","material-powershell":"material/powershell.svg","material-prescription":"material/prescription.svg","material-presentation-play":"material/presentation-play.svg","material-presentation":"material/presentation.svg","material-pretzel":"material/pretzel.svg","material-printer-3d-nozzle-alert-outline":"material/printer-3d-nozzle-alert-outline.svg","material-printer-3d-nozzle-alert":"material/printer-3d-nozzle-alert.svg","material-printer-3d-nozzle-heat-outline":"material/printer-3d-nozzle-heat-outline.svg","material-printer-3d-nozzle-heat":"material/printer-3d-nozzle-heat.svg","material-printer-3d-nozzle-off-outline":"material/printer-3d-nozzle-off-outline.svg","material-printer-3d-nozzle-off":"material/printer-3d-nozzle-off.svg","material-printer-3d-nozzle-outline":"material/printer-3d-nozzle-outline.svg","material-printer-3d-nozzle":"material/printer-3d-nozzle.svg","material-printer-3d-off":"material/printer-3d-off.svg","material-printer-3d":"material/printer-3d.svg","material-printer-alert":"material/printer-alert.svg","material-printer-check":"material/printer-check.svg","material-printer-eye":"material/printer-eye.svg","material-printer-off-outline":"material/printer-off-outline.svg","material-printer-off":"material/printer-off.svg","material-printer-outline":"material/printer-outline.svg","material-printer-pos-alert-outline":"material/printer-pos-alert-outline.svg","material-printer-pos-alert":"material/printer-pos-alert.svg","material-printer-pos-cancel-outline":"material/printer-pos-cancel-outline.svg","material-printer-pos-cancel":"material/printer-pos-cancel.svg","material-printer-pos-check-outline":"material/printer-pos-check-outline.svg","material-printer-pos-check":"material/printer-pos-check.svg","material-printer-pos-cog-outline":"material/printer-pos-cog-outline.svg","material-printer-pos-cog":"material/printer-pos-cog.svg","material-printer-pos-edit-outline":"material/printer-pos-edit-outline.svg","material-printer-pos-edit":"material/printer-pos-edit.svg","material-printer-pos-minus-outline":"material/printer-pos-minus-outline.svg","material-printer-pos-minus":"material/printer-pos-minus.svg","material-printer-pos-network-outline":"material/printer-pos-network-outline.svg","material-printer-pos-network":"material/printer-pos-network.svg","material-printer-pos-off-outline":"material/printer-pos-off-outline.svg","material-printer-pos-off":"material/printer-pos-off.svg","material-printer-pos-outline":"material/printer-pos-outline.svg","material-printer-pos-pause-outline":"material/printer-pos-pause-outline.svg","material-printer-pos-pause":"material/printer-pos-pause.svg","material-printer-pos-play-outline":"material/printer-pos-play-outline.svg","material-printer-pos-play":"material/printer-pos-play.svg","material-printer-pos-plus-outline":"material/printer-pos-plus-outline.svg","material-printer-pos-plus":"material/printer-pos-plus.svg","material-printer-pos-refresh-outline":"material/printer-pos-refresh-outline.svg","material-printer-pos-refresh":"material/printer-pos-refresh.svg","material-printer-pos-remove-outline":"material/printer-pos-remove-outline.svg","material-printer-pos-remove":"material/printer-pos-remove.svg","material-printer-pos-star-outline":"material/printer-pos-star-outline.svg","material-printer-pos-star":"material/printer-pos-star.svg","material-printer-pos-stop-outline":"material/printer-pos-stop-outline.svg","material-printer-pos-stop":"material/printer-pos-stop.svg","material-printer-pos-sync-outline":"material/printer-pos-sync-outline.svg","material-printer-pos-sync":"material/printer-pos-sync.svg","material-printer-pos-wrench-outline":"material/printer-pos-wrench-outline.svg","material-printer-pos-wrench":"material/printer-pos-wrench.svg","material-printer-pos":"material/printer-pos.svg","material-printer-search":"material/printer-search.svg","material-printer-settings":"material/printer-settings.svg","material-printer-wireless":"material/printer-wireless.svg","material-printer":"material/printer.svg","material-priority-high":"material/priority-high.svg","material-priority-low":"material/priority-low.svg","material-professional-hexagon":"material/professional-hexagon.svg","material-progress-alert":"material/progress-alert.svg","material-progress-check":"material/progress-check.svg","material-progress-clock":"material/progress-clock.svg","material-progress-close":"material/progress-close.svg","material-progress-download":"material/progress-download.svg","material-progress-helper":"material/progress-helper.svg","material-progress-pencil":"material/progress-pencil.svg","material-progress-question":"material/progress-question.svg","material-progress-star-four-points":"material/progress-star-four-points.svg","material-progress-star":"material/progress-star.svg","material-progress-tag":"material/progress-tag.svg","material-progress-upload":"material/progress-upload.svg","material-progress-wrench":"material/progress-wrench.svg","material-projector-off":"material/projector-off.svg","material-projector-screen-off-outline":"material/projector-screen-off-outline.svg","material-projector-screen-off":"material/projector-screen-off.svg","material-projector-screen-outline":"material/projector-screen-outline.svg","material-projector-screen-variant-off-outline":"material/projector-screen-variant-off-outline.svg","material-projector-screen-variant-off":"material/projector-screen-variant-off.svg","material-projector-screen-variant-outline":"material/projector-screen-variant-outline.svg","material-projector-screen-variant":"material/projector-screen-variant.svg","material-projector-screen":"material/projector-screen.svg","material-projector":"material/projector.svg","material-propane-tank-outline":"material/propane-tank-outline.svg","material-propane-tank":"material/propane-tank.svg","material-protocol":"material/protocol.svg","material-publish-off":"material/publish-off.svg","material-publish":"material/publish.svg","material-pulse":"material/pulse.svg","material-pump-off":"material/pump-off.svg","material-pump":"material/pump.svg","material-pumpkin":"material/pumpkin.svg","material-purse-outline":"material/purse-outline.svg","material-purse":"material/purse.svg","material-puzzle-check-outline":"material/puzzle-check-outline.svg","material-puzzle-check":"material/puzzle-check.svg","material-puzzle-edit-outline":"material/puzzle-edit-outline.svg","material-puzzle-edit":"material/puzzle-edit.svg","material-puzzle-heart-outline":"material/puzzle-heart-outline.svg","material-puzzle-heart":"material/puzzle-heart.svg","material-puzzle-minus-outline":"material/puzzle-minus-outline.svg","material-puzzle-minus":"material/puzzle-minus.svg","material-puzzle-outline":"material/puzzle-outline.svg","material-puzzle-plus-outline":"material/puzzle-plus-outline.svg","material-puzzle-plus":"material/puzzle-plus.svg","material-puzzle-remove-outline":"material/puzzle-remove-outline.svg","material-puzzle-remove":"material/puzzle-remove.svg","material-puzzle-star-outline":"material/puzzle-star-outline.svg","material-puzzle-star":"material/puzzle-star.svg","material-puzzle":"material/puzzle.svg","material-pyramid-off":"material/pyramid-off.svg","material-pyramid":"material/pyramid.svg","material-qi":"material/qi.svg","material-qqchat":"material/qqchat.svg","material-qrcode-edit":"material/qrcode-edit.svg","material-qrcode-minus":"material/qrcode-minus.svg","material-qrcode-plus":"material/qrcode-plus.svg","material-qrcode-remove":"material/qrcode-remove.svg","material-qrcode-scan":"material/qrcode-scan.svg","material-qrcode":"material/qrcode.svg","material-quadcopter":"material/quadcopter.svg","material-quality-high":"material/quality-high.svg","material-quality-low":"material/quality-low.svg","material-quality-medium":"material/quality-medium.svg","material-queue-first-in-last-out":"material/queue-first-in-last-out.svg","material-quora":"material/quora.svg","material-rabbit-variant-outline":"material/rabbit-variant-outline.svg","material-rabbit-variant":"material/rabbit-variant.svg","material-rabbit":"material/rabbit.svg","material-racing-helmet":"material/racing-helmet.svg","material-racquetball":"material/racquetball.svg","material-radar":"material/radar.svg","material-radiator-disabled":"material/radiator-disabled.svg","material-radiator-off":"material/radiator-off.svg","material-radiator":"material/radiator.svg","material-radio-am":"material/radio-am.svg","material-radio-fm":"material/radio-fm.svg","material-radio-handheld":"material/radio-handheld.svg","material-radio-off":"material/radio-off.svg","material-radio-tower":"material/radio-tower.svg","material-radio":"material/radio.svg","material-radioactive-circle-outline":"material/radioactive-circle-outline.svg","material-radioactive-circle":"material/radioactive-circle.svg","material-radioactive-off":"material/radioactive-off.svg","material-radioactive":"material/radioactive.svg","material-radiobox-blank":"material/radiobox-blank.svg","material-radiobox-indeterminate-variant":"material/radiobox-indeterminate-variant.svg","material-radiobox-marked":"material/radiobox-marked.svg","material-radiology-box-outline":"material/radiology-box-outline.svg","material-radiology-box":"material/radiology-box.svg","material-radius-outline":"material/radius-outline.svg","material-radius":"material/radius.svg","material-railroad-light":"material/railroad-light.svg","material-rake":"material/rake.svg","material-raspberry-pi":"material/raspberry-pi.svg","material-raw-off":"material/raw-off.svg","material-raw":"material/raw.svg","material-ray-end-arrow":"material/ray-end-arrow.svg","material-ray-end":"material/ray-end.svg","material-ray-start-arrow":"material/ray-start-arrow.svg","material-ray-start-end":"material/ray-start-end.svg","material-ray-start-vertex-end":"material/ray-start-vertex-end.svg","material-ray-start":"material/ray-start.svg","material-ray-vertex":"material/ray-vertex.svg","material-razor-double-edge":"material/razor-double-edge.svg","material-razor-single-edge":"material/razor-single-edge.svg","material-react":"material/react.svg","material-read":"material/read.svg","material-receipt-clock-outline":"material/receipt-clock-outline.svg","material-receipt-clock":"material/receipt-clock.svg","material-receipt-outline":"material/receipt-outline.svg","material-receipt-send-outline":"material/receipt-send-outline.svg","material-receipt-send":"material/receipt-send.svg","material-receipt-text-arrow-left-outline":"material/receipt-text-arrow-left-outline.svg","material-receipt-text-arrow-left":"material/receipt-text-arrow-left.svg","material-receipt-text-arrow-right-outline":"material/receipt-text-arrow-right-outline.svg","material-receipt-text-arrow-right":"material/receipt-text-arrow-right.svg","material-receipt-text-check-outline":"material/receipt-text-check-outline.svg","material-receipt-text-check":"material/receipt-text-check.svg","material-receipt-text-clock-outline":"material/receipt-text-clock-outline.svg","material-receipt-text-clock":"material/receipt-text-clock.svg","material-receipt-text-edit-outline":"material/receipt-text-edit-outline.svg","material-receipt-text-edit":"material/receipt-text-edit.svg","material-receipt-text-minus-outline":"material/receipt-text-minus-outline.svg","material-receipt-text-minus":"material/receipt-text-minus.svg","material-receipt-text-outline":"material/receipt-text-outline.svg","material-receipt-text-plus-outline":"material/receipt-text-plus-outline.svg","material-receipt-text-plus":"material/receipt-text-plus.svg","material-receipt-text-remove-outline":"material/receipt-text-remove-outline.svg","material-receipt-text-remove":"material/receipt-text-remove.svg","material-receipt-text-send-outline":"material/receipt-text-send-outline.svg","material-receipt-text-send":"material/receipt-text-send.svg","material-receipt-text":"material/receipt-text.svg","material-receipt":"material/receipt.svg","material-record-circle-outline":"material/record-circle-outline.svg","material-record-circle":"material/record-circle.svg","material-record-player":"material/record-player.svg","material-record-rec":"material/record-rec.svg","material-record":"material/record.svg","material-rectangle-outline":"material/rectangle-outline.svg","material-rectangle":"material/rectangle.svg","material-recycle-variant":"material/recycle-variant.svg","material-recycle":"material/recycle.svg","material-reddit":"material/reddit.svg","material-redhat":"material/redhat.svg","material-redo-variant":"material/redo-variant.svg","material-redo":"material/redo.svg","material-reflect-horizontal":"material/reflect-horizontal.svg","material-reflect-vertical":"material/reflect-vertical.svg","material-refresh-auto":"material/refresh-auto.svg","material-refresh-circle":"material/refresh-circle.svg","material-refresh":"material/refresh.svg","material-regex":"material/regex.svg","material-registered-trademark":"material/registered-trademark.svg","material-reiterate":"material/reiterate.svg","material-relation-many-to-many":"material/relation-many-to-many.svg","material-relation-many-to-one-or-many":"material/relation-many-to-one-or-many.svg","material-relation-many-to-one":"material/relation-many-to-one.svg","material-relation-many-to-only-one":"material/relation-many-to-only-one.svg","material-relation-many-to-zero-or-many":"material/relation-many-to-zero-or-many.svg","material-relation-many-to-zero-or-one":"material/relation-many-to-zero-or-one.svg","material-relation-one-or-many-to-many":"material/relation-one-or-many-to-many.svg","material-relation-one-or-many-to-one-or-many":"material/relation-one-or-many-to-one-or-many.svg","material-relation-one-or-many-to-one":"material/relation-one-or-many-to-one.svg","material-relation-one-or-many-to-only-one":"material/relation-one-or-many-to-only-one.svg","material-relation-one-or-many-to-zero-or-many":"material/relation-one-or-many-to-zero-or-many.svg","material-relation-one-or-many-to-zero-or-one":"material/relation-one-or-many-to-zero-or-one.svg","material-relation-one-to-many":"material/relation-one-to-many.svg","material-relation-one-to-one-or-many":"material/relation-one-to-one-or-many.svg","material-relation-one-to-one":"material/relation-one-to-one.svg","material-relation-one-to-only-one":"material/relation-one-to-only-one.svg","material-relation-one-to-zero-or-many":"material/relation-one-to-zero-or-many.svg","material-relation-one-to-zero-or-one":"material/relation-one-to-zero-or-one.svg","material-relation-only-one-to-many":"material/relation-only-one-to-many.svg","material-relation-only-one-to-one-or-many":"material/relation-only-one-to-one-or-many.svg","material-relation-only-one-to-one":"material/relation-only-one-to-one.svg","material-relation-only-one-to-only-one":"material/relation-only-one-to-only-one.svg","material-relation-only-one-to-zero-or-many":"material/relation-only-one-to-zero-or-many.svg","material-relation-only-one-to-zero-or-one":"material/relation-only-one-to-zero-or-one.svg","material-relation-zero-or-many-to-many":"material/relation-zero-or-many-to-many.svg","material-relation-zero-or-many-to-one-or-many":"material/relation-zero-or-many-to-one-or-many.svg","material-relation-zero-or-many-to-one":"material/relation-zero-or-many-to-one.svg","material-relation-zero-or-many-to-only-one":"material/relation-zero-or-many-to-only-one.svg","material-relation-zero-or-many-to-zero-or-many":"material/relation-zero-or-many-to-zero-or-many.svg","material-relation-zero-or-many-to-zero-or-one":"material/relation-zero-or-many-to-zero-or-one.svg","material-relation-zero-or-one-to-many":"material/relation-zero-or-one-to-many.svg","material-relation-zero-or-one-to-one-or-many":"material/relation-zero-or-one-to-one-or-many.svg","material-relation-zero-or-one-to-one":"material/relation-zero-or-one-to-one.svg","material-relation-zero-or-one-to-only-one":"material/relation-zero-or-one-to-only-one.svg","material-relation-zero-or-one-to-zero-or-many":"material/relation-zero-or-one-to-zero-or-many.svg","material-relation-zero-or-one-to-zero-or-one":"material/relation-zero-or-one-to-zero-or-one.svg","material-relative-scale":"material/relative-scale.svg","material-reload-alert":"material/reload-alert.svg","material-reload":"material/reload.svg","material-reminder":"material/reminder.svg","material-remote-desktop":"material/remote-desktop.svg","material-remote-off":"material/remote-off.svg","material-remote-tv-off":"material/remote-tv-off.svg","material-remote-tv":"material/remote-tv.svg","material-remote":"material/remote.svg","material-rename-box-outline":"material/rename-box-outline.svg","material-rename-box":"material/rename-box.svg","material-rename-outline":"material/rename-outline.svg","material-rename":"material/rename.svg","material-reorder-horizontal":"material/reorder-horizontal.svg","material-reorder-vertical":"material/reorder-vertical.svg","material-repeat-off":"material/repeat-off.svg","material-repeat-once":"material/repeat-once.svg","material-repeat-variant":"material/repeat-variant.svg","material-repeat":"material/repeat.svg","material-replay":"material/replay.svg","material-reply-all-outline":"material/reply-all-outline.svg","material-reply-all":"material/reply-all.svg","material-reply-circle":"material/reply-circle.svg","material-reply-outline":"material/reply-outline.svg","material-reply":"material/reply.svg","material-reproduction":"material/reproduction.svg","material-resistor-nodes":"material/resistor-nodes.svg","material-resistor":"material/resistor.svg","material-resize-bottom-right":"material/resize-bottom-right.svg","material-resize":"material/resize.svg","material-responsive":"material/responsive.svg","material-restart-alert":"material/restart-alert.svg","material-restart-off":"material/restart-off.svg","material-restart":"material/restart.svg","material-restore-alert":"material/restore-alert.svg","material-restore":"material/restore.svg","material-rewind-10":"material/rewind-10.svg","material-rewind-15":"material/rewind-15.svg","material-rewind-30":"material/rewind-30.svg","material-rewind-45":"material/rewind-45.svg","material-rewind-5":"material/rewind-5.svg","material-rewind-60":"material/rewind-60.svg","material-rewind-outline":"material/rewind-outline.svg","material-rewind":"material/rewind.svg","material-rhombus-medium-outline":"material/rhombus-medium-outline.svg","material-rhombus-medium":"material/rhombus-medium.svg","material-rhombus-outline":"material/rhombus-outline.svg","material-rhombus-split-outline":"material/rhombus-split-outline.svg","material-rhombus-split":"material/rhombus-split.svg","material-rhombus":"material/rhombus.svg","material-ribbon":"material/ribbon.svg","material-rice":"material/rice.svg","material-rickshaw-electric":"material/rickshaw-electric.svg","material-rickshaw":"material/rickshaw.svg","material-ring":"material/ring.svg","material-rivet":"material/rivet.svg","material-road-variant":"material/road-variant.svg","material-road":"material/road.svg","material-robber":"material/robber.svg","material-robot-angry-outline":"material/robot-angry-outline.svg","material-robot-angry":"material/robot-angry.svg","material-robot-confused-outline":"material/robot-confused-outline.svg","material-robot-confused":"material/robot-confused.svg","material-robot-dead-outline":"material/robot-dead-outline.svg","material-robot-dead":"material/robot-dead.svg","material-robot-excited-outline":"material/robot-excited-outline.svg","material-robot-excited":"material/robot-excited.svg","material-robot-happy-outline":"material/robot-happy-outline.svg","material-robot-happy":"material/robot-happy.svg","material-robot-industrial-outline":"material/robot-industrial-outline.svg","material-robot-industrial":"material/robot-industrial.svg","material-robot-love-outline":"material/robot-love-outline.svg","material-robot-love":"material/robot-love.svg","material-robot-mower-outline":"material/robot-mower-outline.svg","material-robot-mower":"material/robot-mower.svg","material-robot-off-outline":"material/robot-off-outline.svg","material-robot-off":"material/robot-off.svg","material-robot-outline":"material/robot-outline.svg","material-robot-vacuum-alert":"material/robot-vacuum-alert.svg","material-robot-vacuum-off":"material/robot-vacuum-off.svg","material-robot-vacuum-variant-alert":"material/robot-vacuum-variant-alert.svg","material-robot-vacuum-variant-off":"material/robot-vacuum-variant-off.svg","material-robot-vacuum-variant":"material/robot-vacuum-variant.svg","material-robot-vacuum":"material/robot-vacuum.svg","material-robot":"material/robot.svg","material-rocket-launch-outline":"material/rocket-launch-outline.svg","material-rocket-launch":"material/rocket-launch.svg","material-rocket-outline":"material/rocket-outline.svg","material-rocket":"material/rocket.svg","material-rodent":"material/rodent.svg","material-roller-shade-closed":"material/roller-shade-closed.svg","material-roller-shade":"material/roller-shade.svg","material-roller-skate-off":"material/roller-skate-off.svg","material-roller-skate":"material/roller-skate.svg","material-rollerblade-off":"material/rollerblade-off.svg","material-rollerblade":"material/rollerblade.svg","material-rollupjs":"material/rollupjs.svg","material-rolodex-outline":"material/rolodex-outline.svg","material-rolodex":"material/rolodex.svg","material-roman-numeral-1":"material/roman-numeral-1.svg","material-roman-numeral-10":"material/roman-numeral-10.svg","material-roman-numeral-2":"material/roman-numeral-2.svg","material-roman-numeral-3":"material/roman-numeral-3.svg","material-roman-numeral-4":"material/roman-numeral-4.svg","material-roman-numeral-5":"material/roman-numeral-5.svg","material-roman-numeral-6":"material/roman-numeral-6.svg","material-roman-numeral-7":"material/roman-numeral-7.svg","material-roman-numeral-8":"material/roman-numeral-8.svg","material-roman-numeral-9":"material/roman-numeral-9.svg","material-room-service-outline":"material/room-service-outline.svg","material-room-service":"material/room-service.svg","material-rotate-360":"material/rotate-360.svg","material-rotate-3d-variant":"material/rotate-3d-variant.svg","material-rotate-3d":"material/rotate-3d.svg","material-rotate-left-variant":"material/rotate-left-variant.svg","material-rotate-left":"material/rotate-left.svg","material-rotate-orbit":"material/rotate-orbit.svg","material-rotate-right-variant":"material/rotate-right-variant.svg","material-rotate-right":"material/rotate-right.svg","material-rounded-corner":"material/rounded-corner.svg","material-router-network-wireless":"material/router-network-wireless.svg","material-router-network":"material/router-network.svg","material-router-wireless-off":"material/router-wireless-off.svg","material-router-wireless-settings":"material/router-wireless-settings.svg","material-router-wireless":"material/router-wireless.svg","material-router":"material/router.svg","material-routes-clock":"material/routes-clock.svg","material-routes":"material/routes.svg","material-rowing":"material/rowing.svg","material-rss-box":"material/rss-box.svg","material-rss-off":"material/rss-off.svg","material-rss":"material/rss.svg","material-rug":"material/rug.svg","material-rugby":"material/rugby.svg","material-ruler-square-compass":"material/ruler-square-compass.svg","material-ruler-square":"material/ruler-square.svg","material-ruler":"material/ruler.svg","material-run-fast":"material/run-fast.svg","material-run":"material/run.svg","material-rv-truck":"material/rv-truck.svg","material-sack-outline":"material/sack-outline.svg","material-sack-percent":"material/sack-percent.svg","material-sack":"material/sack.svg","material-safe-square-outline":"material/safe-square-outline.svg","material-safe-square":"material/safe-square.svg","material-safe":"material/safe.svg","material-safety-goggles":"material/safety-goggles.svg","material-sail-boat-sink":"material/sail-boat-sink.svg","material-sail-boat":"material/sail-boat.svg","material-sale-outline":"material/sale-outline.svg","material-sale":"material/sale.svg","material-salesforce":"material/salesforce.svg","material-sass":"material/sass.svg","material-satellite-uplink":"material/satellite-uplink.svg","material-satellite-variant":"material/satellite-variant.svg","material-satellite":"material/satellite.svg","material-sausage-off":"material/sausage-off.svg","material-sausage":"material/sausage.svg","material-saw-blade":"material/saw-blade.svg","material-sawtooth-wave":"material/sawtooth-wave.svg","material-saxophone":"material/saxophone.svg","material-scale-balance":"material/scale-balance.svg","material-scale-bathroom":"material/scale-bathroom.svg","material-scale-off":"material/scale-off.svg","material-scale-unbalanced":"material/scale-unbalanced.svg","material-scale":"material/scale.svg","material-scan-helper":"material/scan-helper.svg","material-scanner-off":"material/scanner-off.svg","material-scanner":"material/scanner.svg","material-scatter-plot-outline":"material/scatter-plot-outline.svg","material-scatter-plot":"material/scatter-plot.svg","material-scent-off":"material/scent-off.svg","material-scent":"material/scent.svg","material-school-outline":"material/school-outline.svg","material-school":"material/school.svg","material-scissors-cutting":"material/scissors-cutting.svg","material-scooter-electric":"material/scooter-electric.svg","material-scooter":"material/scooter.svg","material-scoreboard-outline":"material/scoreboard-outline.svg","material-scoreboard":"material/scoreboard.svg","material-screen-rotation-lock":"material/screen-rotation-lock.svg","material-screen-rotation":"material/screen-rotation.svg","material-screw-flat-top":"material/screw-flat-top.svg","material-screw-lag":"material/screw-lag.svg","material-screw-machine-flat-top":"material/screw-machine-flat-top.svg","material-screw-machine-round-top":"material/screw-machine-round-top.svg","material-screw-round-top":"material/screw-round-top.svg","material-screwdriver":"material/screwdriver.svg","material-script-outline":"material/script-outline.svg","material-script-text-key-outline":"material/script-text-key-outline.svg","material-script-text-key":"material/script-text-key.svg","material-script-text-outline":"material/script-text-outline.svg","material-script-text-play-outline":"material/script-text-play-outline.svg","material-script-text-play":"material/script-text-play.svg","material-script-text":"material/script-text.svg","material-script":"material/script.svg","material-sd":"material/sd.svg","material-seal-variant":"material/seal-variant.svg","material-seal":"material/seal.svg","material-search-web":"material/search-web.svg","material-seat-flat-angled":"material/seat-flat-angled.svg","material-seat-flat":"material/seat-flat.svg","material-seat-individual-suite":"material/seat-individual-suite.svg","material-seat-legroom-extra":"material/seat-legroom-extra.svg","material-seat-legroom-normal":"material/seat-legroom-normal.svg","material-seat-legroom-reduced":"material/seat-legroom-reduced.svg","material-seat-outline":"material/seat-outline.svg","material-seat-passenger":"material/seat-passenger.svg","material-seat-recline-extra":"material/seat-recline-extra.svg","material-seat-recline-normal":"material/seat-recline-normal.svg","material-seat":"material/seat.svg","material-seatbelt":"material/seatbelt.svg","material-security-network":"material/security-network.svg","material-security":"material/security.svg","material-seed-off-outline":"material/seed-off-outline.svg","material-seed-off":"material/seed-off.svg","material-seed-outline":"material/seed-outline.svg","material-seed-plus-outline":"material/seed-plus-outline.svg","material-seed-plus":"material/seed-plus.svg","material-seed":"material/seed.svg","material-seesaw":"material/seesaw.svg","material-segment":"material/segment.svg","material-select-all":"material/select-all.svg","material-select-arrow-down":"material/select-arrow-down.svg","material-select-arrow-up":"material/select-arrow-up.svg","material-select-color":"material/select-color.svg","material-select-compare":"material/select-compare.svg","material-select-drag":"material/select-drag.svg","material-select-group":"material/select-group.svg","material-select-inverse":"material/select-inverse.svg","material-select-marker":"material/select-marker.svg","material-select-multiple-marker":"material/select-multiple-marker.svg","material-select-multiple":"material/select-multiple.svg","material-select-off":"material/select-off.svg","material-select-place":"material/select-place.svg","material-select-remove":"material/select-remove.svg","material-select-search":"material/select-search.svg","material-select":"material/select.svg","material-selection-drag":"material/selection-drag.svg","material-selection-ellipse-arrow-inside":"material/selection-ellipse-arrow-inside.svg","material-selection-ellipse-remove":"material/selection-ellipse-remove.svg","material-selection-ellipse":"material/selection-ellipse.svg","material-selection-marker":"material/selection-marker.svg","material-selection-multiple-marker":"material/selection-multiple-marker.svg","material-selection-multiple":"material/selection-multiple.svg","material-selection-off":"material/selection-off.svg","material-selection-remove":"material/selection-remove.svg","material-selection-search":"material/selection-search.svg","material-selection":"material/selection.svg","material-semantic-web":"material/semantic-web.svg","material-send-check-outline":"material/send-check-outline.svg","material-send-check":"material/send-check.svg","material-send-circle-outline":"material/send-circle-outline.svg","material-send-circle":"material/send-circle.svg","material-send-clock-outline":"material/send-clock-outline.svg","material-send-clock":"material/send-clock.svg","material-send-lock-outline":"material/send-lock-outline.svg","material-send-lock":"material/send-lock.svg","material-send-outline":"material/send-outline.svg","material-send-variant-clock-outline":"material/send-variant-clock-outline.svg","material-send-variant-clock":"material/send-variant-clock.svg","material-send-variant-outline":"material/send-variant-outline.svg","material-send-variant":"material/send-variant.svg","material-send":"material/send.svg","material-serial-port":"material/serial-port.svg","material-server-minus-outline":"material/server-minus-outline.svg","material-server-minus":"material/server-minus.svg","material-server-network-off":"material/server-network-off.svg","material-server-network-outline":"material/server-network-outline.svg","material-server-network":"material/server-network.svg","material-server-off":"material/server-off.svg","material-server-outline":"material/server-outline.svg","material-server-plus-outline":"material/server-plus-outline.svg","material-server-plus":"material/server-plus.svg","material-server-remove":"material/server-remove.svg","material-server-security":"material/server-security.svg","material-server":"material/server.svg","material-set-all":"material/set-all.svg","material-set-center-right":"material/set-center-right.svg","material-set-center":"material/set-center.svg","material-set-left-center":"material/set-left-center.svg","material-set-left-right":"material/set-left-right.svg","material-set-left":"material/set-left.svg","material-set-merge":"material/set-merge.svg","material-set-none":"material/set-none.svg","material-set-right":"material/set-right.svg","material-set-split":"material/set-split.svg","material-set-square":"material/set-square.svg","material-set-top-box":"material/set-top-box.svg","material-settings-helper":"material/settings-helper.svg","material-shaker-outline":"material/shaker-outline.svg","material-shaker":"material/shaker.svg","material-shape-circle-plus":"material/shape-circle-plus.svg","material-shape-outline":"material/shape-outline.svg","material-shape-oval-plus":"material/shape-oval-plus.svg","material-shape-plus-outline":"material/shape-plus-outline.svg","material-shape-plus":"material/shape-plus.svg","material-shape-polygon-plus":"material/shape-polygon-plus.svg","material-shape-rectangle-plus":"material/shape-rectangle-plus.svg","material-shape-square-plus":"material/shape-square-plus.svg","material-shape-square-rounded-plus":"material/shape-square-rounded-plus.svg","material-shape":"material/shape.svg","material-share-all-outline":"material/share-all-outline.svg","material-share-all":"material/share-all.svg","material-share-circle":"material/share-circle.svg","material-share-off-outline":"material/share-off-outline.svg","material-share-off":"material/share-off.svg","material-share-outline":"material/share-outline.svg","material-share-variant-outline":"material/share-variant-outline.svg","material-share-variant":"material/share-variant.svg","material-share":"material/share.svg","material-shark-fin-outline":"material/shark-fin-outline.svg","material-shark-fin":"material/shark-fin.svg","material-shark-off":"material/shark-off.svg","material-shark":"material/shark.svg","material-sheep":"material/sheep.svg","material-shield-account-outline":"material/shield-account-outline.svg","material-shield-account-variant-outline":"material/shield-account-variant-outline.svg","material-shield-account-variant":"material/shield-account-variant.svg","material-shield-account":"material/shield-account.svg","material-shield-airplane-outline":"material/shield-airplane-outline.svg","material-shield-airplane":"material/shield-airplane.svg","material-shield-alert-outline":"material/shield-alert-outline.svg","material-shield-alert":"material/shield-alert.svg","material-shield-bug-outline":"material/shield-bug-outline.svg","material-shield-bug":"material/shield-bug.svg","material-shield-car":"material/shield-car.svg","material-shield-check-outline":"material/shield-check-outline.svg","material-shield-check":"material/shield-check.svg","material-shield-cross-outline":"material/shield-cross-outline.svg","material-shield-cross":"material/shield-cross.svg","material-shield-crown-outline":"material/shield-crown-outline.svg","material-shield-crown":"material/shield-crown.svg","material-shield-edit-outline":"material/shield-edit-outline.svg","material-shield-edit":"material/shield-edit.svg","material-shield-half-full":"material/shield-half-full.svg","material-shield-half":"material/shield-half.svg","material-shield-home-outline":"material/shield-home-outline.svg","material-shield-home":"material/shield-home.svg","material-shield-key-outline":"material/shield-key-outline.svg","material-shield-key":"material/shield-key.svg","material-shield-link-variant-outline":"material/shield-link-variant-outline.svg","material-shield-link-variant":"material/shield-link-variant.svg","material-shield-lock-open-outline":"material/shield-lock-open-outline.svg","material-shield-lock-open":"material/shield-lock-open.svg","material-shield-lock-outline":"material/shield-lock-outline.svg","material-shield-lock":"material/shield-lock.svg","material-shield-moon-outline":"material/shield-moon-outline.svg","material-shield-moon":"material/shield-moon.svg","material-shield-off-outline":"material/shield-off-outline.svg","material-shield-off":"material/shield-off.svg","material-shield-outline":"material/shield-outline.svg","material-shield-plus-outline":"material/shield-plus-outline.svg","material-shield-plus":"material/shield-plus.svg","material-shield-refresh-outline":"material/shield-refresh-outline.svg","material-shield-refresh":"material/shield-refresh.svg","material-shield-remove-outline":"material/shield-remove-outline.svg","material-shield-remove":"material/shield-remove.svg","material-shield-search":"material/shield-search.svg","material-shield-star-outline":"material/shield-star-outline.svg","material-shield-star":"material/shield-star.svg","material-shield-sun-outline":"material/shield-sun-outline.svg","material-shield-sun":"material/shield-sun.svg","material-shield-sword-outline":"material/shield-sword-outline.svg","material-shield-sword":"material/shield-sword.svg","material-shield-sync-outline":"material/shield-sync-outline.svg","material-shield-sync":"material/shield-sync.svg","material-shield":"material/shield.svg","material-shimmer":"material/shimmer.svg","material-ship-wheel":"material/ship-wheel.svg","material-shipping-pallet":"material/shipping-pallet.svg","material-shoe-ballet":"material/shoe-ballet.svg","material-shoe-cleat":"material/shoe-cleat.svg","material-shoe-formal":"material/shoe-formal.svg","material-shoe-heel":"material/shoe-heel.svg","material-shoe-print":"material/shoe-print.svg","material-shoe-sneaker":"material/shoe-sneaker.svg","material-shopping-music":"material/shopping-music.svg","material-shopping-outline":"material/shopping-outline.svg","material-shopping-search-outline":"material/shopping-search-outline.svg","material-shopping-search":"material/shopping-search.svg","material-shopping":"material/shopping.svg","material-shore":"material/shore.svg","material-shovel-off":"material/shovel-off.svg","material-shovel":"material/shovel.svg","material-shower-head":"material/shower-head.svg","material-shower":"material/shower.svg","material-shredder":"material/shredder.svg","material-shuffle-disabled":"material/shuffle-disabled.svg","material-shuffle-variant":"material/shuffle-variant.svg","material-shuffle":"material/shuffle.svg","material-shuriken":"material/shuriken.svg","material-sickle":"material/sickle.svg","material-sigma-lower":"material/sigma-lower.svg","material-sigma":"material/sigma.svg","material-sign-caution":"material/sign-caution.svg","material-sign-direction-minus":"material/sign-direction-minus.svg","material-sign-direction-plus":"material/sign-direction-plus.svg","material-sign-direction-remove":"material/sign-direction-remove.svg","material-sign-direction":"material/sign-direction.svg","material-sign-language-outline":"material/sign-language-outline.svg","material-sign-language":"material/sign-language.svg","material-sign-pole":"material/sign-pole.svg","material-sign-real-estate":"material/sign-real-estate.svg","material-sign-text":"material/sign-text.svg","material-sign-yield":"material/sign-yield.svg","material-signal-2g":"material/signal-2g.svg","material-signal-3g":"material/signal-3g.svg","material-signal-4g":"material/signal-4g.svg","material-signal-5g":"material/signal-5g.svg","material-signal-cellular-1":"material/signal-cellular-1.svg","material-signal-cellular-2":"material/signal-cellular-2.svg","material-signal-cellular-3":"material/signal-cellular-3.svg","material-signal-cellular-outline":"material/signal-cellular-outline.svg","material-signal-distance-variant":"material/signal-distance-variant.svg","material-signal-hspa-plus":"material/signal-hspa-plus.svg","material-signal-hspa":"material/signal-hspa.svg","material-signal-off":"material/signal-off.svg","material-signal-variant":"material/signal-variant.svg","material-signal":"material/signal.svg","material-signature-freehand":"material/signature-freehand.svg","material-signature-image":"material/signature-image.svg","material-signature-text":"material/signature-text.svg","material-signature":"material/signature.svg","material-silo-outline":"material/silo-outline.svg","material-silo":"material/silo.svg","material-silverware-clean":"material/silverware-clean.svg","material-silverware-fork-knife":"material/silverware-fork-knife.svg","material-silverware-fork":"material/silverware-fork.svg","material-silverware-spoon":"material/silverware-spoon.svg","material-silverware-variant":"material/silverware-variant.svg","material-silverware":"material/silverware.svg","material-sim-alert-outline":"material/sim-alert-outline.svg","material-sim-alert":"material/sim-alert.svg","material-sim-off-outline":"material/sim-off-outline.svg","material-sim-off":"material/sim-off.svg","material-sim-outline":"material/sim-outline.svg","material-sim":"material/sim.svg","material-simple-icons":"material/simple-icons.svg","material-sina-weibo":"material/sina-weibo.svg","material-sine-wave":"material/sine-wave.svg","material-sitemap-outline":"material/sitemap-outline.svg","material-sitemap":"material/sitemap.svg","material-size-l":"material/size-l.svg","material-size-m":"material/size-m.svg","material-size-s":"material/size-s.svg","material-size-xl":"material/size-xl.svg","material-size-xs":"material/size-xs.svg","material-size-xxl":"material/size-xxl.svg","material-size-xxs":"material/size-xxs.svg","material-size-xxxl":"material/size-xxxl.svg","material-skate-off":"material/skate-off.svg","material-skate":"material/skate.svg","material-skateboard":"material/skateboard.svg","material-skateboarding":"material/skateboarding.svg","material-skew-less":"material/skew-less.svg","material-skew-more":"material/skew-more.svg","material-ski-cross-country":"material/ski-cross-country.svg","material-ski-water":"material/ski-water.svg","material-ski":"material/ski.svg","material-skip-backward-outline":"material/skip-backward-outline.svg","material-skip-backward":"material/skip-backward.svg","material-skip-forward-outline":"material/skip-forward-outline.svg","material-skip-forward":"material/skip-forward.svg","material-skip-next-circle-outline":"material/skip-next-circle-outline.svg","material-skip-next-circle":"material/skip-next-circle.svg","material-skip-next-outline":"material/skip-next-outline.svg","material-skip-next":"material/skip-next.svg","material-skip-previous-circle-outline":"material/skip-previous-circle-outline.svg","material-skip-previous-circle":"material/skip-previous-circle.svg","material-skip-previous-outline":"material/skip-previous-outline.svg","material-skip-previous":"material/skip-previous.svg","material-skull-crossbones-outline":"material/skull-crossbones-outline.svg","material-skull-crossbones":"material/skull-crossbones.svg","material-skull-outline":"material/skull-outline.svg","material-skull-scan-outline":"material/skull-scan-outline.svg","material-skull-scan":"material/skull-scan.svg","material-skull":"material/skull.svg","material-skype-business":"material/skype-business.svg","material-skype":"material/skype.svg","material-slack":"material/slack.svg","material-slash-forward-box":"material/slash-forward-box.svg","material-slash-forward":"material/slash-forward.svg","material-sledding":"material/sledding.svg","material-sleep-off":"material/sleep-off.svg","material-sleep":"material/sleep.svg","material-slide":"material/slide.svg","material-slope-downhill":"material/slope-downhill.svg","material-slope-uphill":"material/slope-uphill.svg","material-slot-machine-outline":"material/slot-machine-outline.svg","material-slot-machine":"material/slot-machine.svg","material-smart-card-off-outline":"material/smart-card-off-outline.svg","material-smart-card-off":"material/smart-card-off.svg","material-smart-card-outline":"material/smart-card-outline.svg","material-smart-card-reader-outline":"material/smart-card-reader-outline.svg","material-smart-card-reader":"material/smart-card-reader.svg","material-smart-card":"material/smart-card.svg","material-smog":"material/smog.svg","material-smoke-detector-alert-outline":"material/smoke-detector-alert-outline.svg","material-smoke-detector-alert":"material/smoke-detector-alert.svg","material-smoke-detector-off-outline":"material/smoke-detector-off-outline.svg","material-smoke-detector-off":"material/smoke-detector-off.svg","material-smoke-detector-outline":"material/smoke-detector-outline.svg","material-smoke-detector-variant-alert":"material/smoke-detector-variant-alert.svg","material-smoke-detector-variant-off":"material/smoke-detector-variant-off.svg","material-smoke-detector-variant":"material/smoke-detector-variant.svg","material-smoke-detector":"material/smoke-detector.svg","material-smoke":"material/smoke.svg","material-smoking-off":"material/smoking-off.svg","material-smoking-pipe-off":"material/smoking-pipe-off.svg","material-smoking-pipe":"material/smoking-pipe.svg","material-smoking":"material/smoking.svg","material-snail":"material/snail.svg","material-snake":"material/snake.svg","material-snapchat":"material/snapchat.svg","material-snowboard":"material/snowboard.svg","material-snowflake-alert":"material/snowflake-alert.svg","material-snowflake-check":"material/snowflake-check.svg","material-snowflake-melt":"material/snowflake-melt.svg","material-snowflake-off":"material/snowflake-off.svg","material-snowflake-thermometer":"material/snowflake-thermometer.svg","material-snowflake-variant":"material/snowflake-variant.svg","material-snowflake":"material/snowflake.svg","material-snowman":"material/snowman.svg","material-snowmobile":"material/snowmobile.svg","material-snowshoeing":"material/snowshoeing.svg","material-soccer-field":"material/soccer-field.svg","material-soccer":"material/soccer.svg","material-social-distance-2-meters":"material/social-distance-2-meters.svg","material-social-distance-6-feet":"material/social-distance-6-feet.svg","material-sofa-outline":"material/sofa-outline.svg","material-sofa-single-outline":"material/sofa-single-outline.svg","material-sofa-single":"material/sofa-single.svg","material-sofa":"material/sofa.svg","material-solar-panel-large":"material/solar-panel-large.svg","material-solar-panel":"material/solar-panel.svg","material-solar-power-variant-outline":"material/solar-power-variant-outline.svg","material-solar-power-variant":"material/solar-power-variant.svg","material-solar-power":"material/solar-power.svg","material-soldering-iron":"material/soldering-iron.svg","material-solid":"material/solid.svg","material-sony-playstation":"material/sony-playstation.svg","material-sort-alphabetical-ascending-variant":"material/sort-alphabetical-ascending-variant.svg","material-sort-alphabetical-ascending":"material/sort-alphabetical-ascending.svg","material-sort-alphabetical-descending-variant":"material/sort-alphabetical-descending-variant.svg","material-sort-alphabetical-descending":"material/sort-alphabetical-descending.svg","material-sort-alphabetical-variant":"material/sort-alphabetical-variant.svg","material-sort-ascending":"material/sort-ascending.svg","material-sort-bool-ascending-variant":"material/sort-bool-ascending-variant.svg","material-sort-bool-ascending":"material/sort-bool-ascending.svg","material-sort-bool-descending-variant":"material/sort-bool-descending-variant.svg","material-sort-bool-descending":"material/sort-bool-descending.svg","material-sort-calendar-ascending":"material/sort-calendar-ascending.svg","material-sort-calendar-descending":"material/sort-calendar-descending.svg","material-sort-clock-ascending-outline":"material/sort-clock-ascending-outline.svg","material-sort-clock-ascending":"material/sort-clock-ascending.svg","material-sort-clock-descending-outline":"material/sort-clock-descending-outline.svg","material-sort-clock-descending":"material/sort-clock-descending.svg","material-sort-descending":"material/sort-descending.svg","material-sort-numeric-ascending-variant":"material/sort-numeric-ascending-variant.svg","material-sort-numeric-ascending":"material/sort-numeric-ascending.svg","material-sort-numeric-descending-variant":"material/sort-numeric-descending-variant.svg","material-sort-numeric-descending":"material/sort-numeric-descending.svg","material-sort-numeric-variant":"material/sort-numeric-variant.svg","material-sort-reverse-variant":"material/sort-reverse-variant.svg","material-sort-variant-lock-open":"material/sort-variant-lock-open.svg","material-sort-variant-lock":"material/sort-variant-lock.svg","material-sort-variant-off":"material/sort-variant-off.svg","material-sort-variant-remove":"material/sort-variant-remove.svg","material-sort-variant":"material/sort-variant.svg","material-sort":"material/sort.svg","material-soundbar":"material/soundbar.svg","material-soundcloud":"material/soundcloud.svg","material-source-branch-check":"material/source-branch-check.svg","material-source-branch-minus":"material/source-branch-minus.svg","material-source-branch-plus":"material/source-branch-plus.svg","material-source-branch-refresh":"material/source-branch-refresh.svg","material-source-branch-remove":"material/source-branch-remove.svg","material-source-branch-sync":"material/source-branch-sync.svg","material-source-branch":"material/source-branch.svg","material-source-commit-end-local":"material/source-commit-end-local.svg","material-source-commit-end":"material/source-commit-end.svg","material-source-commit-local":"material/source-commit-local.svg","material-source-commit-next-local":"material/source-commit-next-local.svg","material-source-commit-start-next-local":"material/source-commit-start-next-local.svg","material-source-commit-start":"material/source-commit-start.svg","material-source-commit":"material/source-commit.svg","material-source-fork":"material/source-fork.svg","material-source-merge":"material/source-merge.svg","material-source-pull":"material/source-pull.svg","material-source-repository-multiple":"material/source-repository-multiple.svg","material-source-repository":"material/source-repository.svg","material-soy-sauce-off":"material/soy-sauce-off.svg","material-soy-sauce":"material/soy-sauce.svg","material-spa-outline":"material/spa-outline.svg","material-spa":"material/spa.svg","material-space-invaders":"material/space-invaders.svg","material-space-station":"material/space-station.svg","material-spade":"material/spade.svg","material-speaker-bluetooth":"material/speaker-bluetooth.svg","material-speaker-message":"material/speaker-message.svg","material-speaker-multiple":"material/speaker-multiple.svg","material-speaker-off":"material/speaker-off.svg","material-speaker-pause":"material/speaker-pause.svg","material-speaker-play":"material/speaker-play.svg","material-speaker-stop":"material/speaker-stop.svg","material-speaker-wireless":"material/speaker-wireless.svg","material-speaker":"material/speaker.svg","material-spear":"material/spear.svg","material-speedometer-medium":"material/speedometer-medium.svg","material-speedometer-slow":"material/speedometer-slow.svg","material-speedometer":"material/speedometer.svg","material-spellcheck":"material/spellcheck.svg","material-sphere-off":"material/sphere-off.svg","material-sphere":"material/sphere.svg","material-spider-outline":"material/spider-outline.svg","material-spider-thread":"material/spider-thread.svg","material-spider-web":"material/spider-web.svg","material-spider":"material/spider.svg","material-spirit-level":"material/spirit-level.svg","material-spoon-sugar":"material/spoon-sugar.svg","material-spotify":"material/spotify.svg","material-spotlight-beam":"material/spotlight-beam.svg","material-spotlight":"material/spotlight.svg","material-spray-bottle":"material/spray-bottle.svg","material-spray":"material/spray.svg","material-sprinkler-fire":"material/sprinkler-fire.svg","material-sprinkler-variant":"material/sprinkler-variant.svg","material-sprinkler":"material/sprinkler.svg","material-sprout-outline":"material/sprout-outline.svg","material-sprout":"material/sprout.svg","material-square-circle-outline":"material/square-circle-outline.svg","material-square-circle":"material/square-circle.svg","material-square-edit-outline":"material/square-edit-outline.svg","material-square-medium-outline":"material/square-medium-outline.svg","material-square-medium":"material/square-medium.svg","material-square-off-outline":"material/square-off-outline.svg","material-square-off":"material/square-off.svg","material-square-opacity":"material/square-opacity.svg","material-square-outline":"material/square-outline.svg","material-square-root-box":"material/square-root-box.svg","material-square-root":"material/square-root.svg","material-square-rounded-badge-outline":"material/square-rounded-badge-outline.svg","material-square-rounded-badge":"material/square-rounded-badge.svg","material-square-rounded-outline":"material/square-rounded-outline.svg","material-square-rounded":"material/square-rounded.svg","material-square-small":"material/square-small.svg","material-square-wave":"material/square-wave.svg","material-square":"material/square.svg","material-squeegee":"material/squeegee.svg","material-ssh":"material/ssh.svg","material-stack-exchange":"material/stack-exchange.svg","material-stack-overflow":"material/stack-overflow.svg","material-stackpath":"material/stackpath.svg","material-stadium-outline":"material/stadium-outline.svg","material-stadium-variant":"material/stadium-variant.svg","material-stadium":"material/stadium.svg","material-stairs-box":"material/stairs-box.svg","material-stairs-down":"material/stairs-down.svg","material-stairs-up":"material/stairs-up.svg","material-stairs":"material/stairs.svg","material-stamper":"material/stamper.svg","material-standard-definition":"material/standard-definition.svg","material-star-box-multiple-outline":"material/star-box-multiple-outline.svg","material-star-box-multiple":"material/star-box-multiple.svg","material-star-box-outline":"material/star-box-outline.svg","material-star-box":"material/star-box.svg","material-star-check-outline":"material/star-check-outline.svg","material-star-check":"material/star-check.svg","material-star-circle-outline":"material/star-circle-outline.svg","material-star-circle":"material/star-circle.svg","material-star-cog-outline":"material/star-cog-outline.svg","material-star-cog":"material/star-cog.svg","material-star-crescent":"material/star-crescent.svg","material-star-david":"material/star-david.svg","material-star-face":"material/star-face.svg","material-star-four-points-box-outline":"material/star-four-points-box-outline.svg","material-star-four-points-box":"material/star-four-points-box.svg","material-star-four-points-circle-outline":"material/star-four-points-circle-outline.svg","material-star-four-points-circle":"material/star-four-points-circle.svg","material-star-four-points-outline":"material/star-four-points-outline.svg","material-star-four-points-small":"material/star-four-points-small.svg","material-star-four-points":"material/star-four-points.svg","material-star-half-full":"material/star-half-full.svg","material-star-half":"material/star-half.svg","material-star-minus-outline":"material/star-minus-outline.svg","material-star-minus":"material/star-minus.svg","material-star-off-outline":"material/star-off-outline.svg","material-star-off":"material/star-off.svg","material-star-outline":"material/star-outline.svg","material-star-plus-outline":"material/star-plus-outline.svg","material-star-plus":"material/star-plus.svg","material-star-remove-outline":"material/star-remove-outline.svg","material-star-remove":"material/star-remove.svg","material-star-settings-outline":"material/star-settings-outline.svg","material-star-settings":"material/star-settings.svg","material-star-shooting-outline":"material/star-shooting-outline.svg","material-star-shooting":"material/star-shooting.svg","material-star-three-points-outline":"material/star-three-points-outline.svg","material-star-three-points":"material/star-three-points.svg","material-star":"material/star.svg","material-state-machine":"material/state-machine.svg","material-steam":"material/steam.svg","material-steering-off":"material/steering-off.svg","material-steering":"material/steering.svg","material-step-backward-2":"material/step-backward-2.svg","material-step-backward":"material/step-backward.svg","material-step-forward-2":"material/step-forward-2.svg","material-step-forward":"material/step-forward.svg","material-stethoscope":"material/stethoscope.svg","material-sticker-alert-outline":"material/sticker-alert-outline.svg","material-sticker-alert":"material/sticker-alert.svg","material-sticker-check-outline":"material/sticker-check-outline.svg","material-sticker-check":"material/sticker-check.svg","material-sticker-circle-outline":"material/sticker-circle-outline.svg","material-sticker-emoji":"material/sticker-emoji.svg","material-sticker-minus-outline":"material/sticker-minus-outline.svg","material-sticker-minus":"material/sticker-minus.svg","material-sticker-outline":"material/sticker-outline.svg","material-sticker-plus-outline":"material/sticker-plus-outline.svg","material-sticker-plus":"material/sticker-plus.svg","material-sticker-remove-outline":"material/sticker-remove-outline.svg","material-sticker-remove":"material/sticker-remove.svg","material-sticker-text-outline":"material/sticker-text-outline.svg","material-sticker-text":"material/sticker-text.svg","material-sticker":"material/sticker.svg","material-stocking":"material/stocking.svg","material-stomach":"material/stomach.svg","material-stool-outline":"material/stool-outline.svg","material-stool":"material/stool.svg","material-stop-circle-outline":"material/stop-circle-outline.svg","material-stop-circle":"material/stop-circle.svg","material-stop":"material/stop.svg","material-storage-tank-outline":"material/storage-tank-outline.svg","material-storage-tank":"material/storage-tank.svg","material-store-24-hour":"material/store-24-hour.svg","material-store-alert-outline":"material/store-alert-outline.svg","material-store-alert":"material/store-alert.svg","material-store-check-outline":"material/store-check-outline.svg","material-store-check":"material/store-check.svg","material-store-clock-outline":"material/store-clock-outline.svg","material-store-clock":"material/store-clock.svg","material-store-cog-outline":"material/store-cog-outline.svg","material-store-cog":"material/store-cog.svg","material-store-edit-outline":"material/store-edit-outline.svg","material-store-edit":"material/store-edit.svg","material-store-marker-outline":"material/store-marker-outline.svg","material-store-marker":"material/store-marker.svg","material-store-minus-outline":"material/store-minus-outline.svg","material-store-minus":"material/store-minus.svg","material-store-off-outline":"material/store-off-outline.svg","material-store-off":"material/store-off.svg","material-store-outline":"material/store-outline.svg","material-store-plus-outline":"material/store-plus-outline.svg","material-store-plus":"material/store-plus.svg","material-store-remove-outline":"material/store-remove-outline.svg","material-store-remove":"material/store-remove.svg","material-store-search-outline":"material/store-search-outline.svg","material-store-search":"material/store-search.svg","material-store-settings-outline":"material/store-settings-outline.svg","material-store-settings":"material/store-settings.svg","material-store":"material/store.svg","material-storefront-check-outline":"material/storefront-check-outline.svg","material-storefront-check":"material/storefront-check.svg","material-storefront-edit-outline":"material/storefront-edit-outline.svg","material-storefront-edit":"material/storefront-edit.svg","material-storefront-minus-outline":"material/storefront-minus-outline.svg","material-storefront-minus":"material/storefront-minus.svg","material-storefront-outline":"material/storefront-outline.svg","material-storefront-plus-outline":"material/storefront-plus-outline.svg","material-storefront-plus":"material/storefront-plus.svg","material-storefront-remove-outline":"material/storefront-remove-outline.svg","material-storefront-remove":"material/storefront-remove.svg","material-storefront":"material/storefront.svg","material-stove":"material/stove.svg","material-strategy":"material/strategy.svg","material-stretch-to-page-outline":"material/stretch-to-page-outline.svg","material-stretch-to-page":"material/stretch-to-page.svg","material-string-lights-off":"material/string-lights-off.svg","material-string-lights":"material/string-lights.svg","material-subdirectory-arrow-left":"material/subdirectory-arrow-left.svg","material-subdirectory-arrow-right":"material/subdirectory-arrow-right.svg","material-submarine":"material/submarine.svg","material-subtitles-outline":"material/subtitles-outline.svg","material-subtitles":"material/subtitles.svg","material-subway-alert-variant":"material/subway-alert-variant.svg","material-subway-variant":"material/subway-variant.svg","material-subway":"material/subway.svg","material-summit":"material/summit.svg","material-sun-angle-outline":"material/sun-angle-outline.svg","material-sun-angle":"material/sun-angle.svg","material-sun-clock-outline":"material/sun-clock-outline.svg","material-sun-clock":"material/sun-clock.svg","material-sun-compass":"material/sun-compass.svg","material-sun-snowflake-variant":"material/sun-snowflake-variant.svg","material-sun-snowflake":"material/sun-snowflake.svg","material-sun-thermometer-outline":"material/sun-thermometer-outline.svg","material-sun-thermometer":"material/sun-thermometer.svg","material-sun-wireless-outline":"material/sun-wireless-outline.svg","material-sun-wireless":"material/sun-wireless.svg","material-sunglasses":"material/sunglasses.svg","material-surfing":"material/surfing.svg","material-surround-sound-2-0":"material/surround-sound-2-0.svg","material-surround-sound-2-1":"material/surround-sound-2-1.svg","material-surround-sound-3-1":"material/surround-sound-3-1.svg","material-surround-sound-5-1-2":"material/surround-sound-5-1-2.svg","material-surround-sound-5-1":"material/surround-sound-5-1.svg","material-surround-sound-7-1":"material/surround-sound-7-1.svg","material-surround-sound":"material/surround-sound.svg","material-svg":"material/svg.svg","material-swap-horizontal-bold":"material/swap-horizontal-bold.svg","material-swap-horizontal-circle-outline":"material/swap-horizontal-circle-outline.svg","material-swap-horizontal-circle":"material/swap-horizontal-circle.svg","material-swap-horizontal-hidden":"material/swap-horizontal-hidden.svg","material-swap-horizontal-variant":"material/swap-horizontal-variant.svg","material-swap-horizontal":"material/swap-horizontal.svg","material-swap-vertical-bold":"material/swap-vertical-bold.svg","material-swap-vertical-circle-outline":"material/swap-vertical-circle-outline.svg","material-swap-vertical-circle":"material/swap-vertical-circle.svg","material-swap-vertical-variant":"material/swap-vertical-variant.svg","material-swap-vertical":"material/swap-vertical.svg","material-swim":"material/swim.svg","material-switch":"material/switch.svg","material-sword-cross":"material/sword-cross.svg","material-sword":"material/sword.svg","material-syllabary-hangul":"material/syllabary-hangul.svg","material-syllabary-hiragana":"material/syllabary-hiragana.svg","material-syllabary-katakana-halfwidth":"material/syllabary-katakana-halfwidth.svg","material-syllabary-katakana":"material/syllabary-katakana.svg","material-symbol":"material/symbol.svg","material-symfony":"material/symfony.svg","material-synagogue-outline":"material/synagogue-outline.svg","material-synagogue":"material/synagogue.svg","material-sync-alert":"material/sync-alert.svg","material-sync-circle":"material/sync-circle.svg","material-sync-off":"material/sync-off.svg","material-sync":"material/sync.svg","material-tab-minus":"material/tab-minus.svg","material-tab-plus":"material/tab-plus.svg","material-tab-remove":"material/tab-remove.svg","material-tab-search":"material/tab-search.svg","material-tab-unselected":"material/tab-unselected.svg","material-tab":"material/tab.svg","material-table-account":"material/table-account.svg","material-table-alert":"material/table-alert.svg","material-table-arrow-down":"material/table-arrow-down.svg","material-table-arrow-left":"material/table-arrow-left.svg","material-table-arrow-right":"material/table-arrow-right.svg","material-table-arrow-up":"material/table-arrow-up.svg","material-table-border":"material/table-border.svg","material-table-cancel":"material/table-cancel.svg","material-table-chair":"material/table-chair.svg","material-table-check":"material/table-check.svg","material-table-clock":"material/table-clock.svg","material-table-cog":"material/table-cog.svg","material-table-column-plus-after":"material/table-column-plus-after.svg","material-table-column-plus-before":"material/table-column-plus-before.svg","material-table-column-remove":"material/table-column-remove.svg","material-table-column-width":"material/table-column-width.svg","material-table-column":"material/table-column.svg","material-table-edit":"material/table-edit.svg","material-table-eye-off":"material/table-eye-off.svg","material-table-eye":"material/table-eye.svg","material-table-filter":"material/table-filter.svg","material-table-furniture":"material/table-furniture.svg","material-table-headers-eye-off":"material/table-headers-eye-off.svg","material-table-headers-eye":"material/table-headers-eye.svg","material-table-heart":"material/table-heart.svg","material-table-key":"material/table-key.svg","material-table-large-plus":"material/table-large-plus.svg","material-table-large-remove":"material/table-large-remove.svg","material-table-large":"material/table-large.svg","material-table-lock":"material/table-lock.svg","material-table-merge-cells":"material/table-merge-cells.svg","material-table-minus":"material/table-minus.svg","material-table-multiple":"material/table-multiple.svg","material-table-network":"material/table-network.svg","material-table-of-contents":"material/table-of-contents.svg","material-table-off":"material/table-off.svg","material-table-picnic":"material/table-picnic.svg","material-table-pivot":"material/table-pivot.svg","material-table-plus":"material/table-plus.svg","material-table-question":"material/table-question.svg","material-table-refresh":"material/table-refresh.svg","material-table-remove":"material/table-remove.svg","material-table-row-height":"material/table-row-height.svg","material-table-row-plus-after":"material/table-row-plus-after.svg","material-table-row-plus-before":"material/table-row-plus-before.svg","material-table-row-remove":"material/table-row-remove.svg","material-table-row":"material/table-row.svg","material-table-search":"material/table-search.svg","material-table-settings":"material/table-settings.svg","material-table-split-cell":"material/table-split-cell.svg","material-table-star":"material/table-star.svg","material-table-sync":"material/table-sync.svg","material-table-tennis":"material/table-tennis.svg","material-table":"material/table.svg","material-tablet-cellphone":"material/tablet-cellphone.svg","material-tablet-dashboard":"material/tablet-dashboard.svg","material-tablet":"material/tablet.svg","material-taco":"material/taco.svg","material-tag-arrow-down-outline":"material/tag-arrow-down-outline.svg","material-tag-arrow-down":"material/tag-arrow-down.svg","material-tag-arrow-left-outline":"material/tag-arrow-left-outline.svg","material-tag-arrow-left":"material/tag-arrow-left.svg","material-tag-arrow-right-outline":"material/tag-arrow-right-outline.svg","material-tag-arrow-right":"material/tag-arrow-right.svg","material-tag-arrow-up-outline":"material/tag-arrow-up-outline.svg","material-tag-arrow-up":"material/tag-arrow-up.svg","material-tag-check-outline":"material/tag-check-outline.svg","material-tag-check":"material/tag-check.svg","material-tag-edit-outline":"material/tag-edit-outline.svg","material-tag-edit":"material/tag-edit.svg","material-tag-faces":"material/tag-faces.svg","material-tag-heart-outline":"material/tag-heart-outline.svg","material-tag-heart":"material/tag-heart.svg","material-tag-hidden":"material/tag-hidden.svg","material-tag-minus-outline":"material/tag-minus-outline.svg","material-tag-minus":"material/tag-minus.svg","material-tag-multiple-outline":"material/tag-multiple-outline.svg","material-tag-multiple":"material/tag-multiple.svg","material-tag-off-outline":"material/tag-off-outline.svg","material-tag-off":"material/tag-off.svg","material-tag-outline":"material/tag-outline.svg","material-tag-plus-outline":"material/tag-plus-outline.svg","material-tag-plus":"material/tag-plus.svg","material-tag-remove-outline":"material/tag-remove-outline.svg","material-tag-remove":"material/tag-remove.svg","material-tag-search-outline":"material/tag-search-outline.svg","material-tag-search":"material/tag-search.svg","material-tag-text-outline":"material/tag-text-outline.svg","material-tag-text":"material/tag-text.svg","material-tag":"material/tag.svg","material-tailwind":"material/tailwind.svg","material-tally-mark-1":"material/tally-mark-1.svg","material-tally-mark-2":"material/tally-mark-2.svg","material-tally-mark-3":"material/tally-mark-3.svg","material-tally-mark-4":"material/tally-mark-4.svg","material-tally-mark-5":"material/tally-mark-5.svg","material-tangram":"material/tangram.svg","material-tank":"material/tank.svg","material-tanker-truck":"material/tanker-truck.svg","material-tape-drive":"material/tape-drive.svg","material-tape-measure":"material/tape-measure.svg","material-target-account":"material/target-account.svg","material-target-variant":"material/target-variant.svg","material-target":"material/target.svg","material-taxi":"material/taxi.svg","material-tea-outline":"material/tea-outline.svg","material-tea":"material/tea.svg","material-teamviewer":"material/teamviewer.svg","material-teddy-bear":"material/teddy-bear.svg","material-telescope":"material/telescope.svg","material-television-ambient-light":"material/television-ambient-light.svg","material-television-box":"material/television-box.svg","material-television-classic-off":"material/television-classic-off.svg","material-television-classic":"material/television-classic.svg","material-television-guide":"material/television-guide.svg","material-television-off":"material/television-off.svg","material-television-pause":"material/television-pause.svg","material-television-play":"material/television-play.svg","material-television-shimmer":"material/television-shimmer.svg","material-television-speaker-off":"material/television-speaker-off.svg","material-television-speaker":"material/television-speaker.svg","material-television-stop":"material/television-stop.svg","material-television":"material/television.svg","material-temperature-celsius":"material/temperature-celsius.svg","material-temperature-fahrenheit":"material/temperature-fahrenheit.svg","material-temperature-kelvin":"material/temperature-kelvin.svg","material-temple-buddhist-outline":"material/temple-buddhist-outline.svg","material-temple-buddhist":"material/temple-buddhist.svg","material-temple-hindu-outline":"material/temple-hindu-outline.svg","material-temple-hindu":"material/temple-hindu.svg","material-tennis-ball-outline":"material/tennis-ball-outline.svg","material-tennis-ball":"material/tennis-ball.svg","material-tennis":"material/tennis.svg","material-tent":"material/tent.svg","material-terraform":"material/terraform.svg","material-terrain":"material/terrain.svg","material-test-tube-empty":"material/test-tube-empty.svg","material-test-tube-off":"material/test-tube-off.svg","material-test-tube":"material/test-tube.svg","material-text-account":"material/text-account.svg","material-text-box-check-outline":"material/text-box-check-outline.svg","material-text-box-check":"material/text-box-check.svg","material-text-box-edit-outline":"material/text-box-edit-outline.svg","material-text-box-edit":"material/text-box-edit.svg","material-text-box-minus-outline":"material/text-box-minus-outline.svg","material-text-box-minus":"material/text-box-minus.svg","material-text-box-multiple-outline":"material/text-box-multiple-outline.svg","material-text-box-multiple":"material/text-box-multiple.svg","material-text-box-outline":"material/text-box-outline.svg","material-text-box-plus-outline":"material/text-box-plus-outline.svg","material-text-box-plus":"material/text-box-plus.svg","material-text-box-remove-outline":"material/text-box-remove-outline.svg","material-text-box-remove":"material/text-box-remove.svg","material-text-box-search-outline":"material/text-box-search-outline.svg","material-text-box-search":"material/text-box-search.svg","material-text-box":"material/text-box.svg","material-text-long":"material/text-long.svg","material-text-recognition":"material/text-recognition.svg","material-text-search-variant":"material/text-search-variant.svg","material-text-search":"material/text-search.svg","material-text-shadow":"material/text-shadow.svg","material-text-short":"material/text-short.svg","material-text":"material/text.svg","material-texture-box":"material/texture-box.svg","material-texture":"material/texture.svg","material-theater":"material/theater.svg","material-theme-light-dark":"material/theme-light-dark.svg","material-thermometer-alert":"material/thermometer-alert.svg","material-thermometer-auto":"material/thermometer-auto.svg","material-thermometer-bluetooth":"material/thermometer-bluetooth.svg","material-thermometer-check":"material/thermometer-check.svg","material-thermometer-chevron-down":"material/thermometer-chevron-down.svg","material-thermometer-chevron-up":"material/thermometer-chevron-up.svg","material-thermometer-high":"material/thermometer-high.svg","material-thermometer-lines":"material/thermometer-lines.svg","material-thermometer-low":"material/thermometer-low.svg","material-thermometer-minus":"material/thermometer-minus.svg","material-thermometer-off":"material/thermometer-off.svg","material-thermometer-plus":"material/thermometer-plus.svg","material-thermometer-probe-off":"material/thermometer-probe-off.svg","material-thermometer-probe":"material/thermometer-probe.svg","material-thermometer-water":"material/thermometer-water.svg","material-thermometer":"material/thermometer.svg","material-thermostat-auto":"material/thermostat-auto.svg","material-thermostat-box-auto":"material/thermostat-box-auto.svg","material-thermostat-box":"material/thermostat-box.svg","material-thermostat-cog":"material/thermostat-cog.svg","material-thermostat":"material/thermostat.svg","material-thought-bubble-outline":"material/thought-bubble-outline.svg","material-thought-bubble":"material/thought-bubble.svg","material-thumb-down-outline":"material/thumb-down-outline.svg","material-thumb-down":"material/thumb-down.svg","material-thumb-up-outline":"material/thumb-up-outline.svg","material-thumb-up":"material/thumb-up.svg","material-thumbs-up-down-outline":"material/thumbs-up-down-outline.svg","material-thumbs-up-down":"material/thumbs-up-down.svg","material-ticket-account":"material/ticket-account.svg","material-ticket-confirmation-outline":"material/ticket-confirmation-outline.svg","material-ticket-confirmation":"material/ticket-confirmation.svg","material-ticket-outline":"material/ticket-outline.svg","material-ticket-percent-outline":"material/ticket-percent-outline.svg","material-ticket-percent":"material/ticket-percent.svg","material-ticket":"material/ticket.svg","material-tie":"material/tie.svg","material-tilde-off":"material/tilde-off.svg","material-tilde":"material/tilde.svg","material-timelapse":"material/timelapse.svg","material-timeline-alert-outline":"material/timeline-alert-outline.svg","material-timeline-alert":"material/timeline-alert.svg","material-timeline-check-outline":"material/timeline-check-outline.svg","material-timeline-check":"material/timeline-check.svg","material-timeline-clock-outline":"material/timeline-clock-outline.svg","material-timeline-clock":"material/timeline-clock.svg","material-timeline-minus-outline":"material/timeline-minus-outline.svg","material-timeline-minus":"material/timeline-minus.svg","material-timeline-outline":"material/timeline-outline.svg","material-timeline-plus-outline":"material/timeline-plus-outline.svg","material-timeline-plus":"material/timeline-plus.svg","material-timeline-question-outline":"material/timeline-question-outline.svg","material-timeline-question":"material/timeline-question.svg","material-timeline-remove-outline":"material/timeline-remove-outline.svg","material-timeline-remove":"material/timeline-remove.svg","material-timeline-text-outline":"material/timeline-text-outline.svg","material-timeline-text":"material/timeline-text.svg","material-timeline":"material/timeline.svg","material-timer-10":"material/timer-10.svg","material-timer-3":"material/timer-3.svg","material-timer-alert-outline":"material/timer-alert-outline.svg","material-timer-alert":"material/timer-alert.svg","material-timer-cancel-outline":"material/timer-cancel-outline.svg","material-timer-cancel":"material/timer-cancel.svg","material-timer-check-outline":"material/timer-check-outline.svg","material-timer-check":"material/timer-check.svg","material-timer-cog-outline":"material/timer-cog-outline.svg","material-timer-cog":"material/timer-cog.svg","material-timer-edit-outline":"material/timer-edit-outline.svg","material-timer-edit":"material/timer-edit.svg","material-timer-lock-open-outline":"material/timer-lock-open-outline.svg","material-timer-lock-open":"material/timer-lock-open.svg","material-timer-lock-outline":"material/timer-lock-outline.svg","material-timer-lock":"material/timer-lock.svg","material-timer-marker-outline":"material/timer-marker-outline.svg","material-timer-marker":"material/timer-marker.svg","material-timer-minus-outline":"material/timer-minus-outline.svg","material-timer-minus":"material/timer-minus.svg","material-timer-music-outline":"material/timer-music-outline.svg","material-timer-music":"material/timer-music.svg","material-timer-off-outline":"material/timer-off-outline.svg","material-timer-off":"material/timer-off.svg","material-timer-outline":"material/timer-outline.svg","material-timer-pause-outline":"material/timer-pause-outline.svg","material-timer-pause":"material/timer-pause.svg","material-timer-play-outline":"material/timer-play-outline.svg","material-timer-play":"material/timer-play.svg","material-timer-plus-outline":"material/timer-plus-outline.svg","material-timer-plus":"material/timer-plus.svg","material-timer-refresh-outline":"material/timer-refresh-outline.svg","material-timer-refresh":"material/timer-refresh.svg","material-timer-remove-outline":"material/timer-remove-outline.svg","material-timer-remove":"material/timer-remove.svg","material-timer-sand-complete":"material/timer-sand-complete.svg","material-timer-sand-empty":"material/timer-sand-empty.svg","material-timer-sand-full":"material/timer-sand-full.svg","material-timer-sand-paused":"material/timer-sand-paused.svg","material-timer-sand":"material/timer-sand.svg","material-timer-settings-outline":"material/timer-settings-outline.svg","material-timer-settings":"material/timer-settings.svg","material-timer-star-outline":"material/timer-star-outline.svg","material-timer-star":"material/timer-star.svg","material-timer-stop-outline":"material/timer-stop-outline.svg","material-timer-stop":"material/timer-stop.svg","material-timer-sync-outline":"material/timer-sync-outline.svg","material-timer-sync":"material/timer-sync.svg","material-timer":"material/timer.svg","material-timetable":"material/timetable.svg","material-tire":"material/tire.svg","material-toaster-off":"material/toaster-off.svg","material-toaster-oven":"material/toaster-oven.svg","material-toaster":"material/toaster.svg","material-toggle-switch-off-outline":"material/toggle-switch-off-outline.svg","material-toggle-switch-off":"material/toggle-switch-off.svg","material-toggle-switch-outline":"material/toggle-switch-outline.svg","material-toggle-switch-variant-off":"material/toggle-switch-variant-off.svg","material-toggle-switch-variant":"material/toggle-switch-variant.svg","material-toggle-switch":"material/toggle-switch.svg","material-toilet":"material/toilet.svg","material-toolbox-outline":"material/toolbox-outline.svg","material-toolbox":"material/toolbox.svg","material-tools":"material/tools.svg","material-tooltip-account":"material/tooltip-account.svg","material-tooltip-cellphone":"material/tooltip-cellphone.svg","material-tooltip-check-outline":"material/tooltip-check-outline.svg","material-tooltip-check":"material/tooltip-check.svg","material-tooltip-edit-outline":"material/tooltip-edit-outline.svg","material-tooltip-edit":"material/tooltip-edit.svg","material-tooltip-image-outline":"material/tooltip-image-outline.svg","material-tooltip-image":"material/tooltip-image.svg","material-tooltip-minus-outline":"material/tooltip-minus-outline.svg","material-tooltip-minus":"material/tooltip-minus.svg","material-tooltip-outline":"material/tooltip-outline.svg","material-tooltip-plus-outline":"material/tooltip-plus-outline.svg","material-tooltip-plus":"material/tooltip-plus.svg","material-tooltip-question-outline":"material/tooltip-question-outline.svg","material-tooltip-question":"material/tooltip-question.svg","material-tooltip-remove-outline":"material/tooltip-remove-outline.svg","material-tooltip-remove":"material/tooltip-remove.svg","material-tooltip-text-outline":"material/tooltip-text-outline.svg","material-tooltip-text":"material/tooltip-text.svg","material-tooltip":"material/tooltip.svg","material-tooth-outline":"material/tooth-outline.svg","material-tooth":"material/tooth.svg","material-toothbrush-electric":"material/toothbrush-electric.svg","material-toothbrush-paste":"material/toothbrush-paste.svg","material-toothbrush":"material/toothbrush.svg","material-torch":"material/torch.svg","material-tortoise":"material/tortoise.svg","material-toslink":"material/toslink.svg","material-touch-text-outline":"material/touch-text-outline.svg","material-tournament":"material/tournament.svg","material-tow-truck":"material/tow-truck.svg","material-tower-beach":"material/tower-beach.svg","material-tower-fire":"material/tower-fire.svg","material-town-hall":"material/town-hall.svg","material-toy-brick-marker-outline":"material/toy-brick-marker-outline.svg","material-toy-brick-marker":"material/toy-brick-marker.svg","material-toy-brick-minus-outline":"material/toy-brick-minus-outline.svg","material-toy-brick-minus":"material/toy-brick-minus.svg","material-toy-brick-outline":"material/toy-brick-outline.svg","material-toy-brick-plus-outline":"material/toy-brick-plus-outline.svg","material-toy-brick-plus":"material/toy-brick-plus.svg","material-toy-brick-remove-outline":"material/toy-brick-remove-outline.svg","material-toy-brick-remove":"material/toy-brick-remove.svg","material-toy-brick-search-outline":"material/toy-brick-search-outline.svg","material-toy-brick-search":"material/toy-brick-search.svg","material-toy-brick":"material/toy-brick.svg","material-track-light-off":"material/track-light-off.svg","material-track-light":"material/track-light.svg","material-trackpad-lock":"material/trackpad-lock.svg","material-trackpad":"material/trackpad.svg","material-tractor-variant":"material/tractor-variant.svg","material-tractor":"material/tractor.svg","material-trademark":"material/trademark.svg","material-traffic-cone":"material/traffic-cone.svg","material-traffic-light-outline":"material/traffic-light-outline.svg","material-traffic-light":"material/traffic-light.svg","material-train-bus":"material/train-bus.svg","material-train-car-autorack":"material/train-car-autorack.svg","material-train-car-box-full":"material/train-car-box-full.svg","material-train-car-box-open":"material/train-car-box-open.svg","material-train-car-box":"material/train-car-box.svg","material-train-car-caboose":"material/train-car-caboose.svg","material-train-car-centerbeam-full":"material/train-car-centerbeam-full.svg","material-train-car-centerbeam":"material/train-car-centerbeam.svg","material-train-car-container":"material/train-car-container.svg","material-train-car-flatbed-car":"material/train-car-flatbed-car.svg","material-train-car-flatbed-tank":"material/train-car-flatbed-tank.svg","material-train-car-flatbed":"material/train-car-flatbed.svg","material-train-car-gondola-full":"material/train-car-gondola-full.svg","material-train-car-gondola":"material/train-car-gondola.svg","material-train-car-hopper-covered":"material/train-car-hopper-covered.svg","material-train-car-hopper-full":"material/train-car-hopper-full.svg","material-train-car-hopper":"material/train-car-hopper.svg","material-train-car-intermodal":"material/train-car-intermodal.svg","material-train-car-passenger-door-open":"material/train-car-passenger-door-open.svg","material-train-car-passenger-door":"material/train-car-passenger-door.svg","material-train-car-passenger-variant":"material/train-car-passenger-variant.svg","material-train-car-passenger":"material/train-car-passenger.svg","material-train-car-tank":"material/train-car-tank.svg","material-train-car":"material/train-car.svg","material-train-variant":"material/train-variant.svg","material-train":"material/train.svg","material-tram-side":"material/tram-side.svg","material-tram":"material/tram.svg","material-transcribe-close":"material/transcribe-close.svg","material-transcribe":"material/transcribe.svg","material-transfer-down":"material/transfer-down.svg","material-transfer-left":"material/transfer-left.svg","material-transfer-right":"material/transfer-right.svg","material-transfer-up":"material/transfer-up.svg","material-transfer":"material/transfer.svg","material-transit-connection-horizontal":"material/transit-connection-horizontal.svg","material-transit-connection-variant":"material/transit-connection-variant.svg","material-transit-connection":"material/transit-connection.svg","material-transit-detour":"material/transit-detour.svg","material-transit-skip":"material/transit-skip.svg","material-transit-transfer":"material/transit-transfer.svg","material-transition-masked":"material/transition-masked.svg","material-transition":"material/transition.svg","material-translate-off":"material/translate-off.svg","material-translate-variant":"material/translate-variant.svg","material-translate":"material/translate.svg","material-transmission-tower-export":"material/transmission-tower-export.svg","material-transmission-tower-import":"material/transmission-tower-import.svg","material-transmission-tower-off":"material/transmission-tower-off.svg","material-transmission-tower":"material/transmission-tower.svg","material-trash-can-outline":"material/trash-can-outline.svg","material-trash-can":"material/trash-can.svg","material-tray-alert":"material/tray-alert.svg","material-tray-arrow-down":"material/tray-arrow-down.svg","material-tray-arrow-up":"material/tray-arrow-up.svg","material-tray-full":"material/tray-full.svg","material-tray-minus":"material/tray-minus.svg","material-tray-plus":"material/tray-plus.svg","material-tray-remove":"material/tray-remove.svg","material-tray":"material/tray.svg","material-treasure-chest-outline":"material/treasure-chest-outline.svg","material-treasure-chest":"material/treasure-chest.svg","material-tree-outline":"material/tree-outline.svg","material-tree":"material/tree.svg","material-trello":"material/trello.svg","material-trending-down":"material/trending-down.svg","material-trending-neutral":"material/trending-neutral.svg","material-trending-up":"material/trending-up.svg","material-triangle-down-outline":"material/triangle-down-outline.svg","material-triangle-down":"material/triangle-down.svg","material-triangle-outline":"material/triangle-outline.svg","material-triangle-small-down":"material/triangle-small-down.svg","material-triangle-small-up":"material/triangle-small-up.svg","material-triangle-wave":"material/triangle-wave.svg","material-triangle":"material/triangle.svg","material-triforce":"material/triforce.svg","material-trophy-award":"material/trophy-award.svg","material-trophy-broken":"material/trophy-broken.svg","material-trophy-outline":"material/trophy-outline.svg","material-trophy-variant-outline":"material/trophy-variant-outline.svg","material-trophy-variant":"material/trophy-variant.svg","material-trophy":"material/trophy.svg","material-truck-alert-outline":"material/truck-alert-outline.svg","material-truck-alert":"material/truck-alert.svg","material-truck-cargo-container":"material/truck-cargo-container.svg","material-truck-check-outline":"material/truck-check-outline.svg","material-truck-check":"material/truck-check.svg","material-truck-delivery-outline":"material/truck-delivery-outline.svg","material-truck-delivery":"material/truck-delivery.svg","material-truck-fast-outline":"material/truck-fast-outline.svg","material-truck-fast":"material/truck-fast.svg","material-truck-flatbed":"material/truck-flatbed.svg","material-truck-minus-outline":"material/truck-minus-outline.svg","material-truck-minus":"material/truck-minus.svg","material-truck-off-road-off":"material/truck-off-road-off.svg","material-truck-off-road":"material/truck-off-road.svg","material-truck-outline":"material/truck-outline.svg","material-truck-plus-outline":"material/truck-plus-outline.svg","material-truck-plus":"material/truck-plus.svg","material-truck-remove-outline":"material/truck-remove-outline.svg","material-truck-remove":"material/truck-remove.svg","material-truck-snowflake":"material/truck-snowflake.svg","material-truck-trailer":"material/truck-trailer.svg","material-truck":"material/truck.svg","material-trumpet":"material/trumpet.svg","material-tshirt-crew-outline":"material/tshirt-crew-outline.svg","material-tshirt-crew":"material/tshirt-crew.svg","material-tshirt-v-outline":"material/tshirt-v-outline.svg","material-tshirt-v":"material/tshirt-v.svg","material-tsunami":"material/tsunami.svg","material-tumble-dryer-alert":"material/tumble-dryer-alert.svg","material-tumble-dryer-off":"material/tumble-dryer-off.svg","material-tumble-dryer":"material/tumble-dryer.svg","material-tune-variant":"material/tune-variant.svg","material-tune-vertical-variant":"material/tune-vertical-variant.svg","material-tune-vertical":"material/tune-vertical.svg","material-tune":"material/tune.svg","material-tunnel-outline":"material/tunnel-outline.svg","material-tunnel":"material/tunnel.svg","material-turbine":"material/turbine.svg","material-turkey":"material/turkey.svg","material-turnstile-outline":"material/turnstile-outline.svg","material-turnstile":"material/turnstile.svg","material-turtle":"material/turtle.svg","material-twitch":"material/twitch.svg","material-twitter":"material/twitter.svg","material-two-factor-authentication":"material/two-factor-authentication.svg","material-typewriter":"material/typewriter.svg","material-ubisoft":"material/ubisoft.svg","material-ubuntu":"material/ubuntu.svg","material-ufo-outline":"material/ufo-outline.svg","material-ufo":"material/ufo.svg","material-ultra-high-definition":"material/ultra-high-definition.svg","material-umbraco":"material/umbraco.svg","material-umbrella-beach-outline":"material/umbrella-beach-outline.svg","material-umbrella-beach":"material/umbrella-beach.svg","material-umbrella-closed-outline":"material/umbrella-closed-outline.svg","material-umbrella-closed-variant":"material/umbrella-closed-variant.svg","material-umbrella-closed":"material/umbrella-closed.svg","material-umbrella-outline":"material/umbrella-outline.svg","material-umbrella":"material/umbrella.svg","material-underwear-outline":"material/underwear-outline.svg","material-undo-variant":"material/undo-variant.svg","material-undo":"material/undo.svg","material-unfold-less-horizontal":"material/unfold-less-horizontal.svg","material-unfold-less-vertical":"material/unfold-less-vertical.svg","material-unfold-more-horizontal":"material/unfold-more-horizontal.svg","material-unfold-more-vertical":"material/unfold-more-vertical.svg","material-ungroup":"material/ungroup.svg","material-unicode":"material/unicode.svg","material-unicorn-variant":"material/unicorn-variant.svg","material-unicorn":"material/unicorn.svg","material-unicycle":"material/unicycle.svg","material-unity":"material/unity.svg","material-unreal":"material/unreal.svg","material-update":"material/update.svg","material-upload-box-outline":"material/upload-box-outline.svg","material-upload-box":"material/upload-box.svg","material-upload-circle-outline":"material/upload-circle-outline.svg","material-upload-circle":"material/upload-circle.svg","material-upload-lock-outline":"material/upload-lock-outline.svg","material-upload-lock":"material/upload-lock.svg","material-upload-multiple-outline":"material/upload-multiple-outline.svg","material-upload-multiple":"material/upload-multiple.svg","material-upload-network-outline":"material/upload-network-outline.svg","material-upload-network":"material/upload-network.svg","material-upload-off-outline":"material/upload-off-outline.svg","material-upload-off":"material/upload-off.svg","material-upload-outline":"material/upload-outline.svg","material-upload":"material/upload.svg","material-usb-c-port":"material/usb-c-port.svg","material-usb-flash-drive-outline":"material/usb-flash-drive-outline.svg","material-usb-flash-drive":"material/usb-flash-drive.svg","material-usb-port":"material/usb-port.svg","material-usb":"material/usb.svg","material-vacuum-outline":"material/vacuum-outline.svg","material-vacuum":"material/vacuum.svg","material-valve-closed":"material/valve-closed.svg","material-valve-open":"material/valve-open.svg","material-valve":"material/valve.svg","material-van-passenger":"material/van-passenger.svg","material-van-utility":"material/van-utility.svg","material-vanish-quarter":"material/vanish-quarter.svg","material-vanish":"material/vanish.svg","material-vanity-light":"material/vanity-light.svg","material-variable-box":"material/variable-box.svg","material-variable":"material/variable.svg","material-vector-arrange-above":"material/vector-arrange-above.svg","material-vector-arrange-below":"material/vector-arrange-below.svg","material-vector-bezier":"material/vector-bezier.svg","material-vector-circle-variant":"material/vector-circle-variant.svg","material-vector-circle":"material/vector-circle.svg","material-vector-combine":"material/vector-combine.svg","material-vector-curve":"material/vector-curve.svg","material-vector-difference-ab":"material/vector-difference-ab.svg","material-vector-difference-ba":"material/vector-difference-ba.svg","material-vector-difference":"material/vector-difference.svg","material-vector-ellipse":"material/vector-ellipse.svg","material-vector-intersection":"material/vector-intersection.svg","material-vector-line":"material/vector-line.svg","material-vector-link":"material/vector-link.svg","material-vector-point-edit":"material/vector-point-edit.svg","material-vector-point-minus":"material/vector-point-minus.svg","material-vector-point-plus":"material/vector-point-plus.svg","material-vector-point-select":"material/vector-point-select.svg","material-vector-point":"material/vector-point.svg","material-vector-polygon-variant":"material/vector-polygon-variant.svg","material-vector-polygon":"material/vector-polygon.svg","material-vector-polyline-edit":"material/vector-polyline-edit.svg","material-vector-polyline-minus":"material/vector-polyline-minus.svg","material-vector-polyline-plus":"material/vector-polyline-plus.svg","material-vector-polyline-remove":"material/vector-polyline-remove.svg","material-vector-polyline":"material/vector-polyline.svg","material-vector-radius":"material/vector-radius.svg","material-vector-rectangle":"material/vector-rectangle.svg","material-vector-selection":"material/vector-selection.svg","material-vector-square-close":"material/vector-square-close.svg","material-vector-square-edit":"material/vector-square-edit.svg","material-vector-square-minus":"material/vector-square-minus.svg","material-vector-square-open":"material/vector-square-open.svg","material-vector-square-plus":"material/vector-square-plus.svg","material-vector-square-remove":"material/vector-square-remove.svg","material-vector-square":"material/vector-square.svg","material-vector-triangle":"material/vector-triangle.svg","material-vector-union":"material/vector-union.svg","material-vhs":"material/vhs.svg","material-vibrate-off":"material/vibrate-off.svg","material-vibrate":"material/vibrate.svg","material-video-2d":"material/video-2d.svg","material-video-3d-off":"material/video-3d-off.svg","material-video-3d-variant":"material/video-3d-variant.svg","material-video-3d":"material/video-3d.svg","material-video-4k-box":"material/video-4k-box.svg","material-video-account":"material/video-account.svg","material-video-box-off":"material/video-box-off.svg","material-video-box":"material/video-box.svg","material-video-check-outline":"material/video-check-outline.svg","material-video-check":"material/video-check.svg","material-video-high-definition":"material/video-high-definition.svg","material-video-image":"material/video-image.svg","material-video-input-antenna":"material/video-input-antenna.svg","material-video-input-component":"material/video-input-component.svg","material-video-input-hdmi":"material/video-input-hdmi.svg","material-video-input-scart":"material/video-input-scart.svg","material-video-input-svideo":"material/video-input-svideo.svg","material-video-marker-outline":"material/video-marker-outline.svg","material-video-marker":"material/video-marker.svg","material-video-minus-outline":"material/video-minus-outline.svg","material-video-minus":"material/video-minus.svg","material-video-off-outline":"material/video-off-outline.svg","material-video-off":"material/video-off.svg","material-video-outline":"material/video-outline.svg","material-video-plus-outline":"material/video-plus-outline.svg","material-video-plus":"material/video-plus.svg","material-video-stabilization":"material/video-stabilization.svg","material-video-standard-definition":"material/video-standard-definition.svg","material-video-switch-outline":"material/video-switch-outline.svg","material-video-switch":"material/video-switch.svg","material-video-vintage":"material/video-vintage.svg","material-video-wireless-outline":"material/video-wireless-outline.svg","material-video-wireless":"material/video-wireless.svg","material-video":"material/video.svg","material-view-agenda-outline":"material/view-agenda-outline.svg","material-view-agenda":"material/view-agenda.svg","material-view-array-outline":"material/view-array-outline.svg","material-view-array":"material/view-array.svg","material-view-carousel-outline":"material/view-carousel-outline.svg","material-view-carousel":"material/view-carousel.svg","material-view-column-outline":"material/view-column-outline.svg","material-view-column":"material/view-column.svg","material-view-comfy-outline":"material/view-comfy-outline.svg","material-view-comfy":"material/view-comfy.svg","material-view-compact-outline":"material/view-compact-outline.svg","material-view-compact":"material/view-compact.svg","material-view-dashboard-edit-outline":"material/view-dashboard-edit-outline.svg","material-view-dashboard-edit":"material/view-dashboard-edit.svg","material-view-dashboard-outline":"material/view-dashboard-outline.svg","material-view-dashboard-variant-outline":"material/view-dashboard-variant-outline.svg","material-view-dashboard-variant":"material/view-dashboard-variant.svg","material-view-dashboard":"material/view-dashboard.svg","material-view-day-outline":"material/view-day-outline.svg","material-view-day":"material/view-day.svg","material-view-gallery-outline":"material/view-gallery-outline.svg","material-view-gallery":"material/view-gallery.svg","material-view-grid-compact":"material/view-grid-compact.svg","material-view-grid-outline":"material/view-grid-outline.svg","material-view-grid-plus-outline":"material/view-grid-plus-outline.svg","material-view-grid-plus":"material/view-grid-plus.svg","material-view-grid":"material/view-grid.svg","material-view-headline":"material/view-headline.svg","material-view-list-outline":"material/view-list-outline.svg","material-view-list":"material/view-list.svg","material-view-module-outline":"material/view-module-outline.svg","material-view-module":"material/view-module.svg","material-view-parallel-outline":"material/view-parallel-outline.svg","material-view-parallel":"material/view-parallel.svg","material-view-quilt-outline":"material/view-quilt-outline.svg","material-view-quilt":"material/view-quilt.svg","material-view-sequential-outline":"material/view-sequential-outline.svg","material-view-sequential":"material/view-sequential.svg","material-view-split-horizontal":"material/view-split-horizontal.svg","material-view-split-vertical":"material/view-split-vertical.svg","material-view-stream-outline":"material/view-stream-outline.svg","material-view-stream":"material/view-stream.svg","material-view-week-outline":"material/view-week-outline.svg","material-view-week":"material/view-week.svg","material-vimeo":"material/vimeo.svg","material-violin":"material/violin.svg","material-virtual-reality":"material/virtual-reality.svg","material-virus-off-outline":"material/virus-off-outline.svg","material-virus-off":"material/virus-off.svg","material-virus-outline":"material/virus-outline.svg","material-virus":"material/virus.svg","material-vlc":"material/vlc.svg","material-voicemail":"material/voicemail.svg","material-volcano-outline":"material/volcano-outline.svg","material-volcano":"material/volcano.svg","material-volleyball":"material/volleyball.svg","material-volume-equal":"material/volume-equal.svg","material-volume-high":"material/volume-high.svg","material-volume-low":"material/volume-low.svg","material-volume-medium":"material/volume-medium.svg","material-volume-minus":"material/volume-minus.svg","material-volume-mute":"material/volume-mute.svg","material-volume-off":"material/volume-off.svg","material-volume-plus":"material/volume-plus.svg","material-volume-source":"material/volume-source.svg","material-volume-variant-off":"material/volume-variant-off.svg","material-volume-vibrate":"material/volume-vibrate.svg","material-vote-outline":"material/vote-outline.svg","material-vote":"material/vote.svg","material-vpn":"material/vpn.svg","material-vuejs":"material/vuejs.svg","material-vuetify":"material/vuetify.svg","material-walk":"material/walk.svg","material-wall-fire":"material/wall-fire.svg","material-wall-sconce-flat-outline":"material/wall-sconce-flat-outline.svg","material-wall-sconce-flat-variant-outline":"material/wall-sconce-flat-variant-outline.svg","material-wall-sconce-flat-variant":"material/wall-sconce-flat-variant.svg","material-wall-sconce-flat":"material/wall-sconce-flat.svg","material-wall-sconce-outline":"material/wall-sconce-outline.svg","material-wall-sconce-round-outline":"material/wall-sconce-round-outline.svg","material-wall-sconce-round-variant-outline":"material/wall-sconce-round-variant-outline.svg","material-wall-sconce-round-variant":"material/wall-sconce-round-variant.svg","material-wall-sconce-round":"material/wall-sconce-round.svg","material-wall-sconce":"material/wall-sconce.svg","material-wall":"material/wall.svg","material-wallet-bifold-outline":"material/wallet-bifold-outline.svg","material-wallet-bifold":"material/wallet-bifold.svg","material-wallet-giftcard":"material/wallet-giftcard.svg","material-wallet-membership":"material/wallet-membership.svg","material-wallet-outline":"material/wallet-outline.svg","material-wallet-plus-outline":"material/wallet-plus-outline.svg","material-wallet-plus":"material/wallet-plus.svg","material-wallet-travel":"material/wallet-travel.svg","material-wallet":"material/wallet.svg","material-wallpaper":"material/wallpaper.svg","material-wan":"material/wan.svg","material-wardrobe-outline":"material/wardrobe-outline.svg","material-wardrobe":"material/wardrobe.svg","material-warehouse":"material/warehouse.svg","material-washing-machine-alert":"material/washing-machine-alert.svg","material-washing-machine-off":"material/washing-machine-off.svg","material-washing-machine":"material/washing-machine.svg","material-watch-export-variant":"material/watch-export-variant.svg","material-watch-export":"material/watch-export.svg","material-watch-import-variant":"material/watch-import-variant.svg","material-watch-import":"material/watch-import.svg","material-watch-variant":"material/watch-variant.svg","material-watch-vibrate-off":"material/watch-vibrate-off.svg","material-watch-vibrate":"material/watch-vibrate.svg","material-watch":"material/watch.svg","material-water-alert-outline":"material/water-alert-outline.svg","material-water-alert":"material/water-alert.svg","material-water-boiler-alert":"material/water-boiler-alert.svg","material-water-boiler-auto":"material/water-boiler-auto.svg","material-water-boiler-off":"material/water-boiler-off.svg","material-water-boiler":"material/water-boiler.svg","material-water-check-outline":"material/water-check-outline.svg","material-water-check":"material/water-check.svg","material-water-circle":"material/water-circle.svg","material-water-minus-outline":"material/water-minus-outline.svg","material-water-minus":"material/water-minus.svg","material-water-off-outline":"material/water-off-outline.svg","material-water-off":"material/water-off.svg","material-water-opacity":"material/water-opacity.svg","material-water-outline":"material/water-outline.svg","material-water-percent-alert":"material/water-percent-alert.svg","material-water-percent":"material/water-percent.svg","material-water-plus-outline":"material/water-plus-outline.svg","material-water-plus":"material/water-plus.svg","material-water-polo":"material/water-polo.svg","material-water-pump-off":"material/water-pump-off.svg","material-water-pump":"material/water-pump.svg","material-water-remove-outline":"material/water-remove-outline.svg","material-water-remove":"material/water-remove.svg","material-water-sync":"material/water-sync.svg","material-water-thermometer-outline":"material/water-thermometer-outline.svg","material-water-thermometer":"material/water-thermometer.svg","material-water-well-outline":"material/water-well-outline.svg","material-water-well":"material/water-well.svg","material-water":"material/water.svg","material-waterfall":"material/waterfall.svg","material-watering-can-outline":"material/watering-can-outline.svg","material-watering-can":"material/watering-can.svg","material-watermark":"material/watermark.svg","material-wave-arrow-down":"material/wave-arrow-down.svg","material-wave-arrow-up":"material/wave-arrow-up.svg","material-wave-undercurrent":"material/wave-undercurrent.svg","material-wave":"material/wave.svg","material-waveform":"material/waveform.svg","material-waves-arrow-left":"material/waves-arrow-left.svg","material-waves-arrow-right":"material/waves-arrow-right.svg","material-waves-arrow-up":"material/waves-arrow-up.svg","material-waves":"material/waves.svg","material-waze":"material/waze.svg","material-weather-cloudy-alert":"material/weather-cloudy-alert.svg","material-weather-cloudy-arrow-right":"material/weather-cloudy-arrow-right.svg","material-weather-cloudy-clock":"material/weather-cloudy-clock.svg","material-weather-cloudy":"material/weather-cloudy.svg","material-weather-dust":"material/weather-dust.svg","material-weather-fog":"material/weather-fog.svg","material-weather-hail":"material/weather-hail.svg","material-weather-hazy":"material/weather-hazy.svg","material-weather-hurricane-outline":"material/weather-hurricane-outline.svg","material-weather-hurricane":"material/weather-hurricane.svg","material-weather-lightning-rainy":"material/weather-lightning-rainy.svg","material-weather-lightning":"material/weather-lightning.svg","material-weather-moonset-down":"material/weather-moonset-down.svg","material-weather-moonset-up":"material/weather-moonset-up.svg","material-weather-moonset":"material/weather-moonset.svg","material-weather-night-partly-cloudy":"material/weather-night-partly-cloudy.svg","material-weather-night":"material/weather-night.svg","material-weather-partly-cloudy":"material/weather-partly-cloudy.svg","material-weather-partly-lightning":"material/weather-partly-lightning.svg","material-weather-partly-rainy":"material/weather-partly-rainy.svg","material-weather-partly-snowy-rainy":"material/weather-partly-snowy-rainy.svg","material-weather-partly-snowy":"material/weather-partly-snowy.svg","material-weather-pouring":"material/weather-pouring.svg","material-weather-rainy":"material/weather-rainy.svg","material-weather-snowy-heavy":"material/weather-snowy-heavy.svg","material-weather-snowy-rainy":"material/weather-snowy-rainy.svg","material-weather-snowy":"material/weather-snowy.svg","material-weather-sunny-alert":"material/weather-sunny-alert.svg","material-weather-sunny-off":"material/weather-sunny-off.svg","material-weather-sunny":"material/weather-sunny.svg","material-weather-sunset-down":"material/weather-sunset-down.svg","material-weather-sunset-up":"material/weather-sunset-up.svg","material-weather-sunset":"material/weather-sunset.svg","material-weather-tornado":"material/weather-tornado.svg","material-weather-windy-variant":"material/weather-windy-variant.svg","material-weather-windy":"material/weather-windy.svg","material-web-box":"material/web-box.svg","material-web-cancel":"material/web-cancel.svg","material-web-check":"material/web-check.svg","material-web-clock":"material/web-clock.svg","material-web-minus":"material/web-minus.svg","material-web-off":"material/web-off.svg","material-web-plus":"material/web-plus.svg","material-web-refresh":"material/web-refresh.svg","material-web-remove":"material/web-remove.svg","material-web-sync":"material/web-sync.svg","material-web":"material/web.svg","material-webcam-off":"material/webcam-off.svg","material-webcam":"material/webcam.svg","material-webhook":"material/webhook.svg","material-webpack":"material/webpack.svg","material-webrtc":"material/webrtc.svg","material-wechat":"material/wechat.svg","material-weight-gram":"material/weight-gram.svg","material-weight-kilogram":"material/weight-kilogram.svg","material-weight-lifter":"material/weight-lifter.svg","material-weight-pound":"material/weight-pound.svg","material-weight":"material/weight.svg","material-whatsapp":"material/whatsapp.svg","material-wheel-barrow":"material/wheel-barrow.svg","material-wheelchair-accessibility":"material/wheelchair-accessibility.svg","material-wheelchair":"material/wheelchair.svg","material-whistle-outline":"material/whistle-outline.svg","material-whistle":"material/whistle.svg","material-white-balance-auto":"material/white-balance-auto.svg","material-white-balance-incandescent":"material/white-balance-incandescent.svg","material-white-balance-iridescent":"material/white-balance-iridescent.svg","material-white-balance-sunny":"material/white-balance-sunny.svg","material-widgets-outline":"material/widgets-outline.svg","material-widgets":"material/widgets.svg","material-wifi-alert":"material/wifi-alert.svg","material-wifi-arrow-down":"material/wifi-arrow-down.svg","material-wifi-arrow-left-right":"material/wifi-arrow-left-right.svg","material-wifi-arrow-left":"material/wifi-arrow-left.svg","material-wifi-arrow-right":"material/wifi-arrow-right.svg","material-wifi-arrow-up-down":"material/wifi-arrow-up-down.svg","material-wifi-arrow-up":"material/wifi-arrow-up.svg","material-wifi-cancel":"material/wifi-cancel.svg","material-wifi-check":"material/wifi-check.svg","material-wifi-cog":"material/wifi-cog.svg","material-wifi-lock-open":"material/wifi-lock-open.svg","material-wifi-lock":"material/wifi-lock.svg","material-wifi-marker":"material/wifi-marker.svg","material-wifi-minus":"material/wifi-minus.svg","material-wifi-off":"material/wifi-off.svg","material-wifi-plus":"material/wifi-plus.svg","material-wifi-refresh":"material/wifi-refresh.svg","material-wifi-remove":"material/wifi-remove.svg","material-wifi-settings":"material/wifi-settings.svg","material-wifi-star":"material/wifi-star.svg","material-wifi-strength-1-alert":"material/wifi-strength-1-alert.svg","material-wifi-strength-1-lock-open":"material/wifi-strength-1-lock-open.svg","material-wifi-strength-1-lock":"material/wifi-strength-1-lock.svg","material-wifi-strength-1":"material/wifi-strength-1.svg","material-wifi-strength-2-alert":"material/wifi-strength-2-alert.svg","material-wifi-strength-2-lock-open":"material/wifi-strength-2-lock-open.svg","material-wifi-strength-2-lock":"material/wifi-strength-2-lock.svg","material-wifi-strength-2":"material/wifi-strength-2.svg","material-wifi-strength-3-alert":"material/wifi-strength-3-alert.svg","material-wifi-strength-3-lock-open":"material/wifi-strength-3-lock-open.svg","material-wifi-strength-3-lock":"material/wifi-strength-3-lock.svg","material-wifi-strength-3":"material/wifi-strength-3.svg","material-wifi-strength-4-alert":"material/wifi-strength-4-alert.svg","material-wifi-strength-4-lock-open":"material/wifi-strength-4-lock-open.svg","material-wifi-strength-4-lock":"material/wifi-strength-4-lock.svg","material-wifi-strength-4":"material/wifi-strength-4.svg","material-wifi-strength-alert-outline":"material/wifi-strength-alert-outline.svg","material-wifi-strength-lock-open-outline":"material/wifi-strength-lock-open-outline.svg","material-wifi-strength-lock-outline":"material/wifi-strength-lock-outline.svg","material-wifi-strength-off-outline":"material/wifi-strength-off-outline.svg","material-wifi-strength-off":"material/wifi-strength-off.svg","material-wifi-strength-outline":"material/wifi-strength-outline.svg","material-wifi-sync":"material/wifi-sync.svg","material-wifi":"material/wifi.svg","material-wikipedia":"material/wikipedia.svg","material-wind-power-outline":"material/wind-power-outline.svg","material-wind-power":"material/wind-power.svg","material-wind-turbine-alert":"material/wind-turbine-alert.svg","material-wind-turbine-check":"material/wind-turbine-check.svg","material-wind-turbine":"material/wind-turbine.svg","material-window-close":"material/window-close.svg","material-window-closed-variant":"material/window-closed-variant.svg","material-window-closed":"material/window-closed.svg","material-window-maximize":"material/window-maximize.svg","material-window-minimize":"material/window-minimize.svg","material-window-open-variant":"material/window-open-variant.svg","material-window-open":"material/window-open.svg","material-window-restore":"material/window-restore.svg","material-window-shutter-alert":"material/window-shutter-alert.svg","material-window-shutter-auto":"material/window-shutter-auto.svg","material-window-shutter-cog":"material/window-shutter-cog.svg","material-window-shutter-open":"material/window-shutter-open.svg","material-window-shutter-settings":"material/window-shutter-settings.svg","material-window-shutter":"material/window-shutter.svg","material-windsock":"material/windsock.svg","material-wiper-wash-alert":"material/wiper-wash-alert.svg","material-wiper-wash":"material/wiper-wash.svg","material-wiper":"material/wiper.svg","material-wizard-hat":"material/wizard-hat.svg","material-wordpress":"material/wordpress.svg","material-wrap-disabled":"material/wrap-disabled.svg","material-wrap":"material/wrap.svg","material-wrench-check-outline":"material/wrench-check-outline.svg","material-wrench-check":"material/wrench-check.svg","material-wrench-clock-outline":"material/wrench-clock-outline.svg","material-wrench-clock":"material/wrench-clock.svg","material-wrench-cog-outline":"material/wrench-cog-outline.svg","material-wrench-cog":"material/wrench-cog.svg","material-wrench-outline":"material/wrench-outline.svg","material-wrench":"material/wrench.svg","material-xamarin":"material/xamarin.svg","material-xml":"material/xml.svg","material-xmpp":"material/xmpp.svg","material-yahoo":"material/yahoo.svg","material-yeast":"material/yeast.svg","material-yin-yang":"material/yin-yang.svg","material-yoga":"material/yoga.svg","material-youtube-gaming":"material/youtube-gaming.svg","material-youtube-studio":"material/youtube-studio.svg","material-youtube-subscription":"material/youtube-subscription.svg","material-youtube-tv":"material/youtube-tv.svg","material-youtube":"material/youtube.svg","material-yurt":"material/yurt.svg","material-z-wave":"material/z-wave.svg","material-zend":"material/zend.svg","material-zigbee":"material/zigbee.svg","material-zip-box-outline":"material/zip-box-outline.svg","material-zip-box":"material/zip-box.svg","material-zip-disk":"material/zip-disk.svg","material-zodiac-aquarius":"material/zodiac-aquarius.svg","material-zodiac-aries":"material/zodiac-aries.svg","material-zodiac-cancer":"material/zodiac-cancer.svg","material-zodiac-capricorn":"material/zodiac-capricorn.svg","material-zodiac-gemini":"material/zodiac-gemini.svg","material-zodiac-leo":"material/zodiac-leo.svg","material-zodiac-libra":"material/zodiac-libra.svg","material-zodiac-pisces":"material/zodiac-pisces.svg","material-zodiac-sagittarius":"material/zodiac-sagittarius.svg","material-zodiac-scorpio":"material/zodiac-scorpio.svg","material-zodiac-taurus":"material/zodiac-taurus.svg","material-zodiac-virgo":"material/zodiac-virgo.svg","octicons-accessibility-16":"octicons/accessibility-16.svg","octicons-accessibility-24":"octicons/accessibility-24.svg","octicons-accessibility-inset-16":"octicons/accessibility-inset-16.svg","octicons-accessibility-inset-24":"octicons/accessibility-inset-24.svg","octicons-ai-model-16":"octicons/ai-model-16.svg","octicons-ai-model-24":"octicons/ai-model-24.svg","octicons-alert-16":"octicons/alert-16.svg","octicons-alert-24":"octicons/alert-24.svg","octicons-alert-fill-12":"octicons/alert-fill-12.svg","octicons-alert-fill-16":"octicons/alert-fill-16.svg","octicons-alert-fill-24":"octicons/alert-fill-24.svg","octicons-apps-16":"octicons/apps-16.svg","octicons-apps-24":"octicons/apps-24.svg","octicons-archive-16":"octicons/archive-16.svg","octicons-archive-24":"octicons/archive-24.svg","octicons-arrow-both-16":"octicons/arrow-both-16.svg","octicons-arrow-both-24":"octicons/arrow-both-24.svg","octicons-arrow-down-16":"octicons/arrow-down-16.svg","octicons-arrow-down-24":"octicons/arrow-down-24.svg","octicons-arrow-down-left-16":"octicons/arrow-down-left-16.svg","octicons-arrow-down-left-24":"octicons/arrow-down-left-24.svg","octicons-arrow-down-right-16":"octicons/arrow-down-right-16.svg","octicons-arrow-down-right-24":"octicons/arrow-down-right-24.svg","octicons-arrow-left-16":"octicons/arrow-left-16.svg","octicons-arrow-left-24":"octicons/arrow-left-24.svg","octicons-arrow-right-16":"octicons/arrow-right-16.svg","octicons-arrow-right-24":"octicons/arrow-right-24.svg","octicons-arrow-switch-16":"octicons/arrow-switch-16.svg","octicons-arrow-switch-24":"octicons/arrow-switch-24.svg","octicons-arrow-up-16":"octicons/arrow-up-16.svg","octicons-arrow-up-24":"octicons/arrow-up-24.svg","octicons-arrow-up-left-16":"octicons/arrow-up-left-16.svg","octicons-arrow-up-left-24":"octicons/arrow-up-left-24.svg","octicons-arrow-up-right-16":"octicons/arrow-up-right-16.svg","octicons-arrow-up-right-24":"octicons/arrow-up-right-24.svg","octicons-beaker-16":"octicons/beaker-16.svg","octicons-beaker-24":"octicons/beaker-24.svg","octicons-bell-16":"octicons/bell-16.svg","octicons-bell-24":"octicons/bell-24.svg","octicons-bell-fill-16":"octicons/bell-fill-16.svg","octicons-bell-fill-24":"octicons/bell-fill-24.svg","octicons-bell-slash-16":"octicons/bell-slash-16.svg","octicons-bell-slash-24":"octicons/bell-slash-24.svg","octicons-blocked-16":"octicons/blocked-16.svg","octicons-blocked-24":"octicons/blocked-24.svg","octicons-bold-16":"octicons/bold-16.svg","octicons-bold-24":"octicons/bold-24.svg","octicons-book-16":"octicons/book-16.svg","octicons-book-24":"octicons/book-24.svg","octicons-bookmark-16":"octicons/bookmark-16.svg","octicons-bookmark-24":"octicons/bookmark-24.svg","octicons-bookmark-fill-24":"octicons/bookmark-fill-24.svg","octicons-bookmark-filled-16":"octicons/bookmark-filled-16.svg","octicons-bookmark-slash-16":"octicons/bookmark-slash-16.svg","octicons-bookmark-slash-24":"octicons/bookmark-slash-24.svg","octicons-bookmark-slash-fill-16":"octicons/bookmark-slash-fill-16.svg","octicons-bookmark-slash-fill-24":"octicons/bookmark-slash-fill-24.svg","octicons-briefcase-16":"octicons/briefcase-16.svg","octicons-briefcase-24":"octicons/briefcase-24.svg","octicons-broadcast-16":"octicons/broadcast-16.svg","octicons-broadcast-24":"octicons/broadcast-24.svg","octicons-browser-16":"octicons/browser-16.svg","octicons-browser-24":"octicons/browser-24.svg","octicons-bug-16":"octicons/bug-16.svg","octicons-bug-24":"octicons/bug-24.svg","octicons-cache-16":"octicons/cache-16.svg","octicons-cache-24":"octicons/cache-24.svg","octicons-calendar-16":"octicons/calendar-16.svg","octicons-calendar-24":"octicons/calendar-24.svg","octicons-check-16":"octicons/check-16.svg","octicons-check-24":"octicons/check-24.svg","octicons-check-circle-16":"octicons/check-circle-16.svg","octicons-check-circle-24":"octicons/check-circle-24.svg","octicons-check-circle-fill-12":"octicons/check-circle-fill-12.svg","octicons-check-circle-fill-16":"octicons/check-circle-fill-16.svg","octicons-check-circle-fill-24":"octicons/check-circle-fill-24.svg","octicons-checkbox-16":"octicons/checkbox-16.svg","octicons-checkbox-24":"octicons/checkbox-24.svg","octicons-checklist-16":"octicons/checklist-16.svg","octicons-checklist-24":"octicons/checklist-24.svg","octicons-chevron-down-12":"octicons/chevron-down-12.svg","octicons-chevron-down-16":"octicons/chevron-down-16.svg","octicons-chevron-down-24":"octicons/chevron-down-24.svg","octicons-chevron-left-12":"octicons/chevron-left-12.svg","octicons-chevron-left-16":"octicons/chevron-left-16.svg","octicons-chevron-left-24":"octicons/chevron-left-24.svg","octicons-chevron-right-12":"octicons/chevron-right-12.svg","octicons-chevron-right-16":"octicons/chevron-right-16.svg","octicons-chevron-right-24":"octicons/chevron-right-24.svg","octicons-chevron-up-12":"octicons/chevron-up-12.svg","octicons-chevron-up-16":"octicons/chevron-up-16.svg","octicons-chevron-up-24":"octicons/chevron-up-24.svg","octicons-circle-16":"octicons/circle-16.svg","octicons-circle-24":"octicons/circle-24.svg","octicons-circle-slash-16":"octicons/circle-slash-16.svg","octicons-circle-slash-24":"octicons/circle-slash-24.svg","octicons-clock-16":"octicons/clock-16.svg","octicons-clock-24":"octicons/clock-24.svg","octicons-clock-fill-16":"octicons/clock-fill-16.svg","octicons-clock-fill-24":"octicons/clock-fill-24.svg","octicons-cloud-16":"octicons/cloud-16.svg","octicons-cloud-24":"octicons/cloud-24.svg","octicons-cloud-offline-16":"octicons/cloud-offline-16.svg","octicons-cloud-offline-24":"octicons/cloud-offline-24.svg","octicons-code-16":"octicons/code-16.svg","octicons-code-24":"octicons/code-24.svg","octicons-code-of-conduct-16":"octicons/code-of-conduct-16.svg","octicons-code-of-conduct-24":"octicons/code-of-conduct-24.svg","octicons-code-review-16":"octicons/code-review-16.svg","octicons-code-review-24":"octicons/code-review-24.svg","octicons-code-square-16":"octicons/code-square-16.svg","octicons-code-square-24":"octicons/code-square-24.svg","octicons-codescan-16":"octicons/codescan-16.svg","octicons-codescan-24":"octicons/codescan-24.svg","octicons-codescan-checkmark-16":"octicons/codescan-checkmark-16.svg","octicons-codescan-checkmark-24":"octicons/codescan-checkmark-24.svg","octicons-codespaces-16":"octicons/codespaces-16.svg","octicons-codespaces-24":"octicons/codespaces-24.svg","octicons-columns-16":"octicons/columns-16.svg","octicons-columns-24":"octicons/columns-24.svg","octicons-command-palette-16":"octicons/command-palette-16.svg","octicons-command-palette-24":"octicons/command-palette-24.svg","octicons-comment-16":"octicons/comment-16.svg","octicons-comment-24":"octicons/comment-24.svg","octicons-comment-discussion-16":"octicons/comment-discussion-16.svg","octicons-comment-discussion-24":"octicons/comment-discussion-24.svg","octicons-container-16":"octicons/container-16.svg","octicons-container-24":"octicons/container-24.svg","octicons-copilot-16":"octicons/copilot-16.svg","octicons-copilot-24":"octicons/copilot-24.svg","octicons-copilot-48":"octicons/copilot-48.svg","octicons-copilot-96":"octicons/copilot-96.svg","octicons-copilot-error-16":"octicons/copilot-error-16.svg","octicons-copilot-warning-16":"octicons/copilot-warning-16.svg","octicons-copy-16":"octicons/copy-16.svg","octicons-copy-24":"octicons/copy-24.svg","octicons-cpu-16":"octicons/cpu-16.svg","octicons-cpu-24":"octicons/cpu-24.svg","octicons-credit-card-16":"octicons/credit-card-16.svg","octicons-credit-card-24":"octicons/credit-card-24.svg","octicons-cross-reference-16":"octicons/cross-reference-16.svg","octicons-cross-reference-24":"octicons/cross-reference-24.svg","octicons-dash-16":"octicons/dash-16.svg","octicons-dash-24":"octicons/dash-24.svg","octicons-database-16":"octicons/database-16.svg","octicons-database-24":"octicons/database-24.svg","octicons-dependabot-16":"octicons/dependabot-16.svg","octicons-dependabot-24":"octicons/dependabot-24.svg","octicons-desktop-download-16":"octicons/desktop-download-16.svg","octicons-desktop-download-24":"octicons/desktop-download-24.svg","octicons-device-camera-16":"octicons/device-camera-16.svg","octicons-device-camera-24":"octicons/device-camera-24.svg","octicons-device-camera-video-16":"octicons/device-camera-video-16.svg","octicons-device-camera-video-24":"octicons/device-camera-video-24.svg","octicons-device-desktop-16":"octicons/device-desktop-16.svg","octicons-device-desktop-24":"octicons/device-desktop-24.svg","octicons-device-mobile-16":"octicons/device-mobile-16.svg","octicons-device-mobile-24":"octicons/device-mobile-24.svg","octicons-devices-16":"octicons/devices-16.svg","octicons-devices-24":"octicons/devices-24.svg","octicons-diamond-16":"octicons/diamond-16.svg","octicons-diamond-24":"octicons/diamond-24.svg","octicons-diff-16":"octicons/diff-16.svg","octicons-diff-24":"octicons/diff-24.svg","octicons-diff-added-16":"octicons/diff-added-16.svg","octicons-diff-added-24":"octicons/diff-added-24.svg","octicons-diff-ignored-16":"octicons/diff-ignored-16.svg","octicons-diff-ignored-24":"octicons/diff-ignored-24.svg","octicons-diff-modified-16":"octicons/diff-modified-16.svg","octicons-diff-modified-24":"octicons/diff-modified-24.svg","octicons-diff-removed-16":"octicons/diff-removed-16.svg","octicons-diff-removed-24":"octicons/diff-removed-24.svg","octicons-diff-renamed-16":"octicons/diff-renamed-16.svg","octicons-diff-renamed-24":"octicons/diff-renamed-24.svg","octicons-discussion-closed-16":"octicons/discussion-closed-16.svg","octicons-discussion-closed-24":"octicons/discussion-closed-24.svg","octicons-discussion-duplicate-16":"octicons/discussion-duplicate-16.svg","octicons-discussion-duplicate-24":"octicons/discussion-duplicate-24.svg","octicons-discussion-outdated-16":"octicons/discussion-outdated-16.svg","octicons-discussion-outdated-24":"octicons/discussion-outdated-24.svg","octicons-dot-16":"octicons/dot-16.svg","octicons-dot-24":"octicons/dot-24.svg","octicons-dot-fill-16":"octicons/dot-fill-16.svg","octicons-dot-fill-24":"octicons/dot-fill-24.svg","octicons-download-16":"octicons/download-16.svg","octicons-download-24":"octicons/download-24.svg","octicons-duplicate-16":"octicons/duplicate-16.svg","octicons-duplicate-24":"octicons/duplicate-24.svg","octicons-ellipsis-16":"octicons/ellipsis-16.svg","octicons-ellipsis-24":"octicons/ellipsis-24.svg","octicons-eye-16":"octicons/eye-16.svg","octicons-eye-24":"octicons/eye-24.svg","octicons-eye-closed-16":"octicons/eye-closed-16.svg","octicons-eye-closed-24":"octicons/eye-closed-24.svg","octicons-feed-discussion-16":"octicons/feed-discussion-16.svg","octicons-feed-forked-16":"octicons/feed-forked-16.svg","octicons-feed-heart-16":"octicons/feed-heart-16.svg","octicons-feed-issue-closed-16":"octicons/feed-issue-closed-16.svg","octicons-feed-issue-draft-16":"octicons/feed-issue-draft-16.svg","octicons-feed-issue-open-16":"octicons/feed-issue-open-16.svg","octicons-feed-issue-reopen-16":"octicons/feed-issue-reopen-16.svg","octicons-feed-merged-16":"octicons/feed-merged-16.svg","octicons-feed-person-16":"octicons/feed-person-16.svg","octicons-feed-plus-16":"octicons/feed-plus-16.svg","octicons-feed-public-16":"octicons/feed-public-16.svg","octicons-feed-pull-request-closed-16":"octicons/feed-pull-request-closed-16.svg","octicons-feed-pull-request-draft-16":"octicons/feed-pull-request-draft-16.svg","octicons-feed-pull-request-open-16":"octicons/feed-pull-request-open-16.svg","octicons-feed-repo-16":"octicons/feed-repo-16.svg","octicons-feed-rocket-16":"octicons/feed-rocket-16.svg","octicons-feed-star-16":"octicons/feed-star-16.svg","octicons-feed-tag-16":"octicons/feed-tag-16.svg","octicons-feed-trophy-16":"octicons/feed-trophy-16.svg","octicons-file-16":"octicons/file-16.svg","octicons-file-24":"octicons/file-24.svg","octicons-file-added-16":"octicons/file-added-16.svg","octicons-file-added-24":"octicons/file-added-24.svg","octicons-file-badge-16":"octicons/file-badge-16.svg","octicons-file-badge-24":"octicons/file-badge-24.svg","octicons-file-binary-16":"octicons/file-binary-16.svg","octicons-file-binary-24":"octicons/file-binary-24.svg","octicons-file-code-16":"octicons/file-code-16.svg","octicons-file-code-24":"octicons/file-code-24.svg","octicons-file-diff-16":"octicons/file-diff-16.svg","octicons-file-diff-24":"octicons/file-diff-24.svg","octicons-file-directory-16":"octicons/file-directory-16.svg","octicons-file-directory-24":"octicons/file-directory-24.svg","octicons-file-directory-fill-16":"octicons/file-directory-fill-16.svg","octicons-file-directory-fill-24":"octicons/file-directory-fill-24.svg","octicons-file-directory-open-fill-16":"octicons/file-directory-open-fill-16.svg","octicons-file-directory-open-fill-24":"octicons/file-directory-open-fill-24.svg","octicons-file-directory-symlink-16":"octicons/file-directory-symlink-16.svg","octicons-file-directory-symlink-24":"octicons/file-directory-symlink-24.svg","octicons-file-media-16":"octicons/file-media-16.svg","octicons-file-media-24":"octicons/file-media-24.svg","octicons-file-moved-16":"octicons/file-moved-16.svg","octicons-file-moved-24":"octicons/file-moved-24.svg","octicons-file-removed-16":"octicons/file-removed-16.svg","octicons-file-removed-24":"octicons/file-removed-24.svg","octicons-file-submodule-16":"octicons/file-submodule-16.svg","octicons-file-submodule-24":"octicons/file-submodule-24.svg","octicons-file-symlink-file-16":"octicons/file-symlink-file-16.svg","octicons-file-symlink-file-24":"octicons/file-symlink-file-24.svg","octicons-file-zip-16":"octicons/file-zip-16.svg","octicons-file-zip-24":"octicons/file-zip-24.svg","octicons-filter-16":"octicons/filter-16.svg","octicons-filter-24":"octicons/filter-24.svg","octicons-filter-remove-16":"octicons/filter-remove-16.svg","octicons-filter-remove-24":"octicons/filter-remove-24.svg","octicons-fiscal-host-16":"octicons/fiscal-host-16.svg","octicons-fiscal-host-24":"octicons/fiscal-host-24.svg","octicons-flame-16":"octicons/flame-16.svg","octicons-flame-24":"octicons/flame-24.svg","octicons-fold-16":"octicons/fold-16.svg","octicons-fold-24":"octicons/fold-24.svg","octicons-fold-down-16":"octicons/fold-down-16.svg","octicons-fold-down-24":"octicons/fold-down-24.svg","octicons-fold-up-16":"octicons/fold-up-16.svg","octicons-fold-up-24":"octicons/fold-up-24.svg","octicons-gear-16":"octicons/gear-16.svg","octicons-gear-24":"octicons/gear-24.svg","octicons-gift-16":"octicons/gift-16.svg","octicons-gift-24":"octicons/gift-24.svg","octicons-git-branch-16":"octicons/git-branch-16.svg","octicons-git-branch-24":"octicons/git-branch-24.svg","octicons-git-commit-16":"octicons/git-commit-16.svg","octicons-git-commit-24":"octicons/git-commit-24.svg","octicons-git-compare-16":"octicons/git-compare-16.svg","octicons-git-compare-24":"octicons/git-compare-24.svg","octicons-git-merge-16":"octicons/git-merge-16.svg","octicons-git-merge-24":"octicons/git-merge-24.svg","octicons-git-merge-queue-16":"octicons/git-merge-queue-16.svg","octicons-git-merge-queue-24":"octicons/git-merge-queue-24.svg","octicons-git-pull-request-16":"octicons/git-pull-request-16.svg","octicons-git-pull-request-24":"octicons/git-pull-request-24.svg","octicons-git-pull-request-closed-16":"octicons/git-pull-request-closed-16.svg","octicons-git-pull-request-closed-24":"octicons/git-pull-request-closed-24.svg","octicons-git-pull-request-draft-16":"octicons/git-pull-request-draft-16.svg","octicons-git-pull-request-draft-24":"octicons/git-pull-request-draft-24.svg","octicons-globe-16":"octicons/globe-16.svg","octicons-globe-24":"octicons/globe-24.svg","octicons-goal-16":"octicons/goal-16.svg","octicons-goal-24":"octicons/goal-24.svg","octicons-grabber-16":"octicons/grabber-16.svg","octicons-grabber-24":"octicons/grabber-24.svg","octicons-graph-16":"octicons/graph-16.svg","octicons-graph-24":"octicons/graph-24.svg","octicons-hash-16":"octicons/hash-16.svg","octicons-hash-24":"octicons/hash-24.svg","octicons-heading-16":"octicons/heading-16.svg","octicons-heading-24":"octicons/heading-24.svg","octicons-heart-16":"octicons/heart-16.svg","octicons-heart-24":"octicons/heart-24.svg","octicons-heart-fill-16":"octicons/heart-fill-16.svg","octicons-heart-fill-24":"octicons/heart-fill-24.svg","octicons-history-16":"octicons/history-16.svg","octicons-history-24":"octicons/history-24.svg","octicons-home-16":"octicons/home-16.svg","octicons-home-24":"octicons/home-24.svg","octicons-home-fill-16":"octicons/home-fill-16.svg","octicons-home-fill-24":"octicons/home-fill-24.svg","octicons-horizontal-rule-16":"octicons/horizontal-rule-16.svg","octicons-horizontal-rule-24":"octicons/horizontal-rule-24.svg","octicons-hourglass-16":"octicons/hourglass-16.svg","octicons-hourglass-24":"octicons/hourglass-24.svg","octicons-hubot-16":"octicons/hubot-16.svg","octicons-hubot-24":"octicons/hubot-24.svg","octicons-id-badge-16":"octicons/id-badge-16.svg","octicons-id-badge-24":"octicons/id-badge-24.svg","octicons-image-16":"octicons/image-16.svg","octicons-image-24":"octicons/image-24.svg","octicons-inbox-16":"octicons/inbox-16.svg","octicons-inbox-24":"octicons/inbox-24.svg","octicons-infinity-16":"octicons/infinity-16.svg","octicons-infinity-24":"octicons/infinity-24.svg","octicons-info-16":"octicons/info-16.svg","octicons-info-24":"octicons/info-24.svg","octicons-issue-closed-16":"octicons/issue-closed-16.svg","octicons-issue-closed-24":"octicons/issue-closed-24.svg","octicons-issue-draft-16":"octicons/issue-draft-16.svg","octicons-issue-draft-24":"octicons/issue-draft-24.svg","octicons-issue-opened-16":"octicons/issue-opened-16.svg","octicons-issue-opened-24":"octicons/issue-opened-24.svg","octicons-issue-reopened-16":"octicons/issue-reopened-16.svg","octicons-issue-reopened-24":"octicons/issue-reopened-24.svg","octicons-issue-tracked-by-16":"octicons/issue-tracked-by-16.svg","octicons-issue-tracked-by-24":"octicons/issue-tracked-by-24.svg","octicons-issue-tracks-16":"octicons/issue-tracks-16.svg","octicons-issue-tracks-24":"octicons/issue-tracks-24.svg","octicons-italic-16":"octicons/italic-16.svg","octicons-italic-24":"octicons/italic-24.svg","octicons-iterations-16":"octicons/iterations-16.svg","octicons-iterations-24":"octicons/iterations-24.svg","octicons-kebab-horizontal-16":"octicons/kebab-horizontal-16.svg","octicons-kebab-horizontal-24":"octicons/kebab-horizontal-24.svg","octicons-key-16":"octicons/key-16.svg","octicons-key-24":"octicons/key-24.svg","octicons-key-asterisk-16":"octicons/key-asterisk-16.svg","octicons-key-asterisk-24":"octicons/key-asterisk-24.svg","octicons-law-16":"octicons/law-16.svg","octicons-law-24":"octicons/law-24.svg","octicons-light-bulb-16":"octicons/light-bulb-16.svg","octicons-light-bulb-24":"octicons/light-bulb-24.svg","octicons-link-16":"octicons/link-16.svg","octicons-link-24":"octicons/link-24.svg","octicons-link-external-16":"octicons/link-external-16.svg","octicons-link-external-24":"octicons/link-external-24.svg","octicons-list-ordered-16":"octicons/list-ordered-16.svg","octicons-list-ordered-24":"octicons/list-ordered-24.svg","octicons-list-unordered-16":"octicons/list-unordered-16.svg","octicons-list-unordered-24":"octicons/list-unordered-24.svg","octicons-location-16":"octicons/location-16.svg","octicons-location-24":"octicons/location-24.svg","octicons-lock-16":"octicons/lock-16.svg","octicons-lock-24":"octicons/lock-24.svg","octicons-log-16":"octicons/log-16.svg","octicons-log-24":"octicons/log-24.svg","octicons-logo-gist-16":"octicons/logo-gist-16.svg","octicons-logo-gist-24":"octicons/logo-gist-24.svg","octicons-logo-github-16":"octicons/logo-github-16.svg","octicons-logo-github-24":"octicons/logo-github-24.svg","octicons-mail-16":"octicons/mail-16.svg","octicons-mail-24":"octicons/mail-24.svg","octicons-mark-github-16":"octicons/mark-github-16.svg","octicons-mark-github-24":"octicons/mark-github-24.svg","octicons-markdown-16":"octicons/markdown-16.svg","octicons-markdown-24":"octicons/markdown-24.svg","octicons-megaphone-16":"octicons/megaphone-16.svg","octicons-megaphone-24":"octicons/megaphone-24.svg","octicons-mention-16":"octicons/mention-16.svg","octicons-mention-24":"octicons/mention-24.svg","octicons-meter-16":"octicons/meter-16.svg","octicons-meter-24":"octicons/meter-24.svg","octicons-milestone-16":"octicons/milestone-16.svg","octicons-milestone-24":"octicons/milestone-24.svg","octicons-mirror-16":"octicons/mirror-16.svg","octicons-mirror-24":"octicons/mirror-24.svg","octicons-moon-16":"octicons/moon-16.svg","octicons-moon-24":"octicons/moon-24.svg","octicons-mortar-board-16":"octicons/mortar-board-16.svg","octicons-mortar-board-24":"octicons/mortar-board-24.svg","octicons-move-to-bottom-16":"octicons/move-to-bottom-16.svg","octicons-move-to-bottom-24":"octicons/move-to-bottom-24.svg","octicons-move-to-end-16":"octicons/move-to-end-16.svg","octicons-move-to-end-24":"octicons/move-to-end-24.svg","octicons-move-to-start-16":"octicons/move-to-start-16.svg","octicons-move-to-start-24":"octicons/move-to-start-24.svg","octicons-move-to-top-16":"octicons/move-to-top-16.svg","octicons-move-to-top-24":"octicons/move-to-top-24.svg","octicons-multi-select-16":"octicons/multi-select-16.svg","octicons-multi-select-24":"octicons/multi-select-24.svg","octicons-mute-16":"octicons/mute-16.svg","octicons-mute-24":"octicons/mute-24.svg","octicons-no-entry-16":"octicons/no-entry-16.svg","octicons-no-entry-24":"octicons/no-entry-24.svg","octicons-no-entry-fill-12":"octicons/no-entry-fill-12.svg","octicons-north-star-16":"octicons/north-star-16.svg","octicons-north-star-24":"octicons/north-star-24.svg","octicons-note-16":"octicons/note-16.svg","octicons-note-24":"octicons/note-24.svg","octicons-number-16":"octicons/number-16.svg","octicons-number-24":"octicons/number-24.svg","octicons-organization-16":"octicons/organization-16.svg","octicons-organization-24":"octicons/organization-24.svg","octicons-package-16":"octicons/package-16.svg","octicons-package-24":"octicons/package-24.svg","octicons-package-dependencies-16":"octicons/package-dependencies-16.svg","octicons-package-dependencies-24":"octicons/package-dependencies-24.svg","octicons-package-dependents-16":"octicons/package-dependents-16.svg","octicons-package-dependents-24":"octicons/package-dependents-24.svg","octicons-paintbrush-16":"octicons/paintbrush-16.svg","octicons-paintbrush-24":"octicons/paintbrush-24.svg","octicons-paper-airplane-16":"octicons/paper-airplane-16.svg","octicons-paper-airplane-24":"octicons/paper-airplane-24.svg","octicons-paperclip-16":"octicons/paperclip-16.svg","octicons-paperclip-24":"octicons/paperclip-24.svg","octicons-passkey-fill-16":"octicons/passkey-fill-16.svg","octicons-passkey-fill-24":"octicons/passkey-fill-24.svg","octicons-paste-16":"octicons/paste-16.svg","octicons-paste-24":"octicons/paste-24.svg","octicons-pencil-16":"octicons/pencil-16.svg","octicons-pencil-24":"octicons/pencil-24.svg","octicons-people-16":"octicons/people-16.svg","octicons-people-24":"octicons/people-24.svg","octicons-person-16":"octicons/person-16.svg","octicons-person-24":"octicons/person-24.svg","octicons-person-add-16":"octicons/person-add-16.svg","octicons-person-add-24":"octicons/person-add-24.svg","octicons-person-fill-16":"octicons/person-fill-16.svg","octicons-person-fill-24":"octicons/person-fill-24.svg","octicons-pin-16":"octicons/pin-16.svg","octicons-pin-24":"octicons/pin-24.svg","octicons-pin-slash-16":"octicons/pin-slash-16.svg","octicons-pin-slash-24":"octicons/pin-slash-24.svg","octicons-pivot-column-16":"octicons/pivot-column-16.svg","octicons-pivot-column-24":"octicons/pivot-column-24.svg","octicons-play-16":"octicons/play-16.svg","octicons-play-24":"octicons/play-24.svg","octicons-plug-16":"octicons/plug-16.svg","octicons-plug-24":"octicons/plug-24.svg","octicons-plus-16":"octicons/plus-16.svg","octicons-plus-24":"octicons/plus-24.svg","octicons-plus-circle-16":"octicons/plus-circle-16.svg","octicons-plus-circle-24":"octicons/plus-circle-24.svg","octicons-project-16":"octicons/project-16.svg","octicons-project-24":"octicons/project-24.svg","octicons-project-roadmap-16":"octicons/project-roadmap-16.svg","octicons-project-roadmap-24":"octicons/project-roadmap-24.svg","octicons-project-symlink-16":"octicons/project-symlink-16.svg","octicons-project-symlink-24":"octicons/project-symlink-24.svg","octicons-project-template-16":"octicons/project-template-16.svg","octicons-project-template-24":"octicons/project-template-24.svg","octicons-pulse-16":"octicons/pulse-16.svg","octicons-pulse-24":"octicons/pulse-24.svg","octicons-question-16":"octicons/question-16.svg","octicons-question-24":"octicons/question-24.svg","octicons-quote-16":"octicons/quote-16.svg","octicons-quote-24":"octicons/quote-24.svg","octicons-read-16":"octicons/read-16.svg","octicons-read-24":"octicons/read-24.svg","octicons-redo-16":"octicons/redo-16.svg","octicons-redo-24":"octicons/redo-24.svg","octicons-rel-file-path-16":"octicons/rel-file-path-16.svg","octicons-rel-file-path-24":"octicons/rel-file-path-24.svg","octicons-reply-16":"octicons/reply-16.svg","octicons-reply-24":"octicons/reply-24.svg","octicons-repo-16":"octicons/repo-16.svg","octicons-repo-24":"octicons/repo-24.svg","octicons-repo-clone-16":"octicons/repo-clone-16.svg","octicons-repo-clone-24":"octicons/repo-clone-24.svg","octicons-repo-delete-24":"octicons/repo-delete-24.svg","octicons-repo-deleted-16":"octicons/repo-deleted-16.svg","octicons-repo-forked-16":"octicons/repo-forked-16.svg","octicons-repo-forked-24":"octicons/repo-forked-24.svg","octicons-repo-locked-16":"octicons/repo-locked-16.svg","octicons-repo-locked-24":"octicons/repo-locked-24.svg","octicons-repo-pull-16":"octicons/repo-pull-16.svg","octicons-repo-pull-24":"octicons/repo-pull-24.svg","octicons-repo-push-16":"octicons/repo-push-16.svg","octicons-repo-push-24":"octicons/repo-push-24.svg","octicons-repo-template-16":"octicons/repo-template-16.svg","octicons-repo-template-24":"octicons/repo-template-24.svg","octicons-report-16":"octicons/report-16.svg","octicons-report-24":"octicons/report-24.svg","octicons-rocket-16":"octicons/rocket-16.svg","octicons-rocket-24":"octicons/rocket-24.svg","octicons-rows-16":"octicons/rows-16.svg","octicons-rows-24":"octicons/rows-24.svg","octicons-rss-16":"octicons/rss-16.svg","octicons-rss-24":"octicons/rss-24.svg","octicons-ruby-16":"octicons/ruby-16.svg","octicons-ruby-24":"octicons/ruby-24.svg","octicons-screen-full-16":"octicons/screen-full-16.svg","octicons-screen-full-24":"octicons/screen-full-24.svg","octicons-screen-normal-16":"octicons/screen-normal-16.svg","octicons-screen-normal-24":"octicons/screen-normal-24.svg","octicons-search-16":"octicons/search-16.svg","octicons-search-24":"octicons/search-24.svg","octicons-server-16":"octicons/server-16.svg","octicons-server-24":"octicons/server-24.svg","octicons-share-16":"octicons/share-16.svg","octicons-share-24":"octicons/share-24.svg","octicons-share-android-16":"octicons/share-android-16.svg","octicons-share-android-24":"octicons/share-android-24.svg","octicons-shield-16":"octicons/shield-16.svg","octicons-shield-24":"octicons/shield-24.svg","octicons-shield-check-16":"octicons/shield-check-16.svg","octicons-shield-check-24":"octicons/shield-check-24.svg","octicons-shield-lock-16":"octicons/shield-lock-16.svg","octicons-shield-lock-24":"octicons/shield-lock-24.svg","octicons-shield-slash-16":"octicons/shield-slash-16.svg","octicons-shield-slash-24":"octicons/shield-slash-24.svg","octicons-shield-x-16":"octicons/shield-x-16.svg","octicons-shield-x-24":"octicons/shield-x-24.svg","octicons-sidebar-collapse-16":"octicons/sidebar-collapse-16.svg","octicons-sidebar-collapse-24":"octicons/sidebar-collapse-24.svg","octicons-sidebar-expand-16":"octicons/sidebar-expand-16.svg","octicons-sidebar-expand-24":"octicons/sidebar-expand-24.svg","octicons-sign-in-16":"octicons/sign-in-16.svg","octicons-sign-in-24":"octicons/sign-in-24.svg","octicons-sign-out-16":"octicons/sign-out-16.svg","octicons-sign-out-24":"octicons/sign-out-24.svg","octicons-single-select-16":"octicons/single-select-16.svg","octicons-single-select-24":"octicons/single-select-24.svg","octicons-skip-16":"octicons/skip-16.svg","octicons-skip-24":"octicons/skip-24.svg","octicons-skip-fill-16":"octicons/skip-fill-16.svg","octicons-skip-fill-24":"octicons/skip-fill-24.svg","octicons-sliders-16":"octicons/sliders-16.svg","octicons-sliders-24":"octicons/sliders-24.svg","octicons-smiley-16":"octicons/smiley-16.svg","octicons-smiley-24":"octicons/smiley-24.svg","octicons-sort-asc-16":"octicons/sort-asc-16.svg","octicons-sort-asc-24":"octicons/sort-asc-24.svg","octicons-sort-desc-16":"octicons/sort-desc-16.svg","octicons-sort-desc-24":"octicons/sort-desc-24.svg","octicons-sparkle-fill-16":"octicons/sparkle-fill-16.svg","octicons-sparkle-fill-24":"octicons/sparkle-fill-24.svg","octicons-sparkles-fill-16":"octicons/sparkles-fill-16.svg","octicons-sparkles-fill-24":"octicons/sparkles-fill-24.svg","octicons-sponsor-tiers-16":"octicons/sponsor-tiers-16.svg","octicons-sponsor-tiers-24":"octicons/sponsor-tiers-24.svg","octicons-square-16":"octicons/square-16.svg","octicons-square-24":"octicons/square-24.svg","octicons-square-fill-16":"octicons/square-fill-16.svg","octicons-square-fill-24":"octicons/square-fill-24.svg","octicons-squirrel-16":"octicons/squirrel-16.svg","octicons-squirrel-24":"octicons/squirrel-24.svg","octicons-stack-16":"octicons/stack-16.svg","octicons-stack-24":"octicons/stack-24.svg","octicons-star-16":"octicons/star-16.svg","octicons-star-24":"octicons/star-24.svg","octicons-star-fill-16":"octicons/star-fill-16.svg","octicons-star-fill-24":"octicons/star-fill-24.svg","octicons-stop-16":"octicons/stop-16.svg","octicons-stop-24":"octicons/stop-24.svg","octicons-stopwatch-16":"octicons/stopwatch-16.svg","octicons-stopwatch-24":"octicons/stopwatch-24.svg","octicons-strikethrough-16":"octicons/strikethrough-16.svg","octicons-strikethrough-24":"octicons/strikethrough-24.svg","octicons-sun-16":"octicons/sun-16.svg","octicons-sun-24":"octicons/sun-24.svg","octicons-sync-16":"octicons/sync-16.svg","octicons-sync-24":"octicons/sync-24.svg","octicons-tab-16":"octicons/tab-16.svg","octicons-tab-24":"octicons/tab-24.svg","octicons-tab-external-16":"octicons/tab-external-16.svg","octicons-tab-external-24":"octicons/tab-external-24.svg","octicons-table-16":"octicons/table-16.svg","octicons-table-24":"octicons/table-24.svg","octicons-tag-16":"octicons/tag-16.svg","octicons-tag-24":"octicons/tag-24.svg","octicons-tasklist-16":"octicons/tasklist-16.svg","octicons-tasklist-24":"octicons/tasklist-24.svg","octicons-telescope-16":"octicons/telescope-16.svg","octicons-telescope-24":"octicons/telescope-24.svg","octicons-telescope-fill-16":"octicons/telescope-fill-16.svg","octicons-telescope-fill-24":"octicons/telescope-fill-24.svg","octicons-terminal-16":"octicons/terminal-16.svg","octicons-terminal-24":"octicons/terminal-24.svg","octicons-three-bars-16":"octicons/three-bars-16.svg","octicons-three-bars-24":"octicons/three-bars-24.svg","octicons-thumbsdown-16":"octicons/thumbsdown-16.svg","octicons-thumbsdown-24":"octicons/thumbsdown-24.svg","octicons-thumbsup-16":"octicons/thumbsup-16.svg","octicons-thumbsup-24":"octicons/thumbsup-24.svg","octicons-tools-16":"octicons/tools-16.svg","octicons-tools-24":"octicons/tools-24.svg","octicons-tracked-by-closed-completed-16":"octicons/tracked-by-closed-completed-16.svg","octicons-tracked-by-closed-completed-24":"octicons/tracked-by-closed-completed-24.svg","octicons-tracked-by-closed-not-planned-16":"octicons/tracked-by-closed-not-planned-16.svg","octicons-tracked-by-closed-not-planned-24":"octicons/tracked-by-closed-not-planned-24.svg","octicons-trash-16":"octicons/trash-16.svg","octicons-trash-24":"octicons/trash-24.svg","octicons-triangle-down-16":"octicons/triangle-down-16.svg","octicons-triangle-down-24":"octicons/triangle-down-24.svg","octicons-triangle-left-16":"octicons/triangle-left-16.svg","octicons-triangle-left-24":"octicons/triangle-left-24.svg","octicons-triangle-right-16":"octicons/triangle-right-16.svg","octicons-triangle-right-24":"octicons/triangle-right-24.svg","octicons-triangle-up-16":"octicons/triangle-up-16.svg","octicons-triangle-up-24":"octicons/triangle-up-24.svg","octicons-trophy-16":"octicons/trophy-16.svg","octicons-trophy-24":"octicons/trophy-24.svg","octicons-typography-16":"octicons/typography-16.svg","octicons-typography-24":"octicons/typography-24.svg","octicons-undo-16":"octicons/undo-16.svg","octicons-undo-24":"octicons/undo-24.svg","octicons-unfold-16":"octicons/unfold-16.svg","octicons-unfold-24":"octicons/unfold-24.svg","octicons-unlink-16":"octicons/unlink-16.svg","octicons-unlink-24":"octicons/unlink-24.svg","octicons-unlock-16":"octicons/unlock-16.svg","octicons-unlock-24":"octicons/unlock-24.svg","octicons-unmute-16":"octicons/unmute-16.svg","octicons-unmute-24":"octicons/unmute-24.svg","octicons-unread-16":"octicons/unread-16.svg","octicons-unread-24":"octicons/unread-24.svg","octicons-unverified-16":"octicons/unverified-16.svg","octicons-unverified-24":"octicons/unverified-24.svg","octicons-upload-16":"octicons/upload-16.svg","octicons-upload-24":"octicons/upload-24.svg","octicons-verified-16":"octicons/verified-16.svg","octicons-verified-24":"octicons/verified-24.svg","octicons-versions-16":"octicons/versions-16.svg","octicons-versions-24":"octicons/versions-24.svg","octicons-video-16":"octicons/video-16.svg","octicons-video-24":"octicons/video-24.svg","octicons-webhook-16":"octicons/webhook-16.svg","octicons-workflow-16":"octicons/workflow-16.svg","octicons-workflow-24":"octicons/workflow-24.svg","octicons-x-12":"octicons/x-12.svg","octicons-x-16":"octicons/x-16.svg","octicons-x-24":"octicons/x-24.svg","octicons-x-circle-16":"octicons/x-circle-16.svg","octicons-x-circle-24":"octicons/x-circle-24.svg","octicons-x-circle-fill-12":"octicons/x-circle-fill-12.svg","octicons-x-circle-fill-16":"octicons/x-circle-fill-16.svg","octicons-x-circle-fill-24":"octicons/x-circle-fill-24.svg","octicons-zap-16":"octicons/zap-16.svg","octicons-zap-24":"octicons/zap-24.svg","octicons-zoom-in-16":"octicons/zoom-in-16.svg","octicons-zoom-in-24":"octicons/zoom-in-24.svg","octicons-zoom-out-16":"octicons/zoom-out-16.svg","octicons-zoom-out-24":"octicons/zoom-out-24.svg","simple-1001tracklists":"simple/1001tracklists.svg","simple-1and1":"simple/1and1.svg","simple-1dot1dot1dot1":"simple/1dot1dot1dot1.svg","simple-1panel":"simple/1panel.svg","simple-1password":"simple/1password.svg","simple-2fas":"simple/2fas.svg","simple-2k":"simple/2k.svg","simple-30secondsofcode":"simple/30secondsofcode.svg","simple-365datascience":"simple/365datascience.svg","simple-3m":"simple/3m.svg","simple-42":"simple/42.svg","simple-4chan":"simple/4chan.svg","simple-4d":"simple/4d.svg","simple-500px":"simple/500px.svg","simple-7zip":"simple/7zip.svg","simple-99designs":"simple/99designs.svg","simple-9gag":"simple/9gag.svg","simple-abbott":"simple/abbott.svg","simple-abbrobotstudio":"simple/abbrobotstudio.svg","simple-abbvie":"simple/abbvie.svg","simple-aboutdotme":"simple/aboutdotme.svg","simple-abstract":"simple/abstract.svg","simple-abusedotch":"simple/abusedotch.svg","simple-academia":"simple/academia.svg","simple-accenture":"simple/accenture.svg","simple-accusoft":"simple/accusoft.svg","simple-accuweather":"simple/accuweather.svg","simple-acer":"simple/acer.svg","simple-acm":"simple/acm.svg","simple-actigraph":"simple/actigraph.svg","simple-activision":"simple/activision.svg","simple-activitypub":"simple/activitypub.svg","simple-actix":"simple/actix.svg","simple-actualbudget":"simple/actualbudget.svg","simple-acura":"simple/acura.svg","simple-adafruit":"simple/adafruit.svg","simple-adblock":"simple/adblock.svg","simple-adblockplus":"simple/adblockplus.svg","simple-addydotio":"simple/addydotio.svg","simple-adguard":"simple/adguard.svg","simple-adidas":"simple/adidas.svg","simple-adminer":"simple/adminer.svg","simple-adonisjs":"simple/adonisjs.svg","simple-adp":"simple/adp.svg","simple-adroll":"simple/adroll.svg","simple-adventofcode":"simple/adventofcode.svg","simple-adyen":"simple/adyen.svg","simple-aegisauthenticator":"simple/aegisauthenticator.svg","simple-aerlingus":"simple/aerlingus.svg","simple-aeroflot":"simple/aeroflot.svg","simple-aeromexico":"simple/aeromexico.svg","simple-aerospike":"simple/aerospike.svg","simple-aew":"simple/aew.svg","simple-afdian":"simple/afdian.svg","simple-affine":"simple/affine.svg","simple-affinity":"simple/affinity.svg","simple-affinitydesigner":"simple/affinitydesigner.svg","simple-affinityphoto":"simple/affinityphoto.svg","simple-affinitypublisher":"simple/affinitypublisher.svg","simple-aframe":"simple/aframe.svg","simple-afterpay":"simple/afterpay.svg","simple-aftership":"simple/aftership.svg","simple-agora":"simple/agora.svg","simple-aib":"simple/aib.svg","simple-aidungeon":"simple/aidungeon.svg","simple-aiohttp":"simple/aiohttp.svg","simple-aiqfome":"simple/aiqfome.svg","simple-airasia":"simple/airasia.svg","simple-airbnb":"simple/airbnb.svg","simple-airbrake":"simple/airbrake.svg","simple-airbus":"simple/airbus.svg","simple-airbyte":"simple/airbyte.svg","simple-aircall":"simple/aircall.svg","simple-aircanada":"simple/aircanada.svg","simple-airchina":"simple/airchina.svg","simple-airfrance":"simple/airfrance.svg","simple-airindia":"simple/airindia.svg","simple-airplayaudio":"simple/airplayaudio.svg","simple-airplayvideo":"simple/airplayvideo.svg","simple-airserbia":"simple/airserbia.svg","simple-airtable":"simple/airtable.svg","simple-airtel":"simple/airtel.svg","simple-airtransat":"simple/airtransat.svg","simple-ajv":"simple/ajv.svg","simple-akamai":"simple/akamai.svg","simple-akasaair":"simple/akasaair.svg","simple-akaunting":"simple/akaunting.svg","simple-akiflow":"simple/akiflow.svg","simple-alacritty":"simple/alacritty.svg","simple-alamy":"simple/alamy.svg","simple-albertheijn":"simple/albertheijn.svg","simple-alby":"simple/alby.svg","simple-alchemy":"simple/alchemy.svg","simple-aldinord":"simple/aldinord.svg","simple-aldisud":"simple/aldisud.svg","simple-alfaromeo":"simple/alfaromeo.svg","simple-alfred":"simple/alfred.svg","simple-algolia":"simple/algolia.svg","simple-algorand":"simple/algorand.svg","simple-alibabacloud":"simple/alibabacloud.svg","simple-alibabadotcom":"simple/alibabadotcom.svg","simple-alienware":"simple/alienware.svg","simple-aliexpress":"simple/aliexpress.svg","simple-alipay":"simple/alipay.svg","simple-allegro":"simple/allegro.svg","simple-alliedmodders":"simple/alliedmodders.svg","simple-allocine":"simple/allocine.svg","simple-alltrails":"simple/alltrails.svg","simple-almalinux":"simple/almalinux.svg","simple-alpinedotjs":"simple/alpinedotjs.svg","simple-alpinelinux":"simple/alpinelinux.svg","simple-alternativeto":"simple/alternativeto.svg","simple-alteryx":"simple/alteryx.svg","simple-altiumdesigner":"simple/altiumdesigner.svg","simple-alwaysdata":"simple/alwaysdata.svg","simple-alx":"simple/alx.svg","simple-amazon":"simple/amazon.svg","simple-amazonalexa":"simple/amazonalexa.svg","simple-amazonapigateway":"simple/amazonapigateway.svg","simple-amazoncloudwatch":"simple/amazoncloudwatch.svg","simple-amazoncognito":"simple/amazoncognito.svg","simple-amazondocumentdb":"simple/amazondocumentdb.svg","simple-amazondynamodb":"simple/amazondynamodb.svg","simple-amazonec2":"simple/amazonec2.svg","simple-amazonecs":"simple/amazonecs.svg","simple-amazoneks":"simple/amazoneks.svg","simple-amazonelasticache":"simple/amazonelasticache.svg","simple-amazonfiretv":"simple/amazonfiretv.svg","simple-amazongames":"simple/amazongames.svg","simple-amazoniam":"simple/amazoniam.svg","simple-amazonlumberyard":"simple/amazonlumberyard.svg","simple-amazonluna":"simple/amazonluna.svg","simple-amazonmusic":"simple/amazonmusic.svg","simple-amazonpay":"simple/amazonpay.svg","simple-amazonprime":"simple/amazonprime.svg","simple-amazonrds":"simple/amazonrds.svg","simple-amazonredshift":"simple/amazonredshift.svg","simple-amazonroute53":"simple/amazonroute53.svg","simple-amazons3":"simple/amazons3.svg","simple-amazonsimpleemailservice":"simple/amazonsimpleemailservice.svg","simple-amazonsqs":"simple/amazonsqs.svg","simple-amazonwebservices":"simple/amazonwebservices.svg","simple-amd":"simple/amd.svg","simple-ameba":"simple/ameba.svg","simple-americanairlines":"simple/americanairlines.svg","simple-americanexpress":"simple/americanexpress.svg","simple-amg":"simple/amg.svg","simple-amp":"simple/amp.svg","simple-amul":"simple/amul.svg","simple-ana":"simple/ana.svg","simple-anaconda":"simple/anaconda.svg","simple-analogue":"simple/analogue.svg","simple-andela":"simple/andela.svg","simple-android":"simple/android.svg","simple-androidauto":"simple/androidauto.svg","simple-androidstudio":"simple/androidstudio.svg","simple-angular":"simple/angular.svg","simple-anilist":"simple/anilist.svg","simple-animalplanet":"simple/animalplanet.svg","simple-ankermake":"simple/ankermake.svg","simple-anki":"simple/anki.svg","simple-ansible":"simple/ansible.svg","simple-answer":"simple/answer.svg","simple-ansys":"simple/ansys.svg","simple-anta":"simple/anta.svg","simple-antdesign":"simple/antdesign.svg","simple-antena3":"simple/antena3.svg","simple-anthropic":"simple/anthropic.svg","simple-antv":"simple/antv.svg","simple-anycubic":"simple/anycubic.svg","simple-anydesk":"simple/anydesk.svg","simple-anytype":"simple/anytype.svg","simple-aol":"simple/aol.svg","simple-apache":"simple/apache.svg","simple-apacheairflow":"simple/apacheairflow.svg","simple-apacheant":"simple/apacheant.svg","simple-apachecassandra":"simple/apachecassandra.svg","simple-apachecloudstack":"simple/apachecloudstack.svg","simple-apachecordova":"simple/apachecordova.svg","simple-apachecouchdb":"simple/apachecouchdb.svg","simple-apachedolphinscheduler":"simple/apachedolphinscheduler.svg","simple-apachedruid":"simple/apachedruid.svg","simple-apacheecharts":"simple/apacheecharts.svg","simple-apacheflink":"simple/apacheflink.svg","simple-apachefreemarker":"simple/apachefreemarker.svg","simple-apachegroovy":"simple/apachegroovy.svg","simple-apacheguacamole":"simple/apacheguacamole.svg","simple-apachehadoop":"simple/apachehadoop.svg","simple-apachehbase":"simple/apachehbase.svg","simple-apachehive":"simple/apachehive.svg","simple-apachejmeter":"simple/apachejmeter.svg","simple-apachekafka":"simple/apachekafka.svg","simple-apachekylin":"simple/apachekylin.svg","simple-apachelucene":"simple/apachelucene.svg","simple-apachemaven":"simple/apachemaven.svg","simple-apachenetbeanside":"simple/apachenetbeanside.svg","simple-apachenifi":"simple/apachenifi.svg","simple-apacheopenoffice":"simple/apacheopenoffice.svg","simple-apacheparquet":"simple/apacheparquet.svg","simple-apachepulsar":"simple/apachepulsar.svg","simple-apacherocketmq":"simple/apacherocketmq.svg","simple-apachesolr":"simple/apachesolr.svg","simple-apachespark":"simple/apachespark.svg","simple-apachestorm":"simple/apachestorm.svg","simple-apachesuperset":"simple/apachesuperset.svg","simple-apachetomcat":"simple/apachetomcat.svg","simple-aparat":"simple/aparat.svg","simple-apifox":"simple/apifox.svg","simple-apmterminals":"simple/apmterminals.svg","simple-apollographql":"simple/apollographql.svg","simple-apostrophe":"simple/apostrophe.svg","simple-appgallery":"simple/appgallery.svg","simple-appian":"simple/appian.svg","simple-appium":"simple/appium.svg","simple-apple":"simple/apple.svg","simple-applearcade":"simple/applearcade.svg","simple-applemusic":"simple/applemusic.svg","simple-applenews":"simple/applenews.svg","simple-applepay":"simple/applepay.svg","simple-applepodcasts":"simple/applepodcasts.svg","simple-appletv":"simple/appletv.svg","simple-appsignal":"simple/appsignal.svg","simple-appsmith":"simple/appsmith.svg","simple-appstore":"simple/appstore.svg","simple-appveyor":"simple/appveyor.svg","simple-appwrite":"simple/appwrite.svg","simple-aqua":"simple/aqua.svg","simple-aral":"simple/aral.svg","simple-arangodb":"simple/arangodb.svg","simple-arc":"simple/arc.svg","simple-arcgis":"simple/arcgis.svg","simple-archicad":"simple/archicad.svg","simple-archiveofourown":"simple/archiveofourown.svg","simple-archlinux":"simple/archlinux.svg","simple-ardour":"simple/ardour.svg","simple-arduino":"simple/arduino.svg","simple-argo":"simple/argo.svg","simple-argos":"simple/argos.svg","simple-ariakit":"simple/ariakit.svg","simple-arkecosystem":"simple/arkecosystem.svg","simple-arlo":"simple/arlo.svg","simple-arm":"simple/arm.svg","simple-armkeil":"simple/armkeil.svg","simple-arstechnica":"simple/arstechnica.svg","simple-artifacthub":"simple/artifacthub.svg","simple-artixlinux":"simple/artixlinux.svg","simple-artstation":"simple/artstation.svg","simple-arxiv":"simple/arxiv.svg","simple-asahilinux":"simple/asahilinux.svg","simple-asana":"simple/asana.svg","simple-asciidoctor":"simple/asciidoctor.svg","simple-asciinema":"simple/asciinema.svg","simple-asda":"simple/asda.svg","simple-aseprite":"simple/aseprite.svg","simple-assemblyscript":"simple/assemblyscript.svg","simple-asterisk":"simple/asterisk.svg","simple-astonmartin":"simple/astonmartin.svg","simple-astra":"simple/astra.svg","simple-astral":"simple/astral.svg","simple-astro":"simple/astro.svg","simple-asus":"simple/asus.svg","simple-atandt":"simple/atandt.svg","simple-atari":"simple/atari.svg","simple-atlasos":"simple/atlasos.svg","simple-atlassian":"simple/atlassian.svg","simple-auchan":"simple/auchan.svg","simple-audacity":"simple/audacity.svg","simple-audi":"simple/audi.svg","simple-audible":"simple/audible.svg","simple-audiobookshelf":"simple/audiobookshelf.svg","simple-audioboom":"simple/audioboom.svg","simple-audiomack":"simple/audiomack.svg","simple-audiotechnica":"simple/audiotechnica.svg","simple-aurelia":"simple/aurelia.svg","simple-auth0":"simple/auth0.svg","simple-authelia":"simple/authelia.svg","simple-authentik":"simple/authentik.svg","simple-authy":"simple/authy.svg","simple-autocad":"simple/autocad.svg","simple-autocannon":"simple/autocannon.svg","simple-autodesk":"simple/autodesk.svg","simple-autodeskmaya":"simple/autodeskmaya.svg","simple-autodeskrevit":"simple/autodeskrevit.svg","simple-autohotkey":"simple/autohotkey.svg","simple-autoit":"simple/autoit.svg","simple-automattic":"simple/automattic.svg","simple-autoprefixer":"simple/autoprefixer.svg","simple-autozone":"simple/autozone.svg","simple-avajs":"simple/avajs.svg","simple-avast":"simple/avast.svg","simple-avianca":"simple/avianca.svg","simple-avira":"simple/avira.svg","simple-awesomelists":"simple/awesomelists.svg","simple-awesomewm":"simple/awesomewm.svg","simple-awsamplify":"simple/awsamplify.svg","simple-awselasticloadbalancing":"simple/awselasticloadbalancing.svg","simple-awsfargate":"simple/awsfargate.svg","simple-awslambda":"simple/awslambda.svg","simple-awsorganizations":"simple/awsorganizations.svg","simple-awssecretsmanager":"simple/awssecretsmanager.svg","simple-awwwards":"simple/awwwards.svg","simple-axios":"simple/axios.svg","simple-babel":"simple/babel.svg","simple-babelio":"simple/babelio.svg","simple-babylondotjs":"simple/babylondotjs.svg","simple-backblaze":"simple/backblaze.svg","simple-backbone":"simple/backbone.svg","simple-backbonedotjs":"simple/backbonedotjs.svg","simple-backendless":"simple/backendless.svg","simple-backstage":"simple/backstage.svg","simple-badoo":"simple/badoo.svg","simple-baidu":"simple/baidu.svg","simple-bakalari":"simple/bakalari.svg","simple-bamboo":"simple/bamboo.svg","simple-bambulab":"simple/bambulab.svg","simple-bandcamp":"simple/bandcamp.svg","simple-bandlab":"simple/bandlab.svg","simple-bandrautomation":"simple/bandrautomation.svg","simple-bandsintown":"simple/bandsintown.svg","simple-bankofamerica":"simple/bankofamerica.svg","simple-barclays":"simple/barclays.svg","simple-baremetrics":"simple/baremetrics.svg","simple-barmenia":"simple/barmenia.svg","simple-basecamp":"simple/basecamp.svg","simple-baserow":"simple/baserow.svg","simple-basicattentiontoken":"simple/basicattentiontoken.svg","simple-bastyon":"simple/bastyon.svg","simple-bat":"simple/bat.svg","simple-bata":"simple/bata.svg","simple-battledotnet":"simple/battledotnet.svg","simple-bazel":"simple/bazel.svg","simple-beatport":"simple/beatport.svg","simple-beats":"simple/beats.svg","simple-beatsbydre":"simple/beatsbydre.svg","simple-beatstars":"simple/beatstars.svg","simple-beekeeperstudio":"simple/beekeeperstudio.svg","simple-behance":"simple/behance.svg","simple-beijingsubway":"simple/beijingsubway.svg","simple-bem":"simple/bem.svg","simple-bentley":"simple/bentley.svg","simple-bento":"simple/bento.svg","simple-bentobox":"simple/bentobox.svg","simple-bentoml":"simple/bentoml.svg","simple-bereal":"simple/bereal.svg","simple-betfair":"simple/betfair.svg","simple-betterdiscord":"simple/betterdiscord.svg","simple-betterstack":"simple/betterstack.svg","simple-bevy":"simple/bevy.svg","simple-bigbasket":"simple/bigbasket.svg","simple-bigbluebutton":"simple/bigbluebutton.svg","simple-bigcartel":"simple/bigcartel.svg","simple-bigcommerce":"simple/bigcommerce.svg","simple-bilibili":"simple/bilibili.svg","simple-billboard":"simple/billboard.svg","simple-bim":"simple/bim.svg","simple-binance":"simple/binance.svg","simple-biolink":"simple/biolink.svg","simple-biome":"simple/biome.svg","simple-bisecthosting":"simple/bisecthosting.svg","simple-bit":"simple/bit.svg","simple-bitbucket":"simple/bitbucket.svg","simple-bitcoin":"simple/bitcoin.svg","simple-bitcoincash":"simple/bitcoincash.svg","simple-bitcoinsv":"simple/bitcoinsv.svg","simple-bitcomet":"simple/bitcomet.svg","simple-bitdefender":"simple/bitdefender.svg","simple-bitly":"simple/bitly.svg","simple-bitrise":"simple/bitrise.svg","simple-bittorrent":"simple/bittorrent.svg","simple-bitwarden":"simple/bitwarden.svg","simple-bitwig":"simple/bitwig.svg","simple-blackberry":"simple/blackberry.svg","simple-blackmagicdesign":"simple/blackmagicdesign.svg","simple-blazemeter":"simple/blazemeter.svg","simple-blazor":"simple/blazor.svg","simple-blender":"simple/blender.svg","simple-blockbench":"simple/blockbench.svg","simple-blockchaindotcom":"simple/blockchaindotcom.svg","simple-blogger":"simple/blogger.svg","simple-bloglovin":"simple/bloglovin.svg","simple-blueprint":"simple/blueprint.svg","simple-bluesky":"simple/bluesky.svg","simple-bluesound":"simple/bluesound.svg","simple-bluetooth":"simple/bluetooth.svg","simple-bmcsoftware":"simple/bmcsoftware.svg","simple-bmw":"simple/bmw.svg","simple-bnbchain":"simple/bnbchain.svg","simple-boardgamegeek":"simple/boardgamegeek.svg","simple-boat":"simple/boat.svg","simple-boehringeringelheim":"simple/boehringeringelheim.svg","simple-boeing":"simple/boeing.svg","simple-bombardier":"simple/bombardier.svg","simple-bookalope":"simple/bookalope.svg","simple-bookbub":"simple/bookbub.svg","simple-bookmeter":"simple/bookmeter.svg","simple-bookmyshow":"simple/bookmyshow.svg","simple-bookstack":"simple/bookstack.svg","simple-boost":"simple/boost.svg","simple-boosty":"simple/boosty.svg","simple-boots":"simple/boots.svg","simple-bootstrap":"simple/bootstrap.svg","simple-borgbackup":"simple/borgbackup.svg","simple-bosch":"simple/bosch.svg","simple-bose":"simple/bose.svg","simple-botblecms":"simple/botblecms.svg","simple-boulanger":"simple/boulanger.svg","simple-bower":"simple/bower.svg","simple-box":"simple/box.svg","simple-boxysvg":"simple/boxysvg.svg","simple-braintree":"simple/braintree.svg","simple-brandfolder":"simple/brandfolder.svg","simple-brave":"simple/brave.svg","simple-breaker":"simple/breaker.svg","simple-brenntag":"simple/brenntag.svg","simple-brevo":"simple/brevo.svg","simple-brex":"simple/brex.svg","simple-bricks":"simple/bricks.svg","simple-britishairways":"simple/britishairways.svg","simple-broadcom":"simple/broadcom.svg","simple-bruno":"simple/bruno.svg","simple-bsd":"simple/bsd.svg","simple-bspwm":"simple/bspwm.svg","simple-bt":"simple/bt.svg","simple-buddy":"simple/buddy.svg","simple-budibase":"simple/budibase.svg","simple-buefy":"simple/buefy.svg","simple-buffer":"simple/buffer.svg","simple-bugatti":"simple/bugatti.svg","simple-bugcrowd":"simple/bugcrowd.svg","simple-bugsnag":"simple/bugsnag.svg","simple-buhl":"simple/buhl.svg","simple-buildkite":"simple/buildkite.svg","simple-builtbybit":"simple/builtbybit.svg","simple-bukalapak":"simple/bukalapak.svg","simple-bulma":"simple/bulma.svg","simple-bun":"simple/bun.svg","simple-bungie":"simple/bungie.svg","simple-bunq":"simple/bunq.svg","simple-burgerking":"simple/burgerking.svg","simple-burpsuite":"simple/burpsuite.svg","simple-burton":"simple/burton.svg","simple-buymeacoffee":"simple/buymeacoffee.svg","simple-buysellads":"simple/buysellads.svg","simple-buzzfeed":"simple/buzzfeed.svg","simple-bvg":"simple/bvg.svg","simple-byjus":"simple/byjus.svg","simple-bytedance":"simple/bytedance.svg","simple-c":"simple/c.svg","simple-cachet":"simple/cachet.svg","simple-caddy":"simple/caddy.svg","simple-cadillac":"simple/cadillac.svg","simple-cafepress":"simple/cafepress.svg","simple-cairographics":"simple/cairographics.svg","simple-cairometro":"simple/cairometro.svg","simple-caixabank":"simple/caixabank.svg","simple-cakephp":"simple/cakephp.svg","simple-caldotcom":"simple/caldotcom.svg","simple-calendly":"simple/calendly.svg","simple-calibreweb":"simple/calibreweb.svg","simple-campaignmonitor":"simple/campaignmonitor.svg","simple-camunda":"simple/camunda.svg","simple-canonical":"simple/canonical.svg","simple-canva":"simple/canva.svg","simple-canvas":"simple/canvas.svg","simple-capacitor":"simple/capacitor.svg","simple-caprover":"simple/caprover.svg","simple-cardano":"simple/cardano.svg","simple-carlsberggroup":"simple/carlsberggroup.svg","simple-carrd":"simple/carrd.svg","simple-carrefour":"simple/carrefour.svg","simple-carthrottle":"simple/carthrottle.svg","simple-carto":"simple/carto.svg","simple-cashapp":"simple/cashapp.svg","simple-castbox":"simple/castbox.svg","simple-castorama":"simple/castorama.svg","simple-castro":"simple/castro.svg","simple-caterpillar":"simple/caterpillar.svg","simple-cbc":"simple/cbc.svg","simple-cbs":"simple/cbs.svg","simple-ccc":"simple/ccc.svg","simple-ccleaner":"simple/ccleaner.svg","simple-cdprojekt":"simple/cdprojekt.svg","simple-ce":"simple/ce.svg","simple-celery":"simple/celery.svg","simple-celestron":"simple/celestron.svg","simple-centos":"simple/centos.svg","simple-ceph":"simple/ceph.svg","simple-cesium":"simple/cesium.svg","simple-chai":"simple/chai.svg","simple-chainguard":"simple/chainguard.svg","simple-chainlink":"simple/chainlink.svg","simple-chakraui":"simple/chakraui.svg","simple-channel4":"simple/channel4.svg","simple-charles":"simple/charles.svg","simple-chartdotjs":"simple/chartdotjs.svg","simple-chartmogul":"simple/chartmogul.svg","simple-chase":"simple/chase.svg","simple-chatbot":"simple/chatbot.svg","simple-chatwoot":"simple/chatwoot.svg","simple-checkio":"simple/checkio.svg","simple-checkmarx":"simple/checkmarx.svg","simple-checkmk":"simple/checkmk.svg","simple-chedraui":"simple/chedraui.svg","simple-cheerio":"simple/cheerio.svg","simple-chef":"simple/chef.svg","simple-chemex":"simple/chemex.svg","simple-chessdotcom":"simple/chessdotcom.svg","simple-chevrolet":"simple/chevrolet.svg","simple-chianetwork":"simple/chianetwork.svg","simple-chinaeasternairlines":"simple/chinaeasternairlines.svg","simple-chinasouthernairlines":"simple/chinasouthernairlines.svg","simple-chocolatey":"simple/chocolatey.svg","simple-chromatic":"simple/chromatic.svg","simple-chromecast":"simple/chromecast.svg","simple-chromewebstore":"simple/chromewebstore.svg","simple-chrysler":"simple/chrysler.svg","simple-chupachups":"simple/chupachups.svg","simple-cilium":"simple/cilium.svg","simple-cinema4d":"simple/cinema4d.svg","simple-cinnamon":"simple/cinnamon.svg","simple-circle":"simple/circle.svg","simple-circleci":"simple/circleci.svg","simple-circuitverse":"simple/circuitverse.svg","simple-cirrusci":"simple/cirrusci.svg","simple-cisco":"simple/cisco.svg","simple-citrix":"simple/citrix.svg","simple-citroen":"simple/citroen.svg","simple-civicrm":"simple/civicrm.svg","simple-civo":"simple/civo.svg","simple-clarifai":"simple/clarifai.svg","simple-claris":"simple/claris.svg","simple-clarivate":"simple/clarivate.svg","simple-claude":"simple/claude.svg","simple-clerk":"simple/clerk.svg","simple-clevercloud":"simple/clevercloud.svg","simple-clickhouse":"simple/clickhouse.svg","simple-clickup":"simple/clickup.svg","simple-clion":"simple/clion.svg","simple-clockify":"simple/clockify.svg","simple-clojure":"simple/clojure.svg","simple-cloud66":"simple/cloud66.svg","simple-cloudbees":"simple/cloudbees.svg","simple-cloudcannon":"simple/cloudcannon.svg","simple-cloudera":"simple/cloudera.svg","simple-cloudflare":"simple/cloudflare.svg","simple-cloudflarepages":"simple/cloudflarepages.svg","simple-cloudflareworkers":"simple/cloudflareworkers.svg","simple-cloudfoundry":"simple/cloudfoundry.svg","simple-cloudinary":"simple/cloudinary.svg","simple-cloudron":"simple/cloudron.svg","simple-cloudsmith":"simple/cloudsmith.svg","simple-cloudways":"simple/cloudways.svg","simple-clubforce":"simple/clubforce.svg","simple-clubhouse":"simple/clubhouse.svg","simple-clyp":"simple/clyp.svg","simple-cmake":"simple/cmake.svg","simple-cncf":"simple/cncf.svg","simple-cnet":"simple/cnet.svg","simple-cnn":"simple/cnn.svg","simple-cocacola":"simple/cocacola.svg","simple-cockpit":"simple/cockpit.svg","simple-cockroachlabs":"simple/cockroachlabs.svg","simple-cocoapods":"simple/cocoapods.svg","simple-cocos":"simple/cocos.svg","simple-coda":"simple/coda.svg","simple-codacy":"simple/codacy.svg","simple-codeberg":"simple/codeberg.svg","simple-codeblocks":"simple/codeblocks.svg","simple-codecademy":"simple/codecademy.svg","simple-codeceptjs":"simple/codeceptjs.svg","simple-codechef":"simple/codechef.svg","simple-codeclimate":"simple/codeclimate.svg","simple-codecov":"simple/codecov.svg","simple-codecrafters":"simple/codecrafters.svg","simple-codefactor":"simple/codefactor.svg","simple-codeforces":"simple/codeforces.svg","simple-codefresh":"simple/codefresh.svg","simple-codeigniter":"simple/codeigniter.svg","simple-codeium":"simple/codeium.svg","simple-codemagic":"simple/codemagic.svg","simple-codementor":"simple/codementor.svg","simple-codemirror":"simple/codemirror.svg","simple-codenewbie":"simple/codenewbie.svg","simple-codepen":"simple/codepen.svg","simple-codeproject":"simple/codeproject.svg","simple-coder":"simple/coder.svg","simple-codersrank":"simple/codersrank.svg","simple-coderwall":"simple/coderwall.svg","simple-codesandbox":"simple/codesandbox.svg","simple-codeship":"simple/codeship.svg","simple-codesignal":"simple/codesignal.svg","simple-codestream":"simple/codestream.svg","simple-codewars":"simple/codewars.svg","simple-codingame":"simple/codingame.svg","simple-codingninjas":"simple/codingninjas.svg","simple-codio":"simple/codio.svg","simple-coffeescript":"simple/coffeescript.svg","simple-coggle":"simple/coggle.svg","simple-cognizant":"simple/cognizant.svg","simple-cohost":"simple/cohost.svg","simple-coinbase":"simple/coinbase.svg","simple-coinmarketcap":"simple/coinmarketcap.svg","simple-collaboraonline":"simple/collaboraonline.svg","simple-comicfury":"simple/comicfury.svg","simple-comma":"simple/comma.svg","simple-commerzbank":"simple/commerzbank.svg","simple-commitlint":"simple/commitlint.svg","simple-commodore":"simple/commodore.svg","simple-commonlisp":"simple/commonlisp.svg","simple-commonworkflowlanguage":"simple/commonworkflowlanguage.svg","simple-compilerexplorer":"simple/compilerexplorer.svg","simple-composer":"simple/composer.svg","simple-comptia":"simple/comptia.svg","simple-comsol":"simple/comsol.svg","simple-conan":"simple/conan.svg","simple-concourse":"simple/concourse.svg","simple-condaforge":"simple/condaforge.svg","simple-conekta":"simple/conekta.svg","simple-confluence":"simple/confluence.svg","simple-construct3":"simple/construct3.svg","simple-consul":"simple/consul.svg","simple-contabo":"simple/contabo.svg","simple-contactlesspayment":"simple/contactlesspayment.svg","simple-containerd":"simple/containerd.svg","simple-contao":"simple/contao.svg","simple-contentful":"simple/contentful.svg","simple-contentstack":"simple/contentstack.svg","simple-continente":"simple/continente.svg","simple-contributorcovenant":"simple/contributorcovenant.svg","simple-conventionalcommits":"simple/conventionalcommits.svg","simple-convertio":"simple/convertio.svg","simple-cookiecutter":"simple/cookiecutter.svg","simple-coolermaster":"simple/coolermaster.svg","simple-coop":"simple/coop.svg","simple-copaairlines":"simple/copaairlines.svg","simple-coppel":"simple/coppel.svg","simple-cora":"simple/cora.svg","simple-coreldraw":"simple/coreldraw.svg","simple-coronaengine":"simple/coronaengine.svg","simple-coronarenderer":"simple/coronarenderer.svg","simple-corsair":"simple/corsair.svg","simple-couchbase":"simple/couchbase.svg","simple-counterstrike":"simple/counterstrike.svg","simple-countingworkspro":"simple/countingworkspro.svg","simple-coursera":"simple/coursera.svg","simple-coveralls":"simple/coveralls.svg","simple-coze":"simple/coze.svg","simple-cpanel":"simple/cpanel.svg","simple-cplusplus":"simple/cplusplus.svg","simple-cplusplusbuilder":"simple/cplusplusbuilder.svg","simple-craftcms":"simple/craftcms.svg","simple-craftsman":"simple/craftsman.svg","simple-cratedb":"simple/cratedb.svg","simple-crayon":"simple/crayon.svg","simple-creality":"simple/creality.svg","simple-createreactapp":"simple/createreactapp.svg","simple-creativecommons":"simple/creativecommons.svg","simple-creativetechnology":"simple/creativetechnology.svg","simple-credly":"simple/credly.svg","simple-crehana":"simple/crehana.svg","simple-crewai":"simple/crewai.svg","simple-crewunited":"simple/crewunited.svg","simple-criticalrole":"simple/criticalrole.svg","simple-crowdin":"simple/crowdin.svg","simple-crowdsource":"simple/crowdsource.svg","simple-crunchbase":"simple/crunchbase.svg","simple-crunchyroll":"simple/crunchyroll.svg","simple-cryengine":"simple/cryengine.svg","simple-cryptomator":"simple/cryptomator.svg","simple-cryptpad":"simple/cryptpad.svg","simple-crystal":"simple/crystal.svg","simple-csdn":"simple/csdn.svg","simple-css":"simple/css.svg","simple-css3":"simple/css3.svg","simple-cssdesignawards":"simple/cssdesignawards.svg","simple-cssmodules":"simple/cssmodules.svg","simple-csswizardry":"simple/csswizardry.svg","simple-cts":"simple/cts.svg","simple-cucumber":"simple/cucumber.svg","simple-cultura":"simple/cultura.svg","simple-curl":"simple/curl.svg","simple-curseforge":"simple/curseforge.svg","simple-customink":"simple/customink.svg","simple-cyberdefenders":"simple/cyberdefenders.svg","simple-cycling74":"simple/cycling74.svg","simple-cypress":"simple/cypress.svg","simple-cytoscapedotjs":"simple/cytoscapedotjs.svg","simple-d":"simple/d.svg","simple-d3":"simple/d3.svg","simple-dacia":"simple/dacia.svg","simple-daf":"simple/daf.svg","simple-dailydotdev":"simple/dailydotdev.svg","simple-dailymotion":"simple/dailymotion.svg","simple-daisyui":"simple/daisyui.svg","simple-dapr":"simple/dapr.svg","simple-darkreader":"simple/darkreader.svg","simple-dart":"simple/dart.svg","simple-darty":"simple/darty.svg","simple-daserste":"simple/daserste.svg","simple-dash":"simple/dash.svg","simple-dashlane":"simple/dashlane.svg","simple-dask":"simple/dask.svg","simple-dassaultsystemes":"simple/dassaultsystemes.svg","simple-databricks":"simple/databricks.svg","simple-datacamp":"simple/datacamp.svg","simple-datadog":"simple/datadog.svg","simple-datadotai":"simple/datadotai.svg","simple-datagrip":"simple/datagrip.svg","simple-dataiku":"simple/dataiku.svg","simple-datastax":"simple/datastax.svg","simple-datefns":"simple/datefns.svg","simple-datev":"simple/datev.svg","simple-datocms":"simple/datocms.svg","simple-datto":"simple/datto.svg","simple-davinciresolve":"simple/davinciresolve.svg","simple-dazhongdianping":"simple/dazhongdianping.svg","simple-dazn":"simple/dazn.svg","simple-dbeaver":"simple/dbeaver.svg","simple-dblp":"simple/dblp.svg","simple-dbt":"simple/dbt.svg","simple-dcentertainment":"simple/dcentertainment.svg","simple-debian":"simple/debian.svg","simple-debridlink":"simple/debridlink.svg","simple-decapcms":"simple/decapcms.svg","simple-decentraland":"simple/decentraland.svg","simple-dedge":"simple/dedge.svg","simple-deepcool":"simple/deepcool.svg","simple-deepgram":"simple/deepgram.svg","simple-deepin":"simple/deepin.svg","simple-deepl":"simple/deepl.svg","simple-deepnote":"simple/deepnote.svg","simple-deliveroo":"simple/deliveroo.svg","simple-dell":"simple/dell.svg","simple-delonghi":"simple/delonghi.svg","simple-delphi":"simple/delphi.svg","simple-delta":"simple/delta.svg","simple-deluge":"simple/deluge.svg","simple-deno":"simple/deno.svg","simple-denon":"simple/denon.svg","simple-dependabot":"simple/dependabot.svg","simple-dependencycheck":"simple/dependencycheck.svg","simple-depositphotos":"simple/depositphotos.svg","simple-derspiegel":"simple/derspiegel.svg","simple-deutschebahn":"simple/deutschebahn.svg","simple-deutschebank":"simple/deutschebank.svg","simple-deutschepost":"simple/deutschepost.svg","simple-deutschetelekom":"simple/deutschetelekom.svg","simple-deutschewelle":"simple/deutschewelle.svg","simple-devdotto":"simple/devdotto.svg","simple-devexpress":"simple/devexpress.svg","simple-deviantart":"simple/deviantart.svg","simple-devpost":"simple/devpost.svg","simple-devrant":"simple/devrant.svg","simple-dgraph":"simple/dgraph.svg","simple-dhl":"simple/dhl.svg","simple-diagramsdotnet":"simple/diagramsdotnet.svg","simple-dialogflow":"simple/dialogflow.svg","simple-diaspora":"simple/diaspora.svg","simple-dictionarydotcom":"simple/dictionarydotcom.svg","simple-digg":"simple/digg.svg","simple-digikeyelectronics":"simple/digikeyelectronics.svg","simple-digitalocean":"simple/digitalocean.svg","simple-dinersclub":"simple/dinersclub.svg","simple-dior":"simple/dior.svg","simple-directus":"simple/directus.svg","simple-discogs":"simple/discogs.svg","simple-discord":"simple/discord.svg","simple-discourse":"simple/discourse.svg","simple-discover":"simple/discover.svg","simple-disqus":"simple/disqus.svg","simple-disroot":"simple/disroot.svg","simple-distrokid":"simple/distrokid.svg","simple-django":"simple/django.svg","simple-dji":"simple/dji.svg","simple-dlib":"simple/dlib.svg","simple-dlna":"simple/dlna.svg","simple-dm":"simple/dm.svg","simple-docker":"simple/docker.svg","simple-docsdotrs":"simple/docsdotrs.svg","simple-docsify":"simple/docsify.svg","simple-doctrine":"simple/doctrine.svg","simple-docusaurus":"simple/docusaurus.svg","simple-dogecoin":"simple/dogecoin.svg","simple-doi":"simple/doi.svg","simple-dolby":"simple/dolby.svg","simple-doordash":"simple/doordash.svg","simple-dota2":"simple/dota2.svg","simple-dotenv":"simple/dotenv.svg","simple-dotnet":"simple/dotnet.svg","simple-douban":"simple/douban.svg","simple-doubanread":"simple/doubanread.svg","simple-dovecot":"simple/dovecot.svg","simple-dovetail":"simple/dovetail.svg","simple-downdetector":"simple/downdetector.svg","simple-doxygen":"simple/doxygen.svg","simple-dpd":"simple/dpd.svg","simple-dragonframe":"simple/dragonframe.svg","simple-draugiemdotlv":"simple/draugiemdotlv.svg","simple-dreamstime":"simple/dreamstime.svg","simple-dribbble":"simple/dribbble.svg","simple-drizzle":"simple/drizzle.svg","simple-drone":"simple/drone.svg","simple-drooble":"simple/drooble.svg","simple-dropbox":"simple/dropbox.svg","simple-drupal":"simple/drupal.svg","simple-dsautomobiles":"simple/dsautomobiles.svg","simple-dts":"simple/dts.svg","simple-dtube":"simple/dtube.svg","simple-ducati":"simple/ducati.svg","simple-duckdb":"simple/duckdb.svg","simple-duckduckgo":"simple/duckduckgo.svg","simple-dungeonsanddragons":"simple/dungeonsanddragons.svg","simple-dunked":"simple/dunked.svg","simple-dunzo":"simple/dunzo.svg","simple-duolingo":"simple/duolingo.svg","simple-duplicati":"simple/duplicati.svg","simple-dvc":"simple/dvc.svg","simple-dwavesystems":"simple/dwavesystems.svg","simple-dwm":"simple/dwm.svg","simple-dynatrace":"simple/dynatrace.svg","simple-e":"simple/e.svg","simple-e3":"simple/e3.svg","simple-ea":"simple/ea.svg","simple-eac":"simple/eac.svg","simple-eagle":"simple/eagle.svg","simple-easyeda":"simple/easyeda.svg","simple-easyjet":"simple/easyjet.svg","simple-ebay":"simple/ebay.svg","simple-ebox":"simple/ebox.svg","simple-eclipseadoptium":"simple/eclipseadoptium.svg","simple-eclipseche":"simple/eclipseche.svg","simple-eclipseide":"simple/eclipseide.svg","simple-eclipsejetty":"simple/eclipsejetty.svg","simple-eclipsemosquitto":"simple/eclipsemosquitto.svg","simple-eclipsevertdotx":"simple/eclipsevertdotx.svg","simple-ecosia":"simple/ecosia.svg","simple-ecovacs":"simple/ecovacs.svg","simple-edeka":"simple/edeka.svg","simple-edgeimpulse":"simple/edgeimpulse.svg","simple-editorconfig":"simple/editorconfig.svg","simple-edotleclerc":"simple/edotleclerc.svg","simple-educative":"simple/educative.svg","simple-edx":"simple/edx.svg","simple-egghead":"simple/egghead.svg","simple-egnyte":"simple/egnyte.svg","simple-eight":"simple/eight.svg","simple-eightsleep":"simple/eightsleep.svg","simple-ejs":"simple/ejs.svg","simple-elastic":"simple/elastic.svg","simple-elasticcloud":"simple/elasticcloud.svg","simple-elasticsearch":"simple/elasticsearch.svg","simple-elasticstack":"simple/elasticstack.svg","simple-elavon":"simple/elavon.svg","simple-electron":"simple/electron.svg","simple-electronbuilder":"simple/electronbuilder.svg","simple-electronfiddle":"simple/electronfiddle.svg","simple-elegoo":"simple/elegoo.svg","simple-element":"simple/element.svg","simple-elementary":"simple/elementary.svg","simple-elementor":"simple/elementor.svg","simple-elevenlabs":"simple/elevenlabs.svg","simple-eleventy":"simple/eleventy.svg","simple-elgato":"simple/elgato.svg","simple-elixir":"simple/elixir.svg","simple-elm":"simple/elm.svg","simple-elsevier":"simple/elsevier.svg","simple-embarcadero":"simple/embarcadero.svg","simple-embark":"simple/embark.svg","simple-emberdotjs":"simple/emberdotjs.svg","simple-emby":"simple/emby.svg","simple-emirates":"simple/emirates.svg","simple-emlakjet":"simple/emlakjet.svg","simple-empirekred":"simple/empirekred.svg","simple-endeavouros":"simple/endeavouros.svg","simple-engadget":"simple/engadget.svg","simple-enpass":"simple/enpass.svg","simple-enterprisedb":"simple/enterprisedb.svg","simple-envato":"simple/envato.svg","simple-envoyproxy":"simple/envoyproxy.svg","simple-epel":"simple/epel.svg","simple-epicgames":"simple/epicgames.svg","simple-epson":"simple/epson.svg","simple-equinixmetal":"simple/equinixmetal.svg","simple-eraser":"simple/eraser.svg","simple-ericsson":"simple/ericsson.svg","simple-erlang":"simple/erlang.svg","simple-erpnext":"simple/erpnext.svg","simple-esbuild":"simple/esbuild.svg","simple-esea":"simple/esea.svg","simple-eslgaming":"simple/eslgaming.svg","simple-eslint":"simple/eslint.svg","simple-esotericsoftware":"simple/esotericsoftware.svg","simple-esphome":"simple/esphome.svg","simple-espressif":"simple/espressif.svg","simple-esri":"simple/esri.svg","simple-etcd":"simple/etcd.svg","simple-ethereum":"simple/ethereum.svg","simple-ethers":"simple/ethers.svg","simple-ethiopianairlines":"simple/ethiopianairlines.svg","simple-etihadairways":"simple/etihadairways.svg","simple-etsy":"simple/etsy.svg","simple-europeanunion":"simple/europeanunion.svg","simple-eventbrite":"simple/eventbrite.svg","simple-eventstore":"simple/eventstore.svg","simple-evernote":"simple/evernote.svg","simple-excalidraw":"simple/excalidraw.svg","simple-exercism":"simple/exercism.svg","simple-exordo":"simple/exordo.svg","simple-exoscale":"simple/exoscale.svg","simple-expedia":"simple/expedia.svg","simple-expensify":"simple/expensify.svg","simple-expertsexchange":"simple/expertsexchange.svg","simple-expo":"simple/expo.svg","simple-express":"simple/express.svg","simple-expressdotcom":"simple/expressdotcom.svg","simple-expressvpn":"simple/expressvpn.svg","simple-eyeem":"simple/eyeem.svg","simple-f1":"simple/f1.svg","simple-f5":"simple/f5.svg","simple-facebook":"simple/facebook.svg","simple-facebookgaming":"simple/facebookgaming.svg","simple-facebooklive":"simple/facebooklive.svg","simple-faceit":"simple/faceit.svg","simple-facepunch":"simple/facepunch.svg","simple-fairphone":"simple/fairphone.svg","simple-falco":"simple/falco.svg","simple-falcon":"simple/falcon.svg","simple-fampay":"simple/fampay.svg","simple-fandango":"simple/fandango.svg","simple-fandom":"simple/fandom.svg","simple-fanfou":"simple/fanfou.svg","simple-fantom":"simple/fantom.svg","simple-farcaster":"simple/farcaster.svg","simple-fareharbor":"simple/fareharbor.svg","simple-farfetch":"simple/farfetch.svg","simple-fastapi":"simple/fastapi.svg","simple-fastify":"simple/fastify.svg","simple-fastlane":"simple/fastlane.svg","simple-fastly":"simple/fastly.svg","simple-fathom":"simple/fathom.svg","simple-fauna":"simple/fauna.svg","simple-favro":"simple/favro.svg","simple-fcc":"simple/fcc.svg","simple-fdroid":"simple/fdroid.svg","simple-fedex":"simple/fedex.svg","simple-fedora":"simple/fedora.svg","simple-feedly":"simple/feedly.svg","simple-ferrari":"simple/ferrari.svg","simple-ferrarinv":"simple/ferrarinv.svg","simple-ferretdb":"simple/ferretdb.svg","simple-ffmpeg":"simple/ffmpeg.svg","simple-fi":"simple/fi.svg","simple-fiat":"simple/fiat.svg","simple-fidoalliance":"simple/fidoalliance.svg","simple-fifa":"simple/fifa.svg","simple-fig":"simple/fig.svg","simple-figma":"simple/figma.svg","simple-figshare":"simple/figshare.svg","simple-fila":"simple/fila.svg","simple-filament":"simple/filament.svg","simple-filedotio":"simple/filedotio.svg","simple-files":"simple/files.svg","simple-filezilla":"simple/filezilla.svg","simple-fineco":"simple/fineco.svg","simple-fing":"simple/fing.svg","simple-firebase":"simple/firebase.svg","simple-firefish":"simple/firefish.svg","simple-fireflyiii":"simple/fireflyiii.svg","simple-firefox":"simple/firefox.svg","simple-firefoxbrowser":"simple/firefoxbrowser.svg","simple-fireship":"simple/fireship.svg","simple-firewalla":"simple/firewalla.svg","simple-first":"simple/first.svg","simple-fishshell":"simple/fishshell.svg","simple-fitbit":"simple/fitbit.svg","simple-fivem":"simple/fivem.svg","simple-fiverr":"simple/fiverr.svg","simple-fizz":"simple/fizz.svg","simple-flashforge":"simple/flashforge.svg","simple-flask":"simple/flask.svg","simple-flat":"simple/flat.svg","simple-flathub":"simple/flathub.svg","simple-flatpak":"simple/flatpak.svg","simple-flickr":"simple/flickr.svg","simple-flightaware":"simple/flightaware.svg","simple-flipboard":"simple/flipboard.svg","simple-flipkart":"simple/flipkart.svg","simple-floatplane":"simple/floatplane.svg","simple-flood":"simple/flood.svg","simple-fluentbit":"simple/fluentbit.svg","simple-fluentd":"simple/fluentd.svg","simple-fluke":"simple/fluke.svg","simple-flutter":"simple/flutter.svg","simple-flux":"simple/flux.svg","simple-flydotio":"simple/flydotio.svg","simple-flyway":"simple/flyway.svg","simple-fmod":"simple/fmod.svg","simple-fnac":"simple/fnac.svg","simple-folium":"simple/folium.svg","simple-fonoma":"simple/fonoma.svg","simple-fontawesome":"simple/fontawesome.svg","simple-fontbase":"simple/fontbase.svg","simple-fontforge":"simple/fontforge.svg","simple-foobar2000":"simple/foobar2000.svg","simple-foodpanda":"simple/foodpanda.svg","simple-ford":"simple/ford.svg","simple-forgejo":"simple/forgejo.svg","simple-formik":"simple/formik.svg","simple-formspree":"simple/formspree.svg","simple-formstack":"simple/formstack.svg","simple-fortinet":"simple/fortinet.svg","simple-fortran":"simple/fortran.svg","simple-fossa":"simple/fossa.svg","simple-fossilscm":"simple/fossilscm.svg","simple-foundryvirtualtabletop":"simple/foundryvirtualtabletop.svg","simple-foursquare":"simple/foursquare.svg","simple-fox":"simple/fox.svg","simple-foxtel":"simple/foxtel.svg","simple-fozzy":"simple/fozzy.svg","simple-framer":"simple/framer.svg","simple-framework":"simple/framework.svg","simple-framework7":"simple/framework7.svg","simple-franprix":"simple/franprix.svg","simple-frappe":"simple/frappe.svg","simple-fraunhofergesellschaft":"simple/fraunhofergesellschaft.svg","simple-freebsd":"simple/freebsd.svg","simple-freecad":"simple/freecad.svg","simple-freecodecamp":"simple/freecodecamp.svg","simple-freedesktopdotorg":"simple/freedesktopdotorg.svg","simple-freelancer":"simple/freelancer.svg","simple-freelancermap":"simple/freelancermap.svg","simple-freenas":"simple/freenas.svg","simple-freenet":"simple/freenet.svg","simple-freepik":"simple/freepik.svg","simple-fresh":"simple/fresh.svg","simple-frontendmentor":"simple/frontendmentor.svg","simple-frontify":"simple/frontify.svg","simple-fsecure":"simple/fsecure.svg","simple-fsharp":"simple/fsharp.svg","simple-fubo":"simple/fubo.svg","simple-fueler":"simple/fueler.svg","simple-fugacloud":"simple/fugacloud.svg","simple-fujifilm":"simple/fujifilm.svg","simple-fujitsu":"simple/fujitsu.svg","simple-furaffinity":"simple/furaffinity.svg","simple-furrynetwork":"simple/furrynetwork.svg","simple-fusionauth":"simple/fusionauth.svg","simple-futurelearn":"simple/futurelearn.svg","simple-fyle":"simple/fyle.svg","simple-g2":"simple/g2.svg","simple-g2a":"simple/g2a.svg","simple-g2g":"simple/g2g.svg","simple-galaxus":"simple/galaxus.svg","simple-gamebanana":"simple/gamebanana.svg","simple-gamedeveloper":"simple/gamedeveloper.svg","simple-gamejolt":"simple/gamejolt.svg","simple-gameloft":"simple/gameloft.svg","simple-gamemaker":"simple/gamemaker.svg","simple-gamescience":"simple/gamescience.svg","simple-garmin":"simple/garmin.svg","simple-gatling":"simple/gatling.svg","simple-gatsby":"simple/gatsby.svg","simple-gcore":"simple/gcore.svg","simple-gdal":"simple/gdal.svg","simple-geeksforgeeks":"simple/geeksforgeeks.svg","simple-generalelectric":"simple/generalelectric.svg","simple-generalmotors":"simple/generalmotors.svg","simple-genius":"simple/genius.svg","simple-gentoo":"simple/gentoo.svg","simple-geocaching":"simple/geocaching.svg","simple-geode":"simple/geode.svg","simple-geopandas":"simple/geopandas.svg","simple-gerrit":"simple/gerrit.svg","simple-getx":"simple/getx.svg","simple-ghost":"simple/ghost.svg","simple-ghostery":"simple/ghostery.svg","simple-gimp":"simple/gimp.svg","simple-gin":"simple/gin.svg","simple-giphy":"simple/giphy.svg","simple-git":"simple/git.svg","simple-gitbook":"simple/gitbook.svg","simple-gitconnected":"simple/gitconnected.svg","simple-gitea":"simple/gitea.svg","simple-gitee":"simple/gitee.svg","simple-gitextensions":"simple/gitextensions.svg","simple-gitforwindows":"simple/gitforwindows.svg","simple-github":"simple/github.svg","simple-githubactions":"simple/githubactions.svg","simple-githubcopilot":"simple/githubcopilot.svg","simple-githubpages":"simple/githubpages.svg","simple-githubsponsors":"simple/githubsponsors.svg","simple-gitignoredotio":"simple/gitignoredotio.svg","simple-gitkraken":"simple/gitkraken.svg","simple-gitlab":"simple/gitlab.svg","simple-gitlfs":"simple/gitlfs.svg","simple-gitpod":"simple/gitpod.svg","simple-gitter":"simple/gitter.svg","simple-glassdoor":"simple/glassdoor.svg","simple-glide":"simple/glide.svg","simple-glitch":"simple/glitch.svg","simple-globus":"simple/globus.svg","simple-glovo":"simple/glovo.svg","simple-gltf":"simple/gltf.svg","simple-gmail":"simple/gmail.svg","simple-gmx":"simple/gmx.svg","simple-gnome":"simple/gnome.svg","simple-gnometerminal":"simple/gnometerminal.svg","simple-gnu":"simple/gnu.svg","simple-gnubash":"simple/gnubash.svg","simple-gnuemacs":"simple/gnuemacs.svg","simple-gnuicecat":"simple/gnuicecat.svg","simple-gnuprivacyguard":"simple/gnuprivacyguard.svg","simple-gnusocial":"simple/gnusocial.svg","simple-go":"simple/go.svg","simple-gocd":"simple/gocd.svg","simple-godaddy":"simple/godaddy.svg","simple-godotengine":"simple/godotengine.svg","simple-gofundme":"simple/gofundme.svg","simple-gogdotcom":"simple/gogdotcom.svg","simple-gojek":"simple/gojek.svg","simple-goland":"simple/goland.svg","simple-goldenline":"simple/goldenline.svg","simple-goldmansachs":"simple/goldmansachs.svg","simple-goodreads":"simple/goodreads.svg","simple-google":"simple/google.svg","simple-googleadmob":"simple/googleadmob.svg","simple-googleads":"simple/googleads.svg","simple-googleadsense":"simple/googleadsense.svg","simple-googleanalytics":"simple/googleanalytics.svg","simple-googleappsscript":"simple/googleappsscript.svg","simple-googleassistant":"simple/googleassistant.svg","simple-googleauthenticator":"simple/googleauthenticator.svg","simple-googlebigquery":"simple/googlebigquery.svg","simple-googlebigtable":"simple/googlebigtable.svg","simple-googlecalendar":"simple/googlecalendar.svg","simple-googlecampaignmanager360":"simple/googlecampaignmanager360.svg","simple-googlecardboard":"simple/googlecardboard.svg","simple-googlechat":"simple/googlechat.svg","simple-googlechrome":"simple/googlechrome.svg","simple-googlechronicle":"simple/googlechronicle.svg","simple-googleclassroom":"simple/googleclassroom.svg","simple-googlecloud":"simple/googlecloud.svg","simple-googlecloudcomposer":"simple/googlecloudcomposer.svg","simple-googlecloudspanner":"simple/googlecloudspanner.svg","simple-googlecloudstorage":"simple/googlecloudstorage.svg","simple-googlecolab":"simple/googlecolab.svg","simple-googlecontaineroptimizedos":"simple/googlecontaineroptimizedos.svg","simple-googledataflow":"simple/googledataflow.svg","simple-googledataproc":"simple/googledataproc.svg","simple-googledatastudio":"simple/googledatastudio.svg","simple-googledisplayandvideo360":"simple/googledisplayandvideo360.svg","simple-googledocs":"simple/googledocs.svg","simple-googledrive":"simple/googledrive.svg","simple-googleearth":"simple/googleearth.svg","simple-googleearthengine":"simple/googleearthengine.svg","simple-googlefit":"simple/googlefit.svg","simple-googlefonts":"simple/googlefonts.svg","simple-googleforms":"simple/googleforms.svg","simple-googlegemini":"simple/googlegemini.svg","simple-googlehome":"simple/googlehome.svg","simple-googlekeep":"simple/googlekeep.svg","simple-googlelens":"simple/googlelens.svg","simple-googlemaps":"simple/googlemaps.svg","simple-googlemarketingplatform":"simple/googlemarketingplatform.svg","simple-googlemeet":"simple/googlemeet.svg","simple-googlemessages":"simple/googlemessages.svg","simple-googlenearby":"simple/googlenearby.svg","simple-googlenews":"simple/googlenews.svg","simple-googlepay":"simple/googlepay.svg","simple-googlephotos":"simple/googlephotos.svg","simple-googleplay":"simple/googleplay.svg","simple-googlepubsub":"simple/googlepubsub.svg","simple-googlescholar":"simple/googlescholar.svg","simple-googlesearchconsole":"simple/googlesearchconsole.svg","simple-googlesheets":"simple/googlesheets.svg","simple-googleslides":"simple/googleslides.svg","simple-googlestreetview":"simple/googlestreetview.svg","simple-googletagmanager":"simple/googletagmanager.svg","simple-googletasks":"simple/googletasks.svg","simple-googletranslate":"simple/googletranslate.svg","simple-gotomeeting":"simple/gotomeeting.svg","simple-grab":"simple/grab.svg","simple-gradio":"simple/gradio.svg","simple-gradle":"simple/gradle.svg","simple-gradleplaypublisher":"simple/gradleplaypublisher.svg","simple-grafana":"simple/grafana.svg","simple-grammarly":"simple/grammarly.svg","simple-grandfrais":"simple/grandfrais.svg","simple-grapheneos":"simple/grapheneos.svg","simple-graphite":"simple/graphite.svg","simple-graphql":"simple/graphql.svg","simple-grav":"simple/grav.svg","simple-gravatar":"simple/gravatar.svg","simple-graylog":"simple/graylog.svg","simple-greasyfork":"simple/greasyfork.svg","simple-greatlearning":"simple/greatlearning.svg","simple-greenhouse":"simple/greenhouse.svg","simple-greensock":"simple/greensock.svg","simple-griddotai":"simple/griddotai.svg","simple-gridsome":"simple/gridsome.svg","simple-grocy":"simple/grocy.svg","simple-groupme":"simple/groupme.svg","simple-groupon":"simple/groupon.svg","simple-grubhub":"simple/grubhub.svg","simple-grunt":"simple/grunt.svg","simple-gsk":"simple/gsk.svg","simple-gsmarenadotcom":"simple/gsmarenadotcom.svg","simple-gstreamer":"simple/gstreamer.svg","simple-gtk":"simple/gtk.svg","simple-guangzhoumetro":"simple/guangzhoumetro.svg","simple-guilded":"simple/guilded.svg","simple-guitarpro":"simple/guitarpro.svg","simple-gulp":"simple/gulp.svg","simple-gumroad":"simple/gumroad.svg","simple-gumtree":"simple/gumtree.svg","simple-gunicorn":"simple/gunicorn.svg","simple-gurobi":"simple/gurobi.svg","simple-gusto":"simple/gusto.svg","simple-gutenberg":"simple/gutenberg.svg","simple-h3":"simple/h3.svg","simple-habr":"simple/habr.svg","simple-hackaday":"simple/hackaday.svg","simple-hackclub":"simple/hackclub.svg","simple-hackerearth":"simple/hackerearth.svg","simple-hackernoon":"simple/hackernoon.svg","simple-hackerone":"simple/hackerone.svg","simple-hackerrank":"simple/hackerrank.svg","simple-hackster":"simple/hackster.svg","simple-hackthebox":"simple/hackthebox.svg","simple-hal":"simple/hal.svg","simple-handlebarsdotjs":"simple/handlebarsdotjs.svg","simple-handm":"simple/handm.svg","simple-handshake":"simple/handshake.svg","simple-handshake_protocol":"simple/handshake_protocol.svg","simple-happycow":"simple/happycow.svg","simple-harbor":"simple/harbor.svg","simple-harmonyos":"simple/harmonyos.svg","simple-hashicorp":"simple/hashicorp.svg","simple-hashnode":"simple/hashnode.svg","simple-haskell":"simple/haskell.svg","simple-hasura":"simple/hasura.svg","simple-hatenabookmark":"simple/hatenabookmark.svg","simple-haveibeenpwned":"simple/haveibeenpwned.svg","simple-haxe":"simple/haxe.svg","simple-hbo":"simple/hbo.svg","simple-hcl":"simple/hcl.svg","simple-hdfcbank":"simple/hdfcbank.svg","simple-headlessui":"simple/headlessui.svg","simple-headphonezone":"simple/headphonezone.svg","simple-headspace":"simple/headspace.svg","simple-hearth":"simple/hearth.svg","simple-hearthisdotat":"simple/hearthisdotat.svg","simple-hedera":"simple/hedera.svg","simple-helium":"simple/helium.svg","simple-helix":"simple/helix.svg","simple-hellofresh":"simple/hellofresh.svg","simple-hellyhansen":"simple/hellyhansen.svg","simple-helm":"simple/helm.svg","simple-helpdesk":"simple/helpdesk.svg","simple-helpscout":"simple/helpscout.svg","simple-hepsiemlak":"simple/hepsiemlak.svg","simple-here":"simple/here.svg","simple-hermes":"simple/hermes.svg","simple-heroku":"simple/heroku.svg","simple-hetzner":"simple/hetzner.svg","simple-hevy":"simple/hevy.svg","simple-hexlet":"simple/hexlet.svg","simple-hexo":"simple/hexo.svg","simple-hey":"simple/hey.svg","simple-hibernate":"simple/hibernate.svg","simple-hibob":"simple/hibob.svg","simple-hilton":"simple/hilton.svg","simple-hiltonhotelsandresorts":"simple/hiltonhotelsandresorts.svg","simple-hitachi":"simple/hitachi.svg","simple-hive":"simple/hive.svg","simple-hive_blockchain":"simple/hive_blockchain.svg","simple-hivemq":"simple/hivemq.svg","simple-homarr":"simple/homarr.svg","simple-homeadvisor":"simple/homeadvisor.svg","simple-homeassistant":"simple/homeassistant.svg","simple-homeassistantcommunitystore":"simple/homeassistantcommunitystore.svg","simple-homebrew":"simple/homebrew.svg","simple-homebridge":"simple/homebridge.svg","simple-homepage":"simple/homepage.svg","simple-homify":"simple/homify.svg","simple-honda":"simple/honda.svg","simple-honey":"simple/honey.svg","simple-honeybadger":"simple/honeybadger.svg","simple-honeygain":"simple/honeygain.svg","simple-hono":"simple/hono.svg","simple-honor":"simple/honor.svg","simple-hootsuite":"simple/hootsuite.svg","simple-hoppscotch":"simple/hoppscotch.svg","simple-hostinger":"simple/hostinger.svg","simple-hotelsdotcom":"simple/hotelsdotcom.svg","simple-hotjar":"simple/hotjar.svg","simple-hotwire":"simple/hotwire.svg","simple-houdini":"simple/houdini.svg","simple-houzz":"simple/houzz.svg","simple-hp":"simple/hp.svg","simple-hsbc":"simple/hsbc.svg","simple-htc":"simple/htc.svg","simple-htcvive":"simple/htcvive.svg","simple-html5":"simple/html5.svg","simple-htmlacademy":"simple/htmlacademy.svg","simple-htmx":"simple/htmx.svg","simple-htop":"simple/htop.svg","simple-httpie":"simple/httpie.svg","simple-huawei":"simple/huawei.svg","simple-hubspot":"simple/hubspot.svg","simple-huggingface":"simple/huggingface.svg","simple-hugo":"simple/hugo.svg","simple-humblebundle":"simple/humblebundle.svg","simple-humhub":"simple/humhub.svg","simple-hungryjacks":"simple/hungryjacks.svg","simple-husqvarna":"simple/husqvarna.svg","simple-hyper":"simple/hyper.svg","simple-hyperskill":"simple/hyperskill.svg","simple-hyperx":"simple/hyperx.svg","simple-hypothesis":"simple/hypothesis.svg","simple-hyprland":"simple/hyprland.svg","simple-hyundai":"simple/hyundai.svg","simple-i18next":"simple/i18next.svg","simple-i3":"simple/i3.svg","simple-iata":"simple/iata.svg","simple-ibeacon":"simple/ibeacon.svg","simple-iberia":"simple/iberia.svg","simple-iced":"simple/iced.svg","simple-iceland":"simple/iceland.svg","simple-icicibank":"simple/icicibank.svg","simple-icinga":"simple/icinga.svg","simple-icloud":"simple/icloud.svg","simple-icomoon":"simple/icomoon.svg","simple-icon":"simple/icon.svg","simple-iconfinder":"simple/iconfinder.svg","simple-iconify":"simple/iconify.svg","simple-iconjar":"simple/iconjar.svg","simple-icons8":"simple/icons8.svg","simple-icq":"simple/icq.svg","simple-ieee":"simple/ieee.svg","simple-ifixit":"simple/ifixit.svg","simple-ifood":"simple/ifood.svg","simple-ifttt":"simple/ifttt.svg","simple-igdb":"simple/igdb.svg","simple-ign":"simple/ign.svg","simple-iheartradio":"simple/iheartradio.svg","simple-ikea":"simple/ikea.svg","simple-iledefrancemobilites":"simple/iledefrancemobilites.svg","simple-imagedotsc":"simple/imagedotsc.svg","simple-imagej":"simple/imagej.svg","simple-imdb":"simple/imdb.svg","simple-imessage":"simple/imessage.svg","simple-imgur":"simple/imgur.svg","simple-immer":"simple/immer.svg","simple-immich":"simple/immich.svg","simple-imou":"simple/imou.svg","simple-improvmx":"simple/improvmx.svg","simple-indeed":"simple/indeed.svg","simple-indiansuperleague":"simple/indiansuperleague.svg","simple-indiehackers":"simple/indiehackers.svg","simple-indigo":"simple/indigo.svg","simple-inductiveautomation":"simple/inductiveautomation.svg","simple-inertia":"simple/inertia.svg","simple-infiniti":"simple/infiniti.svg","simple-influxdb":"simple/influxdb.svg","simple-infomaniak":"simple/infomaniak.svg","simple-infoq":"simple/infoq.svg","simple-informatica":"simple/informatica.svg","simple-infosys":"simple/infosys.svg","simple-infracost":"simple/infracost.svg","simple-ingress":"simple/ingress.svg","simple-inkdrop":"simple/inkdrop.svg","simple-inkscape":"simple/inkscape.svg","simple-inoreader":"simple/inoreader.svg","simple-insomnia":"simple/insomnia.svg","simple-inspire":"simple/inspire.svg","simple-insta360":"simple/insta360.svg","simple-instacart":"simple/instacart.svg","simple-instagram":"simple/instagram.svg","simple-instapaper":"simple/instapaper.svg","simple-instatus":"simple/instatus.svg","simple-instructables":"simple/instructables.svg","simple-instructure":"simple/instructure.svg","simple-intel":"simple/intel.svg","simple-intellijidea":"simple/intellijidea.svg","simple-interactiondesignfoundation":"simple/interactiondesignfoundation.svg","simple-interactjs":"simple/interactjs.svg","simple-interbase":"simple/interbase.svg","simple-intercom":"simple/intercom.svg","simple-intermarche":"simple/intermarche.svg","simple-internetarchive":"simple/internetarchive.svg","simple-internetcomputer":"simple/internetcomputer.svg","simple-intigriti":"simple/intigriti.svg","simple-intuit":"simple/intuit.svg","simple-invision":"simple/invision.svg","simple-invoiceninja":"simple/invoiceninja.svg","simple-iobroker":"simple/iobroker.svg","simple-ionic":"simple/ionic.svg","simple-ionos":"simple/ionos.svg","simple-ios":"simple/ios.svg","simple-iota":"simple/iota.svg","simple-ipfs":"simple/ipfs.svg","simple-iris":"simple/iris.svg","simple-irobot":"simple/irobot.svg","simple-isc2":"simple/isc2.svg","simple-issuu":"simple/issuu.svg","simple-istio":"simple/istio.svg","simple-itchdotio":"simple/itchdotio.svg","simple-iterm2":"simple/iterm2.svg","simple-itunes":"simple/itunes.svg","simple-itvx":"simple/itvx.svg","simple-iveco":"simple/iveco.svg","simple-jabber":"simple/jabber.svg","simple-jaeger":"simple/jaeger.svg","simple-jaguar":"simple/jaguar.svg","simple-jamboard":"simple/jamboard.svg","simple-jameson":"simple/jameson.svg","simple-jamstack":"simple/jamstack.svg","simple-japanairlines":"simple/japanairlines.svg","simple-jasmine":"simple/jasmine.svg","simple-javascript":"simple/javascript.svg","simple-jbl":"simple/jbl.svg","simple-jcb":"simple/jcb.svg","simple-jeep":"simple/jeep.svg","simple-jekyll":"simple/jekyll.svg","simple-jellyfin":"simple/jellyfin.svg","simple-jenkins":"simple/jenkins.svg","simple-jest":"simple/jest.svg","simple-jet":"simple/jet.svg","simple-jetblue":"simple/jetblue.svg","simple-jetbrains":"simple/jetbrains.svg","simple-jetpackcompose":"simple/jetpackcompose.svg","simple-jfrog":"simple/jfrog.svg","simple-jfrogpipelines":"simple/jfrogpipelines.svg","simple-jhipster":"simple/jhipster.svg","simple-jinja":"simple/jinja.svg","simple-jio":"simple/jio.svg","simple-jira":"simple/jira.svg","simple-jirasoftware":"simple/jirasoftware.svg","simple-jitpack":"simple/jitpack.svg","simple-jitsi":"simple/jitsi.svg","simple-johndeere":"simple/johndeere.svg","simple-joomla":"simple/joomla.svg","simple-joplin":"simple/joplin.svg","simple-jordan":"simple/jordan.svg","simple-jouav":"simple/jouav.svg","simple-jovian":"simple/jovian.svg","simple-jpeg":"simple/jpeg.svg","simple-jquery":"simple/jquery.svg","simple-jrgroup":"simple/jrgroup.svg","simple-jsdelivr":"simple/jsdelivr.svg","simple-jsfiddle":"simple/jsfiddle.svg","simple-json":"simple/json.svg","simple-jsonwebtokens":"simple/jsonwebtokens.svg","simple-jsr":"simple/jsr.svg","simple-jss":"simple/jss.svg","simple-juce":"simple/juce.svg","simple-juejin":"simple/juejin.svg","simple-juke":"simple/juke.svg","simple-julia":"simple/julia.svg","simple-junipernetworks":"simple/junipernetworks.svg","simple-junit5":"simple/junit5.svg","simple-jupyter":"simple/jupyter.svg","simple-justeat":"simple/justeat.svg","simple-justgiving":"simple/justgiving.svg","simple-k3s":"simple/k3s.svg","simple-k6":"simple/k6.svg","simple-kaggle":"simple/kaggle.svg","simple-kagi":"simple/kagi.svg","simple-kahoot":"simple/kahoot.svg","simple-kaios":"simple/kaios.svg","simple-kakao":"simple/kakao.svg","simple-kakaotalk":"simple/kakaotalk.svg","simple-kalilinux":"simple/kalilinux.svg","simple-kamailio":"simple/kamailio.svg","simple-kaniko":"simple/kaniko.svg","simple-karlsruherverkehrsverbund":"simple/karlsruherverkehrsverbund.svg","simple-kasasmart":"simple/kasasmart.svg","simple-kashflow":"simple/kashflow.svg","simple-kaspersky":"simple/kaspersky.svg","simple-katana":"simple/katana.svg","simple-kaufland":"simple/kaufland.svg","simple-kde":"simple/kde.svg","simple-kdenlive":"simple/kdenlive.svg","simple-kdeplasma":"simple/kdeplasma.svg","simple-kedro":"simple/kedro.svg","simple-keenetic":"simple/keenetic.svg","simple-keepachangelog":"simple/keepachangelog.svg","simple-keepassxc":"simple/keepassxc.svg","simple-keeper":"simple/keeper.svg","simple-keeweb":"simple/keeweb.svg","simple-kentico":"simple/kentico.svg","simple-keras":"simple/keras.svg","simple-keybase":"simple/keybase.svg","simple-keycdn":"simple/keycdn.svg","simple-keycloak":"simple/keycloak.svg","simple-keystone":"simple/keystone.svg","simple-kfc":"simple/kfc.svg","simple-khanacademy":"simple/khanacademy.svg","simple-khronosgroup":"simple/khronosgroup.svg","simple-kia":"simple/kia.svg","simple-kibana":"simple/kibana.svg","simple-kicad":"simple/kicad.svg","simple-kick":"simple/kick.svg","simple-kickstarter":"simple/kickstarter.svg","simple-kik":"simple/kik.svg","simple-kingstontechnology":"simple/kingstontechnology.svg","simple-kinopoisk":"simple/kinopoisk.svg","simple-kinsta":"simple/kinsta.svg","simple-kirby":"simple/kirby.svg","simple-kit":"simple/kit.svg","simple-kitsu":"simple/kitsu.svg","simple-klarna":"simple/klarna.svg","simple-kleinanzeigen":"simple/kleinanzeigen.svg","simple-klm":"simple/klm.svg","simple-klook":"simple/klook.svg","simple-knative":"simple/knative.svg","simple-knexdotjs":"simple/knexdotjs.svg","simple-knime":"simple/knime.svg","simple-knip":"simple/knip.svg","simple-knowledgebase":"simple/knowledgebase.svg","simple-known":"simple/known.svg","simple-koa":"simple/koa.svg","simple-koc":"simple/koc.svg","simple-kodak":"simple/kodak.svg","simple-kodi":"simple/kodi.svg","simple-koenigsegg":"simple/koenigsegg.svg","simple-kofax":"simple/kofax.svg","simple-kofi":"simple/kofi.svg","simple-komoot":"simple/komoot.svg","simple-konami":"simple/konami.svg","simple-kong":"simple/kong.svg","simple-kongregate":"simple/kongregate.svg","simple-konva":"simple/konva.svg","simple-kotlin":"simple/kotlin.svg","simple-koyeb":"simple/koyeb.svg","simple-krita":"simple/krita.svg","simple-ktm":"simple/ktm.svg","simple-ktor":"simple/ktor.svg","simple-kuaishou":"simple/kuaishou.svg","simple-kubernetes":"simple/kubernetes.svg","simple-kubuntu":"simple/kubuntu.svg","simple-kucoin":"simple/kucoin.svg","simple-kueski":"simple/kueski.svg","simple-kuma":"simple/kuma.svg","simple-kununu":"simple/kununu.svg","simple-kuula":"simple/kuula.svg","simple-kx":"simple/kx.svg","simple-kyocera":"simple/kyocera.svg","simple-labview":"simple/labview.svg","simple-lada":"simple/lada.svg","simple-lamborghini":"simple/lamborghini.svg","simple-landrover":"simple/landrover.svg","simple-langchain":"simple/langchain.svg","simple-langflow":"simple/langflow.svg","simple-langgraph":"simple/langgraph.svg","simple-languagetool":"simple/languagetool.svg","simple-lapce":"simple/lapce.svg","simple-laragon":"simple/laragon.svg","simple-laravel":"simple/laravel.svg","simple-laravelhorizon":"simple/laravelhorizon.svg","simple-laravelnova":"simple/laravelnova.svg","simple-lastdotfm":"simple/lastdotfm.svg","simple-lastpass":"simple/lastpass.svg","simple-latex":"simple/latex.svg","simple-launchpad":"simple/launchpad.svg","simple-lazarus":"simple/lazarus.svg","simple-lazyvim":"simple/lazyvim.svg","simple-lbry":"simple/lbry.svg","simple-leaderprice":"simple/leaderprice.svg","simple-leaflet":"simple/leaflet.svg","simple-leagueoflegends":"simple/leagueoflegends.svg","simple-leanpub":"simple/leanpub.svg","simple-leetcode":"simple/leetcode.svg","simple-lefthook":"simple/lefthook.svg","simple-legacygames":"simple/legacygames.svg","simple-leica":"simple/leica.svg","simple-lemmy":"simple/lemmy.svg","simple-lemonsqueezy":"simple/lemonsqueezy.svg","simple-lenovo":"simple/lenovo.svg","simple-lens":"simple/lens.svg","simple-leptos":"simple/leptos.svg","simple-lequipe":"simple/lequipe.svg","simple-lerna":"simple/lerna.svg","simple-leroymerlin":"simple/leroymerlin.svg","simple-leslibraires":"simple/leslibraires.svg","simple-less":"simple/less.svg","simple-letsencrypt":"simple/letsencrypt.svg","simple-letterboxd":"simple/letterboxd.svg","simple-levelsdotfyi":"simple/levelsdotfyi.svg","simple-lg":"simple/lg.svg","simple-liberadotchat":"simple/liberadotchat.svg","simple-liberapay":"simple/liberapay.svg","simple-librariesdotio":"simple/librariesdotio.svg","simple-librarything":"simple/librarything.svg","simple-libreoffice":"simple/libreoffice.svg","simple-libreofficebase":"simple/libreofficebase.svg","simple-libreofficecalc":"simple/libreofficecalc.svg","simple-libreofficedraw":"simple/libreofficedraw.svg","simple-libreofficeimpress":"simple/libreofficeimpress.svg","simple-libreofficemath":"simple/libreofficemath.svg","simple-libreofficewriter":"simple/libreofficewriter.svg","simple-libretranslate":"simple/libretranslate.svg","simple-libretube":"simple/libretube.svg","simple-librewolf":"simple/librewolf.svg","simple-libuv":"simple/libuv.svg","simple-lichess":"simple/lichess.svg","simple-lidl":"simple/lidl.svg","simple-lifx":"simple/lifx.svg","simple-lightburn":"simple/lightburn.svg","simple-lighthouse":"simple/lighthouse.svg","simple-lightning":"simple/lightning.svg","simple-limesurvey":"simple/limesurvey.svg","simple-line":"simple/line.svg","simple-lineageos":"simple/lineageos.svg","simple-linear":"simple/linear.svg","simple-lining":"simple/lining.svg","simple-linkerd":"simple/linkerd.svg","simple-linkfire":"simple/linkfire.svg","simple-linksys":"simple/linksys.svg","simple-linktree":"simple/linktree.svg","simple-linphone":"simple/linphone.svg","simple-lintcode":"simple/lintcode.svg","simple-linux":"simple/linux.svg","simple-linuxcontainers":"simple/linuxcontainers.svg","simple-linuxfoundation":"simple/linuxfoundation.svg","simple-linuxmint":"simple/linuxmint.svg","simple-linuxprofessionalinstitute":"simple/linuxprofessionalinstitute.svg","simple-linuxserver":"simple/linuxserver.svg","simple-lionair":"simple/lionair.svg","simple-liquibase":"simple/liquibase.svg","simple-listmonk":"simple/listmonk.svg","simple-lit":"simple/lit.svg","simple-litecoin":"simple/litecoin.svg","simple-literal":"simple/literal.svg","simple-litiengine":"simple/litiengine.svg","simple-livechat":"simple/livechat.svg","simple-livejournal":"simple/livejournal.svg","simple-livewire":"simple/livewire.svg","simple-llvm":"simple/llvm.svg","simple-lmms":"simple/lmms.svg","simple-lobsters":"simple/lobsters.svg","simple-local":"simple/local.svg","simple-lodash":"simple/lodash.svg","simple-logitech":"simple/logitech.svg","simple-logitechg":"simple/logitechg.svg","simple-logmein":"simple/logmein.svg","simple-logseq":"simple/logseq.svg","simple-logstash":"simple/logstash.svg","simple-looker":"simple/looker.svg","simple-loom":"simple/loom.svg","simple-loop":"simple/loop.svg","simple-loopback":"simple/loopback.svg","simple-lootcrate":"simple/lootcrate.svg","simple-lospec":"simple/lospec.svg","simple-lotpolishairlines":"simple/lotpolishairlines.svg","simple-lottiefiles":"simple/lottiefiles.svg","simple-ltspice":"simple/ltspice.svg","simple-lua":"simple/lua.svg","simple-lubuntu":"simple/lubuntu.svg","simple-lucia":"simple/lucia.svg","simple-lucid":"simple/lucid.svg","simple-lucide":"simple/lucide.svg","simple-ludwig":"simple/ludwig.svg","simple-lufthansa":"simple/lufthansa.svg","simple-lumen":"simple/lumen.svg","simple-lunacy":"simple/lunacy.svg","simple-lutris":"simple/lutris.svg","simple-lvgl":"simple/lvgl.svg","simple-lydia":"simple/lydia.svg","simple-lyft":"simple/lyft.svg","simple-maas":"simple/maas.svg","simple-macos":"simple/macos.svg","simple-macpaw":"simple/macpaw.svg","simple-macys":"simple/macys.svg","simple-magasinsu":"simple/magasinsu.svg","simple-magic":"simple/magic.svg","simple-magisk":"simple/magisk.svg","simple-mahindra":"simple/mahindra.svg","simple-mailboxdotorg":"simple/mailboxdotorg.svg","simple-mailchimp":"simple/mailchimp.svg","simple-maildotcom":"simple/maildotcom.svg","simple-maildotru":"simple/maildotru.svg","simple-mailgun":"simple/mailgun.svg","simple-mailtrap":"simple/mailtrap.svg","simple-mainwp":"simple/mainwp.svg","simple-majorleaguehacking":"simple/majorleaguehacking.svg","simple-make":"simple/make.svg","simple-makerbot":"simple/makerbot.svg","simple-malt":"simple/malt.svg","simple-malwarebytes":"simple/malwarebytes.svg","simple-mambaui":"simple/mambaui.svg","simple-mamp":"simple/mamp.svg","simple-man":"simple/man.svg","simple-manageiq":"simple/manageiq.svg","simple-manjaro":"simple/manjaro.svg","simple-mantine":"simple/mantine.svg","simple-mapbox":"simple/mapbox.svg","simple-mapillary":"simple/mapillary.svg","simple-maplibre":"simple/maplibre.svg","simple-maptiler":"simple/maptiler.svg","simple-mariadb":"simple/mariadb.svg","simple-mariadbfoundation":"simple/mariadbfoundation.svg","simple-markdown":"simple/markdown.svg","simple-marko":"simple/marko.svg","simple-marriott":"simple/marriott.svg","simple-marvelapp":"simple/marvelapp.svg","simple-maserati":"simple/maserati.svg","simple-mastercard":"simple/mastercard.svg","simple-mastercomfig":"simple/mastercomfig.svg","simple-mastodon":"simple/mastodon.svg","simple-materialdesign":"simple/materialdesign.svg","simple-materialdesignicons":"simple/materialdesignicons.svg","simple-materialformkdocs":"simple/materialformkdocs.svg","simple-matillion":"simple/matillion.svg","simple-matomo":"simple/matomo.svg","simple-matrix":"simple/matrix.svg","simple-matterdotjs":"simple/matterdotjs.svg","simple-mattermost":"simple/mattermost.svg","simple-matternet":"simple/matternet.svg","simple-mautic":"simple/mautic.svg","simple-max":"simple/max.svg","simple-maxplanckgesellschaft":"simple/maxplanckgesellschaft.svg","simple-maytag":"simple/maytag.svg","simple-mazda":"simple/mazda.svg","simple-maze":"simple/maze.svg","simple-mcafee":"simple/mcafee.svg","simple-mcdonalds":"simple/mcdonalds.svg","simple-mclaren":"simple/mclaren.svg","simple-mdbook":"simple/mdbook.svg","simple-mdnwebdocs":"simple/mdnwebdocs.svg","simple-mdx":"simple/mdx.svg","simple-mediafire":"simple/mediafire.svg","simple-mediamarkt":"simple/mediamarkt.svg","simple-mediapipe":"simple/mediapipe.svg","simple-mediatek":"simple/mediatek.svg","simple-medibangpaint":"simple/medibangpaint.svg","simple-medium":"simple/medium.svg","simple-medusa":"simple/medusa.svg","simple-meetup":"simple/meetup.svg","simple-mega":"simple/mega.svg","simple-meilisearch":"simple/meilisearch.svg","simple-meituan":"simple/meituan.svg","simple-meizu":"simple/meizu.svg","simple-mendeley":"simple/mendeley.svg","simple-mentorcruise":"simple/mentorcruise.svg","simple-mercadopago":"simple/mercadopago.svg","simple-mercedes":"simple/mercedes.svg","simple-merck":"simple/merck.svg","simple-mercurial":"simple/mercurial.svg","simple-mermaid":"simple/mermaid.svg","simple-messenger":"simple/messenger.svg","simple-meta":"simple/meta.svg","simple-metabase":"simple/metabase.svg","simple-metacritic":"simple/metacritic.svg","simple-metafilter":"simple/metafilter.svg","simple-metasploit":"simple/metasploit.svg","simple-meteor":"simple/meteor.svg","simple-metro":"simple/metro.svg","simple-metrodelaciudaddemexico":"simple/metrodelaciudaddemexico.svg","simple-metrodemadrid":"simple/metrodemadrid.svg","simple-metrodeparis":"simple/metrodeparis.svg","simple-mewe":"simple/mewe.svg","simple-mg":"simple/mg.svg","simple-microbit":"simple/microbit.svg","simple-microdotblog":"simple/microdotblog.svg","simple-microeditor":"simple/microeditor.svg","simple-micropython":"simple/micropython.svg","simple-microstation":"simple/microstation.svg","simple-microstrategy":"simple/microstrategy.svg","simple-midi":"simple/midi.svg","simple-migadu":"simple/migadu.svg","simple-mihoyo":"simple/mihoyo.svg","simple-mikrotik":"simple/mikrotik.svg","simple-milanote":"simple/milanote.svg","simple-milvus":"simple/milvus.svg","simple-minds":"simple/minds.svg","simple-minetest":"simple/minetest.svg","simple-mingww64":"simple/mingww64.svg","simple-mini":"simple/mini.svg","simple-minio":"simple/minio.svg","simple-mintlify":"simple/mintlify.svg","simple-minutemailer":"simple/minutemailer.svg","simple-miraheze":"simple/miraheze.svg","simple-miro":"simple/miro.svg","simple-misskey":"simple/misskey.svg","simple-mitsubishi":"simple/mitsubishi.svg","simple-mix":"simple/mix.svg","simple-mixcloud":"simple/mixcloud.svg","simple-mixpanel":"simple/mixpanel.svg","simple-mlb":"simple/mlb.svg","simple-mlflow":"simple/mlflow.svg","simple-mobx":"simple/mobx.svg","simple-mobxstatetree":"simple/mobxstatetree.svg","simple-mocha":"simple/mocha.svg","simple-mockserviceworker":"simple/mockserviceworker.svg","simple-modal":"simple/modal.svg","simple-modin":"simple/modin.svg","simple-modrinth":"simple/modrinth.svg","simple-modx":"simple/modx.svg","simple-mojeek":"simple/mojeek.svg","simple-moleculer":"simple/moleculer.svg","simple-momenteo":"simple/momenteo.svg","simple-monero":"simple/monero.svg","simple-moneygram":"simple/moneygram.svg","simple-mongodb":"simple/mongodb.svg","simple-mongoose":"simple/mongoose.svg","simple-mongoosedotws":"simple/mongoosedotws.svg","simple-monica":"simple/monica.svg","simple-monkeytie":"simple/monkeytie.svg","simple-monkeytype":"simple/monkeytype.svg","simple-monogame":"simple/monogame.svg","simple-monoprix":"simple/monoprix.svg","simple-monster":"simple/monster.svg","simple-monzo":"simple/monzo.svg","simple-moo":"simple/moo.svg","simple-moodle":"simple/moodle.svg","simple-moonrepo":"simple/moonrepo.svg","simple-moq":"simple/moq.svg","simple-moqups":"simple/moqups.svg","simple-morrisons":"simple/morrisons.svg","simple-moscowmetro":"simple/moscowmetro.svg","simple-motorola":"simple/motorola.svg","simple-movistar":"simple/movistar.svg","simple-mozilla":"simple/mozilla.svg","simple-mpv":"simple/mpv.svg","simple-mqtt":"simple/mqtt.svg","simple-msi":"simple/msi.svg","simple-msibusiness":"simple/msibusiness.svg","simple-mta":"simple/mta.svg","simple-mtr":"simple/mtr.svg","simple-mubi":"simple/mubi.svg","simple-mui":"simple/mui.svg","simple-mulesoft":"simple/mulesoft.svg","simple-muller":"simple/muller.svg","simple-mullvad":"simple/mullvad.svg","simple-multisim":"simple/multisim.svg","simple-mumble":"simple/mumble.svg","simple-muo":"simple/muo.svg","simple-mural":"simple/mural.svg","simple-musescore":"simple/musescore.svg","simple-musicbrainz":"simple/musicbrainz.svg","simple-mxlinux":"simple/mxlinux.svg","simple-myanimelist":"simple/myanimelist.svg","simple-myget":"simple/myget.svg","simple-myob":"simple/myob.svg","simple-myspace":"simple/myspace.svg","simple-mysql":"simple/mysql.svg","simple-n26":"simple/n26.svg","simple-n8n":"simple/n8n.svg","simple-namebase":"simple/namebase.svg","simple-namecheap":"simple/namecheap.svg","simple-namemc":"simple/namemc.svg","simple-namesilo":"simple/namesilo.svg","simple-namuwiki":"simple/namuwiki.svg","simple-nano":"simple/nano.svg","simple-nanostores":"simple/nanostores.svg","simple-napster":"simple/napster.svg","simple-nasa":"simple/nasa.svg","simple-nationalgrid":"simple/nationalgrid.svg","simple-nationalrail":"simple/nationalrail.svg","simple-nativescript":"simple/nativescript.svg","simple-natsdotio":"simple/natsdotio.svg","simple-naver":"simple/naver.svg","simple-nba":"simple/nba.svg","simple-nbb":"simple/nbb.svg","simple-nbc":"simple/nbc.svg","simple-ndr":"simple/ndr.svg","simple-near":"simple/near.svg","simple-nebula":"simple/nebula.svg","simple-nec":"simple/nec.svg","simple-neo4j":"simple/neo4j.svg","simple-neovim":"simple/neovim.svg","simple-neptune":"simple/neptune.svg","simple-nestjs":"simple/nestjs.svg","simple-netapp":"simple/netapp.svg","simple-netbsd":"simple/netbsd.svg","simple-netcup":"simple/netcup.svg","simple-netdata":"simple/netdata.svg","simple-neteasecloudmusic":"simple/neteasecloudmusic.svg","simple-netflix":"simple/netflix.svg","simple-netgear":"simple/netgear.svg","simple-netlify":"simple/netlify.svg","simple-nette":"simple/nette.svg","simple-netto":"simple/netto.svg","simple-neutralinojs":"simple/neutralinojs.svg","simple-newbalance":"simple/newbalance.svg","simple-newegg":"simple/newegg.svg","simple-newjapanprowrestling":"simple/newjapanprowrestling.svg","simple-newrelic":"simple/newrelic.svg","simple-newyorktimes":"simple/newyorktimes.svg","simple-nexon":"simple/nexon.svg","simple-nextbilliondotai":"simple/nextbilliondotai.svg","simple-nextcloud":"simple/nextcloud.svg","simple-nextdns":"simple/nextdns.svg","simple-nextdoor":"simple/nextdoor.svg","simple-nextdotjs":"simple/nextdotjs.svg","simple-nextflow":"simple/nextflow.svg","simple-nextra":"simple/nextra.svg","simple-nextui":"simple/nextui.svg","simple-nexusmods":"simple/nexusmods.svg","simple-nfc":"simple/nfc.svg","simple-nfcore":"simple/nfcore.svg","simple-nginx":"simple/nginx.svg","simple-nginxproxymanager":"simple/nginxproxymanager.svg","simple-ngrok":"simple/ngrok.svg","simple-ngrx":"simple/ngrx.svg","simple-nhl":"simple/nhl.svg","simple-nicehash":"simple/nicehash.svg","simple-niconico":"simple/niconico.svg","simple-nike":"simple/nike.svg","simple-nikon":"simple/nikon.svg","simple-nim":"simple/nim.svg","simple-nissan":"simple/nissan.svg","simple-nixos":"simple/nixos.svg","simple-nodedotjs":"simple/nodedotjs.svg","simple-nodemon":"simple/nodemon.svg","simple-nodered":"simple/nodered.svg","simple-nokia":"simple/nokia.svg","simple-nomad":"simple/nomad.svg","simple-norco":"simple/norco.svg","simple-nordicsemiconductor":"simple/nordicsemiconductor.svg","simple-nordvpn":"simple/nordvpn.svg","simple-normalizedotcss":"simple/normalizedotcss.svg","simple-norton":"simple/norton.svg","simple-norwegian":"simple/norwegian.svg","simple-notepadplusplus":"simple/notepadplusplus.svg","simple-notion":"simple/notion.svg","simple-notist":"simple/notist.svg","simple-nounproject":"simple/nounproject.svg","simple-novu":"simple/novu.svg","simple-now":"simple/now.svg","simple-npm":"simple/npm.svg","simple-nrwl":"simple/nrwl.svg","simple-nsis":"simple/nsis.svg","simple-ntfy":"simple/ntfy.svg","simple-nubank":"simple/nubank.svg","simple-nucleo":"simple/nucleo.svg","simple-nuget":"simple/nuget.svg","simple-nuke":"simple/nuke.svg","simple-numba":"simple/numba.svg","simple-numpy":"simple/numpy.svg","simple-nunjucks":"simple/nunjucks.svg","simple-nushell":"simple/nushell.svg","simple-nutanix":"simple/nutanix.svg","simple-nuxt":"simple/nuxt.svg","simple-nvidia":"simple/nvidia.svg","simple-nvm":"simple/nvm.svg","simple-nx":"simple/nx.svg","simple-nxp":"simple/nxp.svg","simple-nzxt":"simple/nzxt.svg","simple-o2":"simple/o2.svg","simple-obb":"simple/obb.svg","simple-observable":"simple/observable.svg","simple-obsidian":"simple/obsidian.svg","simple-obsstudio":"simple/obsstudio.svg","simple-obtainium":"simple/obtainium.svg","simple-ocaml":"simple/ocaml.svg","simple-oclc":"simple/oclc.svg","simple-oclif":"simple/oclif.svg","simple-octanerender":"simple/octanerender.svg","simple-octave":"simple/octave.svg","simple-octobercms":"simple/octobercms.svg","simple-octoprint":"simple/octoprint.svg","simple-octopusdeploy":"simple/octopusdeploy.svg","simple-oculus":"simple/oculus.svg","simple-odin":"simple/odin.svg","simple-odnoklassniki":"simple/odnoklassniki.svg","simple-odoo":"simple/odoo.svg","simple-odysee":"simple/odysee.svg","simple-ohdear":"simple/ohdear.svg","simple-okcupid":"simple/okcupid.svg","simple-okta":"simple/okta.svg","simple-okx":"simple/okx.svg","simple-ollama":"simple/ollama.svg","simple-omadacloud":"simple/omadacloud.svg","simple-oneplus":"simple/oneplus.svg","simple-onlyfans":"simple/onlyfans.svg","simple-onlyoffice":"simple/onlyoffice.svg","simple-onnx":"simple/onnx.svg","simple-onstar":"simple/onstar.svg","simple-opel":"simple/opel.svg","simple-openaccess":"simple/openaccess.svg","simple-openai":"simple/openai.svg","simple-openaigym":"simple/openaigym.svg","simple-openapiinitiative":"simple/openapiinitiative.svg","simple-openbadges":"simple/openbadges.svg","simple-openbsd":"simple/openbsd.svg","simple-openbugbounty":"simple/openbugbounty.svg","simple-opencollective":"simple/opencollective.svg","simple-opencontainersinitiative":"simple/opencontainersinitiative.svg","simple-opencv":"simple/opencv.svg","simple-openfaas":"simple/openfaas.svg","simple-opengl":"simple/opengl.svg","simple-openhab":"simple/openhab.svg","simple-openid":"simple/openid.svg","simple-openjdk":"simple/openjdk.svg","simple-openjsfoundation":"simple/openjsfoundation.svg","simple-openlayers":"simple/openlayers.svg","simple-openmediavault":"simple/openmediavault.svg","simple-openmined":"simple/openmined.svg","simple-opennebula":"simple/opennebula.svg","simple-openproject":"simple/openproject.svg","simple-openscad":"simple/openscad.svg","simple-opensea":"simple/opensea.svg","simple-opensearch":"simple/opensearch.svg","simple-opensourcehardware":"simple/opensourcehardware.svg","simple-opensourceinitiative":"simple/opensourceinitiative.svg","simple-openssl":"simple/openssl.svg","simple-openstack":"simple/openstack.svg","simple-openstreetmap":"simple/openstreetmap.svg","simple-opensuse":"simple/opensuse.svg","simple-opentelemetry":"simple/opentelemetry.svg","simple-opentext":"simple/opentext.svg","simple-opentofu":"simple/opentofu.svg","simple-openverse":"simple/openverse.svg","simple-openvpn":"simple/openvpn.svg","simple-openwrt":"simple/openwrt.svg","simple-openzeppelin":"simple/openzeppelin.svg","simple-openzfs":"simple/openzfs.svg","simple-opera":"simple/opera.svg","simple-operagx":"simple/operagx.svg","simple-opnsense":"simple/opnsense.svg","simple-oppo":"simple/oppo.svg","simple-opsgenie":"simple/opsgenie.svg","simple-opslevel":"simple/opslevel.svg","simple-optimism":"simple/optimism.svg","simple-orange":"simple/orange.svg","simple-orcid":"simple/orcid.svg","simple-oreilly":"simple/oreilly.svg","simple-org":"simple/org.svg","simple-organicmaps":"simple/organicmaps.svg","simple-origin":"simple/origin.svg","simple-osano":"simple/osano.svg","simple-osf":"simple/osf.svg","simple-osgeo":"simple/osgeo.svg","simple-oshkosh":"simple/oshkosh.svg","simple-osmc":"simple/osmc.svg","simple-osu":"simple/osu.svg","simple-otto":"simple/otto.svg","simple-outline":"simple/outline.svg","simple-overcast":"simple/overcast.svg","simple-overleaf":"simple/overleaf.svg","simple-ovh":"simple/ovh.svg","simple-owasp":"simple/owasp.svg","simple-owncloud":"simple/owncloud.svg","simple-oxygen":"simple/oxygen.svg","simple-oyo":"simple/oyo.svg","simple-p5dotjs":"simple/p5dotjs.svg","simple-packagist":"simple/packagist.svg","simple-packer":"simple/packer.svg","simple-packt":"simple/packt.svg","simple-paddle":"simple/paddle.svg","simple-paddlepaddle":"simple/paddlepaddle.svg","simple-paddypower":"simple/paddypower.svg","simple-pagekit":"simple/pagekit.svg","simple-pagerduty":"simple/pagerduty.svg","simple-pagespeedinsights":"simple/pagespeedinsights.svg","simple-pagseguro":"simple/pagseguro.svg","simple-palantir":"simple/palantir.svg","simple-paloaltonetworks":"simple/paloaltonetworks.svg","simple-paloaltosoftware":"simple/paloaltosoftware.svg","simple-panasonic":"simple/panasonic.svg","simple-pandas":"simple/pandas.svg","simple-pandora":"simple/pandora.svg","simple-pantheon":"simple/pantheon.svg","simple-paperlessngx":"simple/paperlessngx.svg","simple-paperspace":"simple/paperspace.svg","simple-paperswithcode":"simple/paperswithcode.svg","simple-paradoxinteractive":"simple/paradoxinteractive.svg","simple-paramountplus":"simple/paramountplus.svg","simple-paritysubstrate":"simple/paritysubstrate.svg","simple-parrotsecurity":"simple/parrotsecurity.svg","simple-parsedotly":"simple/parsedotly.svg","simple-passport":"simple/passport.svg","simple-pastebin":"simple/pastebin.svg","simple-patreon":"simple/patreon.svg","simple-paychex":"simple/paychex.svg","simple-payhip":"simple/payhip.svg","simple-payloadcms":"simple/payloadcms.svg","simple-payoneer":"simple/payoneer.svg","simple-paypal":"simple/paypal.svg","simple-paytm":"simple/paytm.svg","simple-pcgamingwiki":"simple/pcgamingwiki.svg","simple-pdm":"simple/pdm.svg","simple-pdq":"simple/pdq.svg","simple-peakdesign":"simple/peakdesign.svg","simple-pearson":"simple/pearson.svg","simple-peerlist":"simple/peerlist.svg","simple-peertube":"simple/peertube.svg","simple-pegasusairlines":"simple/pegasusairlines.svg","simple-pelican":"simple/pelican.svg","simple-peloton":"simple/peloton.svg","simple-penny":"simple/penny.svg","simple-penpot":"simple/penpot.svg","simple-percy":"simple/percy.svg","simple-perforce":"simple/perforce.svg","simple-perl":"simple/perl.svg","simple-perplexity":"simple/perplexity.svg","simple-persistent":"simple/persistent.svg","simple-personio":"simple/personio.svg","simple-petsathome":"simple/petsathome.svg","simple-peugeot":"simple/peugeot.svg","simple-pexels":"simple/pexels.svg","simple-pfsense":"simple/pfsense.svg","simple-phabricator":"simple/phabricator.svg","simple-philipshue":"simple/philipshue.svg","simple-phoenixframework":"simple/phoenixframework.svg","simple-phonepe":"simple/phonepe.svg","simple-phosphoricons":"simple/phosphoricons.svg","simple-photobucket":"simple/photobucket.svg","simple-photocrowd":"simple/photocrowd.svg","simple-photon":"simple/photon.svg","simple-photopea":"simple/photopea.svg","simple-php":"simple/php.svg","simple-phpbb":"simple/phpbb.svg","simple-phpmyadmin":"simple/phpmyadmin.svg","simple-phpstorm":"simple/phpstorm.svg","simple-piaggiogroup":"simple/piaggiogroup.svg","simple-piapro":"simple/piapro.svg","simple-picardsurgeles":"simple/picardsurgeles.svg","simple-picartodottv":"simple/picartodottv.svg","simple-picnic":"simple/picnic.svg","simple-picpay":"simple/picpay.svg","simple-picrew":"simple/picrew.svg","simple-picsart":"simple/picsart.svg","simple-picxy":"simple/picxy.svg","simple-pihole":"simple/pihole.svg","simple-pimcore":"simple/pimcore.svg","simple-pinboard":"simple/pinboard.svg","simple-pinescript":"simple/pinescript.svg","simple-pinetwork":"simple/pinetwork.svg","simple-pingdom":"simple/pingdom.svg","simple-pino":"simple/pino.svg","simple-pinterest":"simple/pinterest.svg","simple-pioneerdj":"simple/pioneerdj.svg","simple-piped":"simple/piped.svg","simple-pipx":"simple/pipx.svg","simple-pivotaltracker":"simple/pivotaltracker.svg","simple-piwigo":"simple/piwigo.svg","simple-pix":"simple/pix.svg","simple-pixabay":"simple/pixabay.svg","simple-pixelfed":"simple/pixelfed.svg","simple-pixiv":"simple/pixiv.svg","simple-pixlr":"simple/pixlr.svg","simple-pkgsrc":"simple/pkgsrc.svg","simple-planet":"simple/planet.svg","simple-planetscale":"simple/planetscale.svg","simple-plangrid":"simple/plangrid.svg","simple-platformdotsh":"simple/platformdotsh.svg","simple-platformio":"simple/platformio.svg","simple-platzi":"simple/platzi.svg","simple-plausibleanalytics":"simple/plausibleanalytics.svg","simple-playcanvas":"simple/playcanvas.svg","simple-playerdotme":"simple/playerdotme.svg","simple-playerfm":"simple/playerfm.svg","simple-playstation":"simple/playstation.svg","simple-playstation2":"simple/playstation2.svg","simple-playstation3":"simple/playstation3.svg","simple-playstation4":"simple/playstation4.svg","simple-playstation5":"simple/playstation5.svg","simple-playstationportable":"simple/playstationportable.svg","simple-playstationvita":"simple/playstationvita.svg","simple-pleroma":"simple/pleroma.svg","simple-plesk":"simple/plesk.svg","simple-plex":"simple/plex.svg","simple-plotly":"simple/plotly.svg","simple-plume":"simple/plume.svg","simple-pluralsight":"simple/pluralsight.svg","simple-plurk":"simple/plurk.svg","simple-pluscodes":"simple/pluscodes.svg","simple-pm2":"simple/pm2.svg","simple-pnpm":"simple/pnpm.svg","simple-pocket":"simple/pocket.svg","simple-pocketbase":"simple/pocketbase.svg","simple-pocketcasts":"simple/pocketcasts.svg","simple-podcastaddict":"simple/podcastaddict.svg","simple-podcastindex":"simple/podcastindex.svg","simple-podman":"simple/podman.svg","simple-poe":"simple/poe.svg","simple-poetry":"simple/poetry.svg","simple-pointy":"simple/pointy.svg","simple-polars":"simple/polars.svg","simple-polestar":"simple/polestar.svg","simple-polkadot":"simple/polkadot.svg","simple-poly":"simple/poly.svg","simple-polygon":"simple/polygon.svg","simple-polymerproject":"simple/polymerproject.svg","simple-polywork":"simple/polywork.svg","simple-pond5":"simple/pond5.svg","simple-popos":"simple/popos.svg","simple-porkbun":"simple/porkbun.svg","simple-porsche":"simple/porsche.svg","simple-portainer":"simple/portainer.svg","simple-portswigger":"simple/portswigger.svg","simple-posit":"simple/posit.svg","simple-postcss":"simple/postcss.svg","simple-postgresql":"simple/postgresql.svg","simple-posthog":"simple/posthog.svg","simple-postman":"simple/postman.svg","simple-postmates":"simple/postmates.svg","simple-powers":"simple/powers.svg","simple-prdotco":"simple/prdotco.svg","simple-preact":"simple/preact.svg","simple-precommit":"simple/precommit.svg","simple-prefect":"simple/prefect.svg","simple-premierleague":"simple/premierleague.svg","simple-prepbytes":"simple/prepbytes.svg","simple-prestashop":"simple/prestashop.svg","simple-presto":"simple/presto.svg","simple-prettier":"simple/prettier.svg","simple-pretzel":"simple/pretzel.svg","simple-prevention":"simple/prevention.svg","simple-prezi":"simple/prezi.svg","simple-prime":"simple/prime.svg","simple-primefaces":"simple/primefaces.svg","simple-primeng":"simple/primeng.svg","simple-primereact":"simple/primereact.svg","simple-primevideo":"simple/primevideo.svg","simple-primevue":"simple/primevue.svg","simple-printables":"simple/printables.svg","simple-prisma":"simple/prisma.svg","simple-prismic":"simple/prismic.svg","simple-privatedivision":"simple/privatedivision.svg","simple-privateinternetaccess":"simple/privateinternetaccess.svg","simple-probot":"simple/probot.svg","simple-processingfoundation":"simple/processingfoundation.svg","simple-processwire":"simple/processwire.svg","simple-producthunt":"simple/producthunt.svg","simple-progate":"simple/progate.svg","simple-progress":"simple/progress.svg","simple-prometheus":"simple/prometheus.svg","simple-pronounsdotpage":"simple/pronounsdotpage.svg","simple-prosieben":"simple/prosieben.svg","simple-proteus":"simple/proteus.svg","simple-protocolsdotio":"simple/protocolsdotio.svg","simple-protodotio":"simple/protodotio.svg","simple-proton":"simple/proton.svg","simple-protoncalendar":"simple/protoncalendar.svg","simple-protondb":"simple/protondb.svg","simple-protondrive":"simple/protondrive.svg","simple-protonmail":"simple/protonmail.svg","simple-protonvpn":"simple/protonvpn.svg","simple-protools":"simple/protools.svg","simple-protractor":"simple/protractor.svg","simple-proxmox":"simple/proxmox.svg","simple-pterodactyl":"simple/pterodactyl.svg","simple-pubg":"simple/pubg.svg","simple-publons":"simple/publons.svg","simple-pubmed":"simple/pubmed.svg","simple-pug":"simple/pug.svg","simple-pulumi":"simple/pulumi.svg","simple-puma":"simple/puma.svg","simple-puppet":"simple/puppet.svg","simple-puppeteer":"simple/puppeteer.svg","simple-purescript":"simple/purescript.svg","simple-purgecss":"simple/purgecss.svg","simple-purism":"simple/purism.svg","simple-pushbullet":"simple/pushbullet.svg","simple-pusher":"simple/pusher.svg","simple-pwa":"simple/pwa.svg","simple-pycharm":"simple/pycharm.svg","simple-pycqa":"simple/pycqa.svg","simple-pydantic":"simple/pydantic.svg","simple-pyg":"simple/pyg.svg","simple-pypi":"simple/pypi.svg","simple-pypy":"simple/pypy.svg","simple-pyscaffold":"simple/pyscaffold.svg","simple-pysyft":"simple/pysyft.svg","simple-pytest":"simple/pytest.svg","simple-python":"simple/python.svg","simple-pythonanywhere":"simple/pythonanywhere.svg","simple-pytorch":"simple/pytorch.svg","simple-pyup":"simple/pyup.svg","simple-qantas":"simple/qantas.svg","simple-qase":"simple/qase.svg","simple-qatarairways":"simple/qatarairways.svg","simple-qbittorrent":"simple/qbittorrent.svg","simple-qemu":"simple/qemu.svg","simple-qgis":"simple/qgis.svg","simple-qi":"simple/qi.svg","simple-qiita":"simple/qiita.svg","simple-qiskit":"simple/qiskit.svg","simple-qiwi":"simple/qiwi.svg","simple-qlik":"simple/qlik.svg","simple-qmk":"simple/qmk.svg","simple-qnap":"simple/qnap.svg","simple-qq":"simple/qq.svg","simple-qt":"simple/qt.svg","simple-qualcomm":"simple/qualcomm.svg","simple-qualtrics":"simple/qualtrics.svg","simple-qualys":"simple/qualys.svg","simple-quantcast":"simple/quantcast.svg","simple-quantconnect":"simple/quantconnect.svg","simple-quarkus":"simple/quarkus.svg","simple-quarto":"simple/quarto.svg","simple-quasar":"simple/quasar.svg","simple-qubesos":"simple/qubesos.svg","simple-quest":"simple/quest.svg","simple-quickbooks":"simple/quickbooks.svg","simple-quicklook":"simple/quicklook.svg","simple-quicktime":"simple/quicktime.svg","simple-quicktype":"simple/quicktype.svg","simple-quip":"simple/quip.svg","simple-quizlet":"simple/quizlet.svg","simple-quora":"simple/quora.svg","simple-qwant":"simple/qwant.svg","simple-qwik":"simple/qwik.svg","simple-qwiklabs":"simple/qwiklabs.svg","simple-qzone":"simple/qzone.svg","simple-r":"simple/r.svg","simple-r3":"simple/r3.svg","simple-rabbitmq":"simple/rabbitmq.svg","simple-racket":"simple/racket.svg","simple-radar":"simple/radar.svg","simple-radarr":"simple/radarr.svg","simple-radixui":"simple/radixui.svg","simple-radstudio":"simple/radstudio.svg","simple-railway":"simple/railway.svg","simple-rainmeter":"simple/rainmeter.svg","simple-rakuten":"simple/rakuten.svg","simple-ram":"simple/ram.svg","simple-rancher":"simple/rancher.svg","simple-rapid":"simple/rapid.svg","simple-rarible":"simple/rarible.svg","simple-rasa":"simple/rasa.svg","simple-raspberrypi":"simple/raspberrypi.svg","simple-ravelry":"simple/ravelry.svg","simple-ray":"simple/ray.svg","simple-raycast":"simple/raycast.svg","simple-raylib":"simple/raylib.svg","simple-razer":"simple/razer.svg","simple-razorpay":"simple/razorpay.svg","simple-rclone":"simple/rclone.svg","simple-react":"simple/react.svg","simple-reactbootstrap":"simple/reactbootstrap.svg","simple-reacthookform":"simple/reacthookform.svg","simple-reactiveresume":"simple/reactiveresume.svg","simple-reactivex":"simple/reactivex.svg","simple-reactos":"simple/reactos.svg","simple-reactquery":"simple/reactquery.svg","simple-reactrouter":"simple/reactrouter.svg","simple-reacttable":"simple/reacttable.svg","simple-readdotcv":"simple/readdotcv.svg","simple-readme":"simple/readme.svg","simple-readthedocs":"simple/readthedocs.svg","simple-reason":"simple/reason.svg","simple-reasonstudios":"simple/reasonstudios.svg","simple-recoil":"simple/recoil.svg","simple-red":"simple/red.svg","simple-redash":"simple/redash.svg","simple-redbubble":"simple/redbubble.svg","simple-redbull":"simple/redbull.svg","simple-redcandlegames":"simple/redcandlegames.svg","simple-reddit":"simple/reddit.svg","simple-redhat":"simple/redhat.svg","simple-redhatopenshift":"simple/redhatopenshift.svg","simple-redis":"simple/redis.svg","simple-redmine":"simple/redmine.svg","simple-redox":"simple/redox.svg","simple-redragon":"simple/redragon.svg","simple-redsys":"simple/redsys.svg","simple-redux":"simple/redux.svg","simple-reduxsaga":"simple/reduxsaga.svg","simple-redwoodjs":"simple/redwoodjs.svg","simple-reebok":"simple/reebok.svg","simple-refine":"simple/refine.svg","simple-refinedgithub":"simple/refinedgithub.svg","simple-relay":"simple/relay.svg","simple-relianceindustrieslimited":"simple/relianceindustrieslimited.svg","simple-remark":"simple/remark.svg","simple-remedyentertainment":"simple/remedyentertainment.svg","simple-remix":"simple/remix.svg","simple-removedotbg":"simple/removedotbg.svg","simple-renault":"simple/renault.svg","simple-render":"simple/render.svg","simple-renovate":"simple/renovate.svg","simple-renpy":"simple/renpy.svg","simple-renren":"simple/renren.svg","simple-replicate":"simple/replicate.svg","simple-replit":"simple/replit.svg","simple-republicofgamers":"simple/republicofgamers.svg","simple-rescript":"simple/rescript.svg","simple-rescuetime":"simple/rescuetime.svg","simple-researchgate":"simple/researchgate.svg","simple-resend":"simple/resend.svg","simple-resharper":"simple/resharper.svg","simple-resurrectionremixos":"simple/resurrectionremixos.svg","simple-retool":"simple/retool.svg","simple-retroarch":"simple/retroarch.svg","simple-retropie":"simple/retropie.svg","simple-revanced":"simple/revanced.svg","simple-revealdotjs":"simple/revealdotjs.svg","simple-reverbnation":"simple/reverbnation.svg","simple-revoltdotchat":"simple/revoltdotchat.svg","simple-revolut":"simple/revolut.svg","simple-rewe":"simple/rewe.svg","simple-rezgo":"simple/rezgo.svg","simple-rhinoceros":"simple/rhinoceros.svg","simple-rich":"simple/rich.svg","simple-rider":"simple/rider.svg","simple-rimacautomobili":"simple/rimacautomobili.svg","simple-rime":"simple/rime.svg","simple-ring":"simple/ring.svg","simple-riotgames":"simple/riotgames.svg","simple-ripple":"simple/ripple.svg","simple-riscv":"simple/riscv.svg","simple-riseup":"simple/riseup.svg","simple-ritzcarlton":"simple/ritzcarlton.svg","simple-rive":"simple/rive.svg","simple-roadmapdotsh":"simple/roadmapdotsh.svg","simple-roamresearch":"simple/roamresearch.svg","simple-robinhood":"simple/robinhood.svg","simple-roblox":"simple/roblox.svg","simple-robloxstudio":"simple/robloxstudio.svg","simple-roboflow":"simple/roboflow.svg","simple-robotframework":"simple/robotframework.svg","simple-rocket":"simple/rocket.svg","simple-rocketdotchat":"simple/rocketdotchat.svg","simple-rocksdb":"simple/rocksdb.svg","simple-rockstargames":"simple/rockstargames.svg","simple-rockwellautomation":"simple/rockwellautomation.svg","simple-rockylinux":"simple/rockylinux.svg","simple-roku":"simple/roku.svg","simple-roll20":"simple/roll20.svg","simple-rollsroyce":"simple/rollsroyce.svg","simple-rollupdotjs":"simple/rollupdotjs.svg","simple-rook":"simple/rook.svg","simple-roon":"simple/roon.svg","simple-rootme":"simple/rootme.svg","simple-roots":"simple/roots.svg","simple-rootsbedrock":"simple/rootsbedrock.svg","simple-rootssage":"simple/rootssage.svg","simple-ros":"simple/ros.svg","simple-rossmann":"simple/rossmann.svg","simple-rotaryinternational":"simple/rotaryinternational.svg","simple-rottentomatoes":"simple/rottentomatoes.svg","simple-roundcube":"simple/roundcube.svg","simple-rsocket":"simple/rsocket.svg","simple-rss":"simple/rss.svg","simple-rstudioide":"simple/rstudioide.svg","simple-rte":"simple/rte.svg","simple-rtl":"simple/rtl.svg","simple-rtlzwei":"simple/rtlzwei.svg","simple-rtm":"simple/rtm.svg","simple-rubocop":"simple/rubocop.svg","simple-ruby":"simple/ruby.svg","simple-rubygems":"simple/rubygems.svg","simple-rubymine":"simple/rubymine.svg","simple-rubyonrails":"simple/rubyonrails.svg","simple-rubysinatra":"simple/rubysinatra.svg","simple-ruff":"simple/ruff.svg","simple-rumahweb":"simple/rumahweb.svg","simple-rumble":"simple/rumble.svg","simple-rundeck":"simple/rundeck.svg","simple-runkeeper":"simple/runkeeper.svg","simple-runkit":"simple/runkit.svg","simple-runrundotit":"simple/runrundotit.svg","simple-rust":"simple/rust.svg","simple-rustdesk":"simple/rustdesk.svg","simple-rxdb":"simple/rxdb.svg","simple-ryanair":"simple/ryanair.svg","simple-rye":"simple/rye.svg","simple-s7airlines":"simple/s7airlines.svg","simple-sabanci":"simple/sabanci.svg","simple-safari":"simple/safari.svg","simple-sage":"simple/sage.svg","simple-sahibinden":"simple/sahibinden.svg","simple-sailfishos":"simple/sailfishos.svg","simple-sailsdotjs":"simple/sailsdotjs.svg","simple-salesforce":"simple/salesforce.svg","simple-salla":"simple/salla.svg","simple-saltproject":"simple/saltproject.svg","simple-samsclub":"simple/samsclub.svg","simple-samsung":"simple/samsung.svg","simple-samsungpay":"simple/samsungpay.svg","simple-sandisk":"simple/sandisk.svg","simple-sanfranciscomunicipalrailway":"simple/sanfranciscomunicipalrailway.svg","simple-sanic":"simple/sanic.svg","simple-sanity":"simple/sanity.svg","simple-saopaulometro":"simple/saopaulometro.svg","simple-sap":"simple/sap.svg","simple-sartorius":"simple/sartorius.svg","simple-sass":"simple/sass.svg","simple-sat1":"simple/sat1.svg","simple-satellite":"simple/satellite.svg","simple-saturn":"simple/saturn.svg","simple-saucelabs":"simple/saucelabs.svg","simple-saudia":"simple/saudia.svg","simple-scala":"simple/scala.svg","simple-scalar":"simple/scalar.svg","simple-scaleway":"simple/scaleway.svg","simple-scania":"simple/scania.svg","simple-schneiderelectric":"simple/schneiderelectric.svg","simple-scikitlearn":"simple/scikitlearn.svg","simple-scilab":"simple/scilab.svg","simple-scipy":"simple/scipy.svg","simple-scopus":"simple/scopus.svg","simple-scpfoundation":"simple/scpfoundation.svg","simple-scrapbox":"simple/scrapbox.svg","simple-scrapy":"simple/scrapy.svg","simple-scratch":"simple/scratch.svg","simple-screencastify":"simple/screencastify.svg","simple-scribd":"simple/scribd.svg","simple-scrimba":"simple/scrimba.svg","simple-scrollreveal":"simple/scrollreveal.svg","simple-scrumalliance":"simple/scrumalliance.svg","simple-scrutinizerci":"simple/scrutinizerci.svg","simple-scylladb":"simple/scylladb.svg","simple-seagate":"simple/seagate.svg","simple-searxng":"simple/searxng.svg","simple-seat":"simple/seat.svg","simple-seatgeek":"simple/seatgeek.svg","simple-securityscorecard":"simple/securityscorecard.svg","simple-sefaria":"simple/sefaria.svg","simple-sega":"simple/sega.svg","simple-selenium":"simple/selenium.svg","simple-sellfy":"simple/sellfy.svg","simple-semanticrelease":"simple/semanticrelease.svg","simple-semanticscholar":"simple/semanticscholar.svg","simple-semanticui":"simple/semanticui.svg","simple-semanticuireact":"simple/semanticuireact.svg","simple-semanticweb":"simple/semanticweb.svg","simple-semaphoreci":"simple/semaphoreci.svg","simple-semrush":"simple/semrush.svg","simple-semver":"simple/semver.svg","simple-sencha":"simple/sencha.svg","simple-sendgrid":"simple/sendgrid.svg","simple-sennheiser":"simple/sennheiser.svg","simple-sensu":"simple/sensu.svg","simple-sentry":"simple/sentry.svg","simple-sepa":"simple/sepa.svg","simple-sequelize":"simple/sequelize.svg","simple-serverfault":"simple/serverfault.svg","simple-serverless":"simple/serverless.svg","simple-session":"simple/session.svg","simple-sessionize":"simple/sessionize.svg","simple-setapp":"simple/setapp.svg","simple-sfml":"simple/sfml.svg","simple-shadcnui":"simple/shadcnui.svg","simple-shadow":"simple/shadow.svg","simple-shanghaimetro":"simple/shanghaimetro.svg","simple-sharex":"simple/sharex.svg","simple-sharp":"simple/sharp.svg","simple-shazam":"simple/shazam.svg","simple-shell":"simple/shell.svg","simple-shelly":"simple/shelly.svg","simple-shenzhenmetro":"simple/shenzhenmetro.svg","simple-shieldsdotio":"simple/shieldsdotio.svg","simple-shikimori":"simple/shikimori.svg","simple-shopee":"simple/shopee.svg","simple-shopify":"simple/shopify.svg","simple-shopware":"simple/shopware.svg","simple-shortcut":"simple/shortcut.svg","simple-showpad":"simple/showpad.svg","simple-showtime":"simple/showtime.svg","simple-showwcase":"simple/showwcase.svg","simple-shutterstock":"simple/shutterstock.svg","simple-sidekiq":"simple/sidekiq.svg","simple-sidequest":"simple/sidequest.svg","simple-siemens":"simple/siemens.svg","simple-sifive":"simple/sifive.svg","simple-signal":"simple/signal.svg","simple-silverairways":"simple/silverairways.svg","simple-similarweb":"simple/similarweb.svg","simple-simkl":"simple/simkl.svg","simple-simpleanalytics":"simple/simpleanalytics.svg","simple-simpleicons":"simple/simpleicons.svg","simple-simplelogin":"simple/simplelogin.svg","simple-simplenote":"simple/simplenote.svg","simple-simplex":"simple/simplex.svg","simple-sinaweibo":"simple/sinaweibo.svg","simple-singaporeairlines":"simple/singaporeairlines.svg","simple-singlestore":"simple/singlestore.svg","simple-sitecore":"simple/sitecore.svg","simple-sitepoint":"simple/sitepoint.svg","simple-siyuan":"simple/siyuan.svg","simple-skaffold":"simple/skaffold.svg","simple-sketch":"simple/sketch.svg","simple-sketchfab":"simple/sketchfab.svg","simple-sketchup":"simple/sketchup.svg","simple-skillshare":"simple/skillshare.svg","simple-skoda":"simple/skoda.svg","simple-sky":"simple/sky.svg","simple-skypack":"simple/skypack.svg","simple-slack":"simple/slack.svg","simple-slackware":"simple/slackware.svg","simple-slashdot":"simple/slashdot.svg","simple-slickpic":"simple/slickpic.svg","simple-slides":"simple/slides.svg","simple-slideshare":"simple/slideshare.svg","simple-slint":"simple/slint.svg","simple-smart":"simple/smart.svg","simple-smartthings":"simple/smartthings.svg","simple-smashingmagazine":"simple/smashingmagazine.svg","simple-smrt":"simple/smrt.svg","simple-smugmug":"simple/smugmug.svg","simple-snapchat":"simple/snapchat.svg","simple-snapcraft":"simple/snapcraft.svg","simple-snapdragon":"simple/snapdragon.svg","simple-sncf":"simple/sncf.svg","simple-snort":"simple/snort.svg","simple-snowflake":"simple/snowflake.svg","simple-snowpack":"simple/snowpack.svg","simple-snyk":"simple/snyk.svg","simple-socialblade":"simple/socialblade.svg","simple-society6":"simple/society6.svg","simple-socket":"simple/socket.svg","simple-socketdotio":"simple/socketdotio.svg","simple-softcatala":"simple/softcatala.svg","simple-softpedia":"simple/softpedia.svg","simple-sogou":"simple/sogou.svg","simple-solana":"simple/solana.svg","simple-solid":"simple/solid.svg","simple-solidity":"simple/solidity.svg","simple-sololearn":"simple/sololearn.svg","simple-solus":"simple/solus.svg","simple-sonar":"simple/sonar.svg","simple-sonarcloud":"simple/sonarcloud.svg","simple-sonarlint":"simple/sonarlint.svg","simple-sonarqube":"simple/sonarqube.svg","simple-sonarr":"simple/sonarr.svg","simple-sonatype":"simple/sonatype.svg","simple-songkick":"simple/songkick.svg","simple-songoda":"simple/songoda.svg","simple-sonicwall":"simple/sonicwall.svg","simple-sonos":"simple/sonos.svg","simple-sony":"simple/sony.svg","simple-soriana":"simple/soriana.svg","simple-soundcharts":"simple/soundcharts.svg","simple-soundcloud":"simple/soundcloud.svg","simple-sourceengine":"simple/sourceengine.svg","simple-sourceforge":"simple/sourceforge.svg","simple-sourcehut":"simple/sourcehut.svg","simple-sourcetree":"simple/sourcetree.svg","simple-southwestairlines":"simple/southwestairlines.svg","simple-spacemacs":"simple/spacemacs.svg","simple-spaceship":"simple/spaceship.svg","simple-spacex":"simple/spacex.svg","simple-spacy":"simple/spacy.svg","simple-sparkar":"simple/sparkar.svg","simple-sparkasse":"simple/sparkasse.svg","simple-sparkfun":"simple/sparkfun.svg","simple-sparkpost":"simple/sparkpost.svg","simple-spdx":"simple/spdx.svg","simple-speakerdeck":"simple/speakerdeck.svg","simple-spectrum":"simple/spectrum.svg","simple-speedtest":"simple/speedtest.svg","simple-speedypage":"simple/speedypage.svg","simple-sphinx":"simple/sphinx.svg","simple-spigotmc":"simple/spigotmc.svg","simple-spine":"simple/spine.svg","simple-spinnaker":"simple/spinnaker.svg","simple-splunk":"simple/splunk.svg","simple-spoj":"simple/spoj.svg","simple-spond":"simple/spond.svg","simple-spotify":"simple/spotify.svg","simple-spotlight":"simple/spotlight.svg","simple-spreadshirt":"simple/spreadshirt.svg","simple-spreaker":"simple/spreaker.svg","simple-spring":"simple/spring.svg","simple-spring_creators":"simple/spring_creators.svg","simple-springboot":"simple/springboot.svg","simple-springsecurity":"simple/springsecurity.svg","simple-spyderide":"simple/spyderide.svg","simple-sqlalchemy":"simple/sqlalchemy.svg","simple-sqlite":"simple/sqlite.svg","simple-square":"simple/square.svg","simple-squareenix":"simple/squareenix.svg","simple-squarespace":"simple/squarespace.svg","simple-srgssr":"simple/srgssr.svg","simple-ssrn":"simple/ssrn.svg","simple-sst":"simple/sst.svg","simple-stackbit":"simple/stackbit.svg","simple-stackblitz":"simple/stackblitz.svg","simple-stackedit":"simple/stackedit.svg","simple-stackexchange":"simple/stackexchange.svg","simple-stackhawk":"simple/stackhawk.svg","simple-stackoverflow":"simple/stackoverflow.svg","simple-stackshare":"simple/stackshare.svg","simple-stadia":"simple/stadia.svg","simple-staffbase":"simple/staffbase.svg","simple-stagetimer":"simple/stagetimer.svg","simple-standardjs":"simple/standardjs.svg","simple-standardresume":"simple/standardresume.svg","simple-starbucks":"simple/starbucks.svg","simple-stardock":"simple/stardock.svg","simple-starlingbank":"simple/starlingbank.svg","simple-starship":"simple/starship.svg","simple-startdotgg":"simple/startdotgg.svg","simple-startpage":"simple/startpage.svg","simple-startrek":"simple/startrek.svg","simple-starz":"simple/starz.svg","simple-statamic":"simple/statamic.svg","simple-statista":"simple/statista.svg","simple-statuspage":"simple/statuspage.svg","simple-statuspal":"simple/statuspal.svg","simple-steam":"simple/steam.svg","simple-steamdb":"simple/steamdb.svg","simple-steamdeck":"simple/steamdeck.svg","simple-steamworks":"simple/steamworks.svg","simple-steelseries":"simple/steelseries.svg","simple-steem":"simple/steem.svg","simple-steemit":"simple/steemit.svg","simple-steinberg":"simple/steinberg.svg","simple-stellar":"simple/stellar.svg","simple-stencil":"simple/stencil.svg","simple-stencyl":"simple/stencyl.svg","simple-stimulus":"simple/stimulus.svg","simple-stmicroelectronics":"simple/stmicroelectronics.svg","simple-stockx":"simple/stockx.svg","simple-stopstalk":"simple/stopstalk.svg","simple-storyblok":"simple/storyblok.svg","simple-storybook":"simple/storybook.svg","simple-strapi":"simple/strapi.svg","simple-strava":"simple/strava.svg","simple-streamlabs":"simple/streamlabs.svg","simple-streamlit":"simple/streamlit.svg","simple-streamrunners":"simple/streamrunners.svg","simple-stremio":"simple/stremio.svg","simple-stripe":"simple/stripe.svg","simple-strongswan":"simple/strongswan.svg","simple-stryker":"simple/stryker.svg","simple-stubhub":"simple/stubhub.svg","simple-studio3t":"simple/studio3t.svg","simple-styledcomponents":"simple/styledcomponents.svg","simple-stylelint":"simple/stylelint.svg","simple-styleshare":"simple/styleshare.svg","simple-stylus":"simple/stylus.svg","simple-subaru":"simple/subaru.svg","simple-sublimetext":"simple/sublimetext.svg","simple-substack":"simple/substack.svg","simple-subtitleedit":"simple/subtitleedit.svg","simple-subversion":"simple/subversion.svg","simple-suckless":"simple/suckless.svg","simple-sui":"simple/sui.svg","simple-sumologic":"simple/sumologic.svg","simple-suno":"simple/suno.svg","simple-sunrise":"simple/sunrise.svg","simple-supabase":"simple/supabase.svg","simple-supercrease":"simple/supercrease.svg","simple-supermicro":"simple/supermicro.svg","simple-superuser":"simple/superuser.svg","simple-surfshark":"simple/surfshark.svg","simple-surrealdb":"simple/surrealdb.svg","simple-surveymonkey":"simple/surveymonkey.svg","simple-suse":"simple/suse.svg","simple-suzuki":"simple/suzuki.svg","simple-svelte":"simple/svelte.svg","simple-svg":"simple/svg.svg","simple-svgdotjs":"simple/svgdotjs.svg","simple-svgo":"simple/svgo.svg","simple-svgtrace":"simple/svgtrace.svg","simple-swagger":"simple/swagger.svg","simple-swarm":"simple/swarm.svg","simple-sway":"simple/sway.svg","simple-swc":"simple/swc.svg","simple-swift":"simple/swift.svg","simple-swiggy":"simple/swiggy.svg","simple-swiper":"simple/swiper.svg","simple-swr":"simple/swr.svg","simple-symantec":"simple/symantec.svg","simple-symbolab":"simple/symbolab.svg","simple-symfony":"simple/symfony.svg","simple-symphony":"simple/symphony.svg","simple-sympy":"simple/sympy.svg","simple-syncthing":"simple/syncthing.svg","simple-synology":"simple/synology.svg","simple-system76":"simple/system76.svg","simple-tabelog":"simple/tabelog.svg","simple-tablecheck":"simple/tablecheck.svg","simple-tacobell":"simple/tacobell.svg","simple-tado":"simple/tado.svg","simple-taichigraphics":"simple/taichigraphics.svg","simple-taichilang":"simple/taichilang.svg","simple-tails":"simple/tails.svg","simple-tailscale":"simple/tailscale.svg","simple-tailwindcss":"simple/tailwindcss.svg","simple-taipy":"simple/taipy.svg","simple-taketwointeractivesoftware":"simple/taketwointeractivesoftware.svg","simple-talend":"simple/talend.svg","simple-talenthouse":"simple/talenthouse.svg","simple-talos":"simple/talos.svg","simple-tamiya":"simple/tamiya.svg","simple-tampermonkey":"simple/tampermonkey.svg","simple-taobao":"simple/taobao.svg","simple-tapas":"simple/tapas.svg","simple-target":"simple/target.svg","simple-tarom":"simple/tarom.svg","simple-task":"simple/task.svg","simple-tasmota":"simple/tasmota.svg","simple-tata":"simple/tata.svg","simple-tauri":"simple/tauri.svg","simple-taxbuzz":"simple/taxbuzz.svg","simple-tcs":"simple/tcs.svg","simple-teal":"simple/teal.svg","simple-teamcity":"simple/teamcity.svg","simple-teamspeak":"simple/teamspeak.svg","simple-teamviewer":"simple/teamviewer.svg","simple-techcrunch":"simple/techcrunch.svg","simple-ted":"simple/ted.svg","simple-teepublic":"simple/teepublic.svg","simple-teespring":"simple/teespring.svg","simple-tekton":"simple/tekton.svg","simple-tele5":"simple/tele5.svg","simple-telefonica":"simple/telefonica.svg","simple-telegram":"simple/telegram.svg","simple-telegraph":"simple/telegraph.svg","simple-telequebec":"simple/telequebec.svg","simple-temporal":"simple/temporal.svg","simple-tensorflow":"simple/tensorflow.svg","simple-teradata":"simple/teradata.svg","simple-teratail":"simple/teratail.svg","simple-termius":"simple/termius.svg","simple-terraform":"simple/terraform.svg","simple-tesco":"simple/tesco.svg","simple-tesla":"simple/tesla.svg","simple-testcafe":"simple/testcafe.svg","simple-testin":"simple/testin.svg","simple-testinglibrary":"simple/testinglibrary.svg","simple-testrail":"simple/testrail.svg","simple-tether":"simple/tether.svg","simple-textpattern":"simple/textpattern.svg","simple-tga":"simple/tga.svg","simple-thangs":"simple/thangs.svg","simple-thanos":"simple/thanos.svg","simple-thealgorithms":"simple/thealgorithms.svg","simple-theboringcompany":"simple/theboringcompany.svg","simple-theconversation":"simple/theconversation.svg","simple-thefinals":"simple/thefinals.svg","simple-theguardian":"simple/theguardian.svg","simple-theirishtimes":"simple/theirishtimes.svg","simple-themighty":"simple/themighty.svg","simple-themodelsresource":"simple/themodelsresource.svg","simple-themoviedatabase":"simple/themoviedatabase.svg","simple-thenorthface":"simple/thenorthface.svg","simple-theodinproject":"simple/theodinproject.svg","simple-theregister":"simple/theregister.svg","simple-thesoundsresource":"simple/thesoundsresource.svg","simple-thespritersresource":"simple/thespritersresource.svg","simple-thewashingtonpost":"simple/thewashingtonpost.svg","simple-theweatherchannel":"simple/theweatherchannel.svg","simple-thingiverse":"simple/thingiverse.svg","simple-thinkpad":"simple/thinkpad.svg","simple-thirdweb":"simple/thirdweb.svg","simple-threadless":"simple/threadless.svg","simple-threads":"simple/threads.svg","simple-threedotjs":"simple/threedotjs.svg","simple-threema":"simple/threema.svg","simple-thumbtack":"simple/thumbtack.svg","simple-thunderbird":"simple/thunderbird.svg","simple-thunderstore":"simple/thunderstore.svg","simple-thurgauerkantonalbank":"simple/thurgauerkantonalbank.svg","simple-thymeleaf":"simple/thymeleaf.svg","simple-ticketmaster":"simple/ticketmaster.svg","simple-ticktick":"simple/ticktick.svg","simple-tidal":"simple/tidal.svg","simple-tiddlywiki":"simple/tiddlywiki.svg","simple-tide":"simple/tide.svg","simple-tidyverse":"simple/tidyverse.svg","simple-tietoevry":"simple/tietoevry.svg","simple-tiktok":"simple/tiktok.svg","simple-tildapublishing":"simple/tildapublishing.svg","simple-tile":"simple/tile.svg","simple-timescale":"simple/timescale.svg","simple-tina":"simple/tina.svg","simple-tinder":"simple/tinder.svg","simple-tindie":"simple/tindie.svg","simple-tinkercad":"simple/tinkercad.svg","simple-tinygrad":"simple/tinygrad.svg","simple-tinyletter":"simple/tinyletter.svg","simple-tistory":"simple/tistory.svg","simple-tldraw":"simple/tldraw.svg","simple-tmux":"simple/tmux.svg","simple-todoist":"simple/todoist.svg","simple-toggl":"simple/toggl.svg","simple-toggltrack":"simple/toggltrack.svg","simple-tokyometro":"simple/tokyometro.svg","simple-toll":"simple/toll.svg","simple-toml":"simple/toml.svg","simple-tomorrowland":"simple/tomorrowland.svg","simple-tomtom":"simple/tomtom.svg","simple-ton":"simple/ton.svg","simple-topcoder":"simple/topcoder.svg","simple-topdotgg":"simple/topdotgg.svg","simple-toptal":"simple/toptal.svg","simple-torbrowser":"simple/torbrowser.svg","simple-torproject":"simple/torproject.svg","simple-toshiba":"simple/toshiba.svg","simple-totvs":"simple/totvs.svg","simple-tourbox":"simple/tourbox.svg","simple-tower":"simple/tower.svg","simple-toyota":"simple/toyota.svg","simple-tplink":"simple/tplink.svg","simple-tqdm":"simple/tqdm.svg","simple-traccar":"simple/traccar.svg","simple-tradingview":"simple/tradingview.svg","simple-traefikmesh":"simple/traefikmesh.svg","simple-traefikproxy":"simple/traefikproxy.svg","simple-trailforks":"simple/trailforks.svg","simple-trainerroad":"simple/trainerroad.svg","simple-trakt":"simple/trakt.svg","simple-transifex":"simple/transifex.svg","simple-transmission":"simple/transmission.svg","simple-transportforireland":"simple/transportforireland.svg","simple-transportforlondon":"simple/transportforlondon.svg","simple-travisci":"simple/travisci.svg","simple-treehouse":"simple/treehouse.svg","simple-trello":"simple/trello.svg","simple-trendmicro":"simple/trendmicro.svg","simple-treyarch":"simple/treyarch.svg","simple-tricentis":"simple/tricentis.svg","simple-trilium":"simple/trilium.svg","simple-triller":"simple/triller.svg","simple-trillertv":"simple/trillertv.svg","simple-trimble":"simple/trimble.svg","simple-trino":"simple/trino.svg","simple-tripadvisor":"simple/tripadvisor.svg","simple-tripdotcom":"simple/tripdotcom.svg","simple-trivago":"simple/trivago.svg","simple-trivy":"simple/trivy.svg","simple-trove":"simple/trove.svg","simple-trpc":"simple/trpc.svg","simple-truenas":"simple/truenas.svg","simple-trueup":"simple/trueup.svg","simple-trulia":"simple/trulia.svg","simple-trustedshops":"simple/trustedshops.svg","simple-trustpilot":"simple/trustpilot.svg","simple-tryhackme":"simple/tryhackme.svg","simple-tryitonline":"simple/tryitonline.svg","simple-tsnode":"simple/tsnode.svg","simple-tubi":"simple/tubi.svg","simple-tui":"simple/tui.svg","simple-tumblr":"simple/tumblr.svg","simple-tunein":"simple/tunein.svg","simple-turbo":"simple/turbo.svg","simple-turborepo":"simple/turborepo.svg","simple-turbosquid":"simple/turbosquid.svg","simple-turkishairlines":"simple/turkishairlines.svg","simple-turso":"simple/turso.svg","simple-tuta":"simple/tuta.svg","simple-tv4play":"simple/tv4play.svg","simple-tvtime":"simple/tvtime.svg","simple-twilio":"simple/twilio.svg","simple-twinkly":"simple/twinkly.svg","simple-twinmotion":"simple/twinmotion.svg","simple-twitch":"simple/twitch.svg","simple-typeform":"simple/typeform.svg","simple-typeorm":"simple/typeorm.svg","simple-typer":"simple/typer.svg","simple-typescript":"simple/typescript.svg","simple-typo3":"simple/typo3.svg","simple-typst":"simple/typst.svg","simple-uber":"simple/uber.svg","simple-ubereats":"simple/ubereats.svg","simple-ubiquiti":"simple/ubiquiti.svg","simple-ubisoft":"simple/ubisoft.svg","simple-ublockorigin":"simple/ublockorigin.svg","simple-ubuntu":"simple/ubuntu.svg","simple-ubuntumate":"simple/ubuntumate.svg","simple-udacity":"simple/udacity.svg","simple-udemy":"simple/udemy.svg","simple-udotsdotnews":"simple/udotsdotnews.svg","simple-ufc":"simple/ufc.svg","simple-uikit":"simple/uikit.svg","simple-uipath":"simple/uipath.svg","simple-ukca":"simple/ukca.svg","simple-ultralytics":"simple/ultralytics.svg","simple-ulule":"simple/ulule.svg","simple-umami":"simple/umami.svg","simple-umbraco":"simple/umbraco.svg","simple-uml":"simple/uml.svg","simple-unacademy":"simple/unacademy.svg","simple-underarmour":"simple/underarmour.svg","simple-underscoredotjs":"simple/underscoredotjs.svg","simple-undertale":"simple/undertale.svg","simple-unicode":"simple/unicode.svg","simple-unilever":"simple/unilever.svg","simple-uniqlo":"simple/uniqlo.svg","simple-uniqlo_ja":"simple/uniqlo_ja.svg","simple-unitedairlines":"simple/unitedairlines.svg","simple-unitednations":"simple/unitednations.svg","simple-unity":"simple/unity.svg","simple-unjs":"simple/unjs.svg","simple-unlicense":"simple/unlicense.svg","simple-unocss":"simple/unocss.svg","simple-unpkg":"simple/unpkg.svg","simple-unraid":"simple/unraid.svg","simple-unrealengine":"simple/unrealengine.svg","simple-unsplash":"simple/unsplash.svg","simple-untappd":"simple/untappd.svg","simple-upcloud":"simple/upcloud.svg","simple-uphold":"simple/uphold.svg","simple-uplabs":"simple/uplabs.svg","simple-upptime":"simple/upptime.svg","simple-ups":"simple/ups.svg","simple-upstash":"simple/upstash.svg","simple-uptimekuma":"simple/uptimekuma.svg","simple-upwork":"simple/upwork.svg","simple-usps":"simple/usps.svg","simple-utorrent":"simple/utorrent.svg","simple-uv":"simple/uv.svg","simple-v":"simple/v.svg","simple-v0":"simple/v0.svg","simple-v2ex":"simple/v2ex.svg","simple-v8":"simple/v8.svg","simple-vaadin":"simple/vaadin.svg","simple-vagrant":"simple/vagrant.svg","simple-vala":"simple/vala.svg","simple-valorant":"simple/valorant.svg","simple-valve":"simple/valve.svg","simple-vapor":"simple/vapor.svg","simple-vault":"simple/vault.svg","simple-vaultwarden":"simple/vaultwarden.svg","simple-vauxhall":"simple/vauxhall.svg","simple-vbulletin":"simple/vbulletin.svg","simple-vectary":"simple/vectary.svg","simple-vectorlogozone":"simple/vectorlogozone.svg","simple-vectorworks":"simple/vectorworks.svg","simple-veeam":"simple/veeam.svg","simple-veed":"simple/veed.svg","simple-veepee":"simple/veepee.svg","simple-vega":"simple/vega.svg","simple-vegas":"simple/vegas.svg","simple-velog":"simple/velog.svg","simple-vencord":"simple/vencord.svg","simple-venmo":"simple/venmo.svg","simple-vercel":"simple/vercel.svg","simple-verdaccio":"simple/verdaccio.svg","simple-veritas":"simple/veritas.svg","simple-verizon":"simple/verizon.svg","simple-vespa":"simple/vespa.svg","simple-vestel":"simple/vestel.svg","simple-vexxhost":"simple/vexxhost.svg","simple-vfairs":"simple/vfairs.svg","simple-viadeo":"simple/viadeo.svg","simple-viaplay":"simple/viaplay.svg","simple-viber":"simple/viber.svg","simple-viblo":"simple/viblo.svg","simple-victoriametrics":"simple/victoriametrics.svg","simple-victronenergy":"simple/victronenergy.svg","simple-vim":"simple/vim.svg","simple-vimeo":"simple/vimeo.svg","simple-vimeolivestream":"simple/vimeolivestream.svg","simple-virgin":"simple/virgin.svg","simple-virginatlantic":"simple/virginatlantic.svg","simple-virginmedia":"simple/virginmedia.svg","simple-virtualbox":"simple/virtualbox.svg","simple-virustotal":"simple/virustotal.svg","simple-visa":"simple/visa.svg","simple-visx":"simple/visx.svg","simple-vite":"simple/vite.svg","simple-vitepress":"simple/vitepress.svg","simple-vitess":"simple/vitess.svg","simple-vitest":"simple/vitest.svg","simple-vivaldi":"simple/vivaldi.svg","simple-vivawallet":"simple/vivawallet.svg","simple-vivino":"simple/vivino.svg","simple-vivint":"simple/vivint.svg","simple-vivo":"simple/vivo.svg","simple-vk":"simple/vk.svg","simple-vlcmediaplayer":"simple/vlcmediaplayer.svg","simple-vmware":"simple/vmware.svg","simple-vodafone":"simple/vodafone.svg","simple-voidlinux":"simple/voidlinux.svg","simple-voipdotms":"simple/voipdotms.svg","simple-volkswagen":"simple/volkswagen.svg","simple-volvo":"simple/volvo.svg","simple-vonage":"simple/vonage.svg","simple-vorondesign":"simple/vorondesign.svg","simple-vowpalwabbit":"simple/vowpalwabbit.svg","simple-vox":"simple/vox.svg","simple-vrchat":"simple/vrchat.svg","simple-vsco":"simple/vsco.svg","simple-vscodium":"simple/vscodium.svg","simple-vtex":"simple/vtex.svg","simple-vuedotjs":"simple/vuedotjs.svg","simple-vuetify":"simple/vuetify.svg","simple-vulkan":"simple/vulkan.svg","simple-vultr":"simple/vultr.svg","simple-vyond":"simple/vyond.svg","simple-w3schools":"simple/w3schools.svg","simple-wacom":"simple/wacom.svg","simple-wagmi":"simple/wagmi.svg","simple-wagtail":"simple/wagtail.svg","simple-wails":"simple/wails.svg","simple-wakatime":"simple/wakatime.svg","simple-walkman":"simple/walkman.svg","simple-wallabag":"simple/wallabag.svg","simple-walletconnect":"simple/walletconnect.svg","simple-walmart":"simple/walmart.svg","simple-wantedly":"simple/wantedly.svg","simple-wappalyzer":"simple/wappalyzer.svg","simple-warnerbros":"simple/warnerbros.svg","simple-warp":"simple/warp.svg","simple-wasabi":"simple/wasabi.svg","simple-wasmcloud":"simple/wasmcloud.svg","simple-wasmer":"simple/wasmer.svg","simple-watchtower":"simple/watchtower.svg","simple-wattpad":"simple/wattpad.svg","simple-wayland":"simple/wayland.svg","simple-waze":"simple/waze.svg","simple-wazirx":"simple/wazirx.svg","simple-wearos":"simple/wearos.svg","simple-weasyl":"simple/weasyl.svg","simple-web3dotjs":"simple/web3dotjs.svg","simple-webassembly":"simple/webassembly.svg","simple-webauthn":"simple/webauthn.svg","simple-webcomponentsdotorg":"simple/webcomponentsdotorg.svg","simple-webdotde":"simple/webdotde.svg","simple-webdriverio":"simple/webdriverio.svg","simple-webex":"simple/webex.svg","simple-webflow":"simple/webflow.svg","simple-webgl":"simple/webgl.svg","simple-webgpu":"simple/webgpu.svg","simple-weblate":"simple/weblate.svg","simple-webmin":"simple/webmin.svg","simple-webmoney":"simple/webmoney.svg","simple-webpack":"simple/webpack.svg","simple-webrtc":"simple/webrtc.svg","simple-webstorm":"simple/webstorm.svg","simple-webtoon":"simple/webtoon.svg","simple-webtrees":"simple/webtrees.svg","simple-wechat":"simple/wechat.svg","simple-wegame":"simple/wegame.svg","simple-weightsandbiases":"simple/weightsandbiases.svg","simple-welcometothejungle":"simple/welcometothejungle.svg","simple-wellfound":"simple/wellfound.svg","simple-wellsfargo":"simple/wellsfargo.svg","simple-wemo":"simple/wemo.svg","simple-westerndigital":"simple/westerndigital.svg","simple-westernunion":"simple/westernunion.svg","simple-wetransfer":"simple/wetransfer.svg","simple-wezterm":"simple/wezterm.svg","simple-wgpu":"simple/wgpu.svg","simple-whatsapp":"simple/whatsapp.svg","simple-wheniwork":"simple/wheniwork.svg","simple-wikibooks":"simple/wikibooks.svg","simple-wikidata":"simple/wikidata.svg","simple-wikidotgg":"simple/wikidotgg.svg","simple-wikidotjs":"simple/wikidotjs.svg","simple-wikimediacommons":"simple/wikimediacommons.svg","simple-wikimediafoundation":"simple/wikimediafoundation.svg","simple-wikipedia":"simple/wikipedia.svg","simple-wikiquote":"simple/wikiquote.svg","simple-wikiversity":"simple/wikiversity.svg","simple-wikivoyage":"simple/wikivoyage.svg","simple-winamp":"simple/winamp.svg","simple-wine":"simple/wine.svg","simple-wipro":"simple/wipro.svg","simple-wire":"simple/wire.svg","simple-wireguard":"simple/wireguard.svg","simple-wireshark":"simple/wireshark.svg","simple-wise":"simple/wise.svg","simple-wish":"simple/wish.svg","simple-wistia":"simple/wistia.svg","simple-wix":"simple/wix.svg","simple-wizzair":"simple/wizzair.svg","simple-wolfram":"simple/wolfram.svg","simple-wolframlanguage":"simple/wolframlanguage.svg","simple-wolframmathematica":"simple/wolframmathematica.svg","simple-wondershare":"simple/wondershare.svg","simple-wondersharefilmora":"simple/wondersharefilmora.svg","simple-woo":"simple/woo.svg","simple-woocommerce":"simple/woocommerce.svg","simple-wordpress":"simple/wordpress.svg","simple-workplace":"simple/workplace.svg","simple-worldhealthorganization":"simple/worldhealthorganization.svg","simple-wpengine":"simple/wpengine.svg","simple-wpexplorer":"simple/wpexplorer.svg","simple-wprocket":"simple/wprocket.svg","simple-writedotas":"simple/writedotas.svg","simple-wwe":"simple/wwe.svg","simple-wwise":"simple/wwise.svg","simple-wxt":"simple/wxt.svg","simple-wykop":"simple/wykop.svg","simple-wyze":"simple/wyze.svg","simple-x":"simple/x.svg","simple-xampp":"simple/xampp.svg","simple-xcode":"simple/xcode.svg","simple-xdadevelopers":"simple/xdadevelopers.svg","simple-xdotorg":"simple/xdotorg.svg","simple-xendit":"simple/xendit.svg","simple-xero":"simple/xero.svg","simple-xfce":"simple/xfce.svg","simple-xiaohongshu":"simple/xiaohongshu.svg","simple-xiaomi":"simple/xiaomi.svg","simple-xing":"simple/xing.svg","simple-xml":"simple/xml.svg","simple-xmpp":"simple/xmpp.svg","simple-xo":"simple/xo.svg","simple-xrp":"simple/xrp.svg","simple-xsplit":"simple/xsplit.svg","simple-xstate":"simple/xstate.svg","simple-xubuntu":"simple/xubuntu.svg","simple-yabai":"simple/yabai.svg","simple-yale":"simple/yale.svg","simple-yamahacorporation":"simple/yamahacorporation.svg","simple-yamahamotorcorporation":"simple/yamahamotorcorporation.svg","simple-yaml":"simple/yaml.svg","simple-yandexcloud":"simple/yandexcloud.svg","simple-yarn":"simple/yarn.svg","simple-ycombinator":"simple/ycombinator.svg","simple-yelp":"simple/yelp.svg","simple-yeti":"simple/yeti.svg","simple-yii":"simple/yii.svg","simple-yoast":"simple/yoast.svg","simple-yolo":"simple/yolo.svg","simple-youhodler":"simple/youhodler.svg","simple-youtube":"simple/youtube.svg","simple-youtubegaming":"simple/youtubegaming.svg","simple-youtubekids":"simple/youtubekids.svg","simple-youtubemusic":"simple/youtubemusic.svg","simple-youtubeshorts":"simple/youtubeshorts.svg","simple-youtubestudio":"simple/youtubestudio.svg","simple-youtubetv":"simple/youtubetv.svg","simple-yr":"simple/yr.svg","simple-yubico":"simple/yubico.svg","simple-yunohost":"simple/yunohost.svg","simple-zabka":"simple/zabka.svg","simple-zaim":"simple/zaim.svg","simple-zalando":"simple/zalando.svg","simple-zalo":"simple/zalo.svg","simple-zap":"simple/zap.svg","simple-zapier":"simple/zapier.svg","simple-zara":"simple/zara.svg","simple-zazzle":"simple/zazzle.svg","simple-zcash":"simple/zcash.svg","simple-zcool":"simple/zcool.svg","simple-zdf":"simple/zdf.svg","simple-zebpay":"simple/zebpay.svg","simple-zebratechnologies":"simple/zebratechnologies.svg","simple-zedindustries":"simple/zedindustries.svg","simple-zelle":"simple/zelle.svg","simple-zend":"simple/zend.svg","simple-zendesk":"simple/zendesk.svg","simple-zenn":"simple/zenn.svg","simple-zenodo":"simple/zenodo.svg","simple-zensar":"simple/zensar.svg","simple-zerodha":"simple/zerodha.svg","simple-zerotier":"simple/zerotier.svg","simple-zettlr":"simple/zettlr.svg","simple-zhihu":"simple/zhihu.svg","simple-zig":"simple/zig.svg","simple-zigbee":"simple/zigbee.svg","simple-zigbee2mqtt":"simple/zigbee2mqtt.svg","simple-ziggo":"simple/ziggo.svg","simple-zilch":"simple/zilch.svg","simple-zillow":"simple/zillow.svg","simple-zincsearch":"simple/zincsearch.svg","simple-zingat":"simple/zingat.svg","simple-zod":"simple/zod.svg","simple-zoho":"simple/zoho.svg","simple-zoiper":"simple/zoiper.svg","simple-zomato":"simple/zomato.svg","simple-zoom":"simple/zoom.svg","simple-zorin":"simple/zorin.svg","simple-zotero":"simple/zotero.svg","simple-zsh":"simple/zsh.svg","simple-zulip":"simple/zulip.svg","simple-zyte":"simple/zyte.svg"}},"emojis":{"base":"https://raw.githubusercontent.com/twitter/twemoji/master/assets/svg/","data":{"100":"1f4af.svg","1234":"1f522.svg","8ball":"1f3b1.svg","a":"1f170.svg","ab":"1f18e.svg","abacus":"1f9ee.svg","abc":"1f524.svg","abcd":"1f521.svg","accept":"1f251.svg","accordion":"1fa97.svg","adhesive_bandage":"1fa79.svg","adult":"1f9d1.svg","adult_tone1":"1f9d1-1f3fb.svg","adult_tone2":"1f9d1-1f3fc.svg","adult_tone3":"1f9d1-1f3fd.svg","adult_tone4":"1f9d1-1f3fe.svg","adult_tone5":"1f9d1-1f3ff.svg","aerial_tramway":"1f6a1.svg","airplane":"2708.svg","airplane_arriving":"1f6ec.svg","airplane_departure":"1f6eb.svg","airplane_small":"1f6e9.svg","alarm_clock":"23f0.svg","alembic":"2697.svg","alien":"1f47d.svg","ambulance":"1f691.svg","amphora":"1f3fa.svg","anatomical_heart":"1fac0.svg","anchor":"2693.svg","angel":"1f47c.svg","angel_tone1":"1f47c-1f3fb.svg","angel_tone2":"1f47c-1f3fc.svg","angel_tone3":"1f47c-1f3fd.svg","angel_tone4":"1f47c-1f3fe.svg","angel_tone5":"1f47c-1f3ff.svg","anger":"1f4a2.svg","anger_right":"1f5ef.svg","angry":"1f620.svg","anguished":"1f627.svg","ant":"1f41c.svg","apple":"1f34e.svg","aquarius":"2652.svg","aries":"2648.svg","arrow_backward":"25c0.svg","arrow_double_down":"23ec.svg","arrow_double_up":"23eb.svg","arrow_down":"2b07.svg","arrow_down_small":"1f53d.svg","arrow_forward":"25b6.svg","arrow_heading_down":"2935.svg","arrow_heading_up":"2934.svg","arrow_left":"2b05.svg","arrow_lower_left":"2199.svg","arrow_lower_right":"2198.svg","arrow_right":"27a1.svg","arrow_right_hook":"21aa.svg","arrow_up":"2b06.svg","arrow_up_down":"2195.svg","arrow_up_small":"1f53c.svg","arrow_upper_left":"2196.svg","arrow_upper_right":"2197.svg","arrows_clockwise":"1f503.svg","arrows_counterclockwise":"1f504.svg","art":"1f3a8.svg","articulated_lorry":"1f69b.svg","artist":"1f9d1-200d-1f3a8.svg","artist_tone1":"1f9d1-1f3fb-200d-1f3a8.svg","artist_tone2":"1f9d1-1f3fc-200d-1f3a8.svg","artist_tone3":"1f9d1-1f3fd-200d-1f3a8.svg","artist_tone4":"1f9d1-1f3fe-200d-1f3a8.svg","artist_tone5":"1f9d1-1f3ff-200d-1f3a8.svg","asterisk":"2a-20e3.svg","astonished":"1f632.svg","astronaut":"1f9d1-200d-1f680.svg","astronaut_tone1":"1f9d1-1f3fb-200d-1f680.svg","astronaut_tone2":"1f9d1-1f3fc-200d-1f680.svg","astronaut_tone3":"1f9d1-1f3fd-200d-1f680.svg","astronaut_tone4":"1f9d1-1f3fe-200d-1f680.svg","astronaut_tone5":"1f9d1-1f3ff-200d-1f680.svg","athletic_shoe":"1f45f.svg","atm":"1f3e7.svg","atom":"269b.svg","auto_rickshaw":"1f6fa.svg","avocado":"1f951.svg","axe":"1fa93.svg","b":"1f171.svg","baby":"1f476.svg","baby_bottle":"1f37c.svg","baby_chick":"1f424.svg","baby_symbol":"1f6bc.svg","baby_tone1":"1f476-1f3fb.svg","baby_tone2":"1f476-1f3fc.svg","baby_tone3":"1f476-1f3fd.svg","baby_tone4":"1f476-1f3fe.svg","baby_tone5":"1f476-1f3ff.svg","back":"1f519.svg","bacon":"1f953.svg","badger":"1f9a1.svg","badminton":"1f3f8.svg","bagel":"1f96f.svg","baggage_claim":"1f6c4.svg","bald":"1f9b2.svg","ballet_shoes":"1fa70.svg","balloon":"1f388.svg","ballot_box":"1f5f3.svg","ballot_box_with_check":"2611.svg","bamboo":"1f38d.svg","banana":"1f34c.svg","bangbang":"203c.svg","banjo":"1fa95.svg","bank":"1f3e6.svg","bar_chart":"1f4ca.svg","barber":"1f488.svg","baseball":"26be.svg","basket":"1f9fa.svg","basketball":"1f3c0.svg","bat":"1f987.svg","bath":"1f6c0.svg","bath_tone1":"1f6c0-1f3fb.svg","bath_tone2":"1f6c0-1f3fc.svg","bath_tone3":"1f6c0-1f3fd.svg","bath_tone4":"1f6c0-1f3fe.svg","bath_tone5":"1f6c0-1f3ff.svg","bathtub":"1f6c1.svg","battery":"1f50b.svg","beach":"1f3d6.svg","beach_umbrella":"26f1.svg","beans":"1fad8.svg","bear":"1f43b.svg","bearded_person":"1f9d4.svg","bearded_person_tone1":"1f9d4-1f3fb.svg","bearded_person_tone2":"1f9d4-1f3fc.svg","bearded_person_tone3":"1f9d4-1f3fd.svg","bearded_person_tone4":"1f9d4-1f3fe.svg","bearded_person_tone5":"1f9d4-1f3ff.svg","beaver":"1f9ab.svg","bed":"1f6cf.svg","bee":"1f41d.svg","beer":"1f37a.svg","beers":"1f37b.svg","beetle":"1fab2.svg","beginner":"1f530.svg","bell":"1f514.svg","bell_pepper":"1fad1.svg","bellhop":"1f6ce.svg","bento":"1f371.svg","beverage_box":"1f9c3.svg","bike":"1f6b2.svg","bikini":"1f459.svg","billed_cap":"1f9e2.svg","biohazard":"2623.svg","bird":"1f426.svg","birthday":"1f382.svg","bison":"1f9ac.svg","biting_lip":"1fae6.svg","black_cat":"1f408-200d-2b1b.svg","black_circle":"26ab.svg","black_heart":"1f5a4.svg","black_joker":"1f0cf.svg","black_large_square":"2b1b.svg","black_medium_small_square":"25fe.svg","black_medium_square":"25fc.svg","black_nib":"2712.svg","black_small_square":"25aa.svg","black_square_button":"1f532.svg","blond-haired_man":"1f471-200d-2642-fe0f.svg","blond-haired_man_tone1":"1f471-1f3fb-200d-2642-fe0f.svg","blond-haired_man_tone2":"1f471-1f3fc-200d-2642-fe0f.svg","blond-haired_man_tone3":"1f471-1f3fd-200d-2642-fe0f.svg","blond-haired_man_tone4":"1f471-1f3fe-200d-2642-fe0f.svg","blond-haired_man_tone5":"1f471-1f3ff-200d-2642-fe0f.svg","blond-haired_woman":"1f471-200d-2640-fe0f.svg","blond-haired_woman_tone1":"1f471-1f3fb-200d-2640-fe0f.svg","blond-haired_woman_tone2":"1f471-1f3fc-200d-2640-fe0f.svg","blond-haired_woman_tone3":"1f471-1f3fd-200d-2640-fe0f.svg","blond-haired_woman_tone4":"1f471-1f3fe-200d-2640-fe0f.svg","blond-haired_woman_tone5":"1f471-1f3ff-200d-2640-fe0f.svg","blond_haired_person":"1f471.svg","blond_haired_person_tone1":"1f471-1f3fb.svg","blond_haired_person_tone2":"1f471-1f3fc.svg","blond_haired_person_tone3":"1f471-1f3fd.svg","blond_haired_person_tone4":"1f471-1f3fe.svg","blond_haired_person_tone5":"1f471-1f3ff.svg","blossom":"1f33c.svg","blowfish":"1f421.svg","blue_book":"1f4d8.svg","blue_car":"1f699.svg","blue_circle":"1f535.svg","blue_heart":"1f499.svg","blue_square":"1f7e6.svg","blueberries":"1fad0.svg","blush":"1f60a.svg","boar":"1f417.svg","bomb":"1f4a3.svg","bone":"1f9b4.svg","book":"1f4d6.svg","bookmark":"1f516.svg","bookmark_tabs":"1f4d1.svg","books":"1f4da.svg","boom":"1f4a5.svg","boomerang":"1fa83.svg","boot":"1f462.svg","bouquet":"1f490.svg","bow_and_arrow":"1f3f9.svg","bowl_with_spoon":"1f963.svg","bowling":"1f3b3.svg","boxing_glove":"1f94a.svg","boy":"1f466.svg","boy_tone1":"1f466-1f3fb.svg","boy_tone2":"1f466-1f3fc.svg","boy_tone3":"1f466-1f3fd.svg","boy_tone4":"1f466-1f3fe.svg","boy_tone5":"1f466-1f3ff.svg","brain":"1f9e0.svg","bread":"1f35e.svg","breast_feeding":"1f931.svg","breast_feeding_tone1":"1f931-1f3fb.svg","breast_feeding_tone2":"1f931-1f3fc.svg","breast_feeding_tone3":"1f931-1f3fd.svg","breast_feeding_tone4":"1f931-1f3fe.svg","breast_feeding_tone5":"1f931-1f3ff.svg","bricks":"1f9f1.svg","bridge_at_night":"1f309.svg","briefcase":"1f4bc.svg","briefs":"1fa72.svg","broccoli":"1f966.svg","broken_heart":"1f494.svg","broom":"1f9f9.svg","brown_circle":"1f7e4.svg","brown_heart":"1f90e.svg","brown_square":"1f7eb.svg","bubble_tea":"1f9cb.svg","bubbles":"1fae7.svg","bucket":"1faa3.svg","bug":"1f41b.svg","bulb":"1f4a1.svg","bullettrain_front":"1f685.svg","bullettrain_side":"1f684.svg","burrito":"1f32f.svg","bus":"1f68c.svg","busstop":"1f68f.svg","bust_in_silhouette":"1f464.svg","busts_in_silhouette":"1f465.svg","butter":"1f9c8.svg","butterfly":"1f98b.svg","cactus":"1f335.svg","cake":"1f370.svg","calendar":"1f4c6.svg","calendar_spiral":"1f5d3.svg","call_me":"1f919.svg","call_me_tone1":"1f919-1f3fb.svg","call_me_tone2":"1f919-1f3fc.svg","call_me_tone3":"1f919-1f3fd.svg","call_me_tone4":"1f919-1f3fe.svg","call_me_tone5":"1f919-1f3ff.svg","calling":"1f4f2.svg","camel":"1f42b.svg","camera":"1f4f7.svg","camera_with_flash":"1f4f8.svg","camping":"1f3d5.svg","cancer":"264b.svg","candle":"1f56f.svg","candy":"1f36c.svg","canned_food":"1f96b.svg","canoe":"1f6f6.svg","capital_abcd":"1f520.svg","capricorn":"2651.svg","card_box":"1f5c3.svg","card_index":"1f4c7.svg","carousel_horse":"1f3a0.svg","carpentry_saw":"1fa9a.svg","carrot":"1f955.svg","cat2":"1f408.svg","cat":"1f431.svg","cd":"1f4bf.svg","chains":"26d3.svg","chair":"1fa91.svg","champagne":"1f37e.svg","champagne_glass":"1f942.svg","chart":"1f4b9.svg","chart_with_downwards_trend":"1f4c9.svg","chart_with_upwards_trend":"1f4c8.svg","checkered_flag":"1f3c1.svg","cheese":"1f9c0.svg","cherries":"1f352.svg","cherry_blossom":"1f338.svg","chess_pawn":"265f.svg","chestnut":"1f330.svg","chicken":"1f414.svg","child":"1f9d2.svg","child_tone1":"1f9d2-1f3fb.svg","child_tone2":"1f9d2-1f3fc.svg","child_tone3":"1f9d2-1f3fd.svg","child_tone4":"1f9d2-1f3fe.svg","child_tone5":"1f9d2-1f3ff.svg","children_crossing":"1f6b8.svg","chipmunk":"1f43f.svg","chocolate_bar":"1f36b.svg","chopsticks":"1f962.svg","christmas_tree":"1f384.svg","church":"26ea.svg","cinema":"1f3a6.svg","circus_tent":"1f3aa.svg","city_dusk":"1f306.svg","city_sunset":"1f307.svg","cityscape":"1f3d9.svg","cl":"1f191.svg","clap":"1f44f.svg","clap_tone1":"1f44f-1f3fb.svg","clap_tone2":"1f44f-1f3fc.svg","clap_tone3":"1f44f-1f3fd.svg","clap_tone4":"1f44f-1f3fe.svg","clap_tone5":"1f44f-1f3ff.svg","clapper":"1f3ac.svg","classical_building":"1f3db.svg","clipboard":"1f4cb.svg","clock1030":"1f565.svg","clock10":"1f559.svg","clock1130":"1f566.svg","clock11":"1f55a.svg","clock1230":"1f567.svg","clock12":"1f55b.svg","clock130":"1f55c.svg","clock1":"1f550.svg","clock230":"1f55d.svg","clock2":"1f551.svg","clock330":"1f55e.svg","clock3":"1f552.svg","clock430":"1f55f.svg","clock4":"1f553.svg","clock530":"1f560.svg","clock5":"1f554.svg","clock630":"1f561.svg","clock6":"1f555.svg","clock730":"1f562.svg","clock7":"1f556.svg","clock830":"1f563.svg","clock8":"1f557.svg","clock930":"1f564.svg","clock9":"1f558.svg","clock":"1f570.svg","closed_book":"1f4d5.svg","closed_lock_with_key":"1f510.svg","closed_umbrella":"1f302.svg","cloud":"2601.svg","cloud_lightning":"1f329.svg","cloud_rain":"1f327.svg","cloud_snow":"1f328.svg","cloud_tornado":"1f32a.svg","clown":"1f921.svg","clubs":"2663.svg","coat":"1f9e5.svg","cockroach":"1fab3.svg","cocktail":"1f378.svg","coconut":"1f965.svg","coffee":"2615.svg","coffin":"26b0.svg","coin":"1fa99.svg","cold_face":"1f976.svg","cold_sweat":"1f630.svg","comet":"2604.svg","compass":"1f9ed.svg","compression":"1f5dc.svg","computer":"1f4bb.svg","confetti_ball":"1f38a.svg","confounded":"1f616.svg","confused":"1f615.svg","congratulations":"3297.svg","construction":"1f6a7.svg","construction_site":"1f3d7.svg","construction_worker":"1f477.svg","construction_worker_tone1":"1f477-1f3fb.svg","construction_worker_tone2":"1f477-1f3fc.svg","construction_worker_tone3":"1f477-1f3fd.svg","construction_worker_tone4":"1f477-1f3fe.svg","construction_worker_tone5":"1f477-1f3ff.svg","control_knobs":"1f39b.svg","convenience_store":"1f3ea.svg","cook":"1f9d1-200d-1f373.svg","cook_tone1":"1f9d1-1f3fb-200d-1f373.svg","cook_tone2":"1f9d1-1f3fc-200d-1f373.svg","cook_tone3":"1f9d1-1f3fd-200d-1f373.svg","cook_tone4":"1f9d1-1f3fe-200d-1f373.svg","cook_tone5":"1f9d1-1f3ff-200d-1f373.svg","cookie":"1f36a.svg","cooking":"1f373.svg","cool":"1f192.svg","copyright":"a9.svg","coral":"1fab8.svg","corn":"1f33d.svg","couch":"1f6cb.svg","couple":"1f46b.svg","couple_mm":"1f468-200d-2764-fe0f-200d-1f468.svg","couple_with_heart":"1f491.svg","couple_with_heart_man_man_tone1":"1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fb.svg","couple_with_heart_man_man_tone1_tone2":"1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fc.svg","couple_with_heart_man_man_tone1_tone3":"1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fd.svg","couple_with_heart_man_man_tone1_tone4":"1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fe.svg","couple_with_heart_man_man_tone1_tone5":"1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3ff.svg","couple_with_heart_man_man_tone2":"1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fc.svg","couple_with_heart_man_man_tone2_tone1":"1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fb.svg","couple_with_heart_man_man_tone2_tone3":"1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fd.svg","couple_with_heart_man_man_tone2_tone4":"1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fe.svg","couple_with_heart_man_man_tone2_tone5":"1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3ff.svg","couple_with_heart_man_man_tone3":"1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fd.svg","couple_with_heart_man_man_tone3_tone1":"1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fb.svg","couple_with_heart_man_man_tone3_tone2":"1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fc.svg","couple_with_heart_man_man_tone3_tone4":"1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fe.svg","couple_with_heart_man_man_tone3_tone5":"1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3ff.svg","couple_with_heart_man_man_tone4":"1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fe.svg","couple_with_heart_man_man_tone4_tone1":"1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fb.svg","couple_with_heart_man_man_tone4_tone2":"1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fc.svg","couple_with_heart_man_man_tone4_tone3":"1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fd.svg","couple_with_heart_man_man_tone4_tone5":"1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3ff.svg","couple_with_heart_man_man_tone5":"1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3ff.svg","couple_with_heart_man_man_tone5_tone1":"1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fb.svg","couple_with_heart_man_man_tone5_tone2":"1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fc.svg","couple_with_heart_man_man_tone5_tone3":"1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fd.svg","couple_with_heart_man_man_tone5_tone4":"1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fe.svg","couple_with_heart_person_person_tone1_tone2":"1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fc.svg","couple_with_heart_person_person_tone1_tone3":"1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fd.svg","couple_with_heart_person_person_tone1_tone4":"1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fe.svg","couple_with_heart_person_person_tone1_tone5":"1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3ff.svg","couple_with_heart_person_person_tone2_tone1":"1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fb.svg","couple_with_heart_person_person_tone2_tone3":"1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fd.svg","couple_with_heart_person_person_tone2_tone4":"1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fe.svg","couple_with_heart_person_person_tone2_tone5":"1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3ff.svg","couple_with_heart_person_person_tone3_tone1":"1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fb.svg","couple_with_heart_person_person_tone3_tone2":"1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fc.svg","couple_with_heart_person_person_tone3_tone4":"1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fe.svg","couple_with_heart_person_person_tone3_tone5":"1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3ff.svg","couple_with_heart_person_person_tone4_tone1":"1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fb.svg","couple_with_heart_person_person_tone4_tone2":"1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fc.svg","couple_with_heart_person_person_tone4_tone3":"1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fd.svg","couple_with_heart_person_person_tone4_tone5":"1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3ff.svg","couple_with_heart_person_person_tone5_tone1":"1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fb.svg","couple_with_heart_person_person_tone5_tone2":"1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fc.svg","couple_with_heart_person_person_tone5_tone3":"1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fd.svg","couple_with_heart_person_person_tone5_tone4":"1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fe.svg","couple_with_heart_tone1":"1f491-1f3fb.svg","couple_with_heart_tone2":"1f491-1f3fc.svg","couple_with_heart_tone3":"1f491-1f3fd.svg","couple_with_heart_tone4":"1f491-1f3fe.svg","couple_with_heart_tone5":"1f491-1f3ff.svg","couple_with_heart_woman_man":"1f469-200d-2764-fe0f-200d-1f468.svg","couple_with_heart_woman_man_tone1":"1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fb.svg","couple_with_heart_woman_man_tone1_tone2":"1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fc.svg","couple_with_heart_woman_man_tone1_tone3":"1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fd.svg","couple_with_heart_woman_man_tone1_tone4":"1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fe.svg","couple_with_heart_woman_man_tone1_tone5":"1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3ff.svg","couple_with_heart_woman_man_tone2":"1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fc.svg","couple_with_heart_woman_man_tone2_tone1":"1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fb.svg","couple_with_heart_woman_man_tone2_tone3":"1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fd.svg","couple_with_heart_woman_man_tone2_tone4":"1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fe.svg","couple_with_heart_woman_man_tone2_tone5":"1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3ff.svg","couple_with_heart_woman_man_tone3":"1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fd.svg","couple_with_heart_woman_man_tone3_tone1":"1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fb.svg","couple_with_heart_woman_man_tone3_tone2":"1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fc.svg","couple_with_heart_woman_man_tone3_tone4":"1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fe.svg","couple_with_heart_woman_man_tone3_tone5":"1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3ff.svg","couple_with_heart_woman_man_tone4":"1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fe.svg","couple_with_heart_woman_man_tone4_tone1":"1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fb.svg","couple_with_heart_woman_man_tone4_tone2":"1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fc.svg","couple_with_heart_woman_man_tone4_tone3":"1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fd.svg","couple_with_heart_woman_man_tone4_tone5":"1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3ff.svg","couple_with_heart_woman_man_tone5":"1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3ff.svg","couple_with_heart_woman_man_tone5_tone1":"1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fb.svg","couple_with_heart_woman_man_tone5_tone2":"1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fc.svg","couple_with_heart_woman_man_tone5_tone3":"1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fd.svg","couple_with_heart_woman_man_tone5_tone4":"1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fe.svg","couple_with_heart_woman_woman_tone1":"1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fb.svg","couple_with_heart_woman_woman_tone1_tone2":"1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fc.svg","couple_with_heart_woman_woman_tone1_tone3":"1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fd.svg","couple_with_heart_woman_woman_tone1_tone4":"1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fe.svg","couple_with_heart_woman_woman_tone1_tone5":"1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3ff.svg","couple_with_heart_woman_woman_tone2":"1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fc.svg","couple_with_heart_woman_woman_tone2_tone1":"1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fb.svg","couple_with_heart_woman_woman_tone2_tone3":"1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fd.svg","couple_with_heart_woman_woman_tone2_tone4":"1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fe.svg","couple_with_heart_woman_woman_tone2_tone5":"1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3ff.svg","couple_with_heart_woman_woman_tone3":"1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fd.svg","couple_with_heart_woman_woman_tone3_tone1":"1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fb.svg","couple_with_heart_woman_woman_tone3_tone2":"1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fc.svg","couple_with_heart_woman_woman_tone3_tone4":"1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fe.svg","couple_with_heart_woman_woman_tone3_tone5":"1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3ff.svg","couple_with_heart_woman_woman_tone4":"1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fe.svg","couple_with_heart_woman_woman_tone4_tone1":"1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fb.svg","couple_with_heart_woman_woman_tone4_tone2":"1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fc.svg","couple_with_heart_woman_woman_tone4_tone3":"1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fd.svg","couple_with_heart_woman_woman_tone4_tone5":"1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3ff.svg","couple_with_heart_woman_woman_tone5":"1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3ff.svg","couple_with_heart_woman_woman_tone5_tone1":"1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fb.svg","couple_with_heart_woman_woman_tone5_tone2":"1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fc.svg","couple_with_heart_woman_woman_tone5_tone3":"1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fd.svg","couple_with_heart_woman_woman_tone5_tone4":"1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fe.svg","couple_ww":"1f469-200d-2764-fe0f-200d-1f469.svg","couplekiss":"1f48f.svg","cow2":"1f404.svg","cow":"1f42e.svg","cowboy":"1f920.svg","crab":"1f980.svg","crayon":"1f58d.svg","credit_card":"1f4b3.svg","crescent_moon":"1f319.svg","cricket":"1f997.svg","cricket_game":"1f3cf.svg","crocodile":"1f40a.svg","croissant":"1f950.svg","cross":"271d.svg","crossed_flags":"1f38c.svg","crossed_swords":"2694.svg","crown":"1f451.svg","cruise_ship":"1f6f3.svg","crutch":"1fa7c.svg","cry":"1f622.svg","crying_cat_face":"1f63f.svg","crystal_ball":"1f52e.svg","cucumber":"1f952.svg","cup_with_straw":"1f964.svg","cupcake":"1f9c1.svg","cupid":"1f498.svg","curling_stone":"1f94c.svg","curly_haired":"1f9b1.svg","curly_loop":"27b0.svg","currency_exchange":"1f4b1.svg","curry":"1f35b.svg","custard":"1f36e.svg","customs":"1f6c3.svg","cut_of_meat":"1f969.svg","cyclone":"1f300.svg","dagger":"1f5e1.svg","dancer":"1f483.svg","dancer_tone1":"1f483-1f3fb.svg","dancer_tone2":"1f483-1f3fc.svg","dancer_tone3":"1f483-1f3fd.svg","dancer_tone4":"1f483-1f3fe.svg","dancer_tone5":"1f483-1f3ff.svg","dango":"1f361.svg","dark_sunglasses":"1f576.svg","dart":"1f3af.svg","dash":"1f4a8.svg","date":"1f4c5.svg","deaf_man":"1f9cf-200d-2642-fe0f.svg","deaf_man_tone1":"1f9cf-1f3fb-200d-2642-fe0f.svg","deaf_man_tone2":"1f9cf-1f3fc-200d-2642-fe0f.svg","deaf_man_tone3":"1f9cf-1f3fd-200d-2642-fe0f.svg","deaf_man_tone4":"1f9cf-1f3fe-200d-2642-fe0f.svg","deaf_man_tone5":"1f9cf-1f3ff-200d-2642-fe0f.svg","deaf_person":"1f9cf.svg","deaf_person_tone1":"1f9cf-1f3fb.svg","deaf_person_tone2":"1f9cf-1f3fc.svg","deaf_person_tone3":"1f9cf-1f3fd.svg","deaf_person_tone4":"1f9cf-1f3fe.svg","deaf_person_tone5":"1f9cf-1f3ff.svg","deaf_woman":"1f9cf-200d-2640-fe0f.svg","deaf_woman_tone1":"1f9cf-1f3fb-200d-2640-fe0f.svg","deaf_woman_tone2":"1f9cf-1f3fc-200d-2640-fe0f.svg","deaf_woman_tone3":"1f9cf-1f3fd-200d-2640-fe0f.svg","deaf_woman_tone4":"1f9cf-1f3fe-200d-2640-fe0f.svg","deaf_woman_tone5":"1f9cf-1f3ff-200d-2640-fe0f.svg","deciduous_tree":"1f333.svg","deer":"1f98c.svg","department_store":"1f3ec.svg","desert":"1f3dc.svg","desktop":"1f5a5.svg","detective":"1f575.svg","detective_tone1":"1f575-1f3fb.svg","detective_tone2":"1f575-1f3fc.svg","detective_tone3":"1f575-1f3fd.svg","detective_tone4":"1f575-1f3fe.svg","detective_tone5":"1f575-1f3ff.svg","diamond_shape_with_a_dot_inside":"1f4a0.svg","diamonds":"2666.svg","disappointed":"1f61e.svg","disappointed_relieved":"1f625.svg","disguised_face":"1f978.svg","dividers":"1f5c2.svg","diving_mask":"1f93f.svg","diya_lamp":"1fa94.svg","dizzy":"1f4ab.svg","dizzy_face":"1f635.svg","dna":"1f9ec.svg","do_not_litter":"1f6af.svg","dodo":"1f9a4.svg","dog2":"1f415.svg","dog":"1f436.svg","dollar":"1f4b5.svg","dolls":"1f38e.svg","dolphin":"1f42c.svg","door":"1f6aa.svg","dotted_line_face":"1fae5.svg","doughnut":"1f369.svg","dove":"1f54a.svg","dragon":"1f409.svg","dragon_face":"1f432.svg","dress":"1f457.svg","dromedary_camel":"1f42a.svg","drooling_face":"1f924.svg","drop_of_blood":"1fa78.svg","droplet":"1f4a7.svg","drum":"1f941.svg","duck":"1f986.svg","dumpling":"1f95f.svg","dvd":"1f4c0.svg","e-mail":"1f4e7.svg","eagle":"1f985.svg","ear":"1f442.svg","ear_of_rice":"1f33e.svg","ear_tone1":"1f442-1f3fb.svg","ear_tone2":"1f442-1f3fc.svg","ear_tone3":"1f442-1f3fd.svg","ear_tone4":"1f442-1f3fe.svg","ear_tone5":"1f442-1f3ff.svg","ear_with_hearing_aid":"1f9bb.svg","ear_with_hearing_aid_tone1":"1f9bb-1f3fb.svg","ear_with_hearing_aid_tone2":"1f9bb-1f3fc.svg","ear_with_hearing_aid_tone3":"1f9bb-1f3fd.svg","ear_with_hearing_aid_tone4":"1f9bb-1f3fe.svg","ear_with_hearing_aid_tone5":"1f9bb-1f3ff.svg","earth_africa":"1f30d.svg","earth_americas":"1f30e.svg","earth_asia":"1f30f.svg","egg":"1f95a.svg","eggplant":"1f346.svg","eight":"38-20e3.svg","eight_pointed_black_star":"2734.svg","eight_spoked_asterisk":"2733.svg","eject":"23cf.svg","electric_plug":"1f50c.svg","elephant":"1f418.svg","elevator":"1f6d7.svg","elf":"1f9dd.svg","elf_tone1":"1f9dd-1f3fb.svg","elf_tone2":"1f9dd-1f3fc.svg","elf_tone3":"1f9dd-1f3fd.svg","elf_tone4":"1f9dd-1f3fe.svg","elf_tone5":"1f9dd-1f3ff.svg","empty_nest":"1fab9.svg","end":"1f51a.svg","england":"1f3f4-e0067-e0062-e0065-e006e-e0067-e007f.svg","envelope":"2709.svg","envelope_with_arrow":"1f4e9.svg","euro":"1f4b6.svg","european_castle":"1f3f0.svg","european_post_office":"1f3e4.svg","evergreen_tree":"1f332.svg","exclamation":"2757.svg","exploding_head":"1f92f.svg","expressionless":"1f611.svg","eye":"1f441.svg","eye_in_speech_bubble":"1f441-200d-1f5e8.svg","eyeglasses":"1f453.svg","eyes":"1f440.svg","face_exhaling":"1f62e-200d-1f4a8.svg","face_holding_back_tears":"1f979.svg","face_in_clouds":"1f636-200d-1f32b-fe0f.svg","face_vomiting":"1f92e.svg","face_with_diagonal_mouth":"1fae4.svg","face_with_hand_over_mouth":"1f92d.svg","face_with_monocle":"1f9d0.svg","face_with_open_eyes_and_hand_over_mouth":"1fae2.svg","face_with_peeking_eye":"1fae3.svg","face_with_raised_eyebrow":"1f928.svg","face_with_spiral_eyes":"1f635-200d-1f4ab.svg","face_with_symbols_over_mouth":"1f92c.svg","factory":"1f3ed.svg","factory_worker":"1f9d1-200d-1f3ed.svg","factory_worker_tone1":"1f9d1-1f3fb-200d-1f3ed.svg","factory_worker_tone2":"1f9d1-1f3fc-200d-1f3ed.svg","factory_worker_tone3":"1f9d1-1f3fd-200d-1f3ed.svg","factory_worker_tone4":"1f9d1-1f3fe-200d-1f3ed.svg","factory_worker_tone5":"1f9d1-1f3ff-200d-1f3ed.svg","fairy":"1f9da.svg","fairy_tone1":"1f9da-1f3fb.svg","fairy_tone2":"1f9da-1f3fc.svg","fairy_tone3":"1f9da-1f3fd.svg","fairy_tone4":"1f9da-1f3fe.svg","fairy_tone5":"1f9da-1f3ff.svg","falafel":"1f9c6.svg","fallen_leaf":"1f342.svg","family":"1f46a.svg","family_man_boy":"1f468-200d-1f466.svg","family_man_boy_boy":"1f468-200d-1f466-200d-1f466.svg","family_man_girl":"1f468-200d-1f467.svg","family_man_girl_boy":"1f468-200d-1f467-200d-1f466.svg","family_man_girl_girl":"1f468-200d-1f467-200d-1f467.svg","family_man_woman_boy":"1f468-200d-1f469-200d-1f466.svg","family_mmb":"1f468-200d-1f468-200d-1f466.svg","family_mmbb":"1f468-200d-1f468-200d-1f466-200d-1f466.svg","family_mmg":"1f468-200d-1f468-200d-1f467.svg","family_mmgb":"1f468-200d-1f468-200d-1f467-200d-1f466.svg","family_mmgg":"1f468-200d-1f468-200d-1f467-200d-1f467.svg","family_mwbb":"1f468-200d-1f469-200d-1f466-200d-1f466.svg","family_mwg":"1f468-200d-1f469-200d-1f467.svg","family_mwgb":"1f468-200d-1f469-200d-1f467-200d-1f466.svg","family_mwgg":"1f468-200d-1f469-200d-1f467-200d-1f467.svg","family_woman_boy":"1f469-200d-1f466.svg","family_woman_boy_boy":"1f469-200d-1f466-200d-1f466.svg","family_woman_girl":"1f469-200d-1f467.svg","family_woman_girl_boy":"1f469-200d-1f467-200d-1f466.svg","family_woman_girl_girl":"1f469-200d-1f467-200d-1f467.svg","family_wwb":"1f469-200d-1f469-200d-1f466.svg","family_wwbb":"1f469-200d-1f469-200d-1f466-200d-1f466.svg","family_wwg":"1f469-200d-1f469-200d-1f467.svg","family_wwgb":"1f469-200d-1f469-200d-1f467-200d-1f466.svg","family_wwgg":"1f469-200d-1f469-200d-1f467-200d-1f467.svg","farmer":"1f9d1-200d-1f33e.svg","farmer_tone1":"1f9d1-1f3fb-200d-1f33e.svg","farmer_tone2":"1f9d1-1f3fc-200d-1f33e.svg","farmer_tone3":"1f9d1-1f3fd-200d-1f33e.svg","farmer_tone4":"1f9d1-1f3fe-200d-1f33e.svg","farmer_tone5":"1f9d1-1f3ff-200d-1f33e.svg","fast_forward":"23e9.svg","fax":"1f4e0.svg","fearful":"1f628.svg","feather":"1fab6.svg","feet":"1f43e.svg","female_sign":"2640.svg","ferris_wheel":"1f3a1.svg","ferry":"26f4.svg","field_hockey":"1f3d1.svg","file_cabinet":"1f5c4.svg","file_folder":"1f4c1.svg","film_frames":"1f39e.svg","fingers_crossed":"1f91e.svg","fingers_crossed_tone1":"1f91e-1f3fb.svg","fingers_crossed_tone2":"1f91e-1f3fc.svg","fingers_crossed_tone3":"1f91e-1f3fd.svg","fingers_crossed_tone4":"1f91e-1f3fe.svg","fingers_crossed_tone5":"1f91e-1f3ff.svg","fire":"1f525.svg","fire_engine":"1f692.svg","fire_extinguisher":"1f9ef.svg","firecracker":"1f9e8.svg","firefighter":"1f9d1-200d-1f692.svg","firefighter_tone1":"1f9d1-1f3fb-200d-1f692.svg","firefighter_tone2":"1f9d1-1f3fc-200d-1f692.svg","firefighter_tone3":"1f9d1-1f3fd-200d-1f692.svg","firefighter_tone4":"1f9d1-1f3fe-200d-1f692.svg","firefighter_tone5":"1f9d1-1f3ff-200d-1f692.svg","fireworks":"1f386.svg","first_place":"1f947.svg","first_quarter_moon":"1f313.svg","first_quarter_moon_with_face":"1f31b.svg","fish":"1f41f.svg","fish_cake":"1f365.svg","fishing_pole_and_fish":"1f3a3.svg","fist":"270a.svg","fist_tone1":"270a-1f3fb.svg","fist_tone2":"270a-1f3fc.svg","fist_tone3":"270a-1f3fd.svg","fist_tone4":"270a-1f3fe.svg","fist_tone5":"270a-1f3ff.svg","five":"35-20e3.svg","flag_ac":"1f1e6-1f1e8.svg","flag_ad":"1f1e6-1f1e9.svg","flag_ae":"1f1e6-1f1ea.svg","flag_af":"1f1e6-1f1eb.svg","flag_ag":"1f1e6-1f1ec.svg","flag_ai":"1f1e6-1f1ee.svg","flag_al":"1f1e6-1f1f1.svg","flag_am":"1f1e6-1f1f2.svg","flag_ao":"1f1e6-1f1f4.svg","flag_aq":"1f1e6-1f1f6.svg","flag_ar":"1f1e6-1f1f7.svg","flag_as":"1f1e6-1f1f8.svg","flag_at":"1f1e6-1f1f9.svg","flag_au":"1f1e6-1f1fa.svg","flag_aw":"1f1e6-1f1fc.svg","flag_ax":"1f1e6-1f1fd.svg","flag_az":"1f1e6-1f1ff.svg","flag_ba":"1f1e7-1f1e6.svg","flag_bb":"1f1e7-1f1e7.svg","flag_bd":"1f1e7-1f1e9.svg","flag_be":"1f1e7-1f1ea.svg","flag_bf":"1f1e7-1f1eb.svg","flag_bg":"1f1e7-1f1ec.svg","flag_bh":"1f1e7-1f1ed.svg","flag_bi":"1f1e7-1f1ee.svg","flag_bj":"1f1e7-1f1ef.svg","flag_bl":"1f1e7-1f1f1.svg","flag_black":"1f3f4.svg","flag_bm":"1f1e7-1f1f2.svg","flag_bn":"1f1e7-1f1f3.svg","flag_bo":"1f1e7-1f1f4.svg","flag_bq":"1f1e7-1f1f6.svg","flag_br":"1f1e7-1f1f7.svg","flag_bs":"1f1e7-1f1f8.svg","flag_bt":"1f1e7-1f1f9.svg","flag_bv":"1f1e7-1f1fb.svg","flag_bw":"1f1e7-1f1fc.svg","flag_by":"1f1e7-1f1fe.svg","flag_bz":"1f1e7-1f1ff.svg","flag_ca":"1f1e8-1f1e6.svg","flag_cc":"1f1e8-1f1e8.svg","flag_cd":"1f1e8-1f1e9.svg","flag_cf":"1f1e8-1f1eb.svg","flag_cg":"1f1e8-1f1ec.svg","flag_ch":"1f1e8-1f1ed.svg","flag_ci":"1f1e8-1f1ee.svg","flag_ck":"1f1e8-1f1f0.svg","flag_cl":"1f1e8-1f1f1.svg","flag_cm":"1f1e8-1f1f2.svg","flag_cn":"1f1e8-1f1f3.svg","flag_co":"1f1e8-1f1f4.svg","flag_cp":"1f1e8-1f1f5.svg","flag_cr":"1f1e8-1f1f7.svg","flag_cu":"1f1e8-1f1fa.svg","flag_cv":"1f1e8-1f1fb.svg","flag_cw":"1f1e8-1f1fc.svg","flag_cx":"1f1e8-1f1fd.svg","flag_cy":"1f1e8-1f1fe.svg","flag_cz":"1f1e8-1f1ff.svg","flag_de":"1f1e9-1f1ea.svg","flag_dg":"1f1e9-1f1ec.svg","flag_dj":"1f1e9-1f1ef.svg","flag_dk":"1f1e9-1f1f0.svg","flag_dm":"1f1e9-1f1f2.svg","flag_do":"1f1e9-1f1f4.svg","flag_dz":"1f1e9-1f1ff.svg","flag_ea":"1f1ea-1f1e6.svg","flag_ec":"1f1ea-1f1e8.svg","flag_ee":"1f1ea-1f1ea.svg","flag_eg":"1f1ea-1f1ec.svg","flag_eh":"1f1ea-1f1ed.svg","flag_er":"1f1ea-1f1f7.svg","flag_es":"1f1ea-1f1f8.svg","flag_et":"1f1ea-1f1f9.svg","flag_eu":"1f1ea-1f1fa.svg","flag_fi":"1f1eb-1f1ee.svg","flag_fj":"1f1eb-1f1ef.svg","flag_fk":"1f1eb-1f1f0.svg","flag_fm":"1f1eb-1f1f2.svg","flag_fo":"1f1eb-1f1f4.svg","flag_fr":"1f1eb-1f1f7.svg","flag_ga":"1f1ec-1f1e6.svg","flag_gb":"1f1ec-1f1e7.svg","flag_gd":"1f1ec-1f1e9.svg","flag_ge":"1f1ec-1f1ea.svg","flag_gf":"1f1ec-1f1eb.svg","flag_gg":"1f1ec-1f1ec.svg","flag_gh":"1f1ec-1f1ed.svg","flag_gi":"1f1ec-1f1ee.svg","flag_gl":"1f1ec-1f1f1.svg","flag_gm":"1f1ec-1f1f2.svg","flag_gn":"1f1ec-1f1f3.svg","flag_gp":"1f1ec-1f1f5.svg","flag_gq":"1f1ec-1f1f6.svg","flag_gr":"1f1ec-1f1f7.svg","flag_gs":"1f1ec-1f1f8.svg","flag_gt":"1f1ec-1f1f9.svg","flag_gu":"1f1ec-1f1fa.svg","flag_gw":"1f1ec-1f1fc.svg","flag_gy":"1f1ec-1f1fe.svg","flag_hk":"1f1ed-1f1f0.svg","flag_hm":"1f1ed-1f1f2.svg","flag_hn":"1f1ed-1f1f3.svg","flag_hr":"1f1ed-1f1f7.svg","flag_ht":"1f1ed-1f1f9.svg","flag_hu":"1f1ed-1f1fa.svg","flag_ic":"1f1ee-1f1e8.svg","flag_id":"1f1ee-1f1e9.svg","flag_ie":"1f1ee-1f1ea.svg","flag_il":"1f1ee-1f1f1.svg","flag_im":"1f1ee-1f1f2.svg","flag_in":"1f1ee-1f1f3.svg","flag_io":"1f1ee-1f1f4.svg","flag_iq":"1f1ee-1f1f6.svg","flag_ir":"1f1ee-1f1f7.svg","flag_is":"1f1ee-1f1f8.svg","flag_it":"1f1ee-1f1f9.svg","flag_je":"1f1ef-1f1ea.svg","flag_jm":"1f1ef-1f1f2.svg","flag_jo":"1f1ef-1f1f4.svg","flag_jp":"1f1ef-1f1f5.svg","flag_ke":"1f1f0-1f1ea.svg","flag_kg":"1f1f0-1f1ec.svg","flag_kh":"1f1f0-1f1ed.svg","flag_ki":"1f1f0-1f1ee.svg","flag_km":"1f1f0-1f1f2.svg","flag_kn":"1f1f0-1f1f3.svg","flag_kp":"1f1f0-1f1f5.svg","flag_kr":"1f1f0-1f1f7.svg","flag_kw":"1f1f0-1f1fc.svg","flag_ky":"1f1f0-1f1fe.svg","flag_kz":"1f1f0-1f1ff.svg","flag_la":"1f1f1-1f1e6.svg","flag_lb":"1f1f1-1f1e7.svg","flag_lc":"1f1f1-1f1e8.svg","flag_li":"1f1f1-1f1ee.svg","flag_lk":"1f1f1-1f1f0.svg","flag_lr":"1f1f1-1f1f7.svg","flag_ls":"1f1f1-1f1f8.svg","flag_lt":"1f1f1-1f1f9.svg","flag_lu":"1f1f1-1f1fa.svg","flag_lv":"1f1f1-1f1fb.svg","flag_ly":"1f1f1-1f1fe.svg","flag_ma":"1f1f2-1f1e6.svg","flag_mc":"1f1f2-1f1e8.svg","flag_md":"1f1f2-1f1e9.svg","flag_me":"1f1f2-1f1ea.svg","flag_mf":"1f1f2-1f1eb.svg","flag_mg":"1f1f2-1f1ec.svg","flag_mh":"1f1f2-1f1ed.svg","flag_mk":"1f1f2-1f1f0.svg","flag_ml":"1f1f2-1f1f1.svg","flag_mm":"1f1f2-1f1f2.svg","flag_mn":"1f1f2-1f1f3.svg","flag_mo":"1f1f2-1f1f4.svg","flag_mp":"1f1f2-1f1f5.svg","flag_mq":"1f1f2-1f1f6.svg","flag_mr":"1f1f2-1f1f7.svg","flag_ms":"1f1f2-1f1f8.svg","flag_mt":"1f1f2-1f1f9.svg","flag_mu":"1f1f2-1f1fa.svg","flag_mv":"1f1f2-1f1fb.svg","flag_mw":"1f1f2-1f1fc.svg","flag_mx":"1f1f2-1f1fd.svg","flag_my":"1f1f2-1f1fe.svg","flag_mz":"1f1f2-1f1ff.svg","flag_na":"1f1f3-1f1e6.svg","flag_nc":"1f1f3-1f1e8.svg","flag_ne":"1f1f3-1f1ea.svg","flag_nf":"1f1f3-1f1eb.svg","flag_ng":"1f1f3-1f1ec.svg","flag_ni":"1f1f3-1f1ee.svg","flag_nl":"1f1f3-1f1f1.svg","flag_no":"1f1f3-1f1f4.svg","flag_np":"1f1f3-1f1f5.svg","flag_nr":"1f1f3-1f1f7.svg","flag_nu":"1f1f3-1f1fa.svg","flag_nz":"1f1f3-1f1ff.svg","flag_om":"1f1f4-1f1f2.svg","flag_pa":"1f1f5-1f1e6.svg","flag_pe":"1f1f5-1f1ea.svg","flag_pf":"1f1f5-1f1eb.svg","flag_pg":"1f1f5-1f1ec.svg","flag_ph":"1f1f5-1f1ed.svg","flag_pk":"1f1f5-1f1f0.svg","flag_pl":"1f1f5-1f1f1.svg","flag_pm":"1f1f5-1f1f2.svg","flag_pn":"1f1f5-1f1f3.svg","flag_pr":"1f1f5-1f1f7.svg","flag_ps":"1f1f5-1f1f8.svg","flag_pt":"1f1f5-1f1f9.svg","flag_pw":"1f1f5-1f1fc.svg","flag_py":"1f1f5-1f1fe.svg","flag_qa":"1f1f6-1f1e6.svg","flag_re":"1f1f7-1f1ea.svg","flag_ro":"1f1f7-1f1f4.svg","flag_rs":"1f1f7-1f1f8.svg","flag_ru":"1f1f7-1f1fa.svg","flag_rw":"1f1f7-1f1fc.svg","flag_sa":"1f1f8-1f1e6.svg","flag_sb":"1f1f8-1f1e7.svg","flag_sc":"1f1f8-1f1e8.svg","flag_sd":"1f1f8-1f1e9.svg","flag_se":"1f1f8-1f1ea.svg","flag_sg":"1f1f8-1f1ec.svg","flag_sh":"1f1f8-1f1ed.svg","flag_si":"1f1f8-1f1ee.svg","flag_sj":"1f1f8-1f1ef.svg","flag_sk":"1f1f8-1f1f0.svg","flag_sl":"1f1f8-1f1f1.svg","flag_sm":"1f1f8-1f1f2.svg","flag_sn":"1f1f8-1f1f3.svg","flag_so":"1f1f8-1f1f4.svg","flag_sr":"1f1f8-1f1f7.svg","flag_ss":"1f1f8-1f1f8.svg","flag_st":"1f1f8-1f1f9.svg","flag_sv":"1f1f8-1f1fb.svg","flag_sx":"1f1f8-1f1fd.svg","flag_sy":"1f1f8-1f1fe.svg","flag_sz":"1f1f8-1f1ff.svg","flag_ta":"1f1f9-1f1e6.svg","flag_tc":"1f1f9-1f1e8.svg","flag_td":"1f1f9-1f1e9.svg","flag_tf":"1f1f9-1f1eb.svg","flag_tg":"1f1f9-1f1ec.svg","flag_th":"1f1f9-1f1ed.svg","flag_tj":"1f1f9-1f1ef.svg","flag_tk":"1f1f9-1f1f0.svg","flag_tl":"1f1f9-1f1f1.svg","flag_tm":"1f1f9-1f1f2.svg","flag_tn":"1f1f9-1f1f3.svg","flag_to":"1f1f9-1f1f4.svg","flag_tr":"1f1f9-1f1f7.svg","flag_tt":"1f1f9-1f1f9.svg","flag_tv":"1f1f9-1f1fb.svg","flag_tw":"1f1f9-1f1fc.svg","flag_tz":"1f1f9-1f1ff.svg","flag_ua":"1f1fa-1f1e6.svg","flag_ug":"1f1fa-1f1ec.svg","flag_um":"1f1fa-1f1f2.svg","flag_us":"1f1fa-1f1f8.svg","flag_uy":"1f1fa-1f1fe.svg","flag_uz":"1f1fa-1f1ff.svg","flag_va":"1f1fb-1f1e6.svg","flag_vc":"1f1fb-1f1e8.svg","flag_ve":"1f1fb-1f1ea.svg","flag_vg":"1f1fb-1f1ec.svg","flag_vi":"1f1fb-1f1ee.svg","flag_vn":"1f1fb-1f1f3.svg","flag_vu":"1f1fb-1f1fa.svg","flag_wf":"1f1fc-1f1eb.svg","flag_white":"1f3f3.svg","flag_ws":"1f1fc-1f1f8.svg","flag_xk":"1f1fd-1f1f0.svg","flag_ye":"1f1fe-1f1ea.svg","flag_yt":"1f1fe-1f1f9.svg","flag_za":"1f1ff-1f1e6.svg","flag_zm":"1f1ff-1f1f2.svg","flag_zw":"1f1ff-1f1fc.svg","flags":"1f38f.svg","flamingo":"1f9a9.svg","flashlight":"1f526.svg","flatbread":"1fad3.svg","fleur-de-lis":"269c.svg","floppy_disk":"1f4be.svg","flower_playing_cards":"1f3b4.svg","flushed":"1f633.svg","fly":"1fab0.svg","flying_disc":"1f94f.svg","flying_saucer":"1f6f8.svg","fog":"1f32b.svg","foggy":"1f301.svg","fondue":"1fad5.svg","foot":"1f9b6.svg","foot_tone1":"1f9b6-1f3fb.svg","foot_tone2":"1f9b6-1f3fc.svg","foot_tone3":"1f9b6-1f3fd.svg","foot_tone4":"1f9b6-1f3fe.svg","foot_tone5":"1f9b6-1f3ff.svg","football":"1f3c8.svg","footprints":"1f463.svg","fork_and_knife":"1f374.svg","fork_knife_plate":"1f37d.svg","fortune_cookie":"1f960.svg","fountain":"26f2.svg","four":"34-20e3.svg","four_leaf_clover":"1f340.svg","fox":"1f98a.svg","frame_photo":"1f5bc.svg","free":"1f193.svg","french_bread":"1f956.svg","fried_shrimp":"1f364.svg","fries":"1f35f.svg","frog":"1f438.svg","frowning2":"2639.svg","frowning":"1f626.svg","fuelpump":"26fd.svg","full_moon":"1f315.svg","full_moon_with_face":"1f31d.svg","game_die":"1f3b2.svg","garlic":"1f9c4.svg","gear":"2699.svg","gem":"1f48e.svg","gemini":"264a.svg","genie":"1f9de.svg","ghost":"1f47b.svg","gift":"1f381.svg","gift_heart":"1f49d.svg","giraffe":"1f992.svg","girl":"1f467.svg","girl_tone1":"1f467-1f3fb.svg","girl_tone2":"1f467-1f3fc.svg","girl_tone3":"1f467-1f3fd.svg","girl_tone4":"1f467-1f3fe.svg","girl_tone5":"1f467-1f3ff.svg","globe_with_meridians":"1f310.svg","gloves":"1f9e4.svg","goal":"1f945.svg","goat":"1f410.svg","goggles":"1f97d.svg","golf":"26f3.svg","gorilla":"1f98d.svg","grapes":"1f347.svg","green_apple":"1f34f.svg","green_book":"1f4d7.svg","green_circle":"1f7e2.svg","green_heart":"1f49a.svg","green_square":"1f7e9.svg","grey_exclamation":"2755.svg","grey_question":"2754.svg","grimacing":"1f62c.svg","grin":"1f601.svg","grinning":"1f600.svg","guard":"1f482.svg","guard_tone1":"1f482-1f3fb.svg","guard_tone2":"1f482-1f3fc.svg","guard_tone3":"1f482-1f3fd.svg","guard_tone4":"1f482-1f3fe.svg","guard_tone5":"1f482-1f3ff.svg","guide_dog":"1f9ae.svg","guitar":"1f3b8.svg","gun":"1f52b.svg","hamburger":"1f354.svg","hammer":"1f528.svg","hammer_pick":"2692.svg","hamsa":"1faac.svg","hamster":"1f439.svg","hand_splayed":"1f590.svg","hand_splayed_tone1":"1f590-1f3fb.svg","hand_splayed_tone2":"1f590-1f3fc.svg","hand_splayed_tone3":"1f590-1f3fd.svg","hand_splayed_tone4":"1f590-1f3fe.svg","hand_splayed_tone5":"1f590-1f3ff.svg","hand_with_index_finger_and_thumb_crossed":"1faf0.svg","hand_with_index_finger_and_thumb_crossed_tone1":"1faf0-1f3fb.svg","hand_with_index_finger_and_thumb_crossed_tone2":"1faf0-1f3fc.svg","hand_with_index_finger_and_thumb_crossed_tone3":"1faf0-1f3fd.svg","hand_with_index_finger_and_thumb_crossed_tone4":"1faf0-1f3fe.svg","hand_with_index_finger_and_thumb_crossed_tone5":"1faf0-1f3ff.svg","handbag":"1f45c.svg","handshake":"1f91d.svg","handshake_tone1":"1f91d-1f3fb.svg","handshake_tone1_tone2":"1faf1-1f3fb-200d-1faf2-1f3fc.svg","handshake_tone1_tone3":"1faf1-1f3fb-200d-1faf2-1f3fd.svg","handshake_tone1_tone4":"1faf1-1f3fb-200d-1faf2-1f3fe.svg","handshake_tone1_tone5":"1faf1-1f3fb-200d-1faf2-1f3ff.svg","handshake_tone2":"1f91d-1f3fc.svg","handshake_tone2_tone1":"1faf1-1f3fc-200d-1faf2-1f3fb.svg","handshake_tone2_tone3":"1faf1-1f3fc-200d-1faf2-1f3fd.svg","handshake_tone2_tone4":"1faf1-1f3fc-200d-1faf2-1f3fe.svg","handshake_tone2_tone5":"1faf1-1f3fc-200d-1faf2-1f3ff.svg","handshake_tone3":"1f91d-1f3fd.svg","handshake_tone3_tone1":"1faf1-1f3fd-200d-1faf2-1f3fb.svg","handshake_tone3_tone2":"1faf1-1f3fd-200d-1faf2-1f3fc.svg","handshake_tone3_tone4":"1faf1-1f3fd-200d-1faf2-1f3fe.svg","handshake_tone3_tone5":"1faf1-1f3fd-200d-1faf2-1f3ff.svg","handshake_tone4":"1f91d-1f3fe.svg","handshake_tone4_tone1":"1faf1-1f3fe-200d-1faf2-1f3fb.svg","handshake_tone4_tone2":"1faf1-1f3fe-200d-1faf2-1f3fc.svg","handshake_tone4_tone3":"1faf1-1f3fe-200d-1faf2-1f3fd.svg","handshake_tone4_tone5":"1faf1-1f3fe-200d-1faf2-1f3ff.svg","handshake_tone5":"1f91d-1f3ff.svg","handshake_tone5_tone1":"1faf1-1f3ff-200d-1faf2-1f3fb.svg","handshake_tone5_tone2":"1faf1-1f3ff-200d-1faf2-1f3fc.svg","handshake_tone5_tone3":"1faf1-1f3ff-200d-1faf2-1f3fd.svg","handshake_tone5_tone4":"1faf1-1f3ff-200d-1faf2-1f3fe.svg","hash":"23-20e3.svg","hatched_chick":"1f425.svg","hatching_chick":"1f423.svg","head_bandage":"1f915.svg","headphones":"1f3a7.svg","headstone":"1faa6.svg","health_worker":"1f9d1-200d-2695-fe0f.svg","health_worker_tone1":"1f9d1-1f3fb-200d-2695-fe0f.svg","health_worker_tone2":"1f9d1-1f3fc-200d-2695-fe0f.svg","health_worker_tone3":"1f9d1-1f3fd-200d-2695-fe0f.svg","health_worker_tone4":"1f9d1-1f3fe-200d-2695-fe0f.svg","health_worker_tone5":"1f9d1-1f3ff-200d-2695-fe0f.svg","hear_no_evil":"1f649.svg","heart":"2764.svg","heart_decoration":"1f49f.svg","heart_exclamation":"2763.svg","heart_eyes":"1f60d.svg","heart_eyes_cat":"1f63b.svg","heart_hands":"1faf6.svg","heart_hands_tone1":"1faf6-1f3fb.svg","heart_hands_tone2":"1faf6-1f3fc.svg","heart_hands_tone3":"1faf6-1f3fd.svg","heart_hands_tone4":"1faf6-1f3fe.svg","heart_hands_tone5":"1faf6-1f3ff.svg","heart_on_fire":"2764-fe0f-200d-1f525.svg","heartbeat":"1f493.svg","heartpulse":"1f497.svg","hearts":"2665.svg","heavy_check_mark":"2714.svg","heavy_division_sign":"2797.svg","heavy_dollar_sign":"1f4b2.svg","heavy_equals_sign":"1f7f0.svg","heavy_minus_sign":"2796.svg","heavy_multiplication_x":"2716.svg","heavy_plus_sign":"2795.svg","hedgehog":"1f994.svg","helicopter":"1f681.svg","helmet_with_cross":"26d1.svg","herb":"1f33f.svg","hibiscus":"1f33a.svg","high_brightness":"1f506.svg","high_heel":"1f460.svg","hiking_boot":"1f97e.svg","hindu_temple":"1f6d5.svg","hippopotamus":"1f99b.svg","hockey":"1f3d2.svg","hole":"1f573.svg","homes":"1f3d8.svg","honey_pot":"1f36f.svg","hook":"1fa9d.svg","horse":"1f434.svg","horse_racing":"1f3c7.svg","horse_racing_tone1":"1f3c7-1f3fb.svg","horse_racing_tone2":"1f3c7-1f3fc.svg","horse_racing_tone3":"1f3c7-1f3fd.svg","horse_racing_tone4":"1f3c7-1f3fe.svg","horse_racing_tone5":"1f3c7-1f3ff.svg","hospital":"1f3e5.svg","hot_face":"1f975.svg","hot_pepper":"1f336.svg","hotdog":"1f32d.svg","hotel":"1f3e8.svg","hotsprings":"2668.svg","hourglass":"231b.svg","hourglass_flowing_sand":"23f3.svg","house":"1f3e0.svg","house_abandoned":"1f3da.svg","house_with_garden":"1f3e1.svg","hugging":"1f917.svg","hushed":"1f62f.svg","hut":"1f6d6.svg","ice_cream":"1f368.svg","ice_cube":"1f9ca.svg","ice_skate":"26f8.svg","icecream":"1f366.svg","id":"1f194.svg","identification_card":"1faaa.svg","ideograph_advantage":"1f250.svg","imp":"1f47f.svg","inbox_tray":"1f4e5.svg","incoming_envelope":"1f4e8.svg","index_pointing_at_the_viewer":"1faf5.svg","index_pointing_at_the_viewer_tone1":"1faf5-1f3fb.svg","index_pointing_at_the_viewer_tone2":"1faf5-1f3fc.svg","index_pointing_at_the_viewer_tone3":"1faf5-1f3fd.svg","index_pointing_at_the_viewer_tone4":"1faf5-1f3fe.svg","index_pointing_at_the_viewer_tone5":"1faf5-1f3ff.svg","infinity":"267e.svg","information_source":"2139.svg","innocent":"1f607.svg","interrobang":"2049.svg","island":"1f3dd.svg","izakaya_lantern":"1f3ee.svg","jack_o_lantern":"1f383.svg","japan":"1f5fe.svg","japanese_castle":"1f3ef.svg","japanese_goblin":"1f47a.svg","japanese_ogre":"1f479.svg","jar":"1fad9.svg","jeans":"1f456.svg","jigsaw":"1f9e9.svg","joy":"1f602.svg","joy_cat":"1f639.svg","joystick":"1f579.svg","judge":"1f9d1-200d-2696-fe0f.svg","judge_tone1":"1f9d1-1f3fb-200d-2696-fe0f.svg","judge_tone2":"1f9d1-1f3fc-200d-2696-fe0f.svg","judge_tone3":"1f9d1-1f3fd-200d-2696-fe0f.svg","judge_tone4":"1f9d1-1f3fe-200d-2696-fe0f.svg","judge_tone5":"1f9d1-1f3ff-200d-2696-fe0f.svg","kaaba":"1f54b.svg","kangaroo":"1f998.svg","key2":"1f5dd.svg","key":"1f511.svg","keyboard":"2328.svg","keycap_ten":"1f51f.svg","kimono":"1f458.svg","kiss":"1f48b.svg","kiss_man_man_tone1":"1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg","kiss_man_man_tone1_tone2":"1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg","kiss_man_man_tone1_tone3":"1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg","kiss_man_man_tone1_tone4":"1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg","kiss_man_man_tone1_tone5":"1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg","kiss_man_man_tone2":"1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg","kiss_man_man_tone2_tone1":"1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg","kiss_man_man_tone2_tone3":"1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg","kiss_man_man_tone2_tone4":"1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg","kiss_man_man_tone2_tone5":"1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg","kiss_man_man_tone3":"1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg","kiss_man_man_tone3_tone1":"1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg","kiss_man_man_tone3_tone2":"1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg","kiss_man_man_tone3_tone4":"1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg","kiss_man_man_tone3_tone5":"1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg","kiss_man_man_tone4":"1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg","kiss_man_man_tone4_tone1":"1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg","kiss_man_man_tone4_tone2":"1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg","kiss_man_man_tone4_tone3":"1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg","kiss_man_man_tone4_tone5":"1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg","kiss_man_man_tone5":"1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg","kiss_man_man_tone5_tone1":"1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg","kiss_man_man_tone5_tone2":"1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg","kiss_man_man_tone5_tone3":"1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg","kiss_man_man_tone5_tone4":"1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg","kiss_mm":"1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.svg","kiss_person_person_tone1_tone2":"1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.svg","kiss_person_person_tone1_tone3":"1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.svg","kiss_person_person_tone1_tone4":"1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.svg","kiss_person_person_tone1_tone5":"1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.svg","kiss_person_person_tone2_tone1":"1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.svg","kiss_person_person_tone2_tone3":"1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.svg","kiss_person_person_tone2_tone4":"1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.svg","kiss_person_person_tone2_tone5":"1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.svg","kiss_person_person_tone3_tone1":"1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.svg","kiss_person_person_tone3_tone2":"1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.svg","kiss_person_person_tone3_tone4":"1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.svg","kiss_person_person_tone3_tone5":"1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.svg","kiss_person_person_tone4_tone1":"1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.svg","kiss_person_person_tone4_tone2":"1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.svg","kiss_person_person_tone4_tone3":"1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.svg","kiss_person_person_tone4_tone5":"1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.svg","kiss_person_person_tone5_tone1":"1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.svg","kiss_person_person_tone5_tone2":"1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.svg","kiss_person_person_tone5_tone3":"1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.svg","kiss_person_person_tone5_tone4":"1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.svg","kiss_tone1":"1f48f-1f3fb.svg","kiss_tone2":"1f48f-1f3fc.svg","kiss_tone3":"1f48f-1f3fd.svg","kiss_tone4":"1f48f-1f3fe.svg","kiss_tone5":"1f48f-1f3ff.svg","kiss_woman_man":"1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.svg","kiss_woman_man_tone1":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg","kiss_woman_man_tone1_tone2":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg","kiss_woman_man_tone1_tone3":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg","kiss_woman_man_tone1_tone4":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg","kiss_woman_man_tone1_tone5":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg","kiss_woman_man_tone2":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg","kiss_woman_man_tone2_tone1":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg","kiss_woman_man_tone2_tone3":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg","kiss_woman_man_tone2_tone4":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg","kiss_woman_man_tone2_tone5":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg","kiss_woman_man_tone3":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg","kiss_woman_man_tone3_tone1":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg","kiss_woman_man_tone3_tone2":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg","kiss_woman_man_tone3_tone4":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg","kiss_woman_man_tone3_tone5":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg","kiss_woman_man_tone4":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg","kiss_woman_man_tone4_tone1":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg","kiss_woman_man_tone4_tone2":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg","kiss_woman_man_tone4_tone3":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg","kiss_woman_man_tone4_tone5":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg","kiss_woman_man_tone5":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.svg","kiss_woman_man_tone5_tone1":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.svg","kiss_woman_man_tone5_tone2":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.svg","kiss_woman_man_tone5_tone3":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.svg","kiss_woman_man_tone5_tone4":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.svg","kiss_woman_woman_tone1":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.svg","kiss_woman_woman_tone1_tone2":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.svg","kiss_woman_woman_tone1_tone3":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.svg","kiss_woman_woman_tone1_tone4":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.svg","kiss_woman_woman_tone1_tone5":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.svg","kiss_woman_woman_tone2":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.svg","kiss_woman_woman_tone2_tone1":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.svg","kiss_woman_woman_tone2_tone3":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.svg","kiss_woman_woman_tone2_tone4":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.svg","kiss_woman_woman_tone2_tone5":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.svg","kiss_woman_woman_tone3":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.svg","kiss_woman_woman_tone3_tone1":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.svg","kiss_woman_woman_tone3_tone2":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.svg","kiss_woman_woman_tone3_tone4":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.svg","kiss_woman_woman_tone3_tone5":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.svg","kiss_woman_woman_tone4":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.svg","kiss_woman_woman_tone4_tone1":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.svg","kiss_woman_woman_tone4_tone2":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.svg","kiss_woman_woman_tone4_tone3":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.svg","kiss_woman_woman_tone4_tone5":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.svg","kiss_woman_woman_tone5":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.svg","kiss_woman_woman_tone5_tone1":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.svg","kiss_woman_woman_tone5_tone2":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.svg","kiss_woman_woman_tone5_tone3":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.svg","kiss_woman_woman_tone5_tone4":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.svg","kiss_ww":"1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.svg","kissing":"1f617.svg","kissing_cat":"1f63d.svg","kissing_closed_eyes":"1f61a.svg","kissing_heart":"1f618.svg","kissing_smiling_eyes":"1f619.svg","kite":"1fa81.svg","kiwi":"1f95d.svg","knife":"1f52a.svg","knot":"1faa2.svg","koala":"1f428.svg","koko":"1f201.svg","lab_coat":"1f97c.svg","label":"1f3f7.svg","lacrosse":"1f94d.svg","ladder":"1fa9c.svg","lady_beetle":"1f41e.svg","large_blue_diamond":"1f537.svg","large_orange_diamond":"1f536.svg","last_quarter_moon":"1f317.svg","last_quarter_moon_with_face":"1f31c.svg","laughing":"1f606.svg","leafy_green":"1f96c.svg","leaves":"1f343.svg","ledger":"1f4d2.svg","left_facing_fist":"1f91b.svg","left_facing_fist_tone1":"1f91b-1f3fb.svg","left_facing_fist_tone2":"1f91b-1f3fc.svg","left_facing_fist_tone3":"1f91b-1f3fd.svg","left_facing_fist_tone4":"1f91b-1f3fe.svg","left_facing_fist_tone5":"1f91b-1f3ff.svg","left_luggage":"1f6c5.svg","left_right_arrow":"2194.svg","leftwards_arrow_with_hook":"21a9.svg","leftwards_hand":"1faf2.svg","leftwards_hand_tone1":"1faf2-1f3fb.svg","leftwards_hand_tone2":"1faf2-1f3fc.svg","leftwards_hand_tone3":"1faf2-1f3fd.svg","leftwards_hand_tone4":"1faf2-1f3fe.svg","leftwards_hand_tone5":"1faf2-1f3ff.svg","leg":"1f9b5.svg","leg_tone1":"1f9b5-1f3fb.svg","leg_tone2":"1f9b5-1f3fc.svg","leg_tone3":"1f9b5-1f3fd.svg","leg_tone4":"1f9b5-1f3fe.svg","leg_tone5":"1f9b5-1f3ff.svg","lemon":"1f34b.svg","leo":"264c.svg","leopard":"1f406.svg","level_slider":"1f39a.svg","levitate":"1f574.svg","levitate_tone1":"1f574-1f3fb.svg","levitate_tone2":"1f574-1f3fc.svg","levitate_tone3":"1f574-1f3fd.svg","levitate_tone4":"1f574-1f3fe.svg","levitate_tone5":"1f574-1f3ff.svg","libra":"264e.svg","light_rail":"1f688.svg","link":"1f517.svg","lion_face":"1f981.svg","lips":"1f444.svg","lipstick":"1f484.svg","lizard":"1f98e.svg","llama":"1f999.svg","lobster":"1f99e.svg","lock":"1f512.svg","lock_with_ink_pen":"1f50f.svg","lollipop":"1f36d.svg","long_drum":"1fa98.svg","loop":"27bf.svg","lotus":"1fab7.svg","loud_sound":"1f50a.svg","loudspeaker":"1f4e2.svg","love_hotel":"1f3e9.svg","love_letter":"1f48c.svg","love_you_gesture":"1f91f.svg","love_you_gesture_tone1":"1f91f-1f3fb.svg","love_you_gesture_tone2":"1f91f-1f3fc.svg","love_you_gesture_tone3":"1f91f-1f3fd.svg","love_you_gesture_tone4":"1f91f-1f3fe.svg","love_you_gesture_tone5":"1f91f-1f3ff.svg","low_battery":"1faab.svg","low_brightness":"1f505.svg","luggage":"1f9f3.svg","lungs":"1fac1.svg","lying_face":"1f925.svg","m":"24c2.svg","mag":"1f50d.svg","mag_right":"1f50e.svg","mage":"1f9d9.svg","mage_tone1":"1f9d9-1f3fb.svg","mage_tone2":"1f9d9-1f3fc.svg","mage_tone3":"1f9d9-1f3fd.svg","mage_tone4":"1f9d9-1f3fe.svg","mage_tone5":"1f9d9-1f3ff.svg","magic_wand":"1fa84.svg","magnet":"1f9f2.svg","mahjong":"1f004.svg","mailbox":"1f4eb.svg","mailbox_closed":"1f4ea.svg","mailbox_with_mail":"1f4ec.svg","mailbox_with_no_mail":"1f4ed.svg","male_sign":"2642.svg","mammoth":"1f9a3.svg","man":"1f468.svg","man_artist":"1f468-200d-1f3a8.svg","man_artist_tone1":"1f468-1f3fb-200d-1f3a8.svg","man_artist_tone2":"1f468-1f3fc-200d-1f3a8.svg","man_artist_tone3":"1f468-1f3fd-200d-1f3a8.svg","man_artist_tone4":"1f468-1f3fe-200d-1f3a8.svg","man_artist_tone5":"1f468-1f3ff-200d-1f3a8.svg","man_astronaut":"1f468-200d-1f680.svg","man_astronaut_tone1":"1f468-1f3fb-200d-1f680.svg","man_astronaut_tone2":"1f468-1f3fc-200d-1f680.svg","man_astronaut_tone3":"1f468-1f3fd-200d-1f680.svg","man_astronaut_tone4":"1f468-1f3fe-200d-1f680.svg","man_astronaut_tone5":"1f468-1f3ff-200d-1f680.svg","man_bald":"1f468-200d-1f9b2.svg","man_bald_tone1":"1f468-1f3fb-200d-1f9b2.svg","man_bald_tone2":"1f468-1f3fc-200d-1f9b2.svg","man_bald_tone3":"1f468-1f3fd-200d-1f9b2.svg","man_bald_tone4":"1f468-1f3fe-200d-1f9b2.svg","man_bald_tone5":"1f468-1f3ff-200d-1f9b2.svg","man_beard":"1f9d4-200d-2642-fe0f.svg","man_biking":"1f6b4-200d-2642-fe0f.svg","man_biking_tone1":"1f6b4-1f3fb-200d-2642-fe0f.svg","man_biking_tone2":"1f6b4-1f3fc-200d-2642-fe0f.svg","man_biking_tone3":"1f6b4-1f3fd-200d-2642-fe0f.svg","man_biking_tone4":"1f6b4-1f3fe-200d-2642-fe0f.svg","man_biking_tone5":"1f6b4-1f3ff-200d-2642-fe0f.svg","man_bouncing_ball":"26f9-fe0f-200d-2642-fe0f.svg","man_bouncing_ball_tone1":"26f9-1f3fb-200d-2642-fe0f.svg","man_bouncing_ball_tone2":"26f9-1f3fc-200d-2642-fe0f.svg","man_bouncing_ball_tone3":"26f9-1f3fd-200d-2642-fe0f.svg","man_bouncing_ball_tone4":"26f9-1f3fe-200d-2642-fe0f.svg","man_bouncing_ball_tone5":"26f9-1f3ff-200d-2642-fe0f.svg","man_bowing":"1f647-200d-2642-fe0f.svg","man_bowing_tone1":"1f647-1f3fb-200d-2642-fe0f.svg","man_bowing_tone2":"1f647-1f3fc-200d-2642-fe0f.svg","man_bowing_tone3":"1f647-1f3fd-200d-2642-fe0f.svg","man_bowing_tone4":"1f647-1f3fe-200d-2642-fe0f.svg","man_bowing_tone5":"1f647-1f3ff-200d-2642-fe0f.svg","man_cartwheeling":"1f938-200d-2642-fe0f.svg","man_cartwheeling_tone1":"1f938-1f3fb-200d-2642-fe0f.svg","man_cartwheeling_tone2":"1f938-1f3fc-200d-2642-fe0f.svg","man_cartwheeling_tone3":"1f938-1f3fd-200d-2642-fe0f.svg","man_cartwheeling_tone4":"1f938-1f3fe-200d-2642-fe0f.svg","man_cartwheeling_tone5":"1f938-1f3ff-200d-2642-fe0f.svg","man_climbing":"1f9d7-200d-2642-fe0f.svg","man_climbing_tone1":"1f9d7-1f3fb-200d-2642-fe0f.svg","man_climbing_tone2":"1f9d7-1f3fc-200d-2642-fe0f.svg","man_climbing_tone3":"1f9d7-1f3fd-200d-2642-fe0f.svg","man_climbing_tone4":"1f9d7-1f3fe-200d-2642-fe0f.svg","man_climbing_tone5":"1f9d7-1f3ff-200d-2642-fe0f.svg","man_construction_worker":"1f477-200d-2642-fe0f.svg","man_construction_worker_tone1":"1f477-1f3fb-200d-2642-fe0f.svg","man_construction_worker_tone2":"1f477-1f3fc-200d-2642-fe0f.svg","man_construction_worker_tone3":"1f477-1f3fd-200d-2642-fe0f.svg","man_construction_worker_tone4":"1f477-1f3fe-200d-2642-fe0f.svg","man_construction_worker_tone5":"1f477-1f3ff-200d-2642-fe0f.svg","man_cook":"1f468-200d-1f373.svg","man_cook_tone1":"1f468-1f3fb-200d-1f373.svg","man_cook_tone2":"1f468-1f3fc-200d-1f373.svg","man_cook_tone3":"1f468-1f3fd-200d-1f373.svg","man_cook_tone4":"1f468-1f3fe-200d-1f373.svg","man_cook_tone5":"1f468-1f3ff-200d-1f373.svg","man_curly_haired":"1f468-200d-1f9b1.svg","man_curly_haired_tone1":"1f468-1f3fb-200d-1f9b1.svg","man_curly_haired_tone2":"1f468-1f3fc-200d-1f9b1.svg","man_curly_haired_tone3":"1f468-1f3fd-200d-1f9b1.svg","man_curly_haired_tone4":"1f468-1f3fe-200d-1f9b1.svg","man_curly_haired_tone5":"1f468-1f3ff-200d-1f9b1.svg","man_dancing":"1f57a.svg","man_dancing_tone1":"1f57a-1f3fb.svg","man_dancing_tone2":"1f57a-1f3fc.svg","man_dancing_tone3":"1f57a-1f3fd.svg","man_dancing_tone4":"1f57a-1f3fe.svg","man_dancing_tone5":"1f57a-1f3ff.svg","man_detective":"1f575-fe0f-200d-2642-fe0f.svg","man_detective_tone1":"1f575-1f3fb-200d-2642-fe0f.svg","man_detective_tone2":"1f575-1f3fc-200d-2642-fe0f.svg","man_detective_tone3":"1f575-1f3fd-200d-2642-fe0f.svg","man_detective_tone4":"1f575-1f3fe-200d-2642-fe0f.svg","man_detective_tone5":"1f575-1f3ff-200d-2642-fe0f.svg","man_elf":"1f9dd-200d-2642-fe0f.svg","man_elf_tone1":"1f9dd-1f3fb-200d-2642-fe0f.svg","man_elf_tone2":"1f9dd-1f3fc-200d-2642-fe0f.svg","man_elf_tone3":"1f9dd-1f3fd-200d-2642-fe0f.svg","man_elf_tone4":"1f9dd-1f3fe-200d-2642-fe0f.svg","man_elf_tone5":"1f9dd-1f3ff-200d-2642-fe0f.svg","man_facepalming":"1f926-200d-2642-fe0f.svg","man_facepalming_tone1":"1f926-1f3fb-200d-2642-fe0f.svg","man_facepalming_tone2":"1f926-1f3fc-200d-2642-fe0f.svg","man_facepalming_tone3":"1f926-1f3fd-200d-2642-fe0f.svg","man_facepalming_tone4":"1f926-1f3fe-200d-2642-fe0f.svg","man_facepalming_tone5":"1f926-1f3ff-200d-2642-fe0f.svg","man_factory_worker":"1f468-200d-1f3ed.svg","man_factory_worker_tone1":"1f468-1f3fb-200d-1f3ed.svg","man_factory_worker_tone2":"1f468-1f3fc-200d-1f3ed.svg","man_factory_worker_tone3":"1f468-1f3fd-200d-1f3ed.svg","man_factory_worker_tone4":"1f468-1f3fe-200d-1f3ed.svg","man_factory_worker_tone5":"1f468-1f3ff-200d-1f3ed.svg","man_fairy":"1f9da-200d-2642-fe0f.svg","man_fairy_tone1":"1f9da-1f3fb-200d-2642-fe0f.svg","man_fairy_tone2":"1f9da-1f3fc-200d-2642-fe0f.svg","man_fairy_tone3":"1f9da-1f3fd-200d-2642-fe0f.svg","man_fairy_tone4":"1f9da-1f3fe-200d-2642-fe0f.svg","man_fairy_tone5":"1f9da-1f3ff-200d-2642-fe0f.svg","man_farmer":"1f468-200d-1f33e.svg","man_farmer_tone1":"1f468-1f3fb-200d-1f33e.svg","man_farmer_tone2":"1f468-1f3fc-200d-1f33e.svg","man_farmer_tone3":"1f468-1f3fd-200d-1f33e.svg","man_farmer_tone4":"1f468-1f3fe-200d-1f33e.svg","man_farmer_tone5":"1f468-1f3ff-200d-1f33e.svg","man_feeding_baby":"1f468-200d-1f37c.svg","man_feeding_baby_tone1":"1f468-1f3fb-200d-1f37c.svg","man_feeding_baby_tone2":"1f468-1f3fc-200d-1f37c.svg","man_feeding_baby_tone3":"1f468-1f3fd-200d-1f37c.svg","man_feeding_baby_tone4":"1f468-1f3fe-200d-1f37c.svg","man_feeding_baby_tone5":"1f468-1f3ff-200d-1f37c.svg","man_firefighter":"1f468-200d-1f692.svg","man_firefighter_tone1":"1f468-1f3fb-200d-1f692.svg","man_firefighter_tone2":"1f468-1f3fc-200d-1f692.svg","man_firefighter_tone3":"1f468-1f3fd-200d-1f692.svg","man_firefighter_tone4":"1f468-1f3fe-200d-1f692.svg","man_firefighter_tone5":"1f468-1f3ff-200d-1f692.svg","man_frowning":"1f64d-200d-2642-fe0f.svg","man_frowning_tone1":"1f64d-1f3fb-200d-2642-fe0f.svg","man_frowning_tone2":"1f64d-1f3fc-200d-2642-fe0f.svg","man_frowning_tone3":"1f64d-1f3fd-200d-2642-fe0f.svg","man_frowning_tone4":"1f64d-1f3fe-200d-2642-fe0f.svg","man_frowning_tone5":"1f64d-1f3ff-200d-2642-fe0f.svg","man_genie":"1f9de-200d-2642-fe0f.svg","man_gesturing_no":"1f645-200d-2642-fe0f.svg","man_gesturing_no_tone1":"1f645-1f3fb-200d-2642-fe0f.svg","man_gesturing_no_tone2":"1f645-1f3fc-200d-2642-fe0f.svg","man_gesturing_no_tone3":"1f645-1f3fd-200d-2642-fe0f.svg","man_gesturing_no_tone4":"1f645-1f3fe-200d-2642-fe0f.svg","man_gesturing_no_tone5":"1f645-1f3ff-200d-2642-fe0f.svg","man_gesturing_ok":"1f646-200d-2642-fe0f.svg","man_gesturing_ok_tone1":"1f646-1f3fb-200d-2642-fe0f.svg","man_gesturing_ok_tone2":"1f646-1f3fc-200d-2642-fe0f.svg","man_gesturing_ok_tone3":"1f646-1f3fd-200d-2642-fe0f.svg","man_gesturing_ok_tone4":"1f646-1f3fe-200d-2642-fe0f.svg","man_gesturing_ok_tone5":"1f646-1f3ff-200d-2642-fe0f.svg","man_getting_face_massage":"1f486-200d-2642-fe0f.svg","man_getting_face_massage_tone1":"1f486-1f3fb-200d-2642-fe0f.svg","man_getting_face_massage_tone2":"1f486-1f3fc-200d-2642-fe0f.svg","man_getting_face_massage_tone3":"1f486-1f3fd-200d-2642-fe0f.svg","man_getting_face_massage_tone4":"1f486-1f3fe-200d-2642-fe0f.svg","man_getting_face_massage_tone5":"1f486-1f3ff-200d-2642-fe0f.svg","man_getting_haircut":"1f487-200d-2642-fe0f.svg","man_getting_haircut_tone1":"1f487-1f3fb-200d-2642-fe0f.svg","man_getting_haircut_tone2":"1f487-1f3fc-200d-2642-fe0f.svg","man_getting_haircut_tone3":"1f487-1f3fd-200d-2642-fe0f.svg","man_getting_haircut_tone4":"1f487-1f3fe-200d-2642-fe0f.svg","man_getting_haircut_tone5":"1f487-1f3ff-200d-2642-fe0f.svg","man_golfing":"1f3cc-fe0f-200d-2642-fe0f.svg","man_golfing_tone1":"1f3cc-1f3fb-200d-2642-fe0f.svg","man_golfing_tone2":"1f3cc-1f3fc-200d-2642-fe0f.svg","man_golfing_tone3":"1f3cc-1f3fd-200d-2642-fe0f.svg","man_golfing_tone4":"1f3cc-1f3fe-200d-2642-fe0f.svg","man_golfing_tone5":"1f3cc-1f3ff-200d-2642-fe0f.svg","man_guard":"1f482-200d-2642-fe0f.svg","man_guard_tone1":"1f482-1f3fb-200d-2642-fe0f.svg","man_guard_tone2":"1f482-1f3fc-200d-2642-fe0f.svg","man_guard_tone3":"1f482-1f3fd-200d-2642-fe0f.svg","man_guard_tone4":"1f482-1f3fe-200d-2642-fe0f.svg","man_guard_tone5":"1f482-1f3ff-200d-2642-fe0f.svg","man_health_worker":"1f468-200d-2695-fe0f.svg","man_health_worker_tone1":"1f468-1f3fb-200d-2695-fe0f.svg","man_health_worker_tone2":"1f468-1f3fc-200d-2695-fe0f.svg","man_health_worker_tone3":"1f468-1f3fd-200d-2695-fe0f.svg","man_health_worker_tone4":"1f468-1f3fe-200d-2695-fe0f.svg","man_health_worker_tone5":"1f468-1f3ff-200d-2695-fe0f.svg","man_in_lotus_position":"1f9d8-200d-2642-fe0f.svg","man_in_lotus_position_tone1":"1f9d8-1f3fb-200d-2642-fe0f.svg","man_in_lotus_position_tone2":"1f9d8-1f3fc-200d-2642-fe0f.svg","man_in_lotus_position_tone3":"1f9d8-1f3fd-200d-2642-fe0f.svg","man_in_lotus_position_tone4":"1f9d8-1f3fe-200d-2642-fe0f.svg","man_in_lotus_position_tone5":"1f9d8-1f3ff-200d-2642-fe0f.svg","man_in_manual_wheelchair":"1f468-200d-1f9bd.svg","man_in_manual_wheelchair_tone1":"1f468-1f3fb-200d-1f9bd.svg","man_in_manual_wheelchair_tone2":"1f468-1f3fc-200d-1f9bd.svg","man_in_manual_wheelchair_tone3":"1f468-1f3fd-200d-1f9bd.svg","man_in_manual_wheelchair_tone4":"1f468-1f3fe-200d-1f9bd.svg","man_in_manual_wheelchair_tone5":"1f468-1f3ff-200d-1f9bd.svg","man_in_motorized_wheelchair":"1f468-200d-1f9bc.svg","man_in_motorized_wheelchair_tone1":"1f468-1f3fb-200d-1f9bc.svg","man_in_motorized_wheelchair_tone2":"1f468-1f3fc-200d-1f9bc.svg","man_in_motorized_wheelchair_tone3":"1f468-1f3fd-200d-1f9bc.svg","man_in_motorized_wheelchair_tone4":"1f468-1f3fe-200d-1f9bc.svg","man_in_motorized_wheelchair_tone5":"1f468-1f3ff-200d-1f9bc.svg","man_in_santa_hat":"1f468-200d-1f384.svg","man_in_santa_hat_tone1":"1f468-1f3fb-200d-1f384.svg","man_in_santa_hat_tone2":"1f468-1f3fc-200d-1f384.svg","man_in_santa_hat_tone3":"1f468-1f3fd-200d-1f384.svg","man_in_santa_hat_tone4":"1f468-1f3fe-200d-1f384.svg","man_in_santa_hat_tone5":"1f469-1f3ff-200d-1f384.svg","man_in_steamy_room":"1f9d6-200d-2642-fe0f.svg","man_in_steamy_room_tone1":"1f9d6-1f3fb-200d-2642-fe0f.svg","man_in_steamy_room_tone2":"1f9d6-1f3fc-200d-2642-fe0f.svg","man_in_steamy_room_tone3":"1f9d6-1f3fd-200d-2642-fe0f.svg","man_in_steamy_room_tone4":"1f9d6-1f3fe-200d-2642-fe0f.svg","man_in_steamy_room_tone5":"1f9d6-1f3ff-200d-2642-fe0f.svg","man_in_tuxedo":"1f935-200d-2642-fe0f.svg","man_in_tuxedo_tone1":"1f935-1f3fb-200d-2642-fe0f.svg","man_in_tuxedo_tone2":"1f935-1f3fc-200d-2642-fe0f.svg","man_in_tuxedo_tone3":"1f935-1f3fd-200d-2642-fe0f.svg","man_in_tuxedo_tone4":"1f935-1f3fe-200d-2642-fe0f.svg","man_in_tuxedo_tone5":"1f935-1f3ff-200d-2642-fe0f.svg","man_judge":"1f468-200d-2696-fe0f.svg","man_judge_tone1":"1f468-1f3fb-200d-2696-fe0f.svg","man_judge_tone2":"1f468-1f3fc-200d-2696-fe0f.svg","man_judge_tone3":"1f468-1f3fd-200d-2696-fe0f.svg","man_judge_tone4":"1f468-1f3fe-200d-2696-fe0f.svg","man_judge_tone5":"1f468-1f3ff-200d-2696-fe0f.svg","man_juggling":"1f939-200d-2642-fe0f.svg","man_juggling_tone1":"1f939-1f3fb-200d-2642-fe0f.svg","man_juggling_tone2":"1f939-1f3fc-200d-2642-fe0f.svg","man_juggling_tone3":"1f939-1f3fd-200d-2642-fe0f.svg","man_juggling_tone4":"1f939-1f3fe-200d-2642-fe0f.svg","man_juggling_tone5":"1f939-1f3ff-200d-2642-fe0f.svg","man_kneeling":"1f9ce-200d-2642-fe0f.svg","man_kneeling_tone1":"1f9ce-1f3fb-200d-2642-fe0f.svg","man_kneeling_tone2":"1f9ce-1f3fc-200d-2642-fe0f.svg","man_kneeling_tone3":"1f9ce-1f3fd-200d-2642-fe0f.svg","man_kneeling_tone4":"1f9ce-1f3fe-200d-2642-fe0f.svg","man_kneeling_tone5":"1f9ce-1f3ff-200d-2642-fe0f.svg","man_lifting_weights":"1f3cb-fe0f-200d-2642-fe0f.svg","man_lifting_weights_tone1":"1f3cb-1f3fb-200d-2642-fe0f.svg","man_lifting_weights_tone2":"1f3cb-1f3fc-200d-2642-fe0f.svg","man_lifting_weights_tone3":"1f3cb-1f3fd-200d-2642-fe0f.svg","man_lifting_weights_tone4":"1f3cb-1f3fe-200d-2642-fe0f.svg","man_lifting_weights_tone5":"1f3cb-1f3ff-200d-2642-fe0f.svg","man_mage":"1f9d9-200d-2642-fe0f.svg","man_mage_tone1":"1f9d9-1f3fb-200d-2642-fe0f.svg","man_mage_tone2":"1f9d9-1f3fc-200d-2642-fe0f.svg","man_mage_tone3":"1f9d9-1f3fd-200d-2642-fe0f.svg","man_mage_tone4":"1f9d9-1f3fe-200d-2642-fe0f.svg","man_mage_tone5":"1f9d9-1f3ff-200d-2642-fe0f.svg","man_mechanic":"1f468-200d-1f527.svg","man_mechanic_tone1":"1f468-1f3fb-200d-1f527.svg","man_mechanic_tone2":"1f468-1f3fc-200d-1f527.svg","man_mechanic_tone3":"1f468-1f3fd-200d-1f527.svg","man_mechanic_tone4":"1f468-1f3fe-200d-1f527.svg","man_mechanic_tone5":"1f468-1f3ff-200d-1f527.svg","man_mountain_biking":"1f6b5-200d-2642-fe0f.svg","man_mountain_biking_tone1":"1f6b5-1f3fb-200d-2642-fe0f.svg","man_mountain_biking_tone2":"1f6b5-1f3fc-200d-2642-fe0f.svg","man_mountain_biking_tone3":"1f6b5-1f3fd-200d-2642-fe0f.svg","man_mountain_biking_tone4":"1f6b5-1f3fe-200d-2642-fe0f.svg","man_mountain_biking_tone5":"1f6b5-1f3ff-200d-2642-fe0f.svg","man_office_worker":"1f468-200d-1f4bc.svg","man_office_worker_tone1":"1f468-1f3fb-200d-1f4bc.svg","man_office_worker_tone2":"1f468-1f3fc-200d-1f4bc.svg","man_office_worker_tone3":"1f468-1f3fd-200d-1f4bc.svg","man_office_worker_tone4":"1f468-1f3fe-200d-1f4bc.svg","man_office_worker_tone5":"1f468-1f3ff-200d-1f4bc.svg","man_pilot":"1f468-200d-2708-fe0f.svg","man_pilot_tone1":"1f468-1f3fb-200d-2708-fe0f.svg","man_pilot_tone2":"1f468-1f3fc-200d-2708-fe0f.svg","man_pilot_tone3":"1f468-1f3fd-200d-2708-fe0f.svg","man_pilot_tone4":"1f468-1f3fe-200d-2708-fe0f.svg","man_pilot_tone5":"1f468-1f3ff-200d-2708-fe0f.svg","man_playing_handball":"1f93e-200d-2642-fe0f.svg","man_playing_handball_tone1":"1f93e-1f3fb-200d-2642-fe0f.svg","man_playing_handball_tone2":"1f93e-1f3fc-200d-2642-fe0f.svg","man_playing_handball_tone3":"1f93e-1f3fd-200d-2642-fe0f.svg","man_playing_handball_tone4":"1f93e-1f3fe-200d-2642-fe0f.svg","man_playing_handball_tone5":"1f93e-1f3ff-200d-2642-fe0f.svg","man_playing_water_polo":"1f93d-200d-2642-fe0f.svg","man_playing_water_polo_tone1":"1f93d-1f3fb-200d-2642-fe0f.svg","man_playing_water_polo_tone2":"1f93d-1f3fc-200d-2642-fe0f.svg","man_playing_water_polo_tone3":"1f93d-1f3fd-200d-2642-fe0f.svg","man_playing_water_polo_tone4":"1f93d-1f3fe-200d-2642-fe0f.svg","man_playing_water_polo_tone5":"1f93d-1f3ff-200d-2642-fe0f.svg","man_police_officer":"1f46e-200d-2642-fe0f.svg","man_police_officer_tone1":"1f46e-1f3fb-200d-2642-fe0f.svg","man_police_officer_tone2":"1f46e-1f3fc-200d-2642-fe0f.svg","man_police_officer_tone3":"1f46e-1f3fd-200d-2642-fe0f.svg","man_police_officer_tone4":"1f46e-1f3fe-200d-2642-fe0f.svg","man_police_officer_tone5":"1f46e-1f3ff-200d-2642-fe0f.svg","man_pouting":"1f64e-200d-2642-fe0f.svg","man_pouting_tone1":"1f64e-1f3fb-200d-2642-fe0f.svg","man_pouting_tone2":"1f64e-1f3fc-200d-2642-fe0f.svg","man_pouting_tone3":"1f64e-1f3fd-200d-2642-fe0f.svg","man_pouting_tone4":"1f64e-1f3fe-200d-2642-fe0f.svg","man_pouting_tone5":"1f64e-1f3ff-200d-2642-fe0f.svg","man_raising_hand":"1f64b-200d-2642-fe0f.svg","man_raising_hand_tone1":"1f64b-1f3fb-200d-2642-fe0f.svg","man_raising_hand_tone2":"1f64b-1f3fc-200d-2642-fe0f.svg","man_raising_hand_tone3":"1f64b-1f3fd-200d-2642-fe0f.svg","man_raising_hand_tone4":"1f64b-1f3fe-200d-2642-fe0f.svg","man_raising_hand_tone5":"1f64b-1f3ff-200d-2642-fe0f.svg","man_red_haired":"1f468-200d-1f9b0.svg","man_red_haired_tone1":"1f468-1f3fb-200d-1f9b0.svg","man_red_haired_tone2":"1f468-1f3fc-200d-1f9b0.svg","man_red_haired_tone3":"1f468-1f3fd-200d-1f9b0.svg","man_red_haired_tone4":"1f468-1f3fe-200d-1f9b0.svg","man_red_haired_tone5":"1f468-1f3ff-200d-1f9b0.svg","man_rowing_boat":"1f6a3-200d-2642-fe0f.svg","man_rowing_boat_tone1":"1f6a3-1f3fb-200d-2642-fe0f.svg","man_rowing_boat_tone2":"1f6a3-1f3fc-200d-2642-fe0f.svg","man_rowing_boat_tone3":"1f6a3-1f3fd-200d-2642-fe0f.svg","man_rowing_boat_tone4":"1f6a3-1f3fe-200d-2642-fe0f.svg","man_rowing_boat_tone5":"1f6a3-1f3ff-200d-2642-fe0f.svg","man_running":"1f3c3-200d-2642-fe0f.svg","man_running_tone1":"1f3c3-1f3fb-200d-2642-fe0f.svg","man_running_tone2":"1f3c3-1f3fc-200d-2642-fe0f.svg","man_running_tone3":"1f3c3-1f3fd-200d-2642-fe0f.svg","man_running_tone4":"1f3c3-1f3fe-200d-2642-fe0f.svg","man_running_tone5":"1f3c3-1f3ff-200d-2642-fe0f.svg","man_scientist":"1f468-200d-1f52c.svg","man_scientist_tone1":"1f468-1f3fb-200d-1f52c.svg","man_scientist_tone2":"1f468-1f3fc-200d-1f52c.svg","man_scientist_tone3":"1f468-1f3fd-200d-1f52c.svg","man_scientist_tone4":"1f468-1f3fe-200d-1f52c.svg","man_scientist_tone5":"1f468-1f3ff-200d-1f52c.svg","man_shrugging":"1f937-200d-2642-fe0f.svg","man_shrugging_tone1":"1f937-1f3fb-200d-2642-fe0f.svg","man_shrugging_tone2":"1f937-1f3fc-200d-2642-fe0f.svg","man_shrugging_tone3":"1f937-1f3fd-200d-2642-fe0f.svg","man_shrugging_tone4":"1f937-1f3fe-200d-2642-fe0f.svg","man_shrugging_tone5":"1f937-1f3ff-200d-2642-fe0f.svg","man_singer":"1f468-200d-1f3a4.svg","man_singer_tone1":"1f468-1f3fb-200d-1f3a4.svg","man_singer_tone2":"1f468-1f3fc-200d-1f3a4.svg","man_singer_tone3":"1f468-1f3fd-200d-1f3a4.svg","man_singer_tone4":"1f468-1f3fe-200d-1f3a4.svg","man_singer_tone5":"1f468-1f3ff-200d-1f3a4.svg","man_standing":"1f9cd-200d-2642-fe0f.svg","man_standing_tone1":"1f9cd-1f3fb-200d-2642-fe0f.svg","man_standing_tone2":"1f9cd-1f3fc-200d-2642-fe0f.svg","man_standing_tone3":"1f9cd-1f3fd-200d-2642-fe0f.svg","man_standing_tone4":"1f9cd-1f3fe-200d-2642-fe0f.svg","man_standing_tone5":"1f9cd-1f3ff-200d-2642-fe0f.svg","man_student":"1f468-200d-1f393.svg","man_student_tone1":"1f468-1f3fb-200d-1f393.svg","man_student_tone2":"1f468-1f3fc-200d-1f393.svg","man_student_tone3":"1f468-1f3fd-200d-1f393.svg","man_student_tone4":"1f468-1f3fe-200d-1f393.svg","man_student_tone5":"1f468-1f3ff-200d-1f393.svg","man_superhero":"1f9b8-200d-2642-fe0f.svg","man_superhero_tone1":"1f9b8-1f3fb-200d-2642-fe0f.svg","man_superhero_tone2":"1f9b8-1f3fc-200d-2642-fe0f.svg","man_superhero_tone3":"1f9b8-1f3fd-200d-2642-fe0f.svg","man_superhero_tone4":"1f9b8-1f3fe-200d-2642-fe0f.svg","man_superhero_tone5":"1f9b8-1f3ff-200d-2642-fe0f.svg","man_supervillain":"1f9b9-200d-2642-fe0f.svg","man_supervillain_tone1":"1f9b9-1f3fb-200d-2642-fe0f.svg","man_supervillain_tone2":"1f9b9-1f3fc-200d-2642-fe0f.svg","man_supervillain_tone3":"1f9b9-1f3fd-200d-2642-fe0f.svg","man_supervillain_tone4":"1f9b9-1f3fe-200d-2642-fe0f.svg","man_supervillain_tone5":"1f9b9-1f3ff-200d-2642-fe0f.svg","man_surfing":"1f3c4-200d-2642-fe0f.svg","man_surfing_tone1":"1f3c4-1f3fb-200d-2642-fe0f.svg","man_surfing_tone2":"1f3c4-1f3fc-200d-2642-fe0f.svg","man_surfing_tone3":"1f3c4-1f3fd-200d-2642-fe0f.svg","man_surfing_tone4":"1f3c4-1f3fe-200d-2642-fe0f.svg","man_surfing_tone5":"1f3c4-1f3ff-200d-2642-fe0f.svg","man_swimming":"1f3ca-200d-2642-fe0f.svg","man_swimming_tone1":"1f3ca-1f3fb-200d-2642-fe0f.svg","man_swimming_tone2":"1f3ca-1f3fc-200d-2642-fe0f.svg","man_swimming_tone3":"1f3ca-1f3fd-200d-2642-fe0f.svg","man_swimming_tone4":"1f3ca-1f3fe-200d-2642-fe0f.svg","man_swimming_tone5":"1f3ca-1f3ff-200d-2642-fe0f.svg","man_teacher":"1f468-200d-1f3eb.svg","man_teacher_tone1":"1f468-1f3fb-200d-1f3eb.svg","man_teacher_tone2":"1f468-1f3fc-200d-1f3eb.svg","man_teacher_tone3":"1f468-1f3fd-200d-1f3eb.svg","man_teacher_tone4":"1f468-1f3fe-200d-1f3eb.svg","man_teacher_tone5":"1f468-1f3ff-200d-1f3eb.svg","man_technologist":"1f468-200d-1f4bb.svg","man_technologist_tone1":"1f468-1f3fb-200d-1f4bb.svg","man_technologist_tone2":"1f468-1f3fc-200d-1f4bb.svg","man_technologist_tone3":"1f468-1f3fd-200d-1f4bb.svg","man_technologist_tone4":"1f468-1f3fe-200d-1f4bb.svg","man_technologist_tone5":"1f468-1f3ff-200d-1f4bb.svg","man_tipping_hand":"1f481-200d-2642-fe0f.svg","man_tipping_hand_tone1":"1f481-1f3fb-200d-2642-fe0f.svg","man_tipping_hand_tone2":"1f481-1f3fc-200d-2642-fe0f.svg","man_tipping_hand_tone3":"1f481-1f3fd-200d-2642-fe0f.svg","man_tipping_hand_tone4":"1f481-1f3fe-200d-2642-fe0f.svg","man_tipping_hand_tone5":"1f481-1f3ff-200d-2642-fe0f.svg","man_tone1":"1f468-1f3fb.svg","man_tone1_beard":"1f9d4-1f3fb-200d-2642-fe0f.svg","man_tone2":"1f468-1f3fc.svg","man_tone2_beard":"1f9d4-1f3fc-200d-2642-fe0f.svg","man_tone3":"1f468-1f3fd.svg","man_tone3_beard":"1f9d4-1f3fd-200d-2642-fe0f.svg","man_tone4":"1f468-1f3fe.svg","man_tone4_beard":"1f9d4-1f3fe-200d-2642-fe0f.svg","man_tone5":"1f468-1f3ff.svg","man_tone5_beard":"1f9d4-1f3ff-200d-2642-fe0f.svg","man_vampire":"1f9db-200d-2642-fe0f.svg","man_vampire_tone1":"1f9db-1f3fb-200d-2642-fe0f.svg","man_vampire_tone2":"1f9db-1f3fc-200d-2642-fe0f.svg","man_vampire_tone3":"1f9db-1f3fd-200d-2642-fe0f.svg","man_vampire_tone4":"1f9db-1f3fe-200d-2642-fe0f.svg","man_vampire_tone5":"1f9db-1f3ff-200d-2642-fe0f.svg","man_walking":"1f6b6-200d-2642-fe0f.svg","man_walking_tone1":"1f6b6-1f3fb-200d-2642-fe0f.svg","man_walking_tone2":"1f6b6-1f3fc-200d-2642-fe0f.svg","man_walking_tone3":"1f6b6-1f3fd-200d-2642-fe0f.svg","man_walking_tone4":"1f6b6-1f3fe-200d-2642-fe0f.svg","man_walking_tone5":"1f6b6-1f3ff-200d-2642-fe0f.svg","man_wearing_turban":"1f473-200d-2642-fe0f.svg","man_wearing_turban_tone1":"1f473-1f3fb-200d-2642-fe0f.svg","man_wearing_turban_tone2":"1f473-1f3fc-200d-2642-fe0f.svg","man_wearing_turban_tone3":"1f473-1f3fd-200d-2642-fe0f.svg","man_wearing_turban_tone4":"1f473-1f3fe-200d-2642-fe0f.svg","man_wearing_turban_tone5":"1f473-1f3ff-200d-2642-fe0f.svg","man_white_haired":"1f468-200d-1f9b3.svg","man_white_haired_tone1":"1f468-1f3fb-200d-1f9b3.svg","man_white_haired_tone2":"1f468-1f3fc-200d-1f9b3.svg","man_white_haired_tone3":"1f468-1f3fd-200d-1f9b3.svg","man_white_haired_tone4":"1f468-1f3fe-200d-1f9b3.svg","man_white_haired_tone5":"1f468-1f3ff-200d-1f9b3.svg","man_with_chinese_cap":"1f472.svg","man_with_chinese_cap_tone1":"1f472-1f3fb.svg","man_with_chinese_cap_tone2":"1f472-1f3fc.svg","man_with_chinese_cap_tone3":"1f472-1f3fd.svg","man_with_chinese_cap_tone4":"1f472-1f3fe.svg","man_with_chinese_cap_tone5":"1f472-1f3ff.svg","man_with_probing_cane":"1f468-200d-1f9af.svg","man_with_probing_cane_tone1":"1f468-1f3fb-200d-1f9af.svg","man_with_probing_cane_tone2":"1f468-1f3fc-200d-1f9af.svg","man_with_probing_cane_tone3":"1f468-1f3fd-200d-1f9af.svg","man_with_probing_cane_tone4":"1f468-1f3fe-200d-1f9af.svg","man_with_probing_cane_tone5":"1f468-1f3ff-200d-1f9af.svg","man_with_veil":"1f470-200d-2642-fe0f.svg","man_with_veil_tone1":"1f470-1f3fb-200d-2642-fe0f.svg","man_with_veil_tone2":"1f470-1f3fc-200d-2642-fe0f.svg","man_with_veil_tone3":"1f470-1f3fd-200d-2642-fe0f.svg","man_with_veil_tone4":"1f470-1f3fe-200d-2642-fe0f.svg","man_with_veil_tone5":"1f470-1f3ff-200d-2642-fe0f.svg","man_zombie":"1f9df-200d-2642-fe0f.svg","mango":"1f96d.svg","mans_shoe":"1f45e.svg","manual_wheelchair":"1f9bd.svg","map":"1f5fa.svg","maple_leaf":"1f341.svg","martial_arts_uniform":"1f94b.svg","mask":"1f637.svg","mate":"1f9c9.svg","meat_on_bone":"1f356.svg","mechanic":"1f9d1-200d-1f527.svg","mechanic_tone1":"1f9d1-1f3fb-200d-1f527.svg","mechanic_tone2":"1f9d1-1f3fc-200d-1f527.svg","mechanic_tone3":"1f9d1-1f3fd-200d-1f527.svg","mechanic_tone4":"1f9d1-1f3fe-200d-1f527.svg","mechanic_tone5":"1f9d1-1f3ff-200d-1f527.svg","mechanical_arm":"1f9be.svg","mechanical_leg":"1f9bf.svg","medal":"1f3c5.svg","medical_symbol":"2695.svg","mega":"1f4e3.svg","melon":"1f348.svg","melting_face":"1fae0.svg","men_holding_hands_tone1":"1f46c-1f3fb.svg","men_holding_hands_tone1_tone2":"1f468-1f3fb-200d-1f91d-200d-1f468-1f3fc.svg","men_holding_hands_tone1_tone3":"1f468-1f3fb-200d-1f91d-200d-1f468-1f3fd.svg","men_holding_hands_tone1_tone4":"1f468-1f3fb-200d-1f91d-200d-1f468-1f3fe.svg","men_holding_hands_tone1_tone5":"1f468-1f3fb-200d-1f91d-200d-1f468-1f3ff.svg","men_holding_hands_tone2":"1f46c-1f3fc.svg","men_holding_hands_tone2_tone1":"1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg","men_holding_hands_tone2_tone3":"1f468-1f3fc-200d-1f91d-200d-1f468-1f3fd.svg","men_holding_hands_tone2_tone4":"1f468-1f3fc-200d-1f91d-200d-1f468-1f3fe.svg","men_holding_hands_tone2_tone5":"1f468-1f3fc-200d-1f91d-200d-1f468-1f3ff.svg","men_holding_hands_tone3":"1f46c-1f3fd.svg","men_holding_hands_tone3_tone1":"1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg","men_holding_hands_tone3_tone2":"1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg","men_holding_hands_tone3_tone4":"1f468-1f3fd-200d-1f91d-200d-1f468-1f3fe.svg","men_holding_hands_tone3_tone5":"1f468-1f3fd-200d-1f91d-200d-1f468-1f3ff.svg","men_holding_hands_tone4":"1f46c-1f3fe.svg","men_holding_hands_tone4_tone1":"1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg","men_holding_hands_tone4_tone2":"1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg","men_holding_hands_tone4_tone3":"1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg","men_holding_hands_tone4_tone5":"1f468-1f3fe-200d-1f91d-200d-1f468-1f3ff.svg","men_holding_hands_tone5":"1f46c-1f3ff.svg","men_holding_hands_tone5_tone1":"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg","men_holding_hands_tone5_tone2":"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg","men_holding_hands_tone5_tone3":"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg","men_holding_hands_tone5_tone4":"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg","men_with_bunny_ears_partying":"1f46f-200d-2642-fe0f.svg","men_wrestling":"1f93c-200d-2642-fe0f.svg","mending_heart":"2764-fe0f-200d-1fa79.svg","menorah":"1f54e.svg","mens":"1f6b9.svg","mermaid":"1f9dc-200d-2640-fe0f.svg","mermaid_tone1":"1f9dc-1f3fb-200d-2640-fe0f.svg","mermaid_tone2":"1f9dc-1f3fc-200d-2640-fe0f.svg","mermaid_tone3":"1f9dc-1f3fd-200d-2640-fe0f.svg","mermaid_tone4":"1f9dc-1f3fe-200d-2640-fe0f.svg","mermaid_tone5":"1f9dc-1f3ff-200d-2640-fe0f.svg","merman":"1f9dc-200d-2642-fe0f.svg","merman_tone1":"1f9dc-1f3fb-200d-2642-fe0f.svg","merman_tone2":"1f9dc-1f3fc-200d-2642-fe0f.svg","merman_tone3":"1f9dc-1f3fd-200d-2642-fe0f.svg","merman_tone4":"1f9dc-1f3fe-200d-2642-fe0f.svg","merman_tone5":"1f9dc-1f3ff-200d-2642-fe0f.svg","merperson":"1f9dc.svg","merperson_tone1":"1f9dc-1f3fb.svg","merperson_tone2":"1f9dc-1f3fc.svg","merperson_tone3":"1f9dc-1f3fd.svg","merperson_tone4":"1f9dc-1f3fe.svg","merperson_tone5":"1f9dc-1f3ff.svg","metal":"1f918.svg","metal_tone1":"1f918-1f3fb.svg","metal_tone2":"1f918-1f3fc.svg","metal_tone3":"1f918-1f3fd.svg","metal_tone4":"1f918-1f3fe.svg","metal_tone5":"1f918-1f3ff.svg","metro":"1f687.svg","microbe":"1f9a0.svg","microphone2":"1f399.svg","microphone":"1f3a4.svg","microscope":"1f52c.svg","middle_finger":"1f595.svg","middle_finger_tone1":"1f595-1f3fb.svg","middle_finger_tone2":"1f595-1f3fc.svg","middle_finger_tone3":"1f595-1f3fd.svg","middle_finger_tone4":"1f595-1f3fe.svg","middle_finger_tone5":"1f595-1f3ff.svg","military_helmet":"1fa96.svg","military_medal":"1f396.svg","milk":"1f95b.svg","milky_way":"1f30c.svg","minibus":"1f690.svg","minidisc":"1f4bd.svg","mirror":"1fa9e.svg","mirror_ball":"1faa9.svg","mobile_phone":"1f4f1.svg","mobile_phone_off":"1f4f4.svg","money_mouth":"1f911.svg","money_with_wings":"1f4b8.svg","moneybag":"1f4b0.svg","monkey":"1f412.svg","monkey_face":"1f435.svg","monorail":"1f69d.svg","moon_cake":"1f96e.svg","mortar_board":"1f393.svg","mosque":"1f54c.svg","mosquito":"1f99f.svg","motor_scooter":"1f6f5.svg","motorboat":"1f6e5.svg","motorcycle":"1f3cd.svg","motorized_wheelchair":"1f9bc.svg","motorway":"1f6e3.svg","mount_fuji":"1f5fb.svg","mountain":"26f0.svg","mountain_cableway":"1f6a0.svg","mountain_railway":"1f69e.svg","mountain_snow":"1f3d4.svg","mouse2":"1f401.svg","mouse":"1f42d.svg","mouse_three_button":"1f5b1.svg","mouse_trap":"1faa4.svg","movie_camera":"1f3a5.svg","moyai":"1f5ff.svg","mrs_claus":"1f936.svg","mrs_claus_tone1":"1f936-1f3fb.svg","mrs_claus_tone2":"1f936-1f3fc.svg","mrs_claus_tone3":"1f936-1f3fd.svg","mrs_claus_tone4":"1f936-1f3fe.svg","mrs_claus_tone5":"1f936-1f3ff.svg","muscle":"1f4aa.svg","muscle_tone1":"1f4aa-1f3fb.svg","muscle_tone2":"1f4aa-1f3fc.svg","muscle_tone3":"1f4aa-1f3fd.svg","muscle_tone4":"1f4aa-1f3fe.svg","muscle_tone5":"1f4aa-1f3ff.svg","mushroom":"1f344.svg","musical_keyboard":"1f3b9.svg","musical_note":"1f3b5.svg","musical_score":"1f3bc.svg","mute":"1f507.svg","mx_claus":"1f9d1-200d-1f384.svg","mx_claus_tone1":"1f9d1-1f3fb-200d-1f384.svg","mx_claus_tone2":"1f9d1-1f3fc-200d-1f384.svg","mx_claus_tone3":"1f9d1-1f3fd-200d-1f384.svg","mx_claus_tone4":"1f9d1-1f3fe-200d-1f384.svg","mx_claus_tone5":"1f9d1-1f3ff-200d-1f384.svg","nail_care":"1f485.svg","nail_care_tone1":"1f485-1f3fb.svg","nail_care_tone2":"1f485-1f3fc.svg","nail_care_tone3":"1f485-1f3fd.svg","nail_care_tone4":"1f485-1f3fe.svg","nail_care_tone5":"1f485-1f3ff.svg","name_badge":"1f4db.svg","nauseated_face":"1f922.svg","nazar_amulet":"1f9ff.svg","necktie":"1f454.svg","negative_squared_cross_mark":"274e.svg","nerd":"1f913.svg","nest_with_eggs":"1faba.svg","nesting_dolls":"1fa86.svg","neutral_face":"1f610.svg","new":"1f195.svg","new_moon":"1f311.svg","new_moon_with_face":"1f31a.svg","newspaper2":"1f5de.svg","newspaper":"1f4f0.svg","ng":"1f196.svg","night_with_stars":"1f303.svg","nine":"39-20e3.svg","ninja":"1f977.svg","ninja_tone1":"1f977-1f3fb.svg","ninja_tone2":"1f977-1f3fc.svg","ninja_tone3":"1f977-1f3fd.svg","ninja_tone4":"1f977-1f3fe.svg","ninja_tone5":"1f977-1f3ff.svg","no_bell":"1f515.svg","no_bicycles":"1f6b3.svg","no_entry":"26d4.svg","no_entry_sign":"1f6ab.svg","no_mobile_phones":"1f4f5.svg","no_mouth":"1f636.svg","no_pedestrians":"1f6b7.svg","no_smoking":"1f6ad.svg","non-potable_water":"1f6b1.svg","nose":"1f443.svg","nose_tone1":"1f443-1f3fb.svg","nose_tone2":"1f443-1f3fc.svg","nose_tone3":"1f443-1f3fd.svg","nose_tone4":"1f443-1f3fe.svg","nose_tone5":"1f443-1f3ff.svg","notebook":"1f4d3.svg","notebook_with_decorative_cover":"1f4d4.svg","notepad_spiral":"1f5d2.svg","notes":"1f3b6.svg","nut_and_bolt":"1f529.svg","o2":"1f17e.svg","o":"2b55.svg","ocean":"1f30a.svg","octagonal_sign":"1f6d1.svg","octopus":"1f419.svg","oden":"1f362.svg","office":"1f3e2.svg","office_worker":"1f9d1-200d-1f4bc.svg","office_worker_tone1":"1f9d1-1f3fb-200d-1f4bc.svg","office_worker_tone2":"1f9d1-1f3fc-200d-1f4bc.svg","office_worker_tone3":"1f9d1-1f3fd-200d-1f4bc.svg","office_worker_tone4":"1f9d1-1f3fe-200d-1f4bc.svg","office_worker_tone5":"1f9d1-1f3ff-200d-1f4bc.svg","oil":"1f6e2.svg","ok":"1f197.svg","ok_hand":"1f44c.svg","ok_hand_tone1":"1f44c-1f3fb.svg","ok_hand_tone2":"1f44c-1f3fc.svg","ok_hand_tone3":"1f44c-1f3fd.svg","ok_hand_tone4":"1f44c-1f3fe.svg","ok_hand_tone5":"1f44c-1f3ff.svg","older_adult":"1f9d3.svg","older_adult_tone1":"1f9d3-1f3fb.svg","older_adult_tone2":"1f9d3-1f3fc.svg","older_adult_tone3":"1f9d3-1f3fd.svg","older_adult_tone4":"1f9d3-1f3fe.svg","older_adult_tone5":"1f9d3-1f3ff.svg","older_man":"1f474.svg","older_man_tone1":"1f474-1f3fb.svg","older_man_tone2":"1f474-1f3fc.svg","older_man_tone3":"1f474-1f3fd.svg","older_man_tone4":"1f474-1f3fe.svg","older_man_tone5":"1f474-1f3ff.svg","older_woman":"1f475.svg","older_woman_tone1":"1f475-1f3fb.svg","older_woman_tone2":"1f475-1f3fc.svg","older_woman_tone3":"1f475-1f3fd.svg","older_woman_tone4":"1f475-1f3fe.svg","older_woman_tone5":"1f475-1f3ff.svg","olive":"1fad2.svg","om_symbol":"1f549.svg","on":"1f51b.svg","oncoming_automobile":"1f698.svg","oncoming_bus":"1f68d.svg","oncoming_police_car":"1f694.svg","oncoming_taxi":"1f696.svg","one":"31-20e3.svg","one_piece_swimsuit":"1fa71.svg","onion":"1f9c5.svg","open_file_folder":"1f4c2.svg","open_hands":"1f450.svg","open_hands_tone1":"1f450-1f3fb.svg","open_hands_tone2":"1f450-1f3fc.svg","open_hands_tone3":"1f450-1f3fd.svg","open_hands_tone4":"1f450-1f3fe.svg","open_hands_tone5":"1f450-1f3ff.svg","open_mouth":"1f62e.svg","ophiuchus":"26ce.svg","orange_book":"1f4d9.svg","orange_circle":"1f7e0.svg","orange_heart":"1f9e1.svg","orange_square":"1f7e7.svg","orangutan":"1f9a7.svg","orthodox_cross":"2626.svg","otter":"1f9a6.svg","outbox_tray":"1f4e4.svg","owl":"1f989.svg","ox":"1f402.svg","oyster":"1f9aa.svg","package":"1f4e6.svg","page_facing_up":"1f4c4.svg","page_with_curl":"1f4c3.svg","pager":"1f4df.svg","paintbrush":"1f58c.svg","palm_down_hand":"1faf3.svg","palm_down_hand_tone1":"1faf3-1f3fb.svg","palm_down_hand_tone2":"1faf3-1f3fc.svg","palm_down_hand_tone3":"1faf3-1f3fd.svg","palm_down_hand_tone4":"1faf3-1f3fe.svg","palm_down_hand_tone5":"1faf3-1f3ff.svg","palm_tree":"1f334.svg","palm_up_hand":"1faf4.svg","palm_up_hand_tone1":"1faf4-1f3fb.svg","palm_up_hand_tone2":"1faf4-1f3fc.svg","palm_up_hand_tone3":"1faf4-1f3fd.svg","palm_up_hand_tone4":"1faf4-1f3fe.svg","palm_up_hand_tone5":"1faf4-1f3ff.svg","palms_up_together":"1f932.svg","palms_up_together_tone1":"1f932-1f3fb.svg","palms_up_together_tone2":"1f932-1f3fc.svg","palms_up_together_tone3":"1f932-1f3fd.svg","palms_up_together_tone4":"1f932-1f3fe.svg","palms_up_together_tone5":"1f932-1f3ff.svg","pancakes":"1f95e.svg","panda_face":"1f43c.svg","paperclip":"1f4ce.svg","paperclips":"1f587.svg","parachute":"1fa82.svg","park":"1f3de.svg","parking":"1f17f.svg","parrot":"1f99c.svg","part_alternation_mark":"303d.svg","partly_sunny":"26c5.svg","partying_face":"1f973.svg","passport_control":"1f6c2.svg","pause_button":"23f8.svg","peace":"262e.svg","peach":"1f351.svg","peacock":"1f99a.svg","peanuts":"1f95c.svg","pear":"1f350.svg","pen_ballpoint":"1f58a.svg","pen_fountain":"1f58b.svg","pencil2":"270f.svg","pencil":"1f4dd.svg","penguin":"1f427.svg","pensive":"1f614.svg","people_holding_hands":"1f9d1-200d-1f91d-200d-1f9d1.svg","people_holding_hands_tone1":"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb.svg","people_holding_hands_tone1_tone2":"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fc.svg","people_holding_hands_tone1_tone3":"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fd.svg","people_holding_hands_tone1_tone4":"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fe.svg","people_holding_hands_tone1_tone5":"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3ff.svg","people_holding_hands_tone2":"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc.svg","people_holding_hands_tone2_tone1":"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb.svg","people_holding_hands_tone2_tone3":"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fd.svg","people_holding_hands_tone2_tone4":"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fe.svg","people_holding_hands_tone2_tone5":"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3ff.svg","people_holding_hands_tone3":"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd.svg","people_holding_hands_tone3_tone1":"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb.svg","people_holding_hands_tone3_tone2":"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc.svg","people_holding_hands_tone3_tone4":"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fe.svg","people_holding_hands_tone3_tone5":"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3ff.svg","people_holding_hands_tone4":"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe.svg","people_holding_hands_tone4_tone1":"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb.svg","people_holding_hands_tone4_tone2":"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc.svg","people_holding_hands_tone4_tone3":"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd.svg","people_holding_hands_tone4_tone5":"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3ff.svg","people_holding_hands_tone5":"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff.svg","people_holding_hands_tone5_tone1":"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb.svg","people_holding_hands_tone5_tone2":"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc.svg","people_holding_hands_tone5_tone3":"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd.svg","people_holding_hands_tone5_tone4":"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe.svg","people_hugging":"1fac2.svg","people_with_bunny_ears_partying":"1f46f.svg","people_wrestling":"1f93c.svg","performing_arts":"1f3ad.svg","persevere":"1f623.svg","person_bald":"1f9d1-200d-1f9b2.svg","person_biking":"1f6b4.svg","person_biking_tone1":"1f6b4-1f3fb.svg","person_biking_tone2":"1f6b4-1f3fc.svg","person_biking_tone3":"1f6b4-1f3fd.svg","person_biking_tone4":"1f6b4-1f3fe.svg","person_biking_tone5":"1f6b4-1f3ff.svg","person_bouncing_ball":"26f9.svg","person_bouncing_ball_tone1":"26f9-1f3fb.svg","person_bouncing_ball_tone2":"26f9-1f3fc.svg","person_bouncing_ball_tone3":"26f9-1f3fd.svg","person_bouncing_ball_tone4":"26f9-1f3fe.svg","person_bouncing_ball_tone5":"26f9-1f3ff.svg","person_bowing":"1f647.svg","person_bowing_tone1":"1f647-1f3fb.svg","person_bowing_tone2":"1f647-1f3fc.svg","person_bowing_tone3":"1f647-1f3fd.svg","person_bowing_tone4":"1f647-1f3fe.svg","person_bowing_tone5":"1f647-1f3ff.svg","person_climbing":"1f9d7.svg","person_climbing_tone1":"1f9d7-1f3fb.svg","person_climbing_tone2":"1f9d7-1f3fc.svg","person_climbing_tone3":"1f9d7-1f3fd.svg","person_climbing_tone4":"1f9d7-1f3fe.svg","person_climbing_tone5":"1f9d7-1f3ff.svg","person_curly_hair":"1f9d1-200d-1f9b1.svg","person_doing_cartwheel":"1f938.svg","person_doing_cartwheel_tone1":"1f938-1f3fb.svg","person_doing_cartwheel_tone2":"1f938-1f3fc.svg","person_doing_cartwheel_tone3":"1f938-1f3fd.svg","person_doing_cartwheel_tone4":"1f938-1f3fe.svg","person_doing_cartwheel_tone5":"1f938-1f3ff.svg","person_facepalming":"1f926.svg","person_facepalming_tone1":"1f926-1f3fb.svg","person_facepalming_tone2":"1f926-1f3fc.svg","person_facepalming_tone3":"1f926-1f3fd.svg","person_facepalming_tone4":"1f926-1f3fe.svg","person_facepalming_tone5":"1f926-1f3ff.svg","person_feeding_baby":"1f9d1-200d-1f37c.svg","person_feeding_baby_tone1":"1f9d1-1f3fb-200d-1f37c.svg","person_feeding_baby_tone2":"1f9d1-1f3fc-200d-1f37c.svg","person_feeding_baby_tone3":"1f9d1-1f3fd-200d-1f37c.svg","person_feeding_baby_tone4":"1f9d1-1f3fe-200d-1f37c.svg","person_feeding_baby_tone5":"1f9d1-1f3ff-200d-1f37c.svg","person_fencing":"1f93a.svg","person_frowning":"1f64d.svg","person_frowning_tone1":"1f64d-1f3fb.svg","person_frowning_tone2":"1f64d-1f3fc.svg","person_frowning_tone3":"1f64d-1f3fd.svg","person_frowning_tone4":"1f64d-1f3fe.svg","person_frowning_tone5":"1f64d-1f3ff.svg","person_gesturing_no":"1f645.svg","person_gesturing_no_tone1":"1f645-1f3fb.svg","person_gesturing_no_tone2":"1f645-1f3fc.svg","person_gesturing_no_tone3":"1f645-1f3fd.svg","person_gesturing_no_tone4":"1f645-1f3fe.svg","person_gesturing_no_tone5":"1f645-1f3ff.svg","person_gesturing_ok":"1f646.svg","person_gesturing_ok_tone1":"1f646-1f3fb.svg","person_gesturing_ok_tone2":"1f646-1f3fc.svg","person_gesturing_ok_tone3":"1f646-1f3fd.svg","person_gesturing_ok_tone4":"1f646-1f3fe.svg","person_gesturing_ok_tone5":"1f646-1f3ff.svg","person_getting_haircut":"1f487.svg","person_getting_haircut_tone1":"1f487-1f3fb.svg","person_getting_haircut_tone2":"1f487-1f3fc.svg","person_getting_haircut_tone3":"1f487-1f3fd.svg","person_getting_haircut_tone4":"1f487-1f3fe.svg","person_getting_haircut_tone5":"1f487-1f3ff.svg","person_getting_massage":"1f486.svg","person_getting_massage_tone1":"1f486-1f3fb.svg","person_getting_massage_tone2":"1f486-1f3fc.svg","person_getting_massage_tone3":"1f486-1f3fd.svg","person_getting_massage_tone4":"1f486-1f3fe.svg","person_getting_massage_tone5":"1f486-1f3ff.svg","person_golfing":"1f3cc.svg","person_golfing_tone1":"1f3cc-1f3fb.svg","person_golfing_tone2":"1f3cc-1f3fc.svg","person_golfing_tone3":"1f3cc-1f3fd.svg","person_golfing_tone4":"1f3cc-1f3fe.svg","person_golfing_tone5":"1f3cc-1f3ff.svg","person_in_bed_tone1":"1f6cc-1f3fb.svg","person_in_bed_tone2":"1f6cc-1f3fc.svg","person_in_bed_tone3":"1f6cc-1f3fd.svg","person_in_bed_tone4":"1f6cc-1f3fe.svg","person_in_bed_tone5":"1f6cc-1f3ff.svg","person_in_lotus_position":"1f9d8.svg","person_in_lotus_position_tone1":"1f9d8-1f3fb.svg","person_in_lotus_position_tone2":"1f9d8-1f3fc.svg","person_in_lotus_position_tone3":"1f9d8-1f3fd.svg","person_in_lotus_position_tone4":"1f9d8-1f3fe.svg","person_in_lotus_position_tone5":"1f9d8-1f3ff.svg","person_in_manual_wheelchair":"1f9d1-200d-1f9bd.svg","person_in_manual_wheelchair_tone1":"1f9d1-1f3fb-200d-1f9bd.svg","person_in_manual_wheelchair_tone2":"1f9d1-1f3fc-200d-1f9bd.svg","person_in_manual_wheelchair_tone3":"1f9d1-1f3fd-200d-1f9bd.svg","person_in_manual_wheelchair_tone4":"1f9d1-1f3fe-200d-1f9bd.svg","person_in_manual_wheelchair_tone5":"1f9d1-1f3ff-200d-1f9bd.svg","person_in_motorized_wheelchair":"1f9d1-200d-1f9bc.svg","person_in_motorized_wheelchair_tone1":"1f9d1-1f3fb-200d-1f9bc.svg","person_in_motorized_wheelchair_tone2":"1f9d1-1f3fc-200d-1f9bc.svg","person_in_motorized_wheelchair_tone3":"1f9d1-1f3fd-200d-1f9bc.svg","person_in_motorized_wheelchair_tone4":"1f9d1-1f3fe-200d-1f9bc.svg","person_in_motorized_wheelchair_tone5":"1f9d1-1f3ff-200d-1f9bc.svg","person_in_steamy_room":"1f9d6.svg","person_in_steamy_room_tone1":"1f9d6-1f3fb.svg","person_in_steamy_room_tone2":"1f9d6-1f3fc.svg","person_in_steamy_room_tone3":"1f9d6-1f3fd.svg","person_in_steamy_room_tone4":"1f9d6-1f3fe.svg","person_in_steamy_room_tone5":"1f9d6-1f3ff.svg","person_in_tuxedo":"1f935.svg","person_in_tuxedo_tone1":"1f935-1f3fb.svg","person_in_tuxedo_tone2":"1f935-1f3fc.svg","person_in_tuxedo_tone3":"1f935-1f3fd.svg","person_in_tuxedo_tone4":"1f935-1f3fe.svg","person_in_tuxedo_tone5":"1f935-1f3ff.svg","person_juggling":"1f939.svg","person_juggling_tone1":"1f939-1f3fb.svg","person_juggling_tone2":"1f939-1f3fc.svg","person_juggling_tone3":"1f939-1f3fd.svg","person_juggling_tone4":"1f939-1f3fe.svg","person_juggling_tone5":"1f939-1f3ff.svg","person_kneeling":"1f9ce.svg","person_kneeling_tone1":"1f9ce-1f3fb.svg","person_kneeling_tone2":"1f9ce-1f3fc.svg","person_kneeling_tone3":"1f9ce-1f3fd.svg","person_kneeling_tone4":"1f9ce-1f3fe.svg","person_kneeling_tone5":"1f9ce-1f3ff.svg","person_lifting_weights":"1f3cb.svg","person_lifting_weights_tone1":"1f3cb-1f3fb.svg","person_lifting_weights_tone2":"1f3cb-1f3fc.svg","person_lifting_weights_tone3":"1f3cb-1f3fd.svg","person_lifting_weights_tone4":"1f3cb-1f3fe.svg","person_lifting_weights_tone5":"1f3cb-1f3ff.svg","person_mountain_biking":"1f6b5.svg","person_mountain_biking_tone1":"1f6b5-1f3fb.svg","person_mountain_biking_tone2":"1f6b5-1f3fc.svg","person_mountain_biking_tone3":"1f6b5-1f3fd.svg","person_mountain_biking_tone4":"1f6b5-1f3fe.svg","person_mountain_biking_tone5":"1f6b5-1f3ff.svg","person_playing_handball":"1f93e.svg","person_playing_handball_tone1":"1f93e-1f3fb.svg","person_playing_handball_tone2":"1f93e-1f3fc.svg","person_playing_handball_tone3":"1f93e-1f3fd.svg","person_playing_handball_tone4":"1f93e-1f3fe.svg","person_playing_handball_tone5":"1f93e-1f3ff.svg","person_playing_water_polo":"1f93d.svg","person_playing_water_polo_tone1":"1f93d-1f3fb.svg","person_playing_water_polo_tone2":"1f93d-1f3fc.svg","person_playing_water_polo_tone3":"1f93d-1f3fd.svg","person_playing_water_polo_tone4":"1f93d-1f3fe.svg","person_playing_water_polo_tone5":"1f93d-1f3ff.svg","person_pouting":"1f64e.svg","person_pouting_tone1":"1f64e-1f3fb.svg","person_pouting_tone2":"1f64e-1f3fc.svg","person_pouting_tone3":"1f64e-1f3fd.svg","person_pouting_tone4":"1f64e-1f3fe.svg","person_pouting_tone5":"1f64e-1f3ff.svg","person_raising_hand":"1f64b.svg","person_raising_hand_tone1":"1f64b-1f3fb.svg","person_raising_hand_tone2":"1f64b-1f3fc.svg","person_raising_hand_tone3":"1f64b-1f3fd.svg","person_raising_hand_tone4":"1f64b-1f3fe.svg","person_raising_hand_tone5":"1f64b-1f3ff.svg","person_red_hair":"1f9d1-200d-1f9b0.svg","person_rowing_boat":"1f6a3.svg","person_rowing_boat_tone1":"1f6a3-1f3fb.svg","person_rowing_boat_tone2":"1f6a3-1f3fc.svg","person_rowing_boat_tone3":"1f6a3-1f3fd.svg","person_rowing_boat_tone4":"1f6a3-1f3fe.svg","person_rowing_boat_tone5":"1f6a3-1f3ff.svg","person_running":"1f3c3.svg","person_running_tone1":"1f3c3-1f3fb.svg","person_running_tone2":"1f3c3-1f3fc.svg","person_running_tone3":"1f3c3-1f3fd.svg","person_running_tone4":"1f3c3-1f3fe.svg","person_running_tone5":"1f3c3-1f3ff.svg","person_shrugging":"1f937.svg","person_shrugging_tone1":"1f937-1f3fb.svg","person_shrugging_tone2":"1f937-1f3fc.svg","person_shrugging_tone3":"1f937-1f3fd.svg","person_shrugging_tone4":"1f937-1f3fe.svg","person_shrugging_tone5":"1f937-1f3ff.svg","person_standing":"1f9cd.svg","person_standing_tone1":"1f9cd-1f3fb.svg","person_standing_tone2":"1f9cd-1f3fc.svg","person_standing_tone3":"1f9cd-1f3fd.svg","person_standing_tone4":"1f9cd-1f3fe.svg","person_standing_tone5":"1f9cd-1f3ff.svg","person_surfing":"1f3c4.svg","person_surfing_tone1":"1f3c4-1f3fb.svg","person_surfing_tone2":"1f3c4-1f3fc.svg","person_surfing_tone3":"1f3c4-1f3fd.svg","person_surfing_tone4":"1f3c4-1f3fe.svg","person_surfing_tone5":"1f3c4-1f3ff.svg","person_swimming":"1f3ca.svg","person_swimming_tone1":"1f3ca-1f3fb.svg","person_swimming_tone2":"1f3ca-1f3fc.svg","person_swimming_tone3":"1f3ca-1f3fd.svg","person_swimming_tone4":"1f3ca-1f3fe.svg","person_swimming_tone5":"1f3ca-1f3ff.svg","person_tipping_hand":"1f481.svg","person_tipping_hand_tone1":"1f481-1f3fb.svg","person_tipping_hand_tone2":"1f481-1f3fc.svg","person_tipping_hand_tone3":"1f481-1f3fd.svg","person_tipping_hand_tone4":"1f481-1f3fe.svg","person_tipping_hand_tone5":"1f481-1f3ff.svg","person_tone1_bald":"1f9d1-1f3fb-200d-1f9b2.svg","person_tone1_curly_hair":"1f9d1-1f3fb-200d-1f9b1.svg","person_tone1_red_hair":"1f9d1-1f3fb-200d-1f9b0.svg","person_tone1_white_hair":"1f9d1-1f3fb-200d-1f9b3.svg","person_tone2_bald":"1f9d1-1f3fc-200d-1f9b2.svg","person_tone2_curly_hair":"1f9d1-1f3fc-200d-1f9b1.svg","person_tone2_red_hair":"1f9d1-1f3fc-200d-1f9b0.svg","person_tone2_white_hair":"1f9d1-1f3fc-200d-1f9b3.svg","person_tone3_bald":"1f9d1-1f3fd-200d-1f9b2.svg","person_tone3_curly_hair":"1f9d1-1f3fd-200d-1f9b1.svg","person_tone3_red_hair":"1f9d1-1f3fd-200d-1f9b0.svg","person_tone3_white_hair":"1f9d1-1f3fd-200d-1f9b3.svg","person_tone4_bald":"1f9d1-1f3fe-200d-1f9b2.svg","person_tone4_curly_hair":"1f9d1-1f3fe-200d-1f9b1.svg","person_tone4_red_hair":"1f9d1-1f3fe-200d-1f9b0.svg","person_tone4_white_hair":"1f9d1-1f3fe-200d-1f9b3.svg","person_tone5_bald":"1f9d1-1f3ff-200d-1f9b2.svg","person_tone5_curly_hair":"1f9d1-1f3ff-200d-1f9b1.svg","person_tone5_red_hair":"1f9d1-1f3ff-200d-1f9b0.svg","person_tone5_white_hair":"1f9d1-1f3ff-200d-1f9b3.svg","person_walking":"1f6b6.svg","person_walking_tone1":"1f6b6-1f3fb.svg","person_walking_tone2":"1f6b6-1f3fc.svg","person_walking_tone3":"1f6b6-1f3fd.svg","person_walking_tone4":"1f6b6-1f3fe.svg","person_walking_tone5":"1f6b6-1f3ff.svg","person_wearing_turban":"1f473.svg","person_wearing_turban_tone1":"1f473-1f3fb.svg","person_wearing_turban_tone2":"1f473-1f3fc.svg","person_wearing_turban_tone3":"1f473-1f3fd.svg","person_wearing_turban_tone4":"1f473-1f3fe.svg","person_wearing_turban_tone5":"1f473-1f3ff.svg","person_white_hair":"1f9d1-200d-1f9b3.svg","person_with_crown":"1fac5.svg","person_with_crown_tone1":"1fac5-1f3fb.svg","person_with_crown_tone2":"1fac5-1f3fc.svg","person_with_crown_tone3":"1fac5-1f3fd.svg","person_with_crown_tone4":"1fac5-1f3fe.svg","person_with_crown_tone5":"1fac5-1f3ff.svg","person_with_probing_cane":"1f9d1-200d-1f9af.svg","person_with_probing_cane_tone1":"1f9d1-1f3fb-200d-1f9af.svg","person_with_probing_cane_tone2":"1f9d1-1f3fc-200d-1f9af.svg","person_with_probing_cane_tone3":"1f9d1-1f3fd-200d-1f9af.svg","person_with_probing_cane_tone4":"1f9d1-1f3fe-200d-1f9af.svg","person_with_probing_cane_tone5":"1f9d1-1f3ff-200d-1f9af.svg","person_with_veil":"1f470.svg","person_with_veil_tone1":"1f470-1f3fb.svg","person_with_veil_tone2":"1f470-1f3fc.svg","person_with_veil_tone3":"1f470-1f3fd.svg","person_with_veil_tone4":"1f470-1f3fe.svg","person_with_veil_tone5":"1f470-1f3ff.svg","petri_dish":"1f9eb.svg","pick":"26cf.svg","pickup_truck":"1f6fb.svg","pie":"1f967.svg","pig2":"1f416.svg","pig":"1f437.svg","pig_nose":"1f43d.svg","pill":"1f48a.svg","pilot":"1f9d1-200d-2708-fe0f.svg","pilot_tone1":"1f9d1-1f3fb-200d-2708-fe0f.svg","pilot_tone2":"1f9d1-1f3fc-200d-2708-fe0f.svg","pilot_tone3":"1f9d1-1f3fd-200d-2708-fe0f.svg","pilot_tone4":"1f9d1-1f3fe-200d-2708-fe0f.svg","pilot_tone5":"1f9d1-1f3ff-200d-2708-fe0f.svg","pinched_fingers":"1f90c.svg","pinched_fingers_tone1":"1f90c-1f3fb.svg","pinched_fingers_tone2":"1f90c-1f3fc.svg","pinched_fingers_tone3":"1f90c-1f3fd.svg","pinched_fingers_tone4":"1f90c-1f3fe.svg","pinched_fingers_tone5":"1f90c-1f3ff.svg","pinching_hand":"1f90f.svg","pinching_hand_tone1":"1f90f-1f3fb.svg","pinching_hand_tone2":"1f90f-1f3fc.svg","pinching_hand_tone3":"1f90f-1f3fd.svg","pinching_hand_tone4":"1f90f-1f3fe.svg","pinching_hand_tone5":"1f90f-1f3ff.svg","pineapple":"1f34d.svg","ping_pong":"1f3d3.svg","pirate_flag":"1f3f4-200d-2620-fe0f.svg","pisces":"2653.svg","pizza":"1f355.svg","piñata":"1fa85.svg","placard":"1faa7.svg","place_of_worship":"1f6d0.svg","play_pause":"23ef.svg","playground_slide":"1f6dd.svg","pleading_face":"1f97a.svg","plunger":"1faa0.svg","point_down":"1f447.svg","point_down_tone1":"1f447-1f3fb.svg","point_down_tone2":"1f447-1f3fc.svg","point_down_tone3":"1f447-1f3fd.svg","point_down_tone4":"1f447-1f3fe.svg","point_down_tone5":"1f447-1f3ff.svg","point_left":"1f448.svg","point_left_tone1":"1f448-1f3fb.svg","point_left_tone2":"1f448-1f3fc.svg","point_left_tone3":"1f448-1f3fd.svg","point_left_tone4":"1f448-1f3fe.svg","point_left_tone5":"1f448-1f3ff.svg","point_right":"1f449.svg","point_right_tone1":"1f449-1f3fb.svg","point_right_tone2":"1f449-1f3fc.svg","point_right_tone3":"1f449-1f3fd.svg","point_right_tone4":"1f449-1f3fe.svg","point_right_tone5":"1f449-1f3ff.svg","point_up":"261d.svg","point_up_2":"1f446.svg","point_up_2_tone1":"1f446-1f3fb.svg","point_up_2_tone2":"1f446-1f3fc.svg","point_up_2_tone3":"1f446-1f3fd.svg","point_up_2_tone4":"1f446-1f3fe.svg","point_up_2_tone5":"1f446-1f3ff.svg","point_up_tone1":"261d-1f3fb.svg","point_up_tone2":"261d-1f3fc.svg","point_up_tone3":"261d-1f3fd.svg","point_up_tone4":"261d-1f3fe.svg","point_up_tone5":"261d-1f3ff.svg","polar_bear":"1f43b-200d-2744-fe0f.svg","police_car":"1f693.svg","police_officer":"1f46e.svg","police_officer_tone1":"1f46e-1f3fb.svg","police_officer_tone2":"1f46e-1f3fc.svg","police_officer_tone3":"1f46e-1f3fd.svg","police_officer_tone4":"1f46e-1f3fe.svg","police_officer_tone5":"1f46e-1f3ff.svg","poodle":"1f429.svg","poop":"1f4a9.svg","popcorn":"1f37f.svg","post_office":"1f3e3.svg","postal_horn":"1f4ef.svg","postbox":"1f4ee.svg","potable_water":"1f6b0.svg","potato":"1f954.svg","potted_plant":"1fab4.svg","pouch":"1f45d.svg","poultry_leg":"1f357.svg","pound":"1f4b7.svg","pouring_liquid":"1fad7.svg","pouting_cat":"1f63e.svg","pray":"1f64f.svg","pray_tone1":"1f64f-1f3fb.svg","pray_tone2":"1f64f-1f3fc.svg","pray_tone3":"1f64f-1f3fd.svg","pray_tone4":"1f64f-1f3fe.svg","pray_tone5":"1f64f-1f3ff.svg","prayer_beads":"1f4ff.svg","pregnant_man":"1fac3.svg","pregnant_man_tone1":"1fac3-1f3fb.svg","pregnant_man_tone2":"1fac3-1f3fc.svg","pregnant_man_tone3":"1fac3-1f3fd.svg","pregnant_man_tone4":"1fac3-1f3fe.svg","pregnant_man_tone5":"1fac3-1f3ff.svg","pregnant_person":"1fac4.svg","pregnant_person_tone1":"1fac4-1f3fb.svg","pregnant_person_tone2":"1fac4-1f3fc.svg","pregnant_person_tone3":"1fac4-1f3fd.svg","pregnant_person_tone4":"1fac4-1f3fe.svg","pregnant_person_tone5":"1fac4-1f3ff.svg","pregnant_woman":"1f930.svg","pregnant_woman_tone1":"1f930-1f3fb.svg","pregnant_woman_tone2":"1f930-1f3fc.svg","pregnant_woman_tone3":"1f930-1f3fd.svg","pregnant_woman_tone4":"1f930-1f3fe.svg","pregnant_woman_tone5":"1f930-1f3ff.svg","pretzel":"1f968.svg","prince":"1f934.svg","prince_tone1":"1f934-1f3fb.svg","prince_tone2":"1f934-1f3fc.svg","prince_tone3":"1f934-1f3fd.svg","prince_tone4":"1f934-1f3fe.svg","prince_tone5":"1f934-1f3ff.svg","princess":"1f478.svg","princess_tone1":"1f478-1f3fb.svg","princess_tone2":"1f478-1f3fc.svg","princess_tone3":"1f478-1f3fd.svg","princess_tone4":"1f478-1f3fe.svg","princess_tone5":"1f478-1f3ff.svg","printer":"1f5a8.svg","probing_cane":"1f9af.svg","projector":"1f4fd.svg","punch":"1f44a.svg","punch_tone1":"1f44a-1f3fb.svg","punch_tone2":"1f44a-1f3fc.svg","punch_tone3":"1f44a-1f3fd.svg","punch_tone4":"1f44a-1f3fe.svg","punch_tone5":"1f44a-1f3ff.svg","purple_circle":"1f7e3.svg","purple_heart":"1f49c.svg","purple_square":"1f7ea.svg","purse":"1f45b.svg","pushpin":"1f4cc.svg","put_litter_in_its_place":"1f6ae.svg","question":"2753.svg","rabbit2":"1f407.svg","rabbit":"1f430.svg","raccoon":"1f99d.svg","race_car":"1f3ce.svg","racehorse":"1f40e.svg","radio":"1f4fb.svg","radio_button":"1f518.svg","radioactive":"2622.svg","rage":"1f621.svg","railway_car":"1f683.svg","railway_track":"1f6e4.svg","rainbow":"1f308.svg","rainbow_flag":"1f3f3-fe0f-200d-1f308.svg","raised_back_of_hand":"1f91a.svg","raised_back_of_hand_tone1":"1f91a-1f3fb.svg","raised_back_of_hand_tone2":"1f91a-1f3fc.svg","raised_back_of_hand_tone3":"1f91a-1f3fd.svg","raised_back_of_hand_tone4":"1f91a-1f3fe.svg","raised_back_of_hand_tone5":"1f91a-1f3ff.svg","raised_hand":"270b.svg","raised_hand_tone1":"270b-1f3fb.svg","raised_hand_tone2":"270b-1f3fc.svg","raised_hand_tone3":"270b-1f3fd.svg","raised_hand_tone4":"270b-1f3fe.svg","raised_hand_tone5":"270b-1f3ff.svg","raised_hands":"1f64c.svg","raised_hands_tone1":"1f64c-1f3fb.svg","raised_hands_tone2":"1f64c-1f3fc.svg","raised_hands_tone3":"1f64c-1f3fd.svg","raised_hands_tone4":"1f64c-1f3fe.svg","raised_hands_tone5":"1f64c-1f3ff.svg","ram":"1f40f.svg","ramen":"1f35c.svg","rat":"1f400.svg","razor":"1fa92.svg","receipt":"1f9fe.svg","record_button":"23fa.svg","recycle":"267b.svg","red_car":"1f697.svg","red_circle":"1f534.svg","red_envelope":"1f9e7.svg","red_haired":"1f9b0.svg","red_square":"1f7e5.svg","regional_indicator_a":"1f1e6.svg","regional_indicator_b":"1f1e7.svg","regional_indicator_c":"1f1e8.svg","regional_indicator_d":"1f1e9.svg","regional_indicator_e":"1f1ea.svg","regional_indicator_f":"1f1eb.svg","regional_indicator_g":"1f1ec.svg","regional_indicator_h":"1f1ed.svg","regional_indicator_i":"1f1ee.svg","regional_indicator_j":"1f1ef.svg","regional_indicator_k":"1f1f0.svg","regional_indicator_l":"1f1f1.svg","regional_indicator_m":"1f1f2.svg","regional_indicator_n":"1f1f3.svg","regional_indicator_o":"1f1f4.svg","regional_indicator_p":"1f1f5.svg","regional_indicator_q":"1f1f6.svg","regional_indicator_r":"1f1f7.svg","regional_indicator_s":"1f1f8.svg","regional_indicator_t":"1f1f9.svg","regional_indicator_u":"1f1fa.svg","regional_indicator_v":"1f1fb.svg","regional_indicator_w":"1f1fc.svg","regional_indicator_x":"1f1fd.svg","regional_indicator_y":"1f1fe.svg","regional_indicator_z":"1f1ff.svg","registered":"ae.svg","relaxed":"263a.svg","relieved":"1f60c.svg","reminder_ribbon":"1f397.svg","repeat":"1f501.svg","repeat_one":"1f502.svg","restroom":"1f6bb.svg","revolving_hearts":"1f49e.svg","rewind":"23ea.svg","rhino":"1f98f.svg","ribbon":"1f380.svg","rice":"1f35a.svg","rice_ball":"1f359.svg","rice_cracker":"1f358.svg","rice_scene":"1f391.svg","right_facing_fist":"1f91c.svg","right_facing_fist_tone1":"1f91c-1f3fb.svg","right_facing_fist_tone2":"1f91c-1f3fc.svg","right_facing_fist_tone3":"1f91c-1f3fd.svg","right_facing_fist_tone4":"1f91c-1f3fe.svg","right_facing_fist_tone5":"1f91c-1f3ff.svg","rightwards_hand":"1faf1.svg","rightwards_hand_tone1":"1faf1-1f3fb.svg","rightwards_hand_tone2":"1faf1-1f3fc.svg","rightwards_hand_tone3":"1faf1-1f3fd.svg","rightwards_hand_tone4":"1faf1-1f3fe.svg","rightwards_hand_tone5":"1faf1-1f3ff.svg","ring":"1f48d.svg","ring_buoy":"1f6df.svg","ringed_planet":"1fa90.svg","robot":"1f916.svg","rock":"1faa8.svg","rocket":"1f680.svg","rofl":"1f923.svg","roll_of_paper":"1f9fb.svg","roller_coaster":"1f3a2.svg","roller_skate":"1f6fc.svg","rolling_eyes":"1f644.svg","rooster":"1f413.svg","rose":"1f339.svg","rosette":"1f3f5.svg","rotating_light":"1f6a8.svg","round_pushpin":"1f4cd.svg","rugby_football":"1f3c9.svg","running_shirt_with_sash":"1f3bd.svg","sa":"1f202.svg","safety_pin":"1f9f7.svg","safety_vest":"1f9ba.svg","sagittarius":"2650.svg","sailboat":"26f5.svg","sake":"1f376.svg","salad":"1f957.svg","salt":"1f9c2.svg","saluting_face":"1fae1.svg","sandal":"1f461.svg","sandwich":"1f96a.svg","santa":"1f385.svg","santa_tone1":"1f385-1f3fb.svg","santa_tone2":"1f385-1f3fc.svg","santa_tone3":"1f385-1f3fd.svg","santa_tone4":"1f385-1f3fe.svg","santa_tone5":"1f385-1f3ff.svg","sari":"1f97b.svg","satellite":"1f4e1.svg","satellite_orbital":"1f6f0.svg","sauropod":"1f995.svg","saxophone":"1f3b7.svg","scales":"2696.svg","scarf":"1f9e3.svg","school":"1f3eb.svg","school_satchel":"1f392.svg","scientist":"1f9d1-200d-1f52c.svg","scientist_tone1":"1f9d1-1f3fb-200d-1f52c.svg","scientist_tone2":"1f9d1-1f3fc-200d-1f52c.svg","scientist_tone3":"1f9d1-1f3fd-200d-1f52c.svg","scientist_tone4":"1f9d1-1f3fe-200d-1f52c.svg","scientist_tone5":"1f9d1-1f3ff-200d-1f52c.svg","scissors":"2702.svg","scooter":"1f6f4.svg","scorpion":"1f982.svg","scorpius":"264f.svg","scotland":"1f3f4-e0067-e0062-e0073-e0063-e0074-e007f.svg","scream":"1f631.svg","scream_cat":"1f640.svg","screwdriver":"1fa9b.svg","scroll":"1f4dc.svg","seal":"1f9ad.svg","seat":"1f4ba.svg","second_place":"1f948.svg","secret":"3299.svg","see_no_evil":"1f648.svg","seedling":"1f331.svg","selfie":"1f933.svg","selfie_tone1":"1f933-1f3fb.svg","selfie_tone2":"1f933-1f3fc.svg","selfie_tone3":"1f933-1f3fd.svg","selfie_tone4":"1f933-1f3fe.svg","selfie_tone5":"1f933-1f3ff.svg","service_dog":"1f415-200d-1f9ba.svg","seven":"37-20e3.svg","sewing_needle":"1faa1.svg","shallow_pan_of_food":"1f958.svg","shamrock":"2618.svg","shark":"1f988.svg","shaved_ice":"1f367.svg","sheep":"1f411.svg","shell":"1f41a.svg","shibuya":"e50a.svg","shield":"1f6e1.svg","shinto_shrine":"26e9.svg","ship":"1f6a2.svg","shirt":"1f455.svg","shopping_bags":"1f6cd.svg","shopping_cart":"1f6d2.svg","shorts":"1fa73.svg","shower":"1f6bf.svg","shrimp":"1f990.svg","shushing_face":"1f92b.svg","signal_strength":"1f4f6.svg","singer":"1f9d1-200d-1f3a4.svg","singer_tone1":"1f9d1-1f3fb-200d-1f3a4.svg","singer_tone2":"1f9d1-1f3fc-200d-1f3a4.svg","singer_tone3":"1f9d1-1f3fd-200d-1f3a4.svg","singer_tone4":"1f9d1-1f3fe-200d-1f3a4.svg","singer_tone5":"1f9d1-1f3ff-200d-1f3a4.svg","six":"36-20e3.svg","six_pointed_star":"1f52f.svg","skateboard":"1f6f9.svg","ski":"1f3bf.svg","skier":"26f7.svg","skier_tone1":"26f7-1f3fb.svg","skier_tone2":"26f7-1f3fc.svg","skier_tone3":"26f7-1f3fd.svg","skier_tone4":"26f7-1f3fe.svg","skier_tone5":"26f7-1f3ff.svg","skull":"1f480.svg","skull_crossbones":"2620.svg","skunk":"1f9a8.svg","sled":"1f6f7.svg","sleeping":"1f634.svg","sleeping_accommodation":"1f6cc.svg","sleepy":"1f62a.svg","slight_frown":"1f641.svg","slight_smile":"1f642.svg","slot_machine":"1f3b0.svg","sloth":"1f9a5.svg","small_blue_diamond":"1f539.svg","small_orange_diamond":"1f538.svg","small_red_triangle":"1f53a.svg","small_red_triangle_down":"1f53b.svg","smile":"1f604.svg","smile_cat":"1f638.svg","smiley":"1f603.svg","smiley_cat":"1f63a.svg","smiling_face_with_3_hearts":"1f970.svg","smiling_face_with_tear":"1f972.svg","smiling_imp":"1f608.svg","smirk":"1f60f.svg","smirk_cat":"1f63c.svg","smoking":"1f6ac.svg","snail":"1f40c.svg","snake":"1f40d.svg","sneezing_face":"1f927.svg","snowboarder":"1f3c2.svg","snowboarder_tone1":"1f3c2-1f3fb.svg","snowboarder_tone2":"1f3c2-1f3fc.svg","snowboarder_tone3":"1f3c2-1f3fd.svg","snowboarder_tone4":"1f3c2-1f3fe.svg","snowboarder_tone5":"1f3c2-1f3ff.svg","snowflake":"2744.svg","snowman2":"2603.svg","snowman":"26c4.svg","soap":"1f9fc.svg","sob":"1f62d.svg","soccer":"26bd.svg","socks":"1f9e6.svg","softball":"1f94e.svg","soon":"1f51c.svg","sos":"1f198.svg","sound":"1f509.svg","space_invader":"1f47e.svg","spades":"2660.svg","spaghetti":"1f35d.svg","sparkle":"2747.svg","sparkler":"1f387.svg","sparkles":"2728.svg","sparkling_heart":"1f496.svg","speak_no_evil":"1f64a.svg","speaker":"1f508.svg","speaking_head":"1f5e3.svg","speech_balloon":"1f4ac.svg","speech_left":"1f5e8.svg","speedboat":"1f6a4.svg","spider":"1f577.svg","spider_web":"1f578.svg","sponge":"1f9fd.svg","spoon":"1f944.svg","squeeze_bottle":"1f9f4.svg","squid":"1f991.svg","stadium":"1f3df.svg","star2":"1f31f.svg","star":"2b50.svg","star_and_crescent":"262a.svg","star_of_david":"2721.svg","star_struck":"1f929.svg","stars":"1f320.svg","station":"1f689.svg","statue_of_liberty":"1f5fd.svg","steam_locomotive":"1f682.svg","stethoscope":"1fa7a.svg","stew":"1f372.svg","stop_button":"23f9.svg","stopwatch":"23f1.svg","straight_ruler":"1f4cf.svg","strawberry":"1f353.svg","stuck_out_tongue":"1f61b.svg","stuck_out_tongue_closed_eyes":"1f61d.svg","stuck_out_tongue_winking_eye":"1f61c.svg","student":"1f9d1-200d-1f393.svg","student_tone1":"1f9d1-1f3fb-200d-1f393.svg","student_tone2":"1f9d1-1f3fc-200d-1f393.svg","student_tone3":"1f9d1-1f3fd-200d-1f393.svg","student_tone4":"1f9d1-1f3fe-200d-1f393.svg","student_tone5":"1f9d1-1f3ff-200d-1f393.svg","stuffed_flatbread":"1f959.svg","sun_with_face":"1f31e.svg","sunflower":"1f33b.svg","sunglasses":"1f60e.svg","sunny":"2600.svg","sunrise":"1f305.svg","sunrise_over_mountains":"1f304.svg","superhero":"1f9b8.svg","superhero_tone1":"1f9b8-1f3fb.svg","superhero_tone2":"1f9b8-1f3fc.svg","superhero_tone3":"1f9b8-1f3fd.svg","superhero_tone4":"1f9b8-1f3fe.svg","superhero_tone5":"1f9b8-1f3ff.svg","supervillain":"1f9b9.svg","supervillain_tone1":"1f9b9-1f3fb.svg","supervillain_tone2":"1f9b9-1f3fc.svg","supervillain_tone3":"1f9b9-1f3fd.svg","supervillain_tone4":"1f9b9-1f3fe.svg","supervillain_tone5":"1f9b9-1f3ff.svg","sushi":"1f363.svg","suspension_railway":"1f69f.svg","swan":"1f9a2.svg","sweat":"1f613.svg","sweat_drops":"1f4a6.svg","sweat_smile":"1f605.svg","sweet_potato":"1f360.svg","symbols":"1f523.svg","synagogue":"1f54d.svg","syringe":"1f489.svg","t_rex":"1f996.svg","taco":"1f32e.svg","tada":"1f389.svg","takeout_box":"1f961.svg","tamale":"1fad4.svg","tanabata_tree":"1f38b.svg","tangerine":"1f34a.svg","taurus":"2649.svg","taxi":"1f695.svg","tea":"1f375.svg","teacher":"1f9d1-200d-1f3eb.svg","teacher_tone1":"1f9d1-1f3fb-200d-1f3eb.svg","teacher_tone2":"1f9d1-1f3fc-200d-1f3eb.svg","teacher_tone3":"1f9d1-1f3fd-200d-1f3eb.svg","teacher_tone4":"1f9d1-1f3fe-200d-1f3eb.svg","teacher_tone5":"1f9d1-1f3ff-200d-1f3eb.svg","teapot":"1fad6.svg","technologist":"1f9d1-200d-1f4bb.svg","technologist_tone1":"1f9d1-1f3fb-200d-1f4bb.svg","technologist_tone2":"1f9d1-1f3fc-200d-1f4bb.svg","technologist_tone3":"1f9d1-1f3fd-200d-1f4bb.svg","technologist_tone4":"1f9d1-1f3fe-200d-1f4bb.svg","technologist_tone5":"1f9d1-1f3ff-200d-1f4bb.svg","teddy_bear":"1f9f8.svg","telephone":"260e.svg","telephone_receiver":"1f4de.svg","telescope":"1f52d.svg","tennis":"1f3be.svg","tent":"26fa.svg","test_tube":"1f9ea.svg","thermometer":"1f321.svg","thermometer_face":"1f912.svg","thinking":"1f914.svg","third_place":"1f949.svg","thong_sandal":"1fa74.svg","thought_balloon":"1f4ad.svg","thread":"1f9f5.svg","three":"33-20e3.svg","thumbsdown":"1f44e.svg","thumbsdown_tone1":"1f44e-1f3fb.svg","thumbsdown_tone2":"1f44e-1f3fc.svg","thumbsdown_tone3":"1f44e-1f3fd.svg","thumbsdown_tone4":"1f44e-1f3fe.svg","thumbsdown_tone5":"1f44e-1f3ff.svg","thumbsup":"1f44d.svg","thumbsup_tone1":"1f44d-1f3fb.svg","thumbsup_tone2":"1f44d-1f3fc.svg","thumbsup_tone3":"1f44d-1f3fd.svg","thumbsup_tone4":"1f44d-1f3fe.svg","thumbsup_tone5":"1f44d-1f3ff.svg","thunder_cloud_rain":"26c8.svg","ticket":"1f3ab.svg","tickets":"1f39f.svg","tiger2":"1f405.svg","tiger":"1f42f.svg","timer":"23f2.svg","tired_face":"1f62b.svg","tm":"2122.svg","toilet":"1f6bd.svg","tokyo_tower":"1f5fc.svg","tomato":"1f345.svg","tone1":"1f3fb.svg","tone2":"1f3fc.svg","tone3":"1f3fd.svg","tone4":"1f3fe.svg","tone5":"1f3ff.svg","tongue":"1f445.svg","toolbox":"1f9f0.svg","tools":"1f6e0.svg","tooth":"1f9b7.svg","toothbrush":"1faa5.svg","top":"1f51d.svg","tophat":"1f3a9.svg","track_next":"23ed.svg","track_previous":"23ee.svg","trackball":"1f5b2.svg","tractor":"1f69c.svg","traffic_light":"1f6a5.svg","train2":"1f686.svg","train":"1f68b.svg","tram":"1f68a.svg","transgender_flag":"1f3f3-fe0f-200d-26a7-fe0f.svg","transgender_symbol":"26a7.svg","triangular_flag_on_post":"1f6a9.svg","triangular_ruler":"1f4d0.svg","trident":"1f531.svg","triumph":"1f624.svg","troll":"1f9cc.svg","trolleybus":"1f68e.svg","trophy":"1f3c6.svg","tropical_drink":"1f379.svg","tropical_fish":"1f420.svg","truck":"1f69a.svg","trumpet":"1f3ba.svg","tulip":"1f337.svg","tumbler_glass":"1f943.svg","turkey":"1f983.svg","turtle":"1f422.svg","tv":"1f4fa.svg","twisted_rightwards_arrows":"1f500.svg","two":"32-20e3.svg","two_hearts":"1f495.svg","two_men_holding_hands":"1f46c.svg","two_women_holding_hands":"1f46d.svg","u5272":"1f239.svg","u5408":"1f234.svg","u55b6":"1f23a.svg","u6307":"1f22f.svg","u6708":"1f237.svg","u6709":"1f236.svg","u6e80":"1f235.svg","u7121":"1f21a.svg","u7533":"1f238.svg","u7981":"1f232.svg","u7a7a":"1f233.svg","umbrella2":"2602.svg","umbrella":"2614.svg","unamused":"1f612.svg","underage":"1f51e.svg","unicorn":"1f984.svg","united_nations":"1f1fa-1f1f3.svg","unlock":"1f513.svg","up":"1f199.svg","upside_down":"1f643.svg","urn":"26b1.svg","v":"270c.svg","v_tone1":"270c-1f3fb.svg","v_tone2":"270c-1f3fc.svg","v_tone3":"270c-1f3fd.svg","v_tone4":"270c-1f3fe.svg","v_tone5":"270c-1f3ff.svg","vampire":"1f9db.svg","vampire_tone1":"1f9db-1f3fb.svg","vampire_tone2":"1f9db-1f3fc.svg","vampire_tone3":"1f9db-1f3fd.svg","vampire_tone4":"1f9db-1f3fe.svg","vampire_tone5":"1f9db-1f3ff.svg","vertical_traffic_light":"1f6a6.svg","vhs":"1f4fc.svg","vibration_mode":"1f4f3.svg","video_camera":"1f4f9.svg","video_game":"1f3ae.svg","violin":"1f3bb.svg","virgo":"264d.svg","volcano":"1f30b.svg","volleyball":"1f3d0.svg","vs":"1f19a.svg","vulcan":"1f596.svg","vulcan_tone1":"1f596-1f3fb.svg","vulcan_tone2":"1f596-1f3fc.svg","vulcan_tone3":"1f596-1f3fd.svg","vulcan_tone4":"1f596-1f3fe.svg","vulcan_tone5":"1f596-1f3ff.svg","waffle":"1f9c7.svg","wales":"1f3f4-e0067-e0062-e0077-e006c-e0073-e007f.svg","waning_crescent_moon":"1f318.svg","waning_gibbous_moon":"1f316.svg","warning":"26a0.svg","wastebasket":"1f5d1.svg","watch":"231a.svg","water_buffalo":"1f403.svg","watermelon":"1f349.svg","wave":"1f44b.svg","wave_tone1":"1f44b-1f3fb.svg","wave_tone2":"1f44b-1f3fc.svg","wave_tone3":"1f44b-1f3fd.svg","wave_tone4":"1f44b-1f3fe.svg","wave_tone5":"1f44b-1f3ff.svg","wavy_dash":"3030.svg","waxing_crescent_moon":"1f312.svg","waxing_gibbous_moon":"1f314.svg","wc":"1f6be.svg","weary":"1f629.svg","wedding":"1f492.svg","whale2":"1f40b.svg","whale":"1f433.svg","wheel":"1f6de.svg","wheel_of_dharma":"2638.svg","wheelchair":"267f.svg","white_check_mark":"2705.svg","white_circle":"26aa.svg","white_flower":"1f4ae.svg","white_haired":"1f9b3.svg","white_heart":"1f90d.svg","white_large_square":"2b1c.svg","white_medium_small_square":"25fd.svg","white_medium_square":"25fb.svg","white_small_square":"25ab.svg","white_square_button":"1f533.svg","white_sun_cloud":"1f325.svg","white_sun_rain_cloud":"1f326.svg","white_sun_small_cloud":"1f324.svg","wilted_rose":"1f940.svg","wind_blowing_face":"1f32c.svg","wind_chime":"1f390.svg","window":"1fa9f.svg","wine_glass":"1f377.svg","wink":"1f609.svg","wolf":"1f43a.svg","woman":"1f469.svg","woman_and_man_holding_hands_tone1":"1f46b-1f3fb.svg","woman_and_man_holding_hands_tone1_tone2":"1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc.svg","woman_and_man_holding_hands_tone1_tone3":"1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd.svg","woman_and_man_holding_hands_tone1_tone4":"1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe.svg","woman_and_man_holding_hands_tone1_tone5":"1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff.svg","woman_and_man_holding_hands_tone2":"1f46b-1f3fc.svg","woman_and_man_holding_hands_tone2_tone1":"1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg","woman_and_man_holding_hands_tone2_tone3":"1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd.svg","woman_and_man_holding_hands_tone2_tone4":"1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe.svg","woman_and_man_holding_hands_tone2_tone5":"1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff.svg","woman_and_man_holding_hands_tone3":"1f46b-1f3fd.svg","woman_and_man_holding_hands_tone3_tone1":"1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg","woman_and_man_holding_hands_tone3_tone2":"1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg","woman_and_man_holding_hands_tone3_tone4":"1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe.svg","woman_and_man_holding_hands_tone3_tone5":"1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff.svg","woman_and_man_holding_hands_tone4":"1f46b-1f3fe.svg","woman_and_man_holding_hands_tone4_tone1":"1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg","woman_and_man_holding_hands_tone4_tone2":"1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg","woman_and_man_holding_hands_tone4_tone3":"1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg","woman_and_man_holding_hands_tone4_tone5":"1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff.svg","woman_and_man_holding_hands_tone5":"1f46b-1f3ff.svg","woman_and_man_holding_hands_tone5_tone1":"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg","woman_and_man_holding_hands_tone5_tone2":"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg","woman_and_man_holding_hands_tone5_tone3":"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg","woman_and_man_holding_hands_tone5_tone4":"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg","woman_artist":"1f469-200d-1f3a8.svg","woman_artist_tone1":"1f469-1f3fb-200d-1f3a8.svg","woman_artist_tone2":"1f469-1f3fc-200d-1f3a8.svg","woman_artist_tone3":"1f469-1f3fd-200d-1f3a8.svg","woman_artist_tone4":"1f469-1f3fe-200d-1f3a8.svg","woman_artist_tone5":"1f469-1f3ff-200d-1f3a8.svg","woman_astronaut":"1f469-200d-1f680.svg","woman_astronaut_tone1":"1f469-1f3fb-200d-1f680.svg","woman_astronaut_tone2":"1f469-1f3fc-200d-1f680.svg","woman_astronaut_tone3":"1f469-1f3fd-200d-1f680.svg","woman_astronaut_tone4":"1f469-1f3fe-200d-1f680.svg","woman_astronaut_tone5":"1f469-1f3ff-200d-1f680.svg","woman_bald":"1f469-200d-1f9b2.svg","woman_bald_tone1":"1f469-1f3fb-200d-1f9b2.svg","woman_bald_tone2":"1f469-1f3fc-200d-1f9b2.svg","woman_bald_tone3":"1f469-1f3fd-200d-1f9b2.svg","woman_bald_tone4":"1f469-1f3fe-200d-1f9b2.svg","woman_bald_tone5":"1f469-1f3ff-200d-1f9b2.svg","woman_beard":"1f9d4-200d-2640-fe0f.svg","woman_biking":"1f6b4-200d-2640-fe0f.svg","woman_biking_tone1":"1f6b4-1f3fb-200d-2640-fe0f.svg","woman_biking_tone2":"1f6b4-1f3fc-200d-2640-fe0f.svg","woman_biking_tone3":"1f6b4-1f3fd-200d-2640-fe0f.svg","woman_biking_tone4":"1f6b4-1f3fe-200d-2640-fe0f.svg","woman_biking_tone5":"1f6b4-1f3ff-200d-2640-fe0f.svg","woman_bouncing_ball":"26f9-fe0f-200d-2640-fe0f.svg","woman_bouncing_ball_tone1":"26f9-1f3fb-200d-2640-fe0f.svg","woman_bouncing_ball_tone2":"26f9-1f3fc-200d-2640-fe0f.svg","woman_bouncing_ball_tone3":"26f9-1f3fd-200d-2640-fe0f.svg","woman_bouncing_ball_tone4":"26f9-1f3fe-200d-2640-fe0f.svg","woman_bouncing_ball_tone5":"26f9-1f3ff-200d-2640-fe0f.svg","woman_bowing":"1f647-200d-2640-fe0f.svg","woman_bowing_tone1":"1f647-1f3fb-200d-2640-fe0f.svg","woman_bowing_tone2":"1f647-1f3fc-200d-2640-fe0f.svg","woman_bowing_tone3":"1f647-1f3fd-200d-2640-fe0f.svg","woman_bowing_tone4":"1f647-1f3fe-200d-2640-fe0f.svg","woman_bowing_tone5":"1f647-1f3ff-200d-2640-fe0f.svg","woman_cartwheeling":"1f938-200d-2640-fe0f.svg","woman_cartwheeling_tone1":"1f938-1f3fb-200d-2640-fe0f.svg","woman_cartwheeling_tone2":"1f938-1f3fc-200d-2640-fe0f.svg","woman_cartwheeling_tone3":"1f938-1f3fd-200d-2640-fe0f.svg","woman_cartwheeling_tone4":"1f938-1f3fe-200d-2640-fe0f.svg","woman_cartwheeling_tone5":"1f938-1f3ff-200d-2640-fe0f.svg","woman_climbing":"1f9d7-200d-2640-fe0f.svg","woman_climbing_tone1":"1f9d7-1f3fb-200d-2640-fe0f.svg","woman_climbing_tone2":"1f9d7-1f3fc-200d-2640-fe0f.svg","woman_climbing_tone3":"1f9d7-1f3fd-200d-2640-fe0f.svg","woman_climbing_tone4":"1f9d7-1f3fe-200d-2640-fe0f.svg","woman_climbing_tone5":"1f9d7-1f3ff-200d-2640-fe0f.svg","woman_construction_worker":"1f477-200d-2640-fe0f.svg","woman_construction_worker_tone1":"1f477-1f3fb-200d-2640-fe0f.svg","woman_construction_worker_tone2":"1f477-1f3fc-200d-2640-fe0f.svg","woman_construction_worker_tone3":"1f477-1f3fd-200d-2640-fe0f.svg","woman_construction_worker_tone4":"1f477-1f3fe-200d-2640-fe0f.svg","woman_construction_worker_tone5":"1f477-1f3ff-200d-2640-fe0f.svg","woman_cook":"1f469-200d-1f373.svg","woman_cook_tone1":"1f469-1f3fb-200d-1f373.svg","woman_cook_tone2":"1f469-1f3fc-200d-1f373.svg","woman_cook_tone3":"1f469-1f3fd-200d-1f373.svg","woman_cook_tone4":"1f469-1f3fe-200d-1f373.svg","woman_cook_tone5":"1f469-1f3ff-200d-1f373.svg","woman_curly_haired":"1f469-200d-1f9b1.svg","woman_curly_haired_tone1":"1f469-1f3fb-200d-1f9b1.svg","woman_curly_haired_tone2":"1f469-1f3fc-200d-1f9b1.svg","woman_curly_haired_tone3":"1f469-1f3fd-200d-1f9b1.svg","woman_curly_haired_tone4":"1f469-1f3fe-200d-1f9b1.svg","woman_curly_haired_tone5":"1f469-1f3ff-200d-1f9b1.svg","woman_detective":"1f575-fe0f-200d-2640-fe0f.svg","woman_detective_tone1":"1f575-1f3fb-200d-2640-fe0f.svg","woman_detective_tone2":"1f575-1f3fc-200d-2640-fe0f.svg","woman_detective_tone3":"1f575-1f3fd-200d-2640-fe0f.svg","woman_detective_tone4":"1f575-1f3fe-200d-2640-fe0f.svg","woman_detective_tone5":"1f575-1f3ff-200d-2640-fe0f.svg","woman_elf":"1f9dd-200d-2640-fe0f.svg","woman_elf_tone1":"1f9dd-1f3fb-200d-2640-fe0f.svg","woman_elf_tone2":"1f9dd-1f3fc-200d-2640-fe0f.svg","woman_elf_tone3":"1f9dd-1f3fd-200d-2640-fe0f.svg","woman_elf_tone4":"1f9dd-1f3fe-200d-2640-fe0f.svg","woman_elf_tone5":"1f9dd-1f3ff-200d-2640-fe0f.svg","woman_facepalming":"1f926-200d-2640-fe0f.svg","woman_facepalming_tone1":"1f926-1f3fb-200d-2640-fe0f.svg","woman_facepalming_tone2":"1f926-1f3fc-200d-2640-fe0f.svg","woman_facepalming_tone3":"1f926-1f3fd-200d-2640-fe0f.svg","woman_facepalming_tone4":"1f926-1f3fe-200d-2640-fe0f.svg","woman_facepalming_tone5":"1f926-1f3ff-200d-2640-fe0f.svg","woman_factory_worker":"1f469-200d-1f3ed.svg","woman_factory_worker_tone1":"1f469-1f3fb-200d-1f3ed.svg","woman_factory_worker_tone2":"1f469-1f3fc-200d-1f3ed.svg","woman_factory_worker_tone3":"1f469-1f3fd-200d-1f3ed.svg","woman_factory_worker_tone4":"1f469-1f3fe-200d-1f3ed.svg","woman_factory_worker_tone5":"1f469-1f3ff-200d-1f3ed.svg","woman_fairy":"1f9da-200d-2640-fe0f.svg","woman_fairy_tone1":"1f9da-1f3fb-200d-2640-fe0f.svg","woman_fairy_tone2":"1f9da-1f3fc-200d-2640-fe0f.svg","woman_fairy_tone3":"1f9da-1f3fd-200d-2640-fe0f.svg","woman_fairy_tone4":"1f9da-1f3fe-200d-2640-fe0f.svg","woman_fairy_tone5":"1f9da-1f3ff-200d-2640-fe0f.svg","woman_farmer":"1f469-200d-1f33e.svg","woman_farmer_tone1":"1f469-1f3fb-200d-1f33e.svg","woman_farmer_tone2":"1f469-1f3fc-200d-1f33e.svg","woman_farmer_tone3":"1f469-1f3fd-200d-1f33e.svg","woman_farmer_tone4":"1f469-1f3fe-200d-1f33e.svg","woman_farmer_tone5":"1f469-1f3ff-200d-1f33e.svg","woman_feeding_baby":"1f469-200d-1f37c.svg","woman_feeding_baby_tone1":"1f469-1f3fb-200d-1f37c.svg","woman_feeding_baby_tone2":"1f469-1f3fc-200d-1f37c.svg","woman_feeding_baby_tone3":"1f469-1f3fd-200d-1f37c.svg","woman_feeding_baby_tone4":"1f469-1f3fe-200d-1f37c.svg","woman_feeding_baby_tone5":"1f469-1f3ff-200d-1f37c.svg","woman_firefighter":"1f469-200d-1f692.svg","woman_firefighter_tone1":"1f469-1f3fb-200d-1f692.svg","woman_firefighter_tone2":"1f469-1f3fc-200d-1f692.svg","woman_firefighter_tone3":"1f469-1f3fd-200d-1f692.svg","woman_firefighter_tone4":"1f469-1f3fe-200d-1f692.svg","woman_firefighter_tone5":"1f469-1f3ff-200d-1f692.svg","woman_frowning":"1f64d-200d-2640-fe0f.svg","woman_frowning_tone1":"1f64d-1f3fb-200d-2640-fe0f.svg","woman_frowning_tone2":"1f64d-1f3fc-200d-2640-fe0f.svg","woman_frowning_tone3":"1f64d-1f3fd-200d-2640-fe0f.svg","woman_frowning_tone4":"1f64d-1f3fe-200d-2640-fe0f.svg","woman_frowning_tone5":"1f64d-1f3ff-200d-2640-fe0f.svg","woman_genie":"1f9de-200d-2640-fe0f.svg","woman_gesturing_no":"1f645-200d-2640-fe0f.svg","woman_gesturing_no_tone1":"1f645-1f3fb-200d-2640-fe0f.svg","woman_gesturing_no_tone2":"1f645-1f3fc-200d-2640-fe0f.svg","woman_gesturing_no_tone3":"1f645-1f3fd-200d-2640-fe0f.svg","woman_gesturing_no_tone4":"1f645-1f3fe-200d-2640-fe0f.svg","woman_gesturing_no_tone5":"1f645-1f3ff-200d-2640-fe0f.svg","woman_gesturing_ok":"1f646-200d-2640-fe0f.svg","woman_gesturing_ok_tone1":"1f646-1f3fb-200d-2640-fe0f.svg","woman_gesturing_ok_tone2":"1f646-1f3fc-200d-2640-fe0f.svg","woman_gesturing_ok_tone3":"1f646-1f3fd-200d-2640-fe0f.svg","woman_gesturing_ok_tone4":"1f646-1f3fe-200d-2640-fe0f.svg","woman_gesturing_ok_tone5":"1f646-1f3ff-200d-2640-fe0f.svg","woman_getting_face_massage":"1f486-200d-2640-fe0f.svg","woman_getting_face_massage_tone1":"1f486-1f3fb-200d-2640-fe0f.svg","woman_getting_face_massage_tone2":"1f486-1f3fc-200d-2640-fe0f.svg","woman_getting_face_massage_tone3":"1f486-1f3fd-200d-2640-fe0f.svg","woman_getting_face_massage_tone4":"1f486-1f3fe-200d-2640-fe0f.svg","woman_getting_face_massage_tone5":"1f486-1f3ff-200d-2640-fe0f.svg","woman_getting_haircut":"1f487-200d-2640-fe0f.svg","woman_getting_haircut_tone1":"1f487-1f3fb-200d-2640-fe0f.svg","woman_getting_haircut_tone2":"1f487-1f3fc-200d-2640-fe0f.svg","woman_getting_haircut_tone3":"1f487-1f3fd-200d-2640-fe0f.svg","woman_getting_haircut_tone4":"1f487-1f3fe-200d-2640-fe0f.svg","woman_getting_haircut_tone5":"1f487-1f3ff-200d-2640-fe0f.svg","woman_golfing":"1f3cc-fe0f-200d-2640-fe0f.svg","woman_golfing_tone1":"1f3cc-1f3fb-200d-2640-fe0f.svg","woman_golfing_tone2":"1f3cc-1f3fc-200d-2640-fe0f.svg","woman_golfing_tone3":"1f3cc-1f3fd-200d-2640-fe0f.svg","woman_golfing_tone4":"1f3cc-1f3fe-200d-2640-fe0f.svg","woman_golfing_tone5":"1f3cc-1f3ff-200d-2640-fe0f.svg","woman_guard":"1f482-200d-2640-fe0f.svg","woman_guard_tone1":"1f482-1f3fb-200d-2640-fe0f.svg","woman_guard_tone2":"1f482-1f3fc-200d-2640-fe0f.svg","woman_guard_tone3":"1f482-1f3fd-200d-2640-fe0f.svg","woman_guard_tone4":"1f482-1f3fe-200d-2640-fe0f.svg","woman_guard_tone5":"1f482-1f3ff-200d-2640-fe0f.svg","woman_health_worker":"1f469-200d-2695-fe0f.svg","woman_health_worker_tone1":"1f469-1f3fb-200d-2695-fe0f.svg","woman_health_worker_tone2":"1f469-1f3fc-200d-2695-fe0f.svg","woman_health_worker_tone3":"1f469-1f3fd-200d-2695-fe0f.svg","woman_health_worker_tone4":"1f469-1f3fe-200d-2695-fe0f.svg","woman_health_worker_tone5":"1f469-1f3ff-200d-2695-fe0f.svg","woman_in_lotus_position":"1f9d8-200d-2640-fe0f.svg","woman_in_lotus_position_tone1":"1f9d8-1f3fb-200d-2640-fe0f.svg","woman_in_lotus_position_tone2":"1f9d8-1f3fc-200d-2640-fe0f.svg","woman_in_lotus_position_tone3":"1f9d8-1f3fd-200d-2640-fe0f.svg","woman_in_lotus_position_tone4":"1f9d8-1f3fe-200d-2640-fe0f.svg","woman_in_lotus_position_tone5":"1f9d8-1f3ff-200d-2640-fe0f.svg","woman_in_manual_wheelchair":"1f469-200d-1f9bd.svg","woman_in_manual_wheelchair_tone1":"1f469-1f3fb-200d-1f9bd.svg","woman_in_manual_wheelchair_tone2":"1f469-1f3fc-200d-1f9bd.svg","woman_in_manual_wheelchair_tone3":"1f469-1f3fd-200d-1f9bd.svg","woman_in_manual_wheelchair_tone4":"1f469-1f3fe-200d-1f9bd.svg","woman_in_manual_wheelchair_tone5":"1f469-1f3ff-200d-1f9bd.svg","woman_in_motorized_wheelchair":"1f469-200d-1f9bc.svg","woman_in_motorized_wheelchair_tone1":"1f469-1f3fb-200d-1f9bc.svg","woman_in_motorized_wheelchair_tone2":"1f469-1f3fc-200d-1f9bc.svg","woman_in_motorized_wheelchair_tone3":"1f469-1f3fd-200d-1f9bc.svg","woman_in_motorized_wheelchair_tone4":"1f469-1f3fe-200d-1f9bc.svg","woman_in_motorized_wheelchair_tone5":"1f469-1f3ff-200d-1f9bc.svg","woman_in_santa_hat":"1f469-200d-1f384.svg","woman_in_santa_hat_tone1":"1f469-1f3fb-200d-1f384.svg","woman_in_santa_hat_tone2":"1f468-1f3ff-200d-1f384.svg","woman_in_santa_hat_tone3":"1f469-1f3fe-200d-1f384.svg","woman_in_santa_hat_tone4":"1f469-1f3fd-200d-1f384.svg","woman_in_santa_hat_tone5":"1f469-1f3fc-200d-1f384.svg","woman_in_steamy_room":"1f9d6-200d-2640-fe0f.svg","woman_in_steamy_room_tone1":"1f9d6-1f3fb-200d-2640-fe0f.svg","woman_in_steamy_room_tone2":"1f9d6-1f3fc-200d-2640-fe0f.svg","woman_in_steamy_room_tone3":"1f9d6-1f3fd-200d-2640-fe0f.svg","woman_in_steamy_room_tone4":"1f9d6-1f3fe-200d-2640-fe0f.svg","woman_in_steamy_room_tone5":"1f9d6-1f3ff-200d-2640-fe0f.svg","woman_in_tuxedo":"1f935-200d-2640-fe0f.svg","woman_in_tuxedo_tone1":"1f935-1f3fb-200d-2640-fe0f.svg","woman_in_tuxedo_tone2":"1f935-1f3fc-200d-2640-fe0f.svg","woman_in_tuxedo_tone3":"1f935-1f3fd-200d-2640-fe0f.svg","woman_in_tuxedo_tone4":"1f935-1f3fe-200d-2640-fe0f.svg","woman_in_tuxedo_tone5":"1f935-1f3ff-200d-2640-fe0f.svg","woman_judge":"1f469-200d-2696-fe0f.svg","woman_judge_tone1":"1f469-1f3fb-200d-2696-fe0f.svg","woman_judge_tone2":"1f469-1f3fc-200d-2696-fe0f.svg","woman_judge_tone3":"1f469-1f3fd-200d-2696-fe0f.svg","woman_judge_tone4":"1f469-1f3fe-200d-2696-fe0f.svg","woman_judge_tone5":"1f469-1f3ff-200d-2696-fe0f.svg","woman_juggling":"1f939-200d-2640-fe0f.svg","woman_juggling_tone1":"1f939-1f3fb-200d-2640-fe0f.svg","woman_juggling_tone2":"1f939-1f3fc-200d-2640-fe0f.svg","woman_juggling_tone3":"1f939-1f3fd-200d-2640-fe0f.svg","woman_juggling_tone4":"1f939-1f3fe-200d-2640-fe0f.svg","woman_juggling_tone5":"1f939-1f3ff-200d-2640-fe0f.svg","woman_kneeling":"1f9ce-200d-2640-fe0f.svg","woman_kneeling_tone1":"1f9ce-1f3fb-200d-2640-fe0f.svg","woman_kneeling_tone2":"1f9ce-1f3fc-200d-2640-fe0f.svg","woman_kneeling_tone3":"1f9ce-1f3fd-200d-2640-fe0f.svg","woman_kneeling_tone4":"1f9ce-1f3fe-200d-2640-fe0f.svg","woman_kneeling_tone5":"1f9ce-1f3ff-200d-2640-fe0f.svg","woman_leviate_tone2":"1f574-1f3fc-200d-2640-fe0f.svg","woman_leviate_tone3":"1f574-1f3fd-200d-2640-fe0f.svg","woman_leviate_tone4":"1f574-1f3fe-200d-2640-fe0f.svg","woman_leviate_tone5":"1f574-1f3ff-200d-2640-fe0f.svg","woman_levitate":"1f574-fe0f-200d-2640-fe0f.svg","woman_levitate_tone1":"1f574-1f3fb-200d-2640-fe0f.svg","woman_lifting_weights":"1f3cb-fe0f-200d-2640-fe0f.svg","woman_lifting_weights_tone1":"1f3cb-1f3fb-200d-2640-fe0f.svg","woman_lifting_weights_tone2":"1f3cb-1f3fc-200d-2640-fe0f.svg","woman_lifting_weights_tone3":"1f3cb-1f3fd-200d-2640-fe0f.svg","woman_lifting_weights_tone4":"1f3cb-1f3fe-200d-2640-fe0f.svg","woman_lifting_weights_tone5":"1f3cb-1f3ff-200d-2640-fe0f.svg","woman_mage":"1f9d9-200d-2640-fe0f.svg","woman_mage_tone1":"1f9d9-1f3fb-200d-2640-fe0f.svg","woman_mage_tone2":"1f9d9-1f3fc-200d-2640-fe0f.svg","woman_mage_tone3":"1f9d9-1f3fd-200d-2640-fe0f.svg","woman_mage_tone4":"1f9d9-1f3fe-200d-2640-fe0f.svg","woman_mage_tone5":"1f9d9-1f3ff-200d-2640-fe0f.svg","woman_mechanic":"1f469-200d-1f527.svg","woman_mechanic_tone1":"1f469-1f3fb-200d-1f527.svg","woman_mechanic_tone2":"1f469-1f3fc-200d-1f527.svg","woman_mechanic_tone3":"1f469-1f3fd-200d-1f527.svg","woman_mechanic_tone4":"1f469-1f3fe-200d-1f527.svg","woman_mechanic_tone5":"1f469-1f3ff-200d-1f527.svg","woman_mountain_biking":"1f6b5-200d-2640-fe0f.svg","woman_mountain_biking_tone1":"1f6b5-1f3fb-200d-2640-fe0f.svg","woman_mountain_biking_tone2":"1f6b5-1f3fc-200d-2640-fe0f.svg","woman_mountain_biking_tone3":"1f6b5-1f3fd-200d-2640-fe0f.svg","woman_mountain_biking_tone4":"1f6b5-1f3fe-200d-2640-fe0f.svg","woman_mountain_biking_tone5":"1f6b5-1f3ff-200d-2640-fe0f.svg","woman_office_worker":"1f469-200d-1f4bc.svg","woman_office_worker_tone1":"1f469-1f3fb-200d-1f4bc.svg","woman_office_worker_tone2":"1f469-1f3fc-200d-1f4bc.svg","woman_office_worker_tone3":"1f469-1f3fd-200d-1f4bc.svg","woman_office_worker_tone4":"1f469-1f3fe-200d-1f4bc.svg","woman_office_worker_tone5":"1f469-1f3ff-200d-1f4bc.svg","woman_pilot":"1f469-200d-2708-fe0f.svg","woman_pilot_tone1":"1f469-1f3fb-200d-2708-fe0f.svg","woman_pilot_tone2":"1f469-1f3fc-200d-2708-fe0f.svg","woman_pilot_tone3":"1f469-1f3fd-200d-2708-fe0f.svg","woman_pilot_tone4":"1f469-1f3fe-200d-2708-fe0f.svg","woman_pilot_tone5":"1f469-1f3ff-200d-2708-fe0f.svg","woman_playing_handball":"1f93e-200d-2640-fe0f.svg","woman_playing_handball_tone1":"1f93e-1f3fb-200d-2640-fe0f.svg","woman_playing_handball_tone2":"1f93e-1f3fc-200d-2640-fe0f.svg","woman_playing_handball_tone3":"1f93e-1f3fd-200d-2640-fe0f.svg","woman_playing_handball_tone4":"1f93e-1f3fe-200d-2640-fe0f.svg","woman_playing_handball_tone5":"1f93e-1f3ff-200d-2640-fe0f.svg","woman_playing_water_polo":"1f93d-200d-2640-fe0f.svg","woman_playing_water_polo_tone1":"1f93d-1f3fb-200d-2640-fe0f.svg","woman_playing_water_polo_tone2":"1f93d-1f3fc-200d-2640-fe0f.svg","woman_playing_water_polo_tone3":"1f93d-1f3fd-200d-2640-fe0f.svg","woman_playing_water_polo_tone4":"1f93d-1f3fe-200d-2640-fe0f.svg","woman_playing_water_polo_tone5":"1f93d-1f3ff-200d-2640-fe0f.svg","woman_police_officer":"1f46e-200d-2640-fe0f.svg","woman_police_officer_tone1":"1f46e-1f3fb-200d-2640-fe0f.svg","woman_police_officer_tone2":"1f46e-1f3fc-200d-2640-fe0f.svg","woman_police_officer_tone3":"1f46e-1f3fd-200d-2640-fe0f.svg","woman_police_officer_tone4":"1f46e-1f3fe-200d-2640-fe0f.svg","woman_police_officer_tone5":"1f46e-1f3ff-200d-2640-fe0f.svg","woman_pouting":"1f64e-200d-2640-fe0f.svg","woman_pouting_tone1":"1f64e-1f3fb-200d-2640-fe0f.svg","woman_pouting_tone2":"1f64e-1f3fc-200d-2640-fe0f.svg","woman_pouting_tone3":"1f64e-1f3fd-200d-2640-fe0f.svg","woman_pouting_tone4":"1f64e-1f3fe-200d-2640-fe0f.svg","woman_pouting_tone5":"1f64e-1f3ff-200d-2640-fe0f.svg","woman_raising_hand":"1f64b-200d-2640-fe0f.svg","woman_raising_hand_tone1":"1f64b-1f3fb-200d-2640-fe0f.svg","woman_raising_hand_tone2":"1f64b-1f3fc-200d-2640-fe0f.svg","woman_raising_hand_tone3":"1f64b-1f3fd-200d-2640-fe0f.svg","woman_raising_hand_tone4":"1f64b-1f3fe-200d-2640-fe0f.svg","woman_raising_hand_tone5":"1f64b-1f3ff-200d-2640-fe0f.svg","woman_red_haired":"1f469-200d-1f9b0.svg","woman_red_haired_tone1":"1f469-1f3fb-200d-1f9b0.svg","woman_red_haired_tone2":"1f469-1f3fc-200d-1f9b0.svg","woman_red_haired_tone3":"1f469-1f3fd-200d-1f9b0.svg","woman_red_haired_tone4":"1f469-1f3fe-200d-1f9b0.svg","woman_red_haired_tone5":"1f469-1f3ff-200d-1f9b0.svg","woman_rowing_boat":"1f6a3-200d-2640-fe0f.svg","woman_rowing_boat_tone1":"1f6a3-1f3fb-200d-2640-fe0f.svg","woman_rowing_boat_tone2":"1f6a3-1f3fc-200d-2640-fe0f.svg","woman_rowing_boat_tone3":"1f6a3-1f3fd-200d-2640-fe0f.svg","woman_rowing_boat_tone4":"1f6a3-1f3fe-200d-2640-fe0f.svg","woman_rowing_boat_tone5":"1f6a3-1f3ff-200d-2640-fe0f.svg","woman_running":"1f3c3-200d-2640-fe0f.svg","woman_running_tone1":"1f3c3-1f3fb-200d-2640-fe0f.svg","woman_running_tone2":"1f3c3-1f3fc-200d-2640-fe0f.svg","woman_running_tone3":"1f3c3-1f3fd-200d-2640-fe0f.svg","woman_running_tone4":"1f3c3-1f3fe-200d-2640-fe0f.svg","woman_running_tone5":"1f3c3-1f3ff-200d-2640-fe0f.svg","woman_scientist":"1f469-200d-1f52c.svg","woman_scientist_tone1":"1f469-1f3fb-200d-1f52c.svg","woman_scientist_tone2":"1f469-1f3fc-200d-1f52c.svg","woman_scientist_tone3":"1f469-1f3fd-200d-1f52c.svg","woman_scientist_tone4":"1f469-1f3fe-200d-1f52c.svg","woman_scientist_tone5":"1f469-1f3ff-200d-1f52c.svg","woman_shrugging":"1f937-200d-2640-fe0f.svg","woman_shrugging_tone1":"1f937-1f3fb-200d-2640-fe0f.svg","woman_shrugging_tone2":"1f937-1f3fc-200d-2640-fe0f.svg","woman_shrugging_tone3":"1f937-1f3fd-200d-2640-fe0f.svg","woman_shrugging_tone4":"1f937-1f3fe-200d-2640-fe0f.svg","woman_shrugging_tone5":"1f937-1f3ff-200d-2640-fe0f.svg","woman_singer":"1f469-200d-1f3a4.svg","woman_singer_tone1":"1f469-1f3fb-200d-1f3a4.svg","woman_singer_tone2":"1f469-1f3fc-200d-1f3a4.svg","woman_singer_tone3":"1f469-1f3fd-200d-1f3a4.svg","woman_singer_tone4":"1f469-1f3fe-200d-1f3a4.svg","woman_singer_tone5":"1f469-1f3ff-200d-1f3a4.svg","woman_standing":"1f9cd-200d-2640-fe0f.svg","woman_standing_tone1":"1f9cd-1f3fb-200d-2640-fe0f.svg","woman_standing_tone2":"1f9cd-1f3fc-200d-2640-fe0f.svg","woman_standing_tone3":"1f9cd-1f3fd-200d-2640-fe0f.svg","woman_standing_tone4":"1f9cd-1f3fe-200d-2640-fe0f.svg","woman_standing_tone5":"1f9cd-1f3ff-200d-2640-fe0f.svg","woman_student":"1f469-200d-1f393.svg","woman_student_tone1":"1f469-1f3fb-200d-1f393.svg","woman_student_tone2":"1f469-1f3fc-200d-1f393.svg","woman_student_tone3":"1f469-1f3fd-200d-1f393.svg","woman_student_tone4":"1f469-1f3fe-200d-1f393.svg","woman_student_tone5":"1f469-1f3ff-200d-1f393.svg","woman_superhero":"1f9b8-200d-2640-fe0f.svg","woman_superhero_tone1":"1f9b8-1f3fb-200d-2640-fe0f.svg","woman_superhero_tone2":"1f9b8-1f3fc-200d-2640-fe0f.svg","woman_superhero_tone3":"1f9b8-1f3fd-200d-2640-fe0f.svg","woman_superhero_tone4":"1f9b8-1f3fe-200d-2640-fe0f.svg","woman_superhero_tone5":"1f9b8-1f3ff-200d-2640-fe0f.svg","woman_supervillain":"1f9b9-200d-2640-fe0f.svg","woman_supervillain_tone1":"1f9b9-1f3fb-200d-2640-fe0f.svg","woman_supervillain_tone2":"1f9b9-1f3fc-200d-2640-fe0f.svg","woman_supervillain_tone3":"1f9b9-1f3fd-200d-2640-fe0f.svg","woman_supervillain_tone4":"1f9b9-1f3fe-200d-2640-fe0f.svg","woman_supervillain_tone5":"1f9b9-1f3ff-200d-2640-fe0f.svg","woman_surfing":"1f3c4-200d-2640-fe0f.svg","woman_surfing_tone1":"1f3c4-1f3fb-200d-2640-fe0f.svg","woman_surfing_tone2":"1f3c4-1f3fc-200d-2640-fe0f.svg","woman_surfing_tone3":"1f3c4-1f3fd-200d-2640-fe0f.svg","woman_surfing_tone4":"1f3c4-1f3fe-200d-2640-fe0f.svg","woman_surfing_tone5":"1f3c4-1f3ff-200d-2640-fe0f.svg","woman_swimming":"1f3ca-200d-2640-fe0f.svg","woman_swimming_tone1":"1f3ca-1f3fb-200d-2640-fe0f.svg","woman_swimming_tone2":"1f3ca-1f3fc-200d-2640-fe0f.svg","woman_swimming_tone3":"1f3ca-1f3fd-200d-2640-fe0f.svg","woman_swimming_tone4":"1f3ca-1f3fe-200d-2640-fe0f.svg","woman_swimming_tone5":"1f3ca-1f3ff-200d-2640-fe0f.svg","woman_teacher":"1f469-200d-1f3eb.svg","woman_teacher_tone1":"1f469-1f3fb-200d-1f3eb.svg","woman_teacher_tone2":"1f469-1f3fc-200d-1f3eb.svg","woman_teacher_tone3":"1f469-1f3fd-200d-1f3eb.svg","woman_teacher_tone4":"1f469-1f3fe-200d-1f3eb.svg","woman_teacher_tone5":"1f469-1f3ff-200d-1f3eb.svg","woman_technologist":"1f469-200d-1f4bb.svg","woman_technologist_tone1":"1f469-1f3fb-200d-1f4bb.svg","woman_technologist_tone2":"1f469-1f3fc-200d-1f4bb.svg","woman_technologist_tone3":"1f469-1f3fd-200d-1f4bb.svg","woman_technologist_tone4":"1f469-1f3fe-200d-1f4bb.svg","woman_technologist_tone5":"1f469-1f3ff-200d-1f4bb.svg","woman_tipping_hand":"1f481-200d-2640-fe0f.svg","woman_tipping_hand_tone1":"1f481-1f3fb-200d-2640-fe0f.svg","woman_tipping_hand_tone2":"1f481-1f3fc-200d-2640-fe0f.svg","woman_tipping_hand_tone3":"1f481-1f3fd-200d-2640-fe0f.svg","woman_tipping_hand_tone4":"1f481-1f3fe-200d-2640-fe0f.svg","woman_tipping_hand_tone5":"1f481-1f3ff-200d-2640-fe0f.svg","woman_tone1":"1f469-1f3fb.svg","woman_tone1_beard":"1f9d4-1f3fb-200d-2640-fe0f.svg","woman_tone2":"1f469-1f3fc.svg","woman_tone2_beard":"1f9d4-1f3fc-200d-2640-fe0f.svg","woman_tone3":"1f469-1f3fd.svg","woman_tone3_beard":"1f9d4-1f3fd-200d-2640-fe0f.svg","woman_tone4":"1f469-1f3fe.svg","woman_tone4_beard":"1f9d4-1f3fe-200d-2640-fe0f.svg","woman_tone5":"1f469-1f3ff.svg","woman_tone5_beard":"1f9d4-1f3ff-200d-2640-fe0f.svg","woman_vampire":"1f9db-200d-2640-fe0f.svg","woman_vampire_tone1":"1f9db-1f3fb-200d-2640-fe0f.svg","woman_vampire_tone2":"1f9db-1f3fc-200d-2640-fe0f.svg","woman_vampire_tone3":"1f9db-1f3fd-200d-2640-fe0f.svg","woman_vampire_tone4":"1f9db-1f3fe-200d-2640-fe0f.svg","woman_vampire_tone5":"1f9db-1f3ff-200d-2640-fe0f.svg","woman_walking":"1f6b6-200d-2640-fe0f.svg","woman_walking_tone1":"1f6b6-1f3fb-200d-2640-fe0f.svg","woman_walking_tone2":"1f6b6-1f3fc-200d-2640-fe0f.svg","woman_walking_tone3":"1f6b6-1f3fd-200d-2640-fe0f.svg","woman_walking_tone4":"1f6b6-1f3fe-200d-2640-fe0f.svg","woman_walking_tone5":"1f6b6-1f3ff-200d-2640-fe0f.svg","woman_wearing_turban":"1f473-200d-2640-fe0f.svg","woman_wearing_turban_tone1":"1f473-1f3fb-200d-2640-fe0f.svg","woman_wearing_turban_tone2":"1f473-1f3fc-200d-2640-fe0f.svg","woman_wearing_turban_tone3":"1f473-1f3fd-200d-2640-fe0f.svg","woman_wearing_turban_tone4":"1f473-1f3fe-200d-2640-fe0f.svg","woman_wearing_turban_tone5":"1f473-1f3ff-200d-2640-fe0f.svg","woman_white_haired":"1f469-200d-1f9b3.svg","woman_white_haired_tone1":"1f469-1f3fb-200d-1f9b3.svg","woman_white_haired_tone2":"1f469-1f3fc-200d-1f9b3.svg","woman_white_haired_tone3":"1f469-1f3fd-200d-1f9b3.svg","woman_white_haired_tone4":"1f469-1f3fe-200d-1f9b3.svg","woman_white_haired_tone5":"1f469-1f3ff-200d-1f9b3.svg","woman_with_headscarf":"1f9d5.svg","woman_with_headscarf_tone1":"1f9d5-1f3fb.svg","woman_with_headscarf_tone2":"1f9d5-1f3fc.svg","woman_with_headscarf_tone3":"1f9d5-1f3fd.svg","woman_with_headscarf_tone4":"1f9d5-1f3fe.svg","woman_with_headscarf_tone5":"1f9d5-1f3ff.svg","woman_with_probing_cane":"1f469-200d-1f9af.svg","woman_with_probing_cane_tone1":"1f469-1f3fb-200d-1f9af.svg","woman_with_probing_cane_tone2":"1f469-1f3fc-200d-1f9af.svg","woman_with_probing_cane_tone3":"1f469-1f3fd-200d-1f9af.svg","woman_with_probing_cane_tone4":"1f469-1f3fe-200d-1f9af.svg","woman_with_probing_cane_tone5":"1f469-1f3ff-200d-1f9af.svg","woman_with_veil":"1f470-200d-2640-fe0f.svg","woman_with_veil_tone1":"1f470-1f3fb-200d-2640-fe0f.svg","woman_with_veil_tone2":"1f470-1f3fc-200d-2640-fe0f.svg","woman_with_veil_tone3":"1f470-1f3fd-200d-2640-fe0f.svg","woman_with_veil_tone4":"1f470-1f3fe-200d-2640-fe0f.svg","woman_with_veil_tone5":"1f470-1f3ff-200d-2640-fe0f.svg","woman_zombie":"1f9df-200d-2640-fe0f.svg","womans_clothes":"1f45a.svg","womans_flat_shoe":"1f97f.svg","womans_hat":"1f452.svg","women_holding_hands_tone1":"1f46d-1f3fb.svg","women_holding_hands_tone1_tone2":"1f469-1f3fb-200d-1f91d-200d-1f469-1f3fc.svg","women_holding_hands_tone1_tone3":"1f469-1f3fb-200d-1f91d-200d-1f469-1f3fd.svg","women_holding_hands_tone1_tone4":"1f469-1f3fb-200d-1f91d-200d-1f469-1f3fe.svg","women_holding_hands_tone1_tone5":"1f469-1f3fb-200d-1f91d-200d-1f469-1f3ff.svg","women_holding_hands_tone2":"1f46d-1f3fc.svg","women_holding_hands_tone2_tone1":"1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb.svg","women_holding_hands_tone2_tone3":"1f469-1f3fc-200d-1f91d-200d-1f469-1f3fd.svg","women_holding_hands_tone2_tone4":"1f469-1f3fc-200d-1f91d-200d-1f469-1f3fe.svg","women_holding_hands_tone2_tone5":"1f469-1f3fc-200d-1f91d-200d-1f469-1f3ff.svg","women_holding_hands_tone3":"1f46d-1f3fd.svg","women_holding_hands_tone3_tone1":"1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb.svg","women_holding_hands_tone3_tone2":"1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc.svg","women_holding_hands_tone3_tone4":"1f469-1f3fd-200d-1f91d-200d-1f469-1f3fe.svg","women_holding_hands_tone3_tone5":"1f469-1f3fd-200d-1f91d-200d-1f469-1f3ff.svg","women_holding_hands_tone4":"1f46d-1f3fe.svg","women_holding_hands_tone4_tone1":"1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb.svg","women_holding_hands_tone4_tone2":"1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc.svg","women_holding_hands_tone4_tone3":"1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd.svg","women_holding_hands_tone4_tone5":"1f469-1f3fe-200d-1f91d-200d-1f469-1f3ff.svg","women_holding_hands_tone5":"1f46d-1f3ff.svg","women_holding_hands_tone5_tone1":"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb.svg","women_holding_hands_tone5_tone2":"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc.svg","women_holding_hands_tone5_tone3":"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd.svg","women_holding_hands_tone5_tone4":"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe.svg","women_with_bunny_ears_partying":"1f46f-200d-2640-fe0f.svg","women_wrestling":"1f93c-200d-2640-fe0f.svg","womens":"1f6ba.svg","wood":"1fab5.svg","woozy_face":"1f974.svg","worm":"1fab1.svg","worried":"1f61f.svg","wrench":"1f527.svg","writing_hand":"270d.svg","writing_hand_tone1":"270d-1f3fb.svg","writing_hand_tone2":"270d-1f3fc.svg","writing_hand_tone3":"270d-1f3fd.svg","writing_hand_tone4":"270d-1f3fe.svg","writing_hand_tone5":"270d-1f3ff.svg","x":"274c.svg","x_ray":"1fa7b.svg","yarn":"1f9f6.svg","yawning_face":"1f971.svg","yellow_circle":"1f7e1.svg","yellow_heart":"1f49b.svg","yellow_square":"1f7e8.svg","yen":"1f4b4.svg","yin_yang":"262f.svg","yo_yo":"1fa80.svg","yum":"1f60b.svg","zany_face":"1f92a.svg","zap":"26a1.svg","zebra":"1f993.svg","zero":"30-20e3.svg","zipper_mouth":"1f910.svg","zombie":"1f9df.svg","zzz":"1f4a4.svg"}}}mkdocs-material-9.6.4/src/overrides/assets/javascripts/integrations/000077500000000000000000000000001475306445600257565ustar00rootroot00000000000000mkdocs-material-9.6.4/src/overrides/assets/javascripts/integrations/analytics/000077500000000000000000000000001475306445600277455ustar00rootroot00000000000000mkdocs-material-9.6.4/src/overrides/assets/javascripts/integrations/analytics/index.ts000066400000000000000000000033311475306445600314240ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { fromEvent } from "rxjs" /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Set up extra analytics events */ export function setupAnalytics(): void { const { origin } = new URL(location.href) fromEvent(document.body, "click") .subscribe(ev => { if (ev.target instanceof HTMLElement) { const el = ev.target.closest("a") if (el && el.origin !== origin) ga("send", "event", "outbound", "click", el.href) } }) } mkdocs-material-9.6.4/src/overrides/assets/javascripts/integrations/index.ts000066400000000000000000000022371475306445600274410ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ export * from "./analytics" mkdocs-material-9.6.4/src/overrides/assets/javascripts/templates/000077500000000000000000000000001475306445600252465ustar00rootroot00000000000000mkdocs-material-9.6.4/src/overrides/assets/javascripts/templates/iconsearch/000077500000000000000000000000001475306445600273645ustar00rootroot00000000000000mkdocs-material-9.6.4/src/overrides/assets/javascripts/templates/iconsearch/index.tsx000066400000000000000000000056271475306445600312450ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { wrap } from "fuzzaldrin-plus" import { translation } from "~/_" import { h } from "~/utilities" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Icon */ export interface Icon { shortcode: string /* Icon shortcode */ url: string /* Icon URL */ } /* ---------------------------------------------------------------------------- * Helper functions * ------------------------------------------------------------------------- */ /** * Highlight an icon search result * * @param icon - Icon * @param query - Search query * * @returns Highlighted result */ function highlight(icon: Icon, query: string): string { return wrap(icon.shortcode, query, { wrap: { tagOpen: "", tagClose: "" } }) } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Render an icon search result * * @param icon - Icon * @param query - Search query * @param file - Render as file * * @returns Element */ export function renderIconSearchResult( icon: Icon, query: string, file?: boolean ): HTMLElement { return (
  • ) } mkdocs-material-9.6.4/src/overrides/assets/javascripts/templates/index.ts000066400000000000000000000022761475306445600267340ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ export * from "./iconsearch" export * from "./sponsorship" mkdocs-material-9.6.4/src/overrides/assets/javascripts/templates/sponsorship/000077500000000000000000000000001475306445600276355ustar00rootroot00000000000000mkdocs-material-9.6.4/src/overrides/assets/javascripts/templates/sponsorship/index.tsx000066400000000000000000000040601475306445600315040ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { h } from "~/utilities" import { SponsorUser } from "_/components" /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Render public sponsor * * @param user - Sponsor user * * @returns Element */ export function renderPublicSponsor( user: SponsorUser ): HTMLElement { const title = `@${user.name}` return ( ) } /** * Render private sponsor * * @param count - Number of private sponsors * * @returns Element */ export function renderPrivateSponsor( count: number ): HTMLElement { return ( +{count} ) } mkdocs-material-9.6.4/src/overrides/assets/stylesheets/000077500000000000000000000000001475306445600232735ustar00rootroot00000000000000mkdocs-material-9.6.4/src/overrides/assets/stylesheets/custom.scss000066400000000000000000000034201475306445600255010ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Dependencies // ---------------------------------------------------------------------------- @import "material-color"; @import "material-shadows"; // ---------------------------------------------------------------------------- // Local imports // ---------------------------------------------------------------------------- @import "utilities/break"; @import "utilities/convert"; @import "config"; @import "custom/typeset"; @import "custom/layout/banner"; @import "custom/layout/hero"; @import "custom/layout/iconsearch"; @import "custom/layout/sponsorship"; mkdocs-material-9.6.4/src/overrides/assets/stylesheets/custom/000077500000000000000000000000001475306445600246055ustar00rootroot00000000000000mkdocs-material-9.6.4/src/overrides/assets/stylesheets/custom/_typeset.scss000066400000000000000000000150621475306445600273420ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Keyframes // ---------------------------------------------------------------------------- // Pumping heart animation @keyframes heart { 0%, 40%, 80%, 100% { transform: scale(1); } 20%, 60% { transform: scale(1.15); } } // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Scoped in typesetted content to match specificity of regular content .md-typeset { // Twitter icon .twitter { color: #00acee; } // Mastodon icon - it's not the exact brand color, because that doesn't work // well on dark backgrounds, so we lightened it up a bit. .mastodon { color: #897ff8; } // Insiders video .mdx-video { width: auto; // Insiders video container &__inner { position: relative; width: 100%; height: 0; padding-bottom: 56.138%; } // Insiders video iframe iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; border: none; } } // Pumping heart .mdx-heart { animation: heart 1000ms infinite; } // Insiders color (for links, etc.) // remove .mdx-insiders { color: $clr-pink-500; } // BETA ##################################################################### // Badge .mdx-badge { font-size: 0.85em; // Badge with heart &--heart { --md-typeset-a-color: hsla(#{hex2hsl($clr-pink-500)}, 1); --md-accent-fg-color: hsla(#{hex2hsl($clr-pink-a200)}, 1); --md-accent-fg-color--transparent: hsla(#{hex2hsl($clr-pink-500)}, 0.1); color: $clr-pink-500; // Animate icon .twemoji { animation: heart 1000ms infinite; } } // Badge moved to the right &--right { float: right; margin-left: 0.35em; } // Badge icon &__icon { padding: px2rem(4px); background: var(--md-accent-fg-color--transparent); border-start-start-radius: px2rem(2px); border-end-start-radius: px2rem(2px); // If icon is alone, round corners &:last-child { border-radius: px2rem(2px); } } // Badge text &__text { padding: px2rem(4px) px2rem(6px); border-start-end-radius: px2rem(2px); border-end-end-radius: px2rem(2px); box-shadow: 0 0 0 1px inset var(--md-accent-fg-color--transparent); } } // BETA ##################################################################### // Switch buttons .mdx-switch button { cursor: pointer; transition: opacity 250ms; // Button on focus/hover &:is(:focus, :hover) { opacity: 0.75; } // Code block > code { display: block; color: var(--md-primary-bg-color); background-color: var(--md-primary-fg-color); } } // Two-column layout .mdx-columns { // Column ol, ul { columns: 2; // [mobile portrait -]: Reset columns on mobile @include break-to-device(mobile portrait) { columns: initial; } } // Column item li { break-inside: avoid; } } // Language list .mdx-flags { margin: 2em auto; // Language list ol { list-style: none; // Language list item li { margin-bottom: 1em; } } // Language item &__item { display: flex; gap: px2rem(12px); } // Language content &__content { display: flex; flex: 1; flex-direction: column; // Language name span { display: inline-flex; align-items: baseline; justify-content: space-between; } // Language link > span:nth-child(2) { font-size: 80%; } // Language code code { float: right; } } } // Social card .mdx-social { position: relative; height: min(#{px2rem(540px)}, 80vw); // Social card image on hover &:hover .mdx-social__image { background-color: rgba(228, 228, 228, 0.05); } // Social card layer &__layer { position: absolute; margin-top: px2rem(80px); transition: 250ms cubic-bezier(0.7, 0, 0.3, 1); transform-style: preserve-3d; // Social card layer on hover &:hover { // Social card label .mdx-social__label { opacity: 1; } // Social card image .mdx-social__image { background-color: rgba(127, 127, 127, 0.99); } // Hide top layers ~ .mdx-social__layer { opacity: 0; } } } // Social card image &__image { box-shadow: px2rem(-5px) px2rem(5px) px2rem(10px) rgba(0, 0, 0, 0.05); transition: all 250ms; transform: rotate(-40deg) skew(15deg, 15deg) scale(0.7); // Actual image img { display: block; } } // Social card label &__label { position: absolute; display: block; padding: px2rem(4px) px2rem(8px); color: var(--md-default-bg-color); background-color: var(--md-default-fg-color--light); opacity: 0; transition: all 250ms; } // Transform on hover @for $i from 6 through 0 { &:hover .mdx-social__layer:nth-child(#{$i}) { transform: translateY(#{($i - 3) * -10}px); } } } } mkdocs-material-9.6.4/src/overrides/assets/stylesheets/custom/layout/000077500000000000000000000000001475306445600261225ustar00rootroot00000000000000mkdocs-material-9.6.4/src/overrides/assets/stylesheets/custom/layout/_banner.scss000066400000000000000000000040441475306445600304250ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Banner for announcements and warnings .md-banner { color: var(--md-footer-fg-color--lighter); // Don't wrap name of blog article strong { color: var(--md-footer-fg-color); white-space: nowrap; } a { color: var(--md-footer-fg-color); &:focus, &:hover { color: currentcolor; .twemoji { background-color: var(--md-footer-fg-color); box-shadow: none; } } } .twemoji { display: inline-block; width: px2rem(24px); height: px2rem(24px); padding: px2rem(5px); vertical-align: bottom; border-radius: 100%; box-shadow: 0 0 0 px2rem(1px) currentcolor inset; transition: all 250ms; svg { display: block; max-height: initial; } } } mkdocs-material-9.6.4/src/overrides/assets/stylesheets/custom/layout/_hero.scss000066400000000000000000000075701475306445600301240ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Landing page container .mdx-container { padding-top: px2rem(20px); background: url("data:image/svg+xml;utf8,") no-repeat bottom, linear-gradient( to bottom, var(--md-primary-fg-color), hsla(280, 67%, 55%, 1) 99%, var(--md-default-bg-color) 99% ); // Adjust background for slate theme [data-md-color-scheme="slate"] & { background: url("data:image/svg+xml;utf8,") no-repeat bottom, linear-gradient( to bottom, var(--md-primary-fg-color), hsla(230, 15%, 25%, 1) 99%, var(--md-default-bg-color) 99% ); } } // Landing page hero .mdx-hero { margin: 0 px2rem(16px); color: var(--md-primary-bg-color); // Hero headline h1 { margin-bottom: px2rem(20px); font-weight: 700; color: currentcolor; // [mobile portrait -]: Larger hero headline @include break-to-device(mobile portrait) { font-size: px2rem(28px); } } // Hero content &__content { padding-bottom: px2rem(120px); } // [tablet landscape +]: Columnar display @include break-from-device(tablet landscape) { display: flex; align-items: stretch; // Adjust spacing and set dimensions &__content { max-width: px2rem(380px); padding-bottom: 14vw; margin-top: px2rem(70px); } // Hero image &__image { order: 1; width: px2rem(760px); transform: translateX(#{px2rem(80px)}); } } // [screen +]: Columnar display and adjusted spacing @include break-from-device(screen) { // Hero image &__image { transform: translateX(#{px2rem(160px)}); } } // Button .md-button { margin-top: px2rem(10px); margin-right: px2rem(10px); color: var(--md-primary-bg-color); // Button on focus/hover &:is(:focus, :hover) { color: var(--md-accent-bg-color); background-color: var(--md-accent-fg-color); border-color: var(--md-accent-fg-color); } // Primary button &--primary { color: hsla(280, 37%, 48%, 1); background-color: var(--md-primary-bg-color); border-color: var(--md-primary-bg-color); } } } mkdocs-material-9.6.4/src/overrides/assets/stylesheets/custom/layout/_iconsearch.scss000066400000000000000000000114521475306445600312770ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Scoped in typesetted content to match specificity of regular content .md-typeset { // Icon search .mdx-iconsearch { position: relative; background-color: var(--md-default-bg-color); border-radius: px2rem(2px); box-shadow: var(--md-shadow-z1); transition: box-shadow 125ms; // Icon search on focus/hover &:is(:focus-within, :hover) { box-shadow: var(--md-shadow-z2); } // Icon search input .md-input { background: var(--md-default-bg-color); box-shadow: none; // Slate theme, i.e. dark mode [data-md-color-scheme="slate"] & { background: var(--md-code-bg-color); } } } // Icon search result .mdx-iconsearch-result { max-height: 50vh; overflow-y: auto; // Hack: promote to own layer to reduce jitter backface-visibility: hidden; touch-action: pan-y; scrollbar-color: var(--md-default-fg-color--lighter) transparent; scrollbar-width: thin; // Icon search result inside tooltip .md-tooltip & { max-height: px2rem(205px); } // Webkit scrollbar &::-webkit-scrollbar { width: px2rem(4px); height: px2rem(4px); } // Webkit scrollbar thumb &::-webkit-scrollbar-thumb { background-color: var(--md-default-fg-color--lighter); // Webkit scrollbar thumb on hover &:hover { background-color: var(--md-accent-fg-color); } } // Icon search result metadata &__meta { position: absolute; top: px2rem(8px); right: px2rem(12px); font-size: px2rem(12.8px); color: var(--md-default-fg-color--lighter); // [mobile portrait -]: Hide meta @include break-to-device(mobile portrait) { display: none; } } // Icon search result select &__select { position: absolute; top: px2rem(8px); right: px2rem(12px); padding-block: 0.15em; font-size: px2rem(12.8px); color: var(--md-default-fg-color--light); background-color: var(--md-default-fg-color--lightest); border: none; border-radius: px2rem(2px); transition: color 125ms, background-color 125ms; // Focused or hovered &:focus, &:hover { color: var(--md-accent-bg-color); background-color: var(--md-accent-fg-color); outline: none; } // Adjust spacing + .mdx-iconsearch-result__meta { right: px2rem(82px); } } // Icon search result list &__list { padding: 0; margin: 0; // Hack: necessary because of increased specificity due to the PostCSS // plugin which prefixes this with `[dir=...]` selectors. margin-inline-start: 0; list-style: none; } // Icon search result item &__item { padding: px2rem(4px) px2rem(12px); margin: 0; // Hack: necessary because of increased specificity due to the PostCSS // plugin which prefixes this with `[dir=...]` selectors. margin-inline-start: 0; border-bottom: px2rem(1px) solid var(--md-default-fg-color--lightest); // Omit border on last child &:last-child { border-bottom: none; } // Item content > * { margin-right: px2rem(12px); } // Set icon dimensions to fit img { width: px2rem(18px); height: px2rem(18px); // Slate theme, i.e. dark mode [data-md-color-scheme="slate"] &[src*="squidfunk"] { filter: invert(1); /* stylelint-disable-line */ } } } } } mkdocs-material-9.6.4/src/overrides/assets/stylesheets/custom/layout/_sponsorship.scss000066400000000000000000000063211475306445600315470ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Scoped in typesetted content to match specificity of regular content .md-typeset { // Premium sponsors .mdx-premium { // Paragraphs p { margin: 2em 0; text-align: center; } // Premium sponsor image img { height: px2rem(65px); } // Premium sponsor list p:last-child { display: flex; flex-wrap: wrap; justify-content: center; // Premium sponsor link > a { display: block; flex-shrink: 0; } } } // Sponsorship .mdx-sponsorship { // Sponsorship list &__list { margin: 2em 0; // Clearfix, because we can't use overflow: auto &::after { display: block; clear: both; content: ""; } } // Sponsorship item &__item { display: block; float: inline-start; width: px2rem(32px); height: px2rem(32px); margin: px2rem(4px); overflow: hidden; border-radius: 100%; transition: color 125ms, transform 125ms; transform: scale(1); // Sponsor item on focus/hover &:is(:focus, :hover) { transform: scale(1.1); // Sponsor avatar img { filter: grayscale(0%); } } // Private sponsor &--private { font-size: px2rem(12px); font-weight: 700; line-height: px2rem(32px); color: var(--md-default-fg-color--lighter); text-align: center; background: var(--md-default-fg-color--lightest); } // Sponsor avatar img { display: block; width: 100%; height: auto; filter: grayscale(100%) opacity(75%); transition: filter 125ms; } } } // Sponsorship button .mdx-sponsorship-button { font-weight: 400; } // Sponsorship count and total .mdx-sponsorship-count, .mdx-sponsorship-total { font-weight: 700; } } mkdocs-material-9.6.4/src/overrides/home.html000066400000000000000000000057541475306445600212460ustar00rootroot00000000000000 {% extends "main.html" %} {% block tabs %} {{ super() }}

    Technical documentation that just works

    {{ config.site_description }}. Set up in 5 minutes.

    Quick start Get Insiders
    {% endblock %} {% block content %}{% endblock %} {% block footer %}{% endblock %} mkdocs-material-9.6.4/src/overrides/hooks/000077500000000000000000000000001475306445600205405ustar00rootroot00000000000000mkdocs-material-9.6.4/src/overrides/hooks/shortcodes.py000066400000000000000000000260311475306445600232710ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations import posixpath import re from mkdocs.config.defaults import MkDocsConfig from mkdocs.structure.files import File, Files from mkdocs.structure.pages import Page from re import Match # ----------------------------------------------------------------------------- # Hooks # ----------------------------------------------------------------------------- # @todo def on_page_markdown( markdown: str, *, page: Page, config: MkDocsConfig, files: Files ): # Replace callback def replace(match: Match): type, args = match.groups() args = args.strip() if type == "version": if args.startswith("insiders-"): return _badge_for_version_insiders(args, page, files) else: return _badge_for_version(args, page, files) elif type == "sponsors": return _badge_for_sponsors(page, files) elif type == "flag": return flag(args, page, files) elif type == "option": return option(args) elif type == "setting": return setting(args) elif type == "feature": return _badge_for_feature(args, page, files) elif type == "plugin": return _badge_for_plugin(args, page, files) elif type == "extension": return _badge_for_extension(args, page, files) elif type == "utility": return _badge_for_utility(args, page, files) elif type == "example": return _badge_for_example(args, page, files) elif type == "demo": return _badge_for_demo(args, page, files) elif type == "default": if args == "none": return _badge_for_default_none(page, files) elif args == "computed": return _badge_for_default_computed(page, files) else: return _badge_for_default(args, page, files) # Otherwise, raise an error raise RuntimeError(f"Unknown shortcode: {type}") # Find and replace all external asset URLs in current page return re.sub( r"", replace, markdown, flags = re.I | re.M ) # ----------------------------------------------------------------------------- # Helper functions # ----------------------------------------------------------------------------- # Create a flag of a specific type def flag(args: str, page: Page, files: Files): type, *_ = args.split(" ", 1) if type == "experimental": return _badge_for_experimental(page, files) elif type == "required": return _badge_for_required(page, files) elif type == "customization": return _badge_for_customization(page, files) elif type == "metadata": return _badge_for_metadata(page, files) elif type == "multiple": return _badge_for_multiple(page, files) raise RuntimeError(f"Unknown type: {type}") # Create a linkable option def option(type: str): _, *_, name = re.split(r"[.:]", type) return f"[`{name}`](#+{type}){{ #+{type} }}\n\n" # Create a linkable setting - @todo append them to the bottom of the page def setting(type: str): _, *_, name = re.split(r"[.*]", type) return f"`{name}` {{ #{type} }}\n\n[{type}]: #{type}\n\n" # ----------------------------------------------------------------------------- # Resolve path of file relative to given page - the posixpath always includes # one additional level of `..` which we need to remove def _resolve_path(path: str, page: Page, files: Files): path, anchor, *_ = f"{path}#".split("#") path = _resolve(files.get_file_from_path(path), page) return "#".join([path, anchor]) if anchor else path # Resolve path of file relative to given page - the posixpath always includes # one additional level of `..` which we need to remove def _resolve(file: File, page: Page): path = posixpath.relpath(file.src_uri, page.file.src_uri) return posixpath.sep.join(path.split(posixpath.sep)[1:]) # ----------------------------------------------------------------------------- # Create badge def _badge(icon: str, text: str = "", type: str = ""): classes = f"mdx-badge mdx-badge--{type}" if type else "mdx-badge" return "".join([ f"", *([f"{icon}"] if icon else []), *([f"{text}"] if text else []), f"", ]) # Create sponsors badge def _badge_for_sponsors(page: Page, files: Files): icon = "material-heart" href = _resolve_path("insiders/index.md", page, files) return _badge( icon = f"[:{icon}:]({href} 'Sponsors only')", type = "heart" ) # Create badge for version def _badge_for_version(text: str, page: Page, files: Files): spec = text path = f"changelog/index.md#{spec}" # Return badge icon = "material-tag-outline" href = _resolve_path("conventions.md#version", page, files) return _badge( icon = f"[:{icon}:]({href} 'Minimum version')", text = f"[{text}]({_resolve_path(path, page, files)})" if spec else "" ) # Create badge for version of Insiders def _badge_for_version_insiders(text: str, page: Page, files: Files): spec = text.replace("insiders-", "") path = f"insiders/changelog/index.md#{spec}" # Return badge icon = "material-tag-heart-outline" href = _resolve_path("conventions.md#version-insiders", page, files) return _badge( icon = f"[:{icon}:]({href} 'Minimum version')", text = f"[{text}]({_resolve_path(path, page, files)})" if spec else "" ) # Create badge for feature def _badge_for_feature(text: str, page: Page, files: Files): icon = "material-toggle-switch" href = _resolve_path("conventions.md#feature", page, files) return _badge( icon = f"[:{icon}:]({href} 'Optional feature')", text = text ) # Create badge for plugin def _badge_for_plugin(text: str, page: Page, files: Files): icon = "material-floppy" href = _resolve_path("conventions.md#plugin", page, files) return _badge( icon = f"[:{icon}:]({href} 'Plugin')", text = text ) # Create badge for extension def _badge_for_extension(text: str, page: Page, files: Files): icon = "material-language-markdown" href = _resolve_path("conventions.md#extension", page, files) return _badge( icon = f"[:{icon}:]({href} 'Markdown extension')", text = text ) # Create badge for utility def _badge_for_utility(text: str, page: Page, files: Files): icon = "material-package-variant" href = _resolve_path("conventions.md#utility", page, files) return _badge( icon = f"[:{icon}:]({href} 'Third-party utility')", text = text ) # Create badge for example def _badge_for_example(text: str, page: Page, files: Files): return "\n".join([ _badge_for_example_download(text, page, files), _badge_for_example_view(text, page, files) ]) # Create badge for example view def _badge_for_example_view(text: str, page: Page, files: Files): icon = "material-folder-eye" href = f"https://mkdocs-material.github.io/examples/{text}/" return _badge( icon = f"[:{icon}:]({href} 'View example')", type = "right" ) # Create badge for example download def _badge_for_example_download(text: str, page: Page, files: Files): icon = "material-folder-download" href = f"https://mkdocs-material.github.io/examples/{text}.zip" return _badge( icon = f"[:{icon}:]({href} 'Download example files')", text = f"[`.zip`]({href})", type = "right" ) # Create badge for demo repository def _badge_for_demo(text: str, page: Page, files: Files): icon = "material-github" href = f"https://github.com/mkdocs-material/{text}" return _badge( icon = f"[:{icon}:]({href} 'Demo repository')", text = text, type = "right" ) # Create badge for default value def _badge_for_default(text: str, page: Page, files: Files): icon = "material-water" href = _resolve_path("conventions.md#default", page, files) return _badge( icon = f"[:{icon}:]({href} 'Default value')", text = text ) # Create badge for empty default value def _badge_for_default_none(page: Page, files: Files): icon = "material-water-outline" href = _resolve_path("conventions.md#default", page, files) return _badge( icon = f"[:{icon}:]({href} 'Default value is empty')" ) # Create badge for computed default value def _badge_for_default_computed(page: Page, files: Files): icon = "material-water-check" href = _resolve_path("conventions.md#default", page, files) return _badge( icon = f"[:{icon}:]({href} 'Default value is computed')" ) # Create badge for metadata property flag def _badge_for_metadata(page: Page, files: Files): icon = "material-list-box-outline" href = _resolve_path("conventions.md#metadata", page, files) return _badge( icon = f"[:{icon}:]({href} 'Metadata property')" ) # Create badge for required value flag def _badge_for_required(page: Page, files: Files): icon = "material-alert" href = _resolve_path("conventions.md#required", page, files) return _badge( icon = f"[:{icon}:]({href} 'Required value')" ) # Create badge for customization flag def _badge_for_customization(page: Page, files: Files): icon = "material-brush-variant" href = _resolve_path("conventions.md#customization", page, files) return _badge( icon = f"[:{icon}:]({href} 'Customization')" ) # Create badge for multiple instance flag def _badge_for_multiple(page: Page, files: Files): icon = "material-inbox-multiple" href = _resolve_path("conventions.md#multiple-instances", page, files) return _badge( icon = f"[:{icon}:]({href} 'Multiple instances')" ) # Create badge for experimental flag def _badge_for_experimental(page: Page, files: Files): icon = "material-flask-outline" href = _resolve_path("conventions.md#experimental", page, files) return _badge( icon = f"[:{icon}:]({href} 'Experimental')" )mkdocs-material-9.6.4/src/overrides/hooks/translations.html000066400000000000000000000037441475306445600241570ustar00rootroot00000000000000 {% macro render_language(language) %}
    :flag_{{ language.flag }}:{ .lg .middle } {{ language.name }} {{ language.code }} {% if language.miss %} {{ language.miss | length }} translations missing {% else %} Complete {% endif %}
    {% endmacro %} {% macro render(translations, start = 1) %}
      {% for language in translations %}
    1. {{ render_language(language) }}
    2. {% endfor %}
    {% endmacro %} mkdocs-material-9.6.4/src/overrides/hooks/translations.py000066400000000000000000000134041475306445600236350ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. import os import re from glob import iglob from mkdocs.config.defaults import MkDocsConfig from mkdocs.structure.pages import Page from urllib.parse import urlencode, urlparse # ----------------------------------------------------------------------------- # Hooks # ----------------------------------------------------------------------------- # Determine missing translations and render language overview in the setup # guide, including links to provide missing translations. def on_page_markdown(markdown: str, *, page: Page, config: MkDocsConfig, files): issue_url = "https://github.com/squidfunk/mkdocs-material/issues/new" if page.file.src_uri != "setup/changing-the-language.md": return # Collect all existing languages names: dict[str, str] = {} known: dict[str, dict[str, str]] = {} for path in iglob("src/templates/partials/languages/*.html"): with open(path, "r", encoding = "utf-8") as f: data = f.read() # Extract language code and name name, = re.findall(r"", data) code, _ = os.path.splitext(os.path.basename(path)) # Map names and available translations names[code] = name known[code] = dict(re.findall( r"^ \"([^\"]+)\": \"([^\"]*)\"(?:,|$)?", data, re.MULTILINE )) # Remove technical stuff for key in [ "direction", "search.config.pipeline", "search.config.lang", "search.config.separator" ]: if key in known[code]: del known[code][key] # Traverse all languages and compute missing translations languages = [] reference = set(known["en"]) for code, name in names.items(): miss = reference - set(known[code]) # Check each translations translations: list[str] = [] for key, value in known["en"].items(): if key in known[code]: translations.append( f" \"{key}\": \"{known[code][key]}\"" ) else: translations.append( f" \"{key}\": \"{value} ⬅️\"" ) # Assemble GitHub issue URL link = urlparse(issue_url) link = link._replace(query = urlencode({ "template": "04-add-translations.yml", "title": f"Update {name} translations", "translations": "\n".join([ "{% macro t(key) %}{{ {", ",\n".join(translations), "}[key] }}{% endmacro %}" ]), "country-flag": f":flag_{countries[code]}:" })) # Add translation languages.append({ "flag": countries[code], "code": code, "name": name, "link": link.geturl(), "miss": miss }) # Load template and render translations env = config.theme.get_env() template = env.get_template( "hooks/translations.html") translations = template.module.render( sorted(languages, key = lambda language: language["name"]) ) # Replace translation marker return markdown.replace( "", "\n".join( [line.lstrip() for line in translations.split("\n") ] )) # ----------------------------------------------------------------------------- # Data # ----------------------------------------------------------------------------- # Map ISO 639-1 (languages) to ISO 3166 (countries) countries = { "af": "za", "az": "az", "ar": "ae", "be": "by", "bg": "bg", "bn": "bd", "ca": "es", "cs": "cz", "da": "dk", "de": "de", "el": "gr", "en": "us", "eo": "eu", "es": "es", "et": "ee", "eu": "es", "fa": "ir", "fi": "fi", "fr": "fr", "gl": "es", "he": "il", "hi": "in", "hr": "hr", "hu": "hu", "hy": "am", "id": "id", "is": "is", "it": "it", "ja": "jp", "ka": "ge", "kn": "in", "ko": "kr", "ku-IQ": "iq", "lb": "lu", "lt": "lt", "lv": "lv", "mk": "mk", "mn": "mn", "ms": "my", "my": "mm", "nb": "no", "nl": "nl", "nn": "no", "pl": "pl", "pt-BR": "br", "pt": "pt", "ro": "ro", "ru": "ru", "sa": "in", "sh": "rs", "sq": "al", "si": "lk", "sk": "sk", "sl": "si", "sr": "rs", "sv": "se", "te": "in", "th": "th", "ta": "in", "tl": "ph", "tr": "tr", "uk": "ua", "ur": "pk", "uz": "uz", "vi": "vn", "zh": "cn", "zh-Hant": "cn", "zh-TW": "tw" } mkdocs-material-9.6.4/src/overrides/main.html000066400000000000000000000041251475306445600212310ustar00rootroot00000000000000 {% extends "base.html" %} {% block extrahead %} {% endblock %} {% block announce %} For updates follow @squidfunk on {% include ".icons/fontawesome/brands/mastodon.svg" %} Fosstodon and Twitter {% endblock %} {% block scripts %} {{ super() }} {% endblock %} mkdocs-material-9.6.4/src/plugins/000077500000000000000000000000001475306445600170745ustar00rootroot00000000000000mkdocs-material-9.6.4/src/plugins/__init__.py000066400000000000000000000021451475306445600212070ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. mkdocs-material-9.6.4/src/plugins/blog/000077500000000000000000000000001475306445600200175ustar00rootroot00000000000000mkdocs-material-9.6.4/src/plugins/blog/__init__.py000066400000000000000000000021451475306445600221320ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. mkdocs-material-9.6.4/src/plugins/blog/author.py000066400000000000000000000033321475306445600216740ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from mkdocs.config.base import Config from mkdocs.config.config_options import DictOfItems, Optional, SubConfig, Type # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Author class Author(Config): name = Type(str) description = Type(str) avatar = Type(str) slug = Optional(Type(str)) url = Optional(Type(str)) # ----------------------------------------------------------------------------- # Authors class Authors(Config): authors = DictOfItems(SubConfig(Author), default = {}) mkdocs-material-9.6.4/src/plugins/blog/config.py000066400000000000000000000076341475306445600216500ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from collections.abc import Callable from mkdocs.config.config_options import Choice, Deprecated, Optional, Type from mkdocs.config.base import Config from pymdownx.slugs import slugify # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Blog plugin configuration class BlogConfig(Config): enabled = Type(bool, default = True) # Settings for blog blog_dir = Type(str, default = "blog") blog_toc = Type(bool, default = False) # Settings for posts post_dir = Type(str, default = "{blog}/posts") post_date_format = Type(str, default = "long") post_url_date_format = Type(str, default = "yyyy/MM/dd") post_url_format = Type(str, default = "{date}/{slug}") post_url_max_categories = Type(int, default = 1) post_slugify = Type(Callable, default = slugify(case = "lower")) post_slugify_separator = Type(str, default = "-") post_excerpt = Choice(["optional", "required"], default = "optional") post_excerpt_max_authors = Type(int, default = 1) post_excerpt_max_categories = Type(int, default = 5) post_excerpt_separator = Type(str, default = "") post_readtime = Type(bool, default = True) post_readtime_words_per_minute = Type(int, default = 265) # Settings for archive archive = Type(bool, default = True) archive_name = Type(str, default = "blog.archive") archive_date_format = Type(str, default = "yyyy") archive_url_date_format = Type(str, default = "yyyy") archive_url_format = Type(str, default = "archive/{date}") archive_toc = Optional(Type(bool)) # Settings for categories categories = Type(bool, default = True) categories_name = Type(str, default = "blog.categories") categories_url_format = Type(str, default = "category/{slug}") categories_slugify = Type(Callable, default = slugify(case = "lower")) categories_slugify_separator = Type(str, default = "-") categories_allowed = Type(list, default = []) categories_toc = Optional(Type(bool)) # Settings for authors authors = Type(bool, default = True) authors_file = Type(str, default = "{blog}/.authors.yml") # Settings for pagination pagination = Type(bool, default = True) pagination_per_page = Type(int, default = 10) pagination_url_format = Type(str, default = "page/{page}") pagination_format = Type(str, default = "~2~") pagination_if_single_page = Type(bool, default = False) pagination_keep_content = Type(bool, default = False) # Settings for drafts draft = Type(bool, default = False) draft_on_serve = Type(bool, default = True) draft_if_future_date = Type(bool, default = False) # Deprecated settings pagination_template = Deprecated(moved_to = "pagination_format") mkdocs-material-9.6.4/src/plugins/blog/plugin.py000066400000000000000000001207051475306445600216740ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations import logging import os import posixpath import yaml from babel.dates import format_date, format_datetime from copy import copy from datetime import datetime, timezone from jinja2 import pass_context from jinja2.runtime import Context from mkdocs.config.defaults import MkDocsConfig from mkdocs.exceptions import PluginError from mkdocs.plugins import BasePlugin, event_priority from mkdocs.structure import StructureItem from mkdocs.structure.files import File, Files, InclusionLevel from mkdocs.structure.nav import Link, Navigation, Section from mkdocs.structure.pages import Page from mkdocs.structure.toc import AnchorLink, TableOfContents from mkdocs.utils import copy_file, get_relative_url from paginate import Page as Pagination from shutil import rmtree from tempfile import mkdtemp from urllib.parse import urlparse from yaml import SafeLoader from .author import Authors from .config import BlogConfig from .readtime import readtime from .structure import Archive, Category, Excerpt, Post, Reference, View # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Blog plugin class BlogPlugin(BasePlugin[BlogConfig]): supports_multiple_instances = True # Initialize plugin def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) # Initialize incremental builds self.is_serve = False self.is_dirty = False # Initialize temporary directory self.temp_dir = mkdtemp() # Determine whether we're serving the site def on_startup(self, *, command, dirty): self.is_serve = command == "serve" self.is_dirty = dirty # Initialize authors and set defaults def on_config(self, config): if not self.config.enabled: return # Initialize entrypoint self.blog: View # Initialize and resolve authors, if enabled if self.config.authors: self.authors = self._resolve_authors(config) # Initialize table of contents settings if not isinstance(self.config.archive_toc, bool): self.config.archive_toc = self.config.blog_toc if not isinstance(self.config.categories_toc, bool): self.config.categories_toc = self.config.blog_toc # By default, drafts are rendered when the documentation is served, # but not when it is built, for a better user experience if self.is_serve and self.config.draft_on_serve: self.config.draft = True # Resolve and load posts and generate views (run later) - we want to allow # other plugins to add generated posts or views, so we run this plugin as # late as possible. We also need to remove the posts from the navigation # before navigation is constructed, as the entrypoint should be considered # to be the active page for each post. The URLs of posts are computed before # Markdown processing, so that when linking to and from posts, behavior is # exactly the same as with regular documentation pages. We create all pages # related to posts as part of this plugin, so we control the entire process. @event_priority(-50) def on_files(self, files, *, config): if not self.config.enabled: return # Resolve path to entrypoint and site directory root = posixpath.normpath(self.config.blog_dir) site = config.site_dir # Compute and normalize path to posts directory path = self.config.post_dir.format(blog = root) path = posixpath.normpath(path) # Adjust destination paths for media files for file in files.media_files(): if not file.src_uri.startswith(path): continue # We need to adjust destination paths for assets to remove the # purely functional posts directory prefix when building file.dest_uri = file.dest_uri.replace(path, root) file.abs_dest_path = os.path.join(site, file.dest_path) file.url = file.url.replace(path, root) # Resolve entrypoint and posts sorted by descending date - if the posts # directory or entrypoint do not exist, they are automatically created self.blog = self._resolve(files, config) self.blog.posts = sorted( self._resolve_posts(files, config), key = lambda post: post.config.date.created, reverse = True ) # Generate views for archive if self.config.archive: self.blog.views.extend( self._generate_archive(config, files) ) # Generate views for categories if self.config.categories: self.blog.views.extend(sorted( self._generate_categories(config, files), key = lambda view: view.name, reverse = False )) # Generate pages for views if self.config.pagination: for view in self._resolve_views(self.blog): for page in self._generate_pages(view, config, files): view.pages.append(page) # Ensure that entrypoint is always included in navigation self.blog.file.inclusion = InclusionLevel.INCLUDED # Attach posts and views to navigation (run later) - again, we allow other # plugins to alter the navigation before we start to attach posts and views # generated by this plugin at the correct locations in the navigation. Also, # we make sure to correct links to the parent and siblings of each page. @event_priority(-50) def on_nav(self, nav, *, config, files): if not self.config.enabled: return # If we're not building a standalone blog, the entrypoint will always # have a parent when it is included in the navigation. The parent is # essential to correctly resolve the location where the archive and # category views are attached. If the entrypoint doesn't have a parent, # we know that the author did not include it in the navigation, so we # explicitly mark it as not included. if not self.blog.parent and self.config.blog_dir != ".": self.blog.file.inclusion = InclusionLevel.NOT_IN_NAV # Attach posts to entrypoint without adding them to the navigation, so # that the entrypoint is considered to be the active page for each post self._attach(self.blog, [None, *reversed(self.blog.posts), None]) for post in self.blog.posts: post.file.inclusion = InclusionLevel.NOT_IN_NAV # Revert temporary exclusion of views from navigation for view in self._resolve_views(self.blog): view.file.inclusion = self.blog.file.inclusion for page in view.pages: page.file.inclusion = self.blog.file.inclusion # Attach views for archive if self.config.archive: title = self._translate(self.config.archive_name, config) views = [_ for _ in self.blog.views if isinstance(_, Archive)] # Attach and link views for archive if self.blog.file.inclusion.is_in_nav(): self._attach_to(self.blog, Section(title, views), nav) # Attach views for categories if self.config.categories: title = self._translate(self.config.categories_name, config) views = [_ for _ in self.blog.views if isinstance(_, Category)] # Attach and link views for categories, if any if self.blog.file.inclusion.is_in_nav() and views: self._attach_to(self.blog, Section(title, views), nav) # Attach pages for views if self.config.pagination: for view in self._resolve_views(self.blog): for at in range(1, len(view.pages)): self._attach_at(view.parent, view, view.pages[at]) # Prepare post for rendering (run later) - allow other plugins to alter # the contents or metadata of a post before it is rendered and make sure # that the post includes a separator, which is essential for rendering # excerpts that should be included in views @event_priority(-50) def on_page_markdown(self, markdown, *, page, config, files): if not self.config.enabled: return # Skip if page is not a post managed by this instance - this plugin has # support for multiple instances, which is why this check is necessary if page not in self.blog.posts: if not self.config.pagination: return # We set the contents of the view to its title if pagination should # not keep the content of the original view on paginated views if not self.config.pagination_keep_content: view = self._resolve_original(page) if view in self._resolve_views(self.blog): # If the current view is paginated, use the rendered title # of the original view in case the author set the title in # the page's contents, or it would be overridden with the # one set in mkdocs.yml, leading to inconsistent headings assert isinstance(view, View) if view != page: name = view._title_from_render or view.title return f"# {name}" # Nothing more to be done for views return # Extract and assign authors to post, if enabled if self.config.authors: for name in page.config.authors: if name not in self.authors: raise PluginError(f"Couldn't find author '{name}'") # Append to list of authors page.authors.append(self.authors[name]) # Extract settings for excerpts separator = self.config.post_excerpt_separator max_authors = self.config.post_excerpt_max_authors max_categories = self.config.post_excerpt_max_categories # Ensure presence of separator and throw, if its absent and required - # we append the separator to the end of the contents of the post, if it # is not already present, so we can remove footnotes or other content # from the excerpt without affecting the content of the excerpt if separator not in page.markdown: if self.config.post_excerpt == "required": docs = os.path.relpath(config.docs_dir) path = os.path.relpath(page.file.abs_src_path, docs) raise PluginError( f"Couldn't find '{separator}' in post '{path}' in '{docs}'" ) # Create excerpt for post and inherit authors and categories - excerpts # can contain a subset of the authors and categories of the post page.excerpt = Excerpt(page, config, files) page.excerpt.authors = page.authors[:max_authors] page.excerpt.categories = page.categories[:max_categories] # Process posts def on_page_content(self, html, *, page, config, files): if not self.config.enabled: return # Skip if page is not a post managed by this instance - this plugin has # support for multiple instances, which is why this check is necessary if page not in self.blog.posts: return # Compute readtime of post, if enabled and not explicitly set if self.config.post_readtime: words_per_minute = self.config.post_readtime_words_per_minute if not page.config.readtime: page.config.readtime = readtime(html, words_per_minute) # Register template filters for plugin def on_env(self, env, *, config, files): if not self.config.enabled: return # Transform links to point to posts and pages for post in self.blog.posts: self._generate_links(post, config, files) # Filter for formatting dates related to posts def date_filter(date: datetime): return self._format_date_for_post(date, config) # Fetch URL template filter from environment - the filter might # be overridden by other plugins, so we must retrieve and wrap it url_filter = env.filters["url"] # Patch URL template filter to add support for paginated views, i.e., # that paginated views never link to themselves but to the main view @pass_context def url_filter_with_pagination(context: Context, url: str | None): page = context["page"] # If the current page is a view, check if the URL links to the page # itself, and replace it with the URL of the main view if isinstance(page, View): view = self._resolve_original(page) if page.url == url: url = view.url # Forward to original template filter return url_filter(context, url) # Register custom template filters env.filters["date"] = date_filter env.filters["url"] = url_filter_with_pagination # Prepare view for rendering (run latest) - views are rendered last, as we # need to mutate the navigation to account for pagination. The main problem # is that we need to replace the view in the navigation, because otherwise # the view would not be considered active. @event_priority(-100) def on_page_context(self, context, *, page, config, nav): if not self.config.enabled: return # Skip if page is not a view managed by this instance - this plugin has # support for multiple instances, which is why this check is necessary view = self._resolve_original(page) if view not in self._resolve_views(self.blog): return # Render excerpts and prepare pagination posts, pagination = self._render(page) # Render pagination links def pager(args: object): return pagination.pager( format = self.config.pagination_format, show_if_single_page = self.config.pagination_if_single_page, **args ) # Assign posts and pagination to context context["posts"] = posts context["pagination"] = pager if pagination else None # Remove temporary directory on shutdown def on_shutdown(self): rmtree(self.temp_dir) # ------------------------------------------------------------------------- # Check if the given post is excluded def _is_excluded(self, post: Post): if self.config.draft: return False # If a post was not explicitly marked or unmarked as draft, and the # date should be taken into account, we automatically mark it as draft # if the publishing date is in the future. This, of course, is opt-in # and must be explicitly enabled by the author. if not isinstance(post.config.draft, bool): if self.config.draft_if_future_date: return post.config.date.created > datetime.now(timezone.utc) # Post might be a draft return bool(post.config.draft) # ------------------------------------------------------------------------- # Resolve entrypoint - the entrypoint of the blog must have been created # if it did not exist before, and hosts all posts sorted by descending date def _resolve(self, files: Files, config: MkDocsConfig): path = os.path.join(self.config.blog_dir, "index.md") path = os.path.normpath(path) # Create entrypoint, if it does not exist - note that the entrypoint is # created in the docs directory, not in the temporary directory docs = os.path.relpath(config.docs_dir) name = os.path.join(docs, path) if not os.path.isfile(name): file = self._path_to_file(path, config, temp = False) files.append(file) # Create file in docs directory self._save_to_file(file.abs_src_path, "# Blog\n\n") # Create and return entrypoint file = files.get_file_from_path(path) return View(None, file, config) # Resolve post - the caller must make sure that the given file points to an # actual post (and not a page), or behavior might be unpredictable def _resolve_post(self, file: File, config: MkDocsConfig): post = Post(file, config) # Compute path and create a temporary file for path resolution path = self._format_path_for_post(post, config) temp = self._path_to_file(path, config, temp = False) # Replace destination file system path and URL file.dest_uri = temp.dest_uri file.abs_dest_path = temp.abs_dest_path file.url = temp.url # Replace canonical URL and return post post._set_canonical_url(config.site_url) return post # Resolve posts from directory - traverse all documentation pages and filter # and yield those that are located in the posts directory def _resolve_posts(self, files: Files, config: MkDocsConfig): path = self.config.post_dir.format(blog = self.config.blog_dir) path = os.path.normpath(path) # Create posts directory, if it does not exist docs = os.path.relpath(config.docs_dir) name = os.path.join(docs, path) if not os.path.isdir(name): os.makedirs(name, exist_ok = True) # Filter posts from pages for file in files.documentation_pages(): if not file.src_path.startswith(path): continue # Temporarily remove post from navigation file.inclusion = InclusionLevel.EXCLUDED # Resolve post - in order to determine whether a post should be # excluded, we must load it and analyze its metadata. All posts # marked as drafts are excluded, except for when the author has # configured drafts to be included in the navigation. post = self._resolve_post(file, config) if not self._is_excluded(post): yield post # Resolve authors - check if there's an authors file at the configured # location, and if one was found, load and validate it def _resolve_authors(self, config: MkDocsConfig): path = self.config.authors_file.format(blog = self.config.blog_dir) path = os.path.normpath(path) # Resolve path relative to docs directory docs = os.path.relpath(config.docs_dir) file = os.path.join(docs, path) # If the authors file does not exist, return here config: Authors = Authors() if not os.path.isfile(file): return config.authors # Open file and parse as YAML with open(file, encoding = "utf-8-sig") as f: config.config_file_path = os.path.abspath(file) try: config.load_dict(yaml.load(f, SafeLoader) or {}) # The authors file could not be loaded because of a syntax error, # which we display to the author with a nice error message except Exception as e: raise PluginError( f"Error reading authors file '{path}' in '{docs}':\n" f"{e}" ) # Validate authors and throw if errors occurred errors, warnings = config.validate() for _, w in warnings: log.warning(w) for _, e in errors: raise PluginError( f"Error reading authors file '{path}' in '{docs}':\n" f"{e}" ) # Return authors return config.authors # Resolve views of the given view in pre-order def _resolve_views(self, view: View): yield view # Resolve views recursively for page in view.views: for next in self._resolve_views(page): assert isinstance(next, View) yield next # Resolve siblings of a navigation item def _resolve_siblings(self, item: StructureItem, nav: Navigation): if isinstance(item.parent, Section): return item.parent.children else: return nav.items # Resolve original page or view (e.g. for paginated views) def _resolve_original(self, page: Page): if isinstance(page, View) and page.pages: return page.pages[0] else: return page # ------------------------------------------------------------------------- # Generate views for archive - analyze posts and generate the necessary # views, taking the date format provided by the author into account def _generate_archive(self, config: MkDocsConfig, files: Files): for post in self.blog.posts: date = post.config.date.created # Compute name and path of archive view name = self._format_date_for_archive(date, config) path = self._format_path_for_archive(post, config) # Create file for view, if it does not exist file = files.get_file_from_path(path) if not file: file = self._path_to_file(path, config) files.append(file) # Create file in temporary directory self._save_to_file(file.abs_src_path, f"# {name}") # Temporarily remove view from navigation file.inclusion = InclusionLevel.EXCLUDED # Create and yield view if not isinstance(file.page, Archive): yield Archive(name, file, config) # Assign post to archive assert isinstance(file.page, Archive) file.page.posts.append(post) # Generate views for categories - analyze posts and generate the necessary # views, taking the allowed categories as set by the author into account def _generate_categories(self, config: MkDocsConfig, files: Files): for post in self.blog.posts: for name in post.config.categories: path = self._format_path_for_category(name) # Ensure category is in non-empty allow list categories = self.config.categories_allowed or [name] if name not in categories: docs = os.path.relpath(config.docs_dir) path = os.path.relpath(post.file.abs_src_path, docs) raise PluginError( f"Error reading categories of post '{path}' in " f"'{docs}': category '{name}' not in allow list" ) # Create file for view, if it does not exist file = files.get_file_from_path(path) if not file: file = self._path_to_file(path, config) files.append(file) # Create file in temporary directory self._save_to_file(file.abs_src_path, f"# {name}") # Temporarily remove view from navigation file.inclusion = InclusionLevel.EXCLUDED # Create and yield view if not isinstance(file.page, Category): yield Category(name, file, config) # Assign post to category and vice versa assert isinstance(file.page, Category) file.page.posts.append(post) post.categories.append(file.page) # Generate pages for pagination - analyze view and generate the necessary # pages, creating a chain of views for simple rendering and replacement def _generate_pages(self, view: View, config: MkDocsConfig, files: Files): yield view # Compute pagination boundaries and create pages - pages are internally # handled as copies of a view, as they map to the same source location step = self.config.pagination_per_page for at in range(step, len(view.posts), step): path = self._format_path_for_pagination(view, 1 + at // step) # Create file for view, if it does not exist file = files.get_file_from_path(path) if not file: file = self._path_to_file(path, config) files.append(file) # Copy file to temporary directory copy_file(view.file.abs_src_path, file.abs_src_path) # Temporarily remove view from navigation file.inclusion = InclusionLevel.EXCLUDED # Create and yield view if not isinstance(file.page, View): yield view.__class__(None, file, config) # Assign pages and posts to view assert isinstance(file.page, View) file.page.pages = view.pages file.page.posts = view.posts # Generate links from the given post to other posts, pages, and sections - # this can only be done once all posts and pages have been parsed def _generate_links(self, post: Post, config: MkDocsConfig, files: Files): if not post.config.links: return # Resolve path relative to docs directory for error reporting docs = os.path.relpath(config.docs_dir) path = os.path.relpath(post.file.abs_src_path, docs) # Find all links to pages and replace them with references - while all # internal links are processed, external links remain as they are for link in _find_links(post.config.links.items): url = urlparse(link.url) if url.scheme: continue # Resolve file for link, and throw if the file could not be found - # authors can link to other pages, as well as to assets or files of # any kind, but it is essential that the file that is linked to is # found, so errors are actually catched and reported file = files.get_file_from_path(url.path) if not file: log.warning( f"Error reading metadata of post '{path}' in '{docs}':\n" f"Couldn't find file for link '{url.path}'" ) continue # If the file linked to is not a page, but an asset or any other # file, we resolve the destination URL and continue if not isinstance(file.page, Page): link.url = file.url continue # Cast link to reference link.__class__ = Reference assert isinstance(link, Reference) # Assign page title, URL and metadata to link link.title = link.title or file.page.title link.url = file.page.url link.meta = copy(file.page.meta) # If the link has no fragment, we can continue - if it does, we # need to find the matching anchor in the table of contents if not url.fragment: continue # If we're running under dirty reload, MkDocs will reset all pages, # so it's not possible to resolve anchor links. Thus, the only way # to make this work is to skip the entire process of anchor link # resolution in case of a dirty reload. if self.is_dirty: continue # Resolve anchor for fragment, and throw if the anchor could not be # found - authors can link to any anchor in the table of contents anchor = _find_anchor(file.page.toc, url.fragment) if not anchor: log.warning( f"Error reading metadata of post '{path}' in '{docs}':\n" f"Couldn't find anchor '{url.fragment}' in '{url.path}'" ) # Restore link to original state link.url = url.geturl() continue # Append anchor to URL and set subtitle link.url += f"#{anchor.id}" link.meta["subtitle"] = anchor.title # ------------------------------------------------------------------------- # Attach a list of pages to each other and to the given parent item without # explicitly adding them to the navigation, which can be done by the caller def _attach(self, parent: StructureItem, pages: list[Page]): for tail, page, head in zip(pages, pages[1:], pages[2:]): # Link page to parent and siblings page.parent = parent page.previous_page = tail page.next_page = head # If the page is a view, we know that we generated it and need to # link its siblings back to the view if isinstance(page, View): view = self._resolve_original(page) if tail: tail.next_page = view if head: head.previous_page = view # Attach a page to the given parent and link it to the previous and next # page of the given host - this is exclusively used for paginated views def _attach_at(self, parent: StructureItem, host: Page, page: Page): self._attach(parent, [host.previous_page, page, host.next_page]) # Attach a section as a sibling to the given view, make sure its pages are # part of the navigation, and ensure all pages are linked correctly def _attach_to(self, view: View, section: Section, nav: Navigation): section.parent = view.parent # Resolve siblings, which are the children of the parent section, or # the top-level list of navigation items if the view is at the root of # the project, and append the given section to it. It's currently not # possible to chose the position of a section. items = self._resolve_siblings(view, nav) items.append(section) # Find last sibling that is a page, skipping sections, as we need to # append the given section after all other pages tail = next(item for item in reversed(items) if isinstance(item, Page)) head = tail.next_page # Attach section to navigation and pages to each other nav.pages.extend(section.children) self._attach(section, [tail, *section.children, head]) # ------------------------------------------------------------------------- # Render excerpts and pagination for the given view def _render(self, view: View): posts, pagination = view.posts, None # Create pagination, if enabled if self.config.pagination: at = view.pages.index(view) # Compute pagination boundaries step = self.config.pagination_per_page p, q = at * step, at * step + step # Extract posts in pagination boundaries posts = view.posts[p:q] pagination = self._render_pagination(view, (p, q)) # Render excerpts for selected posts posts = [ self._render_post(post.excerpt, view) for post in posts if post.excerpt ] # Return posts and pagination return posts, pagination # Render excerpt in the context of the given view def _render_post(self, excerpt: Excerpt, view: View): excerpt.render(view, self.config.post_excerpt_separator) # Determine whether to add posts to the table of contents of the view - # note that those settings can be changed individually for each type of # view, which is why we need to check the type of view and the table of # contents setting for that type of view toc = self.config.blog_toc if isinstance(view, Archive): toc = self.config.archive_toc if isinstance(view, Category): toc = self.config.categories_toc # Attach top-level table of contents item to view if it should be added # and both, the view and excerpt contain table of contents items if toc and excerpt.toc.items and view.toc.items: view.toc.items[0].children.append(excerpt.toc.items[0]) # Return excerpt return excerpt # Create pagination for the given view and range def _render_pagination(self, view: View, range: tuple[int, int]): p, q = range # Create URL from the given page to another page def url_maker(n: int): return get_relative_url(view.pages[n - 1].url, view.url) # Return pagination return Pagination( view.posts, page = q // (q - p), items_per_page = q - p, url_maker = url_maker ) # ------------------------------------------------------------------------- # Format path for post def _format_path_for_post(self, post: Post, config: MkDocsConfig): categories = post.config.categories[:self.config.post_url_max_categories] categories = [self._slugify_category(name) for name in categories] # Replace placeholders in format string date = post.config.date.created path = self.config.post_url_format.format( categories = "/".join(categories), date = self._format_date_for_post_url(date, config), file = post.file.name, slug = post.config.slug or self._slugify_post(post) ) # Normalize path and strip slashes at the beginning and end path = posixpath.normpath(path.strip("/")) return posixpath.join(self.config.blog_dir, f"{path}.md") # Format path for archive def _format_path_for_archive(self, post: Post, config: MkDocsConfig): date = post.config.date.created path = self.config.archive_url_format.format( date = self._format_date_for_archive_url(date, config) ) # Normalize path and strip slashes at the beginning and end path = posixpath.normpath(path.strip("/")) return posixpath.join(self.config.blog_dir, f"{path}.md") # Format path for category def _format_path_for_category(self, name: str): path = self.config.categories_url_format.format( slug = self._slugify_category(name) ) # Normalize path and strip slashes at the beginning and end path = posixpath.normpath(path.strip("/")) return posixpath.join(self.config.blog_dir, f"{path}.md") # Format path for pagination def _format_path_for_pagination(self, view: View, page: int): path = self.config.pagination_url_format.format( page = page ) # Compute base path for pagination - if the given view is an index file, # we need to pop the file name from the base so it's not part of the URL # and we need to append `index` to the path, so the paginated view is # also an index page - see https://t.ly/71MKF base, _ = posixpath.splitext(view.file.src_uri) if view.is_index: base = posixpath.dirname(base) path = posixpath.join(path, "index") # Normalize path and strip slashes at the beginning and end path = posixpath.normpath(path.strip("/")) return posixpath.join(base, f"{path}.md") # ------------------------------------------------------------------------- # Format date - if the given format string refers to a predefined format, # we format the date without a time component in order to keep sane default # behavior, since authors will not expect time to be relevant for most posts # as by our assumptions - see https://t.ly/Yi7ZC def _format_date(self, date: datetime, format: str, config: MkDocsConfig): locale: str = config.theme["language"].replace("-", "_") if format in ["full", "long", "medium", "short"]: return format_date(date, format = format, locale = locale) else: return format_datetime(date, format = format, locale = locale) # Format date for post def _format_date_for_post(self, date: datetime, config: MkDocsConfig): format = self.config.post_date_format return self._format_date(date, format, config) # Format date for post URL def _format_date_for_post_url(self, date: datetime, config: MkDocsConfig): format = self.config.post_url_date_format return self._format_date(date, format, config) # Format date for archive def _format_date_for_archive(self, date: datetime, config: MkDocsConfig): format = self.config.archive_date_format return self._format_date(date, format, config) # Format date for archive URL def _format_date_for_archive_url(self, date: datetime, config: MkDocsConfig): format = self.config.archive_url_date_format return self._format_date(date, format, config) # ------------------------------------------------------------------------- # Slugify post title def _slugify_post(self, post: Post): separator = self.config.post_slugify_separator return self.config.post_slugify(post.title, separator) # Slugify category def _slugify_category(self, name: str): separator = self.config.categories_slugify_separator return self.config.categories_slugify(name, separator) # ------------------------------------------------------------------------- # Create a file for the given path, which must point to a valid source file, # either inside the temporary directory or the docs directory def _path_to_file(self, path: str, config: MkDocsConfig, *, temp = True): assert path.endswith(".md") file = File( path, config.docs_dir if not temp else self.temp_dir, config.site_dir, config.use_directory_urls ) # Hack: mark file as generated, so other plugins don't think it's part # of the file system. This is more or less a new quasi-standard that # still needs to be adopted by MkDocs, and was introduced by the # git-revision-date-localized-plugin - see https://bit.ly/3ZUmdBx if temp: file.generated_by = "material/blog" # Return file return file # Create a file with the given content on disk def _save_to_file(self, path: str, content: str): os.makedirs(os.path.dirname(path), exist_ok = True) with open(path, "w", encoding = "utf-8") as f: f.write(content) # ------------------------------------------------------------------------- # Translate the placeholder referenced by the given key def _translate(self, key: str, config: MkDocsConfig) -> str: env = config.theme.get_env() template = env.get_template( "partials/language.html", globals = { "config": config } ) # Translate placeholder return template.module.t(key) # ----------------------------------------------------------------------------- # Helper functions # ----------------------------------------------------------------------------- # Find all links in the given list of items def _find_links(items: list[StructureItem]): for item in items: # Resolve link if isinstance(item, Link): yield item # Resolve sections recursively if isinstance(item, Section): for item in _find_links(item.children): assert isinstance(item, Link) yield item # Find anchor in table of contents for the given id def _find_anchor(toc: TableOfContents, id: str): for anchor in toc: if anchor.id == id: return anchor # Resolve anchors recursively anchor = _find_anchor(anchor.children, id) if isinstance(anchor, AnchorLink): return anchor # ----------------------------------------------------------------------------- # Data # ----------------------------------------------------------------------------- # Set up logging log = logging.getLogger("mkdocs.material.blog") mkdocs-material-9.6.4/src/plugins/blog/readtime/000077500000000000000000000000001475306445600216115ustar00rootroot00000000000000mkdocs-material-9.6.4/src/plugins/blog/readtime/__init__.py000066400000000000000000000041701475306445600237240ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. import re from math import ceil from .parser import ReadtimeParser # ----------------------------------------------------------------------------- # Functions # ----------------------------------------------------------------------------- # Compute readtime - we first used the original readtime library, but the list # of dependencies it brings with it increased the size of the Docker image by # 20 MB (packed), which is an increase of 50%. For this reason, we adapt the # original readtime algorithm to our needs - see https://t.ly/fPZ7L def readtime(html: str, words_per_minute: int): parser = ReadtimeParser() parser.feed(html) parser.close() # Extract words from text and compute readtime in seconds words = len(re.split(r"\W+", "".join(parser.text))) seconds = ceil(words / words_per_minute * 60) # Account for additional images delta = 12 for _ in range(parser.images): seconds += delta if delta > 3: delta -= 1 # Return readtime in minutes return ceil(seconds / 60) mkdocs-material-9.6.4/src/plugins/blog/readtime/parser.py000066400000000000000000000053101475306445600234560ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from html.parser import HTMLParser # TODO: Refactor the `void` set into a common module and import it from there # and not from the search plugin. from material.plugins.search.plugin import void # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Readtime parser class ReadtimeParser(HTMLParser): # Initialize parser def __init__(self): super().__init__(convert_charrefs = True) # Tags to skip self.skip = set([ "object", # Objects "script", # Scripts "style", # Styles "svg" # SVGs ]) # Current context self.context = [] # Keep track of text and images self.text = [] self.images = 0 # Called at the start of every HTML tag def handle_starttag(self, tag, attrs): # Collect images if tag == "img": self.images += 1 # Ignore self-closing tags if tag not in void: # Add tag to context self.context.append(tag) # Called for the text contents of each tag def handle_data(self, data): # Collect text if not inside skip context if not self.skip.intersection(self.context): self.text.append(data) # Called at the end of every HTML tag def handle_endtag(self, tag): if self.context and self.context[-1] == tag: # Remove tag from context self.context.pop() mkdocs-material-9.6.4/src/plugins/blog/structure/000077500000000000000000000000001475306445600220575ustar00rootroot00000000000000mkdocs-material-9.6.4/src/plugins/blog/structure/__init__.py000066400000000000000000000325641475306445600242020ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations import logging import os import yaml from copy import copy from markdown import Markdown from material.plugins.blog.author import Author from material.plugins.meta.plugin import MetaPlugin from mkdocs.config.defaults import MkDocsConfig from mkdocs.exceptions import PluginError from mkdocs.structure.files import File, Files from mkdocs.structure.nav import Link, Section from mkdocs.structure.pages import Page, _RelativePathTreeprocessor from mkdocs.structure.toc import get_toc from mkdocs.utils.meta import YAML_RE from re import Match from yaml import SafeLoader from .config import PostConfig from .markdown import ExcerptTreeprocessor # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Post class Post(Page): # Initialize post - posts are never listed in the navigation, which is why # they will never include a title that was manually set, so we can omit it def __init__(self, file: File, config: MkDocsConfig): super().__init__(None, file, config) # Resolve path relative to docs directory docs = os.path.relpath(config.docs_dir) path = os.path.relpath(file.abs_src_path, docs) # Read contents and metadata immediately with open(file.abs_src_path, encoding = "utf-8-sig") as f: self.markdown = f.read() # Sadly, MkDocs swallows any exceptions that occur during parsing. # Since we want to provide the best possible user experience, we # need to catch errors early and display them nicely. We decided to # drop support for MkDocs' MultiMarkdown syntax, because it is not # correctly implemented anyway. When using MultiMarkdown syntax, all # date formats are returned as strings and list are not properly # supported. Thus, we just use the relevants parts of `get_data`. match: Match = YAML_RE.match(self.markdown) if not match: raise PluginError( f"Error reading metadata of post '{path}' in '{docs}':\n" f"Expected metadata to be defined but found nothing" ) # Extract metadata and parse as YAML try: self.meta = yaml.load(match.group(1), SafeLoader) or {} self.markdown = self.markdown[match.end():].lstrip("\n") # The post's metadata could not be parsed because of a syntax error, # which we display to the author with a nice error message except Exception as e: raise PluginError( f"Error reading metadata of post '{path}' in '{docs}':\n" f"{e}" ) # Hack: if the meta plugin is registered, we need to move the call # to `on_page_markdown` here, because we need to merge the metadata # of the post with the metadata of any meta files prior to creating # the post configuration. To our current knowledge, it's the only # way to allow posts to receive metadata from meta files, because # posts must be loaded prior to constructing the navigation in # `on_files` but the meta plugin first runs in `on_page_markdown`. plugin: MetaPlugin = config.plugins.get("material/meta") if plugin: plugin.on_page_markdown( self.markdown, page = self, config = config, files = None ) # Initialize post configuration, but remove all keys that this plugin # doesn't care about, or they will be reported as invalid configuration self.config: PostConfig = PostConfig(file.abs_src_path) self.config.load_dict({ key: self.meta[key] for key in ( set(self.meta.keys()) & set(self.config.keys()) ) }) # Validate configuration and throw if errors occurred errors, warnings = self.config.validate() for _, w in warnings: log.warning(w) for k, e in errors: raise PluginError( f"Error reading metadata '{k}' of post '{path}' in '{docs}':\n" f"{e}" ) # Excerpts are subsets of posts that are used in pages like archive and # category views. They are not rendered as standalone pages, but are # rendered in the context of a view. Each post has a dedicated excerpt # instance which is reused when rendering views. self.excerpt: Excerpt = None # Initialize authors and actegories self.authors: list[Author] = [] self.categories: list[Category] = [] # Ensure template is set or use default self.meta.setdefault("template", "blog-post.html") # Ensure template hides navigation self.meta["hide"] = self.meta.get("hide", []) if "navigation" not in self.meta["hide"]: self.meta["hide"].append("navigation") # The contents and metadata were already read in the constructor (and not # in `read_source` as for pages), so this function must be set to a no-op def read_source(self, config: MkDocsConfig): pass # ----------------------------------------------------------------------------- # Excerpt class Excerpt(Page): # Initialize an excerpt for the given post - we create the Markdown parser # when intitializing the excerpt in order to improve rendering performance # for excerpts, as they are reused across several different views, because # posts might be referenced from multiple different locations def __init__(self, post: Post, config: MkDocsConfig, files: Files): self.file = copy(post.file) self.post = post # Set canonical URL, or we can't print excerpts when debugging the # blog plugin, as the `abs_url` property would be missing self._set_canonical_url(config.site_url) # Initialize configuration and metadata self.config = post.config self.meta = post.meta # Initialize authors and categories - note that views usually contain # subsets of those lists, which is why we need to manage them here self.authors: list[Author] = [] self.categories: list[Category] = [] # Initialize content after separator - allow template authors to render # posts inline or to provide a link to the post's page self.more = None # Initialize parser - note that we need to patch the configuration, # more specifically the table of contents extension config = _patch(config) self.md = Markdown( extensions = config.markdown_extensions, extension_configs = config.mdx_configs, ) # Register excerpt tree processor - this processor resolves anchors to # posts from within views, so they point to the correct location self.md.treeprocessors.register( ExcerptTreeprocessor(post), "excerpt", 0 ) # Register relative path tree processor - this processor resolves links # to other pages and assets, and is used by MkDocs itself self.md.treeprocessors.register( _RelativePathTreeprocessor(self.file, files, config), "relpath", 1 ) # Render an excerpt of the post on the given page - note that this is not # thread-safe because excerpts are shared across views, as it cuts down on # the cost of initialization. However, if in the future, we decide to render # posts and views concurrently, we must change this behavior. def render(self, page: Page, separator: str): self.file.url = page.url # Retrieve excerpt tree processor and set page as base at = self.md.treeprocessors.get_index_for_name("excerpt") processor: ExcerptTreeprocessor = self.md.treeprocessors[at] processor.base = page # Ensure that the excerpt includes a title in its content, since the # title is linked to the post when rendering - see https://t.ly/5Gg2F self.markdown = self.post.markdown if not self.post._title_from_render: self.markdown = "\n\n".join([f"# {self.post.title}", self.markdown]) # Convert Markdown to HTML and extract excerpt self.content = self.md.convert(self.markdown) self.content, *more = self.content.split(separator, 1) if more: self.more = more[0] # Extract table of contents and reset post URL - if we wouldn't reset # the excerpt URL, linking to the excerpt from the view would not work self.toc = get_toc(getattr(self.md, "toc_tokens", [])) self.file.url = self.post.url # ----------------------------------------------------------------------------- # View class View(Page): # Parent view parent: View | Section # Initialize view def __init__(self, name: str | None, file: File, config: MkDocsConfig): super().__init__(None, file, config) # Initialize name of the view - note that views never pass a title to # the parent constructor, so the author can always override the title # that is used for rendering. However, for some purposes, like for # example sorting, we need something to compare. self.name = name # Initialize posts and views self.posts: list[Post] = [] self.views: list[View] = [] # Initialize pages for pagination self.pages: list[View] = [] # Set necessary metadata def read_source(self, config: MkDocsConfig): super().read_source(config) # Ensure template is set or use default self.meta.setdefault("template", "blog.html") # ----------------------------------------------------------------------------- # Archive view class Archive(View): pass # ----------------------------------------------------------------------------- # Category view class Category(View): pass # ----------------------------------------------------------------------------- # Reference class Reference(Link): # Initialize reference - this is essentially a crossover of pages and links, # as it inherits the metadata of the page and allows for anchors def __init__(self, title: str, url: str): super().__init__(title, url) self.meta = {} # ----------------------------------------------------------------------------- # Helper functions # ----------------------------------------------------------------------------- # Patch configuration def _patch(config: MkDocsConfig): config = copy(config) # Copy parts of configuration that needs to be patched config.validation = copy(config.validation) config.validation.links = copy(config.validation.links) config.markdown_extensions = copy(config.markdown_extensions) config.mdx_configs = copy(config.mdx_configs) # Make sure that the author did not add another instance of the table of # contents extension to the configuration, as this leads to weird behavior if "markdown.extensions.toc" in config.markdown_extensions: config.markdown_extensions.remove("markdown.extensions.toc") # In order to render excerpts for posts, we need to make sure that the # table of contents extension is appropriately configured config.mdx_configs["toc"] = { **config.mdx_configs.get("toc", {}), **{ "anchorlink": True, # Render headline as clickable "baselevel": 2, # Render h1 as h2 and so forth "permalink": False, # Remove permalinks "toc_depth": 2 # Remove everything below h2 } } # Additionally, we disable link validation when rendering excerpts, because # invalid links have already been reported when rendering the page links = config.validation.links links.not_found = logging.DEBUG links.absolute_links = logging.DEBUG links.unrecognized_links = logging.DEBUG # Return patched configuration return config # ----------------------------------------------------------------------------- # Data # ----------------------------------------------------------------------------- # Set up logging log = logging.getLogger("mkdocs.material.blog") mkdocs-material-9.6.4/src/plugins/blog/structure/config.py000066400000000000000000000033541475306445600237030ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from mkdocs.config.base import Config from mkdocs.config.config_options import Optional, Type from .options import PostDate, PostLinks, UniqueListOfItems # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Post configuration class PostConfig(Config): authors = UniqueListOfItems(Type(str), default = []) categories = UniqueListOfItems(Type(str), default = []) date = PostDate() draft = Optional(Type(bool)) links = Optional(PostLinks()) readtime = Optional(Type(int)) slug = Optional(Type(str)) mkdocs-material-9.6.4/src/plugins/blog/structure/markdown.py000066400000000000000000000047401475306445600242600ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations from markdown.treeprocessors import Treeprocessor from mkdocs.structure.pages import Page from mkdocs.utils import get_relative_url from xml.etree.ElementTree import Element # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Excerpt tree processor class ExcerptTreeprocessor(Treeprocessor): # Initialize excerpt tree processor def __init__(self, page: Page, base: Page | None = None): self.page = page self.base = base # Transform HTML after Markdown processing def run(self, root: Element): assert self.base main = True # We're only interested in anchors, which is why we continue when the # link does not start with an anchor tag for el in root.iter("a"): anchor = el.get("href") if not anchor.startswith("#"): continue # The main headline should link to the post page, not to a specific # anchor, which is why we remove the anchor in that case path = get_relative_url(self.page.url, self.base.url) if main: el.set("href", path) else: el.set("href", path + anchor) # Main headline has been seen main = False mkdocs-material-9.6.4/src/plugins/blog/structure/options.py000066400000000000000000000117311475306445600241270ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from datetime import date, datetime, time, timezone from mkdocs.config.base import BaseConfigOption, Config, ValidationError from mkdocs.config.config_options import ListOfItems, T from mkdocs.structure.files import Files from mkdocs.structure.nav import ( Navigation, _add_parent_links, _data_to_navigation ) from typing import Dict # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Date dictionary class DateDict(Dict[str, datetime]): # Initialize date dictionary def __init__(self, data: dict): super().__init__(data) # Ensure presence of `date.created` self.created: datetime = data["created"] # Allow attribute access def __getattr__(self, name: str): if name in self: return self[name] # ----------------------------------------------------------------------------- # Post date option class PostDate(BaseConfigOption[DateDict]): # Initialize post dates def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) # Normalize the supported types for post dates to datetime def pre_validation(self, config: Config, key_name: str): # If the date points to a scalar value, convert it to a dictionary, as # we want to allow the author to specify custom and arbitrary dates for # posts. Currently, only the `created` date is mandatory, because it's # needed to sort posts for views. if not isinstance(config[key_name], dict): config[key_name] = { "created": config[key_name] } # Convert all date values to datetime for key, value in config[key_name].items(): # Handle datetime - since datetime is a subclass of date, we need # to check it first, or we lose the time - see https://t.ly/-KG9N if isinstance(value, datetime): # Set timezone to UTC if not set if value.tzinfo is None: config[key_name][key] = value.replace(tzinfo=timezone.utc) continue; # Handle date - we set 00:00:00 as the default time, if the author # only supplied a date, and convert it to datetime in UTC if isinstance(value, date): config[key_name][key] = datetime.combine(value, time()).replace(tzinfo=timezone.utc) # Initialize date dictionary config[key_name] = DateDict(config[key_name]) # Ensure each date value is of type datetime def run_validation(self, value: DateDict): for key in value: if not isinstance(value[key], datetime): raise ValidationError( f"Expected type: {date} or {datetime} " f"but received: {type(value[key])}" ) # Ensure presence of `date.created` if not value.created: raise ValidationError( "Expected 'created' date when using dictionary syntax" ) # Return date dictionary return value # ----------------------------------------------------------------------------- # Post links option class PostLinks(BaseConfigOption[Navigation]): # Create navigation from structured items - we don't need to provide a # configuration object to the function, because it will not be used def run_validation(self, value: object): items = _data_to_navigation(value, Files([]), None) _add_parent_links(items) # Return navigation return Navigation(items, []) # ----------------------------------------------------------------------------- # Unique list of items class UniqueListOfItems(ListOfItems[T]): # Ensure that each item is unique def run_validation(self, value: object): data = super().run_validation(value) return list(dict.fromkeys(data)) mkdocs-material-9.6.4/src/plugins/group/000077500000000000000000000000001475306445600202305ustar00rootroot00000000000000mkdocs-material-9.6.4/src/plugins/group/__init__.py000066400000000000000000000021451475306445600223430ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. mkdocs-material-9.6.4/src/plugins/group/config.py000066400000000000000000000027511475306445600220540ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from mkdocs.config.config_options import Type from mkdocs.config.base import Config # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Group plugin configuration class GroupConfig(Config): enabled = Type(bool, default = False) plugins = Type((list, dict)) mkdocs-material-9.6.4/src/plugins/group/plugin.py000066400000000000000000000157051475306445600221100ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations import logging from collections.abc import Callable from mkdocs.config.config_options import Plugins from mkdocs.config.defaults import MkDocsConfig from mkdocs.exceptions import PluginError from mkdocs.plugins import BasePlugin, event_priority from .config import GroupConfig # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Group plugin class GroupPlugin(BasePlugin[GroupConfig]): supports_multiple_instances = True # Initialize plugin def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) # Initialize object attributes self.is_serve = False self.is_dirty = False # Determine whether we're serving the site def on_startup(self, *, command, dirty): self.is_serve = command == "serve" self.is_dirty = dirty # If the group is enabled, conditionally load plugins - at first, this might # sound easier than it actually is, as we need to jump through some hoops to # ensure correct ordering among plugins. We're effectively initializing the # plugins that are part of the group after all MkDocs finished initializing # all other plugins, so we need to patch the order of the methods. Moreover, # we must use MkDocs existing plugin collection, or we might have collisions # with other plugins that are not part of the group. As so often, this is a # little hacky, but has huge potential making plugin configuration easier. # There's one little caveat: the `__init__` and `on_startup` methods of the # plugins that are part of the group are called after all other plugins, so # the `event_priority` decorator for `on_startup` methods is effectively # useless. However, the `on_startup` method is only intended to set up the # plugin and doesn't receive anything else than the invoked command and # whether we're running a dirty build, so there should be no problems. @event_priority(150) def on_config(self, config): if not self.config.enabled: return # Retrieve plugin collection from configuration option: Plugins = dict(config._schema)["plugins"] assert isinstance(option, Plugins) # Load all plugins in group self.plugins: dict[str, BasePlugin] = {} try: for name, plugin in self._load(option): self.plugins[name] = plugin # The plugin could not be loaded, likely because it's not installed or # misconfigured, so we raise a plugin error for a nicer error message except Exception as e: raise PluginError(str(e)) # Patch order of plugin methods for events in option.plugins.events.values(): self._patch(events, config) # Invoke `on_startup` event for plugins in group command = "serve" if self.is_serve else "build" for method in option.plugins.events["startup"]: plugin = self._get_plugin(method) # Ensure that we have a method bound to a plugin (and not a hook) if plugin and plugin in self.plugins.values(): method(command = command, dirty = self.is_dirty) # ------------------------------------------------------------------------- # Retrieve plugin instance for bound method or nothing def _get_plugin(self, method: Callable): return getattr(method, "__self__", None) # Retrieve priority of plugin method def _get_priority(self, method: Callable): return getattr(method, "mkdocs_priority", 0) # Retrieve position of plugin def _get_position(self, plugin: BasePlugin, config: MkDocsConfig) -> int: for at, (_, candidate) in enumerate(config.plugins.items()): if plugin == candidate: return at # ------------------------------------------------------------------------- # Load plugins that are part of the group def _load(self, option: Plugins): for name, data in option._parse_configs(self.config.plugins): yield option.load_plugin_with_namespace(name, data) # ------------------------------------------------------------------------- # Patch order of plugin methods - all other plugin methods are already in # the right order, so we only need to check those that are part of the group # and bubble them up into the right location. Some plugin methods may define # priorities, so we need to make sure to order correctly within those. def _patch(self, methods: list[Callable], config: MkDocsConfig): position = self._get_position(self, config) for at in reversed(range(1, len(methods))): tail = methods[at - 1] head = methods[at] # Skip if the plugin is not part of the group plugin = self._get_plugin(head) if not plugin or plugin not in self.plugins.values(): continue # Skip if the previous method has a higher priority than the current # one, because we know we can't swap them anyway if self._get_priority(tail) > self._get_priority(head): continue # Ensure that we have a method bound to a plugin (and not a hook) plugin = self._get_plugin(tail) if not plugin: continue # Both methods have the same priority, so we check if the ordering # of both methods is violated, and if it is, swap them if (position < self._get_position(plugin, config)): methods[at], methods[at - 1] = tail, head # ----------------------------------------------------------------------------- # Data # ----------------------------------------------------------------------------- # Set up logging log = logging.getLogger("mkdocs.material.group") mkdocs-material-9.6.4/src/plugins/info/000077500000000000000000000000001475306445600200275ustar00rootroot00000000000000mkdocs-material-9.6.4/src/plugins/info/__init__.py000066400000000000000000000021451475306445600221420ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. mkdocs-material-9.6.4/src/plugins/info/config.py000066400000000000000000000031701475306445600216470ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from mkdocs.config.config_options import Type from mkdocs.config.base import Config # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Info plugin configuration class InfoConfig(Config): enabled = Type(bool, default = True) enabled_on_serve = Type(bool, default = False) # Settings for archive archive = Type(bool, default = True) archive_stop_on_violation = Type(bool, default = True) mkdocs-material-9.6.4/src/plugins/info/patterns.py000066400000000000000000000020611475306445600222400ustar00rootroot00000000000000def get_exclusion_patterns(): """ Regex patterns, which will be compared against directory and file names case-sensitively. https://docs.python.org/3/library/re.html#re.search is the matching function and scans the whole string to find any pattern match. Used with the https://pypi.org/project/regex/ module. Additional remarks for pattern creation: - The compared paths will be always in POSIX format. - Each directory path will have a / at the end to allow to distinguish them from files. - Patterns for dynamic or custom paths like Virtual Environments (venv) or build site directories are created during plugin runtime. """ return [ r"/__pycache__/", # Python cache directory r"/\.DS_Store$", # macOS r"/[^/]+\.zip$", # Generated files and folders r"/[^/]*\.cache($|/)", # .cache files and folders r"/\.vscode/", # Common autogenerated IDE directories r"/\.vs/", r"/\.idea/", ] mkdocs-material-9.6.4/src/plugins/info/plugin.py000066400000000000000000000533361475306445600217110ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. import glob import json import logging import os import platform import regex import requests import site import sys import yaml from colorama import Fore, Style from importlib.metadata import distributions, version from io import BytesIO from markdown.extensions.toc import slugify from mkdocs.config.defaults import MkDocsConfig from mkdocs.plugins import BasePlugin, event_priority from mkdocs.utils import get_yaml_loader from zipfile import ZipFile, ZIP_DEFLATED from .config import InfoConfig from .patterns import get_exclusion_patterns # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Info plugin class InfoPlugin(BasePlugin[InfoConfig]): # Initialize plugin def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) # Initialize incremental builds self.is_serve = False # Initialize empty members self.exclusion_patterns = [] self.excluded_entries = [] # Determine whether we're serving the site def on_startup(self, *, command, dirty): self.is_serve = command == "serve" # Create a self-contained example (run earliest) - determine all files that # are visible to MkDocs and are used to build the site, create an archive # that contains all of them, and print a summary of the archive contents. # The author must attach this archive to the bug report. @event_priority(100) def on_config(self, config): if not self.config.enabled: return # By default, the plugin is disabled when the documentation is served, # but not when it is built. This should nicely align with the expected # user experience when creating reproductions. if not self.config.enabled_on_serve and self.is_serve: return # Resolve latest version url = "https://github.com/squidfunk/mkdocs-material/releases/latest" res = requests.get(url, allow_redirects = False) # Check if we're running the latest version _, current = res.headers.get("location").rsplit("/", 1) present = version("mkdocs-material") if not present.startswith(current): log.error("Please upgrade to the latest version.") self._help_on_versions_and_exit(present, current) # Exit if archive creation is disabled if not self.config.archive: sys.exit(1) # Print message that we're creating a bug report log.info("Started archive creation for bug report") # Check that there are no overrides in place - we need to use a little # hack to detect whether the custom_dir setting was used without parsing # mkdocs.yml again - we check at which position the directory provided # by the theme resides, and if it's not the first one, abort. if config.theme.custom_dir: log.error("Please remove 'custom_dir' setting.") self._help_on_customizations_and_exit() # Check that there are no hooks in place - hooks can alter the behavior # of MkDocs in unpredictable ways, which is why they must be considered # being customizations. Thus, we can't offer support for debugging and # must abort here. if config.hooks: log.error("Please remove 'hooks' setting.") self._help_on_customizations_and_exit() # Assure all paths that will be validated are absolute. Convert possible # relative config_file_path to absolute. Its absolute directory path is # being later used to resolve other paths. config.config_file_path = _convert_to_abs(config.config_file_path) config_file_parent = os.path.dirname(config.config_file_path) # Convert relative custom_dir path to absolute. The Theme.custom_dir # property cannot be set, therefore a helper variable is used. if config.theme.custom_dir: abs_custom_dir = _convert_to_abs( config.theme.custom_dir, abs_prefix = config_file_parent ) else: abs_custom_dir = "" # Extract the absolute path to projects plugin's directory to explicitly # support path validation and dynamic exclusion for the plugin projects_plugin = config.plugins.get("material/projects") if projects_plugin: abs_projects_dir = _convert_to_abs( projects_plugin.config.projects_dir, abs_prefix = config_file_parent ) else: abs_projects_dir = "" # MkDocs removes the INHERIT configuration key during load, and doesn't # expose the information in any way, as the parent configuration is # merged into one. To validate that the INHERIT config file will be # included in the ZIP file the current config file must be loaded again # without parsing. Each file can have their own INHERIT key, so a list # of configurations is supported. The INHERIT path is converted during # load to absolute. loaded_configs = _load_yaml(config.config_file_path) if not isinstance(loaded_configs, list): loaded_configs = [loaded_configs] # We need to make sure the user put every file in the current working # directory. To assure the reproduction inside the ZIP file can be run, # validate that the MkDocs paths are children of the current root. paths_to_validate = [ config.config_file_path, config.docs_dir, abs_custom_dir, abs_projects_dir, *[cfg.get("INHERIT", "") for cfg in loaded_configs] ] # Convert relative hook paths to absolute path for hook in config.hooks: path = _convert_to_abs(hook, abs_prefix = config_file_parent) paths_to_validate.append(path) # Remove valid paths from the list for path in list(paths_to_validate): if not path or path.startswith(os.getcwd()): paths_to_validate.remove(path) # Report the invalid paths to the user if paths_to_validate: log.error(f"One or more paths aren't children of root") self._help_on_not_in_cwd(paths_to_validate) # Create in-memory archive and prompt author for a short descriptive # name for the archive, which is also used as the directory name. Note # that the name is slugified for better readability and stripped of any # file extension that the author might have entered. archive = BytesIO() example = input("\nPlease name your bug report (2-4 words): ") example, _ = os.path.splitext(example) example = "-".join([present, slugify(example, "-")]) # Get local copy of the exclusion patterns self.exclusion_patterns = get_exclusion_patterns() self.excluded_entries = [] # Exclude the site_dir at project root if config.site_dir.startswith(os.getcwd()): self.exclusion_patterns.append(_resolve_pattern(config.site_dir)) # Exclude the Virtual Environment directory. site.getsitepackages() has # inconsistent results across operating systems, and relies on the # PREFIXES that will contain the absolute path to the activated venv. for path in site.PREFIXES: if path.startswith(os.getcwd()): self.exclusion_patterns.append(_resolve_pattern(path)) # Exclude site_dir for projects if projects_plugin: for path in glob.iglob( pathname = projects_plugin.config.projects_config_files, root_dir = abs_projects_dir, recursive = True ): current_config_file = os.path.join(abs_projects_dir, path) project_config = _get_project_config(current_config_file) pattern = _resolve_pattern(project_config.site_dir) self.exclusion_patterns.append(pattern) # Track dotpath inclusion to inform about it later contains_dotpath: bool = False # Create self-contained example from project files: list[str] = [] with ZipFile(archive, "a", ZIP_DEFLATED, False) as f: for abs_root, dirnames, filenames in os.walk(os.getcwd()): # Set and print progress indicator indicator = f"Processing: {abs_root}" print(indicator, end="\r", flush=True) # Prune the folders in-place to prevent their processing for name in list(dirnames): # Resolve the absolute directory path path = os.path.join(abs_root, name) # Exclude the directory and all subdirectories if self._is_excluded(path): dirnames.remove(name) continue # Warn about .dotdirectories if _is_dotpath(path, log_warning = True): contains_dotpath = True # Write files to the in-memory archive for name in filenames: # Resolve the absolute file path path = os.path.join(abs_root, name) # Exclude the file if self._is_excluded(path): continue # Warn about .dotfiles if _is_dotpath(path, log_warning = True): contains_dotpath = True # Resolve the relative path to create a matching structure path = os.path.relpath(path, os.path.curdir) f.write(path, os.path.join(example, path)) # Clear the line for the next indicator print(" " * len(indicator), end="\r", flush=True) # Add information on installed packages f.writestr( os.path.join(example, "requirements.lock.txt"), "\n".join(sorted([ "==".join([package.name, package.version]) for package in distributions() ])) ) # Add information on platform f.writestr( os.path.join(example, "platform.json"), json.dumps( { "system": platform.platform(), "architecture": platform.architecture(), "python": platform.python_version(), "cwd": os.getcwd(), "command": " ".join([ sys.argv[0].rsplit(os.sep, 1)[-1], *sys.argv[1:] ]), "env:$PYTHONPATH": os.getenv("PYTHONPATH", ""), "sys.path": sys.path, "excluded_entries": self.excluded_entries }, default = str, indent = 2 ) ) # Retrieve list of processed files for a in f.filelist: # Highlight .dotpaths in a more explicit manner color = (Fore.LIGHTYELLOW_EX if "/." in a.filename else Fore.LIGHTBLACK_EX) files.append("".join([ color, a.filename, " ", _size(a.compress_size) ])) # Finally, write archive to disk buffer = archive.getbuffer() with open(f"{example}.zip", "wb") as f: f.write(archive.getvalue()) # Print summary log.info("Archive successfully created:") print(Style.NORMAL) # Print archive file names files.sort() for file in files: print(f" {file}") # Print archive name print(Style.RESET_ALL) print("".join([ " ", f.name, " ", _size(buffer.nbytes, 10) ])) # Print warning when file size is excessively large print(Style.RESET_ALL) if buffer.nbytes > 1000000: log.warning("Archive exceeds recommended maximum size of 1 MB") # Print warning when file contains hidden .dotpaths if contains_dotpath: log.warning( "Archive contains dotpaths, which could contain sensitive " "information.\nPlease review them at the bottom of the list " "and share only necessary data to reproduce the issue." ) # Aaaaaand done sys.exit(1) # ------------------------------------------------------------------------- # Print help on versions and exit def _help_on_versions_and_exit(self, have, need): print(Fore.RED) print(" When reporting issues, please first upgrade to the latest") print(" version of Material for MkDocs, as the problem might already") print(" be fixed in the latest version. This helps reduce duplicate") print(" efforts and saves us maintainers time.") print(Style.NORMAL) print(f" Please update from {have} to {need}.") print(Style.RESET_ALL) print(f" pip install --upgrade --force-reinstall mkdocs-material") print(Style.NORMAL) # Exit, unless explicitly told not to if self.config.archive_stop_on_violation: sys.exit(1) # Print help on customizations and exit def _help_on_customizations_and_exit(self): print(Fore.RED) print(" When reporting issues, you must remove all customizations") print(" and check if the problem persists. If not, the problem is") print(" caused by your overrides. Please understand that we can't") print(" help you debug your customizations. Please remove:") print(Style.NORMAL) print(" - theme.custom_dir") print(" - hooks") print(Fore.YELLOW) print(" Additionally, please remove all third-party JavaScript or") print(" CSS not explicitly mentioned in our documentation:") print(Style.NORMAL) print(" - extra_css") print(" - extra_javascript") print(Fore.YELLOW) print(" If you're using customizations from the theme's documentation") print(" and you want to report a bug specific to those customizations") print(" then set the 'archive_stop_on_violation: false' option in the") print(" info plugin config.") print(Style.RESET_ALL) # Exit, unless explicitly told not to if self.config.archive_stop_on_violation: sys.exit(1) # Print help on not in current working directory and exit def _help_on_not_in_cwd(self, outside_root): print(Fore.RED) print(" The current working (root) directory:\n") print(f" {os.getcwd()}\n") print(" is not a parent of the following paths:") print(Style.NORMAL) for path in outside_root: print(f" {path}") print("\n To assure that all project files are found please adjust") print(" your config or file structure and put everything within the") print(" root directory of the project.") print("\n Please also make sure `mkdocs build` is run in the actual") print(" root directory of the project.") print(Style.RESET_ALL) # Exit, unless explicitly told not to if self.config.archive_stop_on_violation: sys.exit(1) # Check if path is excluded and should be omitted from the zip. Use pattern # matching for files and folders, and lookahead specific files in folders to # skip them. Side effect: Save excluded paths to save them in the zip file. def _is_excluded(self, abspath: str) -> bool: # Resolve the path into POSIX format to match the patterns pattern_path = _resolve_pattern(abspath, return_path = True) for pattern in self.exclusion_patterns: if regex.search(pattern, pattern_path): log.debug(f"Excluded pattern '{pattern}': {abspath}") self.excluded_entries.append(f"{pattern} - {pattern_path}") return True # File exclusion should be limited to pattern matching if os.path.isfile(abspath): return False # Projects, which don't use the projects plugin for multi-language # support could have separate build folders for each config file or # language. Therefore, we exclude them with the assumption a site_dir # contains the sitemap file. Example of such a setup: https://t.ly/DLQcy sitemap_gz = os.path.join(abspath, "sitemap.xml.gz") if os.path.exists(sitemap_gz): log.debug(f"Excluded site_dir: {abspath}") self.excluded_entries.append(f"sitemap.xml.gz - {pattern_path}") return True return False # ----------------------------------------------------------------------------- # Helper functions # ----------------------------------------------------------------------------- # Print human-readable size def _size(value, factor = 1): color = Fore.GREEN if value > 100000 * factor: color = Fore.RED elif value > 25000 * factor: color = Fore.YELLOW for unit in ["B", "kB", "MB", "GB", "TB", "PB", "EB", "ZB"]: if abs(value) < 1000.0: return f"{color}{value:3.1f} {unit}" value /= 1000.0 # Get the absolute path with set prefix. To validate if a file is inside the # current working directory it needs to be absolute, so that it is possible to # check the prefix. def _convert_to_abs(path: str, abs_prefix: str = None) -> str: if os.path.isabs(path): return path if abs_prefix is None: abs_prefix = os.getcwd() return os.path.normpath(os.path.join(abs_prefix, path)) # Get the loaded config, or a list with all loaded configs. MkDocs removes the # INHERIT configuration key during load, and doesn't expose the information in # any way, as the parent configuration is merged into one. The INHERIT path is # needed for validation. This custom YAML loader replicates MkDocs' loading # logic. Side effect: It converts the INHERIT path to absolute. def _load_yaml(abs_src_path: str): with open(abs_src_path, encoding ="utf-8-sig") as file: source = file.read() try: result = yaml.load(source, Loader = get_yaml_loader()) or {} except yaml.YAMLError: result = {} if "INHERIT" in result: relpath = result.get('INHERIT') parent_path = os.path.dirname(abs_src_path) abspath = _convert_to_abs(relpath, abs_prefix = parent_path) if os.path.exists(abspath): result["INHERIT"] = abspath log.debug(f"Loading inherited configuration file: {abspath}") parent = _load_yaml(abspath) if isinstance(parent, list): result = [result, *parent] elif isinstance(parent, dict): result = [result, parent] return result # Get a normalized POSIX path for the pattern matching with removed current # working directory prefix. Directory paths end with a '/' to allow more control # in the pattern creation for files and directories. The patterns are matched # using the search function, so they are prefixed with ^ for specificity. def _resolve_pattern(abspath: str, return_path: bool = False): path = abspath.replace(os.getcwd(), "", 1) path = path.replace(os.sep, "/").rstrip("/") if not path: return "/" # Check abspath, as the file needs to exist if not os.path.isfile(abspath): path = path + "/" return path if return_path else f"^{path}" # Get project configuration with resolved absolute paths for validation def _get_project_config(project_config_file: str): with open(project_config_file, encoding="utf-8-sig") as file: config = MkDocsConfig(config_file_path = project_config_file) config.load_file(file) # MkDocs transforms site_dir to absolute path during validation config.validate() return config # Check if the path is a .dotpath. A warning can also be issued when the param # is set. The function also returns a boolean to track results outside it. def _is_dotpath(path: str, log_warning: bool = False) -> bool: posix_path = _resolve_pattern(path, return_path = True) name = posix_path.rstrip("/").rsplit("/", 1)[-1] if name.startswith("."): if log_warning: log.warning(f"The following .dotpath will be included: {path}") return True return False # ----------------------------------------------------------------------------- # Data # ----------------------------------------------------------------------------- # Set up logging log = logging.getLogger("mkdocs.material.info") mkdocs-material-9.6.4/src/plugins/meta/000077500000000000000000000000001475306445600200225ustar00rootroot00000000000000mkdocs-material-9.6.4/src/plugins/meta/__init__.py000066400000000000000000000021451475306445600221350ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. mkdocs-material-9.6.4/src/plugins/meta/config.py000066400000000000000000000030251475306445600216410ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from mkdocs.config.config_options import Type from mkdocs.config.base import Config # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Meta plugin configuration class MetaConfig(Config): enabled = Type(bool, default = True) # Settings for meta files meta_file = Type(str, default = ".meta.yml") mkdocs-material-9.6.4/src/plugins/meta/plugin.py000066400000000000000000000117131475306445600216750ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. import logging import os import posixpath from mergedeep import Strategy, merge from mkdocs.exceptions import PluginError from mkdocs.structure.files import InclusionLevel from mkdocs.plugins import BasePlugin, event_priority from yaml import SafeLoader, load from .config import MetaConfig # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Meta plugin class MetaPlugin(BasePlugin[MetaConfig]): # Construct metadata mapping def on_files(self, files, *, config): if not self.config.enabled: return # Initialize mapping self.meta = {} # Resolve and load meta files in docs directory docs = os.path.relpath(config.docs_dir) for file in files: name = posixpath.basename(file.src_uri) if not name == self.config.meta_file: continue # Exclude meta file from site directory - explicitly excluding the # meta file allows the author to use a file name without '.' prefix file.inclusion = InclusionLevel.EXCLUDED # Open file and parse as YAML with open(file.abs_src_path, encoding = "utf-8-sig") as f: path = file.src_path try: self.meta[path] = load(f, SafeLoader) # The meta file could not be loaded because of a syntax error, # which we display to the author with a nice error message except Exception as e: raise PluginError( f"Error reading meta file '{path}' in '{docs}':\n" f"{e}" ) # Set metadata for page, if applicable (run earlier) @event_priority(50) def on_page_markdown(self, markdown, *, page, config, files): if not self.config.enabled: return # Start with a clean state, as we first need to apply all meta files # that are relevant to the current page, and then merge the page meta # on top of that to ensure that the page meta always takes precedence # over meta files - see https://t.ly/kvCRn meta = {} # Merge matching meta files in level-order strategy = Strategy.TYPESAFE_ADDITIVE for path, defaults in self.meta.items(): if not page.file.src_path.startswith(os.path.dirname(path)): continue # Skip if meta file was already merged - this happens in case of # blog posts, as they need to be merged when posts are constructed, # which is why we need to keep track of which meta files are applied # to what pages using the `__extends` key. page.meta.setdefault("__extends", []) if path in page.meta["__extends"]: continue # Try to merge metadata try: merge(meta, defaults, strategy = strategy) page.meta["__extends"].append(path) # Merging the metadata with the given strategy resulted in an error, # which we display to the author with a nice error message except Exception as e: docs = os.path.relpath(config.docs_dir) raise PluginError( f"Error merging meta file '{path}' in '{docs}':\n" f"{e}" ) # Ensure page metadata is merged last, so the author can override any # defaults from the meta files, or even remove them entirely page.meta = merge(meta, page.meta, strategy = strategy) # ----------------------------------------------------------------------------- # Data # ----------------------------------------------------------------------------- # Set up logging log = logging.getLogger("mkdocs.material.meta") mkdocs-material-9.6.4/src/plugins/offline/000077500000000000000000000000001475306445600205165ustar00rootroot00000000000000mkdocs-material-9.6.4/src/plugins/offline/__init__.py000066400000000000000000000021451475306445600226310ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. mkdocs-material-9.6.4/src/plugins/offline/config.py000066400000000000000000000027131475306445600223400ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from mkdocs.config.config_options import Type from mkdocs.config.base import Config # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Offline plugin configuration class OfflineConfig(Config): enabled = Type(bool, default = True) mkdocs-material-9.6.4/src/plugins/offline/plugin.py000066400000000000000000000055041475306445600223720ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. import os from mkdocs.plugins import BasePlugin, event_priority from .config import OfflineConfig # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Offline plugin class OfflinePlugin(BasePlugin[OfflineConfig]): # Set configuration for offline build def on_config(self, config): if not self.config.enabled: return # Ensure correct resolution of links when viewing the site from the # file system by disabling directory URLs config.use_directory_urls = False # Append iframe-worker to polyfills/shims config.extra["polyfills"] = config.extra.get("polyfills", []) if not any("iframe-worker" in url for url in config.extra["polyfills"]): script = "https://unpkg.com/iframe-worker/shim" config.extra["polyfills"].append(script) # Add support for offline search (run latest) - the search index is copied # and inlined into a script, so that it can be used without a server @event_priority(-100) def on_post_build(self, *, config): if not self.config.enabled: return # Ensure presence of search index path = os.path.join(config.site_dir, "search") file = os.path.join(path, "search_index.json") if not os.path.isfile(file): return # Obtain search index contents with open(file, encoding = "utf-8") as f: data = f.read() # Inline search index contents into script file = os.path.join(path, "search_index.js") with open(file, "w", encoding = "utf-8") as f: f.write(f"var __index = {data}") mkdocs-material-9.6.4/src/plugins/privacy/000077500000000000000000000000001475306445600205515ustar00rootroot00000000000000mkdocs-material-9.6.4/src/plugins/privacy/__init__.py000066400000000000000000000021451475306445600226640ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. mkdocs-material-9.6.4/src/plugins/privacy/config.py000066400000000000000000000036301475306445600223720ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. import os from mkdocs.config.base import Config from mkdocs.config.config_options import DictOfItems, Type # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Privacy plugin configuration class PrivacyConfig(Config): enabled = Type(bool, default = True) concurrency = Type(int, default = max(1, os.cpu_count() - 1)) # Settings for caching cache = Type(bool, default = True) cache_dir = Type(str, default = ".cache/plugin/privacy") # Settings for external assets assets = Type(bool, default = True) assets_fetch = Type(bool, default = True) assets_fetch_dir = Type(str, default = "assets/external") assets_expr_map = DictOfItems(Type(str), default = {}) mkdocs-material-9.6.4/src/plugins/privacy/parser.py000066400000000000000000000036431475306445600224250ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from html.parser import HTMLParser from xml.etree.ElementTree import Element # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Fragment parser - previously, we used lxml for fault-tolerant HTML5 parsing, # but it blows up the size of the Docker image by 20 MB. We can't just use the # built-in XML parser, as it doesn't handle HTML5 (because, yeah, it's not XML), # so we use a streaming parser and construct the element ourselves. class FragmentParser(HTMLParser): # Initialize parser def __init__(self): super().__init__(convert_charrefs = True) self.result = None # Create element def handle_starttag(self, tag, attrs): self.result = Element(tag, dict(attrs)) mkdocs-material-9.6.4/src/plugins/privacy/plugin.py000066400000000000000000000563601475306445600224330ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations import errno import logging import os import posixpath import re import requests import sys from colorama import Fore, Style from concurrent.futures import Future, ThreadPoolExecutor, wait from hashlib import sha1 from mkdocs.config.config_options import ExtraScriptValue from mkdocs.config.defaults import MkDocsConfig from mkdocs.exceptions import PluginError from mkdocs.plugins import BasePlugin, event_priority from mkdocs.structure.files import File, Files from mkdocs.utils import is_error_template from re import Match from urllib.parse import ParseResult as URL, urlparse, unquote from xml.etree.ElementTree import Element, tostring from .config import PrivacyConfig from .parser import FragmentParser # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Privacy plugin class PrivacyPlugin(BasePlugin[PrivacyConfig]): # Initialize thread pools and asset collections def on_config(self, config): self.site = urlparse(config.site_url or "") if not self.config.enabled: return # Initialize thread pool self.pool = ThreadPoolExecutor(self.config.concurrency) self.pool_jobs: list[Future] = [] # Initialize collections of external assets self.assets = Files([]) self.assets_expr_map = { ".css": r"url\(\s*([\"']?)(?Phttp?[^)'\"]+)\1\s*\)", ".js": r"[\"'](?Phttp[^\"']+\.(?:css|js(?:on)?))[\"']", **self.config.assets_expr_map } # Process external style sheets and scripts (run latest) - run this after # all other plugins, so they can add additional assets @event_priority(-100) def on_files(self, files, *, config): if not self.config.enabled: return # Skip if external assets must not be processed if not self.config.assets: return # Find all external style sheet and script files that are provided as # part of the build (= already known to MkDocs on startup) for initiator in files.media_files(): file = None # Check if the file has dependent external assets that must be # downloaded. Create and enqueue a job for each external asset. for url in self._parse_media(initiator): if not self._is_excluded(url, initiator): file = self._queue(url, config, concurrent = True) # If site URL is not given, ensure that Mermaid.js is always # present. This is a special case, as Material for MkDocs # automatically loads Mermaid.js when a Mermaid diagram is # found in the page - https://bit.ly/36tZXsA. if "mermaid.min.js" in url.path and not config.site_url: script = ExtraScriptValue(url.geturl()) if script not in config.extra_javascript: config.extra_javascript.append(script) # The local asset references at least one external asset, which # means we must download and replace them later if file: self.assets.append(initiator) files.remove(initiator) # Process external style sheet files for path in config.extra_css: url = urlparse(path) if not self._is_excluded(url): self._queue(url, config, concurrent = True) # Process external script files for script in config.extra_javascript: if isinstance(script, str): script = ExtraScriptValue(script) # Enqueue a job if the script needs to downloaded url = urlparse(script.path) if not self._is_excluded(url): self._queue(url, config, concurrent = True) # Process external images in page (run latest) - this stage is the earliest # we can start processing external images, since images are the most common # type of external asset when writing. Thus, we create and enqueue a job for # each image we find that checks if the image needs to be downloaded. @event_priority(-100) def on_page_content(self, html, *, page, config, files): if not self.config.enabled: return # Skip if external assets must not be processed if not self.config.assets: return # Find all external images and download them if not excluded for match in re.findall( r"]+src=['\"]?http[^>]+>", html, flags = re.I | re.M ): el = self._parse_fragment(match) # Create and enqueue job to fetch external image url = urlparse(el.get("src")) if not self._is_excluded(url, page.file): self._queue(url, config, concurrent = True) # Sync all concurrent jobs def on_env(self, env, *, config, files): if not self.config.enabled: return # Wait until all jobs until now are finished wait(self.pool_jobs) # Process external assets in template (run later) @event_priority(-50) def on_post_template(self, output_content, *, template_name, config): if not self.config.enabled: return # Skip sitemap.xml and other non-HTML files if not template_name.endswith(".html"): return # Parse and replace links to external assets in template initiator = File(template_name, config.docs_dir, config.site_dir, False) return self._parse_html(output_content, initiator, config) # Process external assets in page (run later) @event_priority(-50) def on_post_page(self, output, *, page, config): if not self.config.enabled: return # Parse and replace links to external assets return self._parse_html(output, page.file, config) # Reconcile jobs (run earlier) @event_priority(50) def on_post_build(self, *, config): if not self.config.enabled: return # Reconcile concurrent jobs and clear thread pool, as we will reuse the # same thread pool for patching all links to external assets wait(self.pool_jobs) self.pool_jobs.clear() # Spawn concurrent job to patch all links to dependent external asset # in all style sheet and script files for file in self.assets: _, extension = posixpath.splitext(file.dest_uri) if extension in [".css", ".js"]: self.pool_jobs.append(self.pool.submit( self._patch, file )) # Otherwise just copy external asset to output directory else: file.copy_file() # Reconcile concurrent jobs for the last time, so the plugins following # in the build process always have a consistent state to work with wait(self.pool_jobs) self.pool.shutdown() # ------------------------------------------------------------------------- # Check if the given URL is external def _is_external(self, url: URL): hostname = url.hostname or self.site.hostname return hostname != self.site.hostname # Check if the given URL is excluded def _is_excluded(self, url: URL, initiator: File | None = None): if not self._is_external(url): return True # Skip if external assets must not be processed if not self.config.assets: return True # If initiator is given, format for printing via = "" if initiator: via = "".join([ Fore.WHITE, Style.DIM, f"in '{initiator.src_uri}' ", Style.RESET_ALL ]) # Print warning if fetching is not enabled if not self.config.assets_fetch: log.warning(f"External file: {url.geturl()} {via}") return True # File is not excluded return False # ------------------------------------------------------------------------- # Parse a fragment def _parse_fragment(self, fragment: str): parser = FragmentParser() parser.feed(fragment) parser.close() # Check parse result and return element if isinstance(parser.result, Element): return parser.result # Otherwise, raise a plugin error - if the author accidentally used # invalid HTML inside of the tag, e.g., forget a opening or closing # quote, we need to catch this here, as we're using pretty basic # regular expression based extraction raise PluginError( f"Could not parse due to possible syntax error in HTML: \n\n" + fragment ) # Parse and extract all external assets from a media file using a preset # regular expression, and return all URLs found. def _parse_media(self, initiator: File) -> list[URL]: _, extension = posixpath.splitext(initiator.dest_uri) if extension not in self.assets_expr_map: return [] # Skip if source path is not set, which might be true for generated # files or for files that were added programatically in plugins if not initiator.abs_src_path: return [] # Find and extract all external asset URLs expr = re.compile(self.assets_expr_map[extension], flags = re.I | re.M) with open(initiator.abs_src_path, encoding = "utf-8-sig") as f: results = re.finditer(expr, f.read()) return [urlparse(result.group("url")) for result in results] # Parse template or page HTML and find all external links that need to be # replaced. Many of the assets should already be downloaded earlier, i.e., # everything that was directly referenced in the document, but there may # still exist external assets that were added by third-party plugins. def _parse_html(self, output: str, initiator: File, config: MkDocsConfig): # Resolve callback def resolve(file: File): if is_error_template(initiator.src_uri): base = urlparse(config.site_url or "/") return posixpath.join(base.path, file.url) else: return file.url_relative_to(initiator) # Replace callback def replace(match: Match): el = self._parse_fragment(match.group()) # Handle external style sheet or preconnect hint if el.tag == "link": url = urlparse(el.get("href")) if not self._is_excluded(url, initiator): rel = el.get("rel", "") # Replace external preconnect hint if rel == "preconnect": return "" # Replace external favicon, preload hint or style sheet if rel in ("icon", "preload", "stylesheet"): file = self._queue(url, config) el.set("href", resolve(file)) # Handle external script or image if el.tag == "script" or el.tag == "img": url = urlparse(el.get("src")) if not self._is_excluded(url, initiator): file = self._queue(url, config) el.set("src", resolve(file)) # Handle external image in SVG if el.tag == "image": url = urlparse(el.get("href")) if not self._is_excluded(url, initiator): file = self._queue(url, config) el.set("href", resolve(file)) # Return element as string return self._print(el) # Find and replace all external asset URLs in current page return re.sub( r"<(?:(?:a|link|image)[^>]+href|(?:script|img)[^>]+src)=['\"]?http[^>]+>", replace, output, flags = re.I | re.M ) # ------------------------------------------------------------------------- # Print element as string - what could possibly go wrong? We're parsing # HTML5 with an XML parser, and XML doesn't allow for boolean attributes, # which is why we must add a dummy value to all attributes that are not # strings before printing the element as string. def _print(self, el: Element): temp = "__temp__" for name in el.attrib: if not isinstance(el.attrib[name], str): el.attrib[name] = temp # Return void or opening tag as string, strip closing tag data = tostring(el, encoding = "unicode") return data.replace(" />", ">").replace(f"=\"{temp}\"", "") # Enqueue external asset for download, if not already done def _queue(self, url: URL, config: MkDocsConfig, concurrent = False): path = self._path_from_url(url) full = posixpath.join(self.config.assets_fetch_dir, path) # Try to retrieve existing file file = self.assets.get_file_from_path(full) if not file: # Compute path to external asset, which is sourced from the cache # directory, and generate file to register it with MkDocs as soon # as it was downloaded. This allows other plugins to apply # additional processing. file = self._path_to_file(path, config) file.url = url.geturl() # Spawn concurrent job to fetch external asset if the extension is # known and the concurrent flag is set. In that case, this function # is called in a context where no replacements are carried out, so # the caller must only ensure to reconcile the concurrent jobs. _, extension = posixpath.splitext(url.path) if extension and concurrent: self.pool_jobs.append(self.pool.submit( self._fetch, file, config )) # Fetch external asset synchronously, as it either has no extension # or is fetched from a context in which replacements are done else: self._fetch(file, config) # Register external asset as file - it might have already been # registered, and since MkDocs 1.6, trigger a deprecation warning if not self.assets.get_file_from_path(file.src_uri): self.assets.append(file) # If the URL of the external asset includes a hash fragment, add it to # the returned file, e.g. for dark/light images - see https://t.ly/7b16Y if url.fragment: file.url += f"#{url.fragment}" # Return file associated with external asset return file # Fetch external asset referenced through the given file def _fetch(self, file: File, config: MkDocsConfig): # Check if external asset needs to be downloaded if not os.path.isfile(file.abs_src_path) or not self.config.cache: path = file.abs_src_path # Download external asset log.info(f"Downloading external file: {file.url}") res = requests.get(file.url, headers = { # Set user agent explicitly, so Google Fonts gives us *.woff2 # files, which according to caniuse.com is the only format we # need to download as it covers the entire range of browsers # we're officially supporting. "User-Agent": " ".join([ "Mozilla/5.0 (Windows NT 10.0; Win64; x64)", "AppleWebKit/537.36 (KHTML, like Gecko)", "Chrome/98.0.4758.102 Safari/537.36" ]) }) # Compute expected file extension and append if missing mime = res.headers["content-type"].split(";")[0] extension = extensions.get(mime) if extension and not path.endswith(extension): path += extension # Save to file and create symlink if no extension was present self._save_to_file(path, res.content) if path != file.abs_src_path: # Creating symlinks might fail on Windows. Thus, we just print # a warning and continue - see https://bit.ly/3xYFzcZ try: os.symlink(os.path.basename(path), file.abs_src_path) except OSError as e: if e.errno != errno.EEXIST: log.warning( f"Couldn't create symbolic link: {file.src_uri}" ) # Fall back for when the symlink could not be created. This # means that the plugin will download the original file on # every build, as the content type cannot be resolved from # the file extension. file.abs_src_path = path # Resolve destination if file points to a symlink _, extension = os.path.splitext(file.abs_src_path) if os.path.isfile(file.abs_src_path): file.abs_src_path = os.path.realpath(file.abs_src_path) _, extension = os.path.splitext(file.abs_src_path) # If the symlink could not be created, we already set the correct # extension, so we need to make sure not to append it again if not file.abs_dest_path.endswith(extension): file.src_uri += extension # Compute destination file system path file.dest_uri += extension file.abs_dest_path += extension # Compute destination URL file.url = file.dest_uri # Parse and enqueue dependent external assets for url in self._parse_media(file): if not self._is_excluded(url, file): self._queue(url, config, concurrent = True) # Patch all links to external assets in the given file def _patch(self, initiator: File): with open(initiator.abs_src_path, encoding = "utf-8-sig") as f: # Replace callback def replace(match: Match): value = match.group("url") # Map URL to canonical path path = self._path_from_url(urlparse(value)) full = posixpath.join(self.config.assets_fetch_dir, path) # Try to retrieve existing file file = self.assets.get_file_from_path(full) if not file: name = os.readlink(os.path.join(self.config.cache_dir, full)) full = posixpath.join(posixpath.dirname(full), name) # Try again after resolving symlink file = self.assets.get_file_from_path(full) # This can theoretically never happen, as we're sure that we # only replace files that we successfully extracted. However, # we might have missed several cases, so it's better to throw # here than to swallow the error. if not file: log.error( "File not found. This is likely a bug in the built-in " "privacy plugin. Please create an issue with a minimal " "reproduction." ) sys.exit(1) # Create absolute URL for asset in script if file.url.endswith(".js"): url = posixpath.join(self.site.geturl(), file.url) # Create relative URL for everything else else: url = file.url_relative_to(initiator) # Switch external asset URL to local path return match.group().replace(value, url) # Resolve replacement expression according to asset type _, extension = posixpath.splitext(initiator.dest_uri) expr = re.compile(self.assets_expr_map[extension], re.I | re.M) # Resolve links to external assets in file self._save_to_file( initiator.abs_dest_path, expr.sub(replace, f.read()) ) # ------------------------------------------------------------------------- # Normalize (= canonicalize) path by removing trailing slashes, and ensure # that hidden folders (`.` after `/`) are unhidden. Otherwise MkDocs will # not consider them being part of the build and refuse to copy them. def _path_from_url(self, url: URL): path = posixpath.normpath(url.path) path = re.sub(r"/\.", "/_", path) # Compute digest of query string, as some URLs yield different results # for different query strings, e.g. https://unsplash.com/random?Coffee if url.query: name, extension = posixpath.splitext(path) # Inject digest after file name and before file extension, as # done for style sheet and script files as well digest = sha1(url.query.encode("utf-8")).hexdigest()[:8] path = f"{name}.{digest}{extension}" # Create and return URL without leading double slashes url = url._replace(scheme = "", query = "", fragment = "", path = path) return url.geturl()[2:] # Create a file for the given path def _path_to_file(self, path: str, config: MkDocsConfig): return File( posixpath.join(self.config.assets_fetch_dir, unquote(path)), os.path.abspath(self.config.cache_dir), config.site_dir, False ) # Create a file on the system with the given content def _save_to_file(self, path: str, content: str | bytes): os.makedirs(os.path.dirname(path), exist_ok = True) if isinstance(content, str): content = bytes(content, "utf-8") with open(path, "wb") as f: f.write(content) # ----------------------------------------------------------------------------- # Data # ----------------------------------------------------------------------------- # Set up logging log = logging.getLogger("mkdocs.material.privacy") # Expected file extensions extensions = { "application/javascript": ".js", "image/avif": ".avif", "image/gif": ".gif", "image/jpeg": ".jpg", "image/png": ".png", "image/svg+xml": ".svg", "image/webp": ".webp", "text/javascript": ".js", "text/css": ".css" } mkdocs-material-9.6.4/src/plugins/search/000077500000000000000000000000001475306445600203415ustar00rootroot00000000000000mkdocs-material-9.6.4/src/plugins/search/__init__.py000066400000000000000000000021451475306445600224540ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. mkdocs-material-9.6.4/src/plugins/search/config.py000066400000000000000000000045111475306445600221610ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from mkdocs.config.config_options import ( Choice, Deprecated, Optional, ListOfItems, Type ) from mkdocs.config.base import Config from mkdocs.contrib.search import LangOption # ----------------------------------------------------------------------------- # Options # ----------------------------------------------------------------------------- # Options for search pipeline pipeline = ("stemmer", "stopWordFilter", "trimmer") # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Search plugin configuration class SearchConfig(Config): enabled = Type(bool, default = True) # Settings for search lang = Optional(LangOption()) separator = Optional(Type(str)) pipeline = Optional(ListOfItems(Choice(pipeline))) # Settings for text segmentation (Chinese) jieba_dict = Optional(Type(str)) jieba_dict_user = Optional(Type(str)) # Unsupported settings, originally implemented in MkDocs indexing = Deprecated(message = "Unsupported option") prebuild_index = Deprecated(message = "Unsupported option") min_search_length = Deprecated(message = "Unsupported option") mkdocs-material-9.6.4/src/plugins/search/plugin.py000066400000000000000000000466431475306445600222260ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. import json import logging import os import regex as re from html import escape from html.parser import HTMLParser from mkdocs import utils from mkdocs.plugins import BasePlugin from .config import SearchConfig try: import jieba except ImportError: jieba = None # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Search plugin class SearchPlugin(BasePlugin[SearchConfig]): # Initialize plugin def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) # Initialize incremental builds self.is_dirty = False self.is_dirtyreload = False # Initialize search index cache self.search_index_prev = None # Determine whether we're serving the site def on_startup(self, *, command, dirty): self.is_dirty = dirty # Initialize plugin def on_config(self, config): if not self.config.enabled: return # Retrieve default value for language if not self.config.lang: self.config.lang = [self._translate( config, "search.config.lang" )] # Retrieve default value for separator if not self.config.separator: self.config.separator = self._translate( config, "search.config.separator" ) # Retrieve default value for pipeline if self.config.pipeline is None: self.config.pipeline = list(filter(len, re.split( r"\s*,\s*", self._translate(config, "search.config.pipeline") ))) # Initialize search index self.search_index = SearchIndex(**self.config) # Set jieba dictionary, if given if self.config.jieba_dict: path = os.path.normpath(self.config.jieba_dict) if os.path.isfile(path): jieba.set_dictionary(path) log.debug(f"Loading jieba dictionary: {path}") else: log.warning( f"Configuration error for 'search.jieba_dict': " f"'{self.config.jieba_dict}' does not exist." ) # Set jieba user dictionary, if given if self.config.jieba_dict_user: path = os.path.normpath(self.config.jieba_dict_user) if os.path.isfile(path): jieba.load_userdict(path) log.debug(f"Loading jieba user dictionary: {path}") else: log.warning( f"Configuration error for 'search.jieba_dict_user': " f"'{self.config.jieba_dict_user}' does not exist." ) # Add page to search index def on_page_context(self, context, *, page, config, nav): if not self.config.enabled: return # Index page self.search_index.add_entry_from_context(page) page.content = re.sub( r"\s?data-search-\w+=\"[^\"]+\"", "", page.content ) # Generate search index def on_post_build(self, *, config): if not self.config.enabled: return # Write search index base = os.path.join(config.site_dir, "search") path = os.path.join(base, "search_index.json") # Generate and write search index to file data = self.search_index.generate_search_index(self.search_index_prev) utils.write_file(data.encode("utf-8"), path) # Persist search index for repeated invocation if self.is_dirty: self.search_index_prev = self.search_index # Determine whether we're running under dirty reload def on_serve(self, server, *, config, builder): self.is_dirtyreload = self.is_dirty # ------------------------------------------------------------------------- # Translate the given placeholder value def _translate(self, config, value): env = config.theme.get_env() # Load language template and return translation for placeholder language = "partials/language.html" template = env.get_template(language, None, { "config": config }) return template.module.t(value) # ----------------------------------------------------------------------------- # Search index with support for additional fields class SearchIndex: # Initialize search index def __init__(self, **config): self.config = config self.entries = [] # Add page to search index def add_entry_from_context(self, page): search = page.meta.get("search") or {} if search.get("exclude"): return # Divide page content into sections parser = Parser() parser.feed(page.content) parser.close() # Add sections to index for section in parser.data: if not section.is_excluded(): self.create_entry_for_section(section, page.toc, page.url, page) # Override: graceful indexing and additional fields def create_entry_for_section(self, section, toc, url, page): item = self._find_toc_by_id(toc, section.id) if item: url = url + item.url elif section.id: url = url + "#" + section.id # Set page title as section title if none was given, which happens when # the first headline in a Markdown document is not a h1 headline. Also, # if a page title was set via front matter, use that even though a h1 # might be given or the page name was specified in nav in mkdocs.yml if not section.title: section.title = [str(page.meta.get("title", page.title))] # Compute title and text title = "".join(section.title).strip() text = "".join(section.text).strip() # Segment Chinese characters if jieba is available if jieba: title = self._segment_chinese(title) text = self._segment_chinese(text) # Create entry for section entry = { "location": url, "title": title, "text": text } # Set document tags tags = page.meta.get("tags") if isinstance(tags, list): entry["tags"] = [] for name in tags: if name and isinstance(name, (str, int, float, bool)): entry["tags"].append(str(name)) # Set document boost search = page.meta.get("search") or {} if "boost" in search: entry["boost"] = search["boost"] # Add entry to index self.entries.append(entry) # Generate search index def generate_search_index(self, prev): config = { key: self.config[key] for key in ["lang", "separator", "pipeline"] } # Hack: if we're running under dirty reload, the search index will only # include the entries for the current page. However, MkDocs > 1.4 allows # us to persist plugin state across rebuilds, which is exactly what we # do by passing the previously built index to this method. Thus, we just # remove the previous entries for the current page, and append the new # entries to the end of the index, as order doesn't matter. if prev and self.entries: path = self.entries[0]["location"] # Since we're sure that we're running under dirty reload, the list # of entries will only contain sections for a single page. Thus, we # use the first entry to remove all entries from the previous run # that belong to the current page. The rationale behind this is that # authors might add or remove section headers, so we need to make # sure that sections are synchronized correctly. entries = [ entry for entry in prev.entries if not entry["location"].startswith(path) ] # Merge previous with current entries self.entries = entries + self.entries # Otherwise just set previous entries if prev and not self.entries: self.entries = prev.entries # Return search index as JSON data = { "config": config, "docs": self.entries } return json.dumps( data, separators = (",", ":"), default = str ) # ------------------------------------------------------------------------- # Retrieve item for anchor def _find_toc_by_id(self, toc, id): for toc_item in toc: if toc_item.id == id: return toc_item # Recurse into children of item toc_item = self._find_toc_by_id(toc_item.children, id) if toc_item is not None: return toc_item # No item found return None # Find and segment Chinese characters in string def _segment_chinese(self, data): expr = re.compile(r"(\p{IsHan}+)", re.UNICODE) # Replace callback def replace(match): value = match.group(0) # Replace occurrence in original string with segmented version and # surround with zero-width whitespace for efficient indexing return "".join([ "\u200b", "\u200b".join(jieba.cut(value.encode("utf-8"))), "\u200b", ]) # Return string with segmented occurrences return expr.sub(replace, data).strip("\u200b") # ----------------------------------------------------------------------------- # HTML element class Element: """ An element with attributes, essentially a small wrapper object for the parser to access attributes in other callbacks than handle_starttag. """ # Initialize HTML element def __init__(self, tag, attrs = None): self.tag = tag self.attrs = attrs or {} # String representation def __repr__(self): return self.tag # Support comparison (compare by tag only) def __eq__(self, other): if other is Element: return self.tag == other.tag else: return self.tag == other # Support set operations def __hash__(self): return hash(self.tag) # Check whether the element should be excluded def is_excluded(self): return "data-search-exclude" in self.attrs # ----------------------------------------------------------------------------- # HTML section class Section: """ A block of text with markup, preceded by a title (with markup), i.e., a headline with a certain level (h1-h6). Internally used by the parser. """ # Initialize HTML section def __init__(self, el, depth = 0): self.el = el self.depth = depth # Initialize section data self.text = [] self.title = [] self.id = None # String representation def __repr__(self): if self.id: return "#".join([self.el.tag, self.id]) else: return self.el.tag # Check whether the section should be excluded def is_excluded(self): return self.el.is_excluded() # ----------------------------------------------------------------------------- # HTML parser class Parser(HTMLParser): """ This parser divides the given string of HTML into a list of sections, each of which are preceded by a h1-h6 level heading. A white- and blacklist of tags dictates which tags should be preserved as part of the index, and which should be ignored in their entirety. """ # Initialize HTML parser def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) # Tags to skip self.skip = set([ "object", # Objects "script", # Scripts "style" # Styles ]) # Tags to keep self.keep = set([ "p", # Paragraphs "code", "pre", # Code blocks "li", "ol", "ul", # Lists "sub", "sup" # Sub- and superscripts ]) # Current context and section self.context = [] self.section = None # All parsed sections self.data = [] # Called at the start of every HTML tag def handle_starttag(self, tag, attrs): attrs = dict(attrs) # Ignore self-closing tags el = Element(tag, attrs) if not tag in void: self.context.append(el) else: return # Handle heading if tag in ([f"h{x}" for x in range(1, 7)]): depth = len(self.context) if "id" in attrs: # Ensure top-level section if tag != "h1" and not self.data: self.section = Section(Element("hx"), depth) self.data.append(self.section) # Set identifier, if not first section self.section = Section(el, depth) if self.data: self.section.id = attrs["id"] # Append section to list self.data.append(self.section) # Handle preface - ensure top-level section if not self.section: self.section = Section(Element("hx")) self.data.append(self.section) # Handle special cases to skip for key, value in attrs.items(): # Skip block if explicitly excluded from search if key == "data-search-exclude": self.skip.add(el) return # Skip line numbers - see https://bit.ly/3GvubZx if key == "class" and value == "linenodiv": self.skip.add(el) return # Render opening tag if kept if not self.skip.intersection(self.context) and tag in self.keep: # Check whether we're inside the section title data = self.section.text if self.section.el in self.context: data = self.section.title # Append to section title or text data.append(f"<{tag}>") # Called at the end of every HTML tag def handle_endtag(self, tag): if not self.context or self.context[-1] != tag: return # Check whether we're exiting the current context, which happens when # a headline is nested in another element. In that case, we close the # current section, continuing to append data to the previous section, # which could also be a nested section – see https://bit.ly/3IxxIJZ if self.section.depth > len(self.context): for section in reversed(self.data): if section.depth <= len(self.context): # Set depth to infinity in order to denote that the current # section is exited and must never be considered again. self.section.depth = float("inf") self.section = section break # Remove element from skip list el = self.context.pop() if el in self.skip: if el.tag not in ["script", "style", "object"]: self.skip.remove(el) return # Render closing tag if kept if not self.skip.intersection(self.context) and tag in self.keep: # Check whether we're inside the section title data = self.section.text if self.section.el in self.context: data = self.section.title # Search for corresponding opening tag index = data.index(f"<{tag}>") for i in range(index + 1, len(data)): if not data[i].isspace(): index = len(data) break # Remove element if empty (or only whitespace) if len(data) > index: while len(data) > index: data.pop() # Append to section title or text else: data.append(f"") # Called for the text contents of each tag def handle_data(self, data): if self.skip.intersection(self.context): return # Collapse whitespace in non-pre contexts if not "pre" in self.context: if not data.isspace(): data = data.replace("\n", " ") else: data = " " # Handle preface - ensure top-level section if not self.section: self.section = Section(Element("hx")) self.data.append(self.section) # Handle section headline if self.section.el in self.context: permalink = False for el in self.context: if el.tag == "a" and el.attrs.get("class") == "headerlink": permalink = True # Ignore permalinks if not permalink: self.section.title.append( escape(data, quote = False) ) # Collapse adjacent whitespace elif data.isspace(): if not self.section.text or not self.section.text[-1].isspace(): self.section.text.append(data) elif "pre" in self.context: self.section.text.append(data) # Handle everything else else: self.section.text.append( escape(data, quote = False) ) # ----------------------------------------------------------------------------- # Data # ----------------------------------------------------------------------------- # Set up logging log = logging.getLogger("mkdocs.material.search") # Tags that are self-closing void = set([ "area", # Image map areas "base", # Document base "br", # Line breaks "col", # Table columns "embed", # External content "hr", # Horizontal rules "img", # Images "input", # Input fields "link", # Links "meta", # Metadata "param", # External parameters "source", # Image source sets "track", # Text track "wbr" # Line break opportunities ]) mkdocs-material-9.6.4/src/plugins/social/000077500000000000000000000000001475306445600203465ustar00rootroot00000000000000mkdocs-material-9.6.4/src/plugins/social/__init__.py000066400000000000000000000021451475306445600224610ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. mkdocs-material-9.6.4/src/plugins/social/config.py000066400000000000000000000041411475306445600221650ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from mkdocs.config.base import Config from mkdocs.config.config_options import Deprecated, Type # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Social plugin configuration class SocialConfig(Config): enabled = Type(bool, default = True) cache_dir = Type(str, default = ".cache/plugin/social") # Settings for social cards cards = Type(bool, default = True) cards_dir = Type(str, default = "assets/images/social") cards_layout_options = Type(dict, default = {}) # Deprecated settings cards_color = Deprecated( option_type = Type(dict, default = {}), message = "Deprecated, use 'cards_layout_options.background_color' " "and 'cards_layout_options.color' with 'default' layout" ) cards_font = Deprecated( option_type = Type(str), message = "Deprecated, use 'cards_layout_options.font_family'" ) mkdocs-material-9.6.4/src/plugins/social/plugin.py000066400000000000000000000522011475306445600222160ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # ----------------------------------------------------------------------------- # Disclaimer # ----------------------------------------------------------------------------- # Please note: this version of the social plugin is not actively development # anymore. Instead, Material for MkDocs Insiders ships a complete rewrite of # the plugin which is much more powerful and addresses all shortcomings of # this implementation. Additionally, the new social plugin allows to create # entirely custom social cards. You can probably imagine, that this was a lot # of work to pull off. If you run into problems, or want to have additional # functionality, please consider sponsoring the project. You can then use the # new version of the plugin immediately. # ----------------------------------------------------------------------------- import concurrent.futures import functools import logging import os import posixpath import re import requests import sys from collections import defaultdict from hashlib import md5 from html import unescape from io import BytesIO from mkdocs.commands.build import DuplicateFilter from mkdocs.exceptions import PluginError from mkdocs.plugins import BasePlugin from mkdocs.utils import write_file from shutil import copyfile from .config import SocialConfig try: from PIL import Image, ImageDraw, ImageFont except ImportError as e: import_errors = {repr(e)} else: import_errors = set() cairosvg_error: str = "" try: from cairosvg import svg2png except ImportError as e: import_errors.add(repr(e)) except OSError as e: cairosvg_error = str(e) # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Social plugin class SocialPlugin(BasePlugin[SocialConfig]): def __init__(self): self._executor = concurrent.futures.ThreadPoolExecutor(4) # Retrieve configuration def on_config(self, config): self.color = colors.get("indigo") if not self.config.enabled: self.config.cards = False if not self.config.cards: return # Check dependencies if import_errors: raise PluginError( "Required dependencies of \"social\" plugin not found:\n" + str("\n".join(map(lambda x: "- " + x, import_errors))) + "\n\n--> Install with: pip install \"mkdocs-material[imaging]\"" ) if cairosvg_error: raise PluginError( "\"cairosvg\" Python module is installed, but it crashed with:\n" + cairosvg_error + "\n\n--> Check out the troubleshooting guide: https://t.ly/MfX6u" ) # Move color options if self.config.cards_color: # Move background color to new option value = self.config.cards_color.get("fill") if value: self.config.cards_layout_options["background_color"] = value # Move color to new option value = self.config.cards_color.get("text") if value: self.config.cards_layout_options["color"] = value # Move font family to new option if self.config.cards_font: value = self.config.cards_font self.config.cards_layout_options["font_family"] = value # Check if site URL is defined if not config.site_url: log.warning( "The \"site_url\" option is not set. The cards are generated, " "but not linked, so they won't be visible on social media." ) # Ensure presence of cache directory self.cache = self.config.cache_dir if not os.path.isdir(self.cache): os.makedirs(self.cache) # Retrieve palette from theme configuration theme = config.theme if "palette" in theme: palette = theme["palette"] # Find first palette that includes primary color definition if isinstance(palette, list): for p in palette: if "primary" in p and p["primary"]: palette = p break # Set colors according to palette if "primary" in palette and palette["primary"]: primary = palette["primary"].replace(" ", "-") self.color = colors.get(primary, self.color) # Retrieve color overrides options = self.config.cards_layout_options self.color = { "fill": options.get("background_color", self.color["fill"]), "text": options.get("color", self.color["text"]) } # Retrieve logo and font self._resized_logo_promise = self._executor.submit(self._load_resized_logo, config) self.font = self._load_font(config) self._image_promises = [] # Create social cards def on_page_content(self, html, page, config, files): if not self.config.cards: return # Resolve image directory directory = self.config.cards_dir file, _ = os.path.splitext(page.file.src_path) # Resolve path of image path = "{}.png".format(os.path.join( config.site_dir, directory, file )) # Resolve path of image directory directory = os.path.dirname(path) if not os.path.isdir(directory): os.makedirs(directory) # Compute site name site_name = config.site_name # Compute page title and description title = page.meta.get("title", page.title) description = config.site_description or "" if "description" in page.meta: description = page.meta["description"] # Check type of meta title - see https://t.ly/m1Us if not isinstance(title, str): log.error( f"Page meta title of page '{page.file.src_uri}' must be a " f"string, but is of type \"{type(title)}\"." ) sys.exit(1) # Check type of meta description - see https://t.ly/m1Us if not isinstance(description, str): log.error( f"Page meta description of '{page.file.src_uri}' must be a " f"string, but is of type \"{type(description)}\"." ) sys.exit(1) # Generate social card if not in cache hash = md5("".join([ site_name, str(title), description ]).encode("utf-8")) file = os.path.join(self.cache, f"{hash.hexdigest()}.png") self._image_promises.append(self._executor.submit( self._cache_image, cache_path = file, dest_path = path, render_function = lambda: self._render_card(site_name, title, description) )) # Inject meta tags into page meta = page.meta.get("meta", []) page.meta["meta"] = meta + self._generate_meta(page, config) def on_post_build(self, config): if not self.config.cards: return # Check for exceptions for promise in self._image_promises: promise.result() # ------------------------------------------------------------------------- # Render image to cache (if not present), then copy from cache to site def _cache_image(self, cache_path, dest_path, render_function): if not os.path.isfile(cache_path): image = render_function() image.save(cache_path) # Copy file from cache copyfile(cache_path, dest_path) @functools.lru_cache(maxsize=None) def _get_font(self, kind, size): return ImageFont.truetype(self.font[kind], size) # Render social card def _render_card(self, site_name, title, description): # Render background and logo image = self._render_card_background((1200, 630), self.color["fill"]) image.alpha_composite( self._resized_logo_promise.result(), (1200 - 228, 64 - 4) ) # Render site name font = self._get_font("Bold", 36) image.alpha_composite( self._render_text((826, 48), font, site_name, 1, 20), (64 + 4, 64) ) # Render page title font = self._get_font("Bold", 92) image.alpha_composite( self._render_text((826, 328), font, title, 3, 30), (64, 160) ) # Render page description font = self._get_font("Regular", 28) image.alpha_composite( self._render_text((826, 80), font, description, 2, 14), (64 + 4, 512) ) # Return social card image return image # Render social card background def _render_card_background(self, size, fill): return Image.new(mode = "RGBA", size = size, color = fill) @functools.lru_cache(maxsize=None) def _tmp_context(self): image = Image.new(mode = "RGBA", size = (50, 50)) return ImageDraw.Draw(image) @functools.lru_cache(maxsize=None) def _text_bounding_box(self, text, font): return self._tmp_context().textbbox((0, 0), text, font = font) # Render social card text def _render_text(self, size, font, text, lmax, spacing = 0): width = size[0] lines, words = [], [] # Remove remnant HTML tags and convert HTML entities text = re.sub(r"(<[^>]+>)", "", text) text = unescape(text) # Retrieve y-offset of textbox to correct for spacing yoffset = 0 # Create drawing context and split text into lines for word in text.split(" "): combine = " ".join(words + [word]) textbox = self._text_bounding_box(combine, font = font) yoffset = textbox[1] if not words or textbox[2] <= width: words.append(word) else: lines.append(words) words = [word] # Join words for each line and create image lines.append(words) lines = [" ".join(line) for line in lines] image = Image.new(mode = "RGBA", size = size) # Create drawing context and split text into lines context = ImageDraw.Draw(image) context.text( (0, spacing / 2 - yoffset), "\n".join(lines[:lmax]), font = font, fill = self.color["text"], spacing = spacing - yoffset ) # Return text image return image # ------------------------------------------------------------------------- # Generate meta tags def _generate_meta(self, page, config): directory = self.config.cards_dir file, _ = os.path.splitext(page.file.src_uri) # Compute page title if page.is_homepage: title = config.site_name else: page_title = page.meta.get("title", page.title) title = f"{page_title} - {config.site_name}" # Compute page description description = config.site_description if "description" in page.meta: description = page.meta["description"] # Resolve image URL url = "{}.png".format(posixpath.join( config.site_url or ".", directory, file )) # Ensure forward slashes url = url.replace(os.path.sep, "/") # Return meta tags return [ # Meta tags for Open Graph { "property": "og:type", "content": "website" }, { "property": "og:title", "content": title }, { "property": "og:description", "content": description }, { "property": "og:image", "content": url }, { "property": "og:image:type", "content": "image/png" }, { "property": "og:image:width", "content": "1200" }, { "property": "og:image:height", "content": "630" }, { "property": "og:url", "content": page.canonical_url }, # Meta tags for Twitter { "name": "twitter:card", "content": "summary_large_image" }, # { "name": "twitter:site", "content": user }, # { "name": "twitter:creator", "content": user }, { "name": "twitter:title", "content": title }, { "name": "twitter:description", "content": description }, { "name": "twitter:image", "content": url } ] def _load_resized_logo(self, config, width = 144): logo = self._load_logo(config) height = int(width * logo.height / logo.width) return logo.resize((width, height)) # Retrieve logo image or icon def _load_logo(self, config): theme = config.theme # Handle images (precedence over icons) if "logo" in theme: _, extension = os.path.splitext(theme["logo"]) path = os.path.join(config.docs_dir, theme["logo"]) # Allow users to put the logo inside their custom_dir (theme["logo"] case) if theme.custom_dir: custom_dir_logo = os.path.join(theme.custom_dir, theme["logo"]) if os.path.exists(custom_dir_logo): path = custom_dir_logo # Load SVG and convert to PNG if extension == ".svg": return self._load_logo_svg(path) # Load PNG, JPEG, etc. return Image.open(path).convert("RGBA") # Handle icons icon = theme.get("icon") or {} if "logo" in icon and icon["logo"]: logo = icon["logo"] else: logo = "material/library" # Resolve path of package base = os.path.abspath(os.path.join( os.path.dirname(__file__), "../.." )) path = f"{base}/templates/.icons/{logo}.svg" # Allow users to put the logo inside their custom_dir (theme["icon"]["logo"] case) if theme.custom_dir: custom_dir_logo = os.path.join(theme.custom_dir, ".icons", f"{logo}.svg") if os.path.exists(custom_dir_logo): path = custom_dir_logo # Load icon data and fill with color return self._load_logo_svg(path, self.color["text"]) # Load SVG file and convert to PNG def _load_logo_svg(self, path, fill = None): file = BytesIO() data = open(path).read() # Fill with color, if given if fill: data = data.replace(" # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from .structure.mapping import Mapping from .structure.tag import Tag # ----------------------------------------------------------------------------- # Functions # ----------------------------------------------------------------------------- # Return tag name for sorting def tag_name(tag: Tag, *args): return tag.name # Return casefolded tag name for sorting def tag_name_casefold(tag: Tag, *args): return tag.name.casefold() # ----------------------------------------------------------------------------- # Return item title for sorting def item_title(mapping: Mapping): # Note that this must be coerced to a string, as the title might be sourced # from metadata, which can be of any type - see https://t.ly/1AXyo return str(mapping.item.title) # Return item URL for sorting def item_url(mapping: Mapping): return mapping.item.url mkdocs-material-9.6.4/src/plugins/tags/config.py000066400000000000000000000062701475306445600216560ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from collections.abc import Callable from material.utilities.filter import FilterConfig from mkdocs.config.config_options import ( DictOfItems, Deprecated, ListOfItems, SubConfig, Type ) from mkdocs.config.base import Config from pymdownx.slugs import slugify from . import item_title, tag_name from .structure.listing import ListingConfig from .structure.tag.options import TagSet # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- # Tags plugin configuration class TagsConfig(Config): enabled = Type(bool, default = True) # Settings for filtering filters = SubConfig(FilterConfig) # Settings for tags tags = Type(bool, default = True) tags_slugify = Type(Callable, default = slugify(case = "lower")) tags_slugify_separator = Type(str, default = "-") tags_slugify_format = Type(str, default = "tag:{slug}") tags_sort_by = Type(Callable, default = tag_name) tags_sort_reverse = Type(bool, default = False) tags_name_property = Type(str, default = "tags") tags_name_variable = Type(str, default = "tags") tags_allowed = TagSet() # Settings for listings listings = Type(bool, default = True) listings_map = DictOfItems(SubConfig(ListingConfig), default = {}) listings_sort_by = Type(Callable, default = item_title) listings_sort_reverse = Type(bool, default = False) listings_tags_sort_by = Type(Callable, default = tag_name) listings_tags_sort_reverse = Type(bool, default = False) listings_directive = Type(str, default = "material/tags") listings_layout = Type(str, default = "default") # Deprecated settings tags_compare = Deprecated(moved_to = "tags_sort_by") tags_compare_reverse = Deprecated(moved_to = "tags_sort_reverse") tags_pages_compare = Deprecated(moved_to = "listings_sort_by") tags_pages_compare_reverse = Deprecated(moved_to = "listings_sort_reverse") tags_file = Deprecated( option_type = Type(str), message = "This setting is not required anymore" ) mkdocs-material-9.6.4/src/plugins/tags/plugin.py000066400000000000000000000177271475306445600217200ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations import logging import os import re from jinja2 import Environment from material.utilities.filter import FileFilter from mkdocs.config.defaults import MkDocsConfig from mkdocs.exceptions import PluginError from mkdocs.plugins import BasePlugin, event_priority from mkdocs.structure.pages import Page from mkdocs.utils.templates import TemplateContext from .config import TagsConfig from .renderer import Renderer from .structure.listing.manager import ListingManager from .structure.mapping.manager import MappingManager # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- class TagsPlugin(BasePlugin[TagsConfig]): """ A tags plugin. """ supports_multiple_instances = True """ This plugin supports multiple instances. """ def __init__(self, *args, **kwargs): """ Initialize the plugin. """ super().__init__(*args, **kwargs) # Initialize incremental builds self.is_serve = False # Initialize mapping and listing managers self.mappings = None self.listings = None # ------------------------------------------------------------------------- mappings: MappingManager """ Mapping manager. """ listings: ListingManager """ Listing manager. """ filter: FileFilter """ File filter. """ # ------------------------------------------------------------------------- def on_startup(self, *, command, **kwargs) -> None: """ Determine whether we're serving the site. Arguments: command: The command that is being executed. dirty: Whether dirty builds are enabled. """ self.is_serve = command == "serve" def on_config(self, config: MkDocsConfig) -> None: """ Create mapping and listing managers. """ # Retrieve toc depth, so we know the maximum level at which we can add # items to the table of contents - Python Markdown allows to set the # toc depth as a range, e.g. `2-6`, so we need to account for that as # well. We need this information for generating listings. depth = config.mdx_configs.get("toc", {}).get("toc_depth", 6) if not isinstance(depth, int) and "-" in depth: _, depth = depth.split("-") # Initialize mapping and listing managers self.mappings = MappingManager(self.config) self.listings = ListingManager(self.config, int(depth)) # Initialize file filter - the file filter is used to include or exclude # entire subsections of the documentation, allowing for using multiple # instances of the plugin alongside each other. This can be necessary # when creating multiple, potentially conflicting listings. self.filter = FileFilter(self.config.filters) # Ensure presence of attribute lists extension for extension in config.markdown_extensions: if isinstance(extension, str) and extension.endswith("attr_list"): break else: config.markdown_extensions.append("attr_list") @event_priority(-50) def on_page_markdown( self, markdown: str, *, page: Page, config: MkDocsConfig, **kwargs ) -> str: """ Collect tags and listings from page. Priority: -50 (run later) Arguments: markdown: The page's Markdown. page: The page. config: The MkDocs configuration. Returns: The page's Markdown with injection points. """ if not self.config.enabled: return # Skip if page should not be considered if not self.filter(page.file): return # Handle deprecation of `tags_file` setting if self.config.tags_file: markdown = self._handle_deprecated_tags_file(page, markdown) # Collect tags from page try: self.mappings.add(page, markdown) # Raise exception if tags could not be read except Exception as e: docs = os.path.relpath(config.docs_dir) path = os.path.relpath(page.file.abs_src_path, docs) raise PluginError( f"Error reading tags of page '{path}' in '{docs}':\n" f"{e}" ) # Collect listings from page return self.listings.add(page, markdown) @event_priority(100) def on_env( self, env: Environment, *, config: MkDocsConfig, **kwargs ) -> None: """ Populate listings. Priority: 100 (run earliest) Arguments: env: The Jinja environment. config: The MkDocs configuration. """ if not self.config.enabled: return # Populate and render all listings self.listings.populate_all(self.mappings, Renderer(env, config)) def on_page_context( self, context: TemplateContext, *, page: Page, **kwargs ) -> None: """ Add tag references to page context. Arguments: context: The template context. page: The page. """ if not self.config.enabled: return # Skip if page should not be considered if not self.filter(page.file): return # Skip if tags should not be built if not self.config.tags: return # Retrieve tags references for page mapping = self.mappings.get(page) if mapping: tags = self.config.tags_name_variable if tags not in context: context[tags] = list(self.listings & mapping) # ------------------------------------------------------------------------- def _handle_deprecated_tags_file( self, page: Page, markdown: str ) -> str: """ Handle deprecation of `tags_file` setting. Arguments: page: The page. """ directive = self.config.listings_directive if page.file.src_uri != self.config.tags_file: return markdown # Try to find the legacy tags marker and replace with directive if "[TAGS]" in markdown: markdown = markdown.replace( "[TAGS]", f"" ) # Try to find the directive and add it if not present pattern = r"" # Return markdown return markdown # ----------------------------------------------------------------------------- # Data # ----------------------------------------------------------------------------- # Set up logging log = logging.getLogger("mkdocs.material.plugins.tags") mkdocs-material-9.6.4/src/plugins/tags/renderer/000077500000000000000000000000001475306445600216405ustar00rootroot00000000000000mkdocs-material-9.6.4/src/plugins/tags/renderer/__init__.py000066400000000000000000000067621475306445600237640ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations import posixpath from jinja2 import Environment from mkdocs.config.defaults import MkDocsConfig from mkdocs.structure.pages import Page from mkdocs.utils import get_relative_url # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- class Renderer: """ A renderer for tags and listings. This class implements a simple tag and listing renderer, leveraging the Jinja environment and the MkDocs configuration as provided to plugins. Note that the templates must be stored in the `fragments` and not `partials` directory, because in order to render tags and listings, we must wait for all pages to be read and processed, as we first need to collect all tags before we can render listings. Tags induce a graph, not a tree. For this reason, we consider the templates to be fragments, as they are not implicitly rendered by MkDocs, but explicitly by the plugin. """ def __init__(self, env: Environment, config: MkDocsConfig): """ Initialize renderer. Arguments: env: The Jinja environment. config: The MkDocs configuration. """ self.env = env self.config = config # ------------------------------------------------------------------------- env: Environment """ The Jinja environment. """ config: MkDocsConfig """ The MkDocs configuration. """ # ------------------------------------------------------------------------- def render(self, page: Page, name: str, **kwargs) -> str: """ Render a template. Templates are resolved from `fragments/tags`, so if you want to override templates or provide additional ones place them in this directory. Arguments: page: The page. name: The name of the template. kwargs: The template variables. Returns: The rendered template. """ path = posixpath.join("fragments", "tags", name) path = posixpath.normpath(path) # Resolve and render template template = self.env.get_template(path) return template.render( config = self.config, page = page, base_url = get_relative_url(".", page.url), **kwargs ) mkdocs-material-9.6.4/src/plugins/tags/structure/000077500000000000000000000000001475306445600220725ustar00rootroot00000000000000mkdocs-material-9.6.4/src/plugins/tags/structure/__init__.py000066400000000000000000000021451475306445600242050ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. mkdocs-material-9.6.4/src/plugins/tags/structure/listing/000077500000000000000000000000001475306445600235435ustar00rootroot00000000000000mkdocs-material-9.6.4/src/plugins/tags/structure/listing/__init__.py000066400000000000000000000167531475306445600256700ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations import posixpath from collections.abc import Iterator from material.plugins.tags.structure.mapping import Mapping from material.plugins.tags.structure.tag import Tag from mkdocs.structure.pages import Page from .config import ListingConfig from .tree import ListingTree # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- class Listing: """ A listing of tags. Listings can be included on a page with the `` directive. The arguments are passed to a YAML parser, and are expected to either be an inline listing configuration, or an identifier that points to a listing configuration in the `listings_map` setting in `mkdocs.yml`. Example 1: use inline listing configuration ``` markdown ``` Example 2: use listing configuration from `listings_map.qux` ``` markdown ``` If no arguments are given, the default listing configuration is used, rendering all tags and mappings. In case you're using multiple instances of the tags plugin, you can use the `listings_directive` setting to change the directive name. """ def __init__(self, page: Page, id: str, config: ListingConfig): """ Initialize the listing. Arguments: page: The page the listing is embedded in. id: The listing identifier. config: The listing configuration. """ self.page = page self.id = id self.config = config self.tags = {} def __repr__(self) -> str: """ Return a printable representation of the listing. Returns: Printable representation. """ return f"Listing({repr(self.page)})" def __hash__(self) -> int: """ Return the hash of the listing. Returns: The hash. """ return hash(self.id) def __iter__(self) -> Iterator[ListingTree]: """ Iterate over the listing in pre-order. Yields: The current listing tree. """ stack = list(reversed(self.tags.values())) while stack: tree = stack.pop() yield tree # Visit subtrees in reverse, so pre-order is preserved stack += reversed([*tree]) def __and__(self, mapping: Mapping) -> Iterator[Tag]: """ Iterate over the tags of a mapping featured in the listing. When hierarchical tags are used, the set of tags is expanded to include all parent tags, but only for the inclusion check. The returned tags are always the actual tags (= leaves) of the mapping. This is done to avoid duplicate entries in the listing. If a mapping features one of the tags excluded from the listing, the entire mapping is excluded from the listing. Additionally, if a listing should only include tags within the current scope, the mapping is only included if the page is a child of the page the listing was found on. Arguments: mapping: The mapping. Yields: The current tag. """ assert isinstance(mapping, Mapping) # If the mapping is on the same page as the listing, we skip it, as # it makes no sense to link to a listing on the same page if mapping.item == self.page: return iter([]) # If the listing should only include tags within the current scope, we # check if the page is a child of the page the listing is embedded in if self.config.scope: assert isinstance(mapping.item, Page) # Note that we must use `File.src_uri` here, or we won't be able to # detect the difference between pages, and index pages in sections, # as `foo/index.md` and `foo.md` look the same when using `Page.url` base = posixpath.dirname(posixpath.normpath(self.page.file.src_uri)) if not mapping.item.file.src_uri.startswith(posixpath.join(base, "")): return iter([]) # If an exclusion list is given, expand each tag to check if the tag # itself or one of its parents is excluded from the listing if self.config.exclude: if any(mapping & self.config.exclude): return iter([]) # If an inclusion list is given, expand each tag to check if the tag # itself or one of its parents is included in the listing if self.config.include: return mapping & self.config.include # Otherwise, we can just return an iterator over the set of tags of the # mapping as is, as no expansion is required return iter(mapping.tags) # ------------------------------------------------------------------------- page: Page """ The page the listing is embedded in. """ id: str """ The listing identifier. As authors may place an arbitrary number of listings on any page, we need to be able to distinguish between them. This is done automatically. """ config: ListingConfig """ The listing configuration. """ tags: dict[Tag, ListingTree] """ The listing trees, each of which associated with a tag. """ # ------------------------------------------------------------------------- def add(self, mapping: Mapping, *, hidden = True) -> None: """ Add mapping to listing. Arguments: mapping: The mapping. hidden: Whether to add hidden tags. """ for leaf in self & mapping: tree = self.tags # Skip if hidden tags should not be rendered if not hidden and leaf.hidden: continue # Iterate over expanded tags for tag in reversed([*leaf]): if tag not in tree: tree[tag] = ListingTree(tag) # If the tag is the leaf, i.e., the actual tag we want to add, # we add the mapping to the listing tree's mappings if tag == leaf: tree[tag].mappings.append(mapping) # Otherwise, we continue walking down the tree else: tree = tree[tag].children mkdocs-material-9.6.4/src/plugins/tags/structure/listing/config.py000066400000000000000000000072051475306445600253660ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. import yaml from material.plugins.tags.structure.tag.options import TagSet from mkdocs.config.base import Config from mkdocs.config.config_options import Optional, Type from yaml import Dumper # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- class ListingConfig(Config): """ A listing configuration. """ scope = Type(bool, default = False) """ Whether to only include pages in the current subsection. Enabling this setting will only include pages that are on the same level or on a lower level than the page the listing is on. This allows to create a listing of tags on a page that only includes pages that are in the same subsection of the documentation. """ layout = Optional(Type(str)) """ The layout to use for rendering the listing. This setting allows to override the global setting for the layout. If this setting is not specified, the global `listings_layout` setting is used. """ include = TagSet() """ Tags to include in the listing. If this set is empty, the listing does not filter pages by tags. Otherwise, all pages that have at least one of the tags in this set will be included. """ exclude = TagSet() """ Tags to exclude from the listing. If this set is empty, the listing does not filter pages by tags. Otherwise, all pages that have at least one of the tags in this set will be excluded. """ # ----------------------------------------------------------------------------- # Functions # ----------------------------------------------------------------------------- def _representer(dumper: Dumper, config: ListingConfig): """ Return a serializable representation of a listing configuration. Arguments: dumper: The YAML dumper. config: The listing configuration. Returns: Serializable representation. """ copy = config.copy() # Convert the include and exclude tag sets to lists of strings copy.include = list(map(str, copy.include)) if copy.include else None copy.exclude = list(map(str, copy.exclude)) if copy.exclude else None # Return serializable listing configuration data = { k: v for k, v in copy.items() if v is not None } return dumper.represent_dict(data) # ----------------------------------------------------------------------------- # Register listing configuration YAML representer yaml.add_representer(ListingConfig, _representer) mkdocs-material-9.6.4/src/plugins/tags/structure/listing/manager/000077500000000000000000000000001475306445600251555ustar00rootroot00000000000000mkdocs-material-9.6.4/src/plugins/tags/structure/listing/manager/__init__.py000066400000000000000000000417511475306445600272760ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations import logging import os import posixpath import re import yaml from collections.abc import Iterable, Iterator from material.plugins.tags.config import TagsConfig from material.plugins.tags.renderer import Renderer from material.plugins.tags.structure.listing import Listing, ListingConfig from material.plugins.tags.structure.listing.tree import ListingTree from material.plugins.tags.structure.mapping import Mapping from material.plugins.tags.structure.tag import Tag from material.plugins.tags.structure.tag.reference import TagReference from mkdocs.exceptions import PluginError from mkdocs.structure.pages import Page from mkdocs.structure.nav import Link from re import Match from urllib.parse import urlparse from . import toc # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- class ListingManager: """ A listing manager. The listing manager collects all listings from the Markdown of pages, then populates them with mappings, and renders them. Furthermore, the listing manager allows to obtain tag references for a given mapping, which are tags annotated with links to listings. """ def __init__(self, config: TagsConfig, depth: int = 6): """ Initialize the listing manager. Arguments: config: The configuration. """ self.config = config self.data = set() self.depth = depth def __repr__(self) -> str: """ Return a printable representation of the listing manager. Returns: Printable representation. """ return _print(self) def __iter__(self) -> Iterator[Listing]: """ Iterate over listings. Yields: The current listing. """ return iter(self.data) def __and__(self, mapping: Mapping) -> Iterator[TagReference]: """ Iterate over the tag references for the mapping. Arguments: mapping: The mapping. Yields: The current tag reference. """ assert isinstance(mapping, Mapping) # Iterate over sorted tags and associate tags with listings - note that # we sort the listings for the mapping by closeness, so that the first # listing in the list is the closest one to the page or link the # mapping is associated with listings = self.closest(mapping) for tag in self._sort_tags(mapping.tags): ref = TagReference(tag) # Iterate over listings and add links for listing in listings: if tag in listing & mapping: value = listing.page.url or "." # Compute URL for link - make sure to remove fragments, as # they may be present in links extracted from remote tags. # Additionally, we need to fallback to `.` if the URL is # empty (= homepage) or the links will be incorrect. url = urlparse(value, allow_fragments = False) url = url._replace(fragment = self._slugify(tag)) # Add listing link to tag reference ref.links.append( Link(listing.page.title, url.geturl()) ) # Yield tag reference yield ref # ------------------------------------------------------------------------- config: TagsConfig """ The configuration. """ data: set[Listing] """ The listings. """ depth: int """ Table of contents maximum depth. """ # ------------------------------------------------------------------------- def add(self, page: Page, markdown: str) -> str: """ Add page. This method is called by the tags plugin to retrieve all listings of a page. It will parse the page's Markdown and add injections points into the page's Markdown, which will be replaced by the renderer with the actual listing later on. Note that this method is intended to be called with the page during the `on_page_markdown` event, as it modifies the page's Markdown. Moreover, the Markdown must be explicitly passed, as we could otherwise run into inconsistencies when other plugins modify the Markdown. Arguments: page: The page. markdown: The page's Markdown. Returns: The page's Markdown with injection points. """ assert isinstance(markdown, str) # Replace callback def replace(match: Match) -> str: config = self._resolve(page, match.group(2)) # Compute listing identifier - as the author might include multiple # listings on a single page, we must make sure that the identifier # is unique, so we use the page source file path and the position # of the match within the page as an identifier. id = f"{page.file.src_uri}:{match.start()}-{match.end()}" self.data.add(Listing(page, id, config)) # Replace directive with hx headline if listings are enabled, or # remove the listing entirely from the page and table of contents if self.config.listings: return "#" * self.depth + f" {id}/name {{ #{id}/slug }}" else: return # Hack: replace directive with an hx headline to mark the injection # point for the anchor links we will generate after parsing all pages. # By using an hx headline, we can make sure that the injection point # will always be a child of the preceding headline. directive = self.config.listings_directive return re.sub( r"()".format(directive = directive), replace, markdown, flags = re.I | re.M | re.S ) def closest(self, mapping: Mapping) -> list[Listing]: """ Get listings for the mapping ordered by closeness. Listings are sorted by closeness to the given page, i.e. the number of common path components. This is useful for hierarchical listings, where the tags of a page point to the closest listing featuring the tag, with the option to show all listings featuring that tag. Arguments: mapping: The mapping. Returns: The listings. """ # Retrieve listings featuring tags of mapping listings: list[Listing] = [] for listing in self.data: if any(listing & mapping): listings.append(listing) # Ranking callback def rank(listing: Listing) -> int: path = posixpath.commonpath([mapping.item.url, listing.page.url]) return len(path) # Return listings ordered by closeness to mapping return sorted(listings, key = rank, reverse = True) def populate( self, listing: Listing, mappings: Iterable[Mapping], renderer: Renderer ) -> None: """ Populate listing with tags featured in the mappings. Arguments: listing: The listing. mappings: The mappings. renderer: The renderer. """ page = listing.page assert isinstance(page.content, str) # Add mappings to listing for mapping in mappings: listing.add(mapping) # Sort listings and tags - we can only do this after all mappings have # been added to the listing, because the tags inside the mappings do # not have a proper order yet, and we need to order them as specified # in the listing configuration. listing.tags = self._sort_listing_tags(listing.tags) # Render tags for listing headlines - the listing configuration allows # tp specify a custom layout, so we resolve the template for tags here name = posixpath.join(listing.config.layout, "tag.html") for tree in listing: tree.content = renderer.render(page, name, tag = tree.tag) # Sort mappings and subtrees of listing tree tree.mappings = self._sort_listing(tree.mappings) tree.children = self._sort_listing_tags(tree.children) # Replace callback def replace(match: Match) -> str: hx = match.group() # Populate listing with anchor links to tags anchors = toc.populate(listing, self._slugify) if not anchors: return # Get reference to first tag in listing head = next(iter(anchors.values())) # Replace hx with actual level of listing and listing ids with # placeholders to create a format string for the headline hx = re.sub( r"<(/?)h{}\b".format(self.depth), r"<\g<1>h{}".format(head.level), hx ) hx = re.sub( r"{id}\/(\w+)".format(id = listing.id), r"{\1}", hx, flags = re.I | re.M ) # Render listing headlines for tree in listing: tree.content = hx.format( slug = anchors[tree.tag].id, name = tree.content ) # Render listing - the listing configuration allows to specify a # custom layout, so we resolve the template for listings here name = posixpath.join(listing.config.layout, "listing.html") return "\n".join([ renderer.render(page, name, listing = tree) for tree in listing.tags.values() ]) # Hack: replace hx headlines (injection points) we added when parsing # the page's Markdown with the actual listing content. Additionally, # replace anchor links in the table of contents with the hierarchy # generated from mapping over the listing, or remove them. page.content = re.sub( r"]+{id}.*?".format( id = f"{listing.id}/slug", x = self.depth ), replace, page.content, flags = re.I | re.M ) def populate_all( self, mappings: Iterable[Mapping], renderer: Renderer ) -> None: """ Populate all listings with tags featured in the mappings. This method is called by the tags plugin to populate all listings with the given mappings. It will also remove the injection points from the page's Markdown. Note that this method is intended to be called during the `on_env` event, after all pages have been rendered. Arguments: mappings: The mappings. renderer: The renderer. """ for listing in self.data: self.populate(listing, mappings, renderer) # ------------------------------------------------------------------------- def _resolve(self, page: Page, args: str) -> ListingConfig: """ Resolve listing configuration. Arguments: page: The page the listing in embedded in. args: The arguments, as parsed from Markdown. Returns: The listing configuration. """ data = yaml.safe_load(args) path = page.file.abs_src_path # Try to resolve available listing configuration if isinstance(data, str): config = self.config.listings_map.get(data, None) if not config: keys = ", ".join(self.config.listings_map.keys()) raise PluginError( f"Couldn't find listing configuration: {data}. Available " f"configurations: {keys}" ) # Otherwise, handle inline listing configuration else: config = ListingConfig(config_file_path = path) config.load_dict(data or {}) # Validate listing configuration errors, warnings = config.validate() for _, w in warnings: path = os.path.relpath(path) log.warning( f"Error reading listing configuration in '{path}':\n" f"{w}" ) for _, e in errors: path = os.path.relpath(path) raise PluginError( f"Error reading listing configuration in '{path}':\n" f"{e}" ) # Inherit layout configuration, unless explicitly set if not isinstance(config.layout, str): config.layout = self.config.listings_layout # Return listing configuration return config # ------------------------------------------------------------------------- def _slugify(self, tag: Tag) -> str: """ Slugify tag. Arguments: tag: The tag. Returns: The slug. """ return self.config.tags_slugify_format.format( slug = self.config.tags_slugify( tag.name, self.config.tags_slugify_separator ) ) # ------------------------------------------------------------------------- def _sort_listing( self, mappings: Iterable[Mapping] ) -> list[Mapping]: """ Sort listing. When sorting a listing, we sort the mappings of the listing, which is why the caller must pass the mappings of the listing. That way, we can keep this implementation to be purely functional, without having to mutate the listing, which makes testing simpler. Arguments: mappings: The mappings. Returns: The sorted mappings. """ return sorted( mappings, key = self.config.listings_sort_by, reverse = self.config.listings_sort_reverse ) def _sort_listing_tags( self, children: dict[Tag, ListingTree] ) -> dict[Tag, ListingTree]: """ Sort listing tags. When sorting a listing's tags, we sort the immediate subtrees of the listing, which is why the caller must pass the children of the listing. That way, we can keep this implementation to be purely functional, without having to mutate the listing. Arguments: children: The listing trees, each of which associated with a tag. Returns: The sorted listing trees. """ return dict(sorted( children.items(), key = lambda item: self.config.listings_tags_sort_by(*item), reverse = self.config.listings_tags_sort_reverse )) def _sort_tags( self, tags: Iterable[Tag] ) -> list[Tag]: """ Sort tags. Arguments: tags: The tags. Returns: The sorted tags. """ return sorted( tags, key = self.config.tags_sort_by, reverse = self.config.tags_sort_reverse ) # ----------------------------------------------------------------------------- # Functions # ----------------------------------------------------------------------------- def _print(manager: ListingManager, indent: int = 0) -> str: """ Return a printable representation of a listing manager. Arguments: manager: The listing manager. indent: The indentation level. Returns: Printable representation. """ lines: list[str] = [] lines.append(" " * indent + f"ListingManager()") # Print listings for listing in manager: lines.append(" " * (indent + 2) + repr(listing)) # Concatenate everything return "\n".join(lines) # ----------------------------------------------------------------------------- # Data # ----------------------------------------------------------------------------- # Set up logging log = logging.getLogger("mkdocs.material.plugins.tags") mkdocs-material-9.6.4/src/plugins/tags/structure/listing/manager/toc.py000066400000000000000000000104061475306445600263150ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations from material.plugins.tags.structure.listing import Listing from material.plugins.tags.structure.tag import Tag from mkdocs.structure.pages import Page from mkdocs.structure.toc import AnchorLink from typing import Callable # ----------------------------------------------------------------------------- # Typings # ----------------------------------------------------------------------------- Slugify = Callable[[Tag], str] """ Slugify function. Arguments: tag: The tag. Returns: The slugified tag. """ # ----------------------------------------------------------------------------- # Functions # ----------------------------------------------------------------------------- def populate(listing: Listing, slugify: Slugify) -> dict[Tag, AnchorLink]: """ Populate the table of contents of the page the listing is embedded. Arguments: listing: The listing. slugify: Slugify function. Returns: The mapping of tags to anchor links. """ anchors: dict[Tag, AnchorLink] = {} # Find injection point for listing host, at = find(listing) if at == -1: return anchors # Create anchor links for tree in listing: # Iterate over expanded tags for i, tag in enumerate(reversed([*tree.tag])): if tag not in anchors: level = host.level + 1 + i # Create anchor link anchors[tag] = AnchorLink(tag.name, slugify(tag), level) if not tag.parent: continue # Relate anchor link to parent anchors[tag.parent].children.append(anchors[tag]) # Filter top-level anchor links and insert them into the page children = [anchors[tag] for tag in anchors if not tag.parent] host.children[at:at + 1] = children # Return mapping of tags to anchor links return anchors # ----------------------------------------------------------------------------- def find(listing: Listing) -> tuple[AnchorLink | None, int]: """ Find anchor link for the given listing. This function traverses the table of contents of the given page and returns the anchor's parent and index of the anchor with the given identifier. If the anchor is on the root level, and the anchor we're looking for is an injection point, an anchor to host the tags is created and returned. Arguments: lising: The listing. Returns: The anchor and index. """ page = listing.page # Traverse table of contents stack = list(page.toc) while stack: anchor = stack.pop() # Traverse children for i, child in enumerate(anchor.children): if child.id.startswith(listing.id): return anchor, i # Add child to stack stack.append(child) # Check if anchor is on the root level for i, anchor in enumerate(page.toc): if anchor.id.startswith(listing.id): # Create anchor link host = AnchorLink(page.title, page.url, 1) host.children = page.toc.items return host, i # Anchor could not be found return None, -1 mkdocs-material-9.6.4/src/plugins/tags/structure/listing/tree/000077500000000000000000000000001475306445600245025ustar00rootroot00000000000000mkdocs-material-9.6.4/src/plugins/tags/structure/listing/tree/__init__.py000066400000000000000000000113441475306445600266160ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations from collections.abc import Iterator from functools import total_ordering from material.plugins.tags.structure.mapping import Mapping from material.plugins.tags.structure.tag import Tag # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- @total_ordering class ListingTree: """ A listing tree. This is an internal data structure that is used to render listings. It is also the immediate structure that is passed to the template. """ def __init__(self, tag: Tag): """ Initialize the listing tree. Arguments: tag: The tag. """ self.tag = tag self.content = None self.mappings = [] self.children = {} def __repr__(self) -> str: """ Return a printable representation of the listing tree. Returns: Printable representation. """ return _print(self) def __hash__(self) -> int: """ Return the hash of the listing tree. Returns: The hash. """ return hash(self.tag) def __iter__(self) -> Iterator[ListingTree]: """ Iterate over subtrees of the listing tree. Yields: The current subtree. """ return iter(self.children.values()) def __eq__(self, other: ListingTree) -> bool: """ Check if the listing tree is equal to another listing tree. Arguments: other: The other listing tree to check. Returns: Whether the listing trees are equal. """ assert isinstance(other, ListingTree) return self.tag == other.tag def __lt__(self, other: ListingTree) -> bool: """ Check if the listing tree is less than another listing tree. Arguments: other: The other listing tree to check. Returns: Whether the listing tree is less than the other listing tree. """ assert isinstance(other, ListingTree) return self.tag < other.tag # ------------------------------------------------------------------------- tag: Tag """ The tag. """ content: str | None """ The rendered content of the listing tree. This attribute holds the result of rendering the `tag.html` template, which is the rendered tag as displayed in the listing. It is essential that this is done for all tags (and nested tags) before rendering the tree, as the rendering process of the listing tree relies on this attribute. """ mappings: list[Mapping] """ The mappings associated with the tag. """ children: dict[Tag, ListingTree] """ The subtrees of the listing tree. """ # ----------------------------------------------------------------------------- # Functions # ----------------------------------------------------------------------------- def _print(tree: ListingTree, indent: int = 0) -> str: """ Return a printable representation of a listing tree. Arguments: tree: The listing tree. indent: The indentation level. Returns: Printable representation. """ lines: list[str] = [] lines.append(" " * indent + f"ListingTree({repr(tree.tag)})") # Print mappings for mapping in tree.mappings: lines.append(" " * (indent + 2) + repr(mapping)) # Print subtrees for child in tree.children.values(): lines.append(_print(child, indent + 2)) # Concatenate everything return "\n".join(lines) mkdocs-material-9.6.4/src/plugins/tags/structure/mapping/000077500000000000000000000000001475306445600235255ustar00rootroot00000000000000mkdocs-material-9.6.4/src/plugins/tags/structure/mapping/__init__.py000066400000000000000000000067141475306445600256460ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations from collections.abc import Iterable, Iterator from material.plugins.tags.structure.tag import Tag from mkdocs.structure.nav import Link from mkdocs.structure.pages import Page # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- class Mapping: """ A mapping between a page or link and a set of tags. We use this class to store the mapping between a page or link and a set of tags. This is necessary as we don't want to store the tags directly on the page or link object, in order not to clutter the internal data structures of MkDocs, keeping the plugin as unobtrusive as possible. Links are primarily used when integrating with tags from external projects, as we can't construct a page object for them as we do for local files. """ def __init__(self, item: Page | Link, *, tags: Iterable[Tag] | None = None): """ Initialize the mapping. Tags can be passed upon initialization, but can also be added later on using the `add` or `update` method. of the `tags` attribute. Arguments: item: The page or link. tags: The tags associated with the page or link. """ self.item = item self.tags = set(tags or []) def __repr__(self) -> str: """ Return a printable representation of the mapping. Returns: Printable representation. """ return f"Mapping({repr(self.item)}, tags={self.tags})" def __and__(self, tags: set[Tag]) -> Iterator[Tag]: """ Iterate over the tags featured in the mapping. This method expands each tag in the mapping and checks whether it is equal to one of the tags in the given set. If so, the tag is yielded. Arguments: tags: The set of tags. Yields: The current tag. """ assert isinstance(tags, set) # Iterate over expanded tags for tag in self.tags: if set(tag) & tags: yield tag # ------------------------------------------------------------------------- item: Page | Link """ The page or link. """ tags: set[Tag] """ The tags associated with the page or link. """ mkdocs-material-9.6.4/src/plugins/tags/structure/mapping/manager/000077500000000000000000000000001475306445600251375ustar00rootroot00000000000000mkdocs-material-9.6.4/src/plugins/tags/structure/mapping/manager/__init__.py000066400000000000000000000125261475306445600272560ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations from collections.abc import Iterator from material.plugins.tags.config import TagsConfig from material.plugins.tags.structure.mapping import Mapping from material.plugins.tags.structure.tag.options import TagSet from mkdocs.structure.pages import Page # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- class MappingManager: """ A mapping manager. The mapping manager is responsible for collecting all tags from the front matter of pages, and for building a tag structure from them, nothing more. """ def __init__(self, config: TagsConfig): """ Initialize the mapping manager. Arguments: config: The configuration. """ self.config = config self.format = TagSet(allowed = self.config.tags_allowed) self.data = {} def __repr__(self) -> str: """ Return a printable representation of the mapping manager. Returns: Printable representation. """ return _print(self) def __iter__(self) -> Iterator[Mapping]: """ Iterate over mappings. Yields: The current mapping. """ return iter(self.data.values()) # ------------------------------------------------------------------------- config: TagsConfig """ The configuration. """ format: TagSet """ The mapping format. This is the validator that is used to check if tags are valid, including the tags in the front matter of pages, as well as the tags defined in the configuration. Numbers and booleans are always converted to strings before creating tags, and the allow list is checked as well, if given. """ data: dict[str, Mapping] """ The mappings. """ # ------------------------------------------------------------------------- def add(self, page: Page, markdown: str) -> Mapping | None: """ Add page. This method is called by the tags plugin to retrieve all tags of a page. It extracts all tags from the front matter of the given page, and adds them to the mapping. If no tags are found, no mapping is created and nothing is returned. Note that this method is intended to be called with the page during the `on_page_markdown` event, as it reads the front matter of a page. Also, the Markdown must be explicitly passed, as we could otherwise run into inconsistencies when other plugins modify the Markdown. Arguments: page: The page. markdown: The page's Markdown. Returns: The mapping or nothing. """ assert isinstance(markdown, str) # Return nothing if page doesn't have tags tags = self.config.tags_name_property if not page.meta.get(tags, []): return # Create mapping and associate with page mapping = Mapping(page) self.data[page.url] = mapping # Retrieve and validate tags, and add to mapping for tag in self.format.validate(page.meta[tags]): mapping.tags.add(tag) # Return mapping return mapping def get(self, page: Page) -> Mapping | None: """ Get mapping for page, if any. Arguments: page: The page. Returns: The mapping or nothing. """ if page.url in self.data: return self.data[page.url] # ----------------------------------------------------------------------------- # Functions # ----------------------------------------------------------------------------- def _print(manager: MappingManager, indent: int = 0) -> str: """ Return a printable representation of a mapping manager. Arguments: manager: The mapping manager. indent: The indentation level. Returns: Printable representation. """ lines: list[str] = [] lines.append(" " * indent + f"MappingManager()") # Print mappings for mapping in manager: lines.append(" " * (indent + 2) + repr(mapping)) # Concatenate everything return "\n".join(lines) mkdocs-material-9.6.4/src/plugins/tags/structure/mapping/storage/000077500000000000000000000000001475306445600251715ustar00rootroot00000000000000mkdocs-material-9.6.4/src/plugins/tags/structure/mapping/storage/__init__.py000066400000000000000000000144071475306445600273100ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations import json import os from collections.abc import Iterable from material.plugins.tags.config import TagsConfig from material.plugins.tags.structure.mapping import Mapping from material.plugins.tags.structure.tag import Tag from mkdocs.config.base import ValidationError from mkdocs.structure.nav import Link from mkdocs.structure.pages import Page # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- class MappingStorage: """ A mapping storage. The mapping storage allows to save and load mappings to and from a JSON file, which allows for sharing tags across multiple MkDocs projects. """ def __init__(self, config: TagsConfig): """ Initialize the mapping storage. Arguments: config: The configuration. """ self.config = config # ------------------------------------------------------------------------- config: TagsConfig """ The configuration. """ # ------------------------------------------------------------------------- def save(self, path: str, mappings: Iterable[Mapping]) -> None: """ Save mappings to file. Arguments: path: The file path. mappings: The mappings. """ path = os.path.abspath(path) os.makedirs(os.path.dirname(path), exist_ok = True) # Save serialized mappings to file with open(path, "w", encoding = "utf-8") as f: data = [_mapping_to_json(mapping) for mapping in mappings] json.dump(dict(mappings = data), f) def load(self, path: str) -> Iterable[Mapping]: """ Load mappings from file. Arguments: path: The file path. Yields: The current mapping. """ with open(path, "r", encoding = "utf-8") as f: data = json.load(f) # Ensure root dictionary if not isinstance(data, dict): raise ValidationError( f"Expected dictionary, but received: {data}" ) # Ensure mappings are iterable mappings = data.get("mappings") if not isinstance(mappings, list): raise ValidationError( f"Expected list, but received: {mappings}" ) # Create and yield mappings for mapping in mappings: yield _mapping_from_json(mapping) # ----------------------------------------------------------------------------- # Functions # ----------------------------------------------------------------------------- def _mapping_to_json(mapping: Mapping) -> dict: """ Return a serializable representation of a mapping. Arguments: mapping: The mapping. Returns: Serializable representation. """ return dict( item = _mapping_item_to_json(mapping.item), tags = [str(tag) for tag in sorted(mapping.tags)] ) def _mapping_item_to_json(item: Page | Link) -> dict: """ Return a serializable representation of a page or link. Arguments: item: The page or link. Returns: Serializable representation. """ return dict(url = item.url, title = item.title) # ------------------------------------------------------------------------- def _mapping_from_json(data: object) -> Mapping: """ Return a mapping from a serialized representation. Arguments: data: Serialized representation. Returns: The mapping. """ if not isinstance(data, dict): raise ValidationError( f"Expected dictionary, but received: {data}" ) # Ensure tags are iterable tags = data.get("tags") if not isinstance(tags, list): raise ValidationError( f"Expected list, but received: {tags}" ) # Ensure tags are valid for tag in tags: if not isinstance(tag, str): raise ValidationError( f"Expected string, but received: {tag}" ) # Create and return mapping return Mapping( _mapping_item_from_json(data.get("item")), tags = [Tag(tag) for tag in tags] ) def _mapping_item_from_json(data: object) -> Link: """ Return a link from a serialized representation. When loading a mapping, we must always return a link, as the sources of pages might not be available because we're building another project. Arguments: data: Serialized representation. Returns: The link. """ if not isinstance(data, dict): raise ValidationError( f"Expected dictionary, but received: {data}" ) # Ensure item has URL url = data.get("url") if not isinstance(url, str): raise ValidationError( f"Expected string, but received: {url}" ) # Ensure item has title title = data.get("title") if not isinstance(title, str): raise ValidationError( f"Expected string, but received: {title}" ) # Create and return item return Link(title, url) mkdocs-material-9.6.4/src/plugins/tags/structure/tag/000077500000000000000000000000001475306445600226455ustar00rootroot00000000000000mkdocs-material-9.6.4/src/plugins/tags/structure/tag/__init__.py000066400000000000000000000100471475306445600247600ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations from collections.abc import Iterator from functools import total_ordering # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- @total_ordering class Tag: """ A tag. """ def __init__( self, name: str, *, parent: Tag | None = None, hidden = False ): """ Initialize the tag. Arguments: name: The tag name. parent: The parent tag. hidden: Whether the tag is hidden. """ self.name = name self.parent = parent self.hidden = hidden def __repr__(self) -> str: """ Return a printable representation of the tag. Returns: Printable representation. """ return f"Tag('{self.name}')" def __str__(self) -> str: """ Return a string representation of the tag. Returns: String representation. """ return self.name def __hash__(self) -> int: """ Return the hash of the tag. Returns: The hash. """ return hash(self.name) def __iter__(self) -> Iterator[Tag]: """ Iterate over the tag and its parent tags. Note that the first tag returned is the tag itself, followed by its parent tags in ascending order. This allows to iterate over the tag and its parents in a single loop, which is useful for generating tree or breadcrumb structures. Yields: The current tag. """ tag = self while tag: yield tag tag = tag.parent def __contains__(self, other: Tag) -> bool: """ Check if the tag contains another tag. Arguments: other: The other tag to check. Returns: Whether the tag contains the other tag. """ assert isinstance(other, Tag) return any(tag == other for tag in self) def __eq__(self, other: Tag) -> bool: """ Check if the tag is equal to another tag. Arguments: other: The other tag to check. Returns: Whether the tags are equal. """ assert isinstance(other, Tag) return self.name == other.name def __lt__(self, other: Tag) -> bool: """ Check if the tag is less than another tag. Arguments: other: The other tag to check. Returns: Whether the tag is less than the other tag. """ assert isinstance(other, Tag) return self.name < other.name # ------------------------------------------------------------------------- name: str """ The tag name. """ parent: Tag | None """ The parent tag. """ hidden: bool """ Whether the tag is hidden. """ mkdocs-material-9.6.4/src/plugins/tags/structure/tag/options.py000066400000000000000000000075141475306445600247210ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations from collections.abc import Iterable from mkdocs.config.base import BaseConfigOption, ValidationError from typing import Set from . import Tag # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- class TagSet(BaseConfigOption[Set[Tag]]): """ Setting for a set of tags. This setting describes a set of tags, and is used to validate the actual tags as defined in the front matter of pages, as well as for filters that are used to include or exclude pages from a listing and to check if a tag is allowed to be used. """ def __init__(self, *, allowed: set[Tag] = set()): """ Initialize the setting. Arguments: allowed: The tags allowed to be used. """ super().__init__() self.allowed = allowed # ------------------------------------------------------------------------- allowed: set[Tag] """ The tags allowed to be used. """ # ------------------------------------------------------------------------- def run_validation(self, value: object) -> set[Tag]: """ Validate list of tags. If the value is `None`, an empty set is returned. Otherwise, the value is expected to be a list of tags, which is converted to a set of tags. This means that tags are automatically deduplicated. Note that tags are not expanded here, as the set is intended to be checked exactly. Arguments: value: The value to validate. Returns: A set of tags. """ if value is None: return set() # Ensure tags are iterable if not isinstance(value, Iterable) or isinstance(value, str): raise ValidationError( f"Expected iterable tags, but received: {value}" ) # Ensure tags are valid tags: set[Tag] = set() for index, tag in enumerate(value): if not isinstance(tag, (str, int, float, bool)): raise ValidationError( f"Expected a {str}, {int}, {float} or {bool} " f"but received: {type(tag)} at index {index}" ) # Coerce tag to string and add to set tags.add(Tag(str(tag))) # Ensure tags are in allow list, if any if self.allowed: invalid = tags.difference(self.allowed) if invalid: raise ValidationError( "Tags not in allow list: " + ",".join([tag.name for tag in invalid]) ) # Return set of tags return tags mkdocs-material-9.6.4/src/plugins/tags/structure/tag/reference/000077500000000000000000000000001475306445600246035ustar00rootroot00000000000000mkdocs-material-9.6.4/src/plugins/tags/structure/tag/reference/__init__.py000066400000000000000000000054151475306445600267210ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations from material.plugins.tags.structure.tag import Tag from mkdocs.structure.nav import Link # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- class TagReference(Tag): """ A tag reference. Tag references are a subclass of tags that can have associated links, which is primarily used for linking tags to listings. The first link is used as the canonical link, which by default points to the closest listing that features the tag. This is considered to be the canonical listing. """ def __init__(self, tag: Tag, links: list[Link] | None = None): """ Initialize the tag reference. Arguments: tag: The tag. links: The links associated with the tag. """ super().__init__(**vars(tag)) self.links = links or [] def __repr__(self) -> str: """ Return a printable representation of the tag reference. Returns: Printable representation. """ return f"TagReference('{self.name}')" # ------------------------------------------------------------------------- links: list[Link] """ The links associated with the tag. """ # ------------------------------------------------------------------------- @property def url(self) -> str | None: """ Return the URL of the tag reference. Returns: The URL of the tag reference. """ if self.links: return self.links[0].url else: return None mkdocs-material-9.6.4/src/templates/000077500000000000000000000000001475306445600174115ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/.icons/000077500000000000000000000000001475306445600206025ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/.icons/logo-monochrome.svg000066400000000000000000000005031475306445600244250ustar00rootroot00000000000000 mkdocs-material-9.6.4/src/templates/.icons/logo.svg000066400000000000000000000006611475306445600222660ustar00rootroot00000000000000 mkdocs-material-9.6.4/src/templates/404.html000066400000000000000000000023311475306445600206050ustar00rootroot00000000000000 {% extends "main.html" %} {% block content %}

    404 - Not found

    {% endblock %} mkdocs-material-9.6.4/src/templates/__init__.py000066400000000000000000000021451475306445600215240ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. mkdocs-material-9.6.4/src/templates/assets/000077500000000000000000000000001475306445600207135ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/images/000077500000000000000000000000001475306445600221605ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/images/favicon.png000066400000000000000000000035161475306445600243200ustar00rootroot00000000000000PNG  IHDR00WIDATxŗOTW/7^T@~**?EDEda,RMl66VkeM'HhccUAe}^,Ya=ܽ*|33]|X… HY A_EzHm8%%CJ[IKI!(ieguc$`:=54X}Iy HR񲌴5f,^L f-|S)0|ZVzzNPL4k{]^ u~dgd#3SA@s9#q#}vՉOȥ˞怲[qaa2.FreQ 2V;11~Xε!UEEV5c|Fם?,08뢝erF+mWh>/_/^Puea>EVzuUf``̺R9kkkjWɓ'蹳gbvo)H3 Q] n( ѓǏ7藓'%׳Z[Sϛ7NOOӃDU%%'ῄV+kp?9Au2q)- XMsSݷϱirr Y=6W)[G˘pbcxNEY*@\c 1@Lrdl߻Gܿnнee:sUEy9ARk-}(ox.A /K]eS[9)~*F*\:ƪPUEF%y3 #ٰF ͰXSlkN!Lv6!/{cW3v\mT _Åx_@+^.rcڏ˭_bCѥ[k+[w'V=c444DW^ޥׯ_Z8;wXgY=8g1 ܰm[5㎵:D׮]7o/|:=44Ș$ݶ744n.BYý}q˗iΝr9J1 L4 uNKϞ=#mfy#zHRѬhnj3GF֦_Nn?K{AD͙fnf 675|ZYzy}3g[p>.tYyu?gONOgGGj 37:&1gHdkj>+6 ;ݬYL-8 `ڷ!bsS/I /@\7kE3<X3;}&/i}}}^q `acxA|7۝~IENDB`mkdocs-material-9.6.4/src/templates/assets/javascripts/000077500000000000000000000000001475306445600232445ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/_/000077500000000000000000000000001475306445600234625ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/_/index.ts000066400000000000000000000127761475306445600251560ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { getElement, getLocation } from "~/browser" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Feature flag */ export type Flag = | "announce.dismiss" /* Dismissable announcement bar */ | "content.code.annotate" /* Code annotations */ | "content.code.copy" /* Code copy button */ | "content.lazy" /* Lazy content elements */ | "content.tabs.link" /* Link content tabs */ | "content.tooltips" /* Tooltips */ | "header.autohide" /* Hide header */ | "navigation.expand" /* Automatic expansion */ | "navigation.indexes" /* Section pages */ | "navigation.instant" /* Instant navigation */ | "navigation.instant.progress" /* Instant navigation progress */ | "navigation.sections" /* Section navigation */ | "navigation.tabs" /* Tabs navigation */ | "navigation.tabs.sticky" /* Tabs navigation (sticky) */ | "navigation.top" /* Back-to-top button */ | "navigation.tracking" /* Anchor tracking */ | "search.highlight" /* Search highlighting */ | "search.share" /* Search sharing */ | "search.suggest" /* Search suggestions */ | "toc.follow" /* Following table of contents */ | "toc.integrate" /* Integrated table of contents */ /* ------------------------------------------------------------------------- */ /** * Translation */ export type Translation = | "clipboard.copy" /* Copy to clipboard */ | "clipboard.copied" /* Copied to clipboard */ | "search.result.placeholder" /* Type to start searching */ | "search.result.none" /* No matching documents */ | "search.result.one" /* 1 matching document */ | "search.result.other" /* # matching documents */ | "search.result.more.one" /* 1 more on this page */ | "search.result.more.other" /* # more on this page */ | "search.result.term.missing" /* Missing */ | "select.version" /* Version selector */ /** * Translations */ export type Translations = Record /* ------------------------------------------------------------------------- */ /** * Versioning */ export interface Versioning { provider: "mike" /* Version provider */ default?: string | string[] /* Default version */ alias?: boolean /* Show alias */ } /** * Configuration */ export interface Config { base: string /* Base URL */ features: Flag[] /* Feature flags */ translations: Translations /* Translations */ search: string /* Search worker URL */ tags?: Record /* Tags mapping */ version?: Versioning /* Versioning */ } /* ---------------------------------------------------------------------------- * Data * ------------------------------------------------------------------------- */ /** * Retrieve global configuration and make base URL absolute */ const script = getElement("#__config") const config: Config = JSON.parse(script.textContent!) config.base = `${new URL(config.base, getLocation())}` /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Retrieve global configuration * * @returns Global configuration */ export function configuration(): Config { return config } /** * Check whether a feature flag is enabled * * @param flag - Feature flag * * @returns Test result */ export function feature(flag: Flag): boolean { return config.features.includes(flag) } /** * Retrieve the translation for the given key * * @param key - Key to be translated * @param value - Positional value, if any * * @returns Translation */ export function translation( key: Translation, value?: string | number ): string { return typeof value !== "undefined" ? config.translations[key].replace("#", value.toString()) : config.translations[key] } mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/000077500000000000000000000000001475306445600247275ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/document/000077500000000000000000000000001475306445600265455ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/document/index.ts000066400000000000000000000034621475306445600302310ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { ReplaySubject, Subject, fromEvent } from "rxjs" /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch document * * Documents are implemented as subjects, so all downstream observables are * automatically updated when a new document is emitted. * * @returns Document subject */ export function watchDocument(): Subject { const document$ = new ReplaySubject(1) fromEvent(document, "DOMContentLoaded", { once: true }) .subscribe(() => document$.next(document)) /* Return document */ return document$ } mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/element/000077500000000000000000000000001475306445600263605ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/element/_/000077500000000000000000000000001475306445600265765ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/element/_/.eslintrc000066400000000000000000000001401475306445600304150ustar00rootroot00000000000000{ "rules": { "jsdoc/require-jsdoc": "off", "jsdoc/require-returns-check": "off" } } mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/element/_/index.ts000066400000000000000000000074341475306445600302650ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Retrieve all elements matching the query selector * * @template T - Element type * * @param selector - Query selector * @param node - Node of reference * * @returns Elements */ export function getElements( selector: T, node?: ParentNode ): HTMLElementTagNameMap[T][] export function getElements( selector: string, node?: ParentNode ): T[] export function getElements( selector: string, node: ParentNode = document ): T[] { return Array.from(node.querySelectorAll(selector)) } /** * Retrieve an element matching a query selector or throw a reference error * * Note that this function assumes that the element is present. If unsure if an * element is existent, use the `getOptionalElement` function instead. * * @template T - Element type * * @param selector - Query selector * @param node - Node of reference * * @returns Element */ export function getElement( selector: T, node?: ParentNode ): HTMLElementTagNameMap[T] export function getElement( selector: string, node?: ParentNode ): T export function getElement( selector: string, node: ParentNode = document ): T { const el = getOptionalElement(selector, node) if (typeof el === "undefined") throw new ReferenceError( `Missing element: expected "${selector}" to be present` ) /* Return element */ return el } /* ------------------------------------------------------------------------- */ /** * Retrieve an optional element matching the query selector * * @template T - Element type * * @param selector - Query selector * @param node - Node of reference * * @returns Element or nothing */ export function getOptionalElement( selector: T, node?: ParentNode ): HTMLElementTagNameMap[T] | undefined export function getOptionalElement( selector: string, node?: ParentNode ): T | undefined export function getOptionalElement( selector: string, node: ParentNode = document ): T | undefined { return node.querySelector(selector) || undefined } /** * Retrieve the currently active element * * @returns Element or nothing */ export function getActiveElement(): HTMLElement | undefined { return ( document.activeElement?.shadowRoot?.activeElement as HTMLElement ?? document.activeElement as HTMLElement ?? undefined ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/element/focus/000077500000000000000000000000001475306445600274775ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/element/focus/index.ts000066400000000000000000000052121475306445600311560ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, debounceTime, distinctUntilChanged, fromEvent, map, merge, shareReplay, startWith } from "rxjs" import { getActiveElement } from "../_" /* ---------------------------------------------------------------------------- * Data * ------------------------------------------------------------------------- */ /** * Focus observable * * Previously, this observer used `focus` and `blur` events to determine whether * an element is focused, but this doesn't work if there are focusable elements * within the elements itself. A better solutions are `focusin` and `focusout` * events, which bubble up the tree and allow for more fine-grained control. * * `debounceTime` is necessary, because when a focus change happens inside an * element, the observable would first emit `false` and then `true` again. */ const observer$ = merge( fromEvent(document.body, "focusin"), fromEvent(document.body, "focusout") ) .pipe( debounceTime(1), startWith(undefined), map(() => getActiveElement() || document.body), shareReplay(1) ) /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch element focus * * @param el - Element * * @returns Element focus observable */ export function watchElementFocus( el: HTMLElement ): Observable { return observer$ .pipe( map(active => el.contains(active)), distinctUntilChanged() ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/element/hover/000077500000000000000000000000001475306445600275035ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/element/hover/index.ts000066400000000000000000000043011475306445600311600ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, debounce, defer, fromEvent, identity, map, merge, startWith, timer } from "rxjs" /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch element hover * * The second parameter allows to specify a timeout in milliseconds after which * the hover state will be reset to `false`. This is useful for tooltips which * should disappear after a certain amount of time, in order to allow the user * to move the cursor from the host to the tooltip. * * @param el - Element * @param timeout - Timeout * * @returns Element hover observable */ export function watchElementHover( el: HTMLElement, timeout?: number ): Observable { return defer(() => merge( fromEvent(el, "mouseenter").pipe(map(() => true)), fromEvent(el, "mouseleave").pipe(map(() => false)) ) .pipe( timeout ? debounce(active => timer(+!active * timeout)) : identity, startWith(el.matches(":hover")) ) ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/element/index.ts000066400000000000000000000024241475306445600300410ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ export * from "./_" export * from "./focus" export * from "./hover" export * from "./offset" export * from "./size" export * from "./visibility" mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/element/offset/000077500000000000000000000000001475306445600276465ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/element/offset/_/000077500000000000000000000000001475306445600300645ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/element/offset/_/index.ts000066400000000000000000000063421475306445600315500ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, animationFrameScheduler, auditTime, fromEvent, map, merge, startWith } from "rxjs" import { watchElementSize } from "../../size" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Element offset */ export interface ElementOffset { x: number /* Horizontal offset */ y: number /* Vertical offset */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Retrieve element offset * * @param el - Element * * @returns Element offset */ export function getElementOffset( el: HTMLElement ): ElementOffset { return { x: el.offsetLeft, y: el.offsetTop } } /** * Retrieve absolute element offset * * @param el - Element * * @returns Element offset */ export function getElementOffsetAbsolute( el: HTMLElement ): ElementOffset { const rect = el.getBoundingClientRect() return { x: rect.x + window.scrollX, y: rect.y + window.scrollY } } /* ------------------------------------------------------------------------- */ /** * Watch element offset * * @param el - Element * * @returns Element offset observable */ export function watchElementOffset( el: HTMLElement ): Observable { return merge( fromEvent(window, "load"), fromEvent(window, "resize") ) .pipe( auditTime(0, animationFrameScheduler), map(() => getElementOffset(el)), startWith(getElementOffset(el)) ) } /** * Watch absolute element offset * * @param el - Element * * @returns Element offset observable */ export function watchElementOffsetAbsolute( el: HTMLElement ): Observable { return merge( watchElementOffset(el), watchElementSize(document.body) // @todo find a better way for this ) .pipe( map(() => getElementOffsetAbsolute(el)), startWith(getElementOffsetAbsolute(el)) ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/element/offset/content/000077500000000000000000000000001475306445600313205ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/element/offset/content/index.ts000066400000000000000000000044021475306445600327770ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, animationFrameScheduler, auditTime, fromEvent, map, merge, startWith } from "rxjs" import { ElementOffset } from "../_" /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Retrieve element content offset (= scroll offset) * * @param el - Element * * @returns Element content offset */ export function getElementContentOffset( el: HTMLElement ): ElementOffset { return { x: el.scrollLeft, y: el.scrollTop } } /* ------------------------------------------------------------------------- */ /** * Watch element content offset * * @param el - Element * * @returns Element content offset observable */ export function watchElementContentOffset( el: HTMLElement ): Observable { return merge( fromEvent(el, "scroll"), fromEvent(window, "scroll"), fromEvent(window, "resize") ) .pipe( auditTime(0, animationFrameScheduler), map(() => getElementContentOffset(el)), startWith(getElementContentOffset(el)) ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/element/offset/index.ts000066400000000000000000000022611475306445600313260ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ export * from "./_" export * from "./content" mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/element/size/000077500000000000000000000000001475306445600273325ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/element/size/_/000077500000000000000000000000001475306445600275505ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/element/size/_/index.ts000066400000000000000000000122521475306445600312310ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { NEVER, Observable, Subject, defer, filter, finalize, map, merge, of, shareReplay, startWith, switchMap, tap } from "rxjs" import { watchScript } from "../../../script" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Element offset */ export interface ElementSize { width: number /* Element width */ height: number /* Element height */ } /* ---------------------------------------------------------------------------- * Data * ------------------------------------------------------------------------- */ /** * Resize observer entry subject */ const entry$ = new Subject() /** * Resize observer observable * * This observable will create a `ResizeObserver` on the first subscription * and will automatically terminate it when there are no more subscribers. * It's quite important to centralize observation in a single `ResizeObserver`, * as the performance difference can be quite dramatic, as the link shows. * * If the browser doesn't have a `ResizeObserver` implementation available, a * polyfill is automatically downloaded from unpkg.com. This is also compatible * with the built-in privacy plugin, which will download the polyfill and put * it alongside the built site for self-hosting. * * @see https://bit.ly/3iIYfEm - Google Groups on performance */ const observer$ = defer(() => ( typeof ResizeObserver === "undefined" ? watchScript("https://unpkg.com/resize-observer-polyfill") : of(undefined) )) .pipe( map(() => new ResizeObserver(entries => ( entries.forEach(entry => entry$.next(entry)) ))), switchMap(observer => merge(NEVER, of(observer)).pipe( finalize(() => observer.disconnect()) )), shareReplay(1) ) /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Retrieve element size * * @param el - Element * * @returns Element size */ export function getElementSize( el: HTMLElement ): ElementSize { return { width: el.offsetWidth, height: el.offsetHeight } } /* ------------------------------------------------------------------------- */ /** * Watch element size * * This function returns an observable that subscribes to a single internal * instance of `ResizeObserver` upon subscription, and emit resize events until * termination. Note that this function should not be called with the same * element twice, as the first unsubscription will terminate observation. * * Sadly, we can't use the `DOMRect` objects returned by the observer, because * we need the emitted values to be consistent with `getElementSize`, which will * return the used values (rounded) and not actual values (unrounded). Thus, we * use the `offset*` properties. See the linked GitHub issue. * * @see https://bit.ly/3m0k3he - GitHub issue * * @param el - Element * * @returns Element size observable */ export function watchElementSize( el: HTMLElement ): Observable { // Compute target element - since inline elements cannot be observed by the // current `ResizeObserver` implementation as provided by browsers, we need // to determine the first containing parent element and use that one as a // target, while we always compute the actual size from the element. let target = el while (target.clientWidth === 0) if (target.parentElement) target = target.parentElement else break // Observe target element and recompute element size on resize - as described // above, the target element is not necessarily the element of interest return observer$.pipe( tap(observer => observer.observe(target)), switchMap(observer => entry$.pipe( filter(entry => entry.target === target), finalize(() => observer.unobserve(target)) )), map(() => getElementSize(el)), startWith(getElementSize(el)) ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/element/size/content/000077500000000000000000000000001475306445600310045ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/element/size/content/index.ts000066400000000000000000000061751475306445600324740ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { ElementSize } from "../_" /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Retrieve element content size (= scroll width and height) * * @param el - Element * * @returns Element content size */ export function getElementContentSize( el: HTMLElement ): ElementSize { return { width: el.scrollWidth, height: el.scrollHeight } } /** * Retrieve the overflowing container of an element, if any * * @param el - Element * * @returns Overflowing container or nothing */ export function getElementContainer( el: HTMLElement ): HTMLElement | undefined { let parent = el.parentElement while (parent) if ( el.scrollWidth <= parent.scrollWidth && el.scrollHeight <= parent.scrollHeight ) parent = (el = parent).parentElement else break /* Return overflowing container */ return parent ? el : undefined } /** * Retrieve all overflowing containers of an element, if any * * Note that this function has a slightly different behavior, so we should at * some point consider refactoring how overflowing containers are handled. * * @param el - Element * * @returns Overflowing containers */ export function getElementContainers( el: HTMLElement ): HTMLElement[] { const containers: HTMLElement[] = [] // Walk up the DOM tree until we find an overflowing container let parent = el.parentElement while (parent) { if ( el.clientWidth > parent.clientWidth || el.clientHeight > parent.clientHeight ) containers.push(parent) // Continue with parent element parent = (el = parent).parentElement } // If the page is short, the body might not be overflowing and there might be // no other containers, which is why we need to make sure the body is present if (containers.length === 0) containers.push(document.documentElement) // Return overflowing containers return containers } mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/element/size/index.ts000066400000000000000000000022611475306445600310120ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ export * from "./_" export * from "./content" mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/element/visibility/000077500000000000000000000000001475306445600305475ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/element/visibility/index.ts000066400000000000000000000070731475306445600322350ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { NEVER, Observable, Subject, defer, distinctUntilChanged, filter, finalize, map, merge, of, shareReplay, switchMap, tap } from "rxjs" import { getElementContentSize, getElementSize, watchElementContentOffset } from "~/browser" /* ---------------------------------------------------------------------------- * Data * ------------------------------------------------------------------------- */ /** * Intersection observer entry subject */ const entry$ = new Subject() /** * Intersection observer observable * * This observable will create an `IntersectionObserver` on first subscription * and will automatically terminate it when there are no more subscribers. * * @see https://bit.ly/3iIYfEm - Google Groups on performance */ const observer$ = defer(() => of( new IntersectionObserver(entries => { for (const entry of entries) entry$.next(entry) }, { threshold: 0 }) )) .pipe( switchMap(observer => merge(NEVER, of(observer)) .pipe( finalize(() => observer.disconnect()) ) ), shareReplay(1) ) /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch element visibility * * @param el - Element * * @returns Element visibility observable */ export function watchElementVisibility( el: HTMLElement ): Observable { return observer$ .pipe( tap(observer => observer.observe(el)), switchMap(observer => entry$ .pipe( filter(({ target }) => target === el), finalize(() => observer.unobserve(el)), map(({ isIntersecting }) => isIntersecting) ) ) ) } /** * Watch element boundary * * This function returns an observable which emits whether the bottom content * boundary (= scroll offset) of an element is within a certain threshold. * * @param el - Element * @param threshold - Threshold * * @returns Element boundary observable */ export function watchElementBoundary( el: HTMLElement, threshold = 16 ): Observable { return watchElementContentOffset(el) .pipe( map(({ y }) => { const visible = getElementSize(el) const content = getElementContentSize(el) return y >= ( content.height - visible.height - threshold ) }), distinctUntilChanged() ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/index.ts000066400000000000000000000026061475306445600264120ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ export * from "./document" export * from "./element" export * from "./keyboard" export * from "./location" export * from "./media" export * from "./request" export * from "./script" export * from "./toggle" export * from "./viewport" export * from "./worker" mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/keyboard/000077500000000000000000000000001475306445600265275ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/keyboard/index.ts000066400000000000000000000102051475306445600302040ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { EMPTY, Observable, filter, fromEvent, map, merge, share, startWith, switchMap } from "rxjs" import { getActiveElement } from "../element" import { getToggle } from "../toggle" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Keyboard mode */ export type KeyboardMode = | "global" /* Global */ | "search" /* Search is open */ /* ------------------------------------------------------------------------- */ /** * Keyboard */ export interface Keyboard { mode: KeyboardMode /* Keyboard mode */ type: string /* Key type */ claim(): void /* Key claim */ } /* ---------------------------------------------------------------------------- * Helper functions * ------------------------------------------------------------------------- */ /** * Check whether an element may receive keyboard input * * @param el - Element * @param type - Key type * * @returns Test result */ function isSusceptibleToKeyboard( el: HTMLElement, type: string ): boolean { switch (el.constructor) { /* Input elements */ case HTMLInputElement: /* @ts-expect-error - omit unnecessary type cast */ if (el.type === "radio") return /^Arrow/.test(type) else return true /* Select element and textarea */ case HTMLSelectElement: case HTMLTextAreaElement: return true /* Everything else */ default: return el.isContentEditable } } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch composition events * * @returns Composition observable */ export function watchComposition(): Observable { return merge( fromEvent(window, "compositionstart").pipe(map(() => true)), fromEvent(window, "compositionend").pipe(map(() => false)) ) .pipe( startWith(false) ) } /** * Watch keyboard * * @returns Keyboard observable */ export function watchKeyboard(): Observable { const keyboard$ = fromEvent(window, "keydown") .pipe( filter(ev => !(ev.metaKey || ev.ctrlKey)), map(ev => ({ mode: getToggle("search") ? "search" : "global", type: ev.key, claim() { ev.preventDefault() ev.stopPropagation() } } as Keyboard)), filter(({ mode, type }) => { if (mode === "global") { const active = getActiveElement() if (typeof active !== "undefined") return !isSusceptibleToKeyboard(active, type) } return true }), share() ) /* Don't emit during composition events - see https://bit.ly/3te3Wl8 */ return watchComposition() .pipe( switchMap(active => !active ? keyboard$ : EMPTY) ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/location/000077500000000000000000000000001475306445600265375ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/location/_/000077500000000000000000000000001475306445600267555ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/location/_/index.ts000066400000000000000000000056431475306445600304440ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Subject } from "rxjs" import { feature } from "~/_" import { h } from "~/utilities" /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Retrieve location * * This function returns a `URL` object (and not `Location`) to normalize the * typings across the application. Furthermore, locations need to be tracked * without setting them and `Location` is a singleton which represents the * current location. * * @returns URL */ export function getLocation(): URL { return new URL(location.href) } /** * Set location * * If instant navigation is enabled, this function creates a temporary anchor * element, sets the `href` attribute, appends it to the body, clicks it, and * then removes it again. The event will bubble up the DOM and trigger be * intercepted by the instant loading business logic. * * Note that we must append and remove the anchor element, or the event will * not bubble up the DOM, making it impossible to intercept it. * * @param url - URL to navigate to * @param navigate - Force navigation */ export function setLocation( url: URL | HTMLLinkElement, navigate = false ): void { if (feature("navigation.instant") && !navigate) { const el = h("a", { href: url.href }) document.body.appendChild(el) el.click() el.remove() // If we're not using instant navigation, and the page should not be reloaded // just instruct the browser to navigate to the given URL } else { location.href = url.href } } /* ------------------------------------------------------------------------- */ /** * Watch location * * @returns Location subject */ export function watchLocation(): Subject { return new Subject() } mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/location/hash/000077500000000000000000000000001475306445600274625ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/location/hash/index.ts000066400000000000000000000057411475306445600311500ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, filter, fromEvent, map, merge, shareReplay, startWith } from "rxjs" import { getOptionalElement } from "~/browser" import { h } from "~/utilities" /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Retrieve location hash * * @returns Location hash */ export function getLocationHash(): string { return location.hash.slice(1) } /** * Set location hash * * Setting a new fragment identifier via `location.hash` will have no effect * if the value doesn't change. When a new fragment identifier is set, we want * the browser to target the respective element at all times, which is why we * use this dirty little trick. * * @param hash - Location hash */ export function setLocationHash(hash: string): void { const el = h("a", { href: hash }) el.addEventListener("click", ev => ev.stopPropagation()) el.click() } /* ------------------------------------------------------------------------- */ /** * Watch location hash * * @param location$ - Location observable * * @returns Location hash observable */ export function watchLocationHash( location$: Observable ): Observable { return merge( fromEvent(window, "hashchange"), location$ ) .pipe( map(getLocationHash), startWith(getLocationHash()), filter(hash => hash.length > 0), shareReplay(1) ) } /** * Watch location target * * @param location$ - Location observable * * @returns Location target observable */ export function watchLocationTarget( location$: Observable ): Observable { return watchLocationHash(location$) .pipe( map(id => getOptionalElement(`[id="${id}"]`)!), filter(el => typeof el !== "undefined") ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/location/index.ts000066400000000000000000000022561475306445600302230ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ export * from "./_" export * from "./hash" mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/media/000077500000000000000000000000001475306445600260065ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/media/index.ts000066400000000000000000000053671475306445600275000ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { EMPTY, Observable, fromEvent, fromEventPattern, map, merge, startWith, switchMap } from "rxjs" /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch media query * * Note that although `MediaQueryList.addListener` is deprecated we have to * use it, because it's the only way to ensure proper downward compatibility. * * @see https://bit.ly/3dUBH2m - GitHub issue * * @param query - Media query * * @returns Media observable */ export function watchMedia(query: string): Observable { const media = matchMedia(query) return fromEventPattern(next => ( media.addListener(() => next(media.matches)) )) .pipe( startWith(media.matches) ) } /** * Watch print mode * * @returns Print observable */ export function watchPrint(): Observable { const media = matchMedia("print") return merge( fromEvent(window, "beforeprint").pipe(map(() => true)), fromEvent(window, "afterprint").pipe(map(() => false)) ) .pipe( startWith(media.matches) ) } /* ------------------------------------------------------------------------- */ /** * Toggle an observable with a media observable * * @template T - Data type * * @param query$ - Media observable * @param factory - Observable factory * * @returns Toggled observable */ export function at( query$: Observable, factory: () => Observable ): Observable { return query$ .pipe( switchMap(active => active ? factory() : EMPTY) ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/request/000077500000000000000000000000001475306445600264175ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/request/index.ts000066400000000000000000000122621475306445600301010ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, Subject, map, shareReplay, switchMap } from "rxjs" /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Options */ interface Options { progress$?: Subject // Progress subject } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Fetch the given URL * * This function returns an observable that emits the response as a blob and * completes, or emits an error if the request failed. The caller can cancel * the request by unsubscribing at any time, which will automatically abort * the inflight request and complete the observable. * * Note that we use `XMLHTTPRequest` not because we're nostalgic, but because * it's the only way to get progress events for downloads and also allow for * cancellation of requests, as the official Fetch API does not support this * yet, even though we're already in 2024. * * @param url - Request URL * @param options - Options * * @returns Data observable */ export function request( url: URL | string, options?: Options ): Observable { return new Observable(observer => { const req = new XMLHttpRequest() req.open("GET", `${url}`) req.responseType = "blob" // Handle response req.addEventListener("load", () => { if (req.status >= 200 && req.status < 300) { observer.next(req.response) observer.complete() // Every response that is not in the 2xx range is considered an error } else { observer.error(new Error(req.statusText)) } }) // Handle network errors req.addEventListener("error", () => { observer.error(new Error("Network error")) }) // Handle aborted requests req.addEventListener("abort", () => { observer.complete() }) // Handle download progress if (typeof options?.progress$ !== "undefined") { req.addEventListener("progress", event => { if (event.lengthComputable) { options.progress$!.next((event.loaded / event.total) * 100) // Hack: Chromium doesn't report the total number of bytes if content // is compressed, so we need this fallback - see https://t.ly/ZXofI } else { const length = req.getResponseHeader("Content-Length") ?? 0 options.progress$!.next((event.loaded / +length) * 100) } }) // Immediately set progress to 5% to indicate that we're loading options.progress$.next(5) } // Send request and automatically abort request upon unsubscription req.send() return () => req.abort() }) } /* ------------------------------------------------------------------------- */ /** * Fetch JSON from the given URL * * @template T - Data type * * @param url - Request URL * @param options - Options * * @returns Data observable */ export function requestJSON( url: URL | string, options?: Options ): Observable { return request(url, options) .pipe( switchMap(res => res.text()), map(body => JSON.parse(body) as T), shareReplay(1) ) } /** * Fetch HTML from the given URL * * @param url - Request URL * @param options - Options * * @returns Data observable */ export function requestHTML( url: URL | string, options?: Options ): Observable { const dom = new DOMParser() return request(url, options) .pipe( switchMap(res => res.text()), map(res => dom.parseFromString(res, "text/html")), shareReplay(1) ) } /** * Fetch XML from the given URL * * @param url - Request URL * @param options - Options * * @returns Data observable */ export function requestXML( url: URL | string, options?: Options ): Observable { const dom = new DOMParser() return request(url, options) .pipe( switchMap(res => res.text()), map(res => dom.parseFromString(res, "text/xml")), shareReplay(1) ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/script/000077500000000000000000000000001475306445600262335ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/script/index.ts000066400000000000000000000043121475306445600277120ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, defer, finalize, fromEvent, map, merge, switchMap, take, throwError } from "rxjs" import { h } from "~/utilities" /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Create and load a `script` element * * This function returns an observable that will emit when the script was * successfully loaded, or throw an error if it wasn't. * * @param src - Script URL * * @returns Script observable */ export function watchScript(src: string): Observable { const script = h("script", { src }) return defer(() => { document.head.appendChild(script) return merge( fromEvent(script, "load"), fromEvent(script, "error") .pipe( switchMap(() => ( throwError(() => new ReferenceError(`Invalid script: ${src}`)) )) ) ) .pipe( map(() => undefined), finalize(() => document.head.removeChild(script)), take(1) ) }) } mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/toggle/000077500000000000000000000000001475306445600262105ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/toggle/index.ts000066400000000000000000000062031475306445600276700ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, fromEvent, map, startWith } from "rxjs" import { getElement } from "../element" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Toggle */ export type Toggle = | "drawer" /* Toggle for drawer */ | "search" /* Toggle for search */ /* ---------------------------------------------------------------------------- * Data * ------------------------------------------------------------------------- */ /** * Toggle map */ const toggles: Record = { drawer: getElement("[data-md-toggle=drawer]"), search: getElement("[data-md-toggle=search]") } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Retrieve the value of a toggle * * @param name - Toggle * * @returns Toggle value */ export function getToggle(name: Toggle): boolean { return toggles[name].checked } /** * Set toggle * * Simulating a click event seems to be the most cross-browser compatible way * of changing the value while also emitting a `change` event. Before, Material * used `CustomEvent` to programmatically change the value of a toggle, but this * is a much simpler and cleaner solution which doesn't require a polyfill. * * @param name - Toggle * @param value - Toggle value */ export function setToggle(name: Toggle, value: boolean): void { if (toggles[name].checked !== value) toggles[name].click() } /* ------------------------------------------------------------------------- */ /** * Watch toggle * * @param name - Toggle * * @returns Toggle value observable */ export function watchToggle(name: Toggle): Observable { const el = toggles[name] return fromEvent(el, "change") .pipe( map(() => el.checked), startWith(el.checked) ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/viewport/000077500000000000000000000000001475306445600266065ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/viewport/_/000077500000000000000000000000001475306445600270245ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/viewport/_/index.ts000066400000000000000000000041661475306445600305120ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, combineLatest, map, shareReplay } from "rxjs" import { ViewportOffset, watchViewportOffset } from "../offset" import { ViewportSize, watchViewportSize } from "../size" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Viewport */ export interface Viewport { offset: ViewportOffset /* Viewport offset */ size: ViewportSize /* Viewport size */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch viewport * * @returns Viewport observable */ export function watchViewport(): Observable { return combineLatest([ watchViewportOffset(), watchViewportSize() ]) .pipe( map(([offset, size]) => ({ offset, size })), shareReplay(1) ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/viewport/at/000077500000000000000000000000001475306445600272125ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/viewport/at/index.ts000066400000000000000000000051541475306445600306760ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, combineLatest, distinctUntilKeyChanged, map } from "rxjs" import { Header } from "~/components" import { getElementOffset } from "../../element" import { Viewport } from "../_" /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Watch options */ interface WatchOptions { viewport$: Observable /* Viewport observable */ header$: Observable
    /* Header observable */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch viewport relative to element * * @param el - Element * @param options - Options * * @returns Viewport observable */ export function watchViewportAt( el: HTMLElement, { viewport$, header$ }: WatchOptions ): Observable { const size$ = viewport$ .pipe( distinctUntilKeyChanged("size") ) /* Compute element offset */ const offset$ = combineLatest([size$, header$]) .pipe( map(() => getElementOffset(el)) ) /* Compute relative viewport, return hot observable */ return combineLatest([header$, viewport$, offset$]) .pipe( map(([{ height }, { offset, size }, { x, y }]) => ({ offset: { x: offset.x - x, y: offset.y - y + height }, size })) ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/viewport/index.ts000066400000000000000000000023341475306445600302670ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ export * from "./_" export * from "./at" export * from "./offset" export * from "./size" mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/viewport/offset/000077500000000000000000000000001475306445600300745ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/viewport/offset/index.ts000066400000000000000000000047711475306445600315640ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, fromEvent, map, merge, startWith } from "rxjs" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Viewport offset */ export interface ViewportOffset { x: number /* Horizontal offset */ y: number /* Vertical offset */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Retrieve viewport offset * * On iOS Safari, viewport offset can be negative due to overflow scrolling. * As this may induce strange behaviors downstream, we'll just limit it to 0. * * @returns Viewport offset */ export function getViewportOffset(): ViewportOffset { return { x: Math.max(0, scrollX), y: Math.max(0, scrollY) } } /* ------------------------------------------------------------------------- */ /** * Watch viewport offset * * @returns Viewport offset observable */ export function watchViewportOffset(): Observable { return merge( fromEvent(window, "scroll", { passive: true }), fromEvent(window, "resize", { passive: true }) ) .pipe( map(getViewportOffset), startWith(getViewportOffset()) ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/viewport/size/000077500000000000000000000000001475306445600275605ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/viewport/size/index.ts000066400000000000000000000043531475306445600312440ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, fromEvent, map, startWith } from "rxjs" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Viewport size */ export interface ViewportSize { width: number /* Viewport width */ height: number /* Viewport height */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Retrieve viewport size * * @returns Viewport size */ export function getViewportSize(): ViewportSize { return { width: innerWidth, height: innerHeight } } /* ------------------------------------------------------------------------- */ /** * Watch viewport size * * @returns Viewport size observable */ export function watchViewportSize(): Observable { return fromEvent(window, "resize", { passive: true }) .pipe( map(getViewportSize), startWith(getViewportSize()) ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/worker/000077500000000000000000000000001475306445600262405ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/browser/worker/index.ts000066400000000000000000000063501475306445600277230ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, Subject, endWith, fromEvent, ignoreElements, mergeWith, share, takeUntil } from "rxjs" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Worker message */ export interface WorkerMessage { type: unknown /* Message type */ data?: unknown /* Message data */ } /* ---------------------------------------------------------------------------- * Helper functions * ------------------------------------------------------------------------- */ /** * Create an observable for receiving from a web worker * * @template T - Data type * * @param worker - Web worker * * @returns Message observable */ function recv(worker: Worker): Observable { return fromEvent, T>(worker, "message", ev => ev.data) } /** * Create a subject for sending to a web worker * * @template T - Data type * * @param worker - Web worker * * @returns Message subject */ function send(worker: Worker): Subject { const send$ = new Subject() send$.subscribe(data => worker.postMessage(data)) /* Return message subject */ return send$ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Create a bidirectional communication channel to a web worker * * @template T - Data type * * @param url - Worker URL * @param worker - Worker * * @returns Worker subject */ export function watchWorker( url: string, worker = new Worker(url) ): Subject { const recv$ = recv(worker) const send$ = send(worker) /* Create worker subject and forward messages */ const worker$ = new Subject() worker$.subscribe(send$) /* Return worker subject */ const done$ = send$.pipe(ignoreElements(), endWith(true)) return worker$ .pipe( ignoreElements(), mergeWith(recv$.pipe(takeUntil(done$))), share() ) as Subject } mkdocs-material-9.6.4/src/templates/assets/javascripts/bundle.ts000066400000000000000000000213471475306445600250740ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import "focus-visible" import { EMPTY, NEVER, Observable, Subject, defer, delay, filter, map, merge, mergeWith, shareReplay, switchMap } from "rxjs" import { configuration, feature } from "./_" import { at, getActiveElement, getOptionalElement, requestJSON, setLocation, setToggle, watchDocument, watchKeyboard, watchLocation, watchLocationTarget, watchMedia, watchPrint, watchScript, watchViewport } from "./browser" import { getComponentElement, getComponentElements, mountAnnounce, mountBackToTop, mountConsent, mountContent, mountDialog, mountHeader, mountHeaderTitle, mountPalette, mountProgress, mountSearch, mountSearchHiglight, mountSidebar, mountSource, mountTableOfContents, mountTabs, watchHeader, watchMain } from "./components" import { SearchIndex, setupClipboardJS, setupInstantNavigation, setupVersionSelector } from "./integrations" import { patchEllipsis, patchIndeterminate, patchScrollfix, patchScrolllock } from "./patches" import "./polyfills" /* ---------------------------------------------------------------------------- * Functions - @todo refactor * ------------------------------------------------------------------------- */ /** * Fetch search index * * @returns Search index observable */ function fetchSearchIndex(): Observable { if (location.protocol === "file:") { return watchScript( `${new URL("search/search_index.js", config.base)}` ) .pipe( // @ts-ignore - @todo fix typings map(() => __index), shareReplay(1) ) } else { return requestJSON( new URL("search/search_index.json", config.base) ) } } /* ---------------------------------------------------------------------------- * Application * ------------------------------------------------------------------------- */ /* Yay, JavaScript is available */ document.documentElement.classList.remove("no-js") document.documentElement.classList.add("js") /* Set up navigation observables and subjects */ const document$ = watchDocument() const location$ = watchLocation() const target$ = watchLocationTarget(location$) const keyboard$ = watchKeyboard() /* Set up media observables */ const viewport$ = watchViewport() const tablet$ = watchMedia("(min-width: 960px)") const screen$ = watchMedia("(min-width: 1220px)") const print$ = watchPrint() /* Retrieve search index, if search is enabled */ const config = configuration() const index$ = document.forms.namedItem("search") ? fetchSearchIndex() : NEVER /* Set up Clipboard.js integration */ const alert$ = new Subject() setupClipboardJS({ alert$ }) /* Set up progress indicator */ const progress$ = new Subject() /* Set up instant navigation, if enabled */ if (feature("navigation.instant")) setupInstantNavigation({ location$, viewport$, progress$ }) .subscribe(document$) /* Set up version selector */ if (config.version?.provider === "mike") setupVersionSelector({ document$ }) /* Always close drawer and search on navigation */ merge(location$, target$) .pipe( delay(125) ) .subscribe(() => { setToggle("drawer", false) setToggle("search", false) }) /* Set up global keyboard handlers */ keyboard$ .pipe( filter(({ mode }) => mode === "global") ) .subscribe(key => { switch (key.type) { /* Go to previous page */ case "p": case ",": const prev = getOptionalElement("link[rel=prev]") if (typeof prev !== "undefined") setLocation(prev) break /* Go to next page */ case "n": case ".": const next = getOptionalElement("link[rel=next]") if (typeof next !== "undefined") setLocation(next) break /* Expand navigation, see https://bit.ly/3ZjG5io */ case "Enter": const active = getActiveElement() if (active instanceof HTMLLabelElement) active.click() } }) /* Set up patches */ patchEllipsis({ viewport$, document$ }) patchIndeterminate({ document$, tablet$ }) patchScrollfix({ document$ }) patchScrolllock({ viewport$, tablet$ }) /* Set up header and main area observable */ const header$ = watchHeader(getComponentElement("header"), { viewport$ }) const main$ = document$ .pipe( map(() => getComponentElement("main")), switchMap(el => watchMain(el, { viewport$, header$ })), shareReplay(1) ) /* Set up control component observables */ const control$ = merge( /* Consent */ ...getComponentElements("consent") .map(el => mountConsent(el, { target$ })), /* Dialog */ ...getComponentElements("dialog") .map(el => mountDialog(el, { alert$ })), /* Color palette */ ...getComponentElements("palette") .map(el => mountPalette(el)), /* Progress bar */ ...getComponentElements("progress") .map(el => mountProgress(el, { progress$ })), /* Search */ ...getComponentElements("search") .map(el => mountSearch(el, { index$, keyboard$ })), /* Repository information */ ...getComponentElements("source") .map(el => mountSource(el)) ) /* Set up content component observables */ const content$ = defer(() => merge( /* Announcement bar */ ...getComponentElements("announce") .map(el => mountAnnounce(el)), /* Content */ ...getComponentElements("content") .map(el => mountContent(el, { viewport$, target$, print$ })), /* Search highlighting */ ...getComponentElements("content") .map(el => feature("search.highlight") ? mountSearchHiglight(el, { index$, location$ }) : EMPTY ), /* Header */ ...getComponentElements("header") .map(el => mountHeader(el, { viewport$, header$, main$ })), /* Header title */ ...getComponentElements("header-title") .map(el => mountHeaderTitle(el, { viewport$, header$ })), /* Sidebar */ ...getComponentElements("sidebar") .map(el => el.getAttribute("data-md-type") === "navigation" ? at(screen$, () => mountSidebar(el, { viewport$, header$, main$ })) : at(tablet$, () => mountSidebar(el, { viewport$, header$, main$ })) ), /* Navigation tabs */ ...getComponentElements("tabs") .map(el => mountTabs(el, { viewport$, header$ })), /* Table of contents */ ...getComponentElements("toc") .map(el => mountTableOfContents(el, { viewport$, header$, main$, target$ })), /* Back-to-top button */ ...getComponentElements("top") .map(el => mountBackToTop(el, { viewport$, header$, main$, target$ })) )) /* Set up component observables */ const component$ = document$ .pipe( switchMap(() => content$), mergeWith(control$), shareReplay(1) ) /* Subscribe to all components */ component$.subscribe() /* ---------------------------------------------------------------------------- * Exports * ------------------------------------------------------------------------- */ window.document$ = document$ /* Document observable */ window.location$ = location$ /* Location subject */ window.target$ = target$ /* Location target observable */ window.keyboard$ = keyboard$ /* Keyboard observable */ window.viewport$ = viewport$ /* Viewport observable */ window.tablet$ = tablet$ /* Media tablet observable */ window.screen$ = screen$ /* Media screen observable */ window.print$ = print$ /* Media print observable */ window.alert$ = alert$ /* Alert subject */ window.progress$ = progress$ /* Progress indicator subject */ window.component$ = component$ /* Component observable */ mkdocs-material-9.6.4/src/templates/assets/javascripts/components/000077500000000000000000000000001475306445600254315ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/_/000077500000000000000000000000001475306445600256475ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/_/index.ts000066400000000000000000000126521475306445600273340ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { getElement, getElements } from "~/browser" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Component type */ export type ComponentType = | "announce" /* Announcement bar */ | "container" /* Container */ | "consent" /* Consent */ | "content" /* Content */ | "dialog" /* Dialog */ | "header" /* Header */ | "header-title" /* Header title */ | "header-topic" /* Header topic */ | "main" /* Main area */ | "outdated" /* Version warning */ | "palette" /* Color palette */ | "progress" /* Progress indicator */ | "search" /* Search */ | "search-query" /* Search input */ | "search-result" /* Search results */ | "search-share" /* Search sharing */ | "search-suggest" /* Search suggestions */ | "sidebar" /* Sidebar */ | "skip" /* Skip link */ | "source" /* Repository information */ | "tabs" /* Navigation tabs */ | "toc" /* Table of contents */ | "top" /* Back-to-top button */ /** * Component * * @template T - Component type * @template U - Reference type */ export type Component< T extends {} = {}, U extends HTMLElement = HTMLElement > = T & { ref: U /* Component reference */ } /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Component type map */ interface ComponentTypeMap { "announce": HTMLElement /* Announcement bar */ "container": HTMLElement /* Container */ "consent": HTMLElement /* Consent */ "content": HTMLElement /* Content */ "dialog": HTMLElement /* Dialog */ "header": HTMLElement /* Header */ "header-title": HTMLElement /* Header title */ "header-topic": HTMLElement /* Header topic */ "main": HTMLElement /* Main area */ "outdated": HTMLElement /* Version warning */ "palette": HTMLElement /* Color palette */ "progress": HTMLElement /* Progress indicator */ "search": HTMLElement /* Search */ "search-query": HTMLInputElement /* Search input */ "search-result": HTMLElement /* Search results */ "search-share": HTMLAnchorElement /* Search sharing */ "search-suggest": HTMLElement /* Search suggestions */ "sidebar": HTMLElement /* Sidebar */ "skip": HTMLAnchorElement /* Skip link */ "source": HTMLAnchorElement /* Repository information */ "tabs": HTMLElement /* Navigation tabs */ "toc": HTMLElement /* Table of contents */ "top": HTMLAnchorElement /* Back-to-top button */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Retrieve the element for a given component or throw a reference error * * @template T - Component type * * @param type - Component type * @param node - Node of reference * * @returns Element */ export function getComponentElement( type: T, node: ParentNode = document ): ComponentTypeMap[T] { return getElement(`[data-md-component=${type}]`, node) } /** * Retrieve all elements for a given component * * @template T - Component type * * @param type - Component type * @param node - Node of reference * * @returns Elements */ export function getComponentElements( type: T, node: ParentNode = document ): ComponentTypeMap[T][] { return getElements(`[data-md-component=${type}]`, node) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/announce/000077500000000000000000000000001475306445600272375ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/announce/index.ts000066400000000000000000000063061475306445600307230ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { EMPTY, Observable, Subject, defer, finalize, fromEvent, map, tap } from "rxjs" import { feature } from "~/_" import { getElement } from "~/browser" import { Component } from "../_" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Announcement bar */ export interface Announce { hash: number /* Content hash */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch announcement bar * * @param el - Announcement bar element * * @returns Announcement bar observable */ export function watchAnnounce( el: HTMLElement ): Observable { const button = getElement(".md-typeset > :first-child", el) return fromEvent(button, "click", { once: true }) .pipe( map(() => getElement(".md-typeset", el)), map(content => ({ hash: __md_hash(content.innerHTML) })) ) } /** * Mount announcement bar * * @param el - Announcement bar element * * @returns Announcement bar component observable */ export function mountAnnounce( el: HTMLElement ): Observable> { if (!feature("announce.dismiss") || !el.childElementCount) return EMPTY /* Support instant navigation - see https://t.ly/3FTme */ if (!el.hidden) { const content = getElement(".md-typeset", el) if (__md_hash(content.innerHTML) === __md_get("__announce")) el.hidden = true } /* Mount component on subscription */ return defer(() => { const push$ = new Subject() push$.subscribe(({ hash }) => { el.hidden = true /* Persist preference in local storage */ __md_set("__announce", hash) }) /* Create and return component */ return watchAnnounce(el) .pipe( tap(state => push$.next(state)), finalize(() => push$.complete()), map(state => ({ ref: el, ...state })) ) }) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/consent/000077500000000000000000000000001475306445600271025ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/consent/index.ts000066400000000000000000000063241475306445600305660ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, Subject, finalize, map, tap } from "rxjs" import { Component } from "../_" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Consent */ export interface Consent { hidden: boolean /* Consent is hidden */ } /** * Consent defaults */ export interface ConsentDefaults { analytics?: boolean /* Consent for Analytics */ github?: boolean /* Consent for GitHub */ } /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Watch options */ interface WatchOptions { target$: Observable /* Target observable */ } /** * Mount options */ interface MountOptions { target$: Observable /* Target observable */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch consent * * @param el - Consent element * @param options - Options * * @returns Consent observable */ export function watchConsent( el: HTMLElement, { target$ }: WatchOptions ): Observable { return target$ .pipe( map(target => ({ hidden: target !== el })) ) } /* ------------------------------------------------------------------------- */ /** * Mount consent * * @param el - Consent element * @param options - Options * * @returns Consent component observable */ export function mountConsent( el: HTMLElement, options: MountOptions ): Observable> { const internal$ = new Subject() internal$.subscribe(({ hidden }) => { el.hidden = hidden }) /* Create and return component */ return watchConsent(el, options) .pipe( tap(state => internal$.next(state)), finalize(() => internal$.complete()), map(state => ({ ref: el, ...state })) ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/content/000077500000000000000000000000001475306445600271035ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/content/_/000077500000000000000000000000001475306445600273215ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/content/_/index.ts000066400000000000000000000076351475306445600310130ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, merge } from "rxjs" import { feature } from "~/_" import { Viewport, getElements } from "~/browser" import { Component } from "../../_" import { Tooltip, mountInlineTooltip2 } from "../../tooltip2" import { Annotation, mountAnnotationBlock } from "../annotation" import { CodeBlock, mountCodeBlock } from "../code" import { Details, mountDetails } from "../details" import { Mermaid, mountMermaid } from "../mermaid" import { DataTable, mountDataTable } from "../table" import { ContentTabs, mountContentTabs } from "../tabs" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Content */ export type Content = | Annotation | CodeBlock | ContentTabs | DataTable | Details | Mermaid | Tooltip /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Mount options */ interface MountOptions { viewport$: Observable /* Viewport observable */ target$: Observable /* Location target observable */ print$: Observable /* Media print observable */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Mount content * * This function mounts all components that are found in the content of the * actual article, including code blocks, data tables and details. * * @param el - Content element * @param options - Options * * @returns Content component observable */ export function mountContent( el: HTMLElement, { viewport$, target$, print$ }: MountOptions ): Observable> { return merge( /* Annotations */ ...getElements(".annotate:not(.highlight)", el) .map(child => mountAnnotationBlock(child, { target$, print$ })), /* Code blocks */ ...getElements("pre:not(.mermaid) > code", el) .map(child => mountCodeBlock(child, { target$, print$ })), /* Mermaid diagrams */ ...getElements("pre.mermaid", el) .map(child => mountMermaid(child)), /* Data tables */ ...getElements("table:not([class])", el) .map(child => mountDataTable(child)), /* Details */ ...getElements("details", el) .map(child => mountDetails(child, { target$, print$ })), /* Content tabs */ ...getElements("[data-tabs]", el) .map(child => mountContentTabs(child, { viewport$, target$ })), /* Tooltips */ ...getElements("[title]", el) .filter(() => feature("content.tooltips")) .map(child => mountInlineTooltip2(child, { viewport$ })) ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/content/annotation/000077500000000000000000000000001475306445600312555ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/content/annotation/_/000077500000000000000000000000001475306445600314735ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/content/annotation/_/index.ts000066400000000000000000000162701475306445600331600ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, Subject, animationFrameScheduler, auditTime, combineLatest, debounceTime, defer, delay, endWith, filter, finalize, fromEvent, ignoreElements, map, merge, switchMap, take, takeUntil, tap, throttleTime, withLatestFrom } from "rxjs" import { ElementOffset, getActiveElement, getElementSize, watchElementContentOffset, watchElementFocus, watchElementOffset, watchElementVisibility } from "~/browser" import { Component } from "../../../_" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Annotation */ export interface Annotation { active: boolean /* Annotation is active */ offset: ElementOffset /* Annotation offset */ } /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Mount options */ interface MountOptions { target$: Observable /* Location target observable */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch annotation * * @param el - Annotation element * @param container - Containing element * * @returns Annotation observable */ export function watchAnnotation( el: HTMLElement, container: HTMLElement ): Observable { const offset$ = defer(() => combineLatest([ watchElementOffset(el), watchElementContentOffset(container) ])) .pipe( map(([{ x, y }, scroll]): ElementOffset => { const { width, height } = getElementSize(el) return ({ x: x - scroll.x + width / 2, y: y - scroll.y + height / 2 }) }) ) /* Actively watch annotation on focus */ return watchElementFocus(el) .pipe( switchMap(active => offset$ .pipe( map(offset => ({ active, offset })), take(+!active || Infinity) ) ) ) } /** * Mount annotation * * @param el - Annotation element * @param container - Containing element * @param options - Options * * @returns Annotation component observable */ export function mountAnnotation( el: HTMLElement, container: HTMLElement, { target$ }: MountOptions ): Observable> { const [tooltip, index] = Array.from(el.children) /* Mount component on subscription */ return defer(() => { const push$ = new Subject() const done$ = push$.pipe(ignoreElements(), endWith(true)) push$.subscribe({ /* Handle emission */ next({ offset }) { el.style.setProperty("--md-tooltip-x", `${offset.x}px`) el.style.setProperty("--md-tooltip-y", `${offset.y}px`) }, /* Handle complete */ complete() { el.style.removeProperty("--md-tooltip-x") el.style.removeProperty("--md-tooltip-y") } }) /* Start animation only when annotation is visible */ watchElementVisibility(el) .pipe( takeUntil(done$) ) .subscribe(visible => { el.toggleAttribute("data-md-visible", visible) }) /* Toggle tooltip presence to mitigate empty lines when copying */ merge( push$.pipe(filter(({ active }) => active)), push$.pipe(debounceTime(250), filter(({ active }) => !active)) ) .subscribe({ /* Handle emission */ next({ active }) { if (active) el.prepend(tooltip) else tooltip.remove() }, /* Handle complete */ complete() { el.prepend(tooltip) } }) /* Toggle tooltip visibility */ push$ .pipe( auditTime(16, animationFrameScheduler) ) .subscribe(({ active }) => { tooltip.classList.toggle("md-tooltip--active", active) }) /* Track relative origin of tooltip */ push$ .pipe( throttleTime(125, animationFrameScheduler), filter(() => !!el.offsetParent), map(() => el.offsetParent!.getBoundingClientRect()), map(({ x }) => x) ) .subscribe({ /* Handle emission */ next(origin) { if (origin) el.style.setProperty("--md-tooltip-0", `${-origin}px`) else el.style.removeProperty("--md-tooltip-0") }, /* Handle complete */ complete() { el.style.removeProperty("--md-tooltip-0") } }) /* Allow to copy link without scrolling to anchor */ fromEvent(index, "click") .pipe( takeUntil(done$), filter(ev => !(ev.metaKey || ev.ctrlKey)) ) .subscribe(ev => { ev.stopPropagation() ev.preventDefault() }) /* Allow to open link in new tab or blur on close */ fromEvent(index, "mousedown") .pipe( takeUntil(done$), withLatestFrom(push$) ) .subscribe(([ev, { active }]) => { /* Open in new tab */ if (ev.button !== 0 || ev.metaKey || ev.ctrlKey) { ev.preventDefault() /* Close annotation */ } else if (active) { ev.preventDefault() /* Focus parent annotation, if any */ const parent = el.parentElement!.closest(".md-annotation") if (parent instanceof HTMLElement) parent.focus() else getActiveElement()?.blur() } }) /* Open and focus annotation on location target */ target$ .pipe( takeUntil(done$), filter(target => target === tooltip), delay(125) ) .subscribe(() => el.focus()) /* Create and return component */ return watchAnnotation(el, container) .pipe( tap(state => push$.next(state)), finalize(() => push$.complete()), map(state => ({ ref: el, ...state })) ) }) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/content/annotation/block/000077500000000000000000000000001475306445600323475ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/content/annotation/block/index.ts000066400000000000000000000057301475306445600340330ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { EMPTY, Observable, defer } from "rxjs" import { Component } from "../../../_" import { Annotation } from "../_" import { mountAnnotationList } from "../list" /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Mount options */ interface MountOptions { target$: Observable /* Location target observable */ print$: Observable /* Media print observable */ } /* ---------------------------------------------------------------------------- * Helper functions * ------------------------------------------------------------------------- */ /** * Find list element directly following a block * * @param el - Annotation block element * * @returns List element or nothing */ function findList(el: HTMLElement): HTMLElement | undefined { if (el.nextElementSibling) { const sibling = el.nextElementSibling as HTMLElement if (sibling.tagName === "OL") return sibling /* Skip empty paragraphs - see https://bit.ly/3r4ZJ2O */ else if (sibling.tagName === "P" && !sibling.children.length) return findList(sibling) } /* Everything else */ return undefined } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Mount annotation block * * @param el - Annotation block element * @param options - Options * * @returns Annotation component observable */ export function mountAnnotationBlock( el: HTMLElement, options: MountOptions ): Observable> { return defer(() => { const list = findList(el) return typeof list !== "undefined" ? mountAnnotationList(list, el, options) : EMPTY }) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/content/annotation/index.ts000066400000000000000000000023061475306445600327350ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ export * from "./_" export * from "./block" export * from "./list" mkdocs-material-9.6.4/src/templates/assets/javascripts/components/content/annotation/list/000077500000000000000000000000001475306445600322305ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/content/annotation/list/index.ts000066400000000000000000000142711475306445600337140ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { EMPTY, Observable, Subject, defer, endWith, finalize, ignoreElements, merge, share, takeUntil } from "rxjs" import { getElement, getElements, getOptionalElement } from "~/browser" import { renderAnnotation } from "~/templates" import { Component } from "../../../_" import { Annotation, mountAnnotation } from "../_" /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Mount options */ interface MountOptions { target$: Observable /* Location target observable */ print$: Observable /* Media print observable */ } /* ---------------------------------------------------------------------------- * Helper functions * ------------------------------------------------------------------------- */ /** * Find all annotation hosts in the containing element * * @param container - Containing element * * @returns Annotation hosts */ function findHosts(container: HTMLElement): HTMLElement[] { return container.tagName === "CODE" ? getElements(".c, .c1, .cm", container) : [container] } /** * Find all annotation markers in the containing element * * @param container - Containing element * * @returns Annotation markers */ function findMarkers(container: HTMLElement): Text[] { const markers: Text[] = [] for (const el of findHosts(container)) { const nodes: Text[] = [] /* Find all text nodes in current element */ const it = document.createNodeIterator(el, NodeFilter.SHOW_TEXT) for (let node = it.nextNode(); node; node = it.nextNode()) nodes.push(node as Text) /* Find all markers in each text node */ for (let text of nodes) { let match: RegExpExecArray | null /* Split text at marker and add to list */ while ((match = /(\(\d+\))(!)?/.exec(text.textContent!))) { const [, id, force] = match if (typeof force === "undefined") { const marker = text.splitText(match.index) text = marker.splitText(id.length) markers.push(marker) /* Replace entire text with marker */ } else { text.textContent = id markers.push(text) break } } } } return markers } /** * Swap the child nodes of two elements * * @param source - Source element * @param target - Target element */ function swap(source: HTMLElement, target: HTMLElement): void { target.append(...Array.from(source.childNodes)) } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Mount annotation list * * This function analyzes the containing code block and checks for markers * referring to elements in the given annotation list. If no markers are found, * the list is left untouched. Otherwise, list elements are rendered as * annotations inside the code block. * * @param el - Annotation list element * @param container - Containing element * @param options - Options * * @returns Annotation component observable */ export function mountAnnotationList( el: HTMLElement, container: HTMLElement, { target$, print$ }: MountOptions ): Observable> { /* Compute prefix for tooltip anchors */ const parent = container.closest("[id]") const prefix = parent?.id /* Find and replace all markers with empty annotations */ const annotations = new Map() for (const marker of findMarkers(container)) { const [, id] = marker.textContent!.match(/\((\d+)\)/)! if (getOptionalElement(`:scope > li:nth-child(${id})`, el)) { annotations.set(id, renderAnnotation(id, prefix)) marker.replaceWith(annotations.get(id)!) } } /* Keep list if there are no annotations to render */ if (annotations.size === 0) return EMPTY /* Mount component on subscription */ return defer(() => { const push$ = new Subject() const done$ = push$.pipe(ignoreElements(), endWith(true)) /* Retrieve container pairs for swapping */ const pairs: [HTMLElement, HTMLElement][] = [] for (const [id, annotation] of annotations) pairs.push([ getElement(".md-typeset", annotation), getElement(`:scope > li:nth-child(${id})`, el) ]) /* Handle print mode - see https://bit.ly/3rgPdpt */ print$.pipe(takeUntil(done$)) .subscribe(active => { el.hidden = !active /* Add class to discern list element */ el.classList.toggle("md-annotation-list", active) /* Show annotations in code block or list (print) */ for (const [inner, child] of pairs) if (!active) swap(child, inner) else swap(inner, child) }) /* Create and return component */ return merge(...[...annotations] .map(([, annotation]) => ( mountAnnotation(annotation, container, { target$ }) )) ) .pipe( finalize(() => push$.complete()), share() ) }) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/content/code/000077500000000000000000000000001475306445600300155ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/content/code/_/000077500000000000000000000000001475306445600302335ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/content/code/_/index.ts000066400000000000000000000172101475306445600317130ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import ClipboardJS from "clipboard" import { EMPTY, Observable, Subject, defer, distinctUntilChanged, distinctUntilKeyChanged, filter, finalize, map, mergeWith, switchMap, take, takeLast, takeUntil, tap } from "rxjs" import { feature } from "~/_" import { getElementContentSize, getElements, watchElementSize, watchElementVisibility } from "~/browser" import { Tooltip, mountInlineTooltip2 } from "~/components/tooltip2" import { renderClipboardButton } from "~/templates" import { Component } from "../../../_" import { Annotation, mountAnnotationList } from "../../annotation" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Code block overflow */ export interface Overflow { scrollable: boolean /* Code block overflows */ } /** * Code block */ export type CodeBlock = | Overflow | Annotation | Tooltip /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Mount options */ interface MountOptions { target$: Observable /* Location target observable */ print$: Observable /* Media print observable */ } /* ---------------------------------------------------------------------------- * Data * ------------------------------------------------------------------------- */ /** * Global sequence number for code blocks */ let sequence = 0 /* ---------------------------------------------------------------------------- * Helper functions * ------------------------------------------------------------------------- */ /** * Find candidate list element directly following a code block * * @param el - Code block element * * @returns List element or nothing */ function findCandidateList(el: HTMLElement): HTMLElement | undefined { if (el.nextElementSibling) { const sibling = el.nextElementSibling as HTMLElement if (sibling.tagName === "OL") return sibling /* Skip empty paragraphs - see https://bit.ly/3r4ZJ2O */ else if (sibling.tagName === "P" && !sibling.children.length) return findCandidateList(sibling) } /* Everything else */ return undefined } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch code block * * This function monitors size changes of the viewport, as well as switches of * content tabs with embedded code blocks, as both may trigger overflow. * * @param el - Code block element * * @returns Code block observable */ export function watchCodeBlock( el: HTMLElement ): Observable { return watchElementSize(el) .pipe( map(({ width }) => { const content = getElementContentSize(el) return { scrollable: content.width > width } }), distinctUntilKeyChanged("scrollable") ) } /** * Mount code block * * This function ensures that an overflowing code block is focusable through * keyboard, so it can be scrolled without a mouse to improve on accessibility. * Furthermore, if code annotations are enabled, they are mounted if and only * if the code block is currently visible, e.g., not in a hidden content tab. * * Note that code blocks may be mounted eagerly or lazily. If they're mounted * lazily (on first visibility), code annotation anchor links will not work, * as they are evaluated on initial page load, and code annotations in general * might feel a little bumpier. * * @param el - Code block element * @param options - Options * * @returns Code block and annotation component observable */ export function mountCodeBlock( el: HTMLElement, options: MountOptions ): Observable> { const { matches: hover } = matchMedia("(hover)") /* Defer mounting of code block - see https://bit.ly/3vHVoVD */ const factory$ = defer(() => { const push$ = new Subject() const done$ = push$.pipe(takeLast(1)) push$.subscribe(({ scrollable }) => { if (scrollable && hover) el.setAttribute("tabindex", "0") else el.removeAttribute("tabindex") }) /* Render button for Clipboard.js integration */ const content$: Array>> = [] if (ClipboardJS.isSupported()) { if (el.closest(".copy") || ( feature("content.code.copy") && !el.closest(".no-copy") )) { const parent = el.closest("pre")! parent.id = `__code_${sequence++}` /* Mount tooltip, if enabled */ const button = renderClipboardButton(parent.id) parent.insertBefore(button, el) if (feature("content.tooltips")) content$.push(mountInlineTooltip2(button, { viewport$ })) } } /* Handle code annotations */ const container = el.closest(".highlight") if (container instanceof HTMLElement) { const list = findCandidateList(container) /* Mount code annotations, if enabled */ if (typeof list !== "undefined" && ( container.classList.contains("annotate") || feature("content.code.annotate") )) { const annotations$ = mountAnnotationList(list, el, options) content$.push( watchElementSize(container) .pipe( takeUntil(done$), map(({ width, height }) => width && height), distinctUntilChanged(), switchMap(active => active ? annotations$ : EMPTY) ) ) } } // If the code block has line spans, we can add this additional class to // the code block element, which fixes the problem for highlighted code // lines not stretching to the entirety of the screen when the code block // overflows, e.g., on mobile - see const spans = getElements(":scope > span[id]", el) if (spans.length) el.classList.add("md-code__content") /* Create and return component */ return watchCodeBlock(el) .pipe( tap(state => push$.next(state)), finalize(() => push$.complete()), map(state => ({ ref: el, ...state })), mergeWith(...content$) ) }) /* Mount code block lazily */ if (feature("content.lazy")) return watchElementVisibility(el) .pipe( filter(visible => visible), take(1), switchMap(() => factory$) ) /* Mount code block */ return factory$ } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/content/code/index.ts000066400000000000000000000022271475306445600314770ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ export * from "./_" mkdocs-material-9.6.4/src/templates/assets/javascripts/components/content/details/000077500000000000000000000000001475306445600305305ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/content/details/index.ts000066400000000000000000000076661475306445600322260ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, Subject, defer, filter, finalize, map, merge, tap } from "rxjs" import { Component } from "../../_" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Details */ export interface Details { action: "open" | "close" /* Details state */ reveal?: boolean /* Details is revealed */ } /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Watch options */ interface WatchOptions { target$: Observable /* Location target observable */ print$: Observable /* Media print observable */ } /** * Mount options */ interface MountOptions { target$: Observable /* Location target observable */ print$: Observable /* Media print observable */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch details * * @param el - Details element * @param options - Options * * @returns Details observable */ export function watchDetails( el: HTMLDetailsElement, { target$, print$ }: WatchOptions ): Observable
    { let open = true return merge( /* Open and focus details on location target */ target$ .pipe( map(target => target.closest("details:not([open])")!), filter(details => el === details), map(() => ({ action: "open", reveal: true }) as Details) ), /* Open details on print and close afterwards */ print$ .pipe( filter(active => active || !open), tap(() => open = el.open), map(active => ({ action: active ? "open" : "close" }) as Details) ) ) } /** * Mount details * * This function ensures that `details` tags are opened on anchor jumps and * prior to printing, so the whole content of the page is visible. * * @param el - Details element * @param options - Options * * @returns Details component observable */ export function mountDetails( el: HTMLDetailsElement, options: MountOptions ): Observable> { return defer(() => { const push$ = new Subject
    () push$.subscribe(({ action, reveal }) => { el.toggleAttribute("open", action === "open") if (reveal) el.scrollIntoView() }) /* Create and return component */ return watchDetails(el, options) .pipe( tap(state => push$.next(state)), finalize(() => push$.complete()), map(state => ({ ref: el, ...state })) ) }) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/content/index.ts000066400000000000000000000024561475306445600305710ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ export * from "./_" export * from "./annotation" export * from "./code" export * from "./details" export * from "./mermaid" export * from "./table" export * from "./tabs" mkdocs-material-9.6.4/src/templates/assets/javascripts/components/content/mermaid/000077500000000000000000000000001475306445600305215ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/content/mermaid/index.css000066400000000000000000000254651475306445600323560ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ /* ---------------------------------------------------------------------------- * Rules: general * ------------------------------------------------------------------------- */ /* General node */ .node circle, .node ellipse, .node path, .node polygon, .node rect { fill: var(--md-mermaid-node-bg-color); stroke: var(--md-mermaid-node-fg-color); } /* General marker */ marker { fill: var(--md-mermaid-edge-color) !important; } /* General edge label */ .edgeLabel .label rect { fill: transparent; } /* ---------------------------------------------------------------------------- * Rules: flowcharts * ------------------------------------------------------------------------- */ /* Flowchart title */ .flowchartTitleText { fill: var(--md-mermaid-label-fg-color); } /* Flowchart node label */ .label { color: var(--md-mermaid-label-fg-color); font-family: var(--md-mermaid-font-family); } /* Flowchart node label container */ .label foreignObject { overflow: visible; line-height: initial; } /* Flowchart edge label in node label */ .label div .edgeLabel { color: var(--md-mermaid-label-fg-color); background-color: var(--md-mermaid-label-bg-color); } /* Flowchart edge label */ .edgeLabel, .edgeLabel p { color: var(--md-mermaid-edge-color); background-color: var(--md-mermaid-label-bg-color); fill: var(--md-mermaid-label-bg-color); } /* Flowchart edge path */ .edgePath .path, .flowchart-link { stroke: var(--md-mermaid-edge-color); stroke-width: .05rem; } /* Flowchart arrow head */ .edgePath .arrowheadPath { fill: var(--md-mermaid-edge-color); stroke: none; } /* Flowchart subgraph */ .cluster rect { fill: var(--md-default-fg-color--lightest); stroke: var(--md-default-fg-color--lighter); } /* Flowchart subgraph labels */ .cluster span { color: var(--md-mermaid-label-fg-color); font-family: var(--md-mermaid-font-family); } /* Flowchart markers */ g #flowchart-circleStart, g #flowchart-circleEnd, g #flowchart-crossStart, g #flowchart-crossEnd, g #flowchart-pointStart, g #flowchart-pointEnd { stroke: none; } /* ---------------------------------------------------------------------------- * Rules: class diagrams * ------------------------------------------------------------------------- */ /* Class diagram title */ .classDiagramTitleText { fill: var(--md-mermaid-label-fg-color); } /* Class group node */ g.classGroup line, g.classGroup rect { fill: var(--md-mermaid-node-bg-color); stroke: var(--md-mermaid-node-fg-color); } /* Class group node text */ g.classGroup text { font-family: var(--md-mermaid-font-family); fill: var(--md-mermaid-label-fg-color); } /* Class label box */ .classLabel .box { background-color: var(--md-mermaid-label-bg-color); opacity: 1; fill: var(--md-mermaid-label-bg-color); } /* Class label text */ .classLabel .label { font-family: var(--md-mermaid-font-family); fill: var(--md-mermaid-label-fg-color); } /* Class group divider */ .node .divider { stroke: var(--md-mermaid-node-fg-color); } /* Class relation */ .relation { stroke: var(--md-mermaid-edge-color); } /* Class relation cardinality */ .cardinality { font-family: var(--md-mermaid-font-family); fill: var(--md-mermaid-label-fg-color); } /* Class relation cardinality text */ .cardinality text { fill: inherit !important; } /* Class extension, composition and dependency marker */ defs marker.marker.extension.class path, defs marker.marker.composition.class path , defs marker.marker.dependency.class path { fill: var(--md-mermaid-edge-color) !important; stroke: var(--md-mermaid-edge-color) !important; } /* Class aggregation marker */ defs marker.marker.aggregation.class path { fill: var(--md-mermaid-label-bg-color) !important; stroke: var(--md-mermaid-edge-color) !important; } /* ---------------------------------------------------------------------------- * Rules: state diagrams * ------------------------------------------------------------------------- */ /* State diagram title */ .statediagramTitleText { fill: var(--md-mermaid-label-fg-color); } /* State group node */ g.stateGroup rect { fill: var(--md-mermaid-node-bg-color); stroke: var(--md-mermaid-node-fg-color); } /* State group title */ g.stateGroup .state-title { font-family: var(--md-mermaid-font-family); fill: var(--md-mermaid-label-fg-color) !important; } /* State group background */ g.stateGroup .composit { fill: var(--md-mermaid-label-bg-color); } /* State node label */ .nodeLabel, .nodeLabel p { color: var(--md-mermaid-label-fg-color); font-family: var(--md-mermaid-font-family); } /* State node label link */ a .nodeLabel { text-decoration: underline; } /* State start and end marker */ .start-state, .node circle.state-start, .node circle.state-end { fill: var(--md-mermaid-edge-color); stroke: none; } /* State end marker */ .end-state-outer, .end-state-inner { fill: var(--md-mermaid-edge-color); } /* State end marker */ .end-state-inner, .node circle.state-end { stroke: var(--md-mermaid-label-bg-color); } /* State transition */ .transition { stroke: var(--md-mermaid-edge-color); } /* State fork and join */ [id^=state-fork] rect, [id^=state-join] rect { fill: var(--md-mermaid-edge-color) !important; stroke: none !important; } /* State cluster (yes, 2x... Mermaid WTF) */ .statediagram-cluster.statediagram-cluster .inner { fill: var(--md-default-bg-color); } /* State cluster node */ .statediagram-cluster rect { fill: var(--md-mermaid-node-bg-color); stroke: var(--md-mermaid-node-fg-color); } /* State cluster divider */ .statediagram-state rect.divider { fill: var(--md-default-fg-color--lightest); stroke: var(--md-default-fg-color--lighter); } /* State diagram markers */ defs #statediagram-barbEnd { stroke: var(--md-mermaid-edge-color); } /* ---------------------------------------------------------------------------- * Rules: entity-relationship diagrams * ------------------------------------------------------------------------- */ /* Entity-relationship diagram title */ .entityTitleText { fill: var(--md-mermaid-label-fg-color); } /* Attribute box */ .attributeBoxEven, .attributeBoxOdd { fill: var(--md-mermaid-node-bg-color); stroke: var(--md-mermaid-node-fg-color); } /* Entity node */ .entityBox { fill: var(--md-mermaid-label-bg-color); stroke: var(--md-mermaid-node-fg-color); } /* Entity node label */ .entityLabel { font-family: var(--md-mermaid-font-family); fill: var(--md-mermaid-label-fg-color); } /* Entity relationship label container */ .relationshipLabelBox { background-color: var(--md-mermaid-label-bg-color); opacity: 1; fill: var(--md-mermaid-label-bg-color); fill-opacity: 1; } /* Entity relationship label */ .relationshipLabel { fill: var(--md-mermaid-label-fg-color); } /* Entity relationship line { */ .relationshipLine { stroke: var(--md-mermaid-edge-color); } /* Entity relationship line markers */ defs #ZERO_OR_ONE_START *, defs #ZERO_OR_ONE_END *, defs #ZERO_OR_MORE_START *, defs #ZERO_OR_MORE_END *, defs #ONLY_ONE_START *, defs #ONLY_ONE_END *, defs #ONE_OR_MORE_START *, defs #ONE_OR_MORE_END * { stroke: var(--md-mermaid-edge-color) !important; } /* Entity relationship line markers */ defs #ZERO_OR_MORE_START circle, defs #ZERO_OR_MORE_END circle { fill: var(--md-mermaid-label-bg-color); } /* ---------------------------------------------------------------------------- * Rules: sequence diagrams * ------------------------------------------------------------------------- */ /* Sequence diagram title */ text:not([class]):last-child { fill: var(--md-mermaid-label-fg-color); } /* Sequence actor */ .actor { fill: var(--md-mermaid-sequence-actor-bg-color); stroke: var(--md-mermaid-sequence-actor-border-color); } /* Sequence actor text */ text.actor > tspan { font-family: var(--md-mermaid-font-family); fill: var(--md-mermaid-sequence-actor-fg-color); } /* Sequence actor line */ line { stroke: var(--md-mermaid-sequence-actor-line-color); } /* Sequence actor */ .actor-man circle, .actor-man line { fill: var(--md-mermaid-sequence-actorman-bg-color); stroke: var(--md-mermaid-sequence-actorman-line-color); } /* Sequence message line */ .messageLine0, .messageLine1 { stroke: var(--md-mermaid-sequence-message-line-color); } /* Sequence note */ .note { fill: var(--md-mermaid-sequence-note-bg-color); stroke: var(--md-mermaid-sequence-note-border-color); } /* Sequence message, loop and note text */ .messageText, .loopText, .loopText > tspan, .noteText > tspan { font-family: var(--md-mermaid-font-family) !important; stroke: none; } /* Sequence message text */ .messageText { fill: var(--md-mermaid-sequence-message-fg-color); } /* Sequence loop text */ .loopText, .loopText > tspan { fill: var(--md-mermaid-sequence-loop-fg-color); } /* Sequence note text */ .noteText > tspan { fill: var(--md-mermaid-sequence-note-fg-color); } /* Sequence arrow head */ #arrowhead path { fill: var(--md-mermaid-sequence-message-line-color); stroke: none; } /* Sequence loop line */ .loopLine { fill: var(--md-mermaid-sequence-loop-bg-color); stroke: var(--md-mermaid-sequence-loop-border-color); } /* Sequence label box */ .labelBox { fill: var(--md-mermaid-sequence-label-bg-color); stroke: none; } /* Sequence label text */ .labelText, .labelText > span { font-family: var(--md-mermaid-font-family); fill: var(--md-mermaid-sequence-label-fg-color); } /* Sequence number */ .sequenceNumber { fill: var(--md-mermaid-sequence-number-fg-color); } /* Sequence rectangle */ rect.rect { fill: var(--md-mermaid-sequence-box-bg-color); stroke: none; } /* Sequence rectangle text */ rect.rect + text.text { fill: var(--md-mermaid-sequence-box-fg-color); } /* Sequence diagram markers */ defs #sequencenumber { fill: var(--md-mermaid-sequence-number-bg-color) !important; } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/content/mermaid/index.ts000066400000000000000000000075271475306445600322130ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, map, of, shareReplay, tap } from "rxjs" import { watchScript } from "~/browser" import { h } from "~/utilities" import { Component } from "../../_" import themeCSS from "./index.css" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Mermaid diagram */ export interface Mermaid {} /* ---------------------------------------------------------------------------- * Data * ------------------------------------------------------------------------- */ /** * Mermaid instance observable */ let mermaid$: Observable /** * Global sequence number for diagrams */ let sequence = 0 /* ---------------------------------------------------------------------------- * Helper functions * ------------------------------------------------------------------------- */ /** * Fetch Mermaid script * * @returns Mermaid scripts observable */ function fetchScripts(): Observable { return typeof mermaid === "undefined" || mermaid instanceof Element ? watchScript("https://unpkg.com/mermaid@11/dist/mermaid.min.js") : of(undefined) } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Mount Mermaid diagram * * @param el - Code block element * * @returns Mermaid diagram component observable */ export function mountMermaid( el: HTMLElement ): Observable> { el.classList.remove("mermaid") // Hack: mitigate https://bit.ly/3CiN6Du mermaid$ ||= fetchScripts() .pipe( tap(() => mermaid.initialize({ startOnLoad: false, themeCSS, sequence: { actorFontSize: "16px", // Hack: mitigate https://bit.ly/3y0NEi3 messageFontSize: "16px", noteFontSize: "16px" } })), map(() => undefined), shareReplay(1) ) /* Render diagram */ mermaid$.subscribe(async () => { el.classList.add("mermaid") // Hack: mitigate https://bit.ly/3CiN6Du const id = `__mermaid_${sequence++}` /* Create host element to replace code block */ const host = h("div", { class: "mermaid" }) const text = el.textContent /* Render and inject diagram */ const { svg, fn } = await mermaid.render(id, text) /* Create a shadow root and inject diagram */ const shadow = host.attachShadow({ mode: "closed" }) shadow.innerHTML = svg /* Replace code block with diagram and bind functions */ el.replaceWith(host) fn?.(shadow) }) /* Create and return component */ return mermaid$ .pipe( map(() => ({ ref: el })) ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/content/table/000077500000000000000000000000001475306445600301725ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/content/table/index.ts000066400000000000000000000045721475306445600316610ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, of } from "rxjs" import { renderTable } from "~/templates" import { h } from "~/utilities" import { Component } from "../../_" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Data table */ export interface DataTable {} /* ---------------------------------------------------------------------------- * Data * ------------------------------------------------------------------------- */ /** * Sentinel for replacement */ const sentinel = h("table") /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Mount data table * * This function wraps a data table in another scrollable container, so it can * be smoothly scrolled on smaller screen sizes and won't break the layout. * * @param el - Data table element * * @returns Data table component observable */ export function mountDataTable( el: HTMLElement ): Observable> { el.replaceWith(sentinel) sentinel.replaceWith(renderTable(el)) /* Create and return component */ return of({ ref: el }) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/content/tabs/000077500000000000000000000000001475306445600300345ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/content/tabs/index.ts000066400000000000000000000215621475306445600315210ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, Subject, animationFrameScheduler, asyncScheduler, auditTime, combineLatest, defer, endWith, filter, finalize, fromEvent, ignoreElements, map, merge, skip, startWith, subscribeOn, takeUntil, tap, withLatestFrom } from "rxjs" import { feature } from "~/_" import { Viewport, getElement, getElementContentOffset, getElementContentSize, getElementOffset, getElementSize, getElements, watchElementContentOffset, watchElementSize, watchElementVisibility } from "~/browser" import { renderTabbedControl } from "~/templates" import { h } from "~/utilities" import { Component } from "../../_" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Content tabs */ export interface ContentTabs { active: HTMLLabelElement /* Active tab label */ } /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Mount options */ interface MountOptions { viewport$: Observable /* Viewport observable */ target$: Observable /* Location target observable */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch content tabs * * @param inputs - Content tabs input elements * * @returns Content tabs observable */ export function watchContentTabs( inputs: HTMLInputElement[] ): Observable { const initial = inputs.find(input => input.checked) || inputs[0] return merge(...inputs.map(input => fromEvent(input, "change") .pipe( map(() => getElement(`label[for="${input.id}"]`)) ) )) .pipe( startWith(getElement(`label[for="${initial.id}"]`)), map(active => ({ active })) ) } /** * Mount content tabs * * @param el - Content tabs element * @param options - Options * * @returns Content tabs component observable */ export function mountContentTabs( el: HTMLElement, { viewport$, target$ }: MountOptions ): Observable> { const container = getElement(".tabbed-labels", el) const inputs = getElements(":scope > input", el) /* Render content tab previous button for pagination */ const prev = renderTabbedControl("prev") el.append(prev) /* Render content tab next button for pagination */ const next = renderTabbedControl("next") el.append(next) /* Mount component on subscription */ return defer(() => { const push$ = new Subject() const done$ = push$.pipe(ignoreElements(), endWith(true)) combineLatest([push$, watchElementSize(el), watchElementVisibility(el)]) .pipe( takeUntil(done$), auditTime(1, animationFrameScheduler) ) .subscribe({ /* Handle emission */ next([{ active }, size]) { const offset = getElementOffset(active) const { width } = getElementSize(active) /* Set tab indicator offset and width */ el.style.setProperty("--md-indicator-x", `${offset.x}px`) el.style.setProperty("--md-indicator-width", `${width}px`) /* Scroll container to active content tab */ const content = getElementContentOffset(container) if ( offset.x < content.x || offset.x + width > content.x + size.width ) container.scrollTo({ left: Math.max(0, offset.x - 16), behavior: "smooth" }) }, /* Handle complete */ complete() { el.style.removeProperty("--md-indicator-x") el.style.removeProperty("--md-indicator-width") } }) /* Hide content tab buttons on borders */ combineLatest([ watchElementContentOffset(container), watchElementSize(container) ]) .pipe( takeUntil(done$) ) .subscribe(([offset, size]) => { const content = getElementContentSize(container) prev.hidden = offset.x < 16 next.hidden = offset.x > content.width - size.width - 16 }) /* Paginate content tab container on click */ merge( fromEvent(prev, "click").pipe(map(() => -1)), fromEvent(next, "click").pipe(map(() => +1)) ) .pipe( takeUntil(done$) ) .subscribe(direction => { const { width } = getElementSize(container) container.scrollBy({ left: width * direction, behavior: "smooth" }) }) /* Switch to content tab target */ target$ .pipe( takeUntil(done$), filter(input => inputs.includes(input as HTMLInputElement)) ) .subscribe(input => input.click()) /* Add link to each content tab label */ container.classList.add("tabbed-labels--linked") for (const input of inputs) { const label = getElement(`label[for="${input.id}"]`) label.replaceChildren(h("a", { href: `#${label.htmlFor}`, tabIndex: -1 }, ...Array.from(label.childNodes))) /* Allow to copy link without scrolling to anchor */ fromEvent(label.firstElementChild!, "click") .pipe( takeUntil(done$), filter(ev => !(ev.metaKey || ev.ctrlKey)), tap(ev => { ev.preventDefault() ev.stopPropagation() }) ) // @todo we might need to remove the anchor link on complete .subscribe(() => { history.replaceState({}, "", `#${label.htmlFor}`) label.click() }) } /* Set up linking of content tabs, if enabled */ if (feature("content.tabs.link")) push$.pipe( skip(1), withLatestFrom(viewport$) ) .subscribe(([{ active }, { offset }]) => { const tab = active.innerText.trim() if (active.hasAttribute("data-md-switching")) { active.removeAttribute("data-md-switching") /* Determine viewport offset of active tab */ } else { const y = el.offsetTop - offset.y /* Passively activate other tabs */ for (const set of getElements("[data-tabs]")) for (const input of getElements( ":scope > input", set )) { const label = getElement(`label[for="${input.id}"]`) if ( label !== active && label.innerText.trim() === tab ) { label.setAttribute("data-md-switching", "") input.click() break } } /* Bring active tab into view */ window.scrollTo({ top: el.offsetTop - y }) /* Persist active tabs in local storage */ const tabs = __md_get("__tabs") || [] __md_set("__tabs", [...new Set([tab, ...tabs])]) } }) /* Pause media (audio, video) on switch - see https://bit.ly/3Bk6cel */ push$.pipe(takeUntil(done$)) .subscribe(() => { for (const media of getElements("audio, video", el)) media.pause() }) /* Create and return component */ return watchContentTabs(inputs) .pipe( tap(state => push$.next(state)), finalize(() => push$.complete()), map(state => ({ ref: el, ...state })) ) }) .pipe( subscribeOn(asyncScheduler) ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/dialog/000077500000000000000000000000001475306445600266705ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/dialog/index.ts000066400000000000000000000067461475306445600303640ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, Subject, defer, delay, finalize, map, merge, of, switchMap, tap } from "rxjs" import { getElement } from "~/browser" import { Component } from "../_" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Dialog */ export interface Dialog { message: string /* Dialog message */ active: boolean /* Dialog is active */ } /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Watch options */ interface WatchOptions { alert$: Subject /* Alert subject */ } /** * Mount options */ interface MountOptions { alert$: Subject /* Alert subject */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch dialog * * @param _el - Dialog element * @param options - Options * * @returns Dialog observable */ export function watchDialog( _el: HTMLElement, { alert$ }: WatchOptions ): Observable { return alert$ .pipe( switchMap(message => merge( of(true), of(false).pipe(delay(2000)) ) .pipe( map(active => ({ message, active })) ) ) ) } /** * Mount dialog * * This function reveals the dialog in the right corner when a new alert is * emitted through the subject that is passed as part of the options. * * @param el - Dialog element * @param options - Options * * @returns Dialog component observable */ export function mountDialog( el: HTMLElement, options: MountOptions ): Observable> { const inner = getElement(".md-typeset", el) return defer(() => { const push$ = new Subject() push$.subscribe(({ message, active }) => { el.classList.toggle("md-dialog--active", active) inner.textContent = message }) /* Create and return component */ return watchDialog(el, options) .pipe( tap(state => push$.next(state)), finalize(() => push$.complete()), map(state => ({ ref: el, ...state })) ) }) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/header/000077500000000000000000000000001475306445600266615ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/header/_/000077500000000000000000000000001475306445600270775ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/header/_/index.ts000066400000000000000000000134731475306445600305660ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, Subject, bufferCount, combineLatest, combineLatestWith, defer, distinctUntilChanged, distinctUntilKeyChanged, endWith, filter, from, ignoreElements, map, mergeMap, mergeWith, of, shareReplay, startWith, switchMap, takeUntil } from "rxjs" import { feature } from "~/_" import { Viewport, getElements, watchElementSize, watchToggle } from "~/browser" import { Component } from "../../_" import { Main } from "../../main" import { Tooltip, mountTooltip } from "../../tooltip" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Header */ export interface Header { height: number /* Header visible height */ hidden: boolean /* Header is hidden */ } /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Watch options */ interface WatchOptions { viewport$: Observable /* Viewport observable */ } /** * Mount options */ interface MountOptions { viewport$: Observable /* Viewport observable */ header$: Observable
    /* Header observable */ main$: Observable
    /* Main area observable */ } /* ---------------------------------------------------------------------------- * Helper functions * ------------------------------------------------------------------------- */ /** * Compute whether the header is hidden * * If the user scrolls past a certain threshold, the header can be hidden when * scrolling down, and shown when scrolling up. * * @param options - Options * * @returns Toggle observable */ function isHidden({ viewport$ }: WatchOptions): Observable { if (!feature("header.autohide")) return of(false) /* Compute direction and turning point */ const direction$ = viewport$ .pipe( map(({ offset: { y } }) => y), bufferCount(2, 1), map(([a, b]) => [a < b, b] as const), distinctUntilKeyChanged(0) ) /* Compute whether header should be hidden */ const hidden$ = combineLatest([viewport$, direction$]) .pipe( filter(([{ offset }, [, y]]) => Math.abs(y - offset.y) > 100), map(([, [direction]]) => direction), distinctUntilChanged() ) /* Compute threshold for hiding */ const search$ = watchToggle("search") return combineLatest([viewport$, search$]) .pipe( map(([{ offset }, search]) => offset.y > 400 && !search), distinctUntilChanged(), switchMap(active => active ? hidden$ : of(false)), startWith(false) ) } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch header * * @param el - Header element * @param options - Options * * @returns Header observable */ export function watchHeader( el: HTMLElement, options: WatchOptions ): Observable
    { return defer(() => combineLatest([ watchElementSize(el), isHidden(options) ])) .pipe( map(([{ height }, hidden]) => ({ height, hidden })), distinctUntilChanged((a, b) => ( a.height === b.height && a.hidden === b.hidden )), shareReplay(1) ) } /** * Mount header * * This function manages the different states of the header, i.e. whether it's * hidden or rendered with a shadow. This depends heavily on the main area. * * @param el - Header element * @param options - Options * * @returns Header component observable */ export function mountHeader( el: HTMLElement, { header$, main$ }: MountOptions ): Observable> { return defer(() => { const push$ = new Subject
    () const done$ = push$.pipe(ignoreElements(), endWith(true)) push$ .pipe( distinctUntilKeyChanged("active"), combineLatestWith(header$) ) .subscribe(([{ active }, { hidden }]) => { el.classList.toggle("md-header--shadow", active && !hidden) el.hidden = hidden }) /* Mount tooltips, if enabled */ const tooltips = from(getElements("[title]", el)) .pipe( filter(() => feature("content.tooltips")), mergeMap(child => mountTooltip(child)) ) /* Link to main area */ main$.subscribe(push$) /* Create and return component */ return header$ .pipe( takeUntil(done$), map(state => ({ ref: el, ...state })), mergeWith(tooltips.pipe(takeUntil(done$))) ) }) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/header/index.ts000066400000000000000000000022571475306445600303460ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ export * from "./_" export * from "./title" mkdocs-material-9.6.4/src/templates/assets/javascripts/components/header/title/000077500000000000000000000000001475306445600300025ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/header/title/index.ts000066400000000000000000000077721475306445600314760ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { EMPTY, Observable, Subject, defer, distinctUntilKeyChanged, finalize, map, tap } from "rxjs" import { Viewport, getElementSize, getOptionalElement, watchViewportAt } from "~/browser" import { Component } from "../../_" import { Header } from "../_" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Header */ export interface HeaderTitle { active: boolean /* Header title is active */ } /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Watch options */ interface WatchOptions { viewport$: Observable /* Viewport observable */ header$: Observable
    /* Header observable */ } /** * Mount options */ interface MountOptions { viewport$: Observable /* Viewport observable */ header$: Observable
    /* Header observable */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch header title * * @param el - Heading element * @param options - Options * * @returns Header title observable */ export function watchHeaderTitle( el: HTMLElement, { viewport$, header$ }: WatchOptions ): Observable { return watchViewportAt(el, { viewport$, header$ }) .pipe( map(({ offset: { y } }) => { const { height } = getElementSize(el) return { active: y >= height } }), distinctUntilKeyChanged("active") ) } /** * Mount header title * * This function swaps the header title from the site title to the title of the * current page when the user scrolls past the first headline. * * @param el - Header title element * @param options - Options * * @returns Header title component observable */ export function mountHeaderTitle( el: HTMLElement, options: MountOptions ): Observable> { return defer(() => { const push$ = new Subject() push$.subscribe({ /* Handle emission */ next({ active }) { el.classList.toggle("md-header__title--active", active) }, /* Handle complete */ complete() { el.classList.remove("md-header__title--active") } }) /* Obtain headline, if any */ const heading = getOptionalElement(".md-content h1") if (typeof heading === "undefined") return EMPTY /* Create and return component */ return watchHeaderTitle(heading, options) .pipe( tap(state => push$.next(state)), finalize(() => push$.complete()), map(state => ({ ref: el, ...state })) ) }) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/index.ts000066400000000000000000000030151475306445600271070ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ export * from "./_" export * from "./announce" export * from "./consent" export * from "./content" export * from "./dialog" export * from "./header" export * from "./main" export * from "./palette" export * from "./progress" export * from "./search" export * from "./sidebar" export * from "./source" export * from "./tabs" export * from "./toc" export * from "./tooltip" export * from "./top" mkdocs-material-9.6.4/src/templates/assets/javascripts/components/main/000077500000000000000000000000001475306445600263555ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/main/index.ts000066400000000000000000000075221475306445600300420ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, combineLatest, distinctUntilChanged, distinctUntilKeyChanged, map, switchMap } from "rxjs" import { Viewport, watchElementSize } from "~/browser" import { Header } from "../header" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Main area */ export interface Main { offset: number /* Main area top offset */ height: number /* Main area visible height */ active: boolean /* Main area is active */ } /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Watch options */ interface WatchOptions { viewport$: Observable /* Viewport observable */ header$: Observable
    /* Header observable */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch main area * * This function returns an observable that computes the visual parameters of * the main area which depends on the viewport vertical offset and height, as * well as the height of the header element, if the header is fixed. * * @param el - Main area element * @param options - Options * * @returns Main area observable */ export function watchMain( el: HTMLElement, { viewport$, header$ }: WatchOptions ): Observable
    { /* Compute necessary adjustment for header */ const adjust$ = header$ .pipe( map(({ height }) => height), distinctUntilChanged() ) /* Compute the main area's top and bottom borders */ const border$ = adjust$ .pipe( switchMap(() => watchElementSize(el) .pipe( map(({ height }) => ({ top: el.offsetTop, bottom: el.offsetTop + height })), distinctUntilKeyChanged("bottom") ) ) ) /* Compute the main area's offset, visible height and if we scrolled past */ return combineLatest([adjust$, border$, viewport$]) .pipe( map(([header, { top, bottom }, { offset: { y }, size: { height } }]) => { height = Math.max(0, height - Math.max(0, top - y, header) - Math.max(0, height + y - bottom) ) return { offset: top - header, height, active: top - header <= y } }), distinctUntilChanged((a, b) => ( a.offset === b.offset && a.height === b.height && a.active === b.active )) ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/palette/000077500000000000000000000000001475306445600270675ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/palette/index.ts000066400000000000000000000150021475306445600305440ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, Subject, asyncScheduler, defer, filter, finalize, fromEvent, map, mergeMap, observeOn, of, repeat, shareReplay, skip, startWith, takeUntil, tap, withLatestFrom } from "rxjs" import { getElements, watchMedia } from "~/browser" import { h } from "~/utilities" import { Component, getComponentElement } from "../_" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Palette colors */ export interface PaletteColor { media?: string /* Media query */ scheme?: string /* Color scheme */ primary?: string /* Primary color */ accent?: string /* Accent color */ } /** * Palette */ export interface Palette { index: number /* Palette index */ color: PaletteColor /* Palette colors */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch color palette * * @param inputs - Color palette element * * @returns Color palette observable */ export function watchPalette( inputs: HTMLInputElement[] ): Observable { const current = __md_get("__palette") || { index: inputs.findIndex(input => matchMedia( input.getAttribute("data-md-color-media")! ).matches) } /* Emit changes in color palette */ const index = Math.max(0, Math.min(current.index, inputs.length - 1)) return of(...inputs) .pipe( mergeMap(input => fromEvent(input, "change").pipe(map(() => input))), startWith(inputs[index]), map(input => ({ index: inputs.indexOf(input), color: { media: input.getAttribute("data-md-color-media"), scheme: input.getAttribute("data-md-color-scheme"), primary: input.getAttribute("data-md-color-primary"), accent: input.getAttribute("data-md-color-accent") } } as Palette)), shareReplay(1) ) } /** * Mount color palette * * @param el - Color palette element * * @returns Color palette component observable */ export function mountPalette( el: HTMLElement ): Observable> { const inputs = getElements("input", el) const meta = h("meta", { name: "theme-color" }) document.head.appendChild(meta) // Add color scheme meta tag const scheme = h("meta", { name: "color-scheme" }) document.head.appendChild(scheme) /* Mount component on subscription */ const media$ = watchMedia("(prefers-color-scheme: light)") return defer(() => { const push$ = new Subject() push$.subscribe(palette => { document.body.setAttribute("data-md-color-switching", "") /* Retrieve color palette for system preference */ if (palette.color.media === "(prefers-color-scheme)") { const media = matchMedia("(prefers-color-scheme: light)") const input = document.querySelector(media.matches ? "[data-md-color-media='(prefers-color-scheme: light)']" : "[data-md-color-media='(prefers-color-scheme: dark)']" )! /* Retrieve colors for system preference */ palette.color.scheme = input.getAttribute("data-md-color-scheme")! palette.color.primary = input.getAttribute("data-md-color-primary")! palette.color.accent = input.getAttribute("data-md-color-accent")! } /* Set color palette */ for (const [key, value] of Object.entries(palette.color)) document.body.setAttribute(`data-md-color-${key}`, value) /* Set toggle visibility */ for (let index = 0; index < inputs.length; index++) { const label = inputs[index].nextElementSibling if (label instanceof HTMLElement) label.hidden = palette.index !== index } /* Persist preference in local storage */ __md_set("__palette", palette) }) // Handle color switch on Enter or Space - see https://t.ly/YIhVj fromEvent(el, "keydown").pipe( filter(ev => ev.key === "Enter"), withLatestFrom(push$, (_, palette) => palette) ) .subscribe(({ index }) => { index = (index + 1) % inputs.length inputs[index].click() inputs[index].focus() }) /* Update theme-color meta tag */ push$ .pipe( map(() => { const header = getComponentElement("header") const style = window.getComputedStyle(header) // Set color scheme scheme.content = style.colorScheme /* Return color in hexadecimal format */ return style.backgroundColor.match(/\d+/g)! .map(value => (+value).toString(16).padStart(2, "0")) .join("") }) ) .subscribe(color => meta.content = `#${color}`) /* Revert transition durations after color switch */ push$.pipe(observeOn(asyncScheduler)) .subscribe(() => { document.body.removeAttribute("data-md-color-switching") }) /* Create and return component */ return watchPalette(inputs) .pipe( takeUntil(media$.pipe(skip(1))), repeat(), tap(state => push$.next(state)), finalize(() => push$.complete()), map(state => ({ ref: el, ...state })) ) }) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/progress/000077500000000000000000000000001475306445600272755ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/progress/index.ts000066400000000000000000000052461475306445600307630ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, Subject, defer, finalize, map, tap } from "rxjs" import { Component } from "../_" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Progress indicator */ export interface Progress { value: number // Progress value } /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Mount options */ interface MountOptions { progress$: Subject // Progress subject } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Mount progress indicator * * @param el - Progress indicator element * @param options - Options * * @returns Progress indicator component observable */ export function mountProgress( el: HTMLElement, { progress$ }: MountOptions ): Observable> { // Mount component on subscription return defer(() => { const push$ = new Subject() push$.subscribe(({ value }) => { el.style.setProperty("--md-progress-value", `${value}`) }) // Create and return component return progress$ .pipe( tap(value => push$.next({ value })), finalize(() => push$.complete()), map(value => ({ ref: el, value })) ) }) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/search/000077500000000000000000000000001475306445600266765ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/search/_/000077500000000000000000000000001475306445600271145ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/search/_/index.ts000066400000000000000000000153301475306445600305750ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { NEVER, Observable, ObservableInput, filter, fromEvent, merge, mergeWith } from "rxjs" import { configuration } from "~/_" import { Keyboard, getActiveElement, getElements, setToggle } from "~/browser" import { SearchIndex, SearchResult, setupSearchWorker } from "~/integrations" import { Component, getComponentElement, getComponentElements } from "../../_" import { SearchQuery, mountSearchQuery } from "../query" import { mountSearchResult } from "../result" import { SearchShare, mountSearchShare } from "../share" import { SearchSuggest, mountSearchSuggest } from "../suggest" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Search */ export type Search = | SearchQuery | SearchResult | SearchShare | SearchSuggest /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Mount options */ interface MountOptions { index$: ObservableInput /* Search index observable */ keyboard$: Observable /* Keyboard observable */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Mount search * * This function sets up the search functionality, including the underlying * web worker and all keyboard bindings. * * @param el - Search element * @param options - Options * * @returns Search component observable */ export function mountSearch( el: HTMLElement, { index$, keyboard$ }: MountOptions ): Observable> { const config = configuration() try { const worker$ = setupSearchWorker(config.search, index$) /* Retrieve query and result components */ const query = getComponentElement("search-query", el) const result = getComponentElement("search-result", el) /* Always close search on result selection */ fromEvent(el, "click") .pipe( filter(({ target }) => ( target instanceof Element && !!target.closest("a") )) ) .subscribe(() => setToggle("search", false)) /* Set up search keyboard handlers */ keyboard$ .pipe( filter(({ mode }) => mode === "search") ) .subscribe(key => { const active = getActiveElement() switch (key.type) { /* Enter: go to first (best) result */ case "Enter": if (active === query) { const anchors = new Map() for (const anchor of getElements( ":first-child [href]", result )) { const article = anchor.firstElementChild! anchors.set(anchor, parseFloat( article.getAttribute("data-md-score")! )) } /* Go to result with highest score, if any */ if (anchors.size) { const [[best]] = [...anchors].sort(([, a], [, b]) => b - a) best.click() } /* Otherwise omit form submission */ key.claim() } break /* Escape or Tab: close search */ case "Escape": case "Tab": setToggle("search", false) query.blur() break /* Vertical arrows: select previous or next search result */ case "ArrowUp": case "ArrowDown": if (typeof active === "undefined") { query.focus() } else { const els = [query, ...getElements( ":not(details) > [href], summary, details[open] [href]", result )] const i = Math.max(0, ( Math.max(0, els.indexOf(active)) + els.length + ( key.type === "ArrowUp" ? -1 : +1 ) ) % els.length) els[i].focus() } /* Prevent scrolling of page */ key.claim() break /* All other keys: hand to search query */ default: if (query !== getActiveElement()) query.focus() } }) /* Set up global keyboard handlers */ keyboard$ .pipe( filter(({ mode }) => mode === "global") ) .subscribe(key => { switch (key.type) { /* Open search and select query */ case "f": case "s": case "/": query.focus() query.select() /* Prevent scrolling of page */ key.claim() break } }) /* Create and return component */ const query$ = mountSearchQuery(query, { worker$ }) return merge( query$, mountSearchResult(result, { worker$, query$ }) ) .pipe( mergeWith( /* Search sharing */ ...getComponentElements("search-share", el) .map(child => mountSearchShare(child, { query$ })), /* Search suggestions */ ...getComponentElements("search-suggest", el) .map(child => mountSearchSuggest(child, { worker$, keyboard$ })) ) ) /* Gracefully handle broken search */ } catch (err) { el.hidden = true return NEVER } } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/search/highlight/000077500000000000000000000000001475306445600306455ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/search/highlight/.eslintrc000066400000000000000000000000621475306445600324670ustar00rootroot00000000000000{ "rules": { "no-null/no-null": "off" } } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/search/highlight/index.ts000066400000000000000000000071461475306445600323340ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, ObservableInput, combineLatest, filter, map, startWith } from "rxjs" import { getLocation } from "~/browser" import { SearchIndex, setupSearchHighlighter } from "~/integrations" import { h } from "~/utilities" import { Component } from "../../_" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Search highlighting */ export interface SearchHighlight { nodes: Map /* Map of replacements */ } /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Mount options */ interface MountOptions { index$: ObservableInput /* Search index observable */ location$: Observable /* Location observable */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Mount search highlighting * * @param el - Content element * @param options - Options * * @returns Search highlighting component observable */ export function mountSearchHiglight( el: HTMLElement, { index$, location$ }: MountOptions ): Observable> { return combineLatest([ index$, location$ .pipe( startWith(getLocation()), filter(url => !!url.searchParams.get("h")) ) ]) .pipe( map(([index, url]) => setupSearchHighlighter(index.config)( url.searchParams.get("h")! )), map(fn => { const nodes = new Map() /* Traverse text nodes and collect matches */ const it = document.createNodeIterator(el, NodeFilter.SHOW_TEXT) for (let node = it.nextNode(); node; node = it.nextNode()) { if (node.parentElement?.offsetHeight) { const original = node.textContent! const replaced = fn(original) if (replaced.length > original.length) nodes.set(node as ChildNode, replaced) } } /* Replace original nodes with matches */ for (const [node, text] of nodes) { const { childNodes } = h("span", null, text) node.replaceWith(...Array.from(childNodes)) } /* Return component */ return { ref: el, nodes } }) ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/search/index.ts000066400000000000000000000024261475306445600303610ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ export * from "./_" export * from "./highlight" export * from "./query" export * from "./result" export * from "./share" export * from "./suggest" mkdocs-material-9.6.4/src/templates/assets/javascripts/components/search/query/000077500000000000000000000000001475306445600300435ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/search/query/index.ts000066400000000000000000000127071475306445600315310ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, Subject, combineLatest, distinctUntilChanged, distinctUntilKeyChanged, endWith, finalize, first, fromEvent, ignoreElements, map, merge, shareReplay, takeUntil, tap } from "rxjs" import { getElement, getLocation, setToggle, watchElementFocus, watchToggle } from "~/browser" import { SearchMessage, SearchMessageType, isSearchReadyMessage } from "~/integrations" import { Component } from "../../_" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Search query */ export interface SearchQuery { value: string /* Query value */ focus: boolean /* Query focus */ } /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Watch options */ interface WatchOptions { worker$: Subject /* Search worker */ } /** * Mount options */ interface MountOptions { worker$: Subject /* Search worker */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch search query * * Note that the focus event which triggers re-reading the current query value * is delayed by `1ms` so the input's empty state is allowed to propagate. * * @param el - Search query element * @param options - Options * * @returns Search query observable */ export function watchSearchQuery( el: HTMLInputElement, { worker$ }: WatchOptions ): Observable { /* Support search deep linking */ const { searchParams } = getLocation() if (searchParams.has("q")) { setToggle("search", true) /* Set query from parameter */ el.value = searchParams.get("q")! el.focus() /* Remove query parameter on close */ watchToggle("search") .pipe( first(active => !active) ) .subscribe(() => { const url = getLocation() url.searchParams.delete("q") history.replaceState({}, "", `${url}`) }) } /* Intercept focus and input events */ const focus$ = watchElementFocus(el) const value$ = merge( worker$.pipe(first(isSearchReadyMessage)), fromEvent(el, "keyup"), focus$ ) .pipe( map(() => el.value), distinctUntilChanged() ) /* Combine into single observable */ return combineLatest([value$, focus$]) .pipe( map(([value, focus]) => ({ value, focus })), shareReplay(1) ) } /** * Mount search query * * @param el - Search query element * @param options - Options * * @returns Search query component observable */ export function mountSearchQuery( el: HTMLInputElement, { worker$ }: MountOptions ): Observable> { const push$ = new Subject() const done$ = push$.pipe(ignoreElements(), endWith(true)) /* Handle value change */ combineLatest([ worker$.pipe(first(isSearchReadyMessage)), push$ ], (_, query) => query) .pipe( distinctUntilKeyChanged("value") ) .subscribe(({ value }) => worker$.next({ type: SearchMessageType.QUERY, data: value })) /* Handle focus change */ push$ .pipe( distinctUntilKeyChanged("focus") ) .subscribe(({ focus }) => { if (focus) setToggle("search", focus) }) /* Handle reset */ fromEvent(el.form!, "reset") .pipe( takeUntil(done$) ) .subscribe(() => el.focus()) // Focus search query on label click - note that this is necessary to bring // up the keyboard on iOS and other mobile platforms, as the search dialog is // not visible at first, and programatically focusing an input element must // be triggered by a user interaction - see https://t.ly/Cb30n const label = getElement("header [for=__search]") fromEvent(label, "click") .subscribe(() => el.focus()) /* Create and return component */ return watchSearchQuery(el, { worker$ }) .pipe( tap(state => push$.next(state)), finalize(() => push$.complete()), map(state => ({ ref: el, ...state })), shareReplay(1) ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/search/result/000077500000000000000000000000001475306445600302145ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/search/result/index.ts000066400000000000000000000125731475306445600317030ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { EMPTY, Observable, Subject, bufferCount, filter, finalize, first, fromEvent, map, merge, mergeMap, of, share, skipUntil, switchMap, takeUntil, tap, withLatestFrom, zipWith } from "rxjs" import { translation } from "~/_" import { getElement, getOptionalElement, watchElementBoundary, watchToggle } from "~/browser" import { SearchMessage, SearchResult, isSearchReadyMessage, isSearchResultMessage } from "~/integrations" import { renderSearchResultItem } from "~/templates" import { round } from "~/utilities" import { Component } from "../../_" import { SearchQuery } from "../query" /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Mount options */ interface MountOptions { query$: Observable /* Search query observable */ worker$: Subject /* Search worker */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Mount search result list * * This function performs a lazy rendering of the search results, depending on * the vertical offset of the search result container. * * @param el - Search result list element * @param options - Options * * @returns Search result list component observable */ export function mountSearchResult( el: HTMLElement, { worker$, query$ }: MountOptions ): Observable> { const push$ = new Subject() const boundary$ = watchElementBoundary(el.parentElement!) .pipe( filter(Boolean) ) /* Retrieve container */ const container = el.parentElement! /* Retrieve nested components */ const meta = getElement(":scope > :first-child", el) const list = getElement(":scope > :last-child", el) /* Reveal to accessibility tree – see https://bit.ly/3iAA7t8 */ watchToggle("search") .subscribe(active => list.setAttribute( "role", active ? "list" : "presentation" )) /* Update search result metadata */ push$ .pipe( withLatestFrom(query$), skipUntil(worker$.pipe(first(isSearchReadyMessage))) ) .subscribe(([{ items }, { value }]) => { switch (items.length) { /* No results */ case 0: meta.textContent = value.length ? translation("search.result.none") : translation("search.result.placeholder") break /* One result */ case 1: meta.textContent = translation("search.result.one") break /* Multiple result */ default: const count = round(items.length) meta.textContent = translation("search.result.other", count) } }) /* Render search result item */ const render$ = push$ .pipe( tap(() => list.innerHTML = ""), switchMap(({ items }) => merge( of(...items.slice(0, 10)), of(...items.slice(10)) .pipe( bufferCount(4), zipWith(boundary$), switchMap(([chunk]) => chunk) ) )), map(renderSearchResultItem), share() ) /* Update search result list */ render$.subscribe(item => list.appendChild(item)) render$ .pipe( mergeMap(item => { const details = getOptionalElement("details", item) if (typeof details === "undefined") return EMPTY /* Keep position of details element stable */ return fromEvent(details, "toggle") .pipe( takeUntil(push$), map(() => details) ) }) ) .subscribe(details => { if ( details.open === false && details.offsetTop <= container.scrollTop ) container.scrollTo({ top: details.offsetTop }) }) /* Filter search result message */ const result$ = worker$ .pipe( filter(isSearchResultMessage), map(({ data }) => data) ) /* Create and return component */ return result$ .pipe( tap(state => push$.next(state)), finalize(() => push$.complete()), map(state => ({ ref: el, ...state })) ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/search/share/000077500000000000000000000000001475306445600300005ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/search/share/index.ts000066400000000000000000000074511475306445600314660ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, Subject, endWith, finalize, fromEvent, ignoreElements, map, takeUntil, tap } from "rxjs" import { getLocation } from "~/browser" import { Component } from "../../_" import { SearchQuery } from "../query" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Search sharing */ export interface SearchShare { url: URL /* Deep link for sharing */ } /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Watch options */ interface WatchOptions { query$: Observable /* Search query observable */ } /** * Mount options */ interface MountOptions { query$: Observable /* Search query observable */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Mount search sharing * * @param _el - Search sharing element * @param options - Options * * @returns Search sharing observable */ export function watchSearchShare( _el: HTMLElement, { query$ }: WatchOptions ): Observable { return query$ .pipe( map(({ value }) => { const url = getLocation() url.hash = "" /* Compute readable query strings */ value = value .replace(/\s+/g, "+") /* Collapse whitespace */ .replace(/&/g, "%26") /* Escape '&' character */ .replace(/=/g, "%3D") /* Escape '=' character */ /* Replace query string */ url.search = `q=${value}` return { url } }) ) } /** * Mount search sharing * * @param el - Search sharing element * @param options - Options * * @returns Search sharing component observable */ export function mountSearchShare( el: HTMLAnchorElement, options: MountOptions ): Observable> { const push$ = new Subject() const done$ = push$.pipe(ignoreElements(), endWith(true)) push$.subscribe(({ url }) => { el.setAttribute("data-clipboard-text", el.href) el.href = `${url}` }) /* Prevent following of link */ fromEvent(el, "click") .pipe( takeUntil(done$) ) .subscribe(ev => ev.preventDefault()) /* Create and return component */ return watchSearchShare(el, options) .pipe( tap(state => push$.next(state)), finalize(() => push$.complete()), map(state => ({ ref: el, ...state })) ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/search/suggest/000077500000000000000000000000001475306445600303575ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/search/suggest/index.ts000066400000000000000000000105351475306445600320420ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, Subject, asyncScheduler, combineLatestWith, distinctUntilChanged, filter, finalize, fromEvent, map, merge, observeOn, tap } from "rxjs" import { Keyboard } from "~/browser" import { SearchMessage, SearchResult, isSearchResultMessage } from "~/integrations" import { Component, getComponentElement } from "../../_" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Search suggestions */ export interface SearchSuggest {} /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Mount options */ interface MountOptions { keyboard$: Observable /* Keyboard observable */ worker$: Subject /* Search worker */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Mount search suggestions * * This function will perform a lazy rendering of the search results, depending * on the vertical offset of the search result container. * * @param el - Search result list element * @param options - Options * * @returns Search result list component observable */ export function mountSearchSuggest( el: HTMLElement, { worker$, keyboard$ }: MountOptions ): Observable> { const push$ = new Subject() /* Retrieve query component and track all changes */ const query = getComponentElement("search-query") const query$ = merge( fromEvent(query, "keydown"), fromEvent(query, "focus") ) .pipe( observeOn(asyncScheduler), map(() => query.value), distinctUntilChanged(), ) /* Update search suggestions */ push$ .pipe( combineLatestWith(query$), map(([{ suggest }, value]) => { const words = value.split(/([\s-]+)/) if (suggest?.length && words[words.length - 1]) { const last = suggest[suggest.length - 1] if (last.startsWith(words[words.length - 1])) words[words.length - 1] = last } else { words.length = 0 } return words }) ) .subscribe(words => el.innerHTML = words .join("") .replace(/\s/g, " ") ) /* Set up search keyboard handlers */ keyboard$ .pipe( filter(({ mode }) => mode === "search") ) .subscribe(key => { switch (key.type) { /* Right arrow: accept current suggestion */ case "ArrowRight": if ( el.innerText.length && query.selectionStart === query.value.length ) query.value = el.innerText break } }) /* Filter search result message */ const result$ = worker$ .pipe( filter(isSearchResultMessage), map(({ data }) => data) ) /* Create and return component */ return result$ .pipe( tap(state => push$.next(state)), finalize(() => push$.complete()), map(() => ({ ref: el })) ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/sidebar/000077500000000000000000000000001475306445600270425ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/sidebar/index.ts000066400000000000000000000160611475306445600305250ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, Subject, animationFrameScheduler, asyncScheduler, auditTime, combineLatest, defer, distinctUntilChanged, endWith, finalize, first, from, fromEvent, ignoreElements, map, mergeMap, observeOn, takeUntil, tap, withLatestFrom } from "rxjs" import { Viewport, getElement, getElementOffset, getElementSize, getElements } from "~/browser" import { Component } from "../_" import { Header } from "../header" import { Main } from "../main" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Sidebar */ export interface Sidebar { height: number /* Sidebar height */ locked: boolean /* Sidebar is locked */ } /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Watch options */ interface WatchOptions { viewport$: Observable /* Viewport observable */ main$: Observable
    /* Main area observable */ } /** * Mount options */ interface MountOptions { viewport$: Observable /* Viewport observable */ header$: Observable
    /* Header observable */ main$: Observable
    /* Main area observable */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch sidebar * * This function returns an observable that computes the visual parameters of * the sidebar which depends on the vertical viewport offset, as well as the * height of the main area. When the page is scrolled beyond the header, the * sidebar is locked and fills the remaining space. * * @param el - Sidebar element * @param options - Options * * @returns Sidebar observable */ export function watchSidebar( el: HTMLElement, { viewport$, main$ }: WatchOptions ): Observable { const parent = el.closest(".md-grid")! const adjust = parent.offsetTop - parent.parentElement!.offsetTop /* Compute the sidebar's available height and if it should be locked */ return combineLatest([main$, viewport$]) .pipe( map(([{ offset, height }, { offset: { y } }]) => { height = height + Math.min(adjust, Math.max(0, y - offset)) - adjust return { height, locked: y >= offset + adjust } }), distinctUntilChanged((a, b) => ( a.height === b.height && a.locked === b.locked )) ) } /** * Mount sidebar * * This function doesn't set the height of the actual sidebar, but of its first * child – the `.md-sidebar__scrollwrap` element in order to mitigiate jittery * sidebars when the footer is scrolled into view. At some point we switched * from `absolute` / `fixed` positioning to `sticky` positioning, significantly * reducing jitter in some browsers (respectively Firefox and Safari) when * scrolling from the top. However, top-aligned sticky positioning means that * the sidebar snaps to the bottom when the end of the container is reached. * This is what leads to the mentioned jitter, as the sidebar's height may be * updated too slowly. * * This behaviour can be mitigiated by setting the height of the sidebar to `0` * while preserving the padding, and the height on its first element. * * @param el - Sidebar element * @param options - Options * * @returns Sidebar component observable */ export function mountSidebar( el: HTMLElement, { header$, ...options }: MountOptions ): Observable> { const inner = getElement(".md-sidebar__scrollwrap", el) const { y } = getElementOffset(inner) return defer(() => { const push$ = new Subject() const done$ = push$.pipe(ignoreElements(), endWith(true)) const next$ = push$ .pipe( auditTime(0, animationFrameScheduler) ) /* Update sidebar height and offset */ next$.pipe(withLatestFrom(header$)) .subscribe({ /* Handle emission */ next([{ height }, { height: offset }]) { inner.style.height = `${height - 2 * y}px` el.style.top = `${offset}px` }, /* Handle complete */ complete() { inner.style.height = "" el.style.top = "" } }) /* Bring active item into view on initial load */ next$.pipe(first()) .subscribe(() => { for (const item of getElements(".md-nav__link--active[href]", el)) { if (!item.clientHeight) // skip invisible toc in left sidebar continue const container = item.closest(".md-sidebar__scrollwrap")! if (typeof container !== "undefined") { const offset = item.offsetTop - container.offsetTop const { height } = getElementSize(container) container.scrollTo({ top: offset - height / 2 }) } } }) /* Handle accessibility for expandable items, see https://bit.ly/3jaod9p */ from(getElements("label[tabindex]", el)) .pipe( mergeMap(label => fromEvent(label, "click") .pipe( observeOn(asyncScheduler), map(() => label), takeUntil(done$) ) ) ) .subscribe(label => { const input = getElement(`[id="${label.htmlFor}"]`) const nav = getElement(`[aria-labelledby="${label.id}"]`) nav.setAttribute("aria-expanded", `${input.checked}`) }) /* Create and return component */ return watchSidebar(el, options) .pipe( tap(state => push$.next(state)), finalize(() => push$.complete()), map(state => ({ ref: el, ...state })) ) }) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/source/000077500000000000000000000000001475306445600267315ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/source/_/000077500000000000000000000000001475306445600271475ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/source/_/index.ts000066400000000000000000000100371475306445600306270ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { EMPTY, Observable, Subject, catchError, defer, filter, finalize, map, of, shareReplay, tap } from "rxjs" import { getElement } from "~/browser" import { ConsentDefaults } from "~/components/consent" import { renderSourceFacts } from "~/templates" import { Component, getComponentElements } from "../../_" import { SourceFacts, fetchSourceFacts } from "../facts" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Repository information */ export interface Source { facts: SourceFacts /* Repository facts */ } /* ---------------------------------------------------------------------------- * Data * ------------------------------------------------------------------------- */ /** * Repository information observable */ let fetch$: Observable /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch repository information * * This function tries to read the repository facts from session storage, and * if unsuccessful, fetches them from the underlying provider. * * @param el - Repository information element * * @returns Repository information observable */ export function watchSource( el: HTMLAnchorElement ): Observable { return fetch$ ||= defer(() => { const cached = __md_get("__source", sessionStorage) if (cached) { return of(cached) } else { /* Check if consent is configured and was given */ const els = getComponentElements("consent") if (els.length) { const consent = __md_get("__consent") if (!(consent && consent.github)) return EMPTY } /* Fetch repository facts */ return fetchSourceFacts(el.href) .pipe( tap(facts => __md_set("__source", facts, sessionStorage)) ) } }) .pipe( catchError(() => EMPTY), filter(facts => Object.keys(facts).length > 0), map(facts => ({ facts })), shareReplay(1) ) } /** * Mount repository information * * @param el - Repository information element * * @returns Repository information component observable */ export function mountSource( el: HTMLAnchorElement ): Observable> { const inner = getElement(":scope > :last-child", el) return defer(() => { const push$ = new Subject() push$.subscribe(({ facts }) => { inner.appendChild(renderSourceFacts(facts)) inner.classList.add("md-source__repository--active") }) /* Create and return component */ return watchSource(el) .pipe( tap(state => push$.next(state)), finalize(() => push$.complete()), map(state => ({ ref: el, ...state })) ) }) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/source/facts/000077500000000000000000000000001475306445600300315ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/source/facts/_/000077500000000000000000000000001475306445600302475ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/source/facts/_/index.ts000066400000000000000000000054751475306445600317410ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { EMPTY, Observable } from "rxjs" import { fetchSourceFactsFromGitHub } from "../github" import { fetchSourceFactsFromGitLab } from "../gitlab" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Repository facts for repositories */ export interface RepositoryFacts { stars?: number /* Number of stars */ forks?: number /* Number of forks */ version?: string /* Latest version */ } /** * Repository facts for organizations */ export interface OrganizationFacts { repositories?: number /* Number of repositories */ } /* ------------------------------------------------------------------------- */ /** * Repository facts */ export type SourceFacts = | RepositoryFacts | OrganizationFacts /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Fetch repository facts * * @param url - Repository URL * * @returns Repository facts observable */ export function fetchSourceFacts( url: string ): Observable { /* Try to match GitHub repository */ let match = url.match(/^.+github\.com\/([^/]+)\/?([^/]+)?/i) if (match) { const [, user, repo] = match return fetchSourceFactsFromGitHub(user, repo) } /* Try to match GitLab repository */ match = url.match(/^.+?([^/]*gitlab[^/]+)\/(.+?)\/?$/i) if (match) { const [, base, slug] = match return fetchSourceFactsFromGitLab(base, slug) } /* Fallback */ return EMPTY } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/source/facts/github/000077500000000000000000000000001475306445600313135ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/source/facts/github/index.ts000066400000000000000000000061231475306445600327740ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Repo, User } from "github-types" import { EMPTY, Observable, catchError, defaultIfEmpty, map, zip } from "rxjs" import { requestJSON } from "~/browser" import { SourceFacts } from "../_" /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * GitHub release (partial) */ interface Release { tag_name: string /* Tag name */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Fetch GitHub repository facts * * @param user - GitHub user or organization * @param repo - GitHub repository * * @returns Repository facts observable */ export function fetchSourceFactsFromGitHub( user: string, repo?: string ): Observable { if (typeof repo !== "undefined") { const url = `https://api.github.com/repos/${user}/${repo}` return zip( /* Fetch version */ requestJSON(`${url}/releases/latest`) .pipe( catchError(() => EMPTY), // @todo refactor instant loading map(release => ({ version: release.tag_name })), defaultIfEmpty({}) ), /* Fetch stars and forks */ requestJSON(url) .pipe( catchError(() => EMPTY), // @todo refactor instant loading map(info => ({ stars: info.stargazers_count, forks: info.forks_count })), defaultIfEmpty({}) ) ) .pipe( map(([release, info]) => ({ ...release, ...info })) ) /* User or organization */ } else { const url = `https://api.github.com/users/${user}` return requestJSON(url) .pipe( map(info => ({ repositories: info.public_repos })), defaultIfEmpty({}) ) } } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/source/facts/gitlab/000077500000000000000000000000001475306445600312735ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/source/facts/gitlab/index.ts000066400000000000000000000055721475306445600327630ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { ProjectSchema } from "gitlab" import { EMPTY, Observable, catchError, defaultIfEmpty, map, zip } from "rxjs" import { requestJSON } from "~/browser" import { SourceFacts } from "../_" /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * GitLab release (partial) */ interface Release { // @todo remove and use the ReleaseSchema type instead after switching from gitlab to @gitbeaker/rest tag_name: string /* Tag name */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Fetch GitLab repository facts * * @param base - GitLab base * @param project - GitLab project * * @returns Repository facts observable */ export function fetchSourceFactsFromGitLab( base: string, project: string ): Observable { const url = `https://${base}/api/v4/projects/${encodeURIComponent(project)}` return zip( /* Fetch version */ requestJSON(`${url}/releases/permalink/latest`) .pipe( catchError(() => EMPTY), // @todo refactor instant loading map(({ tag_name }) => ({ version: tag_name })), defaultIfEmpty({}) ), /* Fetch stars and forks */ requestJSON(url) .pipe( catchError(() => EMPTY), // @todo refactor instant loading map(({ star_count, forks_count }) => ({ stars: star_count, forks: forks_count })), defaultIfEmpty({}) ) ) .pipe( map(([release, info]) => ({ ...release, ...info })) ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/source/facts/index.ts000066400000000000000000000023111475306445600315050ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ export * from "./_" export * from "./github" export * from "./gitlab" mkdocs-material-9.6.4/src/templates/assets/javascripts/components/source/index.ts000066400000000000000000000022571475306445600304160ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ export * from "./_" export * from "./facts" mkdocs-material-9.6.4/src/templates/assets/javascripts/components/tabs/000077500000000000000000000000001475306445600263625ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/tabs/index.ts000066400000000000000000000076151475306445600300520ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, Subject, defer, distinctUntilKeyChanged, finalize, map, of, switchMap, tap } from "rxjs" import { feature } from "~/_" import { Viewport, watchElementSize, watchViewportAt } from "~/browser" import { Component } from "../_" import { Header } from "../header" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Navigation tabs */ export interface Tabs { hidden: boolean /* Navigation tabs are hidden */ } /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Watch options */ interface WatchOptions { viewport$: Observable /* Viewport observable */ header$: Observable
    /* Header observable */ } /** * Mount options */ interface MountOptions { viewport$: Observable /* Viewport observable */ header$: Observable
    /* Header observable */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch navigation tabs * * @param el - Navigation tabs element * @param options - Options * * @returns Navigation tabs observable */ export function watchTabs( el: HTMLElement, { viewport$, header$ }: WatchOptions ): Observable { return watchElementSize(document.body) .pipe( switchMap(() => watchViewportAt(el, { header$, viewport$ })), map(({ offset: { y } }) => { return { hidden: y >= 10 } }), distinctUntilKeyChanged("hidden") ) } /** * Mount navigation tabs * * This function hides the navigation tabs when scrolling past the threshold * and makes them reappear in a nice CSS animation when scrolling back up. * * @param el - Navigation tabs element * @param options - Options * * @returns Navigation tabs component observable */ export function mountTabs( el: HTMLElement, options: MountOptions ): Observable> { return defer(() => { const push$ = new Subject() push$.subscribe({ /* Handle emission */ next({ hidden }) { el.hidden = hidden }, /* Handle complete */ complete() { el.hidden = false } }) /* Create and return component */ return ( feature("navigation.tabs.sticky") ? of({ hidden: false }) : watchTabs(el, options) ) .pipe( tap(state => push$.next(state)), finalize(() => push$.complete()), map(state => ({ ref: el, ...state })) ) }) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/toc/000077500000000000000000000000001475306445600262165ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/toc/index.ts000066400000000000000000000266711475306445600277110ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, Subject, asyncScheduler, bufferCount, combineLatestWith, debounceTime, defer, distinctUntilChanged, distinctUntilKeyChanged, endWith, filter, finalize, ignoreElements, map, merge, observeOn, of, repeat, scan, share, skip, startWith, switchMap, takeUntil, tap, withLatestFrom } from "rxjs" import { feature } from "~/_" import { Viewport, getElement, getElementContainer, getElementSize, getElements, getLocation, getOptionalElement, watchElementSize } from "~/browser" import { Component, getComponentElement } from "../_" import { Header } from "../header" import { Main } from "../main" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Table of contents */ export interface TableOfContents { prev: HTMLAnchorElement[][] /* Anchors (previous) */ next: HTMLAnchorElement[][] /* Anchors (next) */ } /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Watch options */ interface WatchOptions { viewport$: Observable /* Viewport observable */ header$: Observable
    /* Header observable */ } /** * Mount options */ interface MountOptions { viewport$: Observable /* Viewport observable */ header$: Observable
    /* Header observable */ main$: Observable
    /* Main area observable */ target$: Observable /* Location target observable */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch table of contents * * This is effectively a scroll spy implementation which will account for the * fixed header and automatically re-calculate anchor offsets when the viewport * is resized. The returned observable will only emit if the table of contents * needs to be repainted. * * This implementation tracks an anchor element's entire path starting from its * level up to the top-most anchor element, e.g. `[h3, h2, h1]`. Although the * Material theme currently doesn't make use of this information, it enables * the styling of the entire hierarchy through customization. * * Note that the current anchor is the last item of the `prev` anchor list. * * @param el - Table of contents element * @param options - Options * * @returns Table of contents observable */ export function watchTableOfContents( el: HTMLElement, { viewport$, header$ }: WatchOptions ): Observable { const table = new Map() /* Compute anchor-to-target mapping */ const anchors = getElements(".md-nav__link", el) for (const anchor of anchors) { const id = decodeURIComponent(anchor.hash.substring(1)) const target = getOptionalElement(`[id="${id}"]`) if (typeof target !== "undefined") table.set(anchor, target) } /* Compute necessary adjustment for header */ const adjust$ = header$ .pipe( distinctUntilKeyChanged("height"), map(({ height }) => { const main = getComponentElement("main") const grid = getElement(":scope > :first-child", main) return height + 0.8 * ( grid.offsetTop - main.offsetTop ) }), share() ) /* Compute partition of previous and next anchors */ const partition$ = watchElementSize(document.body) .pipe( distinctUntilKeyChanged("height"), /* Build index to map anchor paths to vertical offsets */ switchMap(body => defer(() => { let path: HTMLAnchorElement[] = [] return of([...table].reduce((index, [anchor, target]) => { while (path.length) { const last = table.get(path[path.length - 1])! if (last.tagName >= target.tagName) { path.pop() } else { break } } /* If the current anchor is hidden, continue with its parent */ let offset = target.offsetTop while (!offset && target.parentElement) { target = target.parentElement offset = target.offsetTop } /* Fix anchor offsets in tables - see https://bit.ly/3CUFOcn */ let parent = target.offsetParent as HTMLElement for (; parent; parent = parent.offsetParent as HTMLElement) offset += parent.offsetTop /* Map reversed anchor path to vertical offset */ return index.set( [...path = [...path, anchor]].reverse(), offset ) }, new Map())) }) .pipe( /* Sort index by vertical offset (see https://bit.ly/30z6QSO) */ map(index => new Map([...index].sort(([, a], [, b]) => a - b))), combineLatestWith(adjust$), /* Re-compute partition when viewport offset changes */ switchMap(([index, adjust]) => viewport$ .pipe( scan(([prev, next], { offset: { y }, size }) => { const last = y + size.height >= Math.floor(body.height) /* Look forward */ while (next.length) { const [, offset] = next[0] if (offset - adjust < y || last) { prev = [...prev, next.shift()!] } else { break } } /* Look backward */ while (prev.length) { const [, offset] = prev[prev.length - 1] if (offset - adjust >= y && !last) { next = [prev.pop()!, ...next] } else { break } } /* Return partition */ return [prev, next] }, [[], [...index]]), distinctUntilChanged((a, b) => ( a[0] === b[0] && a[1] === b[1] )) ) ) ) ) ) /* Compute and return anchor list migrations */ return partition$ .pipe( map(([prev, next]) => ({ prev: prev.map(([path]) => path), next: next.map(([path]) => path) })), /* Extract anchor list migrations */ startWith({ prev: [], next: [] }), bufferCount(2, 1), map(([a, b]) => { /* Moving down */ if (a.prev.length < b.prev.length) { return { prev: b.prev.slice(Math.max(0, a.prev.length - 1), b.prev.length), next: [] } /* Moving up */ } else { return { prev: b.prev.slice(-1), next: b.next.slice(0, b.next.length - a.next.length) } } }) ) } /* ------------------------------------------------------------------------- */ /** * Mount table of contents * * @param el - Table of contents element * @param options - Options * * @returns Table of contents component observable */ export function mountTableOfContents( el: HTMLElement, { viewport$, header$, main$, target$ }: MountOptions ): Observable> { return defer(() => { const push$ = new Subject() const done$ = push$.pipe(ignoreElements(), endWith(true)) push$.subscribe(({ prev, next }) => { /* Look forward */ for (const [anchor] of next) { anchor.classList.remove("md-nav__link--passed") anchor.classList.remove("md-nav__link--active") } /* Look backward */ for (const [index, [anchor]] of prev.entries()) { anchor.classList.add("md-nav__link--passed") anchor.classList.toggle( "md-nav__link--active", index === prev.length - 1 ) } }) /* Set up following, if enabled */ if (feature("toc.follow")) { /* Toggle smooth scrolling only for anchor clicks */ const smooth$ = merge( viewport$.pipe(debounceTime(1), map(() => undefined)), viewport$.pipe(debounceTime(250), map(() => "smooth" as const)) ) /* Bring active anchor into view */ // @todo: refactor push$ .pipe( filter(({ prev }) => prev.length > 0), combineLatestWith(main$.pipe(observeOn(asyncScheduler))), withLatestFrom(smooth$) ) .subscribe(([[{ prev }], behavior]) => { const [anchor] = prev[prev.length - 1] if (anchor.offsetHeight) { /* Retrieve overflowing container and scroll */ const container = getElementContainer(anchor) if (typeof container !== "undefined") { const offset = anchor.offsetTop - container.offsetTop const { height } = getElementSize(container) container.scrollTo({ top: offset - height / 2, behavior }) } } }) } /* Set up anchor tracking, if enabled */ if (feature("navigation.tracking")) viewport$ .pipe( takeUntil(done$), distinctUntilKeyChanged("offset"), debounceTime(250), skip(1), takeUntil(target$.pipe(skip(1))), repeat({ delay: 250 }), withLatestFrom(push$) ) .subscribe(([, { prev }]) => { const url = getLocation() /* Set hash fragment to active anchor */ const anchor = prev[prev.length - 1] if (anchor && anchor.length) { const [active] = anchor const { hash } = new URL(active.href) if (url.hash !== hash) { url.hash = hash history.replaceState({}, "", `${url}`) } /* Reset anchor when at the top */ } else { url.hash = "" history.replaceState({}, "", `${url}`) } }) /* Create and return component */ return watchTableOfContents(el, { viewport$, header$ }) .pipe( tap(state => push$.next(state)), finalize(() => push$.complete()), map(state => ({ ref: el, ...state })) ) }) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/tooltip/000077500000000000000000000000001475306445600271235ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/tooltip/index.ts000066400000000000000000000164401475306445600306070ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { EMPTY, Observable, Subject, animationFrameScheduler, asyncScheduler, auditTime, combineLatest, debounceTime, defer, distinctUntilChanged, filter, finalize, map, merge, of, subscribeOn, tap, throttleTime } from "rxjs" import { ElementOffset, getElement, getElementContainer, getElementOffset, getElementSize, watchElementContentOffset, watchElementFocus, watchElementHover } from "~/browser" import { renderTooltip } from "~/templates" import { Component } from "../_" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Tooltip */ export interface Tooltip { active: boolean /* Tooltip is active */ offset: ElementOffset /* Tooltip offset */ } /* ---------------------------------------------------------------------------- * Data * ------------------------------------------------------------------------- */ /** * Global sequence number for tooltips */ let sequence = 0 /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch tooltip * * This function will append the tooltip temporarily to compute its width, * which is necessary for correct centering, and then removing it again. * * @param el - Tooltip element * @param host - Host element * * @returns Tooltip observable */ export function watchTooltip( el: HTMLElement, host: HTMLElement ): Observable { document.body.append(el) /* Compute width and remove tooltip immediately */ const { width } = getElementSize(el) el.style.setProperty("--md-tooltip-width", `${width}px`) el.remove() /* Retrieve and watch containing element */ const container = getElementContainer(host) const scroll$ = typeof container !== "undefined" ? watchElementContentOffset(container) : of({ x: 0, y: 0 }) /* Compute tooltip visibility */ const active$ = merge( watchElementFocus(host), watchElementHover(host) ) .pipe( distinctUntilChanged() ) /* Compute tooltip offset */ return combineLatest([active$, scroll$]) .pipe( map(([active, scroll]) => { let { x, y } = getElementOffset(host) const size = getElementSize(host) /** * Experimental: fix handling of tables - see https://bit.ly/3TQEj5O * * If this proves to be a viable fix, we should refactor tooltip * positioning and somehow streamline the current process. This might * also fix positioning for annotations inside tables, which is another * limitation. */ const table = host.closest("table") if (table && host.parentElement) { x += table.offsetLeft + host.parentElement.offsetLeft y += table.offsetTop + host.parentElement.offsetTop } return { active, offset: { x: x - scroll.x + size.width / 2 - width / 2, y: y - scroll.y + size.height + 8 } } }) ) } /** * Mount tooltip * * @param el - Host element * * @returns Tooltip component observable */ export function mountTooltip( el: HTMLElement ): Observable> { const title = el.title if (!title.length) return EMPTY /* Render tooltip and set title from host element */ const id = `__tooltip_${sequence++}` const tooltip = renderTooltip(id, "inline") const typeset = getElement(".md-typeset", tooltip) typeset.innerHTML = title /* Mount component on subscription */ return defer(() => { const push$ = new Subject() push$.subscribe({ /* Handle emission */ next({ offset }) { tooltip.style.setProperty("--md-tooltip-x", `${offset.x}px`) tooltip.style.setProperty("--md-tooltip-y", `${offset.y}px`) }, /* Handle complete */ complete() { tooltip.style.removeProperty("--md-tooltip-x") tooltip.style.removeProperty("--md-tooltip-y") } }) /* Toggle tooltip presence to mitigate empty lines when copying */ merge( push$.pipe(filter(({ active }) => active)), push$.pipe(debounceTime(250), filter(({ active }) => !active)) ) .subscribe({ /* Handle emission */ next({ active }) { if (active) { el.insertAdjacentElement("afterend", tooltip) el.setAttribute("aria-describedby", id) el.removeAttribute("title") } else { tooltip.remove() el.removeAttribute("aria-describedby") el.setAttribute("title", title) } }, /* Handle complete */ complete() { tooltip.remove() el.removeAttribute("aria-describedby") el.setAttribute("title", title) } }) /* Toggle tooltip visibility */ push$ .pipe( auditTime(16, animationFrameScheduler) ) .subscribe(({ active }) => { tooltip.classList.toggle("md-tooltip--active", active) }) // @todo - refactor positioning together with annotations – there are // several things that overlap and are identical in handling /* Track relative origin of tooltip */ push$ .pipe( throttleTime(125, animationFrameScheduler), filter(() => !!el.offsetParent), map(() => el.offsetParent!.getBoundingClientRect()), map(({ x }) => x) ) .subscribe({ /* Handle emission */ next(origin) { if (origin) tooltip.style.setProperty("--md-tooltip-0", `${-origin}px`) else tooltip.style.removeProperty("--md-tooltip-0") }, /* Handle complete */ complete() { tooltip.style.removeProperty("--md-tooltip-0") } }) /* Create and return component */ return watchTooltip(tooltip, el) .pipe( tap(state => push$.next(state)), finalize(() => push$.complete()), map(state => ({ ref: el, ...state })) ) }) .pipe( subscribeOn(asyncScheduler) ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/tooltip2/000077500000000000000000000000001475306445600272055ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/tooltip2/index.ts000066400000000000000000000317231475306445600306720ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { BehaviorSubject, EMPTY, Observable, Subject, animationFrameScheduler, combineLatest, combineLatestWith, debounce, defer, distinctUntilChanged, endWith, filter, finalize, first, ignoreElements, map, mergeMap, observeOn, queueScheduler, share, startWith, switchMap, tap, throttleTime, timer, withLatestFrom } from "rxjs" import { ElementOffset, Viewport, getElement, getElementContainers, getElementOffsetAbsolute, getElementSize, watchElementContentOffset, watchElementFocus, watchElementHover } from "~/browser" import { renderInlineTooltip2 } from "~/templates" import { Component } from "../_" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Tooltip */ export interface Tooltip { active: boolean // Tooltip is active offset: ElementOffset // Tooltip offset } /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Dependencies */ interface Dependencies { content$: Observable // Tooltip content observable viewport$: Observable // Viewport observable } /* ---------------------------------------------------------------------------- * Data * ------------------------------------------------------------------------- */ /** * Global sequence number for tooltips */ let sequence = 0 /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch tooltip * * This function tracks the tooltip host element, and deduces the active state * and offset of the tooltip from it. The active state is determined by whether * the host element is focused or hovered, and the offset is determined by the * host element's absolute position in the document. * * @param el - Tooltip host element * * @returns Tooltip observable */ export function watchTooltip2( el: HTMLElement ): Observable { // Compute whether tooltip should be shown - we need to watch both focus and // hover events on the host element and emit if one of them is active. In case // of a hover event, we keep the element visible for a short amount of time // after the pointer left the host element for a better user experience. const active$ = combineLatest([ watchElementFocus(el), watchElementHover(el) ]) .pipe( map(([focus, hover]) => focus || hover), distinctUntilChanged() ) // We need to determine all parent elements of the host element that are // currently scrollable, as they might affect the position of the tooltip // depending on their horizontal of vertical offset. We must track all of // them and recompute the position of the tooltip if they change. const offset$ = defer(() => getElementContainers(el)).pipe( mergeMap(watchElementContentOffset), throttleTime(1), // Note that we need to poll the value again if the active state changes, // as otherwise the tooltip might be misplaced. This particularly happens // when using third-party integrations like tablesort that change the // position of elements – see https://t.ly/Y-V7X combineLatestWith(active$), map(() => getElementOffsetAbsolute(el)), ) // Only track parent elements and compute offset of the tooltip host if the // tooltip should be shown - we defer the computation of the offset until the // tooltip becomes active for the first time. This is necessary, because we // must also keep the tooltip active as long as it is focused or hovered. return active$.pipe( first(active => active), switchMap(() => combineLatest([active$, offset$])), map(([active, offset]) => ({ active, offset })), share() ) } /** * Mount tooltip * * This function renders a tooltip with the content from the provided `content$` * observable as passed via the dependencies. If the returned element has a role * of type `dialog`, the tooltip is considered to be interactive, and rendered * either above or below the host element, depending on the available space. * * If the returned element has a role of type `tooltip`, the tooltip is always * rendered below the host element and considered to be non-interactive. This * allows us to reuse the same positioning logic for both interactive and * non-interactive tooltips, as it is largely the same. * * @param el - Tooltip host element * @param dependencies - Dependencies * * @returns Tooltip component observable */ export function mountTooltip2( el: HTMLElement, dependencies: Dependencies ): Observable> { const { content$, viewport$ } = dependencies // Compute unique tooltip id - this is necessary to associate the tooltip host // element with the tooltip element for ARIA purposes const id = `__tooltip2_${sequence++}` // Create component on subscription return defer(() => { const push$ = new Subject() // Create subject to track tooltip presence and visibility - we use another // purely internal subject to track the tooltip's presence and visibility, // as the tooltip should be visible if the host element or tooltip itself // is focused or hovered to allow for smooth pointer migration const show$ = new BehaviorSubject(false) push$.pipe(ignoreElements(), endWith(false)) .subscribe(show$) // Create observable controlling tooltip element - we create and attach the // tooltip only if it is actually present, in order to keep the number of // elements low. We need to keep the tooltip visible for a short time after // the pointer left the host element or tooltip itself. For this, we use an // inner subscription to the tooltip observable, which we terminate when the // tooltip should not be shown, automatically removing the element. Moreover // we use the queue scheduler, which will schedule synchronously in case the // tooltip should be shown, and asynchronously if it should be hidden. const node$ = show$.pipe( debounce(active => timer(+!active * 250, queueScheduler)), distinctUntilChanged(), switchMap(active => active ? content$ : EMPTY), tap(node => node.id = id), share() ) // Compute tooltip presence and visibility - the tooltip should be shown if // the host element or the tooltip itself is focused or hovered combineLatest([ push$.pipe(map(({ active }) => active)), node$.pipe( switchMap(node => watchElementHover(node, 250)), startWith(false) ) ]) .pipe(map(states => states.some(active => active))) .subscribe(show$) // Compute tooltip origin - we need to compute the tooltip origin depending // on the position of the host element, the viewport size, as well as the // actual size of the tooltip, if positioned above. The tooltip must about // to be rendered for this to be correct, which is why we do it here. const origin$ = show$.pipe( filter(active => active), withLatestFrom(node$, viewport$), map(([_, node, { size }]) => { const host = el.getBoundingClientRect() const x = host.width / 2 // If the tooltip is non-interactive, we always render it below the // actual element because all operating systems do it that way if (node.role === "tooltip") { return { x, y: 8 + host.height } // Otherwise, we determine where there is more space, and render the // tooltip either above or below the host element } else if (host.y >= size.height / 2) { const { height } = getElementSize(node) return { x, y: -16 - height } } else { return { x, y: +16 + host.height } } }) ) // Update tooltip position - we always need to update the position of the // tooltip, as it might change depending on the viewport offset of the host combineLatest([node$, push$, origin$]) .subscribe(([node, { offset }, origin]) => { node.style.setProperty("--md-tooltip-host-x", `${offset.x}px`) node.style.setProperty("--md-tooltip-host-y", `${offset.y}px`) // Update tooltip origin - this is mainly set to determine the position // of the tooltip tail, to show the direction it is originating from node.style.setProperty("--md-tooltip-x", `${origin.x}px`) node.style.setProperty("--md-tooltip-y", `${origin.y}px`) // Update tooltip render location, i.e., whether the tooltip is shown // above or below the host element, depending on the available space node.classList.toggle("md-tooltip2--top", origin.y < 0) node.classList.toggle("md-tooltip2--bottom", origin.y >= 0) }) // Update tooltip width - we only explicitly set the width of the tooltip // if it is non-interactive, in case it should always be rendered centered show$.pipe( filter(active => active), withLatestFrom(node$, (_, node) => node), filter(node => node.role === "tooltip") ) .subscribe(node => { const size = getElementSize(getElement(":scope > *", node)) // Set tooltip width and remove tail by setting it to a width of zero - // if authors want to keep the tail, we can move this to CSS later node.style.setProperty("--md-tooltip-width", `${size.width}px`) node.style.setProperty("--md-tooltip-tail", `${0}px`) }) // Update tooltip visibility - we defer to the next animation frame, because // the tooltip must first be added to the document before we make it appear, // or it will appear instantly without delay. Additionally, we need to keep // the tooltip visible for a short time after the pointer left the host. show$.pipe( distinctUntilChanged(), observeOn(animationFrameScheduler), withLatestFrom(node$) ) .subscribe(([active, node]) => { node.classList.toggle("md-tooltip2--active", active) }) // Set up ARIA attributes when tooltip is visible combineLatest([ show$.pipe(filter(active => active)), node$ ]) .subscribe(([_, node]) => { if (node.role === "dialog") { el.setAttribute("aria-controls", id) el.setAttribute("aria-haspopup", "dialog") } else { el.setAttribute("aria-describedby", id) } }) // Remove ARIA attributes when tooltip is hidden show$.pipe(filter(active => !active)) .subscribe(() => { el.removeAttribute("aria-controls") el.removeAttribute("aria-describedby") el.removeAttribute("aria-haspopup") }) // Create and return component return watchTooltip2(el) .pipe( tap(state => push$.next(state)), finalize(() => push$.complete()), map(state => ({ ref: el, ...state })) ) }) } // ---------------------------------------------------------------------------- /** * Mount inline tooltip * * @todo refactor this function * * @param el - Tooltip host element * @param dependencies - Dependencies * @param container - Container * * @returns Tooltip component observable */ export function mountInlineTooltip2( el: HTMLElement, { viewport$ }: { viewport$: Observable }, container = document.body ): Observable> { return mountTooltip2(el, { content$: new Observable(observer => { const title = el.title const node = renderInlineTooltip2(title) observer.next(node) el.removeAttribute("title") // Append tooltip and remove on unsubscription container.append(node) return () => { node.remove() el.setAttribute("title", title) } }), viewport$ }) } mkdocs-material-9.6.4/src/templates/assets/javascripts/components/top/000077500000000000000000000000001475306445600262335ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/components/top/index.ts000066400000000000000000000117411475306445600277160ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, Subject, bufferCount, combineLatest, distinctUntilChanged, distinctUntilKeyChanged, endWith, finalize, fromEvent, ignoreElements, map, repeat, skip, takeUntil, tap } from "rxjs" import { Viewport } from "~/browser" import { Component } from "../_" import { Header } from "../header" import { Main } from "../main" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Back-to-top button */ export interface BackToTop { hidden: boolean /* Back-to-top button is hidden */ } /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Watch options */ interface WatchOptions { viewport$: Observable /* Viewport observable */ main$: Observable
    /* Main area observable */ target$: Observable /* Location target observable */ } /** * Mount options */ interface MountOptions { viewport$: Observable /* Viewport observable */ header$: Observable
    /* Header observable */ main$: Observable
    /* Main area observable */ target$: Observable /* Location target observable */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Watch back-to-top * * @param _el - Back-to-top element * @param options - Options * * @returns Back-to-top observable */ export function watchBackToTop( _el: HTMLElement, { viewport$, main$, target$ }: WatchOptions ): Observable { /* Compute direction */ const direction$ = viewport$ .pipe( map(({ offset: { y } }) => y), bufferCount(2, 1), map(([a, b]) => a > b && b > 0), distinctUntilChanged() ) /* Compute whether main area is active */ const active$ = main$ .pipe( map(({ active }) => active) ) /* Compute threshold for hiding */ return combineLatest([active$, direction$]) .pipe( map(([active, direction]) => !(active && direction)), distinctUntilChanged(), takeUntil(target$.pipe(skip(1))), endWith(true), repeat({ delay: 250 }), map(hidden => ({ hidden })) ) } /* ------------------------------------------------------------------------- */ /** * Mount back-to-top * * @param el - Back-to-top element * @param options - Options * * @returns Back-to-top component observable */ export function mountBackToTop( el: HTMLElement, { viewport$, header$, main$, target$ }: MountOptions ): Observable> { const push$ = new Subject() const done$ = push$.pipe(ignoreElements(), endWith(true)) push$.subscribe({ /* Handle emission */ next({ hidden }) { el.hidden = hidden if (hidden) { el.setAttribute("tabindex", "-1") el.blur() } else { el.removeAttribute("tabindex") } }, /* Handle complete */ complete() { el.style.top = "" el.hidden = true el.removeAttribute("tabindex") } }) /* Watch header height */ header$ .pipe( takeUntil(done$), distinctUntilKeyChanged("height") ) .subscribe(({ height }) => { el.style.top = `${height + 16}px` }) /* Go back to top */ fromEvent(el, "click") .subscribe(ev => { ev.preventDefault() window.scrollTo({ top: 0 }) }) /* Create and return component */ return watchBackToTop(el, { viewport$, main$, target$ }) .pipe( tap(state => push$.next(state)), finalize(() => push$.complete()), map(state => ({ ref: el, ...state })) ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/000077500000000000000000000000001475306445600257525ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/clipboard/000077500000000000000000000000001475306445600277115ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/clipboard/index.ts000066400000000000000000000060411475306445600313710ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import ClipboardJS from "clipboard" import { Observable, Subject, map, tap } from "rxjs" import { translation } from "~/_" import { getElement } from "~/browser" /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Setup options */ interface SetupOptions { alert$: Subject /* Alert subject */ } /* ---------------------------------------------------------------------------- * Helper functions * ------------------------------------------------------------------------- */ /** * Extract text to copy * * @param el - HTML element * * @returns Extracted text */ function extract(el: HTMLElement): string { el.setAttribute("data-md-copying", "") const copy = el.closest("[data-copy]") const text = copy ? copy.getAttribute("data-copy")! : el.innerText el.removeAttribute("data-md-copying") return text.trimEnd() } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Set up Clipboard.js integration * * @param options - Options */ export function setupClipboardJS( { alert$ }: SetupOptions ): void { if (ClipboardJS.isSupported()) { new Observable(subscriber => { new ClipboardJS("[data-clipboard-target], [data-clipboard-text]", { text: el => ( el.getAttribute("data-clipboard-text")! || extract(getElement( el.getAttribute("data-clipboard-target")! )) ) }) .on("success", ev => subscriber.next(ev)) }) .pipe( tap(ev => { const trigger = ev.trigger as HTMLElement trigger.focus() }), map(() => translation("clipboard.copied")) ) .subscribe(alert$) } } mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/index.ts000066400000000000000000000024061475306445600274330ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ export * from "./clipboard" export * from "./instant" export * from "./search" export * from "./sitemap" export * from "./version" mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/instant/000077500000000000000000000000001475306445600274325ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/instant/.eslintrc000066400000000000000000000001171475306445600312550ustar00rootroot00000000000000{ "rules": { "no-self-assign": "off", "no-null/no-null": "off" } } mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/instant/index.ts000066400000000000000000000367531475306445600311270ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { EMPTY, Observable, Subject, catchError, combineLatestWith, concat, debounceTime, distinctUntilChanged, distinctUntilKeyChanged, endWith, fromEvent, ignoreElements, map, merge, of, share, switchMap, tap, withLatestFrom } from "rxjs" import { configuration, feature } from "~/_" import { Viewport, getElements, getLocation, getOptionalElement, requestHTML, setLocation, setLocationHash } from "~/browser" import { getComponentElement } from "~/components" import { Sitemap, fetchSitemap } from "../sitemap" /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Setup options */ interface SetupOptions { location$: Subject // Location subject viewport$: Observable // Viewport observable progress$: Subject // Progress subject } /* ---------------------------------------------------------------------------- * Helper functions * ------------------------------------------------------------------------- */ /** * Handle clicks on internal URLs while skipping external URLs * * @param ev - Mouse event * @param sitemap - Sitemap * * @returns URL observable */ function handle( ev: MouseEvent, sitemap: Sitemap ): Observable { if (!(ev.target instanceof Element)) return EMPTY // Skip, as target is not within a link - clicks on non-link elements are // also captured, which we need to exclude from processing const el = ev.target.closest("a") if (el === null) return EMPTY // Skip, as link opens in new window - we now know we have captured a click // on a link, but the link either has a `target` property defined, or the // user pressed the `meta` or `ctrl` key to open it in a new window. Thus, // we need to filter this event as well. if (el.target || ev.metaKey || ev.ctrlKey) return EMPTY // Next, we must check if the URL is relevant for us, i.e., if it's an // internal link to a page that is managed by MkDocs. Only then we can be // sure that the structure of the page to be loaded adheres to the current // document structure and can subsequently be injected into it without doing // a full reload. For this reason, we must canonicalize the URL by removing // all search parameters and hash fragments. const url = new URL(el.href) url.search = url.hash = "" // Skip, if URL is not included in the sitemap - this could be the case when // linking between versions or languages, or to another page that the author // included as part of the build, but that is not managed by MkDocs. In that // case we must not continue with instant navigation. if (!sitemap.has(`${url}`)) return EMPTY // We now know that we have a link to an internal page, so we prevent the // browser from navigation and emit the URL for instant navigation. Note that // this also includes anchor links, which means we need to implement anchor // positioning ourselves. The reason for this is that if we wouldn't manage // anchor links as well, scroll restoration will not work correctly (e.g. // following an anchor link and scrolling). ev.preventDefault() return of(new URL(el.href)) } /** * Create a map of head elements for lookup and replacement * * @param document - Document * * @returns Tag map */ function head(document: Document): Map { const tags = new Map() for (const el of getElements(":scope > *", document.head)) tags.set(el.outerHTML, el) // Return tag map return tags } /** * Resolve relative URLs in the given document * * This function resolves relative `href` and `src` attributes, which can belong * to all sorts of tags, like meta tags, links, images, scripts and more. * * @param document - Document * * @returns Document observable */ function resolve(document: Document): Observable { for (const el of getElements("[href], [src]", document)) for (const key of ["href", "src"]) { const value = el.getAttribute(key) if (value && !/^(?:[a-z]+:)?\/\//i.test(value)) { // @ts-expect-error - trick: self-assign to resolve URL el[key] = el[key] break } } // Return document observable return of(document) } /** * Inject the contents of a document into the current one * * @param next - Next document * * @returns Document observable */ function inject(next: Document): Observable { for (const selector of [ "[data-md-component=announce]", "[data-md-component=container]", "[data-md-component=header-topic]", "[data-md-component=outdated]", "[data-md-component=logo]", "[data-md-component=skip]", ...feature("navigation.tabs.sticky") ? ["[data-md-component=tabs]"] : [] ]) { const source = getOptionalElement(selector) const target = getOptionalElement(selector, next) if ( typeof source !== "undefined" && typeof target !== "undefined" ) { source.replaceWith(target) } } // Update meta tags const tags = head(document) for (const [html, el] of head(next)) if (tags.has(html)) tags.delete(html) else document.head.appendChild(el) // Remove meta tags that are not present in the new document for (const el of tags.values()) { const name = el.getAttribute("name") // @todo - find a better way to handle attributes we add dynamically in // other components without mounting components on every navigation, as // this might impact overall performance - see https://t.ly/ehp_O if (name !== "theme-color" && name !== "color-scheme") el.remove() } // After components and meta tags were replaced, re-evaluate scripts // that were provided by the author as part of Markdown files const container = getComponentElement("container") return concat(getElements("script", container)) .pipe( switchMap(el => { const script = next.createElement("script") if (el.src) { for (const name of el.getAttributeNames()) script.setAttribute(name, el.getAttribute(name)!) el.replaceWith(script) // Complete when script is loaded return new Observable(observer => { script.onload = () => observer.complete() }) // Complete immediately } else { script.textContent = el.textContent el.replaceWith(script) return EMPTY } }), ignoreElements(), endWith(document) ) } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Set up instant navigation * * This is a heavily orchestrated operation - see inline comments to learn how * this works with Material for MkDocs, and how you can hook into it. * * @param options - Options * * @returns Document observable */ export function setupInstantNavigation( { location$, viewport$, progress$ }: SetupOptions ): Observable { const config = configuration() if (location.protocol === "file:") return EMPTY // Load sitemap immediately, so we have it available when the user initiates // the first navigation request without any perceivable delay const sitemap$ = fetchSitemap(config.base) // Since we might be on a slow connection, the user might trigger multiple // instant navigation events that overlap. MkDocs produces relative URLs for // all internal links, which becomes a problem in this case, because we need // to change the base URL the moment the user clicks a link that should be // intercepted in order to be consistent with popstate, which means that the // base URL would now be incorrect when resolving another relative link from // the same site. For this reason we always resolve all relative links to // absolute links, so we can be sure this never happens. of(document) .subscribe(resolve) // -------------------------------------------------------------------------- // Navigation interception // -------------------------------------------------------------------------- // Intercept navigation - to keep the number of event listeners down we use // the fact that uncaptured events bubble up to the body. This has the nice // property that we don't need to detach and then re-attach event listeners // when the document is replaced after a navigation event. const instant$ = fromEvent(document.body, "click") .pipe( combineLatestWith(sitemap$), switchMap(([ev, sitemap]) => handle(ev, sitemap)), share() ) // Intercept history change events, e.g. when the user uses the browser's // back or forward buttons, and emit new location for fetching and parsing const history$ = fromEvent(window, "popstate") .pipe( map(getLocation), share() ) // While it would be better UX to defer navigation events until the document // is fully fetched and parsed, we must schedule it here to synchronize with // popstate events, as they are emitted immediately. Moreover we need to // store the current viewport offset for scroll restoration later on. instant$.pipe(withLatestFrom(viewport$)) .subscribe(([url, { offset }]) => { history.replaceState(offset, "") history.pushState(null, "", url) }) // Emit URLs that should be fetched via instant navigation on location subject // which was passed into this function. The state of instant navigation can be // intercepted by other parts of the application, which can synchronously back // up or restore state before or after instant navigation happens. merge(instant$, history$) .subscribe(location$) // -------------------------------------------------------------------------- // Fetching and parsing // -------------------------------------------------------------------------- // Fetch document - we deduplicate requests to the same location, so we don't // end up with multiple requests for the same page. We use `switchMap`, since // we want to cancel the previous request when a new one is triggered, which // is automatically handled by the observable returned by `request`. This is // essential to ensure a good user experience, as we don't want to load pages // that are not needed anymore, e.g., when the user clicks multiple links in // quick succession or on slow connections. If the request fails for some // reason, we fall back and use regular navigation, forcing a reload. const document$ = location$.pipe( distinctUntilKeyChanged("pathname"), switchMap(url => requestHTML(url, { progress$ }) .pipe( catchError(() => { setLocation(url, true) return EMPTY }) ) ), // The document was successfully fetched and parsed, so we can inject its // contents into the currently active document switchMap(resolve), switchMap(inject), share() ) // -------------------------------------------------------------------------- // Scroll restoration // -------------------------------------------------------------------------- // Handle scroll restoration - we must restore the viewport offset after the // document has been fetched and injected, and every time the user clicks an // anchor that leads to an element on the same page, which might also happen // when the user uses the back or forward button. merge( document$.pipe(withLatestFrom(location$, (_, url) => url)), // Handle instant navigation events that are triggered by the user clicking // on an anchor link with a hash fragment different from the current one, as // well as from popstate events, which are emitted when the user navigates // back and forth between pages. document$.pipe( switchMap(() => location$), distinctUntilKeyChanged("hash"), ), // Handle instant navigation events that are triggered by the user clicking // on an anchor link with the same hash fragment as the current one in the // URL. It is essential that we only intercept those from instant navigation // events and not from history change events, or we'll end up in and endless // loop. The top-level history entry must be removed, as it will be replaced // with a new one, which would otherwise lead to a duplicate entry. location$.pipe( distinctUntilChanged((a, b) => ( a.pathname === b.pathname && a.hash === b.hash )), switchMap(() => instant$), tap(() => history.back()) ) ) .subscribe(url => { // Check if the current history entry has a state, which happens when the // user presses the back or forward button to visit a page we've already // seen. If there's no state, it means a new page was visited and we must // scroll to the top, unless an anchor is given. if (history.state !== null || !url.hash) { window.scrollTo(0, history.state?.y ?? 0) } else { history.scrollRestoration = "auto" setLocationHash(url.hash) history.scrollRestoration = "manual" } }) // Disable scroll restoration when an instant navigation event occurs, so the // browser does not immediately set the viewport offset to the prior history // entry, scrolling to the position on the same page, which would look odd. // Instead, we manually restore the position once the page has loaded. location$.subscribe(() => { history.scrollRestoration = "manual" }) // Enable scroll restoration before window unloads - this is essential to // ensure that full reloads (F5) restore the viewport offset correctly. If // only popstate events wouldn't reset the viewport offset prior to their // emission, we could just reset this in popstate. Meh. fromEvent(window, "beforeunload") .subscribe(() => { history.scrollRestoration = "auto" }) // Track viewport offset, so we can restore it when the user navigates back // and forth between pages. Note that this must be debounced and cannot be // done in popstate, as popstate has already removed the entry from the // history, which means it is too late. viewport$.pipe( distinctUntilKeyChanged("offset"), debounceTime(100) ) .subscribe(({ offset }) => { history.replaceState(offset, "") }) // Return document observable return document$ } mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/000077500000000000000000000000001475306445600272175ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/_/000077500000000000000000000000001475306445600274355ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/_/index.ts000066400000000000000000000231321475306445600311150ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { SearchDocument, SearchIndex, SearchOptions, setupSearchDocumentMap } from "../config" import { Position, PositionTable, highlight, highlightAll, tokenize } from "../internal" import { SearchQueryTerms, getSearchQueryTerms, parseSearchQuery, segment, transformSearchQuery } from "../query" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Search item */ export interface SearchItem extends SearchDocument { score: number /* Score (relevance) */ terms: SearchQueryTerms /* Search query terms */ } /** * Search result */ export interface SearchResult { items: SearchItem[][] /* Search items */ suggest?: string[] /* Search suggestions */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Create field extractor factory * * @param table - Position table map * * @returns Extractor factory */ function extractor(table: Map) { return (name: keyof SearchDocument) => { return (doc: SearchDocument) => { if (typeof doc[name] === "undefined") return undefined /* Compute identifier and initialize table */ const id = [doc.location, name].join(":") table.set(id, lunr.tokenizer.table = []) /* Return field value */ return doc[name] } } } /** * Compute the difference of two lists of strings * * @param a - 1st list of strings * @param b - 2nd list of strings * * @returns Difference */ function difference(a: string[], b: string[]): string[] { const [x, y] = [new Set(a), new Set(b)] return [ ...new Set([...x].filter(value => !y.has(value))) ] } /* ---------------------------------------------------------------------------- * Class * ------------------------------------------------------------------------- */ /** * Search index */ export class Search { /** * Search document map */ protected map: Map /** * Search options */ protected options: SearchOptions /** * The underlying Lunr.js search index */ protected index: lunr.Index /** * Internal position table map */ protected table: Map /** * Create the search integration * * @param data - Search index */ public constructor({ config, docs, options }: SearchIndex) { const field = extractor(this.table = new Map()) /* Set up document map and options */ this.map = setupSearchDocumentMap(docs) this.options = options /* Set up document index */ this.index = lunr(function () { this.metadataWhitelist = ["position"] this.b(0) /* Set up (multi-)language support */ if (config.lang.length === 1 && config.lang[0] !== "en") { // @ts-expect-error - namespace indexing not supported this.use(lunr[config.lang[0]]) } else if (config.lang.length > 1) { this.use(lunr.multiLanguage(...config.lang)) } /* Set up custom tokenizer (must be after language setup) */ this.tokenizer = tokenize as typeof lunr.tokenizer lunr.tokenizer.separator = new RegExp(config.separator) /* Set up custom segmenter, if loaded */ lunr.segmenter = "TinySegmenter" in lunr ? new lunr.TinySegmenter() : undefined /* Compute functions to be removed from the pipeline */ const fns = difference([ "trimmer", "stopWordFilter", "stemmer" ], config.pipeline) /* Remove functions from the pipeline for registered languages */ for (const lang of config.lang.map(language => ( // @ts-expect-error - namespace indexing not supported language === "en" ? lunr : lunr[language] ))) for (const fn of fns) { this.pipeline.remove(lang[fn]) this.searchPipeline.remove(lang[fn]) } /* Set up index reference */ this.ref("location") /* Set up index fields */ this.field("title", { boost: 1e3, extractor: field("title") }) this.field("text", { boost: 1e0, extractor: field("text") }) this.field("tags", { boost: 1e6, extractor: field("tags") }) /* Add documents to index */ for (const doc of docs) this.add(doc, { boost: doc.boost }) }) } /** * Search for matching documents * * @param query - Search query * * @returns Search result */ public search(query: string): SearchResult { // Experimental Chinese segmentation query = query.replace(/\p{sc=Han}+/gu, value => { return [...segment(value, this.index.invertedIndex)] .join("* ") }) // @todo: move segmenter (above) into transformSearchQuery query = transformSearchQuery(query) if (!query) return { items: [] } /* Parse query to extract clauses for analysis */ const clauses = parseSearchQuery(query) .filter(clause => ( clause.presence !== lunr.Query.presence.PROHIBITED )) /* Perform search and post-process results */ const groups = this.index.search(query) /* Apply post-query boosts based on title and search query terms */ .reduce((item, { ref, score, matchData }) => { let doc = this.map.get(ref) if (typeof doc !== "undefined") { /* Shallow copy document */ doc = { ...doc } if (doc.tags) doc.tags = [...doc.tags] /* Compute and analyze search query terms */ const terms = getSearchQueryTerms( clauses, Object.keys(matchData.metadata) ) /* Highlight matches in fields */ for (const field of this.index.fields) { if (typeof doc[field] === "undefined") continue /* Collect positions from matches */ const positions: Position[] = [] for (const match of Object.values(matchData.metadata)) if (typeof match[field] !== "undefined") positions.push(...match[field].position) /* Skip highlighting, if no positions were collected */ if (!positions.length) continue /* Load table and determine highlighting method */ const table = this.table.get([doc.location, field].join(":"))! const fn = Array.isArray(doc[field]) ? highlightAll : highlight // @ts-expect-error - stop moaning, TypeScript! doc[field] = fn(doc[field], table, positions, field !== "text") } /* Highlight title and text and apply post-query boosts */ const boost = +!doc.parent + Object.values(terms) .filter(t => t).length / Object.keys(terms).length /* Append item */ item.push({ ...doc, score: score * (1 + boost ** 2), terms }) } return item }, []) /* Sort search results again after applying boosts */ .sort((a, b) => b.score - a.score) /* Group search results by article */ .reduce((items, result) => { const doc = this.map.get(result.location) if (typeof doc !== "undefined") { const ref = doc.parent ? doc.parent.location : doc.location items.set(ref, [...items.get(ref) || [], result]) } return items }, new Map()) /* Ensure that every item set has an article */ for (const [ref, items] of groups) if (!items.find(item => item.location === ref)) { const doc = this.map.get(ref)! items.push({ ...doc, score: 0, terms: {} }) } /* Generate search suggestions, if desired */ let suggest: string[] | undefined if (this.options.suggest) { const titles = this.index.query(builder => { for (const clause of clauses) builder.term(clause.term, { fields: ["title"], presence: lunr.Query.presence.REQUIRED, wildcard: lunr.Query.wildcard.TRAILING }) }) /* Retrieve suggestions for best match */ suggest = titles.length ? Object.keys(titles[0].matchData.metadata) : [] } /* Return search result */ return { items: [...groups.values()], ...typeof suggest !== "undefined" && { suggest } } } } mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/config/000077500000000000000000000000001475306445600304645ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/config/index.ts000066400000000000000000000075651475306445600321600ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Search configuration */ export interface SearchConfig { lang: string[] /* Search languages */ separator: string /* Search separator */ pipeline: SearchPipelineFn[] /* Search pipeline */ } /** * Search document */ export interface SearchDocument { location: string /* Document location */ title: string /* Document title */ text: string /* Document text */ tags?: string[] /* Document tags */ boost?: number /* Document boost */ parent?: SearchDocument /* Document parent */ } /** * Search options */ export interface SearchOptions { suggest: boolean /* Search suggestions */ } /* ------------------------------------------------------------------------- */ /** * Search index */ export interface SearchIndex { config: SearchConfig /* Search configuration */ docs: SearchDocument[] /* Search documents */ options: SearchOptions /* Search options */ } /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Search pipeline function */ type SearchPipelineFn = | "trimmer" /* Trimmer */ | "stopWordFilter" /* Stop word filter */ | "stemmer" /* Stemmer */ /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Create a search document map * * This function creates a mapping of URLs (including anchors) to the actual * articles and sections. It relies on the invariant that the search index is * ordered with the main article appearing before all sections with anchors. * If this is not the case, the logic music be changed. * * @param docs - Search documents * * @returns Search document map */ export function setupSearchDocumentMap( docs: SearchDocument[] ): Map { const map = new Map() for (const doc of docs) { const [path] = doc.location.split("#") /* Add document article */ const article = map.get(path) if (typeof article === "undefined") { map.set(path, doc) /* Add document section */ } else { map.set(doc.location, doc) doc.parent = article } } /* Return search document map */ return map } mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/highlighter/000077500000000000000000000000001475306445600315155ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/highlighter/index.ts000066400000000000000000000060111475306445600331720ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import escapeHTML from "escape-html" import { SearchConfig } from "../config" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Search highlight function * * @param value - Value * * @returns Highlighted value */ export type SearchHighlightFn = (value: string) => string /** * Search highlight factory function * * @param query - Query value * * @returns Search highlight function */ export type SearchHighlightFactoryFn = (query: string) => SearchHighlightFn /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Create a search highlighter * * @param config - Search configuration * * @returns Search highlight factory function */ export function setupSearchHighlighter( config: SearchConfig ): SearchHighlightFactoryFn { // Hack: temporarily remove pure lookaheads and lookbehinds const regex = config.separator.split("|").map(term => { const temp = term.replace(/(\(\?[!=<][^)]+\))/g, "") return temp.length === 0 ? "�" : term }) .join("|") const separator = new RegExp(regex, "img") const highlight = (_: unknown, data: string, term: string) => { return `${data}${term}` } /* Return factory function */ return (query: string) => { query = query .replace(/[\s*+\-:~^]+/g, " ") .trim() /* Create search term match expression */ const match = new RegExp(`(^|${config.separator}|)(${ query .replace(/[|\\{}()[\]^$+*?.-]/g, "\\$&") .replace(separator, "|") })`, "img") /* Highlight string value */ return value => escapeHTML(value) .replace(match, highlight) .replace(/<\/mark>(\s+)]*>/img, "$1") } } mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/index.ts000066400000000000000000000023771475306445600307070ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ export * from "./_" export * from "./config" export * from "./highlighter" export * from "./query" export * from "./worker" mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/internal/000077500000000000000000000000001475306445600310335ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/internal/.eslintrc000066400000000000000000000001241475306445600326540ustar00rootroot00000000000000{ "rules": { "no-fallthrough": "off", "no-underscore-dangle": "off" } } mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/internal/_/000077500000000000000000000000001475306445600312515ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/internal/_/index.ts000066400000000000000000000046111475306445600327320ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Visitor function * * @param start - Start offset * @param end - End offset */ type VisitorFn = ( start: number, end: number ) => void /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Split a string using the given separator * * @param input - Input value * @param separator - Separator * @param fn - Visitor function */ export function split( input: string, separator: RegExp, fn: VisitorFn ): void { separator = new RegExp(separator, "g") /* Split string using separator */ let match: RegExpExecArray | null let index = 0 do { match = separator.exec(input) /* Emit non-empty range */ const until = match?.index ?? input.length if (index < until) fn(index, until) /* Update last index */ if (match) { const [term] = match index = match.index + term.length /* Support zero-length lookaheads */ if (term.length === 0) separator.lastIndex = match.index + 1 } } while (match) } mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/internal/extract/000077500000000000000000000000001475306445600325055ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/internal/extract/index.ts000066400000000000000000000074701475306445600341740ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Extraction type * * This type defines the possible values that are encoded into the first two * bits of a section that is part of the blocks of a tokenization table. There * are three types of interest: HTML opening and closing tags, as well as the * actual text content we need to extract for indexing. */ export const enum Extract { TAG_OPEN = 0, /* HTML opening tag */ TEXT = 1, /* Text content */ TAG_CLOSE = 2 /* HTML closing tag */ } /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Visitor function * * @param block - Block index * @param type - Extraction type * @param start - Start offset * @param end - End offset */ type VisitorFn = ( block: number, type: Extract, start: number, end: number ) => void /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Split a string into markup and text sections * * This function scans a string and divides it up into sections of markup and * text. For each section, it invokes the given visitor function with the block * index, extraction type, as well as start and end offsets. Using a visitor * function (= streaming data) is ideal for minimizing pressure on the GC. * * @param input - Input value * @param fn - Visitor function */ export function extract( input: string, fn: VisitorFn ): void { let block = 0 /* Current block */ let start = 0 /* Current start offset */ let end = 0 /* Current end offset */ /* Split string into sections */ for (let stack = 0; end < input.length; end++) { /* Opening tag after non-empty section */ if (input.charAt(end) === "<" && end > start) { fn(block, Extract.TEXT, start, start = end) /* Closing tag */ } else if (input.charAt(end) === ">") { if (input.charAt(start + 1) === "/") { if (--stack === 0) fn(block++, Extract.TAG_CLOSE, start, end + 1) /* Tag is not self-closing */ } else if (input.charAt(end - 1) !== "/") { if (stack++ === 0) fn(block, Extract.TAG_OPEN, start, end + 1) } /* New section */ start = end + 1 } } /* Add trailing section */ if (end > start) fn(block, Extract.TEXT, start, end) } mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/internal/highlight/000077500000000000000000000000001475306445600330025ustar00rootroot00000000000000index.ts000066400000000000000000000116401475306445600344040ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/internal/highlight/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Position table */ export type PositionTable = number[][] /** * Position */ export type Position = number /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Highlight all occurrences in a string * * This function receives a field's value (e.g. like `title` or `text`), it's * position table that was generated during indexing, and the positions found * when executing the query. It then highlights all occurrences, and returns * their concatenation. In case of multiple blocks, two are returned. * * @param input - Input value * @param table - Table for indexing * @param positions - Occurrences * @param full - Full results * * @returns Highlighted string value */ export function highlight( input: string, table: PositionTable, positions: Position[], full = false ): string { return highlightAll([input], table, positions, full).pop()! } /** * Highlight all occurrences in a set of strings * * @param inputs - Input values * @param table - Table for indexing * @param positions - Occurrences * @param full - Full results * * @returns Highlighted string values */ export function highlightAll( inputs: string[], table: PositionTable, positions: Position[], full = false ): string[] { /* Map blocks to input values */ const mapping = [0] for (let t = 1; t < table.length; t++) { const prev = table[t - 1] const next = table[t] /* Check if table points to new block */ const p = prev[prev.length - 1] >>> 2 & 0x3FF const q = next[0] >>> 12 /* Add block to mapping */ mapping.push(+(p > q) + mapping[mapping.length - 1]) } /* Highlight strings one after another */ return inputs.map((input, i) => { let cursor = 0 /* Map occurrences to blocks */ const blocks = new Map() for (const p of positions.sort((a, b) => a - b)) { const index = p & 0xFFFFF const block = p >>> 20 if (mapping[block] !== i) continue /* Ensure presence of block group */ let group = blocks.get(block) if (typeof group === "undefined") blocks.set(block, group = []) /* Add index to group */ group.push(index) } /* Just return string, if no occurrences */ if (blocks.size === 0) return input /* Compute slices */ const slices: string[] = [] for (const [block, indexes] of blocks) { const t = table[block] /* Extract positions and length */ const start = t[0] >>> 12 const end = t[t.length - 1] >>> 12 const length = t[t.length - 1] >>> 2 & 0x3FF /* Add prefix, if full results are desired */ if (full && start > cursor) slices.push(input.slice(cursor, start)) /* Extract and highlight slice */ let slice = input.slice(start, end + length) for (const j of indexes.sort((a, b) => b - a)) { /* Retrieve offset and length of match */ const p = (t[j] >>> 12) - start const q = (t[j] >>> 2 & 0x3FF) + p /* Wrap occurrence */ slice = [ slice.slice(0, p), "", slice.slice(p, q), "", slice.slice(q) ].join("") } /* Update cursor */ cursor = end + length /* Append slice and abort if we have two */ if (slices.push(slice) === 2) break } /* Add suffix, if full results are desired */ if (full && cursor < input.length) slices.push(input.slice(cursor)) /* Return highlighted slices */ return slices.join("") }) } mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/internal/index.ts000066400000000000000000000023501475306445600325120ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ export * from "./_" export * from "./extract" export * from "./highlight" export * from "./tokenize" mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/internal/tokenize/000077500000000000000000000000001475306445600326635ustar00rootroot00000000000000index.ts000066400000000000000000000112531475306445600342650ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/internal/tokenize/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { split } from "../_" import { Extract, extract } from "../extract" /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Split a string or set of strings into tokens * * This tokenizer supersedes the default tokenizer that is provided by Lunr.js, * as it is aware of HTML tags and allows for multi-character splitting. * * It takes the given inputs, splits each of them into markup and text sections, * tokenizes and segments (if necessary) each of them, and then indexes them in * a table by using a compact bit representation. Bitwise techniques are used * to write and read from the table during indexing and querying. * * @see https://bit.ly/3W3Xw4J - Search: better, faster, smaller * * @param input - Input value(s) * * @returns Tokens */ export function tokenize( input?: string | string[] ): lunr.Token[] { const tokens: lunr.Token[] = [] if (typeof input === "undefined") return tokens /* Tokenize strings one after another */ const inputs = Array.isArray(input) ? input : [input] for (let i = 0; i < inputs.length; i++) { const table = lunr.tokenizer.table const total = table.length /* Split string into sections and tokenize content blocks */ extract(inputs[i], (block, type, start, end) => { table[block += total] ||= [] switch (type) { /* Handle markup */ case Extract.TAG_OPEN: case Extract.TAG_CLOSE: table[block].push( start << 12 | end - start << 2 | type ) break /* Handle text content */ case Extract.TEXT: const section = inputs[i].slice(start, end) split(section, lunr.tokenizer.separator, (index, until) => { /** * Apply segmenter after tokenization. Note that the segmenter will * also split words at word boundaries, which is not what we want, * so we need to check if we can somehow mitigate this behavior. */ if (typeof lunr.segmenter !== "undefined") { const subsection = section.slice(index, until) if (/^[MHIK]$/.test(lunr.segmenter.ctype_(subsection))) { const segments = lunr.segmenter.segment(subsection) for (let s = 0, l = 0; s < segments.length; s++) { /* Add block to section */ table[block] ||= [] table[block].push( start + index + l << 12 | segments[s].length << 2 | type ) /* Add token with position */ tokens.push(new lunr.Token( segments[s].toLowerCase(), { position: block << 20 | table[block].length - 1 } )) /* Keep track of length */ l += segments[s].length } return } } /* Add block to section */ table[block].push( start + index << 12 | until - index << 2 | type ) /* Add token with position */ tokens.push(new lunr.Token( section.slice(index, until).toLowerCase(), { position: block << 20 | table[block].length - 1 } )) }) } }) } /* Return tokens */ return tokens } mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/query/000077500000000000000000000000001475306445600303645ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/query/.eslintrc000066400000000000000000000001441475306445600322070ustar00rootroot00000000000000{ "rules": { "no-control-regex": "off", "@typescript-eslint/no-explicit-any": "off" } } mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/query/_/000077500000000000000000000000001475306445600306025ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/query/_/index.ts000066400000000000000000000120141475306445600322570ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { split } from "../../internal" import { transform } from "../transform" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Search query clause */ export interface SearchQueryClause { presence: lunr.Query.presence /* Clause presence */ term: string /* Clause term */ } /* ------------------------------------------------------------------------- */ /** * Search query terms */ export type SearchQueryTerms = Record /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Transform search query * * This function lexes the given search query and applies the transformation * function to each term, preserving markup like `+` and `-` modifiers. * * @param query - Search query * * @returns Search query */ export function transformSearchQuery( query: string ): string { /* Split query terms with tokenizer */ return transform(query, part => { const terms: string[] = [] /* Initialize lexer and analyze part */ const lexer = new lunr.QueryLexer(part) lexer.run() /* Extract and tokenize term from lexeme */ for (const { type, str: term, start, end } of lexer.lexemes) switch (type) { /* Hack: remove colon - see https://bit.ly/3wD3T3I */ case "FIELD": if (!["title", "text", "tags"].includes(term)) part = [ part.slice(0, end), " ", part.slice(end + 1) ].join("") break /* Tokenize term */ case "TERM": split(term, lunr.tokenizer.separator, (...range) => { terms.push([ part.slice(0, start), term.slice(...range), part.slice(end) ].join("")) }) } /* Return terms */ return terms }) } /* ------------------------------------------------------------------------- */ /** * Parse a search query for analysis * * Lunr.js itself has a bug where it doesn't detect or remove wildcards for * query clauses, so we must do this here. * * @see https://bit.ly/3DpTGtz - GitHub issue * * @param value - Query value * * @returns Search query clauses */ export function parseSearchQuery( value: string ): SearchQueryClause[] { const query = new lunr.Query(["title", "text", "tags"]) const parser = new lunr.QueryParser(value, query) /* Parse Search query */ parser.parse() for (const clause of query.clauses) { clause.usePipeline = true /* Handle leading wildcard */ if (clause.term.startsWith("*")) { clause.wildcard = lunr.Query.wildcard.LEADING clause.term = clause.term.slice(1) } /* Handle trailing wildcard */ if (clause.term.endsWith("*")) { clause.wildcard = lunr.Query.wildcard.TRAILING clause.term = clause.term.slice(0, -1) } } /* Return query clauses */ return query.clauses } /** * Analyze the search query clauses in regard to the search terms found * * @param query - Search query clauses * @param terms - Search terms * * @returns Search query terms */ export function getSearchQueryTerms( query: SearchQueryClause[], terms: string[] ): SearchQueryTerms { const clauses = new Set(query) /* Match query clauses against terms */ const result: SearchQueryTerms = {} for (let t = 0; t < terms.length; t++) for (const clause of clauses) if (terms[t].startsWith(clause.term)) { result[clause.term] = true clauses.delete(clause) } /* Annotate unmatched non-stopword query clauses */ for (const clause of clauses) if (lunr.stopWordFilter?.(clause.term)) result[clause.term] = false /* Return query terms */ return result } mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/query/index.ts000066400000000000000000000023151475306445600320440ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ export * from "./_" export * from "./segment" export * from "./transform" mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/query/segment/000077500000000000000000000000001475306445600320265ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/query/segment/index.ts000066400000000000000000000055511475306445600335130ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Segment a search query using the inverted index * * This function implements a clever approach to text segmentation for Asian * languages, as it used the information already available in the search index. * The idea is to greedily segment the search query based on the tokens that are * already part of the index, as described in the linked issue. * * @see https://bit.ly/3lwjrk7 - GitHub issue * * @param query - Query value * @param index - Inverted index * * @returns Segmented query value */ export function segment( query: string, index: object ): Iterable { const segments = new Set() /* Segment search query */ const wordcuts = new Uint16Array(query.length) for (let i = 0; i < query.length; i++) for (let j = i + 1; j < query.length; j++) { const value = query.slice(i, j) if (value in index) wordcuts[i] = j - i } /* Compute longest matches with minimum overlap */ const stack = [0] for (let s = stack.length; s > 0;) { const p = stack[--s] for (let q = 1; q < wordcuts[p]; q++) if (wordcuts[p + q] > wordcuts[p] - q) { segments.add(query.slice(p, p + q)) stack[s++] = p + q } /* Continue at end of query string */ const q = p + wordcuts[p] if (wordcuts[q] && q < query.length - 1) stack[s++] = q /* Add current segment */ segments.add(query.slice(p, q)) } // @todo fix this case in the code block above, this is a hotfix if (segments.has("")) return new Set([query]) /* Return segmented query value */ return segments } mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/query/transform/000077500000000000000000000000001475306445600323775ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/query/transform/index.ts000066400000000000000000000072571475306445600340710ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Visitor function * * @param value - String value * * @returns String term(s) */ type VisitorFn = ( value: string ) => string | string[] /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Default transformation function * * 1. Trim excess whitespace from left and right. * * 2. Search for parts in quotation marks and prepend a `+` modifier to denote * that the resulting document must contain all parts, converting the query * to an `AND` query (as opposed to the default `OR` behavior). While users * may expect parts enclosed in quotation marks to map to span queries, i.e. * for which order is important, Lunr.js doesn't support them, so the best * we can do is to convert the parts to an `AND` query. * * 3. Replace control characters which are not located at the beginning of the * query or preceded by white space, or are not followed by a non-whitespace * character or are at the end of the query string. Furthermore, filter * unmatched quotation marks. * * 4. Split the query string at whitespace, then pass each part to the visitor * function for tokenization, and append a wildcard to every resulting term * that is not explicitly marked with a `+`, `-`, `~` or `^` modifier, since * it ensures consistent and stable ranking when multiple terms are entered. * Also, if a fuzzy or boost modifier are given, but no numeric value has * been entered, default to 1 to not induce a query error. * * @param query - Query value * @param fn - Visitor function * * @returns Transformed query value */ export function transform( query: string, fn: VisitorFn = term => term ): string { return query /* => 1 */ .trim() /* => 2 */ .split(/"([^"]+)"/g) .map((parts, index) => index & 1 ? parts.replace(/^\b|^(?![^\x00-\x7F]|$)|\s+/g, " +") : parts ) .join("") /* => 3 */ .replace(/"|(?:^|\s+)[*+\-:^~]+(?=\s+|$)/g, "") /* => 4 */ .split(/\s+/g) .reduce((prev, term) => { const next = fn(term) return [...prev, ...Array.isArray(next) ? next : [next]] }, [] as string[]) .map(term => /([~^]$)/.test(term) ? `${term}1` : term) .map(term => /(^[+-]|[~^]\d+$)/.test(term) ? term : `${term}*`) .join(" ") } mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/worker/000077500000000000000000000000001475306445600305305ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/worker/_/000077500000000000000000000000001475306445600307465ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/worker/_/index.ts000066400000000000000000000063671475306445600324410ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A RTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { ObservableInput, Subject, first, merge, of, switchMap } from "rxjs" import { feature } from "~/_" import { watchToggle, watchWorker } from "~/browser" import { SearchIndex } from "../../config" import { SearchMessage, SearchMessageType } from "../message" /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Set up search worker * * This function creates and initializes a web worker that is used for search, * so that the user interface doesn't freeze. In general, the application does * not care how search is implemented, as long as the web worker conforms to * the format expected by the application as defined in `SearchMessage`. This * allows the author to implement custom search functionality, by providing a * custom web worker via configuration. * * Material for MkDocs' built-in search implementation makes use of Lunr.js, an * efficient and fast implementation for client-side search. Leveraging a tiny * iframe-based web worker shim, search is even supported for the `file://` * protocol, enabling search for local non-hosted builds. * * If the protocol is `file://`, search initialization is deferred to mitigate * freezing, as it's now synchronous by design - see https://bit.ly/3C521EO * * @see https://bit.ly/3igvtQv - How to implement custom search * * @param url - Worker URL * @param index$ - Search index observable input * * @returns Search worker */ export function setupSearchWorker( url: string, index$: ObservableInput ): Subject { const worker$ = watchWorker(url) merge( of(location.protocol !== "file:"), watchToggle("search") ) .pipe( first(active => active), switchMap(() => index$) ) .subscribe(({ config, docs }) => worker$.next({ type: SearchMessageType.SETUP, data: { config, docs, options: { suggest: feature("search.suggest") } } })) /* Return search worker */ return worker$ } mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/worker/index.ts000066400000000000000000000022611475306445600322100ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ export * from "./_" export * from "./message" mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/worker/main/000077500000000000000000000000001475306445600314545ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/worker/main/.eslintrc000066400000000000000000000001421475306445600332750ustar00rootroot00000000000000{ "rules": { "no-console": "off", "@typescript-eslint/no-misused-promises": "off" } } mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/worker/main/index.ts000066400000000000000000000134511475306445600331370ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A RTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import lunr from "lunr" import { getElement } from "~/browser/element/_" import "~/polyfills" import { Search } from "../../_" import { SearchConfig } from "../../config" import { SearchMessage, SearchMessageType } from "../message" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Add support for `iframe-worker` shim * * While `importScripts` is synchronous when executed inside of a web worker, * it's not possible to provide a synchronous shim implementation. The cool * thing is that awaiting a non-Promise will convert it into a Promise, so * extending the type definition to return a `Promise` shouldn't break anything. * * @see https://bit.ly/2PjDnXi - GitHub comment * * @param urls - Scripts to load * * @returns Promise resolving with no result */ declare global { function importScripts(...urls: string[]): Promise | void } /* ---------------------------------------------------------------------------- * Data * ------------------------------------------------------------------------- */ /** * Search index */ let index: Search /* ---------------------------------------------------------------------------- * Helper functions * ------------------------------------------------------------------------- */ /** * Fetch (= import) multi-language support through `lunr-languages` * * This function automatically imports the stemmers necessary to process the * languages which are defined as part of the search configuration. * * If the worker runs inside of an `iframe` (when using `iframe-worker` as * a shim), the base URL for the stemmers to be loaded must be determined by * searching for the first `script` element with a `src` attribute, which will * contain the contents of this script. * * @param config - Search configuration * * @returns Promise resolving with no result */ async function setupSearchLanguages( config: SearchConfig ): Promise { let base = "../lunr" /* Detect `iframe-worker` and fix base URL */ if (typeof parent !== "undefined" && "IFrameWorker" in parent) { const worker = getElement("script[src]") const [path] = worker.src.split("/worker") /* Prefix base with path */ base = base.replace("..", path) } /* Add scripts for languages */ const scripts = [] for (const lang of config.lang) { switch (lang) { /* Add segmenter for Japanese */ case "ja": scripts.push(`${base}/tinyseg.js`) break /* Add segmenter for Hindi and Thai */ case "hi": case "th": scripts.push(`${base}/wordcut.js`) break } /* Add language support */ if (lang !== "en") scripts.push(`${base}/min/lunr.${lang}.min.js`) } /* Add multi-language support */ if (config.lang.length > 1) scripts.push(`${base}/min/lunr.multi.min.js`) /* Load scripts synchronously */ if (scripts.length) await importScripts( `${base}/min/lunr.stemmer.support.min.js`, ...scripts ) } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Message handler * * @param message - Source message * * @returns Target message */ export async function handler( message: SearchMessage ): Promise { switch (message.type) { /* Search setup message */ case SearchMessageType.SETUP: await setupSearchLanguages(message.data.config) index = new Search(message.data) return { type: SearchMessageType.READY } /* Search query message */ case SearchMessageType.QUERY: const query = message.data try { return { type: SearchMessageType.RESULT, data: index.search(query) } /* Return empty result in case of error */ } catch (err) { console.warn(`Invalid query: ${query} – see https://bit.ly/2s3ChXG`) console.warn(err) return { type: SearchMessageType.RESULT, data: { items: [] } } } /* All other messages */ default: throw new TypeError("Invalid message type") } } /* ---------------------------------------------------------------------------- * Worker * ------------------------------------------------------------------------- */ /* Expose Lunr.js in global scope, or stemmers won't work */ self.lunr = lunr /* Monkey-patch Lunr.js to mitigate https://t.ly/68TLq */ lunr.utils.warn = console.warn /* Handle messages */ addEventListener("message", async ev => { postMessage(await handler(ev.data)) }) mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/worker/message/000077500000000000000000000000001475306445600321545ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/search/worker/message/index.ts000066400000000000000000000067771475306445600336540ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A RTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { SearchResult } from "../../_" import { SearchIndex } from "../../config" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Search message type */ export const enum SearchMessageType { SETUP, /* Search index setup */ READY, /* Search index ready */ QUERY, /* Search query */ RESULT /* Search results */ } /* ------------------------------------------------------------------------- */ /** * Message containing the data necessary to setup the search index */ export interface SearchSetupMessage { type: SearchMessageType.SETUP /* Message type */ data: SearchIndex /* Message data */ } /** * Message indicating the search index is ready */ export interface SearchReadyMessage { type: SearchMessageType.READY /* Message type */ } /** * Message containing a search query */ export interface SearchQueryMessage { type: SearchMessageType.QUERY /* Message type */ data: string /* Message data */ } /** * Message containing results for a search query */ export interface SearchResultMessage { type: SearchMessageType.RESULT /* Message type */ data: SearchResult /* Message data */ } /* ------------------------------------------------------------------------- */ /** * Message exchanged with the search worker */ export type SearchMessage = | SearchSetupMessage | SearchReadyMessage | SearchQueryMessage | SearchResultMessage /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Type guard for search ready messages * * @param message - Search worker message * * @returns Test result */ export function isSearchReadyMessage( message: SearchMessage ): message is SearchReadyMessage { return message.type === SearchMessageType.READY } /** * Type guard for search result messages * * @param message - Search worker message * * @returns Test result */ export function isSearchResultMessage( message: SearchMessage ): message is SearchResultMessage { return message.type === SearchMessageType.RESULT } mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/sitemap/000077500000000000000000000000001475306445600274145ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/sitemap/.eslintrc000066400000000000000000000000621475306445600312360ustar00rootroot00000000000000{ "rules": { "no-null/no-null": "off" } } mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/sitemap/index.ts000066400000000000000000000102001475306445600310640ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, catchError, map, of } from "rxjs" import { getElement, getElements, requestXML } from "~/browser" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Sitemap, i.e. a list of URLs */ export type Sitemap = Map /* ---------------------------------------------------------------------------- * Helper functions * ------------------------------------------------------------------------- */ /** * Resolve URL to the given base URL * * When serving the site with instant navigation, MkDocs will set the hostname * to the value as specified in `dev_addr`, but the browser allows for several * hostnames to be used: `localhost`, `127.0.0.1` or even `0.0.0.0`, depending * on configuration. This function resolves the URL to the given hostname. * * @param url - URL * @param base - Base URL * * @returns Resolved URL */ function resolve(url: URL, base: URL) { url.protocol = base.protocol url.hostname = base.hostname return url } /** * Extract sitemap from document * * This function extracts the URLs and alternate links from the document, and * associates alternate links to the original URL as found in `loc`, allowing * the browser to navigate to the correct page when switching languages. The * format of the sitemap is expected to adhere to: * * ``` xml * * * ... * * * ... * * ... * * ``` * * @param document - Document * @param base - Base URL * * @returns Sitemap */ function extract(document: Document, base: URL): Sitemap { const sitemap: Sitemap = new Map() for (const el of getElements("url", document)) { const url = getElement("loc", el) // Create entry for location and add it to the list of links const links = [resolve(new URL(url.textContent!), base)] sitemap.set(`${links[0]}`, links) // Attach alternate links to current entry for (const link of getElements("[rel=alternate]", el)) { const href = link.getAttribute("href") if (href != null) links.push(resolve(new URL(href), base)) } } // Return sitemap return sitemap } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Fetch the sitemap for the given base URL * * If a network or parsing error occurs, we just default to an empty sitemap, * which means the caller should fall back to regular navigation. * * @param base - Base URL * * @returns Sitemap observable */ export function fetchSitemap(base: URL | string): Observable { return requestXML(new URL("sitemap.xml", base)) .pipe( map(document => extract(document, new URL(base))), catchError(() => of(new Map())), ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/version/000077500000000000000000000000001475306445600274375ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/version/.eslintrc000066400000000000000000000000621475306445600312610ustar00rootroot00000000000000{ "rules": { "no-null/no-null": "off" } } mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/version/findurl/000077500000000000000000000000001475306445600311025ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/version/findurl/index.ts000066400000000000000000000100001475306445600325500ustar00rootroot00000000000000import { Sitemap } from "../../sitemap" /** See docstring for `selectedVersionCorrespondingURL` for the meaning of these fields. */ type CorrespondingURLParams = { selectedVersionSitemap: Sitemap selectedVersionBaseURL: URL currentLocation: URL currentBaseURL: string } /** * Choose a URL to navigate to when the user chooses a version in the version * selector. * * The parameters in `params` are named as follows, in order to make it clearer * which parameter means what when invoking the function: * * - selectedVersionSitemap: Sitemap - as obtained by fetchSitemap from `${selectedVersionBaseURL}/sitemap.xml` * * - selectedVersionBaseURL: URL - usually `${currentBaseURL}/../selectedVersion` * * - currentLocation: URL - current web browser location * * - currentBaseURL: string - as obtained from `config.base` * * @param params - arguments with the meanings explained above. * @returns the URL to navigate to or null if we can't be sure that the * corresponding page to the current page exists in the selected version */ export function selectedVersionCorrespondingURL( params: CorrespondingURLParams ): URL | undefined { const {selectedVersionSitemap, selectedVersionBaseURL, currentLocation, currentBaseURL} = params const current_path = safeURLParse(currentBaseURL)?.pathname if (current_path === undefined) { return } const currentRelativePath = stripPrefix(currentLocation.pathname, current_path) if (currentRelativePath === undefined) { return } const sitemapCommonPrefix = shortestCommonPrefix(selectedVersionSitemap.keys()) if (!selectedVersionSitemap.has(sitemapCommonPrefix)) { // We could also check that `commonSitemapPrefix` ends in the canonical version, // similarly to https://github.com/squidfunk/mkdocs-material/pull/7227. However, // I don't believe that Mike/MkDocs ever generate sitemaps where it would matter return } const potentialSitemapURL = safeURLParse(currentRelativePath, sitemapCommonPrefix) if (!potentialSitemapURL || !selectedVersionSitemap.has(potentialSitemapURL.href)) { return } const result = safeURLParse(currentRelativePath, selectedVersionBaseURL) if (!result) { return } result.hash = currentLocation.hash result.search = currentLocation.search return result } /** * A version of `new URL` that never throws. A polyfill for URL.parse() which is * not yet ubuquitous. * * @param url - passed to `new URL` constructor * @param base - passed to `new URL` constructor * * @returns `new URL(url, base)` or undefined if the URL is invalid. */ function safeURLParse(url: string|URL, base?: string|URL): URL | undefined { try { return new URL(url, base) } catch { return } } // Basic string manipulation /** Strip a given prefix from a function * * @param s - string * @param prefix - prefix to strip * * @returns either the string with the prefix stripped or undefined if the * string did not begin with the prefix. */ export function stripPrefix(s: string, prefix: string): string | undefined { if (s.startsWith(prefix)) { return s.slice(prefix.length) } return undefined } /** Find the length of the longest common prefix of two strings * * @param s1 - first string * @param s2 - second string * * @returns - the length of the longest common prefix of the two strings. */ function commonPrefixLen(s1: string, s2: string): number { const max = Math.min(s1.length, s2.length) let result for (result = 0; result < max; ++result) { if (s1[result] !== s2[result]) { break } } return result } /** Find the longest common prefix of any number of strings * * @param strs - an iterable of strings * * @returns the longest common prefix of all the strings */ export function shortestCommonPrefix(strs: Iterable): string { let result // Undefined if no iterations happened for (const s of strs) { if (result === undefined) { result = s } else { result = result.slice(0, commonPrefixLen(result, s)) } } return result ?? "" } mkdocs-material-9.6.4/src/templates/assets/javascripts/integrations/version/index.ts000066400000000000000000000145121475306445600311210ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { EMPTY, Subject, catchError, combineLatest, filter, fromEvent, map, of, switchMap, withLatestFrom } from "rxjs" import { configuration } from "~/_" import { getElement, getLocation, requestJSON, setLocation } from "~/browser" import { getComponentElements } from "~/components" import { Version, renderVersionSelector } from "~/templates" import { fetchSitemap } from "../sitemap" import { selectedVersionCorrespondingURL } from "./findurl" /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Setup options */ interface SetupOptions { document$: Subject /* Document subject */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Set up version selector * * @param options - Options */ export function setupVersionSelector( { document$ }: SetupOptions ): void { const config = configuration() const versions$ = requestJSON( new URL("../versions.json", config.base) ) .pipe( catchError(() => EMPTY) // @todo refactor instant loading ) /* Determine current version */ const current$ = versions$ .pipe( map(versions => { const [, current] = config.base.match(/([^/]+)\/?$/)! return versions.find(({ version, aliases }) => ( version === current || aliases.includes(current) )) || versions[0] }) ) /* Intercept inter-version navigation */ versions$ .pipe( map(versions => new Map(versions.map(version => [ `${new URL(`../${version.version}/`, config.base)}`, version ]))), switchMap(urls => fromEvent(document.body, "click") .pipe( filter(ev => !ev.metaKey && !ev.ctrlKey), withLatestFrom(current$), switchMap(([ev, current]) => { if (ev.target instanceof Element) { const el = ev.target.closest("a") if (el && !el.target && urls.has(el.href)) { const url = el.href // This is a temporary hack to detect if a version inside the // version selector or on another part of the site was clicked. // If we're inside the version selector, we definitely want to // find the same page, as we might have different deployments // due to aliases. However, if we're outside the version // selector, we must abort here, because we might otherwise // interfere with instant navigation. We need to refactor this // at some point together with instant navigation. // // See https://github.com/squidfunk/mkdocs-material/issues/4012 if (!ev.target.closest(".md-version")) { const version = urls.get(url)! if (version === current) return EMPTY } ev.preventDefault() return of(new URL(url)) } } return EMPTY }), switchMap(selectedVersionBaseURL => { return fetchSitemap(selectedVersionBaseURL).pipe( map( sitemap => selectedVersionCorrespondingURL({ selectedVersionSitemap: sitemap, selectedVersionBaseURL, currentLocation: getLocation(), currentBaseURL: config.base }) ?? selectedVersionBaseURL, ), ) }) ) ) ) .subscribe(url => setLocation(url, true)) /* Render version selector and warning */ combineLatest([versions$, current$]) .subscribe(([versions, current]) => { const topic = getElement(".md-header__topic") topic.appendChild(renderVersionSelector(versions, current)) }) /* Integrate outdated version banner with instant navigation */ document$.pipe(switchMap(() => current$)) .subscribe(current => { // Always scope outdate version banner to the base URL of the site const base = new URL(config.base) /* Check if version state was already determined */ let outdated = __md_get("__outdated", sessionStorage, base) if (outdated === null) { outdated = true /* Obtain and normalize default versions */ let ignored = config.version?.default || "latest" if (!Array.isArray(ignored)) ignored = [ignored] /* Check if version is considered a default */ main: for (const ignore of ignored) for (const version of current.aliases.concat(current.version)) if (new RegExp(ignore, "i").test(version)) { outdated = false break main } /* Persist version state in session storage */ __md_set("__outdated", outdated, sessionStorage, base) } /* Unhide outdated version banner */ if (outdated) for (const warning of getComponentElements("outdated")) warning.hidden = false }) } mkdocs-material-9.6.4/src/templates/assets/javascripts/patches/000077500000000000000000000000001475306445600246735ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/patches/ellipsis/000077500000000000000000000000001475306445600265175ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/patches/ellipsis/index.ts000066400000000000000000000067451475306445600302120ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { EMPTY, Observable, filter, finalize, map, mergeMap, skip, switchMap, take, takeUntil } from "rxjs" import { feature } from "~/_" import { Viewport, getElements, watchElementVisibility } from "~/browser" import { mountInlineTooltip2 } from "~/components/tooltip2" /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Patch options */ interface PatchOptions { document$: Observable /* Document observable */ viewport$: Observable /* Viewport observable */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Patch ellipsis * * This function will fetch all elements that are shortened with ellipsis, and * filter those which are visible. Once they become visible, they stay in that * state, even though they may be hidden again. This optimization is necessary * to reduce pressure on the browser, with elements fading in and out of view. * * @param options - Options */ export function patchEllipsis( { document$, viewport$ }: PatchOptions ): void { document$ .pipe( switchMap(() => getElements(".md-ellipsis")), mergeMap(el => watchElementVisibility(el) .pipe( takeUntil(document$.pipe(skip(1))), filter(visible => visible), map(() => el), take(1) ) ), filter(el => el.offsetWidth < el.scrollWidth), mergeMap(el => { const text = el.innerText const host = el.closest("a") || el host.title = text // Do not mount improved tooltip if feature is disabled if (!feature("content.tooltips")) return EMPTY /* Mount tooltip */ return mountInlineTooltip2(host, { viewport$ }) .pipe( takeUntil(document$.pipe(skip(1))), finalize(() => host.removeAttribute("title")) ) }) ) .subscribe() // @todo move this outside of here and fix memleaks if (feature("content.tooltips")) document$ .pipe( switchMap(() => getElements(".md-status")), mergeMap(el => mountInlineTooltip2(el, { viewport$ })) ) .subscribe() } mkdocs-material-9.6.4/src/templates/assets/javascripts/patches/indeterminate/000077500000000000000000000000001475306445600275235ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/patches/indeterminate/index.ts000066400000000000000000000052671475306445600312140ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, fromEvent, map, mergeMap, switchMap, takeWhile, tap, withLatestFrom } from "rxjs" import { getElements } from "~/browser" /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Patch options */ interface PatchOptions { document$: Observable /* Document observable */ tablet$: Observable /* Media tablet observable */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Patch indeterminate checkboxes * * This function replaces the indeterminate "pseudo state" with the actual * indeterminate state, which is used to keep navigation always expanded. * * @param options - Options */ export function patchIndeterminate( { document$, tablet$ }: PatchOptions ): void { document$ .pipe( switchMap(() => getElements( ".md-toggle--indeterminate" )), tap(el => { el.indeterminate = true el.checked = false }), mergeMap(el => fromEvent(el, "change") .pipe( takeWhile(() => el.classList.contains("md-toggle--indeterminate")), map(() => el) ) ), withLatestFrom(tablet$) ) .subscribe(([el, tablet]) => { el.classList.remove("md-toggle--indeterminate") if (tablet) el.checked = false }) } mkdocs-material-9.6.4/src/templates/assets/javascripts/patches/index.ts000066400000000000000000000023671475306445600263620ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ export * from "./ellipsis" export * from "./indeterminate" export * from "./scrollfix" export * from "./scrolllock" mkdocs-material-9.6.4/src/templates/assets/javascripts/patches/scrollfix/000077500000000000000000000000001475306445600267005ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/patches/scrollfix/index.ts000066400000000000000000000061161475306445600303630ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, filter, fromEvent, map, mergeMap, switchMap, tap } from "rxjs" import { getElements } from "~/browser" /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Patch options */ interface PatchOptions { document$: Observable /* Document observable */ } /* ---------------------------------------------------------------------------- * Helper functions * ------------------------------------------------------------------------- */ /** * Check whether the given device is an Apple device * * @returns Test result */ function isAppleDevice(): boolean { return /(iPad|iPhone|iPod)/.test(navigator.userAgent) } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Patch all elements with `data-md-scrollfix` attributes * * This is a year-old patch which ensures that overflow scrolling works at the * top and bottom of containers on iOS by ensuring a `1px` scroll offset upon * the start of a touch event. * * @see https://bit.ly/2SCtAOO - Original source * * @param options - Options */ export function patchScrollfix( { document$ }: PatchOptions ): void { document$ .pipe( switchMap(() => getElements("[data-md-scrollfix]")), tap(el => el.removeAttribute("data-md-scrollfix")), filter(isAppleDevice), mergeMap(el => fromEvent(el, "touchstart") .pipe( map(() => el) ) ) ) .subscribe(el => { const top = el.scrollTop /* We're at the top of the container */ if (top === 0) { el.scrollTop = 1 /* We're at the bottom of the container */ } else if (top + el.offsetHeight === el.scrollHeight) { el.scrollTop = top - 1 } }) } mkdocs-material-9.6.4/src/templates/assets/javascripts/patches/scrolllock/000077500000000000000000000000001475306445600270425ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/patches/scrolllock/index.ts000066400000000000000000000057061475306445600305310ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, combineLatest, delay, map, of, switchMap, withLatestFrom } from "rxjs" import { Viewport, watchToggle } from "~/browser" /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Patch options */ interface PatchOptions { viewport$: Observable /* Viewport observable */ tablet$: Observable /* Media tablet observable */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Patch the document body to lock when search is open * * For mobile and tablet viewports, the search is rendered full screen, which * leads to scroll leaking when at the top or bottom of the search result. This * function locks the body when the search is in full screen mode, and restores * the scroll position when leaving. * * @param options - Options */ export function patchScrolllock( { viewport$, tablet$ }: PatchOptions ): void { combineLatest([watchToggle("search"), tablet$]) .pipe( map(([active, tablet]) => active && !tablet), switchMap(active => of(active) .pipe( delay(active ? 400 : 100) ) ), withLatestFrom(viewport$) ) .subscribe(([active, { offset: { y }}]) => { if (active) { document.body.setAttribute("data-md-scrolllock", "") document.body.style.top = `-${y}px` } else { const value = -1 * parseInt(document.body.style.top, 10) document.body.removeAttribute("data-md-scrolllock") document.body.style.top = "" if (value) window.scrollTo(0, value) } }) } mkdocs-material-9.6.4/src/templates/assets/javascripts/polyfills/000077500000000000000000000000001475306445600252615ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/polyfills/index.ts000066400000000000000000000063331475306445600267450ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ /* ---------------------------------------------------------------------------- * Polyfills * ------------------------------------------------------------------------- */ /* Polyfill `Object.entries` */ if (!Object.entries) Object.entries = function (obj: object) { const data: [string, string][] = [] for (const key of Object.keys(obj)) // @ts-expect-error - ignore property access warning data.push([key, obj[key]]) /* Return entries */ return data } /* Polyfill `Object.values` */ if (!Object.values) Object.values = function (obj: object) { const data: string[] = [] for (const key of Object.keys(obj)) // @ts-expect-error - ignore property access warning data.push(obj[key]) /* Return values */ return data } /* ------------------------------------------------------------------------- */ /* Polyfills for `Element` */ if (typeof Element !== "undefined") { /* Polyfill `Element.scrollTo` */ if (!Element.prototype.scrollTo) Element.prototype.scrollTo = function ( x?: ScrollToOptions | number, y?: number ): void { if (typeof x === "object") { this.scrollLeft = x.left! this.scrollTop = x.top! } else { this.scrollLeft = x! this.scrollTop = y! } } /* Polyfill `Element.replaceWith` */ if (!Element.prototype.replaceWith) Element.prototype.replaceWith = function ( ...nodes: Array ): void { const parent = this.parentNode if (parent) { if (nodes.length === 0) parent.removeChild(this) /* Replace children and create text nodes */ for (let i = nodes.length - 1; i >= 0; i--) { let node = nodes[i] if (typeof node === "string") node = document.createTextNode(node) else if (node.parentNode) node.parentNode.removeChild(node) /* Replace child or insert before previous sibling */ if (!i) parent.replaceChild(node, this) else parent.insertBefore(this.previousSibling!, node) } } } } mkdocs-material-9.6.4/src/templates/assets/javascripts/templates/000077500000000000000000000000001475306445600252425ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/templates/annotation/000077500000000000000000000000001475306445600274145ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/templates/annotation/index.tsx000066400000000000000000000044151475306445600312670ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { h } from "~/utilities" import { renderTooltip } from "../tooltip" /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Render an annotation * * @param id - Annotation identifier * @param prefix - Tooltip identifier prefix * * @returns Element */ export function renderAnnotation( id: string | number, prefix?: string ): HTMLElement { prefix = prefix ? `${prefix}_annotation_${id}` : undefined /* Render tooltip with anchor, if given */ if (prefix) { const anchor = prefix ? `#${prefix}` : undefined return ( ) } else { return ( ) } } mkdocs-material-9.6.4/src/templates/assets/javascripts/templates/clipboard/000077500000000000000000000000001475306445600272015ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/templates/clipboard/index.tsx000066400000000000000000000033101475306445600310450ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { translation } from "~/_" import { h } from "~/utilities" /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Render a 'copy-to-clipboard' button * * @param id - Unique identifier * * @returns Element */ export function renderClipboardButton(id: string): HTMLElement { return ( ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/templates/index.ts000066400000000000000000000025231475306445600267230ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ export * from "./annotation" export * from "./clipboard" export * from "./search" export * from "./source" export * from "./tabbed" export * from "./table" export * from "./tooltip" export * from "./version" mkdocs-material-9.6.4/src/templates/assets/javascripts/templates/search/000077500000000000000000000000001475306445600265075ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/templates/search/index.tsx000066400000000000000000000130121475306445600303530ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import escapeHTML from "escape-html" import { ComponentChild } from "preact" import { configuration, feature, translation } from "~/_" import { SearchItem } from "~/integrations/search" import { h } from "~/utilities" /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Render flag */ const enum Flag { TEASER = 1, /* Render teaser */ PARENT = 2 /* Render as parent */ } /* ---------------------------------------------------------------------------- * Helper function * ------------------------------------------------------------------------- */ /** * Render a search document * * @param document - Search document * @param flag - Render flags * * @returns Element */ function renderSearchDocument( document: SearchItem, flag: Flag ): HTMLElement { const parent = flag & Flag.PARENT const teaser = flag & Flag.TEASER /* Render missing query terms */ const missing = Object.keys(document.terms) .filter(key => !document.terms[key]) .reduce((list, key) => [ ...list, {escapeHTML(key)}, " " ], []) .slice(0, -1) /* Assemble query string for highlighting */ const config = configuration() const url = new URL(document.location, config.base) if (feature("search.highlight")) url.searchParams.set("h", Object.entries(document.terms) .filter(([, match]) => match) .reduce((highlight, [value]) => `${highlight} ${value}`.trim(), "") ) /* Render article or section, depending on flags */ const { tags } = configuration() return (
    {parent > 0 &&
    } {parent > 0 &&

    {document.title}

    } {parent <= 0 &&

    {document.title}

    } {teaser > 0 && document.text.length > 0 && document.text } {document.tags && ( )} {teaser > 0 && missing.length > 0 &&

    {translation("search.result.term.missing")}: {...missing}

    }
    ) } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Render a search result * * @param result - Search result * * @returns Element */ export function renderSearchResultItem( result: SearchItem[] ): HTMLElement { const threshold = result[0].score const docs = [...result] const config = configuration() /* Find and extract parent article */ const parent = docs.findIndex(doc => { const l = `${new URL(doc.location, config.base)}` // @todo hacky return !l.includes("#") }) const [article] = docs.splice(parent, 1) /* Determine last index above threshold */ let index = docs.findIndex(doc => doc.score < threshold) if (index === -1) index = docs.length /* Partition sections */ const best = docs.slice(0, index) const more = docs.slice(index) /* Render children */ const children = [ renderSearchDocument(article, Flag.PARENT | +(!parent && index === 0)), ...best.map(section => renderSearchDocument(section, Flag.TEASER)), ...more.length ? [
    {more.length > 0 && more.length === 1 ? translation("search.result.more.one") : translation("search.result.more.other", more.length) }
    {...more.map(section => renderSearchDocument(section, Flag.TEASER))}
    ] : [] ] /* Render search result */ return (
  • {children}
  • ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/templates/source/000077500000000000000000000000001475306445600265425ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/templates/source/index.tsx000066400000000000000000000034571475306445600304220ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { SourceFacts } from "~/components" import { h, round } from "~/utilities" /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Render repository facts * * @param facts - Repository facts * * @returns Element */ export function renderSourceFacts(facts: SourceFacts): HTMLElement { return (
      {Object.entries(facts).map(([key, value]) => (
    • {typeof value === "number" ? round(value) : value}
    • ))}
    ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/templates/tabbed/000077500000000000000000000000001475306445600264635ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/templates/tabbed/index.tsx000066400000000000000000000037141475306445600303370ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { h } from "~/utilities" /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Tabbed control type */ type TabbedControlType = | "prev" | "next" /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Render control for content tabs * * @param type - Control type * * @returns Element */ export function renderTabbedControl( type: TabbedControlType ): HTMLElement { const classes = `tabbed-control tabbed-control--${type}` return ( ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/templates/table/000077500000000000000000000000001475306445600263315ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/templates/table/index.tsx000066400000000000000000000032351475306445600302030ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { h } from "~/utilities" /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Render a table inside a wrapper to improve scrolling on mobile * * @param table - Table element * * @returns Element */ export function renderTable(table: HTMLElement): HTMLElement { return (
    {table}
    ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/templates/tooltip/000077500000000000000000000000001475306445600267345ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/templates/tooltip/index.tsx000066400000000000000000000046641475306445600306150ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { ComponentChild } from "preact" import { h } from "~/utilities" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Tooltip style */ export type TooltipStyle = | "inline" /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Render a tooltip * * @param id - Tooltip identifier * @param style - Tooltip style * * @returns Element */ export function renderTooltip( id?: string, style?: TooltipStyle ): HTMLElement { if (style === "inline") { // @todo refactor control flow return ( ) } else { return ( ) } } // @todo: rename export function renderInlineTooltip2( ...children: ComponentChild[] ): HTMLElement { return ( ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/templates/version/000077500000000000000000000000001475306445600267275ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/templates/version/index.tsx000066400000000000000000000070031475306445600305760ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { configuration, translation } from "~/_" import { h } from "~/utilities" /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ /** * Version properties */ export interface VersionProperties { hidden?: boolean /* Version is hidden */ } /** * Version */ export interface Version { version: string /* Version identifier */ title: string /* Version title */ aliases: string[] /* Version aliases */ properties?: VersionProperties /* Version properties */ } /* ---------------------------------------------------------------------------- * Helper functions * ------------------------------------------------------------------------- */ /** * Render a version * * @param version - Version * * @returns Element */ function renderVersion(version: Version): HTMLElement { const config = configuration() /* Ensure trailing slash - see https://bit.ly/3rL5u3f */ const url = new URL(`../${version.version}/`, config.base) return (
  • {version.title} {config.version?.alias && version.aliases.length > 0 && ( {version.aliases[0]} )}
  • ) } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Render a version selector * * @param versions - Versions * @param active - Active version * * @returns Element */ export function renderVersionSelector( versions: Version[], active: Version ): HTMLElement { const config = configuration() versions = versions.filter(version => !version.properties?.hidden) return (
      {versions.map(renderVersion)}
    ) } mkdocs-material-9.6.4/src/templates/assets/javascripts/utilities/000077500000000000000000000000001475306445600252575ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/utilities/h/000077500000000000000000000000001475306445600255065ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/utilities/h/.eslintrc000066400000000000000000000002251475306445600273310ustar00rootroot00000000000000{ "rules": { "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/no-namespace": "off", "jsdoc/require-jsdoc": "off" } } mkdocs-material-9.6.4/src/templates/assets/javascripts/utilities/h/index.ts000066400000000000000000000075321475306445600271740ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { JSX as JSXInternal } from "preact" /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * HTML attributes */ type Attributes = & JSXInternal.HTMLAttributes & JSXInternal.SVGAttributes & Record /** * Child element */ type Child = | ChildNode | HTMLElement | Text | string | number /* ---------------------------------------------------------------------------- * Helper functions * ------------------------------------------------------------------------- */ /** * Append a child node to an element * * @param el - Element * @param child - Child node(s) */ function appendChild(el: HTMLElement, child: Child | Child[]): void { /* Handle primitive types (including raw HTML) */ if (typeof child === "string" || typeof child === "number") { el.innerHTML += child.toString() /* Handle nodes */ } else if (child instanceof Node) { el.appendChild(child) /* Handle nested children */ } else if (Array.isArray(child)) { for (const node of child) appendChild(el, node) } } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * JSX factory * * @template T - Element type * * @param tag - HTML tag * @param attributes - HTML attributes * @param children - Child elements * * @returns Element */ export function h( tag: T, attributes?: Attributes | null, ...children: Child[] ): HTMLElementTagNameMap[T] export function h( tag: string, attributes?: Attributes | null, ...children: Child[] ): T export function h( tag: string, attributes?: Attributes | null, ...children: Child[] ): T { const el = document.createElement(tag) /* Set attributes, if any */ if (attributes) for (const attr of Object.keys(attributes)) { if (typeof attributes[attr] === "undefined") continue /* Set default attribute or boolean */ if (typeof attributes[attr] !== "boolean") el.setAttribute(attr, attributes[attr]) else el.setAttribute(attr, "") } /* Append child nodes */ for (const child of children) appendChild(el, child) /* Return element */ return el as T } /* ---------------------------------------------------------------------------- * Namespace * ------------------------------------------------------------------------- */ export declare namespace h { namespace JSX { type Element = HTMLElement type IntrinsicElements = JSXInternal.IntrinsicElements } } mkdocs-material-9.6.4/src/templates/assets/javascripts/utilities/index.ts000066400000000000000000000022571475306445600267440ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ export * from "./h" export * from "./round" mkdocs-material-9.6.4/src/templates/assets/javascripts/utilities/round/000077500000000000000000000000001475306445600264065ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/utilities/round/index.ts000066400000000000000000000037101475306445600300660ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Round a number for display with repository facts * * This is a reverse-engineered version of GitHub's weird rounding algorithm * for stars, forks and all other numbers. While all numbers below `1,000` are * returned as-is, bigger numbers are converted to fixed numbers: * * - `1,049` => `1k` * - `1,050` => `1.1k` * - `1,949` => `1.9k` * - `1,950` => `2k` * * @param value - Original value * * @returns Rounded value */ export function round(value: number): string { if (value > 999) { const digits = +((value - 950) % 1000 > 99) return `${((value + 0.000001) / 1000).toFixed(digits)}k` } else { return value.toString() } } mkdocs-material-9.6.4/src/templates/assets/javascripts/workers/000077500000000000000000000000001475306445600247405ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/javascripts/workers/search.ts000066400000000000000000000022541475306445600265600ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A RTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import "~/integrations/search/worker/main" mkdocs-material-9.6.4/src/templates/assets/stylesheets/000077500000000000000000000000001475306445600232675ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/stylesheets/_config.scss000066400000000000000000000033331475306445600255720ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Variables: breakpoints // ---------------------------------------------------------------------------- // Device-specific breakpoints $break-devices: ( mobile: ( portrait: px2em(220px) px2em(479.75px), landscape: px2em(480px) px2em(719.75px) ), tablet: ( portrait: px2em(720px) px2em(959.75px), landscape: px2em(960px) px2em(1219.75px) ), screen: ( small: px2em(1220px) px2em(1599.75px), medium: px2em(1600px) px2em(1999.75px), large: px2em(2000px) ) ); mkdocs-material-9.6.4/src/templates/assets/stylesheets/main.scss000066400000000000000000000063611475306445600251160ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Dependencies // ---------------------------------------------------------------------------- @import "material-color"; @import "material-shadows"; // ---------------------------------------------------------------------------- // Local imports // ---------------------------------------------------------------------------- @import "utilities/break"; @import "utilities/convert"; @import "config"; @import "main/resets"; @import "main/colors"; @import "main/icons"; @import "main/typeset"; @import "main/components/author"; @import "main/components/banner"; @import "main/components/base"; @import "main/components/clipboard"; @import "main/components/code"; @import "main/components/consent"; @import "main/components/content"; @import "main/components/dialog"; @import "main/components/feedback"; @import "main/components/footer"; @import "main/components/form"; @import "main/components/header"; @import "main/components/meta"; @import "main/components/nav"; @import "main/components/pagination"; @import "main/components/post"; @import "main/components/progress"; @import "main/components/search"; @import "main/components/select"; @import "main/components/sidebar"; @import "main/components/source"; @import "main/components/status"; @import "main/components/tabs"; @import "main/components/tag"; @import "main/components/tooltip"; @import "main/components/tooltip2"; @import "main/components/top"; @import "main/components/version"; @import "main/extensions/markdown/admonition"; @import "main/extensions/markdown/footnotes"; @import "main/extensions/markdown/toc"; @import "main/extensions/pymdownx/arithmatex"; @import "main/extensions/pymdownx/critic"; @import "main/extensions/pymdownx/details"; @import "main/extensions/pymdownx/emoji"; @import "main/extensions/pymdownx/highlight"; @import "main/extensions/pymdownx/keys"; @import "main/extensions/pymdownx/tabbed"; @import "main/extensions/pymdownx/tasklist"; @import "main/integrations/giscus"; @import "main/integrations/mermaid"; @import "main/modifiers/grid"; @import "main/modifiers/inline"; mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/000077500000000000000000000000001475306445600242135ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/_colors.scss000066400000000000000000000146231475306445600265560ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Color variables :root { @extend %root; // Primary color shades --md-primary-fg-color: hsla(#{hex2hsl($clr-indigo-500)}, 1); --md-primary-fg-color--light: hsla(#{hex2hsl($clr-indigo-400)}, 1); --md-primary-fg-color--dark: hsla(#{hex2hsl($clr-indigo-700)}, 1); --md-primary-bg-color: hsla(0, 0%, 100%, 1); --md-primary-bg-color--light: hsla(0, 0%, 100%, 0.7); // Accent color shades --md-accent-fg-color: hsla(#{hex2hsl($clr-indigo-a200)}, 1); --md-accent-fg-color--transparent: hsla(#{hex2hsl($clr-indigo-a200)}, 0.1); --md-accent-bg-color: hsla(0, 0%, 100%, 1); --md-accent-bg-color--light: hsla(0, 0%, 100%, 0.7); } // ---------------------------------------------------------------------------- // Allow to explicitly use color schemes in nested content [data-md-color-scheme="default"] { @extend %root; // Indicate that the site is rendered with a light color scheme color-scheme: light; // Hide images for dark mode img[src$="#only-dark"], img[src$="#gh-dark-mode-only"] { display: none; } } // ---------------------------------------------------------------------------- // Placeholders // ---------------------------------------------------------------------------- // Default theme, i.e. light mode %root { // Color hue in the range [0,360] - change this variable to alter the tone // of the theme, e.g. to make it more redish or greenish --md-hue: 225deg; // Default color shades --md-default-fg-color: hsla(0, 0%, 0%, 0.87); --md-default-fg-color--light: hsla(0, 0%, 0%, 0.54); --md-default-fg-color--lighter: hsla(0, 0%, 0%, 0.32); --md-default-fg-color--lightest: hsla(0, 0%, 0%, 0.07); --md-default-bg-color: hsla(0, 0%, 100%, 1); --md-default-bg-color--light: hsla(0, 0%, 100%, 0.7); --md-default-bg-color--lighter: hsla(0, 0%, 100%, 0.3); --md-default-bg-color--lightest: hsla(0, 0%, 100%, 0.12); // Code color shades --md-code-fg-color: hsla(200, 18%, 26%, 1); --md-code-bg-color: hsla(200, 0%, 96%, 1); // Code highlighting color shades --md-code-hl-color: hsla(#{hex2hsl($clr-blue-a200)}, 1); --md-code-hl-color--light: hsla(#{hex2hsl($clr-blue-a200)}, 0.1); // Code highlighting syntax color shades --md-code-hl-number-color: hsla(0, 67%, 50%, 1); --md-code-hl-special-color: hsla(340, 83%, 47%, 1); --md-code-hl-function-color: hsla(291, 45%, 50%, 1); --md-code-hl-constant-color: hsla(250, 63%, 60%, 1); --md-code-hl-keyword-color: hsla(219, 54%, 51%, 1); --md-code-hl-string-color: hsla(150, 63%, 30%, 1); --md-code-hl-name-color: var(--md-code-fg-color); --md-code-hl-operator-color: var(--md-default-fg-color--light); --md-code-hl-punctuation-color: var(--md-default-fg-color--light); --md-code-hl-comment-color: var(--md-default-fg-color--light); --md-code-hl-generic-color: var(--md-default-fg-color--light); --md-code-hl-variable-color: var(--md-default-fg-color--light); // Typeset color shades --md-typeset-color: var(--md-default-fg-color); // Typeset `a` color shades --md-typeset-a-color: var(--md-primary-fg-color); // Typeset `del` and `ins` color shades --md-typeset-del-color: hsla(6, 90%, 60%, 0.15); --md-typeset-ins-color: hsla(150, 90%, 44%, 0.15); // Typeset `kbd` color shades --md-typeset-kbd-color: hsla(0, 0%, 98%, 1); --md-typeset-kbd-accent-color: hsla(0, 100%, 100%, 1); --md-typeset-kbd-border-color: hsla(0, 0%, 72%, 1); // Typeset `mark` color shades --md-typeset-mark-color: hsla(#{hex2hsl($clr-yellow-a200)}, 0.5); // Typeset `table` color shades --md-typeset-table-color: hsla(0, 0%, 0%, 0.12); --md-typeset-table-color--light: hsla(0, 0%, 0%, 0.035); // Admonition color shades --md-admonition-fg-color: var(--md-default-fg-color); --md-admonition-bg-color: var(--md-default-bg-color); // Warning color shades --md-warning-fg-color: hsla(0, 0%, 0%, 0.87); --md-warning-bg-color: hsla(60, 100%, 80%, 1); // Footer color shades --md-footer-fg-color: hsla(0, 0%, 100%, 1); --md-footer-fg-color--light: hsla(0, 0%, 100%, 0.7); --md-footer-fg-color--lighter: hsla(0, 0%, 100%, 0.45); --md-footer-bg-color: hsla(0, 0%, 0%, 0.87); --md-footer-bg-color--dark: hsla(0, 0%, 0%, 0.32); // Shadow depth 1 --md-shadow-z1: 0 #{px2rem(4px)} #{px2rem(10px)} hsla(0, 0%, 0%, 0.05), 0 0 #{px2rem(1px)} hsla(0, 0%, 0%, 0.1); // Shadow depth 2 --md-shadow-z2: 0 #{px2rem(4px)} #{px2rem(10px)} hsla(0, 0%, 0%, 0.1), 0 0 #{px2rem(1px)} hsla(0, 0%, 0%, 0.25); // Shadow depth 3 --md-shadow-z3: 0 #{px2rem(4px)} #{px2rem(10px)} hsla(0, 0%, 0%, 0.2), 0 0 #{px2rem(1px)} hsla(0, 0%, 0%, 0.35); } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/_icons.scss000066400000000000000000000027051475306445600263660ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Icon .md-icon { // SVG defaults svg { display: block; width: px2rem(24px); height: px2rem(24px); fill: currentcolor; } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/_resets.scss000066400000000000000000000053021475306445600265540ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Enforce correct box model and prevent adjustments of font size after // orientation changes in IE and iOS html { box-sizing: border-box; text-size-adjust: none; } // All elements shall inherit the document default *, *::before, *::after { box-sizing: inherit; // [reduced motion]: Disable all transitions @media (prefers-reduced-motion) { transition: none !important; // stylelint-disable-line } } // Remove margin in all browsers body { margin: 0; } // Reset tap outlines on iOS and Android a, button, label, input { -webkit-tap-highlight-color: transparent; } // Reset link styles a { color: inherit; text-decoration: none; } // Normalize horizontal separator styles hr { box-sizing: content-box; display: block; height: px2rem(1px); padding: 0; overflow: visible; border: 0; } // Normalize font-size in all browsers small { font-size: 80%; } // Prevent subscript and superscript from affecting line-height sub, sup { line-height: 1em; } // Remove border on image img { border-style: none; } // Reset table styles table { border-spacing: 0; border-collapse: separate; } // Reset table cell styles td, th { font-weight: 400; vertical-align: top; } // Reset button styles button { padding: 0; margin: 0; font-family: inherit; font-size: inherit; background: transparent; border: 0; } // Reset input styles input { border: 0; outline: none; } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/_typeset.scss000066400000000000000000000335251475306445600267540ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules: font definitions // ---------------------------------------------------------------------------- // Enable font-smoothing in Webkit and FF body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; // Font with fallback for body copy --md-text-font-family: var(--md-text-font, _), -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif; // Font with fallback for code --md-code-font-family: var(--md-code-font, _), SFMono-Regular, Consolas, Menlo, monospace; } // Define default fonts body, input, aside { font-family: var(--md-text-font-family); font-feature-settings: "kern", "liga"; color: var(--md-typeset-color); } // Define monospaced fonts code, pre, kbd { font-family: var(--md-code-font-family); font-feature-settings: "kern"; } // ---------------------------------------------------------------------------- // Rules: typesetted content // ---------------------------------------------------------------------------- // General variables :root { --md-typeset-table-sort-icon: svg-load("material/sort.svg"); --md-typeset-table-sort-icon--asc: svg-load("material/sort-ascending.svg"); --md-typeset-table-sort-icon--desc: svg-load("material/sort-descending.svg"); } // ---------------------------------------------------------------------------- // Content that is typeset - if possible, all margins, paddings and font sizes // should be set in ems, so nested blocks (e.g. admonitions) render correctly. .md-typeset { font-size: px2rem(16px); line-height: 1.6; overflow-wrap: break-word; color-adjust: exact; // [print]: We'll use a smaller `font-size` for printing, so code examples // don't break too early, and `16px` looks too big anyway. @media print { font-size: px2rem(13.6px); } // Default spacing ul, ol, dl, figure, blockquote, pre { margin-block: 1em; } // Headline on level 1 h1 { margin: 0 0 px2em(40px, 32px); font-size: px2em(32px); font-weight: 300; line-height: 1.3; color: var(--md-default-fg-color--light); letter-spacing: -0.01em; } // Headline on level 2 h2 { margin: px2em(40px, 25px) 0 px2em(16px, 25px); font-size: px2em(25px); font-weight: 300; line-height: 1.4; letter-spacing: -0.01em; } // Headline on level 3 h3 { margin: px2em(32px, 20px) 0 px2em(16px, 20px); font-size: px2em(20px); font-weight: 400; line-height: 1.5; letter-spacing: -0.01em; } // Headline on level 3 following level 2 h2 + h3 { margin-top: px2em(16px, 20px); } // Headline on level 4 h4 { margin: px2em(16px) 0; font-weight: 700; letter-spacing: -0.01em; } // Headline on level 5-6 h5, h6 { margin: px2em(16px, 12.8px) 0; font-size: px2em(12.8px); font-weight: 700; color: var(--md-default-fg-color--light); letter-spacing: -0.01em; } // Headline on level 5 h5 { text-transform: uppercase; // Don't uppercase code blocks code { text-transform: none; } } // Horizontal separator hr { display: flow-root; margin: 1.5em 0; border-bottom: px2rem(1px) solid var(--md-default-fg-color--lightest); } // Text link a { color: var(--md-typeset-a-color); word-break: break-word; // Also enable color transition on pseudo elements &, &::before { transition: color 125ms; } // Text link on focus/hover &:is(:focus, :hover) { color: var(--md-accent-fg-color); // Inline code block code { background-color: var(--md-accent-fg-color--transparent); } } // Inline code block code { color: currentcolor; transition: background-color 125ms; } // Show outline for keyboard devices &.focus-visible { outline-color: var(--md-accent-fg-color); outline-offset: px2rem(4px); } } // Code block code, pre, kbd { font-variant-ligatures: none; color: var(--md-code-fg-color); direction: ltr; // [print]: Wrap text and hide scollbars @media print { white-space: pre-wrap; } } // Inline code block code { padding: 0 px2em(4px, 13.6px); font-size: px2em(13.6px); word-break: break-word; background-color: var(--md-code-bg-color); border-radius: px2rem(2px); box-decoration-break: clone; // Hide outline for pointer devices &:not(.focus-visible) { outline: none; -webkit-tap-highlight-color: transparent; } } // Unformatted content pre { position: relative; display: flow-root; line-height: 1.4; // Code block > code { display: block; padding: px2em(10.5px, 13.6px) px2em(16px, 13.6px); margin: 0; overflow: auto; word-break: normal; touch-action: auto; scrollbar-color: var(--md-default-fg-color--lighter) transparent; scrollbar-width: thin; outline-color: var(--md-accent-fg-color); box-shadow: none; box-decoration-break: slice; // Code block on hover &:hover { scrollbar-color: var(--md-accent-fg-color) transparent; } // Webkit scrollbar &::-webkit-scrollbar { width: px2rem(4px); height: px2rem(4px); } // Webkit scrollbar thumb &::-webkit-scrollbar-thumb { background-color: var(--md-default-fg-color--lighter); // Webkit scrollbar thumb on hover &:hover { background-color: var(--md-accent-fg-color); } } } } // Keyboard key kbd { display: inline-block; padding: 0 px2em(8px, 12px); font-size: px2em(12px); color: var(--md-default-fg-color); word-break: break-word; vertical-align: text-top; background-color: var(--md-typeset-kbd-color); border-radius: px2rem(2px); box-shadow: 0 px2rem(2px) 0 px2rem(1px) var(--md-typeset-kbd-border-color), 0 px2rem(2px) 0 var(--md-typeset-kbd-border-color), 0 px2rem(-2px) px2rem(4px) var(--md-typeset-kbd-accent-color) inset; } // Text highlighting marker mark { color: inherit; word-break: break-word; background-color: var(--md-typeset-mark-color); box-decoration-break: clone; } // Abbreviation abbr { text-decoration: none; cursor: help; border-bottom: px2rem(1px) dotted var(--md-default-fg-color--light); } // Small text small { opacity: 0.75; } // Superscript and subscript sup, sub { margin-inline-start: px2em(1px, 12.8px); } // Blockquotes, possibly nested blockquote { padding-inline-start: px2rem(12px); margin-inline: 0; color: var(--md-default-fg-color--light); border-inline-start: px2rem(4px) solid var(--md-default-fg-color--lighter); } // Unordered list ul { list-style-type: disc; // Hack: allow to override `list-style-type` via `type`, without breaking // compatibility for explicitly setting it in CSS - see https://t.ly/izJyH &[type] { list-style-type: revert-layer; } } // Unordered and ordered list ul, ol { padding: 0; margin-inline-start: px2em(10px); // Adjust display mode if not hidden &:not([hidden]) { display: flow-root; } // 2nd layer nested ordered list ol { list-style-type: lower-alpha; // 3rd layer nested ordered list ol { list-style-type: lower-roman; // 4th layer nested ordered list ol { list-style-type: upper-alpha; // 5th layer nested ordered list ol { list-style-type: upper-roman; } } } } // Hack: allow to override `list-style-type` via `type`, without breaking // compatibility for explicitly setting it in CSS - see https://t.ly/izJyH &[type] { list-style-type: revert-layer; } // List element li { margin-inline-start: px2em(20px); margin-bottom: 0.5em; // Adjust spacing p, blockquote { margin: 0.5em 0; } // Adjust spacing on last child &:last-child { margin-bottom: 0; } // Nested list :is(ul, ol) { margin-block: 0.5em; margin-inline-start: px2em(10px); } } } // Definition list dd { margin-block: 1em 1.5em; margin-inline-start: px2em(30px); } // Image or video img, svg, video { max-width: 100%; height: auto; } // Image img { // Adjust spacing when left-aligned &[align="left"] { margin: 1em; margin-left: 0; } // Adjust spacing when right-aligned &[align="right"] { margin: 1em; margin-right: 0; } // Adjust spacing when sole children &[align]:only-child { margin-top: 0; } } // Figure figure { display: flow-root; width: fit-content; max-width: 100%; margin: 1em auto; text-align: center; // Figure images img { display: block; margin: 0 auto; } } // Figure caption figcaption { max-width: px2rem(480px); margin: 1em auto; font-style: italic; } // Limit width to container iframe { max-width: 100%; } // Data table table:not([class]) { display: inline-block; max-width: 100%; overflow: auto; font-size: px2rem(12.8px); touch-action: auto; background-color: var(--md-default-bg-color); border: px2rem(1px) solid var(--md-typeset-table-color); border-radius: px2rem(2px); // [print]: Reset display mode so table header wraps when printing @media print { display: table; } // Due to margin collapse because of the necessary inline-block hack, we // cannot increase the bottom margin on the table, so we just increase the // top margin on the following element + * { margin-top: 1.5em; } // Elements in table heading and cell :is(th, td) > * { // Adjust spacing on first child &:first-child { margin-top: 0; } // Adjust spacing on last child &:last-child { margin-bottom: 0; } } // Table heading and cell :is(th, td):not([align]) { text-align: left; // Adjust for right-to-left languages [dir="rtl"] & { text-align: right; } } // Table heading th { min-width: px2rem(100px); padding: px2em(12px, 12.8px) px2em(16px, 12.8px); font-weight: 700; vertical-align: top; } // Table cell td { padding: px2em(12px, 12.8px) px2em(16px, 12.8px); vertical-align: top; border-top: px2rem(1px) solid var(--md-typeset-table-color); } // Table body row tbody tr { transition: background-color 125ms; // Table row on hover &:hover { background-color: var(--md-typeset-table-color--light); box-shadow: 0 px2rem(1px) 0 var(--md-default-bg-color) inset; } } // Text link in table a { word-break: normal; } } // Sortable table table th[role="columnheader"] { cursor: pointer; // Sort icon &::after { display: inline-block; width: 1.2em; height: 1.2em; margin-inline-start: 0.5em; vertical-align: text-bottom; content: ""; mask-image: var(--md-typeset-table-sort-icon); mask-repeat: no-repeat; mask-size: contain; transition: background-color 125ms; } // Show sort icon on hover &:hover::after { background-color: var(--md-default-fg-color--lighter); } // Sort ascending icon &[aria-sort="ascending"]::after { background-color: var(--md-default-fg-color--light); mask-image: var(--md-typeset-table-sort-icon--asc); } // Sort descending icon &[aria-sort="descending"]::after { background-color: var(--md-default-fg-color--light); mask-image: var(--md-typeset-table-sort-icon--desc); } } // Data table scroll wrapper &__scrollwrap { margin: 1em px2rem(-16px); overflow-x: auto; touch-action: auto; } // Data table wrapper &__table { display: inline-block; padding: 0 px2rem(16px); margin-bottom: 0.5em; // [print]: Reset display mode so table header wraps when printing @media print { display: block; } // Data table html & table { display: table; width: 100%; margin: 0; overflow: hidden; } } } // ---------------------------------------------------------------------------- // Rules: top-level // ---------------------------------------------------------------------------- // [mobile -]: Align with body copy @include break-to-device(mobile) { // Top-level unformatted content .md-content__inner > pre { margin: 1em px2rem(-16px); // Code block code { border-radius: 0; } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/000077500000000000000000000000001475306445600264005ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_author.scss000066400000000000000000000051261475306445600307420ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Scoped in typesetted content to match specificity of regular content .md-typeset { // Author, i.e., GitHub user .md-author { position: relative; display: block; flex-shrink: 0; width: px2rem(32px); height: px2rem(32px); overflow: hidden; border-radius: 100%; transition: color 125ms, transform 125ms; // Author image img { display: block; } // More authors &--more { font-size: px2rem(12px); font-weight: 700; line-height: px2rem(32px); color: var(--md-default-fg-color--lighter); text-align: center; background: var(--md-default-fg-color--lightest); } // Enlarge image &--long { width: px2rem(48px); height: px2rem(48px); } } // Author link a.md-author { transform: scale(1); // Author image img { filter: grayscale(100%) opacity(75%); // Hack: also apply this here, in order to mitigate browser glitches in // Chrome and Edge when hovering the avatar - see https://t.ly/Q3ECC border-radius: 100%; transition: filter 125ms; } // Author on focus/hover &:is(:focus, :hover) { z-index: 1; transform: scale(1.1); // Author image img { filter: grayscale(0%); } } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_banner.scss000066400000000000000000000040431475306445600307020ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Banner for announcements and warnings .md-banner { overflow: auto; color: var(--md-footer-fg-color); background-color: var(--md-footer-bg-color); // [print]: Hide banner @media print { display: none; } // Banner with warning &--warning { color: var(--md-warning-fg-color); background-color: var(--md-warning-bg-color); } // Banner wrapper &__inner { padding: 0 px2rem(16px); margin: px2rem(12px) auto; font-size: px2rem(14px); } // Banner button &__button { float: inline-end; color: inherit; cursor: pointer; transition: opacity 250ms; // [no-js]: Hide button .no-js & { display: none; } // Button on hover &:hover { opacity: 0.7; } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_base.scss000066400000000000000000000126221475306445600303510ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules: base grid and containers // ---------------------------------------------------------------------------- // Stretch container to viewport and set base `font-size` html { height: 100%; overflow-x: hidden; // Hack: normally, we would set the base `font-size` to `62.5%`, so we can // base all calculations on `10px`, but Chromium and Chrome define a minimal // `font-size` of `12px` if the system language is set to Chinese. For this // reason we just double the `font-size` and set it to `20px`. // // See https://github.com/squidfunk/mkdocs-material/issues/911 font-size: 125%; // [screen medium +]: Set base `font-size` to `11px` @include break-from-device(screen medium) { font-size: 137.5%; } // [screen large +]: Set base `font-size` to `12px` @include break-from-device(screen large) { font-size: 150%; } } // Stretch body to container - flexbox is used, so the footer will always be // aligned to the bottom of the viewport body { position: relative; display: flex; flex-direction: column; width: 100%; min-height: 100%; // Hack: reset `font-size` to `10px`, so the spacing for all inline elements // is correct again. Otherwise the spacing would be based on `20px`. font-size: px2rem(10px); background-color: var(--md-default-bg-color); // [print]: Omit flexbox layout due to a Firefox bug (https://mzl.la/39DgR3m) @media print { display: block; } // Body in locked state &[data-md-scrolllock] { // [tablet portrait -]: Omit scroll bubbling @include break-to-device(tablet portrait) { position: fixed; } } } // ---------------------------------------------------------------------------- // Grid container - this class is applied to wrapper elements within the // header, content area and footer, and makes sure that their width is limited // to `1220px`, and they are rendered centered if the screen is larger. .md-grid { max-width: px2rem(1220px); margin-inline: auto; } // Main container .md-container { display: flex; flex-grow: 1; flex-direction: column; // [print]: Omit flexbox layout due to a Firefox bug (https://mzl.la/39DgR3m) @media print { display: block; } } // Main area - stretch to remaining space of container .md-main { flex-grow: 1; // Main area wrapper &__inner { display: flex; height: 100%; margin-top: px2rem(24px + 6px); } } // Add ellipsis in case of overflowing text .md-ellipsis { overflow: hidden; text-overflow: ellipsis; } // ---------------------------------------------------------------------------- // Rules: navigational elements // ---------------------------------------------------------------------------- // Toggle - this class is applied to checkbox elements, which are used to // implement the CSS-only drawer and navigation, as well as the search .md-toggle { display: none; } // Option - this class is applied to radio elements, which are used to // implement the color palette toggle .md-option { position: absolute; width: 0; height: 0; opacity: 0; // Option label for checked radio button &:checked + label:not([hidden]) { display: block; } // Show outline for keyboard devices &.focus-visible + label { outline-style: auto; outline-color: var(--md-accent-fg-color); } } // Skip link .md-skip { position: fixed; // Hack: if we don't set the negative `z-index`, the skip link will force the // creation of new layers when code blocks are near the header on scrolling z-index: -1; padding: px2rem(6px) px2rem(10px); margin: px2rem(10px); font-size: px2rem(12.8px); color: var(--md-default-bg-color); background-color: var(--md-default-fg-color); border-radius: px2rem(2px); outline-color: var(--md-accent-fg-color); opacity: 0; transform: translateY(px2rem(8px)); // Show skip link on focus &:focus { z-index: 10; opacity: 1; transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), opacity 175ms 75ms; transform: translateY(0); } } // ---------------------------------------------------------------------------- // Rules: print styles // ---------------------------------------------------------------------------- // Add margins to page @page { margin: 25mm; } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_clipboard.scss000066400000000000000000000057701475306445600314040ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Clipboard button variables :root { --md-clipboard-icon: svg-load("material/content-copy.svg"); } // ---------------------------------------------------------------------------- // Clipboard button .md-clipboard { position: absolute; top: px2em(8px); right: px2em(8px); z-index: 1; width: px2em(24px); height: px2em(24px); color: var(--md-default-fg-color--lightest); cursor: pointer; border-radius: px2rem(2px); outline-color: var(--md-accent-fg-color); outline-offset: px2rem(2px); transition: color 250ms; // [print]: Hide button @media print { display: none; } // Hide outline for pointer devices &:not(.focus-visible) { outline: none; -webkit-tap-highlight-color: transparent; } // Darken color on code block hover :hover > & { color: var(--md-default-fg-color--light); } // Button on focus/hover &:is(:focus, :hover) { color: var(--md-accent-fg-color); } // Button icon - the width and height are defined in `em`, so the size is // automatically adjusted for nested code blocks (e.g. in admonitions) &::after { display: block; width: px2em(18px); height: px2em(18px); margin: 0 auto; content: ""; background-color: currentcolor; mask-image: var(--md-clipboard-icon); mask-repeat: no-repeat; mask-position: center; mask-size: contain; } // Inline clipboard button &--inline { cursor: pointer; // Code block code { transition: color 250ms, background-color 250ms; } // Code block on focus/hover &:is(:focus, :hover) code { color: var(--md-accent-fg-color); background-color: var(--md-accent-fg-color--transparent); } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_code.scss000066400000000000000000000030201475306445600303410ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Code blocks .md-code { // Code block content - when line spans are enabled, we can opt into using // grid-based rendering, which makes highlighted lines stretch. .md-typeset &__content { display: grid; } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_consent.scss000066400000000000000000000061571475306445600311160ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Keyframes // ---------------------------------------------------------------------------- // Show consent @keyframes consent { 0% { opacity: 0; transform: translateY(100%); } 100% { opacity: 1; transform: translateY(0); } } // Show consent overlay @keyframes overlay { 0% { opacity: 0; } 100% { opacity: 1; } } // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Consent .md-consent { // Consent overlay &__overlay { position: fixed; top: 0; z-index: 5; width: 100%; height: 100%; background-color: hsla(0, 0%, 0%, 0.54); backdrop-filter: blur(px2rem(2px)); opacity: 1; animation: overlay 250ms both; } // Consent wrapper &__inner { position: fixed; bottom: 0; z-index: 5; width: 100%; max-height: 100%; padding: 0; overflow: auto; background-color: var(--md-default-bg-color); border: 0; border-radius: px2rem(2px); box-shadow: 0 0 px2rem(4px) rgba(0, 0, 0, 0.1), 0 px2rem(4px) px2rem(8px) rgba(0, 0, 0, 0.2); animation: consent 500ms cubic-bezier(0.1, 0.7, 0.1, 1) both; } // Consent form &__form { padding: px2rem(16px); } // Consent settings &__settings { display: none; margin: 1em 0; // Show settings input:checked + & { display: block; } } // Consent controls &__controls { margin-bottom: px2rem(16px); // Consent control button .md-typeset & .md-button { display: inline; // [tablet +]: Align buttons horizontally @include break-to-device(mobile) { display: block; width: 100%; margin-top: px2rem(8px); text-align: center; } } } // Ensure users realize that labels are clickaböe label { cursor: pointer; } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_content.scss000066400000000000000000000061761475306445600311200ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Content area .md-content { flex-grow: 1; // Hack: we must use `min-width: 0`, so the content area is capped by the // dimensions of its parent. Otherwise, long code blocks might lead to a // wider content area which will overflow. See https://bit.ly/3bP3f8k min-width: 0; // Content wrapper &__inner { padding-top: px2rem(12px); margin: 0 px2rem(16px) px2rem(24px); // [screen +]: Adjust spacing between content area and sidebars @include break-from-device(screen) { // Sidebar with navigation is visible .md-sidebar--primary:not([hidden]) ~ .md-content > & { margin-inline-start: px2rem(24px); } // Sidebar with table of contents is visible .md-sidebar--secondary:not([hidden]) ~ .md-content > & { margin-inline-end: px2rem(24px); } } // Hack: add pseudo element for spacing, as the overflow of the content // container may not be hidden due to an imminent offset error on targets &::before { display: block; height: px2rem(8px); content: ""; } // Adjust spacing on last child > :last-child { margin-bottom: 0; } } // Button inside of the content area - these buttons are meant for actions on // a document-level, i.e. linking to related source code files, printing etc. &__button { float: inline-end; padding: 0; margin: px2rem(8px) 0; margin-inline-start: px2rem(8px); // [print]: Hide buttons @media print { display: none; } // Adjust default link color for icons .md-typeset & { color: var(--md-default-fg-color--lighter); } // Align with body copy located next to icon svg { display: inline; vertical-align: top; // Adjust for right-to-left languages [dir="rtl"] & { transform: scaleX(-1); } } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_dialog.scss000066400000000000000000000041331475306445600306740ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Dialog .md-dialog { position: fixed; inset-inline-end: px2rem(16px); bottom: px2rem(16px); z-index: 4; min-width: px2rem(222px); padding: px2rem(8px) px2rem(12px); pointer-events: none; background-color: var(--md-default-fg-color); border-radius: px2rem(2px); box-shadow: var(--md-shadow-z3); opacity: 0; transition: transform 0ms 400ms, opacity 400ms; transform: translateY(100%); // [print]: Hide dialog @media print { display: none; } // Active dialog &--active { pointer-events: initial; opacity: 1; transition: transform 400ms cubic-bezier(0.075, 0.85, 0.175, 1), opacity 400ms; transform: translateY(0); } // Dialog wrapper &__inner { font-size: px2rem(14px); color: var(--md-default-bg-color); } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_feedback.scss000066400000000000000000000055461475306445600311720ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Was this page helpful? .md-feedback { margin: 2em 0 1em; text-align: center; // Feedback fieldset fieldset { padding: 0; margin: 0; border: none; } // Feedback title &__title { margin: 1em auto; font-weight: 700; } // Feedback wrapper &__inner { position: relative; } // Feedback list &__list { position: relative; display: flex; flex-wrap: wrap; place-content: baseline center; // Feedback icon on hover &:hover .md-icon:not(:disabled) { color: var(--md-default-fg-color--lighter); } // Adjust height after submission :disabled & { min-height: px2rem(36px); } } // Feedback icon &__icon { flex-shrink: 0; margin: 0 px2rem(2px); color: var(--md-default-fg-color--light); cursor: pointer; transition: color 125ms; // Feedback icon on hover &:not(:disabled).md-icon:hover { color: var(--md-accent-fg-color); } // Feedback icon after submit &:disabled { color: var(--md-default-fg-color--lightest); pointer-events: none; } } // Feedback note &__note { position: relative; opacity: 0; transition: transform 400ms cubic-bezier(0.1, 0.7, 0.1, 1), opacity 150ms; transform: translateY(px2rem(8px)); // Feedback note value > * { max-width: px2rem(320px); margin: 0 auto; } // Show after submission :disabled & { opacity: 1; transform: translateY(0); } } // [print]: Hide feedback @media print { display: none; } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_footer.scss000066400000000000000000000122031475306445600307300ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Footer .md-footer { color: var(--md-footer-fg-color); background-color: var(--md-footer-bg-color); // [print]: Hide footer @media print { display: none; } // Footer wrapper &__inner { justify-content: space-between; padding: px2rem(4px); overflow: auto; // Footer is visible &:not([hidden]) { display: flex; } } // Footer link to previous and next page &__link { display: flex; // Hack: some browsers induce ellipsis on flex children that are set to // `overflow: hidden` and `text-overflow: ellipsis`. Enforcing growth by // a tiny factor seems to get rid of the ellipsis and renders the text as // it should - see https://bit.ly/2ZUCXQ8 flex-grow: 0.01; align-items: end; max-width: 100%; margin-block: px2rem(20px) px2rem(8px); overflow: hidden; outline-color: var(--md-accent-fg-color); transition: opacity 250ms; // Footer link on focus/hover &:is(:focus, :hover) { opacity: 0.7; } // Adjust for right-to-left languages [dir="rtl"] & svg { transform: scaleX(-1); } // [mobile -]: Adjust width to 25/75 and hide title @include break-to-device(mobile) { // Footer link to previous page &--prev { flex-shrink: 0; // Hide footer title .md-footer__title { display: none; } } } // Footer link to next page &--next { margin-inline-start: auto; text-align: right; // Adjust for right-to-left languages [dir="rtl"] & { text-align: left; } } } // Footer title &__title { flex-grow: 1; max-width: calc(100% - #{px2rem(48px)}); padding: 0 px2rem(20px); margin-bottom: px2rem(14px); font-size: px2rem(18px); white-space: nowrap; } // Footer link button &__button { padding: px2rem(8px); margin: px2rem(4px); } // Footer link direction (i.e. prev and next) &__direction { font-size: px2rem(12.8px); opacity: 0.7; } } // Footer metadata .md-footer-meta { background-color: var(--md-footer-bg-color--dark); // Footer metadata wrapper &__inner { display: flex; flex-wrap: wrap; justify-content: space-between; padding: px2rem(4px); } // Lighten color for non-hovered text links html &.md-typeset a { color: var(--md-footer-fg-color--light); // Text link on focus/hover &:is(:focus, :hover) { color: var(--md-footer-fg-color); } } } // ---------------------------------------------------------------------------- // Copyright and theme information .md-copyright { width: 100%; padding: px2rem(8px) 0; margin: auto px2rem(12px); font-size: px2rem(12.8px); color: var(--md-footer-fg-color--lighter); // [tablet portrait +]: Show copyright and social links in one line @include break-from-device(tablet portrait) { width: auto; } // Footer copyright highlight - this is the upper part of the copyright and // theme information, which will include a darker color than the theme link &__highlight { color: var(--md-footer-fg-color--light); } } // ---------------------------------------------------------------------------- // Social links .md-social { display: inline-flex; gap: px2rem(4px); padding: px2rem(4px) 0 px2rem(12px); margin: 0 px2rem(8px); // [tablet portrait +]: Show copyright and social links in one line @include break-from-device(tablet portrait) { padding: px2rem(12px) 0; } // Footer social link &__link { display: inline-block; width: px2rem(32px); height: px2rem(32px); text-align: center; // Adjust line-height to match height for correct alignment &::before { line-height: 1.9; } // Fill icon with current color svg { max-height: px2rem(16px); vertical-align: -25%; fill: currentcolor; } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_form.scss000066400000000000000000000053331475306445600304030ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Scoped in typesetted content to match specificity of regular content .md-typeset { // Form button .md-button { display: inline-block; padding: px2em(10px) px2em(32px); font-weight: 700; color: var(--md-primary-fg-color); cursor: pointer; border: px2rem(2px) solid currentcolor; border-radius: px2rem(2px); transition: color 125ms, background-color 125ms, border-color 125ms; // Primary button &--primary { color: var(--md-primary-bg-color); background-color: var(--md-primary-fg-color); border-color: var(--md-primary-fg-color); } // Button on focus/hover &:is(:focus, :hover) { color: var(--md-accent-bg-color); background-color: var(--md-accent-fg-color); border-color: var(--md-accent-fg-color); } } // Form input .md-input { height: px2rem(36px); padding: 0 px2rem(12px); font-size: px2rem(16px); border-bottom: px2rem(2px) solid var(--md-default-fg-color--lighter); border-start-start-radius: px2rem(2px); border-start-end-radius: px2rem(2px); box-shadow: var(--md-shadow-z1); transition: border 250ms, box-shadow 250ms; // Input on focus/hover &:is(:focus, :hover) { border-bottom-color: var(--md-accent-fg-color); box-shadow: var(--md-shadow-z2); } // Stretch to full width &--stretch { width: 100%; } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_header.scss000066400000000000000000000155741475306445600307000ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Header - by default, the header will be sticky and stay always on top of the // viewport. If this behavior is not desired, just set `position: static`. .md-header { position: sticky; inset-inline: 0; top: 0; z-index: 4; display: block; color: var(--md-primary-bg-color); background-color: var(--md-primary-fg-color); // Hack: reduce jitter by adding a transparent box shadow of the same size // so the size of the layer doesn't change during animation box-shadow: 0 0 px2rem(4px) rgba(0, 0, 0, 0), 0 px2rem(4px) px2rem(8px) rgba(0, 0, 0, 0); // [print]: Hide header @media print { display: none; } // Header is hidden &[hidden] { transition: transform 250ms cubic-bezier(0.8, 0, 0.6, 1), box-shadow 250ms; transform: translateY(-100%); } // Header in shadow state, i.e. shadow is visible &--shadow { box-shadow: 0 0 px2rem(4px) rgba(0, 0, 0, 0.1), 0 px2rem(4px) px2rem(8px) rgba(0, 0, 0, 0.2); transition: transform 250ms cubic-bezier(0.1, 0.7, 0.1, 1), box-shadow 250ms; } // Header wrapper &__inner { display: flex; align-items: center; padding: 0 px2rem(4px); } // Header button &__button { position: relative; z-index: 1; padding: px2rem(8px); margin: px2rem(4px); color: currentcolor; vertical-align: middle; cursor: pointer; outline-color: var(--md-accent-fg-color); transition: opacity 250ms; // Button on hover &:hover { opacity: 0.7; } // Header button is visible &:not([hidden]) { display: inline-block; } // Hide outline for pointer devices &:not(.focus-visible) { outline: none; -webkit-tap-highlight-color: transparent; } // Button with logo, pointing to `config.site_url` &.md-logo { padding: px2rem(8px); margin: px2rem(4px); // [tablet -]: Hide button @include break-to-device(tablet) { display: none; } // Image or icon :is(img, svg) { display: block; width: auto; height: px2rem(24px); fill: currentcolor; } } // Button for search &[for="__search"] { // [tablet landscape +]: Hide button @include break-from-device(tablet landscape) { display: none; } // [no-js]: Hide button .no-js & { display: none; } // Adjust for right-to-left languages [dir="rtl"] & svg { transform: scaleX(-1); } } // Button for drawer &[for="__drawer"] { // [screen +]: Hide button @include break-from-device(screen) { display: none; } } } // Header topic &__topic { position: absolute; display: flex; max-width: 100%; white-space: nowrap; transition: transform 400ms cubic-bezier(0.1, 0.7, 0.1, 1), opacity 150ms; // Second header topic - title of the current page & + & { z-index: -1; pointer-events: none; opacity: 0; transition: transform 400ms cubic-bezier(1, 0.7, 0.1, 0.1), opacity 150ms; transform: translateX(px2rem(25px)); // Adjust for right-to-left languages [dir="rtl"] & { transform: translateX(px2rem(-25px)); } } // Adjust font weight of site title &:first-child { font-weight: 700; } } // Header title &__title { flex-grow: 1; height: px2rem(48px); margin-inline: px2rem(20px) px2rem(8px); font-size: px2rem(18px); line-height: px2rem(48px); // Header title in active state, i.e. page title is visible &--active .md-header__topic { z-index: -1; pointer-events: none; opacity: 0; transition: transform 400ms cubic-bezier(1, 0.7, 0.1, 0.1), opacity 150ms; transform: translateX(px2rem(-25px)); // Adjust for right-to-left languages [dir="rtl"] & { transform: translateX(px2rem(25px)); } // Second header topic - title of the current page + .md-header__topic { z-index: 0; pointer-events: initial; opacity: 1; transition: transform 400ms cubic-bezier(0.1, 0.7, 0.1, 1), opacity 150ms; transform: translateX(0); } } // Add ellipsis in case of overflowing text > .md-header__ellipsis { position: relative; width: 100%; height: 100%; } } // Header option &__option { display: flex; flex-shrink: 0; max-width: 100%; white-space: nowrap; transition: max-width 0ms 250ms, opacity 250ms 250ms; // Hide toggle when search is active [data-md-toggle="search"]:checked ~ .md-header & { max-width: 0; opacity: 0; transition: max-width 0ms, opacity 0ms; } // Hack: Firefox 117 introduces a bug where the browser scrolls the page by // a small amount to the top every time the header button is focused. After // investigating, we're confident that it seems to be caused by the input // field being too close to the border - see https://t.ly/APO8l > input { bottom: 0; } } // Repository information container &__source { display: none; // [tablet landscape +]: Show repository information @include break-from-device(tablet landscape) { display: block; width: px2rem(234px); max-width: px2rem(234px); margin-inline-start: px2rem(20px); } // [screen +]: Adjust spacing of search bar @include break-from-device(screen) { margin-inline-start: px2rem(28px); } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_meta.scss000066400000000000000000000040501475306445600303610ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Metadata .md-meta { font-size: px2rem(14px); line-height: 1.3; color: var(--md-default-fg-color--light); // Metadata list &__list { display: inline-flex; flex-wrap: wrap; padding: 0; margin: 0; list-style: none; } // Metadata item separator &__item:not(:last-child)::after { margin-inline: px2rem(4px); content: "·"; } // Metadata link &__link { color: var(--md-typeset-a-color); // Metadata link on focus/hover &:is(:focus, :hover) { color: var(--md-accent-fg-color); } } } // Draft .md-draft { display: inline-block; padding-inline: px2em(8px, 14px); font-weight: 700; color: hsla(255, 100%, 100%); background-color: $clr-red-a400; border-radius: px2em(2px); } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_nav.scss000066400000000000000000000470751475306445600302350ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Navigation variables :root { --md-nav-icon--prev: svg-load("material/arrow-left.svg"); --md-nav-icon--next: svg-load("material/chevron-right.svg"); --md-toc-icon: svg-load("material/table-of-contents.svg"); } // ---------------------------------------------------------------------------- // Navigation .md-nav { font-size: px2rem(14px); line-height: 1.3; // Navigation title &__title { display: block; padding: 0 px2rem(12px); overflow: hidden; font-weight: 700; color: var(--md-default-fg-color--light); text-overflow: ellipsis; // Navigaton button .md-nav__button { display: none; // Stretch images based on height, as it's the smaller dimension img { width: auto; height: 100%; } // Button with logo, pointing to `config.site_url` &.md-logo { // Image or icon :is(img, svg) { display: block; width: auto; max-width: 100%; height: px2rem(48px); object-fit: contain; fill: currentcolor; } } } } // Navigation list &__list { padding: 0; margin: 0; list-style: none; } // Navigation link &__link { display: flex; gap: px2rem(8px); align-items: flex-start; margin-top: 0.625em; scroll-snap-align: start; transition: color 125ms; // Navigation link that was passed &--passed { color: var(--md-default-fg-color--light); } // Active link .md-nav__item &--active { // Also enable color transitions on inline code blocks &, code { color: var(--md-typeset-a-color); } } // Navigation link title .md-ellipsis { // Hack: Safari exhibits a bug where the text will sometimes disappear // and the element will become unclickable. Setting `position: relative` // seems to fix the issue - see https://bit.ly/3HljM1T position: relative; } // Always align navigation icons to the end .md-icon:last-child { margin-inline-start: auto; } // Navigation link icon svg { // Hack: Safari has another bug where SVGs disappear on hover - same fix // as above via `position: relative` - see https://t.ly/5fSj1 position: relative; flex-shrink: 0; height: 1.3em; fill: currentcolor; } // Navigation link on focus/hover &:is([href], [for]):is(:focus, :hover) { color: var(--md-accent-fg-color); cursor: pointer; } // Show outline for keyboard devices &.focus-visible { outline-color: var(--md-accent-fg-color); outline-offset: px2rem(4px); } // Navigation link for table of contents .md-nav--primary &[for="__toc"] { display: none; // Table of contents icon .md-icon::after { display: block; width: 100%; height: 100%; background-color: currentcolor; mask-image: var(--md-toc-icon); } // Hide table of contents ~ .md-nav { display: none; } } } // Navigation container (for section index pages) &__container > .md-nav__link { margin-top: 0; // Stretch first child &:first-child { flex-grow: 1; // Hack: if a very long word is used, it can push the arrow out of sight. // Setting this property contains the text - see https://t.ly/E02vp min-width: 0; } } // Navigation icon &__icon { flex-shrink: 0; } // Repository information container &__source { display: none; } // [tablet -]: Layered navigation @include break-to-device(tablet) { // Primary and nested navigation &--primary, &--primary & { position: absolute; inset-inline: 0; top: 0; z-index: 1; display: flex; flex-direction: column; height: 100%; background-color: var(--md-default-bg-color); } // Primary navigation &--primary { // Navigation title and item :is(.md-nav__title, .md-nav__item) { font-size: px2rem(16px); line-height: 1.5; } // Navigation title .md-nav__title { position: relative; height: px2rem(112px); padding: px2rem(60px) px2rem(16px) px2rem(4px); line-height: px2rem(48px); color: var(--md-default-fg-color--light); white-space: nowrap; cursor: pointer; background-color: var(--md-default-fg-color--lightest); // Navigation icon .md-nav__icon { position: absolute; inset-inline-start: px2rem(8px); top: px2rem(8px); display: block; width: px2rem(24px); height: px2rem(24px); margin: px2rem(4px); // Navigation icon in link to previous level &::after { display: block; width: 100%; height: 100%; content: ""; background-color: currentcolor; mask-image: var(--md-nav-icon--prev); mask-repeat: no-repeat; mask-position: center; mask-size: contain; } } // Navigation list ~ .md-nav__list { overflow-y: auto; touch-action: pan-y; scroll-snap-type: y mandatory; background-color: var(--md-default-bg-color); box-shadow: 0 px2rem(1px) 0 var(--md-default-fg-color--lightest) inset; // Omit border on first child > :first-child { border-top: 0; } } // Top-level navigation title &[for="__drawer"] { font-weight: 700; color: var(--md-primary-bg-color); background-color: var(--md-primary-fg-color); } // Button with logo, pointing to `config.site_url` .md-logo { position: absolute; inset-inline: px2rem(4px); top: px2rem(4px); display: block; padding: px2rem(8px); margin: px2rem(4px); } } // Navigation list .md-nav__list { flex: 1; } // Navigation item .md-nav__item { border-top: px2rem(1px) solid var(--md-default-fg-color--lightest); // Navigation link in active navigation &--active > .md-nav__link { color: var(--md-typeset-a-color); // Navigation link on focus/hover &:is(:focus, :hover) { color: var(--md-accent-fg-color); } } } // Navigation link .md-nav__link { padding: px2rem(12px) px2rem(16px); margin-top: 0; // Navigation link icon svg { margin-top: 0.1em; } // Adjust spacing on nested link > .md-nav__link { padding: 0; } // Navigation icon .md-nav__icon { width: px2rem(24px); height: px2rem(24px); margin-inline-end: px2rem(-4px); font-size: px2rem(24px); // Navigation icon in link to next level &::after { display: block; width: 100%; height: 100%; content: ""; background-color: currentcolor; mask-image: var(--md-nav-icon--next); mask-repeat: no-repeat; mask-position: center; mask-size: contain; } } } // Flip icon vertically .md-nav__icon { // Adjust for right-to-left languages [dir="rtl"] &::after { transform: scale(-1); } } // Table of contents contained in primary navigation .md-nav--secondary { // Navigation on level 2-6 .md-nav { position: static; background-color: transparent; // Navigation link on level 3 .md-nav__link { padding-inline-start: px2rem(28px); } // Navigation link on level 4 .md-nav .md-nav__link { padding-inline-start: px2rem(40px); } // Navigation link on level 5 .md-nav .md-nav .md-nav__link { padding-inline-start: px2rem(52px); } // Navigation link on level 6 .md-nav .md-nav .md-nav .md-nav__link { padding-inline-start: px2rem(64px); } } } } // Table of contents &--secondary { background-color: transparent; } // Hide nested navigation &__toggle ~ & { display: flex; opacity: 0; transition: transform 250ms cubic-bezier(0.8, 0, 0.6, 1), opacity 125ms 50ms; transform: translateX(100%); // Adjust for right-to-left languages [dir="rtl"] & { transform: translateX(-100%); } } // Show nested navigation when toggle is active &__toggle:checked ~ & { opacity: 1; transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), opacity 125ms 125ms; transform: translateX(0); // Navigation list > .md-nav__list { // Hack: promote to own layer to reduce jitter backface-visibility: hidden; } } } // [tablet portrait -]: Layered navigation with table of contents @include break-to-device(tablet portrait) { // Show link to table of contents &--primary &__link[for="__toc"] { display: flex; // Show table of contents icon .md-icon::after { content: ""; } // Hide navigation link to current page + .md-nav__link { display: none; } // Show table of contents ~ .md-nav { display: flex; } } // Repository information container &__source { display: block; padding: 0 px2rem(4px); color: var(--md-primary-bg-color); background-color: var(--md-primary-fg-color--dark); } } // [tablet landscape]: Layered navigation with table of contents @include break-at-device(tablet landscape) { // Show link to integrated table of contents &--integrated &__link[for="__toc"] { display: flex; // Show table of contents icon .md-icon::after { content: ""; } // Hide navigation link to current page + .md-nav__link { display: none; } // Show table of contents ~ .md-nav { display: flex; } } } // [tablet landscape +]: Tree-like table of contents @include break-from-device(tablet landscape) { margin-bottom: px2rem(-8px); // Table of contents &--secondary { // Navigation title .md-nav__title { position: sticky; top: 0; // Hack: because of the hack that we need to make .md-ellipsis work in // Safari, we need to set `z-index` here as - see https://bit.ly/3s5M2jm z-index: 1; background: var(--md-default-bg-color); box-shadow: 0 0 px2rem(8px) px2rem(8px) var(--md-default-bg-color); // Adjust snapping behavior &[for="__toc"] { scroll-snap-align: start; } // Hide navigation icon .md-nav__icon { display: none; } } // Adjust spacing for navigation list - same reason as below .md-nav__list { padding-inline-start: px2rem(12px); padding-bottom: px2rem(8px); } // Adjust spacing for navigation link - before this change, we set spacing // on the left and right of a navigation item, but this led to the problem // of cropped focus outlines, because we must set `overflow: hidden` on // the navigation list for smooth expand and collapse transitions. .md-nav__item > .md-nav__link { margin-inline-end: px2rem(8px); } } } // [screen +]: Tree-like navigation @include break-from-device(screen) { margin-bottom: px2rem(-8px); transition: max-height 250ms cubic-bezier(0.86, 0, 0.07, 1); // Primary navigation &--primary { // Navigation title .md-nav__title { position: sticky; top: 0; // Hack: because of the hack that we need to make .md-ellipsis work in // Safari, we need to set `z-index` here as - see https://bit.ly/3s5M2jm z-index: 1; background: var(--md-default-bg-color); box-shadow: 0 0 px2rem(8px) px2rem(8px) var(--md-default-bg-color); // Adjust snapping behavior &[for="__drawer"] { scroll-snap-align: start; } // Hide navigation icon .md-nav__icon { display: none; } } // Adjust spacing for navigation list - same reason as below .md-nav__list { padding-inline-start: px2rem(12px); padding-bottom: px2rem(8px); } // Adjust spacing for navigation link - before this change, we set spacing // on the left and right of a navigation item, but this led to the problem // of cropped focus outlines, because we must set `overflow: hidden` on // the navigation list for smooth expand and collapse transitions. .md-nav__item > .md-nav__link { margin-inline-end: px2rem(8px); } } // Hide nested navigation &__toggle ~ & { display: grid; // Hack: we must set a minimum of 8px to work around a bug introduced in // Safari 18.3, collapsing to a height of 0 – see https://t.ly/ViA3N grid-template-rows: minmax(#{px2rem(8px)}, 0fr); visibility: collapse; opacity: 0; transition: grid-template-rows 250ms cubic-bezier(0.86, 0, 0.07, 1), opacity 250ms, visibility 0ms 250ms; // Navigation list > .md-nav__list { overflow: hidden; } } // Show nested navigation when toggle is active or indeterminate &__toggle:is(:checked, .md-toggle--indeterminate) ~ & { grid-template-rows: minmax(#{px2rem(8px)}, 1fr); visibility: visible; opacity: 1; transition: grid-template-rows 250ms cubic-bezier(0.86, 0, 0.07, 1), opacity 150ms 100ms, visibility 0ms; } // Disable transition for expanded navigation &__toggle.md-toggle--indeterminate ~ & { transition: none; } // Hide navigation title in nested navigation &__item--nested > & > &__title { display: none; } // Navigation section &__item--section { display: block; margin: 1.25em 0; // Adjust spacing on last child &:last-child { margin-bottom: 0; } // Show navigation link as title > .md-nav__link { font-weight: 700; // Make labels discernable from links &[for] { color: var(--md-default-fg-color--light); } // Omit clicks if not a section index page &:not(.md-nav__container) { pointer-events: none; } // Hide navigation icon > [for], .md-icon { display: none; } } // Navigation > .md-nav { display: block; margin-inline-start: px2rem(-12px); visibility: visible; opacity: 1; // Adjust spacing on next level item > .md-nav__list > .md-nav__item { padding: 0; } } } // Navigation icon &__icon { width: px2rem(18px); height: px2rem(18px); border-radius: 100%; transition: background-color 250ms; // Navigation icon on hover &:hover { background-color: var(--md-accent-fg-color--transparent); } // Navigation icon content &::after { display: inline-block; width: 100%; height: 100%; vertical-align: px2rem(-2px); content: ""; background-color: currentcolor; border-radius: 100%; mask-image: var(--md-nav-icon--next); mask-repeat: no-repeat; mask-position: center; mask-size: contain; transition: transform 250ms; // Adjust for right-to-left languages [dir="rtl"] & { transform: rotate(180deg); } // Navigation icon - rotate icon when toggle is active or indeterminate .md-nav__item--nested .md-nav__toggle:checked ~ .md-nav__link &, .md-nav__item--nested .md-toggle--indeterminate ~ .md-nav__link & { transform: rotate(90deg); } } } // Modifier for when navigation tabs are rendered &--lifted { // Hide site title > .md-nav__title { display: none; } // Hide level 0 navigation items > .md-nav__list > .md-nav__item { display: none; // Active parent navigation item &--active { display: block; // Show navigation link as title > .md-nav__link { position: sticky; top: 0; z-index: 1; margin-top: 0; background: var(--md-default-bg-color); box-shadow: 0 0 px2rem(8px) px2rem(8px) var(--md-default-bg-color); // Omit clicks if not a section index page &:not(.md-nav__container) { pointer-events: none; } } // Adjust spacing for navigation section &.md-nav__item--section { margin: 0; } } // Adjust spacing for nested navigation > .md-nav:not(.md-nav--secondary) { margin-inline-start: px2rem(-12px); } // Make labels discernable from links > [for] { color: var(--md-default-fg-color--light); } } // Hack: Always show active navigation tab on breakpoint screen, despite // of checkbox being checked or not - see https://t.ly/Qc311 .md-nav[data-md-level="1"] { grid-template-rows: minmax(#{px2rem(8px)}, 1fr); visibility: visible; opacity: 1; } } // Modifier for when table of contents is rendered in primary navigation &--integrated > .md-nav__list > .md-nav__item--active { // Show integrated table of contents .md-nav--secondary { display: block; margin-bottom: 1.25em; visibility: visible; border-inline-start: px2rem(1px) solid var(--md-primary-fg-color); opacity: 1; // Navigation list > .md-nav__list { padding-bottom: 0; overflow: visible; } // Hide table of contents title > .md-nav__title { display: none; } } } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_pagination.scss000066400000000000000000000050351475306445600315700ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Pagination .md-pagination { display: flex; gap: px2rem(8px); align-items: center; justify-content: center; font-size: px2rem(16px); font-weight: 700; // Pagination item > * { display: flex; align-items: center; justify-content: center; min-width: px2rem(36px); height: px2rem(36px); text-align: center; border-radius: px2rem(4px); } // Active pagination item &__current { color: var(--md-default-fg-color--light); background-color: var(--md-default-fg-color--lightest); } // Pagination link &__link { transition: color 125ms, background-color 125ms; // Pagination link on focus/hover &:is(:focus, :hover) { color: var(--md-accent-fg-color); background-color: var(--md-accent-fg-color--transparent); // Pagination icon svg { color: var(--md-accent-fg-color); } } // Show outline for keyboard devices &.focus-visible { outline-color: var(--md-accent-fg-color); outline-offset: px2rem(4px); } // Pagination icon svg { display: block; width: px2rem(24px); max-height: 100%; color: var(--md-default-fg-color--lighter); fill: currentcolor; } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_post.scss000066400000000000000000000110031475306445600304140ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Post .md-post { // Post backlink &__back { padding-bottom: px2rem(24px); margin-bottom: px2rem(24px); border-bottom: px2rem(1px) solid var(--md-default-fg-color--lightest); // [tablet -]: Hide post backlink @include break-to-device(tablet) { display: none; } // Adjust for right-to-left languages [dir="rtl"] & { // Flip icon vertically svg { transform: scaleX(-1); } } } // Post authors &__authors { display: flex; flex-direction: column; gap: px2rem(12px); margin: 0 px2rem(12px) px2rem(24px); } // Post metadata .md-post__meta { // Navigation link a { transition: color 125ms; // Navigation link on focus/hover &:is(:focus, :hover) { color: var(--md-accent-fg-color); } } } // Post navigation title @todo - generalize &__title { font-weight: 700; color: var(--md-default-fg-color--light); } // Post excerpt &--excerpt { margin-bottom: px2rem(64px); // Post excerpt header .md-post__header { display: flex; gap: px2rem(12px); align-items: center; min-height: px2rem(32px); } // Post excerpt authors .md-post__authors { display: inline-flex; flex-direction: row; gap: px2rem(4px); align-items: center; min-height: px2rem(48px); margin: 0; } // Post excerpt metadata .md-post__meta .md-meta__list { margin-inline-end: px2rem(8px); } // Post excerpt content .md-post__content > :first-child { --md-scroll-margin: #{px2rem(120px)}; margin-top: 0; } } // Add margin to table of contents > .md-nav--secondary { margin: 1em 0; } } // ---------------------------------------------------------------------------- // Post author profile .md-profile { display: flex; gap: px2rem(12px); align-items: center; width: 100%; font-size: px2rem(14px); line-height: 1.4; // Post author description &__description { flex-grow: 1; } } // ---------------------------------------------------------------------------- // Content area for post .md-content--post { display: flex; // [tablet -]: Switch to inverted column layout @include break-to-device(tablet) { flex-flow: column-reverse; } // Content wrapper > .md-content__inner { flex-grow: 1; min-width: 0; // [screen +]: Adjust spacing between content area and sidebars @include break-from-device(screen) { margin-inline-start: px2rem(24px); } } } // Sidebar for post .md-sidebar.md-sidebar--post { // [tablet -]: Adjust spacing @include break-to-device(tablet) { position: initial; width: 100%; padding: 0; .md-sidebar__scrollwrap { overflow: visible; } .md-sidebar__inner { padding: 0; } .md-post__meta { margin-inline: px2rem(12px); } .md-nav__item { display: inline; border: none; } .md-nav__list { display: inline-flex; flex-wrap: wrap; gap: px2rem(12px); padding-block: px2rem(12px); } .md-nav__link { padding: 0; } .md-nav { position: initial; height: auto; margin-bottom: 0; } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_progress.scss000066400000000000000000000036761475306445600313140ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Progress variables :root { --md-progress-value: 0; --md-progress-delay: 400ms; } // ---------------------------------------------------------------------------- // Progress indicator .md-progress { position: fixed; top: 0; z-index: 4; width: 100%; height: px2rem(1.5px); background: var(--md-primary-bg-color); opacity: min( clamp(0, var(--md-progress-value), 1), clamp(0, 100 - var(--md-progress-value), 1) ); transition: transform 500ms cubic-bezier(0.19, 1, 0.22, 1), opacity 250ms var(--md-progress-delay); transform: scaleX(calc(var(--md-progress-value) * 1%)); transform-origin: left; } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_search.scss000066400000000000000000000433571475306445600307150ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Search variables :root { --md-search-result-icon: svg-load("material/file-search-outline.svg"); } // ---------------------------------------------------------------------------- // Search .md-search { position: relative; // [tablet landscape +]: Header-embedded search @include break-from-device(tablet landscape) { padding: px2rem(4px) 0; } // [no-js]: Hide search .no-js & { display: none; } // Search overlay &__overlay { z-index: 1; opacity: 0; // [tablet portrait -]: Search modal @include break-to-device(tablet portrait) { position: absolute; inset-inline-start: px2rem(-44px); top: px2rem(-20px); width: px2rem(40px); height: px2rem(40px); overflow: hidden; pointer-events: none; background-color: var(--md-default-bg-color); border-radius: px2rem(20px); transition: transform 300ms 100ms, opacity 200ms 200ms; transform-origin: center; // Show overlay when search is active [data-md-toggle="search"]:checked ~ .md-header & { opacity: 1; transition: transform 400ms, opacity 100ms; } } // [tablet landscape +]: Header-embedded search @include break-from-device(tablet landscape) { position: fixed; inset-inline-start: 0; top: 0; width: 0; height: 0; cursor: pointer; background-color: hsla(0, 0%, 0%, 0.54); transition: width 0ms 250ms, height 0ms 250ms, opacity 250ms; // Show overlay when search is active [data-md-toggle="search"]:checked ~ .md-header & { width: 100%; // Hack: when the header is translated upon scrolling, a new layer is // induced, which means that the height will now refer to the height of // the header, albeit positioning is fixed. This should be mitigated // in all cases when setting the height to 2x the viewport. height: 200vh; opacity: 1; transition: width 0ms, height 0ms, opacity 250ms; } } // Adjust appearance when search is active [data-md-toggle="search"]:checked ~ .md-header & { // [mobile portrait -]: Scale up 45 times @include break-to-device(mobile portrait) { transform: scale(45); } // [mobile landscape]: Scale up 60 times @include break-at-device(mobile landscape) { transform: scale(60); } // [tablet portrait]: Scale up 75 times @include break-at-device(tablet portrait) { transform: scale(75); } } } // Search wrapper &__inner { // Hack: promote to own layer to reduce jitter backface-visibility: hidden; // [tablet portrait -]: Search modal @include break-to-device(tablet portrait) { position: fixed; inset-inline-start: 0; top: 0; z-index: 2; width: 0; height: 0; overflow: hidden; opacity: 0; transition: width 0ms 300ms, height 0ms 300ms, transform 150ms 150ms cubic-bezier(0.4, 0, 0.2, 1), opacity 150ms 150ms; transform: translateX(5%); // Adjust for right-to-left languages [dir="rtl"] & { transform: translateX(-5%); } // Adjust appearance when search is active [data-md-toggle="search"]:checked ~ .md-header & { width: 100%; height: 100%; opacity: 1; transition: width 0ms 0ms, height 0ms 0ms, transform 150ms 150ms cubic-bezier(0.1, 0.7, 0.1, 1), opacity 150ms 150ms; transform: translateX(0); } } // [tablet landscape +]: Header-embedded search @include break-from-device(tablet landscape) { position: relative; float: inline-end; width: px2rem(234px); padding: px2rem(2px) 0; transition: width 250ms cubic-bezier(0.1, 0.7, 0.1, 1); } // Adjust appearance when search is active [data-md-toggle="search"]:checked ~ .md-header & { // [tablet landscape]: Omit overlaying header title @include break-at-device(tablet landscape) { width: px2rem(468px); } // [screen +]: Match width of content area @include break-from-device(screen) { width: px2rem(688px); } } } // Search form &__form { position: relative; z-index: 2; height: px2rem(48px); background-color: var(--md-default-bg-color); box-shadow: 0 0 px2rem(12px) transparent; transition: color 250ms, background-color 250ms; // [tablet landscape +]: Header-embedded search @include break-from-device(tablet landscape) { height: px2rem(36px); background-color: hsla(0, 0%, 0%, 0.26); border-radius: px2rem(2px); // Search form on hover &:hover { background-color: hsla(0, 0%, 100%, 0.12); } } // Adjust appearance when search is active [data-md-toggle="search"]:checked ~ .md-header & { color: var(--md-default-fg-color); background-color: var(--md-default-bg-color); border-radius: px2rem(2px) px2rem(2px) 0 0; box-shadow: 0 0 px2rem(12px) hsla(0, 0%, 0%, 0.07); } } // Search input &__input { position: relative; z-index: 2; width: 100%; height: 100%; padding-inline: px2rem(72px) px2rem(44px); font-size: px2rem(18px); text-overflow: ellipsis; background: transparent; // Search placeholder &::placeholder { transition: color 250ms; } // Search icon and placeholder ~ .md-search__icon, &::placeholder { color: var(--md-default-fg-color--light); } // Remove the "x" rendered by Internet Explorer &::-ms-clear { display: none; } // [tablet portrait -]: Search modal @include break-to-device(tablet portrait) { width: 100%; height: px2rem(48px); font-size: px2rem(18px); } // [tablet landscape +]: Header-embedded search @include break-from-device(tablet landscape) { padding-inline-start: px2rem(44px); font-size: px2rem(16px); color: inherit; // Search placeholder &::placeholder { color: var(--md-primary-bg-color--light); } // Search icon + .md-search__icon { color: var(--md-primary-bg-color); } // Adjust appearance when search is active [data-md-toggle="search"]:checked ~ .md-header & { text-overflow: clip; // Search icon and placeholder + .md-search__icon { color: var(--md-default-fg-color--light); } // Search placeholder &::placeholder { color: transparent; } } } } // Search icon &__icon { display: inline-block; width: px2rem(24px); height: px2rem(24px); cursor: pointer; transition: color 250ms, opacity 250ms; // Search icon on hover &:hover { opacity: 0.7; } // Search focus button &[for="__search"] { position: absolute; inset-inline-start: px2rem(10px); top: px2rem(6px); z-index: 2; // Adjust for right-to-left languages [dir="rtl"] & svg { transform: scaleX(-1); } // [tablet portrait -]: Search modal @include break-to-device(tablet portrait) { inset-inline-start: px2rem(16px); top: px2rem(12px); // Hide the magnifying glass svg:first-child { display: none; } } // [tablet landscape +]: Header-embedded search @include break-from-device(tablet landscape) { pointer-events: none; // Hide the back arrow svg:last-child { display: none; } } } } // Search options &__options { position: absolute; inset-inline-end: px2rem(10px); top: px2rem(6px); z-index: 2; pointer-events: none; // [tablet portrait -]: Search modal @include break-to-device(tablet portrait) { inset-inline-end: px2rem(16px); top: px2rem(12px); } // Search option buttons > .md-icon { margin-inline-start: px2rem(4px); color: var(--md-default-fg-color--light); opacity: 0; transition: transform 150ms cubic-bezier(0.1, 0.7, 0.1, 1), opacity 150ms; transform: scale(0.75); // Hide outline for pointer devices &:not(.focus-visible) { outline: none; -webkit-tap-highlight-color: transparent; } // Show buttons when search is active and input non-empty [data-md-toggle="search"]:checked ~ .md-header // stylelint-disable-line .md-search__input:valid ~ & { pointer-events: initial; opacity: 1; transform: scale(1); // Search focus icon &:hover { opacity: 0.7; } } } } // Search suggestions &__suggest { position: absolute; top: 0; display: flex; align-items: center; width: 100%; height: 100%; padding-inline: px2rem(72px) px2rem(44px); font-size: px2rem(18px); color: var(--md-default-fg-color--lighter); white-space: nowrap; opacity: 0; transition: opacity 50ms; // [tablet landscape +]: Header-embedded search @include break-from-device(tablet landscape) { padding-inline-start: px2rem(44px); font-size: px2rem(16px); } // Show suggestions when search is active [data-md-toggle="search"]:checked ~ .md-header & { opacity: 1; transition: opacity 300ms 100ms; } } // Search output &__output { position: absolute; z-index: 1; width: 100%; overflow: hidden; border-end-start-radius: px2rem(2px); border-end-end-radius: px2rem(2px); // [tablet portrait -]: Search modal @include break-to-device(tablet portrait) { top: px2rem(48px); bottom: 0; } // [tablet landscape +]: Header-embedded search @include break-from-device(tablet landscape) { top: px2rem(38px); opacity: 0; transition: opacity 400ms; // Show output when search is active [data-md-toggle="search"]:checked ~ .md-header & { box-shadow: var(--md-shadow-z3); opacity: 1; } } } // Search scroll wrapper &__scrollwrap { height: 100%; overflow-y: auto; // Hack: Chrome 88+ has weird overscroll behavior. Overall, scroll snapping // seems to be something that is not ready for prime time on some browsers. // scroll-snap-type: y mandatory; touch-action: pan-y; background-color: var(--md-default-bg-color); // Hack: promote to own layer to reduce jitter backface-visibility: hidden; // Mitigiate excessive repaints on non-retina devices @media (max-resolution: 1dppx) { transform: translateZ(0); } // [tablet landscape]: Set fixed width to omit unnecessary reflow @include break-at-device(tablet landscape) { width: px2rem(468px); } // [screen +]: Set fixed width to omit unnecessary reflow @include break-from-device(screen) { width: px2rem(688px); } // [tablet landscape +]: Limit height to viewport @include break-from-device(tablet landscape) { max-height: 0; scrollbar-color: var(--md-default-fg-color--lighter) transparent; scrollbar-width: thin; // Show scroll wrapper when search is active [data-md-toggle="search"]:checked ~ .md-header & { max-height: 75vh; } // Search scroll wrapper on hover &:hover { scrollbar-color: var(--md-accent-fg-color) transparent; } // Webkit scrollbar &::-webkit-scrollbar { width: px2rem(4px); height: px2rem(4px); } // Webkit scrollbar thumb &::-webkit-scrollbar-thumb { background-color: var(--md-default-fg-color--lighter); // Webkit scrollbar thumb on hover &:hover { background-color: var(--md-accent-fg-color); } } } } } // Search result .md-search-result { color: var(--md-default-fg-color); word-break: break-word; // Search result metadata &__meta { padding: 0 px2rem(16px); font-size: px2rem(12.8px); line-height: px2rem(36px); color: var(--md-default-fg-color--light); scroll-snap-align: start; background-color: var(--md-default-fg-color--lightest); // [tablet landscape +]: Adjust spacing @include break-from-device(tablet landscape) { padding-inline-start: px2rem(44px); } } // Search result list &__list { padding: 0; margin: 0; list-style: none; // Hack: omit accidental text selection on fast toggle of more button user-select: none; } // Search result item &__item { box-shadow: 0 px2rem(-1px) var(--md-default-fg-color--lightest); // Omit border on first child &:first-child { box-shadow: none; } } // Search result link &__link { display: block; scroll-snap-align: start; outline: none; transition: background-color 250ms; // Search result link on focus/hover &:is(:focus, :hover) { background-color: var(--md-accent-fg-color--transparent); } // Adjust spacing on last child of last link &:last-child p:last-child { margin-bottom: px2rem(12px); } } // Search result more container &__more > summary { position: sticky; top: 0; z-index: 1; display: block; cursor: pointer; scroll-snap-align: start; outline: none; // Hide native details marker &::marker { display: none; } // Hide native details marker - legacy, must be split into a separate rule, // so older browsers don't consider the selector list as invalid &::-webkit-details-marker { display: none; } // Search result more button > div { padding: px2em(12px) px2rem(16px); font-size: px2rem(12.8px); color: var(--md-typeset-a-color); transition: color 250ms, background-color 250ms; // [tablet landscape +]: Adjust spacing @include break-from-device(tablet landscape) { padding-inline-start: px2rem(44px); } } // Search result more link on focus/hover &:is(:focus, :hover) > div { color: var(--md-accent-fg-color); background-color: var(--md-accent-fg-color--transparent); } } // Adjust background for more container in open state &__more[open] > summary { background-color: var(--md-default-bg-color); // box-shadow: 0 px2rem(-1px) hsla(0, 0%, 0%, 0.07) inset; } // Search result article &__article { position: relative; padding: 0 px2rem(16px); overflow: hidden; // [tablet landscape +]: Adjust spacing @include break-from-device(tablet landscape) { padding-inline-start: px2rem(44px); } } // Search result icon &__icon { position: absolute; inset-inline-start: 0; width: px2rem(24px); height: px2rem(24px); margin: px2rem(10px); color: var(--md-default-fg-color--light); // [tablet portrait -]: Hide icon @include break-to-device(tablet portrait) { display: none; } // Search result icon content &::after { display: inline-block; width: 100%; height: 100%; content: ""; background-color: currentcolor; mask-image: var(--md-search-result-icon); mask-repeat: no-repeat; mask-position: center; mask-size: contain; // Adjust for right-to-left languages [dir="rtl"] & { transform: scaleX(-1); } } } // Typesetted content .md-typeset { font-size: px2rem(12.8px); line-height: 1.6; color: var(--md-default-fg-color--light); // Search result article title h1 { margin: px2rem(11px) 0; font-size: px2rem(16px); font-weight: 400; line-height: 1.4; color: var(--md-default-fg-color); // Search term highlighting mark { text-decoration: none; } } // Search result section title h2 { margin: 0.5em 0; font-size: px2rem(12.8px); font-weight: 700; line-height: 1.6; color: var(--md-default-fg-color); // Search term highlighting mark { text-decoration: none; } } } // Search result terms &__terms { display: block; margin: 0.5em 0; font-size: px2rem(12.8px); font-style: italic; color: var(--md-default-fg-color); } // Search term highlighting mark { color: var(--md-accent-fg-color); text-decoration: underline; background-color: transparent; } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_select.scss000066400000000000000000000063411475306445600307170ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Selection .md-select { position: relative; z-index: 1; // Selection tooltip &__inner { position: absolute; top: calc(100% - #{px2rem(4px)}); left: 50%; max-height: 0; margin-top: px2rem(4px); color: var(--md-default-fg-color); background-color: var(--md-default-bg-color); border-radius: px2rem(2px); box-shadow: var(--md-shadow-z2); opacity: 0; transition: transform 250ms 375ms, opacity 250ms 250ms, max-height 0ms 500ms; transform: translate3d(-50%, px2rem(6px), 0); // Selection bubble on parent focus/hover .md-select:is(:focus-within, :hover) & { max-height: px2rem(200px); opacity: 1; transition: transform 250ms cubic-bezier(0.1, 0.7, 0.1, 1), opacity 250ms, max-height 0ms; transform: translate3d(-50%, 0, 0); } // Selection bubble handle &::after { position: absolute; top: 0; left: 50%; width: 0; height: 0; margin-top: px2rem(-4px); margin-left: px2rem(-4px); content: ""; border: px2rem(4px) solid transparent; border-top: 0; border-bottom-color: var(--md-default-bg-color); } } // Selection list &__list { max-height: inherit; padding: 0; margin: 0; overflow: auto; font-size: px2rem(16px); list-style-type: none; border-radius: px2rem(2px); } // Selection item &__item { line-height: px2rem(36px); } // Selection link &__link { display: block; width: 100%; padding-inline: px2rem(12px) px2rem(24px); cursor: pointer; scroll-snap-align: start; outline: none; transition: background-color 250ms, color 250ms; // Link on focus/hover &:is(:focus, :hover) { color: var(--md-accent-fg-color); } // Link on focus &:focus { background-color: var(--md-default-fg-color--lightest); } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_sidebar.scss000066400000000000000000000137041475306445600310520ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Sidebar .md-sidebar { position: sticky; top: px2rem(48px); flex-shrink: 0; align-self: flex-start; width: px2rem(242px); padding: px2rem(24px) 0; // [print]: Hide sidebar @media print { display: none; } // Primary sidebar with navigation &--primary { // [tablet -]: Show navigation as drawer @include break-to-device(tablet) { position: fixed; inset-inline-start: px2rem(-242px); top: 0; z-index: 5; display: block; width: px2rem(242px); height: 100%; background-color: var(--md-default-bg-color); transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms; transform: translateX(0); // Show sidebar when drawer is active [data-md-toggle="drawer"]:checked ~ .md-container & { box-shadow: var(--md-shadow-z3); transform: translateX(px2rem(242px)); // Adjust for right-to-left languages [dir="rtl"] & { transform: translateX(px2rem(-242px)); } } // Stretch scroll wrapper for primary sidebar .md-sidebar__scrollwrap { position: absolute; inset: 0; margin: 0; overflow: hidden; scroll-snap-type: none; } } } // [screen +]: Show navigation as sidebar @include break-from-device(screen) { height: 0; // [no-js]: Switch to native sticky behavior .no-js & { height: auto; } // Adjust spacing for sticky navigation tabs .md-header--lifted ~ .md-container & { top: px2rem(96px); } } // Secondary sidebar with table of contents &--secondary { display: none; order: 2; // [tablet landscape +]: Show table of contents as sidebar @include break-from-device(tablet landscape) { height: 0; // [no-js]: Switch to native sticky behavior .no-js & { height: auto; } // Sidebar is visible &:not([hidden]) { display: block; } // Ensure smooth scrolling on iOS .md-sidebar__scrollwrap { touch-action: pan-y; } } } // Sidebar scroll wrapper &__scrollwrap { margin: 0 px2rem(4px); overflow-y: auto; scrollbar-color: var(--md-default-fg-color--lighter) transparent; scrollbar-gutter: stable; // Hack: Chrome 81+ exhibits a strange bug, where it scrolls the container // to the bottom if `scroll-snap-type` is set on the initial render. For // this reason, we disable scroll snapping until this is resolved (#1667). // scroll-snap-type: y mandatory; scrollbar-width: thin; // Hack: promote to own layer to reduce jitter backface-visibility: hidden; // Webkit scrollbar &::-webkit-scrollbar { width: px2rem(4px); height: px2rem(4px); } // Sidebar scroll wrapper on focus/hover &:is(:focus-within, :hover) { scrollbar-color: var(--md-accent-fg-color) transparent; // Webkit scrollbar thumb &::-webkit-scrollbar-thumb { background-color: var(--md-default-fg-color--lighter); // Webkit scrollbar thumb on hover &:hover { background-color: var(--md-accent-fg-color); } } } } // Hack: the scrollbar is only visible when the sidebar's contents overflow, // which is nice, but leads to the problem where the chevrons of expandable // sections will jump by `4px` when the sidebar is shown. We wanted to fix // this problem for so long, but haven't found a clean way of doing it. // Until now. The following declaration is only applied to Webkit browsers // (e.g. Chrome and Safari), which support styling of scrollbars. The trick // is to add conditional padding on the side of the scrollbar only if the // sidebar's content doesn't overflow. This hack is inspired and adapted // from Ayke van Laëthem's year old trick – see https://bit.ly/3Sb1qql @supports selector(::-webkit-scrollbar) { // Sidebar scroll wrapper &__scrollwrap { scrollbar-gutter: auto; } // Sidebar wrapper &__inner { padding-inline-end: calc(100% - #{px2rem(230px)}); } } } // [tablet -]: Show overlay on active drawer @include break-to-device(tablet) { // Drawer overlay .md-overlay { position: fixed; top: 0; z-index: 5; width: 0; height: 0; background-color: hsla(0, 0%, 0%, 0.54); opacity: 0; transition: width 0ms 250ms, height 0ms 250ms, opacity 250ms; // Show overlay when drawer is active [data-md-toggle="drawer"]:checked ~ & { width: 100%; height: 100%; opacity: 1; transition: width 0ms, height 0ms, opacity 250ms; } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_source.scss000066400000000000000000000122571475306445600307430ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Keyframes // ---------------------------------------------------------------------------- // Show repository facts @keyframes facts { 0% { height: 0; } 100% { height: px2rem(13px); } } // Show repository fact @keyframes fact { 0% { opacity: 0; transform: translateY(100%); } 50% { opacity: 0; } 100% { opacity: 1; transform: translateY(0%); } } // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Repository information variables :root { --md-source-forks-icon: svg-load("octicons/repo-forked-16.svg"); --md-source-repositories-icon: svg-load("octicons/repo-16.svg"); --md-source-stars-icon: svg-load("octicons/star-16.svg"); --md-source-version-icon: svg-load("octicons/tag-16.svg"); } // ---------------------------------------------------------------------------- // Repository information .md-source { display: block; font-size: px2rem(13px); line-height: 1.2; white-space: nowrap; outline-color: var(--md-accent-fg-color); // Hack: promote to own layer to reduce jitter backface-visibility: hidden; transition: opacity 250ms; // Repository information on hover &:hover { opacity: 0.7; } // Repository icon &__icon { display: inline-block; width: px2rem(40px); height: px2rem(48px); vertical-align: middle; // Align with margin only (as opposed to normal button alignment) svg { margin-inline-start: px2rem(12px); margin-top: px2rem(12px); } // Adjust spacing if icon is present + .md-source__repository { padding-inline-start: px2rem(40px); margin-inline-start: px2rem(-40px); } } // Repository name &__repository { display: inline-block; max-width: calc(100% - #{px2rem(24px)}); margin-inline-start: px2rem(12px); overflow: hidden; text-overflow: ellipsis; vertical-align: middle; } // Repository facts &__facts { display: flex; gap: px2rem(8px); width: 100%; padding: 0; margin: px2rem(2px) 0 0; overflow: hidden; font-size: px2rem(11px); list-style-type: none; opacity: 0.75; // Show after the data was loaded .md-source__repository--active & { animation: facts 250ms ease-in; } } // Repository fact &__fact { overflow: hidden; text-overflow: ellipsis; // Show after the data was loaded .md-source__repository--active & { animation: fact 400ms ease-out; } // Repository fact icon &::before { display: inline-block; width: px2rem(12px); height: px2rem(12px); margin-inline-end: px2rem(2px); vertical-align: text-top; content: ""; background-color: currentcolor; mask-repeat: no-repeat; mask-position: center; mask-size: contain; } // Adjust spacing for 2nd+ fact &:nth-child(1n+2) { flex-shrink: 0; } // Repository fact: version &--version::before { mask-image: var(--md-source-version-icon); } // Repository fact: stars &--stars::before { mask-image: var(--md-source-stars-icon); } // Repository fact: forks &--forks::before { mask-image: var(--md-source-forks-icon); } // Repository fact: repositories &--repositories::before { mask-image: var(--md-source-repositories-icon); } } } // Source file information .md-source-file { margin: 1em 0; // Source file information fact &__fact { display: inline-flex; gap: px2rem(6px); align-items: center; margin-inline-end: px2rem(12px); font-size: px2rem(13.6px); color: var(--md-default-fg-color--light); // Adjust vertical spacing .md-icon { flex-shrink: 0; margin-bottom: px2rem(1px); } // Author .md-author { float: inline-start; margin-right: px2rem(4px); } // Adjust size of icon svg { width: px2rem(18px); } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_status.scss000066400000000000000000000045511475306445600307640ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Status variables :root { --md-status: svg-load("material/information-outline.svg"); --md-status--new: svg-load("material/alert-decagram.svg"); --md-status--deprecated: svg-load("material/trash-can.svg"); --md-status--encrypted: svg-load("material/shield-lock.svg"); } // ---------------------------------------------------------------------------- // Status .md-status { // Status icon &::after { display: inline-block; width: px2em(18px); height: px2em(18px); vertical-align: text-bottom; content: ""; background-color: var(--md-default-fg-color--light); mask-image: var(--md-status); mask-repeat: no-repeat; mask-position: center; mask-size: contain; } // Status icon on hover &:hover::after { background-color: currentcolor; } // Status: new &--new::after { mask-image: var(--md-status--new); } // Status: deprecated &--deprecated::after { mask-image: var(--md-status--deprecated); } // Status: encrypted &--encrypted::after { mask-image: var(--md-status--encrypted); } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_tabs.scss000066400000000000000000000076511475306445600303760ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Navigation tabs .md-tabs { // Must be higher than the z-index of the back-to-top button, or the button // will overlay the navigation tabs bar when scrolling up fast. z-index: 3; display: block; width: 100%; overflow: auto; line-height: 1.3; color: var(--md-primary-bg-color); background-color: var(--md-primary-fg-color); // [print]: Hide tabs @media print { display: none; } // [tablet -]: Hide tabs @include break-to-device(tablet) { display: none; } // Navigation tabs are hidden &[hidden] { pointer-events: none; } // Navigation tabs list &__list { display: flex; padding: 0; margin: 0; margin-inline-start: px2rem(4px); overflow: auto; white-space: nowrap; list-style: none; contain: content; // Hack: don't show scrollbar when navigation tabs overflow, which should // only happen in rare occasions, as adding too many top level sections is // discouraged, since hiding content on horitontal axis doesn't lead to a // good user experience. It's just harder to discover. scrollbar-width: none; // Hack: see above &::-webkit-scrollbar { display: none; } } // Navigation tabs item &__item { height: px2rem(48px); padding-inline: px2rem(12px); // Navigation tabs link in active navigation &--active .md-tabs__link { color: inherit; opacity: 1; } } // Navigation tabs link - could be defined as block elements and aligned via // line height, but this would imply more repaints when scrolling &__link { display: flex; margin-top: px2rem(16px); font-size: px2rem(14px); outline-color: var(--md-accent-fg-color); outline-offset: px2rem(4px); // Hack: save a repaint when tabs are appearing on scrolling up backface-visibility: hidden; opacity: 0.7; transition: transform 400ms cubic-bezier(0.1, 0.7, 0.1, 1), opacity 250ms; // Navigation tabs link on focus/hover &:is(:focus, :hover) { color: inherit; opacity: 1; } // Navigation tabs link icon svg { height: 1.3em; margin-inline-end: px2rem(8px); fill: currentcolor; } // Delay transitions by a small amount @for $i from 2 through 16 { .md-tabs__item:nth-child(#{$i}) & { transition-delay: 20ms * ($i - 1); } } // Hide tabs upon scrolling - disable transition to minimizes repaints // while scrolling down, while scrolling up seems to be okay .md-tabs[hidden] & { opacity: 0; transition: transform 0ms 100ms, opacity 100ms; transform: translateY(50%); } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_tag.scss000066400000000000000000000061761475306445600302210ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Tag variables :root { --md-tag-icon: svg-load("material/pound.svg"); } // ---------------------------------------------------------------------------- // Scoped in typesetted content to match specificity of regular content .md-typeset { // Tag list (if not hidden) .md-tags:not([hidden]) { display: inline-flex; flex-wrap: wrap; gap: px2em(8px); margin-top: px2em(-2px); margin-bottom: px2em(12px); } // Tag .md-tag { display: inline-flex; gap: px2em(8px); align-items: center; padding: px2em(4px, 12.8px) px2em(10px, 12.8px); font-size: px2rem(12.8px); // Fallback font-size: min(px2em(12.8px), px2rem(12.8px)); font-weight: 700; line-height: 1.6; letter-spacing: initial; background: var(--md-default-fg-color--lightest); border-radius: px2rem(48px); // Linked tag &[href] { color: inherit; outline: none; -webkit-tap-highlight-color: transparent; transition: color 125ms, background-color 125ms; // Linked tag on focus/hover &:is(:focus, :hover) { color: var(--md-accent-bg-color); background-color: var(--md-accent-fg-color); } } // Tag inside headline [id] > & { vertical-align: text-top; } } // Tag icon .md-tag-icon { // Tag icon content &::before { display: inline-block; width: 1.2em; height: 1.2em; vertical-align: text-bottom; content: ""; background-color: var(--md-default-fg-color--lighter); mask-image: var(--md-tag-icon); mask-repeat: no-repeat; mask-position: center; mask-size: contain; transition: background-color 125ms; } // Linked tag on focus/hover &[href]:is(:focus, :hover)::before { background-color: var(--md-accent-bg-color); } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_tooltip.scss000066400000000000000000000211401475306445600311240ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Keyframes // ---------------------------------------------------------------------------- // Continuous pulse animation @keyframes pulse { 0% { transform: scale(0.95); } 75% { transform: scale(1); } 100% { transform: scale(0.95); } } // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Tooltip variables :root { --md-annotation-bg-icon: svg-load("material/circle.svg"); --md-annotation-icon: svg-load("material/plus-circle.svg"); --md-tooltip-width: #{px2rem(400px)}; } // ---------------------------------------------------------------------------- // Tooltip .md-tooltip { position: absolute; top: var(--md-tooltip-y); left: clamp( var(--md-tooltip-0, #{px2rem(0px)}) + #{px2rem(16px)}, var(--md-tooltip-x), 100vw + var(--md-tooltip-0, #{px2rem(0px)}) + #{px2rem(16px)} - var(--md-tooltip-width) - 2 * #{px2rem(16px)} ); // Hack: set an explicit `z-index` so we can transition it to ensure that any // following elements are not overlaying the tooltip during the transition. z-index: 0; width: var(--md-tooltip-width); max-width: calc(100vw - 2 * #{px2rem(16px)}); font-family: var(--md-text-font-family); color: var(--md-default-fg-color); background-color: var(--md-default-bg-color); border-radius: px2rem(2px); box-shadow: var(--md-shadow-z2); opacity: 0; transition: transform 0ms 250ms, opacity 250ms, z-index 250ms; transform: translateY(px2rem(-8px)); // Hack: promote to own layer to reduce jitter backface-visibility: hidden; // Active tooltip &--active { z-index: 2; opacity: 1; transition: transform 250ms cubic-bezier(0.1, 0.7, 0.1, 1), opacity 250ms, z-index 0ms; transform: translateY(0); } // Inline tooltip &--inline { width: auto; font-weight: 700; user-select: none; // Tooltip is not active &:not(.md-tooltip--active) { transform: translateY(px2rem(4px)) scale(0.9); } // Tooltip wrapper .md-tooltip__inner { padding: px2rem(4px) px2rem(8px); font-size: px2rem(10px); } // Hack: When the host element is hidden, the context for the tooltip is // lost immediately, resulting in invalid and sometimes jumpy positioning. [hidden] + & { display: none; } } // Show outline on target and for keyboard devices :is(.focus-visible > &, &:target) { outline: var(--md-accent-fg-color) auto; } // Tooltip wrapper &__inner { padding: px2rem(16px); font-size: px2rem(12.8px); // Adjust spacing on first child &.md-typeset > :first-child { margin-top: 0; } // Adjust spacing on last child &.md-typeset > :last-child { margin-bottom: 0; } } } // ---------------------------------------------------------------------------- // Annotation .md-annotation { font-style: initial; font-weight: 400; text-align: initial; white-space: normal; vertical-align: text-bottom; outline: none; // Adjust for right-to-left languages [dir="rtl"] & { direction: rtl; } // Annotation index in code block code & { font-family: var(--md-code-font-family); font-size: inherit; } // Annotation is not hidden (e.g. when copying) &:not([hidden]) { display: inline-block; // Hack: ensure that the line height doesn't exceed the line height of the // hosting line, because it will lead to dancing pixels. line-height: 1.25; } // Annotation index &__index { position: relative; z-index: 0; display: inline-block; margin-inline: 0.4ch; vertical-align: text-top; cursor: pointer; user-select: none; outline: none; // Hack: Work around Firefox bug that renders a subpixel outline when // rotating a mask image element - see https://t.ly/qA1s4 overflow: hidden; // stylelint-disable-line order/properties-order border-radius: 0.01px; // Hack: increase specificity to override default for anchors in typesetted // content, because transitions are defined on anchor elements .md-annotation & { transition: z-index 250ms; } // [screen]: Render annotation markers as icons @media screen { width: 2.2ch; // Annotation is visible [data-md-visible] > & { animation: pulse 2000ms infinite; } // Annotation marker background &::before { position: absolute; top: -0.1ch; z-index: -1; width: 2.2ch; height: 2.2ch; content: ""; background: var(--md-default-bg-color); mask-image: var(--md-annotation-bg-icon); mask-repeat: no-repeat; mask-position: center; mask-size: contain; } // Annotation marker – the marker must be positioned absolutely behind // the index, because it shouldn't impact the rendering of a code block. // Otherwise, small rounding differences in browsers can sometimes mess up // alignment of text following an annotation. &::after { position: absolute; top: -0.1ch; z-index: -1; width: 2.2ch; height: 2.2ch; content: ""; background-color: var(--md-default-fg-color--lighter); mask-image: var(--md-annotation-icon); mask-repeat: no-repeat; mask-position: center; mask-size: contain; transition: background-color 250ms, transform 250ms; // Hack: promote to own layer to reduce jitter transform: scale(1.0001); // Annotation marker for active tooltip .md-tooltip--active + & { transform: rotate(45deg); } // Annotation marker for active tooltip or on hover :is(.md-tooltip--active + &, :hover > &) { background-color: var(--md-accent-fg-color); } } } // Annotation index for active tooltip .md-tooltip--active + & { z-index: 2; transition-duration: 0ms; animation-play-state: paused; } // Annotation marker [data-md-annotation-id] { display: inline-block; // [print]: Render annotation markers as numbers @media print { padding: 0 0.6ch; font-weight: 700; color: var(--md-default-bg-color); white-space: nowrap; background: var(--md-default-fg-color--lighter); border-radius: 2ch; // Annotation marker content &::after { content: attr(data-md-annotation-id); } } } } } // ---------------------------------------------------------------------------- // Scoped in typesetted content to match specificity of regular content .md-typeset { // Annotation list .md-annotation-list { list-style: none; counter-reset: xxx; // Annotation list item li { position: relative; // Annotation list marker &::before { position: absolute; inset-inline-start: px2em(-34px); top: px2em(4px); min-width: 2ch; height: 2ch; padding: 0 0.6ch; font-size: px2em(14.2px); font-weight: 700; line-height: 1.25; color: var(--md-default-bg-color); text-align: center; content: counter(xxx); counter-increment: xxx; background: var(--md-default-fg-color--lighter); border-radius: 2ch; } } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_tooltip2.scss000066400000000000000000000150441475306445600312140ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Tooltip variables :root { --md-tooltip-width: #{px2rem(400px)}; --md-tooltip-tail: #{px2rem(6px)}; } // ---------------------------------------------------------------------------- // Tooltip .md-tooltip2 { position: absolute; // Note that the top offset is computed from the host element offset plus the // tooltip offset, which is always measured relative to the host element top: calc( var(--md-tooltip-host-y) + var(--md-tooltip-y) ); // Hack: set an explicit `z-index` so we can transition it to ensure that any // following elements are not overlaying the tooltip during the transition. z-index: 0; inline-size: 100%; font-family: var(--md-text-font-family); color: var(--md-default-fg-color); pointer-events: none; opacity: 0; transition: transform 0ms 250ms, opacity 250ms, z-index 250ms; transform: translateY(px2rem(-8px)); // We explicitly set the origin to the tooltip tail, allowing the author to // easily add further transforms to the tooltip, customizing the transition transform-origin: calc( var(--md-tooltip-host-x) + var(--md-tooltip-x) ) 0; // Hack: promote to own layer to reduce jitter backface-visibility: hidden; // Tooltip tail &::before { position: absolute; // The offset of the tooltip tail is computed from the host element offset, // plus the tooltip offset, which equals the center of the host element, // and minus the half width of the tooltip tail to center it. Then, on both // sides, the tooltip tail is padded with 150% of the inset area. left: clamp( 1.5 * #{px2rem(16px)}, calc( var(--md-tooltip-host-x) + var(--md-tooltip-x) - var(--md-tooltip-tail) ), calc( 100vw - 2 * var(--md-tooltip-tail) - 1.5 * #{px2rem(16px)} ) ); z-index: 1; display: block; content: ""; border-inline: var(--md-tooltip-tail) solid transparent; } // Tooltip tail if rendered above target &--top::before { bottom: calc(-1 * var(--md-tooltip-tail) + px2rem(0.5px)); filter: drop-shadow(0 1px 0 hsla(0, 0%, 0%, 0.05)); border-top: var(--md-tooltip-tail) solid var(--md-default-bg-color); } // Tooltip tail if rendered below target &--bottom::before { top: calc(-1 * var(--md-tooltip-tail) + px2rem(0.5px)); filter: drop-shadow(0 -1px 0 hsla(0, 0%, 0%, 0.05)); border-bottom: var(--md-tooltip-tail) solid var(--md-default-bg-color); } // Tooltip is visible &--active { z-index: 2; opacity: 1; transition: transform 400ms cubic-bezier(0, 1, 0.5, 1), opacity 250ms, z-index 0ms; transform: translateY(0); } // Tooltip wrapper &__inner { position: relative; // The tooltip is slightly moved to the left, so it nicely aligns with the // content of the tooltip set by the padding of this element. On both sides, // the tooltip is padded with the inset area, so it never touches the edge // of the window for a better user experience. left: clamp( #{px2rem(16px)}, calc( var(--md-tooltip-host-x) - #{px2rem(16px)} ), calc( 100vw - var(--md-tooltip-width) - #{px2rem(16px)} ) ); max-width: calc(100vw - 2 * #{px2rem(16px)}); max-height: 40vh; scrollbar-gutter: stable; scrollbar-width: thin; background-color: var(--md-default-bg-color); border-radius: px2rem(2px); box-shadow: var(--md-shadow-z2); // Webkit scrollbar &::-webkit-scrollbar { width: px2rem(4px); height: px2rem(4px); } // Webkit scrollbar thumb &::-webkit-scrollbar-thumb { background-color: var(--md-default-fg-color--lighter); // Webkit scrollbar thumb on hover &:hover { background-color: var(--md-accent-fg-color); } } // Tooltip is non-interactive - this role should be set if the tooltip has // only informational and non-interactive content, e.g., an actual tooltip. // It has no explicitl width set, uses a smaller font, and is centered, // other than a tooltip with typesetted content. [role="tooltip"] > & { left: clamp( #{px2rem(16px)}, calc( var(--md-tooltip-host-x) + var(--md-tooltip-x) - var(--md-tooltip-width) / 2 ), calc( 100vw - var(--md-tooltip-width) - #{px2rem(16px)} ) ); width: fit-content; // @todo refactor - this is currently a hack to fix overly long tooltips, // but should be refactored in the future to be more flexible max-width: min( calc(100vw - 2 * #{px2rem(16px)}), 400px ); padding: px2rem(4px) px2rem(8px); font-size: px2rem(10px); font-weight: 700; // If the author wishes to keep the tooltip visible upon hover and make // the text selectable, this property can be set to `initial` user-select: none; } // Adjust spacing on first child &.md-typeset > :first-child { margin-top: 0; } // Adjust spacing on last child &.md-typeset > :last-child { margin-bottom: 0; } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_top.scss000066400000000000000000000050731475306445600302430ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Back-to-top button .md-top { position: fixed; top: px2rem(48px + 16px); z-index: 2; display: block; padding: px2rem(8px) px2rem(16px); margin-inline-start: 50%; font-size: px2rem(14px); color: var(--md-default-fg-color--light); cursor: pointer; background-color: var(--md-default-bg-color); border-radius: px2rem(32px); outline: none; box-shadow: var(--md-shadow-z2); transition: color 125ms, background-color 125ms, transform 125ms cubic-bezier(0.4, 0, 0.2, 1), opacity 125ms; transform: translate(-50%, 0); // [print]: Hide back-to-top button @media print { display: none; } // Adjust for right-to-left languages [dir="rtl"] & { transform: translate(50%, 0); } // Back-to-top button is hidden &[hidden] { pointer-events: none; opacity: 0; transition-duration: 0ms; transform: translate(-50%, px2rem(4px)); // Adjust for right-to-left languages [dir="rtl"] & { transform: translate(50%, px2rem(4px)); } } // Back-to-top button on focus/hover &:is(:focus, :hover) { color: var(--md-accent-bg-color); background-color: var(--md-accent-fg-color); } // Inline icon svg { display: inline-block; vertical-align: -0.5em; } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/components/_version.scss000066400000000000000000000105551475306445600311270ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Keyframes // ---------------------------------------------------------------------------- // See https://github.com/squidfunk/mkdocs-material/issues/2429 @keyframes hoverfix { 0% { pointer-events: none; } } // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Version selection variables :root { --md-version-icon: svg-load("fontawesome/solid/caret-down.svg"); } // ---------------------------------------------------------------------------- // Version selection .md-version { flex-shrink: 0; height: px2rem(48px); font-size: px2rem(16px); // Current selection &__current { position: relative; // Hack: in general, we would use `vertical-align` to align the version at // the bottom with the title, but since the list uses absolute positioning, // this won't work consistently. Furthermore, we would need to use inline // positioning to align the links, which looks jagged. top: px2rem(1px); margin-inline: px2rem(28px) px2rem(8px); color: inherit; cursor: pointer; outline: none; // Version selection icon &::after { display: inline-block; width: px2rem(8px); height: px2rem(12px); margin-inline-start: px2rem(8px); content: ""; background-color: currentcolor; mask-image: var(--md-version-icon); mask-repeat: no-repeat; mask-position: center; mask-size: contain; } } // Version alias &__alias { margin-left: px2rem(6px); opacity: 0.7; } // Version selection list &__list { position: absolute; top: px2rem(3px); z-index: 3; max-height: 0; padding: 0; margin: px2rem(4px) px2rem(16px); overflow: auto; color: var(--md-default-fg-color); list-style-type: none; scroll-snap-type: y mandatory; background-color: var(--md-default-bg-color); border-radius: px2rem(2px); box-shadow: var(--md-shadow-z2); opacity: 0; transition: max-height 0ms 500ms, opacity 250ms 250ms; // Version selection list on parent focus/hover .md-version:is(:focus-within, :hover) & { max-height: px2rem(200px); opacity: 1; transition: max-height 0ms, opacity 250ms; } // Fix hover on touch devices @media (pointer: coarse), (hover: none) { // Switch off on hover .md-version:hover & { animation: hoverfix 250ms forwards; } // Enable on focus .md-version:focus-within & { animation: none; } } } // Version selection item &__item { line-height: px2rem(36px); } // Version selection link &__link { display: block; width: 100%; padding-inline: px2rem(12px) px2rem(24px); white-space: nowrap; cursor: pointer; scroll-snap-align: start; outline: none; transition: color 250ms, background-color 250ms; // Link on focus/hover &:is(:focus, :hover) { color: var(--md-accent-fg-color); } // Link on focus &:focus { background-color: var(--md-default-fg-color--lightest); } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/extensions/000077500000000000000000000000001475306445600264125ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/extensions/markdown/000077500000000000000000000000001475306445600302345ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/extensions/markdown/_admonition.scss000066400000000000000000000136541475306445600334420ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// @use "sass:color"; @use "sass:list"; // ---------------------------------------------------------------------------- // Variables // ---------------------------------------------------------------------------- /// Admonition flavours $admonitions: ( "note": pencil-circle $clr-blue-a200, "abstract": clipboard-text $clr-light-blue-a400, "info": information $clr-cyan-a700, "tip": fire $clr-teal-a700, "success": check $clr-green-a700, "question": help-circle $clr-light-green-a700, "warning": alert $clr-orange-a400, "failure": close $clr-red-a200, "danger": lightning-bolt-circle $clr-red-a400, "bug": shield-bug $clr-pink-a400, "example": test-tube $clr-deep-purple-a200, "quote": format-quote-close $clr-grey ) !default; // ---------------------------------------------------------------------------- // Rules: layout // ---------------------------------------------------------------------------- // Admonition variables :root { @each $name, $props in $admonitions { --md-admonition-icon--#{$name}: svg-load("material/#{list.nth($props, 1)}.svg"); } } // ---------------------------------------------------------------------------- // Scoped in typesetted content to match specificity of regular content .md-typeset { // Admonition - note that all styles also apply to details tags, which are // rendered as collapsible admonitions with summary elements as titles. .admonition { display: flow-root; padding: 0 px2rem(12px); margin: px2em(20px, 12.8px) 0; font-size: px2rem(12.8px); color: var(--md-admonition-fg-color); background-color: var(--md-admonition-bg-color); border: px2rem(1.5px) solid $clr-blue-a200; border-radius: px2rem(4px); box-shadow: var(--md-shadow-z1); transition: box-shadow 125ms; page-break-inside: avoid; // [print]: Omit shadow as it may lead to rendering errors @media print { box-shadow: none; } // Admonition on focus &:focus-within { box-shadow: 0 0 0 px2rem(4px) color.adjust($clr-blue-a200, $alpha: -0.9); } // Hack: Chrome exhibits a weird issue where it will set nested elements to // content-box. Doesn't happen in other browsers, so looks like a bug. > * { box-sizing: border-box; } // Adjust vertical spacing for nested admonitions .admonition { margin-top: 1em; margin-bottom: 1em; } // Adjust spacing for contained table wrappers .md-typeset__scrollwrap { margin: 1em px2rem(-12px); } // Adjust spacing for contained tables .md-typeset__table { padding: 0 px2rem(12px); } // Adjust spacing for single-child tabbed block container > .tabbed-set:only-child { margin-top: 0; } // Adjust spacing on last child html & > :last-child { margin-bottom: px2rem(12px); } } // Admonition title .admonition-title { position: relative; padding-block: px2rem(8px); padding-inline: px2rem(40px) px2rem(12px); margin-block: 0; margin-inline: px2rem(-12px); font-weight: 700; background-color: color.adjust($clr-blue-a200, $alpha: -0.9); border: none; border-inline-start-width: px2rem(4px); border-start-start-radius: px2rem(2px); border-start-end-radius: px2rem(2px); // Adjust spacing for title-only admonitions html &:last-child { margin-bottom: 0; } // Admonition icon &::before { position: absolute; inset-inline-start: px2rem(12px); top: px2em(10px); width: px2rem(20px); height: px2rem(20px); content: ""; background-color: $clr-blue-a200; mask-image: var(--md-admonition-icon--note); mask-repeat: no-repeat; mask-position: center; mask-size: contain; } // Inline code block code { box-shadow: 0 0 0 px2rem(1px) var(--md-default-fg-color--lightest); } } } // ---------------------------------------------------------------------------- // Rules: flavours // ---------------------------------------------------------------------------- // Define admonition flavors @each $name, $props in $admonitions { $tint: list.nth($props, 2); // Admonition flavour .md-typeset .admonition.#{$name} { border-color: $tint; // Admonition on focus &:focus-within { box-shadow: 0 0 0 px2rem(4px) color.adjust($tint, $alpha: -0.9); } } // Admonition flavour title .md-typeset .#{$name} > .admonition-title { background-color: color.adjust($tint, $alpha: -0.9); // Admonition icon &::before { background-color: $tint; mask-image: var(--md-admonition-icon--#{$name}); } // Details marker &::after { color: $tint; } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/extensions/markdown/_footnotes.scss000066400000000000000000000100721475306445600333100ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Footnotes variables :root { --md-footnotes-icon: svg-load("material/keyboard-return.svg"); } // ---------------------------------------------------------------------------- // Scoped in typesetted content to match specificity of regular content .md-typeset { // Footnote container .footnote { font-size: px2rem(12.8px); color: var(--md-default-fg-color--light); // Footnote list - omit left indentation > ol { margin-inline-start: 0; // Footnote item - footnote items can contain lists, so we need to scope // the spacing adjustments to the top-level footnote item. > li { transition: color 125ms; // Darken color on target &:target { color: var(--md-default-fg-color); } // Show backreferences on footnote focus without transition &:focus-within .footnote-backref { opacity: 1; transition: none; transform: translateX(0); } // Show backreferences on footnote hover/target &:is(:hover, :target) .footnote-backref { opacity: 1; transform: translateX(0); } // Adjust spacing on first child > :first-child { margin-top: 0; } } } } // Footnote reference .footnote-ref { font-size: px2em(12px, 16px); font-weight: 700; // Hack: increase specificity to override default html & { outline-offset: px2rem(2px); } } // Show outline for all devices [id^="fnref:"]:target > .footnote-ref { outline: auto; } // Footnote backreference .footnote-backref { display: inline-block; // Hack: omit Unicode arrow for replacement with icon font-size: 0; color: var(--md-typeset-a-color); vertical-align: text-bottom; opacity: 0; transition: color 250ms, transform 250ms 250ms, opacity 125ms 250ms; transform: translateX(px2rem(5px)); // [print]: Show footnote backreferences @media print { color: var(--md-typeset-a-color); opacity: 1; transform: translateX(0); } // Adjust for right-to-left languages [dir="rtl"] & { transform: translateX(px2rem(-5px)); } // Adjust color on hover &:hover { color: var(--md-accent-fg-color); } // Footnote backreference icon &::before { display: inline-block; width: px2rem(16px); height: px2rem(16px); content: ""; background-color: currentcolor; mask-image: var(--md-footnotes-icon); mask-repeat: no-repeat; mask-position: center; mask-size: contain; // Adjust for right-to-left languages [dir="rtl"] & { // Flip icon vertically svg { transform: scaleX(-1); } } } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/extensions/markdown/_toc.scss000066400000000000000000000056421475306445600320640ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Scoped in typesetted content to match specificity of regular content .md-typeset { // Headerlink .headerlink { display: inline-block; margin-inline-start: px2rem(10px); color: var(--md-default-fg-color--lighter); opacity: 0; transition: color 250ms, opacity 125ms; // [print]: Hide headerlinks @media print { display: none; } } // Show headerlinks on parent hover :is(:hover, :target) > .headerlink, .headerlink:focus { opacity: 1; transition: color 250ms, opacity 125ms; } // Adjust color on parent target or focus/hover :target > .headerlink, .headerlink:is(:focus, :hover) { color: var(--md-accent-fg-color); } // Adjust scroll margin for all elements with `id` attributes :target { --md-scroll-margin: #{px2rem(48px + 24px)}; --md-scroll-offset: #{px2rem(0px)}; // Scroll margin is finally ready for prime time - before, we used a hack // for anchor correction based on pseudo elements but those times are gone. scroll-margin-top: calc( var(--md-scroll-margin) - var(--md-scroll-offset) ); // [screen +]: Sticky navigation tabs @include break-from-device(screen) { // Adjust scroll margin for sticky navigation tabs .md-header--lifted ~ .md-container & { --md-scroll-margin: #{px2rem(96px + 24px)}; } } } // Adjust scroll offset for headlines of level 1-3 :is(h1, h2, h3):target { --md-scroll-offset: #{px2rem(4px)}; } // Adjust scroll offset for headlines of level 4 h4:target { --md-scroll-offset: #{px2rem(3px)}; } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/extensions/pymdownx/000077500000000000000000000000001475306445600302775ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/extensions/pymdownx/_arithmatex.scss000066400000000000000000000042201475306445600334770ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Scoped in typesetted content to match specificity of regular content .md-typeset { // Arithmatex container div.arithmatex { overflow: auto; // [mobile -]: Align with body copy @include break-to-device(mobile) { margin: 0 px2rem(-16px); // Arithmatex content > * { width: min-content; } } // Arithmatex content > * { padding: 0 px2rem(16px); margin-inline: auto !important; // stylelint-disable-line touch-action: auto; // MathJax container - see https://bit.ly/3HR8YJ5 mjx-container { margin: 0 !important; // stylelint-disable-line } } // Prevent horizontal overflow, as this element is not visible but still has // a height, which might be a bug in MathJax - see https://t.ly/ckPiA mjx-assistive-mml { height: 0; } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/extensions/pymdownx/_critic.scss000066400000000000000000000043131475306445600326110ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Scoped in typesetted content to match specificity of regular content .md-typeset { // Deletion del.critic { background-color: var(--md-typeset-del-color); box-decoration-break: clone; } // Addition ins.critic { background-color: var(--md-typeset-ins-color); box-decoration-break: clone; } // Comment .critic.comment { color: var(--md-code-hl-comment-color); box-decoration-break: clone; // Comment opening mark &::before { content: "/* "; } // Comment closing mark &::after { content: " */"; } } // Critic block .critic.block { display: block; padding-inline: px2rem(16px); margin: 1em 0; overflow: auto; box-shadow: none; // Adjust spacing on first child > :first-child { margin-top: 0.5em; } // Adjust spacing on last child > :last-child { margin-bottom: 0.5em; } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/extensions/pymdownx/_details.scss000066400000000000000000000074351475306445600327710ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Details variables :root { --md-details-icon: svg-load("material/chevron-right.svg"); } // ---------------------------------------------------------------------------- // Scoped in typesetted content to match specificity of regular content .md-typeset { // Details details { @extend .admonition; display: flow-root; padding-top: 0; overflow: visible; // Details title icon - rotate icon on transition to open state &[open] > summary::after { transform: rotate(90deg); } // Adjust spacing for details in closed state &:not([open]) { padding-bottom: 0; box-shadow: none; // Hack: we cannot set `overflow: hidden` on the `details` element (which // is why we set it to `overflow: visible`, as the outline would not be // visible when focusing. Therefore, we must set the border radius on the // summary explicitly. > summary { border-radius: px2rem(2px); } } } // Details title summary { @extend .admonition-title; display: block; min-height: px2rem(20px); padding-inline-end: px2rem(36px); // Hack: Work around Firefox bug that renders a subpixel outline when // rotating a mask image element - see https://t.ly/qA1s4 overflow: hidden; cursor: pointer; border-start-start-radius: px2rem(2px); border-start-end-radius: px2rem(2px); // Show outline for keyboard devices &.focus-visible { outline-color: var(--md-accent-fg-color); outline-offset: px2rem(4px); } // Hide outline for pointer devices &:not(.focus-visible) { outline: none; -webkit-tap-highlight-color: transparent; } // Details marker &::after { position: absolute; inset-inline-end: px2rem(8px); top: px2em(10px); width: px2rem(20px); height: px2rem(20px); content: ""; background-color: currentcolor; mask-image: var(--md-details-icon); mask-repeat: no-repeat; mask-position: center; mask-size: contain; transition: transform 250ms; transform: rotate(0deg); // Adjust for right-to-left languages [dir="rtl"] & { transform: rotate(180deg); } } // Hide native details marker - modern &::marker { display: none; } // Hide native details marker - legacy, must be split into a separate rule, // so older browsers don't consider the selector list as invalid &::-webkit-details-marker { display: none; } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/extensions/pymdownx/_emoji.scss000066400000000000000000000043161475306445600324420ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Scoped in typesetted content to match specificity of regular content .md-typeset { // Emoji and icon container :is(.emojione, .twemoji, .gemoji) { --md-icon-size: #{px2em(18px)}; display: inline-flex; height: var(--md-icon-size); vertical-align: text-top; // Icon - inlined via mkdocs-material-extensions svg { width: var(--md-icon-size); max-height: 100%; fill: currentcolor; } } // Icon with size modifier :is(.lg, .xl, .xxl, .xxxl) { vertical-align: text-bottom; } // Adjust icon alignment .middle { vertical-align: middle; } // Adjust icon size to 1.5x .lg { --md-icon-size: #{px2em(24px)}; } // Adjust icon size to 2x .xl { --md-icon-size: #{px2em(36px)}; } // Adjust icon size to 3x .xxl { --md-icon-size: #{px2em(48px)}; } // Adjust icon size to 4x .xxxl { --md-icon-size: #{px2em(64px)}; } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/extensions/pymdownx/_highlight.scss000066400000000000000000000253621475306445600333120ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules: syntax highlighting // ---------------------------------------------------------------------------- // Code block .highlight { // .o = Operator // .ow = Operator, word :is(.o, .ow) { color: var(--md-code-hl-operator-color); } .p { // Punctuation color: var(--md-code-hl-punctuation-color); } // .cpf = Comment, preprocessor file // .l = Literal // .s = Literal, string // .sb = Literal, string backticks // .sc = Literal, string char // .s2 = Literal, string double // .si = Literal, string interpol // .s1 = Literal, string single // .ss = Literal, string symbol :is(.cpf, .l, .s, .sb, .sc, .s2, .si, .s1, .ss) { color: var(--md-code-hl-string-color); } // .cp = Comment, pre-processor // .se = Literal, string escape // .sh = Literal, string heredoc // .sr = Literal, string regex // .sx = Literal, string other :is(.cp, .se, .sh, .sr, .sx) { color: var(--md-code-hl-special-color); } // .m = Number // .mb = Number, binary // .mf = Number, float // .mh = Number, hex // .mi = Number, integer // .il = Number, integer long // .mo = Number, octal :is(.m, .mb, .mf, .mh, .mi, .il, .mo) { color: var(--md-code-hl-number-color); } // .k = Keyword, // .kd = Keyword, declaration // .kn = Keyword, namespace // .kp = Keyword, pseudo // .kr = Keyword, reserved // .kt = Keyword, type :is(.k, .kd, .kn, .kp, .kr, .kt) { color: var(--md-code-hl-keyword-color); } // .kc = Keyword, constant // .n = Name :is(.kc, .n) { color: var(--md-code-hl-name-color); } // .no = Name, constant // .nb = Name, builtin // .bp = Name, builtin pseudo :is(.no, .nb, .bp) { color: var(--md-code-hl-constant-color); } // .nc = Name, class // .ne = Name, exception // .nf = Name, function // .nn = Name, namespace :is(.nc, .ne, .nf, .nn) { color: var(--md-code-hl-function-color); } // .nd = Name, decorator // .ni = Name, entity // .nl = Name, label // .nt = Name, tag :is(.nd, .ni, .nl, .nt) { color: var(--md-code-hl-keyword-color); } // .c = Comment // .cm = Comment, multiline // .c1 = Comment, single // .ch = Comment, shebang // .cs = Comment, special // .sd = Literal, string doc :is(.c, .cm, .c1, .ch, .cs, .sd) { color: var(--md-code-hl-comment-color); } // .na = Name, attribute // .nv = Variable, // .vc = Variable, class // .vg = Variable, global // .vi = Variable, instance :is(.na, .nv, .vc, .vg, .vi) { color: var(--md-code-hl-variable-color); } // .ge = Generic, emph // .gr = Generic, error // .gh = Generic, heading // .go = Generic, output // .gp = Generic, prompt // .gs = Generic, strong // .gu = Generic, subheading // .gt = Generic, traceback :is(.ge, .gr, .gh, .go, .gp, .gs, .gu, .gt) { color: var(--md-code-hl-generic-color); } // .gd = Diff, delete // .gi = Diff, insert :is(.gd, .gi) { padding: 0 px2em(2px); margin: 0 px2em(-2px); border-radius: px2rem(2px); } .gd { // Diff, delete background-color: var(--md-typeset-del-color); } .gi { // Diff, insert background-color: var(--md-typeset-ins-color); } // Highlighted line .hll { display: block; padding: 0 px2em(16px, 13.6px); margin: 0 px2em(-16px, 13.6px); background-color: var(--md-code-hl-color--light); box-shadow: 2px 0 0 0 var(--md-code-hl-color) inset; } // Code block title span.filename { position: relative; display: flow-root; padding: px2em(9px, 13.6px) px2em(16px, 13.6px); margin-top: 1em; font-size: px2em(13.6px); font-weight: 700; background-color: var(--md-code-bg-color); border-bottom: px2rem(1px) solid var(--md-default-fg-color--lightest); border-top-left-radius: px2rem(2px); border-top-right-radius: px2rem(2px); // Adjust spacing for code block + pre { margin-top: 0; // Remove rounded border on top side > code { border-top-left-radius: 0; border-top-right-radius: 0; } } } // Code block line numbers (pymdownx-inline) [data-linenos]::before { position: sticky; left: px2em(-16px, 13.6px); // A `z-index` of 3 is necessary for ensuring that code block annotations // don't overlay line numbers, as active annotations have a `z-index` of 2. z-index: 3; float: left; padding-left: px2em(16px, 13.6px); margin-right: px2em(16px, 13.6px); margin-left: px2em(-16px, 13.6px); color: var(--md-default-fg-color--light); content: attr(data-linenos); user-select: none; background-color: var(--md-code-bg-color); box-shadow: px2rem(-1px) 0 var(--md-default-fg-color--lightest) inset; } // Code block line anchors - Chrome and Safari seem to have a strange bug // where scroll margin is not applied to anchors inside code blocks. Setting // positioning to absolute seems to fix the problem. Interestingly, this does // not happen in Firefox. Furthermore we must set `visibility: hidden` or // the copy to clipboard functionality will include an empty line between // each set of lines. code a[id] { position: absolute; visibility: hidden; } // Copying in progress - this class is set before the content is copied and // removed after copying is done to mitigate whitespace-related issues. code[data-md-copying] { // Hack: since we're using grid layout when line spans are enabled, we need // to set the display property to `initial` to prevent the grid layout from // being applied to the code block when copying, because it will add empty // lines to the copied content - see https://t.ly/wt4ye display: initial; // Temporarily remove highlighted lines - see https://bit.ly/32iVGWh .hll { display: contents; } // Temporarily remove annotations .md-annotation { display: none; } } } // ---------------------------------------------------------------------------- // Rules: layout // ---------------------------------------------------------------------------- // Code block with line numbers .highlighttable { display: flow-root; // Set table elements to block layout, because otherwise the whole flexbox // hacking won't work correctly :is(tbody, td) { display: block; padding: 0; } // We need to use flexbox layout, because otherwise it's not possible to // make the code container scroll while keeping the line numbers static tr { display: flex; } // The pre tags are nested inside a table, so we need to omit the margin // because it collapses below all the overflows pre { margin: 0; } // Code block title container th.filename { flex-grow: 1; padding: 0; text-align: left; // Adjust spacing span.filename { margin-top: 0; } } // Code block line numbers - disable user selection, so code can be easily // copied without accidentally also copying the line numbers .linenos { padding: px2em(10.5px, 13.6px) px2em(16px, 13.6px); padding-right: 0; font-size: px2em(13.6px); user-select: none; background-color: var(--md-code-bg-color); border-top-left-radius: px2rem(2px); border-bottom-left-radius: px2rem(2px); } // Code block line numbers container .linenodiv { padding-right: px2em(8px, 13.6px); box-shadow: px2rem(-1px) 0 var(--md-default-fg-color--lightest) inset; // Adjust colors and alignment pre { color: var(--md-default-fg-color--light); text-align: right; } } // Code block container - stretch to remaining space .code { flex: 1; min-width: 0; } } // Code block line numbers container .linenodiv a { color: inherit; } // ---------------------------------------------------------------------------- // Scoped in typesetted content to match specificity of regular content .md-typeset { // Code block with line numbers - unfortunately, these selectors need to be // overly specific so they don't bleed into code blocks in annotations. .highlighttable { margin: 1em 0; direction: ltr; // Remove rounded borders on code blocks > tbody > tr > .code > div > pre > code { border-top-left-radius: 0; border-bottom-left-radius: 0; } } // Code block result container .highlight + .result { padding: 0 px2em(16px); margin-top: calc(-1em + #{px2em(-2px)}); overflow: visible; border: px2rem(1px) solid var(--md-code-bg-color); border-top-width: px2rem(2px); border-bottom-right-radius: px2rem(2px); border-bottom-left-radius: px2rem(2px); // Clearfix, because we can't use overflow: auto &::after { display: block; clear: both; content: ""; } } } // ---------------------------------------------------------------------------- // Rules: top-level // ---------------------------------------------------------------------------- // [mobile -]: Align with body copy @include break-to-device(mobile) { // Top-level code block .md-content__inner > .highlight { margin: 1em px2rem(-16px); // Remove rounded borders > .filename, > pre > code { border-radius: 0; } // Code block with line numbers - unfortunately, these selectors need to be // overly specific so they don't bleed into code blocks in annotations. > .highlighttable > tbody > tr > .filename span.filename, > .highlighttable > tbody > tr > .linenos, > .highlighttable > tbody > tr > .code > div > pre > code { border-radius: 0; } // Code block result container + .result { margin-inline: px2rem(-16px); border-inline-width: 0; border-radius: 0; } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/extensions/pymdownx/_keys.scss000066400000000000000000000070541475306445600323140ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Scoped in typesetted content to match specificity of regular content .md-typeset { // Keyboard key .keys { // Keyboard key icon kbd:is(::before, ::after) { position: relative; margin: 0; color: inherit; -moz-osx-font-smoothing: initial; -webkit-font-smoothing: initial; } // Surrounding text span { padding: 0 px2em(3.2px); color: var(--md-default-fg-color--light); } // Define keyboard keys with left icon @each $name, $code in ( // Modifiers "alt": "\2387", "left-alt": "\2387", "right-alt": "\2387", "command": "\2318", "left-command": "\2318", "right-command": "\2318", "control": "\2303", "left-control": "\2303", "right-control": "\2303", "meta": "\25C6", "left-meta": "\25C6", "right-meta": "\25C6", "option": "\2325", "left-option": "\2325", "right-option": "\2325", "shift": "\21E7", "left-shift": "\21E7", "right-shift": "\21E7", "super": "\2756", "left-super": "\2756", "right-super": "\2756", "windows": "\229E", "left-windows": "\229E", "right-windows": "\229E", // Other keys "arrow-down": "\2193", "arrow-left": "\2190", "arrow-right": "\2192", "arrow-up": "\2191", "backspace": "\232B", "backtab": "\21E4", "caps-lock": "\21EA", "clear": "\2327", "context-menu": "\2630", "delete": "\2326", "eject": "\23CF", "end": "\2913", "escape": "\238B", "home": "\2912", "insert": "\2380", "page-down": "\21DF", "page-up": "\21DE", "print-screen": "\2399" ) { .key-#{$name}::before { padding-right: px2em(6.4px); content: $code; } } // Define keyboard keys with right icon @each $name, $code in ( "tab": "\21E5", "num-enter": "\2324", "enter": "\23CE" ) { .key-#{$name}::after { padding-left: px2em(6.4px); content: $code; } } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/extensions/pymdownx/_tabbed.scss000066400000000000000000000255031475306445600325610ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Tabbed variables :root { --md-tabbed-icon--prev: svg-load("material/chevron-left.svg"); --md-tabbed-icon--next: svg-load("material/chevron-right.svg"); } // ---------------------------------------------------------------------------- // Scoped in typesetted content to match specificity of regular content .md-typeset { // Tabbed container .tabbed-set { position: relative; display: flex; flex-flow: column wrap; margin: 1em 0; border-radius: px2rem(2px); // Tab radio button - the Tabbed extension will generate radio buttons with // labels, so tabs can be triggered without the necessity for JavaScript. // This is pretty cool, as it has great accessibility out-of-the box, so // we just hide the radio button and toggle the label color for indication. > input { position: absolute; width: 0; height: 0; opacity: 0; // Adjust scroll margin &:target { --md-scroll-offset: #{px2em(10px, 16px)}; } // Tab label states @for $i from 20 through 1 { &:nth-child(#{$i}) { // Tab is active &:checked { // Tab label ~ .tabbed-labels > :nth-child(#{$i}) { @extend %tabbed-label; } // Tab content ~ .tabbed-content > :nth-child(#{$i}) { @extend %tabbed-content; } } // Tab label on keyboard focus &.focus-visible ~ .tabbed-labels > :nth-child(#{$i}) { @extend %tabbed-label-focus-visible; } } } // Tab indicator on keyboard focus &.focus-visible ~ .tabbed-labels::before { background-color: var(--md-accent-fg-color); } } } // Tabbed labels .tabbed-labels { display: flex; max-width: 100%; overflow: auto; scrollbar-width: none; // Firefox box-shadow: 0 px2rem(-1px) var(--md-default-fg-color--lightest) inset; -ms-overflow-style: none; // IE, Edge // [print]: Move one layer up for ordering @media print { display: contents; } // [screen and no reduced motion]: Disable animation @media screen { // [js]: Show animated tab indicator .js & { position: relative; // Tab indicator &::before { position: absolute; bottom: 0; left: 0; display: block; width: var(--md-indicator-width); height: 2px; content: ""; background: var(--md-default-fg-color); transition: width 225ms, background-color 250ms, transform 250ms; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transform: translateX(var(--md-indicator-x)); } } } // Webkit scrollbar &::-webkit-scrollbar { display: none; // Chrome, Safari } // Tab label > label { flex-shrink: 0; width: auto; padding: px2em(10px, 12.8px) 1.25em px2em(8px, 12.8px); font-size: px2rem(12.8px); font-weight: 700; color: var(--md-default-fg-color--light); white-space: nowrap; cursor: pointer; scroll-margin-inline-start: px2rem(20px); border-bottom: px2rem(2px) solid transparent; border-radius: px2rem(2px) px2rem(2px) 0 0; transition: background-color 250ms, color 250ms; // [print]: Intersperse labels with containers @media print { // Ensure correct order of labels @for $i from 1 through 20 { &:nth-child(#{$i}) { order: $i; } } } // Tab label on hover &:hover { color: var(--md-default-fg-color); } // Tab label anchor link > [href]:first-child { color: inherit; } } // Tab label with anchor link &--linked > label { padding: 0; // Move padding one level down to anchor link, so the whole tab area // becomes clickable, not only the text. > a { display: block; padding: px2em(10px, 12.8px) 1.25em px2em(8px, 12.8px); } } } // Tabbed content .tabbed-content { width: 100%; // [print]: Move one layer up for ordering @media print { display: contents; } } // Tabbed block .tabbed-block { display: none; // [print]: Intersperse labels with containers @media print { display: block; // Ensure correct order of containers @for $i from 1 through 20 { &:nth-child(#{$i}) { order: $i; } } } // Code block is the first child of a tab - remove margin and mirror // previous (now deprecated) SuperFences code block grouping behavior > pre:first-child, > .highlight:first-child > pre { margin: 0; // Remove rounded borders on code block > code { border-top-left-radius: 0; border-top-right-radius: 0; } } // Code block is the first child of a tab - remove margin and mirror // previous (now deprecated) SuperFences code block grouping behavior > .highlight:first-child { // Code block title - remove spacing and rounded borders > .filename { margin: 0; border-top-left-radius: 0; border-top-right-radius: 0; } // Code block with line numbers - unfortunately, these selectors need to // be overly specific so they don't bleed into code blocks in annotations. > .highlighttable { margin: 0; // Remove rounded borders on line numbers and titles > tbody > tr > .filename span.filename, > tbody > tr > .linenos { margin: 0; border-top-left-radius: 0; border-top-right-radius: 0; } // Remove rounded borders on code blocks > tbody > tr > .code > div > pre > code { border-top-left-radius: 0; border-top-right-radius: 0; } } // Code block result container - adjust spacing + .result { margin-top: px2em(-2px); } } // Adjust spacing for nested tabbed container > .tabbed-set { margin: 0; } } // Tabbed button .tabbed-button { display: block; align-self: center; width: px2rem(18px); height: px2rem(18px); margin-top: px2rem(2px); color: var(--md-default-fg-color--light); pointer-events: initial; cursor: pointer; border-radius: 100%; transition: background-color 250ms; // Tabbed button on hover &:hover { color: var(--md-accent-fg-color); background-color: var(--md-accent-fg-color--transparent); } // Tabbed button icon &::after { display: block; width: 100%; height: 100%; content: ""; background-color: currentcolor; mask-image: var(--md-tabbed-icon--prev); mask-repeat: no-repeat; mask-position: center; mask-size: contain; transition: background-color 250ms, transform 250ms; } } // Tabbed control .tabbed-control { position: absolute; display: flex; justify-content: start; width: px2rem(24px); height: px2rem(38px); pointer-events: none; background: linear-gradient( to right, var(--md-default-bg-color) 60%, transparent ); transition: opacity 125ms; // Adjust for right-to-left languages [dir="rtl"] & { transform: rotate(180deg); } // Tabbed control is hidden &[hidden] { opacity: 0; } // Tabbed control next &--next { right: 0; justify-content: end; background: linear-gradient( to left, var(--md-default-bg-color) 60%, transparent ); // Tabbed button icon content .tabbed-button::after { mask-image: var(--md-tabbed-icon--next); } } } } // ---------------------------------------------------------------------------- // Rules: top-level // ---------------------------------------------------------------------------- // [mobile -]: Align with body copy @include break-to-device(mobile) { // Top-level tabbed labels .md-content__inner > .tabbed-set .tabbed-labels { max-width: 100vw; padding-inline-start: px2rem(16px); margin: 0 px2rem(-16px); scroll-padding-inline-start: px2rem(16px); // Hack: some browsers ignore the right padding on flex containers, // see https://bit.ly/3lsPS3S &::after { padding-inline-end: px2rem(16px); content: ""; } // Tabbed control previous ~ .tabbed-control--prev { width: px2rem(40px); padding-inline-start: px2rem(16px); margin-inline-start: px2rem(-16px); } // Tabbed control next ~ .tabbed-control--next { width: px2rem(40px); padding-inline-end: px2rem(16px); margin-inline-end: px2rem(-16px); } } } // ---------------------------------------------------------------------------- // Placeholders: improve colocation for better compression // ---------------------------------------------------------------------------- // Tab label placeholder %tabbed-label { // [screen]: Show active state @media screen { color: var(--md-default-fg-color); // [no-js]: Show border (indicator is animated with JavaScript) .no-js & { border-color: var(--md-default-fg-color); } } } // Tab label on keyboard focus placeholder %tabbed-label-focus-visible { color: var(--md-accent-fg-color); } // Tab content placeholder %tabbed-content { display: block; } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/extensions/pymdownx/_tasklist.scss000066400000000000000000000053061475306445600331750ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Tasklist variables :root { --md-tasklist-icon: svg-load("octicons/check-circle-fill-24.svg"); --md-tasklist-icon--checked: svg-load("octicons/check-circle-fill-24.svg"); } // ---------------------------------------------------------------------------- // Scoped in typesetted content to match specificity of regular content .md-typeset { // Tasklist item .task-list-item { position: relative; list-style-type: none; // Make checkbox items align with normal list items, but position // everything in ems for correct layout at smaller font sizes [type="checkbox"] { position: absolute; inset-inline-start: -2em; top: 0.45em; } } // Hide native checkbox, when custom classes are enabled .task-list-control [type="checkbox"] { z-index: -1; opacity: 0; } // Tasklist indicator in unchecked state .task-list-indicator::before { position: absolute; inset-inline-start: px2em(-24px); top: 0.15em; width: px2em(20px); height: px2em(20px); content: ""; background-color: var(--md-default-fg-color--lightest); mask-image: var(--md-tasklist-icon); mask-repeat: no-repeat; mask-position: center; mask-size: contain; } // Tasklist indicator in checked state [type="checkbox"]:checked + .task-list-indicator::before { background-color: $clr-green-a400; mask-image: var(--md-tasklist-icon--checked); } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/integrations/000077500000000000000000000000001475306445600267215ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/integrations/_giscus.scss000066400000000000000000000027471475306445600312640ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // [print]: Hide comment section @media print { // Comments headline [id="__comments"] { display: none; } // Comments integration .giscus { display: none; } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/integrations/_mermaid.scss000066400000000000000000000067231475306445600314030ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Mermaid variables :root > * { --md-mermaid-font-family: var(--md-text-font-family), sans-serif; // General colors --md-mermaid-edge-color: var(--md-code-fg-color); --md-mermaid-node-bg-color: var(--md-accent-fg-color--transparent); --md-mermaid-node-fg-color: var(--md-accent-fg-color); --md-mermaid-label-bg-color: var(--md-default-bg-color); --md-mermaid-label-fg-color: var(--md-code-fg-color); // Sequence diagram colors --md-mermaid-sequence-actor-bg-color: var(--md-mermaid-label-bg-color); --md-mermaid-sequence-actor-fg-color: var(--md-mermaid-label-fg-color); --md-mermaid-sequence-actor-border-color: var(--md-mermaid-node-fg-color); --md-mermaid-sequence-actor-line-color: var(--md-default-fg-color--lighter); --md-mermaid-sequence-actorman-bg-color: var(--md-mermaid-label-bg-color); --md-mermaid-sequence-actorman-line-color: var(--md-mermaid-node-fg-color); --md-mermaid-sequence-box-bg-color: var(--md-mermaid-node-bg-color); --md-mermaid-sequence-box-fg-color: var(--md-mermaid-edge-color); --md-mermaid-sequence-label-bg-color: var(--md-mermaid-node-bg-color); --md-mermaid-sequence-label-fg-color: var(--md-mermaid-node-fg-color); --md-mermaid-sequence-loop-bg-color: var(--md-mermaid-node-bg-color); --md-mermaid-sequence-loop-fg-color: var(--md-mermaid-edge-color); --md-mermaid-sequence-loop-border-color: var(--md-mermaid-node-fg-color); --md-mermaid-sequence-message-fg-color: var(--md-mermaid-edge-color); --md-mermaid-sequence-message-line-color: var(--md-mermaid-edge-color); --md-mermaid-sequence-note-bg-color: var(--md-mermaid-label-bg-color); --md-mermaid-sequence-note-fg-color: var(--md-mermaid-edge-color); --md-mermaid-sequence-note-border-color: var(--md-mermaid-label-fg-color); --md-mermaid-sequence-number-bg-color: var(--md-mermaid-node-fg-color); --md-mermaid-sequence-number-fg-color: var(--md-accent-bg-color); } // ---------------------------------------------------------------------------- // Mermaid container .mermaid { margin: 1em 0; line-height: normal; } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/modifiers/000077500000000000000000000000001475306445600261745ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/modifiers/_grid.scss000066400000000000000000000077601475306445600301670ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Scoped in typesetted content to match specificity of regular content .md-typeset { // Grid container .grid { display: grid; grid-template-columns: repeat( auto-fit, minmax( min(100%, #{px2rem(320px)}), 1fr ) ); grid-gap: px2rem(8px); margin: 1em 0; // Grid card container - if all grid items should render as cards, the // `.cards` class can be added, which moves list items up one level. &.cards > :is(ul, ol) { display: contents; } // Grid card - a card is either a list item of a grid container with the // `.cards` class or a single element with the `.card` class, which allows // to align cards with other components (admonitions, tabs, ...) in grids. &.cards > :is(ul, ol) > li, > .card { display: block; padding: px2rem(16px); margin: 0; border: px2rem(1px) solid var(--md-default-fg-color--lightest); border-radius: px2rem(2px); transition: border 250ms, box-shadow 250ms; // Grid list item on focus/hover &:is(:focus-within, :hover) { border-color: transparent; box-shadow: var(--md-shadow-z2); } // Adjust spacing for horizontal separators > hr { margin-block: 1em; } // Adjust spacing on first child > :first-child { margin-top: 0; } // Adjust spacing on last child > :last-child { margin-bottom: 0; } } // Grid item > * { margin-block: 0; } // Grid item: admonition > :is(.admonition, details) { margin-block: 0; } // Grid item: code block > pre, > .highlight > *, > .highlighttable { margin-block: 0; } // Grid item: code block without line numbers - stretch to match height // of containing grid item, which must be done explicitly. > .highlight > pre:only-child, > .highlight > pre > code { height: 100%; } // Grid item: code block with line numbers - stretch to match height of // containing grid item, which is even uglier than the rule before. However, // it's not possible to achieve this behavior without explicitly setting the // height on each and every element as we do here. > .highlighttable, > .highlighttable > tbody, > .highlighttable > tbody > tr, > .highlighttable > tbody > tr > .code, > .highlighttable > tbody > tr > .code > .highlight, > .highlighttable > tbody > tr > .code > .highlight > pre, > .highlighttable > tbody > tr > .code > .highlight > pre > code { height: 100%; } // Grid item: tabbed container > .tabbed-set { margin-block: 0; } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/main/modifiers/_inline.scss000066400000000000000000000035241475306445600305120ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Scoped in typesetted content to match specificity of regular content .md-typeset { // [tablet +]: Allow for rendering content as sidebars @include break-from-device(tablet) { // Modifier to float block elements .inline { float: inline-start; width: px2rem(234px); margin-inline-end: px2rem(16px); margin-top: 0; margin-bottom: px2rem(16px); // Modifier to move to end (ltr: right, rtl: left) &.end { float: inline-end; margin-inline: px2rem(16px) 0; } } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/palette.scss000066400000000000000000000032411475306445600256220ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Dependencies // ---------------------------------------------------------------------------- @import "material-color"; // ---------------------------------------------------------------------------- // Local imports // ---------------------------------------------------------------------------- @import "utilities/break"; @import "utilities/convert"; @import "config"; @import "palette/scheme"; @import "palette/accent"; @import "palette/primary"; mkdocs-material-9.6.4/src/templates/assets/stylesheets/palette/000077500000000000000000000000001475306445600247255ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/stylesheets/palette/_accent.scss000066400000000000000000000047161475306445600272260ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Define accent colors @each $name, $color in ( "red": $clr-red-a400, "pink": $clr-pink-a400, "purple": $clr-purple-a200, "deep-purple": $clr-deep-purple-a200, "indigo": $clr-indigo-a200, "blue": $clr-blue-a200, "light-blue": $clr-light-blue-a700, "cyan": $clr-cyan-a700, "teal": $clr-teal-a700, "green": $clr-green-a700, "light-green": $clr-light-green-a700, "lime": $clr-lime-a700, "yellow": $clr-yellow-a700, "amber": $clr-amber-a700, "orange": $clr-orange-a400, "deep-orange": $clr-deep-orange-a200 ) { // Color palette [data-md-color-accent="#{$name}"] { --md-accent-fg-color: hsla(#{hex2hsl($color)}, 1); --md-accent-fg-color--transparent: hsla(#{hex2hsl($color)}, 0.1); // Inverted text for lighter shades @if index("lime" "yellow" "amber" "orange", $name) { --md-accent-bg-color: hsla(0, 0%, 0%, 0.87); --md-accent-bg-color--light: hsla(0, 0%, 0%, 0.54); } @else { --md-accent-bg-color: hsla(0, 0%, 100%, 1); --md-accent-bg-color--light: hsla(0, 0%, 100%, 0.7); } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/palette/_primary.scss000066400000000000000000000166551475306445600274610ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// @use "sass:list"; // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Define primary colors @each $name, $colors in ( "red": $clr-red-400 $clr-red-300 $clr-red-600, "pink": $clr-pink-500 $clr-pink-400 $clr-pink-700, "purple": $clr-purple-400 $clr-purple-300 $clr-purple-600, "deep-purple": $clr-deep-purple-400 $clr-deep-purple-300 $clr-deep-purple-500, "indigo": $clr-indigo-500 $clr-indigo-400 $clr-indigo-700, "blue": $clr-blue-500 $clr-blue-400 $clr-blue-700, "light-blue": $clr-light-blue-500 $clr-light-blue-400 $clr-light-blue-700, "cyan": $clr-cyan-500 $clr-cyan-400 $clr-cyan-700, "teal": $clr-teal-500 $clr-teal-400 $clr-teal-700, "green": $clr-green-500 $clr-green-400 $clr-green-700, "light-green": $clr-light-green-500 $clr-light-green-400 $clr-light-green-700, "lime": $clr-lime-500 $clr-lime-400 $clr-lime-700, "yellow": $clr-yellow-500 $clr-yellow-400 $clr-yellow-700, "amber": $clr-amber-500 $clr-amber-400 $clr-amber-700, "orange": $clr-orange-400 $clr-orange-400 $clr-orange-600, "deep-orange": $clr-deep-orange-400 $clr-deep-orange-300 $clr-deep-orange-600, "brown": $clr-brown-500 $clr-brown-400 $clr-brown-700, "grey": $clr-grey-600 $clr-grey-500 $clr-grey-700, "blue-grey": $clr-blue-grey-600 $clr-blue-grey-500 $clr-blue-grey-700 ) { // Color palette [data-md-color-primary="#{$name}"] { --md-primary-fg-color: hsl(#{hex2hsl(list.nth($colors, 1))}); --md-primary-fg-color--light: hsl(#{hex2hsl(list.nth($colors, 2))}); --md-primary-fg-color--dark: hsl(#{hex2hsl(list.nth($colors, 3))}); // Inverted text for lighter shades @if index("lime" "yellow" "amber" "orange", $name) { --md-primary-bg-color: hsla(0, 0%, 0%, 0.87); --md-primary-bg-color--light: hsla(0, 0%, 0%, 0.54); } @else { --md-primary-bg-color: hsla(0, 0%, 100%, 1); --md-primary-bg-color--light: hsla(0, 0%, 100%, 0.7); } // Typeset color shades @if index("grey" "blue-grey", $name) { --md-typeset-a-color: hsl(#{hex2hsl($clr-indigo-500)}); } } } // ---------------------------------------------------------------------------- // Adjust link colors for light primary colors @each $name, $color in ( "light-green": hsl(88, 58%, 43%), "lime": hsl(66, 88%, 32%), "yellow": hsl(54, 100%, 36%), "amber": hsl(45, 100%, 41%), "orange": hsl(36, 100%, 45%) ) { [data-md-color-primary="#{$name}"]:not([data-md-color-scheme="slate"]) { --md-typeset-a-color: #{$color}; } } // ---------------------------------------------------------------------------- // Rules: white // ---------------------------------------------------------------------------- // Define primary colors for white [data-md-color-primary="white"] { --md-primary-fg-color: hsla(var(--md-hue), 0%, 100%, 1); --md-primary-fg-color--light: hsla(var(--md-hue), 0%, 100%, 0.7); --md-primary-fg-color--dark: hsla(var(--md-hue), 0%, 0%, 0.07); --md-primary-bg-color: hsla(var(--md-hue), 0%, 0%, 0.87); --md-primary-bg-color--light: hsla(var(--md-hue), 0%, 0%, 0.54); // Typeset `a` color shades --md-typeset-a-color: hsl(#{hex2hsl($clr-indigo-500)}); // Form button .md-button { color: var(--md-typeset-a-color); // Primary button &--primary { color: hsla(var(--md-hue), 0%, 100%, 1); background-color: var(--md-typeset-a-color); border-color: var(--md-typeset-a-color); } } // [tablet portrait +]: Header-embedded search @include break-from-device(tablet landscape) { // Search form .md-search__form { background-color: hsla(var(--md-hue), 0%, 0%, 0.07); // Search form on hover &:hover { background-color: hsla(var(--md-hue), 0%, 0%, 0.32); } } // Search icon .md-search__input + .md-search__icon { color: hsla(var(--md-hue), 0%, 0%, 0.87); } } // [screen +]: Add bottom border for tabs @include break-from-device(screen) { // Navigation tabs .md-tabs { border-bottom: px2rem(1px) solid hsla(0, 0%, 0%, 0.07); } } } // ---------------------------------------------------------------------------- // Rules: black // ---------------------------------------------------------------------------- // Define primary colors for black [data-md-color-primary="black"] { --md-primary-fg-color: hsla(var(--md-hue), 15%, 9%, 1); --md-primary-fg-color--light: hsla(var(--md-hue), 15%, 9%, 0.54); --md-primary-fg-color--dark: hsla(var(--md-hue), 15%, 9%, 1); --md-primary-bg-color: hsla(var(--md-hue), 15%, 100%, 1); --md-primary-bg-color--light: hsla(var(--md-hue), 15%, 100%, 0.7); // Typeset `a` color shades --md-typeset-a-color: hsl(#{hex2hsl($clr-indigo-500)}); // Form button .md-button { color: var(--md-typeset-a-color); // Primary button &--primary { color: hsla(var(--md-hue), 0%, 100%, 1); background-color: var(--md-typeset-a-color); border-color: var(--md-typeset-a-color); } } // Header .md-header { background-color: hsla(var(--md-hue), 15%, 9%, 1); } // [tablet portrait -]: Layered navigation @include break-to-device(tablet portrait) { // Repository information container .md-nav__source { background-color: hsla(var(--md-hue), 15%, 11%, 0.87); } } // [tablet -]: Layered navigation @include break-to-device(tablet) { // Site title in main navigation html & .md-nav--primary .md-nav__title[for="__drawer"] { background-color: hsla(var(--md-hue), 15%, 9%, 1); } } // [screen +]: Set background color for tabs @include break-from-device(screen) { // Navigation tabs .md-tabs { background-color: hsla(var(--md-hue), 15%, 9%, 1); } } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/palette/_scheme.scss000066400000000000000000000145271475306445600272360ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// // ---------------------------------------------------------------------------- // Rules // ---------------------------------------------------------------------------- // Only use dark mode on screens @media screen { // Slate theme, i.e. dark mode [data-md-color-scheme="slate"] { // Indicate that the site is rendered with a dark color scheme color-scheme: dark; // Default color shades --md-default-fg-color: hsla(var(--md-hue), 15%, 90%, 0.82); --md-default-fg-color--light: hsla(var(--md-hue), 15%, 90%, 0.56); --md-default-fg-color--lighter: hsla(var(--md-hue), 15%, 90%, 0.32); --md-default-fg-color--lightest: hsla(var(--md-hue), 15%, 90%, 0.12); --md-default-bg-color: hsla(var(--md-hue), 15%, 14%, 1); --md-default-bg-color--light: hsla(var(--md-hue), 15%, 14%, 0.54); --md-default-bg-color--lighter: hsla(var(--md-hue), 15%, 14%, 0.26); --md-default-bg-color--lightest: hsla(var(--md-hue), 15%, 14%, 0.07); // Code color shades --md-code-fg-color: hsla(var(--md-hue), 18%, 86%, 0.82); --md-code-bg-color: hsla(var(--md-hue), 15%, 18%, 1); // Code highlighting color shades --md-code-hl-color: hsla(#{hex2hsl($clr-blue-a400)}, 1); --md-code-hl-color--light: hsla(#{hex2hsl($clr-blue-a400)}, 0.1); // Code highlighting syntax color shades --md-code-hl-number-color: hsla(6, 74%, 63%, 1); --md-code-hl-special-color: hsla(340, 83%, 66%, 1); --md-code-hl-function-color: hsla(291, 57%, 65%, 1); --md-code-hl-constant-color: hsla(250, 62%, 70%, 1); --md-code-hl-keyword-color: hsla(219, 66%, 64%, 1); --md-code-hl-string-color: hsla(150, 58%, 44%, 1); --md-code-hl-name-color: var(--md-code-fg-color); --md-code-hl-operator-color: var(--md-default-fg-color--light); --md-code-hl-punctuation-color: var(--md-default-fg-color--light); --md-code-hl-comment-color: var(--md-default-fg-color--light); --md-code-hl-generic-color: var(--md-default-fg-color--light); --md-code-hl-variable-color: var(--md-default-fg-color--light); // Typeset color shades --md-typeset-color: var(--md-default-fg-color); // Typeset `a` color shades --md-typeset-a-color: var(--md-primary-fg-color); // Typeset `kbd` color shades --md-typeset-kbd-color: hsla(var(--md-hue), 15%, 90%, 0.12); --md-typeset-kbd-accent-color: hsla(var(--md-hue), 15%, 90%, 0.2); --md-typeset-kbd-border-color: hsla(var(--md-hue), 15%, 14%, 1); // Typeset `mark` color shades --md-typeset-mark-color: hsla(#{hex2hsl($clr-blue-a200)}, 0.3); // Typeset `table` color shades --md-typeset-table-color: hsla(var(--md-hue), 15%, 95%, 0.12); --md-typeset-table-color--light: hsla(var(--md-hue), 15%, 95%, 0.035); // Admonition color shades --md-admonition-fg-color: var(--md-default-fg-color); --md-admonition-bg-color: var(--md-default-bg-color); // Footer color shades --md-footer-bg-color: hsla(var(--md-hue), 15%, 10%, 0.87); --md-footer-bg-color--dark: hsla(var(--md-hue), 15%, 8%, 1); // Shadow depth 1 --md-shadow-z1: 0 #{px2rem(4px)} #{px2rem(10px)} hsla(0, 0%, 0%, 0.05), 0 0 #{px2rem(1px)} hsla(0, 0%, 0%, 0.1); // Shadow depth 2 --md-shadow-z2: 0 #{px2rem(4px)} #{px2rem(10px)} hsla(0, 0%, 0%, 0.25), 0 0 #{px2rem(1px)} hsla(0, 0%, 0%, 0.25); // Shadow depth 3 --md-shadow-z3: 0 #{px2rem(4px)} #{px2rem(10px)} hsla(0, 0%, 0%, 0.4), 0 0 #{px2rem(1px)} hsla(0, 0%, 0%, 0.35); // Hide images for light mode img[src$="#only-light"], img[src$="#gh-light-mode-only"] { display: none; } } // -------------------------------------------------------------------------- // Adjust link colors for dark primary colors @each $name, $color in ( "pink": hsl(340, 81%, 63%), "purple": hsl(291, 53%, 63%), "deep-purple": hsl(262, 73%, 70%), "indigo": hsl(219, 76%, 62%), "teal": hsl(174, 100%, 40%), "green": hsl(122, 39%, 60%), "deep-orange": hsl(14, 100%, 65%), "brown": hsl(16, 45%, 56%), // Set neutral colors to indigo "grey": hsl(219, 66%, 62%), "blue-grey": hsl(219, 66%, 62%), "white": hsl(219, 66%, 62%), "black": hsl(219, 66%, 62%) ) { [data-md-color-scheme="slate"][data-md-color-primary="#{$name}"] { --md-typeset-a-color: #{$color}; } } // -------------------------------------------------------------------------- // Switching in progress - disable all transitions temporarily [data-md-color-switching] *, [data-md-color-switching] *::before, [data-md-color-switching] *::after { transition-duration: 0ms !important; // stylelint-disable-line } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/utilities/000077500000000000000000000000001475306445600253025ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/assets/stylesheets/utilities/_break.scss000066400000000000000000000134251475306445600274270ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// @use "sass:list"; @use "sass:map"; @use "sass:math"; // ---------------------------------------------------------------------------- // Variables // ---------------------------------------------------------------------------- /// /// Device-specific breakpoints /// /// @example /// $break-devices: ( /// mobile: ( /// portrait: 220px 479px, /// landscape: 480px 719px /// ), /// tablet: ( /// portrait: 720px 959px, /// landscape: 960px 1219px /// ), /// screen: ( /// small: 1220px 1599px, /// medium: 1600px 1999px, /// large: 2000px /// ) /// ); /// $break-devices: () !default; // ---------------------------------------------------------------------------- // Helpers // ---------------------------------------------------------------------------- /// /// Choose minimum and maximum device widths /// @function break-select-min-max($devices) { $min: 1000000; $max: 0; @each $key, $value in $devices { @while type-of($value) == map { $value: break-select-min-max($value); } @if type-of($value) == list { @each $number in $value { @if type-of($number) == number { $min: math.min($number, $min); @if $max { $max: math.max($number, $max); } } @else { @error "Invalid number: #{$number}"; } } } @else if type-of($value) == number { $min: math.min($value, $min); $max: null; } @else { @error "Invalid value: #{$value}"; } } @return $min, $max; } /// /// Select minimum and maximum widths for a device breakpoint /// @function break-select-device($device) { $current: $break-devices; @for $n from 1 through length($device) { @if type-of($current) == map { $current: map.get($current, list.nth($device, $n)); } @else { @error "Invalid device map: #{$devices}"; } } @if type-of($current) == list or type-of($current) == number { $current: (default: $current); } @return break-select-min-max($current); } // ---------------------------------------------------------------------------- // Mixins // ---------------------------------------------------------------------------- /// /// A minimum-maximum media query breakpoint /// @mixin break-at($breakpoint) { @if type-of($breakpoint) == number { @media screen and (min-width: $breakpoint) { @content; } } @else if type-of($breakpoint) == list { $min: list.nth($breakpoint, 1); $max: list.nth($breakpoint, 2); @if type-of($min) == number and type-of($max) == number { @media screen and (min-width: $min) and (max-width: $max) { @content; } } @else { @error "Invalid breakpoint: #{$breakpoint}"; } } @else { @error "Invalid breakpoint: #{$breakpoint}"; } } /// /// An orientation media query breakpoint /// @mixin break-at-orientation($breakpoint) { @if type-of($breakpoint) == string { @media screen and (orientation: $breakpoint) { @content; } } @else { @error "Invalid breakpoint: #{$breakpoint}"; } } /// /// A maximum-aspect-ratio media query breakpoint /// @mixin break-at-ratio($breakpoint) { @if type-of($breakpoint) == number { @media screen and (max-aspect-ratio: $breakpoint) { @content; } } @else { @error "Invalid breakpoint: #{$breakpoint}"; } } /// /// A minimum-maximum media query device breakpoint /// @mixin break-at-device($device) { @if type-of($device) == string { $device: $device,; } @if type-of($device) == list { $breakpoint: break-select-device($device); @if list.nth($breakpoint, 2) { $min: list.nth($breakpoint, 1); $max: list.nth($breakpoint, 2); @media screen and (min-width: $min) and (max-width: $max) { @content; } } @else { @error "Invalid device: #{$device}"; } } @else { @error "Invalid device: #{$device}"; } } /// /// A minimum media query device breakpoint /// @mixin break-from-device($device) { @if type-of($device) == string { $device: $device,; } @if type-of($device) == list { $breakpoint: break-select-device($device); $min: list.nth($breakpoint, 1); @media screen and (min-width: $min) { @content; } } @else { @error "Invalid device: #{$device}"; } } /// /// A maximum media query device breakpoint /// @mixin break-to-device($device) { @if type-of($device) == string { $device: $device,; } @if type-of($device) == list { $breakpoint: break-select-device($device); $max: list.nth($breakpoint, 2); @media screen and (max-width: $max) { @content; } } @else { @error "Invalid device: #{$device}"; } } mkdocs-material-9.6.4/src/templates/assets/stylesheets/utilities/_convert.scss000066400000000000000000000051411475306445600300170ustar00rootroot00000000000000//// /// Copyright (c) 2016-2025 Martin Donath /// /// Permission is hereby granted, free of charge, to any person obtaining a /// copy of this software and associated documentation files (the "Software"), /// to deal in the Software without restriction, including without limitation /// the rights to use, copy, modify, merge, publish, distribute, sublicense, /// and/or sell copies of the Software, and to permit persons to whom the /// Software is furnished to do so, subject to the following conditions: /// /// The above copyright notice and this permission notice shall be included in /// all copies or substantial portions of the Software. /// /// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR /// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, /// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL /// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER /// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING /// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER /// DEALINGS //// @use "sass:color"; @use "sass:math"; // ---------------------------------------------------------------------------- // Helpers // ---------------------------------------------------------------------------- /// /// Strip units from a number /// @function strip-units($number) { @return math.div($number, ($number * 0 + 1)); } /// /// Convert color in HEX to HSL /// /// Note, that we need to strip the `deg` units from the `hue` value, as they /// were added in Color Level 4, which not all browsers support. /// @function hex2hsl($color) { @return round(strip-units(color.channel($color, "hue", $space: hsl))), round(color.channel($color, "saturation", $space: hsl)), round(color.channel($color, "lightness", $space: hsl)); } // ---------------------------------------------------------------------------- /// /// Convert font size in px to em /// @function px2em($size, $base: 16px) { @if unit($size) == px { @if unit($base) == px { @return math.div($size, $base) * 1em; } @else { @error "Invalid base: #{$base} - unit must be 'px'"; } } @else { @error "Invalid size: #{$size} - unit must be 'px'"; } } /// /// Convert font size in px to rem /// @function px2rem($size, $base: 20px) { @if unit($size) == px { @if unit($base) == px { @return math.div($size, $base) * 1rem; } @else { @error "Invalid base: #{$base} - unit must be 'px'"; } } @else { @error "Invalid size: #{$size} - unit must be 'px'"; } } mkdocs-material-9.6.4/src/templates/base.html000066400000000000000000000335171475306445600212220ustar00rootroot00000000000000 {% import "partials/language.html" as lang with context %} {% block site_meta %} {% if page.meta and page.meta.description %} {% elif config.site_description %} {% endif %} {% if page.meta and page.meta.author %} {% elif config.site_author %} {% endif %} {% if page.canonical_url %} {% endif %} {% if page.previous_page %} {% endif %} {% if page.next_page %} {% endif %} {% if "rss" in config.plugins %} {% endif %} {% endblock %} {% block htmltitle %} {% if page.meta and page.meta.title %} {{ page.meta.title }} - {{ config.site_name }} {% elif page.title and not page.is_homepage %} {{ page.title | striptags }} - {{ config.site_name }} {% else %} {{ config.site_name }} {% endif %} {% endblock %} {% block styles %} {% if config.theme.palette %} {% set palette = config.theme.palette %} {% endif %} {% include "partials/icons.html" %} {% endblock %} {% block libs %} {% for script in config.extra.polyfills %} {{ script | script_tag }} {% endfor %} {% endblock %} {% block fonts %} {% if config.theme.font != false %} {% set text = config.theme.font.get("text", "Roboto") %} {% set code = config.theme.font.get("code", "Roboto Mono") %} {% endif %} {% endblock %} {% for path in config.extra_css %} {% endfor %} {% include "partials/javascripts/base.html" %} {% block analytics %} {% include "partials/integrations/analytics.html" %} {% endblock %} {% if page.meta and page.meta.meta %} {% for tag in page.meta.meta %} {% endfor %} {% endif %} {% block extrahead %}{% endblock %} {% set direction = config.theme.direction or lang.t("direction") %} {% if config.theme.palette %} {% set palette = config.theme.palette %} {% if not palette is mapping %} {% set palette = palette | first %} {% endif %} {% set scheme = palette.scheme | d("default", true) %} {% set primary = palette.primary | d("indigo", true) %} {% set accent = palette.accent | d("indigo", true) %} {% else %} {% endif %} {% set features = config.theme.features or [] %}
    {% if page.toc | first is defined %} {% set skip = page.toc | first %} {{ lang.t("action.skip") }} {% endif %}
    {% if self.announce() %} {% endif %}
    {% if config.extra.version %} {% endif %} {% block header %} {% include "partials/header.html" %} {% endblock %}
    {% block hero %}{% endblock %} {% block tabs %} {% if "navigation.tabs.sticky" not in features %} {% if "navigation.tabs" in features %} {% include "partials/tabs.html" %} {% endif %} {% endif %} {% endblock %}
    {% block site_nav %} {% if nav %} {% if page.meta and page.meta.hide %} {% set hidden = "hidden" if "navigation" in page.meta.hide %} {% endif %} {% endif %} {% if "toc.integrate" not in features %} {% if page.meta and page.meta.hide %} {% set hidden = "hidden" if "toc" in page.meta.hide %} {% endif %} {% endif %} {% endblock %} {% block container %}
    {% block content %} {% include "partials/content.html" %} {% endblock %}
    {% endblock %} {% include "partials/javascripts/content.html" %}
    {% if "navigation.top" in features %} {% include "partials/top.html" %} {% endif %}
    {% block footer %} {% include "partials/footer.html" %} {% endblock %}
    {% if "navigation.instant.progress" in features %} {% include "partials/progress.html" %} {% endif %} {% if config.extra.consent %} {% include "partials/javascripts/consent.html" %} {% endif %} {% block config %} {%- set app = { "base": base_url, "features": features, "translations": {}, "search": "assets/javascripts/workers/search.js" | url } -%} {%- if config.extra.version -%} {%- set mike = config.plugins.get("mike") -%} {%- if not mike or mike.config.version_selector -%} {%- set _ = app.update({ "version": config.extra.version }) -%} {%- endif -%} {%- endif -%} {%- if config.extra.tags -%} {%- set _ = app.update({ "tags": config.extra.tags }) -%} {%- endif -%} {%- set translations = app.translations -%} {%- for key in [ "clipboard.copy", "clipboard.copied", "search.result.placeholder", "search.result.none", "search.result.one", "search.result.other", "search.result.more.one", "search.result.more.other", "search.result.term.missing", "select.version" ] -%} {%- set _ = translations.update({ key: lang.t(key) }) -%} {%- endfor -%} {% endblock %} {% block scripts %} {% for script in config.extra_javascript %} {{ script | script_tag }} {% endfor %} {% endblock %} mkdocs-material-9.6.4/src/templates/blog-post.html000066400000000000000000000167421475306445600222170ustar00rootroot00000000000000 {% extends "main.html" %} {% import "partials/nav-item.html" as item with context %} {% block container %}
    {% if "toc.integrate" in features %} {% include "partials/toc.html" %} {% endif %}
    {% block content %} {% include "partials/content.html" %} {% endblock %}
    {% endblock %} mkdocs-material-9.6.4/src/templates/blog.html000066400000000000000000000032721475306445600212260ustar00rootroot00000000000000 {% extends "main.html" %} {% block container %}
    {{ page.content }}
    {% for post in posts %} {% include "partials/post.html" %} {% endfor %} {% if pagination %} {% block pagination %} {% include "partials/pagination.html" %} {% endblock %} {% endif %}
    {% endblock %} mkdocs-material-9.6.4/src/templates/fragments/000077500000000000000000000000001475306445600213775ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/fragments/tags/000077500000000000000000000000001475306445600223355ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/fragments/tags/default/000077500000000000000000000000001475306445600237615ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/fragments/tags/default/listing.html000066400000000000000000000031141475306445600263170ustar00rootroot00000000000000 {% macro render(listing) %} {{ listing.content }}
      {% for mapping in listing.mappings %}
    • {{ mapping.item.title }}
    • {% endfor %} {% for child in listing %}
    • {{ render(child) }}
    • {% endfor %}
    {% endmacro %} {{ render(listing) }} mkdocs-material-9.6.4/src/templates/fragments/tags/default/tag.html000066400000000000000000000030161475306445600254220ustar00rootroot00000000000000 {% set class = "md-tag" %} {% if tag.hidden %} {% set class = class ~ " md-tag-shadow" %} {% endif %} {% if config.extra.tags %} {% set class = class ~ " md-tag-icon" %} {% if tag.name in config.extra.tags %} {% set class = class ~ " md-tag--" ~ config.extra.tags[tag.name] %} {% endif %} {% endif %} {{- tag.name -}} mkdocs-material-9.6.4/src/templates/main.html000066400000000000000000000022111475306445600212170ustar00rootroot00000000000000 {% extends "base.html" %} mkdocs-material-9.6.4/src/templates/mkdocs_theme.yml000066400000000000000000000034571475306445600226070ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # Language for theme localization language: en # Text direction (can be ltr or rtl), default: ltr direction: # Feature flags for functionality that alters behavior significantly, and thus # may be a matter of taste features: [] # Fonts used by Material, automatically loaded from Google Fonts - see the site # for a list of available fonts font: # Default font for text text: Roboto # Fixed-width font for code listings code: Roboto Mono # From Material 5.x on, icons are inlined into the HTML and CSS as SVGs. # Icons that are part of the HTML can be configured and replaced icon: # Favicon to be rendered favicon: assets/images/favicon.png # Static pages to build static_templates: - 404.html mkdocs-material-9.6.4/src/templates/partials/000077500000000000000000000000001475306445600212305ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/partials/actions.html000066400000000000000000000037551475306445600235700ustar00rootroot00000000000000 {% if page.edit_url %} {% if "content.action.edit" in features %} {% set icon = config.theme.icon.edit or "material/file-edit-outline" %} {% include ".icons/" ~ icon ~ ".svg" %} {% endif %} {% if "content.action.view" in features %} {% if "/blob/" in page.edit_url %} {% set part = "blob" %} {% else %} {% set part = "edit" %} {% endif %} {% set icon = config.theme.icon.view or "material/file-eye-outline" %} {% include ".icons/" ~ icon ~ ".svg" %} {% endif %} {% endif %} mkdocs-material-9.6.4/src/templates/partials/alternate.html000066400000000000000000000035471475306445600241060ustar00rootroot00000000000000
    {% set icon = config.theme.icon.alternate or "material/translate" %}
    mkdocs-material-9.6.4/src/templates/partials/comments.html000066400000000000000000000022071475306445600237440ustar00rootroot00000000000000 mkdocs-material-9.6.4/src/templates/partials/consent.html000066400000000000000000000066031475306445600235740ustar00rootroot00000000000000 {% set cookies = config.extra.consent.cookies | d({}) %} {% if config.extra.analytics %} {% if "analytics" not in cookies %} {% set _ = cookies.update({ "analytics": "Google Analytics" }) %} {% endif %} {% endif %} {% if config.repo_url and "github.com" in config.repo_url %} {% if "github" not in cookies %} {% set _ = cookies.update({ "github": "GitHub" }) %} {% endif %} {% endif %} {% set actions = config.extra.consent.actions %} {% if not actions %} {% set actions = ["accept", "manage"] %} {% endif %} {% if "manage" not in actions %} {% set checked = "checked" %} {% endif %}

    {{ config.extra.consent.title }}

    {{ config.extra.consent.description }}

    mkdocs-material-9.6.4/src/templates/partials/content.html000066400000000000000000000033351475306445600235740ustar00rootroot00000000000000 {% include "partials/tags.html" %} {% include "partials/actions.html" %} {% if "\x3ch1" not in page.content %}

    {{ page.title | d(config.site_name, true)}}

    {% endif %} {{ page.content }} {% include "partials/source-file.html" %} {% include "partials/feedback.html" %} {% include "partials/comments.html" %} mkdocs-material-9.6.4/src/templates/partials/copyright.html000066400000000000000000000030201475306445600241210ustar00rootroot00000000000000 mkdocs-material-9.6.4/src/templates/partials/feedback.html000066400000000000000000000055271475306445600236530ustar00rootroot00000000000000 {% if config.extra.analytics %} {% set feedback = config.extra.analytics.feedback %} {% endif %} {% if page.meta and page.meta.hide %} {% if "feedback" in page.meta.hide %} {% set feedback = None %} {% endif %} {% endif %} {% if feedback %} {% endif %} mkdocs-material-9.6.4/src/templates/partials/footer.html000066400000000000000000000070711475306445600234210ustar00rootroot00000000000000 mkdocs-material-9.6.4/src/templates/partials/header.html000066400000000000000000000076401475306445600233550ustar00rootroot00000000000000 {% set class = "md-header" %} {% if "navigation.tabs.sticky" in features %} {% set class = class ~ " md-header--shadow md-header--lifted" %} {% elif "navigation.tabs" not in features %} {% set class = class ~ " md-header--shadow" %} {% endif %}
    {% if "navigation.tabs.sticky" in features %} {% if "navigation.tabs" in features %} {% include "partials/tabs.html" %} {% endif %} {% endif %}
    mkdocs-material-9.6.4/src/templates/partials/icons.html000066400000000000000000000051541475306445600232360ustar00rootroot00000000000000 {% if config.theme.icon.admonition %} {% set style = ["\x3cstyle\x3e:root{"] %} {% for type, icon in config.theme.icon.admonition.items() %} {% import ".icons/" ~ icon ~ ".svg" as icon %} {% set _ = style.append( "--md-admonition-icon--" ~ type ~ ":" ~ "url('data:image/svg+xml;charset=utf-8," ~ icon | replace("\n", "") ~ "');" ) %} {% endfor %} {% set _ = style.append("}\x3c/style\x3e") %} {{ style | join }} {% endif %} {% if config.theme.icon.annotation %} {% set style = ["\x3cstyle\x3e:root{"] %} {% import ".icons/" ~ config.theme.icon.annotation ~ ".svg" as icon %} {% set _ = style.append( "--md-annotation-icon:" ~ "url('data:image/svg+xml;charset=utf-8," ~ icon | replace("\n", "") ~ "');" ) %} {% set _ = style.append("}\x3c/style\x3e") %} {{ style | join }} {% endif %} {% if config.theme.icon.tag %} {% set style = ["\x3cstyle\x3e"] %} {% for type, icon in config.theme.icon.tag.items() %} {% import ".icons/" ~ icon ~ ".svg" as icon %} {% if type != "default" %} {% set modifier = ".md-tag--" ~ type %} {% endif %} {% set _ = style.append( ".md-tag" ~ modifier ~ "{" ~ "--md-tag-icon:" ~ "url('data:image/svg+xml;charset=utf-8," ~ icon | replace("\n", "") ~ "');" ~ "}" ) %} {% endfor %} {% set _ = style.append("\x3c/style\x3e") %} {{ style | join }} {% endif %} mkdocs-material-9.6.4/src/templates/partials/integrations/000077500000000000000000000000001475306445600237365ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/partials/integrations/analytics.html000066400000000000000000000034471475306445600266230ustar00rootroot00000000000000 {% if config.extra.analytics %} {% set provider = config.extra.analytics.provider %} {% endif %} {% if provider %} {% include "partials/integrations/analytics/" ~ provider ~ ".html" %} {% if config.extra.consent %} {% else %} {% endif %} {% endif %} mkdocs-material-9.6.4/src/templates/partials/integrations/analytics/000077500000000000000000000000001475306445600257255ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/partials/integrations/analytics/google.html000066400000000000000000000067311475306445600300760ustar00rootroot00000000000000 {% if config.extra.analytics %} {% set property = config.extra.analytics.property | d("", true) %} {% endif %} mkdocs-material-9.6.4/src/templates/partials/javascripts/000077500000000000000000000000001475306445600235615ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/partials/javascripts/announce.html000066400000000000000000000025701475306445600262610ustar00rootroot00000000000000 mkdocs-material-9.6.4/src/templates/partials/javascripts/base.html000066400000000000000000000040341475306445600253620ustar00rootroot00000000000000 mkdocs-material-9.6.4/src/templates/partials/javascripts/consent.html000066400000000000000000000044351475306445600261260ustar00rootroot00000000000000 mkdocs-material-9.6.4/src/templates/partials/javascripts/content.html000066400000000000000000000036361475306445600261310ustar00rootroot00000000000000 {% if "content.tabs.link" in features %} {% endif %} mkdocs-material-9.6.4/src/templates/partials/javascripts/outdated.html000066400000000000000000000025701475306445600262640ustar00rootroot00000000000000 mkdocs-material-9.6.4/src/templates/partials/javascripts/palette.html000066400000000000000000000041431475306445600261070ustar00rootroot00000000000000 mkdocs-material-9.6.4/src/templates/partials/language.html000066400000000000000000000026341475306445600237060ustar00rootroot00000000000000 {% import "partials/languages/" ~ config.theme.language ~ ".html" as lang %} {% import "partials/languages/en.html" as fallback %} {% macro t(key) %}{{ lang.t(key) or fallback.t(key) or key }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/000077500000000000000000000000001475306445600231765ustar00rootroot00000000000000mkdocs-material-9.6.4/src/templates/partials/languages/af.html000066400000000000000000000060551475306445600244600ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "af", "action.edit": "Wysig hierdie bladsy", "action.skip": "Slaan oor na inhoud", "action.view": "Bekyk bron van hierdie bladsy", "announce.dismiss": "Moenie dit weer wys nie", "blog.archive": "Argief", "blog.categories": "Kategorieë", "blog.categories.in": "binne", "blog.continue": "Lees verder", "blog.draft": "Konsep", "blog.index": "Terug na indeks", "blog.meta": "Metadata", "blog.references": "Verwante skakels", "clipboard.copy": "Kopieer na knipbord", "clipboard.copied": "gekopieer na knipbord", "consent.accept": "Aanvaar", "consent.manage": "Bestuur instellings", "consent.reject": "Verwerp", "footer": "Voetskrif", "footer.next": "Volgende", "footer.previous": "Vorige", "header": "Kopskrif", "meta.comments": "Kommentaar", "meta.source": "Bron", "nav": "Navigasie", "readtime.one": "1 minuut se lees", "readtime.other": "# minuut se lees", "rss.created": "RSS-voer geskep", "rss.updated": "RSS-voer van opgedateerde inhoud", "search": "Soek", "search.config.lang": "nl", "search.placeholder": "Soek", "search.share": "Deel", "search.reset": "Terugstel", "search.result.initializer": "Inisialisering van soektog", "search.result.placeholder": "Tik om te begin soek", "search.result.none": "Geen ooreenstemmende dokumente", "search.result.one": "1 ooreenstemmende dokument", "search.result.other": "# ooreenstemmende dokumente", "search.result.more.one": "1 meer op hierdie bladsy", "search.result.more.other": "# meer op hierdie bladsy", "search.result.term.missing": "Vermis", "select.language": "Kies taal", "select.version": "Kies weergawe", "source": "Slaan oor na inhoud", "source.file.contributors": "Medewerkers", "source.file.date.created": "Geskep", "source.file.date.updated": "Laaste opdatering", "tabs": "Duimgids", "toc": "Inhoudsopgawe", "top": "Terug na bo" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/ar.html000066400000000000000000000066501475306445600244750ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "ar", "direction": "rtl", "action.edit": "عدل الصفحة", "action.skip": "انتقل إلى المحتوى", "action.view": "عرض مصدر هذه الصفحة", "announce.dismiss": "لا تظهر هذا مرة أخرى", "blog.archive": "أرشيف", "blog.categories": "فئات", "blog.categories.in": "ضمن", "blog.continue": "أكمل القراءة", "blog.draft": "مسودة", "blog.index": "رجوع إلى الفهرس", "blog.meta": "بيانات وصفية", "blog.references": "روابط ذات علاقة", "clipboard.copy": "نسخ إلى الحافظة", "clipboard.copied": "تم النسخ الى الحافظة", "consent.accept": "قبول", "consent.manage": "إدارة الإعدادات", "consent.reject": "رفض", "footer": "هامش سفلي", "footer.next": "التالية", "footer.previous": "السابقة", "header": "عنوان العارضة", "meta.comments": "التعليقات", "meta.source": "المصدر", "nav": "تصفح", "readtime.one": "قراءة لمدة دقيقة", "readtime.other": "دقائق قراءة #", "rss.created": "ملقم بالخلاصات", "rss.updated": "ملقم بالخلاصات المحدثة", "search": "إبحث", "search.config.pipeline": " ", "search.placeholder": "بحث", "search.share": "شارك", "search.reset": "مسح كلي", "search.result.initializer": "بدء البحث", "search.result.placeholder": "اكتب لبدء البحث", "search.result.none": "لا توجد نتائج", "search.result.one": "نتائج البحث مستند واحد", "search.result.other": "نتائج البحث # مستندات", "search.result.more.one": "أكثر من 1 في هذه الصفحة", "search.result.more.other": "أكثر من # في هذه الصفحة", "search.result.term.missing": "مفقود", "select.language": "إختر اللغة", "select.version": "إختر الإصدار", "source": "اذهب إلى المصدر", "source.file.contributors": "المساهمون", "source.file.date.created": "خلقت", "source.file.date.updated": "اخر تحديث", "tabs": "نوافذ", "toc": "جدول المحتويات", "top": "عد إلى الأعلى" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/az.html000066400000000000000000000061661475306445600245070ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "az", "action.edit": "Bu səhifəni redaktə eləmək", "action.skip": "Məzmuna keçin", "action.view": "Bu səhifənin mənbəyinə baxın", "announce.dismiss": "Bunu bir daha göstərməyin", "blog.archive": "Arxiv", "blog.categories": "Kateqoriyalar", "blog.continue": "Oxumağa davam etmək", "blog.draft": "Qaralama", "blog.index": "İndeksə qayıtmaq", "blog.meta": "Metadata", "blog.references": "Əlaqədar bağlantılar", "clipboard.copy": "Mübadilə buferə kopyalayın", "clipboard.copied": "Mübadilə buferə kopyalanıb", "consent.accept": "Qəbul etmək", "consent.manage": "Parametrləri idarə edin", "consent.reject": "Qəbul eləməmək", "footer.next": "Növbəti", "footer.previous": "Əvvəlki", "header": "Başlıq", "meta.comments": "Şərhlər", "meta.source": "Mənbə", "nav": "Navigasiya", "readtime.one": "1 dəqiqəyə oxumaq", "readtime.other": "# dəqiqəyə oxumaq", "rss.created": "RSS lenti", "rss.updated": "Yenilənmiş məzmunun RSS lenti", "search": "Axtarmaq", "search.placeholder": "Axtarmaq", "search.share": "Paylaşmaq", "search.reset": "Silmək", "search.result.initializer": "Axtarış işə salınır", "search.result.placeholder": "Axtarmağa başlamaq üçün yazın", "search.result.none": "Uyğun sənədlər yoxdur", "search.result.one": "1 dənə uyğun nəticə var", "search.result.other": "# dənə uyğun nəticə var", "search.result.more.one": "Bu səhifədə daha 1 dənə", "search.result.more.other": "Bu səhifədə daha # dənə", "search.result.term.missing": "İtkin", "select.language": "Dili seçmək", "select.version": "Versiyanı seçmək", "source": "Repositoriyaya baxmaq", "source.file.contributors": "Töhfəçilər", "source.file.date.created": "Yaradılmışdır", "source.file.date.updated": "Son yeniləmə", "tabs": "Nişanlar", "toc": "Mündəricat", "top": "Yuxarıya qayıtmaq" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/be.html000066400000000000000000000074131475306445600244570ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "be", "direction": "ltr", "action.edit": "Правіць старонку", "action.skip": "Перайсці да зместа", "action.view": "Паглядзець зыходны код старонкі", "announce.dismiss": "Больш не паказваць", "blog.archive": "Заархіваваць", "blog.categories": "Катэгорыі", "blog.categories.in": "у", "blog.continue": "Працягнуць чытаць", "blog.draft": "Чарнавік", "blog.index": "Вярнуцца на хатнюю", "blog.meta": "Метаданыя", "blog.references": "Спасылкі па тэме", "clipboard.copy": "Скапіраваць у буфер абмена", "clipboard.copied": "Скапіравана ў буфер абмена", "consent.accept": "Прыняць", "consent.manage": "Кіраваць наладамі", "consent.reject": "Адхіліць", "footer": "Ніжні калантытул", "footer.next": "Наступная", "footer.previous": "Папярэдняя", "header": "Верхні калантытул", "meta.comments": "Каментарыі", "meta.source": "Зыходны код", "nav": "Навігацыя", "readtime.one": "Прачытанне зойме 1 хв", "readtime.other": "Прачытанне зойме # хв", "rss.created": "RSS стужка", "rss.updated": "RSS стужка з абноўленым зместам", "search": "Пошук", "search.config.lang": "ru", "search.placeholder": "Пошук", "search.share": "Падзяліцца", "search.reset": "Ачысціць", "search.result.initializer": "Пачынаем пошук", "search.result.placeholder": "Пачніце друкаваць для пошуку", "search.result.none": "Нічога ня знойдзена", "search.result.one": "Адзін адпаведны дакумент", "search.result.other": "Адпаведных дакументаў: #", "search.result.more.one": "Яшчэ 1 на гэтай старонцы", "search.result.more.other": "Яшчэ # на гэтай старонцы", "search.result.term.missing": "Адсутнічае", "select.language": "Выберыце мову", "select.version": "Выберыце версію", "source": "Перайсці ў рэпазітар", "source.file.contributors": "Укладальнікі", "source.file.date.created": "Створана", "source.file.date.updated": "Апошняе абнаўленне", "tabs": "Укладкі", "toc": "Змест", "top": "Вярнуцца да пачатку" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/bg.html000066400000000000000000000071121475306445600244550ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "bg", "action.edit": "Редактирай тази страница", "action.skip": "Към съдържанието", "action.view": "Виж съдържанието на тази страница", "announce.dismiss": "Не показвай повече", "blog.archive": "Архив", "blog.categories": "Категории", "blog.categories.in": "В", "blog.continue": "Продължи четенето", "blog.draft": "Чернова", "blog.index": "Назад към индекса", "blog.meta": "Метаданни", "blog.references": "Свързани линкове", "clipboard.copy": "Копирай", "clipboard.copied": "Копирано", "consent.accept": "Приеми", "consent.manage": "Управление на настойките", "consent.reject": "Откажи", "footer": "Долен колонтитул", "footer.next": "Следваща", "footer.previous": "Предишна", "header": "Горен колонтитул", "meta.comments": "Коментари", "meta.source": "Код", "nav": "Навигация", "readtime.one": "1 мин четено", "readtime.other": "# мин четено", "rss.created": "RSS публикации", "rss.updated": "RSS публикации с актуализирано съдържание", "search": "Търси", "search.config.lang": "ru", "search.placeholder": "Търси", "search.share": "Сподели", "search.reset": "Изчисти", "search.result.initializer": "Инициализирано търсене", "search.result.placeholder": "Започнете да пишете, за да търсите", "search.result.none": "Няма резултати", "search.result.one": "1 резултат", "search.result.other": "# резултата", "search.result.more.one": "още 1 на тази страница", "search.result.more.other": "още # на тази страница", "search.result.term.missing": "Липсващо", "select.language": "Избери език", "select.version": "Избери версия", "source": "Към хранилището", "source.file.contributors": "Участници", "source.file.date.created": "Създаден", "source.file.date.updated": "Последна промяна", "tabs": "Табове", "toc": "Съдържание", "top": "Върни се в началото" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/bn.html000066400000000000000000000100571475306445600244660ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "bn", "action.edit": "এই পেজ এডিট করুন", "action.skip": "কনটেন্টে যান", "action.view": "পেজের ভিউ", "announce.dismiss": "আর কখনো দেখাবে না", "blog.archive": "সংরক্ষণাগার", "blog.categories": "বিভাগ", "blog.categories.in": "বিভাগের মধ্যে", "blog.continue": "পড়তে থাকুন", "blog.draft": "খসড়া", "blog.index": "ইনডেক্সে ফিরে যান", "blog.meta": "মেটাডেটা", "blog.references": "সম্পর্কিত লিংক", "clipboard.copy": "ক্লিপবোর্ডে কপি করুন", "clipboard.copied": "ক্লিপবোর্ডে কপি হয়েছে", "consent.accept": "গ্রহণ", "consent.manage": "সেটিংস ব্যবস্থাপনা", "consent.reject": "প্রত্যাখ্যান", "footer": "ফুটার", "footer.next": "পরে", "footer.previous": "পূর্ববর্তী", "header": "হেডার", "meta.comments": "মন্তব্য", "meta.source": "উৎস", "nav": "ন্যাভিগেশন", "readtime.one": "১ মিনিট পড়া", "readtime.other": "# মিনিট পড়া", "rss.created": "আরএসএস ফিড", "rss.updated": "আপডেট করা বিষয়বস্তুর আরএসএস ফিড", "search": "অনুসন্ধান করুন", "search.config.pipeline": " ", "search.placeholder": "অনুসন্ধান করুন", "search.share": "শেয়ার", "search.reset": "রিসেট", "search.result.initializer": "অনুসন্ধান শুরু করা হচ্ছে", "search.result.placeholder": "সার্চ টাইপ করুন", "search.result.none": "কিছু পাওয়া যায়নি", "search.result.one": "১ টা ডকুমেন্ট", "search.result.other": "# টা ডকুমেন্ট", "search.result.more.one": "এই পৃষ্ঠায় আরও ১টি আছে", "search.result.more.other": "এই পৃষ্ঠায় আরও #টি আছে", "search.result.term.missing": "অনুপস্থিত", "select.language": "ভাষা নির্বাচন করুণ", "select.version": "সংস্করণ নির্বাচন করুণ", "source": "রিপোজিটরিতে যান", "source.file.contributors": "অবদানকারী", "source.file.date.created": "তৈরি হয়েছে", "source.file.date.updated": "শেষ আপডেট", "tabs": "ট্যাব", "toc": "সূচি তালিকা", "top": "উপরে ফিরে যাও" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/ca.html000066400000000000000000000061151475306445600244520ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "ca", "action.edit": "Edita aquesta pàgina", "action.skip": "Salta el contingut", "action.view": "Visualitza el codi font", "announce.dismiss": "No ho tornis a mostrar", "blog.archive": "Arxiva", "blog.categories": "Categories", "blog.categories.in": "a", "blog.continue": "Continua llegint", "blog.draft": "Esborrany", "blog.index": "Torna a l'índex", "blog.meta": "Metadades", "blog.references": "Enllaços relacionats", "clipboard.copy": "Còpia al porta-retalls", "clipboard.copied": "Copiat al porta-retalls", "consent.accept": "Accepta", "consent.manage": "Gestiona la configuració", "consent.reject": "Rebutja", "footer": "Peu de pàgina", "footer.next": "Següent", "footer.previous": "Anterior", "header": "Capçalera", "meta.comments": "Comentaris", "meta.source": "Codi font", "nav": "Navegació", "readtime.one": "1 min de lectura", "readtime.other": "# min de lectura", "rss.created": "Canal RSS", "rss.updated": "Canal RSS de contingut actualitzat", "search": "Cerca", "search.placeholder": "Cerca", "search.share": "Comparteix", "search.reset": "Neteja", "search.result.initializer": "Inicialitzant cerca", "search.result.placeholder": "Escriu per a començar a cercar", "search.result.none": "Cap document coincideix", "search.result.one": "1 document coincident", "search.result.other": "# documents coincidents", "search.result.more.one": "1 més en aquesta pàgina", "search.result.more.other": "# més en aquesta pàgina", "search.result.term.missing": "Desaparegut", "select.language": "Selecciona la llengua", "select.version": "Selecciona la versió", "source": "Ves al repositori", "source.file.contributors": "Col·laboradors", "source.file.date.created": "Creada", "source.file.date.updated": "Darrera actualització", "tabs": "Pestanyes", "toc": "Taula de continguts", "top": "Torna a l'inici" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/cs.html000066400000000000000000000060731475306445600244770ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "cs", "action.edit": "Upravit tuto stránku", "action.skip": "Přeskočit obsah", "action.view": "Zobrazit zdroj této stránky", "announce.dismiss": "Již nezobrazovat", "blog.archive": "Archiv", "blog.categories": "Kategorie", "blog.categories.in": "v", "blog.continue": "Pokračovat ve čtení", "blog.draft": "Návrh", "blog.index": "Zpět na index", "blog.meta": "Metadata", "blog.references": "Související odkazy", "clipboard.copy": "Kopírovat do schránky", "clipboard.copied": "Zkopírováno do schránky", "consent.accept": "Akceptovat", "consent.manage": "Spravovat nastavení", "consent.reject": "Odmítnout", "footer": "Zápatí", "footer.next": "Další", "footer.previous": "Předchozí", "header": "Záhlaví", "meta.comments": "Komentáře", "meta.source": "Zdroj", "nav": "Navigace", "readtime.one": "1 min čtení", "readtime.other": "# min čtení", "rss.created": "RSS kanál", "rss.updated": "RSS zdroj aktualizovaného obsahu", "search": "Vyhledávání", "search.placeholder": "Hledat", "search.share": "Sdílet", "search.reset": "Vyčistit", "search.result.initializer": "Inicializace vyhledávání", "search.result.placeholder": "Pište co se má vyhledat", "search.result.none": "Nenalezeny žádné dokumenty", "search.result.one": "Nalezený dokument: 1", "search.result.other": "Nalezené dokumenty: #", "search.result.more.one": "1 další na této stránce", "search.result.more.other": "# více na této stránce", "search.result.term.missing": "Chybějící", "select.language": "Zvolte jazyk", "select.version": "Vyberte verzi", "source": "Přejít do repozitáře", "source.file.contributors": "Přispěvatelé", "source.file.date.created": "Vytvořeno", "source.file.date.updated": "Poslední aktualizace", "tabs": "Karty", "toc": "Obsah", "top": "Zpět na začátek" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/da.html000066400000000000000000000060111475306445600244460ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "da", "action.edit": "Redigér denne side", "action.skip": "Gå til indholdet", "action.view": "Vis kildetekst på denne side", "announce.dismiss": "Vis ikke dette igen", "blog.archive": "Arkiv", "blog.categories": "Kategorier", "blog.categories.in": "i", "blog.continue": "Læs mere", "blog.draft": "Udkast", "blog.index": "Gå tilbage", "blog.meta": "Metadata", "blog.references": "Relateret indhold", "clipboard.copy": "Kopiér til udklipsholderen", "clipboard.copied": "Kopieret til udklipsholderen", "consent.accept": "Accepter", "consent.manage": "Administrer indstillinger", "consent.reject": "Afvis", "footer": "Sidefod", "footer.next": "Næste", "footer.previous": "Forrige", "header": "Sidehoved", "meta.comments": "Kommentarer", "meta.source": "Kilde", "nav": "Navigation", "readtime.one": "1 minuts læsetid", "readtime.other": "# minutters læsetid", "rss.created": "RSS feed", "rss.updated": "RSS feed af opdateret indhold", "search": "Søg", "search.config.lang": "da", "search.placeholder": "Søg", "search.share": "Del", "search.reset": "Nulstil søgning", "search.result.initializer": "Start søgning", "search.result.placeholder": "Indtast søgeord", "search.result.none": "Ingen resultater fundet", "search.result.one": "1 resultat", "search.result.other": "# resultater", "search.result.more.one": "1 resultat mere på denne side", "search.result.more.other": "# resultater mere på denne side", "search.result.term.missing": "Mangler", "select.language": "Vælg sprog", "select.version": "Vælg version", "source": "Åbn arkiv", "source.file.contributors": "Bidragydere", "source.file.date.created": "Oprettet", "source.file.date.updated": "Sidste ændring", "tabs": "Faner", "toc": "Indholdsfortegnelse", "top": "Tilbage til start" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/de.html000066400000000000000000000061121475306445600244540ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "de", "action.edit": "Seite editieren", "action.skip": "Zum Inhalt", "action.view": "Quellcode der Seite anzeigen", "announce.dismiss": "Nicht mehr anzeigen", "blog.archive": "Archiv", "blog.categories": "Kategorien", "blog.categories.in": "in", "blog.continue": "Weiterlesen", "blog.draft": "Entwurf", "blog.index": "Zur Übersicht", "blog.meta": "Metadaten", "blog.references": "Weiterführende Links", "clipboard.copy": "In Zwischenablage kopieren", "clipboard.copied": "In Zwischenablage kopiert", "consent.accept": "Akzeptieren", "consent.manage": "Einstellungen", "consent.reject": "Ablehnen", "footer": "Fußzeile", "footer.next": "Weiter", "footer.previous": "Zurück", "header": "Kopfzeile", "meta.comments": "Kommentare", "meta.source": "Quellcode", "nav": "Navigation", "readtime.one": "1 Min. Lesezeit", "readtime.other": "# Min. Lesezeit", "rss.created": "RSS Feed", "rss.updated": "RSS Feed der aktualisierten Inhalte", "search": "Suche", "search.config.lang": "de", "search.placeholder": "Suche", "search.share": "Teilen", "search.reset": "Zurücksetzen", "search.result.initializer": "Suche wird initialisiert", "search.result.placeholder": "Suchbegriff eingeben", "search.result.none": "Keine Suchergebnisse", "search.result.one": "1 Suchergebnis", "search.result.other": "# Suchergebnisse", "search.result.more.one": "1 weiteres Suchergebnis auf dieser Seite", "search.result.more.other": "# weitere Suchergebnisse auf dieser Seite", "search.result.term.missing": "Es fehlt", "select.language": "Sprache wechseln", "select.version": "Version auswählen", "source": "Zum Repository", "source.file.contributors": "Mitwirkende", "source.file.date.created": "Erstellt", "source.file.date.updated": "Letztes Update", "tabs": "Hauptnavigation", "toc": "Inhaltsverzeichnis", "top": "Zurück zum Seitenanfang" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/el.html000066400000000000000000000074271475306445600244760ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "el", "action.edit": "Επεξεργασία αυτής της σελίδας", "action.skip": "Μετάβαση στο περιεχόμενο", "action.view": "Προβολή πηγαίου κώδικα", "announce.dismiss": "Μην το ξαναδείξετε αυτό", "blog.archive": "Aρχείο", "blog.categories": "Κατηγορίες", "blog.categories.in": "Στο", "blog.continue": "Περισσότερα", "blog.draft": "Πρόχειρο", "blog.index": "Eπιστροφή", "blog.meta": "Μεταδεδομένα", "blog.references": "Σχετικοί σύνδεσμοι", "clipboard.copy": "Αντιγραφή στο πρόχειρο", "clipboard.copied": "Αντιγράφηκε στο πρόχειρο", "consent.accept": "Αποδοχή", "consent.manage": "Περισσότερες επιλογές", "consent.reject": "Απόρριψη", "footer": "Υποσέλιδο", "footer.next": "Επόμενο", "footer.previous": "Προηγούμενο", "header": "Κεφαλίδα", "meta.comments": "Σχόλια", "meta.source": "Πηγή", "nav": "Πλοήγηση", "readtime.one": "1 λεπτό διάβασμα", "readtime.other": "# λεπτά διάβασμα", "rss.created": "Ροές Δεδομένων RSS", "rss.updated": "Ροές Δεδομένων RSS. Τελευταία νέα", "search": "Αναζήτηση", "search.placeholder": "Αναζήτηση", "search.share": "Διαμοίραση", "search.reset": "Καθαρισμός", "search.result.initializer": "Αρχικοποίηση αναζήτησης", "search.result.placeholder": "Πληκτρολογήστε για να αρχίσει η αναζήτηση", "search.result.none": "δεν βρήκε κάποιο έγγραφο", "search.result.one": "1 έγγραφο που ταιριάζει", "search.result.other": "# έγγραφα που ταιριάζουν", "search.result.more.one": "1 ακόμα σε αυτήν τη σελίδα", "search.result.more.other": "# ακόμα σε αυτήν τη σελίδα", "search.result.term.missing": "Λείπει", "select.language": "Επιλογή γλώσσας", "select.version": "Επιλογή έκδοσης", "source": "Μετάβαση στο αποθετήριο", "source.file.contributors": "Συνεισφέροντες", "source.file.date.created": "Δημιουργήθηκε", "source.file.date.updated": "τελευταία ενημέρωση", "tabs": "Καρτέλες", "toc": "Πίνακας περιεχομένων", "top": "Επιστροφή στην αρχή" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/en.html000066400000000000000000000060711475306445600244720ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "en", "direction": "ltr", "action.edit": "Edit this page", "action.skip": "Skip to content", "action.view": "View source of this page", "announce.dismiss": "Don't show this again", "blog.archive": "Archive", "blog.categories": "Categories", "blog.categories.in": "in", "blog.continue": "Continue reading", "blog.draft": "Draft", "blog.index": "Back to index", "blog.meta": "Metadata", "blog.references": "Related links", "clipboard.copy": "Copy to clipboard", "clipboard.copied": "Copied to clipboard", "consent.accept": "Accept", "consent.manage": "Manage settings", "consent.reject": "Reject", "footer": "Footer", "footer.next": "Next", "footer.previous": "Previous", "header": "Header", "meta.comments": "Comments", "meta.source": "Source", "nav": "Navigation", "readtime.one": "1 min read", "readtime.other": "# min read", "rss.created": "RSS feed", "rss.updated": "RSS feed of updated content", "search": "Search", "search.config.lang": "en", "search.config.pipeline": "stopWordFilter", "search.config.separator": "[\\s\\-]+", "search.placeholder": "Search", "search.share": "Share", "search.reset": "Clear", "search.result.initializer": "Initializing search", "search.result.placeholder": "Type to start searching", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.term.missing": "Missing", "select.language": "Select language", "select.version": "Select version", "source": "Go to repository", "source.file.contributors": "Contributors", "source.file.date.created": "Created", "source.file.date.updated": "Last update", "tabs": "Tabs", "toc": "Table of contents", "top": "Back to top" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/eo.html000066400000000000000000000060151475306445600244710ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "eo", "action.edit": "Redakti ĉi tiun paĝon", "action.skip": "Saltu al enhavo", "action.view": "Vidi fonton de ĉi tiu paĝo", "announce.dismiss": "Ne montru ĉi tion denove", "blog.archive": "Arkivo", "blog.categories": "Kategorioj", "blog.categories.in": "en", "blog.continue": "Daŭrigi legadon", "blog.draft": "Malneto", "blog.index": "Reen al indekso", "blog.meta": "Metadatenoj", "blog.references": "Rilataj ligiloj", "clipboard.copy": "Kopii al tondujo", "clipboard.copied": "Kopiado al klipo", "consent.accept": "Akcepti", "consent.manage": "Administri agordojn", "consent.reject": "Rifuzi", "footer": "Piedlinio", "footer.next": "Sekva", "footer.previous": "Antaŭa", "header": "Kaplinio", "meta.comments": "Komentoj", "meta.source": "Fontkodo", "nav": "Navigado", "readtime.one": "1 min legado", "readtime.other": "# min legado", "rss.created": "RSS-fluo", "rss.updated": "RSS-fluo de ĝisdatigita enhavo", "search": "Serĉi", "search.config.lang": "es", "search.placeholder": "Serĉo", "search.share": "Kunhavigi", "search.reset": "Klara", "search.result.initializer": "Komencante serĉon", "search.result.placeholder": "Tajpu por komenci serĉadon", "search.result.none": "Neniuj kongruaj dokumentoj", "search.result.one": "1 kongrua dokumento", "search.result.other": "# kongruaj dokumentoj", "search.result.more.one": "1 pli sur ĉi tiu paĝo", "search.result.more.other": "# pli sur ĉi tiu paĝo", "search.result.term.missing": "Mankanta", "select.language": "Elekti lingvon", "select.version": "Elekti version", "source": "Iru al deponejo", "source.file.contributors": "Kontribuantoj", "source.file.date.created": "Kreita", "source.file.date.updated": "Lasta ĝisdatigo", "tabs": "Langetoj", "toc": "Enhavtabelo", "top": "Reen al supro" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/es.html000066400000000000000000000061551475306445600245020ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "es", "action.edit": "Editar esta página", "action.skip": "Saltar a contenido", "action.view": "Ver código fuente de esta página", "announce.dismiss": "No mostrar esto de nuevo", "blog.archive": "Archivo", "blog.categories": "Categorías", "blog.categories.in": "en", "blog.continue": "Seguir leyendo", "blog.draft": "Borrador", "blog.index": "Regresar al índice", "blog.meta": "Metadata", "blog.references": "Enlaces relacionados", "clipboard.copy": "Copiar al portapapeles", "clipboard.copied": "Copiado al portapapeles", "consent.accept": "Aceptar", "consent.manage": "Gestionar cookies", "consent.reject": "Rechazar", "footer": "Pie", "footer.next": "Siguiente", "footer.previous": "Anterior", "header": "Cabecera", "meta.comments": "Comentarios", "meta.source": "Fuente", "nav": "Navegación", "readtime.one": "1 minuto de lectura", "readtime.other": "# minutos de lectura", "rss.created": "Fuente RSS", "rss.updated": "Fuente RSS de contenido actualizado", "search": "Buscar", "search.config.lang": "es", "search.placeholder": "Búsqueda", "search.share": "Compartir", "search.reset": "Limpiar", "search.result.initializer": "Inicializando búsqueda", "search.result.placeholder": "Teclee para comenzar búsqueda", "search.result.none": "No se encontraron documentos", "search.result.one": "1 documento encontrado", "search.result.other": "# documentos encontrados", "search.result.more.one": "1 más en esta página", "search.result.more.other": "# más en esta página", "search.result.term.missing": "Falta", "select.language": "Seleccionar idioma", "select.version": "Seleccionar versión", "source": "Ir al repositorio", "source.file.contributors": "Contribuidores", "source.file.date.created": "Creado", "source.file.date.updated": "Última actualización", "tabs": "Pestañas", "toc": "Tabla de contenidos", "top": "Volver al principio" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/et.html000066400000000000000000000057001475306445600244760ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "et", "action.edit": "Muuda seda lehte", "action.skip": "Keri sisuni", "action.view": "Vaata lehe lähtekoodi", "announce.dismiss": "Ära näita uuesti", "blog.archive": "Arhiiv", "blog.categories": "Kategooriad", "blog.categories.in": "sees", "blog.continue": "Jätka lugemist", "blog.draft": "Mustand", "blog.index": "Tagasi indeksisse", "blog.meta": "Metaandmed", "blog.references": "Seotud lingid", "clipboard.copy": "Kopeeri lõikelauale", "clipboard.copied": "Kopeeritud", "consent.accept": "Nõustu", "consent.manage": "Halda seadeid", "consent.reject": "Keeldu", "footer": "Jalus", "footer.next": "Järgmine", "footer.previous": "Eelmine", "header": "Päis", "meta.comments": "Kommentaarid", "meta.source": "Lähtekood", "nav": "Navigatsioon", "readtime.one": "1-minutiline lugemine", "readtime.other": "#-minutiline lugemine", "rss.created": "RSS-voog", "rss.updated": "Uuendatud sisu RSS-voog", "search": "Otsing", "search.placeholder": "Otsi", "search.share": "Jaga", "search.reset": "Lähtesta", "search.result.initializer": "Otsingu lähtestamine", "search.result.placeholder": "Otsimiseks kirjuta siia", "search.result.none": "Otsingule ei leitud ühtegi vastet", "search.result.one": "Leiti üks tulemus", "search.result.other": "Leiti # tulemust", "search.result.more.one": "1 veel sellel lehel", "search.result.more.other": "# veel sellel lehel", "search.result.term.missing": "Puudub", "select.language": "Vali keel", "select.version": "Vali versioon", "source": "Ava repositooriumis", "source.file.contributors": "Autorid", "source.file.date.created": "Loodud", "source.file.date.updated": "Viimane uuendus", "tabs": "Vaheleht", "toc": "Sisukord", "top": "Üles" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/eu.html000066400000000000000000000060601475306445600244770ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "eu", "action.edit": "Editatu orri hau", "action.skip": "Joan zuzenean edukira", "action.view": "Ikusi orri honen iturburua", "announce.dismiss": "Ez erakutsi hau berriro", "blog.archive": "Artxiboa", "blog.categories": "Kategoriak", "blog.categories.in": "kategoria", "blog.continue": "Jarraitu irakurtzen", "blog.draft": "Zirriborroa", "blog.index": "Itzuli aurkibidera", "blog.meta": "Metadatuak", "blog.references": "Erlazionatutako estekak", "clipboard.copy": "Kopiatu arbelean", "clipboard.copied": "Arbelean kopiatuta", "consent.accept": "Onartu", "consent.manage": "Kudeatu ezarpenak", "consent.reject": "Ukatu", "footer": "Orri-oina", "footer.next": "Hurrengoa", "footer.previous": "Aurrekoa", "header": "Atalburua", "meta.comments": "Iruzkinak", "meta.source": "Iturburua", "nav": "Nabigazioa", "readtime.one": "Minutu batean irakurtzeko", "readtime.other": "# minututan irakurtzeko", "rss.created": "RSS jarioa", "rss.updated": "Eduki eguneratuen RSS jarioa", "search": "Bilatu", "search.placeholder": "Bilatu", "search.share": "Partekatu", "search.reset": "Garbitu", "search.result.initializer": "Bilaketa hasieratzen", "search.result.placeholder": "Idatzi bilatzen hasteko", "search.result.none": "Bat datorren dokumenturik ez", "search.result.one": "Bat datorren dokumentu bat", "search.result.other": "Bat datozen # dokumentu", "search.result.more.one": "Bat gehiago orri honetan", "search.result.more.other": "# gehiago orri honetan", "search.result.term.missing": "Falta da", "select.language": "Hautatu hizkuntza", "select.version": "Hautatu bertsioa", "source": "Joan biltegira", "source.file.contributors": "Kolaboratzaileak", "source.file.date.created": "Sortze data", "source.file.date.updated": "Azken eguneratzea", "tabs": "Fitxak", "toc": "Edukiak", "top": "Igo goraino" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/fa.html000066400000000000000000000067671475306445600244720ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "fa", "direction": "rtl", "action.edit": "این صفحه را ویرایش کنید", "action.skip": "پرش به محتویات", "action.view": "محتویات این صفحه را نشان بده", "announce.dismiss": "این را دیگر نشان نده", "blog.archive": "بایگانی", "blog.categories": "دسته‌بندی‌ها", "blog.categories.in": "در", "blog.continue": "ادامه به خواندن", "blog.draft": "پیش‌نویس", "blog.index": "برگشت به فهرست", "blog.meta": "فراداده", "blog.references": "پیوندهای مربوط", "clipboard.copy": "کپی کردن", "clipboard.copied": "کپی شد", "consent.accept": "تایید", "consent.manage": "مدیریت تنظیمات", "consent.reject": "رد کردن", "footer": "پاورقی", "footer.next": "بعدی", "footer.previous": "قبلی", "header": "سرتیتر", "meta.comments": "نظرات", "meta.source": "منبع", "nav": "هدایت", "readtime.one": "1 دقیقه زمان خواندن", "readtime.other": "# دقیقه زمان خواندن", "rss.created": "خوراک آراس‌اس", "rss.updated": "خوراک آراساس محتویات به‌روز شده", "search": "جستجو", "search.config.pipeline": " ", "search.placeholder": "جستجو", "search.share": "هم‌رسانی", "search.reset": "بازنشانی", "search.result.initializer": "راه‌اندازی جستجو", "search.result.placeholder": "برای شروع جستجو تایپ کنید", "search.result.none": "سندی یافت نشد", "search.result.one": "1 سند یافت شد", "search.result.other": "# سند یافت شد", "search.result.more.one": "1 مورد دیگر در این صفحه", "search.result.more.other": "# مورد دیگر در این صفحه", "search.result.term.missing": "موجود نیست", "select.language": "انتخاب زبان", "select.version": "انتخاب ویرایش", "source": "رفتن به مخزن", "source.file.contributors": "مشارکت کنندگان", "source.file.date.created": "ایجاد شده", "source.file.date.updated": "اخرین بروزرسانی", "tabs": "زبانه‌ها", "toc": "فهرست موضوعات", "top": "برگشت به بالا" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/fi.html000066400000000000000000000061301475306445600244620ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "fi", "action.edit": "Muokkaa tätä sivua", "action.skip": "Hyppää sisältöön", "action.view": "Näytä tämän sivun lähdekoodi", "announce.dismiss": "Älä näytä tätä enää", "blog.archive": "Arkisto", "blog.categories": "Kategoriat", "blog.categories.in": "", "blog.continue": "Jatka lukemista", "blog.draft": "Luonnos", "blog.index": "Takaisin hakemistoon", "blog.meta": "Metatiedot", "blog.references": "Liittyvät linkit", "clipboard.copy": "Kopioi leikepöydälle", "clipboard.copied": "Kopioitu leikepöydälle", "consent.accept": "Hyväksy", "consent.manage": "Hallinnoi asetuksia", "consent.reject": "Hylkää", "footer": "Alatunniste", "footer.next": "Seuraava", "footer.previous": "Edellinen", "header": "Ylätunniste", "meta.comments": "Kommentit", "meta.source": "Lähdekodi", "nav": "Navigaatio", "readtime.one": "1 min lukuaika", "readtime.other": "# min lukuaika", "rss.created": "RSS-syöte", "rss.updated": "RSS-syöte päivitetylle sisällölle", "search": "Haku", "search.config.lang": "fi", "search.placeholder": "Hae", "search.share": "Jaa", "search.reset": "Tyhjää", "search.result.initializer": "Aloitetaan hakua", "search.result.placeholder": "Kirjoita aloittaaksesi haun", "search.result.none": "Ei täsmääviä dokumentteja", "search.result.one": "1 täsmäävä dokumentti", "search.result.other": "# täsmäävää dokumenttia", "search.result.more.one": "1 lisää tällä sivulla", "search.result.more.other": "# lisää tällä sivulla", "search.result.term.missing": "Puuttuu", "select.language": "Valitse kieli", "select.version": "Valitse versio", "source": "Mene repositoryyn", "source.file.contributors": "Avustajat", "source.file.date.created": "Luotu", "source.file.date.updated": "Viimeisin päivitys", "tabs": "Välilehdet", "toc": "Sisällysluettelo", "top": "Takaisin ylös" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/fr.html000066400000000000000000000062101475306445600244720ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "fr", "action.edit": "Editer cette page", "action.skip": "Aller au contenu", "action.view": "Consulter la source de cette page", "announce.dismiss": "Ne plus montrer cela", "blog.archive": "Archive", "blog.categories": "Catégories", "blog.categories.in": "dans", "blog.continue": "Continuer à lire", "blog.draft": "Brouillon", "blog.index": "Retourner à l'index", "blog.meta": "Metadonnées", "blog.references": "Liens connexes", "clipboard.copy": "Copier dans le presse-papier", "clipboard.copied": "Copié dans le presse-papier", "consent.accept": "Accepter", "consent.manage": "Paramétrer vos choix", "consent.reject": "Refuser", "footer": "Pied de page", "footer.next": "Suivant", "footer.previous": "Précédent", "header": "En-tête", "meta.comments": "Commentaires", "meta.source": "Source", "nav": "Navigation", "readtime.one": "1 min de lecture", "readtime.other": "# min de lecture", "rss.created": "Flux RSS", "rss.updated": "Flux RSS du contenu mis à jour", "search": "Recherche", "search.config.lang": "fr", "search.placeholder": "Rechercher", "search.share": "Partager", "search.reset": "Effacer", "search.result.initializer": "Initialisation de la recherche", "search.result.placeholder": "Taper pour démarrer la recherche", "search.result.none": "Aucun document trouvé", "search.result.one": "1 document trouvé", "search.result.other": "# documents trouvés", "search.result.more.one": "1 de plus sur cette page", "search.result.more.other": "# de plus sur cette page", "search.result.term.missing": "Non trouvé", "select.language": "Sélectionner la langue", "select.version": "Sélectionner la version", "source": "Aller au dépôt", "source.file.contributors": "Contributeurs", "source.file.date.created": "Créé", "source.file.date.updated": "Dernière mise à jour", "tabs": "Onglets", "toc": "Table des matières", "top": "Retour en haut de la page" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/gl.html000066400000000000000000000060651475306445600244750ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "gl", "action.edit": "Editar esta páxina", "action.skip": "Ir ao contido", "action.view": "Ver código fonte desta páxina", "announce.dismiss": "Non volver a mostrar", "blog.archive": "Arquivo", "blog.categories": "Categorías", "blog.categories.in": "en", "blog.continue": "Continuar lendo", "blog.draft": "Borrador", "blog.index": "Voltar ó índice", "blog.meta": "Metadatos", "blog.references": "Enlaces relacionados", "clipboard.copy": "Copiar no cortapapeis", "clipboard.copied": "Copiado no cortapapeis", "consent.accept": "Aceptar", "consent.manage": "Xestionar configuración", "consent.reject": "Rexeitar", "footer": "Pé", "footer.next": "Seguinte", "footer.previous": "Anterior", "header": "Cabeceira", "meta.comments": "Comentarios", "meta.source": "Fonte", "nav": "Navegación", "readtime.one": "1 minuto de lectura", "readtime.other": "# minutos de lectura", "rss.created": "RSS feed", "rss.updated": "RSS feed do contido actualizado", "search": "Procurar", "search.config.lang": "es", "search.placeholder": "Procura", "search.share": "Compartir", "search.reset": "Limpar", "search.result.initializer": "Inicializando procura", "search.result.placeholder": "Insira un termo", "search.result.none": "Sen resultados", "search.result.one": "1 resultado atopado", "search.result.other": "# resultados atopados", "search.result.more.one": "1 máis nesta páxina", "search.result.more.other": "# máis nesta páxina", "search.result.term.missing": "Falta", "select.language": "Seleccionar idioma", "select.version": "Seleccionar version", "source": "Ir ao repositorio", "source.file.contributors": "Contribuidores", "source.file.date.created": "Creada", "source.file.date.updated": "Última actualización", "tabs": "Pestanas", "toc": "Táboa de contidos", "top": "Volver ao principio" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/he.html000066400000000000000000000064221475306445600244640ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "he", "direction": "rtl", "action.edit": "עריכת הדף הזה", "action.skip": "לדלג לתוכן", "action.view": "צפה במקור של דף זה", "announce.dismiss": "לא להציג את זה שוב", "blog.archive": "ארכיון", "blog.categories": "קטגוריות", "blog.categories.in": "בתוך", "blog.continue": "המשך לקרוא", "blog.draft": "טיוטה", "blog.index": "חזרה לאינדקס", "blog.meta": "מטא-נתונים", "blog.references": "קישורים קשורים", "clipboard.copy": "העתקה ללוח", "clipboard.copied": "הועתק ללוח", "consent.accept": "לקבל", "consent.manage": "לנהל הגדרות", "consent.reject": "לדחות", "footer": "כותרת תחתונה", "footer.next": "הבא", "footer.previous": "הקודם", "header": "כותרת עליונה", "meta.comments": "הערות", "meta.source": "מקור", "nav": "ניווט", "readtime.one": "קריאה 1 דקות", "readtime.other": "# דקות קריאה", "rss.created": "RSS הזנת", "rss.updated": "הזנת RSS של תוכן מעודכן", "search": "חיפוש", "search.config.pipeline": " ", "search.placeholder": "חיפוש", "search.share": "שיתוף", "search.reset": "ניקוי", "search.result.initializer": "אתחול חיפוש", "search.result.placeholder": "יש להקליד כדי להתחיל לחפש", "search.result.none": "אין מסמכים תואמים", "search.result.one": "מסמך1 תואם", "search.result.other": "# מסמך תואם", "search.result.more.one": "עוד אחד בדף הזה", "search.result.more.other": "עוד # בדף הזה", "search.result.term.missing": "חסר", "select.language": "בחירת שפה", "select.version": "בחירת גרסה", "source": "לעבור אל המאגר", "source.file.contributors": "תורמים", "source.file.date.created": "נוצר", "source.file.date.updated": "עדכון אחרון", "tabs": "לשוניות", "toc": "תוכן העניינים", "top": "חזרה למעלה" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/hi.html000066400000000000000000000077271475306445600245010ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "hi", "action.edit": "इस पृष्ठ को संपादित करें", "action.skip": "विषय पर बढ़ें", "action.view": "इस पृष्ठ का सूत्र देखें", "announce.dismiss": "इसे पुनः न दिखायें", "blog.archive": "पुरालेख", "blog.categories": "वर्ग", "blog.categories.in": "में", "blog.continue": "पढ़ते रहिये", "blog.draft": "मसौदा", "blog.index": "सूचि को लौटें", "blog.meta": "मेटाडेटा", "blog.references": "सम्बंधित लिंक", "clipboard.copy": "क्लिपबोर्ड पर कॉपी करें", "clipboard.copied": "क्लिपबोर्ड पर कॉपी कर दिया गया", "consent.accept": "स्वीकार करें", "consent.manage": "सेटिंग्स मैनेज करें", "consent.reject": "अस्वीकार करें", "footer": "फुटर", "footer.next": "आगामी", "footer.previous": "पिछला", "header": "शीर्षक", "meta.comments": "टिप्पणियाँ", "meta.source": "स्रोत", "nav": "नैविगेशन", "readtime.one": "1 मिनट पढ़ने को", "readtime.other": "# मिनट पढ़ने को", "rss.created": "RSS फीड", "rss.updated": "नवीनतम विषयवस्तु का RSS feed", "search": "खोजें", "search.config.lang": "hi", "search.placeholder": "खोज", "search.share": "शेयर करें", "search.reset": "हटा दें", "search.result.initializer": "खोज शुरू करें", "search.result.placeholder": "खोज शुरू करने के लिए टाइप करें", "search.result.none": "कोई मिलान डॉक्यूमेंट नहीं", "search.result.one": "1 मिलान डॉक्यूमेंट", "search.result.other": "# मिलान डाक्यूमेंट्स", "search.result.more.one": "1 और इस पृष्ठ पर", "search.result.more.other": "# और इस पृष्ठ पर", "search.result.term.missing": "ग़ायब", "select.language": "भाषा चुनें", "select.version": "वर्शन चुनें", "source": "रिपॉजिटरी पर जाएं", "source.file.contributors": "योगदाता", "source.file.date.created": "बनाया था", "source.file.date.updated": "आखिरी अपडेट", "tabs": "टैब", "toc": "विषय - सूची", "top": "शीर्षभाग पर लौटें" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/hr.html000066400000000000000000000061021475306445600244740ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "hr", "action.edit": "Uredi stranicu", "action.skip": "Preskoči na sadržaj", "action.view": "Pregledaj izvorni kod ove stranice", "announce.dismiss": "Ne prikazuj ovo opet", "blog.archive": "Arhiva", "blog.categories": "Kategorije", "blog.categories.in": "u", "blog.continue": "Nastavi čitati", "blog.draft": "Nacrt", "blog.index": "Natrag na indeks", "blog.meta": "Metapodaci", "blog.references": "Srodne poveznice", "clipboard.copy": "Kopiraj u međuspremnik", "clipboard.copied": "Kopirano u međuspremnik", "consent.accept": "Prihvati", "consent.manage": "Upravljaj postavkama", "consent.reject": "Odbij", "footer": "Podnožje", "footer.next": "Sljedeće", "footer.previous": "Prethodno", "header": "Zaglavlje", "meta.comments": "Komentari", "meta.source": "Izvor", "nav": "Navigacija", "readtime.one": "1 minuta čitanja", "readtime.other": "# minut(a/e) čitanja", "rss.created": "RSS izvor", "rss.updated": "RSS izvor osvježenog sadržaja", "search": "Pretraživanje", "search.placeholder": "Pretraži", "search.share": "Podijeli", "search.reset": "Očisti", "search.result.initializer": "Inicijaliziranje pretraživanja", "search.result.placeholder": "Unesite pojam pretraživanja", "search.result.none": "Ništa nije pronađeno", "search.result.one": "1 rezultat pretraživanja", "search.result.other": "# rezultat(a) pretraživanja", "search.result.more.one": "1 rezultat na ovoj stranici", "search.result.more.other": "# rezultat(a) na ovoj stranici", "search.result.term.missing": "Nedostaje", "select.language": "Odabir jezika", "select.version": "Odabir verzije", "source": "Idi u repozitorij", "source.file.contributors": "Suradnici", "source.file.date.created": "Stvaranje", "source.file.date.updated": "Posljednje ažuriranje", "tabs": "Kartice", "toc": "Sadržaj", "top": "Vrati se na vrh" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/hu.html000066400000000000000000000061041475306445600245010ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "hu", "action.edit": "Oldal szerkesztése", "action.skip": "Kihagyás", "action.view": "Oldal forrásának megtekintése", "announce.dismiss": "Ne mutasd többet", "blog.archive": "Archívum", "blog.categories": "Kategóriák", "blog.categories.in": "Kategória:", "blog.continue": "Folytatás", "blog.draft": "Piszkozat", "blog.index": "Vissza a főoldalra", "blog.meta": "Metaadat", "blog.references": "Kapcsolódó linkek", "clipboard.copy": "Másolás vágólapra", "clipboard.copied": "Vágólapra másolva", "consent.accept": "Elfogadás", "consent.manage": "Beállítások", "consent.reject": "Visszautasítás", "footer": "Élőláb", "footer.next": "Következő", "footer.previous": "Előző", "header": "Élőfej", "meta.comments": "Hozzászólások", "meta.source": "Forrás", "nav": "Navigáció", "readtime.one": "1 percnyi", "readtime.other": "# percnyi", "rss.created": "RSS feed", "rss.updated": "Frissített tartalom RSS feedje", "search": "Keresés", "search.config.lang": "hu", "search.placeholder": "Keresés", "search.share": "Megosztás", "search.reset": "Törlés", "search.result.initializer": "Keresés inicializálása", "search.result.placeholder": "Kereséshez írj ide valamit", "search.result.none": "Nincs találat", "search.result.one": "1 egyező dokumentum", "search.result.other": "# egyező dokumentum", "search.result.more.one": "1 további találat az oldalon", "search.result.more.other": "# további találat az oldalon", "search.result.term.missing": "Üres", "select.language": "Nyelvváltás", "select.version": "Verzióváltás", "source": "Főoldalra ugrás", "source.file.contributors": "Szerzők", "source.file.date.created": "Létrehozva", "source.file.date.updated": "Utolsó frissítés", "tabs": "Lapok", "toc": "Tartalomjegyzék", "top": "Vissza a tetejére" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/hy.html000066400000000000000000000070341475306445600245100ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "hy", "action.edit": "Խմբագրել այս էջը", "action.skip": "Անցնել պարունակությանը", "action.view": "Դիտել այս էջի սկզբնաղբյուրը", "announce.dismiss": "Այլևս չցուցադրել", "blog.archive": "Արխիվ", "blog.categories": "Կատեգորիաներ", "blog.categories.in": "in", "blog.continue": "Շարունակել կարդալ", "blog.draft": "Սևագիր", "blog.index": "Հետ դեպի ինդեքս", "blog.meta": "Մետատվյալներ", "blog.references": "Առնչվող հղումներ", "clipboard.copy": "Պատճենել", "clipboard.copied": "Պատճենված է", "consent.accept": "Ընդունել", "consent.manage": "Կառավարել կարգավորումները", "consent.reject": "Մերժել", "footer": "Էջատակ", "footer.next": "Հաջորդը", "footer.previous": "Նախորդը", "header": "Գլխագիր", "meta.comments": "Մեկնաբանությունները", "meta.source": "Աղբյուր", "nav": "Տեղորոշում", "readtime.one": "Ընթերցում՝ 1 րոպե", "readtime.other": "Ընթերցում՝ # րոպե", "rss.created": "RSS հոսք", "rss.updated": "Արդիացված բովանդակության RSS հոսք", "search": "Որոնում", "search.config.pipeline": " ", "search.placeholder": "Որոնում", "search.share": "Կիսվել", "search.reset": "Ջնջել", "search.result.initializer": "Որոնում", "search.result.placeholder": "Մուտքագրեք որոնելու համար", "search.result.none": "Արդյունքներ չկան", "search.result.one": "1 արդյունք", "search.result.other": "# արդյունք", "search.result.more.one": "ևս 1-ը այս էջում", "search.result.more.other": "ևս #-ը այս էջում", "search.result.term.missing": "Բացակայում է", "select.language": "Ընտրել լեզուն", "select.version": "Ընտրել տարբերակը", "source": "Դեպի պահոց", "source.file.contributors": "Հեղինակողներ", "source.file.date.created": "Ստեղծված է", "source.file.date.updated": "Վերջին թարմացումը", "tabs": "Ներդիրներ", "toc": "Բովանդակություն", "top": "Վերադառնալ սկիզբ" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/id.html000066400000000000000000000060041475306445600244600ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "id", "action.edit": "Ubah halaman ini", "action.skip": "Lewati ke isi", "action.view": "Lihat sumber halaman ini", "announce.dismiss": "Jangan lihat ini lagi", "blog.archive": "Arsip", "blog.categories": "Kategori", "blog.categories.in": "dalam", "blog.continue": "Lanjut membaca", "blog.draft": "Draf", "blog.index": "Kembali ke indeks", "blog.meta": "Metadata", "blog.references": "Tautan yang berhubungan", "clipboard.copy": "Salin ke clipboard", "clipboard.copied": "Tersalin ke clipboard", "consent.accept": "Terima", "consent.manage": "Kelola pengaturan", "consent.reject": "Tolak", "footer": "Footer", "footer.next": "Selanjutnya", "footer.previous": "Sebelumnya", "header": "Header", "meta.comments": "Komentar", "meta.source": "Sumber", "nav": "Navigasi", "readtime.one": "1 menit baca", "readtime.other": "# menit baca", "rss.created": "Umpan RSS", "rss.updated": "Umpan RSS dari konten yang diperbarui", "search": "Cari", "search.config.pipeline": " ", "search.placeholder": "Cari", "search.share": "Bagikan", "search.reset": "Kosongkan", "search.result.initializer": "Mempersiapkan pencarian", "search.result.placeholder": "Ketik untuk mulai pencarian", "search.result.none": "Tidak ada dokumen yang sesuai", "search.result.one": "1 dokumen ditemukan", "search.result.other": "# dokumen ditemukan", "search.result.more.one": "1 lagi di halaman ini", "search.result.more.other": "# lagi di halaman ini", "search.result.term.missing": "Tidak ada", "select.language": "Pilih bahasa", "select.version": "Pilih versi", "source": "Ke repositori", "source.file.contributors": "Kontributor", "source.file.date.created": "Dibuat", "source.file.date.updated": "Pembaruan terakhir", "tabs": "Tab", "toc": "Daftar isi", "top": "Kembali ke atas" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/is.html000066400000000000000000000060271475306445600245040ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "is", "action.edit": "Breyta þessari síðu", "action.skip": "Hoppa yfir í efnið", "action.view": "Skoða frumgögn þessarar síðu", "announce.dismiss": "Ekki sýna þetta aftur", "blog.archive": "Safn", "blog.categories": "Flokkar", "blog.categories.in": "í", "blog.continue": "Lesa meira", "blog.draft": "Uppkast", "blog.index": "Til baka í yfirlit", "blog.meta": "Lýsigögn", "blog.references": "Þessu tengt", "clipboard.copy": "Afrita á klemmuspjald", "clipboard.copied": "Afritað á klemmuspjald", "consent.accept": "Samþykkja", "consent.manage": "Breyta stillingum", "consent.reject": "Hafna", "footer": "Síðufótur", "footer.next": "Næsta", "footer.previous": "Fyrri", "header": "Haus", "meta.comments": "Umræður", "meta.source": "Frumgögn", "nav": "Valmynd", "readtime.one": "1 mín lestur", "readtime.other": "# mín lestur", "rss.created": "RSS veita", "rss.updated": "RSS veita fyrir uppfært innihald", "search": "Leita", "search.placeholder": "Leita", "search.share": "Deila", "search.reset": "Hreinsa", "search.result.initializer": "Ræsi leitarvél", "search.result.placeholder": "Byrjaðu að skrifa til að hefja leit", "search.result.none": "Engar síður fundust", "search.result.one": "1 síða fannst", "search.result.other": "# síður fundust", "search.result.more.one": "1 til viðbótar á þessari síðu", "search.result.more.other": "# til viðbótar á þessari síðu", "search.result.term.missing": "Vantar", "select.language": "Veldu tungumál", "select.version": "Veldu útgáfu", "source": "Fara í gagnageymslu", "source.file.contributors": "Meðhöfundar", "source.file.date.created": "Búið til", "source.file.date.updated": "Síðast uppfært", "tabs": "Flipar", "toc": "Efnisyfirlit", "top": "Fara aftur efst" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/it.html000066400000000000000000000060101475306445600244750ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "it", "action.edit": "Modifica", "action.skip": "Vai al contenuto", "action.view": "Vedi il sorgente di questa pagina", "announce.dismiss": "Non mostrare più", "blog.archive": "Archivio", "blog.categories": "Categorie", "blog.categories.in": "in", "blog.continue": "Continua a leggere", "blog.draft": "Bozza", "blog.index": "Torna all'indice", "blog.meta": "Metadati", "blog.references": "Collegamenti", "clipboard.copy": "Copia", "clipboard.copied": "Copiato", "consent.accept": "Accetta", "consent.manage": "Gestisci le opzioni", "consent.reject": "Rifiuta", "footer": "Piede", "footer.next": "Successivo", "footer.previous": "Precedente", "header": "Intestazione", "meta.comments": "Commenti", "meta.source": "Sorgente", "nav": "Navigazione", "readtime.one": "1 minuto di lettura", "readtime.other": "# minuti di lettura", "rss.created": "Feed RSS", "rss.updated": "Contenuto aggiornato del feed RSS", "search": "Cerca", "search.config.lang": "it", "search.placeholder": "Cerca", "search.share": "Condividi", "search.reset": "Cancella", "search.result.initializer": "Inizializza la ricerca", "search.result.placeholder": "Scrivi per iniziare a cercare", "search.result.none": "Nessun documento trovato", "search.result.one": "1 documento trovato", "search.result.other": "# documenti trovati", "search.result.more.one": "1 altro in questa pagina", "search.result.more.other": "# altri in questa pagina", "search.result.term.missing": "Non presente", "select.language": "Seleziona la lingua", "select.version": "Seleziona la versione", "source": "Apri repository", "source.file.contributors": "Contributori", "source.file.date.created": "Creata", "source.file.date.updated": "Ultimo aggiornamento", "tabs": "Tabs", "toc": "Indice", "top": "Torna su" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/ja.html000066400000000000000000000066331475306445600244660ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "ja", "action.edit": "編集", "action.skip": "コンテンツにスキップ", "action.view": "このページの原文を表示", "announce.dismiss": "非表示にします", "blog.archive": "過去の投稿", "blog.categories": "カテゴリー", "blog.categories.in": "", "blog.continue": "続きを読む", "blog.draft": "下書き", "blog.index": "ブログトップへ戻る", "blog.meta": "メタデータ", "blog.references": "関連リンク", "clipboard.copy": "クリップボードへコピー", "clipboard.copied": "コピーしました", "consent.accept": "同意", "consent.manage": "サイトの設定", "consent.reject": "拒否", "footer": "フッター", "footer.next": "次", "footer.previous": "前", "header": "ヘッダー", "meta.comments": "コメント", "meta.source": "ソース", "nav": "ナビゲーション", "readtime.one": "このページは約1分で読めます", "readtime.other": "このページは約#分で読めます", "rss.created": "新しいページのRSSフィード", "rss.updated": "更新されたページのRSSフィード", "search": "検索", "search.config.lang": "ja", "search.config.pipeline": "stemmer", "search.config.separator": "[\\s\\- 、。,.]+", "search.placeholder": "検索", "search.share": "共有", "search.reset": "クリア", "search.result.initializer": "検索を初期化", "search.result.placeholder": "検索キーワードを入力してください", "search.result.none": "何も見つかりませんでした", "search.result.one": "1件見つかりました", "search.result.other": "#件見つかりました", "search.result.more.one": "このページ内にもう1件見つかりました", "search.result.more.other": "このページ内にあと#件見つかりました", "search.result.term.missing": "検索に含まれない", "select.language": "言語切り替え", "select.version": "バージョン切り替え", "source": "リポジトリへ", "source.file.contributors": "投稿者", "source.file.date.created": "作成日", "source.file.date.updated": "最終更新日", "tabs": "タブ", "toc": "目次", "top": "ページトップへ戻る" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/ka.html000066400000000000000000000050531475306445600244620ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "ka", "action.edit": "გვერდის რედარქირება", "action.skip": "კონტენტზე გადასვლა", "clipboard.copy": "კოპირება", "clipboard.copied": "კოპირებულია", "footer.next": "შემდეგი", "footer.previous": "წინა", "meta.comments": "კომენტარები", "meta.source": "წყარო", "nav": "ნავიგაცია", "search.config.pipeline": " ", "search.placeholder": "ძებნა", "search.reset": "გასუფთავება", "search.result.placeholder": "ჩაწერე ძებნის დასაწყებად", "search.result.none": "დოკუმენტი ვერ მოიძებნა", "search.result.one": "მოიძებნა 1 დოკუმენტი", "search.result.other": "მოიძებნა # დოკუმენტი", "search.result.more.one": "კიდევ 1 ამ გვერდზე", "search.result.more.other": "კიდევ # ამ გვერდზე", "source": "საცავში გადასვლა", "source.file.date.created": "შეიქმნა", "source.file.date.updated": "ბოლო განახლება", "tabs": "ტაბები", "toc": "სარჩევი" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/kn.html000066400000000000000000000113421475306445600244750ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "kn", "action.edit": "ಈ ಪುಟವನ್ನು ತಿದ್ದುಪಡಿ ಮಾಡಿ", "action.skip": "ವಿಷಯಕ್ಕೆ ತೆರಳಿ", "action.view": "ಈ ಪುಟದ ಮೂಲವನ್ನು ವೀಕ್ಷಿಸಿ", "announce.dismiss": "ಇದನ್ನು ಮತ್ತೊಮ್ಮೆ ತೋರಿಸಬೇಡಿ", "blog.archive": "ಹಳೆಯ ಲೇಖನ", "blog.categories": "ವರ್ಗಗಳು", "blog.categories.in": "ರಲ್ಲಿ", "blog.continue": "ಓದು ಮುಂದುವರೆಸಿ", "blog.draft": "ಆರಂಭಿಕ ಬರವಣಿಗೆ", "blog.index": "ಸೂಚ್ಯಂಕಕ್ಕೆ ಹಿಂತಿರುಗಿ", "blog.meta": "ಮಾಹಿತಿಯ ಬಗ್ಗೆ ಮಾಹಿತಿ", "blog.references": "ಸಂಬಂಧಿತ ಉಲ್ಲೇಖಗಳು", "clipboard.copy": "ಇದನ್ನು ನಕಲಿಸಿ", "clipboard.copied": "ಇದನ್ನು ನಕಲು ಮಾಡಿದೆ", "consent.accept": "ನಾನು ಇದನ್ನು ಒಪ್ಪಿಕೊಳ್ಳುತ್ತೇನೆ", "consent.manage": "ಸಂರಚನೆಯನ್ನು ನಿರ್ವಹಿಸಿ", "consent.reject": "ನಾನು ಇದನ್ನು ತಿರಸ್ಕರಿಸುತ್ತೇನೆ", "footer": "ಅಡಿಟಿಪ್ಪಣಿ", "footer.next": "ಮುಂದಿನ ಸಂಚಿಕೆ", "footer.previous": "ಹಿಂದಿನ ಸಂಚಿಕೆ", "header": "ಮೇಲ್ಟಿಪ್ಪಣಿ", "meta.comments": "ಪ್ರತಿಕ್ರಿಯೆಗಳು", "meta.source": "ಮೂಲ", "nav": "ಸಂಚರಣೆ", "readtime.one": "ಓದಲು ೧ ನಿಮಿಷ ತೆಗೆದುಕೊಳ್ಳುತ್ತದೆ", "readtime.other": "ಓದಲು # ನಿಮಿಷಗಳನ್ನು ತೆಗೆದುಕೊಳ್ಳುತ್ತದೆ", "rss.created": "ಆರ್ಎಸ್ಎಸ್ ಸೇವೆ", "rss.updated": "ಆರ್ಎಸ್ಎಸ್ ಸೇವೆಯಿಂದ ಇತ್ತೀಚಿನ ನವೀಕರಣ", "search": "ಹುಡುಕಿ", "search.placeholder": "ಹುಡುಕಿ", "search.share": "ಹಂಚಿಕೊಳ್ಳಿ", "search.reset": "ಅಳಿಸು", "search.result.initializer": "ಹುಡುಕಾಟವನ್ನು ಪ್ರಾರಂಭಿಸಲಾಗುತ್ತಿದೆ", "search.result.placeholder": "ಬರೆಯುವ ಮೂಲಕ ಹುಡುಕಲು ಪ್ರಾರಂಭಿಸಿ", "search.result.none": "ಹೊಂದಾಣಿಕೆಯಾಗುವ ದಾಖಲೆಗಳಿಲ್ಲ", "search.result.one": "೧ ಹೊಂದಾಣಿಕೆಯ ದಾಖಲೆಯಿದೆ", "search.result.other": "# ಹೊಂದಾಣಿಕೆಯ ದಾಖಲೆಗಳಿವೆ", "search.result.more.one": "ಈ ಪುಟದಲ್ಲಿ ಇನ್ನೂ ಒಂದು ಕಂಡುಬಂದಿದೆ", "search.result.more.other": "ಈ ಪುಟದಲ್ಲಿ ಇನ್ನೂ # ಇವೆ", "search.result.term.missing": "ಕಾಣೆಯಾಗಿದೆ", "select.language": "ಭಾಷೆಯನ್ನು ಆಯ್ಕೆಮಾಡಿ", "select.version": "ಆವೃತ್ತಿಯನ್ನು ಆಯ್ಕೆಮಾಡಿ", "source": "ಭಂಡಾರಕ್ಕೆ ಹೋಗಿ", "source.file.contributors": "ಕೊಡುಗೆದಾರರು", "source.file.date.created": "ರಚಿಸಿದ ದಿನಾಂಕ", "source.file.date.updated": "ಕೊನೆಯ ನವೀಕರಣ ದಿನಾಂಕ", "tabs": "ವಿವಿಧ ಕಿಟಕಿಗಳು", "toc": "ವಿಷಯಗಳ ಪಟ್ಟಿ", "top": "ಮೇಲಕ್ಕೆ ಹಿಂತಿರುಗಿ" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/ko.html000066400000000000000000000063071475306445600245030ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "ko", "action.edit": "이 페이지를 편집", "action.skip": "콘텐츠로 이동", "action.view": "페이지소스 보기", "announce.dismiss": "다시 안보기", "blog.archive": "아카이브", "blog.categories": "카테고리", "blog.categories.in": "카테고리", "blog.continue": "계속 읽기", "blog.draft": "임시 저장", "blog.index": "Index로 돌아가기", "blog.meta": "메타데이터", "blog.references": "관련 링크", "clipboard.copy": "클립보드로 복사", "clipboard.copied": "클립보드에 복사됨", "consent.accept": "동의 허락", "consent.manage": "동의 허락 관리", "consent.reject": "동의 거부", "footer": "하단/푸터", "footer.next": "다음", "footer.previous": "이전", "header": "상단/헤더", "meta.comments": "댓글", "meta.source": "출처", "nav": "네비게이션", "readtime.one": "읽는시간 1분", "readtime.other": "읽는시간 #분", "rss.created": "RSS 피드 생성완료", "rss.updated": "RSS 피드 업데이트완료", "search": "검색", "search.config.pipeline": " ", "search.placeholder": "검색", "search.share": "공유", "search.reset": "지우기", "search.result.initializer": "검색 초기화", "search.result.placeholder": "검색어를 입력하세요", "search.result.none": "검색어와 일치하는 문서가 없습니다", "search.result.one": "1개의 일치하는 문서", "search.result.other": "#개의 일치하는 문서", "search.result.more.one": "이 문서에서 1개의 검색 결과 더 보기", "search.result.more.other": "이 문서에서 #개의 검색 결과 더 보기", "search.result.term.missing": "포함되지 않은 검색어", "select.language": "언어설정", "select.version": "버전 선택", "source": "저장소로 이동", "source.file.contributors": "참여자들", "source.file.date.created": "작성일", "source.file.date.updated": "마지막 업데이트", "tabs": "탭", "toc": "목차", "top": "맨위로" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/ku-IQ.html000066400000000000000000000061641475306445600250210ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "ku", "direction": "rtl", "action.edit": "دەستکاری ئەم پەڕە بکە", "action.skip": "ئەم ناوەڕۆکە بپەڕێنە", "action.view": "سەرچاوەی ئەم لاپەڕەیە نیشان بدە", "announce.dismiss": "دووبارە ئەمە پیشان مەدە", "clipboard.copy": "لەبەرگتنەوە بۆ کلیپبۆرد", "clipboard.copied": "لەبەرگیرایەوە بۆ کلیپ بۆرد", "consent.accept": "ڕازیبوون", "consent.manage": "بەڕیوەبردنی ڕیکخستنەکان", "consent.reject": "ڕەتکردنەوە", "footer": "ژێرپەڕە", "footer.next": "دواتر", "footer.previous": "پێشتر", "header": "ناونیشانی بەڕه", "meta.comments": "لێدوانەکان", "meta.source": "سەرجاوە", "nav": "ڕێنیشاندەر", "search": "گەڕان", "search.config.pipeline": " ", "search.placeholder": "گەڕان", "search.share": "گەڕان", "search.reset": "سڕینەوە", "search.result.initializer": "ئامادەکردنی گەڕان", "search.result.placeholder": "بنووسە بۆ دەستپێکردن بە گەڕان", "search.result.none": "هیچ بەڵگەنامەیەکی هاوتا نیە", "search.result.one": "١ بەڵگەنامەی هاوتا", "search.result.other": "بەڵگەنامەی هاوتا #", "search.result.more.one": "١ دانەی تر لەسەر ئەم پەڕەیە", "search.result.more.other": "دانەی تر لەسەر ئەم پەڕەیە #", "search.result.term.missing": "ونبوو", "select.language": "زمان دیاریبکە", "select.version": "وەشان دیاریبکە", "source": "بڕۆ بۆ کۆگا", "source.file.date.created": "دروسکت کرا", "source.file.date.updated": "دوایین نوێکردنەوە", "tabs": "تابەکان", "toc": "خشتەی ناوەڕۆکەکان", "top": "گەڕانەوە بۆ سەرەوە" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/lb.html000066400000000000000000000060341475306445600244640ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "lb", "direction": "ltr", "action.edit": "D'Säit beaarbechten", "action.skip": "Zum Inhalt iwwersprangen", "action.view": "Quellcode uweisen", "announce.dismiss": "Net erëm uweisen", "blog.archive": "Archiv", "blog.categories": "Kategorien", "blog.categories.in": "an", "blog.continue": "Weider liesen", "blog.draft": "Skizz", "blog.index": "Zeréck zum Index", "blog.meta": "Metadaten", "blog.references": "Änlech Links", "clipboard.copy": "Kopéieren", "clipboard.copied": "Kopéiert", "consent.accept": "Accept", "consent.manage": "Astellungen beaarbechten", "consent.reject": "Ofleenen", "footer": "Footer", "footer.next": "Weider", "footer.previous": "Zeréck", "header": "Header", "meta.comments": "Kommentaren", "meta.source": "Quell", "nav": "Navigatioun", "readtime.one": "1 min Liesedauer", "readtime.other": "# min Liesedauer", "rss.created": "RSS feed", "rss.updated": "RSS feed vun aktualiséiertem Inhalt", "search": "Sichen", "search.placeholder": "Sichen", "search.share": "Deelen", "search.reset": "Läschen", "search.result.initializer": "D'Sich gëtt initialiséiert", "search.result.placeholder": "Schreif fir eppes ze sichen", "search.result.none": "Keng zoutreffend Dokumenter", "search.result.one": "1 zoutreffend Dokument", "search.result.other": "# zoutreffend Dokumenter", "search.result.more.one": "1 méi op dëser Säit", "search.result.more.other": "# méi op dëser Säit", "search.result.term.missing": "Feelend", "select.language": "Sprooch auswielen", "select.version": "Versioun auswielen", "source": "Op den Repository goen", "source.file.contributors": "Matwirkender", "source.file.date.created": "Erstallt", "source.file.date.updated": "Läscht update", "tabs": "Tabs", "toc": "Inhaltsverzeichnis", "top": "Zeréck zum Ufank" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/lt.html000066400000000000000000000061751475306445600245140ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "lt", "action.edit": "Redaguoti šį puslapį", "action.skip": "Pereiti prie turinio", "action.view": "Žiūrėti puslapio šaltinius", "announce.dismiss": "Daugiau neberodyti", "blog.archive": "Archyvas", "blog.categories": "Kategorijos", "blog.categories.in": "į", "blog.continue": "Skaityti toliau", "blog.draft": "Ruošinys", "blog.index": "Grįžti į indeksą", "blog.meta": "Meta duomenys", "blog.references": "Susieja saitai", "clipboard.copy": "Kopijuoti į iškarpinę", "clipboard.copied": "Nukopijuota į iškarpinę", "consent.accept": "Sutikti", "consent.manage": "Redaguoti nustatymus", "consent.reject": "Atmesti", "footer": "Poraštė", "footer.next": "Sekantis", "footer.previous": "Ankstesnis", "header": "Antraštė", "meta.comments": "Komentarai", "meta.source": "Išeitinis kodas", "nav": "Navigacija", "readtime.one": "1 min skaitymo", "readtime.other": "# min skaitymo", "rss.created": "RSS šaltinis", "rss.updated": "RSS šaltinis atnaujinimams", "search": "Paieška", "search.config.pipeline": " ", "search.placeholder": "Paieška", "search.share": "Dalintis", "search.reset": "Išvalyti", "search.result.initializer": "Paieškos inicijavimas", "search.result.placeholder": "Įveskite norėdami pradėti paiešką", "search.result.none": "Atitinkančių dokumentų nerasta", "search.result.one": "1 atitinkantis dokumentas", "search.result.other": "# atitinkantys dokumentai", "search.result.more.one": "Dar 1 šiame puslapyje", "search.result.more.other": "Dar # šiame puslapyje", "search.result.term.missing": "Nerasta", "select.language": "Pasirinkti kalbą", "select.version": "Pasrinkti versiją", "source": "Eiti į saugyklą", "source.file.contributors": "Dalininkai", "source.file.date.created": "Sukurta", "source.file.date.updated": "Paskutinis atnaujinimas", "tabs": "Skirtukai", "toc": "Turinys", "top": "Grįžti į viršų" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/lv.html000066400000000000000000000061341475306445600245110ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "lv", "action.edit": "Rediģēt šo lapu", "action.skip": "Pāriet uz saturu", "action.view": "Rādīt šīs lapas avotu", "announce.dismiss": "Nerādīt vairs", "blog.archive": "Arhivēt", "blog.categories": "Kategorijas", "blog.categories.in": "iekš", "blog.continue": "Turpināt lasīt", "blog.draft": "Melnraksts", "blog.index": "Atpakaļ uz satura rādītāju", "blog.meta": "Metadati", "blog.references": "Saistītās saites", "clipboard.copy": "Kopēt starpliktuvē", "clipboard.copied": "Kopēts starpliktuvē", "consent.accept": "Pieņemt", "consent.manage": "Pārvaldīt iestatījumus", "consent.reject": "Noraidīt", "footer": "Kājene", "footer.next": "Nākamais", "footer.previous": "Iepriekšējais", "header": "Galvene", "meta.comments": "Komentārs", "meta.source": "Avots", "nav": "Navigācija", "readtime.one": "1 min lasīšana", "readtime.other": "# min lasīšana", "rss.created": "RSS padeve", "rss.updated": "RSS padeve atjauninātajam saturam", "search": "Meklēt", "search.placeholder": "Meklēt", "search.share": "Dalīties", "search.reset": "Notīrīt", "search.result.initializer": "Notiek meklēšanas inicializācija", "search.result.placeholder": "Ierakstiet, lai sāktu meklēšanu", "search.result.none": "Nav atbilstošu dokumentu", "search.result.one": "1 atbilstošs dokuments", "search.result.other": "# atbilstoši dokumenti ", "search.result.more.one": "1 šajā lapā", "search.result.more.other": "# un vairāk šajā lapā", "search.result.term.missing": "Trūkstošs", "select.language": "Izvēlies valodu", "select.version": "Izvēlies versiju", "source": "Doties uz repozitoriju", "source.file.contributors": "Veidotāji", "source.file.date.created": "Izveidots", "source.file.date.updated": "Pēdējoreiz atjaunots", "tabs": "Cilnes", "toc": "Satura rādītājs", "top": "Atpakaļ uz augšu" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/mk.html000066400000000000000000000073771475306445600245110ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "mk", "action.edit": "Уредете ја оваа страница", "action.skip": "Прескокнете до содржината", "action.view": "Прикажи го изворот на оваа страница", "announce.dismiss": "Не го прикажувај ова повторно", "blog.archive": "Архива", "blog.categories": "Категории", "blog.categories.in": "во", "blog.continue": "Продолжи со читање", "blog.draft": "Нацрт", "blog.index": "Назад кон индекс", "blog.meta": "Метадата", "blog.references": "Поврзани линкови", "clipboard.copy": "Копирај во таблата", "clipboard.copied": "Копирано", "consent.accept": "Прифати", "consent.manage": "Прилагодување со поставките", "consent.reject": "Одбиј", "footer": "Подножје", "footer.next": "Следно", "footer.previous": "Претходно", "header": "Заглавје", "meta.comments": "Коментари", "meta.source": "Извор", "nav": "Наслов за навигација", "readtime.one": "1 min читање", "readtime.other": "# min читање", "rss.created": "RSS извор", "rss.updated": "RSS извор на ажурирана содржина", "search": "Пребарување", "search.config.lang": "ru", "search.placeholder": "Пребарување", "search.share": "Сподели", "search.reset": "Чисти", "search.result.initializer": "Иницијализирање на пребарувањето", "search.result.placeholder": "Напишете за да започнете со пребарување", "search.result.none": "Нема соодветни документи", "search.result.one": "1 документ што се совпаѓа", "search.result.other": "# соодветни документи", "search.result.more.one": "Уште 1 на оваа страница", "search.result.more.other": "Уште # на оваа страница", "search.result.term.missing": "Недостасува", "select.language": "Изберете јазик", "select.version": "Изберете верзија", "source": "Одете до складиштето", "source.file.contributors": "Соработници", "source.file.date.created": "Создаден", "source.file.date.updated": "Последно ажурирање", "tabs": "Јазичиња", "toc": "Содржина", "top": "Вратете се на почетокот" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/mn.html000066400000000000000000000045151475306445600245030ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "mn", "action.edit": "Хуудас засварлах", "action.skip": "Агуулгыг алгасах", "clipboard.copy": "Хуулах", "clipboard.copied": "Санах ойд хуулах", "footer": "Хөл", "footer.next": "Дараах", "footer.previous": "Өмнөх", "header": "Толгой", "meta.comments": "Сэтгэгдэл", "meta.source": "Эх үүсвэр", "nav": "Чиглүүлэгч", "search.config.lang": "ru", "search.placeholder": "Хайлт", "search.reset": "Цэвэрлэх", "search.result.placeholder": "Хайлтын үгээ бичнэ үү", "search.result.none": "Таарц илэрсэнгүй", "search.result.one": "1 таарц илэрлээ", "search.result.other": "# Тохирох баримт бичиг", "search.result.more.one": "1 илүү хуудас байна", "search.result.more.other": "# илүү хуудас байна", "source": "Хадгалах сан руу очих", "source.file.date.created": "Үүсгэсэн", "source.file.date.updated": "Сүүлийн шинэчлэлт", "tabs": "Табууд", "toc": "Агуулга" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/ms.html000066400000000000000000000047661475306445600245200ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "ms", "action.edit": "Edit halaman ini", "action.skip": "Langkau tajuk talian", "action.view": "Paparkan sumber laman ini", "announce.dismiss": "Jangan paparkan lagi", "blog.archive": "Arkib", "blog.categories": "Kategori", "blog.categories.in": "masuk", "clipboard.copy": "Salin ke papan keratan", "clipboard.copied": "Disalin ke papan keratan", "footer": "Pengaki", "footer.next" : "Seterusnya", "footer.previous": "Sebelumnya", "header": "Pengepala", "meta.comments": "Komen", "meta.source": "Sumber", "nav": "Navigasi", "search.placeholder": "Cari", "search.reset": "Padam", "search.result.initializer": "Siap carian", "search.result.placeholder": "Taip untuk mula mencari", "search.result.none": "Tiada dokumen yang sepadan", "search.result.one": "1 dokumen yang sepadan", "search.result.other": "# dokumen yang sepadan", "search.result.more.one": "1 lagi di halaman ini", "search.result.more.other": "# lagi di halaman ini", "search.result.term.missing": "Hilang", "select.language": "Pilih bahasa", "select.version": "Pilih versi", "source": "tajuk talian asal", "source.file.date.created": "tarikh fil asal dicipta", "source.file.date.updated": "Tarikh fil dikemas kini", "tabs": "Tab", "toc": "Jadual kandungan", "top": "Kembali ke atas" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/my.html000066400000000000000000000053241475306445600245150ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "my", "action.edit": "ဤ စာမျက်နှာကို ပြင်ရန်", "action.skip": "မာတိကာ သို့ သွားရန်", "clipboard.copy": "ကလစ်ဘုတ် သို့ ကူးယူရန်", "clipboard.copied": "ကလစ်ဘုတ် သို့ ကူယူပြီး", "footer": "အောက်ခြေ", "footer.next": "ရှေ့သို့", "footer.previous": "နောက်သို့", "header": "ခေါင်းပိုင်း", "meta.comments": "မှတ်ချက်များ", "meta.source": "ရင်းမြစ်", "nav": "လမ်းညွှန်", "search.config.pipeline": " ", "search.placeholder": "ရှာရန်", "search.reset": "ရှင်းလင်း", "search.result.placeholder": "ရှာဖွေခြင်းစရန် စာရိုက်ပါ", "search.result.none": "တူညီသော စာရွက်စာတမ်းများ မရှိပါ", "search.result.one": "စာရွက်စာတမ်း ၁ ခု တူညီသည်", "search.result.other": "စာရွက်စာတမ်း # ခု တူညီသည်", "source": "repository သို့ သွားရန်", "source.file.date.created": "နေပြည်တော်", "source.file.date.updated": "နောက်ဆုံး ထုတ်ပြန်ချက်", "tabs": "တက်များ", "toc": "ပါဝင်အကြောင်းအရာများ" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/nb.html000066400000000000000000000057101475306445600244660ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "nb", "action.edit": "Rediger denne siden", "action.skip": "Gå til innhold", "action.view": "Vis kildekoden til denne siden", "announce.dismiss": "Ikke vis dette igjen", "blog.archive": "Arkiv", "blog.categories": "Kategorier", "blog.categories.in": "i", "blog.continue": "Fortsett å lese", "blog.draft": "Kladd", "blog.index": "Tilbake til oversikt", "blog.meta": "Metadata", "blog.references": "Relaterte lenker", "clipboard.copy": "Kopier til utklippstavlen", "clipboard.copied": "Kopiert til utklippstavlen", "consent.accept": "Akseptert", "consent.manage": "Innstillinger", "consent.reject": "Reject", "footer": "Footer", "footer.next": "Neste", "footer.previous": "Forrige", "header": "Header", "meta.comments": "Kommentarer", "meta.source": "Kilde", "nav": "Navigasjon", "readtime.one": "lesteid: 1 min", "readtime.other": "lesetid: # min", "rss.created": "RSS feed", "rss.updated": "Oppdatert RSS feed", "search": "Søk", "search.config.lang": "no", "search.placeholder": "Søk", "search.share": "Del", "search.reset": "Nullstill", "search.result.initializer": "Starter søk", "search.result.placeholder": "Skriv søkeord", "search.result.none": "Ingen treff", "search.result.one": "1 treff", "search.result.other": "# treff", "search.result.more.one": "1 til på denne siden", "search.result.more.other": "# flere på denne siden", "search.result.term.missing": "Mangler", "select.language": "Velg språk", "select.version": "Velg versjon", "source": "Gå til kilde", "source.file.contributors": "Bidragsytere", "source.file.date.created": "Opprettet", "source.file.date.updated": "Sist oppdatert", "tabs": "Faner", "toc": "Innholdsliste", "top": "Tilbake til toppen" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/nl.html000066400000000000000000000061211475306445600244750ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "nl", "action.edit": "Wijzig deze pagina", "action.skip": "Ga naar inhoud", "action.view": "Bron van deze pagina bekijken", "announce.dismiss": "Niet meer laten zien", "blog.archive": "Archief", "blog.categories": "Categorieën", "blog.categories.in": "in", "blog.continue": "Doorgaan met lezen", "blog.draft": "Concept", "blog.index": "Terug naar de inhoudsopgave", "blog.meta": "Metadata", "blog.references": "Gerelateerde links", "clipboard.copy": "Kopiëren naar klembord", "clipboard.copied": "Gekopieerd naar klembord", "consent.accept": "Accepteren", "consent.manage": "Instellingen", "consent.reject": "Afwijzen", "footer": "Footer", "footer.next": "Volgende", "footer.previous": "Vorige", "header": "Header", "meta.comments": "Reacties", "meta.source": "Bron", "nav": "Navigatie", "readtime.one": "1 min leestijd", "readtime.other": "# min leestijd", "rss.created": "RSS feed", "rss.updated": "RSS feed met geüpdatet inhoud", "search": "Zoeken", "search.config.lang": "nl", "search.placeholder": "Zoeken", "search.share": "Delen", "search.reset": "Leegmaken", "search.result.initializer": "Zoeken initialiseren", "search.result.placeholder": "Typ om te beginnen met zoeken", "search.result.none": "Geen overeenkomende documenten", "search.result.one": "1 overeenkomende document", "search.result.other": "# overeenkomende documenten", "search.result.more.one": "1 extra overeenkomst op deze pagina", "search.result.more.other": "# extra overeenkomsten op deze pagina", "search.result.term.missing": "Ontbreekt", "select.language": "Selecteer taal", "select.version": "Selecteer versie", "source": "Ga naar repository", "source.file.contributors": "Bijdragers", "source.file.date.created": "Gecreëerd", "source.file.date.updated": "Laatst geüpdatet", "tabs": "Tabs", "toc": "Inhoudsopgave", "top": "Terug naar boven" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/nn.html000066400000000000000000000057011475306445600245020ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "nn", "action.edit": "Rediger denne sida", "action.skip": "Gå til innhald", "action.view": "Vis kjeldekoden for denne sida", "announce.dismiss": "Ikkje vis igjen", "blog.archive": "Arkiver", "blog.categories": "Kategoriar", "blog.categories.in": "i", "blog.continue": "Les vidare", "blog.draft": "Utkast", "blog.index": "Tilbake til index", "blog.meta": "Metadata", "blog.references": "Relaterte lenkjer", "clipboard.copy": "Kopier til utklippstavla", "clipboard.copied": "Kopiert til utklippstavla", "consent.accept": "Akseptert", "consent.manage": "Innstillingar", "consent.reject": "Avvis", "footer": "Footer", "footer.next": "Neste", "footer.previous": "Førre", "header": "Header", "meta.comments": "Kommentarar", "meta.source": "Kjelde", "nav": "Navigasjon", "readtime.one": "1 min lesnad", "readtime.other": "# min lesnad", "rss.created": "RSS feed", "rss.updated": "RSS feed for oppdatert innhald", "search": "Søk", "search.config.lang": "no", "search.placeholder": "Søk", "search.share": "Del", "search.reset": "Nullstill", "search.result.initializer": "Startar søk", "search.result.placeholder": "Skriv søkjeord", "search.result.none": "Ingen treff", "search.result.one": "1 treff", "search.result.other": "# treff", "search.result.more.one": "1 til på denne sida", "search.result.more.other": "# fleire på denne sida", "search.result.term.missing": "Manglar", "select.language": "Vel språk", "select.version": "Vel versjon", "source": "Gå til kjelde", "source.file.contributors": "Bidragsytarar", "source.file.date.created": "Oppretta", "source.file.date.updated": "Sist oppdatert", "tabs": "Faner", "toc": "Innhaldsliste", "top": "Tilbake til toppen" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/pl.html000066400000000000000000000061731475306445600245060ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "pl", "action.edit": "Edytuj tę stronę", "action.skip": "Przejdź do treści", "action.view": "Zobacz kod źródłowy tej strony", "announce.dismiss": "Nie pokazuj tego ponownie", "blog.archive": "Archiwum", "blog.categories": "Kategorie", "blog.categories.in": "", "blog.continue": "Czytaj dalej", "blog.draft": "Wersja robocza", "blog.index": "Powrót do indeksu", "blog.meta": "Metadane", "blog.references": "Powiązane łącza", "clipboard.copy": "Kopiuj do schowka", "clipboard.copied": "Skopiowano do schowka", "consent.accept": "Akceptuj", "consent.manage": "Zarządzaj ustawieniami", "consent.reject": "Odrzuć", "footer": "Stopka", "footer.next": "Następna strona", "footer.previous": "Poprzednia strona", "header": "Nagłówek", "meta.comments": "Komentarze", "meta.source": "Kod źródłowy", "nav": "Nawigacja", "readtime.one": "Czas czytania: 1 min", "readtime.other": "Czas czytania: # min", "rss.created": "Kanał RSS", "rss.updated": "Kanał RSS zaktualizowanych treści", "search": "Szukaj", "search.config.pipeline": " ", "search.placeholder": "Szukaj", "search.share": "Udostępnij", "search.reset": "Wyczyść", "search.result.initializer": "Inicjowanie wyszukiwania", "search.result.placeholder": "Zacznij pisać, aby szukać", "search.result.none": "Brak wyników wyszukiwania", "search.result.one": "Wyniki wyszukiwania: 1", "search.result.other": "Wyniki wyszukiwania: #", "search.result.more.one": "1 więcej na tej stronie", "search.result.more.other": "# więcej na tej stronie", "search.result.term.missing": "Brak", "select.language": "Wybierz język", "select.version": "Wybierz wersję", "source": "Przejdź do repozytorium", "source.file.contributors": "Kontrybutorzy", "source.file.date.created": "Utworzony", "source.file.date.updated": "Ostatnia aktualizacja", "tabs": "Zakładki", "toc": "Spis treści", "top": "Powrót do góry" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/pt-BR.html000066400000000000000000000061761475306445600250220ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "pt", "action.edit": "Editar esta página", "action.skip": "Pular para conteúdo", "action.view": "Exibir fonte desta página", "announce.dismiss": "Não mostrar isso novamente", "blog.archive": "Arquivo", "blog.categories": "Categorias", "blog.categories.in": "em", "blog.continue": "Continuar leitura", "blog.draft": "Rascunho", "blog.index": "Voltar ao índice", "blog.meta": "Metadados", "blog.references": "Links relacionados", "clipboard.copy": "Copiar para área de transferência", "clipboard.copied": "Copiado para área de transferência", "consent.accept": "Aceitar", "consent.manage": "Gerenciar configurações", "consent.reject": "Rejeitar", "footer": "Rodapé", "footer.next": "Próximo", "footer.previous": "Anterior", "header": "Cabeçalho", "meta.comments": "Comentários", "meta.source": "Origem", "nav": "Navegação", "readtime.one": "1 min de leitura", "readtime.other": "# min de leitura", "rss.created": "RSS feed", "rss.updated": "RSS feed de conteúdo atualizado", "search": "Pesquisar", "search.config.lang": "pt", "search.placeholder": "Buscar", "search.share": "Compartilhar", "search.reset": "Limpar", "search.result.initializer": "Inicializando busca", "search.result.placeholder": "Digite para iniciar a busca", "search.result.none": "Nenhum documento encontrado", "search.result.one": "1 documento encontrado", "search.result.other": "# documentos encontrados", "search.result.more.one": "mais 1 nesta página", "search.result.more.other": "# mais nesta página", "search.result.term.missing": "Ausente", "select.language": "Selecione o idioma", "select.version": "Selecione a versão", "source": "Ir para repositório", "source.file.contributors": "Contribuidores", "source.file.date.created": "Criado em", "source.file.date.updated": "Última atualização", "tabs": "Abas", "toc": "Índice", "top": "Voltar para o topo" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/pt.html000066400000000000000000000061471475306445600245170ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "pt", "action.edit": "Editar esta página", "action.skip": "Ir para o conteúdo", "action.view": "Ver fonte desta página", "announce.dismiss": "Não mostrar novamente", "blog.archive": "Arquivo", "blog.categories": "Categorias", "blog.categories.in": "em", "blog.continue": "Continuar leitura", "blog.draft": "Rascunho", "blog.index": "Voltar ao índice", "blog.meta": "Metadados", "blog.references": "Ligações relacionadas", "clipboard.copy": "Copiar para área de transferência", "clipboard.copied": "Copiado para área de transferência", "consent.accept": "Aceitar", "consent.manage": "Gerir configurações", "consent.reject": "Rejeitar", "footer": "Rodapé", "footer.next": "Próximo", "footer.previous": "Anterior", "header": "Cabeçalho", "meta.comments": "Comentários", "meta.source": "Fonte", "nav": "Navegação", "readtime.one": "1 min de leitura", "readtime.other": "# min de leitura", "rss.created": "canal RSS", "rss.updated": "canal RSS com conteúdo atualizado", "search": "Pesquisar", "search.config.lang": "pt", "search.placeholder": "Buscar", "search.share": "Compartilhar", "search.reset": "Limpar", "search.result.initializer": "Inicializando a pesquisa", "search.result.placeholder": "Digite para iniciar a busca", "search.result.none": "Nenhum resultado encontrado", "search.result.one": "1 resultado encontrado", "search.result.other": "# resultados encontrados", "search.result.more.one": "Mais 1 nesta página", "search.result.more.other": "Mais # nesta página", "search.result.term.missing": "Ausente", "select.language": "Selecione o idioma", "select.version": "Selecione a versão", "source": "Ir ao repositório", "source.file.contributors": "Colaboradores", "source.file.date.created": "Criada", "source.file.date.updated": "Última atualização", "tabs": "Abas", "toc": "Índice", "top": "Voltar ao topo" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/ro.html000066400000000000000000000061161475306445600245100ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "ro", "action.edit": "Editeaza această pagină", "action.skip": "Sari la conținut", "action.view": "Vezi sursa acestei pagini", "announce.dismiss": "Nu mai arăta asta", "blog.archive": "Arhivează", "blog.categories": "Categorii", "blog.categories.in": "în", "blog.continue": "Continuă să citești", "blog.draft": "Ciornă", "blog.index": "Înapoi la index", "blog.meta": "Metadata", "blog.references": "Link-uri relevante", "clipboard.copy": "Copiază în clipboard", "clipboard.copied": "Copiat în clipboard", "consent.accept": "Accept", "consent.manage": "Gestionați setările", "consent.reject": "Refuz", "footer": "Subsol", "footer.next": "Următor", "footer.previous": "Anterior", "header": "Antet", "meta.comments": "Comentarii", "meta.source": "Sursă", "nav": "Navigație", "readtime.one": "1 minut de citit", "readtime.other": "# minut de citit", "rss.created": "Flux RSS", "rss.updated": "Flux RSS cu conținut actualizat", "search": "Caută", "search.config.lang": "ro", "search.placeholder": "Căutare", "search.share": "Distribuie", "search.reset": "Resetează", "search.result.initializer": "Inițializare căutare", "search.result.placeholder": "Tastează pentru a începe căutarea", "search.result.none": "Nu a fost găsit niciun document", "search.result.one": "1 document găsit", "search.result.other": "# documente găsite", "search.result.more.one": "Încă 1 pe această pagină", "search.result.more.other": "Încă # pe această pagină", "search.result.term.missing": "Lipsă", "select.language": "Selectează limba", "select.version": "Selectează versuine", "source": "Accesează repository-ul", "source.file.contributors": "Contribuitori", "source.file.date.created": "Creată", "source.file.date.updated": "Ultima actualizare", "tabs": "File", "toc": "Cuprins", "top": "Înapoi sus" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/ru.html000066400000000000000000000071671475306445600245250ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "ru", "action.edit": "Редактировать страницу", "action.skip": "Перейти к содержанию", "action.view": "Посмотреть исходный код страницы", "announce.dismiss": "Больше не показывать", "blog.archive": "Архив", "blog.categories": "Категории", "blog.categories.in": "В", "blog.continue": "Читать", "blog.draft": "Черновик", "blog.index": "На главную", "blog.meta": "Метаданные", "blog.references": "Ссылки", "clipboard.copy": "Копировать в буфер", "clipboard.copied": "Скопировано в буфер", "consent.accept": "Принять", "consent.manage": "Управлять настройками", "consent.reject": "Отклонить", "footer": "Нижний колонтитул", "footer.next": "Вперед", "footer.previous": "Назад", "header": "Верхний колонтитул", "meta.comments": "Комментарии", "meta.source": "Исходный код", "nav": "Навигация", "readtime.one": "Читать 1 мин", "readtime.other": "Читать # мин", "rss.created": "RSS канал", "rss.updated": "RSS канал с новым контентом", "search": "Поиск", "search.config.lang": "ru", "search.placeholder": "Поиск", "search.share": "Поделиться", "search.reset": "Очистить", "search.result.initializer": "Инициализация поиска", "search.result.placeholder": "Начните печатать для поиска", "search.result.none": "Совпадений не найдено", "search.result.one": "Найдено 1 совпадение", "search.result.other": "Найдено совпадений: #", "search.result.more.one": "Ещё 1 на этой странице", "search.result.more.other": "Ещё # на этой странице", "search.result.term.missing": "Отсутствует", "select.language": "Выберите язык", "select.version": "Выберите версию", "source": "Перейти к репозиторию", "source.file.contributors": "Участники", "source.file.date.created": "Дата создания", "source.file.date.updated": "Последнее обновление", "tabs": "Вкладки", "toc": "Содержание", "top": "К началу" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/sa.html000066400000000000000000000106071475306445600244730ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "sa", "action.edit": "एतत् पृष्ठं सम्पादयतु", "action.skip": "सामग्रीं त्यजन्तु", "action.view": "अस्य पृष्ठस्य स्रोतः पश्यन्तु", "announce.dismiss": "एतत् पुनः न दर्शयतु", "blog.archive": "लेखागार", "blog.categories": "श्रेणियाँ", "blog.categories.in": "इत्यस्मिन्‌", "blog.continue": "पठनं निरन्तरं कुर्वन्तु", "blog.draft": "प्रारूप", "blog.index": "अनुक्रमणिकां प्रति पुनः आगच्छन्तु", "blog.meta": "परिदत्तांश", "blog.references": "सन्दर्भाः", "clipboard.copy": "एतत् प्रतिलिख्यताम्", "clipboard.copied": "प्रतिलिपितः भवति", "consent.accept": "अहं तत् स्वीकुर्वन् अस्मि", "consent.manage": "वविन्यासं प्रबन्धयन्तु", "consent.reject": "अहं तत् निराकरोमि", "footer": "पादलेखः", "footer.next": "अग्रिमः", "footer.previous": "पूर्वकृत", "header": "शीर्षकम्", "meta.comments": "विचाराः", "meta.source": "स्रोतः", "nav": "मार्गदर्शनम्", "readtime.one": "१ निमेषं पठितुं", "readtime.other": "# निमेषं पठितुं", "rss.created": "आरएसएस सेवा", "rss.updated": "आरएसएस सेवातः नवीनतमं अद्यतनम्", "search": "अन्वेषण", "search.placeholder": "अन्वेषण", "search.share": "भजतु", "search.reset": "तत् स्वच्छं कुर्वन्तु", "search.result.initializer": "अन्वेषणस्य आरम्भः", "search.result.placeholder": "अन्वेषणं आरभ्य लिखन्तु", "search.result.none": "अभिलेखाः नास्ति", "search.result.one": "१ अभिलेखः अस्ति", "search.result.other": "# अभिलेखाः सन्ति", "search.result.more.one": "अस्मिन् पृष्ठे १ अन्यः अस्ति", "search.result.more.other": "अस्मिन् पृष्ठे # अन्ये सन्ति", "search.result.term.missing": "शून्य", "select.language": "भाषां चिनोतु", "select.version": "संस्करणं चिनोतु", "source": "भण्डारं गच्छन्तु", "source.file.contributors": "अंशदाता", "source.file.date.created": "ननिर्माणस्य तिथिः", "source.file.date.updated": "परिवर्तनस्य तिथिः", "tabs": "पट्टाः", "toc": "सामग्रीसारणी", "top": "पुनः उपरिभागं प्रति गच्छन्तु" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/sh.html000066400000000000000000000055051475306445600245030ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "sh", "action.edit": "Ažuriraj stranicu", "action.skip": "Idi na tekst", "action.view": "Pogledaj izvorni kod ove stranice", "announce.dismiss": "Nemoj mi ponovo pokazati ovo", "blog.archive": "Arhiva", "blog.categories": "Kategorije", "blog.categories.in": "u", "blog.continue": "Nastavi sa čitanjem", "blog.meta": "Metapodaci", "blog.references": "Povezani linkovi", "clipboard.copy": "Kopiraj u klipbord", "clipboard.copied": "Iskopirano u klipbord", "consent.accept": "Prihvati", "consent.manage": "Promeni podešavanja", "consent.reject": "Odbij", "footer": "Podnožje", "footer.next": "Sledeće", "footer.previous": "Prethodno", "header": "Zaglavlje", "meta.comments": "Komentari", "meta.source": "Izvor", "nav": "Navigacija", "readtime.one": "1 minut čitanja", "readtime.other": "# minuta čitanja", "search": "Pretraga", "search.placeholder": "Pretraga", "search.share": "Deljenje", "search.reset": "Očisti", "search.result.initializer": "Inicijalizujem pretragu", "search.result.placeholder": "Unesite pojam pretrage", "search.result.none": "Ništa nije pronađeno", "search.result.one": "1 rezultat pretrage", "search.result.other": "# rezultata pretrage", "search.result.more.one": "još 1 na ovoj strani", "search.result.more.other": "još # na ovoj strani", "search.result.term.missing": "Nedostaje", "select.language": "Izaberi jezik", "select.version": "Izaberi verziju", "source": "Idi u repozitorijum", "source.file.date.created": "Kreiran", "source.file.date.updated": "Ažuriran", "tabs": "Tabovi", "toc": "Sadržaj", "top": "Nazad na vrh" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/si.html000066400000000000000000000050041475306445600244760ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "si", "action.edit": "පිටුව සංස්කරණය", "action.skip": "අන්තර්ගතය වෙත යන්න", "clipboard.copy": "කොපි කරන්න", "clipboard.copied": "කොපි කළා", "footer": "පාදම", "footer.next": "මීළඟ", "footer.previous": "පසුගිය", "header": "ශීර්ෂය", "meta.comments": "ප්‍රතිචාර", "meta.source": "මූලාශ්‍රය", "nav": "යාත්‍රණය", "search.config.pipeline": " ", "search.placeholder": "සොයන්න", "search.reset": "මකන්න", "search.result.placeholder": "සෙවීමට ටයිප් කරන්න", "search.result.none": "කිසිවක් හමු නොවුණි", "search.result.one": "1 ගැලපෙන ගොනුවක්", "search.result.other": "ගැලපෙන ගොනු # ක්", "search.result.more.one": "තව 1 ප්‍රතිඵලයක්", "search.result.more.other": "තව ප්‍රතිඵල # ක්", "source": "රිපොසිටරියට යන්න", "source.file.date.created": "ٺاھيو ويو", "source.file.date.updated": "අවසන් යාවත්කාලීන වීම", "tabs": "ටැබ්ස්", "toc": "පටුන" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/sk.html000066400000000000000000000061071475306445600245050ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "sk", "action.edit": "Upraviť túto stránku", "action.skip": "Preskočiť na obsah", "action.view": "Zobraziť zdroj tejto stránky", "announce.dismiss": "Už nezobrazovať", "blog.archive": "Archív", "blog.categories": "Kategórie", "blog.categories.in": "v", "blog.continue": "Pokračovať v čítaní", "blog.draft": "Návrh", "blog.index": "Späť na index", "blog.meta": "Metadata", "blog.references": "Súvisiace odkazy", "clipboard.copy": "Kopírovať do schránky", "clipboard.copied": "Skopírované do schránky", "consent.accept": "Prijať", "consent.manage": "Spravovať nastavenia", "consent.reject": "Odmietnuť", "footer": "Pätka", "footer.next": "Ďalej", "footer.previous": "Späť", "header": "Hlavička", "meta.comments": "Komentáre", "meta.source": "Zdroj", "nav": "Navigácia", "readtime.one": "1 min čítanie", "readtime.other": "# min čítanie", "rss.created": "RSS kanál", "rss.updated": "RSS zdroj aktualizovaného obsahu", "search": "Vyhľadávanie", "search.placeholder": "Hľadať", "search.share": "Zdieľaj", "search.reset": "Vyčistiť", "search.result.initializer": "Spúšťam hľadanie", "search.result.placeholder": "Pre vyhľadávanie začni písať", "search.result.none": "Žiadne vyhovujúce dokumenty", "search.result.one": "Vyhovujúci dokument: 1", "search.result.other": "Vyhovujúce dokumenty: #", "search.result.more.one": "1 ďalší na tejto stránke", "search.result.more.other": "# ďalších na tejto stránke", "search.result.term.missing": "Chýbajúci", "select.language": "Vyberte jazyk", "select.version": "Vyberte verziu", "source": "Zobraziť repozitár", "source.file.contributors": "Prispievatelia", "source.file.date.created": "Vytvorené", "source.file.date.updated": "Posledná aktualizácia", "tabs": "Karty", "toc": "Obsah", "top": "Na začiatok" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/sl.html000066400000000000000000000057461475306445600245160ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "sl", "action.edit": "Uredi stran", "action.skip": "Skoči na vsebino", "action.view": "Prikaži izvorno stran", "announce.dismiss": "Ne prikaži več", "blog.archive": "Arhiv", "blog.categories": "Kategorije", "blog.categories.in": "v", "blog.continue": "Nadaljuj z branjem", "blog.draft": "Osnutek", "blog.index": "Nazaj na kazalo", "blog.meta": "Metapodatki", "blog.references": "Sorodne povezave", "clipboard.copy": "Kopiraj v odložišče", "clipboard.copied": "Kopirano v odložišče", "consent.accept": "Sprejmi", "consent.manage": "Uredi nastavitve", "consent.reject": "Zavrni", "footer": "Glava", "footer.next": "Naslednja stran", "footer.previous": "Prejšnja stran", "header": "Noga", "meta.comments": "Komentarji", "meta.source": "Izvorna koda", "nav": "Navigacija", "readtime.one": "Čas branja: 1 min", "readtime.other": "Čas branja: # min", "rss.created": "RSS vir", "rss.updated": "RSS vir posodobljene vsebine", "search": "Iskanje", "search.config.lang": "sl", "search.placeholder": "Išči", "search.share": "Deli", "search.reset": "Počisti", "search.result.initializer": "Inicializacija iskanja", "search.result.placeholder": "Vpiši iskalni niz", "search.result.none": "Ni zadetkov", "search.result.one": "1 zadetek", "search.result.other": "# zadetkov", "search.result.more.one": "Še 1 na tej strani", "search.result.more.other": "Še # na tej strani", "search.result.term.missing": "Manjka", "select.language": "Izberi jezik", "select.version": "Izberi različico", "source": "Pojdi na repozitorij", "source.file.contributors": "Soavtorji", "source.file.date.created": "Ustvarjeno", "source.file.date.updated": "Zadnja posodobitev", "tabs": "Zavihki", "toc": "Kazalo", "top": "Nazaj na vrh" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/sq.html000066400000000000000000000061351475306445600245140ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "sq", "direction": "ltr", "action.edit": "Ndrysho këtë faqe", "action.skip": "Kalo te përmbajtja", "action.view": "Shiko burimin e kësaj faqeje", "announce.dismiss": "Mos e shfaq më këtë", "blog.archive": "Arkiva", "blog.categories": "Kategoritë", "blog.categories.in": "në", "blog.continue": "Vazhdo leximin", "blog.draft": "Draft", "blog.index": "Kthehu te indeksi", "blog.meta": "Të dhëna", "blog.references": "Linqe të afërta", "clipboard.copy": "Kopjo në clipboard", "clipboard.copied": "U kopjua në clipboard", "consent.accept": "Prano", "consent.manage": "Administro parametrat", "consent.reject": "Refuzo", "footer": "Fundi i faqes", "footer.next": "Tjetër", "footer.previous": "E mëparshme", "header": "Koka", "meta.comments": "Komente", "meta.source": "Burimi", "nav": "Navigacion", "readtime.one": "Lexim 1 min", "readtime.other": "Lexim # min", "rss.created": "Burim RSS", "rss.updated": "Burim RSS me përmbajtje të përditësuar", "search": "Kërko", "search.placeholder": "Vendmbajtës", "search.share": "Shpërndaj", "search.reset": "Zbraz", "search.result.initializer": "Duke filluar kërkimin", "search.result.placeholder": "Shkruaj për të filluar kërkimin", "search.result.none": "Nuk ka dokumente të përputhshme", "search.result.one": "1 dokument i përputhshëm", "search.result.other": "# dokumente të përputhshme", "search.result.more.one": "1 më shumë në këtë faqe", "search.result.more.other": "# më shumë në këtë faqe", "search.result.term.missing": "Mungon", "select.language": "Zgjidh gjuhën", "select.version": "Zgjidh versionin", "source": "Shko te burimi", "source.file.contributors": "Bashkëpunues", "source.file.date.created": "Krijimi", "source.file.date.updated": "Përditësimi i fundit", "tabs": "Skedat", "toc": "Tabela e përmbajtjes", "top": "Kthehu në krye" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/sr.html000066400000000000000000000070311475306445600245110ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "sr", "action.edit": "Ажурирај страницу", "action.skip": "Иди на текст", "action.view": "Погледајте изворни код ове странице", "announce.dismiss": "Не приказуј поново", "blog.archive": "Архива", "blog.categories": "Категорије", "blog.categories.in": "у", "blog.continue": "Настави са читањем", "blog.draft": "Нацрт", "blog.index": "Назад на индекс", "blog.meta": "Метаподаци", "blog.references": "Сродне везе", "clipboard.copy": "Копирај у клипборд", "clipboard.copied": "Ископирано у клипборд", "consent.accept": "Прихвати", "consent.manage": "Управљај подешавањима", "consent.reject": "Одбиј", "footer": "Подножје", "footer.next": "Следеће", "footer.previous": "Претходно", "header": "Заглавље", "meta.comments": "Коментари", "meta.source": "Извор", "nav": "Навигација", "readtime.one": "1 минут читања", "readtime.other": "# минута читања", "rss.created": "РСС феед", "rss.updated": "РСС феед ажурираног садржаја", "search": "Претрага", "search.placeholder": "Претрага", "search.share": "Дељење", "search.reset": "Очисти", "search.result.initializer": "Иницијализујем претрагу", "search.result.placeholder": "Унесите појам претраге", "search.result.none": "Ништа није пронађено", "search.result.one": "1 резултат претраге", "search.result.other": "# резултата претраге", "search.result.more.one": "још 1 на овој страни", "search.result.more.other": "још # на овој страни", "search.result.term.missing": "Недостаје", "select.language": "Изабери језик", "select.version": "Изабери верзију", "source": "Иди у репозиторијум", "source.file.contributors": "Доприноситељи", "source.file.date.created": "Креиран", "source.file.date.updated": "Ажуриран", "tabs": "Табови", "toc": "Садржај", "top": "Назад на врх" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/sv.html000066400000000000000000000060041475306445600245140ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "sv", "action.edit": "Redigera sidan", "action.skip": "Gå till innehållet", "action.view": "Visa källkoden för denna sida", "announce.dismiss": "Visa inte igen", "blog.archive": "Arkivera", "blog.categories": "Kategorier", "blog.categories.in": "i", "blog.continue": "Fortsätt läsa", "blog.draft": "Utkast", "blog.index": "Tillbaka till index", "blog.meta": "Metadata", "blog.references": "Relaterade länkar", "clipboard.copy": "Kopiera till urklipp", "clipboard.copied": "Kopierat till urklipp", "consent.accept": "Acceptera", "consent.manage": "Hantera inställningar", "consent.reject": "Acceptera inte", "footer": "Sidfot", "footer.next": "Nästa", "footer.previous": "Föregående", "header": "Sidhuvud", "meta.comments": "Kommentarer", "meta.source": "Källa", "nav": "Navigation", "readtime.one": "1 min lästid", "readtime.other": "# min lästid", "rss.created": "RSS-flöde", "rss.updated": "RSS-flöde av uppdaterat innehåll", "search": "Sök", "search.config.lang": "sv", "search.placeholder": "Sök", "search.share": "Dela", "search.reset": "Rensa", "search.result.initializer": "Initialiserar sök", "search.result.placeholder": "Skriv sökord", "search.result.none": "Inga sökresultat", "search.result.one": "1 sökresultat", "search.result.other": "# sökresultat", "search.result.more.one": "1 till på denna sida", "search.result.more.other": "# till på denna sida", "search.result.term.missing": "Saknas", "select.language": "Välj språk", "select.version": "Välj version", "source": "Gå till datakatalog", "source.file.contributors": "Författare", "source.file.date.created": "Skapad", "source.file.date.updated": "Senast uppdaterad", "tabs": "Flikar", "toc": "Innehållsförteckning", "top": "Tillbaka till toppen" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/ta.html000066400000000000000000000114121475306445600244670ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "ta", "action.edit": "இந்த பக்கத்தை திருத்தவும்", "action.skip": "உள்ளடக்கத்திற்கு செல்க", "action.view": "இந்தப் பக்கத்தின் மூலத்தைப் பார்க்கவும்", "announce.dismiss": "இதை மீண்டும் காட்டாதே", "blog.archive": "காப்பகம்", "blog.categories": "வகைகள்", "blog.categories.in": "உள்ளே", "blog.continue": "தொடர்ந்து படிக்கவும்", "blog.draft": "வரைவு", "blog.index": "குறியீட்டுக்குத் திரும்பு", "blog.meta": "மெட்டாடேட்டா", "blog.references": "தொடர்புடைய இணைப்புகள்", "clipboard.copy": "கிளிப்போர்டுக்கு நகலெடுக்கவும்", "clipboard.copied": "கிளிப்போர்டுக்கு நகலெடுக்கப்பட்டது", "consent.accept": "ஏற்றுக்கொள்", "consent.manage": "அமைப்புகளை நிர்வகிக்கவும்", "consent.reject": "நிராகரி", "footer": "அடிக்குறிப்பு", "footer.next": "அடுத்தது", "footer.previous": "முந்தையது", "header": "தலைப்பு", "meta.comments": "கருத்துகள்", "meta.source": "ஆதாரம்", "nav": "வழிசெலுத்தல்", "readtime.one": "படிப்பதற்கு 1 நிமிடம்", "readtime.other": "படிப்பதற்கு # நிமிடம்", "rss.created": "RSS ஊட்டம்", "rss.updated": "புதுப்பிக்கப்பட்ட உள்ளடக்கத்தின் RSS ஊட்டம்", "search": "தேடு", "search.config.pipeline": " ", "search.placeholder": "தேடு", "search.share": "பகிரவும்", "search.reset": "அழிக்கவும்", "search.result.initializer": "தேடலைத் துவக்குகிறது", "search.result.placeholder": "தேடலைத் தொடங்க தட்டச்சு செய்யவும்", "search.result.none": "பொருந்தக்கூடிய ஆவணங்கள் இல்லை", "search.result.one": "1 பொருந்தும் ஆவணம்", "search.result.other": "# பொருந்தும் ஆவணங்கள்", "search.result.more.one": "இந்தப் பக்கத்தில் மேலும் 1", "search.result.more.other": "இந்தப் பக்கத்தில் மேலும் #", "search.result.term.missing": "காணவில்லை", "select.language": "மொழியைத் தேர்ந்தெடுக்கவும்", "select.version": "பதிப்பைத் தேர்ந்தெடுக்கவும்", "source": "களஞ்சியத்திற்குச் செல்லவும்", "source.file.contributors": "பங்களிப்பாளர்கள்", "source.file.date.created": "உருவாக்கப்பட்டது", "source.file.date.updated": "கடைசி புதுப்பிப்பு", "tabs": "தாவல்கள்", "toc": "உள்ளடக்க அட்டவணை", "top": "மீண்டும் மேலே" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/te.html000066400000000000000000000112261475306445600244760ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "te", "action.edit": "ఈ పేజీలో దిద్దుబాట్లు చేయండి", "action.skip": "సమాచారానికి వెళ్లండి", "action.view": "నేను ఈ పేజీ యొక్క మూలాన్ని చూడాలనుకుంటున్నాను", "announce.dismiss": "దీన్ని మళ్లీ చూపవద్దు", "blog.archive": "పాత వ్యాసం", "blog.categories": "వర్గాలు", "blog.categories.in": "లో", "blog.continue": "చదవడం కొనసాగించండి", "blog.draft": "ప్రారంభ రచన", "blog.index": "సూచికకు తిరిగి వెళ్ళు", "blog.meta": "సమాచారం గురించి సమాచారం", "blog.references": "సంబంధిత సూచనలు", "clipboard.copy": "దీనిని అనుకరించు", "clipboard.copied": "దీనిని అతికించు", "consent.accept": "నేను దీనిని అంగీకరిస్తున్నాను", "consent.manage": "ఆకృతీకరణను నిర్వహించండి", "consent.reject": "నేను దీనిని తిరస్కరిస్తున్నాను", "footer": "అడిటిప్పణి", "footer.next": "తదుపరి భాగం", "footer.previous": "మునుపటి భాగం", "header": "శీర్షిక విభాగం", "meta.comments": "అభిప్రాయాలు", "meta.source": "మూలం", "nav": "మార్గదర్శక పట్టీ", "readtime.one": "చదవడానికి ఒక నిమిషం పడుతుంది", "readtime.other": "చదవడానికి # నిమిషాలు పడుతుంది", "rss.created": "ఆర్ఎస్ఎస్ సేవ", "rss.updated": "ఆర్ఎస్ఎస్ సేవ నుండి తాజా నవీకరణ", "search": "వెతకండి", "search.placeholder": "వెతకండి", "search.share": "పంచుకోండి", "search.reset": "తుడిచివేయు", "search.result.initializer": "శోధనను ప్రారంభిస్తోంది", "search.result.placeholder": "రాయడం ద్వారా వెతకడం ప్రారంభించండి", "search.result.none": "సరిపోలే పత్రాలు లేవు", "search.result.one": "ఒక సరిపోలే పత్రం", "search.result.other": "# సరిపోలే పత్రాలు", "search.result.more.one": "ఈ పేజీలో మరొకటి", "search.result.more.other": "ఈ పేజీలో ఇంకా # ఉన్నాయి", "search.result.term.missing": "తప్పిపోయింది", "select.language": "భాషను ఎంచుకోండి", "select.version": "సంస్కరణను ఎంచుకోండి", "source": "భండారానికి వెళ్ళండి", "source.file.contributors": "సహకారులు", "source.file.date.created": "సృష్టించబడింది", "source.file.date.updated": "చివరి నవీకరణ", "tabs": "వివిధ కిటికీలు", "toc": "విషయ సూచిక", "top": "పైకి తిరిగి వెళ్ళు" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/th.html000066400000000000000000000077641475306445600245150ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "th", "action.edit": "แก้ไขหน้านี้", "action.skip": "ข้ามไปที่เนื้อหา", "action.view": "ดูแหล่งที่มาของหน้านี้", "announce.dismiss": "อย่าแสดงสิ่งนี้อีก", "blog.archive": "คลังเก็บเอกสาร", "blog.categories": "หมวดหมู่", "blog.categories.in": "ใย", "blog.continue": "อ่านต่อไป", "blog.draft": "ฉบับร่าง", "blog.index": "กลับไปยังหน้าแรก", "blog.meta": "คำอธิบายข้อมูล", "blog.references": "ลิงก์ที่เกี่ยวข้อง", "clipboard.copy": "คัดลอก", "clipboard.copied": "คัดลอกแล้ว", "consent.accept": "ยอมรับ", "consent.manage": "จัดการการตั้งค่า", "consent.reject": "ปฏิเสธ", "footer": "ส่วนท้าย", "footer.next": "ต่อไป", "footer.previous": "ก่อนหน้า", "header": "หัวข้อ", "meta.comments": "ความคิดเห็น", "meta.source": "แหล่งที่มา", "nav": "ตัวนำทาง", "readtime.one": "อ่าน 1 นาที", "readtime.other": "อ่าน # นาที", "rss.created": "ฟีด RSS", "rss.updated": "ฟีด RSS ของเนื้อหาที่อัปเดต", "search": "ค้นหา", "search.config.lang": "th", "search.placeholder": "ค้นหา", "search.share": "แบ่งปัน", "search.reset": "ล้าง", "search.result.initializer": "กำลังเริ่มต้นการค้นหา", "search.result.placeholder": "พิมพ์เพื่อเริ่มค้นหา", "search.result.none": "ไม่พบเอกสารที่ตรงกัน", "search.result.one": "พบเอกสารที่ตรงกัน", "search.result.other": "พบ # เอกสารที่ตรงกัน", "search.result.more.one": "อีกหนึ่งในหน้านี้", "search.result.more.other": "# เพิ่มเติมในหน้านี้", "search.result.term.missing": "ไม่พบ", "select.language": "เลือกภาษา", "select.version": "เลือกเวอร์ชัน", "source": "ไปที่พื้นที่เก็บข้อมูล", "source.file.contributors": "ผู้มีส่วนร่วม", "source.file.date.created": "สร้าง", "source.file.date.updated": "สร้าง", "tabs": "แท็บ", "toc": "สารบัญ", "top": "กลับไปด้านบนสุด" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/tl.html000066400000000000000000000060621475306445600245070ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "tl", "action.edit": "I-edit ang pahinang ito", "action.skip": "I-skip tungo sa nilalaman", "action.view": "Tingnan ang pinagmulan ng pahinang ito", "announce.dismiss": "Huwag mo nang ipakita muli ito", "blog.categories": "Kategorya", "blog.categories.in": "sa", "blog.continue": "Magpatuloy sa pagbabasa", "blog.index": "Bumalik sa index", "blog.references": "Mga kaugnay na link", "clipboard.copy": "Kopyahin sa clipboard", "clipboard.copied": "Nakopya mula sa clipboard", "consent.accept": "Tanggapin", "consent.manage": "Pamahalaan ang mga setting", "consent.reject": "Tanggihan", "footer": "Lagdang Pangwakas", "footer.next": "Susunod", "footer.previous": "Nakaraan", "header": "Pamuhatan", "meta.comments": "Mga Komento", "meta.source": "Pinagmulan", "nav": "Nabigasyon", "readtime.one": "1 minutong basahin", "readtime.other": "# minutong basahin", "rss.created": "RSS feed", "rss.updated": "RSS feed ng na-update na nilalaman", "search": "Hanapin", "search.placeholder": "Hanapin", "search.share": "Ibahagi", "search.reset": "Tanggalin", "search.result.initializer": "Sinisimulan ang paghahanap", "search.result.placeholder": "Mag-type upang simulan ang paghahanap", "search.result.none": "Walang nahanap na dokumento", "search.result.one": "1 magkatugmang dokumento", "search.result.other": "# magkatugmang mga dokumento", "search.result.more.one": "1 meron sa pahina na ito", "search.result.more.other": "# meron sa pahina na ito", "search.result.term.missing": "Nawawala", "select.language": "Pumili ng lenguwahe", "select.version": "Pumili ng bersyon", "source": "Pumunta sa repository", "source.file.contributors": "Mga nag-ambag", "source.file.date.created": "Nagawa", "source.file.date.updated": "Huling update", "tabs": "Mga tala", "toc": "Talaan ng nilalaman", "top": "Bumalik sa taas" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/tr.html000066400000000000000000000057761475306445600245300ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "tr", "action.edit": "Düzenle", "action.skip": "Ana içeriğe geç", "action.view": "Sayfanın kaynağını görüntüle", "announce.dismiss": "Bir daha gösterme", "blog.archive": "Arşiv", "blog.categories": "Kategoriler", "blog.categories.in": "in", "blog.continue": "Okumaya devam et", "blog.draft": "Taslak", "blog.index": "Dizine geri dön", "blog.meta": "Metadata", "blog.references": "İlgili bağlantılar", "clipboard.copy": "Kopyala", "clipboard.copied": "Kopyalandı", "consent.accept": "Kabul et", "consent.manage": "Ayarları yönet", "consent.reject": "Reddet", "footer": "Altbilgi", "footer.next": "Sonraki", "footer.previous": "Önceki", "header": "Başlık", "meta.comments": "Yorumlar", "meta.source": "Kaynak", "nav": "Navigasyon", "readtime.one": "1 dakika okuma", "readtime.other": "# dakika okuma", "rss.created": "RSS beslemesi", "rss.updated": "Güncellenmiş içeriğin RSS beslemesi", "search": "Ara", "search.config.lang": "tr", "search.placeholder": "Ara", "search.share": "Paylaş", "search.reset": "Temizle", "search.result.initializer": "Arama başlatılıyor", "search.result.placeholder": "Aramaya başlamak için yazın", "search.result.none": "Eşleşen doküman bulunamadı", "search.result.one": "1 doküman bulundu", "search.result.other": "# doküman bulundu", "search.result.more.one": "Bu sayfada 1 tane daha", "search.result.more.other": "Bu sayfada # tane daha", "search.result.term.missing": "Eksik", "select.language": "Dil seç", "select.version": "Versiyon seç", "source": "Depoya git", "source.file.contributors": "Katkıda bulunanlar", "source.file.date.created": "Oluşturuldu", "source.file.date.updated": "Son Güncelleme", "tabs": "Sekmeler", "toc": "İçindekiler", "top": "Başa dön" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/uk.html000066400000000000000000000072441475306445600245120ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "uk", "action.edit": "Редагувати сторінку", "action.skip": "Перейти до змісту", "action.view": "Переглянути вихідний код сторінки", "announce.dismiss": "Більше не показувати", "blog.archive": "Архівувати", "blog.categories": "Категорії", "blog.categories.in": "в", "blog.continue": "Читати далі", "blog.draft": "Чернетка", "blog.index": "Повернутись на головну", "blog.meta": "Метадані", "blog.references": "Пов'язані посилання", "clipboard.copy": "Скопіювати в буфер", "clipboard.copied": "Скопійовано в буфер", "consent.accept": "Прийняти", "consent.manage": "Керувати налаштуваннями", "consent.reject": "Відхилити", "footer": "Футер", "footer.next": "Вперед", "footer.previous": "Назад", "header": "Хедер", "meta.comments": "Коментарі", "meta.source": "Вихідний код", "nav": "Навігація", "readtime.one": "Час на прочитання: 1 хвилина", "readtime.other": "Час на прочитання: # хвилин", "rss.created": "RSS стрічка", "rss.updated": "RSS стрічка оновленого контенту", "search": "Шукати", "search.placeholder": "Пошук", "search.share": "Поділитись", "search.reset": "Очистити", "search.result.initializer": "Пошук розпочато", "search.result.placeholder": "Розпочніть писати для пошуку", "search.result.none": "Збігів не знайдено", "search.result.one": "Знайдено 1 збіг", "search.result.other": "Знайдено # збігів", "search.result.more.one": "Ще 1 збіг на цій сторінці", "search.result.more.other": "Ще # збігів на цій сторінці", "search.result.term.missing": "Не знайдено запиту", "select.language": "Обрати мову", "select.version": "Обрати версію", "source": "Перейти до вихідного коду", "source.file.contributors": "Контриб'ютори", "source.file.date.created": "Створено", "source.file.date.updated": "Востаннє оновлено", "tabs": "Вкладки", "toc": "Зміст", "top": "Повернутись нагору" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/ur.html000066400000000000000000000070721475306445600245200ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "ur", "direction": "rtl", "action.edit": "اس صفحے میں ترمیم کریں", "action.skip": "براہِ راست مواد پر جائیں", "action.view": "اس صفحہ کا ماخذ دیکھیں", "announce.dismiss": "اسے دوبارہ مت دکھائیں", "blog.archive": "محفوظ شدہ", "blog.categories": "اقسام", "blog.categories.in": "میں", "blog.continue": "پڑھنا جاری رکھیے", "blog.draft": "ڈرافٹ", "blog.index": "واپس انڈیکس پر جائیں", "blog.meta": "میٹا ڈیٹا", "blog.references": "متعلقہ لنکس", "clipboard.copy": "کلِپ بورڈ میں نقل کریں", "clipboard.copied": "کلِپ بورڈ میں نقل کر دیا گیا", "consent.accept": "قبول کریں", "consent.manage": "سیٹینگ بدلیں", "consent.reject": "رد کرنا", "footer": "ذیلی تحریر", "footer.next": "اگلا", "footer.previous": "پچھلا", "header": "سر تحریر", "meta.comments": "تبصرے", "meta.source": "ذریعہ", "nav": "رہنمائی", "readtime.one": "1 منٹ لگے گا", "readtime.other": "# منٹ لگیں گے", "rss.created": "RSS فیڈ", "rss.updated": "تازہ ترین مواد کی RSS فیڈ", "search": "تلاش", "search.config.pipeline": " ", "search.placeholder": "تلاش کریں", "search.share": "اشتراک کریں", "search.reset": "صاف کریں", "search.result.initializer": "تلاش کا آغاز ہو رہا ہے", "search.result.placeholder": "تلاش شروع کرنے کے لئے ٹائپ کریں", "search.result.none": "کوئی ملتی جلتی دستاویزات نہیں", "search.result.one": "۱ ملتی جلتی دستاویز", "search.result.other": "# ملتی جلتی دستاویزات", "search.result.more.one": "اِس صفحے پر مزید ۱", "search.result.more.other": "اِس صفحے پر مزید #", "search.result.term.missing": "گمشدہ", "select.language": "زبان کا انتخاب کریں", "select.version": "ورژن کا انتخاب کریں", "source": "ریپازٹری پر جائیں", "source.file.contributors": "تعاون کار", "source.file.date.created": "تخلیق", "source.file.date.updated": "آخری بار تجدید", "tabs": "ٹیبز", "toc": "فہرست", "top": "واپس اوپر جائیں" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/uz.html000066400000000000000000000062141475306445600245250ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "uz", "action.edit": "Ushbu sahifani tahrirlash", "action.skip": "Tarkibga o'tish", "action.view": "Ushbu sahifaning manbasini ko'rish", "announce.dismiss": "Buni boshqa ko'rsatma", "blog.archive": "Arxiv", "blog.categories": "Kategoriyalar", "blog.categories.in": "ichida", "blog.continue": "O'qishni davom ettiring", "blog.draft": "Qoralama", "blog.index": "Indeks sahifasiga qaytish", "blog.meta": "Metama'lumot", "blog.references": "Bog'liq havolalar", "clipboard.copy": "Buferga nusxalash", "clipboard.copied": "Buferga nusxalandi", "consent.accept": "Qabul qilish", "consent.manage": "Sozlamalarni boshqarish", "consent.reject": "Rad etish", "footer": "Pastgi qism", "footer.next": "Keyingi sahifa", "footer.previous": "Oldingi sahifa", "header": "Sarlavha", "meta.comments": "Izohlar", "meta.source": "Manba", "nav": "Navigatsiya", "readtime.one": "1 daqiqa o'qish", "readtime.other": "# daqiqa o'qish", "rss.created": "RSS tasmasi", "rss.updated": "Yangilangan kontentning RSS tasmasi", "search": "Qidirish", "search.config.lang": "tr", "search.placeholder": "Qidirish", "search.share": "Ulashish", "search.reset": "Tozalash", "search.result.initializer": "Qidiruv ishga tushirilmoqda", "search.result.placeholder": "Qidiruvni boshlash uchun kiriting", "search.result.none": "Mos natijalar yo'q", "search.result.one": "1 ta mos natija", "search.result.other": "# ta mos keladigan natijalar", "search.result.more.one": "Ushbu sahifada yana 1 ta natija", "search.result.more.other": "Bu sahifada yana # ta natija", "search.result.term.missing": "To'ldirilmagan", "select.language": "Tilni tanlang", "select.version": "Versiyani tanlang", "source": "Repozitoriyga o'tish", "source.file.contributors": "Hissa qo'shuvchilar", "source.file.date.created": "Yaratildi", "source.file.date.updated": "Oxirgi yangilanish", "tabs": "Yorliqlar", "toc": "Mundarija", "top": "Yuqoriga qaytish" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/vi.html000066400000000000000000000061611475306445600245060ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "vi", "action.edit": "Chỉnh sửa", "action.skip": "Bỏ qua", "action.view": "Xem mã nguồn của trang", "announce.dismiss": "Không hiển thị lại", "blog.archive": "Lưu trữ", "blog.categories": "Mục", "blog.categories.in": "Trong", "blog.continue": "Tiếp tục đọc", "blog.draft": "Bản nháp", "blog.index": "Quay lại", "blog.meta": "Metadata", "blog.references": "Các liên kết liên quan", "clipboard.copy": "Sao chép vào bộ nhớ tạm", "clipboard.copied": "Đã sao chép", "consent.accept": "Đồng ý", "consent.manage": "Cài đặt", "consent.reject": "Từ chối", "footer": "Chân trang", "footer.next": "Sau", "footer.previous": "Trước", "header": "Đầu trang", "meta.comments": "Bình luận", "meta.source": "Mã nguồn", "nav": "Thanh điều hướng", "readtime.one": "1 phút đọc", "readtime.other": "# phút đọc", "rss.created": "RSS feed", "rss.updated": "RSS feed of updated content", "search": "Tìm kiếm", "search.config.lang": "vi", "search.placeholder": "Tìm kiếm", "search.share": "Chia sẻ", "search.reset": "Xoá", "search.result.initializer": "Initializing search", "search.result.placeholder": "Nhập để bắt đầu tìm kiếm", "search.result.none": "Không tìm thấy tài liệu liên quan", "search.result.one": "1 tài liệu liên quan", "search.result.other": "# tài liệu liên quan", "search.result.more.one": "1 từ khác trong trang", "search.result.more.other": "# từ khác trong trang", "search.result.term.missing": "Không", "select.language": "Chọn ngôn ngữ", "select.version": "Chọn phiên bản", "source": "Xem mã nguồn", "source.file.contributors": "Contributors", "source.file.date.created": "Tạo", "source.file.date.updated": "Cập nhật lần cuối", "tabs": "Tabs", "toc": "Mục lục", "top": "Trở lại mục lục" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/zh-Hant.html000066400000000000000000000061611475306445600254010ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "zh-Hant", "action.edit": "編輯此頁", "action.skip": "跳轉至", "action.view": "查看源代碼", "announce.dismiss": "不再顯示此訊息", "blog.archive": "存檔", "blog.categories": "分類", "blog.categories.in": "分類在", "blog.continue": "繼續閲讀", "blog.draft": "草稿", "blog.index": "回到首頁", "blog.meta": "元數據", "blog.references": "相關鏈接", "clipboard.copy": "拷貝", "clipboard.copied": "已拷貝", "consent.accept": "接受", "consent.manage": "管理設置", "consent.reject": "拒絕", "footer": "頁脚", "footer.next": "下一頁", "footer.previous": "上一頁", "header": "頁首", "meta.comments": "評論", "meta.source": "來源", "search.config.pipeline": "stemmer", "search.config.separator": "[\\s\\u200b\\u3000\\-、。,.?!;]+", "nav": "導航", "readtime.one": "需要 1 分鐘閲讀", "readtime.other": "需要 # 分鐘閲讀", "rss.created": "簡易資訊聚合", "rss.updated": "更新之部分的簡易資訊聚合", "search": "搜尋", "search.placeholder": "搜尋", "search.share": "分享", "search.reset": "清空", "search.result.initializer": "正在初始化搜尋引擎", "search.result.placeholder": "鍵入以開始檢索", "search.result.none": "沒有找到符合條件的結果", "search.result.one": "找到 1 个符合條件的結果", "search.result.other": "找到 # 個符合條件的結果", "search.result.more.one": "此頁尚有 1 個符合的項目", "search.result.more.other": "此頁尚有 # 個符合的項目", "search.result.term.missing": "缺失", "select.language": "選擇語言", "select.version": "選擇版本", "source": "前往倉庫", "source.file.contributors": "貢獻者", "source.file.date.created": "建立日期", "source.file.date.updated": "最後更新", "tabs": "標籤頁", "toc": "目錄", "top": "回到頂部" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/zh-TW.html000066400000000000000000000061211475306445600250350ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "zh-TW", "action.edit": "編輯此頁", "action.skip": "跳轉到", "action.view": "查看此頁原始碼", "announce.dismiss": "不再顯示此訊息", "blog.archive": "封存", "blog.categories": "分類", "blog.categories.in": "於", "blog.continue": "繼續閱讀", "blog.draft": "草稿", "blog.index": "回到主頁", "blog.meta": "元數據", "blog.references": "相關連結", "clipboard.copy": "複製", "clipboard.copied": "已複製", "consent.accept": "同意", "consent.manage": "管理設定", "consent.reject": "拒絕", "footer": "頁腳", "footer.next": "下一頁", "footer.previous": "上一頁", "header": "頁首", "meta.comments": "留言", "meta.source": "來源", "nav": "導覽列", "readtime.one": "需要 1 分鐘閱讀時間", "readtime.other": "需要 # 分鐘閱讀時間", "rss.created": "RSS 訂閱", "rss.updated": "RSS 訂閱內容已更新", "search": "搜尋", "search.config.pipeline": "stemmer", "search.config.separator": "[\\s\\u200b\\u3000\\-、。,.?!;]+", "search.placeholder": "搜尋", "search.share": "分享", "search.reset": "清除", "search.result.initializer": "正在初始化搜尋引擎", "search.result.placeholder": "打字進行搜尋", "search.result.none": "沒有符合的項目", "search.result.one": "找到 1 個符合的項目", "search.result.other": "找到 # 個符合的項目", "search.result.more.one": "此頁尚有 1 個符合的項目", "search.result.more.other": "此頁尚有 # 個符合的項目", "search.result.term.missing": "缺少字詞", "select.language": "選擇語言", "select.version": "選擇版本", "source": "前往倉庫", "source.file.contributors": "貢獻者", "source.file.date.created": "建立日期", "source.file.date.updated": "最後更新", "tabs": "標籤", "toc": "目錄", "top": "回到頂端" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/languages/zh.html000066400000000000000000000062401475306445600245070ustar00rootroot00000000000000 {% macro t(key) %}{{ { "language": "zh", "action.edit": "编辑此页", "action.skip": "跳转至", "action.view": "查看本页的源代码", "announce.dismiss": "不再显示此消息", "blog.archive": "归档", "blog.categories": "分类", "blog.categories.in": "分类于", "blog.continue": "继续阅读", "blog.draft": "草稿", "blog.index": "回到主页", "blog.meta": "元数据", "blog.references": "相关链接", "clipboard.copy": "复制", "clipboard.copied": "已复制", "consent.accept": "同意", "consent.manage": "管理设定", "consent.reject": "拒绝", "footer": "页脚", "footer.next": "下一页", "footer.previous": "上一页", "header": "页眉", "meta.comments": "评论", "meta.source": "来源", "nav": "导航栏", "readtime.one": "需要 1 分钟阅读时间", "readtime.other": "需要 # 分钟阅读时间", "rss.created": "RSS 订阅", "rss.updated": "已更新内容的 RSS 订阅", "search": "查找", "search.config.pipeline": "stemmer", "search.config.separator": "[\\s\\u200b\\u3000\\-、。,.?!;]+", "search.placeholder": "搜索", "search.share": "分享", "search.reset": "清空当前内容", "search.result.initializer": "正在初始化搜索引擎", "search.result.placeholder": "键入以开始搜索", "search.result.none": "没有找到符合条件的结果", "search.result.one": "找到 1 个符合条件的结果", "search.result.other": "# 个符合条件的结果", "search.result.more.one": "在该页上还有 1 个符合条件的结果", "search.result.more.other": "在该页上还有 # 个符合条件的结果", "search.result.term.missing": "缺少", "select.language": "选择当前语言", "select.version": "选择当前版本", "source": "前往仓库", "source.file.contributors": "贡献者", "source.file.date.created": "创建日期", "source.file.date.updated": "最后更新", "tabs": "标签", "toc": "目录", "top": "回到页面顶部" }[key] }}{% endmacro %} mkdocs-material-9.6.4/src/templates/partials/logo.html000066400000000000000000000025221475306445600230570ustar00rootroot00000000000000 {% if config.theme.logo %} logo {% else %} {% set icon = config.theme.icon.logo or "material/library" %} {% include ".icons/" ~ icon ~ ".svg" %} {% endif %} mkdocs-material-9.6.4/src/templates/partials/nav-item.html000066400000000000000000000216621475306445600236450ustar00rootroot00000000000000 {% macro render_status(nav_item, type) %} {% set class = "md-status md-status--" ~ type %} {% if config.extra.status and config.extra.status[type] %} {% else %} {% endif %} {% endmacro %} {% macro render_content(nav_item, ref = nav_item) %} {% if nav_item.meta and nav_item.meta.icon %} {% include ".icons/" ~ nav_item.meta.icon ~ ".svg" %} {% endif %} {{ ref.title }} {% if nav_item.meta and nav_item.meta.subtitle %}
    {{ nav_item.meta.subtitle }} {% endif %}
    {% if nav_item.meta and nav_item.meta.status %} {{ render_status(nav_item, nav_item.meta.status) }} {% endif %} {% endmacro %} {% macro render_pruned(nav_item, ref = nav_item) %} {% set first = nav_item.children | first %} {% if first and first.children %} {{ render_pruned(first, ref) }} {% else %} {{ render_content(ref) }} {% if nav_item.children | length > 0 %} {% endif %} {% endif %} {% endmacro %} {% macro render(nav_item, path, level) %} {% set class = "md-nav__item" %} {% if nav_item.active %} {% set class = class ~ " md-nav__item--active" %} {% endif %} {% if nav_item.pages %} {% if page in nav_item.pages %} {% set nav_item = page %} {% endif %} {% endif %} {% if nav_item.children %} {% set indexes = [] %} {% if "navigation.indexes" in features %} {% for nav_item in nav_item.children %} {% if nav_item.is_index and not index is defined %} {% set _ = indexes.append(nav_item) %} {% endif %} {% endfor %} {% endif %} {% if "navigation.tabs" in features %} {% if level == 1 and nav_item.active %} {% set class = class ~ " md-nav__item--section" %} {% set is_section = true %} {% endif %} {% if "navigation.sections" in features %} {% if level == 2 and nav_item.parent.active %} {% set class = class ~ " md-nav__item--section" %} {% set is_section = true %} {% endif %} {% endif %} {% elif "navigation.sections" in features %} {% if level == 1 %} {% set class = class ~ " md-nav__item--section" %} {% set is_section = true %} {% endif %} {% endif %} {% if "navigation.prune" in features %} {% if not is_section and not nav_item.active %} {% set class = class ~ " md-nav__item--pruned" %} {% set is_pruned = true %} {% endif %} {% endif %}
  • {% if not is_pruned %} {% set checked = "checked" if nav_item.active %} {% if "navigation.expand" in features and not checked %} {% set indeterminate = "md-toggle--indeterminate" %} {% endif %} {% if not indexes %} {% set tabindex = "0" if not is_section %} {% else %} {% set index = indexes | first %} {% set class = "md-nav__link--active" if index == page %} {% endif %} {% else %} {{ render_pruned(nav_item) }} {% endif %}
  • {% elif nav_item == page %}
  • {% set toc = page.toc %} {% set first = toc | first %} {% if first and first.level == 1 %} {% set toc = first.children %} {% endif %} {% if toc %} {% endif %} {{ render_content(nav_item) }} {% if toc %} {% include "partials/toc.html" %} {% endif %}
  • {% else %}
  • {{ render_content(nav_item) }}
  • {% endif %} {% endmacro %} mkdocs-material-9.6.4/src/templates/partials/nav.html000066400000000000000000000044561475306445600227130ustar00rootroot00000000000000 {% import "partials/nav-item.html" as item with context %} {% set class = "md-nav md-nav--primary" %} {% if "navigation.tabs" in features %} {% set class = class ~ " md-nav--lifted" %} {% endif %} {% if "toc.integrate" in features %} {% set class = class ~ " md-nav--integrated" %} {% endif %} mkdocs-material-9.6.4/src/templates/partials/pagination.html000066400000000000000000000034721475306445600242550ustar00rootroot00000000000000 {% import ".icons/material/chevron-double-left.svg" as icon_first %} {% import ".icons/material/chevron-left.svg" as icon_previous %} {% import ".icons/material/chevron-right.svg" as icon_next %} {% import ".icons/material/chevron-double-right.svg" as icon_last %} mkdocs-material-9.6.4/src/templates/partials/palette.html000066400000000000000000000043241475306445600235570ustar00rootroot00000000000000
    {% for option in config.theme.palette %} {% set scheme = option.scheme | d("default", true) %} {% set primary = option.primary | d("indigo", true) %} {% set accent = option.accent | d("indigo", true) %} {% if option.toggle %} {% endif %} {% endfor %}
    mkdocs-material-9.6.4/src/templates/partials/post.html000066400000000000000000000063501475306445600231070ustar00rootroot00000000000000
    {% if post.authors %} {% endif %}
    {{ post.content }} {% if post.more %} {% endif %}
    mkdocs-material-9.6.4/src/templates/partials/progress.html000066400000000000000000000023331475306445600237630ustar00rootroot00000000000000
    mkdocs-material-9.6.4/src/templates/partials/search.html000066400000000000000000000075651475306445600234000ustar00rootroot00000000000000 mkdocs-material-9.6.4/src/templates/partials/social.html000066400000000000000000000034761475306445600234020ustar00rootroot00000000000000
    {% for social in config.extra.social %} {% set rel = "noopener" %} {% if "mastodon" in social.icon %} {% set rel = rel ~ " me" %} {% endif %} {% set title = social.name %} {% if not title and "//" in social.link %} {% set _, url = social.link.split("//") %} {% set title = url.split("/")[0] %} {% endif %} {% include ".icons/" ~ social.icon ~ ".svg" %} {% endfor %}
    mkdocs-material-9.6.4/src/templates/partials/source-file.html000066400000000000000000000126131475306445600243360ustar00rootroot00000000000000 {% macro render_updated(date) %} {% include ".icons/material/clock-edit-outline.svg" %} {{ date }} {% endmacro %} {% macro render_created(date) %} {% include ".icons/material/clock-plus-outline.svg" %} {{ date }} {% endmacro %} {% macro render_authors(authors) %} {% set git_authors = config.plugins.get("git-authors") %} {% if authors | length == 1 %} {% include ".icons/material/account.svg" %} {% else %} {% include ".icons/material/account-group.svg" %} {% endif %} {% endmacro %} {% macro render_committers_github(title) %} {% include ".icons/material/github.svg" %} {{ title }} {% endmacro %} {% macro render_committers_gitlab(title) %} {% include ".icons/material/gitlab.svg" %} {{ title }} {% endmacro %} {% macro render_committers(authors) %} {% if committers_source == "gitlab" %} {{ render_committers_gitlab("GitLab") }} {% else %} {{ render_committers_github("GitHub") }} {% endif %} {% endmacro %} {% if page.meta %} {% if page.meta.git_revision_date_localized %} {% set updated = page.meta.git_revision_date_localized %} {% elif page.meta.revision_date %} {% set updated = page.meta.revision_date %} {% endif %} {% if page.meta.git_creation_date_localized %} {% set created = page.meta.git_creation_date_localized %} {% endif %} {% endif %} {% if updated or created or git_info or committers %} {% endif %} mkdocs-material-9.6.4/src/templates/partials/source.html000066400000000000000000000027751475306445600234310ustar00rootroot00000000000000
    {% set icon = config.theme.icon.repo or "fontawesome/brands/git-alt" %} {% include ".icons/" ~ icon ~ ".svg" %}
    {{ config.repo_name }}
    mkdocs-material-9.6.4/src/templates/partials/tabs-item.html000066400000000000000000000046471475306445600240160ustar00rootroot00000000000000 {% macro render_content(nav_item, ref = nav_item) %} {% if nav_item == ref or "navigation.indexes" in features %} {% if nav_item.is_index and nav_item.meta.icon %} {% include ".icons/" ~ nav_item.meta.icon ~ ".svg" %} {% endif %} {% endif %} {{ ref.title }} {% endmacro %} {% macro render(nav_item, ref = nav_item) %} {% set class = "md-tabs__item" %} {% if ref.active %} {% set class = class ~ " md-tabs__item--active" %} {% endif %} {% if nav_item.children %} {% set first = nav_item.children | first %} {% if first.children %} {{ render(first, ref) }} {% else %}
  • {{ render_content(first, ref) }}
  • {% endif %} {% else %}
  • {{ render_content(nav_item) }}
  • {% endif %} {% endmacro %} mkdocs-material-9.6.4/src/templates/partials/tabs.html000066400000000000000000000027051475306445600230530ustar00rootroot00000000000000 {% import "partials/tabs-item.html" as item with context %} mkdocs-material-9.6.4/src/templates/partials/tags.html000066400000000000000000000037651475306445600230670ustar00rootroot00000000000000 {% if page.meta and page.meta.hide %} {% set hidden = "hidden" if "tags" in page.meta.hide %} {% endif %} {% if tags %} {% endif %} mkdocs-material-9.6.4/src/templates/partials/toc-item.html000066400000000000000000000031631475306445600236420ustar00rootroot00000000000000
  • {{ toc_item.title }} {% if toc_item.children %} {% endif %}
  • mkdocs-material-9.6.4/src/templates/partials/toc.html000066400000000000000000000043041475306445600227040ustar00rootroot00000000000000 {% set title = lang.t("toc") %} {% if config.mdx_configs.toc and config.mdx_configs.toc.title %} {% set title = config.mdx_configs.toc.title %} {% endif %} mkdocs-material-9.6.4/src/templates/partials/top.html000066400000000000000000000025421475306445600227230ustar00rootroot00000000000000 mkdocs-material-9.6.4/src/templates/redirect.html000066400000000000000000000031341475306445600221010ustar00rootroot00000000000000 {{ config.site_name }} mkdocs-material-9.6.4/src/utilities/000077500000000000000000000000001475306445600174265ustar00rootroot00000000000000mkdocs-material-9.6.4/src/utilities/__init__.py000066400000000000000000000021451475306445600215410ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. mkdocs-material-9.6.4/src/utilities/filter/000077500000000000000000000000001475306445600207135ustar00rootroot00000000000000mkdocs-material-9.6.4/src/utilities/filter/__init__.py000066400000000000000000000075731475306445600230400ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from __future__ import annotations import logging from fnmatch import fnmatch from mkdocs.structure.files import File from .config import FilterConfig # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- class Filter: """ A filter. """ def __init__(self, config: FilterConfig): """ Initialize the filter. Arguments: config: The filter configuration. """ self.config = config def __call__(self, value: str, ref: str | None = None) -> bool: """ Filter a value. First, the inclusion patterns are checked. Regardless of whether they are present, the exclusion patterns are checked afterwards. This allows to exclude values that are included by the inclusion patterns, so that exclusion patterns can be used to refine inclusion patterns. Arguments: value: The value to filter. ref: The value used for logging. Returns: Whether the value should be included. """ ref = ref or value # Check if value matches one of the inclusion patterns if self.config.include: for pattern in self.config.include: if fnmatch(value, pattern): break # Value is not included else: log.debug(f"Excluding '{ref}' due to inclusion patterns") return False # Check if value matches one of the exclusion patterns for pattern in self.config.exclude: if fnmatch(value, pattern): log.debug(f"Excluding '{ref}' due to exclusion patterns") return False # Value is not excluded return True # ------------------------------------------------------------------------- config: FilterConfig """ The filter configuration. """ # ----------------------------------------------------------------------------- class FileFilter(Filter): """ A file filter. """ def __call__(self, file: File) -> bool: """ Filter a file by its source path. Arguments: file: The file to filter. Returns: Whether the file should be included. """ if file.inclusion.is_excluded(): return False # Filter file by source path return super().__call__( file.src_uri, file.src_path ) # ----------------------------------------------------------------------------- # Data # ----------------------------------------------------------------------------- # Set up logging log = logging.getLogger("mkdocs.material.utilities") mkdocs-material-9.6.4/src/utilities/filter/config.py000066400000000000000000000036331475306445600225370ustar00rootroot00000000000000# Copyright (c) 2016-2025 Martin Donath # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. from mkdocs.config.base import Config from mkdocs.config.config_options import ListOfItems, Type # ----------------------------------------------------------------------------- # Classes # ----------------------------------------------------------------------------- class FilterConfig(Config): """ A filter configuration. """ include = ListOfItems(Type(str), default = []) """ Patterns to include. This list contains patterns that are matched against the value to filter. If the value matches at least one pattern, it will be included. """ exclude = ListOfItems(Type(str), default = []) """ Patterns to exclude. This list contains patterns that are matched against the value to filter. If the value matches at least one pattern, it will be excluded. """ mkdocs-material-9.6.4/tools/000077500000000000000000000000001475306445600157645ustar00rootroot00000000000000mkdocs-material-9.6.4/tools/build/000077500000000000000000000000001475306445600170635ustar00rootroot00000000000000mkdocs-material-9.6.4/tools/build/_/000077500000000000000000000000001475306445600173015ustar00rootroot00000000000000mkdocs-material-9.6.4/tools/build/_/index.ts000066400000000000000000000116311475306445600207620ustar00rootroot00000000000000/* * Copyright (c) 2016-2023 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import * as chokidar from "chokidar" import * as fs from "fs/promises" import { EMPTY, Observable, filter, from, fromEvent, identity, catchError, defer, map, mergeWith, of, switchMap, tap } from "rxjs" import glob from "tiny-glob" /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Resolve options */ interface ResolveOptions { cwd: string /* Working directory */ watch?: boolean /* Watch mode */ dot?: boolean /* Hidden files or directories */ } /** * Watch options */ interface WatchOptions { cwd: string /* Working directory */ } /* ---------------------------------------------------------------------------- * Data * ------------------------------------------------------------------------- */ /** * Base directory for compiled files */ export const base = "material" /** * Cache to omit redundant writes */ export const cache = new Map() /* ---------------------------------------------------------------------------- * Helper Ffunctions * ------------------------------------------------------------------------- */ /** * Return the current time * * @returns Time */ function now() { const date = new Date() return [ `${date.getHours()}`.padStart(2, "0"), `${date.getMinutes()}`.padStart(2, "0"), `${date.getSeconds()}`.padStart(2, "0") ] .join(":") } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Resolve a pattern * * @param pattern - Pattern * @param options - Options * * @returns File observable */ export function resolve( pattern: string, options?: ResolveOptions ): Observable { return from(glob(pattern, { dot: true, ...options })) .pipe( catchError(() => EMPTY), switchMap(files => from(files).pipe( /* Start file watcher */ options?.watch ? mergeWith(watch(files, options)) : identity )), /* Build overrides */ !process.argv.includes("--all") ? filter(file => !file.startsWith(".overrides/")) : identity, ) } /** * Watch all given files * * @param files - Files * @param options - Options * * @returns File observable */ export function watch( files: string[], options: WatchOptions ): Observable { return fromEvent( chokidar.watch(files, options), "change", file => file // see https://t.ly/dli_k ) as Observable } /* ------------------------------------------------------------------------- */ /** * Recursively create the given directory * * @param directory - Directory * * @returns Directory observable */ export function mkdir(directory: string): Observable { return defer(() => fs.mkdir(directory, { recursive: true })) .pipe( map(() => directory) ) } /** * Read a file * * @param file - File * * @returns File data observable */ export function read(file: string): Observable { return defer(() => fs.readFile(file, "utf8")) } /** * Write a file, but only if the contents changed * * @param file - File * @param data - File data * * @returns File observable */ export function write(file: string, data: string): Observable { let contents = cache.get(file) if (contents === data) { return of(file) } else { cache.set(file, data) return defer(() => fs.writeFile(file, data)) .pipe( map(() => file), process.argv.includes("--verbose") ? tap(file => console.log(`${now()} + ${file}`)) : identity ) } } mkdocs-material-9.6.4/tools/build/copy/000077500000000000000000000000001475306445600200355ustar00rootroot00000000000000mkdocs-material-9.6.4/tools/build/copy/index.ts000066400000000000000000000066131475306445600215220ustar00rootroot00000000000000/* * Copyright (c) 2016-2023 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import * as fs from "fs/promises" import * as path from "path" import { Observable, from, map, mergeMap, switchMap } from "rxjs" import { mkdir, read, resolve, write } from "../_" /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Copy transform function * * @param data - File data * @param name - File name * * @returns Transformed file data */ type CopyTransformFn = (data: string, name: string) => Promise /* ------------------------------------------------------------------------- */ /** * Copy options */ interface CopyOptions { from: string /* Source destination */ to: string /* Target destination */ transform?: CopyTransformFn /* Transform function */ watch?: boolean /* Watch mode */ } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Copy a file * * @param options - Options * * @returns File observable */ export function copy( { transform, ...options }: CopyOptions ): Observable { return mkdir(path.dirname(options.to)) .pipe( switchMap(() => typeof transform === "undefined" ? from(fs.copyFile(options.from, options.to)) : read(options.from) .pipe( switchMap(data => transform(data, options.from)), switchMap(data => write(options.to, data)) ) ), map(() => options.to) ) } /** * Copy all files matching the given pattern * * Note that this function rebases all files that match the pattern to the * target folder, even if the pattern resolves to a parent folder. * * @param pattern - Pattern * @param options - Options * * @returns File observable */ export function copyAll( pattern: string, options: CopyOptions ): Observable { return resolve(pattern, { ...options, cwd: options.from }) .pipe( mergeMap(file => copy({ ...options, from: `${options.from}/${file}`, to: `${options.to}/${file.replace(/(\.{2}\/)+/, "")}` }), 16) ) } mkdocs-material-9.6.4/tools/build/index.ts000066400000000000000000000260721475306445600205510ustar00rootroot00000000000000/* * Copyright (c) 2016-2023 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { minify as minhtml } from "html-minifier-terser" import * as path from "path" import { EMPTY, concat, defer, from, map, merge, mergeMap, of, reduce, scan, startWith, switchMap, toArray, zip } from "rxjs" import { optimize } from "svgo" import { IconSearchIndex } from "_/components" import { base, read, resolve, watch, write } from "./_" import { copyAll } from "./copy" import { transformScript, transformStyle } from "./transform" import glob from "tiny-glob" /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Twemoji icon */ interface TwemojiIcon { unicode: string /* Unicode code point */ } /* ---------------------------------------------------------------------------- * Helper functions * ------------------------------------------------------------------------- */ /** * Replace file extension * * @param file - File * @param extension - New extension * * @returns File with new extension */ function ext(file: string, extension: string): string { return file.replace(path.extname(file), extension) } /** * Optimize SVG data * * This function will just pass-through non-SVG data, which makes the pipeline * much simpler, as we can reuse it for the license texts. * * @param data - SVG data * * @returns Minified SVG data */ function minsvg(data: string): string { if (!data.startsWith("<")) return data /* Optimize SVG */ const result = optimize(data, { plugins: [ { name: "preset-default", params: { overrides: { removeViewBox: false } } }, { name: "removeDimensions" } ] }) /* Return minified SVG */ return result.data } /* ---------------------------------------------------------------------------- * Tasks * ------------------------------------------------------------------------- */ /* Copy all assets */ const assets$ = concat( /* Copy Material Design icons */ ...["*.svg", "../LICENSE"] .map(pattern => copyAll(pattern, { from: "node_modules/@mdi/svg/svg", to: `${base}/templates/.icons/material`, transform: async data => minsvg(data) })), /* Copy GitHub octicons */ ...["*.svg", "../../LICENSE"] .map(pattern => copyAll(pattern, { from: "node_modules/@primer/octicons/build/svg", to: `${base}/templates/.icons/octicons`, transform: async data => minsvg(data) })), /* Copy FontAwesome icons */ ...["**/*.svg", "../LICENSE.txt"] .map(pattern => copyAll(pattern, { from: "node_modules/@fortawesome/fontawesome-free/svgs", to: `${base}/templates/.icons/fontawesome`, transform: async data => minsvg(data) })), /* Copy Simple icons */ ...["**/*.svg", "../LICENSE.md"] .map(pattern => copyAll(pattern, { from: "node_modules/simple-icons/icons", to: `${base}/templates/.icons/simple`, transform: async data => minsvg(data) })), /* Copy Lunr.js search stemmers and segmenters */ ...["min/*.js", "tinyseg.js", "wordcut.js"] .map(pattern => copyAll(pattern, { from: "node_modules/lunr-languages", to: `${base}/templates/assets/javascripts/lunr` })), /* Copy images and configurations */ ...["**/*.{jpg,png,svg,yml}"] .map(pattern => copyAll(pattern, { from: "src", to: base })) ) /* Copy plugins and extensions */ const sources$ = copyAll("**/*.py", { from: "src", to: base, watch: process.argv.includes("--watch"), transform: async (data, name) => { if (path.basename(name) === "__init__.py") { const metadata = require("../../package.json") return data.replace("$md-version$", metadata.version) } else { return data } } }) /* ------------------------------------------------------------------------- */ /* Transform styles */ const stylesheets$ = resolve("**/[!_]*.scss", { cwd: "src" }) .pipe( mergeMap(file => zip( of(ext(file, ".css").replace(/(overrides|templates)\//, "")), transformStyle({ from: `src/${file}`, to: ext(`${base}/${file}`, ".css") })) ) ) /* Transform scripts */ const javascripts$ = resolve("**/{custom,bundle,search}.ts", { cwd: "src" }) .pipe( mergeMap(file => zip( of(ext(file, ".js").replace(/(overrides|templates)\//, "")), transformScript({ from: `src/${file}`, to: ext(`${base}/${file}`, ".js") })) ) ) /* Compute manifest */ const manifest$ = merge( ...Object.entries({ "**/*.scss": stylesheets$, "**/*.ts*": javascripts$ }) .map(([pattern, observable$]) => ( defer(() => process.argv.includes("--watch") ? from(glob(pattern, { cwd: "src" })).pipe( switchMap(files => watch(files, { cwd: "src" })) ) : EMPTY ) .pipe( startWith("*"), switchMap(() => observable$.pipe(toArray())) ) )) ) .pipe( scan((prev, mapping) => ( mapping.reduce((next, [key, value]) => ( next.set(key, value.replace( new RegExp(`${base}\\/(overrides|templates)\\/`), "" )) ), prev) ), new Map()), ) /* Transform templates */ const templates$ = manifest$ .pipe( switchMap(manifest => copyAll("**/*.html", { from: "src", to: base, watch: process.argv.includes("--watch"), transform: async data => { const metadata = require("../../package.json") const banner = "{#-\n" + " This file was automatically generated - do not edit\n" + "-#}\n" /* If necessary, apply manifest */ if (process.argv.includes("--optimize")) for (const [key, value] of manifest) data = data.replace( new RegExp(`('|")${key}\\1`, "g"), `$1${value}$1` ) /* Normalize line feeds and minify HTML */ const html = data.replace(/\r\n/gm, "\n") return banner + await minhtml(html, { collapseBooleanAttributes: true, includeAutoGeneratedTags: false, minifyCSS: true, minifyJS: true, removeComments: true, removeScriptTypeAttributes: true, removeStyleLinkTypeAttributes: true }) .then(html => html /* Remove empty lines without collapsing everything */ .replace(/^\s*[\r\n]/gm, "") /* Write theme version into template */ .replace("$md-name$", metadata.name) .replace("$md-version$", metadata.version) ) } })) ) /* ------------------------------------------------------------------------- */ /* Compute icon mappings */ const icons$ = defer(() => resolve("**/*.svg", { cwd: `${base}/templates/.icons` })) .pipe( reduce((index, file) => index.set( file.replace(/\.svg$/, "").replace(/\//g, "-"), file ), new Map()) ) /* Compute emoji mappings (based on Twemoji) */ const emojis$ = defer(() => resolve("venv/**/twemoji_db.py")) .pipe( switchMap(file => read(file)), map(data => { const [, payload] = data.match(/^emoji = ({.*})$.alias/ms)! return Object.entries(JSON.parse(payload)) .reduce((index, [name, { unicode }]) => index.set( name.replace(/(^:|:$)/g, ""), `${unicode}.svg` ), new Map()) }) ) /* Build search index for icons and emojis */ const index$ = zip(icons$, emojis$) .pipe( map(([icons, emojis]) => { const cdn = "https://raw.githubusercontent.com" return { icons: { base: `${cdn}/squidfunk/mkdocs-material/master/material/templates/.icons/`, data: Object.fromEntries(icons) }, emojis: { base: `${cdn}/twitter/twemoji/master/assets/svg/`, data: Object.fromEntries(emojis) } } as IconSearchIndex }), switchMap(data => write( `${base}/overrides/assets/javascripts/iconsearch_index.json`, JSON.stringify(data) )) ) /* ------------------------------------------------------------------------- */ /* Build schema */ const schema$ = merge( /* Compute fonts schema */ defer(() => import("google-fonts-complete")) .pipe( map(({ default: fonts }) => Object.keys(fonts)), map(fonts => ({ "$schema": "https://json-schema.org/draft-07/schema", "title": "Google Fonts", "markdownDescription": "https://fonts.google.com/", "type": "string", "oneOf": fonts.map(font => ({ "title": font, "markdownDescription": `https://fonts.google.com/specimen/${ font.replace(/\s+/g, "+") }`, "const": font, })) })), switchMap(data => write( "docs/schema/assets/fonts.json", JSON.stringify(data, undefined, 2) )) ), /* Compute icons schema */ icons$ .pipe( map(icons => [...icons.values()]), map(icons => ({ "$schema": "https://json-schema.org/draft-07/schema", "title": "Icon", "markdownDescription": [ "https://squidfunk.github.io/mkdocs-material", "reference/icons-emojis/#search" ].join("/"), "type": "string", "enum": icons.map(icon => icon.replace(".svg", "")) })), switchMap(data => write( "docs/schema/assets/icons.json", JSON.stringify(data, undefined, 2) )) ) ) /* Build overrides */ const overrides$ = process.argv.includes("--all") ? merge(index$, schema$) : EMPTY /* ---------------------------------------------------------------------------- * Program * ------------------------------------------------------------------------- */ /* Assemble pipeline */ const build$ = process.argv.includes("--dirty") ? merge(templates$, sources$) : concat(assets$, merge(templates$, sources$, overrides$)) /* Let's get rolling */ build$.subscribe() mkdocs-material-9.6.4/tools/build/transform/000077500000000000000000000000001475306445600210765ustar00rootroot00000000000000mkdocs-material-9.6.4/tools/build/transform/index.ts000066400000000000000000000144551475306445600225660ustar00rootroot00000000000000/* * Copyright (c) 2016-2023 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { createHash } from "crypto" import { build as esbuild } from "esbuild" import * as fs from "fs/promises" import * as path from "path" import postcss from "postcss" import { EMPTY, Observable, catchError, concat, defer, endWith, ignoreElements, merge, of, switchMap } from "rxjs" import { compile } from "sass" import { base, mkdir, write } from "../_" /* ---------------------------------------------------------------------------- * Helper types * ------------------------------------------------------------------------- */ /** * Transform options */ interface TransformOptions { from: string /* Source destination */ to: string /* Target destination */ } /* ---------------------------------------------------------------------------- * Data * ------------------------------------------------------------------------- */ /** * Base directory for source map resolution */ const root = new RegExp(`file://${path.resolve(".")}/`, "g") /* ---------------------------------------------------------------------------- * Helper functions * ------------------------------------------------------------------------- */ /** * Compute a digest for cachebusting a file * * @param file - File * @param data - File data * * @returns File with digest */ function digest(file: string, data: string): string { if (process.argv.includes("--optimize")) { const hash = createHash("sha256").update(data).digest("hex") return file.replace(/\b(?=\.)/, `.${hash.slice(0, 8)}.min`) } else { return file } } /* ---------------------------------------------------------------------------- * Functions * ------------------------------------------------------------------------- */ /** * Transform a stylesheet * * @param options - Options * * @returns File observable */ export function transformStyle( options: TransformOptions ): Observable { return defer(() => of(compile(options.from, { loadPaths: [ "src/templates/assets/stylesheets", "node_modules/modularscale-sass/stylesheets", "node_modules/material-design-color", "node_modules/material-shadows" ], silenceDeprecations: ["global-builtin", "import"], sourceMap: true }))) .pipe( switchMap(({ css, sourceMap }) => postcss([ require("autoprefixer"), require("postcss-logical"), require("postcss-dir-pseudo-class"), require("postcss-pseudo-is"), require("postcss-inline-svg")({ paths: [ `${base}/templates/.icons` ], encode: false }), ...process.argv.includes("--optimize") ? [require("cssnano")] : [] ]) .process(css, { from: options.from, to: options.to, map: { prev: sourceMap, inline: false } }) ), catchError(err => { console.log(err.formatted || err.message) return EMPTY }), switchMap(({ css, map }) => { const file = digest(options.to, css) return concat( mkdir(path.dirname(file)), merge( write(`${file}.map`, `${map}`.replace(root, "")), write(`${file}`, css.replace( options.from, path.basename(file) )), ) ) .pipe( ignoreElements(), endWith(file) ) }) ) } /** * Transform a script * * @param options - Options * * @returns File observable */ export function transformScript( options: TransformOptions ): Observable { return defer(() => esbuild({ entryPoints: [options.from], target: "es2015", write: false, bundle: true, sourcemap: true, legalComments: "inline", minify: process.argv.includes("--optimize"), plugins: [ /* Plugin to minify inlined CSS (e.g. for Mermaid.js) */ { name: "mkdocs-material/inline", setup(build) { build.onLoad({ filter: /\.css/ }, async args => { const content = await fs.readFile(args.path, "utf8") const { css } = await postcss([require("cssnano")]) .process(content, { from: undefined }) /* Return minified CSS */ return { contents: css, loader: "text" } }) } } ] })) .pipe( catchError(() => EMPTY), switchMap(({ outputFiles: [file] }) => { const contents = file.text.split("\n") const [, data] = contents[contents.length - 2].split(",") return of({ js: file.text, map: Buffer.from(data, "base64") }) }), switchMap(({ js, map }) => { const file = digest(options.to, js) return concat( mkdir(path.dirname(file)), merge( write(`${file}.map`, `${map}`), write(`${file}`, js.replace( /(sourceMappingURL=)(.*)/, `$1${path.basename(file)}.map\n` )), ) ) .pipe( ignoreElements(), endWith(file) ) }) ) } mkdocs-material-9.6.4/tsconfig.json000066400000000000000000000017221475306445600173350ustar00rootroot00000000000000{ "compilerOptions": { "alwaysStrict": true, "baseUrl": "src", "esModuleInterop": true, "jsx": "react", "jsxFactory": "h", "lib": [ "dom", "esnext", "webworker" ], "module": "commonjs", "moduleResolution": "node", "noFallthroughCasesInSwitch": true, "noImplicitAny": true, "noImplicitReturns": true, "noImplicitThis": true, "noUnusedLocals": true, "noUnusedParameters": true, "paths": { "~/*": ["./templates/assets/javascripts/*"], "_/*": ["./overrides/assets/javascripts/*"] }, "removeComments": false, "sourceMap": true, "skipLibCheck": true, "strictBindCallApply": true, "strictFunctionTypes": true, "strictNullChecks": true, "strictPropertyInitialization": true, "stripInternal": true, "target": "es2018" }, "include": [ "src/overrides/assets/javascripts", "src/templates/assets/javascripts", "tools", "typings" ] } mkdocs-material-9.6.4/typings/000077500000000000000000000000001475306445600163215ustar00rootroot00000000000000mkdocs-material-9.6.4/typings/_/000077500000000000000000000000001475306445600165375ustar00rootroot00000000000000mkdocs-material-9.6.4/typings/_/index.d.ts000066400000000000000000000072421475306445600204450ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import { Observable, Subject } from "rxjs" import { Keyboard, Viewport } from "~/browser" import { Component } from "~/components" /* ---------------------------------------------------------------------------- * Global types * ------------------------------------------------------------------------- */ declare global { /** * Compute hash from the given string * * @param value - String value * * @returns Hash */ function __md_hash(value: string): number /** * Fetch the value for a key from the given storage * * This function is defined in `partials/javascripts/base.html`, so it can be * used from the templates, as well as from the application bundle. * * @template T - Data type * * @param key - Key * @param storage - Storage (default: local storage) * @param base - Base URL (default: current base) * * @return Value or nothing */ function __md_get( key: string, storage?: Storage, base?: URL ): T | null /** * Persist a key-value pair in the given storage * * This function is defined in `partials/javascripts/base.html`, so it can be * used from the templates, as well as from the application bundle. * * @template T - Data type * * @param key - Key * @param value - Value * @param storage - Storage (default: local storage) * @param base - Base URL (default: current base) */ function __md_set( key: string, value: T, storage?: Storage, base?: URL ): void } /* ------------------------------------------------------------------------- */ /** * Google Analytics */ declare global { function ga(...args: string[]): void } /* ---------------------------------------------------------------------------- * Types * ------------------------------------------------------------------------- */ declare global { var document$: Observable /* Document observable */ var location$: Subject /* Location subject */ var target$: Observable /* Location target observable */ var keyboard$: Observable /* Keyboard observable */ var viewport$: Observable /* Viewport obsevable */ var tablet$: Observable /* Media tablet observable */ var screen$: Observable /* Media screen observable */ var print$: Observable /* Media print observable */ var alert$: Subject /* Alert subject */ var progress$: Subject /* Progress indicator subject */ var component$: Observable/* Component observable */ } mkdocs-material-9.6.4/typings/google-fonts/000077500000000000000000000000001475306445600207245ustar00rootroot00000000000000mkdocs-material-9.6.4/typings/google-fonts/index.d.ts000066400000000000000000000026351475306445600226330ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ /* ---------------------------------------------------------------------------- * Global types * ------------------------------------------------------------------------- */ declare module "google-fonts-complete" { const fonts: Record export default fonts } mkdocs-material-9.6.4/typings/lunr/000077500000000000000000000000001475306445600173015ustar00rootroot00000000000000mkdocs-material-9.6.4/typings/lunr/index.d.ts000066400000000000000000000067461475306445600212170ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ import lunr from "lunr" /* ---------------------------------------------------------------------------- * Global types * ------------------------------------------------------------------------- */ declare global { namespace lunr { /** * Indexed fields */ type Fields = "text" | "title" | "tags" /** * Index - expose inverted index */ interface Index { invertedIndex: Record fields: Fields[] } /** * Improve typings of query builder */ interface Builder { field( fieldName: string, attributes?: { boost?: number | undefined, extractor?: Function }): void; } /** * Query parser */ class QueryParser { constructor(value: string, query: Query) public parse(): void } /** * Query clause - add missing field definitions */ namespace Query { interface Clause { presence: Query.presence } } /** * Tokenizer */ namespace tokenizer { let table: number[][] } /** * Segmenter */ let segmenter: TinySegmenter | undefined /** * Lexeme type */ const enum LexemeType { FIELD = "FIELD", TERM = "TERM", PRESENCE = "PRESENCE" } /** * Lexeme */ interface Lexeme { type: LexemeType str: string start: number end: number } /** * Query lexer - add missing class definitions */ class QueryLexer { /** * Create query lexer * * @param query - Query */ constructor(query: string) /** * Query lexemes */ public lexemes: Lexeme[] /** * Lex query */ public run(): void } /** * Enable multi-language support * * @param lang - Languages * * @returns Plugin */ function multiLanguage(...lang: string[]): Builder.Plugin /** * Stopword filter * * @template T - Token type * * @param token - Token or string * * @returns Token or nothing */ function stopWordFilter(token: T): T | undefined; /** * Segmenter for Japanese */ class TinySegmenter { public ctype_(value: string): string public segment(value: string): string[] } } } mkdocs-material-9.6.4/typings/mermaid/000077500000000000000000000000001475306445600177375ustar00rootroot00000000000000mkdocs-material-9.6.4/typings/mermaid/index.d.ts000066400000000000000000000025201475306445600216370ustar00rootroot00000000000000/* * Copyright (c) 2016-2025 Martin Donath * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ /* ---------------------------------------------------------------------------- * Global types * ------------------------------------------------------------------------- */ declare const mermaid: any